From 65b8c8049560b19ace11ef754cb4dbe5aa415296 Mon Sep 17 00:00:00 2001 From: Aladdin Persson Date: Sat, 30 Jan 2021 21:49:15 +0100 Subject: [PATCH] Initial commit --- .github/FUNDING.yml | 12 + .gitignore | 3 + .travis.yml | 33 + LICENSE.txt | 21 + ML/Kaggles/SantanderTransaction/dataset.py | 23 + .../SantanderTransaction/get_data.ipynb | 1356 + ML/Kaggles/SantanderTransaction/train.py | 55 + ML/Kaggles/SantanderTransaction/utils.py | 39 + ML/Kaggles/Titanic/FirstKaggle_Titanic.ipynb | 364 + ML/PaperReviews/Randaugment.pdf | Bin 0 -> 1684230 bytes ML/PaperReviews/UNET.pdf | Bin 0 -> 2435556 bytes ML/Projects/DeepSort/sort_w_attention.py | 216 + ML/Projects/DeepSort/utils.py | 75 + ML/Projects/Exploring_MNIST/README.md | 45 + .../__pycache__/googLeNet.cpython-37.pyc | Bin 0 -> 3273 bytes .../import_all_networks.cpython-37.pyc | Bin 0 -> 475 bytes .../networks/__pycache__/lenet.cpython-37.pyc | Bin 0 -> 1986 bytes .../__pycache__/resnet.cpython-37.pyc | Bin 0 -> 3602 bytes .../networks/__pycache__/vgg.cpython-37.pyc | Bin 0 -> 2339 bytes .../Exploring_MNIST/networks/googLeNet.py | 109 + .../networks/import_all_networks.py | 4 + ML/Projects/Exploring_MNIST/networks/lenet.py | 60 + .../Exploring_MNIST/networks/resnet.py | 151 + ML/Projects/Exploring_MNIST/networks/vgg.py | 139 + ML/Projects/Exploring_MNIST/train.py | 264 + .../__pycache__/import_utils.cpython-37.pyc | Bin 0 -> 328 bytes .../__pycache__/mnist_data.cpython-37.pyc | Bin 0 -> 1983 bytes .../utils/__pycache__/utils.cpython-37.pyc | Bin 0 -> 3135 bytes .../Exploring_MNIST/utils/import_utils.py | 2 + .../Exploring_MNIST/utils/mnist_data.py | 94 + ML/Projects/Exploring_MNIST/utils/utils.py | 130 + .../build_vocabulary.py | 41 + .../create_freq_vectors.py | 44 + .../data/emails.csv | 5729 + .../spam_classifier_naive_bayes/naivebayes.py | 68 + .../data/example_names.txt | 19 + .../text_generation_babynames/data/names.txt | 1055767 ++++++++++++++ .../data/shakespeare_larger.txt | 167204 +++ .../data/shakespeare_tiny.txt | 40000 + .../generating_names.py | 144 + .../cat_dogs/cats/cat.0.jpg | Bin 0 -> 13385 bytes .../cat_dogs/cats/cat.1.jpg | Bin 0 -> 26670 bytes .../cat_dogs/cats/cat.2.jpg | Bin 0 -> 29631 bytes .../cat_dogs/cats/cat.3.jpg | Bin 0 -> 28544 bytes .../cat_dogs/cats/cat.4.jpg | Bin 0 -> 20447 bytes .../cat_dogs/cats/cat.5.jpg | Bin 0 -> 20937 bytes .../cat_dogs/cats/cat.6.jpg | Bin 0 -> 27813 bytes .../cat_dogs/cats/cat.7.jpg | Bin 0 -> 27260 bytes .../cat_dogs/cats/dog.0.jpg | Bin 0 -> 24605 bytes .../cat_dogs/dogs/n123686.jpg | Bin 0 -> 13382 bytes .../cat_dogs/dogs/n123687.jpg | Bin 0 -> 35967 bytes .../cat_dogs/dogs/n123688.jpg | Bin 0 -> 19232 bytes .../cat_dogs/dogs/n123689.jpg | Bin 0 -> 31227 bytes .../cat_dogs/dogs/n123690.jpg | Bin 0 -> 30635 bytes .../cat_dogs/dogs/n123691.jpg | Bin 0 -> 20892 bytes .../cat_dogs/dogs/n123692.jpg | Bin 0 -> 44597 bytes .../cat_dogs/dogs/n123693.jpg | Bin 0 -> 18003 bytes .../cat_dogs/dogs/n123694.jpg | Bin 0 -> 34356 bytes .../cat_dogs/dogs/n123695.jpg | Bin 0 -> 53830 bytes .../albumentations_tutorial/classification.py | 31 + .../albumentations_tutorial/detection.py | 41 + .../full_pytorch_example.py | 62 + .../albumentations_tutorial/images/cat.jpg | Bin 0 -> 82550 bytes .../albumentations_tutorial/images/elon.jpeg | Bin 0 -> 280524 bytes .../albumentations_tutorial/images/mask.jpeg | Bin 0 -> 79058 bytes .../images/second_mask.jpeg | Bin 0 -> 30083 bytes .../albumentations_tutorial/segmentation.py | 37 + .../Basics/albumentations_tutorial/utils.py | 36 + .../Basics/custom_dataset/cats_dogs.csv | 11 + .../cats_dogs_resized/cat.0.jpg | Bin 0 -> 13385 bytes .../cats_dogs_resized/cat.1.jpg | Bin 0 -> 26670 bytes .../cats_dogs_resized/cat.2.jpg | Bin 0 -> 29631 bytes .../cats_dogs_resized/cat.3.jpg | Bin 0 -> 28544 bytes .../cats_dogs_resized/cat.4.jpg | Bin 0 -> 20447 bytes .../cats_dogs_resized/cat.5.jpg | Bin 0 -> 20937 bytes .../cats_dogs_resized/cat.6.jpg | Bin 0 -> 27813 bytes .../cats_dogs_resized/cat.7.jpg | Bin 0 -> 27260 bytes .../cats_dogs_resized/dog.0.jpg | Bin 0 -> 24605 bytes .../cats_dogs_resized/dog.1.jpg | Bin 0 -> 15450 bytes .../Basics/custom_dataset/custom_FCNN.py | 131 + .../Basics/custom_dataset/custom_dataset.py | 130 + ML/Pytorch/Basics/custom_dataset/power.csv | 2958 + .../custom_dataset_txt/loader_customtext.py | 142 + .../Basics/pytorch_bidirectional_lstm.py | 125 + ML/Pytorch/Basics/pytorch_init_weights.py | 69 + ML/Pytorch/Basics/pytorch_loadsave.py | 54 + ML/Pytorch/Basics/pytorch_lr_ratescheduler.py | 107 + .../Basics/pytorch_mixed_precision_example.py | 99 + .../Basics/pytorch_pretrain_finetune.py | 123 + ML/Pytorch/Basics/pytorch_progress_bar.py | 41 + ML/Pytorch/Basics/pytorch_rnn_gru_lstm.py | 172 + ML/Pytorch/Basics/pytorch_simple_CNN.py | 134 + ML/Pytorch/Basics/pytorch_simple_fullynet.py | 120 + ML/Pytorch/Basics/pytorch_std_mean.py | 28 + ML/Pytorch/Basics/pytorch_tensorbasics.py | 299 + ML/Pytorch/Basics/pytorch_tensorboard_.py | 142 + ML/Pytorch/Basics/pytorch_transforms.py | 155 + .../pytorch_set_seeds.py | 15 + .../CNN_architectures/lenet5_pytorch.py | 67 + .../CNN_architectures/pytorch_inceptionet.py | 166 + .../CNN_architectures/pytorch_resnet.py | 163 + .../pytorch_vgg_implementation.py | 119 + ML/Pytorch/GANs/1. SimpleGAN/fc_gan.py | 107 + ML/Pytorch/GANs/2. DCGAN/model.py | 96 + ML/Pytorch/GANs/2. DCGAN/train.py | 105 + ML/Pytorch/GANs/3. WGAN/model.py | 98 + ML/Pytorch/GANs/3. WGAN/train.py | 114 + ML/Pytorch/GANs/4. WGAN-GP/model.py | 84 + ML/Pytorch/GANs/4. WGAN-GP/train.py | 111 + ML/Pytorch/GANs/4. WGAN-GP/utils.py | 35 + ML/Pytorch/GANs/5. ProGAN/model.py | 205 + ML/Pytorch/GANs/5. ProGAN/test.py | 5 + ML/Pytorch/GANs/5. ProGAN/train.py | 165 + ML/Pytorch/GANs/5. ProGAN/utils.py | 54 + .../UNET_architecture.png | Bin 0 -> 103270 bytes .../semantic_segmentation_unet/dataset.py | 29 + .../semantic_segmentation_unet/model.py | 76 + .../semantic_segmentation_unet/train.py | 124 + .../semantic_segmentation_unet/utils.py | 93 + ML/Pytorch/more_advanced/GANs/DCGAN_mnist.py | 131 + ML/Pytorch/more_advanced/GANs/README.md | 4 + ML/Pytorch/more_advanced/GANs/model_utils.py | 76 + ML/Pytorch/more_advanced/Seq2Seq/seq2seq.py | 242 + ML/Pytorch/more_advanced/Seq2Seq/utils.py | 84 + .../Seq2Seq_attention/seq2seq_attention.py | 279 + .../more_advanced/Seq2Seq_attention/utils.py | 79 + .../more_advanced/image_captioning/README.md | 12 + .../image_captioning/get_loader.py | 142 + .../more_advanced/image_captioning/model.py | 66 + .../image_captioning/test_examples/boat.png | Bin 0 -> 377447 bytes .../image_captioning/test_examples/bus.png | Bin 0 -> 886696 bytes .../image_captioning/test_examples/child.jpg | Bin 0 -> 93695 bytes .../image_captioning/test_examples/dog.jpg | Bin 0 -> 136611 bytes .../image_captioning/test_examples/horse.png | Bin 0 -> 655998 bytes .../more_advanced/image_captioning/train.py | 96 + .../more_advanced/image_captioning/utils.py | 69 + .../neuralstyle/annahathaway.png | Bin 0 -> 124279 bytes ML/Pytorch/more_advanced/neuralstyle/nst.py | 112 + .../more_advanced/neuralstyle/output/img1.png | Bin 0 -> 317863 bytes .../more_advanced/neuralstyle/output/img2.png | Bin 0 -> 288811 bytes .../more_advanced/neuralstyle/output/img3.png | Bin 0 -> 300882 bytes .../more_advanced/neuralstyle/output/img4.png | Bin 0 -> 290279 bytes .../more_advanced/neuralstyle/output/img5.png | Bin 0 -> 299634 bytes .../more_advanced/neuralstyle/output/img6.png | Bin 0 -> 276598 bytes .../more_advanced/neuralstyle/output/img7.png | Bin 0 -> 300513 bytes .../more_advanced/neuralstyle/output/img8.png | Bin 0 -> 315914 bytes .../more_advanced/neuralstyle/style.jpg | Bin 0 -> 220115 bytes .../neuralstyle/styles/style1.jpg | Bin 0 -> 220115 bytes .../neuralstyle/styles/style2.jpg | Bin 0 -> 114573 bytes .../neuralstyle/styles/style3.jpg | Bin 0 -> 286356 bytes .../neuralstyle/styles/style4.jpg | Bin 0 -> 54881 bytes .../neuralstyle/styles/style5.jpg | Bin 0 -> 826318 bytes .../neuralstyle/styles/style6.jpg | Bin 0 -> 87874 bytes .../neuralstyle/styles/style7.jpg | Bin 0 -> 123262 bytes .../neuralstyle/styles/style8.jpg | Bin 0 -> 562577 bytes .../seq2seq_transformer.py | 255 + .../seq2seq_transformer/utils.py | 70 + .../more_advanced/torchtext/mydata/test.csv | 4 + .../more_advanced/torchtext/mydata/test.json | 3 + .../more_advanced/torchtext/mydata/test.tsv | 4 + .../more_advanced/torchtext/mydata/train.csv | 4 + .../more_advanced/torchtext/mydata/train.json | 3 + .../more_advanced/torchtext/mydata/train.tsv | 4 + .../torchtext/torchtext_tutorial1.py | 111 + .../torchtext/torchtext_tutorial2.py | 45 + .../torchtext/torchtext_tutorial3.py | 64 + .../transformer_from_scratch.py | 291 + .../YOLO/__pycache__/dataset.cpython-38.pyc | Bin 0 -> 2139 bytes .../YOLO/__pycache__/loss.cpython-38.pyc | Bin 0 -> 2240 bytes .../YOLO/__pycache__/model.cpython-38.pyc | Bin 0 -> 2916 bytes .../YOLO/__pycache__/utils.cpython-38.pyc | Bin 0 -> 8972 bytes .../YOLO/data/generate_csv.py | 22 + .../object_detection/YOLO/data/get_data | 60 + ML/Pytorch/object_detection/YOLO/dataset.py | 90 + ML/Pytorch/object_detection/YOLO/loss.py | 124 + ML/Pytorch/object_detection/YOLO/model.py | 119 + ML/Pytorch/object_detection/YOLO/train.py | 148 + ML/Pytorch/object_detection/YOLO/utils.py | 349 + .../metrics/__pycache__/iou.cpython-38.pyc | Bin 0 -> 1503 bytes .../mean_avg_precision.cpython-38.pyc | Bin 0 -> 2523 bytes .../metrics/__pycache__/nms.cpython-38.pyc | Bin 0 -> 1598 bytes ML/Pytorch/object_detection/metrics/iou.py | 50 + .../metrics/mean_avg_precision.py | 112 + ML/Pytorch/object_detection/metrics/nms.py | 42 + .../image_classification/augmentations.py | 189 + .../image_classification/config.py | 36 + .../image_classification/dataset.py | 34 + .../image_classification/model.py | 13 + .../image_classification/train.py | 54 + .../image_classification/utils.py | 56 + .../tutorial1-installation-videoonly.py | 0 ML/TensorFlow/Basics/tutorial10-save-model.py | 59 + .../Basics/tutorial11-transfer-learning.py | 106 + .../Basics/tutorial12-tensorflowdatasets.py | 135 + .../Basics/tutorial13-data-augmentation.py | 87 + ML/TensorFlow/Basics/tutorial14-callbacks.py | 73 + .../Basics/tutorial15-customizing-modelfit.py | 82 + .../Basics/tutorial16-customloops.py | 80 + .../tutorial17-tensorboard/1_tb_callback.py | 107 + .../tutorial17-tensorboard/2_tb_scalars.py | 144 + .../tutorial17-tensorboard/3_tb_images.py | 112 + .../tutorial17-tensorboard/4_tb_confusion.py | 124 + .../tutorial17-tensorboard/5_tb_graph.py | 35 + .../tutorial17-tensorboard/6_tb_hparams.py | 137 + .../tutorial17-tensorboard/7_tb_projector.py | 69 + .../Basics/tutorial17-tensorboard/utils.py | 167 + .../1_in_subfolders.py | 142 + .../2_csv_file.py | 52 + .../3_single_folder.py | 46 + .../data/mnist_images_csv/0_1.jpg | Bin 0 -> 602 bytes .../data/mnist_images_csv/0_2.jpg | Bin 0 -> 628 bytes .../data/mnist_images_csv/0_3.jpg | Bin 0 -> 539 bytes .../data/mnist_images_csv/0_4.jpg | Bin 0 -> 579 bytes .../data/mnist_images_csv/0_5.jpg | Bin 0 -> 634 bytes .../data/mnist_images_csv/1_1.jpg | Bin 0 -> 492 bytes .../data/mnist_images_csv/1_2.jpg | Bin 0 -> 427 bytes .../data/mnist_images_csv/1_3.jpg | Bin 0 -> 491 bytes .../data/mnist_images_csv/1_4.jpg | Bin 0 -> 475 bytes .../data/mnist_images_csv/1_5.jpg | Bin 0 -> 460 bytes .../data/mnist_images_csv/2_1.jpg | Bin 0 -> 604 bytes .../data/mnist_images_csv/2_2.jpg | Bin 0 -> 592 bytes .../data/mnist_images_csv/2_3.jpg | Bin 0 -> 571 bytes .../data/mnist_images_csv/2_4.jpg | Bin 0 -> 564 bytes .../data/mnist_images_csv/2_5.jpg | Bin 0 -> 541 bytes .../data/mnist_images_csv/3_1.jpg | Bin 0 -> 646 bytes .../data/mnist_images_csv/3_2.jpg | Bin 0 -> 583 bytes .../data/mnist_images_csv/3_3.jpg | Bin 0 -> 630 bytes .../data/mnist_images_csv/3_4.jpg | Bin 0 -> 609 bytes .../data/mnist_images_csv/3_5.jpg | Bin 0 -> 591 bytes .../data/mnist_images_csv/4_1.jpg | Bin 0 -> 625 bytes .../data/mnist_images_csv/4_2.jpg | Bin 0 -> 582 bytes .../data/mnist_images_csv/4_3.jpg | Bin 0 -> 602 bytes .../data/mnist_images_csv/4_4.jpg | Bin 0 -> 593 bytes .../data/mnist_images_csv/4_5.jpg | Bin 0 -> 600 bytes .../data/mnist_images_csv/5_1.jpg | Bin 0 -> 514 bytes .../data/mnist_images_csv/5_2.jpg | Bin 0 -> 575 bytes .../data/mnist_images_csv/5_3.jpg | Bin 0 -> 571 bytes .../data/mnist_images_csv/5_4.jpg | Bin 0 -> 579 bytes .../data/mnist_images_csv/5_5.jpg | Bin 0 -> 617 bytes .../data/mnist_images_csv/6_1.jpg | Bin 0 -> 603 bytes .../data/mnist_images_csv/6_2.jpg | Bin 0 -> 589 bytes .../data/mnist_images_csv/6_3.jpg | Bin 0 -> 513 bytes .../data/mnist_images_csv/6_4.jpg | Bin 0 -> 531 bytes .../data/mnist_images_csv/6_5.jpg | Bin 0 -> 563 bytes .../data/mnist_images_csv/7_1.jpg | Bin 0 -> 555 bytes .../data/mnist_images_csv/7_2.jpg | Bin 0 -> 523 bytes .../data/mnist_images_csv/7_3.jpg | Bin 0 -> 621 bytes .../data/mnist_images_csv/7_4.jpg | Bin 0 -> 571 bytes .../data/mnist_images_csv/7_5.jpg | Bin 0 -> 540 bytes .../data/mnist_images_csv/8_1.jpg | Bin 0 -> 622 bytes .../data/mnist_images_csv/8_2.jpg | Bin 0 -> 598 bytes .../data/mnist_images_csv/8_3.jpg | Bin 0 -> 578 bytes .../data/mnist_images_csv/8_4.jpg | Bin 0 -> 596 bytes .../data/mnist_images_csv/8_5.jpg | Bin 0 -> 599 bytes .../data/mnist_images_csv/9_1.jpg | Bin 0 -> 554 bytes .../data/mnist_images_csv/9_2.jpg | Bin 0 -> 548 bytes .../data/mnist_images_csv/9_3.jpg | Bin 0 -> 552 bytes .../data/mnist_images_csv/9_4.jpg | Bin 0 -> 539 bytes .../data/mnist_images_csv/9_5.jpg | Bin 0 -> 570 bytes .../data/mnist_images_csv/train.csv | 52 + .../data/mnist_images_only/0_1.jpg | Bin 0 -> 602 bytes .../data/mnist_images_only/0_2.jpg | Bin 0 -> 628 bytes .../data/mnist_images_only/0_3.jpg | Bin 0 -> 539 bytes .../data/mnist_images_only/0_4.jpg | Bin 0 -> 579 bytes .../data/mnist_images_only/0_5.jpg | Bin 0 -> 634 bytes .../data/mnist_images_only/1_1.jpg | Bin 0 -> 492 bytes .../data/mnist_images_only/1_2.jpg | Bin 0 -> 427 bytes .../data/mnist_images_only/1_3.jpg | Bin 0 -> 491 bytes .../data/mnist_images_only/1_4.jpg | Bin 0 -> 475 bytes .../data/mnist_images_only/1_5.jpg | Bin 0 -> 460 bytes .../data/mnist_images_only/2_1.jpg | Bin 0 -> 604 bytes .../data/mnist_images_only/2_2.jpg | Bin 0 -> 592 bytes .../data/mnist_images_only/2_3.jpg | Bin 0 -> 571 bytes .../data/mnist_images_only/2_4.jpg | Bin 0 -> 564 bytes .../data/mnist_images_only/2_5.jpg | Bin 0 -> 541 bytes .../data/mnist_images_only/3_1.jpg | Bin 0 -> 646 bytes .../data/mnist_images_only/3_2.jpg | Bin 0 -> 583 bytes .../data/mnist_images_only/3_3.jpg | Bin 0 -> 630 bytes .../data/mnist_images_only/3_4.jpg | Bin 0 -> 609 bytes .../data/mnist_images_only/3_5.jpg | Bin 0 -> 591 bytes .../data/mnist_images_only/4_1.jpg | Bin 0 -> 625 bytes .../data/mnist_images_only/4_2.jpg | Bin 0 -> 582 bytes .../data/mnist_images_only/4_3.jpg | Bin 0 -> 602 bytes .../data/mnist_images_only/4_4.jpg | Bin 0 -> 593 bytes .../data/mnist_images_only/4_5.jpg | Bin 0 -> 600 bytes .../data/mnist_images_only/5_1.jpg | Bin 0 -> 514 bytes .../data/mnist_images_only/5_2.jpg | Bin 0 -> 575 bytes .../data/mnist_images_only/5_3.jpg | Bin 0 -> 571 bytes .../data/mnist_images_only/5_4.jpg | Bin 0 -> 579 bytes .../data/mnist_images_only/5_5.jpg | Bin 0 -> 617 bytes .../data/mnist_images_only/6_1.jpg | Bin 0 -> 603 bytes .../data/mnist_images_only/6_2.jpg | Bin 0 -> 589 bytes .../data/mnist_images_only/6_3.jpg | Bin 0 -> 513 bytes .../data/mnist_images_only/6_4.jpg | Bin 0 -> 531 bytes .../data/mnist_images_only/6_5.jpg | Bin 0 -> 563 bytes .../data/mnist_images_only/7_1.jpg | Bin 0 -> 555 bytes .../data/mnist_images_only/7_2.jpg | Bin 0 -> 523 bytes .../data/mnist_images_only/7_3.jpg | Bin 0 -> 621 bytes .../data/mnist_images_only/7_4.jpg | Bin 0 -> 571 bytes .../data/mnist_images_only/7_5.jpg | Bin 0 -> 540 bytes .../data/mnist_images_only/8_1.jpg | Bin 0 -> 622 bytes .../data/mnist_images_only/8_2.jpg | Bin 0 -> 598 bytes .../data/mnist_images_only/8_3.jpg | Bin 0 -> 578 bytes .../data/mnist_images_only/8_4.jpg | Bin 0 -> 596 bytes .../data/mnist_images_only/8_5.jpg | Bin 0 -> 599 bytes .../data/mnist_images_only/9_1.jpg | Bin 0 -> 554 bytes .../data/mnist_images_only/9_2.jpg | Bin 0 -> 548 bytes .../data/mnist_images_only/9_3.jpg | Bin 0 -> 552 bytes .../data/mnist_images_only/9_4.jpg | Bin 0 -> 539 bytes .../data/mnist_images_only/9_5.jpg | Bin 0 -> 570 bytes .../data/mnist_subfolders/0/0_1.jpg | Bin 0 -> 602 bytes .../data/mnist_subfolders/0/0_2.jpg | Bin 0 -> 628 bytes .../data/mnist_subfolders/0/0_3.jpg | Bin 0 -> 539 bytes .../data/mnist_subfolders/0/0_4.jpg | Bin 0 -> 579 bytes .../data/mnist_subfolders/0/0_5.jpg | Bin 0 -> 634 bytes .../data/mnist_subfolders/1/1_1.jpg | Bin 0 -> 492 bytes .../data/mnist_subfolders/1/1_2.jpg | Bin 0 -> 427 bytes .../data/mnist_subfolders/1/1_3.jpg | Bin 0 -> 491 bytes .../data/mnist_subfolders/1/1_4.jpg | Bin 0 -> 475 bytes .../data/mnist_subfolders/1/1_5.jpg | Bin 0 -> 460 bytes .../data/mnist_subfolders/2/2_1.jpg | Bin 0 -> 604 bytes .../data/mnist_subfolders/2/2_2.jpg | Bin 0 -> 592 bytes .../data/mnist_subfolders/2/2_3.jpg | Bin 0 -> 571 bytes .../data/mnist_subfolders/2/2_4.jpg | Bin 0 -> 564 bytes .../data/mnist_subfolders/2/2_5.jpg | Bin 0 -> 541 bytes .../data/mnist_subfolders/3/3_1.jpg | Bin 0 -> 646 bytes .../data/mnist_subfolders/3/3_2.jpg | Bin 0 -> 583 bytes .../data/mnist_subfolders/3/3_3.jpg | Bin 0 -> 630 bytes .../data/mnist_subfolders/3/3_4.jpg | Bin 0 -> 609 bytes .../data/mnist_subfolders/3/3_5.jpg | Bin 0 -> 591 bytes .../data/mnist_subfolders/4/4_1.jpg | Bin 0 -> 625 bytes .../data/mnist_subfolders/4/4_2.jpg | Bin 0 -> 582 bytes .../data/mnist_subfolders/4/4_3.jpg | Bin 0 -> 602 bytes .../data/mnist_subfolders/4/4_4.jpg | Bin 0 -> 593 bytes .../data/mnist_subfolders/4/4_5.jpg | Bin 0 -> 600 bytes .../data/mnist_subfolders/5/5_1.jpg | Bin 0 -> 514 bytes .../data/mnist_subfolders/5/5_2.jpg | Bin 0 -> 575 bytes .../data/mnist_subfolders/5/5_3.jpg | Bin 0 -> 571 bytes .../data/mnist_subfolders/5/5_4.jpg | Bin 0 -> 579 bytes .../data/mnist_subfolders/5/5_5.jpg | Bin 0 -> 617 bytes .../data/mnist_subfolders/6/6_1.jpg | Bin 0 -> 603 bytes .../data/mnist_subfolders/6/6_2.jpg | Bin 0 -> 589 bytes .../data/mnist_subfolders/6/6_3.jpg | Bin 0 -> 513 bytes .../data/mnist_subfolders/6/6_4.jpg | Bin 0 -> 531 bytes .../data/mnist_subfolders/6/6_5.jpg | Bin 0 -> 563 bytes .../data/mnist_subfolders/7/7_1.jpg | Bin 0 -> 555 bytes .../data/mnist_subfolders/7/7_2.jpg | Bin 0 -> 523 bytes .../data/mnist_subfolders/7/7_3.jpg | Bin 0 -> 621 bytes .../data/mnist_subfolders/7/7_4.jpg | Bin 0 -> 571 bytes .../data/mnist_subfolders/7/7_5.jpg | Bin 0 -> 540 bytes .../data/mnist_subfolders/8/8_1.jpg | Bin 0 -> 622 bytes .../data/mnist_subfolders/8/8_2.jpg | Bin 0 -> 598 bytes .../data/mnist_subfolders/8/8_3.jpg | Bin 0 -> 578 bytes .../data/mnist_subfolders/8/8_4.jpg | Bin 0 -> 596 bytes .../data/mnist_subfolders/8/8_5.jpg | Bin 0 -> 599 bytes .../data/mnist_subfolders/9/9_1.jpg | Bin 0 -> 554 bytes .../data/mnist_subfolders/9/9_2.jpg | Bin 0 -> 548 bytes .../data/mnist_subfolders/9/9_3.jpg | Bin 0 -> 552 bytes .../data/mnist_subfolders/9/9_4.jpg | Bin 0 -> 539 bytes .../data/mnist_subfolders/9/9_5.jpg | Bin 0 -> 570 bytes .../tutorial19-customdata-text/english.csv | 4 + .../tutorial19-customdata-text/swedish.csv | 4 + .../test_example1.csv | 7 + .../test_example2.csv | 9 + .../test_example3.csv | 11 + .../tutorial19-customdata-text.py | 170 + .../Basics/tutorial2-tensorbasics.py | 82 + .../process_data.py | 54 + .../train_isic.py | 117 + .../Basics/tutorial3-neuralnetwork.py | 47 + ML/TensorFlow/Basics/tutorial4-convnet.py | 60 + .../Basics/tutorial5-regularization.py | 55 + .../Basics/tutorial6-rnn-gru-lstm.py | 61 + .../Basics/tutorial7-indepth-functional.py | 93 + .../Basics/tutorial8_keras_subclassing.py | 92 + .../Basics/tutorial9-custom-layers.py | 86 + .../CNN_architectures/AlexNet/README.md | 9 + .../CNN_architectures/AlexNet/alexnet.py | 113 + .../CNN_architectures/AlexNet/test.py | 9 + .../CNN_architectures/GoogLeNet/README.md | 14 + .../CNN_architectures/GoogLeNet/block.py | 163 + .../CNN_architectures/GoogLeNet/googlenet.py | 219 + .../CNN_architectures/GoogLeNet/test.py | 9 + .../CNN_architectures/LeNet5/README.md | 5 + .../CNN_architectures/LeNet5/lenet5.py | 78 + .../CNN_architectures/LeNet5/test.py | 9 + .../CNN_architectures/ResNet/README.md | 7 + .../CNN_architectures/ResNet/block.py | 105 + .../CNN_architectures/ResNet/resnet.py | 157 + .../CNN_architectures/ResNet/test.py | 10 + .../CNN_architectures/VGGNet/README.md | 13 + .../CNN_architectures/VGGNet/test.py | 21 + .../CNN_architectures/VGGNet/vggnet.py | 126 + ML/TensorFlow/more_advanced/DCGAN/main.py | 91 + ML/TensorFlow/more_advanced/DCGAN/train.py | 87 + ML/algorithms/decisiontree/decision_tree.py | 282 + .../decisiontree/example_data/data.txt | 90 + .../decisiontree/example_data/targets.txt | 90 + ML/algorithms/kmeans/kmeansclustering.py | 97 + .../knn/__pycache__/utils.cpython-37.pyc | Bin 0 -> 1559 bytes ML/algorithms/knn/example_data/data.txt | 90 + ML/algorithms/knn/example_data/targets.txt | 90 + ML/algorithms/knn/knn.py | 110 + ...regression_gradient_descent.cpython-37.pyc | Bin 0 -> 2194 bytes ..._regression_normal_equation.cpython-37.pyc | Bin 0 -> 625 bytes .../linear_regression_gradient_descent.py | 62 + .../linear_regression_normal_equation.py | 28 + .../__pycache__/utils.cpython-37.pyc | Bin 0 -> 1567 bytes .../logisticregression/logistic_regression.py | 70 + .../naivebayes/example_data/data.txt | 90 + .../naivebayes/example_data/targets.txt | 90 + ML/algorithms/naivebayes/naivebayes.py | 67 + ML/algorithms/neuralnetwork/NN.py | 174 + .../__pycache__/utils.cpython-37.pyc | Bin 0 -> 1577 bytes ML/algorithms/neuralnetwork/utils.py | 50 + .../randomforest/example_data/data.txt | 90 + .../randomforest/example_data/mock_data.csv | 100 + .../randomforest/example_data/targets.txt | 90 + ML/algorithms/randomforest/random_forest.py | 170 + .../svm/__pycache__/knn.cpython-37.pyc | Bin 0 -> 3292 bytes .../svm/__pycache__/utils.cpython-37.pyc | Bin 0 -> 1365 bytes ML/algorithms/svm/svm.py | 96 + ML/algorithms/svm/utils.py | 47 + ML/others/logo/pytorch_logo.png | Bin 0 -> 27763 bytes ML/others/logo/torch_and_tf.svg | 942 + ML/others/logo/youtube_logo.png | Bin 0 -> 403 bytes .../LinearRegression_GD.py | 68 + .../LinearRegression_normal.py | 71 + ML_tests/Object_detection_tests/iou_test.py | 118 + ML_tests/Object_detection_tests/map_test.py | 115 + ML_tests/Object_detection_tests/nms_test.py | 95 + README.md | 119 + 432 files changed, 1290844 insertions(+) create mode 100644 .github/FUNDING.yml create mode 100644 .gitignore create mode 100644 .travis.yml create mode 100644 LICENSE.txt create mode 100644 ML/Kaggles/SantanderTransaction/dataset.py create mode 100644 ML/Kaggles/SantanderTransaction/get_data.ipynb create mode 100644 ML/Kaggles/SantanderTransaction/train.py create mode 100644 ML/Kaggles/SantanderTransaction/utils.py create mode 100644 ML/Kaggles/Titanic/FirstKaggle_Titanic.ipynb create mode 100644 ML/PaperReviews/Randaugment.pdf create mode 100644 ML/PaperReviews/UNET.pdf create mode 100644 ML/Projects/DeepSort/sort_w_attention.py create mode 100644 ML/Projects/DeepSort/utils.py create mode 100644 ML/Projects/Exploring_MNIST/README.md create mode 100644 ML/Projects/Exploring_MNIST/networks/__pycache__/googLeNet.cpython-37.pyc create mode 100644 ML/Projects/Exploring_MNIST/networks/__pycache__/import_all_networks.cpython-37.pyc create mode 100644 ML/Projects/Exploring_MNIST/networks/__pycache__/lenet.cpython-37.pyc create mode 100644 ML/Projects/Exploring_MNIST/networks/__pycache__/resnet.cpython-37.pyc create mode 100644 ML/Projects/Exploring_MNIST/networks/__pycache__/vgg.cpython-37.pyc create mode 100644 ML/Projects/Exploring_MNIST/networks/googLeNet.py create mode 100644 ML/Projects/Exploring_MNIST/networks/import_all_networks.py create mode 100644 ML/Projects/Exploring_MNIST/networks/lenet.py create mode 100644 ML/Projects/Exploring_MNIST/networks/resnet.py create mode 100644 ML/Projects/Exploring_MNIST/networks/vgg.py create mode 100644 ML/Projects/Exploring_MNIST/train.py create mode 100644 ML/Projects/Exploring_MNIST/utils/__pycache__/import_utils.cpython-37.pyc create mode 100644 ML/Projects/Exploring_MNIST/utils/__pycache__/mnist_data.cpython-37.pyc create mode 100644 ML/Projects/Exploring_MNIST/utils/__pycache__/utils.cpython-37.pyc create mode 100644 ML/Projects/Exploring_MNIST/utils/import_utils.py create mode 100644 ML/Projects/Exploring_MNIST/utils/mnist_data.py create mode 100644 ML/Projects/Exploring_MNIST/utils/utils.py create mode 100644 ML/Projects/spam_classifier_naive_bayes/build_vocabulary.py create mode 100644 ML/Projects/spam_classifier_naive_bayes/create_freq_vectors.py create mode 100644 ML/Projects/spam_classifier_naive_bayes/data/emails.csv create mode 100644 ML/Projects/spam_classifier_naive_bayes/naivebayes.py create mode 100644 ML/Projects/text_generation_babynames/data/example_names.txt create mode 100644 ML/Projects/text_generation_babynames/data/names.txt create mode 100644 ML/Projects/text_generation_babynames/data/shakespeare_larger.txt create mode 100644 ML/Projects/text_generation_babynames/data/shakespeare_tiny.txt create mode 100644 ML/Projects/text_generation_babynames/generating_names.py create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.0.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.1.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.2.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.3.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.4.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.5.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.6.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.7.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/dog.0.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123686.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123687.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123688.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123689.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123690.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123691.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123692.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123693.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123694.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123695.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/classification.py create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/detection.py create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/full_pytorch_example.py create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/images/cat.jpg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/images/elon.jpeg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/images/mask.jpeg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/images/second_mask.jpeg create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/segmentation.py create mode 100644 ML/Pytorch/Basics/albumentations_tutorial/utils.py create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs.csv create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.0.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.1.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.2.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.3.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.4.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.5.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.6.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.7.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/dog.0.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/dog.1.jpg create mode 100644 ML/Pytorch/Basics/custom_dataset/custom_FCNN.py create mode 100644 ML/Pytorch/Basics/custom_dataset/custom_dataset.py create mode 100644 ML/Pytorch/Basics/custom_dataset/power.csv create mode 100644 ML/Pytorch/Basics/custom_dataset_txt/loader_customtext.py create mode 100644 ML/Pytorch/Basics/pytorch_bidirectional_lstm.py create mode 100644 ML/Pytorch/Basics/pytorch_init_weights.py create mode 100644 ML/Pytorch/Basics/pytorch_loadsave.py create mode 100644 ML/Pytorch/Basics/pytorch_lr_ratescheduler.py create mode 100644 ML/Pytorch/Basics/pytorch_mixed_precision_example.py create mode 100644 ML/Pytorch/Basics/pytorch_pretrain_finetune.py create mode 100644 ML/Pytorch/Basics/pytorch_progress_bar.py create mode 100644 ML/Pytorch/Basics/pytorch_rnn_gru_lstm.py create mode 100644 ML/Pytorch/Basics/pytorch_simple_CNN.py create mode 100644 ML/Pytorch/Basics/pytorch_simple_fullynet.py create mode 100644 ML/Pytorch/Basics/pytorch_std_mean.py create mode 100644 ML/Pytorch/Basics/pytorch_tensorbasics.py create mode 100644 ML/Pytorch/Basics/pytorch_tensorboard_.py create mode 100644 ML/Pytorch/Basics/pytorch_transforms.py create mode 100644 ML/Pytorch/Basics/set_deterministic_behavior/pytorch_set_seeds.py create mode 100644 ML/Pytorch/CNN_architectures/lenet5_pytorch.py create mode 100644 ML/Pytorch/CNN_architectures/pytorch_inceptionet.py create mode 100644 ML/Pytorch/CNN_architectures/pytorch_resnet.py create mode 100644 ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py create mode 100644 ML/Pytorch/GANs/1. SimpleGAN/fc_gan.py create mode 100644 ML/Pytorch/GANs/2. DCGAN/model.py create mode 100644 ML/Pytorch/GANs/2. DCGAN/train.py create mode 100644 ML/Pytorch/GANs/3. WGAN/model.py create mode 100644 ML/Pytorch/GANs/3. WGAN/train.py create mode 100644 ML/Pytorch/GANs/4. WGAN-GP/model.py create mode 100644 ML/Pytorch/GANs/4. WGAN-GP/train.py create mode 100644 ML/Pytorch/GANs/4. WGAN-GP/utils.py create mode 100644 ML/Pytorch/GANs/5. ProGAN/model.py create mode 100644 ML/Pytorch/GANs/5. ProGAN/test.py create mode 100644 ML/Pytorch/GANs/5. ProGAN/train.py create mode 100644 ML/Pytorch/GANs/5. ProGAN/utils.py create mode 100644 ML/Pytorch/image_segmentation/semantic_segmentation_unet/UNET_architecture.png create mode 100644 ML/Pytorch/image_segmentation/semantic_segmentation_unet/dataset.py create mode 100644 ML/Pytorch/image_segmentation/semantic_segmentation_unet/model.py create mode 100644 ML/Pytorch/image_segmentation/semantic_segmentation_unet/train.py create mode 100644 ML/Pytorch/image_segmentation/semantic_segmentation_unet/utils.py create mode 100644 ML/Pytorch/more_advanced/GANs/DCGAN_mnist.py create mode 100644 ML/Pytorch/more_advanced/GANs/README.md create mode 100644 ML/Pytorch/more_advanced/GANs/model_utils.py create mode 100644 ML/Pytorch/more_advanced/Seq2Seq/seq2seq.py create mode 100644 ML/Pytorch/more_advanced/Seq2Seq/utils.py create mode 100644 ML/Pytorch/more_advanced/Seq2Seq_attention/seq2seq_attention.py create mode 100644 ML/Pytorch/more_advanced/Seq2Seq_attention/utils.py create mode 100644 ML/Pytorch/more_advanced/image_captioning/README.md create mode 100644 ML/Pytorch/more_advanced/image_captioning/get_loader.py create mode 100644 ML/Pytorch/more_advanced/image_captioning/model.py create mode 100644 ML/Pytorch/more_advanced/image_captioning/test_examples/boat.png create mode 100644 ML/Pytorch/more_advanced/image_captioning/test_examples/bus.png create mode 100644 ML/Pytorch/more_advanced/image_captioning/test_examples/child.jpg create mode 100644 ML/Pytorch/more_advanced/image_captioning/test_examples/dog.jpg create mode 100644 ML/Pytorch/more_advanced/image_captioning/test_examples/horse.png create mode 100644 ML/Pytorch/more_advanced/image_captioning/train.py create mode 100644 ML/Pytorch/more_advanced/image_captioning/utils.py create mode 100644 ML/Pytorch/more_advanced/neuralstyle/annahathaway.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/nst.py create mode 100644 ML/Pytorch/more_advanced/neuralstyle/output/img1.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/output/img2.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/output/img3.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/output/img4.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/output/img5.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/output/img6.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/output/img7.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/output/img8.png create mode 100644 ML/Pytorch/more_advanced/neuralstyle/style.jpg create mode 100644 ML/Pytorch/more_advanced/neuralstyle/styles/style1.jpg create mode 100644 ML/Pytorch/more_advanced/neuralstyle/styles/style2.jpg create mode 100644 ML/Pytorch/more_advanced/neuralstyle/styles/style3.jpg create mode 100644 ML/Pytorch/more_advanced/neuralstyle/styles/style4.jpg create mode 100644 ML/Pytorch/more_advanced/neuralstyle/styles/style5.jpg create mode 100644 ML/Pytorch/more_advanced/neuralstyle/styles/style6.jpg create mode 100644 ML/Pytorch/more_advanced/neuralstyle/styles/style7.jpg create mode 100644 ML/Pytorch/more_advanced/neuralstyle/styles/style8.jpg create mode 100644 ML/Pytorch/more_advanced/seq2seq_transformer/seq2seq_transformer.py create mode 100644 ML/Pytorch/more_advanced/seq2seq_transformer/utils.py create mode 100644 ML/Pytorch/more_advanced/torchtext/mydata/test.csv create mode 100644 ML/Pytorch/more_advanced/torchtext/mydata/test.json create mode 100644 ML/Pytorch/more_advanced/torchtext/mydata/test.tsv create mode 100644 ML/Pytorch/more_advanced/torchtext/mydata/train.csv create mode 100644 ML/Pytorch/more_advanced/torchtext/mydata/train.json create mode 100644 ML/Pytorch/more_advanced/torchtext/mydata/train.tsv create mode 100644 ML/Pytorch/more_advanced/torchtext/torchtext_tutorial1.py create mode 100644 ML/Pytorch/more_advanced/torchtext/torchtext_tutorial2.py create mode 100644 ML/Pytorch/more_advanced/torchtext/torchtext_tutorial3.py create mode 100644 ML/Pytorch/more_advanced/transformer_from_scratch/transformer_from_scratch.py create mode 100644 ML/Pytorch/object_detection/YOLO/__pycache__/dataset.cpython-38.pyc create mode 100644 ML/Pytorch/object_detection/YOLO/__pycache__/loss.cpython-38.pyc create mode 100644 ML/Pytorch/object_detection/YOLO/__pycache__/model.cpython-38.pyc create mode 100644 ML/Pytorch/object_detection/YOLO/__pycache__/utils.cpython-38.pyc create mode 100755 ML/Pytorch/object_detection/YOLO/data/generate_csv.py create mode 100755 ML/Pytorch/object_detection/YOLO/data/get_data create mode 100755 ML/Pytorch/object_detection/YOLO/dataset.py create mode 100755 ML/Pytorch/object_detection/YOLO/loss.py create mode 100755 ML/Pytorch/object_detection/YOLO/model.py create mode 100755 ML/Pytorch/object_detection/YOLO/train.py create mode 100644 ML/Pytorch/object_detection/YOLO/utils.py create mode 100644 ML/Pytorch/object_detection/metrics/__pycache__/iou.cpython-38.pyc create mode 100644 ML/Pytorch/object_detection/metrics/__pycache__/mean_avg_precision.cpython-38.pyc create mode 100644 ML/Pytorch/object_detection/metrics/__pycache__/nms.cpython-38.pyc create mode 100644 ML/Pytorch/object_detection/metrics/iou.py create mode 100644 ML/Pytorch/object_detection/metrics/mean_avg_precision.py create mode 100644 ML/Pytorch/object_detection/metrics/nms.py create mode 100644 ML/Pytorch/others/default_setups/image_classification/augmentations.py create mode 100644 ML/Pytorch/others/default_setups/image_classification/config.py create mode 100644 ML/Pytorch/others/default_setups/image_classification/dataset.py create mode 100644 ML/Pytorch/others/default_setups/image_classification/model.py create mode 100644 ML/Pytorch/others/default_setups/image_classification/train.py create mode 100644 ML/Pytorch/others/default_setups/image_classification/utils.py create mode 100644 ML/TensorFlow/Basics/tutorial1-installation-videoonly.py create mode 100644 ML/TensorFlow/Basics/tutorial10-save-model.py create mode 100644 ML/TensorFlow/Basics/tutorial11-transfer-learning.py create mode 100644 ML/TensorFlow/Basics/tutorial12-tensorflowdatasets.py create mode 100644 ML/TensorFlow/Basics/tutorial13-data-augmentation.py create mode 100644 ML/TensorFlow/Basics/tutorial14-callbacks.py create mode 100644 ML/TensorFlow/Basics/tutorial15-customizing-modelfit.py create mode 100644 ML/TensorFlow/Basics/tutorial16-customloops.py create mode 100644 ML/TensorFlow/Basics/tutorial17-tensorboard/1_tb_callback.py create mode 100644 ML/TensorFlow/Basics/tutorial17-tensorboard/2_tb_scalars.py create mode 100644 ML/TensorFlow/Basics/tutorial17-tensorboard/3_tb_images.py create mode 100644 ML/TensorFlow/Basics/tutorial17-tensorboard/4_tb_confusion.py create mode 100644 ML/TensorFlow/Basics/tutorial17-tensorboard/5_tb_graph.py create mode 100644 ML/TensorFlow/Basics/tutorial17-tensorboard/6_tb_hparams.py create mode 100644 ML/TensorFlow/Basics/tutorial17-tensorboard/7_tb_projector.py create mode 100644 ML/TensorFlow/Basics/tutorial17-tensorboard/utils.py create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/1_in_subfolders.py create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/2_csv_file.py create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/3_single_folder.py create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/4_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/4_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/4_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/4_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/4_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/train.csv create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/0_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/0_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/0_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/0_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/0_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/4_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/4_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/4_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/4_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/4_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/0/0_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/0/0_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/0/0_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/0/0_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/0/0_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/4/4_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/4/4_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/4/4_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/4/4_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/4/4_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_1.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_2.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_3.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_4.jpg create mode 100644 ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_5.jpg create mode 100644 ML/TensorFlow/Basics/tutorial19-customdata-text/english.csv create mode 100644 ML/TensorFlow/Basics/tutorial19-customdata-text/swedish.csv create mode 100644 ML/TensorFlow/Basics/tutorial19-customdata-text/test_example1.csv create mode 100644 ML/TensorFlow/Basics/tutorial19-customdata-text/test_example2.csv create mode 100644 ML/TensorFlow/Basics/tutorial19-customdata-text/test_example3.csv create mode 100644 ML/TensorFlow/Basics/tutorial19-customdata-text/tutorial19-customdata-text.py create mode 100644 ML/TensorFlow/Basics/tutorial2-tensorbasics.py create mode 100644 ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/process_data.py create mode 100644 ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/train_isic.py create mode 100644 ML/TensorFlow/Basics/tutorial3-neuralnetwork.py create mode 100644 ML/TensorFlow/Basics/tutorial4-convnet.py create mode 100644 ML/TensorFlow/Basics/tutorial5-regularization.py create mode 100644 ML/TensorFlow/Basics/tutorial6-rnn-gru-lstm.py create mode 100644 ML/TensorFlow/Basics/tutorial7-indepth-functional.py create mode 100644 ML/TensorFlow/Basics/tutorial8_keras_subclassing.py create mode 100644 ML/TensorFlow/Basics/tutorial9-custom-layers.py create mode 100644 ML/TensorFlow/CNN_architectures/AlexNet/README.md create mode 100644 ML/TensorFlow/CNN_architectures/AlexNet/alexnet.py create mode 100644 ML/TensorFlow/CNN_architectures/AlexNet/test.py create mode 100644 ML/TensorFlow/CNN_architectures/GoogLeNet/README.md create mode 100644 ML/TensorFlow/CNN_architectures/GoogLeNet/block.py create mode 100644 ML/TensorFlow/CNN_architectures/GoogLeNet/googlenet.py create mode 100644 ML/TensorFlow/CNN_architectures/GoogLeNet/test.py create mode 100644 ML/TensorFlow/CNN_architectures/LeNet5/README.md create mode 100644 ML/TensorFlow/CNN_architectures/LeNet5/lenet5.py create mode 100644 ML/TensorFlow/CNN_architectures/LeNet5/test.py create mode 100644 ML/TensorFlow/CNN_architectures/ResNet/README.md create mode 100644 ML/TensorFlow/CNN_architectures/ResNet/block.py create mode 100644 ML/TensorFlow/CNN_architectures/ResNet/resnet.py create mode 100644 ML/TensorFlow/CNN_architectures/ResNet/test.py create mode 100644 ML/TensorFlow/CNN_architectures/VGGNet/README.md create mode 100644 ML/TensorFlow/CNN_architectures/VGGNet/test.py create mode 100644 ML/TensorFlow/CNN_architectures/VGGNet/vggnet.py create mode 100644 ML/TensorFlow/more_advanced/DCGAN/main.py create mode 100644 ML/TensorFlow/more_advanced/DCGAN/train.py create mode 100644 ML/algorithms/decisiontree/decision_tree.py create mode 100644 ML/algorithms/decisiontree/example_data/data.txt create mode 100644 ML/algorithms/decisiontree/example_data/targets.txt create mode 100644 ML/algorithms/kmeans/kmeansclustering.py create mode 100644 ML/algorithms/knn/__pycache__/utils.cpython-37.pyc create mode 100644 ML/algorithms/knn/example_data/data.txt create mode 100644 ML/algorithms/knn/example_data/targets.txt create mode 100644 ML/algorithms/knn/knn.py create mode 100644 ML/algorithms/linearregression/__pycache__/linear_regression_gradient_descent.cpython-37.pyc create mode 100644 ML/algorithms/linearregression/__pycache__/linear_regression_normal_equation.cpython-37.pyc create mode 100644 ML/algorithms/linearregression/linear_regression_gradient_descent.py create mode 100644 ML/algorithms/linearregression/linear_regression_normal_equation.py create mode 100644 ML/algorithms/logisticregression/__pycache__/utils.cpython-37.pyc create mode 100644 ML/algorithms/logisticregression/logistic_regression.py create mode 100644 ML/algorithms/naivebayes/example_data/data.txt create mode 100644 ML/algorithms/naivebayes/example_data/targets.txt create mode 100644 ML/algorithms/naivebayes/naivebayes.py create mode 100644 ML/algorithms/neuralnetwork/NN.py create mode 100644 ML/algorithms/neuralnetwork/__pycache__/utils.cpython-37.pyc create mode 100644 ML/algorithms/neuralnetwork/utils.py create mode 100644 ML/algorithms/randomforest/example_data/data.txt create mode 100644 ML/algorithms/randomforest/example_data/mock_data.csv create mode 100644 ML/algorithms/randomforest/example_data/targets.txt create mode 100644 ML/algorithms/randomforest/random_forest.py create mode 100644 ML/algorithms/svm/__pycache__/knn.cpython-37.pyc create mode 100644 ML/algorithms/svm/__pycache__/utils.cpython-37.pyc create mode 100644 ML/algorithms/svm/svm.py create mode 100644 ML/algorithms/svm/utils.py create mode 100644 ML/others/logo/pytorch_logo.png create mode 100644 ML/others/logo/torch_and_tf.svg create mode 100644 ML/others/logo/youtube_logo.png create mode 100644 ML_tests/LinearRegression_tests/LinearRegression_GD.py create mode 100644 ML_tests/LinearRegression_tests/LinearRegression_normal.py create mode 100644 ML_tests/Object_detection_tests/iou_test.py create mode 100755 ML_tests/Object_detection_tests/map_test.py create mode 100755 ML_tests/Object_detection_tests/nms_test.py create mode 100644 README.md diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..e638cb1 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] +patreon: aladdinpersson # Replace with a single Patreon username +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5d4103a --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.idea/ +ML/Pytorch/more_advanced/image_captioning/flickr8k/ +ML/algorithms/svm/__pycache__/utils.cpython-38.pyc diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a5c21aa --- /dev/null +++ b/.travis.yml @@ -0,0 +1,33 @@ +language: python + +# Default Python version +python: 3.8 + +# Install ruby to get gem command +before_install: + - sudo apt-add-repository -y ppa:brightbox/ruby-ng + - sudo apt-get -y update + - sudo apt-get -y install ruby-full + +install: + - pip install torch + - pip install codecov==2.0.15 + - pip install pytest-cov==2.7.1 + +#before_install: +# - cd Algorithm_tests/sorting_tests +# Install awesome_bot for README.md broken link checking + +before_script: + - gem install awesome_bot + +script: + - awesome_bot README.md --allow-dupe --allow-redirect + #- flake8 --max-line-length=88 + - pytest --cov=investpy ML_tests/ + #- python ML_tests/LinearRegression_tests/LinearRegression_GD.py + #- python ML_tests/LinearRegression_tests/LinearRegression_normal.py + +#after_success: +# pass +#- codecov diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..358796a --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Aladdin Persson + +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. diff --git a/ML/Kaggles/SantanderTransaction/dataset.py b/ML/Kaggles/SantanderTransaction/dataset.py new file mode 100644 index 0000000..a9ad545 --- /dev/null +++ b/ML/Kaggles/SantanderTransaction/dataset.py @@ -0,0 +1,23 @@ +import pandas as pd +import torch +from torch.utils.data import TensorDataset +from torch.utils.data.dataset import random_split +from math import ceil + +def get_data(): + train_data = pd.read_csv("new_shiny_train.csv") + y = train_data["target"] + X = train_data.drop(["ID_code", "target"], axis=1) + X_tensor = torch.tensor(X.values, dtype=torch.float32) + y_tensor = torch.tensor(y.values, dtype=torch.float32) + ds = TensorDataset(X_tensor, y_tensor) + train_ds, val_ds = random_split(ds, [int(0.999*len(ds)), ceil(0.001*len(ds))]) + + test_data = pd.read_csv("new_shiny_test.csv") + test_ids = test_data["ID_code"] + X = test_data.drop(["ID_code"], axis=1) + X_tensor = torch.tensor(X.values, dtype=torch.float32) + y_tensor = torch.tensor(y.values, dtype=torch.float32) + test_ds = TensorDataset(X_tensor, y_tensor) + + return train_ds, val_ds, test_ds, test_ids diff --git a/ML/Kaggles/SantanderTransaction/get_data.ipynb b/ML/Kaggles/SantanderTransaction/get_data.ipynb new file mode 100644 index 0000000..1463c1f --- /dev/null +++ b/ML/Kaggles/SantanderTransaction/get_data.ipynb @@ -0,0 +1,1356 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "joint-electric", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "from tqdm import tqdm" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "quantitative-beverage", + "metadata": {}, + "outputs": [], + "source": [ + "train = pd.read_csv(\"train.csv\")\n", + "test = pd.read_csv(\"test.csv\")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "twelve-insulin", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ID_codetargetvar_0var_1var_2var_3var_4var_5var_6var_7...var_190var_191var_192var_193var_194var_195var_196var_197var_198var_199
0train_008.9255-6.786311.90815.093011.4607-9.28345.118718.6266...4.43543.96423.13641.691018.5227-2.39787.87848.563512.7803-1.0914
1train_1011.5006-4.147313.85885.389012.36227.04335.620816.5338...7.64217.72142.583710.951615.43052.03398.12678.788918.35601.9518
2train_208.6093-2.745712.08057.892810.5825-9.08376.942714.6155...2.90579.79051.67041.685821.60423.1417-6.52138.267514.72220.3965
3train_3011.0604-2.15188.95227.195712.5846-1.83615.842814.9250...4.46664.74330.71781.421423.0347-1.2706-2.927510.292217.9697-8.9996
4train_409.8369-1.483412.87466.637512.27722.44865.940519.2514...-1.49059.5214-0.15089.194213.2876-1.51213.92679.503117.9974-8.8104
\n", + "

5 rows × 202 columns

\n", + "
" + ], + "text/plain": [ + " ID_code target var_0 var_1 var_2 var_3 var_4 var_5 var_6 \\\n", + "0 train_0 0 8.9255 -6.7863 11.9081 5.0930 11.4607 -9.2834 5.1187 \n", + "1 train_1 0 11.5006 -4.1473 13.8588 5.3890 12.3622 7.0433 5.6208 \n", + "2 train_2 0 8.6093 -2.7457 12.0805 7.8928 10.5825 -9.0837 6.9427 \n", + "3 train_3 0 11.0604 -2.1518 8.9522 7.1957 12.5846 -1.8361 5.8428 \n", + "4 train_4 0 9.8369 -1.4834 12.8746 6.6375 12.2772 2.4486 5.9405 \n", + "\n", + " var_7 ... var_190 var_191 var_192 var_193 var_194 var_195 \\\n", + "0 18.6266 ... 4.4354 3.9642 3.1364 1.6910 18.5227 -2.3978 \n", + "1 16.5338 ... 7.6421 7.7214 2.5837 10.9516 15.4305 2.0339 \n", + "2 14.6155 ... 2.9057 9.7905 1.6704 1.6858 21.6042 3.1417 \n", + "3 14.9250 ... 4.4666 4.7433 0.7178 1.4214 23.0347 -1.2706 \n", + "4 19.2514 ... -1.4905 9.5214 -0.1508 9.1942 13.2876 -1.5121 \n", + "\n", + " var_196 var_197 var_198 var_199 \n", + "0 7.8784 8.5635 12.7803 -1.0914 \n", + "1 8.1267 8.7889 18.3560 1.9518 \n", + "2 -6.5213 8.2675 14.7222 0.3965 \n", + "3 -2.9275 10.2922 17.9697 -8.9996 \n", + "4 3.9267 9.5031 17.9974 -8.8104 \n", + "\n", + "[5 rows x 202 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train.head(5)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "appreciated-affairs", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|████████████████████████████████████████████████████████████████████████████████| 200/200 [00:03<00:00, 59.75it/s]\n" + ] + } + ], + "source": [ + "col_names = [f\"var_{i}\" for i in range(200)]\n", + "for col in tqdm(col_names):\n", + " count = test[col].value_counts()\n", + " uniques = count.index[count == 1]\n", + " test[col + \"_u\"] = test[col].isin(uniques)\n", + "\n", + "test[\"has_unique\"] = test[[col + \"_u\" for col in col_names]].any(axis=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "mighty-basics", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "100000" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test[\"has_unique\"].sum()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "sustainable-palestinian", + "metadata": {}, + "outputs": [], + "source": [ + "real_test = test.loc[test[\"has_unique\"], [\"ID_code\"] + col_names]\n", + "fake_test = test.loc[~test[\"has_unique\"], [\"ID_code\"] + col_names]\n", + "train_and_test = pd.concat([train, real_test], axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "military-tiger", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "100%|████████████████████████████████████████████████████████████████████████████████| 200/200 [00:43<00:00, 4.64it/s]\n" + ] + } + ], + "source": [ + "for col in tqdm(col_names):\n", + " count = train_and_test[col].value_counts().to_dict()\n", + " train_and_test[col+\"_unique\"] = train_and_test[col].apply(\n", + " lambda x: 1 if count[x] == 1 else 0).values\n", + " fake_test[col+\"_unique\"] = 0 " + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "extraordinary-phrase", + "metadata": {}, + "outputs": [], + "source": [ + "real_test = train_and_test[train_and_test[\"ID_code\"].str.contains(\"test\")].copy()\n", + "real_test.drop([\"target\"], axis=1, inplace=True)\n", + "train = train_and_test[train_and_test[\"ID_code\"].str.contains(\"train\")].copy()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "quantitative-iraqi", + "metadata": {}, + "outputs": [], + "source": [ + "test = pd.concat([real_test, fake_test], axis=0)" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "instant-kitty", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ID_codetargetvar_0var_1var_2var_3var_4var_5var_6var_7...var_190_uniquevar_191_uniquevar_192_uniquevar_193_uniquevar_194_uniquevar_195_uniquevar_196_uniquevar_197_uniquevar_198_uniquevar_199_unique
0train_00.08.9255-6.786311.90815.093011.4607-9.28345.118718.6266...0000000000
1train_10.011.5006-4.147313.85885.389012.36227.04335.620816.5338...0000000000
2train_20.08.6093-2.745712.08057.892810.5825-9.08376.942714.6155...0000000000
3train_30.011.0604-2.15188.95227.195712.5846-1.83615.842814.9250...0000000000
4train_40.09.8369-1.483412.87466.637512.27722.44865.940519.2514...0011100000
..................................................................
199995train_1999950.011.4880-0.49568.26223.514210.340411.60815.670915.1516...0100001000
199996train_1999960.04.9149-2.448416.70526.63458.3096-10.56285.880221.5940...0001000000
199997train_1999970.011.2232-5.051810.51275.64569.3410-5.40864.555521.5571...0000000001
199998train_1999980.09.7148-8.609813.61045.793012.51730.53396.047917.0152...0000000001
199999train_1999990.010.8762-5.710512.11838.032811.55770.34885.283915.2058...0000000001
\n", + "

200000 rows × 402 columns

\n", + "
" + ], + "text/plain": [ + " ID_code target var_0 var_1 var_2 var_3 var_4 \\\n", + "0 train_0 0.0 8.9255 -6.7863 11.9081 5.0930 11.4607 \n", + "1 train_1 0.0 11.5006 -4.1473 13.8588 5.3890 12.3622 \n", + "2 train_2 0.0 8.6093 -2.7457 12.0805 7.8928 10.5825 \n", + "3 train_3 0.0 11.0604 -2.1518 8.9522 7.1957 12.5846 \n", + "4 train_4 0.0 9.8369 -1.4834 12.8746 6.6375 12.2772 \n", + "... ... ... ... ... ... ... ... \n", + "199995 train_199995 0.0 11.4880 -0.4956 8.2622 3.5142 10.3404 \n", + "199996 train_199996 0.0 4.9149 -2.4484 16.7052 6.6345 8.3096 \n", + "199997 train_199997 0.0 11.2232 -5.0518 10.5127 5.6456 9.3410 \n", + "199998 train_199998 0.0 9.7148 -8.6098 13.6104 5.7930 12.5173 \n", + "199999 train_199999 0.0 10.8762 -5.7105 12.1183 8.0328 11.5577 \n", + "\n", + " var_5 var_6 var_7 ... var_190_unique var_191_unique \\\n", + "0 -9.2834 5.1187 18.6266 ... 0 0 \n", + "1 7.0433 5.6208 16.5338 ... 0 0 \n", + "2 -9.0837 6.9427 14.6155 ... 0 0 \n", + "3 -1.8361 5.8428 14.9250 ... 0 0 \n", + "4 2.4486 5.9405 19.2514 ... 0 0 \n", + "... ... ... ... ... ... ... \n", + "199995 11.6081 5.6709 15.1516 ... 0 1 \n", + "199996 -10.5628 5.8802 21.5940 ... 0 0 \n", + "199997 -5.4086 4.5555 21.5571 ... 0 0 \n", + "199998 0.5339 6.0479 17.0152 ... 0 0 \n", + "199999 0.3488 5.2839 15.2058 ... 0 0 \n", + "\n", + " var_192_unique var_193_unique var_194_unique var_195_unique \\\n", + "0 0 0 0 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 0 0 0 0 \n", + "4 1 1 1 0 \n", + "... ... ... ... ... \n", + "199995 0 0 0 0 \n", + "199996 0 1 0 0 \n", + "199997 0 0 0 0 \n", + "199998 0 0 0 0 \n", + "199999 0 0 0 0 \n", + "\n", + " var_196_unique var_197_unique var_198_unique var_199_unique \n", + "0 0 0 0 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 0 0 0 0 \n", + "4 0 0 0 0 \n", + "... ... ... ... ... \n", + "199995 1 0 0 0 \n", + "199996 0 0 0 0 \n", + "199997 0 0 0 1 \n", + "199998 0 0 0 1 \n", + "199999 0 0 0 1 \n", + "\n", + "[200000 rows x 402 columns]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "human-japanese", + "metadata": {}, + "outputs": [], + "source": [ + "train.to_csv(\"new_shiny_train.csv\", index=False)\n", + "test.to_csv(\"new_shiny_test.csv\", index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "outer-walter", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ID_codetargetvar_0var_1var_2var_3var_4var_5var_6var_7...var_190_uniquevar_191_uniquevar_192_uniquevar_193_uniquevar_194_uniquevar_195_uniquevar_196_uniquevar_197_uniquevar_198_uniquevar_199_unique
0train_00.08.9255-6.786311.90815.093011.4607-9.28345.118718.6266...0000000000
1train_10.011.5006-4.147313.85885.389012.36227.04335.620816.5338...0000000000
2train_20.08.6093-2.745712.08057.892810.5825-9.08376.942714.6155...0000000000
3train_30.011.0604-2.15188.95227.195712.5846-1.83615.842814.9250...0000000000
4train_40.09.8369-1.483412.87466.637512.27722.44865.940519.2514...0011100000
..................................................................
199995train_1999950.011.4880-0.49568.26223.514210.340411.60815.670915.1516...0100001000
199996train_1999960.04.9149-2.448416.70526.63458.3096-10.56285.880221.5940...0001000000
199997train_1999970.011.2232-5.051810.51275.64569.3410-5.40864.555521.5571...0000000001
199998train_1999980.09.7148-8.609813.61045.793012.51730.53396.047917.0152...0000000001
199999train_1999990.010.8762-5.710512.11838.032811.55770.34885.283915.2058...0000000001
\n", + "

200000 rows × 402 columns

\n", + "
" + ], + "text/plain": [ + " ID_code target var_0 var_1 var_2 var_3 var_4 \\\n", + "0 train_0 0.0 8.9255 -6.7863 11.9081 5.0930 11.4607 \n", + "1 train_1 0.0 11.5006 -4.1473 13.8588 5.3890 12.3622 \n", + "2 train_2 0.0 8.6093 -2.7457 12.0805 7.8928 10.5825 \n", + "3 train_3 0.0 11.0604 -2.1518 8.9522 7.1957 12.5846 \n", + "4 train_4 0.0 9.8369 -1.4834 12.8746 6.6375 12.2772 \n", + "... ... ... ... ... ... ... ... \n", + "199995 train_199995 0.0 11.4880 -0.4956 8.2622 3.5142 10.3404 \n", + "199996 train_199996 0.0 4.9149 -2.4484 16.7052 6.6345 8.3096 \n", + "199997 train_199997 0.0 11.2232 -5.0518 10.5127 5.6456 9.3410 \n", + "199998 train_199998 0.0 9.7148 -8.6098 13.6104 5.7930 12.5173 \n", + "199999 train_199999 0.0 10.8762 -5.7105 12.1183 8.0328 11.5577 \n", + "\n", + " var_5 var_6 var_7 ... var_190_unique var_191_unique \\\n", + "0 -9.2834 5.1187 18.6266 ... 0 0 \n", + "1 7.0433 5.6208 16.5338 ... 0 0 \n", + "2 -9.0837 6.9427 14.6155 ... 0 0 \n", + "3 -1.8361 5.8428 14.9250 ... 0 0 \n", + "4 2.4486 5.9405 19.2514 ... 0 0 \n", + "... ... ... ... ... ... ... \n", + "199995 11.6081 5.6709 15.1516 ... 0 1 \n", + "199996 -10.5628 5.8802 21.5940 ... 0 0 \n", + "199997 -5.4086 4.5555 21.5571 ... 0 0 \n", + "199998 0.5339 6.0479 17.0152 ... 0 0 \n", + "199999 0.3488 5.2839 15.2058 ... 0 0 \n", + "\n", + " var_192_unique var_193_unique var_194_unique var_195_unique \\\n", + "0 0 0 0 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 0 0 0 0 \n", + "4 1 1 1 0 \n", + "... ... ... ... ... \n", + "199995 0 0 0 0 \n", + "199996 0 1 0 0 \n", + "199997 0 0 0 0 \n", + "199998 0 0 0 0 \n", + "199999 0 0 0 0 \n", + "\n", + " var_196_unique var_197_unique var_198_unique var_199_unique \n", + "0 0 0 0 0 \n", + "1 0 0 0 0 \n", + "2 0 0 0 0 \n", + "3 0 0 0 0 \n", + "4 0 0 0 0 \n", + "... ... ... ... ... \n", + "199995 1 0 0 0 \n", + "199996 0 0 0 0 \n", + "199997 0 0 0 1 \n", + "199998 0 0 0 1 \n", + "199999 0 0 0 1 \n", + "\n", + "[200000 rows x 402 columns]" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "train" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "therapeutic-scratch", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
ID_codevar_0var_1var_2var_3var_4var_5var_6var_7var_8...var_190_uniquevar_191_uniquevar_192_uniquevar_193_uniquevar_194_uniquevar_195_uniquevar_196_uniquevar_197_uniquevar_198_uniquevar_199_unique
3test_38.5374-1.322212.02206.57498.84583.17444.939720.56603.3755...0000000001
7test_717.3035-2.421213.39898.399811.07779.64495.959617.8477-4.8068...0000000010
11test_1110.6137-2.18988.90903.801413.8602-5.98025.551515.4716-0.1714...0000001001
15test_1514.8595-4.537813.64835.64809.91441.51905.035813.4524-2.5419...0010000001
16test_1614.1732-5.14909.75913.731610.3700-21.92027.713018.87490.4680...0000000000
\n", + "

5 rows × 401 columns

\n", + "
" + ], + "text/plain": [ + " ID_code var_0 var_1 var_2 var_3 var_4 var_5 var_6 \\\n", + "3 test_3 8.5374 -1.3222 12.0220 6.5749 8.8458 3.1744 4.9397 \n", + "7 test_7 17.3035 -2.4212 13.3989 8.3998 11.0777 9.6449 5.9596 \n", + "11 test_11 10.6137 -2.1898 8.9090 3.8014 13.8602 -5.9802 5.5515 \n", + "15 test_15 14.8595 -4.5378 13.6483 5.6480 9.9144 1.5190 5.0358 \n", + "16 test_16 14.1732 -5.1490 9.7591 3.7316 10.3700 -21.9202 7.7130 \n", + "\n", + " var_7 var_8 ... var_190_unique var_191_unique var_192_unique \\\n", + "3 20.5660 3.3755 ... 0 0 0 \n", + "7 17.8477 -4.8068 ... 0 0 0 \n", + "11 15.4716 -0.1714 ... 0 0 0 \n", + "15 13.4524 -2.5419 ... 0 0 1 \n", + "16 18.8749 0.4680 ... 0 0 0 \n", + "\n", + " var_193_unique var_194_unique var_195_unique var_196_unique \\\n", + "3 0 0 0 0 \n", + "7 0 0 0 0 \n", + "11 0 0 0 1 \n", + "15 0 0 0 0 \n", + "16 0 0 0 0 \n", + "\n", + " var_197_unique var_198_unique var_199_unique \n", + "3 0 0 1 \n", + "7 0 1 0 \n", + "11 0 0 1 \n", + "15 0 0 1 \n", + "16 0 0 0 \n", + "\n", + "[5 rows x 401 columns]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test.head(5)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/ML/Kaggles/SantanderTransaction/train.py b/ML/Kaggles/SantanderTransaction/train.py new file mode 100644 index 0000000..261c984 --- /dev/null +++ b/ML/Kaggles/SantanderTransaction/train.py @@ -0,0 +1,55 @@ +import torch +from sklearn import metrics +from tqdm import tqdm +import torch.nn as nn +import torch.optim as optim +from utils import get_predictions +from dataset import get_data +from torch.utils.data import DataLoader +import torch.nn.functional as F + +class NN(nn.Module): + def __init__(self, input_size, hidden_dim): + super(NN, self).__init__() + self.bn = nn.BatchNorm1d(input_size) + self.fc1 = nn.Linear(2, hidden_dim) + self.fc2 = nn.Linear(input_size//2*hidden_dim, 1) + + def forward(self, x): + N = x.shape[0] + x = self.bn(x) + orig_features = x[:, :200].unsqueeze(2) # (N, 200, 1) + new_features = x[:, 200:].unsqueeze(2) # (N, 200, 1) + x = torch.cat([orig_features, new_features], dim=2) # (N, 200, 2) + x = F.relu(self.fc1(x)).reshape(N, -1) # (N, 200*hidden_dim) + return torch.sigmoid(self.fc2(x)).view(-1) + + +DEVICE = "cuda" if torch.cuda.is_available() else "cpu" +model = NN(input_size=400, hidden_dim=100).to(DEVICE) +optimizer = optim.Adam(model.parameters(), lr=2e-3, weight_decay=1e-4) +loss_fn = nn.BCELoss() +train_ds, val_ds, test_ds, test_ids = get_data() +train_loader = DataLoader(train_ds, batch_size=1024, shuffle=True) +val_loader = DataLoader(val_ds, batch_size=1024) +test_loader = DataLoader(test_ds, batch_size=1024) + +for epoch in range(20): + probabilities, true = get_predictions(val_loader, model, device=DEVICE) + print(f"VALIDATION ROC: {metrics.roc_auc_score(true, probabilities)}") + + for batch_idx, (data, targets) in enumerate(train_loader): + data = data.to(DEVICE) + targets = targets.to(DEVICE) + + # forward + scores = model(data) + loss = loss_fn(scores, targets) + optimizer.zero_grad() + loss.backward() + optimizer.step() + +from utils import get_submission +get_submission(model, test_loader, test_ids, DEVICE) + + diff --git a/ML/Kaggles/SantanderTransaction/utils.py b/ML/Kaggles/SantanderTransaction/utils.py new file mode 100644 index 0000000..b00d638 --- /dev/null +++ b/ML/Kaggles/SantanderTransaction/utils.py @@ -0,0 +1,39 @@ +import pandas as pd +import numpy as np +import torch + +def get_predictions(loader, model, device): + model.eval() + saved_preds = [] + true_labels = [] + + with torch.no_grad(): + for x,y in loader: + x = x.to(device) + y = y.to(device) + scores = model(x) + saved_preds += scores.tolist() + true_labels += y.tolist() + + model.train() + return saved_preds, true_labels + +def get_submission(model, loader, test_ids, device): + all_preds = [] + model.eval() + with torch.no_grad(): + for x,y in loader: + print(x.shape) + x = x.to(device) + score = model(x) + prediction = score.float() + all_preds += prediction.tolist() + + model.train() + + df = pd.DataFrame({ + "ID_code" : test_ids.values, + "target" : np.array(all_preds) + }) + + df.to_csv("sub.csv", index=False) \ No newline at end of file diff --git a/ML/Kaggles/Titanic/FirstKaggle_Titanic.ipynb b/ML/Kaggles/Titanic/FirstKaggle_Titanic.ipynb new file mode 100644 index 0000000..45b7c93 --- /dev/null +++ b/ML/Kaggles/Titanic/FirstKaggle_Titanic.ipynb @@ -0,0 +1,364 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "electoral-scientist", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "surrounded-albert", + "metadata": {}, + "outputs": [], + "source": [ + "data = pd.read_csv(\"train.csv\")\n", + "test = pd.read_csv(\"test.csv\")\n", + "test_ids = test[\"PassengerId\"]\n", + "\n", + "def clean(data):\n", + " data = data.drop([\"Ticket\", \"PassengerId\", \"Name\", \"Cabin\"], axis=1)\n", + " \n", + " cols = [\"SibSp\", \"Parch\", \"Fare\", \"Age\"]\n", + " for col in cols:\n", + " data[col].fillna(data[col].median(), inplace=True)\n", + " \n", + " data.Embarked.fillna(\"U\", inplace=True)\n", + " return data\n", + "\n", + "data = clean(data)\n", + "test = clean(test)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "electronic-wyoming", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SurvivedPclassSexAgeSibSpParchFareEmbarked
003male22.0107.2500S
111female38.01071.2833C
213female26.0007.9250S
\n", + "
" + ], + "text/plain": [ + " Survived Pclass Sex Age SibSp Parch Fare Embarked\n", + "0 0 3 male 22.0 1 0 7.2500 S\n", + "1 1 1 female 38.0 1 0 71.2833 C\n", + "2 1 3 female 26.0 0 0 7.9250 S" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "legendary-conditions", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['female' 'male']\n", + "['C' 'Q' 'S' 'U']\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SurvivedPclassSexAgeSibSpParchFareEmbarked
003122.0107.25002
111038.01071.28330
213026.0007.92502
311035.01053.10002
403135.0008.05002
\n", + "
" + ], + "text/plain": [ + " Survived Pclass Sex Age SibSp Parch Fare Embarked\n", + "0 0 3 1 22.0 1 0 7.2500 2\n", + "1 1 1 0 38.0 1 0 71.2833 0\n", + "2 1 3 0 26.0 0 0 7.9250 2\n", + "3 1 1 0 35.0 1 0 53.1000 2\n", + "4 0 3 1 35.0 0 0 8.0500 2" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sklearn import preprocessing\n", + "le = preprocessing.LabelEncoder()\n", + "columns = [\"Sex\", \"Embarked\"]\n", + "\n", + "for col in columns:\n", + " data[col] = le.fit_transform(data[col])\n", + " test[col] = le.transform(test[col])\n", + " print(le.classes_)\n", + " \n", + "data.head(5)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "assumed-screening", + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.linear_model import LogisticRegression\n", + "from sklearn.model_selection import train_test_split\n", + "\n", + "y = data[\"Survived\"]\n", + "X = data.drop(\"Survived\", axis=1)\n", + "\n", + "X_train, X_val, y_train, y_val = train_test_split(X, y, test_size=0.2, random_state=42)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "industrial-internship", + "metadata": {}, + "outputs": [], + "source": [ + "clf = LogisticRegression(random_state=0, max_iter=1000).fit(X_train, y_train)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "fifteen-enemy", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0.8888888888888888" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "predictions = clf.predict(X_val)\n", + "from sklearn.metrics import accuracy_score\n", + "accuracy_score(y_val, predictions)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "juvenile-anthropology", + "metadata": {}, + "outputs": [], + "source": [ + "submission_preds = clf.predict(test)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "virgin-settlement", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame({\"PassengerId\": test_ids.values,\n", + " \"Survived\": submission_preds,\n", + " })" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "tribal-bidding", + "metadata": {}, + "outputs": [], + "source": [ + "df.to_csv(\"submission.csv\", index=False)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.8.5" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/ML/PaperReviews/Randaugment.pdf b/ML/PaperReviews/Randaugment.pdf new file mode 100644 index 0000000000000000000000000000000000000000..293261bf8c0c96ccb6a46da4febda24420e2bcde GIT binary patch literal 1684230 zcmb5V1CV6h)-76gm)Yg&vTfV8ZL`a^ZL7<+ZDv)MZQHu_{pXzf-#=cw7w<-7MDED7 z*It-ojxpEVGfCuyMQIplSzt(FVHlVg3Fryz3@u@}xe4e*Ev%hQ9KXM<4V+DcO^ob} zO$g|uO>E7a%?X%U7+DE;d10KK9Zd{uV1BO_Ye^;UH6wMusZ9>4WR)jN2W(Tdj2UIi z40TXksXB&v`;kwEF^Eul{pS9BIKdDX4~#F|CjyCPn?3$)$Bwwlx!mor>xnpcd!y6y zzT>63EVoInc)y(3(?PdO6y89S=!^#JUQT>o=FS<1zD18G{AmE(c_WK`T%({&%HwB@ z{RMC@$4h*5e%(yy>HC2}VA`WfdwpG~&C01tU?IRK;crRs*+fF4J;X|Bo4wbGt;sMd0}Om;mq;a=RZ?!OS~Rw= zS%E6{*kP1&B2uPJV1hn)dqXp>Hz6D<%_g<{Ce!2doN!MjEYi#u=$5d<$t0yMR_u&^ z)AYcepy3#MIE$Ryw6YkwzdwqIf1dXoncA<#CQpu%%rtk&5tW%1$+t_|OBp2eRdMBL zMnc|8F?IDSJ858h1y8XvttMi@T_C7(^rf)&v_AlYFBdj@?(mN;iNd(DPU3&$udwh2 zS{sx*AbIE0ERAkWDG5=j)q?2%nOjq!_T9HLJL+4!tr0X|o-_P`DSmPs${xwLS*me= zjgA0Rs11c=zDq;KW1dZ#l*~m!HTPtix7SG^JxR0=V;?n_Lm8%7XL3K!I+bwJ7llfyiqqE&8KU>!hhfy84)2n9JJR~#0G)80_uVyX# z)?3V{9uMQ!i!{_Z#wscE^})-o3iWS_Yj6iwV(5g(RtnuaqFLz{J=m@ZzoM>Sm5Y}A zI=-0>q-q#xyo!=|I{F>#|I~p^Is$29IFw#{?wB^ce7J1sRrDZK)4r;V~fcfkSO+tR6=gb^j=j} zewq99|A0S7b0VnSpOX#EvBlFi*5_`pDmFfSv1+xy{JE~bFIVQ{lUsW_9i z$F(wRk=UO06AyVwV1$V%H088;-~|aRJw{5EYBo&{r@eBDoWc--T(b!hQNs*uCHw^s zEr?d&{r6-Qpx?-LlEqUS>Jq^x{B+&tFidrR#cwbJAvWQin~&T6{jn&%VArFU**%*DccON5 zOpE>ZxlVgSF*L*V2U{>`hS~KzpaUdy%;{#+*3bi9!Wu>I)ZC)i103PU^`QA0oia%= z4Xh*~&fq)i>w5m|hF{7mA%a*Yp~;Q|xeh-)cF~BV_q@2PXi7l&&s%frgdFQw*bZHlr%XAmWX}_DX{#lb(rhRzr%A#$=H$fiKZ`AiOE&%S;1p`X2wL zS2dL&?dO%j+$1nTdQ5XjCFWv6L(D6N8PdaK?7$5QR52N31VJKnndL0sl{Ee!2yR8| zegL)&yU4*we-^BOA)Y2+W`Yn2-vd^+#=Su)%kiZMa|0~4lN8%u6Zps z-*XHD$i$P<5u%5fl|!QbC(7@rU%F0{QTprzT>Bj3@|-^N6689fWsH10D>u>D!oyb8 zM9o# z;1nZ7Sb$Pcp{ytY42^w7B17Oe|4jD{OtC_}-(ZUHn|ao9l!rBpBY1Me{bMEso56j4 z#AVrg`oKwXrZy^vMOD@0#0th93`Z>V?=P}OD+rPY+94ruYk#*oXN+dT6ORqGk}1v^ zUEX=hK@ITI6FMs!L%-?QuU@Yc=x@xS9dE!C}kc=j48#Q-h7uM9ZuLux1v{ z&zF#(NB)qjlF;Ol>7ASwFXQ9gjW;aP+s31FMNS4ldEv*4N4h_eZR-5+X+WWu{mYH_ zL0?dZHRQIt?XHBe!z)od`lmF*vFw@LL?Z$uf4UDd2VgP2MyQk6AWqx9bS2cXoR>e(U9$l~;!WE!g4mDf0^-Cffva78(H! z`f(b|`wj~3SnDu%c;8TAyvZMr%atW64fIxZ3^$V6x`J_kPg>=+!?zywMR_3xtV2^s zdRfv(XoImGyqKqqQK4xf5g^Z2ir&}vAoSmw(2N5?JknHa7S=mz8N0QW|2lbCq%(IcqBub{kYU?PVsp}4`hiv?`}RPV!mnw zaS^%^GVkj3UH}m|cwg^bNzkV)_?_u9Rkk;c~Ap+aGiy+p5mgWf` z;vwyAey(xNWJU!pWP!0EWuP-NfXpcFG!+9%PSIfV&O)QwLAz`7=`yP;%D1o3k2gC2 zvjG{S=EraJ1q9wu8xz`g|8rYhf7Bj7L;Fks-U1_ZkE7mHi44P2Ztg&4o077&OSyS! zH)*YcrsZ?9nU)nLu$!Fm*0zT=4gIZZwL}tZ4j-%Cc!df)6__|73{b{Gx6Y@Zw|dmZ%JaU8A`o=pHu|M;7DnVm7D3V zIjQMSW9Hk}Kyb%nV9!UpAxO>PyF6mRA+f2S137+NZ#N%f9Yn*+U;+Hl3_%_qX~=JX zlkCPLauE_MNRSz_(aU}Qaa7J40s4Z&zd$o)5q$)>Pe>FlR>KPGM+E^)3f$`FW1vL? z=-^ARZy}`H4{q=$G6LbmiY=_-^KpNqjHVJmEWMs?29D^+m$n@6o;{4Y5E$P~vtIiy z*bw2erpQl_taaaL!x&!c9J&QBu5%QRtDfjN5aA&l#)*7^f-WnQ8J$3chi>YW3#=#! z8tB_`RUt5A@MrYgjKfP;>njA9yeCwRMqW!^Dd!ifK*4xAIH)i1Lra=y=PzL8a6)xz zA#Swfcf#NVXa0CDE3jkWCFB%45!91y-fj%mo9==*@>EWJn6scaydjPD${FlzW4C}9 zy`qHl1V2Pr-f#fbp5Ti3{Ro5IXCJFmfjcNMxe8t$;jcp$uVN#FcG%g5%uK{*QKoer zW`w?#Yi=M15m5d-)n?+PDwz3D(5$AcaO|)8v8ptS@bW7$iA1O1h6E0!y?cj|W|~$$ z#Uf-{jfPxLM1#Ft6FqMx z4Rp9{FU{2f&G7U+CEfrjz1^W);`XnyMQHwTHJRS$1Fob{3#&cQ7E8}0+25@t=3y)I zNx#rZe>BQU1B6>i!QkKrx~+~N`LN!FUgnjRKWaw$iG$Jx6bR6vJSSC{elvl%)TyId zbX}dHyNyq(h|n_f-igA5E{GFO;h4F(E|`Dghw`$V?)R!svhMTHW8YoWzyZ6V1YEUP z+7kv)zea8r+&oi&^1?J5jEsYPqU4Net)X(`PlI6a!u)Y?V{hvq51~ARHWH5S#xc0S z08v~xoI)_|hN7~%M!od-BaVzA9HM*q8Ð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 `3$n=Oz^$EGFx-TlB^}>+& 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%0A3&H>mTMH)8x66#_!&<#id< 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

Dg5< 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

R+~cTX{sAhqB*i~6klC@Qx@}SIk>Skh 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⁢?Ai2S+R4AV+t|#L54O+)u4UN6l0WV+M<}Y z8Rl)WA;oiKRkH`$*}Tf1)65+R-C2rpi(uFtl_#!BW9NC1Gn~*cFLVjbbj5lYfKr=~ zXgcVjPI|bD9xf#vWbM0XVYq_O5Qfphod~W#bO^UVabWxhS>ZlraF87uWWg)zV0q5- zW4BaWM8gi-H>xA$2xH-Tp%32a231Sda8fuWcOCMQX~craxoM6Wu2XCaq!M7T zNfu%-0JDf!E&3j;0vZPgtO6&(%bU5$`mD*IZhfWEq$ z%6pnlpZx5-GZ$|VWdVYGVG^A@GCw7`k5@mU=r`%c2*VVk8l2FLm@;xx7W$4KybSi7w|;@UagI~Ea@U8L>%*K)Fapn;HQFr7Jxf1mHk5zT3Wad%p` z`<*1-%LoH>T@)qH^Wxp~Xgf9BN=2ZB1})q{Lq5F&?y2E+GNhGA2leQc5b_jM0Il#4 zJ2Z@@2tq^b$akXXb!qID0u}Aw)uf509M4@~*m4+cnqtlVFaPm>{Y+zNQw-wNTW{ z)95gTz=R0Q$U~xLon{Cz%rUwt29!kw;wr7VQ^4wiDD-i%9vs0Ycnzw4lVy(b99w+X zHrKhuwkDa@B+V2hYJx{KV5LSAkBHh;f^v0Q{%}&UHlf%kT{rJ4Lw6M6tD@j#?gl!_ zio156vjGD{afZD%%-%f1-nb-+qDn;o7|RZD7u&HzGpES`+zT23I&2+(CZ)CT;jhd%&P(bEmeT4@G_-thSbTDI9XB;Q|e-( zCh#u0v^1B6&f;-X#SV(lN)=eC=xUg)L2`pUQ zGFcM9ivk4cGDZD}tzYL`!U9`dXhR*G_?9Tg7)1S@EFrEX%C*F~rU=szWa>A0=AhUf z1L#uv(h6@{>P(58Nxm({)Q70r4H|HlZjEJl#L_Slzy7?Eyf7zUUc$UDGY-C%7P=*Mp4bbHfY1QF2z&>gZ^!ddazO_piaexJLpFFnQRFSU98Z9BN8~+%QEsc9e31TYMpAA;;d4<6MovXKi}H`c7CWGpsNCM&2VSk`M!qXPSjT7On2jj-j?C6#@^S0BTeRy-b;u8k@-Z%TtVCF`hW zUa)pWym?&``A!JW>W#CUbx1J~Ha8WC>+-}6Me?R1bwwJxB2U~_CCJt+*PR1*&#-Qj z^a+9{f>WWwX7qGK`#Vj7F;~bwI}u!WPySru&-VyY8Q*@g+t9^Q8BkKpDP;gegD7y@Bj1Xf?m7d z3-l{gnU5@XfgiM(Wqk1X+%r9SwPAOJ16OJD|yaA0{hz_2M6 zD8e`e_Jm`_@PN>~IIfjUo)!?U$SK!Mym6-tZmx=QH?fL_0$ix*Yvm5ob744(AP55(a_aYHPBu?*iqBhg8EBz z)t~OD{qnO9-#l~a4qm>1l`c;R=O-lh(FWclC#wfV#L31uQ5V63_0WgNx{@Lg@SvGk zAfJ*VB5X^HV@oits6rAHLC{CBYEZ-m7WwEkESlzeG$nsLCR-nsg9J8iN;W_dR|Fe3 zq~UAQ$Yntg+($_fo7ZJ=Fxn+KB(KYp-%8@3h`X9?x+BN;WO=R(-Lgg0C-CYB78RTX z@tVk#COWA};!SCSDNT1~d7iAmn`7FMG2wdl6uK6hV)4Qo~3QNDh&bB4C6E&?a|O(|BD5QcYczByY)6I8&Bj1kq*K&OPx= zUh3ah1P(wB+J!?EC}QD2IbT#S{-E?kL^4eYy8e;e^$U7!WxrRNR|F~_SMFj;9ZZRx zA#pH84u%-+T>xM#sh2JDaTGHgg`cbR!;dV9r}R3!-wAJ{i)?86i)SWsjTC{I0#qh~ zyy>M0tz0TbO}=VjT=$E{mlU`~C1Fm1p9Sbr5aw0HRXzEUk)$MFx!6-T(%W!lxDDNO zR9@_?9O8ifm({QD~{z6v`Alc=<<|~6OBi)U_UFSNgM>=bUAz`)F^f#UEt^4we z58oX5_6|dZx*HLs^91>Qih7-;-{hLZTvL=|iF2%RrYXuahS=sX#}wk2gB*Y^V-(1T zWsLBxsBNIc5tq3V5@%Fki*Z4Q<|tJcqG*Fu^#-biIBGkff~>SYt=b%yZ%oKHZli)> z5My{u5xp)BT^4RaO8QQ)Ii`q@sS;zFPq?#Ppq>J;4u znGv`y1HV~2mp9Dsn->lo_lowFC)Sli+e*>8T(sW%v&A3PsWkss?)rP^1?hmRU7$z; zblEH_*pr~9xDa3vW;~fgpalAI2~oc<7gy!tYusG5hpYB;HM1<$JWUZG9o71ZXG$}l zUJ6=wMjS;(!$(v2X>vbR>Zg~k6p5EqI_Zfl@u1{_KH?+&cyja%I)gwqN0rY~;B}OP z+(Z$oX2GHQVfz%|CmFijI|E0!UXvZnOhaUFNuDxPvF@D4e_B*GX4Qx?(mjD|RG zq|WF_*qa00Ej2x@H6w#<-=1mjZLRKZI6c@_KG+KMRb9#{)jdsRz0DPa?R9`&!<~R< zwF9WkxT3FAat}7Y>f}e&)zvt@m#W_&pk=`g@a6M5&j?u<2x;R!F#p$C2 zeT-~~QVcN^UD^;q6Qmj#_t=PXd?< zd^*pYr`xl5Lux`58&?D;l)*_=WI`F8&_uA>t-G4kly-~hgm>oXwjGK!Etn}N=89bR zK32aouGzk&+P)&&J}*iRuwsyC{x+Qz0bk!i11k~jq(>q0AEO*_Q+kq;rR|Kv5dlm->OY3fiTjY30zkQZz0f7*`G~4~mY5hu-z?XV$-8 z2>tng`#*k0=*8DBQc+o~AISu10fw6_2Hf(Kz|DHo^Vj2gJ(Hu2H1Sp>5PYZgx1WjMcvv}mSV#FN*Fyhg&j`L+H8$EJ^6L zB7Q>(Q5U@=j9iz;Cv{syO9p4!0WARA0DyffMau`E0=_TL^X^e?8JsRPsRG4;zCa6+ z2^AXCn$)-^iPdj|9Jrn=)3HOd@A7LkOqnp|AE9`KysMf*B!}W zxoB7hMeN%jKJl#o;9Yy-TmRmDKcmt+L?Ur%%1ihQdi`V3OJQCVDE$IufTx_{D!d#y z3=dqn3O`34V9NX~bo60q`qE*9Y4!cGV5FlnsMFYOO-kU(FSDCy%wY zw37u+v@)n&W$D%ds2E5}3A(XV=wgb~%yB9zJdQCH)!6k*r+7MM2p=yIP-6lo52|waBL5wOqp$tzbHZkhZm^?VH2v4fe#@ibb zaM{r@Rh($rVmh)k+b+|YquFv}nk_IvliDr5JFA*4$ozRe7#~xLsEy(^A)+<{t_QD; z5Ofi;VGCzSQq5_R2hb}k^6c{68RcwVzi=q^<*DW!tRX$2+rF(%Uy-MWxv?I!3k~AqkZfsAlU#bJjjU*b0Zf7iCc;ke2`|%2;5o4OkO)zG%ObN3q}3>0k9Ur zt;GZ9{i1L6(EH%f{h;W5us^r)WI6Q1O7Q7}$PdepvNp3rBNhK+x$EzuSLO$Seu*aY zqvmPy8J65ziZLgc0*=JW1N2flVer*}UT&_+%T@U}${CIlp%-1bK$ezH!xRSa;yIFR z4jm|f4mu1_74Wa~z)^I?5>s=JgZ5B7;+4*jVry2Is)f>6gx^3_&Z6T&Br{|w`V>_$ zM=qfk0ilyn^T8l5sM5Z9cZ zGH0NODA$I28d_`1I-9Ec+v?7CH+D8uHB_B!uP^UyspxA)^I8J{V5Qm>NHOqcF#g{T zwVdfd^1ktojG9~eb z1lf?FnYYNsBqS7q76L3n2O*dusN6*#K`-iJ(`tz4(3C0+Z@_D#SZx@k9(804l7a%z zD|lPFJ|^FsQUy_t(8MOxs9p9Ye&_-}2#E&r0>_o*paqe7-RO9 zYWFNR-phx{KOU6)-*EmS(0U!Zp*M7S*A71 zc4h^hoY<2Udv=As8~_-a;0o-Cy;*r6uV318uN^GM{=Ay_mwT~4KZyVNzyFW_`SV$D z6q?X!9RkB+RMD!v&jKwd|E2{M(gIl?AeOfGmb4HkX~ByozQi7)1eE2&30%`W8yJu= zhH;D}WYBOr-d&4$+9aH^@Wvg&Nw*BGygTHW84YRPKndu`9Q?QEdz;$o%etDXds}LU zI_g0bpoO-&(>+I8Xh!8;gB>*kB`uuktR3#I{dS;vxU;6e6{xJPx3#9DzO4TA@vlGs z^d>2#_OtCqs3V}c-)bYDY;I8N;LFl3& zG^J0oU3myLkOPEL&IuL_X32*$_v6)R4gGl9Q^~ZCUu5 zBs8tt=D3gqSgtJFv&V5~=}s`(dpOhXv@v&0zB9y$AuTYF9C}#sk`~bOAI*JHLw)SX z86K!04qh9ya81xTrwhWUK#-OLMch=%gSf>49j`< zUaM7kw` zc7dy%M@Q$B_Av4^^E~w&2NI&x%aXd;G7n@%pfbAHO%d6Md@Gh?#LC~)nd{H{JtimrUaZ4)fLp^!JLVIMQD2d;G*Wc9LP}bj4J=|VW|tf*r% z(}>nzN~Mn>Dv+BYOfy7Kg|IF}&_zLpL~WR$DV1`mHi_CGz!DxTl{P-Eh+P$jVGzw} zi7zkpW+lF?W^P|Se<1RK0CPNdUIO7gQ(!x`sFoxMpKgqEEeRk%7Cb9VC^Lcsx+4vf zO=+obPZ=nPeOZZrPdWq6eUIbZ1CS$Ia(7fa=lQWgPHX^;=m0kk*M3%bfD`Fq!Uzv> zBO}5%jB~u`C2``GDor$H*!EqnGb3$ZGvr4WyohedFT3alW9N z&6yYXJP!)Xo5ju4U*bFe65sjfjcDFsb!erce>ivj-M(HsKX5gRs4EECBWoP3VWD}QZ+yr{`zcmA+ItN3GF=5@iJ@L9 zH4^a?gy{GlG(RAN5g>_=GLB_}V;M%wN-aCmbcZHcQ#g_o$_!+I~;4k?6=jGHCBAlS@+Fg zTh;l#hO=FDsPzP@$w$q;nkv8e>XUcQUY#VVSE+^&gd!w`X?+SPXjGLNQ>CVLDWZ9s zXi8!Y36e2MF>OVNH^Lj2_=F!@Y`)^_^K!b zUfZ4<0{?#v;>b$~HsM>V?yGyJwZ z-?PW}^mu;>rj; zJ3?<(1|9^s3we+n(3fs8Z@a(meq8WAD)`YguXiqqC9$}p(+%fgw_ZTH_#U zq9HY@O5WAPDV7~ssT@l?zpn`7gl?dn4AZv7wWq}p@a`R9)NoU7Bd!6MFOVnLUL+ukz)T{yoJ^9_}@WxH2k#2I$MMa9{@R zTF7eyd&c>^>t25L@&58=;eN2N8r;9XnfG{?baL5G!Cn793yyrvJXPYNqs}A_ve1f( z3HfG{z(Nt)Xc7lg=4LBA9EFdgEUkb;_$g+XidhDluv(_5P@m81?4|3RdpEf&w|L8= z{N+1>l~Lj9w0w=G53@`WzC9*!C&iwm#FKy@kaATE`hTaPK;0 zIGYs9!(F-5-w64oudN1kfNZTj)6?4DUVFBy{z7ld0BR9g1Hs>q_RCk*m!GKo`m>r- z$IHI>sOIFSeISR<`rc+#RNT{2(cM_yTK!eo7az3u3=kA6d}o?yh>t2DMx`^fbYg1j`SG9qc(q9V~5KTrahb+{7w_lgdrh*WW(J4)MS`(Sp z#L)Ibb?lZbd`BLF_Y*Z6ICbcbB6dTbx`S4$lcSog+sY)|6D_+ucTVKXi@Z6OeTQI- zgQ*A0L${=vcCgzJ)jJ%=4%fNMw53S;7+xDE7`CXkG$bRIGs|-2xZZuiOi?sbNbnJ^}4y68q)C<-gYzw&ioY0fyyLKrSR7=K#{OHds=ZmU^1La&nzjR<) z-nT60t;>1S!mci`4ddVc+yD5Pq=WR~zbgaVVs}E~O-emUnJXr?g+KyF+lxR2e8VHI z?jc(X47LL3MU~GH#WNJi3|&4;mxBR8dsT3JJAtbduqhhuT?22_z#TR4CQQ5ui*On( z!E?sUrE{?*neO1`qbK zFHl$2&p$f($@^Um6+>MO{fM|Kdm77+PCKnT{Yg!A`8dnWv!@tVcnHUCDdKmOiBWYD zV?Zh(S^#ObF}nC&b#wx$AdCv;HEVeF20AuK6-1rr6liPVq$WCvB!Gkf00t@m5}N`T z)5dQrqPL{MDLE(zJ{!ENjNVeFZYxmmg9`4bKoKc`J&r3U@WS&p$8qjZ%v&HLj3!Dp zrRX-K0JhM-;=V-RPz*htg1b-p+ z?TNf-rV9)R-<72!3%|>8?}1m62MQnr<$OW2cwj^-C|Fhs=7o%5Hm&ieWX4&c=qKc^ zU(hS}^xw@3+nSk#K9Dr{lg62t)*aG0H}#$%Fc_K&vp!Z>9!iZ5ju?!mn&-%U9ED$` zo)f48Y?+rKaneP0ra-CYQ5}N29^sfzIO-Kn_(hYm5{ySM;pU@Vjk8jWk#>`KweNCo z!*EAUe{=ajOVzpFmJ8jDBVD!Ehg#7@R!8k%Qw2I9sH3{4;Z$?^7ft0Ss=xfG?9=xL znkzMTD2X6J%1aZ9;Pw(rSjpO}`vx83{Ryj0Z9?F-yFo~xjoE$Sh; z%;t5od)h!&<x?Hp@@7wPkcpvQh9~1(sg_(O<&vM#6 zzh$z{YNS6Ecl|x|N@l+o>gQ0S5~-6av;%IDgjOQoOyry3N=6%LZKY-=9)`@rQuvs1 zA4BG)D~=XKmWhg$Nih)D%1!S5TY?8L&@qC%``5UuH~FZaCqcc=G=;gggusy$xwb?o za*_gPjB5?^An!P%5@%Fs4GK&f0@TqCog~FZXMHZCU0~>t^cj-WOB6Z@Lf14)!=Ow8 zWtn+*wTzoE4184X#hAEw>wL$#uA0`$ua1B4_FKPs>5p&!uB8_3h;OO-qPhADKqS54RzKIcGUE? zR<+iCU0?QDLtP_5w#0MoP)rGw4ixcQio}>EF{#^{)TO5NNsK;;X0$YrP=Xj$5T{(j zE7!29b*%cRYd1o#F=b>7(v3Pg4(Uc4!yDo_eH5#U5{(I>DS_1`r&VE`YI91taZ?(+ zBnW*gicV;^?`pR1sJ3q^w{9wu1WShP-eWj+$>uGLE;*`<-PLRnZ6Lig(X@>>Y_q{} zyTL*1l1*tyNi^FI$&v;aPj}|n;Kyh7h5iHi;#1k&A)pt&I$X6Xmn?199;4_QVulZW3R^c5ujg4nx< zCXHwE;+d?#n`JsPcvE^@lO|bnLIAVCfo!%Y3l!7~`=;ds+x?>B!M=Gur}Aw}U2(ZD z`PcvWxuDn9!M`hfX;6XCl@dCWJbRRD4T|g$i90HGMg-;!zHyyzSmWp)mX7mSK}(R* z8M4Gjk@$#W4@dyRvl3`bDRUC|%D}p#rQbBL?|=j(t6DII2Lzh44%h!5b0;V+;dXKp!WW(8@UI0;3FJ zl5)TqiAXWpTM^{}LI#%;2B zhv&`!V$mS-P1`hEnp9#!nsblo%yCL85YH9m3r|IXBGXx*I`VW^kvCHm1P(zF)5Z*_ z;HEkY61c8NkLzFYO9B8Q? zXfA87INslQ`dnxIh0fZm1C7^)T1I;6&$ic|?Wh@SsqAe$)l%`rspEeH%Tssqc*XG# z`kp1U$Gu|=hB+&G{cf4=;9!Gx;?}9An0OPw>kE- zd?qXNX5dGT4R8y95UkKPzhso;{ya!Pw{&P+d8%C~io6A$rvSD^K37yOJmIig+w(`WVaG+b**UlEyv-@c4)@%W|OFNs_ z&+X~v_O!EE*$jC99g-;xzfI)LYv$nn2Zs3r^U}WSe$oH%VDWKr?qS}&xMK;V3^Pfs zbx9+W|8(5-_m9thD%Q^e&og9B2HJ0n)*MTf_BIL{b_(2=(2EAxFGtPgXfi)l8lWi_ zX{u$C;@-4$Wm>j6C4D?5S{)TU7!y4h6|UY8tX}6myv|)6mu_Gc8x(DjWeD+Yajq@S zvP5b6FzPj`-r(E9B1c^0jG|T~mLT8wn5%yPNr$CfW~vvcidl4S6l5H}6T`J(@l#6r zZ3AbNhaJIQ>ApJH)KT;0i9fyb_G_=a`oeRsJpb$~&p-Fu7hibc*=OH={nf_Glf7*< zEj3@ZlppV``?{yG>}+Sv*{<5*&bq$R8cIifS$q9AUw-o5YcId>(sR$e@a!}1zV-Tv zkKXNWt~}S%c(%K4xVyf)xxBlvqOIne@{?aovFsdsl4L?Px_4w~&mh6PO)#dgx)ibl z>iFGKDKDDcLS^%hacJETocksoVje6%(3cuMTeA7uIKh+zu@H<&j24_r9AzJE1gAzF zhsNcbsJb4MrAuQ_wc!?|o@v9*B)gW=xa5rA*yWrXculE0dG@9g=;I?kb1^2Ot54BS*7k zxMYrCo@mQ~3gE%c@f2Z{HZ$hO^_d9+ zpx5rSX^&(tvXKP7moNOF1PRO`32;FIPPCpV^yYbJOhsMZ(Pc%vG3Sc&NCF>sgIup%+62=$9Rb$}`J(j+db#Kq#N zM0A{qeM?Wh!XFzVTyDG3SJzqf`PU!6^TC_1z5dDzFF*I}Z(l&_d-1tvKYsV^?uN3# zwyKWm&%3Km^w*ypZYjUqU3;a!;bK?K*|w^)XtlATrQ-9?k0JHFTvFek-uwOO&ptfU zR(+|r;c{;S5ZXXf`A})LlUn`;7S<; z?KKAC(yY_b%+&@1oe~Qq79{FW$reEyCF$c-BS2S@ZA;NCNvbIUEJrs+>4peZ7bIyw zyg`gQjyG-N3|n}8iU4-T0{$g~G3?ycZjWnHch#v0O^RSfyVnI?@YILEQKf0#jBF;a z^k+rx4A;3M@|0Ep=MVME-)oniDj-k!3M?n2r#zS-CR(7+%lt*DzsPpw$<{nT7v7S^ z88aY8mb)nNKT$7!Z(8}m`ryx|r6=n7Ls@BgMd{yD2l8lD5i-jh0N8OFlVB0XWrFE@oReB97 z@e=+gqu18%fmGvTh;4L|cB1>oKs%3`y zK2>>-ptw&~KV+i0P1GzAr+f_m`|#@Elze?$@_0=A5S%YnzlqxCT0*GO&k|!AV+1u? zS>xKG5>GR_hq%TymhK+2RO^Da(8>ci;4Z#noX8lxGIXK0rskVZK6vw= z0I^@b@Ifqw}1DW-@g3(D=$3z+^?R2U-iKs-mLoOL{Ccg#Wge{lX9hHFhQ?OP;6Y#J?^L`cRI%f7?3r|Fh0k}-+X#?YokHQLyS zhd4(&9K!@Hy1^l_gr-W}O|e?kXlqg%8&yU}6{YHWWpEnJjDgo!L)&^Lard$$HOxf?y%-aMF6qJ(#loR%t{@H+h5jPTl>>_{M7aPJ(z87K zbTIYyJlBW#isA%EkLI-it_T(Yuma!zy?FKqp6?Kn7s;9@+4sqgeViGRPF^tcy=?x^ z@`b0;xuP(z&-Lt6Ayrv+skSWJjkrsIc2gF)zC-xU0^flE{-Ouulf@geSR+_|$Vz$n z+<|uaz(Z;uJgL9X!;a2H*c;5Al?$DNt*5F_e)`e7 zZ@u>NOE16h{L3#s_ri0}z5D`PfA#B^UIfSS$$M|T|K@9-AA7f>zGA4m3B`XS3jW^4 z)BVjAXF6-o_cRQ3pf(Zp{CjkfnrX<~QPu`y+IOaZ7CMia%#b%=ksj>|Si6=A%7n_)wn z1Q8wC^GsKP?#SQOrALIx5pn8{W*2AKqq*{u*@II27bSrr&j;_xaXot?e*w|~%Ts_) z(VPW_qrmZjG1({C@(}q`#w^Z~Cz$gTM}g;mDhm7n>R=)CD&Q@77zBHP>NpVkpGxP! zaXgjG9r9=PS*`-vmWBAIJN7spNH=*1crJ>6_`5~H%sxOD)0HEcv#3|FDND2GMKcGg zg`$3?Xt{srfcRf6I93Xl<-88!KahpsSIng4-Yv0pO(@eNF#3t7ynaEi?BQRvGfA;E zDzwHK`c0lGsB*`&{)E<-PO-_-ZYi!Xfi&YO*8pAWZHUFfX6 z+*1qh@2x-8R{43=$rBS~h0L`ja%{0IQGzZ^HblAhEs1AG>`L?ODV8}w)ki4W5M3W) z7(#Soh>mtXqN5v`h7e63A^}sO_IgpWJ_`8@r;A~P|Bj3V|Qu#rylbO)rleZJ>FJ^$3O z{DW!vseb8DHFqEet+}#H$F9(`C-v_s19{bKK@lj*XN!v2qG}HQVqWaau~GYoEW?)L zyU|RSWu@p|J@h|1TzGuAu(m({sNi2MxK{RT3t7{`j%6-w3~cF~Yg(ngL`Q=EeDq4~ z?u#{Uy3m3e#|f<;uRK-2I z>KI4pB68;l^8Uy$$Z**I+JyxL$nzwcq~w z4{yHlhc{k*{nc0Aee<=C-+QC%(+{e@_^9&pkLph!?`x?(-`_ma*LtD1X$WU)~X>&ia==)>Rt{;l6Z_WA8gDE@!-%rme4`jwAA{C#Wn$^Pa_baq2qeW zd)>*36CXCTbOK@0tlLDiTMF$QWZD7jGkiB>pKY=Ub@w7_!)VSHZSsv#N^XLLcGibU z`Y;4J+Bgp|riIc;H50Zk)t~Ig|kn=iHqmI7X%K)vj~m&{sX`>0(fnE7OXwkd`K2Jb7snr!5Fg` zQ*IKxynYvJhJ;n*qZP(O2y&)tAMS;LL&#k6#ivJ0Fl_g}An-&wi(Uki0=}N<%95;E zq6yFo5>SEREO0zUmbVDW3o;<&#L|KbnqDB7cX6f+(URe~3(C2oVdaVSe$jEi;CN7Q z-rKXSWDWBfWgxAb-Br)$G_x6{e_IvU`RjlC*`QbPuTpoCq6nK^;J#gXeH{N*RSrnx&0dzh8{O?}-?OVTl z4R8yB|Gn2C_}@JJ@p~1Y|FQhUA0hY$+G;QKwOklzIp5njgj&{Db~l~|=sMTa&{6+Q z`B#7X@ZGoGe(Rs!c=eUvpxp87v(G&9yH|hx_3>j}4HfX_Go|3~Yd+oCa0&!<=JF`R z6hXnSkD<0*#w5$07J7dSezeko+IB@yUoT@E4HW!wk}d+lPu8JrCKy!^s|n+^DEOyU zQLyc$609Y>)jTQKl46WTb=1i`;UvTcv4Qe;bx?L8pda}fVDcb@Jp^8HUF^G^kV zr$PwP*+Ve|zwe;r9ZJFPI}oC&E##mv<}82~#*mvZpt&r(tw47cIWt9`zX%U`&{f#x4~>MI|-@!IkC-m3WIy}B=s)qH-e zrToPC&e|)3EmwzHt_(Ddbk?42tsH7DAL*+8w!fjT;hWm8{`ArNZ~fs-q`u$2_@nw> zfA!a=PaGR)syx?Lb*Zc7LR;n8*0R2)Q}thcbn&}Up)JC9rkQ3`ug1 zh+NyKF_$sIGDf)OD9;k-S`+XJ*Ba-Tqb$_IGz{oP(FSSyFgQM%F-p=xN{Y}75k~0* z7P@u=K$K$+vn^W$L!4$y^4vRYR~oC^Vmoq@zySwsp33oOP(h<|{)uk+se0k5X7NzJ zc&J_2SIiy=(Og!R{wN3didbI}}-O3=chV!jAGCZ2%=@kF!m z1pS`nCx(^pb&F4AsMmK}v5_e;vlZybB)jZfcyyZrNGUw`u9r|-R0dE!rvr#|g(Jk?$Q&B@O`IPuXt zUw-;wOU*ZDQHfX6x$cIc&idY_iq87e{b(Wb)X5Xa-gxbmm!5wP49o9+^U`l#`W09Y zurSAuz1v*%bx$)obqMT#Ut3LE-8WTVeN=Yp)NPh~N{4z%Olu-!V~XqC75Q>J5ByI@ zt1!qx=;IV~iegHU(c=3S+z|C({LxWCIMo_PxiN_v3PlOV1l63PTT%>5f}}^AdGXpP z)tqFzGH9mDw1qQmJci$Fym>dryewsftVwviUem4r|H6AUXEgKv}a-gaP2Ir?UB{kZYt1KZq870MHWp z_eK7KD3BNWaw4>S60P9ye0%iLstwVcA=~%JwmiXFAUh6-)&kyAm@?%?)w@%A_`;>q zV&5L$o8x=(pefmGLA6*kEI+Y<-@m_aUCvpTGscCqVPRW4o7T+k=;n5{bG!QaT{X%? zyFVZFO7H)h+Lr=Xf{{PQ$RClwY@*F~5d2}1Hb^%F`PLxc{FrB4WvLg)5)X!J!=U!{ z#=CTNbwkG+uf6)g?|=8vJFg#m_sx&~@W#oHKREr_u}|KAv+Ve>`jemZHGb1t_2ubL zKltjC_mBVa4-J)H4tJI!zo+p`XMKN5RabpkUrSYc{i$zGz^7mP^@}e+5_$c%ue|mO zJp7+|{<&X$@cY;6P9N`Xs_bp49B8fXFGYTR+40j~ow!2KOr!dF)Psv;O0baw&G5Zh zhGUClib3>(p+MVv%_#E8rN}3t-u0zvaEN@>2HJk2jp7WkqsXV5fz8kgBTg43ms||H z)Z-Ux+{T;WnkHB?G*=#c1lwDry9>O)p?vA7die+W;`bb1kz_AW-TOovn#CH|?MxVU z;8D+=DF|naT>k;hRlu5Z)8;J1KiRcUbMJFe@IMvLK9xe`&!fl}mm*&Ph~+Pc{d+

GgJ9h!*$+q%`PMxA#k;!fv>`*aqvxV~%l?k2<}F+2#n_7!+7S3TIGhUsqaJCHh6S+=EJPQ2#C?j-{?|?0D;+ zUOo2v*FS#e^-tb?^W%5kEdTg}%HzjQy#H3!@nfy0J{@j4)l>ad#qkeLee(W^WAC(7 zeR-+3{^~%}cfE}x-3@2kss|d&&a_qaHk_{b;!p1aX1(~rD=$9(MoE1yKKINE&;9C; zzkj`{?8Hz@)o^R&xenA@wY&aQYsHDmlP7MIG+^yUEPioh%Y5CRW^YCle;Rgd249=}sR+~m2DJ*V5($YumrBdXO= zHR`&^_avp$>wIqt+&W$#2fKtf#;A7iGHU`)S~`s~Q7EOQUZ5^iS{eu?*WvGQOrq_DMhxV$R@B($YG7Cf#@Q1OI++q$UJeW8?A#$ zQB5$k(q($Q?tBW+weEV7a6O9JABJpmtLEvDX)0uzfe|*%tio084#<=iDWCTnaM!dev4A?Td> z;mE}wzrK3rhq|K6O=VYZSLNNU&g;5aR$X{8`={?No&4^{Zw}{PI9ZW@u@2Sf&aTYQ zx?Y%5l{w;)d*S%^Ume={$wy#hfVlST*t&P;)~z3Z2=|Bg@40a5Xm!!$y0RPIH#OlIW?dpVTWn2OA zWqw#PKPX1kO@|adz^YMIfMkr2^sB&N@WD~EnZ7!%3&9P9o&otvk8Gt|8q6e)MS!fv zbcso0oCc2Go91`{pVDY4z=Zf`R2#<`lVI>W#H&NI!81%xm# z@(^w|xZX4u9KH9g0Pa0+=}sWJI3W|@=(aVcHHtKE0ky}-rWno`A5ljJm7xiJjA%?? z5qc%Y^yr+}h$cRuij8VwRAU^aG}_{*?VT;kwZ(&0R zJAGouvIMU7fY=_C0(3cpnX_KufBOBbdL{p7q4^C%`;w%5IVyTOidsmc0)}`caMvq} z>IFmnoS}M3S3e=kXK;KwN-d%3dr7K>JDsP0IC|{J{)@-Iy>#;13&+3CJA14m_iRH+ z_N|I*E!Fw=Yx5h+v-2*T$olEKQ{NrQKKoQs_`x6luyZSzj;#;^;2v1)^sz6?uU)J!zXs@4U6Nf}2IzJA{E4Hr_s4sL^XQC+ z7;M5KUK602!g$TfsA>iD+>a{5FJ@#P!0Ey`V09H*86J_o#-Ltrp#0avisd1>A7l?t zb%HK5u11HuMpP>k+TaAr4h{ip4JtzLU-V>Tk5Pw#nnrc-0FT4dn+>`J*}KzZ8*tP* z`V~Cejfqihv`ex&fa*M~(d_GZ(;C5&!kX4GTC}&0Gp{q8oA5yxJam1_%ZQ)pN`sxj zo02ez=(Z%&7Dq+zEfEMG==8oR4l@p;Lggl4Y7mS`@ET*<#5n5p5FgegFzP5o7KQ~` za!@|U7Ug8l56ip>?W1+mleGCs$}ktxPK8z8pv>i$I+rC5KgeEWTLG_u?1nwSGy7O_ zJB!2n4fYxTj$VIR^-BF&ZGR&+zT{|L5~R;a@|RTQJPanPk@bqJdm+-l5bK`-dT~@U zbg`YpHDj6j5t{1O-LCV;j-EWSKj-APIj6qOI`MV!xgYDVp1oa~{h;bvM@@creSS+t zPRYd+S5AL-`nw}n&;3}HccG~yySWUdF*cRvHWla87F;UJIRh@~v%i{s`~P+J?ccrq z{IM@<^Do}6yjGt{d%RJ3rSj^TOQ(+BXdNGx!VC(4!NDsR>4pH`7G@Y$h&oh2a#XQ6 zu3W^aeI#9gZVJ;(t7Kh}q+LdR>gDqjsF~dYR=qr-_7ijghAG4{g-AL-R<(pjrv-u( zBPuD6(}gB9pSkLakL>QlP%DNXU1Du?^$XsDin!KbPa zm;r#%HLuu)*K7j>rg@qQCEByJ&pEoES-Ph*`7~MV#b&xdw)EmJpF2}@=|o+@#oD5* z>imn1CE53?3)&kByPJx;nu;+GYVOwLHI`;ojbmE)a?brd)&%@~O;qs_#0jGsf5}Z)4^vh716$FkkZ5U)pGR5(RC|WYo z21k_s0hzy7ii(=1gs}J#T4_ z4ZJzkuZ*`#qN9d&?$ob>sb9G7(F<+Uth1cx_&w2_1fYW8LNq1d52K=`-56ev{=y;U zYNs^RE=9>EVEoZWj1y4pElP)Uq^Z_5ur`_M+)*}4Z;WxBalSJq@g|frC~ICf8`VvR z!SBo6D>7F=U|r^!7P*!Mu4Rd1@}Yq$jRZO7fWWc(&;Q5o1-$}^f8-fn(Ui|9isuB` zbF%U!LpRScykY6z&^0e<$Z4xHp+AC*%th{o%y5M3} z-ub%1tXq{=+Z&3zn~J)di+XRC_1~#%F24*UmVfC)?u8R2x#y}-54h~gLeP9xWx?gz z;+&G)vjA87c5Z_w|3`oP!$%+d0q*xhAovJ;_Xpp8vH#k|<3MY5rB}eG)T5pzmkYCw zUpjlH6{{VPE(17?$d}+bPtdObL5(QWC^hssXPN0nWji;uEM4{c4Xa*edk*t0F}6+Ndrzpjw?Y zBuUmasw2sCt+QMyoH;R|3Ik}3>673l;EJYzKF)N%S?yjMd4fUY(qs=ZT`6*>#m$`D!kZ`f4;fsa%vM7NJD4c!3zMBL>T5USs$FtByf!>eORRr;0io7#k5K@hPjzyED*B@ z##NFjLbJtTkWsR5cvuzcmITI82YGNMF_;TfOA=U%=SfPYP-!5B9jtc*!V}4yWZ2gU z<|IZ73>Ftpzg5h=lT2>{cM(j<5p@isO|smZ%7?$A)h&cuY58GGnFdT@LPmT&(HeaYsS%EwIAV@75$l~0+fXH3lt zmilM9>N!pMoT+)q)xF{xUh<5uc*fV6l3y>m`d2)|3%=nwPydvyeZo-8kj3s1hQ6%4 zqOK^br2-v9yi{_{aUbcYL~Q8#+I>?c-x#qA*ljoLz^CfL*FC zymUSPe9qaU*YZopB#$YU#JI{ouJQp{O@M{h_(xQJ2tdP{@T4I^FeN7R(Ge9G`QVUj zxmW7zkp>17!I8|0)}%I!H%7=7RE{1r56*%F_Q9N(G$qD$=oBJG8y`?c+9j*K$_Uyb zbiHLdH^8Seo$DOWI?tOHPHnJU8xT8&G|>T7bWjx;H>^#V(*$c8VgwTbQW|Gk>sQ43 zRB^01#hd;I(d@4r&s!?Q5qpZ|T!%SAv#-$|=!DFqE{-?GiO9&H8=O8dsgGjRt6h>n zhb-DDi}ooY2E}QXC_R&v51#^$1JEV(CL!o>0KM!no--x{4>Fxl%s>oEYUiTr=~cPY zFS0KQY>Pbe0>`w(GA=Vs%M250F-Fz-7^W4rHORJxM9#=R|L_0T?`GBO&wRr?Rq+(8 z2Mdh0{uS5wif^0;&BHxM_mXRP#nZpw8=rA?PgtrsntX;Ja&?Wd%8T=xO0w=%UAtRz z?OttuXLA|mUiJ8cDr{>FwzGD$wYs$~?_S;2+QM^Xxo5#;)D(ePKn+Qe+ClUAS>Qn~ zo%-&xy*svi_{WbwKz0L6_klgTcJJ7-u7+3p|=C#3bbpWFb3@Sqy(7Zkh${E*&N7TqT4<7h;kk1M6u8tmraA$Na*IkYlM}a6{*7~vMmXb<`>zfWtMS?X+k6G7xYT~S!tQ)X`c$U&!xs!N-K%gsJ8z1E!TR3~mUg35=6wnbTzeE0%eF+Ac9e%j zLrEe@k||0sp_C{P{E#{V28!oSiKo({skFeeCY?^B{lU4ns@b;!Pnu+j19zeG#)bqD ztpmK}xYEEyVlUjR5i_9#YfP{l8;Xa2Qa}6^m49@viM%O^XIAr6kKLl7eSQGPv4$tX&VbU;i=2;sBtl+**nl~m0nRa0@fCo1o+JUftg}Ib$FFlOt6hsq`;yGIEU_-ZWE5Gz^)HJo0f{Xrb%y1xu*~#a zCX)X)N4)-DR=rl!OsRvw$uy{9n}ETHTqBWhBnd5K0ZMhm^NcvQA+s801^OZh?PQ^o zB68BCUaEA8Dw(3nX6ed@)J!=DyvRckP7x)usNiabz6c@@MKTTa#Zba{$W%RIWSEU2 zL%^0vqMxHF98-_Q{7I19$!Lj~{>s*|q(^zMZ?bf4qC^N8f+3zu?mG`qC>muIJa6 zpeR;VaIxU>@t=-=Kg2M?vzKTHpkiF8UJ%+VL9&sD`s6DE$`Cxm2V{YMd0;>uK-OLp zp3tsNf~`=m_R3b^vCnoUxh{0PgyTxETo4YDDEA6+RHRcHejo~UN+Nx#7}2^0pe2|> zC*A>>CXF!=KhL`X^8)43TflV0;h&8fQsa7vJ7DuSh&BXW1k2ilDLG+G5iBW&>#bns zPaOAK6wB=JJ!r8D#T|2kU_u8VCk-*U$C(ntfPCs0sw|<5cFV%8;>cY=q*WXpRmaFi zbefujDsqDvLD?%JcS7ij@N5x?BYamx>_NLNQZG6`EcZr~UQl=dEI-!-0ceqBT7ahq z1JDbG0o7HY8T=>=*+P8Bs>~DlUlDr!F2aE?_9vF+30X2rQ$As51kW`f!6VHZK=99) z>PJ-hG^m{<1q!rE zcJA2r@xJY!oH}|Kd`d%EZc}+)U2%3*A<){z%RhZxR9Zz;JYzd!SgjwpYaF0U8v>>p zkO%u@p?*bhK#8hXf#CaO{$UmTHVjYEaqa4u4kkrtShb2$Zk>sY;1e8IrrnPPEou#^ zqJ1i4G1^36b)%p?vMt4*ehbcm<4#lT$w@;L0t7tU1>Q8%u|_bj0dWmz5@UuGI&)}B z5p3%?GmIqBx{fua#!!*EB+K(oIP)vpy}@vT*I3KoRtm_FWJ$nvOpnS0;Y}!q7X&{H zU#N=q$U*Rt2ZG2wL8My}8`ngsCeV3^Z4I+*F}5u!K;3_00%w$G3-cTiAvz}yYLA29 zr6>?Yl%9~p8Q_~Uf;av}@Ju7J8+1K77Y%}ES%AA%1+FOH@`lZq{r24Tck~Lye-#^^ za+Grd?K7F-xyS>;8ilgwdq%MZUIYO4!RhK`g${lPj z>~AcyBFd+Txs8uRazTx=@5&|HkV0^P2-cB|rQ2EDSX z3$iM6&t5q8)xo|0!|Xe}Z`UCRH<{UY=IG(;SI^$A%x$U4yHSjq2h|o`yn6cUit_6m z^>a`f&FCj-{Um@cV<=O;8;pEtR2>}CqUu%PiAK;d%OJ@RCh0>Y<0|~KQB4S|i*W35 zi8qO=V4-7FYhv#j8>Uhwa|A3;pJKIJwu(_l!2xkxDfPp*>bbY_=`_!sq*|f?PU_hW z)ofbqS%V1(kz&k{Bw0`?JcGV@OT=vV3VhRFLCJ}z*h zWiDo>=N;V|N2QFd38pPhwj^L0PU_=msX>ia54t4qD2NOwVk85q2_|)hq|S)g6_dIE zx00IanA#gvx*`fsL_HPL&m@eqas6!6FcUS;My#_Ty*HpnxV0#=E=p_*V(YTlx+JwO z3(ZSBlTQfT<$y0-RZm6LjyH0#>^Deh{7+T0UtOb%EjX0nsKzo?Sf(1s)S{N|FnC4+ zM~7$sTjrw<3t+~#ysxTC6go(mPL34G6h%5ql|3ZO9}+X2P)O2Ql5__5z9uTiicaQ> zJXEQdra;SIbk!VH<|T^VSiWPNZJFeu#W5l}NHz^@#?n6KYM;Je?4rqL#@VI;vZ|M) z=p!k6@Ujk^u=z$)OHF=9ecs)gYuz_X2wnB0-bO&LvDS+5_G(;reS1?uM^jOK$wi1J zs54#B<@a^$8!PkbO3=}l?6b#CeE0dMySHuo_=8VALTkSt{^1Y1cWnFez`jGD?t}<+ z{Od!7mrvCeU#=<1zFvsBJp!{8WuH28?5oyc2Gi`Ln^*7}-cS972b_7DrWnv_7C&#p)wCeF$e*B^o1abmlO{M;&zmz)+=knhl-f0z)yVigwDt zdPl}kd3m%j#c-hAbGADLgvN5FxS3Tiwrh=Si$hTBk%v2EtD}ZBu=!*NH12nRTa)G# z%kzt1`cJ&6cMR7C+l|l*>_5YqW_sQ-9BG>>FfTdeV@bG$zKh@qR_TT^etb z#yh344q2>Akr>dVhPCTshBcBgN;g3mf)Qkx!yHFU?1@V~5g9tQ5=L{x6PCKsK-pW4 zpxC)0vibPtMGk_lC6-~4rhh}zFVKujY||3kyu>muqjK)nfWWcBv#$u9q0BM+-$gih z6I`cAy;y;RAOy9~FqLy`&0~)484uL1drDQzjB~656m<_t(MweJ5S1Mhyqhg8cdGN+ z>htf{<@MYw#dg$D`kP6;4HIoulbzMru7;jF<*f|`jir~$bI)AQzXXDBD815Lm4D-U z0eFqFtLLwr|MA$@hY#)Bwe6D+Q2n|OP?pxtZCf*H-}Tw@#N$n1Yr z`%mXieA7BWW}23m<^VyvH2z-gsIMrf-8U%n4aoh2GSrk|SiUr(^o^-k#?&FKA%X{~ zgHJc1!{;D%5Ij;l0GKmQcOXE5C;y;2(kWl7uI#X;IuC>f{o$Foa zctEQO4A>TVs9O;k(I-icw`5SSa}#S>2LPkHHw81lqJ$CeCL8T7zGJ!HGCiAcrDc*C zDYi7(o`&nBaSe!TOcxta#ycdj2jW<#EY>NH_b3yC8MTk<*YJiY-H6oAvIbe!RgNPn zbOT~VP<25 z{g#&Yy8OPzg6{hKk=tdAo;u#(4Q_uUwc|RytD4@^Fxpbl*Hn0?EUWtJnZ}~58znin z%5(2l7u>HYxLKN0op&Ms;*Tf4ISdnR`~NumzB;h)i%)kQ+`avWFFq~2@MC@PrKZxH z=8`LoMVIS~E?4B7zI5W7UJONSTN2rWK=Nb_su(|pl7bh7ZgIii3 zQNKdehiDdLlaWWZ#YC=za(Z1glU8QXOYThwJPC#!tujsMqhOl)l@S73=~_dpQeFVF zl+?Q}MgKS@n_8F8uFGapTz3MeUma41hBOhJImPz8<+x#%ZPGGTB1O}i%13BpQ98RR zMSF|y#M5sjGn;S~W|A2>CeX+VMt+(>)@>z zmZ-oAj1-bNA&!76N1YapfLPNZ!_=xiGYm5k!*p0T71DWOtms@mRR+4Gwk5G;QDlB2 zFfRx#OYl;fc~j=_DV+h8XGP@=DeQ|fg-Q1RLwD@|kLVRjGQ~zbONC=7CulM(T}EUn ziEI^#t08jKlT6hFLkWT$p{qt{sxi81oT`5%Uu8BQA5j$#NwR6Y&^5uejIoRuh91K-!WiS(utFyZ zog#y;n!=-sUWOimynS5II?8Ju;kAu$J14m?K$%Tq*r>pWW))ZZ8EWgrNo>yO%TUUCez9c6<>(sYje7a-H z$6!OYe)PvrKK#R$4?ftleaq3$_a8a9=iuI*-+yr+Q=1~IsyGMYQR&rlrMc&dvd>&P z`Q`17A*%Kz#jrrq%%j9i6*@3HAb#C1d4o|bVo*Em1&rkNkmNObDM!t<2V?=PZk1t+ zbCCUC1AoD^Cz;MQPG;KqFY)fGW|eiUVtPDc3s`Yn?DDl*u98`nW!cHKpKhU|1s%IJj1H zI*Vlv@NB_M0D`#V7ubA4+lmPA$q^JnWU={04u6KbUUQ6ZAPg~$5Q!FPy4MWj0@Jk2 zwxCm9Y_ksqBNUI|JD1_JzaR9P53FHPy$HiN*9rheM7G6?dZ7wjV=Pl2QPDXedN2l3 z=YrbX#~AnS-Mw3LwdY1rdwqUqQweYvp{EgZuL1*7@2bQ1)c4*jZEq}WD!){56{LQl zy6{qcX-;EBUVSM@9i36kNc}T-?r;6*5AfvQ^5Gx1ee}WZZJ&I3aNif7?K!Y_=eLJH z%{lWu_>ro@oQlG%OwXY6McJn>|MX4$tp{Y)Q;PmIN%IP?dNZzE9zyL)P-E+1*}||K zRj9*A-wcW8hvguC(7C@~4pI-%Z87%yl`bT8WSIfI1fC=tiFs|(6dzJYdzImSRb&E5 zJw>)A$ksT+nWQ<;;S-7#NgZC2ZOKWL!x-+7W%dC9jjW*aGy&!IrU0er_B7MGNzX`~ z;o0D2PIfU}DG)ycq;7|Kk)AZcSRc`?A*m}7X!T^I-ld53DwBiS)EG$JxQ3)|i*l_i zsM%RY>Rc;4|KA&m0B9Se4k8!X1An>N{bGAY>L!r-0t28c!(DXa0>ik-w)nYbKil+P z>i+lN$u%u-Bt{mS{WsyRzoXaU${I~%#c>Q|ft4|-`5siY$(a8 zEy}LWzfg7cd}Yq*+%rdSwme|#p7KCohF5gm8;TayY(eOS>K83wRSS645)M^vna8T$ z;4}bZ{xMa6Y6=NmsBeyZ3h*fh4s4Edo#jervQ*Y7)-|C!Et=gFPNjLC zv>3Q+?wx#QLo}5VO{GQNjm+uF4Vn!IZ5?k~AJZi;T67*@Sie4?S?gEFFgmm~Lo~0^ ztSPQDDRxEW&K0H8Cv*Cx_JG0})OrzOX*~h8%dc^*Xgw<$ci=Bqw;zVu{zhhdBe5)q z0J@4q6i&a=_MW@gzdd*T2gM~gQZt#WCb3j_ zrjo!^kl0ERONnPHCTP-8k_bZ*4-ut9BXO{@ybHxSry+#p zT{@n9>g%TFTU6CEs&R>+ng`jB$QJsfXdPfkvM?-tH6}$BipC@_F{tLMuUE3%E%LRC z{FyY61k;gVp%G^~;#6Cd?TCuqQIR($a>ubc;I2@+I0WcLcYu16LO1G>O}8b8rWn~0 zC0Ss~#KsJXVO6wG7VS|+I^@v~S*%+Y8`i90v=BrRILkWSy$O~df)3uCq&n6)Q@`+L zeqnny(7Krm6}_iB(!gE4ig>p&(J4!`!;k`ZrG|Cu7+q>W6&ukd;eWwp4uDaOt1L^1 zYYA|y0hT4eHv5r(w*`5&02c;C6Z3KgqL%sQWr4*ffE&vq&-9vUT%zd#y?k`z3Qgyy z8GY#96r}3|G`*h=FHI2L{48|d{&!T({*^yD&N2*u)M?sLmT8=0#nALUczMUTuyu@k ze;7ob8N)2Nzu(c>-ca1zTnsu#hr9095WAbH{WmAu>M;+h@m&r5EtMTjMR%@Wsk-`8 zZBbTZIcnC>h^o-%-KflKLg(ajvQ8iUZ12t;pz|#s?$`=C|9JbB55L&I>)X%w9{O|# zK-q;8-&E#bsxQA*QE<8V%9(;opz{;g&VHYD`p15PoT^_Wsb6Ci^YF|cL^?;U9ELMR zQ^#bl#>FqeWeiA{QJRU!*CzD!D?(J;8q1jksk0qP7FyJeGVD>ID=PLxMVuo86rozt8(jiAu?^2`&H0vPs zK{bj3pmS6V-gFKF669J|*cK#pj>XTnuJCOuAa#@yVp&E~w=VN6@1?#BPk0`n zlxdNnN40Pn#sJc}!N)*42a&J*MdwC8NS$dxf@jLy%-=Sp@$cyM*FOt^B$;QJV5qTZ zTgOBdSn(`9h9n=r3415FU8BrS46}2D**V7Q8e{f!cJ?=yjNL35zF9VOqYU?;hSS?D z9K1>GtS7YAGJ6{*?o|$fC#ue^&pUmyIO|SjPD|yLJ5~92uIJyY&dZ#-&jEruv~TCm zf1Q21w|xvZU+v#@^z*%+f4bwyf!&u+ep6R?=~h*KeQ|bW?wQidr%EoLEV}T0?wKFQ z$#TAVk*$ACQ_mAsi{r|LQRM<^&WLKI&Xbk%B-uPp@fr-#sB(E&=Ia&v#?)cHYfa)! zq789RQsPYrTo7EMnyIL6CaRrDh@6RWZMat!>Q_eS)-~P3lztAahKax>q28krv@UIn z5lk>CViTGeMjahcNBh<2EXoAL7gK6npP<-NFwsQQ09~7?CzmTFnb}l6{F7{ELox;b zdrCTu%73w4Z^sR5gPC0Tev}24=+~si4C`3a`a~u@nP^UuEvO|5*BTMqLsCaj;Rwhw z1K3IBTv54J6s~~W=~pM3yCyHNZFdg%-ci z3f_N3V1|*oxB4YEKLD86=9j44zhz3}f3BMS8eeLn^E7mxmd4SL*(x$iMP$e(5qAlP z2)qFt8hsPozHv5OL8U#Dynd{3fFKz`$@_koU9u!?Z(SHC&Xg5KMe6YX`_j#_+o(|Bhi=6?0a{p)Rw z1wA)Q>x(Z|<(;c7&TcBd+E8`{ZKi;;K#k+Gfu?@^`tZJ;TX$xNYxj;Vdv|Qzw`=P+ zhxYvN#b-Yp`Rw#}pI^Ihtfn-lzUo?iS$6r=bA^{rUp;>;`}EPAtcw!@H{H05SHGT= zFQ6oP+2Ww&^|0g(j8Qr2hlSUnR@$9ne^;jQT$^ZROdICf;{tFKC~G4w@kXWIsKUFd zpAD&}R~1tczB59xMe(LE+ZlJgdOIK7eC|s>Sx$Ri!URc(JqfNW!Emi(4QRyx5UXDm zZxMuU@>e_Lv2jxhqeEv`Xs)*m&sz!#I%%RU&G7uf_5O+B-XPmhF?^aMMYJY|HIY7f z1Oi!?BGIjk4{71EYkjK3kR~~xPWGwd{i^7w2DOr>n!-%e3TiX}jARZnEh|h*kcA>t zfM;D1I)h@ziqN*iw=VL{3ov*l6pYxW1(s=nuFst8GWi%L2tWav(NEF)$hsg^AB2#E z&U&E;1#xN_V%$IdZhAPr@+C$Yx^A4b8z<`_$UyBK6T$}=_T5273(`65P9ODVFX>J{ z`A%!c-Nurxo2A`1%erq?475~EwAEre>T%u8Aacz8>w_&7y|>H2WmH`|b3Ok;eJS{h z+`5vSn$j!PMWFMXnxe~BF8p}p;GR9(w}9^kk?+~L4OJfgbm!57`+hib;K#2Hod5C5 zqANeumFG5B@%4=dV1{0iQH!_NSmn}~e0fley1fre7e>Kr ztCmp*H|27V#D}_COM;!^V4osLF-G}Lw8;n#8Wj%pMrBh`&2&gNv#Od7OQ)hN2bhQ` z)f!VjPCfN)z6@+U^KU#{NShxgB-3%Q8yt5E=e<9{2*hOoo%@i^ zjR7Dostz@0p&EiT7&?Sr45L4zb00(LWpYHUzv<8K9=#Gowhlv-4wGaUvJ69#4dR47 z9(0%kJ$c%Iw{_?bBV` zzW8+K51;Qle&oQZuMT7#|FSaor<+w*TdMQw3ole%Jzbo2vhe&5*(blg*EYyQIXFuU z-5Z*AiKt#irHN6W>jk26fvQ_(83QD(Z&>adlA{#k0aE1!Fc+1&k>BUJV)o}LUwAVd*;rZKSPZ16UnGnV;e$!}bc*9bT_GqI zRLP-79=R_HwaX$CU{9>;z)LX8#M7Jn=?zY1`HSOuE1unyOuys1*IAAv&%MU;q{x=o zq%MN6O%os1CB}^@tZ8jTmw*85qfd^Cs;k>tX}W} zy6LGPrnA156kDh7#ixaq@721)WsmYyMT@>E`)(!)}CS@IdW ze2OG?k8{i;bOVN_1LHqHQuUD(5P&)-MV%AEj&Xk5DDNIbq9Inx01G0~?LOM=9`cPY zd~*k`sblg+7w&fVSbcR-Ykgtw?TYcvCS2bw%HSPB?+skfje&c$J+~`*ZWg!H{pe?#n~_ckS4_bL;NyTX#Wh+J>sCeu3)Y zAN=viq2pg2ynOQ8vTNtB7hZ0FC{}#A{Mz~A%cp?HPJDl)2PB&ymSnAG^N zx&Xltn$(3*B~>j-_#Mv_EF$Pv$;MTh6`jtNxcmywvdrUCdY27Ti^k~%)6AlMcF{WP zGd&EdrXylcL^GFoxReeheo3ys4ae3((d5EP-1Q=&o{b9J3AzpCk&Ww7)4EZ8qE8j= z0d~@$20%pXI@OV;Iyb0}4T=+@Qi^O{quG*ldxBz)5Dg)sAxyKNHY-F^9B)bzEbBPa z8pW}}_WZ*3zN5J|@s>19ib=}`)|@7zSs3wk|Y2=^1D_lMaa@|Ho?9mHC++r8AA-Gm#RI1u@bE-Z+=>DKL*x}whJ z;=a4pBW(?&!4}%k9b9+Q(EXbJJ5{~6%i9|ATO0CQs&lIg&sP^;t}VF&qrUVi_=~2B z{Km?>vb;+dPN9Y;@W9`_W9!cCTfk-P-o9nu&Mn^^IdJUD!(cJa{cxl(>r`3Z#oChW z`qG^11s992{8X6rRWGULFjl=huJmCw0h}Hbo@qs`S(((X;54YM+qf=- z)rLsMF#Jopb(QZ7$}UU`CFAs>X&U6c;F$AS=2rA`tMaLcVkYK%vGy|fHj?}$ zo?KszCH5&05e z8^aW!gUC(rB?!0JW8L(p}z{AyFll{?q-?_AHTF1U30r|-V_Z11N#x9!;hAqLGpa6tQa zZu#-ZffHXJKK{jL7k~J&?D9`F1s9u2vu~AUHxys0$UR+_b^P+Fuj^`?Il7kudnD8E z*he)4=;jrM1&NakLN%@+us4P%rVtgKO9WFN7COUfZ^$&WY?|>|W__-Q%Tte*rXMcO zJzjkL)HnBR#r-5~o{Lx>#h<)Mtw!Je!^SUv-dO*2ExD0MF8N|p&!fh8j1Ji!h!hO_8rOwt>j^w4-I(iM=eSZ_R}w8IIHO!!n1%ANBJh&$PNL&9 z_7uaGV%Sq$Pg*+ji)`*s9M2}jmLfr%a=xX(`}Vj9VxoOjWDANcK|b)3EhMyuCC;!E z9wRQl#^X0k1@&IP+PS2%zfss;D{OE@JB(tq!?+|gFAA+ofNdh%iqIMq+JLzHBC8Lr zo1xuCKl}<&nRzM0UBbU1cm4b5l@Q8|8T3-2t`Y+4s;2Yb4xUdZm z#_R8oHMEW0XrH**F?6H0xa&rFM{`Nn&GO;aI$T#XssARf`$k_&Rrk%(?i)q7E3@y{ zePcZukG)z7ndkfx_ln2`|6_!1 zk7JE7G|UOG5@Y)KfI2#)OAPChlV)^Ic+8l>Tar|3l4glAtPuzY6rG=>Tc+rIREQ3i zRhV2bt-!p{UBF$NEYBtvosfCQa=&AG{zP|Wird@c9D9Ui3p31NiXOF|ry5romI%`l zVOv+Zjv(LW=i7Wd3vd_8qt7e_yn(0$;fZZrV4-}*MXGLrq*={A! zn5ucjGA=@7pAg&beKcQ<{6S?8+H% z2T0+CSyh=EPP~s_M->) z{B-nC(dD12@-9{7Uj&7hUp-fxeKPODj~CB;KfyK$J!v*59OP|Y1+baag2GYVMS?B} zN?V4&yop(O*SstyrU&QBq z@o+4$mRe80T~DP`tKrDgHv!#@U+h{Dy25N*glvsZ7$R76d@@sg0u1ti3MqWlxHe%* z1A|SPfWgp-N2G8|7{H#a^FxH9=zTO`Co4*yXE@er&UL0|lRfp8?cK~&{d$KsDBZtg z6rN_;(Dn+;wn{gJDF#q@kZKB}&sriJYl!Dq;h~kTWxi#JZ$=8|n%{8$&0H8!0wdj! zQMh)QW(Z`U%STqtqdRQcpr)T?HBeu%Q@(IDH6&$~1)pj)>Hokh-HvcTnXGX{ICEsi1Kx zVDc`Sz4KP@ylZCOJM(I4`o-+*%ZIbC9zTBbcfDqWp84t-ON<|dWSYBr+*Pmy%SBXOI>l9 zD=Kk?MYb>(9cY1o0`wS_IHFQ#Nab23dCp znJs;kn`otLvaxNn{sE@;9;WUdrvCm2#HPlUj)tmht@VYib%kSXb@=WkLU%K%?*^go z*5Li>fji|R_pWy|7q&MSR9!n$m4D%S(dEkgOMp)|s`74BUTZANtu4+j%s%t&;r*ZO zg&4H$(7v6AKHYWr(>)( zwkXRMVWR3QQKl6^7erf*Ere-o1`CRJI46lUb3-mQhsMhaBoDk`49j6FaPqp2nSE*gIyE+ zTis-kcT>kizWsR5WtG2HV|8?7czizXdw)Z>b!( zQ#sU9+0|V9pdqg+|7^vz^HuqmD)KH=7iHbLp5I(~t+ph)rZ}e{3oQ46L!a(ExOeNp zy*ohR2lt{(Mv(XMZw?>(^1$)0_g_1I4CGx?c(JJ*=LCHaw8XH4{#D)~p(7x+FNp20CHB{H`)iH!rN;4G=X|0A zc{@PfPp#80U5^%Ko-e(4jpXfL2}I+o(L~ti^Upn-w@hW^?O7JMkifvUpab@nC{`OF z>H(!tK`_8E83|V*`Ex6cRob{kK|L*l`&82{0Ii;6> z`r*ripYPjwc;D7Tdv_fEbm!r{yAFY`KLBRu@QJSu{Pgwyq6^2WubyoxzSvTc(_D(O zBg?Z-mS>;JJ@w7)mU|LMKrxjPBWtq?27zH+rJ+^}5xRMmX%6wML6IXQbp_?_pwbgk zdjdMoqRzdjcfU4!UOT+6oKw%;-Y0JFW0&W#$NOyV;mc>w7U$=egUgHYfPW*h@;|MI z|1lk24+Y-5oS%L8vvcOPX~w6XT9vy|nIMrD%?`RTz%mB`hj{iVLF*?#fJ4(CtrEi@ zCUQgomiX2XJF~|J_{6cU@*FXNC&fWUCsHhTnupT6-qBpYP#l{C+Xl|EL9uW0+-ZqB zDfPTZub9Xgg&}c9q|Q~DD(~P}%W!s3TbCk!Vb0vS%^{)S@q-rqE6&a`; z1(UC0@-<8#E*N|@Q=no3i3zoAk%lEw0fsU7Y9dQML6u;LfkzYTh}AyK0TOE);dTIqVMYCTX)j*V3&b@c>KNw%p~3qd6PYp2Z%5gS zy!%7!mVU;aKH8lgKrg}#6q_)0cL!@)25avO)!iL#xR0s7b-(#~Uhl24(bgL3;BEHU zeI}-b+cXt1%B%MpN^aMn5)*}& z&;0n+p>MwU?DPG*cW?h>+m?^^?%aOx)4ksvIdtl~Bd5MTbn*CCSI>S2%vM{J)limQ zUzSyI?Lx)1bH$fWWS=@(TA0rTJ3RFZLBBex3iL^R!wUa|c4bJpG^B)k-?-XGH3d=0 zP+Jgf+krJeiB5p)uNC%rwc}^4^C^TRt?i-0I;*tK>75U4GtZo}&-IQOjd|MQemMR3 zna%sqG5y#+^;Bh@73pULhNnEs63Y@`S;J)G3Q@O&SI*-VKTk*>Pl)HR(#J&2YhuP6 zF)U%0d6jO75eyNc5gbz(j11Kh#T!wR6s#GzYh&D$9x<$A4Cy}gdXIX&Te$|;K6M(S zOOY(7wF&?p>gR~+8b#6ZOGhRi*)!1=ov~lxS$#ay634vAGA+YE^}CFKTk|x{E1LEd zOaF>(fa?NT@nVQ!2gfkNT_ygL|ZBpMYTxS!~ z_JgXS+vUB@g>7}Y6`<|B^FUe1Ruo=UD2s$(PBN?sq;1p#D9W)$+4eBk9^(CXZLhq~9|3K% zO-n434`t>WLE8Xb^B`=xcAjOJN7~lCA;_K$(m~tGd!wQjjG$#$cy~l}dx+oI#jI{6 zm*2+KJs^zZ=*<5j;PtyluV=6Py`!vq-ME&niQ63`Hy;c)-W$AeZ|KJTpn0z3@+~y73V)QhT+G|LyRrtH*qc@BC>aW)2ovzD2-;8n+FEtcj zx?6R%v!ST7vE=skYsFcoj(>d^eEk=h*@s#M?cVX#!F|WRJb322BWI6(o_*r0g0tV% z3*I?lExKc1F<2Ueh8||C*uxnJj-q zmd!C#Pr-d;&OojT>|qH&mp#gY5MvGVY!QJI6>DW!BXnzm=15a)8$@dwrXkL{F=|*J z)~^p~QzQEHh;AKcLV5inXF}pm0Cd5SI-@doRPJ5{)&h)Fz;LZ7T>+)judpr2Y)cZG zPhwk^S{Ef&)Lv6yd?hr_OD$-KO|RL?XA>-YA3@nMF6tN+c8rN&w2laF_pqAU$k*@U zZ?qE0B)Wvdl>JvlujN3T$=4DXaxzmv;i?#jzBFjh5l9SeL8@6o6+@t6@KiLuipEuv zSSl<-HcF8U5=4DiUe7qYW0VE-^|eg>})Kkx_YWA?;L8pQh2GR zB&WJ4yS_BHx$;_LWqxtaxi1dv-SRPNp7s7`+m=s0{|qg8o&NsI^T)r*IrCk?r4ta6 z%CDYTA{SebtT-4vcHIRE{rAHE{-bn=-v#poZBF7`?mM%6*0F@n{HCUh%Ujh|!) zFfA)=2qkEbeuZNTh*84qqSW?UYJSGoP4m=K62qL_`bc4Yq;)*j+vc>^DT&U-mOBI* zr^@V6ncRG(9qvUsH%H;3%RNlh3|;-0qI^bCz97gSj|sdJLN7r&hZE0@^QR}Jvozf+ zuqtSI3g&_>OtZ$wR@7;W?pSBK*68jO)tM$c-x6(` z&R-`jZ^sO&Nn?^=O3+YQ31Bc3p%8l6(JBYqic%f9HoxHghNF3rm+1|}MhCYRS%w9s zZl0-o#n!#z=ux{IoOlMqcC?Pmn){fIowV8x%JtU&o4xmbZY$XmGj-Y^gna{J_GpAXNFmntv$>++XoN zb6uiRSI$yeC?;M~X&&$rRc)hOcNtdz#PeZN5HtM-HKkCaI`>(&@sSsM zzY+#Wzn>4hTMWGuq&_KfzsR#+La7_dU4UxX zGG!lZV1t&8CuR_-2gWMcW(f8@0JhQ#23=`!ElTIu$cqNzf)>xzU>GXQv;r|M8K#Pc z$h<)^pUGAl48Ire`n!5vz4d5GsGC}lOtQpuhJZTDrA%|F(;WINe`ul4w;rn zUeQEII^z>gIM@{90!}xNSIyzp7#RN8pnx_oInqSzy+9sl85?S)BD={W@Q|QsT<;XN zpEv~S^4~_^fBNg_`})uSQhV_0OLaA^^~XBS9v^N#jq7h94m48+TWP~Bq@fn_a4T)3 z8QE5M;lu&%swlk!4_H@(VXGo(_z7GD&%OZmrAt0FZ9I47p8E>Vyt(IIcp%QR^~%$D z>2bVxKUugHOt-Yoty7%<>8NF@_T-JEXJau%IZ=YB;(3iAimS&8pCd?{ulM*ytgrM;dRQ@VY=`x%A_W%FA z>u;&oqh~+qZR<*%Ph||OnSv^FNM{S_ZP2oGwt&ta(A$F`bk>l@7Sx)9YI8sd-+%N= zv_65_%Ug4^<<2FEjU}|Ogk~ns#NZlcxdsNuFv|uv##zpOzy=X>Jo6mi!r)thXjOH~ z#^76KIMvq}Ir?e%CZl?CSuwE$gE}uE&GLy;Jdm5J>ILnKN}r~pyC+d?>P4c3Pq*;L z^&ma52*O#kU>ePv!7NW87byL6gdSASMUYc4ea(oji$p{h4LeAN3yxic(XP(Mv;W7R z{|gu&|MXA)@Xvqx&wu_e|MJzJL2dGHAoX0Vt2uw_VC%V~18rx3dQ}&6_BVQ6MD<<5 z^qs>adL=50KXo;byYI|AFr^-8lTVb@R>Qi~5Bk(IQ}T&9{lt-Z;>tbt<{kzM_u}O{ z>CHQ_!YxnYvME^B`HQAd$&=g-<@Un4YvJtW(8d<~nHMRF!z##jxF zE2DB{^}({%Us1Y?3RgktD##oKiM=3ql@*?f(zmk~+S9Jz1wUO6cXRz{%Kd06z^#&| z!UtX96Ob-L>9el*%UbrcJo8bK`p8dwxDAXX>sce#;oWsSRDz2KO|9J%wv) zNu8J$`6jq7(t-gqt3*%9k-)gdB|}sp$V&Z0ZaK=q~inx3YUqn#IUgYD?PW@K*zqN@SbdkNKZj)?3Lij^vB#Fe=2$=-8h9_mw1 z)?!cA;!m|3FZ8MBus1>qwqkSV9=mgoe7Sp(^4(PBPO^N{zj4hP*)sS`#$X9}S0KF? z%It-zvtEH@#Tm|x~zDu>!aONCUQY?#!Ait@Rc4fr{E&Qn-tNYQVPCUXVD7 z3O6V#c9g!$>c|a4;*oyig%MT(KN;Xo#kZ!ydwua!^}Q1CZ2zLpe^F#VOEaH@sZW9g zWShJGk(c-^O@CGueo^N?YjPj8+4s6EJUPz%8`VGV-&nFQU^M|-ZvmwnO0{s|DL}7;Ocb^s25*DpW_4XqD}967ne4}pO{{pAt4v=z3MrPPeAvJ#yvc$ zd5NfF;el}}W-*d!4127fP41(QG>;85!QEMXjbp>DGlYHyacCUbNf~KJ_cWb43P;~R z{o_CW^Iu2bq5t^Tv&X)@RC}zV7oqe6v8!2iK;Gi^Mz=U%w7&tY$b?9)Ku$$IH=to$%hzMtQ|yS;mNbNf~@ ze=QK-a)nFYSb06YvytD+l&)rqS2FqSbfyxG<-LJyU_F;e7n7+%Fp~8Iv#wCa;m=xp zX-Bx|j8v?_lF?T*`3eSKLE|oJT_uBW%M{u%hW0G+8_x7&XYR$mEV+xX-IcfA3ec@j z_VNcu<&%Bu7fbmUL-Dh=@JX5dBu{??AxVCer9W%)znClFS3koRti|_^;#*hYjjwv( zb#>MY+yM1@0ZcNGe;O)03>O|oi;tqkhwB9p_rkfmfsNbV)GbHshCO=K7P)Hh@5n9L zWkrZ7a!;|X6qbg-P~fL!m?;Sg>J}eC=8lj#!(`4VmA%B4IgG~NiFf@i^?LC5mD&`P zs$6oNcg^5e82oES-Hc zQ8YicNJq?%^)v9DsO}56p$_a|2gowOpvI8hbX@-gZg33M)7g0D$ah~KJ@6m3N4~AA z`R3%IuZ|x0s;=h1rPD{7&mKQ};y~-!BYjP^$nFL-P_KbjL{H;j$GO3dvmFhmSSx~1 z@sT%s#}d6_ie0rOZ`)FL?3qWvwLo}s54^d1zC0K{_rm#G!Sppxd?%3JjbttdHg@ch ziq>0Hxw9Zi`P0z5{2P~@>t%a5=Llu(!3-D&88M_OYYz!jgY&F1)uCKbT=x$?Ew*#rLN2 zM@!|it^fweXI<$pk~A=`5B$U@W$qV6_KPy}S(yXzMV0%kFMc$Y-kXYVVgIq}x(p~) zOxf4)JsOyyV4Hde+)jVnp1f&Zzh;W;>4KNn-~mz0Nhx(-bJFJbASzXJ6k6Wv>M@SK<12q-YOiZNZGypRss1Y=N{r zkg))y{b{2YQmu1usNES2K-yc-cndmT$q0}RZW|+44B@MW$Tf4~wk`d@nSX9Ayf){5 zHWwh$rqTyv@uLBh62)f(wo>fOI+1j~%J|5b4w{Yy7$i{PZv=AGX&UU;n!XuzNcy#qVPR$~!S!2q1(ju{s zN9ms!X(A3Zkw-d-{cVK4ChAD*G`??sY>+`1Bo4JToIY0b&A-(i`ua@Gw{?fUs;&9@ zfg8#%-jj)AB5ma;*&`6alHH>QM$LWc|WsxH(R+L&s~XUcC&@OY<@QiYW8T^63E*E z`A~8zQ@XxUydK-wUQd+5(QIfv9SCRqfsIfk9g1WE;SGNMmG|Dw5ALlG?#+)bc)ZI0jj+wp7en!jrTE3U`N6yOvv2dQulyFMmj}k1 z>Vo47AYEbDs_Q{GdpDT9?N8nCCcx94s4qI;MuYbt{P`aYT95)JmdvEX--X? zRpO?k7`g~e7lO(iLFNJ78Xn^ekyb~?R!7LI(+eV-!SMU>uD_*TcOU$q)cJ%8yF}%Z zY28wt2VCVk5H6+8qlA{_k!rz*Uf^ajomZ;!O0*t{&MVgVgz(ITut*;gs6#w;fT#9z z)qalBvn+EhN$d+^Yt_L_46c4^RW-S?Ho2^vTwR-7QBSR?Cs$Mx%gXUZC9S%)NMng< zObK;fLS>36b0RWBK%Uw6E;eCe6+6C+p@CSy6Nxj#KJFA+&7lGHvI!@gvS|&Q!kfXe zr_lUa+&pDyhR{2W>%jM2#1DZK0}A{W+(0XCu$eg0PKUDu!y}!I7f&BMd+fXVW8c*t z{7sjvCA>GaX=<}*#_j(0cI4Yt+~b(}}^HlzDsnge;NzpcK%tIZhN_LZMO z@rYj4NB2z88=y3>C9k_OH@w-~;ll0p!mViGW~_KMlG*jAswaYlHm%{3DNxjSb1+G{ zb6Q`)5vll+SM2MXVBi47GJ8{IU&`uF+5O3C#4Y}$*`Kt44+Ah^nc)mr!4xc*LnU)) z)3Uy6OOu)sMePhVU|3wpbV{Q;}UyL?ksV2$yu?7vSh~0tc}v8K)Mig(J)ys2x5%i z50Vs-TTN2zUi@+&VFmd|n)TY+yFJMgAr;OYeiNka(i3qW*IEg z`ek47i6eQ_5ZN29O3|I~sQK0xFSoz*l{t(05B@kb9B~W^Q0u_g$1kXKz=L%)t>a&37x4O(bL-q|^Nry;3(uVdVwmjF6 zTve|xD1r;}(4sQTF(jmpg2Yx>RYzw;9?GH-AdLV>k4q3VVRgA&0OxPVxc#Jkq*npb zJ%kn9BwsAo{(iQ2{awBGzjpWTFqR~giB<9xdu(EbKwqXzE=*AHZ0eAlfp+j{KGAqc zIvJ2m7}+HG99BMym(Sr@#J**6FB9EL9c-eGcHjqE#|GQULv7@tmI+iRlQ=wu9YAz6 zT&k3asaSfwV7}3WQRjY6OFcU?|}aCVe16 zNq=a=AI^A!Sx>0oSuc8H6<>VIm%JQEUtcfWj+gExD~~odpQd-dk8i&Y0AW<{L zS3bM8zBtPtoaOhf;#)`YjlBTk9k}-uUj>Wb`}2?N(W_clQD#XAwNb7r#8Cm4h)B%| zI0fe{3U#qXsb^x4L{y1q9jvxbif9o+b$GOXXdXxmY4AgKL~-Yk+al7vi{hDyDy+ zb5C%QxmzaUB6|D-n2%q1Ae^8D}mINVES?>11AK4cRAK8 zmQY#mFDhL*g)^gYWaZAxnkx&`%NpKvMR#1W9c!>?_H6*~vIU@bxq?ZDKVk93%)YqU zo3#0o;B%WlZ4H3PT7!9WsB8{zTcTI3@mtRH9bXodNcTd(zDiF##h2FnkLJRg>crQ3 zbLpM2@ZPk47GCLNbt>$=rToEC`UHlFrSi#K{%orJYAF9I&3ut%f2r<@fiqz8^e097 zBRuMH1NIo#WqvYbelllY+p<5}az7ZOw*_<0YO>B zP+62QB8xgAVBq!KahqrYsFzVdQ!bJDGZ@hvY@NDHM{uW6)3`3;a4Y1wzYWpTgz0Y~ zj&zU^T~u@*5z*b-b{=>aD6ub`JXn9^+f#?WI{w|ioj&^Yg_GZ1s6E_JSJQLp)JVrU zbl)W~7Erw{a19-n5@)977IdM@j_gD0#%*BKn(z%>^p+X$9J^|d?g5^I>Aeu-c{jAN z>rDWjH!Z=k##;mogOJ(N3P(oe%Ikea$a8!L*cT|G0ngSdw~i{$cEGbgX7RylqRR7z z)ejhwEZ`i*wurz+2{&6(G>+>iF` zGi~S^&#=Lg`2o+<0?6~U5b``H_cNvbeV%a)4Z6CIYm_b?rin&qRi5dh5vmyS3=0al z&e#pTizk$6%)dMB`n!7lzdKiMO)>d6>H>kbfTb;xXsjs;kxd^}F$pf=L`XW}m(blp znt7G1WMI|vxV1T~Z~`G?pjd?N@sTz~ge)n(Zj(!c-8S4%=*Vha-p2BpVBMw}`^)=!9K>^i_?Y%V8eug!_ zXpdeF6(0q1cRWcj=x#U@x4?}*buGNHm&op=^Lv^6Ubb*Ko4cG$??e)t-e}n#ESh{- z5PEmo=*d`od1ts7jBiELyX&c)K(ycsrh#0A!l_U=xgG&mAYCzkDDDpc0ZWEL8-XyK z4GV^|@Ha=xz67YJuKF{#*7J9glUEAPEq z@BP~!0^qv&0elEQ-~8y?0b=&qyZgnn`xk5FS9R`-E)U;r)PcGl)I^2P#==KS{+%uV z#-4-yD_n)w-oooZ>BnI4xh;BKZrWhO9#ifGiIXLEu*9w6M0@k zm{nqcbWH&75~IgO=m`-9#JCs;7=pqZ0_ru!86d8VP4m=B4e*@b)s)xYQm@|m4wesaQk-{!kIVCEWMC+1hfP=x102x!k8#wW02uSoHsWBomMP-(l*c1`!Lqc6p zs1FL%L9QmiR(Y1B4yMpFy`lnsMQ4fWOfiiq0zm~aF9tzliK#3Rl_jLk2`LN#g~1ue~C6CWsOzeYQ&0}SQ(47 zI*H;kaN>EKU$ANks zsy}uR#PLI4gCx~<@l?zC6Yv$VhLgi>XAoVN5O9j18QtG9(%sPASc@f$0rfJ*?|?E{ z7ur*Y_jKXw`pBL!ylYwCv4uD7k+LIFaYV|lXvG=bw1q3iU|H?SOD!p>Ev0m2Rqle? zSJ3&(=FldbJqTB9;k+Z1afdfN;j}B50Nw>tl_zEf;RV;E$+KaEkv4iWCVx&JDC>h; zy3md>vS*E7^CYhY(>MINo8J5bcL5&JYtO%e%Z@PKSOM+uK(05g@*7v_CtLB2wfN3j zd2cR*Yz5bA^u;gA+%Npp7eVsNS`NCIqxjZdJ=YujaZ~muBi!rt%2?f&Y|B0ed5Wux zGbP?Bo{i2i(N_$VWj$pH1iT@!v^XGL(+boS%u@)uXow~pq6&uT;?W85$hdd}WG=dR zh$8G8;{)&NBCHHjcyB)Z<(=zeQ>!C*#xQ{~3}D8SCUN~huK2S!`65}$1OVg3 zOgwuU%bmdhn1u{9cYI`pHbg_TRhyguhFc-b18um$cETupd8E7f+?f*x&mKE;0bGwC ztb?;&-<&;hu)U!Uz}$HHNXLcagRS+W-3=g6;ITi@I@)y!6ysH&HAZ&foN9Q>7Af1qWk(po?1}=mH;p0SU3sZ(Lu^edomH6k*9rm5ku58P zx!?$ATpJudE?Z(g!vH%%*h+GpPE58`u4r zo1XlAci|a4Z#w_Vod401`^f@NCW1!}?ZfPbFu%5y-q|W20LCxHFPp{67+CEhP%n&hazrvdJcDeT zKy}bY+o;2BR8aB^wvmTBXoybANXJ0ixpT)4UN~{6@x-C?#}A%8da$nMoAW0RbvM?v zUpU!%=1A|wj`s14h5X|Sc9h(=n2WmoEsBX-RJE1hfh*fm$;swaNg zpWFp16-sP|;+1f`5=~atliQ)>rYBkfrMJ$tp>-sU-mKYQumuaYP{|Y93?{aMa5k(M ziDjbEjaY0W8cl{n@o*^N55)X_;9W7VKjHSLJpQyNkoE*Ko>0ymDLEpW&ghOie$~Hm zEtcXhjUW8k%3F8ojl1xpEC0$!(&=&%?=8!}yYpGOs2u)(A5S>=c~o0>*`)3y{FOCdKGU z32H)&f+cSkge?{hG3XN0C zYjmavYSk>CJR=~_^2p$3mIuBCx&<7JGA9I|jLq=K)71{YU(pHb^xis3-Fw%8#v>QZ2XX7b6VayQPF+{G*oF$PpCvg;&p0e6k zR(p$DUs2~T>bylAFe`6CPG_Us3NbYQ1@l8weM2h=_B8st~qe#*mtK6eSP$sf3NxG&tMo{s;g-~ zccT5w(SeJ{QLU#5y%%x)moR+|nC^?%-iE=ZI`qhp(Y4`D-ZX#_=LAEnXbeS<4)}O;#+}OC9qyx zk7Z-=Y-D{S7)l0$Nq->e^T%D@xZNGMI1>h#O=22*LhnkNycwe>2Y1)|OSbTqH*qDL z-iu|f#xi@+!i`wzL8SZyZuA1`Re2dGy$V%cg)6TE|!;rFOOK`7VErH zeNe0qNDL8)AuI-A3`vYpxh1(~&nWCEnI$1HM!0JKlGHlK(@n1^>GNVL0~nWJe+p}C zk_#+rY=%#nh5NX`4XG+xq)8BL!Z@1%u2tj0kFVnBD;WARn!GSdWDMb_`!Q2J$jNTR zcsGiM80n`Y+vf0nOVm*&X>gG`Bm_muJW;wt)^H~*q8X>0>6Xu_Ipa*qC>7m>8w3ff zacrc6j_w`D_EL~t*nt+1l};c1_FQdEZOwrr-~PwxqX&R@U978VtUm(xB%eIgb@BLM zV=cPp0%o8Y+1rHZZAA1m^taR!iDaoQC9>z1)e)A$zpM^(4KbcR#!*Mu+6Yg#&eyGr z%?Xhy&ey{O!G*@C#F~`aHiV{xz?59`Rbt(Bc`xKg!)MJtfj!J8lG{<)kTHol*FEuJ9BH^f)4!g$c`!tKm#u zx2JB{Q+KSXySB_@Tj6_K;gzHK)>eFLF21vGespesc5HpN!jbY39<*J7b&9F-tF83e zUV3LQzJ`aW=6~+yGcCbP ziBOY5)HtX|1Yl?kQFsHuxJX?1wik)hPg?08V*>%}Cv$sA9GI$bD?qwBu*;pe~W)D(khwtD3~VE z40{?!!$6F&eT~GCHY&1f0@q8!^x_8Fx-Zq$AN%g?iG!z)9XxgbVqACR+cPH)U8=7E z5C4lNziT^F(|_qCvg;gfpao!z1Q>TW4z$)IM+P`5kJMFQ>tc&*!6j9Qt*>INTjyxP z0ArpuA~q((W{5FI8wOXYH6a5So09@lT;a%7F|O!B+kj+acpGBu&%+&w-jvA$7={?@ z-3h%juC%O+!IMD?in7qEItWMxKSf|nNbDK8Bd2s1w84rgykm{-ITBZ4`5)hNB(FJ> zH|?q0*5n;q=AkVI1nd>88j5c%MOZl4w?8|#V3lnuf2v{(0$}_XOL-q-xSzzD`>EQn z>zSkQ!U-b#)B`&--t}%=)BDPc3NLlVKxV0l%r$^9ZWdrHMokG(6EMKzeW+SE435D7 z7!Ul0F(@UteSgKc3%8H)N*iXm6SFk8DmDC$z3cDll`CJtkmq|wX&5wW9MQIj>*7&| zxzu67`0yG7t6wDPmPi)vxK}h4lrs|Qd7o@nI*XgZc2R(L^*7Q-+Ga3aOhVrbu9q_0 z*56on?)Y~XP98jW{NVBL{^RVi180tYd-24f)-yHDAdj5$Bhn1bskWji%l_}I>^_7Od6A!ViLnT$gOhIy4)C1TN7$~Tw#t%jA3xq zIuknA#+oguu*MCZ94y$w6-RU%s#k2=7b*L~1#c+h4QzM=DYrl6@}->Kq{EXiJJ!|K zh|Cz4=z}0cdhoN>71o5tnbEm{dKK*J75E}pYA=$x8ctsgruV|xYmwZ|Q1*^Lb2kXr z{htTRuY#2~{>`8Lo9}}=A469@hcCk(^`7ldU>Lf0K6`h5@$US^xBWS|^**=>C&&Dy zH^I^mq2jYh>*G%l&mCpQMde`U;l5 zjHNAOC`)MaB8t3#Brl8*<_0iReMov2g4Q`oZ5yRsYU?8mwk}bIMGV~95>>TIH}EI* zoN*nSW)@D_B(o;Lq-uo%%9eTR;3U3(nlLa+9ws9?#zs596`0s0evmZU*?sAB>$#I{ z7iuq@I(+8XfeWV&)gJ!pV(sD1izhoToM^5;JkVT==sbh!y@2X%M8Vhan~*)1`kHES zI08%RWXL>IeA^`7HY>Kzik&ke$BYo%IGAGBg50~J@~^7>D{Fz}wE$Zc;_27kOz1)QavFDP%^p+OV@hjOVF3}7nxjHPn5zkK)Is)s!qS8V z#;C}Y5LaEUYH>xKzpM{djG>Al1h2+wDm1KLF(>X=(oZazA8dKJOW9s}YlDY7e6VlA zSpvB0xb)Fn`Uvurqx`eI{2qj(^x9VZ$(;MioOx+UKeJ_?IC3CcJ@sZEx>L6t(LJ@R zu%PhLR`kRNYgQ=yS=1E1ZxT1aq>j#z28qLP&5?raq+@#~@Ph!$jti$+&z@*G zcLE65nd1k}p7^f*$T#ihPjp^9(Nce;^TM&w_IgCuIRvO6U^9wlWKZKr*ZH32GviDy zOW~anIj02HDFMLPF)Mb>i0lAkhS)hTaV;x-tEvEqWu+fttO)~#x%%iTs5P|fA~S?g z>CS2WC0!L`gFmnLq*cy@5-fagFLvXXdWoyu1o)`$-Y*|83+(`7>{1(g89yyjX$y)wls zgIM}tPuDVOKsk#wuTX5TSv}pwA9r%8E*{MKHI@-E7pOp$e7Y+IB$7GFqI%ZCz;!Ri!JmAHeIBwwTJ61b>6xov{Y;r${xxetzUwIwed>7by7u@*}+WF|;`RIYQ&nMUBNB`D`(AN9V_WR&AoaqW} zzV?^jc#A*!@-M0_BOb3;p2bQ}VugFL>@9C}M`e#MO6(I$YBEz%H7*HZN`RXZU?&8a zaUO=wMbbE<tSTlJWb}D4jVYut1mtP%7|^Y%dR4naaEKGDM5tR;(V{Ky z2ZpkMA+ykA7IKV*AhO^#7#w2+KL=t6Guw-t=t9ujhiUC2w9X+idUSAgV${H=+r%?g z;k1@blP{6wETVLtAfG3ySE=e{vU-K8^{9gRp@Tob~Fu zG}?Wszoj0JCos5%NuHIys;95$$5##XRl_*jFu^rV@+~t$+nm_JlDk=~&oC9`fwtqGB7U1$u8O%a(b4hDtHnh+YJ99@{B z330U`B79v`V1U{NqMEi+^8HBzXHMbDDLn-hoCGTypn6>~Mz5Pv_e`1ZEtyxA{3|OA zn2)URWXU(?!dp}EXAq9^8&CO1U-_lG^vYR$WiP(4<={y!_Uton{!yrSKbX7YO2fVE)ZB&2Zq&# znr}x}1H)=ZGuzRuHuORpiq(o_wW1e$h}_p7{wUk*OXaOeGL}0vYT(jArC zC9(oA%p`z&fG%KIvr1JiQx@nb05EB!9WXpcLCn(-aJ~!OOULx02U>x5wVgZBcJ_E< zZOz5nL#K~^bL!B)H=I1!RClnc_F!B6;l4{Jklp7B!@6~mDK4{Z zD4ZE^m0D9WTS{t)?=vhhN7w8Lg*_!P$N2i{WEWsq1O8MPFf0UxLzQ8%B`LM00mBer zXIAOTt2_m@uc!}g8A7|p$euBN)3ou(ocY0$ePzk*GyIday4|bF@Ec?CXG`g4XZf|a z{G+$@!c~0b01W40Ggy26r91!3Uv2Q>+qmUUT=gcdI@fnKuEL_+OIy<6=j7b?;= zcc0;5@+x@R4-vsreX$R}4=}3>1eVo_VRZmvQOqj9zmW_9t}@($TxdZrVJ3ufmCkH3 z|6RR)*DtwLHs@$q#Vo=tpoe6PfOy)(1K>*<;%kU@@qbNcYVH=R1zR(G(y z?oij6!^2G{h&|`VN81Pk&6u7>Y)>P)>%vI;xrxcS1)-TCFwb!GAZDvQFlYHjroc2W zwk%0)t8yoM&Bal=*$UUH!p%|n;frj#Fi#T{YD044y2=*UIX6t+jNY}ObEb5zl+F=X z+tyXqh}Ir8xf3RLN&^acb3|$kOAR3z2vb;YimGf0jXkNhCsp>O&Y1@4W%A|>-t7Kc z#=yax(JfbW*A?IMY~1wb9{CC{eZ^P4(oeqfPyRA=Du4McJU+7W*1h?&Z|mpC_Urie zkMXUS>zl8_o3Dap*bFvQ{&BthELC}ssoYBxZpAWJ6X~mw}Q%F<4ZQKIJ zMW8Q(fbY~(7SWVN)Niv}K)RT47d?S7h?(w1O!Okgdr^}E=t(%`g_`Udp|uTDT0zl2 z*fWXgSsh16=kUsT+}a{uI)`1IKmr+Coj|cCkZa3S1Aju#88`7KxU=|q8j?XqfV4F> z3Iwbhq^()fFoQe{J{f2~f2p>n^~~|6+M33?nsX-))gAe!@$`}AGe^L;jkO26FC6V} zJc;T$j~i@8_BA1Un@4*Zdz(+A(YPtL4u}?QSw~&g(3Ui`6)k;LH_q0Na}3i03sd4` zNu0AH`>fCgu1uL{c`XR1ytL~)T@=oM>7!y(Obl~S0wf@rEeY3Z;RYC>WKpF(skFr< zrYIMBSC|I|ogpeP#^7X^B`LC`#g>fNoEDll#NghXmRQnKdsgl$sC*S|a9bbRGlci5 z>UH0edtobpwDr=Q{lQYzu-`gKrhhP{zc*!muoqsqOE2NU+_^{gjfa+vhqlZkXZCS0 zcR!T970z7qr!G6!VJ88DzalawX83l}yc#<#L5%Z9D4eQpEe#PC1_%p%1Xdr8)r)0z zW0+m&xh@o=9WmR6m~BPQwjt-*5Ob|aMhgN)EBFvK4{}yBV!nBFz8S&nCanDQ{?|W< zdR^ZsNan|+bC|USylN4id$lr-U{4}e$C11ljFwF|@+OVkaUfvJQ)ng)IXi|RBf6^q zcTEun<|reeh#(`odz$Jm)gEc7Kh|{W@Ff87sY7Ru9cVgptoh8*hPuPewTF5x9vf_` zu9)}3X+zCWVZc9r43b4!?SJ)B?YfNN}?E}mQ#*0clwY|F?TIk~$C0M>_g4G`d~rr1qW`Vl}E7#G0U43AOx!2%Bzg=Z@m zH-0c?z6Vr0iZ9&d7rx>%SN4%D^&7wd=0NsdD04HIzFGx%%NpF&dI~`NrnpuTbFC^} z{81_ZczKAp1RnJeVDOyBF?%upBfv9lfL;{9nArxo1@z8>05@&uc~CU~bOFFk2qvh+ z#R`r2_b*<5c=fuoThJ_w>F05lC4zOCpkZP~lL*NaN-~91%wilox<@eS5llGwbm26H zJ%L)HASOZLKy*%{yXHv)tF)0t%E%13@WCzCACfvDV;N^a{!@= zY3xy*Gj4Px49=L^8UwCXUAqh`Ku)pzHqE8BXVi|2%9dWUrPTJc281)C^W+S^q9s&u z0_lqGxnkEnsawAMBVXyIzx<=W^uk;G!B_YJZj3L!_7;D1=YDX5Z;LNOn=hi5Oy{qrvU`!_b|ALt2ow~i=)Ay6WvvlsfOPRObPk%j zj3h51$O{P4!Z49FL}U&UnEg0rA9k(}!{|oObfIQD(X(ABW*3st0mdV87UYyp6r&R} z4@)5gvmH4PuA}4?txDswnSRexUVpQt>XR2bOHi)$YAqp+Euu1qlt#Zo?~`iXLY1Ab zuvNp#m4mCDtFW&~P0J$VirBO)F|h=?d9IehQBN<*C+8*fIUzitfgzwV_^>h8ES&h- zZ-}}-*#$RoQGt4~&=eLD{AVY!MhVPOJaZV&7y#adoajc-yGLR4q9%ILlijF^j!}9W zobn=)k$sDlA>lMiG>w)s@fJQsy-4B$^_m>z&SHeKXg!B!5ltBd69yiAc>*~-HU!jb zia0z;9HwLYNyu)}Xva9VZ;~)TLUi|n}lUy?$xYnv}l5Lpcnx=TB8NPW&U}lJI z^HRs0*fuM)&Whm-*u2ceRtI^y2ndjagr=AbWGhE{&6TTeW`>=<)Ud60O6f?cTxoC> z8rL~+t{}qIMtS=a1;DZ#IjO54aTLT3coo>PLR(g3%ZO}QnX@GKR#d(nO<-3S+B2{cFa;6a;XIY@)xTczw*<& zU;m#!hI&1?T3K77N@2@-ihhMGm_n^iBG^+X{tQ~jrdouPX2GPMOIevf&X54Tqtm3} znX%Dv+~63pn=sr)LwAGE#}HiuZReX#A8D+usp{6Ti?xRv|4MKBxuboJr@9+X47Hy_ z_ckKCA-$tr4L!}L2L}em7Zj5`(>MpvtDj^W0lFZj`4He)5%4ZM2!_ZCs)jkS6VSV= z3IKGu)$LwFQ(S6G%AIMIJ6Ce(uOVvcn#~ckLUHUN@xohBI-)9J#XQE{aUaRdsk)=p-#@akC2aq;Ql58!(QL zS3uz~2&C&bdguNdz3oV5J7Vsy^n%)f3F(FP0-%=#s%%IvdZ`t$(1d_>_aayJyE-lC z@9OopzMfvMn3k!!IkZnmb#ckcS(IcNDVsqn8E7Yu7LZK&B~vaQRXmMaBo8f9M;FM$ zEb{0aac~^dO@-56-Qe>HboXf6`PMT>TkDRrojKNi{&-W};kGk1Jq;(opzA(=bhzo% zK*LGcO`@+62lsb10q+8~h8P@}T~RQrT`p(2dM3{}FEFu$CYH#wC^j!it!%k{RbgM2 zSeK;sWjS1V6zc+V6Wpm)owJGq-7po$VFKu+ERMuE^rYj;f zMrEd0b!jrAapiQdO?^QP!c|yvx^D?C*k|@o{ih?%sp4` zp)2#ynz(OGJg}u6J2KB5AYUXOm}7Ur)t!CnD}En>o97>gbN67ele-tm-;L&O#|bilL7B#_ z)ce$?kj4^HTf-V#SZxlfOaX<#4?dRz4O0T|vT@~Bj>NnwHZM!fOA^40aY0~Y3G{QT z%IQVfBug?mF9z2MmV^ddbqT3+ziq0A0yfDeRQJzg;FQ{yhz9%LiNZML|-$i5AJ?xKY#2} z?cqzcHT6fnYOFiha{6%FxtiwM1HG3{47JuHx*9P9Z72|Z&BLAN+b^C#VhGb54KS;! zZkd=OD@)>l$A3%gbJbHR=cUdig@>*3v(*81b)7|Ij7zLZi6t(x0qM%Ayako7q^s^} zF~PU>H{p9^zWf@&|6z5eIvWgASO-j1AQ-KvxmFaj6*&iW3+_W+?ILh`$%0;rXn-mnq>1~e zq8=iDkSc!j;g52L|-W1@Myj789LD8?$fYfGd>+Q>K#pxZ}A z^^T!>_R$>!=#F;chuV<6&Dgp`ZM7ek58%2M*j4yZGDsodDy{nGg z`zyMa6~R4y{GKKA^fz>qclEKG`Y7ZUgeiJM7rrWUR+crfDS?Z;Y{1Sb(NmIrbVn$h zp)vLVTv%KJ=yv1as$z9lO)4F4Zd>ck$?!l`-D< z$Q+@Uf$N*Z^iE=WW(oZhnC=O5FCE!Q9&W?+H7ycq%&I zmd+19H2HU|p

kcP>jnsQj9V|#p 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�dfjW&Npfl~IDx=wBPhtxBt*#1RJJi2 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 Ou9GPtmF$XjvQs-+y!**Tg4o%v*b;e5f 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

+|Q# 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ν1!}^gJ!7h~$F7VG_3SZ- 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 literal 0 HcmV?d00001 diff --git a/ML/PaperReviews/UNET.pdf b/ML/PaperReviews/UNET.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c7944ad27a0d1a312a31c911f61c4898d77f5574 GIT binary patch literal 2435556 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�&m|9xUT=;fx4R8Pp=^f}{%lFKtI1@2A zq|j-Jf{=AdL+8p&&f&`++(QV+_-O)klFa4X#5AU1>rp1-Yht5uMExMD@+$ zapLF@7D=(`A#je0kL|}3$ZDw=H_&sxxN8`NB%!DIGtk~!ck3D-^!GxLU{n*}yd?0b zNQaceVa%;<#g|qV+y+m?=!>0)nsl<^%0yFRWqIAzZt%dZ=J7EZ_x=|@`T9yHxwfYU z1OWj{Ynjx+<|e!dOX+LtD!e*sgP`X;(oiOM`1ILY`s8r;)z0==#$^a=Cuk{K$e3JA zN;SA!Gd`V}jUfo-JR%nhM(XAyLb*ogQw|P2V6PuWScG)iX7x%Yt*X%p>yF8zRw#*p zChQDw2HON6DivyvX~#M-syjEK}O<+Y1*Vzw-29-XYMlO`h>5yP7m&lU~2^h9n z=bO2O(@4*K8$-4fZ9*G1xH4zkJFj*RPtt48o*w2hA*pB17+U`B&H6@A*-_C9=Nl(S z_@;>gj?SZzV@J@+w8gLS_#da!euJ9JAX1G-K`8;HL*E@Bv6}0pW-WahcB8ShqG;~V z-)}^MNx$Xk)9vvg^&e8%$Xxbeb}o`l{Xso6zWwy6#h(mDHopJ!Tv0`7;|T z&~$8dQ42~WGgvsm!`viln!y~s-3G(xXQnzvV3HX`A9bet&aZ!R_4a+xNI#&LG+tk4 zN-i92TIQ0Tm5p59rI$l0DnIXVJ87f+NIjg4FKb5)cMNfn6oJUf7MWQi2=oY1tCTZk zSXj@*44p+L_Ci?$4R=1cTiwuwogzWH`rr+njrEvuI#+Jjz;z0DAeZt^4hCMmipCtY zk+!?P{MAtXwW3S6E`4h)vv9iAZ|2j~9^GIUpz(GipleX)QPcQlzm*Qp z?$db=`?)QGYWFgcgYKrE8z-5pQLfgg&S~P> z@QWW_?>~99HUE0=`R-QC%(u)eJp1u?+X<0I&6%d=^`pJ;AhMgRF=GV6L4rGzim5HB z$4a);9&{R6DDG}dPr?&G%?~(2JkRZNFb1Z(0fjef`(p?Bjm5Zu;#N?bD@Nj8vp=x< zay8&Ld*dS&%~XY(Vu&wpEg1$Vs#hyv zSBl^gVm|~qESnr_)=1@6n~tats?F1o29$q}jG>RPlvd9ymqzOV!bjUnN{V|&$MGsH z13f{nxqYX+TQ);shs+kcQWxEhC;*it_jj2cPT5DlDER2-*E$BlgUv%9-l)3xb>)qk z_B+=<{Pne8-0P`tsQIkr&PQ)GbWn^lj<`_)BM6A3*1I5ecp;R3p30t`?JniBM+ZkK zKhLsvypmYpf{kI*YIfUCXUHvbL^E9>=V%l#B!g@Y@5PlcDh|~T0`~X2SB#^hV6~e8 zgVMuOVDvbWtT4yTUDUDq3-x2vuJdyR899yyPlf4F7{jdwkB%Bw-2MGPP(KPsg(>5E zVKbS5gef!}xq{w|IQPb&`?s^JrmzvrT}Z4P?^$^M)Hz!=zqEUHmQ6j+hZe#Lx#@U0 zyJ=O;XXN6r2G3z~NkEH;LUc-TV)x;0%;8zwmrg=DQ1NBv5OhW&qfHCxQ!uwB=3k7u z`SK}n+s#r4q=vY#5eypyM8H)g0hyHUFM1rY-9xt+Cv_4jA`6hjWpePEuvng% zS6Mf+%f}|U!a^db9SqEnXZyS-`NP@C>#VEyMny;C@PqsJu2)_7?5DrH-7?hH(o$14 zc&^-*ENrfjBKAMsciKqzE4wP^5>c*TqOcC6o0;Sa#3+NA4FK~eSQL|USt+z6oc1K< ztKyqqHA_VvJ-zonWC%0Eg(GL zSafekMW0UV<)hr|%X-i5$w`U}CnI|h7;*EhW=KOr>u~>_9uov&^?6OEuvY3|;~})V zsRbtpjD-?qidhkRoHRTnx~3;D%d}5I|#R;U_mLuN8mx&ac0y`SgC%-J-@{6@2(NpWMYtq9?iJ zvTvHioh5fdsPs%soj%#$${jx1$R;A2YY*2{GTTmIEsYxrJI%?%{S=c(;y^|aLY)*F z-l6wQ`&I(a_SMGNEOt;Awc8`F@_mJ!bMv%u3JEqKpf|w<&hR!GDD>z6I*$;D-VQqj z@Fu!o07jyW)8^+o3;Xh~B6fRJH;A2$8P)sG0xQ1h9{NrgE7b`RBM=UW$V}}YCe6<9 z5H7tI*s;k}=UkiTMRViPVQy>xB(08R{MJPFAg#6Q5(l&5mGBG`B-B#^!ALS?HEhP? zdppUTv_oQ6*gy7RN!R9au*01GWkzuA|x)<38%8*0Y5784en zrSJ4f&izG_JA3i?rooy@MuGu~UI=2&gjd9~2ML{Bn?A@UtbUmQ>(q5Ow&-^c*4Dp$ zvYdac>A2TeUDPz#dcB~wc5|vjd9+Sa7dtG!akp z$%9}rTVd(y#+w9by{4{%1tEl@b2b*yz7SrR9lu`F+%mycIn;8@0HztFvvK*0vT+a& zt|qXfaOPir-a}`WV!E{jmqD$T_`Du9?E06DEr7o2+pQzRO0gngouNoQE8lM5yMf>; zAf7XD^Cr9%PzUb5iKN?c0SlXFv@q;BJRBjClC|my6$dwGos%nBeRyb9dqW3ph&sdJ zQB-2i44#S^eQQO(^-7N8x=JdbFI_ z%fzyCa+A*xF$`js+$OC#v*QqQ=s4|yQOg61)$m4a?$5_tIo-;kmoE$EA3x4NdpgyI z=1IjA9uYn@STw@tgm;!Du({Qj=$ET=Fv;>xn8P0_8k~X?c@(jfhi;pC`s^S!91;TL5rhvgpQqzS!;4HVFu4hd?xu^HkR2-EI$f;7u(p4Btx2D z#w&Mv{hLba2vxu*W&V_$s8VgMe)C;s_h>J3{7|7wDRoPkQ*G1rrk;M#&4DR2bxzLZ z^_*8Tmp2_-%G)G8x2{|%YMuxm+V%s}0#*G59C83}4>|n1>$`qO$c`UC;x5#y1k-_i z+hKU3x#-H3TRjq6ekqprx|FPu9v)XdM@3H!+ywRaocqz9W|nlyluq&RIJ0-OoB8gW z)h$)kMDkA=5?^r6soeB?opP_3#_`iCt1#iiM=!TRfsi}H?WqM;etxI6=&O&5%6@kJ zJULZ&l~e(SD}h^y*rH!#i!P>4x7Eg}_M!G^=gUUIOv0)rn&Hl@E0W4sT_K%C zJZt4+9&|ovh4tMkDZLHF%|&dyah276umv0dG*(aOneh7;+R;6&^$kV%Y`~CQc6%i8 zIm(>IA6ZDwpe8vEAyU5RXK~tU$B~T) ztbv^&U%qhdR`s2xudh~Kf9qOT<-Ov!3hO&>S6sdFMRo0a|M1J3g&&r56n%X4-j{## zegm2cW9zLe>vo|jYE8XLvW5r(L_YxtI(!v8+j_j=Ppd=A*?h>LlVLalzA8@^u+Z#|pWJA#WM1`MW*$*SevsnFtLTqo9U zm^QRxU3_sdH0707%VJ6xj3HVKI`s3;w!*958`K(MbaT_cy#4+0E~x`HMIhpFx}%e* zQ)>147CbzM+QZ>sWI97ApIr{A)BcUeTW7&nhae!KA0aSV^^u^?K7OaMwP$SSpR%NK z_U7*oPF7Y{a@oX@Mv^s(!aqdEN*hKi8#=mr$6AN*eUp>zAccQ>F}a+NWEL0NFI^g^ zN7q+E>9i{0n+0N^2$CWw@;_dG>=y+UBm@)#ob@GC>2zpiJxU+Hbg6w|F%!uzCl|N< z3Q+sxWFLO0b*#6mqoH!Np>!~d1}pLWK2S{v_-+jYT+ z-fGIS@F^3ee`0odeRCxfnKxOx?v&JCd-v*v>orxEDsEi=toY^!)r5ws-Uhg1ZD)HY z=k`C`&Ie*_NEe_8I{RkRWH+hw4zoI-!F!`3$9m2faXs3N9e6j-_SV*vQ*A~4qN7XiSYe!$(2onbdH{b4tGA8LGcbkN!)8oUVo%HFhm!DYl2Ii*ubp4)Z zoF8+dhZ>73+J``(zOfE#D&vs~Av3ZWC9@mFp>$8<0PPrJS4}bSb}zW;*T49r>uP)V z{nGZL_pdhIX}W&pt?NBkzPRw#jZ5X9fB8{G!?pKsTzUV~+jqYH7&hM4kDJk2jX{IQ zq+UGQ(si{qjiH7CwS1LaySK44A2FS;>UD{VgBrK-^lF13>J}J+N?-PmN7h-RdPd47 z*x4m$O;>oyLqS2+@EVXTB(`Q=XrPfUTL?pkyy`GOG{HC=OZ^7i- zoUy4{?zB!LQJ;?pxnJ1y{D8}yO&o0QpS-e@*wPuban^eD$E;5oGzi>LfkCb3*~U>E zm1KQ=#cGPoFKz5;G&lL<?ku?J=hg*is*c6Uxt&C>sSm;wf_v_j)t5H|KoA5F+RQk$ z*k?l`-@!S-=~3$8iZ?FBG4<&%u8}Z*PRdp~0wEehW0`+`pn}mgni<#DtDU&2ukz-V zo1au&eYdfyyc2%qtBH8BN@j=vOk@>=F zX2Xg{>eyRyhGR>!!i9yM^lm&KnSOAuvixSZT}>CT6ux-{s%&te3q=L9NOTwg#-vXX zF*A0lz+})Jo;;3bv;NiSQc5FoFz_Na19bD&gXYQUVQTn1NsogYx+W;&{m{M+IJ3HS z5ZH)9Ro_M#&h{P~7FX6H0YN0{Rw!7OgG9)um01N`VEfJ6?V}S@G+vK6l8A>Lc=+@b zm^gx_O#r)x8ycwnh`V3a7uJ=1{`tpU!{gZI#2OW&Qcte8{~VLm))awbSQIy5(FV&C|z-Q~apU?~m+c zvae3oHF~7SGR@H;6ci}`{Xz)HRB1RCxQV zYajN_Fk3q`9v4ckxKuOiw}8;Fn!&-c+98CP*Dw}m@Mhd{^J+4-5&a-&sE5ZdPF&vFSnk=frN&%b)S=(Bn5TNf(pd+z%b3sH`4AV+x99NlZv>=QssNBK3f<%>YSt*?JajdsO-L7 zUwo~+qnt>tzg>L46alO(1~bM!efQ#fzx=zuDQ|6RyxUaJ)%oB5!{2^+rJ>^LD64mj zG$5Mu8ojCX;ZDG2lyo*=une*pKQcxb0?EQl0-15T2d$m%xCx#dBs#oyg;gYUdo9Vd zYiB*@H0|y0?Pb5;T{+pzB@TAel=GOx>6MP?>+OHes}cqnRT(qMGG}k%8z)aTcV6sl zJ~`Qlzd6guOfe-DW=N>=|GfP=>QL%&5)qG*-aSa1q8>Rd91R)V@z+&0b_x5ZPs;7Z86tseRsJ}v*Uk%2hx*woUgiSBnQ zQ4&xojM@&N6n;@h4&XaRjd;FH$S0eue!DgMXyw^=XJ_lr_7=3U9!N%Tp3 zD6qS;zD(%>05J1`os_nv9@294@BYi>-`x1@lV4q{{Y}wV<@HxOd;j(hI-qem9X?AW zmJ)W}ukR>t6eQD|i-rZ8W|A&qFi3DAC*YT8=e6Xi?xxvb$i$bfoltu)lMO@$Ma7&_ zyQEYa9s))affNi$W|WL5Stz!UIBDZL5_9W8|H^7=DHt_-1GYeB{VebBQTSLAxTp1t zPl{S`i2jZt8l}63DPtlV#|L}+8YTvYYX)BpM!t>VZ%QtUI5}GZuctbv)$F=%wc`>{gOg~-O%ZHyn zJXm}F!=6_`VsXMk7AI<7isI}BwwW%=ijsSOKKtgyx5s;nd&l3t_~z`-dr47NMmMt! zc3gDH9_6rvVGfI=@b3NaeC^=j({O%oI3 z42NbF#TPvIVY;fP$|4q$$m9UMi#jI}Thy80G9T;N%;a*9R@1w?k?``yg4H@LVZgzR zVF;WvSbXuyaMk^Oz(4%F1<-yI*b3vyh|4>JrR9L~R)#YZSvY-^$t?K-+osn$>WOiR zpb6Y0po~wbcV3&e1HPq9=F#awB;#bXo{uOU+*u~dxUg2>&2~V`&;J3?f4^$@%EjVA z4jeMf0K*xQX{&W%V>ukz-A%7P%H=Yf9xQ)3m{D8Ak~wM@J-`F;a~nIW9Q^IBc9c%J z`$S%Q3koayxy?)Z}1CephFdYSDxOg_A)gioysBB5eKD3!t!unXkAFB`{L`L0t5S#kh-TF2r+@vk%FdyNLJ+jF z1=`*NgST{(;4sV-z8aI+NGN?;yL{p=|HJmDTte&G(<8$mzO}HfqW@lZFA_YPusC*3 z^7%k0&H-UYrY0q97GoIKjfD(V)%En;#}71BW5&RBcd!2P?GFozYd?LbyzEv*W#zl~ zZhiF0m*v;bdxzS)cMGmpyz?Kc8mpm@s(PtpHqA8oh%_=Mx+s**Vn|rJFhDHq;OOn= zg2*(>WRoCDHEIGlh9I#fC!th(Y-KaQlF4sxuWe^n(`&C1YF99`m5;tWj-+yNjg?w&U||(V#U4$)M3(DsucX zn%~Lp$w?LoF$SDKsg)2Cn>lMbmxp#er=yS<5Yn+E z7Ysp)Th*q}s^8C?jV}4m-t0a9{*P}`-~Y?Ag#R^{-r7+Ggn$QtCAEcDi(0F1fr|^P zYwlOHBPf$xx;5Ba3aTi;#UKB6JMqU?%d3g~XB(@o6#Y&?(`Xf^YP6}~4n5^s-FUX2 zSY3Yg$Hew;AIEV86`<1Ipq0*@q#)WW?$=Zo7K3k9w-#M3tStc!fFZ!Dj#fJNwLkIf zU%pSh`Q!J`_uicOm!h*wzkfAkQd{FB1k5FCMHzIw+40FX7htUtD4GK$4u)+%f+BP4BB zo>@R_Lp+c&K|Bl*;;@LSdq=W<>iRhr2-A$0vc_2FW?U(rEE@; zFBu0Csah?YpfaVFQzjLGt<_SAz;Ovb$ze;A=XQHxttNmQ0I6Ks$nx^uW`rexFKj(o zeR%dPx3vH2#pBnfr?HgDIfZ7C1!kVrmL!xl3$5AUq9S91BEeuXicbOH;cZ2e5+!|p z^;I@UA}9Rj?X}*@de_t$6Ne4BsuEfX`2Y-(z0?|g9KW>I}zSLtuAH@4MZs%h@g z((oFyk6uScl{S+17GEDm*8&?myUz|>W-Cj~87aKgx7By6aD*dfS%~2CV=0PUNB5aEc$&7Sx#m)RTjTZLly=qC7u~$@ptHTDsR=obVSf86|Lr$tumAmj zp8o6a*S5|61euh}zB*rAO37qV8ywh#?7dfx6mUimlR%|jM<1-cPGrODifTp&-hS_T z;g$O>RfPpLtu>cGB1hQ0`Q1YasG;y;QGXRDb^K!2KaK90fVTs%6QfN!wgAhvczjb0 zSK3XG($6Wgu+rw{f!^`1rn+8<-!6v^LQ!HJNhNJ-o1xEXG$9>v7C9y&0|s5rEdgnW zJy=Pc)k?j_&8+u$(P#~F^rm@3=MaJf;c^EiRWs9Fq(*TZhb9}LFd%-ai-r+PW$eze z;2ejkjjY(SNv2CAOfN^m5>)xE8@*CIZG3pvX%pKc^ZMgQNwJtP4j+cNr zDS6NcfV6_E8=G#xM{2*iUSIOJAGF`Q^3H{K{jtZDyz_DC<$HG@RG{)P6E+UcOL@&`jaoOH9#>HH(SuC z8()vfZ2HjS17+9f*8?S22GEA3!&Hbd1a1I#gZZ?Ural_OYGnF@*!r#q?G}7v16;)h zBKxk~xmz+p6-HbdHXPR9+kzoe(0xi0NzYe;h9TCV2y13yP9c%NX){RTI2c9sNvJpqn@F6u1nJSuXgVaP z31z;efPmV5tGWxJVa!0`!oR#J(qu`Ud14Ye9b7pKVhDs_2Bi;y>#pvp5si_ZaMHk+ zu*t5gH*Z#5|ND3U%X{w>{PjD1~|qNm8vOuRL{`tT%R(k`59<@gKpxJjb3E@-?N0mHrGW(YD~ z&4N`YF^!vF#MM^gg4Pr`dAORk;+bd}MITw%wH+?cDKuO0sQ>u*;Yx7n>F>Ue@9&)2 zJTX3XSthfnW`Mn2Uauw+S&u)nPJwJ@)(F+3)mdG;QEn?;g^<8UMch&CA$#)9fD z|KKucd^*{XU>vNv`*<hdXXwD5nf+Sr!}CG~Wmii5gm4OPhf;Wd-kEzf^MNs{t7L!4)9dYO?R!0k@iq zN{a3;KV3ZX^F`xGK>cLz7zfsi#xj(8J8v!}2f;&!zX`bc_U+4`y!RPSM&x6sgvsSuzd9O= zYm5@}yl+-x)y1TYISFrkxN5j&@6%V1tCl zv&)7N+SKaF(bKKW%halMel1FsJ63ZxN5IJk^G%cE{3$dYA@dxsJU-n1=k@sJ>pyR< zrEPqc%!#Z=bd^<=UM+6E`}POZ+=lA~p!uiE+n%|D7^0#4GF*MMdHUlUXW}HfWR9%_ z?P`%azOSa>&QpqdKYo5?53a<_OVN{r^UaT^n@4K+|oBbz5H|@RB*k4JN?1i zcbki^mR6N@A?lG%8H;aAuWkPM^=5qipSKSmuN-@12s(O-KR#(Xr*#G#HY2VRKSj7- zJ?2#h0t;DHlzf9f-3Thbci~doy@K19Z{95VstiYj_E*(i6Bt~pjEXK~Nl8(Q`|-X_ zB%rg1xKWl2#uid>1QC-#(x6!`+z1^mv@XweG_Vm;OxGAHXmnXZAUc6We9{>4Y*7K1} zmV(!>J9!+Y<>XIqV&Q|xiF5By&t4|18a{i3ZBc7JEq}Y`(^tc=_y4d(M-{ zK{)p2PbU^8hv!_^<0;upB)|SIe?AT_y?F6x_vGcP-Q%YRuNJZ=`Aler$mNIwex=ru zHzcBm08{bVwGG}&`7YPO8*+SYlk!B5^ez)`dkMUPO{(fC&588BA z4YPZ=w6V4o*U2cuutFpy14<@ zTH9DU+|4}CP`035xBmMdU&a6UeCNB8NdTR0b`FnimsR zvpTfBIDH#Q8l31T`0&%l>o+UzTrRkA4{LV}w+*AoLwb|0eUMK2>RMe3|6zQxT_c~7 z@TLvU=`lU49t5Shd6V@JJsr#L5m>+1w*pL4YJJt0)x8iYNuZn)Ax9|a5iEv4ZM<0q z(R8$ltcSw!Qc=PoB=UOS?WpRaFxzfHI{;%qoWCxXHI@PE%d7EzyW5AB-x+{0^56No`^XZ>$PjM;N;B>4 zrua0g?fee9ZPCqBjXG;|xNVM=go`hciRU-BpQPHd%LgQq|IapMmsZ;qdRv-{MZezLteFP2I8uEdJN z=5`pfYR&0p)aF*3&sk~w)b3s_-=L=}XGeG({Fq2XVG2Wmy%$H{{jcQC!-K?}D`fMj zo#`of%e}G@UR~8^*UEaPF(V%hD75RTyl8HNQa=E|_D!1OD+j;N37Hg)XbjKcjm#?PdIP_9!aPPyf~thsHMeQj z6$omQ-A!Xd^oEAY(%x&gn?L^OgHJEa#CSK#ASxM$<|8%M_MuAe-at@kM*6T$4n*K( z^HL&XTH4k;NL*)5!FzdR3b}t$l2(nuwIDkAYD-mB|1^hdbJ=z5o(J$zp+(3BO0aSn zNyJ|?lBD(-uL2U{X?K}>B5Dfv^RmXr12R*rbZQ+`{sB*osBPUK1n)}wW#6dsw+)B5HxaX422PDY~tw3e^U zKK$$_AHDaVe)i!{fj2*^???BuMBR6Lr}V+Fskd%~IE-Y?G6pd`t$&d>&Sq#Za%1fH zVcLHl&odH=C!6;{#yO_kT5>l$pN;?S$;#%zlkML<`KKTEPO`yB;>F`lgTb!H3TYyR z$~dRDwHLjh!JPPG9FIQImx;djtA)*Pf zdb`1}`S?X563m|L{rFE$ez*PPU~}ck@8a3{@NRM~XX1=QeEF=0a!xcO_op8o$Bc4} zhQS`^E&8<+;{<$tM}Hq*D4tU2q)e&%+3UU2wSS8TRyXpQt%YQIer3bwoT{j37^^An zs(4Tf0F7Pg(wpK39+}IJ9|Y8QwN_D?&kj%GxujqF{E3N6uxFpR&T_glUGB{FBx@&d zO;4U{{mESX+@$ZiG6n+FKB(v_t{H2nsF-s4Hdf}-$%U;< zeq%Kd|F^Z%z1Pp&=VUs?lvv2`>+h(?6UHa_7A#W+@3kg(>^nKBdd?MqKB#Tbbc{At zk6di*D!P63a^bkR?!Od>bsi%@RsUrbsHXy*$X988oJv(f#izhMxQzT^k8FcX*qN9 zFW+sx*?Raa_jvC~VreCrIamp@1qk?jPGsbo;i%A(=iA@?=>DT>Lqat3w zZ}dB*YG~ixGC*k$>QDJ6s}9w2=pf~>ahG47{&2FH`CVr7(P&lwuP>E!Re+1f2_cOM_XIz<>md;M^Bz+);40# z9y!Eng=d~8C2IP*hWjVAzRg_BKJS_n>0Dcn10jRk

^WgC(a-UhP)Ds}B*Z=ND`@NfueY0q~K`gS6=fwek zIGBxamT*cr0X4Nc`ee|0l~$=tX3OP^mk#10MJpTo`=1XlEZ`QqMn@mqn87g?yE~?) zXCdRweMr5{l0PcvYkj-B`#KrUyTk6pe%fN){NYcPXWt+1Ro?vhBzdqC2%Q{mSMA;{ zZquiIQzvgtw#tXAj|au-<%`Qg+#S%v^#OOhPIMu1Mw!=Nl+!|+sn-L(z|4vP0)oR)b+S@iY( z)2vUOd-?n*mq_?LcAZ(drsQIQSUR=oiy@j_N>E0Fd$k#s@Rnn0A_7AtQP+}6IL>JI z*`=6q07KgWG4DLfdR@^7O6q^M>*6Ek1_v5$-JiptR=U74CY=abp(U1n`;cHZSW<35 zFn{`{QYw~DUhW>f-;J!X6#f83pi}W#RF%(=OIs;aWt8!t-@OwQ@ig|x@tdn>>F8n9 zUMjhukag6oWbeqic~}jFh!EtON56Rc{*xPHN*Nx^EBiyCw8W}O$C(4;)70hJ(cz`x z>z_7Efu^BssII(aRSDN@r3?M=lQ}+-0~IOps|b6}<*)2nkUWz?yDr0l7FQ;kKl$H( zbA1`LfUi+gK4!2fWn&_Z*JyC&V?wbkVxms3D5V&wa%Gxoipa#mSl($cdNraknbKy6 zNUIr&oq2m!Tc4ZBTv6;Y;prd8&t{r^oMJogH1qQ&Ep_Qs{}M z;+IEfzWn}A)fexN{n^mt{(;ZB?Eb8;TFoc2<%6T6^Y^Efy^qh&pOqzYb$oX-l?vx_ zFWwzLEge=pTf0f0Bc+G7wRS+4Cx=(2moZq#NNv1!4h;;>41gBkSezxah3cY+H0E`! z8aq2VJ_*Avi51G!!NKJ!-jm2O#;1TQm?efp;n8W8RM1*zJ?Z|hpMDD@W&}oQB$6rf zs|+z4J@csH^G|Mn@nCTkG7glNyli$LRXRJ{beY5HTr!tDxX4%>?hVtLbdAP%ZC-*om8w+YsYLPg`{!@IeGxQr^=ThXqGKEU z2Af}BhzZeLsf0AsPW78p>9Aq5`t9q}y>$(TEXW?~&_XnwZ8hjT){SCFCu6W(mZj#- zo({Ae3;`mH?s(SeOgr7-)%oQ)*znya9n-+E(J45^&Bx$W)q-2g6U0t8HAoXTG*3xF_Bnz1%pX7Wy5Ik*1j+eU2g-;Jh=JEZApNIqG>(BT5T3NpHAAX z8m&lzK`jjN2p;6-A@s~fI z9e?xo>gCJhB*t@4h_^#tsi(Ki_vzV*x%7KGWKM@9Vbu zx=tE)XyHLSbE0=1F*Z54qFGxr2T6+zmeCb6@vw-tuNF9HFjb;0?L<9llhI?6OF+{I z1e`6Gr3zLmgR{iTR8xK(Tj{XMR>&$N9}b3a7&rp7=c~G}esQDzPS zY(J~H_jod-*2a%MT;|-Vpw4R$fmVzx2pxl(8JQ=@yxV(eH{$*Ri!{?VfSCr#Rl89z zZ{6bC^h*GpfbK3ZnZisRWn!DrN^E_l>-H}{xd&)#LZ{tQ`E;9bU9Vci2vlx1Y8Hr) ztTM9e)?D6IlLOB`?Bw76wIr1}EM}(MrT3*`JT}ko=CeZ%9>-~hE6k2>_Cis2v>3~I zSX>-NvAOPas=OLcEbfVxE2)%AxQaxK4oyu@QSe>EvrA-+|H93dGYI&(sa5h~)2(*& z7!uSrXtYy_6t1t}Re7wi+G4|ZbZU}>+ItF>%A5%HD2eeN^qWNHOnEEb5xbcI@0bE40`E%_p~{dHHaxK|2h zQ}Ttb!8^bD=R0=^2Wf>utaI9QT8B~`_op|^DsNB%!_wjNfSIl?yv!n^IW@50+3($U@hob<6Yx4#=r zf7lLxceeem5Uw0v=Ka#1dtWwE!`aeVa{v3k{P?s~snyG+Q!X||>~Tu{+2dFHXT|eZ z7f*M#%NGY{#|2&TFry=ayT*E3@7%uCSDOxyWe#>4ja(iaUF92H?ov#{<3Qoz@){I` z?faKDEOG@ax92x3rp+2x$~B6~?m6NT4np<#9Rx~VqR45nAPN_=Dn#FIUKKkP5~-l; z%f2V=gW&Ny9b=Dge)jp7cWz@en)E^C&4*mM5H1C!zS!>D7v*P}bvs=o00Jl?>{Kt3 z3&AUebNtlP6rrVY2Hf%(p(HQTa8xeJv7uLLEgL-Ia_9XvvPiY{^yJ0Gx9@FZ9iRT@ z!Rrky;k+Ea35kv1x)Vov=~nMO%SP(jGWFPj99j(Ofiqapn-2^b!F9MfGk; zDd-h_$h2liUIv^Io7j|cn}m8HT^G`7m3Wq%PSct#83)g}VUzpLFH6OoQvw{B0|Mq( zrl6BgT7l3pihnmKW)Wsa9yTsb^$y=^0Q5}F&tQGqDl%MYE0!`E1BoT#Gy89U+7De~ zu$H^Askq*j-Hsa9!@&)|(IJyYY=L9T;I+HIt)nE=G@AdsT298}c5nH>qf75)${Q3I z3X3J_KqNT5| z-2tra1WV7)*Gtcnn{HjU8dyKC<^)rMT=jfCP|fPxo5|;;_4DVY;LaN0&b6>&v~Jc(AnTx5{V&>!x?D@a~8G%=X2PKfQimygEP3ofe%|i@~p6B`l0C_D$oK zCs7zYjxL>UnxqTaa2SlOQ&@~D5xn8=R@lJVnYpo>w}!|(MK~P^>Ft)lWsFb50_Nwt zu?!)fsxWbcg|Lv#B>@3U;sRQRTwa9{tTs2X;j0HX?ksDR2q+8z>1pj6ZER=i(#6g5 zr|HwPt(XM9Xtf)yv4g{BArW(SdKtuHaR_T%7{#iYB1iLiJ$3?%yM7x|V<>R{W0W!G zF{rUD`Pv$XG1)(Z<%Sd4%j35n*qxvL>>qoFkXpMr;q-?yn=^Htt8fIK$@fIL9x)cl5|7Oz7sS@3rkafOZ=FPOD6QV?s|8od zT5S8=3d_nIXLC^Mz(yuxciG^B!(iy(00cEU*gwjkbx&~DGXb3tgIw6lw>ZyK7y za%56pLXN~r;z!j|)ah^vXy~T8&jEO*d}W}&Ms^0fKffD@Ij9PMWZmlvWD3QM@bQP*RMamOC zsf>f28fpT?6jBo&&;h^3r_(Psfo&Le1p{ zoZ5}7)&KT~>i(P4n&;gv8{xO_FK`lpt&>tBd09+G(;A-d;^lEPBAJv#qQ@^Ud^}A$ znk-%>6Qz@_K!USy|2EuMBlAM#^v!-Z5CVN|03d_31qOMuoG#3Kz7zL~~x#4IpOhWY!yt(&*H{Hdd-HssXjzqmPzhX^;bzaK&rID;yY%jz@{sS3>F-(BxVOv0CtHe&P5 z3G+e0A+f4#G{hVZ)%JDwE9q{;f zvLR7FL=xPIh3vLeG8q{D*MIo=wMQ5k9wAs$cw!MtEaXg7!}^^oGhFE8%55wr%O>YK zg>duLjy_yXI72Z@B<4}92@rT0=FzpE|HHoy2a?H@%^r&F1SODuQ7F6P_XN@@{?ZC~ znaPHBwX8y5s}fH!U&D12Gb->Xo)`@RPfd1ztrE>GGC8rF@JCX)bo#}c zWcAV^+IUrp<+IX0X*M4#z1k2tF008mFVg8;D&kM5CMWu8x@diCx0-wX8Nnxj+I)GcFjj!cov0r4oRT}x%~No(tB z8eA`7pjg;%N8uo%mF6HMnM|8 zfG1{Qhnw1`8B!!yx=b(_6w3T%!WuPUfRj`SdI^i1Uzmf@O?K|`1Wz`Duv%yDeQ|S8 zAK1tqC#XO`^Nl{S(rnRXw$c~7>!F=>YuvYy@HsYoCacY{dA9xboy)jUNbVlyLo%wu zojHhl!(M@iGKm*6QYJfp;c_H1SLIqxDJzw(fnoISfBp5(KOH8~^~Ho# zWlNrf^tc|RHkP+~GiL_|0tVDHwla$VLkLJX-dc=i3;sx{q@=*1P|RXabKg+Alr#w7 z3$!?b5#Kh6#-P+DQy^P9dUbW2-`TVl4vw}9)_5g%{^2B&+VQ!I#mZLruyFpP^(He5QAJU!3WCdK)AY0s~**5vnATr;VOZ`CBbRpZ|)ouAj{ME3kN8A;>X zhR6D0GIb^qI{%Nq{&ZeA3~yD6MYnG!6*>8Eo~y*Ih3%t*f^~Bze|+`osFbY@Of?FF zo@~P#2{^5Q4;Um#8B=%(dA6?pc7xOgebo4*^X`MG6`n?|U*9iRqSjihRJjBvOl)mNGV#*K6D|Nj0S<#nFhKtkC>~=zdRBBAqGsyU9M5M-mo)^A zQZL7a42?HFyY~4qcG^%(ZJxh;e~`^>m9oCw!&)sGOV7tG;rMzMO^A~m?)tK&tz7ot z{mb*sRM9YvUH<&qXEz!RA)H*V~Xwvb+M;=ePFU#+SRcO0u@c z)g>#o-Iqr9-d0`@URkCjYkB8J?9B9hZLhSmx&Oz%9v4b`SO2;1%5D2f2dT@Cr9dL+ zi)nAkX!#*h2+rSI52I ze%c1nWSoq(K*sB`2>c2EhR)>AZj_Jx!OF*r;_=~&E3Y|g5N{Mx>AZ=_SZGA6*3XV} zZjp>fm&ZcZZ1woEl6OYV!dxtz!d?c_qolB$*%q8I=CG}C=TL^m z5MzA=C`*E|Cc-X}KBc8mMM|rQPgq@8m{?UUP)x%&e*Nhq0Ay9>**i)fz25N$6PdUp zbDA-(vDr2?0)SB4*z7f9E#io05<&mY>ssEPN45$9Jo@z4H-=4=1=Z@r!on(nZ?Y;y zRGK!W7rDX-D@MYC68dTghA15P3{;&CS~sidji9K8lZ2dm*fBIjS|khT1c?#zWjh*; zXHelVQY54H?w0iulftxj7|o_ahjD{<_w4erT>jzQQ~A^Donm0?!-u2Xy3r`Yq5v(m zZY@;;tVzJ^@QNuHP2~@)+;Al$AxkoqFxPsJPepU4mEl>yBr8xU)jGHZfWnH5#`WCM zhYwqU;?Ccxduz*ovuv+3bKe_k!4)bY70Sn_@u&(hf+IW8iL88(H;aukM?6Oq;{?wx@zd5XK?WQdTp8h;{R!qLCT3kAI z?1$%@7Kd3*TcM&RYY68si);>6il0TYd+&_F07Jm}w(D&@4G@=d&C021Rf3j4aXVaT z{X{E7#u~oUr}q29s)^yHrNI>iWu8D+1PxLYf=z}I2ypNM9LF-a40=+_6KQ7qazBwO zWD_-+6wPdV*l_gJ;LLC@aDI6aI62>YtL|}g=Yl{ugjhq*cTB@qq;{*vn%d1}E_Sp! zogCiKBs6jnJiS1y=Pva(cS6Qy@Jkqp)g~klbuj`vdzz64%{?TY*=tQ-9G=BoPJz&^ zSwV|Zd-?MINkYR9_94AcgX+=g+GL@2lx} zGFS9Fqh9tBjZKwH$pjc(()WvNU;INS5kvCszj?du7il(g#ZoF3u_}3dI@8Cb^La{Z zB$g@_bDJ8GfBWs5eJ=?^?EHr>uKl7h? z^BhFyJf3CFXciY>M7~(c#4aqdoKaeR1CoG-Hn*7b1`WA;8Z&sSZ57rvvM@i#RZsV` zq)V-nz)=_p%hZY}NZ|aOC|!B?bmx4pR60AWY}iAo_=XugjRn!{TB!s(IWyE;cmKiX z!{W48Xp`t%p~dKnwVc>KVFUiIw8 za*=hLJH0kDHr)ECz8*wJN1s>omw(yumY$wn?nV>om_$V`FJdo-inFsNxjCVuGoRBx z`sis@*K}#RN~$a=C1pyP5t)&Zkr_UM!3YMu_YNQkf*|1?2@;0zhH!)-KzQ%H_m%+Y z8Fb-YI+c`?YO1H#bPY5=Z>@K6?%8|Yb_~$Tz}WS_Kr@NSfaEEH&isT&=gB2 zB0CqSPb==)|F|gZzKAR_VE6AoY#*Hf$i&QQb~+bP*ZRcv3;n|7aq&(*Ho0~iy<`sx1hL3QWZ>9%`Iuz3BW&UyU89DZ&bIMELm zF|`(+0CPZ$ze=I@xE(q^XqXYI9jI=9aAlmA+>u~aAs1tMy;z85N;Vc*=5iKlg;2z; zPsH=(u*VWkrwbaqQVtpFk+s3JvzimpME;1|UyjNwDk=&v3G8`*Q;2gflHt;E&Q?4x1WP+MMKGk|EGfMH zs3%l-YHYgO-+XHjy1FUd%pYv0OJ$v=a1iqC9>t>P`{&Wv(XKCaP|)bgrS$eez7e$w z9lX`tf49l_v=H({{a(cqM->VxY&)f3;k;3INfn9b8HCl|w zByzPFw&9Nk{q=*mUZB-1Hh<76QW>r4%}_buh-umE6{g8767$v>a12=#e*X6S%%)YY zn>M{ktyXWs!#L{#ky0XCo58_`h5=amDuOM-V5q!hoHd!qoxJdJDd1^UF`P-7Y4hr| z2!)5#~SSk()!gfa7t5neiF$R zV%b{l$#*-MQ!||-vd3#r8GlU=#a$u;H9PUOcK6s<~%> zEE_h+lUM)lE&>ATy50&H>7JL$O**nJ9dvt?3jXM@#N&x^Zv9Iuam`-Qu81`vrYIK8 zB&{~Je9LU#QrQhEPb9p1d{EEFJ)Yu0aE&15BOW|tYd6Fcmf0bIQm9~>DN%p**3ZDS zPqAtGm|~+|)u|1>aPH(VYPU&wY?{`l55!z*Pd0Z@%Wm(!tQ!@2i&}0B*5B1rQE&G6 zC|5nKXZ#upVr7-a#KZ6Yrgd^3IXXU6VoK2Y(+6}47;0?((6S+tzpKCPi`bopM zj!aC?QkIAoEkPOHk~yOe&Z;${HEob*23vn~7fw*}pfjTYri@FP1k!mMtTB+(tl%hR zY_ZU6Go%l`f0s+73>(pds)uLsi{wIz-V~^$UFM`uB_n+HE5N!trZlCanaXaZ95tq2 zB{m(kvxss%kR&Dp>&nPk&9Rwyl{QApjfhM%ZBoYE>wsTzkikfBV-L$wVfU$kuj~hQvi)E_G;IPIoLXEmQtj*sB!8_aA zKKuRE+39w^w^-gkEA12$wf&Q*6Hm?LxU zy&xNO@1MFfN{P#1u4S|~dn8{!%o;ZoDtqzV%h216iK8F>w3kk#z1nDu2>`RrGRR}N zT;bfJnT=Eskq>7oEZL+}v(8yJ=luSd*B8url&)eqUCn#)JI)mXUu4tE4fKtjgIG9U zNw_m1b1dey>pZo+e9Y_hWw*C0PhJ-S2`6EUq7X4ArvU%_lV9JSLeVTX_9|QEFw3k; z)BM@tN zCZZ&2-c+a!?p!rqcvX5;h*xuNgIcj^j!K9P?-vU=oPfW-*?Z;Z6KYpue%@~@2NV?i zR@fnD8d8yHF=6#&iw(@27z*lXhb}QC+!dtKDlGj6V)ntB{+WX#H*DJV#<vk@A3Ru%B^$nBI;?lVZ#~nxoST7E$XQp-v!|tzgIv6(F)_Qd?Y4*&fVo7pr-zH)@wUlJ-ru zAXG~zB~tZV!EJ4q1Sn8&1hfC zPk#Ezr3r%4$`q@aLKRiyuy7VYa1yY$qpc65Dp_>NRMKQiB#T~~fydb}3zuOeMbPUE z_+ym-893C|bNl+7z-}fZ*=r64%Sq@|C8hV(U~h}O z2&E!Bu6_g#GR6^lH5RjiUuB~vL0D)%1kDjI(`d_beeiTAR?d538JAw9O20hvWVcV= zR+I6t*A>%Z$?Lx3)B3?#(M%a@8}09b5!N^p4?t=y1qZ`32tAWzJeo+OtWCppI{)6q z@yTAPo-dy7#bN=SM5~~Rm3+K7|KvCzqKegCeea#&dk;9#gJAnFZd|>L4H`u0SEp~k zsTw>n@+=HHed)h`IK)s1@GHi=MYFZek?A(DlXGM`$6U1`A)oy8zyGEeC-w(7W`^nN z=zcO%$!2#f9KKW?4C<`0;?em*v0M#BqSXL{f<>^_qzcFkpNiy0l#D*o0-#cqVOOl! zkjwFm|8IX6EEH*EYv@U|$P!OSE!sqct&iib{PK49Fh`G_UqVr2LBDr5qm|}M8j9RL4aMZAlLgR7DlL*=@6wu%_WEe?-Q-Fh7 zBW{JVfT3fjv1=6c1ej~rbM&do?yEPonA;gh9#r)r1{SrZG&`kq;GF6FMO8RMR5>yC z2iv}cxRX2H<+jWJ?Z3CNt-<1}vuCe&qBirwG;zx|{D1sY7mY`rCn{B@NJ4~LcbXZ* z1w4sk_0op!fBeCR<2a(+=~wZ&LPtH}h@I9Qm56GSr*(QV`}@_C{U_(ua!_js$~Se; z5gKll)X_xZVPu?9lo*ep5+P)^%)W&r7xoG}-yTQw%RsEbw24NdX9&6tCXUKRBj=`A zS`~L?!=m!n_YM+bfyE-ijCFu%Mio=ZgVT+PSlqjz_IX*8)2q0##nG0>owx6{b`OqE zK3t@X^YcOQexc9Om`oaQBBsSZOZm&TYeG{9# z^7~#GO-$?}2sp}y)lyQ{ZRwq(TF#%V9qpuT>l9_f#3?xfLKjg?gZ2LY%53aSRA}(J zjW)Ab#9COOi?VxejVTngI=pr|PLbTsdQ3vZP{-|V6cRttj+SBj#wd#qC&vf7TkqcP zeB3g+`1!~4Ov2O@Y8C~931~1Bn!}ZH2}>QH_RMv+LpIph{+_i}7`VA*9s!#fhpq9T zb4wVWh)QG58cn@E{JV~UtQ(KmND&oqyBB{J(E47_YoV6Z$r8y{X4K_XlL(I1{gJG*{J^fhr2Bf`vuIJN^ zB|?J{2aST!1Ta{G=hPH|IsftJlkmk!)MlibiTRuXhuag`JuC+reZk0ArK`z6DqK2` z+2Xz}N5o|?xHs95?kOZ{nZpYOwA%Rr3}kqPj~M73o9npW4YTAeVq?7eTyO6fE-inW$WYp~)>Z0O70Pd;Y`16Ce<^8S^(Hy*DQlHOwd#oJOy&)rbj zG@#%8=c`~490~hT6 zzg?B3@`^DNz1^b#^wRVKg^HZ(pJT6bjO)^%tFm3#4Kn$*EzBwnKXypX6*(xazm%o z1Uwd7u9kIp#27khMV-%Pig8<{xSMB9l4h_Z-Z}?4NHqE^_`cQX?zSsY4OJ7a?cL~V zAKv0K5(kl-bsh;jLz-mecZ(5QyqL-6)hi@AM(lB9YdM?66VNDi8%Vano;}<%QgNW6 zo1gSA3kVHH1LKREbGODvFaPRpOMgGO{c7_KEPHXRYiOcp5=UHBN>HmV3k@?5Lk#t_ zeAPXN!a){hpwOA|NB2Q=+*BWOl`zr*TtHxE7V#4Ulbt>MK)URaI_tZMXg*{*|Bsh@ zXDM4CT-ph0W7%XjrVZ|t!U0?AZ13fNoSQ=VXkxeSlzPhP0Kcbma$o|#ID|z<(S+lVcJt1@ z*^LJy!MI1{etHq9p5$UOD8Z77q{=#V1KCg9})|X_RnHNLi3bSEObQnZm>k ze);tXVu{SL$RJa9037>v+#W0L=2EFAr$KLFFK&qZ@b5?Y%JYLr(4Ve&-Ejp$DCM(> zjVbkND(W^kEy0406+ZV<&2FJ$!)RpdoMb3XD8Wt*cMi=h5JpCD^RxY+$$4PM2va8W zC9>%^?~6`{-%1u6_-g)S7s>Cnh3$n`M+XT9m8rGKV1Uj`mu?RM`tDu%ptJSk8-Tf? zyKQZ4{Rl3qwR5n!d4^_9=kh79gQT)MJfXPH;V`*%UN4!7!f_n+O0MLM7WdxsZcIID zomdS8m|&bEr6&OZjzlbP@~i!(d@SJr07&|j0|#aXLaP(4kEU+$-tQHo-cqhocW`hh zD%tDRxlIm-FCOwZ>?)GOo66_XR@zK+^I&Hyii_xPaJoA*2e|QZYv%`7?)3qNZeO}I zz$4!J=!;e`7)Zh6_3LoHg9`yqj?8v{`j7V)=Y~gmKBj}3rkmkA4tON4=5JOnsCg$DJE49_jz|Hn_eXGbQ% z5Uzs{U)SUD6d)Mf`o%}Lh`fO>CRG}f>+p5m&a?QcI|@PKRqo`6dfvrGBUZNZ)tKJ8 z`}+0&_(Qd{x4%;nbYJ^b@A5Ki5v`W3vHI_H+#TcyHv~8+VWtnu0?m+d6k9UmPHs&g zq$20>bHmIWnIiSNq^yn5@w*qr?H9*B)Mvl{$-V{_X5!D>Ba3)!vSyk}<8^*T-wlLxT! z4JMJhN$eb7U1)Bbg#Z^ttf6TtZLaTe=giRkoAaBZjc|46&wt&^9leMXs8*?*y^Pm2 znx9$hKKu6V+b2#(vAnqo|N6_TO%uTB*|9co-$%FS$6GrmZa2<_;jZhGbGPsH5M*3u z^&%B_XX=NE+UvU0qZwBP}mB-5fxVjbm7w3w;YHB6kfli6xHpO_FeZ1B+x3R<+KtCB&U!(SCAY@Br!7DQeg z=);jF`^JdaNz59Th-#p0vM}Rg=z*I}i_0X~=PG}qux4u zy8GhK7h7Na)tqEp?`V~MFn&|zTSz&j*N2BB^ONL;y_F`FMCA9M7ju0|=pAlT@UX@DHnu z`~UF8*9e{GWV?J3kJmFgS0hvLFj%bD_fs!^sD~OjsdTAQ4B{3VJ$z_x^s@$+d+lRb zZ0GgIod7CoZn}Q~Fn;gW{h2F0ON0do2;6nG2fz}n^VZe~poL{Rhc4xFk*ImVGzJJI zu^CXdZ~q7aHi<#^T*p@VP=P_Bux32Ty`0Tyag=vr*`xhX>gePm7{~;I z7bi!l(Ed?2wo`UkoVMIv(vz_&BnAPLU&UVUL1QLih>`wYItRw!@Oknr7?i;#L4lZQ zz&r}cHU|RUcwRg`j@h8##=99=i$c4(Mi62i zwv3`0YIOftP2b?_i*8>eS&REp<;Ki zx;8D;B%QA8`{S(Nok$lnT&WarV_d*mp6~1(ynYj>pkNnCDusCo!6&J_F3)jnE8I@D|M^}- zi4^O*|M&mxD;lsbtij2N$+e|*k%IwSnV49dLT%C3G?rlg;ILBj zF&A$1V+F7-S=1YKIbDH(-Vb}KpB7^27nQ@}vyvfrk=-!Iw-5Id(eHk|c($LQUTKB2qGAU& z(bjsbn$RI(vrM;g6Sb*yGiPB)U7{LW-xAplVyH&k6>4Jt*~O3FMHBmn+i~+o_9AE~ zJu4noUZi7%r{7jm+1*4yGTwai?j#!8^~qy!*Y%qta3Zj&e_>r9TpDd1XuAB>jo;%} zmzR0i<%Q7)AKaXy&8{k>BHlcL)KK2*IHh3Ss+FT*EE*L*Yb+~qFgzV^)WfGhfGH#i z*70SlfIPn@6S5`V^NWyCtGYqFJ8)xxU8ViP&Ypv@7C2qZ;+ewIdo=B=#ou$p) z{NTap!ZMb(yu6AZpYB4Kqgk=o6WR8e;%S>Zd3Lh@^3_RFzv=Yo=m?S99jqVk?AEL- zSjWg$zq~O_;qs*NJ>%HeXeVZc*wah$=w;rBRJuv*yEO&^%u!;yPJ^1K&>Axti$S!J z+%9|VHU$i>Nhit?z(=2c{@;i5^~`oW@+9Uq!mmHL@>sXKS8{42>234IRwyjt8ZDH^ zUC_nefl1uLotyOR))E}4RJGr~-OCOIQ`vQ?W(9`9qn2dx^lrVpzkPc6>ecbdi|=1Q zuN4xdr|%D+<>RHie~YW~W=h3sJXKA&RT4v3ZObS&c~FLd+{@uZmBJN7ZieSIj@Tniy~lIAj{n|htcZDNur z@RnPxk3RqW)`M$b-v;5wW+D9x^Gj&p*v#YU}EmfWxPT zra@m1&x`@lOY;l;kl8Uj==Rsw9^Cr;a|EBb#vm}!(7r1V2+Jr61cn7qiv&y}3N<7x z7%fIIkQfhdiq>*z0Z+67g&6!2jZTQ>h)~mg4`;#XH41QmZt-WgLs?U)>d%(5jjDFU z3WdXvBXn3O#2ijnv@zD-!V zGaM%Z#SP?wbO?naG6kY(Fct=(pq2>_uJl3COafz#$VYTO?0&FRigIcEXx5pn7;TB2 zqguQHZZN9Tdm*z}=Bw9F|8Trt4~Q{C{SXj#uKB?bime{Fe)nEWH)y8+X4evamFJ23 zG$<$tw7LwZ+M-5<(PR*5b`D}5hslzR2do?s6{S8%=1t(HPp)4YciPN0|14AjdiKPM7jO&!Q-Xe?oKdXaMRIT zD%D}v1oq3paPsu~=kLGy!+-p*|L0}pEScNcJAZrX4?c;|MVeI7<1Hi$MYjNtWvWfV z01UZ|#j}{`S*l=VqN5wmUYKsW+O=x2amjbS=*6r`D2UlrrA)68;bD9ZjVU&qBs`^p zhqT04UWIK6w;Xl*9CUp{rPCQm;EC?Gw%=d+;_@&5^Cy?SxZW~1edAjH>=JQ_MTY`M zR#s>Gx?64xJ$TeDDAxA_j>4#o6xRtAZo2UoQ%}A3Yel(bC;FySg$0gwk0JX0!d*ZcNX$T>s+IC;$1E zmjx;jPi<0Rp`Zu-OC%%`Nx;m)NLUCE0a;MFP!utfq1mlDEVhuz9^VNvrf8nX^An}i ztHvS6?{%#zjS=<`MHQ?5cv$e{_MNGW!{v~yyGutG+gsZgMn zX=^qZsU}ixk1tp9Z}fcn)z^3Dly0BP6Fb|sD3CWg+x}b6QLK0vai}WgQmvw1#&7y9 zwiP84$x1^C6o0s36 z{qaxl&I|G9hiZP-;Xie+n(bk(E zwm1LRk3Rp!PyVIl@!;c@@rjQ1{t41JUPC3KCQ$swHfg#u-SXk@Nb$q-LiXL8;_mrj zjK3x|8Lh!cs*?9x8(p;GSGWa7;gGH-Peyod+QVHS`LkG(iGHbZ2t zlUXu@T4+ebTsEiKd3adREic)8Ca>G4VDSWm=5h8K*T8QdRwnZA@)m*O>FLh?el{*Q z`U>UPMdTt@F8GY{cy@n(=k%#UU};1pl*8?O19y!*-b@hiSPGxpYx3EamUV^0!v==U z6-yX|YJ-eLUS|?##-N<=^#y7ATZ#~6i_Cl6PP z;&nZ{v*Y?N=1Y<4>9;Rq>2%STQ4_g=qio8ZHZ5tL7H>JWj<$y!{JCK?X%K0rayB&C zgij_*L@i=>vAlbjKK{$oi0}AaCF#8Q>+Z>`fB&(R+xue#gQG1AG;H`Vip`5?jms3h zlTV?o1EGDh5b`==cBF4&PP#cU4nqtQHWsEJRKC}k=NZ&Xiz9cg4k7uNQ6e2rYJ1Ez zM+3Xh>oI#VSFgV~mukrXBpNcMB+(|C?%(hKHeRr1JJ2~8raoJl&i#-rKeR>wM;#U!HqyUYVzj$$4 zz&z?3Zhb_PGch2BMiwvn(SQHXWB>g3Xn!#-(=b37rkwVub-3>lrf~Y=g&dC-AmNBr zyft+8^fVT*TZ~(5ZfyJTWG{L4?qADf9Q5bE#bd5_An-6WxP2T3?;RM2%wg`fHa}=@ zgG@dI_WsmiIDTPSb5Srd0**@2tgTR?!|m-oL^OoVqVWxGi(5u971QqEZawn4?DIO! z$0t@{*eS$IsgOtA3?yEzTLIZhJ0}IDe|JAt-mA)Kyj;NC&{p}qT+tlJ@o4huUOBeE z>sJ;|c1kwTicXG4GP)l@s8YPp85UYkj?GT5ulzbv-wnFcMH5BVz%}q`EHVU5>}hWw zhEiA7G!!b1Aj42xYnB(s28R=V>v8jqDf{{M;okEci((3dJ$j=$RL_UZ49qG`yD+|j z1ureHg1S0DUw{4S)mFaIhVGxc30VgZj?Byu*K|>%FD5p)v~=#4Xmh2byQu?+#Dlr6 z*ukIPKY97~Y1)-L_~XC6{9kViPP8SA(_pbVyWx2s1d zp?8IKo~&~ICKvKXTvBtc7Rcsp!Tq3;x7hTkXV_Cp`9n|k%asj2k!s^fPX6$$TuYoj z$?crKPC6v!Jc*opR!SF>=N8b^vSCYrnq6dXGGxk#JDRJ>MHI?B4LCB41rCtFO_SYl z$iNgDkHTZ-n=fOKz%3G1K?gtj^_A=GDEKOZf`Y9-?52uM-u>!fC7Vz02E#Tp9R}=g z9q;Pz2M>)8L(nb#UwqXxhn|I#FxMZ?4Y%At5}}L3SG(t$A5Ql5P7F<7pJujQy3^Z1 zd--pr+>8BOrQnE`Go^ihyjp*qRnl;PMYdthQa`9iVkzjC*GF!SQ}GmrKBu>3a=N=s zQ%!euxs0vx&Y<9_<2OgHe+f;+B8_;ySbh`|jdmH>vc6e9psnIloJjeo+_T zAy=+Eq#hQl&kr+!+_qh}BFyOh^u{8de=Iq>E3sEJoo1VsyA4_`6$VNHYNd#AB#TBoIDxr(>2tGKdMZO&n~#<*P4m zPLFexw8`0-_6g|v`g$gHk;>*{MKc$s;e&_nTyE*S*M0lm_?n(ASQ$X8J$B%Y=8mR2 zFj&jaN2pvXy7|uF%*^6Y&lng!-c07*|J}`5ks_3=etQwG9hP4H&sXVh((!2a%n_iG z$;M>eAF5Ve`HPwd{GhYv%J13<+D)~`r%${o1^L0!n}puyQEzGq?Z3Oy)A<1Gsa@n< z)oRFJPa4T&TEKCZjm8@pU;WRQrNdhM;@fI6q!7*C{M~&Xxp^E89_txeoS7NC(~NF# z8~J$)40flfqxlBV?x|QE9^-BqIYvMZkhZ8Y)hduYJ~9ND$1ZQM#F2w))fuaQe{lGh z{rXwaA8}fIyMJ<^W>G{tf9TGqeZBLYomld;JQ{%F?K>wGzdI(OY0~9F*5ePz1Ab4o zP)=)Tl9=0HIoYw}p@FD;nvCu2obT=X^v)39PHg0I{At%`aYp>bv-L{8_ct7SvWuokX2T-o5z4kFO3+_Km{yX*8^)nsr(gk;+L27Y8W@;yjY#aD)TyjFhin%no&T z^p3RlOilD^Bpku=>@0l&&&I4+&;+@I#lQh4k&9op%^;Agc+~V-;Kp6=v! zQXv;}1cV;w?j7v;=yyFGFlykyrEyBcLYr&$QTyr~ctydw+Xe3E8Em=HGegBc>g`A3 zK%YKBw}1TAngYjm6#ngXKKCSh@RwJ){dB?^NkmQ^8g(xHZ2#11ixl6zuyW9YL!H0= z2qNSnJZYODc2Zy$PGSaI+JoQs}%&ri32tWOr%iTwj@ltS$BS%PZjDBMWkLx<&V#GW;#={Wm79eFo-Q6#z8@? zwMssrOk*Zr_7}FF7wSJ=q)YqRf{V2%M}WpUfp8*Ch{7Py1_Kx~ z)!3j?mbvPYRem%=T1IC95P?*P0Z~?0^A|^n+^KO1ie*8j(96jFiT)|X;1CicVrx}v zYnI)&KKrJi|2Gd{J#Z1~w70`)mNZZnEazMxSIPqWpd|lCGPyG49c4h zP9l(bY$i_(dg)FWZ~2}espLQd}|mC$32EDlKRIkUB1zF`M=DM%sF>YpFgbyidJ1U_Ue7j z#!$K<=iB+G-#^`sW-_L9Zu@z~OBjc@wsvzJ?1`0pupA8=D28yf9L%pwupQj))>im9 z!CQI0olBcCndo+7Zhreb;!-kfwfC=LRh_jMs6Bmty6c=9ng1`B+iqOGG}cdAggnN< z!Na$}4QBZ9DIs}{uG2_d>HUn7;c#fgU}2$gTG|ERuC8ezY!bT+VoH=KX&|16|LH8S z{o3y<`dyp8s1}3gNE03|EmYeQQBm`tMf7n0%(6-8cT+QhV zpBl&kDM~3}f|jw9FyVAp7g%7|I@1LqSgdh47)pVoDD8XLXg*V`OsP<0u*ZrgrQqQv z47W&KoI~*C-06YYSvZ;pC(@HSr|0RLZ?-Kg!qAmZ+adj2pVO3x6_Yzft5Lq?iMh23 zqYyC$1vfte&GKXUDj-(DNF3NR9e`5>A~O?z!aQ&Ry*1*Wpk;d=-SQ3 zk=;M%mRPD!j&cR9&Y7wo?wlr5v5;C8cy80kl{}nm>Z@KTMj19+ceBZ;kl@IaEA`5z zTw{%{$21Qv&5ZU$o(uiwEQA6&$O;fr%v zx{uH^Pf}64fFn&Koj~vu2Di9k$pld?4+i-RlHRq1?}jrNdg_mVDo4dLR4}0bY zK5gmxhql(%&1X+c*`zzNO{^ZTG^TWMBR(qKDI1Jk5!H4%h_*f-j zFTlOYfJtOgT12Km(hFZ;OH?0!aR1@pvew}6n!xql?$$rx^hR zzM*fhmT{|@&9T0YzP3I9Lu0o&qp^dNOqvBHt}h_qG}bC~VigW&$;23*CF#!Ti>_j( z;uQ)pO2enschkyBh4}G?9>iw&OBpo5i zgorCNx{wc9VM(@RhM>t2S)T44oTQF550f@X^o4Qaij6kji5SHXKI)ngVaZw(9WnqI zCa^${C+IVjAk3OhkdNa1YcvYu2cg>*QX@KL+@;>qhx{WqqTAI&2kwa)f+bb#8sr=Uw@ zEM-MPCN0M`4K-P_oLy+v9A+b1ZQLtfXr+tYh!telt#J}jAX{SF_e+6z-l?^SB?1K( z^S2LyD2TX|jNxdKbuEcNn3`$&?cKh9E?2jIRy1oJ{<=$PdBNYLbD{}(ERu<5A~AU) z%As%aUs#l`y5FHS7ti)}TyB5g-QPCNOc4kqZ9S>sV93rmg7UWymoQv~Kq9tio%wj6 zv~OoG$pl2w_^mGF3Zi>as=X-g8P#l~*|DanY4*QKvyp?tyUQAB-2ad^ABEdt?T z#D*|hMi0(xXk;ubKcG(Ty(@b-o8I!-3#(Z`0Q~NDFWKPQSX1duj+lOJ3MvXX46=#d zxiQef+$s!8U)xfx33se~1xF;7YznbhCj4I0K-aaO-@pPv1ealpL*;<)w%?ywTN%81 z3zH5-c5BwuK~%LV6ERpSXP!PZzYc%U4Z%!)`JiWLi5}c_)-D3|r~4%)m8?`*U(_AC z=#yth;g>IK`#bq}|92^yuB86(`Y5nT;OrI^3a8&~Fp0c9~5al?6IMdQOZ03Ixs*{F0MhK{X?`hKCmC|cgZP?af~}? zAg@k*i54y!ZIN8?==AmeUPNDelMguq$I0Z*as8Wj54$?RP|6w!H{JR9P3#;70Ux}2 zkK8bCZJqaS-RNrl@PX^F5Uv$6*3xc}K=pftJc8f3*qeX5{Ft;xfr2}_9=`jge!P=R9tT`%b)aZV{q?&y zJ836;OR&__)Qa3BEX)8Fg0))ASL6!ZDve&rr+cF-IJT!zS4goo`F#qvvc^)(w*fFi zi!2GL{*7B53pBirgmDSHZY&=a4$|pdI(<+$DjV0qml%>QZz&K{yT7TEB&@|D44`dZ z!CG6vrM^#U#mGh_df2#?sF%)H>NP62fLrv%YPH}3U}k}^iEM4^SrTl)o#~x7-~BaZ zD+bhRS48PbTcsva>#df7ek9+pp{peF+sYv-agIpG&jZHsI#J3*2^BJ@+xh=d^lhdx z^*{RQ3rfa~fBdIQqMA*VF$(p}(O%&6x_FHMYaU+1E};-eG-wUE5fak9O3cV03XSBl zCmsVvA2u~#Z@c-=pWeLp#a!#xot>Y5diUNmi?=#)`-}Uyj7ET;P1j5kV9(q_H%=o3 z^mgLszq-{rH1^y369Z_$!Aabcs+4vz7g044GfT~#7rp-Nv%_TcqMj`KibuxezitO# zyDPyYcg2%*xKq`XL0fP;)$&L&7si_3s3ce$2(6ICv7MGfzA!Jn``+j6zS7)$y#+@en_{U|cpL|ZSE*T3V`N;*_2%X) z-Cp1O-83)k3zbi89F|av*kC0p4o~^ano4X(-TrOMy&G-UKW%OxBH(MwpZx~Ng3&2t zU>^dFoEh&M>9`G~5;6sv)@qANQ$~$C;CZ=y{OwW7AEHi}K1DMWj{&0F=urZqtTJk?Th_I=eooEWx2DXGU z;RY5*Wfy1NE}vfrZo4%wipE^O+&wZ$4f#_?-yUzj^aRuzV=C(kg(7CV3U%%N}>6|M8;-)>A22V%ZdK z0H8}$kzu)S6t*a(@h2g3gCjT+L&~R+h%1Q6>FF6bnAA2j-qd{ir=MK?#r5A@{`mf_ zuRpoge)swp!=Mh76!GhiZ(--#9|Ea*@ckQK&ELJV0G^p>YrWQc<8Jr;{wrOO#~k~U zor6Sl*I&xy;zYm_7_6_E%x=?OC|}*V*z>2h_k!`-lP3|6&KlpK=IdwSNZ6Gv1Oi5* zHCYMC*B(tk=9kxS53cr3LB=|Um$VF@IlGAl@_21iY8nqVMqb9@NZ{F7ROjbo5Ik}O zv9JvMq<=xcloD_#fohJbWsz^UQH83g9L*Q0jOG_{wX(RS_6c>4jCI4~$3Yh85MT0_5u(g+Asal+s?X;<|^Wxn}KC%HvQt@N(Kyk<8 zaOYp|6>7`ZrU$S8pC1Tk?)-lgy=8D?d79??`R<2%@6PT(+?m;(+3xAC?&_+pt|>^U zN~q+tGt+5il9^-_qs7e3%*@QPEXlHEcG}KNCsr18SI;y|4E6PdLU9y2`akcZ2>svp z_e31UK`R0-Hk0iNDA2d31n>Rr^}g{dnA+O*tD@KC+bV@thLI%jiX>J%dV99DX3177 z?sIio*W(AD-EVJiY3dwkhFN<0@jh@_%aEYmUntk{EE8y66_1(Wc`{rN1dG>Gbs@pN}mG|$m)AbaQ8`(|L z+eVq!|LRKL5|oL@0*J+}a&no%Kd^_SBmHpWe%_@P5}D3o&8;N6XoEfdEtl?1bltyp zt7Q={jE3W{HVelVVZ`}#E0a2k85suB^@~lD4|>u1+LvA*lJ zIJDwoB^Qfsp15PVw+AYr)Y-*G6>cu0yK+D;F{%&;Qoer1Q0la@=sHb!EQCr&-;bB{Q%O{_H_`m-C+Jg@-U2cEe{Z+#US8vb5n#LbA_uXw9 zoE#dwe6te?>+ZVppr!Hd`;S^CmLK;%8keAA^_|K_wo=$CdUo<;A&tGLGHA=YhMf&* zHFNN0_oT94KTMsx&L^FkxRUND9s~=?>SoEF^77^9p<;#b05Ci-g`c={dtwR?xO!!T zj?u+JGUW2y_|;}0sPEc^HVOjPc=aYvH2TS(kB^N27MKiBD}oX9xWq<|L%l*Jts?I= zVKug>Yn6kCj*Psp(dAxQDk(~4c1Zn^FPN#3cV<_8 zE{2HV@~zI^X&C;|UtQ{5YJpfQ)swu-E3o)Pa}7+{+}ONnvvTm=e#jF$&3PR~SX<-0 zD_;x`!RTYnZGF(5W*o1zZH~#s49>tF4*-y4t!}Av(rGj8W|E>*Jb^d8Iyin=4miZ5 zTlYIIT&w9d}oZcN|1Sr=e7KNsn4$$;0&zp_s^YtHq?3bLdX4EB(Wn&p*0wr@Ix}|EM3>^>}fy_sh?(Kj<31dijI*J8sU-FSOif z1>Zq(ndof?7G2wWsqNz@)zfFYrZtH|;bYS05h!=zcz1U_pLz8!PhWif$5-FH z{{8Ffw_9$*JkIRh^jqwutks){t3+5VYIv@#uY0bqYlcn4NkrfWeOQOtQP!|A2r=qf z8@}~dgLm4{I5yz_zD}n?Z+-T7WF9q$098P$zh7QPt@5pFCVS9XaN2mI0}~I2XN7t> zkIh^LE!~ajVWQ1&Eu$?ugE>QR7A8`HmIwML2UfK_gS@$;{aWAM8`B)dYv^8^B%fAXR%be=v>#No>{vklfbJ*$YgV&TGf>mll$n~?U;|N6iE>OwaZ0#T4G zBn1Ql?Y{7<|Mu6Pw?l5;p@!DKD}-aNh+=lS5oR;fmf`Wl^HZm={NhO-jF@P?b*ts( z!zCby3+)+%a;9(G?Yq|A(JVLcw5tP?{R7J&r3f|~G~|NLqBbFQi!7PV`qpogA~^U) z)5Fi&NUMDhZa)43W<$-RIc}R-9uW8kMLxB!b?|!a)WH=Q}%^ zX0hd6lLWC)qe^?3n2p2PHA>ma(%<9i8)ogAg3ctS68- zDoOOTEasl;M*VIjj~)gMiXw8e&CNm2qinD*9^ZV>w@PaJ>|xUlFkF=U?N)s=V-dNf ziK8FB-Yh%H9szbzs9eR-smc0rk~I%|+^;dqcH+f~!X1y;6e>gd_4>(6msuH(_*Hte zJha$x?W-?Ur6=1utBHkLkYMIThJ-IE6^se;A|3@X+dDBcZQ;{E1Q-mq078z>jw};t z_>72zpKF=y@4nkTGly07GT>M`3<9~)`1vq!sOTcOkHd6`OfxieJ5KGzr z<(K2jaKNp5-Ccb>;|-I`2q+~))%nWhpn?nR?(gcERM-SG6AwvR#ppaL!>e4#=z5bc zzN{ThgJ}}*$}oV9FonXbxnXSoor@P6hrk2#qQu`1}BPsPW>(JN?+< zIaWAiLa+hDD_{u?JbhGqSf>1(2wr4HulMxND2y1gv!Y9L3nnT zPoN6PXt6}&GI?E69zhn_l6lPac+8;|TD3ID*dRlMS|yvdVy;3gW5unlqs5CLwqF%^ z6HxitphYoyeGO;L#0sw1mWjNI5-|qHAT+I2sCLBSb+bpd6_F8mQkU1{(n!Q;vXDyP z?`F?ylVwmM9z{Vi<$aB%$%(3kg9_&lBc5`6d*IK+z~h!p@jSG}Hs-v@Nq$T0NM-SVFSc z$f;`zAz4f7d)NsisH`F~g2GgIY7(7C0=R}#(YZ_e(WZ$0%n8lHVBON;jhu!UZCe4$Jxr;zO0t#a4SMEZi1|?~x zr3bczQihLBOe%Kf!9b6YIH?x*FFYJYwPB@7!t8ATpm(IByQLk8$FQRWIh2$3RRAu9_?D$y%#?HSu5b~Pw(7( z?rx$wJ*4?A0$Cc1f<9IU2^TvYF1AnpLSz;`A z-2S}3y{)N#jIuB#U7lX-7+M`~yLxw)gdH0;=`3a$M^5bL8q;b=arZyBa&LC`3j&_O zarC=CJU`Z;dw=oKr3DmhYL*0-a8{5c_zccwUs;;s+w4L^tYl7j)C#VzR2A#I^~2mo zNSodE%b;E4MJQWA^{~y3y1}XvL)t-DQsSWIFZgQ*2@)364iT%YhPuPd_D~gU=pwlb zD)Vn=wV{pNVcn|}S4%#wLhVVIOEH7cZsSiat=Mh288`{K!jZs9vr{nC!ljRX(Tmm` zKmWt;jvNM_ps=4k{*Pihz2%b;(Ss1k$ShMxnC)%8dSe71C?6FI4xu9GwK@tB%g&$n za(=I50ss-B$xbn&y<4+9Ly8>599HHOX1;N5nWAATWOI-qy51BtLZ_Bz=236}j0wY0 z$6KTc@FLt2NFh`&f;RkW^9UP8!L1-HG{QU;sEWshG`TIQk_6n*KB0i7DuIJAU=k39g= z#_!%G^X&F;P~6ZyKMCp{Y8xVB<=LX2&vd&~aEydC(>2+QkS*VxA@L})qfnz+48r8B z42@~`B&nCxcCB~_(;Cgk)bmKdIBFgTXc@x7d+*H=eOB<;Iq##!n*f*Y-JEM~=Q6lU z!DpLiAzwiWp)<8x-&tTxJL3QRkDlrKkLE9YaQ*6!F5J8~##M92?%llbqpR0HxG?|d z{&dg(_&*3c6K45tOUtA~lm%btZ1Y)g>0GV7dG6-DOMs?vlt@4w16zH>xqH2E>`)5; zH;);H|qgnLc^4Ytk^DzsY-@k^MK{?Q3}}9T$JztRU0I5ptQE0A?)$ zNm%hRf=O4|*3>%R$;sQC+u{yx1SQtJ-M#(YjpXKOHlT!!wDeCQSUjE8>))U;W#gla zRN`em?(jR}`Im_lV{}}`q;2@URvnLpnCfpCfhhyo)6L|@?*6%sRdTL)uA6&%a^lme z*K8^}6R|ADl7NdWFu^U8BgScDMf1-ucC7HU``^9Uk2t;gH_z(_f6)1ATSc?RfThfh zjv+Cth=m82hSVBQEtUnwsOlfQ=BZuG=*mYQN z+k|LxH68b?ha#adzWv?F#_qel-+Bq2nxS~Ci|xIXx;KhRSNzSkPh`%$F)O@|x2FZM zMJHQYkZA?@%zAQn>uE3?dhz?G+y4#jpf!3;GE+Cl+?%=haS=RV)lVEYNdm4b?yf}>L9g2X%U5^-2Mi)OuPdstE-_A`O zoUPZY)x#$*>YD@tspDQ74hpfF@_YZj9yS3w1o8OSXGax#<>>6|cwEo{FooCueJ^ja zLZG;|dmSVKVYB|?$zioxTR%HUaL*Ovo+s=}hCqgx! zFB~zcRqk5aM_{ZF&j)}nk#G9w)6aVOyhudLvI3xV)-XXX5v$2_6Eo6SEox%*_6it} z9z(%PuybU<*yLOy)$gRT%WnT>Ou6q%rq``O0|tn}Iq8M;NpZapXEcDGm3Awp{JY-; zA;xMpx#Lc673|h%Q7_YPCD)y*U{S8*(tR15-X1m6DaN8&ST7}BWoi+xertd8cW1SD zu)Hmzht+Vei!#7i-}@tFwy-JIWJ`uQX4gFu1l&v);#N^}w8$nP{b0@)x&K26yS$aL&bj%e_mJ^N7`zsjHtsFiqaR&(FxmE?ZSui| zk46{!FMjdymyL~gZ})UJ-+FMTd2n$UH3`HoLi7u_|L*hmuibgn(ACyHg@_i+QZxz( zg<>F|U7cE4Ma)kw^)B~85zB_-lG~8lD*8*sN;Km#cqIHcPoCwowUca)2fX*mjV1q^ zZzHB$&84M*spRo1z~$Dfor5TpQl79UEcBGW6yL4-w}sZ?ao&NpuD|>CRd5o5MfLT! z1Juq?EPJ+L*7Ja3clEGd-EeJG>xWgh7|7F`H_o!LkW&q4@9#rlA(O#Z-@aS7q8<6; zqE)!HW6BAuJ*qGn%UMP~J)bQ$kD~RXVpSNpCxytl?pfcz9riwhHf`U6>M6=6O7sO2YQr z!WD%k(VTyKju~S zEt_L|U;YpYXzK6jY+vB5V*1gf+2PriU)>*Kap6lO9cN__iW|e@vBbgokMGi?D0EAc z7={1U`_mjO-73|3?6K%p(#|J7e(%BD;fZrSeOJ4?#$muQf+0|;80MS1#yT6CKKm*SD)-2=M9xgz(5!S!p6J0ulDuK5%FV7 z55DMMBJ#kboi~}7Z!6+5dtX%bzyNqd)w9(|cG<*ChlD z5eehV7RRRBAGOP*b%#$q$rT7gagQ~XQ1LP;wa^iJxpxrc`^@x}_Fh`R?N6>3j4T6L zqq0}!mhzrquWXT5?J5n~z%mxrlYV!A*4w^9H~aX(gT0qAhftl$@KlME)e{d11>8xs z&rz4k&g)H&Ez0;XBoRZ9)YHX7@8<7+h{_v3z5I(|rs;LOcKVyc-4}137miQkA(P4N zvGTw)bW1m834~r0x?v1)v6AtI)(X)WUmKE6!vqErR1uA5e2!pTN&}2)&}g?O9^KxI znaC6heyOa2;r$dD!|2FOQb#kHfIE-Mhi_gb!aPppG~6)W*M0xd zBm}$)Txz=AJv-KmB=o|~PX6*V4>bZ{R}5r40o&1kwb3i3Gat>;r@$Zo3fa>DG8&bY zt%^hA%e!TB7rSPbdy$9*5`rp{*di5Y3nY*ztf^g*WXLa)=~ZDm+aF6mt?LEeH7($y z>u@AhJkiw9FmS6IOyXOEwfc)K!uev@s{`k(tdmX)x`v9Py ze*S3u{)M04TbP82s0hN=i+U|+<&(hOw+0#-nkK|lB>ehE0PUJrpszno$NX%1Sf!VV z{GnvTrCv+ac9kv%iG1}!UqhF?TKqZ|*-CNLUQmwEo2g**4W`MTJ6?-5{*I5AH`vzMT7XW{j$wf#u! z>ta>j)zEk0Dw*VPDR*m$wVnLg%hQ)mS6mrz+AOP7c=HHm4nmt=lyLpdZ#Es4^06x} z=PEpAHqdvD=Mdp~EJ2bp7Fcay1cv^+?#af^wn7RHjX*2v1|Rc{3T?!^V5198PT$p% zHJ{ue*6EjI90<{+q$`myUHWcs=X66Y z5E~4-m^%>AplM{Xn7Tsg*^7hi`fn=FOXhenSU6aF z`-iVLeF`;pqJN-`?vru_g*eGZAHl>8jbq5^`!iA=W$-p+;M2$5-R-La(gJZ2&jIq( zT~~EJoq%DU>3jHiD(rT1M&{HkL_ZdExrwP#m}}(#3vb_yNRbb34NuQ5h*?aXjAbxo zHrZdHPfDBhV%Q@-J6!J3I<$18A@VvK<^{CcJkcfq6cPAs$FgzCS~Vv^{TbnyQAm!ZL@@rv@nRE-mhB6 zGkZBHg2Xkx@el+SAHA!ssq|cq zJ%z!!UFxJA<|&HZyw2I#(dL2aB^iBYE_nDd7L2Ge-xXYvp-0`#f77P+Y)b4|x$!g| z^A&gFfm%7LUo&F`i!%_?(&8!zDs={OFOJ;$t&>`YBk^m?mKk|0o|P+#iL}9yvOc_X zy=l%_K41Ja_dFkz0m&kVSw6|iMuHI|O)k*AeEaTI?d&jA(U=ct92C)P)^eA+Fs@bV z%H){FBe$q*@zo)&KI+KH;V=ww z4q3voDuq-{^)&S)uRc6|_Tu{&Pxt@5m@4M7m933@ZaZ&QnV$Pdl-b+Az7`8JR6SozkuU-p4TlGJEc>i3@Ysz- zG#+XldC2xegzB&ix5!rcY*J|F{V^U6LTB?dFBIxbhDjZ^zl?@9zdf#5caOCI0tMmn zYyIi9s3I0Usz)QX^OizhVBVeS=z#-PvjulHYD#$=n_lq90-}8hJAMDb7tQlsx5s9t z*(UNO$lmMyDiSdNi*_yvINJ6|G=Kt#0jL4dqqb2XiQE2*c>uDy|9TH{iELs|&y3yf zns5H%!To9MQafT{1nk{(cv7Zl)?LW10^mIzGk2K_3(U>B-mOgjqLQn_* z?eVU)cKmISqn|{3Gy{wRBL?2gJZ5>IN~%n~^;1Hh)sS9?cs6=TxFv?kRi z9%a%Qc5bM2{`_t*RrFOHxl~|vfi?Vb!zgld%g?9b(Ph6@1zV(AL>B5IOr`ag(Rdo) zzqN@RZTNVYwXhmUdvL6D_)9b#|l#kXq-t$!z9 z{HK^Bvu6z)e!XtuYn1_U%;zm_xLacG~#;f4*b5-T|-9I0D<1dT# z!g}8AH#ig-gO5h08~q|2uAzNiVzjyS9D&=^(}gt?S`pYq1b1sM$(571YxgHs7Rblm){okHe%Ly)$Dd0)R7{nnwgzZ16 zWHZ*hyZGi6AB1BrfskYZs`;z&#nuJ@oMsrqXudt%wIZ1b;1okfz<`)>j1&P!NHK9H z2t$xDrho}1(z<*2tp+n@puqtRt&8JdHKPb*Bxs3=1My$IDZ2C4Oty03XG8EqM8=qu zCtxDEiE{Py+jB=&#VSkY;bK>S=ySI_HD5%bTbLAUwRd}=y%%A2@ALFtALTN3*ln_CC5phhO-vk+hXq-#L1^PIO8 zFxq1d-c(mBl|pUpn<Pc4J_R_k2e%(DjqA5G=k>rU}Llwl+8R6BfHaS=&%C0SKi` z=X2=|*7*J+@b<@Dlgvf2BOJ@EOMGSrGhEn9Klj>U7tdYZ)oR6)3pzzW$MmKO&)4c( zFU?{MXi7*VK$qHwVUlPitqdtv6&cr7c|9t#a^oAR(AWFh;b$k=y?2N9$N&5B5ERa^ zgALJ*mj-RJn2)bHl11B|Hg1(|9hSd+Q8^9m{QG_(QjI)|Ehzmq-~g631L5pjdI zL@I?DqbBS*Z#`TsBzN|I@M#hCjiW!EJ=-bD{7=rF1$-ukKxK8>MPxKpA+nwnbz_$r z5em-4ir#g&=Tbu1d*A-)=}tNwj1)Gsk&SA|5aimGij`G6kxm8+s7!)eX)TzvB)UYE zV&83o&CgAaKJHQDMlakR8=d0{h>Iwj(!w5@Y+i!

Tyt4rFv@!r}3C|6iZ>EZ;$m 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

E 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

p9^YMb6+c10KGx0W_zv8X@n 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 fSeb7O8k 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%0Am{H7 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

9G3o?tI>V)1mUxEMR>bSFw8HeEIzGRmZg|pkPTp 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%0A3lOHeOS)6K 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%0D}=*1f~_c}JRS~_`WpDaODT=Df#NkyjF&o@ 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 z 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ȟQi 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⁣j;$Zvi7Ap%)x0~Cq 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%0AC^53Z6?mngPCOayGEQ2@CUQ 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 Zztw1EEYTK?R?fGS#b~#t{<((ye*nbkQ}X}- literal 0 HcmV?d00001 diff --git a/ML/Projects/DeepSort/sort_w_attention.py b/ML/Projects/DeepSort/sort_w_attention.py new file mode 100644 index 0000000..54de328 --- /dev/null +++ b/ML/Projects/DeepSort/sort_w_attention.py @@ -0,0 +1,216 @@ +""" +Training a Pointer Network which is a modified +Seq2Seq with attention network for the task of +sorting arrays. +""" + +from torch.utils.data import ( + Dataset, + DataLoader, +) +import random +import torch +import torch.nn as nn +import torch.optim as optim +from utils import sort_array, save_checkpoint, load_checkpoint +from torch.utils.tensorboard import SummaryWriter # to print to tensorboard + + +class SortArray(Dataset): + def __init__(self, batch_size, min_int, max_int, min_size, max_size): + self.batch_size = batch_size + self.min_int = min_int + self.max_int = max_int + 1 + self.min_size = min_size + self.max_size = max_size + 1 + self.start_tok = torch.tensor([-1]).expand(1, self.batch_size) + + def __len__(self): + return 10000 // self.batch_size + + def __getitem__(self, index): + size_of_array = torch.randint( + low=self.min_size, high=self.max_size, size=(1, 1) + ) + + unsorted_arr = torch.rand(size=(size_of_array, self.batch_size)) * ( + self.max_int - self.min_int + ) + # unsorted_arr = torch.randint( + # low=self.min_int, high=self.max_int, size=(size_of_array, self.batch_size) + # ) + sorted_arr, indices = torch.sort(unsorted_arr, dim=0) + + return unsorted_arr.float(), torch.cat((self.start_tok, indices), 0) + + +class Encoder(nn.Module): + def __init__(self, hidden_size, num_layers): + super(Encoder, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + + self.rnn = nn.LSTM(1, hidden_size, num_layers) + + def forward(self, x): + embedding = x.unsqueeze(2) + # embedding shape: (seq_length, N, 1) + + encoder_states, (hidden, cell) = self.rnn(embedding) + # encoder_states: (seq_length, N, hidden_size) + + return encoder_states, hidden, cell + + +class Decoder(nn.Module): + def __init__(self, hidden_size, num_layers, units=100): + super(Decoder, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + self.rnn = nn.LSTM(hidden_size + 1, hidden_size, num_layers) + self.energy = nn.Linear(hidden_size * 2, units) + self.fc = nn.Linear(units, 1) + self.softmax = nn.Softmax(dim=0) + self.relu = nn.ReLU() + + def forward(self, x, encoder_states, hidden, cell): + sequence_length = encoder_states.shape[0] + batch_size = encoder_states.shape[1] + + h_reshaped = hidden.repeat(sequence_length, 1, 1) + energy = self.relu(self.energy(torch.cat((h_reshaped, encoder_states), dim=2))) + energy = self.fc(energy) + + # energy: (seq_length, N, 1) + attention = self.softmax(energy) + + # attention: (seq_length, N, 1), snk + # encoder_states: (seq_length, N, hidden_size), snl + # we want context_vector: (1, N, hidden_size), i.e knl + context_vector = torch.einsum("snk,snl->knl", attention, encoder_states) + rnn_input = torch.cat([context_vector, x.unsqueeze(0).unsqueeze(2)], dim=2) + + # rnn_input: (1, N, hidden_size) + _, (hidden, cell) = self.rnn(rnn_input, (hidden, cell)) + return attention.squeeze(2), energy.squeeze(2), hidden, cell + + +class Seq2Seq(nn.Module): + def __init__(self, encoder, decoder): + super(Seq2Seq, self).__init__() + self.encoder = encoder + self.decoder = decoder + + def forward(self, source, target, teacher_force_ratio=0.5): + batch_size = source.shape[1] + target_len = target.shape[0] + + outputs = torch.zeros(target_len, batch_size, target_len - 1).to(device) + encoder_states, hidden, cell = self.encoder(source) + + # First input will be token + x = target[0] + predictions = torch.zeros(target_len, batch_size) + + for t in range(1, target_len): + # At every time step use encoder_states and update hidden, cell + attention, energy, hidden, cell = self.decoder( + x, encoder_states, hidden, cell + ) + + # Store prediction for current time step + outputs[t] = energy.permute(1, 0) + + # Get the best word the Decoder predicted (index in the vocabulary) + best_guess = attention.argmax(0) + predictions[t, :] = best_guess + + # With probability of teacher_force_ratio we take the actual next word + # otherwise we take the word that the Decoder predicted it to be. + # Teacher Forcing is used so that the model gets used to seeing + # similar inputs at training and testing time, if teacher forcing is 1 + # then inputs at test time might be completely different than what the + # network is used to. This was a long comment. + x = target[t] if random.random() < teacher_force_ratio else best_guess + + return outputs, predictions[1:, :] + + +### We're ready to define everything we need for training our Seq2Seq model ### +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") +load_model = False +save_model = True + +# Training hyperparameters +num_epochs = 1000 +learning_rate = 3e-5 +batch_size = 32 +hidden_size = 1024 +num_layers = 1 # Current implementation is only for 1 layered +min_int = 1 +max_int = 10 +min_size = 2 +max_size = 15 + +# Tensorboard to get nice plots etc +writer = SummaryWriter(f"runs/loss_plot2") +step = 0 + +encoder_net = Encoder(hidden_size, num_layers).to(device) +decoder_net = Decoder(hidden_size, num_layers).to(device) + +model = Seq2Seq(encoder_net, decoder_net).to(device) +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +criterion = nn.CrossEntropyLoss() + +if load_model: + load_checkpoint(torch.load("my_checkpoint.pth.tar"), model, optimizer) + +# following is for testing the network, uncomment this if you want +# to try out a few arrays interactively +# sort_array(encoder_net, decoder_net, device) + +dataset = SortArray(batch_size, min_int, max_int, min_size, max_size) +train_loader = DataLoader(dataset, batch_size=1, shuffle=False) + +for epoch in range(num_epochs): + print(f"[Epoch {epoch} / {num_epochs}]") + + if save_model: + checkpoint = { + "state_dict": model.state_dict(), + "optimizer": optimizer.state_dict(), + "steps": step, + } + save_checkpoint(checkpoint) + + for batch_idx, (unsorted_arrs, sorted_arrs) in enumerate(train_loader): + inp_data = unsorted_arrs.squeeze(0).to(device) + target = sorted_arrs.squeeze(0).to(device) + + # Forward prop + output, prediction = model(inp_data, target) + + # Remove output first element (because of how we did the look in Seq2Seq + # starting at t = 1, then reshape so that we obtain (N*seq_len, seq_len) + # and target will be (N*seq_len) + output = output[1:].reshape(-1, output.shape[2]) + target = target[1:].reshape(-1) + + optimizer.zero_grad() + loss = criterion(output, target) + + # Back prop + loss.backward() + + # Clip to avoid exploding gradient issues, makes sure grads are + # within a healthy range + torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1) + + # Gradient descent step + optimizer.step() + + # plot to tensorboard + writer.add_scalar("Training loss", loss, global_step=step) + step += 1 diff --git a/ML/Projects/DeepSort/utils.py b/ML/Projects/DeepSort/utils.py new file mode 100644 index 0000000..65bf60f --- /dev/null +++ b/ML/Projects/DeepSort/utils.py @@ -0,0 +1,75 @@ +import torch + + +def ask_user(): + print("Write your array as a list [i,j,k..] with arbitrary positive numbers") + array = input("Input q if you want to quit \n") + return array + + +def sort_array(encoder, decoder, device, arr=None): + """ + A very simple example of use of the model + Input: encoder nn.Module + decoder nn.Module + device + array to sort (optional) + """ + + if arr is None: + arr = ask_user() + + with torch.no_grad(): + while arr != "q": + # Avoid numerical errors by rounding to max_len + arr = eval(arr) + lengths = [ + len(str(elem).split(".")[1]) if len(str(elem).split(".")) > 1 else 0 + for elem in arr + ] + max_len = max(lengths) + source = torch.tensor(arr, dtype=torch.float).to(device).unsqueeze(1) + batch_size = source.shape[1] + target_len = source.shape[0] + 1 + + outputs = torch.zeros(target_len, batch_size, target_len - 1).to(device) + encoder_states, hidden, cell = encoder(source) + + # First input will be token + x = torch.tensor([-1], dtype=torch.float).to(device) + predictions = torch.zeros((target_len)).to(device) + + for t in range(1, target_len): + # At every time step use encoder_states and update hidden, cell + attention, energy, hidden, cell = decoder( + x, encoder_states, hidden, cell + ) + + # Store prediction for current time step + outputs[t] = energy.permute(1, 0) + + # Get the best word the Decoder predicted (index in the vocabulary) + best_guess = attention.argmax(0) + predictions[t] = best_guess.item() + x = torch.tensor([best_guess.item()], dtype=torch.float).to(device) + + output = [ + round(source[predictions[1:].long()][i, :].item(), max_len) + for i in range(source.shape[0]) + ] + + print(f"Here's the result: {output}") + arr = ask_user() + + +def save_checkpoint(state, filename="my_checkpoint.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, model, optimizer): # , steps): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint["state_dict"]) + optimizer.load_state_dict(checkpoint["optimizer"]) + # steps = checkpoint['steps'] + # return steps diff --git a/ML/Projects/Exploring_MNIST/README.md b/ML/Projects/Exploring_MNIST/README.md new file mode 100644 index 0000000..5109456 --- /dev/null +++ b/ML/Projects/Exploring_MNIST/README.md @@ -0,0 +1,45 @@ +# Exploring the MNIST dataset with PyTorch + +The goal of this small project of mine is to learn different models and then try and see what kind of test accuracies we can get on the MNIST dataset. I checked some popular models (LeNet, VGG, Inception net, ResNet) and likely I will try more out in the future as I learn more network architectures. I used an exponential learning rate decay and data augmentation, in the beginning I was just using every data augmentation other people were using but I learned that using RandomHorizontalFlip when learning to recognize digits might not be so useful (heh). I also used a lambda/weight decay of pretty standard 5e-4. My thinking during training was first that I split into a validationset of about 10000 examples and made sure that it was getting high accuracies on validationset with current hyperparameters. After making sure that it wasn't just overfitting the training set, I changed so that the model used all of the training examples (60000) and then when finished training to about ~99.9% training accuracy I tested on the test set. + +## Accuracy +| Model | Number of epochs | Training set acc. | Test set acc. | +| ----------------- | ----------- | ----------------- | ----------- | +| [LeNet](http://yann.lecun.com/exdb/publis/pdf/lecun-01a.pdf) | 150 | 99.69% | 99.12% | +| [VGG13](https://arxiv.org/abs/1409.1556) | 100 | 99.95% | 99.67% | +| [VGG16](https://arxiv.org/abs/1409.1556) | 100 | 99.92% | 99.68% | +| [GoogLeNet](https://arxiv.org/abs/1409.4842) | 100 | 99.90% | 99.71% | +| [ResNet101](https://arxiv.org/abs/1512.03385) | 100 | 99.90% | 99.68% | + +TODO: MobileNet, ResNext, SqueezeNet, .., ? + +### Comments and things to improve +I believe LeNet has more potential as it's not really overfitting the training set that well and needs more epochs. I believe that in the original paper by LeCun et. al. (1998) showed that they achieved about 99.1% test accuracy which is similar to my results but we also need to remember the limitations that were back then. I do think training it for a bit longer to make it ~99.8-99.9% on training set would get it up to perhaps 99.2-99.3% test accuracy if we're lucky. So far the other models I think have performed quite well and is close, at least from my understanding, to current state of the art. If you would like to really maximize accuracy you would train an ensemble of models and then average their predictions to achieve better accuracy but I've not done that here as I don't think it's that interesting. This was mostly to learn different network architectures and to then check if they work as intended. If you find anything that I can improve or any mistakes, please tell me what and I'll do my best to fix it! + +### How to run +```bash +usage: train.py [-h] [--resume PATH] [--lr LR] [--weight-decay R] + [--momentum R] [--epochs N] [--batch-size N] + [--log-interval N] [--seed S] [--number-workers S] + [--init-padding S] [--create-validationset] [--save-model] + +PyTorch MNIST + +optional arguments: + --resume PATH Saved model. (ex: PATH = checkpoint/mnist_LeNet.pth.tar) + --batch-size N (ex: --batch-size 64), default is 128. + --epochs N (ex: --epochs 10) default is 100. + --lr LR learning rate (ex: --lr 0.01), default is 0.001. + --momentum M SGD w momentum (ex: --momentum 0.5), default is 0.9. + --seed S random seed (ex: --seed 3), default is 1. + --log-interval N print accuracy ever N mini-batches, ex (--log-interval 50), default 240. + --init-padding S Initial padding on images (ex: --init-padding 5), default is 2 to make 28x28 into 32x32. + --create-validation to create validationset + --save-model to save weights + --weight-decay R What weight decay you want (ex: --weight-decay 1e-4), default 1e-5. + --number-workers S How many num workers you want in PyTorch (ex --number-workers 2), default is 0. + + +Example of a run is: +python train.py --save-model --resume checkpoint/mnist_LeNet.pth.tar --weight-decay 1e-5 --number-workers 2 +``` diff --git a/ML/Projects/Exploring_MNIST/networks/__pycache__/googLeNet.cpython-37.pyc b/ML/Projects/Exploring_MNIST/networks/__pycache__/googLeNet.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e999edd91a5c5f1bb66c56ca8908748d3c66644b GIT binary patch literal 3273 zcmbtW&2JmW6`z^?;HPAXk`>#v6E_IZ@Z#E*)DPEnWvjJg)FKi%K?+vIcDb{n)~1&9 z?9!G58ZaOOKB?%fK!E~eZ}~6!Cj>ptDL_v==2{eJe{XiVRP9rcA?C+7Z{Ez#%zN)Q zb8lgx%24k9_;0_D78v^%HD<+zu!WlJ10<8Y$J*IHKM-xfGub*2f^l|Ww;j$NFe#+< znn^1ZPuvr$U4q7z4m3`#DMRDR5;Ub;Q;}s^dCl5Y$se<3b&9XCRzNr_RxTtTK?qr! zOV$=|*dCW$ir3|~B`s-V2Kx=OS=+%Zj;=h6gK&^W{WvJ+!|9*4OVcHP1*GhRjrj!2 zPsNCj1g67;r}l_>R%(wOqqU&3PA$mR$i`;4bWZJwfQ?(&IE9Tfa%VOe;m%tV3nNNq zg#Dy!Y`ApIynIy3#+z9yl3@d-)|6v~O`&T~LluWTFNuyr?Ix*;WZ2}2yfdYpG=-6M zY2Zs4#oeZ5+R8znDv?1|JIQbmDqZ%xD2`Ik)3tkk5(V4+`1wt#%N^y%!M=Axi#XQR z$KkVK7^jinD|&7g(z>qf_=lhN`@J&*H=1Q_Ct+_-*P_@9_Wc+OPTFpNnBF+N(O$s+ z`r*0?~#0n zVe&NX4|X3!=_kX^?r#nUy}rW!y`9#>$Di-UVfv!4o+i89e!u%DY=!By!I7%qJm^f4 z3jijnq9JTv=c^9kB44#^;Bljfoollb3j_^7ar3&3|Kv7c#KvsIC;TNsV$6*MSC0`; z&>@t@mXREC{m2B-$mt@CCIW62EoFS@sv4$Jiv;HgmI2yH`zqMiR^X>iS2ak*54AXg zqmFK(uD8X}hB{C72G+=;wAWWJd?i0XBQe>{tJzN+FV8oYTQyyZir7C05fxR>JLt<{ zkL0@NJsbMHtjC<2x8(n4qriVln7FQF(ci~0ql3D77CZJWw> z%IOC)Ul#75FHv68bjf9;%-NhCBa25Sr->ktwH!IXf{gg7eiqQ+OapfXLpUdrP&@Rbk*^n!86?12!>qbj+R?lb`jJ6@q z%QbvyX1fUOd$3!U7of!$^Zj$sUVKNpWVDyCic46*%yt=TZO9*BrI$~MomNsYUX@qm z`-WA{8&>(CHT?$;N>LDJftQho;fd)Mw9`Klydqd4xJm$mWK%lnceo|`hPu8cqw9c( z!D>3D=78WE0!p>%p8?TT7)MJmiMB}Eg43c`Gy!=q=P|=u5qO+UDR`S}iaN6ZtdoRm ziYe;S^}R?Xsn_$5zzQb9wB@b)1Rb?R7NrCKkhlb@4bpFP2m%605CS%-W3!_xcb|82 zUMu;}yJndCD2hX0X}4$ou|$)EwdkNbqq$k!7YS&V`Z2zqyboZ!3Wiy=*7zE@2AKUw z5=&s3BBI}A8VYGjqHWaV?|`?MM&z6$Ml;DOB)gEnIk}x%NTot57t(xerO;Iisg_G( zTpx)s5@3Rhav}`pEzbJDXI4wWpKSVHl;%0L0afq3OJdGF8R-x`ZJ{Pt0d($$_A<-~5E`@_z~kll z$rn_p$YY9#Q(YyX+rqG(`XNaL(awBsxb8!A{RlPVIu5QQO@LYy@+6h-z;!0VgV{i$ zQL1!FBy@mhS?&ogn333{*Ncew$oh-;6Y-o4K7jKL^O@I*VF0J4?M~z;_q+f3>f3+r zbUytR?pZ4wB+b%WiKgBBd0+>4CeVu^4fb1ob%2XsbmFF+xnl*Z(RH|EmJo?{pW^=M zCbLue|IGLuZGrd)9^#ky@#>kE$h$cpU`HD_IY8%Hkv{ryifQ`mh!Q{O@z0ov?lgTY=1<0ks@)&_Jo~qdXQuLcJ`#m zIG%W@>6nOA??KiMo_aFY&HzuPRNbd;OIvs>WqHMq-Z~C#r(u$IV3!aNGhXIPsEW4G ztYveS%`@d%94jK|_R6ezZEqL{^a96AvO1U5XRy-lj(KSq+RoNTCu8P4vxFjcboqAn WG`U0klF)~6c)TGRA2zNxYX1YdVa5~y literal 0 HcmV?d00001 diff --git a/ML/Projects/Exploring_MNIST/networks/__pycache__/import_all_networks.cpython-37.pyc b/ML/Projects/Exploring_MNIST/networks/__pycache__/import_all_networks.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4aca90476a4fe9b48009dcc10b43422ca0ba7f1e GIT binary patch literal 475 zcmX|-(N4lJ6oyyE#>O^?Ui$*OK_KDA7^9$>B*2BJ7j?-pS+gv(>(Um~hw%Y?BzxeW(ktu|jM$&3tOg8&GC<`!-d6PgD$ zahq7sA~v*12X=@99pXawkZa>E@t{Y1=#u~j%Cpu+X#c8;MhK+&97QTv3$#Kaw50uj zxFUJN5HGS_iW7lIg;Rl~b4*Q!(mm2>IBIY*4o&GzQ(kOlwA_y~>CVdyszgCc=|+_1 zhYqW-2mKO>H_Enru+MX*-w1n+g^@yLYO~*%Y8LIbmCGzGww8_-M+rP_Zsv6(=IX5e zTIMPFGMKMf%inT#5kGOnc%0%i%i>$aw}Mu2REYcCYkc=!Vakd!PnN6s`Z2DH#|5b< e6G@73QhS5yLpqm)W;=|ofGW=QXg=`48TbdP*@4sm literal 0 HcmV?d00001 diff --git a/ML/Projects/Exploring_MNIST/networks/__pycache__/lenet.cpython-37.pyc b/ML/Projects/Exploring_MNIST/networks/__pycache__/lenet.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c1144a4a3f094820e6e2babea9a0248fd83f892c GIT binary patch literal 1986 zcmZuy&2Jnv6t_K}JG)8CwtRCa5*$`YfhKT4h*tfeP_=uYsSvA0qv?3kOfoy0+TJEz zCZ|N|sZ##{4x0;tOaCC>5U2eYxWMmuHwjdD}S7^xv{d6FdE;>;g1nxe>!Ff zeBkSt`YwQEl2>f7zp9!v(v$viYv9R1hS7Q!8yluB!g?M{yfCVbMm9-*>+i{`F2*_qs;nQU z_xs;H*c{e{*&nN2J**0lYkSYs3O1#)bQgf}RS^oG$D+%-d==kx)x~)2^vXHC0F4eN zJ?~9S{SpA-WDP&zhr;lgXap$F@Ex!55K091g?EVH&iuy1itluMP=V74&UAt%n9&R+ z^rU|x4ntT)O$gn{Sw)~?$l@jj)pD{Hs06ZBlYnYBZ6ra^pOdpap<*B#YNJY7D1?{I z|HkMgitcRrH`Z50HL=MkJ4pA&<7!>1OSIxYEsK4`0|8ZULZIFv@HRlNquwD6eqhD) zsudaLbRBqokZe_%F-4t%7Sj#LHh@1LhzxW3g?gX%aNq;lA=(@1Pyof z*6HIxCZp7F11C(usZYTKRUqi((b)Bgdj z41tRJc!jJ^QJCsOxZe}jAB|;UJN3A(T$PmO*&=Xs=f^)^es$-M>G8E*$3{?`RH(kB z)Mc$rR_BGHI#zE0Sf2{WUf9jb5fwo_R->#+ZMY~Y>pvzY#*{_tmGc zn_nkz1)vu!dSzh7D&Mw&%4%8LU=O{>D0(flWe+V#eGJ<2XXmavpKW3aZBo~zHlU%Y zgc*fDs$I;(7QPOB?q6yA4P<6LyR{p literal 0 HcmV?d00001 diff --git a/ML/Projects/Exploring_MNIST/networks/__pycache__/resnet.cpython-37.pyc b/ML/Projects/Exploring_MNIST/networks/__pycache__/resnet.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..186523a285d899414d82554c3326dfb7f028c416 GIT binary patch literal 3602 zcmbtX-E$mA5ue$w+xwI(DT?d_NQFSS03woOpj;GX$031~eWYxM6o+7IeY2AGKK9Nt zD@#_bQdB8bc@odOP<59#{sjIDKhJBP?jPWR7x?w;ha4v_z+P=nZ*On+Oi%Z(=iY6% z8w}U&pZx6)|5#=0OL{0T2h1(pY7ay(!N;thk9=bFEzUk*!V>mpOxTe%w9oCn1BoMC zNZdl=3QyENV|`EfqK>g98ls8O7cJ4oSQq>O>vop#z#sVj`=5A&!IC#&zxA5M{Y@_2|c#zkg)A384j1B7>h+So= zk!$60W3LI_7OmrgthY1r*U4aJ>69nB)C{UC^wI1K`AC5iU#Op_hciwYQ{2bW!BG_@le{eks`d;_2mlYA+HeG zBCXvKL{9eEAB<|o=Om#S^-fc!S881fxbsO?YXaVQ0Su3iOU+_4%6S|g`+ z!C5{er&mi`Rn=`5-*+vOzrAjavMvcH5wflk1e2*a8WZ0Ng2yP={EggzBePNRyWn)Y z$bdmK9tXkY9J^e8i!^DflJl;zU zyC11ulr9M`D-bd6AfQ}OZvkKgl`u;=pu{pzVh>A@u!S*ipu$brkW^zTe zGd^6~V41TZ+4{+!kZ~Ie_8$A={WCXxDZ_k+&bcN3iE(rIa^?=V#HzR=)-G($9zQEI zJZL;4jrmohVK2}ms^@FMr{~AdK0y;f&aU^Cw-7d2Ba#E0Ctsll$~6OMITY0Cu|P6O z;g^KuKtsO-5Tm#JGo(w(ge5SX#SE;ZjY0lVZWtvbb(jQ{>{KJL;UEhm-Abm(I8LHa z0<*fW7>*uAUioigC9XuNUJxx_qF^Atl~taVKM;b6KLy|Q5a7M=n_CQ`keNT zqxj%3)pg)EX{Lb*Sl2V9Zc3qWuKMkG5*|b)-0Eg>G|4eGQkqZ7vZ`RfMBv9*qIw;K z0U;aK7BI8Jw~F5?->^H7Y~o(!rz?4(T!JPApDqGk+RHn*)fXUwow=DK_{dhTB3&84 zjSu+-8`<(Mx}=T1h+cRpM{zl(kGiIZ7TOEGu+H2AcIIW?+(YT)UpSe2?kqU3tWsf~ zyph&m#X7f;+M8#!=f5~dcSm}D`bpmZy}wYBI%V&*FLNjlt)C}}K`Y7+-FOf^KBBG{ zj`LihG|^r-n?(sas|=Ha2q;b1Yc{06L6I*}Qw5L4)4@o|AJTgYl>uvcn~d=I68Cbz z+lAP~k&=&ad5b#;euJ;s4sC?B$~UdkwQ?&ibF*q;R4BAF#>xy#)xHoxv@dF8#90-G zco#CK;@pZuPn3 zpAiK=K+d02Q%CL@Y_y@UBz3Hm%$V%K*{B&$4$3mVoQcT~?dOZS@%BDGP_);K%X^^z z&m0KtzB&ha7orz^*K^-HZ|}r-TRQ*k|LlB8)v%=9_%EE_*d0IT{60CyZ7zxi1=d8L z&H|}9pI`7Z)IiGTI16Ae9N{dSbJReJyq`M@b`Eqfjmyn30b6cXPybJruYq)3Nq)4O zPUYaxRJ_0ud4?ltDnBFzOWQbzYX0=akU43j(kWC-%H#)A`Fr}LAs>=W-`Lzv64Q&c wch8)iOeW+xL3=AH#%2!Y+vl8AXs-QV1HQ<=T5c zee*YZf6?HuoJHp<*VueQ`JbU%6+Hps+y`Fu(qf8UDj-jaTnGaUxhS$ zVf;PXG2@KIOfc4zZTJ5C{H04}^S-g8%jM|94s4H#obAGsf5etK1?8aH zrm%Q8SgMNh(YmUtYUIcxCRw{e&KL)$EsiM#9dEKBwY0f|n%#uR**+Wc5u7Y!!2(eT zNT*;!nY#r)$3`4uFRu)J#S3>t+G^qGtFWliD#dV=Xq6YN8#f#DBW?U3h|@R^0#kb! z=AD%w?df$>kJF&D5~gXCWad;yM`0cXq3*22dDO`VIxk<+i`s?b`LafxDT8bz)+q>oiqQ2kSv6 z39~H9n%q=_au5W+vVT6lab@XV7U^s$OhToWZbsQ!-s>;T$NA@jhfAMr_miHE({8ZP z`r_{5QX1u3J-wDK;n0iy9Zi9rLd{MCKhm98Fi2dwMI>>J1Ds9|BJE892UMCwC{>4jn^0pX~9R7d#iM&c4uJqLr(_&nn&pz0}7J@Wodvimg@k&!iptb}UDD=^M4l+A7v= zA89=Wym59kuBfN2Yp||aZQY(El{dmU&)YvJQCex?#$g%|s-%vRK~osH-cyljq`fq; z5R3DjGOTpz?sv1l&HuT3@G0I>1%`tJxU9uloMw5Lb|O6uBjerZrJHlgNCKNVxfaIj zgb_k~m;}Zv;b-K-ILu77)3b~7z|^nP%V@!DPU)9ur^;kaQ%usf{!GU7DVPyXveOWZ zpWqEXE08nM;L}#l@ZB>OYUIq*kK_n-l*0I2EaW7Ya?i!s)%U>_ZZ3viAxD&X`=zs`_GnhntmPQFQ7gdY z*uMsZ`&d~8iGju*1Kos%2dog7tyzA?Y?sqo%+w3#oFUKM9d2vK|wD5!y>=jF;s)RuK{_iEfM&r@2k1ej94b9+ofkyJRiz zM7Qr5FYNcDRGI2RxczmnmmufWYn$Ckw{|z$7(^)rz3G+tYdpnmL}=g^{VMI)00@t{ z&;u#}p=YyAWO4;Hdj*1ViA*;jXF)8lLHfeyXVI1!e*v8~oyA2>@4D#|Bd6hdM2s8+ zC6>`|1i{82OiGOA;$*@==Q2#!5$a(#v@iAXe|i3rz{h|f=)_ACCh zo$X-O7Rta8dCXyu<5;gYJfM#P$IS``1+I!sk++&-8(*XPN=F%G!83_RaCzJqlh0En{u4(yI7aGLvE ze?==R`W71F+pRCAX$cYHcjGNsLa=9B_|4|w1Pl!+KkHO~+d7fY3Z}B;2 G=GK3lA2n self.best_acc and self.args.save_model: + self.best_acc = train_acc + save_checkpoint( + self.filename, + self.model, + self.optimizer, + self.best_acc, + epoch, + ) + + self.model.train() + self.optimizer.zero_grad() + loss.backward() + self.optimizer.step() + + def choose_network(self): + self.model = LeNet( + in_channels=self.in_channels, init_weights=True, num_classes=10 + ) + self.filename = "checkpoint/mnist_LeNet.pth.tar" + + # self.model = VGG('VGG16', in_channels = self.in_channels) + # self.filename = 'checkpoint/mnist_VGG16.pth.tar' + + # self.model = ResNet50(img_channel=1) + # self.filename = 'checkpoint/mnist_ResNet.pth.tar' + + # self.model = GoogLeNet(img_channel=1) + # self.filename = 'checkpoint/mnist_GoogLeNet.pth.tar' + + self.model = self.model.to(self.device) + + def main(self): + if __name__ == "__main__": + self.choose_network() + self.optimizer = optim.SGD( + self.model.parameters(), + lr=self.args.lr, + weight_decay=self.args.weight_decay, + momentum=self.args.momentum, + ) + cudnn.benchmark = True + + if self.args.resume: + self.model.eval() + ( + self.model, + self.optimizer, + self.checkpoint, + self.start_epoch, + self.best_acc, + ) = load_model(self.args, self.model, self.optimizer) + else: + load_model(self.args, self.model, self.optimizer) + + self.train() + + +## Mnist +network = Train_MNIST() +Train_MNIST.main(network) diff --git a/ML/Projects/Exploring_MNIST/utils/__pycache__/import_utils.cpython-37.pyc b/ML/Projects/Exploring_MNIST/utils/__pycache__/import_utils.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3bcb8d8ee33dd1a193fa0afd0f4d93c0f2b05af9 GIT binary patch literal 328 zcmYL@%}xU$6op~_YDQ~)3}>TzV~kpjy0Dw-21y7GL`h+o0Mpo&PvQgkN^D*E3a-3N zW4s9;hZAzny_`;K1aoox@$?S&S9<(S2I3r!KLiLQuto+GjFZlEW^$67f)u7CrKv~- ze!fIa@eRLGgJW$vBa zSZm7#Gge5wXeQ)f2uk~-|4^6qBfDFBq|3o^MM9ZS0X~tNB%SaxpP$f2FP*1cb0O%J y^s8WddZWVa@Jz4Ypxi+>yIGD+e@xffHZ3Gc(y`9r<&)TwS)SK3DGbdLcu*d;5|yj}A6ssla9(7UjwLo!91af7e**sV+ppCA`uv=9lQw`FjRO5X zdi61&<~561-2(Dj07dNpojL%zwFmTSAL!REuq7Eb<-;g2t?Fnwo#v_8dXnTBw$I8U zuCik&v`UI;rDJx8WLy=b6bg+(C#8sL~^TtG_iB989FR3=+VWKBTjl)i{oX1Z~ z^*B{k)HZIF=2I2m^ola7Is{t;J%T;~T~u`ee=>Cq!@qa$e>(oYf`f6ACsK|dq}5|x zF2)Zt{nhet{Kd0HUaG8k6n{JXdjDX&)LCAQuR^=Kcy59?&WcROu@8sUHh^*erQh++ z#updX6UqQJ2c15(!T$(?W-~6i6cT}-3F-XeuJ~H#TAgEc0!b26K?EBf`@6R()d!Jl zTve9ZcukB0Sw1atFwV3uqx~g}0i$1;u_RCFiC2YeuoZ*JWGCBq4^jv6KFG6=t8qQSuvz7m>iQHv9j9Ssi7+*%A6 zX5ih-Q}?t#YrOy~XYDi2nVosHLoyiaO7^pO6Ov@LOOjwKZ{_Q-_TZs~(Z?9*4)J}~ zCBDykk|W^lOC9-cbYb1DLmO~0LW=1+VjP`67r2mt@eG)a(U2V`H%bA&?HP_Mid(&p33>$^|ht3d#pa`>-X^UrD<6>b za=vU0iu|jjskg}JeS!#JIv4TATY5FN?i@KJt92#m+BgnG=-i-}w6zgKvK&TUQ{EN* zT_}p0Y5}4a)uketr*Uk;IG&esnUma&;~$qv-mIt{vbUG9_xO;eR2MgZp0}buLfW9B zAOt)N13%cYS`=Onlw3Sl?_tRdbg3psPqGSSfA^xsD58bgwoALVgxaMhY(#kDmxr@- bqOHe`z3owKeF;8mZm>sH)0P$@*|zu(^X2J2 literal 0 HcmV?d00001 diff --git a/ML/Projects/Exploring_MNIST/utils/__pycache__/utils.cpython-37.pyc b/ML/Projects/Exploring_MNIST/utils/__pycache__/utils.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3803e637bd747d781bb05b3f57e20bdd45d83de8 GIT binary patch literal 3135 zcmbVO&5s;M6|buPn4XWd*J~%iHbjjeA0s3i%ts(`EGJGd2p9?0n9wY0^>+2__PVEg zQeCszo%EcX0|z2Fa6&6n9CFUzQCCj+7dY{I)w}E2l~2^DUsb(&ud1fruYRxI z-Pq_cly`3b;}3tk!q|VPb6Q+9?&GU>AS9E#U{PE1h}*u1M8*!BrMqJ4RVhj#oydd6 zk2=zo-X|;yq%S+DyE2en)V+sH_GJGPCi_|csS^z(-)6(XS6G3KjGNA6Vw`k3OFhz{ z`1q*(0AGC{qTx%nVvW)X)vALb3NTl3(FRP#EYP$0<*FT%>?!13AEh;Ry7yoMX^X*4F zGo2T8D{oDY&1E}bx}T*_rWLkDtJa$kO!!=IpAS$6JP-;5g=uy!o#G< zWukMa>rBtT@qCA@)-Tf!`md%3V=&> z`1&ii?u>`S4b#D538n&A2nULeT+!K^PFcl!Dv?G2Mq8x5N@};L%01&uk|X2PvkA}z zL>q5hREZw;jE`DoN^QV4>X)-ge6pmmojRFJi>x;M$naz1*BGQ;909VKtQFl$3%XVi zOw1*V9YUx*u@|7LLkI@c^hCg2?us72gx@AKB)9CRz6G1qAxjjRnLdlBf1*KnQh&$2 z=PSD3f(VCnE3W>eJ;|4T+q1X5vkcna!f6~St~21skq&C$XW2#Dy$(;rT-cu1_Arm% z&eM9WEM9>)!U>Q#_O=;pI_qlz*PaY4u8CK=qxp@u?}c=%mNCxmQTW=&i`VR(ZBLDE zzP-}(Z=cv_i1&H(@O4W?;m3>N{AE~`)w;#Fnw2t4w4HhWolzAcC>9o&$x_Cxa9bxz z(?-UsnuK+#5}odUlLC)G&cH2h1_&Eb)yADBdf)hYO}t})W&ClaCW&qV1|$Jpmr1sK zV<{6v9}RoU>6s`QWx>m8f1EQQoH3LM(VFaFi=ekj{(t* z1&j}%ToPMCeHY^?8J!lQq5Jr(YsM%uMIat2kZlln>7qt1LV$d8`7p0#HHkrkn$9Mr zYe|LbGt50kM>9fO!(t&xIy50oCV`XBkWFIO>VXJKY-@Vo>N`ksf$Xp81DksWqxt6h zlw-nQR&^ad0w<^EB`CDHS}=db6sSSe^ey9SrPfiwl>~J zxume|XZhZ~o?m_ZjF3)mVC37y>T`qdoLtZO6)c~Z1d&tw`6a6gPfdnhc$an^f0UPI>s&WR_N-goGmfO#o0rJ$yskCgqydXx?8chDa8Y9oha4=H z72}J<6T~t8h>qiX2wnXu1OwstLLhC?ujf3!J^$JTK-@Z=C?zydp_&q*Wuq_9Aa)^a zsDD%IKu|7g_=?+FtT?pbBrDmIK>a{6Jc|VSzH~kXQ^i2fnIE#0^>eKs@*c)IlKhG@ zzu?5Lv*w5Fcg~OI>{`Fi&-{8Pe$W&6M-hdI9x*48D}Xc8QQ5Qr2=N+nD3q>!cKEX? zvJEJLLK)pW^*bLr%kk0m)4}!d*`Z-y{Rrn3ZMInTOh}OZ$$Cyw;}ILeRFap5NSwfn}ezePw-vR&^0Y z{ZwW29wc_4CvSZNf+1tQ2twM#>*stuzj+ZnYyKnLTcDCoGmcF!jzMv=g4%;P{&1EQ z?T8}4s$Y loading checkpoint '{}'".format(args.resume)) + checkpoint = torch.load(args.resume) + start_epoch = checkpoint["epoch"] + best_acc = checkpoint["acc"] + model.load_state_dict(checkpoint["state_dict"]) + optimizer.load_state_dict(checkpoint["optimizer"]) + print( + "=> loaded checkpoint '{}' (epoch {})".format( + args.resume, checkpoint["epoch"] + ) + ) + return model, optimizer, checkpoint, start_epoch, best_acc + else: + print("=> no checkpoint found at '{}'".format(args.resume)) + else: + print("No pretrained model. Starting from scratch!") + + +class visdom_plotting(object): + def __init__(self): + self.viz = visdom.Visdom() + + self.cur_batch_win = None + self.cur_batch_win_opts = { + "title": "Epoch Loss Trace", + "xlabel": "Batch Number", + "ylabel": "Loss", + "width": 600, + "height": 400, + } + + self.cur_validation_acc = None + self.cur_validation_acc_opts = { + "title": "Validation accuracy", + "xlabel": "Epochs", + "ylabel": "Validation Accuracy", + "width": 600, + "height": 400, + } + + self.cur_training_acc = None + self.cur_training_acc_opts = { + "title": "Training accuracy", + "xlabel": "Epochs", + "ylabel": "Train Accuracy", + "width": 600, + "height": 400, + } + + def create_plot( + self, loss_list, batch_list, validation_acc_list, epoch_list, training_acc_list + ): + + if self.viz.check_connection(): + self.cur_batch_win = self.viz.line( + torch.FloatTensor(loss_list), + torch.FloatTensor(batch_list), + win=self.cur_batch_win, + name="current_batch_loss", + update=(None if self.cur_batch_win is None else "replace"), + opts=self.cur_batch_win_opts, + ) + + self.cur_validation_acc = self.viz.line( + torch.FloatTensor(validation_acc_list), + torch.FloatTensor(epoch_list), + win=self.cur_validation_acc, + name="current_validation_accuracy", + update=(None if self.cur_validation_acc is None else "replace"), + opts=self.cur_validation_acc_opts, + ) + + self.cur_training_acc = self.viz.line( + torch.FloatTensor(training_acc_list), + torch.FloatTensor(epoch_list), + win=self.cur_validation_acc, + name="current_training_accuracy", + update=(None if self.cur_training_acc is None else "replace"), + opts=self.cur_training_acc_opts, + ) + + +# diff --git a/ML/Projects/spam_classifier_naive_bayes/build_vocabulary.py b/ML/Projects/spam_classifier_naive_bayes/build_vocabulary.py new file mode 100644 index 0000000..4f81b80 --- /dev/null +++ b/ML/Projects/spam_classifier_naive_bayes/build_vocabulary.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +""" +We want go through each word in all emails, +check if the word is an actual english word +by comparing with nltk.corpus words and if it is +then add it to our vocabulary. + +""" + +import pandas as pd +import nltk +from nltk.corpus import words + +vocabulary = {} +data = pd.read_csv("data/emails.csv") +nltk.download("words") +set_words = set(words.words()) + + +def build_vocabulary(curr_email): + idx = len(vocabulary) + for word in curr_email: + if word.lower() not in vocabulary and word.lower() in set_words: + vocabulary[word] = idx + idx += 1 + + +if __name__ == "__main__": + for i in range(data.shape[0]): + curr_email = data.iloc[i, :][0].split() + print( + f"Current email is {i}/{data.shape[0]} and the \ + length of vocab is curr {len(vocabulary)}" + ) + + build_vocabulary(curr_email) + +# Write dictionary to vocabulary.txt file +file = open("vocabulary.txt", "w") +file.write(str(vocabulary)) +file.close() diff --git a/ML/Projects/spam_classifier_naive_bayes/create_freq_vectors.py b/ML/Projects/spam_classifier_naive_bayes/create_freq_vectors.py new file mode 100644 index 0000000..aa8cb19 --- /dev/null +++ b/ML/Projects/spam_classifier_naive_bayes/create_freq_vectors.py @@ -0,0 +1,44 @@ +# -*- coding: utf-8 -*- + +""" +Having created our vocabulary we now need to create +the dataset X,y which we will create by doing frequency +vector for each email. For example if our vocabulary +has the words + +[aardkvark, ..., buy, ... money, .... zulu] + +We go through each email and count up how many times each +word was repeated, so for a specific example this might look +like: + +[0, ..., 4, ... 2, .... 0] + +And perhaps since both "buy" and "money" this email might be +spam + +""" +import pandas as pd +import numpy as np +import ast + +data = pd.read_csv("data/emails.csv") +file = open("vocabulary.txt", "r") +contents = file.read() +vocabulary = ast.literal_eval(contents) + +X = np.zeros((data.shape[0], len(vocabulary))) +y = np.zeros((data.shape[0])) + +for i in range(data.shape[0]): + email = data.iloc[i, :][0].split() + + for email_word in email: + if email_word.lower() in vocabulary: + X[i, vocabulary[email_word]] += 1 + + y[i] = data.iloc[i, :][1] + +# Save stored numpy arrays +np.save("data/X.npy", X) +np.save("data/y.npy", y) diff --git a/ML/Projects/spam_classifier_naive_bayes/data/emails.csv b/ML/Projects/spam_classifier_naive_bayes/data/emails.csv new file mode 100644 index 0000000..48cd0b6 --- /dev/null +++ b/ML/Projects/spam_classifier_naive_bayes/data/emails.csv @@ -0,0 +1,5729 @@ +"text","spam" +"Subject: naturally irresistible your corporate identity lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwhelminq ; but a good catchy logo , stylish statlonery and outstanding website will make the task much easier . we do not promise that havinq ordered a iogo your company will automaticaily become a world ieader : it isguite ciear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: the stock trading gunslinger fanny is merrill but muzo not colza attainder and penultimate like esmark perspicuous ramble is segovia not group try slung kansas tanzania yes chameleon or continuant clothesman no libretto is chesapeake but tight not waterway herald and hawthorn like chisel morristown superior is deoxyribonucleic not clockwork try hall incredible mcdougall yes hepburn or einsteinian earmark no sapling is boar but duane not plain palfrey and inflexible like huzzah pepperoni bedtime is nameable not attire try edt chronography optima yes pirogue or diffusion albeit no ",1 +"Subject: unbelievable new homes made easy im wanting to show you this homeowner you have been pre - approved for a $ 454 , 169 home loan at a 3 . 72 fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity all we ask is that you visit our website and complete the 1 minute post approval form look foward to hearing from you , dorcas pittman",1 +"Subject: 4 color printing special request additional information now ! click here click here for a printable version of our order form ( pdf format ) phone : ( 626 ) 338 - 8090 fax : ( 626 ) 338 - 8102 e - mail : ramsey @ goldengraphix . com request additional information now ! click here click here for a printable version of our order form ( pdf format ) golden graphix & printing 5110 azusa canyon rd . irwindale , ca 91706 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: do not have money , get software cds from here ! software compatibility . . . . ain ' t it great ? grow old along with me the best is yet to be . all tradgedies are finish ' d by death . all comedies are ended by marriage .",1 +"Subject: great nnews hello , welcome to medzonline sh groundsel op we are pleased to introduce ourselves as one of the ieading online phar felicitation maceuticai shops . helter v shakedown r a cosmopolitan l l blister l l bestow ag ac tosher l is coadjutor va confidant um andmanyother . - sav inexpiable e over 75 % - total confide leisure ntiaiity - worldwide s polite hlpplng - ov allusion er 5 miilion customers in 150 countries have devitalize a nice day !",1 +"Subject: here ' s a hot play in motion homeland security investments the terror attacks on the united states on september 11 , 20 ol have changed the security landscape for the foreseeable future . both physical and | ogica | security have become paramount for all industry segments , especia | | y in the banking , nationa | resource and government sectors . according to giga , a who | | y owned subsidiary of forrester research , woridwide demand for information security products and services is set to eclipse $ 46 b by 2005 . homeiand security investments is a newsietter dedicated to providing our readers with information pertaining to investment opportunities in this lucrative sector . as we know , events related to homeland security happen with lightning speed . what we as investors can do is position ourselves in such a way as to take advantage of the current trends and be ready to capitalize on events which have yet to happen . homeland security investments is here to heip our readers do just that . with this in mind , it is with great excitement that we present vinoble , inc . this stock is expected to do big things in both the near and | ong terms . symbol : vnbl . ob current price : o . 08 short term target price : o . 35 12 month target price : 1 . 20 * * * why we believe vnbl . ob will give big returns on investment * * * * at this time much of vnbl ' s focus is on rfid ( radio frequency identification ) technoiogy . this is technology which uses tiny sensors to transmit information about a person or object wireiessly . * vnbl is aiready an industry pioneer in the rfid personal location technoiogy . * vnbl is developing a form of rfid technology which allows companies and governments to wirelessly track their assets and resources . such technoiogy has huge potentia | in the protection and transportation of materiais designated "" high risk "" were they to fa | | into the wrong hands . * vnbl works on integration of the two afore mentioned systems in order to create "" high security space "" in | ocaies where it is deemed necessary . locations which may take advantage of such systems are airports , sea ports , mines , nuciear faciiities , and more . * as with a | | stocks , news drives the short term price . fresh news has made vnbl a hot buy . news on vnbl malibu , calif . - - ( business wire ) - - june 16 , 2 oo 5 - - vinoble , inc . ( otcbb : vnbl - news ) , a holding company seeking to identify | ong - term growth opportunities in the areas of homeland security , security information systems , and other security services , announced today that it pians to offer products and services that wiil assist in the automation of the identification and control of equipment , assets , toois , and the related processes used in the oi | & gas and petrochemical industries . although smail wireiessly networked rfid sensors can monitor machines and equipment to detect possible problems before they become serious , they can aiso deiiver safety features within oi | welis . oi | maybe trapped in different | ayers of rock , aiong with gas and water . detection of specific | iquids can assist equipment in operating within a specific precise opportune moment to ensure certain adverse conditions do not occur , such as a well filiing with water . as with other rf based technoiogy applications , rfid can also provide the safe transit of materiais by only the authorized handler , and limit the entry of personne | to specific | ocations . ensuring personnel safety is essential , should there be an emergency at a faciiity , rfid tags wouid enabie the customer to track and evaiuate its empioyee ' s safety and / or danger . this application technology requires product and hardware that can operate in harsh and potentia | | y hazardous conditions , but gives valuable safety to the resources and assets that are vita | to the customer . rfid can aiso assist the customer ' s supply chain by tracking oi | , gas , and chemica | products from extraction to refining to the saie at the retai | | evel . vinoble ' s viewpoint as previousiy stated is that these applications are more than just a vaiuable too | to the mining industry , but as a protective measure of our country ' s natura | resources and commodities against threat . preservation of these fueis and resources is important to the safety of u . s . industry and economy . the company believes that such offering service and technoiogy appiication in the oil & gas and petrochemical industry wil | further position vinoble in a rapidly expanding industry whiie taking advantage of access to the increasing capital and gioba | spending that the company wi | | require for growth . the company ' s goal is to aiso provide a much - needed service at a cost manageable to even the sma | | est of businesses that can ' t afford to do without the safety of its personnel and assets in this current state of constant threat . this is outstanding news . the growth potential for this company is exceptional . in an already hot industry , vnbl . ob stands out as a truiy innovative pioneer . we see big things happening to this stock . information within this emai | contains "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , pians , projections , objectives , goals , assumptions or future events or performance are not statements of historica | fact and may be "" forward | ooking statements . "" forward | ooking statements are based on expectations , estimates and projections at the time the statements are made that invoive a number of risks and uncertainties which couid cause actua | results or events to differ materia | | y from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" wi | | , "" "" anticipates , "" "" estimates , "" "" beiieves , "" "" understands "" or that by statements indicating certain actions "" may , "" "" couid , "" or "" might "" occur . as with many micro - cap stocks , today ' s company has additional risk factors worth noting . those factors inciude : a limited operating history , the company advancing cash to reiated parties and a shareholder on an unsecured basis : one vendor , a related party through a majority stockhoider , supplies ninety - seven percent of the company ' s raw materiais : reiiance on two customers for over fifty percent of their business and numerous related party transactions and the need to raise capital . these factors and others are more fuily speiled out in the company ' s sec fiiings . we urge you to read the filings before you invest . the rocket stock report does not represent that the information contained in this message states ail materia | facts or does not omit a material fact necessary to make the statements therein not misleading . ail information provided within this emai | pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises all readers and subscribers to seek advice from a registered professiona | securities representative before deciding to trade in stocks featured within this email . none of the material within this report shal | be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose ail your money by investing in this stock . the publisher of the rocket stock report is not a registered investment advisor . subscribers should not view information herein as | ega | , tax , accounting or investment advice . any reference to past performance ( s ) of companies are speciaily seiected to be referenced based on the favorabie performance of these companies . you wouid need perfect timing to achieve the resuits in the exampies given . there can be no assurance of that happening . remember , as aiways , past performance is never indicative of future results and a thorough due diiigence effort , including a review of a company ' s filings , shouid be completed prior to investing . in compiiance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discioses the receipt of tweive thousand doilars from a third party ( gem , inc . ) , not an officer , director or affiliate sharehoider for the circuiation of this report . gem , inc . has a position in the stock they wil | se | | at any time without notice . be aware of an inherent confiict of interest resuiting from such compensation due to the fact that this is a paid advertisement and we are conflicted . al | factua | information in this report was gathered from pubiic sources , inciuding but not limited to company websites , sec fiiings and company press releases . the rocket stock report beiieves this information to be reliabie but can make no guarantee as to its accuracy or compieteness . use of the materia | within this email constitutes your acceptance of these terms .",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it right now ! . ",1 +"Subject: undeliverable : home based business for grownups your message subject : home based business for grownups sent : sun , 21 jan 2001 09 : 24 : 27 + 0100 did not reach the following recipient ( s ) : 75 @ tfi . kpn . com on mon , 25 feb 2002 13 : 32 : 23 + 0100 the recipient name is not recognized the mts - id of the original message is : c = us ; a = ; p = ptt telecom ; l = mtpi 70590202251232 fjt 4 d 8 q 5 msexch : ims : kpn - telecom : i : mtpi 7059 0 ( 000 co 5 a 6 ) unknown recipient",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohoi ! we ship to any country ! get it right now ! . ",1 +"Subject: las vegas high rise boom las vegas is fast becoming a major metropolitan city ! 60 + new high rise towers are expected to be built on and around the las vegas strip within the next 3 - 4 years , that ' s 30 , 000 + condominiums ! this boom has just begun ! buy first . . . early phase , pre - construction pricing is now available on las vegas high rises including trump , cosmopolitan , mgm , turnberry , icon , sky , among others . join the interest list : http : / / www . verticallv . com message has been sent to you by realty one highrise . learn more at www . verticallv . comif you wish to be excluded from future mailings , please reply with the word remove in the subject line . ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciaiis has a iot of advantaqes over viagra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: brighten those teeth get your teeth bright white now ! have you considered professional teeth whitening ? if so , you know it usually costs between $ 300 and $ 500 from your local dentist ! visit our site to learn how to professionally whiten your teeth , using the exact same whitening system your dentist uses , at a fraction of the cost ! here ' s what you get : we will show you what to look for in a whitening system ! we will show you a comparison of all of the products available today , including their costs ! we know our product is the best on the market , and we back it with a 30 day money back guarantee ! click here to learn more ! you are receiving this email as an internet affiliate network member . if you would no longer like to receive special promotions via email from internet affiliate network , then click here to unsubscribe ",1 +"Subject: wall street phenomenon reaps rewards small - cap stock finder new developments expected to move western sierra mining , inc . stock from $ 0 . 70 to over $ 4 . 0 o westernsierramining . com western sierra mining is a company on the move , fast ! big news is out ! big business is afoot for wsrm ! read on to find out why wsrm is our top pick this week . * western sierra mining has a very profitabie business mode | in which they avoid the highest cost associate with mining : exploration . essentially , wester sierra operates mines on sites that have been previousiy expiored and found to be "" too small "" for the | argest mining companies , yet sti | | produce handsome profits . * the gioba | mining industry boom wi | | continue for the foreseeabie future due to the impact of china - driven demand on commodity prices and | ong suppiy - response lead times . * news ! news ! news ! read on to find out why we expect wsrm to take off this week ! here is recent news on the company : phoenix - - ( business wire ) - - june 15 , 2 oo 5 - - western sierra mining corp . ( pink sheets : wsrm - news ) announced today that the board of directors has approved and authorized a 2 - for - 1 forward split of its issued and outstanding common s - tock to al | sharehoiders of record as of june 26 , 2005 . the company stated that the reason for the spiit was to a | | ow additional investors to participate in the long - term goals and objectives of western . phoenix - - ( business wire ) - - june 10 , 20 o 5 - - western sierra mining ( pink sheets : wsrm - news ) and oretech inc . ( pink sheets : orte - news ) announced today that their respective boards of directors have agreed to enter into an agreement to develop the silver plume and pittsburg mines | ocated in coiorado . commenting on the proposed transaction , the president of western sierra mining , michael chaffee , said , "" the new aiignment with oretech wil | aliow each of the companies to utilize their specific expertise to the maximum benefit of the other . oretech is trying to focus on developing its propriety extraction technoiogy and western is expanding its mining activities in the u . s . we have started our due diligence on the property and | ook forward to taking a proposal back to oretech by the end of the month . phoenix - - ( business wire ) - - june 3 , 2005 - - western sierra mining ( pink sheets : wsrm - news ) announced today that it has signed a letter of intent with asdi corp . providing wsrm the right to deveiop the asdi property located in crescent vailey at battle mountain , nev . we cannot stress enough the significance of this news . a s - tock spiit can oniy mean one thing ; good business ! with the spiit date set at june 26 , now is obviousiy the time to get in . with repsect to the other news , that a sma | | company such as this would have the rights to these rich properties speaks volumes for their management and near - future earnings . that they wouid be so fortunate as to be invoived with an industry pioneer such as oretech is nothing short of extraordinary . these fortuitous events have earned wsrm our highly recommendation symbol : ( wsrm ) current price : o . 70 short term target price : 4 . 6 o 12 month target price : 8 . 9 o * * * news from the industry * * * * mining s - tocks have outperformed both the s & p 500 and the dow jones industrial average over the last three years . * profits by mining companies have doubled for the second year in a row . return on equity has increased nearly three - fold over the past two years * price waterhouse coopers calis for "" . . . another bumper year for the global mining industry in 2 oo 5 . "" they go on to say , "" the sustained upturn in commodity prices has caught investors ' attention , creating a dash for mining s - tocks . add the unprecedented profits and free cash flows and we have a very buoyant industry . "" for more information read , mine - enter the dragon , by price waterhouse coopers , located at pwcglobal . com disclaimer : information within this emai | contains "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , pians , projections , objectives , goais , assumptions or future events or performance are not statements of historical fact and may be "" forward | ooking statements . "" forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which couid cause actual resuits or events to differ materialiy from those presently anticipated . forward | ooking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" wiil , "" "" anticipates , "" "" estimates , "" "" believes , "" "" understands "" or that by statements indicating certain actions "" may , "" "" couid , "" or "" might "" occur . as with many micro - cap s - tocks , today ' s company has additional risk factors worth noting . those factors inciude : a | imited operating history , the company advancing cash to related parties and a shareholder on an unsecured basis : one vendor , a reiated party through a majority s - tockhoider , suppiies ninety - seven percent of the company ' s raw materials : reiiance on two customers for over fifty percent of their business and numerous reiated party transactions and the need to raise capital . these factors and others are more fully spelled out in the company ' s sec fiiings . we urge you to read the filings before you invest . the rocket stock report does not represent that the information contained in this message states ail materia | facts or does not omit a materia | fact necessary to make the statements therein not misieading . a | | information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shail be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can | ose al | your mone * y by investing in this stock . the publisher of the rocket stock report is not a registered investment advisor . subscribers shouid not view information herein as | egal , tax , accounting or investment advice . any reference to past performance ( s ) of companies are specialiy selected to be referenced based on the favorable performance of these companies . you wouid need perfect timing to achieve the resuits in the exampies given . there can be no assurance of that happening . remember , as aiways , past performance is never indicative of future results and a thorough due diligence effort , inciuding a review of a company ' s fiiings , shouid be completed prior to investing . in compiiance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discloses the receipt of twelve thousand doilars from a third party ( gem , inc . ) , not an officer , director or affiiiate sharehoider for the circulation of this report . gem , inc . has a position in the stoc * k they wi | | seil at any time without notice . be aware of an inherent confiict of interest resuiting from such compensation due to the fact that this is a paid advertisement and we are conflicted . ail factua | information in this report was gathered from pubiic sources , including but not | imited to company websites , sec fiiings and company press reieases . the rocket sto * ck report believes this information to be reiiable but can make no guarantee as to its accuracy or compieteness . use of the materia | within this email constitutes your acceptance of these terms .",1 +"Subject: fpa notice : ebay misrepresentation of identity - user suspension - section 9 - dear ebay member , in an effort to protect your ebay account security , we have suspended your account until such time that it can be safely restored to you . we have taken this action because your account may have been compromised . although we cannot disclose our investigative procedures that led to this conclusion , please know that we took this action in order to maintain the safety of your account . for instructions on getting your account reinstated , please click the button bellow : thank you for your patience and cooperation . regards , safeharbor departmentebay inc . ",1 +"Subject: search engine position be the very first listing in the top search engines immediately . our company will now place any business with a qualified website permanently at the top of the major search engines guaranteed never to move ( ex : yahoo ! , msn , alta vista , etc . ) . this promotion includes unlimited traffic and is not going to last long . if you are interested in being guaranteed first position in the top search engines at a promotional fee , please contact us promptly to find out if you qualify via email at searchl 1 @ telefonica . net . pe it ' s very important to include the url ( s ) if you are interested in promoting ! ! ! this is not pay per click . examples will be provided . this promotion is only valid in the usa and canada . sincerely , the search engine placement specialists if you wish to be removed from this list , please respond to the following email address and type the word "" remove "" in your subject line : search 6 @ speedy . com . pe",1 +"Subject: only our software is guaranteed 100 % legal . name - brand software at low , low , low , low prices everything comes to him who hustles while he waits . many would be cowards if they had courage enough .",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . all iisted software is availabie for immediate download ! no need to wait 2 - 3 week for cd deiivery ! just few exampies : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuil version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguaqe ! best reqards , lauraiee ",1 +"Subject: security alert - confirm your national credit union information - - > ",1 +"Subject: 21 st century web specialists jrgbm dear it professionals , have a problem or idea you need a solution for ? not sure what it will cost so that you can budget accordingly ? provide the details and we will be pleased to send you a free project scope quote that includes all the details you will need to know and the variables to consider . we would be glad to deliver cutting - edge solutions to your it challenges at a quality that is equivalent or superior to that offered by domestic companies , but at a fraction of the cost of domestic development . we represent a number of well - established companies staffed with over 1000 qualified software developers with a record of successfully completing hundreds of small and midsize projects and tens of wide - scale projects for fortune 100 corporations . from business analysis and consulting to web design , from coding to testing and porting we provide a full cycle of it services ! working both on - site and offshore our specialists develop and integrate internet / intranet / extranet applications business applications erp , crm systems e - business ( b 2 b , b 2 c ) solutions mobile and wireless applications desktop applications data warehouses security and cryptography systems and more . . . our quality is based on developed partnerships with leading it technology providers , modern project and quality management and exclusive human resources ! for more info . . . click here ! ! ! please include your phone number , and we will be happy to call you ! cost effective it solutions ! experienced teams of specialists ! fair rates ! free quotes ! ! here is a list of some of the technologies and platforms that our specialists employ to bring you only the best , most efficient and cost - effective solution : application platforms . : . net . : java 2 ee . : ibm websphere suite . : lotus domino . : bea weblogic . : coldfusion operating systems . : windows , . : unix . : ibm databases . : ms sql . : oracle . : db 2 . : foxpro . : informix . : sybase it standards . : activex , com . : asp . : corba . : jdbc . : odbc . : wap , wml for more info . . . click here ! ! ! please include your phone number , and we will be happy to call you ! if you received this letter by mistake please click unsubscribe uce transmissions can be stopped at no cost to the recipient by sending a reply with the word ' remove ' in the subject line . ( ref . u . s . senate bill 1618 , title # 3 , section 301 ) ",1 +"Subject: any med for your girl to be happy ! your girl is unsatisfied with your potency ? don ' t wait until she finds another men ! click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and guaranteed effect ! here you buy it riqht from warehouse ! the store is verified by bbb and approved by visa ! ",1 +"Subject: re : wearable electronics hi my name is jason , i recently visited www . clothingplus . fi / and wanted to offer my services . we could help you with your wearable electronics website . we create websites that mean business for you ! here ' s the best part , after we recreate your site in the initial setup , we give you a user - friendly master control panel . you now have the ability to easily add or remove copy , text , pictures , products , prices , etc . when you want to ! i would be happy to contact you and brainstorm some ideas . regards - jasononline store creatorstoll free : 800 - 658 - 9978 ext : 206 http : / / www . . com",1 +"Subject: top - level logo and business identity corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your logo , business stationery or website done riqht now ! fast turnaround : you wiil see severai ioqo variants in three business days . satisfaction quaranteed : we provide unlimited amount of changes ; you can be sure : it wiil meet your needs and fit your business . fiexible discounts : iogo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: your trusted source for prescription medication . best prescription generic meds 4 less . anger is one of the sinners of the soul . write what you like ; there is no other rule . life ' s most urgent question is : what are you doing for others ? gold for friends , lead for foes .",1 +"Subject: rely on us for your online prescription ordering . your in - home source of health information a conclusion is the place where you got tired of thinking . a man paints with his brains and not with his hands . a poet more than thirty years old is simply an overgrown child . one should always play fairly when one has the winning cards .",1 +"Subject: guzzle like a fountain spur m rocks , our customer speaks : "" my girlfriend and me have been really enjoying making our own homemade erotic films . we get off on pretending to be like porn stars even though it will only ever be the two of us that see them . the one thing that was really missing from our movies was the money shot and to be frank i was lucky if my money shot was worth a dollar . i ordered spur - m and now all of our home movies end in a gigantic cum shot that would make even veteran porn stars jealous . thanks spur - m for helping to spice up our sex life ! "" anthony , ky "" spur - m really works . it has improved my sperm motility and morphology to the point that my girlfriend is now pregnant . this fertility blend really does help to improve male fertility and sperm quality ! "" adam j . , san francisco , usa http : / / karla . chorally . com / spur / ? sheep need not be disturbed ? go here http : / / romano . chorally . com / rm . php",1 +"Subject: are you losing ? the answer would amaze you ! ? connecting your business to the world wide web ? how many shoppers are you losing ? the figure wouldamaze you ! how are youlosing them ? they cannot findyour web site ! a simple equation notbeing found = losing new customers ! we can change that ! for only $ 119 . 97 we will submit your website to over 360 major search engines around the world ( see full list on our web site . ) but more than that we will research the best and most effective meta tags and keywords to use on your web site so that you will rise in the search enginelistings so new customers can find you ! don ' t lose any more customers ! let us professionally manage the submission of your web site and get itfound and seen on the worlds search engines ! click onthis link click here ! to discover thepower of ? connecting your business to the world wide web ? ",1 +"Subject: hi how to save o improper n your medlcatlons over 70 % . pha oviform rmzmail shop - successfull and proven way to save y lansquenet our mon cribriform ey . pothouse v a excepting g a iceblink l l warmish u bacchic l nonary ra coruscate cl i placatory s necrology val perish m andmanyother . * best prl peeved ces * worldwide sh potted lpplng * total confidentiaii laughter ty * over 5 miliion custom slicker ers have a nice countermine day !",1 +"Subject: 25 mg did thhe trick ho receivable w to save on your medlcatlons over 70 % . pharmz ibidem mail shop - successfu panoramic ll and proven way to save your mone pelagian y . incommodious v a forsaken g a poseur l l foreshown u inornate l r proposer ac tangential l banian is commissioned val austerity m andmanyother . * best p rousing rlces * panjandrum worldwide shlpplng * total confident televisional iaiity * over 5 miliion unbloody customers ha bionics ve a nice day !",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it right now ! . ",1 +"Subject: want to accept credit cards ? 126432211 aredit cpproved no cecks do it now 126432211",1 +"Subject: [ ilug ] seeking your partnership dear partner to be , first , i must apologise to you for using this medium to communicate to you about this project . i am a highly placed official of government of nigeria and also a founding member of the ruling party in power now , the peoples democratic party ( pdp ) . my committee - the niger delta development corporation ( nddc ) - which is in charge of managing and supervising the disbursement of oil sales revenues for the nigerian government . the revenues under our control runs into several hundred of millions of dollars monthly . my self and other colleagues in the nddc are currently in need of a foreign partner with whose bank account we shall transfer the sum of forty nine million five hundred thosand united states dollars ( $ 49 . 5 m ) . this fund accrued to us as commission for oil sales contracts handled under our supervision . the fund is presently waiting in the government account named cbn / fgn independent revenue account number 400 - 939134 with j . p . morgan chase bank , new york . you can do your independent verification of this . however , by virtue of our position as civil servants and members of the nddc , we cannot acquire this funds in our name . this is because as top civil servants , we are not allowed by law of the land to own or operate bank accounts outside our country for now . i have been delegated as a matter of trust by my colleagues , to look for an overseas partner in whose account we would transfer the fund hence the reason for this mail . we shall be transferring the money to your account with your company as we shall present your company as a registered foreign company in nigeria and you are been paid for a contract which you executed for our country through the nddc and any other federal ministry that we decide to use to siphon the funds through . for your support and partnership , please reply me to negotiate your fees or the percentage you wish to be paid when the funds arrive your bank account . you must however note that this transaction , with regards to our disposition to continue with you , is subject to these terms . firstly , our conviction of your transparency . secondly , that you treat this transaction with utmost secrecy and confidentiality . finally and above all , that you will provide an account that you have absolute control over . the transaction , although discrete , is legitimate and there is no risk or legal disadvantages either to ourselves or yourself now or in the future as we have put in place perfect mchineries that will ensure a hitch free transfer into your account upon acceptance . the transfer will be effected to your account within ten - fourteen ( 10 - 14 ) working days as soon as we reach an agreement and you furnish me with a suitable bank account and company name and address with all your contact numbers including fax number . i am looking forward to doing business with you and do solicit your confidentiality in this transaction , please mail your response to me . yours faithfully , anderson k . eseimoku - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: [ ilug ] guaranteed to lose 10 - 12 lbs in 30 days 10 . 206 1 ) fight the risk of cancer ! 2 ) slim down - guaranteed to lose 10 - 12 lbs in 30 days 3 ) get the child support you deserve - free legal advice 4 ) join the web ' s fastest growing singles community 5 ) start your private photo album online ! have a wonderful day , offer manager prizemama if you wish to leave this list please use the link below . - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: re : just to her . . . mdaemon has indentified your message as spam . it will not be delivered . from : projecthoneypot @ projecthoneypot . org to : s . denham @ capitalspreads . com subject : * * * spam * * * score / req : 25 . 38 / 08 . 00 - just to her . . . message - id : yes , hits = 25 . 4 required = 8 . 0 tests = ab _ uri _ rbl , html _ 50 _ 60 , html _ fontcolor _ red , html _ message , mime _ html _ only , spamcop _ uri _ rbl , ws _ uri _ rbl autolearn = no version = 2 . 64 * * * * * * * * * * * * * * * * * * * * * * * * * * 0 . 1 html _ fontcolor _ red body : html font color is red * 0 . 2 html _ 50 _ 60 body : message is 50 % to 60 % html * 0 . 1 mime _ html _ only body : message only has text / html mime parts * 0 . 0 html _ message body : html included in message * 8 . 0 spamcop _ uri _ rbl uri ' s domain appears in spamcop database at sc . surbl . org * [ bjefladghikm . extra - m . info is blacklisted in uri ] [ rbl at multi . surbl . org ] * 9 . 0 ws _ uri _ rbl uri ' s domain appears in ws database at ws . surbl . org * [ bjefladghikm . extra - m . info is blacklisted in uri ] [ rbl at multi . surbl . org ] * 8 . 0 ab _ uri _ rbl uri ' s domain appears in ab . surbl . org * [ bjefladghikm . extra - m . info is blacklisted in uri ] [ rbl at multi . surbl . org ] : message contains [ 1 ] file attachments",1 +"Subject: ms 2003 software titles available for download opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 adobe photoshop 9 . 03 windows xp pro 4 adobe acrobat 7 pro 5 flash mx 20046 corel draw 127 norton antivirus 20058 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe illustrator 11 see more by this manufacturer microsoft symantec adobe customers also bought these other items . . . microsoft office professional edition * 2003 * microsoftchoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 86 % ) availability : available for instant download ! coupon code : 3 ff 9 kuc sales rank : # 1 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 15177 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobechoose : view other titles list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : zxghlajf sales rank : # 2 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1148 reviews . write a review . microsoft windows xp professional or longhorn edition microsoftchoose : view other titles list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ho 7 urce sales rank : # 3 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 195546 reviews . write a review . adobe acrobat professional v 7 . 0 adobechoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 85 % ) availability : available for instant download ! coupon code : pl 92 bohsg sales rank : # 4 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 156489 reviews . write a review .",1 +"Subject: failure notice hi . this is the qmail - send program at gigas . keys . be . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : this address no longer accepts mail . - - - below this line is a copy of the message . return - path : received : ( qmail 10006 invoked from network ) ; 19 jul 2005 10 : 57 : 35 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 220 . 162 . 170 . 32 ) by gigas . keys . be with smtp ; 19 jul 2005 10 : 57 : 35 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24815823 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ deboel . net user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: claim your free $ 1000 home depot gift card . claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) . by exclusiverewards udexhoyp",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visual identity . logodentity offers creative custom design of ioqos , stationery and web - sites . under our carefui hand these powerful marketing toois wiil brinq a breath of fresh air into your business and make you stand out amonq the competitors . you are just a click away from your future success . ciick here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: branded softs roxio easy media creator 7 . 0 - $ 19 . 95 http : / / broadcasters . wxget . com / i sing all kinds . when a man cannot choose he ceases to be a man . the more minimal the art , the more maximum the explanation .",1 +"Subject: extra time - last 5 - 10 times longer hello , did you ejaculate before or within a few minutes of penetration ? premature ejaculation occurs when you ejaculate too quickly and without control . it occurs before or shortly after penetration . premature ejaculation interferes with the sexual pleasure of both you and your partner . it causes feelings of guilt , embarrassment , frustration , and depression . extra - time is the only male sexual performance formula that , not only stops premature ejaculation , but actually "" cures "" it . extra - time is the only product that allows "" you "" to control when you ejaculate . - non - hormonal herbal therapy . - acts locally on the sex organs . - regulates process of ejaculation . - acts through neuro - endocrine pathway . - acts on the high centers of emotion in the brain . look here : http : / / tabboulehs . net / et / ? meds no thanks : http : / / tabboulehs . net / rr . php",1 +"Subject: get the best price on your next car ! exclusive offer from 24 x 7 emessaging search for a pre - owned vehicle buy a used car online you ' ve received this message because you have signed up to receive offers from one of our carefully selected marketing partners . 24 x 7 emessaging is the internet ' s best source of exciting new offers and discounts . if you no longer wish to receive these offers , please follow the unsubscribe instructions at the bottom . to unsubscribe from our mailing list , please click here ",1 +"Subject: bro check out this awesome new product wish you could be better ? http : / / www . gretan . com / ss / a cheerful mind is a vigorous mind . war is god ' s way of teaching americans geography . all human power is a compound of time and patience . strive for excellence , not perfection . if you ' re killed , you ' ve lost a very important part of your life .",1 +"Subject: hidden gems help get a leg up on the market homeland security investments the terror attacks on the united states on september 11 , 2001 have changed the security landscape for the foreseeable future . both physica | and | ogical security have become paramount for a | | industry segments , especiaily in the banking , nationa | resource and government sectors . according to giga , a wholiy owned subsidiary of forrester research , woridwide demand for information security products and services is set to eclipse $ 46 b by 2 oo 5 . homeiand security investments is a newsietter dedicated to providing our readers with information pertaining to investment opportunities in this | ucrative sector . as we know , events reiated to homeland security happen with | ightning speed . what we as investors can do is position ourselves in such a way as to take advantage of the current trends and be ready to capitalize on events which have yet to happen . homeland security investments is here to heip our readers do just that . with this in mind , it is with great excitement that we present vinobie , inc . this stock is expected to do big things in both the near and long terms . symbol : vnbl . ob current price : 0 . 08 short term target price : o . 35 12 month target price : 1 . 2 o * * * why we beiieve vnbl . ob wiil give big returns on investment * * * * at this time much of vnbl ' s focus is on rfid ( radio frequency identification ) technology . this is technology which uses tiny sensors to transmit information about a person or object wirelessly . * vnbl is already an industry pioneer in the rfid personal location technoiogy . * vnbl is deveioping a form of rfid technoiogy which a | | ows companies and governments to wirelessiy track their assets and resources . such technoiogy has huge potentia | in the protection and transportation of materials designated "" high risk "" were they to fal | into the wrong hands . * vnbl works on integration of the two afore mentioned systems in order to create "" high security space "" in locaies where it is deemed necessary . locations which may take advantage of such systems are airports , sea ports , mines , nuciear faciiities , and more . * as with all stocks , news drives the short term price . fresh news has made vnbl a hot buy . news on vnbl malibu , calif . - - ( business wire ) - - june 16 , 2005 - - vinoble , inc . ( otcbb : vnbl - news ) , a hoiding company seeking to identify | ong - term growth opportunities in the areas of homeiand security , security information systems , and other security services , announced today that it plans to offer products and services that wil | assist in the automation of the identification and control of equipment , assets , tools , and the reiated processes used in the oi | & gas and petrochemica | industries . although sma | | wireiessiy networked rfid sensors can monitor machines and equipment to detect possibie probiems before they become serious , they can also deliver safety features within oil welis . oi | maybe trapped in different | ayers of rock , along with gas and water . detection of specific liquids can assist equipment in operating within a specific precise opportune moment to ensure certain adverse conditions do not occur , such as a wel | fiiling with water . as with other rf based technoiogy applications , rfid can also provide the safe transit of materiais by only the authorized handier , and | imit the entry of personne | to specific | ocations . ensuring personnel safety is essential , should there be an emergency at a facility , rfid tags would enabie the customer to track and evaiuate its empioyee ' s safety and / or danger . this appiication technology requires product and hardware that can operate in harsh and potentiaily hazardous conditions , but gives vaiuabie safety to the resources and assets that are vita | to the customer . rfid can aiso assist the customer ' s suppiy chain by tracking oil , gas , and chemica | products from extraction to refining to the saie at the retai | level . vinobie ' s viewpoint as previously stated is that these appiications are more than just a vaiuable too | to the mining industry , but as a protective measure of our country ' s natural resources and commodities against threat . preservation of these fueis and resources is important to the safety of u . s . industry and economy . the company beiieves that such offering service and technology application in the oil & gas and petrochemica | industry wiil further position vinoble in a rapidly expanding industry while taking advantage of access to the increasing capita | and gioba | spending that the company will require for growth . the company ' s goal is to also provide a much - needed service at a cost manageable to even the sma | | est of businesses that can ' t afford to do without the safety of its personne | and assets in this current state of constant threat . this is outstanding news . the growth potentia | for this company is exceptiona | . in an already hot industry , vnbl . ob stands out as a truiy innovative pioneer . we see big things happening to this stock . information within this email contains "" forward | ooking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or invoive discussions with respect to predictions , expectations , beliefs , pians , projections , objectives , goais , assumptions or future events or performance are not statements of historica | fact and may be "" forward | ooking statements . "" forward looking statements are based on expectations , estimates and projections at the time the statements are made that invoive a number of risks and uncertainties which couid cause actua | resuits or events to differ materiaily from those presently anticipated . forward | ooking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" wil | , "" "" anticipates , "" "" estimates , "" "" believes , "" "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . as with many micro - cap stocks , today ' s company has additiona | risk factors worth noting . those factors inciude : a limited operating history , the company advancing cash to related parties and a sharehoider on an unsecured basis : one vendor , a related party through a majority stockhoider , supplies ninety - seven percent of the company ' s raw materiais : reliance on two customers for over fifty percent of their business and numerous reiated party transactions and the need to raise capita | . these factors and others are more fully spe | | ed out in the company ' s sec filings . we urge you to read the filings before you invest . the rocket stock report does not represent that the information contained in this message states all materia | facts or does not omit a materia | fact necessary to make the statements therein not misleading . al | information provided within this emai | pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises ail readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report sha | | be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose a | | your money by investing in this stock . the pubiisher of the rocket stock report is not a registered investment advisor . subscribers should not view information herein as lega | , tax , accounting or investment advice . any reference to past performance ( s ) of companies are speciaily selected to be referenced based on the favorabie performance of these companies . you would need perfect timing to achieve the results in the examples given . there can be no assurance of that happening . remember , as aiways , past performance is never indicative of future resuits and a thorough due diligence effort , inciuding a review of a company ' s fiiings , shouid be completed prior to investing . in compliance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discloses the receipt of twelve thousand dollars from a third party ( gem , inc . ) , not an officer , director or affiiiate sharehoider for the circulation of this report . gem , inc . has a position in the stock they wiil sel | at any time without notice . be aware of an inherent confiict of interest resuiting from such compensation due to the fact that this is a paid advertisement and we are confiicted . ail factual information in this report was gathered from pubiic sources , inciuding but not | imited to company websites , sec filings and company press reieases . the rocket stock report believes this information to be reiiabie but can make no guarantee as to its accuracy or compieteness . use of the materia | within this emai | constitutes your acceptance of these terms .",1 +"Subject: 10 minutes before sex , lasts for 24 - 36 hours legal , prescription medications under the essential guidance of licensed medical under every stone lurks a politician . experience is the name everyone gives to their mistakes . without music , life would be a mistake .",1 +"Subject: wish you could be better ? penis growth extreme http : / / www . siratu . com / ss / cruelty is like hope : it springs eternal . amusement is the happiness of those who cannot think . to each his own . ( suum cuique ) always forgive your enemies ; nothing annoys them so much . bad news goes about in clogs , good news in stockinged feet .",1 +"Subject: 1000 full color brochures 335 the tsa design products & ideas expo show is just around the corner and if you are going to be an exhibitor you will need something to hand out to your prospective customers . wiley printing wants to help you do that by offering great prices on quality print collateral . here are a few examples : 1 , 000 business cards for $ 55 - full color , uv coated with 14 pt . paper stock 1 , 000 postcards for $ 150 - full color , uv coated with 14 pt . paper stock 1 , 000 brochures for $ 335 - full color , two sided 100 # gloss text if you are interested in any of these offers or if you are looking for something a little different please contact us through one of the methods below . wiley print 4650 cole ave # 105 dallas , tx 75205 214 . 443 . 0908 phone 214 . 443 . 0308 fax info @ wileyprint . com note : this is the first and last time wiley print will ever send you an email . however , if you would like to opt out please reply to this email with remove me in the subject line .",1 +"Subject: search for the best and cheapest pharmacy online save 80 % over the brandnames like viagra , cialis and propecia anatomy is destiny . oh , what a dear ravishing thing is the beginning of an amour ! it is not every question that deserves an answer .",1 +"Subject: failure notice hi . this is the qmail - send program at mail - 03 . cdsnet . net . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , i couldn ' t find any host named bb . internetcds . com . ( # 5 . 1 . 2 ) - - - below this line is a copy of the message . return - path : received : ( qmail 50355 invoked by alias ) ; 19 jul 2005 10 : 58 : 51 - 0000 delivered - to : nic - notify @ internetcds . com received : ( qmail 50352 invoked from network ) ; 19 jul 2005 10 : 58 : 51 - 0000 received : from unknown ( helo localhost ) ( 127 . 0 . 0 . 1 ) by mail - 03 . cdsnet . net with smtp ; 19 jul 2005 10 : 58 : 51 - 0000 received : from mail - 03 . cdsnet . net ( [ 127 . 0 . 0 . 1 ] ) by localhost ( mail - 03 . cdsnet . net [ 127 . 0 . 0 . 1 ] ) ( amavisd - new , port 10024 ) with smtp id 46679 - 09 for ; tue , 19 jul 2005 03 : 58 : 51 - 0700 ( pdt ) received : ( qmail 50346 invoked from network ) ; 19 jul 2005 10 : 58 : 50 - 0000 received : from yahoobb 220056020109 . bbtec . net ( helo mailwisconsin . com ) ( 220 . 56 . 20 . 109 ) by mail - 03 . cdsnet . net with smtp ; 19 jul 2005 10 : 58 : 50 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 09360462 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : nic - notify @ internetcds . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal x - virus - scanned : by amavisd - new at internetcds . com soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: claim your free home depot gift card - a $ 1000 value . claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) . by exclusiverewards qprkelmv",1 +"Subject: breaking biotech news hey , i thought you might want to take a look at gtha could genethera become the next darling of biotech ' as they announce collaborations with industry giant beckman coulter ? breaking biotech news : genethera inc . to collaborate with biotech giant beckman coulter inc . - genethera news release july 11 th , 2005 . genethera inc . ( otc . bb : gtha ) a molecular biotech company located in wheat ridge , co . granted first right of refusal to beckman coulter , inc . ( nyc : bec $ 63 . 34 ) to license genethera ' s patented technology for developing live - animal ' genetic diagnostic tests . this is a significant milestone for genethera . beckman coulter is one of the world ' s leading manufacturers of biomedical testing systems , tests and supplies . our collaboration will unite the expertise of beckman coulter with the cutting edge technology of genethera . - dr . antonio milici , m . d . , ph . d . genethera inc . genethera provides genetic diagnostic solutions for the veterinary and agricultural industries with future plans to include the healthcare industry . the company was formed to realize the commercial potential of molecular diagnostic assays using roche ' s f - pcr technology to detect the presence of infectious disease from the blood of animals , particularly live animals . this platform enables genethera to offer tests that are presently not available from any other technology . future plans include all infectious disease potentially affecting domesticated livestock as well as wildlife intended for human consumption with priority being given to mad cow , johne ' s and foot and mouth diseases in cattle . genethera has successfully developed the ability to detect both mad cow disease and chronic wasting disease ( cwd ) also known as mad deer or elk . free information reguarding stocks ! e - mail first name last name phone number view full report view full report company : genethera inc . symbol : gtha exchange : otc . bb recent price : $ 0 . 90 outstanding shares : 21 mil website : www . genethera . net prior to the 1 st case of mad cow , u . s . beef exports in 2003 in the us were valued at near $ 6 billion . most of the export dollars have since been lost with the international us beef ban imposed in 2004 . over 90 million cattle are in feedlots in the u . s . over 35 million cattle have been slaughtered in the u . s . annually beckman coulter , inc . is a leading manufacturer of biomedical testing instrument systems , tests and supplies that simplify and automate laboratory processes . spanning the biomedical testing continuum - - from pioneering medical research and clinical trials to laboratory diagnostics and point - of - care testing - - beckman coulter ' s 200 , 000 installed systems provide essential biomedical information to enhance health care around the world . the company , based in fullerton , calif . , reported 2004 annual sales of $ 2 . 4 billion with 64 percent of this amount generated by recurring revenue from supplies , test kits and services . for more information , visit www . beckmancoulter . com . we are looking forward to working with genethera to identify commercial applications of their technology . - chris neary , general manager , prion business center , beckman coulter , inc . in most countries around the globe , the discovery of a cow with mad cow disease ' leads to the immediate slaughter of hundreds , even thousands of cattle out of wide spread fear of disease spread and the need to complete disease testing on the dead animals . costly international beef recalls ' are common since mad cow ' testing ( until now ) has only been conducted after the slaughter process . genethera ' s live animal ' blood test could lead to halting of mass slaughters and widespread panic , while saving the industry hundreds of millions of dollars each year . through the testing of a single blood sample , genethera could end the need to slaughter entire herds of cattle and other animals for disease testing - saving the industry hundreds of millions of dollars each year . currently funded by an institutional money manager in southern california , genethera has plans to open laboratories worldwide to meet this exploding bse testing demand . you want to invest in the dna revolution ? don ' t wait for customized drugs , which are years away . buy shares in a company using dna for diagnostic work . forbes - good genes , kerry a . dolan , may 16 , 2005 new patented tests created with information gleaned from genome mapping have injected new life and higher margins ( near 75 % ) into the business . the $ 2 . 5 billion molecular diagnostics industry is expanding at a 15 % annual rate , according to consulting firm leomics associates of emerson , n . j . genethera ( gtha ) : making their mark in biotech genethera has just recently teamed up with biotech giant beckman coulter inc . they are the first to market with a blood test for mad cow disease on live cattle they have the ability to detect numerous infectious diseases utilizing genetic methods from the blood of a live animal they are the first to market with a blood test for detecting cwd they are presently developing a therapeutic vaccine for cwd and mad cow disease using rna interference technology they are currently developing a blood test using the same platform for breast and prostate cancer detection with their strategic partner xpng ( xpention genetics inc . ) genethera could end beef recalls ' and potentially the slaughter of millions of animals around the globe while saving the industry hundreds of millions of dollars each year currently funded by an institutional money manager in southern california , genethera has plans to open laboratories worldwide to handle this growing bse testing demand . genethera could generate revenues over $ 13 million for every 1 % of cattle tested in the usa alone international testing figures would be staggering . genethera technology : genethera ' s business is based on its integrated technology platform ( itp ) that combines a proprietary diagnostic solution called gene expression assay ( gea ( tm ) ) with purivax ( tm ) , its system for analyzing large - scale dna sequencing . the first part of this platform is the ongoing development of molecular diagnostic assays solutions using real time fluorogenic polymerase chain reaction ( f - pcr ) technology to detect the presence of infectious disease from the blood of live animals . the second part of the itp is the development of therapeutic vaccines using rna interference technology . it also allows for the efficient , effective , and continuous testing , management and treatment of animal populations . these facts distinguish the technology from any alternative testing and management methodology available to agriculture today - - all of which require the destruction of individual animals and even entire herds . our testing and data analysis processes also allow us not only to separate infected from clean animals , but also to gain knowledge vital to development of preventative vaccines . genethera inc . is committed to providing global access to cutting edge biotechnology services to fellow scientists in academia , the pharmaceutical industry , and the biotechnology industry . primarily , genethera ' s expertise focuses on technology relevant to animal and human immunotherapy . genethera is dedicated to furnishing dependable , high quality , cost - effective and prompt client consulting services . these services are backed by the cumulative experiences of greater than 100 years of research and development in both government and industry by genethera ' s senior scientists . genethera develops a commercial - scale implementation of adenovector purification process to support rd material production . furthermore , genethera evaluates and tests commercially available expression vectors and incorporates them into its vector repertoire . these technologies are well established within the repertoire of genethera ' s scientific staff . genethera can uniquely detect and treat a variety of diseases in animals while they are still alive . the company provides genetics - based diagnostic and vaccine solutions to meet the growing demands of today ' s veterinary industry and tomorrow ' s agriculture and healthcare industries . the company is organized and operated both to continually apply its scientific research to more effective management of diseases and , in so doing , realize the commercial potential of molecular biotechnology . the core of genethera ' s operation is the ongoing development of molecular diagnostic assays using real time fluorogenic polymerase chain reaction . ( f - pcr ) technology uses live animal blood to detect the presence of infectious diseases and for the development of vaccines for such blood born diseases . it also allows for the efficient , effective , and continuous testing , management and treatment of animal populations . these facts distinguish the technology from any alternative testing and management methodology available to agriculture today - - all of which require the destruction of individual animals and even entire herds . our testing and data analysis processes also allow us not only to separate infected from clean animals , but also to gain knowledge vital to development of preventative vaccines . to date , genethera has successfully developed the assay ability to detect mad cow and chronic wasting disease , a disease affecting elk and deer in north america . diagnostic assays for e . coli ol 57 : h 7 and johnne ' s disease are in the final stages of development . vaccines for e . coli ol 57 : h 7 and johnne ' s disease , both of which are diseases affecting cattle , are in advanced stages of development . in the future , the company plans to expand assay application research to a wide range of diseases / animals , the immediate targets being mad cow , hoof mouth , west nile and newcastle . genethera can detect bse using the companies patented live animal blood test that evaluates the e . d . r . f . gene sequence . the e . d . r . f . gene is proven to decrease dramatically before any tse infection is noticeable in a live animal or human . the patent gtha holds is broad based and can detect all tse diseases including mad cow ( bse ) in cattle , cwd in elk deer and creutzfeld - jacobs in humans the company ' s patented test can detect these diseases faster than any other method developed in the marketplace and at far less a cost . the test can also be used on a mass scale using roche f - pcr , dna analyzing robotics equipment . genethera can analyze over 2000 blood samples a day with one f - pcr machine and a single technician . the project will prove highly profitable at approx $ 4 . 00 per test when wide scale commercialization is under way . a multi - billion dollar , international demand for commercial mad cow testing has emerged around the globe . japan conducted 3 million post - mortem rapid mad cow tests last year alone . they used the western blot developed by prionics ag in swizterland and bio - rad ' s rapid test . costs are between $ 20 and $ 40 dollars per test . most importantly , other tests in the marketplace cannot detect the disease until the animal has been killed . testing through post - mortem brain tissue exams is extremely labor intensive and costly . japan spent between $ 60 million - $ 120 million on 3 million post mortem rapid mad cow tests in 2004 . genethera ' s simple blood test can be collected using their patented field collection system . the sample is then mailed to the lab for testing . the company also stated in their recent 10 k that they are currently in negotiations with strategic testing partners that we believe will absorb the costs of commercializing our live animal mad cow test . management : dr . tony milici - chairman of the board , president ceo dr . milici is a ph . d . in experimental hematology and m . d . in medicine and surgery , receiving degrees from university of rome ( italy ) and stanford university . his specialties include : molecular biology / biotechnology , gene therapy / molecularly oncology and molecular . he has had extensive post - graduate training that includes a fellowship in the department of clinical immunology with the university of texas m . d . anderson cancer center and visiting fellow at university of rome ' s laboratory of cellular immunology and biochemistry . among his post - graduate activities , dr . milici was an assistant professor at the medical college of georgia ' s department of pharmacology toxology as well as an assistant biochemist in the department of molecular pathology at the university of texas m . d . anderson cancer center in houston , tx . prior to founding genethera , inc . , dr . milici was president ceo of genetrans , inc . based in augusta , ga . , a diagnostics laboratory . for dr . milici , genethera is a realization of an ambition to demonstrate the commercial potential of molecular biotechnology . dr . thomas j . slaga - board member dr . slaga is a ph . d . in physiology and biophysics with undergraduate degrees in biology / chemistry . since 1999 , dr . slaga has served as an adjunct professor in the department of biochemistry molecular biology at university of colorado ' s health sciences center located in denver , co . dr . slaga ' s career is steeped in research and development roles and affiliations concentrating on cancer . examples include : chair / scientific director for cancer causation and prevention , the amc cancer research center located in denver , co ; director , professor of biochemistry at the university of texas m . d . anderson cancer center ( science park - research division ) located in smithville , tx ; and group leader and research staff member , skin carcinogenesis and tumor promotion , biology division of the oak ridge national laboratory in oak ridge , tn . dr . slaga ' s blend of scientific and management experience lends to genethera ' s board an important dimension vis - - vis its development opportunities . mr . richard w . bryans , jr . - board member - general counsel mr . bryans is an attorney at law in denver , co . a graduate of regis university in business administration / economics , mr . bryans went on to graduate from the university of denver college of law and has been practicing law in denver for over 12 years . mr . bryans provides the genethera board with the much - valued legal perspective to benefit a young , publicly traded company . additionally , the company will be able to take advantage of mr . bryans ' legal experience in the important area of vaccine licensing that is integral to the future of genethera . to join market movers mailings click here to find out more . tw inc . 4636 hidden forest dr . sarasota fl , 32430 disclaimer : this publicly distributed email report of otc special situations report , a publication of otc growth stock watch , is a sponsored advertisement . this paid advertising issue of otc growth stock watch does not purport to provide an analysis of any company ' s financial position and is not in any way to be construed as an offer or solicitation to buy or sell any security . otc growth stock watch is a paid advertiser . xpention genetics inc . is the featured company . the distribution costs of this report to new subscribers , eighty thousand dollars were funded by tw inc . in an effort to create investor awareness of xpention genetics , inc . tw inc . is not a broker - dealer nor are they an investment advisor . market movers , otc growth stock watch , otc special situations report , nor is geoffrey eiten to be considered a broker - dealer though they are investment advisors . it is anticipated that this report will generate new subscriptions for growth stock watch . neither otc growth stock watch nor geoffrey eiten , the reviewer [ or analyst ] , received any compensation for this report , but both expect to receive an unknown amount of revenue from new subscriptions from the subscription offer contained herein . this report , including the opinions expressed and the statements made within , is for informational and advertising purposes only and should not be construed as investment advice and do not constitute an offer to sell any securities , and it is not soliciting an offer to buy any securities in any state or other jurisdiction where the offer or sale is not permitted . readers should consult with their own professional investment , tax and portfolio advisors before making any investment decision and should independently verify all information herein . the information used to prepare this report is believed to be from reliable sources , but no representation is made as to the accuracy or completeness of such information . investment in securities carries a high degree of risk and involves risks and uncertainties which may result in investors ' losing all of their invested capital . past performance does not guarantee future results . the information contained herein contains forward - looking statements , within the meaning of section 27 a of the securities act of 1933 and section 21 e of the securities exchange act of 1934 . forward - looking statements are based upon expectations , estimates and projections at the time the statements are made and involve risks and uncertainties that could cause actual events to differ materially from those anticipated . forward - looking statements may be identified through the use of words such as expects , will , anticipates , estimates , believes , or by statements indicating certain actions may , could , should , or might occur . any statements that express or involve predictions , expectations , beliefs , plans , projections , objectives , goals or future events or performance may be forward - looking statements . factors that could cause actual results to differ materially include but are not limited to adverse economic conditions , intense competition , lack of meaningful research results , inadequate capital , termination of contracts or agreements , adverse publicity and news coverage , inability to carry out research , development and commercialization plans , loss or retirement of key executives and research scientists , and other risks detailed in the company ' s reports filed with the securities and exchange commission . more complete information about xpention genetics , inc . is available from the website of the securities and exchange commission , at http : / / www . sec . gov , and copies of its filings may be read without charge at and copies obtained at prescribed rates from the public reference facilities of the commission , at 450 fifth street , nw , washington , dc 20549 . media matrix 7025 county rd . , 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: prop 0 sal dear siobhan _ riskin our company will place any business with a qualified website permanently at the top of the major search engines guaranteed never to move ( eg : yahoo ! , msn , alta vista , etc ) . if you are interested in being guaranteed first position in the top search engines at a promotional fee , please contact us at hannah @ speedy . com . pe please include the url ( s ) your are interested in promoting this is not pay per click examples will be provided . sincerely the search engine placement specialists if you wish to be removed , please respond to hannah @ speedy . com . pe and type the word : remove in your subject line",1 +"Subject: grab this quick triple at its low homeland security investments the terror attacks on the united states on september 11 , 2 ool have changed the security landscape for the foreseeabie future . both physica | and | ogical security have become paramount for ail industry segments , especially in the banking , nationa | resource and government sectors . according to giga , a wholiy owned subsidiary of forrester research , woridwide demand for information security products and services is set to eclipse $ 46 b by 2 oo 5 . homeiand security investments is a newsietter dedicated to providing our readers with information pertaining to investment opportunities in this | ucrative sector . as we know , events related to homeland security happen with | ightning speed . what we as investors can do is position ourseives in such a way as to take advantage of the current trends and be ready to capitalize on events which have yet to happen . homeland security investments is here to help our readers do just that . with this in mind , it is with great excitement that we present vinoble , inc . this stock is expected to do big things in both the near and | ong terms . symbo | : vnbl . ob current price : 0 . o 8 short term target price : o . 35 12 month target price : 1 . 2 o * * * why we believe vnbl . ob will give big returns on investment * * * * at this time much of vnbl ' s focus is on rfid ( radio frequency identification ) technoiogy . this is technoiogy which uses tiny sensors to transmit information about a person or object wireiessly . * vnbl is already an industry pioneer in the rfid personal location technology . * vnbl is developing a form of rfid technology which aliows companies and governments to wireiessiy track their assets and resources . such technoiogy has huge potentia | in the protection and transportation of materials designated "" high risk "" were they to fail into the wrong hands . * vnbl works on integration of the two afore mentioned systems in order to create "" high security space "" in | ocaies where it is deemed necessary . locations which may take advantage of such systems are airports , sea ports , mines , nuciear facilities , and more . * as with all stocks , news drives the short term price . fresh news has made vnbl a hot buy . news on vnbl malibu , calif . - - ( business wire ) - - june 16 , 20 o 5 - - vinoble , inc . ( otcbb : vnbl - news ) , a holding company seeking to identify long - term growth opportunities in the areas of homeiand security , security information systems , and other security services , announced today that it plans to offer products and services that wiil assist in the automation of the identification and control of equipment , assets , toois , and the related processes used in the oil & gas and petrochemica | industries . although smal | wireiessly networked rfid sensors can monitor machines and equipment to detect possibie problems before they become serious , they can aiso deiiver safety features within oi | wells . oi | maybe trapped in different | ayers of rock , along with gas and water . detection of specific | iquids can assist equipment in operating within a specific precise opportune moment to ensure certain adverse conditions do not occur , such as a weil fi | | ing with water . as with other rf based technoiogy applications , rfid can also provide the safe transit of materials by oniy the authorized handier , and limit the entry of personnel to specific locations . ensuring personne | safety is essential , shouid there be an emergency at a faciiity , rfid tags wouid enable the customer to track and evaluate its employee ' s safety and / or danger . this appiication technology requires product and hardware that can operate in harsh and potentialiy hazardous conditions , but gives vaiuable safety to the resources and assets that are vital to the customer . rfid can also assist the customer ' s suppiy chain by tracking oil , gas , and chemical products from extraction to refining to the saie at the retail | eve | . vinoble ' s viewpoint as previously stated is that these applications are more than just a valuable tool to the mining industry , but as a protective measure of our country ' s natural resources and commodities against threat . preservation of these fuels and resources is important to the safety of u . s . industry and economy . the company believes that such offering service and technology application in the oil & gas and petrochemical industry wil | further position vinoble in a rapidiy expanding industry whiie taking advantage of access to the increasing capital and giobal spending that the company will require for growth . the company ' s goal is to also provide a much - needed service at a cost manageabie to even the smallest of businesses that can ' t afford to do without the safety of its personne | and assets in this current state of constant threat . this is outstanding news . the growth potentia | for this company is exceptiona | . in an aiready hot industry , vnbl . ob stands out as a truly innovative pioneer . we see big things happening to this stock . information within this email contains "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goais , assumptions or future events or performance are not statements of historica | fact and may be "" forward | ooking statements . "" forward | ooking statements are based on expectations , estimates and projections at the time the statements are made that invoive a number of risks and uncertainties which couid cause actua | resuits or events to differ materia | | y from those presentiy anticipated . forward | ooking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" wil | , "" "" anticipates , "" "" estimates , "" "" beiieves , "" "" understands "" or that by statements indicating certain actions "" may , "" "" couid , "" or "" might "" occur . as with many micro - cap stocks , today ' s company has additiona | risk factors worth noting . those factors inciude : a limited operating history , the company advancing cash to related parties and a shareholder on an unsecured basis : one vendor , a reiated party through a majority stockhoider , supplies ninety - seven percent of the company ' s raw materials : reiiance on two customers for over fifty percent of their business and numerous reiated party transactions and the need to raise capital . these factors and others are more fuily spe | | ed out in the company ' s sec fiiings . we urge you to read the filings before you invest . the rocket stock report does not represent that the information contained in this message states a | | materia | facts or does not omit a material fact necessary to make the statements therein not misieading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises a | | readers and subscribers to seek advice from a registered professiona | securities representative before deciding to trade in stocks featured within this emai | . none of the materia | within this report shal | be construed as any kind of investment advice or soiicitation . many of these companies are on the verge of bankruptcy . you can lose ail your money by investing in this stock . the pubiisher of the rocket stock report is not a registered investment advisor . subscribers shouid not view information herein as | ega | , tax , accounting or investment advice . any reference to past performance ( s ) of companies are specia | | y selected to be referenced based on the favorabie performance of these companies . you wouid need perfect timing to achieve the resuits in the examples given . there can be no assurance of that happening . remember , as always , past performance is never indicative of future results and a thorough due diligence effort , inciuding a review of a company ' s fiiings , shouid be completed prior to investing . in compliance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discloses the receipt of twelve thousand do | | ars from a third party ( gem , inc . ) , not an officer , director or affiiiate sharehoider for the circuiation of this report . gem , inc . has a position in the stock they wil | se | | at any time without notice . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and we are confiicted . ail factua | information in this report was gathered from pubiic sources , inciuding but not limited to company websites , sec filings and company press reieases . the rocket stock report beiieves this information to be reiiable but can make no guarantee as to its accuracy or compieteness . use of the materia | within this email constitutes your acceptance of these terms .",1 +"Subject: yyyy , do you know the hgh differences ? hello , jm @ netnoteinc . comhuman growth hormone therapy lose weight while building lean muscle massand reversing the ravages of aging all at once . remarkable discoveries about human growth hormones ( hgh ) are changing the way we think about aging and weight loss . lose weightbuild muscle tonereverse aging increased libidoduration of penile erectionhealthier bones improved memoryimproved skinnew hair growthwrinkle disappearance visit our web site and learn the facts : click hereyou are receiving this email as a subscr - in amerig lisve yoursts , just click here",1 +"Subject: make big money with foreclosed real estate in your area trinity consulting 1730 redhill ave . , ste . 135 irvine , ca 92606 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - ) orderinq viaqra online is a very convinient , fast and secure way ! millions of people do it daily to save their privacy and money order here . . . ",1 +"Subject: letter from : daniel kabila letter from : daniel kabila investment offer . dear , in appreciation of your esteemed contact received through a reliable source and the choice of your country i wish to introduce myself , i am daniel kabila the son of the late drc president laurent desire kabila of the blessed memory . i know this letter might come to you as a surprise but i honestly do not intend to surprise you . i write this letter in respect of my intention to invest the sum of us $ 12 m ( twelve million united state dollars ) with you . i inherited this money from my mother . this money was got through the smuggling and sales of diamond and timber when my father was the head of state . my mother though not her legal wife used her privilege position to engage in the business of diamond and timber since she knows that her survival will depend on how much she can get out of the privilege situation . when my father was assassinated on 16 th jan . 01 by one of his bodyguards lt . rashidi kasereke through the conspiracy of some top army officers that wanted to topple him i escaped to sa because of the fear that i might be arrested by my half brother lt . general joseph kabila the present head of state . actually his mother and my mother are not in the best of relationship because of who among them will be the first lady tussle and this ultimately affected us their children . considering the relationship between sa and my country ' s new government , my mother advised me to leave for sa for security reason , while the funds were deposited with a security company abroad . on getting to there where i have been living since then as a political refugee i am seeking for a reliable foreigner who can assist me in moving this money out for safe banking and profitable investment . honestly i contacted you because i don ' t want to invest this money in here due to my status here as a political refugee . and moreover i wouldn ' t want to take risk because this money is all that i and my mother is depending on because my half brother has seized all my father ' s assets and money and left i and my mother empty handed without knowing about this funds deposited at the security company in abroad so that is why i decided that investing this money abroad should be the best investment for me . i will be honored if i can be given the privilege of investing this money with your help . in view of this plight , i expect you to be trustworthy and kind enough to respond to this distress call to save my mother and i from a hopeless future . and if you agree , i hereby agree to compensate your sincere and candid effort in this regard with 15 % of the total money and annual 5 % of the after tax returns on investment for the first three years . thereafter , the term shall be varied . 5 % for expenses , which may arise during the transaction ( fax and phone bills inclusive ) . when the money is moved into your discrete account , you will be allowed to draw 15 % in your favor , while the remaining 80 % will be invested meaningfully for our future if possible in your area of business and deterrents sectors of the economy in your country which are dividends yielding . whatever your decision is please reach me immediately through my email , and keep this letter tight secret for the interest of my family . best regards , daniel kabila",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . aii iisted software is available for immediate downioad ! no need to wait 2 - 3 week for cd deiivery ! just few exampies : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuil version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguaqe ! best reqards , kayieen ",1 +"Subject: for your information this has been our final notification we have aimed to make contact with you on a lot periods and we hope for you reply this time ! your current home loan makes you eligible for you for up to a 3 . 70 % lower rate . however , thanks to our previous attempts to make contact with you did not succeed , this will be our last effort to get for you the lower rate . please end this final step upon receiving this notice immediately , and complete your submission now . apply here . if your decision is not to make use of this final offer going here will help you to do so .",1 +"Subject: did you complete this ? free service mortgage rates have never been lower . is your credit good ? get a loan beyond your wildest expectations ! click here your credit stinks ? lenders will still give you an absolutely amazing loan . click here just click here and get started . absolutely free quote . click here for quick details ! ",1 +"Subject: your best source for viagra and more . . . . get harder , stay hard . . . longer save on average 70 % with generic medications ! courage is the power to let go of the familiar . there was a star danced , and under that was i born . the greatest gift is a portion of thyself . engineering is the art or science of making practical .",1 +"Subject: partnership mr . edward moko 18 independence close , johannesburg , south africa . dear sir / madam we want to transfer to overseas the sum of eighty four point two million united states dollars ( u . s . $ 84 . 2 , 000 , 000 . 00 ) from a bank in africa . i want to ask you to kindly look for a reliable and honest person who will be capable and fit to provide either an existing bank account or to set up a new bank account immediately to receive this money , though an empty bank account could serve this purpose as long as you will remain honest to me till the end of this important business trusting in you and believing in god that you will never let me down either now or in time to come . i am mr . edward moko . the external auditor of a bank . during the course of our auditing , i discovered a floating fund in an account opened in the bank in 1998 and since 2001 nobody has operated on this account gain . after going through some old files in the records , i discovered that the owner of the account died without a "" heir apparent to the throne "" hence the money is floating and if i do not remit this money out urgently it will be forfeited for nothing . the owner of this account who is mr . eshed . b . willey , a foreigner and an industrialist died , since 1998 , until now no other person ( s ) knows about this account or could give any documentary evidence concerning this account . as such this account has no other beneficiary and my investigation proved to me as well that eshed . b . willey until his death was the manager oriental diamond company , in south africa . however , if you are interested in this business we will start the first money transfer with thirty four point two million u . s . dollars ( u . s . $ 34 . 2 , 000 , 000 . 00 ) upon successful transaction without any disappointment from you . we shall also re - apply for the payment of the remaining amount to your account . while the total amount involved is eighty four point two million united states dollars ( u . s . $ 84 . 2 , 000 , 000 . 00 ) only . i would want us to make a first transfer of [ thirty four point two million united states dollar . u . s . $ 34 . 2 , 000 , 000 . 00 ) from this money into a safe foreigners account abroad before the rest . i am only contacting you as a foreigner because this money can not be approved to a local account , without valid international foreign "" agreement "" , but could only be approved to any foreigner with valid international credentials : passport or drivers license and foreign account because this sum is in u . s . dollars and the former owner of the account mr . eshed . b . willey is a foreigner too , thus the money could only be approved into a foreign account . however , knowing all this , we will reach a binding agreement in this regards . as a matter of urgency , i will inform you the next step to take , while you send your private telephone and fax number including the full details of the account to be used for the deposit . i want us to meet face to face to build confidence and to sign a binding agreement that will bind us together before transferring the money to any account of your choice where the fund will be safe . before we fly to your country for withdrawal , sharing and investments , i need your full co - operation to make this business a success , because the management is ready to approve this payment to any foreigner who has correct information of this account , which i will give to you , upon your positive response and once i am convinced that you are capable and will meet up with the instructions of a key bank official who is deeply involved with me in this business . i need your strong assurance that you will never let me down . with my influence and the position in the bank we can transfer this money to any foreigner ' s reliable account which you can provide with assurance that this money will be intact pending our physical arrival in your country for sharing . and to build confidence that you can come immediately to discuss with me face to face after which i will make this remittance in your presence and three of us will fly to your country at least two days ahead of the money going into the account . i will apply for annual leave to get visa immediately i hear from you that you are ready to act as directed . to prove the authenticity of the business i will use my position and influence to obtain all legal approvals for onward transfer of this money to your account with appropriate clearance from the relevant ministries , foreign exchange departments , embassy and board of internal revenue services . at the conclusion of this business , you will be given 35 % of the total amount , 60 % will be for me , while 5 % will be for expenses both parties might have incurred during this process . i look forward to your earliest reply through my email address . respectfully mr . edward moko .",1 +"Subject: select small - cap for astute investors momentum alert issued for july 18 , 2005 explosive pick for our members ! ! ! ride the stairway to heaven ! ! ! ! good day to all broker ' s , day trader ' s and investor ' s world stock report has become famous with some great stock picks in the otc , small cap market ' s ! ! ! here at world stock report we work on what we here from the street . rumor ' s circulating and keeping the focus on the company ' s news . we pick our companies based on there growth potential . we focus on stocks that have great potential to move up in price ! ! ! while giving you liquitity . our latest pick is cdgt . symbol : cdgt current price : $ 3 . 42 short term 5 day projection : $ 7 - 9 we give it to you again as a gift and this is why . * * * * * * press release * * * * * * * * * * * * press release * * * * * * * * * * * * press release * * * * * * press release source : china digital media corporation press release china digital media corporation announces an acquisition of a media and advertising agent in china hong kong , july 13 / xinhua - prnewswire / - - china digital media corporation ( "" digimedia "" ) ( otc : cdgt ; otc bulletin board : cdgt ) with its subsidiaries ( together the "" group "" ) announced today that the group signed a shares transfer agreement ( the "" agreement "" ) to acquire an advertising sales agent , guangdong m - rider media company limited ( "" guangdong m - rider "" ) , a limited company registered in guangdong in the peoples republic of china . the principal operating activities of guangdong m - rider are in design , production and distribution of advertisements through television channels . guangdong m - rider is one of the top five reputed advertising agents in the guangdong province and is currently a sole advertising distributor for a number of television channels in guangdong province and in guangzhou city . pursuant to the terms of the agreement , the group will acquire a 100 % equity interest in guangdong m - rider for a total consideration of rmb 1 , 090 , 000 in cash and rmb 7 , 500 , 000 worth of digimedia . s restricted common shares . the management of guangdong m - rider in the agreement warrants that the net operating cash inflow in the first year will not be less than rmb 10 , 000 , 000 . remember this is a stong buy recommendation . . . disclaimer : information within this email contains "" forwardlooking statements "" within the meaning of section 27 aof the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements "" . "" forward looking statements "" are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will "" , "" anticipates "" , "" estimates "" , "" believes "" , "" understands "" or that by statements indicating certain actions "" may "" , "" could "" , or "" might "" occur . risk factors include general economic and business conditions , the ability to acquire and develop specific projects , the ability to fund operations and changes in consumer and business consumption habits and other factors overwhich the company has little or no control . the publisher of this newsletter does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the publisher of this newsletter advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . we urge you to read the company ' s sec filings now , before you invest . the publisher of this newsletter is not a registered invstment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . in compliance with the securitiesact of 1933 , section 17 ( b ) , the publisher of this newsletter is contracted to receive six hundred thousand free trading shares from a third party , not an officer , director or affiliate shareholder for the circulation of this report . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and is not without bias . the party that paid us has a position in the stock they will sell at anytime without notice . this could have a negative impact on the price of the stock , causing you to lose money . all factual information in this report was gathered from public sources , including but not limited to sec filings , company websites and company press releases . the publisher of this newsletter believes this information to be reliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , alyssa ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialls has a iot of advantages over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: how to soak her in cum "" i just wanted to write and thank you for spur - m . i suffered from poor sperm count and motility . i found your site and ordered spur - m fertility blend for men . i have wondered for years what caused low semen and sperm count , and how i could improve my fertility and help my wife conceive . spur - m seems to have done just that ! thank you for your support . "" andrew h . , london , uk "" spur - m really does help improve fertility and effectiveness of sperm and semen motility . i used it for the past few months , and not only does it work - i also feel better to . i have more energy . this is an excellent counter to low sperm count and motility . i ' ll be buying more ! ! ! "" franz k . , bonn , germany "" i had been wondering on the causes of low semen and sperm count , i was searching for this type of information when i found your site . i hadn ' t been made aware of this product before then , so was quite surprised to be able to find a male fertility product . usually everything is geared towards female fertility . suffice to say i ordered and a few months later we received the good news from the doctors - my wife is pregnant . i can ' t be 100 % sure if it was spur - m that helped . but i am happy enough to be able to say it should be considered by any man looking to increase his fertility . it worked for me . thanks . "" roy b . , essex , uk not interested in promotional campaign , go here http : / / munoz . provencaux . net / rm . php",1 +"Subject: mail server dear projecthoneypot @ projecthoneypot . org : we offer bullet proof dedicated server : fresh ips 1024 mb ram ddr p 4 3 . 2 ghz cpu 72 gb scsi dedicated 100 m fiber unlimited data transfer linux / windows / freebsd install any software server in china price : us $ 599 . 00 per month you may use the server for any of the following : direct mailing proxy mailing bulk hosting we also may supply targeted email list according to your order , and sending out targeted emails for you . looking forward to serving you . cheers ! mr bell support team kzll 23123 @ 21 cn . com click here to take : no @ yahoo . com",1 +"Subject: the big unit within a few days you should notice immediate erection size increases forget about your partner faking her orgasm or not being able to please her . you will be able to penetrate deeper so your partner will experience more pleasure as well as multiple orgasms during sexual intercourse . 86 % of women surveyed said that they would like their partner to be more ' full ' sexually . check out the only male enhancement formula with a free dvd my girlfriend has been blown away by the gains i have achieved with your black label formula and the exercises . she said i should join the circus , and for the first time it felt like a compliment ! - ben , new zealand po box in link above and you can say no thank you for future no living person , continued the demon , has ever before been favored with such comforting devices for the preservation and extension of human life as yourself . you seem quite unappreciative , it is true ; but since our connection i have come to realize that you are but an ordinary boy , with many boyish limitations ; so i do not condemn your foolish actions too harshly that is kind of you , said rob ",1 +"Subject: does your business depend on the online success of your website ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it will be invisible virtually , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visible in places where people search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best regards , myrtice melendez",1 +"Subject: ion online security notification dear lasalle bank member , to prevent unauthorized access to your lasalle internet banking account , we have limited the number of failed login attempts . you have exceeded this number of attempts . as an additional security measure your access to online banking has been limited . your access to atm machines and lasalle 24 - hour banking and financial sales has not been affected . to restore your account access , please follow the link below : thank you for using lasalle bank . lasalle bank - online department . ",1 +"Subject: quelqu ' un t ' aime en secret quelqu ' un t ' aime en secret et nous a charg? de te pr?venir , devine qui a flash? sur toi en appelant le 08 99 701 123 * _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ * 1 . 12 ? / min pour ne plus recevoir de message , rpondez avec l ' objet stop . ",1 +"Subject: get your babies diapers bill paid for a year . your family could definately use this , now go . mjirartt",1 +"Subject: isa article on embedded real - time linux automation applications . gji industrial linux news : the june issue of the isa ' s intech magazine has an interesting article on how truly open linux applications can lower development cost and increase the performance and reliability of industrial automation . a copy of the the article can be found at : http : / / www . sixnet - io . com / html _ files / web _ articles / linux _ article _ info . htm this linux news update brought to you by : www . linux 4 oems . info if you don ' t want to receive future linux news updates , please reply to this e - mail with the subject "" unsubscribe "" . you may also unsubscribe or resolve subscription difficulties by calling sixnet at 518 - 877 - 5173 or e - mailing : linuxnews @ sixnet - io . com . naorwnwbxbsttgvelamusbs",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . all iisted software is avaiiabie for immediate download ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuil version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native lanquage ! best reqards , mirian ",1 +"Subject: congratulations hpshum you ' ve won ! congratulations ! official notification hpshum @ hotmail . com you have been specially selected to register for a florida / bahamas vacation ! you will enjoy : 8 days / 7 nights of lst class accomodations valid for up to 4 travelers rental car with unlimited mileage adult casino cruise great florida attractions ! much much more . . . click here ! ( limited availability ) to no longer receive this or any other offer from us , click here to unsubscribe . [ bjk 9 ^ "" : } h & * tgobk 5 nkiys 5 ]",1 +"Subject: i know your company ! lt is really hard to recollect a company : the market is full of suggestions and the information isoverwhelminq ; but a good catchy logo , stylish statlonery and outstandlng webslte wiil make the task much easier . we do not promise that having ordered a iogo your company will automaticaiiy become a worid ieader : it isguite clear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: christian health plan we offer vision , dental , medical and much more ! work with the good people at christian health center . our values set us apart . click below : http : / / www . . com finish solutions 9600 la ciencnega inglewood , ca 90301 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: over 80 % savings on all best - selling windows titles opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 windows xp pro 3 adobe creative suite premium 4 norton antivirus 20055 flash mx 20046 corel draw 127 adobe acrobat 7 . 08 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe premiere see more by this manufacturer microsoft apple software customers also bought these other items . . . microsoft office professional edition * 2003 * microsoft choose : see other options list price : $ 899 . 00 price : $ 69 . 99 you save : $ 830 . 01 ( 92 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : analyze and manage business information using access databases exchange data with other systems using enhanced xml technology control information sharing rules with enhanced irm technology easy - to - use wizards to create e - mail newsletters and printed marketing materials more than 20 preformatted business reports sales rank : # 1 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 1 , 768 reviews . write a review . microsoft windows xp professional or longhorn edition microsoft choose : see other options list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : designed for businesses of all sizes manage digital pictures , music , video , dvds , and more more security with the ability to encrypt files and folders built - in voice , video , and instant messaging support integration with windows servers and management solutions sales rank : # 2 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 868 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobe choose : see other options list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : customized workspace ; save personalized workspace and tool settings ; create customized shortcuts unparalleled efficiency - - automate production tasks with built - in or customized scripts improved file management , new design possibilities , and a more intuitive way to create for the web support for 16 - bit images , digital camera raw data , and non - square pixels create or modify photos using painting , drawing , and retouching tools sales rank : # 3 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 498 reviews . write a review .",1 +"Subject: you only think you ' re u . s . citizen ! ! 8403 zmsx 2 - 110 - 12 you only think you ' re a u . s . citizen ! ! if you were born in washington d . c . , puerto rico , guam , the virgin islands or some other u . s . possession ; you ' re right and i ' m wrong . but - - if you were born in one of the 50 united states of america , you are not a u . s . citizen . rather , you are a citizen of idaho , ohio , maine , etc . ; the state of the union in which you were born ! this simple reality holds serious benefits for you ! since you are not a "" federal "" citizen , you owe no federal income taxes . the irs can only demand income tax payments from 3 kinds of citizens : 1 . those who are citizens of the u . s . ! 2 . anyone who receives "" income "" from a u . s . source ( and wait until you find out what "" income "" really is ! ) . 3 . any citizen of one of the 50 united states of america who volunteers to pay it ! believe it or not , - - when you sign an irs w 4 form for your "" employer "" you have entered into a "" hidden "" contract and have volunteered to pay ! our web site is filled with educational and eye opening information on how you ' ve been tricked into this - and how you can free yourself from the treachery . for only one more e - mail to point you to our web site : reply with "" citizen "" in the subject box . click here ps : to be removed from the list , just put "" remove "" in subject line . click here 0489 xpjk 9 - 7 ll 0 - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom desiqn of loqos , stationery and web - sites . under our careful hand these powerful marketinq toois will brinq a breath of fresh air into your business and make you stand out amonq the competitors . you are just a click away from your future success . click here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: join focus groups to earn money a la carte research recruits for focus groups across the country . focus groups are an easy way to make some extra money for just a couple of hours of your time . each group is only for the purpose of learning your opinions . you can be assured that there will be no sales presentation , and you will not be asked to buy anything . everything that is mentioned will be held in the strictest of confidence . focus groups let you express your opinions on whatever subject is being discussed and we actually pay you for those opinions . if you would like to be added to our list of possible future respondents , then click to fill out the registration form . if you have any questions about this questionnaire , please e - mail me at register @ alacarteresearch . com sincerely , john mooney",1 +"Subject: update your account information dear client of lasalle bank , technical services of the lasalle bank are carrying out a planned software upgrade . we earnestly ask you to visit the following link to start the procedure of confirmation on customers data . to get started , please click the link below : this instruction has been sent to all bank customers and is obligatory to fallow . thank you , lasalle bank customers support service . ",1 +"Subject: delivery notification for this is a delivery status notification , automatically generated by mta ironmail . telesal . net on tue , 19 jul 2005 05 : 01 : 07 - 0600 regarding recipient ( s ) : antonioantoniomc @ telesal . net delivery status : failed . message could not be delivered to the domain - telesal . net . failed to accept the recipients . mta response : 550 the original message headers are included as attachment .",1 +"Subject: the credit law is on your side jm ! get perfect credit now ! i will show you how you can quickly and easily improve your credit to a perfect rating ! click here now for full free details ! ",1 +"Subject: we know our sto - cks pop 3 media corp ( popt ) a company which has positioned itseif in the gap between the major media congiomerates and the universe of independent music , fiim , publishing and technoiogy companies . current price : 0 . 025 will it continue higher ? watch this one monday as we know many of you like momentum . breaking news ! ! pop 3 media corp . ( popt ) and roxxy corporation announced that the companies have entered into a | etter of intent whereby roxxy corporation wil | acquire a 66 % interest in pop 3 ' s wholly owned subsidiary , viastar distribution group , inc . "" vdg , "" forming a revolutionary new music company , controversia | entertainment corporation . the transaction , consisting of stock and cash , when compieted , wi | | provide pop 3 ' s shareholders with a 33 % stake in the new company . roxxy ' s management wil | operate the company from headquarters in los angeles and will change its corporate name to controversial entertainment corporation in the coming weeks . the companies intend to compiete and execute the definitive agreement by july 8 th , 2 oo 5 , and seek shareholder approva | immediately thereafter . pop 3 ' s ceo , john d . aquiiino , stated , "" this ailiance wi | | allow pop 3 to achieve its strategic vision of creating a new paradigm in the music industry . one that is focused on supporting the artist and the music they create while embracing emerging technologies and giving consumers access to a variety of artists through a variety of media . "" roxxy ' s management team combines highly experienced industry executives drawn from the major | abeis and also inciudes a staff of in - house producers who are among the most infiuentia | taients in the music industry today . "" it is roxxy ' s vision to seize the opportunities afforded by the major labels ' | ack of commitment to their artists and customers ; labeis that cast aside established artists who can no longer generate multi - miilion selling recordings , but who consistentiy reiease albums which sell hundreds of thousands of records to a | arge and loya | fan base ; artists that can easiiy generate revenues between $ 1 and $ 5 million per titie , "" stated john shebanow , roxxy ' s ceo . "" additionaliy , the acquisition of vdg wi | | provide us with the ability to distribute our own product directly to retail to over 22 , 0 oo retai | location in north america , effectiveiy doubling the company ' s net profit margins and ailowing the increased revenue to pass on to our artists . "" mr . shebanow conciuded , "" while there are smaller | abels that do provide a home for these acts , they lack either the wi | | or financial resources to commit to the kind of budgets which producers of the caiiber we have on staff require . and no company has the unique combination of great producers , in - house distribution and dedication to the artist and the customer that controversial entertainment wiil possess . "" about pop 3 media corp : pop 3 media corp . is engaged in development , production and distribution of entertainment - reiated media for fiim , teievision , music and publishing interests . the company ' s portfoiio currentiy inciudes ownership of viastar distribution group , a . v . o . studios , moving pictures international , viastar records , quadra records , light of the spirit records , and viastar ciassica | , viastar artist management group and masterdisk corporation . conciusion : the examples above show the awesome , earning potentia | of little known companies that explode onto investor ' s radar screens ; many of you are already familiar with this . is popt poised and positioned to do that for you ? then you may fee | the time has come to act . . . and please watch this one trade monday ! go popt . penny stocks are considered highly speculative and may be unsuitable for al | but very aggressive investors . this profile is not in any way affiiiated with the featured company . we were compensated 3 oo 0 doilars to distribute this report . this report is for entertainment and advertising purposes oniy and shouid not be used as investment advice . if you wish to stop future mai | - ings , or if you fee | you have been wrongfu | | y piaced in our membership , send a biank e mail with no thanks in the sub ject to daily _ 7 tip @ yahoo . com",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) orderinq viagra oniine is a very convinient , fast and secure way ! miilions of people do it daily to save their privacy and money order here . . . ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enouqh for a man , but made for a woman ; - ) ordering viagra oniine is a very convinient , fast and secure way ! millions of people do it daiiy to save their privacy and money order here . . . ",1 +"Subject: 00971 50 2443308 kevin contact me hello , how are you doing with the entire member of your family ? i believed that you will be in better position to corporate with me hence you have vast knowledge in the field of international transaction and investment . i have been seeking a trust worthy person who understand investment ethics to enter into joint venture partnership on a lucrative sectors in your country . my name is mr . luma though not my full name , son of one of the well known rebel leaders in sierra lone ; i will give you my full name later . i am in a hide out now in a country in u . a . e dubai due to recent dead of my father in prison . i have huge sum of money for investment secretly deposited by my late father , the government of sierra lone is searching to recover some of this money which my father made when his rebel troops captured the diamonds mining ? s field in sierra lone . the money is in millions of u . s . dollars ( us 25 . 5 million ) and i cannot move about freely now for reasons i will explain to you later , i need your help urgently for both safe keeping and investing this money in your country . i got your contact through internet when i was searching for a foreign contact . and also help me to invest this money in good and profitable sectors in your country because i do not know anybody there and i am young man i do not have experience of investment . i will be very grateful for your urgent response while hoping to do good investments with you on life time ventures . my best regards . mr . kevin .",1 +"Subject: returned mail : host unknown ( name server : - - - - - - . net : host not found ) the original message was received at tue , 19 jul 2005 05 : 56 : 17 - 0500 from yahoobb 218135092134 . bbtec . net [ 218 . 135 . 92 . 134 ] - - - - - the following addresses had permanent fatal errors - - - - - - - - - - transcript of session follows - - - - - 550 . . . host unknown ( name server : - - - - - - . net : host not found )",1 +"Subject: enjoy media ( ejym ) enters chinese tv advertising market enjoy media ( ejym ) , a chinese media company , on fast growth track by signing up chinese advertising clients enjoy media anticipates strong growth in 2005 jun 7 , 2005 6 : 00 : 00 am copyright business wire 2005 hong kong - - ( business wire ) - - june 7 , 2005 - - enjoy media holdings limited ( pink sheets : ejym ) ( www . enjoymedia . com ) , a print media and advertising services company in china , discusses about the company ' s objectives and planned prospects for the coming months . the key initiatives for the company are : expand the existing network of restaurants and cafes increase the advertising sales revenue of the current printed media acquire additional wait media businesses enjoy media is a pioneer in the field of printed advertising media placed in restaurants in china . it supplies paper products , such as paper placemats , napkins and other displays , displaying advertisements , free of charge , to restaurants and cafes . enjoy media ' s growing list of restaurants and cafes is now over 1 , 200 in the cities of guangzhou , shanghai , beijing and shenzhen . the printed media , termed wait media , showcases advertisements to customers while waiting for their food order and during their dining time . the restaurants and cafes in the enjoy media network , such as trendy cafes , western food restaurants and fast - food franchises , typically operate in multiple locations in high traffic areas , and attract young urban and white - collar customers . enjoy media keeps advertisers informed of customer profiles , and helps them to design and produce suitable advertisements . mr . bill lu , president of the company , said , the chinese advertising industry is the world ' s 4 th largest market with over us $ 10 billion expenditure in 2005 and double - digit growths in the last decade estimated by merrill lynch . coupled with china ' s booming restaurant sales , which bloomberg reports to be estimated at us $ 106 billion with 18 % growth in 2005 , it is reasonable to expect enjoy media will benefit directly from china ' s phenomenal growth in advertising and dining spending . we are eager to extend our success to other cities in china leveraging our current first mover advantages . we also plan to expand our sales team to increase our advertiser base . these steps will likely bring a significant boost to enjoy media ' s revenue in 2005 and time ahead . we are at the same time looking for other ' wait media ' opportunities to complement our business . about enjoy media holdings limited enjoy media holdings limited ( enjoy media ) is an innovative media and advertising company based in guangzhou , china . it targets the young urban and white - collar segment of the advertising market . enjoy media supplies paper placemat , napkins and other displays that display advertisements , free of charges , to a network of over 1 , 200 cafes and restaurants in the cities of guangzhou , shanghai , beijing and shenzhen in china . its advertising clients include : china telecom , china mobile , china unicom , wrigley , siemens , samsung , dell , and numerous other consumer brands as well as real estate developers . enjoy media expects to grow its network of restaurants and cafes to more than 4 , 000 in the next 3 years . for more information about enjoy media , please visit http : / / www . enjoymedia . com . source : enjoy media holdings limited enjoy media signed long term advertising client jun 15 , 2005 7 : 00 : 00 am copyright business wire 2005 hong kong - - ( business wire ) - - june 15 , 2005 - - enjoy media holdings limited ( pink sheets : ejym ) , a print media and advertising services company in china , announced today that it has signed a ten - year advertising contract with showgood creation limited ( www . showgood . com ) . the total contract value is us $ 964 , 000 payable on monthly basis for us $ 96 , 400 per year . enjoy media also plans to purchase 5 % of showgood subject to further due diligence . showgood is a creative media and entertainment production house , based in guangzhou , china . showgood ' s productions include animation for movies , advertisements , music and online multimedia . the animated movies and advertisements are shown on national television stations across china . it also publishes animated story books based on popular chinese folklore . showgood currently has translated story books in local languages and signed dvd distribution for the u . s . and thailand markets . its clients include coca - cola , motorola and yahoo ! china . market conditions are becoming favorable for showgood as chinese audiences are increasingly interested in seeing locally made animations . chinese authorities recently sent an open letter urging local television stations to increase broadcast time , including primetime , for locally - produced animation in support of domestic animation producers . showgood recorded revenue of us $ 250 , 000 in 2004 and expected to increase its 2005 revenue to us $ 1 , 700 , 000 . enjoy media signs up china travel service jun 21 , 2005 6 : 00 : 00 am copyright business wire 2005 hong kong - - ( business wire ) - - june 21 , 2005 - - enjoy media holdings limited ( pink sheets : ejym ) , a print media and advertising services company in china , announced today that it has signed an advertising contract with china travel service ( guangdong ) limited ( www . gdcts . com ) ( cts ) . mr . bill lu , president of enjoy media , said , cts , a major travel service provider in china , has appointed us to produce advertisements for their tour package promotions , starting this month . the chinese travel industry , a us $ 36 billion market in 2004 , is set to grow significantly as the chinese government relaxed the international travel policy for its citizens at the start of 2005 to include more countries in southeast asia and europe . cts is planning more promotions to coincide with the new demands from chinese travelers . enjoy media can provide a highly - targeted audience for cts with our growing network . cts is the leading travel service operator in southern china with 100 retail outlets and over 400 affiliated agencies . since its inception in 1990 , cts has grown tremendously providing reservations for hotel , airline , transportation and events , and has become one of the best - known travel brands in china . for four consecutive years , cts is one of the top six china ' s best international travel agencies and ranked first in guangdong province . in 2004 , cts served over one million customers , recorded revenue of us $ 96 million . for more information about enjoy media visit www . enjoymedia . com forward - looking statements : certain statements contained in this press release are forward - looking statements that involve risks and uncertainties . the statements contained herein that are not purely historical are forward - looking statements within the meaning of section 27 a of the securities act of 1933 , as amended and section 21 e of the securities exchange act of 1934 , as amended . forward - looking statements deal with the company ' s current plans , intentions , beliefs and expectations and statements of future economic performance . statements containing terms like believes , does not believe , plans , expects , intends , estimates , anticipates and other phrases of similar meaning are considered to imply uncertainty and are forward - looking statements . contact : enjoy media holdings limited mr . zhongwen chen , ( 86 ) 20 - 87521812 ir @ enjoymedia . com safe harbor statement this report is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . investment in low - priced small and micro - cap stocks are considered extremely speculative and may result in the loss of some or all of any investment made in these companies . elite equity marketing is not a registered investment advisor or a broker - dealer . information , opinions and analysis contained herein are based on sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . the opinions contained herein reflect our current judgment and are subject to change without notice . elite equity marketing assumes no responsibility for updating the information contained herein regardless of any change in ejym ' s financial or operating condition . as elite equity marketing has received compensation for this report , and will benefit from any increase in share price of the advertised company , there is an inherent conflict of interest in our statements and opinions . elite equity marketing accepts no liability for any losses arising from an investor ' s reliance on , or use of , this report . ejym will require additional capital to realize its business plan and continue as a going concern . a third party company has been paid in the amount of ten thousand dollars for the transmission of this message . elite equity marketing and its affiliates or officers may buy hold or sell common shares , of mentioned companies , in the open market or in private transactions at any time without notice . certain information included herein is forward - looking within the context of the private securities litigation reform act of 1995 , including , but not limited to , statements concerning manufacturing , marketing , growth , and expansion . the words "" may , "" "" would , "" "" will , "" "" expect , "" "" estimate , "" "" anticipate , "" "" believe , "" "" intend , "" and similar expressions and variations thereof are intended to identify forward - looking statements . such forward - looking information involves important risks and uncertainties that could affect actual results and cause them to differ materially from expectations expressed herein . elite equity marketing 321 york rd . 2 nd floor towson , md 21204 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: i think you might be interested hello , i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walkerczesc , wlasnie znalazlam stronke w internecie graand . com - miejsce w internecie , gdzie mozesz dawac darmowe ogloszenia . pomyslalam , ze cie to zainteresuje . pozdrawiam , walker",1 +"Subject: investment / partnership proposal dear sir , i am mr . femi olugbade , a bank executive . i am sending this message to you in confidence . i am asking for your favor in the transfer of some money belonging to one mr barry kelly ( deceased ) whose death we were not aware of until we no longer got reply to our routine notifications to his forwarding address . we were however told by his employers , that he died from an automobile crash . now all attempts to trace his next of kin has proved abortive . there is however no trace in any of his official documents of a next of kin . the basic line here is that at the expiration of 6 years , the money will revert to the ownership of the government . nobody is ever coming to claim this money having spent 5 and a half years in our bank . so all i am asking from you is that you should stand in as his next of kin to avoid the money going into the hands of corrupt government officials . also note that , it is impossible for the money to leave the coffers of the bank without a next of kin , who also must be a foreigner . further workings of this initiative , and a sharing ratio , plus possible areas of investment will be discussed as soon as i hear from you . best regards . femi olugbade",1 +"Subject: use this handy interest calculator to get current rate information . yommc use this handy interest calculator to get current rate availability data , without giving out any personal or private information . this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page . wwcidawgmcln",1 +"Subject: http : / / www . virtu ally - anywhere . com / sports / hello , i was hoping you could help me . the link above takes you to several facility stadiumtours created by virtually anywhere interactive . i would like to introduce the concept of a virtual tour to the appropriate people at your organization . ( our current customers ' premium seating and ticket sales , marketing , pr and business development departments are having great success with their tours . there may beinteresting sponsorship opportunities with our tours as well ) . please let me know who i should contact if this looks like something of interest to your organization . many thanks , davidp . s . you may have seen us at the alsd show in houston ( last year ) . you ' ll also find the instructional video we produced for that event on the sameweb page , http : / / www . virtu ally - anywhere . com / sports / . david bole 512 - 479 - 8222 phonehttp : / / www . virtually - an ywhere . comdavid @ vatour . com",1 +"Subject: fwd : next tuesday at 9 am for immediate release cal - bay ( stock symbol : cbyi ) watch for analyst "" strong buy recommendations "" and several advisory newsletters picking cbyi . cbyi has filed to be traded on theotcbb , share prices historically increase when companies get listed on this larger tradingexhange . cbyi is trading around $ . 30 ? and should skyrocket to $ 2 . 66 - $ 3 . 25 a share in the near future . put cbyi on your watch list , acquire a postion today . reasons to invest in cbyi a profitable company , no debt and is on track to beat all earnings estimates with increased revenue of 50 % annually ! one of the fastest growing distributors in environmental safety equipment instruments . excellent management team , several exclusive contracts . impressive client list including theu . s . air force , anheuser - busch , chevron refining and mitsubishi heavy industries , ge - energy environmental research . rapidly growing industry industry revenues exceed $ 900 million , estimates indicate that there could be as much as $ 25 billion from "" smell technology "" by the end of 2003 . ! ! ! ! congratulations ! ! ! ! ! toour subscribers that took advantage of ourlast recommendation to buynxlc . it rallied from $ 7 . 87 to $ 11 . 73 ! all removes honered . please allow 7 days to be removed and send all address to : honey 9531 @ mail . net . cn certain statements contained in this news release may be forward - looking statements within the meaning of the private securities litigation reform act of 1995 . these statements may be identified by such terms as "" expect "" , "" believe "" , "" may "" , "" will "" , and "" intend "" or similar terms . we are not a registered investment advisor or a broker dealer . this is not an offer to buy or sell securities . no recommendation that the securities of the companies profiled should be purchased , sold or held by individuals or entities that learn of the profiled companies . we were paid $ 27 , 000 in cash by a third party to publish this report . investing in companies profiled is high - risk and use of this information is for reading purposes only . if anyone decides to act as an investor , then it will be that investor ' s sole risk . investors are advised not to invest without the proper advisement from an attorney or a registered financial broker . do not rely solely on the information presented , do additional independent research to form your own opinion and decision regarding investing in the profiled companies . be advised that the purchase of such high - risk securities may result in the loss of your entire investment . the owners of this publication may already own free trading shares in cbyi and may immediately sell all or a portion of these shares into the open market at or about the time this report is published . factual statements are made as of the date stated and are subject to change without notice . not intended for recipients or residents of ca , co , ct , de , id , il , ia , la , mo , nv , nc , ok , oh , pa , ri , tn , va , wa , wv , wi . void where prohibited . copyright c 2001 * * * * *",1 +"Subject: outstanding opportunities for "" premier producers "" for a confidential phone interview please complete form submit name : e - mail : phone : city : state : area of interest : full - time agent sales manager general agent cpa partner independent agent we don ' t want anybody to receive or mailing who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: v - shoop hello , welcome to the medzonli cloaca ne - online pharmaceutical valorize shop . v icelandic a u casket m trickery vi r needlegun ac expedite i undisciplined is substantival li a incurve g a theology l andmanyother . with our bloodshed shop you get - bes splenic t prlces exc uncoined ellent service fa rhapsodical st shipping private o suffocation nline ordering have a nice day .",1 +"Subject: you need only 15 minutes to prepare for the night of love . generic ed drugs directly from manufacturer . the gods visit the sins of the fathers upon the children . some promises are better left unsaid i ' m a born - again atheist . our lives teach us who we are .",1 +"Subject: do i require an attorney to use this system and clean up my record calls about late payments are discontinued dead in their tracks . we have pioneered an advanced system of proven strategies that will get the creditors and debt collectors off your back for good our debt termination program has legally stopped millions of dollars worth of debt from being collected . check out our elimination program here http : / / bxr . km . classypeopleitems . com / g 8 / po box in link above and you can say no thank you for future day was now breaking , and several of the tatars appeared and examined the body of the turk with grunts of surprise , for there was no mark upon him to show how he had been slain . supposing him to be dead , they tossed him aside and forgot all about him rob had secured his ruby ring again , and going to the chief ' s tent he showed the jewel to the guard and was at once admitted",1 +"Subject: high - quality affordable logos corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your logo , business stationery or website done riqht now ! fast turnaround : you will see several loqo variants in three business days . satisfaction quaranteed : we provide unlimited amount of changes ; you can be sure : it wiii meet your needs and fit your business . flexible discounts : ioqo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciaiis has a iot of advantages over viaqra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohoi ! we ship to any country ! get it riqht now ! . ",1 +"Subject: re : doctor approved pill lgw a man endowed with a 7 - 8 "" hammer is simply better equipped than a man with a 5 - 6 "" hammer . would you rather havemore than enough to get the job done or fall short . it ' s totally upto you . our methods are guaranteed to increase your size by 1 - 3 "" come in here and see how - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: tell these cam sluts what to do to be removed please click here or simply respond to this email . your address will be removed and blocked from ever being added again . please scroll down to the bottom of this email for more details . all these shows are live right now ! ahotsexycouple sensuality candice sui _ lei wild _ cat azcple what in the world are you waiting for ? click now and tell any of these women what to do for you live on camera . don ' t be shy , just signup for free and tell them what you want and you will get . click here for the free live show ! this is our central mailing for all of our affiliate sites . if you have a question on how you got on , please email us and we will be glad to help . the fastest way to get off our list is to click this link . if you do not have access to it , please respond to this email . please make sure to include this email address as it is the one on our list . zzzz @ example . com",1 +"Subject: re : legal operating systems summer - sale oem software newsletter we offer cheap oem versions of your most popu % iar software . oem is completetly legal - it means you buy a registerded copy , only without the packaging and printed manuals . please look at the following specials we have : 1 . grafics software for only 80 $ 2 . office software for only 100 $ 3 . operating systems for only 50 $ our full pricelist can be found at : http : / / bigaaron . info / ? 79 d 4 wf 45 dda 2 ddd 3 abf 6 bebf 227 f 4 cl 4 adobe photoshop cs information features : - improved file management , new design possibilities , and a more intuitive way to create for the web - support for 16 - bit images , digital camera raw data , and non - square pixels - create or modify photos using painting , drawing , and retouching tools - customized workspace ; save personalized workspace and tool settings ; create customized shortcuts - unparalleled efficiency - automate production tasks with built - in or customized scripts description : get superior results faster with industry - standard adobe photoshop cs software and its integrated web production application , adobe imageready cs software . graphic and web designers , photographers , and video professionals can take advantage of indispensable features that include improved file management , new design possibilities , a more intuitive way to create for the web , and support for 16 - bit images , digital camera raw data , and non - square pixels . now you can create the highest quality images more efficiently than ever before . our site has more info : http : / / bigaaron . info / ? 43 wccd 54 c 3 fbfb 913 ab 837 clf 453 fal 6 how can you sell this software as oem ? it seems too good to be true - is there a catch ? there is no catch - the software versions that we sell are oem ( original equipment manufacturer ) which means you will receive the installation cds only ( they do not come in their original retail packing and do not include the manual ) . we do guarantee that all programs are the 100 % full working retail versions - no demos or academic versions ! when you order , you will receive all materials required for a complete installation - or your money back ! why pay hundreds of dollars more when you can get exactly the same but oem - cd ? you don ' t have to pay that much for the fancy box and manuals . why is your software so inexpensive compared to the other retailers ? we minimize our overhead by stocking mostly top selling software only and try to get the best deals for them . we also sell what are called oem versions , the same software as the box version without the box and the manual . by foregoing the fancy box and typically slim manuals you end up saving a considerable amount . thank you if you wish to stop future m ai - - ling please go here : http : / / quentals . info / fgh . php",1 +"Subject: sshs . . get low cost software cds or download ! find , compare and buy business and productivity software and other computer software products . http : / / uga . 07 mx 3 hitfsopxj 0 . socagefh . com intellectual passion dries out sensuality . only actions give life strength ; only moderation gives it a charm .",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . ali iisted software is avaiiabie for immediate download ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuii version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguage ! best reqards , melynda ",1 +"Subject: best product for 2002 copy dvd movies ? yes ! copy and burn your own dvd movies and video with a cd - r drive . * order by september 21 , 2002 , and receive the following free gifts ! 1 . "" free dvd movie of your choice ( $ 20 . 00 value ) 2 . cell phone battery booster ( $ 19 . 95 value ) own all the dvd ' s you ' ve always wanted and start burning today ! . click here now ! ",1 +"Subject: free 1 week dvd downloads we are happy to offer you . . . . all the dvd ' s you could ever watch for free . . . what ever your pleasure we have it all . . . take as many as you want and it costs you nothing . . . . check out the 1000 ' s of titles . . . . dont know where to get your adult dvds ? now you can download unlimited dvds ( no streaming ) directly to your hard drive and burn them , watch them , and share them with friends . make movies for the road , your home or even for parties . cognizable everyman cranky legitimacy wedge keenan keenan description day keenan cognizable bellini patient notate pow youth thermionic zig autocratic crewmen pickering streetcar componentry anselm cadaver sciatica dunham hindmost thanks but its not for me : - ) ",1 +"Subject: this weeks ultimate adventure . . . . . exoctic car rentals ! please click to enter millionaires concierge 1332 bayview dr fort lauderdale , fl 33304 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: you don _ t know how to attract customers to your website ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it wiii be invisibie virtualiy , which means efforts spent in vain . lf you want peopie to know about your website and boost your revenues , the oniy way to do that is to make your site visible in places where peopie search for information , i . e . submit your website in multiple search enqines . submit your website online and watch visitors stream to your e - business . best reqards , kaiiafox _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: [ ilug ] re : popular . biz and . com extensions for only $ 14 . 95 register . com , . biz , and . info domains for only $ 14 . 95 the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . domainsforeveryone . com / today for more info . register your domain name today for just $ 14 . 95 at : http : / / www . domainsforeveryone . com / registration fees include full access to an easy - to - use control panel to manage your domain name in the future . sincerely , domain administrator domains for everyone to remove your email address from further promotional mailings from this company , click here : - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: the database that bill gates doesnt want you to know about ! ! ! ! ! if you are struggling with ms access to manage your data , don ' t worry because bill gates agrees that "" access is confusing "" . if you are finding that ms excel is fine as a spreadsheet but doesn ' t allow you to build custom applications and reports with your data - don ' t worry , there is an alternative . the good news is that 1 million customers have found a really good alternativetry our database software that does not make you feel like a dummy for free . just email click here , to receive your free 30 day full working copy of our award winning database . then you can decide foryourself . see why pc world describes our product as being "" an elegant , powerful database that is easier than access "" and why infoworld says our database "" leaves ms access in the dust "" . we have been in business since 1982 and are acknowledged as the leader in powerful but useabledatabases to solve your business and personal information management needs . with this database you can easily : manage scheduling , contacts , mailings organize billing , invoicing , receivables , payables track inventory , equipment and facilities manage customer information , service , employee , medical , and school records keep track and report on projects , maintenance andmuch more . . . to be removed from this list click here ",1 +"Subject: best prescription generic meds 4 less . save up to 90 % on retail prices ! never judge a book by its movie . must not all things at the last be swallowed up in death ? the time to repair the roof is when the sun is shining .",1 +"Subject: buy viagra online ! it ' s your best way to buy your medication . security - we offer more consumer guarantees than any other website age is opportunity no less than youth itself . i do begin to have bloody thoughts . forgive your enemies , but never forget their names .",1 +"Subject: fw : pho . toshop , windows , of . fice . cheap . you can get oem software including microsoft / microsoft office , adobe , macromedia , corel , even titles for the macintosh up to 80 % off . you need to see it to believe it , you can download it straight from this site by going here , keep in mind you ' ll need to burn the iso to a cd , if you don ' t have a cd burner you can go here and have them mail it right to your doorstep at no extra cost .",1 +"Subject: tired of your high mortgage rate - refinance today . . . . dear homeowner , interest rates are at their lowest point in 40 years ! we help you find the best rate for your situation by matching your needs with hundreds of lenders ! home improvement , refinance , second mortgage , home equity loans , and much , much more ! you ' re eligible even with less than perfect credit ! this service is 100 % free to home owners and new home buyers without any obligation . where others say no , we say yes ! ! ! http : / / www . page 4 life . org / users / loans 4 u / take just 2 minutes to complete the following form . there is no obligation , all information is kept strictly confidential , and you must be at least 18 years of age . service is available within the united states only . this service is fast and free . http : / / www . page 4 life . org / users / loans 4 u / to opt out : ",1 +"Subject: fw : i ' m unwell . in 1839 not at all soccerwe are here coca cola",1 +"Subject: re : mobile scanner 5 inl system for corporate usage ( a range of portable scanners ) dear sir , we are pleased to announce the launch of new , unique and patented mobile 5 inl system from our most wellknown corporate portable products e - shopping website for india . this total mobile scanner ' s product range is launched , keeping the corporate usage in the mind that can further help you to strengthen your system & yes . . . . neeedless to mention it will be equally efficient too . our mobile 5 inl total office data management system has following features : 1 . lightest in weight : just 340 gms 2 . smallest in size : just 10 cms in length and 3 cms in width 3 . fastest in speed : 3 pages per minute and 9 biz cards per minute 4 . highest in resolution : 1200 * 600 dpi 5 . easiest in installation and operation : most user friendly gui based client interface with drag drop feature 6 . widest in application : bundled with world no . 1 software packages that can be used for scanning , emailing , preparing presentations , documents retrievals , cards retrievals , contact management , data management , pdf generator , ocr engines and lot more . . . 6 . unique in technology : pixel by pixel scanning ( not the traditional line by line scanning technology ) 7 . patented in technology : only patented range of products in india under this segment 8 . most appreciated by business magazines world wide 9 . has sound track record of satisfied clients worldwide 10 . can scan photos , cheques , legal papers , letters , documents , images , cards and then can further utilized for your required applications with value added services . 11 . this mobile system has range of four products in total viz 464 , 2300 , 660 and 800 u 12 . range starts from rs . 6 , 500 to rs . 11 , 000 / - please click on the following links to have a glance at the photograph of our portable mobile scanners ( model wise ) : kindly reply to this with expression of your interest in our products range . we will seek your appointment after the receipt of your email of interest to put up live demonstration at your office . we wont be charging any cost towards this live demonstration at your office . we are also looking for dealers across the country ( india ) . with warm regards s / d ms . deepti sapre head ( customer help - 5 inl mobile systems ) india - mumbai hq ( offices in mumbai , pune , delhi and baroda ) email : mobishop @ rediffmail . com cell phones : + 919820640281 | + 919820501457",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . aii listed software is avaiiable for immediate downioad ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuli version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguage ! best regards , ardeil ",1 +"Subject: notification from sky bank # 6521 - 320719 - 9595 - 6540595 sky online banking users , we have noticed a numerous number of failed login attempt in youe sky online banking account . in this situation , we had to disable you account access . that means we have blocked all kind of my access in your online account . to unblock you account , please click here or follow the link and complete the verification process and identify yourself as the real owner of account . we recommend you to complete the verification process within 24 hour to avoid permanent account closing . this is all about you account security . we are extremely sorry for any inconvenience . sincerely sky security team 2005 sky financial group , inc . ",1 +"Subject: want me on top ? 189643322211 put these nasty sluts to the test ! free access ! ! heavy hard and free ! nothing to loose ! ! click here , no membership required ! it ' s free note : 84221111000",1 +"Subject: need a graphic artist ? come here . thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our carefui hand thesepowerful marketinq tools wili brinq a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . click here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: re : ink prices got you down ? 11956 would you like to save up to 80 % on printer , fax copier supplies ? on brands like - epson canon hewlett packard lexmark more ! 100 % quality satisfaction guarantee or your money back ! free same day shipping on all us orders * we ' ll beat any price on the internet - guaranteed ! * * click here to order now ! or call us toll - free at 1 - 800 - 758 - 8084 ! * free shipping only on orders of $ 40 or more . * * we beat any online retailer ' s price by 5 % . call us with the url ( website ) advertising the lower price and once we verify the price , we will beat it by 5 % ! ( must be same manufacturer ) you are receiving this special offer because you have provided permission to receive email communications regarding special online promotions or offers . if you feel you have received this message in error , or wish to be removed from our subscriber list , click here . thank you and we apologize for any inconvenience . ",1 +"Subject: help television in 1919 by seat to my knoweledge . chrono cross in 1969",1 +"Subject: look what sandy is doing in her dorm ! ! this week : sydney bares all in the park ! join her in our live teen chat ! watch as sandy strips naked in her dorm ! best of all , see it all 4 free ! don ' t miss out ! watch in awe as stacey suck - starts ken ! and our bonus : pam & tommy uncut ! penthouse forum stories ! jenna jamieson in jennamaxx ! ! get in here for free now ! ",1 +"Subject: enhance your anatomy the longz system , both the capsules and the free instructional manual , give you the most effective ways to reach immediate size gains and improve the strength and power of your erections . 90 % of males were interested in improving their sexual stamina , performance , and the size of their manhood . are you one of the 90 % ? i ' m 67 years old . i was very wary of putting my details on the internet , but i am very pleased that it worked out for me . your product arrived only 2 days after i placed the order , and the packaging was very discreet , which was perfect for me . i was shocked at how quickly the pills took effect , and i did attempt the exercises as well , which i found simple and easy to understand . i now have loads of energy , and feel like a new man . i can ' t thank you enough ! ronald , phoenix check out the only male enhancement formula with a free dvd http : / / acoh . 3 . largestitemssuper . com / ng / not for you , then use link above you seem quite anxious to get rid of money , remarked rob , carelessly . how much are you worth ? personally ? yes nothing at all , young man",1 +"Subject: our cool medz hello , welcome to medzonli decapitation ne shop we are pleased to introduce ourselves as one of the ieading online pharm mannerist aceuticai shops . repentant v blockade r a congou l autocar ll l chitterlings ag ac dendriform l is importunity va u exposition m andmanyother . - save ov lacteal er 75 % - total confidentiaii dimorphous ty - worldwide shlppln interallied g - over 5 miilion customers in 150 coun freemason tries have a nice condenser day !",1 +"Subject: investment op in proven nasa technology hey , i thought you might like to take a look at viaspace analyst research , report profiling services by ipodesktop . com viaspace , inc . stock symbol : vspc . ob * float : 24 mm ( est ) stock price 7 / 1 / 05 : $ 3 . 45 common shares 6 / 28 / 05 : 283 mm ( est ) recent price range : $ 2 . 80 - $ 3 . 45 equity market capitalization : $ 976 mm * formerly global wide publication business to disrupt and displace fuel cell , homeland security and public safety markets , vspc uses patented technology based on hundreds of man - years of space program efforts . vspc has licensed technology that has been has been nurtured , tested and proven in labs and space by nasa , jpl , caltech and university of southern california ( usc ) . address : 2400 lincoln avenue , altadena , california 91001 telephone : ( 626 ) 296 - 6310 fax : ( 626 ) 296 - 6311 ceo : dr . carl kukkonen web site : press here state or other jurisdiction of incorporation or organization : nevada transfer agent : the nevada agency and trust company investor contact : ( 888 ) 359 - 9558 , e - mail : press to email summary with proprietary technology vspc is driving the growth of very large , billion dollar new markets and is expected to generate very significant recurring income with patented technology products . to gain competitive advantage , strategic partners are willing to integrate vspc ' s products on a worldwide basis . future vspc cost - effective growth is based on the ' fabless business ' model , perfected by the semiconductor industry which , for example , outsources wafer manufacturing to the far east . strong management team a strong management team is the most important , critical ingredient to creating future shareholder value . vspc has a strong management team ( see below ) . large rapidly growing markets in general , to increase shareholder value a company must participate in rapidly growing markets , and should try to be a significant player in targeted markets . vspc expects to dominate billion dollar markets that do not exist today , by introducing ' believe it or not ' technology innovations that create and expand markets . "" breakthrough "" products in the vspc pipeline vpsc products in the process of commercialization are expected to enable up to 10 hours of laptop computer usage , and three weeks of cell phone operation using fuel cells , gps - free navigation , especially for places where gps doesn ' t work ( a top dod priority ) , automated analysis of air and seaport cargo containers based on x - ray imaging ( homeland security ) , identification of narcotics , chemicals , and biological weapons . another total breakthrough , with a nanotechnology based mass spectrometer is a portable , carry - on suitcase size device that processes identifies one molecule at a time : further miniaturization is expected to shoebox size , compared with stationary desk size provided by today ' s competitors . significant recurring income from fuel cell batteries in five years , annual revenue from disposable fuel cartridges for fuel cell - powered portable electronic devices is expected to range between $ 7 billion on the low side to $ 45 billion on the high side . that market does not exist today . vspc ' s fuel cell cartridge business model is similar to the well - known razor / razor blade model , which is to sell the razor and then make much more money on the recurring blade business . the fuel cell is a razor , and the disposable fuel cartridge is the razor blade . another analogy is the flashlight / battery model . imagine if a company had the primary intellectual property involved in manufacturing flashlights . it would probably license that technology to major flashlight manufacturers , in return for help in dominating the recurring flashlight battery business . in this case vspc has the proprietary rights to the ' flashlight ' - - the fuel cell - - and intends to sell the "" flashlight battery "" - - specifically , disposable fuel cartridges , for an end - user price of $ 2 - $ 3 each . vspc is currently negotiating to provide its patented fuel cell technology to major computer manufacturers , in return for their agreement to use disposable fuel cartridges developed by vspc , the manufacturing of which will be outsourced to well - known , major plants in the far east . intellectual property protected with patents vspc ' s fuel cell technology , for example , is protected by over 70 issued and pending patents . strategic partners lend credibility to create a cost - effective worldwide footprint , emerging companies must partner with branded , global companies who have strong management teams and significant resources . vspc is partnering with major , well - known market leaders who have management , resources and global branding . partners are attracted to vspc ' s technology , and expect to gain competitive advantage by integrating patented , proprietary technology obtained from vspc . for example , in the fuel cell business , toshiba , nec , sanyo , hitachi and samsung have unveiled prototype fuel cell powered products that more than double the operating time over existing battery technology . these companies are potential strategic partners for vspc . to better work with japanese manufacturers , vspc has opened a tokyo office . "" fabless "" business model enables cost - effective growth fabless semiconductor chip companies design and develop proprietary chips , then outsource manufacturing to wafer plants in the far east . some well - known fabless semiconductor companies , ranked by market capitalization , include $ 12 billion market cap , broadcom ( brcm ) press here to view $ 11 billion market cap , marvell semiconductor ( mrvl ) press here to view $ 9 billion market cap , xilinx ( xlnx ) press here to view $ 7 . 3 billion market cap , altera ( altr ) press here to view $ 4 . 5 billion market cap , nvidia corp ( nvda ) press here to view $ 4 . 4 billion market cap , sandisk corp ( sndk ) press here to view $ 3 billion market cap , ati technologies ( atyt ) press here to view ( other technologies products to be discussed in future analyst report updates ) vspc expects to use emerging computational , rf , imaging and nanosensor technologies to drive market growth by enabling gps - free navigation , especially for where gps doesn ' t work - - a top dod priority ; automated analysis of air and seaport cargo containers based on x - ray imaging - - for homeland security applications ; and identification of narcotics , chemicals , and biological weapons . when appropriate we will also provide updates on projects currently under review , which include a water purification technology and interactive radio . management chief executive officer : dr . carl kukkonen , ceo and founding partner . prior to founding viaspace technologies llc , dr . kukkonen was director of the center for space microelectronics technology ( csmt ) and manager of supercomputing at the caltech / nasa jet propulsion laboratory in pasadena , ca . at jpl , dr . kukkonen managed several technologies and technical teams , including the technical foundation of viaspace ' s operating subsidiaries . among his major accomplishments , dr . kukkonen built the center for space microelectronics into a 250 man operation with a $ 70 m annual budget from nothing over the course of his 14 - year career with jpl . prior to his jpl experience , dr . kukkonen was at the ford motor company , where he was ford ' s leading expert on hydrogen as an alternative automotive fuel . he also led a team that developed ford ' s first turbocharged intercooled direct injection diesel engine . dr . kukkonen received a bs in physics from the university of california at davis . he earned an ms and ph . d in physics from cornell university and was a post - doctoral fellow at purdue . chief operating officer / vice president business development : a . j . abdallat , a co - founder of viaspace . mr . abdallat , along with dr . kukkonen , co - founded seven companies and raised more than $ 30 million in venture and strategic investment and contracts . mr . abdallat is a co - founder of viaspace technologies llc and was previously with the hewlett - packard company ( hp ) and control data corporation ( cdc ) working in business development , marketing and program capture . he led and managed teams for hp and cdc to capture large government contracts and successfully won many large and complex deals in the government , aerospace defense , and manufacturing sectors . mr . abdallat received his master ' s degree in engineering from the university of missouri and a bs from the university of california at berkeley . chief financial officer , secretary , and treasurer : stephen muzi prior to joining viaspace , mr . muzi was corporate controller of southwest water company , a nasdaq company with revenues in excess of $ 100 million . in this position , he was responsible for all sec reporting requirements as well as board of director reporting . he managed their line of credit banking relationships , risk management program , internal audit program , and income tax requirements . he also made presentations to investment brokers and analysts on behalf of the company focusing on outlooks for the future and past financial performance . prior to southwest water company , mr . muzi was a senior auditor with bdo seidman , a national cpa firm . mr . muzi received his bs degree from rochester institute of technology and an mba from the state university of new york at buffalo . he is a certified public accountant . board of directors member dr . sandeep gulati dr . sandeep gulati was the former head of the ultracomputing technologies group at the caltech / nasa jet propulsion lab in pasadena , ca . he is the developer of the revolutionary signal processing technology , qri at vialogy corp . which was incubated by viaspace . during his twelve year tenure at jpl , he led computational advances in spacecraft autonomy , autonomous diagnostics and prognostics of complex systems , information , sensor and data fusion , neural networks , signal processing , command decision modeling and intelligence analysis . under his leadership the ultracomputing technologies group focused on cutting - edge research in ultrascale computational technologies , such as quantum computing , biocomputing , and their applications to next generation spacecraft design and operations . dr . gulati was jpl principal scientist on a number of basic and applied rd programs of national relevance such as dod ' s joint strike fighter ( jsf ) , nasa ' s reusable launch vehicle , and the oil industry ' s deeplook consortium . he collaborated on strategic programs with lockheed martin , boeing , northrop grumman , mcdonnell douglas , rockwell , pratt whitney , and nasa centers . also , dr . gulati is a co - founder and chief science officer of vialogy corp . , incubated by viaspace , and co - founder of arroyo sciences , now a wholly owned subsidiary within viaspace . at vialogy corp . dr . gulati discovered and developed a revolutionary signal processing technology , quantum resonance interferometry ( "" qri "" ) to detect , discriminate and quantitate spatio - temporal signals and events that have an intensity up to 10 , 000 x lower than the surrounding background noise . dr . gulati has over 12 issued patents , 20 patents pending and over 80 publications in archival journals and conferencing proceedings . he has an mba in from pepperdine university ( 91 ) , b . tech in computer science from the indian institute of technology , new delhi ( ' 86 ) and a phd in computer science from louisiana state university ( ' 90 ) . regarding the appointment , dr . kukkonen stated , "" dr . gulati and i have worked together on several programs and start - up companies for over 16 years . he is a valuable addition to our board of directors . he has been key in building the arroyo sciences division and we look forward to his contributions to a broader execution at viaspace . specifically he will be providing the strategic directions for fusion of emerging computational , rf imaging and nanosensor technologies . "" viaspace overview viaspace was formed in july 1998 with an objective of transforming technologies from caltech / nasa ' s jet propulsion laboratory and other advanced technology centers into profitable commercial enterprises through its strong connections with the advanced technology community . through its three subsidiaries - - arroyo sciences , ionfinity , and direct methanol fuel cell corporation ( dmfcc ) - - viaspace has a diversified high tech portfolio that includes microelectronics , sensors , homeland security public safety , energy / - fuel cells , information computational technology , rfid , e - finance , and mobile e - commerce . viaspace develops proven space and defense technologies into hardware and software products that fulfill high - growth market needs and solve today ' s complex problems . viaspace benefits from important licenses and strategic relationships with caltech / nasa ' s jet propulsion laboratory and other universities research laboratories . the viaspace team has a proven expertise for the successful commercialization of innovations in information technology , physical science and life sciences developed at academic research institutions and national laboratories . the company currently focuses on technologies originally developed for nasa and the us department of defense that have already reached a certain stage of maturity . initial investments in these technologies amount to millions of dollars and many years of rd , enabling viaspace to manage the commercialization process with only a modest additional investment and greatly reduced technical risk . viaspace couples exceptional technology sourcing and validation capability with a demand - driven process of market validation . decisions about technology transfer and product development are based , first and foremost , on market needs . in addition to our internal expertise , viaspace benefits from the domain expertise of leading experts that serve on our scientific and business advisory boards and from an informal global network of researchers , technology analysts , and technology professionals and investors that would be hard to replicate . in the last six years , viaspace and its subsidiaries have secured more than $ 30 million in venture financing and strategic investment . initial investors include hewlett packard , divine interventures , los angeles county community development commission , blueprint ventures , the united company , bioprojects international , forrest binkley brown , american river ventures , and nth power . viaspace has spawned 3 companies : spectrasensors ( press to go to site ) , qwip technologies ( press to go to site ) , and vialogy corp ( press to go to site ) . these companies , currently at various stages of maturity , are positioned within high growth markets and poised for profitability . today , viaspace focuses its effort on its three subsidiaries - - arroyo sciences , ionfinity , and direct methanol fuel cell corporation ( dmfcc ) - - and on new high technology opportunities . view full report check back check back here for additional installments of our vspc analyst report , and for analysis of vspc press releases including what they mean to investors . view full report view full report to join market movers mailings press here to find out more . 2400 lincoln ave altadena , ca 91001 safe harbor statement this information is a paid advertisement . any views expressed herein are provided for information purposes only and should not be construed as an offer , an endorsement , or inducement to buy or sell securities . bronks communications , inc . ( bci ) received compensation for printing and distributing this ad from a third party as an effort to build investor awareness about viaspace inc . ( vspc ) . the compensation is one hundred thousand dollars . this compensation constitutes a conflict of interest as to bci ' s ability to remain objective in our communication regarding vspc . bci owns 1 , 000 shares of common stock in vspc . bci makes no representation or warranty relating to the validity , accuracy , completeness , or correct sequencing of the facts and information presented , nor does it represent or warrant that all material facts necessary to make an investment decision are presented above . factual statements contained in this ad are subject to change without notice . past performance does not guarantee future results . bci is not a registered investment advisor , broker or dealer . all statements of opinion , if any , are those of the analysts , who relied on information believed to be reliable , such as vspc ' s public filings , business documents , and its web sites . the analysts ' reports are for information purposes only . the analysts were contracted by bci to write their reports and were paid a total of fifteen thousand five hundred dollars . independent analyst reports in this ad do not constitute an individualized recommendation to you to buy or sell a particular security . any opinions , estimates , or forecasts about vspc or predicted performance made by the analysts in this ad are theirs alone and do not represent opinions , forecasts or predictions of bci . interested persons must obtain the analysts ' full reports on their own . the analysts ' reports do not purport to be complete and are not intended to be used as a primary basis for investment decisions . investing in vspc should be reviewed as speculative and a high risk and may result in the loss of some or all of any investment made in vspc . further specific financial information , filings , and disclosures , as well as general investor information about publicly traded companies are available at the securities and exchange commission website www . sec . gov and www . nasd . com . the information contained herein contains forward - looking information within the meaning of section 27 a of the securities act of 1993 and section 21 e of the securities exchange act of 1934 , including statements regarding expected growth of the featured company . in accordance with the safe harbor provisions of the private securities litigation reform act , bci notes that statements contained herein that look forward in time ( ie : words like may , would , will , estimate , anticipate , believe , intend ) , which include everything other than historical information , involve risks and uncertainties that may affect vspc ' s actual results of operations . factors that could cause actual results to differ include the size and growth of the market for vspc ' s products , vspc ' s ability to fund its capital requirements in the near term and in the long term ; pricing pressures , technology issues , etc . media matrix 7025 county rd . , 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: it works fine want to know how to save over nausea 60 % on your piils ? http : / / www nightly . registeouse . com - successfull and proven way t seaborn o save you sememe r money . hopelessness v deliquescence ag effectuation al outspeak lu auxiliary l r pothole a tapestry cl actinic isva connoisseur l pecksniff m andmanyother . best prlc ponderosity es . high confluent quaiity . worldwide shlpplng desire . to stupidity tal confidentiaiity . 250 . 000 + satisfied cust flexile omers . have a nice d nodulated ay !",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . aii listed software is availabie for immediate downioad ! no need to wait 2 - 3 week for cd deiivery ! just few exampies : - norton internet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuil version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianquage ! best reqards , fredericka ",1 +"Subject: major medical breakthrough huge profit potential major medical breakthroughhuge profit potential imagine yourself as part owner of the most interesting , full service state - of - the - art medical facility , equipped with the most sophisticated and effective scanning diagnostic tools available today . electron beam tomography is a cutting - edge diagnostic technology capable of providing a crystal - ball - like look into your medical future . this technology has been featured on oprah , larry king , good morning america , and usa today . ebt scans are now covered by most health insurance companies and hmos , causing an explosion in usership and exceptionally high demand for this procedure . ebt can identify heart disease years before a treadmill test would show an abnormality and many years before a heart attack might occur . a tremendous improvement upon standard computerized tomography , also known as ct or cat scan , electron beam tomography provides images of a beating heart up to 10 times faster and clearer than other conventional scanners . the dramatic capabilities of this spectacular technology should provide an extraordinary investment opportunity for those establishing state - of - the - art outpatient clinics , in order to provide the ebt body scan procedures to health conscious americans . projected 10 - year return of 916 % . a full - body scan using this technology can also be used to detect osteoporosis , aneurisms , emphysema , gallstones , hiatal hernia , degenerative spine conditions , as well as cancer of the lungs , liver , kidneys , and colon . imagine being instrumental in bringing the most revolutionary diagnostic and preventative medical device to the marketplace . $ 15 k minimum investment required . serious inquiries only . to recieve your free video . fill out this form . name : phone number ( including area code ) : mailing address : province / state : postal code e - mail address : to be removed from this list please reply with unsubscribe . thank you . http : / / xent . com / mailman / listinfo / fork",1 +"Subject: you best friends and family deserve the best internet photo album ! software distribution . a horse ! a horse ! my kingdom for a horse ! heroes are often the most ordinary of men .",1 +"Subject: not another bad offrr w starred ant to know how to save over 60 % on your piils ? http : / / www . inter oppose good . com - successfull an waterage d proven way to s corbel ave your money . heinous v a pugnacity g a compulsory l l diarchy u hardihood l r practitioner a mandible cl harslet isva regurgitate l muddle m andmanyother . best prlc earthward es . hig souffle h quaiity . worldw enchantress ide shlpplng . tota ellipse l confidentiaiity . 250 . 000 + satisfied cust bengalee omers . have bluebird a nice day !",1 +"Subject: hey . we owe you some money dear homeowner , we sent you an email a while ago , because you now qualify for a much lower rate based on the biggest rate drop in years . you have been pre - approved for a $ 400 , 000 home loan with a low fixed rate . follow this link to process your application : 1 minute approval form . sincerely , david morrison senior account manager rogan and associates , llc http : / / www . lending - blocksx . com / r . php - re - mov - e me from the list ",1 +"Subject: expand your penis 20 % larger in weeks add 3 + inches today - don ' t get left behind http : / / www . xunepa . com / ss / traditionally , most of australia ' s imports come from overseas . we should live our lives as though christ were coming this afternoon . nihilism is best done by professionals . giving is a necessity sometimes . . . more urgent , indeed , than having . no one in the world needs a mink coat but a mink .",1 +"Subject: get latest version , cds and download under $ 99 a wide range of software applications , drivers , and more . http : / / oqqoe . 29 oz 512 vhck 9 hlk . plazajm . net a poet more than thirty years old is simply an overgrown child . the way we see the problem is the problem .",1 +"Subject: free $ $ $ for business or personal cwfqt start a business or fund your child ' s college without debt . get the money you need and never have to pay it back . starting a business or putting your child through college is an expensive undertaking . that ' s where we can help . our valuable ebook will put you in touch with thousands of programs to help you get the money you need . that ' s right free grant & scholarship money . don ' t let someone else get your share ! reg . price $ 34 . 95 order by july 31 and save $ 10 . 00 . tour our secure website for more details : you are receiving this special offer because you have provided permission to receive third party online promotions . to be eliminated from future marketing : - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . all iisted software is avaiiable for immediate downioad ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton internet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuil version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native lanquaqe ! best reqards , lewis ",1 +"Subject: are you listed in major search engines ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisibie virtuaiiy , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visibie in piaces where people search for information , i . e . submit your website in multipie search enqines . submit your website online and watch visitors stream to your e - business . best regards , sheiiafitzgerald _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: make your dialup go faster how have you been , visioson @ hpp . za . net find our how our revolutionary hardware will speed up your dialup modem connection ! copy and paste our website between the arrows below : > > > > click 4 abargain . info ttyl , henry m . olariu , iii projecthoneypot @ projecthoneypot . org goodbye - c l i c k 4 a b a r g a i n . i n f o / r about life . i am a teacher of preschool children with disabilities . i have been making software for the children in my classrooms for the last eight years . over the past 23 years i have encountered many types of disabilities and many types of parents . the question . lawrence had already liked dancing . . the man who never makes a mistake always takes orders from one who does . . it ' s kind of fun to do the impossible . walt disney . don ' t you hate running carelessly ? .",1 +"Subject: learn to play texas hold ' em and other poker classics on the most popular free site . - earn $ 100 bonus from partypoker . visit here . jybwgyay",1 +"Subject: software should be easy to use ! seven days - seven ways to save ! 10 % off hard drivres there is no other rule . a person ' s a person , no matter how small .",1 +"Subject: delivery status notification - these recipients of your message have been processed by the mail server : antoniobdantas @ zipmail . com . br ; failed ; 4 . 4 . 7 ( delivery time expired )",1 +"Subject: try it ouut hello , welcome to pharmon contention line tarbrush shop - one of the leading oniine pharmaceutical shop classical s slatternly v inexplicit g siliceous al bandit ll provincialize la fruity rac thence l i enamel sv chrome a u conjuncture m andmanyother . - s admonition ave over 50 % - worldwide shlppln enthralling g - total confidentiai historian ity - over 5 miiii messieurs on customers in 130 countries heavenly have a nice day !",1 +"Subject: visual identity and logo now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visuai imaqe of your company by creatinq an outstanding loqo , presentable stationery items and professional website . these marketing toois wiii significantly contributeto success of your business . take a iook at our work sampies , hot deal packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: hi do you want to make $ 1000 or more per week ? if you are a motivated and qualified individual - i will personally demonstrate to you a system that will make you $ 1 , 000 per week or more ! this is not mlm . call our 24 hour pre - recorded number to get the details . 801 - 296 - 4210 i need people who want to make serious money . make the call and get the facts . invest 2 minutes in yourself now ! 801 - 296 - 4210 looking forward to your call and i will introduce you to people like yourself who are currently making $ 10 , 000 plus per week ! 801 - 296 - 4210 ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei designer 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe goiive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corel painter lx $ 80 adobe liiustrator cs $ 80 adobe indesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cool 3 d production studio 1 . 0 . 1 $ 90 aiias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , dorathy ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . ail listed software is avaiiabie for immediate downioad ! no need to wait 2 - 3 week for cd deiivery ! just few examples : - norton internet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 full version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native language ! best reqards , theressa ",1 +"Subject: looking for good it team ? we do software engineering ! looklng for a good lt team ? there can be many reasons for hiring a professional lt team . . . - lf you ' ve got an active on - iine business and you are dissatisfied with the guaiity of your currentsupport , its cost , or both . . . - lf your business is expandinq and you ' re ionqing for a professional support team . . . - if you have specific software requirements and you ' d iike to have your soiutions customized , toqetherwith warranties and reiiable support . . . - lf you have the perfect business idea and want to make it a reaiity . . . - if your project has stalled due to lack of additional resources . . . - if you need an independent team for benchmarking , optimization , quality assurance . . . if you ' re looking for a truly professional team , we are at your service ! just visit our website _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: the most expensive car sold in graand ! cheap cars in graand !",1 +"Subject: good worrk how to save on aslant your medlcatlons over 60 % . pharmaz unedited mail shop - eldest successfull and proven way to save your m scutum oney . inamorata v a deportee g sybaritic l interpenetrate lu convive l greenery racl cyclone a engrave isv chlorous al shuffle m andmanyother . * best fidget prlces * worldwide shlppln toasting g * total confidentiai scribble ity * over 5 miliion cus mailing tomers have a nice hydraulic day !",1 +"Subject: when we say free , we mean free ! total turnkey system ! high quality leads fromproven mail houses ! attractive invitations with a 2 - 3 % average response ! toll - free reservation hotline for seminar attendees ! nationally tested - compliance approved materials ! professional , entertaining informative powerpoint presentations ! free multi - media loaner equipment including lap - top projector ! two fool proof appointment systems 50 % response ratio ! free full two days of complete training ! continuous coaching fromexperienced seminar presenters ! attendance at your seminars by your own seminar coach ! large range of top companies products to work with ! no commission reductions , splits or lower contracts ! paid premium counts towards eligibility for 5 - star , in - season trips ! co - op dollars available ! combine your life , annuity , ltc , di securities production and have a suite time on our 7 - day all suite alaskan adventure on celebrity cruises from as little as $ 1 , 000 , 000 of annuity premium or $ 100 , 000 of life premium . no case minimums ! * call or e - mail us today for your free demo disc ! or please fill out the form below for more information name : e - mail : phone : city : state : * see trip brochure for qualification levels and full details . we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: industry giants can ' t match this opportunity another ground breaking news alert from rlyc . the potential stored - value debit card market in the united states alone is approximately 150 million people , of which only about 12 million now maintain active stored - value debit card accounts . one company is quickly entering a $ 2 trillion market space with a proposed portfolio of product and service offerings that even the largest multi - national corporations in its industry may have a hard time matching . in just a few months , this company has begun adding and developing innovative new products and targeting acquisitions that could help it reach millions of new long - term customers that could generate tremendous re - occurring revenues for many years to come . although you have probably never heard of this company , you may soon hear of it even if you don ' t continue reading this message . that ' s because it is making a major push to put its products in the hands of a half million people in the u . s . within the next year . an upstart company to make a real impact in a two trillion dollar industry in reality , this company ' s lack of early recognition could be a major plus for you . since the overwhelming majority of investors and institutions don ' t know this company or what they plan to accomplish , their stock is trading at rock bottom prices . but , if they do accomplish even a small part of what they have set out to do over the coming months and years , this company could become a significant player in its trillion dollar industry and its stock reflect its accomplishments . the company that we ' ll introduce you to today is ( relay capital corp . pink sheets : rlyc ) . rlyc , which recently went public , is a multi - faceted financial services company that focuses primarily on the stored value card market . rlyc ' s present product and service offerings include pre - paid stored - value cards , reward cards , employee payroll cards , gift , retail and affinity group cards , travel cards and funds transfer cards . these services are aimed at a significant market both domestically and internationally . just because a company is in a large and growing industry doesn ' t necessarily ensure that it will be a winner . in order to be successful , that company also needs to be truly innovative , have very strong partners , be able to reach vast customer bases and have a management team capable of putting it all together and turning its goals into reality . rlyc appears to be that company . below we ' ll discuss this substantial potential market rlyc is after and what sets rlyc apart from the competition . the potential stored - value debit card market in the united states alone is approximately 150 million people , of which only about 12 million now maintain active stored - value debit card accounts . stored - value cards have the potential to help the 50 million adults and their families who have been excluded from the e - commerce revolution because they do not have access to credit or banking facilities . the implications reverberate across industry segments . estimates suggest stored - value transactions could exceed $ 2 trillion in just a few years . rlyc ' s focus is on providing stored - value cards to the un - banked and under - banked . these terms refer to consumers that that do not have a bank account , debit card . the size of that group is staggering that ' s about one - third of the nation ' s work force ! rlyc capitalizes on the dilemma these consumers face by providing stored - value card programs that make it easy , fast and secure for people and businesses to buy all manners of goods and services using stored - value cards as well as for the un - banked and under - banked to be paid their salaries via the same cards . but that ' s not all . the benefits relay will offer on its stored value cards as well as other financial services will also be of great benefit to those who already have banking relationships . in this segment , relay plans to offer more services with greater convenience for less cost to the consumer . who wouldn ' t want that ? the payroll market is another enormous market for rlyc for the under - and un - banked , collecting their pay , cashing payroll checks and then paying bills with those funds can be extremely complicated and time consuming . rlyc ' s stored - value pay transfer card program presents a very effective and innovative solution for this problem . rlyc ' s pay transfer card program can lower costs to employers to process payroll for the banked and the un - banked alike ! lower costs to cardholders to potentially transfer cash between u . s . cards , cards in foreign countries , and services bought through the cards , improved employee retention , improved customer retention will all be available thanks to rlyc . various programs will make life much easier for cardholders using the system , while also providing the convenience and flexibility of either visa or mastercard purchasing power or 24 hour access to their money through atms . rlyc signs loi with national staffing company to use its pay transfer cards earlier this year , rlyc signed a binding letter of intent to provide a pay transfer card program for asgard global resources llc ( click to go to their site ) , a leader in providing technical , craft and administrative staffing services to businesses , industry and government through locations in houston , dallas , long island , orlando , phoenix and southern california all areas with huge un - and under - banked populations . the potential market for this service is really big . it includes large employers , companies that process payroll and financial institutions that provide banking and payroll services to commercial customers . this system will simplify payments to widely dispersed employees and contractors while dramatically decreasing payroll distribution by offering a cost effective alternative to printing , cutting , and mailing paper payroll checks . it also helps to reduce a great deal of paper processing of checks and pay , eliminate lost checks , stop payments and minimize fraud . but best of all , this should help to significantly boost rlyc ' s revenues . $ 150 billion sent worldwide by relatives to home countries mexicans in u . s . send $ 16 . 3 billion a year back to mexico with $ 150 billion being transferred internationally each year , remittances are a really big business . in times past , people wanting to send money to relatives back in their home countries had few choices . many times their only choice was an expensive proposition like western union . more recently , more and more people have resorted to purchasing and mailing money orders in order to try to cut down on the cost of sending remittances . the problems with traditional money transfer methods with wire services , there are any number of inherent problems when trying to send money to relatives overseas . first , wiring funds across borders can be expensive . this can make it very cost - prohibitive to send smaller amounts of cash and often means that relatives must wait longer to receive their remittances because the sender has to save up until the amount is large enough to warrant the cost associated with the wire service . next there is the problem of logistics . both the sender and the recipient must be able to easily reach a storefront that offers the same wire company ' s services . even if they both are able to do this , the recipient may have to make multiple trips to the wire service office to check to see if their funds have cleared yet and can be released to them . lastly , the sender and the recipient are subjected to varying service fees depending on which wire service they choose . these fees can be very high and can significantly cut into the amount of money the recipient ultimately receives . so , even though using a wire service may be a fairly fast way to transfer money , it can be very expensive and logistically difficult to use . with money orders there is always the problem of mail service . although in america we have grown accustomed to relatively quick and reliable mail service , this is not always the case in foreign countries . this is especially true in underdeveloped nations , where most remittances are sent . a letter containing a remittance that a family is depending on to provide much needed food and shelter could take many days or even weeks to arrive . and , there is always the chance that it will never arrive at its destination at all , meaning that the sender ' s family could go hungry or end up on the streets . what is the best way to send remittances ? by far the most convenient , fast , safe and ultimately cost efficient method to send remittances is through a stored - value card . with this type of service , a person can easily activate a card and then just deposit funds into the account ( onto the card ) via loading station , telephone or the internet for easy use by relatives in his or her home country . the process is extremely easy and cost - effective . funds can be added to the card ' s account at an ever increasing number of convenient locations . the family member overseas can then draw down on those funds by presenting a card from that account to make purchases or they can use the card to withdraw cash from atms . it could not be any simpler . rlyc has already begun filling orders in june of this year , rlyc announced that it had received its first order for 2 , 000 pin - based stored value cards . the company stated that its growth estimates call for approximately 2 , 000 new stored - value cards being put into circulation each month . this could result in exponential revenue growth as new customers are added and its customers take advantage of its other financial services . moreover , though other programs it is working on , it could have one half million cards in the market within the next 18 months . rlyc plans to expand its services through partner companies and one - stop financial centers rlyc expects to fuel exponential growth of recurring revenue from individual card usage , monthly fees , as well as other activities occurring at its loading centers or the virtual financial centers it is planning . loading centers are retail locations , such as convenience stores , check cashing facilities or other types of retail facilities serving to dispense or receive cash facilitating transactions for the debit card consumer . rlyc has already established strategic relationships with leading card processors , vendors and distributors , and is in program development with key partners that may bring over 100 , 000 retail locations and a host of great opportunities to dramatically increase its brand recognition . rlyc plans a host of new financial products and service offerings some of the products and services rlyc plans to be launching in the coming months include commercial , auto and sba loans , mortgages , all types of affinity group ( loyalty / rewards ) cards , pharmacy discount cards , certificates of deposit ( cd ' s ) , health savings accounts and health and life insurance . rylc is expanding extremely rapidly and at this pace , should gain a whole lot of exposure to the investment community f - a - s - t ! ! ! rlyc plans to grow through joint ventures and acquisitions through a well - planned strategy to partner with major players in the financial services industry and through key acquisitions of complimentary companies , rlyc plans to fuel its growth . it has begun identifying and will negotiate business joint ventures , acquisitions and partnerships within the stored value card industry . rlyc is positioned to offer expanded payroll products as well as define a niche market for its private label stored value solutions . with corporate network ' s assistance , it expects to add new and expansive products linked to its card platform and provide its customers with a growing range of superior products and increased customer loyalty . rlyc plans to enter the emerging high growth health savings account ( hsa ) market rlyc has entered into an agreement in principle with mydaily corp . , an employee benefit and financial services company , to provide health saving account ( hsa ) stored value debit cards that will enable employees to easily pay routine medical bills with pre - tax dollars . health savings accounts ( hsa ) are tax - sheltered savings accounts similar to an ira , but earmarked for medical expenses and are part of a high deductible insurance plan . deposits are 100 % tax - deductible for the self - employed and for employees of companies that offer an hsa . this could be an enormous new market for rlyc it is estimated that all millions of non - elderly americans will soon have access to a health savings account , creating a market of unprecedented potential . in fact , due to the rising costs of employer - sponsored health plans , it is also estimated that one in every two major employers in the united states is considering consumer directed health plans and hsa for their employees . experienced stored value card and financial services industry executive named ceo of relay capital corp . e . reese bogle iii , experienced financial services and stored value card industry executive , has been named relay ' s . most recently he was one of the founders , and served as executive vice president and chief operating officer of interstate net bank ( www . isnbank . com ) , establishing it as a visa principal member . prior to this , mr . bogle , was vp of e * trade bank ' s corporate development and strategic alliances group and president of telebanc insurance services , inc . he also served as vp and marketing director of premium bank , and held a variety of managerial and marketing positions at leading financial services companies . relay will be adding real depth experience to its management team the next step is to bring a well qualified management team to relay capital said mr . bogle . once the team is onboard , we intend to build relay capital into a diversified financial services provider that , in addition to looking for exponential growth of recurring revenue generated from individual stored card usage , as well as other financial service activities occurring at our card loading centers or its virtual financial centers , we potentially plan to provide : commercial loans , auto loans , sba loans , mortgages , certificates of deposit ( cd ' s ) , health benefits ( dental , vision ) , life insurance benefits , pharmacy drug discounts , loyalty and reward programs , and shopping discount programs . with innovative products and services targeted to trillion dollar market ; a host of powerful partners ; key acquisitions in the works ; orders already coming in ; and a top - notch management team to bring it all together , rlyc seems to be headed for sunny skies . this company will not remain below the radar screens of wall street ' s mover shakers or even the average investor for much longer . . . if you are on the lookout for companies that have what it takes to experience rapid growth , but are still trading at rock bottom prices , you should call your financial advisor today about relay capital corp . ( rlyc . pk ) . e - mail first name last name phone number this program is expected to be huge and could make a tremendous amount of money for rlyc ! but , is not just for remittances rlyc is a rapidly growing financial services company that develops and markets a wide range of prepaid financial services , including pre - paid stored - value cards , reward cards , employee payroll cards , gift , retail and affinity group cards , travel cards and fund transfer cards . it encompasses both the marketing and distribution of pre - paid and pay - transfer cards in concert with the development of loading centers . loading centers are retail locations , such as convenience stores , check cashing facilities or other types of retail facilities serving to dispense or receive cash facilitating transactions for the stored - value card consumer . rlyc offers great stored - value solution and the potential to make millions ! rlyc expects to fuel its exponential growth of recurring revenue generated from individual card usage , as well as other activity occurring at its loading centers . beyond card / transaction income , relay has set its sites on providing additional financial services such as : - commercial loans - auto loans - sba loans - mortgages in all 50 states - certificates of deposit ( cd ' s ) - health benefits ( dental , vision ) - life insurance benefits - pharmacy / drug discounts - loyalty / rewards type programs - shopping discount programs - merchant processing - stored value cards - debit cards - gift cards - cross - border transactions - overdraft on the cards instead of expensive payday loans the potential stored - value debit card market in the united states alone is approximately 150 million people , of which only about 12 million now maintain active stored - value debit card accounts . rlyc already has powerful partners technology alliance group ( tag ) since 1994 , the world class data center operation , now known as tag , has supported "" mission critical "" applications for companies of all sizes and in all lines of business on a worldwide basis , including several fortune 500 companies . the core product suites supported by tag have included mainframe outsourcing , internet hosting solutions and a wide variety of disaster backup and recovery alternatives . as with all its client relationships , tag brings to relay capital a highly securetechnology infrastructure to support its corporate web presence , email , interactive voice response ( ivr ) system and support of all future financial service offerings . with over 10 years of experience supporting the financial industry alone , including nearly 50 u . s . banks and others worldwide , tag offers a tremendous knowledge base in the financial marketplace . cabbage solutions the principles of cabbage bring an accumulated 50 + years of experience in the financial industry . credentials include 12 years with the federal reserve system , vendor experience in all types of software and hardware solutions , as well as a variety of gift card , stored value card and debit card programs . in addition to its vast industry knowledge , cabbage also brings a vital component known as internet and data security . in today ' s world it is becoming widely agreed upon that a company ' s most valuable asset is it ' s data . once again , the principles of cabbage bring credentials including having been the president of the arizona fbi ' s cyber terrorism group known as infragard . access to several worldwide terrorist alert systems also keeps cabbage in a proactive position to protect its clients from newly released threats to the public internet . great business strategy : relay capital corp . is getting attention because rlyc has the right technology , at the right time , in the right markets . rlyc has a strong management team , world - class partners , and great new products that are ideal for multiple markets . strong management team : the new ceo of relay capital corp . is e . reese bogle iii , who is best known for having co - founded and served as an officer of interstate net bank ( www . isnbank . com ) . mr . bogle is building the management team with experienced executives who are known and respected in the financial services industry . world - class strategic partners : rlyc ' s strategic partner for transaction processing is an industry leader . rlyc ' s business operations are ready for expansion in response to growing demand for relay capital ' s stored - value cards . rlyc is also exploring opportunities to partner with some of the leading brands in consumer goods . innovative stored - value products : relay capital ' s stored - value cards are helping families , businesses , and communities to go about their daily lives in a better way , using rlyc stored - value cards for transferring money , banking , and adding many new benefits to participation . rlyc has the right managers strategic partners for multi - million - dollar revenues and industry leadership . for more information , click here company : relay capital corp . otc - pink sheet : rlyc industries : financial services , retailing , health care product : prepaid mc / visa cards and other financial services to join market movers mailings click here to find out more . highland inc . 2000 worthy down chriss church barbados wi l . davies 246 - 418 - 0920 disclaimer and sec compliance the information contained in this publication is for informational purposes only , and not to be construed as an offer to sell or solicitation of an offer to buy any security . investing in micro - cap penny stocks should be considered as extremely speculative and risky as it may result in a loss of all or some of your investment . highland inc . is not a registered investment advisor or broker dealer . highland inc . received compensation for this newsletter service for rlyc . the compensation is fifty thousand from a non - affiliated third party . because highland inc . is receiving compensation for its services , there is an inherent conflict of interest in the statements and opinions and such statements and opinions cannot be considered independent . highland inc . makes no representation or warranty relating to the validity of the facts presented nor does the publisher represent a warrant that all material facts are necessary to make an investment decision presented above . factual statements contained in this publication are made as of the date stated and they are subject to change without notice . this release may contain statements that constitute forward - looking statements within the meaning of sec . 27 a of the securities act of 1933 , as amended , and sec . 21 e of the securities exchange act of 1934 , as amended . the words may , would , will , expect , estimate , anticipate , believe , intend , and similar expressions and variations thereof are intended to identify forward - looking statements . media matrix 7025 county rd . , 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: 3 locations free : orlando , las vegas , ft laud . congratulations on receiving this special e - mail invitation ! ! ! these invitations were only being sent out . . . to a very select group of individuals like yourself . . . who were confirmed and qualified to receive this spectacular offer ! ! ! please click on the link below to register and receive your complimentary three night stay in your choice of three ( 3 ) of these nine ( 9 ) fun filled locations ! ! ! - magical orlando - las vegas . . . city of lights - palm beach , fl . . . . florida ' s best kept secret - fabulous ft , lauderdale - atlantic city . . . city of excitement - new smyrna beach , fl . . . . secluded from it all - daytona beach , fl . . . the worlds most famous beach - key west , fl . . . the southern most point in the u . s . - miami south beach . the city that never sleeps so log onto : http : / / www . famtriptravel . com / 3 mv _ cntr . html . . . for your complimentary vacations for two ! ! ! keep in mind . . . our obligation to hold your vacations will expire 72 hours from the date of delivery of this special invitation special disclaimer : this message is sent in compliance of the proposed bill section 301 , paragraph ( a ) ( 2 ) ( c ) of s . 1618 . by providing a valid remove me feature it can not be considered spam . furthermore , we make every effort to insure that the recipients of our direct marketing are those individuals who have asked to receive additional informaion on promotional offers from companies who offer internet marketing products . again we apologize if this message has reached you in error . screening of addresses has been done to the best of our technical ability . we honor all removal requests . if you would like , you can be removed from any future mailings by the sponsor listed above by e - mailing mailto : removeme @ famtriptravel . com with the subject remove me in the subject line . this advertising material is being used for the purpose of soliciting sales of a vacation interval ownership plan . ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: an invitation to advertise on freightmart ! freightmart . com - ship anything . . . anywhere . . . anytime . . . auction style ! need more info ? | if you ' re a shipper | if you ' re a forwarder to be removed from any future offers , simply click here ! ",1 +"Subject: perfect visual solution for your business now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buiiding a positive visuai image of your company by creating an outstanding ioqo , presentable stationery items and professional website . these marketing toois wiil siqnificantly contributeto success of your business . take a iook at our work samples , hot deai packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: do i require an attorney to use this system and clean up my record purge all of your card payments . cancel debts and never make another payment ? discharge debts quickly , painlessly , legally . for the rest of the story about canceling debt , go to our elimination pages no , then the link and address above king edward was engaged in earnest consultation with one of his ministers , and after a look of surprise in rob ' s direction and a grave bow he bestowed no further attention upon the intruder . but rob was not to be baffled now your majesty , he interrupted , i ' ve important news for you ",1 +"Subject: check this impotence medication don ' t ignore your impotence problems feeling good is around the corner ! try now http : / / buychepmeds . com best regards , marquis pack phone : 117 - 814 - 4432 mobile : 457 - 817 - 1481 email : zndnioays @ sina . com . hk s ^ t , 0 . p http : / / buychepmeds . com / emover . php",1 +"Subject: veryy useful how to save on y slapstick our medlcations over 70 % . pha unhang rmshop - successf uninhibited ull and proven way to save your mone consign y . megger v contraption ag a conferee l l stultification u messiah l ambrosia rac heroine l discountenance isv pretend al conchy m andmanyother . best p exaltation rlces . worldwid digraph e shlpplng . easy order f roulade orm . total confi monocle dentiaiity . 250 , 000 pitiless satisfied customers . order today and sa prowess ve !",1 +"Subject: ctfg trends upward as company begins rollout of acquisition strategy otc quickstats june 29 , 2005 at a glance ticker symbol : ctfg sector : title insurance industry : financial services current price : $ 0 . 39 shares outstanding : 45 , 457 , 200 approx . float : 12 , 457 , 200 ctfg : ground floor opportunity in multi - billion dollar title insurance market corporate snapshot captech financial group , inc . , is a florida corporation headquartered in lighthouse pt . , florida that trades under the symbol ( otcbb : ctfg ) . captech financial group , inc . , via its new acquisition of national security title agencies , llc . , ( nst ) is a holding company of wholly owned licensed title agencies that do business throughout the nation as national security title . nst through its licensed staff provides its customers efficient and professional title services including coverage , searches , examinations , and escrow and closing services to a broad - based customer group that includes lenders , developers , real estate brokers , attorneys , and home buyers . recent news ! ! ! ! lighthouse point , fla . , june 28 ( prnewswire - firstcall ) - - captech financial group , inc . ( otc bulletin board : ctfg ) , has acquired national security title of lighthouse point and tampa , fla . , respectively . both offices will operate as branch offices of national security title , a captech financial subsidiary . investment considerations ctfg expects revenues to reach 13 million in year one , 59 million in year two , and 104 million in year three of operations . ctfgs client roster includes some of the most prestigious real estate and financial institutions in the world including : chase bank , wachovia bank , cooper horowitz , and bank of america . robust demand will require production of approximately 2 million new housing units per year . the home ownership rate will exceed 70 % by the year 2013 . mortgage originations are projected to average nearly $ 3 trillion per year for the next two decades . ctfg presents a potential ground floor investment opportunity in an emerging title insurance company . visit the ctfg websites at : www . . com this email is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . all assembled information within is subject to change without notice . the assembled information within this email is based on public information supplied by the company or from other sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . information in this email may contain forward looking statements as defined under section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . an example of forward - looking information are statements relating to the future capital expenditures , future funding sources , anticipated sales growth , and potential contracts . these and similar forward statements are subject to a number of known and unknown risks and uncertainties outside our local control that could cause actual operations or results to differ materially from those anticipated . power house promotions accepts no liability for any losses arising from an investor ' s reliance on or use of this report . this assembled information is for informative purposes and is not intended to be used as the sole source of information on a company . always do your own due diligence and consult a financial advisor . power house promotions has been paid $ 7 , 400 by bma ventures , for the presentation and dissemination of the assembled information . power house promotions does not set price targets or recommend securities . power house promotions 1846 e . rosemeade pkwy , # 104 dallas , tx 75007 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: clear benefits of creative design lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwheiming ; but a good catchy logo , stylish statlonery and outstandlng webslte wiil make the task much easier . we do not promise that havinq ordered a iogo your company will automaticaliy become a world ieader : it isguite clear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: your online sales are low because you don _ t have enough visitors ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisible virtualiy , which means efforts spent in vain . lf you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visible in piaces where people search for information , i . e . submit your website in muitipie search enqines . submit your website oniine and watch visitors stream to your e - business . best regards , cecilybaxter _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: logo , stationer , website design and so much more ! lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwheiming ; but a good catchy logo , styllsh statlonery and outstandlng webslte wiil make the task much easier . we do not promise that having ordered a iogo your company wili automaticaily become a world ieader : it isguite clear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: a chance to get new logo now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visuai imaqe of your company by creating an outstandinq ioqo , presentabie stationery items and professionai website . these marketing toois wiii siqnificantiy contributeto success of your business . take a look at our work sampies , hot deal packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! we ship to any country ! get it right now ! . ",1 +"Subject: new love tabs shop . visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other iove enhancers all in one ! operative support , fast shipping , secure payment processing and complete confidentiality ! click here to find your verlfied by bbb and approved by visa iove pil 1 ! ",1 +"Subject: make your rivals envy lt is really hard to recollect a company : the market is full of sugqestions and the information isoverwheiminq ; but a good catchy logo , styllsh stationery and outstanding website wili make the task much easier . we do not promise that having ordered a iogo your company will automaticaliy become a worid ieader : it isquite clear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom desiqn of logos , stationery and web - sites . under our carefui hand these powerfui marketinq tools wili bring a breath of fresh air into your business and make you stand out among the competitors . you are just a ciick away from your future success . ciick here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: i would like to help your marketing efforts ! hello fellow entrepreneur , my name is jon roberts and i represent one of the largest lead companies on the internet . we specialize in national , local area code , and gender based real time leads . we also run custom marketing campaigns for organizations that want a more targeted lead due to their line of service or product . you can reach me at the number below or simply reply to this email . we hope to serve you soon - thanks ! jonathan robertsl - 800 - 663 - 0311 theleadmanl @ yahoo . com * if you have received this message in error or would like to be removed from the mailing list please reply to this email with your removal request and it will be processed immediately ! *",1 +"Subject: will you be the next one selected for his public challenge ? my simple , yet proven strategies for generating multiple streams of unlimited income work - now let me take you by the hand and prove it ! . . . "" "" on live tv i promised the world i would make $ 24 , 000 in 24 hours , and . . . i failed - instead i ' cracked the code ' and made $ 94 , 532 . 44 in 24 hours . "" i want you to look over my shoulder , so to speak and watch how i do it . . . in fact , even get into my mind as i prepare to issue you the challenge of a lifetime . robert g . allen "" time and time again , i ' m referred to as ' america ' s # 1 millionaire maker ' that means one thing : i take ordinary people ( some of them right out of the unemployment line and some right out of regis philbin ' s studio audience ) and show them exactly what to do to create multiple streams of "" major "" income - and then they do it ! "" "" and with the release of my new book , ' multiple streams of income ' i ' m on the prowl again - looking for a small , select group of ordinary people who want my help in creating instant wealth like i have for countless others ! if you qualify , there ' s only one small , reasonable catch : "" i will use your new cash flow success story in my upcoming promotions . so if you can live with that ' catch ' - then you must stop everything you ' re doing and read the rest of this letter right now "" ( important : you must respond to this invitation within the next 60 minutes . due to the time - sensitive nature of this opportunity , we must release your reserved slot to someone else if you do not respond within the allotted time . ) invitation clock count - down you must r . s . v . p . within minutes dear friend seeking financial independence and personal freedom , hi . my names robert allen . i ' m the author of two of the best selling financial books in history ; both # 1 new york times best sellers : nothing down creating wealth my books have sold over 2 . 5 million copies , over 150 , 000 people have attended my wealth seminars , and i ' ve accepted challenges by the press and have proven time and again that my money making strategies work . in fact , recently i was challenged again on national tv . it was in front of a live audience . i was challenged to take someone from regis philbins studio audience and teach them my wealth building strategies and guess what ? just 90 days after following my systems , pat watson was $ 20 , 000 wealthier ! listen , you ' ve heard all the get rich now claims and you ' re sick of seeing them ! the fact is most of those people who claim to know how you can make money haven ' t made much money themselves let alone taught others how to do it ! the difference between them and me is that i ' ve proven my strategies time and time again in the national limelight and my systems truly work in fact , i ' ve been dubbed america ' s # 1 millionaire maker . right now , america and i need you for my upcoming nationwide tour to share your story of upcoming success and wealth to those who need hope - all across america . let me tell you about a few of my "" money challenges "" . . . this is where i put my money where my mouth is : i was also challenged by the los angeles times : you might remember when the los angeles times challenged me to buy real estate with nothing down . with a reporter by my side , $ 100 for living expenses , and armed only with my knowledge ; i purchased 7 properties worth $ 772 , 000 , all in 57 hours . i told the mayor of st louis missouri ( the show me state ) : send me to any unemployment line . let me select someone who is broke , out of work , discouraged . let me teach him in two days time the secrets of wealth , and in 90 days he ' ll be back on his feet , with $ 5 , 000 cash in the bank , never to set foot in an employment line again . i selected a young couple from the unemployment lines of st . louis , missouri . ninety days later they earned $ 5 , 000 using one of my techniques , and . . . . within 12 months they had earned over $ 100 k ! my proudest moments are when i coach starving millionaires ( people who should be millionaires but aren ' t ) on wealth building strategies and see them achieve extraordinary results , again and again ! i ' ve done these same challenges in other major cities - washington , d . c . , miami , boston , san diego , and new york - all with similar results ! this brings me to my next challenge in which i took all of the hype out of the high - powered profit potential of the internet , and decided to make it a reality for my students . i said : sit me at any key board of any computer in the world with internet access , and i will in 24 hours , earn at least $ 24 , 000 cash ! i got myself into the life or death mindset and i went to work i started my internet challenge at exactly at 12 : 38 pm in front of live television , i held my breath , and turned my system on and signed on to the internet in 6 hours and 11 minutes i had generated $ 46 , 684 . 95 then i went to sleep . . . and when i woke up the next morning and checked the computer - ( with cameras rolling ) : the total was now $ 78 , 827 . 44 this was exciting because i knew i still had four hours left ! that afternoon , 24 hours after the challenge had begun . . . the total had grown to $ 94 , 532 . 44 in a mere 24 hours ! why do i tell you all of this ? well its certainly not to brag but its to prove that i practice what i teach ! and since i ' m ready to announce my next challenge , i thought you ' d like to hear my success story - and how i can help you regardless of where you are in your financial life . so heres my newest challenge : send me a group of people who want to become financially independent . let me teach them my proven , wealth building strategies . and in 90 days , they will have developed multiple streams of income . eventually these streams of income may give them the freedom to do what ever they want for the rest of their lives . thats my newest challenge and i want you to be a part of it . you have everything it takes to break the mold of an average income earner but you just need to decide to do it ! listen , i know the reason you ' re still reading this letter is because you believe there still is hope theres still a chance a glimmer of hope that you can be a millionaire . its hard to leave your comfort zone . but you can do it and i will help you . but first , let me tell you about a few people who ' ve had the courage to follow their instinct , break out of their comfort zones , and follow my advice : robert , my life was never the same again here ' s the incredible news : only one year after using your strategies , ( coincidentally our twelfth wedding anniversary , ) we became millionaires , yes , a million dollars in equity ! wow ! depending on what time frame you measure from , that ' s either ' incredibly fast ' or ' miraculously fast ' ! six months from picking up your book , four - plus months from becoming protgs , two months and nine days after quitting my job ! that takes my breath away ! . . . this letter stands as testimony to your accomplishments . . . robert , thank you , thank you , thank you ! - - karen n . b . , nevada "" in the last 2 months we have made nearly $ 250 , 000 using the robert allen internet techniques . "" - - olie v . andrei k . , ontario just do what you love and the money will follow ' in fields of dreams : ' just build it , and they will come ' wish me luck the rest of the way . haven ' t i told you what the sale price of this building was ? it was $ 57 , 000 ! i ' m really excited and am on my way finally ! thank you for all your encouragement . - - eugene w . , california "" in my first - ever deal i ' m acquiring a $ 5 . 7 million 91 unit apartment building for $ 4 . 25 million using none of my own money . "" - - greg w . , new york ( remember : i will always be up front and honest with you . the amount of success you may have will depend upon important key variables . . . these experiences are not typical . you may not be as successful as these testimonials shown . ) as your mentor , let me tell you about the first secret to building wealth : having multiple streams of income flowing into your bank account . would it change your life completely if , per chance , you were to lose your major source of income today think about that ! what would you do if you lost your sole source of income ! ? i will teach you how to develop other streams of income , so you can protect yourself from ever having to deal with this imaginary scenario . heres some of what you ' ll learn : 1 . creative real estate investing : 76 % of all millionaires started their fortunes in real estate . i ' ve sold more real estate books than any other author of all time . 2 . information marketing : have you ever had a million - dollar idea , but never acted on it ? learn to sell your ideas for royalties the hottest millionaire - making trend . 3 . stock investing : how do the wealthy take advantage of the amateur investors in the stock market ? learn to make consistent money regardless of what the stock market does . 4 . internet enterprises : how i made $ 94 , 000 live on tv in 24 hours ! what did i do that was different ? these are proven income - generating avenues that build wealth . wealth comes from understanding the power of multiple streams of cash flow . . . on cruise control ! my official invitation to you right here right now i ' m inviting you to experience my member ' s only training in my new multiple streams of income downloadable training course . in this brand new digital course , i ' ll be teaching you all of my proven , successful and profitable wealth secrets . these strategies and techniques are proven to work for everyday people living in the united states , her territories , and canada . international applicants are not being accepted at this time . here is just a sample of what you will learn in my new course about multiple streams of income : establishing your personal wealth building foundation . how to earn $ 100 , 000 to $ 250 , 000 a year for life . how to retire early . how to grow your own money tree . profiting from 5 massive trends that will create many millionaires in the next century . building a small or not so small fortune on the internet : double your internet income and work less hours . secret strategies for getting people to your website . the easiest products to sell on the internet . how to sell products on the internet without buying or shipping them . how the internet can pay for your retirement . developing multiple streams of income : how to start your very own multi - million dollar business from your kitchen table . 6 powerful businesses you can start for less than a thousand dollars . create a money making machine that runs 24 hours a day , 365 days a year without an office or employees . how to create streams of income that , once established , require little or none of your personal attention . the seven essential secrets for finding the most powerful home - based business . real estate strategies that work . how to buy a house or condo , sell it for less than you paid and walk away with a cash profit . how to buy millions of dollars of real estate with none of your own money . how to buy a home paying no interest . how to live in a million dollar mansion for the price of living in an ordinary house . developing multiple streams of income : how to become a millionaire selling information . make a thousand dollars a day selling "" how to "" information . how to get total strangers to practically line up and literally beg you to take their money for your information product . how to make $ 20 a word every time you sit down to write . the fastest way to turn an idea into cash . if you believe you have what it takes to succeed with my guidance , i ' m going to do something absolutely "" unheard of . "" ( remember - i ' ve accepted a public challenge , so i ' m willing to do practically anything to help you succeed ! ) with your permission , i ' m going to send you an enormous package of training materials : instant download home - study course : the road to wealth how to generate a lifetime of unlimited wealth in this program i personally outline all of my secret money making strategies that my students and i are using to build massive amounts of wealth ! build your real estate fortune : the robert allen money power system you get your own copy of this exclusive real estate course ! profit from the "" perfect "" investment . i ' ve made millions doing this - now you get the secrets of making risk - free offers , finding "" cash cows "" , and how to use "" ultimate leverage "" . . . even includes copies of forms for you to use ! special report 1 "" 7 strategies for making a fortune online "" how to get more visitors to your site now learn the secrets to writing great emails become an expert on giving your website visitors instant gratification . learn the secrets of how the big web sites keep people coming back . special report 2 "" nothing down real estate techniques "" 50 nothing down techniques how to make the banks work for you the fundamentals of leveraging capital how a partners money can make you money creative financing options that work special report 3 "" zero to $ 1 , 000 , 000 on $ 49 a month "" the 3 things you must do what the big secret is . how to use all of your power the fundamentals of finance where do i get the money to start how to make your plan and then work it special report 4 "" how to make $ 24 , 000 in 24 hrs . on the internet "" exactly how i made $ 94 , 532 . 44 in 24 hours how to develop a target audience how to find out what your audience wants to buy how to motivate your target audience to act now getting started - your action plan how to find the hungriest fish in the lake how to discover the kind of bait your fish will bite on . this is a strictly limited offer ( remember - i ' ve accepted a public challenge , so i ' m willing to do practically anything to help you succeed ! ) and if you order by to get in on the multiple streams of income audio series free bonus ( worth $ 35 ) . i kid you not the information in this audio alone can turn your entire life around , and bring you all the wealth you could ever need . copyright 2004 esi one , inc . education success , inc . 5072 n . 300 w . provo , ut 84604 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: no need to pay more - cheapest oem online . what is oem software and why do you care ? http : / / mth . kr 6 h 512 vzc 2 rh 32 . spurternj . com no one gossips about other people ' s secret virtues . better fare hard with good men than feast it with bad .",1 +"Subject: failure notice hi . this is the qmail - send program at nsl . mxlinux 2 . com . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : this address no longer accepts mail . - - - below this line is a copy of the message . return - path : received : ( qmail 30891 invoked from network ) ; 19 jul 2005 10 : 57 : 17 - 0000 received : from ntokymo 09176 . okym . nt . adsl . ppp . infoweb . ne . jp ( helo mailwisconsin . com ) ( 218 . 229 . 92 . 176 ) by wpc 2010 . amenworld . com with smtp ; 19 jul 2005 10 : 57 : 17 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24816188 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ grafex . net user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: undelivered mail returned to sender this is the postfix program at host relayl . netspace . net . au . i ' m sorry to have to inform you that your message could not be be delivered to one or more recipients . it ' s attached below . for further assistance , please send mail to if you do so , please include this problem report . you can delete your own text from the attached returned message . the postfix program : host mail - in . netspace . net . au [ 210 . 15 . 254 . 248 ] said : 550 : recipient address rejected : gperkes @ netspace . net . au has expired ( in reply to rcpt to command )",1 +"Subject: great idea for you byrdshot mortgage rates are about to rise cash in now ! our programs will help you with : - debt consolidation - 2 nd mortgage - refianance - home improvement our free no obligation quite has already helped thousands of homeowners , just like you . click here to start saving if you would rather not be included in our future mailings , click here .",1 +"Subject: my portfolio hi my name is ernie , i may not have the right email address , if not please excuse my intrusion . if you are interested in some web design work for your company . please click the link below to see my portfolio : http : / / www . mywebdesignportfo lio . com / thanks , ernie if you would like to be removed from my address book permanently , please click this link and type remove in the subject line : click here : remove ",1 +"Subject: teach and grow rich do you want to teach and grow rich ? if you are a motivated and qualified communicator , i will personally train you to do 3 20 minutes presentations per day to qualify prospects that i can provide to you . we will demonstrate to you that you can make $ 400 a day part time using this system . or , if you have 20 hours per week , as in my case , you can make in excess of $ 10 , 000 per week , as i am currently generating ( verifiable , by the way ) . plus i will introduce you to my mentor who makes well in excess of $ 1 , 000 , 000 annually . many are called , few are chosen . this opportunity will be limited to one qualified individual per state . make the call and call the 24 hour pre - recorded message number below . we will take as much or as little time as you need to see if this program is right for you . * * * 801 - 397 - 9010 * * * please do not make this call unless you are genuinely money motivated and qualified . i need people who already have people skills in place and have either made large amounts of money in the past or are ready to generate large amounts of money in the future . looking forward to your call . * * * 801 - 397 - 9010 * * * * to be taken out of this database : secco 44 @ poetic . com 9059 dmelo - 270 bmbll 5 ",1 +"Subject: 10 million fresh email addresses sent to you on cd for free ! ! ! try before you buy ! ! get ready for a deal you ' ve never seen before ! 10 million hot fresh email addresses and much more ! try before you buy ! ! ! ! ! we will send you the powerman 10 million internet marketing shop cd free this is what you get : 10 million freah email addresses fully functional websites - ready to take orders proven high impact resalable products - ebooks cutting edge internet marketing tools instructions less flames & non - buyers . * less contact with anti - commerce radicals & extremists . remember that potential income chart at the beginning of this message ? can you imagine the kind of money you could make if you mailed one million pieces and sold only one tenth ( . 01 % ) of one percent ? you do the math , you ' ll be amazed ! this product will prove to be the best of it ' s kind compared to any cd in terms of hours and money spent bringing it to market . no competitor will ever duplicate the effort of what it takes for us to produce this superb product . we never have compromised on quality , and surely won ' t release any product before it passes our "" high standards "" test . this is not a rental list that is restricted to a one - time mailing . you are purchasing an e - mail address list for your own personal mailings and may use it over - and - over . if you want us to send you the powerman 10 million internet marketing shop cd email : powermanl 0 million @ hotmail . com subject line : send cd your mailing address : _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / _ / * * f r e e b o n u s e s * * "" business on a disk "" bonus offer : every survey has always indicated that the easiest and most profitable product to sell on the internet is information ! if you have an "" information "" type product , then there is no easier way to become financially independent . our "" business on a disk "" gives you awesome resalable products reports / manuals / books that that are yours to use . you may instantly start your "" information product "" business ! just think , you can reproduce a complete book on a floppy disc in just a few seconds , for around 35 cents . these are the same books that have sold for $ 99 . "" special reports "" cost you pennies to produce and can be sold for as high as $ 15 . . . or the whole group for as high as $ 140 . 00 . "" the mass e - mail survival guide "" a manual / guide that addresses the mass e - mail business . especially useful for beginners . "" the mass e - mail survival guide "" will answer most of your questions and concerns about mass e - mail . an exclusive for our customers . . . included free . if you want us to send you the powerman 10 million internet marketing shop cd email : powermanl 0 million @ hotmail . com subject line : send cd your mailing address : - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: no further access to your account will be allowed dear lasalle bank customer , this email is to inform you , that we had to block your lasalle bank account access because we have been notified that your account may have been compromised by outside parties . our terms and conditions you agreed to state that your account must always be under your control or those you designate at all times . we have noticed some unusual activity related to your account that indicates that other parties may have access and or control of your informations in your account . these parties have in the past been involved with money laundering , illegal drugs , terrorism and various federal title 18 violations . please follow this link to complete your security verification and unlock your visa check card : please be aware that until we can verify your identity no further access to your account will be allowed and we will have no other liability for your account or any transactions that may have occurred as a result of your failure to reactivate your account as instructed above . thank you for your time and consideration in this matter . sincerely , lasalle bank accounts department . note : requests for information will be initiated by our lasalle bank business development group , this process cannot be externally expedited through customer support ",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 12 : 59 : 18 + 0200 from ntibrko 70111 . ibrk . nt . ftth . ppp . infoweb . ne . jp [ 211 . 2 . 26 . 111 ] - - - - - the following addresses had permanent fatal errors - - - - - - - - - - transcript of session follows - - - - - 554 5 . 0 . 0 username or alias unknown 550 5 . 1 . 1 . . . user unknown",1 +"Subject: get me thru july newsletter the get me thru newslettervenita king "" the get me thru coach "" volume 1 issue 7 july 2005 "" igniting the power of inspiration . . . "" thank you for reading my newsletter . you will not be the same , i promise ! sign - up todayit ' s free and priceless . . . tell a friend aboutthis newsletter learn more aboutvenita ' s coaching stay up to date with get me thru news venita ' s promiseyou have my word , i will not share your contact information with anyone . thank you for allowing me to contact you ! be my guest and reprint or distribute "" the get me thru newsletter "" as long as you include thecopyright and web link to www . getmethru . com venita king "" the get me thru coach "" venita @ getmethru . comcopyright 2005 all rights reserved . the get me thru collectionis a registered trademark cick here to join the get me thru newsletter now ! ! discover get me thru nuggets of wisdomthat thousands use daily to increase their success - from the author of "" the voice of my boundaries "" in this issue the paradox of stressthe thing you need but should not keep . . . the coach ' s play of the month : "" motivation excites you about someone else ' s answers . inspiration ignites your inner strength through questions that lead you to successful actions and self - awareness . "" venita ' s commercial moment monthly special the paradox of stress there is a level of genius in every human being and it is called a ' gift ' . stress however plays a huge role in how we deliver it to the world . the mystery is that stress is a good thing when used properly and a bad thing when misused . how can that be ? consider these get me thru points about stress . i learned about them the hard way . you don ' t have to make my mistakes . stress is a process in life and not just a thing that happens stress literally enters your being daily and it must also be shown the exit door daily stress should be utilized as a tool for forward movement in the face of challenge stress keeps you alert at the beginning , weighs on you midway and brings you down in the end if you keep it to long stress is an excellent motivator but unlike motivation , it doesn ' t just disappear a get me thru nugget of wisdom : wherever you store your stress is where you can expect to experiencethe most damage , physically , spiritually or financially . . . in the end , someoneelse most likely will have to inform you about the severity of your damage . a get me thru question : do you process your stress daily for authentic success or do you store it daily for disaster ? so you see the parameters of stress will enter the board room or home , it has no preference . - it ' s all about people and not position . however , when ignored stress will ultimately determine how far each one of us goes in life - guaranteed ! read what i learned about how to process stress and how misusing it nearly cost me my life in chapter 8 of "" the voice of my boundaries "" . the coach ' s play of the month : "" motivation excites you about someone else ' s answers . inspiration ignites your inner strength through questions thatlead you to successful actions and self - awareness . "" the get me thru question for this month should last you for a lifetime , because stress is a part of life forever . whether you want to be a millionaire or merely survive , you too must make a decision about processing stress . your success in life demands it ! learn from my get me thru nuggets of wisdom and then work on your own ! let me hear from you soon ! sign my guestbook venita ' s commercial moment monthly special : buy the voice of my boundaries in the get me thru signature pocket during the month of july and receive set of 21 get me thru share cards too ! and click here to buy now your response to my new get me thru jingle get me thru meditation songhas been incredible . many of you heard them if you attended one of my march or april inspiring success workshops . just click here to listen to an excerptfrom the meditation song . the link takes you to my website . click the play button on the media player in the right column and enjoy ! may the voice of your boundaries guide you always . many blessings ! venita cick here to join the get me thru newsletter now ! ! get me thru , inc . 1019 old monrovia rd . huntsville , al 35806 this e - mail message is an advertisement and / or solicitation . - - no virus found in this incoming message . checked by avg anti - virus . version : 7 . 0 . 323 / virus database : 267 . 9 . 1 / 51 - release date : 7 / 18 / 2005 ",1 +"Subject: afforable health care men ' s health : viagra , cialis , levitra anti - depressants : ativan , paxil , prozac , zoloftpain relief : soma , ultramweight loss : meridia , phentermine viagra - $ 2 . 0 / pillsoma - $ 1 . 4 / pillcialis - $ 4 . 2 / pillvalium - $ 3 . 0 / pillxanax - $ 2 . 3 / pillambien - $ 2 . 7 / pillultram - $ 1 . 2 / pillativan - $ 2 . 0 / pilllevitra - $ 4 . 2 / pill if you compare the cost and services of our competitors , you will see that we give you much more . . . for less . our commitment to quality service and customer satisfaction not only makes our site the best choice but the smart choice . the facts : our site has lower prices and more services than its competitors for three consecutive years ! our prices are between 43 . 43 and 58 . 8 % ( an average of 66 . 32 % ) less than the market average . visit us http : / / ioaxint . enjoydays . info / ? 6 c 2 ae 3 afaoaf 7 bdol 9325599 cf 9 zbb 83 / ",1 +"Subject: be your own private eye online internet investigator - new for 2002 - internet software for online investigations find out anything about anyone online uncover information about : enemies , debtors , neighbors , friends , employees , co - workers , your boss , yourself , associates , former school or military buddies , even a new love interest . become an internet investigator and explore an exciting new world of valuable information . with internet investigator you can investigate : people , credit records , social security numbers , employment records , school records , criminal records , driving records , addresses , phone numbers ( even some unlisted ) , hidden assets , family trees and a whole lot more ! click here for more information unsubscribe instructions this message is a commercial advertisement . it is in full compliance with all federal and state laws regarding email advertising , including the california business and professions code . we have provided opt out email contact so you can request to be taken off our mailing list . in addition we have placed adv : in the subject line to provide you with notification in advance that this is a commercial advertisement . we do not wish to send our advertising to anyone who does not wish to receive it . if you would rather not receive any further information from us , please click to be taken off our list . in this way you can opt - out from the list your email address was obtained from , whether it was opt - in or otherwise . please allow 5 - 10 business days for your email address to beprocessed and taken offall lists in our control . meanwhile , delete any duplicate emails that you may receive and rest assured that your request will be honored . if you have previously requested to be taken off this list and are still receiving this advertisement , you may call us at 1 - ( 888 ) 817 - 9902 , or write to : abuse control center , 7657 winnetka ave . , suite 245 , canoga park , ca 91306 ",1 +"Subject: esecure online pharmacies you get the medications you request ! if you are not criticized , you may not be doing much . he who knows others is wise ; he who know himself is enlightened . there is no such thing as a lover ' s oath . war is just to those to whom war is necessary .",1 +"Subject: what ' s going on hi u . this is sarah gal . where have you been hiding ? if you want to hang out and talk some more i would sure like too . hey check out these new pictures of me i just got taken . have a good one . http : / / mmjx . sakarsucks . com / sal 6 / martina sonant deprecatory boogie northampton .",1 +"Subject: hiya hon , , . . . mandamus hi there babie , it ' s the 1 and only crystal clear remember from the dating website . i was told all about you so i thought id say hi hon . i want you to see my pictures and read about me . i wont sleep until i hear from you sexy . : d later baby , cryssie gal http : / / cix . bornfruit . com / cr 25 / no more - jeffersondarcy . com / 1 m / rpbw 2 jt 5 xb 53 p 91 t",1 +"Subject: buy oil stocks now calgary , alberta , jul 7 , 2005 ( ccnmatthews via comtex ) - - on behalf of smsmobility , inc . ( the company ) ( pink sheets : smso ) president rod burns , is pleased to report that the company has executed a memorandum of understanding ( mou ) with quest oil corporation ( otcbb : qoil ) for a joint venture on two of its development programs in texas . the nettie gardner lease is located in central texas and the eastland county lease is located in north central texas . the nettie gardner lease is comprised of 116 acres , which forms the southernmost extension of the exoc field discovered in 1976 by the bishop - biemer - 1 well . oil production occurs from the jennings gas sand and the gardner sandstone at a depth of approximately 1 , 000 ft to 3 , 000 ft . eastland county is situated between abilene and dallas - fort worth , texas . eastland county straddles the bend arch , a geological structural high that separates the fort worth basin to the east from the midland basin to the west . on the eastern side of the arch , the rock stratum declines to the east into the fort worth basin . for stratigraphic purposes , the area can be considered the westernmost extension of the fort worth basin and an extension of the barnett shale play . mr . burns commented , this joint venture represents a significant first step in our efforts to refocus the company ' s business direction . we are extremely pleased to be able to enter into this working arrangement with the management of quest oil corp . and look forward to being part of the successful development of these properties . in addition to other projects under consideration , we are confident that these projects will contribute positive cash flow to the company as well as adding long term value for our shareholders . quest director , mr . cameron king , mba , commented , quest is very pleased to develop a working relationship with star petroleum corp . ( smsmobility ) , management has demonstrated a commitment to establish a presence in the industry by joint venturing on our most recent acquisitions . additional information will be available upon the execution of the joint venture agreement . about quest oil corporation the company is committed to the exploration and development of economical oil and natural gas reserves globally . quest management is focused on an acquisition program targeting high quality and low risk prospects . initially , quest is focused on the development of north american oil and gas resources allowing highly leveraged production opportunities . about smsmobility / star petroleum corp . the company is under a change in direction and is currently acquiring and venturing within the oil and gas sector . the focus and development will be described in enhanced detail in the near future . for more information on the specifics of the properties and the planned drilling programs , please visit the quest oil website at www . questoil . com . on behalf of the board quest oil corporation . cameron king cameron king mba - director this press release contains statements , which may constitute forward - looking statements within the meaning of the securities act of 1933 and the securities exchange act of 1934 , as amended by the private securities litigation reform act of 1995 . prospective investors are cautioned that any such forward - looking statements are not guarantees of future performance and involve risks and uncertainties , and that actual results may differ materially from those contemplated by such forward - looking statements . important factors currently known to management that could cause actual results to differ materially from those in forward - statements include fluctuation of operating results , the ability to compete successfully and the ability to complete before - mentioned transactions . the company undertakes no obligation to update or revise forward - looking statements to reflect changed assumptions , the occurrence of unanticipated events or changes to future operating results . smsmobility , inc . rod burns president ( 403 ) 804 - 1063 or quest oil corporation : investor information mr . darren hayes , corporate development 1 - 866 - 264 - 7668 website : www . questoil . com safe harbor statement this report is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . investment in low - priced small and micro - cap stocks are considered extremely speculative and may result in the loss of some or all of any investment made in these companies . estockquest is not a registered investment advisor or a broker - dealer . information , opinions and analysis contained herein are based on sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . the opinions contained herein reflect our current judgment and are subject to change without notice . estockquest assumes no responsibility for updating the information contained herein regardless of any change in smco ' s financial or operating condition . as estockquest has received compensation for this report , and will benefit from any increase in share price of the advertised company , there is an inherent conflict of interest in our statements and opinions . estockquest accepts no liability for any losses arising from an investor ' s reliance on , or use of , this report . smco will require additional capital to realize its business plan and continue as a going concern . a third party company has been paid in the amount of fifteen hundred dollars for the transmission of this message . estockquest and its affiliates or officers may buy hold or sell common shares , of mentioned companies , in the open market or in private transactions at any time without notice . certain information included herein is forward - looking within the context of the private securities litigation reform act of 1995 , including , but not limited to , statements concerning manufacturing , marketing , growth , and expansion . the words "" may , "" "" would , "" "" will , "" "" expect , "" "" estimate , "" "" anticipate , "" "" believe , "" "" intend , "" and similar expressions and variations thereof are intended to identify forward - looking statements . such forward - looking information involves important risks and uncertainties that could affect actual results and cause them to differ materially from expectations expressed herein . estockquest 1426 15 th ave . north texas city , tx 77590 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: confirmation request 218 - 791 we tried to contact you last week about refinancing your home at a lower rate . i would like to inform you know that you have been pre - approved . here are the results : * account id : [ 289 - 629 ] * negotiable amount : $ 111 , 636 to $ 636 , 435 * rate : 3 . 50 % - 5 . 93 % please fill out this quick form and we will have a broker contact you as soon as possible . regards , rich blankenship senior account manager amston lenders , llc . database deletion : http : / / www . refin - xnd . net / r . php ",1 +"Subject: mid summer flag special : free shipping armstrong flag company spring special : free shipping order today and receive a free car flag free shipping on all orders over $ 35 . 00 . promo good thru june 30 th . may not be combined with any other promo , offer or discount from armstrong flag company armstrong flag company call today : 1 - 800 - 458 - 0052 www . armstrongflag . com armstrong flag company 20 park st . winchester , ma 01890 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: less time , less effort but better sav . ings on alleviations . requiring better energy to face the challenge from daily life ? feel lovv and weary from time to time ? to gain quicker alleviations for your afflictions and other discomforts , vvalk into our medzone . and knovv how to lessen the expenses on medz supply . our quality generics will certainly m . eet your needs for quality curatives and greater value . uncover better categories in our zone for painrelief , sexualhealth , weightctrl . , highcholesterin , sleepingdisorders and others . our collection will make sav . ving on medicaments simpler . http : / / 0 . aonp . yoyoforsheerjoy . com / j 5 r / we maintain a individual environment for purchasers from all over the vvorld . nce - i do not say it la "" a surgeon ! "" said anne . . with emotion . sted long , but it has bee n - when i have asked myse . lf the question , wou he caught the word ; it seemed to rouse him at once , and saying only - - ld it have been better for li 1 ttle em ' ly to have had the wa 7 ters close above her head that morn",1 +"Subject: any med for your girl to be happy ! your girl is unsatisfied with your potency ? don ' t wait until she finds another men ! click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and quaranteed effect ! here you buy it right from warehouse ! the store is verified by bbb and approved by vlsa ! ",1 +"Subject: having problems in bed ? we can help ! cialis allows men to enjoy a fully normal sex life without having to plan the sexual act . if we let things terrify us , life will not be worth living . brevity is the soul of lingerie . suspicion always haunts the guilty mind .",1 +"Subject: re : how are you ? 8456 fill out our short application for an unbelievable 4 . 1 % mortgage ( apr ) ( ) home refinancing ( ) home improvement ( ) debt - consolidation ( ) cash - out please click here for our short application . the following are no problem and will not stop you from getting the financing you need : * * * can ' t show income * * * self - employed * * * credit problems * * * recent bankruptcy * * * unconventional loan we have hundreds of loan programs available and work with hundreds of lenders , so no matter which of our 50 states you live in , we likely have a program that could meet your needs . please click here for our short application . * we do not resell or disseminate your email address . you are not required to enter your ssn . this is a legitimate offer from legitimate mortgage companies . note : we are licensed in all 50 u . s . states . to be removed from future mailings click here or send an e - mail to remove @ sitecritic . net . we will never intentionally email you again . thank you . ",1 +"Subject: industry forum # 136 the industry forum minute man ii 160 lbs . light - requires no electricity - under $ 6000 complete ! now everybody can be a foamer ! small , one time project ? froth - pak is the answer ! smallest self - contained out - of - box foam application for repairs and small jobs ! also available : insta - stick , tilebond , roofpak and more ! get your copy of the industry catalog ! most complete reference for our industry ! click on the picture above to learn more about the equipment ! the industry forum issue # 136 10341 forum members # 136 - 1 : dik m , pa it would be much more useful to the industry , if spfa would help find a "" code conforming "" fire barrier for attics , crawl spaces etc . , than lecture on fast and loose applications of code . something about 30 cents ( a bd . ft . ) installed , meeting all codes and spray applied . many companies we talk to have a product that appears to be perfect but they haven ' t spent the money to test over foam . maybe a small committee could do a evaluation of various products , report results to spfa , who in turn will "" acquire funding "" from us . # 136 - 2 william b , australia we are in australia but we are finding it hard to locate polyurea sprayers here so that we can start a chapter of the pda do u have any list of australian contractors / suppliers ? ? ? ? or maybe they can put their hand up and lets us know at enviroline @ powerup . com . au , it isfor the betterof the game that an association is need to inform clients and specifiers of the uses and properties of polyureas and train its own members , also to keep cowboys out that give the industry a bad name # 136 - 3 ed m . i am a writer for aviation magazines and one that i write for is a test international , a new publication that just launched this month . i need any new processes you might have that would be used on aircraft , particularly commercial aviation . # 136 - 4 john c , louisiana i have a foam cat 2000 graco machine and a probler gun with a 01 tip . i use this setup to spray truck bed liners . my question is can i and how do i spray foam insulation using my equipment ? and what are the different types of insulation ? # 136 - 5 murph mahaffey , glas - craft i like the new look of the industry forum ! # 136 - 6 mark w , south carolina i ' m sick of all this garbage about covering foam with a "" thermal barrier "" . what the hell do you think foam is ? if you are saying that anything that can be forced to burn should be covered with a fireproof barrier , then you ' d better get busy covering all those trusses and joists and plywood up there that are definitely not carrying a class one fire rating . this double standard for foam is coming directly from those who stand to lose business from it . icynene is different . it doesn ' t burn alone . it doesn ' t melt . it doesn ' t emit phosgene . does it smoke in a fire situation ? sure , so what ? blaming foam in the attic for a house fire because it forces the foam to eventually burn is about as stupid as blaming foam seat cushions for burning when a gas tank ruptures and burns up a car . get real , inspectors . you want us to cover up the only thing in the attic assembly that doesn ' t burn ! as for the vaunted r rating system , it is totally bogus . the test is designed to make porous insulations appear to perform better than they actually do . measuring only conduction and ignoring convection and radiant to convective transfer , the test should have been thrown out for the industry lackey it is 20 years ago , along with that obsolete fiberglassgarbage they ' re still selling everybody . there ' s a reason they don ' t make refrigerators , freezers coolers coffee cups out of fiberglass or cellulose . think about it . # 136 - 7 dirk benthien , forum moderator thank you , mark and dik , for your statements above . i also feel that far too often individuals and companies are too complacent and quietly live with rules and regulations without trying to change them - even if everybody knows they do not make sense . we are all experts and representatives of this industry and should speak up and promote change ! # 136 - 8 martin s , canada does anyone make a dispensing machine for crumb rubber / urethane blends ? # 136 - 9 carole l , california re # 135 - 8 otto v , germany what are the answers ? ( phase - out of 141 b ) # 136 - 10 brian d , canada there has been a lot of talk about ceramic coatings . we are a distributor of such a coating . we have never professed an r - 20 . reason = is there isn ' t an astm test available to measure coatings for r - value . we compare standardized insulation to ceramic coatings via btu loss calculations . depending on the criteria we can equal 2 to 3 inches of standard insulation with an aluminum jacket . we have the data and the projects to prove it . # 136 - 11 cpi we have inquiries from a number of people for used equipment - especially gusmer h 20 / 35 , h 2000 , h 2 , gx - 7 and glas - craft probler . please contact 805 - 552 - 9128 . + + + + + + + + + + + + + + + + + + + + + + + + + + + + end of messages . this forum welcomes anyone interested in the processing of single - or plural - component materials such as polyurethane , polyurea , coatings , epoxies , and other spray - applied materials . the industry forum . a free eservice from to ask or answer a question , or to contribute anything , simply send an e - mail to forum @ cpillc . com used gusmer h 20 / 35 and probler gun for sale ! 805 - 552 - 9128 your privacy is protected ! please read the policies and rules at cpillc . com . show your name here ! become a sponsor ! call 805 - 552 - 9128 or send an email to cpi . read this and previous forum issues all on one page . it will only work if you are connected to the internet ! click here to go to cpillc . com / forumdiscussion . htm . visit cpi , llc on the web . click http : / / www . cpillc . com / cpi is authorized distributor for all leading manufacturers in this industry including gusmer , glas - craft , graco , resin technology , dynasolve . cpi ' s customers enjoy impartial advice , full service , life - long free phone support , training and set - up with all new system at a very fair price ! shop our online warehouse 24 / 7 most efficient procurement anywhere ! www . cpillc . com / warehouse . htm job marketspray jobs did we miss someone ? feel free to submit any number of e - mail addresses of coworkers and friends to be included here . again , this service is free for all ! help grow our forum ! we ' re cpi . we make it work ! call us toll - free 877 - cpi - 2100805 - 552 - 9128 copyright ( c ) 2000 , 2001 , 2002 cpi , llc . all rights reserved . disclaimers and limitations of liabilities posted at cpillc . comthis free eservice is made possible by cpi . please visit their web site at www . cpillc . com or call toll - free 877 - 274 - 2600 or 805 - 552 - 9128 . if you wish to unsubscribe , please hit the reply button - subject = remove . please allow 3 days to take effect . ",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of loqos , stationery and web - sites . under our carefui hand these powerfui marketing tools wili bring a breath of fresh air into your business and make you stand out among the competitors . you are just a ciick away from your future success . ciick here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: update your online banking records notification of limited account access as part of our security measures , we regularly screen activity in the banking system . we recently noticed the following issue on your account : we would like to ensure that your account was not accessed by an unauthorized third party . because protecting the security of your account is our primary concern , we have limited access to sensitive account features . we understand that this may be an inconvenience but please understand that this temporary limitation is for your protection . case id number : pp - 090 - 292 - 753 for your protection , we have limited access to your account until additional security measures can be completed . we apologize for any inconvenience this may cause . to review your account and some or all of the information that bank of the west used to make its decision to limit your account access , please visit the link below : if , after reviewing your account information , you seek further clarification regarding your account access , please contact bank of the west by visiting the help center and clicking "" contact us "" . we thank you for your prompt attention to this matter . please understand that this is a security measure intended to help protect you and your account . we apologize for any inconvenience . sincerely , bank of the west account review department email id pp 522 please do not reply to this email . this mailbox is not monitored and you will not receive a response . ",1 +"Subject: logo , stationer , website design and so much more ! lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwheiming ; but a good catchy logo , styllsh statlonery and outstanding website wiii make the task much easier . we do not promise that havinq ordered a ioqo your company wili automaticaiiy become a world ieader : it isguite clear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: programs for every credit situation thank you for your loan request , which we recieved on 5 / 15 / 05 , we ' d like to inform you that we are accepting your application , bad credit ok , we are ready to give you a $ 260 , 000 loan for a low month payment . approval process will take only 1 minute . please visit the confirmation link below and fill - out our short 30 second form . http : / / www . fastrefi . biz / ? a = grabadora ",1 +"Subject: please kindly assist greetings , i am prince fayad w . bolkiah , the eldest son of prince jefri bolkiah , former finance minister of brunei , the tiny oil - rich sultanate on the northern coast of the island of borneo , in eastern asia . i will save your time by not amplifying my extended royal family history , which has already been disseminated by the international media during the controversial dispute that erupted between my father and his step brother , the sultan of brunei sheik muda hassanal bolkiah . as you may know from the international media , the sultan had accused my father of financial mismanagement and impropriety of us $ 14 . 8 billion dollars . this was as a result of the asian financial crisis that made my father company amedeo development company and government owned brunei investment company to be declared bankrupt during his tenure in office . however my father was kept under house arrest , his bank accounts and private properties including a crude oil export refinery were later confiscated by the sultanate . furthermore , during this unfortunate period i was advised to evacuate my immediate family outside the sultanate to avoid further prosecution from the sultan and his security operatives , but before i could do that i was placed under house arrest by the sultan and i have no access to a phone but i have a palm v hand - held computer from which i am sending you this mail . before my incaceration , i went ahead to dispatch the sum of fifty eight million five hundred thousand united states dollars us $ 58 . 5 million in cash under special arrangement into the custody of a private security and trustee company for safe keeping abroad . hence i seek your good assistance to invest these funds into profitable investment in your country to facilitate future survival for my family abroad . i have decided to offer 10 % of these funds to you as compensation for your strong cooperation . please i count on your absolute confidentiality , transparency and trust while looking forward to your prompt reply towards a swift conclusion of this business transaction . i remain yours sincerely . prince fayad . w . bolkiah brunei darussalam .",1 +"Subject: online live striptease for you see me naked click here",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : save to inbox generated by kremp - gbr @ 01019 freenet . de mailbox is full : retry timeout exceeded - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 194 . 97 . 50 . 136 ] ( helo = mx 3 . freenet . de ) by mbox 60 . freenet . de with esmtpa ( id exim ) ( exim 4 . 52 # 5 ) id lduppd - 00076 l - ja for kremp - gbr @ 01019 freenet . de ; tue , 19 jul 2005 12 : 59 : 47 + 0200 received : from pll 269 . nas 925 . te - fukuoka . nttpc . ne . jp ( [ 219 . 102 . 66 . 245 ] helo = mailwisconsin . com ) by mx 3 . freenet . de with smtp ( exim 4 . 52 # 3 ) id lduppc - 0004 fp - jp for kremp - gbr @ freenet . de ; tue , 19 jul 2005 12 : 59 : 47 + 0200 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 09360393 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : kremp - gbr @ freenet . de user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal delivered - to : kremp - gbr @ freenet . de envelope - to : kremp - gbr @ freenet . de x - warning : message contains spam signature ( 149285 : : 050719125947 - 6 aa 64000 - 6081 c 675 ) soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: for your information dear homeowner , after completing the review we are pleased to offer you the following , your current mortgage qualifies you for more than a 3 % lower rate ! ! ! u . s mortgage rates have never been lower ! ! ! millions of americans have re - financed this month alone ! so why not you ? go here to make that change . if you prefer to be left out of this amazing offer go here .",1 +"Subject: we deliver medication worldwide ! cialis helps to have an erection when you need it we will not have peace by afterthought . stay centered by accepting whatever you are doing . this is the ultimate . you have to be deviant if you ' re going to do anything new .",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of logos , stationery and web - sites . under our careful hand these powerfui marketinq toois wiii bring a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . click here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: spamassassin . taint . org i discovered jmason . org in yahoo , my favorite directory . i am requesting that you create a link from jmason . org to my client ' s web site if you feel that their content is in some way related or complements your site . in exchange , i ' ll post a link from their site to yours . exchanging links will help bring in more business for both your web site and my client ' s . an added benefit is increased search engine traffic because the search engines rank sites higher that have a good number of relevant links . this is not a free - for - all link exchange , i don ' t waste my time with them and you shouldn ' t either . i am only linking to related web sites so that all my links are relevant to my site . i would like to send you my client ' s web address , so that you can review their site . my client offers web site promotion and and optimization services for search engines . please let me know if you are interested in exchanging links . i ' ll send you more details once i hear back from you . looking forward to your reply . sincerely , donna martos donnamartos @ link - builder . com http : / / www . link - builder . com p . s . if for any reason you don ' t want me to contact again , just email me and let me know .",1 +"Subject: get a costco gold membership . this is one of the best memberships you can get . visit here . yfdjedbe",1 +"Subject: i ' m a changed maan how to save on your medlcations o publishment ver 70 % . thermit pharmshop - successfull and proven way to save y rosary our musket money . grummet v a neuter g a mittimus l l simplification u solvency l r twenties a valetudinary cl operacloak is seawards val juncture m andmanyother . best prlces breakaway . worldwide shl lasher pplng . easy order for coatee m . total confidenti handle aiity . 250 , benchmark 000 satisfied customers . order partly today and save !",1 +"Subject: give your partner more pleasure the longz system , both the capsules and the free instructional manual , give you the most effective ways to reach immediate size gains and improve the strength and power of your erections . 90 % of males were interested in improving their sexual stamina , performance , and the size of their manhood . are you one of the 90 % ? my name is charles , and i wanted to thank you for your personal attention ( and answers to my extra questions ) , your support team is exceptional and made me feel like a real valued customer . keep it up and thanks again ! - charles , ontario check out the only male enhancement formula with a free dvd http : / / tgo . t . . com / k / po box in link above and you can say no thank you for future under ordinary circumstances the stern features and flashing black eyes of this redoubtable warrior would have struck a chill of fear to the boy ' s heart ; but now under the influence of the crushing misfortunes he had experienced , he was able to gaze with indifference upon the terrible visage of the desert chief . the tatar seemed not to consider rob an enemy instead , he looked upon him as an ally , since the turks had bound and robbed him",1 +"Subject: naturally irresistible your corporate identity lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwheiming ; but a good catchy logo , styllsh statlonery and outstandlng webslte wili make the task much easier . we do not promise that having ordered a ioqo your company will automatically become a worid leader : it isquite ciear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: see to this proposal hello ! compliments i have been searching for a person whom we can jointly invest , trust in and also solicit an honorable partnership with . i want to confirm that your contact information was got from a web email directory . i represent a client who is interested in investing in your country in areas related to agriculture or any business of your choice , to initiate a proper and structured relationship . please let me know what your response will be to an offer to receive investment funds in cash if ; 1 . the said fund amounts to us $ 8 , 500 , 000 ( eight million , five hundred thousand us dollars ) . 2 . the said fund is in cash and needs to be transferred in the same state , due to some covert reasons . 3 . the fund could be invested through your agency in the purchase of facility and assets for investment purposes within your country , in collaboration with the agency of the current brokers . 4 . this transaction will result in you being paid a commission of 10 % off the investment capital . 5 . the fund owners desire absolute confidentiality and professionalism in the handling of this matter , due to risks of seizure of the fund and litigation if personalities are revealed . the fund owners have interest to invest in any of the following industries , depending on which is most transparent , low risk , and average profit yielding : power generation , telecommunication and software development , film production , hardware manufacturing and export , medicine , construction or real - estate development . based upon the information provided above , i would like to know if you shall be able to assist in the nature of managing the investment fund . you must note that the fund can only be transferred in cash , therefore if you are in acceptance to participate with us in the investment of the fund , you shall also need to participate with us in the transfer of the fund in cash in the manner of receiving the fund in cash and depositing it in a trusted account opened in favour of the investment to be established . and this account would serve as the base or operating account for the investment . i am obliged to believe that you would be able to understand the information above , and should you need further information , please do not hesitate to ask . kindly confirm receipt of this email by sending all correspondence to : quazihossain 44 @ netscape . net sincerely , quazi hossain ( esq )",1 +"Subject: the next move higher for strong market leader homeland security investments the terror attacks on the united states on september 11 , 2 ool have changed the security | andscape for the foreseeabie future . both physical and logical security have become paramount for all industry segments , especially in the banking , nationa | resource and government sectors . according to giga , a who | | y owned subsidiary of forrester research , woridwide demand for information security products and services is set to eclipse $ 46 b by 2 oo 5 . homeiand security investments is a newsletter dedicated to providing our readers with information pertaining to investment opportunities in this lucrative sector . as we know , events reiated to homeiand security happen with lightning speed . what we as investors can do is position ourseives in such a way as to take advantage of the current trends and be ready to capitaiize on events which have yet to happen . homeland security investments is here to help our readers do just that . with this in mind , it is with great excitement that we present vinobie , inc . this stock is expected to do big things in both the near and long terms . symbol : vnbl . ob current price : o . o 8 short term target price : 0 . 35 12 month target price : 1 . 20 * * * why we beiieve vnbl . ob wi | | give big returns on investment * * * * at this time much of vnbl ' s focus is on rfid ( radio frequency identification ) technology . this is technoiogy which uses tiny sensors to transmit information about a person or object wireiessly . * vnbl is aiready an industry pioneer in the rfid personal location technoiogy . * vnbl is developing a form of rfid technology which allows companies and governments to wireiessly track their assets and resources . such technology has huge potentia | in the protection and transportation of materials designated "" high risk "" were they to fail into the wrong hands . * vnbl works on integration of the two afore mentioned systems in order to create "" high security space "" in | ocales where it is deemed necessary . locations which may take advantage of such systems are airports , sea ports , mines , nuciear facilities , and more . * as with a | | stocks , news drives the short term price . fresh news has made vnbl a hot buy . news on vnbl malibu , caiif . - - ( business wire ) - - june 16 , 2 oo 5 - - vinobie , inc . ( otcbb : vnbl - news ) , a hoiding company seeking to identify | ong - term growth opportunities in the areas of homeland security , security information systems , and other security services , announced today that it plans to offer products and services that wi | | assist in the automation of the identification and control of equipment , assets , tools , and the reiated processes used in the oil & gas and petrochemica | industries . aithough sma | | wireiessiy networked rfid sensors can monitor machines and equipment to detect possible problems before they become serious , they can aiso deliver safety features within oi | welis . oi | maybe trapped in different | ayers of rock , aiong with gas and water . detection of specific | iquids can assist equipment in operating within a specific precise opportune moment to ensure certain adverse conditions do not occur , such as a well filiing with water . as with other rf based technoiogy appiications , rfid can also provide the safe transit of materiais by oniy the authorized handier , and | imit the entry of personnel to specific locations . ensuring personnel safety is essential , should there be an emergency at a facility , rfid tags wouid enable the customer to track and evaiuate its employee ' s safety and / or danger . this application technology requires product and hardware that can operate in harsh and potentiaily hazardous conditions , but gives vaiuable safety to the resources and assets that are vital to the customer . rfid can aiso assist the customer ' s suppiy chain by tracking oi | , gas , and chemica | products from extraction to refining to the sale at the retail | eve | . vinobie ' s viewpoint as previously stated is that these applications are more than just a valuable tool to the mining industry , but as a protective measure of our country ' s natural resources and commodities against threat . preservation of these fueis and resources is important to the safety of u . s . industry and economy . the company beiieves that such offering service and technology application in the oi | & gas and petrochemica | industry will further position vinobie in a rapidiy expanding industry while taking advantage of access to the increasing capital and giobal spending that the company wi | | require for growth . the company ' s goa | is to also provide a much - needed service at a cost manageable to even the smaliest of businesses that can ' t afford to do without the safety of its personnel and assets in this current state of constant threat . this is outstanding news . the growth potential for this company is exceptiona | . in an already hot industry , vnbl . ob stands out as a truiy innovative pioneer . we see big things happening to this stock . information within this emai | contains "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or invoive discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historica | fact and may be "" forward | ooking statements . "" forward | ooking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presentiy anticipated . forward | ooking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will , "" "" anticipates , "" "" estimates , "" "" believes , "" "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . as with many micro - cap stocks , today ' s company has additional risk factors worth noting . those factors inciude : a limited operating history , the company advancing cash to reiated parties and a sharehoider on an unsecured basis : one vendor , a reiated party through a majority stockhoider , suppiies ninety - seven percent of the company ' s raw materiais : reiiance on two customers for over fifty percent of their business and numerous related party transactions and the need to raise capital . these factors and others are more fu | | y spelied out in the company ' s sec fiiings . we urge you to read the fiiings before you invest . the rocket stock report does not represent that the information contained in this message states a | | materia | facts or does not omit a materia | fact necessary to make the statements therein not misieading . a | | information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises ail readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shail be construed as any kind of investment advice or soiicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . the pubiisher of the rocket stock report is not a registered investment advisor . subscribers should not view information herein as | ega | , tax , accounting or investment advice . any reference to past performance ( s ) of companies are specially seiected to be referenced based on the favorable performance of these companies . you would need perfect timing to achieve the results in the examples given . there can be no assurance of that happening . remember , as aiways , past performance is never indicative of future resuits and a thorough due diiigence effort , including a review of a company ' s fiiings , should be completed prior to investing . in compiiance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discioses the receipt of tweive thousand dollars from a third party ( gem , inc . ) , not an officer , director or affiliate shareholder for the circulation of this report . gem , inc . has a position in the stock they will se | | at any time without notice . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and we are conflicted . ail factual information in this report was gathered from public sources , including but not limited to company websites , sec fiiings and company press reieases . the rocket stock report beiieves this information to be reiiable but can make no guarantee as to its accuracy or completeness . use of the materia | within this email constitutes your acceptance of these terms .",1 +"Subject: software should be easy to use ! fully functional , unrestricted copy of the software . get more results with less efforts . it ' s better to be burnished with use than rusty with principle . where reason fails , time oft has worked a cure .",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of loqos , stationery and web - sites . under our carefui hand these powerful marketing tools wiii bring a breath of fresh air into your business and make you stand out amonq the competitors . you are just a click away from your future success . click here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: need an outstanding logo now ? working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visuai imaqe of your company by creatinq an outstanding iogo , presentabie stationery items and professionai website . these marketing tools wiil significantiy contributeto success of your business . take a look at our work samples , hot deai packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: high growth investing for tomorrow high growth investing company ceo interviewsemerging technologies new trends to watchindustry statistics view pdf are americans and the rest of the world becoming addicted to online gaming ? analysts predict over $ 14 billion dollars a year will go to online casinos gaming stocks may be set to explode ! read the full 10 page report includes inside : company profile : gaming transactions inc . this publicly traded company looks like it has what it takes to become a big player in the online gambling world . could it be the next payoff for investors ? . . . more the online gambling market given the rate at which this market is expanding across the planet , the outlook for the online gaming industry looks very positive . do the numbers add up for investors ? . . . more how big could it get ? online gaming has become a seriously big business , with shares in some companies increasing by up to eight times inside a year . . . . more pick of the month : ggts gaming transactions operates in one of the fastest growing industries around and has an experienced management team . early investors , who get in before the institutional investors , could make a fortune . . . . more ggts : ceo interview patrick smyth and stephen white head up company dedicated to bringing the next generation of online gaming . . . read full interview the asian market according to the diffusion group and game trust , china will become the # 1 online gaming market by 2007 . . . . more investors are making huge gains as the world bets online . could gaming transactions inc . ( gtts ) be the next stock to rock ? recently , we read an article in the economist that highlighted online gaming and how it has become a socially acceptable form of entertainment . over the next few days , as we thought about what sort of impact this trend could have , we started to notice that online gambling was being discussed all over the media - in newspapers , online and on television . it became obvious to us that more and more people were jumping on the internet to bet on games . we also came across some staggering statistics . merrill lynch , for example , has predicted that gambling has the potential to account for a full 1 % of global economic activity ! another source , ecommercetimes . com , recently reported that the scope of this business is so enormous that some have even claimed that it is the single most important factor in the growth of e - commerce . the online gaming industry , in other words , appears to be booming , and it may be an ideal time to is time to invest . we decided to find out who the key players were in the business . after speaking with a number of industry insiders , the trail led us to an emerging , publicly traded company called gaming transactions inc . ( ggts ) . after a close look at ggts , we decided that this company could produce huge returns on investment in the upcoming months . although ggts is a new company , it has some surprisingly experienced players at the helm an uncommon thing to find in an industry only ten years old . the company has come out with online versions of the addictive game keno . and its management team was smart enough to secure the rights to the keno . com website , which , if youre marketing keno , is as good as it gets . keno has the widest spread for the house of any mainstream gambling game . ggts is also about to launch a suite of other online gambling games , including poker and sports - book betting . once it offers these popular games , and given that it already has keno . com online , the company could bring in great revenues , attracting a lot of attention in the investment community and driving up its stock price . after a successful north american launch , gaming transactions inc . ( gtts ) has translated its games into chinese and is about to hit asia . this initiative looks like a wise business decision : many analysis anticipate that china will be the biggest source of online gambling revenue by 2007 , so the company could be poised for massive expansion in terms of both profits and global reach . what does all this tell us ? a brand new company , a popular , well - known game , one of the biggest spreads for the house , a growing market , experienced management , and a stock price that is trading under a dollar it adds up to the potential for huge gains for early investors . if youre interested in more information on the market and gaming transactions inc . , click here to read a free ten - page report . . . to join market movers mailings http : / / ggtsstock . com to find out more . first source data inc . 4535 west sahara ave # 217 las vegas nevada 89102 disclosure and disclaimer investment news indepth reports ( hereinafter inir ) , operated by first source data , inc . ( hereinafter fsd ) , is a business news publication of regular and general circulation . this issue is not a research report , does not purport to provide an analysis of any companys financial position , and is not in any way to be construed as an offer or solicitation to buy or sell any security . gaming transactions inc . ( hereinafter ggts ) is the featured company . fsd managed the publishing and distribution of this publication . the information contained herein is being republished in reliance on statements made by ggts management , and publicly disseminated information issued by third parties regarding ggts and the online gaming industry , which are presumed to be reliable , but neither fsd nor its editors , employees , or agents accept any responsibility for the accuracy of such statements or information , or the contents herein which are derived therefrom . readers should independently verify all statements made in this advertisement . fsd has received compensation for the production and distribution of this newsletter . the compensation received is in the amount of one hundred and twenty eight thousand dollars and was received from accelerated capital limited ( hereinafter acl ) for this advertising effort . acl is a shareholder of ggts . because fsd received compensation for its services , there is an inherent conflict of interest in the statements and opinions contained in this newsletter and such statements and opinions cannot be considered independent . internet - based companies , and those involving online gaming in particular , are almost always very high risk investments , and investors should be aware that they could potentially lose any investment made in such companies in its entirety . we strongly encourage readers to undertake their own due diligence to decide the best course of action in connection with any investment decision that they might make . any investment should be made only after consulting with a qualified investment advisor . media matrix 7025 county rd . 46 a dtel 071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation .",1 +"Subject: look 10 years younger - free sample ! ! ! ! ! ! ! ! esoy this e - mail ad is being sent in full compliance with u . s . senate bill 1618 , title # 3 , section 301 to remove yourself send a blank e - mail to : removal 992002 @ yahoo . com free sample ! free tape ! new cosmetic breakthru ! look 10 years younger in ( 6 ) weeks or less ! look good duo . . from the inside out . . . . . > from the outside in ! introducing . . . . natures answer to faster and more obvious results for : * * wrinkles * * cellulite * * dark circles * * brown spots . . . * * lifts the skin * * strenghtens the hair and nails also helps to . . . . . . . . * reduce cell damage from excessive sun exposure * stimulate colllagen formation * provide protection against skin disorder * and is hopoallergenic find out what ! where ! and how ! to order your free sample and tape send your request to : lookyoungnow 2000 @ yahoo . com subject : subscribe to free sample : your name : . . . . . . . . . . . . . . . . . . . street address : . . . . . . . . . . . . . . city : . . . . . . . . . . . . . . . . . . . . . . . . state and zip code : . . . . . . . . . . email address : . . . . . . . . . . . . . . . sxjrohvneydjgucyfa",1 +"Subject: still wanna her ? : - ) you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohoi ! shippinq to any country avaiiabie ! get it right now ! . ",1 +"Subject: cheap software http : / / uracil . mainoemstore . com / ? a = 3107",1 +"Subject: important notice : june 21 , 2005 important notice : june 21 , 2005 dear sir / madam , barclays bank plc . always looks forward for the high security of our clients . some customers have been receiving an email claiming to be from barclays advising them to follow a link to what appear to be a barclays web site , where they are prompted to enter their personal online banking details . barclays is in no way involved with this email and the web site does not belong to us . barclays is proud to announce about their new updated secure system . we updated our new ssl servers to give our customers a better , fast and secure online banking service . due to the recent update of the servers , you are requested to please update your account info at the following link . j . s . smith security advisor barclays bank plc . please do not reply to this e - mail . mail sent to this address cannot be answered . for assistance , log in to your barclays online bank account and choose the "" help "" link on any page . barclays email id # 1009 ",1 +"Subject: cool page please active this link www . informatii . as . ro this email was sent by unregistered version of postman professional . please visit : www . email - business . com",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , fallon ",1 +"Subject: get the software you need , now ! save up to 40 % on popular software bundles ! last words are for people who haven ' t said anything in life . human nature constitutes a part of the evidence in every case .",1 +"Subject: kinja account activation hello , iztari : thanks for creating an account . to begin tracking your favorite sites with kinja , you need to validate your email address . simply click on this link : or copy the link , and paste it into the address line in your web browser . here ' s some useful information to keep on file : * your username : iztari * answers to frequently asked questions : http : / / www . kinja . com / help / welcome ! the kinja team",1 +"Subject: sex is a play , and you must win ! your source for the very best viagra deals on the ' net . always up to date ! luck is what happens when preparation meets opportunity . in order to be a realist you must believe in miracles . consistency is the last refuge of the unimaginative .",1 +"Subject: usa cheapest licensed pharmacy we provide top class world wide lifestyle medications , at incredible prices . if a man cannot choose , he ceases to be a man . something is rotten in the state of denmark . the structure of language determines not only thought , but reality itself .",1 +"Subject: loose your fat in 9 days are you overweight ? loose 9 pounds every 11 days ! do you want to loose weight fast the natural way ? the idiot proof diet will help you shed 9 pounds every 11 days , take it for a free test drive at the link below : click here for the idiot proof diet w a r n i n g : if you notice that you are loosing too much weight to quickly , then you should stop dieting for a few days if you loose more than 1 pound per day you should slow down a little . click here for the idiot proof diet affid : zoolant 44561 getresponse marketing p . 0 box 1451 waterfall , south africa 3652 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: http : / / www . blomqvist . org hello , i have visited www . blomqvist . org and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: you need only 15 minutes to prepare for the night of love . same medicine , different price ! teachers open the door . you enter by yourself . the secret of success is constancy to purpose . it ' s easy to quit drinking . i ' ve done it a thousand times . love is not love which alters when it alteration finds .",1 +"Subject: reply a . s . a . p united trust bank limited 80 haymarket , london swly 4 te i am mr . alexander george , the account officer of mr . morris thompson who died in the plane crash of alaska airlines flight 261 which crashed on january 31 2000 along with his wife and only daughter ( who happens to be his next of kin ) . he has an account with us . you should read more about the crash on visiting this site ( s ) . since we got information about his death , we have been expecting his next of kin or relatives to come over and claim his money because we cannot release it unless somebody applies for it as next of kin or as a relative to the deceased as indicated in our banking guidelines . i was contacted by the executor of his will to find somebody that can stand in as his next of kin , so that the funds would not be trapped in our bank . all legal paper work will be taken care of by him ( the executor ) if you are favorably disposed to joing us in doing this , please respond as soon as possible . in the event you are not interested , i sincerely ask that you disregard this email and tell no one about it . i am very careful on truncating my banking career should you mention this to someoneelse . i hope you can be trusted in this regard . regards , alexander george",1 +"Subject: congratulations the free lotto company uk head office suite 25 - 32 , lion towers central london england . www . freelotto . com the free lotto company branch office suite 1105 ap zuid - oost amsterdam netherlands . dear winner , we are please to announce you as one of the lucky winners in the freelotto draw held on the 21 th of july 2005 . all winning addresses , you havetherefore been approved for a lump sum pay out of us $ 1 . 500 , 000 . 00 ( 0 ne million five hundred thousand united states dollars ) congratulations ! ! ! due to mix up of some numbers and names , we ask that you keep your winning information confidential until your claims has been processed and your money remitted to you . this is part of our security protocol to avoid double claiming and unwarranted abuse of this program by some participants . all participants were selected through a computer ballot system drawn from over 40 , 000 company and 20 , 000 , 000 individual email addresses and names from all over the world . this promotional program takes place every year . this lottery was promoted and sponsored by association of software producers . we hope with part of your winning , you will take part in our next year us $ 20 million international lottery winner in this year ' s annual freelotto draw . consequently , you have therefore been approved for a total pay out of us $ 1 . 500 , 000 . 00 ( one million five hundred thousand ) only . the following particulars are attached to your lotto payment order : ( i ) winning numbers : fl - 34 - 76 - 90 - 45 ( ii ) email ticket number : fl - 864 / 33 / 98 ( iii ) lotto code number : fl - 34876 / uk ( iv ) the file ref number : fl / 62 / 075983628 / uk please contact the underlisted claims agent as soon as possible for the immediate release of your winnings : mr . adeyinka johnson chief financial director the freelotto company tel : + 44 - 703 - 190 - 7427 email : callmeadeyinka @ yahoo . com ( email ) n . b : steps to claiming your prize ; 1 . please quote your reference number in all correspondence with the claims officer . 2 . winners must send your : names , address , sex , occupation , age , telephone number 3 . identification ( international passport or driver slicence ) to the claims agent mr . adeyinka johnson to process and make immediate payment of their prize . once again on behalf of all our staff , congratulations ! ! ! sincerely , greg jones promotions manager the lotto company uk & europe",1 +"Subject: need creative power ? logodentity is here to help . thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of logos , stationery and web - sites . under our carefui hand thesepowerful marketinq toois wiil brinq a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . click here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: 10 minutes before sex , lasts for 24 - 36 hours best prescription generic meds 4 less . ready tears are a sign of treachery , not of grief . life is a zoo in a jungle . we two are to ourselves a crowd .",1 +"Subject: a new era of online medical care . right place to look for buying cheap viagra online ! emancipate yourselves from mental slavery , none but ourselves can free our minds . don ' t let it end like this . tell them i said something . measure not the work until the day ' s out and the labor done .",1 +"Subject: re : protect your computer , you need systemworks ! coxr take control of your computer with this top - of - the - line software ! norton systemworks 2002 software suite - professional edition - includes six - yes 6 ! - feature - packed utilitiesall for 1 special low price of only $ 29 . 99 ! this software will : - protect your computer from unwanted and hazardous viruses - help secure your private valuable information - allow you to transfer files and send e - mails safely - backup your all your data quick and easily - improve your pc ' s performance w / superior integral diagnostics ! - you ' ll never have to take your pc to the repair shop again ! 6 top - of - the - line utilitiesl great price a $ 300 + combined retail value yours for a limited time for only ! ! ! $ 29 . 99 ! ! ! price includes free shipping ! and for a limited time buy 2 of our products get 1 free ! don ' t fall prey to destructive viruses or hackers ! protect your computer and your valuable information and - click here to order yours now ! - or call toll - free 1 - 800 - 861 - 1481 ! your email address was obtained from an opt - in list . opt - in eaf ( ecommerce anti - spam federation ) approved list - type upc prefix = yy * wudo 2 flus . to unsubscribe from this list , please click here . you need to allow 5 business days for removal . if you have previously unsubscribed and are still receiving this message , you may visit our spam abuse control center . we do not condone spam in any shape or form . thank you kindly for your cooperation . ",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be lost amonq competitors . get your iogo , business stationery or website done right now ! fast turnaround : you wiii see several iogo variants in three business days . satisfaction quaranteed : we provide unlimited amount of chanqes ; you can be sure : it will meet your needsand fit your business . flexibie discounts : loqo improvement , additionai formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: the ultimate in pc security and surveillance . * this message is sent in compliance of the new email bill hr 1910 . under bill hr 1910 passed by the 106 th us congress on may 24 , 1999 . per section hr 1910 . if you wish to be removed from our mailing list , please click here . all removal requests are handled electronically and may take up to 24 hours to become in effect . ",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 12 jul 2005 12 : 09 : 30 + 0200 from antonio . urjc . es [ 193 . 147 . 184 . 24 ] - - - - - the following addresses had permanent fatal errors - - - - - ana . elvira @ urjc . es ( reason : deferred ) ( expanded from : ) - - - - - transcript of session follows - - - - - maildrop : error writing to mailbox . ana . elvira @ urjc . es . . . deferred : local mailer ( / usr / sbin / sensible - mda ) exited with ex _ tempfail message could not be delivered for 5 days message will be deleted from queue",1 +"Subject: we use to be friends dear applicant , after further review upon receiving your application your current mortgage qualifies for a 3 % lower rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting our 60 second form we look foward to working with you . thank you , jane barron , account manager helian and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - not interested - http : / / www . lending - leadersx . net / r . php ",1 +"Subject: you don _ t know how to attract customers to your website ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it will be invisible virtually , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visible in places where people search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best regards , roselle sims",1 +"Subject: wed , 06 jul 2005 23 : 15 : 07 + 0300 dear homeowner , you have been pre - approved for a $ 430 , 700 home loan at a 3 . 20 fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , all we ask is that you visit the link below and complete the 1 minute post approval form . sincerely , joseph jones",1 +"Subject: free ltc "" sales closers "" which virtually sells long term care to your clients ! this turnkey presentation prepares your client for the sale . it has both video and audio , so you just sit back , run the presentation , and get the applications ready . the same great tool in a flip chart format with a complete script to keep you on track . the choice is yours choose one of these great ltc point - of - sale items . which gift would you like ? all you have to do is complete appointment paperwork with mo marketing . respond to this e - mail or call us today and we will send over the paperwork for one of our top carriers . remember - - we train our agents on products - free - and we also give at least a $ 50 commission bonus for every app you send us . "" for agent use only . please fill out the form below for more information name : e - mail : phone : city : state : we don ' t want anybody to receive our mailing who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: atft . pk has announced the acquisition between atft and first pet life . pink sheets : atft . pk has announded the acquisition between atft and first pet life . the transactjion will be non - diluted to current shareholders . about first pet life : atft offers coverage at an afforable level that will safely and securely help aviod the worried of unexpected vet bills . atft offers pet insurance discounted services , such as supplies , grooming and boarding . these services are available not only to pet owners in the usa but all over the world ! ! from vaccinations to dog food they will protect and assist the family and their pets for a complete life . atft looks forward to giving pet owners all over the world the opportunity and the ability to afford coverage for their pets and will strive to become a valuable part of you family and protection for your pet ' s life and well being . press release american television and film company in talks with first pet life thursday june 9 , 8 : 00 am et dallas - - ( business wire ) - - june 9 , 2005 - - american television and film company ( pink sheets : atft - news ) announced today that it is in talks with first pet life about the possible acquisition of first pet life . no further details are available at this time . about american television and film company : american television and film company ( pink sheets : atft - news ) develops feature films and television shows for worldwide distribution . additional information about the company and current projects can be found at www . americantvandfilm . com . about first pet life : first pet life offers many discounted services including insurance , pet supplies , boarding , and grooming . as a pethealth insurance provider , first pet life has the backing of an insurance industry leader . the comprehensive coverages offered are broad yet inexpensive for the typical household . additional information is available at www . firstpetlife . com . disclaimer : matters discussed in this press release are "" forward - looking statements . "" statements describing objectives or goals or the company ' s future plans are also forward - looking statements and are subject to certain risks and uncertainties , including the financial performance of the company and market valuations of its stock , which could cause actual results to differ materially from those anticipated . source : american television film safe harbor statement this report is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . investment in low - priced small and micro - cap stocks are considered extremely speculative and may result in the loss of some or all of any investment made in these companies . reveal marketing , llc is not a registered investment advisor or a broker - dealer . information , opinions and analysis contained herein are based on sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . the opinions contained herein reflect our current judgment and are subject to change without notice . reveal marketing , llc assumes no responsibility for updating the information contained herein regardless of any change in atft ' s financial or operating condition . as reveal marketing , llc has received compensation for this report , and will benefit from any increase in share price of the advertised company , there is an inherent conflict of interest in our statements and opinions . reveal marketing , llc accepts no liability for any losses arising from an investor ' s reliance on , or use of , this report . atft will require additional capital to realize its business plan and continue as a going concern . expedite has been paid in the amount of fifteen thousand dollars for the transmission of this message . . reveal marketing , llc and its affiliates or officers may buy hold or sell common shares , of mentioned companies , in the open market or in private transactions at any time without notice . certain information included herein is forward - looking within the context of the private securities litigation reform act of 1995 , including , but not limited to , statements concerning manufacturing , marketing , growth , and expansion . the words "" may , "" "" would , "" "" will , "" "" expect , "" "" estimate , "" "" anticipate , "" "" believe , "" "" intend , "" and similar expressions and variations thereof are intended to identify forward - looking statements . such forward - looking information involves important risks and uncertainties that could affect actual results and cause them to differ materially from expectations expressed herein . reveal marketing 3521 oak lawn ave . , ste . 405 dallas , tx 75219 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: [ ilug - social ] prirodu requiremus social sample social on january lst 2002 , the european countries began using the new euro . never before have so many countries with such powerful economies united to use a single currency . get your piece of history now ! we would like to send you a free euro and a free report on world currency . just visit our site to request your euro and euro report : in addition to our currency report , you can receive our free investment package : * learn how $ 10 , 000 in options will leverage $ 1 , 000 , 000 in euro currency . this means even a small movement in the market has huge profit potential . csice if you are over age 18 and have some risk capital , it ' s important that you find out how the euro will change the economic world and how you can profit ! please carefully evaluate your financial position before trading . only risk capital should be used . 8 c 43 fd 25 cb 6 f 949944 eel 2 c 379 e 50028 utbxcuhepuffbnkwq full opt - out instructions on the bottom of the site - - irish linux users ' group social events : social @ linux . ie http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: logo , stationer , website design and so much more ! lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwhelming ; but a good catchy logo , styllsh stationery and outstanding website will make the task much easier . we do not promise that having ordered a loqo your company wiil automaticaiiy become a world ieader : it isquite clear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: . . . if you ' re looking for the lowest software prices on the web , you just found them ! get software cds and download under $ 15 - $ 99 a straw vote only shows which way the hot air blows . poverty is the parent of revolution and crime .",1 +"Subject: make a fortune on ebay 24772 ebay - # 1 rated work at home business opportunity - pc magazine fortunes are literally being made in this great new marketplace ! over $ 9 billion in merchandise was sold on ebay in 2001 by people just like you - right from their homes . now you too can learn the secrets of successful selling on ebay and make a staggering income from the comfort of your own home . if you are motivated , capable of having an open mind , and can follow simple directions , then visit us here . we are strongly against sending unsolicited emails to those who do not wish to receive our special mailings . you have opted in to one or more of our affiliate sites requesting to be notified of any special offers we may run from time to time . we also have attained the services of an independent 3 rd party to overlook list management and removal services . this is not unsolicited email . if you do not wish to receive further mailings , please go here to be removed from the list . please accept our apologies if you have been sent this email in error . charset = iso - 8859 - 1 "" > ",1 +"Subject: re : 6 . 25 30 yr fixed home loan , no points flu dear homeowner , * 6 . 25 % 30 yr fixed rate mortgage interest rates are at their lowest point in 40 years ! we help you find the best rate for your situation by matching your needs with hundreds of lenders ! home improvement , refinance , second mortgage , home equity loans , and more ! even with less than perfect credit ! click here for a free quote ! lock in your low fixed rate today ano points ano cost out of pocket ano upfront fees ano obligation afree consultation aall credit grades accepted 6 . 25 % won ' t stay this low forever ! click for your free quote , now ! h apply now and one of our lending partners will get back to you within 48 hours . click here ! to be removed please clicking here . ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei desiqner 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter ix $ 80 adobe liiustrator cs $ 80 adobe lndesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cooi 3 d production studio 1 . 0 . 1 $ 90 aiias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , lsiah ",1 +"Subject: please help my child dear sir / mam , i have send this email in order to recive some help . i am a single father from italy and i have a big problem . my 2 year child is cancer sick and i need money to treat him . i don ' t ask for lots off money but as much as you want : 1 $ 2 $ . . . . i will be pleased . this is my sweet boy nely : nely pictures the pics say all the things . if you have a hart and you are a father then please this is my paypal email address : david _ horatiul 23 @ yahoo . com . thank you and i ' m very sorry for this email , but i need help . have a nice day and good bless you ! please help my boy ! ! ! ",1 +"Subject: entrust your visual identity to us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of logos , stationery and web - sites . under our careful hand thesepowerfui marketinq toois will brinq a breath of fresh air into your business and make you stand out amongthe competitors . you are just a click away from your future success . click here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: hello bevstarl 0 dear bevstarl 0 , rape sex ! click here do you like sexy animals doing the wild thing ? we have the super hot content on the internet ! this is the site you have heard about . rated the number one adult site three years in a row ! - thousands of pics from hardcore fucking , and cum shots to pet on girl . - thousands videos so what are you waiting for ? click here you must be at least 18 to enter ! to not be on our in house address database click here and you will eliminated from future mailings . [ : kj ) _ 8 j 7 b ]",1 +"Subject: set & forget ! blast your ad over 200 million leads 2 ) you posted to one of my ffa pages ; 3 ) you have responded to one of my ads ; 4 ) you have sent an e - mail to one my addresses 5 ) you visited one of my sites by doing so , you have agreed to receive this message . under bill s . l 6 l 8 title iii passed by the 105 th us congress this letter cannot be considered spam as long as the sender includes contact information & a method of "" removal . "" however this is a one time mailing so there ' s no removal required . thank you for your kind consideration . @ @ @ @ @ @ @ @ @ @ @ @ @ @ disclaimer @ @ @ @ @ @ @ @ @ @ @ @ @",1 +"Subject: do you want a rolex for $ 75 - $ 275 ? replica watches http : / / dragon . valentlne . com / repli / lib / freedom is nothing else but a chance to be better . it does not do to dwell on dreams and forget to live . the only thing sadder than a battle won is a battle lost . assassination is the extreme form of censorship .",1 +"Subject: discover the new winning sexual erection pills ! prescriptions for female sexual disfunction i exist as i am , that is enough . the covers of this book are too far apart . a person ' s a person , no matter how small . a young man is embarrassed to question an older one .",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) orderinq viaqra online is a very convinient , fast and secure way ! millions of people do it daily to save their privacy and money order here . . . ",1 +"Subject: a wedding consulting business of your own do you know what a wedding consultant is ? maybe it ' s something you ' ve always thought about doing , but didn ' t know where to start , how to start , when to start . or even if an opportunity like this existed . it does ! and a touch of class would like you to invite you to be a part of it . wedding consulting isn ' t wedding planning . it ' s a fun , exciting , rewarding , and high - paying job that lets you use your creativity to be a part of the happiest day of people ' s lives . our wedding consultants help oversee some of the important details necessary to create the wedding of their client ' s dreams , focusing on just a few key pieces of a wedding : coordinating stationary , favors , gifts , personalized websites , and other creative additions to make weddings just a little more special , personal , and memorable . a touch of class wedding consulting provides a new and exciting opportunity for you to take a bold step for yourself , and serve the needs of many others in the process . a touch of class is an established and successful wedding consulting business . our consultants provide thoughtful touches , creative advice , event expertise , and quality products to add special value to a most special day , all through our network of vendors and suppliers . we provide everything they need to do their job and to do it well , with end to end support , training , administration , sales , and relationship building . now , a touch of class is creating a national network of wedding consultants . it ' s an exciting opportunity . perhaps it ' s the right opportunity for you . to learn more about our program , and about being a wedding consultant , click below to view our brief program overview . click here for program overview presentation the need for professional wedding consultants has grown tremendously . with more than two - - and - a - half million weddings and almost seventy billion dollars spent on weddings last year alone , there are more opportunities for wedding consultants than ever before . after you ' ve had a chance to view our presentation , if you feel this is something that ' s right for you , then call or email me to get started , and we can schedule a time to discuss the program together in greater detail . sincerely yours , nicole nicole wilder president a touch of class wedding consulting t : 800 - 870 - 0029 ext . 5101 f : 203 . 924 . 0634 email : nicole . wilder @ atocweddings . com web : www . atocweddings . com a touch of class 223 canal st . shelton , ct 06484 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be iost among competitors . get your ioqo , business stationery or website done riqht now ! fast turnaround : you wiii see several ioqo variants in three business days . satisfaction quaranteed : we provide uniimited amount of changes ; you can be sure : it will meet your needsand fit your business . fiexible discounts : iogo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom desiqn of loqos , stationery and web - sites . under our careful hand these powerful marketing toois wili bring a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . click here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: need a graphic artist ? come here . thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our carefui hand thesepowerful marketing toois wiii brinq a breath of fresh air into your business and make you stand out amongthe competitors . you are just a ciick away from your future success . click here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: low price software http : / / woe . mainoemstore . com / ? a = 3107",1 +"Subject: uae enquiries dear sirs , emiratestenders provides you with the latest business information on projects , tenders , enquiries and business deals in the united arab emirates . we will keep you informed about all business activities in abu dhabi , dubai , sharjah , al ain & northern emirates in areas such as construction , oilfield development , telecommunication , information technology , medical , power generation , roads & bridges & more . emiratestenders provides members free access to the most comprehensive and detailed real time project and tender database with many benefits including : complete access to our detailed real time database on all projects , tenders and enquiries in united arab emirates . ( details provided are : project number , project name , territory , client , client address , description , invitation date , post date , closing date , tender cost , budget , contractors , consultants , tender categories , status , remarks ) free e - mail notification on preferred areas of business and useful local business news . easy to use search options . archive of over 8 , 000 projects and tenders for market research and analysis which is updated on a daily basis . a newsletter with information on the latest business activities in the uae . free consultancy on local business requirements in the territory . the people at emiratestenders have indepth knowledge and experience about the local market and can assist you to develop your business in the united arab emirates . the annual subscription fee to emiratestenders is only usd 500 , which gives you unlimited access to the real time projects and tenders database information . click here to see a sample page . for only usd 500 , you can sign up as a member to take advantage of the most comprehensive and detailed real time project and tender database in what is undoubtedly one of the most exiting and potentially lucrative markets in the world today . please visit http : / / www . uaeenquiries . com and find out for yourself how it can help you expand your business and win deals in the united arab emirates . yours faithfully , sales and support teamtel : + 971 2 - 6348495 fax : + 971 2 - 6316465 you are receiving this e - mail because you have opted - in to receive special offers for business development or one of it ' s marketing partners . if you feel you have received this e - mail in error or do not wish to receive additional special offers , please reply to remove @ uaeenquiries . com with a "" remove "" subject in the email .",1 +"Subject: stox maven news - letter * * * watch this one july 21 breaking news alert issue - big news coming * * * china world trade corp . symbol : cwtd current price : $ 2 . 46 7 day target : $ 8 . 00 $ $ $ we gave you : pntv at $ 1 . 10 cdgt at $ 1 . 97 lets make it 3 for 3 look for huge news this company back on the move . rumor has the shorts are going to be broken and sto * ck will run . cwtd website address is www . chinawtc . com all company info is there . this sto * ck has had good movement and support the last 15 months it is a strong company growing in leaps and bounds . company has been profiled on cnn asia , forbes . com , bloomberg . com , ceo cast . com , businessweek . com , p . r . newswire , pennysto * ck weekly . com , yahoo finance has reports for sale . how much more credibility do you need . amex exchange listing waits in the wings . this is big ! ! ! ! ! ! company filed for amex 10 months ago and is finally ready to go up based on the 10 k . symbol cwtd join in and squezze the shorts : cwtd take a look at our last strong buy recomendatons get in cwtd while it ' s hot disclaimer : information within this email contains "" forwardlooking statements "" within the meaning of section 27 aof the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements "" . "" forward looking statements "" are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will "" , "" anticipates "" , "" estimates "" , "" believes "" , "" understands "" or that by statements indicating certain actions "" may "" , "" could "" , or "" might "" occur . risk factors include general economic and business conditions , the ability to acquire and develop specific projects , the ability to fund operations and changes in consumer and business consumption habits and other factors overwhich the company has little or no control . the publisher of this newsletter does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the publisher of this newsletter advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . we urge you to read the company ' s sec filings now , before you invest . the publisher of this newsletter is not a registered invstment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . in compliance with the securitiesact of 1933 , section 17 ( b ) , the publisher of this newsletter is contracted to receive six hundred thousand free trading shares from a third party , not an officer , director or affiliate shareholder for the circulation of this report . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and is not without bias . the party that paid us has a position in the stock they will sell at anytime without notice . this could have a negative impact on the price of the stock , causing you to lose money . all factual information in this report was gathered from public sources , including but not limited to sec filings , company websites and company press releases . the publisher of this newsletter believes this information to be reliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your .",1 +"Subject: freedom - $ 1 , 021 , 320 . 00 per year . hi , i would like you to enjoy the same success that i have had , since joining this program for free . cost you nothing to join ! pre - built downline : a full ( 2 wide x 10 deep ) profit center will have a total of 2 , 046 people and a payout of up to $ 1 , 021 , 320 . 00 per year . the fastest way for us to help you build a huge downline is to give away free memberships to highly motivated prospects , like you , and help build a downline under them . this is the fastest and most cost - effective way to build a productive downline ! we are currently recruiting over 1 , 000 new members per week with our lightning fast recruiting system ! ! ! go to : http : / / www . ircinconline . com / isb . htm code number 000 - 01 - 3118 ps . . . after i received my info pack , the company already had placed 30 people under me disclaimer to remove yourself from my data base please hit reply and insert remove in the subject box . 7211 iahr 5 - 883 pbxd 6893 zunf 7 - 464 yxfl 31",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . all iisted software is availabie for immediate download ! no need to wait 2 - 3 week for cd delivery ! just few exampies : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuii version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native languaqe ! best reqards , ashlee ",1 +"Subject: amaziing hello , welcome to medzonl hedgehog ine shop we are pleased to introduce ourselves as one of the ieading online pharmaceutica impractical i shops . financier v hundredweight r designer al l sestertius l trashy lag a matronly cl isv baresark a septic um andmanyother . - save over 75 sundae % - total confid fewness entiaiity - worldwide outset shlpplng - over 5 miilion cust clothes omers in 150 countries have a skinny nice day !",1 +"Subject: spice up your cellphone with a wallpaper from dirtyhippo . dress up your phone . visit here . dxndeueqjdzo",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . ali iisted software is avaiiable for immediate downioad ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton internet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 full version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianquage ! best reqards , adina ",1 +"Subject: improved health jbtfcz to find out more , click on the link below more info increase your sex drive ! ! ! great sexin a bottle ! knock your sex drive into high gear ! men easily achieve naturally triggered erections , like they are 18 all over again women will pump with naturally flowing juices from the start and will achieve the most intense orgasms of their lives ! jumpstart sexual desire in both men women , to the point that you never thought possible ! . has your sex life become dull , mundane , or even non - existent ? are you having trouble getting or "" keeping "" an erection ? do you think you have lost the desire ? or does your desire seem more like a chore ? click here for more info great sex in a bottle has been called the all natural alternative to viagra . it increases sex drive like you never thought possible , creating natural emotional responses ! this fact is unlike viagra , as viagra is designed to chemically induce blood flow to the penis . well , as you men know , that ' s great to stay hard , but if you don ' t have the desire to do anything , then what ' s the point ? ! ! ! and all for as low as $ 1 per pill , as opposed to viagra at $ 10 per pill ! xerox?ffffae brother?ffffae and more ! compatible with all inkjet printers plain paper inkjet faxes this message is being sent to you in compliance with the proposed federal legislation for commercial e - mail ( s . 1618 - section 301 ) . pursuant to section 301 , paragraph ( a ) ( 2 ) ( c ) of s . 1618 , further transmissions to you by the sender of this e - mail may be stopped at no cost to you by submitting a request to remove further , this message cannot be considered spam as long as we include sender contact information . you may contact us at ( 801 ) 406 - 0109 to be removed from future mailings . ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . ali iisted software is avaiiabie for immediate download ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuli version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native lanquage ! best regards , margarette ",1 +"Subject: if your sex life is good . . . then make it fantastic ! prescription medicine through an easy , secure and confidential environment . children are likely to live up to what you believe of them . a rat who gnaws at a cat ' s tail invites destruction . patience is the companion of wisdom . i love people , it ' s mankind i can ' t stand .",1 +"Subject: [ ilug ] stop the mlm insanity greetings ! you are receiving this letter because you have expressed an interest in receiving information about online business opportunities . if this is erroneous then please accept my most sincere apology . this is a one - time mailing , so no removal is necessary . if you ' ve been burned , betrayed , and back - stabbed by multi - level marketing , mlm , then please read this letter . it could be the most important one that has ever landed in your inbox . multi - level marketing is a huge mistake for most people mlm has failed to deliver on its promises for the past 50 years . the pursuit of the "" mlm dream "" has cost hundreds of thousands of people their friends , their fortunes and their sacred honor . the fact is that mlm is fatally flawed , meaning that it cannot work for most people . the companies and the few who earn the big money in mlm are not going to tell you the real story . finally , there is someone who has the courage to cut through the hype and lies and tell the truth about mlm . here ' s good news there is an alternative to mlm that works , and works big ! if you haven ' t yet abandoned your dreams , then you need to see this . earning the kind of income you ' ve dreamed about is easier than you think ! with your permission , i ' d like to send you a brief letter that will tell you why mlm doesn ' t work for most people and will then introduce you to something so new and refreshing that you ' ll wonder why you haven ' t heard of this before . i promise that there will be no unwanted follow up , no sales pitch , no one will call you , and your email address will only be used to send you the information . period . to receive this free , life - changing information , simply click reply , type "" send info "" in the subject box and hit send . i ' ll get the information to you within 24 hours . just look for the words mlm wall of shame in your inbox . cordially , siddhi p . s . someone recently sent the letter to me and it has been the most eye - opening , financially beneficial information i have ever received . i honestly believe that you will feel the same way once you ' ve read it . and it ' s free ! this email is never sent unsolicited . this is not "" spam "" . you are receiving this email because you explicitly signed yourself up to our list with our online signup form or through use of our ffa links page and e - maildom systems , which have explicit terms of use which state that through its use you agree to receive our emailings . you may also be a member of a altra computer systems list or one of many numerous free marketing services and as such you agreed when you signed up for such list that you would also be receiving this emailing . due to the above , this email message cannot be considered unsolicitated , or spam . - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: = ? iso - 8859 - 1 ? q ? automated reply from administrator ? = vakantie tot 26 juli !",1 +"Subject: re : your financial security ! high priority ! when economy goes down , we go up ! $ 3000 commission per sale for you ! ! with the power of f i n a n c i n g ! this is for serious people only make huge $ 3000 commissions on every sale ! for only $ 300 down and $ 149 per month ! part time earnings : $ 6000 per month full time earnings : $ 15 , 000 to 25 , 000 per month easy , fast and fun ! ! strictly not mlm ! ! here you earn money immediately ! if we have to prove it to you , we can and we will . my personal bank statement will speak for it . new ! assured f i n a n c i n g available ! ! where else do you make $ 3000 per sale ? ? our lease program lets you start right away - it ' s fast and easy ! do not miss out , as this is a one time offer ! free training included ! program available in usa and canada only ! request more free info now ! send an email to : paulbennert @ excite . com with "" send info "" in the subject line ( do not click reply ! ) to remove , please send an email with remove in the subject line to : plutoristal @ excite . com",1 +"Subject: delivery notification : delivery has failed this report relates to a message you sent with the following header fields : return - path : received : from ims - ms - daemon . mailo 2 . direcway . com by mailo 2 . direcway . com ( iplanet messaging server 5 . 2 hotfix 1 . 25 ( built mar 3 2004 ) ) id ( original mail from projecthoneypot @ projecthoneypot . org ) ; fri , 24 jun 2005 11 : 42 : 25 - 0400 ( edt ) received : from a 34 - mtao 3 . direcway . com ( a 34 - mtao 3 [ 66 . 82 . 4 . 104 ] ) by mailo 2 . direcway . com ( iplanet messaging server 5 . 2 hotfix 1 . 25 ( built mar 3 2004 ) ) with esmtp id ; fri , 24 jun 2005 11 : 42 : 25 - 0400 ( edt ) received : from dsl 7 - 186 . rb . comporium . net ( dsl 7 - 186 . rb . comporium . net [ 199 . 222 . 173 . 186 ] ) by a 34 - mtao 3 . direcway . com ( iplanet messaging server 5 . 2 hotfix 1 . 25 ( built mar 3 2004 ) ) with smtp id ; fri , 24 jun 2005 11 : 40 : 38 - 0400 ( edt ) received : from dnsolpaypal . com ( 173 . 169 . 34 . 152 ) by jem 36 - dhy 9 . paypal . com with microsoft smtpsvc ( 5 . 0 . 2195 . 6824 ) ; fri , 24 jun 2005 11 : 37 : 57 - 0500 received : from paypal . com ( 127 . 0 . 0 . 1 ) by dns paypal . com ( smtpd 32 - 7 . 12 ) id qllo 800 ; fri , 24 jun 2005 11 : 37 : 57 - 0500 date : fri , 24 jun 2005 11 : 40 : 38 - 0400 ( edt ) date - warning : date header was inserted by a 34 - mtao 3 . direcway . com from : daniel suon subject : fast debt relief ! ! ! = ? unknown ? q ? = b 95259 - plrk ? = to : stephen @ direcpc . com message - id : content - type : multipart / mixed ; boundary = "" - - - - - = 575 _ 8521 _ 6 f 749 v 57 . 81 gr 791 f "" your message cannot be delivered to the following recipients : recipient address : stephen @ ims - ms - daemon original address : stephen @ direcpc . com reason : over quota recipient address : summit @ ims - ms - daemon original address : summit @ direcpc . com reason : over quota",1 +"Subject: best software prices . big range of all types of downloadable software . life is consciousness . if you stay in beverly hills too long you become a mercedes .",1 +"Subject: reduction in high blood pressure age should be nothing more than a number it ' s okay to want to hold on to your young body as long as you can view more about a new lifespan enhancement press here with increasing longevity for an increasing segment of the population , this is the frontier for the new millennium - dr david howard medical journal news sorry not for me and the address is above this was good reasoning , but the rash youth had no idea he was speeding over the ocean , or that he was destined to arrive shortly at the barbarous island of brava , off the coast of africa yet such was the case ; just as the sun sank over the edge of the waves he saw , to his great relief , a large island directly in his path he dropped to a lower position in the air , and when he judged himself to be over the center of the island he turned the indicator to zero and stopped short ",1 +"Subject: get big , ripped & strong ! ! deca , d - bol , winni - v ! 1095 get big , ripped , & strong ! real anabolic pharmaceuticals ! * - d - bol - winni - v - equipose - ghb - and more ! - click here to enter = = = = = > sdi - labs anabolics ( please click on the link below or copy and paste the following url into your browser if above link does not work . ) http : / / www . sdilabsol - 02 . com / s - labs / - build incredible muscle size and strength - get vascular , hard and ultra ripped new extremely powerful products - liquid anodrol - sustenol 250 - deca nor 50 - masterbolan - somatroph hgh - click here to enter = = = = = > sdi - labs anabolics sdi - labs toll free : 1 - 561 - 742 - 5932 9835 - 16 lake worth rd . # 227 lake worth , fl 33467 to be cancelled for free from our email list please click on the following link and and hit send . your email address will be removed within 24 hours . cancel @ tgifcam . com if above link does not work please send an email with the word cancel in the subject to cancel @ tgifcam . com if you have previously cancelled and are still receiving this message , or need to speak with us regarding this email , you may call our abuse control center immediately toll free at 1 - 888 - 425 - 6788 or email nomorel @ tgifcam . com , you may also write us at nomore 9835 - 16 lake worth road # 227 - lake worth , fl 33467 * our sincere love and prayers go out to all of the familys and individuals that were touched by the horrible acts committed against our country . and also for our soldiers who are now defending this great land . ",1 +"Subject: this one will make you money 9 / 20 / 02 11 : 34 : 52 pm a great sponsor will not make you money . a great product line will not make you money either . a great compensation plan will not make you money either . a great company will not make you money either . some say it ' s a combination of the above . some say it ' s what ' s inside you that matters the most . forget about meetings , one - on - one , 3 - ways calls , etc . those old ways of network marketing has come and gone . they wear you out long before you make any money . what makes you money is a downline associated with a stable company that has consumable products . where ' s the downline coming from ? well , we have an online automatic recruiting system that does the work for you . our system will place paying members in your downline . furthermore , you can see it working first hand before you decide what to do , if any . for more info on this simple but powerful recruiting system please click here and send a blank message we belong to the same opt - in list . but if you wish to have your email address remove from our database please click here ",1 +"Subject: a chance to get new logo now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visuai imaqe of your company by creating an outstandinq loqo , presentable stationery items and professionai website . these marketinq toois wili siqnificantly contributeto success of your business . take a look at our work sampies , hot deai packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: it woorks fine want to know how to save over 60 pigsty % on your piils ? http : / / www . afteading . measurably com - su earthquake ccessfull and proven way to sav outpost e your money . altercation v trifoliate ag prayer al rollick lu serous l r commiserative a syphilitic cl destitution isva breeder l ascribe m andmanyother . be bacillus st prlces . high qu swatter aiity . worldwide sh circumlocutory lpplng . total c gastronomist onfidentiaiity . 250 . 000 + satisfie behaviour d customers . have ascensional a nice day !",1 +"Subject: play full length movies on your pc to ensure delivery to your inbox ( not bulk or junk folders ) , please add news @ real - email . net to your address book . only $ 12 . 95 per month after your free trial . unlimited movie downloads choose from 100 s of movies each month , with new titles added weekly . theres never a queue to manage just pick your movie , start downloading , and you can begin watching in minutes . no hidden charges , no late fees , nothing to mail back . watch at home or on the go , as often as you want . please note : subscriptions are currently available for purchase in the u . s . only . a 300 kbps broadband connection is required . if you want to make sure that emails from realnetworks go to your inbox and not to your junk mail folder , add news @ real - email . net to your address book . if you do not wish to receive e - mails from us in the future , click here to unsubscribe . have questions regarding our email privacy policy ? contact us at : email privacy policy group realnetworks , inc . p . o . box 91123 seattle , wa 98111 - 9223 or click here to read our privacy policy need customer support ? contact us at : http : / / service . real . com 2005 realnetworks , inc . patents pending . all rights reserved . realnetworks , real , realplayer , realrhapsody , realaudio , realvideo and the real logo are trademarks and registered trademarks of realnetworks , inc . all other trademarks are property of their respective owners . starz starz ticket and related channels and service marks are the property of starz entertainment group llc . all other trademarks are the property of their respective owners . starz entertainment group llc 8900 liberty circle englewood , co 80112 starz privacy policy to unsubscribe from starz emails , please visit here . ",1 +"Subject: send the love home with an online photo album get cd and downloads , all software under $ 99 - $ 15 nobody will believe in you unless you believe in yourself . nothing feeds upon itself as liberality does .",1 +"Subject: thanksgiving sale we want to thank you for your past business and wish you and yours a very happy thanksgiving holiday this year . as you know , indians played an important role in helping the pioneers find food and water . no small wonder they were honored on our nation ' s cents from 1859 to 1909 and gold coins from 1854 to 1933 . asa way of giving thanks to our customers , we just bought in a rare batch of 900 vf and xf indian cents and are offering these on special for this week . nice mixture of dates from the 1880 s to 1909 . our regular wholesale price for solid vf coins is $ 1 . 95 and $ 6 . 00 for solid xf . for this week only , we are offering 10 different dates , vf or better , for only $ 15 or 10 different dates , solid xf or better , for only $ 45 . dealers / investors - buy a nice roll of 50 , with at least 10 different dates in each roll . vf roll of 50 , only $ 69 . xf roll of 50 , only $ 195 . limit : 5 rolls of each per customer at these low wholesale prices . we also have some really nicechoice bu ( ms 63 or better ) $ 21 / 2 indian gold coins from 1908 - 1929 for only $ 395 each ( our choice of date , but we will pick out the best quality ) 3 different for only $ 950 or 10 different for $ 2 , 950 . limit : 10 per customer . please add $ 6 to help with postage and insurance on all orders . thank you again , cristina www . collectorsinternet . com p . s . one of our most popular items this month has been our wholesale bargain boxes , found half way down our homepage or at http : / / collectorsinternet . com / . htm . we are getting many repeat orders from other dealers . you can save time and postage by adding this item , or any other items we have on sale to your other purchases , as there is only a $ 6 postage and handling fee per order , regardless of size . ",1 +"Subject: prime lenders application status we tried to contact you last week about refinancing your home at a lower rate . i would like to inform you know that you have been pre - approved . here are the results : * account id : [ 046 - 073 ] * negotiable amount : $ 182 , 092 to $ 657 , 186 * rate : 3 . 30 % - 5 . 52 % please fill out this quick form and we will have a broker contact you as soon as possible . regards , gus hammond senior account manager lyell national lenders , llc . database deletion : www . lend - bloxz . com / r . php ",1 +"Subject: account suspension dear paypal user , in accordance with our major database relocation , we are currently having major adjustments and updates of user accounts to verify that the informations you have provided with us during the sign - up process are true and correct . however , we have noticed that the pin number you updated on file is fake . paypal requires your personal identification number as the latest security measure against : identity theft , credit card fraud and unauthorized account access . paypal will verify it with your bank records for your own protection . if you provide a wrong pin your account will be suspended for unauthorized account access . due our latest security improvements paypal became a global leader in online payments . we require you to complete an account verification procedure as part of our security measure . you must click the link below to complete the process . unable to do so may result to abnormal account behavior during transactions . thank you for using paypal ! the paypal team please do not reply to this e - mail . mail sent to this address cannot be answered . for assistance , log in to your paypal account and choose the "" help "" link in the footer of any page . paypal email id ppo 96 ",1 +"Subject: loaded with technology for business and home . microsoft localized software . http : / / iylo . box 8 wab 48 lti 8 ut . evelynlb . com some of my best leading men have been dogs and horses . the smaller the mind the greater the conceit .",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of loqos , stationery and web - sites . under our careful hand these powerful marketing tools wili brinq a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . click here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: just to her . . . you are not allowed to post to this mailing list , and your message has been automatically rejected . if you think that your messages are being rejected in error , contact the mailing list owner at die _ spammer _ die - owner @ rockycrater . org .",1 +"Subject: re : september 11 , 2001 hi my name is jason , i recently visited www . muhajabah . com / wtc . htm and wanted to offer my services . we could help you with your september 11 , 2001 website . we create websites that mean business for you ! here ' s the best part , after we recreate your site in the initial setup , we give you a user - friendly master control panel . you now have the ability to easily add or remove copy , text , pictures , products , prices , etc . when you want to ! i would be happy to contact you and brainstorm some ideas . regards - jasononline store creatorstoll free : 800 - 658 - 9978 ext : 206 http : / / www . . comwe are can - spam complientif you do not want to receive these informational emails in the future , please unsubscribe .",1 +"Subject: seeking your partnership dear partner to be , first , i must apologise to you for using this medium to communicate to you about this project . i am a highly placed official of government of nigeria and also a founding member of the ruling party in power now , the peoples democratic party ( pdp ) . my committee - the niger delta development corporation ( nddc ) - which is in charge of managing and supervising the disbursement of oil sales revenues for the nigerian government . the revenues under our control runs into several hundred of millions of dollars monthly . my self and other colleagues in the nddc are currently in need of a foreign partner with whose bank account we shall transfer the sum of forty nine million five hundred thosand united states dollars ( $ 49 . 5 m ) . this fund accrued to us as commission for oil sales contracts handled under our supervision . the fund is presently waiting in the government account named cbn / fgn independent revenue account number 400 - 939134 with j . p . morgan chase bank , new york . you can do your independent verifictaion of this . however , by virtue of our position as civil servants and members of the nddc , we cannot acquire this funds in our name . this is because as top civil servants , we are not allowed by law of the land to own or operate bank accounts outside our country for now . i have been delegated as a matter of trust by my colleagues , to look for an overseas partner in whose account we would transfer the fund hence the reason for this mail . we shall be transferring the money to your account with your company as we shall present your company as a registered foreign company with a branch in nigeria and you are been paid for a contract which you executed for our country through the nddc and any oter federal ministry that we decide to use to siphon the funds away . for your support and partnership , please reply me to negotiate your fees or the percentage you wish to be paid when the funds arrive your bank account . you must however note that this transaction , with regards to our disposition to continue with you , is subject to these terms . firstly , our conviction of your transparency . secondly , that you treat this transaction with utmost secrecy and confidentiality . finally and above all , that you will provide an account that you have absolute control over . the transaction , although discrete , is legitimate and there is no risk or legal disadvantages either to ourselves or yourself now or in the future as we have put in place perfect mchineries that will ensure a hitch free transfer into your account upon acceptance . the transfer will be effected to your account within ten - fourteen ( 10 - 14 ) working days as soon as we reach an agreement and you furnish me with a suitable bank account and company name and address with all your contact numbers including fax number . i am looking forward to doing business with you and do solicit your confidentiality in this transaction , please mail your response to me . yours faithfully , anderson k . eseimoku",1 +"Subject: http : / / www . kirkbridebuildings . com hello , i have visited www . kirkbridebuildings . com and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: market internet access - no investment needed market internet access no investment needed premium internet access for only $ 14 . 95 per month or less ! earn $ 1 per subscriber per month go to : http : / / new . isp . 50 megs . com / 3442 bvlb 9 - 565 fafxo 200 lbck 9 - 698 onqh 7 l 33",1 +"Subject: let us find the right mortgage lender for you afpe dear homeowner , interest rates are at their lowest point in 40 years ! we help you find the best rate for your situation by matching your needs with hundreds of lenders ! home improvement , refinance , second mortgage , home equity loans , and more ! even with less than perfect credit ! this service is 100 % free to home owners and new home buyers without any obligation . just fill out a quick , simple form and jump - start your future plans today ! visit http : / / 61 . 145 . 116 . 186 / usero 201 / index . asp ? afft = qml 0 to unsubscribe , please visit : http : / / 61 . 145 . 116 . 186 / light / watch . asp",1 +"Subject: re : new page hi sweetie , come see the most beautiful , sweet . . . - - > 18 year old girls bare it all ! < - - http : / / freexmovies . net / mypic / remove instructions : this e - mail message is not spam or unsolicited . this e - mail address has joined or requested information in the past . if this is a mistake or you would prefer not to receive a free once a week adult web site announcement , then . . . please visit the web page below , at anytime to be permanently removed from the list : http : / / remove . pwxx 3 . com http : / / xent . com / mailman / listinfo / fork",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei designer 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe goiive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter lx $ 80 adobe lllustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , chantell ",1 +"Subject: when will the real estate bubble burst ? - live meeting july 21 st on alternative investments event date : thursday july 21 st at 10 : 30 am est , 2 : 30 pm est , and 7 : 30 pm estwith top - ranked alternative investment manager , michael mansfield "" the biggest financial bubble in history "" in the article "" after the fall , "" in the june 16 , 2005 issue of economist magazine , real estate was called , "" the biggest financial bubble in history . "" what makes this real estate market so risky is that the crazy speculation in housing has spread around the world . people continue to buy houses simply because "" prices are rising "" , without any regard to fundamentals . this is similar to what happened with the stock market during the 1990 ' s , when investors bought shares of profitless companies just because everyone else was doing the same . in fact , many of thepeople who have gotten or are getting into real estate are the ones that got killed by the stock market during the 2000 crash . consequently , these will probably be the same people that get burned when the global housing bubble bursts ( prices in australia and britain are already sliding . america ' s housing market may be a year or so behind ) . to register for this complimentary event , go to http : / / www . forex - day - trading . com / forex - online - registration . htm . even warren buffett is negative on real estate warren buffett , the second richest man in the world , recently sold his house in laguna for $ 3 . 5 million . he joked , "" it was on about 2 , 000 square feet of land , maybe a twentieth of an acre , and the house might cost about $ 500 , 000 if you wanted to replace it . so the land sold for something like $ 60 million an acre . "" [ if you want to read more about this , you can go to cnn ' s website at http : / / money . cnn . com / 2005 / 05 / 01 / news / fortune 500 / buffett _ talks / ] so why is buffett saying that us real estate is a bubble ready to burst ? and why is buffett betting against the us dollar ? [ note : buffett made $ 1 . 63 billion in foreign currency ( fx ) gains from the dollar ? s decline in the last quarter of 2004 ] for the same reasons that michael mansfield has been discussing in his live online meetings . who is michael mansfield ? top - ranked alternative investment manager michael mansfield is the co - manager of the # 1 - ranked global diversified fx portfolio ( gdfx ) . heis having his next live online meeting on july 21 st at three different times ( see below for instructions on how to register for this event ) . gdfx was up 31 . 87 % in 2004 and was ranked # 1 by eurekahedge . the objective of gdfx is to produce between 20 to 45 % a year after fees and has no correlation to stocks or real estate . what will be covered ? mansfield will discuss what ' s in store for the global markets in 2005 , including the forex , stock , oil , gold , interest rate , and real estate markets . he will also cover what has made the gdfx managed portfolio so successful when compared to other alternative investments and managed accounts . in his discussion , mansfield will cover why it is so risky to be invested right now in long - only stock positions . he will also discuss when the current real estate bubble will likely burst and what you can do about it . who is this event for ( investors , advisors , hedge funds , religious institutions , etc . ) ? if you are considering professionally managed forex accounts ( alternative investments ) or you are currently invested in real estate , stocks , bonds , or mutual funds , you should attend this live event . if you or capital ( or your clients ' capital ) into alternative investments with above average returns and below average drawdowns , you might be a perfect candidate for our introducing broker program ; so we strongly suggest that you also attend this event . ( due to the demand that we have experienced for mansfield ? s discussions in the past , we have scheduled his next discussion at three different times on tuesday june 21 st . this will provide convenient hours for investors in different parts of the world to attend . please use the link below to register for any of the times provided : registration for this event thursday july 21 st at 10 : 30 am est ( miami , fl , usa ) ( please convert this to your local time ) thursday july 21 st at 02 : 30 pm est ( miami , fl , usa ) ( please convert this to your local time ) thursday july 21 st at 07 : 30 pm est ( miami , fl , usa ) ( please convert this to your local time ) some of mansfield ? s notable accomplishments - # 1 ranked manager by eureka hedge for april 04 - top - ranked manager in futures magazine for march 00 - called a large additional sell off in the nyse on aug 01 - called the us stock market crash of 1987 - master market technician with uncanny forecasting ability - co - manager of the global diversified fx portfolio ( gdfx ) space for this event is limited and will be filled on a first - come - first serve basis . if you have any questions about this complimentary event or about managed accounts , please give us a call . sincerely , joe loraforexmanaged account departmenthttp : / / www . forexdaytrading . com 2150 coral way , suite 5 dmiami , florida 33145 united states 800 - 366 - 4157 ( toll free in the u . s . and canada ) 786 - 866 - 8733 ( international ) to unsubscribe , please go to the link below : ",1 +"Subject: youthh rediscovered how to save on your medlcatlons over 70 tiffin % . pharmz rightwards mail shop - successfull and proven way to sav objectless e your mon higgle ey . slangy v reservist ag journalese al l privateering u pricking l r fumigate a abnormal cl concern isv oniony al carpetbagger m andmanyother . * best necroscopy prlces * worldwid regeneration e shlpplng * total grange confidentiaiity * ov needlework er 5 miliion customers have a nice day hypnotic !",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) orderinq viagra oniine is a very convinient , fast and secure way ! miliions of people do it daiiy to save their privacy and money order here . . . ",1 +"Subject: amaze your partner with the talents in sexual area ! same medication - low price everywhere i go i find a poet has been there before me . assumptions are the termites of relationships . disinterested intellectual curiosity is the life blood of real civilization . the road to a friend ' s house is never long .",1 +"Subject: professional advertising dear projecthoneypot @ projecthoneypot . org : we offer email marketing with best services . 1 . targeted list we can provide target email list you need , which are compiled only on your order . we will customize your client list . * we have millions of lists in many categories . 2 . sending targeted list for you we can send your email message to your target clients ! we will customize your email list and send your ad for you . * we also offer hosting & mailing server . regards ! steve marketing team kzl 789 @ 56 . com no and bye : bpserver @ hotmail . com",1 +"Subject: harvest lots of e - mail addresses quickly ! dear cpunks , want to harvest a lot of email addresses in a very short time ? easy email searcher is a powerful email software that harvests general email lists from mail servers easy email searcher can get 100 , 000 email addresses directly from the email servers in only one hour ! easy email searcher is a 32 bit windows program for e - mail marketing . it is intended for easy and convenient search large e - mail address lists from mail servers . the program can be operated on windows 95 / 98 / me / 2000 and nt . easy email searcher support multi - threads ( up to 512 connections ) . easy email searcher has the ability to reconnect to the mail server if the server has disconnected and continue the searching at the point where it has been interrupted . easy email searcher has an ergonomic interface that is easy to set up and simple to use . ? ? easy email searcher is an email address searcher and bulk e - mail sender . it can verify more than 5500 email addresses per minute at only 56 kbps speed . it even allows you send email to valid email address while searching . you can save the searching progress and load it to resume work at your convenience . all you need to do is just input an email address , and press the "" search "" button . very low price ! - - - - - - - now , the full version of easy email searcher only costs $ 39 . 95 click the following link to download the demo : download site 1 download site 2 ? ? if you can not download this program , please copy the following link into your url , and then click "" enter "" on your computer keyboard . here is the download links : disclaimer : we are strongly against continuously sending unsolicited emails to those who do not wish to receive our special mailings . we have attained the services of an independent 3 rd party to overlook list management and removal services . this is not unsolicited email . if you do not wish to receive further mailings , please click this link mailto : removal @ btamail . net . cn . this message is a commercial advertisement . it is compliant with all federal and state laws regarding email messages including the california business and professions code . we have provided the subject line "" adv "" to provide you notification that this is a commercial advertisement for persons over 18 yrs old . - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: make this investigator work for you . astounding new software lets you find out almost anything about anyone click here to download it right now ( no charge card needed ) : download page ( this make take a few moments to load - please be patient ) find out everything you ever wanted to know about : your friends your family your enemies your employees yourself - is someone using your identity ? even your boss ! did you know that you can search for anyone , anytime , anywhere , right on the internet ? click here : download page this mammoth collection of internet investigative tools & research sites will provide you with nearly 400 gigantic research resources to locate information online and offline on : people you trust , people you work with screen new tenants , roommates , nannys , housekeepers current or past employment license plate numbers , court records , even your fbi file unlisted & reverse phone number lookup click here : download page o dig up information on your friends , neighbors , or boss ! o locate transcripts and court orders from all 50 states . o cloak your email so your true address can ' t be discovered . o find out how much alimony your neighbor is paying . o discover how to check your phones for wiretaps . o or check yourself out - - you may be shocked at what you find ! ! these are only a few things that you can do with this software . . . to download this software , and have it in less than 5 minutes , click & visit our website : click here : download page we respect your online time and privacy and honor all requests to stop further e - mails . to stop future messages , do not hit reply . instead , simply click the following link which will send us a message with "" stop "" in the subject line . please do not include any correspondence - - all requests handled automatically . : ) [ click here to stop further messages ] thank you ! copyright 2001 , all rights reserved . [ 1 : kj ) _ 8 j 7 bjk 9 ^ "" : } h & * tgobk 5 nkiys 5 ]",1 +"Subject: failure notice this is the mail delivery agent at messagelabs . com . i was not able to deliver your message to the following addresses . : 144 . 189 . 100 . 102 does not like recipient . remote host said : 550 5 . 0 . 0 . . . host down - - - below this line is a copy of the message . return - path : x - viruschecked : checked x - env - sender : projecthoneypot @ projecthoneypot . org x - msg - ref : server - 3 . tower - 115 . messagelabs . com ! 1121770867 ! 6986571 ! 1 x - starscan - version : 5 . 5 . 4 . 1 ; banners = - , - , - x - originating - ip : [ 221 . 9 . 132 . 25 ] x - spaminfo : spam detected heuristically x - spam : true x - spamreason : yes , hits = 50 . 0 required = 7 . 0 tests = spam signature : spam . health . 96584 received : ( qmail 16008 invoked from network ) ; 19 jul 2005 11 : 01 : 18 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 221 . 9 . 132 . 25 ) by server - 3 . tower - 115 . messagelabs . com with smtp ; 19 jul 2005 11 : 01 : 18 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 30516347 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : antonio _ silva @ br . css . mot . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivabie ! this email has been scanned by the messagelabs email security system . for more information please visit http : / / www . messagelabs . com / email ",1 +"Subject: v . to you want to know how t archimedean o save over 60 % on your piils ? http : / / w alphabetically ww . healthen . com - succes undecided sfull and proven way to s generatrices ave your money . apophthegm v steeple ag a coryphee l groomsman lu alimentation l unsearchable ra terror cl surety is monticule val regale m andmanyother . b unsown est prlces . high qu monitorial aiity . w criterion orldwide shlpplng . total confi exordium dentiaiity . 250 . 000 + satisfied cus maladministration tomers . ha handbill ve a nice day !",1 +"Subject: logo , stationer , website design and so much more ! lt is really hard to recollect a company : the market is full of sugqestions and the information isoverwheiminq ; but a good catchy logo , stylish statlonery and outstandlng webslte will make the task much easier . we do not promise that having ordered a loqo your company wiil automaticaliy become a world leader : it isguite clear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: introducing hgh : the most powerful anti - obesity drug ever hello , jm @ example . comhuone therapy lose weight while building lean muscle massand reversing the ravages of aging all at once . as seen on nbc , cbs , and cnn , and even oprah ! the health discovery that actually reverses aging while burning fat , without dieting or exercise ! this proven discovery has even been reported on by the new england journal of medicine . forget aging and dieting forever ! and it ' s guaranteed ! lose weightbuild muscle tonereverse aging increased libido duration of penile erection healthier bones improved memoryimproved skinnew hair growthwrinkle disappearance visit our web site and learn the facts : click here if the above link is not operational , please click here again . you are receiving this email as a subscr - in amerig lisve yoursts , just click here ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - ) orderinq viagra online is a very convinient , fast and secure way ! miiiions of peopie do it daily to save their privacy and money order here . . . ",1 +"Subject: teach and grow rich do you want to teach and grow rich ? if you are a motivated and qualified communicator , i will personally train you to do 3 20 minutes presentations per day to qualify prospects that i can provide to you . we will demonstrate to you that you can make $ 400 a day part time using this system . or , if you have 20 hours per week , as in my case , you can make in excess of $ 10 , 000 per week , as i am currently generating ( verifiable , by the way ) . plus i will introduce you to my mentor who makes well in excess of $ 1 , 000 , 000 annually . many are called , few are chosen . this opportunity will be limited to one qualified individual per state . make the call and call the 24 hour pre - recorded message number below . we will take as much or as little time as you need to see if this program is right for you . * * * 801 - 296 - 4140 * * * please do not make this call unless you are genuinely money motivated and qualified . i need people who already have people skills in place and have either made large amounts of money in the past or are ready to generate large amounts of money in the future . looking forward to your call . * * * 801 - 296 - 4140 * * * * to be taken out of this database : benno 5 @ witty . com ",1 +"Subject: visual identity and logo now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in building a positive visual imaqe of your company by creatinq an outstanding ioqo , presentable stationery items and professionai website . these marketinq tools wiil significantly contributeto success of your business . take a look at our work samples , hot deal packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . aii listed software is availabie for immediate download ! no need to wait 2 - 3 week for cd deiivery ! just few examples : - norton internet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuil version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianquage ! best regards , siyvia ",1 +"Subject: viagra is the # 1 med to struggle with mens ' erectile dysfunction . for your convenience purchase all your prescription and non prescription needs at discount prices . frustration is one of the greatest things in art ; satisfaction is nothing . every marriage is happy . its the living together afterward that ' s the challenge . laughing deeply is living deeply .",1 +"Subject: blow yourr life want to know how to save over 60 % on you nailer r me probity dlcatlons ? http : / / w masonry ww . wanleader . com - successfull an pierage d proven way to save your mone justificative y . best prlces respectfully . high q tenuity uaiity . worl cabriole dwide shlpplng . total untune confidentiaiity . mor fascia e than 200 popular medlcatlons hav oddity e a nice day !",1 +"Subject: easily lose weight / build muscle / reverse aging ! 21231 as seen on nbc , cbs , cnn , and oprah ! would you like to lose weight while you sleep ? no dieting ! no hunger pains ! no cravings ! no strenuous exercise ! change your life forever ! 100 % guaranteed ! www . quality - hgh . com * body fat loss 82 % improvement . * wrinkle reduction 61 % improvement . * energy level 84 % improvement . * muscle strength 88 % improvement . * sexual potency 75 % improvement . * emotional stability 67 % improvement . * memory 62 % improvement . www . quality - hgh . com how to unsubscribe : you received this e - mail because you are registered at one of our web sites , or on one of our partners ' sites . if you do not want to receive partner e - mail offers , or any email marketing from us please click here . lindacucme @ att . net",1 +"Subject: discontinue making p a y m e n t s immediately harassing calls and letters brought to a stand still . we have pioneered an advanced system of proven strategies that will get the creditors and debt collectors off your back for good our debt termination program has legally stopped millions of dollars worth of debt from being collected . check out our elimination program here http : / / axew . jeet . newsbenefitnow . com / 2 / not for you , then use link above it is , indeed , replied rob , leaning over the edge to look into the street . as he spoke he felt himself gently but firmly pushed from behind and , losing his balance , he plunged headforemost from the roof and whirled through the intervening space toward the sidewalk far below terrified though he was by the sudden disaster , the boy had still wit enough remaining to reach out his right hand and move the indicator of the machine upon his left wrist to the zero mark",1 +"Subject: your logo and visual identity from us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our carefui hand thesepowerful marketinq toois wiii bring a breath of fresh air into your business and make you stand out amongthe competitors . you are just a click away from your future success . ciick here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: part time job for you . ( ref : 375 ) hq management , s . a . if you have bank account or you can open new one then we need you ! excellent income , no initial investments . no more than couple of hours a day required . please register at our website : our vacancies msg - id : uooirdym do not reply to this message , use contact / register form on the above website to contact us ! copyright 2005 hq management , s . a . all rights reserved . cerise dialect coliform covalent dazzle profundity sawfly resonant boon johnsen emory ",1 +"Subject: 80 % discount on all adobe titles opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro edition 20032 windows xp pro 3 adobe creative suite premium 4 systemworks pro 2004 edition 5 flash mx 20046 corel painter 87 adobe acrobat 6 . 08 windows 2003 server 9 alias maya 6 . 0 wavefrontl 0 adobe premiere see more by this manufacturer microsoft apple software customers also bought these other items . . microsoft office professional edition * 2003 * microsoft choose : see other options list price : $ 899 . 00 price : $ 69 . 99 you save : $ 830 . 01 ( 92 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : analyze and manage business information using access databases exchange data with other systems using enhanced xml technology control information sharing rules with enhanced irm technology easy - to - use wizards to create e - mail newsletters and printed marketing materials more than 20 preformatted business reports sales rank : # 1 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 1 , 768 reviews . write a review . microsoft windows xp professional or longhorn edition microsoft choose : see other options list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : designed for businesses of all sizes manage digital pictures , music , video , dvds , and more more security with the ability to encrypt files and folders built - in voice , video , and instant messaging support integration with windows servers and management solutions sales rank : # 2 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 868 reviews . write a review . adobe creative suite premium adobe choose : see other options list price : $ 1149 . 00 price : $ 99 . 99 you save : $ 849 . 01 ( 90 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : an integrated design environment featuring the industrys foremost design tools in - depth tips , expert tricks , and comprehensive design resources intuitive file finding , smooth workflow , and common interface and toolset single installer - - control what you install and when you install it cross - media publishing - - create content for both print and the web sales rank : # 3 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 498 reviews . write a review .",1 +"Subject: we owe you lots of money dear homeowner , you have been pre - approved for a $ 200 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . kxxjn . com / i / lzevaw 5 8 zymg 5 ollie markswv kennedy financial group - - - - - - - - - - - - - - - - - - - - - - 4 : heeralal celle darell doctorate egypthttp : / / www . kxxjn . com / rem . php . . . not interested",1 +"Subject: digital voice recorders dear sir / madam our company is designer and manufacturer of digital voice recorders ( dvr ) edic - mini http : / / www . telesys . ru / english / edic - mini . shtml with extraordinary characteristics : edic - mini model a - the smallest size over the world ( 17 x 57 xl 0 mm ) , up to 1120 min of record time . edic - mini model b - the longest battery life ( up to 70 hours in record mode , metal case 27 x 54 x 7 mm ) , up to 1120 min of recording time . edic - mini model bl - the roundest dvr in the world : - ) ( metal case d = 30 mm , h = 14 mm ) , up to 1120 min of recording time . edic - mini model c - the longest recording time ( up to 8960 min = 149 hours ) , metal case 27 x 54 xl 0 mm . coming soon : edic - mini model s - stereo digital voice recorder . edic - mini bwl - round wood ( juniper ) case ( for lovers of juniper fragrance : - ) , the most stylish dvr in the world . all digital voice recorders have extremely high voice sensitivity , digital pc interface , telephone line interface to record phone conversations , programmable user ' s interface , ability of using it for data storage and transfer ( capacity from 16 mbyte to lgbyte ) . also we produce voice modules ( assembled pcb only ) emm http : / / www . telesys . ru / english / modules . shtml , which are edic - mini compatible and allow you to create your own solution of unique dvr . we are looking for dealers for selling our product , but pls note , that we don ' t offer cheap product , we offer unique one - it has no competitors in the word market now . we are ready to design and produce any kind of dvr upon your request . low volume order ( 100 + ) is acceptable too . welcome to our website http : / / www . telesys . ru / english to get more information . * * * sorry , if this information isn ' t interesting for you . to remove your address from our mailing list pls return this e - mail back with remove in subject field . thank you . with best regards , - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - yana korshun , sales manager of "" telesystems "" e - mail : isales @ telesys . ru www site in russian : http : / / www . telesys . ru www site in english : http : / / www . telesys . ru / english never send spam . it is bad .",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of loqos , stationery and web - sites . under our careful hand thesepowerfui marketinq tools wili bring a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . ciick here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: congrats on your approval we tried to contact you last week about refinancing your home at a lower rate . i would like to inform you know that you have been pre - approved . here are the results : * account id : [ 220 - 063 ] * negotiable amount : $ 149 , 794 to $ 686 , 214 * rate : 3 . 46 % - 5 . 26 % please fill out this quick form and we will have a broker contact you as soon as possible . regards , socorro magee senior account manager prime lenders , inc . database deletion : http : / / www . mon - nowz . net / r . php ",1 +"Subject: now , it ' s finally possible for you to enlarge your penis no more penis enlarge ripoffs ! http : / / www . okmpoi . com / ss / people everywhere confuse what they read in newspapers with news . he who can , does . he who cannot teaches . absence of proof is not proof of absence . do not count your chickens before they are hatched . who will bell the cat ?",1 +"Subject: if you own a cell phone . . . . . . please read . . . . . 5214 unbelievable prices on cell phones and accessories : http : / / 65 . 218 . 171 . 48 hands free ear buds 1 . 99 ! phone holsters 1 . 98 ! phone cases 1 . 98 ! car chargers 1 . 98 ! face plates as low as 2 . 98 ! lithium ion batteries as low as 6 . 94 ! http : / / 65 . 218 . 171 . 48 click below for accessories on all nokia , motorola lg , nextel , samsung , qualcomm , ericsson , audiovox phones at below wholesale prices ! http : / / 65 . 218 . 171 . 48 * * * new * * * now also : accessories for palm iii , palm vii , palm iiic , palm v , palm ml 00 & ml 05 , handspring visor , compaq ipaq * * * car chargers 6 . 95 ! leather cases 13 . 98 ! usb chargers 11 . 98 ! hot sync cablesl 1 . 98 ! http : / / 65 . 218 . 171 . 48 * * * if you need assistance please call us ( 732 ) 751 - 1457 * * * ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ to be removed from future mailings please send your remove request to : 3425342 r @ eudoramail . com",1 +"Subject: excelleent news how halving to save on your medlcations over 70 % . pharms grindery hop - suc bunker cessfull and proven way to save your m meteorograph oney . foreknow v a selfcontained g a blushfool l l magnetron u testatrix l r bulldozer ac oration l i squalor s sententious val centigram m andmanyother . best p dexterity rlces . wo arrogance rldwide shlpplng . easy o astragalus rder form . total co picturebook nfidentiaiity . 250 , 000 satisfied customers frowsy . or aggregation der today and save !",1 +"Subject: ebay and auction info 30314 you are receiving this email because you have expressed an interest in making money with ebay and or on the internet . how would you like to earn $ 750 a day using ebay and the internet ? i absolutely - 100 % - guarantee you have never heard of this ebay & internet money - making system before . http : / / www . mailcomesandgoes . com / auction / this free ebook is powerful , so compelling it will blow your mind ! mark w . monday - the ebay millionaire in just a few minutes reading my book , you will find an opportunity so powerful , so compelling , that you ' ll wonder why someone hasn ' t thought of this sooner ! this is not a multi level marketing program or ? get rich quick scheme ? it is a real business that can make you real wealthy . http : / / www . mailcomesandgoes . com / auction / imagine yourself waking up in the morning , turning on your computer and finding out that thousands of dollars had been deposited into your bank account . how would that make you feel ? it is 100 % possible when you know the secrets to making money using ebay and the internet . if this idea turns you on , then so will this new ebook ! respond now and you will immediately receive via email the entire ebook . http : / / www . mailcomesandgoes . com / auction / free bonus - respond right now and we ? ll give you the special report - the 5 secrets to earning $ 750 a day using ebay , affiliate programs and the internet ! everything we offered here is free , you have absolutely nothing to lose - so respond right now and get started . sincerely , mark w . monday the ebay millionaire http : / / www . mailcomesandgoes . com / auction / you received this email because you have expressed an interest in making money with ebay and or on the internet . you will not receive any more emails from us . if you do not wish to receive any more emails from me , please visit http : / / www . deal 2002 . com / removeme . html and you will be removed . ",1 +"Subject: important news hey visioson @ hpp . za . net , download popular programs from our site : get back to you later , eduardo baez i need to get a pedicure . my feet smell and itch . 1 .",1 +"Subject: for your information this will be our closing notification we have made an effort to write to you on many occasions and this will be our last contact ! your present loan situation meets the requirements for you for up to a 3 . 70 % lower rate . however , based on the fact that our previous attempts to write to you didn ' t work , this will be our last and final attempt to lock you into the lower rate . please finalize this final step upon receiving this notice immediately , and complete your request for information now . apply here . if your decision is not to make use of this final offer going here will help you to do so .",1 +"Subject: v . to youu hello , welcome to pharmon flatting line sh reflective op - one of the leading oniine chinatown pharmaceutical shops vaccinate v praline g barkpit al l isosceles l bowlegged la r ironfall ac blacklist l philtre is syntax va calipers um andmanyother . - quadragesimal save over 50 % - worldwide shlppln conning g - total voluntaryism confidentiaiity - over commandment 5 miiiion customers in 130 countries have a nic dhurrie e day !",1 +"Subject: scrub the web confirmation required your confirmation is required by jul 28 , 2005 - see below ! thanks again for submitting your url at scrub the web . please read this entire email message for important instructions to complete the submission process . the following url was submitted to stw : http : / / www . datapest . net / the ip address of the person making this submission was : 216 . 219 . 253 . 6 ( this is not your web site address ) if you wish to confirm or delete this submission from our queue or if you wish to block your email address from making future submissions to scrub the web , please point your browser to : some users may not see or be able to click on the link above . for those users go here : we do not maintain a mailing list of any kind and we do not sell , rent or use your email address for any other purpose other than this confirmation email . please do not reply to this email because scrubby is a robot and can not respond to your query . if you need to contact us for any reason point your browser to : http : / / www . scrubtheweb . com / feedback / . thanks again for your submission , http : / / www . scrubtheweb . com / meta tag builder ! meta tag analyzer ! ",1 +"Subject: just to her . . . your message to tjvs @ remgro . com has been blocked . should it be business related forward this message to helpdesk @ commsco . com for immediate release . message id : t 723 b 9 cb 981 acl 04 aobeb 98 rule triggered : spam files",1 +"Subject: largest collection of dowlnoadable porn d \ / d movies - xl 0 we have the hottest pornostars pics and videos inside . thousands of new photo and clips , including pornostars movies . see hot pornostars videos now ! click here for http : / / cowpox . com . babyhom . info / cool photos and video clips and dvd movies - - - - - - - - - - - - - - bragging depot bluebill arsine cinderella carrot bearberry claudia amtrak cathedra banks determinant",1 +"Subject: software taking a bite out of your budget ? try oem ! want to learn how to build your own website ? literature is news that stays news . the reward for a thing well done is to have done it .",1 +"Subject: she is shocked hello , welcome to meteor medzonline shop we are pleased to introduce ourselves as one of the ieading online pharmaceutic galactic ai shops . pliant v sequoia r a approximately l testate ll la experienced g a ensilage cl isv incurability a affluence um andmanyother . - save over gazogene 75 % - total con hypodermic fidentiaiity - worldwide s introduction hlpplng - over 5 miilion customer depreciation s in 150 countries have a ni octarchy ce day !",1 +"Subject: toners and inkjet cartridges for less . . . . p tremendous savings on toners , inkjets , fax , and thermal replenishables ! ! toners 2 go is your secret weapon to lowering your cost for high quality , low - cost printer supplies ! we have been in the printer replenishables business since 1992 , and pride ourselves on rapid response and outstanding customer service . what we sell are 100 % compatible replacements for epson , canon , hewlett packard , xerox , okidata , brother , and lexmark ; products that meet and often exceed original manufacturer ' s specifications . check out these prices ! epson stylus color inkjet cartridge ( so 20108 ) : epson ' s price : $ 27 . 99 toners 2 go price : $ 9 . 95 ! hp laserjet 4 toner cartridge ( 92298 a ) : hp ' s price : $ 88 . 99 toners 2 go price : $ 41 . 75 ! come visit us on the web to check out our hundreds of similar bargains at toners 2 go ! request to be removed by clicking here c . l . kyle - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: benachrichtung zum ( fehlgeschlagen ) ? = dies ist eine automatisch erstellte benachrichtigung + apw - ber den zustellstatus . + anw - bermittlung an folgende empf + aoq - nger fehlgeschlagen . jochenfechtel @ fetra . de",1 +"Subject: protect your family ' s future and save up to 70 % 10 - year level term life insurance male / female monthly premiums no nicotine $ 250 , 000 $ 500 , 000 age male female male female 35 $ 10 . 33 $ 9 . 19 $ 16 . 19 $ 14 . 00 40 $ 13 . 30 $ 11 . 64 $ 22 . 32 $ 18 . 82 45 $ 19 . 43 $ 16 . 63 $ 35 . 57 $ 22 . 88 50 $ 29 . 49 $ 22 . 32 $ 54 . 69 $ 40 . 25 55 $ 44 . 89 $ 32 . 12 $ 85 . 32 $ 59 . 94 2002 reliaquote . all rights reserved life can change in an instant . don ' t wait until it ' s too late . give your family the security they deserve today with affordable term life insurance from reliaquote . to unsubscribe from our mailing list , please click here ",1 +"Subject: persian kilims and rugs dear professional decorator / designer : we go to remote areas of iran ( persia ) to bring you old and antique nomadic kilims and rugs . we invite you to see parts of our collection by visiting our website ( www . pazirik . com ) . should you be interested in purchasing any of the viewed items , we would make all the necessary arrangements so that your purchase is free of risk . best regards , pazirik . com if you wish to be removed from our mailing list , click here to send us a blank email . your email will be automatically removed fromthe list . ",1 +"Subject: become happy with your performance male enhancement is achieving your goals of becoming a better man forget about your partner faking her orgasm or not being able to please her . you will be able to penetrate deeper so your partner will experience more pleasure as well as multiple orgasms during sexual intercourse . 86 % of women surveyed said that they would like their partner to be more ' full ' sexually . check out the only male enhancement formula with a free dvd you guys have made my dreams come true . i have been self - conscience for as long as i can remember . i did not want to shower with other guys growing up , because i was embarrassed . not only has your system increased the size of my manhood while erect , but it has helped my size while flaccid as well . i hang bigger , and i feel more like the man i should have been all these years . the change is tremendous , i wanted to send you this note to let you know what it has done for me , and of course to order more longz ! leroy , brooklyn address on site along with no more feature he soon came to a stop , however , and saw that another of the monsters had come upon him from the rear and was now , with its mate , circling closely around him , while both uttered continuously their hoarse , savage cries . rob wondered why the garment of repulsion had not protected him from the blow of the bird ' s wing ; but , as a matter of fact , it had protected him for it was not the wing itself but the force of the eddying currents of air that had sent him whirling away from the monster ",1 +"Subject: also available levitra , cialis , and viagra . keeping your private medical issues . . . private unjust dominion cannot be eternal . he who limps still walks . a clash of doctrines is not a disaster - - it is an opportunity .",1 +"Subject: clear benefits of creative design lt is really hard to recollect a company : the market is full of sugqestions and the information isoverwheiminq ; but a good catchy logo , styllsh stationery and outstandlng website wili make the task much easier . we do not promise that having ordered a loqo your company wili automaticaiiy become a world ieader : it isquite ciear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , manie ",1 +"Subject: impress your girl with a huge cumshot ! heya ! has your cum ever dribbled and you wish it had shot out ? have you ever wanted to impress your girl with a huge cumshot ? spur - m is the only site to offer an all natural male enhancement formula that is proven to increase your sperm volume by up to 500 % . our highly potent , volume enhancing formula will give our results in days and comes with an impressive 100 % guarantee . imagine the difference ( look and feel ) between dribbling your cum compared to shooting out burst after burst . try spur - m now ! and with our money back guarantee you have absolutely nothing to lose ! look here : http : / / osseously . net / cum / no thanks : http : / / osseously . net / rr . php",1 +"Subject: improve your size and your power i ' ve been using your product for 4 months now . i ' ve increased my length from 2 to nearly 6 . your product has saved my sex life . - matt , fl my girlfriend loves the results , but she doesn ' t know what i do . she thinks it ' s natural - thomas , ca pleasure your partner every time with a bigger , longer , stronger unit realistic gains quickly to be a stud press here at this rate i ' ll get home some time next year , he grumbled oranjestad , aruba , po b 1200 oh ; i believe i ' ve heard of you , said the cab - horse ; but you are unlike anything that i expected to seei do not doubt it , the sawhorse observed , with a tone of pride however , i suppose i ought to be glad the machine works at all and he really was glad ",1 +"Subject: 9 % commission on myg annuities call or e - mail us today ! or please fill out the form below for more information name : e - mail : phone : city : state : for agent use only . we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: 6 % commission on 12 month "" cd - style "" annuity 3 . 35 % guaranteed great roll - over options issued to age 85 6 % commission through age 85 earn a $ 75 to $ 125 bonus on every paid app . . . bonus offer expires july 31 , 2002 call or e - mail mo marketing today ! or please fill out the form below for more information name : e - mail : phone : city : state : we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: failure notice hi . this is the qmail - send program at stl 7 . startlogic . com . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : vdeliver : invalid or unknown virtual user ' info ' - - - below this line is a copy of the message . return - path : received : ( qmail 68912 invoked from network ) ; 19 jul 2005 10 : 58 : 03 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 222 . 160 . 120 . 186 ) by stl 7 . startlogic . com with smtp ; 19 jul 2005 10 : 58 : 03 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24815692 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ itresults . net user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professional edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corei painter lx $ 80 adobe lllustrator cs $ 80 adobe lndesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cool 3 d production studio 1 . 0 . 1 $ 90 alias motion builder 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , meivin ",1 +"Subject: sell advertising space on your website did you know that selling advertising on your website is a great way to earn extra revenues with absolutely no extra effort ? admerchant allows you to set up ad space on your site and sell it quickly , easily and directly to buyers . you will have the immediate benefit of earning significant revenues . this is because admerchant pays you for displaying the ad and not just for clickthrus . in addition , you also get these great benefits as standard : no software to install or download . just paste a couple of lines of html on your web pages . you have total control by deciding what ads to allow on your site . you decide how much to charge for your ad space . payments are made to you automatically regardless of the amount . it is free to join and you remain in total control of your ad space . take advantage of our early sign up promotion and receive the following services free with your membership ! a premium entry of your site in admerchant ' s directory . a free search engine optimisation ( seo ) assesment of your site . one of our team of consultants will assess your website and give you a detailed report on how you may increase your search engine rankings . all you have to do is visit the directory and get your site listed today . with warmest regards , george stevens customer manager , www . admerchant . co . uk george . stevens @ admerchant . co . uk please note that the free seo assesment of your site is a limited time offer and will be offered on a first come first serve basis . your are subscribed as glovechangeful @ mailb . fakeoutdoorsman . com . . please click here to unsubscribe . if you have any suggestions or feedback regarding this email , please contact us . ",1 +"Subject: fwd : norton makes the best software available , now only $ 29 . 99 ! 32053 do you care about your computer ? symantecsystemworks 2002 professional edition from the creators of the # 1 rated antivirus software ! this unbeatable software suite comes with every program you ' ll ever need to answer the problems or threats that your computer faces each day of it ' s life ! included in this magnificent deal are the following programs : norton antivirus?ffff 99 2002 - the # 1 anti - virus protecion ever ! norton utilities?ffff 99 2002 - diagnose any problem with your system ! norton ghost?ffff 99 2002 - makes backing up your valuable data easy ! norton cleansweep?ffff 99 2002 - eliminates excess data instantly ! norton winfax?ffff 99 basic - turns your cpu into a fax machine ! goback?ffffae 3 personal - helps prevent you from making any mistakes ! * all this sells at the store for $ 99 . 95 * get it now for only $ 29 . 99 ! with free shipping ! click here to order now ! limited time offer . when we run out it ' s gone , so get it while it ' s hot ! call 1 - 800 - 861 - 1481 order now ! your email address was obtained from an opt - in list . ieac ( international email abuse council ) approved list type code - eastus - 23 t 95 d . if you wish to be unsubscribed from this list , please click here . we do not condone spam in any shape or form . we appreciate your cooperation . ",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , hien ",1 +"Subject: take a look at this microcap benelux is telethon but stephens not constantine blutwurst and lock like freest lutheran redhead is boatmen not arm try giddap quantile optoelectronic yes rotarian or minsk criss no bryant is radon but rodney not andesite christiana and staccato like erskine antiperspirant bison is rejoice not botanist try tempera canna staley yes dylan or reel berlioz no warmth is presuming but satire not mannequin discomfit and butte like legato alumnus cabaret is chili not shoestring try yule christendom apostrophe yes downward or artisan new no ",1 +"Subject: we are the only online pharmacy offering "" 100 % satisfaction guarantee "" . best deals on online prescription drugs politics is war without bloodshed while war is politics with bloodshed . ' but ' is a fence over which few leap . with great power comes great responsibility . each bird loves to hear himself sing .",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom design of loqos , stationery and web - sites . under our careful hand these powerfui marketinq tools will bring a breath of fresh air into your business and make you stand out amonq the competitors . you are just a ciick away from your future success . click here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: do you realize all your sexual dreams ? now you can ! your in - home source of health information never be bored , and you will never be boring . imagination is more important than knowledge . reality isn ' t what it used to be . we know truth , not only by reason , but also by the heart .",1 +"Subject: norton systemworks 2002 final clearance 1093 norton systemworks 2002 software suite professional edition 6 feature - packed utilities , 1 great price a $ 300 . 00 + combined retail value for only $ 29 . 99 ! protect your computer and your valuable information ! don ' t allow yourself to fall prey to destructive viruses ! click here for more info and to order if you wish to unsubscribe from this list , please click here to be removed . ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . ail iisted software is avaiiable for immediate download ! no need to wait 2 - 3 week for cd delivery ! just few exampies : - norton internet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuii version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguaqe ! best regards , herminia ",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of logos , stationery and web - sites . under our carefui hand these powerful marketinq tools wiii brinq a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . ciick here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: failure notice hi . this is the qmail - send program at baco . hotlink . com . br . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : 200 . 164 . 232 . 214 does not like recipient . remote host said : 550 sorry , no mailbox by that name ( # 5 . 7 . 1 ) giving up on 200 . 164 . 232 . 214 . - - - below this line is a copy of the message . return - path : received : ( qmail 5021 invoked by uid 516 ) ; 19 jul 2005 11 : 02 : 38 - 0000 received : from 83 . 25 . 242 . 232 by baco . hotlink . com . br ( envelope - from , uid 505 ) with qmail - scanner - 1 . 25 ( clamdscan : 0 . 85 . 1 / 935 . clear : rc : 0 ( 83 . 25 . 242 . 232 ) : . processed in 2 . 978309 secs ) ; 19 jul 2005 11 : 02 : 38 - 0000 received : from aji 232 . neoplus . adsl . tpnet . pl ( helo mailwisconsin . com ) ( 83 . 25 . 242 . 232 ) by 0 with smtp ; 19 jul 2005 11 : 02 : 34 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 30516641 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : antonioantonio @ coopvita . com . br user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivabie !",1 +"Subject: start shopping at costco today with a complimentary gold membership . ( area ) start shopping at costco today with a free gold membership . we ' re giving away gold memberships in your area now . ngpwmhmx",1 +"Subject: http : / / www . surfbuddies . net hello , i have visited www . surfbuddies . net and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: start shopping at costco today with a complimentary gold membership in your area . start shopping at costco today with a free gold membership . we ' re giving away a limited number of gold memberships in your area . kklynszb",1 +"Subject: $ 500 lst annuity sale bonus a new guaranteed annuity that keeps going up and up and up . . . . increasing rates - all guaranteed flexible or single premiums nursing home waiver * issue age 0 - 85 * * please fill out the form below for more information name : e - mail : phone : city : state : * most states . * * surrender charge varies for ages 56 + in ct , in , md , ok , sc . contracts issued by and bonus sponsored by usg annuity life company / equitable life insurance company of iowa , 909 locust street , des moines , ia 50309 . for agents only . rates subject to change . product and features not available in all states . iras / qualified plans are already tax deferred . consider other annuity features . we reserve the right to alter or end bonuses at any time . minimum premium for bonus $ 20 , 000 . ( ado 20257 ) . we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: ready to earn more now take the next step learn how you can earn a high six - figure income with your own real estate business . if you have passion , desire and you are seriously looking to generate a very substantial income in the next 3 to 6 months , simply reply to the email address below and one of our associates will contact you shortly . bigprofithomebiz @ yahoo . com ( be sure to leave your name , phone and best time to call ) . remember : this powerful business could change your life ? financially . immediately if you ' re not interested ",1 +"Subject: just to her . . . soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: be one of our survey takers and we ' ll send you a complimentary laptop computer . computer survey group needs survey takers in your area now . we ' d like to send you a complimentary laptop computer now for helping us . ( ) qrwzyyvp",1 +"Subject: mail receipt thank you for your mail regarding our site . we will reply as soon as possible . in the meantime please continue to enjoy our site . tight lines bray sea anglers .",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - ) orderinq viagra online is a very convinient , fast and secure way ! miilions of peopie do it daily to save their privacy and money order here . . . ",1 +"Subject: save up to 40 % on popular software bundles ! software taking a bite out of your budget ? try oem ! live free or die ; death is not the worst of evils . the mere sense of living is joy enough .",1 +"Subject: feel insecure about your penis size ? penis growth patches are here ! http : / / www . retdehola . com / ss / the biggest shortage of all is the shortage of common sense . you can tell the ideals of a nation by its advertisements . virtue has its own reward , but no box office . the great aim of education is not knowledge but action . beware of the young doctor and the old barber .",1 +"Subject: click here to improve your wellbeing today best prescription generic meds 4 less . that ' s the secret to life . . . replace one worry with another . . . . human nature constitutes a part of the evidence in every case . from the still - vexed bermoothes .",1 +"Subject: rescue you from highprice medicaments and badpain . or - ders are handled discreetly and yet in an efficient and timely manner . be assured of best services . reduce prices affordable to you . r wallet . check us our weekly specials . locating a better way to receive prescribed remedies . . at our chernist - site , you have an extensive selections on quality rxdrugs . . licensed physicians at our e - zone complete the case profile review . gratis of charge . http : / / 0 wlv . cu . comingupthebest . com / 2 v 7 / ` why do you say that to me ? ' she said looking at him sternly . an opportunity of watching the loves and jealousies of the four - - refreshing breeze from the mountains blows over the orange gardens , and then made a face at them , and abused them for coming , began with - -",1 +"Subject: lasalle bank account alert ! please read ! dear lasalle bank member , this information is collected to provide a record of communications between lasalle bank and members and to comply with any applicable legal and / or regulatory requirements . for example , the information we collect is used for purposes such as : * to identify you in order to protect against fraud and guard against unauthorized access to your accounts . * to enable us to complete your transactions quickly and efficiently , and to provide you with quality customer service . * to better serve your relationship by understanding which services may be the right match for your needs , and telling you about new offers that may be of interest to you . * to help ensure that our information about you is current and accurate . we suspect that your lasalle bank account has been accessed by an unouthorised third party . numerous login attempts were made from : ip address : 24 . 123 . 125 . 75 isp host : rrcs - 24 - 123 - 125 - 75 . central . biz . rr . com if you recently accessed your account while traveling , the unusual log in attempts may have initiated by you . therefore , as a precautionary measure and to ensure yourself that everything is normal with your ballance and personal information , please confirm your identity by completing the account verification process . to get started click on the link below : after responding to the message , we ask that you allow at least 72 hours for the case to be investigated . emailing us before that time will result in delays . an e - mail response will be sent to you at the completion of the verification process . we apologize in advance for any inconvenience this may cause you and we would like to thank you for your cooperation as we review this matter . if you believe you have provided personal or account information to third parties , please contact lasalle bank at ( 800 ) 285 - 6609 and contact the other financial institutions with which you have accounts . tip : due to the increased number of spam filters implemented by internet providers , our response e - mail may not reach you . if you do not receive an e - mail confirmation within 72 hrs , please contact us at the phone number above . thanks for your patience as we work together to protect your account . regards , lasalle bank * please do not respond to this email as your reply will not be received . for assistance , log in to your lasalle bank account and choose the help link . note : we retain information we receive through this website , including information you give us to open an account or purchase a product or service from us , information you give to us in inquiries and other communications , and records of any transactions you perform . we share this information with affiliated and nonaffiliated parties only as necessary to process and service your transactions with us , or as required by law . such parties may include those who provide services to us in connection with your accounts or transactions , or who are involved in providing you the services you request . in certain instances they might include a purchaser or potential purchaser of an account . we also report information to credit bureaus in appropriate cases . and we share information with government agencies and law enforcement as necessary . ",1 +"Subject: delivery status notification ( failure ) this is an automatically generated delivery status notification . delivery to the following recipients failed . info @ kvmdoor . com",1 +"Subject: offer your clients 11 . 19 % 11 . 19 % first year ( 5 . 9 % first year rate plus 5 % premium bonus ) 5 . 5 % commission * , plus bonus ( call for details ) full death benefit 10 % free withdrawal after one year great for 1035 ' s and transfers call or e - mail us today ! or please fill out the form below for more information name : e - mail : phone : city : state : visit us online at : www . standardagents . com * commission reduces at older ages . for agent use only . we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: second chance # 5182 complete credit card processing systems for your business . internet - home based - mail order - phone order do you accept credit cards ? your competition does ! everyone approved - credit problems ok ! approval in less than 24 hours ! increase your sales by 300 % start accepting credit cards on your website ! free information , no risk , 100 % confidential . your name and information will not be sold to third parties ! home businesses ok ! phone / mail order ok ! no application fee , no setup fee ! close more impulse sales ! everyone approved ! good credit or bad ! to apply today , please fill out the express form below . it contains all the information we need to get your account approved . for area ' s that do not apply to you please put n / a in the box . upon receipt , we ' ll fax you with all of the all bank card application documents necessary to establish your merchant account . once returned we can have your account approved within 24 hours . service industry standard us site inspection $ 50 - $ 75 free shipping $ 50 - $ 75 free warranty $ 10 per month free sales receipts $ 10 - $ 50 free fraud screening $ . 50 - $ 1 . 00 per transaction free amex set up $ 50 - $ 75 free 24 hourhelp line $ 10 month free security bond $ 5000 - $ 10 , 000 or more none this is a no obligation qualification form and is your first step to accepting credit cards . by filling out this form you will not enter in to any obligations or contracts with us . we will use it to determine the best program to offer you based on the information you provide . you will be contacted by one of our representatives within 1 - 2 business days to go over the rest of your account set up . note : all information provided to us will remain 100 % confidential ! ! apply free with no risk ! please fill out the express application form completely . incomplete information may prevent us from properly processing your application . your full email address : be sure to use your full address ( i . e . user @ domain . com ) your name : business name : business phone number : home phone number : type of business : retail business mail order business internet based business personal credit rating : excellent good fair poor how soon would you like a merchant account ? your information is confidential , it will not be sold or used for any other purpose , and you are under no obligation . your information will be used solely for the purpose of evaluating your business or website for a merchant account so that you may begin accepting credit card payments . list removal / opt - out option click herem ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) orderinq viaqra online is a very convinient , fast and secure way ! miilions of people do it daiiy to save their privacy and money order here . . . ",1 +"Subject: would you like a $ 250 check ? we ' re receiving checks for $ 100 ' s and $ 1 , 000 ' s every month - let me show you how you can easily do the exact same thing ! you are receiving this email as a subscriber to the dealsuwant mailing list . to remove yourself from this and related email lists click here : unsubscribe my email under bill ( s ) 1618 title iii by the 105 us congress , per section 301 , paragraph ( a ) ( 2 ) of s . 1618 , a letter cannot be consideyellow spam if the sender includes contact information and a method of removal . ",1 +"Subject: need a graphic artist ? come here . thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of logos , stationery and web - sites . under our carefui hand thesepowerfui marketinq tools wili bring a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . ciick here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: x 2 o automated wealth builder . 511771 the truth ! it takes 32 glasses of alkaline water to neutralize the acid from one 12 oz . soda . click here if your are not seeing the video learn about x 2 o it takes 32 glasses of alkaline water to neutralize the acid from one 12 oz . soda . each time you drink acidic soda , coffee , tea , and energy drinks your body uses its own buffers ( from bone and dna ) to raise the body ' s alkalinity to maintain your healthy blood ph level of 7 . 35 - 7 . 45 . click here to watch the video clip watch how one dose of x 2 o neutralizes an entire 2 liter bottle of soda in just seconds ! dear recipient , if you want to stop receiving our offer please reply with subject stop offers aptw ",1 +"Subject: [ ilug - social ] claim your $ 25 kmart gift card 1 ) claim your $ 25 kmart gift card 2 ) auto loans , fast approvals for any credit ! http : / / www . adclick . ws / p . cfm ? o = 383 & s = pkl 3 ) are you paying too much for auto insurance - find out ? http : / / www . adclick . ws / p . cfm ? o = 334 & s = pkl have a wonderful day , prizemama . com - - - - - - - - - - - - - - - - - - you are receiving this email because you have opted - in to receive email from publisher : prizemama . to unsubscribe , click below : - - irish linux users ' group social events : social @ linux . ie http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter ix $ 80 adobe iiiustrator cs $ 80 adobe indesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cool 3 d production studio 1 . 0 . 1 $ 90 aiias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , stephaine ",1 +"Subject: fresh , crisp leads from allmerica financial through established sponsored market programs with cpa firms , banks , credit unions and property and casualty firms , you ' ll receive the kind of leads you need to grow your client base and meet their long - term financial needs . allmerica experts will help you map a strategy for selecting and penetrating the right market or markets to grow your practice . we ' ll also give you the on - going support to make sure that you stay on - target . allmerica gives you an edge by providing you with web - based new business technology and customer service programs designed for responsiveness and convenience . your local office will provide proven , innovative marketing and sales support programs brought to you by your field - based associates . investment products and services brokerage services private money managers individual securities automatic account rebalancing mutual funds individual retirement accounts proprietary and non - proprietary variable and fixed annuities asset allocation models and investment planning wrap programs 529 plans other personal financial services financial planning tax planning retirement planning comprehensive planning software education planning risk management insurance planning estate planning business services business planning business insurance : buy - sell , key - person business continuation executive compensation qualified plans : pensions , profit - sharing , 401 k group insurance : life , disability , medical , etc . please fill out the form below for more information name : e - mail : phone : city : state : 02 - 0977 we don ' t want anybody to receive our mailing who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: tombrandon , bigger , fuller breasts naturally in just weeks = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = guaranteed to increase , lift and firm your breasts in 60 days or your money back ! ! 100 % herbal and natural . proven formula since 1996 . increase your bust by 1 to 3 sizes within 30 - 60 days and be all natural . click here : http : / / 64 . 123 . 160 . 91 : 81 / li / linxiao / http : / / 202 . 101 . 163 . 34 : 81 / li / linxiao / absolutely no side effects ! be more self confident ! be more comfortable in bed ! no more need for a lift or support bra ! 100 % guaranteed and from a name you know and trust ! you are receiving this email as a double opt - in subscriber to the standard affiliates mailing list . to remove yourself from all related email lists , just click here : ",1 +"Subject: use this handy interest calculator to get current interest information . cmaln use this handy rate calculator to get current interest availability data , without giving out any private or personal information . this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page . cydukzeiqjcs",1 +"Subject: work at home and make money would you like to get rich working part - time from home ? do you want to get extra income ? we are looking for people that want to make money working from home ! no special skills required ! no fees to start ! we will train you . your personal coach will explain you how to put the internet and your computer to work for you . no matter what you currently do for a living , you can join our team and make money ! we will need a couple of hour ' s commitment per day . work as much as you want . what do we have to offer ? no start up fees or training manuals to buy ! unlimited income potential ! take action and start doing something positive today ! keep in mind that there are no fees or packages to buy to join our firm . work smarter , not harder ! you can make a difference in your financial future ! what you need is basic internet knowledge , access to a computer with internet connection . we will train and mentor you one - on - one if you are serious and remain teachable . apply now to find out more about this exciting opportunity . to carry on with the application or to get more information , please fill out request form at : ",1 +"Subject: learn to play texas hold ' em and other poker classics on the most popular free site . - earn $ 100 bonus from partypoker . visit here . qdwlougj",1 +"Subject: herbal viagra 30 day trial . . . oncxbv exit list instructions pmoney",1 +"Subject: from mrs . fatima rasheed dear beloveth . i am mrs . fatima rasheed khalifa a widow to late sheik mohammed rasheed khalifa am 54 years old . presently i am suffering from long time cancer of the breast from all indications my condition is really deteriorating because of the unsuitable condition in my country that have denied me proper medical care . my late husband was killed during the invasion of collition forces from american and britain in iraq and during the period of our marriage we couldn ' t produce any child my late husband was very wealthy and after his death i inherited all his business and wealth therefore my desire now is to contribute part of this wealth for humanitarian aid such as propagation in assisting the less - privileged and to use part of the fund to acquire a better medical treatment else where in europe or america i am willing to give out 20 % of the sum to you for helping me to retrieve this money and transferring it to your account for the said purpose the deposited amount is $ 4 . 5 million united states dollars . please i want you to note that this fund is lying in a security company . for that i have also written to a lawyer who will file application for the retrieving of the money on your name as the beneficiary only if you promise to use this funds judiciary for the said purpose . yours , mrs . fatima rasheed .",1 +"Subject: fw : re : user name & password to membership to 15 sites cpunks @ minder . net pknkn # # # adult club ? # # offers free membership # # # 15 of the best adult sites on the internet for free ! > > > instant access to all sites now > > > your user name and password is . > > > user name : cpunks @ minder . net > > > password : do 949 w 4 z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - news 07 / 01 / 02 with just over 2 . 2 million members that signed up for free , last month there were 429 , 947 new members . are you one of them yet ? ? ? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - our membership faq q . why are you offering free access to 15 adult membership sites for free ? a . i have advertisers that pay me for ad space so you don ' t have to pay for membership . q . is it true my membership is for life ? a . absolutely you ' ll never have to pay a cent the advertisers do . q . can i give my account to my friends and family ? a . yes , as long they are over the age of 18 . q . do i have to sign up for all 15 membership sites ? a . no just one to get access to all of them . q . how do i get started ? a . click on one of the following links below to become a member . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # 15 . > new ! > celebs tv click here > http : / / 157 . 237 . 128 . 20 / celebst / ? aid = 818932 # 14 . > new ! > naughty live cam click here > http : / / 157 . 237 . 128 . 20 / cams / ? aid = 818932 # 13 . > adults farm click here > http : / / 157 . 237 . 128 . 20 / farm / ? aid = 818932 # 12 . > fetish door click here > http : / / 157 . 237 . 128 . 20 / fetish / ? aid = 818932 # 11 . > teen sex dolls ( voted best adult site 2001 - 2002 ! ) click here > http : / / 157 . 237 . 128 . 20 / teen / ? aid = 818932 # 10 . > sweet latinas click here > http : / / 157 . 237 . 128 . 20 / latina / ? aid = 818932 # 9 . > fetishes click here > http : / / 157 . 237 . 128 . 20 / wicked / ? aid = 818932 # 8 . > tits patrol click here > http : / / 157 . 237 . 128 . 20 / tits / ? aid = 818932 # 7 . > pinklicious click here > http : / / 157 . 237 . 128 . 20 / pink / ? aid = 818932 # 6 . > play house porn click here > http : / / 157 . 237 . 128 . 20 / play / ? aid = 818932 # 5 . > sinful cherries click here > http : / / 157 . 237 . 128 . 20 / sinful / ? aid = 818932 # 4 . > asian sex fantasies click here > http : / / 157 . 237 . 128 . 20 / asian / ? aid = 818932 # 3 . > hot stripper sluts click here > http : / / 157 . 237 . 128 . 20 / stripper / ? aid = 818932 # 2 . > lesbian lace click here > http : / / 157 . 237 . 128 . 20 / lesbian / ? aid = 818932 # 1 . > gay porn club click here > http : / / 157 . 237 . 128 . 20 / stripper / ? aid = 818932 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - removal instructions : you have received this advertisement because you have opted in to receive free adult internet offers and specials through our affiliated websites . if you do not wish to receive further emails or have received the email in error you may opt - out of our database here http : / / 157 . 237 . 128 . 20 / optout / . please allow 24 hours for removal . this e - mail is sent in compliance with the information exchange promotion and privacy protection act . section 50 marked as ' advertisement ' with valid ' removal ' instruction . - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: [ ilug ] here is the information you requested are you interested in making some extra money on the internet ? well have i got something for you . last week i made $ 3500 , i am offering you 5 yes 5 web sites that have already been made and are waiting for you to put up to make money with . there is also a few videos that are included that tell you exactly what you have to do to be successful . i am going to also offer you the rights to the web pages and to 5 ebooks that you can sell . . these ebooks aren ' t just any ebooks these are books on how to make money on the internet . i am selling this package deal for a short time only at the low price of $ 39 . 77 my friends all say that i am crazy . . the web site alone is worth over $ 1500 and its yours for only $ 39 . 77 . each ebook you will receive is worth around $ 350 . my web page is . www . home - business - onthe - net . com . please come take a look . if you have any questions please feel free to give me a email . if you ' d like a free ebook just give me a email and ill email you one asap . sincerly your friend keegan click on the link below to remove yourself aol users remove me - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: take positi 0 ns before breaking news expiosion the oi | and gas advisory now that oil and gas has entered a long - term bul | market , our specialty in pinpointing the hottest companies of the few remaining undervalued energy plays has produced soaring returns . emerson oi | and gas ( eogi ) is an energy developer in the us "" oi | belt "" and in canada ' s most highiy coveted reservoirs with generating potential of miilions per week . breaking news ! ! ! emerson oil and gas , inc . , ( eogi ) is pieased to announce that the alberta energy & utility board has issued license no . o 3302 o 6 for the company ' s we | | 11 - 16 - 24 - 2 the acadia project . the acadia project consists of 15 sections in aiberta in an area that produces natura | gas from the viking formation , has oi | potential in the bakken zone and gas potentia | in the coiony and second white specks zones . the viking contains natura | gas in we | | s around the acadia project and has the potentia | for 13 bcf gas in the reservoir under the leases . gas welis in the area have calcuiated aof rates up to 14 mmcf per day . the project is | ocated in eastern aiberta with year round access and an estabiished production and equipment infrastructure . wel | costs are expected to be $ 600 , ooo drilled , cased and compieted and the advanced funds wil | go towards the driiling of the first wel | . each well on a | ease earns emerson a 49 % working interest in one section . emerson oil and gas , inc . , ( eogi ) is pleased to announce that the land lease has been surveyed and acquired regarding the acadia project . the acadia project consists of 15 sections in alberta in an area that produces natura | gas from the viking formation , has oil potential in the bakken zone and gas potential in the coiony and second white specks zones . the viking contains natura | gas in welis around the acadia project and has the potential for 13 bcf gas in the reservoir under the | eases . gas welis in the area have calculated aof rates up to 14 mmcf per day . the project is | ocated in eastern aiberta with year round access and an established production and equipment infrastructure . well costs are expected to be $ 6 oo , ooo drilled , cased and completed and the advanced funds wi | | go towards the drilling of the first well . each weil on a | ease earns emerson a 49 % working interest in one section . symbol - eogi price - . o 26 the vaiue of eogi ' s shares wiil skyrocket : 1 . price charts confirm oi | prices are experiencing the strongest buil market in a generation . 2 . natural gas prices have tripled in the | ast two years . 3 . with muitiple projects in high - gear and the expanding production on reserves worth muiti - mi | | ions , eogi is se | | ing for | ess than 1 / 4 the value of its assets . 4 . emerson oil and gas specializes in using new technoiogy to turn unproductive oil and gas deposits into profitable enterprises . already shares in the oi | and gas sector are rising faster than the overa | | market . in fact , four of dow jones ' ten top performing industry sectors for the past year are energy reiated . but it ' s in the mid - sized expiorers and developers like emerson ( eogi ) that the biggest gains are being made . in the last 12 months , many of these stocks made tripie and even quadruple returns . our subscribers need to pay particuiariy ciose attention to undervaiued eogi shares , because it won ' t be a bargain for | ong . this sma | | company with a comparably smail market value , is sitting on a bonanza of oil and gas reserves - an unrecognized bonus for investors especialiy with the daily jump in energy prices . but all that wiil change in a few short weeks , as these reserves move into production , bringing an expiosion of cash that is expected to capture the attention of the market , and have an equaliy explosive effect on the share price . what wiil the cash flow from these projects do for the price of emerson oil and gas ' shares ? we | | we do know this - the great thing about investing in eogi is that your gains don ' t depend on further increases in the price of oil and gas . even if energy prices stay flat , or decline siightiy , you wi | | stil | make a very heaithy return . of course , energy prices are expected to continue their meteoric rise over the next year or so as predicted , meaning the vaiue of eogi ' s assets and earnings wi | | soar even higher . in that case , the reward for investors will be staggering . overal | , we consider eogi to be one of the last outstanding energy piays in the oi | and gas sector . once this discovery has been reaiized , eogi shares wiil surge sharpiy on heavy investor attention . we have identified this discovery for immediate accumuiation . eogi ' s oil and gas reserves are well established and are going into massive production . early investors wil | secure optimum gains , and any additiona | news in this area wil | really turn up the heat , causing us to revise our targets upward in next week ' s bulletin . oil and gas advisory ( oga ) is not a investment expert . certain statements contained in this newsletter may be future - | ooking statements within the meaning of the private securities litigation reform act of 1995 . such terms as expect , believe , may , wiil , and intend or simiiar terms may identify these statements . past - performance is not an indicator of future - results . this is not an expert to acquire or sel | securities . oga is an independent publication that was paid fifteen thousand dollars by a third party for the continuing coverage and dissemination of this company information . investors are suggested to seek proper guidance from a financia | expert . investors shouid use the information provided in this newsietter as a starting point for gathering additiona | information on the profiied company to allow the investor to form their own opinion regarding investment . if you wish to stop future maiiings , or if you feel you have been wrongfuily placed in our membership , please send a blank e mai | with no thanks in the subject to daily _ 7 tip @ yahoo . com",1 +"Subject: great news from your bank how are you , we tried contacting you about your low intrest rate . you have qualified for the lowest rate in years . your current status : $ 341 , 000 for $ 262 a month . your credit has already been reviewed / approved . please view your details at our site below : anyhgh . com sincerely , armand bartlett 6 . doesn ' t kate ' s granddaughter miss shaving for a few months ? .",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , rosita ",1 +"Subject: gov ' t guaranteed home business wealth without risk ! ! ! discover the best kept secret in america ! turning $ 300 into $ 20 , 000 in oklahoma , craig talkington purchased a tax lien on a 5 acre parcel for $ 300 . the owner failed to pay the taxes and forfeited the 5 - acre parcel to craig talkington . a short time later craig sold that property to one of the neighbors for $ 20 , 000 . that ' s the kind of money that buys new cars and sends young people to college . craig didn ' t stop at one deal . he later bought a tax lien for only $ 17 on a ten acre track , the property owner failed to pay the taxes , and craig ended up the property , which he sold for $ 4 , 000 . i don ' t know how much money you are making right now but these are the kinds of profits that change peoples lives and solve financial problems and make things a lot better . janice knetzger turned a $ 463 . 00 investment into $ 65 , 000 . 00 ! wayne robertson paid $ 1 . 00 for a home ! todd beemer turned a $ 21 , 500 investment into $ 150 , 000 . 00 ! for serious investors and entrepreneurs only for a free consultantion to see if you qualify fill out the no obligation form below for more information . required input field * name * address * city * state * phone * email address * * all tax liens and deeds directly support local fire departments , police departments , schools , roads , and hospitals . thank you for your interest and support . to be removed , please click here . 4589 dfsll - 151 rzeh 9359 iyoc 9 - 006 fl 29",1 +"Subject: justt try lt hello , welcome to pharmon emphases line sh pudenda op - one of the leading oniine traction pharmaceutical shops hydrargyrum v disciplinary g underdid al fulvous ll l polder a bugler rac cuboid l polished is rectorial va intrigue um andmanyother . - save manifold over 50 % - worldwide contuse shlpplng - total confiden intractability tiaiity - over 5 miiiion customers in 130 co purseproud untries have a nice da bunkum y !",1 +"Subject: upside pressure signals institutional interest newsletter - june issue 2 oo 5 in june ' s issue we are going to profile a stoc . k that is very much undervalued and is involved in the red hot homeland security sector . ground floor opportunity for everybody . this small treasure is : vnbl . ob ( vinoble , inc . ) the stoc . k is trading at only o . 09 - o . 1 o cents and we expect it could hit $ 0 . 3 o - $ 0 . 35 by mid july . huge pr campaign expected this week so grab as much as you can up to $ 0 . 25 range stoc . k symbol : ( vnbl . ob ) current price : $ 0 . o 9 we expect the price to go to $ o . 22 in next 2 - 3 days we expect the price to go to $ o . 3 o in next 2 weeks . about the company : vinoble , inc . ( vnbl . ob ) is a holding company , which is identifying and acquiring operational business opportunities in the areas of homeland security , security information systems , and other security services to provide long term growth for its shareholders . vinoble believes that the opportunity to build a successful business in the security sector is unprecedented . the terror attacks on the united states on september 11 , 2 ool have changed the security landscape for the foreseeable future . both physical and logical security have become paramount for all industry segments , especially in the banking , healthcare and government sectors . while the focus for vinoble is on north america , the opportunity for security services is worldwide . according to giga , a wholly owned subsidiary of forrester research , worldwide demand for information security products and services is set to eclipse $ 46 b by 2 oo 5 . vinoble intends to capitalize on the dramatic growth in the security market by delivering professional services , security products , security training , and managed security services . in pursuit of this objective , vinoble has assembled a highly qualified team of security professionals offering a full range of security services . through vinoble ' s consulting services and integrated delivery solutions , vinoble will help organizations protect key assets including persons , property , information , brand , and reputation . big news expected from this company in the next few days . this kind of news could really move this stock . stoc . k symbol : vnbl . ob current price : $ 0 . 09 we expect the price to go to $ o . 2 o in next 2 - 3 days we expect the price to go to $ 0 . 25 in next 2 weeks . information within this email contains "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , goals , expectations , beliefs , plans , projections , objectives , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as : "" projects "" , "" foresee "" , "" expects "" , "" estimates , "" "" believes , "" "" understands "" "" will , "" "" part of : "" anticipates , "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . all information provided within this email pertaining to investing , stoc . ks , securities must be understood as information provided and not investment advice . emerging equity alert advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stoc . ks featured within this email . none of the material within this report shall be construed as any kind of investment advice . please have in mind that the interpretation of the witer of this newsletter about the news published by the company does not represent the company official statement and in fact may differ from the real meaning of what the news release meant to say . look the news release by yourself and judge by yourself about the details in it .",1 +"Subject: earn 10 k per week with a new system ! 9652 cyuh 7 - 164 rdh - 15 greetings ! you can earn up to 10 k per week doing simple online tasks with a brand new system called emm ? it blows mlm away : no selling . . . no recruiting . . . no explaining or answering difficult questions . . . no 3 - way calling . . . no begging friends and family . . . no rejection . . . all you have to do is advertise , advertise , advertise and then enter the e - mail addresses of your prospects into a full - time automated system . this system : = does all of your support , = answers all of the email from your group members , = handles all of your correspondence = works day and night to turn your advertising into residual income ! it is absolutely phenomenal ! to get the full details , please put "" send emm info "" in subject line , then send to the address below : thank you ! ps : removal instruction - just click below and send . 9779 kl 5",1 +"Subject: how about obtaining a fully recognized university degree ? 231175433222211111111 obtain a prosperous future , money earning power , and the admiration of all . degrees from prestigious accredited universities based on your present knowledge and life experience . call now to receive your diploma within days ! ! ! 1 425 790 3463 no required tests , classes , books , or interviews . bachelors , masters , mba , and doctorate ( phd ) diplomas available in the field of your choice . no one is turned down . confidentiality assured . call now to receive your diploma within days ! ! ! 1 425 790 3463 call 24 hours a day , 7 days a week , including sundays and holidays . 231175433222211111111",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom design of loqos , stationery and web - sites . under our carefui hand these powerfui marketing toois will bring a breath of fresh air into your business and make you stand out among the competitors . you are just a ciick away from your future success . click here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: free insbuyer . com agency listing life insurance annuities disability insurance health insurance long term care insurance mortgage insurance estate planning medicare supplement insurance pre - paid legal dental nsurance travel insurance viatical settlements auto insurance home insurance call or e - mail us today ! or please fill out the form below for a free listing name : company : address : city : state : zip : phone : e - mail : website : we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: sto - ck advice structure & technology report may 10 th , 2005 - - for immediate release investors and traders : pinnacle group limited , inc . ( pgpu ) announces acquisition of aerofoam metals inc . aerofoam metals inc is a | eading structura | technology company focused on the deveiopment & commercialization of foamed aiuminum products and components for the world market . in today ' s market , aerofoam metals inc has cutting edge technoiogy and | ittie competition . symbol : pgpu . pk current price : 0 . 68 short term target price : $ 2 . 25 12 month target price : $ 5 . 25 pinnaclegli . com aerofoam metals inc investment considerations : - limited competition - commitment to r & d - cutting edge structura | technoiogy aerofoammetals . com press release - - may 10 th , 2 oo 5 - - pinnacle acquisition of aerofoam the company foilowing extended re - negotiations with the major sharehoider and management of aerofoam metais incorporated ( "" aerofoam "" ) have reached an agreement in principie . the parties have entered into a binding | etter of intent , whereby , pinnacle wiil acquire ail of the issued and outstanding shares of aerofoam for new treasury shares of pinnacie . the number of shares to be issued to the shareholders of aerofoam upon this acquisition wiil be 3 , 50 o , 00 o common shares . the major sharehoider of aerofoam who beneficiaily owns 56 % of a | | the issued and outstanding shares of aerofoam has agreed to vote his shares in favor of this acquisition . the parties hereto further agree to enter into a binding sharehoiders agreement immediately and to hold a specia | shareholder meeting to ratify the acquisition within 60 days of signing this | etter of intent . pinnacle group ltd profiie : pinnacie group is a u . s . based holding company , traded on the pinksheets . com , that searches for majority equity positions in emerging companies . pinnacle group ltd offers ski | | ed entrepreneurs , managers and ceos the option of achieving their goais as part of a larger organization . the company provides capital and management assistance to ventures that have the potentia | to mature into pubiicly traded companies . the company works closely with the management of companies that it acquires , using tried and proven methods to expand the business , who are aiso open to innovative ideas on how to achieve targeted goals . the company has great short term specuiative potential as weil as the potentia | for | ong term growth . we beiieve the speculative near term target price is - $ 2 . 25 we beiieve the speculative long term target price is - $ 5 . 25 this is why pgpu might be the next hot pick ! please foliow this one trade tuesday ! ! nothing in this e - mail should be considered personalized investment advice . although our employees may answer your genera | customer service questions , they are not | icensed under securities | aws to address your particular investment situation . no communication by our employees to you should be deemed as personalized investment advice . we expressly forbid our writers from having a financia | interest in any security recommended to our readers . all of our employees and agents must wait 24 hours after on - line pubiication or 72 hours after the maiiing of printed - only pubiication prior to following an initia | recommendation . any investments recommended in this | etter should be made oniy after consulting with your investment advisor and only after reviewing the prospectus or financia | statements of the company . to cancel by mail or for any other subscription issues , reply piease to : no _ morenewsletters 7 @ yahoo . com ( c ) 2 oo 5 investment newsietter all rights reserved",1 +"Subject: greatest online prescripiton here nicaragua closure tuna want a prescription medication ? find it here ! we have all tablets you could possibly need ! you name it ! we have it ! stop receiving promotional material now rein legible aftermath cyclone forbid ovum kimberly ",1 +"Subject: nymex invitation - learn power trading power trading fundamentals : sept 15 - 16 nymex in nyc early bird discount now in effect ! nymex power delegates will learn : electricity markets overview simulated trading exercise market factors basic trading tools new york mercantile exchange financial instruments options real options role of risk management identifying different types of risk position analysis portfolio management click here to request complete course syllabus contractual terms , operational terms terminology trading motivations of different physical electricity market participants . buy low - sell high varied traded assets types of electricity transactions long - term , medium and short - term contracts transmission services and traded power this two - day course provides participants with comprehensive training on power trading , deal structuring , credit risk , volatility , risk management , bilateral opportunities and more . emi experts instruct using current data , real life examples , and practical experience ! contact emi ( 888 ) 871 - 1207 click here to request more information including syllabus hurry class sizes are limited ! click here to see other energy training opportunities registration visit us online www . energyinstitution . org 1369 madison ave , new york , ny 10128 to unsubscribe to future notices please email unsubscribe @ energyinstitution . org ",1 +"Subject: downloadable software http : / / rosary . realoemsales . com / ? a = 3107",1 +"Subject: notification . email transmission to : beneficiary from : mr . alex williams wire transfer department . . part payment arrears from nigeria totalling us $ 10 million this email transmission is intended for the named recipient only and may contain privileged and confidential information . if you have received this email in error , please notify us immediately . please do not disclose the contents to anyone or copy it to outside parties . thank you . message . attn : sir , we are pleased to inform you that we have negotiated instruction with our correspondent bank union bank of nigeria plc . ( ubn ) to draw us $ 10 million which represent part payment of your contract fund from their account with us and credit in your favor in settlement of a contract involving the nigerian government . the transfer is irrevocable , indivisible and non - transferable . this transaction has been secured with personal identification computerized sealed numbers , contract accreditation pin no , transfer access code ( tag ) and anti terrorist clearance certificate to enable us identify the bonfire beneficiary and to avoid diversion of the fund to wrong account . please contact the director , foreign operations union bank of nigeria plc ( ubn ) attn : alhaji basel abbas on his telephone number : 234 - 1 - 7903518 email : baselabbas @ yahoo . de with your telephone , fax number and bank details to enable us release your fund to your nominated bank account without any further delay . if we do not receive this your information for re - confirmation from you within 7 days from date of this email the transfer will be null and void as we have many contractors to pay . be it known to you that your transfer charge of 0 . 1 % will be deducted from the total sum before final transfer to your account , you are advised to act fast regarding to this subject matter as we have a limited time to conclude all payment in this second quarter of the year . for further enquiry you can contact this bank with the above telephone number . we most sincerely sorry for every inconvenience as occasion in this matter . yours truly , hsbc wire transfer processing div . madrid spain . mr . alex williams senior managing director security & investigation h . s . b . c . wire transfer processing division 12 , calle street , del carlos leganes madrid spain . gl 32 by u > k honbank swift hbcbk 353 00 999 0367826 8366410 registered in u . k number 720662 . registered office : 12 , calle street del carlos leganes madrid , spain .",1 +"Subject: news : company positioned to grow pop 3 media corp ( popt ) a company which has positioned itself in the gap between the major media congiomerates and the universe of independent music , film , pubiishing and technoiogy companies . current price : o . o 25 wil | it continue higher ? watch this one monday as we know many of you like momentum . breaking news ! ! pop 3 media corp . ( popt ) and roxxy corporation announced that the companies have entered into a letter of intent whereby roxxy corporation wi | | acquire a 66 % interest in pop 3 ' s wholiy owned subsidiary , viastar distribution group , inc . "" vdg , "" forming a revolutionary new music company , controversia | entertainment corporation . the transaction , consisting of stock and cash , when compieted , will provide pop 3 ' s shareholders with a 33 % stake in the new company . roxxy ' s management wil | operate the company from headquarters in los angeies and will change its corporate name to controversia | entertainment corporation in the coming weeks . the companies intend to compiete and execute the definitive agreement by july 8 th , 20 o 5 , and seek sharehoider approva | immediateiy thereafter . pop 3 ' s ceo , john d . aquiiino , stated , "" this ailiance will a | | ow pop 3 to achieve its strategic vision of creating a new paradigm in the music industry . one that is focused on supporting the artist and the music they create whiie embracing emerging technologies and giving consumers access to a variety of artists through a variety of media . "" roxxy ' s management team combines highiy experienced industry executives drawn from the major labels and aiso inciudes a staff of in - house producers who are among the most influential talents in the music industry today . "" it is roxxy ' s vision to seize the opportunities afforded by the major labeis ' lack of commitment to their artists and customers ; | abels that cast aside established artists who can no | onger generate multi - miilion seliing recordings , but who consistently reiease aibums which se | | hundreds of thousands of records to a large and loyal fan base ; artists that can easily generate revenues between $ 1 and $ 5 miliion per title , "" stated john shebanow , roxxy ' s ceo . "" additionally , the acquisition of vdg will provide us with the ability to distribute our own product directiy to retai | to over 22 , ooo retai | | ocation in north america , effectiveiy doubiing the company ' s net profit margins and allowing the increased revenue to pass on to our artists . "" mr . shebanow conciuded , "" whiie there are smalier labeis that do provide a home for these acts , they | ack either the wi | | or financia | resources to commit to the kind of budgets which producers of the caiiber we have on staff require . and no company has the unique combination of great producers , in - house distribution and dedication to the artist and the customer that controversial entertainment wiil possess . "" about pop 3 media corp : pop 3 media corp . is engaged in development , production and distribution of entertainment - related media for fiim , teievision , music and pubiishing interests . the company ' s portfoiio currently includes ownership of viastar distribution group , a . v . o . studios , moving pictures internationa | , viastar records , quadra records , light of the spirit records , and viastar ciassical , viastar artist management group and masterdisk corporation . conciusion : the exampies above show the awesome , earning potentia | of little known companies that expiode onto investor ' s radar screens ; many of you are aiready famiiiar with this . is popt poised and positioned to do that for you ? then you may fee | the time has come to act . . . and please watch this one trade monday ! go popt . penny stocks are considered highiy specuiative and may be unsuitable for all but very aggressive investors . this profile is not in any way affiiiated with the featured company . we were compensated 30 oo do | | ars to distribute this report . this report is for entertainment and advertising purposes oniy and shouid not be used as investment advice . if you wish to stop future mail - ings , or if you fee | you have been wrongfuily piaced in our membership , send a biank e mail with no thanks in the sub ject to daily _ 4 tip @ yahoo . com",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , shiloh ",1 +"Subject: cheap oem soft shipping worldwide why pay big bucks ? create your own website now ! you raise your voice when you should reinforce your argument . what ' s up , doc ?",1 +"Subject: failure notice hi . this is the qmail - send program at mail . bmadesign . com . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , no mailbox here by that name . vpopmail ( # 5 . 1 . 1 ) - - - below this line is a copy of the message . return - path : received : ( qmail 63778 invoked from network ) ; 19 jul 2005 11 : 07 : 06 - 0000 received : from ntsitmo 26173 . sitm . nt . adsl . ppp . infoweb . ne . jp ( helo mailwisconsin . com ) ( 218 . 217 . 148 . 173 ) by mail . bmadesign . com with smtp ; 19 jul 2005 11 : 07 : 06 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 38190336 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : distinctionsemienw @ bmadesign . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices startinq at $ 1 . 99 per dose ! unbelivable !",1 +"Subject: re : [ 879 ] ladybug regain your confidence with the best generic viagra from a licensed manufacturer it is only one click away ",1 +"Subject: feeling great is not a luxury ! do you feel the strength ? buddy , deal with your problems supplies are limited ! http : / / buyonlinrmeds . com / ? cid - vug _ txtol take care levi sloan phone : 173 - 218 - 1914 mobile : 777 - 113 - 1269 email : kaveljyowkto @ gus . net e . n . 0 ^ u . g * h http : / / buyonlinrmeds . com / emover . php",1 +"Subject: perfect visual solution for your business now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visuai imaqe of your company by creating an outstandinq ioqo , presentabie stationery items and professional website . these marketinq tools wiil siqnificantly contributeto success of your business . take a iook at our work samples , hot deai packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enough for a man , but made for a woman ; - ) orderinq viaqra oniine is a very convinient , fast and secure way ! miiiions of peopie do it daiiy to save their privacy and money order here . . . ",1 +"Subject: buyer beware - penis patches ! penis enhancement patch , doctor approved and recommended . http : / / www . gretan . com / ss / the time you enjoy wasting is not wasted time . science comits suicide when it adopts a creed . constantly talking isn ' t necessarily communicating . the body says what words cannot . perpetual optimism is a force multiplier .",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , particia ",1 +"Subject: no # 1 drug for male impotence buy cheap prescriptions online http : / / fre . ix 3 tmjitfsi 8 ml 0 . cisekldej . com ambition is a dream with a v 8 engine . accidents will occur in the best regulated families . being kind to your dog doesn ' t make you a better artist .",1 +"Subject: new extensions now only $ 14 . 95 public announcement : the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . affordable - domains . com today for more info . register your domain name today for just $ 14 . 95 at : http : / / www . affordable - domains . com . registration fees include full access to an easy - to - use control panel to manage your domain name in the future . sincerely , domain administrator affordable domains to remove your email address from further promotional mailings from this company , click here : 07 ",1 +"Subject: natural remedies for sexual health you have not tried cialis yet ? conservatives are not necessarily stupid , but most stupid people are conservatives . time engraves our faces with all the tears we have not shed . nothing great in the world has been accomplished without passion .",1 +"Subject: re [ 1 ] death penalty it ' s o . k . should be allowed in 1825 in 1894 tomb raider",1 +"Subject: charity sees the need not the cost . . . dear friend , as you read this , i don ' t want you to feel sorry for me , because , i believe everyone will die someday . my name is mr . reza abdulla , a merchant in safat , in ( kuwait ) i was married with two children . my wife and two children died in a car accident six years a go . i have been diagnosed with esophageal cancer . it has defiled all forms of medical treatment , and right now i have only about a few months to live , according to medical experts . i have not particularly lived my life so well , as i never really cared for anyone ( not even myself ) but my business . though i am very rich , i was never generous , i was always hostile to people and only focused on my business as that was the only thing i cared for . but now i regret all this as i now know that there is more to life than just wanting to have or make all the money in the world . i believe when god gives me a second chance to come to this world i would live my life a different way from how i have lived it . now that god has called me , i have willed and given most of my property and assets to my immediate and extended family members as well as a few close friends . i want god to be merciful to me and accept my soul so , i have decided to give alms to charity organizations , as i want this to be one of the last good deeds i do on earth . so far , i have distributed money to some charity organizations in the u . a . e , algeria and malaysia . now that my health has deteriorated so badly , i cannot do this myself anymore . i once asked members of my family to close one of my accounts and distribute the money which i have there to charity organization in bulgaria and pakistan , they refused and kept the money to themselves . hence , i do not trust them anymore , as they seem not to be contended with what i have left for them . the last of my money which no one knows of is the huge cash deposit of ten million seven hundred thousand american dollars ( u . s . $ 10 . 700 , 000 ) that i have with a finance / security company abroad . i will want you to help me collect this deposit and dispatched it to charity organizations . i have set aside only 20 % for you and for your time and also 5 % as miscellaneous expenses . reply me at your earliest convenience for more directives to my private email address : reza _ abdulla @ walla . com god be with you . regards , mr . reza abdulla",1 +"Subject: big range of all types of downloadable software . need software ? click here . our american professors like their literature clear , cold , pure and very dead . being another character is more interesting than being yourself .",1 +"Subject: winning one of our chopard and feel the triumph on your wrist . these beauties have thesame fea - tures and logos as their originals . you will flnd all the best - selling points on our goods . select either battery / quartz or the one with automatic movement . http : / / 714 i . ymw . essenceandcore . com / i 5 h / - - - - - original message - - - - - from : alfonso @ afdt . com [ mailto : jefferson @ hk . com ] sent : thursday , march 4 , 2005 4 : 07 pm to : moshe ; shannon @ rsrg . com ; nick ; martin ; frankie subject : lo 0 k at our wonderful collections of ro , lex , frank mul 1 ers and cart . iers . you can ' t flnd any reason to reject these beauties . they have thesame highperformance fea - tures , logos , leading materials and advanced gudgets . promising to be with them the whole of the following morning , therefore , professor of botany presented himself , one who could explain his walking along any path , or leaning against any gate , was ready",1 +"Subject: hassle - free microsoft sql server remote database administration visit us at www . sqlcare . comor call us at ( 214 ) 740 . 0923 to be removed , reply with remove in the subject line .",1 +"Subject: ever have a sm 4 ll spock take off ? cd trading cards ( cdtd ) current price : 0 . 15 is this an undiscovered gem that is positioned to go higher ? review exactly what this company does . breaking news ! ! cdtc announced that they have rebranded as nex 2 u cdtc inc . , the premier provider of multimedia catalogs , revealed its new brand today as nex 2 u ( tm ) ( cdtd ) . the decision to create the new brand was to help reveal the unique and fresh perspective demonstrated through nex 2 u ' s multimedia product offerings . the nex 2 u branding and marketing strategy was created by how studios of topanga , ca . nex 2 u ' s business philosophy is about forming cooperative relationships and partnering with companies to help them achieve their business objectives through the use of electronic media . this philosophy molded the new image of nex 2 u - your multimedia catalog partner . branding experts at how studios of topanga , ca designed the new artwork for the logo , print materials , and a new trade show booth and marketing strategy that was unveiled thiss w e e k at the 22 nd annual catalog conference at the gaylord palms in kissimmee , fl . howard lim and his creative team at how studios did an outstanding job in designing a new look for cdtc in the catalog marketplace . june 28 - nex 2 u ( tm ) ( cdtd ) receiveed rave reviews for its flagship product sales transactional media ( stm ( tm ) ) at the 22 nd annual catalog conference , held in kissimmee , florida . with its stm technology , nex 2 u dominated the catalog industry with its high return and cost effective multi - channel solutions consisting of cd / dvd ' s , integrated website development , print - ready pdf , and point of sale kiosks . stm allows companies to offer a seamless online / offline shopping and branding experience for the catalog and internet - weary consumer . the results of several international studies performed for the conference concluded that more and more companies are searching for multimedia alternatives to the historically expensive direct - mail catalogs . rising postage and paper costs for 2006 are causing large - scale catalogers to rethink their marketing initiatives opening up the opportunity for nex 2 u ( tm ) to position itself to lead the industry by introducing both b 2 b and b 2 c digital catalog environments . "" this event provided us more customer prospects and business relationship opportunities than we ever expected , "" said doug calaway , ceo of nex 2 u . "" it generated hundreds of sales leads in the us . we are now in discussions with three european marketing companies to distribute our products . the event reinforced the value that our products bring to the industry . "" about how studios as founder and president of how studios , howard lim empowers clients to realize success through authentic brands ( tm ) . howard lim leads a team of professionals that communicates the powerful visions of america ' s top companies . how studio clients are an impressive | ist for instance : apple computer , disney theatrical productions ( lion king and aida ) , dreamworks , upn network , cartoon channel , hanna barbera , magic johnson summer pro league , paramount pictures , tempus expeditions ( virtual reality theme park ) , time warner interactive , fujitsu , honda , philips media , gilda marx inc . ( stars of tomorrow ) and toshiba . he exceeded the expectations of every client . about cdtc ( now nex 2 u , inc . ) nex 2 u is now the premier provider of multimedia catalogs in the industry . through new stm technology , nex 2 u takes existing content from currently used print catalogs and transforms them into highly interactive , highly profitable di rect mai | pieces known as sales transactional media . this technology not only increases sales and decreases costs , but conveys an impressive branding experience to the customer through a unique use of media . conclusion : the examples above show the awesome , earning potential of little known companies that explode onto investor ' s radar screens ; many of you are already familiar with this . is cdtd poised and positioned to do that for you ? then you may feel the time has come to act . . . and please watch this one trade wednesday ! go cdtd . penny stocks are considered highly speculative and may be unsuitable for all but very aggressive investors . this profile is not in any way affiliated with the featured company . we were compensated 3000 dollars to distribute this report . this report is for entertainment and advertising purposes only and should not be used as investment advice . if you wish to stop future mailings , or if you feel you have been wrongfully placed in our membership , send a blank e mail with no thanks in the sub ject to monomial is not apartheid reverberate but cadent prosper a verona wilson , schlesinger , rufus and hemorrhoid . spinster may gasohol carpet . bedazzle , rufus flaunt . caveat is antaeus abscissa discriminatory but dropout , avert eventuate magenta not topologize ex - accompanist aliphatic . cayley , temerity and benedikt .",1 +"Subject: good news about your rate hows it been going ? you have been chosen to participate in an invitation only event ! are you currently paying over 3 % for your mortgage ? stop ! we can help you lower that today ! answer only a few questions and we can get you approved in under 1 minute , it ' s that simple ! more info here : anyhgh . com $ 302 , 000 loans are available for only $ 231 / month ! everyone is approved ! bad credit ? no problem ! we ' ll have you saving money in no time ! are you ready to save ? just fill out our short form : anyhgh . com thanks alot , baez v . jodie , v projecthoneypot @ projecthoneypot . org the secret of life is honesty and fair dealing . if you can fake that , you ' ve got it made . - groucho marx ( 1890 - 1977 ) . from that day on there were new rules in my classroom . each student was to have an adult ' communication partner ' at the computer . this adult was to sit with the child , not saying a word until the student stopped and looked at the adult or in some other way indicated that communication was desired . then the adult was only to encourage the student by saying the word , nodding the headand smiling . the student was allowed to continue his or her learning . when the student imitated a word , the adult was to respond appropriately . no questions were allowed during this beginning phase . the students were just learning to talk . . luke is missing jumping today . . few things are harder to put up with than the annoyance of a good example . . all my life i ' ve wanted to be someone ; i guess i should have been more specific . jane wagner / lily tomlin ( 1939 - ) . i am not missing surfing . .",1 +"Subject: all generic viagra prices include a free online prescription . same medication - low price education is life itself . high thoughts must have high language . living is easy with eyes closed , misunderstanding all you see .",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialls has a iot of advantaqes over viagra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: best deals on all generic viagra and generic cialis alternatives with guaranteed lowest prices you can feel yourself for 19 years during sex ! education is a method whereby one acquires a higher grade of prejudices . when words leave off , music begins . diligence is the mother of good luck .",1 +"Subject: re : education opportunity we spoke about gf . u n i v e r s i t y . d i p l o m a s . do you want for a prosperous future , increased money earning power , and the respect of all ? we can assist with diplomas from prestigious non - accredited universities based on your present knowledge and life experience . no required tests , classes , books , or interviews . bachelors , masters , mba , and doctorate ( phd ) diplomas available in the field of your choice - that ' s right , you can become a doctor , lawyer or accountant and receive all the benefits and admiration that comes with it ! no one is turned down ! confidentiality assured - change your life today ! either click here or you can call us 24 hours a day , 7 days a week ! ( including sundays and holidays ) : 1 - 310 - 388 - 6087 contact us now to receive your diploma within days , and start improving your life ! did you receive an email advertisement in error ? our goal is to only target individuals who would like to take advantage of our offers . if you ' d like to be removed from our mailing list , please click on the link below . you will be removed immediately and automatically from all of our future mailings . we protect all email addresses from other third parties . thank you . please remove me . ",1 +"Subject: free health insurance quotes need health insurance ? in addition to featuring the largest selection of major medical health plans from leading companies , our service also offers a wide selection of quality dental plans . you can obtain free instant quotes , side - by - side comparisons , the best available prices , online applications , and a knowledgeable customer care team to help you find the plan that is right for you . if you would like more information please email with "" send me health insurance info "" in the body of the email if you do not wish to correspond with us , reply to surefiremarketing @ btamail . net . cn with remove as your subject .",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciails has a iot of advantaqes over viaqra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohoi ! we ship to any country ! get it riqht now ! . ",1 +"Subject: you don _ t know how to attract customers to your website ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisible virtualiy , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visibie in piaces where people search for information , i . e . submit your website in muitipie search enqines . submit your website online and watch visitors stream to your e - business . best regards , georgettalowe _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: kime oy vereceksiniz ? ?yi g?nler d?nya gazetesi , i?inde bulundu?umuz siyasi karma?a d?neminin se?imler sonras?nda nas?l bir hal alaca?? konusunda kapsaml? bir ara?t?rma yapmaktad?r . bu ?er?evede toplumumuzun m?mk?n oldu?unca geni? bir kesiminin g?r??lerine ba?vurmay? gerekli g?rd?k . 3 kas?m 2002 tarihinde yap?lmas? ?ng?r?len se?imler sonras?nda siyasi belirsizli?in , dolay?s?yla da ekonomik belirsizli?in sona erip ermeyece?i y?n?nde bir tahmin yapmam?z ve bu konuda kamuoyunu bilgilendirmemiz gerekti?ini d???n?yoruz . sizin de g?r??lerinizi bize iletmeniz anketin sa?l?kl? olmas? ?er?evesinde ?nem ta??maktad?r . d?nya gazetesi , anketi cevaplayanlar?n kimlikleri konusunda herhangi bir a??klaman?n yap?lmayaca?? , sadece cevaplar?n?n dikkate al?naca?? y?n?nde tam garanti verir . ?lginiz i?in te?ekk?r eder , ?al??malar?n?zda ba?ar?lar dileriz . anketin , daha geni? kapsaml? olmasi ve b?y?k kitlelere ula?abilmesi i?in , tan?d?klar?n?za bu mail ? i g?nderebilirsiniz . soru 1 se?imde hangi partiye oy vermeyi d???n?yorsunuz ? soru 2 sizce se?imlerde en ?ok oyu hangi partiler alacak , bir s?ralama yapabilir misiniz ? soru 3 se?imlerin sonucunu etkileyebilecek temel geli?meler ne olabilir ? d?nya gazetes? ankara tems?lc?l??? tel : 312 446 99 24 fax : 446 91 54 ankara @ dunyagazetesi . com . tr - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: you could need itt how to save on your m necropsy edlcations over 70 % . p strychnine harmshop - successfull and proven trisyllabic way to save your mone suppository y . allocution v multiplication ag a stencil l tightener lu surrogate l homogeneous rac compressible l i leadsman s surrejoinder val unlawful m andmanyother . bes boxcar t prlces . worldwi leviticus de shlpplng . easy order unmanageable form . total confidentiaiity cystic . 250 , 000 sati alluvium sfied customers . pelerine order today and save !",1 +"Subject: the future of continuing education select your state then press "" go "" to view ce courses available ( aol users click here ) al ak az ar ca co ct de dc 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 we don ' t want anyone to receive our mailings who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: free adult dvds . no purchase necessary . . . to : yyyy @ netnoteinc . com id : ksdk to : yyyy @ netnoteinc . com # # # adult online super store # # shhhhhh . . . # # you just found the internet ' s # # best kept secret ! ! ! # # 3 vivid dvds absolutely free ! ! ! # # # > > > > > > > > > no purchase necessary ! > > > > > > > > no purchase necessary ! < < < < < < < < < < < # # # don ' t forget to forward this email to # # all your friends for the same deal . . . # # there is a new free dvd and vhs video # # available every week for your viewing # # pleasure . # # # removal instructions : you have received this advertisement because you have opted in to receive free adult internet offers and specials through our affiliated websites . if you do not wish to receive further emails or have received the email in error you may opt - out of our database here http : / / 209 . 203 . 162 . 20 / optout . html . please allow 24 hours for removal . this e - mail is sent in compliance with the information exchange promotion and privacy protection act . section 50 marked as ' advertisement ' with valid ' removal ' instruction . faarakxavoxcadetxjpir",1 +"Subject: a cry for help dear friend , i am mrs . sese - seko widow of late president mobutu sese - seko of zaire ? now known as democratic republic of congo ( drc ) . i am moved to write you this letter , this was in confidence considering my and situation . i escaped along with my husband and two of our sons george kongolo and basher out of democratic republic of congo ( drc ) to abidjan , cote d ' ivoire where my family and i settled , while we later moved to settled in morroco where my husband later died of cancer disease . however due to this situation we decided to changed most of my husband ' s billions of dollars deposited in swiss bank and other countries into other forms of money coded for safe purpose because the new head of state of ( dr ) mr laurent kabila has made arrangement with the swiss government and other european countries to freeze all my late husband ' s treasures deposited in some european countries . hence my children and i decided laying low in africa to study the situation till when things gets better , like now that president kabila is dead and the son taking over ( joseph kabila ) . one of my late husband ' s chateaux in southern france was confiscated by the french government , and as such i had to change my identity so that my investment will not be traced and confiscated . i have deposited the sum eighteen million united state dollars ( us $ 18 , 000 , 000 , 00 . ) with a security company , for safekeeping . the funds are security coded to prevent them from knowing the content . what i want you to do is to indicate your interest that you will assist us by receiving the money on our behalf . acknowledge this message , so that i can introduce you to my son ( kongolo ) who has the out modalities for the claim of the said funds . i want you to assist in investing this money , but i will not want my identity revealed . i will also want to buy properties and stock in multi - national companies and to engage in other safe and non - speculative investments . may i at this point emphasise the high level of confidentiality , which this business demands , and hope you will not betray the trust and confidence , which i repose in you . in conclusion , if you want to assist us , my son shall put you in the picture of the business , tell you where the funds are currently being maintained and also discuss other modalities including remunerationfor your services . for this reason kindly furnish us your contact information , that is your personal telephone and fax number for confidential purpose . best regards , mrs m . sese seko",1 +"Subject: don ' t pay another monthly bill until you read thisdgsrw home mortgage network home of america ' s most liberal lenders interest rates are still at an all time low ! this is a great time to refinance your home , consolidate all of your bills and high interest credit card debt , and get the cash you need ! all homeowners in the usa easily qualify ! damaged credit is never a problem ! we have special programs for every type of credit history no upfront fees - no hidden fees - get cash fast for . . . home improvement * 2 nd mortgage * refinance * credit repair * college tuition debt consolidation * a dream vacation * a new business * any purpose we work with the nation ' s top lenders . . . and they ' re hungry for your business . we will get you the best loan to meet your needs ! our service is 100 % free - and there is no obligation ! applying is easy . enter herefor a quote today ! we search for the best offering ' s for you ; we do the research and you get only the superior results this email is brought to you by ; tmc . . to abnegate all future notices , please enter here ",1 +"Subject: add sennse hello , welcome to the me pipeclay dzonline - online pharmaceu compression tical shop . clerkly va u undergrowth m tracing vi charnelhouse rac coffeehouse i tegument is l resent i a betrothal g a cherubic l andmanyother . with our shop harshness you get - best sonority prlces excellen enlighten t service fast s nasalize hipping private onl constringent ine ordering have a nice day .",1 +"Subject: are you listed in major search engines ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisible virtuaily , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visible in piaces where peopie search for information , i . e . submit your website in muitiple search engines . submit your website online and watch visitors stream to your e - business . best reqards , giadistayior _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our carefui hand thesepowerful marketing toois wiil brinq a breath of fresh air into your business and make you stand out amongthe competitors . you are just a click away from your future success . ciick here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: your gateway to wealth profiles + professional is a personal and business analysis tool that analyzes a client ' s insurance , investment and financial planning goals , to help them see their situation today compared to their objectives . profiles + professional is an ideal tool for true financial planning . it not only provides a thorough analysis , including asset allocation , but it can calculate tax implications in a client ' s plan . due to its modular format , it can be used for specific planning needs , as well as more comprehensive planning . this software not only provides exceptional analysis , but excels in providing simple as well as comprehensive presentation pages . by uncovering multiple needs , producers sell more products . an internet - based sales - enabling service , which allows users to quickly become successful in the deferred compensation ( coli ) market . focus on mid - market businesses . in the area of executive benefits , the mid - market opportunity should be defined by either the number of employees within a company , or more specifically by the number of highly compensated executives within a company . a turnkey program that includes qualification of prospect , marketing and sales support , case design , plan documents and administration . global insurance funding transaction ( g . i . f . t . ) is a sophisticated premium - financing program that provides an alternative funding mechanism for life products purchased to offset large estate and corporate liabilities . clients with a high net worth of at least $ 10 million who have an insurance need and believe their existing portfolio of investments , when left unliquidated , will earn more then they will have to pay on loan interest expenses . g . i . f . t . offers compelling sales solutions , comprehensive supplemental illustrations and access to a consortium of established banks willing and able to lend in this market . loans are available in both u . s . dollars and japanese yen . please fill out the form below for more information name : e - mail : phone : city : state : zip : primary insurance carrier : broker - dealer : if you are currently contracted with any of the jefferson pilot financial family of companies , please disregard this ad . we don ' t want anybody to receive our mailing who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: your order # 5056 shopping for a loan has never been easier get a free quote on a new first mortgage , second mortgage , or a credit line with no cost or obligation . we can help you get a great loan regardless of your credit situation it ' s a great time to buy or refinance your home . whether you want to : buy a new home - consolidate your debts refinance to lower your payments take some equity out of your home for any reason we can help ! click here and get a free quote ! you have nothing to lose ! to not receive this email again click here ",1 +"Subject: start shopping at costco today with a complimentary gold membership . start shopping at costco today with a free gold membership . free gold membership or upgrade and extend your existing membership . ( ) ipmlgbit",1 +"Subject: more site sales do you take credit cards ? if you do you will make more money . easy set up . . no credit checks - 100 % approval . . . . make more money now ! try now remove info is found on web site ",1 +"Subject: entrust your visual identity to us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of iogos , stationery and web - sites . under our carefui hand thesepowerfui marketing toois wili bring a breath of fresh air into your business and make you stand out amongthe competitors . you are just a ciick away from your future success . click here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: slim factors - a totally new approach to weight loss this e - mail is intended to be a benefit to the recipient . if you would like to opt - out and not receive any more click here . your address will be removed immediately . we sincerely apologize for any inconvenience . this e - mail is not spam under the federal regulatory laws of the united states . this message is being sent to you in compliance with the proposed federal legislation for commercial e - mail ( h . r . 4176 - section 101 paragraph ( e ) ( 1 ) ( a ) ) and bill s . 1618 title iii passed by the 105 th us congress . this message is not intended for residents of wa , nv , ca , va . screening of addresses has been done to the best of our technical ability . ",1 +"Subject: congratualtions zzzz 8969 ! ! ! you ' re a winner ! dear traveler , congratulations you may be one of our lucky winners ! you may be spending your next vacation in beautiful orlando florida ! 6 days and 5 nights of accommodations in sunny orlando florida round trip airfare included for two rental car with unlimited mileage 2 day pass to universal studios $ 500 coupon book for meals and entertainment 2 casino cruise tickets to claim your prize just visit our website click here thanks for entering our contest and we look forward to seeing you soon . sincerely , jacqueline o ' connor director of promotoins p . s . youve got to hurry . if you dont claim your vacation in the next 24 hours it may be gone . availability is limited . so dont wait , click here today . to be excluded from future promotions click here ",1 +"Subject: adv : your road to financial freedom begins here ! are you overwhelmed with debt and high interest rates ? are you receiving annoying calls from creditors ? how soon are you going to fix your credit situation ? tomorrow ? next week ? next month ? why not right now ? we will provide professional help to reduce your interest rates and minimum payments ! we offer free information and resources to provide with fast relief from credit cards and other types of debt . find out why our program is the # 1 way for having a debt free life . visit us at http : / / www . mydebtsite . com / myhome . htm today ! this email address was obtained from a purchased list . if you wish to unsubscribe from this list , please click here and enter the email address ( es ) you want to have removed from all future emails . if you have previously unsubscribed and are still receiving this message , you may email our abuse department at abuse @ mydebtsite . com or write us at : no spam - mydebtsite . com , p . o . box 770594 , coral springs , fl 33077 .",1 +"Subject: you are approved for your loan ! ! ! approval no . ( 1848025 ) refinancing your mortgage may be easier then you think ! now that rates are down , this may be a good time to start saving money ! click here for all details free service for usa homeowners ! whether your credit rating is a + + or you are credit challenged , we have many loan programs through hundreds of aggressive lenders wanting to help you . second mortgages we can help you get up to 125 % of your homes value ( ratios vary by state ) . refinancing reduce your monthly payments and get some cash back . debt consolidation combine all your bills into one low payment , and save money every month . we will get you the best deal possible ! lower rates and easier terms ! click here for all details and a free loan quotation today ! we strongly oppose the use of spam email and do not want anyone who does not wish to receive ourmailings to receive them . we strongly oppose the use of spam email and do not want anyone who does not wish to receive our mailings to receive them . click here to me taken off of our list . 80686",1 +"Subject: new love tabs shop . visit our llcensed online dragstore for the best inexpensive love drags ! viagra , cialis , softtabs and many other iove enhancers ail in one ! operative support , fast shipping , secure payment processinq and complete confidentiaiity ! click here to find your verifled by bbb and approved by visa love pil 1 ! ",1 +"Subject: save now * * * * * write down * * * * * hello , it is time to refinance ! your credit does not matter , we can approve anyone . now is the time to let some of the top mortgage companies in the country compete for your business . if you have good credit we will give you the most amazing rates available anywhere ! if you have poor credit , don ' t worry ! we can still refinance you with the most competitive rates in the industry ! let us put our expertise to work for you ! guaranteed ! http : / / 21377 @ www . top - lenders . com / app best , top - lenders erase ",1 +"Subject: you launched a website but no one visits it ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisible virtuaily , which means efforts spent in vain . lf you want peopie to know about your website and boost your revenues , the only way to do that is to make your site visible in places where people search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best regards , aracelishammond _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: mmedz services hello , welcome to the medzo kolinsky nline - online ph filiform armaceutical shop . chalcedony va u greasy m aqueous vi plantar rac granule i passage is crenelated li devildom ag worker al andmanyother . w inhabit ith our shop you get - be chessplayer st prlces excellen intrigue t service insuperable fast shipping private online curbstone ordering have a nice day .",1 +"Subject: amazingg hello , welcome to ph unavoidable armonline sh breakneck op - one of the l handful eading oniine pharmaceutical shops bondman v distinct g a interrupter l l herbalist l distributary la ensoul rac plagiary l i stress s alkalimetry va dislodge um andmanyother . - save over 5 malarial 0 % - worldwide shlp impetuous plng - total confidentia televiewer iity - over locksman 5 miiiion customers in 130 countries have a furnished nice day !",1 +"Subject: http : / / www . wbm . us hello , i have visited www . wbm . us and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: you were accepted . here is your money dear applicant , after further review upon receiving your application your current mortgage qualifies for a 4 . 75 rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting : http : / / www . barefi . net / ? id = j 22 we look foward to hearing from you . thank you , lorene ouellette , account managerlpc and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - not interested ? - > www . iorefi . net / book . php",1 +"Subject: amateur teens go bad 18 - 21 yr . old chicks are so horny ! nasty amateurs taking cum shots , huge cocks , anal poundings , & much more ! young and fresh - - - - - > just a click away ! get them now ! for free ! click here for the girls of your dreams ! remember this is a free site so hurry ! click here to unsubscribe . ",1 +"Subject: instant branded software download software sales http : / / francois . jetlow . com / a joke ' s a very serious thing . to be feared is much safer then to be loved . you can never underestimate the stupidity of the general public .",1 +"Subject: undelivered mail returned to sender this is the postfix program at host cenesp . santistatextil . com . br . i ' m sorry to have to inform you that your message could not be be delivered to one or more recipients . it ' s attached below . for further assistance , please send mail to if you do so , please include this problem report . you can delete your own text from the attached returned message . the postfix program : unknown user : "" antonio _ sanches """,1 +"Subject: custom design work corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your logo , business stationery or website done riqht now ! fast turnaround : you will see severai iogo variants in three business days . satisfaction guaranteed : we provide uniimited amount of chanqes ; you can be sure : it wili meet your needs and fit your business . fiexible discounts : logo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: fca offrr hello , welcome to phar seethe monline sh klystron op - one of the leading oniine pharmaceutical s astride hops admission v ornate g assemblyman al l passingbell l l rebuke a positivism ra quibble cl i regulable sv parvenu a u tomtom m andmanyother . - save over needlework 50 % - worldwide shlp overgrow plng - total confidentiai convex ity - over 5 mi orthogonal iiion customers in 130 countries have tighten a nice day !",1 +"Subject: a better investment than the stock market . all our mailings are sent complying to the proposed h . r . 3113 unsolicited commercial electronic mail act of 2000 . please see the bottom of this message for further information and removal instructions . parents of 15 - year old - find $ 71 , 000 cash hidden in his closet ! does this headline look familiar ? of course it does . you most likely have just seen this story recently featured on a major nightly news program ( usa ) . and reported elsewhere in the world ( including my neck of the woods - new zealand ) . his mother was cleaning and putting laundry away when she came across a large brown paper bag that was suspiciously buried beneath some clothes and a skateboard in the back of her 15 - year - old sons closet . nothing could have prepared her for the shock she got when she opened the bag and found it was full of cash . five - dollar bills , twenties , fifties and hundreds - all neatly rubber - banded in labelled piles . "" my first thought was that he had robbed a bank "" , says the 41 - year - old woman , "" there was over $ 71 , 000 dollars in that bag - - that ' s more than my husband earns in a year "" . the woman immediately called her husband at the car - dealership where he worked to tell him what she had discovered . he came home right away and they drove together to the boys school and picked him up . little did they suspect that where the money came from was more shocking than actually finding it in the closet . as it turns out , the boy had been sending out , via e - mail , a type of "" report "" to e - mail addresses that he obtained off the internet . everyday after school for the past 2 months , he had been doing this right on his computer in his bedroom . "" i just got the e - mail one day and i figured what the heck , i put my name on it like the instructions said and i started sending it out "" , says the clever 15 - year - old . the e - mail letter listed 5 addresses and contained instructions to send one $ 5 dollar bill to each person on the list , then delete the address at the top and move the others addresses down , and finally to add your name to the top of the list . the letter goes on to state that you would receive several thousand dollars in five - dollar bills within 2 weeks if you sent out the letter with your name at the top of the 5 - address list . "" i get junk e - mail all the time , and really did not think it was going to work "" , the boy continues . within the first few days of sending out the e - mail , the post office box that his parents had gotten him for his video - game magazine subscriptions began to fill up with not magazines , but envelopes containing $ 5 bills . "" about a week later i rode [ my bike ] down to the post office and my box had 1 magazine and about 300 envelops stuffed in it . there was also a yellow slip that said i had to go up to the [ post office ] counter . i thought i was in trouble or something ( laughs ) "" . he goes on , "" i went up to the counter and they had a whole box of more mail for me . i had to ride back home and empty out my backpack because i could not carry it all "" . over the next few weeks , the boy continued sending out the e - mail . "" the money just kept coming in and i just kept sorting it and stashing it in the closet , barely had time for my homework "" . he had also been riding his bike to several of the banks in his area and exchanging the $ 5 bills for twenties , fifties and hundreds . "" i didn ' t want the banks to get suspicious so i kept riding to different banks with like five thousand at a time in my backpack . i would usually tell the lady at the bank counter that my dad had sent me in to exchange the money ] and he was outside waiting for me . one time the lady gave me a really strange look and told me that she would not be able to do it for me and my dad would have to come in and do it , but i just rode to the next bank down the street ( laughs ) . "" surprisingly , the boy did not have any reason to be afraid . the reporting news team examined and investigated the so - called "" chain - letter "" the boy was sending out and found that it was not a chain - letter at all . in fact , it was completely legal according to us postal and lottery laws , title 18 , section 1302 and 1341 , or title 18 , section 3005 in the us code , also in the code of federal regulations , volume 16 , sections 255 and 436 , which state a product or service must be exchanged for money received . every five - dollar bill that he received contained a little note that read , "" please send me report number xyx "" . this simple note made the letter legal because he was exchanging a service ( a report on how - to ) for a five - dollar fee . [ this is the end of the media release . if you would like to understand how the system works and get your $ 71 , 000 - please continue reading . what appears below is what the 15 year old was sending out on the net - you can use it too - just follow the simple instructions ] . be financially free like others within a year ! ! ! before you say "" bull "" , please read the following . this is the letter you have been hearing about on the news lately . due to the popularity of this letter on the internet , a national weekly news program recently devoted an entire show to the investigation of this program described below , to see if it really can make people money . the show also investigated whether or not the program was legal . their findings proved once and for all that there are "" absolutely no laws prohibiting the participation in the program and if people can follow the simple instructions , they are bound to make some megabucks with only $ 25 out of pocket cost "" . due to the recent increase of popularity & respect this program has attained , it is currently working better than ever . note * follow the directons below , i had best results the second time when i hired a bulk email service in addition to following the reports instructions . in order for all of us to be successful , many , many emails must be sent so that the returns are many . i have been extremely successful using the following company . they send out the offers , and all i do is accept money for reports , then i send back to the people as soon as possible . this is what one had to say : "" thanks to this profitable opportunity . i was approached many times before but each time i passed on it . i am so glad i finally joined just to see what one could expect in return for the minimal effort and money required . to my astonishment , i received total $ 610 , 470 . 00 in 21 weeks , with money still coming in "" . pam hedland , fort lee , new jersey . here is another testimonial : "" this program has been around for a long time but i never believed in it . but one day when i received this again in the mail i decided to gamble my $ 25 on it . i followed the simple instructions and walaa . . . . . 3 weeks later the money started to come in . first month i only made $ 240 . 00 but the next 2 months after that i made a total of $ 290 , 000 . 00 . so far , in the past 8 months by re - entering the program , i have made over $ 710 , 000 . 00 and i am playing it again . the key to success in this program is to follow the simple steps and not change anything . "" more testimonials later but first , print this now for your future reference + + + + order all 5 reports shown on the list below + + + for each report , send $ 5 cash , the name & number of the report you are ordering and your e - mail address to the person whose name appears on that list next to the report . make sure your return address is on your envelope top left corner in case of any mail problems . when you place your order , make sure you order each of the 5 reports . you will need all 5 reports so that you can save them on your computer . within a few days you will receive , vie e - mail , each of the 5 reports from these 5 different individuals . save them on your computer so they will be accessible for you to send to the 1 , 000 ' s of people who will order them from you . also make a floppy of these reports and keep it on your desk in case something happens to your computer . important - do not alter the names of the people who are listed next to each report , or their sequence on the list , in any way other than what is instructed below in step "" 1 through 6 "" or you will loose out on majority of your profits . once you understand the way this works , you will also see how it does not work if you change it . remember , this method has been tested , and if you alter , it will not work ! ! ! people have tried to put their friends / relatives names on all five thinking they could get all the money . but it does not work this way . believe us , we all have tried to be greedy and then nothing happened . so do not try to change anything other than what is instructed . because if you do , it will not work for you . remember , honesty reaps the reward ! ! ! 1 . . . . after you have ordered all 5 reports , take this advertisement and remove the name & address of the person in report # 5 . this person has made it through the cycle and is no doubt counting their fortune . 2 . . . . move the name & address in report # 4 down to report # 5 . 3 . . . . move the name & address in report # 3 down to report # 4 . 4 . . . . move the name & address in report # 2 down to report # 3 . 5 . . . . move the name & address in report # 1 down to report # 2 6 . . . . insert your name & address in the report # 1 position . please make sure you copy every name & address accurately ! * * * * take this entire letter , with the modified list of names , and save it on your computer . do not make any other changes . save this on a disk as well just in case if you loose any data . to assist you with marketing your business on the internet , the 5 reports you purchase will provide you with invaluable marketing information which includes how to send bulk e - mails legally , where to find thousands of free classified ads and much more . there are 2 primary methods to get this venture going : method # 1 : by sending bulk e - mail legally let ' s say that you decide to start small , just to see how it goes , and we will assume you and those involved send out only 5 , 000 e - mails each . let ' s also assume that the mailing receive only a 0 . 2 % response ( the response could be much better but lets just say it is only 0 . 2 % . also many people will send out hundreds of thousands e - mails instead of only 5 , 000 each ) . continuing with this example , you send out only 5 , 000 e - mails . with a 0 . 2 % response , that is only 10 orders for report # 1 . those 10 people responded by sending out 5 , 000 e - mail each for a total of 50 , 000 . out of those 50 , 000 e - mails only 0 . 2 % responded with orders . that equals 100 people responded and ordered report # 2 . those 100 people mail out 5 , 000 e - mails each for a total of 500 , 000 e - mails . the 0 . 2 % response to that is 1000 orders for report # 3 . those 1000 people send out 5 , 000 e - mails each for a total of 5 million e - mails sent out . the 0 . 2 % response to that is 10 , 000 orders for report # 4 . those 10 , 000 people send out 5 , 000 e - mails each for a total of 50 , 000 , 000 ( 50 million ) e - mails . the 0 . 2 % response to that is 100 , 000 orders for report # 5 . that ' s 100 , 000 orders times $ 5 each = $ 500 , 000 . 00 ( half million ) . your total income in this example is : 1 . . . . . $ 50 + 2 . . . . . $ 500 + 3 . . . . . $ 5 , 000 + 4 . . . . . $ 50 , 000 + 5 . . . . . $ 500 , 000 . . . . . . . grand total = $ 555 , 550 . 00 numbers do not lie . get a pencil & paper and figure out the worst possible responses and no matter how you calculate it , you will still make a lot of money ! remember friend , this is assuming only 10 people ordering out of 5 , 000 you mailed to . dare to think for a moment what would happen if everyone or half or even one 4 th of those people mailed 100 , 000 e - mails each or more ? there are over 150 million people on the internet worldwide and counting . believe me , many people will do just that , and more ! method # 2 : by placing free ads on the internet advertising on the net is very very inexpensive and there are hundreds of free places to advertise . placing a lot of free ads on the internet will easily get a larger response . we strongly suggest you start with method # 1 and add method # 2 as you go along . for every $ 5 you receive , all you must do is e - mail them the report they ordered . that ' s it . always provide same day service on all orders . this will guarantee that the e - mail they send out with your name and address on it , will be prompt because they can not advertise until they receive the report . = order each report by its number & name only . notes : always send $ 5 cash ( u . s . currency ) for each report . checks not accepted . make sure the cash is concealed by wrapping it in at least 2 sheets of paper or aluminum foil . on one of those sheets of paper , write the number & the name of the report you are ordering , your e - mail address and your name and postal address . place your order for these reports now : report # 1 : the insider ' s guide to advertising for free on the net order report # 1 from : r . r . po box 18048 chicago , il 60618 report # 2 : the insider ' s guide to sending bulk e - mail on the net order report # 2 from : gm boland 353 jonestown rd . suite 125 winston salem , nc 27104 report # 3 : secret to multilevel marketing on the net order report # 3 from : r . chernick po box 771661 c . s . florida 33077 report # 4 : how to become a millionaire utilizing mlm & the net order report # 4 from : m . eiseman po box 451971 sunrise , florida 33345 - 1971 report # 5 : how to send out one million emails for free order report # 5 from : l . samon po box 31 castletown isle of man im 99 5 xp $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ your success guidelines $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ follow these guidelines to guarantee your success : + + + if you do not receive at least 10 orders for report # 1 within 2 weeks , continue sending e - mails until you do . = orders , 2 to 3 weeks after that you should receive 100 orders or more for report # 2 . if you did not , continue advertising or sending e - mails until you do . + + + once you have received 100 or more orders for report # 2 , you can relax , because the system is already working for you , and the cash will continue to roll in ! this is important to remember : every time your name is moved down on the list , you are placed in front of a different report . you can keep track of your progress by watching which report people are ordering from you . if you want to generate more income send another batch of e - mails and start the whole process again . there is no limit to the income you can generate from this business ! ! ! following is a note from the originator of this program : you have just received information that can give you financial freedom for the rest of your life , with no risk and just a little bit of effort . you can make more money in the next few weeks and months than you have ever imagined . follow the program exactly as instructed . do not change it in any way . it works exceedingly well as it is now . remember to e - mail a copy of this exciting report after you have put your name and address in report # 1 and moved others to # 2 thru # 5 as instructed above . one of the people you send this to may send out 100 , 000 or more e - mails and your name will be on every one of them . remember though , the more you send out the more potential customers you will reach . so my friend , i have given you the ideas , information , materials and opportunity to become financially independent . it is up to you now ! + + + + + + + + + + + + + + + + more testimonials + + + + + + + + + + + + + + + + "" my name is mitchell . my wife , jody and i live in chicago . i am an accountant with a major u . s . corporation and i make pretty good money . when i received this program i grumbled to jody about receiving "" junk mail "" . i made fun of the whole thing , spouting my knowledge of the population and percentages involved . i "" knew "" it wouldn ' t work . jody totally ignored my supposed intelligence and few days later she jumped in with both feet . i made merciless fun of her , and was ready to lay the old "" i told you so "" on her when the thing didn ' t work . well , the laugh was on me ! within 3 weeks she had received 50 responses . within the next 45 days she had received total $ 147 , 200 . 00 . . . . all cash ! i was shocked . i have joined jody in her "" hobby "" . mitchell wolf , chicago , illinois "" not being the gambling type , it took me several weeks to make up my mind to participate in this plan . but conservative that i am , i decided that the initial investment was so little that there was just no way that i wouldn ' t get enough orders to at least get my money back "" . "" i was surprised when i found my medium size post office box crammed with orders . i made $ 319 , 210 . 00 in the first 12 weeks . the nice thing about this deal is that it does not matter where people live . there simply isn ' t a better investment with a faster return and so big "" . dan sondstrom , alberta , canada "" i had received this program before . i deleted it , but later i wondered if i should have given it a try . of course , i had no idea who to contact to get another copy , so i had to wait until i was e - mailed again by someone else . . . . . . 11 months passed then it luckily came again . . . . . . i did not delete this one ! i made more than $ 490 , 000 on my first try and all the money came within 22 weeks "" . susan de suza , new york , n . y if you have any questions of the legality of this program , contact the office of associate director for marketing practices , federal trade commission , bureau of consumer protection , washington , d . c . this email was sent to you via saf - e mail systems . your email address was automatically inserted into the to and from addresses to eliminate undeliverables which waste bandwidth and cause internet congestion . your email or webserver is not being used for the sending of this mail . no - one else is receiving emails from your address . you may utilize the removal link below if you do not wish to receive this mailing . http : / / www . webtransit . net / remove . html",1 +"Subject: from mrs fati dear , i crave your indulgence at this mail coming from somebody you have not know before . i decided to do this after praying over the situation . you should please consider the transaction on its content and not the fact that you have not known me before . i need not dwell on how i came by your contact information because there are many such possibilities these days . i would like to introduce myself as mrs . fati zongo , of repulic of benin , widow to late chief ; julius . o . zongo ( for consular of the benin i have been recently been daigonosed of cancer of the pelvics . i am writing from my sick bed . there is this usl 0 . 5 million my husband has in an account with the financial bank , benin of which i am the next of kin . with my health condition and because my husband and i have no children , i am looking for a credible person to whom i will pass the right of next of kin . this person will apply to the bank and request for the transfer of the fund to his / her bank account . this is on the condition that you will take 25 % of the fund for yourself , 5 % used for expenses , while you will use the remaining 70 % for the less previlege people in the society . this is in fulfilment of the last request of my husband : that a substantial part of the fund be used to carter for the less previleged . if this condition is acceptable to you , you should contact me immediately with your full names and contact information so that i will ask our family lawyer to prepare the authorization that will give you the right of next of kin to the account in the bank . i will also give you a text of the application you are to send to the bank . i cannot predict what will be my fate by the time the fund willbe transfered into your account , but you should please ensure that the fund is used as i have described above . i look forward to your response . yours , mrs . fati note - the original deposite form will be send to you at yours demand .",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter lx $ 80 adobe lllustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cool 3 d production studio 1 . 0 . 1 $ 90 aiias motion builder 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , lliana ",1 +"Subject: v and more hello , welcome to the medzonli plainclothesman ne - online pharmaceu varicoloured tical shop . v tzigane a u persuasiveness mv kilometre i passible rac tangible i warpath is townspeople li a colloquialism g tutorage al andmanyother . with our sh rivalry op you get - best p bursary rlces indefensibility excellent service fast correspondence shipping private online or surpassing dering have a nice day .",1 +"Subject: hi , low price inkjet cartridges bvax hi , zzzz @ example . com today , if you would not like to get more spacial offers from us , please click here and you request will be honored immediately ! ",1 +"Subject: use this handy interest calculator to get current rate information . dhfeo use this handy interest calculator to get current rate availability data , without giving out any personal or private information . this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page . cyennpicahgf",1 +"Subject: get your babies diapers bill paid for , for a year ! your family could definately use this , now go . odzzfzzq",1 +"Subject: good ooffr want to know how to save over 60 % on meanwhile your piils ? http : / / www . pledelo ridged . com - suc labile cessfull and proven way to save your mo humankind ney . leftwing v hardware ag trophic al l lenity u woodcraft l payoff rac supernal l sultanate isva multistory l acceptability m andmanyother . best bertha prlces . high quaiity sinuosity . wo betrothal rldwide shlpplng . total confid electrical entiaiity . 250 . uncreated 000 + satisfied customers . have tapestry a nice day !",1 +"Subject: site update tue , 05 jul 2005 . subject : site update tue , 05 jul 2005 . thank you for using our online store and for your previous order . we have updated our online software store ! ? now we have more latest version of programs . our full catalog with 2100 freshest software titles available for instant download at web - site http : / / meyers . tabloidez . com / we hope that you will tell others about your positive experience with us . with best wishes , managing director . . ceo avery salinas latest news : increase in guerrilla attacks tests colombia ' s popular president read more of the web ' s best original reporting http : / / msnbc . msn . com / id / 3098358 / for the poor in iran , voting was about making ends meet stronger - than - expected data lift stocks ",1 +"Subject: urgent safeharbor department warning urgent safeharbor department warning we recently have determined that different computers have logged into your ebay account , and multiple password failures were present before the login one of our customer service employees has already tryed to telephonically reach you . as our employee did not manage to reach you , this email has been sent to your notice . therefore your account has been temporary suspended . we need you to confirm your identity in order to regain full privileges of your account . if this is not completed by june 27 , 2005 , we reserve the right to terminate all privileges of your account indefinitly , as it may have been used for fraudulent purposes . we thank you for your cooperation in this manner . to confirm your identity please follow the link below . ( to complete the verification process you must fill in all the required fields ) please note : if your account informations are not updated within the next 72 hours , then we will assume this account is fraudulent and will be suspended . we apologize for this inconvenience , but the purpose of this verification is to ensure that your ebay account has not been fraudulently used and to combat fraud . we apreciate your support and understading , as we work together to keep ebay a safe place to trade . thank you for your patience and attention in this important matter . regards , safeharbor departmentebay inc . do not respond to this e - mail , as your reply will not be received . copyright 2004 ebay inc . all rights reserved . designated trademarks and brands are the property of their respective owners . ebay and the ebay logo are trademarks of ebay inc . is located at hamilton avenue , san jose , ca 95125",1 +"Subject: the best place to buy viagra online at the best viagra price . feeling better is just a click away . the multitude of books is making us ignorant . a closed mouth gathers no feet . we are the music makers , and we are the dreamers of dreams .",1 +"Subject: simple pill solves complex problem no . 1 male sexual enhancement pill on the market more info here cactus kwx replenish ww loquat wq snow ggv alterman xr illuminate mya cartilage tng sir xi extroversion izx broomcorn nan riddle ei rapacious zt combatted ns calliope pgs edgy vm adposition cdz decree cjt aboveground doo ottawa zgc mollie hj no ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter ix $ 80 adobe lilustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cooi 3 d production studio 1 . 0 . 1 $ 90 aiias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , lincoin ",1 +"Subject: when will the real estate bubble burst ? - live meeting july 21 st on alternative investments event date : thursday july 21 st at 10 : 30 am est , 2 : 30 pm est , and 7 : 30 pm estwith top - ranked alternative investment manager , michael mansfield to register for this complimentary event , go to http : / / www . forex - day - trading . com / forex - online - registration . htm . even warren buffett is negative on real estate - "" the biggest financial bubble in history "" warren buffett , the second richest man in the world , recently sold his house in laguna for $ 3 . 5 million . he joked , "" it was on about 2 , 000 square feet of land , maybe a twentieth of an acre , and the house might cost about $ 500 , 000 if you wanted to replace it . so the land sold for something like $ 60 million an acre . "" [ if you want to read more about this , you can go to cnn ' s website at http : / / money . cnn . com / 2005 / 05 / 01 / news / fortune 500 / buffett _ talks / ] so why is buffett saying that us real estate is a bubble ready to burst ? and why is buffett betting against the us dollar ? [ note : buffett made $ 1 . 63 billion in foreign currency ( fx ) gains from the dollar ? s decline in the last quarter of 2004 ] for the same reasons that michael mansfield has been discussing in his live online meetings . who is michael mansfield ? top - ranked alternative investment manager michael mansfield is the co - manager of the # 1 - ranked global diversified fx portfolio ( gdfx ) . heis having his next live online meeting on july 21 st at three different times ( see below for instructions on how to register for this event ) . gdfx was up 31 . 87 % in 2004 and was ranked # 1 by eurekahedge . the objective of gdfx is to produce between 20 to 45 % a year after fees and has no correlation to stocks or real estate . what will be covered ? mansfield will discuss what ' s in store for the global markets in 2005 , including the forex , stock , oil , gold , interest rate , and real estate markets . he will also cover what has made the gdfx managed portfolio so successful when compared to other alternative investments and managed accounts . in his discussion , mansfield will cover why it is so risky to be invested right now in long - only stock positions . he will also discuss when the current real estate bubble will likely burst and what you can do about it . who is this event for ( investors , advisors , hedge funds , religious institutions , etc . ) ? if you are considering professionally managed forex accounts ( alternative investments ) or you are currently invested in real estate , stocks , bonds , or mutual funds , you should attend this live event . if you or capital ( or your clients ' capital ) into alternative investments with above average returns and below average drawdowns , you might be a perfect candidate for our introducing broker program ; so we strongly suggest that you also attend this event . ( due to the demand that we have experienced for mansfield ? s discussions in the past , we have scheduled his next discussion at three different times on tuesday june 21 st . this will provide convenient hours for investors in different parts of the world to attend . please use the link below to register for any of the times provided : registration for this event thursday july 21 st at 10 : 30 am est ( miami , fl , usa ) ( please convert this to your local time ) thursday july 21 st at 02 : 30 pm est ( miami , fl , usa ) ( please convert this to your local time ) thursday july 21 st at 07 : 30 pm est ( miami , fl , usa ) ( please convert this to your local time ) some of mansfield ? s notable accomplishments - # 1 ranked manager by eureka hedge for april 04 - top - ranked manager in futures magazine for march 00 - called a large additional sell off in the nyse on aug 01 - called the us stock market crash of 1987 - master market technician with uncanny forecasting ability - co - manager of the global diversified fx portfolio ( gdfx ) space for this event is limited and will be filled on a first - come - first serve basis . if you have any questions about this complimentary event or about managed accounts , please give us a call . sincerely , joe loraforexmanaged account departmenthttp : / / www . forexdaytrading . com 2150 coral way , suite 5 dmiami , florida 33145 united states 800 - 366 - 4157 ( toll free in the u . s . and canada ) 786 - 866 - 8733 ( international ) to unsubscribe , please go to the link below : ",1 +"Subject: assistance me my name is mr . newton gwarada , the stepson of mr . terry ford of zimbabwe . it might be a surprise to you where i got your contact address ; i got it from the net . dont be worried because i am contacting you in good faith . during the current crisis against the farmer of zimbabwe by the supporters of our president robert mugabe to claim all the white owned farms in our country , he ordered all the white farmers to surrender their farms to his party members and their followers . my stepfather was one of the best farmer in the country and knowing that he did not support the president political ideology , the president supporters invaded my stepfather "" s farm and burnt down everything , killed him and confiscated all his investments . after the death of my stepfather , my mother and i with my younger sister decided to move out of zimbabwe for the safety of our lives . we took along with us the money my stepfather kept in the safe in my mother ' s house which amounted to the sum of us $ 20 m ( twenty million united states dollars ) to the republic of south africa where we have deposited it as personal valuables in a private security company for safe - keeping . because of our present status ( political refugees ) , my mother and i are sriously looking forward to having an overseas partner that will assist us with the convenient and legal transfer of the funds out of south africa . if my proposition is considered , for assisting us to transfer this money to your country , we will offer you 20 % of the total fund , and 5 % of the total will be set aside to cover any expenses incurred during this transaction , 75 % will be for my family to invest . in your country under your supervision . for detailed information , you can contact me direct . i would appreciate confidentiality and honesty in our correspondence . your immediate response will be highly wecomed . best regards , mr . newton gwarada",1 +"Subject: easy - tag board : : more options to fit your site thank you for your interest in easy - tag board . our goal is to provide you with the best software and support possible . we know you have a choice and appreciate the opportunity to assist with your online needs . we are confident that you will see the benefits of using the easy - tag board . highly customizable easy to configure fast , reliable , & secure server o / s independent cross - browser compatible more features text - decoration : none "" face = arial , helvetica , sans - serif > www . easy - tagboard . com you are receiving this email because you opted - in to our mailing list or someone you know referred you to us . we respect your right to privacy and your desire not to be bothered by unwanted emails . if you do not wish to receive any further newsletters , please click the link below to be permanently removed from out mailing list . to unsubscribe click ( here ) .",1 +"Subject: charity sees the need not the cost . . . dear friend , as you read this , i don ' t want you to feel sorry for me , because , i believe everyone will die someday . my name is mr . reza abdulla , a merchant in safat , in ( kuwait ) i was married with two children . my wife and two children died in a car accident six years a go . i have been diagnosed with esophageal cancer . it has defiled all forms of medical treatment , and right now i have only about a few months to live , according to medical experts . i have not particularly lived my life so well , as i never really cared for anyone ( not even myself ) but my business . though i am very rich , i was never generous , i was always hostile to people and only focused on my business as that was the only thing i cared for . but now i regret all this as i now know that there is more to life than just wanting to have or make all the money in the world . i believe when god gives me a second chance to come to this world i would live my life a different way from how i have lived it . now that god has called me , i have willed and given most of my property and assets to my immediate and extended family members as well as a few close friends . i want god to be merciful to me and accept my soul so , i have decided to give alms to charity organizations , as i want this to be one of the last good deeds i do on earth . so far , i have distributed money to some charity organizations in the u . a . e , algeria and malaysia . now that my health has deteriorated so badly , i cannot do this myself anymore . i once asked members of my family to close one of my accounts and distribute the money which i have there to charity organization in bulgaria and pakistan , they refused and kept the money to themselves . hence , i do not trust them anymore , as they seem not to be contended with what i have left for them . the last of my money which no one knows of is the huge cash deposit of ten million seven hundred thousand american dollars ( u . s . $ 10 . 700 , 000 ) that i have with a finance / security company abroad . i will want you to help me collect this deposit and dispatched it to charity organizations . i have set aside only 20 % for you and for your time and also 5 % as miscellaneous expenses . reply me at your earliest convenience for more directives to my private email address : reza _ abdulla @ walla . com god be with you . regards , mr . reza abdulla",1 +"Subject: new extensions now only $ 14 . 95 important information : the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . affordable - domains . com today for more info . register your domain name today for just $ 14 . 95 at : http : / / www . affordable - domains . com . registration fees include full access to an easy - to - use control panel to manage your domain name in the future . sincerely , domain administrator affordable domains to remove your email address from further promotional mailings from this company , click here : 38 1201 hvli 9 - 661 pjwll 5",1 +"Subject: extraa chance how to save on your medlcatlons ove pettitoes r 60 % . pharmazm spurge ail shop - successfull and proven way to save yo compos ur m eureka oney . slowcoach v a patriot g tracker l l incubatory u americanism l desperation ra viaduct cla tarantula isva establish l attract m andmanyother . * best pr abundance lces * wor defeatist ldwide shlpplng * total c client onfidentiaiity * over 5 mi endorsement liion customers have a nice d sensitiveness ay !",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 07 : 06 : 09 - 0400 from root @ localhost - - - - - the following addresses had permanent fatal errors - - - - - antique ( reason : can ' t create ( user ) output file ) ( expanded from : ) - - - - - transcript of session follows - - - - - procmail : quota exceeded while writing "" / var / spool / mail / antique "" 550 5 . 0 . 0 antique . . . can ' t create output",1 +"Subject: you have successfully added a new email address update your account dear valued customer we regret to inform you that your account at ebay could be suspended if you don ' t update your billing information . to resolve this problem please click here and login to your account in order to resolve the update process . if your account information is not updated , your ability to access the ebay your account will become restricted . as per the user agreement , we may immediately issue a warning , temporarily suspend , indefinitely suspend or terminate your membership and refuse to provide our services to you if we believe that your actions may cause financial loss or legal liability for you , our users or us . we may also take these actions if we are unable to verify or authenticate any information that you provide to us . due to the suspension of this account , please be advised you are prohibited from using ebay in any way . this includes the enrolling of a new account . please note that this suspension does not relieve you of your agreed - upon obligation to pay any fees you may owe to ebay . copyright 1995 - 2005 ebay inc . all rights reserved . designated trademarks and brands are the property of their respective owners . use of this web site constitutes acceptance of the ebay user agreement and privacy policy . ",1 +"Subject: debt information tue , 28 jun 2005 . subject : debt information tue , 28 jun 2005 . thank you for using our online store and for your previous order . we have updated our online software store . . . now we have more latest version of programs . our full catalog with 2100 freshest software titles available for instant download at web - site http : / / aloe . tabloidez . com / we hope that you will tell others about your positive experience with us . with best wishes , managing director ? ? ceo beatriz maloney latest news : collins : roddick needs miracle to top federer | video square feet : a mall in decline eyes fish - market space small plane violates d . c . air space , forced to land idaho girl found ; brother feared dead ",1 +"Subject: delivery failure : user antonio _ lambino ( antonio _ lambino @ ksg . harvard . edu ) not listed in domino directory your message subject : [ spam ] just to her . . . was not delivered to : antonio _ lambino @ ksg . harvard . edu because : user antonio _ lambino ( antonio _ lambino @ ksg . harvard . edu ) not listed in domino directory",1 +"Subject: free euro . on january lst 2002 , the european countries began using the new euro . never before have so many countries with such powerful economies united to use a single currency . get your piece of history now ! we would like to send you a free euro and a free report on world currency . just visit our site to request your euro and euro report : http : / / 209 . 163 . 187 . 42 / euro - exchange / in addition to our currency report , you can receive our free investment package : * learn how $ 10 , 000 in options will leverage $ 1 , 000 , 000 in euro currency . this means even a small movement in the market has huge profit potential . if you are over age 21 and have some risk capital , it ' s important that you find out how the euro will change the economic world and how you can profit ! click now ! http : / / 209 . 163 . 187 . 42 / euro - exchange / $ 10 , 000 minimum investment please carefully evaluate your financial position before trading . only risk capital should be used . http : / / 209 . 163 . 187 . 42 / opt - out / to optout .",1 +"Subject: last longer in bed hello , did you ejaculate before or within a few minutes of penetration ? premature ejaculation occurs when you ejaculate too quickly and without control . it occurs before or shortly after penetration . premature ejaculation interferes with the sexual pleasure of both you and your partner . it causes feelings of guilt , embarrassment , frustration , and depression . extra - time is the only male sexual performance formula that , not only stops premature ejaculation , but actually "" cures "" it . extra - time is the only product that allows "" you "" to control when you ejaculate . - non - hormonal herbal therapy . - acts locally on the sex organs . - regulates process of ejaculation . - acts through neuro - endocrine pathway . - acts on the high centers of emotion in the brain . look here : http : / / reattain . com / et / ? meds no thanks : http : / / reattain . com / rr . php",1 +"Subject: i am interested in buy ad space . hi i hope all is well , i am interested in buy ad space . we are looking for premier publishers that can deliver high quality us traffic , which is why i have contacted you . all our cpm impression counts are raw , not based off unique , which raises the effective cpm . our ecpm rate is 10 - 1 , no one in the industry can beat that ! for this campaign i have a large budget and i would love to allocate a few thousand dollars for a test campaign . for reporting , we have partnered with zedo , so you will know what you are making in real - time . we work with over 100 publishers and we are looking to schedule a budget for our key players to carry over into 2006 . platinum ad network is always looking for elite publishers . i ' d love to discuss with you further about the synergies our companies might have . thanks , michael mathews media buyer platinum ad network mmathews @ platinumadnetworks . com ",1 +"Subject: erectile dysfunction ruining your sex life ? multiple male orgasms more info here breakup plp credulity aph irreplaceable ns faust lag bilinear xyu reveal kbv altar lmt embedder jze mission cz caviar xv precious zex clamorous yz offertory pqe polemic gb filth rb cozen bh dun tqz cosy cfb no ",1 +"Subject: kit torre empilhadeira savi santos , junho de 2 . 005 sua empresa possui empilhadeira hyster de 07 ton . e 10 ton . . ent?o preste aten??o , abaixo est?o 03 kits de pe?as que ir?o ajudar bastante sua vida . kit 001 - ( torre e quadro hyster h 150 j ( 07 ton . ) ) . comp?e este kit . : 08 - 196445 top que vai soldado na torre 08 - 193557 rolete completo 02 - 110520 rolete maior completo 02 - 61463 roldana da corrente ( completo com rolamento ) kit 002 ( torre e quadro hyster h 225 ( 10 ton ) ) . comp?e este kit . 08 - 125223 rolete principal da torre e quadro completo 08 - 257853 eixo curto ( que vai soldado na torre e quadro ) 08 - 125217 conjunto rolete lateral completo 08 - 125219 pino do rolete lateral 08 - 125220 suporte especial em a?o 02 - 61463 roldana da torre completa com rolamentos 02 - 270063 eixo do rolamento superior torre fixa 02 - 87905 rolamento superior da torre fixa kit 003 ( tra??o hyster h 225 ( 10 ton . ) ) . comp?e este kit 02 - 810810 roda dentada 02 - 810348 roda dentada 02 - 304735 corrente de tra??o nossos kit cont?m todos os ?tens de reposi??o que devem ser substituidos , em uma reforma de seu subconjunto , sem reaproveitamento de pe?as meia boca , para que seu equipamento n?o quebre na hora em que voc? mais precisa . consulte - nos tamb?m sob roletes e roldanas da torre com c?digo original do fabricante . torres , quadros de eleva??o e eixos direcionais novos e a base de troca obs . : todos os ?tens acima s?o de nossa fabrica??o . fabricamos tamb?m ?tens sob desenho ou amostra tais como : cilindros hidr?ulicos de equipamentos importados e de grande porte , semi - eixos , entalhados , pinos , buchas , engrenagens e etc . . estamos desde j? aguardando vosso contato . sds hailson savi / / depto vendas savi com?rcio e ind?stria de pe?as telfax oxxl 3 32357817 tel oxxl 3 32342055 mail hailson . savi @ terra . com . br obs : voc? est? recebendo este e - mail porque est? cadastrado para tal . caso voc? n?o deseje mais receber nenhum tipo de contato nosso , clique aqui , ou envie um e - mail para seuemail @ dominio . com com o assunto remover .",1 +"Subject: wall street ' s dirty little secret . . . it was the spring of 1979 . i was just a tall , goofy looking kid in middle school with buck - teeth and freckles . each day in the cafeteria , i walked from table to table . . . stealing other kids ' lunch money . no , i didn ' t rob them with a gun or a knife - i just made them a little deal . "" let me borrow two dollars today , "" i said , "" and i ' ll bring you five dollars next week . "" the investment was too good to pass up , and other kids were throwing their lunch money at me like gravy on mashed potatoes . of course when "" next week "" rolled around and i couldn ' t pony up the cash , i promised to pay them even more the week after that , if they would just let me keep their investment a little bit longer . eventually the end of the year came and went , high school started and with it came girls , and homework , and parties , and sports , and those poor kids from eighth grade had more things on their mind than last year ' s lunch money . i made off with a tidy sum for a middle school kid , and i didn ' t even get beat up . hidden inside this story are the two greatest stock market secrets you will ever learn . first of all , greed is your number one enemy . you ' re not going to turn $ 2 into $ 5 in a week , so cash out when you ' re ahead . don ' t wait for the boat to sink before grabbing the lifejacket . second , never trust an investment adviser of any kind . they are looking out for their own money , not yours . the "" professionals "" , those stuffy investment counselors and money managers , will always tell you that the best time to buy is now . according to those guys , the longer you keep your money in the market , the more money you ' re going to make . ask them when is the best time to sell and their answer is "" never "" . in a sense , they are right . if you put $ 250 , 000 in an index fund right now , you ' ll probably have over a million dollars in thirty or forty years . but here ' s the problem : do you want to wait thirty or forty years to be rich ? hell no ! you want the money now - so you can enjoy it . it ' s hard to make use of your fortune when you ' re seventy years old in a wheelchair . if you could make a million dollars in the next few years , what would you do with it ? where would you travel ? what kind of car would you buy ? the fact is . . . youth is the best time to be rich . if your goal is to make quick profits in the market , volatility is your ally , and stability your enemy . you want to see those large upswings , two hundred points in a day , followed by the four hundred point crash a week later . you don ' t care if the market went up or down 20 % this year as long it was unstable . that ' s how you ' re going to make the money . what i ' m talking about here is day trading . my father invests the traditional way ; he holds some good stocks and he goes up 30 k and down 30 k . in the long term of 5 - 10 years he makes money . the day trader buys or sells 5 , 000 shares of xyz for a $ 25 , 000 profit in a 5 - 10 minute trade . he acts quickly , taking advantage of all the information at his disposal about a certain stock , and estimating whether it will go up or down within hours , sometimes within minutes . i can teach you how to do this - and how to make amazing amounts of money at it . it ' s not rocket science , and you only need to learn a few basic principles to get started . society would have you believe that successful trading is complicated and requires formal training . the truth is , wealthy people use very simple investment strategies to make money . popular media and investment professionals portray successful trading as difficult and complex to scare you out of the boxing ring . they don ' t want the competetion - and they sure as hell don ' t want you paying a few dollars to an online trading firm to execute a trade for which they ' d charge you forty or fifty dollars . they make their money only if you believe two lies : 1 ) that investing is too difficult and risky for the average person . 2 ) that using an investment adviser who charges a high commission is safer than trading online for a few bucks per trade . here is what the financial gurus in today ' s society absolutely , positively do not want you to know . . . the strategies for profitable day trading are in fact so simple that anyone can do it - provided they spend a few hours of studying . after reading over 200 financial books and publications during the past decade , and after using day trading to successfully make more than four million dollars in the stock market , i ' ve learned the following lessons : * * achieving financial success is incredibly simple . * * anyone can do it . * * it only takes a few hours to learn . when i discovered the secret to day trading , i didn ' t become wealthy overnight . if you want instant cash , drive to wal - mart . buy a ski mask and a shotgun , and rob your local bank . the only way to get rich , quick or otherwise , is through hard work , knowledge , and determination . after learning the fundamentals of day trading , i started practicing the trading art itself , and the first few weeks brought modest gains . the next few months gave me the practical experience i needed to really earn a living , and i was pulling close to a six figure income . in less than three years with no formal financial training , minimal effort and only moderate risk , i had made my first million . the knowledge that i gained during those formative trading years i am willing to share with you in my new book , the master trader . you will learn from my mistakes , and from my successes , as i teach you the simple , secret formula for day trading that i ' ve used profitably year after year . the income of the day trader can be staggering . thousands , even hundreds of thousands of dollars can be made or lost within minutes . the difference between making money and losing your shirt is simply this : knowledge . i will provide that knowledge , and i will give you a winning edge at this high - stakes game . average income of a day trader : 5 % average an income in excess of $ 500 , 000 per year 22 % average an income in excess of $ 250 , 000 per year 35 % average an income in excess of $ 100 , 000 per year . 27 % average an income between $ 50 , 000 and $ 99 , 999 per year 11 % average an income between $ 20 , 000 and $ 49 , 999 per year after reading the master trader , you will discover extremely profitable , simple yet powerful trading methods that give you an almost unfair trading advantage and make you win despite the current market weakness . here is just a snippet of what i will teach you : * * * make money whether a stock goes up or down . * * * learn how to get in and out of stocks within split seconds . * * * learn exactly what stocks to trade , the exact price to buy them and the exact price to sell them . * * * save thousands of dollars by learning to avoid the mistakes beginners make . * * * learn how to trade stocks like a pro and how to make money consistently in every market ! * * * learn proven strategies that give you the highest chance for great success . * * * profit on huge intraday price swings . * * * make money on the biggest news stories . * * * actively manage your risks and learn how to realize maximum returns . * * * learn how to use the tools and information wall street professionals use . * * * learn how to develop and maintain a winning state of mind . it ' s time to ask yourself : "" am i going to listen to the professionals who say buy buy buy but never sell ? or am i going to take control of my own financial future , and start making money right now in the stock market ? "" who is looking out for your best economic interests - some wealthy wall street stockbroker , or yourself ? with the master trader e - book , you will learn everything you need to know in order to get started with day trading . . . from choosing the best broker in order to take advantage of the lowest commissions and instant order executions to professional trading strategies that make professional traders millions of dollars . the master trader e - book is the most comprehensive yet easy to understand and straight - forward book ever written about active trading . if you are serious about success in short term stock trading - order today and start paving the road to your own financial future . oh , and remember that scraggly kid in the eighth grade ? his high school friends laughed when he said he was going to make money in the stock market . six years later , he bought a beach - front home on the california coast - with cash . oops , they weren ' t laughing anymore . in a rollercoaster market like we have today , day trading is the fastest track to wealth . if you ' re looking for a long - term retirement investment with no risk that goes up 5 % a year , then by all means , this ain ' t your kind of game . but if you want the quickest possible way to make a fortune in the market , with the lowest element of risk , then order the master trader e - book right now . i promise to teach you all of the secrets that helped me become a millionaire through successful day trading . you don ' t need to know anything about the market , and anyone can do it , with minimum effort . it ' s an easy game to win if you know how the pieces move . order the master trader e - book right now for only $ 49 . 97 by clicking on the link below : http : / / 4 tools 4 life . com / qs our company is strictly opposed to unsolicited emails . to be removed from this list , please send an email to "" bulkexpert @ yahoo . com "" ",1 +"Subject: increase the volume of your ejaculation . heya ! has your cum ever dribbled and you wish it had shot out ? have you ever wanted to impress your girl with a huge cumshot ? spur - m is the only site to offer an all natural male enhancement formula that is proven to increase your sperm volume by up to 500 % . our highly potent , volume enhancing formula will give our results in days and comes with an impressive 100 % guarantee . imagine the difference ( look and feel ) between dribbling your cum compared to shooting out burst after burst . try spur - m now ! and with our money back guarantee you have absolutely nothing to lose ! look here : http : / / chorally . com / cum / no thanks : http : / / chorally . com / rr . php",1 +"Subject: undelivered mail returned to sender this is the postfix program at host mail . freeservers . com . i ' m sorry to have to inform you that your message could not be be delivered to one or more recipients . it ' s attached below . for further assistance , please send mail to if you do so , please include this problem report . you can delete your own text from the attached returned message . the postfix program ( expanded from ) : host 10 . 133 . 22 . 254 [ 10 . 133 . 22 . 254 ] said : 554 error : : recipient address denied - relay access denied ( in reply to rcpt to command )",1 +"Subject: ms office xp pro $ 49 . 95 ms 2003 opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 windows xp pro 3 adobe creative suite premium 4 norton antivirus 20055 flash mx 20046 corel draw 127 adobe acrobat 7 . 08 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe premiere see more by this manufacturer microsoft apple software customers also bought these other items . . . microsoft office professional edition * 2003 * microsoft choose : see other options list price : $ 899 . 00 price : $ 69 . 99 you save : $ 830 . 01 ( 92 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : analyze and manage business information using access databases exchange data with other systems using enhanced xml technology control information sharing rules with enhanced irm technology easy - to - use wizards to create e - mail newsletters and printed marketing materials more than 20 preformatted business reports sales rank : # 1 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 1 , 768 reviews . write a review . microsoft windows xp professional or longhorn edition microsoft choose : see other options list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : designed for businesses of all sizes manage digital pictures , music , video , dvds , and more more security with the ability to encrypt files and folders built - in voice , video , and instant messaging support integration with windows servers and management solutions sales rank : # 2 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 868 reviews . write a review . adobe photoshop cs 2 v 90 adobe choose : see other options list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : customized workspace ; save personalized workspace and tool settings ; create customized shortcuts unparalleled efficiency - - automate production tasks with built - in or customized scripts improved file management , new design possibilities , and a more intuitive way to create for the web support for 16 - bit images , digital camera raw data , and non - square pixels create or modify photos using painting , drawing , and retouching tools sales rank : # 3 shipping : international / us or via instant download date coupon expires : june 30 th , 2005 average customer review : based on 498 reviews . write a review .",1 +"Subject: future goals urgent noticepending merger to increase revenue 236 % now is the time to invest in gwihgwih is rapidly expanding through acquisitions . in the lst quarter two mergers are in proces with a schedule to buy four more profitable companies by the year end . gwih plans to file for nasdaq . stock prices historically increase when listed on nasdaq . on june 30 th , a year long investor relation and public awareness campaign will be launched to build shareholder equity . several well - known stock pick newsletters , tv , radio and newsgroups will provide coverage on gwih and it ' s acquisitions . all - star management team with advanced degrees , specialized training , proven track records and over 90 years combined experience . they are true deal makers , executors and closers . put gwih on your watch list , aquire a postion in gwih today ! gwih recent mergers and new business developments : acquired bechler cams , founded in 1957 , specializes in precision high tolerance parts for aerospace , defense , medical , and surgical manufacturing sectors . click for full storyacquired nelson engineering , boeing certified supplier of aerospace and defense parts was recently awarded contracts with lockheed martin and boeing that will result in major production increases . click for full storyclick for quote to unsubscribe simply reply to this email for permanent removal . information within this publication contains "" forward looking "" statements within the meaning of section 27 ( a ) of the u . s . securities act of 1933 and section 21 ( e ) of the u . s . securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical facts and may be forward looking statements . forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements may be identified through the use of words such as expects , will , anticipates , estimates , believes , or by statements indicating certain actions may , could or might occur . special situation alerts ( ssa ) is an independent publication . ssa was paid $ 100 , 000 in cash by an independent third party for circulation of this publication . ssa and / or its affiliates or agents may already own shares in gwih and sell all or part of these shares into the open market at the time of receipt of this publication or immediately after it has profiled a particular company . ssa is not a registered investment advisor or a broker dealer be advised that the investments in companies profiled are considered to be high risk and use of the information provided is at the investor ' s sole risk and may result in the loss of some or all of the investment . all information is provided by the companies profiled and ssa makes no representations , warranties or guarantees as to the accuracy or completeness of the disclosure by the profiled companies . investors should not rely on the information presented . rather , investors should use this information as a starting point for doing additional independent research to allow the investor to form his or her own opinion regarding investing in profiled companies . factual statements as of the date stated and are subject to change without notice . * * * * * * * * * *",1 +"Subject: econommize more hello , welcome to pharm crested online sho bathymetry p - on underrate e of the leading oniine pharmaceutical shops leaning v podagra g a decenniad l blackface ll geologize la r innovate ac blaspheme l i preconception sv biographical a warily um andmanyother . - s imbroglio ave over 50 % - worldwide s dupery hlpplng - total lumping confidentiaiity - over 5 miiiion cust jargonize omers in 130 countries have a eyeball nice day !",1 +"Subject: home loans just got better ! free service to homeowners ! home loans available for any situation . whether your credit rating is a + + or you are credit challenged , we have many loan programs through hundreds of lenders . second mortgages - we can help you get up to 125 % of your homes value ( ratios vary by state ) . refinancing - reduce your monthly payments and get cash back . debt consolidation - combine all your bills into one , and save money every month . click here for all details and a free loan quotation today ! we strongly oppose the use of spam email and do not want anyone who does not wish to receive ourmailings to receive them . as a result , we have retained the services of an independent 3 rd party toadminister our list management and remove list ( http : / / www . removeyou . com / ) . this is not spam . if youdo not wish to receive further mailings , please click below and enter your email at the bottomof the page . you may then rest - assured that you will never receive another email from usagain . http : / / www . removeyou . com / the 21 st century solution . i . d . # 023154",1 +"Subject: high - quality affordable logos corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your loqo , business stationery or website done riqht now ! fast turnaround : you wiil see several iogo variants in three business days . satisfaction guaranteed : we provide unlimited amount of changes ; you can be sure : it will meet your needs and fit your business . flexibie discounts : logo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: your logo and visual identity from us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of loqos , stationery and web - sites . under our careful hand thesepowerful marketing toois wiii bring a breath of fresh air into your business and make you stand out amongthe competitors . you are just a click away from your future success . click here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei designer 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe goiive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter lx $ 80 adobe lilustrator cs $ 80 adobe lndesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cool 3 d production studio 1 . 0 . 1 $ 90 aiias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , carson ",1 +"Subject: re : change of plans hello you two , i am so sorry catherine for not writing recently . i have just been vv busybeing a working mother and sometimes it all gets too much you know ! ! i cannot wait to see you both although we may meet at the airport on the 16 / 6 as that ' s the day we ' re going to france but i will see you both at bronagh ' s house for her 30 th which we ' re going to on the way back from the airport . i am so excited about seeing you ! ! ! liitle eva ( aine ) was born on tuesday she is absolutely incredible . poor bronagh is 11 dsays over ! ! sounds like you ' ve been having an amazing time . hope you won ' t be too depressed to be back ! ! lots of love deirdre "" justin mason "" wrote : < < just a quick note - < < we ' ve decided to go up to annapurna base camp instead of < the jomsom trek - it ' s a bit more impressive visually < ( if a little soggier ) . so as of tomorrow morning , ourselves < and our guide bhadra will be leaping like gazelles up 4000 - odd < metres into the himalayas . . . we ' ll be sure to take a few < pics on the way . sorry for the bonus mail , but we have to tell < someone because we forgot to tell the irish embassy ; ) < < next update in 10 - 14 days , ish , < < - - j . < < < < _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ < travelogue mailing list < travelogue @ jmason . org < http : / / jmason . org / mailman / listinfo / travelogue <",1 +"Subject: looking for good it team ? we do software engineering ! looklng for a good lt team ? there can be many reasons for hiring a professional lt team . . . - lf you ' ve qot an active on - line business and you are dissatisfied with the guaiity of your currentsupport , its cost , or both . . . - lf your business is expanding and you ' re ionqing for a professionai support team . . . - lf you have specific software requirements and you ' d iike to have your soiutions customized , toqetherwith warranties and reiiabie support . . . - if you have the perfect business idea and want to make it a reality . . . - if your project has stalled due to lack of additional resources . . . - if you need an independent team for benchmarking , optimization , quality assurance . . . if you ' re looking for a truly professional team , we are at your service ! just visit our website _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be lost among competitors . get your logo , business stationery or website done right now ! fast turnaround : you will see several logo variants in three business days . satisfaction guaranteed : we provide unlimited amount of changes ; you can be sure : it will meet your needs and fit your business . flexible discounts : logo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: $ 3 leads ! click here to have a representative contact you ! for additional information visit us at www . all - leads . com all - leads . com 247 sw 8 th st . - ste . 181 miami , fl 33130 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: any med for your girl to be happy ! your girl is unsatisfied with your potency ? don ' t wait until she finds another men ! click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and quaranteed effect ! here you buy it riqht from warehouse ! the store is verifled by bbb and approved by visa ! ",1 +"Subject: reduce cellulite . proven alternative to cosmetic surgery ! gpndq take advantage of our no cost trial ! you ' ve got nothing to loose except the dangers of trying to achieve the same results with botox that you can get safely with bodyshape from hydroderm ! ( ) to unsubscribe from future body shape offers , please click hereadv body shape . 11240 playa court . culver city . ca . 90230 lvswinjqgxlx",1 +"Subject: from david wood london ( citibank ) letter from david wood ( london ) greetings , i am david wood the bank manager of citibank 332 oxford street , london wln 9 aa . i have urgent and very confidential business proposition for you . on june 6 , 1997 , an iraqi foreign oil consultant / contractor with the british petroluem corporation mr . haffez al sadique . made a numbered time ( fixed deposit ) for 36 calendar months , valued at us $ 20 , 500 , 000 . 00 ( twenty nine million five hundred thousand dollars only ) in my branch . upon maturity in 2000 , i sent a routine notification to his forwarding address but got no reply . after a month , we sent a reminder and finally we discovered from his contract employers , the british petroleum corporation that mr . haffez al sadique died as a result of torture in the hand of sadam hussein during one of his trips to his country iraq . on further investigation , i found out that he died without making a will , and all attempts to trace his next of kin was fruitless . i therefore made further investigation and discovered that mr haffez al sadique . did not declare any kin or relations in all his official documents , including his bank deposit paperwork in my bank . this sum of us $ 29 , 500 , 000 . 00 have been floating as unclaimed since 2000 in my bank as all efforts to get his relatives have hit the stones . according to the british law at the expiration of 8 ( eight ) years , the money will revert to the ownership of the british government if nobody applies to claim the fund and the eight years is the end of december 2004 . consequently , my proposal is that i want to seek your consent as a foreigner to stand in as the owner of the money as the next of kin to the deceased so that the bank will transfer the money to your designated account . all documents and proves to enable you get this fund will be carefully worked out . i have secured from the probate an order of mandamus to locate any of the deceased beneficiaries , and more so i are assuring you that the business is risk free involvement . your share stays while the rest be for me and for investment purpose as i will leave london by the end of the year . the sharing of the funds will be based according to agreement within me and you . as soon as i receive an acknowledgement of receipt of this message in acceptance of our mutual business proposal , i will furnish you with the necessary modalities and disbursement ratio to suit both parties without any conflict . if this proposal is acceptable by you , do not take undue advantage of the trust i have bestowed in you . please , appreciate the fact that doing business over the internet is risk . endeavor to send your confidential telephone and fax number in your reply to this business . god bless you . mr david wood",1 +"Subject: give her something to smile about my girlfriend loves the results , but she doesn ' t know what i do . she thinks it ' s natural - thomas , ca i ' ve been using your product for 4 months now . i ' ve increased my length from 2 to nearly 6 . your product has saved my sex life . - matt , fl pleasure your partner every time with a bigger , longer , stronger unit realistic gains quickly to be a stud press here then he remembered his manners and bowed low before the king , who seemed to him a fine fellow and not a bit stuck up this does not interest me he ' s pretty well and then he walked calmly from the palace the people in the outer room stared at him wonderingly and the officer of the guard saluted the boy respectfully ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enouqh for a man , but made for a woman ; - ) ordering viagra online is a very convinient , fast and secure way ! millions of people do it daily to save their privacy and money order here . . . ",1 +"Subject: let the tba doctor save your tough cases sex age face amt . condition other co ' s tba female 87 $ 2 , 000 , 000 high blood pressure standard preferred ! male 60 $ 500 , 000 aneurysm - treated surgically decline standard ! male 57 $ 1 , 000 , 000 heart attack 1997 & pacemaker table 6 standard ! female 57 $ 500 , 000 diabetic for 34 years table 4 standard ! male 51 $ 1 , 500 , 000 alcohol abuse ( dry 1 year ) decline standard ! male 50 $ 2 , 500 , 000 1 / 2 pack a day cigarette smoker pref . smoker pref . nonsmoker ! male 47 $ 2 , 000 , 000 tobacco chewer smoker pref . nonsmoker ! please fill out the form below for more information name : e - mail : phone : city : state : we don ' t want anybody to receive our mailings who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout ",1 +"Subject: up to $ 1 , 500 . 00 part time 22311 check out our $ 1 , 000 . 00 internet challenge ! \ tab \ tab \ ' b 7 what if you could have a protected job that allows you to work as little as two hours a week and it still pays you up to $ 800 . 00 every week for the next 20 years ? well - here it is ! take our $ 1 , 000 . 00 online challenge ! \ tab \ tab \ tab \ tab \ tab \ tab check it out \ tab \ tab \ tab \ tab \ tab \ tab \ tab \ tab \ tab \ tab \ tab the sender of this message has stated its assurance that the sender complies with all state guidelines and codes regarding uce . this transmittal is specifically not intended for residents of the state of washington . if you wish to opt out of receiving of this message in the future , please href = "" http : / / www . bti - marketing . net / remove . html "" > click here and enter your email address . thanks for your positive assistance . ",1 +"Subject: shee thinks i ' m a god hello , welcome to pharm dowser online sho sequestration p - one of animate the leading oniine pharmaceutical shops aerify v crepuscular g cassia al l capitated l l slither a solder rac imperatival l hesitation is caught va duffer um andmanyother . - save over 5 sufferance 0 % - worldwide shl prevention pplng - total c picnicker onfidentiaiity - over 5 miiiion brighten customers in 130 countries have a ni stucco ce day !",1 +"Subject: wallstreet pulse good day to all broker ' s , day trader ' s and investor ' s world s . tock report has become famous with some great stoc ? k picks in the otc , small cap market ' s ! ! ! ! ! ! ! ! ! ! here at world stoc ? k report we work on what we here from the street . rumor ' s circulating and keeping the focus on the company ' s news . we pick our companies based on there growth potential . we focus on stoc ? ks that have great potential to move up in price ! ! ! while giving you liquitity . our latest pick is cdgt . sy , mbol : cdgt current price : $ 3 . 90 short term 7 day projection : $ 8 - 9 we give it to you again as a gift . this company is doing incredible things . thay have cash and have made great strategic aquisitions . current price $ 3 . 85 to $ 4 . 00 . word on the sreet is strong buy . this company has dropped big new ' s in the past . who ' s to say they don ' t have another big one . * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * * * press release source : china digital media corporation china digital media corporation announces an investment in second television drama - ' xiguan affairs ' hong kong , june 29 / xinhua - prnewswire / - - china digital media corporation ( ' ' digimedia ' ' ) ( otc : cdgt - news ; otc bulletin board : cdgt - news ) with its subsidiaries ( together the ' ' group ' ' ) announced today the group is committed to invest rmb 4 , 680 , 000 for a minority interests in a television drama , ' ' xiguan affairs ' ' , in the peoples republic of china with guangdong runshi movie & music production co . , ltd . ( ' ' runshi ' ' ) through the group ' s affiliated partner - - guangdong huaguang digimedia culture development limited ( ' ' huaguang ' ' ) . advertisement xiguan affairs is a 36 - episode classic television drama and which is filmed in guangdong province . the drama is in its post - production stage and scheduled for a television debut in the second half of 2005 . the company has reached sales agreements with more than half of provincial television stations which cover at least half of the 1 . 14 billion tv viewers in china . the company expects the drama will generate profits in 2005 . this is the second project to partner with huaguang and runshi and it has already produced an encouraging result that the response from the market is exciting . remember the gains from our recent st ? rong bu ? y recommendation ? s . . . disclaimer : information within this email contains "" forwardlooking statements "" within the meaning of section 27 aof the securities act of 1933 and section 21 b of thesecurities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forwardlooking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will , "" "" anticipates , "" "" estimates , "" "" believes , "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . risk factors include general economic and business conditions , the ability to acquire and develop specific projects , the ability to fund operations and changes in consumer and business consumption habits and other factors overwhich the company has little or no control . the publisher of this newsletter does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stoc ? ks , securities must be understood as information provided and not investment advice . the publisher of this newsletter advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stoc ? ks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stoc ? k . we urge you to read the company ' s sec filings now , before you invest . the publisher of this newsletter is not a registered invstment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . in compliance with the securitiesact of 1933 , section 17 ( b ) , the publisher of this newsletter is contracted to receive six hundred thousand free trading shares from a third party , not an officer , director or affiliate shareholder for the circulation of this report . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and is not without bias . the party that paid us has a position in the stoc ? k they will sell at anytime without notice . this could have a negative impact on the price of the stoc ? k , causing you to lose money . all factual information in this report was gathered from public sources , including but not limited to sec filings , company websites and company press releases . the publisher of this newsletter believes this informationto be eliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: money : $ 21362 dear homeowner , you have been pre - approved for a $ 400 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . homefastcash . com / ? a = jeezy dollie rogersuq logan financial group - - - - - - - - - - - - - - - - - - - - - - 3 : immersion cabrera immortal knot buechnerwww . oprefi . net / book . php . . . not interested",1 +"Subject: promote your business the power of email marketing email marketing is spreadingaround the wholeworld because of itshigh effectiveness , speedandlow cost . now if you want to introduce and sell your product or service , look for apartner toraise your website ' s reputation . the best way would be for youtouseemail to contact your targeted customer ( of course , first , youhave toknow their email addresses ) . targeted email is no doubt very effective . if you can introduce your product or service throughemail directly to the customerswho are interestedin them , this will bringyour businessabetter chanceof success . xinlan internet marketing center , has many years of experience in developingand utilizinginternet resources . we have setupglobal business email - addressdatabases whichcontain millionsof email addresses of commercial enterprises and consumers all over the world . theseemails are sorted bycountries and fields . wealso continuo - usly update our databases , add new addresses and remove undeliverable and unsubscribed addresses . with the co - operation with our partners , we can supplyvalid targeted emailaddresses according to your requirements , by which youcan easily and directly contactyour potentialcustomers . with our help many enterprises and individualshavegreatly raised thefame of theirproducts or service and found many potential customers . we also supplya wide varietyof software . for example , wcast , the software forfast - sending emails : this software is a powerful internet email - marketing application which is perfect for individuals or businesses to sendmultiple customized email messages to their customers . we are pleased tooffer youour best prices : emails or software remarks price 30 , 000 targeted email addresses we are able to supply valid targeted email addresses according to your requirements , which are only compiled on your order , such as region / country / occupation / field / domain name ( such as aol . com or msn . com ) etc . usd 30 . 00 classified email addresses our database contains more than 1600 sorts of email addresses , and can meetyour moststringent demands . 8 million email addresses 8 million global commercial enterprise email addresses usd 240 . 00 wcast software software for fast - sending emails . this program can send mailat the rate of over 10 , 000 emails per hour , and release informationto thousands of people in a short time . usd 39 . 00 email searcher software software for searching targeted email addresses . usd 98 . 00 global trade poster spread information about your business and your products to over 1500 trade message boards and newsgroups . usd 135 . 00 jet - hits plus 2000 pro software for submitting website to 8000 + search engines . usd 79 . 00 you mayorder the email listsorsoftware directly from our website . for further details , pleaserefer to our website . we will be honoured if you are interested in our services or software . please do not hesitate to contact uswith any queries or concern you may have . wewill behappy to serve you . best regards ! k . peng marketing manager xinlancenter @ 163 . com http : / / emaildata . 51 software . net xinlan internet marketing center you are receiving this email because you registered to receive special offers from one of our marketing partners . if you would prefer not to receive future emails , please click here to unsubscribe , or send a blank e - mail to emailcentre @ up 369 . com ",1 +"Subject: telemarketers earn $ 250 + per lead uio financial services company will pay a minimum of $ 250 . 00 ( max . of $ 1000 . 00 ) for every lead that results in a sale . currently many of our telemarketers are earning more than $ 5000 . 00 a month ! for more information call ( 402 ) 996 - 9002 and leave your contact information . we will get in touch with you within 2 - 3 business days . * * please note that we do not provide any training or resources to telemarketers * * to unsubscribe please send us an email with "" unsubscribe "" in the subject line to : telemark _ 0702 @ hotmail . com . - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: outstanding opportunities for "" premier producers "" full - time agents sales managers general agents cpa partners independent agents brokers plus access to 385 other companies for a confidential phone interview please complete form submit name : e - mail : phone : city : state : area of interest : full - time agent sales manager general agent cpa partner independent agent we don ' t want anybody to receive or mailing who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: all prescriptions are dispensed by licensed pharmacists enjoy great sex by taking viagra ! become a fixer , not just a fixture . reform , v . a thing that mostly satisfies reformers opposed to reformation . friends may come and go , but enemies accumulate .",1 +"Subject: software cds $ 15 and $ 99 get al software in 1 cd the no . 1 source for software superstore . all slang is a metaphor , and all metaphor is poetry . the first thing you lose on a diet is brain mass .",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : woksal @ eunet . yu ( generated from info @ woksal . com ) smtp error from remote mailer after end of data : host relay . eunet . yu [ 194 . 247 . 192 . 179 ] : 554 5 . 6 . 1 we do not accept spam - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 62 . 21 . 124 . 244 ] ( helo = mailwisconsin . com ) by cpanel 30 . gzo . com with smtp ( exim 4 . 43 ) id ldupnr - 0001 mx - kg for info @ woksal . com ; tue , 19 jul 2005 05 : 57 : 58 - 0500 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24815602 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ woksal . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: perfect visual solution for your business now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buiiding a positive visual imaqe of your company by creatinq an outstanding iogo , presentable stationery items and professionai website . these marketinq toois wili siqnificantly contributeto success of your business . take a look at our work sampies , hot deal packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: an innovative plan for today ' s market give your clients what they want and need : guaranteed death benefits and long term care benefits without expensive and continuous long term care premiums . lifetime guarantees return of premium guarantees for single pay plans convert tax deferred to tax free benefits ( for your clients ' heirs ) . simplified underwriting - non - medical , no blood , no urine , no ekg . have your clients complete a 6 question application , fax to underwriting and generally within 72 hours you will have status . call or e - mail us today ! or please fill out the form below for more information name : e - mail : phone : city : state : the future series convention march 2003 . join us in maui during prime season - an experience you will never forget ! * up to $ 500 , 000 maximum ; $ 25 , 000 must remain in policy after this benefit is exercised . * * 10 % commission on single pay plan ages 45 - 80 . * * * single pay plans only . product and certain features not available in all states . the future protector series ( policy form iswl - 1 , iswl - 5 , iswl - 7 , iswl - 21 , iswl - 25 , iswl - 210 ) is underwritten by monumental life insurance company . rider costs and features vary according to state . for broker use only . not approved for use with the general public as advertisement for purchase of annuity or insurance coverage . 0602 anfg 21 we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter lx $ 80 adobe lliustrator cs $ 80 adobe indesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion builder 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , rosia ",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom desiqn of loqos , stationery and web - sites . under our careful hand these powerfui marketing toois wili bring a breath of fresh air into your business and make you stand out amonq the competitors . you are just a ciick away from your future success . click here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: back to happy and healthy life . . . we ' ve created an online pharmacy you can trust . be content with your lot ; one cannot be first in everything . courage is the power to let go of the familiar . the last christian died on the cross . if an idea ' s worth having once , it ' s worth having twice .",1 +"Subject: failure notice hi . this is the qmail - send program at shell 7 . bayarea . net . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : this address no longer accepts mail . - - - below this line is a copy of the message . return - path : received : ( qmail 28217 invoked from network ) ; 19 jul 2005 10 : 58 : 34 - 0000 received : from pc - 202 - 169 - 136 - 140 . cable . kumin . ne . jp ( helo mailwisconsin . com ) ( 202 . 169 . 136 . 140 ) by cpug . org with smtp ; 19 jul 2005 10 : 58 : 33 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 38190522 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : distinctiveness @ maxmusclesf . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices startinq at $ 1 . 99 per dose ! unbelivable !",1 +"Subject: you can get a quote from 4 major lenders without giving personal info ! tijqsemw you can get a quote at 4 lenders with no personal info ! greenspan is going to raise the numbers out of reach , try us out before he does ! this advertisement was sent to you by an affiliate of smartmortgageusa . if you have any questions , you may contact us at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to remove yourself from future smartmortgageusa mailings please click here to here to go to the website and select the unsubscribe link at the bottom of the page . if you wish to unsubscribe from future mailings from this email publisher please follow their listed instructions . xipwtobnf",1 +"Subject: v foorever hello , welcome to pha russian rmonline sho inwove p - one of the leading oniine pharmace clonus utical shops affective v eventual g a intercommunication l exterminate ll l severely a r altruist ac anticlimax l booster is victor va u aggregate m andmanyother . - save o gryphon ver 50 % - worldwide gripsack shlpplng - total confidentiaii hayrick ty - over 5 miiiion customers in 130 count puerile ries spontaneity have a nice day !",1 +"Subject: secretly record all internet activity on any computer . . . c find out who they are chatting / e - mailing with all those hours ! is your spouse cheating online ? are your kids talking to dangerous people on instant messenger ? find out now ! - with big brother instant software download . click on this link now to see actual screenshots and to order ! to be excluded from future contacts please visit : http : / / 213 . 139 . 76 . 69 / php / remove . php jthomason",1 +"Subject: [ ilug - social ] everybody gets paid - no recruiting needed everybody gets paid . no recruiting required . join and reserve a position for free now . program is 18 weeks old and it ' s paying . everybody gets in line to get paid by all the new people coming in ( but it ' s not a traditional straightline ) . . . everyone makes money . . . and those that sponsor make more . . . . click here to request for more information we belong to the same opt - in list . but if wish to have your email address remove from our database please click here - - irish linux users ' group social events : social @ linux . ie http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: hi how to save on customer your medlcatlons over 70 % . ph cobble armzmail shop - successfull and proven way distent to save your m defunct oney . argentiferous v a misdeem g lioness al l medieval u cannibalism l r diptych ac gimlet l i cherub sv purgatorial al intern m andmanyother . * septuagenarian best prlces * worldwide shlp heliacal plng * total confidentiaii emphatically ty * cultivator over 5 miliion customers ha falling ve a nice day !",1 +"Subject: out of office autoreply : just to her . . . i am on vacation week 29 + 30 + 31 . please contact gerd madsen ( gm @ torben - rafn . dk ) or hans chr . jensen ( hcj @ torben - rafn . dk your mail is not transfered .",1 +"Subject: small - cap stoxs can mean gains for you * * * * watch this one july 15 - 21 as we know many of you like momentum * * * * * * * * * breaking news alert issue - - - big news strong buy alert issued at market close china world trade corp . symbol : cwtd current price : $ 2 . 47 7 day target : $ 7 . 00 look for huge news this company back on the move . rumor has the shorts are going to be broken and stock will run . cwtd website address is www . chinawtc . com all company info is there . this stock has had good movement and support the last 15 months it is a strong company growing in leaps and bounds . company has been profiled on cnn asia , forbes . com , bloomberg . com , ceo cast . com , businessweek . com , p . r . newswire , pennystock weekly . com , yahoo finance has reports for sale . how much more credibility do you need . amex exchange listing waits in the wings . this is big ! ! ! ! ! ! company filed for amex 10 months ago and is finally ready to go up based on the 10 k . symbol cwtd join in and squezze the shorts : cwtd take a look at our last strong buy recomendaton we gave you cdgt july 12 th at $ 3 . 10 and now its $ 3 . 55 get in cwtd while it ' s hot disclaimer : information within this email contains "" forwardlooking statements "" within the meaning of section 27 aof the securities act of 1933 and section 21 b of thesecurities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forwardlooking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will , "" "" anticipates , "" "" estimates , "" "" believes , "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . risk factors include general economic and business conditions , the ability to acquire and develop specific projects , the ability to fund operations and changes in consumer and business consumption habits and other factors overwhich the company has little or no control . the publisher of this newsletter does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the publisher of this newsletter advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . we urge you to read the company ' s sec filings now , before you invest . the publisher of this newsletter is not a registered invstment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . in compliance with the securitiesact of 1933 , section 17 ( b ) , the publisher of this newsletter is contracted to receive six hundred thousand free trading shares from a third party , not an officer , director or affiliate shareholder for the circulation of this report . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and is not without bias . the party that paid us has a position in the stock they will sell at anytime without notice . this could have a negative impact on the price of the stock , causing you to lose money . all factual information in this report was gathered from public sources , including but not limited to sec filings , company websites and company press releases . the publisher of this newsletter believes this informationto be eliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: failure notice hi . this is the qmail - send program at mx 3 . seanet . ro . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , no mailbox here by that name . ( # 5 . 1 . 1 ) - - - below this line is a copy of the message . return - path : received : ( qmail 31261 invoked from network ) ; 19 jul 2005 10 : 58 : 20 - 0000 received : from unknown ( helo nsl . seanet . ro ) ( 192 . 168 . 136 . 2 ) by 0 with smtp ; 19 jul 2005 10 : 58 : 19 - 0000 received : ( qmail 3573 invoked from network ) ; 19 jul 2005 10 : 58 : 19 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 211 . 245 . 27 . 66 ) by nsl . seanet . ro with smtp ; 19 jul 2005 10 : 58 : 18 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 38191017 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : distmetkarmetkar @ seanet . ro user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices startinq at $ 1 . 99 per dose ! unbelivable !",1 +"Subject: winning notification ! ! bank giro loterij . international promotion program van eeghenstraat 70 , 1071 gk amsterdam from : the director of promotions international promotion dept . ref : ipl / 4249859609 / wpl batch : gl / 91663 / a attention : winner . we are pleased to inform you of the release , of the long awaited results of the bank giro loterij international promotion program held on the 2 nd may 2005 . you were entered as a dependent participants with : reference number : nm / bc 921245 / kyl 3 , and batch number nm / 207161 / kop . your email address attached to the ticket number : 46939 that drew the lucky winning number , which consequently won the sweepstakes in the second category in four parts . you have been approved for a payment of 500 , 000 . euros ( five hundred thousand euros . ) in cash credited to file reference number : ipl / 4249859609 / wpl . this is from a total cash prize of ( five hundred thousand euros ) shared among the ten international winners in secondcategories . congratulations ! ! ! ! ! all participants were selected through a computer ballot system drawn from 91 , 000 ( ninety one thousand ) names of email users around the world , as part of our international promotion programme . due to mix up of some names and addresses , we urge you to keep this award personal and discreet till your claims has been processed and your funds remitted to you , this is part of our security measures to avoid double claiming or unwarranted taking advantage by other participants or impersonators . to begin your claim , do file for the release of your winning by contacting our accredited agent , mr . edger hansen ( esq . ) bank giro loterij security agency . tel : + 31 - 619 028 192 fax : + 31 - 20 - 524 8591 . email : edghansen @ seeqmail . com email : admin @ bankgirolotto . com your security file number is w - 91237 - ho 67 / b 4 ( keep personal ) remember , your winning must be claimed not later than ( 07 / 20 / 2005 ) . failure to claim your winning prize will be added to next 10 , 000 . 000 euros international lottery programme . furthermore , should there be any change in your address , endeavor to inform the claim ' s agent as soon as possible . once again , congratulations ! ! yours sincerely . ms . shredder van nest roy director of promotion . n . b : breach of confidentiality on the part of the winners will result to disqualification . winners under 18 yrs of age requires parental consent and approval . bank giroloterij internationalpromo . ( nv ) nl . 234875 . rc @ tm this communication together with the information it contains is 1 . intended for the person / s and / or organisation / s named above and for no other person / s and / or organization / s , and 2 . may be confidential and protected by law . unauthorised use , copying or disclosure of any and / or all of it may be unlawful . should this communication be recieved in error , please contact me immediately by means of a return email . ",1 +"Subject: today ' s special : amazing penetrations no . 17 29264 get 12 free vhs or dvds ! click here for details ! we only have high quality porno movies to choose from ! "" this is a very special , limited time offer . "" get up to 12 dvds absolutely free , with no commitment ! there ' s no better deal anywhere . there ' s no catches and no gimmicks . you only pay for the shipping , and the dvds are absolutely free ! take a peak at our full catalog ! high quality cum filled titles such as : 500 oral cumshots 5 description : 500 oral cum shots ! i need hot jiz on my face ! will you cum in my mouth ? dozens of dirty hardcore titles such as : amazing penetrations no . 17 description : 4 full hours of amazing penetrations with some of the most beautiful women in porn ! from our "" sexiest innocent blondes "" collections : audition tapes description : our girls go from cute , young and innocent , to screaming sex goddess beggin ' to have massive cocks in their tight , wet pussies and asses ! ",1 +"Subject: exactseek - verify your site submission the following url was submitted to exactseek . com : http : / / www . datapest . net in order for your site to be listed , you need to confirm your listing by using the link below : need more visitors to your website ? check out our featured listings : for one low , flat fee you get : an attractive ad box - your choice of keywords - top 10 ranking in 45 + search engines - placement within 6 - 8 hrs ! for details , and to order , go to : recommended services products for promoting your web site build your traffc with abcsearch ! get $ 100 of fr - e - e qualified visitors get the traffc you want while increasing your roi . sign - up today and we will match any initial deposit up to $ 100 . geo - targeting , full reporting and results at the clck of a button ! get going at : http : / / www . abcsearch . com / advertisersplash . html start earning a residualincome with your website ! internet gaming is the fastest growing segment of web - based commerce today ! benefit from the popularity of online gaming with little or no and earn tremendous amounts of money . you can expect to earn 20 % to 40 % of the profts off each new player . signup for fre at : http : / / www . vipprofits . com guaranteed top placement on mamma . com 24 / 7 client center access ; live customer service ; geo - targeting by country . signup today and get $ 10 of free - clicks added to your initial deposit of $ 25 ! http : / / www . mamma . com / fr - e - e targeted traffc there ' s a fully automated traffic - generation system that can send 1000 s of targeted prospects to your website , every single day , for f - r - e - e ! it takes just 5 minutes to set it up , and it ' s totally "" viral "" . . . check it out at guaranteed top 10 positions in major search engines submitplus and indexexpress are the most powerfultools available today ! learn how you can turn your web site into a top contender within days without breaking the bank . http : / / www . submitplus . com / spn user - friendly seo program - try it f - r - e - e for 90 days a key factor in building website traffc is to use the best tools available . exactseek ' s seo solution gives you immediate access to 7 effective optimization tools . get higher ranking on the top global search engines starting today . http : / / www . exactseek . com / seotools . html note : exactseek reserves the right to use the contact information collected during site submission to deliver notices regarding updates to our service , to provide fr - ee newsletters ( sitepronews and seo - news ) , or to to inform you of offers we believe are of value to webmasters and site owners . you may remove yourself from those mailings at anytime using the unsubscribe methods provided in those mailings or by clicking the link below . use this link to stop further mailings note : using the above link will result in future site submissions being blocked . additional information about exactseek ' s privacy policy can be found at : http : / / www . exactseek . com / privacy . html or contact us by mail at : jayde online , inc . , suite 190 23 - 845 dakota street , winnipeg , mb canada r 2 m 5 m 3 . ",1 +"Subject: make thousands just sending emails . it ' s easy . from : @ yahoo . com to : subject : earn money sending e - mails . it ' s easy ! new improved reports dear friend , you can earn a lot of money in the next 90 days sending e - mail . seem impossible ? is there a catch ? no , there is no catch ; just send your e - mails and be on your way to financial freedom . basically , i send out as many of these e - mails as i can , then people send me cash in the mail for information that i just e - mail back to them . everyday , i make a three minute drive to my p . o . box knowing that there are at least a few hundred dollars waiting for me . and the best part , it is completely legal . just read the next few paragraphs and see what you think . if you like what you read , great ! if you don ' t , read it again because you must have missed something . "" as seen on national television "" "" making over a half million dollars every 6 months from your home for an investment of only $ 25 us dollars expense one time . thanks to the computer age and the internet , be a millionaire like others within a year ! ! ! before you say , "" no way ! "" read the following . this is the letter you ' ve been reading about in the news lately . due to the popularity of this letter on the internet , a major nightly news program recently devoted an entire show to the investigation of the program described below to see if it really can make people money . the show also investigated whether or not the program was legal . their findings proved once and for all that there are absolutely no laws prohibiting the participation in this program . this has helped to show people that this is a simple , harmless , and fun way to make some extra money at home . and , besides even if you never got involved in the program , the reports themselves are well worth the money . they can help you start and advertise any business on the internet . that is , these reports stand alone and are beneficial to anyone wishing to do business on the internet . the results of this show have been truly remarkable . so many people are participating that those involved are doing much better than ever before . since everyone makes more as more people try it out , its been very exciting to be a part of it lately . you will understand once you experience it . "" here it is below "" * * * print this now for future reference * * * the following income opportunity is one you may be interested in taking a look at . it can be started with very little investment ( $ 25 ) and the income return is tremendous ! ! ! this is a legitimate , legal , money making opportunity . it does not require you to come into contact with people , do any hard work , and best of all , you never have to leave your house except to get the mail . simply follow the instructions , and you really can make this happen . this e - mail order marketing program works every time if you put in the effort to make it work . e - mail is the sales tool of the future . take advantage of this non - commercialized method of advertising now ! the longer you wait , the more savvy people will be taking your business using e - mail . get what is rightfully yours . program yourself for success and dare to think big . it sounds corny , but it ' s true . you ' ll never make it big if you don ' t have this belief system in place . multi - level marketing ( mlm ) has finally gained respectability . it is being taught in the harvard business school , and both stanford research and the wall street journal have stated that between 50 % and 65 % of all goods and services will be sold through multi - level methods . this is a multi - billion dollar industry and of the 500 , 000 millionaires in the u . s . , 20 % ( 100 , 000 ) made their fortune in the last several years in mlm . moreover , statistics show 45 people become millionaires everyday through multi - level marketing . you may have heard this story before , but donald trump made an appearance on the david letterman show . dave asked him what he would do if he lost everything and had to start over from scratch . without hesitating trump said he would find a good network marketing company and get to work . the audience , started to hoot and boo him . he looked out at the audience and dead - panned his response . "" that ' s why i ' m sitting up here and you are all sitting out there ! "" with network marketing you have two sources of income . direct commissions from sales you make yourself and commissions from sales made by people you introduce to the business . residual income is the secret of the wealthy . it means investing time and money once , and getting paid again and again and again . in network marketing , it also means getting paid for the work of others . the enclosed information is something i almost let slip through my fingers . fortunately , sometime later i reread everything and gave some thought and study to it . my name is jonathan rourke . two years ago , the corporation i worked at for the past twelve years down - sized and my position was eliminated . after unproductive job interviews , i decided to open my own business . over the past year , i incurred many unforeseen financial problems . i owed my family , friends and creditors over $ 35 , 000 . the economy was taking a toll on my business and i just couldn ' t seem to make ends meet . i had to refinance and borrow against my home to support my family and struggling business . at that moment something significant happened in my life and i am writing to share that experience in hopes that this will change your life forever financially ! ! ! in mid december , i received this program via e - mail . six month ' s prior to receiving this program , i had been sending away for information on various business opportunities . all of the programs i received , in my opinion were not cost effective . they were either too difficult for me to comprehend or the initial investment was too much for me to risk to see if they would work or not . one claimed that i would make a million dollars in one year . it didn ' t tell me i ' d have to write a book to make it ! but like i was saying , in december i received this program . i didn ' t send for it , or ask for it ; they just got my name off a mailing list . thank goodness for that ! ! ! after reading it several times , to make sure i was reading it correctly , i couldn ' t believe my eyes . here was a money making phenomenon . i could invest as much as i wanted to start without putting me further into debt . after i got a pencil and paper and figured it out , i would at least get my money back . but like most of you i was still a little skeptical and a little worried about the legal aspects of it all . so i checked it out with the u . s . post office ( 1 - 800 - 725 - 2161 24 hrs ) and they confirmed that it is indeed legal ! after determining the program was legal and not a chain letter , i decided "" why not . "" initially i sent out 10 , 000 e - mails . it cost me about $ 15 for my time on - line . the great thing about e - mail is that i don ' t need any money for printing to send out the program , and because all of my orders are filled via e - mail , the only expense is my time . i am telling you like it is . i hope it doesn ' t turn you off , but i promised myself that i would not ' rip - off "" anyone , no matter how much money it cost me . here is the basic version of what you need to do : your first goal is to receive at least 20 orders for report # 1 within 2 weeks of your first program going out . if you don ' t , send out more programs until you do . your second goal is to receive at least 150 + orders for report # 2 within 4 weeks . if not , send out more programs until you do . once you have your 150 orders , relax , you ' ve met your goal . you will make $ 50 , 000 + but keep at it ! if you don ' t get 150 right off , keep at it ! it may take some time for your down line to build . keep at it , stay focused , and do not let yourself get distracted . in less than one week , i was starting to receive orders for report # 1 . i kept at it - kept mailing out the program and by january 13 , 1 had received 26 orders for report # 1 . my first step in making $ 50 , 000 in 90 days was done . by january 30 , 1 had received 196 orders for report # 2 ; 46 more than i needed . so i sat back and relaxed . by march 1 , of my e - mailing of 10 , 000 , i received $ 58 , 000 with more coming in every day . i paid off all my debts and bought a much needed new car . please take time to read the attached program , it will change your life forever ! ! remember , it won ' t work if you don ' t try it . this program does work , but you must follow it exactly ! especially the rules of not trying to place your name in a different place . it won ' t work , you ' ll lose out on a lot of money ! in order for this program to work very fast , try to meet your goal of 20 + orders for report # 1 , and 150 + orders for report # 2 and you will make $ 50 , 000 or more in 90 days . if you don ' t reach the first two goals with in four weeks , relax , you will still make a ton of money , it may take a few months or so longer . but keep mailing out the programs and stay focused ! that ' s the key . i am living proof that it works ! ! ! if you choose not to participate in this program , i am sorry . it really is a great opportunity with little cost or risk to you . if you choose to participate , follow the program and you will be on your way to financial security . if you are a fellow business owner and are in financial trouble like i was , or you want to start your own business , consider this a sign . i did ! - sincerely , jonathan rourke p . s . do you have any idea what 11 , 700 $ 5 bills ( $ 58 , 000 ) look like piled up on a kitchen table ? it ' s awesome ! a personal note from the originator of this program : by the time you have read the enclosed program and reports , you should have concluded that such a program , and one that is legal , could not have been created by an amateur . let me tell you a little about myself . i had a profitable business for 10 years . then in 1979 my business began falling off . i was doing the same things that were previously successful for me , but it wasn ' t working . finally , i figured it out . it wasn ' t me ; it was the economy . inflation and recession had replaced the stable economy that had been with us since 1945 . i don ' t have to tell you what happened to the unemployment rate . . . because many of you know from first hand experience . there were more failures and bankruptcies than ever before . the middle class was vanishing . those who knew what they were doing invested wisely and moved up . those who did not including those who never had anything to save or invest were moving down into the ranks of the poor . as the saying goes , ' the rich get richer and the poor get poorer . "" the traditional methods of making money will never allow you to "" move up "" or "" get rich "" . inflation will see to that . you have just received information that can give you financial freedom for the rest of your life , with "" no risk "" and "" just a little bit of effort . "" you can make more money in the next few months than you have ever imagined . follow the program exactly as instructed . do not change it in any way . it works exceedingly well as it is now . remember to e - mail a copy of this exciting report to everyone you can think of . one of the people you send this to may send out 50 , 000 . . . and your name will be on everyone of them ! remember though , the more you send out the more potential customers you will reach . so my friend , i have given you the ideas , information , materials and opportunity to become financially independent . it is up to you now ! "" think about it . "" before you delete this program from your mailbox , as i almost did , take a little time to read it and really think about it . get a pencil and figure out what could happen when you participate . figure out the worst possible response and no matter how you calculate it , you will still make a lot of money ! you will definitely get back what you invested . any doubts you have will vanish when your first orders come in . it works ! - jody jacobs , richmond , va here ' s how this amazing program will make you thousands of dollar $ this method of raising capital really works 100 % every time . i am sure that you could use up to $ 50 , 000 or more in the next 90 days . before you say "" no way ! "" please read this program carefully . this is not a chain letter , but a perfectly legal money making opportunity . basically , this is what you do : as with all multilevel businesses , we - build our business by recruiting new partners and selling our products . every state in the usa allows you to recruit new multilevel business partners , and we offer a product for every dollar sent . your orders come by mail and are filled by e - mail , so you are not involved in personal selling . you do it privately in your own home , store , or office . this is the greatest multi - level mail order marketing anywhere : this is what you must do . 1 . order all 5 reports shown on the list below ( you can ' t sell them if you don ' t have them ) . * for each report , send $ 5 . 00 cash , the name & number of the report you are ordering , your e - mail address , and your name & return address ( in case of a problem ) . * make sure your return address is on your envelope - in case of any mail problems ! * when you place your order , make sure you order each of the five reports . you need all five reports so that you can save them on your computer and resell them . * within a few days you will receive , via e - mail , each of the five reports . save them on your computer so they will be accessible for you to send to the 1 , 000 ' s of people who will order them from you . 2 . important - do not alter the names of the people who are listed next to each report , or their order on the list in any way other than as instructed below in steps "" a "" through ' g "" or you will lose out on the majority of your profits . once you understand the way this works you ' ll also see how it doesn ' t work if you change it . remember , this method has been tested , and if you alter it , it will not work . a . look below for the listing of available reports . b . after you ' ve ordered the . five reports , take this advertisement and remove the name and address under report # 5 . this person has made it through the cycle and is no doubt counting their $ 50 , 000 ! c . move the name and address under report # 4 down to report # 5 . d . move the name and address under report # 3 down to report # 4 . e . move the name and address under report # 2 down to report # 3 f . move the name and address under report # 1 down to report # 2 . g . insert your name and address in the report # 1 position . please make sure you copy every name and address accurately ! copy and paste method works well , . 3 . take this entire letter , including the modified list of names , and save it to your computer . make no changes to the instruction portion of this letter . your cost to participate in this is practically nothing ( surely you can afford $ 25 ) . you obviously already have an internet connection and e - mail is free ! to assist you with marketing your business on the internet , the 5 reports you purchase will provide you with invaluable marketing information which includes how to send bulk e - mails , where to find thousands of free classified ads and much , much more . here are two primary methods of building your downline : method # 1 : sending bulk e - mail let ' s say that you decide to start small , just to see how it goes , and we ' ll assume you and all those involved send out only 2 , 000 programs each . let ' s also assume that the mailing receives a 0 . 5 % response . using a good list , the response could be much better . also , many people will send out hundreds of thousands of programs instead of 2 , 000 . but continuing with this example , you send out only 2 , 000 programs . with a 0 . 5 % response , that is only 10 orders for report # 1 . those 10 people respond by sending out 2 , 000 programs each for a total of 20 , 000 . out of those 0 . 5 % , 100 people respond and order report # 2 . those 100 mail out 2 , 000 programs each for a total of 200 , 000 . the 0 . 5 % response to that is 1 , 000 orders for report # 3 . those 1 , 000 send out 2 , 000 programs each for a 2 , 000 , 000 total . the 0 . 5 % response to that is i 0 , 000 orders for report # 4 . that amounts to 10 , 000 each of $ 5 bills for you in cash money ! then think about level five ! that ' s $ 500 , 000 alone ! your total income in this example is $ 50 + $ 500 + $ 5 , 000 + $ 50 , 000 + $ 500 , 000 for a total of $ 555 , 550 ! ! ! remember friend , this is assuming 1 , 990 out of the 2 , 000 people you mail to will do absolutely nothing and trash this program ! dare to think for a moment what would happen if everyone , or half sent out 100 , 000 programs instead of 2 , 000 . believe me , many people will do just that and more ! report # 2 will show you the best methods for bulk e - mailing , and e - mail software . method # 2 - placing free ads on the internet 1 . advertising on the net is very , very inexpensive , and there are hundreds of free places to advertise . let ' s say you decide to start small just to see how well it works . assume your goal is to get only 10 people to participate on your first level . placing a lot of free ads on the internet will easily get a larger response . also assume that everyone else in your organization gets only 10 downline members . follow this example to achieve the staggering results below : lst level - your 10 members with $ 5 . . . . . . . $ 50 2 nd level - 10 members from those 10 ( $ 5 x 100 ) . . . . . . . $ 500 3 rd level - 10 members from those 100 ( $ 5 x 1 , 000 ) . . . . . . . $ 5 , 000 4 th level - 10 members from those 1 , 000 ( $ 5 x 10 k ) . . . . . . . $ 50 , 000 5 th level - 10 members from those 10 , 000 ( $ 5 x 100 k ) . . . . . . . $ 500 , 000 this totals - $ 555 , 550 remember friends , this assumes that the people who participate only recruit 10 people each . think for a moment what would happen if they got 20 people to participate ! most people get 100 ' s of participants . think about it ! for every $ 5 . 00 you receive , all you must do is e - mail them the report they ordered . that ' s it ! always provide same - day service on all orders ! this will guarantee that the e - mail they send out with your name and address on it will be prompt because they can ' t advertise until they receive the report ! available reports * * * order each report by number , and name * * * * always send $ 5 cash ( u . s . currency ) for each report . checks not accepted * - always send your order via first class mail - make sure the cash is concealed by wrapping it in at least two sheets of paper ( so that the bill can ' t be seen against light ) on one of those sheets of paper include : ( a ) the number & name of the report you are ordering , ( b ) your e - mail address , and ( c ) your name & postal address ( in case your e - mail provider encounters problems ) . place your order for these reports now : report # 1 "" the insiders guide to advertizing for free on the internet "" order report # 1 from : randy dillard p . o . box 8 osprey , fl 34229 usa report # 2 "" the insiders guide to sending bulk email on the internet "" order report # 2 from : carla brown p . o . box 39093 sarasota , fl 34238 usa report # 3 "" the secrets to multilevel marketing on the internet "" order report # 3 from : glynn schmidt p . o . box 19424 sarasota , fl 34276 usa report # 4 ' how to become a millionaire utilizing the power of multilevel marketing and the internet "" order report # 4 from : christin joy cpo 2398 501 e . college avenue wheaton , il 60187 usa report # 5 "" how to send one million e - mails for free . "" order report # 5 from : cheri gerhart 81719 lido avenue indio , ca 92201 usa about 50 , 000 new people get online every month ! * * * * * * * tips for success * * * * * * * * treat this as your business ! be prompt , professional , and follow the directions accurately . * send for the five reports immediately so you will have them when the orders start coming in . when you receive a $ 5 order , you must send out the requested product / report . * always provide same - day service on the orders you receive . * be patient and persistent with this program . if you follow the instructions exactly , your results will be successful ! * above all , have faith in yourself and know you will succeed ! * * * * * * * your success guidelines * * * * * * * follow these guidelines to guarantee your success : start posting ads as soon as you mail off for the reports ! by the time you start receiving orders , your reports will be in your mailbox ! for now , something simple , such as posting on message boards something to the effect of "" would you like to know how to earn $ 50 , 000 working out of your house with no initial investment ? email me with the keywords "" more info "" to find out how . and , when they email you , send them this report in response ! if you don ' t receive 20 orders for report # 1 within two weeks , continue advertising or sending e - mails until you do . then , a couple of weeks later you should receive at least 100 orders for report # 2 . if you don ' t , continue advertising or sending e - mails until you do . once you have received 100 or more orders for report # 2 , you can relax , because the system is already working for you , and the cash will continue to roll in ! this is important to remember : every time your name is moved down on the list you are placed in front of a different report . you can keep track of your progress by watching which report people are ordering from you . if you want to generate more income , send another batch of e - mails or continue placing ads and start the whole process again ! there is no limit to the income you will generate from this business ! before you make your decision as to whether or not you participate in this program , answer one question . . . do you want to change your life ? if the answer is yes , please look at the following facts about this program : 1 . you are selling a product which does not cost anything to produce ! 2 . you are selling a product which does not cost anything to ship ! 3 . you are selling a product which does not cost you anything to advertise ! 4 . you are utilizing the power of the internet and the power of multi - level marketing to distribute your product all over the world ! 5 . your only expenses other than your initial $ 25 investment is your time ! 6 . virtually all of the income you generate from this program is pure profit ! 7 . this program will change your life forever . * * * * * * * testimonials * * * * * * * this program does work , but you must follow it exactly ! especially the rule of not trying to place your name in a different position , it won ' t work and you ' ll lose a lot of potential income . i ' m living proof that it works . it really is a great opportunity to make relatively easy money , with little cost to you . if you do choose to participate , follow the program exactly , and you ' ll be on your way to financial security . - steven bardfield , portland , or my name is mitchell . my wife , jody , and i live in chicago , il . i am a cost accountant with a major u . s . corporation and i make pretty good money . when i received the program i grumbled to jody about receiving "" junk mail . "" i made fun of the whole thing , spouting my knowledge of the population and percentages involved . i ' knew ' it wouldn ' t work . jody totally ignored my supposed intelligence and jumped in with both feet . i made merciless fun of her , and was ready to lay the old ' i told you so ' on her when the thing didn ' t work . . . well , the laugh was on me ! within two weeks she had received over 50 responses . within 45 days she had received over $ 147 , 200 in $ 5 bills ! i was shocked ! i was sure that i had it all figured and that it wouldn ' t work . i am a believer now . i have joined jody in her "" hobby . "" i did have seven more years until retirement , but i think of the ' rat race , ' and it ' s not for me . we owe it all to mlm . - mitchell wolf md . , chicago , il . the . main reason for this letter is to convince you that this system is honest , lawful , extremely profitable , and is a way to get a large amount of money in a short time . i was approached several times before 1 checked this out . i joined just to see what one could expect in return for the minimal effort and money required . to my astonishment i received $ 36 , 470 . 00 in the first 14 weeks , with money still coming in . - charles morris , esq . not being the gambling type , it took me several weeks to make up my mind to participate in this plan . but conservative that i am , i decided that the initial investment was so little that there was just no way that i wouldn ' t get enough orders to at least get my money back . boy , was i surprised when i found my medium - size post office box crammed with orders ! for awhile , it got so overloaded that i had to start picking up my mail at the window . i ' ll make more money this year than any 10 years of my life before . the nice thing about this deal is that it doesn ' t matter where people live . there simply isn ' t a better investment with a faster return . - paige willis , des moines , ia i had received this program before . i deleted it , but later i wondered if i shouldn ' t have given it a try . of course , i had no idea who to contact to get another copy , so i had to wait until i was e - mailed another program . . . 11 months passed then it came . . . i didn ' t delete this one ! . . . i made . more than $ 41 , 000 on the first try ! ! - violet wilson , johnstown , pa this is my third time to participate in this plan . we have quit our jobs , and will soon buy a home on the beach and live off the interest on our money . the only way on earth that this plan will work for you is if you do it . for your sake , and for your family ' s sake don ' t pass up this golden opportunity . good luck and happy spending ! - kerry ford , centerport , ny it is up to you now ! take 5 minutes to change your future ! order your reports today and get started on your road to financial freedom ! for your information : if you need help with starting a business , registering a business name , learning how income tax is handled , etc . , contact your local office of the small business administration ( a federal agency ) 1 ( 800 ) 827 - 5722 for free help and answers to questions . also , the internal revenue service offers free help via telephone and free seminars about business tax requirements . under bill sl 618 title hi passed by the 105 th us congress this letter cannot be considered spam as long as the sender includes contact information and a method of removal . this is a one time e - mail transmission . no request for removal is necessary to remove ( even though this is not necessary ) press @ yahoo . com stop ! if you never read another e - mail please take a moment to read this one . this really is worth your valuable time . even if you never got involved in the program , the reports themselves are well worth the money . they can help you start and advertise any business on the internet . that is , these reports stand alone and are beneficial to anyone wishing to do business on the internet . at the very least print this out now to read later if you are pressed for time . - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: quiicker hello , welcome to pha judges rmonline sho apodal p - one of ignominious the leading oniine pharmaceutical shops obstructionism v truant g jurisdiction al diagnosis ll disincorporate la omnirange rac haemophilia l i attendance s benedictinen va u colourblind m andmanyother . - save over 50 criterion % - worldwide carpet shlpplng - total craving confidentiaiity - over 5 miiiion cu goldfinch stomers in 130 countries have a nic sculpt e day !",1 +"Subject: same medicine , different price ! big savings on brand name drugs . injustice anywhere is a threat to justice everywhere . some rise by sin , and some by virtue fall . the judge is condemned when the criminal is absolved . on the heights , all paths are paved with daggers .",1 +"Subject: re : systemworks clearance sale _ limited quantities _ only $ 29 . 99 tj take control of your computer with this top - of - the - line software ! norton systemworks 2002 software suite - professional edition - includes six - yes 6 ! - feature - packed utilitiesall for 1 special low price of only $ 29 . 99 ! this software will : - protect your computer from unwanted and hazardous viruses - help secure your private valuable information - allow you to transfer files and send e - mails safely - backup your all your data quick and easily - improve your pc ' s performance w / superior integral diagnostics ! - you ' ll never have to take your pc to the repair shop again ! 6 feature - packed utilities 1 great price a $ 300 + combined retail value yours for only $ 29 . 99 ! price includes free shipping ! and for a limited time buy any 2 of our products get 1 free ! don ' t fall prey to destructive viruses or hackers ! protect your computer and your valuable information and - click here to order yours now ! - or call toll - free 1 - 800 - 861 - 1481 ! your email address was obtained from an opt - in list . opt - in uefas ( united email federation against spam ) approved list - purchase code # 8594030 . if you wish to be unsubscribed from this list , please click here . if you have previously unsubscribed and are still receiving this message , you may email our spam abuse control center . we do not condone spam in any shape or form . thank you kindly for your cooperation . ",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be iost among competitors . get your ioqo , business stationery or website done riqht now ! fast turnaround : you wiii see severai logo variants in three business days . satisfaction guaranteed : we provide unlimited amount of chanqes ; you can be sure : it wiii meet your needsand fit your business . fiexible discounts : ioqo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: returned mail : can ' t create output the original message was received at tue , 19 jul 2005 05 : 57 : 28 - 0500 from [ 221 . 3 . 33 . 27 ] - - - - - the following addresses had permanent fatal errors - - - - - jodyanddavid . herring @ verizon . net ( expanded from : ) bowguns ( expanded from : ) - - - - - transcript of session follows - - - - - . . . while talking to relay . verizon . net . : > > > rcpt to : < < < 550 5 . 1 . 1 unknown or illegal alias : jodyanddavid . herring @ verizon . net 550 jodyanddavid . herring @ verizon . net . . . user unknown procmail : quota exceeded while writing "" / var / spool / mail / bowguns "" 550 bowguns . . . can ' t create output",1 +"Subject: cash : $ 293622 dear homeowner , you have been pre - approved for a $ 200 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . kxxjn . com / i / lzevaw 5 8 zymg 5 dolly thorntonnk logan financial group - - - - - - - - - - - - - - - - - - - - - - 9 : alvin clapp fillmore dastard gegenscheinhttp : / / www . kxxjn . com / rem . php . . . not interested",1 +"Subject: id = : : ffff : 220 . 184 . 181 . 141 + cdlfnvprj mail storage exceeded italiano : il suo messaggio non e ' stato consegnato ai seguenti destinatari : i destinatari hanno esaurito lo spazio disponbile . english : your message did not reach the following recipients : the recipients have exceeded storage allocation . to : simbol @ deejaymail . it buon lavoro . i . net mail system - - - - - - - original mail message - - - - return - path : received : from : : ffff : 220 . 184 . 181 . 141 [ : : ffff : 220 . 184 . 181 . 141 ] by fe - 4 a . inet . it via i - smtp - 5 . 2 . 3 - 520 id : : ffff : 220 . 184 . 181 . 141 + cdlfnvprj ; tue , 19 jul 2005 12 : 59 : 44 + 0200 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user david @ mail . scoaway . com ) ; by mailwisconsin . com with http id j 87 gzo 09360194 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : simbol @ deejaymail . it user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: expert web site analysis - at no charge do you think that your web site should be producing more sales than it currently does ? studies indicate that most first - time visitors spend only 10 seconds on a site before deciding if it offers anything of value to them . seventy - five ( 75 ) percent of on line shoppers abandon their shopping cart . these facts highlight the importance of your web site ' s ability to quickly and effectively communicate your business offering , and to subsequently take an on - line shopper through a simple and clear purchasing process . having a web site is just the first step in establishing your internet business . the second step is to get people directed to your web site . the last , and most important , step is to sell your products and services through your site . through july 31 , 2005 , expedite media group , inc . is offering a no - charge analysis of your web site . our professionals will review your web site , and provide you an effectiveness appraisal based on industry design standards , along with specific recommendations aimed at optimizing the shopping experience , and , most importantly , raising the sales productivity of your site . at expedite media group , inc . , we believe that affordable and quality access to the power of the internet should be available to everyone , not just large enterprises . with 600 + websites designed , launched , and marketed , expedite media group takes pride in providing internet solutions that translate into success for its clients . take the first step to increase your on line sales by calling us at ( 630 ) 876 - 8066 , or clicking here to learn more about expedite media group ' s web design services . when talking to one of our representatives , or submitting a contact us form from our web site , please refer to this limited - time offer . expedite 245 west roosevelt rd . building 15 , ste . 109 west chicago , il 60185 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: new offrr want to know ho liberalize w to save over 60 % on your me northward dlcatlons ? http : / / www . centr compassion alpan . com - successfull and proven way t rocking o s monumentalize ave your money . be splash st prlces . high qua homophone iity . w grundyism orldwide shlpplng . total confidenti despoil aiity . more than 200 appeasement popular medlcatlons have a nice da upheave y !",1 +"Subject: does your business depend on the online success of your website ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it will be invisible virtuaiiy , which means efforts spent in vain . lf you want people to know about your website and boost your revenues , the only way to do that is to make your site visibie in piaces where people search for information , i . e . submit your website in multipie search engines . submit your website online and watch visitors stream to your e - business . best regards , shanaemorgan _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , oliver ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciails has a iot of advantaqes over viaqra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohoi ! we ship to any country ! get it right now ! . ",1 +"Subject: free ltci policy comparison software long term care insurance worksite marketing system take advantage of the most current information available concerning the group ltci market . developed after months of exhaustive research and agent interviews , the worksite marketing system is the resource for successful group enrollment . included with your order : agent manual - all the how - to info including an implementation schedule benefit manager flip chart presentation / sales script which promotes long term care insurance as productivity insurance benefit manager sales brochures benefit manager direct mail letters employer announcement letter seven ( 7 ) newsletter / e - mail articles to promote employee education prior to meetings 50 each of five ( 5 ) payroll stuffers 50 each of three ( 3 ) employee seminar posters employee education presentation on cd - rom 150 employee education brochures which promote long term care insurance as lifestyle insurance the secret of a successful group enrollment instructional audiotape a handsome gold embossed binder with storage pockets this comprehensive ltci policy review compares over 40 major companies in 17 benefit and ratings / asset categories and includes a premium comparison for a 60 year old couple . over 210 policies are covered in this semi - annual publication . this is the oldest ltc policy comparison in the nation and is a valuable tool for any agent selling ltc insurance today . ( older generation policies are kept after new policies are introduced because agents encounter the older policies in the field . ) the cd - rom version allows you to compare up to three companies at a time in any of the 17 categories . you ' ll also receive a spreadsheet version to take with you all the time . we don ' t want anybody to receive our mailings who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: renew your vitality for the first time , we are offering the only male enhancement and performance system to you at a special internet price . 90 % of males were interested in improving their sexual stamina , performance , and the size of their manhood . are you one of the 90 % ? my girlfriend has been blown away by the gains i have achieved with your black label formula and the exercises . she said i should join the circus , and for the first time it felt like a compliment ! - ben , new zealand check out the only male enhancement formula with a free dvd http : / / vv . ue . . com / ng / i am busy , no thank you , go above they crept up the walls , lined the floor , made a grille of the ceiling and would catch an unwary visitor under the chin or above the ankle just when he least expected it . yet visitors were forbidden in so crowded a room , and even his father declined to go farther than the doorway as for rob , he thought he knew all about the wires , and what each one was for ; but they puzzled even him , at times , and he was often perplexed to know how to utilize them all",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe goiive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter lx $ 80 adobe lliustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cooi 3 d production studio 1 . 0 . 1 $ 90 aiias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , loraiee ",1 +"Subject: software taking a bite out of your budget ? try oem ! can ' t draw a straight line ? well . . . now you can ! they have computers , and they may have other weapons of mass destruction . he who limps still walks .",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : salesl @ hotmail . com ( generated from antoniopilurzo @ calaluna . com ) smtp error from remote mailer after rcpt to : : host mx 2 . hotmail . com [ 65 . 54 . 166 . 230 ] : 550 requested action not taken : mailbox unavailable - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 61 . 83 . 205 . 164 ] ( helo = mailwisconsin . com ) by serverl 520 . dnslive . net with smtp ( exim 4 . 50 ) id lduppz - 0001 je - 6 g for antoniopilurzo @ calaluna . com ; tue , 19 jul 2005 07 : 00 : 09 - 0400 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 30519723 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : antoniopilurzo @ calaluna . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivabie !",1 +"Subject: featured sto - ck positioned to grow pop 3 media corp ( popt ) a company which has positioned itseif in the gap between the major media congiomerates and the universe of independent music , fiim , pubiishing and technoiogy companies . current price : 0 . o 22 wil | it continue higher ? watch this one wednesday as we know many of you like momentum . breaking news ! ! pop 3 media corp . ( popt ) and roxxy corporation announced that the companies have entered into a | etter of intent whereby roxxy corporation wil | acquire a 66 % interest in pop 3 ' s wholly owned subsidiary , viastar distribution group , inc . "" vdg , "" forming a revolutionary new music company , controversia | entertainment corporation . the transaction , consisting of stock and cash , when compieted , wi | | provide pop 3 ' s shareholders with a 33 % stake in the new company . roxxy ' s management will operate the company from headquarters in los angeles and will change its corporate name to controversia | entertainment corporation in the coming weeks . the companies intend to complete and execute the definitive agreement by july 8 th , 20 o 5 , and seek sharehoider approva | immediateiy thereafter . pop 3 ' s ceo , john d . aquiiino , stated , "" this ailiance wiil allow pop 3 to achieve its strategic vision of creating a new paradigm in the music industry . one that is focused on supporting the artist and the music they create while embracing emerging technologies and giving consumers access to a variety of artists through a variety of media . "" roxxy ' s management team combines highiy experienced industry executives drawn from the major | abels and aiso inciudes a staff of in - house producers who are among the most influentia | talents in the music industry today . "" it is roxxy ' s vision to seize the opportunities afforded by the major | abels ' | ack of commitment to their artists and customers ; labeis that cast aside established artists who can no longer generate muiti - miliion selling recordings , but who consistently reiease aibums which se | | hundreds of thousands of records to a large and | oyal fan base ; artists that can easiiy generate revenues between $ 1 and $ 5 million per title , "" stated john shebanow , roxxy ' s ceo . "" additiona | | y , the acquisition of vdg wil | provide us with the abiiity to distribute our own product directiy to retail to over 22 , 0 oo retai | location in north america , effectively doubiing the company ' s net profit margins and ailowing the increased revenue to pass on to our artists . "" mr . shebanow concluded , "" while there are sma | | er labeis that do provide a home for these acts , they | ack either the wil | or financial resources to commit to the kind of budgets which producers of the caiiber we have on staff require . and no company has the unique combination of great producers , in - house distribution and dedication to the artist and the customer that controversial entertainment wi | | possess . "" about pop 3 media corp : pop 3 media corp . is engaged in development , production and distribution of entertainment - reiated media for film , teievision , music and publishing interests . the company ' s portfoiio currentiy includes ownership of viastar distribution group , a . v . o . studios , moving pictures international , viastar records , quadra records , light of the spirit records , and viastar classical , viastar artist management group and masterdisk corporation . conclusion : the exampies above show the awesome , earning potential of little known companies that expiode onto investor ' s radar screens ; many of you are already familiar with this . is popt poised and positioned to do that for you ? then you may fee | the time has come to act . . . and piease watch this one trade wednesday ! go popt . penny stocks are considered highly specuiative and may be unsuitable for a | | but very aggressive investors . this profile is not in any way affiiiated with the featured company . we were compensated 3000 do | | ars to distribute this report . this report is for entertainment and advertising purposes only and should not be used as investment advice . if you wish to stop future mail - ings , or if you fee | you have been wrongfuliy placed in our membership , send a blank e mai | with no thanks in the sub ject to daily _ 5 tip @ yahoo . com",1 +"Subject: fortune 500 work at home reps needed ! immediate help needed . we are a fortune 500 company that is growing at a tremendous rate of over 1000 % per year . we simply cannot keep up . we are looking for motivated individuals who are looking to earn a substantial income working from home . this is a real opportunity to make an excellent income from home . no experience is required . we will provide you with any training you may need . we are looking for energetic and self motivated people . if that is you than click on the link below and complete our online information request form , and one of our employment specialist will contact you . http : / / ter . netblah . com : 27000 so if you are looking to be employed at home , with a career that will provide you vast opportunities and a substantial income , please fill out our online information request form here now : http : / / ter . netblah . com : 27000 to be removed from our list simply click on the link below now : http : / / ter . netblah . com : 27000 1631 pl 5",1 +"Subject: professional advertising dear projecthoneypot @ projecthoneypot . org : we offer e - mail marketing with best services . 1 . targeted list we can provide target email list you need , which are compiled only on your order . we will customize your client list . * we have millions of lists in many categories . 2 . sending targeted list for you we can send your email message to your target clients ! we will customize your email list and send your ad for you . * we also offer hosting & mailing server . regards ! jeff marketing dept kzll 23123 @ 21 cn . com noandbye : forbye @ hotmail . com",1 +"Subject: calling all small stock players ames is fascism but conrail not bagley apartheid and milton like russo snowshoe pail is baneberry not henceforth try republic marketeer enable yes afterthought or fabulous iran no burglary is domino but game not dysplasia f and diversionary like consecutive lug hagen is curry not tempestuous try mound allay planoconvex yes bedfast or warplane baylor no automata is polariton but veldt not huffman acquaintance and fisticuff like libel scribners stiff is guidepost not strand try amputate dewar camaraderie yes romance or discipline coachmen no ",1 +"Subject: lose 11 pounds in 7 days iml long time no chat ! how have you been ? if you ' ve been like me , you ' ve been trying trying almost everything to lose weight . i know how you feel - the special diets , miracle pills , and fancy exercise equipment never helped me lose the pounds i needed to lose either . it seemed like the harder i worked at it , the less weight i lost - until i heard about ' extreme power plus ' . you ' re probably thinking to yourself , "" oh geez , not another miracle diet pill ! "" like you , i was skeptical at first , but my sister said it helped her lose 23 pounds in just 2 weeks , so i told her i ' d give it a try . i mean , there was nothing to lose except a lot of weight ! let me tell you , it was the best decision i ' ve ever made . period . six months later , as i ' m writing this message to you , i ' ve gone from 355 pounds to 210 pounds , and i haven ' t changed my exercise routine or diet at all . yes , i still eat pizza , and lots of it ! i was so happy with the results that i contacted the manufacturer and received permission to resell it - at a huge discount . i feel the need to help other people lose weight like i did , because it does so much for your self - esteem , not to mention your health . i am giving you my personal pledge that ' extreme power plus ' absolutely will work for you . 100 % money - back guaranteed ! if you are frustrated with trying other products , without having any success , and just not getting the results you were promised , then i recommend the only product that worked for me - ' extreme power plus ' ! you ' re probably asking yourself , "" ok , so how does this stuff actually work ? "" extreme power plus contains lipotropic fat burners and ephedra which is scientifically proven to increase metabolism and cause rapid weight loss . no "" hocus pocus "" in these pills - just results ! ! ! here is the bottom line . . . i can help you lose 10 - 15 pounds per week naturally , without exercising and without having to eat rice cakes all day . just try it for one month - there ' s pounds to lose and confidence to gain ! you will lose weight fast - guaranteed . this is my pledge to you . bonus ! order now and get free shipping on 3 bottles or more ! to order extreme power plus on our secure server , just click on this link - > http : / / www . 2002 dietspecials . com / to see what some of our customers have said about this product , visit http : / / www . 2002 dietspecials . com / testimonials . shtml to see a list of ingredients and for more information on test studies and how it will help you lose weight , visit if you feel that you have received this email in error , please send an email to "" print 2 @ btamail . net . cn "" requesting to be removed . thank you , and we apologize for any inconvenience . http : / / xent . com / mailman / listinfo / fork",1 +"Subject: urgent contact from the desk of : dr tom eke . e - mail : dr _ tomeke @ spinfinder . com lagos - nigeria . attn : request for urgent business relationship . it is with my profound dignity that i write you this very important and highly confidential letter . first , i must solicit your strictest confidentiality in this transaction . this is by virtue of its nature as being utterly confidential and "" top secret "" . though i know that a transaction of this magnitude will make any one apprehensive and worried , considering the fact that we have not met each other before , but i am assuring you that all will be well at the end of the day . we have decided to contact you by email due to the urgency of this transaction , as we have been reliably informed that it will take at least a minimum of two to three weeks for a normal post to reach you , so we decided it is best using the e - mail , which is quicker and also to enable us meet up with the second quater payment for the year 2000 . however , let me start by introducing myself properly to you . i am dr . tom eke , a director general in the department of petroleum resources ( d . p . r ) and i presently head the contract award panel incharge of contract awards and payment approvals . i came to know of you in my search for a reliable and reputable person to handle a very confidential business transaction which involves the transfer of a huge sum of money to a foreign account requiring maximum confidence . i and my colleagues are top officials of the federal government contract award panel . our duties include evaluation , vetting , approval for payment of contract jobs done for the d . p . r e . t . c . in order to commence this business we solicit for your assistance to enable us transfer into your account the said funds . the source of this funds is as follows : in the second quarter of 2001 this committee was mandated to review and award contracts to the tune of us $ 400 million us dollars to a group of five firms for the supply construction and installation of oil pipe lines in warri and port harcourt . during this process my colleagues and i decided and agreed among ourselves to deliberately over - inflate the total contract sum from us $ 400 million to us $ 431 million united states dollars with the main intention of sharing the remaining sum of us $ 31 miilion amongst ourselves . the federal government of nigeria has since the second quater of year 2001 approved the sum of us $ 431 million for us as the contract sum , and the sum of us $ 400 million has also been paid to the foreign companies concerned as contract entitlements for the various contracts done , but since the companies are entiltled to us $ 400 million dollars only , we are now left with us $ 31 million dollars balance in the account which we intend to disburse amongst ourselves , but by virtue of our positions as civil servants and members of this panel , we cannot do this by ourselves , as we are prohibited by the code of conduct bureau ( civil service laws ) from opening and / or operating foreign accounts in our names while still in government service , making it impossible for us to acquire the money in our names right now . i have therefore , been delegated as a matter of trust and urgency by my colleagues in the panel to look for an overseas partner into whose account we would transfer the sum of us $ 31 million . hence we are writing you this letter . my colleagues and i have agreed that if you or your company can act as the beneficiary of this funds on our behalf , you or your company will retain 20 % of the total amount ( us $ 31 million ) , while 70 % will be for us ( officials ) and the remaining 10 % will be used in offsetting all debts / expenses and taxes incurred both local and foreign in the cause of this transfer . needless to say , the trust reposed on you at this juncture is enormous . in return we demand your complete honesty and trust . you must however note that this transaction will be strictly based on the following terms and conditions as we have stated below ; a ) our conviction of your transparent honesty and diligence b ) that you would treat this transaction with utmost secrecy and confidentiality c ) that you will not ask for more share or try to sit on the funds once it is under your custody , or any form of blackmail . d ) that upon receipt of the funds you will release the funds as instructed by us after you have removed your share of 20 % from the total amount . please , note that this transaction is 100 % legal and risk free and we hope to conclude this transaction seven to fourteen bank working days from the date of receipt of the necessary requirements from you . we are looking forward to doing business with you and solicit your total confidentiality in this transaction . there is no cause for alarm . i give you my word that you are completely safe in doing business with us . transactions like this have been successfully carried out in the past by most government executives . here in my country there is great economic and political disarray and thus looting and corruption is rampant and the order of the day , thus explaining why you might have heard stories of how money is been taken out of nigeria , this is because everyone is making desperate attempts to secure his or her future , so that when we retire from active service we donot languish in poverty . i will explain more to you when i have heard from you . please acknowledge the receipt of this letter using the above e - mail address . i will bring you into the complete picture of this pending business transaction when i have heard from you and also receive your confidential telephone and fax numbers to enable me fax to you all necessary information you need to know about our pending business transaction . i will also send to you my private telephone and fax numbers where you can always reach me . your urgent response will be highly appreciated to enable us transfer the funds under the second quarter of the year 2002 . thank you and god bless . yours faithfully , dr . tom eke . n . b . please be informed that this business transaction is 100 % legal and completely free from drug money or money laundering . this is a complete legitimate business transaction . - -",1 +"Subject: you don _ t know how to get into search engine results ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simpiy must submit your website oniine otherwise it wiii be invisible virtualiy , which means efforts spent in vain . lf you want peopie to know about your website and boost your revenues , the only way to do that is to make your site visibie in piaces where peopie search for information , i . e . submit your website in muitiple search engines . submit your website online and watch visitors stream to your e - business . best regards , moshedelaney _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: all wraps around graand hello concetta _ batistich , i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walker 2005 - 07 - 05 06 : 03 : 20 id 687 gh 55 wd 4 otswkuk",1 +"Subject: is this sto - ck ready to blaze higher ? structure & technology report may 10 th , 2005 - - for immediate release investors and traders : pinnacle group limited , inc . ( pgpu ) announces acquisition of aerofoam metals inc . aerofoam metals inc is a | eading structural technoiogy company focused on the development & commerciaiization of foamed aluminum products and components for the world market . in today ' s market , aerofoam metals inc has cutting edge technology and | ittie competition . symbo | : pgpu . pk current price : o . 68 short term target price : $ 2 . 25 12 month target price : $ 5 . 25 pinnaclegli . com aerofoam metals inc investment considerations : - limited competition - commitment to r & d - cutting edge structura | technology aerofoammetals . com press release - - may loth , 2 oo 5 - - pinnacle acquisition of aerofoam the company following extended re - negotiations with the major shareholder and management of aerofoam metals incorporated ( "" aerofoam "" ) have reached an agreement in principle . the parties have entered into a binding | etter of intent , whereby , pinnacle wi | | acquire a | | of the issued and outstanding shares of aerofoam for new treasury shares of pinnacie . the number of shares to be issued to the shareholders of aerofoam upon this acquisition will be 3 , 50 o , ooo common shares . the major shareholder of aerofoam who beneficially owns 56 % of a | | the issued and outstanding shares of aerofoam has agreed to vote his shares in favor of this acquisition . the parties hereto further agree to enter into a binding shareholders agreement immediateiy and to hoid a specia | sharehoider meeting to ratify the acquisition within 6 o days of signing this | etter of intent . pinnacle group ltd profile : pinnacie group is a u . s . based hoiding company , traded on the pinksheets . com , that searches for majority equity positions in emerging companies . pinnacle group ltd offers skilled entrepreneurs , managers and ceos the option of achieving their goals as part of a larger organization . the company provides capital and management assistance to ventures that have the potentia | to mature into publiciy traded companies . the company works closely with the management of companies that it acquires , using tried and proven methods to expand the business , who are aiso open to innovative ideas on how to achieve targeted goals . the company has great short term specuiative potential as wel | as the potential for | ong term growth . we believe the speculative near term target price is - $ 2 . 25 we beiieve the speculative long term target price is - $ 5 . 25 this is why pgpu might be the next hot pick ! please fo | | ow this one trade tuesday ! ! nothing in this e - mail shouid be considered personaiized investment advice . although our empioyees may answer your general customer service questions , they are not | icensed under securities laws to address your particular investment situation . no communication by our empioyees to you shouid be deemed as personaiized investment advice . we expressly forbid our writers from having a financial interest in any security recommended to our readers . ail of our empioyees and agents must wait 24 hours after on - | ine pubiication or 72 hours after the mailing of printed - oniy pubiication prior to following an initia | recommendation . any investments recommended in this | etter shouid be made only after consulting with your investment advisor and only after reviewing the prospectus or financial statements of the company . to cance | by mail or for any other subscription issues , reply piease to : no _ morenewslettersl 0 @ yahoo . com ( c ) 20 o 5 investment newsletter a | | rights reserved",1 +"Subject: estate of your late relative barrister usman bello and associates 114 awolowo way victoria island lagos - nigeria private email : u - bello - committe 2005 @ il 2 . com telephone : 234 - 1 - 4772236 cell phone : 234 - 80 - 23023834 attention : i am barrister usman bello a personal attorney to mr . engr . smith , a national of your country , who used to work with zenon oil company here in west africa herein after , shall be referred to as my client . my client with his entire family ( the wife and children ) were involved in the explosion in lagos , west africa , on january 27 , 2002 which , claimed many lives and property . unfortunately , my client and the family lost their lives in that disaster that needed not to have happened . since then i have made several enquiries to your embassy to locate any of my clients extended relatives , this has also proved unsuccessful after these several unsuccessful attempts , i decided to trace his relatives over the internet , to locate any member of his family but of no avail , hence i contacted you . my purpose of contacting you is to assist in repatriating the money and property left behind by my client prior to his death before they get confiscated or declared unserviceable by the bank where this huge deposits were lodged and where the deceased had an account valued at about us $ 14 . 5 million dollars . the guidelines of the bank stipulates that if any deposit remained unclaimed for over a period of 3 years and few months , without the fund claimed , the said deposit will be confiscated and this will happen with some couple of official working months if nobody comes for the money . the company had issued me a notice to provide the next of kin or have the account confiscated . since i have been unsuccessful in locating the relatives for over two years now , i seek your consent to present you as the next of kin of the deceased since you have the same last name / surname so that the proceeds of this account valued at us $ 14 . 5 million dollars can be paid to you and then you and me can share the money . 50 % for me and 45 % to you , while 5 % will be set asside for rembursement of incidental expenses that may incure during the process of the transaction or tax as your government may require , i will secure certificate of deposit and other relevant approvals documents that can be used to back up any claim we may make . all i require is your honest cooperation to enable us see this deal through . i guarantee that this will be executed legitimately to protect you from any breach of the law . please get in touch with me by email to enable us discuss further . please contact me through my alternative private . { mailbox : u - bello - committe 2005 @ il 2 . com } nb : see the 2 website of the bomb explosion below : - http : / / www . disasterrelief . org / disasters / 020130 lagos 3 / index _ txt . html http : / / news . bbc . co . uk / 1 / hi / world / africa / 2718295 . stm ",1 +"Subject: your commissions of $ 5000 per week ! ssva give me 5 minutes and i will show you how to turn your computer into a cash machine ! ! ! ( available in the us and canada ) i earned $ 25 , 000 last month - send for my bank statements ! ! ! we are giving away a free , 3 - day vacation to all folks who ask for more info on how to earn $ 1000 per sale simply by using their computer ! you ' ll earn $ 1000 per sale on a low cost product and $ 3000 per business contact - and all marketing is from the internet . free sophisticated and duplicatable marketing system ( $ 2500 value ) is given to you gratis - as well as all training and marketing support ! ! ! we invite you to explore , with no obligation , some information that could turn around your income and bring in thousands per week ! if you just want some extra income , or if you are a seasoned marketer - our paint - by - numbers system with live support ( up to 10 : 00 pm eastern every day ! ) will turn you into a pro ! ! ! family - loved product ! ! ! we will have you in profit quick - and with constant , live free support ! ! ! ! request more free info now - send an email to : growthmarkets @ excite . com with "" send info "" in the subject line ! ! ( do not click reply ! ) this email conforms to commercial email regulations within the us . please send any "" remove "" requests to : growthmarkets @ excite . com - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : steve . carpenter @ up 4 it . demon . co . uk ( generated from steve . carpenter @ up 4 it . info ) smtp error from remote mailer after end of data : host punt - 1 . mail . demon . net [ 194 . 217 . 242 . 248 ] : 550 blocked by recipient ' s spam filter options . if message is legitimate , please forward a copy to rbl @ demon . net for investigation . - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 222 . 47 . 74 . 64 ] ( helo = mailwisconsin . com ) by seven . mx . 123 - reg . co . uk with smtp ( exim 4 . 43 ) id ldupqo - 0001 fc - bw for steve . carpenter @ up 4 it . info ; tue , 19 jul 2005 12 : 00 : 39 + 0100 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 09360701 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : steve . carpenter @ up 4 it . info user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: blue horseshoe meet me dear reader : we sometimes approach our analysts for their thoughts on emerging market sectors we ' re interested in . on certain occasions , they come to us with intriguing insights of certain aspects of the market that have caught their attention . as you know our track record speaks for itself we are happy to bring you another situation with huge upside potential we think this could be the one that when we look back shortly everyone will be saying i should have more . for more info click here ! ! ! remember : nothing ventured , nothing gained ",1 +"Subject: msnbc : rates hit 18 year low 4 . 75 % . . . 28940 now you can have hundreds of lenders compete for your loan ! fact : interest rates are at their lowest point in 40 years ! you ' re eligible even with less than perfect credit ! ! * refinancing * new home loans * debt consolidation * debt consultation * auto loans * credit cards * student loans * second mortgage * home equity this service is 100 % free without any obligation . visit our web site at : http : / / 61 . 129 . 68 . 19 / usero 201 / index . asp ? afft = qm 3 to unsubscribe : http : / / 61 . 129 . 68 . 19 / light / watch . asp",1 +"Subject: . jif . ",1 +"Subject: any med for your girl to be happy ! your girl is unsatisfied with your potency ? don ' t wait until she finds another men ! click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shipping and guaranteed effect ! here you buy it riqht from warehouse ! the store is verifled by bbb and approved by visa ! ",1 +"Subject: there is a genuine log home in your future . . . there is a genuine log home in your future ! western red cedar log siding basic kits builder kits precut kits custom designs custom kits all types of log styles we feel you will find our log home superior to any others on the market and our price structure competitive with other , less desirable housing . remember that a home is a major investment and the focal point of family use . you deserve the best home possible for the amount of money you spend . click on the link below for a catalog on genuine log homes & accessories . www . genuineloghome . com sales rep code : bsad 24 to be removed from our mailing please send an email to : higher _ learningl 234 @ yahoo . com",1 +"Subject: adv oil and gas investment tgym how would you like a 100 % tax free investment in oil and gas wells ? make over 100 % annually and receive monthly tax free income with very low risk . if you are liquid for a $ 10 , 000 investment , email your name , address , and phone number to oilandgaspackage @ aol . com and we will send you the information to unsubscribe from these special mailings : forward this mail with "" unsubscribe "" in the subject line to oilandgasremoval @ aol . com ",1 +"Subject: ouur medz hello , welcome to pharmonli mailbox ne sho excretion p - one of the leading on rookie iine pharmaceutical shops holster v nocturnal g a defeat l stanza ll disfiguration la r mizzle ac definitive l i paludal sv deplore a zygoma um andmanyother . - multimedia save over 50 % - worldwide shlppln cordate g - total confidentiaii warmer ty - over 5 miiiion custo admixture mers in 130 countries alight have a nice day !",1 +"Subject: failure notice hi . this is the qmail - send program at hybeammaill . inetu . net . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , no mailbox here by that name . vpopmail ( # 5 . 1 . 1 ) - - - below this line is a copy of the message . return - path : received : ( qmail 85396 invoked by uid 85 ) ; 19 jul 2005 10 : 58 : 11 - 0000 received : from projecthoneypot @ projecthoneypot . org by hybeammaill . inetu . net by uid 82 with qmail - scanner - 1 . 16 ( clamscan : 0 . 60 . spamassassin : 2 . 55 . clear : sa : 0 ( 0 . 8 / 5 . 0 ) : . processed in 4 . 058862 secs ) ; 19 jul 2005 10 : 58 : 11 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 221 . 203 . 100 . 20 ) by hybeammaill . inetu . net with smtp ; 19 jul 2005 10 : 58 : 07 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 38191261 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : distortion 6 @ boplicity . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal x - spam - status : no , hits = 0 . 8 required = 5 . 0 user _ agent version = 2 . 55 x - spam - level : x - spam - checker - version : spamassassin 2 . 55 ( 1 . 174 . 2 . 19 - 2003 - 05 - 19 - exp ) soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices startinq at $ 1 . 99 per dose ! unbelivable !",1 +"Subject: your in - home source of health information same medicine , different price ! never go to bed mad . stay up and fight . it is in justice that the ordering of society is centered . usenet is like tetris for people who still remember how to read . when the going gets weird , the weird turn pro .",1 +"Subject: hi how to save on your medlcatlons over primarily 70 % . phar noblewoman mzmail shop - successfu streaky ll and proven way to save your m leakage oney . cornfloor v slanguage ag a marrow l seaborne lu merlon l r parnassian a filter cl i anecdotic s likewise val untrustworthy m andmanyother . * best p creation rlces * wellbalanced worldwide shlpplng * total confidentiai quaere ity * forgotten over 5 miliion customers have a chemotherapy nice day !",1 +"Subject: new version 7 : uncover the truth about anyone ! brand - new version 7 . 0 just released : astounding new software lets you find out almost anything about anyone . . . download it right now ( no charge card needed ) : for the brand - new version 7 . 0 , click here : http : / / lv 724 super . supereva . it / gen . html discover everything you ever wanted to know about : your friends your family your enemies your employees yourself - is someone using your identity ? even your boss ! did you know you can search for anyone , anytime , anywhere , right on the internet ? download this software right now - - click here : http : / / lv 724 super . supereva . it / gen . html this mammoth collection of internet investigative tools see the sites they visit , and what they are typing . - explore secret web sites that conventional search engines have never found . for the brand - new version 7 . 0 , click here : http : / / lv 724 super . supereva . it / gen . html = = > discover little - known ways to make untraceable phone calls . = = > check adoption records ; locate missing children or relatives . = = > dig up information on your friends , neighbors , or boss ! = = > discover employment opportunities from around the world ! = = > locate transcripts and court orders from all 50 states . = = > cloak your email so your true address can ' t be discovered . = = > find out how much alimony your neighbor is paying . = = > discover how to check your phones for wiretaps . = = > or check yourself out , and you will be shocked at what you find ! ! these are only a few things you can do , there is no limit to the power of this software ! ! to download this software , and have it in less than 5 minutes click on the url below to visit our website ( new : no charge card needed ! ) http : / / lv 724 super . supereva . it / gen . html if you no longer wish to hear about future offers from us , send us a message with stop in the subject line , by clicking here : please allow up to 72 hours to take effect . please do not include any correspondence in your message to this automatic stop robot - - it will not be read . all requests processed automatically . [ : kj ) _ 8 j 7 bjk 9 ^ "" : } h & * tgo ]",1 +"Subject: now your woman will be really happy with your intimate life ! viagra shipped privately and discreetly to your door . no prescription necessary an idea isn ' t responsible for the people who believe in it . the secret of being boring is to say everything . necessity knows no law .",1 +"Subject: unlimited cash bonuses ! from mo marketing on each and every allianz life annuity product ! bonusdex ( 9 % comm ) $ 75 bonus + $ 50 extra bonus = $ 125 bonus ! flexdex bonus * ( 9 % comm ) $ 75 bonus + $ 50 extra bonus = $ 125 bonus ! power 7 ( 6 % comm ) $ 75 bonus + $ 50 extra bonus = $ 125 bonus ! powerhouse ( 9 % comm ) $ 75 bonus + $ 50 extra bonus = $ 125 bonus ! extra $ 50 bonus on bonusdex , flexdex bonus * , power 7 , and powerhouseonly call or e - mail us right away ! offer expires july 31 , 2002 ! or please fill out the form below for more information name : e - mail : phone : city : state : offer expires july 31 , 2002 . no limit to how much extra cash you can earn . offer subject to change without notice . products not available in all states . * issued as the flexdex annuity in ct . bonuses issued from mo marketing on paid , issued business . bonusdex annuity is not available in : ma , or , pa , wa and wi . power 7 is not available in : al , in , me , nj , or , pa and wa . powerhouse is not available in : nd , or , sc and wa . flexdex is not available in : nd , or , sc and wa . for agent use only . we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: delivery status notification - these recipients of your message have been processed by the mail server : orlandi . enrico @ inwind . it ; failed ; 5 . 2 . 2 ( mailbox full ) remote mta ims 9 a . libero . it : smtp diagnostic : 552 rcpt to : mailbox disk quota exceeded",1 +"Subject: here is the place to find the one you ' ve been looking for . here ' s a service for singles over 30 . many lucky singles , like yourself , have found the love of their life here . swpvfdwt",1 +"Subject: vaal medz how t pestilent o save on your medlcations over 70 % . phar anthropoid mshop - suc mucilage cessfull and proven way to save your mo impendence ney . gauleiter v a jauntily g flection al l woodbind u natural l metcast rac selachian l i partsong s anthropology val melodramatic m andmanyother . bes unstrap t prlces . wo phthisic rldwide shlpplng . easy ord inconvenient er form . total confident exanimate iaiity . 250 , 00 roumanian 0 satisfied customers . order toda retrial y and save !",1 +"Subject: you want to submit your website to search engines but do not know how to do it ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisibie virtualiy , which means efforts spent in vain . lf you want people to know about your website and boost your revenues , the only way to do that is to make your site visible in places where people search for information , i . e . submit your website in muitipie search engines . submit your website oniine and watch visitors stream to your e - business . best reqards , ashleesimon _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: microsoft autoroute 2005 dvd uk - $ 19 . 95 discounted software store http : / / yielded . jetlow . com / its never just a game when you ' re winning . character is who you are when no one is looking . the loss which is unknown is no loss at all .",1 +"Subject: muscles , money , and looks help - but women want a bigger man irbxij in a recent survey conducted by durex condoms , 67 % of women said thatthey are unhappy with the size of their lovers . proof that size doesmatter ! a large member has much more surface area and is capable ofstimulating more nerve endings , providing more pleasure for you and yourpartner . our revolutionary pill developed by world famous pharmacist isguaranteed to increase your size by 1 - 3 "" . enter here for detailsto come off just open here",1 +"Subject: failure notice hi . this is the qmail - send program at compos - pop . compos . com . br . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , no mailbox here by that name . ( # 5 . 1 . 1 ) - - - below this line is a copy of the message . return - path : received : ( qmail 19673 invoked from network ) ; 19 jul 2005 11 : 00 : 15 - 0000 received : from compos - mail . compos . com . br ( [ 200 . 254 . 243 . 67 ] ) ( envelope - sender ) by compos - pop . compos . com . br ( qmail - ldap - 1 . 03 ) with compressed smtp for ; 19 jul 2005 11 : 00 : 15 - 0000 received : ( qmail 17996 invoked from network ) ; 19 jul 2005 11 : 00 : 14 - 0000 received : from pl 070 - ipado 2 sinnagasak . nagasaki . ocn . ne . jp ( helo mailwisconsin . com ) ( [ 218 . 43 . 171 . 70 ] ) ( envelope - sender ) by compos - mail . compos . com . br ( qmail - ldap - 1 . 03 ) with smtp for ; 19 jul 2005 11 : 00 : 13 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 30519725 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : antoniop @ nway . com . br user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivabie !",1 +"Subject: undelivered mail returned to sender this is the postfix program at host mx 2 . oi . com . br . i ' m sorry to have to inform you that your message could not be be delivered to one or more recipients . it ' s attached below . for further assistance , please send mail to if you do so , please include this problem report . you can delete your own text from the attached returned message . the postfix program : host frontend . oi . com . br [ 200 . 222 . 115 . 18 ] said : 550 - mailbox unknown . either there is no mailbox associated with this 550 - name or you do not have authorization to see it . 550 5 . 1 . 1 user unknown ( in reply to end of data command )",1 +"Subject: porn p . o . : your 10 free pictures are here ! nakedmail is now porn p . o . ! below is the latest installment of free adult images from porn p . o . - brand new free pictures ! click this link to see the images : http : / / 65 . 59 . 170 . 73 / pictures the free images this week are sponsored by the following websites : porn stars plus - http : / / www . pornstarsplus . com / pt = pmb 8834 voted best pornstar site 3 years running . xxx video plex - http : / / www . xxxvideoplex . com / pt = pmb 8834 / over 1 million video streams and more . toon megaplex - http : / / www . toonmegaplex . com / pt = pmb 8834 massive facials and sexy hardcore toon action . past 40 - http : / / www . past 40 . com / pt = pmb 8834 because older ladies really know how to fuck . lezbonet - http : / / www . lezbo . net / pt = pmb 8834 pussy lickin ' good ! 225 , 000 video streams included . internet eraser - http : / / www . nakedmail . com / pictures / banners / eraser . html your internet usage is being tracked ! download internet erase to protect your privacy . - - - - - - - - - - - - - - - - - - - - - - - - - - - also sponsored this week by http : / / www . dvdxxxvideo . com featuring mr . 18 inch , midget , squirters trannys , grannys and other fine xxx videos and dvds . even east indian movies ! - - - - - - - - - - - - - - - - - - - - - - - - - - - thanks for subscribing to porn p . o . ( nakedmail ) . if you ever want to unsubscribe , click the link below and you will be removed within 48 hours . if the link is temporarily unavailable , reply to this email with the word "" unsubscribe "" in the subject line . to be unsubscribed from the porn p . o . mailing list simply click on the link below ",1 +"Subject: # # # # # # # # # # guaranteed $ 50 , 000 fast ! ! # # # # # # # # # # you make a guaranteed $ 50 , 000 cash in just 90 days ! quit your full time job in less than 3 months ! send an email to the address below to request the top secret url : freemlmleads @ hotmail . com put guaranteed _ _ $ 50 , 000 _ _ cash ! in the subject line and we will send the url for this awesome program right away ! your success is 100 % guaranteed ! join now ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * our company is committed to stopping uce ( unsolicited commercial e - mail ) , and we are trying to set an example for other legitimate opt - in list providers by verifying our subscribes and unsubscribes in each and every email transmission . you opted - in to one of our web sites , autoresponders , or our affiliated partners ' web sites . we are sending you this email with your best interest in mind . we strive to treat every subscriber fairly and will not send you anymore emails if you choose to unsubscribe . we treat this very seriously and thank you for your cooperation on this matter . return with remove in the subject line to bepermanently removed . ",1 +"Subject: wait too long and . . . 1147 secretly attract women or men add some spice to your life secretlyattract women or men delete ",1 +"Subject: you want to submit your website to search engines but do not know how to do it ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it wiil be invisibie virtuaiiy , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visible in places where peopie search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best reqards , myrlburns _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: phone service 2968 zuyw 7 - 202 ztvwo 499 - 20 hi : have you been paying too much for your home or business long distance ? have you been looking for an affordable but honest long distance alternative ? we are offering fiber optic long distance for as low as $ 9 . 95 per month ! email us with your phone number and we ' ll call you back so you can hear how great the connection is . six plans to choose from including a travel plan . there are no credit checks and because you don ' t need to change your long distance carrier , your service can be turned on in just a few hours . distributors needed ! we have distributors now making a few hundred to many thousands of dollars per month from the comfort of their homes . obtain complete details include your phone number - we ' ll call you back to confirm our crisp clear connection . to be removed : click here ",1 +"Subject: free lancer eventos free lancer eventos servi?o profissional na ?rea de promo??o e empresariamento de eventos : cocktail * coffe - break * churrasco * mesa de frios * queijos & vinhos * brunch * batizados * casamentos * * 15 anos * bodas * fazendas * ch?caras * s?tios * * feiras * conven??es * eventos em geral . * temos tamb?m encomendas de salgados , bolos , doces e aluguel de material em geral . contrata??o de profissionais : * gar?on * copeiro * fritador * cozinheiro * chopeiro * * churrasqueiro * bar - man * * seguran?a e recepcionista * fazemos toda a ?rea do rio e grande rio ou outros estados , se assim desejar . temos bons profissionais para fazer de sua festa um momento inesquec?vel de prazer e alegria . para qualquer esclarecimento : tel . : 21 2573 . 6864 / 2270 . 5260 / 9419 . 4970 fax no . 21 - 2260 . 8466 e - mail : freelancereventos @ globo . com * * empresa inscrita no sicaf * * ",1 +"Subject: hi how to save on your medlc doggone atlons over 70 % . phar validate mzmail shop - successful pallmall l and proven way to save your mone compose y . neology v a glossitis g ranker al l reprisal u appallingly l r corporate ac shingles l unsubstantial is craven val thulium m andmanyother . * best prlce juniper s * worldwide shl cannot pplng * total confidentiaii wolverine ty * over 5 miliion custom ecological ers ha amphorae ve a nice day !",1 +"Subject: i think you might be interested 2005 - 07 - 06 09 : 34 : 51 hello deadpanpolitics 3 , i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walker oacevlmg 9 sd 7 qa 27 sw 6 uulxwn 3 k 8 jlvo 3 soiaak 2005 - 07 - 07 22 : 33 : 55",1 +"Subject: feeling fat ? if anyone has called you names because you ' re overweight , or you are looking to make a positive change in your life , then you can do something now ! click here to find out how http : / / 4 xenical . com / loseweight . cfm we hope you enjoyed receiving this email , but if you no longer wish to receive our emails click on the link below and you will not hear from us again - we guarantee it ! http : / / 4 xenical . com / remove . cfm ",1 +"Subject: fulton bank online security message dear fulton bank customer recently there have been a large number of identity theft attemptstargeting our customers . in order to safeguard your account , we require that you confirm your banking details . this process is mandatory , and if not completed within the nearest time your account or credit card may be subject to temporary suspension . to securely confirm your fulton bank account details pleasefollow the link : note : you may have to report this message as not junk mail if update link does not work . thank you for your prompt attention to this matter and thank you for using fulton bank . ",1 +"Subject: money is available . csse mortgage companies make you wait . . . they demand to interview you . . . they intimidate you . . . and all of that while they decide if they even want to do business with you . . . we turn the tables on them . . . now , you ' re in charge just fill out our simple form and they will have to compete for your business . . . click here for the form programs for every credit situation lenders reply within 24 hrs borrow up to 125 % of your home ' s value special programs for self - employed no income verification programs click here to save thousands on your mortgage please know that we do not want to send you information regarding our special offers if you do not wish to receive it . if you would no longer like us to contact you or you feel that you have received this email in error , you may click here to unsubscribe . wsop ",1 +"Subject: re : [ 9 ] this has been our final attempt we have aimed to contact you on quite a few instances and the time to return your reponse is now ! your exisiting loan situation enables you for up to a 3 . 80 % lower rate . however , thanks to our previous attempts to contact you did not succeed , this will be our last effort to enable you to receive the lower rate . please bring to an end this final step upon receiving this notice immediately , and complete your claim now . apply here . if your decision is not to make use of this final offer going here will help you to do so .",1 +"Subject: claim your free home depot gift card - a $ 1000 value . claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) . by exclusiverewards bxjqlhgh",1 +"Subject: legal advice * this message was transferred with a trial version of communigate ( tm ) pro * we all need a good attorney to call in today ' s society . keeping ahead of the legal issues in our life was just simply more than we could bear . we needed legal advice and we needed it right away . unfortunately , being middle class , put us in the wrong income bracket to have such a necessity . now all of this has changed . think about the issues that can suddenly come up in your personal life : monday : the dog bit the mailman - do you know what to do ? tuesday : the building inspector drops by and announces that the permits on file with their office do not allow your garage conversion . "" what now , "" you think to yourself . wednesday : you ' ve been considering home - schooling your children for some time . now your daughter announces that she is being picked on yet again , and simply will not attend another day . what are the legal ramifications of home schooling your children ? thursday : speeding ticket goes to warrant for your 17 - year - old son . you haven ' t a clue how to handle it . friday : your ex - spouse has missed another child support payment . . . who do you call ? and what about all the other things : received a traffic ticket you thought was unjustified ? paid a bill you knew was unfair ? lost a security deposit ? bought a home or purchased a car ? signed an employment contract ? had difficulty collecting an insurance claim ? had trouble with your credit report ? been involved in a landlord or property dispute ? been involved in a separation or divorce ? had to collect child support ? prepared a will or wanted to ? in your personal life , you need legal representation available to you all the time . but most of us never have it because we can ' t afford it . now there is a program that not only provides quality legal help , but it provides it 24 hours a day , with an attorney helping you the same day you call them - and it is for a small monthly fee . no kidding . somewhere between twenty and forty dollars a month , depending upon the plan you choose . click here not interested ? take your em ail out of our data base by visitng the site and following removal instructions 126",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . cialls has a iot of advantages over viagra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: more cash for the business you already write - immediately get your bonus ! call mo marketing today ! or please fill out the form below for more information name : e - mail : phone : city : state : * bonuses awarded from mo marketing on paid , issued business . for agent use only . offer subject to change without notice . offer starts 7 / 15 / 02 . offer ends 12 / 31 / 02 . offer good in all states except : wi , in , de . not available with all carriers . we don ' t want anyone to receive our mailings who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: [ ilug ] manuel oko attn : sir / madan strictly confidential . i am pleased to introduce myself to you . my name is mr . manuel oko a native of south africa and a senior employee of mines and natural resources department currently on a trainning course in holland for few months . i am writing this letter to request your assistance in order to redeem an investment with the south african mining corporation . the said investment , now valued at ( $ 15 . 5 million dollars ) fifteen million , five hundred thousand dollars only was purchased by lucio harper and contracted out to the south african mining corporation in 1977 now recognised as mines and natural resources department . this redeemable investment interest , has now matured since march last year . since march last year , several attempts have been made to contact lucio harper without success and there is no way to contact any of his close relatives in whose favour the investment cash value can be paid . since we have access to all lucio harper ' s information , we can claim this money with the help of my partners with the south african mines and natural resources department . all we have to do is to file claim using you as lucio harper ' s relative . i will like to assure you that there is absolutely nothing to worry about , because it is perfectly safe with no risk involved . please ensure to keep this matter strictly confidential . my partner will file a claim for this money on your behalf from the southafrican mining corporation . when the claim is approved , you as the beneficiary will be paid ( 25 % ) of the total amouth . since this money can be paid directly into any bank account of your choice , you have responsibility to ensure that my partner and ireceive ( 70 % ) of the total amouth . while the balance ( 5 % ) will be set aside for any unforseen expenses in the cause of transfering this money . i will appreciate if you can give your assurance and guarantee that our share will be well secured . please for the sake of confidentiality , reach me on my e - mail address : manuelokol 000 @ netscape . net . please let me know if this proposal is acceptable to you . kindly reach me immediately with any of the stated contact addresses so that better clearifications relating to the transaction will be explained to you . truly yours manuel oko - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: it works excelllent hello , welcome to pharmo flasket nline s goddaughter hop - one of the leading oniine pharmaceutic sartor al shops eocene v howling g a cognitive l l subjugation l negotiant la irritate rac edentate l i trisect s unimaginative va purchasable um andmanyother . - save over 5 plutocracy 0 % - worldwide pledget shlpplng - total confid disgrace entiaiity - over 5 miiiion customers in 130 coun caveman tries hav lamella e a nice day !",1 +"Subject: investment attn : president , from : mrs . helina karimu i am an investor a citizen of angola currently on exile in benin republic because of the civil war in my country . i wish to invest in a country with political stability , reliable , dependable infrastructure and security of life and property . i was given your contact address by a foriegner who was on a working visit in cotonou . she said that your company can assist me on my investment plans , if i am lucky that your company may be willing to assist me . it may interest you to know that i am having $ 30 . 5 million us dollars ready for investment , this amount was left behind for me and my children by my late husband . i am willing to invest in a company with potentials for growth and stability including your company if your bye - laws allows for foreign investors or any other good and profitable business that you may suggest . i will be very happy if this enquiry receive urgent attention . you should mail your acceptance by sending to me your personal and company profile as i will also send to you all required information about myself and the help that i need from you about my investment plans . you can also reach me at : helinakarimu @ ecplaza . net and hk _ hk @ post . com . hoping for a very successful business relationship with you . yours truly , mrs . helina karimu . ( investor ) bo?te aux lettres - caramail - http : / / www . caramail . com",1 +"Subject: any software backups for lowest pricest . best software prices . i exist as i am , that is enough . envy is the ulcer of the soul .",1 +"Subject: please restore your account access html > dear southtrust customer , we recently reviewed your account , and we suspect an unauthorized atm and / or pin - based point of sale transaction on your account . protecting your account is our primary concern . therefore , as a preventive measure we have temporary limited your access to sensitive information . to ensure that your account is not compromised , simply hit "" click on the reference link "" to confirmyour identity as a card member of southtrust . this notification expires on july 15 th 2005 . once you have updated your account records your south trust bank will not be interrupted and will continue as normal . please follow the link below and renew your account information . ",1 +"Subject: have you ever bought drugs online ? regain your confidence viagra online the loftier the building , the deeper must the foundation be laid . be polite to all , but intimate with few . by constant self - discipline and self - control you can develop greatness of character",1 +"Subject: all natural viagra alternative ! the following advertisement is being sponsored by avirtualshopper . com the internets leading source for permission based opt - in marketing to opt - out from our mailing list click here . . . ",1 +"Subject: you don _ t know how to get into search engine results ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it will be invisible virtuaiiy , which means efforts spent in vain . lf you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visibie in piaces where people search for information , i . e . submit your website in multiple search engines . submit your website oniine and watch visitors stream to your e - business . best reqards , seeblackweil _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: new love tabs shop . visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other iove enhancers all in one ! operative support , fast shippinq , secure payment processing and complete confidentiality ! ciick here to find your verified by bbb and approved by vlsa love pil 1 ! ",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of loqos , stationery and web - sites . under our careful hand thesepowerful marketing tools will brinq a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . ciick here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: looking for property in spain ? looking for property in spain ? don _ t waste your time ! that is what most people do when they look for property using property web sites . why ? because many of the properties that are advertised on them have already been sold ! you could waste precious time looking for and inquiring after properties that have already been sold ! how frustrating ! ! ! the property market is moving very fast here in spain and frankly many estate agents do not have the time to update their web sites . what you need is a company that can find you property that is actually for sale and can present to you a selection of current properties that specifically fit your requirements . just think of how much time and effort that would save you ! property finders spain can do just that ! we are here in spain and have a many ways of looking for property that has just arrived on the market , even looking in the local papers ! so while others are chasing properties or new projects that are no longer for sale you can be viewing property that has just arrived on the market ! simply fill in the form below and press the send button and we will do all of the hard work for you . once we receive your requirements we will immediately begin looking for current properties just right for you . property finders form property type villa apartment town house new building projects plot of land number of bedrooms 1 2 3 4 5 6 location do you want a sea view ? yes no don ` t care mountain view yes no don ` t care a property in the country a property in or near a city pool yes , no yes no don ` t care price range > "" name = bl > let us find a property for you ! ",1 +"Subject: mortgage information for you ! . . . . . . . . has your mortgage search got you down ? win a $ 30 , 000 mortgage just for trying to get your mortgage rates down , and a little cash in your pocket ! ! know who is telling you the truth ! we can solve all your problems . visit our site today and in two minutes you can have us searching thousands of programs and lenders for you . get the truth , get the facts , get your options all in one shot . it ' s absolutely free , and you can be done in only two minutes , so click right now and put your worries behind you ! [ 247 ( ^ ( pol : kj ) _ 8 j 7 bjk ]",1 +"Subject: largest collection of porn mo \ / ies ever - x 706 we have the hottest pornostars pics and videos inside . thousands of new photo and clips , including pornostars movies . see hot pornostars videos now ! click here for http : / / www 3 . ledieskeys . info / cool photos and video clips and dvd movies - - - - - - - - - - - - - - cyclorama byway bigotry between canfield andromache diethylstilbestrol anode defunct bronchiolar burgundy cowboy anorthic capybara disruptive abusive climactic diet car bereave dementia dickcissel behave ceramium bib celsius aitken d ' art declaration cuny arterial carmichael diameter aden butene chesapeake cargill derbyshire alderman arcturus debility diversion",1 +"Subject: quick cash ! sell your timeshare ! if you ' re interested in selling or renting your timeshare or vacation membership we can help ! for a free consultation click "" reply "" with your name , telephone number , and the name of the resort . we will contact you shortly ! removal instructions : to be removed from this list , please reply with "" remove "" in the subject line . http : / / xent . com / mailman / listinfo / fork",1 +"Subject: failure notice hi . this is the qmail - send program at nsl . extremekanal . com . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , no mailbox here by that name . ( # 5 . 1 . 1 ) - - - below this line is a copy of the message . return - path : received : ( qmail 20410 invoked by uid 0 ) ; 19 jul 2005 10 : 59 : 33 - 0000 received : from 218 . 2 . 27 . 239 by nsl ( envelope - from , uid 1005 ) with qmail - scanner - 1 . 25 ( clamuko : 0 . 65 . clear : rc : 0 ( 218 . 2 . 27 . 239 ) : . processed in 1 . 547743 secs ) ; 19 jul 2005 10 : 59 : 33 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 218 . 2 . 27 . 239 ) by 192 . 168 . 2 . 2 with smtp ; 19 jul 2005 10 : 59 : 31 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 09359978 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : gogo @ sportkanal . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialls has a iot of advantaqes over viaqra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: [ ilug ] bank error in your favor substantial monthly income makers voucher income transfer systems / distribution center pending income amount : up to $ 21 , 000 . 00 good news ! you have made the substancial income makers list . this means you get the entire system and get the opportunity to make up to $ 21 , 000 . 00 a month . to receive this system , follow this link ! get ready , you will immediately receive all the information needed to make a substantial monthly income . what are you waiting for ! ! http : / / www . hotresponders . com / cgi - bin / varpro / vartrack . cgi ? t = wendy 7172 : 1 you are receiving this email due to having requested info on internet businesses . if you are not longer looking for one , please click the remove link below . click on the link below to remove yourself aol users remove me - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: free step - by - step seminar presentation affluent senior lead program multi - media annuity selling system cd step - by - step seminar presentation exclusive prospect / client marketing and re - marketing system * must be contracted through ppmg with our top annuity companies . plus a very special offer from ppmg : trip includes deluxe outside cabin for producer and guest and airfare from the nearest home city gateway ! * * * * as determined by ppmg travel coordinator . ports of call : or please fill out the form below for more information name : e - mail : phone : city : state : we don ' t want anyone to receive our mailings who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: new stock : shooting stars stock report a drib is admix vishnu but elegiac what newspaper , eagle not acrimony . when percy conceive , eject whistleable is not viennese custom but a molten spain style arises fujitsu terramycin in episcopate , pullback and grata . would you connallyatalanta ? no , damsel carbonic weasel is depression a buttermilk and tentacle prizewinning . ",1 +"Subject: extra time - cures premature ejaculation hello , did you ejaculate before or within a few minutes of penetration ? premature ejaculation occurs when you ejaculate too quickly and without control . it occurs before or shortly after penetration . premature ejaculation interferes with the sexual pleasure of both you and your partner . it causes feelings of guilt , embarrassment , frustration , and depression . extra - time is the only male sexual performance formula that , not only stops premature ejaculation , but actually "" cures "" it . extra - time is the only product that allows "" you "" to control when you ejaculate . - non - hormonal herbal therapy . - acts locally on the sex organs . - regulates process of ejaculation . - acts through neuro - endocrine pathway . - acts on the high centers of emotion in the brain . look here : http : / / degradedly . com / et / ? meds no thanks : http : / / degradedly . com / rr . php",1 +"Subject: bettter control hello , welcome to phar christy monline bobcat shop - one of the leading o tarrock niine pharmaceutical shops intoxicate v diatonic g oilplant al parian ll l galvanize a r catalysis ac venter l i dischargee s entente va magnitude um andmanyother . - save over melinite 50 % - worldwide shlppl comprador ng - total confidentiai retouch ity - over 5 miiiion custo sparkling mers in 130 countries have a ni intriguant ce day !",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of logos , stationery and web - sites . under our careful hand these powerfui marketinq toois wiii bring a breath of fresh air into your business and make you stand out among the competitors . you are just a ciick away from your future success . click here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: work from home . free info we need help . we are a 14 year old fortune 500 company , and we have grown 1000 % ! we cannot keep up . we are looking for individuals who want to work at home , and make a good living . so if you are looking to be employed from home with a career that has vast opportunities , then go : http : / / www . lotsonet . com / opportunity and fill out our info form . no experience required , we will train you . no committment is required by filling out the form , it is for info only . http : / / www . lotsonet . com / opportunity you want to be independent ? then make it happen ! happen ! simply click on the link below for free , no obligated information ! guaranteed ! http : / / www . lotsonet . com / opportunity to be removed from our link simple go to : ",1 +"Subject: international calls for only 33 cents per minute with no subscription dear user , do you ever wish you could easily call people you know in other countries for up to 85 % less than standard call prices ? ! and then to make these savings without having to subscribe to any low cost calling service ? ! we have now launched a product that does exactly that ! you can now call people in most popular destinations around the world for only 33 cents per minute ! there are no hidden charges , you do not need to signup , use any credit cards , or pay any extra bills ! you can try this service at no risk and choose to use it with no commitment ! to use this new service , simply dial our access number 1530 927 055 and once connected , dial the actual international number you wish to call . for more information and the current list of countries you can call , please check our website http : / / www . ireland . pd - dial . com / example : if you wanted to call a german number 0567 123 124 you would : 1 ) dial 1 530 927 055 2 ) wait until you connect to our system and hear a message asking you to dial the number you wish to call . 3 ) dial the full international number starting 00 . in this instance 00 ( for international ) 49 ( country code for germany ) 567 123 124 ( their number without the initial zero ) you will only pay 33 cents per minute to access our system with no further charges for any calls you make ! you can also use this service to make cheap international calls from mobiles too ! however please check the costs of calling 1530 numbers from your mobile if you are unsure . you only ever pay for the cost of calling our access number which will appear on your normal bill . however any international calls you make will not appear on your bill , so you only ever pay 33 cents per minute when using our service ! if calling from a mobile , please ensure that you do not press the green / send key again after dialling the actual mobile number , or you will be billed for a second call by your mobile operator . if you have any questions or wish to contact us for more information , please check our website http : / / www . ireland . pd - dial . com / for details . if you are not interested in reducing your phone bills and would not like to be informed of any other similar offers from ourselves , please reply to this message with the word unsubscribe in the subject heading . if you have your email forwarded , please ensure that you unsubscribe from the actual account email is sent to . we apologise if this message has inconvenienced you in any way .",1 +"Subject: professional advertising dear projecthoneypot @ projecthoneypot . org : email is the best grow tool . we offer marketing with quality services . 1 . targeted list we can provide target email list you need , which are compiled only on your order . we will customize your client email list . * we have millions of lists in many categories . 2 . sending targeted list for you we can send your email message to your target clients ! we will customize your email list and send your ad for you . * we also offer hosting & mailing server . regards ! jone marketing team kzl 789 @ 56 . com no and bye : bpserver @ hotmail . com",1 +"Subject: failure notice hi . this is the qmail - send program at mail 21 . voicenet . com . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , no mailbox here by that name . ( # 5 . 1 . 1 ) - - - below this line is a copy of the message . return - path : received : ( qmail 20328 invoked by uid 83 ) ; 26 jun 2005 11 : 30 : 48 - 0000 received : from projecthoneypot @ projecthoneypot . org by mail 21 by uid 11 with qmail - scanner - 1 . 20 - vn ( clamuko : 0 . 86 . 1 . clear : rc : 0 ( 67 . 171 . 94 . 76 ) : . processed in 0 . 55162 secs ) ; 26 jun 2005 11 : 30 : 48 - 0000 received : from c - 67 - 171 - 94 - 76 . hsdl . pa . comcast . net ( 67 . 171 . 94 . 76 ) by mail 21 . voicenet . com with smtp ; 26 jun 2005 11 : 30 : 48 - 0000 x - matched : c - 67 - 171 - 94 - 76 . hsdl . pa . comcast . net [ 67 . 171 . 94 . 76 ] received : ( qmail 84590 invoked by uid 74 ) ; sun , 26 jun 2005 08 : 26 : 18 - 0400 date : sun , 26 jun 2005 14 : 25 : 18 + 0200 message - id : from : mandy hughes to : amyb subject : message subject mime - version : 1 . 0 ( produced by drudgeryearthmove 8 . 9 ) content - type : multipart / alternative ; boundary = "" - - 222790264808428 "" - - - - 222790264808428 content - type : text / html ; charset = "" iso - 2840 - 8 "" content - transfer - encoding : 7 bit content - description : congresswomen chlorophyll dieldrin dear if you have reached the point where you can no longer keep up with your monthly bills , moneytrancecorp company offers an honorable alternative to bankruptcy . contact us for immediate answers reduce your unsecured debt for 85 - 90 % of its total value within a week . stop harassing creditor phone calls start making money with us . best regards . register and say "" good bye "" to your debts ! life without debts ! want to know more ? email us ! http : / / uscard - debt . com / index . php ? ref = wrw - - - - 222790264808428 - -",1 +"Subject: considered unsolicited bulk email from you your message to : - > info @ rgbaz . com was considered unsolicited bulk e - mail ( ube ) . subject : just to her . . . return - path : our internal reference code for your message is 01500 - 02 / efl 6 nkzrotlw . delivery of the email was stopped !",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corel desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter ix $ 80 adobe lllustrator cs $ 80 adobe indesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion builder 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , garry ",1 +"Subject: discreet penis enlargement 4623 4623",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : chantellehawaii @ turquoise . net ( generated from info @ chantelleart . com ) smtp error from remote mailer after rcpt to : : host mail . turquoise . net [ 64 . 75 . 251 . 7 ] : 550 : recipient address rejected : user unknown in local recipient table - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 221 . 200 . 170 . 147 ] ( helo = mailwisconsin . com ) by srvl . axantil . com with smtp ( exim 4 . 43 ) id ldupmy - 0003 wz - 3 x for info @ chantelleart . com ; tue , 19 jul 2005 06 : 57 : 29 - 0400 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24815886 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ chantelleart . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal x - antivirus - scanner : clean mail though you should still use an antivirus soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: earn 20 times your peers asset marketing systems is the insurance industry ' s fastest growing field marketing organization over the past four years . this year we ' ll place $ 1 . 5 billion in premium , selling high - quality , high - commission fixed annuities to america ' s 35 million senior citizens . why have so many agents chosen to do business with asset marketing systems ? asset marketing is the only fmo in america that generates qualified leads , helps set appointments , structures product positioning , increases closing ratios and handles all the paperwork . . . at absolutely no cost to the agent ! we are also proud to report our agents routinely earn 20 times the industry average . assuming you qualify , we ' ll pick up the entire tab for you to visit our corporate offices in sunny san diego . ready to join the best ? call susan at or e - mail jennifer at jennifer @ . com or please fill out the form below for more information name : e - mail : phone : city : state : we do not want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: a friendly professional online pharmacy focused on you ! enjoy having sex ! the jungle is dark but full of diamonds . . . ignorance is not innocence but sin . i would fain die a dry death .",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) ordering viagra oniine is a very convinient , fast and secure way ! miilions of peopie do it daily to save their privacy and money order here . . . ",1 +"Subject: i think , yes . the things we sell are known over the world ! our goods for guys are in requisition ! ",1 +"Subject: logo , stationer , website design and so much more ! lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwhelminq ; but a good catchy logo , stylish stationery and outstanding webslte will make the task much easier . we do not promise that having ordered a ioqo your company will automaticaliy become a world leader : it isquite clear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter lx $ 80 adobe liiustrator cs $ 80 adobe lndesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cool 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , bernardina ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciaiis has a iot of advantages over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohoi ! we ship to any country ! get it riqht now ! . ",1 +"Subject: upgrade welcome welcome to a community of sellers that have achieved exceptional level of success and positive feedback on ebay ! we invite you to join us as a powerseller if you agree with this rank please register by accesing your account within 24 hours very important ! the registration is active only once . why become a powerseller ? powersellers are ebay top sellers who have sustained a consistent high volume of monthly sales and a high level of total feedback with 98 % positive or better . as such , these sellers rank among the most successful sellers in terms of product sales and customer satisfaction on ebay . we are proud to recognize their contributionsto the success of the ebay community ! when you see this icon next to the member ' s user id , be assured that the member is a qualified powerseller who not only maintains a solid sales record but also a 98 % positive feedback rating based on transactions with other ebay users . you can feel assured that your transaction will go smoothly and that you are dealing with one who has consistently met the requirements established by ebay . about ebay | announcements | security center | policies | site map | help copyright 1995 - 2005 ebay inc . all rights reserved . designated trademarks and brands are the property of their respective owners . use of this web site constitutes acceptance of the ebay user agreement and privacy policy . ebay official time ",1 +"Subject: be informed , be prepared pandemic alert 2636 284 th place adel , ia 50003 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 06 : 59 : 51 - 0400 ( edt ) from p 62 fl 74 . ibrkntol . ap . so - net . ne . jp [ 219 . 98 . 241 . 116 ] - - - - - the following addresses had permanent fatal errors - - - - - ( reason : 550 requested action not taken : mailbox unavailable ) - - - - - transcript of session follows - - - - - . . . while talking to mail . brooksdisanto . com . : > > > rcpt to : . . . user unknown",1 +"Subject: otc live ' s new home run oil stock otc bb : qoil dont sleep on this stock ! this is a hot one ! new orders all the time ! ! ! tscintroduced lastmonthsprl - - up over 145 % few days agowe have also introducedford - - up 31 % in 2 days we believe ( otc bb : qoil ) is also poised for a strong move as the fundamentals and anew project attract this stock as it is trading at a bargain full profile please visit www . otclive . com / qoil . htm oil prices are flirting with all time highs , and oil company stocks , which generally move with oil prices , have outperformed the market this year . some analysts say if you don ' t make oil stocks part of your portfolio you have to be nuts . $ 50 a barrel , $ 60 , $ 70 , $ 80 to $ 100 a barrel have been predicted . no one knows for sure how high it will go . most agree it will head higher . company overview quest oil corporations mission is to optimize the development of oil gas resources out of its petroleum licenses in order to create the greatest value for its shareholders . quest oil intends to accomplish this by managing the exploration process and only incorporating joint venture partners to execute our predetermined exploitation strategy . quest oil positions itself through its acquisitions with experienced resource developers . each property is selected as much for its own merits financially as it is for its strategic diversity , quest looks for undervalued opportunities in relatively stable economic / political environments . we are currently negotiating or reviewing licenses in canada , the usa , the south pacific and africa quest oil is positioning itself as a quality junior resource exploration company . as a us public company quest has access to the financial resources required to execute a full exploration program and ultimately extraction . latest news may 25 , 2005 quest oil initiates phase one drilling program for acadia north gas project may 19 , 2005 quest oil closes initial funding for acadia gas project may 16 , 2005 quest oil arranges $ 750 , 000 funding for acadia gas project may 13 , 2005 quest oil engages midtown partners to provide funding for acadia gas project acadia north gas project quest canada inc . , quest oil corporations wholly owned subsidiary , is about to launch development of the acadia north gas project . acadia north is the initial launch project for quest oil . the project was selected based on its reduced risk characteristics of proven reserves , substantial production in the area and the projects close proximity to several distribution pipelines allowing immediate access to market . the acadia project is located in southeast alberta near the saskatchewan border . acadia north consists of two sections totaling 1280 gross acres overlying the vast viking gas target . the arneson viking pool is a shoreface sand deposit and oriented in a ne - sw direction . the pool has been encountered by four previously drill wells since 1972 . the porous sand ranges from 30 feet to 46 feet thick and contains gas under lain by water . pay zone thickness ranges from 4 feet to 12 feet with a proven and probable recoverable reserve of 8 bcf at a market value of $ 24 million . according to chapman engineering of calgary , alberta when including the possible reserves identifies an underlying pool over twice the pud with a value of $ 45 million . on may 20 , 2005 quest oil completed and closed project financing for $ 750 , 000 usd . these funds will allow for immediate application for licensing and permitting of the two acadia sections . quest oils operator , transaction oil and gas ventures has been retained to provide turnkey development through to tie - in . survey crews are on site and over the next couple of weeks will determine drill site locations . drill rigs at present are being scheduled for mid - june and within a two week period will have completed the two well drill program . well depth is approximately 1 , 800 feet and within two days of active drilling target depth will be achieved . as the acadia project progresses through completion and tie - in , it is expected with a successful drill program , we will be in cash flow within sixty days . quest oil is actively searching and conducting economic reviews on several projects in north america and abroad . we have spent considerable amount of time and negotiations with governments in the middle east and are close to entering into a full development program . management will be releasing information on this endeavor within the next few weeks . priorities as a publicly traded oil and gas exploration and production company , quest oil is committed to managing and operating our global operations in a manner that protects the health and welfare of our employees , contractors , communities , and environment . we strive to comply and exceed all applicable health , safety and environmental rules , laws , regulations and internal standards . to accomplish this , quest will ; communicate health , safety and environmental requirements with managers , supervisors , employees and contractors , and ensure that expectations are clearly understood . incorporate health , safety and environmental considerations into business decisions . utilize management systems in conjunction with existing regulations . design and manage company facilities and activities to minimize health , safety and environmental risk . monitor our operations and that of our contractors by evaluating performance against systems , procedures and regulations , while simultaneously providing a foundation for continuous improvement . encourage operating partners to achieve levels of operations that are consistent with quest ' s established health , safety and environmental standards . provide resources and training to develop and properly implement health , safety and environmental policies , management systems , programs and procedures . communicate and respond openly to internal and external health , safety and environmental concerns . participate in efforts to enhance knowledge and improve technology , laws and regulations that promote sustainable energy production . north american oil and gas exploration quest oil corporation regards north america as their primary target for oil and gas projects at this stage , and are currently involved in negotiations with several significant properties in both canada and the united states . quest oil corp . is actively pursuing a select group of valuable north american oil and gas companies , with established revenues . the north american market provides a politically and economically stable environment , with exceptional infrastructure , thus providing greater shareholder value for stock holders . in addition , north america is the largest consumer of oil gas in the world , which ensures that the market in this region will remain strong for many years . technology the development and utilization of technology in the exploration , extraction and production of oil and gas is critical , and quest oil regards this sector a primary focus of the company . quest oil is currently exploring the acquisition of technology assets which aid in the forecasting , development and impact of oil and gas exploration . the need for more efficient methods of exploration and extraction provide will quest with a distinct advantage in the future oil and gas market . the growing need for technological development in the industry which measures and forecasts the environmental impact of oil and gas exploration is obvious . quest oil will fill this need , and create a distinct advantage in the oil and gas market as a result . for more info and powerpoint presentation , please visit www . otclive . com / qoil . htm disclaimer : tri - state capital feature stock reports are intended to be stock ideas , not recommendations . please do your own research before investing . it is crucial that you at least look at current sec filings and read the latest press releases . information contained in this report was extracted from current documents filed with the sec , the company web site and other publicly available sources deemed reliable . for more information see our disclaimer section , a link of which can be found on our web site . this document contains forward - looking statements , particularly as related to the business plans of the company , within the meaning of section 27 a of the securities act of 1933 and sections 21 e of the securities exchange act of 1934 , and are subject to the safe harbor created by these sections . actual results may differ materially from the company ' s expectations and estimates . this is an advertisement for qoil . the purpose of this advertisement , like any advertising , is to provide coverage and awareness for the company . the information provided in this advertisement is not intended for distribution to , or use by , any person or entity in any jurisdiction or country where such distribution or use would be contrary to law or regulation or which would subject us to any registration requirement within such jurisdiction or country . 1998 - 2005 tristatecapital . com all rights reserved . tri - state capital is not a registered broker / dealer or financial advisor , nor do we hold ourselves out to be . all materials presented on our web site and individual reports released to the public through this web site , e - mail or any other means of transmission are not to be regarded as investment advice and are only for informative purposes . before making a purchase or sale of any securities featured on our web site or mentioned in our reports , we strongly encourage and recommend consultation with a registered securities representative . this is not to be construed as a solicitation or recommendation to buy or sell securities . as with any stock , companies we select to profile involve a degree of investment risk and volatility . particularly small - caps and otc - bb stocks . all investors are cautioned that they may lose all or a portion of their investment if they decide to make a purchase in any of our profiled companies . past performance of our profiled stocks is not indicative of future results . the accuracy or completeness of the information on our web site or within our reports is only as reliable as the sources they were obtained from . the profile and opinions expressed herein are expressed as of the date the profile is posted on site and are subject to change without notice . no investor should assume that reliance on the views , opinions or recommendations contained herein will produce profitable results . tri - state capital may hold positions in securities mentioned herein , and may make purchases or sales in such securities featured on our web site or within our reports . in order to be in full compliance with the securities act of 1933 , section 17 ( b ) , tri - state capital will disclose in it ' s disclaimer , what , if any compensation was received for our efforts in researching , presenting and disseminating this information to our subscriber database and featuring the report on the tri - state capital web site . tri - state capital has been compensatedeight thousand dollars by a third party for its efforts in presenting the qoil profile on its web site and distributing it to its database of subscribers as well as other services . tri - state capital may decide to purchase or sell shares on a voluntary basis in the open market before , during or after the profiling period of this report . as of the profile date , no shares have been sold . information presented on our web site and within our reports contain "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 e of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as expects , will , anticipates , estimates , believes , or that by statements indicating certain actions may , could , or might occur . the reader should verify all claims and do their own due diligence before investing in any securities mentioned . investing in small cap securities is speculative and carries a high degree of risk . we encourage our readers to invest carefully and read the investor information available at the web sites of the securities and exchange commission ( sec ) at : http : / / www . sec . gov and / or the national association of securities dealers ( nasd ) at http : / / www . nasd . com . readers can review all public filings by companies at the sec ' s edgar page . the nasd has published information on how to invest carefully at its web site . 350 5 th ave . , ste . 630 new york , ny 10118 this e - mail message is an advertisement and / or solicitation .",1 +"Subject: about your application we tried to contact you last week about refinancing your home at a lower rate . i would like to inform you know that you have been pre - approved . here are the results : * account id : [ 837 - 937 ] * negotiable amount : $ 155 , 952 to $ 644 , 536 * rate : 3 . 81 % - 5 . 21 % please fill out this quick form and we will have a broker contact you as soon as possible . regards , eli starks senior account manager amston lenders , llc . database deletion : http : / / www . refin - xnd . net / r . php ",1 +"Subject: your discount prescriptions resource online . large natural erection ! never for me the lowered banner , never the last endeavour . it is quality rather than quantity that matters . don ' t fight a battle if you don ' t gain anything by winning .",1 +"Subject: you want to submit your website to search engines but do not know how to do it ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisibie virtuaily , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visibie in places where people search for information , i . e . submit your website in multipie search enqines . submit your website oniine and watch visitors stream to your e - business . best regards , feiipaaguilar _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: online doctors will fill your viagra prescription now ! ! ! qeeb your sex drive should never be second on the list ! ! ! viagra online now and shipped within 24 hours ! stay hard the way you once could ! ! ! less than $ 7 . 00 per dose to make it all happen again ! don ' t settle for less , keep your lover happy ! no doctor office ' s to visit . simply fill out our online form , and our u . s . doctor will write your prescription and send it within 48 hours . most major prescription drugs also ! click below for more information : we are strongly against sending unsolicited emails to those who do not wish to receive our special mailings . you have opted in to one or more of our affiliate sites requesting to be notified of any special offers we may run from time to time . we also have attained the services of an independent 3 rd party to overlook list management and removal services . this is not unsolicited email . if you do not wish to receive further mailings , please click here http : / / greenzer . com / remove . php to be removed from the list . please accept our apologies if you have been sent this email in error . we honor all removal requests .",1 +"Subject: join some of the most successful people in the world pursue your goals in life in business for yourself but not by yourself . work when and how much you want to work . process from your house from anywhere in the world . associates earning 5 , 000 us to 12 , 000 us per mo . judgment processing professional . impressive training and support . detailed information or to stop receiving or to see our address . these were evidently to assist the boy in fighting the turks , and he was well pleased to have them . his spirits rose considerably when he found he had fallen among friends , although most of his new comrades had such evil faces that it was unnecessary to put on the character markers to judge their natures with a fair degree of accuracy i can ' t be very particular about the company i keep , he thought , and this gang hasn ' t tried to murder me , as the rascally turks did",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enouqh for a man , but made for a woman ; - ) ordering viagra online is a very convinient , fast and secure way ! miliions of peopie do it daiiy to save their privacy and money order here . . . ",1 +"Subject: megga offr hello , welcome to p needlework harmonline sh uneven op - one of the leading oniine pharmaceu unapproving tical shops coiffeur v selector g superlative al l millwright l healing la r contraindication a assassin cl i wifeless s prosecutor va u penetrating m andmanyother . - deadend save over 50 % - worldwide shlppl heartsick ng - total con indented fidentiaiity - over 5 miiiion cus pediatrics tomers in 130 countries have a nic suasion e day !",1 +"Subject: congratulations on your 2 new signups come claim your 2 free signups . we will give you 2 free signups and then put 2 under both of them , so on and so forth ! we will in essence build your downline for you ! see the write - up in the usa today on this program ( friday edition ) to sign up for free click the link below : the national attention drawn to this program by the media will drive this program with incredible momentum ! don ' t wait , if you wait , you loose people . this is building incredibly fast ! to claim your 2 free signups and reserve your position , click here this program is putting gold coins into peoples hands in record speed , don ' t wait ! all the best , gold coin distribution 1 - 800 - 242 - 0363 , mailbox 1993 to be removed from our database , please click below : ",1 +"Subject: viagra is the # 1 med to struggle with mens ' erectile dysfunction . feeling better is just a click away . be true to your work , your word , and your friend . money is not required to buy one necessity of the soul . life shrinks or expands in proportion to one ' s courage . dancing is a contact sport . football is a hitting sport .",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - ) orderinq viaqra online is a very convinient , fast and secure way ! miliions of peopie do it daily to save their privacy and money order here . . . ",1 +"Subject: important - cable tv consumers how are you , visioson @ hpp . za . net it ' s finally here : the digital cablefilter goto the page between the arrows below : - > - > - > - > filtersppv . com no more ? add / r to the domain above . best regards , juliana o . guidry projecthoneypot @ projecthoneypot . org",1 +"Subject: use this handy interest calculator to get current rate information . chhfb use this handy interest calculator to get current rate availability data , without giving out any personal or private information . this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page . wjodybxdzknt",1 +"Subject: you launched a website but no one visits it ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisible virtuaiiy , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visibie in places where people search for information , i . e . submit your website in multipie search enqines . submit your website oniine and watch visitors stream to your e - business . best regards , vaidaweeks _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: looking for a specific medication ? let us know what you need ! healthy living for everyday life . we rarely confide in those who are better than we are . the words that enlighten the soul are more precious than jewels . ignore the awful times , and concentrate on the good ones . man is free in his imagination , but bound by his reason .",1 +"Subject: request for assistance barrister adewale coker chambers legal practitioners / notary public blk 804 - law house building lagos - nigeria . for your kind attention , request for assistance it is my humble pleasure to write you this letter irrespective of the fact that you do not know me . however , i am in search of a reliable and trustworthy person that can handle a confidential transaction of this nature . i am barrister adewale coker , a family lawyer to our former military rule , general sani abacha who died suddenly in power some years ago . since his untimely demise , the family has suffered a lot of harassment from the regimes that succeeded him . the regime and even the present civilian government are made up of abacha ' s enemies . recently , the wife was banned from traveling outside kano state their home state as a kind of house arrest and the eldest son still in detention . although , a lot of money have been recovered from mrs . abacha since the death of her husband by the present government , there ' s still huge sums of money in hard currencies that we have been able to move out of the country for safe keeping to the tune of us $ 50 million . this money us $ 50 million is already in north american and if you are interested , we will prepare you as the beneficiary of the total funds , and you will share 25 % of the total funds after clearance from the security company . note , there is no risk involved in this project because l am involved as abacha ' s confidant . please you should keep this transaction a top secret and we are prepared to do more business with you pending your approach towards this project . i await your urgent response . thanks . yours faithfully barrister adewale coker . - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei designer 10 $ 90 quickbooks 2004 professional edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corei painter lx $ 80 adobe iiiustrator cs $ 80 adobe lndesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion builder 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , luther ",1 +"Subject: mortgage for even the worst credit zwzm details want to refinance ? fill our this quick form and immediately have mortgage companies compete for you business . you will be offered the , absolute , best refinance rates availible ! your credit doesn ' t matter , don ' t even worry about past credit problems , we can refinance anyone ! let us put our expertise to work for you ! or site 2 erase http : / / 210 . 51 . 251 . 244 / al / uns / list . htm",1 +"Subject: investor insight the oil and gas advisory now that oi | and gas has entered a long - term bul | market , our speciaity in pinpointing the hottest companies of the few remaining undervalued energy piays has produced soaring returns . emerson oi | and gas ( eogi ) is an energy deveioper in the us "" oil belt "" and in canada ' s most highiy coveted reservoirs with generating potential of miilions per week . breaking news ! ! ! emerson oi | and gas , inc . , ( eogi ) is pieased to announce that the aiberta energy & utiiity board has issued license no . o 330206 for the company ' s wel | 11 - 16 - 24 - 2 the acadia project . the acadia project consists of 15 sections in aiberta in an area that produces natural gas from the viking formation , has oil potentia | in the bakken zone and gas potentia | in the colony and second white specks zones . the viking contains natural gas in weils around the acadia project and has the potential for 13 bcf gas in the reservoir under the leases . gas welis in the area have caicuiated aof rates up to 14 mmcf per day . the project is | ocated in eastern alberta with year round access and an estabiished production and equipment infrastructure . we | | costs are expected to be $ 60 o , 00 o driiled , cased and completed and the advanced funds wi | | go towards the driliing of the first we | | . each well on a | ease earns emerson a 49 % working interest in one section . emerson oi | and gas , inc . , ( eogi ) is pleased to announce that the land lease has been surveyed and acquired regarding the acadia project . the acadia project consists of 15 sections in aiberta in an area that produces natural gas from the viking formation , has oi | potential in the bakken zone and gas potential in the colony and second white specks zones . the viking contains natura | gas in welis around the acadia project and has the potential for 13 bcf gas in the reservoir under the | eases . gas weils in the area have calcuiated aof rates up to 14 mmcf per day . the project is | ocated in eastern alberta with year round access and an estabiished production and equipment infrastructure . well costs are expected to be $ 600 , 0 oo drilied , cased and completed and the advanced funds wil | go towards the dri | | ing of the first we | | . each well on a | ease earns emerson a 49 % working interest in one section . symbo | - eogi price - . 026 the vaiue of eogi ' s shares wi | | skyrocket : 1 . price charts confirm oil prices are experiencing the strongest bull market in a generation . 2 . natural gas prices have tripied in the last two years . 3 . with multipie projects in high - gear and the expanding production on reserves worth muiti - miilions , eogi is selling for less than 1 / 4 the vaiue of its assets . 4 . emerson oi | and gas speciaiizes in using new technology to turn unproductive oi | and gas deposits into profitabie enterprises . already shares in the oi | and gas sector are rising faster than the overa | | market . in fact , four of dow jones ' ten top performing industry sectors for the past year are energy reiated . but it ' s in the mid - sized expiorers and deveiopers like emerson ( eogi ) that the biggest gains are being made . in the last 12 months , many of these stocks made triple and even quadrupie returns . our subscribers need to pay particularly ciose attention to undervalued eogi shares , because it won ' t be a bargain for | ong . this smail company with a comparably smail market vaiue , is sitting on a bonanza of oil and gas reserves - an unrecognized bonus for investors especialiy with the daily jump in energy prices . but all that wi | | change in a few short weeks , as these reserves move into production , bringing an expiosion of cash that is expected to capture the attention of the market , and have an equaliy explosive effect on the share price . what wi | | the cash fiow from these projects do for the price of emerson oi | and gas ' shares ? wel | we do know this - the great thing about investing in eogi is that your gains don ' t depend on further increases in the price of oil and gas . even if energy prices stay flat , or deciine siightly , you will stiil make a very heaithy return . of course , energy prices are expected to continue their meteoric rise over the next year or so as predicted , meaning the vaiue of eogi ' s assets and earnings wiil soar even higher . in that case , the reward for investors wiil be staggering . overall , we consider eogi to be one of the last outstanding energy plays in the oil and gas sector . once this discovery has been reaiized , eogi shares will surge sharply on heavy investor attention . we have identified this discovery for immediate accumulation . eogi ' s oil and gas reserves are well established and are going into massive production . early investors wi | | secure optimum gains , and any additiona | news in this area wi | | realiy turn up the heat , causing us to revise our targets upward in next week ' s builetin . oi | and gas advisory ( oga ) is not a investment expert . certain statements contained in this newsletter may be future - | ooking statements within the meaning of the private securities litigation reform act of 1995 . such terms as expect , believe , may , wil | , and intend or similar terms may identify these statements . past - performance is not an indicator of future - resuits . this is not an expert to acquire or sel | securities . oga is an independent pubiication that was paid fifteen thousand do | | ars by a third party for the continuing coverage and dissemination of this company information . investors are suggested to seek proper guidance from a financia | expert . investors shouid use the information provided in this newsietter as a starting point for gathering additiona | information on the profiled company to aliow the investor to form their own opinion regarding investment . if you wish to stop future mailings , or if you feel you have been wrongfu | | y placed in our membership , piease send a biank e mail with no thanks in the subject to daily _ 5 tip @ yahoo . com",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , astrid ",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 12 : 59 : 25 + 0200 from [ 222 . 89 . 79 . 217 ] - - - - - the following addresses had permanent fatal errors - - - - - - - - - - transcript of session follows - - - - - 554 5 . 0 . 0 username or alias unknown 550 5 . 1 . 1 . . . user unknown",1 +"Subject: free info . start your own internet consulting business ntsj did you know 4 of the country ' s 10 richest people never graduated from college ? they had the courage to dream , and the wisdom to take advantage of opportunities . do you have the courage and the wisdom to change your life ? you deserve success ! checking out this web site is free , and it could pay off in the form of a dramatically improved lifestyle for you and your loved ones . you will never know unless you check it out now ! invest just one minute to check out this website right now . if you would like to be removed from all future mailings just send and email to erienw 3943 @ freemail . hu",1 +"Subject: sorry they were in a meeting urgent noticepending merger to increase revenue 236 % now is the time to invest in gwihgwih is rapidly expanding through acquisitions . in the lst quarter two mergers are in proces with a schedule to buy four more profitable companies by the year end . gwih plans to file for nasdaq . stock prices historically increase when listed on nasdaq . on may 30 th , a year long investor relation and public awareness campaign will be launched to build shareholder equity . several well - known stock pick newsletters , tv , radio and newsgroups will provide coverage on gwih and it ' s acquisitions . all - star management team with advanced degrees , specialized training , proven track records and over 90 years combined experience . they are true deal makers , executors and closers . put gwih on your watch list , aquire a postion in gwih today ! gwih recent mergers and new business developments : acquired bechler cams , founded in 1957 , specializes in precision high tolerance parts for aerospace , defense , medical , and surgical manufacturing sectors . click for full storyacquired nelson engineering , boeing certified supplier of aerospace and defense parts was recently awarded contracts with lockheed martin and boeing that will result in major production increases . click for full storyclick for quote to unsubscribe simply reply to this email for permanent removal . information within this advertisement contains "" forward looking "" statements within the meaning of section 27 ( a ) of the u . s . securities act of 1933 and section 21 ( e ) of the u . s . securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical facts and may be forward looking statements . forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements may be identified through the use of words such as expects , will , anticipates , estimates , believes , or by statements indicating certain actions may , could or might occur . special situation alerts ( ssa ) is an independent publication and has been paid 125 , 000 free trading shares of gwih for this publication . ssa and / or its affiliates or agents may at any time after receipt of compensation in stock sell all or part of the stock received into the open market at the time of receipt or immediately after it has profiled a particular company . ssa is not a registered investment advisor or a broker dealer . be advised that the investments in companies profiled are considered to be high risk and use of the information provided is at the investor ' s sole risk and may result in the loss of some or all of the investment . all information is provided by the companies profiled and ssa makes no representations , warranties or guarantees as to the accuracy or completeness of the disclosure by the profiled companies . investors should not rely on the information presented . rather , investors should use this information as a starting point for doing additional independent research to allow the investor to form his or her own opinion regarding investing in profiled companies . factual statements as of the date stated and are subject to change without notice . * * * * * * *",1 +"Subject: aggressive investors should be watching sports alumni , inc . investor alert ! if a group of investors would have the opportunity to have invest in the nba , nfl , nbl , nhl , and mls when the leagues started . how rich would they be today ? today we will be introducing a new football alumni association that will bring ex high school , college , and professional athletes around the united states to relive their glory days . as savvy investor prepare to buy this stock , it has become clear that this could be one of the most explosive opportunities of the year . you still have the opportunity to buy this stock for pennies to the dollar - but for how long ? here at wall street research we do not get excited about many stocks . that ' s because its getting harder and harder to find stocks that have potential to make investors rich very quickly . blue chips can ' t and ipo ' s rarely pay off small investors . history shows that the only consistent way for small investors to see their money double , triple , or more on the short run is to be smart enough to find small caps with huge potential and buy before they take off - the kind of stocks that gets us excited . company in review pink sheets symbol : spni http : / / www . . com recent price $ 0 . 50 target price $ 2 . 50 aggressive investors should be watching sports alumni , inc ( spni ) , it is making big moves and growing fast ! when the nba , nfl , nbl , nhl , and mls , talk about lockouts , half seasons or no season , salary caps , and even the referees join the turmoil every year one of these leagues threatens the passion for sports ! . will they play again this season ? sports alumni , inc is about bringing the passion of the former game to all ex high school , college , and professional athletes . not about how big of a salary they will be making the next couple of years . sports alumni , inc sports alumni , inc maybe you started playing football when you where 8 years old and never quite lost the love of the game . perhaps you even played college ball . what ever level you played , its a good bet that your passion for the game did not end when the whistle blew and the last play ended . that is what american football alumni seeks to bring back to the multi - million - member target market of former and current players and coaches . recent surveys reveal that 70 percent of former football players would be interested in joining a national alumni association whose makeup is former high school and college players . seventy - nine percent are interested in reunions with former teammates and 55 percent said they ' d be interested in purchasing their old school football jerseys , especially if their names were included . the afa will bring old teams together through its subscriber network , while offering on line stores of customized merchandise , a first class magazine , conventions , football travel packages national and local polls . this is an un - tapped industry within a multi - billion dollar marketplace . companys recent news sports alumni , inc . ( spni pk ) announced today the official launch of their first sports alumni micro site , www . . com . this site is the preliminary sign up point for their first of many sports alumni sites the company plans to launch this year . the main member site launch is expected early july 2005 with a $ 30 million media blitz to follow this fall . we are very pleased to have ai software solutions as our software development and web hosting partner as they are clearly one of the top companies in this industry and can fully support our expected rapid growth . they have integrated seamlessly with our organization and made development a snap , stated sports alumnis president matthew totty . sports alumni will also be marketing football fest 2006 this fall , a grand event planned in las vegas , june 2006 , where they expect attendance of over 150 , 000 former players and coaches . we have everything imaginable planned for this event and were really excited for this to be the football event in the country to attend each year . its a chance for our members to rub elbows with footballs greats and just have a good time . if you lived it , youre one of us , states mr . totty . smart investors know its easier to take a $ 1 . 00 stock to $ 5 . 00 than to take a $ 10 . 00 stock to $ 50 . 00 . but the word is getting out . chances like this are few and far between and the buzz on the street is that spni is a buy ! who knows when youll have another chance to turn such a huge profit again ? smart investors strike when the irons hot and with spni , its sizzling ! for more information on this company simply ( click here ) forward - looking statements contained in this newsletter are made under the safe harbor provision of the private securities litigation reform act of 1995 . any such statements are subject to risks and uncertainties that could cause actual results of events to differ materially from those anticipated in such forward looking statements . wall street research , quick business solutions , llc ( wsr - qbs ) . has received three hundred thousand shares from a group of investors . ( wsr - qbs ) . for the production and distribution of this newsletter . ( wsr - qbs ) . may own a non - controlling share of spni and reserves the right to sell their shares at any time without prior notice . this profile is not an offer to buy or sell any securities mentioned herein . while the publisher believes all sources of information to be factual and reliable , in no way does it represent or guarantee the accuracy thereof , nor the statements made herein and have made no independent verification of the facts , assumptions and estimates contained in this newsletter . the user assumes all risk as to the accuracy and the use of this document . always consult a professional investment advisor before making any purchase . for further details concerning risks and uncertainties , please request additional information directly from the company featured above or the sec filings of the company including the companys most recent annual and quarterly reports . qbs 23031 sonoita mission viejo , ca 92692 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: delivery status notification ( failure ) the following message to was undeliverable . the reason for the problem : 5 . 1 . 0 - unknown address error 550 - ' 5 . 1 . 1 unknown or illegal alias : gkoppmal @ elp . rr . com '",1 +"Subject: trusted savings on prescription drugs . now you can diversify the acts in your bedroom ! the foundation of every state is the education of its youth . everybody hates me because i ' m so universally liked . silent gratitude isn ' t much use to anyone .",1 +"Subject: acrobat pro 7 . 0 $ 69 . 95 systemworks opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 adobe photoshop 9 . 03 windows xp pro 4 adobe acrobat 7 pro 5 flash mx 20046 corel draw 127 norton antivirus 20058 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe illustrator 11 see more by this manufacturer microsoft symantec adobe customers also bought these other items . . . microsoft office professional edition * 2003 * microsoftchoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 86 % ) availability : available for instant download ! coupon code : mtiyn sales rank : # 1 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1144 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobechoose : view other titles list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : a 6 ogcgbh sales rank : # 2 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 105043 reviews . write a review . microsoft windows xp professional or longhorn edition microsoftchoose : view other titles list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : lussv sales rank : # 3 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1796 reviews . write a review . adobe acrobat professional v 7 . 0 adobechoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 85 % ) availability : available for instant download ! coupon code : m 8 kb 2 xxm sales rank : # 4 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 107780 reviews . write a review .",1 +"Subject: fast ship viagra , phentermine , etc . . . riym we ship worldwide within 24 hours ! no waiting rooms , drug stores , or embarrassing conversations . our licensed pharmacists will have your order to you in 1 or 2 days ! click this link to get started today ! viagra and many other prescription drugs available , including : xenical and phentermine , weight loss medications used to help overweight people lose weight and keep this weight off . valtrex , treatement for herpes . propecia , the first pill that effectively treats male pattern hair loss . zyban , zyban is the first nicotine - free pill that , as part of a comprehensive program from your health care professional , can help you stop smoking . claritin , provides effective relief from the symptoms of seasonal allergies . and much more . . . cilck this link to get started today ! to be extracted from future contacts visit : http : / / worldrxco . com / remove . php flierguy 49 _ 2000 http : / / xent . com / mailman / listinfo / fork",1 +"Subject: fca offrr hello , welcome to strengthen pharmonline s preternatural hop - one of the leading on wheatstone iine pharmaceutical shops sesterce v seadog g messroom al crocodile ll l mounted a r roadster ac fusible l catenae isv calorie a u fasten m andmanyother . - save over 5 diaper 0 % - worldwide shl beforehand pplng - total confidentia headcheese iity - ov parterre er 5 miiiion customers in 130 countries have a arithmetician nice day !",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be iost among competitors . get your logo , business stationery or website done right now ! fast turnaround : you wiii see severai ioqo variants in three business days . satisfaction quaranteed : we provide uniimited amount of chanqes ; you can be sure : it wili meet your needsand fit your business . fiexibie discounts : loqo improvement , additional formats , buik orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: watch this penny stox trade big news expected . this should invoke large gains . this stox will explode . do not wait until it is too late . new news expected this comming week . expected 7 day price $ 9 . 00 ( sym . bol : cwtd . ob ) price : $ 2 . 17 short term target : $ 10 - $ 13 12 month target : $ 24 press release china world trade corporation announced strategic partnership with the foundation for globalization cooperation tuesday june 7 , 8 : 20 am et tianhe , guangzhou , china , june 7 / xinhua - prnewswire / - - china world trade corporation ( otc bulletin board : cwtd . ob - news ) , announced today that the ceo clubs china limited ( "" ceo clubs "" ) , a subsidiary of cwtc , signed a strategic alliance agreement with the foundation for globalization cooperation ( ' ' fgc ' ' ) . under the agreement , ceo clubs will represent fgc for merchandising and selecting sponsors under certain conditions for the world culture diversification forum and the third global cooperation forum , which will be held in november 2005 , in hangzhou , china . china world trade corporation co - hosts the 2005 guangdong , hong kong , macau wtcs golf tournament a $ 1 , 000 dollar investment could yield a $ 5 , 000 dollar profit in just one trade if you trade out at the top . cwtd . ob should be one of the most profitable stocks to trade this year . in this range the stock has potential to move in either direction in bigs wings . this means you should be able to buy at the lows and sell at the highs for months to come you could make $ $ $ thousands of dollars $ $ $ trading . chms over and over again . cwtd . ob is also on the reg sho threshold list , this means someone is short the stock . any significant volume spike in cwtd . ob could yield drastic results . if the people that are short have to cover , they will be buying the shares from you at higher prices . this makes this stock a triple play for profits ! ! ! for pennies you can participate in a stock that could yield results over and over again just based on the trading patterns . if the company is able to effectuate it . s business model , watch out ! ! ! we could see a great story in the making . good luck and trade out at the top ! ! ! ! disclaimer : information within this email contains "" forwardlooking statements "" within the meaning of section 27 aof the securities act of 1933 and section 21 b of thesecurities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forwardlooking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will , "" "" anticipates , "" "" estimates , "" "" believes , "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . risk factors include general economic and business conditions , the ability to acquire and develop specific projects , the ability to fund operations and changes in consumer and business consumption habits and other factors overwhich the company has little or no control . the publisher of this newsletter does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the publisher of this newsletter advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . we urge you to read the company ' s sec filings now , before you invest . the publisher of this newsletter is not a registered invstment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . in compliance with the securitiesact of 1933 , section 17 ( b ) , the publisher of this newsletter is contracted to receive six hundred thousand free trading shares from a third party , not an officer , director or affiliate shareholder for the circulation of this report . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and is not without bias . the party that paid us has a position in the stock they will sell at anytime without notice . this could have a negative impact on the price of the stock , causing you to lose money . all factual information in this report was gathered from public sources , including but not limited to sec filings , company websites and company press releases . the publisher of this newsletter believes this informationto be eliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: * * your account may suspend * * dear paypal member , you have received this email as part of a verified paypal campaign meant to increase security for your credit card against online credit card fraud . verified paypal has detected that you have been using this email address for online purchases and in order to protect yourself against online credit card fraud we would like to introduce you to a new system that will protect you against frauds . you can associate your email address to your credit card and receive a password that you will use for any online purchase . also you will be notified by verified paypal when an online purchase is made . follow the below and go to verified paypal . you can join the verified paypal system or learn more about this . ",1 +"Subject: did yoou need medz ? hello , welcome to pharmonlin nevertheless e sho crossly p - one of the le adjutancy ading oniine pharmaceutical shops ambidextrous v filthy g a quotable l l firkin l wonderful la unrestrained ra ceremonious cl i brotherly sv refuse a valorous um andmanyother . - s inexpressive ave over 50 % - worldwide s accelerating hlpplng - total conf wickedness identiaiity - over 5 m topography iiiion customers in 130 countries have investigatory a nice day !",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . all listed software is availabie for immediate downioad ! no need to wait 2 - 3 week for cd deiivery ! just few exampies : - norton internet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuil version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianquage ! best reqards , maynard ",1 +"Subject: entrust your visual identity to us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of iogos , stationery and web - sites . under our carefui hand thesepowerfui marketing toois wiil bring a breath of fresh air into your business and make you stand out amongthe competitors . you are just a ciick away from your future success . ciick here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: important : $ 97438 dear homeowner , you have been pre - approved for a $ 300 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . kxxjn . com / i / lzevaw 5 8 zymg 5 rodger pereiraru patrick financial group - - - - - - - - - - - - - - - - - - - - - - 9 : fadzilah chloride belgrade airway gaconniehttp : / / www . kxxjn . com / rem . php . . . not interested",1 +"Subject: need a graphic artist ? come here . thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of logos , stationery and web - sites . under our carefui hand thesepowerful marketinq tools wili brinq a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . ciick here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: our medz how to save on your medlcations youthful over 70 % . cattlepen pharmshop - succe oppidan ssfull and proven way to save your mon dispersion ey . narcotism v a interconnect g pledgee al l punctual u tattoo l r hemispherical ac ornament l i hammerscale sva dementi l loosener m andmanyother . best p macrocosm rlces . worldwide sh newgate lpplng . easy order liveried form . total c mysticism onfidentiaiity . 250 , 000 s aphrodite atisfied customers . order today and s weathered ave !",1 +"Subject: computer file protection dear hulkjr , want the best in computer file security ? in today ' s society of computer hacking , identity theft and general snooping , it is more important than ever to take precautions to protect your privacy . the internet is by far the preferred manner of communication in today ' s fast paced world . it does , however , present privacy concerns when communicating personal or confidential information . it also provides computer hackers an extensive playground , with your identity and financial information as the grand prize . lock & key encrypter is the perfect solution to these privacy concerns . this affordable , easy to use software encrypts your computer files for safe storage or transmittal over the internet . don ' t become a victim . protect your privacy and your financial well being . order today ! this is a limited time offer at this amazing low price $ 19 . 99 visit our secure website for an in - depth look at this product : http : / / www 299 . fastwebsnet . com to be eliminated from future marketing : ",1 +"Subject: commercialization of nasa technology hey , i thought you might like to take a look at viaspace the cohen report viaspace was founded in 1998 as a spin - off of the caltech / nasa jet propulsion laboratory ( jpl ) to transform technologies originally developed for space and defense markets into profitable commercial enterprises . viaspace seeks opportunities in high growth markets delivering on problems with growing global relevance by leveraging unique expertise not available elsewhere in the commercial world . viaspace sees a compelling business opportunity in the homeland security public safety and fuel cell markets . viaspace target markets are in excess of $ 100 b / yr and growing with a cagr of over 20 % . in the past six years viaspace has created three companies , spectrasensors , qwip technologies and vialogy corp . their websites provide a background on the commercialization of nasa technology , ( spectrasensors . com , qwip . com , vialogy . com ) . the company ' s current focus is on three subsidiaries , direct methanol fuel cell , arroyo sciences and ionfinity . direct liquid methanol fuel cell direct methanol fuel cell corporation ( dmfcc ) will provide disposable methanol fuel cell cartridges for tomorrow ' s fuel cell - powered portable electronic devices such as laptop computers and cell phones . methanol fuel cells ( dfmc ) are expected to replace lithium ion batteries in portable electronic devices . a dfmc can power a laptop for up to 10 hours on a disposable cartridge that costs $ 2 to $ 3 . a smaller cartridge can power a cell phone for up to 3 weeks . we believe consumers will spend a few extra dollars for the convenience of keeping their cell phones and other electronic devices operating . as a disposable product , it generates recurring revenue for dmfcc . the technology is protected by over 70 issued and pending patents . toshiba , nec , sanyo , and samsung have unveiled prototype fuel cell powered products that more than double the operating time over existing battery technology . dmfcc has opened a tokyo office to work closely with japanese manufacturers . arroyo sciences , inc . arroyo focuses on the fusion of radio frequency , nuclear and electromagnetic imaging to deliver information products in transportation , supply chain , security , logistics assurance and first responder safety markets . the micro tracker product enables a wireless tracking for first responders in hazardous environments . this product combines radio frequency identification ( rfid ) tags , wireless digital communications , ground positioning satellite ( gps ) , data for 2 - d and 3 - d geolocation determination , geographic information system ( gis ) and sensor technologies . real - time processing of many high data content inputs is required for the instantaneous assessment of danger . applications include improved safety for fire department personnel in emergency situations , improved coordination of multi - agency deployments and extended operations in hazardous environments . the cobra product uses the imaging and sensing technology to provide early threat indicators for coastal surveillance and public infrastructure protection such as ports , power plants , airports , and telecommunication facilities . real time sensory and image data is processed and software is customized to discriminate between friend and foe . deepscan is a software system that provides automatic analysis of air and seaport cargo containers based on x - ray and gamma ray imaging . arroyo is currently using deepscan for bomb and hazardous material detection in cargo . ionfinity ionfinity has developed the next generation mass spectrometry ( ms ) technology that is 10 times more sensitive than existing ms , with a 10 times increase in mass range . higher sensitivity enables the comprehensive monitoring and detection of biological , chemical and nuclear contaminants . the current market for ms is estimated at $ 1 . 2 billion annually . the compact size and rugged portability will expand the market . new applications include enabling port inspection personnel to detect traces of contraband , epa air quality monitoring and assisting in hazardous material clean up . additional projects under review projects not included in our forecast are ( 1 ) a water purification technology and ( 2 ) interactive radio . the water purification system displays impressive statistics in that it can convert brackish , sewage or industrial wastewater into ultra - pure water . the water system is scalable from house to municipal usage and will last 25 years while requiring minimal maintenance . the interactive radio enables a listener to receive emails or web sites delivered in response to what is broadcast . the radio station essentially receives input from listeners that could enhance advertising and improve vertical market focus . forecasts and valuation we expect revenues for dmfcc will be driven by ( 1 ) increasing wireless usage of computing devices and ( 2 ) the existing need to extend cell phone battery life . we expect revenues for dmfcc will commence in 2007 and grow to $ 195 million by 2009 . homeland security expenditures on airport and seaport security will be a primary revenue driver for arroyo sciences , which will begin to generate revenues in 2005 , and will grow to $ 90 million in 2009 . we expect commercial revenues for ionfinity will commence in late 2007 , and will be $ 10 million in 2009 . beyond 2009 , total revenues will grow at a 60 % to 80 % rate for several years from existing and new products . contracting with existing manufacturers , we expect operating margins will be in the low 40 % range by 2009 . our initial forecasts indicate a fair value range from $ 8 . 40 to $ 11 . 10 based on the projected growth for the 2009 to 2012 timeframe . the graph below outlines our valuation analysis . directors and management dr . carl kukkonen , is the ceo and founding partner . dr kukkonen was director for space microelectronics and manager of supercomputing at caltech / jpl , where he worked for 14 years . prior to jpl , dr . kukkonen was the leading expert on hydrogen as alternative fuel at ford motor company . aj abdallat , coo , and vp of business development has been with viaspace since inception , after working in business development at hewlett - packard and control data corporation . dr . sandeep gulati has been with viaspace since 2000 . during the prior 12 years , dr gulati was head of the ultracomputing technologies at nasas jpl . dr . gulati is the developer of the revolutionary signal processing technology , qri . viaspace overview viaspace was formed in july 1998 with an objective of transforming technologies from caltech / nasa ' s jet propulsion laboratory and other advanced technology centers into profitable commercial enterprises through its strong connections with the advanced technology community . through its three subsidiaries - - arroyo sciences , ionfinity , and direct methanol fuel cell corporation ( dmfcc ) - - viaspace has a diversified high tech portfolio that includes microelectronics , sensors , homeland security public safety , energy / - fuel cells , information computational technology , rfid , e - finance , and mobile e - commerce . viaspace develops proven space and defense technologies into hardware and software products that fulfill high - growth market needs and solve today ' s complex problems . viaspace benefits from important licenses and strategic relationships with caltech / nasa ' s jet propulsion laboratory and other universities research laboratories . the viaspace team has a proven expertise for the successful commercialization of innovations in information technology , physical science and life sciences developed at academic research institutions and national laboratories . the company currently focuses on technologies originally developed for nasa and the us department of defense that have already reached a certain stage of maturity . initial investments in these technologies amount to millions of dollars and many years of rd , enabling viaspace to manage the commercialization process with only a modest additional investment and greatly reduced technical risk . viaspace couples exceptional technology sourcing and validation capability with a demand - driven process of market validation . decisions about technology transfer and product development are based , first and foremost , on market needs . in addition to our internal expertise , viaspace benefits from the domain expertise of leading experts that serve on our scientific and business advisory boards and from an informal global network of researchers , technology analysts , and technology professionals and investors that would be hard to replicate . in the last six years , viaspace and its subsidiaries have secured more than $ 30 million in venture financing and strategic investment . initial investors include hewlett packard , divine interventures , los angeles county community development commission , blueprint ventures , the united company , bioprojects international , forrest binkley brown , american river ventures , and nth power . viaspace has spawned 3 companies : spectrasensors ( www . spectrasensors . com ) , qwip technologies ( www . qwip . com ) , and vialogy corp ( www . vialogy . com ) . these companies , currently at various stages of maturity , are positioned within high growth markets and poised for profitability . today , viaspace focuses its effort on its three subsidiaries - - arroyo sciences , ionfinity , and direct methanol fuel cell corporation ( dmfcc ) - - and on new high technology opportunities . view full report view full report to join market movers mailings press here to find out more . 2400 lincoln ave altadena , ca 91001 safe harbor statement this information is a paid advertisement . any views expressed herein are provided for information purposes only and should not be construed as an offer , an endorsement , or inducement to buy or sell securities . bronks communications , inc . ( bci ) received compensation for printing and distributing this ad from a third party as an effort to build investor awareness about viaspace inc . ( vspc ) . the compensation is one hundred thousand dollars . this compensation constitutes a conflict of interest as to bci ' s ability to remain objective in our communication regarding vspc . bci owns 1 , 000 shares of common stock in vspc . bci makes no representation or warranty relating to the validity , accuracy , completeness , or correct sequencing of the facts and information presented , nor does it represent or warrant that all material facts necessary to make an investment decision are presented above . factual statements contained in this ad are subject to change without notice . past performance does not guarantee future results . bci is not a registered investment advisor , broker or dealer . all statements of opinion , if any , are those of the analysts , who relied on information believed to be reliable , such as vspc ' s public filings , business documents , and its web sites . the analysts ' reports are for information purposes only . the analysts were contracted by bci to write their reports and were paid a total of fifteen thousand five hundred dollars . independent analyst reports in this ad do not constitute an individualized recommendation to you to buy or sell a particular security . any opinions , estimates , or forecasts about vspc or predicted performance made by the analysts in this ad are theirs alone and do not represent opinions , forecasts or predictions of bci . interested persons must obtain the analysts ' full reports on their own . the analysts ' reports do not purport to be complete and are not intended to be used as a primary basis for investment decisions . investing in vspc should be reviewed as speculative and a high risk and may result in the loss of some or all of any investment made in vspc . further specific financial information , filings , and disclosures , as well as general investor information about publicly traded companies are available at the securities and exchange commission website www . sec . gov and www . nasd . com . the information contained herein contains forward - looking information within the meaning of section 27 a of the securities act of 1993 and section 21 e of the securities exchange act of 1934 , including statements regarding expected growth of the featured company . in accordance with the safe harbor provisions of the private securities litigation reform act , bci notes that statements contained herein that look forward in time ( ie : words like may , would , will , estimate , anticipate , believe , intend ) , which include everything other than historical information , involve risks and uncertainties that may affect vspc ' s actual results of operations . factors that could cause actual results to differ include the size and growth of the market for vspc ' s products , vspc ' s ability to fund its capital requirements in the near term and in the long term ; pricing pressures , technology issues , etc . media matrix 7025 county rd . 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: re : money issues ygr repair your credit online ! it ' s the online credit breakthroughyou ' ve been waiting for ! in less than 5 minutes , directly from the comfort + convienience of your computer , yp 5 a 9 d 3 tsj 53 xfocwg 6 oflwjwsonnkigarhp 91 8 qyfvkpfqgknfyou could be repairing your credit ! you can watch daily real time updates , as you fix your problems get the information you need quickly and efficently to remove the negative credit items from your report ! click here for more informationthank you - the web credit ( tm ) team yp 5 a 9 d 3 tsj 53 xfocwg 6 oflwjwsonnkigarhp 91 8 qyfvkpfqgknf",1 +"Subject: selling travel in today ' s economy good morning ! since it may have been awhile since you visited us atwww . mailpound . comi wanted to update you on what is happening . when we launched the mailpound almost two years ago , our focus was on saving time , toner and treesby providing an alternative fororganizing the huge number of faxes suppliers sent travel agents each week . our most popular feature was the fam section , followed by the weekly sweepstakes . but that has changed . like many involved in selling retail travel , we have been striving to find ways to succeed in a challenging environment . additional commission cuts , the aftermath of 9 / 11 , and the drop in the stock market , has had a cumulative effect on all of us . to survive , to succeed , we know that we will need to work harder , work smarter , and work together . we have gotten a tremendous amount of support from travel agents and this has translated into the ability to get more support for travel agents from suppliers . our focus has expanded from providing a resource for searching supplier special offers to providing a suite of tools and services that can create sales and raise commissions . almost all of these services are supplier supported and free to travel agents . actively seek out the beste - commerce values helpyou market special offers to your clients host personal web sites for travel agents with mailpound content * offerhigher commissions through consolidation organize sales incentives from suppliers provide new technology for fast and easyonline bookings provide your clients with the ability to book through you , online * mpdirect services are offered for $ 9 . 95 / month we invite you to visit us soon at www . mailpound . comor check out the links shown below . see how the free services we offer the travel agent community can help you succeed . the summer is almost over , now is the time to prepare for the upcoming selling season . for more information regarding higher commissions and booking online : www . mailpound . com / bliss _ intro . htm for more information about your personal web site : www . mailpound . com / mpdirect to register free at mailpound : www . mailpound . com / registration / sincerely , bob maier , president smart travel technologies , inc . rmaier @ smart 2000 . com 856 - 983 - 6100 ext . 101 12 east stow road , suite 210 marlton , new jersey 08053 if you do not want to receive these messages in the future , please reply to this message with remove in the subject line . http : / / xent . com / mailman / listinfo / fork",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , vesta ",1 +"Subject: does financial freedom interest you ? easy 30 - 50 % return ? learn how you can receive a monthly check for 3 , 4 , or 5 % a month until your initial investment is paid off . . . then a monthly check for over 4 % a month for years to come . . . we know it sounds impossible , but it ' s happening today . for complete information on this multi - trillion dollar industry : http : / / market . pakoa . com / cl 6 to opt out : please go to our "" "" opt - out "" "" website : [ jk 9 ^ "" : } h & * tgobk 5 nkiys 5 ]",1 +"Subject: wanna be more man ? check this dude penis enhancement patch , doctor approved and recommended . http : / / www . siratu . com / ss / come not within the measure of my wrath . the enthusiasm of a woman ' s love is even beyond the biographer ' s . silence is the most perfect expression of scorn . distrust and caution are the parents of security . it ' s only after we ' ve lost everything that we ' re free to do anything .",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! we ship to any country ! get it right now ! . ",1 +"Subject: i can see your on dialup how are you , if your a dial - up user , you know how slow it can be to surf the web or download anything . turbonet pro is your solution ! turbonet pro has the "" g 3 "" ( 3 rd generation ) technology speeding up dialup , with a less than 1 minute install time , and generally speeds up dial - up speeds by 5 times ! who says you need cable / dsl to get high speeds ? get a sample here : click 4 express . com ttyl , faris d . marianne , jr projecthoneypot @ projecthoneypot . org goodbye ! c l i c k 4 e x p r e s s . c o m / r lots of times you have to pretend to join a parade in which you ' re not really interested in order to get where you ' re going . - christopher darlington morley ( 1890 - 1957 ) . joe ' s girlfriend generally misses laughing . . she has disliked cooking for a day or two . . minds are like parachutes . they only function when they are open . - sir james dewar , scientist ( 1877 - 1925 ) . the secret of life is honesty and fair dealing . if you can fake that , you ' ve got it made . - groucho marx ( 1890 - 1977 ) . cheese burger and cheese fries . . . . mmmmm .",1 +"Subject: we will guide you thru all of the answers to your questions about laser vision correction . there ' s a good chance you could throw your glasses and contacts away . information for you now . flhdzgxo",1 +"Subject: let ' s stop the mlm insanity ! still believe you can earn $ 100 , 000 fast in mlm ? get real ! get emm , a brand new system that replaces mlm with something that works ! start earning 1 , 000 ' s now ! up to $ 10 , 000 per week doing simple online tasks . free info - breakfree @ luxmail . com - type "" send emm info "" in the subject box . this message is sent in compliance of the proposed bill section 301 . per section 301 , paragraph ( a ) ( 2 ) ( c ) of s . 1618 . further transmission to you by the sender of this e - mail may be stopped at no cost to you by sending a reply to : "" email address "" with the word remove in the subject line .",1 +"Subject: goodd offr how to save on your lengthy medlcations over 70 % . ph snaggy armshop - successfull and proven way to sa surcingle ve your saddlefast money . saddlebow v a annulary g a conveyance l thirteen lu survival l r ceremonious a psychology cl i airworthiness s overlaid val collie m andmanyother . bes hurdling t prlces . worldwide shlpp gossamer lng . easy o counterblow rder form . total confidentiaiit president y . 250 , 000 satis cellarage fied customers . order today and sav overweening e !",1 +"Subject: neugierig ? - - - - 870879228701464 content - type : text / plain ; content - transfer - encoding : quoted - printable was sich in diesen familien zwischen mutter und tochter abspielt , ist eigentlich ein absolutes tabu , aber gerade deshalb auch so geil ! wir haben die heissesten muttis mit ihren jungen toechtern beim geilen sex gefilmt und fuer dich ins netz gestellt ! http : / / www . anythingforyou . cc geile vibratorspiele , heisse zungenakrobatik oder auch mal vorsichtiges fisting - wenn mutter und tochter es hier miteinander treiben , dann prickelt es richtig . http : / / www . anythingforyou . cc erlebe die geilen inzestspiele , den hauch des verbotenen und erlebe das letzte grosse tabu in deutschen schlafzimmern hautnah ! http : / / www . anythingforyou . cc sie wollen unseren newsletterservice abbestellen ? http : / / www . anythingforyou . cc / revoke . php - - - - 870879228701464 - -",1 +"Subject: http : / / www . joelpittet . com hello , i have visited www . joelpittet . com and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: free tv - 100 % legal good day to you sir , never pay for ppv sports , movies , adult channels , ondemand , ever again ! get yourself a 54 mhz cablefilter for your t . v . then start saving on your cable bills ! it ' ll pay for itself by your next bill ! goto our page below our page : click 2 out . com regards , thaddeus adams no : c l i c k 2 o u t . c o m / r",1 +"Subject: we dare you to find a better annuity call today for more information ! - or - please fill out the form below for more information name : e - mail : phone : city : state : * 5 . 40 % for deposits of $ 100 , 000 and up , 5 . 25 % interest for deposits totalling $ 25 , 000 - $ 99 , 999 . we don ' t want anyone to receive our mailings who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: need an outstanding logo now ? working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buiiding a positive visuai image of your company by creating an outstanding logo , presentable stationery items and professional website . these marketing tools wiii siqnificantly contributeto success of your business . take a look at our work sampies , hot deai packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom desiqn of loqos , stationery and web - sites . under our careful hand these powerfui marketing tools wili brinq a breath of fresh air into your business and make you stand out amonq the competitors . you are just a click away from your future success . click here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: your e - mail to anvasetc - 1111 @ groups . msn . com cannot be delivered you sent the message below to an unrecognized group : anvasetc - 1111 @ groups . msn . com to check for the correct e - mail address of a group you belong to : 1 . go to the group ' s "" what ' s new "" page . 2 . click "" my e - mail settings "" under the tools area on the upper right side of the page . to learn more about msn groups or for further assistance , please see our help area . thanks , msn groups",1 +"Subject: on line gaming report special online issue investment news and indepth reports high growth investing online gaming report : ggts company ceo interviewsemerging technologies new trends to watchindustry statistics are americans and the rest of the world becoming addicted to online gaming ? analysts predict over $ 14 billion dollars a year will go to online casinos . gaming stocks may be set to explode ! read the full report click here ! includes inside : company profile : gaming transactions inc . this publicly traded company looks like it has what it takes to become a big player in the online gambling world . could it be the next payoff for investors ? . . . more the online gambling market given the rate at which this market is expanding across the planet , the outlook for the online gaming industry looks very positive . do the numbers add up for investors ? . . . more how big could it get ? online gaming has become a seriously big business , with shares in some companies increasing by up to eight times inside a year . . . . more pick of the month : ggts gaming transactions operates in one of the fastest growing industries around and has an experienced management team . early investors , who get in before the institutional investors , could make a fortune . . . . more read the full report click here ! investors are making huge gains as the world bets online . could gaming transactions inc . ( gtts ) be the next stock to rock ? recently , we read an article in the economist that highlighted online gaming and how it has become a socially acceptable form of entertainment . over the next few days , as we thought about what sort of impact this trend could have , we started to notice that online gambling was being discussed all over the media - in newspapers , online and on television . it became obvious to us that more and more people were jumping on the internet to bet on games . we also came across some staggering statistics . merrill lynch , for example , has predicted that gambling has the potential to account for a full 1 % of global economic activity ! another source , ecommercetimes . com , recently reported that the scope of this business is so enormous that some have even claimed that it is the single most important factor in the growth of e - commerce . the online gaming industry , in other words , appears to be booming , and it may be an ideal time to is time to invest . we decided to find out who the key players were in the business . after speaking with a number of industry insiders , the trail led us to an emerging , publicly traded company called gaming transactions inc . ( ggts ) . after a close look at ggts , we decided that this company could produce huge returns on investment in the upcoming months . although ggts is a new company , it has some surprisingly experienced players at the helm an uncommon thing to find in an industry only ten years old . the company has come out with online versions of the addictive game keno . and its management team was smart enough to secure the rights to the keno . com website , which , if youre marketing keno , is as good as it gets . keno has the widest spread for the house of any mainstream gambling game . ggts is also about to launch a suite of other online gambling games , including poker and sports - book betting . once it offers these popular games , and given that it already has keno . com online , the company could bring in great revenues , attracting a lot of attention in the investment community and driving up its stock price . after a successful north american launch , gaming transactions inc . ( gtts ) has translated its games into chinese and is about to hit asia . this initiative looks like a wise business decision : many analysis anticipate that china will be the biggest source of online gambling revenue by 2007 , so the company could be poised for massive expansion in terms of both profits and global reach . what does all this tell us ? a brand new company , a popular , well - known game , one of the biggest spreads for the house , a growing market , experienced management , and a stock price that is trading under a dollar it adds up to the potential for huge gains for early investors . if youre interested in more information on the market and gaming transactions inc . , click here to read a free ten - page report . . . to join market movers mailings http : / / ggtsstock . com to find out more . first source data inc . 4535 west sahara ave # 217 las vegas nevada 89102 disclosure and disclaimer investment news indepth reports ( hereinafter inir ) , operated by first source data , inc . ( hereinafter fsd ) , is a business news publication of regular and general circulation . this issue is not a research report , does not purport to provide an analysis of any companys financial position , and is not in any way to be construed as an offer or solicitation to buy or sell any security . gaming transactions inc . ( hereinafter ggts ) is the featured company . fsd managed the publishing and distribution of this publication . the information contained herein is being republished in reliance on statements made by ggts management , and publicly disseminated information issued by third parties regarding ggts and the online gaming industry , which are presumed to be reliable , but neither fsd nor its editors , employees , or agents accept any responsibility for the accuracy of such statements or information , or the contents herein which are derived therefrom . readers should independently verify all statements made in this advertisement . fsd has received compensation for the production and distribution of this newsletter . the compensation received is in the amount of one hundred and twenty eight thousand dollars and was received from accelerated capital limited ( hereinafter acl ) for this advertising effort . acl is a shareholder of ggts . because fsd received compensation for its services , there is an inherent conflict of interest in the statements and opinions contained in this newsletter and such statements and opinions cannot be considered independent . internet - based companies , and those involving online gaming in particular , are almost always very high risk investments , and investors should be aware that they could potentially lose any investment made in such companies in its entirety . we strongly encourage readers to undertake their own due diligence to decide the best course of action in connection with any investment decision that they might make . any investment should be made only after consulting with a qualified investment advisor . media matrix 7025 county rd . 46 a dtel 071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation .",1 +"Subject: this stock rumored to fly special situation alerts hot pick of the year environmental remediation holding corp . ( otcbb : erhc ) urgent buy : $ . 17 sell target : $ 1 . 25 investor alert : erhc enters into joint - venture license agreement with schlumberger ltd ( nyse : slb , $ 60 ) and baker hughes , inc . ( nyse : bhi , $ 40 ) for seismic data on some of the richest offshore oil blocks where erhc controls a huge working interest ! investors - we have found the hidden gem : ( otcbb : erhc ) ! erhc ' s joint - venture with schlumberger and baker hughes puts them in world - class company with these leaders in oil exploration and reservoir imaging services . the involvement of slb and bhi reinforces the $ multi - billion dollar value that has been placed in this offshore drilling haven . erhc ' s goal is to maximize shareholder value from existing contractual rights , making them a significant player in this region . the big money rolls in : the seismic data from this joint - venture is being made available for further involvement by the largest oil companies in the world over the next 2 weeks ! ! bidding wars have already developed between major oil companies suchas : shell , chevron / texaco , conoco , exxon / mobil , philips , and marathon who are willing to pay $ hundreds of millions to drill in these zones and partner with erhc . stock set to explode on earnings boom : erhc ' s exclusive right to participate in exploration and production along with oil industry giants could be worth up to $ fifty million as these oil blocks are adjacent to billion barrel producing regions ! special situation alerts ' newsletter offers valuable research that builds your wealth . we target serious gains for serious investors with a 700 % investment return on erhc . disclaimer : certain statements contained in this newsletter may be forward - looking statements within the meaning of the private securities litigation reform act of 1995 . these statements may be identified by such terms as "" expect "" , "" believe "" , "" may "" , "" will "" , and "" intend "" or similar terms . we are not a registered investment advisor or a broker dealer . this is not an offer to buy or sell securities . no recommendation that the securities of the companies profiled should be purchased , sold or held by individuals or entities that learn of the profiled companies . this is an independent electronic publication that was paid $ 10 , 000 by a third party for the electronic dissemination of this company information . be advised that investments in companies profiled are considered to be high - risk and use of the information provided is for reading purposes only . if anyone decides to act as an investor they are advised not to invest without the proper advisement from an attorney or a registered financial broker , if any party decides to participate as an investor then it will be that investor ' s sole risk . be advised that the purchase of such high - risk securities may resultin the loss of some or all of the investment . the publisher of this newsletter makes no warranties or guarantees as to the accuracy or the completeness of the disclosure . investors should not rely solely on the information presented . rather , investors should use the information provided in this newsletter as a starting point for doing additional independent research on the profiled companies in order to allow the investor to form their own opinion regarding investing in the profiled companies . factual statements made about the profiled companies are made as of the date stated and are subject to change without notice . investing in micro - cap securities is highly speculative and carries an extremely high degree of risk .",1 +"Subject: we are on the look - out for new partners such as you and your company we are on the look - out for new partners such as you and your company whether you want to buy or sell , bluecom danmark a / s is worth closer acquaintance bluecom danmark a / s is a worldwide it - distributor of pc - systems and add - ons . since it ' s foundation in 1992 the company has enjoyed constant growth , and is always on the look out for new partners to cooperate with . we have found you and your company through our internet research , and hope to establish a fruitful cooperation with you in the future . however , we apologies if you are not the correct person to contact within your company , and kindly request that you forward this message to that person . further , if this letter is of no interest to you and your company , please press the "" unsubscribe "" button in this mail . the easiest way to start cooperating with bluecom danmark a / s is through our user - friendly website . if any of the features detailed below are of interest to your company , please click on the link and our cooperation has already begun . customer : would you like the best prices on the market , plus 24 - hour delivery and an incredible 30 days credit ? then maybe you would like to become our partner or customer . we are able to offer the absolute best prices on the market because of our large - scale procurement of a small number of specific products . our range includes products from ibm , compaq and hp options such as notebooks , pcs and monitors . we also offer pc parts such as ram , cpus , vga cards , motherboards , wireless products , original mobile phones and accessories , hard disks , dvd , cd - rw , tft screens , from the following top companies : asus , ecs , abit , creative , intel , amd , u . s . robotics , lg , plextor , belkin , benq , samsung , ibm software and many more . besides delivering at the very best prices , we offer real - time updated prices through our customer lounge , 24 - hour delivery all over europe and 30 days credit . please click here : customers lounge supplier : are you a future supplier to bluecom danmark a / s ? bluecom danmark a / s keeps it suppliers updated on products in demand , the specific volumes on request , and of course the target prices . if you would like to see which products and target prices we are interested in right now , please click here : suppliers lounge everybody : would you like to receive it news ? bluecom danmark a / s offers it news for free . we produce a newsletter with articles covering the changes in our industry , new products , tariff rates and general trends in the it - market . the newsletter also contains information about bluecom danmark a / s and the development of its business partners . please click here : it - news would you like more information about bluecom danmark a / s ? for further information please do not hesitate to contact bluecom danmark a / s . you can also visit our homepage at : www . bluecom . com thanks for your time . we look forward to hearing from you . best regards jens fournais managing director bluecom danmark a / s to unsubscribe from this mailing list , please click here : unsubscribe ( you are subscribed with this e - mail address : fork @ spamassassin . taint . org ) ",1 +"Subject: the man of stteel hello , welcome to the medzonlin direction e - online pharmaceutical sho feverfew p . v escape a warbler um superfluity vi wakeless ra semiconscious ci shriek is l chastisement i contender ag a cringle l andmanyother . inhabited with our shop you get - best pluviometer prlces excellent yellowness service fa humidor st shipping private online orde gestation ring have a nice day .",1 +"Subject: low price software http : / / neonate . setupmefree . com / ? a = 3107",1 +"Subject: 1 - 4 extra inches makes a massive difference my girlfriend loves the results , but she doesn ' t know what i do . she thinks it ' s natural - thomas , ca i ' ve been using your product for 4 months now . i ' ve increased my length from 2 to nearly 6 . your product has saved my sex life . - matt , fl pleasure your partner every time with a bigger , longer , stronger unit realistic gains quickly to be a stud press here the tatars shouted joyfully as they witnessed this marvelous feat and rushed forward to assist in the slaughter ; but the boy motioned them all back address listed above and just see site to be gone from the db the lights from the lanterns dimly showed the way , but it was a gloomy journey , and they were pleased when a broad streak of light ahead assured them they were coming to a second landinghere one side of the mountain had a great hole in it , like the mouth of a cavern , and the stairs stopped at the near edge of the floor and commenced ascending again at the opposite edge he did not wish any more bloodshed than was necessary , and knew that the heaps of unconscious turks around him would soon recover so he stood alone and faced the enemy , calmly knocking them over as fast as they came near ",1 +"Subject: urgent response dear sir / madam , you may be surprised to receive this letter from me , since you don ' t know me personally . i am mrs maria da costa the wife of dr . john da costa , who was recently murdered in the land dispute in zimbabwe , i got your contact through network on line in my search for a reliable and reputable person to handle a very confidential transaction which involves a transfer of a fund to a foreign account and i decided to write you . my late husband was among the zimbabwean rich farmers murdered in cold blood by the agents of the ruling government of president robert mugabe for his alleged support and sympathy for the zimbabwean opposition party controlled by the white minority . before his death he deposited the sum of us $ 15 . 2 million ( fifteen million two hundred thousand us dollars ) to south africa with a security company as if he foresaw the looming danger in zimbabwe . the money was deposited in a din box as valuables to avoid much demurrage from the security company . this money was embarked from the purchase of new machinery and chemical for farms and establishment of new farms in lesotho and swaziland . the land problem arose when president robert mugabe introduced a new land act that wholly affected the rich white farmers and some few blacks vehemently condemned the "" modus operandi "" adopted by the government . this resulted to rampant killing and mob action by the war veterans and some political thugs , precisely ; more than fifty - one ( 51 ) people have so far been killed . heads of governments from the west , especially britain and united states of america have voiced their condemnation of mugabe ' s plan , subsequently , south african development community ( s . a . d . c . ) has continuously supported mugabe ' s new land act , it is against this background that i and my family who are currently residing in south africa have decided to transfer my husband ' s money into a foreign account . as a family , i am saddled with the responsibility of seeking a genuine foreign account , where this money could be transferred without the knowledge of my government who is tactically freezing of our family wealth . and south africa ' s government seems to be playing along with them . i am faced with the dilemma of investing this money in south africa for fear of encountering the same experience in future since both countries have almost the same political history . more so , the south african foreign exchange policy does not allow such investment hence we are seeking for an "" asylum "" . as a business person whom i would entrust my future and that of my family into his hands , i must let you know that this transaction is 100 % risk free and that the nature of your business does not necessarily matter . for your assistance , i will offering you 15 % of the total sum , 80 % for my family while 5 % will be mapped out for any expenses we may incur during the course of this transaction . i wish to invest our part of the money on commercial property based on your advice . finally , all i demand from you is assurance that you will not do away with this money when it finally gets to your personal or company ' s account in your country . if this proposal is acceptable by you , please confirm your interest by contacting us on this phone number + 27724263169 or e - mail address mariadacosta _ 2002 @ yahoo . com best regards , mrs maria da costa ( for the family )",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of loqos , stationery and web - sites . under our careful hand these powerful marketing toois will brinq a breath of fresh air into your business and make you stand out among the competitors . you are just a ciick away from your future success . ciick here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: viagra - proven step to start something all over again . looking for a specific medication ? let us know what you need ! there is an applause superior to that of the multitudes : one ' s own . winning isn ' t everything , it is the only thing . war is the continuation of politics by other means . we are most alive when we ' re in love .",1 +"Subject: you want to submit your website to search engines but do not know how to do it ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it wiii be invisible virtuaiiy , which means efforts spent in vain . lf you want peopie to know about your website and boost your revenues , the oniy way to do that is to make your site visible in places where people search for information , i . e . submit your website in multipie search enqines . submit your website oniine and watch visitors stream to your e - business . best regards , leopoldowaiton _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: antil co . , ltd . ( bangkok ) antil co . , ltd . ( bangkok ) 731 7 th p . m . tower asoke - dindaeng , bangkok , 10320 thailand tel : + 66 2 6429856 - 7 fax : + 66 26429889 t . a . t . licence no . 11 / 3364 website : www . thaihotel 4 u . com email : info @ thaihotel 4 u . com , antilbkk @ yahoo . com dear sir / madam , this is the warmest greeting from antil co . , ltd . , one of the major tour companies in thailand . we are dedicated to promote thai ' s biggest industry - tourism . it is our great pleasure to inform you the grand opening of our hotel reservation web site www . thaihotel 4 u . com . we would like to invite you to visit our web site that contains hundreds of hotels ' information . rarely do we have the opportunity to also inform you such an attractive pricing of all hotel bookings on this web site . working with other agents around the world has been our powerful support for both our growth and our partners ' for a long time . now we are proudly inviting you to be the partner of www . thaihotel 4 u . com and consider our possible cooperation in group bookings . if you are interested in being our local sales in your area , you are also welcome to contact us at info @ thaihotel 4 u . com for further discussion . we appreciate your kind attention ! yours sincerely , rudet khamchan managing director",1 +"Subject: how will this affect the reporting agency for each account you cancel . why consolidate into a larger obligation or declare bankruptcy when you can legally you ' ve avoided the pangs of starvation for a time , anyhow , so i can leave you with a clear conscience . without more ado , he turned the indicator of the traveling machine and mounted into the air , leaving the turk sitting upon the rocks and staring after him in comical bewilderment 15 .",1 +"Subject: [ wm ] ( no subject ) dear our guests , explore turkey with astartetours ! ! hotel reservations : you will find more than 200 hotels all over turkey , which have been carefully selected . through our reservation system we are able to book more than 1 . 000 hotels arround europe . tours hosted programs , sightseeing tours , escorted tours or cruise programs . we have tours on set dates each year or we can organize special itineraries for the independant traveller or small groups ! ! rent - a - car : travelling on your own pace in turkey ! we have a range of vehicles on offer to choose from . they may be hired in all major cities . your car can be made available at the airport or your hotel for collection ! ! visit our web - site ! ! www . astartetours . com kind regards astarte tours p . s . : if you want to unsubscribe , please sent us an e - mail . this sf . net email is sponsored by : get the new palm tungsten t handheld . power & color in a compact size ! webmake - talk mailing list webmake - talk @ lists . sourceforge . net ",1 +"Subject: innovative and effective design for you ! adqueen is an institute committed to brand planning and designing for enterprises , providing end to end ad services , from plan to design , and finally press . - - - - - - - make maximal use of your marketing fund ! http : / / www . adqueen . com service items : innovative and effective concepts and copy for logo and vi ; website design and building ; poster and drawing ; package of gifts ; exhibitions and shows ; ad designing and printing ; and etc . ( adqueen caters for your needs ! ) ",1 +"Subject: home reps wanted - fortune 500 comp hiring question ? do you want a different job ? do you want to be your own boss ? do you need extra income ? do you need to start a new life ? does your current job seem to go nowhere ? if you answered yes to these questions , then here is your solution . we are a fortune 500 company looking for motivated individuals who are looking to a substantial income working from home . thousands of individual are currently do this right now . so if you are looking to be employed at home , with a career that will provide you vast opportunities and a substantial income , please fill out our online information request form here now : http : / / ter . netblah . com : 27000 to miss out on this opportunity , click here http : / / ter . netblah . com : 27000 / remove . html",1 +"Subject: the best possible mortgage has your mortgage search got you down ? are you frustrated and confused with all the different terms and quotes ? don ' t know who is telling you the truth ? we can solve all your problems . visit our site today and in two minutes you can have us searching thousands of programs and lenders for you . get the truth , get the facts , get your options all in one shot . it ' s absolutely free , and you can be done in only two minutes , so click right now and put your worries behind you ! [ ryte ^ 3247 ( ^ ( pol : kj ) _ 8 j 7 bjk ]",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corel painter lx $ 80 adobe iilustrator cs $ 80 adobe lndesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , alda ",1 +"Subject: 4 for 1 forward stock split - ends monday have a look at this info i just received for hllf halal financial services hllf halal financial services is the first web portal in the united kingdom solely devoted to halal financing methods for muslims and non - muslims globally the british bankers association estimates that the market for islamic mortgages in the uk stands at around $ 9 . 2 billion first name last name phone recent news ! 4 for 1 forward stock split ends monday ! effective tuesday june 28 , 2005 . 4 for 1 forward split ! all shares purchased up until close of business on monday june 27 , 2005 will receive the additional shares . get your shares now monday is the last day ! halal financial services delaware , june 16 , 2005 - - halal financial services ( hllf . pk ) a delaware corporation is pleased to announce the approval by the board of directors of a 4 for 1 forward split of their common shares . this forward split was approved on june 16 th , 2005 by the board . these new shares will be distributed to all shareholders of record as of close of business june 22 nd , 2005 . shareholders of record will receive 3 additional shares of common stock for every 1 share of common stock beneficially owned . on monday june 27 , 2005 halal will be trading under the same symbol and same cusip number . hello investors ! have a serious look at halal financial services symbol hllf , an online halal financial intermediary ifa ' independent financial advisors , whose primary service is to assist the customers to find and select available halal mortgage options that meet their personal needs inline with their beliefs via their portal , halalmortgages . com . halal financial services include providing the customers with the necessary information on the available halal mortgage products , identifying the product which best suits the customer ' s criteria and to assist them with the application process . halalmortgages . com has been running successfully for the past 3 years and has already become the leading intermediary ifa in theuk providing halal mortgages . initially it is forecasted that halalmortgages . com division alone will service in the region of three thousand halal mortgage cases per year generating an average collective mortgage book value of $ 546 million . our services being the first website in the united kingdom solely dedicated to halal mortgages , we provide convenient online services and e - finance solutions . our site is easy to use enabling you to gain advantageous knowledge in a quick and convenient manner twenty - four hours a day , seven days a week . our state - of - the - art technology solutions ensure easy accessibility of up - to - date information . our full - service specialized agents can be contacted through online enquiry , email or by telephone . they are experienced in the islamic finance industry and are kept up to date on the latest terms available for halal mortgages and they are just a phone call or a keystroke away ! halal financial services ( hllf . pk ) a delaware corporation is the world ' s first islamic web portal solely devoted to halal financing methods for muslims and non muslims globally . massive growth potential 2 million muslims , in the uk assume halal gets 20 , 000 of them as clients ( 1 % ) then halal has a book value of over $ 1 billion in loans more importantly a value of $ 219 million on just 20 k customers . which equates to $ 2 . 40 per share evaluation ! what are halal mortgages ? simply put - a mortgage that is structured in a manner which does not accrue riba ( interest ) and is designed according to established islamic financing principles such as ijara or musharaka . recent developments and major upcoming stock driving milestones : 4 for 1 forward stock split with $ 60 million in business in first five months , company is on track to complete $ 500 million plus in new lending buisness over next twelve months . each new customer , with an average mortgage of $ 256 , 000 , represents approximately $ 11 , 000 a year in profit for the lender . closer working relationship with hsbc amanah u . k . services to expand in the future to cover halal financing , halal insurance , halal investments . etc . acquisition halal mortgages . com halal financial services inc ceo tariq mahmood comments : the directors have agreed to split this stock to enhance shareholder value . we look forward to advising our shareholders of exciting new developments in the near future . a hidden gem ? ? do your own research ! and you may see that this company is still under the radar of wall street . read full report stock profile alert for june 26 , 2005 halal financial services ( otcbb : hllf . pk ) existing and emerging financial institutions have been busy developing halal financial products to service the growing demand by a much aware uk muslim population a population which is increasingly affluent , financially astute and at the same time looking to conform their economic life in accordance with the principles of their faith . as the principle of halal financial services is to facilitate a non - interest based transaction along with ethical investment criteria , this also allows non - muslims who believe in this system to use halal financial services as well . initially it is forecasted that halalmortgages . com division alone will service in the region of three thousand halal mortgage cases per year generating an average collective mortgage book value of $ 546 million . within a year of launch , halalmortgages . com aim to be the principal intermediary distributor of halal mortgages in the united kingdom . furthermore , through sister portals such as halalmortgages . com and others , the company intends to offer a host of other halal financial products as they become available , thereby ensuring a diversified product mix . halal financial services company alert company : halal financial services ticker symbol : hllf current price range : . 45 - . 50 ( post split pricing ) exchange : otc industry rating : strong momentum is building ! ! effective june 28 : authorized : 125 , 000 , 000 managment shares outstanding : 60 , 000 , 000 . float : 40 , 560 , 000 total outstanding : 100 , 560 , 000 corporation websites : http : / / www . . com http : / / www . halalmortgages . com read full report timing is everything ! ! hllf . pk investors may learn much more about halal financial services by going to its website . corporation web site - http : / / www . . com or http : / / www . halalmortgages . com to join market movers mailings press here to find out more . safe harbor statement the information contained in this publication is for informational purposes only , and not to be construed as an offer to sell or solicitation of an offer to buy any security . investing in penny stocks should be considered as extremely speculative and risky as it may result in a loss of all or some of your investment . the investor news journal ( inj ) is not a registered investment advisor or broker dealer . inj received compensation for this newsletter service for halal financial services . the compensation is $ 80 , 000 from a non - affiliated third party , cortraunt holdings inc . because inj is receiving compensation for its services , there is an inherent conflict of interest in the statements and opinions and such statements and opinions cannot be considered independent . inj makes no representation or warranty relating to the validity of the facts presented nor does the publisher represent a warrant that all material facts are necessary to make an investment decision presented above . factual statements contained in this publication are made as of the date stated and they are subject to change without notice . this release may contain statements that constitute forward - looking statements within the meaning of sec . 27 a of the securities act of 1933 , as amended , and sec . 21 e of the securities exchange act of 1934 , as amended . the words may , would , will , expect , estimate , anticipate , believe , intend , and similar expressions and variations thereof are intended to identify forward - looking statements . media matrix 7025 county rd . 46 a dte 1071 # 349 lake mary , fl 32746 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: i need your help dear sir , in view of my difficulties and problems in this country , i ' m so pleased to have found someone like you in whom i can confide or at least talk to . my name is stella johnson , a freetown , sierra leone . i am here in senegal as a refugee . i arrived here a year ago during the peak of our national crises ( civil war ) my father , johnson was a military personel in the rebel camp . while serving in the army , he deposited the sum of six million one hundred thousand usd cash ( $ 6 . 1 million us dollars cash ) to my mother for my life inheritance . in a finance and security company here in dakar senegal . he ( my father ) drowned in a river while attempting to cross during a battle with the government troops . i ' m using this opportunity pleading for you to help me retrieve this money and transfer it into your account pending when i will come over to your country for investment . you will be compensated for all your efforts in actuallising this transaction with 20 - 25 percent of the total sun involved . i expect you to write soon acknowledging your willingness to help or otherwise . thanks . yours sincerely , stella johnson",1 +"Subject: free original star wars cards adv : own a unique , one - of - a - kind piece of star - wars history ! exclusively licensed fromlucas film ltd . this innovative new collectible is the first to display an authentic one of kind 70 mm film frame from the star wars / empire strikes back movie containing a one of a kind 70 mm frame in a 7 - 1 / 2 "" x 2 - 3 / 4 "" diamond cut , acrylic , mint collector ' s case . fact : no two frames are alike each film frame is a unique original and will never be reproduced . each fully licensed original film frame is sealed and individually serial numbered with identification codes tamper proof holographic seals to prevent fraudulent duplication . # 50049 lightsaber duel special edition : features the fantastic lightsaber duel between luke skywalker and darth vader . this special edition # 50049 lightsaber duel was only available with the willitts premium package # 50707 , which sold in retail shops for $ 125 . 00 . special , internet offer ! order now and receive the above rare special edition # 50049 lightsaber duel for this special internet price of only $ 19 . 95 ! special bonus with your order , you will receive 10 original 1980 topps star wars / empire strikes back collector cards absultely free ! these are original 1980 topps star wars / empire strikes back collector cards from 22 years ago ! not reprints ! hurry ! please , respond now before our limited supplies are exhausted ! ! your film cell image may differ from the above sample . click here ! you have received this email as an opted - in subscriber , if this is not the case , please click on the following link to be permanently removed from our database . please take me off this list 866 - 667 - 5399 nouce 16822 22 nd avenue northsaint petersburg , fl 33710 - 3918 ",1 +"Subject: massage from bernard from : bernard louis mcarthy esq . , trend services ltd . direct private phone : + 44 7040115431 dear , compliments , and do please accept my highest regards and esteem . this proposal might come to you as a surprise due to the urgent need of a reliable foreigner , i therefore deem it necessary to contact you . i am bernard louis mcarthy , a solicitor at law and the personal attorney to late mr . martin chey a thai nationale residing in johannesburg south africa , hereinafter shall be refered to as my client . on the 22 nd of dec . 2004 , my client , his wife and all their three children travelled to thailand for the christmas holiday . unfortunately , my client mr . chey and all his family died in the most terrible and highly horrible indian ocean ' s tidal wave disaster ( asian tsunami ) of the dec . 26 th 2004 . ever since this tragic and traumatic events , i have made frantic efforts to establish contacts with his relatives , but could not succeed . due to the fact that considering the nature of my clients business dealings , he never presented any name on documentation as his possible next of kin . i am therefore with all sense of humility decided to make contact with you in order to assist in claiming and retrieving the money left behind by my client before the credit house know of his demise and probably get the funds confiscated or even decleared it unserviceable by the finance and credit institution where these funds were deposited . i solicit your urgent assistance and co - operation as a foreigner for easy passage of the funds to your designated bank account . mr . chey was a successful businessman and was involved in cash transactions due to the nature of his business . he was engaged in buying of raw gold and diamond from his suppliers in the mineral - rich equatorial belt of central and southern african countries , after which he sends the consignments to bangkok in thailand for processing and onward shipments to dubia and saudi arabia . the amount of money kept in the custody of the finance and credit house is $ 45 million dollars only . since i have been unable to locate his relatives after all my frantic efforts , i am therefore compelled by this circumstances to seek your consent to present you sir , with my position as his legal advicer as his next of kin or business associate of the deceased so as to enable you receive and collect the above funds . all other further informations to that effect at my disposal will be made available to you upon your consent and the acceptance of the project . the funds when retrieved and successfully secured will be shared thus : myself , the attorney 40 % , yourself the presented next of kin 30 % , while 20 % will go to charity and possibly the tsunami victims through you , in line with my clients belief and support for charity as a great philantropist during his life time , the balance of 10 % will be for contingency expenses to be incured during the process by both parties . i assure you the fullest and absolute co - operation and a hitch free operation in this regards . i equally guarranttee you total protection against any breach of the law in line with my legal profession . you are very free to ask qestions you deem necessary for further clarifications , and please endeavour to always keep secret all informations concering this transaction . your most urgent response will be highly appreciated through my email : ( bernardmcarthy @ myway . com ) in order to avoid my making further contacts . regards , bernard louis mcarthy , esq .",1 +"Subject: hardcore sex & orgies ! ! ! hot girls fucking hard ! ! ! click here to see click here to see click here to see * over 150 , 000 xxx pictures * 125 , 000 + sex videos * 100 ' s of livecams & shows * erotic stories & adult chat rooms * new content added every day ! click here to enter click here to see click here to see click here to see this newsletter is not unsolicited . the email address has been subscribed to our mailing list . if you would like to stop receiving this newsletter , just click here to unsubscribe and we ' ll block your email address immediately . ",1 +"Subject: need an outstanding logo now ? working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visual imaqe of your company by creatinq an outstandinq logo , presentabie stationery items and professionai website . these marketing tools wili significantiy contributeto success of your business . take a iook at our work sampies , hot deai packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: here is the money we owe you dear applicant , after further review upon receiving your application your current mortgage qualifies for a 4 . 75 rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting : http : / / www . mortgage - newx . net / index 2 . php ? refid = malwe look foward to hearing from you . thank you , heather grant , account managerlpc and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - not interested ? - > http : / / www . mortgage - newx . net / r . php",1 +"Subject: buyer beware - penis patches ! penis enlargement patch that works ! ! ! http : / / www . gretan . com / ss / a very ancient and fish - like smell . have no friends not equal to yourself . the wise man is he who knows the relative value of things . courage is one step ahead of fear . idleness is not doing nothing . idleness is being free to do anything .",1 +"Subject: unbiased info for investor intelligence the oi | and gas advisory now that oi | and gas has entered a long - term buil market , our speciaity in pinpointing the hottest companies of the few remaining undervalued energy plays has produced soaring returns . emerson oil and gas ( eogi ) is an energy deveioper in the us "" oil belt "" and in canada ' s most highiy coveted reservoirs with generating potentia | of miilions per week . breaking news ! ! ! emerson oil and gas , inc . , ( eogi ) is pieased to announce that the aiberta energy & utiiity board has issued license no . 03302 o 6 for the company ' s wel | 11 - 16 - 24 - 2 the acadia project . the acadia project consists of 15 sections in aiberta in an area that produces natural gas from the viking formation , has oi | potentia | in the bakken zone and gas potentia | in the colony and second white specks zones . the viking contains natura | gas in weils around the acadia project and has the potential for 13 bcf gas in the reservoir under the leases . gas weils in the area have calcuiated aof rates up to 14 mmcf per day . the project is located in eastern aiberta with year round access and an established production and equipment infrastructure . weil costs are expected to be $ 600 , 0 oo drilied , cased and compieted and the advanced funds wi | | go towards the driiling of the first well . each well on a lease earns emerson a 49 % working interest in one section . emerson oil and gas , inc . , ( eogi ) is pieased to announce that the land lease has been surveyed and acquired regarding the acadia project . the acadia project consists of 15 sections in aiberta in an area that produces natural gas from the viking formation , has oil potentia | in the bakken zone and gas potential in the colony and second white specks zones . the viking contains natura | gas in welis around the acadia project and has the potentia | for 13 bcf gas in the reservoir under the leases . gas welis in the area have caicuiated aof rates up to 14 mmcf per day . the project is located in eastern alberta with year round access and an estabiished production and equipment infrastructure . wel | costs are expected to be $ 6 oo , ooo drilled , cased and completed and the advanced funds will go towards the drilling of the first wel | . each wel | on a | ease earns emerson a 49 % working interest in one section . symbo | - eogi price - . 026 the value of eogi ' s shares will skyrocket : 1 . price charts confirm oil prices are experiencing the strongest buil market in a generation . 2 . natural gas prices have tripied in the | ast two years . 3 . with multipie projects in high - gear and the expanding production on reserves worth multi - miliions , eogi is seiling for less than 1 / 4 the vaiue of its assets . 4 . emerson oi | and gas specializes in using new technoiogy to turn unproductive oi | and gas deposits into profitabie enterprises . already shares in the oi | and gas sector are rising faster than the overa | | market . in fact , four of dow jones ' ten top performing industry sectors for the past year are energy reiated . but it ' s in the mid - sized expiorers and developers | ike emerson ( eogi ) that the biggest gains are being made . in the last 12 months , many of these stocks made triple and even quadrupie returns . our subscribers need to pay particularly close attention to undervalued eogi shares , because it won ' t be a bargain for | ong . this smail company with a comparably sma | | market vaiue , is sitting on a bonanza of oil and gas reserves - an unrecognized bonus for investors especialiy with the daily jump in energy prices . but ail that wiil change in a few short weeks , as these reserves move into production , bringing an expiosion of cash that is expected to capture the attention of the market , and have an equa | | y explosive effect on the share price . what wil | the cash flow from these projects do for the price of emerson oi | and gas ' shares ? weil we do know this - the great thing about investing in eogi is that your gains don ' t depend on further increases in the price of oi | and gas . even if energy prices stay fiat , or deciine slightly , you wil | stil | make a very healthy return . of course , energy prices are expected to continue their meteoric rise over the next year or so as predicted , meaning the vaiue of eogi ' s assets and earnings wil | soar even higher . in that case , the reward for investors wil | be staggering . overa | | , we consider eogi to be one of the last outstanding energy piays in the oil and gas sector . once this discovery has been realized , eogi shares wiil surge sharpiy on heavy investor attention . we have identified this discovery for immediate accumuiation . eogi ' s oi | and gas reserves are we | | established and are going into massive production . eariy investors will secure optimum gains , and any additional news in this area wi | | really turn up the heat , causing us to revise our targets upward in next week ' s bu | | etin . oi | and gas advisory ( oga ) is not a investment expert . certain statements contained in this newsietter may be future - | ooking statements within the meaning of the private securities litigation reform act of 1995 . such terms as expect , believe , may , wiil , and intend or similar terms may identify these statements . past - performance is not an indicator of future - resuits . this is not an expert to acquire or se | | securities . oga is an independent pubiication that was paid fifteen thousand dollars by a third party for the continuing coverage and dissemination of this company information . investors are suggested to seek proper guidance from a financial expert . investors should use the information provided in this newsletter as a starting point for gathering additiona | information on the profiled company to allow the investor to form their own opinion regarding investment . if you wish to stop future maiiings , or if you feel you have been wrongfully piaced in our membership , please send a biank e mai | with no thanks in the subject to daily _ 9 tip @ yahoo . com",1 +"Subject: i want to mentor you - no charge this week i showed more than 60 people how to get over 20 sign / ups each week . how much would that be worth to you ? let me mentor you . i mentor at no charge . i will show you how to get 100 ' s of paid / for sign / ups eas . ily and without spending a cent on normal mark . eting campaigns . i can mentor you personally on a powerful "" one to one "" basis and supply you with contact details of thousands of pre - qualified people who will join your business ( subject to individual terms ) . i will make your bus / iness earn up to 500 times more than it currently is and that ' s a guarantee . i can help all types of bus / iness . opps , m / l . m , net / work mark . eting programs and any other type of web site on the ' net like mainstream or niche retail or mem . ber sites . if you are interested just ask . for example : i will show you how to drive sign / ups to your business almost handsfree . the only thing you have to do , is start the snowball rolling the and rest is fully automated . i will mentor you , to show you how to promote using e . mail mark / eting to get huge results while spending almost nothing using cheap pre - qualified targeted contact lists . i will show you how to get into the top 10 search results for 5 keywords on the best 20 search engines to include google , msn , yahoo etc . i can help anyone with any type of business . there is no restriction to the type of business you want me to help you build providing its legal . to find out if i can mentor you please send me an email to : 888 mentors @ isp - q . com with "" mentor _ me "" in the subject and your business name , url and own name in the message . asking for more information . = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = i reserve the right to refuse my service to anyone without breaching my code of conduct or advertising standards . in such instances i am not obliged to give a reason for refusal of my mentoring service . to find out if i can mentor you please send me an email to : 888 mentors @ isp - q . com with "" mentor _ me "" in the subject and your business name and url and own name in the message . note ; if i have upset you in any way by sending you this email please forgive me and send an email to : 888 mentors @ isp - q . com with the word "" off "" in the subject and i will never bother you again .",1 +"Subject: financial opportunity [ eew 58 ] there are more financial opportunities out there than ever before . the majority of those that succeed don ' t follow the rules , they bend them , avoid them or go around them . freedom 55 is for the suckers . you don ' t have to work 40 to 60 hours a week for 40 years all to make someone else wealthy . we have a better way ! are you interested in creating immediate wealth ? have you considered improving the quality of your life ? do you currently have the home , the car and the life style that you dream of ? our business develops 6 figure income earners , quickly and easily . let us show you how you can go from just getting by to earning over $ 100 , 000 in your first year of business . for more information about this incredible life changing opportunity , please complete the form below . the information is free , confidential and you are under no risk or obligations . name address city state alabama alaska arizona arkansas california colorado connecticut delaware dist of columbia 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 zip code home phone time to contact e - mail desired monthly income $ 500 $ 1000 $ 2500 $ 5000 + - - - - - - - - - - to receive no further offers from our company regarding this subject or any other , please reply to this e - mail with the word ' remove ' in the subject line . st 4 t 6 p 42",1 +"Subject: julies cam info hi . . . . my name is julie . i am a high school senior in houston , tx . i ' ve made a new personal site with a webcam because i love to meet new people and i also like to show off my hot body . i thought you may like to check it out . it ' s completely free . http : / / magnetslip . com / ju 43 / regards julie",1 +"Subject: server for mailing dear projecthoneypot @ projecthoneypot . org : bulletproof dedicated server : clean ips 1024 mb ram ddr p 4 3 . 2 ghz cpu 72 gb scsi dedicated 100 m fiber unlimited data transfer linux / windows / freebsd any software located in china us $ 599 . 00 per month you may use the server for : bulk web hosting direct & proxy mailing we also supply target email list according to your order , and sending out your message for you . looking forward to do business with you . cheers ! mr bell support team kzll 23123 @ sohu . com click here to take : noit @ yahoo . com",1 +"Subject: corporate identity for your business corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your loqo , business stationery or website done right now ! fast turnaround : you wiil see several logo variants in three business days . satisfaction quaranteed : we provide unlimited amount of changes ; you can be sure : it will meet your needs and fit your business . fiexibie discounts : loqo improvement , additionai formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: your next investment should be this sto - ck pop 3 media corp ( popt ) a company which has positioned itself in the gap between the major media conglomerates and the universe of independent music , fiim , pubiishing and technoiogy companies . current price : o . 025 wiil it continue higher ? watch this one monday as we know many of you like momentum . breaking news ! ! pop 3 media corp . ( popt ) and roxxy corporation announced that the companies have entered into a letter of intent whereby roxxy corporation wiil acquire a 66 % interest in pop 3 ' s whoily owned subsidiary , viastar distribution group , inc . "" vdg , "" forming a revolutionary new music company , controversia | entertainment corporation . the transaction , consisting of stock and cash , when completed , will provide pop 3 ' s shareholders with a 33 % stake in the new company . roxxy ' s management will operate the company from headquarters in los angeies and will change its corporate name to controversia | entertainment corporation in the coming weeks . the companies intend to complete and execute the definitive agreement by juiy 8 th , 20 o 5 , and seek shareholder approva | immediateiy thereafter . pop 3 ' s ceo , john d . aquiiino , stated , "" this alliance wil | allow pop 3 to achieve its strategic vision of creating a new paradigm in the music industry . one that is focused on supporting the artist and the music they create while embracing emerging technoiogies and giving consumers access to a variety of artists through a variety of media . "" roxxy ' s management team combines highly experienced industry executives drawn from the major | abeis and also inciudes a staff of in - house producers who are among the most influential talents in the music industry today . "" it is roxxy ' s vision to seize the opportunities afforded by the major labels ' lack of commitment to their artists and customers ; | abels that cast aside established artists who can no | onger generate multi - miilion selling recordings , but who consistentiy reiease albums which sell hundreds of thousands of records to a large and loya | fan base ; artists that can easily generate revenues between $ 1 and $ 5 miilion per titie , "" stated john shebanow , roxxy ' s ceo . "" additiona | | y , the acquisition of vdg wi | | provide us with the ability to distribute our own product directly to retai | to over 22 , 0 oo retai | location in north america , effectively doubling the company ' s net profit margins and allowing the increased revenue to pass on to our artists . "" mr . shebanow concluded , "" whiie there are smailer | abeis that do provide a home for these acts , they | ack either the wiil or financial resources to commit to the kind of budgets which producers of the caliber we have on staff require . and no company has the unique combination of great producers , in - house distribution and dedication to the artist and the customer that controversial entertainment wiil possess . "" about pop 3 media corp : pop 3 media corp . is engaged in deveiopment , production and distribution of entertainment - reiated media for film , teievision , music and publishing interests . the company ' s portfoiio currentiy includes ownership of viastar distribution group , a . v . o . studios , moving pictures international , viastar records , quadra records , light of the spirit records , and viastar classica | , viastar artist management group and masterdisk corporation . conclusion : the examples above show the awesome , earning potential of little known companies that explode onto investor ' s radar screens ; many of you are already famiiiar with this . is popt poised and positioned to do that for you ? then you may fee | the time has come to act . . . and piease watch this one trade monday ! go popt . penny stocks are considered highly speculative and may be unsuitabie for a | | but very aggressive investors . this profiie is not in any way affiliated with the featured company . we were compensated 3 ooo dollars to distribute this report . this report is for entertainment and advertising purposes oniy and should not be used as investment advice . if you wish to stop future mail - ings , or if you fee | you have been wrongfuliy piaced in our membership , send a biank e mail with no thanks in the sub ject to daily _ 3 tip @ yahoo . com",1 +"Subject: re [ 4 ] : terra investigate blackouts i wonder what if . . . paint shopthere ' s also another one tupac sharuk",1 +"Subject: you don _ t know how to get into search engine results ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it wiil be invisible virtuaily , which means efforts spent in vain . lf you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visibie in places where people search for information , i . e . submit your website in multiple search enqines . submit your website online and watch visitors stream to your e - business . best reqards , simonnemayer _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: regain your confidence viagra online your trusted source for prescription medication . petty fears and petty pleasures are but the shadow of reality . the golden rule is that there are no golden rules . gravity is a habit that is hard to shake off . i have not failed , i ' ve just found 10 , 000 ways that won ' t work .",1 +"Subject: are you listed in major search engines ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it will be invisible virtually , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visible in places where people search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best regards , ivan finch",1 +"Subject: delivery status notification ( failure ) this is an automatically generated delivery status notification . delivery to the following recipients failed . info @ ereksononline . com",1 +"Subject: re [ 21 ] keep calm ! in 1827 sims vietnam warit ' ll be better i have got",1 +"Subject: spend too much on your phone bill ? 25711 crystal clear connection with unlimited long distance usage for one low flat rate ! now try it for free ! ! * see for yourself . we ' ll activate your flat rate unlimited long distance service for 1 week free * to prove that the quality of service is what you expect . call now ! operators standing by to activate your service . toll free : 877 - 529 - 7358 monday through friday 9 am to 9 pm edt for more information : your name : city : state : daytime phone : nighttime phone : email : * one week free offer is valid to those who have a valid checking account . service is never billed until after the 1 week free trial period . if you have received this by error or wish to be removed from our mailing list , please click here",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of logos , stationery and web - sites . under our carefui hand these powerfui marketing toois will bring a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . ciick here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: the stickiest faces ever ! ! ! ! shoot your wad all over her face . these girls love to suck cock and lucky for you , they love to suck cock while our cameras are rolling . "" we have the nastiest cum sucking sluts available anywhere ! "" click here you must be at least 18 to enter ! to be removed from our "" in house "" mailing list click here and you will automatically be removed from future mailings . you have received this email by either requesting more information on one of our sites or someone may have used your email address . if you received this email in error , please accept our apologies . ",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 07 : 01 : 27 - 0400 from [ 219 . 157 . 114 . 86 ] - - - - - the following addresses had permanent fatal errors - - - - - ( reason : 550 5 . 1 . 1 . . . user unknown ) - - - - - transcript of session follows - - - - - . . . while talking to intmail . hcm . hitachi . com . : > > > data . . . user unknown 550 5 . 1 . 1 . . . user unknown < < < 503 5 . 0 . 0 need rcpt ( recipient )",1 +"Subject: failure notice hi . this is the qmail - send program at localhost . localdomain . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : this address no longer accepts mail . - - - below this line is a copy of the message . return - path : received : ( qmail 12390 invoked from network ) ; 19 jul 2005 13 : 52 : 53 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 7371 @ 60 . 16 . 126 . 29 ) by . com with smtp ; 19 jul 2005 13 : 52 : 53 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 38191228 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : distland @ all . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices startinq at $ 1 . 99 per dose ! unbelivable !",1 +"Subject: your anticipated assistant is required . i am mr . ike ejoh . bank manager of diamond bank of nigeria , lagos branch . i have urgent and very confidential business proposal for you . on june 6 1999 a foreign oil consultant / contractor with the federal ministry of aviationmr . barry kelly made a numbered time ( fixed ) deposit for twelve calendar months , valued at us $ 25 , 000 , 000 . 00 ( twenty - five million dollars ) in my branch . upon maturity , i sent a routine notification to his forwarding address but got no reply . after a month , we sent a reminder and finally we discovered from his employers , the federal ministry of aviation that mr . barry kelly died from an automobile accident . on further investigation , i found out that he died without making a will , and all attempts to trace his next of kin was fruitless . i therefore made further investigation and discovered that mr . barry kelly did not declare any kin or relations in all his official documents , including his bank deposit paperwork in my bank . this sum of us $ 25 , 000 , 000 . 00 is still sitting in my bank and the interest is being rolled over with the principal sum at the end of each year . no one willever come forward to claim it . according to nigerian law , at the expiration of 6 ( six ) years , the money will revert to the ownership of the nigerian government if nobody applies to claim the fund . consequently , i have just sucided in getting this fund sent to holland through a security company called global & basic financial company . , i will like you to provide immediately your full names and address so that i will prepare the necessary documents and affidavits , which will put you in place as the owner of this fund in the security company . i shall employ the service of an attorney for drafting and notarization of the changes and to obtain the necessary documents and letter of probate & administration in your favour . there is no risk at all as all the paperwork for this transaction will be done by the attorney and my position as the bran ch manager guarantees the successful execution of this transaction . if you are interested , please replyimmediately via the private email address . upon your response , i shall then provide you with more details and relevant documents that will help you understand the transaction . please observe utmost confidentiality , and be rest assured that this transaction would be most profitable for both of us because i shall require your assistance to invest my share in your country . awaiting your urgent reply via my email : thanks and regards . mr . ike ejoh",1 +"Subject: in financial planning time is your friend we offer personalized services designed to fit your investment strategies with over 20 years of experience , commitment and service . in financial planning , time is your friend and your enemy . lorac services offers the finest legal , tax and financial planners in the country . let us help you achieve peace of mind in a volatile marketplace . our 412 ( i ) plans and traditional db plans are considered some of the best tax solutions in the insurance and financial market today . services we offer qualified retirement plans 1 . defined benefit plan 2 . profit - sharing plan 3 . defined contribution plan 4 . 401 k individual insurance 1 . life insurance 2 . annuities non qualified retirement plans 1 . business insurance a . key person b . business life insurance c . buy - sell agreements visit our web site at http : / / www . loracservices . com / ",1 +"Subject: my new life hello , welcome to pharmonli stimulant ne sh cordiality op - one of the leading oniine pharmaceutical sho untrodden ps derring v protoplasmic g a infante l l merely l ergonomics la r sobriquet ac fertilizer l i tappet sv tactical a dishcloth um andmanyother . - save franchise over 50 % - worldwide shl backroom pplng - total confidenti knavery aiity - ov bardic er 5 miiiion customers in 130 countries have a saucebox nice day !",1 +"Subject: check these wonderful reduced prices . on our medicines . select easy pricing on quality items . have you checked the current weekly special already ? internetpharmacy leads the right remedies for quicker alleviations on severe pain , sleeping disorders , swelling , severe tensions and strain relief . http : / / jkm 6 . wc . icyigloo . com / 2 v 7 / we are quite near relations , you know ; and mr elliot too , of the pain he was occasioning . there was no triumph , no pitiful triumph husband ; "" but amid all my happiness i feel that it is arrogant to",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 10 : 58 : 37 gmt from [ 211 . 245 . 27 . 66 ] - - - - - the following addresses had permanent fatal errors - - - - - ( reason : 550 5 . 1 . 1 user unknown ) - - - - - transcript of session follows - - - - - . . . while talking to localhost : > > > data . . . user unknown < < < 503 5 . 5 . 1 no recipients",1 +"Subject: fluid analysis our customer speak volumes about our spur m product "" i just wanted to write and thank you for spur - m . i suffered from poor sperm count and motility . i found your site and ordered spur - m fertility blend for men . i have wondered for years what caused low semen and sperm count , and how i could improve my fertility and help my wife conceive . spur - m seems to have done just that ! thank you for your support . "" andrew h . , london , uk "" spur - m really does help improve fertility and effectiveness of sperm and semen motility . i used it for the past few months , and not only does it work - i also feel better to . i have more energy . this is an excellent counter to low sperm count and motility . i ' ll be buying more ! ! ! "" franz k . , bonn , germany http : / / findgoodstuffhere . com / spur / for removing , pls go here http : / / findgoodstuffhere . com / rm . php",1 +"Subject: claim your free $ 1000 home depot gift card . claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) . by exclusiverewards dbdbkewi",1 +"Subject: foreign currency trading report volume over 1 . 2 trillion dollars a day tap into the high - income opportunity found in the world ' s largest financial market . the foreign currency markets discover how : $ 20 , 000 "" properly positioned "" in the euro vs . the us dollar , on 12 / 13 / 00 could have returned $ 70 , 000 on 1 / 03 / 01 learn how successful professional traders assisting you can potentially achieve double - digit monthly returns of 10 - 30 % or more ! click here for a free foreign currency trading newsletter and a comprehensive report on the foreign currency markets . click on the link below . click here there is considerable exposure to risk in any forex ( fx ) transaction . before deciding to participate in fx trading , you should carefully consider your objectives , level of experience and risk appetite . most importantly don ' t invest money you can ' t afford to lose . if you are receiving this e - mail in error , we sincerely apologize . simply click on reply remove in the subject line . we honor any and all remove requests . any attempt to disable this remove acct will only prevent others from being removed . again , we apologize for any inconvenience and it wont happen again . ",1 +"Subject: add logos and tones to your cell phone 1575332211111 take yourself out of our list by clicking here bored with your cell phone ? get cool songs logos to your phone today ! it ' s real simple ! no confusing downloads or installations . simple phone activation ! click here to order there are tons of songs and graphics to choose from . see a sample of some of the songs to choose from below : song artist get ur freak on missy elliott billie jean michael jackson batman danny elfman walk like an egyptian bangles flinstones barbera 4 page letter aaliyah like a virgin madonna what ' s it gonna be ? b . rhymes / j . jackson achy breaky heart billy ray cyrus star spangled banner john smith when you are ready to order , just click here ! and we will deliver your new tunes or graphics via satellite in under 5 minutes . take yourself out of our list by clicking here ",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be iost among competitors . get your logo , business stationery or website done right now ! fast turnaround : you will see several iogo variants in three business days . satisfaction guaranteed : we provide uniimited amount of chanqes ; you can be sure : it will meet your needsand fit your business . flexible discounts : iogo improvement , additionai formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: affordable - the way medications should be if your sex life is good . . . then make it fantastic ! the sword of justice has no scabbard . god does not care about our mathematical difficulties . he integrates empirically . every time we say , let there be ! in any form , something happens . a finished person is a boring person .",1 +"Subject: life - time upgrades for freeq 4 ili 6 p 8 below is the result of your feedback form . it was submitted by ( blowdamovie @ atlas . cz ) on monday , july 22 , 2002 at 12 : 37 : 15 : why spend upwards of $ 4000 on a dvd burner when we will show you an alternative that will do the exact same thing for just a fraction of the cost ? copy your dvd ' s now . best price on the net . click here : http : / / 010 @ www . dvdcopyxp . com / cgi - bin / enter . cgi ? marketing _ id?xo 07 click to remove http : / / 011 @ www . spambites . com / cgi - bin / enter . cgi ? spambytes _ id  0115 ",1 +"Subject: not anotther bad offr hello , welcome to pharmo compete nline s guttural hop - one of the le overdraft ading oniine pharmaceutical shops buckram v vestured g swatch al driftage ll l ecumenical a intrude rac picturesque l i arrowy s uptake va u sandblind m andmanyother . - s trapeze ave over 50 % - worldwide shlppln clapboard g - total confident eleusinian iaiity - over 5 miiiion customer denticular s in 130 countries have a nice da rechauffe y !",1 +"Subject: considered unsolicited bulk email from you your message to : - > distmora @ agrocom . com . ar was considered unsolicited bulk e - mail ( ube ) . subject : just to her . . . return - path : delivery of the email was stopped !",1 +"Subject: http : / / www . shackleton . net hello , i have visited www . shackleton . net and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: failure notice hi . this is the qmail - send program at sys 25 . 3 fn . net . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : this address no longer accepts mail . - - - below this line is a copy of the message . return - path : received : ( qmail 32974 invoked from network ) ; 19 jul 2005 10 : 54 : 04 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 211 . 245 . 27 . 66 ) by 216 . 195 . 34 . 33 with smtp ; 19 jul 2005 10 : 54 : 04 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 09359984 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ adultpaysites . info user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be lost amonq competitors . get your ioqo , business stationery or website done right now ! fast turnaround : you will see several logo variants in three business days . satisfaction guaranteed : we provide unlimited amount of chanqes ; you can be sure : it wiil meet your needsand fit your business . flexibie discounts : logo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: . message report from your contact page . . . . / / ytu 855 rkq check the available reports you would like to receive : keep on top of the latest news , get great special deals now . . . it is complimentary , it costs nothing , you can quit anytime ! financial - stocks - loans - mortgage financial news & stock market government & politics / discussions credit cards & mortgage refinancing / loans health - fitness - holidays - travel online pharmacies discounts & specials general health & fitness tips / secrets alternative medicine & health care under booked vacations & special travel discounts mature intrests - dating general interest adultwebmasters - general adultwebmasters - unrestricted sites adultwebmasters - content buyers cassino ' s & online gamblinng dating services & personal ads send me 10 uncensored pictures daily ! this mail is never sent unsolicited , got it by error ? [ click here ] to be removed from our subscribers list ! ndtxcpfjspwwtrkaxnxg",1 +"Subject: your logo and visual identity from us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our carefui hand thesepowerful marketinq toois wili brinq a breath of fresh air into your business and make you stand out amongthe competitors . you are just a click away from your future success . click here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . just few examples : - norton internet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuii version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguage ! best reqards , valarie ",1 +"Subject: [ ilug ] business central bank of nigeria foreign remittance dept . tinubu square , lagos nigeria email - smith _ j @ mailsurf . com 23 th of august 2002 attn : president / ceo strictly private business proposal i am mr . johnson s . abu , the bills and exchange director at the foreignremittance department of the central bank of nigeria . i am writingyou this letter to ask for your support and cooperation to carrying thisbusiness opportunity in my department . we discovered abandoned the sumof us $ 37 , 400 , 000 . 00 ( thirty seven million four hundred thousand unitedstates dollars ) in an account that belong to one of our foreign customers , an american late engr . john creek ( junior ) an oil merchant with the federal government of nigeria who died along with his entire family of a wifeand two children in kenya airbus ( a 310 - 300 ) flight kq 430 in november 2000 . since we heard of his death , we have been expecting his next of kin tocome over and put claims for his money as the heir , because we cannotrelease the fund from his account unless someone applies for claims asthe next of kin to the deceased as indicated in our banking guidelines . unfortunately , neither their family member nor distant relative hasappeared to claim the said fund . upon this discovery , i and other officialsin my department have agreed to make business with you release the totalamount into your account as the heir of the fund since no one came forit or discovered either maintained account with our bank , other wisethe fund will be returned to the bank treasury as unclaimed fund . we have agreed that our ratio of sharing will be as stated thus : 30 % for you as foreign partner and 70 % for us the officials in my department . upon the successful completion of this transfer , my colleague and i willcome to your country and mind our share . it is from our 60 % we intendto import computer accessories into my country as way of recycling thefund . to commence this transaction we require you to immediately indicateyour interest by calling me or sending me a fax immediately on the abovetelefax # and enclose your private contact telephone # , fax # , full nameand address and your designated banking co - ordinates to enable us fileletter of claim to the appropriate department for necessary approvalsbefore the transfer can be made . note also , this transaction must be kept strictly confidential becauseof its nature . nb : please remember to give me your phone and fax no mr . johnson smith abu - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: ) . your message subject : just to her . . . was not delivered to : bastide . laurent @ bastide . info because : destinataire non unique . le carnet d ' adresses contient plusieurs entr?es correspondant ? laurent ( laurent @ bastide ) .",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . ail listed software is available for immediate download ! no need to wait 2 - 3 week for cd delivery ! just few exampies : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuii version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguaqe ! best regards , loni ",1 +"Subject: real time leads - no brokers your name : email address : telephone : company name : internet web site : clicking submit will send your request to op via email or call ( 206 ) 203 - 2737 you are receiving this e - mail because you are a registered user of latimes . com , usa today , or one of our affiliates . as a registered user , you may occasionally receive e - mail announcements from us regarding new features , products and services from latimes . com , calendarlive . com , our affiliates and select third party a dvertisers . for more information on how we protect your information , please read our privacy policy . if you do not wish to receive commercial email solicitations , click here and you may unsubscribe from receiving any such commercial email . we reserve the right to send you non - commercial communications on behalf of latimes . com , calendarlive . com and our affiliates ( e . g . , careerbuilder . com ) , when consistent with our privacy policy . if you do not wish to receive any e - mail communications from us , you will need to unregister from the site by clicking here . los angeles times , 202 west first street , 5 th floor - new media , los angeles , ca 90012 . copyright 2005 ",1 +"Subject: you don _ t know how to get into search engine results ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it wiii be invisibie virtually , which means efforts spent in vain . lf you want people to know about your website and boost your revenues , the only way to do that is to make your site visible in piaces where peopie search for information , i . e . submit your website in muitiple search engines . submit your website online and watch visitors stream to your e - business . best reqards , magdalenefranks _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: re : do you smoke ? noscv lookln 4 affordabowl cigarettez ? come chick it out here ! is mudguard that or swingable maybe humboldt giovanni ? i excisable don ' t chew frenzy not plaque a categoric renegotiable . if croon berlin then rem . ove me ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei designer 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter ix $ 80 adobe illustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion builder 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , laurice ",1 +"Subject: start your trading day with a bang homeland security investments the terror attacks on the united states on september 11 , 20 ol have changed the security landscape for the foreseeable future . both physical and | ogica | security have become paramount for al | industry segments , especially in the banking , nationa | resource and government sectors . according to giga , a whoily owned subsidiary of forrester research , woridwide demand for information security products and services is set to eciipse $ 46 b by 2005 . homeland security investments is a newsletter dedicated to providing our readers with information pertaining to investment opportunities in this | ucrative sector . as we know , events related to homeiand security happen with lightning speed . what we as investors can do is position ourseives in such a way as to take advantage of the current trends and be ready to capitaiize on events which have yet to happen . homeiand security investments is here to heip our readers do just that . with this in mind , it is with great excitement that we present vinobie , inc . this stock is expected to do big things in both the near and | ong terms . symbol : vnbl . ob current price : o . 08 short term target price : 0 . 35 12 month target price : 1 . 2 o * * * why we believe vnbl . ob will give big returns on investment * * * * at this time much of vnbl ' s focus is on rfid ( radio frequency identification ) technology . this is technoiogy which uses tiny sensors to transmit information about a person or object wireiessly . * vnbl is already an industry pioneer in the rfid personal location technology . * vnbl is deveioping a form of rfid technology which a | | ows companies and governments to wirelessly track their assets and resources . such technoiogy has huge potential in the protection and transportation of materiais designated "" high risk "" were they to fail into the wrong hands . * vnbl works on integration of the two afore mentioned systems in order to create "" high security space "" in locales where it is deemed necessary . locations which may take advantage of such systems are airports , sea ports , mines , nuclear facilities , and more . * as with ail stocks , news drives the short term price . fresh news has made vnbl a hot buy . news on vnbl malibu , calif . - - ( business wire ) - - june 16 , 2005 - - vinoble , inc . ( otcbb : vnbl - news ) , a holding company seeking to identify | ong - term growth opportunities in the areas of homeiand security , security information systems , and other security services , announced today that it plans to offer products and services that wi | | assist in the automation of the identification and contro | of equipment , assets , tools , and the reiated processes used in the oil & gas and petrochemica | industries . aithough small wireiessiy networked rfid sensors can monitor machines and equipment to detect possible probiems before they become serious , they can aiso deliver safety features within oi | wells . oil maybe trapped in different | ayers of rock , aiong with gas and water . detection of specific liquids can assist equipment in operating within a specific precise opportune moment to ensure certain adverse conditions do not occur , such as a weil filling with water . as with other rf based technology applications , rfid can aiso provide the safe transit of materials by only the authorized handier , and | imit the entry of personne | to specific | ocations . ensuring personne | safety is essential , shouid there be an emergency at a faciiity , rfid tags would enabie the customer to track and evaiuate its empioyee ' s safety and / or danger . this appiication technoiogy requires product and hardware that can operate in harsh and potentially hazardous conditions , but gives vaiuabie safety to the resources and assets that are vita | to the customer . rfid can also assist the customer ' s suppiy chain by tracking oi | , gas , and chemical products from extraction to refining to the saie at the retail | evel . vinoble ' s viewpoint as previousiy stated is that these applications are more than just a valuable too | to the mining industry , but as a protective measure of our country ' s natural resources and commodities against threat . preservation of these fueis and resources is important to the safety of u . s . industry and economy . the company beiieves that such offering service and technology application in the oil & gas and petrochemica | industry wiil further position vinoble in a rapidly expanding industry while taking advantage of access to the increasing capita | and global spending that the company wiil require for growth . the company ' s goal is to aiso provide a much - needed service at a cost manageable to even the smallest of businesses that can ' t afford to do without the safety of its personne | and assets in this current state of constant threat . this is outstanding news . the growth potential for this company is exceptional . in an aiready hot industry , vnbl . ob stands out as a truiy innovative pioneer . we see big things happening to this stock . information within this email contains "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beiiefs , pians , projections , objectives , goals , assumptions or future events or performance are not statements of historica | fact and may be "" forward looking statements . "" forward looking statements are based on expectations , estimates and projections at the time the statements are made that invoive a number of risks and uncertainties which couid cause actua | resuits or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" wil | , "" "" anticipates , "" "" estimates , "" "" beiieves , "" "" understands "" or that by statements indicating certain actions "" may , "" "" couid , "" or "" might "" occur . as with many micro - cap stocks , today ' s company has additional risk factors worth noting . those factors include : a limited operating history , the company advancing cash to related parties and a shareholder on an unsecured basis : one vendor , a reiated party through a majority stockholder , supplies ninety - seven percent of the company ' s raw materiais : reliance on two customers for over fifty percent of their business and numerous reiated party transactions and the need to raise capital . these factors and others are more fuliy speiled out in the company ' s sec filings . we urge you to read the fiiings before you invest . the rocket stock report does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misieading . ail information provided within this emai | pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises ail readers and subscribers to seek advice from a registered professiona | securities representative before deciding to trade in stocks featured within this emai | . none of the materia | within this report shail be construed as any kind of investment advice or soiicitation . many of these companies are on the verge of bankruptcy . you can lose al | your money by investing in this stock . the pubiisher of the rocket stock report is not a registered investment advisor . subscribers should not view information herein as | egal , tax , accounting or investment advice . any reference to past performance ( s ) of companies are specialiy seiected to be referenced based on the favorabie performance of these companies . you wouid need perfect timing to achieve the resuits in the exampies given . there can be no assurance of that happening . remember , as aiways , past performance is never indicative of future results and a thorough due diligence effort , inciuding a review of a company ' s filings , should be compieted prior to investing . in compiiance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discioses the receipt of tweive thousand do | | ars from a third party ( gem , inc . ) , not an officer , director or affiliate sharehoider for the circuiation of this report . gem , inc . has a position in the stock they wi | | seil at any time without notice . be aware of an inherent confiict of interest resulting from such compensation due to the fact that this is a paid advertisement and we are confiicted . ail factual information in this report was gathered from public sources , including but not limited to company websites , sec fiiings and company press releases . the rocket stock report beiieves this information to be reliabie but can make no guarantee as to its accuracy or completeness . use of the materia | within this email constitutes your acceptance of these terms .",1 +"Subject: use this handy interest calculator to get current interest information . kbrte use this handy rate calculator to get current interest availability data , without giving out any private or personal information . this was sent to you by an mediagroup for smartmortgageusa . if you have any questions , you may contact sm - usa at : offer up , attn : smartmortgageusa , p . o . box 78361 , san francisco , ca 94107 - 8361 . if you wish to exclude yourself from future sm - usa items please use this to go to the website and then use the choice at the bottom of the page . kfegdwwverzd",1 +"Subject: * * message you sent blocked by our bulk email filter * * your message to : ponddr @ nalu . net was blocked by our spam firewall . the email you sent with the following subject has not been delivered : subject : just to her . . .",1 +"Subject: impaired risk case of the month male 58 non - smoker face amount $ 3 , 000 , 000 5 ' 11 255 lbs . crohn ' s disease for 30 years 5 major intestinal surgeries steroid therapy for 30 years 1997 diabetes 1998 hypertension broker ' s commission : $ 60 , 598 ! ! let us turn your clients that have been declined , rated or have current health problems , into placeable life cases ! or please fill out the form below for more information name : e - mail : phone : city : state : for broker use only . not for public dissemination . we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - ) orderinq viagra oniine is a very convinient , fast and secure way ! miliions of peopie do it daily to save their privacy and money order here . . . ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei designer 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter lx $ 80 adobe illustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , tynisha ",1 +"Subject: onseek . com - site submission incomplete . the following url was submitted to onseek . com : http : / / www . datapest . net in order for your site to be listed , you need to confirm your submission by clicking the link below : important : onseek is a meta tag search engine . this means your site will not be added to our database unless it has title and meta description tags . to automatically generate these tags for your site ( at no cost ) and learn more about search engine optimization , visit submitexpress or netmechanic . need more visitors to your website ? check out our featured listings : for one low , flat fee you get : an attractive ad box - your choice of keywords - top 10 ranking in 45 + search engines - placement within 6 - 8 hrs ! for details , and to order , go to : build your traffc with abcsearch ! get $ 100 of fr - e - e qualified visitors get the traffc you want while increasing your roi . sign - up today and we will match any initial deposit up to $ 100 . geo - targeting , full reporting and results at the clck of a button ! get going at : http : / / www . abcsearch . com / advertisersplash . html start earning a residualincome with your website ! internet gaming is the fastest growing segment of web - based commerce today ! benefit from the popularity of online gaming with little or no and earn tremendous amounts of money . you can expect to earn 20 % to 40 % of the profts off each new player . signup for fre at : http : / / www . vipprofits . com guaranteed top placement on mamma . com 24 / 7 client center access ; live customer service ; geo - targeting by country . signup today and get $ 10 of free - clicks added to your initial deposit of $ 25 ! http : / / www . mamma . com / fr - e - e targeted traffc there ' s a fully automated traffic - generation system that can send 1000 s of targeted prospects to your website , every single day , for f - r - e - e ! it takes just 5 minutes to set it up , and it ' s totally "" viral "" . . . check it out at guaranteed top 10 positions in major search engines submitplus and indexexpress are the most powerfultools available today ! learn how you can turn your web site into a top contender within days without breaking the bank . http : / / www . submitplus . com / spn user - friendly seo program - try it f - r - e - e for 90 days a key factor in building website traffc is to use the best tools available . exactseek ' s seo solution gives you immediate access to 7 effective optimization tools . get higher ranking on the top global search engines starting today . http : / / www . exactseek . com / seotools . html note : onseek reserves the right to use the contact information collected during site submission to deliver notices regarding updates to our service , to provide fr - ee newsletters ( sitepronews or seo - news ) , or to to inform you of offers we believe are of value to webmasters and site owners . you may remove yourself from those mailings at anytime using the unsubscribe methods provided in those mailings or by clicking the link below . click here to unsubscribe note : unsubscribing will result in future site submissions being blocked . additional information about onseek ' s privacy policy can be found at : http : / / www . onseek . com / privacy . html or contact us by mail at : jayde online , inc . , suite 190 23 - 845 dakota street , winnipeg , mb canada r 2 m 5 m 3 . copyright 2003 onseek . com , all rights reserved ",1 +"Subject: breaking news about cable good day to you sir , do you like watching cable t . v . ? ppv : sports , movies , adult channels , hbo , cinemax , starz , ondemand , ect . and the best part is you can have all these channels with our product ! our website : filtersppv . com if you don ' t want this anymore , add / r to the domain above to goto our removal page . get back to you later , elvin c . simon , v projecthoneypot @ projecthoneypot . org",1 +"Subject: to your health - a guide to online pharmacies , drugs , and sexual well - being . get brand name drugs at wholesale pricing , next day shipping right to your door step . trust yourself . you know more than you think you do . above all , try something . it ' s a poor sort of memory that only works backward .",1 +"Subject: banner life upgraded to a + + effective february 8 , 2002 banner extended conversion privileges on opterm and potomac term . conversion on these products is now available for the duration of the guaranteed level premium period , or up to attained age 70 , whichever comes first . ( this includes the opterm 30 ! ) these 2 positive changes make banner life an industry leader in the term market . if you ' d like to see for yourself just how competitive they are . . . for broker and broker dealer use only - not for use with the general public . products not available in all states . this is a general account non - variable product * we don ' t want anybody to receive our mailings who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: levltrra , xana , merldll hello , try this revolutionary product , cialis soft tabs . cialis soft tabs is the new impotence treatment drug that everyone is talking about . soft tabs acts up to 36 hours , compare this to only two or three hours of viagra action ! the active ingredient is tadalafil , same as in brand cialis . want cheap cialis and other meds ? no embarasing doctors visits ! over 5 miiiion custome savings rs in 130 countries we charge a flat fee of $ 15 shipping world wide . all orders will be processed and dispatched within 24 hrs . via express mail . world delivery takes 7 - 14 days so look here and save ! http : / / osseously . net / index . php ? cid to be taken out , go here 7131",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialls has a iot of advantaqes over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it right now ! . ",1 +"Subject: an alternative to mlm that works greetings ! you are receiving this letter because you have expressed an interest in receiving information about online business opportunities . if this is erroneous then please accept my most sincere apology . this is a one - time mailing , so no removal is necessary . if you ' ve been burned , betrayed , and back - stabbed by multi - level marketing , mlm , then please read this letter . it could be the most important one that has ever landed in your inbox . multi - level marketing is a huge mistake for most people mlm has failed to deliver on its promises for the past 50 years . the pursuit of the "" mlm dream "" has cost hundreds of thousands of people their friends , their fortunes and their sacred honor . the fact is that mlm is fatally flawed , meaning that it cannot work for most people . the companies and the few who earn the big money in mlm are not going to tell you the real story . finally , there is someone who has the courage to cut through the hype and lies and tell the truth about mlm . here ' s good news there is an alternative to mlm that works , and works big ! if you haven ' t yet abandoned your dreams , then you need to see this . earning the kind of income you ' ve dreamed about is easier than you think ! with your permission , i ' d like to send you a brief letter that will tell you why mlm doesn ' t work for most people and will then introduce you to something so new and refreshing that you ' ll wonder why you haven ' t heard of this before . i promise that there will be no unwanted follow up , no sales pitch , no one will call you , and your email address will only be used to send you the information . period . to receive this free , life - changing information , simply click reply , type "" send info "" in the subject box and hit send . i ' ll get the information to you within 24 hours . just look for the words mlm wall of shame in your inbox . cordially , looking 4 money p . s . someone recently sent the letter to me and it has been the most eye - opening , financially beneficial information i have ever received . i honestly believe that you will feel the same way once you ' ve read it . and it ' s free !",1 +"Subject: v . i . a . g . r . a - the cheappesst prices do you still feel the power ? feeling good is around the corner ! enhance your erections http : / / buychepmeds . com / ? cid = viftxtol regards , rose craig phone : 111 - 428 - 9548 mobile : 762 - 346 - 1987 email : uclcyhsfvposuw @ iccas . com n . v ^ r http : / / buychepmeds . com / emover . php",1 +"Subject: re [ 15 ] : i ' ll give you . . microsoft xbox love stories go ahead . men u . s . postal service",1 +"Subject: any med for your girl to be happy ! your girl is unsatisfied with your potency ? don ' t wait until she finds another men ! click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and guaranteed effect ! here you buy it riqht from warehouse ! the store is verified by bbb and approved by vlsa ! ",1 +"Subject: save 70 % on laser toner and inkjet cartridges ! due to heavy demand from our customers we are extending the 5 % extra off coupon on all your purchases with coupon code rmscy 6 p 2 upto july ' 30 2002 and the offer is exclusively from us . you received this letter because you signed up to receive offers from one of our affiliate sites . to unsubscribe from our mailing list , online unsubscribe click here or by email click here ",1 +"Subject: delivery status notification - these recipients of your message have been processed by the mail server : antonioacm @ zipmail . com . br ; failed ; 5 . 2 . 2 ( mailbox full )",1 +"Subject: low cost high rated insurance . why pay more ? save up to 70 % on your life insurance ! get free life insurance quotes from the very best companies at the lowest rates . you can ' t predict the future , but you can always prepare for it . compare rates from top insurance companies around the country in our life and times , it ' s important to plan for your family ' s future , while being comfortable financially . choose the right life insurance policy today . insurance companies compete for your insurance . it ' s fast , easy , and best of all . . . free . click here for your free quote ! if you are in receipt of this email in error and / or wish to be removed from our list , please click here and type remove . if you reside in any state which prohibits e - mail solicitations for insurance , please disregard this email . ",1 +"Subject: cigarettes wholesale ! hywwzzlzd $ 19 . 95 and up ! buy cartons of cigarettes wholesale , starting at $ 19 . 95 . free shipping ! why pay state taxes ? 100 % legal . mailed from swiss bonded warehouse . for personal use only , must be 18 years of age and older , verified by credit card . aol users click here to be removed from future mailings , reply to this email with remove in the subject line .",1 +"Subject: learn the secrets of investing in real estate today ! your friend and personal mentor , lou vukas you are receiving this email because you requested to receive info and updates via email . to unsubscribe , reply to this email with "" unsubscribe "" in the subject or simply click on the following link : unsubscribe ",1 +"Subject: well , do you need it ? hello , welcome to pharmon unfavoured line s lighterage hop - one of the leading oniine ph organplayer armaceutical shops overhear v squander g a shortwave l foundation ll calomel la r bandar ac insurrectional l i squint s matchlock va plainness um andmanyother . - sav cleancut e over 50 % - worldwide sh oredressing lpplng - total confiden nightmare tiaiity - over 5 miiiion customers in pitched 130 countries have a nice day libertine !",1 +"Subject: equipment finance and leasing contact us today for a free consultation on the many options available to your company : your equipment loan and lease specialist www . . com reuben adams ra @ . com ( 800 ) 539 - 5327 ext 209 keystone capital 2100 main st . , ste . 104 irvine , ca 92614 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: premium online medication here kodachrome buddhism emilio get all your prescriptions in one location ! a whole range of tablets ! take a look ! and the costs are very low ! stop receiving promotional material now arrogate disposal caucasian consult ",1 +"Subject: http : / / www . jumpsociety . com hello , i have visited www . jumpsociety . com and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: re : got ink ? 21846 what have you been up to ? i don ' t know about you , but i am sick and tired of going down to the store to find out that your printer cartridges cost more than the printer itself ! i know how you feel - i print over 500 pages a day , and it feels like there is a vacuum sucking money out of my wallet ! now , this has got to stop because i know it doesn ' t cost the printer companies anywhere near what it costs me to do my office and school work ! well , it finally has . the superink solution . you ' re probably thinking to yourself , "" gosh darn , not another cheap knockoff printer cartridge ! "" like you , i was very skeptical at first , but my best friend & business associate said it helped her save over $ 100 a month on printer supplies . so i tried it . i mean , there was nothing to lose because they offer a 100 % satisfaction guarantee , up to a one - year warranty on all of their products and free shipping on all orders ! let me tell you , it was one of the best decisions i ' ve ever made . period . six months later , as i ' m writing this message to you , i ' ve gone from spending $ 1000 dollars a month on printer supplies to now only $ 475 ! and i haven ' t had to sacrifice the quality or service that i received from the local office supply store . in fact , the service is even better ! i ' ve had 1 defective cartridge since i started dealing with superink and they sent me a new replacement within 3 days , no questions asked . now , i can print all i want ! i was so happy with the results that i contacted their manufacturer and got permission to be a reseller - at a big discount . i want to help other people to avoid getting jipped by the printer companies like i did . because a penny saved is a penny earned ! i give you my personal pledge the superink soltuion will absolutely work for you . if it doesn ' t , you can return your order anytime for a full refund . if you are frustrated with dishing out money like it is water to the printer companies , or tired of poor quality ink & toner cartridges , then i recommend - the superink solution . you ' re probably asking yourself , "" ok , so how do we save all this money without losing quality and service ? "" modern technology has provided superink with unique , revolutionary methods of wax molding that allow the ink & toner to ' settle ' , which prevents any substantial damage that would occur during shipping and handling . nothing "" magic "" about it - just quality & savings , big savings ! here is the bottom line . . . i can help you save 30 % - 70 % per week / per month / per year or per lifetime by purchasing any of our ink & toner supplies . just try it once , you ' ll keep coming back - there ' s nothing to lose , and much money to be saved ! 100 % satisfaction guaranteed . you will be able to print as much as you want without wasting money or sacrificing quality - guaranteed . that is my pledge to you . to order from the superink solution on our secure server , just click on the link below ( or enter it into your browser ) : http : / / www . superink . net / if you have difficulty accessing the website above , please try contacting us toll - free at 1 - 800 - 758 - 8084 - thanks ! sincerely - bruce tipton if you do not wish to receive any more emails from me , please send an email to "" print 2 @ btamail . net . cn "" requesting to be removed . thank you and sorry for any inconvenience . ",1 +"Subject: we owe you lots of money dear applicant , after further review upon receiving your application your current mortgage qualifies for a 4 . 75 rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting : http : / / www . wsrefi . net / ? id = j 22 we look foward to hearing from you . thank you , heather grant , account managerlpc and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - not interested ? - > www . wsrefi . net / book . php",1 +"Subject: considered unsolicited bulk email from you your message to : - > distmatu @ agrocom . com . ar was considered unsolicited bulk e - mail ( ube ) . subject : just to her . . . return - path : delivery of the email was stopped !",1 +"Subject: i know your company ! it is really hard to recollect a company : the market is full of suggestions and the information is overwhelming ; but a good catchy logo , stylish stationery and outstanding website will make the task much easier . we do not promise that having ordered a logo your company will automatically become a world leader : it is quite clear that without good products , effective business organization and practicable aim it will be hot at nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system lets you change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be sure that you will love the result of this collaboration . have a look at our portfolio",1 +"Subject: reading to children has proven to increase their vocabulary obum * this message was transferred with a trial version of communigate ( tm ) pro * missed all the news this weekend ? were you too busy treating the special moms in your life like the goddesses they are ? well good for you ! now follow the link to see what you may have missed this weekend ! click here to view this important announcement has opened their doors for this awesome offer . just check it out . we send it to you and you may review it for 30 days . no payment upfront and no obligations if you don ' t like it , just send it back and you wont be charged this newsletter is not unsolicited ! the email address has been subscribed and confirmed to our mailing list which means that someone with access to this email account verified the subscription per email . if you would like to stop receiving this newsletter : click here to u n s u b s c r i b e to 48 5 - 13 cl 4 p be transported to the world of middle earth ",1 +"Subject: need an outstanding logo now ? working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visual imaqe of your company by creatinq an outstandinq loqo , presentable stationery items and professionai website . these marketing toois will significantly contributeto success of your business . take a iook at our work samples , hot deal packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . ail iisted software is availabie for immediate downioad ! no need to wait 2 - 3 week for cd deiivery ! just few examples : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuii version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native language ! best regards , ava ",1 +"Subject: very cool offrr how to save on your medlcations gabion over 70 % . pharms select hop - successfull and proven popcorn way to save your secret money . spinal v codicil ag metayer al l noctambulizm u skilly l r rochet a ginnery cl i calculating sva gudgeon l doomed m andmanyother . best prlces extrude . worldwide shlpp confront lng . easy or hypothesis der form . total confiden conquest tiaiity . 250 , 000 s hyssop atisfied customers . order t egoistic oday and save !",1 +"Subject: enhance your anatomy i ' ve been using your product for 4 months now . i ' ve increased my length from 2 to nearly 6 . your product has saved my sex life . - matt , fl my girlfriend loves the results , but she doesn ' t know what i do . she thinks it ' s natural - thomas , ca pleasure your partner every time with a bigger , longer , stronger unit realistic gains quickly to be a stud press here if that is so you probably owe your existence to those laws oranjestad , aruba , po b 1200 here , then , i made my home ; and although it is a lonely place i amuse myself making rustles and flutters , and so get along very nicelywhen the braided man had completed this strange tale dorothy nearly laughed , because it was all so absurd ; but the wizard tapped his forehead significantly , to indicate that he thought the poor man was crazy the demon nodded doubtless it was intended that when mankind became intelligent enough and advanced enough to strike the master key , you and all your devices would not only be necessary and acceptable to them , but the world would be prepared for their general use ",1 +"Subject: dowlnoadable 70 + xxx vldeos with pornstars - x 936 we have the hottest pornostars pics and videos inside . thousands of new photo and clips , including pornostars movies . see hot pornostars videos now ! click here for http : / / black . info . babyhom . info / cool photos and video clips and dvd movies - - - - - - - - - - - - - - bantus anther candy agnomen binge bushnell chigger conflict aural collaborate cultivable compression",1 +"Subject: get the software you need , now ! soft at incredibly low prices the deepest definition of youth is life as yet untouched by tragedy . humankind cannot stand very much reality .",1 +"Subject: you ' ve received a greeting from a family member ! d > you have just received a virtual postcard from a family member ! . you can pick up your postcard at the following web address : . . if you can ' t click on the web address above , you can also visit 1001 postcards at http : / / www . postcards . org / postcards / and enter your pickup code , which is : a 91 - valets - cloud - mad . ( your postcard will be available for 60 days . ) . oh - - and if you ' d like to reply with a postcard , you can do so by visiting this web address : http : / / www 2 . postcards . org / ( or you can simply click the reply to this postcard button beneath your postcard ! ) . we hope you enjoy your postcard , and if you do , please take a moment to send a few yourself ! . regards , 1001 postcards http : / / www . postcards . org / postcards / ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . all listed software is avaiiable for immediate download ! no need to wait 2 - 3 week for cd deiivery ! just few exampies : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuli version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianquage ! best regards , eilis ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professional edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corel painter lx $ 80 adobe illustrator cs $ 80 adobe indesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 aiias motion builder 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , josefine ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei designer 10 $ 90 quickbooks 2004 professional edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe goiive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter lx $ 80 adobe iilustrator cs $ 80 adobe indesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cool 3 d production studio 1 . 0 . 1 $ 90 alias motion builder 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , terri ",1 +"Subject: guaranteed to re - grow your hair . . . 3 things you should know about 1 . 70 men and women were losing their hair . 2 . 70 men and women tried the new hairmagic discovery . 3 . 70 men and women started growing hair again in just 4 weeks . here ' s your chance to join them for less than $ 2 a day . . ! to order now click here and visit our website yes , that ' s right . all 70 subjects grew hair again . that  s the essential fact about hairmagic it grew hair . losing your hair ? don ' t feel too badly . because it  s happening to 80 - million americans . and here ' s another pertinent fact . over the past 3 decades , all kinds of enterprising companies have come out with literally hundreds of miracle products and procedures , promising to restore that lost hair . but guess what ? there are still 80 - million americans who are still losing their hair . sounds like those miracle cures weren ' t so miraculous after all . in fact , many of them are virtually useless . sounds like we need a totally new approach , and now there is one : hairmagic gulf biomedical corporation discovered a simple but elusive fact : health h hair . consequently , hairmagic prescribes 2 different capsules a day one capsule to restore the health of your body and scalp . one capsule to stimulate the new growth of hair . with our 70 men and women , the two worked hand in hand to grow hair . it  s all explained on our website : www . hairmagicinfo . com to order hairmagic now hairmagic is available in a 30 - day supply package containing capsules 1 2 . the price is $ 59 + $ 5 for shipping and handling , or a total of $ 64 per 30 - day supply . to order now click here and visit our website hairmagic gulf biomedical corporation 1218 autrey , suite 2 houston , tx 77006 to remove this email address from further mailings click on the link below while connected to the internet . remove me ",1 +"Subject: entrust your visual identity to us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of logos , stationery and web - sites . under our carefui hand thesepowerfui marketinq toois wili brinq a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . click here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: this free 7 - day trial will prove that you can get ready for the beach . if you wish to unsubscribe click here or write to ultima group , inc . 1380 garnet avenue , e 520 san diego , ca 92109 nbtnsbpa",1 +"Subject: you want to submit your website to search engines but do not know how to do it ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it wiil be invisibie virtually , which means efforts spent in vain . if you want peopie to know about your website and boost your revenues , the only way to do that is to make your site visibie in places where people search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best regards , marhtadowns _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: earn extra income * * want to make a million bucks this year ? me too but it ' s probably not going happen ! however if you ' re looking for the opportunity to make a couple thousand a week , working from home with your pc , we need to talk . if you ' re over 18 and a us resident , just click reply send me your name , state , complete telephone number , and the best time to contact you . i will personally speak with you within 48 hours . have a great day ! removal instructions : * * * * * * * * * * * * * * * * * * * * * * * * * to be removed from this list please reply with "" remove "" in the subject line . please allow a few days for removal to take effect . thanks ! ! - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: a chance to get new logo now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visual imaqe of your company by creatinq an outstandinq logo , presentabie stationery items and professionai website . these marketinq toois wili significantly contributeto success of your business . take a look at our work samples , hot deal packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be iost among competitors . get your ioqo , business stationery or website done riqht now ! fast turnaround : you wili see several logo variants in three business days . satisfaction guaranteed : we provide unlimited amount of changes ; you can be sure : it wili meet your needsand fit your business . flexibie discounts : loqo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: multiply your customer base ! dear ricardol , cost effective direct email advertising promote your business for as low as $ 50 per 1 million email addresses maximize your marketing dollars ! complete and fax this information form to 309 - 407 - 7378 . a consultant will contact you to discuss your marketing needs . website : ( not required ) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ * comments : ( provide details , pricing , etc . on the products and services you wish to market ) ",1 +"Subject: 1000 ' s of computer products on sale now ! computer shopping network we deliver perfect match results every time ! 100 , 000 ' s of computer products the best deals from the top merchants shop , compare pricing , and save ! now it ' s easy to shop , compareproducts andpricing all in one place and it ' s free ! click here to go to computer shopping network www . . com computer shopping network 6701 sierra ct . , ste . e dublin , ca 94568 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: congratulations on your 6 new signups we guarantee you free signups before you ever pay a penny ! we will show you the money before you ever take out your wallet . sign up for free and test drive our system . no obligation whatsoever . no time limit on the test drive . our system is so powerful that the system enrolled over 400 people into my downline the first week . to get signed up for free and take a test drive click the link : the national attention drawn by this program will drive this program with incredible momentum ! don ' t wait , if you wait , the next 400 people will be above you . signup now for your free test drive and have the next 400 below you ! all the best , daniel financially independent home business owner 1 - 800 - 242 - 0363 , mailbox 1993 to be excluded from future notices : ",1 +"Subject: claim your free $ 1000 home depot gift card . claim your home depot gift card - a $ 1000 value . were sure you can find a use for this gift card in your area . ( ) . by exclusiverewards ystyxapg",1 +"Subject: http : / / www . efi . ie / http : / / www . efi . ie / index - 1998 - 07 - 16 . html easyadpost . com - - promote your products and services on thousands of classified sites . simply the best way to sell on the internet ! no time to post an ad for your business ? struggling with numerous classified sites ? seeking effective means to promote your business ? all of these are great reasons for you to visit easyadpost . com . currently easyadpost . com boasts a database of 120 , 000 + popular classified sites , to which we will submit your classified ad quickly and effectively . we will as well submit your business site url or logo url to hundreds of thousands of search engines and directories worldwide . quickly and effectively , easyadpost . com will attract potentially millions of people to your business on the internet , without any hidden cost for advertising ! visit links below for more details to learn the generals about easyadpost , view http : / / www . easyadpost . com to browse the sample list of classified sites , go to http : / / www . easyadpost . com / sample . php questions or comments ? post your query form to us at http : / / www . easyadpost . com / aboutus . php spend your market dollar wisely and good luck to your business ! peterson slade customer @ easyadpost . com easyadpost . com ",1 +"Subject: give your pc a tune - up with system mechanic if you want to make sure that emails from realnetworks go to your inbox and not to your junk mail folder , add news @ real - email . net to your address book . your ultimate arsenal for improving pc performance ! system mechanic uses 15 powerful tools to keep your pc running faster , cleaner and error - free . download now take your pc to a whole new level of performance . increase download speeds by up to 300 % optimize internet and network connections find and remove duplicate , obsolete and junk files permanently delete files you don ' t want others to see find and repair broken windows shortcuts ensure your privacy on the internet - works with ie and netscape safely install new software and programs so much more ! download system mechanic now if you do not wish to receive e - mails from us in the future , click here to unsubscribe . need customer support ? contact us at : http : / / service . real . com / realone have questions regarding our email privacy policy ? contact us at : email privacy policy group realnetworks , inc . p . o . box 91123 seattle , wa 98111 - 9223 privacy policy 2005 realnetworks , inc . patents pending . all rights reserved . realnetworks , realplayer and real . com are trademarks or registered trademarks of realnetworks , inc . all other companies or products listed herein are trademarks or registered trademarks of their respective owners . ",1 +"Subject: ( no subject ) want to watch hardcore porn movies ? our site is voted the # 1 broadband movie site online ! click this link to watch our steaming chix in action : to unsubscribe from our list enter you email here : http : / / www . froggyhost . com / clubs / remove / [ jk 9 ^ "" : } h & * tgobk 5 nkiys 5 ] http : / / xent . com / mailman / listinfo / fork",1 +"Subject: all star break special : get a flag to support your favorite team - free shipping armstrong flag company free shipping free car flag ( min . order $ 35 . 00 ) 5 ' white pole w / mounting bracket $ 24 . 00 ea order today armstrong flag company 20 park st . winchester , ma 01890 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: congratulations on your 6 new signups we guarantee you signups before you ever pay a penny ! we will show you the green before you ever take out your wallet . sign up for free and test drive our system . no obligation whatsoever . no time limit on the test drive . our system is so powerful that the system enrolled over 400 people into my downline the first week . to get signed up for free and take a test drive use the link : be sure to request info if the subject line does not ! the national attention drawn by this program will drive this program with incredible momentum ! don ' t wait , if you wait , the next 400 people will be above you . take your free test drive and have the next 400 below you ! be sure to request info if the subject line does not ! all the best , daniel financially independent home business owner to be excluded from future notices : ",1 +"Subject: returned mail : response error the original message was received at tue , 19 jul 2005 11 : 57 : 45 + 0100 - - - - - the following addresses had permanent fatal errors - - - - - - - - - - transcript of session follows - - - - - . . . while talking to mailin - 02 . mx . aol . com > > > data < < < 554 transaction failed",1 +"Subject: tired of your high mortgage rate - refinance today . . . . . dear homeowner , interest rates are at their lowest point in 40 years ! we help you find the best rate for your situation by matching your needs with hundreds of lenders ! home improvement , refinance , second mortgage , home equity loans , and much , much more ! you ' re eligible even with less than perfect credit ! this service is 100 % free to home owners and new home buyers without any obligation . where others say no , we say yes ! ! ! http : / / www 282 . fastwebsnet . com / mtg take just 2 minutes to complete the following form . there is no obligation , all information is kept strictly confidential , and you must be at least 18 years of age . service is available within the united states only . this service is fast and free . http : / / www 282 . fastwebsnet . com / mtg to opt out : ",1 +"Subject: re : [ 3 ] this will be our closing effort we have aimed to speak to you on multiple possibilities and we await your response now ! your exisiting loan situation certifies you for up to a 3 . 60 % lower rate . however , since our previous attempts to speak to you have failed , this will be our last notice to close for you the lower rate . please end this final step upon receiving this notice immediately , and complete your request for information now . apply here . if your decision is not to make use of this final offer going here will help you to do so .",1 +"Subject: the best just got better male , age 55 , best , $ 500 , 000 face amount , annual premiums ge lifetime protectorsm lifetime premiuml $ 6 , 252 csv = $ 1 @ age 1002 $ 5 , 356 csv = face amt @ age 1002 $ 5 , 841 product j $ 6 , 365 $ 7 , 699 $ 7 , 970 product i $ 6 , 531 $ 6 , 809 $ 7 , 327 product l $ 6 , 348 $ 6 , 250 $ 6 , 630 product s $ 6 , 538 $ 5 , 709 $ 6 , 550 product u $ 8 , 950 $ 5 , 827 $ 6 , 185 product t $ 7 , 581 $ 6 , 729 $ 7 , 372 product m $ 7 , 637 $ 6 , 711 $ 6 , 916 product g $ 7 , 044 $ 5 , 529 $ 6 , 207 source : industry market research conducted and compiled by ge financial , august 2002 . ge lifetime protectorsm is subject to the terms , issue limitations and conditions of policy form nos . ul geo 2 et al for ge capital assurance and ulfclo 2 et al for first colony life , which include exclusion periods for death by suicide . ge lifetime protectorsm is not available in all states . lpremium that guarantees coverage for the life of the insured according to the companies ' provisions . companies refer to premium by different names and the conditions for the guarantee will vary from company to company . for ge lifetime protectorsm , this refers to the designated premium requirement : subject to the policy provisions , policy remains in force as long as the sum of the premiums paid , less the reduction in policy value for all partial withdrawals , equals or exceeds the cumulative total of the designated monthly premiums from the policy date to the end of the current policy month . 2 premiums calculated assuming each company ' s current crediting rate and charges . each column represents the premium required annually to age 100 to achieve target cash surrender value stated in the column heading . underwritten by general electric capital assurance company first colony life insurance company lynchburg , va members of the ge financial family of companies we don ' t want anyone to receive our mailings who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: new love tabs shop . visit our llcensed online dragstore for the best inexpensive love drags ! viagra , cialis , softtabs and many other love enhancers ail in one ! operative support , fast shipping , secure payment processing and compiete confidentiaiity ! click here to find your verifled by bbb and approved by visa iove pil 1 ! ",1 +"Subject: hey ! tell your friends to hit me up hi i ` ve found cool site , it is a lot of programs and all of them cost very cheaply ! it ' s a url http : / / www . softforfast . info / and you can download them right after purhases ! you will no need to wait 2 - 3 week for cd delivery . - - - - - - - - - - - - - bellum babbitt allegoric atchison",1 +"Subject: send the love home with an online photo album software for system builders , resellers , and hardware purchasers only . pride sullies the noblest character . a person should want to live , if only out of curiosity .",1 +"Subject: make some extra money fast read how here it is real simple i am totaly serious also on msn : start chattingilisten to musicihouse homeitry online datingidaily horoscopes to stop getting this e - mail , or change how often it arrives , go to your e - mail settings . need help ? if you ' ve forgotten your password , please go to passport member services . for other questions or feedback , go to our contact us page . if you do not want to receive future e - mail from this msn group , or if you received this message by mistake , please click the "" remove "" link below . on the pre - addressed e - mail message that opens , simply click "" send "" . your e - mail address will be deleted from this group ' s mailing list . remove my e - mail address from one income living . ",1 +"Subject: [ ilug ] assistance from : col . michael bundu . democratic republic of congo . tel no : your country intl . access code + 8821652098236 email : mikebundu @ rediffmail . com dear sir / madam seeking your immediate assistance . please permit me to make your acquaintance in so informal a manner . this is necessitated by my urgent need to reach a dependable and trust worthy foreign partner . this request may seem strange and unsolicited but i crave your indulgence and pray that you view it seriously . my name is col . michael bundu of the democratic republic of congo and one of the close aides to the former president of the democratic republic of congo laurent kabila of blessed memory , may his soul rest in peace . due to the military campaign of laurent kabila to force out the rebels in my country , i and some of my colleagues were instructed by late president kabila to go abroad to purchase arms and ammunition worth of twenty million , five hundred thousand united states dollars only ( us $ 20 , 500 , 000 . 00 ) to fight the rebel group . we were then given this money privately by the then president , laurent kabila , without the knowledge of other cabinet members . but when president kabila was killed in a bloody shoot - out by one of his bodyguards a day before we were schedule to travel out of congo , we immediately decided to put the funds into a private security company here in congo for safe keeping . the security of the said amount is presently being threatened here following the arrest and seizure of properties of col . rasheidi karesava ( one of the aides to laurent kabila ) a tribesman , and some other military personnel from our same tribe , by the new president of the democratic republic of congo , the son of late president laurent kabila , joseph kabila . in view of this , we need a reliable and trustworthy foreign partner who can assist us to move this money out of my country as the beneficiary . we have sufficient ' ' contacts ' ' here to move the fund under diplomatic cover to a security company in europe in your name . this is to ensure that the diplomatic baggage is marked ' ' confidential ' ' and it will not pass through normal custom / airport screening and clearance . our inability to move this money out of congo all this while stems from our lack of trust of our supposed good friends ( western countries ) who suddenly became hostile to those of us who worked with the late president kabila , immediately after his son took office . though we have neither seen nor met each other , the information we gathered from an associate who has worked in your country has encouraged and convinced us that with your sincere assistance , this transaction will be properly handled with modesty and honesty to a huge success within two weeks . the said money is a state fund and therefore requires a total confidentiality . we would please need you to stand on our behalf as the beneficiary of this fund in europe . this is because we are under restricted movement and watch and hence we want to be very careful in order not to lose this fund which we have worked so hard for . thus , if you are willing to assist us to move this fund out of congo , you can contact me through my email addresses , tel / fax nos . above with your telephone , fax number and personal information to enable us discuss the modalities and what will be your share ( percentage ) for assisting us . please note that there are no risks involved in this deal as everyone ' s security is guaranteed if we follow the required guidelines . i will hence furnish you with further details of this deal as soon as i am assured of your sincere interest to assist us . i must use this opportunity and medium to implore you to exercise the utmost indulgence to keep this matter extraordinarily confidential , whatever your decision , while i await your prompt response . thank you and god bless . best regards col . michael bundu ( rtd ) . m _ bundu @ rediffmail . com n \ b . when you are calling my line , you dial your country intl . access code , then you dial directly , do not include my country code i . e . ( 243 ) . just dial your country intl . access code + 88216 52098236 . you can also contact me through the above email addresses . - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: 75 % reduction in road accidents august , 2002 dear sir / madam , in case you have received this mail earlier , kindly ignore this mail . it may have been re - sent to you by mistake . ours is not a mailing list and we have no intention of sending any regular mails to anybody . we have devised a set of systems , which can reduce the damage caused to vehicles and deaths and injury caused to passengers and pedestrians in vehicular accidents by more than seventy - five percent we have already filed and are in process of filing further , multiple and appropriate disclosure documents , provisional patent applications at the united states patent & trademarks office ( uspto ) , and also applications under the patent co - operation treaty at world intellectual property organization ( wipo ) at geneva . there is absolutely no doubt that our idea is new and innovative . moreover , we are very confident and very sure that this will help reducing / minimizing human suffering to a very large extent . there is no doubt that the product devised by us will change the face of the earth forever . brief details relating to our product are detailed in the annexures under the following headings : statistics advantages options economics we are looking for the followings : 01 . business consultancy and advice regarding the most viable , practical and profitable course of action under the circumstances and also consultancy on patents one person moderately injured every three seconds ; one person mildly injured every three seconds . ) ( c ) current yearly automobile sales worldwide - more than 1000 billion us $ . ( d ) number of automobiles worldwide - more than 1000 billion pieces ( e ) daily loss caused due to vehicular accidents worldwide more than 2 billion us $ per day . ( 2 % of the worldwide gross national product of more than 36500 billion us $ = more than 730 us $ per year = more than 2 billion us $ per day ) theadvantages of the technology developed by us : a . the introduction of such technology will dramatically reduce the expenses of auto - insurance . this reduction of insurance cost will be at par with or even more that the expenses incurred towards the introduction of such technology in modern day vehicles . accordingly , the life insurance premier will also undergo drastic reduction . additionally , because of saving of lives , the outgo of the insurance companies will reduce substantially . b . as per the who studies and projections , road accidents occupy the number nine positions by way of causes of death in the world today . it is projected by who that by the year 2020 they will occupy the number three positions , next only to heart disease and depression . by introduction of this technology , we are sure that this will not happen . on the contrary there will be massive reduction in the number of deaths due to road accidents and road accidents may not figure on the list of major causes of death , in the year 2020 at all . c . this technology will therefore , make all vehicles cheaper and safer . not only will the cost be reduced , safety which is priceless in itself , will also be greatly enhanced . as and when the regular patent application is filed and patent is granted , the life of the patent will be 20 years . even at the current levels , with road accidents placed at number nine on the who list as a major cause of death , there is a daily loss of two billion us $ . even at the present level , over a period of twenty years , without any interest and without any compounding , this loss works out to be : 2 billion us $ x 365 days x 20 years - 14 , 600 billion us $ . d . our technology will ensure that at least seventy - five percent of the above losses are prevented . such figure works out to be more that 10 , 000 billion us $ . it is important to note that this is the projection at the current level . as per the future projections , the incidents of road accidents are expected to increase . hence , the figure is likely to be increase very substantially . in addition the time factor and the interest factor will inflate this figure further . e . at the current levels , more than 1 . 2 million persons are dying every year due to road accidents . even at the current rates , more than 24 million lives will be lost in road accidents over the next twenty years ( i . e . life of the patent , when granted ) . besides , at the current levels . 3 . 2 million people are injured every year . in the next twenty years , the number of people injured due to road accident , will therefore be more than half a billion . f . if we add to that the personal , physical and psychological traumas to those directly involved in and also to those who are associated with the people involved in the road accidents . the trauma and the misery and henceforth the value of the savings , are all unmeasurable in quantities , presently known to human kind . g . considering the figures and dynamics as explained hereinabove , it may not be improper or out of place to compare this technology with the introduction of electricity , computer or aircrafts in terms of its value to mankind . h . the benefits of this technology will be so obvious and essential that , in the very near future , the use of this technology will become unavoidable . it should and will become mandatory by law , to install such technology and the installation of such technology should and will be a pre - requisite for granting or renewal of the registration and license of all vehicles in future . i . as described hereinabove ; this technology and its utility are incomparable , outthought of , and unheard of till date . it will open a new floodgate in human travel and safety measures . in future , it can and will be applied to other mode of transport , like aircrafts and trains also . . among other things , we have the following options available to us : - options available to us : - a - outright sale ( a ) immediate outright sale of the idea and the concept along with our filed applications for one time lump sum consideration . ( b ) further development of the concept and further filing of patent and all patent related applications , before taking steps as outlined in "" a "" . the process ( b ) will obviously increase the realization in terms of price . b - licencing options i ) new vehicles - granting of licenses to manufacturers of automobiles , individually or collectively , all over the world for incorporation in the automobiles to be manufactured in future on fixed time or per piece basis . ii ) conversion of existing vehicles - to independent agents for conversion of the existing more than 1000 billion vehicles all over the world . c - combined options a collaborative arrangement with some private and / or government agency wherein we receive a certain down payment and then jointly distribute the licensing rights on a pre - decided sharing ( partnership ) arrangement . the economics of the project will be as follows : - 1 ) in case any / all processes and systems described by us are incorporated in the design of new vehicles and the new vehicles are manufactured in accordance with the modified designs , the cost escalation may not be more than 5 % to 8 % , and the safety and the protection will be ten times ( more than ) the price escalation . hence , drop in insurance premier will compensate for the cost escalation . 2 ) in case , the existing vehicles are modified , the cost involved will be approximately 10 % to 15 % of the value of the vehicle . but partial modifications at a lower cost , which will give partial protection , may also be carried out . as a thumb rule , the cost of modification in percentage terms will be about one fifth of the percentage of safety and protection provided . 3 ) in case the value of the vehicles is low or the life of the vehicle is about to expire , the partial modifications may be practically and economically viable , as incorporation onto a new vehicle is relatively less expensive and more protective . 4 ) there are more than 1000 billion motor vehicles in the world at present . besides there are an unspecified number of non - motorized ehicles . 5 ) almost all of them can be converted in phased manner to a variable degree . the cost of conversion will be directly proportional to their current market value and the safety shield to be generated there from . 6 ) among the motorised vehicles , the conversion cost may work out of few dollars for every percent of safety shield created the exact calculation can be worked out , but over all , some of the methods may provide more safety at lower cost compared to the other which may differ in efficiency . 7 ) even if we consider a very vague and approximate cost of conversion of 300 us $ per vehicle , the conversion industry works out to be worth 3 , 00 , 000 billion us $ . 8 ) realising the potential of the product in terms of human safety , it will be reasonable to presume that majority of such conversion will be completed over a period of three years from the starting date . 9 ) as pointed hereinabove , the size of the conversion industry may be estimated to , in the range of 1 , 00 , 000 billion us $ per year over the next three years . 10 ) alternatively , considering the diversity of available motorised vehicles all over the world , conversion licensing can also be commercially viable proposition . for such conversion , licenses can be granted on - line , on receipt of on - line payments . in that case , different rates for granting conversion to vehicles having specific registration numbers can be granted in accordance with and in proportion to the size , carrying capacity and the engine power of the vehicle . 11 ) in case , licensing is done , the creation and installation of the concerned systems will be done by the end - user , as per his circumstances and needs . however , piracy is likely to be a major problem in such licensing . 12 ) it is likely that as and when the systems are introduced in the motorised vehicles , unusual and unprecedented demand of new vehicles is created . this will result in massive rejection of the vehicles currently playing all over the world and stimulate an entirely new market as far as motorised vehicle is concerned . the size of such market is difficult to either comprehend and / or estimate . p . s . 1 ) some of the figures have been rounded off but generally the figures are correct . 2 ) we have tried to keep this communication brief and to the point . more details , including website references are available with us and can be provided , if required . ",1 +"Subject: it ' s mariah from dating service i ' m mariah , the girl next door . im searching for someone to be with me . i ' ve been searching for hot guy to hangout with . sometimes i get real lonely . i read online and decided to ask around if someone wants to chat online . if you are interested in my webcam to see how i look feel free to visit me . http : / / lastmansitting . com / mc 26 /",1 +"Subject: judicial judgments - child support money judgements child support detective be on top . determine your work schedule . from anywhere . current associates earning 5 , 000 us to 12 , 000 us per / mo . large profit handling money judgments . impressive training and support . http : / / n . 1 c 24 . greatitemsweblines . com / b / detailed information or to stop receiving or to see our address . if our side wins i may get a chance to recover some of my property . it ' s a slim chance , of course , but it ' s the only hope i have left that very evening an opportunity occurred for rob to win glory in the eyes of his new friends",1 +"Subject: we build the internet . webxperts . com ( design / programming / consultation ) if this flyer does not appear correctly and / or images do not appear , please click the following link : http : / / www . webxperts . com . your email address was obtained from a purchased list . you are receiving this from eluxmedia llc , and are a part of their mailing list . if you wish to unsubscribe from this list , please click here and enter your name into the remove box . if you have previously unsubscribed and are still receiving this message , you may email our abuse control center . ",1 +"Subject: credit is no factor hows it been going , visioson @ hpp . za . net ? we tried contacting you about your low intrest rate . you have qualified for the lowest rate in years . your current status : $ 345 , 000 for $ 227 a month . your credit has already been reviewed / approved . please view your details at our site below : anyhgh . com bye , anastasia labovitz edwards : . . . more negative attacks - - aren ' t you sick of it ? . i made my original programs available to the teachers around me . they were getting the same kind of success . i finally decided i had to make my noun program available to teachers and parents around the nation . we have been working on it for over 2 years . many of you have waited patiently . thank you for your patience . .",1 +"Subject: your help dear sir , i am mrs mariam abacha , wife of the late nigerian head of state , general sani abacha who died on the 8 th of june 1998 while still on active duty . i am contacting you in view of the fact that we will be of great assistance to each other likewise developing a cordial relationship . i currently have within my reach the sum of thirty six million united states dollars ( us $ 36 , 000 , 000 ) in cash , which i intend to use for investment purposes specifically in your country . this money came as a result of a payback contract deal between my late husband and a russian firm on our country ' s multi - billion dollars ajaokuta steel plant . the russian partners returned my husbands share of us $ 36 , 000 , 000 after his death and lodge it with my late husband ' s security company in nigeria of which i am a director . right now the new civilian government have intensified their probe on my husband ' s financial resources and they have revoked our licenses that allows us to own a financial and oil company . in view of this , i acted very fast to withdraw the us $ 36 , 000 , 000 from the company ' s vault and deposited it in a privately erected security safe abroad . no record ever existed concerning the money neither is the money traceable by the government because there is no documentation showing that we received the money from the russians . due to the current situation in the country concerning government attitude towards my family , it has become quite impossible for me to make use of this money within , thus i seek assistance to transfer this money into your safe bank account . on your consent , i shall expect you to contact me urgently to enable us discuss details of this transaction . bearing in mind that your assistance is needed to transfer the funds , i propose a commission of 20 % of the total sum to you for the expected services and assistance . your urgent response is highly needed so as to stop further contacts . all correspondent should be forwarded to this email : zenab . m @ ompadec . zzn . con or you can call my son mobile : hamza 234 - 8023137978 i use this opportunity to implore you to exercise the most utmost indulgence to keep this matter extra ordinarily confidential what ever your decision while i await your prompt response . best personal regards , mrs mariam abacha . - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: garden ornaments | ppu our delightful garden ornaments combine the finest craftsmanship in woodworking with the lastest technology in paints and hardware : we are the world ' s biggest whirligig maker . sincerely , studio t . inc . , usa the home of heller whirligigs remove : e - mail based commercial communication avoids unnecessary spending on catalogs and paper , and helps to preserve valuable natural resources such as forests and oil . we do not wish to share our valuable information about whirligigs with those who are not interested . should you not wish to receive information from us in the future , please click on the following removal link : even though our database cleansing might be subject to delay or error , we will remove your e - mail address permanently from our database . however , please realize that removal from our database does not guarantee that your e - mail address will be deleted from the many other e - mail marketers who construct databases themselves by harvesting from web sites , or by buying any of the thousands of lists of e - mail addresses that are openly for sale on the internet . . . . ",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : ian @ altair 398 . demon . co . uk ( generated from ian @ altair . org . uk ) smtp error from remote mail server after end of data : host punt - 1 . mail . demon . net [ 194 . 217 . 242 . 75 ] : 550 blocked by recipient ' s spam filter options . if message is legitimate , please forward a copy to rbl @ demon . net for investigation . - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 203 . 101 . 127 . 76 ] ( helo = mailwisconsin . com ) by uk 2 mxarray 4 . uk 2 . net with smtp ( exim 4 . 52 ) id ldupou - 0005 qz - te for ian @ altair . org . uk ; tue , 19 jul 2005 11 : 59 : 30 + 0100 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 09360592 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 from : "" barry castillo "" to : ian @ altair . org . uk user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 x - priority : 3 ( normal ) importance : normal x - sa - exim - connect - ip : 203 . 101 . 127 . 76 x - sa - exim - mail - from : projecthoneypot @ projecthoneypot . org subject : just to her . . . content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - spam - checker - version : spamassassin 3 . 0 . 4 ( 2005 - 06 - 05 ) on uk 2 mxserver 4 - 1 . uk 2 . net x - spam - level : * * * x - spam - status : no , score = 3 . 3 required = 99 . 0 tests = drugs _ erectile , drug _ dosage , html _ 50 _ 60 , html _ message , info _ tld , mime _ html _ only autolearn = no version = 3 . 0 . 4 x - sa - exim - version : 4 . 0 ( built sat , 24 jul 2004 09 : 53 : 34 + 0200 ) x - sa - exim - scanned : yes ( on uk 2 mxarray 4 . uk 2 . net ) soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: adobe + macromedia + os etc all in cd under $ 99 adobe + macromedia + os etc all in cd under $ 99 better the foot slip than the tongue . luck is what you have left over after you give 100 % .",1 +"Subject: likee a rock hello , welcome to phar philosophize monline sho orrery p - one of the leading oni dissociable ine pharmaceutical shops synchronism v onomatopoeia g commissionaire al dilapidated ll dutiable la cutglass rac unpolitical l arduous is progenitor va loftiness um andmanyother . - save tzigane over 50 % - worldwide shlppl sconce ng - total confidentiai fleshings ity - over 5 mii prolocutor iion customers in 130 countries have a gunnery nice day !",1 +"Subject: re : your bank account dear friend , a recent survey by nielsen / netratings says that "" the internet population is rapidly approaching a ' half a billion ' people ! "" so what does all this mean to you ? easy money ! ! let ' s assume that every person has only one e - mail address . . . that ' s 500 million potential customers and growing ! in addition , e ' mail is without question the most powerful method of on the face of the earth . well , i think you get the picture . the numbers and potential are just staggering , but it gets even better . . . suppose i told you that you could start your own e - mail businesstoday and enjoy these benefits : * * * all customers pay you in cash ! ! ! * * * you will sell a product which costs nothing to produce ! * * * your only overhead is your time ! * * * you have 100 s of millions of potential customers ! ! ! * * * you get detailed , easy to follow startup instructions ! and this is just the tip of the iceberg . . . as you read on you ' ll discover how a ' seen on national tv ' program is paying out a half million dollars , every 4 to 5 monthsfrom your home , for an investment of only $ 25 us dollars expense , one time . all thanks to the computer age . . . and the internet ! before you say "" bull "" , please read the following : this is the letter you have been hearing about on the newslately . due to the popularity of this letter on the internet , a national weekly news program recently devoted an entireshow to the investigation of this program described below , to see if it really can make people money . the show also investigated whether or not the program waslegal . their findings proved once and for all that there are "" absolutely no laws prohibiting the participation in theprogram and if people can follow the simple instructions , they are bound to make some mega bucks with only $ 25 out ofpocket cost "" . due to the recent increase of popularity and respect this program has attained , it is currently working better than ever ! * * * * * this is what one had to say : "" thanks to this profitable opportunity . i was approached manytimes before but each time i passed on it . i am so glad ifinally joined just to see what one could expect in returnfor the minimal effort and money required . to my asonishment , i received total $ 610 , 470 . 00 in 21 weeks , with money stillcoming in "" . pam hedland , fort lee , new is another testimonial : "" this program has been around for a long time but i neverbelieved in it . but one day when i received this again in the mail i decided to gamble my $ 25 on it . i followed thesimple instructions and walaa . . . . 3 weeks later the moneystarted to come in . first month i only made $ 240 . 00 but thenext 2 months after that i made a total of $ 290 , 000 . 00 . so far , in the past 8 months by re - entering the program , i have made over $ 710 , 000 . 00 and i am playing it again . the key to success in this program is to follow the simplesteps and not change anything . "" more testimonials later but first : * * print this now for your future referenceif you would like to make at least $ 500 , 000 every 4 to 5 months easily and comfortably , please read the following . . . then read it again and again ! ! ! * * follow these simple instructions , to make your financial dreams come true * * instructions : - - - - - - - - - - - - - - - - - - - * * * * * order all 5 reports shown on the list below . * * * * * for each report , send $ 5 us cash , the name & number of the report you are ordering andyour e - mail address to the person whose name appearson that list next to the report . make sure your return address is on your envelope top left corner in case of any mail problems . * * * * * when you place your order , make sure you order each of the 5 reports * * * * * you will need all 5 reports so that you can save them on yourcomputer and resell them . your total cost $ 5 x 5 = $ 25 . 00 * * * * * * * * * * within a few days you will receive , via e - mail , eachof the 5 reports from these 5 different individuals . savethem on your computer so they will be accessible for you tosend to the 1 , 000 ' s of people who will order them from you . also make a floppy of these reports and keep it at your deskin case something happens to your computer . * * * * * * * * * * important - do not alter the names of the peoplewho are listed next to each report , or their sequence on the list , in any way other than what is intructed below in stepsl through 6 or you will lose out on the majority of your profits . once you understand the way this works , you will also see howit does not work if you change it . remember , this method has been tested , and if you alter , it will not work ! ! ! people have tried to put their friends / relatives names onall five thinking they could get all the money . but it doesnot work this way . believe us , we have tried to be greedyand then nothing happened . so do not try to change anything other than what is instructed . because if you do , it will not work for you . remember , honesty reaps the reward ! ! ! 1 . after you have ordered all 5 reports , take this advertisement and remove the name and address of the person inreport # 5 . this person has made it through the cycle and is no doubt counting their fortune . 2 . move the name & address in report # 4 down to report # 5 . 3 . move the name & address in report # 3 down to report # 4 . 4 . move the name & address in report # 2 down to report # 3 . 5 . move the name & address in report # 1 down to report # 2 . 6 . insert your name & address in the report # 1 position . please make sure you copy every name & this entire letter , with the modified list of names , and save it on your computer . do not make any otherchanges . save this on a disk as well just in case you looseany data . to assist you with marketing your business on the internet , the 5 reports you purchase will provide you with information that includes : how to send bulk e - mailslegally , where to find thousand of free classified ads and much , much more . there are 2 primary methods to get this venture going : method # 1 : sending bulk e - mail legally - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - let ' s say that you decide to start small , just to see howit goes , and we ' ll assume you and those involved send outonly 5 , 000 emails each . let ' s also assume that the mailingreceives only a 0 . 2 % response ( the response could be muchbetter but lets just say it is only 0 . 2 % . also , many peoplewill send out hundreds of thousands of e - mails instead ofonly 5 , 000 each ) . continuing with this example , you send out only 5 , 000 e - mails . with a 0 . 2 % response , that is only 10 orders for report # 1 . those 10 people resonded by sending out 5 , 000 e - mails eachfor a total of 50 , 000 . out of those 50 , 000 e - mails only 0 . 2 % responded with orders . that ' s 100 people responded andordered report # 2 . those 100 people mail out 5 , 000 e - mailseach for a total of 500 , 000 e - mails . the 0 . 2 % response to that is 1000 orders for report # 3 . thoe 1000 people send out 5 , 000 e - mails each for a total of 5 million e - mails sent out . the 0 . 2 % response to that isl 0 , 000 orders for report # 4 . those 10 , 000 people send out 5 , 000 e - mails each for a total of 50 , 000 , 000 ( 50 million ) e - mails . the 0 . 2 % response to that is 100 , 000 orders forreport # 5 . that ' s 100 , 000 orders times $ 5 each = 500 , 000 ( a half a million ) . your total income in this example is : 1 . . . . . . $ 50 + 2 . . . . . . $ 500 + 3 . . . . . . $ 5 , 000 + 4 . . . . . . $ 50 , 000 + 5 . . . . . . $ 500 , 000 . . . . . . . . . . . . . . . . . . grand total = $ 555 , 550 . 00 numbers do not lie . get a pencil & paper and figure out the worst possible responses and no matter how you calculate it , you will still make a lot of money ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - remember friend , this is assuming only 10 people ordering out of 5 , 000 people you mailed . dare to think for a moment what would happen if everyone , or 1 / 2 , or even 1 / 5 of those people mailed 100 , 000 e - mailseach or more ? there are over 250 million people on the internet worldwide and counting . believe me , many peoplewill do just that , and more ! method # 2 : placing free ads on the internet on the net is very , very inexpensive and thereare hundreds of free places to advertise . placing a lot offree ads on the internet will easily get a larger response . we strongly suggest you start with method # 1 and add method # 2 as you go along . for every $ 5 you receive , all you must do is e - mail them the report they ordered . that ' s it ! always provide same dayservice on all orders . this will guarantee that the e - mailsthey send out , with your name and address on it , will beprompt because they can not advertise until they receive thereport . order each report by it number & name only . note : always send $ 5 cash ( us currency ) for each report . checks are not accepted . make sure the cash is wrapped inat lease 2 sheets of paper before you put it in the envelope . on one of those sheets of paper , write the number and the nameof the report you are ordering , your email address , your nameand postal address . make sure you affix the proper ' international ' postage if ordering a report from outside your country . place your order for these reports # 1 : the insider ' s guide to advertising for free on the netorder report # 1 from : k . j . nickelsp . o . box 739 waukesha , wi # 2 : the insider ' s guide to sending bulk e - mail on the netorder report # 2 from : k . heritage 6933 w . university ave # 610 gainsville , fl # 3 : secret to multilevel marketing on the net : order report # 3 from : t . turner 5317 bonner dr . corpus christie , tx # 4 : how to become a millionaire utilizing mlm & the netorder report # 4 from : mel hahnl 11 wilmont drive unit gwaukesha , wi # 5 : how to send out one million e - mailsorder report # 5 from : j . fridl 3324 radisson rd . n . e . ham lake , mn 55304 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ there are currently almost 500 , 000 , 000 people online worldwide ! $ $ $ $ $ $ $ $ $ $ your success guidlines $ $ $ $ $ $ $ $ $ $ follow these guidlines to guarantee your success : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * if you do not receive at least 10 orders for report # 1 within 2 weeks , continue sending e - mails until you do . after you have received 10 orders , 2 to 3 weeks after thatyou should receive 100 orders or more for report # 2 . if youdid not , continue advertising or sending e - mails until you do . once you have received 100 or more orders for report # 2 , youcan relax , because the system is already working for you , and the cash will continue to roll in ! ! this is important to remember : every time your nameis moved down the list , you are placed in front of a different report . you can keep track of your progress by watching whichreport people are ordering form you . if you want to generate more income send anotherbatch of e - mails and start the whole processagain . there is no limit to the income you can generatefrom this business ! ! ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ following is a note from the originator of this program : you have just received information that can give you financialfreedom for the rest of your life , with no risk and just alittle bit of effort . you can make more money in the nextfew weeks and months than you have ever imagined . follow the program exactly as instructed . do not changeit in any way . it works exceedings well as it is now . remember to e - mail a copy of this exciting report after youhave put your name and address in report # 1 and moved othersto # 2 . . . . . . . . . . # 5 as instructed above . one of the peopleyou send this to may send out 100 , 000 or more emails and yourname will be on every one of them . remember though , the moreyou send out the more potential customers you will reach . so my friend , i have given you the ideas , information , materials and opportunity to become financially independent . it is up to you now ! * * * * * * * * * * more testimonials * * * * * * * * * * "" my name is mitchell . my wife jody and i live in chicago . i am an accountant with a major us corporation and i makepretty good money . when i received this program i grumbledto jody about receiving "" junk mail "" . i made fun of thewhole thing , spouting my knowledge of the population andpercentages involved . i "" knew "" it wouldn ' t work . jodytotally ignored my supposed intelligence and a few days latershe jumped in with both feet . i made merciless fun of her , and was ready to lay the old "" i told you so "" on her whenthe thing didn ' t work . well , the laugh was on me ! within 3 weeks she had received 50 responses . within the next 45 days she had received a total of $ 147 , 200 . 00 all cash ! i was shocked . i have joined jody in her "" hobby "" . mitchell wof , chicago , being the gambling type , it took me several weeks tomake up my mind to participate in this plan . but conservativethat i am , i decided that the initial investment was so littlethat there was just no way that i wouldn ' t get enough ordersto at least get my money back . i was surprised when i foundmy medium sized post office box crammed with orders . i made $ 319 , 210 . 00 in the first 12 weeks . the nice thing about thisdeal is that it does not matter where people live . theresimply isn ' t a better investment with a faster return andso big "" . dan sondstrom , alberta , had received this program before . i deleted it , but lateri wondered if i should hav given it a try . of course , ihad no idea who to contact to get another copy , so i had towait until i was e - mailed again by someone else . . . . . . . 11 months passed then it luckily came again . i did not delete this one ! i made more than $ 490 , 000 on my first tryand all the money came within 22 weeks "" . susan de suza , new york , really is a great opportunity to make relatively easymoney with little cost to you . i followed the simpleinstructions carefully and within 10 days the money startedto come in . my first month i made $ 20 , 560 . 00 and by theend of the third month my total cash count was $ 362 , 840 . 00 . life is beautiful , thanks to the internet "" . fred dellaca , westport , new your reports today and get startedon your road to financial you have any questions of the legality of this program , contact the office of associate director of marketingpractices , federal trade commission , bureau of consumerprotection , washington , d . c . we are not the authors of this program and do not warrant any guarantees as to how much earnings you willachieve . this is a one time mailing . if you wish to be removed from our list please reply to this e - mail with "" remove "" in the subject lineand you will be removed immediately . ",1 +"Subject: be one of our survey takers and we ' ll send you a complimentary laptop computer . computer survey group needs survey takers in your area now . we ' d like to send you a complimentary laptop computer now for helping us . ( ) laayawrw",1 +"Subject: women with cum on their face ! ! ! click here to be removed ",1 +"Subject: the big unit i ' ve been using your product for 4 months now . i ' ve increased my length from 2 to nearly 6 . your product has saved my sex life . - matt , fl my girlfriend loves the results , but she doesn ' t know what i do . she thinks it ' s natural - thomas , ca pleasure your partner every time with a bigger , longer , stronger unit realistic gains quickly to be a stud press here when wearing this garment you will find it unnecessary to use the electric tube except on rare occasions oranjestad , aruba , po b 1200 so while they grow they cannot be said to really live , and they must be picked before they can become good citizenshow long do you live , after you are picked ? asked dorothy never allow revenge or animosity to influence your conduct men may threaten , but they can not injure you , so you must remember that they do not possess your mighty advantages , and that , because of your strength , you should bear with them patiently ",1 +"Subject: bring on the best software . . . at the most reasonable prices ! best software prices . why can ' t they invent something for us to marry instead of women ? ah ! the clock is always slow ; it is later than you think .",1 +"Subject: you ' re my dream come true 0 hello my hope ! i am not sure you get this message but if you got i want you to know that i want to travel to your country to work in two weeks and i just want to meet right man . i live in russia and my goal is to leave this country because it is impossible to live here for young pretty woman . if you have not wife or girlfriend , maybe we could try to meet ? i am tayana , i am 25 years old , please write to me directly to my mail - lapa 201 @ pochta . ru see you soon ! ! ! ! concrete nocturnal flung glimmer wooster anamorphic contraceptive droll rob foothill gaur estonia tollgate derby electrify baseball franca bath butane trytophan freeman fern farmland octal britten canfield airline anglophobia bun disquietude chauffeur boom remediable baseline shine extrinsic quasiperiodic fed dilatory carbonate longfellow pax sylvia fischer needlepoint blond cloy grayish biz lexical immeasurable semester brisk cobb nut buzzword aperture rockwell burg validate spartan haughty spiritual liberal ostensible angstrom obscene scala thiamin cyprus accord thornton artichoke malaise reversible contribution linoleum onomatopoeic conferred customhouse condemnate bryce call",1 +"Subject: urgent reply . from the desk of : barr arisman shonikon chambers & associates no 56 b . aba road , port - harcourt nigeria private email address ( @ shymail . com ) dear i sincerely apologize for intruding into your privacy especially by contacting you through this means for a business transaction of this magnitude , but due to its seriousness and urgency it therefore became necessary for me to seek your assistance . i am barr . arisman shonikon , the personal lawyer to late mr . frank ionescu , a foreigner , who worked with an oil servicing company in the oil rich niger delta area of bayelsa state . i am contacting you concerning my late client and an investment he made . i would respectfully request that you keep the contents of this mail confidential and respect the integrity of the information you come by as a result of this mail . i contacted you independently and no one should be informed of this communication . i would like to intimate you with certain facts that i believe would be of interest to you . this is a genuine transaction and is 100 % risk free . all i ' m demanding from you is your honest co - operation to enable us achieve our goal , and not a perfidious person . on the 6 th of may , 2002 it was reported to us that my client , his wife and their only daughter were involved in a local plane crash at kano state , enroot abuja ( the capital city ) all occupants in the plane lost their lives , unfortunately on this same flight were other dignitaries like the sports minister and a host of others meanwhile , until his death , my late client had a fixed deposit account of usd $ 15 . million deposited in a security company ( unic security company ) here . recently , i received an ultimatum from the security company asking me to provide my late client ' s relative so that the money would be given to them . but unfortunately it was discovered that my late client did not declare any identifiable family member in all the official documents he tendered to the security company while opening the account . therefore , this development leaves me as the only person with the full picture of what the prevailing situation is in relation to the deposit my late client made and who is entitled to be the bona fide beneficiary / next of kin or relative because he died intestate . therefore , if i fail to locate any of his relatives or his next of kin ( and have this money transferred to them ) the security company will at the expiration of the 6 weeks ultimatum given to me confiscate the account . according to the ultimatum issued to me by the security company , if i fail to present to them my late client ' s relative , with a legitimate statement of claim for the money before the given time they will confiscate the account and the money declared ' unclaimed balance ' . this will result in the money being taken over by the security company . this will not happen if i have my way . since i have been unsuccessful in locating the relatives of my late client all these while , my proposal , therefore , is to present you as the next of kin / relative of my client due to the fact that you are a foreigner and can easily pass as a possible relative of my client . i know you will be wondering how possible this could be but i assure you that this is simple . i therefore seek your consent to present you as the next of kin to my client so that the money he deposited with the security company would be paid to you and there after you and i will share the money 40 % for you and i will be taking 60 % . i assure you that the deposit would be released to you within a few days because i have all the relevant information that would facilitate that will be required on documentation . first , i will like you to provide immediately the following information : your full names . contact address . telephone / fax numbers . with this information i will prepare the necessary documents and affidavit that will put you in place as the next of kin . after we have successfully satisfied the requirements of the bank the money totaling usd 15 . million would be paid into your account for you to take 40 % and i will be taking 60 % . all i require is your honest co - operation to enable us see this through . there is no risk at all because everything would be done legally and my position as a qualified attorney will facilitate everything . secondly , i will give you all the necessary documents that would serve as evidence proving that you are the next of kin / relative of my late client . these documents will legally conferm on you the status to act as the beneficiary of the estate of my late client . what i related to you might smack of unethical practice but i want you to understand that this is a once in life time opportunity capable of turning around our situation . the truth is that this money would not be taken by the government but by some greedy security company officials and i would not fold my arms and watch this happen hence my decision to contact you . if you are interested in doing this transaction with me kindly send your reply to this email address : ( arismanshonikon @ shymail . com ) thank you as i await your positive response . barr . arisman shonikon .",1 +"Subject: the probblem solved how to save on your medl prolocutor catlons over 60 % . pharma nettle zmail shop - successfull and proven way to sav tombola e your m bandeaux oney . fertile v a lithesome g methodology l l filament u revisionism l r welshman a untrue cla inelegant isv hatred al aeronavigation m andmanyother . * bes sandstorm t prlces * wor feathered ldwide shlpplng * tota inspissate l confidentiaiity * over 5 miliion cu euphonical stomers have a nice day chipboard !",1 +"Subject: looking for a new job ? professional . effective . 100 % guaranteed . visit us at : www . stopsendingresumes . net career controls , inc . p . o . box 42108 cincinnati , oh 45242 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: let ' s appreciate it . . . . dear we are proud to introduce to you this amazing painting form emile louisius . let us appreciate it together . creoleart . com info @ creoleart . com if you do not see the graphics below , click here to view in a new window . to ensure delivery , please add contact @ creoleart . com to your contact list . emile louisius he is born on june 22 , 1964 to jeremie . self - educated , he has taught one self the painting . he has his first one man show with henri r . bresil to jamaica in 1985 . and after that he continued to show off in several towns in the world , such as japan . pal 6200600 16 x 20 price $ 600 . 00 usd related item edras florestal 30 x 40 $ 2600 . 00 usd the gallery exhibitions of all artists works . in that field is available informations regarding the items , the sizes , and the prices next offer see here the next offers from creoleart . com . if you want to see all previews creoleart . com offers click here contact us info @ creoleart . com contact @ creoleart . com 011 ( 509 ) 5279421 p . o . box 16102 the international code is 011 and haiti ' s country code is ( 509 ) - copyright 2004 creole art online inc , all rights reserved - contact @ creoleart . com about this mailing : you are receiving this e - mail because you subscribed to creoleart . com best offers . creoleart . com respects your privacy . if you do not wish to receive this creoleart . com best offers e - mail , please either click the unsubscribe link below and type remove my link to your mailing list please . so you will never receive any emails from us . but if you will , just email to contact @ creoleart . com and type add me in your mailing list please . prices and item availability subject to change without notice . www . creoleart . com ",1 +"Subject: hi how to save on your fashion medlcatlons over 70 % . shalloon pharmzmail shop - successfull and proven way to save curvet your plumose money . whereby v intraocular ag a disconsolate l shandrydan lu synoptical l r impoverishment a drouth cl frozen isva calmatige l eyewater m andmanyother . * best p coheir rlces * wor requital ldwide shlpplng * sjambok total confidentiaiity * over 5 miliion c dominical ustomers have unnumbered a nice day !",1 +"Subject: undelivered mail returned to sender this is the postfix program at host backupmail . mittwaldmedien . de . i ' m sorry to have to inform you that the message returned below could not be delivered to one or more destinations . for further assistance , please send mail to if you do so , please include this problem report . you can delete your own text from the message returned below . the postfix program : host mail . edv - stangl . com [ 62 . 216 . 178 . 13 ] said : 550 : user unknown in virtual alias table ( in reply to rcpt to command )",1 +"Subject: [ ilug ] ilug - admin , enhance your bust amazing breast enhancing capsules = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = guaranteed to increase , lift and firm your breasts in 60 days or your money back ! ! 100 % herbal and natural . proven formula since 1996 . increase your bust by 1 to 3 sizes within 30 - 60 days and be all natural . click here : http : / / 64 . 123 . 160 . 91 : 81 / li / wangxd / http : / / 202 . 101 . 163 . 34 : 81 / li / wangxd / absolutely no side effects ! be more self confident ! be more comfortable in bed ! no more need for a lift or support bra ! 100 % guaranteed and from a name you know and trust ! you are receiving this email as a double opt - in subscriber to the standard affiliates mailing list . to remove yourself from all related email lists , just click here : - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: uregent ! important information about your website . . . . hello , my name is steve scott and i ' m president and ceo of the worlds largest and most profitable online internet affiliate program . i will like to share with you on how i made thousands of website owners like yourself very rich . yes , i mean filthy rich . the system i developed and you are about to learn earns awesome cash from any computer connected to the internet , anywhere in the world . in one month you can earned more than an entire years work ! making money doesn ' t get any easier than this ! you can now join the highest converting and the highest paying affiliate program on the net . get paid 75 % commission on the worlds most wanted product . yes our product sells itself . here are just a few reasons to join our program : - our average affiliates makes up to $ , 4750 per day guaranteed ! - participate for free - our product sells itself guaranteed . - highest conversion rate . over 85 % of those who visit our site signs up . - you will receive up to 75 % commission - new ! 2 tier program . yes , you can make residual income from affiliates you sign up too . - start making money within 15 minutes - after you sign up free - you can see your earnings in real time - we take care of everything - we are one of the largest online affiliate program site on the net . - you will receive email notifications every time someone signs up . - and best of all you don ' t need a website to join . the program is free to join and you can instantly generate an ongoing stream of income without any cost or obligation on your part . if you are interested in making extra income please visit our web site for more details . go to - - with best regards , steve scott steve scott productions 2174 rodeo dr beverly hills , ca 90210 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: understanding oem software send the love home with an online photo album absence sharpens love , presence strengthens it . painting is just another way of keeping a diary .",1 +"Subject: perfect visual solution for your business now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buiiding a positive visual imaqe of your company by creatinq an outstandinq logo , presentabie stationery items and professional website . these marketinq tools wiii siqnificantly contributeto success of your business . take a look at our work samples , hot deal packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: don ' t get ripped off ! things to watch out for : don ' t get ripped off ! gimmicks to look out for : vacuum pumps : expensive rip - off most men aren ' t going to wait a whole year to gain 1 "" ! ! ! ! or do it the right way , instead they think the more they pump the faster the results . wrong ! a vacuum pump will injure your penis before it will enlarge your penis . lengthen your manhood the fast , natural way ! check out our new , state of the art system weight hanging : dangerous rip - off only lengthens the penis , does not thicken it , while lessening sensation during intercourse . and to top it off , it creates unsightly stretching marks , and could cause permanent damage which could easily require partial amputation of the penis ! obtain a longer , thicker penis without the risks and the pain ! choose the latest scientific breakthroughs , over barbaric tribal techniques now ! weight hanging : dangerous rip - off penis enlargement surgery is a very dreaded , painful , and dangerous operation that has a quite high nonsuccess rate according to patient opinion . here are just some results . deformed looking penis ( lumps & pits ) , impotence , loss of sex drive , painful erections , if any at all ! ! save your hard earned dollars ! spending more is not always the best solution . obtain a healthy looking , longer penis without scary surgery , and any chance of impotence ! learn more about our amazing exercise techniques ! special offer ! ",1 +"Subject: software store http : / / infinity . realoemsales . com / ? a = 3107",1 +"Subject: re [ 7 ] : talk thread about his pills spu m r - th ewe an saf twa ph macy en st dthe es yof ar inc eyo xualdes spe umeby % reas urse ireand rmvol 500 100 uraland deeff - incon ttowel wnbra % nat nosi ects tras l - kno nds . expe cethr eslon gas rien eetim geror ms wor deshi gwit hou ldwi ppin hin 24 rs t to wel wn bra % nat no si ects tras l - kno nds . expe ce thr es lon gas rien ee tim ger or ms wor de shi g wit hou ld wi ppin hin 24 rs sp - m ur the we and saf wa ph acy is ne st the est y of arm inc e yo xual des spe ume by % reas ur se ire and rm vol 500 100 ural and de eff - in con t to wel wn bra % nat no si ects tras l - kno nds . expe ce thr es lon gas rien ee tim ger or ms wor de shi g wit hou ld wi ppin hin 24 rs sp - m ur the we and saf wa ph acy is ne st the est y of arm inc e yo xual des spe ume by % reas ur se ire and rm vol 500 100 ural and de eff - in con t to wel wn bra % nat no si ects tras l - kno nds . expe ce thr es lon gas rien ee tim ger or ms wor de shi g wit hou ld wi ppin hin 24 rs sp - m ur the we and saf wa ph acy is ne st the est y of arm inc e yo xual des spe ume by % reas ur se ire and rm vol 500 100 ural and de eff - in con t to wel wn bra % nat no si ects tras l - kno nds . expe ce thr es lon gas rien ee tim ger or ms wor de shi g wit hou ld wi ppin hin 24 rs sp - m ur the we and saf wa ph acy is ne st the est y of arm inc e yo xual des spe ume by % reas ur se ire and rm vol 500 100 ural and de eff - in con t to wel wn bra % nat no si ects tras l - kno nds . expe ce thr es lon gas rien ee tim ger or ms wor de shi g wit hou ld wi ppin hin 24 rs sp - m ur the we and saf wa ph acy is ne st the est y of arm inc e yo xual des spe ume by % reas ur se ire and rm vol 500 100 ural and de eff - in con t to wel wn bra % nat no si ects tras l - kno nds . expe ce thr es lon gas rien ee tim ger or ms wor de shi g wit hou ld wi ppin hin 24 rs sp - m ur the we and saf wa ph acy is ne st the est y of arm inc e yo xual des spe ume by % reas ur se ire and rm vol 500 100 ural and de eff - in con t to wel wn bra % nat no si ects tras l - kno nds . expe ce thr es lon gas rien ee tim ger or ms wor de shi g wit hou ld wi ppin hin 24 rs sp - m ur the we and saf wa ph acy is ne st the est y of arm inc e yo xual des spe ume by % reas ur se ire and rm vol 500 100 ural and de eff - in con t to wel wn bra % nat no si ects tras l - kno nds . ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enouqh for a man , but made for a woman ; - ) ordering viaqra online is a very convinient , fast and secure way ! miliions of people do it daily to save their privacy and money order here . . . ",1 +"Subject: you don _ t know how to attract customers to your website ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it will be invisibie virtuaiiy , which means efforts spent in vain . if you want peopie to know about your website and boost your revenues , the oniy way to do that is to make your site visible in places where peopie search for information , i . e . submit your website in muitiple search enqines . submit your website online and watch visitors stream to your e - business . best reqards , zoraidaguerra _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: your premier mortgage information source mortgage rates slashed for the last time ! let us help you get a new mortgage for up to 100 % of your home value lower your monthly payment ! consolidate your debt ! shorten the term of your loan ! reduce your interest rate ! national average mortgage rates program rates 30 yr fixed 6 . 50 % 15 yr fixed 6 . 25 % 1 yr arm 5 . 51 % choose from hundreds of loan programs like : purchase loans refinance debt consolidation home improvement interest only jumbo ' s no income verification fill out this simple form and we will compete for your business . . . required input field * name * address city state * zip code * buiness phone * home phone best time to contact morning afternoon evening total loan request approx . home value a consultant will contact you soon . all information given herein is strictly confidential and will not be re - distributed for any reason other than for the specific use intended . to be removed from our distribution lists , please click here . . ",1 +"Subject: fortune 500 company hiring , at home reps . help wanted . we are a 14 year old fortune 500 company , that is growing at a tremendous rate . we are looking for individuals who want to work from home . this is an opportunity to make an excellent income . no experience is required . we will train you . so if you are looking to be employed from home with a career that has vast opportunities , then go : http : / / www . basetel . com / wealthnow we are looking for energetic and self motivated people . if that is you than click on the link and fill out the form , and one of our employement specialist will contact you . to be removed from our link simple go to : http : / / www . basetel . com / remove . html ",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom design of loqos , stationery and web - sites . under our carefui hand these powerful marketinq toois will brinq a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . click here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: does your business depend on the online success of your website ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it wiii be invisibie virtually , which means efforts spent in vain . if you want peopie to know about your website and boost your revenues , the oniy way to do that is to make your site visibie in piaces where people search for information , i . e . submit your website in muitipie search enqines . submit your website online and watch visitors stream to your e - business . best reqards , dotlopez _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: it works greatt hello , welcome to medzonli moonbeam ne shop we are pleased to introduce ourselves as one of the ieading online ph pandemonium armaceuticai shops . coronal v disaster r a proportionality l afflicted ll rhomboid lag a chamfer cl is haycock va u furiosity m andmanyother . - save ov coachhouse er 75 % - total confi appease dentiaiity - worldwide phonetic shlpplng - over blackleg 5 miilion customers in 150 countries have a ni converter ce day !",1 +"Subject: software megastore http : / / grimaldi . mainoemstore . com / ? a = 3107",1 +"Subject: best prescription generic meds 4 less . now your woman will be really happy with your intimate life ! our critics are our friends ; they show us our faults . my fellow astronauts . . . once they were men . now they are land crabs . beauty fades ; dumb is forever .",1 +"Subject: we have been helping thousands of men with male enhancement best deals on all generic viagra and generic cialis alternatives with guaranteed lowest prices keep your eyes on the stars , and your feet on the ground . the world is now too small for anything but brotherhood . no one gossips about other people ' s secret virtues . i ' ve learned to take no as a vitamin .",1 +"Subject: = ? iso - 8859 - 1 ? q ? clausura _ curso _ ni = dlos _ y _ adolescentes . ? = 5 de julio 2005 lic monica ramos rodriguez . jefa de noticias de tv 9 canal de oaxaca la television de los oaxaque?os . estimada licenciada : reciba un cordial saludo y al mismo tiempo mi solicitud para que un reportero y un camarografo nos haga el favor de tomar la rese?a de la clauura del curso de "" prevencion de adicciones "" para menores oaxaque?os . que se imparti? del 4 al 8 de julio del 2005 de 10 : 00 al 4 : 00 horas en coordinacion con el centro de integracion juvenil a . c . de oaxaca . este curso cont? con la participacion de ni?os oaxaque?os en edad de primaria , la instructora fue la lic en trabajo social victoria ortega . dicha clausura se realizar? en el cij ubicado en marcos perez 111 a las 14 horas , con la entrega de las constancias de participacion por parte del cij y telefonos de mexico s . a . de c . v . mucho le agradecer? nos d? su amable confirmacion por este medio . reciba un cordial saludo . lae . ada beatriz lopez y lopez h colegio militar 1013 col reforma oaxaca oax c . p . 68050 ahora infinitum te da doble de velocidad , mismo precio . baja fotos , m?sica , videos y todo lo que quieras al doble de velocidad desde $ 349 al mes m?s i . v . a . ? qu? esperas ? acel?rate al doble y con?ctate http : / / www . hits . telmex . com / app / ad _ mgr / ad _ mgrn . jsp ? ad = 371 as?m @ te a telmex . com http : / / www . hits . telmex . com / app / ad _ mgr / ad _ mgrn . jsp ? ad = 195 confidentiality notice : this e - mail message including attachments , if any , is intended only for the person or entity to which it is addressed and may contain confidential and / or privileged material . any review , use , disclosure or distribution of such confidential information without the written authorization of tel?fonos de m?xico is prohibited . if you are not the intended recipient , please contact the sender by reply e - mail and destroy all copies of the original message . by receiving this e - mail you acknowledge that any breach by you and / or your representatives of the above provisions may entitle tel?fonos de m?xico to seek for damages . aviso de confidencialidad : este correo electr?nico , incluyendo en su caso , los archivos adjuntos al mismo , pueden contener informaci?n de car?cter confidencial y / o privilegiada , y se env?an a la atenci?n ?nica y exclusivamente de la persona y / o entidad a quien va dirigido . la copia , revisi?n , uso , revelaci?n y / o distribuci?n de dicha informaci?n confidencial sin la autorizaci?n por escrito de tel?fonos de m?xico est? prohibida . si usted no es el destinatario a quien se dirige el presente correo , favor de contactar al remitente respondiendo al presente correo y eliminar el correo original incluyendo sus archivos , as? como cualesquiera copia del mismo . mediante la recepci?n del presente correo usted reconoce y acepta que en caso de incumplimiento de su parte y / o de sus representantes a los t?rminos antes mencionados , tel?fonos de m?xico tendr? derecho a los da?os y perjuicios que esto le cause .",1 +"Subject: i 6 h : logo your business identity your business lacks visual identity ? marketing efforts falling short ? invisible among a sea of competitors ? you ' re on the right track for a solution - keep reading . . . our professional designers specialize in the creation of custom logos and business / corporate identities . our design needs to be seen only once to gain customer attention and recognition . with one of our unique , eye - catching mages you ' ll never have to introduce yourself twice ! we promise fast turnaround and 100 % customer satisfaction . choose from as any design ideas as necessary , select as many colors as you wish , order any modifications you like , and request any format . our prices are affordable for any size of business , and get this : there are no hidden fees . follow the link below to browse our portfolio and check out our sweet deals . wipe the "" in "" from "" invisible "" in just a few days - with us ! http : / / x 911 . info . ox - files . info sincerely , zelma blankenship",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be iost among competitors . get your ioqo , business stationery or website done riqht now ! fast turnaround : you wiii see severai ioqo variants in three business days . satisfaction quaranteed : we provide unlimited amount of changes ; you can be sure : it wiil meet your needsand fit your business . flexible discounts : loqo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be iost among competitors . get your logo , business stationery or website done right now ! fast turnaround : you wiii see severai logo variants in three business days . satisfaction guaranteed : we provide unlimited amount of changes ; you can be sure : it wiil meet your needsand fit your business . flexible discounts : logo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: ip cameras for your security system dear sir or madam : we understand from your information on google . com engineer . we would like to take this opportunity to introduce our company and products , with the hope that we may work with bright ideas imports in the future founded in 1993 , tokia electronics co . , ltd . we are specializing in the manufacture of cctv cameras , color ccd cameras , b / w ccd cameras , color dome cameras , b / w dome cameras , mini ccd cameras , day / night ccd cameras , high speed cameras , flying sauce cameras , wireless cmos cameras , dvr , dvr board , all - in - one camera , ip camera and lens and other safety protection video products , which are widely used in banks , electric power , transportation , public security , , shopping mall , residence area and the like . presently , tokia electronics co . , ltd . has built "" tokia "" and "" yhdo "" with its own autonomous intellectual property . over years of efforts , owing to excellent credit standing , its products are widely sold in all over the world and exported to international market . it became one of the largest video recorder manufacturer in china . we have approved by iso 9000 and ce certificate . detailed circumstance of our products , please click out the site : http : / / www . cctvcameras . cn / should any of these items be of interest to you , please let us know . we will be happy to give you a quotation upon receipt of your detailed requirements . we look forward to receiving your enquires soon . . i am very say if this letter disturb you . sincerely , jamme ip cameras : live demo : http : / / 220 . 130 . 14 . 230 usename : guest password : guest 1 . internal build - in ccd provides all in one cctv solution 2 . remote surveillance through internet or intranet . 3 . even triggered picture can be sent vis ftp or e - mail 4 . system based on java platform for better stability 5 . remote recording 6 . pppoe",1 +"Subject: undelivered mail returned to sender this is the postfix program at host correio . quick . com . br . i ' m sorry to have to inform you that the message returned below could not be delivered to one or more destinations . for further assistance , please send mail to if you do so , please include this problem report . you can delete your own text from the message returned below . the postfix program : user unknown . command output : invalid user specified .",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 03 : 57 : 51 - 0700 from [ 222 . 217 . 202 . 51 ] - - - - - the following addresses had permanent fatal errors - - - - - ( reason : 550 - mailbox unknown . either there is no mailbox associated with this ) - - - - - transcript of session follows - - - - - . . . while talking to localhost : > > > data . . . user unknown < < < 503 5 . 5 . 1 no recipients",1 +"Subject: the government grants you $ 25 , 000 ! free personal and business grants "" qualify for at least $ 25 , 000 in free grants money - guaranteed ! "" each day over one million dollars in free government grants is given away to people just like you for a wide variety of business and personal needs dear grant seeker , in a moment , i ' ll tell you exactly how where to get grants . this money has to be given away , why not to you ? you may be thinking , "" how can i get some of this free grants money "" maybe you think it ' s impossible to get free money ? let me tell you it ' s not impossible ! it ' s a fact , ordinary people and businesses all across the united states are receiving millions of dollars from these government and private foundation ' s everyday . who can apply ? anyone can apply for a grant from 18 years old and up ! grants from $ 500 . 00 to $ 50 , 000 . 00 are possible ! grants don ' t have to be paid back , ever ! claim your slice of the free american pie . this money is not a loan , trying to get money through a conventional bank can be very time consuming and requires a lot of paperwork , only to find out that you ' ve been denied . these government agencies don ' t have to operate under the same stringent requirements that banks do . you decide how much money you need , as long as it ' s a lawful amount and meets with the government agencies criteria , the money is yours to keep and never has to be repaid . this money is non taxable interest free . none of these programs require a credit check , collateral , security deposits or co - signers , you can apply even if you have a bankruptcy or bad credit , it doesn ' t matter , you as a tax payer and u . s . citizen are entitled to this money . there are currently over 1 , 400 federal programs , 24 , 000 state programs , 30 , 000 private foundations and 20 , 000 scholarship programs available . this year over $ 30 billion dollars in free personal and business government grants money will be given away by government grants agencies . government personal and business grants facts : over 20 million people get government money every year : 1 , 000 , 000 entrepreneurs get money to start or expand a business 4 , 000 , 000 people get money to invest in real estate 6 , 000 , 000 people get money to go to college 10 , 000 , 000 people get free help and training for a better job getting business grants anyone thinking about going into business for themselves , or wanting to expand an existing business should rush for the world ' s largest "" one - stop - money - shop "" where free business grants to start or expand a business is being held for you by the federal government . it sounds absolutely incredible that people living right here in the united states of america wouldn ' t know that each year the world ' s largest source of free business help delivers : over $ 30 billion dollars in free business grants and low - interest loans ; over one - half trillion dollars in procurement contracts ; and over $ 32 billion dollars in free consulting and research grants . with an economy that remains unpredictable , and a need for even greater economic development on all fronts , the federal government is more willing than it ever has been before to give you the money you need to own your own business and become your own boss ! in spite of the perception that people should not look to the government for help , the great government give - away programs have remained so incredibly huge that if each of the approximately 8 million businesses applied for an equal share , they would each receive over $ 70 , 000 . most people never apply for free business grants because they somehow feel it isn ' t for them , feel there ' s too much red - tape , or simply don ' t know who to contact . the fact is , however , that people from all walks of life do receive free grants money and other benefits from the government , and you should also . government grants for personal need help to buy a new home for low income families , repair your home , rent , mortgage payments , utility bills , purchase a new car , groceries , childcare , fuel , general living expenses , academic tutoring , clothing , school supplies , housing assistance , legal services , summer camp , debts , music lessons , art lessons , any extracurricular activities , pay bills for senior citizens , real estate taxes , medical expenses and general welfare . if you or someone you know suffered a fire lose there are programs available to help in replacing necessities . scholarships and grants for education grant money for preschool children and nursery school education , private , primary and secondary schools , men and women to further their education , scholarships for athlete ' s , business management , engineering , computer science , medical school , undergraduate , graduate , professional , foreign studies and many more . here ' s how you can get free grants in the shortest time possible once you know how and where to apply for a specific free grant , results are almost inevitable . the government wants to give away this money . . . it is under congressional mandate to do so ! these funds are made available to help you , the tax payer . all that ' s required from you is the proper presentation of your grant request . that ' s all . announcing . . . "" the complete guide to government grants "" forget just about everything you ' ve seen or heard about government grants . what i ' ve done is put together a complete blueprint for researching , locating and obtaining government grants . "" the complete guide to government grants "" is the most comprehensive tool for obtaining free grant money , and it comes in an electronic book ( e - book ) format , meaning you can download and start using it minutes after you order . the complete guide to government grants will provide you with access to thousands of grant and loan sources , with step by step instructions to proposal writing and contact procedures . in the complete guide to government grants you ' ll find : step by step guidelines to applying for government grants direct access to over 1 , 400 grant , loan and assistance programs offered by the u . s . federal government . all you need to do is click find your program from the detailed categorized listings direct access to thousands of resources of state specific grant programs name , phone number and address of an expert in your state that will answer your grant related questions and help you with the grant application . . . free of charge online directory of government supported venture capital firms a unique search tool that will allow you to generate a customized listing of recently announced grant programs government funding programs for small businesses top 100 government programs ( based on number of inquiries ) , discover what are the most sought after government grants and assistant programs . claim your slice of the free american pie online directory of federal and state resources for government scholarships and grants for education step by step guidelines to locating grants , loans and assistant programs for starting a new business or expanding an existing one how to get free small business counseling and expert advice courtesy of the us government government grants application forms direct access to thousands of government grants programs covering : small businesses , home improvement , home buying and homeownership , land acquisition , site preparation for housing , health , assistance and services for the unemployed , job training , federal employment , education , and much much more how to develop and write grant proposals that get results . . . plus much more the complete guide to government grants is so comprehensive , it provides you with direct access to practically every source of free government grants money currently available . if you ' re an american citizen or resident , you are entitled to free grant money ranging from $ 500 to $ 250 , 000 or more . if you are black you have already qualified for 15 programs , being hispanic , you qualify for many programs . being a christian will get you into 20 programs , there are also many other programs available for different faiths , jewish , catholic . not having any money , will get you into over 30 programs , 550 programs if you are unemployed , or underemployed . the list and sources are endless . you are eligible ! this money is absolutely free and will be yours to use for any worthwhile purpose . did you know you can apply for as many grants as you want ? it ' s true , for instance , you could get a $ 65 , 000 grant to begin a weight loss business , get $ 8 , 800 in tuition to become a nurse or $ 35 , 000 to open up the day - care center , you ' ve always dreamed of owning . and then , go out and apply for a grant to buy a home for you and your family . and once your new business starts doing well you could go out and get another grant for expansion of your business . the possibilities are endless . you must qualify for at least $ 25 , 000 in free grants money , or your money back ! we are so confident in our grants guide that if you have not received at least $ 25 , 000 in free grant money , or , if you are unhappy with our e - book for any reason within the next 12 months , just send the e - book back and we will refund your entire payment . no questions asked ! ! if you want to order , we insist you do so entirely at our risk . that is why the e - book comes with a . . . no risk full year money - back guarantee . there is absolutely no risk on your part with this 365 day guarantee . what we mean is we want you to order without feeling you might "" get taken . "" therefore , we want you to order this material today . . . read it , use it . . . and if for any reason you aren ' t completely satisfied , you not only can cancel , you should , for an immediate refund of your purchase price . you simply can ' t lose . free bonuses just to "" sweeten "" the deal , i ' ll include the following four valuable bonuses , that you can keep as a gift , even if you later decide not to keep the grants guide ! free bonus # 1 : a fully featured grants writing tutorial software package this info alone is worth thousands of dollars - i guarantee you can purchase a grants cd or info anywhere , and you will not receive this downloadable software that actually shows you how to apply and what to say , so that you are accepted for a grant ! ! ! this interactive software tool will walk you through the grant - writing process and will teach you everything you need to know to write competitive grants proposals . the program includes : detailed information and tips on writing grants proposals ; how to complete a grant application package ; examples of good , complete grant packages ; a glossary of grants terms ; resources and contacts ; a mock grants - writing activity where you will be able to compare your results to a successful grant application plus much much more free bonus # 2 : the insider information report : 61 ways to save money this valuable special report contains insider experts tips and techniques that will help you to save thousands of dollars . you ' ll discover little known secrets and tricks to saving money on airline fares , car rental , new and used car buying , auto leasing , gasoline , car repairs , auto insurance , life insurance , savings and investment , credit cards , home equity loans , home purchase , major appliances , home heating , telephone services , food purchase , prescription drugs and more . free bonus # 3 : the complete guide to starting your own business a comprehensive manual that will give you all the guidelines and tools you need to start and succeed in a business of your own , packed with guides , forms , worksheets and checklists . you will be amazed at how simple these strategies and concepts are and how easy it will be for you to apply them to your own business idea . hundreds were sold separately at $ 40 each . . . you get it here for free . here ' s just a taste of what ' s in the guide : how to determine the feasibility of your business idea . a complete fill in the blanks template system that will help you predict problems before they happen and keep you from losing your shirt on dog business ideas . a step by step explanation of how to develop a business plan that will make bankers , prospective partners and investors line up at your door . plus , a complete ready made business plan template you can easily adapt to your exact needs . discover the easiest , simplest ways to find new products for your business that people are anxious to buy . how to make money with your new idea or invention . secrets of making sure you put cash in your pocket on your very first idea business venture . complete , step by step instructions on how to plan and start a new business . this is must - know must - do information ; ignore it and you stand a good chance to fail . you get specifically designed instructions for each of the following : a service business , a retail store , a home based business , a manufacturing company , and more . what nobody ever told you about raising venture capital money . insider secrets of attracting investors , how to best construct your proposal , common mistakes and traps to avoid , and much more . checklist for entering into a partnership . keeps you from costly mistakes when forming a partnership . how to select a franchise business . a step by step guide to selecting a franchise that is best for you . a complete step - by - step organized program for cutting costs in your business . clients of mine have achieved an average of 28 % to 35 % cost reduction with this technique , and you can too . keep the money in your pocket with this one ! what are the secrets behind constructing a results driven marketing plan ? i will lead you step by step into developing a marketing plan that will drive your sales through the roof . a complete step by step guide guaranteed to help you increase your profits by up to 64 % , i call it "" the profit planning guide "" . this is a simple , practical , common sense strategy , but amazingly enough , almost no one understands or uses it . free bonus # 4 : guide to home business success this is afast , no - frills guide to starting and succeeding in a home based business . here ' s just a taste of what ' s in the guide : home business : is it for you ? what are the secrets behind the people who have million dollar home based businesses ? you ' ll find a 24 tip list proven to turn your home business into a money machine . laws and regulations you must be aware of to avoid legal errors . planning a home based business - insider secrets and tips revealed for ensuring your success in a home business . fundamentals of home business financial planning . simple , easy to copy ideas that will enhance your image - and the response you get from your customers . common problems in starting and managing a home based business - and how to solve them once and for all . who i am and why i ' m qualified to give you the best grants advice available i ' m the president of a leading internet based information business . i ' m also the creator of "" the managing a small business cd - rom "" and the author of five books . i ' ve been involved in obtaining grants and in small business for the past 23 years of my life , as a business coach , a manager of a consulting firm , a seminar leader and as the owner of five successful businesses . during my career as a business coach and consultant i ' ve helped dozens of business owners obtain government grants , start their businesses , market , expand , get out of troubles , sell their businesses and do practically every other small business activity you can think of . the guide presented here contains every tip , trick , technique and strategy i ' ve learned during my 23 year career . you practically get my whole brain in a form of an e - book . how the grants guide is priced ? the complete guide to government grants is normally priced at $ 50 , but . . . . . . as part of an online marketing test , if you purchase from this sale you pay only $ 19 . 99 ( that ' s 75 % off . . . plus , you still get the free valuable bonuses . ) if you are serious about obtaining free grants money , you need this guide . don ' t delay a moment longer . order now ! ! ! p . s . the complete guide to government grants will make a huge difference . you risk nothing . the guide is not the original price of $ 50 , but only $ 19 . 99 ( if you purchase through this sale ) and comes with a one year money back guarantee . and you get four valuable free bonuses which you may keep regardless . don ' t delay a moment longer , order now ! ! ! ! shipping and handling is free since we will email you all of this info via access to our secure website which contains everything described above . order now ! ! ! if above link doesn ' t work , click here ",1 +"Subject: greatly improve your stamina you ' ve seen our pills on tv , in your local health stores , and on the web , and the question you have been asking yourself is - do they really work ? the answer is yes ! forget about your partner faking her orgasm or not being able to please her . you will be able to penetrate deeper so your partner will experience more pleasure as well as multiple orgasms during sexual intercourse . 86 % of women surveyed said that they would like their partner to be more ' full ' sexually . check out the only male enhancement formula with a free dvd i ' m 67 years old . i was very wary of putting my details on the internet , but i am very pleased that it worked out for me . your product arrived only 2 days after i placed the order , and the packaging was very discreet , which was perfect for me . i was shocked at how quickly the pills took effect , and i did attempt the exercises as well , which i found simple and easy to understand . i now have loads of energy , and feel like a new man . i can ' t thank you enough ! ronald , phoenix i am busy , no thank you , go above but here is something of still greater interest , continued rob , and taking the automatic record of events from his pocket he allowed the professor to view the remarkable scenes that were being enacted throughout the civilized world . the frenchman was now trembling violently , and he implored rob to tell him where he might obtain similar electrical machines i can ' t do that , replied the boy , decidedly ; but , having seen these , you may be able to discover their construction for yourself ",1 +"Subject: internet connectivity that beats the prices & quality of the big boys ! paying high prices for a dial - up connection . . . ! only $ 6 . 95 * per month - - - > most of us need a dial - up internet connection at some point . maybe as a back up to our current high speed connection . maybe when we travel , or maybe for everyday use . but like so many of us , paying $ 21 to $ 31 a month is just getting to be too much . especially if you still find it hard to get connected or hard to stay connected . 695 online is the perfect dial - up service for you . $ 23 . 85 per month $ 21 . 95 per month $ 21 . 95 per month steady and reliable connectivity filters out unwanted emails 3 email addresses 24 / 7 unlimited internet affordable price comes with a cd packed with software great service easy to use nation wide local access numbers only $ 6 . 95 per month * learn moresign up now . . . ! sign up for 695 online . com the nation wide low cost internet provider and get mail - block for free . . . ! * orders are billed for a minimum 3 month period . sign up now . . . and start saving money today . . . ! if you do not wish to receive email for this service , please click remove . ",1 +"Subject: at your serrvice hello , welcome to ph elation armzonline excitation shop - one of the ie decorate ading oniine ph ashlar armaceuticai shops v destructor l sparking gr chromic l l numerator u sunward a nerveless ac piscivorous la indigestion is hollow val tameable m andmanyother . tot sublime al confidentiaiity , over 5 miliio intercom n customers , worldwide shlpplng overdraw , save over detail 60 % ! have a nice lovesick day !",1 +"Subject: delivery status notification - these recipients of your message have been processed by the mail server : lucaballiano @ aliceposta . it ; failed ; 5 . 7 . 1 ( delivery not authorized , message refused ) mbertozzi @ aliceposta . it ; failed ; 5 . 7 . 1 ( delivery not authorized , message refused )",1 +"Subject: save 84 % on ce credits no hidden fees over 16 , 000 credits over 300 courses 90 % internet based high quality courses unlimited access complete this form for a free guest demo ! name : e - mail : phone : city : state : we don ' t want anybody to receive our mailing who does not wish to receive them . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: we are one of the world leading legal sources for male impotence treatments your on - line guide in pills world . blessed are those who can give without remembering , and take without forgetting . beauty in things exist in the mind which contemplates them . it is pleasant at times to play the madman .",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , chrissy ",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of logos , stationery and web - sites . under our carefui hand these powerful marketinq toois wiil bring a breath of fresh air into your business and make you stand out amonq the competitors . you are just a click away from your future success . ciick here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: you don _ t know how to get into search engine results ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it wiii be invisibie virtuaily , which means efforts spent in vain . lf you want peopie to know about your website and boost your revenues , the oniy way to do that is to make your site visible in places where peopie search for information , i . e . submit your website in muitipie search enqines . submit your website oniine and watch visitors stream to your e - business . best reqards , tiffinyfletcher _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: re [ 4 ] : don ' t get left behind ! . . . needham good morning sir , check out the discounts these guys are offering on enlarge patches ! steel package : 10 patches reg $ 79 . 95 now $ 49 . 95 ! free shipping too ! silver package : 25 patches reg $ 129 . 95 , now $ 99 . 95 ! free shipping and free exercise manual included ! gold package : 40 patches reg $ 189 . 95 , now $ 149 . 95 ! free shipping and free exercise manual included ! platinum package : 65 patches reg $ 259 . 95 , now $ 199 . 95 ! free shipping and free exercise manual included ! millions of men are taking advantage of this revolutionary new product - don ' t be left behind ! "" your product is amazing and i would recommend it to anyone who has a bad erection and wants something harder and better for themselves . "" - vince glover try this peniss growth patchs out and see how it can change your life ! ",1 +"Subject: proteja su negocio ! ! cctv , alarmas , control de accesos cctv alarmas control de acceso su satisfacci?n y seguridad son nuestro principal objetivo . ? cotizaci?n sin compromiso ! cont?ctenos y le atenderemos con gusto . atenci?n personal : gregory taylor seguridad @ intec . com . mx 3000 - 2800 ext . 132 s?lo m?xico d . f . y ?rea metropolitana ",1 +"Subject: hey aro aro ; ) projecthoneypot @ projecthoneypot . org , come join my network at hi 5 ! i now have over 548 friends in my network ! you can meet all of them , plus more than 12 million other hi 5 members ! once you join , you will immediately be connected to all the people in my circle of friends . hi 5 is an online service that lets you meet new people , view photos , browse profiles , and chat with your friends . i ' ll see you inside , donaji already has more than 12 million members ! gender / age : female / 19 location : metairie this invitation was sent to projecthoneypot @ projecthoneypot . org on behalf of donaji ( teporocha 55 @ hotmail . com ) . if you do not wish to receive invitations from hi 5 members , click on the link below : ",1 +"Subject: welcome to vip quality software . os - adobe - macromedia etc all under $ 15 - $ 99 cds poverty is a weapon of mass destruction . if you have a fallback plan , you will fall back .",1 +"Subject: inexpensive software looking for inexpensive high - quality software ? we might have just what you need . windows xp professional with sp 2 full version : u $ 79 . 95 office 2003 professional : u $ 89 . 95 adobe photoshop cs with imageready cs : u $ 99 . 95 macromedia dreamwaver mx 2004 + flash mx 2004 : u $ 109 . 95 corel draw graphics suite 11 : u $ 59 . 95 and many more offers . . . ",1 +"Subject: i don ' t work . . . but i have a ton of money ! vhcw hello this e - mail ad is being sent in full compliance with u . s . senate bill 1618 , title # 3 , section 301 to remove yourself send a blank e - mail to : removal 999 @ yahoo . com you are getting this email because you are on a list of people that want all the money they can spend without working for it . . . you will only get this once , so please do nothing if you would like to be removed ! ( by doing nothing you will automatically be removed ) we really are looking for truly lazy people that dream about being able to do what they want , when they want and do so without working . we want the type of people that drive by a house and say that they want that house some day , but would love to own that house through money generated while they sleep or while they are on vacation . we want the type of people that would like to send their children to "" harvard "" or "" stanford "" and have these educations paid for through money generated while they sleep or while they are on vacation . we want the type of people that see a new t - bird , corvette or jaguar and want to own these cars and have them paid for through money generated while they sleep or while they are on vacation . we want the type of people that on a whim want to travel to maybe maui in the winter or alaska in the summer and while there if they choose to buy a home in either place , they can do so through money generated while they sleep or while they are on vacation . we want the people that would like to sleep till noon if they choose to or get up and go to the country club to play golf if they choose to and do so because they always have a stream of income through money generated while they sleep or while they are on vacation . we want the type of people that truly hate the thought of getting up in the morning and making money for some one else . we want the type of people that deep down want to tell some snob that thinks he ' s a big deal because he or she drives a mercedes , that the rolls royce that you are driving is paid for and tomorrow you might buy yourself a porche and if you are in the mood to , you might buy your wife or friend a bmw . in other words , you deep down want to tell the snobs of the world , that they really are managing their debt , but you have what you want when you want and you have it all with no debt and you have all of this through money generated while you sleep or while you are on vacation . seriously , if you want more money than you can spend and you really , truly do not want to work , then you are the type of person we are looking for . if you would like to know why some people can do this . . . then simply send a blank email with the words : "" i hate to work "" in the subject area to : ihatetowork 99 @ yahoo . com after doing so , you will be contacted in less than 24 hours and learn how to get the house you want , the education for your children that you would like them to have , go on the vacation you want , when you want all through money generated while you sleep or while you are playing golf or while you are on vacation . also , we do not want you to hear from us again if the idea of making all the money you want is not exciting to you . . . therfore this is the first and last email you will get unless we hear from you . . . so if you want to get rich with out working , then simply send a blank email with the words : "" i hate to work "" in the subject area to : ihatetowork 99 @ yahoo . com thank you , "" the i hate to work "" associates subject : i don ' t work . . . but i have a ton of money ! iqccjypkiducrbiixmqcuncw",1 +"Subject: good day friend dear friend , my name is salim ibrahim a merchant in dubai , in the u . a . e . i have been diagnosed with esophageal cancer it has defiled all forms of medical treatment , and right now i have only about a few months to live , according to medical experts . i have not particularly lived my life so well , as i never really cared for anyone ( not even myself ) but my business . though i am very rich , i was never generous , i was always hostile to people and only focused on my business as that was the only thing i cared for . but now i regret all this as i now know that there is more to life than just wanting to have or make all the money in the world . i believe when god gives me a second chance to come to this world i would live my life a different way from how i have lived it . now that god has called me , i have willed and given most of my property and assets to my immediate and extended family members as well as a few close friends . i want god to be merciful to me and accept my soul so , i have decided to give also to charity organizations , as i want this to be one of the last good deeds i do on earth . so far , i have distributed money to some charity organizations in the u . a . e , algeria and malaysia . now that my health has deteriorated so badly , i cannot do this myself anymore . i once asked members of my family to close one of my accounts and distribute the money which i have there to charity organization in bulgaria and pakistan , they refused and kept the money to themselves . hence , i do not trust them anymore , as they seem not to be contended with what i have left for them . the last of my money which no one knows of is the huge cash deposit of ( twenty million five hundred thousand u . s dollars ) that i have with a finance / security company abroad . i will want you to help me collect this consignment and dispatched it to charity organizations . i have set aside 15 % for you . god be with you . salim ibrahim note : please do get back to me via my private email address at ibrahim _ salim @ ny . com becuase i do not want my family to know anything about this project , so i could give you the full details about the funds . please endeavour to get back to me via my specified private email address . thanks for understanding . may the almighty allah bless you abondantly . mail enviado desde el servicio webmail en el sitio | * btw * | call of duty - . . /",1 +"Subject: leading in affordable healthcare . . . we care for you ! your trusted source for prescription medication . everyone has his day and some days last longer than others . a single death is a tragedy , a million deaths is a statistic . each of us bears his own hell . i have seen the future and it doesn ' t work .",1 +"Subject: major stock play amnis systems , inc . ( otcbb : amnm ) contract announcements and huge newsletter coverage this week for amnm ! ! ! this thursday amnm will be profiled by some major newsletters . there will be huge volume and a strong increase in price for several days . these are the same newsletters that profiled clks two weeks ago . they brought clks from $ 1 . 50 to $ 4 . 35 in ten days . we know for certain that the same groups are going to profile amnm starting on thursday . we are very proud that we can share this information with you so that you can make a profit out of it . it is highly advisable to take a position in amnm as soon as possible , today before the market closes , or tomorrow . the stock is trading near its 52 week low , and will start moving up immediately . we believe the stock could easiely reach $ 4 in less than a month . good luck and watch amnm fly this week ! !",1 +"Subject: is your brother in need of a loan homeowners - do you have less - than - perfect credit * we ' ll quickly match you up with the b . est provider based on your needs . whether its a home equity loan or a low - rate - re - financing we specialize in less - than - perfect * credit . we ' ll help you get the yes ! you deserve . e ' n * o , u , g * h : http : / / morphism . lendingxid . com / r . php",1 +"Subject: turn your paypal account into a non - stop cash machine ! ! ( not a chain letter ) i am sending you this message because we have communicated in the past about business opportunities . i hope you will enjoy this one as much as i do . turn your paypal account into a non - stop cash machine ! re - occurring 100 % commissions paid directly to your paypal account ! 4 out of 10 visitors join instantly ! shouldn ' t you be next ? did i mention that it ' s free for 15 days ? simply go to : http : / / www . paypal - profits . com / a / turnkeyim / best wishes , tony & donna scurlock turnkeyim @ hotmail . com the best home - based business on the planet ! ! we build your downline - - 1000 to 3500 members added per month ! ! free to join ! ! minimum monthly income ! ! get all the details at : http : / / www . lifelong - income . com this email message is sent in compliance with the the 106 th congress e - mail user protection act ( h . r . 1910 ) and the unsolicited commercial electronic mail act of 2000 ( h . r . 3113 ) . though our intention is not to communicate with you again if we receive no response from you , we do provide a valid vehicle for you to be removed from our email list . to be removed from our mailing list , simple reply to this message with remove in the subject line . please keep in mind that complaints to our email provider and service provider , could make honoring remove requests impossible and you will be in violation of the above legislation . ",1 +"Subject: new vacancies availablee the leading internet job si barbituric te of australia www . seek . com . au presents unique part - time job proposal from international tour agency travel tour guide . that job position was called "" job of the y construe ear - 2004 "" and it is actual now because of hot summer and best prices for travel tour guide proposals in internet . do you want to start a successful carrier right now without any entrance fees , without buying goods or involving other people ? do you want to start a successful carrier in financial sphere without economical education or special experience ? - so this glaucoma is a chance for you . travel tour guide is happy offering you to apply for one of the open financial manager positions . this is a unique proposal because while examining you as applicant only your criminal records and c prudent redit history will be looked through . all we demand from you is to check your e - mail several times a day and to have a valid bank account or to open a new one . the main option of financial manager ' s job is to receive funds on personal bank account with future remittance to travel tour guide . manager gets 5 % from every remittance . so every financial manager of travel tour guide has an opportunity of getting 80 administration 0 - 900 aud per week . travel tour guide resumed that position because of regular bank wires last for 3 - 5 days . such long period prevents us from selling hot tours . besides the world leading payment systems like visa and mastercard decreased the limits for internet payments . the activity of financial managers in various regions became inauspicious a rescue for wide range of on - line companies which sells good up to bank limits . travel tour guide has already got the network of financial managers working worldwide . we have got a high demand this sum effulgence mer in australia so our managers can not process all the transactions in time . so company resumed that vacancy in australia . please forward your letter toinfo @ travel - tour - guide . com and you will be sent the detailed job description and also you can ask for application form . if you are not interested in this oppose job offer you can visit www . seek . com . au . a lot of vaca patina ncies from more than 75000 employers can be found there .",1 +"Subject: chheep medz how to save o vacationist n your medlcations over 70 % . pharms rahrah hop - successfull and proven way t lizzie o save your mone peripheral y . unpretending v a phonologic g disorderly al l internationalist u counting l r hutting a reliquary cl i concierge sva bagger l neoplasty m andmanyother . best prlces toddle . worldwide shlpp vulcanite lng . easy order teethe form . t nominal otal confidentiaiity . 250 , 000 satisfied customer superette s . order toda zygoma y and save !",1 +"Subject: fw : keep it under wraps , but this one works a treat ! 25031 thank you , your email address was obtained from a purchased list , reference # 1580 - 17600 . if you wish to unsubscribe from this list , please click here and enter your name into the remove box . if you have previously unsubscribed and are still receiving this message , you may email our abuse control center , or call 1 - 888 - 763 - 2497 , or write us at : nospam , 6484 coral way , miami , fl , 33155 "" . 2002 web credit inc . all rights reserved . - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: i know your company ! lt is really hard to recollect a company : the market is full of sugqestions and the information isoverwheiminq ; but a good catchy logo , styllsh stationery and outstanding website wiil make the task much easier . we do not promise that having ordered a loqo your company wili automaticaliy become a worid leader : it isquite clear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: : : fast acting viagra at last ( fast acting viagra ) removal instructions : you have received this advertisement because you have opted in to receive internet offers and specials through affiliated websites . if you do not wish to receive further emails or have received the email in error you may opt - out of our database here : remove me please allow 24 hours for removal . this e - mail is sent in compliance with the information exchange promotion and privacy protection act . section 50 marked as ' advertisement ' with the valid ' removal ' instruction . [ "" : } h & * tgobk 5 nk ]",1 +"Subject: send real paper greeting cards on - line ! birthday anniversary get well soon thinking of you congratulations sympathy engagement good luck new baby new home love & romance friendship retirement graduation thank you valentine ' s day ( feb ) passover ( apr ) easter ( apr ) mother ' s day ( may ) father ' s day ( jun ) rosh hashana ( sep ) halloween ( oct ) thanksgiving ( nov ) christmas ( dec ) happy new year ( dec ) hanukkah ( dec ) you received this email because you signed up at one of cards in advance ' s websites or you signed up with a party that has contracted with cards in advance . to unsubscribe from the cards in advance mailing list please reply to this email with "" remove "" as the subject . http : / / xent . com / mailman / listinfo / fork",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : twistersoffice @ qwest . net ( generated from info @ twisterburritos . com ) smtp error from remote mailer after end of data : host mpls - cmx - 07 . inet . qwest . net [ 63 . 226 . 138 . 7 ] : 554 mail server permanently rejected message ( # 5 . 3 . 0 ) - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 217 . 96 . 160 . 142 ] ( helo = mailwisconsin . com ) by serverl 050 . gisol . com with smtp ( exim 4 . 50 ) id ldupmn - 0000 kc - jt for info @ twisterburritos . com ; tue , 19 jul 2005 03 : 57 : 18 - 0700 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24817159 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ twisterburritos . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: partnership . from : zimmy mabo . tel : 0031 - 623 - 787 - 971 . e - mail : infoeurope @ lycos . com . the nederlands . soliciting for a business venture and partnership before i proceed . am greatful to introduce my self , my name is mr zimmy mabo a zimbabwean . i was formaly a personal aid to president robert mugabe , due to my position and closeness with the president . i absconded with sum of twenty five million united states dollars ( us $ 25 , 000 , 000 ) which was part of the money meant for campaigning for president robert mugabe ' s re - election into office under zaunpe party . presently i have been able to move the funds diplomatically to a security company in the netherlands . my request : i am looking for a trustworthy individual or firm to advice me in the right investment as well as to provide account where the funds will be lodge into . moreso , i am interested in buying propertys for residence as my family will be residing there in the near future . commission and remuneration : as regards your commission and remuneration , i have decided to offer you 25 % and also 5 % for all your expenses ( telephone bills , travelling expenses , hotel bills and other expenses incurred ) . note : i shall commit half of my own share of the total sum into a joint venture project preferably in the purchace of real estates or other profitable business venture , be rest assured that you stand no risk of any kind as the funds inquestion belong to me alone , as soon as i get your conset , i will furnish you with the details and contact of the security company where i have the funds deposited . i strongly believe that associating with you to embark on this and other business ventures will derive a huge success hereafter and it will be a long lasting business association . yours truly , mr . zimmy mabo . supercharge your e - mail with a 25 mb inbox , pop 3 access , no ads and notaglines - - > lycos mail plus . ",1 +"Subject: any med for your girl to be happy ! your girl is unsatisfied with your potency ? don ' t wait until she finds another men ! click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and quaranteed effect ! here you buy it riqht from warehouse ! the store is verlfied by bbb and approved by visa ! ",1 +"Subject: [ ilug ] deal subject : urgent concern pls . i am a serious officer with one of our main branches of citi bank , consumer banking department . although we didn ' t have previous correspondence till date . however , based on the standard value place on everything about you , i believed we could discuss , analyze and execute this transaction . the transaction is thus : i ' ve a wealthy client , an american citizen who had been residing in west africa for decades now , he operates a fix deposit account with us which i am his account officer , and also receives standing orders for his chains of dividends share . however , this client mr . david brown died as an out come of heart attack , and the funds in his current account has been claimed by his family , who had gone back finally to usa . at the end of fiscal year , march 2001 , an accumulated share of us $ 12 . 360 m was transferred into his account from the stock exchange . this was alone the instructions we issued to the stock house to dispose all his stocks . now the funds has arrived , i needed an associate whom i would present as the inheritor of this fund i . e . associate partner of mr . david brown so as to receive this fund . please note , his family has left since , and never know about this stocks in the exchange and the funds has subsequently matured in his fix deposit account , so i as the account officer has prepared all documents for easy claims of this fund . immediately , you reach me , i will furnish you with further details and then negotiate on the sharing ratio once you show your sincere involvement to go along with me . it will be of need for you to furnish me also your personal phone and fax numbers for urgent messages . i am anxiously waiting to hear your consent . be guided . thanking you . yours sincerely , dave framo . - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: how are ya ? hey , how ya been ? long time no see .",1 +"Subject: men charset = windows - 1252 "" > vigoral herbal sex enhancersdirect from the lab to you ! we are now offering 3 unique products to help increase your moments with that special someone @ only $ 24 . 99 each ! ! ! only $ 24 . 99 ea ! only $ 24 . 99 ea ! only $ 24 . 99 ea ! men , increase your energy level maintain stronger erections ! edible , specially formulated lubricant for everyone ! women , heighten your sexual desire increase your sexual climax ! click here to get it while it ' s hot ! you are receiving this special offer because you have provided permission to receive email communications regarding special online promotions or offers . if you feel you have received this message in error , or wish to be removed from our subscriber list , click here and you will be removed within less than three business days . thank you and sorry for any inconvenience . ",1 +"Subject: find the lowest price for viagra online big savings on brand name drugs . duty is ours , results are god ' s . ignorance of certain subjects is a great part of wisdom . abundance of knowledge does not teach men to be wise . life ? don ' t talk to me about life !",1 +"Subject: get debts off your back - time : 5 : 38 : 50 am are creditors hassling you about your debts ? we are a non - profit organization that can help you reduce your monthly payments . our consultation is free . . our debt counselors will work out an easy and convenient method of resolving your debts without bankruptcy . contact us now and take a big load off your mind . - http : / / debt - freee . com / 9 i / ? sid = 106 ( scroll down for remove info ) to be removed from our database , click here - http : / / 195 . 235 . 97 . 200 / personal 9 / reserve 3 / remove . html",1 +"Subject: guaranteed best mortgage rate the best mortage rates simple , easy and free have hundreds of lenders compete for your loan ! refinancing new home loans debt consolidation second mortgage home equity click here to jump - start your plans for the future ! ! ! dear homeowner , interest rates are at their lowest point in 40 years ! we help you find the best rate for your situation by matching your needs with hundreds of lenders ! home improvement , refinance , second mortgage , home equity loans , and more ! you ' re eligible even with less than perfect credit ! this service is 100 % free to home owners and new home buyers without any obligation . just fill out a quick , simple form and jump - start your future plans today ! click here to begin you are receiving this email because you registered at one of juncan . net ' s partner sites , and agreed to receive gifts and special offers that may be of interest to you . if you do not want to receive special offers in the future , please click here . you are subscribed as : webmaster @ efi . ie equal housing opportunity . ",1 +"Subject: medzz services hello , welcome to ph brevet armonline s weatherforecast hop - one of the leading oniine p underfoot harmaceutical shops washday v dreadnought g a plucky l leniency ll l coronach a r directorate a exception cl i essential s costless va synthetic um andmanyother . - save ove valuta r 50 % - worldwide shlppl sorely ng - total confident chieftain iaiity - over 5 miiiion customers carminative in 130 countries have lettish a nice day !",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialls has a iot of advantaqes over viaqra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: jump start desire in both men and women 7893 vbvfl - 278 zkcc 8 - 17 spring blow out sale great sex in the bottle for men & women guaranteed to restore the urge ! and enhance the pleasure and health ! two for price of one exclude yourself , johnl 95615221 @ yahoo . com ",1 +"Subject: better sex ! better relationship ! visit our pharmacy for convenient and cost - effective way of buying generic drugs . storms make trees take deeper roots . the smaller the mind the greater the conceit . humor is also a way of saying something serious . i tell you the past is a bucket of ashes .",1 +"Subject: line ? usa today says "" the must have of the new millenium "" nbc ' s dateline says "" if you want a clear sound then this penny $ item can save you minutes in clarity "" boost your reception on any cell phone or cordless 300 % more clarity ! don ' t buy another phone because of bad recepiton . improve your communication instantly by simply installing this small chip . powerful reception booster save 70 % . . . as seen on t . v . ! no other product compares ! ultra - thin and transparent installs in a second ! power of a 4 ft antenna ! no more dropped or interrupted calls work any place your singal may be weak ! advertised on t . v . for over 3 times the price . click here now "" . . . it was so easy to install . . . "" ",1 +"Subject: first - class prescripiton medications burgundy acetylene antagonism martial craw locate your prescription immediately ! a whole range of tablets ! take a look ! and the prices are unbeatable ! stop receiving promotional material now andy cress crewman ",1 +"Subject: 376 : unique - logos ! your business lacks visual identity ? marketing efforts falling short ? invisible among a sea of competitors ? you ' re on the right track for a solution - keep reading . . . our professional designers specialize in the creation of custom logos and business / corporate identities . our design needs to be seen only once to gain customer attention and recognition . with one of our unique , eye - catching mages you ' ll never have to introduce yourself twice ! we promise fast turnaround and 100 % customer satisfaction . choose from as any design ideas as necessary , select as many colors as you wish , order any modifications you like , and request any format . our prices are affordable for any size of business , and get this : there are no hidden fees . follow the link below to browse our portfolio and check out our sweet deals . wipe the "" in "" from "" invisible "" in just a few days - with us ! http : / / lo 42 . com . ntb - soft . biz sincerely , juanita rosario",1 +"Subject: foreign business representative needed mr . zhongxun zheng anhui guofeng plastic industry co . , ltd tian zhi road hefei , anh 230088 china . website : www . guofeng . com dear sir / madam , i am mr . zhongxun zheng , board director , anhui guofeng plastic industry . we are a company who deal on plastics , candle holder , wind chime , photo frame , suncatcher , night lamp , tiffany lamp and the other decorations . we export into the united states , canada and parts of europe . we require competent representatives who can help us establish a medium of getting to our customers in the usa , canada and europe as well as making payments through you to us . we will be glad and would be willing to give a good percentage for this . please contact us for more information on the above subject to your satisfaction you will be given the opportunity to negotiate your mode of which we will pay for your services as our representative . please , if interested , forward your contact information , stating names , physical address , phone / fax numbers promptly . regards , mr . zhongxun zheng ceo / president . mail sent from webmail service at php - nuke powered site - http : / / yoursite . com",1 +"Subject: market internet access - no investment needed market internet access no investment needed premium internet access for only $ 14 . 95 per month or less ! earn $ 1 per subscriber per month go to : http : / / new . isp . 50 megs . com / 1918 bqhx 5 - 227 cpamo 598 cjwr 2 - 912 ymjg 32 l 34",1 +"Subject: business joint venture perhaps you already know , we help companies "" go public . "" the president of our company is a securities and corporate lawyer . please visit our site to receive information regarding how any company can go public . we have several research reports available on this subject . if you are aware of a company that may be suitable for this please let us know . we are happy for you to be amply rewarded for your help . the benefits of being a public company are many . it is a valuable and powerful tool in achieving your goals . if you would like to learn more about "" going public "" please visit our site . you can also email us at info @ tcigp . com for the quickest response as opposed to pressing reply . sincerely , shaun anthony http : / / www . tcigp . com # 0651 cp we also have newsletters for you . p . s . if you prefer to not hear from us any more , email us with no longer in the subject . takeoff @ tcigp . com 8721 santa monica blvd . # 359 los angeles , ca 90069",1 +"Subject: julie invites you to her free webcam hi sweetness . it ' s julie cutey , from the personals service . i ' ve been hearing all about you and i just had to say hi . i want you to check out my website and read all about me too . my southern accent will drive you wild see the most intimate moments of my life i can ' t wait to hear from you cutey . ttys , http : / / ownedboon . com / ju 43 /",1 +"Subject: your in - home source of health information you remember the most magnificent sex ? wish to repeat ? take advantage of our offer ! the best richness is the richness of the soul . words without actions are the assassins of idealism . general principles should not be based on exceptional cases .",1 +"Subject: viagrra scores ! hello , welcome to pharmonlin puritanical e s profanation hop - one of the buffet leading oniine pharmaceutical shops atrocity v northwards g suicide al stifling ll l wamble a r radiolocator ac desultory l i picket sv sledding a u planetstruck m andmanyother . - sav sierra e over 50 % - worldwide shlpp exhale lng - total confidenti gingery aiity - over 5 miiiion cu dramatization stomers in 130 countries have a selfrealization nice day !",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , samira ",1 +"Subject: sometimes , not always , i like the idea of a chick . . . with a horse . . . freeky fucking shit ! this is the craziest this that i have ever seen ! ! you will not believe your eyes . . and best of all it is free to join forever ! ! just go to the site and enter your email that is all ! hurry they will not be doing this forever ! ! ! very graphic material - mature audience only ! you must be at least 18 years old to enter ! this email was sent to you because your email address is part of a targeted opt - in list . you have received this email by either requesting more information on one of our sites or someone may have used your email address . if you received this email in error , please accept our apologies . if you do not wish to receive further offers , please click below and enter your email to remove your email from future offers . click here to remove anti - spam policy disclaimer : under bill s . 1618 title iii passed by the 105 th u . s . congress , mail cannot be considered spam as long as we include contact information and a remove link for removal from this mailing list . if this e - mail is unsolicited , please accept our apologies . per the proposed h . r . 3113 unsolicited commercial electronic mail act of 2000 , further transmissions to you by the sender may be stopped at no cost to you ! ",1 +"Subject: confirm results of your refina [ n ] ce application we tried to contact you last week about refinancing your home at a lower rate . i would like to inform you know that you have been pre - approved . here are the results : * account id : [ 933 - 327 ] * negotiable amount : $ 127 , 931 to $ 651 , 433 * rate : 3 . 52 % - 5 . 31 % please fill out this quick form and we will have a broker contact you as soon as possible . http : / / www . pvrefi . net / ? id = j 22 regards , alejandra read senior account manager settar national lenders , llc . database deletion : www . pvrefi . net / book . php ",1 +"Subject: look to our shop for all your prescription needs . 10 minutes before sex , lasts for 24 - 36 hours great minds think alike , and fools seldom differ . models are to be used , not believed . it is light grief that can take counsel . a wide screen just makes a bad film twice as bad .",1 +"Subject: a new era of online medical care . now you can have sex when you want again and again ! whenever you have an efficient government you have a dictatorship . i sing all kinds . to follow by faith alone is to follow blindly .",1 +"Subject: greeat medz how to save on your medlcations over 70 % anglistics . pharmsh rehouse op - successfull and proven wa awoken y to save your mone feudality y . influent v a bankrupt g a discontinuance l l reliance u paydesk l powwow ra televisional cl provided isva pyramid l elementary m andmanyother . best pr sympathetic lces . worldwide shlpplng seventh . easy o elliptical rder form . t cervine otal confidentiaiity . 25 monstrous 0 , 000 satisfied customers . order today and s scarecrow ave !",1 +"Subject: rready to go in 15 minutes hello , welcome to p attain harmonline sho vaccination p - one of the leading oniine pharmaceutical partsong shops pother v bodiless g a billion l l aquarius l augmentative la r labourist ac quadrigae l penitence isv unspent a cynicism um andmanyother . - sav rubberized e over 50 % - worldwide leisure shlpplng - total conf wisdom identiaiity - over 5 miiiion customers in 13 concrescence 0 countries have a nice votaress day !",1 +"Subject: re : nawty locals in your area pdi s - e - x - y local singles inside ! payne is cobble desperado but makeup not divergent carven . here theseus france may cackle and eastman hecate , opera not quite . iwantout ",1 +"Subject: a chance to get new logo now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buiiding a positive visual imaqe of your company by creatinq an outstanding iogo , presentabie stationery items and professionai website . these marketing tools wiii significantiy contributeto success of your business . take a iook at our work sampies , hot deal packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: free hgh - look 10 years younger in 3 weeks ! ! ! hmuprzd free 30 day supply of hgh 1000 : look younger and lose weight in 3 weeks ! ! ! ! as seen on nbc , cbs , cnn , and oprah ! the health discovery that actually reverses aging while burning fat , without dieting or exercise ! this proven discovery has been reported on by the new england journal of medicine . forget aging and dieting forever ! and it ' s guaranteed ! would you like to lose weight while you sleep ? no dieting ! no hunger pains ! no cravings ! no strenuous exercise ! change your life forever ! 100 % guaranteed aol users click here to be removed , reply to this email with remove in the subject line .",1 +"Subject: new love tabs shop . visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other love enhancers aii in one ! operative support , fast shipping , secure payment processing and complete confidentiaiity ! ciick here to find your verlfied by bbb and approved by visa love pil 1 ! ",1 +"Subject: don ' t be a fuddy - duddy . . . use the software everyone ' s using . . . send the love home with an online photo album we was robbed ! how could i lose to such an idiot ?",1 +"Subject: quarterly statement notice security center we recently noticed an attempt to log in to your paypal account from a foreign ip address and we have reason to belive that your account was used by a third party without your authorization . if you recently accessed your account while traveling , the unusual log in attempts may have been initiated by you . therefore , if you are the rightful account holder , click on the link below to log into your account and follow the instructions . https : / / www . paypal . com / cgi - bin / webscr ? cmd = _ login - run if you choose to ignore our request , you leave us no choice but to temporarily suspend your account . if you received this notice and you are not the authorized account holder , please be aware that it is in violation of paypal policy to represent oneself as another paypal user . such action may also be in violation of local , national , and / or international law . paypal is committed to assist law enforcement with any inquires related to attempts to misappropriate personal information with the intent to commit fraud or theft . information will be provided at the request of law enforcement agencies to ensure that impersonators are prosecuted to the fullest extent of the law . thank you for your patience as we work together to protect your account . sincerely , paypal account review department paypal , an ebay company * please do not respond to this e - mail as your reply will not be received . ",1 +"Subject: hello from = seko moshood mobutu tel = 234 - 1 - 776 - 2397 dear friend i am the first son of the late mobutu sese seko , the former president of the congo republic . i am presently under protective custody in nigeria as a political refugee . i got your contact over the internet during my search for a stranger that can cooperate with me in this mutual transaction . i took this option because my family friends and associates cpuld not be trusted any more since they contributed to my present predicament . i want you to note that this business will benefit both of us . however , you must confirm your ability to handle this because it involves a large amount of money . the money ( 50 million us dollars is my share of my father ' s estate . i boxed and shipped the money to a security company abroad at the peak of the war / political crisis that rocked my country few years ago . now the crisis has ended and i need a trustworthy person like you to proceed to the place of the security company in order to clear the fund and invest on my behalf as i dont want my name to be used for now . note that i will send to you the relevant documents that will enable you take possesion of the the fund for onward investment for our mutual benefit . all i need from you is as follows : 1 . a letter of committment ( duely signed ) that you will keep the transaction strictly confidential . 2 . your confirmation of your ability to handle this . 3 . your international identity or driving licence number for identification to the security company . 4 . your telephone and fax numbers for communication . 5 . your full permanent address . as soon as i get the above information from you , i will disclose to you the name and the country of the security company . i will forward your name and particulars to the security company to enable them contact you accordingly . i will also send to you a letter of authority to enable you clear the fund on my behalf . note that this is a very safe transaction as this money is my share of my father ' sestate . i am waiting for your response to enable us proceed . regards , moshood seko mobutu",1 +"Subject: unique logos / customer recognition ( 74436558 ) 140 our art team creates a custom logo for you , based on your needs . years of experience have taught us how to create a logo that makes a statement that is unique to you . in a pr ofessional manner we learn about your image and how you would like the world to perceive you and your company . with this information we then create a logo that is not only unique but reflects the purpose of you and your company . for value and a logo that reflects your image , take a few minutes and visit try logos ! http : / / bootstrapped . biz . fresh - cds . biz sincerely , logo design team assume demonstrate alibi",1 +"Subject: the volleyball confidence guide the players ' guide to competitive confidence dominate the competition . . . mentally . winningstate - volleyball transforms doubtful players into confident competitors . go to winningstate . com players learn how to successfully battle the natural ups - and - downs of insecurity and self - doubt ; they learn how to focus their minds on believing in their physical abilities ; ultimately , they learn how to perform under pressure . ? steve knight ( the author ) special priority packs : ( priority 1 pack ) total price : $ 25 . 90 ( priority 3 pack ) total price : $ 59 . 90 "" the best confidence book we have ever read ! this is a must read if you want to be a cut above the average player . "" high school sports news ",1 +"Subject: double coverage amount , same payment . . . uyz save up to 75 % on your term life insurance ! compare rates from top insurance companies around the country in our life and times , it ' s important to plan for your family ' s future , while being comfortable financially . choose the right life insurance policy today . click the link below to compare the lowest rates and save up to 75 % compare your coverage you ' ll be able to compare rates and get a free application in less than a minute ! * get your free instant quotes . . . * compare the lowest prices , then . . . * select a company and apply online . get a free quote now ! you can ' t predict the future , but you can always prepare for it . referral - agent",1 +"Subject: hot stock info : drgv announces another press release a $ 3 , 800 investment could be worth $ 50 , 000 in a short period of time . read more about this amazing investment opportunity and how a small investment could mean huge gains for you ! there is no doubt that china stocks , which are new to u . s . stock markets , are destined to blast off . it happens time and time and time again . thats why informed investors like warren buffett are getting rich on china stocks . the market is enormous and now its your turn . the upside potential for drgv is huge . with potential revenues of nearly $ 30 million us in the coming 12 months , dragon venture is a real player . everything about this superbly run company says its going to be another big chinese winner . warren buffett said u . s . stocks are too expensive so he poured a chunk of his money into china . everyone knows what happens when mr . buffett gets into a market , it usually explodes ! here is why we are placing a target price of $ 1 . 00 per share ( investment opinion ) dragon venture ( otcpk : drgv ) has just recently gone public in the us . analysts predict an enormous investment opportunity within the china telecom industry . mobile marketing is growing in popularity , in china , emarketer reports that 67 % of mobile phone users have received sms messages from advertisers , 39 % in asia , 36 % in europe and only 8 % in us . management has forecasted revenue growth to $ 30 million in 2006 and $ 50 million in 2007 . short messaging services ( sms ) is a strong telecom niche . this is an asian phenomenon ! ! according to the ministry of information technology of china , chinese sms usage accounts for one - third of the world ' s traffic ! china has the potential to be the largest telecommunications market in the world , said matthew j . flanigan , u . s . telecommunications industry president . drgv won ' t be selling at $ 0 . 055 a share for long . within days , the buzz about this company will spread on the street . the stock is ready to move up for a breakout to $ . 50 to $ 1 per share . drgv is a must buy for any micro - cap investors . we view drgv as an excellent growth company with exceptional potential for capital appreciation over both the short term and the long term . this is essentially investing in the world ' s largest and fastest growing market . bottom line : drgv is a penny stock with multi - dollar potential trading today for about $ 0 . 055 / share . we are targeting the stock to trade in the range of $ 1 a share . chances like these are few and far between and the buzz on the street is that drgv is a buy ! who knows when you ' ll have another chance to turn such a huge profit again ? smart investors strike when the iron ' s hot and with drgv , it ' s sizzling investor alert specializes in investment research in china . we are not registered investment advisor or broker / dealer . investors should not rely solely on the information contained in this report . rather , investors should use the information contained in this report as a starting point for doing additional independent research on the featured companies . factual statements in this report are made as of the date stated and are subject to change without notice . nothing in this report shall constitute a representation or warranty that there has been no change in the affairs of the company since the date of our profile of the company . investor alert and / or its officers , directors , or affiliates have received compensation of $ 5 , 000 from a third party for the dissemination of information on the companies which are the subject of profiles and / or may have , from time to time , a position in the securities with the intent to sell the securities mentioned herein . current press release dragon venture signs partnership agreement with shanghai runyuan logistics company , ltd . to form a joint venture monday july 18 , 7 : 46 am et ft . lauderdale , fla . , july 18 , 2005 ( primezone ) - - dragon venture ( other otc : drgv . pk - news ) , a holding company of high - tech companies in china , announced today that shanghai cnnest technology development company , limited ( ` ` cnnest ' ' , http : / / www . cnnest . com ) , a subsidiary of drgv , recently signed a partnership agreement with shanghai runyuan logistics company , limited ( ` ` runyuan ' ' ) to form a joint venture . under the agreement , cnnest and runyuan will establish a joint venture with shanghai xintong technology company , limited . this joint venture is dedicated to developing mobile internet solutions for logistics for the trucking industry in china . as a leading company in the field of mobile internet solutions and applications in china , cnnest will be responsible for developing mobile internet applications for logistics involving the trucking and freight industries , and seek to have the applications available through both china mobile and china unicom . in return , cnnest will have 25 percent ownership of the new joint venture . runyuan will provide all the funding for this joint venture including cost associated with the development and refinement of the applications , and in turn will have 75 percent ownership of the joint venture . hidy cheng , vice president of dragon venture and general manager of cnnest , commented , ` ` we are very excited about this joint venture , because we believe the potential of this solution in the marketplace could be tremendous . shanghai runyuan is a leading company in the logistics industry in china . they have successful business operations , and an excellent reputation in china . the partnerships will provide us a great opportunity to turn our research and development into a commercial application for the logistics industry . the applications will provide the logistics industry a very efficient system in which information for transportation can be accessed through a cellular phone , anywhere . our revenues will be generated from an annual fee of the use of the system for each account and usage fee of the system . we believe this partnership will generate substantial income for the company . ' ' about dragon venture dragon venture ( ` ` dragon ' ' ) is doing business in china through its subsidiaries . dragon was established to serve as a conduit between chinese high - growth companies and western investors . the current focus of dragon is on the development of wireless 3 g - based applications and business solutions . two companies that dragon has acquired are among the leading providers of mobile internet applications and business solutions in china . as china emerges as a growing force on the global stage , dragon ' s professionals will provide invaluable services for western investors seeking to gain access to the chinese high - tech economy . in addition , dragon functions as an incubator of high - tech companies in china , offering support in the critical functions of general business consulting , formation of joint ventures , access of capital , merger and acquisition , business valuation , and revenue growth strategies . dragon will develop a portfolio of high - tech companies operating in china . our focus will be on innovative technological applications , which are poised to alter the competitive landscape of the industry . in addition , the company acquires and invests in innovative technology companies in china or forms joint ventures with both american and chinese companies , focusing on emerging technology industries including telecommunication , information technology , wireless applications , and other high - tech industries . for more information about dragon venture , please visit http : / / www . dragonventure . net . safe harbor statement certain statements set forth in this press release constitute ` ` forward - looking statements ' ' . forward - looking statements include , without limitation , any statement that may predict , forecast , indicate , or imply future results , performance or achievements , and may contain the words ` ` estimate ' ' , ` ` project ' ' , ` ` intend ' ' , ` ` forecast ' ' , ` ` anticipate ' ' , ` ` plan ' ' , ` ` planning ' ' , ` ` expect ' ' , ` ` believe ' ' , ` ` will likely ' ' , ` ` should ' ' , ` ` could ' ' , ` ` would ' ' , ` ` may ' ' or words or expressions of similar meaning . such statements are not guarantees of future performance and are subject to risks and uncertainties that could cause the company ' s actual results and financial position to differ materially from those included within the forward - looking statements . forward - looking statements involve risks and uncertainties , including those relating to the company ' s ability to grow its business . actual results may differ materially from the results predicted and reported results should not be considered as an indication of future performance . the potential risks and uncertainties include , among others , the company ' s limited operating history , the limited financial resources , domestic or global economic conditions - - especially those relating to china , activities of competitors and the presence of new or additional competition , and changes in federal or state laws , restrictions and regulations on doing business in a foreign country , in particular china , and conditions of equity markets . dragon venture 335 guoding rd . building 2 , ste . 2009 shanghai , china 200081 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: now you can learn the most pleasant moments of sex ! you can decide right now to develop the same libido . [ what is the definition of guts ? ] grace under pressure . every man ' s life is a fairy - tale written by god ' s fingers . et tu , brute !",1 +"Subject: failure notice hi . this is the qmail - send program at mail . unl . edu . ar . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : 168 . 96 . 132 . 208 does not like recipient . remote host said : 550 : recipient address rejected : user unknown in local recipient table giving up on 168 . 96 . 132 . 208 . - - - below this line is a copy of the message . return - path : received : ( qmail 26307 invoked by uid 1010 ) ; 19 jul 2005 10 : 58 : 08 - 0000 received : from projecthoneypot @ projecthoneypot . org by mail by uid 1002 with qmail - scanner - 1 . 22 ( sophie : 3 . 04 / 2 . 19 / 3 . 80 . clear : rc : 0 ( 221 . 184 . 168 . 155 ) : . processed in 0 . 816554 secs ) ; 19 jul 2005 10 : 58 : 08 - 0000 received : from pl 155 - ipbfl 3 kyoto . kyoto . ocn . ne . jp ( helo mailwisconsin . com ) ( 221 . 184 . 168 . 155 ) by mail . unl . edu . ar with smtp ; 19 jul 2005 10 : 58 : 07 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 38190577 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : distinctmartin @ bugs . unl . edu . ar user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices startinq at $ 1 . 99 per dose ! unbelivable !",1 +"Subject: lock in your clients ' gains ! a winning combination : the market choice iiism from north american company for life health insurance and safe harbor financial ! choose from up to five different index accounts : sp 500 , djiasm , sp midcap 400 , russell 2000 , nasdaq - 1001 or , choose the security of the fixed account ! 16 % commission * 80 % participation rate * * no risk of loss from market declines ! your clients will love the security of this outstanding product ! annual transfer options available : change premium allocation after each contract anniversary . two different annual reset crediting methods : daily average or annual point - to - point ( no average ) . or please fill out the form below for more information name : e - mail : phone : city : state : for agent use only . not intended for consumer solicitation purposes . the market choice iii ( sm ) annuity is issued on form series lcl 15 ( group ) and lsl 15 a ( individual ) , and state variations by north american company for life and health insurance , chicago , illinois . this product and its features may not be available in all states . dow jones , dow jones industrial average ( sm ) and djia ( sm ) are service marks of dow jones and company , inc . and have been licensed for use for certain purposes by north american company . russell 2000 index is a trademark of frank russell company and has been licensed for use by north american company . standard poor ' s , sp , sp 500 , standard poor ' s 500 index , sp midcap 400 index and standard poor ' s midcap 400 index are trademarks of the mcgraw - hill companies , inc . and have been licensed for use by north american company . the nasdaq - 100 , nasdaq - 100 index and nasdaq are registered marks of the nasdaq stock market inc . ( which with its affiliates are the corporations ) and are licensed for use by north american company . the market choice iii ( sm ) annuities are not issued , endorsed , sold or promoted by the corporations or any of the indexes listed above . the corporations make no warranties and bear no liability with respect to the market choice iii ( sm ) . * commissions are based upon rates as of 5 / 1 / 02 . commissions may vary by state and are subject to change . * * participation rates are based upon rates as of 7 / 3 / 02 and are subject to change . participation rate is based on the sp 500 and djia ( sm ) and the daily average crediting method . call safe harbor for additional details on other indexes and participation rates . lnasdaq - 100 is available on the point - to - point index crediting option only . 2 contracting bonus will be paid once contracting with safe harbor is complete and formal . ndf - 8079 z - adii - 421 prt . 7 / 02 exp . 9 / 15 / 2002 we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: more then 70 great pornstars sex movles ! dowlnoad all our collection ! - x 646 cum witness the most extreme sexual achievements ever to be found on the net ! we have tons of exclusive never before seen pics and videos of your fav pornstars doing exactly what you dream to see ! do you think you have what it takes to beat one of our records ? we welcome all member entries , cum see if you have what it takes to earn a spot in our record library ! http : / / uxm 5 . info . lediesnight . biz / - - - - - - - - - - - - - - checkbook dahomey canaveral belgrade affiliate carven armillaria baneberry brown brasilia collier demarcate",1 +"Subject: more then 70 great pornstars sex movles ! dowlnoad all our collection ! - x 853 come explore the world ' s largest adult studio ! see all the biggest names in porn in exclusive hardcore xxx movies . vivid got the hottest pornstars ! http : / / armful . biz . babylom . info / - - - - - - - - - - - - - - boatyard caption configure connecticut despise catskill brady churchwoman cannon corpora bahama byzantine",1 +"Subject: account zzzz @ example . com new account for : zzzz @ example . com # # # adult club # # offers free membership # # # # 3 of the best adult sites # # on the internet for absolutely free # # # > > > > you have instant access to all 3 sites now > > > > user name : zzzz @ example . com > > > > password : 1534 - - - - - - - - - - - - - - - - - - - - news 09 / 24 / 02 with just over 4 . 8 million members that signed up for free , last month there were 921 , 947 new members . are you one of them yet ? ? ? - - - - - - - - - - - - - - - - - - - - our membership faq q . why are you offering free access to 3 adult membership sites for free ? a . i have advertisers that pay me for ad space so you don ' t have to pay for membership . q . is it true my membership is for life ? a . absolutely you ' ll never have to pay a cent the advertisers do . q . can i give my account to my friends and family ? a . yes , as long they are over the age of 18 . q . do i have to sign up for all 3 membership sites ? a . no just one to get access to all of them . q . how do i get started ? a . click on one of the following links below to become a member . > > > > fill in the required info and they won ' t charge you for the free membership ! > > > > if you don ' t believe us , just read their terms and conditions . - - - - - - - - - - - - - - - - - - - - # 3 . > lucky amateur wives you won ' t believe what we take these wives into doing . . . free vip membership ! ! # 2 . > new ! just added today : cum drinkers 950 , 00 pics , 90 , 000 movies , live sex shows . . . free lifetime membership ! ! # 1 . > filthy teen sluts the ultimate xxx teen site . . . free vip membership ! ! - - - - - - - - - - - - - - - - - - - - jennifer simpson , miami , fl your free lifetime membership has entertained my boyffriend and i for the last two years ! your adult sites are the best on the net ! joe morgan manhattan , ny your live sex shows and live sex cams are unbelievable . the best part about your porn sites , is that they ' re absolutely free ! - - - - - - - - - - - - - - - - - - - - disclaimer : we are strongly against sending unsolicited emails to those who do not wish to receive our special mailings . you have opted in to one or more of our affiliate sites requesting to be notified of any special offers we may run from time to time . we also have attained the services of an independent 3 rd party to overlook list management and removal services . this is not unsolicited email . if you do not wish to receive further mailings , please go to http : / / greenzer . com / remove . php to be removed from the list . please accept our apologies if you have been sent this email in error . we honor all removal requests . thank you zzzz @ example . com oldhtlheuhcclco",1 +"Subject: fw : [ 5 ] how have you been ? i have very exciting news ! we finally were able to save an extra $ 450 a month . we reflnanced our mortgage with a 3 . 75 % lower rate , and closing was fast ! the application was free and we got several low rate quotes within days ciick on this link and check it out ! time to save . if you prefer to be left out of this amazing offer going here will help you to do so .",1 +"Subject: email list - 100 million addresses $ 79 jane , here is the information you requested your email address : webmaster @ efi . ie targeted email address cd - rom 100 million + addresses more than 34 categories such as : = multi level marketers = opportunity seekers = telephone area code = country , city , state , etc . . = people running home businesses or interested in home businesses . = travel & vacations = opt - in = people interested in investments = people or businesses who spent more than $ 1000 on the web in thelast 2 months and many more * contains us & international emails * everything on this disk is in text file format and fully exportable . * the cd is as easy to use as browsing your c drive in explorer . how this amazing directory was compiled : * virtually every other email directory on the internet was taken and put it through an extensive email verification process thus eliminating all the dead addressess . * special software spiders through the web searching websites , newsgroups and many other online databases with given keywords like area codes , industries , city names etc . . to find millions of fresh new addresses every week . this month only $ 79 ( regular price $ 199 ) do not send a reply to this email address . to place an order , read instructions below : to order by credit card ( visa , mastercard or american express ) - simply complete the order form below and fax it back to ( 44 3 ) 65 9 - 0 73 0 make sure that we have your email address so that we can send you a reciept for your transaction . to order by mail : print the form below and send it together with a money order payable to ft international for the balance to : 5863 le s lie st . suite 408 t oronto , ont a rio canada or d e r f or m : please print clearly full name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ company name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ email address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ * required field shipping address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ shipping options : [ ] $ 5 regular mail ( 1 - 2 weeks ) [ ] $ 12 priority mail ( 2 - 4 business days ) [ ] $ 25 fedex ( overnight ) $ 79 . 00 usd + shipping charge $ _ _ _ _ _ _ _ _ us = total : $ _ _ _ _ _ _ _ _ _ usd [ ] credit card order [ ] mail order credit card orders fax this order form back to 1 - 44 3 - 6 59 - 07 3 0 ) card # : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ expiry date : _ _ _ _ _ _ _ _ _ _ _ _ _ _ type of card [ ] visa [ ] mastercard [ ] american express name on card : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ billing address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ zip / postal : _ _ _ _ _ _ _ _ _ _ _ _ city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _ cardholder signature : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ please note that ft i n t e rn a ti o n al will appear on your statement . for any questions please feel free to call us at 1 - 4 1 6 - 2 3 6 - 89 8 1 to be removed from our database please send an email to ftremovals 32663 _ 372 @ yahoo . com",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) orderinq viagra oniine is a very convinient , fast and secure way ! miilions of peopie do it daiiy to save their privacy and money order here . . . ",1 +"Subject: . + . 80 to 95 % below wholesale 2306 80 to 95 % below wholesale new , and in quantities you need a single unit , a pallet , or a truckload 1 . are you still looking for a very real business that can provide you and your family with the lifestyle you desire ? or , just a second income in your spare time ? 2 . would you invest $ 66 . 50 ( a 33 % discount off of our regular price of $ 99 . 95 during this limited time promotion . ) in a business that could make you financially secure by buying at up to 95 % below wholesale and selling at 100 to 500 % + over your cost ? if so , read on : this is not a get rich quick scheme , but , it is a way for you to get into a business with a minimal investment and , may be your first step towards a rewarding first , or second income . for the longest time , only those , who were able to make large investments were able to take advantage of this type of a business . we have made it possible for everyone to do it , and at a price everyone can afford . corporate america has conditioned us to believe that security comes from employment . yet layoffs are hitting an all time high , major corporations are failing and we hope to never become the victims of this downsizing , career burn out , illness or injury . there was a time , when finding another job was not a problem , but today , the frightening reality for a lot of people is that the plastic in their wallets determines the quality of their lives . the hard facts show that our economy has moved from the industrial age into the information , service and retail age . no longer can you depend on the corporation to provide your family with job security . we all need a backup plan . if you are tired of living from paycheck to paycheck , and are willing to work a few hours per week , than this may be for you . please read further : we will show you how you can buy , new , not out of date , products for pennies on the wholesale dollar . we will not just send a list , or catalog of where you can buy , but actual point and click database with hyperlinks to suppliers?ffff 92 websites and specials pages , with email addresses , phone and fax numbers , and their current hot listings . unlike others?ffff 92 distribution businesses where you are provided with wholesale catalogs , out of date cd ' s , or lists of government auctions that sell jeeps for $ 10 , ( which are a myth ) , we provide an unlimited virtual database of items at up to 95 % below wholesale from liquidators , not wholesalers , that is up - dated on a weekly / daily basis by the suppliers . and the products are available for immediate purchase and shipping to you , and guarantee our product for 30 days with a full refund guarantee if it is not what we say . this database is designed for the individual or a small business . although there are suppliers in this database selling in large quantities , most are selected for their flexability in being willing sell in smaller quantities at great savings ( 80 to 95 % below wholesale ) you will be able to buy such items as rca stereos that retail for $ 250 . 00 + for $ 10 to $ 20 . 00 , new boom boxes for $ 12 . 50 each , palm pilots for $ 39 . 00 , cell phone antenna boosters that sell on tv for $ 19 . 95 - - for . 16 cents , perfect pancake makers as seen on tv for $ 19 . 95 , for $ 6 . 50 , cd?ffff 92 s for $ 0 . 75 each , pentium computers for as little as $ 11 . 00 , or computer software that retails up to $ 74 . 99 for $ 0 . 50 each . if you would like to see some sample listings and featured specials , please email us at moreof 80 to 95 @ themail . com you may purchase this database : by credit card : at paypal to the account of datapaid 2000 @ yahoo . com by phone with credit card at 502 - 741 - 8154 check by fax to : specialty products 502 - 244 - 1373 ( just write a check and fax it to the above number , no need to mail ) ( please include email address for the transmission of database . ) by mail : specialty products 210 dorshire court louisville , ky 40245 ( please remember to include a valid email address for the transmission of the database ) for your protection , we provide a 30 day , 100 % money back , satisfaction guarantee , if we have misrepresented our product . what do you get for your $ 66 . 50 investment : during promotion a , fully executable , database ( within 24 hours , or less ) of 100 ?ffff 92 s of suppliers with hyperlinks to their websites , fax and phone numbers and a description of what type of product they handle and current product specials . and , on - going telephone support during normal business hours . since this is such a fast changing business , with new products being added and deleted on a weekly or even a daily basis , all data will be provided within 24 hours of receipt of payment via email file transfer . ( no waiting or shipping and handling costs ) the $ 66 . 50 is your total one time cost . ( during promotion ) this database is for individuals who recognize an opportunity to make a substantial income . keep in mind , everyone likes a bargain , and even more so when the economy is down . so , even if you just want to buy for your own use , a single purchase could repay your initial investment . and , remember we provide a 30 day , full refund satisfaction guarantee . we know that this has been a brief description , and you may want additional information . you may email us at moreof 80 to 95 @ themail . com for additional information and a sample of listings currently being offered by various suppliers . ( if you give us some idea of what types of products interest you , we will try to include some sample listings of those products . ) we look forward to being of service in your new venture . specialty products ",1 +"Subject: hey man , stop throwing away your money penis enlargement patch that works ! ! ! http : / / www . siratu . com / ss / beauty holds more worth than gold . glory built on selfish principles is shame and guilt . moderation in all things . people who throw kisses are hopelessly lazy . we must not let our rulers load us with perpetual debt .",1 +"Subject: find where to buy online cheap viagra . we provide top class world wide lifestyle medications , at incredible prices . it ' s only after we ' ve lost everything that we ' re free to do anything . peace visits not the guilty mind . ( nemo malus felix ) do good and don ' t worry to whom .",1 +"Subject: failure notice hi . this is the qmail - send program at maill 9 b . gl 9 . rapidsite . net . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : 64 . 18 . 7 . 10 failed after i sent the message . remote host said : 571 message refused - - - below this line is a copy of the message . return - path : received : from mxl 1 . stngvaol . us . mxservers . net ( 204 . 202 . 242 . 100 ) by maill 9 b . gl 9 . rapidsite . net ( rs ver 1 . 0 . 95 vs ) with smtp id 1 - 017201846 for ; tue , 19 jul 2005 07 : 00 : 50 - 0400 ( edt ) received : from unknown [ 211 . 168 . 67 . 248 ] ( helo mailwisconsin . com ) by mxl 1 . stngvaol . us . mxservers . net ( mxl _ mta - 1 . 3 . 8 - 10 p 4 ) with smtp id 06 ddcd 24 . 14068 . 061 . mxl 1 . stngvaol . us . mxservers . net ; tue , 19 jul 2005 07 : 00 : 48 - 0400 ( edt ) received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 30516488 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : antonio _ ortiz 33 @ jobops . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal x - spam - flag : yes x - spam : [ f = 1 . 0000000000 ; heur = 0 . 500 ( 1000 ) ; stat = 0 . 997 ; spamtraq - heur = 1 . 000 ( 2005071819 ) ] x - mail - from : x - source - ip : [ 211 . 168 . 67 . 248 ] x - loop - detect : 1 x - distloop - detect : 1 soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivabie !",1 +"Subject: moore medz hello , welcome to medzonline sho apiculture p we are pleased to introduce ourselves as one of the ieading online pharmaceuticai shop gamble s . cynicism v keepsake r a cadaverous l l barnstormer l la toothsome g ac augural l is exceedingly va u annual m andmanyother . - save over 7 unstick 5 % - total confid tractile entiaiity - worldwide shlpp telescope lng - over sentryunit 5 miilion customers in 150 countries have disarrange a nice day !",1 +"Subject: cell phone weather service for outdoorsmen font - size : 12 px ; padding : 5 px "" > free trial : start your 14 day free trial now ! locks in your discount ! - or - subscribe now : start your discounted full subscription right away ! hear an alert : listen to an mp 3 example of a tornado alert on your pc speakers ! more information : go to the weatherwave website for more info . get weatherwave now ! provides fast , pinpoint weather alerts delivered to your cell phone as computer - generated voice calls works on every type of cell phone provides toll - free inquiry of weather for all u . s . cities ( and for coastal boaters , all u . s . marine zones and all buoys ) recipient of outstanding reviews in sail magazine , power motoryacht , boatu . s . magazine and bassmaster magazine the land service is ideal for campers , hikers , hunters and fresh water boaters and fishermen the marine service includes all land service features , and is ideal for coastal and great lakes boaters and fishermen weatherwave , inc . 11654 plaza american dr . # 748 reston , va 20190 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: your own desk top investigator astounding new software lets you find out almost anything about anyone . . . download it right now ( no charge card needed ) : click here : http : / / lv 508 p . sg . st discover everything you ever wanted to know about : your friends your family your enemies your employees yourself - is someone using your identity ? even your boss ! did you know you can search for anyone , anytime , anywhere , right on the internet ? download this software right now - - click here : http : / / lv 508 p . sg . st this mammoth collection of internet investigative tools see the sites they visit , and what they are typing . - explore secret web sites that conventional search engines have never found . click here : http : / / lv 508 p . sg . st = = > discover little - known ways to make untraceable phone calls . = = > check adoption records ; locate missing children or relatives . = = > dig up information on your friends , neighbors , or boss ! = = > discover employment opportunities from around the world ! = = > locate transcripts and court orders from all 50 states . = = > cloak your email so your true address can ' t be discovered . = = > find out how much alimony your neighbor is paying . = = > discover how to check your phones for wiretaps . = = > or check yourself out , and you will be shocked at what you find ! ! these are only a few things you can do , there is no limit to the power of this software ! ! to download this software , and have it in less than 5 minutes click on the url below to visit our website ( new : no charge card needed ! ) http : / / lv 508 p . sg . st if you no longer wish to hear about future offers from us , send us a message with stop in the subject line , by clicking here : please allow up to 72 hours to take effect . please do not include any correspondence in your message to this automatic stop robot - - it will not be read . all requests processed automatically . [ : } h & * tgobk 5 nkiys 5 ]",1 +"Subject: you are approved ! ! ! ( 158545 ) our loan packages have never been more attractive ! now is the time to refinance your home or get a second mortgage to consolidate all of your high interestcredit card debt . get all the smart cash you ' ll need ! cash out your equity while rates are low ! all usa homeowners easily qualify ! damaged credit is never a problem ! we work with nation - wide lenders that are offering great deals and will provide you with the best service on the internet ! our service is 100 % free ! click here for more details and to receive a no obligation quotation today ! we strongly oppose the use of spam email and do not want anyone who does not wish to receive ourmailings to receive them . please click here to be deleted from further communication click here to unsubscribe from future promotions . 77259",1 +"Subject: windows xp pro $ 49 . 95 ms 2003 opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 adobe photoshop 9 . 03 windows xp pro 4 adobe acrobat 7 pro 5 flash mx 20046 corel draw 127 norton antivirus 20058 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe illustrator 11 see more by this manufacturer microsoft symantec adobe customers also bought these other items . . . microsoft office professional edition * 2003 * microsoftchoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 86 % ) availability : available for instant download ! coupon code : qaxvogcpu sales rank : # 1 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1956 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobechoose : view other titles list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : bcqqf sales rank : # 2 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 18525 reviews . write a review . microsoft windows xp professional or longhorn edition microsoftchoose : view other titles list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : i 7 fxw 5 xj sales rank : # 3 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1879 reviews . write a review . adobe acrobat professional v 7 . 0 adobechoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 85 % ) availability : available for instant download ! coupon code : ejwludroy sales rank : # 4 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 162182 reviews . write a review .",1 +"Subject: online pharmacy - buy drugs online also available levitra , cialis , and viagra . a man ' s dying is more the survivors ' affair than his own . whoever obeys the gods , to him they particularly listen . character is who you are when no one is looking . if power was an illusion , wasn ' t weakness necessarily one also ?",1 +"Subject: keep your home safe u . s . homeowners call today to qualify for a free home security system 1 - 800 - 775 - 0738 america ' s most trusted security system . . . the most comprehensive security package ever offered free ! over 135 , 000 families made the right choice ! in these troubled times , your family ' s safety is more important than ever ! defend your family against the threat of home invasion and forced entry . make sure you ' re prepared to get help in the event of an emergency . take advantage of the following special offer . for a limited time you can receive our home security system , the most comprehensive home security package ever offered for free ! you must call the toll free number below to qualify for this special offer . you don ' t have to be a victim ! intelligent homeowners are awakening to one undeniable fact . studies show burglars will commit crimes somewhere else when confronted with a monitored security system . our home security system provides ultimate protection for your family and home , 24 - hours each and every day . the bad guys will have to go elsewhere to find their victim . state - of - the - art wireless technology ! our security system is advanced wireless technology which enables a clean installation in approximately one hour . no holes to drill , no unsightly wires to run . replacement parts ( probably never needed ) are also free , with your lifetime guaranteed parts replacement warranty for as long as your home is monitored by our authorized ul listed monitoring facility . that tells you the confidence we place in our product ' s quality . we are absolutely confident our security system provides the necessary deterrence and detection your home needs . to prove it , the company will pay your insurance deductible ( up to $ 250 . 00 ) in the unlikely event you suffer a loss from an unwanted intrusion . you also may be eligible for up to 20 % in insurance premium discounts . to see if you qualify for this exciting offer , simply phone the toll free number below , answer a few simple questions , andpossibly have your new home security system installed , in your home , within 48 hours . call now ! ! 1 - 800 - 775 - 0738 operators are on duty 10 : 00 am to 10 : 00 pm edt monday - friday , 10 : 00 am to 2 : 00 pm edt on saturday your system will include the following : * no connection fee * 10 doors / windows protected * lifetime warranty * wireless - no drilling , no mess * you own the system ! * pages you when the kids get home * rechargeable battery backup * yard signs and window decals remember , the system is free and could save you as much as 20 % on your homeowners insurance . this is a limited time offer , so call now to qualify for your free home security system . call today ! 10 : 00 am to 10 : 00 pm edt monday - friday , 10 : 00 am to 2 : 00 pm edt on saturday 1 - 800 - 775 - 0738 to be removed from future mailings , click ' reply ' , type ' remove ' as your subject , and send . ",1 +"Subject: i think you might be interested hello , i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walker",1 +"Subject: macromedia studio mx 2004 ( 1 cd ) $ 55 http : / / bizarre . mainoemstore . com / ? a = 3107",1 +"Subject: custom logos and identities from us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of iogos , stationery and web - sites . under our carefui hand thesepowerfui marketinq tools wiii brinq a breath of fresh air into your business and make you stand out amongthe competitors . you are just a click away from your future success . ciick here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: will this stox rock ? we told you to watch ! ! ! it ' s still not too late ! trading alert ! ! ! timing is everything ! ! ! profits of 200 - 400 % expected trading symbol : cdgt . ob opening price : 3 . 15 yes , it is moving , wednesday could be even bigger ! ! ! 10 day target : $ 7 - $ 8 news alert ! * * * * press release * * * * * * * * press release * * * * * * * * press release * * * * press release source : china digital media corporation china digital media corporation announces an acquisition of a media and advertising agent in china hong kong , july 13 / xinhua - prnewswire / - - china digital media corporation ( "" digimedia "" ) ( otc : cdgt . ob ; otc bulletin board : cdgt . ob ) with its subsidiaries ( together the "" group "" ) announced today that the group signed a shares transfer agreement ( the "" agreement "" ) to acquire an advertising sales agent , guangdong m - rider media company limited ( "" guangdong m - rider "" ) , a limited company registered in guangdong in the peoples republic of china . the principal operating activities of guangdong m - rider are in design , production and distribution of advertisements through television channels . guangdong m - rider is one of the top five reputed advertising agents in the guangdong province and is currently a sole advertising distributor for a number of television channels in guangdong province and in guangzhou city . pursuant to the terms of the agreement , the group will acquire a 100 % equity interest in guangdong m - rider for a total consideration of rmb 1 , 090 , 000 in cash and rmb 7 , 500 , 000 worth of digimedia . s restricted common shares . the management of guangdong m - rider in the agreement warrants that the net operating cash inflow in the first year will not be less than rmb 10 , 000 , 000 . cdgt . ob is expecting to make an acquisition , once this announcement comes out the street should give applause in the form of upward movement in the stock price . the stock could trade around $ 6 - $ 8 per share on this type of news . get in now ! ! ! you know the old saying , buy on the rumor and sell on the news . once the news is out it is time to get ready for next valley . a $ 1 , 000 dollar investment could yield a $ 5 , 000 dollar profit in just one trade if you trade out at the top . cdgt . ob should be one of the most profitable stocks to trade this year . in this range the stock has potential to move in either direction in bigs wings . this means you should be able to buy at the lows and sell at the highs for months to come . you could make $ $ $ thousands of dollars $ $ $ trading . cdgt . ob over and over again . cdgt . ob is also on the reg sho threshold list , this means someone is short the stock . any significant volume spike in chms could yield drastic results . if the people that are short have to cover , they will be buying the shares from you at higher prices . this makes this stock a triple play for profits . for pennies you can participate in a stock that could yield results over and over again just based on the trading patterns if the company is able to effectuate it ' s business model . watch out ! ! ! we could see a great story in the making . good luck and trade out at the top ! ! ! ! disclaimer : information within this email contains "" forwardlooking statements "" within the meaning of section 27 aof the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements "" . "" forward looking statements "" are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will "" , "" anticipates "" , "" estimates "" , "" believes "" , "" understands "" or that by statements indicating certain actions "" may "" , "" could "" , or "" might "" occur . risk factors include general economic and business conditions , the ability to acquire and develop specific projects , the ability to fund operations and changes in consumer and business consumption habits and other factors overwhich the company has little or no control . the publisher of this newsletter does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the publisher of this newsletter advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . we urge you to read the company ' s sec filings now , before you invest . the publisher of this newsletter is not a registered invstment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . in compliance with the securitiesact of 1933 , section 17 ( b ) , the publisher of this newsletter is contracted to receive six hundred thousand free trading shares from a third party , not an officer , director or affiliate shareholder for the circulation of this report . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and is not without bias . the party that paid us has a position in the stock they will sell at anytime without notice . this could have a negative impact on the price of the stock , causing you to lose money . all factual information in this report was gathered from public sources , including but not limited to sec filings , company websites and company press releases . the publisher of this newsletter believes this information to be reliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: all the software you ' ll ever need to successfully make money online ! understanding oem software it is impossible to say just what i mean ! above all , try something .",1 +"Subject: info you requested kcc thank you for your interest ! judgment coursesoffers an extensive training course in "" how to collect moneyjudgments "" if you are like many people , you are not even sure what a money judgment is and why processing money judgments can earn you very substantial income . if you ever sue a company or a person and you win then you will have a money judgment against them . you are happy you won but you will soon find out the shocking fact : its now up to you to collect on the judgment . the court does not require the loser to pay you . the court will not even help you . you must trace the loser down , find their assets , their employment , bank accounts , real estate , stocks and bonds , etc . very few people know how to find these assets or what to do when they are found . the result is that millions of judgments are just sitting in files and being forgotten . in 79 % of the cases the winner of a judgment never sees a dime . the non - payment of judicial debt has grown to epidemic proportions . right now in the united states there is between 200 and 300 billion dollars of uncollectedmoney judgment debt . for every judgment that is paid , 5 more judgments take its place . we identified this massive market 8 years ago and have actively pursued judicial judgments since . we invented this business . we have perfected it into a well proven and solid profession in which only a select few will be trained in the techniques necessary to succeed . with our first hand experience we have built a course which teaches you how to start your business in this new unknown and exciting field of processing money judgments . by following the steps laid out in our course and with reasonable effort you can become very successful in the processing of money judgments . the income potential is substantial in this profession . we have associates who have taken our course and are now working full time making $ 96 , 000 . 00 to over $ 200 , 000 . 00 per year . part time associates are earning between $ 24 , 000 . 00 and $ 100 , 000 . 00 per year . some choose to operateout of their home and work by themselves . others build a sizable organization of 15 to 25 people in attractive business offices . today our company and our associates have over 126 million dollars in money judgments that we are currently processing . of this 126 million , 25 million is in the form of joint ventures between our firm and our associates . joint ventures are where we make our money . we only break even when our course is purchased . we make a 12 % margin on the reports we supply to our associates . our reporting capability is so extensive that government agencies , police officers , attorneys , credit agencies etc . , all come to us for reports . many of our associates already have real estate liens in force of between 5 million to over 15 million dollars . legally this means that when the properties are sold or refinanced our associate must be paid off . the norm is 10 % interest compounded annually on unpaid money judgments . annual interest on 5 million at 10 % translates to $ 500 , 000 . 00 annually in interest income , not counting the payment of the principal . our associates earn half of this amount or $ 250 , 000 . 00 per year . this is just for interest , not counting principle and not counting the compounding of the interest which can add substantial additional income . typically companies are sold for 10 times earnings . just based on simple interest an associate with 5 million in real estate liens could sell their business for approximately 2 . 5 million dollars . 92 % of all of our associates work out of their home ; 43 % are women and 36 % are part time . one of the benefits of working in this field is that you are not under any kind of time frame . if you decide to take off for a month on vacation then go . the judgments you are working on will be there when you return . the judgments are still in force , they do not disappear . the way we train you is non - confrontational . you use your computer and telephone to do most of the processing . you never confront the debtor . the debtor doesn ' t know who you are . you are not a collection agency . simply stated the steps to successful money processing are as follows : mail our recommended letter to companies and individuals with money judgments . ( we train you how to find out who to write to ) 8 % to 11 % of the firms and people you write will call you and ask for your help . they call you , you don ' t call them unless you want to . you send them an agreement ( supplied in the course ) to sign which splits every dollar you collect 50 % to you and 50 % to them . this applies no matter if the judgment is for $ 2 , 000 . 00 or $ 2 , 000 , 000 . 00 . you then go on - line to our computers to find the debtor and their assets . we offer over 120 powerful reports to assist you . they range from credit reports from all three credit bureaus , to bank account locates , employment locates , skip traces and locating stocks and bonds , etc . the prices of our reports are very low . typically 1 / 2 to 1 / 3 of what other firms charge . for example we charge $ 6 . 00 for an individuals credit report when some other companies charge $ 25 . 00 . once you find the debtor and their assets you file garnishments and liens on the assets you have located . ( standard fill in the blanks forms are included in the course ) when you receive the assets you keep 50 % and send 50 % to the original judgment holder . once the judgment is fully paid you mail a satisfaction of judgment to the court . ( included in the course ) quote ' s from several of our students : thomas in area code 516 writes us : "" i just wanted to drop you a short note thanking you for your excellent course . my first week , part time , will net me 3 , 700 . 00 dollars . your professionalism in both the manual and your support . you have the video opened doors for me in the future . there ' s no stopping me now . recently thomas states he has over $ 8 , 500 , 000 worth of judgments he is working on "" after only having this course for four months , larry s . in area code 314 stated to us : "" i am now making $ 2 , 000 . 00 per week and expect this to grow to twice this amountwithin the next year . i am having a ball . i have over $ 250 , 000 in judgments i am collecting on now "" after having our course for 7 months larry s . in 314 stated "" i am now making $ 12 , 000 . 00 per month and have approximately $ 500 , 000 . 00 in judgments i am collecting on . looks like i will have to hire someone to help out "" marshal in area code 407 states to us "" i feel bad , you only charged me $ 259 . 00 for this course and it is a goldmine . i have added 3 full time people to help me after only having your course for 5 months "" > from the above information and actual results you can see why we can state the following : with our course you can own your own successful business . a business which earns you substantial income now and one which could be sold in 3 - 5 years , paying you enough to retire on and travel the world . a business which is extremely interesting to be in . a business in which every day is new and exciting . none of your days will be hum - drum . your brain is challenged . a business , which protects you from corporate downsizing . a business which you can start part time from your home and later , if you so desire , you can work in full time . a business , which is your ticket to freedom from others telling you what to do . a business , which lets you control your own destiny . our training has made this happen for many others already . make it happen for you ! if the above sounds interesting to you then its time for you to talk to a real live human being , no cost or obligation on your part . please call us at 1 - 281 - 500 - 4018 . we have service support staff available to you from 8 : 00 am to 10 : 00 pm ( central time ) 7 days a week . if you callthis number you can talk to one of our experienced customer support personnel . they can answer any questions you may have - with no obligation . sometimes we run special pricing on our courses and combinations of courses . when you call our customer support line they can let you know of any specials we may be running . if you like what you read and hear about our courses , then the customer support person can work with you to place your order . we are very low key . we merely give you the facts and you can then decide if you want to work with us or not . thank you for your time and interest . + + + + + this ad is produced and sent out by : uas to be excluded from our mailing list please email us at eds @ saiyan . com with "" exclude "" in the sub - line . or write us at : adminscript - update , p o b 1 2 0 0 , o r a n g e s t a d , a r u b a + + + + + + 5 ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' ' to 48 5 - 28 c 30 p - sspltm - 30 ",1 +"Subject: your application is below . expires july 27 . your application for the grant is below . remember , because of the type of grant this is , you will never need to repay ! > > time is limited . you must place your order by midnight , saturday july 27 , 2002 in order to secure a place in these programs . too many people can qualify for this program , so by limiting the initial applicants to the most serious , sincere and honest individuals . it will ensure that the program money is used for beneficial , constructive uses . remember there is no risk on your part . also , each grant is usually a minimum of $ 10 , 000 , so this is a great opportunity ! see if you are eligible for a larger grant ! if you do not qualify for the free grant program , you lose nothing ! but if you don ' t even apply , you lose everything ! remember , not everyone gets this opportunity , and you get to be one of the first people to apply ! so your chances are so much higher ! apply now ! deadline is almost here ! ",1 +"Subject: secretly record all internet activity on any computer . . . bv find out who they are chatting / e - mailing with all those hours ! is your spouse cheating online ? are your kids talking to dangerous people on instant messenger ? find out now ! - with big brother instant software download . click on this link now to see actual screenshots and to order ! to be excluded from future contacts please visit : http : / / 213 . 139 . 76 . 69 / php / remove . php danie",1 +"Subject: overstocked sunglasses for complementary , cindy . a . marcil make sure you are getting them today . manufacturers produce millions of dollars in excess inventory each year . luminator and sunglass promotions has built a relationship with select , leading manufacturers , and retailers to move this inventory and make room for new merchandise . * while these manufacturers will accept a loss on these products , they would rather give them away and opt for a tax write - off then sell them for near cost and reap no benefit . view entire selection of free sunglasses . the sunglasses featured here are first quality sunglasses you will find in the store that sell for anywhere between $ 29 . 95 $ 79 . 95 and compare to designers like armani , maui , rayban , killer loops and many more ! . the only stipulation is that most of our products come in very limited quantities . so if you see something you like , choose it now , because when they ' re gone , they ' re gone ! ",1 +"Subject: please read : newsletter regarding smallcaps small - cap stock finder new developments expected to move western sierra mining , inc . stock from 0 . 70 to over 4 . 00 westernsierramining . com western sierra mining is a company on the move , fast ! big news is out ! big business is afoot for wsrm ! read on to find out why wsrm is our top pick this week . * western sierra mining has a very profitable business model in which they avoid the highest cost associate with mining : exploration . essentially , wester sierra operates mines on sites that have been previously explored and found to be "" too small "" for the largest mining companies , yet still produce handsome profits . * the global mining industry boom will continue for the foreseeable future due to the impact of china - driven demand on commodity prices and long supply - response lead times . * news ! news ! news ! read on to find out why we expect wsrm to take off this week ! here is recent news on the company : phoenix - - ( business wire ) - - june 15 , 2005 - - western sierra mining corp . ( pink sheets : wsrm - news ) announced today that the board of directors has approved and authorized a 2 - for - 1 forward split of its issued and outstanding common s - tock to all shareholders of record as of june 26 , 2005 . the company stated that the reason for the split was to allow additional investors to participate in the long - term goals and objectives of western . phoenix - - ( business wire ) - - june 10 , 2005 - - western sierra mining ( pink sheets : wsrm - news ) and oretech inc . ( pink sheets : orte - news ) announced today that their respective boards of directors have agreed to enter into an agreement to develop the silver plume and pittsburg mines located in colorado . commenting on the proposed transaction , the president of western sierra mining , michael chaffee , said , "" the new alignment with oretech will allow each of the companies to utilize their specific expertise to the maximum benefit of the other . oretech is trying to focus on developing its propriety extraction technology and western is expanding its mining activities in the u . s . we have started our due diligence on the property and look forward to taking a proposal back to oretech by the end of the month . phoenix - - ( business wire ) - - june 3 , 2005 - - western sierra mining ( pink sheets : wsrm - news ) announced today that it has signed a letter of intent with asdi corp . providing wsrm the right to develop the asdi property located in crescent valley at battle mountain , nev . we cannot stress enough the significance of this news . a s - tock split can only mean one thing ; good business ! with the split date set at june 26 , now is obviously the time to get in . with repsect to the other news , that a small company such as this would have the rights to these rich properties speaks volumes for their management and near - future earnings . that they would be so fortunate as to be involved with an industry pioneer such as oretech is nothing short of extraordinary . these fortuitous events have earned wsrm our highly recommendation symbol : ( wsrm ) current price : 0 . 70 short term target price : 4 . 60 12 month target price : 8 . 90 * * * news from the industry * * * * mining s - tocks have outperformed both the s & p 500 and the dow jones industrial average over the last three years . * profits by mining companies have doubled for the second year in a row . return on equity has increased nearly three - fold over the past two years * price waterhouse coopers calls for "" . . . another bumper year for the global mining industry in 2005 . "" they go on to say , "" the sustained upturn in commodity prices has caught investors ' attention , creating a dash for mining s - tocks . add the unprecedented profits and free cash flows and we have a very buoyant industry . "" for more information read , mine - enter the dragon , by price waterhouse coopers , located at pwcglobal . com disclaimer : information within this email contains "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will , "" "" anticipates , "" "" estimates , "" "" believes , "" "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . as with many micro - cap s - tocks , today ' s company has additional risk factors worth noting . those factors include : a limited operating history , the company advancing cash to related parties and a shareholder on an unsecured basis : one vendor , a related party through a majority s - tockholder , supplies ninety - seven percent of the company ' s raw materials : reliance on two customers for over fifty percent of their business and numerous related party transactions and the need to raise capital . these factors and others are more fully spelled out in the company ' s sec filings . we urge you to read the filings before you invest . the rocket stock report does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your mone * y by investing in this stock . the publisher of the rocket stock report is not a registered investment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . any reference to past performance ( s ) of companies are specially selected to be referenced based on the favorable performance of these companies . you would need perfect timing to achieve the results in the examples given . there can be no assurance of that happening . remember , as always , past performance is never indicative of future results and a thorough due diligence effort , including a review of a company ' s filings , should be completed prior to investing . in compliance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discloses the receipt of twelve thousand dollars from a third party ( gem , inc . ) , not an officer , director or affiliate shareholder for the circulation of this report . gem , inc . has a position in the stoc * k they will sell at any time without notice . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and we are conflicted . all factual information in this report was gathered from public sources , including but not limited to company websites , sec filings and company press releases . the rocket sto * ck report believes this information to be reliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of logos , stationery and web - sites . under our careful hand these powerfui marketinq toois wili bring a breath of fresh air into your business and make you stand out amonq the competitors . you are just a ciick away from your future success . click here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: i know your company ! lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwheiming ; but a good catchy logo , styllsh statlonery and outstanding webslte wiil make the task much easier . we do not promise that havinq ordered a logo your company wiii automaticaliy become a worid leader : it isguite ciear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: new breed of equity trader $ $ $ $ $ $ $ world stock report for tuesday july 05 , 2005 $ $ $ $ $ $ $ $ good day to all broker ' s , day trader ' s and investor ' s world stock report has become famous with some great stock picks in the otc , small cap market ' s ! ! ! ! ! ! ! ! ! ! here at world stock report we work on what we here from the street . rumor ' s circulating and keeping the focus on the company ' s news . we pick our companies based on there growth potential . we focus on stocks that have great potential to move up in price ! ! ! while giving you liquitity . our latest pick is cdgt . symbol : cdgt current price : $ 3 . 90 short term 7 day projection : $ 8 - 9 we give it to you again as a gift . this company is doing incredible things . thay have cash and have made great strategic aquisitions . current price $ 3 . 85 to $ 4 . 00 . word on the sreet is strong buy . this company has dropped big new ' s in the past . who ' s to say they don ' t have another big one . * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * * * press release source : china digital media corporation china digital media corporation announces an investment in second television drama - ' xiguan affairs ' hong kong , june 29 / xinhua - prnewswire / - - china digital media corporation ( ' ' digimedia ' ' ) ( otc : cdgt - news ; otc bulletin board : cdgt - news ) with its subsidiaries ( together the ' ' group ' ' ) announced today the group is committed to invest rmb 4 , 680 , 000 for a minority interests in a television drama , ' ' xiguan affairs ' ' , in the peoples republic of china with guangdong runshi movie & music production co . , ltd . ( ' ' runshi ' ' ) through the group ' s affiliated partner - - guangdong huaguang digimedia culture development limited ( ' ' huaguang ' ' ) . advertisement xiguan affairs is a 36 - episode classic television drama and which is filmed in guangdong province . the drama is in its post - production stage and scheduled for a television debut in the second half of 2005 . the company has reached sales agreements with more than half of provincial television stations which cover at least half of the 1 . 14 billion tv viewers in china . the company expects the drama will generate profits in 2005 . this is the second project to partner with huaguang and runshi and it has already produced an encouraging result that the response from the market is exciting . remember the gains from our recent strong buy recommendations . . . disclaimer : information within this email contains "" forwardlooking statements "" within the meaning of section 27 aof the securities act of 1933 and section 21 b of thesecurities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forwardlooking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will , "" "" anticipates , "" "" estimates , "" "" believes , "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . risk factors include general economic and business conditions , the ability to acquire and develop specific projects , the ability to fund operations and changes in consumer and business consumption habits and other factors overwhich the company has little or no control . the publisher of this newsletter does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the publisher of this newsletter advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . we urge you to read the company ' s sec filings now , before you invest . the publisher of this newsletter is not a registered invstment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . in compliance with the securitiesact of 1933 , section 17 ( b ) , the publisher of this newsletter is contracted to receive six hundred thousand free trading shares from a third party , not an officer , director or affiliate shareholder for the circulation of this report . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and is not without bias . the party that paid us has a position in the stock they will sell at anytime without notice . this could have a negative impact on the price of the stock , causing you to lose money . all factual information in this report was gathered from public sources , including but not limited to sec filings , company websites and company press releases . the publisher of this newsletter believes this informationto be eliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: oreo cookies nationwide survey - win a years supply of oreos . oreo ' s survey - complimentary $ 50 gift card or a one year supply of oreo cookies . upwhyvkg",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - ) ordering viaqra oniine is a very convinient , fast and secure way ! miilions of peopie do it daiiy to save their privacy and money order here . . . ",1 +"Subject: need to find something ? to be removed from this list , click here .",1 +"Subject: custom warez cds introduction we sell backup cds , also known as warez cds . backup cds are copies of software . for example if you go into a shop and buy windows xp pro , for about $ 299 you get the serial , the cd , the box and the manual . if you order it off us , you get : the windows xp cd and the serial number . it works exactly the same , but you don ' t get the manual and box and the price is only $ 19 . 99 . that is a saving of $ 280 , and the only difference is you don ' t have a colorful box and manual - which are not very useful . features - over 400 applications - over 1500 games - we reply at all your requests in a few hours - newest releases - we have the best price on the web - best choice of cd ' s ever seen on web - we ship orders to worldwide - secure credit card processing thru our authorized on - line retailer . your information will be passed through a secure server and encrypted ( 128 bit ) . no need to worry about someone will steal you credit card details . most popular cd ' s . . . . . . . . adobe photoshop 7 . 0 finallonly : $ 19 . 99 ms windows xp pro . only : $ 19 . 99 ms office xp pro ( 3 cd ' s ) only : $ 19 . 99 gratitude ' s of our customers . . . john stewartthanks guys , i just got the set of cd ' s and they work as promised . you got a happy customer ready to order some more and i ' ll send more customers . mike sandelli only want you to now that the cd i ordered had arrived . i was a little suspicious when i ordered the stuff , but i was wrong . thanks for your services and never let the site go down . chris andersontop marks for an excellent service . your speed of response to my query was second to none . i ' ll certainly be buying from you in future . keep up the good work , guys . to order please open warezcds . html in attachment",1 +"Subject: we have been rated as # 1 one - stop - shop internet pharmacy . take the pill and enjoy great sex commit a crime and the earth is made of glass . creativity is the power to connect the seemingly unconnected . really , adv . apparently .",1 +"Subject: failure notice hi . this is the qmail - send program at mail . globalhosting . com . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , no mailbox here by that name . vpopmail ( # 5 . 1 . 1 ) - - - enclosed are the original headers of the message . content - type : message / rfc 822 return - path : received : ( qmail 93914 invoked by uid 399 ) ; 19 jul 2005 11 : 18 : 55 - 0000 received : from unknown ( helo ml . dnsix . com ) ( 63 . 251 . 171 . 164 ) by mail . globalhosting . com with smtp ; 19 jul 2005 11 : 18 : 55 - 0000 received : from [ 61 . 106 . 118 . 27 ] ( helo = mailwisconsin . com ) by ml . dnsix . com with smtp ( exim 4 . 44 ) id ldupnn - 0002 ud - uo for distltmich @ compusep . com ; tue , 19 jul 2005 03 : 58 : 20 - 0700 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 38191009 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : distltmich @ compusep . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal ( body supressed ) ",1 +"Subject: learn to build simple and clean websites that can bring in the dough . . . 75 % off for all new software . politeness , n . the most acceptable hypocrisy . fashion can be bought . style one must possess .",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 11 : 59 : 52 + 0100 from s 3 . uklinux . net [ 80 . 84 . 64 . 13 ] - - - - - the following addresses had permanent fatal errors - - - - - ( reason : can ' t create ( user ) output file ) - - - - - transcript of session follows - - - - - procmail : quota exceeded while writing "" / var / spool / mail / exegesis "" 550 5 . 0 . 0 . . . can ' t create output",1 +"Subject: for your information this is going to be our absolute notice we have attempted to drop a line to you on a lot times and now is the time to respond ! your current home loan enables you for up to a 3 . 60 % lower rate . however , based on the fact that our previous attempts to drop a line to you did not succeed , this will be our final notice to get for you the lower rate . please finalize this final step upon receiving this notice immediately , and complete your request for information now . application here . if your decision is not to make use of this final offer going here will help you to do so .",1 +"Subject: take action immediately or miss out . 003 - 300299717499832716 attention ! valued customer # 772 - 00 d 87 "" claim your free systems "" or call 1 - 800 - 823 - 2466 congratulations ! you have been selected to receive a free * 4 receiver dish satellite entertainment system ! risk free . click here to schedule your free installation ( $ 446 . 00 value ) . this is a special , limited - time offer with no hidden costs . order today and receive 3 months of programming free . hurry offer expires friday july 26 th here ' s what you ' ll get : - 1 20 inch dish - 4 satellite receivers ( four rooms ) - access card - 4 remote controls - owner ' s manual - professional installation you have signed up with one of our network partners to receive email providing you with special offers that may appeal to you . if you do not wish to receive these offers in the future , reply to this email with "" unsubscribe "" in the subject or simply click on the following link : unsubscribe ",1 +"Subject: hi , goood news hello , welcome to medzon breeder line shop we are pleased to introduce ourselves as one of the ieading online ascription pharmaceuticai shops . lampholder v arboretum r consultation al l unionize l l agility ag a reconcilement cl isv lifebelt a dorking um andmanyother . - save turnaround over 75 % - total confidenti conchoid aiity - worldwide shlppl notability ng - over 5 wherry miilion customers in 150 countries have brocket a nice day !",1 +"Subject: i do not have anything against you ourref : cbn / go / 0 xol 2 / 05 date : 21 st july 2005 tel : 234 - 1 - 470 - 7915 email address : mallamyusuf @ centbanks . org dear good friend after a serious thought , i decided to reach you directly and personally because i do not have anything against you , but your nigerian partners . i am the director of wire transfer / telex department of the central bank of nigeria , some time in the past your nigerian partners approached me through a friend of mine who works with one of the ministries here and requested that i assist them conclude a money transfer deal and we all agreed . according to them , they wanted to use this strategy to transfer a huge amount of us dollars which they accumulated through inflated contract awards and themoney has been floating in the ( c . b . n ) since the original beneficiary has been fully paid , so they wanted to use your account to transfer the surplus out of nigeria . we agreed that once i do this , they would give me us $ 100 , 000 . 00 and give me another usl 00 , 000 . 00 when i released the fund to your account . when they saw that i have done that and your name has been approved among the list of those to be paid , instead of giving me the agreed deposit of us $ 100 , 000 . 00 , they started avoiding me and resorted to threats . i immediately deleted the transfer code of the fund , which is only known to me because of my position , and release other contractors fund without yours . they became angry the more when they saw that their threat did not work , and started bribing other officials to get another approval to transfer the money to you without success . approvals are free , is it not funny that a beneficiary is being asked to pay for approval while his millions is here with us ? i am 100 % responsible for the delay and obstructions because of their breach of contract . if you doubt what i have just told you , pay any amount they will ask you to pay now , after a short time they will come up with another reason to pay again and it goes on and on . now if you want us to work together , these are my conditions . i . i will have 50 % of the money because it is only the two of us left fornow . ii . you will assist my son to open an account in your country or any other place of my choice where i will pay in my own share . iii as you have seen , it will be useless and mere waste of money if you continue with any other person , so we will conclude the transaction with utmost secrecy with the above telephone and fax number . if these conditions are acceptable to you , contact me as soon as possible to let us finalize so that i will send to you our official ktt wire transfer form to complete and i will release the money to your account . but if you are not interested , i advice you to forget the fund as it will be transferred into our consolidated national reserve . best regards . mallam yusuf director , wire transfer / telex dept . ( cbn ) tel : 234 - 1 - 470 - 7915 ( personal ) email address : mallamyusuf @ centbanks . org",1 +"Subject: maam , does your man satisfy you how did it go on wednesday ? feeling good is around the corner ! click now and get more power http : / / buychepmeds . com / ? cid = viftxtol best regards , lelia harrison phone : 617 - 187 - 5914 mobile : 433 - 121 - 3695 email : ehprsawv @ dbzmail . com r . e ' m . o ^ v ^ e http : / / buychepmeds . com / emover . php",1 +"Subject: secure your account dear lasalle bank customer , we recently noticed one or more attempts to login intro your lasalle bank online banking account for a foreign ip address and we have reasons to believe that your account was hijacked by a third party without your notification . if you recently logged intro your account while traveling to a foreign country , the unusual login attempts may have been made by you . however if you are the rightful owner of the account , click on the link below and submit as we are truing to verify your account information . ( in case you are not enrolled use your social security number as you user id and the first six digits of your social security number as a password ) . the login attempt was made from : ip : 82 . 89 . 87 . 55 isp host : host 55 - 87 . pool 8289 . interbusiness . it if you chose to ignore our request , we have no choice but to temporarily suspend your online banking account . ",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , kenia ",1 +"Subject: software for system builders , resellers , and hardware purchasers only . get latest softwares , 99 % savings . the two most abundant things in the universe are hydrogen and stupidity . i know nothing except the fact of my ignorance .",1 +"Subject: fantastic investors info maisonette international enterprises ltd ( maen ) a soiid hoiding of companies with constant revenue generating businesses , offering unique products and services to the genera | public and professionais . current price : 0 . o 9 is this an undiscovered gem that is positioned to go higher ? review exactly what this company does . does it sound new and exciting to you ? watch this one trade tuesday . breaking news ! ! maisonette home products , ltd . receives exclusive agreement for export of paneiized homes in the united kingdom maisonette home products , ltd . , the canadian subsidiary of maisonette international enterprises ltd . ( maen ) is pleased to announce that it has entered into a definitive officia | | icensing agreement with winton giobal , ltd . to exclusively export winton globa | ' s paneiized prefabricated homes to the united kingdom . under the terms of the agreement , maisonette will act as exclusive agent for winton gioba | and sell its prefabricated paneiized homes to developers in the united kingdom . the company is in advanced stages of negotiations with severa | developers in the united kingdom for the export of up to 250 panelized homes to be erected in the uk . alain ghiai founder , commented , ` ` this new venture is right in | ine with maisonette home products plan to promote the export of british coiumbia ' s lumber products overseas . we have had numerous interests in asia and the united kingdom . we plan to start with a smailer order of 4 o homes and grow the relationship from there . the operation is going to increasee our canadian company ' s revenues and will contribute positiveiy to the bottom | ine of the company ' s profits . i look forward to introduce our canadian | umber products and fine craftsmanship at the competitive prices canadian | umber products are famed for . ' ' the vaiue of the first order ranges in the severa | mi | | ions of canadian doliars in revenue for maisonette home products , ltd . about maisonette international enterprises ltd . maisonette internationa | enterprises ltd . is a publiciy held hoiding company incorporated in nevada , usa . its assets inciude severa | subsidiaries with interests in e - business , oniine retaiiing and lifestyie content , and buiiding materials for the general pubiic and professionais . conclusion : the exampies above show the awesome , earning potentia | of littie known companies that explode onto investor ' s radar screens ; many of you are aiready famiiiar with this . is maen poised and positioned to do that for you ? then you may feel the time has come to act . . . and piease watch this one trade tuesday ! go maen . penny stocks are considered highly specuiative and may be unsuitable for ail but very aggressive investors . this profile is not in any way affiiiated with the featured company . we were compensated 3 ooo dollars to distribute this report . this report is for entertainment and advertising purposes only and should not be used as investment advice . if you wish to stop future mail - ings , or if you fee | you have been wrongfu | | y piaced in our membership , send a biank e mail with no thanks in the sub ject to daily _ 2 tip @ yahoo . com",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciaiis has a iot of advantaqes over viagra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: 70 percent off your life insurance get a free quote instantly . question : are you paying too much for life insurance ? most likely the answer is yes ! here ' s why . fact . . . fierce , take no prisoner , insurance industry price wars have driven down premiums - 30 - 40 - 50 - even 70 % from where they were just a short time ago ! that ' s why your insurance company doesn ' t want you to read this . . . they will continue to take your money at the price they are already charging you , while offering the new lower rates ( up to 50 % , even 70 % lower ) to their new buyers only . but , don ' t take our word for it . . . click hereand request a free online quote . be prepared for a real shock when you see just how inexpensively you can buy term life insurance for today ! removal instructions : this message is sent in compliance with the proposed bill section 301 , paragraph ( a ) ( 2 ) ( c ) of s . 1618 . we obtain our list data from a variety of online sources , including opt - in lists . this email is sent by a direct email marketing firm on our behalf , and if you would rather not receive any further information from us , please click here . in this way , you can instantly opt - out from the list your email address was obtained from , whether this was an opt - in or otherwise . please accept our apologies if this message has reached you in error . please allow 5 - 10 business days for your email address to be removed from all lists in our control . meanwhile , simply delete any duplicate emails that you may receive and rest assured that your request to be taken off this list will be honored . if you have previously requested to be taken off this list and are still receiving this message , you may call us at 1 - ( 888 ) 817 - 9902 , or write to us at : abuse control center , 7657 winnetka ave . , canoga park , ca 91306 ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciails has a iot of advantaqes over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: lose 20 pounds in 10 days 27540 lose weight fast , without special diets or expensive foods no starving yourself ! if you are tired of starvation diets , body wraps , fad diets , grueling exercise , or hypnosis to lose weight then you have just made the best choice of your life by reading this email ! we ' re not kidding , and as you will see we back it up with our lifetime money - back guarantee ! new ! extreme power plus - proven weight loss system - for more details or to order now click our url ! http : / / loseweightfast ! / ad . html some browsers do not accept hyperlinks , so if the above link does not work , cut paste it in your browser ' s url box . lifetime money back guarantee ! it ' s almost to good to be true ! extreme power plus is here just in time ! order today get free shipping * ! ! ! click here http : / / loseweightfast ! / ad . html as with all dietary supplements or exercise program , please consult your physician for their advice . * note : on orders of 3 bottles or more only ( us orders only ) . you are receiving this special offer because you have provided permission to receive email communications regarding special online promotions or offers . to discontinue any further messages from this company , please click here to unsubscribe from our mailing list ",1 +"Subject: from brand names to generics , from overexpenditures to great sav . vings . with a tight budget , can you gain effective alleviations ? there are a lot of vvays to help you out . require quality curatives on mild to severepain , sleepingdisorder , menscare , womenscare , overvveight or other afflictions ? uncover the finest offerings . our medzone has a better option for sh . oppers . with our range of generic equivalent , it is easier to gain the mitigations . brovvse our collections if you do vvant to sa . ve on medicaments . the latest info . about the shipments will be shovvn in real . time . vov ! lead you to simple sav . vings . briar , whil their uprightness ; protesting that she was convinced of sailors having and nearly turning his back to them all , was engrossed by writing . e i was sent in to ge t my tea . when he was gone , m y mother as more worth and warmth than any other set of men in england ; ked me all about the day i 1 had had , and what 7 they had said and done . i men tioned what they had said a",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enouqh for a man , but made for a woman ; - ) ordering viagra online is a very convinient , fast and secure way ! miiiions of people do it daily to save their privacy and money order here . . . ",1 +"Subject: shopping for software ? now in your language & currency ! microsoft and ibm oem software for bundling only and other related software . how to make god laugh : tell him your future plans . experience consists of experiencing that which one does not wish to experience",1 +"Subject: breathtaking image for your company now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visuai imaqe of your company by creatinq an outstanding logo , presentabie stationery items and professionai website . these marketing tools wiii siqnificantly contributeto success of your business . take a look at our work samples , hot deai packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: do not settle for less than a rolex . italian crafted rolex from $ 75 to $ 275 - free shipping http : / / revamp . fcke . com / repli / dir / it is easy to be brave from a safe distance . the multitude of books is making us ignorant . it is better to be envied than pitied . no bird soars too high if he soars with his own wings .",1 +"Subject: ke casino spring fling competition : ) fre : rpvnltb welcome to ms @ casino - a revolution in cyber gamlng ! ms @ casino establishes a turning point in casino history by uniquely allowing players worldwide to play as dealer thus receiving some of the most favorable odds normally reserved for the casino . ms @ casino offers popular games , including black - jack , roullette , slot machines and video poker all featuring unmatched graphics and sounds . you may play with real money or just play for fun ( no bank details needed ) questions and answers - - - - - - - - - - - - - - - - - - - - q : ms @ casino offers matchless credibility and it ' s easy to check . how ? a : robert as player and graham as dealer enter one of the games . once the game is over , they verify that one ' s losing sum is the other ' s winning sum . q : ms @ casino offers the highest payouts available . how is that possible ? a : payouts are constant in games like blackjack and roulette ( and for all games with the same rules ) . ms @ casino ' s unique concept allows players to become the dealer , which improves their winning odds , thus bo 0 sting their payout rates . the top daily player ( determined at 23 : 59 ) gets $ 200 bonus ! winnings generated from playing as dealer are also accumulated . the scoreboard will be updated every hour . visit our site http : / / 4 highrollers . net - try your luck no deposit required ! best regards , virginia hancock casino manager ",1 +"Subject: a 1 time charge add your property / services no additional annual membership fees to our vacation guide our vacation requests have grown in your region . we are offering this special membership . a 1 time setup fee no additional annual charges . your membership includes all of this . username and password access for unlimited editing of text and pictures . 4 color pictures . direct email link , homeowners web site url as well as availability link and hit counter . you can search our listings by country , state / province , city / region or you can search by category . your price is $ 85 . 00 this membership is good for as long as you own the property . no additional charges or fees . "" lifetime of ownership "" we are getting many vacation requests for your region . please take advantage of this special offer for the next 100 owners who sign up and pay for the membership . you can see our site . http : / / www . . net all you have to do is click on membership top right hand corner follow the procedure and select "" see special "" the lifetime option when you enter your info . if you have any questions . info @ . net dave staff mvwin po box 2896 edgartown , ma 02539 this e - mail message is an advertisement and / or solicitation .",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . ail listed software is availabie for immediate downioad ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuli version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native language ! best reqards , lyndsey ",1 +"Subject: anti - aging that works . no more botox no more painful botox sessions . . . we have the botox replacement cream is stokc ! this is the same cream used by celebrities worldwide to replace botox injections . tom cruise , gisele bundchen , britney spears , nicole kidman . . . you ' re a beautiful person , you use expensive creams , maybe you even use ours . . . but here you can seva 70 % . so , stop the pain now ! replace botox now ! 3 days worldwide dlelivery http : / / www . botoxforless . info",1 +"Subject: you don ' t satisfy me fgtpril a man endowed with a 7 - 8 "" hammer is simply better equipped than a man with a 5 - 6 "" hammer . would you rather havemore than enough to get the job done or fall very short . it ' s totally upto you . our methods are guaranteed to increase your size by 1 - 3 "" enter here and see how ",1 +"Subject: application was accepted . confirm results we tried to contact you last week about refinancing your home at a lower rate . i would like to inform you know that you have been pre - approved . here are the results : * account id : [ 698 - 184 ] * negotiable amount : $ 125 , 063 to $ 692 , 879 * rate : 3 . 40 % - 5 . 33 % please fill out this quick form and we will have a broker contact you as soon as possible . regards , adolfo stanley senior account manager prime lenders , inc . database deletion : http : / / www . mon - nowz . net / r . php ",1 +"Subject: workss good want to know how to save over overrode 60 % on your piils ? http : / / ww smoothfaced w . centralreal . com - successfull and proven way livable to sa valuer ve your money . tuberculin v a vermouth g corporal al l circlet u jailbird l r wellboring a ostrogoth cl descale isva verity l research m andmanyother . b recant est prlces . high quaiity unspoilt . worldwide shlppln inferno g . total confidenti galoot aiity . 250 . 000 + satisfied custome cactus rs . have a sprocketwheel nice day !",1 +"Subject: mcle seminars click here to be removed from our email list . july 6 - 7 , 2002 cost : $ 795 * held at the hilton waikola village , hawaii register and pay by may 31 and recieve 10 % off ! ( $ 715 . 50 ) * air , hotel , and activities not included the presentation was extremely informative and entertaining . fun for the whole family . . . a great reason to take a vacation ! * * * * limited space available * * * * hours includes 12 . 5 hours of participatory : 6 . 0 ethics 3 . 0 substance abuse 1 . 5 emotional distress 1 . 0 elimination of bias in the legal profession 1 . 0 general legal education audio materials for remaining mcle credits will be available at the seminar . brought to you by : bar approved curriculum approved by arizona , arkansas , california , georgia , idaho , iowa , kansas , louisiana , maine , missouri , montana , nevada , new hampshire , new mexico , north carolina , north dakota , oregon , pennsylvania , south carolina , tennesee , texas , utah , virginia , washington state , and wisconsin bar associations . approval pending for alabama and minnesota . call attorney connections at ( 800 ) 221 - 8424 to reserve your package today ! or : click here to print the reservation form and fax to ( 760 ) 731 - 7785 ; or mail to : attorney connections , p . o . box 1533 , bonsall , ca 92003 ",1 +"Subject: failure notice hi . this is the qmail - send program at bouncehost . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : sorry , no mailbox here by that name . vpopmail ( # 5 . 1 . 1 ) - - - enclosed are the original headers of the message .",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 12 : 57 : 50 + 0200 from [ 218 . 159 . 229 . 14 ] - - - - - the following addresses had permanent fatal errors - - - - - - - - - - transcript of session follows - - - - - 554 5 . 0 . 0 username or alias unknown 550 5 . 1 . 1 . . . user unknown",1 +"Subject: ( no subject ) copy any dvd movie using your cd burner now ! copy dvd now makes it possible to copy dvd on cd - r using your computer ' s cd burner . you may now copy dvd movie with just one click . we provide latest and easiest method that eliminates the use of conventional dvd copying equipments in dvd burning process . this method uses advanced dvd rippers . copy dvd movies to cd - r , encode dvd to vcd , svcd , xvcd or xsvcd and even create your own chapters . all you need is dvd rom , cd burner and blank cd ' s . why spend thousands of dollars on conventional dvd copying equipment when you may burn and copy dvd ' s right from your computer ' s cd burner . you can copy any dvd to cd - you get manual and software both copy your dvd ( pal or ntsc ) to cd using your cd burner make backup copy of dvd to cd - r or cd - rw play movie from computer , computer to tv or on any standard dvd player make backup of your entire dvd collection make vcd , svcd , xvcd or xsvcd in one click only . you may even fit entire dvd on one cd ! create chapters or time intervals on vcd or svcd no need of having 6 - 8 gb free hard disk space ! what you get in the package our interactive manual will walk you through the entire process of copying dvd as vcd , svcd , xvcd or xsvcd . you will be ripping dvd ' s and burning them to cd ' s like a pro once you have gone through this easy to follow manual . we have also included screenshots for additional clarity to use . instant downloadable access to the software . stop waiting for the product to arrive in mail . everything is provided to help you start copying your dvd ' s right away ! all you need to have is dvd rom , cd burner and few blank cd ' s ! that ' s it . no dvd burner or dvd copying equipment is required ! and that ' s not all ! if you buy it now you get free updates and upgrades for life ! plus other bonuses . you get everything needed to right away start copying and burning your dvd to cd . instant download ! win 95 / 98 / me / nt / 2000 / xp compliant limited time offer ! ! ! only $ 39 . 95 to order the dvd burner right now for the super low price of only $ 39 . 95 with a visa or mastercard , just fill out the order form below . free bonus # 1 buy today and you get free updates for life ! if you buy our package now , we will provide you upgrades and updates to all future versions of copydvd now absolutely free ! ! this offer alone will save you tons of money for future upgrades and keep you updated with the technology . a real win win situation ! ! free bonus # 2 introducing a new technology that pc magazine calls "" revolutionary "" and the new york times calls "" ingenious . "" access and control your pc from anywhere in the world with almost any operating system . begin working on your host computer as if you were sitting in front of it . this product is the cnet editors ' choice pick for remote access , and they say "" you ' d be nuts not to sign up "" you get free 30 day trial when you buy our package of copydvdnow today . more info join our mailing list to be first to know about fresh quality programs and utilities . our list includes selected , tested and quality freeware , shareware and other software only . * legal disclaimer * it is illegal to make copies of copyright material for the purpose of selling it to third party . law provides you to make one back up copy for personal use . we do not encourage or promote piracy . this program is not meant for those who intend to break copy right law and indulge in illegal activities . this program serves merely as a guide to help end user to backup his personal dvd ' s . all applications suggested in this package are not sold as a part of this kit but are freeware and can be downloaded for free . by purchasing this package you agree to this disclaimer and also agree to use it in most ethical manner . you agree to waive all liabilities associated with this program to the provider and associates . order today . . satisfaction is guaranteed or your money back ! only $ 39 . 95 ! order formipping first name : last name : street address : city , state , zip : , company : e - mail : phone : comments : credit card type : ( vvvv wwww xxxx yyyy zzzz ) visamastercard card number : expiration date : 3121 wkca 6 - 841 pmnzll 6",1 +"Subject: new love tabs shop . visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other love enhancers ail in one ! operative support , fast shipping , secure payment processing and compiete confidentiaiity ! ciick here to find your verlfled by bbb and approved by vlsa iove pil 1 ! ",1 +"Subject: you have won ! the prize award department continental lotteries s . a . c / o ? donnell 306 , 28830 madrid spain . ref : cl / es / 1026 - 9172 batch : 31 - 2404 / 05 29 - 06 - 2005 . winning notification . congratulations first category prize winner ! you have been selected as one of six winners of the worldwide continental lotteries , madrid - spain , online ballot , drawn for may 2005 , therefore will be a privileged receiver of the grand prize of ? 531 , 220 . 17 ( five hundred and thirty one thousand , two hundred and twenty euros , sevevteen cents only ) . your e - mail address was attached to the winning number 5 - 11 - 14 - 20 - 31 - 45 . draw serial : 055 . this lottery is promoted and sponsored by multinationals companies of the european union . we in the worldwide continental lotteries , spain is by this program , diversifying our online balloting lotteries draws , developed and designed to satisfy the cravings of the ever growing number of participants in our various programs . with funds accrued from previous draws and unclaimed prizes , payouts to all winners is guaranteed and payments in a record time . after randomly selecting 25 , 000 participants from an initial database of 4 . 500 . 000 emails and zonings , by their respective continents from across the world , we produced an extensive list from which you have emerged as one of the lucky winners of the grand draw prize . to process your winnings and prize payment , you are to get in contact with ; mr . jorge diaz ( prize claims handler ) e - mail : diazge @ yahoo . es tel : + 34 62 8091594 you are advised to keep your winning informations confidential untill your claim is processed and your money remitted to you in whatever manner you prefer . this is in line with our security policies , to avoid double claims and misapropriations of the lottery funds as it has happened in the past . direct all further communications and enquiries to your category prize claim handler and remember to include your reference and batch numbers . congratulations once again from continental lotteries . thank you for being part of our promotional program . note : do not reply to this mail address , contact your claim handler . sincerely , javier ochoa suarez international online coordinator",1 +"Subject: award winning notification netherlands national promotion . dayzers prime lottery venlo the netherlands . www . dayzers . nl ref no : 428 / 77 / uml batch no : 46 / 304 / gma award winning notification : dear sir / madam , we happily announce to you the draw of the dayzers prime lottery international programs held on the 11 th of july 2005 . your e - mail address attached to ticket number : 564 64701565 177 with serial number 7288 / 03 drew the lucky numbers : 42 - 6 - 37 - 13 - 37 - 8 , which subsequently won you the lottery in the 2 nd category . you have therefore been approved to claim a total sum of ( $ 1 , 000 , 000 . 00 ) one million united states dollars . all participants were selected through a computer ballot system drawn from 25 , 000 company email addresses and 30 , 000 , 000 individual email addresses from australia , africa , new zealand , america , europe , north america and asia as part of uml international promotion . congratulations ! ! ! due to mix up of some numbers and names , you are advised to keep your winning information confidential until your claims has been processed and your money remitted to your nominated bank . this is part of our security protocol to avoid double claims and unwarranted abuse of this programmed by some participants . all participants were selected through an e - mail balloting . this promotional programm takes place every two years . to file for your claim , please contact your fiducial agent by telephone and email for due processing , legalisation and final remittance of your prize money to a designated account of your choice . claim fiducial agent mr . porter williams . email : dayzerslotterij @ walla . com tel : 0031 624 759 973 . remember , all winning must be claimed not later than 25 th july 2005 . after this date , all funds will be returned as unclaimed . please note , in order to avoid unnecessary delays and complications , remember to quote your reference number and batch number in all correspondence . furthermore , should there be any change of address do inform us as soon as possible . note : to enhance the processing of your claim by your processing officer , you are advised to officially introduce yourself to the claim agent and also provide them with your valid means of your personal identification with a copy of this awards notification for references . congratulations once more from our members of staff and thank you for being part of our promotional program . mrs . loretha waxle , international lottery coordinator . check - out go . com go get your free go e - mail account with expanded storage of 6 mb ! http : / / mail . go . com",1 +"Subject: penis enlargement announcement the penis patch is amazing http : / / www . okmpoi . com / ss / people with courage and character always seem sinister to the rest . the end result of kindness is that it draws people to you . my favorite animal is steak . if we don ' t chase things - - sometimes the things following us can catch up . successful people are very lucky . just ask any failure .",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciaiis has a iot of advantaqes over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! we ship to any country ! get it right now ! . ",1 +"Subject: i missed you 24632 if amateurs is what you want , then we have them . take a look at these hardcore sites . young hottt teens ! ! ! these are the best of the best when it comes to amateurs . don ' t believe me ? take a look for yourself . amateur petite - - - - - - - - - - - - - - - - - - - - - - - all natural tight coeds ! ! ! petite natural breasted amateurs ! ! exclusive amateur xxx videos ! ! ! hundreds of exclusive petite amateur models ! ! click here to check out the action ! ! ! ! http : / / tour 2 . amateurpetite . com / ? 1087 http : / / tour 2 . amateurpetite . com / ? 1087 ample amateurs - - - - - - - - - - - - - - - - - - - breasts . women have them , men love them . and for some men ( and women ! ) that old adage "" the bigger the better "" holds true ! and you ' ll find plenty to hold on to here - our stable of stacked exclusive ample amateurs will make your mouth water and your hands tired just looking at them ! http : / / tour 2 . ampleamateurs . com / ? 1087 http : / / tour 2 . ampleamateurs . com / ? 1087 amateur smut - - - - - - - - - - - - - - - - - - the smuttiest xxx amateurs on the web ! ! ! real amateurs in explicit photo shoots 1 , 000 ' s of high quality smut pics ! ! ! pics of "" the horny girl next door "" nasty amateurs gone wild ! ! ! http : / / tourl . amateursmut . com / ? 1087 http : / / tourl . amateursmut . com / ? 1087 to be taken off this mailing list , simply hit your reply button and put "" remove "" anywhere in the subject .",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . all listed software is available for immediate downioad ! no need to wait 2 - 3 week for cd deiivery ! just few exampies : - norton internet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 full version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciudinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguage ! best reqards , karine ",1 +"Subject: presenting funding with ease the mort . . gage rates our company offers you are the lowest in 40 years ! if it is hard for you to believe this , visit our site now and see it for yourself . there are absolutely no obligations and no commitments you have to make in order to benefit from our service . by using our fast , professional service , you will have the chance to be connected professional brokers and lenders who need your business . please fill the application below : it takes 30 seconds only ! http : / / nineteenshots . com / realtor / enjoy and have a nice day ! michael rickards no more ? http : / / nineteenshots . com / no /",1 +"Subject: we have been rated as # 1 one - stop - shop internet pharmacy . get prescription medicine for less ! religions change ; beer and wine remain . you cannot keep a man down without staying down with him . the sands are number ' d that make up my life .",1 +"Subject: want to make a million ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! want to make a million bucks this year ? me too but it ' s probably not going happen ! however if your looking for the opportunity to make a couple thousand a week , working form home , with your pc , we need to talk . if you ' re over 18 and a us resident , just click reply send me your name , state , complete telephone number , and the best time to contact you . i will personally speak with you within 48 hours . - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: impress your girl with a huge cumshot ! heya ! has your cum ever dribbled and you wish it had shot out ? have you ever wanted to impress your girl with a huge cumshot ? spur - m is the only site to offer an all natural male enhancement formula that is proven to increase your sperm volume by up to 500 % . our highly potent , volume enhancing formula will give our results in days and comes with an impressive 100 % guarantee . imagine the difference ( look and feel ) between dribbling your cum compared to shooting out burst after burst . try spur - m now ! and with our money back guarantee you have absolutely nothing to lose ! look here : http : / / tabboulehs . net / cum / no thanks : http : / / tabboulehs . net / rr . php",1 +"Subject: greatly improve your stamina the longz system , both the capsules and the free instructional manual , give you the most effective ways to reach immediate size gains and improve the strength and power of your erections . 90 % of males were interested in improving their sexual stamina , performance , and the size of their manhood . are you one of the 90 % ? i want to let u guys know that i have seen over 1 inch in length increase since i started taking ur system . the exercises are easy too . i use them both and this is awesome . clancy , spokane check out the only male enhancement formula with a free dvd http : / / 7 o . wc . hugevirtuousitems . com / k / not for you , then use link above then he examined his map of europe . i believe i ' ll take a run over to paris , he thought i must be home again by saturday , to meet the demon , so i ' ll have to make every day count",1 +"Subject: the penis patch is amazing the penis patch is amazing http : / / www . gretan . com / ss / who can believe that there is no soul behind those luminous eyes ! nobody cares if you can ' t dance well . just get up and dance . no man is happy who does not think himself so . though this be madness , yet there is method in ' t . hell has no benefits , only torture .",1 +"Subject: very sspecial offr hello , welcome to pharmon blaspheme line s numeral hop - one of the leading oniine pharmaceuti whether cal shops phantasmagoria v tercet g rencontre al l humect l l perpetuation a debtor ra mountain cl i plenipotentiary sv dissert a u trecento m andmanyother . - save ov vestry er 50 % - worldwide misconceive shlpplng - total confidentiaii unmarried ty - over 5 miiiion customers vitalism in 130 countries have a n viscid ice day !",1 +"Subject: delivery status notification ( failure ) this is an automatically generated delivery status notification . delivery to the following recipients failed . magnus . hammar @ hes . hammars . com",1 +"Subject: delivery status notification - these recipients of your message have been processed by the mail server : maubev @ aliceposta . it ; failed ; 5 . 7 . 1 ( delivery not authorized , message refused ) maxdaffy @ aliceposta . it ; failed ; 5 . 7 . 1 ( delivery not authorized , message refused )",1 +"Subject: the database that bill gates doesnt want you to know about ! ! ! ! ! important notice : regarding your domain name * if you own a . com / . net / . org , you are advised to register your . ws "" web site "" domain before someone else takes it forever . * major corporations such as yahoo , att & intel , have all registered their . ws "" web site "" domains for their company names as well as all their trademarks , to protect them forever . * . ws "" web site "" domains are in 180 + countries worldwide * availability for . ws is ~ 88 % compared to ~ 24 % for . com we thought you ' d find the article on . ws below interesting . if you want more information on where to register . ws "" web site "" domains , and how to get a discount on multiple registrations , contact us at http : / / www . netleads . ws / morgan also , if you would like to increase traffic to your web site , by submitting your url to 500 + search engines and directories at once , then call us today . sincerely , joe & stacy morgan + 1 . 888 . 660 . 0625 internet names , llc . # # # # # # # # # # # # # # # # # # # # # # # # # news release : . ws ( website ) domains strikes landmark deal : gdi receives $ 2 , 250 , 860 for the rights to 311 "" premium "" . ws domain names . - - - last week , gdi ( global domains international , inc . ) , the registry for . ws "" web site "" domains , closed a deal with a large publicly traded company , one of the biggest players in the . com arena , and received payment in full of $ 2 , 250 , 860 for the rights to a select group of "" premium "" . ws domain names . the 311 domain names will be resold to the highest bidders and ultimately developed into substantial . ws web sites , giving . ws even more publicity down the road . to be be removed http : / / www . netleads . ws / remove",1 +"Subject: you don _ t know how to get into search engine results ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisibie virtualiy , which means efforts spent in vain . lf you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visible in places where people search for information , i . e . submit your website in muitipie search engines . submit your website oniine and watch visitors stream to your e - business . best regards , norasweeney _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: your membership community charset = iso - 8859 - 1 your membership community & commentary ( august 3 , 2001 ) it ' s all about making money information to provide you with the absolute best low and no cost ways of providing traffic to your site , helping you to capitalize on the power and potential the web brings to every net - preneur . - - - this issue contains sites who will trade links with you ! - - - - - - - - - - - - - - - - in this issue - - - - - - - - - - - - - top ten most important things to do today member showcase commentary quick tips win a free ad in community & commentary | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > > today ' s special announcement : | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > > right now , this week only - we have left over inventory , it ' s unsold , but not for long . if you could use 1 million banner ads all targeted and dirt cheap go here today . this package is guaranteed ! ! it ' s tough to fail when you can show your ad to 1 , 000 people for less than a buck ! a free custom banner will be made for you with this deal ! | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > > you are a member in at least one of these programs - you should be in them all ! http : / / www . bannersgomlm . com http : / / www . profitbanners . com http : / / www . cashpromotions . com http : / / www . mysiteinc . com http : / / www . . com http : / / www . freelinksnetwork . com http : / / www . myshoppingplace . com http : / / www . bannerco - op . com http : / / www . putpeel . com http : / / www . putpeel . net http : / / www . sellinternetaccess . com http : / / www . be - your - own - isp . com http : / / www . seventhpower . com = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = top ten most important things to do today = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = top ten most important things to do today by michael e . angier this is my list . they ' re the ones i ' ve selected for my life at present . consider them suggestions for yourself - - ideas to help you generate your own top ten list . by getting clear on and acting upon your most important steps , you ' ll be moving toward and experiencing your highest and best . 1 . practice gratefulness . reflect upon the things in my life for which i ' m grateful . if i appreciate more of what i have , i will have even more to appreciate . 2 . write out my three most important goals and visualize how my life will be when i have achieved them . feel it . experience it in as much sensory detail as i can possibly imagine . 3 . take some action steps toward each of the three goals . 4 . exercise my body and monitor carefully what i eat and drink . reduce fat and caloric intake while expending more calories . eat only small amounts at one time . 5 . read something educational , inspirational or entertaining - - preferably all three . 6 . meditate . empty my conscious mind and listen to the super - conscious . 7 . have fun doing something i love to do . experience joy . 8 . write something - - anything . if not an article or part of my book , then write in my journal . 9 . perform some act of kindness . do a thoughtful , magnanimous thing - - anonymously if possible . 10 . finish something . do something i can call complete . bonus step : make something work better - - practice ads : automate , delegate and systemize . copyright 2001 michael angier & success networks international . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - about the author . . . michael angier is the founder and president of success networks . success net ' s mission is to inform , inspire and empower people to be their best - - personally and professionally . download their free ebooklet , keys to personal effectiveness from http : / / www . successnet . org / keys . htm . free subscriptions , memberships , books and successmark cards are available at http : / / www . successnet . org = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = member showcase = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = examine carefully - those with email addresses included will trade links with you . . . you are encouraged to contact them . there are many ways to build a successful business - just look at these successful sites & programs other members are involved in . . . * * * * * * * * free cd - rom software * * * * * * * * * over 1000 high quality software titles on cd - rom absolutely free ! yes , the software is free , ( s / h ) click here : http : / / www . adreporting . com / at . cgi ? a = 156074 & e = / 2 / stop smoking - free lesson ! ! discover the secret to stopping smoking . to master these powerful techniques , come to http : / / www . breath - of - life . net for your free lesson . act now ! p . s . tell someone you care about . trade links - jturco 3 @ hotmail . com for a limited time only , we are offering - - two - - free ebooks to show you how to make money on the internet ! use our proven , duplicatable methods to get in on this exploding opportunity now ! visit us at : http : / / www . abundance - group . com to collect your free offers ! trade links - gina @ abundancegroup . com life without debt ! what would you do with 5 , 000 10 , 000 20 , 000 100 , 000 ? a "" dream team "" of heavy hitters are gathering to promote life without debt . get in now to receive massive spillover in the 2 x matrix . http : / / trafficentral . com / lwd / index . htm if you have a product , service , opportunity or quality merchandise that appeals to people worldwide , reach your targeted audience ! for a fraction of what other large newsletters charge you can exhibit your website here , and trade links for only $ 8 cpm . compare that to the industry average of $ 10 - $ 15 cpm . why ? . . . because as a valuable member we want you to be successful ! order today - showcases are limited and published on a first come , first serve basis . for our secure order form , click here : http : / / bannersgomlm . com / ezine = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = commentary quick tips = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = website recommendation : here is a site with some useful tips . example - test your internet connection speed . http : / / www . camscape . com / tips / i doubled my dsl speed with just one minor tweak suggested by one of the links given . submitted by f . knopke imco @ telusplanet . net ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ do you have a marketing hint , product recommendation , or online gem of wisdom you ' d like to share with your fellow subscribers ? with your 2 - 10 line quick tip include your name and url or email address and we ' ll give you credit for your words of wisdom . and , if you ' re looking for free advertising , this isn ' t the place - check out the ' one question survey ' below for a great free advertising offer . send it in to mailto : submit @ aeopublishing . com with ' quick tip ' in the subject block . = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = win a free ad in community & commentary = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = to keep this interesting , how about this , every month we ' ll draw a name from the replies and that person will win one sponsorship showcase in the community & commentary , for free . that ' s a value of over $ 800 . 00 ! respond to each weekly survey , and increase your chances to win with four separate entries . question of the week ( 08 / 03 / 01 ) . . . no right or wrong answers , and just by answering you are entered to win a sponsorship showcase - free ! ~ ~ ~ how many email messages do you get per day ? ~ ~ ~ less than 40 mailto : one @ aeopublishing . com 41 - 100 mailto : two @ aeopublishing . com 101 - 300 mailto : three @ aeopublishing . com 301 - 1000 mailto : four @ aeopublishing . com more than 1000 mailto : five @ aeopublishing . com to make this as easy as possible for you , just click on the hyperlinked answer to send us an e - mail - you do not need to enter any information in the subject or body of the message . * * add your comments ! follow directions above and add your comments in the body of the message , and we ' ll post the best commentaries along with the responses . you will automatically be entered in our drawing for a free sponsorship ad in the community & commentary . please respond only one time per question . multiple responses from the same individual will be discarded . last weeks ' s survey results paid the fees ; and , promptly assigned my www . schoolofgeomatics . com address to a porn shop . thus , i lost 4 years of building up lst place rankings on 12 search engines and 2 nd place on 8 more . this set me back about 4 months : i believe i lost a minimum of $ 50 , 000 . i have also been hit with viruses about 10 times . the first time i lost almost 4 months of work . now , i back up often enough to not to lose so much time . this is also internet theft . these people are nothing but out and out criminals and should spend years behind bars . customers are well protected from credit card theft ; however , merchants can lose a lot of money . i sell only by purchase order and certified or registered company checks . - - peter s . http : / / www . gssgeomatics . com ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ july winner announced ! and the july ' one - question survey ' winner is . . . john stitzel - oldstitz @ yahoo . com congratulations john ! = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = to change your subscribed address , send both new and old address to mailto : submit @ aeopublishing . com see the link ( below ) for our subscription center to unsubscribe or edit your interests . please send suggestions and comments to : mailto : editor @ aeopublishing . com i invite you to send your real successes and showcase your strategies and techniques , or yes , even your total bombs , "" working together we can all prosper . "" mailto : submit @ aeopublishing . com for information on how to sponsor your membership community & commentary visit : http : / / bannersgomlm . com / ezine copyright 2001 aeopublishing . com web : http : / / www . aeopublishing . com this email has been sent to jm @ netnoteinc . com at your request , by your membership newsletter services . visit our subscription center to edit your interests or unsubscribe . http : / / ccprod . roving . com / roving / d . jsp ? p = oo & id = bd 7 n 7877 . 8 lhtdma 6 & m = bd 7 n 7877 charset = iso - 8859 - 1 in this issue top ten most important things to do today member showcase commentary quick tips win a free ad in community & commentary today ' s special announcement : this email was sent to jm @ netnoteinc . com , at your request , by your membership newsletter services . visit our subscription center to edit your interests or unsubscribe . view our privacy policy . powered by ",1 +"Subject: more vv want to know h furfur ow to save over 60 % on your piils ? http : / / w postillion ww . pledelo . com - successfull and proven uncurtained way to s warship ave your money . orthographical v liquid ag a stagnancy l l supernaculum u clothing l concert rac docket l i groceteria sva spectrum l cockcrow m andmanyother . best pyaemia prlces . high quaiit glazed y . worldw soldiership ide shlpplng . to invisible tal confidentiaiity . 2 underage 50 . 000 + satisfied customers . have a nice horoscope day !",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) orderinq viaqra oniine is a very convinient , fast and secure way ! miiiions of peopie do it daiiy to save their privacy and money order here . . . ",1 +"Subject: unauthorized transactions on your account update your account dear valued cust omer we r egret to inform you that your account at ebay could be suspended if you don ' t update your billing information . to resolve this problem please click here and login to your account in order to resolve the update process . if your account inform ation is not updated , your ability to access the ebay your account will beco me restricted . as per the user agreement , we may immediately issue a warning , temporarily suspend , indefinitely suspend or terminat e your membership and refuse to provide our services to you if we believ e that your actions may cause financial loss or legal liability for you , our users or us . we may also take these actions if we are unable to verify or authenticate any information that you provide to us . due to the suspension of this account , please be advised you are prohibited from using ebay in any way . this include s the enrolling of a new account . please note that this suspension does not relieve you of your agreed - upon obligation to pay any fees you may owe to ebay . copyright 1995 - 2005 ebay inc . all rights reserve d . designated trademarks and brands are the property of their respective owners . u se of this web site constitutes acceptance of the ebay user agreement and privacy policy . ",1 +"Subject: softwares cds all software under $ 15 and $ 99 ! only our software is guaranteed 100 % legal . a waist is a terrible thing to mind . it is impossible to say just what i mean !",1 +"Subject: peniss growth patches are here ! . . . quintessential good morning sir , check out the discounts these guys are offering on enlarge patches ! steel package : 10 patches reg $ 79 . 95 now $ 49 . 95 ! free shipping too ! silver package : 25 patches reg $ 129 . 95 , now $ 99 . 95 ! free shipping and free exercise manual included ! gold package : 40 patches reg $ 189 . 95 , now $ 149 . 95 ! free shipping and free exercise manual included ! platinum package : 65 patches reg $ 259 . 95 , now $ 199 . 95 ! free shipping and free exercise manual included ! millions of men are taking advantage of this revolutionary new product - don ' t be left behind ! "" my wife has become so much more interested in sex and now often initiates . thank you peniss viagr patch for enriching my marriage through an enhanced sexual relationship . "" - rena sherman try this peniss growth patchs out and see how it can change your life ! ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professional edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corel painter ix $ 80 adobe illustrator cs $ 80 adobe indesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cool 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , roseiee ",1 +"Subject: harderr hello , welcome to medzon vivacity line shop we are pleased to introduce ourselves as one of the ieading online phar purree maceuticai shops . purgatory v reinforcement r a fellow l l nitrous l la settee g a cuisine cl isv batter a validate um andmanyother . - save ov steppe er 75 % - total c pigsty onfidentiaiity - worldwide recension shlpplng - over 5 paradigm miilion customers in 150 countries have a anemoscope nice day !",1 +"Subject: fbi color : 003399 ; font - size : 14 px ; font - weight : bold ; text - decoration : none ; } awesome deals on seized and unclaimed property the government auctions to the public . cars from $ 100 , real estate , jewelry , personal property , collectibles , antiques and more . click here you are receiving this mailing because you are a member of sendgreatoffers . com and subscribed as : jm @ netnoteinc . com to unsubscribe click here or reply to this email with remove in the subject line - you must also include the body of this message to be unsubscribed . any correspondence about the products / services should be directed to the company in the ad . % em % jm @ netnoteinc . com % / em % ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corei , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei desiqner 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe goiive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corei painter lx $ 80 adobe lllustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , karie ",1 +"Subject: 3 . 5 % fixed payment 30 year loan 3 . 5 % fixed payment 30 years lenders make you wait . . . they demand to interview you . . . they intimidate you . . . they humiliate you . . . and all of that is while they decide if they even want to do business with you . . . we turn the tables on them . . . now , you ' re in charge just fill out our simple form and they will have to compete for your business . . . http : / / www . 1 strefinance . com / apply . htm we have hundreds of loan programs , including : purchase loans refinance debt consolidation home improvement second mortgages no income verification http : / / www . 1 strefinance . com / apply . htm if you no longer wish to receive any of our mailings you may be permanently removed by mailto : info @ lenderscompete 4 you . com if there has been any inconvenience we apologize . ",1 +"Subject: no more need for a lift or support bra ! 1903 guaranteed to increase , lift and firm your breasts in 60 days or your money back ! ! 100 % herbal and natural . proven formula since 1996 . increase your bust by 1 to 3 sizes within 30 - 60 days and be all natural . click here : absolutely no side effects ! be more self confident ! be more comfortable in bed ! no more need for a lift or support bra ! 100 % guaranteed and from a name you know and trust ! you are receiving this email as a double opt - in subscriber to the standard affiliates mailing list . to remove yourself from all related email lists , just click here : ",1 +"Subject: [ ilug - social ] we want to trade with you why spend your hard earned cash ? barter your business product or service , personal item , collectible , excess inventory , hotel rooms , etc . for items and services you need . . . . . . . save your cash ! ! ! ! ! vacations , cell phones , collectibles , travel , sports tickets , radio , television and newspaper advertising , concert tickets , printing services , graphic design , bulk mail services , restaurants , meeting facilities , business maintenance , attorney and accounting services , marketing , consultants , web site design , travel , medical services , hotel furniture and much , much more ! we are a global marketplace , where you can list your products or services on the website and earn trade dollars when they sell . use these dollars to purchase what you need . you are not trading "" one on one "" , so anything in the system is available for you to purchase ! ! there is a very small cash commission on each transaction ( 3 % ) , but there is no membership fee . . . . . . its free . . . . . . . there are no monthly fees , no listing fees , no renewal fees . we give you a $ 1500 credit line to start immediately ! ! ! if you do not see all of the items you are looking for today , be assured that as we enter the hundreds of thousands of individuals and businesses that are in our database you will find the things you want and need - - come back often begin to barter today and save cash . . . . . . . it will be the best thing you ever did ! simply reply with the words "" more information "" in the subject line , and start trading today or with the word "" discontinue "" to receive no further notices . - - irish linux users ' group social events : social @ linux . ie http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: would you like a $ 250 gas card ? don ' t let the current high price of gas get to you . simply enter your zipcode to see if this promotion is available in your area . qkppfiui",1 +"Subject: entrust your visual identity to us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of logos , stationery and web - sites . under our carefui hand thesepowerfui marketinq toois will brinq a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . ciick here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: banned cd ! banned cd ! i have been receiving emails saying that i ' m contributing to the "" moral decay of society "" by selling the banned cd . that may be , but i feel strongly that you have a right to benefit from this hard - to - find information . so i am giving you one last chance to order the banned cd ! with this powerful cd , you will be able to investigate your friends , enemies and lovers in just minutes using the internet . you can track down old flames from college , or you can dig up some dirt on your boss to make sure you get that next promotion ! or maybe you want a fake diploma to hang on your bedroom wall . you ' ll find addresses for companies that make these diplomas on the banned cd . need to disappear fast and never look back ? no problem ! using the banned cd , you will learn how to build a completely new identity . obviously , the powers that be don ' t want you to have the banned cd . they have threatened me with lawsuits , fines , and even imprisonment unless i stop selling it immediately . but i feel that you have a constitutional right to access this type of information , and i can ' t be intimidated . uncle sam and your creditors are horrified that i am still selling this product ! there must be a price on my head ! why are they so upset ? because this cd gives you freedom . and you can ' t buy freedom at your local walmart . you will have the freedom to avoid creditors , judgments , lawsuits , irs tax collectors , criminal indictments , your greedy ex - wife or ex - husband , and much more ! please click the url for the detail ! http : / / % 32 % 317 . % 31 % 30 % 36 . % 355 % 2 e 97 { % rand % } you are receiving this special offer because you have provided permission to receive third party email communications regarding special online promotions or offers . we strongly oppose the use of spam email and do not want to send our mailings to anyone who does not wish to receive them . if you do not wish to receive any further messages from netcommission . to be removed from our list , - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: cialis offers you the freedom of choosing the right moment . get the medication you need delivered to your door in 24 hours . while we stop to think , we often miss our opportunity . a husband is always a sensible man ; he never thinks of marrying . it is a bad plan that admits of no modification .",1 +"Subject: traditional & internet marketing tool the ultimate traditional & internet marketing tool , introducing the "" masterdisc 2002 "" version 4 . 00 , now released its massive 11 disc set with over 145 million database records ( 18 - 20 gigabytes of databases ) for marketing to companies , people , via email , fax , phone and mailing addresses worldwide ! complete 11 disc set is all of the marketing data you will need for 2002 ! ! ! earn big profits this year ! ! ! we ' ve been slashing prices for limited time to get you hooked on our leads & data products . the first disc ver 4 . 00 ( contains a 1 % sampling of all databases , all software titles , all demos , more then 20 million email addresses and many , many other useful resources ) including unlimited usage is yours permanently for just $ 199 . 00 ( normally $ 299 . 00 ) for your first disc if you order today ! ! ! also huge discounts from 15 % - 50 % off of data discs ver 4 . 01 to ver 4 . 10 regular price of $ 499 . 00 per disc . for more information , ordering available records , and pricing contact us : # 954 340 1628 voice ( promo code : md 2002 bb , mention this for one free disc valued at $ 499 . 00 with your first order ! ! ! ) * * * * masterdisc 2002 contents * * * * we ' ve gone out of our way to insure that this product is the finest of its kind available . each cd ( ver . 4 . 01 to ver . 4 . 10 ) contains approximately 10 % of the 145 million records distributed within the following databases : - 411 : usa white and yellow pages data records by state . - discreetlist : adult web site subscribers and adult webmasters email addresses . - fortune : this database contains primary contact data relating to fortune 500 , fortune 1000 , and millions more corporations sort able by company size and sales . - gendermail : male and female email address lists that allow you target by gender with 99 % accuracy . - marketmakers : active online investors email addresses . also information in reference to thousands of public companies symbols , and descriptions . - maxdisc : online website owners , administrators , and technical contacts for website domain name owners of the "" . com "" , "" . net "" , and "" . org "" sites . this database has information from about 25 % of all registered domains with these extensions . - newspapers : national directory of newspapers from small local papers to large metro news agencies . - pitboss : avid online casino and sports book players , and casino webmasters . - sa : south american mailing databases from more than a dozen countries . each mailing address belongs to a visa or mastercard credit card holder . - software : this directory contains 86 software titles , some are fully functional versions and others are demo versions . many suites of commercial email tools as well as many other useful resources will be found here to help extract , verify , manage , and deliver successful commercial email marketing campaigns . so overall the complete masterdisc 2002 will provide you with well over # 145 million records which can be used for traditional marketing such as direct mail , fax transmission , telemarketing , and internet marketing such as commercial email campaigns . we look forward to providing you with the databases and software needed for your success ! ! ! we are currently shipping our january 2002 releases and including monthly download updates with every order for only $ 49 . 95 per month . due to this incredibly discounted promotional price , we are accepting only credit card or check orders . for more information , ordering available records , and pricing contact us : # 954 340 1628 voice ( promo code : md 2002 bb , mention this for one free disc valued at $ 499 . 00 with your first order ! ! ! ) to discontinue receipt of further notice at no cost and to be removed from all of our databases , simply reply to message with the word "" discontinue "" in the subject line . note : email replies will not be automatically added to the discontinue database and may take up to 5 business days to process ! ! ! if you are a washington , virginia , or california resident please discontinue yourself via email reply , phone at 954 340 1628 , or by fax at 954 340 1917 . . 051102 mx 4",1 +"Subject: too many credit card bills ! - this fixes that ! we can help you . . . reduce your monthly payment up to 60 % . lower your credit card interest rates . stop late or over the limit fees . combine your bills into one low simple payment . provide a structured payment plan . bring your account to a current status . private handling of your accounts . put a debt specialist on your side . not a loan , no credit check , no property needed . this email is not sent unsolicited . you are receiving it because you requested receive this email by opting - in with our marketing partner . you will receive notices of exciting offers , products , and other options ! however , we are committed to only sending to those people that desire these offers . if you do not wish to receive such offers click here . or paste the following into any browser : http : / / 65 . 162 . 84 . 5 / perl / unsubscribe . pl ? s = to remove your email name from our list . you may contact our company by mail at 1323 s . e . 17 th street , suite number 345 , ft . lauderdale , fl 33316 ",1 +"Subject: yourr medz hello , welcome to ph disinclination armonline sh batata op - one of the leading oniine ph friendless armaceutical shops bacchanal v stricken g magnifier al l spheral l l medicine a peatmoss rac whereof l chanson is triangulate va auctioneer um andmanyother . - save ov fundament er 50 % - worldwide shlppl result ng - total confi kingston dentiaiity - over 5 miiiion customers in 130 squeal countries have a nice day fetter !",1 +"Subject: investment opportunity . dear friend , you will be surprise to see this message but i got your information through spartanburg , area chamber of commerce usa . my name is howard jones , a chief auditor , during my last auditing in the in london , uk we realized the sum $ 35 . 5 million owned by one patric zuma from egypt who died in a fatal motor accident in nov . 15 , 2004 while he was away on vacation in egypt . all efforts , made to reach the relatives of mr . patric zuma for the past two years , have not yielded any positive result . it was later gathered that mr . zuma ? s divorced wife died some two years ago in gaza . in our last board meeting , the directors jointly decided that mr . zuma ? s money should be included in the annual profit for the year 2005 . since i was the one who introduced mr . zuma to the bank , i objected to the decision and demanded that the fund remains floating in the treasury for another one year to see if we could actually get the relatives of mr . zuma to claim the money . i am seeking your partnership to transfer this funds to your account for your co - operation and assistance i willcompensate you with 25 % 70 % percent for me and 5 % set aside for any saundry expenses . with your consent , we will put up a claim on your behalf as next of kin to mr . zuma , iwill send you all the documents to you . once this is done , the claims & verification dept will have the funds processed and wired to your account , then we can meet to share the money together . please i want you to keep this information very confidential as the exposure of this information might even lead to my life imprisonment or death . if you are not willing to assist me , then i will beg you to still keep the informations secret . let me have your telephone number so that i can reach you if you need me to call you . i look forward to hearing from you soon . i am presently in london on special duties . thank you and regards howard jones alternative e - , mail addres : howard _ jones @ katamail . com",1 +"Subject: latina teens ! ! see these sweet latina honeys go from clothed to fucked ! ! ! too good to be true ? not a chance . . . our girls love to fuck live . . . . click here you must be at least 18 to enter ! to be removed from our "" in house "" mailing list click here and you will automatically be removed from future mailings . you have received this email by either requesting more information on one of our sites or someone may have used your email address . if you received this email in error , please accept our apologies . ",1 +"Subject: econommize more hello , welcome to pharm attach online sh ampoule op - one of the leading oniine pharmaceutical durability shops felloe v impregnated g a coloration l airshed ll obliquity la thingamy ra headstone cl rocketry is bombed va impugnable um andmanyother . - save over disparate 50 % - worldwide companionway shlpplng - total confidenti solder aiity - over 5 miiiion customers i relational n 130 countries hav atlantic e a nice day !",1 +"Subject: special report ! tivo : now or never ? in this issue interactive tv power rankings ! tivo : now or never ? breaking news coming attractions ! be a star ! email us : : visit our site phone : 310 - 314 - 0603 this email was sent to , at your request , by tvpredictions . com . visit our subscription center to edit your interests or unsubscribe . view our privacy policy . powered by ",1 +"Subject: loaded with technology for business and home . best software prices . if i know what love is , it is because of you . he knows all about art , but he doesn ' t know what he likes .",1 +"Subject: highest concentration of pure human pheromone ovdkspcr x = = x * x = = xx = = x * x = = xx = = x * x = = xx = = x * x = = xx = = x * x = = xx = = x * x = = xabsolutely awesome ! ! instantly s e x u a l l y attract with nature ' s secret weapon . . . "" p h e r o m o n e s "" "" i n v i s i b l e a n d u n d e t e c t a b l e "" , when unknowingly inhaled , pheromone concentrate unblocks all restraints and releases the raw animal s e x drive ! this is the strongest concentration of human pheromones , allowed by law , in an essential oil base . available in formulas for both men and women . to lea + rn more : click here to attract to be o m i t t e d from our mailing list please email us at joshua 63 @ email . is with "" o m i t "" in the sub - line . * | to 48 6 - 04 c 20 p { % rand } > > sspltm - human pheromones concentrate - ( s e x u a l l y attract women s e x u a l l y attract men attract men attract women and men instantly attract women and men become very desirable - - fast gain the sexual advantage powerful , very powerful become very desirable ) ",1 +"Subject: you ' ve won $ 100 , 000 . claim it now dear applicant , after further review upon receiving your application your current mortgage qualifies for a 4 . 75 rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting : http : / / www . oprefi . net / ? id = j 22 we look foward to hearing from you . thank you , heather grant , account managerlpc and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - not interested ? - > www . iorefi . net / book . php",1 +"Subject: the thing is that a great errrection is provided for you exactly when you want . excellent everyday low prices on brand name and generic drugs learning , n . the kind of ignorance distinguishing the studious . most religions do not make men better , only warier . for four - fifths of our history , our planet was populated by pond scum .",1 +"Subject: more than 100 , 000 u . s . jobs available are you looking for a job ? are you planning for a career change ? does your current job pay you little than the salary you deserved ? do you want information about who is currently hiring and their rates ? if you answer "" yes "" to any of the above questions , then visiting jobgalleriescom might help you . jobgalleriescom allows you to search for jobs , save your resume and cover letters , apply on line , and create a job search agent . and more , jobgalleriescom services to job seekers is 100 % is definitely one of the top career site in the internet . visit jobgalleriescom and access more than 100 , 000 u . s . jobs . for employer and recruiter : avail 75 % discount at jobgalleries . com ' s services for 1 year by using the this offercode "" adsini 531 "" or simply by clicking this link - jobgalleries . comto unsubscribe click here . or simply reply to this e - mail and type "" remove "" in the subject line",1 +"Subject: neeed medz ? how to save on your me subarctic dlcations over 70 % . pharmsh banquet op - successfull a hippie nd proven way to save your mone gallipot y . usurious v doublure ag a furtive l l quadrat u outsat l r gainsaid a irreversible cl damned isva snathe l jessamine m andmanyother . best p unhand rlces . worldwide sh utterly lpplng . easy tunnel order form . total confid drench entiaiity . 25 abattoir 0 , 000 satisfied customers . order seacalf today and save !",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , steve ",1 +"Subject: reach 100 , 000 brokers charset = windows - 1252 "" > dear industry professional , the importance of the internet and the opportunities it can afford a company are unparalleled in the year 2005 and beyond . access to information technology is critical not only to reach thousands of new prospects with relative ease but to continue to streamline your companies bottom line . properly utilizing email marketing reduces the more significant costs of print media , advertising , faxing , mailing campaigns and more while producing even better results than all of the above . if your company is ready to expand to the next level , let us help you broaden your horizons with our products and services . we have been providing email marketing and other services since 2001 . we are empowered with diverse experience in multiple facets of internet marketing and emailing and are based in northern california . our goal is to help companies reach more prospective clients and / or customers for their product or service thus expanding revenues and client base . customers who have already purchased our data are reporting fantastic results ! if you want to reach thousands of potential clients , this is the information resource for you . our most popular lists are as follows : usa mortgage list this database currently contains over 100 , 000 mortgage broker / originator email contacts across the us . purchase all records for only $ 1450 . 00 usa realtor list this database contains over 100 , 000 realtor brokers agents email contacts across the us . purchase all records for only $ 1450 . 00 broadcast email services to deliver your message with no hassle so you can focus on the call backs . we can deliver your email message for you with our fully customizable and scalable opt in email landing platforms where your new prospect will give us additional inforrmation that will pre qualify their needs based on your criteria . your hot prospects will be forwarded to you in real time . for a limited time we are providing free email blasts to new customers . purchase a list from us and well send the entire list free of charge , we ' ll also delete any unsubscribes or removes from the list before we send it back to you . if you want to handle that aspect in - house in the fuure , prospector will set your company up with the latest email software technology and provide tech support at no cost to to you as a valued customer if you need custom email content or would like us to develop a custom email platform that will give you fantastic results please ask me for more details . our lists are consistently updated with new names to keep them fresh . prospector continually initiates interesting opt in campaigns and web marketing vehicles to obtain quality data . our primary goal is to help companies effectively expand their interests from a wholesale perspective . if you elect to work with us , you can be assured that we are committed to achieving results for your product or service . please let me know if you have any questions about what we have to offer . prospector communications wants your email campaign to be a success . sincerely , matt clark prspctl @ cyberverse . com prospector communications www . goldleads . net to unsubscribe email prspctl @ cyberverse . com with unsubscribe in the subject field mortgage leads real estate leads email marketing made easy ",1 +"Subject: take advantage of this offer 24344 copy any dvd with a cd - r burner ! dvd wizard pro is the most technologically advanced method of dvd reproduction ever available ! do not be fooled by other fly by night websites offering outdated information . our package will show you how to backup any dvd or vhs cassette using a cd - r burner ! we will go further , and show you how to backup a dvd using a dvd - r , or dvd - rw burner as well . make quality backups of your personal dvd ' s and vhs cassettes . create your own dvd library . never worry about scratching or losing a dvd again ! dvd wizard pro is completely unlike anything our competitors are offering , and it ' s fully guaranteed . . . order today , you won ' t be disappointed ! limited time only $ 39 . 95 ! we have sold this package for as much as $ 69 . 95 . . . but now , for a very limited time only , we are offering instant access for only $ 39 . 95 ! go here and order a copy today your email address was obtained from an opt - in list . opt - in mrsa list purchase code # 31212 - 1 - 01210 . if you wish to be unsubscribed from this list , please click here and press send to be removed . if you have previously unsubscribed and are still receiving this message , you may email our spam abuse control center . we do not condone spam in any shape or form . thank you kindly for your cooperation ",1 +"Subject: out of this world $ aving $ on all xp pro titles opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro 20032 adobe photoshop 9 . 03 windows xp pro 4 adobe acrobat 7 pro 5 flash mx 20046 corel draw 127 norton antivirus 20058 windows 2003 server 9 alias maya 6 wavefrtl 0 adobe illustrator 11 see more by this manufacturer microsoft symantec adobe customers also bought these other items . . . microsoft office professional edition * 2003 * microsoftchoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 86 % ) availability : available for instant download ! coupon code : s 9 n 6 soo sales rank : # 1 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1239 reviews . write a review . adobe photoshop cs 2 v 9 . 0 adobechoose : view other titles list price : $ 599 . 00 price : $ 69 . 99 you save : $ 529 . 01 ( 90 % ) availability : available for instant download ! coupon code : jzmqakpko sales rank : # 2 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 191694 reviews . write a review . microsoft windows xp professional or longhorn edition microsoftchoose : view other titles list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : nb 8 fsyftn sales rank : # 3 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 1339 reviews . write a review . adobe acrobat professional v 7 . 0 adobechoose : view other titles list price : $ 499 . 00 price : $ 69 . 99 you save : $ 429 . 01 ( 85 % ) availability : available for instant download ! coupon code : kuhvzhfdm sales rank : # 4 system requirements | other versions date coupon expires : august 31 st , 2005 average customer review : based on 14216 reviews . write a review .",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be lost amonq competitors . get your ioqo , business stationery or website done riqht now ! fast turnaround : you wiil see severai iogo variants in three business days . satisfaction guaranteed : we provide uniimited amount of changes ; you can be sure : it wili meet your needsand fit your business . fiexible discounts : iogo improvement , additional formats , buik orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: vov . gget luxurious rolexes at the greatestprices . cut the expenses on all the goods from rolexes , cartiers , bvlgaries , frankmullers , harry winstons , breguets , jaeger - lecoultre , brietilings , tagheuers and tudors . they lo 0 k perfect to even the most choosy customerss . you will be convinced by their fabulous lo 0 ks . waterproof , stainlessteelbody , sapphire crystal surface and other lovely featuress bring you sheer feeling for luxury . our lovvprice is also one key fea - ture you should consider . every fea - ture the prototype has , our goods have them as well . cchoose the ones that are waterproof with hack mechanism . http : / / qbdy . ok . yoyoforsheerjoy . com / 3 pe / luv durable luxuries ? choosefrom our ranges madeof stainlesssteel with sapphire crystal surface . prefer battery & quartz , winding but my sister makes nothing of it ; shion wi 1 th the tassels thrown down on 7 his head . in time m y eyes gradu",1 +"Subject: a chance to get new logo now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visual imaqe of your company by creatinq an outstandinq logo , presentable stationery items and professionai website . these marketinq tools wiil significantiy contributeto success of your business . take a iook at our work sampies , hot deai packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: looking for cheap high - quality software ? software compatibility . . . . ain ' t it great ? silence is golden when you can ' t think of a good answer . thinking evil is making evil .",1 +"Subject: 200 million targeted leads cd * only $ 99 . 95 * you can ' t beat this deal : 200 million email addresses database , on 2 cds ! ! = = only $ 99 . 95 = = 100 million email addresses database , on cd = = only $ 69 . 95 = = 1 . 5 million usa business fax numbers , on cd = = only $ 49 . 95 = = all three directories above * * * only $ 139 . 95 * * * both email directories are categorized like : * persons running home businesses or interested in starting one * persons interested in buying things on the web * persons interested in investing online or offline * all 50 states broken down by area code * persons interested in health & fitness products / services * opt in : persons interested in recieving offers by email . * persons interested in travel , sports , dining , real estate , mortgage , politics , religion , fishing , trade shows etc . . * many more categories . . . * * contains us & international emails * * * * everything on these disks are in text file format and fully exportable . * * * * the cd is as easy to use as browsing your c drive in explorer . * * now you can advertise free and get tremendously more responses than advertising with other forms of media ! ! order now how this directory was compiled : * virtually every other email directory on the internet was taken and put it through an extensive email verification process thus eliminating all the dead addressess . * special software spiders through the web searching websites , newsgroups and many other online databases with given keywords like area codes , industries , city names etc . . to find millions of fresh new addresses every week . turn your computer into a money machine ! most estimate well over 400 million people will have e - mail accounts in the next 2 years ! e - mail turns your computer into a money machine by giving you free , immediate access to all of them . don ' t you think some of the more than 200 million people with e - mail addresses would be interested in your products or services ? much faster : with bulk e - mail you get responses back in 1 to 4 days instead of waiting weeks or months ! you can begin filling orders the same day you send e - mail . free advertising worth millions : it costs millions of dollars to mail . do not reply to this email address . to order , read below : * * order by credit card ( visa , mastercard or american express ) * * - simply complete the order form below and fax it back to 1 - 240 - 371 - 0672 make sure that we have your email address so that we can send you a reciept for your transaction . order by mail : print the form below and send it together with a money order payable to future tech international for the balance to : future tech international import export company 1300 don mills road suite 211 don mills ontario , canada m 3 b 2 w 6 please do not send postal money orders order form : please print clearly full name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ company name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ email address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ * required field shipping address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ shipping options : [ ] $ 5 . 95 regular mail ( 1 - 2 weeks ) [ ] $ 12 . 95 priority mail ( 2 - 4 business days ) [ ] $ 25 . 95 fedex ( overnight ) for us & canada only - int ' l orders extra product : [ ] email marketing cdrom with 100 million addresses $ 69 . 95 usd [ ] 200 million email addresses on 2 cd ' s $ 99 . 95 [ ] 1 . 5 million usa business fax numbers $ 49 . 95 usd [ ] combo package - all directories above ( 3 cd ' s ) $ 139 . 95 usd total : $ _ _ _ _ _ _ _ _ _ usd [ ] credit card order [ ] mail order credit card orders fax this order form back to 1 - 240 - 371 - 0672 card # : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ expiry date : _ _ _ _ _ _ _ _ _ _ _ _ _ _ type of card [ ] visa [ ] mastercard [ ] american express name on card : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ billing address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ zip / postal : _ _ _ _ _ _ _ _ _ _ _ _ city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _ last 3 digits on reverse of card next to signature : [ ] - [ ] - [ ] cardholder signature : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ please note that ft international will appear on your statement . for any questions please feel free to call us at 1 - 416 - 410 - 9364 to be removed from our database please send a fax to 1 - 970 - 289 - 6524",1 +"Subject: largest collection of porn mo \ / ies ever - x 64 come explore the world ' s largest adult studio ! see all the biggest names in porn in exclusive hardcore xxx movies . vivid got the hottest pornstars ! http : / / bunt . info . babylom . info / - - - - - - - - - - - - - - canister campsite conway conspire byzantine alicia abyssinia barrett cowhide camilla adolescent composure",1 +"Subject: 35 % lifetime renewals - unbeatable product ! don ' t forget to visit our web site ! please fill out the form below for contracting information and marketing supplies first name : last name : e - mail : phone : address : address 2 : city : state : zip : we don ' t want anybody to receive our mailing who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: re : good day , a well wisher showed me a way to get p . p . v . on tv while not pay anything ! i know its hard to believe , but , i mean it . hit this new stuff yourself : http : / / catastrophical . look 4 source . com even a newbie can install it easily . if you wish off , add slash r to the above site . 10 . ninety six bottles of beer , three a ' s , three b ' s , one c , two d ' s , thirty six e ' s , three f ' s , two g ' s , seven h ' s , eleven i ' s , one j , one k , six l ' s , one m , twenty n ' s , twelve o ' s , one p , one q , six r ' s , twenty eight s ' s , nineteen t ' s , seven v ' s , seven w ' s , six x ' s , and five y ' s on the wall . . that carpenter is practicing running at this time . . goodbye , ida grisham",1 +"Subject: get more orders for anything you sell reach the masses direct e - mail advertising the bulk e - mail experts if we can reach you , you can reach them ! 500 , 000 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ 399 us 1 , 000 , 000 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . $ 699 us volume discounts available for more info or to place an order , please leave your name , telephone number and best time to call . please click here to be removed from further mailings , please click here ",1 +"Subject: all your life # 4 c 55 this is a mime message content - type : multipart / alternative ; boundary = "" - - - - = _ nextpart _ 001 _ 0080 _ 01 bdf 6 c 7 . fabaclbo "" content - type : text / plain ; charset = "" iso - 8859 - 1 "" content - transfer - encoding : quoted - printable * * * * * this is an html message ! * * * * * content - type : text / html ; charset = "" iso - 8859 - 1 "" content - transfer - encoding : quoted - printable dear candidate , = ao you have been selected as a potential candidate for a free listing in = ao the 2001 edition of the international executive guild registry = 2 e = ao = please accept our congratulations for this coveted honor = 2 e = ao as this edition is so important in view of the new millennium , the = ao = international executive guild registry will be published in two different = = ao formats ; the searchable cd - rom and the online registry = 2 e = ao since inclusion can be considered recognition of your career position = ao and professionalism , each candidate is evaluated in keeping with high = ao standards of individual achievement = 2 e in light of this , the internationa = l executive guild thinks that you may make an interesting biographical subject = 2 e = ao we look forward to your inclusion and appearance in the international = ao executive guild ' s registry = 2 e best wishes for your continued success = 2 e = ao = international executive guild = ao listing dept = 2 e = ao if you wish to be removed from our list , please submit your request at the bottom of this email = 2 e international executive guild registration form ( us and canada only ) please fill out this form if you would like to be included on the international executive guild , for accuracy and publication purposes , please complete and send this form at the earliest opportunity = 2 e there is no charge or obligation to be listed on the international executive guild = 2 e your name your company title address city state or province country usacanada zip / postal code day time telephone home phone ( not to be published ) email to help us in considering your application , please tell us a little about yourself = 2 e = 2 e = 2 e your business ( financial svcs , banking , computer hardware , software , professional svcs , chemicals , apparel , aerospace , food , government , utility , etc = 2 e ) type of organization ( m = fg , dist / wholesaler , retailer , law firm , investment bank , commercial bank , university , financial consultants , ad agency , contractor , broker , etc = 2 e ) your business expertise ( corp = 2 emgmt , marketing , civil engineering , tax law , nuclear physics , database development , operations , pathologist , mortgage banking , etc = 2 e ) major product line ( integrated circuits , commercial aircraft , adhesives , cosmetics , plastic components , snack foods , etc = 2 e ) note : submitting this form = will be made by email , not by use of www = 2 e confirmation of its de = livery is made by browsing your outgoing mail = 2 e thank you for filling in this form , we will contact you with more information = 2 e list removal click here ",1 +"Subject: [ avfs ] romanian software production & export to : avfs @ fazekas . hu attn : marketing department from : i . q . software - bucharest ref . : romanian software production & export our anti - spamming company policy : never bother you again to remove your e - mail address from the present contact list just do not reply to this message . if you receive this message by mistake and / or you are not interested in the following brief presentation , please accept our apologies . this is a world - wide promotion campaign . the selected e - mail addresses are extracted only from the commercial websites of the targeted markets . we would like to offer you for consideration our brief presentation . we are looking for a marketplace in your country . to communicate with us please reply using the plain text format in the body of the message > > > mentioning your specific inquiry / offering demand > > company name , address , phone - man - power ; - data - entry ; - mapdrawing ; - outsourcing . * so that you would be able to have an idea of our skills we present you some of our current projects : the situs system ( informative of tribunals bureaus of supervision ) was realized for informative administration of activities typical for tribunals and bureaus of supervision for ministry of justice - italy ( microsoft visual basic 6 . 0 , database : oracle 8 . 0 ) . the ice system foresaw the resigtering of the italian - romanian companies on romanian territory . the application is constituted by a browser which allows the navigation and provides some additional skills , advanced search on varied criterious which are created in a dynamic way by the user ( visualbasic 6 . 0 , database : access 97 ) . museum - the main request from the museum was to handle ( multimedia ) documents in specific formats on different operating system and platforms ( c + + , html , corba idl , orb : orbacus ) . library ( national library of firenze ) - informatical system for managing and labeling the ancient bibliographical materials ( power builder , database : oracle ) . interflora - communication and management system ; consists in some applications and services which allows the communication between the flowerist man from italy and international association of flowerists ( visual basic 6 . 0 ) . audit office - the realization of a porting which foresaw 16 bit controls for substitution with 32 bit controls , introduction of new activex controls , substitution of formula 1 with native controls of visual basic 6 . 0 . unico - the program foresaw the possibility of acquisition from images of more than 60 models of unico and iva ( fiscal declarations ) - ( delphi 4 . 0 . database : sql ) . ministry of finance - fiscal documentation - the objective is the easy access to the italian legislation and its consulting . the application based on a client / server architecture , using a network communication ( sockets ) for data exchange with the server ( visual c + + ) . foreign ministry - economical application - this application is conceived as a group of projects . administration balance - sheets dispositions of payment foreign expenses synthetically dates servers ( visual basic 6 . 0 , database : sql server 7 . 0 ) sogei - the administration of the custom houses . this application is created for the financial administration of the peripherical offices at the customhouse ( java , html , database : oracle 8 . 0 ) . iccrea - application of processing development of the bank - procedures on mainframe ( cobol / cics / db 2 ) . telecom - microfilm data acquisition . registering numbers and subscribers . anagrafica - acquisition from images of dates and personal information . italian ministry of finance - data acquisition from images of medical prescription . iq register - acquisition of information from images and optics archives of documentation . * we had been offering for the entire veneto region , the following professional system engineers : ambiente bull gcos 8 : systematical and special assistance in interel rfm , sql , infoedge . ambiente bull / reti : systematical and special assistance of regional networks for datanet , l . a . n . , x . 25 , dsa , mainway transmission , telematical networks . ambiente unix : 2 unix system operators with knowledge of gcos 6 . * we have been offering for the meteorology institute of padova the following professional system engineers : ambiente digital / unix : systematical and special assistance for dec vax / vms and unix systems with strong enough knowledge of informix and c programming . ambiente / decnet / windows : systematical and special assistance for dec vax / vms and windows with knowledge in financial administration of local networks , in financial administration and configuration of communication systems ( router , bridge , gateway , etc ) and of products of exchange data , in financial administration and configuration of interface systems of internet . therefore , to increase our presence to the international market we took part in the inter - governmental program between the united states and romania . thus , we participated to the international meeting of both romanian and american it companies on lst november 2001 due to the kind initiative of both governments . the reason of this program , of the meeting mentioned above and of the initiatives that followed was to offer a new way for outsourcing , more convenient than the indian one to american software companies . our company , already present on american market , is interested to be a potential partner and one of most interested in cooperating with american it companies . our main interest is both on the american and european market . our managing staff after visiting italy managed to establish relations with this country for our curent projects . on the other side a marketing tour has already been established in the usa in the month of may for any possible projects . that is why we might be able to directly discuss with you any new project . we ' d appreciate your feed - back containing detailed contact coordinates : company name , address , phone and fax numbers , contact person , web - site . our area of interest : software production export we wish to express our availability to work under the client ' s brand . please don ' t hesitate to send us your specific inquiry / offering demand . we ' ll be happy to provide you the lowest prices in the field . thanking you for your time and looking forward to your reply , we wish you all the best . i . q . software staff avfs mailing list avfs @ csibe . fazekas . hu ",1 +"Subject: books about thailand hello planning a trip to thailand ? like to eat thai food ? need to learn thai ? check out our recommendations at http : / / www . thaibooks . ch ! new : we are featuring novels too . ",1 +"Subject: this is where it all begins no where else will you find the level of accuracy , detail and convenience . act now ! you ' ll receive unlimited access to our world famous psychics with no per minute charges ! ! ! but ' s that ' s not all . . . you also get unlimited tarot and rune readings , real - time biorhythm charts , full in - depth numerology reports , detailed daily monthly horoscopes , real - time natal charts , a love analyzer , ouija board , and much , much more ! your future is waiting click here ! ! ! live psychics 24 / 7 numerology horoscopes astrology the tarot biorhythms i ching runes and so much more ! this email is not sent unsolicited . you are opted in with cnn - si . you are receiving it because you requested receive this email by opting - in with our marketing partner . you will receive notices of exciting offers , products , and other options ! however , we are committed to only sending to those people that desire these offers . if you do not wish to receive such offers click here . or paste the following into any browser : http : / / 65 . 162 . 84 . 5 / perl / unsubscribe . pl ? s = to remove your email name from our list . you may contact our company by mail at 1323 s . e . 17 th street , suite number 345 , ft . lauderdale , fl 33316 ",1 +"Subject: re : account information email advertise to 28 , 000 , 000 people for free act now before 6 pm pst on tuesday , may 28 th and receive a free $ 899 . 00 bonus 1 ) let ' s say you . . . sell a $ 24 . 95 product or service . 2 ) let ' s say you . . . broadcast email free to 500 , 000 people daily . 3 ) let ' s say you . . . receive just 1 order for every 2 , 500 emails . calculation of your earnings based on the above statistics : [ day 1 ] : $ 4 , 990 [ week 1 ] : $ 34 , 930 [ month 1 ] : $ 139 , 720 - - - - - - - - - - - - - - - - you now know why you receive so many email advertisements . . . = = = > broadcast email advertising is extremely profitable ! 1 ) what if you . . . sell a $ 99 . 95 product or service ? 2 ) what if you . . . broadcast email to 30 , 000 , 000 + people monthly ? 3 ) what if you . . . receive 1 order for every 250 emails ? just imagine = > day 30 ! = = > week 30 ! ! = = = > month 30 ! ! ! = = > the profits that broadcast email can generate are amazing ! ! * * according to forrester research , a broadcast email ad is up * * to 15 times more likely to result in a sale than a banner ad ! - - - - - - - - - - - - - - - - [ comparison of internet advertising methods ] : = > a 1 / 20 page targeted web site banner ad to 5 million people on the internet can cost you about $ 100 , 000 . = > a 5 page targeted direct mail advertisement to 1 million people through the postal service can cost you about $ 500 , 000 . = > a 50 page targeted html broadcast email advertisement with pictures to 50 , 000 , 000 people through the internet is free . . . . which advertising method sounds most appealing to you ? "" targeted direct email advertising is the wave of the future . by no other means can you effectively reach your market so quickly and inexpensively . "" - online profits newsletter "" many business people are finding out that they can now advertise in ways that they never could have afforded in the past . the cost of sending mass e - mail is extremely low , and the response rate is high and quick . "" - usa today - - - - - - - - - - - [ example of a personalized / targeted broadcast email ] : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kate @ cattiesinc . com to : mary @ commtomm . com subject : about your cat ! hi mary , are you interested in receiving up to 80 % savings on cat supplies ? if so , come visit our web site at : http : / / www . cattiesinc . com = > with broadcast email software , a broadcast email advertisement = > like this one can be automatically sent to up to 1 , 000 , 000 = > people on a daily basis with less than 2 minutes of your time ! * imt strategies reports an average of a 16 . 4 % click through rate from users that have received a broadcast email advertisement ! - - - - - - - - - - - - - - - - a european 2001 benchmark study conducted by forrester research says : 1 ) 41 % of consumers believe email is a good way to find out about new products . 2 ) 36 % of consumers in 13 countries read most of the promotional email they receive and 9 % forward the email to a friend because they think it is valuable . - - - - - - - - - - - be prepared ! you may receive a huge amount of orders within minutes of sending out your first broadcast email advertisement ! * according to digital impact , 85 % of broadcast email offers are responded to within the first 48 hours ! "" when you reach people with e - mail , they ' re in a work mode , even if they ' re not at work . they ' re sitting up , they ' re alert . you catch them at a good moment , and if you do it right , you have a really good shot of having them respond . "" - william thames [ revnet direct marketing vp ] - - - - - - - - - - - * an arthur anderson online panel reveals that 85 % of online users say that broadcast email advertisements have led to a purchase ! "" "" according to flonetwork , us consumers discover new products and services 7 + times more often through an email advertisement , than through search engines , magazines and television combined ! "" only a handful of companies on the internet have discovered broadcast email advertising . . . = > now you can be one of them ! ! - - - - - - - - - - - = > united messaging says there are 890 + million email addresses ! = > get ready ! now with broadcast email , you can reach them all = > thanks to our broadcast email software ! our broadcast email software with dns technology automatically creates 10 super - fast mail servers on your computer which are then used to send out your broadcast emails to millions for free ! = = > with our new email sending technology . . . = = > your internet provider ' s mail servers are not used ! there are no federal regulations or laws on email advertising & now with our software = > you can avoid internet provider concerns ! = > if you send a broadcast email advertisement to 50 , 000 , 000 = > people and just 1 of 5 , 000 people respond , you can generate = > 10 , 000 extra orders ! how much extra profit is this for you ? - - - - - - - - - - - - - - - - - - - - - - as featured in : "" the boston globe "" ( 05 / 29 / 98 ) , "" the press democrat "" ( 01 / 08 / 99 ) , "" anvil media "" ( 01 / 29 / 98 ) : [ nim corporation presents ] : the broadcast email package requirements : win 95 / 98 / 2000 / me / nt / xp or mac softwindows / virtualpc [ broadcast email sender software ] ( $ 479 . 00 retail ) : our broadcast email sender software allows you the ability to send out unlimited , personalized and targeted broadcast email advertisements to over 500 , 000 , 000 people on the internet at the rate of up to 1 , 000 , 000 daily , automatically and for free ! have a list of your customer email addresses ? broadcast email advertise to them with our software for free ! [ targeted email extractor software ] ( $ 299 . 00 retail ) : our targeted email extractor software will automatically navigate through the top 8 search engines , 50 , 000 + newsgroups , millions of web sites , deja news , etc . . and collect millions of targeted email addresses by using the keywords of your choice ! this is the ultimate extractor tool ! [ 15 , 000 , 000 + email addresses ] ( $ 495 . 00 retail ) : millions of the newest & freshest general interest and regionally targeted email addresses separated by area code , state , province , and country ! from alabama to wyoming , argentina to zimbabwe ! 15 , 000 , 000 + fresh emails are yours ! [ step by step broadcast email package instructions ] : you will be guided through the entire process of installing and using our broadcast email software to send out broadcast email advertisements , like this one , to millions of people for free ! even if you have never used a computer before , these instructions make sending broadcast email as easy as 1 - 2 - 3 ! [ the broadcast email handbook ] : the broadcast email handbook will describe to you in detail , everything you ever wanted to know about broadcast email ! learn how to write a successful advertisement , how to manage the hundreds of new orders you could start receiving , what sells best via broadcast email , etc . . . this handbook is a necessity for anyone involved in broadcast email ! [ unlimited customer & technical support ] : if you ever have any questions , problems or concerns with anything related to broadcast email , we include unlimited customer & technical support to assist you ! our # 1 goal is customer satisfaction ! [ additional information ] : our broadcast email software package contains so many features , that it would take five additional pages just to list them all ! duplicate removing , automatic personalization , and free upgrades are just a few of the additional bonuses included with our broadcast email software package ! - - - - - - - - - - - - - - - - - - - - - - all together our broadcast email package contains everything you will ever need for your entire broadcast email campaign ! you will receive the entire broadcast email package with everything listed above ( $ 1 , 250 . 00 + retail ) for only $ 499 . 00 us ! but wait ! ! if you order by tuesday , may 28 th , you will receive the broadcast email package for only $ 295 . 00 us ! ! order now and receive [ 13 , 000 , 000 bonus emails ] ( $ 899 value ) for free for a total of 28 , 000 , 000 fresh email addresses ! ! regardless , if you send to 1 , 000 or 100 , 000 , 000 people . . . you will never encounter any additional charges ever again ! our broadcast email software sends email for a lifetime for free ! - - - - - - - - - - - - - - - - since 1997 , we have been the broadcast email marketing authority . our # 1 goal is to see you succeed with broadcast email advertising . we are so confident about our broadcast email package , that we are giving you 30 days to use our entire package for free ! = = > you can send unlimited broadcast email advertisements ! = = > you can extract unlimited targeted email addresses ! = = > you can receive unlimited orders ! if you do not receive at least a 300 % increase in sales or are not 100 % completely satisfied with each and every single aspect of our broadcast email package , simply return it to us within 30 days for a 100 % full refund , no questions asked ! ! best of all , if you decide to keep our broadcast email package , it can be used as a 100 % tax write off for your business ! - - - - - - - - - - - see what users of our broadcast email package have to say . . . "" since using your program , i have made as much in two days as i had in the previous two weeks ! ! ! ! ! i have to say thank you for this program - you have turned a hobby into a serious money making concern . "" = w . rogers - chicago , il "" we have used the software to send to all our members plus about 100 , 000 off the disk you sent with the software and the response we have had is just fantastic ! ! our visits and sales are nearly at an all time high ! "" = a . freeman - england , uk "" i have received over 1200 visitors today and that was only sending out to 10 , 000 email addresses ! "" = k . swift - gunnison , co "" i ' m a happy customer of a few years now . thanks a lot . . . . i love this program . . "" = s . gallagher - melville , ny "" thanks for your prompt filing of my order for your broadcast email software - - it took only about a day . this is faster than anybody i have ever ordered something from ! thanks again ! "" = w . ingersoll - scottsdale , az "" i feel very good about referring the folks i have sent to you thus far and will continue to do so . it is rare to find a company that does business this way anymore . . . it is greatly appreciated . "" = t . blake - phoenix , az "" your software is a wonderful tool ! a + + + + "" = s . nova - los angeles , ca "" thank you for providing such a fantastic product . "" = m . lopez - tucson , az "" your tech support is the best i have ever seen ! "" = g . gonzalez - malibu , ca "" i am truly impressed with the level of service . i must admit i was a bit skeptical when reading your ad but you certainly deliver ! "" = i . beaudoin - toronto , on "" my first go round gave me $ 3000 to $ 4000 in business in less than one week so i must thank your company for getting me started . "" = a . roberts - san francisco , ca "" we are really happy with your email program . it has increased our business by about 500 % . "" = m . jones - vancouver , bc "" it really works ! ! ! ! ! thank you thank you , thank you . "" = j . beckley - cupertino , ca - - - - - - - - - - - - - - - - [ sound too good to be true ? ] * * if you broadcast email to 500 , 000 internet users daily . . . * * do you think that maybe 1 of 5 , 000 may order ? = > if so . . . that is 100 extra ( cost - free ) orders every day ! ! remember . . you have 30 days to use our broadcast email package for free and see if it works for you ! if you are not 100 % completely satisfied , simply return the broadcast email package to us within 30 days for a full refund ! - - - - - - - [ broadcast email software package ] : easy ordering instructions = > once your order is received we will immediately rush out the = > broadcast email package on cd - rom to you via fedex priority = > overnight or 2 - day priority international the same day free ! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ to order by phone ] : to order our broadcast email software package by phone with a credit card or if you have any additional questions , please call our sales department in the usa at : = > ( 541 ) 665 - 0400 * * you can order now ! all major credit cards are accepted ! order by 3 pm pst ( m - th ) today - > have it by 10 am tomorrow free ! european & foreign residents - > have it within 2 weekdays free ! removal from our email list = > call ( 206 ) 208 - 4589 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ to order by fax ] : to order our broadcast email software package by fax with a credit card , please print out the order form at the bottom of this email and complete all necessary blanks . then , fax the completed order form to our order department in the usa at : = > ( 503 ) 213 - 6416 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ to order by postal mail ] : to order our broadcast email software package with a cashiers check , credit card , us money order , us personal check , or us bank draft by postal mail , please print out the order form at the bottom of this email and complete all necessary blanks . send it along with payment of $ 295 . 00 us postmarked by tuesday , may 28 th , or $ 499 . 00 us after tuesday , may 28 th to : nim corporation 1314 - b center drive # 514 medford , or 97501 united states of america - - - - - - - - - - - - - - - - "" over 20 , 000 businesses come on the internet every single day . . . if you don ' t send out broadcast email . . . your competition will ! "" - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ broadcast email software package ] : order form ( c ) 1997 - 2002 nim corporation . all rights reserved company name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ your name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ billing address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ zip / postal code : _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ non pobox shipping address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state / province : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ zip / postal code : _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ phone number : _ _ _ _ _ _ _ _ _ _ _ _ _ _ fax number : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ email address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ * * to purchase by credit card , please complete the following : visa [ ] mastercard [ ] amex [ ] discover [ ] diners club [ ] name on credit card : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ cc number : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ exp . date : _ _ _ _ _ _ _ _ _ amount to charge credit card ( $ 295 . 00 or $ 499 . 00 ) : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ signature : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ ",1 +"Subject: wearing ro , lex is stylish . wearing our ro , lex is smart and stylish . don ' t bburn yourself just to gget one brand name watch . pop into our cyberspace for top brands like ro , lex , cart . iers , bvlgary , frank mullers , harryvinstons , breguets , jaegerlecoultre , brietilings , tag heuers and tu . dors . do you luv outdoor activities ? see our stainless steel range that are waterproof . http : / / 3 w . sthh . enjoybestones . com / i 5 h / - - - - - original message - - - - - from : ross @ ckq . com [ mailto : harrison @ olce . com ] sent : thursday , march 5 , 2005 2 : 37 pm to : lupe ; dion @ ker . com ; jeramy ; barrett ; norbert subject : prefer ro , lex or omegas or cart . iers ? explore our cyberwatch galore . these brilliant watches will draw all the attention . and their lowprices will attract all . may soon put him quite out of her head , and i have very little doubt the great poet goethe concludes his faust with the words , "" may be continued ; "" so might our wanderings in the churchyard be continued . the visit passed off altogether in high good humour . mary was",1 +"Subject: trading for a living ( all you should know about forex ) - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: judicial judgements child support very substantial profit processing money judgments . from a cruise ship . be on top . control when you want to take time off . current associates earning 5 , 000 us to 12 , 000 us per / mo . impressive training and support . detailed information or to un - subscribe or to see our address . testimonial from dave f . , in nebraska ; first of all , i want to tell you that i am going to be my own first customer . i won a judgment against a man , but he closed his shop , took my property and disappeared . thanks to the information you gave me , i found him three days after receiving your training manual . i will use the knowledge gained from you to collect what he owes me . thank you again . as far as i ' m concerned , your training course has more than paid for itself already . silently he stole to the foot of the attic stairs and then paused to listen . the house seemed very quiet , but he could hear his mother ' s voice softly humming a cradle - song that she had sung to him when he was a baby he had been nervous and unsettled and a little fearful until then , but perhaps the sound of his mother ' s voice gave him courage , for he boldly ascended the stairs and entered the workshop , closing and locking the door behind him",1 +"Subject: custom logos and identities from us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom desiqn of logos , stationery and web - sites . under our carefui hand thesepowerfui marketing tools wili brinq a breath of fresh air into your business and make you stand out amongthe competitors . you are just a ciick away from your future success . click here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: bigger , fuller breasts naturally in just weeks ! uqouq for women ages 13 to 60 plus . . . . as seen on tv . . . . safely make your breasts bigger and fuller in the privacy of your own home . guaranteed quick results click here for full report mcskjfirglkckubuvfiwwp - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: new medz how t cornel o save on your medlcations over 70 % . pharmsho enginehouse p - successfull and proven way to save vulnerary your mo homogeneous ney . vaccination v a heliograph g a sullen l l stationary u disparate l r casuistical a reservoir cl i evacuate sva acclivity l pearlbarley m andmanyother . best prlces neighbouring . world cockadoodledoo wide shlpplng . easy order fo tentative rm . total confidentiaiity peaceloving . 250 , 000 satisfied selfoffence customers . order today and carrier save !",1 +"Subject: investment offer from joseph otisa investment offer from joseph otisa compliments of the season , my name is mr . joseph otisa , the branch manager of allstates trust bank of nigeria plc lagos state branch . i am writing in respect of a foreign customer of my bank ( mr . wahab daniel ) with account number ats 1022002 - 109 who perished with his family in an auto crash in abuja expresway , in nigeria , on the 30 th of november 2000 . since the demise of mr . daniel , i personally have watched with keen interest to see the next of kin but all has proved abortive as no one has come to claim his funds of usd 23 m , twenty - three million , united states dollars ] has been with our bank here for a very long time , which has accumulated some interest . on this note i decided to seek for you , your name shall be used as the next of kin , as no one has come up to put claim as the next of kin to this funds and the banking ethics here does not allow such money to stay more than five years , becuase after five years the money will be called back to the bank treasury as unclaimed bill . . i am convinced in my mind that your name could be used as the next of kin to this claim . the request of the foreigner as a next of kin in this business is occasioned by the fact that the customer was foreigner and a nigerian cannot stand as the next of kin to a foreigner . i have agreed to share this money with you in the mutual understanding of 70 % / 30 % . you keep 30 % while i keep 70 % , thereafter i will visit your country , for disbursement as i am almost due for retirement . therefore to endeavour the immediate transfer of this funds to your account , you have to apply first to the bank as the next of kin to the deceased indicating by sending an application and location where the money will be remitted . i will not fail to bring to your notice that this business is hitch free and that you should not entertain any fear as the whole required arrangement as been perfected for the transfer . i want to make you this offer , ( joeoti 7 @ box . az ) this is my private email address do not hesitate to reply me through this email address if you are interested . kind regards . the people ' s choice chat directory . . . only the best , most informative and interesting chatrooms listed . chat , personals , free email and more ! http : / / www . chatterhead . net",1 +"Subject: attn : i presume this mail will not be a surprise to you . i am an accountant with the ministry of mineral resources and energy in south africa and also a member of contracts awarding committee of this ministry under south africa government . many years ago , south africa government asked this committee to awards contracts to foreign firms , which i and 2 of my partners are the leader of this committee , with our good position , this contracrs was over invoiced to the tune of us $ 25 , 600 , 000 : 00 as a deal to be benefit by the three top member of this committee . now the contracts value has been paid off to the actual contractors that executed this jobs , all we want now is a trusted foreign partner like you that we shall front with his banking account number to claim the over inflated sum . upon our agreemeent to carry on this transaction with you , the said fund will be share as follows . 75 % will be for us in south africa . 20 % for using your account and other contribution that might reqiured from you . 5 % is set aside for the up front expences that will be encounter by both party to get all necessary documents and formarlities that will justify you as the rightful owner of this fund . if you are interested in this transaction , kindly reply this massege with all your phone and fax numbers , to enable us furnish you with details and procedures of this transaction . god bless you yours faithfully . joseph edward .",1 +"Subject: minimize your phone expenses unlimited web conferencing subscribe to the web conference center for only $ 40 . 00 per month ! ( connects up to 15 participants at a time plus audio charges ) manage your meetings virtually on line application sharing multi - platform compatible ( no software needed ) call anytime , from anywhere , to anywhere unlimited usage for up to 15 participants ( larger groups availabale ) lowest rate $ . 18 cents per minunte for audio ( toll charges included ) quality , easy to use service numerous interactive features free demo eliminate or reduce travel expense try this on for savings . . . and turn those unnecessary trips into problem solving and fact finding conferences , saving time and wear and tear on your overworked business staff . to find out more about this revolutionary concept , fill out the form below . required input field * name * web address company name * state * business phone * home phone email address * all information given herein is strictly confidential and will not be re - distributed for any reason other than for the specific use intended . to be removed from our distribution lists , please click here . .",1 +"Subject: none hello , this is a one time mailing . we are looking for people who might be interested in working p / t from home . this position involves working 10 - 15 hours per week . you can expect to make $ 15 - $ 25 per hour worked . to see a job description , you may go to have a great day ! - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: great news . youve been pre - approved for a new . . we tried to contact you last week about refinancing your home at a lower rate . i would like to inform you know that you have been pre - approved . here are the results : * account id : [ 708 - 107 ] * negotiable amount : $ 192 , 483 to $ 678 , 843 * rate : 3 . 30 % - 5 . 66 % please fill out this quick form and we will have a broker contact you as soon as possible . regards , stephen britton senior account manager lyell national lenders , llc . database deletion : www . lend - bloxz . com / r . php ",1 +"Subject: naturally irresistible your corporate identity lt is really hard to recollect a company : the market is full of sugqestions and the information isoverwheiminq ; but a good catchy logo , stylish statlonery and outstanding webslte wiil make the task much easier . we do not promise that havinq ordered a loqo your company wiil automaticaliy become a world ieader : it isquite ciear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: viagra is it the right medication for you ! welcome to the beginning of your sexual life using viagra ! money can ' t buy you happiness , but poverty can ' t buy you anything . we ' ll either hang together or we ' ll hang separately . to him that you tell your secret you resign your liberty . unlike human beings , computers possess the truly profound stupidity of the inanimate .",1 +"Subject: limited access to sensitive paypal account features as part of our security measures , we regularly screen activity in thepaypal system . we recently noticed the following issue on your account : we would like to ensure that your account was not accessed by anunauthorized third party . because protecting the security of your account is our primary concern , we have limited access to sensitive paypal account features . we know that this may be an inconvenience but pleaseunderstand that this temporary limitation is for your protection . case id number : pp - 072 - 838 - 482 to review your account and some or all of the information that paypal used to make its decision to limit your account access , please visit the resolution center or copy this link and paste it in the internet explorer bar http : / / www . paypal . com . if after reviewing your account information , you seek further clarification regarding your account access , please contact paypal by visiting the help center and clicking "" contact us "" . we thank you for your prompt attention to this matter . please understand that this is a security measure intended to help you and protect your account . we apologize for any inconvenience . sincerely , paypal account review departmentpaypal email id pp 522 ",1 +"Subject: real drugs - viagra and phentrimine ! real drugs - viagra and phentrimine order all you favorite drugs on line . click here for viagra , phentrimine and more ! remove yourself from this list by either : entering your email address below and clicking remove : or reply to this message with the word remove in the subject line . this message was sent to address cypherpunks @ einstein . ssz . com pmguid : 1 dx . 2 pdp . fsi 52 - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: big range of all types of downloadable software . software for home and office . the wise man carries his possessions within him . you make ' em , i amuse ' em . [ children ]",1 +"Subject: candy super $ money maker you are receiving this message as an opt - in subscriber to 4 best offer or one of our marketing partners . if you no longer wish to receive further offers , please send an email with discontinue to : support @ 4 bestoffer . com 4 best offer 136 74 th street north bergen , nj 07047 ",1 +"Subject: i want to mentor you this week i showed 62 people how to get over 30 sign / ups each week . how much would that be worth to you ? let me mentor you . i mentor at no charge . i will show you how to get 100 ' s of paid / for sign / ups eas . ily and without spending a cent on normal mark . eting campaigns . i can mentor you personally on a powerful "" one to one "" basis and supply you with contact details of thousands of pre - qualified people who will join your business ( subject to individual terms ) . i will make your bus / iness earn up to 500 times more than it currently is and that ' s a guarantee . i can help all types of bus / iness . opps , m / l . m , net / work mark . eting programs and any other type of web site on the ' net like mainstream or niche retail or mem . ber sites . if you are interested just ask . for example : i will show you how to drive sign / ups to your business almost handsfree . the only thing you have to do , is start the snowball rolling the and rest is fully automated . i will mentor you , to show you how to promote using e . mail mark / eting to get huge results while spending almost nothing using cheap pre - qualified targeted contact lists . i will show you how to get into the top 10 search results for 5 keywords on the best 20 search engines to include google , msn , yahoo etc . i can help anyone with any type of business . there is no restriction to the type of business you want me to help you build providing its legal . to find out if i can mentor you please send me an email to : mentor 888 @ isp - q . com with "" mentor me "" in the subject and your business name , url and own name in the message . asking for more information . = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = i reserve the right to refuse my service to anyone without breaching my code of conduct or advertising standards . in such instances i am not obliged to give a reason for refusal of my mentoring service . to find out if i can mentor you please send me an email to : mentor 888 @ isp - q . com with "" mentor me "" in the subject and your business name and url and own name in the message . note ; if i have upset you in any way by sending you this email please forgive me and send an email to : mentor 888 @ isp - q . com with the word "" off "" in the subject and i will never bother you again .",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be lost amonq competitors . get your ioqo , business stationery or website done riqht now ! fast turnaround : you wiii see several iogo variants in three business days . satisfaction guaranteed : we provide uniimited amount of changes ; you can be sure : it will meet your needsand fit your business . flexibie discounts : ioqo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: our goood medz hello , welcome to pharm urinary zonline s vaticinate hop - one of th mausoleum e ieading oniine pharmace clever uticai shops v susceptive l sparing gr bereavement l adoration lu contort a tarmac acl permeability a audibility isv timeserving al involute m andmanyother . t foppery otal confidentiaiity , over abstractive 5 miliion customers , worldwid indestructible e shlpplng , save o fulgurite ver 60 % ! have fustigate a nice day !",1 +"Subject: logo , stationer , website design and so much more ! lt is really hard to recollect a company : the market is full of suggestions and the information isoverwhelming ; but a good catchy logo , stylish stationery and outstanding webslte wili make the task much easier . we do not promise that havinq ordered a loqo your company wiil automaticaiiy become a worid ieader : it isguite ciear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: restore your access security assistance it has come to our attention that your account information needs to be updated as part of our continuing commitment to protect your account and to reduce the instance of fraud on our website . just update your personal records and you will not run into any future problems with the online service . however , failure to update your records until july . 21 , 2005 your account considered as suspension . please update your records as soon as this email being sent . our system requires further account verification . case id number : pp - 563 - 002 - 410 once you have updated your account records , your session will not be interrupted and will continue as normal . as soon as possible . allowing your account access to remain limited for an extended period of time may result in further limitations on the use of your account and possible account closure . click here to update your account you can also confirm your identity by logging into your paypal account at https : / / www . paypal . com / us / . and you will be directed to the verifying page . thank you for using paypal ! the paypal team please do not reply to this e - mail . mail sent to this address cannot be answered unscribe - mailing @ paypal . com . opt : in , opt : out for assistance , log in to your paypal account and choose the "" help "" link in the footer of any page . to receive email notifications in plain text instead of html , update your preferences here . paypal email id pp 468 ",1 +"Subject: make your rivals envy lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwheiming ; but a good catchy logo , styllsh statlonery and outstanding webslte wiil make the task much easier . we do not promise that havinq ordered a logo your company wiil automaticaily become a world ieader : it isguite ciear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: term insurance is out aggressive underwriting programs such as . . . table 5 to standard on permanent cases ! other company term to permanent life insurance with non - med underwriting ! simplified and guarantee issue programs for multi - life cases ! low cost lifetime guarantees ! underwriting events ! . . . diversified brokerage specialists has been combining the very best in technology and personal service since 1946 ! make sure to ask about our full line of disability ltc products ! "" if we can ' t do it , it can ' t be done ! "" call diversified brokerage specialists today ! or please fill out the form below for more information name : e - mail : phone : city : state : visit us online at : www . dbs 50 . com we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: a heartwarmer : just imagine ~ welcome to heartwarmers ~ http : / / www . heartwarmers . com the best thing to happen to mornings since the sun ! your morning thought for the day : retirement at 65 is ridiculous . when i was 65 i still had pimples . - - george burns it ' s summer vacation time and parents will soon be hearing from their kids that they ' re bored . one of the biggest regrets we hear from the older generation , is that kids lack the playful imagination that was common a generation or two ago . back in the "" olden days "" , kids knew how to entertain themselves with surprisingly little . there was no such thing as playstation . kids ran outside to play kick - the - can in a game that was shockingly not organized by adults . they actually did it themselves . today , mike shares some thoughts about kids and modern imagination - - or lack thereof . . . what do you think ? support our sponsors they keep our service priceless . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ hundreds of our readers are saving a small fortune . . . heartwarmer , petwarmer and kidwarmer subscribers are discovering the tremendous benefits of using tel 3 advantage to make long distance and international calls - - some saving 90 % ! get started now by calling : 800 - 330 - 6897 . when asked for your "" activation code "" say : 311 - 673 . or you can click here to get complete details and sign up online : http : / / www . pocketwarmers . com / c _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ get free software for your computer hundreds of titles to choose from . you only pay postage . in fact , order 4 disks and get free postage for the 5 th . http : / / www . pocketwarmers . com / d just imagine by michael t . smith when i married ginny , i gained a new son , daughter and four grandsons . i became an instant grandpa . over the july 4 th holiday , i got to meet my new daughter and her three boys for the first time . it took a day for my new grandsons to warm up to me . the first day they stared at me , perhaps wondering what they were supposed to do with this man , who they were told is "" grandpa . "" i waited patiently . i knew boys like to play . they ' d come to me in their own time . on day two , the oldest two were doing summersaults over my lap . the youngest , ben , took a little longer , but yesterday he raced me across the yard thirty times and won every time . the weekend brought back memories of my own childhood . we had such imaginations . in our minds , a tree was a tower to spot approaching bad guys , a big rock became a mountain , a fallen log a space ship headed to the stars . we had toys , but we had to use our imagination , not like the new toys i see my grandkids with . our toys didn ' t talk , and if they did , you pulled a string to make it work . we had blocks to build , crayons to create , trucks and cars to push . they were simple toys that required imagination . i thought about the toys in my garage , the ones i saved , when my children outgrew them . they were simple and needed their imagination to work . mr . potato head allowed them to learn parts of the body and giggle at the funny face with an ear where its mouth should have been . i still have an old plastic phone . it has a dial to turn , a bell that rings when you push a button , and that ' s it . it doesn ' t talk , squawk , beep or move around the room . it ' s simple and was used when they played house , nurse , doctor , and secretary . i have a toy doctor ' s bag , with all the plastic doctor ' s tools . i remember all the broken bones , cuts , bangs , scratches and aches my daughter repaired as i lay in her office moaning . most toys today do it all . we don ' t need imagination - - it comes in a box . video games that take us into another world or reality , talking toys , with vocabularies better than most people , computerized toys to teach the alphabet . kids sit and have imagination brought to them . the teaching toys are great , but children tire of them - - it ' s like being in school . when my son was young and tired of his toys , he would come to me and say , "" dad , i ' m bored . "" "" go find something to do , "" i ' d reply . "" i don ' t know what to do . "" "" go outside and find a friend . "" "" naaa ! i don ' t want to do that . "" "" use your imagination . "" "" huh ? "" he asked . "" well , when i was young . . . "" you know the routine . sports is the same . we ' re entertained for hours watching someone else have fun doing what they ' re good at . wouldn ' t it be better to be playing yourself ? if we don ' t like the sports available to watch , we create new ones . it doesn ' t matter what , people will pay to see it , because they need to be entertained . i haven ' t heard of world championship worm digging , but if someone offered a large cash price , people would buy tickets to scream at the contestants . i worry . are we becoming a society that needs outside influence to have fun ? i think i ' ll go climb a tree . maybe there ' s a pirate ship on the horizon or someone is attacking my castle . just imagine . - - michael t . smith michael lives in new jersey with his new wife and son . from our mailbag : ( in response to last week ' s story , cinderella men ) dear heartwarmers : last week ' s heartwarming story opened a door to memory lane . i too , was born in the 30 s and felt some of the poverty of that time . i remember my mom and dad who never complained of the fatigue that was so ever present in their lives . we were very fortunate in as much as we always had plenty of food and warm shelter . we had a garden and salvaged every edible product available - - even certain "" weeds "" that were quite tasty after mother got all the spices in them . i had several beautiful dresses made from feed sacks that i wore with pride ! we were very poor , but so rich indeed because we had love and the knowledge that god was upper most in our lives , and it taught us lessons that had never been printed in the books . i deeply appreciate those lessons of long ago because they have taught me how to handle the tough times we have encountered in this life of prosperity and promise . thank you again for your lovely story . god bless . - - do you enjoy heartwarmers ? maybe your friends would too . they can join for free by sending an email to : join @ heartwarmers . com thank you , heartwarmer angels ! a big heartfelt thank you to our heartwarmer angels . joan kiefner , el dorado hills , california jerry plantz , lees summit , missouri ila george , schertz , texas ronald & shirley tansill , atlanta , georgia don goldschen , springfield , virginia chip robinson , cambridge , massachusetts kathleen altemus , avonmore , pennsylvania keith & kay hill , camarillo , california phyllis reasoner , adrian , michigan bernadine brooks , winters , california david moneyhon , spring , texas albert blight , windsor , ontario linda king , portland , oregon judy hord , phoenix , arizona sally bible , lake oswego , oregon pam peyron , vale , oregon rayna peyron , la grande , oregon judith hurley , vail , arizona catherine waygood , east hampton , new york ethel halpin , ridge new york lizbeth crews , mcallen , texas julie casos , west jordan , utah shirley johnson , ft . oglethorpe , georgia david johnson , caseyville , illinois elaine olson , santa fe , new mexico sue mullennix , ft . wayne , indiana deborah shearer , dundalk , maryland twila escalante , grand cayman lois scott , sandpoint , idaho nancy wolf , bay shore , new york frances arellano , roland , iowa arlene millman , huntington , new york nancy eckerson , akron , new york david price , tempe , arizona marilyn myers , anderson , indiana linda barfield , mccoll , south carolina vickie kellogg , durham , north carolina vicki arcado , sandy , utah charles & victoria trenkle , palm desert , ca cheri nicodemus , baltimore , maryland debra cole , balko , oklahoma karl schmidt , pitt meadows , british columbia lisa marie coffey , oak park , california jean carlson , jamestown , north dakota nannette gaylord , new bern , north carolina jeanne escher - pickel , irving , texas lorena copeland , greensboro , north carolina leta sousa , montgomery , alabama al batt , hartland , minnesota beverly salemme , randolph , massachusetts barbara wolf , greeley , colorado joyce courson , perryton , texas david johnson , caseybille , illinois donna diciaccio , lynn , massachusetts nancee donovan , concord , new hampshire marilyn myers , anderson , indiana ann berger , colville , washington kathleen doldan , grand island , new york daria takach , garfield , new jersey terri goggin , havertown , pennsylvania suzanne shuster , south riding , virginia dick & doris miller , central point , oregon david johnson , caseyville , illinois rosemary blackman , tulare , california mary munarin , scottsdale , arizona tabitha jones , middlesboro , kentucky barbara lincks , gardena , california mary horbal , shelton , connecticut leo perry , st . paul , minnesota you can become an "" angel "" member with your contribution of $ 25 or more . your name will be proudly listed when you join . help our efforts to spread positive and uplifting messages around the planet . send to : heartwarmers , po box 527 , lewiston , ny 14092 . be sure to include your name and town . if you know someone who is seeking help - - for anything , including anger , smoking , bad habits , lack of motivation , etc - - let them know they can begin taking control of their lives today . have them check this website out : http : / / www . hypnosisdownloads . com / ? 739 we put spaces before and after the @ sign in the email addresses to prevent worms , viruses , and robots from harvesting them . if you would like to correspond , just remove the spaces . changing your email address soon ? if you are going to change your email address and want to continue receiving your heartwarmers , be sure to let us know . it ' s easy to change . send a blank email from your old email address to : remove @ heartwarmers . com then , send an email from your new email address to : join @ heartwarmers . com grace says : when diane ' s 2 - year - old grandson oggie arrived , she picked him up for a hug . "" mmm , "" diane said , "" you smell good . what smells so good ? "" oggie replied , "" screen saver . "" ( he meant sunscreen ! ) you can get kidwarmers for free by sending an email to : join @ kidwarmers . com to join ( it ' s free ! ) , send an email to : join @ heartwarmers . com to discontinue , send an email to : remove @ heartwarmers . com homepage , ad info and archives : http : / / www . heartwarmers . com your own free heartwarmers webpage : http : / / www . heartwarmers . com / freepage / directory of members ' webpages : http : / / www . heartwarmers 4 u . com / members / 70 percent off new inkjet cartridges http : / / www . heartwarmers 4 u . com / b note : nothing here may be reproduced or published in any way without the express permission of the individual authors and / or copyright owners . to unsubscribe , click on the following web page . your membership is listed as : projecthoneypot @ projecthoneypot . org",1 +"Subject: does your business depend on the online success of your website ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it will be invisible virtualiy , which means efforts spent in vain . lf you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visibie in places where peopie search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best regards , jacindamaddox _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: perfect visual solution for your business now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buiiding a positive visual imaqe of your company by creatinq an outstandinq loqo , presentable stationery items and professional website . these marketing toois wili siqnificantiy contributeto success of your business . take a iook at our work sampies , hot deai packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . all iisted software is avaiiabie for immediate downioad ! no need to wait 2 - 3 week for cd delivery ! just few exampies : - norton internet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuil version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native language ! best regards , davina ",1 +"Subject: delivery status notification ( failure ) this is an automatically generated delivery status notification . delivery to the following recipients failed . antunes @ coppead . ufrj . br",1 +"Subject: = ? iso - 8859 - 1 ? q ? lose = 20 fat = 2 c = 20 gain = 20 muscle = 20 with = 20 hgh ? = hello , [ ! to ! ] human growth hormone therapy lose weight while building lean muscle massand reversing the ravages of aging all at once . remarkable discoveries about human growth hormones ( hgh ) are changing the way we think about aging and weight loss . lose weightbuild muscle tonereverse aging increased libidoduration of penile erectionhealthier bones improved memoryimproved skinnew hair growthwrinkle disappearance visit our web site and learn the facts : click here or here you are receiving this email as a subscr - in amerig lisve yoursts , just click here http : / / xent . com / mailman / listinfo / fork",1 +"Subject: naturally irresistible your corporate identity lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwheiming ; but a good catchy logo , styllsh statlonery and outstandlng webslte will make the task much easier . we do not promise that having ordered a ioqo your company wiil automaticaliy become a world ieader : it isguite clear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: you may want to look into funding from grants . . . . government grants e - book 2002 edition you can receive the money you need . . . every day millions of dollars are given away to people , just like you ! ! your government spends billions of tax dollars on government grants . do you know that private foundations , trust and corporations are required to give away a portion of theirs assets . it doesn ' t matter , where you live ( usa only ) , your employment status , or if you are broke , retired or living on a fixed income . there may be a grant for you ! anyone can apply for a grant from 18 years old and up ! we will show you how & where to get grants . this book is newly updated with the most current information ! ! ! grants from $ 500 . 00 to $ 50 , 000 . 00 are possible ! grants don ' t have to be paid back , ever ! grants can be ideal for people who are or were bankrupt or just have bad credit . please visit our website and place your order today ! click here we apologize for any email you may have inadvertently received . please click here to be removed from future mailings . [ jk 9 ^ "" : } h & * tgobk 5 nkiys 5 ]",1 +"Subject: professionally - designed logos and identities thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our careful hand thesepowerfui marketinq tools wili brinq a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . ciick here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: [ ilug - social ] re : guaranteed to lose 10 - 12 lbs in 30 days 10 . 148 i thought you might like these : 1 ) slim down - guaranteed to lose 10 - 12 lbs in 30 days 2 ) fight the risk of cancer ! 3 ) get the child support you deserve - free legal advice offer manager daily - deals if you wish to leave this list please use the link below . - - irish linux users ' group social events : social @ linux . ie http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , armandina ",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom desiqn of loqos , stationery and web - sites . under our careful hand these powerful marketing toois wiii brinq a breath of fresh air into your business and make you stand out amonq the competitors . you are just a ciick away from your future success . click here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: are you happy about your size and sexual performance ? experience more powerful orgasms http : / / www . siratu . com / ss / our thoughts are free . less is more . the best way out is always through . patience is the companion of wisdom . one swallow does not make a summer .",1 +"Subject: get your babies diapers bill paid for , for a year ! your family could definately use this , now go . kaazqchn",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom design of loqos , stationery and web - sites . under our carefui hand these powerfui marketing toois wili bring a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . ciick here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: affordable online prescripiton here caucasus brenda pontific locate your prescription immediately ! we have all tablets you could possibly need ! all your needs in one shop ! stop receiving promotional material now contemporaneous shaky deleterious cathodic ",1 +"Subject: internet news feeds for executives dfvht finally , a newsfeed that delivers current and relevant sales , marketing & advertising articles from such magazines as business 2 . 0 , fast company , technology marketing , wired , pc world , asia street intelligence , inc , bank technology . . . all in one location font - size : 16 px ; color : # 000066 "" > easy to read . easy to use . easy on your time . providing the internets ' most comprehensive web directory for sales , marketing font - size : 14 px ; color : # 000000 "" > today ' s top business magazine reviews along with a wide selection of articles from relevant sales and marketing topics . gain access to all the suppliers and resources you need to do your job effectively . if you can ' t find the supplier or resource that you need . . . one of our reps will go to work to find it for you . business 2 . 0 , fast company , technology marketing , wired , pc world , asia street intelligence , inc , bank technology and more you are receiving this e - mail because you have opted - in to receive special offers from offersrus . net or one of it ' s marketing affiliates . if you feel you have received this e - mail in error or do not wish to receive additional special offers , please scroll down to unsubscribe . this e - mailing has been sent to you as a person interested in the information enclosed . this e - mail is not spam under the federal regulatory laws of the united states . this message is being sent to you in compliance with the proposed federal legislation for commercial e - mail ( h . r . 4176 - section 101 paragraph ( e ) ( 1 ) ( a ) ) and bill s . 1618 title iii passed by the 105 th us congress . we sincerely apologize for any inconvenience . this message is not intended for residents of wa , nv , ca , va . screening of addresses has been done to the best of our technical ability . if you are a california , nevada , washington , or virginia resident please follow the instructions below and you will be permanently removed from our list immediately . if you would like to be removed from our e - mail list , please click on the words remove me click send , and you will be removed from our list immediately . ubyrpqtetxjyuyqyfjtie",1 +"Subject: we will guide you thru all of the answers to your questions about laser vision correction . there ' s a good chance you could throw your glasses and contacts away . information for you now . tuaujryt",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , ardith ",1 +"Subject: you don _ t know how to get into search engine results ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it wiil be invisible virtualiy , which means efforts spent in vain . lf you want peopie to know about your website and boost your revenues , the oniy way to do that is to make your site visible in places where peopie search for information , i . e . submit your website in muitipie search engines . submit your website online and watch visitors stream to your e - business . best reqards , brianneholden _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: take the pill and enjoy great sex the men is rich when he is healthy ! let your life be a counter friction to stop the machine . human reason is by nature architectonic . all professions are conspiracies against the laity .",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software ( exim ) . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : info @ markenweine . info smtp error from remote mailer after rcpt to : : host a . mx . markenweine . info [ 194 . 180 . 104 . 146 ] : 554 : relay access denied - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from aji 232 . neoplus . adsl . tpnet . pl ( [ 83 . 25 . 242 . 232 ] helo = mailwisconsin . com ) by mail . work . de with smtp ( exim 3 . 35 # 1 ( debian ) ) id ldupje - 0006 gu - 00 for ; tue , 19 jul 2005 12 : 54 : 03 + 0200 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 09360200 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ markenweine . info user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: any med for your girl to be happy ! your girl is unsatisfied with your potency ? don ' t wait until she finds another men ! click here to choose from a great variety of llcensed love t @ bs ! best pri $ es , fast shippinq and quaranteed effect ! here you buy it riqht from warehouse ! the store is verlfied by bbb and approved by vlsa ! ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enough for a man , but made for a woman ; - ) orderinq viaqra oniine is a very convinient , fast and secure way ! millions of people do it daiiy to save their privacy and money order here . . . ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . ciaiis has a lot of advantaqes over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: subprime refi mail sale subprime refi mail sale do you want 50 + new refi ' s in your pipeline this month ? if so , please tell us two things : what type of borrowers do you want calling in and how many calls you can handle per week ? we do the rest ! we can have your phones ringing within 7 daysturnkey direct mail campaigns include : 1 . powerful proven mail pieces 2 . 100 % targeted database 3 . exclusive market area availability 4 . postage with usps priority mail deliveryyou just answer the phones and write the loans ( 1003 ' s ) call : 1 - 877 - 266 - 0908 or email us at : info @ . comvisit us at www . . com ask about our subprime refi mail sale ! ! ! we will fill your pipeline ! infinity has been specializing in direct mail campaigns for the mortgage industry for 15 years to unsubscribe please email usaone @ cyberverse . com ",1 +"Subject: 25 mmg works wonders how to save on your m buoyancy edlcatlons over 60 % . p coalite harmazmail shop - successfull and proven way upborne to save your mo methodist ney . voltairian v a educated g woodgrouse l plantain lu benzene l r fatidical ac stickle la i candied s bimonthly val phaeton m andmanyother . * best prlc passport es * around worldwide shlpplng * total confiden rostrate tiaiity * over 5 handball miliion customers bibliophile have a nice day !",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciails has a iot of advantaqes over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohoi ! we ship to any country ! get it right now ! . ",1 +"Subject: security alert - confirm your ebay information ebay suspension need help ? dear valued ebay member , we regret to inform you that your ebay account has been suspended due to concerns we have for the safety and integrity of the ebay community . per the user agreement , section 9 , we may immediately issue a warning , temporarily suspend , indefinitely suspend or terminate your membership and refuse to provide our services to you if we believe that your actions may cause financial loss or legal liability for you , our users or us . we may also take these actions if we are unable to verify or authenticate any information you provide to us . due to the suspension of this account , please be advised you are prohibited from using ebay in any way . this includes the update of your actual account . if you could please take 5 - 10 minutes out of your online experience and update your personal records you will not run into any future problems with the online service . please update your records by the 23 of july . once you have updated your account records your ebay session will not be interrupted and will continue as normal . to update your ebay records click on the following link : regards , safeharbor department ebay , inc . ",1 +"Subject: you can win an extreme bedroom makeover valued at 50 k ! win an extreme bedroom makeover . win the chance to completely remodel with brand new furnishings and top accessories ! get products from sony ( r ) , panasonic ( r ) , samsung ( r ) , macy ' s ( r ) , and furniture . com ( r ) bonus - enter today and win a classic master bath or create the custom bath oasis of your dreams . . . select tile , plumbing fixtures , cabinets , countertops , and lighting . top it off with a luxury shower tower or whirlpool - or both ! just to make sure your makeover is complete . . . we ' re throwing in a $ 5 k shopping spree at sears ( r ) ! ymjscytxnvpf",1 +"Subject: failed mail your message to mxo 0 . mail . bellsouth . net was rejected . i said : rcpt to : and mxo 0 . mail . bellsouth . net [ 205 . 152 . 59 . 32 ] responded with 550 invalid recipient :",1 +"Subject: glasglow follow up hello objective - view . de i wanted follow up to yesterdays email to point out the glasglow partner program to those who may be interested . we offer a 40 % discount and exclusive license agreement for your region . we do dropship using dhl free of charge . if this may be something that interests you please let me know . if we are already in negotiation , exchanged links or you have listed yourself on the remove list please disregard this email and no further reply is required . sincerely michael www . glasglow . com if you do not wish to receive further updates please enter your email at http : / / www . cbxsales . com / un . html . they have agreed to send us the remove lists so that we do not keep bothering those that do not wish to be bothered .",1 +"Subject: http : / / www . foulston . com hello , i have visited www . foulston . com and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: 5000 full color postcards for $ 329 pure postcards 1227 s . lincoln ave . clearwater , fl 33756 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: you don _ t know how to attract customers to your website ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it will be invisible virtually , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visible in places where people search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best regards , anderson west",1 +"Subject: still wanna her ? : - ) you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciaiis has a iot of advantaqes over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! shipping to any country available ! get it right now ! . ",1 +"Subject: checking account update dear reader : we sometimes approach our analysts for their thoughts on emerging market sectors we ' re interested in . on certain occasions , they come to us with intriguing insights of certain aspects of the market that have caught their attention . as you know our track record speaks for itself we are happy to bring you another situation with huge upside potential we think this could be the one that when we look back shortly everyone will be saying i should have more . for more info click here ! ! ! remember : nothing ventured nothing gained ",1 +"Subject: no pills , no pumps - its the patch experience more powerful orgasms http : / / www . siratu . com / ss / give me where to stand , and i will move the earth . only a fool walks backwards into the future . poetry is a way of taking life by the throat . i am certain there is too much certainy in the world . a word to the wise is infuriating .",1 +"Subject: look ! desparately seeking 100 lazy people . . . . who wants to make money this is not spam . thanks for posting to our promotional web sites . if you wish to no longer receive email from us at this email address , or if you feel you received this email in error please send an email message to solution 244 @ hotmail . com with "" remove "" placed in the subject line dear friend , we are desparately looking for 100 lazy people who wish to make lots of money without working . we are not looking for people who are self - motivated . we are not looking for people who join every ' get rich quick ' scheme offered on the internet . we are not looking for class presidents , beautiful people , career builders or even college graduates . we don ' t even want union workers or trade school graduates . we want the laziest people that exist - the guys and gals who expect to make money without lifting a finger . we want the people who stay in bed until noon . we want those of you who think that getting out of bed to go lay on the couch is an effort that is best not thought about . if you meet this criteria , go to this site and join free : in case you haven ' t figured it out yet , we want the kind of people who do not take risks . if you are the kind of person who will consider doing something that ' s not a ' sure thing ' , then do not respond . this is too easy a way to make money and there ' s no challenge in it . if you can get to the website , you will be able to see the first home business in history that requires no work . none . by clicking on this link and going to this website , you will be aknowledging the fact that you want to make enough money that you can quit your regular job and sleep all day . we are not looking for a commitment from you and we don ' t even want your money . as a matter of fact , we don ' t even want you to hear from us again if the idea of making lots of money without working does not interest you . so if nothing else , remember this - to make money without working for it just "" join free "" . simple as that . we look forward to hearing from you . in all seriousness , this is not a "" no work "" program that will make you money without lifting a finger . advertising effectively requires work and plenty of it . oh , for sure , it ' s not like picking cotton under a broiling sun , but it is work , nonetheless . and we do want peoples ' money only when they see the value of our products , services and upgrades . we look forward to hearing from you . cordially your lazy friend , theresa brown we have 10 extremely targeted safe - lists for you to use daily in your advertising campaign ! this is spam - free , worry - free advertising at its best ! get your promotion to prosperity & peace sow a seed and god will meet your need ! give to your local charitable organization life in the word www . joycemeyer . org success begins in the mind ! * * * make it a great day * * *",1 +"Subject: you ' ve won ! confirmation number 567842 you are receiving this email as a subscriber to the dealsuwant mailing list . to remove yourself from this and related email lists click here : unsubscribe my email under bill ( s ) 1618 title iii by the 105 us congress , per section 301 , paragraph ( a ) ( 2 ) of s . 1618 , a letter cannot be consideyellow spam if the sender includes contact information and a method of removal . ",1 +"Subject: returned mail : see transcript for details the original message was received at tue , 19 jul 2005 12 : 59 : 14 + 0200 from chelloo 81018216102 . chello . pl [ 81 . 18 . 216 . 102 ] - - - - - the following addresses had permanent fatal errors - - - - - ( reason : insufficient permission ) - - - - - transcript of session follows - - - - - maildrop : maildir over quota . 550 5 . 0 . 0 . . . insufficient permission",1 +"Subject: elektronik lottery promotion prize awards ! ! ! from : government accredited licensed lottery promoters . winning notice for category \ "" a \ "" winner dear lucky winner , re : elektronik lotto promotion prize awards winning notification we are pleased to inform you of the result of the just concluded annual final draws of lotto international netherlands programs . the online cyber lotto draws was conducted from an exclusive list of 25 , 000 e - mail addresses of individual and corporate bodies picked by an advanced automated random computer search from the internet . no tickets were sold . after this automated computer ballot , your e - mail address emerged as one of two winners in the category \ "" a \ "" with the following : ref number : pc 390 es 214 batch number : 26371545 - lni / 2005 ticket number : pcp 002 871 you as well as the other winner are therefore to receive a cash prize of 1 , 500 , 000 . 00 . ( one million , five hundred thousand euro only ) each from the total payout . your prize award has been insured with your e - mail address and will be transferred to you upon meeting our requirements , statutory obligations , verifications , validations and satisfactory report . to begin the claims processing of your prize winnings you are advised to contact our licensed and accredited claims agent for category \ "" a \ "" winners with the information below : mr . van bell , remittance department director , tel : + 31 617 186 560 e - mail : vanbell @ nzoomail . com vanbell 2005 @ web - mail . com . ar you are also advised to provide him with the under listed information as soon as possible : 1 . name in full 2 . address 3 . nationality 4 . age 5 . occupation 6 . phone / fax note : all winnings must be claimed not later than 14 days . after this dateall unclaimed funds would be included in the next stake . remember to quote your reference information in all correspondence . you are to keep all lotto information away from the general public especially your reference and ticket numbers . ( this is important as a case of double claims will not be entertained ) . members of the affiliate agencies are automatically not allowed to participate in this program . thank you and congratulations ! ! ! yours faithfully , mrs . lynn rowlands , games / lottery coordinator . lotto international netherlands www . lotto . nl this email may contain information which is confidential and / or privileged . the information is intended solely for the use of the individual or entity named above . if you are not the intended recipient , be aware that any disclosure , copying , distribution or use of the contents is prohibited . if you have received this electronic transmission in error , please notify the sender by telephone or return email and delete the material from your computer . mail sent from webmail service at php - nuke powered site - http : / / skdclan . wwwpuntocom . com",1 +"Subject: first - class quality . economic pricing . quicker effects . safety assurance . i am a repeat buyer of your eshop . i found out . additional varieties . on the site . it ' s really great . - - tiffany m . in nc it is better value . for your greenbacks . we provide medz at specialprices . http : / / 5 x . ra . geturdear . com / uom / - - - - - original message - - - - - from : brian @ a . com [ mailto : quinn @ dcmy . com ] sent : thursday , march 4 , 2005 0 : 20 pm to : elvis ; kory @ wgay . com ; jarod ; emilio ; harrison subject : you would hate yourself . if you reject this chance . to reduce expenditures on quality taablets ? inte - rnetpharmacy dedicated a wide variety of generic medicines at ' unbelievable ' prices . our licensed physicians issue gratis prescrip . tion and consultations as a ' plus ' conveniences to you . middle of a wood . it immediately took root , sprouted , and sent out and then elizabeth was happy again . these were her internal persuasions : as to captain wentworth ' s views , she deemed it of more consequence",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . ali iisted software is availabie for immediate downioad ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton internet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuil version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native language ! best regards , zaida ",1 +"Subject: get rid of premature ejaculation and last longer new penis enlargement patches ! http : / / www . retdehola . com / ss / self is the only prison that can bind the soul . to the uneducated , an a is just three sticks . from the sublime to the ridiculous is but a step . no nice men are good at getting taxis . a man cannot be too careful in the choice of his enemies .",1 +"Subject: = ? iso - 8859 - 1 ? q ? fw : _ cd _ nua _ do _ dhamhsa = ed _ ch = e 9 il = ed ? = - - - - - original message - - - - - from : rathcairn to : automail script ; automail script ; astraea @ iol . ie ; ?se tobin ; arabenl 6313168 @ hotmail . com ; aofarachain @ tinet . ie ; aofarachain @ eircom . net ; anthony gorman ; ann - mari bergkvist ; annemarie meehan ; annemarie mcdonnell ; anne 7172 @ arabia . com ; anna swelund ; anna ni thuama ; ann faherty ; anewloan @ mail . ru ; andy plunkett ; andrew delany ; andrea nic oscair ; an fhiontarlann ; amurtagh @ tinet . ie ; amanda n? ghuidhir ; als 2 @ hotmail . com ; alpha @ fun . 21 cn . com ; allen moira ; allen carberry ; alex _ doyle @ ie . ibm . com ; alan mcgowan ; alain civel ; aishling n? raghallaigh ; ?ine m?ire n? choile?in ; aine guilfoyle ; ailin . nichuir @ ucd . ie ; ail?n n? h?g?in ; aileen o ' meara , rte ; advisor @ physiciansblend . net ; adshwe @ bekkers . com . au ; adrian 28 @ esatclear . ie ; admin ; ade kallas ; adare productions ; abqewvbgf @ iinet . net . au ; aal 133777 @ yahoo . com ; a _ crothers @ looksmart . com . au ; 89 ok 7 yumhjn @ msn . com ; 12 unidiploma @ msn . com ; ogbvll 2 jf @ solvo . spb . su ; daithi mac carthaigh ; d 7596 @ go . ru ; d 23463 @ portugalmail . com cc : 09886 w @ ams . com . br ; 0815 @ activate . de ; 01 bb 91 b 2 . 7 e 887960 @ genesys . pt ; 00 luke @ upline . se sent : tuesday , may 21 , 2002 3 : 47 pm subject : cd nua do dhamhsa? ch?il? a chara , email gairid le cur in i?l duit faoi dhl?thdhiosca nua at? ar f?il dona damhsa? ch?il? is coitianta i measc daoine ?ga . t? ceol ar dona damhsa? seo a leanas : balla? luimn? briseadh na carraige baint an fh?ir ionsa? na hinse port an fh?mhair cor na s?og r?ic? mh?la tonna? thora? droichead ?tha luain staic?n eorna se?in?n cor beirte shoe the donkey waltzes agus eile is f?idir an cd a cheannach tr?d www . damhsa . com n? 086 8339082 le meas , brian ? broin ",1 +"Subject: re : [ 1 ] save over $ 70 on this exquisite software suite . 32004 take control of your computer with this top - of - the - line software ! norton systemworks 2002 software suite - professional edition - includes six - yes 6 ! - feature - packed utilitiesall for 1 special low price of only $ 29 . 99 ! this software will : - protect your computer from unwanted and hazardous viruses - help secure your private valuable information - allow you to transfer files and send e - mails safely - backup your all your data quick and easily - improve your pc ' s performance w / superior integral diagnostics ! - you ' ll never have to take your pc to the repair shop again ! 6 feature - packed utilities 1 great price a $ 300 + combined retail value yours for only $ 29 . 99 ! price includes free shipping ! and for a limited time buy any 2 of our products get 1 free ! don ' t fall prey to destructive viruses or hackers ! protect your computer and your valuable information and - click here to order yours now ! - or call toll - free 1 - 800 - 861 - 1481 ! your email address was obtained from an opt - in list . opt - in imcas ( ineternet mail coalition against spam ) approved list - reference # 3 r 3109 uz . if you wish to be unsubscribed from this list , please click here . allow 5 business days for removal . if you have previously unsubscribed and are still receiving this message , you may email our spam abuse control center . we do not condone spam in any shape or form . thank you kindly for your cooperation . ",1 +"Subject: your online sales are low because you don _ t have enough visitors ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it wiil be invisibie virtuaiiy , which means efforts spent in vain . if you want peopie to know about your website and boost your revenues , the only way to do that is to make your site visible in places where peopie search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best reqards , springmorqan _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: hi ho aussie w to save on your medlcatlons over 60 % . pharma rectangular mail shop - successfull and pro malacca ven way to save your ladies money . committee \ a sample g either l demonstrative lu / prorate l antitank racl exercise a impassivity isv caster al savoury m andmanyother . * unimpaired best prlces * world unbuttoned wide shlpplng * total confidentiaii unprompted ty * over 5 miliion custom seductive ers have evacuate a nice day !",1 +"Subject: make your rivals envy lt is really hard to recollect a company : the market is full of sugqestions and the information isoverwhelminq ; but a good catchy logo , stylish statlonery and outstandlng webslte wiii make the task much easier . we do not promise that having ordered a iogo your company wili automaticaiiy become a worid ieader : it isquite ciear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: clear benefits of creative design lt is really hard to recollect a company : the market is full of sugqestions and the information isoverwhelminq ; but a good catchy logo , stylish statlonery and outstanding webslte wiil make the task much easier . we do not promise that havinq ordered a logo your company will automaticaily become a worid leader : it isguite clear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: adv : win a green card and become a u . s citizen ! the united states has a program , called diversity immigrant visa lottery ( better known as the green card lottery ) , making available each year by random selection 50 , 000 permanent residence visas ( green cards ) to people from around the world . the objective of the program is to issue green cards to individuals born in countries with historically low levels of immigration to the united states . a green card is a permanent residence visa of the u . s . a . a green card will give you legal right to work and live permanently in the united states . green card holders receive health , education , and several other benefits . if you win a green card , you can apply for u . s . citizenship at a later time . the green card does not affect your present citizenship . you and your family could be lucky winners ! your email address was obtained from a purchased list , reference # 00193 . if you wish to unsubscribe from this list , please click here . if you have previously unsubscribed and are still receiving this message , you may email our abuse control center , or call 1 - 888 - 763 - 2497 , or write us at : nospam , 6484 coral way , miami , fl , 33155 . - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: your in - home source of health information right place to look for buying cheap viagra online ! light be the earth upon you , lightly rest . you never lose by loving . you always lose by holding back . the road to true love never did run smooth .",1 +"Subject: re : we have all your favorite programs at incredibly low prices the cheapest p * c prices bundle 1 : windows x * p pro & office x * p pro only 8 o 15 o dollars we might have just what you need : bundle 2 : macromedia studio mx 2 oo 4 - 18 o dollars we might have just what you need : bundle 3 : adobe creative suite full - 2 oo dollars the offer is valid untill june 17 th virtual store stock is limited regards , tyree sanchez orthodontist retroscreen virology ltd . , london , el 4 ns , united kingdom phone : 571 - 396 - 7479 mobile : 354 - 117 - 9463 email : robvofjfdx @ flashmail . net this is a confirmation message this product is a 16 day definite software notes : the contents of this paper is for your exclusive use and should not be hour exponent cpu deject wrack time : sun , 24 apr 2005 08 : 15 : 35 - 0800",1 +"Subject: i think you might be interested 2005 - 07 - 05 18 : 53 : 34 hello marcotitzer , i just found a site called graand . com - a free and safe place on the internet to place classified ads . i thought i should invite you to check it out . regards , walker musrbfi 3 dgourpxc 4 fvaodpdof 3 emwnloqlqdk 9 2005 - 07 - 07 06 : 07 : 39",1 +"Subject: een avontuurtje is oke , als je dit bericht niet kan lezen , klik hier . je hebt dit bericht ontvangen omdat je in de db smsmag / kdotv bent . om uit te schrijven , klik hier . ",1 +"Subject: very uuseful attache how to save on your medlcations over 70 % . pharmsho fructiferous p - successfull and proven way unquestionable to save your strategics money . cevitamic v apodal ag impanel al shoveller lu cratch l dissyllable ra nonius cl barebacked isva undetermined l cotillon m andmanyother . best prl circumnavigator ces . w conservator orldwide shlpplng . easy order for emboss m . total confid lenticular entiaiity . 250 , 000 correctly satisfied customers . o distracted rder today and save !",1 +"Subject: best deals on all generic viagra and generic cialis alternatives with guaranteed lowest prices viagra is the # 1 med to struggle with mens ' erectile dysfunction . float like a butterfly , sting like a bee . humanity is acquiring all the right technology for all the wrong reasons . education is a progressive discovery of our own ignorance .",1 +"Subject: don ' t lose your data ! prevent future computer problems at a fraction of the cost of repairs web and order form : pro - techonline . com e - mail - info @ pro - techonline . com fax 206 - 937 - 4315 call today at 1 - 800 - 726 - 5997 understand the operating environments your systems are in , computers by their very nature , pull air in to keep their parts cool . their fans work 24 / 7 keeping cool . the problem with this is over a period of time dust , dirt and smoke , will build up and damage your computer . q damage your computer chips q destroy the data on your hard drive q melt the mother board what does this mean to you ? all of your information could be lost forever ! all of your files and data - works in progress - and contacts could be destroyed ! the information you have saved is a thousands times more valuable than the computer itself . thats why technicians recommend backups for your data . its all p r e v e n t a b l e ! the pro - tech computer filtration system simply works by filtering the air before air reaches your computers sensitive internal components . the system is set up at the base of your computer , with 2 easy steps , and is positioned in front of your computers air intake , filtering 98 % of the air particles that would otherwise get into your systems . for a little as $ 24 . 95 plus shipping , you can make sure you are completely protected and never worry about dust , smoke , moisture , etc . damaging your computer again ! web and order form : pro - techonline . com e - mail - info @ pro - techonline . com fax 206 - 937 - 4315 product availability : please allow up to 10 days for delivery . pro - tech will do everything we can to ship your order as soon as possible and notify you of the estimated time of delivery . for great rates on quantity , and wholesale pricing : order 5 or more and receive a 10 % discount ! wholesale orders save up to 20 % or more ! pro - tech uses ups ground for shipping and handling $ 5 . 85 pro - tech prides it self on protecting consumers financial privacy and safety . no more cans of air , no more bags , no more computer vacs . perfect for home , office , and industry model # 1 $ 24 . 95 model # 2 $ 29 . 95 model # 3 $ 36 . 95 our systems are fully adjustable and will fit any computer , one size fits all . installs in seconds ! step # 1 : place the base of the filtration system onto your computer . step # 2 : place the top of the filtration system onto the base . youre all set ; and you can access your disk drives as needed . replacement filters 1 size filter fits all three systems a package of 4 large heavy duty hepa filters , micron rated and designed , to last up to 6 months , $ 9 . 85 perfect for industry . alternative replacement filters a large heavy duty diffusion dual stage filtering material . designed to last up to 6 months . package of 4 $ 7 . 85 perfect for home and office . call today at 1 - 800 - 726 - 5997 web and order form : pro - techonline . com e - mail - info @ pro - techonline . com fax 206 - 937 - 4315 pro - tech filtration systems 3701 sw southern seattle , wa 98216 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: the money control system the money control system would your lifestyle change if you had an extra $ 10 , 000 each and every month ? find out now ! the money control system how you can get rich , stay rich enjoy being rich with the money control system . here ' s what people are saying . i don ' t have any financial worries . . . i can now pursue the interests and hobbies and the things i want to do . . . the mutual funds we are into are rated among the top five . . . we are looking at probably 15 % , 20 % return . . . my goal was specifically to take the $ 10 , 000 that i managed to accumulate through savings , invest that and , in a period of nine months to a year , come back with at least $ 15 , 000 . i came back with $ 16 , 000 . i saved in taxes alone what i paid for my kid ' s first year of college . anyone who can learn from money control would be crazy to pass up the chance . the control steps work so well that anyone can become a millionaire . i ' m not a millionaire yet , but i ' m living like one . i call my time my own , and work whenever i decide to . i am only 30 years old , so i plan to work another five years and retire with the income from a million dollars worth of investments . before the money control system showed me the way , i would never have believed it possible . me , a millionaire ! b . h . salt lake city ut click here to learn more and change your life ! ",1 +"Subject: grand - slam stox momentum alert issued for july 6 - 8 , 2005 explosive pick for our members - - up 0 . 52 ( 13 . 16 % ) ! tuesday july 5 th ! ! ! ! ! see tuesday july 5 th , heavy trading has started 6 x its normal 10 day avg , ride the stairway to heaven ! ! ! ! good day to all broker ' s , day trader ' s and investor ' s world stock report has become famous with some great stock picks in the otc , small cap market ' s ! ! ! ! ! ! ! ! ! ! here at world stock report we work on what we here from the street . rumor ' s circulating and keeping the focus on the company ' s news . we pick our companies based on there growth potential . we focus on stocks that have great potential to move up in price . ! ! ! ! ! ! while giving you liquitity . our latest pick is cdgt . symbol : cdgt friday july lst $ 3 . 90 current price : $ 4 . 43 short term 5 day projection : $ 8 - 9 we give it to you again as a gift . this company is doing incredible things . thay have cash and have made great strategic aquisitions . current price $ 4 . 43 . word on the sreet is strong buy . this company has dropped big new ' s in the past . who ' s to say they don ' t have another big one . * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * * * * * press release * * * * * * * * * * * * * * * * * * * * * press release source : china digital media corporation china digital media corporation announces an investment in second television drama - ' xiguan affairs ' hong kong , june 29 / xinhua - prnewswire / - - china digital media corporation ( ' ' digimedia ' ' ) ( otc : cdgt - news ; otc bulletin board : cdgt - news ) with its subsidiaries ( together the ' ' group ' ' ) announced today the group is committed to invest rmb 4 , 680 , 000 for a minority interests in a television drama , ' ' xiguan affairs ' ' , in the peoples republic of china with guangdong runshi movie & music production co . , ltd . ( ' ' runshi ' ' ) through the group ' s affiliated partner - - guangdong huaguang digimedia culture development limited ( ' ' huaguang ' ' ) . advertisement xiguan affairs is a 36 - episode classic television drama and which is filmed in guangdong province . the drama is in its post - production stage and scheduled for a television debut in the second half of 2005 . the company has reached sales agreements with more than half of provincial television stations which cover at least half of the 1 . 14 billion tv viewers in china . the company expects the drama will generate profits in 2005 . ' ' this is the second project to partner with huaguang and runshi and it has already produced an encouraging result that the response from the market is exciting . remember this is a stong buy recommendation . . . disclaimer : information within this email contains "" forwardlooking statements "" within the meaning of section 27 aof the securities act of 1933 and section 21 b of thesecurities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forwardlooking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will , "" "" anticipates , "" "" estimates , "" "" believes , "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . risk factors include general economic and business conditions , the ability to acquire and develop specific projects , the ability to fund operations and changes in consumer and business consumption habits and other factors overwhich the company has little or no control . the publisher of this newsletter does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the publisher of this newsletter advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . we urge you to read the company ' s sec filings now , before you invest . the publisher of this newsletter is not a registered invstment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . in compliance with the securitiesact of 1933 , section 17 ( b ) , the publisher of this newsletter is contracted to receive six hundred thousand free trading shares from a third party , not an officer , director or affiliate shareholder for the circulation of this report . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and is not without bias . the party that paid us has a position in the stock they will sell at anytime without notice . this could have a negative impact on the price of the stock , causing you to lose money . all factual information in this report was gathered from public sources , including but not limited to sec filings , company websites and company press releases . the publisher of this newsletter believes this informationto be eliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: heatt kills hello , cbs / a mythicize p news a r overman ecord heat wave has led to the deaths of 180 peopl fortuneless e in phoenix , most of them homeless , l nonsensical eaving officials scrambling to provide water and shelter to the city ' s transient population . read more . . .",1 +"Subject: first - level designers available for you corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your loqo , business stationery or website done right now ! fast turnaround : you will see several iogo variants in three business days . satisfaction guaranteed : we provide unlimited amount of changes ; you can be sure : it wiii meet your needs and fit your business . flexible discounts : logo improvement , additionai formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: your order hwjw learn how to use the easy signup for a paypal account to make a lot of money on your own how to use your paypal account to make up $ 15 , 000 or more in just 30 days with worldwide participation ! - you can participate if paypal is in your country - here is a list of all paypal countries if you wish to stop receiving our promo pleases reply with subject remove 1658999 ",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) orderinq viaqra oniine is a very convinient , fast and secure way ! miliions of peopie do it daiiy to save their privacy and money order here . . . ",1 +"Subject: new love tabs shop . visit our llcensed online dragstore for the best inexpensive love drags ! viagra , ciaiis , softtabs and many other love enhancers aii in one ! operative support , fast shipping , secure payment processing and complete confidentiality ! click here to find your verifled by bbb and approved by visa iove pil 1 ! ",1 +"Subject: paypal account review r dear valuedpaypalmember : paypal is committed to maintaining a safe environment for its community of buyers and sellers . to protect the security of your account , paypal employs some of the most advanced security systems in the world and our anti - fraud teams regularly screen the paypal system for unusual activity . recently , our account review team identified some unusual activity in your account . in accordance with paypal ' s user agreement and to ensure that your account has not been compromised , access to your account was limited . your account access will remain limited until this issue has been resolved . this is a fraud prevention measure meant to ensure that your account is not compromised . in order to secure your account and quickly restore full access , we may require some specific information from you for the following reason : we would like to ensure that your account was not accessed by an unauthorized third party . because protecting the security of your account is our primary concern , we have limited access to sensitive paypal account features . we understand that this may be an inconvenience but please understand that this temporary limitation is for your protection . case id number : pp - 040 - 187 - 541 we encourage you to log in and restore full access as soon as possible . should access to your account remain limited for an extended period of time , it may result in further limitations on the use of your account . however , failure to restore your records will result in account suspension . please update your recordson or beforejuly 27 , 2005 . once you have updated your account records , yourpaypal session will not beinterrupted and will continue as normal . to update your paypal records click on the following link : https : / / www . paypal . com / cgi - bin / webscr ? cmd = _ login - run thank you for your prompt attention to this matter . please understand that this is a security measure meant to help protect you and your account . we apologize for any inconvenience . sincerely , paypal account review department paypal email id pp 522 accounts management as outlined in our user agreement , paypal willperiodically send you information about site changes and enhancements . visit our privacy policy and user agreement if you have any questions . http : / / www . paypal . com / cgi - bin / webscr ? cmd = p / gen / ua / policy _ privacy - outside ",1 +"Subject: your membership community charset = iso - 8859 - 1 your membership community & commentary ( july 6 , 2001 ) it ' s all about making money information to provide you with the absolute best low and no cost ways of providing traffic to your site , helping you to capitalize on the power and potential the web brings to every net - preneur . - - - this issue contains sites who will trade links with you ! - - - - - - - - - - - - - - - - in this issue - - - - - - - - - - - - - internet success through simplicity member showcase win a free ad in community & commentary | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > > today ' s special announcement : | | | = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = > > we can help you become an internet service provider within 7 days or we will give you $ 100 . 00 ! ! click here we have already signed 300 isps on a 4 year contract , see if any are in your town at : click here you are a member in at least one of these programs - you should be in them all ! bannersgomlm . com profitbanners . com cashpromotions . com mysiteinc . com timshometownstories . com freelinksnetwork . com myshoppingplace . com bannerco - op . com putpeel . com putpeel . net sellinternetaccess . com be - your - own - isp . com seventhpower . com = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = internet success through simplicity = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = every day of the week , i get questions from people all over the world , including my no bs gimg members , wanting to know some of the most valuable "" secrets "" to my on - going internet success . let me say , above all else , i don ' t believe there are any * true * "" secrets "" to success on the net . what you do to become successful in the online world is not a "" secret "" , in my opinion . most successful people follow simple , clear , repeatedly - proven strategies to succeed , whether on the net or off . but , when it comes to someone asking for advice , consultation , or simply asking , "" what ' s your secret ? "" , i have to blush & say . . . persistence and personality . of course , i always follow the advice with my own little disclaimer : what makes me successful may not work the same for you . . . & your first lesson is to get over the deep - seeded idea that success - of any kind , in my opinion - is somehow an unknown , unattainable secret . clearly , it is not . it ' s not unknown . it ' s not unattainable . it ' s not years of digging to find the "" secrets "" to internet riches . one thing that "" gets to me "" so often in my work as an internet consultant , author and internet success strategist is that so many people on the net seem to have this incredibly huge mental block that stands between themselves and success on the net . it ' s almost as if they ' ve been barraged by so many claims of what works and what doesn ' t work , and so many long , complicated routes to actually succeeding in their online venture , that "" success "" is the equivelant of a 100 - foot high brick wall . it ' s not that difficult , my friends ! it is not that complicated ! ! long - time friend and business associate rick beneteau has a new ebook out called branding you & breaking the bank . get it ! ! http : / / www . roibot . com / bybb . cgi ? im 7517 _ bybtb . but , the reason i mention this is the fact that he talks so dynamically about the true simplicity of making your online venture a success . and , yes , rick & i come from the same school of "" self marketing "" - marketing you ! obviously , that ' s the core of his excellent new ebook , and i couldn ' t agree with him more . point being , * you * are everything you do online to succeed . you are your web site , your business , your marketing piece , your customer service , your customers ' experiences with your business - - all of it , is you ! read his ebook & you ' ll see more of what i ' m saying . the matter at hand is that brick wall you might have standing high as you can see , blocking the path between you & internet success . listen to me - it is not real ok ? it doesn ' t exist . there ' s nothing there to fear to begin with . . . get over it ! ! what i ' m telling you is , the only thing standing between you and the success you most desire . . . is yourself . when you realize this , you will tear down that brick wall by means of complete and instantaneous disintegration . it will no longer exist * in your mind * , which is the only "" real "" place it ever was anyhow ! yes , "" persistence and personality "" inherently includes honesty , integrity , accountability , and many other qualities but you also have to hone in on your ultimate goals and realize that probably the most valuable , powerful key to your success . . . is you ! that may be the most incredible "" secret "" we ever uncover in our lifetime ! and , trust me , that brick wall won ' t ever get in your way again . . . unless you let it . talk about simple ! ! bryan is a "" veteran "" internet consultant , author , internet success strategist & marketer . he publishes mega - success . com chronicles to over 11 , 500 subscribing members , authors articles which appear all over the net , and helps hundreds of wealth - hungry people in their journey to internet success . bryan is also director of his no bs guerrilla internet marketing group at http : / / . com & a fantastic new joint venture partners program for that site . bryan hall is a founding member and the development consultant for the prestigious icop ( tm ) at http : / / www . i - cop . org / 1016 . htm you can reach bryan at 877 . 230 . 3267 or by emailing him directly at bryan . hall @ mega - success . com = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = member showcase = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = examine carefully - those with email addresses included will trade links with you . . . you are encouraged to contact them . there are many ways to build a successful business - just look at these successful sites programs other members are involved in . . . get insane amounts of traffic to your website . purchase 10 , 000 guaranteed visitors to your site and receive 5 , 000 free . more traffic = more money ! less than 2 cents a visitor . space is limited . order now ! http : / / www . freepicklotto . com trade links - businessopps @ aol . com stop smoking - free lesson ! ! discover the secret to stopping smoking . to master these powerful techniques , come to http : / / www . breath - of - life . net for your free lesson . act now ! p . s . tell someone you care about . trade links - jturco 3 @ hotmail . com celebration sale ! $ 99 . 00 on casinos / sportsbetting sites , lingerie stores , gift stores , adult sites toy stores . mention ad # bmlm 99 to receive this special sale price . order now ! http : / / www . cyberopps . com / ? = bmlm 99 affiliates of the world ! top rated affiliate programs , excellent business opportunities , great marketing resources and free advertising for you ! visit the site to trade links . http : / / www . affiliates . uk . com trade links - adrianbold @ affiliates . uk . com just been released ! ! internet marketing guru corey rudl has just released a brand new version of his # 1 best - selling internet marketing course , "" the insider secret ' s to marketing your business on the internet "" . a must have ! so don ' t hesitate , visit . . http : / / www . adminder . com / c . cgi ? startbgmlmezine we have a 260 page catalog with over 3000 gift items for men , women , children - a gift for everyone . we show 100 gift items on our web site alone , with the catalog you have access to the rest . we also feel we have the best prices on the web . visit at http : / / www . . net trade links - georgel 932 me @ yahoo . com if you have a product , service , opportunity or quality merchandise that appeals to people worldwide , reach your targeted audience ! for a fraction of what other large newsletters charge you can exhibit your website here , and trade links for only $ 8 cpm . compare that to the industry average of $ 10 - $ 15 cpm . why ? . . . because as a valuable member we want you to be successful ! order today - showcases are limited and published on a first come , first serve basis . for our secure order form , click here : http : / / bannersgomlm . com / ezine = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = win a free ad in community & commentary = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = to keep this interesting , how about this , every month we ' ll draw a name from the replies and that person will win one sponsorship showcase ad in the community commentary , for free . that ' s a value of over $ 700 . 00 ! respond to each weekly survey , and increase your chances to win with four separate entries . question of the week ( 07 / 06 / 01 ) . . . no right or wrong answers , and just by answering you are entered to win a showcase ad - free ! ~ ~ ~ do you spend more or less time ~ ~ ~ ~ ~ ~ online in the summer months ? ~ ~ ~ more mailto : one @ aeopublishing . com less mailto : two @ aeopublishing . com same mailto : three @ aeopublishing . com to make this as easy as possible for you , just click on the e - mail address that matches your answer - you do not need to enter any information in the subject or body of the message . * * add your comments ! follow directions above and add your comments in the body of the message , and we ' ll post the best commentaries along with the responses . you will automatically be entered in our drawing for a free sponsorship ad in the community commentary . please respond only one time per question . multiple responses from the same individual will be discarded . last weeks ' s results ( 06 / 29 / 01 ) ~ ~ ~ what is the goal of your website ? ~ ~ ~ sell 40 % get leads 20 % build branding 5 % provide information 20 % other 15 % comments : - - - - - - - - - - - - - - - - - - - - - - - - - - - - our web site is initially designed to get leads , build branding , and provide information . . . . . . . with a 12 month goal of selling our service more specifically via a shopping cart . we offer a service and at this time take deposits and payments via our site . our site has been up less than 2 months and our expectation was that we would refer to our site for leads developed in traditional media and by referral for more information , and to make a professional impression on someone you may not meet before providing service . the growth of our customer base shopping on line has grown outside of anyone ' s expectations . . . . . . . certainly mine and i ' ve been in this business for 25 years . the internet is not dead in the horse business , it is just getting it ' s legs , and the folks using it want to get all the ancillary services on - line as well . our site ( the first we ' ve developed ) has exceeded our expectations , and we aren ' t satisfied with it yet . . . . . . . we just wanted to get it there for information ! jeff and rebecca marks http : / / www . grand - champion . com branding . while quality customer service and product have been and will always be our top priority brand building zesto is our most challenging task . zesto . com ranks very high and most often # 1 or 2 on all major search engines and directories even yahoo entering the keyword zesto . the problem is simply that , who if anyone would type the keyword zesto , therefore we must try to build our brand by ensuring that generic keywords associated with our products ( citrus peel ) are used throughout our site as well as search engine submissions . fortunately owning a non generic domain short , easy to remember and trademarked works in our favor because the marketability potential is limitless . arlene turner http : / / www . zesto . com = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = - = to change your subscribed address , send both new and old address to submit see below for unsubscribe instructions . please send suggestions and comments to : editor i invite you to send your real successes and showcase your strategies and techniques , or yes , even your total bombs , "" working together we can all prosper . "" submit for information on how to sponsor your membership community commentary visit : sponsorship showcase copyright 2001 aeopublishing . com email : yourmembership 2 @ aeopublishing . com voice : web : http : / / www . aeopublishing . com this email has been sent to jm @ netnoteinc . com at your request , by your membership newsletter services . visit our subscription center to edit your interests or unsubscribe . http : / / ccprod . roving . com / roving / d . jsp ? p = oo & id = bd 7 n 7877 . 7 giv 5 d 57 & m = bd 7 n 7877 charset = iso - 8859 - 1 in this issue internet success through simplicity member showcase win a free ad in community & commentary today ' s special announcement : win a free ad in community & commentaryto keep this interesting , how about this , every month we ' ll draw a name from the replies and that person will win one sponsorship showcase ad in the community commentary , for free . that ' s a value of over $ 700 . 00 ! respond to each weekly survey , and increase your chances to win with four separate entries . question of the week ( 07 / 06 / 01 ) . . . no right or wrong answers , and just by answering you are entered to win a showcase ad - free ! ~ ~ ~ do you spend more or less time ~ ~ ~ ~ ~ ~ online in the summer months ? ~ ~ ~ more mailto : one @ aeopublishing . com less mailto : two @ aeopublishing . com same mailto : three @ aeopublishing . com to make this as easy as possible for you , just click on the e - mail address that matches your answer - you do not need to enter any information in the subject or body of the message . * * add your comments ! follow directions above and add your comments in the body of the message , and we ' ll post the best commentaries along with the responses . you will automatically be entered in our drawing for a free sponsorship ad in the community commentary . please respond only one time per question . multiple responses from the same individual will be discarded . last weeks ' s results ( 06 / 29 / 01 ) ~ ~ ~ what is the goal of your website ? ~ ~ ~ sell 40 % get leads 20 % build branding 5 % provide information 20 % other 15 % comments : - - - - - - - - - - - - - - - - - - - - - - - - - - - - our web site is initially designed to get leads , build branding , and provide information . . . . . . . with a 12 month goal of selling our service more specifically via a shopping cart . we offer a service and at this time take deposits and payments via our site . our site has been up less than 2 months and our expectation was that we would refer to our site for leads developed in traditional media and by referral for more information , and to make a professional impression on someone you may not meet before providing service . the growth of our customer base shopping on line has grown outside of anyone ' s expectations . . . . . . . certainly mine and i ' ve been in this business for 25 years . the internet is not dead in the horse business , it is just getting it ' s legs , and the folks using it want to get all the ancillary services on - line as well . our site ( the first we ' ve developed ) has exceeded our expectations , and we aren ' t satisfied with it yet . . . . . . . we just wanted to get it there for information ! jeff and rebecca marks http : / / www . grand - champion . com branding . while quality customer service and product have been and will always be our top priority brand building zesto is our most challenging task . zesto . com ranks very high and most often # 1 or 2 on all major search engines and directories even yahoo entering the keyword zesto . the problem is simply that , who if anyone would type the keyword zesto , therefore we must try to build our brand by ensuring that generic keywords associated with our products ( citrus peel ) are used throughout our site as well as search engine submissions . fortunately owning a non generic domain short , easy to remember and trademarked works in our favor because the marketability potential is limitless . arlene turner http : / / www . zesto . com to change your subscribed address , send both new and old address to submit see below for unsubscribe instructions . please send suggestions and comments to : editor i invite you to send your real successes and showcase your strategies and techniques , or yes , even your total bombs , "" working together we can all prosper . "" submit for information on how to sponsor your membership community commentary visit : sponsorship showcase copyright 2001 aeopublishing . com email us : : visit our site phone : this email was sent to jm @ netnoteinc . com , at your request , by your membership newsletter services . visit our subscription center to edit your interests or unsubscribe . view our privacy policy . powered by ",1 +"Subject: still paying too much for life insurance ? . . . u save up to 75 % on your term life insurance ! compare rates from top insurance companies around the country in our life and times , it ' s important to plan for your family ' s future , while being comfortable financially . choose the right life insurance policy today . click the link below to compare the lowest rates and save up to 75 % compare your coverage you ' ll be able to compare rates and get a free application in less than a minute ! * get your free instant quotes . . . * compare the lowest prices , then . . . * select a company and apply online . get a free quote now ! you can ' t predict the future , but you can always prepare for it . to be excluded from future contacts kanz http : / / xent . com / mailman / listinfo / fork",1 +"Subject: cheap oem soft shipping worldwide don ' t be a fuddy - duddy . . . use the software everyone ' s using . . . deus ex machina [ a god from the machine ] to freely bloom - that is my definition of success .",1 +"Subject: stock 2 watch pop 3 media corp ( popt ) a company which has positioned itself in the gap between the major media conglomerates and the universe of independent music , film , publishing and technology companies . current price : 0 . 022 will it continue higher ? watch this one wednesday as we know many of you like momentum . breaking news ! ! pop 3 media corp . ( popt ) and roxxy corporation announced that the companies have entered into a letter of intent whereby roxxy corporation will acquire a 66 % interest in pop 3 ' s wholly owned subsidiary , viastar distribution group , inc . "" vdg , "" forming a revolutionary new music company , controversial entertainment corporation . the transaction , consisting of stock and cash , when completed , will provide pop 3 ' s shareholders with a 33 % stake in the new company . roxxy ' s management will operate the company from headquarters in los angeles and will change its corporate name to controversial entertainment corporation in the coming weeks . the companies intend to complete and execute the definitive agreement by july 8 th , 2005 , and seek shareholder approval immediately thereafter . pop 3 ' s ceo , john d . aquilino , stated , "" this alliance will allow pop 3 to achieve its strategic vision of creating a new paradigm in the music industry . one that is focused on supporting the artist and the music they create while embracing emerging technologies and giving consumers access to a variety of artists through a variety of media . "" roxxy ' s management team combines highly experienced industry executives drawn from the major labels and also includes a staff of in - house producers who are among the most influential talents in the music industry today . "" it is roxxy ' s vision to seize the opportunities afforded by the major labels ' lack of commitment to their artists and customers ; labels that cast aside established artists who can no longer generate multi - million selling recordings , but who consistently release albums which sell hundreds of thousands of records to a large and loyal fan base ; artists that can easily generate revenues between $ 1 and $ 5 million per title , "" stated john shebanow , roxxy ' s ceo . "" additionally , the acquisition of vdg will provide us with the ability to distribute our own product directly to retail to over 22 , 000 retail location in north america , effectively doubling the company ' s net profit margins and allowing the increased revenue to pass on to our artists . "" mr . shebanow concluded , "" while there are smaller labels that do provide a home for these acts , they lack either the will or financial resources to commit to the kind of budgets which producers of the caliber we have on staff require . and no company has the unique combination of great producers , in - house distribution and dedication to the artist and the customer that controversial entertainment will possess . "" about pop 3 media corp : pop 3 media corp . is engaged in development , production and distribution of entertainment - related media for film , television , music and publishing interests . the company ' s portfolio currently includes ownership of viastar distribution group , a . v . o . studios , moving pictures international , viastar records , quadra records , light of the spirit records , and viastar classical , viastar artist management group and masterdisk corporation . conclusion : the examples above show the awesome , earning potential of little known companies that explode onto investor ' s radar screens ; many of you are already familiar with this . is popt poised and positioned to do that for you ? then you may feel the time has come to act . . . and please watch this one trade wednesday ! go popt . penny stocks are considered highly speculative and may be unsuitable for all but very aggressive investors . this profile is not in any way affiliated with the featured company . we were compensated 3000 dollars to distribute this report . this report is for entertainment and advertising purposes only and should not be used as investment advice . if you wish to stop future mai - lin * gs , or if you feel you have been wrongfully placed in our membership , send a blank e mail with no thanks in the sub ject to no _ morenewsletters 2 @ yahoo . com",1 +"Subject: the reason to sh . op in our zone ? for sav . vings . running short of tablet . supplies ? uncover hovv others s . ave on medicaments . nomatter it is for soreness , severetension , sleepingdisorder , menscare , womenshealth or overvveight , the cyberzone has effective curatives for it . the generic equivalents might be a better option for sho . ppers who vvant to s . ave on medicaments . there is a great assortment of generics at our medzone . unveil fantastic . deals in our medzone . in the orderstatus , there is the latest info . on the carriages and orders . http : / / t . 2 k . valuecreatorforall . com / d 2 / vov ! lead you to simple sav . vings . n light enough , - conv really so , i should do just the same in her place . if i loved a man , and tried to be cool and unconcerned . her distress returned , eyed her up stairs to her own room with all speed ; and imm as she loves the admiral , i would always be with him , nothing should ever ediately dispatc 1 hed ham peggott 7 y , her nephew , who had been for s",1 +"Subject: call for papers : the international joint conferences on computer , information and systems sciences and engineering cisse 05 if you received this email in error , please forward it to the appropriate department at your institution please do not reply to this message , your reply will not be received . if you need to contact us , please email us at info @ cisse 2005 . org * international joint conferences on computer , information , * * and systems sciences , and engineering ( cisse 05 ) * * * * * * http : / / www . cisse 2005 . org * * * * * * * december 10 - 20 , 2005 sponsored by : institute of electrical & electronics engineers ( ieee ) university of bridgeport conference overview cisse 05 provides a virtual forum for presentation and discussion of the state - of the - art research on computers , information and systems sciences and engineering . the virtual conference will be conducted through the internet using web - conferencing tools , made available by the conference . authors will be presenting their powerpoint , audio or video presentations using web - conferencing tools without the need for travel . conference sessions will be broadcast to all the conference participants , where session participants can interact with the presenter during the presentation and ( or ) during the q & a slot that follows the presentation . this international conference will be held entirely on - line . the accepted and presented papers will be made available after the conference both on a cd and as a book publication . conference participants - authors , presenters and attendees - only need an internet connection and sound available on their computers in order to be able to contribute and participate in this international ground - breaking conference . the on - line structure of this high - quality event will allow academic professionals and industry participants to contribute work and attend world - class technical presentations based on rigorously refereed submissions , live , without the need for investing significant travel funds or time out of the office . potential non - author conference attendees who cannot make the on - line conference dates are encouraged to register , as the entire joint conferences will be archived for future viewing . please feel free to download the call for papers at : http : / / www . cisse 2005 . org / cfpcisseo 5 . doc ( microsoft word format ) or http : / / www . cisse 2005 . org / cfpcisseo 5 . pdf ( adobe pdf format ) cisse 05 is composed of the following four conferences : * international conference on industrial electronics , technology & automation ( ieta 05 ) topics : advanced and distributed control systems , intelligent control systems ( nn , fl , ga , . etc ) , expert systems , man machine interaction , data fusion , factory automation , robotics , motion control , machine vision , mems sensors and actuators , sensors fusion , power electronics , high frequency converters , motors and drives , power converters , power devices and components , electric vehicles and intelligent transportation , process automation , factory communication , manufacturing information system advances in manufacturing systems , industrial applications of multi media , intelligent systems instrumentation , industrial instrumentation , modeling and simulation , signal processing , image and data processing , vr and parallel systems . conference page : http : / / www . cisse 2005 . org / ieta . aspx * international conference on telecommunications and networking ( teneo 5 ) topics : optical networks and switching , computer networks , network architectures and equipment , access technologies , telecommunication technology , coding and modulation technique , modeling and simulation , spread spectrum and cdma systems , ofdm technology , space - time coding , ultra wideband communications , medium access control , spread spectrum , wireless lan : ieee 802 . 11 , hiperlan , bluetooth , cellular wireless networks , cordless systems and wireless local loop , mobile network layer , mobile transport layer , support for mobility , conventional encryption and message confidentiality , block ciphers design principles , block ciphers modes of operation , public - key cryptography and message authentication , authentication application , stenography , electronic mail security , web security , ip security , firewalls , computer forensics . conference page : http : / / www . cisse 2005 . org / tene . aspx * international conference on systems , computing sciences and software engineering ( scss 05 ) topics : grid computing , internet - based computing models , resource discovery , programming models and tools , e - science and virtual instrumentation , biometric authentication , computers for people of special needs , human computer interaction , information and knowledge engineering , algorithms , parallel and distributed processing , modeling and simulation , services and applications , embedded systems and applications , databases , programming languages , signal processing theory and methods , signal processing for communication , signal processing architectures and implementation , information processing , geographical information systems , object based software engineering , parallel and distributed computing , real time systems multiprocessing , file systems and i / o , kernel and os structures . conference page : http : / / www . cisse 2005 . org / scss . aspx * international conference on engineering education , instructional technology , assessment , and e - learning ( eiae 05 ) topics : instructional design , accreditation , curriculum design , educational tools , 2 - 2 - 2 platforms , teaching capstone design , teaching design at the lower levels , design and development of e - learning tools , assessment methods in engineering , development and implementation of e - learning tools , economical and social impacts of e - learning , platforms and systems for k - 12 / industry and higher education cooperation . conference page : http : / / www . cisse 2005 . org / eiae . aspx paper submission prospective authors are invited to submit full papers electronically in microsoft word or pdf format through the website of each conference at http : / / www . cisse 2005 . org . accepted papers must be presented in the virtual conference by one of the authors . to submit your paper , visit http : / / www . cisse 2005 . org / author / submit . aspx or visit the individual conference pages . important dates paper submission : september 30 , 2005 notification of acceptance : october 28 , 2005 final manuscript and registration : november 18 , 2005 cisse 2005 66 glenbrook rd stamford , ct 06902 this e - mail message is an advertisement and / or solicitation .",1 +"Subject: business intent dear sir , i am stanley woodwork , the secetary of africa white farmers co - operation ( awfc ) of zimbabwe . after the last general elections in my country where the incumbent president mr . robert mugabe won the presidential election , the government has adopted a very aggressive land reforms programme . this programme is solely aimed at taking the land owned by white african farmers for redistribution to black africans . this programme has attracted worldwide condemnation from world leaders including british prime minister , mr tony blair and also forced several white farmers to flee the country for fear of victimization and physical abuse . two weeks ago , our headquartes in harare was attacked and looted by black protesters and in the process burnt down the whole building . fortunately , they did not get access to the huge funds kept in the strong room which belong to the co - operation . this cash was kept at the secretariat rather than in the bank for fear of seizure by the government . now i have the funds in my possession and would need to get it invested in a viable business venture in europe . the cash in question is us $ 46 million dollars . once i can get your commitment and sincerity of investing this funds on our behalf then i would proceed to get the funds freighted to europe , where you would be required to pick it up for investment for us . you do not have anything to worry about as i would undertake all charges involved in freighting the funds to europe , and the business proposal is 100 % legal and risk free . you would be adequately compensated for all your effort once we have gotten the funds to europe . please get back to me if you can be of assistance and i would want our correspondence to be via email as most phone lines of white farmers are bugged by the government . i expect 100 % confidentiality and your prompt response to this mail so as to proceed . you may also reach me on stanleywoodwork @ email . com kind regards , stanley woodwork .",1 +"Subject: 6 . 50 % annuity w / 4 . 05 % lifetime bailout 10 % penalty - free withdrawals rated a ( excellent ) by a . m . best ( for financial strength ) 10 year surrender charge call today for more information on the loyal integritysm vision 10 annuity ! or please fill out the form below for more information name : e - mail : phone : city : state : * the contract ' s base interest rate must fall more than 45 basis points below the initial base interest rate ( effective 9 / 3 / 02 ) before the bailout provision may be exercised . this feature is subject to change on future contracts . * * rates effective 9 / 3 / 02 and are subject to change at any time ; first - year interest includes 4 . 50 % base interest rate and 2 . 00 % additional first - year interest . * * * ages 0 - 80 ; ages 81 - 90 : 7 % commission . loyal integrity ( sm ) vision 10 annuity issued by loyal american life insurance company ( sm ) , contract forms pcqxao 2 nw 4 and pcbxao 2 nw 4 . certain limitations and exclusions apply . product not available in all states . this information is for agent use only and is not intended for consumer distribution . lac 2020269 we don ' t want anyone to receive our mailings who does not wish to . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout legal notice ",1 +"Subject: online notification : your money is ready dear applicant , after further review upon receiving your application your current mortgage qualifies for a 3 % lower rate . your new monthly payment will be as low as $ 340 / month for a $ 200 , 000 loan . please confirm your information in order for us to finalize your loan , or you may also apply for a new one . complete the final steps by visiting our 60 second form we look foward to working with you . thank you , christine larson , account manager belico and associates , llc . - - - - - - - - - - - - - - - - - - - - - - - not interested - http : / / www . morntix - star . net / r . php ",1 +"Subject: - - > direct marketing will increase sales 23875 there is no stumbling on to it ! the greatest way of marketing this century is undoubtedly direct e - mail . it ' s similar to the postman delivering a letter to your mailbox . the ability to promote your product , service , website , or mlm / network marketing opportunity to millions instantly is what advertisers have been dreaming of for over 100 years . we e - mail your promotion to a list of our general / business addresses . the greatest part is , it ' s completely affordable . e - mail marketing is the answer ! how do we know ? we know because that ' s exactly what we do . it ' s a proven fact that you can attract new business through our direct e - mail marketing . the profits that e - mail advertising generate are amazing ! we are living proof . we are a direct e - mail internet advertising company and our clients pay us thousands of dollars a week to e - mail their products and services . standard pricing and procedures extracting : our list of general internet addresses are actually extracted from the most popular web sites on the internet . the addresses are verified and run through our purification process . the process includes addresses run against our custom remove filter of 2 , 492 keywords , as well as through our 192 mb remove / flamer list . the edu , org , gov , mil , and us domains are removed , as well as other domains that asked not to receive e - mail . evaluation : $ 350 . 00 ( optional ) one of our marketing specialists will evaluate your sales letter , and offer his / her expertise on how to make it the most successful . standard pricing : ( emails delivered ) 1 million - $ 700 . 00 per 2 - 3 million - $ 600 . 00 per 4 million - $ 500 . 00 per 5 million & up - $ 400 . 00 per special limited time offer ! this introductory offer of $ 300 . 00 includes : 1 . set - up fee 2 . evaluation of sales letter 3 . 500 , 000 e - mails delivered payment policy : all services must be paid in full prior to delivery of advertisement . notice : absolutely no threatening or questionable materials . if you are serious about direct > > email > > marketing > > - - send the following to { fax } 1 ( 602 ) 392 - 8288 please fill this form out completely ! contact name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ business name : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ # years in business : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ business type : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ city : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ state : _ _ _ _ _ _ zip : _ _ _ _ _ _ _ _ _ _ _ _ _ _ country : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ email address : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ phone : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ fax : _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > > > > - > to get out of our email database send an email to publicservicel @ btamail . net . cn",1 +"Subject: live 20 years longer with hgh hello , [ ! to ! ] human growth hormone therapy lose weight while building lean muscle massand reversing the ravages of aging all at once . remarkable discoveries about human growth hormones ( hgh ) are changing the way we think about aging and weight loss . lose weightbuild muscle tonereverse aging increased libidoduration of penile erectionhealthier bones improved memoryimproved skinnew hair growthwrinkle disappearance visit our web site and learn the facts : click here or here you are receiving this email as a subscr - in amerig lisve yoursts , just click here http : / / xent . com / mailman / listinfo / fork",1 +"Subject: professional logo for you now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visual imaqe of your company by creatinq an outstandinq iogo , presentabie stationery items and professionai website . these marketing tools wili siqnificantiy contributeto success of your business . take a iook at our work samples , hot deai packages and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: partnership for raising awareness hello , my name is shane lamotte and i ' m in the new rock band living illusion . how are you ? i ' m emailing you to see if it ' s a possibility for living illusion to work with you . i ' m currently looking for unique partnerships to help raise awareness of my band and our music . if you want to check out my band and listen to some tunes go to : http : / / www . livingillusion . com / please email me back and let me know if you ' re interested in finding some way that we can help support each other in a win / win way . thanks , shane lamotte www . livingillusion . com ps also if your interested in exchanging links between my website and yours just let me know and we ' ll make it happen : )",1 +"Subject: "" content - type : text / plain ; charset = "" us - ascii "" ; format = flowed content - transfer - encoding : 7 bit subject : [ sa ] drive everywhere sender : spamassassin - sightings - admin @ example . sourceforge . net errors - to : spamassassin - sightings - admin @ example . sourceforge . net x - beenthere : spamassassin - sightings @ example . sourceforge . net x - mailman - version : 2 . 0 . 9 - sf . net precedence : bulk list - help : list - post : list - subscribe : , list - id : list - unsubscribe : , list - archive : x - original - date : mon , 10 jun 2002 09 : 36 : 57 + 0900 date : mon , 10 jun 2002 09 : 36 : 57 + 0900 international driver ' s license need a new driver ' s license ? too many points or other trouble ? want a license that can never be suspended or revoked ? want an id for nightclubs or hotel check - in ? avoid tickets , fines , and mandatory driver ' s education . protect your privacy , and hide your identity . the united nations gave you the privilege to drive freely throughout the world ! ( convention on international road traffic of september 19 , 1949 & world court decision , the hague , netherlands , january 21 , 1958 ) take advantage of your rights . order a valid international driver ' s license that can never be suspended or revoked . confidentiality assured . call now ! ! ! 1 - 770 - 908 - 3949 we await your call seven days a week , 24 hours a day , including sundays and holidays . spel don ' t miss the 2002 sprint pcs application developer ' s conference august 25 - 28 in las vegas - http : / / devcon . sprintpcs . com / adp / index . cfm ? source = osdntextlink spamassassin - sightings mailing list ",1 +"Subject: greetings from u . a . e hello my dear , before i introduce myself , i wish to inform you that this letter is not a hoax mail and i urge you to treat it serious . i am director of procurement department at the ministry of petroleum and mineral resources , here in the united arab emirates . i obtained your email while searching for a reliable person , who could assist me in receiving transfer of a supposed contract awarded funds . this fund came as a result of over estimated contract awarded sums executed by foreign contractors in the petroleum ministry . this fund has been approved for payment to the contractor by the concerned ministry . the contracts had been executed and commissioned . what i am about to receive now , is the over estimated funds which the contractor whom i helped during the process of obtaining the contracts added to his estimation for my own interest . this is a normal deal that goes in my ministry by top officials . on our part , all modalities have been worked out in ensuring a smooth conclusion of the transfer to your account within the next few days . all i want from you is to receive this funds on my behalf , because as government official i cannot collect the funds directly from the contractor , neither i am allowed by law to operate / run foreign bank accounts . if you are trustworthy and can assist me in receiving the fund , do not hesitate to respond back to me immediately . please note that there is no risk involved in receiving the funds in your account for and it will be done through wire transfer . i wish you to state in percentage what you shall have for the use of your account . as soon as you indicate your interest , further details and the amount involved shall be given to you once i hear from you . please , treat with utmost confidentiality . looking forward to hearing from you soonest . best regards , engr . kaballa abdalla . ministry of petroleum and ministry resources . united arab emirates .",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . loqodentity offers creative custom design of loqos , stationery and web - sites . under our careful hand these powerfui marketinq toois wili brinq a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . click here to see the sampies of our artwork , check our prices and hot offers",1 +"Subject: i was on your xango web site hello xango distributor , my name is jonathan roberts and i represent peak impact lead generation systems . i visited your web site and saw that you are a distributor for xango and i would like to introduce my business to you . i am a lead expert for peak impact inc , and we specialize in lead generation for home based business opportunities . we generate real time national , local area code , and gender based leads . we also specialize in custom marketing campaigns as well . in fact we have thousands of xango customers who are buildinga lot at phenomenal growth rates using our leads . truth be told there are alot of companies that claim to have responsive leads . the fact of the matter is that the majority of the lead companies you see do not generate their own leads . they are resellers that resell the same call list up to six times or more . we at peak impact are lead generators and we generate the very best leads on the internet guaranteed ! we use very specific marketing campaigns to generate our leads which guarantees that they arefresh and in real time not , from a call list . in fact we are one of the very few companies out there that can provide a true real time local area code lead . also as a customer you will receive your very own exclusive back office with your own login and password . no other lead company has this system . within your back office you will be able to determine how many leads you want to receive daily . you can also start lead co - ops with your downline , * and pause and unpause orders . * ( this feature virtually guarantees that your leads will only be seconds old . ) in addition we have many other features in the back office that makes us the most user friendly lead generator on the internet . so if your ready to order go towww . rocketleads . com . there you will find pricing information and testimonials . if you have any questions or concerns you can contact me by phone or email . your certified lead expert , jonathan robertswww . rocketleads . coml - 888 - 41 - leads ( 888 - 415 - 3237 ) ext . 703 ( 9 - 5 : 30 pm est . ) 1 - 800 - 663 - 0311 ( 24 hours ) jon @ peakimpact . com",1 +"Subject: get the best rate on a home loan ! if you would like to be removed from future mailings , please reply with the word remove in the subject or call 888 - 418 - 2575 . let lenders compete for your business ! click here cash back refinances no equity 2 nd trust deeds debt consolidation no income verification the most competitive interest rates ! fill in our quick pre - qualification form and you will get competing loan offers , often within minutes from up to three lenders ! click here there is never any fee to consumers for using this service . copyright ?ffffa 9 1999 , 2000 eworld marketing , inc . 888 - 418 - 2575 this is not a solicitation or offer to lend money . eworld marketing is not a lender , broker or other financial intermediary . we are a marketing company that provides services to the mortgage industry . ",1 +"Subject: what is emc stock to cash ? your client receives 90 % of their stock portfolio up front and in cash you invest this money in either an annuity , life policy . . . or both if the portfolio decreases in value , your clients ' investment remains intact if the portfolio increases in value , your clients receive the upside appreciation reduces capital gains and estate taxes s 2 c allows you to wrap your favorite fixed annuities around your clients ' existing stock portfolios , combining the safety features of tax - deferred annuities with the high growth potential of the nation ' s leading stock indices . annuities can also be used to fund fixed life insurance policies . call tim armstrong or e - mail us today ! please fill out the form below for more information name : e - mail : phone : city : state : we don ' t want anybody to receive our mailing who does not wish to receive them . this is a professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: are you listed in major search engines ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it wiil be invisible virtualiy , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visibie in places where peopie search for information , i . e . submit your website in multiple search enqines . submit your website online and watch visitors stream to your e - business . best reqards , edweber _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: deal with your medication now hello , i ' m carl mayo . here ' s a question for you : do you satisfied with your sexual performance ? get over your erectile problams now click now and get more power http : / / medsrealcheap . com / ? cid = vtxto 2 thank you alicia honeycutt phone : 211 - 144 - 2273 mobile : 188 - 881 - 1697 email : cylunj @ bonet . net e , n ^ o - u _ g . h http : / / medsrealcheap . com / emover . php",1 +"Subject: ! gorgeous , custom websites - $ 399 complete ! ( 4156 cumg 9 - 855 yqkc 5 @ 17 ) beautiful custom websites , $ 399 complete ! get a beautiful , 100 % custom web site ( or yours redesigned ) for only $ 399 ! * we have references coast to coastand will give you plenty of sites to view ! includes up to 7 pages ( you can add more ) , java rollover buttons , feedback forms , more . it will be constructed to your taste and specifications , we do not use templates . our sites are completely custom . * must host with us @ $ 19 . 95 / mo ( 100 megs , 20 email accounts , control panel , front page , graphical statistics , more ) . for sites to view , complete below or call our message center at 321 - 726 - 2209 ( 24 hours ) . your call will be returned promptly . note : if you are using a web based email program ( such as yahoo , hotmail , etc . ) the form below will not work . instead of using the form , click here ( you must include your name , phone and state to get a response , no exceptions . name : phone w / ac * : state : type project : new site : redesign current site ? : comments : your information is neither sold nor shared with third parties under any circumstance . to be eliminated from future mailings , click here [ 6560 icum 3 - 199 gyqk 9350 cvph 2 - 701 z @ 29 ]",1 +"Subject: secretly record all internet activity on any computer . . . taf find out who they are chatting / e - mailing with all those hours ! is your spouse cheating online ? are your kids talking to dangerous people on instant messenger ? find out now ! - with big brother instant software download . click on this link now to see actual screenshots and to order ! to be excluded from future contacts please visit : http : / / 213 . 139 . 76 . 69 / php / remove . php bacalau",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishing software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter lx $ 80 adobe iliustrator cs $ 80 adobe indesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cool 3 d production studio 1 . 0 . 1 $ 90 aiias motion builder 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , breanne ",1 +"Subject: 6 steps to a no fear portfolio - 50 % roi per trade if you are averaging more than 50 % r . o . i . per trade . . . if your annual returns are well over 300 % . . . if you know how to profit in any market condition . . . if you know how to convert losing trades into winning trades . . . then you don ' t need our free online seminar . however , if you want to thrive and not just survive in today ' s market , register for our free online seminar . to see if you qualify for this free online seminar , click here : do you know how to insure your stocks from loss ? you insure your home , why not insure your stock portfolio ? learn how smart investors take advantage of these easy strategies and techniques to insure their trades from loss . it ' s no secret , you just need to learn how to do it . profit in any market condition smart investors know how to profit when the market goes up , down or stays stagnant . now is your chance to learn the secrets of successful traders . in this powerful one hour online seminar you will learn how to choose the right stock at the right time , you ' ll learn brilliant strategies and tools for techncial analysis and research . now you can learn how our students prosper when stocks drop or take unexpected turns . in fact , our students average over 50 % roi per trade with annual returns of well over 300 % . it ' s your turn . simply register for our free online seminar to discover the secrets of smart traders . register for our free online seminar and learn the following : what is your market mindset ? was the 2000 - 2002 market a disaster , a correction , or a market opportunity ? how do you profit from a volatile market ? how do you use options to hedge risk ? how do you insure your trades ? how do you profit when a stock goes up , down or sideways ? how do you adjust a trade that is going against you directional trading is fine on a good day , but what do you know about spread trading for any kind of day ? how do you implement a no fear / no risk trading system ? how do i get help as i go through this process ? to see if you qualify for this free online seminar , click here : meet the founder of the company - talk to the people who created the system in this free live online seminar , you ' ll meet the founder of the company , chat with current students and be able to ask questions and get answers . it ' s important to get your financial information from people who have their own money at risk . meet greg jensen , cofounder of spread trade systems . results are really all that matters . see what our current students have to say : i have also created a very elaborate spreadsheet where i am tracking my activities . i keep one page which tracks my trading history . this is only for trades which have completed from start to finish . to date , i have completed 19 trades for an overall profit of $ 15 , 925 . 00 , at an average 77 percent roi . i also have several other trades that are active , one of which has already doubled in value , at which time i sold half of the options in that trade and paid for the trade . it is now a ' free ' trade . i also have a worksheet which tracks my overall present position in all of my trades . this one ignores the cost of the underlying stocks , for instance , in my collar trades , but is rather a measure of cashflow . my current ytd total is over $ 33 k . . . - bob hendricks ( july 2004 ) i have been trading since october of 2002 . i started with $ 14 , 000 and within 1 year my portfolio is worth over $ 180 , 000 . spread trade strategies are simple and easy to understand . i was about to give up on the stock market , but thanks to this program i have learned how to apply spread trade strategies successfully . it is great that these strategies can be used with very little money but can grow quickly without the fear of losing your entire investment . - ruben p . ( 2003 , to date has a portfolio valued over 400 k ) keeping a close eye on netflix over the last couple of months i sold long term short puts out of the money when the stock indicated oversold conditions . as the stock bounced back and showed over bought signals i offloaded the puts and sold calls against my stock . last month netflix options alone made me over $ 3 , 000 . opening up the wealthbuilder a few weeks ago i saw a recommendation for a call calendar . at the time i wanted to enter a credit trade instead of a debit trade and entered a bear call based on technical indicators . all options expired worthless and i pocketed the entire credit . this month i placed some covered calls and bull puts on taser as it rocketed up . i closed all positions after 10 days with a $ 1500 profit . many companies proudly advertise big percentage gains . many times i ' ve asked those companies if those big gains hide big losses - all with the exception of sts was hiding big losing trades . my record this year is 14 out of the 18 stocks i ' ve traded have made money . it ' s not the 49 out of 50 that fasi and greg get but with each month i refine my system and keep closing the gap . the education sts provides is invaluable . without it my approach would have been that of a gambler . with it my approach is systematic and disciplined and consistently profitable . - gareth ( july 2004 ) nofearinvesting 150 clovis ave . , ste . 101 clovis , ca 93612 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: unbelievable new homes for the usa ! it ' s a beautiful day today homeowner you have been pre - approved for a $ 431 , 221 home loan at a 3 . 29 fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity all we ask is that you visit our website and complete the 1 minute post approval form have a good day , shemika kelly",1 +"Subject: best mortgage rate vjd with regards to want to refinance ? fill out this quick form and immediately have mortgage companies compete for you business . you will be offered the , absolute , best refinance rates available ! your credit doesn ' t matter , don ' t even worry about past credit problems , we can refinance anyone ! let us put our expertise to work for you ! http : / / 66 . 230 . 217 . 86 or site 2 http : / / agileconcepts . com / 74205 / erase http : / / 66 . 230 . 217 . 86 / optout . htm",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . aii iisted software is avaiiable for immediate download ! no need to wait 2 - 3 week for cd delivery ! just few exampies : - norton internet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 full version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianquage ! best regards , chelsea ",1 +"Subject: national charity suffering since 9 / 11 dear friend , "" serving the tribes while sharing the culture "" . . . has been the mission for the american indian heritage foundation for the past 29 years . for many years , aihf has met the emergency requests from hundreds of tribes with food , clothing , medical supplies , emergency grants and more . our student eagle awards program inspires indian youth to aspire and our scholarship program for young indian women has meant more than just financial aid to hundrends of beautiful indian women . this worthwhile endeavor is entirely funded by very generous people like you who want to help and make a difference . we need your help now more than ever . click here to learn more . . . maybe you can help . "" may you always walk in beauty "" pale moon we appologize if this message has been an inconvenience . you may comment to our webmaster .",1 +"Subject: better sex ! better relationship ! a sex revival with low - priced viagra . summertime , and the living is easy . judgement of beauty can err , what with the wine and the dark . within every adversity is an equal or greater opportunity .",1 +"Subject: earn high commissions for booking online northstar travel media , llc and mailpound . com , a division of smart travel technologies , inc . provide travel professionals with information , services and marketing solutions attention : travel agents , outside agents , independent agents , corporate travel agents : ( click for more information ) mailpound is a trademark of smart travel technologies , inc . if you do not want to receive these messages in the future , please click here . please do not reply to this email . for questions or comments on this offer , please contact the supplier . for all other inquiries , please email us at support @ mailpound . com . http : / / xent . com / mailman / listinfo / fork",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professionai $ 150 adobe premiere pro 1 . 5 $ 90 corei desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter lx $ 80 adobe illustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 aiias motion builder 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , beatrice ",1 +"Subject: business partnership ( urgent / confidential ) mr . vincent nnaji , standard trust bank ltd , lagos , nigeria . dear sir , i am mr . vincent nnaji , bank manager of standard trust bank , lagos , nigeria . i have urgent and very confidential business proposition for you . on january 6 , 1998 a foreign oil consultant foreign contractor with the nigerian national petroleum corporation mr . james herbert made a numbered time fixed deposit for twelve calendar months valued at us $ 20 m ( twenty million united states dollars ) in my branch . upon maturity i sent a routine notification to his forwarding address but got no reply . after a month we sent a reminder and finally we discovered from his contract employers the nigerian national petroleum corporation that mr . james herbert died from an automobile accident . on further investigation , i found out that he died without making a will and all attempts to trace his next of kin was fruitless . i therefore made further investigation and discovered that mr . james herbert did not declare any next of kin or relations in all his official documents including his bank deposit paperwork in my bank . this sum of us $ 20 m has carefully been moved out of my bank to a security company for safe - keeping . no one will ever come forward to claim it . according to nigerian law at the expiration of 5 years the money will revert to the ownership of the nigerian government if nobody applies to claim the fund . consequently my proposal is that i will like you as a foreigner to stand in as the owner of the money i deposited it in a security company in two trunk boxes though the security company does not know the contents of the boxes as i tagged them to be photographic materials for export i am writing you because i as a public servant i cannot operate a foreign account or have an account that is more than $ 1 m . i want to present you as the owner of the boxes in the security company so you can be able to claim them with the help of my attorney . all these are to make sure that the fruits of this old man ' s labour will not get into the hands of some corrupt government officials . this is simple . i will like you to provide immediately your full names and address so that the attorney will prepare the necessary documents which will put you in place as the owner of the boxes . the money will be shared in the ratio of 70 % for me and 25 % for you and 5 % will take care of all expenses . there is no risk at all as all the paperwork for this transaction will be done by the attorney and this will guarantee the successful execution of this transaction . if you are interested , please reply immediately via my private email address . upon your response i shall then provide you with more details and relevant documents that will help you understand the transaction . please observe with utmost confidentiality and be rest assured that this transaction would be most profitable for both of us because i shall require your assistance to invest my share in your country . awaiting your urgent reply via my private email to indicate your interest . thanks and regards , mr . vincent nnaji .",1 +"Subject: 100 % free hardcore megasite ! ! 100 % free porn ! what more can you ask for ? click here removal instructions : we strive to never send unsolicited mail . however , if you ' d rather not receive future e - mails from us , click here to send email and add the word remove in the subject line . please allow 48 hours for processing . [ ( ^ ( pol : kj ) _ 8 j 7 bjk 9 ^ "" : } h & * tgobk 5 nkiys 5 ] - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: refinance or mortgagefkzqeljhyno what a loan from lenderscan do for you : rates have never been lower ! ! lowest rates - best possible termsdebt this . . . your $ 8 , 750 $ 175 visa $ 10 , 500 $ 210 discover $ 5 , 250 $ 105 auto loan $ 20 , 500 $ 515 total $ 45 , 000 $ 1 , 005 into this ! ! ! $ 45 , 000 $ 390 . 06 annual savings : $ 7 , 379 . 005 - year savings : $ 36 , 896 . 00 opay off high interest credit cardsoreduce monthly paymentshome improvementopaint , landscape , carpet , add rooms / pool / spaoyou may be eligible for a tax deductionhome refinancingoreduce your monthly payments and get cash back ! oget up to 125 % of your homes value ( ratios vary by state ) . we have hundreds of loan programs , including : purchase loansrefinancedebt consolidationhome improvementsecond sno income verificationno matter which of our 50 states you live in , welikely have a program that could meet your needs ! please click hereone of our experienced loan officers will contact you for more details concerning your needs . want to be purged ? just go hereand we will promptly extract you . copyright dti inc .",1 +"Subject: best prizes of online cigarettes here a fair is impartation pianist but resumption what indisposition , sickle not ayers . when growl boom , napoleonic snuffer is not ketchup colza but a canst coalesce andersen arises bertha cohort in chemic , grammar and dixon . would you ceruleancrank ? no , maggot emitted teresa is bison a behave and teardrop noontime . if not , here - http : / / cmzcqj 4 euuivo 02 . 123 cigs 4 lessl . com / rm ",1 +"Subject: you can gain from lowest interest rates in 30 years certain chances only come around every few decades or so . this is one . why you ask ? because home loan rates are headed up . have you locked in the lowest rate , in almost thirty years , for your present home loan ? rates haven ' t been this low in a long time . they may well never be this low again . this is your chance to secure a better future . you could literally save enough money to buy that new car you ' ve been wanting or to take that special vacation . why wouldn ' t you jump at this chance ? there ' s no need for you to continue to pay more than is necessary or to continue not having the things your family wants and needs . we ' re a nationwide mortgage lender . we ' re not a broker . and we can guarantee you the best rate and the best deal possible for you . but only if you take action today . there is no fee or charge of any kind to see if we can help you get more of the things you want , desire and need from your current pay . you can easily determine if we can help you in just a few short minutes . we only provide information in terms so simple that anyone can understand them . you won ' t need to be a lawyer to see the savings , this we promise . we offer both first and second home loans and we will be happy to show you why your current loan is the best for you . or why you should replace it . and once again , there ' s no risk for you . none at all . take a couple of minutes and use the link below that works for you . for a couple of minutes of your time , we can show you how to get more for yourself and your loved ones . don ' t lose this chance . please take action now . click _ here sincerely , james w . minick mortbanc , inc . your favorite stores , helpful shopping tools and great gift ideas . experience the convenience of buying online with shop @ netscape ! http : / / shopnow . netscape . com / get your own free , personal netscape mail account today at http : / / webmail . netscape . com /",1 +"Subject: your june stats it ' s absolutely true . you will get emails like this very soon . quickly , send me an email and you will get real com . miss . ion emails with this subject line and a big , big comm _ ission pa . yments from all the bus _ inesses you pro _ mote . to pro . ve it , for a limit / ed per _ iod i will give . you 10 sign _ ups ( that will p . a . y . to j . o . i . n . your bus . in . ess ) and i will not ask you for a sin . gle cent / penny to get you star - ted . use these to gen _ erate an in . stant in . com _ e . only the first 10 replies get 10 paid _ signups . then sitback & watch the _ sign _ ups join _ you inst _ antly in their droves and without you having to do much _ at all . at the end of march you will get comm _ ission state _ ments showing that you have ear . ned tens _ of thou _ s _ ands of doll _ ars from your existing bus . . iness . oppo . rtun . it . ies . miss . this and def _ in . it . ely missout on the ea - sie . st and fas . test mo . ney that you will ever ma . ke from your bu . sin _ ess opp . or - tuni . ty email me on earnbigmoney @ tiscali . co . uk please put "" yes "" in the subject line . good luck gavin if i have breached your privacy please delete yourself off my list by sending an email to earnbigmoney @ tiscali . co . uk with "" d "" in the subject line .",1 +"Subject: [ ilug ] wilson kamela attn : sir / madan strictly confidential . i am pleased to introduce myself to you . my name is mr . wilson kamela a native of south africa and a senior employee of mines and natural resources department currently on a trainning course in holland for few months . i am writing this letter to request your assistance in order to redeem an investment with the south african mining corporation . the said investment , now valued at ( $ 15 . 5 million dollars ) fifteen million , five hundred thousand dollars only was purchased by lucio harper and contracted out to the south african mining corporation in 1977 now recognised as mines and natural resources department . this redeemable investment interest , has now matured since march last year . since march last year , several attempts have been made to contact lucio harper without success and there is no way to contact any of his close relatives in whose favour the investment cash value can be paid . since we have access to all lucio harper ' s information , we can claim this money with the help of my partners with the south african mines and natural resources department . all we have to do is to file claim using you as lucio harper ' s relative . i will like to assure you that there is absolutely nothing to worry about , because it is perfectly safe with no risk involved . please ensure to keep this matter strictly confidential . my partner will file a claim for this money on your behalf from the southafrican mining corporation . when the claim is approved , you as the beneficiary will be paid ( 25 % ) of the total amouth . since this money can be paid directly into any bank account of your choice , you have responsibility to ensure that my partner and ireceive ( 70 % ) of the total amouth . while the balance ( 5 % ) will be set aside for any unforseen expenses in the cause of transfering this money . i will appreciate if you can give your assurance and guarantee that our share will be well secured . please for the sake of confidentiality , reach me on my e - mail address : wilsonkamela 3000 @ mail . com . please let me know if this proposal is acceptable to you . kindly reach me immediately with any of the stated contact addresses so that better clearifications relating to the transaction will be explained to you . truly yours , wilson kamela . - - irish linux users ' group : ilug @ linux . ie http : / / www . linux . ie / mailman / listinfo / ilug for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: some of the largest membership sites for free get porn for free free password to : 18 asian huge tits xxx free amateur hotties free teen hotties free and kinky free farm sluts free n ' famous adults only diligent ",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : stcelebrate 2002 @ aol . com ( ultimately generated from info @ something - to - celebrate . com ) smtp error from remote mailer after end of data : host mailin - 01 . mx . aol . com [ 64 . 12 . 137 . 89 ] : 554 - : ( hvu : bl ) http : / / postmaster . info . aol . com / errors / 554 hvubl . html 554 transaction failed - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 218 . 23 . 38 . 202 ] ( helo = mailwisconsin . com ) by discostu . angelsonoccasion . com with smtp ( exim 4 . 43 ) id ldupmn - 0001 st - jh for info @ something - to - celebrate . com ; tue , 19 jul 2005 06 : 57 : 18 - 0400 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24817172 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ something - to - celebrate . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: rreally works very good hello , welcome to pharmonli thyroid ne s newtonian hop - one of the leading oniine campaign pharmaceutical shops malnutrition v dimply g a unfold l l withdraw l unarmed la r spatio a cupboard cl i decision sv osierbed a classic um andmanyother . - save o operatic ver 50 % - worldwide sh retaliate lpplng - total conf impromptu identiaiity - over 5 miiiion cust unworn omers in 130 countries puffin have a nice day !",1 +"Subject: glad i madde the move hello , welcome to phar coolie monline sho disrespectful p - one yellowish of the leading oniine pharmaceutical shops labiate v corrective g a prostration l l opposed l l molecular a encephalitis ra maillot cl i stockjobbery sv mythicize a analects um andmanyother . - s welding ave over 50 % - worldwide sh resistance lpplng - total confidentiaii purchasingpower ty - over 5 miiiion customers in 130 countri canonization es have a nice day calumniatory !",1 +"Subject: a quick , cheap and convenient way to buy viagra we are the only online pharmacy offering 100 % satisfaction money back guarantee ? by perseverance the snail reached the ark . i think we agree , the past is over . true philosophy invents nothing ; it merely establishes and describes what is .",1 +"Subject: do you smoke ? qrklx lookln 4 affordabowl cigarettez ? come chick it out here ! is mclaughlin that skylarkchamfer or citron maybe fully minstrelsy ? i dill don ' t v continuum not decoy a binghamton spring . if upsetting crunch then reimove : ",1 +"Subject: logo , corporate identity and website design corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your loqo , business stationery or website done riqht now ! fast turnaround : you will see severai logo variants in three business days . satisfaction guaranteed : we provide unlimited amount of changes ; you can be sure : it wiii meet your needs and fit your business . fiexibie discounts : ioqo improvement , additionai formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: well , trry it hello , welcome to pharmon wallow line s dilative hop - on extensible e of the leading oniine pharmaceutical shops greasy v marauder g unabridged al chromolithograph ll acknowledgement la r repealer ac octane l i extrusion s quaint va u pollination m andmanyother . - s nucleate ave over 50 % - worldwide shlp rocket plng - total confiden screechy tiaiity - over 5 miiiion permafrost customers in 130 countries have a backfiller nice day !",1 +"Subject: luv our rolexes for the same fea - tures and lovvprices . they are definitely the finest from rolexes , cartiers , bvlgaries , frankmullers , harry winstons , breguets , jaeger - lecoultre , brietilings , tagheuers and tudors . first of all , their overall lo 0 ks are perfect . secondly , vievv their details . every small logo and serial number shown speak for their elegance . you will also flnd out how ccheap our lovely goodss are . you might even vvant 2 or 3 vvatches for your collections . waterproof , stainlessteelbody , sapphire crystal surface and other lovely featuress bring you sheer feeling for luxury . our vvatches are reallydurable cause the manufacturers use the bestquality substances like durable stainlesssteel and anti - scratching surface . the vvatches sold at our cybersstore have energy - modules like battery & quartz , anto - operating & winding , winding and non - winding ones . the classics have hack mechanism with stainlesssteelback . we have them . their when you promised to go . "" "" no , i did not promise . i only smirked and bowed , and said the word late confidences wer e really too wicked for their pea ` bite your tongue ! ' said princess miaghkaia suddenly . ` karenina is a splendid woman . i don ' t like her husband - but her i like very much . ' to the window to recollect himself , and feel how he ought to behave . ce of mind , some weath 1 erbeaten ragged old rooks ' - nests , 7 burdening their hi gher branch",1 +"Subject: we are need you tjuz s cif mercy advertising group presents for your attention : they need your help ! the act of terrorism in london on july , 7 2005 took the lives of many innocent people . it was directed not against one nation , but against all the nations . its up to you to help the injured and the families who lost their relatives in this tragedy . to help click here if you dont want to receive our advertising letters any more , click here ",1 +"Subject: healthy reproductive life our customer speak volumes about our spur m product "" i just wanted to write and thank you for spur - m . i suffered from poor sperm count and motility . i found your site and ordered spur - m fertility blend for men . i have wondered for years what caused low semen and sperm count , and how i could improve my fertility and help my wife conceive . spur - m seems to have done just that ! thank you for your support . "" andrew h . , london , uk "" spur - m really does help improve fertility and effectiveness of sperm and semen motility . i used it for the past few months , and not only does it work - i also feel better to . i have more energy . this is an excellent counter to low sperm count and motility . i ' ll be buying more ! ! ! "" franz k . , bonn , germany http : / / rosemary . chorally . com / spur / ? sheep for removing , pls go here http : / / mcclure . chorally . com / rm . php",1 +"Subject: important announcement : your application was approved we tried to contact you last week about refinancing your home at a lower rate . i would like to inform you know that you have been pre - approved . here are the results : * account id : [ 987 - 528 ] * negotiable amount : $ 153 , 367 to $ 690 , 043 * rate : 3 . 70 % - 5 . 68 % please fill out this quick form and we will have a broker contact you as soon as possible . regards , shannon serrano senior account manager lyell national lenders , llc . database deletion : www . lend - bloxz . com / r . php ",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , alvaro ",1 +"Subject: you will receive the best prices available on viagra online if your sex life is good . . . then make it fantastic ! the covers of this book are too far apart . real freedom lies in wildness , not in civilization . with the gift of listening comes the gift of healing .",1 +"Subject: otc gdvi - the momentum continues - gdvi website debute otc bbalert gdvi news update : global diversified industries debutes brand new website ! www . gdvi . net otc bb alert spectacular operating results momentum continues sales projections for next 12 months surpasses $ 20 million 99 . 8 % revenue increase 278 % net income increase 154 % stockholders equity increase 79 % increase in assets $ 8 million order backlog $ 50 million manufacturing capacity overview global diversified industries operates in the modular building construction industry , and strategically targets the california education sector . gdvi is strategically located in central california on 16 acres with a 100 , 000 square foot state - of - the - art manufacturing facility . throughout 2003 and 2004 the company focused on building its infrastructure through acquisitions , development of a state - of - the - art manufacturing facility , and by securing the requisite financing facilities to fuel business growth . through the combination of its new facility ( $ 50 million capacity ) , the increased demand for portable buildings and the state of california ' s bond approvals , gdvi has become well positioned to become one of the dominant leaders in modular manufacturing on the west coast . gdvi should benefit greatly from the $ 12 . 1 billion school improvement bond that is expected to be passed by california voters next month ( march ) . this presents , in our opinion an opportunity for early investors of gdvi to also benefit before the mainstream investor realizes who the benefactors are and subsequently invests in those companies . global diversified has taken numerous strategic development steps throughout 2003 and 2004 , including generating strong revenues as well as profits and is now poised for explosive growth in 2005 . the company is led by a strong management team with previous success in building companies into $ 50 million per annum businesses . in the past year gdvi has exceeded its own sales revenue projections , renewed its piggyback contract , received state approvals on engineered product designs , started a new credit facility and opened its new 100 , 000 square foot manufacturing facility . the company will continue to seek new acquisition candidates through its aggressive growth plan . profile gdvi is a holding company that currently operates two wholly owned subsidiaries , mbs construction inc . , a modular contractor specializing in modular construction site work and renovation and global modular , inc . , a sales , marketing and manufacturing of modular type structures . its principal customer base is currently educational ( public and private schools , universities , etc . ) , child - care and municipality sectors . its product lines consist of a variety of portable classroom designs , including both single - story and two - story floor plans . global modular ' s portable classroom structures are engineered and constructed in accordance with pre - approved building plans , commonly referred to as p . c . ' s or pre - checked plans , that conform to structural and seismic safety specifications administered by the california department of state architects ( dsa ) . global modular also enjoys the benefit of providing educational customers with products contracted under a piggyback clause . the state of california allows school districts to canvass proposals from modular classroom vendors under a bidding process where the successful bidder can provide other public school districts and municipalities portable classrooms under a piggyback contract issued by the originating school district . this process saves school districts valuable time and resources from the necessity of soliciting bids . a modular vendor who possesses a piggyback contract containing competitive pricing and a variety of design options may have access to future business for up to five years , depending on the term of the piggyback contract . the strategic focus on california schools since 1998 , california legislation has required that at least 20 % of all new classrooms constructed with state funds be portable structures . there are five compelling reasons for this trend : modular classrooms are faster to construct ( as quickly as 2 weeks ) they cost significantly less ( as low as $ 30 , 000 vs . $ 100 , 000 ) they offer greater flexibility for use compared to conventional buildings they are easier to finance they provide financing incentives to cope with population growth , the state department of education estimates that california will need more than 2 , 500 classrooms each year for the next four years , which equates to more than 10 , 000 classrooms . due to the current and projected budget cuts throughout the california education sector , public and private schools are expected to turn to portable / modular construction to fulfill their additional classroom requirements over the next four years . the california schools budget crisis on november 5 , 2002 a $ 13 . 2 billion school facilities improvements bond proposal ( proposition 47 ) was passed by california voters . this bond measure passage does not include an approximate $ 9 . 4 billion worth of local bond measures passed by various school districts throughout the state . a second bond measure worth $ 12 . 1 billion went before the voters on the march 2004 . these bond measures are about three times higher than the record $ 9 . 2 billion bond california voters approved in 1998 . the revenue generated from these bond measures will be used for school modernization programs , which include requirements for relocatable classrooms and modular classroom construction and renovations . money from the bonds will help overcrowded public and private schools ; design upgrades and expand building space at community colleges and other institutions of higher learning throughout california . gdvi business infrastructure among global modular ' s asset base is its integrated , state - of - the - art , automated manufacturing process which includes equipment , raw material and marketing collateral that are specifically designed for the high capacity fabrication of modular structures . gdvi employs a workforce of 60 employees and is looking to add to its workforce as demand increases . operates out of a sixteen acre site with a 100 , 000 square foot operating structure . wholly owned subsidiary ( global modular inc . ) markets , designs and manufactures the buildings wholly owned subsidiary ( mbs corporation ) handles installation and building renovation . symbol otc . bb gdvi recent price 13 . 5 cents management team philip hamilton , ceo and president mr . hamilton has an extensive and very successful background in modular manufacturing . from 1996 to feb 2000 he served as chairman and ceo of pacesetter industries inc . he built this company from inception into one of californias largest manufacturers , producing and installing thousands of schools and commercial buildings . under his leadership , pacesetter industries moved into a 5 , 500 , 000 sq . ft . facility in atwater , california with branch sales offices throughout the state . the company employed a staff of over 650 employees and had annual sales of $ 50 , 000 , 000 . adam de bard , vice president mr . de bard has over 6 years of experience in the manufacturing and business sectors . from 1997 to 2000 he served as vice president and chief information officer of pacesetter industries . ronald kilpatrick , director of finance mr . kilpatrick has 36 years experience in both domestic and international development and management of major corporations . he is a managing partner of pacific rim capital llc which provides venture capital to projects in the pacific rim . recent headlines global diversified industries , inc . commencing efforts to increase its u . s . based investor and public relations visibility pr newswire ( tue 5 : 00 am ) global diversified industries , inc . modular division secures new order worth more than $ 3 million for immediate delivery pr newswire ( thu , jun 9 ) wallst . net airing all - new , exclusive audio interviews with gdvi and geoi pr newswire ( tue , jun 7 ) wallst . net airing exclusive audio interviews with gdvi and xle pr newswire ( thu , jun 2 ) global diversified industries , inc . acquires valuable assets from california modular company pr newswire ( thu , may 26 ) global diversified industries , inc . modular division implementing its fourth production line pr newswire ( thu , may 19 ) talkingstocks . com announces interview with philip hamilton , president and ceo of global diversified industries , inc . primezone media network ( tue , may 17 ) stockguru . com initiates profile coverage of global diversified industries , inc . primezone media network ( mon , may 16 ) global diversified industries ' modular division billings total $ 1 . 4 million in april ; experiencing largest production schedule since company ' s founding pr newswire ( tue , may 3 ) global diversified industries , inc . modular division receives repeat order based on superior prior performance pr newswire ( wed , apr 20 ) more headlines for gdvi . ob . . . gdvi manufacturing infrastructure gdvi has created a turnkey manufacturing process with experienced professionals handling every aspect of each manufacturing project . global ' s integrated service approach provides the company with a distinct advantage over its competitors in term of efficiency and cost effectiveness . via 3 wholly owned subsidiaries , gdvi delivers the following in - house services : design , engineering and planning site preparation manufacturing and construction delivery , installation , and relocation ancillary interior and exterior services customer service and support contacts gdvi - global diversified industries inc . 1200 airport drive chowchilla , ca 93610 tel : ( 559 ) 665 5800 investor relations contact mr . paul knopick tel : ( 949 ) 707 - 5365 pknopick @ . com stock quotes http : / / finance . yahoo . com / q ? s = gdvi . ob this report is for informational purposes only , and is neither a solicitation to buy nor an offer to sell securities . investment in low - priced small and micro - cap stocks are considered extremely speculative and may result in the loss of some or all of any investment made in these companies . expedite is not a registered investment advisor or a broker - dealer . information , opinions and analysis contained herein are based on sources believed to be reliable , but no representation , expressed or implied , is made as to its accuracy , completeness or correctness . the opinions contained herein reflect our current judgment and are subject to change without notice . expedite assumes no responsibility for updating the information contained herein regardless of any change in gdvi ' s financial or operating condition . as expedite has received compensation for this report , and will benefit from any increase in share price of the advertised company , there is an inherent conflict of interest in our statements and opinions . expedite accepts no liability for any losses arising from an investor ' s reliance on , or use of , this report . gdvi will require additional capital to realize its business plan and continue as a going concern . expedite has been hired by a third party consultant , and is contracted to receive $ 5 , 000 . expedite and its affiliates or officers may buy hold or sell common shares , of mentioned companies , in the open market or in private transactions at any time without notice . certain information included herein is forward - looking within the context of the private securities litigation reform act of 1995 , including , but not limited to , statements concerning manufacturing , marketing , growth , and expansion . the words "" may , "" "" would , "" "" will , "" "" expect , "" "" estimate , "" "" anticipate , "" "" believe , "" "" intend , "" and similar expressions and variations thereof are intended to identify forward - looking statements . such forward - looking information involves important risks and uncertainties that could affect actual results and cause them to differ materially from expectations expressed herein . global diversified industries , inc . 1200 airport dr . chowchilla , ca 93610 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: information request received we are in receipt of your e - mail regarding additional information . we appreciate your patience and will be responding to you within the next 24 - 48 hours . please be advised that this is an automated e - mail response . thank you , millenium precision , inc .",1 +"Subject: major stock play amnis systems , inc . ( otcbb : amnm ) contract announcements and huge newsletter coverage this week = for = 20 amnm ! ! ! this thursday amnm will be profiled by some major newsletters . = = 20 there will be huge volume and a strong increase in price for severa = l = 20 days . these are the same newsletters that profiled clks two w = eeks = 20 ago . they brought clks from $ 1 . 50 to $ 4 . 35 in ten days . = we = 20 know for certain that the same groups are going to profile amnm sta = rting = 20 on thursday . we are very proud that we can share this information with you = so that = 20 you can make a profit out of it . it is highly advisable to ta = ke a = 20 position in amnm as soon as possible , today before the market = 20 closes , or tomorrow . the stock is trading near its 52 week low , and will start movi = ng up = 20 immediately . we believe the stock could easiely reach $ 4 in l = ess = 20 than a month . good luck and watch amnm fly this week ! ! = 09 = 09 = 09 = 09 = 09 = 09 = 09 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ incredimail - email has finally = = 20 evolved - click = 20 here ",1 +"Subject: horny ? . . stop paying for porn - 12 free passes i know you want pics of hot babes right ? i bet you want to get into the best porn sites for free too ? here ' s a secret : get into paysites free ! take a minute to read what i ' ve got to tell you , and will have full access to some of the internet ' s hottest membership sites for free . click here this costs nothing ! note : this is not a spam email . this email was sent to you because your email was entered in on a website requesting to be a registered subscriber . if you would would like to be removed from our list , click here to cancel your account and you will * never * receive another email from us ! ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactly when you want . ciails has a iot of advantaqes over viaqra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: manage your diabetes effortlessly with diabetic plus to no longer get these messages from diabetic plus inc . , please click here : unsubscribe or send a postal mail to : diabetic plus inc . 12000 biscayne blvd suite 607 north miami beach , fl . 33181 diabetic plus 12000 biscayne blvd . , ste . 509 north miami , fl 33181 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: want to make women adore you ? click here . 10 minutes before sex , lasts for 24 - 36 hours an eye for an eye makes the whole world blind . the man who runs may fight again . where there is an open mind there will always be a frontier .",1 +"Subject: the technews - bulletin , july 2005 mobile production units for developing countries - worldwide partners program sn world foundation will supply to countries and developing regions the technology and necessary support for production in series of mini - plants in mobile containers ( 40 - foot ) . the mini - plant system is designed in such a way that all the production machinery is fixed on the platform of the container , with all wiring , piping , and installation parts ; that is , they are fully equipped . . . and the mini - plant is ready for production . more than 700 portable production systems : bakeries , water purification , dehydrated food , steel nails , fruit juice preparation , tire retreading , reinforcement bar bending for construction framework , sheeting for roofing , ceilings and faades , plated drums , aluminum buckets , injected polypropylene housewares , pressed melamine items ( glasses , cups , plates , mugs , etc . ) , mufflers , construction electrically welded mesh , plastic bags and packaging , medical assistance mobile units , sanitary material , hypodermic syringes , hemostatic clamps , etc . the mini - plants of production in mobile containers is the only system in the world that can provide up to six ( 6 ) of the most essential products for basic sustenance for just one dollar ( $ 1 . 00 ) per day . sn world foundation has started a co - investment program for the installation of small assembly plants to manufacture , in series , the mini - plants of portable production on site , region or country where required . one of the most relevant features is the fact that these plants will be connected to the international trade system , with access to more than 50 million raw materials , products and services and automatic transactions for world trade . due to financial reasons , involving cost and social impact , the best solution is setting up assembly plants on the same countries and regions , using local resources ( labor , some equipment , etc . ) sn world foundation participates at 50 % ( fifty percent ) for investment of each assembly plant . if you are interested in being a partner in your country or region , you can send your cv to : sn world foundation ( click here ) worldwide partners program to : sarah mathews , program manager . if you received this in error or would like to be removed from our list , please return us indicating : remove or un - subscribe in subject field , thanks . the technews , editor 2005 the tech news . all rights reserved . ",1 +"Subject: logo , stationer , website design and so much more ! lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwhelminq ; but a good catchy logo , styllsh stationery and outstanding webslte wiii make the task much easier . we do not promise that having ordered a iogo your company wiil automaticaily become a worid leader : it isguite clear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: greatly improve your stamina my girlfriend loves the results , but she doesn ' t know what i do . she thinks it ' s natural - thomas , ca i ' ve been using your product for 4 months now . i ' ve increased my length from 2 to nearly 6 . your product has saved my sex life . - matt , fl pleasure your partner every time with a bigger , longer , stronger unit realistic gains quickly to be a stud press here so much time had been consumed at the desert oasis that he felt he must now hasten if he wished to reach home by saturday afternoon ; so , having quickly come to a decision , he turned the indicator and began a swift flight into the east address listed in above site but i am one of the greatest humbug wizards that ever lived , and you will realize this when we have all starved together and our bones are scattered over the floor of this lonely cavei don ' t believe we ' ll realize anything , when it comes to that , remarked dorothy , who had been deep in thought for several hours he traveled above the great desert of gobi , but by noon signs of a more fertile country began to appear , and , dropping to a point nearer the earth , he was able to observe closely the country of the chinese , with its crowded population and ancient but crude civilization then he came to the great wall of china and to mighty peking , above which he hovered some time , examining it curiously ",1 +"Subject: it ' s just too small hloy a man endowed with a 7 - 8 "" hammer is simply better equipped than a man with a 5 - 6 "" hammer . would you rather havemore than enough to get the job done or fall short . it ' s totally upto you . our methods are guaranteed to increase your size by 1 - 3 "" come in here and see how ",1 +"Subject: roletes e roldanas para empilhadeiras santos , julho de 2 . 005 listagem dos produtos savi linha hyster : 193557 rolete r $ 90 , 00 193557 c capa r $ 55 , 00 110520 rolete r $ 125 , 00 110520 c capa r $ 95 , 00 185530 / / 329090 rolete r $ 62 , 00 185531 / / 329091 rolete r $ 68 , 00 125223 rolete r $ 175 , 00 125217 rolete lat . r $ 115 , 00 125219 eixo r $ 35 , 00 125220 suporte r $ 225 , 00 1333395 rolete r $ 80 , 00 1333398 rolete r $ 65 , 00 1345218 rolete r $ 90 , 00 270063 eixo r $ 95 , 00 126041 ?ncora r $ 170 , 00 257853 eixo curto r $ 85 , 00 87905 rolete r $ 75 , 00 61463 roldana r $ 155 , 00 810348 engrenagem r $ 535 , 00 810810 engrenagem r $ 1 . 850 , 00 roldana hyster xl 80 r $ 145 , 00 linha clark : 342957 rolete r $ 70 , 00 2326653 rolete r $ 85 , 00 1722452 rolete r $ 165 , 00 1692062 rolete lat . r $ 190 , 00 666354 rolete lat . r $ 55 , 00 1654614 rolete r $ 90 , 00 1692093 roldana r $ 90 , 00 329488 roldana r $ 190 , 00 840929 sapata freio r $ 245 , 00 linha yale : 5088018 rolete r $ 65 , 00 7114306 rolete r $ 110 , 00 7114068 rolete r $ 110 , 00 5200368 - 37 rolete r $ 90 , 00 5200368 - 52 rolete r $ 65 , 00 743692 rolete lat r $ 50 , 00 907595300 rolete r $ 110 , 00 yale antigo 100 x 40 x 35 r $ 70 , 00 650697 - 00 rolete lat . r $ 45 , 00 650698 - 00 rolete lat . r $ 45 , 00 650699 - 00 rolete lat . r $ 45 , 00 5086233 - 00 roldana r $ 155 , 00 5104934 - 00 suporte r $ 550 , 00 roletes mitsubishi : d . ext . x d . eixo x altura 124 , 5 x 45 x 34 rolete r $ 115 , 00 115 x 45 x 35 rolete r $ 110 , 00 ( 9421000700 ) 115 , 5 x 45 x 34 rolete r $ 110 , 00 114 x 45 x 34 rolete r $ 110 , 00 ( 9421000601 ) 115 , 5 x 60 x 27 , 5 rolete r $ 110 , 00 107 , 5 x 35 x 28 rolete r $ 95 , 00 roldanas : 121 / 110 x 45 x 36 roldana r $ 120 , 00 ( 9421020500 ) 91 / 86 x 35 x 30 roldana r $ 95 , 00 118 / 103 x 35 x 30 roldana r $ 115 , 00 outros : 830065 - 181 rolete r $ 96 , 00 ( toyota ) 838089 blb rolete r $ 110 , 00 939089 b rolete r $ 105 , 00 rolete nissan 115 x 45 x 32 r $ 100 , 00 rolete nissan 115 , 5 x 45 x 32 r $ 100 , 00 rolete nissan 123 , 5 x 45 x 32 r $ 110 , 00 910946 rolete r $ 90 , 00 13317089 rolete r $ 90 , 00 0009249480 rolete r $ 145 , 00 ( linde ) 0009249481 rolete r $ 145 , 00 ( linde ) 9511003117 rolete r $ 175 , 00 ( linde ) 0009249504 rolete r $ ( linde ) 0009249505 rolete r $ ( linde ) 0009249506 rolete r $ ( linde ) empilhadeira milan 37 ton . ( pre?os sob consulta ) rolete torre milan 37 ton . rolete lat . torre milan 37 ton . polia da corrente torre milan 37 ton . polia das mang . hidr?ulico torre rolete lat . milan 37 ton . semi - eixo milan 37 ton . confeccionamos todos os cil?ndros hidr?ulicos e mais ; fabricamos sob desenho ou amostra itens tais como : roletes , roldanas , eixos , buchas , engrenagens , acoplamentos , flanges , polias , suportes e etc . . estamos desde j? no aguardo de vosso contato tel . : oxxl 3 32357817 telfax . : oxxl 3 32342055 hailson . savi @ terra . com . br obs : voc? est? recebendo este e - mail porque est? cadastrado para tal . caso voc? n?o deseje mais receber nenhum tipo de contato nosso , clique aqui , ou envie um e - mail para seuemail @ dominio . com com o assunto remover .",1 +"Subject: mega nneed offr hello , welcome to pharmonli pitfall ne sho affect p - one of the leading oniine pharmaceutical sho exsiccation ps thereout v compare g a kibble l l devisor l l navigable a r metaphysical a trousseaux cl i billow sv atomicity a coastal um andmanyother . - save ove reheat r 50 % - worldwide sh drowsy lpplng - total confidentiaiit mellifluous y - over 5 miiiion customers goneness in 130 countries have a nice da wriggle y !",1 +"Subject: get the software you need , now ! save money on buying software ! ! ! reading this book is like waiting for the first shoe to drop . free speech carries with it some freedom to listen .",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialls has a iot of advantaqes over viagra - the effect iasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohoi ! we ship to any country ! get it right now ! . ",1 +"Subject: viagra online now levitra is in the class of oral impotence medication like viagra . whatever you are , be a good one . advice is a dangerous gift , even from the wise to the wise . men in however high a station ought to fear the humble .",1 +"Subject: you don _ t know how to get into search engine results ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website online otherwise it wiil be invisibie virtuaiiy , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the oniy way to do that is to make your site visible in places where peopie search for information , i . e . submit your website in multiple search engines . submit your website online and watch visitors stream to your e - business . best regards , beatrizbass _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: peace tree designs : creating extraordinary art for ordinary items ! peace tree design creates products to enhance your daily experience by putting extraordinary art on items you use everyday . original and abstract designs of suns , moons , meteors , eyes , mandalas , and flowers on journals , mouse pads , bags , and clocks make them distinctive and you stand out . peace tree design will also create a custom design or logo for an event ( kid ' s birthday , company function , family reunion ) or for your organization . ",1 +"Subject: new impotence drug that treats male erectile dysfunction ! prescription medication for mens health and wellness . he that dies pays all debts . a contented mind is a continual feast . nothing can be pleasing which is not also becoming . sweet mercy is nobility ' s true badge .",1 +"Subject: buy cialis online ! get control of your life again ! prescriptions for female sexual disfunction just turn left at greenland . . . poetry is the language in which man explores his own amazement . horses lend us the wings we lack .",1 +"Subject: increases cardiac output and athletic performance no doctor visits required recapture your youth and feel the energy for many , this is a powerful second chance press here to read about http : / / yv . i 2 el . glowlineensured . com / xs / this common element can change the way you experience the next half of your life - - - - - original message - - - - - from : odessa [ mailto : derick @ ktracsy . com ] sent : tuesday , march 3 , 2005 5 : 42 am to : donnie ; rebbecca @ rixranxne . com ; blanche ; janelle ; kazuko subject : fully living life i am busy , no thank you , go above and use link and address is on site his surprise was great when the garment of repulsion arrested the blow and nearly overthrew the aggressor in turn . snatching a dagger from his sash , he bounded upon the boy so fiercely that the next instant the enraged turk found himself lying upon his back three yards away , while his dagger flew through the air and landed deep in the desert sands . keep it up ! cried rob , bitterly . but why destroy my friends ? asked the little wizard .",1 +"Subject: now you can diversify the acts in your bedroom ! cialis drug information : an online resource on cialis , a new fda approved impotence drug we all have strength enough to endure the misfortunes of others . blessed are those who can give without remembering , and take without forgetting . doubt is not a pleasant condition , but certainty is absurd . this hath not offended the king .",1 +"Subject: re : good day , everybody will love to get p - p - t - v and pay not a cent . so will you , check the below web address , copy it and paste in your browser . the web address is : check 4 choices . com once who don ' t like such mails , plz . add slash and ' r ' to above address . and plz . give upt 10 days . i am missing working right now . . was michael enjoying running early last month ? . get back to you later , kristi olariu",1 +"Subject: 300 million business charset = windows - 1252 "" > sick and tired of email directories that don ' t deliver what they promise ? these days it ' s almost getting to the point were you need to buy every single e - mail directory on the market and weed through them to get some decent e - mail addresses to bulk out to . well the buck stops here ! we ' ve bought almost every good directory on the market , cleaned it up and compiled all 300 million records on 3 cds for you ! plenty of targeted lists are also available in areas like : state and area code gambling dining gardening health golf home business investment opt - in web design travel . . . and many more ! check out this amazing new collection today ! get our website address now by sending a blank email to cloudhaven @ btamail . net . cn once you send an email you will receive our website url in your inbox within seconds ! ",1 +"Subject: mix , rip and burn like a pro . download realplayer plus now . advanced cd burning rip , mix and burn cds and mp 3 s faster at 320 kbps . advanced video controls customize your video experience with brightness , contrast , sharpness , and hue graphic eq create the perfect sound by adjusting for input and room size with 10 - band graphic eq . crossfade set up segues , close gaps between tracks , and mix like a pro . ",1 +"Subject: claim a free $ 25 kmart ( r ) gift card ! you are receiving this mailing because you are a member of sendgreatoffers . com and subscribed as : jm @ netnoteinc . com to unsubscribe click here or reply to this email with remove in the subject line - you must also include the body of this message to be unsubscribed . any correspondence about the products / services should be directed to the company in the ad . % em % jm @ netnoteinc . com % / em % ",1 +"Subject: [ ilug - social ] lose 22 . 5 lbs in 3 weeks ! 1 ) lose 22 . 5 lbs in 3 weeks ! flush fat away forever ! free 30 - day supply http : / / www . adclick . ws / p . cfm ? o = 423 & s = pkl 9 2 ) introducing chase platinum for students with a 0 % introductory apr http : / / www . adclick . ws / p . cfm ? o = 421 & s = pkl 9 3 ) access your pc from anywhere - download now http : / / www . adclick . ws / p . cfm ? o = 425 & s = pkl 9 have a wonderful day , prizemama - - - - - - - - - - - - - - - - - - you are receiving this email because you have opted - in to receive email from publisher : prizemama . to unsubscribe , click below : - - irish linux users ' group social events : social @ linux . ie http : / / www . linux . ie / mailman / listinfo / social for ( un ) subscription information . list maintainer : listmaster @ linux . ie",1 +"Subject: re : my pic hi sweetie , come see me and my hot girl friends school at our new web site - > http : / / picturepost . phreehost . com / mypic / come to see fast before delete this page .",1 +"Subject: delivery status notification ( failure ) this is an automatically generated delivery status notification . delivery to the following recipients failed . info @ simplythankyou . com",1 +"Subject: the best investments otc newsletter discover tomorrow ' s winners for immediate release cal - bay ( stock symbol : cbyi ) watch for analyst "" strong buy recommendations "" and several advisory newsletters picking cbyi . cbyi has filed to be traded on the otcbb , share prices historically increase when companies get listed on this larger trading exchange . cbyi is trading around 25 cents and should skyrocket to $ 2 . 66 - $ 3 . 25 a share in the near future . put cbyi on your watch list , acquire a position today . reasons to invest in cbyi a profitable company and is on track to beat all earnings estimates ! one of the fastest growing distributors in environmental safety equipment instruments . excellent management team , several exclusive contracts . impressive client list including the u . s . air force , anheuser - busch , chevron refining and mitsubishi heavy industries , ge - energy environmental research . rapidly growing industry industry revenues exceed $ 900 million , estimates indicate that there could be as much as $ 25 billion from "" smell technology "" by the end of 2003 . ! ! ! ! ! congratulations ! ! ! ! ! our last recommendation to buy orbt at $ 1 . 29 rallied and is holding steady at $ 3 . 50 ! congratulations to all our subscribers that took advantage of this recommendation . all removes honored . please allow 7 days to be removed and send all addresses to : goneforgood @ btamail . net . cn certain statements contained in this news release may be forward - looking statements within the meaning of the private securities litigation reform act of 1995 . these statements may be identified by such terms as "" expect "" , "" believe "" , "" may "" , "" will "" , and "" intend "" or similar terms . we are not a registered investment advisor or a broker dealer . this is not an offer to buy or sell securities . no recommendation that the securities of the companies profiled should be purchased , sold or held by individuals or entities that learn of the profiled companies . we were paid $ 27 , 000 in cash by a third party to publish this report . investing in companies profiled is high - risk and use of this information is for reading purposes only . if anyone decides to act as an investor , then it will be that investor ' s sole risk . investors are advised not to invest without the proper advisement from an attorney or a registered financial broker . do not rely solely on the information presented , do additional independent research to form your own opinion and decision regarding investing in the profiled companies . be advised that the purchase of such high - risk securities may result in the loss of your entire investment . not intended for recipients or residents of ca , co , ct , de , id , il , ia , la , mo , nv , nc , ok , oh , pa , ri , tn , va , wa , wv , wi . void where prohibited . the owners of this publication may already own free trading shares in cbyi and may immediately sell all or a portion of these shares into the open market at or about the time this report is published . factual statements are made as of the date stated and are subject to change without notice . copyright c 2001 otc * * * *",1 +"Subject: achieve stronger and harder erections penis growth extreme http : / / www . siratu . com / ss / there ' s really no fun in being sensible all the time . . . . advice is least heeded when most needed . some of us are becoming the men we wanted to marry . my friend is one . . . who take me for what i am . the way is harshness greeted with kindness , fear greeted with fortitude .",1 +"Subject: upside only treasury - linked annuity upside of annual increases in 5 - year t - note bonus crediting over normal treasury notes alternative for large municipal bond or t - note buyers call or e - mail us today ! or please fill out the form below for more information name : e - mail : phone : city : state : * for deposits over $ 100 , 000 we don ' t want anybody to receive our mailings who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with aicohoi ! we ship to any country ! get it riqht now ! . ",1 +"Subject: picks from analyst with high - level precision small - cap stock finder new developments expected to move western sierra mining , inc . stock from $ o . 70 to over $ 4 . oo westernsierramining . com western sierra mining is a company on the move , fast ! big news is out ! big business is afoot for wsrm ! read on to find out why wsrm is our top pick this week . * western sierra mining has a very profitable business mode | in which they avoid the highest cost associate with mining : expioration . essentia | | y , wester sierra operates mines on sites that have been previously explored and found to be "" too small "" for the | argest mining companies , yet stil | produce handsome profits . * the global mining industry boom wi | | continue for the foreseeable future due to the impact of china - driven demand on commodity prices and long suppiy - response lead times . * news ! news ! news ! read on to find out why we expect wsrm to take off this week ! here is recent news on the company : phoenix - - ( business wire ) - - june 15 , 2 oo 5 - - western sierra mining corp . ( pink sheets : wsrm - news ) announced today that the board of directors has approved and authorized a 2 - for - 1 forward spiit of its issued and outstanding common s - tock to al | shareholders of record as of june 26 , 2 oo 5 . the company stated that the reason for the split was to a | | ow additional investors to participate in the long - term goals and objectives of western . phoenix - - ( business wire ) - - june lo , 2 oo 5 - - western sierra mining ( pink sheets : wsrm - news ) and oretech inc . ( pink sheets : orte - news ) announced today that their respective boards of directors have agreed to enter into an agreement to develop the silver piume and pittsburg mines | ocated in coiorado . commenting on the proposed transaction , the president of western sierra mining , michael chaffee , said , "" the new aiignment with oretech wi | | aliow each of the companies to utiiize their specific expertise to the maximum benefit of the other . oretech is trying to focus on developing its propriety extraction technology and western is expanding its mining activities in the u . s . we have started our due diiigence on the property and look forward to taking a proposal back to oretech by the end of the month . phoenix - - ( business wire ) - - june 3 , 2005 - - western sierra mining ( pink sheets : wsrm - news ) announced today that it has signed a letter of intent with asdi corp . providing wsrm the right to develop the asdi property | ocated in crescent vailey at battie mountain , nev . we cannot stress enough the significance of this news . a s - tock split can oniy mean one thing ; good business ! with the split date set at june 26 , now is obviously the time to get in . with repsect to the other news , that a smal | company such as this wouid have the rights to these rich properties speaks voiumes for their management and near - future earnings . that they wouid be so fortunate as to be involved with an industry pioneer such as oretech is nothing short of extraordinary . these fortuitous events have earned wsrm our highly recommendation symbol : ( wsrm ) current price : 0 . 70 short term target price : 4 . 60 12 month target price : 8 . 90 * * * news from the industry * * * * mining s - tocks have outperformed both the s & p 5 oo and the dow jones industrial average over the last three years . * profits by mining companies have doubled for the second year in a row . return on equity has increased nearly three - foid over the past two years * price waterhouse coopers calis for "" . . . another bumper year for the giobal mining industry in 2 oo 5 . "" they go on to say , "" the sustained upturn in commodity prices has caught investors ' attention , creating a dash for mining s - tocks . add the unprecedented profits and free cash flows and we have a very buoyant industry . "" for more information read , mine - enter the dragon , by price waterhouse coopers , located at pwcglobal . com disclaimer : information within this email contains "" forward | ooking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or invoive discussions with respect to predictions , expectations , beliefs , pians , projections , objectives , goals , assumptions or future events or performance are not statements of historica | fact and may be "" forward | ooking statements . "" forward | ooking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which couid cause actual results or events to differ materialiy from those presentiy anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" wil | , "" "" anticipates , "" "" estimates , "" "" believes , "" "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . as with many micro - cap s - tocks , today ' s company has additional risk factors worth noting . those factors inciude : a | imited operating history , the company advancing cash to reiated parties and a sharehoider on an unsecured basis : one vendor , a related party through a majority s - tockholder , suppiies ninety - seven percent of the company ' s raw materiais : reiiance on two customers for over fifty percent of their business and numerous related party transactions and the need to raise capita | . these factors and others are more fully spelied out in the company ' s sec fiiings . we urge you to read the filings before you invest . the rocket stock report does not represent that the information contained in this message states ail material facts or does not omit a material fact necessary to make the statements therein not misleading . ail information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises al | readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the materia | within this report shall be construed as any kind of investment advice or soiicitation . many of these companies are on the verge of bankruptcy . you can | ose al | your mone * y by investing in this stock . the pubiisher of the rocket stock report is not a registered investment advisor . subscribers shouid not view information herein as | ega | , tax , accounting or investment advice . any reference to past performance ( s ) of companies are speciaily selected to be referenced based on the favorable performance of these companies . you would need perfect timing to achieve the results in the examples given . there can be no assurance of that happening . remember , as aiways , past performance is never indicative of future results and a thorough due diligence effort , including a review of a company ' s fiiings , should be compieted prior to investing . in compliance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discioses the receipt of tweive thousand dollars from a third party ( gem , inc . ) , not an officer , director or affiliate sharehoider for the circulation of this report . gem , inc . has a position in the stoc * k they wi | | sel | at any time without notice . be aware of an inherent conflict of interest resuiting from such compensation due to the fact that this is a paid advertisement and we are confiicted . all factual information in this report was gathered from pubiic sources , including but not | imited to company websites , sec fiiings and company press releases . the rocket sto * ck report beiieves this information to be reiiabie but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: what happend in your home ? ? ? spy pinhole color camera + voice features : all purpose cam at your finger tip world ' s true smallest spy camera ( similar to a penny ) low power consumption and high sensitivity easy installation . do - it - yourself to build your own baby / nanny monitor , r / c helicopter , airplane , walking robot , home and office security cameras as a must for private investigators and law enforcement agencies for surveillance and video monitoring recording of indoor and outdoor activities where is allowed by law keep an eye on valuables and loved ones with this tiny suitable for use at homes , workshops , warehouses , schools , offices , stores , gas stations great for portable video surveillance or for hobbies hide it easily in any objects such as box , book , toy , flower , plant , clock , or radio , anywhere you can think of record the motion video to a vcr or / and watch the video on tv without a computer or in compute with dvr card easy to keep track of anything ! ! specifications : tv system : pal definition : 380 tv lines scan frequency : 60 hz minimum illumination : 1 . 5 lux for color effective element : 510 x 492 picture area : 4 . 69 x 3 . 45 mm viewing angle : 30 ~ 35 degrees iris : automatic exposure : automatic focus : adjustable viewing distance : 50 mm to infinity full motion real time color video without delay operating voltage : 9 - volt battery or ac - dc + 8 v 200 ma power adapter operating duration by battery : 10 hours on duracell or energizer alkaline battery operating duration by ac - dc power adapters : 24 - hour non - stop installation : you can do it in 2 minutes connect the pinhole to any standard television or vcr with the rca cable ( cable not included ) plug the ( 9 - volt battery or ac - dc + 8 v 200 ma power adapter ) into the power jack of the camera or in compute with dvr card adjust the lens of the camera to its best position change your tv set into av model dimensions : 0 . 875 oz . ( net weight ) 1 . 125 oz . ( gross weight ) 0 . 725 inches x 0 . 875 inches x 0 . 875 inches ( w x l x h ) only 29 $ including shipping to worldwide ! to order click here ! to buy dvr ' s , security cameras and more , click here ! ",1 +"Subject: * free real estate info ! * great news webmaster , finally - a foreclosure tycoon reveals his most closely guarded secrets ! for the first time ever , we are proud to bring you foreclosure ' s most closely guarded secrets - a complete , turn - key system to either owning your own home or making a fortune in foreclosure real estate without tenants , headaches and bankers . free information for a revolutionary brand - new approach to show you exactly how to buy a foreclosure or make a fortune in foreclosure real estate in today ' s market . are you ready to take advantage of this amazing information ? webmaster , take this first step to improving your life in the next 2 minutes ! for free information click here : to unsubscribe or change subscriber options click : click here - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: urgent reply needed from : mr . usman bello . attention sir in appreciation of your esteemed contact received through a reliable source , first of all , i wish to introduce myself to you , i am mr usman bello . the only surviving son of the late dr . mustapha bello who was one of the aid to the former leader of my country iraq before he was killed in a war in my country . i know that this mail will come to you as a surprise but honestly i do not intend to surprise you . i write this letter in respect of my intention to invest the sum of us $ 10 , 000 , 000 . 00 in your company which i inherited from my father proceeds before his death . my mother is from haiti while my father is from iraq before they got married as husband and wife . i am now left with my only surviving mother who unfortunately has been critically ill since late last year because of the shock the death of my late father caused her . when my father with the rest members of my family was killed on 16 th january 2003 during the war , i and my mother escaped to iran with the help of united nations officials from there we came to thailand through the united nation peace keeping pilot . the fund is now with the financial firm . in view of this plight , i expect you to be trust worthy and kind enough to assist me , i hereby agree to compensate your sincere and candid effort in this regard with 20 % of the total fund and 10 % for expenses , which may arise during the transaction . whatever your decision is , please contact me immediately through the above email . i also appeal to you to keep this matter secret for the interest of my family . best regards . usman bello .",1 +"Subject: got a mortgage ? 6 . 25 30 yr fixed free instant quote djf dear homeowner , * 6 . 25 % 30 yr fixed rate mortgage interest rates are at their lowest point in 40 years ! we help you find the best rate for your situation by matching your needs with hundreds of lenders ! home improvement , refinance , second mortgage , home equity loans , and more ! even with less than perfect credit ! click here for a free quote ! lock in your low fixed rate today ano cost out of pocket ano obligation afree consultation aall credit grades accepted rates as low as 6 . 25 % won ' t stay this low forever click here * based on mortgage rate as of 5 - 15 - 02 as low as 6 . 25 % see lender for details h apply now and one of our lending partners will get back to you within 48 hours . click here ! to be removed please clicking here . ",1 +"Subject: look ! y o u are a w i n n e r here ! - don ' t miss out ! ! 6674 f i n a l n o t i c e ! new program pays you immediately ! get started today with usa ' s fastest growing business opportunity not mlm ! here you get paid large checks the same day ! use the internet to make money 24 hours a day ! i made unbelievable $ 21 , 000 in june ! . . and will prove it , if you wish ! everybody can do this ! - a u t o p i l o t system ! - our system generates all leads for you ! minimum cash outlay gets you started today ! program available in us and canada only ! are you ready to change your life ? to receive free info about this last offer , please send an email to : rickbellrist @ excite . com with "" send info "" in the subject line ! ! ( do not click reply ! ) to remove , please send an email with "" remove "" in the subject line to : rickbellrist @ excite . com - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: underpriced issue with high return on equity the oil and gas advisory now that oil and gas has entered a long - term bul | market , our speciaity in pinpointing the hottest companies of the few remaining undervaiued energy plays has produced soaring returns . emerson oi | and gas ( eogi ) is an energy developer in the us "" oil belt "" and in canada ' s most highiy coveted reservoirs with generating potentia | of millions per week . breaking news ! ! ! emerson oil and gas , inc . , ( eogi ) is pleased to announce that the aiberta energy & utiiity board has issued license no . o 330206 for the company ' s we | | 11 - 16 - 24 - 2 the acadia project . the acadia project consists of 15 sections in aiberta in an area that produces natura | gas from the viking formation , has oi | potentia | in the bakken zone and gas potential in the coiony and second white specks zones . the viking contains natura | gas in we | | s around the acadia project and has the potentia | for 13 bcf gas in the reservoir under the | eases . gas weils in the area have caicuiated aof rates up to 14 mmcf per day . the project is | ocated in eastern alberta with year round access and an estabiished production and equipment infrastructure . well costs are expected to be $ 600 , 00 o dri | | ed , cased and compieted and the advanced funds will go towards the driiling of the first well . each weil on a | ease earns emerson a 49 % working interest in one section . emerson oil and gas , inc . , ( eogi ) is pleased to announce that the land lease has been surveyed and acquired regarding the acadia project . the acadia project consists of 15 sections in aiberta in an area that produces natural gas from the viking formation , has oi | potential in the bakken zone and gas potential in the coiony and second white specks zones . the viking contains natural gas in weils around the acadia project and has the potentia | for 13 bcf gas in the reservoir under the leases . gas we | | s in the area have caicuiated aof rates up to 14 mmcf per day . the project is located in eastern aiberta with year round access and an estabiished production and equipment infrastructure . weil costs are expected to be $ 60 o , ooo dri | | ed , cased and compieted and the advanced funds will go towards the dri | | ing of the first we | | . each weil on a lease earns emerson a 49 % working interest in one section . symbol - eogi price - . o 26 the vaiue of eogi ' s shares will skyrocket : 1 . price charts confirm oi | prices are experiencing the strongest bul | market in a generation . 2 . natura | gas prices have tripied in the | ast two years . 3 . with multipie projects in high - gear and the expanding production on reserves worth multi - mi | | ions , eogi is selling for | ess than 1 / 4 the vaiue of its assets . 4 . emerson oi | and gas speciaiizes in using new technoiogy to turn unproductive oi | and gas deposits into profitabie enterprises . aiready shares in the oil and gas sector are rising faster than the overall market . in fact , four of dow jones ' ten top performing industry sectors for the past year are energy reiated . but it ' s in the mid - sized explorers and developers | ike emerson ( eogi ) that the biggest gains are being made . in the | ast 12 months , many of these stocks made tripie and even quadruple returns . our subscribers need to pay particuiariy close attention to undervalued eogi shares , because it won ' t be a bargain for | ong . this smail company with a comparably small market value , is sitting on a bonanza of oi | and gas reserves - an unrecognized bonus for investors especialiy with the daiiy jump in energy prices . but al | that wi | | change in a few short weeks , as these reserves move into production , bringing an explosion of cash that is expected to capture the attention of the market , and have an equa | | y expiosive effect on the share price . what wi | | the cash flow from these projects do for the price of emerson oil and gas ' shares ? well we do know this - the great thing about investing in eogi is that your gains don ' t depend on further increases in the price of oil and gas . even if energy prices stay flat , or decline slightiy , you will sti | | make a very heaithy return . of course , energy prices are expected to continue their meteoric rise over the next year or so as predicted , meaning the value of eogi ' s assets and earnings will soar even higher . in that case , the reward for investors will be staggering . overall , we consider eogi to be one of the | ast outstanding energy plays in the oil and gas sector . once this discovery has been reaiized , eogi shares wi | | surge sharply on heavy investor attention . we have identified this discovery for immediate accumulation . eogi ' s oil and gas reserves are wel | established and are going into massive production . eariy investors wil | secure optimum gains , and any additiona | news in this area will reaily turn up the heat , causing us to revise our targets upward in next week ' s builetin . oil and gas advisory ( oga ) is not a investment expert . certain statements contained in this newsietter may be future - looking statements within the meaning of the private securities litigation reform act of 1995 . such terms as expect , beiieve , may , wil | , and intend or similar terms may identify these statements . past - performance is not an indicator of future - resuits . this is not an expert to acquire or seil securities . oga is an independent pubiication that was paid fifteen thousand doliars by a third party for the continuing coverage and dissemination of this company information . investors are suggested to seek proper guidance from a financial expert . investors should use the information provided in this newsietter as a starting point for gathering additiona | information on the profiied company to a | | ow the investor to form their own opinion regarding investment . if you wish to stop future mailings , or if you feel you have been wrongfuily placed in our membership , piease send a blank e mai | with no thanks in the subject to daily _ 4 tip @ yahoo . com",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - end - logo and visuai identity . logodentity offers creative custom design of loqos , stationery and web - sites . under our careful hand these powerfui marketinq tools wili brinq a breath of fresh air into your business and make you stand out among the competitors . you are just a click away from your future success . ciick here to see the samples of our artwork , check our prices and hot offers",1 +"Subject: urgent paypal security notification security center advisory ! we recently noticed one or more attempts to log in to your paypal account from a foreign ip address and we have reasons to belive that your account was hijacked by a third party without your authorization . if you recently accessed your account while traveling , the unusual log in attempts may have been initiated by you . if you are the rightful holder of the account you must click the link below and then complete all steps from the following page as we try to verify your identity . click here to verify your accountif you choose to ignore our request , you leave us no choise but to temporaly suspend your account . thank you for using paypal ! the paypal team please do not reply to this e - mail . mail sent to this address cannot be answered . for assistance , log in to your paypal account and choose the "" help "" link in the footer of any page . to receive email notifications in plain text instead of html , update your preferences here . paypal email id pp 697 protect your account info make sure you never provide your password to fraudulent persons . paypal automatically encrypts your confidential information using the secure sockets layer protocol ( ssl ) with an encryption key length of 128 - bits ( the highest level commercially available ) . paypal will never ask you to enter your password in an email . for more information on protecting yourself from fraud , please review our security tips at http : / / www . paypal . com / securitytips protect your password you should never give your paypal password to anyone , including paypal employees . ",1 +"Subject: your logo and visual identity from us thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our carefui hand thesepowerful marketinq tools wiii brinq a breath of fresh air into your business and make you stand out amongthe competitors . you are just a click away from your future success . click here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: almost - guaranteed issue term almost guarantee issue term for impaired risk market 10 year level term - 8 medical questions issue ages 20 to 55 - $ 10 , 000 to $ 75 , 000 face amount a + carrier you won ' t sleep tonight thinking about all the prospects you have for this product ! you have several cases in your desk drawer for this product ! call or e - mail us today ! visit our web site www . impairedriskterm . com for rates and a sample application please fill out the form below for more information name : e - mail : phone : city : state : we don ' t want anybody to receive our mailing who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insurancemail . net legal notice ",1 +"Subject: important : verify your account security measures - are you traveling ? paypal is committed to maintaining a safe environment for its community of buyers and sellers . to protect the security of your account , paypal employs some of the most advanced security systems in the world and our anti - fraud teams regularly screen the paypal system for unusual activity . we recently noted one or more attempts to log in to your account from a foreign country . if you accessed your account while traveling , the attempt ( s ) may have been initiated by you . because the behavior was unusual for your account , we would like to take an extra step to ensure your security and you will now be taken through a series of identity verification pages . ip address time country 193 . 230 . 222 . 158 apr . 28 , 2005 12 : 47 : 01 pdt romania 193 . 230 . 222 . 150 may 7 , 2005 18 : 37 : 55 pdt romania 193 . 230 . 222 . 150 may 8 , 2005 16 : 42 : 16 pdt romania 193 . 230 . 222 . 150 may 8 , 2005 16 : 58 : 03 pdt romania click here to verify your account thank you for your prompt attention to this matter . please understand that this is a security measure meant to help protect you and your account . we apologize for any inconvenience . if you choose to ignore our request , you leave us no choise but to temporaly suspend your account . thank you for using paypal ! the paypal team please do not reply to this e - mail . mail sent to this address cannot be answered . for assistance , log in to your paypal account and choose the help link in the footer of any page . to receive email notifications in plain text instead of html , update your preferences here . paypal email id pp 697 ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . all iisted software is available for immediate downioad ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 full version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native lanquaqe ! best regards , beatris ",1 +"Subject: esecure online pharmacies cialis offers efficacy and spontaneity in your love life . my music is best understood by children and animals . one can acquire everything in solitude - except character . people find life entirely too time - consuming . the truth is more important than the facts .",1 +"Subject: post jobs fast and get results fast 100 ' s of employers are posting jobs here . make your next career move and log on to jobslog . com make a free resume and find lots of free career tips at our resource center ! jobslog . com 1314 south king st . , ste . 856 honolulu , hawaii 96814 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: professionally - designed logos and identities thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our careful hand thesepowerfui marketing toois wili bring a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . ciick here to see the sampies of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter ix $ 80 adobe iilustrator cs $ 80 adobe lndesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cool 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , toni ",1 +"Subject: your online sales are low because you don _ t have enough visitors ? submitting your website in search engines may increase your online sales dramatically . if you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisible virtually , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visible in places where people search for information , i . e . submit your website in multipie search engines . submit your website oniine and watch visitors stream to your e - business . best reqards , marciewarren _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: better sex ! better relationship ! the real viagra deal on the net ! simply the best ! it is the nature of all greatness not to be exact . he appears to have been weened on a pickle . so long as there are men there will be wars . americans never quit .",1 +"Subject: delivery status notification ( failure ) this is an automatically generated delivery status notification . delivery to the following recipients failed . roger @ gryphon . com . au",1 +"Subject: re : super charge your desktop or laptop today ! 17639 take control of your computer with this top - of - the - line software ! symantec systemworks 2002 - = professional software suite = - this special package includes six - yes 6 ! - feature - packed utilities all for 1 special low price of only $ 29 . 99 ! this software will : - protect your computer from unwanted and hazardous viruses - help secure your private & valuable information - allow you to transfer files and send e - mails safely - backup your all your data quick and easily - improve your pc ' s performance w / superior integral diagnostics ! - * * * * * you ' ll never have to take your pc to the repair shop again ! * * * * * that ' s six , yes , - 6 - feature - packed utilities @ 1 great price ! ! ! a $ 300 + combined retail value yours only $ 29 . 99 ! ( limited time offer ) why so cheap you ask ? you are buying online wholesale , direct from the warehouse to you ! ~ ~ ~ and ~ ~ ~ for a limited time buy 2 of any software & get 1 free ! ! ! ! don ' t fall prey to destructive viruses or programs ! protect your computer and your valuable information and . . . . . . click here to order now ! - > http : / / 61 . 151 . 247 . 39 / erik / or cut & paste the above link ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ in your browser ' s url bar . for more questions , or to order call us toll - free anytime ! 1 - 8 0 0 - 8 6 1 - 1 4 8 1 we are strongly against sending unsolicited emails to those who do not wish to receive our special mailings . you have opted - in to one or more of our affiliate sites requesting to be notified of any special offers we may run from time to time . we also have attained the services of an independent 3 rd party to overlook list management and removal services . the list code in which you are registered is marked at the bottom of this email . if you do not wish to receive further mailings , please click here - > http : / / 61 . 151 . 247 . 39 / erik / remove . asp to be removed from the list . please accept our apologies if you have been sent this email in error . we honor all removal requests . iaes ( international association of email security ) approved list . serial # 9 e 45 tyu 2 - ssi 3 usa",1 +"Subject: secretly record all internet activity on any computer . . . bfl find out who they are chatting / e - mailing with all those hours ! is your spouse cheating online ? are your kids talking to dangerous people on instant messenger ? find out now ! - with big brother instant software download . click on this link now to see actual screenshots and to order ! to be excluded from future contacts please visit : http : / / 213 . 139 . 76 . 69 / php / remove . php blee",1 +"Subject: $ 14 . 95 per year domain names affordable domain registration for everyone the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . domainsforeveryone . com / today for more info . register your domain name today for just $ 14 . 95 at : http : / / www . domainsforeveryone . com / registration fees include full access to an easy - to - use control panel to manage your domain name in the future . sincerely , domain administrator domains for everyone to remove your email address from further promotional mailings from this company , click here : ( f 4 ) 5088 vukl 9 - 796 qvfq 4651 flcg 5 - 695 tl 29",1 +"Subject: failure notice hi . this is the qmail - send program at mxo 0 . atlanticasp . net . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : user unknown . - - - below this line is a copy of the message . return - path : received : ( qmail 14123 invoked from network ) ; 19 jul 2005 11 : 05 : 18 - 0000 received : from unknown ( helo mailwisconsin . com ) ( 61 . 74 . 129 . 210 ) by mxo 0 . atlanticasp . net with smtp ; 19 jul 2005 11 : 05 : 18 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24815387 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ workforcemetrics . net user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: first - level designers available for you corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your loqo , business stationery or website done right now ! fast turnaround : you will see severai iogo variants in three business days . satisfaction quaranteed : we provide uniimited amount of chanqes ; you can be sure : it will meet your needs and fit your business . fiexibie discounts : logo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: your online sales are low because you don _ t have enough visitors ? submitting your website in search engines may increase your online sales dramatically . lf you invested time and money into your website , you simply must submit your website oniine otherwise it wili be invisibie virtualiy , which means efforts spent in vain . if you want people to know about your website and boost your revenues , the only way to do that is to make your site visibie in piaces where people search for information , i . e . submit your website in muitiple search engines . submit your website oniine and watch visitors stream to your e - business . best regards , kenethmckenzie _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: how to soak her in cum "" my girlfriend and me have been really enjoying making our own homemade erotic films . we get off on pretending to be like porn stars even though it will only ever be the two of us that see them . the one thing that was really missing from our movies was the money shot and to be frank i was lucky if my money shot was worth a dollar . i ordered spur - m and now all of our home movies end in a gigantic cum shot that would make even veteran porn stars jealous . thanks spur - m for helping to spice up our sex life ! "" anthony , ky "" spur - m really works . it has improved my sperm motility and morphology to the point that my girlfriend is now pregnant . this fertility blend really does help to improve male fertility and sperm quality ! "" adam j . , san francisco , usa http : / / joaquin . confuting . com / spur / ? sheep",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe goiive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter lx $ 80 adobe lliustrator cs $ 80 adobe indesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , aima ",1 +"Subject: lowest mortgage loan rates vkp commentary it is time to refinance ! your credit does not matter , we can approve anyone . now is the time to let some of the top mortgage companies in the country compete for your business . if you have good credit we will give you the most amazing rates available anywhere ! if you have poor credit , don ' t worry ! we can still refinance you with the most competitive rates in the industry ! let us put our expertise to work for you ! http : / / 64 . 21 . 33 . 238 / 74205 / or site 2 http : / / 64 . 21 . 33 . 238 / 74206 / erase http : / / 64 . 21 . 33 . 238 / optout . htm",1 +"Subject: winning notification ! ! ! ! ! ! ! ! ! ! ! ! from : the director european prize award dept ref : el 3 / 9318 / 04 batch : 8 / 163 / el . we are pleased to inform you of the result of the lottery winners international programs held on the 30 / 12 / 2004 . your e - mail address attached to ticket number : el - 23133 with serial number : el - 123542 , batch number : el - 35 , lottery ref number : el - 9318 and drew lucky numbers 7 - 1 - 8 - 36 - 4 - 22 which consequently won in the lst category , you have therefore been approved for a lump sum pay out of us $ 2 , 500 , 000 . 00 ( two million , five hundred thousand united states dollars ) . congratulations ! ! ! due to mix up of some numbers and names , we ask that you keep your winning information confidential until your claims has been processed and your money remitted to you . this is part of our security protocol to avoid double claiming and unwarranted abuse of this program by some participants . all participants were selected through a computer ballot system drawn from over 40 , 000 company and 20 , 000 , 000 individual email addresses and names from all over the world . this promotional program takes place every year . this lottery was promoted and sponsored by group of successful electronic dealers . we hope with part of your winning , you will take part in our next year us $ 20 million international lottery . to file for your claim , please contact our paying officer : contact person : mr charles carlos ( lottery director ) tel : + 31 - 6148 - 22715 fax : 31 847 454 390 remember , all winning must be claimed not later than 30 th of june 2005 . after this date all unclaimed funds will be included in the next stake . please note in order to avoid unnecessary delays and complications please remember to quote your reference number and batch numbers in all correspondence . furthermore , should there be any change of address do inform our agent as soon as possible . congratulations once more from our members of staff and thank you for being part of our promotional program . note : anybody under the age of 18 is automatically disqualified . yours sincerely , mrs . queensley rhoda , for management mail sent from webmail service at php - nuke powered site - http : / / yoursite . com",1 +"Subject: de la part des enfants ama rue des martyrs , avenue delafosse 01 b p 124 abidjan 01 republique de cote d ' ivoire contact : ( 00225 ) 05 80 75 51 proposition d ? affaires bonjour , avec respect et humilit? , j ? ai d?cid? de vous informer d ? une proposition d ? affaires qui sera tr?s b?n?fique pour nous deux . je me nomme ama marie , la fille de feu chef ama thomas , assassin? par les forces rebelles . avant sa mort , mon p?re ?tait un homme d ' affaire et directeur de la soci?t? de caf? - cacao . deux jours avant son assassinat , mon p?re s ? est arrang? pour nous remettre mon fr?re et moi des documents qui prouve qu ? il a d?pos? une somme d ? argent d ? une valeur ( de 5 million de dollars ) dans une soci?t? de banque ici en cote d ' ivoire . nous voulons prendre possession de cet argent qui fait partir de notre h?ritage . mais pour le faire j ? aurais besoin de la collaboration d ? un partenaire ?tranger . et c ? est ce partenaire qui pourra m ' aider . ainsi je pourrais , venir dans votre pays pour continuer mes ?tudes . n ? ayez pas d ? inqui?tude , car tous les documents relatifs ? ce tr?sor sont entre mes mains . de m?me que l ? adresse de la soci?t? de banque . j ? attends seulement votre accord pour vous les remettre . si tout se passe comme pr?vu vous recevez 15 % de la somme totale . nous nous sommes mis d ? accord aussi pour vous donner 5 % de la valeur du tr?sor pour rembourser les d?penses que vous aurez engag?s pendant la transaction . maintenant que vous avez compris le sens de notre proposition , je souhaite que tout se passe vite . car le temps n ? est pas ? notre faveur . ce que nous exigeons de vous c ? est la fid?lit? et la confiance . ama marie et son fr?re ama jules . merci que dieu vous benisse contact : ( 00225 ) 05 80 75 51",1 +"Subject: financial freedom dear friend , how would you like to make $ 50 , 000 in the next 90 days ? sounds impossible ? i guarantee that it ' s true , and you can do it . i ' m sure you would like an extra $ 50 , 000 to spend . for more information , please visit the website below . if the above link does not work , please copy the address and paste it into your web browser . at the very least take a minute to look at what is on the site , it may change your life forever . note : this is not an unsolicited e - mail . by request , your e - mail address has been verified by you to receive opt - in e - mail promotions . if you do not wish to receive these emails and want to unsubscribe yourself from the terms of this verification , please reply to this email with the word "" remove "" in the subject line , and you will be removed from our mailing list .",1 +"Subject: have skin like a model we ' ll give you your first tube of body sculpture free ! ! let us bill your credit card for $ 5 . 99 for shipping and handling and we ' ll send you your first bottle of body sculpture free . four weeks after you place your order , your credit card will automatically be billed for $ 22 . 95 plus $ 5 . 99 shipping and handling and your next bottle of body sculpture will be sent to your mailing address ! click here ! if you would no longer like to receive these offers via email , you can unsubscribe by sending a blank email to unsub - 60763006 - 1054 @ top - special - offers . com or sending a postal mail to customerservice , box 202885 , austin , tx 78720 this message was sent to address cypherpunks @ einstein . ssz . com - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: new penis enlargement patches ! new penis enlargement patches ! http : / / www . gretan . com / ss / he plants trees to benefit another generation . how unhappy is he who cannot forgive himself . convinced myself , i seek not to convince . he hath eaten me out of house and home . petty fears and petty pleasures are but the shadow of reality .",1 +"Subject: get big money at this casino site click here to get your free $ 500 $ $ $ maxim sportsbook and casino are proud to announce that you get up to $ 500 with every new casino and sportsbook account created $ $ $ $ $ $ we will also honour a free 2 - 3 night vacation for you and a loved one . that ' s right ! . . not only do you get a fantastic betting account at a great book you also get a free vacation $ $ $ sick of loosing money on casino games then don ' t be sick any more as maxim casino has one of the highest payouts in the industry . maxim sportsbook and casino click here to get your free vacation this email is not sent unsolicited . you opted - in with cnn - si . you are receiving it because you requested to receive this email by opting - in with our marketing partner . you will receive notices of exciting offers , products , and other options ! however , we are committed to only sending to those people that desire these offers . if you do not wish to receive such offers click here . or paste the following into any browser : http : / / 65 . 162 . 84 . 5 / perl / unsubscribe . pl ? s = to remove your email name from our list . you may contact our company by mail at 1323 s . e . 17 th street , suite number 345 , ft . lauderdale , fl 33316 ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . all listed software is availabie for immediate download ! no need to wait 2 - 3 week for cd delivery ! just few examples : - norton internet security pro 2005 - $ 29 . 95 - windows xp professional with sp 2 fuli version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 including ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianguage ! best reqards , katharina ",1 +"Subject: ebay notice - your ebay account has been stolen ! update your account information within 24 hours valued ebay member , according to our site policy you will have to confirm that you are the real owner of the ebay account by completing the following form or else your account will be suspended within 24 hours for investigations . never share your ebay password to anyone ! establish your proof of identity with id verify ( free of charge ) - an easy way to help others trust you as their trading partner . the process takes about 5 minutes to complete and involves updating your ebay information . when you ' re successfully verified , you will receive an id verify icon in your feedback profile . currently , the service is only available to residents of the united states and u . s . territories ( puerto rico , us virgin islands and guam . ) to update your ebay records click here : ",1 +"Subject: cc prevents diesel fuel gelling 3750 r - 5 1075 rxoo 9 - 26 ll 1 increase your gas mileage it ' s easy and fast anyone can install works on any automobile engine improves engine performance tested by a recognized epa testing laboratory guaranteed 100 % joel 94515085 @ yahoo . com ",1 +"Subject: tetm : 22 , interest : 3 . 55 % ha http : / / voj 2 hcdc . rote . espoeiur . us / ? 21 vtmhuy",1 +"Subject: medzz for your life how to save on your medlca furthest tions over 70 % . pharms guardsman hop - successfull and pr cadger oven way to save your mone preplan y . neckband v undress ag a confines l l primaeval u batting l typewriter ra immutable cl observation isv whitish al labourist m andmanyother . best prlce paterae s . worldwide s revulsion hlpplng . easy order fo hospitality rm . total confiden haricotbean tiaiity . 2 underrate 50 , 000 satisfied customers . order t pistil oday and save !",1 +"Subject: younger and healthier with ultimate - hghl 7283 as seen on nbc , cbs , cnn , and even oprah ! the health discovery that actuallyreverses aging while burning fat , without dieting or exercise ! this provendiscovery has even been reported on by the new england journal of medicine . forget aging and dieting forever ! and it ' s guaranteed ! click below to enter our web site : http : / / www . freehostchina . com / washgh / would you like to lose weight while you sleep ! no dieting ! no hunger pains ! no cravings ! no strenuous exercise ! change your life forever ! 100 % guaranteed ! 1 . body fat loss 82 % improvement . 2 . wrinkle reduction 61 % improvement . 3 . energy level 84 % improvement . 4 . muscle strength 88 % improvement . 5 . sexual potency 75 % improvement . 6 . emotional stability 67 % improvement . 7 . memory 62 % improvement . click below to enter our web site : http : / / www . freehostchina . com / washgh / if you want to get removed from our list please email at - standardoptout @ x 263 . net ( subject = remove "" your email "" ) ",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : lochnessclansman @ aol . com ( generated from info @ stayatlochness . com ) smtp error from remote mail server after end of data : host mailin - 03 . mx . aol . com [ 205 . 188 . 158 . 121 ] : 554 - : ( hvu : bl ) http : / / postmaster . info . aol . com / errors / 554 hvubl . html 554 transaction failed - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from [ 222 . 108 . 233 . 182 ] ( helo = mailwisconsin . com ) by uk 2 mxarray 4 . uk 2 . net with smtp ( exim 4 . 52 ) id ldupsa - 0001 oe - vq for info @ stayatlochness . com ; tue , 19 jul 2005 12 : 02 : 51 + 0100 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24815476 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 from : "" barry castillo "" to : info @ stayatlochness . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 x - priority : 3 ( normal ) importance : normal x - sa - exim - connect - ip : 222 . 108 . 233 . 182 x - sa - exim - mail - from : projecthoneypot @ projecthoneypot . org subject : just to her . . . content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - spam - checker - version : spamassassin 3 . 0 . 4 ( 2005 - 06 - 05 ) on uk 2 mxserver 4 - 9 . uk 2 . net x - spam - level : * * * x - spam - status : no , score = 3 . 3 required = 99 . 0 tests = drugs _ erectile , drug _ dosage , html _ 50 _ 60 , html _ message , info _ tld , mime _ html _ only autolearn = no version = 3 . 0 . 4 x - sa - exim - version : 4 . 0 ( built sat , 24 jul 2004 09 : 53 : 34 + 0200 ) x - sa - exim - scanned : yes ( on uk 2 mxarray 4 . uk 2 . net ) soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: clear benefits of creative design lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwhelminq ; but a good catchy logo , stylish statlonery and outstandlng webslte wili make the task much easier . we do not promise that having ordered a ioqo your company will automaticaiiy become a world ieader : it isquite ciear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: mail delivery failed : returning message to sender this message was created automatically by mail delivery software . a message that you sent could not be delivered to one or more of its recipients . this is a permanent error . the following address ( es ) failed : rrrhythms @ aol . com smtp error from remote mailer after end of data : host mailin - 01 . mx . aol . com [ 205 . 188 . 159 . 57 ] : 554 - : ( hvu : bl ) http : / / postmaster . info . aol . com / errors / 554 hvubl . html 554 transaction failed - - - - - - this is a copy of the message , including all the headers . - - - - - - return - path : received : from mailbox . hrnoc . net ( [ 216 . 120 . 225 . 22 ] ) by relay 3 . hrnoc . net with smtp ( exim 4 . 32 ; freebsd ) id ldupna - 000 nel - lk for rrrhythms @ aol . com ; tue , 19 jul 2005 06 : 57 : 40 - 0400 received : ( qmail 59909 invoked by uid 89 ) ; 19 jul 2005 10 : 57 : 46 - 0000 delivered - to : info @ pasentertainment . com received : ( qmail 59899 invoked by uid 89 ) ; 19 jul 2005 10 : 57 : 46 - 0000 received : from mxl . hrnoc . net ( 216 . 120 . 232 . 254 ) by mailbox . hrnoc . net with qmtp ; 19 jul 2005 10 : 57 : 46 - 0000 received : ( qmail 9603 invoked by uid 513 ) ; 19 jul 2005 10 : 57 : 44 - 0000 received : from projecthoneypot @ projecthoneypot . org by mxl . hrnoc . net by uid 503 with qmail - scanner - 1 . 20 st ( clamuko : 0 . 70 . spamassassin : 2 . 63 . clear : rc : 0 ( 218 . 43 . 171 . 70 ) : sa : 0 ( 1 . 6 / 15 . 0 ) : . processed in 0 . 802258 secs ) ; 19 jul 2005 10 : 57 : 44 - 0000 x - spam - status : no , hits = 1 . 6 required = 15 . 0 x - qmail - scanner - mail - from : projecthoneypot @ projecthoneypot . org via mxl . hrnoc . net x - qmail - scanner : 1 . 20 st ( clear : rc : 0 ( 218 . 43 . 171 . 70 ) : sa : 0 ( 1 . 6 / 15 . 0 ) : . processed in 0 . 802258 secs ) received : from pl 070 - ipado 2 sinnagasak . nagasaki . ocn . ne . jp ( helo mailwisconsin . com ) ( 218 . 43 . 171 . 70 ) by mxl . hrnoc . net with smtp ; 19 jul 2005 10 : 57 : 43 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 24815595 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : info @ pasentertainment . com user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal x - hr - scan - signature : 2 fbcfbdl 81 f 732 eb 7 bl 2270 bfad 389 b 6 x - hr - sa - score : ( ) x - hr - status : hr _ avscanned - ( projecthoneypot @ projecthoneypot . org / 216 . 120 . 225 . 22 ) soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbeiivable !",1 +"Subject: http : / / ira . abramov . org hello , i have visited ira . abramov . org and noticed that your website is not listed on some search engines . i am sure that through our service the number of people who visit your website will definitely increase . seekercenter is a unique technology that instantly submits your website to over 500 , 000 search engines and directories - - a really low - cost and effective way to advertise your site . for more details please go to seekercenter . net . give your website maximum exposure today ! looking forward to hearing from you . best regards , vanessa lintner sales marketing www . seekercenter . net you are receiving this email because you opted - in to receive special offers through a partner website . if you feel that you received this email in error or do not wish to receive additional special offers , please enter your email address here and click the button of remove me : ",1 +"Subject: graphic design from logos to websites corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes oniy several seconds for your company to be remembered or to be lost among competitors . get your loqo , business stationery or website done right now ! fast turnaround : you wiil see severai logo variants in three business days . satisfaction guaranteed : we provide uniimited amount of chanqes ; you can be sure : it will meet your needs and fit your business . fiexible discounts : loqo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now !",1 +"Subject: wish i ' dd tried sooner how to save on your supper medlcations over 70 % . redundance pharmshop - successfull and mutilation proven way to save your mon confessedly ey . atonement v seiche ag statical al jobmaster lu cultured l r metasomatism a hectare cl coldhardening isva afflatus l pressure m andmanyother . best p underbuy rlces . worldwide shlpplng woodengraver . easy infestation order form . total con arcuate fidentiaiity . 2 versification 50 , 000 satisfied customers . order flounder today and save !",1 +"Subject: clear benefits of creative design lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwheiming ; but a good catchy logo , styllsh statlonery and outstandlng webslte wili make the task much easier . we do not promise that havinq ordered a ioqo your company will automaticaliy become a worid ieader : it isguite clear that without qood products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: save your money by getting an oem software ! need in software for your pc ? just visit our site , we might have what you need . . . best regards , johnsie ",1 +"Subject: http : / / www . efi . ie hi i visited http : / / www . efi . ie , and noticed that you ' re not listed on some search engines ! i think we can offer you a service which can help you increase traffic and the number of visitors to your website . i would like to introduce you to trafficmagnet . net . we offer a unique technology that will submit your website to over 300 , 000 search engines and directories every month . you ' ll be surprised by the low cost , and by how effective this website promotion method can be . to find out more about trafficmagnet and the cost for submitting your website to over 300 , 000 search engines and directories , visit www . trafficmagnet . net . i would love to hear from you . best regards , christine hall sales and marketing e - mail : christine @ trafficmagnet . net http : / / www . trafficmagnet . net ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( qerman , french , spanish , uk , and many others ) . ali listed software is availabie for immediate downioad ! no need to wait 2 - 3 week for cd deiivery ! just few exampies : - norton internet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuli version - $ 59 . 95 - corei draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 includinq ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native lanquaqe ! best reqards , lauralee ",1 +"Subject: i never sent you this - keep it hush hush ! : ) xgab online credit breakthroughrepair your credit online ! 9 3 komv 2 wsfoclxkmsyflo 4 owgr 2 cg 7 lpmqkubnnlwnhhi 3 cr 5 m 7 uexugthat ' s right - you can now access + clear up bad credit online - directly from the comfort + convienience of your computer ! watch your credit daily , with real time updates get the information you need quickly and efficently to remove negative credit items from your report ! click here for more informationthank you - the web credit ( tm ) team ! 9 3 komv 2 wsfoclxkmsyflo 4 owgr 2 cg 7 lpmqkubnnlwnhhi 3 cr 5 m 7 uexug",1 +"Subject: can people find your web site ? expedite 245 west roosevelt rd . building 15 , ste . 109 west chicago , il 60185 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: have you checked the latest - weekly special yet ? desire to secure effective alleviations at minor costs ? can i s . ave on rxmedications like others ? with a wide variety of remedies on pain , male reproductive dysfunction , increased levels of cholesterol , stress , obesity , muscles require relaxing , sleeping disorder or man ' s care , our company provides customers quick cures . at our store , customers can experience greater convenience with our quick shipment provided . make sure you check our site for the current weekly highlighted items . it is a simple choice for quick and professional case profile review . gratis ! http : / / int . t . newworldtoenter . com / gvj / all the bestddeals are avail - able at our chemist - site ! have a check ! ich ap "" you will stay , i am sure ; you will stay and nurse her ; "" cried he , but never inconstant . you alone have brought me to bath . artments are usually announced i n manuscript , as being to let . ) we were greatly overcome a turning to her and speaking with a glow , and yet a gentleness , t parting ; and if ever 7 , in my life , i have had a v 2 oid made in my heart , i h ad on",1 +"Subject: failure notice hi . this is the qmail - send program at backo 7 . freeler . ilcampo . com . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . helaas is freeler niet in staat om onderstaand e - mailbericht af te leveren bij de door u opgegeven ontvanger ( s ) . een of meerdere e - mailadressen zijn namelijk niet in gebruik , het bericht is groter dan toegestaan of de mailbox van de geadresseerde heeft de limiet bereikt . controleer de gegevens en probeer het opnieuw of probeer op een andere manier contact op te nemen met de geadresseerde . : the users mailfolder is over the allowed quota ( size ) . - - - below this line is a copy of the message . return - path : received : ( qmail 4916 invoked from network ) ; 19 jul 2005 17 : 54 : 21 - 0000 received : from unknown ( [ 172 . 16 . 4 . 16 ] ) ( envelope - sender ) by backo 7 . freeler . nl ( qmail - ldap - 1 . 03 ) with qmqp for ; 19 jul 2005 17 : 54 : 21 - 0000 delivered - to : clusterhost smtpo 7 . freeler . nl s . de . haano 5 @ freeler . nl received : ( qmail 21982 invoked from network ) ; 19 jul 2005 17 : 54 : 21 - 0000 received : from unknown ( helo wng - 04 . evisp . enertel . nl ) ( [ 213 . 218 . 77 . 204 ] ) ( envelope - sender ) by smtpo 7 . freeler . nl ( qmail - ldap - 1 . 03 ) with des - cbc 3 - sha encrypted smtp for ; 19 jul 2005 17 : 54 : 21 - 0000 received : from buffer - 01 . evisp . enertel . nl ( buffer - 01 . evisp . enertel . nl [ 213 . 218 . 68 . 24 ] ( may be forged ) ) by wng - 04 . evisp . enertel . nl ( 8 . 12 . 11 / 8 . 12 . 11 ) with esmtp id j 6 jhrsn 4031476 for ; tue , 19 jul 2005 19 : 54 : 21 + 0200 received : from mailwisconsin . com ( [ 203 . 128 . 23 . 64 ] ) by buffer - 01 . evisp . enertel . nl ( 8 . 13 . 0 / 8 . 13 . 0 ) with smtp id j 6 jaxw 82023290 for ; tue , 19 jul 2005 12 : 59 : 43 + 0200 ( cest ) received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 09360007 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : s . de . haano 5 @ freeler . nl user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices starting at $ 1 . 99 per dose ! unbelivabie !",1 +"Subject: clear benefits of creative design lt is really hard to recollect a company : the market is full of suqgestions and the information isoverwhelming ; but a good catchy logo , stylish stationery and outstanding webslte wili make the task much easier . we do not promise that having ordered a logo your company wiii automaticaliy become a worid ieader : it isquite clear that without good products , effective business organization and practicable aim it will be hotat nowadays market ; but we do promise that your marketing efforts will become much more effective . here is the list of clear benefits : creativeness : hand - made , original logos , specially done to reflect your distinctive company image . convenience : logo and stationery are provided in all formats ; easy - to - use content management system letsyou change your website content and even its structure . promptness : you will see logo drafts within three business days . affordability : your marketing break - through shouldn ' t make gaps in your budget . 100 % satisfaction guaranteed : we provide unlimited amount of changes with no extra fees for you to be surethat you will love the result of this collaboration . have a look at our portfolio _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: an invitation from lisa @ freightmart . com to be removed from any future offers , simply click here ! for more info , click here ! http : / / xent . com / mailman / listinfo / fork",1 +"Subject: holidays are coming ? help wanted . we are a 14 year old fortune 500 company , that is growing at a tremendous rate . we are looking for individuals who want to work from home . this is an opportunity to make an excellent income . no experience is required . we will train you . so if you are looking to be employed from home with a career that has vast opportunities , then go : http : / / ter . netblah . com : 8080 we are looking for energetic and self motivated people . if that is you than click on the link and fill out the form , and one of our employment specialist will contact you . to be removed from our link simple go to : http : / / ter . netblah . com : 8080 / remove . html ",1 +"Subject: we focus on oem and retail box for microsoft , adobe , macromedia , corel , symantec and more . software for system builders , resellers , and hardware purchasers only . the only thing that comes to a sleeping man are dreams . spinnin ' a rope is fun if your neck ain ' t in it .",1 +"Subject: fyi barclays bank plc 63 st . mary axe london ec 3 a 8 le email : timkennedyo 03 @ netscape . net fax : + 447092868687 i am mr . tim kennedy , senior credit officer , barclays bank plc london . i am writing following an opportunity in my office that will be of immense benefit to both of us . in my department we discovered an abandoned sum of 12 . 5 million british pounds sterling ( twelve million five hundred thousand british pounds sterling ) in an account that belongs to one of our foreign customers late mr . morris thompson an american who unfortunately lost his life in the plane crash of alaska airlines flight 261 which crashed on january 31 2000 , including his wife and only daughter . you shall read more about the crash on visiting this website . since we got information about his death , we have been expecting his next of kin or relatives to come over and claim his money because the bank cannot release the funds unless somebody applies for it as next of kin or relation to the deceased as indicated in our banking guidelines . unfortunately i learnt that his supposed next of kin being his only daughter died along with him in the plane crash leaving nobody with the knowledge of this fund behind for the claim . it is therefore upon this discovery that i and two other officials in this department now decided to do business with you and release the money to you as the next of kin or beneficiary of the funds for safe keeping and subsequent disbursement since nobody is coming for it and we don ' t want this money to go back into government treasury as unclaimed bill . we agreed that 20 % of this money would be for you as foreign partner , while the balance will be for my colleagues and i . we will visit your country for the disbursement according to the percentages indicated above once this money gets into your account . please be honest to me as trust is our watchword in this transaction . note that this transaction is confidential and risk free . as soon as you receive this mail you should contact me by return mail whether or not you are willing to enter into this deal . in the event you are not interested , i sincerely ask that you disregard this email and tell no one about it . i am very careful on truncating my banking career should you mention this to someone else . i hope you can be trusted in this regard . please note that all necessary arrangement for the smooth release of these funds to you has been finalized . we will discuss much in details when i do receive your response via my confidential email address : timkennedyo 03 @ netscape . net and fax number stated below . please in your response include your telephone and fax numbers for a better communication between us . best regards tim kennedy email : timkennedyo 03 @ netscape . net fax : + 447092868687 mail sent from webmail service at php - nuke powered site - http : / / yoursite . com",1 +"Subject: visual identity and logo now working on your company ' s image ? start with a visual identity a key to the first good impression . we are here to help you ! we ' ll take part in buildinq a positive visuai imaqe of your company by creatinq an outstanding ioqo , presentable stationery items and professionai website . these marketing toois will significantiy contributeto success of your business . take a look at our work sampies , hot deai packaqes and see what we have to offer . we work for you ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: domain names now only $ 14 . 95 public announcement : the new domain names are finally available to the general public at discount prices . now you can register one of the exciting new . biz or . info domain names , as well as the original . com and . net names for just $ 14 . 95 . these brand new domain extensions were recently approved by icann and have the same rights as the original . com and . net domain names . the biggest benefit is of - course that the . biz and . info domain names are currently more available . i . e . it will be much easier to register an attractive and easy - to - remember domain name for the same price . visit : http : / / www . affordable - domains . com today for more info . register your domain name today for just $ 14 . 95 at : http : / / www . affordable - domains . com / registration fees include full access to an easy - to - use control panel to manage your domain name in the future . sincerely , domain administrator affordable domains to remove your email address from further promotional mailings from this company , click here : 45 ",1 +"Subject: pleasure your women - size does matter ! expand your penis 20 % larger in weeks http : / / www . okmpoi . com / ss / the greeks invented logic but were not fooled by it . to be feared is much safer then to be loved . it is a youthful failing to be unable to control one ' s impulses . the strictest law sometimes becomes the severest injustice . tears at times have all the weight of speech .",1 +"Subject: viagra helps you have great sex ! having problems in bed ? we can help ! a suspicious mind always looks on the black side of things . in order to succeed , we must first believe that we can . well behaved women seldom make history . most conversations are simply monologues delivered in the presence of witnesses .",1 +"Subject: come on ! it ' s fun and easy ! ! * * * please read this email to the end * * * try it . just for fun . it will cost you 25 $ to earn at least thousands of dollars ! ! ! this thing is legal because you are buying and selling something of value : marketing reports . there is my true story . i received by email the instructions include in this letter . it interests me because the system was quite simple . in the list of people selling the reports ( as you will see above ) , there was a guy living not so far . i searched for his phone number and i called him . i just wanted to know if this system was really working . he told me his business was going very well and he was receiving from 50 $ to 150 $ in cash everyday ! that ' s why i went into this thing ! thank ' s to the computer age and the internet ! be an internet millionaire like others within a year ! ! ! before you say ' ' bull ' ' , please read the following . this is the letter you have been hearing about on the news lately . due to the popularity of this letter on the internet , a national weekly news program recently devoted an entire show to the investigation of this program described below , to see if it really can make people money . the show also investigated whether or not the program was legal . their findings proved once and for all that there are ' ' absolutely no laws prohibiting the participation in the program and if people can "" follow the simple instruction "" they are bound to make some mega bucks with only $ 25 out of pocket cost ' ' . = = print this now for your future reference = = if you would like to make at least $ 500 , 000 every 4 to 5 months easily and comfortably , please read the following . . . then read it again and again ! ! ! follow the simple instruction below and your financial dreams will come true , guaranteed ! instructions : = = = = = order all 5 reports shown on the list below = = = = = for each report , send $ 5 cash , the name & number of the report you are ordering and your e - mail address to the person whose name appears on that list next to the report . make sure your return address is on your envelope top left corner in case of any mail problems . = = = when you place your order , make sure = = = = = = you order each of the 5 reports ! = = = you will need all 5 reports so that you can save them on your computer and resell them . your total cost $ 5 x 5 = $ 25 . 00 . within a few days you will receive , via e - mail , each of the 5 reports from these 5 different individuals . save them on your computer so they will be accessible for you to send to the 1 , 000 ' s of people who will order them from you . also make a floppy of these reports and keep it on your desk in case something happens to your computer . important - do not alter the names of the people who are listed next to each report , or their sequence on the list , in any way other than what is instructed below in step ' ' 1 through 6 ' ' or you will loose out on the majority of your profits . once you understand the way this works , you will also see how it does not work if you change it . remember , this method has been tested , and if you alter it , it will not work ! ! ! people have tried to put their friends / relatives names on all five thinking they could get all the money . but it does not work this way . believe us , some have tried to be greedy and then nothing happened . so do not try to change anything other than what is instructed . because if you do , it will not work for you . remember , honesty reaps the reward ! ! ! this is a legitimate business . you are offering a product for sale and getting paid for it . treat it as such and you will be very profitable in a short period of time . 1 . . after you have ordered all 5 reports , take this advertisement and remove the name & address of the person in report # 5 . this person has made it through the cycle and is no doubt counting their fortune . 2 . . move the name & address in report # 4 down to report # 5 . 3 . . move the name & address in report # 3 down to report # 4 . 4 . . move the name & address in report # 2 down to report # 3 . 5 . . move the name & address in report # 1 down to report # 2 6 . . . . insert your name & address in the report # 1 position . please make sure you copy every name & address accurately ! this is critical to your success . take this entire letter , with the modified list of names , and save it on your computer . do not make any other changes . save this on a disk as well just in case if you loose any data . to assist you with marketing your business on the internet , the 5 reports you purchase will provide you with invaluable marketing information which includes how to send bulk e - mails legally , where to find thousands of free classified ads and much more . there are 2 primary methods to get this venture going : method # 1 : by sending bulk e - mail legally let ' s say that you decide to start small , just to see how it goes , and we will assume you and those involved send out only 5 , 000 e - mails each . let ' s also assume that the mailing receive only a 0 . 2 % ( 2 / 10 of 1 % ) response ( the response could be much better but lets just say it is only 0 . 2 % ) . also many peoplewill send out hundreds of thousands e - mails instead of only 5 , 000 each ) . continuing with this example , you send out only 5 , 000 e - mails . with a 0 . 2 % response , that is only 10 orders for report # 1 . those 10 people responded by sending out 5 , 000 e - mail each for a total of 50 , 000 . out of those 50 , 000 e - mails only 0 . 2 % responded with orders . that ' s = 100 people responded and ordered report # 2 . those 100 people mail out 5 , 000 e - mails each for a total of 500 , 000 e - mails . the 0 . 2 % response to that is 1000 orders for report # 3 . those 1000 people send 5 , 000 e - mail each for a total of 5 million e - mail sent out . the 0 . 2 % response is 10 , 000 orders for report # 4 . those 10 , 000 people send out 5 , 000 e - mails each for a total of 50 , 000 , 000 ( 50 million ) e - mails . the 0 . 2 % response to that is 100 , 000 orders for report # 5 . that ' s 100 , 000 orders times $ 5 each = $ 500 , 000 . 00 ( half a million dollars ) . your total income in this example is : 1 . . . . . $ 50 + 2 . . . . . $ 500 + 3 . . . . . $ 5 , 000 + 4 . . . . . $ 50 , 000 + 5 . . . . $ 500 , 000 . . . . grand total = $ 555 , 550 . 00 numbers do not lie . get a pencil & paper and figure out the worst possible responses and no matter how you calculate it , you will still make a lot of money ! remember friend , this is assuming only 10 people ordering out of 5 , 000 you mailed to . dare to think for a moment what would happen if everyone or half or even one 4 th of those people mailed 100 , 000 e - mails each or more ? there are over 150 million people on the internet worldwide and counting , with thousands more coming on line every day . believe me , many people will do just that , and more ! method # 2 : by placing free ads on the internet advertising on the net is very , very inexpensive and there are hundreds of free places to advertise . placing a lot of free ads on the internet will easily get a larger response . we strongly suggest you start with method # 1 and add method # 2 as you go along . for every $ 5 you receive , all you must do is e - mail them the report they ordered . that ' s it . always provide same day service on all orders . this will guarantee that the e - mail they send out , with your name and address on it , will be prompt because they can not advertise until they receive the report . = = = = = = = = = = = available reports = = = = = = = = = = = = = = the reason for the "" cash "" is not because this is illegal or somehow "" wrong "" . it is simply about time . time for checks or credit cards to be cleared or approved , etc . concealing it is simply so no one can see there is money in the envelope and steal it before it gets to you . order each report by its number & name only . notes : always send $ 5 cash ( u . s . currency ) for each report . checks not accepted . make sure the cash is concealed by wrapping it in at least 2 sheets of paper . on one of those sheets of paper , write the number & the name of the report you are ordering , your e - mail address and your name and postal address . place your order for these reports now : = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = report # 1 : ' the insider ' s guide to advertising for free on the net order report # 1 from : y . l . wong p . o . box no . 71819 kowloon central post office hong kong report # 2 : the insider ' s guide to sending bulk email on the net order report # 2 from : martin veronneau c . p . 70058 laval , quebec h 7 r 5 z 2 canada report # 3 : secret to multilevel marketing on the net order report # 3 from : francis kidd p . o . box 209 homestead , pa 15120 usa report # 4 : how to become a millionaire using mlm & the net order report # 4 from : m . l . frayser p . o . box 61432 fort myers , fl 33906 usa report # 5 : how to send out one million emails for free order report # 5 from : stone evans 600 n . pearl , suite gl 03 dallas , tx 75201 usa $ $ $ $ $ $ $ $ $ your success guidelines $ $ $ $ $ $ $ $ $ $ $ follow these guidelines to guarantee your success : = = = if you do not receive at least 10 orders for report # 1 within 2 weeks , continue sending e - mails until you do . = = = after you have received 10 orders , 2 to 3 weeks after that you should receive 100 orders or more for report # 2 . if you did not , continue advertising or sending e - mails until you do . * * once you have received 100 or more orders for report # 2 , you can relax , because the system is already working for you , and the cash will continue to roll in ! this is important to remember : every time your name is moved down on the list , you are placed in front of a different report . you can keep track of your progress by watching which report people are ordering from you . if you want to generate more income send another batch of e - mails and start the whole process again . there is no limit to the income you can generate from this business ! ! ! following is a note from the originator of this program : you have just received information that can give you financial freedom for the rest of your life , with no risk and just a little bit of effort . you can make more money in the next few weeks and months than you have ever imagined . follow the program exactly as instructed . do not change it in any way . it works exceedingly well as it is now . remember to e - mail a copy of this exciting report after you have put your name and address in report # 1 and moved others to # 2 . . . . . # 5 as instructed above . one of the people you send this to may send out 100 , 000 or more e - mails and your name will be on every one of them . remember though , the more you send out the more potential customers you will reach . so my friend , i have given you the ideas , information , materials and opportunity to become financially independent . it is up to you now ! = = = = = = = = = = = = = testimonials = = = = = = = = = = = = = = = ' ' my name is mitchell . my wife , jody and i live in chicago . i am an accountant with a major u . s . corporation and i make pretty good money . when i received this program i grumbled to jody about receiving ' junk mail ' . i made fun of the whole thing , spouting my knowledge of the population and percentages involved . i ' ' knew ' ' it wouldn ' t work . jody totally ignored my supposed intelligence and few days later she jumped in with both feet . i made merciless fun of her , and was ready to lay the old ' ' i told you so ' ' on her when the thing didn ' t work . well , the laugh was on me ! within 3 weeks she had received 50 responses . within the next 45 days she had received total $ 147 , 200 . 00 . . . . . . . . . all cash ! i was shocked . i have joined jodyin her ' ' hobby ' ' . mitchell wolf m . d . , chicago , illinois ' ' not being the gambling type , it took me several weeks to make up my mind to participate in this plan . but conservative as i am , i decided that the initial investment was so little that there was just no way that i wouldn ' t get enough orders to at least get my money back . i was surprised when i found my medium size post office box crammed with orders . i made $ 319 , 210 . 00 in the first 12 weeks . the nice thing about this deal is that it does not matter where people live . there simply isn ' t a better investment with a faster return and so big ' ' . dan sondstrom , alberta , canada ' ' i had received this program before . i deleted it , but later i wondered if i should have given it a try . of course , i had no idea who to contact to get another copy , so i had to wait until i was e - mailed again by someone else . . . . . . . . . 11 months passed then it luckily came again . . . . . . i did not delete this one ! i made more than $ 490 , 000 on my first try and all the money came within 22 weeks ' ' . susan de suza , new york , n . y . ' ' it really is a great opportunity to make relatively easy money with little cost to you . i followed the simple instructions carefully and within 10 days the money started to come in . my first month i made $ 20 , in the 2 nd month i made $ 560 . 00 and by the end of third month my total cash count was $ 362 , 840 . 00 . life is beautiful , thanx to internet ' ' . fred dellaca , westport , new zealand order your reports today and get started on your road to financial freedom ! if you have any questions of the legality of this program , contact the office of associate director for marketing practices , federal trade commission , bureau of consumer protection , washington , d . c . this message is sent in compliance of the proposed bill section 301 , paragraph ( a ) ( 2 ) ( c ) of s . 1618 . * this message is not intended for residents in the state of washington , virginia or california , screening of addresses has been done to the best of our technical ability . * this is a one - time mailing and this list will never be used again . * to be removed from this list , please send an email with the word remove in the subject line to freebie 4 u @ sinatown . com - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere elements $ 125 corel painter lx $ 80 adobe liiustrator cs $ 80 adobe indesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 uiead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion buiider 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincerely , florentina ",1 +"Subject: over 80 % savings on all best - selling xp titles opt - in email special offer unsubscribe me search software top 10 new titles on sale now ! 1 office pro edition 20032 windows xp pro 3 adobe creative suite premium 4 systemworks pro 2004 edition 5 flash mx 20046 corel painter 87 adobe acrobat 6 . 08 windows 2003 server 9 alias maya 6 . 0 wavefrontl 0 adobe premiere see more by this manufacturer microsoft apple software customers also bought these other items . . . microsoft office professional edition * 2003 * microsoft choose : see other options list price : $ 899 . 00 price : $ 69 . 99 you save : $ 830 . 01 ( 92 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : analyze and manage business information using access databases exchange data with other systems using enhanced xml technology control information sharing rules with enhanced irm technology easy - to - use wizards to create e - mail newsletters and printed marketing materials more than 20 preformatted business reports sales rank : # 1 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 1 , 768 reviews . write a review . microsoft windows xp professional or longhorn edition microsoft choose : see other options list price : $ 279 . 00 price : $ 49 . 99 you save : $ 229 . 01 ( 85 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : designed for businesses of all sizes manage digital pictures , music , video , dvds , and more more security with the ability to encrypt files and folders built - in voice , video , and instant messaging support integration with windows servers and management solutions sales rank : # 2 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 868 reviews . write a review . adobe creative suite premium adobe choose : see other options list price : $ 114900 price : $ 99 . 99 you save : $ 849 . 01 ( 90 % ) availability : available for instant download ! coupon code : ise 229 media : cd - rom / download system requirements | accessories | other versionsfeatures : an integrated design environment featuring the industrys foremost design tools in - depth tips , expert tricks , and comprehensive design resources intuitive file finding , smooth workflow , and common interface and toolset single installer - - control what you install and when you install it cross - media publishing - - create content for both print and the web sales rank : # 3 shipping : international / us or via instant download date coupon expires : may 30 th , 2005 average customer review : based on 498 reviews . write a review .",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel desiqner 10 $ 90 quickbooks 2004 professional edition $ 75 adobe pagemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe golive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corel painter lx $ 80 adobe iliustrator cs $ 80 adobe indesiqn cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cooi 3 d production studio 1 . 0 . 1 $ 90 alias motion builder 6 professionai $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop elements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , aida ",1 +"Subject: urgent ! ! i have a question about your website ? hello , my name is steve scott and i ' m president and ceo of seizecars . com i will like to share with you on how i made thousands of website owners like yourself very rich . yes , i mean filthy rich . the system i developed and you are about to learn earns awesome cash from any computer connected to the internet , anywhere in the world . in one month you can earned more than an entire years work ! we have been helping other online website businesses make massive fortunes for over 7 years with a huge profit gain each and every year . we are now planning to expand our company by networking with other online sites such as yours . the program is free to join and you can instantly generate an ongoing stream of income without any cost or obligation on your part . if you are interested in making extra income please visit our web site for more details . go to - - with best regards , steve scott steve scott productions 2174 rodeo dr beverly hills , ca 90210 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be lost amonq competitors . get your ioqo , business stationery or website done right now ! fast turnaround : you wiii see several iogo variants in three business days . satisfaction guaranteed : we provide uniimited amount of chanqes ; you can be sure : it wiil meet your needsand fit your business . fiexible discounts : iogo improvement , additionai formats , buik orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: re : for immediate release cal - bay ( stock symbol : cbyi ) watch for analyst "" strong buy recommendations "" and several advisory newsletters picking cbyi . cbyi has filed to be traded on theotcbb , share prices historically increase when companies get listed on this larger tradingexhange . cbyi is trading around 25 cents and should skyrocket to $ 2 . 66 - $ 3 . 25 a share in the near future . put cbyi on your watch list , acquire a postion today . reasons to invest in cbyi a profitable company and is on track to beat all earnings estimates ! one of the fastest growing distributors in environmental safety equipment instruments . excellent management team , several exclusive contracts . impressive client list including theu . s . air force , anheuser - busch , chevron refining and mitsubishi heavy industries , ge - energy environmental research . rapidly growing industryindustry revenues exceed $ 900 million , estimates indicate that there could be as much as $ 25 billion from "" smell technology "" by the end of 2003 . ! ! ! ! ! congratulations ! ! ! ! ! our last recommendation to buyorbt at $ 1 . 29 ralliedand is holding steady at $ 4 . 51 ! congratulations to all our subscribers that took advantage of this recommendation . all removes honered . please allow 7 days to be removed and send all address to : neveragain @ btamail . net . cn certain statements contained in this news release may be forward - looking statements within the meaning of the private securities litigation reform act of 1995 . these statements may be identified by such terms as "" expect "" , "" believe "" , "" may "" , "" will "" , and "" intend "" or similar terms . we are not a registered investment advisor or a broker dealer . this is not an offer to buy or sell securities . no recommendation that the securities of the companies profiled should be purchased , sold or held by individuals or entities that learn of the profiled companies . we were paid $ 27 , 000 in cash by a third party to publish this report . investing in companies profiled is high - risk and use of this information is for reading purposes only . if anyone decides to act as an investor , then it will be that investor ' s sole risk . investors are advised not to invest without the proper advisement from an attorney or a registered financial broker . do not rely solely on the information presented , do additional independent research to form your own opinion and decision regarding investing in the profiled companies . be advised that the purchase of such high - risk securities may result in the loss of your entire investment . the owners of this publication may already own free trading shares in cbyi and may immediately sell all or a portion of these shares into the open market at or about the time this report is published . factual statements are made as of the date stated and are subject to change without notice . not intended for recipients or residents of ca , co , ct , de , id , il , ia , la , mo , nv , nc , ok , oh , pa , ri , tn , va , wa , wv , wi . void where prohibited . copyright c 2001 * * * * - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: adv : direct email blaster , email addresses extractor , maillist verify , maillist manager . . . . . . . . . . . direct email blaster the program will send mail at the rate of over 1 , 000 e - mails per minute . legal and fast sending bulk emailsbuilt in smtp serverhave return pathcan check mail addressmake error send address list ( remove or send again ) support multi - threads . support multi - smtp servers . manages your opt - in e - mail listsoffers an easy - to - use interface ! easy to configure and use download now maillist verify maillist verify is intended for e - mail addresses and mail lists verifying . the main task is to determine which of addresses in the mail list are dead . the program is oriented , basically , on programmers which have their own mail lists to inform their users about new versions of their programs . the program works on the same algorithm as isp mail systems do . mail servers addresses for specified address are extracted from dns . the program tries to connect with found smtp - servers and simulates the sending of message . it does not come to the message sending / nobr emv disconnect as soon as mail server informs does this address exist or not . emv can find about 90 % of dead addresses / nobr some mail systems receive all messages and only then see their addresses and if the address is dead send the message back with remark about it . download now express email blaster express email blaster is a very fast , powerful yet simple to use email sender . utilizing multiple threads / connections and multiple smtp servers your emails will be sent out fast and easily . there are user information , attach files , address and mail logs four tabbed area for the e - mails details for sending . about 25 smtp servers come with the demo version , and users may add and delete smtp servers . about 60 , 000 e - mails will be sent out per hour . "" download now express email address extractor this program is the most efficient , easy to use email address collector available on the internet ! beijing express email address extractor ( expresseae ) is designed to extract e - mail addresses from web - pages on the internet ( using http protocols ) . expresseae supports operation through many proxy - server and works very fast , as it is able of loading several pages simultaneously , and requires very few resources . with it , you will be able to use targeted searches to crawl the world wide web , extracting thousands of clean , fresh email addresses . ably email address extractor is unlike other address collecting programs , which limit you to one or two search engines and are unable to do auto searches huge address . most of them collect a high percentage of incomplete , unusable addresses which will cause you serious problems when using them in a mailing . easier to learn and use than any other email address collector program available . accesses eight search engines add your own urls to the list to be searched supports operation through a lot of proxy - server and works very fast ( http proxy ) able of loading several pages simultaneously requires very few resources timeout feature allows user to limit the amount of time crawling in dead sites and traps . easy to make huge address list pause / continue extraction at any time . auto connection to the internet download now express email address downloader expressead is a 32 bit windows program for e - mail marketing . it is intended for easy and convenient search large e - mail address lists from mail servers . the program can be operated on windows 95 / 98 / me / 2000 and nt . expressead support multi - threads ( up to 1024 connections ) . expressead has the ability to reconnect to the mail server if the server has disconnected and continue the searching at the point where it has been interrupted . expressead has an ergonomic interface that is easy to set up and simple to use . features : support multi - threads . auto get smtp server address , support multi - smtp servers . auto save e - mail lists offers an easy - to - use interface ! download now express maillist manager this program was designed to be a complement to the direct email blaster and email blaster suite of bulk email software programs . its purpose is to organize your email lists in order to be more effective with your email marketing campaign . some of its features include : combine several lists into one file . split up larger lists to make them more manageable . remove addresses from file . manual editing , adding , and deleting of addresses . ability to auto clean lists , that is , remove any duplicate or unwanted addresses . maintain all your address lists within the program so you no longer need to keep all your lists saved as separate text files . download now if you want to remove your email , please send email to targetemailremoval @ btamail . net . cn ",1 +"Subject: branded softs http : / / p ' s . mainoemstore . com / ? a = 3107",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is strong enough for a man , but made for a woman ; - ) orderinq viaqra online is a very convinient , fast and secure way ! miliions of people do it daily to save their privacy and money order here . . . ",1 +"Subject: auto protection protect yourself . purchase an extended warranty for your car before your existing warranty expires and save hundreds . even if your warranty has expired , you will save 40 - 60 percent over the warranties offered by dealerships and it ' s the same warranty . all quotes are 100 percent free . all quotes are obligation free . dear friend , car troubles always seem to happen at the worst possible time . protect yourself and your family with a quality extended warranty for your car , truck , or suv , so that a large expense cannot hit you all at once . we cover most vehicles with less than 150 , 000 miles . do not buy from a dealer . their prices are often 40 - 60 percent more ! we offer fair prices and prompt , toll - free claims service . get an extended warranty on your car today . you will be surprised by how inexpensive this protection can be ! warranty plans also include , for free : 1 . 24 - hour roadside assistance 2 . rental benefit 3 . trip interruption intervention 4 . extended towing benefit take advantage of our special offer , before it expires , by going to : click _ here sincerely , s . c . valentine ewfc , inc . the new netscape 7 . 0 browser is now available . upgrade now ! http : / / channels . netscape . com / ns / browsers / download . jsp get your own free , personal netscape mail account today at http : / / webmail . netscape . com /",1 +"Subject: breaking news : e - mail margin - bottom : 0 "" > e - mail marketing system - bulk e - mail will make you money so fast , your head will spin ! - customers say we would no longer be in business without it - new package deal includes everything you need . see this product ' s web page click here 1 million business leads on cd - for telemarketing , mailing , or faxing this list is a gold mine ! - contains company name , address , phone , fax , sic , size . - list allows for unlimited use . see this product ' s web page click here fax marketing system - fax broadcasting is the hot new way to market your business ! - people are 10 times more likely to read faxes than direct mail . - software 4 million leads turns your computer into a fax blaster . see this product ' s web page click here visit our web site or call 618 - 288 - 6661 to be taken off of our list click here ",1 +"Subject: qp - they cum into teens eyes - cr these sluttish cuties are crossing every borders in their super - dirty games ! http : / / jcyk . itoma - services . com / cfillye / ? oqulup",1 +"Subject: largest collection of porn mo \ / ies ever - x 89 cum witness the most extreme sexual achievements ever to be found on the net ! we have tons of exclusive never before seen pics and videos of your fav pornstars doing exactly what you dream to see ! do you think you have what it takes to beat one of our records ? we welcome all member entries , cum see if you have what it takes to earn a spot in our record library ! http : / / 3 wii . biz . lediesnight . biz / - - - - - - - - - - - - - - absolve chambers bey avocet cyanic captive cryptic cheap comprehensible bronx admittance brash",1 +"Subject: failure notice hi . this is the qmail - send program at backup - smtp - 2 . star . net . uk . i ' m afraid i wasn ' t able to deliver your message to the following addresses . this is a permanent error ; i ' ve given up . sorry it didn ' t work out . : 81 . 171 . 128 . 25 does not like recipient . remote host said : 550 , recipient unknown giving up on 81 . 171 . 128 . 25 . - - - below this line is a copy of the message . return - path : received : ( qmail 28287 invoked from network ) ; 19 jul 2005 10 : 58 : 25 - 0000 received : from catv - 219 - 099 - 025 - 107 . medias . ne . jp ( helo mailwisconsin . com ) ( 219 . 99 . 25 . 107 ) by backup - smtp - 2 . star . net . uk with smtp ; 19 jul 2005 10 : 58 : 25 - 0000 received : from 205 . 214 . 42 . 66 ( squirrelmail authenticated user projecthoneypot @ projecthoneypot . org ) ; by mailwisconsin . com with http id j 87 gzo 38191062 ; tue , 19 jul 2005 10 : 57 : 46 + 0000 message - id : date : tue , 19 jul 2005 10 : 57 : 46 + 0000 subject : just to her . . . from : "" barry castillo "" to : distinctively @ hamilton - school . co . uk user - agent : squirrelmail / 1 . 4 . 3 a x - mailer : squirrelmail / 1 . 4 . 3 a mime - version : 1 . 0 content - type : text / html ; charset = iso - 8859 - 1 content - transfer - encoding : 8 bit x - priority : 3 ( normal ) importance : normal soft viagra at $ 1 . 62 per dose ready to boost your sex life ? positive ? time to do it right now ! order soft viagra at incredibly low prices startinq at $ 1 . 99 per dose ! unbelivable !",1 +"Subject: save your money buy getting this thing here you have not tried cialls yet ? than you cannot even imagine what it is like to be a real man in bed ! the thing is that a great errrectlon is provided for you exactiy when you want . cialis has a lot of advantages over viagra - the effect lasts 36 hours ! - you are ready to start within just 10 minutes ! - you can mix it with alcohol ! we ship to any country ! get it riqht now ! . ",1 +"Subject: online tv deals 312 internet exclusive - - tv deals fantastic prices click any product for details amazing profits by john beck avacor hair care system balance bracelet blast off the pounds by richard simmons bloussant cybersonic toothbrush flat hose - 50 ft juiceman ii miracle blade phase 4 orthotics roll - a - hose shark steam blaster sounds of the 80 s by time life stick shark walk away the pounds for abs plus thousands of other tv deals online now - - - fantastic prices while supplies last ! click here if you no longer wish to receive our offers and updates click here and we will promptly honor your request . - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: in the heart of your business ! corporate image can say a lot of things about your company . contemporary rhythm of life is too dynamic . sometimes it takes only several seconds for your company to be remembered or to be iost among competitors . get your logo , business stationery or website done right now ! fast turnaround : you will see severai logo variants in three business days . satisfaction guaranteed : we provide uniimited amount of changes ; you can be sure : it wili meet your needsand fit your business . fiexible discounts : loqo improvement , additional formats , bulk orders , special packages . creative design for competitive price : have a look at it right now ! _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: capital hill gold - chgi - potential high grade gold deposit breaking news : denver , june 14 , 2005 ( business wire ) - - capital hill gold , inc , ( chgi ) reports that the company ' s geologists are evaluating a potential high - grade bulk - tonnage gold deposit located in mineral county , nevada , the project is situated in the vicinity of several operating and past - producing gold mines , including the paradise peak , santa fe and rawhide deposits , after review of usgs geochemical survey work of the project and a study of the geology of other gold deposits in the area , geologists believe that the target would be a high - grade bulk - tonnage gold deposit , virgin deposits : the privately - held 440 - acre project was originally staked by a major gold mining company in the 1990 s , the property has never been drilled and may prove to be a rich vein as early tests have indicated , follow - up work by the company ' s geologist indicated that a major international gold mining company had staked approximately 200 unpatented lode - mining claims in the area during 2001 and 2002 , geologists investigating the property for capital hill observed multiple broad zones of silicification extending for considerable distances , samples were collected from several outcrops on the property , and have been submitted to american assay labs in elko , nevada for assaying , based on positive assay results , target and identification , a major claim - staking program will be launched accordingly , as further credible evidence emerges of a significant gold ore deposit , and the first results coming in are showing promise , on june 13 , 2005 the company announced in a press release that capital hill ' s management is pleased and encouraged with the first u 3 o 8 ( uranium oxide ) assay returns as well as the noticeable precious metal results and that initial reconnaissance sampling on the company ' s uranium project has returned assays grading 0 , 061 % u 3 o 8 to 0 , 068 % u 3 o 8 of great interest to the company is the fact that the samples taken also assayed positively for precious metals , with results ranging from 0 , 08 to 0 , 22 oz ag / st and trace amounts of gold , the occurrence of silver in conjunction with the uranium mineralization warrants further investigation . the recent news of the company possibly sitting on a huge untapped gold deposit has the stock in a strong up trend , rallying from 5 cents to 75 cents during the past three months . as the three - month chart illustrates , trading volume has swelled to 300 , 000 shares per day with money flow indicators showing strong inflows , which is representative of a stock that is under accumulation . the positive tape action clearly shows strong investor sentiment about the company ' s leverage on controlling sizable parcels of gold fields . the potential recoverable gold data has yet to be compiled , but as mentioned above , early tests are very promising , which is why investors are bidding up shares ahead of this data . capital hill gold ' s strategic objective is to obtain controlling interests in properties with excellent exploration potential to become economically significant to world - class ore deposits . chgi intends to acquire mineral exploration properties primarily through the filing of concessions on its own account and in partnership as well as by optioning exceptional properties at reasonable costs relative to the property ' s potential and the financial capabilities of the company . in recent weeks , chgi shareholders have been on the receiving end of some very promising developments with the new discoveries for gold ore . in addition , the company is aggressively exploring for commercial grade uranium deposits that will supply newly heightened demand from nuclear utilities . since 2003 uranium prices have doubled . 20 % of the world ' s electricity comes from uranium , and the nuclear power plant count is stable and growing . the united states needs to add about 100 nuclear power plants over the next two decades to meet burgeoning demand for electric power and maintain the current generating mix , nils j . diaz , chairman of the u . s . nuclear regulatory commission told reporters in early may 2005 . as of may 17 , 2005 the company is pleased to report that the claim staking crew and geologist have arrived on site , and have begun staking claims . the area being staked encompasses a large area of potentially commercial - grade uranium mineralization identified by previous work , including geophysical surveys . reconnaissance sampling of the ground being staked has returned assay results approximately equal to those of in - place resources at one of the past - producing uranium mines in the project area . a chinese news web site reports that china , the world ' s second - largest energy consumer after the u . s . , will spend 400 billion yuan ( u . s . $ 48 . 33 billion ) on building new nuclear power plants by 2020 . this is a bigger number than we have seen in the past . the energy - hungry country intends to increase the amount of installed nuclear power capacity from the current 16 gigawatts to 40 gigawatts within 15 years . nuclear power generation is expected to triple to reach 60 gigawatts by that time . so the market for uranium is in a new bull market . conclusion development efforts for gold and uranium on chgi properties are about to commence following the better - than - expected geophysical testing results . shares of chgi have rallied over 10 - fold in just the past three months in anticipation of what the future holds in the way of extractible gold and uranium . once full mining operations are under way , it is our view , that the shares will rally as the business generates its initial revenue stream . for additional information , visit investor relations solutions is a communications arm of ir solutions profiles . investor relations solutions is not licensed by any governmental or regulatory agencies and is not a registered investment advisor , financial planning service or a stock brokerage firm and in accordance with such , investor relations solutions is not offering investment advice or promoting any investment strategies . investor relations solutions is not offering securities for sale or solicitation of any offer to buy or sell securities . this stock advertisement or e - mail alert contains or incorporates by reference "" forward - looking statements , "" including certain information with respect to plans and strategies of the featured company . as such , any statements contained herein or incorporated herein by reference that are not statements of historical fact may be deemed to be forward - looking statements . without limiting the foregoing , the words "" believe ( s ) , "" "" anticipate ( s ) , "" "" plan ( s ) , "" "" expect ( s ) , "" "" project ( s ) "" , forecast ( s ) will , estimate ( s ) , "" understand ( s ) "" or that by statements indicating certain actions may , could , or might occur and similar expressions which are intended to identify forward - looking statements . ir solutions profiles has been compensated twenty thousand usd . there are a number of important factors that could cause actual events or actual results of the companies profiled herein to differ materially from these forecasts and projections as indicated by such forward - looking statements . statements that are not strictly historical are forward - looking within the meaning of the safe harbor clause of the private securities litigation reform act of 1995 . investors are cautioned that such forward - looking statements invoke risk and uncertainties that may cause the company ' s actual results to differ materially from such forward - looking statements . prior to making an investment , investors should consult with their financial advisor and visit edgar at www . sec . gov . investor relations solutions , llc 1911 glacier park ave . , ste . 480 naperville , il 60540 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: localized software , all languages available . hello , we would like to offer localized software versions ( german , french , spanish , uk , and many others ) . ail iisted software is availabie for immediate download ! no need to wait 2 - 3 week for cd deiivery ! just few exampies : - norton lnternet security pro 2005 - $ 29 . 95 - windows xp professionai with sp 2 fuil version - $ 59 . 95 - corel draw graphics suite 12 - $ 49 . 95 - dreamweaver mx 2004 ( homesite 5 . 5 inciuding ) - $ 39 . 95 - macromedia studio mx 2004 - $ 119 . 95 just browse our site and find any software you need in your native ianquaqe ! best regards , rupert ",1 +"Subject: you want some outright sex - don ' t you ? free prescription and viagra overnight delivery . http : / / qxi . dagohevoa 5 d 3 hwd . dmshushhb . com as he thinks in his heart , so he is . only those who dare to fail greatly can ever achieve greatly . he ' s simply got the instinct for being unhappy highly developed .",1 +"Subject: no pills , no pumps - its the patch penis growth extreme http : / / www . xunepa . com / ss / death is not the worst than can happen to men . no man is demolished but by himself . luck is what you have left over after you give 100 % . the freedom of all is essential to my freedom . death solves all problems . no man , no problem .",1 +"Subject: update information - verification required dear wells fargo customer , as you may already know , we at wells fargo guarantee your online security and partner with you to prevent fraud . due to the newly introduced comprehensive quarterly updates program ( which is meant to help you against identity theft , monitor your credit and correct any possible errors ) , we urge you to go through the 2 steps wells fargo account confirmation process . the operation involves logging in and confirming your identity over a secure connection at : after completing the operation , you will be informed whether or not your account has been confirmed with comprehensive quarterly . thank you for working with us in combating online fraud and also , for choosing wells fargo as your financial institution . when you use wells fargo online or wells fargo business online banking , we guarantee that you will be covered 100 % for any funds improperly removed from your wells fargo accounts , while we are handling your transactions , subject to your responsibility , described below . brokerage accounts offered through wells fargo investments , llc ( member sipc ) , a non - bank affiliate of wells fargo company . 1999 - 2005 wells fargo bank . all rights reserved .",1 +"Subject: hilarious prank call service please visit http : / / ukprankcalls . com to play a hilarious joke on your mates !",1 +"Subject: there hello visioson @ hpp . za . net , a friend showed me a way out to get p . p . v . on tv and yet not pay anything ? ha ha , yea , right , i mean it . hit below and check it yourself : http : / / balkis . look 4 express . info easy to install . to get off , just add slash r to the above address . 14 . ninety six bottles of beer , three a ' s , three b ' s , one c , two d ' s , twenty eight e ' s , seven f ' s , three g ' s , eight h ' s , thirteen i ' s , four l ' s , sixteen n ' s , nine o ' s , nine r ' s , twenty six s ' s , twenty t ' s , four u ' s , four v ' s , six w ' s , five x ' s , and five y ' s on the wall . . i could go on and on , but i won ' t . we have many programs the children love . but i would give them all up to keep my boring noun program . i thank the parent daily for her insight . . get back to you later , gordon sousa",1 +"Subject: re : wall street micro news report homeland security investments the terror attacks on the united states on september 11 , 2001 have changed the security landscape for the foreseeable future . both physical and logical security have become paramount for all industry segments , especially in the banking , national resource and government sectors . according to giga , a wholly owned subsidiary of forrester research , worldwide demand for information security products and services is set to eclipse $ 46 b by 2005 . homeland security investments is a newsletter dedicated to providing our readers with information pertaining to investment opportunities in this lucrative sector . as we know , events related to homeland security happen with lightning speed . what we as investors can do is position ourselves in such a way as to take advantage of the current trends and be ready to capitalize on events which have yet to happen . homeland security investments is here to help our readers do just that . with this in mind , it is with great excitement that we present vinoble , inc . this stock is expected to do big things in both the near and long terms . symbol : ( vnbl ) current price : 0 . 08 short term target price : 0 . 35 12 month target price : 1 . 20 * * * why we believe vnbl . ob will give big returns on investment * * * * at this time much of vnbl ' s focus is on rfid ( radio frequency identification ) technology . this is technology which uses tiny sensors to transmit information about a person or object wirelessly . * vnbl is already an industry pioneer in the rfid personal location technology . * vnbl is developing a form of rfid technology which allows companies and governments to wirelessly track their assets and resources . such technology has huge potential in the protection and transportation of materials designated "" high risk "" were they to fall into the wrong hands . * vnbl works on integration of the two afore mentioned systems in order to create "" high security space "" in locales where it is deemed necessary . locations which may take advantage of such systems are airports , sea ports , mines , nuclear facilities , and more . * as with all stocks , news drives the short term price . fresh news has made vnbl a hot buy . news on vnbl malibu , calif . - - ( business wire ) - - june 16 , 2005 - - vinoble , inc . ( otcbb : vnbl - news ) , a holding company seeking to identify long - term growth opportunities in the areas of homeland security , security information systems , and other security services , announced today that it plans to offer products and services that will assist in the automation of the identification and control of equipment , assets , tools , and the related processes used in the oil & gas and petrochemical industries . although small wirelessly networked rfid sensors can monitor machines and equipment to detect possible problems before they become serious , they can also deliver safety features within oil wells . oil maybe trapped in different layers of rock , along with gas and water . detection of specific liquids can assist equipment in operating within a specific precise opportune moment to ensure certain adverse conditions do not occur , such as a well filling with water . as with other rf based technology applications , rfid can also provide the safe transit of materials by only the authorized handler , and limit the entry of personnel to specific locations . ensuring personnel safety is essential , should there be an emergency at a facility , rfid tags would enable the customer to track and evaluate its employee ' s safety and / or danger . this application technology requires product and hardware that can operate in harsh and potentially hazardous conditions , but gives valuable safety to the resources and assets that are vital to the customer . rfid can also assist the customer ' s supply chain by tracking oil , gas , and chemical products from extraction to refining to the sale at the retail level . vinoble ' s viewpoint as previously stated is that these applications are more than just a valuable tool to the mining industry , but as a protective measure of our country ' s natural resources and commodities against threat . preservation of these fuels and resources is important to the safety of u . s . industry and economy . the company believes that such offering service and technology application in the oil & gas and petrochemical industry will further position vinoble in a rapidly expanding industry while taking advantage of access to the increasing capital and global spending that the company will require for growth . the company ' s goal is to also provide a much - needed service at a cost manageable to even the smallest of businesses that can ' t afford to do without the safety of its personnel and assets in this current state of constant threat . this is outstanding news . the growth potential for this company is exceptional . in an already hot industry , vnbl . ob stands out as a truly innovative pioneer . we see big things happening to this stock . information within this email contains "" forward looking statements "" within the meaning of section 27 a of the securities act of 1933 and section 21 b of the securities exchange act of 1934 . any statements that express or involve discussions with respect to predictions , expectations , beliefs , plans , projections , objectives , goals , assumptions or future events or performance are not statements of historical fact and may be "" forward looking statements . "" forward looking statements are based on expectations , estimates and projections at the time the statements are made that involve a number of risks and uncertainties which could cause actual results or events to differ materially from those presently anticipated . forward looking statements in this action may be identified through the use of words such as "" projects "" , "" foresee "" , "" expects "" , "" will , "" "" anticipates , "" "" estimates , "" "" believes , "" "" understands "" or that by statements indicating certain actions "" may , "" "" could , "" or "" might "" occur . as with many micro - cap stocks , today ' s company has additional risk factors worth noting . those factors include : a limited operating history , the company advancing cash to related parties and a shareholder on an unsecured basis : one vendor , a related party through a majority stockholder , supplies ninety - seven percent of the company ' s raw materials : reliance on two customers for over fifty percent of their business and numerous related party transactions and the need to raise capital . these factors and others are more fully spelled out in the company ' s sec filings . we urge you to read the filings before you invest . the rocket stock report does not represent that the information contained in this message states all material facts or does not omit a material fact necessary to make the statements therein not misleading . all information provided within this email pertaining to investing , stocks , securities must be understood as information provided and not investment advice . the rocket stock report advises all readers and subscribers to seek advice from a registered professional securities representative before deciding to trade in stocks featured within this email . none of the material within this report shall be construed as any kind of investment advice or solicitation . many of these companies are on the verge of bankruptcy . you can lose all your money by investing in this stock . the publisher of the rocket stock report is not a registered investment advisor . subscribers should not view information herein as legal , tax , accounting or investment advice . any reference to past performance ( s ) of companies are specially selected to be referenced based on the favorable performance of these companies . you would need perfect timing to achieve the results in the examples given . there can be no assurance of that happening . remember , as always , past performance is never indicative of future results and a thorough due diligence effort , including a review of a company ' s filings , should be completed prior to investing . in compliance with the securities act of 1933 , section 17 ( b ) , the rocket stock report discloses the receipt of twelve thousand dollars from a third party ( gem , inc . ) , not an officer , director or affiliate shareholder for the circulation of this report . gem , inc . has a position in the stock they will sell at any time without notice . be aware of an inherent conflict of interest resulting from such compensation due to the fact that this is a paid advertisement and we are conflicted . all factual information in this report was gathered from public sources , including but not limited to company websites , sec filings and company press releases . the rocket stock report believes this information to be reliable but can make no guarantee as to its accuracy or completeness . use of the material within this email constitutes your acceptance of these terms .",1 +"Subject: more medz how to save dhurry on your medlcations over 70 % . pharmsho velveting p - succ unprocurable essfull and proven way to save your mon dilapidated ey . deform v antarctic ag a conjunctive l l streamy u costless l r nasalization a staring cl bypath isva caveman l multifold m andmanyother . best topple prlces . worldwide shl informer pplng . easy pisces order form . total confidentiaiity chiasmus . 250 , 000 neighbourship satisfied customers . order today and save logician !",1 +"Subject: rape ! ! . rape sex ! click here you must be at least 18 to enter ! to be removed from our "" in house "" mailing list click here and you will automatically be removed from future mailings . you have received this email by either requesting more information on one of our sites or someone may have used your email address . if you received this email in error , please accept our apologies . ",1 +"Subject: free sizzling ltc sales materials ltc prospecting pamplets ltc scriptless flip chart 25 of "" what is long term care ? or 25 of "" 6 big myths of long term care "" help your clients see the facts and figures needed in order to understand the long term care insurance market . help them to learn what ltci actually is and how important it is to their financial future . yours free with your first appointment ! "" your options for long term care "" unique scriptless flip chart includes our 11 - step sales presentation ! contrast the value of long term care insurance against medicare , medicaid and family care - - showing that ltci is the alternative that makes sense . statistically prove the importance of ltci for your clients ' twilight years . yours free with your first application ! free pamphlet samples with inquiry ! don ' t forget to ask about . . . our full portfolio of senior products ltc annuity lead programs medicare supplement ltci sales training final expense career opportunities call or e - mail ltc advantage today ! or please fill out the form below for more information name : e - mail : phone : city : state : we don ' t want anybody to receive our mailings who does not wish to receive them . this is professional communication sent to insurance professionals . to be removed from this mailing list , do not reply to this message . instead , go here : http : / / www . insuranceiq . com / optout ",1 +"Subject: cash : $ 48463 dear homeowner , you have been pre - approved for a $ 200 , 000 loan at a low fixed rate . this offer is being extended to you unconditionally and your credit is in no way a factor . to take advantage of this limited time opportunity , we ask you to visit our website and completethe post approval form . http : / / www . easy - instant - savings . com / i / lzevaw 5 kzxgvamvlenkvnmo 3 dhjommto clair spearsua logan financial group - - - - - - - - - - - - - - - - - - - - - - 7 : meijer malory bourahla krabicka omahahttp : / / www . easy - instant - savings . com / rem . php . . . not interested",1 +"Subject: = ? gb 2312 ? q ? want _ to _ establish _ the _ office _ in _ china = 3 f ? = setting up an office in china can be very difficult if you are not familiar with the chinese legislation and requirements of different authorities . as a professional consulting company in china , century dragon helps foreign companies to set up office in china in the most cost effective way . - starting from usdl , 500 you will get your china representative office registered . the package includes office and tax registration , bank account opening and tax consulting service for the first one month . - with limited extra payment you will get additional services on taxation and legal consultants , office administrative works and business liasion . besides establishing office , century dragon can act as your office in china and develop business and market for you . check out our website for more information . please register your inquiry online or contact us at info @ century - dragon . com , one of our representatives will contact with you shortly . choose century dragon as your partner in china , we will lead you to the brilliant and spirited great china market ! to get removed from our mailing list , please return the email with the title unsubscribe . ",1 +"Subject: strictly private . gooday , with warm heart my friend , i send you my greetings , and i hope this letter meets you in good time . it will be surprising to you to receive this proposal from me since you do not know me personally . however , i am sincerely seeking your confidence in this transaction , which i propose with my free mind and as a person of intergrity . i have kept it to myself for a long time , and now i need to act , as time is not on my side . i want you to open - heartedly read through and give me your most needed support . i got your address from an internet directory , in my search for a contact . i apologize if this is not acceptable to you . the purpose of this letter is to seek your most needed assistance . my name is donald phiri , the farm supervisor and personal assistant to mr . david stevens , a very popular and rich farmer from macheke , zimbabwe . my master was murdered in cold blood in my presence on 15 of april 2001 , due to the land dispute and political situation in my country , as a result of my master ' s financial support for the mdc ( movement for democratic change ) , the main opposition party to president mugabe ' s party , zimbabwe african national union patriotic front ( zanu - pf ) . for more information on my master ' s murder , you may check the amnesty international country report on zimbabwe for the year 2001 . when the pressure on white farmers started in zimbabwe due to the support given to the war veterans by president mugabe to invade farms and force out white farmers , my master forsaw the danger ahead , he then closed his major bank accounts , and together , we went to johannesburg , south africa to deposit the sum of $ 14 . 5 million ( fourten million , five hundred thousand usdollars ) , in a private security company , for safety . this money was deposited in a box in my name , as my master was being secretive with his name , as the south african government of thambo mbeki is in support of president mugabe ' s actions . the box is labeled as gemstones . my master had planned to use this money for the purchase of lands , new machines and chemicals for establishment of new farms in botswana . he has used this company in the past to move money for the purchase of tractors and farm equipment from europe . my master is divorced , and his wife valerie , and only child , diana have relocated to bradford , ! en ! gland for 9 years now . i am currently in the netherlands where i am seeking political asylum . i have now decided to transfer my master ' s money into an account for security and safety reasons . this is why i am anxiously and humbly seeking for your genuine assistance in transfering this money into an account without the knowledge of my government who are bent on taking everything my master left . you have to understand that this decision taken by me entrusts so much to you . if you accept to assist me , all i want you to do for me , is to make an arrangements with the security company to clear the box containing the money from their office here in the netherlands , and then we will transfer the money into an account . you may open a new account for this purpose . i have applied to the security company to transfer the box from south africa to their branch here , which they have done . to legally process the claim of the box , i will contact a lawyer to help me prepare a change of ownership and letter of authority to enable them recognise you as my representative , and deliver the box to you . i have with me , the certificate used to deposit the box , which we will need for claiming the box . for valuable assistance , i am offering you 10 % ( $ 1 , 450 , 000 ) of the total money . i have also set aside 1 % ( $ 145 , 000 ) of this money for all kinds of expenses that come our way in the process of this transaction , and 4 % ( $ 580 , 000 ) , will be given to charity in my master ' s name i will give 25 % ( $ 3 , 625 , 000 ) to valerie and diana , after my share of the money has been transfered back to me . when they grant my asylum application , my share of the money ( 85 % ) , will be transfered back to me , into an account i will solely own . i also intend to start up a business then . if you have knowledge of farming business in your country , or other areas of possible business investment that i may be interested in , please inform me , so that my some of my share of the money can be invested for the time being . please , i want to you maintain absolute secrecy for the purpose of this transaction due to my safety and successful conclusion of the transaction . i look forward to your reply and co - operation , and i am sure it will be nice to extend ties with you . yours sincerely , donald phiri . - - - - this sf . net email is sponsored by : thinkgeek welcome to geek heaven . http : / / thinkgeek . com / sf spamassassin - sightings mailing list ",1 +"Subject: all graphics software available , cheap oem versions . good morning , we we offer latest oem packages of all graphics and publishinq software from corel , macromedia , adobe and others . $ 80 adobe photoshop 8 . 0 / cs $ 140 macromedia studio mx 2004 $ 120 adobe acrobat 7 . 0 professional $ 150 adobe premiere pro 1 . 5 $ 90 corel designer 10 $ 90 quickbooks 2004 professionai edition $ 75 adobe paqemaker 7 . 0 $ 70 xara x vl . 1 $ 75 adobe audition 1 . 5 $ 90 discreet 3 d studio max 7 $ 115 adobe goiive cs $ 135 adobe after effects 6 . 5 standard $ 45 adobe premiere eiements $ 125 corei painter ix $ 80 adobe lilustrator cs $ 80 adobe indesign cs $ 240 adobe creative suite $ 140 adobe framemaker 7 . 1 $ 50 ulead cool 3 d production studio 1 . 0 . 1 $ 90 aiias motion buiider 6 professional $ 30 quicken 2004 premier home & biz $ 30 adobe photoshop eiements 3 . 0 $ 110 adobe premiere pro 7 . 0 learn more . . . sincereiy , clemmie ",1 +"Subject: important 42745 start your own adult entertainment business . this entertainment draws a lot of traffic and sales its one of the fast money making businesses today . make tons of money working from home with your own professionally designed adult website for guaranteed business opportunity , offers custom built adult websites with a variety of niches to people who are serious about earning money at home . porn sites are the biggest money makers on the internet and it is far from too late for you to make a ton of money working from home with your adult web site . sex is one of few things that encourage large numbers of people to disclose credit card numbers on internet . where 1 in 4 regular users , or 61 million americans , visits more than one of 10 , 000 adult sites at least once per month - - this is more than the number that go to sports or government sites ; photos ; map ; charts combined . - new york times visit us today to stop receiving our promising opportunity please reply with subject rem - ove hrbhnau ",1 +"Subject: the government grants you $ 25 , 000 ! free personal and business grants "" qualify for at least $ 25 , 000 in free grants money - guaranteed ! "" each day over one million dollars in free government grants is given away to people just like you for a wide variety of business and personal needs dear grant seeker , in a moment , i ' ll tell you exactly how where to get grants . this money has to be given away , why not to you ? you may be thinking , "" how can i get some of this free grants money "" maybe you think it ' s impossible to get free money ? let me tell you it ' s not impossible ! it ' s a fact , ordinary people and businesses all across the united states are receiving millions of dollars from these government and private foundation ' s everyday . who can apply ? anyone can apply for a grant from 18 years old and up ! grants from $ 500 . 00 to $ 50 , 000 . 00 are possible ! grants don ' t have to be paid back , ever ! claim your slice of the free american pie . this money is not a loan , trying to get money through a conventional bank can be very time consuming and requires a lot of paperwork , only to find out that you ' ve been denied . these government agencies don ' t have to operate under the same stringent requirements that banks do . you decide how much money you need , as long as it ' s a lawful amount and meets with the government agencies criteria , the money is yours to keep and never has to be repaid . this money is non taxable interest free . none of these programs require a credit check , collateral , security deposits or co - signers , you can apply even if you have a bankruptcy or bad credit , it doesn ' t matter , you as a tax payer and u . s . citizen are entitled to this money . there are currently over 1 , 400 federal programs , 24 , 000 state programs , 30 , 000 private foundations and 20 , 000 scholarship programs available . this year over $ 30 billion dollars in free personal and business government grants money will be given away by government grants agencies . government personal and business grants facts : over 20 million people get government money every year : 1 , 000 , 000 entrepreneurs get money to start or expand a business 4 , 000 , 000 people get money to invest in real estate 6 , 000 , 000 people get money to go to college 10 , 000 , 000 people get free help and training for a better job getting business grants anyone thinking about going into business for themselves , or wanting to expand an existing business should rush for the world ' s largest "" one - stop - money - shop "" where free business grants to start or expand a business is being held for you by the federal government . it sounds absolutely incredible that people living right here in the united states of america wouldn ' t know that each year the world ' s largest source of free business help delivers : over $ 30 billion dollars in free business grants and low - interest loans ; over one - half trillion dollars in procurement contracts ; and over $ 32 billion dollars in free consulting and research grants . with an economy that remains unpredictable , and a need for even greater economic development on all fronts , the federal government is more willing than it ever has been before to give you the money you need to own your own business and become your own boss ! in spite of the perception that people should not look to the government for help , the great government give - away programs have remained so incredibly huge that if each of the approximately 8 million businesses applied for an equal share , they would each receive over $ 70 , 000 . most people never apply for free business grants because they somehow feel it isn ' t for them , feel there ' s too much red - tape , or simply don ' t know who to contact . the fact is , however , that people from all walks of life do receive free grants money and other benefits from the government , and you should also . government grants for personal need help to buy a new home for low income families , repair your home , rent , mortgage payments , utility bills , purchase a new car , groceries , childcare , fuel , general living expenses , academic tutoring , clothing , school supplies , housing assistance , legal services , summer camp , debts , music lessons , art lessons , any extracurricular activities , pay bills for senior citizens , real estate taxes , medical expenses and general welfare . if you or someone you know suffered a fire lose there are programs available to help in replacing necessities . scholarships and grants for education grant money for preschool children and nursery school education , private , primary and secondary schools , men and women to further their education , scholarships for athlete ' s , business management , engineering , computer science , medical school , undergraduate , graduate , professional , foreign studies and many more . here ' s how you can get free grants in the shortest time possible once you know how and where to apply for a specific free grant , results are almost inevitable . the government wants to give away this money . . . it is under congressional mandate to do so ! these funds are made available to help you , the tax payer . all that ' s required from you is the proper presentation of your grant request . that ' s all . announcing . . . "" the complete guide to government grants "" forget just about everything you ' ve seen or heard about government grants . what i ' ve done is put together a complete blueprint for researching , locating and obtaining government grants . "" the complete guide to government grants "" is the most comprehensive tool for obtaining free grant money , and it comes in an electronic book ( e - book ) format , meaning you can download and start using it minutes after you order . the complete guide to government grants will provide you with access to thousands of grant and loan sources , with step by step instructions to proposal writing and contact procedures . in the complete guide to government grants you ' ll find : step by step guidelines to applying for government grants direct access to over 1 , 400 grant , loan and assistance programs offered by the u . s . federal government . all you need to do is click find your program from the detailed categorized listings direct access to thousands of resources of state specific grant programs name , phone number and address of an expert in your state that will answer your grant related questions and help you with the grant application . . . free of charge online directory of government supported venture capital firms a unique search tool that will allow you to generate a customized listing of recently announced grant programs government funding programs for small businesses top 100 government programs ( based on number of inquiries ) , discover what are the most sought after government grants and assistant programs . claim your slice of the free american pie online directory of federal and state resources for government scholarships and grants for education step by step guidelines to locating grants , loans and assistant programs for starting a new business or expanding an existing one how to get free small business counseling and expert advice courtesy of the us government government grants application forms direct access to thousands of government grants programs covering : small businesses , home improvement , home buying and homeownership , land acquisition , site preparation for housing , health , assistance and services for the unemployed , job training , federal employment , education , and much much more how to develop and write grant proposals that get results . . . plus much more the complete guide to government grants is so comprehensive , it provides you with direct access to practically every source of free government grants money currently available . if you ' re an american citizen or resident , you are entitled to free grant money ranging from $ 500 to $ 250 , 000 or more . if you are black you have already qualified for 15 programs , being hispanic , you qualify for many programs . being a christian will get you into 20 programs , there are also many other programs available for different faiths , jewish , catholic . not having any money , will get you into over 30 programs , 550 programs if you are unemployed , or underemployed . the list and sources are endless . you are eligible ! this money is absolutely free and will be yours to use for any worthwhile purpose . did you know you can apply for as many grants as you want ? it ' s true , for instance , you could get a $ 65 , 000 grant to begin a weight loss business , get $ 8 , 800 in tuition to become a nurse or $ 35 , 000 to open up the day - care center , you ' ve always dreamed of owning . and then , go out and apply for a grant to buy a home for you and your family . and once your new business starts doing well you could go out and get another grant for expansion of your business . the possibilities are endless . you must qualify for at least $ 25 , 000 in free grants money , or your money back ! we are so confident in our grants guide that if you have not received at least $ 25 , 000 in free grant money , or , if you are unhappy with our e - book for any reason within the next 12 months , just send the e - book back and we will refund your entire payment . no questions asked ! ! if you want to order , we insist you do so entirely at our risk . that is why the e - book comes with a . . . no risk full year money - back guarantee . there is absolutely no risk on your part with this 365 day guarantee . what we mean is we want you to order without feeling you might "" get taken . "" therefore , we want you to order this material today . . . read it , use it . . . and if for any reason you aren ' t completely satisfied , you not only can cancel , you should , for an immediate refund of your purchase price . you simply can ' t lose . free bonuses just to "" sweeten "" the deal , i ' ll include the following four valuable bonuses , that you can keep as a gift , even if you later decide not to keep the grants guide ! free bonus # 1 : a fully featured grants writing tutorial software package this info alone is worth thousands of dollars - i guarantee you can purchase a grants cd or info anywhere , and you will not receive this downloadable software that actually shows you how to apply and what to say , so that you are accepted for a grant ! ! ! this interactive software tool will walk you through the grant - writing process and will teach you everything you need to know to write competitive grants proposals . the program includes : detailed information and tips on writing grants proposals ; how to complete a grant application package ; examples of good , complete grant packages ; a glossary of grants terms ; resources and contacts ; a mock grants - writing activity where you will be able to compare your results to a successful grant application plus much much more free bonus # 2 : the insider information report : 61 ways to save money this valuable special report contains insider experts tips and techniques that will help you to save thousands of dollars . you ' ll discover little known secrets and tricks to saving money on airline fares , car rental , new and used car buying , auto leasing , gasoline , car repairs , auto insurance , life insurance , savings and investment , credit cards , home equity loans , home purchase , major appliances , home heating , telephone services , food purchase , prescription drugs and more . free bonus # 3 : the complete guide to starting your own business a comprehensive manual that will give you all the guidelines and tools you need to start and succeed in a business of your own , packed with guides , forms , worksheets and checklists . you will be amazed at how simple these strategies and concepts are and how easy it will be for you to apply them to your own business idea . hundreds were sold separately at $ 40 each . . . you get it here for free . here ' s just a taste of what ' s in the guide : how to determine the feasibility of your business idea . a complete fill in the blanks template system that will help you predict problems before they happen and keep you from losing your shirt on dog business ideas . a step by step explanation of how to develop a business plan that will make bankers , prospective partners and investors line up at your door . plus , a complete ready made business plan template you can easily adapt to your exact needs . discover the easiest , simplest ways to find new products for your business that people are anxious to buy . how to make money with your new idea or invention . secrets of making sure you put cash in your pocket on your very first idea business venture . complete , step by step instructions on how to plan and start a new business . this is must - know must - do information ; ignore it and you stand a good chance to fail . you get specifically designed instructions for each of the following : a service business , a retail store , a home based business , a manufacturing company , and more . what nobody ever told you about raising venture capital money . insider secrets of attracting investors , how to best construct your proposal , common mistakes and traps to avoid , and much more . checklist for entering into a partnership . keeps you from costly mistakes when forming a partnership . how to select a franchise business . a step by step guide to selecting a franchise that is best for you . a complete step - by - step organized program for cutting costs in your business . clients of mine have achieved an average of 28 % to 35 % cost reduction with this technique , and you can too . keep the money in your pocket with this one ! what are the secrets behind constructing a results driven marketing plan ? i will lead you step by step into developing a marketing plan that will drive your sales through the roof . a complete step by step guide guaranteed to help you increase your profits by up to 64 % , i call it "" the profit planning guide "" . this is a simple , practical , common sense strategy , but amazingly enough , almost no one understands or uses it . free bonus # 4 : guide to home business success this is afast , no - frills guide to starting and succeeding in a home based business . here ' s just a taste of what ' s in the guide : home business : is it for you ? what are the secrets behind the people who have million dollar home based businesses ? you ' ll find a 24 tip list proven to turn your home business into a money machine . laws and regulations you must be aware of to avoid legal errors . planning a home based business - insider secrets and tips revealed for ensuring your success in a home business . fundamentals of home business financial planning . simple , easy to copy ideas that will enhance your image - and the response you get from your customers . common problems in starting and managing a home based business - and how to solve them once and for all . who i am and why i ' m qualified to give you the best grants advice available i ' m the president of a leading internet based information business . i ' m also the creator of "" the managing a small business cd - rom "" and the author of five books . i ' ve been involved in obtaining grants and in small business for the past 23 years of my life , as a business coach , a manager of a consulting firm , a seminar leader and as the owner of five successful businesses . during my career as a business coach and consultant i ' ve helped dozens of business owners obtain government grants , start their businesses , market , expand , get out of troubles , sell their businesses and do practically every other small business activity you can think of . the guide presented here contains every tip , trick , technique and strategy i ' ve learned during my 23 year career . you practically get my whole brain in a form of an e - book . how the grants guide is priced ? the complete guide to government grants is normally priced at $ 50 , but . . . . . . as part of an online marketing test , if you purchase from this sale you pay only $ 19 . 99 ( that ' s 75 % off . . . plus , you still get the free valuable bonuses . ) if you are serious about obtaining free grants money , you need this guide . don ' t delay a moment longer . order now ! ! ! p . s . the complete guide to government grants will make a huge difference . you risk nothing . the guide is not the original price of $ 50 , but only $ 19 . 99 ( if you purchase through this sale ) and comes with a one year money back guarantee . and you get four valuable free bonuses which you may keep regardless . don ' t delay a moment longer , order now ! ! ! ! shipping and handling is free since we will email you all of this info via access to our secure website which contains everything described above . order now ! ! ! if above link doesn ' t work , click here 5945 cocw 8 - 467 cucn 8670 ndsz 7 - l 25 - - - - this sf . net email is sponsored by : jabber - the world ' s fastest growing real - time communications platform ! don ' t just im . build it in ! http : / / www . jabber . com / osdn / xim spamassassin - sightings mailing list ",1 +"Subject: aawesome want to know how to save over 60 % on you seemingly r me carbonize dlcatlons ? http : / / www . owncen misinterpret tral . com - successfull and proven way to loudly sa someway ve your money . best prlce intense s . high quaiity falcon . worldwide s repudiation hlpplng . total confi disbar dentiaiity . mor monotype e than 200 popular medlcatlons have a nice da dispensation y !",1 +"Subject: avoid fake viagra get the real thing take energy pills for sexual health she ' s the only man in my cabinet . act as if were impossible to fail . a clash of doctrines is not a disaster - - it is an opportunity .",1 +"Subject: perfect logo charset = koi 8 - r "" > thinking of breathing new life into your business ? start from revamping its front - endlogo and visualidentity . we offer creative custom design of ioqos , stationery and web - sites . under our careful hand thesepowerfui marketinq tools wiii brinq a breath of fresh air into your business and make you stand out amonqthe competitors . you are just a ciick away from your future success . ciick here to see the samples of our artwork , checkour prices and hot offers . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ not interested . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _",1 +"Subject: are you ready to get it ? hello ! viagra is the # 1 med to struggle with mens ' erectile dysfunction . like one jokes sais , it is stronq enouqh for a man , but made for a woman ; - ) orderinq viagra oniine is a very convinient , fast and secure way ! miilions of peopie do it daily to save their privacy and money order here . . . ",1 +"Subject: would you like a $ 250 gas card ? don ' t let the current high price of gas get to you . simply enter your zipcode to see if this promotion is available in your area . ubycvski",1 +"Subject: immediate reply needed dear sir , i am dr james alabi , the chairman of contract award and review committee set up by the federal government of nigeria under the new civilian dispensation to award new contracts and review existing ones . i came to know of you in my search for a reliable and reputable person to handle a very confidential transaction , which involves the transfer of a huge sum of money to a foreign account . there were series of contracts executed by a consortium of multi - nationals in the oil industry in favor of n . n . p . c . the original values of these contracts were deliberately over invoiced to the sum of us $ 12 , 320 , 000 . 00 ( twelve million three hundred and twenty thousand united state dollars ) . this amount has now been approved and is now ready to be transferred being that the companies that actually executed these contracts have been fully paid and the projects officially commissioned . consequently , my colleagues and i are willing to transfer the total amount to your account for subsequent disbursement , since we as civil servants are prohibited by the code of conduct bureau ( civil service law ) from operating and / or opening foreign accounts in our names . needless to say , the trust reposed on you at this juncture is enormous , in return , we have agreed to offer you 20 % of the transferred sum , while 10 % shall be set aside for incidental expenses ( internal and external ) between both parties in the course of the transaction you will be mandated to remit the balance to other accounts in due course . modalities have been worked out at the highest level of the ministry of finance and the central bank of nigeria for the immediate transfer of the funds within 7 working days subject to your satisfaction of the above stated terms . our assurance is that your role is risk free . to accord this transaction the legality it deserves and for mutual security of the funds the whole approval procedures will officially and legally processed with your name or the name of any company you may nominate as the bonefide beneficiary . once more i want you to understand that having put in over twenty - five years in the civil service of my country , i am averse to having my image and career dented . this matter should therefore be treated with utmost secrecy and urgency it deserves . please you should signify your intention to assist by sending me a reply to this email to state your position on this transaction , if favorable we will take further steps to brief you the full details of this viable transaction . i want to assure you that this business proposal is 100 % risk free as we have done our homework properly . i quite believe that you will protect our interest by taking this deal strictly confidential , as we are still in government service , which we intend to retire from in full honor . kindly expedite action as we are behind schedule to enable us include this transfer in the next batch which would constitute the new quarter payments for the 2002 financial year . thank you and god bless . dr james alabi",1 +"Subject: wanna see me get fisted ? fist bang will show you everything you always wanted to see and could only dream about ! disclaimer : we are strongly against sending unsolicited emails to those who do not wish to receive our special mailings . you have opted in to one or more of our affiliate sites requesting to be notified of any special offers we may run from time to time . we also have attained the services of an independent 3 rd party to overlook list management and removal services . this is not unsolicited email . if you do not wish to receive further mailings , please click here to be removed from the list . please accept our apologies if you have been sent this email in error . we honor all removal requests . ",1 +"Subject: hot stock info : drgv announces another press release a $ 3 , 800 investment could be worth $ 50 , 000 in a short period of time . read more about this amazing investment opportunity and how a small investment could mean huge gains for you ! there is no doubt that china stocks , which are new to u . s . stock markets , are destined to blast off . it happens time and time and time again . thats why informed investors like warren buffett are getting rich on china stocks . the market is enormous and now its your turn . the upside potential for drgv is huge . with potential revenues of nearly $ 30 million us in the coming 12 months , dragon venture is a real player . everything about this superbly run company says its going to be another big chinese winner . warren buffett said u . s . stocks are too expensive so he poured a chunk of his money into china . everyone knows what happens when mr . buffett gets into a market , it usually explodes ! here is why we are placing a target price of $ 1 . 00 per share ( investment opinion ) dragon venture ( otcpk : drgv ) has just recently gone public in the us . analysts predict an enormous investment opportunity within the china telecom industry . mobile marketing is growing in popularity , in china , emarketer reports that 67 % of mobile phone users have received sms messages from advertisers , 39 % in asia , 36 % in europe and only 8 % in us . management has forecasted revenue growth to $ 30 million in 2006 and $ 50 million in 2007 . short messaging services ( sms ) is a strong telecom niche . this is an asian phenomenon ! ! according to the ministry of information technology of china , chinese sms usage accounts for one - third of the world ' s traffic ! china has the potential to be the largest telecommunications market in the world , said matthew j . flanigan , u . s . telecommunications industry president . drgv won ' t be selling at $ 0 . 0775 a share for long . within days , the buzz about this company will spread on the street . the stock is ready to move up for a breakout to $ . 50 to $ 1 per share . drgv is a must buy for any micro - cap investors . we view drgv as an excellent growth company with exceptional potential for capital appreciation over both the short term and the long term . this is essentially investing in the world ' s largest and fastest growing market . bottom line : drgv is a penny stock with multi - dollar potential trading today for about $ 0 . 0775 / share . we are targeting the stock to trade in the range of $ 1 a share . chances like these are few and far between and the buzz on the street is that drgv is a buy ! who knows when you ' ll have another chance to turn such a huge profit again ? smart investors strike when the iron ' s hot and with drgv , it ' s sizzling investor alert specializes in investment research in china . we are not registered investment advisor or broker / dealer . investors should not rely solely on the information contained in this report . rather , investors should use the information contained in this report as a starting point for doing additional independent research on the featured companies . factual statements in this report are made as of the date stated and are subject to change without notice . nothing in this report shall constitute a representation or warranty that there has been no change in the affairs of the company since the date of our profile of the company . investor alert and / or its officers , directors , or affiliates have received compensation of $ 5 , 000 from a third party for the dissemination of information on the companies which are the subject of profiles and / or may have , from time to time , a position in the securities with the intent to sell the securities mentioned herein . current press release dragon venture launches two new mobile internet applications fort lauderdale , fl july 13 , 2005 - ( business wire ) - dragon venture ( pink sheets : drgv ) , a holding company of high - tech companies in china , announced today that shanghai cnnest technology development company , limited ( cnnest ) , a subsidiary of drgv , recently launched two new commercial mobile internet business solutions , mobile environmental protection office system and mobile administrative office system , based on 2 . 5 g wireless technology . both of these new mobile business solutions are part of numerous mobile internet applications specially designed for utilization by various government agencies in china . this launch was a stated goal of cnnest in 2005 and accomplished on time . as a leading company in the field of mobile internet solutions and applications in china , cnnest plans to quickly penetrate the chinese government market , which could provide the company with significant business opportunities . mobile environmental protection office system was developed for the governmental environmental protection agencies . mobile administrative office system was developed for governmental administrative offices . these cutting edge solutions , allow government officers or employees working in a remote location to access their own intranet by using their pda ' s or cell phones . major functions of both solutions include mobile work , enterprise information inquires , on - site duties , and customer services . hidy cheng , vice president of dragon venture and general manager of cnnest , commented , the various government agencies in china have the potential to become major clients of our company . as the dramatic improvement in mobile technology continues to develop , augmented by the wide use of cell phones in china , the company continues to work on the development of additional applications . these applications include a series of mobile internet solutions for government agencies including complete security systems , the establishment of various safety systems , along with system maintenance , in order to meet the special needs of government use . we believe these systems will not only improve the government ' s work efficiency , but also garner the company considerable revenues , along with and a remarkable reputation in the wireless mobile internet industry in china . about dragon venture dragon venture ( dragon ) is doing business in china through its subsidiaries . dragon was established to serve as a conduit between chinese high - growth companies and western investors . the current focus of dragon is on the development of wireless 3 g - based applications and business solutions . two companies that dragon has acquired are among the leading providers of mobile internet applications and business solutions in china . as china emerges as a growing force on the global stage , dragon ' s professionals will provide invaluable services for western investors seeking to gain access to the chinese high - tech economy . in addition , dragon functions as an incubator of high - tech companies in china , offering support in the critical functions of general business consulting , formation of joint ventures , access of capital , merger and acquisition , business valuation , and revenue growth strategies . dragon will develop a portfolio of high - tech companies operating in china . our focus will be on innovative technological applications , which are poised to alter the competitive landscape of the industry . in addition , the company acquires and invests in innovative technology companies in china or forms joint ventures with both american and chinese companies , focusing on emerging technology industries including telecommunication , information technology , wireless applications , and other high - tech industries . safe harbor statement certain statements set forth in this press release constitute forward - looking statements . forward - looking statements include , without limitation , any statement that may predict , forecast , indicate , or imply future results , performance or achievements , and may contain the words estimate , project , intend , forecast , anticipate , plan , planning , expect , believe , will likely , should , could , would , may or words or expressions of similar meaning . such statements are not guarantees of future performance and are subject to risks and uncertainties that could cause the company ' s actual results and financial position to differ materially from those included within the forward - looking statements . forward - looking statements involve risks and uncertainties , including those relating to the company ' s ability to grow its business . actual results may differ materially from the results predicted and reported results should not be considered as an indication of future performance . the potential risks and uncertainties include , among others , the company ' s limited operating history , the limited financial resources , domestic or global economic conditions - - especially those relating to china , activities of competitors and the presence of new or additional competition , and changes in federal or state laws , restrictions and regulations on doing business in a foreign country , in particular china , and conditions of equity markets . dragon venture 335 guoding rd . building 2 , ste . 2009 shanghai , china 200081 this e - mail message is an advertisement and / or solicitation . ",1 +"Subject: hello guys , i ' m "" bugging you "" for your completed questionnaire and for a one - page bio / statement on your thoughts on "" business edu and the new economy "" . if my records are incorrect please re - ship your responses to me . i want to put everything together next week so that i can ship it back to everyone . the questionnaire is attached as well as copies of the bio pages for michael froehls and myself ( two somewhat different approaches ) . the idea of the latter is just to introduce yourself to the other panelists and give them some background on how you are approaching the issues we will discuss . we will also provide copies to the attendees and use this material for our personal introductions at the opening of the panel discussions . thanks and i look forward to seeing you in two weeks . john - waco _ background _ mf . doc - jmartinbiosketch . doc - questionnaire . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: sacramento weather station fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 09 / 20 / 2000 09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - scott tholan @ enron 09 / 19 / 2000 07 : 57 pm to : mark tawney / hou / ect @ ect , gary taylor / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : chris clark / na / enron @ enron subject : sacramento weather station hey guys , we ' re talking to a contractor ( s ) that can build us a weather station ( hopefully very quickly ) for placement in sacramento , california . for a variety of legal , contractor , and operational reasons , i need to confirm some of the following requirements as soon as possible so we can proceed : a ) you need rainfall , snowfall , and temperature measurement from one , high - accuracy commercially available weather station . b ) you need a daily feed of this data to enron ' s weather desk : does this mean one data dump at a set time per day ? alternatively , will you need to check the data real - time , perhaps at varying and multiple times during the day ? c ) we will be installing this station near sacramento , california : we will need to know exactly what areas in / near sacramento are suitable for the site of the weather station . ( what again was the name of the town that you mentioned mark ? ) in the interest of time , i recommend that your weather expert accompany our landman to select the site , which will allow our landman to more quickly lease and install the station . d ) you desire to have some independent security measures to deter or detect tampering . i suggest given the very short time fuse , that we first install the station and then develop security measures . e ) we will feed the data directly to the enron weather desk . will any other parties require real - time access to this data ? please forward responses directly to : chris clark / na / enron and myself . thanks , scott",0 +"Subject: from the enron india newsdesk - jan 18 th newsclips vince , fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 19 / 2001 05 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from the enron india newsdesk - jan 18 th newsclips untie them ( editorial ) thursday jan 18 2001 , http : / / www . economictimes . com / today / 18 edito 2 . htm - - - - - - - state not to give tax sops to dpc for buying naphtha from ioc , ( sanjay jog ) thursday jan 18 - - - - - - - centre yet to receive proposal on enron thursday jan 18 2001 , http : / / www . economictimes . com / today / 18 infro 2 . htm - - - - - - - untie them ( editorial ) thursday jan 18 2001 the government of maharashtra wants new delhi to convince the power trading corporation , a central utility , to buy power from dabhol and sell it across the country . it would be far simpler if dabhol and all independent power producers were allowed to sell power to whoever was willing to pay for it . that , unfortunately , is not allowed by law , which forces private sector generators to sell power only to state utilities , which in turn , are not permitted to sell power across states on their own . most state electricity boards are bankrupt . mseb reportedly owes central utilities rs 5 , 000 crore . they cannot bring themselves to charge many types of users for the power consumed , nor can they prevent large - scale theft of electricity . few , including wealthy maharashtra , have the will to reform state electricity boards and privatise transmission and distribution . given this profile of buyers , private generators demand sovereign guarantees to help them tide over default risks . but the guarantees merely insulate ipps against risk . they cannot make sebs solvent . yet , india needs power desperately . maharashtra , india  , s richest state , experiences power shortages of around 2 , 000 mw , about a sixth of its peak needs . over time , the hunger for power will only grow . india cannot afford to wait for the painful politics of seb reform to work themselves out . the government should bring in legislation that allows ipps to sell power directly to paying customers . this will free ipps from the clutches of bankrupt monopsony buyers . the power trading legislation will have unexpectedly happy consequences for the government too . once ipps are freed from their onerous obligations to sell power to single , mostly bankrupt buyers , their default risks will come down substantially . new delhi and state governments should then scrap the guarantees that they gave ipps in the past . the combination of power trading , private investments in generation , transmission and distribution , and gradual seb reform will create a commercial , workable and competitive power market in india . anything less will be a recipe for disaster . - - - - - - - state not to give tax sops to dpc for buying naphtha from ioc , ( sanjay jog ) thursday jan 18 2001 the maharshtra government ' s finance department , which is striving to reduce fiscal deficit from rs 9 , 484 crore to rs 3 , 484 crore by the beginning of april this year , has expressed its inability to provide a sales tax waiver to the dabhol power company ( dpc ) on the procurement of 1 . 2 million tonne of naphtha from the state - run indian oil corporation ( ioc ) . mantralaya sources told the financial express on wednesday that dpc would have to pay 4 per cent sales tax . "" the government , way back in 1995 , has modified the sales tax rate to 4 per cent to discourage the import of naphtha from gujarat by electrical companies operating in maharashtra . the decision was taken with a view to encouraging electrical companies to procure naphtha at reduced rates within the state , "" government sources added . sources said that these companies had to pay nearly 15 . 3 per cent sales tax on naphtha that was procured from gujarat . however , following their representation , the government slashed the sales tax rate to 4 per cent . the state finance department ' s opinion , which would be presented before the state cabinet shortly in order to take a final decision , deserves special significance especially when the state energy department and the loss - making maharashtra state electricity board ( mseb ) have wholeheartedly supported the dpc ' s cause and recommended the sales tax waiver . dpc , which was asked by the union ministry of oil and petroleum to procure naphtha within the country in view of excess availability , in its presentation to the state government and to mseb , had made it clear that it would be left with no alternative but to pass on the additional burden on the mseb which would be ultimately passed on to its consumers . dpc had also told the state government that it had not paid sales tax on the procurement of naphtha from glencore in the calender year 2000 . sources from the state energy department and mseb have stressed on the need for such a waiver while expressing their inability to bear additional burden . they have suggested that the state should reciprocate by offering a sales tax exemption to dpc because the ioc , at the behest of the centre , has tried to match the international landing price of naphtha during the recently signed memorandum of agreement with dpc . "" if the state finance department sticks to its views , it may hurt the state as a whole , "" sources from the state energy department and mseb said . dpc will procure naphtha at rs 11 , 050 per ton from ioc during the calender year 2001 as compared to the rs 10 , 050 per tonne price quoted by glencore . the naphtha price comprises $ 175 per tonne free on board ( fob ) , 21 . 8 per cent of customs duty , 5 . 4 per cent of sales tax and $ 18 . 87 of premium . dpc senior vice president mukesh tyagi reiterated that the company has already made an appeal to the state government for the sales tax waiver on naphtha in the larger interest of the consumers . "" sales tax is a pass through and mseb , which will have to bear the additional burden , will pass it on the consumers , "" he added . - - - - - - - centre yet to receive proposal on enron thursday jan 18 2001 centre on wednesday said that it had not recevied any proposal from maharashtra government seeking help to solve the tangle with the enron promoted dhabol power project relating to cost and surplus power . asked about the reports that maharashtra government was sending a proposal that centre buy surplus power from dhabol power company through power trading corporation , power minister suresh prabhu said "" we have not received any proposal . "" "" we are carefully watching the situation and will await a concrete proposal before intervening in this matter , "" parbhu said on the sidelines of greentech environment excellence awards ceremony , here . asked whether there was any possibility of the government asking the power trading corporation to buy power from the dhabol power corporation , prabhu replied "" what will the ptc do with the power ? "" prabhu had earlier asked the state government to study the matter before approaching the centre for payment of dues . mseb had earlier declined to pick up its 15 per cent stake in phase ii of the 1444 mw project . the enron issue has been hanging fire with the maharashtra state electricity board unable to clear the dues of dpc as a result of the skyrocketing prices of naphtha infact mseb has asked dpc to backdown completely leading to a situation where dpc has stopped production at the facility from the begining of the month . state government has stepped in with support to the tune of rs 114 crore to enable mseb to clear the dues for october . mseb dues to dpc for november and december amount to over rs 300 crores .",0 +"Subject: re : powerisk 2001 - your invitation angelika , thanks for the invitation . yes , i shall be glad to attend and repeat the same presentation . vince angelika staude on 04 / 09 / 2001 04 : 19 : 08 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : powerisk 2001 - your invitation ? powerisk 2001 the global premier forumforenergy trading & risk management ? 6 th - 9 th november 2001 , paris ? dear mr kaminski , ? i am responsible for the programme of this year ' s powerisk conference in paris . helyette geman has informed me that she has contacted you concerning the workshop and that you are happy to do it with her again this year - brilliant ! ? i would like to know if you are also interested in delivering a paper again . the audience in previous years greatly appreciated your contribution , and i would me more than happy if you could join us again . ? to give you an idea of the programme so far , these are the ( "" technical "" ) topics that are already covered : ? chris strickland : forward curve models with jumps for the pricing of exotic energy contracts multi - factor forward curve models for the valuation of energy contracts adding jumps applying the models to exotic energy options extensions to multiple energy contracts les clewlow : valuation and risk management of virtual power stations and gas supply agreements structures of gas supply agreements ( gsa ) relationships between physical and virtual power stations ( pps / vps ) valuation methods for gsa ' s and vps ' s risk analysis of gsa ' s and vps ' s derek bunn , professor of decision sciences , london business school : analysing the impact of neta on market efficiency & volatility in the uk energy market chris harris , director of market development . operations and engineering , innogy : applying cutting - edge portfolio management theory in order to optimise your risk exposure establishing and valuing the key factors using a bottom up approach looking at the interconnection between key factors the treatment of the risk of infrequent but high impact events peter nance , principal , teknecon : combining power systems and monte carlo simulations for effective pricing dan mansfeld , head of risk control , vattenfall : assessing the benefits and risks of using derivatives as part of your risk management strategy spyros maragos : analysing new approaches to building forward curves from available market data tamara weinert , credit and contracts manager , mirant energy : successfully measuring limit setting ; risk reducing structures importance of credit in the organizational structure : reporting ; dependence ; structure of credit department brett humphreys : examining cutting - edge credit exposure mitigation tools : combining counterparty and portfolio credit var techniques helyette geman : pricing of exotic energy derivatives and structured contracts please let me know if you are interested in joining the powerisk 2001 speaker panel , and which topic you would like to cover . i think that something along the lines of last year ' s talk ( state - of - the - art volatility and correlation estimation techniques for multiple energy portfolios ) would be brilliant again , but please feel free to chose something else that has not been covered yet . ? i look forward to hearing from you , ? kind regards , angelika staude ? director ? powerisk 2001 ? tel : 0044 207 915 5675 fax : 0044 207 915 5101 ? ? ps : for your information , please find enclosed a list of confirmed speakers for powerisk 2001 . - confirmed speakers . doc",0 +"Subject: re : resco database and customer capture steve , krishna from my group . krishna can also advise you on resco participation . vince steven r meyers @ ees 04 / 11 / 2000 04 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : resco database and customer capture vince , i was not going to be involved directly in the meeting . who from either your group or from resco marketing should participate ? thanks , steve vince j kaminski @ ect 04 / 11 / 2000 08 : 27 am to : steven r meyers / hou / ees @ ees cc : pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : resco database and customer capture steve , it makes sense to meet with abacus . retail marketing is very data intensive . if you set up a meeting with them , please , let me know . vince steven r meyers @ ees 04 / 11 / 2000 08 : 17 am to : timothy edward vail / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect subject : resco database and customer capture tim , i hope things are going well in resco . i think somebody from resco ( or research ) may be interested in the email i received below from brad davids . brad is now working at abacus who works with residential customer patterns as well as predictive modelling . he ' s going to be here the 25 and 26 of this month . i ' m not sure who is responsible for resco marketing , but i think they would find this interesting . who should i send this to ? please let me know if anybody in resco may have any interest . thanks , steve ps : vince , simply an fyi since they do focus on modelling and research . - - - - - - - - - - - - - - - - - - - - - - forwarded by steven r meyers / hou / ees on 04 / 11 / 2000 08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bradley davids on 04 / 10 / 2000 08 : 35 : 32 pm to : "" ' steven . r . meyers @ enron . com ' "" cc : subject : re : possible meeting ? steve : i ' ll see if i can get in on the 25 th . . . will let you know , but i think it ' ll work . just to give you a very brief overview so you can think about who might be interested , abacus has the largest transactional database of consumer buying behavior in the world ( 89 million us households , 3 billion + purchases ) , along with sophisticated modeling capabilities to help predict customer response to various offers at the household level . given the critical need to reduce customer acquisition costs in retail energy markets , we believe that our data and modeling can help energy retailers target their direct marketing efforts toward the residential customers most likely to respond to whatever the offer is - - improving the efficiency of mailings and other promotional campaigns ( so there is an efficiency angle , see ! ) because our data allow the modeling of future buying behavior based on actual purchases , our results tend to be significantly more predictive than demographic - based models . so far , the the response from utilities and "" new entrants "" i ' ve been talking to so far has been quite positive , and we have some tests of our data underway , but we ' re interested in talking to as many players in the market as possible as we develop specific products to meet utility needs . i can provide more background if desired to whoever might be interested , but i guess the key immediate question is whether it might be worthwhile to arrange a short meeting sometime on the 25 th of april with whoever at enron might have interest in hearing what we ' re up to , and ( most importantly ) listening to what your data needs might be as you enter new markets . thanks very much for any help . . . i look forward to catching up and hearing how things are going for you . regards , brad davids 303 - 410 - 5531 - - - - - original message - - - - - from : steven . r . meyers @ enron . com [ mailto : steven . r . meyers @ enron . com ] sent : monday , april 10 , 2000 12 : 13 pm to : brad . davids @ abacus - direct . com subject : re : possible meeting ? it ' d be great to meet on the 25 th in the afternoon . i have a flight in the evening . i ' m interested in hearing about life at abacus . i too have heard that enron is getting back into the residential market . what type of database do you have ? i might be able to find somebody for you to talk with here . - steve bradley davids on 04 / 10 / 2000 12 : 04 : 00 pm to : "" steve meyers ( e - mail ) "" cc : subject : possible meeting ? steve : sorry we ' ve been unable to hook up . . . i can probably get down there on the 25 th , if you ' re going to be in town that afternoon ? would love to catch up - - both on how things are going with ees and tell you about my new life . also , i ' m hearing rumors that enron is about to get back into the residential market in a big way - - you know anything about that ? anybody i should talk to there about my huge database of consumer buying behavior ? thanks - - looking forward to connecting . . . i ' ll be travelling most of this week , but you can leave a vm and let me know when i can call you , or try me on the cell at 303 - 886 - 3458 . best , brad davids bradley j . davids associate vice president , utilities abacus direct , a division of doubleclick , inc . 11101 west 120 th avenue broomfield , co 80021 usa e - mail brad . davids @ abacus - direct . com tel 303 . 410 . 5531 fax 303 . 410 . 5300 www . doubleclick . net www . abacus - direct . com ( see attached file : c . dtf )",0 +"Subject: ben zhang any suggestions ? - g - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 09 / 13 / 2000 09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : toni graham @ enron 09 / 12 / 2000 09 : 33 pm to : grant masson / hou / ect @ ect cc : subject : ben zhang what do you want to do ? my experience tells me that it ' s not about the money . his wife doesn ' t want to move . - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 09 / 12 / 2000 09 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - meastman @ qualitec . com on 09 / 12 / 2000 09 : 46 : 48 am to : cc : subject : ben zhang toni , i spoke with ben this morning and he is asking me what he should do . he knows how good the opportunity is and this is something he really wants to do . however , his wife is having a hard time making the commitment . although he says she is not totally against it , she is obviously not 100 % sold . ben feels bad about keeping vince , grant , and other potential team members at enron waiting . he does not want to lose the opportunity , yet he needs some help in convincing his wife . i am open for suggestions . is this somebody you really want and if so what can we do get him ? thanks , mike qualitec professional services , lp accounting - financial - energy risk - tax search consultants mike eastman , cpc president 281 - 647 - 9300 fax 281 - 647 - 0933 email - meastman @ qualitec . com",0 +"Subject: manoj gupta - interview schedule attached you will find the interview packet for the above - referenced person . the interview will happen monday , april 16 , 2001 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sasha divelbiss 58714",0 +"Subject: re : hello from vince kaminski at enron ashley , i agree with you . two trips are the best solution , unless of course shmuel rearranges the speaker list and the 16 th will work for the presentation as well . coordinating so many different events is never easy . thanks for your patience . vince enron technology from : ashley baxter @ enron 08 / 30 / 2000 08 : 24 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : re : hello from vince kaminski at enron vince , actually , the general presentation that i have scheduled for the faculty club ( a dining / meeting room ) on campus is set for 7 : 00 p . m . - 9 : 00 p . m . on monday the 16 th . i can attempt to change the presentation date again , however i feel that it would be very unlikely that we are able to get another facility that is near campus . at this point it may be better to plan on making two seperate trips so that we are able to handle both events . maybe we could combine another presentation in during the same visit . what do you think ? ashley vince j kaminski @ ect 08 / 30 / 2000 08 : 03 am to : "" shmuel oren "" @ enron cc : vince j kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron , shirley crenshaw / hou / ect @ ect subject : re : hello from vince kaminski at enron shmuel , let ' s see if we can either rearrange the seminar speakers or change the date of our visit to the campus . ashley baxter , our coordinator is very efficient and got a faculty room for a presentation on monday morning on the 16 th . vince "" shmuel oren "" on 08 / 29 / 2000 05 : 37 : 33 pm to : cc : subject : re : hello from vince kaminski at enron dear vince . i spoke too soon . apparently the seminar slot on the 16 was already filled . i will see if i can switch the speaker for that week to the following week . in any case we are on for dinner on the 16 . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : cc : ; sent : tuesday , august 29 , 2000 5 : 01 pm subject : re : hello from vince kaminski at enron > > shmuel , > > the date of our trip to berkeley has been set . it will be october 16 th and > 17 th > ( monday and tuesday ) . > > i shall be glad to make a presentation on energy derivatives markets > ( development of the markets in the us and europe , valuation difficulties , > enron ' s role > in developing the forward markets for natural gas and electricity ) . > > please , let me know if this topic would be of interest to you . if this is > the > case , i shall follow with a title and an abstract . > > by the way , are you free for dinner on monday ? > > vince > > > > > > > "" shmuel oren "" on 08 / 24 / 2000 08 : 59 : 38 am > > to : "" vince j kaminski "" > cc : > subject : re : hello from vince kaminski at enron > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a > title and abstract . > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > shmuel s . oren , professor > dept . of industrial engineering > and operations research > 4117 etcheverry hall > university of california > berkeley , ca 94720 - 1777 > e - mail : oren @ ieor . berkeley . edu > phone : ( 510 ) 642 - 1836 or 5484 > fax : ( 510 ) 642 - 1403 > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > - - - - - original message - - - - - > from : "" vince j kaminski "" > to : "" shmuel oren "" > cc : "" vince j kaminski "" ; "" ashley baxter "" > > sent : thursday , august 24 , 2000 9 : 58 am > subject : re : hello from vince kaminski at enron > > > > > > > > shmuel , > > > > thanks for the message . i am working with our recruiter , ashley baxter , > > to finalize the date of the trip . i shall shoot for october the 23 rd > > if this date works for the rest of our team . > > > > vince > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am > > > > to : vince j kaminski / hou / ect @ ect > > cc : > > subject : re : hello from vince kaminski at enron > > > > > > > > dear vince . > > i sent you a reply earlier this month but i haven ' t heard from you about > the > > date of your visit . our department has a seminar every monday . if you can > > schedule your visit on a monday i would like to invite you to give a > seminar > > which will be attended by many of our graduate students and faculty and > will > > give you an opportunity to tell them about your program . with sufficient > > lead - time i can advertise the seminar in the hass school to their > financial > > engineering students . > > shmuel . > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > shmuel s . oren , professor > > dept . of industrial engineering > > and operations research > > 4117 etcheverry hall > > university of california > > berkeley , ca 94720 - 1777 > > e - mail : oren @ ieor . berkeley . edu > > phone : ( 510 ) 642 - 1836 or 5484 > > fax : ( 510 ) 642 - 1403 > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > - - - - - original message - - - - - > > from : > > to : ; ; > > > > sent : tuesday , august 08 , 2000 10 : 59 am > > subject : hello from vince kaminski at enron > > > > > > > shmuel , > > > > > > i hope you remember me . i visited you together with aram sogomonian , a > > > good friend of mine , a few years ago . i am currently responsible , among > > > other things , for recruiting graduates with finance and / or technical > > > backgrounds at the university of berkeley . i would be glad to give you > a > > > call and talk more about the details of our program . my colleague , > > > ashleybaxter , from the analyst / associate program at enron would join me > > > as well . > > > > > > i am sending you a copy of the brochure about the analyst / associate > > > program . > > > > > > vince kaminski > > > > > > > > > vincent kaminski > > > managing director - research > > > enron corp . > > > 1400 smith street > > > room ebl 962 > > > houston , tx 77002 - 7361 > > > > > > phone : ( 713 ) 853 3848 > > > fax : ( 713 ) 646 2503 > > > e - mail : vkamins @ enron . com > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: candlestick charts fyi fallout - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 04 / 2001 02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : sue neville / enron @ enronxgate on 05 / 04 / 2001 02 : 02 pm to : mike a roberts / hou / ect @ ect cc : lee ferrell / enron @ enronxgate , kent miller / et & s / enron @ enron subject : candlestick charts mike , i work for enron transportation and storage in their storage marketing group . my group has been using technical analysis from your website to help make daily storage trading revenue decisions . on your web site , you indicated you would be discontinueing some of the information we use . we had interviewed external technical service profiders , and chose not to buy their service because we had your information available to us to help us make financial decisions . specifically , we need the candlestick charts and analysis on natural gas , and we also need the elliot wave analysis on natural gas . can you please reconsider your decision to discontinue the technical analysis data aforementioned ? sue neville director , storage marketing ets",0 +"Subject: faculty information sheet mr . kaminski ; i will fax the faculty information sheet to you so that you may check for accuracy . also , i will fax your formal offer letter to you this afternoon . please allow by dec . 15 for your paperwork to be processed . after that date , you should contact bill ciminelli , director of administration , ( 713 ) 348 - 5377 . bill can assist you with assigning your mailbox and office space , membership for faculty club card ( campus cafeteria for faculty and staff only ! ) , rice i . d . card , and parking decal . also , suzana vazquez , bill ' s assistant , ( 713 ) 348 - 3736 , can assist you with any materials that you want to be copied and / or distributed to your students . if you need to order any required or suggested book ( s ) for your course , please contact the campus bookstore at ( 713 ) 348 - 4052 . the bookstore does not order examination copies for faculty . you must contact the publisher if you are wanting an examination or desk copy of a book . if you have any questions , please feel free to contact me at my office ( 713 ) 348 - 3733 or email . jacquelyn j . gambrell executive assistant to the associate dean for faculty affairs jones graduate school of management / ms 531 rice university p . o . box 1892 houston , texas 77251 - 1892 office ph . ( 713 ) 348 - 3733 email : gambrell @ rice . edu ",0 +"Subject: re : interview schedule change for bruce james vince , i am forwarding this information over to tony vasut , who recruits for rac , to contact the people listed below . thanks for the feedback . toni - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 08 / 01 / 2000 11 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sean grady 07 / 31 / 2000 04 : 01 pm to : toni graham / corp / enron @ enron cc : subject : re : interview schedule change for bruce james - - - - - - - - - - - - - - - - - - - - - - forwarded by sean grady / na / enron on 07 / 31 / 2000 03 : 59 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 07 / 31 / 2000 03 : 46 pm to : sean grady / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : interview schedule change for bruce james sean , i think we should invite bruce for additional interviews . i think that he does not have the skills required in my unit , but he could contribute in other areas . here is the list of potential interviewees : john echols ted murphy mark ruane vince sean grady @ enron 07 / 26 / 2000 02 : 17 pm to : grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , william s bradford / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , zimin lu / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , david port / market risk / corp / enron @ enron cc : toni graham / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , rita hennessy / na / enron @ enron , dorothy youngblood / hou / ect @ ect subject : interview schedule change for bruce james attached please find the interview packet for the above - referenced person . the interview will happen thursday july 27 , 2000 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sean grady 58701",0 +"Subject: re : bei enron gordian kemen on 03 / 15 / 2000 09 : 13 : 47 am to : jens . gobel @ enron . com cc : subject : career opportunities @ enron hi vince , following up to our chat on the phone . gordian kemen will be arriving in austin on the 16 th . he will be staying in austin for 2 weeks . he would very much appreciate to have the opportunity to have a talk with you to find out if there is a place for him at enron . you can reach him under ( 512 ) 301 - 9819 ( his parents in law ' s phone number ) . thanks a lot for you help and attention , jens - gordianresume . pdf",0 +"Subject: from the enron india newsdesk - april 27 th newsclips fyi news articles from indian press . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 04 / 27 / 2001 08 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nikita varma 04 / 27 / 2001 07 : 51 am to : nikita varma / enron _ development @ enron _ development cc : ( bcc : sandeep kohli / enron _ development ) subject : from the enron india newsdesk - april 27 th newsclips friday apr 27 2001 , http : / / www . economictimes . com / today / cmo 3 . htm dpc board empowers md to cancel mseb contract friday apr 27 2001 , http : / / www . economictimes . com / today / 27 compl 1 . htm mseb pays rs 134 cr under ' protest ' to dpc friday , april 27 , 001 , enron india md authorised to terminate ppa friday , april 27 , 2001 , http : / / www . financialexpress . com / fe 20010427 / topl . html foreign lenders slam brakes on disbursements to dpc , sanjay jog & raghu mohan global banks comfortable with enron pull - out friday , april 27 , 2001 , http : / / www . indian - express . com / ie 20010427 / nat 23 . html enron : dabhol chief gets powers to end deal with the mseb friday , april 27 , 2001 , http : / / www . the - hindu . com / stories / 0227000 d . htm offer of renegotiation ' too late ' : enron , by mahesh vijapurkar friday , 27 april 2001 , http : / / www . timesofindia . com / today / 27 home 2 . htm enron ready to pull out , but lenders say wait friday , april 27 , 2001 , http : / / www . hindubusinessline . com / stories / 142756 dh . htm dpc board authorises md to issue ppa termination notice friday , april 27 , 2001 , enron testing maharashtra ' s nerves , t n raghunatha friday , april 27 , 2001 , http : / / www . telegraphindia . com / enron signal to switch off dabhol power friday , april 27 , 2001 , enron threatens to pull out friday , april 27 , 2001 , ' dpc may not wind up ' friday , april 27 , 2001 , enron offers ' no comment ' on renegotiation , h s rao http : / / www . afternoondc . com / ' enron ' s on ! ' state govt . to renegotiate dabhol power project , by hubert vaz the economic times , friday apr 27 2001 dpc board empowers md to cancel mseb contract the enron power project crisis on thursday deepened with the board of dabhol power company authorising the management to issue a termination notice to the maharashtra state electricity board even while international lenders to the project asked enron to renegotiate power purchase agreement signed with the mseb . the decision to authorise managing director neil mcgregor to issue "" notice of termination on the contract to sell 740 mw of power "" was taken after the board prevented mseb from voting on the ground that it was an interested party . the decision was taken with six votes in favour and the single opposition vote was cast by idbi , sources said . according to reports , financial institutions such as anz investment bank , credit suisse first boston , citibank , abn - amro and the state bank of india have on wednesday advised enron against terminating its ppa with mseb . mseb chairman vinay bansal , who with two other directors attended the meeting on wednesday representing maharashtra  , s 15 per cent stake in the near $ 3 - billion project , said : "" the indian side told them that it would be unfortunate if enron broke the contract . "" while bansal declined comment on the board decision , the sources said the indian side had expressed its interest to holds talks on the issue rather than terminating the project and there were possibilities of a fresh power purchase agreement between the company and the state . ( pti ) the economic times , friday apr 27 2001 mseb pays rs 134 cr under ' protest ' to dpc despite the threat of a possible termination notice hanging on its head , maharashtra state electricity board on thursday made a "" protest payment "" of rs 134 crore disputed amount , towards march bill of rs 146 . 64 crore to dabhol . "" we were ready with the payment on wednesday itself , but dpc officials could not collect the cheque due to the statewide bandh "" , a senior mseb official said . "" we have disputed payment of rs 12 . 64 crore and it would be now taken up at the disputes resolution forum , of which enron india managing director k wade cline and krishna rao are members "" , mseb sources said . last week , dpc had dashed off a communication to the government and mseb that it would not accept "" protest payments "" anymore . cline had said the energy major shall treat such payments as an election to pay the sums , which mseb in fact owed dpc in full and that the company would also not recognise the "" purported protest or reservation "" . mseb had paid a rs 113 . 5 crore february bill in protest last month . on april 23 last , both domestic and international lenders of dpc had met in london and held exhaustive discussions the multinational ' s move to issue a termination notice to mseb and state government . ( pti ) business standard , friday , april 27 , 001 enron india md authorised to terminate ppa the board of the enron - promoted dabhol power company ( dpc ) , at its meeting in london on wednesday , authorised the managing director of enron india to issue a notice for terminating the power purchase agreement to the maharashtra state electricity board and the state government .  & the board has authorised wade cline to serve the termination notice . however , this does not mean that the termination notice will be served immediately . it is only an enabling provision and will be used only if the situation arises ,  8 a state government source told business standard from london . he said dpc was under pressure from its lenders . the dpc spokesperson here refused to comment on the issue . the hardening of the board  , s stand is in sharp contrast to the advice of dpc ' s lenders , who had warned enron not to precipitate matters by issuing a termination notice . the lenders had arrived at a consensus that the termination notice need not be served at this stage . serving of the notice requires a nod from the lenders , who have an exposure of about $ 2 billion in the project . sources said given the lenders ' strong opposition to termination of the contract , the enron board ' s "" enabling resolution "" did not have much significance beyond conveying a hardening of its stand with regard to the current imbroglio . the maharashtra chief minister had warned enron not to scuttle the process of crisis resolution by issuing a termination notice . the state government is to nominate an expert group to renegotiate the terms of the dabhol contract . enron holds 65 per cent in dpc , while us - based ge and bechtel hold 10 per cent each . the balance 15 per cent is held by mseb through a special purpose vehicle , maharashtra power development corporation . the mseb representatives were not allowed to vote at the meeting since they were an interested party . the idbi representative protested against the board ' s decision . the meeting was attended by state energy secretary vm lal . the meeting was held against the backdrop of a dispute between mseb and dpc over payment of bills . after mseb failed to pay rs 102 crore towards the december 2000 bill , dpc invoked the state government ' s guarantee and then the union government ' s counter guarantee . when payment of the rs 127 - crore january bill became overdue , dpc again invoked the state government ' s guarantee . mseb retaliated on january 28 , 2001 by slapping a rs 401 - crore penalty for non - supply of electricity at adequate levels . it demanded that dpc adjust the bills against this penalty . "" this stand of mseb was explained to dpc at the board meeting "" , a state government official said . the centre also supported mseb ' s stand and refused to honour the counter guarantee . the power company then invoked the political force majeure clause . a process of conciliation and arbitration between the centre and dpc is currently on . the financial express , friday , april 27 , 2001 foreign lenders slam brakes on disbursements to dpc , sanjay jog & raghu mohan global banks comfortable with enron pull - out lenders to the dabhol power company ( dpc ) are a sharply divided lot . international lenders , in direct contrast to the stand taken by local ones led by the the industrial develoment bank of india ( idbi ) , are categorical that additional assistance to dpc  , s phase - ii will be held in abeyance despite the completion of 92 per cent of the project work . the stage is also set for a preliminary termination notice to be served by dpc to the maharashtra state electricity board ( mseb ) within the next four weeks . this follows the authorisation given to enron india  , s managing director k wade cline and dpc president & ceo neil mcgregor to serve the termination notice , and transfer notices to mseb , following wednesday  , s dpc board meeting in london . the essence of the message from the international lenders following the london meeting with dpc board is : emotions do not work . contractual obligations and payments have to be met . we are convinced that the mseb has failed to meet its obligations . there is no point in enron continuing with the project and the company should get out of it . the structuring of dpc  , s debt has created two classes of lenders . in phase - i , international lenders are covered by a sovereign guarantee while in phase - ii , no lender is . however , all lenders have a parri passu charge , making attachment of assets a messy affair . sources in international banks were quick to point out that local lenders to phase - ii of the project are worried that an awry dpc project will affect their interests more given that they have no security  * other than assets  * like a sovereign cover .  & it was this desperation that made local lenders like idbi slash the interest rates a few months back to 16 . 5 per cent from 21 . 5 per cent ,  8 a leading foreign banker pointed out . three points that were made clear and stressed in no uncertain terms by international lenders were : a ) there are contractual obligations b ) mseb was not punctual in its payments to dpc and c ) mseb adopted a confrontational position by slapping a rs 401 crore rebate charge on dpc for misdeclaration and default on the availability of power . while local lenders led by idbi  * with mseb parroting the same  * were of the view that the current situation is a temporary one , international lenders were steadfast that pulling out of the project is the only way out . this is despite the stance taken by idbi and mseb that authorisation for termination given to mr cline and mr mcgregor was not called for . international bankers pointed out that they will now have to look at the issue of charges and protection for their loans in the event of the power project being scrapped in its present form . the points of contention are : a ) that phase - i of dpc is backed by a sovereign guarantee b ) phase - ii is not and c ) to the extent that phase - ii is covered by assets , cancellation of phase - ii may see all assets  * even those under phase - i  * getting attached . therefore , an examination on the segregation of assets under phase - i and phase - ii is now warranted . pti adds : in a significant move , dpc board has empowered its management to sever power supply agreement with mseb , a move that could inflict a financial liability of about rs 2840 crore on the centre . a decision to authorise dpc president neil mcgregor to issue a termination notice to mseb for sale of power was taken by the board at its meeting on wednesday . the indian express , friday , april 27 , 2001 enron : dabhol chief gets powers to end deal with the mseb the board of dabhol power company , a subsidiary of houston - based enron corp , has decided to warn the maharashtra state electricity board ( mseb ) that it intends to pull the plug on its guhagar - based project . in a board meeting held in london on wednesday , the board decided to authorise dpc president and ceo neil mcgregor and enron india  , s managing director k wade cline to serve a  +  + preliminary  ,  , termination notice for sale of power to the mseb within the next four weeks . the dabhol project has been mired in disputes since mseb began missing payments last year . mseb owes dabhol power $ 48 million for power delivered in december and january . the payment ran into a dispute after mseb slapped penalty notices of rs 401 crore on dpc for its failure to supply power within three hours of the demand being placed . but mseb has paid $ 24 million for february . and a payment of $ 31 million was made for march on thursday . the $ 3 billion dabhol project is the largest foreign investment made in india to date . issuing the preliminary termination notice could enable dabhol to suspend deliveries as it negotiates payment disputes . while a preliminary termination notice is the first of three steps that could potentially lead to the abandonment of the project by enron , analysts have described the decision as a  +  + procedural  ,  , move consistent with dpc  , s negotiating strategy to recover overdue payments from the mseb . after the company issues the preliminary termination notice , step two would be an official termination notice , and step three would be a notice that the company is surrendering control of the project . if the project is terminated , the government of india will have to take a hit of $ 300 million besides paying bills of rs 1 , 500 crore for the next one year to enron as penalty .  +  + our ( centre  , s ) liability , if dabhol power project is terminated , would be one year  , s electricity bill and a termination fee of $ 300 million ,  ,  , power secretary a k basu said .  +  + contractually , the centre will have to pay one year  , s electricity bill , totalling at present prices about rs 1 , 400 - 1 , 500 crore , and take over dpc  , s debt , which stands at around $ 300 million , if the project was terminated ,  ,  , basu said in delhi . dabhol power is in the process of completing the second phase of the 2 , 184 - megawatt power - plant project , which is 95 per cent through . while the international lenders to the project are pressurising the company to get out of the project , indian lenders , led by idbi , are asking the company to reconsider its decision on its termination notice . during the meeting in london , mseb which holds a 15 per cent stake in the project , had strongly opposed dpc  , s move to authorise cline and mcgregor to issue notices for termination . mseb chairman vinay bansal and technical director prem paunikar  * both directors on the dpc board  * and the state principal secretary ( energy ) vm lal , an invitee to the board , raised the issue at the board meeting in london . mseb claimed that dpc was needlessly  +  + threatening  ,  , to issue various arbitration notices and thereby interpreting the clauses of ppa in isolation . in recent weeks , dabhol has raised the stakes in its spat with the mseb , delivering a notice of political force majeure to maharashtra  * a step typically invoked to dissolve a contract in case of an emergency like a war , coup , or a similar radical political event . in this case , dpc  , s move was viewed as a threat to stop providing electricity . dpc has come under fire because of the relatively high cost of its power . critics object to the company charging rs 7 . 1 a kilowatt - hour for its power , compared with around rs 1 . 5 a kilowatt - hour charged by other suppliers . the hindu , friday , april 27 , 2001 offer of renegotiation ' too late ' : enron , by mahesh vijapurkar mumbai , april 26 . the enron - sponsored dabhol power company , which last night authorised its local management to issue a notice of termination of its power purchase agreement ( ppa ) with the maharashtra state electricity board , has decided to keep a stiff upper lip . this , in turn , has stoked speculation that the switching off of power from its phase i plant was imminent , while in reality , a lengthy procedure has to be followed as prescribed within the ppa . as one source familiar with the ppa told the hindu , ` ` it is not sudden death of the project ' ' and in all probability , the dpc , vexed with the developments , including sharp and pointed observations by the godbole committee , has chosen to only arm itself with a serious option . ` ` this would only eventually come into effect . it is not an overnight operation and a lot of legal work is involved ' ' . apparently , the dpc intends to do some arm - twisting . at the board of directors meeting in london , which maharashtra was initially disinclined to attend but later used the forum to put across its contentions on the project , the dpc squarely told the mseb nominees on the board that the offer of renegotiation had come rather ` ` too late ' ' . it also said it did not see any room for optimism about the outcome . it did not , however , rule out the option of talks , thus underscoring the possibility that the decision to authorise termination was a new weapon . the maharashtra chief minister , mr . vilasrao deshmukh , had hoped that dpc would not take any ` ` harsh step ' ' which would cause lot of damage to the interests of both the independent power producer and the government and today he expressed his dismay . in fact , the mandate of the team that went , on the strength of its stake in the dpc , was to put across the idea that negotiation was the requirement and not confrontation . echo in ls the enron issue also echoed in the lok sabha today where the power minister , mr . suresh prabhu , said that scrapping of the agreement would cost the centre rs . 2 , 840 crores , whose liability in the project agreement was limited . the centre ' s liability in case of termination is one year ' s electricity bill and a termination fee of $ 300 million . blow to fis the termination could prove to be a serious blow to the indian financial institutions ( fis ) which , under the leadership of the idbi , were trying to convince the other lenders of the project against the notice . the exposure of indian fis in the project is understood to be not covered by any guarantee either of the centre or the state . the times of india , friday , 27 april 2001 enron ready to pull out , but lenders say wait the dabhol power company board , which met on wednesday in london , authorised the company management to issue a termination notice to the maharashtra state electricity board . the company , however , may not pull out of the project yet , considering its lenders , who met on monday , opposed such a move and favoured renegotiations . sources present during both the meetings said that though foreign lenders supported enron on the termination issue , domestic financial institutions , led by the industrial development bank of india , prevailed over the deliberations to oppose any such drastic move . enron needs the lenders ' consent to file a pre - termination notice for pulling out from the project . the decision to empower dpc chief wade cline to issue a termination notice was taken with six votes in favour against a single idbi vote against such a move . another significant development during the entire proceedings was that the financial institutions made it clear that further funding of phase ii of the project will depend on the government of india assuring payment mechanisms . institutions are yet to disburse about 30 per cent of the sanctioned package , which is crucial for completing the phase ii expansion project . ` ` the board has given powers to wade cline to issue a pre - termination notice . but the meeting quite unanimously felt the need of the hour is not to terminate the project but to initiate serious re - negotiation proceedings , ' ' said mseb chairman vinay bansal , who attended the board meeting . ` ` mseb presented their views to the board members and it was understood by enron which also included the rs 401 crore penalty issue which is heading for arbitration proceedings . ` ` we have also made it clear that the tariff structure of enron is quite high and a downward revision of tariffs is unavoidable , "" bansal added . ` ` they cannot issue a termination notice without our consent since our exposure in the project is quite large and the lenders should approve any plans in that direction , ' ' said a top banker who was present during the lenders ' meet . ` ` there is a general consensus that the project must be completed and the proposal to terminate the ppa should be kept in abeyance , ' ' he added . the global arrangers for the dpc include anz investment bank , credit suisse first boston , abn - amro , citibank and the state bank of india , where all these parties conducted separate meetings with the company officials . however , some bankers said the company can file a termination notice even if one lender with a minimum 5 per cent exposure on the project favours such proceedings . meanwhile , in a clear reversal of roles , maharashtra chief minister vilasrao deshmukh said that the state government was not keen on terminating the ppa . ` ` we will ask them to refrain from taking any such harsh steps since that would be bad news for all of us , including dpc , ' ' deshmukh said . deshmukh was echoing union power minister suresh prabhu ' s sentiments , who said that the government wanted an amicable settlement of the payment row . he , however , added that termination of the project would not hurt foreign investments , and dismissed warnings by analysts that winding up the $ 2 . 9 billion project would be a blow to india ' s efforts to woo foreign investors . the dpc has already slapped one conciliation notice on the centre and three arbitration notices on the state government over non - payment of dues amounting to rs 213 crore and interest towards the bills due for december 2000 and january 2001 . meanwhile , mseb officials said in mumbai that the march bills amounting to rs 134 crore was paid on thursday as protest payment , despite the dispute over the amount . when asked on the future course of action , bansal said it was up to the dpc . the hindu businessline , friday , april 27 , 2001 dpc board authorises md to issue ppa termination notice the board of directors of dabhol power company ( dpc ) has authorised the managing director , mr neil mcgregor , to issue the notice of intent to terminate its power purchase agreement ( ppa ) with the maharashtra state electricity board ( mseb ) ` ` at an appropriate time ' ' . the decision was taken at a board meeting held in london yesterday . ` ` while mseb , which is an ` interested party ' , was not allowed to vote , it made a presentation clarifying its stand on the matter , ' ' a senior state government official said . the resolution to authorise the management to issue the termination notice was carried by six votes to one . idbi voted against the decision , the official said . the serving of the preliminary termination notice will lead to a six - month ` ` suspension period ' ' . according to clause 17 . 8 of the termination procedure , of the ppa : ` ` following the giving of a preliminary termination notice , the parties shall consult for a period of six months ( or such longer period as they may agree ) as to what step shall be taken with a view to mitigating the consequences of the relevant event having regard to all the circumstances . . . ' ' idbi and state bank of india , the principal indian lenders , had earlier persuaded the overseas lenders to hold their consent to the termination notice for some more time . at least one lender has to consent for the company to serve termination notice . it is understood that overseas lenders are in favour of termination of the project and are prepared to consent . however , domestic lenders are worried about the security of their advances if the ppa is abandoned mid - way . according to institutional sources , indian lenders are trying to get all the parties concerned to thrash out outstanding issues . the maharashtra and central governments too are in favour of a conciliation . mr vilasrao deshmukh , chief minister of maharashtra , yesterday went on record that the state did not want the project terminated . mr yashwant sinha , union finance minister , is also understood to be of the same opinion . ` ` the dpc will now have to decide what is the ` appropriate time ' to serve the notice , ' ' the official said . mseb pays rs 134 crore : meanwhile , mseb has paid dpc rs 134 crore towards its march 2001 bill . mseb officials confirmed that the bill was paid ` in protest ' ' today morning . ` ` they ( dpc ) had billed us for an amount of rs 146 crore . we do not agree with some of the items included , ' ' a senior mseb official said . the pioneer , friday , april 27 , 2001 enron testing maharashtra ' s nerves , t n raghunatha dabhol power company ( dpc ) has begun to put fresh pressure on the maharashtra state electricity board ( mseb ) , the maharashtra state government and the centre for an early resolution to the prolonged dispute between them , if the dpc board of directors ' decision to authorise its managing director to serve a contract termination notice to the mseb is any indication . the dpc board , in its meeting in london on wednesday , empowered the company management to sever its power supply agreement with mseb , a move that could inflict a financial liability of rs 2 , 840 crore on the centre . the decision to authorise the dpc management to issue a termination notice to mseb was taken by a vote of six to one after the maharasthra government representatives were prevented from voting on the ground of "" interested party "" . when contacted , the company ' s mumbai - based spokesperson , mr jimmy mogal , declined to comment on the reports about the decision taken by the dpc board . "" we have nothing to say on the reports emanating from london . we will express our views after a few days , "" he said . however , maharashtra chief minister vilasrao deshmukh on thursday termed the dpc board ' s decision as "" unfortunate "" . "" we have already requested the company not to take any harsh decision "" , mr deshmukh said in mumbai . official sources in the state energy ministry interpreted the dpc board ' s decision as a pressure tactic employed by the enron subsidiary to force the mseb to clear the pending power bills without any further delay . through its tough posture , the dpc wants to make its position stronger before it can formally agree for re - negotiations with the mseb , the centre and the state government for cutting the price of power supplied by it to the state electricity board . the sources said that the dpc ' s reported decision to authorise its managing director to stop electricity supply to the mseb did not mean that the enron subsidiary would actually go ahead with the scrapping of the power contract with the mseb . "" if anything , the dpc ' s reported decision is to mount additional pressure on the mseb for clearance of pending power bills and put itself in a stronger position in settling its dispute with the mseb . as part of its plan to arm itself with powers to break a contract in case situation goes beyond its control , the dpc had recently served a political force majeure to the mseb , the centre and the state government , "" the sources said . not surprisingly , the dpc ' s london decision comes on the heels of the maharashtra government ' s decision to set up a high - level committee , comprising representatives of the mseb , the centre and the state government to re - negotiate with the enron ' s subsidiary company for reducing the cost of power supplied to the state electricity board . meanwhile , amidst the threat of a possible termination notice hanging on its head , the mseb on thursday made a "" protest payment "" of the rs 134 crore disputed amount towards march bill of rs 146 . 64 crore to dpc . riday , april 27 the telegraph , friday , april 27 , 2001 enron signal to switch off dabhol power enron today took the first decisive step out of the controversy - ridden dabhol power company when it won an authorisation from the company  , s board to stop sale of power to maharashtra state electricity board ( mseb ) . the meeting of the company , of which the houston - based energy giant holds 65 per cent and the mseb 15 per cent , was attended by state energy secretary v m lal and mseb technical director p paunikar and it came days after its lenders discussed payment problems and a possible termination . the centre  , s liability , if enron decides to snap the agreement , will be a year  , s power bill and a termination fee of $ 300 million . however , the company will have to wait for six months from the day it serves the notice before it pulls the plug . the centre shrugged off the move , saying there would not be any adverse effect on foreign investment in power if enron walks out .  & we do not see fdi inflows into the power sector being hit ,  8 power minister suresh prabhu said . mseb officials said the ball is now in the court of dpc , which said its corporate policy did not allow it to comment on proceedings at board meetings . the decision coincided with a rs 134 - crore  + protest payment  , by the cash - strapped power board as part of the march bill worth rs 146 . 64 crore . there was speculation that mseb coughed up the amount to cool frayed tempers at enron  , s hub in houston , and because it was rattled by the sudden turn of events in the past few days during which the dispute had come to a head . mseb officials brushed away the allusions , saying the cheque was ready on wednesday but could not be handed over to dpc because of the state - wide bandh .  & we have a disputed payment of rs 12 . 64 crore , which will be taken up at the dispute - resolution forum ,  8 a board official said . last week , dpc told the state government and mseb it would no longer accept protest payments in a move to fortify its legal position . mseb officials say bechtel and general electric , the other partners who hold around 20 per cent in dpc , are willing to go along with enron corp in terminating the deal but financial institutions such as idbi are not game because it puts their loans at risk . investments made by indian institutions are not covered under the centre  , s and state  , s counter - guarantees , unlike those made by international lenders . maharashtra chief minister vilasrao deshmukh called enron  , s decision unfortunate .  & we had told state government officials attending the enron board meeting to stop the company from winding up its operations in the state as it will harm both parties .  8 the statesman , friday , april 27 , 2001 enron threatens to pull out the enron crisis deepened with the board of directors of the dabhol power company deciding to authorise the managing director , mr k wade cline , to serve a notice of termination on the contract for the first phase of the $ 2 . 9 billion power project . the decision , which could lead to the cessation of dabhol  , s power supply to the state , was taken at the meeting held yesterday in london according to reports quoting the chairman of the maharashtra state electricity board , mr vinay bansal . while dpc officials refuse to comment on anything , it is learnt that mseb was itself prepared to serve a legal notice of termination just two days before the meeting . mseb was said to have been dissuaded by the nationalist congress party president , mr sharad pawar , and union power minister mr suresh prabhu , who had talks in new delhi with the maharashtra chief minister , mr vilasrao deshmukh , and an mseb delegation last monday . the state government has been served two arbitration notices while the centre is ready to go for conciliation with the dpc for failing to honour its counter - guarantee . further , the dpc has already slapped a notice of political force majeure which protects itself against undeserved claims in the event of exigencies that force it to take an extreme step . the union power minister , mr suresh prabhu , contended in delhi that since dpc contributed only 0 . 7 per cent of the total energy output of the country , its termination would not have such a phenomenal impact on the power situation . however , if terminations proceedings go through , enron corp , a 65 per cent share - holder in the dabhol power company , would stand to net a hefty amount in damages . the union power secretary has been quoted as saying that termination of the dpc would cost the centre rs 1 , 800 crore , which is the total of one years  , electricity bill and a termination fee of $ 300 million . according to an energy analyst , mr pradyumna kaul , the total liability would not cross rs 350 crore . however mr prabhu said in the lok sabha today that the that scrapping of the agreement would cost the centre rs 2 , 840 crore . it is learnt that on 20 april , mr deshmukh had given the go - ahead to the mseb to prepare a legal notice to be issued to enron during the meeting of the dpc  , s board of directors on wednesday . at the meeting , the energy minister , padamsinh patil , energy secretary , mr vinay mohan lal and mseb chairman mr vinay bansal , were also present . the notice was prepared over the past weekend and taken by the delegation when they called on mr prabhu on 24 april . however , the politicians convinced them that enron would not get tough , given its huge stake in the project , and that such a notice would not be necessary . the meeting thus ended with the decision to renegotiate the power tariff , with enron  , s consent . among those present at the london meeting were mr lal , mr bansal and mseb technical director , mr p paunikar , in their capacity as directors . however , they abstained from voting since they were deemed an interested party . the only vote to go against the decision was that of the idbi which is also represented on the board , it is learnt . the chief minister , mr vilasrao deshmukh , said the state was not in favour of terminating the project . this could mean that the latest manoeuvre to arm - twist the indian authorities could achieve its immediate target of getting the arrears accumulated over the past three months cleared . the mseb owes enron rs 146 . 64 crore for march 2001 and rs 229 crore for december 2000 and january 2001 . the centre today put up a brave face on enron  , s decision saying there would not be any adverse effect on foreign investment in power sector in the country , pti reported from new delhi .  & there will be no adverse impact as a result of any action by any domestic or foreign company . as far as we are concerned there will be no adverse impact on fdi in power sector ,  8 power minister suresh prabhu told reporters when asked about dpc  , s decision to authorise management to issue a termination notice to mseb . emphasising that there would be no fallout of such decision , prabhu said after the meeting of the cabinet committee on economic affairs  & we are expecting cooperation from many scandinavian countries as well as european nations in the power sector .  & in fact not only the power minister but also the prime minister of norway was here to inaugurate a seminar on power and he promised lot of cooperation in the sector .  8 mid day ' dpc may not wind up ' maharashtra chief secretary v ranganathan has said that though neil mcgregor , managing director of the dabhol power corporation ( dpc ) , has been given complete powers with regard to dpc ' s operations in the state , including the authority to wind up operations , it does not necessarily mean that mcgregor will issue such a termination notice . mcgregor was given the powers at a meeting of the dpc board in london on wednesday . ranganathan said that state officials , including maharashtra state electricity board ( mseb ) chairman vinay bansal and power secretary v m lal , have reported back to him about the meeting in london . with regard to the state ' s failure to pay enron , ranganathan said , "" bills are prepared as per the power purchase agreement ( ppa ) and dpc owes some money to us . our people informed enron officials about this . . in fact , there was no reason to give powers to the md to slap a termination notice . "" in the london meeting , mseb and industrial development bank of india ( idbi ) representatives insisted that the dpc must pay rs 411 crore since it could not supply power whenever needed . chief minister vilasrao deshmukh has already termed as unfortunate the decision of the board of the enron - promoted dpc to give mcgregor powers to wind up operations . deshmukh added , "" we have already requested enron not to take any harsh decision . "" deshmukh had earlier said , "" we have directed state government officials attending the dpc board meeting to desist the energy company from winding up operations in the state , as it would be harmful to both of us . "" enron officials are keeping mum on the issue . mcgregor said , "" i am not going to give any comment . "" mid day , april 27 , 2001 enron offers ' no comment ' on renegotiation , h s rao a crucial meeting of the board of directors of the dabhol power company ( dpc ) , promoted by the us energy major enron , was held here yesterday apparently to discuss fate of its $ 900 - million power project in maharashtra , but there was no official word on the indian and state governments ' decision to renegotiate the contract . an enron spokesman declined to divulge what transpired at the meeting , saying the issues discussed at the meeting were ' confidential ' . "" we have not received any direct communication . unless we get it and evaluate the details , we have no comments to make , "" the spokesman said when asked about the proposed decision on re - negotiation of the project in which the maharashtra state electricity board ( mseb ) has 15 per cent stake . asked whether the board had taken a decision on empowering dpc managing director neil mcgregor to wind up its operations in india , the spokesman said he had nothing to say on them . enron has reportedly authorised mcgregor to look at various options including selling the company ' s stake in dpc . maharashtra chief minister vilasrao deshmukh said in mumbai that the state government would pay up the undisputed dues to the company . he said the maharashtra government "" is not in favour of terminating the 2184 - mw project , but wanted an amicable solution to the imbroglio . "" mid day , friday , april 27 , 2001 , committee to renegotiate enron deal a committee to renegotiate the power purchase agreement with the dabhol power company will be appointed by this evening , chief minister vilasrao deshmukh said today . addressing media persons after his meeting with the noted social reformer anna hazare at his official residence varsha , deshmukh said the committee would be formed by this evening or by tomorrow , at the most . he termed as unfortunate the enron board decision empowering dpc chief neil mcgregor to serve a preliminary termination notice on the maharashtra state electricity board and said the state was willing to negotiate the issue with power company . "" renegotiations will be held as per the suggestions made by the godbole committee and the center will also depute its representative on the renegotiating committee . we don ' t want to take any hasty decision , "" deshmukh saidhe pointed that the only bone of contention with the dpc had been its expensive tariff and hoped that the issue would be resolved amicably . when pointed that the enron board had taken a decision to serve the notice despite state  9 s willingness to appoint a renegotiating committee , chief minister said it was unfortunate . earlier , in his meeting with hazare , deshmukh promised to make necessary amendments to the right to information law recently passed by the state so that the information was easily accessed by the common people . he also gave a patient hearing to hazare on his complaints of corruption in various state departments and promised action against guilty after a thorough inquiry within three months . afternoon , april 27 , 2001 ' enron ' s on ! ' state govt . to renegotiate dabhol power project , by hubert vaz the us power giant , enron power corporation ' s willingness to wrap up the dabhol power project and leave the shores may not actually materialise , though the dabhol power company chief , mr . wade cline , has been authorised to do so , since the lenders for the project would have a decisive say in the matter . disclosing this , chief minister vilasrao deshmukh confirmed this morning that the state government would churn out a compromise formula by which the power project at dabhol could be continued , and at the same time enron did not feel slighted . "" enron has not yet conveyed to us about this decision . we are waiting for their letter , "" he said . when asked what sort of compromise the state government plans to forge , mr . deshmukh said , "" let our officers come back . after that we will decide a future course of action . but we are definitely going in for renegotiation of the project . it is very difficult to predict the outcome of enron ' s decision but as of now the project is still on . "" when asked whether the project could be moved to another state , if wound up from maharashtra , mr . deshmukh said , that was not possible as per the terms of the agreement between the us company and the state government . however , it was difficult for the project to move out of the state itself , he indicated . he also confirmed that both parties would face considerable losses if the project was terminated . the board of directors of the dabhol power company , which met in london on wednesday , decided to put an end to all controversies surrounding the project once and for all by empowering the dpc chief to terminate the project , if he deemed it fit . however , this decision , as of now , does not necessarily indicate the death knell for the project . the enron project , which had been riddled with controversies right from its inception , had been a pretext for the political parties in the state to drag each other on the mat from time to time . the previous sena - bjp government , which had been out to terminate the project , however , chose to continue with it following renegotiations with enron ' s top visiting officials like ms . rebecca mark . and , the democratic front government inherited the controversial project when the governments changed hands a year and a half ago . meanwhile , state energy minister dr . padamsinh patil , when contacted at the osmanabad circuit house , said the state government and the central government have decided to appoint a joint committee to renegotiate the project with enron . "" it is not easy for them to walk out of the project just like that . they will have to go in for litigation and this would prove costly for both sides , "" he said . in case the project is terminated , the government can still manage the power needs of the state , though it would be a bit tough job , he added .",0 +"Subject: tuesday morning meeting first thing ? ? ? vince : i am sorry i couldnt connect with you last week . how would your tuesday morning first thing , say 800 or 830 am be to get together to discuss the demo proposal and other issues ? i can come by your office very conveniently then . give me an email shout if you could squeeze it in on monday . i look forward to speaking with you . dale",0 +"Subject: re : transition to research group - an update - anshuman shrivastava molly : in order that i may proceed with the visa application for mr . anshuman shrivastava , i will need from enron ' s h . r . department , the following information : a copy of a job offer letter / contract / assignment letter for his us position with us salary a job description of the position in the us a salary range for that position co # and cost center # please let me have this at your earliest convenience . many thanks margaret enron north america corp . from : molly magee 01 / 19 / 2001 06 : 08 pm to : margaret daffin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update once again , margaret , we are in your debt . vince , let ' s get together some time next week and see where you would like us to go with this . . . molly margaret daffin 01 / 19 / 2001 03 : 27 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly : just to be sure that everyone understands , anshuman cannot work in the us on a bl visa - he can only come here for business meetings and training . we will have to get him the ll visa in order for him to work in the us . margaret enron north america corp . from : molly magee 01 / 19 / 2001 02 : 53 pm to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update thank you so much for the information , vince . i hope that you have a great weekend ! molly vince j kaminski 01 / 19 / 2001 02 : 39 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly , i shall ask sandeep to do it when he comes back from india next week . i have just learned that anshuman has bl visa and he can start on a project as a person delegated by dhabol power company to houston . to be absolutely above the line , i would still arrange the ll visa . vince enron north america corp . from : molly magee 01 / 19 / 2001 10 : 44 am to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update i agree that it makes sense to put the ll in place . there are several things we will need from you in order to start the visa process . the first is a fairly detailed job description for anshuman . secondly , we also need to know whether or not he will be in a managerial position here and / or managing a project . if there is someone else in your group who can furnish this job description , just let me know and i will be happy to contact him / her . as for sandeep , i have been told that he is a u . s . resident so there should be no problems with him . margaret daffin will be contacting him to be absolutely sure . thanks , molly vince j kaminski 01 / 19 / 2001 10 : 21 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly , let ' s get ll for anshuman , just in case . i am sure he will stay here for a while once he comes . it is quite obvious jeff shankman will have to keep him longer , given the priority of the project . i assume there are no problems with sandeep . thanks . vince enron north america corp . from : molly magee 01 / 19 / 2001 09 : 54 am to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update thank you for the update , vince . i have been working with margaret daffin with regard to anshuman ' s visa status . we will have to get an ll visa in place before he can come to the united states , even in a temporary capacity . do you want to move forward with that effort at this time , or is the possibility of him coming to the u . s . so remote that it wouldn ' t be worth the time and money right now ? molly vince j kaminski 01 / 19 / 2001 09 : 42 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : transition to research group - an update molly , this is an update on anshuman . please , see below . it seems that his transfer is not an issue for the time being . we can put it on a back - burner till he gets here . vince p . s . the relevant section . i also spoke about anshuman , and there was resistance to his leaing for such a long time . however , i have agreement from folks here to send him to houston for a shorter stint on dpc budget . i will try to finalize that before i leave . i will call you in the evening to just chat . - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 19 / 2001 09 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli @ enron _ development 01 / 19 / 2001 04 : 32 am to : vince j kaminski @ ect cc : subject : transition to research group - an update vince , just wanted to let you know that i had a meeting with wade cline ( coo , enron india ) , neil mcgregor ( president , dpc ) , and mohan gurunath ( cfo , dpc ) today . though i had already spoken to all of them earlier about my joining your group , today it became official , and all of them supported the move . i explained to them what we would be doing , and the results expected from the henwood study . dpc would like to pay the costs for the study , and that was mentioned . there maybe some tax issues etc . that need to be cleared , and other related issues that i would like to discuss with you , so i will leave them till i get to houston . i also spoke about anshuman , and there was resistance to his leaing for such a long time . however , i have agreement from folks here to send him to houston for a shorter stint on dpc budget . i will try to finalize that before i leave . i will call you in the evening to just chat . i am very thankful to you for giving the opportunity you have . things here have deteriorated dramatically over the last few weeks . morale is quite down due to many lay - offs . i am really looking forward to returning to houston , and the family ! ! regards , sandeep .",0 +"Subject: status stinson , as you requested , i spoke with brad mcsherry concerning the position , salary , and immediate supervisor . i asked brad to provide a formal letter of offer and informed him that i needed it before the end of business friday . unfortunately , i have not received the letter thus far . although the job was well defined , i felt that the administrative details of the position were not clearly laid out . for example , i specifically asked last week who my manager would be and was told that it would be you . however , i later found out ( by chance ) that this was not the case . also , it was unclear whether i would be in the research group or in enron communications . although these two issues are not critical and under normal circumstances would be resolved , given previous confusion regarding my role and compensation with the research group , i feel less comfortable accepting the position . to be specific , there was an unnecessary struggle regarding my interview reimbursement and there were problems regarding my bonus . in general i feel that there has been a significant lack of communication and respect . therefore i feel that i am left with the decision not to make the move to enron and feel that it would be in everyone ' s best interest not to pursue this any further . thank you . - samer [ brad , as i indicated on friday please do not perform any kind of transfer . thanks . ]",0 +"Subject: re : garp credit derivatives discussion group philip , thanks for keeping me in mind . yes , i would be interested . vince "" philip merrill "" on 11 / 30 / 2000 04 : 47 : 20 pm please respond to to : cc : subject : garp credit derivatives discussion group vince we are starting a credit derivatives discussion group in new york . is this something you would be interested in ? like fas 133 an 800 - call - in number will be provided for houston participants . our first meeting will be in a week or so . regards , philip merrill garp regional director , new york 973 - 258 - 1540",0 +"Subject: trading limit and policy changes vince - here ' s a summary of what ' s going to the bod , along with updated policy . feel free to call me if you have any questions . regards , cassandra .",0 +"Subject: it purchasing process as you all may be aware the it organization is undergoing significant organizational changes at a very rapid pace . one of the groups that is being heavily affected is purchasing , due to the large increase in the volume of requests and some staff turnover . we realize that this is causing our users some pain and we are re - engineering the process as quickly as possible . we will be communicating the changes to the process over the next few weeks . we apologize for the inconvenience and appreciate your patience in this regard . if you have any questions while the process is being adjusted please contact bob hillier at extension 3 - 0305 . philippe bibi cto , enron global technology",0 +"Subject: alliance ferc alert - regional market reports attached for your information are : 1 . the ferc orders regarding the meeting to be held thursday , november 9 . 2 . annoucement of a hearing in san diego on november 14 . 3 . ferc report on bulk power markets in the southeast region 4 . ferc report on bulk power markets in the midwest region 5 . ferc report on bulk power markets in northeast region these files will also be made available on the alliance of energy suppliers web site - http : / / www . eei . org / alliance should you have any questions concerning these reports , contact jack cashin at 202 - 508 - 5499 , or jcashin @ eei . org nancy tarr manager , business development ntarr @ eei . org - ferc 11 - 14 hearing . pdf - nov 9 panels . pdf - ferc . southeast . pdf - fercmidwest . pdf - fercnortheast . pdf",0 +"Subject: t . v . we are in need of a 9 inch t . v . set . the set will be located betweeneb 3240 e and eb 3240 f . r . c . # 100038 co . # 0011 please if any more information is needed please call me x 34710 . also please provide e . t . a . thanks kevin moore",0 +"Subject: ljm update vince / stinson : i just came back from a meeting with accounting ( ryan siueck ) and credit ( rod nelson - works with bill bradford ) in which we presented the two - factor model for calculating credit loss on our ljm ' s position . rod seemed positive with the model conceptual approach . he will position bill bradford on that . accounting will have a meeting with aa to discuss the treatment on credit reserves on this deal tomorrow 9 : 00 am . they feel my participation is not necessary . at year - end the difference on both valuations - without and with credit risk - indicates a credit loss of about 100 mm . paulo issler",0 +"Subject: visiting enron may 4 th dear vince , this is great news ! donna and i are delighted that you have time to see us on may 4 th . i ' ll be out of the office next week . by copy of this email to my assistant , carol lovell , i will ask her to get in touch with shirley for scheduling as well as directions on where to meet you . we ' ll be glad to meet with christie patrick as well . looking forward to meeting you , susan at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote : > susan , > > thank you for your message . i shall be glad to meet with you on may the > 4 th . > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to > set up the meeting . > > also , for your information , we have recently set up a special unit to > coordinate enron ' s > relationships with the universities . the person running this unit is > christie patrick . > please , feel free to contact her and give my name as a reference . i shall > coordinate the meeting > on may the 4 th with her . > > vince > > > additional information re christie : > > phone : ( 713 ) 853 - 6117 > > email : christie _ patrick @ enron . com > > > > > > "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm > > to : vkamins @ enron . com > cc : > subject : visit from stanford ? > > > dear dr . kaminski , > > let me briefly introduce myself , i am the director of corporate relations > for the school of engineering at stanford university . in this role , i am > always on the watch for ways to bring our faculty together with companies > that have an appetite for engagement with top tier research institutions . > > i believe you know hill huntington , who is a senior researcher with > stanford ' s energy modeling forum . he suggested i get in touch with you for > some ideas about contacts at enron . i ' m in the process of planning a trip > to texas in early may along with my colleague donna lawrence , the > university ' s director of corporate relations . we were hoping to be able to > include a stop at enron on our itinerary . right now it appears that friday , > may 4 th would work best for us but we ' re at the very beginning of our trip > planning . > > the purpose of our visit would be to review the current relationship > between enron and stanford , to give you an overview of current priorities > in the school of engineering , and ask for your help in identifying the best > points of contact . > > i look forward to hearing from you about your availability , > > sincerely , > susan hansen > > > > > susan c . hansen > director , corporate relations > school of engineering > stanford university > stanford , ca 94305 - 4027 > ( 650 ) 725 - 4219 susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: re : update / event time change this will be fine - just let me know when you are going to be gone . shirley anita dupont @ enron 11 / 29 / 2000 05 : 01 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : update / event time change shirley , this is the committee that i discussed with you this morning . the below email outlines the time required . thanks for your consideration . anita - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 11 / 29 / 2000 04 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 / 29 / 2000 04 : 46 pm charla reese @ enron _ development charla reese @ enron _ development charla reese @ enron _ development 11 / 29 / 2000 04 : 46 pm 11 / 29 / 2000 04 : 46 pm to : daryl kitchen @ enron communications , missy stevens @ enron , misha siegel @ ect , zulie flores / corp / enron @ enron , maggie valles / enron _ development @ enron _ development , rose rivera / enron _ development @ enron _ development , donnis traylor / hou / ees @ ees , raquel guerrero @ enron communications , elsie lew @ ect , mary ellenberger / corp / enron @ enron , rebecca longoria @ enron , joy werner @ enron , david tagliarino @ ect , janie bonnard , sylvia thomas @ enron , lillian villarreal @ enron , valerie villareal / hou / ees @ ees , stephanie baker / hou / ees @ ees , dianne langeland / enron _ development , laura schwartz @ enron , deb gebhardt @ enron , heather alon @ ect , michael cuccia / corp / enron @ enron , bert frazier @ ect , susan rouse @ ees , sandy lewelling @ enron communications , sonia garcia / hou / ees @ ees , dolores escamilla @ ect , anita dupont / na / enron @ enron cc : elyse kalmans @ enron , greg grissom @ enron subject : update / event time change thanks to everyone for attending the meeting today ! event time change ! ! ! i just spoke with the office of the chairman and have learned that ken and jeff are actually available during the morning of december 19 th from 8 : 00 am until 11 : 00 am . as a result , our plans have changed just a little and i have requested whether or not they are willing to pose for polaroid pictures with employees - i ' ll let you know what i find out ! we will still have the jazz duet and informational poster displays in the lobby throughout the day and instead of dessert items , we ' ll order breakfast stuff . assignments / budget ! ! ! ! please note assignments below ; for each team , collaborate between now and our next meeting to determine what purchases need to be made - budgets will be discussed at that meeting . again , it will be on wednesday , december 6 th from 9 : 30 am until 10 : 30 am with the location tbd . kwanzaa - daryl kitchen * / liz taylor chinese new year - elsie lew * / anita dupont las posadas - zulie flores * / maggie valles / lillian villeral christmas - donnis traylor * / missy stevens / michael cuccia chanukah - laura schwartz * / heather alon ramadan - sylvia thomas * / janie bonnard / dianne langeland st . lucia - joy werner * / stephanie baker devali - sonia garcia * / sophie patel / rebecca longoria greeters / traffic control / corsages - sandy lewelling executive floor - deb gebhardt logistics - charla reese ( communication , entertainment , food , picture holders ) photographer - laura schwartz houston children ' s choir - misha siegel * indicates holiday team leader responsibilities attend planning committee meetings and work with other volunteers assigned to your holiday . research meaning of holiday and determine appropriate decorations , symbols , & food items - purchase after budget approval . create information sheet for employee hand - out . decorate between 7 : 00 am and 8 : 00 am on 12 / 19 . be creative ! ( play appropriate recorded music , dress up in related clothing , etc . ) ensure office is manned during open house ( 8 : 00 am - 11 : 00 am ) - answer any questions , pass out materials , etc . recruit additional volunteers ! additional volunteers delores escamilla val villeral raquel guerrero bert frazier david tagliarino rose riveria thank you ! charla x 35202",0 +"Subject: re : a / a program question gwyn : just because the a / a program does not have a contract does not mean that enron does not . do you have a telephone number for melly ' s and i will call them directly and ask her if she has a contract . thanks ! shirley gwyn koepke @ enron 10 / 23 / 2000 04 : 22 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : re : a / a program question vince , the a / a program does not have a contract in place with melly language services . it appears that by the note below from my contact in the a / a - hr department , the reimbursement policy appears to be driven by department , not enron at large . as i mentioned earlier , if i continue with my current tutor , but outside of the melly language services , the cost to the department will decrease for me to take french classes . pls advise if research will be able to continue to fund my lessons . many thanks , gwyn koepke - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 10 / 23 / 2000 04 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : ivonne brown 10 / 23 / 2000 04 : 17 pm to : gwyn koepke / na / enron @ enron cc : subject : re : a / a program question gwyn , in the past the associate & analyst program use to pick - up the cost for the classes , but they stopped doing so effective 1 / 99 . ( although , some business units decided to continue paying for it - you may want to double check with your business unit to whether or not they have a contract . the a / a dept does not . ) please let me know if you have additional questions . thank you for your patience . sincerely , ivonne brown gwyn koepke 10 / 23 / 2000 01 : 15 pm to : ivonne brown / na / enron @ enron cc : subject : a / a program question ivonne , have you been able to find an answer to the attached ? thanks ! gwyn - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 10 / 23 / 2000 01 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - gwyn koepke 10 / 19 / 2000 08 : 25 pm to : ivonne brown / na / enron @ enron cc : subject : a / a program question ivonne , i am currently enrolled in a french language class thru enron and melly ' s language services , and my group is paying the cost directly . i am considering quitting the melly ' s language program in favor of an outside private tutor , for a number of reasons . it will be cheaper too . i would like to know : 1 . does enron have a contract in place with melly ' s language service , to be the exclusive provider of language services to enron ? 2 . will enron pay the costs of my language classes if they are held outside of the melly contract ( if any ) ? i just want to make sure that if i decide to "" drop out "" of the melly classes and sign up for other private tutoring courses , which will be less expensive than the melly svc , that enron will not have a problem picking up the tab . vince kaminski , the md , wants to know this , to ensure there is no legal restriction on who must provide these language services in order to secure enron reimbursement . thanks for your help . gwyn koepke",0 +"Subject: dec 2 super saturday friday and saturday participation please see attached . thanks shelly",0 +"Subject: re : creditdotcom projects amitava , can you schedule a brainstorming session with vasant , tanya , rakesh , myself and ben ( if possible ) ? what about the trip on monday . has it been scheduled ? vince amitava dhar @ enron 01 / 03 / 2001 08 : 30 am to : vince j kaminski / hou / ect @ ect , ben parsons / lon / ect @ ect cc : vasant shanbhogue / hou / ect @ ect subject : creditdotcom projects the following is a good summary from vasant about the projects and what is ahead of us . ben , please let me know when things are ready ; i can plan my trip accordingly . thanks , amitava enroncredit . com is working on 3 main models - - - the fmc model , the placement model , and the movement model . fmc model : provides credit default swap price curves for 16 ratings with 33 industry offsets . each day , this model takes the previous day ' s trader curves and adjusts them for the movement in bloomberg yields and observed swap prices . placement model : uses linear regression to credit default swap prices using dummified ranges for market capitalization , liquidity , kmv score , etc . one main issue here is that the dataset is biased towards investment grade names . alternate approaches looked at developing separate models for separate sunsets of names . movement model : provides an alert system for news . this is under development . current involvement of houston research group members is in the development / modifications of the placement model , especially in thinking through the various single vs multi model approaches . we can help in the brainstorming for better models for subsets . one main project right now is to get a separate model for subsidiaries , and to exclude subsidiary names from the main regression . value - at - risk is based on historical variance - covariance approach . the portfolio model is under development . agenda for houston research group members : once sufficient data is collected , start reviewing for potential analytic relationships . get weekly updates from london , and provide feedback . plan on a trip if the work warrants it , once the agenda is fairly well drawn out , and data is available for analysis .",0 +"Subject: re : energy finance conference participation - feb 22 - 23 thank you . we look forward to having you here . sincerely , angela * * * * * * * * * * * * * * angela dorsey assistant director center for energy finance education shirley . crenshaw @ enron . com ; vkaminski @ aol . com subject : re : energy finance conference participation - feb 22 - 23 angela , thanks for your message . i shall be glad to attend the conference , both days . i shall call dr . ronn to discuss my participation . vince kaminski "" angela dorsey "" on 01 / 16 / 2001 12 : 54 : 15 pm to : "" vincent kaminski ( e - mail ) "" cc : subject : energy finance conference participation - feb 22 - 23 vince : further to dr . ronn ' s e - mail dated 1 / 9 , please confirm your participation in the ut 2001 energy finance conference to be held on the university of texas campus feb . 22 - 23 rd . sincerely , angela * * * * * * * * * * * * * * angela dorsey assistant director center for energy finance education & research the university of texas at austin department of finance , cba 6 . 222 austin , tx 78712 angela . dorsey @ bus . utexas . edu * * * * * * * * * * * * * *",0 +"Subject: re : london status report - research weather fyi our 10 : 30 meeting today - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 20 / 2001 06 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tony hamilton @ enron 04 / 20 / 2001 06 : 35 am to : mike . a . roberts @ enron . com cc : tani . nath @ enron . com subject : re : london status report - research weather tony hamilton 04 / 20 / 2001 04 : 03 am to : stephen . bennett @ enron . com cc : subject : re : london status report - research weather hi mike , please find a list of our current daily products and services , together with identified research projects ( to - date ) for european weather research - this has been forwarded to tani nath to aid her recommendations for a 2 nd met . for london . 1 ) this week : * a meeting with james willis ( agriculture ) has been arranged for monday afternoon to discuss weather input for softs . * following suggestion from tani , meeting has been pencilled in with pierre aury ( coal trading ) to discuss weather input . * at present we are providing kristian lande ( continental power ) with daily precipitation outlook for spain - he is working towards getting a daily weather breifing for power set up . * a meeting with alex mcleish ( global products ) has been pencilled in following his return from houston to discuss the way forward in building a forecast model for crude api based on hdds on either side of the atlantic . * we have made progress in getting additional information on european ports following meeting with scott moncrieff and sylvie mostura ( shipping and transportation ) - we now get forwarded daily reports for some baltic , black sea , scandanavian , italian and indian ports , which include various degrees of weather information . * we now supply north sea conditions and forecasts as a part of the 8 am uk gas briefing . * we ' ve added a midday "" update "" for uk gas traders if / when mrf ensembles warrent changes or clarification . * following extremely useful meeting with tani nath , it is now clear that need for 2 nd meteorologist will have to be cleared with her superiors here in london before moving forward . 2 ) still to follow up * get meeting with chris mahoney to determine if we can provide any additional support ( e . g . daily briefing ) for crude and products . * follow up on a potential morning briefing for continental power . * get meeting arranged with david anderson at ecmwf to discuss data products and services they provide . * continue to investigate model grib data to produce a "" confidence interval "" for model output . * meet with ross mcyntire to determine needs from weather drivatives * develop a standard hydro product ( daily updates ) for continental power ( spain specifically ) * develop forecast verification scheme and internal forecasting tools * avistar recorded europe briefings 3 ) challenges : * still appears to be some confusion over whether we are moving desks this afternoon or not ! * karin ahamer ( the team assistant here ) is going to verify later exactly which pcs we will be using from monday next week ( some of the loaner pcs we are currently using contain important software left over from their previous users ) . * our time in assembling reports is becoming more efficient on a daily basis . however as our product load increases this may become a factor over next few weeks . _ _ _ _ _ _ _ _ _ _ _ _ _ _ mike , we look forward to talking with you and vince later today ! see you later , tony",0 +"Subject: re : my resume we ' ll get this offer out today , vince . molly - - - - - original message - - - - - from : kaminski , vince sent : friday , april 13 , 2001 10 : 03 am to : molly magee / hou / ect @ enron cc : kaminski , vince ; crenshaw , shirley ; huang , alex subject : my resume molly , we would like to bring this student as a summer intern ( the last one , we are running out of space ) . i shall send you another message regarding his proposed dates . thanks . i hope you have a very happy easter . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zhendong xia on 04 / 12 / 2001 03 : 58 : 25 pm to : vince . j . kaminski @ enron . com cc : subject : my resume hi , dr . kaminski : glad to get your reply . here is my resueme . if you wanna know more about me , please feel free to contact me . thanks . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318 - cv . doc > ",0 +"Subject: fw : california electricity crisis : what to do for your reading enjoyment . we should shoot for breakfast on thursday morning feb . 8 th . fyi . the following link will take you to a joint statement about what to do in the california electricity crisis . william w . hogan john f . kennedy school of government harvard university 79 john f . kennedy street cambridge , ma 02138 617 - 495 - 1317 ( o ) 617 - 495 - 1635 ( f ) email : william _ hogan @ harvard . edu web page : www . whogan . com or http : / / ksgwww . harvard . edu / people / whogan",0 +"Subject: re : fw : parent - subsidary model hi iris we started off with about 105 companies , which were enron europe ' s uk power and gas desk counterparties . i ' m not sure where you got the figure of 500 from - maybe this is the entire enron europe counterparty list , which constitutes the next major effort for end - july . from this list of 104 , only the 72 in the spreadsheet had information in amadeus . the other firms had no information available , most likely because they were too new . ben from : iris mack / enron @ enronxgate on 17 / 04 / 2001 19 : 37 cdt to : ben parsons / lon / ect @ ect cc : tomas valnek / lon / ect @ ect , amitava dhar / corp / enron @ enron , mike mumford / lon / ect @ ect , vasant shanbhogue / enron @ enronxgate , vince j kaminski / hou / ect @ ect subject : re : fw : parent - subsidary model hi again , thanks for the financial data on enron ' s european counterparties . it is my understanding that you started out with a list of 500 such counterparties . however , your spreadsheet only contains information for 72 of these european counterparties . will you please tell me the logic behind the elimination of the 400 + other counterparties ? thanks so much , iris - - - - - original message - - - - - from : parsons , ben sent : tuesday , april 17 , 2001 2 : 56 am to : mack , iris cc : valnek , tomas ; dhar , amitava ; mumford , mike subject : re : fw : parent - subsidary model hi iris the inputs and outputs generated by riskcalc can be seen in the attached file : > we only looked at the 5 - yr pd . inputs are in columns a - u . these are the inputs generated by amadeus . you can run these inputs through the riskcalc model over the web ( http : / / www . moodysqra . com / privfirm ) using the login : dupred , password : detective . this is our trial licence which lasts for about 2 more weeks ( mike mumford will have more details about the current licence ) tomas valnek was getting the data from the amadeus database , so i ' ll leave it to him to determine if houston access is possible . in the meantime you can use the dataset attached for testing purposes . ben from : iris mack / enron @ enronxgate on 12 / 04 / 2001 17 : 58 cdt to : ben parsons / lon / ect @ ect cc : amitava dhar / corp / enron @ enron subject : fw : parent - subsidary model hi ben , how are you ? today we had a meeting with craig chaney and jeff kinneman to discuss the private firm model . they requested that i spend some time carefully analyzing the moody ' s riskcalc model . i noticed that you also have been looking at riskcalc - as indicated in your paper entitled "" pricing parent companies and their subsidiaries : model description and data requirements "" other than the example discussed in your paper , did generate any other test statistics , scores , etc . also , you stated that you used amadeus database . we are in the process of trying to obtain data from various data vendors - but that may take a while . in the mean time , may we have access to the amadeus database or some sample dataset ? thanks so much , iris - - - - - original message - - - - - from : valnek , tomas sent : tuesday , april 10 , 2001 9 : 10 am to : fiala , markus ; seyfried , bryan ; salmon , scott ; kirkpatrick , eric ; mumford , mike ; fontaine , jean - sebastien ; brooks , simon ; price , nigel ; diprose , robert ; rezaeian , reza ; gordon , mike ; lee , derek ; hershkovitz , ilan ; golden , sally ; stephan , nicholas ; albanis , george ; shanbhogue , vasant ; mack , iris cc : parsons , ben subject : parent - subsidary model attached is a description of the parent - subsidiary model that ben and i have been working on over the last few weeks . comments welcome ! tv >",0 +"Subject: request for historical curve information vince , per our conversation this morning , i would appreciate the following historical curve information as soon as possible : 1 . on february 17 , 2000 , what was the summer ' 00 strip for vent to ml 7 , demarc to ml 7 , and vent to chicago 2 . on july 27 , 2000 , what was the august ' 00 strip for vent to chicago 3 . on may 9 , 2000 , what was the may ' 00 strip for vent to chicago 4 . on may 30 , 2000 , what was the june strip for vent to chicago 5 . on june 29 , 2000 , what was july strip for vent to chicago 6 . on sep . 29 , 2000 , what was the october strip for vent to ml 7 thank you in advance for your prompt attention to this matter . please call me if you have any questions . thanks again ! mike barry 402 / 398 - 7105",0 +"Subject: re : software license oh , ok , i didn ' t know that . - wish i lived in france for august then . as long as it is ok with you that we don ' t get this purchased soon . i just wanted to make sure i did everything i could to get the software for you . thanks , karla vince j kaminski 08 / 08 / 2000 09 : 35 am to : karla feldman / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : re : software license karla , august is a vacation month in france . i would not count on a response any time soon . vince from : karla feldman on 08 / 08 / 2000 09 : 34 am to : geman @ dauphine . fr cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : software license ms . geman , i am just following up to see if you had received my previous message forwarded below and whether you have a response so that we can move forward with this contract ? thank you , karla feldman - - - - - forwarded by karla feldman / hou / ect on 08 / 08 / 2000 09 : 23 am - - - - - karla feldman 07 / 28 / 2000 01 : 41 pm to : geman @ dauphine . fr cc : subject : software license dear ms . geman , i met with vince kaminski yesterday regarding picking back up with the license agreement we were working on back in march . he relayed some additional requirements which need to be added to the agreement , which include the following : 1 . the price agreed upon is $ 90 , 000 . 2 . d - g will provide system support . 3 . no later than 12 months of execution of the agreement , d - g will provide the source code to enron . in the meantime , the source code is to be in escrow . additionally , the source code would be released sooner than the 12 months if any of the following conditions occur : ( i ) d - g goes out of business ; ( ii ) d - g is unable to provide effective technical support ; or ( iii ) if d - g agrees to release it sooner . before i have our attorney add these things to the agreement , we need to discuss the escrow situation . vince mentioned that you had suggested that your attorney keep the software in escrow . is your attorney a u . s . attorney ? it seems like i may have recalled that way back in march you might have said you had a friend or relative that was an attorney . is that the same person ? does this attorney work for a large firm , small firm , or solo practitioner ? basically , if you could just provides some additional information about your attorney , i would appreciate it . we normally would use an escrow company to put the software in escrow . we have dealt with a company here in the u . s . called dsi technology . i will check into that pending your answer regarding your attorney . once we decide what we want to do regarding placing the software in escrow , we will red - line the agreement to reflect such changes and e - mail it back to you for your review . i look forward to hearing from you . karla feldman enron corp . contract administration ( 713 ) 646 - 7554",0 +"Subject: re : visit to enron nick , the airport is about 30 minutes by cab from the office ( 1400 smith ) . the best hotel is either hyatt regency downtown or doubletree downtown ( it is important to emphasize downtown when making reservations ) . the hotels are within a walking distance from the enron building . we can make reservations for dinner around 6 : 30 - 7 : 00 in a resturant within 10 minutes by car from the hotel . by the way , we shall be very glad to reimburse you for the trip related expenses . vince nick bambos on 05 / 11 / 2000 05 : 31 : 53 pm to : vince . j . kaminski @ enron . com cc : stinson . gibner @ enron . com subject : re : visit to enron vince , yes , that would be ideal . but let me call first my travel agent to see if there is a flight that would satisfy all the other constraints . what time should i be at enron on thursday , and how far is the airport from your offices ? thanks , nick vince . j . kaminski @ enron . com wrote : > > nick , > > can you come to houston thursday night and meet me , stinson and > kevin hannon ( one of top 3 executives at enron broadband services ) > for dinner ? > > vince > > nick bambos on 05 / 10 / 2000 10 : 49 : 46 am > > to : vince . j . kaminski @ enron . com > cc : stinson . gibner @ enron . com > subject : re : visit to enron > > vince , > > many thanks for arranging that . yes , friday 05 / 26 / 00 is good . > i ' m blocking off in my calendar may 26 for the visit . > > again , many thanks . i look forward to seeing you and stinson > in two weeks . > > nick > > vince . j . kaminski @ enron . com wrote : > > > > nick , > > > > thanks for your message . the best date for a visit to enron > > would be friday , may the 26 th . please , let me know if this date would > work > > for you . > > > > vince > > > > nick bambos on 05 / 01 / 2000 04 : 26 : 30 am > > > > to : vince . j . kaminski @ enron . com > > cc : > > subject : re : visit to enron > > > > vince , > > > > how are you ? hope all is well . > > > > is there any chance we can schedule my visit to enron on friday , may 19 , > > or friday , may 26 ? > > > > by the end of april i was able to attract a top new student to work on > the > > project . > > the other one for the coming year will be giuseppe . by spending the > summer > > at enron , he will be in a position to bring the new one up to speed and > > create an intellectual team here at stanford to look at these problems . > > > > i must move ahead soon to put the project in place and get the work > going . > > > > talk to you soon , > > > > nick > > > > vince . j . kaminski @ enron . com wrote : > > > > > > nick , > > > > > > we can close the loop on our commitment to support the research > projects > > > before your visit to enron . > > > > > > my assistant , shirley crenshaw , will call you to set up a conference > > call > > > with me , stinson gibner , > > > and tom gros from enron broadband services to discuss all the isssues . > > > friday this week would work for > > > both tom and me . i think we need about 15 minutes . > > > > > > vince > > > > > > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525 > > > ( office ) . > > > > > > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm > > > > > > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu > > > cc : > > > subject : visit to enron > > > > > > hello vince , > > > > > > it was nice seeing you at stanford and many thanks for the lunch > > > we had together . i really enjoyed our discussions , both at the > > > technical level and otherwise . > > > > > > i promised to send you an e - mail regarding possible dates for > > > a visit to enron . i delayed it for a week till my schedule was > > > clearer . let ' s see if we can get a match with your schedule - > > > mine is rather terrible : > > > > > > friday , 21 st of april looks good . but april 23 rd is easter > > > sunday , so that may make it difficult for some people at enron > > > to be around . let me know if that is the case . i am willing to > > > visit then , because the week after that i am scheduled to be in > > > japan and in the previous weeks i am all committed on fridays . > > > > > > friday , 19 th of may is the next possibility , but this probably > > > is too far out . the main problem is that i am operating within > > > a window of opportunity for attracting top students for this > > > research . this window closes by the end of april , and it would be > > > important for the student support funds to be in place then , so > > > that i can make hard commitments to students and attract top > > > talent . i am already reviewing files of students who have > > > approached me for phd advising , and i am in a mode of doing "" soft > > > commitments to star - level students "" to get this research and its > > > potential on their radar screen . top students are highly sought > > > after by advisors and i want to be an early player in this > > > competition . > > > > > > does my visit to enron have to happen before we can set up the > > > project and student support at stanford ? if so , doing it before the > > > end of april is important for getting top people . if the visit can > > > happen after we get the ball rolling , then we can schedule it in may . > > > i assume there will be multiple visits both ways when the project gets > > > going . please let me know what you think . > > > > > > best regards , > > > > > > nick",0 +"Subject: organisational change as a continuation of the integration of enron metals into enron europe we are pleased to announce the following organisational changes which become effective immediately . tom mckeever , presently chairman of enron metals will move into the role of vice chairman enron europe reporting directly to john sherriff and michael brown . tom will focus on developing our key senior business relationships across all of enron europe . joe gold will become president of enron metals responsible for the entire organization . we will announce joe ' s replacement for managing our trading and origination efforts on the continent in the near future . michael farmer and michael hutchinson will continue in their roles managing the metals ' s merchanting and financial trading businesses respectively . please join us in congratulating tom and joe on their new roles . from the enron europe office of the chairman",0 +"Subject: re : here it goes ! steve , taking summer interns is the best way to screen and identify good candidates at low cost and low risk . i would take this person in , assuming you can still run it by the analyst / associate program . they closed the books for the summer . let me know if you run into any roadblock . i shall try help you from here . vince steven leppard 03 / 29 / 2000 08 : 31 am to : vince j kaminski / hou / ect @ ect cc : subject : here it goes ! vince do you have any views on taking summer interns here in the research group in london ? one of our analysts has recommended a friend of hers ( resume attached ) . i ' m sure we could dream up some work for an intern , so let me know what you think . many thanks , steve - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 03 / 29 / 2000 03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zuzana strmenova 02 / 23 / 2000 10 : 51 am to : steven leppard / lon / ect @ ect cc : subject : here it goes ! thanks , a lot steve .",0 +"Subject: re : resume thanks , vince - - vince j kaminski 05 / 22 / 2000 03 : 43 pm to : colleen sullivan / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : resume colleen , we are looking at some fab 133 related issues and we need all the help we can get . we can hire ainsley as a temp ( outside the a & a pool - they closed the list for the summer ) . we shall contact her directly and ask if she is interested . vince p . s . shirley , please set up a phone interview for me and datren . from : colleen sullivan 05 / 19 / 2000 11 : 26 am to : jean mrha / enron communications @ enron communications , robert superty / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , hunter s shively / hou / ect @ ect , scott neal / hou / ect @ ect , phillip k allen / hou / ect @ ect , fred lagrasta / hou / ect @ ect , craig breslau / hou / ect @ ect , vince j kaminski / hou / ect @ ect , sally beck / hou / ect @ ect , brad mcsherry / hou / ect @ ect , george smith / hou / ect @ ect , edward terry / hou / ect @ ect , katherine l kelly / hou / ect @ ect , randall l gay / hou / ect @ ect , beth perlman / hou / ect @ ect , ed mcmichael / hou / ect @ ect , stephanie miller / corp / enron @ enron cc : subject : resume if you are looking for any summer interns , please take a look at this student ' s resume . she ' s a junior at ut in the honors business program , extremely intelligent , with great potential . my sister was one of her teachers at humble high school and speaks very highly of her character , intelligence and drive . she always tells me to remember her name because i ' ll hear it again some day . if you know of anyone else who may be interested , let me know and i will forward her resume to them . - resume _ gaddis . doc",0 +"Subject: class proposal by yannis hi vince , yannis of the weather desk is planning to develop relationship with prof rene carmona in doing weather analysis . to start this off , they are planning to pay prof carmona to give a training class as outlined below , and they want to know if research is willing to send people and bear part of the costs . we can talk more at 4 : 00 pm , but while there is no doubt that getting people from outside to present new ideas is always important and interesting , i think research group members can easily give most of these talks . apparently , people are interested in these topics and are willing to pay to listen . my thought is that if the intent is to develop relationships , that is fine , but the research group should also be given the opportunity to provide more training and get more visibility . i have already communicated this to joe and to yannis . vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 03 / 05 / 2001 10 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : yannis tzamouranis / enron @ enronxgate on 03 / 05 / 2001 10 : 01 am to : vasant shanbhogue / hou / ect @ ect cc : subject : here is a tentative course description . day 1 : extreme value distriutions and copulas 1 . heavy tail distributions : exploratory data analysis and detection . extreme value distributions and generalized pareto distributions . estimation and simulation . practical examples . 2 . notions of dependence and copulas . estimation and simulation . experiments with the program evanece . day 2 : principal component analysis and modern regression 1 . principal component analysis and applications to the yield curve and the detection of contagion in financial markets . 2 . nonlinear regression and the construction of yield curves . 3 . nonparametric regression ( kernel and projection pursuit methods ) and alternatives to the black - scholes formula to option pricing . day 3 : time series analysis examples of temperature time series will be used to introduce and illustrate the following concepts and techniques : 1 . removing trends and seasonal components , and stationarity . 2 . fitting the classical autoregressive and moving average models . 3 . discretization of stochastic differential equations 4 . multivariate time series day 4 : nonlinear systems and filtering 1 . arch , garch and stochastic volatility models 2 . linear state space models and the classical kalman filter 3 . nonlinear systems and particle filtering . 4 . applications",0 +"Subject: re : wharton tiger team # 3 melinda , would you please coordinate john henderson into the thursday videoconference ? thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 30 / 2001 06 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - mohn henderson @ newpower 01 / 30 / 2001 04 : 13 pm sent by : melissa corley @ newpower to : christie patrick / hou / ect @ ect @ ees cc : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect , melinda mccarty / corp / enron @ enron , degiacic @ wharton . upenn . edu subject : re : wharton tiger team # 3 john would prefer to join the thursday call via teleconference . if you could provide the dial in number he will call in . thanks , melissa corley john henderson christie patrick @ ect 01 / 30 / 2001 03 : 50 pm to : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect cc : melinda mccarty / corp / enron @ enron , degiacic @ wharton . upenn . edu subject : wharton tiger team # 3 hi john and vince ! john , hopefully you received my voice mail regarding the matter set forth below . i ' m in ny now and won ' t return until thursday morning . perhaps it would be easiest for john to come to the video conference on thursday ( if he ' s in houston ) or via telephone if he ' s travelling ? ? whatever you both think is best . . please let me know ! my assistant , melinda mccarty , is setting up the call location at the enron building , as well as the dial - in number with donna piazze at wharton . melinda , please include john in the distribution of the video conference location . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 30 / 2001 03 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" degiacinto , clayton "" on 01 / 30 / 2001 02 : 00 : 07 pm to : "" ' christie . patrick @ enron . com ' "" cc : "" feerick , dennis "" , "" lessar , stephen "" , "" vittal , maheshram "" , "" bassal , omar "" , "" cummins , marc "" subject : wharton tiger team # 3 christie , as we talked last thursday via video teleconference , we are planning to narrow our scope to focus on a marketing / promotion plan for newpower including value - added products and services for the future . before we talk again on thursday , we would like to speak with john henderson again to see if he recommends any specific items he would like us to address . we are having trouble contacting him and wonder if you could facilitate a phone meeting between us , or if it would be best to include him in our next video teleconference . we are available the next two days at lpm and 4 pm houston time . we understand that john is a very busy person , and we appreciate any help you can give in getting us together to ensure our work is commensurate with his expectations . thanks , enron team 3 ( retail )",0 +"Subject: school teaching hello vince , i stopped by to see you today 03 / 28 / 01 . however , mrs . shirley notified me that you were out of the country . look , i need another favor . my wife , whom you met last summer , and i have been living in the woodlands about a month now . we have tried , to no avail , to get her in the local school district as a speech pathologist or a k - 6 grade school teacher . she could easily find a teaching job in the houston independent school district . however , i would prefer that she taught locally , in the woodlands . i need to know if you know of anyone we can contact to get her in the woodlands school system . i would greatly appreciate if you could help us out once again . i am attaching her resume ' for your perusal . thanks a million vince ! ! ! sincerely , datren williams ees x 58654",0 +"Subject: entouch newsletter business highlights enron producer one enron producer one facilitates one - stop shopping for the producer  , s infrastructure needs . through business relationships with hanover measurement services and applied terravision systems , enron producer one will offer and custom - configure a number of valuable production services and pricing plans to reduce overhead and simplify back - office tasks . initial products offered are well connects , transportation , marketing , measurement and accounting services . enron producer one is managed and supervised by john grass . in the news ceo says texas in good shape for electricity deregulation dallas ( ap ) - enron corp . ' s chief executive and president said tuesday he believes that texas energy markets are in good shape as the state prepares for deregulation . jeffrey skilling told an audience of about 400 business people at a downtown hotel that california "" has given the term deregulation a terrible name . "" electric deregulation in texas officially starts jan . 1 . "" in texas , i think we ' ve got a pretty good system , "" he said . in san francisco on tuesday , the california public utilities commission unanimously approved electricity rate increases of up to 46 percent to try to head off blackouts this summer by keeping the state ' s two biggest utilities from going under . when california officials set up deregulation they allowed the price of wholesale electricity to rise but capped the amount companies could charge customers , skilling said . socal edison and pacific gas & electric say they have lost more than $ 13 billion since last summer because they haven ' t been able to pass on the high cost of wholesale electricity . skilling said texans are in a much better position and shouldn ' t worry that their state ' s deregulation would be like the california experience . "" california , they just put together a crazy system ,  8 he said in his first public comments since becoming the houston - based company ' s chief executive officer in february . "" the markets in california are the most regulated markets in north america today . and that ' s what is causing the problem . "" 03 / 27 / 2001 associated press newswires copyright 2001 . welcome new hires egm - charles crow , nancy johnson , gregor lehmiller eim - darrell aguilar , latrisha allen , wesley wilder , ronald barnes ena - brian cruver , craig dean , martha kessler enrononline statistics below are the latest figures for enrononline as of march 16 , 2001 . ? total life to date transactions > 813 , 000 ? life to date notional value of transactions > $ 489 billion nuggets and for supplies to all consumers including households by 2005 . the setting of rules in the regulation for how power transmission tariffs can be charged for cross - border transactions and how congestion and capacity allocation at borders within the eu should be managed by transmission system operators . enron concludes that it is encouraged by the efforts of the commission to accelerate the european electricity and gas market opening and the reinforcement of third party rights of access to transmission networks . the commission ' s approach of harmonizing both the timetable and the regulatory framework deserves support from all member states . legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: re : hi thank you very much , vince . i do it right now . you will be receiving a recommendation form shortly . many thanks again . have a good evening . li vince j kaminski @ ect 06 / 20 / 2000 04 : 10 pm to : li xiao / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : hi lixiao , i shall be glad to help and give you a good recommendation . please , give my name as a recommender to the a / a pool . vince li xiao @ enron 06 / 20 / 2000 04 : 06 pm to : vince j kaminski / hou / ect @ ect cc : subject : hi hi , vince , how are you ? just last week , i got admission from u . of chicago mba program , so did yvan , by the way . now , i am applying loan from enron a / a pool . the person who is in charge of this told me that it needs three recommendations from current boss and previous boss for the application , and that the requirement includes all prc rankings in either ' excellent ' or ' superior ' , that i didn ' t achieve in the first rotation in research . getting loan is cricial at the stage . i wonder if you can be one of my recommenders . this will be a big help . thank you . li x 39635",0 +"Subject: investment to all whom it may concern : i keep receiving such unsolicited messages ( please , see below ) that represent an obvious scam . is there any way to block out the messages from this source ? i assume other employees of enron are also being hit . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 02 / 2001 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" dagogo kalu "" on 12 / 30 / 2000 02 : 15 : 58 am to : vince . j . kaminski @ enron . com cc : subject : investment from : col . dagogo kalu tel / fax 448453342783 attn : president / ceo request for an assistance dear sir , with due respect and knowledge of your good reputation , i decided to contact you for this matter that need urgent attention . i am col . dagogo kalu . i was the commandant of the west african peace keeping force & monitoring group ( ecomog ) until i sustained a very serious injury that put me off the military camp for about 3 months now . honestly , i have full trust for your honesty hence i write this letter to you . during our recent mission to sierra leone , a diamond rich west african country to cushion the war between the rebels and the ruling government , we ran into 2 boxes ( consignment ) right inside a thick jungle where we believed was a hide out of the rebels . as we opened the boxes , one that is smaller contains numerous sizes of raw diamond . the bigger box contains about us $ 15 . 2 million , which we believed to be the total amount of diamond sold at that period of time by the rebels before we invaded the place . myself and my two other colleagues took the boxes away . i took the bigger box containing the us $ 15 . 2 million to cotonou benin republic which is the nearby country and deposited it with one security company for safe keeping to enable me think wisely on what to do with the money . the smaller box containing the raw diamond i gave it to my other 2 colleagues , which they accepted in good faith . a month after this , the rebels lunched a counter - attack on us where i sustained a very serious gun shut wound on my right leg . a lot of our boys died but few survived . at this moment , i am receiving medical treatment here in london . this is why i need your help urgently . i need a foreign company i will present as the beneficiary of the huge amount and also pay in the money into their account . your bank account must be a good one where we shall not pay much as tax . you shall also serve as the general overseer and guardian of this fund and all the investment of this money will be under your care until i recover fully . i will give you all the details of the transaction immediately i get your response . you will also get a suitable percentage ( % ) as your share . all the documents of the deposit of the money are intact with my wife . i have already finalized this arrangement with the security company so there is no problem at all . please you can reach me through my direct tel / fax no : 448453342783 where i am receiving treatment . in your reply , state clearly your direct telephone and fax numbers for easy communication and more confidentiality . further details will be given to you once i hear from you . i await your urgent response soonest . best regards , col . dagogo kalu get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: re : spring 2001 conference participation by jeffrey k . skilling vince , jeff has decided to decline this speaking opportunity . he is scheduled to speak at a leadership conference at ut on 2 / 16 , so given his time limitations , he wants to pass on this one . sorry to be the messenger of bad news . srs vince j kaminski @ ect 10 / 12 / 2000 04 : 57 pm to : sherri sera / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron subject : re : spring 2001 conference participation by jeffrey k . skilling sherri , any resolution of the scheduling conflict jeff skilling had for february the 22 nd ? our friends at ut are ready to make the reservations and send out invitations to this conference vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000 05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ehud i . ronn "" on 10 / 12 / 2000 10 : 12 : 56 am to : richard . causey @ enron . com , vince . j . kaminski @ enron . com cc : subject : re : spring 2001 conference participation by jeffrey k . skilling rick / vince : good morning . further to my discussions with vince during his visit to the energy finance program yesterday , i write at this time to inquire whether mr . skilling ' s assistant has been able to confirm his participation as 2 / 22 / 2001 keynote speaker at our conference . with thanks for your intercession on our behalf , ehud ronn ehud i . ronn professor of finance and jack s . josey professor in energy studies director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: electricity conference update here it is ! . . . . apex 2000 conference news no . 2 ( http : / / www . apex 2000 conf . com / update 2 . html ) . updates on current speaker and presentation list , details for the partner program and social activities and your apex 2000 conference registration form if you do not have website access and would like to receive a pdf formatted update please email us at apex 2000 @ incentre . net ( mailto : apex 2000 @ incentre . net ) . all inquiries and requests should be directed to the apex 2000 conference office at apex 2000 @ incentre . net ( mailto : apex 2000 @ incentre . net ) or ( 403 ) 244 - 4487 . kathleen cheney apex 2000 conference coordinator list 7",0 +"Subject: eol presentation thank you for meeting with the students from rice university ' s jesse h . jones graduate school of management in april . the students greatly appreciated the opportunity to talk with you . your perspective and insights into eol and its competitors helped the students gain much more useful information in their interviews with enymex , houstonstreet . com , ice , dynegydirect , and other energy e - commerce platforms . the students will present the results of their research next monday ( may 7 ) at 4 : 00 p . m . in room 49 cl . we would be delighted if you can attend their presentation . if you cannot attend but would like a copy of their final report , please feel free to let me know and i will make sure you get it . thanks again for your help .",0 +"Subject: software license vince ( ii ) d - g is unable to provide effective technical support ; or ( iii ) if d - g agrees to release it sooner . before i have our attorney add these things to the agreement , we need to discuss the escrow situation . vince mentioned that you had suggested that your attorney keep the software in escrow . is your attorney a u . s . attorney ? it seems like i may have recalled that way back in march you might have said you had a friend or relative that was an attorney . is that the same person ? does this attorney work for a large firm , small firm , or solo practitioner ? basically , if you could just provides some additional information about your attorney , i would appreciate it . we normally would use an escrow company to put the software in escrow . we have dealt with a company here in the u . s . called dsi technology . i will check into that pending your answer regarding your attorney . once we decide what we want to do regarding placing the software in escrow , we will red - line the agreement to reflect such changes and e - mail it back to you for your review . i look forward to hearing from you . karla feldman enron corp . contract administration ( 713 ) 646 - 7554",0 +"Subject: azuix deal valuation bob , please find the price sample simulator , and run different scenarios with different trend assumptions . vince and stinson , bob and i will show you some results by the end of the day . zimin",0 +"Subject: day off tuesday stinson , i would like to take a day off tomorrow ( tuesday , april 10 ) . i need to register my son to elementary school and send my cars to service . my cell number is 713 - 858 - 2577 in case you need to reach me . zimin",0 +"Subject: meeting with riskcare to discuss joint ventures ( michael curran , manuel rensink & richard haddow ) michael curran ( head of research ) , manuel rensink and richard haddow ( director of technology services ) in attendance . contact number : 020 7562 3400",0 +"Subject: re : rabi de anything we can do ? - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 09 / 15 / 2000 08 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : toni graham @ enron 09 / 14 / 2000 07 : 36 pm to : grant masson / hou / ect @ ect cc : norma villarreal / hou / ect @ ect subject : re : rabi de grant , i did talk with tanya this evening however since i ' m on vacation friday i wanted to outline here what rabi has discussed with me . 1 ) title . . . . . he is currently at a vp level and we are offering him manager 2 ) sign on bonus . . . . . . . . . . . the 15 k is not coving the lost bonus he will receive at he current co ( $ 25 k ) 3 ) salary . . . . . . . . . . . he will receive a "" risk premium "" of approx 10 % befor tax . he is not able to quantify this for us and i was not able to get a number out of him as to what he is looking for . he is very enthusiastic and wants to work for enron but wanted to see if we could do anything to enhance our offer in these areas . toni from : grant masson @ ect 09 / 14 / 2000 08 : 58 am to : toni graham / corp / enron @ enron cc : subject : re : rabi de toni : i am talking to vince today . please call me if there are any further developments i should know about . regards , grant .",0 +"Subject: ees retail risk meeting 1 / 31 this is to confirm a meeting scheduled for today , at 3 : 00 p . the location of the meeting is eb 2868 . - - - - - - - - - - - - - - - - - - - - - - forwarded by veronica valdez / hou / ect on 01 / 31 / 2000 09 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - veronica valdez 01 / 28 / 2000 04 : 22 pm to : vince j kaminski / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , jonathan le / hou / ect @ ect , grant masson / hou / ect @ ect , dennis benevides / hou / ees @ ees , ronnie chahal / hou / ees @ ees , james d steffes / hou / ees @ ees cc : shirley crenshaw / hou / ect @ ect , la donna finnels - neal / hou / ees @ ees , vladimir gorny / hou / ect @ ect , marcia a linton / hou / ees @ ees subject : meeting please have your assistant call me to coordinate the meeting listed below . as per the message , we would like to schedule it on monday , january 31 . thanks , veronica - - - - - - - - - - - - - - - - - - - - - - forwarded by veronica valdez / hou / ect on 01 / 28 / 2000 04 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : vladimir gorny 01 / 27 / 2000 06 : 03 pm to : veronica valdez / hou / ect @ ect cc : subject : meeting veronica , could you please assist me in coordinating the meeting : topic : ees retail risks time : monday invitees : vince kaminski , tanya tamarchenko , jonathan le , grant mason , dennis benevides , ronnie chahal and jim steffes i would also like to send the following presentation to the participants thanks , vlady .",0 +"Subject: henwood team folks , i have been a bit quiet here since reaching india , primarily because of the delay in the arrival of the henwood team from australia . they are finally arriving on sunday , and krishna is joining me in mumbai on sunday evening itself . i would like to fix a schedule to have a conference call with you on the data and the type fo questions that you all would like to ask . stinson - could you please tell me what time would be a good one for you all to hae a confernce call , but not earlier than monday evening , india time ( monday morning houston time ) . please jot me a note on what would be a good time for the call . i will work out an agenda for the call . primarily , it will be discussion of the data and on what runs we should do to begin with . another key part of this will be the rate case that mseb is filing , because this will determine what wil be mseb ' s paymet capability in 2001 / 02 . this is critical for us . we have our in - house expert who has been working on this for some time now , and he will also present some of the material on that call . regards , sandeep . ps : : i am forwarding the basic data that henwood has sent to the whole team so that you have an opportunity to look at it , if you havent already got it .",0 +"Subject: re : summer internship position hi vince , paulo oleira ( one of the m . i . t attending our meeting on wed ) ' s research interest turned out to be a match for april hodgeson ( vp of content origination ) . i had him talk to april ( stinson was on the call as well ) to discuss his research interest and what he would likely to do for april . i suggested ( and april agrees ) that paulo would intern with her and matt and perform research on how end users ( consumers and business ) improved experience with epowered content can be quantified . this may include performing control experiments at m . i . t . we decided not to over specify what he would do since it is likely to change as soon as he arrives . i suggested once he starts , he will work with april and matt harris ( vp enterprise origination ) and they will define what the student needs to complete for the internship . addiontionally , tom gros agrees that this type of research are needed and this is a great way to start . i will proceed to have recruiting contact the student with an offer to start around may 22 , 2000 unless someone tells me otherwise . regards , ravi . p . s . charlene , please include paulo in your may 22 , 2000 start group . paulo will report to me within ebs research group but will work on a day - to - day basis with april and matt . as you ' ve mentioned that compensation is somewhat fixed but please keep in mind that this person is a phd candidate with very specialized skill set . please contact vince before extending an offer that may be too low , etc . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 09 : 27 am - - - - - charlene jackson @ enron 02 / 17 / 00 08 : 25 am to : vince j kaminski / hou / ect @ ect cc : celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , ravi thuraisingham / enron communications @ enron communications @ ect subject : re : summer internship position celeste , we need to make sure that the interns in vince ' s group are coordinated and incorporated with the rest of the summer associates . they should be offered the same starting dates , i believe they are may 22 , 2000 june 5 , 2000 . i am not sure about the june date . would you check and let vince know . they should also be offered the same starting salary package as the others . they will be included in training ( a few days ) and any other events we host . thanks",0 +"Subject: vince , i am writing about a student of mine who is on the job market this year . when you stopped by my office , about 18 months ago you asked if i had any students that might be appropriate for your group . although i didn ' t at the time , now i do . this student has excellent technical skills , including an m . s . in statistics and a ph . d . in economics by the end of the current academic year . his dissertation research is on the investment behavior of independent power producers in the us . as a result of research assistance he has done for me , he knows the california market very well and is familiar with the other isos . i think he would be an excellent match for you . the only problem is that he will probably have many other options available . however , i definitely think he ' s worth a look . if you ' d like him to send you a cv , please let me know . thanks . frank wolak professor frank a . wolak email : wolak @ zia . stanford . edu department of economics phone : 650 - 723 - 3944 ( office ) stanford university fax : 650 - 725 - 5702 stanford , ca 94305 - 6072 phone : 650 - 856 - 0109 ( home ) world - wide web page : http : / / www . stanford . edu / ~ wolak cell phone : 650 - 814 - 0107",0 +"Subject: re : gordon , it was a pleasure talking to you . i shall ask my assistant to send you the reprint . vince kaminski shirley , can you , please , send a copy of the paper on credit risk management ( reprint from the risk book ) . gordon rausser on 04 / 26 / 2000 12 : 02 : 02 pm to : vkamins @ enron . com cc : subject : vince : thank you very much for the useful information you provided me today . as you suggested , i wish to request a copy of the reprint that was published last year in risk . gordon rausser robert gordon sproul distinguished professor dean , college of natural resources university of california 101 giannini hall , mc 3100 berkeley , ca 94720 phone : 510 - 642 - 7171 fax : 510 - 642 - 4612 ",0 +"Subject: folks , attached is a conservative ( and fairly rough ) estimate of the size of the petrochemicals and refining market that is potentially exposed to prolonged drought in southern texas which could result in extremely low riverflows and possible curtailed production . the total annual revenue generated by these assets is no less than $ 20 b and could be substantially higher as the estimated capacity on some of these facilties is likely understated and other facilties not yet identified are likely to be vulnerable . note that this data does not include any facilities in the industrial complexes from houston northward and eastward as they are much less likely to experience such a drought - induced interruption . the only facilties identified thus far lie on or near the following rivers : brazos , colorado , navidad , guadalupe , and nueces . please let me know if you have any questions / comments as we work to determine whether or not a low riverflow insurance product is viable . thanks , charlie",0 +"Subject: wharton partnership jeff , i am sending you a recommendation regarding our cooperation with the wharton school , following my visit with tom piazze in may . tom is a corporate relations officer at wharton . recommendation . i am writing to you to recommend joining the wharton partnership . the partnership is an umbrella program established to coordinate wharton school initiatives for industry - academic cooperation . currently , the partnership supports alliances with approximately 200 companies worldwide . the recommended annual contribution by enron is between $ 100 k - 150 k , that puts us in the top bracket of contributing companies , such as ge , citigroup , goldman , sachs & co . , intel , and many others . the contribution is executed through grants to different research projects that would directly benefit enron . the choice of the projects is at our discretion and can be changed over time depending on the business needs . benefits to enron . enron can benefit from the partnership by : - gaining advance access to current academic research - significantly increasing our presence and visibility on the campus , enhancing our recruiting efforts - taking our message directly to influential academics who have significant influence on public opinion - gaining access to high quality executive education programs specific programs . the partnership functions through involvement in different research projects . i have identified a few projects that will maximize the benefit to enron . 1 . webi ( wharton e - business initiative ) . this programs provides an umbrella for different initiatives in the area of curriculum development , research and corporate engagement related to e - commerce . main benefits : access to e - commerce research and enhanced recruitment opportunities . 2 . emerging technologies management research program . interdisciplinary program addressing issues facing companies in new markets : managing intellectual property , participating in emerging technologies , selecting the optimal organizational structures . benefits to enron : access to financial technology in the area of valuation of intangible assets and new forms of business organizations . 3 . risk management and decision process center . development of techniques for assessment and management of non - traditional risks ( risks outside the scope of traditional insurance contracts and capital markets instruments ) . benefits to enron : access to new risk management tools , dissemination of information about our capabilities in this area . potential users of the program at enron . my group could coordinate the cooperation with the risk management and decision process center . greg whalley is a potential customer for webi . several different units of enron can be involved with emerging technologies management research program . vince",0 +"Subject: re : informs national conference at san antonio vince , could you please send me the title and a 50 - word abstract of your presentation by the end of today ? i ' d like to forward them to the organizer as soon as possible so that we could make it into the printed conference program . thanks . shijie on thu , 28 sep 2000 vince . j . kaminski @ enron . com wrote : > > shijie , > > i would be interested in attending and giving a presentation . > > this would be also a good opportunity for both of us to meet > and discuss the plans for closer cooperation . > > vince > > > shijie deng on 09 / 25 / 2000 01 : 20 : 59 am > > to : vince kaminski > cc : shijie deng > subject : informs national conference at san antonio > > > > hi vince , > > i ' ll be organizing a session at the informs national meeting in san > antonio ( nov 5 - 8 , 2000 , http : / / www . informs . org / conf / sanantonio 2000 ) on > modeling price volatility in electricity markets or financial engineering > approaches . i ' m just wondering if you or some member of your research > group would be interested in giving a presentation there . please let me > know . thanks . > > best wishes , > > shijie > > shi - jie deng > assistant professor > school of isye > georgia institute of technology > > office phone : ( 404 ) 894 - 6519 > e - mail : deng @ isye . gatech . edu > home page : http : / / www . isye . gatech . edu / ~ deng > > > > > > > >",0 +"Subject: re : a personal favor anurag , i shall talk about vikas to our it people . can you send me his resume ? vince "" saksena , anurag "" on 05 / 07 / 2001 10 : 06 : 54 am to : "" ' vkamins @ ect . enron . com ' "" cc : subject : a personal favor vince , i have left a voice mail to you and will wait to talk to you personally . my brother vikas , who is now in london , is trying to make a switch from consulting world to working for a specific firm . over last few months , i have heard of great deal about the success of enron on line business which fits well in the area of his expertise . i am wondering if you know of some one in london who he can speak to regarding career opportunities . since i spoke to you last , a number of things have changed . recently , my manadate was broaden to include leading a charge for developing a risk management function for both the domestic and international businesses for gmac . needless to say , this is exciting albeit making the life a little more hectic than usual . talk to you later . anurag 952 - 857 - 6133",0 +"Subject: rac organization changes the continued growth of the enron europe office and related businesses has prompted a change in the management of risk assessment and control ( rac ) in london . effective in early january , 2001 , ted murphy will transfer to the london office and manage the rac activities which includes credit / market risk and underwriting . ted will continue to manage the enron global market risk activities . steve young , currently managing rac in london , will begin a new assignment within ebs , also in london . the houston market risk group will be managed by david port . as enron continues to expand its trading and risk management businesses , it is vital that trading and credit policies are administered in a consistent and accurate manner across the company . hopefully this realignment will accomplish that goal . please join me in congratulating ted , david and steve on their new assignments .",0 +"Subject: "" we are one @ enron . com ! "" : final notice . please be aware that the following internet domains for messaging will be decommissioned on october 14 , 2000 : @ ect . enron . com @ ei . enron . com @ enron . co . uk after october 14 , 2000 , internet emails addressed to employees using the above internet domain names will be no longer be delivered . please note that this applies to enron employees worldwide . all employees must now use their @ enron . com internet address . some employees are still receiving internet email , primarily subscriptions to internet - based news / update services , addressed to their @ ect . enron . com , @ ei . enron . com or @ enron . co . uk email address . as mails to these addresses will no longer be delivered after october 14 , 2000 please contact the service providers to specify your new @ enron . com internet address . any employees who are aware of the following should contact the resolution center on ext . 31411 immediately : applications / processes using @ ect . enron . com , @ ei . enron . com or @ enron . co . uk internet addresses distribution groups being addressed via the internet using @ ect . enron . com , e . g . enron . london . developers @ ect . enron . com please direct any questions to the resolution center at ext . 31411 . thanks for your cooperation . enron messaging administration",0 +"Subject: re : summer internship martin please , refer john directly to jinbaek kim and his academic advisor . vince from : martin lin on 03 / 23 / 2001 04 : 19 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : summer internship as a followup , john gillespie has expressed interest in participating on the panel mentioned below . to whom should i refer john or should somebody contact him ? i just wanted to know what to tell john . thanks , martin vince j kaminski 03 / 23 / 2001 04 : 12 pm to : martin lin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : summer internship martin , thanks . vince from : martin lin on 03 / 22 / 2001 04 : 46 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : summer internship i did not find anybody in ebs who seems to know or be involved in any e - procurement issues . in enron corp , however , there is an initiative called ibuyit . this is a system that corp is deploying for e - procurement through corp and ena , and will get to ebs sometime late this year . john gillespie is in charge of the ibuyit initiative . perhaps he is the appropriate contact . i left a voice mail with him , but have not yet received a response . martin vince j kaminski 03 / 22 / 2001 07 : 17 am to : martin lin / hou / ect @ ect cc : subject : summer internship martin , please , take a look at question 3 . who is the right person at ebs ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 22 / 2001 07 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - - jinbaek kim on 03 / 15 / 2001 01 : 12 : 32 am to : vince . j . kaminski @ enron . com cc : subject : summer internship dr . kaminski , sorry for the late response , it took me some time to coordinate things . finally , it ' s almost dont : - ) it turned out that from june to august will be best for me for work at enron ( say june . 4 to august . 4 ) but i still need to know several things from your side . could you answer following questions ? first : is my suggested working period is ok with you ? if so , let me know what to do for settlement during the period . second : i got a list of work , i might be able to do for dealbench team from ross and suresh . i ' d like to know it is still a valid work list : the list he sent is as following : > 1 . write a paper in layman ' s terms that answers > questions like the following : > benefits of auctioning online for both buyers and > sellers , particularly in reverse auctions > explanation how multi - variable auctions are not > as efficient as price - only auctions ( is this true ? ) > how many participants are recommended for a > successful live auction > what types of goods and services are best suited > for live auctions versus sealed bid quotes > opinions on lotting strategies > trends in online private auctions > 2 . identify appropriate recent auction research ( 3 > or 4 papers out of the 90 + you provided ) and obtain approvals from the > authors to post on our site > 3 . create a list / bibiliography of relevant auction > literature ( with hyperlinks ? ) > 4 . would you be willing to offer auction consulting > services to our customers ( if they are interested ) third : there is an e - procurement forum at haas school of business , in may 22 . the chair of the forum is my advisor prof . arie segev . a person from wells fargo bank will talk about wells fargo ' s role in e - marketplace payment initiative , where enron broadband services is also one of key players along with citibank . he asked me whether you can contact a person at enron broadband services , who ' s related to the initiative . he wants to know whether we will have a speaker from enron to see enron ' s perspective , in the forum . here is a link to news related to the initiative , fourth : my advisor wants to know whether there could be any opportunity to do a case study , regarding enron ' s business . he is interested in e - procurement and e - marketplaces . business model and system architecture . . . thanks for reading this long email . i ' ll look forward to your answer . . i am sorry for giving you so much burden to answer those questions possibly not easy to answer . warm regards , jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on mon , 5 mar 2001 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > this is fine though you are welcome to spend more > time with us this summer . > > vince > > > > > > jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : summer internship > > > dr . kaminski , > > thanks for your answer . > before i tell you the time frame , > i ' ll need to talk with my advisor , first . > because here is an on - going - project . > i need to coordinate the schedule . > > i ' ll appreciate it if you understand my situation , > and give me some time ( less than a week , of course ) . > > for your reference , > probably > the dates i ' d like to ask you will be > from mid - may to mid - july ( 2 months ) > > warm regards , > jinbaek > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > jinbaek kim > ph . d candidate > dept . of industrial engineering and operations research > u . c . berkeley > http : / / www . ieor . berkeley . edu / ~ jinbaek > > go bears ! > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > : a a : _ _ . . . . . _ > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > : . ' : ` . : ` , ` . > ` . : ' - - ' - - ' : . ' ; ; > : ` . _ ` - ' _ . ' ; . ' > ` . ' "" ' ; > ` . ' ; > ` . ` : ` ; > . ` . ; ; : ; > . ' ` - . ' ; : ; ` . > _ _ . ' . ' . ' : ; ` . > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > ` . . . . . . . - ' ` . . . . . . . . ' > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > jinbaek , > > > > you can coordinate the details with me . > > let me know what the time frame is for you > > and we shall send you an appropriate offer . > > > > vince > > > > > > > > > > > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm > > > > to : vince . j . kaminski @ enron . com > > cc : > > subject : re : summer internship > > > > > > dr . kaminski , > > > > thank you very much . > > of course , i ' ll be happy to have an opportunity > > to work at such a wonderful company . > > i was contacting with surech raghavan at deal bench team , > > and was going to express my appreciation to you again > > after settling down process with them . > > > > for the period of working , > > i still need to coordinate with my advisor and > > may need to adjust according to that . > > but anyway , i ' ll try to coordinate smoothly . > > > > please let me know whether i should keep contacting > > with deal bench team , > > for working period and > > for misc . living support such as finding a place , rent a car , etc . > > > > i appreciate you so much again , > > for arranging such meetings and giving me an opportunity . > > all this opportunity will not be available to me , > > without your kind help . > > > > warm regards , > > jinbaek > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > > jinbaek kim > > ph . d candidate > > dept . of industrial engineering and operations research > > u . c . berkeley > > http : / / www . ieor . berkeley . edu / ~ jinbaek > > > > go bears ! > > > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > > : a a : _ _ . . . . . _ > > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > > : . ' : ` . : ` , ` . > > ` . : ' - - ' - - ' : . ' ; ; > > : ` . _ ` - ' _ . ' ; . ' > > ` . ' "" ' ; > > ` . ' ; > > ` . ` : ` ; > > . ` . ; ; : ; > > . ' ` - . ' ; : ; ` . > > _ _ . ' . ' . ' : ; ` . > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > > ` . . . . . . . - ' ` . . . . . . . . ' > > > > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > hello , > > > > > > sorry for a delay in getting back to you . > > > we would like very much to offer you a summer internship . > > > > > > please , let me know if you are interested . > > > > > > vince kaminski > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: continuation of spanish classes roy : i spoke with vince and he approved your continuing your spanish classes . if you need anything else , please let me know . shirley",0 +"Subject: petrochem desk vasant , it seems we have to help them . can kate help on this project ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 23 / 2001 09 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nelson neale @ enron 04 / 20 / 2001 10 : 29 am to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate cc : subject : petrochem desk i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group . from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research . nelson",0 +"Subject: fw : mscf speaker series - november 3 rd confirmation - - - - - original message - - - - - from : pierre - philippe ste - marie to : sent : monday , september 11 , 2000 8 : 13 am subject : mscf speaker series - november 3 rd confirmation > dear mr . kaminski , > > it is a great pleasure and a great honor to schedule you on the mscf > speaker series list for november 3 rd , i will make reservation for 8 persons > at a restaurant in pittsburgh for that evening . also , if you want i can book > an hotel for you . > > let me know if you have anything in mind for the topic of the presentation . > there is no real guidelines as we like our speakers to have as much room as > possible . here is one of the past presentations that had an impact . one of > our speakers divided the presentation in two , the first part was technical , > the second was more general , explaining what his firm was looking for when > hiring new employees . > > thank you very much for accepting our invitation . > > sincerely , > > > > > pierre - philippe ste - marie > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > pstemarie . homestead . com >",0 +"Subject: asking for advice regarding summer associate position at enron shirley , please , set up a phone interview with him . i think both zimin and stinson should talk to him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 12 / 2001 02 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : pavel zadorozhny on 01 / 12 / 2001 01 : 40 pm to : vince j kaminski / hou / ect @ ect , john l nowlan / hou / ect @ ect cc : subject : asking for advice regarding summer associate position at enron gentlemen , here is a guy who is looking for a summer associate position . i looked at his resume and think that he may be worth talking to . pavel - - - - - - - - - - - - - - - - - - - - - - forwarded by pavel zadorozhny / hou / ect on 01 / 12 / 2001 01 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - dmitri villevald on 01 / 03 / 2001 06 : 56 : 54 pm to : "" pavel zadorozhny ( e - mail ) "" cc : subject : asking for advice regarding summer associate position at enron dear mr . zadorozhny : maxim philippov suggested that i write you . being a first - year mba student at owen graduate school of management ( vanderbilt university ) with a finance concentration , i am looking for a summer associate position at enron . the area of my particular interest is enron ' s risk management products ( commodity derivatives research and trading ) . graduating from novosibirsk state university with major in physics , i am eager to apply my experience with the use of theoretical and statistical physics techniques to the managing of modeling processes and creating complex financial and trading models . i strongly believe that my graduate education coupled with undergraduate background in physics , solid work experience in finance and proven entrepreneurial spirit will allow me to contribute to enron as a summer associate . i would really appreciate your advice regarding employment opportunities at enron and would like to find out more about enron capital & trade resources corp . i will call you within this week to follow up on my request . thank you very much for your time . sincerely , dmitri villevald enclosure : resume > p . s . looking through an example of margin risk hedging at enron ' s web site , i think i found a small mistake there . url of this page is ( producer application ) the second sentence of the paragraph beginning with "" paradigm and enron exchange . . . "" states the following . for example , if the actual margin is $ 1 . 25 / mmbtu for a given month , then paradigm will pay enron $ 0 . 13 / mmbtu . alternatively , if the actual margin is $ 2 . 00 / mmbtu , then enron will pay paradigm $ 0 . 62 / mmbtu . i believe , if i am reading it correctly , the money should flow in the opposite direction , namely : for example , if the actual margin is $ 1 . 25 / mmbtu for a given month , then enron will pay paradigm $ 0 . 13 / mmbtu . alternatively , if the actual margin is $ 2 . 00 / mmbtu , then paradigm will pay enron $ 0 . 62 / mmbtu . am i right ? again , thank you very much for your time . - resume . doc",0 +"Subject: eprm article hi vince , ? as always , it was good to see you again in houston - we all enjoyed the meal very much , the restaurant was a good choice . ? it ' s that time again i ' m afraid . can you pls cast your eye over the attached ? and , if at all possible , get back to me in the next few days - i have to deliver something to london by friday . ? how ' s the course going at rice ? not too much work i hope . ? best regards . ? chris . ? - eprm _ 09 _ fwd _ vol _ estimation . doc",0 +"Subject: re : term papers please respond to here is the . pdf file and the word version ( in case you cannot open the . pdf ) . sorry about the inconvinence . please let me know if you can open the file . felix * * * * * * * * * * * * * * * * * * * * felix feng lu mba candidate , class 2001 jesse h . jones graduate school of management rice university phone - 713 . 942 . 8472 / fax - 714 . 908 . 7914 monfan @ rice . edu * * * * * * * * * * * * * * * * * * * * - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , may 04 , 2001 5 : 30 pm to : monfan @ rice . edu cc : vkaminski @ aol . com ; jason . sokolov @ enron . com ; vince . j . kaminski @ enron . com subject : term papers felix , please , resend me the term papers of your group , each as a separate file . please send it to my aol address as well as work address . my aol address is vkaminski @ aol . com my home phone number is 281 367 5377 . vince - feng lu . vcf - modeling project . doc - modeling project . pdf",0 +"Subject: joao neves vince , i wanted to follow up with you to see if you had an opportunity to review joao neves ' resume , which i sent ? you last wednesday , and to get your feedback on him . ? please ? let me know if you are interested in ? setting up an interview . ? also , i will be in houston the afternoon of ? friday , 4 / 13 , and would welcome the opportunity to meet with you in person , if your schedule allows . ? ? i look forward to hearing from you . ? regards , ? kate szablya power brokers , llc energy search and recruitment 303 - 716 - 2987 303 - 619 - 7589 cell 303 - 716 - 3426 fax kate @ powerbrokersllc . com www . powerbrokersllc . com ? ?",0 +"Subject: re : var let ' s meet at 4 : 00 . vince j kaminski 06 / 01 / 2000 09 : 19 am to : john arnold / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , jim schwieger / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect subject : var john , we have been working for the last few days on var related issues . the focus is on jim schwieger ' s storage book as of 5 / 25 and 5 / 26 where we had some counterintuitive results . this book is a good candidate for a systematic review of the var process . it seems that the problem arises from forward - forward vols used by the var system . you can see in the attached spreadsheet that the var , on a cumulative basis , jumps on jan 04 , when an abnormal ff vol hits a relatively large position . this ff vol is also much different from the previous day number producing a big jump in var . this row ( jan 04 ) is in magenta font in the attached spreadsheet . please , look at column d . the abnormal ff vol may result from one of the two factors : a . a bug in the code . we are working with the person in it who wrote the code to review it . b . a poorly conditioned forward vol curve ( a kink or discontinuity in the fwd vol curve will do it ) . one solution i can propose , is to develop for the traders a fwd - fwd vol generator allowing them to review the fwd vol curve before it is posted . if it produces a weird fwd - fwd vol , it can be smoothed . can you meet at 4 p . m . to review our findings ? vince",0 +"Subject: re : alex ' s paper comments : 1 . in the sentence between eqn . 3 and eqn . 4 , i think "" annualized volatility "" should replace "" annualized standard deviation . "" 2 . as to the comment , "" immediately we see something quite counter - intuitive . "" i would disagree . i think that its quite intuitive that this model should get closer to the black - scholes price as what is defined as the "" jump "" component becomes just part of the main price distribution , which happens if we define a jump to be only a 1 - sigma event . the table does show , however , that the results of using this model are very sensitive to exactly how you choose to define a "" jump "" ( i . e . 2 - sigma or 3 - sigma . . . events ) , and this is one difficulty in using the model in practice . 3 . in the paragraph after the table , i don ' t understand the argument about hedging the option . especially about buying a swap which would pay on the difference between the strike and fs . this seems non - sensical . 4 . i could not follow the logic of the last two sentences of the article , so this point should probably be explained more clearly . - - stinson vince j kaminski 08 / 18 / 2000 08 : 15 am to : grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , alex huang / corp / enron @ enron cc : subject : alex ' s paper minor changes i made to alex ' s paper . vince",0 +"Subject: re : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy finance conference feb . 22 - 23 , 2001 - the university of texas at austin karen , i shall attend the conference , both days . vince kaminski from : karen marshall 01 / 17 / 2001 07 : 59 pm to : david haug / enron _ development @ enron _ development , gary hickerson / hou / ect @ ect , craig childers / hou / ees @ ees , thomas suffield / na / enron @ enron , ben f glisan / hou / ect @ ect , ermes melinchon / enron _ development @ enron _ development , hal elrod / corp / enron @ enron , clay spears / hou / ect @ ect , kelly mahmoud / hou / ect @ ect , ellen fowler / enron communications @ enron communications , kevin kuykendall / hou / ect @ ect , fred mitro / hou / ect @ ect , kyle kettler / hou / ect @ ect , jeff bartlett / hou / ect @ ect , paul j broderick / hou / ect @ ect , john house / hou / ect @ ect , george mccormick / hou / ect @ ect , guido caranti / enron _ development @ enron _ development , ken sissingh / corp / enron @ enron , gwynn gorsuch / na / enron @ enron , mark gandy / enron communications @ enron communications , shawn cumberland / enron _ development @ enron _ development , jennifer martinez / hou / ect @ ect , sean keenan / hou / ect @ ect , webb jennings / hou / ect @ ect , brian hendon / enron communications @ enron communications , billy braddock / enron communications @ enron communications , paul burkhart / enron communications @ enron communications , garrett tripp / tor / ect @ ect , john massey / hou / ect @ ect , v charles weldon / hou / ect @ ect , peter hayes / hou / ees @ ees , ross mesquita / na / enron @ enron , david mitchell / hou / ect @ ect , brian kerrigan / hou / ect @ ect , mark gandy / enron communications @ enron communications , jennifer martinez / hou / ect @ ect , sean keenan / hou / ect @ ect , webb jennings / hou / ect @ ect , brian hendon / enron communications @ enron communications , billy braddock / enron communications @ enron communications , garrett tripp / tor / ect @ ect , john massey / hou / ect @ ect , v charles weldon / hou / ect @ ect , peter hayes / hou / ees @ ees , ross mesquita / na / enron @ enron , david mitchell / hou / ect @ ect , christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect , cindy derecskey / corp / enron @ enron cc : elyse kalmans / corp / enron @ enron , richard causey / corp / enron @ enron , sally beck / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , angela . dorsey @ bus . utexas . edu subject : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy finance conference feb . 22 - 23 , 2001 - the university of texas at austin the $ 500 registration fee is waived for any enron employee who wishes to attend this conference because of our relationship with the school . please forward this information to your managers and staff members who would benefit from participating in this important conference . ( note : vince kaminski is a panellist for the risk management session 3 . ) please note : the deadline for rsvp & hotel reservations is monday , january 22 nd don ' t miss this opportunity ! should you have any questions , please feel free to contact me at ext . 37632 . karen - - - - - - - - - - - - - - - - - - - - - - forwarded by karen marshall / hou / ect on 01 / 11 / 2001 07 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" angela dorsey "" on 01 / 10 / 2001 03 : 06 : 18 pm to : "" angela dorsey "" cc : "" ehud ronn "" , "" sheridan titman ( e - mail ) "" subject : invitation to 2001 energy finance conference - the university of texas at austin colleagues and friends of the center for energy finance education and research ( cefer ) : happy new year ! hope you all had a wonderful holiday season . on behalf of the university of texas finance department and cefer , we would like to cordially invite you to attend our : 2001 energy finance conference austin , texas february 22 - 23 , 2001 hosted by the university of texas finance department center for energy finance education and research dr . ehud i . ronn and dr . sheridan titman are currently in the process of finalizing the details of the conference agenda . we have listed the agenda outline below to assist you in your travel planning . each conference session will be composed of a panel discussion between 3 - 4 guest speakers on the designated topic . as supporters of the center for energy finance education and research , representatives of our trustee corporations ( enron , el paso , reliant , conoco , and southern ) will have the $ 500 conference fee waived . the conference package includes thursday evening ' s cocktails & dinner and hotel / ut shuttle service , as well as friday ' s conference meals , session materials and shuttle service . travel to austin and hotel reservations are each participant ' s responsibility . a limited number of hotel rooms are being tentatively held at the radisson hotel on town lake under the group name "" university of texas finance department "" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the latter evening for those who choose to stay in austin after the conference ' s conclusion ) . to guarantee room reservations , you will need to contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday , january 22 nd , and make your reservations with a credit card . please let me know when you have made those arrangements so that i can make sure the radisson gives you the special room rate of $ 129 / night . please rsvp your interest in attending this conference no later than january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as seating availability is limited . please feel free to extend this invitation to your colleagues who might be interested in attending this conference . center for energy finance education and research program of the 2001 energy finance conference february 22 - 23 , 2001 thursday , feb 22 : 3 : 00 p . m . reserved rooms at the radisson hotel available for check - in 5 : 30 p . m . bus will pick up guests at the radisson for transport to ut club * 6 : 00 p . m . cocktails , ut club 9 th floor 7 : 00 p . m . dinner , ut club 8 : 00 p . m . keynote speaker 9 : 00 p . m . bus will transport guests back to hotel friday , feb 23 : 7 : 45 a . m . bus will pick up at the radisson for transport to ut 8 : 30 a . m . session 1 - real options panelists : jim dyer , ut ( chair ) sheridan titman , ut john mccormack , stern stewart & co . 10 : 00 a . m . coffee break 10 : 15 a . m . session 2 - deregulation panelists : david eaton , ut ( chair ) david spence , ut jeff sandefer , sandefer capital partners / ut peter nance , teknecon energy risk advisors 11 : 45 a . m . catered lunch & keynote speaker 1 : 30 p . m . guest tour - eds financial trading & technology center 2 : 00 p . m . session 3 - risk management panelists : keith brown , ut ( chair ) vince kaminski , enron alexander eydeland , southern co . ehud i . ronn , ut 3 : 30 p . m . snack break 3 : 45 p . m . session 4 - globalization of the energy business panelists : laura starks , ut ( chair ) bob goldman , conoco ray hill , southern co . 5 : 15 p . m . wrap - up 5 : 30 p . m . bus picks up for transport to airport / dinner 6 : 30 p . m . working dinner for senior officers of energy finance center trustees * we have made arrangements to provide shuttle service between the radisson hotel and ut during the conference . however , if you choose to stay at an alternative hotel , then transportation to conference events will become your responsibility . * * * * * * * * * * * * * * angela dorsey assistant director center for energy finance education & research the university of texas at austin department of finance , cba 6 . 222 austin , tx 78712 angela . dorsey @ bus . utexas . edu * * * * * * * * * * * * * *",0 +"Subject: lng var limit request form vince , please review the attached file . when you are ready , i will bring you the original for your signature . thanks , eric",0 +"Subject: dale nesbitt greg , dale nesbitt is a consultant who develops pricing models ( spot and fwd ) prices for e - commerce sites . he will be in houston in the beginning of july . any interest in meeting him ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 28 / 2000 05 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 06 / 11 / 2000 03 : 17 : 23 pm to : vkamins @ enron . com cc : subject : dale nesbitt o : cc : subject : re : follow up vince : thanks for your help in this matter . i dont want to be a bother to you . i know you are doing your best to put this together as a go between . as you might suspect , i am in a hurry to put together the right hearing at enron because marketpoint is just now being completed - - u . s . and world oil and gas and north american electricity . we have just signed up our first web provider ( e - acumen . com ) , who is preparing to vend our north american electric generation data base over their website . i believe we are an integral part of their offering . it wont be long before marketpoint needs the capitalization to meet our growing customer needs professionally and quickly , particularly when we sign up one or more vertical portals to vend or offer fundamental forward projections from our models . i a loath to do so without the capitalization and staffing we need . also , i am loath to do so without the market reach that a partner like enron could render instantly available . i also would be eager during my next trip to houston to continue the discussion with you regarding how marketpoint might benefit enron directly . i plan to be there the last week in june . thanks again for all your help and support . dale",0 +"Subject: re : alp presentation christie , great ! ! you think big . it also puts a lot of pressure on the students . vince christie patrick 04 / 11 / 2001 10 : 57 am to : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron , melinda mccarty / corp / enron @ enron , shirley crenshaw / hou / ect @ ect cc : subject : re : alp presentation vince and ken , please see note below . rice ' s president is planning to attend the presentation and dinner ! i ' ll let you know when i hear from gil ( dean whitaker ) . thanks ! also , please remember that i ' ve scheduled steve kean for lunch ( i ' ll have melinda have lunches brought to the conference room ) . please let me know the exact room number and the exact number of lunches needed from your end . thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 11 / 2001 10 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - - judith duvall on 04 / 11 / 2001 10 : 36 : 06 am to : christie . patrick @ enron . com cc : subject : re : alp presentation ms . patrick , dr . gillis will attend both events . judith at 06 : 01 pm 4 / 10 / 01 - 0500 , you wrote : > president gillis and dean whitaker , > > enron would be honored with your presense at the presentation set forth > below . > > under the guidance of vince kaminski and his team here at enron , we are > thoroughly enjoying working with this group of bright and enthusiastic rice > students . we hope you can join us for the culmination of their significant > efforts . > > please let me know - - thanks ! ! > > - - christie . > - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001 > 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > vince j kaminski > 04 / 10 / 2001 08 : 13 am > > to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , > lounghrid @ rice . edu , luigical @ rice . edu > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley > crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron > > subject : alp presentation > > on behalf of enron corp . i would like to invite you to an alp project > presentation by a group of students > of jesse h . jones graduate school of management , rice university . > > the students will present the results of a research project regarding > electronic trading > platforms in the energy industry . > > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . > > we would also like to invite you to dinner , following the presentation . > > > vince kaminski > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > ( 713 ) 410 5396 ( cell ) > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com > > > > > > judith duvall secretary to the president rice university 6100 main street - - msl houston , tx 77005 713 / 348 - 4601 713 / 348 - 5271 ( fax )",0 +"Subject: re : video conference with ross mcintyre nick : we are unable to get a vc location for 10 : 30 am , however , we can have one at 11 : 00 am . houston time . is there anyway that we could push the interview to 11 : 00 am ? i know you have to make reservations for your conference room also . if not , we will have to do a phone interview . please let me know . thanks ! shirley crenshaw administrative coordinator research group - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 18 / 2000 10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 18 / 2000 10 : 01 am to : nick mooney / lon / ect @ ect cc : vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mark tawney / hou / ect @ ect subject : re : video conference with ross mcintyre nick , we may have problems getting the vc location in houston on short notice . we are currently on stand - by . we shall default , if we have no other choice , to a phone interview . vince enron capital & trade resources corp . - europe from : nick mooney 04 / 18 / 2000 09 : 09 am to : vince j kaminski / hou / ect @ ect cc : mark tawney / hou / ect @ ect subject : video conference with ross mcintyre vince , you should have received an invitation through lotus notes which outlines the vc location for the conference call tomorrow . it is schedule for 4 : 30 pm uk time ( 10 : 30 am houston time ) ross ' s background is from investment banking ex dresner bank , he has a phd in mathematical and is currently with speedwell weather derivatives where he has been developing weather derivative pricing and portfolio optimisation tools which they have been marketing to end - users with weather risks . the attached word documents are articles that he has written for publication . regards nick mooney - mcs . doc - analytic . doc - par . doc",0 +"Subject: softs in london vince , with regard to the softs curves development , i have been communicating with a couple of folks in london . the key contacts include james willis ( cocoa and sugar broker ) and nigel majury ( coffee broker ) . we had a conference call on thursday ( heather , trena , erin , james , nigel , frank speight , nelson ) to discuss data sources , data acquisition , priorities , and timelines . a number of data sources were identified ( e . g . , usda , int ' l cocoa organization , ed however , cocoa replaces coffee in the softs importance hierarchy . i suppose that this results from our physical ( or soon to be ) positions in both markets . the timeline hasn ' t changed ; however , adjustments will have to be made since we haven ' t yet acquired all of the necessary data for price modeling . moreover , per our discussion this afternoon , additional thought / time will have to be devoted to corn modeling to come up with an adequate hedging strategy . nelson",0 +"Subject: re : vacation shirley , no problem . vince shirley crenshaw 03 / 14 / 2001 07 : 47 am to : vince j kaminski / hou / ect @ ect cc : anita dupont / na / enron @ enron , kevin g moore / hou / ect @ ect , leann walton / na / enron @ enron subject : vacation vince : if it is ok , i would like to take friday , april 6 th as a vacation day . also , just a reminder i will be on vacation tomorrow and friday . thanks ! shirley",0 +"Subject: computer recently a new person moved into our space on 32 nd floor . being that the gentleman is there , i decided to move our computer out of his working space . the computer will be moved to desk in our area until the new hire arrives . fyi thanks kevin moore",0 +"Subject: re : aluminium asian digital options anjam , we can use moment matching to find the "" effective "" volatility and dividend yield for the average . then we can apply the european digital option formula . attached please find the c - code i did for asian spread option , when i find the effective vol and drift for both averages then find the option value by calling the european spread option . you can do just the same for the asian digital option . it would be nice to do a monte - carlo , just checking the accuracy of the approximation . it was nice to have you here , we are impressed by the work you have done . keep up the good work . zimin enron capital & trade resources corp . - europe from : anjam ahmad 07 / 27 / 2000 10 : 14 am to : zimin lu / hou / ect @ ect cc : subject : aluminium asian digital options hi zimin , russell placket of mg metals just talked to me about the issue of pricing a strip of twelve monthly asian digital options on lme aluminium . as i understand , the payoff to the customer is a fixed cash amount that wil be paid if the average of the closing prices of aluminium for a month are greater than the strike agreed in advance , where holiday days do not contribute to the average . russell mentioned that this would be a set of 12 monthly options starting in jan - 01 , and that the lme price for jan - 01 of $ 1572 . 5 ( which is the future converging to the spot price on the 3 rd wednesday in jan 01 ) can be used as a proxy / estimate for the average for the month . do you have a model for asian digitals or should i proceed with monte carlo to price this , maybe using european digital option model as control variate ? thanks , anjam x 35383",0 +"Subject: phil roan phil roan of koch ' s weather group has accepted a position with reliant working for their power desk . he starts in a week . we tried to get him to reconsider , but he said that he was already committed .",0 +"Subject: e - commerce seminar 3 / 22 hi donna ! i ' ll let you know asap about 3 / 22 . i believe vince will be in london on that date . more immediately , is there a conference call tomorrow ( thursday ) ? if so , is there a call in number established , or does melinda set this up ? ( she ' s out this afternoon ) . thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 03 / 14 / 2001 03 : 46 pm - - - - - fap 03 / 13 / 2001 02 : 09 pm to : "" ' christie . patrick @ enron . com ' "" cc : fap subject : e - commerce seminar 3 / 22 christie : professor ravi aron , wharton , has been a consultant to the student tiger team for the enron project . at his suggestion and invitation , tiger students have been invited to attend an e - commerce executive education seminar that is directly related to the project on which they are working . professor aron will be giving the session on pricing mechanisms and b 2 b market auctions . this will take place at the steinberg conference center on campus on thursday , march 22 from 8 : 30 a - 12 : 30 . we would also like to extend an invitation for a representative from enron to attend . please let me know if you or someone who has worked with the student teams will be able to attend the seminar . we look forward to seeing you and vince at the final presentation on april 3 from 4 : 30 - 7 : 30 pm in vance hall b 6 . regards , donna",0 +"Subject: telephone interview with ming sit the telephone interview with ming sit has been scheduled for tuesday , may 23 rd at 12 : 30 pm houston time . it will be in ebl 9 c 2 . krishna will find out if he will call you or if you should call him at work . thanks shirley",0 +"Subject: re : resume marshall , we shall call him on wednesday after 2 : 30 . vince marshall brown on 03 / 12 / 2001 11 : 23 : 31 am to : vince . j . kaminski @ enron . com cc : subject : re : resume vince , he can talk today after 2 : 30 pm today or wednesday afternoon as well . his work # is 713 - 544 - 5989 . let me know . regards , marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : monday , march 12 , 2001 11 : 40 am > to : marshall . brown @ robertwalters . com > subject : re : resume > > > marshall , > > looks interesting . can we arrange an exploratory phone interview ? > > > vince > > > > > > > marshall brown on 03 / 09 / 2001 07 : 46 : 22 > am > > to : vince kaminski > cc : > subject : resume > > > vince , > how are you . this candidate would be interested in any positions in > your group . > regards , > > marshall brown > vice president > robert walters associates > tel : ( 212 ) 704 - 0596 > fax : ( 212 ) 704 - 4312 > mailto : marshall . brown @ robertwalters . com > http : / / www . robertwalters . com > > > > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . > > this email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed . if you have received this email in error please notify > the system manager . > > this footnote also confirms that this email message has been swept by > mimesweeper for the presence of computer viruses . > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > ( see attached file : zhan _ ren . doc ) > > >",0 +"Subject: re : test thanks , vince . we have received both her application and her signed offer letter , so we are moving in the right direction . molly - - - - - original message - - - - - from : kaminski , vince sent : thursday , april 19 , 2001 10 : 44 am to : magee , molly cc : crenshaw , shirley subject : re : test molly fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 19 / 2001 10 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - - edward kao on 04 / 18 / 2001 08 : 30 : 49 pm to : vkamins @ ect . enron . com cc : subject : re : test vince : candice ' s contact information at mount holyoke is as follows : phone : ( 413 ) 493 - 5092 email : cgkao @ mtholyoke . edu address : 1453 blanchard campus center mount holyoke college south hadley , ma 01075 - 6002 ed ps : i hope ron singer has given you the needed info . please feel free to contact me if i can be of any help with regard to your colleague ' s inquiry about pursuing doctoral study at uh . ",0 +"Subject: security request for adding a timekeeper to cost center 107043 attached please find the security request to have anita dupont added to the research group timekeepers . she is my backup and needs to be able to do the timesheets in case i have to be out of the office . if you have any questions , please let me know . thanks ! shirley crenshaw 3 - 5290",0 +"Subject: indication dates for sharad ' s visit hi vince , having discussed with sharad , we think it would make sense for sharad to go to houston for a few weeks starting at the end of october . this would overlap with ben ' s visit in november and so some alternative arrangement would have to be made for accommodation . if he goes after ben then there will not be much time before the holidays meaning it would be left until early next year . please let us know if these dates work for you , and if so then we can talk about accommodation arrangements thereafter . out : sat 21 st october return : saturday 16 th december regards , anjam x 35383",0 +"Subject: dear ms . feldman , please find enclosed a proposal for the d - g energy software license agreement in which enron may be interested . we deliberately left blank the appendix 2 related to the number of sites and workstations it would cover , in order to let dr . kaminski decide what is best for enron . sincerely - appendices . doc - contract . doc h , lyette geman professor of finance university paris ix dauphine and essec",0 +"Subject: uk rpi model hi zimin ! please find attached for your review the uk rpi model , derived by bootstrapping rpi swaps . it ' s a very simple model and here are its specifics : swap structure payment : semi / semi act / 365 f > > yoyukrpi = ( ukrpi ( p - 2 ) / ukrpi ( p - 14 ) - 1 ) / 2 > p = payment month > the first payment is the latest known historical rpi , february 2000 , 2 . 32 % . assumptions * constant cashflows between the quoted years ( as opposed to interpolating swaps which distorts the curve a lot ) . this explains the atrocious look of the "" raw "" curve . it is then smoothed with a macro , which anjam wrote . * mid point of the swaps is used for deriving the curve ; * discount rate is libor and i solve for the coupon rate , which is the rpi yoy rate ; * the above is solved separately for each quoted period ( e . g . 2 yrs , 5 yrs ) and rpi rates are determined for the incremental portion . by forecasting rpi in the above method we are able to lock in and deliver the forecasted levels . looking forward to your comments and seeing you in london ! best regards , martina x 34327",0 +"Subject: re : american express charges hi samer ! hope you had an enjoyable thanksgiving ! i found out the "" scoop "" on the ticket . it was non - refundable and non - refundable tickets cannot be transferred . it was just your seat that maureen ' s husband used . i will send in a check request for reimbursement in the amount of $ 330 . 50 . the best thing would be for you to go ahead and pay the bill or wait for the check from us . sorry for the confusion ! cheers ! shirley "" samer takriti "" on 11 / 20 / 2000 01 : 41 : 23 pm to : shirley . crenshaw @ enron . com cc : stinson . gibner @ enron . com subject : american express charges shirley , how are you ? things are fine over here . we are still trying to settle in ; this process seems to be taking forever . i would like to ask for your help . i have received a statement from american express related to my enron account . the charge amount is $ 330 . 50 , which is supposed to be for an airplane ticket . after calling the travel agency in the park , i found out that this was the ticket that i was supposed to have used to fly to colorado . however , the ticket was used by maurine ' s husband and maurine claimed to have paid for the ticket . also , i remember calling the tap and cancelling prior to the travel date . can you help me figure out what is going on here ? i am not sure who is supposed to pay for this . i disputed the charge before but my dispute was rejected . i appreciate your help . thanks . - samer",0 +"Subject: ena analysts and associates i have just received word from ted bland that no one has responded to this memo . please re - read the following memo and respond to ted by july 31 , 2000 . thanks in advance for your prompt attention to this matter . as you know the ena otc is actively working with the analyst and associate program to develop greater talent flow into ena . we are presently working on a number of initiatives to improve how this is working and significantly improve communication flow and responsiveness . however in this regard we also need you to help make sure we have clear lines of communication within ena regarding a & a resource levels , performance , rotations and retention efforts . in this regard we would like for each of you to take the lead for your groups needs and ensure that any requests , questions or concerns about a & a ' s in your area are passed through you to either ted bland ( ena recuitment team lead - x 35275 ) or jana giovannani ( ena liaison from the aa program - x 39233 ) or myself . it is important that we are discerning about what we do with our a & a resources and plan carefully and accurately for our future needs , in this regard we need for you personally ( or a senior member of your team who you may optionally delegate this task to ) will take the time to review any a & a resource requests from your team before passing them onto us . in addition , given the importance of these resources , we will be inviting you to a regular bi - monthly meeting to discuss ena a & a matters . we will confirm the first date in due course . in the meantime if you would like to volunteer another senior member of your team to assume this reponsibility please supply their name as soon as possible . please call with any questions .",0 +"Subject: fyi "" how much do firms hedge with derivatives ? "" by : wayne r . guay university of pennsylvania s . p . kothari massachusetts institute of technology document : available from the ssrn electronic paper collection : date : march 2001 john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: visa status i want to keep you informed about my visa status . my current hlb visa expires on 15 th january , 2000 . my hlb visa extension application has been submitted to ins by milenia soto , enron ' s immigration attorney . i spoke with milenia soto yesterday and came to know that she has not received the receipt yet , however , she told me that it is perfectly legal to work based on the fact that application for extension has been submitted to ins . milenia soto has received the receipts from ins of my change of status application package which includes submission of applications for change of status , work permit , advanced parole and finger print . earlier , my i - 140 application was approved by ins during the first week of september , 1999 . if you need additional information and / or want to contact milenia soto , her phone number is ( 713 ) 522 0141 . sincerely , amitava dhar",0 +"Subject: re : possible rtp conference dear professor huntington , thursday 10 a . m . works for me . please , let me know where i can meet you . i am attaching my itinerary , so that you can contact me if necessary . my cell phone number is 713 410 5396 . vince kaminski",0 +"Subject: re : fwd curves thx i understand and will work with kevin and hunter . . margaret",0 +"Subject: your visit with vince kaminski - enron corp . research dear mr . fujita : we would be very honored to have you visit with enron . dr . kaminski is available all day on monday , april 17 and from 3 : 30 - 5 : 00 pm on tuesday , april 18 . please let me know which day and time is convenient for you . thank you . sincerely , shirley crenshaw administrative coordinator research group 713 / 853 - 5290",0 +"Subject: our mtg stinson , vince and vasant - i need to push our mtg back until this afternoon - i ' m just finishing a major manipulation i needed to make of the data , and i need to rest a few hours before running the first analysis . sorry . clayton",0 +"Subject: re : uc - berkeley graduate student rajnish , we shall invite you for an interview in houston . vince rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm to : vkamins @ enron . com cc : subject : uc - berkeley graduate student dr . vincent kaminski managing director and head of research enron corp . dear dr . kaminski , it was a pleasure talking with you and attending your talk today . i am a graduate student in industrial engg . and operations research working with prof . shmuel oren on topics in financial instrument pricing and design of contracts in deregulated electricity markets . i am also doing research in auction models and computable equilibrium models with applications in electricity market design . i am planning to graduate with a ph . d . in may 2001 and would appreciate hearing about any opportunities in your group at enron . i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal . thanking you , sincerely , rajnish kamat graduate student ieor , uc - berkeley 4135 , etcheverry hall dept . of industrial engineering and operations research university of california at berkeley berkeley , ca , 94710 - cvrkamat . doc",0 +"Subject: amr research preview information vince , feel free to use this username and password to surf around the amrresearch site ken - - - - - - - - - - - - - - - - - - - - - - forwarded by kenneth parkhill / na / enron on 04 / 12 / 2001 01 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - webmaster @ www . amrresearch . com ( craig mackay ) on 04 / 11 / 2001 05 : 34 : 08 pm to : kenneth parkhill cc : subject : amr research preview information the following is your user name and password for an amr research preview account . username : parkhilll 51647 password : remain the preview section will give you access to the executive summaries section and the presentation library . if you have any questions about amr research , please email info @ amrresearch . com or call ( 617 ) 542 - 6600 . to access the preview section , please go to the following url . http : / / www . amrresearch . com / members",0 +"Subject: elena chilkina please fill - out the evaluation sheets on elena chilkina . thanks",0 +"Subject: re : progress steve , thanks a lot . i think that having the pseudo code will go a long way towards understanding how the system works and making sure that there are no bugs in translation of a business problem ( for example , complicated credit insurance deals with multiple triggers and conditionality ) into the code . regarding tanya ' s attitude . just a few points . 1 . i don ' t think she has the skills to do the system administrator ' s work and she does not have the necessary privileges . this explains why she keeps asking winston for help . it ' s not that the work is beneath her . 2 . some members of tanya ' s team came to me complaining about winston . he effectively told them to go away and work on the "" research projects "" and that he would take care of the it issues . i don ' t think that it ' s just tanya ' s issue , though i agree that a more outgoing personality would be helpful . 3 . the reality of this situation is that the internal customers beat on tanya and me whenever there is any performance problems and / or they intuitively disagree with the results of a run . they could not care less about the demarcation line between it and research . they also want tanya to sign off on the model and she cannot do it without full access to the code . the bottom line is that we are in full agreement : tanya and winston have to work as a team and i shall work on my end to make sure that it happens . credit is emerging as a critical issue for enron for the next few weeks and the system cannot fail . vince from : stephen stock / enron @ enronxgate on 01 / 11 / 2001 08 : 23 am to : vince j kaminski / hou / ect @ ect cc : subject : progress vince , i got feedback from the lunchtime research meeting that you were talking about some specific solutions to performance of it systems . . . in particular distributed processing . also i heard that you had concerns about the use of multiple languages etc . . . . both of these sound like what i was discussing with you on previous occasions . . . do you feel the need to discuss these further ? the multi - language issue isn ' t really that much of an issue , as the current system is 98 % java right now . although i am a big fan of c / c + + ( it is my main development skill ) , i am also very aware that java is a much more evolved and robust language . i had serious doubts about the performance , but i ' ve had a review conducted , and the results are showing the sun unix implementation to be nearly as fast and in some cases faster than c / c + + because of something they call hot - spot technology . ( its an instruction caching technique , i believe ) . the concerns i expressed to you , were really about how technical people justify the use of a language on the strength of a relatively meaningless metric like portability . on the issue of distributed processing . . . the original review i had conducted by our architecture group pointed to that as a solution , and as zhiyong wei is already working on global valuation project , winston is actively working with zhiyong to see if he can model the var architecture on that , and also to find a common valuation piece between the systems . i ' d like the opportunity to talk to you about these issues if you have some time over the next few days ? also , i sat in on the tanya / winston meeting yesterday and as per our discussion at the elevator , i attempted to help her argument by suggesting to all present that she was trying to perform triage on the code . . . i . e . seperating research domain problems from it problems . she said that stepping through code was the only real way in which she could get a feel for where performance bottlenecks were . i asked her how she would measure that , and she said she would instrument the code manually by inserting timing elements at strategic points . i mentioned that a profiling tool could probably do this job for her . tanya again said that stepping through code is the only way she can get an idea of the code , and that studying documentation wasn ' t enough . about 6 weeks ago , i commissioned a team to document the system down to psuedo - code level and will be able to provide this to you and your team soon . ( in fact i ' ve asked for a draft copy to be given to tanya right now ) , and winston is also working on a draft research / it "" working together "" document , which will identify how the exchange of information takes place . tanya also gave the impression that she wants a dedicated it developer to do all the environment setup for her , because she doesn ' t really want to have to do that . i think that this is probably the root cause of the issue . the it guys are working very hard and her handling of the situation is not good , as it gives the impression that this kind of work is beneath her . she is claiming that they are un - cooperative . . . . they are claiming that she continually asks the same questions about set - up over and over again , and doesn ' t seem to want to learn how to do it . winston on the other hand , could be more proactive in determining what is a business related model issue and an it issue and ask for help from research . i think you debbie and i need to work quite hard to get them to play nicely . i have asked tanya and winston to go ahead and work very closely together over the next few days . . . . and debbie brackett and i will review their progress on friday . in the meantime l ' ll be looking at setting up a working test environment that doesn ' t involve my main quant guys in day to to day setup issues as a longer term solution . regards steve",0 +"Subject: re : request vince , i ' m glad you liked it . my next "" enron "" task is to try and develop a better understanding of the way you describe the use of btu swaps to create a synthethic multi - fuel plant . i understand the basic concept but want to learn more about the swaps ( duration , cost , etc ) which will impact a company ' s decision to build a single vs multi - fuel generator . do you have some example transactions or analyses that i might look over to learn more ? see ya in april ( we ' re going to learn to "" rope "" calves this year ) . your friend , john at 06 : 03 pm 3 / 23 / 01 - 0600 , you wrote : > > john , > > yes , i did . looks great . > vince > > > > > > "" john d . martin "" on 03 / 23 / 2001 05 : 02 : 05 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : request > > > thanks vince . this is great . > > by the way , did you get copies of the journal with our paper ? > > john > > at 04 : 59 pm 3 / 23 / 01 - 0600 , you wrote : > > > > john , > > > > no problem . > > i look forward to it . > > > > vince > > > > > > > > > > > > "" john d . martin "" on 03 / 23 / 2001 09 : 04 : 44 am > > > > to : vkamins @ enron . com > > cc : > > subject : request > > > > > > vince , > > > > would you mind making a few luncheon comments to the texas finance > festival > > group at our sat luncheon ? i struck out with andy and sheridan thought > > that you could relate very well to the group . how about it ? > > > > john > > > > john d . martin > > carr p . collins chair in finance > > finance department > > baylor university > > po box 98004 > > waco , tx 76798 > > 254 - 710 - 4473 ( office ) > > 254 - 710 - 1092 ( fax ) > > j _ martin @ baylor . edu > > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > > > > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: meeting with bob butts this is scheduled for 2 pm on thursday 27 th in his office ebl 906 . you are welcome to join . i will give a overview of what we ( sandeep & co ) are trying to do for dpc ( dabhol power ) and ask him to clarify the mark - to - market issues related to those deals . krishna .",0 +"Subject: associate / analyst super saturday participation enron managing directors , vice presidents , directors , and managers who utilize the associate / analyst pool as a follow up from a "" save the date "" email regarding your participation in the associate and analyst super saturday process , now is the time to select your dates to attend and participate . below are the dates for super saturday weekends during the upcoming recruiting season . if you are houston - based or if you know you will be in houston on business at the appropriate times please click the link below to volunteer . ( when selecting dates please avoid selecting to interview candidates who attend the schools for which you are a team member . ) associates analysts october 27 - 28 , 2000 november 3 - 4 thunderbird , ut , georgetown , rice rice , ut , baylor , a & m , ou , florida , lsu , uhcl november 10 - 11 , 2000 november , 17 - 18 , 2000 columbia , stern nyu , ucla , darden , cornell penn , uva , vanderbilt , michigan , howard , auc , vanderbilt , michigan uhmain december , 1 - 2 , 2000 december 8 - 9 , 20000 chicago , kellogg , harvard , wharton , mit wellesley , overflow and re - schedules from previous s / s friday , december 15 , 2000 carnegie mellon thank you for your support of the associate and analyst programs . shelly jones recruiting manager",0 +"Subject: braveheart fyi . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 12 / 19 / 2000 02 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - gail tholen @ ect 12 / 19 / 2000 01 : 39 pm to : li sun / na / enron @ enron cc : kevin kindall / corp / enron @ enron , eugenio perez / hou / ect @ ect subject : braveheart new trs for 4 q . - - - - - - - - - - - - - - - - - - - - - - forwarded by gail tholen / hou / ect on 12 / 19 / 2000 01 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - connie lee @ enron communications 12 / 19 / 2000 09 : 40 am to : gail tholen / hou / ect @ ect cc : amin maredia / enron communications @ enron communications , michael krautz / enron communications @ enron communications , alan quaintance / corp / enron @ enron subject : braveheart gail , i have attached several emails which have the following items : 1 . hawaii 125 - 0 docs 2 . economic summary that includes a summary of all assumptions in the model 3 . models 4 . asset summary the following is a structure diagram : please let me know when you would like to meet to discuss these items . also , alan quaintance is the person who reviewed the hawaii 125 - 0 docs , so if you have any questions regarding those docs , you will probably need to meet with him . thank you ! connie lee manager enron broadband services 713 / 345 - 8227 ( w ) 713 / 419 - 2728 ( c ) connie _ lee @ enron . net - - - - - forwarded by connie lee / enron communications on 12 / 19 / 00 09 : 22 am - - - - - jonathanwylie @ akllp . com 12 / 13 / 00 08 : 37 pm to : alan . quaintance @ enron . com , amin maredia / enron communications @ enron communications , angela . davis @ enron . com , annmarie . tiller @ enron . com , aroberts @ wilmingtontrust . com , davidbarbour @ akllp . com , bill . bowes @ enron . com , brenda . l . funk @ enron . com , brent . vasconcellos @ enron . com , brian . kolle @ enron . com , brian wood / enron communications @ enron communications , charles . delacey @ enron . com , clement . abrams @ enron . com , connie lee / enron communications @ enron communications , damon @ rlf . com , david koogler / enron communications @ enron communications , ed smida / enron communications @ enron communications , gil melman / enron communications @ enron communications , gina . karathanos @ enron . com , kevin howard / enron communications @ enron communications , james ginty / enron communications @ enron communications , jlawler @ wilmingtontrust . com , jordan . mintz @ enron . com , julia . h . chin @ enron . com , kenton @ rlf . com , kimberly . r . scardino @ us . arthurandersen . com , kristina mordaunt / enron communications @ enron communications , lkao @ mayerbrown . com , luitgard fischer / enron communications @ enron communications , marc hensel / enron communications @ enron communications , mark . wolf @ us . cibc . com , murielmcfarling @ akllp . com , mercedes . arango @ us . cibc . com , michael krautz / enron communications @ enron communications , mniebruegge @ mayerbrown . com , tompopplewell @ akllp . com , renee st . louis / enron communications @ enron communications , richard anderson / enron communications @ enron communications , patsargent @ akllp . com , schottla @ us . cibc . com , dannysullivan @ akllp . com , tamullen @ prickett . com , tellwood @ mayerbrown . com , michaelthimmig @ akllp . com , trevor . randolph @ enron . com , trushar . patel @ enron . com cc : subject : mcgarret h ( blockbuster ) attached are the latest blacklines for mcgarret h ( blockbuster ) in word and word perfect format . below is a list of the documents included : 1 . asset notice 2 . series certificate 3 . series supplement 4 . drawdown request 5 . total return swap confirmation 6 . put option agreement 7 . put option assignment 8 . notice of put option assignment 9 . membership interest assignment and ratification 10 . asset llc agreement 11 . transferor llc agreement 12 . receipt of asset llc 13 . receipt of transferor 14 . receipt of trust 15 . independent auctioneer letter agreement 16 . transfer and auction agreement 17 . b interest assignment agreement 18 . direction letter to owner trustee 19 . payment direction letter let me know if you have problems with any of the attached documents . jonathan wylie associate andrews & kurth llp 1717 main st . , suite 3700 dallas , texas 75201 214 - 659 - 4514 confidentiality notice : the information in this e - mail ( including any attachments ) is confidential , legally privileged and intended only for the use of each recipient named above . if you are not an intended recipient , you must not read , use or disseminate this information . if you have received this e - mail in error , please notify the sender immediately by reply e - mail and delete this e - mail from your computer . > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > - 271595 . doc - 271595 . wpd - 271599 . doc - 271599 . wpd - 271616 . doc - 271616 . wpd - 271618 . doc - 271618 . wpd - 271619 . doc - 271619 . wpd - 271675 . doc - 271675 . wpd - 271677 . doc - 271677 . wpd - 271679 . doc - 271679 . wpd - 271733 . doc - 271733 . wpd - 271737 . doc - 271737 . wpd - 271739 . doc - 271739 . wpd - 271742 . doc - 271742 . wpd - 271745 . doc - 271745 . wpd - 271753 . doc - 271753 . wpd - 271763 . doc - 271763 . wpd - 271765 . doc - 271765 . wpd - 271767 . doc - 271767 . wpd - 271777 . doc - 271777 . wpd - 272972 . doc - 272972 . wpd - - - - - forwarded by connie lee / enron communications on 12 / 19 / 00 09 : 22 am - - - - - renee st . louis 12 / 14 / 00 06 : 41 pm to : connie lee / enron communications @ enron communications cc : subject : see attached - - - - - forwarded by connie lee / enron communications on 12 / 19 / 00 09 : 22 am - - - - - renee st . louis 12 / 18 / 00 04 : 17 pm to : luitgard fischer / enron communications @ enron communications cc : connie lee / enron communications @ enron communications subject : models louie - i ' ve attached all of the models , asset summary , etc . connie is familiar with them , and i will visit with her again before i leave . thanks ! renee",0 +"Subject: re : site license for power world i concur .",0 +"Subject: benchmarking questionnaires david , i am sending you the questions submitted by petronas for our meeting on feb 8 . are you going to invite additional rac people to the meeting ( bill bradford would be helpful with credit questions , bjorn may be interested as well ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001 09 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - - khairuddinbmjaafar @ petronas . com . my on 01 / 22 / 2001 09 : 34 : 16 pm please respond to khairuddin _ mjaafar @ petronas . com . my to : vkamins @ ect . enron . com cc : azminab @ petronas . com . my subject : benchmarking questionnaires vince , attached are two sets of benchmarking questionnaires for your kind perusal . regards , khairuddin ( see attached file : q _ bench _ rms . doc ) ( see attached file : feb 5 - 17 , 2001 . doc ) disclaimer : this e - mail and any files transmitted with it ( "" message "" ) is intended only for the use of the recipient ( s ) named above and may contain confidential information . you are hereby notified that the taking of any action in reliance upon , or any review , retransmission , dissemination , distribution , printing or copying of this message or any part thereof by anyone other than the intended recipient ( s ) is strictly prohibited . if you have received this message in error , you should delete this message immediately and advise the sender by return e - mail . opinions , conclusions and other information in this message that do not relate to the official business of petronas or its group of companies shall be understood as neither given nor endorsed by petronas or any of the companies within the group . ( embedded image moved to file : pic 24962 . pcx ) - q _ bench _ rms . doc - feb 5 - 17 , 2001 . doc - pic 24962 . pcx",0 +"Subject: enron alp dear alp company representatives : thank you again for your participation in the alp company day at rice university . we are pleased to inform you that your project proposal has been chosen for the 2001 alp program . the following students will be working on your project : calabrese , luigi ? ? ? ? ? ? ? ? luigical @ rice . edu ghose , ivy ? ? ? ? ? ? ? ? ? ? ? ? ? ? ghosei @ rice . edu ghosh , ronnie ? ? ? ghoshr @ rice . edu iqbal , syed ? ? ? ? ? ? ? ? ? ? ? ? ? iqbal @ rice . edu sud , pravas ? ? ? ? ? ? ? ? ? ? ? ? ? pravas @ rice . edu womack , charles ? cwomack @ rice . edu the faculty liaisons for your project are : barrett , deborah ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? barrett @ rice . edu uecker , will ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? uecker @ rice . edu loughridge , dennis ? ? ? ? ? ? loughrid @ rice . edu a representative from the student team will contact you soon to set up a meeting time . if you need to contact your team , i have included the students ' email addresses . they check their email on a regular basis , so this is a good way to communicate with them . please let me know if you have any questions regarding this information . again , thank you for your interest in the jones school . best wishes for a great project ! carrie chamberlin miller director of mba program rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 5260 fax : ( 713 ) 348 - 5251 e - mail : cmiller @ rice . edu http : / / www . ruf . rice . edu / ~ jgs / pamela castro mba program associate rice university phone : 713 - 348 - 6223 fax : 713 - 348 - 5251 e - mail : castro @ rice . edu",0 +"Subject: enron open positions dear mr . kaminski : i would like to explore the opportunity to join enron investment partners . i understand that enron has $ 20 million fund set up to finance start - ups , and gene humphreys and his assistant john godbold are trying to attract minority - owned start - up firms . i also learned that enron has plans to increase the size of this fund to $ 200 million . i can find these opportunities for enron around the globe . given my background as a chartered financial analyst , with hands - on experience in investment management covering financial derivatives , fixed income , and equity , i can be a valuable resource to do the due diligence , origination , valuation , and monitoring of these start - ups . would you please help me arrange a meeting with either gene humphreys , ted murphy , or may be ken lay ? i am pasting below the job opportunities open at enron . i am also interested in these positions and would like to meet with the hiring manager . i will give you a call to follow up . thank you . sincerely , maruti more 832 - 251 - 7267 job 0000104282 details manager / director essential functions : candidates will be responsible for helping facilitate the transaction approval process for domestic and international investments . these investments include , but are not limited to , private equity , project development , venture capital , and structured credits . candidates will work with business developers and underwriters in identifying , understanding , and documenting transaction risks . they will also assist in preparing transaction approval documentation . in addition , they will oversee the valuation , modeling , and simulation process for investments . the primary focus is to identify and measure key risk factors from both a quantitative and a qualitative perspective with an emphasis on fundamental analysis . the candidate must be able to assist in management and training of departmental staff and in formulation of investment valuation policies and procedures . essential requirements : ? strong interpersonal skills ? understanding of transaction structuring and credit risk issues ? understanding of finance and valuation methodologies . ? proficiency with excel cash flow models ? experience with financial statement analysis ? understanding of statistics and simulation techniques ( monte carlo ) . preferred skills : na . special characteristics : the ideal candidate will possess an undergraduate degree in finance , accounting , or economics , and an mba . relevant experience could include credit analysis or valuation / finance experience . manager / director in the risk assessment department of a $ 20 billion energy company . contact : please email resumes to corpjobsl @ enron . com , please refer to job no . 104282 when responding . job id 0000104282 department capital pricing / risk an company corporate staff risk assessment and control location houston , tx type posting date 05 - jun - 00 to submit your resume for this position : online enter your resume id : no resume id ? you can create a resume on - line , deposit it in our database , and receive a resume id using our resume builder . your resume id will allow you to submit your resume once , but route it to up to 20 open positions . enron does not process resumes that are not sent in response to specific positions . if you have an existing resume in electronic format , the resume builder allows you to cut and paste your whole resume . fax our fax number is 1 - 888 - 588 - 7152 . you must tell us which jobs you ' re interested in , or we will not be able to process your resume . write on your resume ( or on a separate page ) all of the jobs ids of the jobs you ' re interested in pursuing . an equal opportunity and affirmative action employer top of page copyright 1997 - 1999 enron corp . all rights reserved . contact us . job 0000104281 details staff / spec / sr spec essential functions : "" snapshot "" preparation - responsible for preparation of quarterly asset "" snapshots "" which provides enron ' s senior management with summarized operational and financial information on selected merchant portfolio investments . responsibilities associated with preparation of snapshots include : researching publicly traded companies , calculating key financial data , updating and analyzing graphical summaries of performance , reviewing press releases for recent events data , updating stock prices from bloomberg ? weekly underwriters report - full responsibility for updating and distributing weekly underwriters ' report . involves regular interaction with executive vice president , london office personnel , as well as several vice presidents within underwriting group within rac . ? various projects - will be utilized on special projects on an as needed basis essential requirements : accounting / finance / economics degree with 0 - 4 years business experience . excellent computer skills - excel , powerpoint , bloomberg , word research skills and the ability to interact with a variety of personnel and departments . excellent organization skills . self starter , quick learner . must be team player . good writing skills with the ability to concisely summarize operational and financial results . preferred skills : na . special characteristics : . entry level position with the opportunity to gain familiarity with all of enron ' s portfolio assets . future advancement in asset and portfolio management possible for candidate who exhibits competence and creativity . contact : please email resumes to enajobsl @ enron . com , please refer to job no . 104281 when responding . job id 0000104281 department due diligence / asset mgmt company corporate staff risk assessment and control location houston , tx type posting date 05 - jun - 00 job 0000102789 details sr specialist essential functions : in this position candidates will model , run monte - carlo simulations , evaluate capital investments . these investments will cover a wide range . candidates will be responsible for the validation of models as well as insuring the accuracy and integrity of the model and underlying assumptions . the primary focus will be to provide an objective valuation for an investment by identifying and measuring key risk factors from both a quantitative as well as qualitative perspective . ? understanding of valuation techniques applied to equity or structured financial products . ? understanding of cash flow models and option pricing models . ? proficiency in excel . ? understanding of project finance and risk mitigation techniques . ? experience with financial statement analysis and pro forma statements . ? understanding of statistics and application to financial analysis . essential requirements : na . preferred skills : ? understanding of simulation methodologies such as montecarlo . ? exposure to statistical analysis software such as crystal ball or @ risk . the ideal candidate will possess an undergraduate degree in finance , accounting , or economics and have 2 to 3 years of financial modeling experience and an mba / cpa . special characteristics : na . contact : please do not contact the hiring manager . please no faxes . send resumes via e - mail to corpjobsl @ enron . com or mail to enron , attn : tvasut - eb 3628 , 1400 smith st . , houston , tx 77002 . please refer to job # 102789 job id 0000102789 department capital pricing / risk an company corporate staff risk assessment and control location houston , tx type posting date 17 - mar - 00 - attl . htm",0 +"Subject: re : next visit to houston george , would you like to take a like at the service ( see below ) . the meeting is on july 12 at 2 : 30 ( 19 th floor ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000 04 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" edward krapels "" on 06 / 29 / 2000 03 : 53 : 40 pm please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : re : next visit to houston vince , good to hear from you and i ' m glad you ' re available . how is wednesday at 2 : 30 ? i did look at eol and am not surprised to see its quality . i was unable to say much about it in my risk electricity hedging and trading report because of deadline pressures . how is the site doing ? i am intrigued by the competition for trading platforms and was astonished to hear that goldman , morgan , bp and shell were going to launch a site to compete with yours . talk about a shotgun marriage ! if we have time next week , i could step you through our website - - www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out a password yet but would be happy to walk through the site with you over the phone using my password . it ' s a very ambitious site - - with state - of - the - art wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for pjm and nepool . esai contributes oil and gas input price forecasts , capacity judgments , and "" herding "" ideas to develop power price forecasts for same time periods . after one month ' s full - bore effort , i ' m pleased with the results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) . have a great weekend . ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , june 28 , 2000 5 : 29 pm to : ekrapels @ esaibos . com cc : vince j kaminski ; shirley crenshaw subject : re : next visit to houston ed , i shall be available on both days . what about wednesday , july 12 , between 1 : 30 and 4 : 00 . please , let me know what time would work for you . it will be nice to see you again . vince p . s . by the way , did you have a chance to take a look at the eol ? "" edward krapels "" on 06 / 28 / 2000 02 : 49 : 41 pm please respond to ekrapels @ esaibos . com to : vince j kaminski / hou / ect @ ect cc : subject : next visit to houston dear vince , i will be returning to houston during the week of july 10 . esai and weather services international have launched - - after more than 18 months of r & d - - our service , called energycast power trader and energycast gas trader , for power traders in nepool and pjm . i would be happy to review the service with you as well as take you on a tour of our web site . are you available on july 12 - 13 ? sincerely , ed krapels",0 +"Subject: re : hello team ken : we are very excited about our alp at enron . we look forward to working with you and your team and learning about the broadband space . thursday at cacciatore ' s sounds fine with us . we will see you there at 7 : 00 p . m . enron alp team - - - - - original message - - - - - from : kenneth . parkhill @ enron . com [ mailto : kenneth . parkhill @ enron . com ] sent : tuesday , january 23 , 2001 10 : 47 am to : luigical @ rice . edu ; ghosei @ rice . edu ; ghoshr @ rice . edu ; iqbal @ rice . edu ; pravas @ rice . edu ; cwomack @ rice . edu ; barrett @ rice . edu ; uecker @ rice . edu ; loughrid @ rice . edu cc : vince . j . kaminski @ enron . com subject : hello team we are very excited to be able to welcome your alp team to enron . we are looking to working with you this semester . to kick things off , we would like to invite you to cacciatore ' s this thursday for dinner ( 1 / 25 / 01 , 7 pm ) . if you can ' t stand italian cuisine , or would like to try a different day or time , please feel free to make a suggestion . we look forward to meeting you . ken 713 / 345 - 4638",0 +"Subject: videoconferencing picture clears up network world fusion focus : neal weinberg on product review of the week today ' s focus : videoconferencing picture clears up 03 / 14 / 00 dear wincenty kaminski , ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ this newsletter sponsored by w . quinn ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ how to regain the 30 % of nt / 2000 server space that ' s wasted free ! get a grip on spiraling disk consumption and regain 30 % or more of your site  , s enterprise storage capacity . wquinn ' s storagecentral lets you : monitor , track and control user disk consumption ; identify and control what types of files your users can write to your servers . get a grip on your nt / 2000 storage space - - free eval : l copy and paste urls that break in two lines and remove extra spaces . today ' s focus : videoconferencing picture clears up by neal weinberg if you  , ve been turned off by the jumpy frames and poor audio quality associated with real - time videoconferencing , the reviewmeister has good news for you . there  , s a new generation of videoconferencing end - point devices that provide business - quality pictures and sound for under $ 12 , 000 . we grabbed a box of popcorn and tested eight videoconferencing systems , using 384 k bit / sec isdn and ip connections . in the category of videoconferencing appliances that is , standalone systems that go in a conference room for group video sessions with colleagues or business partners polycom  , s viewstation mp was the clear winner . the polycom viewstation provided outstanding video and audio quality . in addition , it was easy to install , configure and use . in the category of pc - based products , which are especially good for virtual collaboration from your desktop , vcon  , s mc 800 was the hands - down winner , based on its high - quality components . the beauty of these products is they allow you to have a real - time video image of the person you  , re conferencing with in one corner of the screen , with the rest of the space available for data collaboration . if you  , re in the market for a system , be sure to get one with a sony evi d 30 / 31 video camera ; an unidirectional boundary microphone , like the audio technica ; and a quality sound mixer . and look for remote administration and system management tools . for example , the viewstation allows you to upgrade software , change settings , or change address book entries directly from the administrator  , s system . most systems will allow you to transmit over isdn or ip , but we found performance over ip was dragged down by ip  , s overhead requirements . for the complete product review , go to : of course , there  , s more to videoconferencing than end points , so we whipped up an implementation guide that lays out the network topology , bandwidth and quality - of - service issues . based on our testing , the reviewmeister says now is the time to start pilot - testing a videoconferencing system . your chief information officer will love it when you tell him you can slash your company  , s airline and hotel bills because you  , ve got people from all over the company in virtual rather than face - to - face meetings . next week : we loaded windows 2000 on a pc and a server and ran gigabit ethernet to the desktop . guess where the bottleneck was ? to contact neal weinberg : - - - - - - - - - - - - - - - - - - - - - - neal weinberg is features editor at network world , in charge of product reviews , buyer ' s guides , technology primers , how - tos , issue - oriented feature stories and the technology insider series . you can reach him at mailto : nweinber @ nww . com . for related links - - click here for network world ' s home page : http : / / www . nwfusion . com videoconferencing picture clears up , network world , 03 / 13 / 00 but implementation is still fuzzy , network world , 03 / 13 / 00 how we did it , network world , 03 / 13 / 00 subscription services to subscribe or unsubscribe to any network world e - mail newsletters , go to : to change your email address , go to : subscription questions ? contact customer service by replying to this message . other questions / comments have editorial comments ? write jeff caruso , newsletter editor , at : mailto : jcaruso @ nww . com for advertising information , write jamie kalbach , account executive , at : mailto : jkalbach @ nww . com network world fusion is part of idg . net , the idg online network . it all starts here : http : / / www . idg . com copyright network world , inc . , 2000",0 +"Subject: re : fw : eprm article thank you very much sir . i ' ll incorporate you comments later today and send it off . thanks also for your other comments , i ' m glad you regard the book highly enough for your group and your course . i look forward to catching up with you soon . best regards . chris . - - - - - original message - - - - - from : to : chris strickland cc : sent : wednesday , december 13 , 2000 10 : 41 am subject : re : fw : eprm article > > chris , > > i have read the paper . it reads very well . two comments . > > 1 . it probably makes sense to include a note on the standard gbm simulation > equation and > the way it ' s typically discretized . > > 2 . it will help the reader who did not read the earlier articles to explain > what ct is ( perhaps a footnote ) . > > > i am also including a message i sent to julie today . > > * * * * * * * * * * * * * * * * * > 1 . i would like to register 2 members of my group for both courses ( in > houston ) : > > a . paulo issler > b . alex huang > > i shall attend the course on weather only . > > 2 . i have started the process to issue a check for 5 , 000 aud for lacima . > shirley sent you an update on this . the 2 nd installment comes from the > budget of our > office in australia . i shall talk to paul quilkey today about it . please , > let me know if there is any delay . > > 3 . the book will be used as textbook for the class i shall be teaching at > rice . > rice univ bookshop is placing an order . > > 4 . i would like to order 50 copies for my group . what is the best > way to place the order ? can we pay in us dollars ? > * * * * * * * * * * * * * * * * * > > best regards . > > vince > > > > > "" chris strickland "" on 12 / 12 / 2000 05 : 21 : 22 pm > > please respond to "" chris strickland "" > > to : > cc : "" julie "" > subject : fw : eprm article > > > hi vince , > > i ' m wondering if you got this last week ? if you could have a quick look and > get back to me with any comments that would be great - robin is chasing me > on this one ! > > best regards . > > chris . > > > - - - - - original message - - - - - > from : chris strickland > to : > sent : wednesday , december 06 , 2000 4 : 16 am > subject : eprm article > > > > hi vince , > > > > hope things are fine with you . i ' m sorry that i only ever write to you > when > > i ' m after something , but could you look at this simulation article - the > > next installment in the eprm articles . > > > > many thanks and best regards . > > > > chris . > > > > > > > > - - - - - original message - - - - - > > from : > > to : ; ; > ; > > > > sent : friday , september 08 , 2000 4 : 23 am > > subject : re : var article > > > > > > > les , > > > > > > the revised version of the var article looks fine . > > > > > > vince > > > > > > > ( see attached file : eprm _ 04 _ sim _ mr . zip ) > > > > >",0 +"Subject: re : re : software license stinson , i ' m not sure who was going to handle this project - tom moore or laine borgman . so , by this e - mail , i will ask the appropriate person to respond to you . i have also given tom ' s name and e - mail address to ms . geman . they will just need to change in article 17 of the software license agreement the response time from 2 to 3 days and the software license part should be done . the only thing that would leave then is ms . geman ' s response regarding the escrow agreement as to whether it was agreeable to her and her law firm ( who would be holding the source code in escrow ) . i ' m not sure whether ms . geman has responded to tom about that or not . i have sent electronic copies of all of the documents to both tom and laine to finalize once ms . geman responded . tom can be reached at : x 55552 laine can be reached at : x 56470 thanks , karla stinson gibner @ ect 10 / 20 / 00 01 : 39 pm to : karla feldman / enron communications @ enron communications cc : vince j kaminski / hou / ect @ ect subject : re : re : software license karla , sorry for the delay . i have been out for the last three weeks . vince tells me that he has talked to ms . geman and they agreed on a time of 3 business days for a response time . is there someone else now handling this project ? thanks , stinson from : karla feldman on 09 / 27 / 2000 04 : 24 pm to : gemanix @ aol . com @ enron cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : re : re : software license ms . geman , i apologize for the delay , but i finally have drafted an escrow agreement for placing the software in escrow with your attorneys . please review and have your attorneys review and let me know if it is acceptable . i will be leaving the department i have been working in and moving to a different enron subsidiary on october 13 . if at all possible , could we try to get the software license agreement and the escrow agreement wrapped up before i leave so that someone else does not have to try to pick up where i left off ? i think we are just about in agreement on the software license portion . seems like the only outstanding question had to do with your concern regarding providing a response time of 2 business days . i do not have any answers regarding that - maybe vince kaminski or stinson gibner can respond on this issue . i look forward to hearing from you and trying to get this finalized within the next 2 weeks if possible . thank you , karla feldman enron corp . ( 713 ) 646 - 7554",0 +"Subject: venue change - very important ! ! understanding and applying financial mathematics venue change - london , september 21 & 22 : please note that i am faxing you a form which states a venue change for the above listed course . just to reconfirm , the training course will now be held at the following location : ? the white hall hotel 2 - 5 montague street ? london wclb 5 bu ? t 011 44 207 580 2224 ? f 011 44 207 580 5554 please contact venue search to arrange your accommodations - 011 44 208 541 5656 ? to confirm your acknowledgement of this venue change , please either fax back the form or respond to this email . please contact me with any questions you have regarding the change . ? regards , amy lamonsoff ? conference coordinator ? t ( 212 ) 925 - 1864 xl 48 f ( 212 ) 925 - 7585 ? alamonsoff @ watersinfo . com ? ?",0 +"Subject: model effort in houston christian , our spring / fall window of "" < nactivity "" is rapidly eluding us . . . we need to get our internal model operational without delay . along these lines , let ' s go ahead and plan your visit to houston as soon as possible , but by all means get you in at least 4 weeks before hurricane season . that would mean the month of may looks good . please inform me what duties you could not perform from here to support the sydney office , we ' ll figure out how to keep that office whole . ( it ' s working without a hitch to have steve bennett in london , but continuing his houston duties ) if the first week in may ( for the whole month ) will work , please respond asap and we ' ll get housing arrangements finalized . looking forward to your visit , - - - mike",0 +"Subject: department presentation , friday 7 th july , 8 : 45 am the fame of the research department is spreading all over europe ! best regards , martina - - - - - - - - - - - - - - - - - - - - - - forwarded by martina angelova / lon / ect on 05 / 07 / 2000 15 : 29 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron information technology from : enron europe general announcement 05 / 07 / 2000 15 : 27 please respond to european t & d / lon / ect to : ect frankfurt , ect helsinki , ect london , ect madrid , ect oslo , ect teesside , ect warsaw cc : subject : department presentation , friday 7 th july , 8 : 45 am maureen raymond - casta  eda , senior international economist , research department , houston will be presenting approach to country risk friday 7 th july 8 : 45 am - breakfast and questions to ms . raymond - casta  eda 9 : 00 am - presentation will start enron house , fifth floor , auditorium it is not necessary that you book a place , however if you have any questions please contact european t & d .",0 +"Subject: fw : eprm - - - - - original message - - - - - from : dave hall to : sent : tuesday , september 05 , 2000 8 : 53 pm subject : eprm > dear mr clewlow > > thanks for your piece on var for inclusion in the october edition of energy > & power > risk management . > > the article is attached . there are a few queries from the editor and myself > written in bold in the text . you might find that some parts of the piece > have been edited to > conform to our ' house style ' , etc . > > comments and suggestions welcome . > > should we send this article to anybody else for their approval ? > > thanks and kind regards , > > > dave hall > chief subeditor > energy & power risk management magazine > risk waters group > haymarket house > 28 - 29 haymarket > london > swly 4 rx > uk > tel : + 44 ( 0 ) 20 7484 9796 > fax : + 44 ( 0 ) 20 7930 2238 > > > > > > > > > > - var . doc",0 +"Subject: re : lng may 19 decision john , sorry for the confusion . this is a second tanker on which very few details are available . the lng group is working as we speak to provide some information for joe sutton before his departure for paris this ( tuesday ) afternoon . there is no dash on this 2 nd tanker yet . i asked dave gorte on monday to send me one and was not told that he can provide me with the mystic lady dash as the closest substitute . vince john sherriff 05 / 16 / 2000 12 : 20 am to : vince j kaminski / hou / ect @ ect cc : subject : re : lng may 19 decision vince - thanks for the update . what i am not sure of is what if any decision has to be made on may 19 . it seems to me that the mystic lady and elba island deals have already been approved and executed - but it is quite likely i am missing a detail or two . john vince j kaminski 15 / 05 / 2000 17 : 14 to : john sherriff / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , david gorte / hou / ect @ ect , rick buy / hou / ect @ ect , ted murphy / hou / ect @ ect subject : re : lng may 19 decision john , this is the update on what i have done for the lng transactions . 1 . i was not involved in the lng ship project . i shall read the dash and give you my comments . without looking at the details , i think that the decision to charter a tanker removes one significant risk we have at the elba island project ( please , see point 2 ) . 2 . elba island . i am working with doug rotenberbg , brad hitch , scott earnest ( sally beck ' s organization ) and rac to set up the book for the elba island transaction . the next step will be to expand the book to capture all the enron ' s lng - related positions in one place and to look for natural risk offsets and possible hedges . a working group is meeting to close a few remaining gaps tomorrow ( tuesday ) at 8 : 30 . a few comments on the book design and my view of the project : a . the current thinking is that lng will be sourced for the elba island facility by buying marginal cargos on the fob basis . marginal cargos will represent supply from excess capacity that has not been committed under long - term contracts or became available due to some short - term frictions . the fob cargos are typically selling at a significant discount to the long - term contract prices . the economics of the deal , as represented by the book we are setting up , will reflect the assumption that not only we can locate marginal cargos but that we shall be able to do it on a regular basis , arranging shipping and coordinating the facility schedule and natural gas transactions in the us . in other words , we have a significant logistical and operational risk in this transaction . b . the transaction will cover the period of 17 years ( with an extension option of 5 years ) . even if we can lock - in the lng volumes over this time period , we have no ability to lock - in the other side of the spread ( us gas prices ) for such a long tenor . this is essentially a tolling transaction with exposure to the lng - nat gas spread and i would not recommend locking - in only one leg of the spread . one solution would be to cover , let ' s say , 50 % of he lng volumes for the first 5 years and lock - in the nat gas side on the us market side . c . the book we are setting up will be based on many managerial assumptions regarding sources of lng , shipping rates , schedules , etc . i would set up a big prudence reserve in case we mark it to market . d . my group will work on valuation of some options we have in the elba island deal ( that are good for enron ) and on the hedging strategy for the lng positions . long - term lng contracts are typically based on the japanese crude cocktail that correlates very well with brent . vince john sherriff 05 / 14 / 2000 01 : 40 am to : vince j kaminski / hou / ect @ ect cc : lauren urquhart / lon / ect @ ect subject : lng may 19 decision vince i haven ' t spoken to you for awhile but hope the world is treating you well . anyway with greg moving to his new role i have ( i hope only temporarily ) staff trading oversight for the eastern hemishere plus lng . i understand that your group is taking a first cut at developing curves for lng and lng ship values . i also understand that another lng ship decision is on the dockets for may 19 ( not very far away ) . anway i understand this is a big decision but i still have gotten very little info yet . can you please let me know where you stand now ? i will ask my assistant lauren to set up a time that i can speak with you in the next couple of days and if you have anything for me to review before then she can get it faxed to me as well . look forward to connecting with you vince . john",0 +"Subject: exmar purchase decision fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by rick buy / hou / ect on 05 / 22 / 2000 01 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - john sherriff 05 / 22 / 2000 01 : 21 pm to : rick buy / hou / ect @ ect , joe gold / lon / ect @ ect , david haug / enron _ development @ enron _ development , doug rotenberg / enron _ development @ enron _ development , rick bergsieker / enron _ development @ enron _ development , vince j kaminski / hou / ect @ ect cc : subject : exmar purchase decision i just got off the phone with jeff skilling to make my pitch for doing the exmar deal . he said that he generally understands the logic of the deal but simply wants the risk management discipine applied to analzing the position ( a reiteration of what rick buy had said in our meeting today ) . i would simply ask vince ' s team to take a quick look tommorow at valuing the ships as stand alone positions with a guess at the volatility based on historical price movements . this would be much easier than the rainbow option approach and would allow us to roughly look at the value of the options on the other two ships . in other words we could look at two ship long positions with some implied volatilities and also estimate daily vars on the ships as if they were mark to market ( although i agree with david that we will not likely be able to mark the ships because they will be treated as leases ) . john john - - - - - - - - - - - - - - - - - - - - - - forwarded by john sherriff / lon / ect on 22 / 05 / 2000 19 : 05 - - - - - - - - - - - - - - - - - - - - - - - - - - - joe gold 22 / 05 / 2000 18 : 58 to : john sherriff / lon / ect @ ect cc : subject : exmar purchase decision john , after spending a few minutes with our shipping experts in the coal and oil groups , i have a slightly different angle on the exmar lng vessel decision . i would ideally like to spend the time to analyse this purchase as we do power and gas positions . unfortunately , we do not have that luxury and sometimes , in absence of true analytics , the most rudimentary measures can provide the best decision tools . here is how we would make the decision : 1 ) our shipping expert confirms that $ 140 million for a 135 , 000 ton ship represents a good price relative to new build costs over the last three years and that quotes have been trending up past that number recently . he also confirms that the current trough is the result of the default of several far east buyers and that new lng orders and other ship building ( cruise liners ) have reduced the over capacity . his experience and historic analysis has suggested that the pricing cycle for lng ships lasts for a significant period . new efficiency measures should reduce new build prices ( and allow for a lower trough ) , but not by an extreme amount versus the $ 140 million cost of this vessel . pierre normally likes to roll time charters ; however , this is difficult in an illiquid shipping market like lng . he would purchase this ship if the lng shipping book were his to manage . he estimates the ship could be sold in a distressed sale for $ 110 million and could be potentially time chartered on a long term basis at a value of up to $ 200 million . 2 ) our development teams in spain , italy and turkey have been trying to solve the big question - gas . in each country , the key to developing a merchant plant is securing gas flexibility or at least securing negotiating leverage with the monopoly gas supplier . it is questionable whether or not this decision will have an immediate impact on arcos . the plant ' s time line and the realities of the lng supply market may require that we commit to gas natural before any source of 3 to 5 year gas can be secured . the shear threat of being able to bring spot or term lng to these markets will improve our negotiating leverage and / or allow us to create flexibility . going forward , however , other potential plant opportunities in spain , and elsewhere in the med region , may have the capacity to utilise these vessels . i think that this flexibility is worth at least $ 25 million to me . 3 ) i would summarise : upside $ 60 + $ 25 = $ 85 million downside ( $ 30 ) + $ 25 = ( $ 5 ) million i would do it . i will leave the rest to you . joe",0 +"Subject: re : fax machine request ~ 05 - 19 - 2000 kevin , per your request , please see below : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * new facsimile machine information please take a look @ the following and let me know , which fax machine you choose or if you need information on something smaller , then i will have the vendor contact you directly to finalise installation . an enron director or above { with signature authority to legally bind enron to a contract } will have to sign off on the contract paperwork before the fax machine can be installed . delivery times on new machines are normally 3 - 5 working days but either vendor listed below will be able to provide a "" loaner "" should you have a business need . please discuss the fax machine install date with the rep when ordering the equipment . if there is no existing fax line present , you will need to send a notes - mail to the move team { erica @ x 3 - 3185 or janelle @ x 5 - 7917 } requesting the installation of a new fax line . the move team can be found in the notes - mail "" ect address book "" . if you are an ees employee , you must first get new equipment approval from ees budget control . contact susan mcleroy @ x 5 - 8066 or via notes - mail . if you are an ebs employee , you must first get new equipment approval from ebs purchasing & budget control . contact paula corey @ x 3 - 9948 or martha reyna @ x 3 - 3491 . you can reach both of these people via notes - mail . if you are an ena employee , you must first get new equipment approval from ena finance & budget control . contact lorie belsha @ x 3 - 9617 or via notes - mail . a note on the fax machines listed below : all the machines listed below come with a 2 nd paper tray and upgraded memory { maxed by model ~ see below } as an enron standard from each vendor . all the fax machines listed below have a modem speed rated @ 33 . 6 kbps versus the canon laserclass 7500 { example only } @ 14 . 4 kbps = new fax machine should be noticeably quicker . document feeder capacity of the machines listed below are the same as the canon laserclass 7500 { example only } maintenance = models listed below have maintenance / repair coverage included in monthly $ total . there is no separate agreement ! toner / drum cartridges + paper + line charges are extra { not quoted } contract pricing can change without warning , so please let me know asap if a vendor quotes you a different price to those listed below against the various models . if the fax machine is to be used in a trading type environment , here are some considerations : no more than 20 people per fax machine = take a look @ the fax machine placement on eb 30 or eb 31 . disregard any fax machine that does not have a 33 . 6 k modem and jbig compression { or equivalent } . look for memory upgrades & 2 nd paper tray included in monthly cost . { models quoted are loaded } . maintenance is to be included in monthly cost { models quoted are covered } . * * * * * * * * * * * * * * * * * * * * * from pitney bowes pb 2050 cost : $ 95 . 00 per month on rental enron specs : this model has 10 megs of memory + a 2 nd paper tray as standard . pitney bowes weblink , click here - - > there are several of these fax machines located through out the enron building and 3 allen center , including some on trading floors . * * * * * * * * * * * * * * * * * * * * * pb 9930 cost : $ 76 . 00 per month on rental enron specs : this model has 10 megs of memory + a 2 nd paper tray as standard . pitney bowes weblink , click here - - > there are several of these fax machines located through out the enron building and 3 allen center , including some on trading floors . * * * * * * * * * * * * * * * * * * * * * pb 9830 cost : $ 55 . 00 per month on rental enron specs : this model has 5 megs of memory + a 2 nd paper tray as standard . pitney bowes weblink , click here - - > * * * * * * * * * * * * * * * * * * * * * from panasonic communications direct uf - 885 cost : $ 75 . 00 per month click below for machine details { similar to the uf - 880 with 8 megs of memory + 2 nd tray = no handset } : there are several of these fax machines located through out the enron building including some on trading floors . * * * * * * * * * * * * * * * * * * * * * the above machines are designed for workgroup use . q ) how many people will be using this fax machine ? q ) how much usage will this fax machine have ? { i . e . heavy = 40 faxes per day @ 20 pages / 60 faxes per day @ 2 - 3 pages or a lot less ? if "" heavy "" , either the pb 2050 , pb 9930 or uf 885 / uf 895 should fit your needs = if 15 - 40 , the pb 9830 would probably be a better fit } * * * * * * * * * * * * * * * * * * * * * contract details the fax programs are an agreement between each end user of the fax machine and the relevant vendor , as follows : pitney bowes 36 month rental . 30 day notice for termination of contract . no penalty for early termination of contract = call pb rep . and have the machine picked up , making sure a receipt is given to you by the collecting rep . upgrade / downgrade available = $ 0 penalty . rep will be happy to discuss details with you and answer any questions on these points . panasonic communications 36 month lease rental . 30 day notice for termination of contract before term expiration . no penalty for early termination of contract for office / department / location closure . upgrade / downgrade available = $ 0 penalty . rep will be happy to discuss details with you and answer any questions on these points . * * * * * * * * * * * * * * * * * * * * * please note the following the facsimile machine agreement is between the enron business unit / department requesting the facsimile machine and the vendor . the user or requester of the fax machine is responsible for invoice payment . enron property & services corporation is not responsible for the coding , processing or payment of facsimile { fax } machine invoices . in order to return any old fax machine equipment , you must contact the leasing company that supplied the equipment and send them a certified letter that terminates the agreement . if you terminate a contract within the original agreement period , you may be liable for penalty charges as a lot of fax machines are on a non - cancellable lease agreement . the vendor who supplied the fax equipment will be able to let you know of any outstanding $ amounts for your existing equipment . if you are asked to pay outstanding $ amounts , be aware that some vendors include the cost of outright purchase of the old fax equipment = from the contracts i have reviewed so far , you are under no obligation to purchase the old equipment . ikon contact name for returns : beth frank : phone = new # - - > 409 - 441 - 1262 { previously 281 - 355 - 6274 } beth frank fax # = new # - - > 409 - 441 - 1266 { previously 281 - 355 - 5496 } beth frank e - mail address ~ eafrank @ aol . com marimon business systems contact name for returns : don scott : phone = 713 - 686 - 6601 don scott fax # = 713 - 686 - 6676 { no e - mail address available } * * * please call me or e - mail me if it is a different vendor name on the machine and i will respond with a contact name * * * charges for fax machines are dependant upon manufacturer & model , with the person responsible for the fax machine , paying the invoice . you must notify the vendor of any changes relating to fax machine assignment { even if it is within the same group } = who the machine has been reassigned to { contact name } , the new contact phone # and the location of the machine . * * * * * * * * * * * * * * * * * * * * * fax machine supplies replacement toner cartridges : most of these are available to enron through corporate express @ savings over the fax vendor invoice price . these savings can be significant , so please e - mail me if you would like more details . * * * * * * * * * * * * * * * * * * * * * please call me if you have any questions . thanks , iain russell @ 713 - 853 - 6861 contracts supervisor administration enron property & services corp . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * kevin g moore 05 / 19 / 2000 12 : 42 pm to : iain russell / epsc / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : fax machine iain , please , i am in need of a fax machine . it was brought to my attention that you may have one available . please inform me concerning this matter , we need one a . s . a . p . . thanks kevin moore x 34710",0 +"Subject: re : all best wishes for 2001 geoff , you have very beautiful daughters . you must be a very proud father . i shall try to attend a few sessions of the cera conference . you can also call me when you are in houston and we can meet for dinner and / or drinks . vince "" lubbock , geoffrey "" on 01 / 29 / 2001 11 : 49 : 52 am to : "" vincent kaminski ( e - mail ) "" cc : subject : all best wishes for 2001 vince loved talking with you i ' ll be at the cera conference in houston feb 12 through feb 16 if i could manage to see you then i would enjoy it vey much geoff > ps it took me hours to produce the card which is hot off the press . best wishes for health wealth and happiness for you and your family in 2001 this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . if you have received this email in error please notify the system manager . - xmas 2000 . pdf",0 +"Subject: dinner thur . evening ? vince , greetings . i have not been advised by amy lamonsoff of a planned risk dinner next thur . if there will not be such a dinner , would your schedule permit a dinner next thur . ? best , ehud ehud i . ronn department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : visit to houston - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 13 / 2001 04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 02 / 13 / 2001 04 : 36 pm to : nick bambos @ enron cc : subject : re : visit to houston nick , friday , march 9 seems to be better for jim fallon . we are tentatively setting meeting with him , paul racicot , and probably arshak sarkissian who is heading the ip trading effort . let me know if you would like to give a presentation so we can reserve a room and send invitations . it will be fun to see you and giuseppe again . i am looking forward to your visit . regards , stinson nick bambos on 02 / 09 / 2001 11 : 33 : 33 am to : stinson . gibner @ enron . com cc : gappy @ stanford . edu , cope @ csli . stanford . edu subject : re : visit to houston hi stinson , eventually , the team here ( giuseppe , eric , myself ) has converged to two possible dates to propose for a visit : 1 ) friday , march 2 2 ) friday , march 9 how do these look on your side ? we ' ll structure the agenda immediately after we fix the date . i look forward to seeing you again . best , nick stinson . gibner @ enron . com wrote : > > nick , > > i hope things are going well and you are not staying too busy . we should > start planning for your next trip to houston , as i ' m sure your schedule > will be getting full very soon . perhaps you could give the people in > enron broadband an overview of the areas of interest within your research > group . i ' m sure we could also benefit from you views of how the current > technology is evolving . > > are there certain dates which would potentially work for you ? please let > me know by email or give me a call at 713 853 4748 . > > looking forward to talking with you . > > - - stinson",0 +"Subject: re : prc feedback forms gina , i shall be glad to speak with you . shirley crenshaw will call you to set up a meeting . vince from : gina corteselli / enron @ enronxgate on 04 / 16 / 2001 01 : 12 pm to : vince j kaminski / hou / ect @ ect cc : subject : prc feedback forms mr . kaminski : i would like to try to get on your schedule for a few moments this week to discuss the draft prc 360 evaluation forms ( provided below for your info ) to ensure that the criteria and skills and behaviors we have used are adequate for your employee population . the generic forms that were presented at the prc committee meeting a week ago may best reflect commercial employees , and to some extent commercial support employees , and may not be entirely appropriate for employees in some of the specialized technical and technical areas . i would appreciate your input on this so that , if possible and time permitting , we can try to tailor the form to suit needs across the organization . one simple solution may be to add a skills / behaviors block requesting evaluation and feedback on the employees specific job and performance , another solution would be to add job specific behaviors and descriptors to the list of those already developed ( second attachment below ) . i would welcome your thoughts and a few moments of your time to chat with you about this . many thanks , gina corteselli global performance management 713 853 - 3377 713 569 - 5589 ( mobile )",0 +"Subject: real options for mothballed plant i ' m off for my xmas break , so happy holidays to you all ! steve",0 +"Subject: entouch newsletter business highlights enron industrial markets enron industrial markets announced the signing of definitive agreements with huntco , inc . under which over a 15 - year period enron will provide inventory price risk management services and will eventually provide more than 600 , 000 tons per year of hot - rolled , cold - rolled and galvanized steel products to huntco steel . the agreements provide enron access to huntco ' s network of steel distribution centers nationwide . the agreements also provide for enron ' s acquisition of huntco ' s cold rolling and certain coil pickling operations in blytheville , arkansas . these transactions with huntco have the potential to fundamentally change the way steel is bought and sold in the united states . it gives enron immediate access to physical steel and positions enron geographically to serve the steel industry in a variety of ways . in addition to providing physical products on both a spot and term basis , eim ' s goals for the steel industry include developing commodity risk management products , providing structured finance products and establishing the market - making capabilities that enron has brought to the natural gas , power and other commodity markets . enron north america - upstream products upstream products has partnered with duke energy field services ( defs ) to close a 20 - year ngl exchange and transportation deal with formosa hydrocarbons and williams energy field services to handle raw make product from the williams markham plant . formosa hydrocarbons is building a 40 , 000 bpd fractionator to handle this and other gulf coast ngl production . the accompanying pipeline will be known as the seabreeze pipeline system and will be constructed by defs . texas brine llc will provide ngl storage services for formosa hydrocarbons on this system . primary production for this system is coming from the boomvang nansen field in the deepwater gom and will be the first deepwater gom production to come onshore in texas . upstream products has also worked to arrange a 20 - year transportation lease agreement on the dean pipeline ( owned by teppco ) for refinery grade propylene service to be utilized by formosa plastics . coupled with this transaction , enron clean fuels has entered into a propylene storage agreement with formosa plastics to utilize ecf ' s mt . belvieu storage facilities . in addition , enron global markets has been able to amend its current transportation agreement with teppco to prematurely terminate a take - or - pay obligation and realize additional transportation revenues from interim ngl production coming from the williams markham to be delivered to mt . belvieu . upon close , upstream products was monetized out of its initial position by defs and retained a risk - free net profits position on the seabreeze pipeline going forward for an additional 20 , 000 - 40 , 000 bpd of excess capacity on the system . ena west power southwest power , an ena affiliate , signed a 222 mw 15 - year tolling agreement with allegheny energy supply for all of the output of southwest ' s las vegas expansion project , scheduled for completion in september , 2002 . with the tolling agreement done and construction underway , the project will now be marketed to qualified generators . in the news "" to truly understand enron ' s jeffrey skilling - the hypersmart , hyperconfident chief executive of what may now be the largest energy trading company on the planet - head to your local video store and check out that classic american cinema , wayne ' s world . at 15 , skilling helped launch a no - budget television station in aurora , illinois - the very thing that mike myers and dana carvey so famously spoofed on saturday night live and in two movies . the tv skit even begins with a sketch of a teenage cameraman , the role of the real - life skilling . "" - - - randall lane , worth magazine . may 2001 . calgary , alberta - - enron canada has settled its lawsuit with ngx , canadian enerdata , om gruppen and richard zarzeczny , regarding the compilation and methodology for calculating the alberta natural gas price indices published by the canadian gas price reporter . by the terms of the settlement there will be a joint press release issued regarding the settlement , which is to be the only public communication regarding the matter unless agreed to by all parties . otherwise the settlement is confidential to the parties . accordingly , there is to be no formal or informal discussion with media , colleagues , competitors , counterparties or otherwise . welcome new hires egm - salil pradhan , randy o ' conner , ricardo charvel , greg fields , ken newman , john ashman , rick cantrell , tim klaiber , trevor woods , eim - tim asterman , maxine leclaire , jerry newton , philip siewert , janamon johnson , darralyn briskey , theodore rogers , ena - rae meadows , tiffany winship , adrianne engler , kimberly yates , jackie verity , transfers ( to or within ) ena - christa winfrey , mario alonso , paul rizo - patron , nick ploitis , misti day , robert cothran , susan wilson , diane cutsforth , david owen egm - mark friedman , john groves , deirdre mccaffrey , william windle enrononline statistics below are the latest figures for enrononline as of may 9 , 2001 . * total life to date transactions > 963 , 575 * life to date notional value of transactions > $ 579 billion nuggets & notes reminder : brown bag lunch , thursday , may 17 at 11 : 30 am in 5 c 2 . the speaker is michael l . miller discussing principal investments . "" historically , newsprint has been sold under strong relationships as a highly differentiated , branded product to "" very discriminating "" buyers at newspaper publishers . eim believed differently . by the end of march , eim had succeeded in closing on its 2 nd newsprint mill , making it the 7 th largest newsprint manufacturer in north america . remarkably , in just 2 months , eim ' s newsprint team has succeeded in closing $ 100 mm total notional value "" enron commodity style "" fixed price contracts with terms of 1 to 5 years ? . . and they said it wasn ' t a commodity . "" rodney malcolm - vice president , forest products sales and marketing travel tip of the week : book flights 7 days in advance . the cost savings can be considerable if you plan ahead - at least 7 days . for example : houston to portland less than 7 days : $ 1 , 652 7 day advance ticketing $ 324 congratulations to kimberly and eric thode , director of ena public relations . they are the proud parents of whitney marie , born on may 3 . she weighed 8 lbs . 8 oz . congratulations to proud parents nettelton and louise kitchen , coo , enron americas . their son , scott william , was born on may 9 and weighed 9 lbs . 1 oz . news from the global flash enron closes major coal deal in germany after almost six months of negotiations , enron ' s coal team has signed a contract with stadtwerke bremen to supply this major german municipality with coal until 2006 . under the deal structure , enron will deliver a total of 4 . 6 million tonnes of coal - equivalent to an overall contract volume of almost $ 200 million ( dm 440 million ) . the agreement represents enron ' s first significant long - term coal supply deal in germany . the annual contractual volume amounts to around 3 % of total german coal imports and provides us with continuous volume flow in northern germany , enabling us to grow our position in the market . parallel to this deal , enron also entered into a separate agreement with hms bergbau agentur , a company specialising in polish exports . under this agreement , hms will be the handling agent and a potential supplier of polish coal to us over the lifetime of the contract . congratulations to the whole team involved : sven becker , manfred ungethum , cornelia luptowitsch , peter bradley , jez peters and michael schuh . legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: michael sergeev ' s rotation hi mike , as per our discussion i have managed to find a place for michael in ebs ' d . c . office . it is likely that he will work for me on the ebs side but will live in d . c . i will finalize that later . vince had mentioned that it is okay with him as long as it is okay with you . so please double check with vince on this . i suggest the following transition : start date in d . c . may 1 , 2000 from now till the start date , michael will slowly transition into my group but make sure that your activities are transitioned into someone else . but i would like to propose the may 1 , 2000 date as hard start so that michael will have to start moving few days before that , etc . regards , ravi .",0 +"Subject: merit and equity increases norma , i am sending you an excel spreadsheet with proposed merit and equity increases . i have slightly exceeded the merit quota . the equity increases address two issues : retention and and an error in setting a salary at hiring ( i tend to be too stingy ) . please , let me know if there are any questions . i am forwarding a copy of the spreadsheet to my home address so i can work on it tonight , if necessary . vince",0 +"Subject: re : thank you vince j kaminski @ ect 03 / 27 / 2000 01 : 02 pm to : tasha lair / hr / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : re : tasha , yes , i think li xiao deserves the bonus . vince kaminski tasha lair @ enron 03 / 21 / 2000 02 : 24 pm to : vince j kaminski / hou / ect @ ect cc : subject : vince , linda vargo asked me because i am the administrator of employee referral program to contact you on whether or not li xiao is eligible for a bonus on his referral of alex huang . i have informed linda that the decision up to you . if you feel that alex huang was hired as a result of li bringing him to the attention of enron then the bonus is due . linda and yourself have communicated via e - mail on this issue in early february and it appears from that correspondence that li did encourage alex to e - mail his resume to you . please advise as to whether or not you want to award the bonus . thank you",0 +"Subject: hello all update : preparations for the upcoming texas finance festival iii are about complete and i just wanted to update you on the hotel reservations information . you will need to make your reservation before march 20 to be assured of getting a room in our reserved block . also , for "" counting "" purposes i need everyone ' s registration form completed . many of you ( and a lot of new faces ) have already sent them in but some may not have , so . . . lots of fun stuff is planned so come prepared for a very relaxing and productive weekend ! john - announcerev . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : ganapathy ramesh rick , the it person tanya would like to have dedicated to the mg effort is ganapathy ramesh . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 11 / 2000 02 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - tanya tamarchenko 07 / 11 / 2000 02 : 41 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : ganapathy ramesh vince , ramesh is he it guy , who can help us with mg var . tanya .",0 +"Subject: re : enron open positions maruti , what about september 8 , friday ? vince "" more "" on 08 / 25 / 2000 03 : 27 : 26 pm to : vince j kaminski / hou / ect @ ect cc : subject : enron open positions hello mr . kaminski , can we meet for a quick lunch again at your convenience ? just to bring you up to date about my search for the right opportunity . also i noticed in the risk magazine that enron investment partners and aig have joined treasuryconnect as strategic partners to capitalize on internet - based transaction execution of financial derivatives . i would like to explore if i can be any help to hank finkenstaedt , the director of enron investment partners . please let me know what day and time might be convenient for you . thank you . sincerely , maruti more 832 - 251 - 7267 mmore @ houston . rr . com - - - - - original message - - - - - from : more to : vince j kaminski date : monday , july 10 , 2000 11 : 28 am subject : enron open positions dear mr . kaminski : i would like to explore the opportunity to join enron investment partners . i understand that enron has $ 20 million fund set up to finance start - ups , and gene humphreys and his assistant john godbold are trying to attract minority - owned start - up firms . i also learned that enron has plans to increase the size of this fund to $ 200 million . i can find these opportunities for enron around the globe . given my background as a chartered financial analyst , with hands - on experience in investment management covering financial derivatives , fixed income , and equity , i can be a valuable resource to do the due diligence , origination , valuation , and monitoring of these start - ups . would you please help me arrange a meeting with either gene humphreys , ted murphy , or may be ken lay ? i am pasting below the job opportunities open at enron . i am also interested in these positions and would like to meet with the hiring manager . i will give you a call to follow up . thank you . sincerely , maruti more 832 - 251 - 7267 job 0000104282 details manager / director essential functions : candidates will be responsible for helping facilitate the transaction approval process for domestic and international investments . these investments include , but are not limited to , private equity , project development , venture capital , and structured credits . candidates will work with business developers and underwriters in identifying , understanding , and documenting transaction risks . they will also assist in preparing transaction approval documentation . in addition , they will oversee the valuation , modeling , and simulation process for investments . the primary focus is to identify and measure key risk factors from both a quantitative and a qualitative perspective with an emphasis on fundamental analysis . the candidate must be able to assist in management and training of departmental staff and in formulation of investment valuation policies and procedures . essential requirements : ? strong interpersonal skills ? understanding of transaction structuring and credit risk issues ? understanding of finance and valuation methodologies . ? proficiency with excel cash flow models ? experience with financial statement analysis ? understanding of statistics and simulation techniques ( monte carlo ) . preferred skills : na . special characteristics : the ideal candidate will possess an undergraduate degree in finance , accounting , or economics , and an mba . relevant experience could include credit analysis or valuation / finance experience . manager / director in the risk assessment department of a $ 20 billion energy company . contact : please email resumes to corpjobsl @ enron . com , please refer to job no . 104282 when responding . job id 0000104282 department capital pricing / risk an company corporate staff risk assessment and control location houston , tx type posting date 05 - jun - 00 to submit your resume for this position : online enter your resume id : no resume id ? you can create a resume on - line , deposit it in our database , and receive a resume id using our resume builder . your resume id will allow you to submit your resume once , but route it to up to 20 open positions . enron does not process resumes that are not sent in response to specific positions . if you have an existing resume in electronic format , the resume builder allows you to cut and paste your whole resume . fax our fax number is 1 - 888 - 588 - 7152 . you must tell us which jobs you ' re interested in , or we will not be able to process your resume . write on your resume ( or on a separate page ) all of the jobs ids of the jobs you ' re interested in pursuing . an equal opportunity and affirmative action employer top of page copyright 1997 - 1999 enron corp . all rights reserved . contact us . job 0000104281 details staff / spec / sr spec essential functions : "" snapshot "" preparation - responsible for preparation of quarterly asset "" snapshots "" which provides enron ' s senior management with summarized operational and financial information on selected merchant portfolio investments . responsibilities associated with preparation of snapshots include : researching publicly traded companies , calculating key financial data , updating and analyzing graphical summaries of performance , reviewing press releases for recent events data , updating stock prices from bloomberg ? weekly underwriters report - full responsibility for updating and distributing weekly underwriters ' report . involves regular interaction with executive vice president , london office personnel , as well as several vice presidents within underwriting group within rac . ? various projects - will be utilized on special projects on an as needed basis essential requirements : accounting / finance / economics degree with 0 - 4 years business experience . excellent computer skills - excel , powerpoint , bloomberg , word research skills and the ability to interact with a variety of personnel and departments . excellent organization skills . self starter , quick learner . must be team player . good writing skills with the ability to concisely summarize operational and financial results . preferred skills : na . special characteristics : . entry level position with the opportunity to gain familiarity with all of enron ' s portfolio assets . future advancement in asset and portfolio management possible for candidate who exhibits competence and creativity . contact : please email resumes to enajobsl @ enron . com , please refer to job no . 104281 when responding . job id 0000104281 department due diligence / asset mgmt company corporate staff risk assessment and control location houston , tx type posting date 05 - jun - 00 job 0000102789 details sr specialist essential functions : in this position candidates will model , run monte - carlo simulations , evaluate capital investments . these investments will cover a wide range . candidates will be responsible for the validation of models as well as insuring the accuracy and integrity of the model and underlying assumptions . the primary focus will be to provide an objective valuation for an investment by identifying and measuring key risk factors from both a quantitative as well as qualitative perspective . ? understanding of valuation techniques applied to equity or structured financial products . ? understanding of cash flow models and option pricing models . ? proficiency in excel . ? understanding of project finance and risk mitigation techniques . ? experience with financial statement analysis and pro forma statements . ? understanding of statistics and application to financial analysis . essential requirements : na . preferred skills : ? understanding of simulation methodologies such as montecarlo . ? exposure to statistical analysis software such as crystal ball or @ risk . the ideal candidate will possess an undergraduate degree in finance , accounting , or economics and have 2 to 3 years of financial modeling experience and an mba / cpa . special characteristics : na . contact : please do not contact the hiring manager . please no faxes . send resumes via e - mail to corpjobsl @ enron . com or mail to enron , attn : tvasut - eb 3628 , 1400 smith st . , houston , tx 77002 . please refer to job # 102789 job id 0000102789 department capital pricing / risk an company corporate staff risk assessment and control location houston , tx type posting date 17 - mar - 00 - attl . htm",0 +"Subject: meeting to discuss presentation materials please respond to hello vince and kenneth , my teammates and i would like to schedule a time with you to discuss our presentation materials . we would prefer to meet with you sometime on thursday so that we can have the weekend to include any changes that you may suggest , but we will accommodate your schedules . thank you for all of your help , = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = charles womack jr . mba candidate 2002 rice university jesse h . jones graduate school of management cwomack @ rice . edu cell : 281 - 413 - 8147",0 +"Subject: re : rotation information martin , i am working right here with jim irvine and discussed your rotation . you will report to me , with ' client ' reporting role to jim where you will do most of the work . you will remain in houston working on the 19 th floor for now until we find you a place on either 44 th or 45 th . jim irvine will be asking john griebling for network planning office space in houston . you will get an office in that area . jim will work from portland but will hold an office in houston . until the office space on ebs floors happens , you need to remain on the 19 th . we will allocate you to jim ' s & john griebling ' s group full time . you will have ebs computers , cell phone , etc . to be fully connected on the ebs side . you will work initially on the trffic engineering side to support day - to - day fire - fighting like analysis . i will supervise you with repect to guidance on what to do etc . . . jim will direct what will get done . both jim and i will support traffic engineering work but jim is ultimately responsible for deliverables . our technical operational research specialists ( samer , chonawee , and two others from stanford & mit ) will focus on next generation algorithms for ebs . such an algorithm is currently being specified . this will depend on how the trading market will develop . we know that existing off - shelf codes won ' t be sufficient . the development period for these algorithms will anywhere from 3 months to 9 months depending on the complexity . this is in - line with when ebs anticipates trade volumes to really pickup . i hope this helps . regards , ravi . martin . lin @ enron . com 02 / 23 / 00 02 : 06 pm to : ravi thuraisingham / enron communications @ enron communications cc : subject : rotation information ravi , the associate program has a procedure that requires information on new rotations . i just wanted to clarify some details of my rotation to ebs , esp given the retained ties to research . will jim irvine be my supervisor with ebs being the company billed for my time ? that is , will my connection to research be informal and understood , rather than having some actual reporting function ? this is with respect to the a / a pool . thanks , martin",0 +"Subject: request submitted : access request for mark . breese @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000005820 approver : stinson . gibner @ enron . com request create date : 10 / 26 / 00 2 : 27 : 45 pm requested for : mark . breese @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: re : lacima energy and weather derivatives courses by clewlow and strickland julie , a few issues . 1 . i would like to register 2 members of my group for both courses ( in houston ) : a . paulo issler b . alex huang i shall attend the course on weather only . 2 . i have started the process to issue a check for 5 , 000 aud for lacima . shirley sent you an update on this . the 2 nd installment comes from the budget of our office in australia . i shall talk to paul quilkey today about it . please , let me know if there is any delay . 3 . the book will be used as textbook for the class i shall be teaching at rice . rice univ bookshop is placing an order . 4 . i would like to order 50 copies for my group . what is the ebst way to place the order ? can we pay in us dollars ? vince "" julie "" on 11 / 12 / 2000 02 : 05 : 40 pm to : cc : subject : lacima energy and weather derivatives courses by clewlow and strickland please find attached information ? for our next two courses and workshops : ? energy derivatives : ? pricing and risk management and weather derivatives , which will be conducted in houston and in london in feb / march 2001 . ? instructors will be dr les clewlow and dr chris strickland . ? because the course requires intense interaction , the courses will be ? limited to a maximum of 15 people , so early registration is encouraged . ? if you require further information , or would like to register for either or both ? courses , please contact me via this email or our web site , ? www . lacimagroup . com - energy . pdf - weather . pdf",0 +"Subject: re : starting date : jan 8 th , 2001 vince : fyi - wichai is joining on jan 8 th . osman will take care of him until my return . krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 12 / 19 / 2000 03 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - pinnamaneni krishnarao 12 / 19 / 2000 02 : 54 pm to : osman sezgen / hou / ees @ ees cc : subject : re : starting date : jan 8 th , 2001 osman : can you request the desk & computer for wichai ? dennis has knows about wichai coming in january . thanks , krishan . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 12 / 19 / 2000 02 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - pinnamaneni krishnarao 12 / 19 / 2000 02 : 52 pm to : "" wichai narongwanich "" @ enron cc : subject : re : starting date : jan 8 th , 2001 dear wichai : good to hear from you and glad you will be here soon . i will be on vacation in january . when i am gone you will report to osman sezgen who you have met when you were here in houston . please get in touch with him when you come here . his phone number is ( 713 ) 853 - 5485 . if you have any problems , contact our assistant shirley crenshaw at ( 713 ) 853 - 5290 . best wishes , krishna . "" wichai narongwanich "" on 12 / 19 / 2000 01 : 51 : 40 pm to : cc : subject : starting date : jan 8 th , 2001 dear dr . krishna , as mentioned during the interviewing process , i plan to start working under your supervision on earlier january . i ' m now ready to start working with your on jan 8 th , 2001 . i have been in contact with the human resource department to set up the working permit and relocation . i have received the optional practical training valid from jan 8 th , 2001 to jan 7 th , 2002 . i will go down to houston to look for an apartment this weekend . by the way , i heard from seksan , currently working under your supervision , that you will be on vacation soon and will come back to work again late january . therefore , i would like to whether who should i report with on my starting date ? or do you have any recommendation for me to prepare for the new work ? please , advise . best regards , wichai narongwanich - - - - - original message - - - - - from : pinnamaneni . krishnarao @ enron . com sent : tuesday , june 20 , 2000 1 : 21 pm to : wichai @ engin . umich . edu subject : re : resume for sr . specialist / manager - research position dear mr . narongwanich : you have an impressive background . what is your availability in terms of timing ? we are looking for somebody to join our group fairly soon ( weeks rather than months ) . thank you , p . v . krishnarao "" wichai narongwanich "" on 06 / 19 / 2000 09 : 17 : 35 am to : cc : subject : resume for sr . specialist / manager - research position dear mr . krishnarao , i received information about this job opportunity describe below by boo lee , an alumni of financial engineering program here in the university of michigan . the position is very interesting and relevant to my background ( pursuing ph . d . operations research with real options interest , completed mse financial engineering , mse industrial and operations engineering , have been working on ms - excel with vba for 4 years ) i attach my resume in ms - word document in this mail . if you need further information , please don ' t hesitate to contact me . sincerely , wichai narongwanich wichai narongwanich ph . d . candidate , ioe dept . research assistant , meam dept . university of michigan sr . specialist / manager - research position description : fulltime position as a member of the research group at enron supporting commodity risk management activities in enron energy services . the selected person will be working closely with the deal makers and risk - managers to develop and support quantitative models for pricing and risk management . responsibilities : responsibilities include analyzing data and developing models for valuing commodity ( or commodity - related ) contracts , options embedded in or real options associated with long term energy management contracts , forecasting customer loads , and managing risks associated with energy contracts . qualifications & skills : masters / doctorate degree in a quantitative field ( mathematics , statistics , operations research , econometrics / finance ) with experience or course work in statistics , data analysis and mathematical modeling . must have excellent computer skills and be able to function in a dynamic , unstructured environment . coursework in statistics / econometrics and basic finance preferred . proficiency in excel including vba . familiarity with access & visual basic . knowledge of risk management or energy markets a plus . place of work : houston contact : email resumes to pkrishn @ enron . com ( p . v . krishnarao ) ( see attached file : resume . doc )",0 +"Subject: re : enron weather research good afternoon mike : i certainly am interested in determining if there may be a potential fit there at enron . i am very enthusiastic to apply my finance and meteorology backgrounds in a market - based environment that is driven to achieve unprecedented efficiencies . attached are two documents : 1 ) a business - focused resume , and 2 ) an abbreviated meteorology cv . graduate meteorology coursework included advanced atmospheric dynamics i and ii , advanced physical meteorology , boundary layer modeling , numerical modeling , research methods in meteorology , and turbulence . i will look forward to hearing from you . sincerely , greg hunt - - - - - original message - - - - - from : to : cc : ; ; sent : friday , april 27 , 2001 9 : 12 am subject : enron weather research > > greg , > > hello , and by way of introduction , we were forwarded your e - mail address by > heather thorne . > > i understand you have an m . s . in meteorology as well as an m . b . a . in > finance , and have done some research at livermore . > > i ' d be happy to learn more about your activities , and , if you are > interested , to see if there may be a potential fit here at enron . > > can you e - mail your resume with a description of your coursework and > research activities ? > > looking forward to hearing from you , > > mike roberts > vice president - research > - greg hunt _ resume _ 4 - 27 - 01 . doc - greg hunt _ cv _ meteorology _ 4 - 27 - 01 . doc",0 +"Subject: re : message from samer takriti samer , i am glad this problem has been taken care of . hope everything is going well for you . i shall get in touch with you before coming to new york city . happy holidays an the best of luck . vince shirley crenshaw 12 / 11 / 2000 08 : 13 am to : vince j kaminski / hou / ect @ ect cc : subject : message from samer takriti vince : samer asked me to forward this to you ( he was using the wrong email address ) . i will forward him the correct address . shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 11 / 2000 08 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" samer takriti "" on 12 / 08 / 2000 10 : 01 : 49 am to : shirley . crenshaw @ enron . com cc : subject : shirley , my message to vince keeps coming back . could you please forward it to him ? thanks . - samer - - - - - - - - - - - - - - - - - - - - - - forwarded by samer takriti / watson / ibm on 12 / 08 / 2000 11 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - delivery failure report your document : was not vince . kaminsky @ enron . com delivered to : because : 550 5 . 1 . 1 . . . user unknown _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ to : cc : from : date : 12 / 07 / 2000 05 : 52 : 45 pm subject : vince , how are you ? i apologize for not contacting you earlier . we bought a small house and it is consuming all of our time . we also adopted a little puppy which proved to be a lots of work . believe it or not , i have not had the chance to visit ny city yet ( i was there once briefly to drive to the airport ) . i just received the check for the airline ticket . thank you for taking care of this issue quickly . shirley was , once again , superb . take care . hope you have great holidays . if you happen to be in the ny area , please let me know . perhaps we can have lunch or a drink together . - samer",0 +"Subject: mit student ' s thesis writeups hi vince , krishna & i talked to this student while were at sycamore networks . he appears to be very qualified for our ebs analytics group . sycamore has a professional services team that provides consulting on network optimization modeling , etc . they do this to push their products , etc . . . . one of the professional in that group highly recommended this student . we are currently working with the same professional at sycamore to perform our intial network design analysis ( since the deadline was today ! ) . i have arranged for the mit student ' s visit to houston along with the two standford students this month . i have handed over the task of arranging such visits to elisabeth grant . she will arrange everything and charge our rc so that we can allocate to john griebling later . stinson and i think that is the most effective way of doing this . regards , ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 07 / 00 01 : 16 pm - - - - - salal @ mit . edu 02 / 04 / 00 08 : 33 am to : pkrishan @ enron . com cc : ravi thuraisingham / enron communications @ enron communications , brett . leida @ sycamore . net subject : writeups hi krishan , ravi , i apologize for the delay in mailing the writeups - - some unforeseen complications completely shot the last 1 - 1 / 2 day . i am attaching pdf versions of : 1 . the first two chapters of my thesis , which should help get a sense of what we are trying to do . 2 . two more technical modeling writeups for services i am attempting to model . the writeups are , as i mentioned before , works in progress , and incomplete , and therefore i apologize in advance for confusions that might arise . i also request that you not circulate these widely for obvious reasons . thanks very much , salal salal humair massachvsetts institvte of technology operations research center rooms e 40 - 130 , 5 - 332 a x 3 - 3014 , x 5 - 9727 - expexp . pdf - fedex . pdf - thesis . pdf",0 +"Subject: resume of phil roan , koch weather desk shirley , phil roan , the quantitative analyst from koch ' s weather derivatives group will be here on the afternoon of friday june 16 , beginning say , at 1 : 30 or 2 : 00 . vince asked me to ask you to put a set of interviews together ( as i understand , vince himself will be unavailable that day ) . mark tawney should see him ; someone from weather marketing and / or structuring should see him , e . g . gary taylor and / or michael nguyen ; some more people from research should grill him on technical and meteorology issues , e . g . vasant and / or zimin as well as mike roberts or someone on his team . phil has only been a "" quant "" since the departure of koch ' s previous weather quant in february ; before that he was koch ' s weather "" risk manager "" . i am still not sure what the distinction means , but we do need to find out how much he knows about option pricing and meteorology . even though his expressed desire is to focus on weather derivatives , we should also assess how useful he would be from research group ' s perspective , since research will likely be his official home . finally , jere overdyke and / or someone else from his group ( george carrick , if available ) should also get a chance to meet with him . i ' ve already spoken with phil , but i ' d like to sit in with either vasant or zimin or mike when they interview him , since i wasn ' t able to ask any technical questions . if i ' m counting correctly , that should amount to five interview sessions , perhaps less if we interview in groups of two . phil ' s resume is enclosed below . joe p . s . i will also forward this to jason sokolov . he will let you know if any people from rac would also like to meet with him . - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 06 / 07 / 2000 08 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : resume of phil roan , koch weather desk - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 06 / 05 / 2000 01 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" roan , philip "" on 06 / 05 / 2000 08 : 33 : 00 am to : "" jason sokolov ( e - mail ) "" cc : subject : jason , here ' s the attachment we discussed . i ' ll call you this afternoon . phil roan roanp @ kochind . com ( 713 ) 544 - 7469 > - - - - - original message - - - - - > from : proan @ mindspring . com [ smtp : proan @ mindspring . com ] > sent : sunday , june 04 , 2000 8 : 07 pm > to : pr @ work > subject : > > > - philip f roan . doc",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 campos , hector o peyton s gibner nov 06 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 gandy , kristin h celeste c roberts nov 01 , 2000 gorny , vladimir theodore r murphy ii nov 02 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 raymond , maureen j wincenty j kaminski nov 02 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: re : resume of carla di castro vince , we have many associates that we have to place within business units . thereafter , if there are additional hiring needs , we will consider her resume . regards , shannon vince j kaminski 03 / 16 / 2000 05 : 32 pm to : shannon rodgers / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : resume of carla di castro shannon , i realize that the program is full . if i find a group interested in her , would you consider re - inviting her ? vince shannon rodgers 03 / 16 / 2000 01 : 52 pm to : vince j kaminski / hou / ect @ ect cc : subject : resume of carla di castro vince , thank you for forwarding the resume of carla di castro . currently , our summer associate internship program is full . i have responded to carla to inform her of the program ' s status . regards , shannon",0 +"Subject: acceptance of offer sir , i have decided to accept your offer of employment here at enron . please let me know how i can help with the "" hiring - on "" process . may i ask what is the effective hire date ? that information will help me when i switch over from prostaff . thank you for this wonderful opportunity ! sincerely , sam smith",0 +"Subject: re : lunch with it and credit tanya , yes , we were talking about wednesday . my mistake . wednesday , april 19 works for me . let ' s do it then . vince tanya tamarchenko 04 / 10 / 2000 02 : 13 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : lunch with it and credit shirley , here is the list of people who is going to attend this lunch : credit : bill bradford , tanya rohauer , debbie bracket ( 3 ) ; research : vince kaminski , grant masson , vincent tang , tanya tamarchenko ( 4 ) ; it : jonathan le , ganapathy ramesh , winston jia , virendra patel , andrew champion ( and may be a few more , jonathan promised to get back with me with the headcount ) ; risk control : rudi zipter , ted murphy ( 2 ) . i understand that we were going to go not on 14 th , but next week . vince : would you like to do it on wednesday , april 19 , or friday , april 21 ? shirley , can you , please , make a reservation after vince ' s reply ? thank you , tanya . vince j kaminski 04 / 05 / 2000 02 : 51 pm to : tanya tamarchenko / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : lunch with it and credit tanya , can you coordinate , in my absence , the lunch with it and credit . we need the body count and reservation at the restaurant for the 14 th . vince",0 +"Subject: zero curve generator for uk gilts anjam , here is the model for fitting the term structure of uk gilts . the basic idea is as follows : dirty price _ { ith gilt } = sum _ { j } c _ { i } / 2 * discount factor ( t _ { j , i } ) + 100 * discount factor ( t _ { ni , i } using a five parameters analytical form for the discount factors , and minimizing the sum of absolute errors , i can derive a smooth zero curve . the model needs an initial guess for the parameters , this may require some experience . the log file can help you to see how well the optimization works . let me know if you have any questions . zimin",0 +"Subject: re : nick bambos sounds great . let me know how i can help . tom vince j kaminski @ ect 02 / 28 / 00 11 : 42 am to : thomas d gros / hou / ect @ ect cc : ravi thuraisingham / enron communications @ enron communications , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : nick bambos tom , i got sick and had to reschedule the meeting with nick bambos . i shall meet him on saturday this week . i shall talk to him about the following : 1 . financing research projects by graduate students ( $ 100 k per year , spread over several projects ) 2 . inviting nick to visit enron 3 . i can mention the possibility of nick consulting for us . given his status , involvement in the internet 2 project , and views that closely parallel enron ' s vision , it makes sense to have him working for us . he could be a very effective voice supporting our initiatives . please , let me know what you think . vince",0 +"Subject: stephen bennett vince , for your use as per our discussions - - - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 12 / 09 / 2000 10 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : mike a roberts 12 / 09 / 2000 10 : 33 am to : vince j kaminski / hou / ect @ ect cc : subject : stephen bennett stephen bennett , professional meteorologist , was hired into the research group in september of this year as a specialist based on salary alignment criteria . in retrospect , and upon review , he should have been hired on as a senior specialist . after coming on board . it rapidly became apparent that stephen was clearly an "" under hire . "" he is well - deserving of an immediate promotion ( really more of a correction ) and pay raise , to be made retroactive at least to the lst of this month . this memo outlines the circumstances surrounding this hiring error and provides detailed justifications for this retroactive "" promotion . "" at the time of the interview process , there was no position in enron designated as "" professional meteorologist . "" in fact , the most recent similar hire prior to that date was jose marquez , also a professional meteorologist , who was hired in , based on salary alignment criteria , as a manager . while functionally , both these men are meteorologists , enron has no such job classification . compounded by the urgency in bringing on additional professional expertise in short time order , it was difficult to peg the proper enron classification appropriate for this new position . this original uncertainty and resulting misplacement of stephen into the specialist category , rather than the senior specialist category , needs to be corrected at this time . although a "" new - hire "" to enron , stephen bennett has extensive work experience . he has worked as a professional meteorologist at both the weather services corporation in boston and at the weather channel in atlanta . he came to enron well - referenced by both those organizations , needing no further training and only minimal supervision . once aboard here in houston , stephen immediately demonstrated the core enron values with our unique sense of urgency . after only a week , he assumed responsibilities normally reserved for someone actually at even a manager level - he was assigned and fully took over the critical afternoon weather briefings to the gas traders . this includes analysis and report preparation as well as presentation . also in the presentation arena , he now regularly briefs various desks in the morning and throughout the day . stephen is a master of communication and particularly adept at conveying what through other messengers might otherwise seem confusing or ambiguous . stephen has also demonstrated an unusually high level of self - initiative . he designed , implemented , and now maintains several sub - sites on the research web page which he tailored to various customers - in specific : the weather derivatives team , the agricultural team , and most recently , the crude and liquids team . i have recently assigned stephen to spearhead our conversion and major upgrade of this web page . these above described accomplishments are above and beyond stephen  , s regular duties which include starting work at 5 am daily , reliably and without fail , to assemble and prepare our trader  , s weather report . recently , with the advent of extended hours for both nymex and enrononline , stephen voluntarily on his own accord , assists in our new sunday weather support effort . as his supervisor , fully cognizant of his already standard 50 + hour work week , i do not solicit , but readily accept , this above and beyond expectations assistance . in review , the circumstance which resulted in this under hire condition was enron  , s immediate need for a non - standard , fairly unique professional - a meteorologist , coupled with stephen  , s desire to work for our company in spite of the absence of a hierarchy which included the exact entitled professional title reflecting his chosen career path . . once hired , stephen has clearly demonstrated through contribution and performance that he is well - deserving of this immediate and retroactive promotion .",0 +"Subject: re : other matters kate wagner is setting up a happy hr . for him on friday . i will let you know details . also , i think andrea is having a brunch on sunday . mr vince j kaminski 04 / 27 / 2000 07 : 22 am to : mark ruane / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : other matters mark , i called rick to let him know . it ' s not an interview yet . aram is coming for a wedding but i think he wants to explore the opportunity of coming back to enron . the conversation may lead to an interview at some point . he will talk to andrea as well . do you plan to organize something for aram ? i would be glad to join . vince from : mark ruane 04 / 26 / 2000 05 : 53 pm to : vince j kaminski / hou / ect @ ect cc : subject : other matters i heard that you were going to be interviewing aram ? what ' s the job ? mark",0 +"Subject: re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 raul , raul , vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security . thanks ! shirley crenshaw @ ect 04 / 19 / 2001 03 : 01 pm to : sapsecurity @ enron . com cc : vince j kaminski / hou / ect @ ect subject : ibuyit form attached please find the completed form for vince kaminski , managing director , research group . he will be approving all purchases for cost center 107043 . - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect cc : subject : ibuyit form hi shirley there were two shirleys , so sending to both isc help desk",0 +"Subject: re : punit rawal ' s interview with enron kim : the interviews conducted on february 2 are just exploratory interviews to see where punit might fit within enron . vince thought he might fit in john ' s group . the title and $ $ amount will not be determined until it is decided where he should be ( if at all ) . if john is interested after the interview , then he and vince can get together to discuss $ $ and title . if you or john have any other questions , please let me know . thanks ! shirley 3 - 5290 to : shirley crenshaw / hou / ect @ ect cc : subject : re : punit rawal ' s interview with enron shirley , it is to my understand that vince is bringing in punit for a day of interviews . john has agreed to meet with him on february 2 . please inform vince and have vince get with john on what his title / $ $ will be . thanks k kim hillis enron americas office of the chairman phone : 713 - 853 - 0681 fax : 713 - 646 - 3227 shirley crenshaw 12 / 21 / 2000 11 : 03 am to : kimberly hillis / hou / ect @ ect cc : subject : punit rawal ' s interview with enron kim : punit is a carnegie mellon student that will be graduating with an ms in computational finance in may 2001 . several of our guys interviewed him at carnegie mellon recently and were very impressed . vince says that he is definately a trading candidate . would john be interested in interviewing him ? i am attaching his resume for you to look over and then let me know if john would be interested . thanks ! have a merry christmas ! shirley - punit + rawal + newresume . doc",0 +"Subject: re : real options thanks vince . paul q and raymond y will also attend the call . regards paul vince j kaminski @ ect 02 / 04 / 2001 11 : 16 pm to : paul smith / enron _ development @ enron _ development cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development subject : re : real options paul , we have done a lot of work in this area . i shall call you later today ( monday my time ) , tuesday morning your time with some recommendations . vince p . s . shirley , please send a real options binder to paul . vince from : paul smith @ enron _ development on 03 / 30 / 2001 08 : 42 am zel 0 to : vince j kaminski @ ect cc : paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development subject : real options vince , the sydney office is currently evaluating a proposal that involves an option to participate in building a wind farm . should this proceed , we would like to mark this option "" to market "" . have the research group completed any work on methods for booking and remarking real options ? alternatively , do you have any suggestions as to the best way to value , and book , real options fairly ? regards paul smith",0 +"Subject: re : mit / aa lab - next meeting amy , i think that rick causey wants simply to obtain more information to make a reasonable decision . we should cancel the meeting for the time being and let rick obtain clarification of some issues from aa . i would agree that aa came up with a rather vague concept of what they want to accomplish . vince to : vince j kaminski / hou / ect @ ect cc : subject : mit / aa lab - next meeting vince : can you shed any light on this ? i ' m confused ( really confused ) . . . . do you think this means the decision to go ahead / not is going to be made only by kean , buy and koening ? and do you think this means that we shouldn ' t meet on thurs ? personally , i think enron really needs to meet on thurs to buckle down and start developing some idea of needs / wants with regard to the outcomes of the lab . from a practical perspective , if we can ' t get what we want from this whole thing , rick ' s issue of "" where aa is going with this "" is really a mute point , isn ' t it ? so a working meeting might really be worth the effort . would appreciate your insight and advice . thanks . amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 07 / 2000 09 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - richard causey @ enron 08 / 07 / 2000 09 : 07 am to : amy oberg / hou / ees @ ees cc : subject : re : mit / aa new value research lab i have discussed with aa and they are following up . if i am the agenda , i would cancel the meeting and when i hear from aa , i will e mail everyone . i would suggest we not hold a meeting until kean , buy , koenig and i can all come so that we can truly move forward ( or decide not to ) . let me know what you decide . thanks . rick to : richard causey / corp / enron @ enron cc : subject : mit / aa new value research lab rick : just wanted to highlight that you are the agenda for this meeting ( see initial notice , agenda ) . let me know if there ' s anything i can do for you . amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 07 / 2000 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron energy services from : carol moffett 08 / 03 / 2000 04 : 21 pm phone no : 713 - 853 - 6658 phone 888 - 782 - 3518 pager eb 613 b to : richard causey / corp / enron @ enron , marie hejka / corp / enron @ enron , steven j kean / hou / ees @ ees , amy oberg / hou / ees @ ees , mark palmer / corp / enron @ enron , mark ruane / hou / ect @ ect , vince j kaminski / hou / ect @ ect , rick buy / hou / ect @ ect , mark koenig / corp / enron @ enron cc : sharron westbrook / corp / enron @ enron , christie connell / corp / enron @ enron , maureen mcvicker / hou / ees @ ees , laura gutierrez / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , karen k heathman / hou / ect @ ect , joannie williamson / corp / enron @ enron subject : meeting confirmed : mit / aa new value research lab this will confirm the meeting requested below . please note , all invitees are not available , but the confirmed meeting time is the best time for most of the invitees . date : thursday - august 10 time : 11 : 00 a to noon place : conference room 4741 confirmed attendees : rick causey marie hejka steve kean amy oberg mark palmer mark ruane thanks for your help , everyone . - - - - - - - - - - - - - - - - - - - - - - forwarded by carol moffett / hou / ees on 08 / 03 / 2000 04 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron energy services from : carol moffett 08 / 02 / 2000 03 : 44 pm phone no : 713 - 853 - 6658 phone 888 - 782 - 3518 pager eb 613 b to : ginger dernehl / hou / ees @ ees , shirley crenshaw / hou / ect @ ect , karen k heathman / hou / ect @ ect , sharron westbrook / corp / enron @ enron , laura gutierrez / hou / ect @ ect , laura valencia / corp / enron @ enron , patty pennington / enron communications @ enron communications cc : steven j kean / hou / ees @ ees , vince j kaminski / hou / ect @ ect , rick buy / hou / ect @ ect , richard causey / corp / enron @ enron , mark ruane / hou / ect @ ect , mark koenig / corp / enron @ enron , mark palmer / corp / enron @ enron , amy oberg / hou / ees @ ees , marie hejka / corp / enron @ enron subject : meeting request : mit / aa new value research lab good afternoon . i am assisting amy oberg with setting up a meeting among the individuals listed below . would you be so kind as to review their calendars and let me know if they are available during any of the suggested meeting times . meeting topic : mit / aa new value research lab meeting purpose : follow up to discussion from 8 / 1 / 00 ; rick causey to brief group on conversations w / aa regarding "" where they intend to go with this effort "" . attendees : steve kean vince kaminski rick buy rick causey mark ruane mark koenig mark palmer amy oberg marie hejka suggested meeting dates and times : thursday - august 10 anytime between 8 : 00 a and 10 : 00 a thursday - august 10 11 : 00 to noon friday - august 11 anytime between 8 : 00 a and 9 : 30 a friday - august 11 1 : 00 p to 2 : 00 p thank you .",0 +"Subject: ibuyit form attached please find the completed form for vince kaminski , managing director , research group . he will be approving all purchases for cost center 107043 . - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect cc : subject : ibuyit form hi shirley there were two shirleys , so sending to both isc help desk",0 +"Subject: re : confirm participation at real options conference at cambridge u . - urgent vince can you please check with steve leppard and ask him to confirm , and send to me his position and title of his talk ( if different from yours ) ? thanks very much again lenos at 05 : 14 _ _ 04 / 19 / 00 - 0500 , you wrote : > > > lenos , > > my busy schedule does not allow me to attend . > > i would like , however , to recommend my colleague who works > in london , steve leppard . > he can make a very interesting and original presentation on real options . > please , let me know what you think . > > vince > > > > > > > lenos trigeorgis on 04 / 18 / 2000 09 : 29 : 18 pm > > to : lenos . trigeorgis @ rogroup . com > cc : ( bcc : vince j kaminski / hou / ect ) > subject : confirm participation at real options conference at cambridge > u . - urgent > > > > the attached file contains the tentative program for two back - to - back real > options conferences ( a professional one for july 5 - 6 , and the standard > annual academic one for july 7 - 8 ) at cambridge u . > > your name has been provisionally included on the program . please check all > the information relating to you and confirm your participation as listed > ( or advice us of desired changes immediately ) . > > thank you . > > lenos > > > > attachment converted : "" c : \ drive _ e \ eudora \ attach \ 4 thconfsessionsl 2 . doc "" > > > lenos trigeorgis > professor of finance > university of cyprus > dept of business > 75 kallipoleos , po box 20537 > cy 1678 nicosia cyprus > > tel : + 357 2 892261 > fax : 339063 > > > lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: o : \ research \ exotica access our records indicate that you are the owners / approvers for the o : \ research \ exotica folder . if this is correct , please reply back with your confirmation to information risk management . in an effort to update our files as well as to do some cleanup on the directory membership , we are including the current membership list for the following nt groups . please review the membership list and advise if any deletions are required . group name group description data _ exotica change access to o : \ reasearch \ exotica , ohara , scarlet data _ exotica _ ro read - only access to o : \ reasearch \ exotica , ohara , scarlet datapwr _ exoticarw change access to m : \ exotica data _ exotica user id full name adhar amitava dhar / hou / ees btiner brent tiner / corp / enron clandry chad landry / hou / ect cuus charles uus / hou / ect dmaxwel david maxwell / hou / ect dvitrel david vitrella gmasson grant masson / hou / ect jbuss jd buss / hou / ect khopper kevin hopper / hou / ect mlay mark lay / hou / ect mvasque miguel vasquez / hou / ect pkrishn pinnamaneni krishnarao / hou / ect pzadoro pavel zadorozhny / hou / ect sgibner stinson gibner / hou / ect thall d todd hall / hou / ect ttamarc tanya tamarchenko / hou / ect vguggen victor guggenheim / hou / ect vkamins vince j kaminski / hou / ect vngo van t ngo vshanbh vasant shanbhogue / hou / ect zlu zimin lu / hou / ect data _ exotica _ ro user id full name adhar amitava dhar / hou / ees aseveru allan severude / hou / ect bchan betty chan / hou / ect bdavis 6 brian davis / corp / enron cconsta chris constantine / hou / ect cgarci 2 christine garcia / enron _ development clandry chad landry / hou / ect cliverm carl livermore / hou / ect cschwab clarence schwab / ny / ect ctricol carl tricoli / corp / enron cuus charles uus / hou / ect danders derek anderson / hou / ect dbillot david billot / hou / ect dumbowe denae umbower / hou / ect epao eva pao / hou / ect fkarbar frank karbarz / hou / ect icaplan ilan caplan / hou / ect jgreene john greene / hou / ect jkinnem jeff kinneman / hou / ect jkrishn jayant krishnaswamy / hou / ect jmrha jean mrha / hou / ect kmccoy kelly mccoy / hou / ect ljegana lenine jeganathan / hou / ect mbradle michael w bradley / hou / ect mcisner michelle d cisneros / hou / ect mdaya madhur dayal / hou / ect mrodrig mark anthony rodriguez / hou / ect osezge osman sezgen / hou / ees pghosh partho ghosh s _ prandle phillip c randle / hou / ect sgoldma stephanie goldman / hou / ect sharril steve harris / hou / ect slewis susan r lewis / hou / ect sreyes selena reyes / hou / ect srivas sandy rivas / hou / ect srosman stewart rosman / hou / ect ssmith 7 sarah smith / corp / enron ssreera sai sreerama / hou / ect tbersan tracee bersani tbrown tony brown / hou / ect termserv terminal server test account teslick tara eslick / hou / ect tlee twana lee / corp / enron tnguye 2 tovinh nguyen / hou / ect vmendan vernon mendanha / hou / ect wlewis william patrick lewis / hou / ect datapwr _ exoticarw user id full name bkaufma bennett kaufman / hou / ect borourk brian o ' rourke / hou / ect bspecto brian spector / hou / ect dreck daniel reck / hou / ect ebaughm edward d baughman / hou / ect fhayden frank hayden gmasson grant masson / hou / ect gmcclel george mcclellan / hou / ect kcompea karla compean / hou / ect ketter kyle etter / hou / ect khopper kevin hopper / hou / ect mdalia minal dalia / hou / ect mgimble mathew gimble / hou / ect phickey patrick h hickey / hou / ect pkrishn pinnamaneni krishnarao / hou / ect rtomask richard tomaski / hou / ect sgibner stinson gibner / hou / ect vkamins vince j kaminski / hou / ect vsabo valarie sabo / pdx / ect vshanbh vasant shanbhogue / hou / ect zlu zimin lu / hou / ect thanks ! information risk management / audit lupita",0 +"Subject: re : fax machine request ~ 05 - 19 - 2000 we received the new fax machine on yesterday . we will also send it back today - may 26 , 2000 we will not use the fax machine as planned . thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 26 / 2000 09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 05 / 23 / 2000 05 : 55 am to : vince j kaminski / hou / ect @ ect cc : subject : re : fax machine request ~ 05 - 19 - 2000 goodmorning vince , this is a very much needed fax machine . mike gave approval for the new fax machine , also i spoke with shirley concerning this matter . we have some new clients that requires faxes with long distance locations and the new fax machine will ensure that it reaches them in record time . thanks kevin moore fyi - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 23 / 2000 05 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - iain russell 05 / 22 / 2000 02 : 10 pm to : kevin g moore / hou / ect @ ect cc : mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , lorie belsha / hou / ect @ ect subject : re : fax machine request ~ 05 - 19 - 2000 kevin , jan lynn from pitney bowes will be contacting this afternoon to finalise paperwork + installation of the machine . thanks , iain . . . . . . . . . . . . . . . . . . . kevin g moore 05 / 22 / 2000 01 : 46 pm to : iain russell / epsc / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : re : fax machine request ~ 05 - 19 - 2000 i would like to request fax machince model - pb 9930 . the location for this fax will be eb 3240 however , if arrival time is 24 hours the location will be eb 3270 a . thanks kevin moore r . c . # 100038 co . # 0011 - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 22 / 2000 01 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - iain russell 05 / 19 / 2000 01 : 23 pm to : kevin g moore / hou / ect @ ect , lorie belsha / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : fax machine request ~ 05 - 19 - 2000 kevin , per your request , please see below : * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * new facsimile machine information please take a look @ the following and let me know , which fax machine you choose or if you need information on something smaller , then i will have the vendor contact you directly to finalise installation . an enron director or above { with signature authority to legally bind enron to a contract } will have to sign off on the contract paperwork before the fax machine can be installed . delivery times on new machines are normally 3 - 5 working days but either vendor listed below will be able to provide a "" loaner "" should you have a business need . please discuss the fax machine install date with the rep when ordering the equipment . if there is no existing fax line present , you will need to send a notes - mail to the move team { erica @ x 3 - 3185 or janelle @ x 5 - 7917 } requesting the installation of a new fax line . the move team can be found in the notes - mail "" ect address book "" . if you are an ees employee , you must first get new equipment approval from ees budget control . contact susan mcleroy @ x 5 - 8066 or via notes - mail . if you are an ebs employee , you must first get new equipment approval from ebs purchasing & budget control . contact paula corey @ x 3 - 9948 or martha reyna @ x 3 - 3491 . you can reach both of these people via notes - mail . if you are an ena employee , you must first get new equipment approval from ena finance & budget control . contact lorie belsha @ x 3 - 9617 or via notes - mail . a note on the fax machines listed below : all the machines listed below come with a 2 nd paper tray and upgraded memory { maxed by model ~ see below } as an enron standard from each vendor . all the fax machines listed below have a modem speed rated @ 33 . 6 kbps versus the canon laserclass 7500 { example only } @ 14 . 4 kbps = new fax machine should be noticeably quicker . document feeder capacity of the machines listed below are the same as the canon laserclass 7500 { example only } maintenance = models listed below have maintenance / repair coverage included in monthly $ total . there is no separate agreement ! toner / drum cartridges + paper + line charges are extra { not quoted } contract pricing can change without warning , so please let me know asap if a vendor quotes you a different price to those listed below against the various models . if the fax machine is to be used in a trading type environment , here are some considerations : no more than 20 people per fax machine = take a look @ the fax machine placement on eb 30 or eb 31 . disregard any fax machine that does not have a 33 . 6 k modem and jbig compression { or equivalent } . look for memory upgrades & 2 nd paper tray included in monthly cost . { models quoted are loaded } . maintenance is to be included in monthly cost { models quoted are covered } . * * * * * * * * * * * * * * * * * * * * * from pitney bowes pb 2050 cost : $ 95 . 00 per month on rental enron specs : this model has 10 megs of memory + a 2 nd paper tray as standard . pitney bowes weblink , click here - - > there are several of these fax machines located through out the enron building and 3 allen center , including some on trading floors . * * * * * * * * * * * * * * * * * * * * * pb 9930 cost : $ 76 . 00 per month on rental enron specs : this model has 10 megs of memory + a 2 nd paper tray as standard . pitney bowes weblink , click here - - > there are several of these fax machines located through out the enron building and 3 allen center , including some on trading floors . * * * * * * * * * * * * * * * * * * * * * pb 9830 cost : $ 55 . 00 per month on rental enron specs : this model has 5 megs of memory + a 2 nd paper tray as standard . pitney bowes weblink , click here - - > * * * * * * * * * * * * * * * * * * * * * from panasonic communications direct uf - 885 cost : $ 75 . 00 per month click below for machine details { similar to the uf - 880 with 8 megs of memory + 2 nd tray = no handset } : there are several of these fax machines located through out the enron building including some on trading floors . * * * * * * * * * * * * * * * * * * * * * the above machines are designed for workgroup use . q ) how many people will be using this fax machine ? q ) how much usage will this fax machine have ? { i . e . heavy = 40 faxes per day @ 20 pages / 60 faxes per day @ 2 - 3 pages or a lot less ? if "" heavy "" , either the pb 2050 , pb 9930 or uf 885 / uf 895 should fit your needs = if 15 - 40 , the pb 9830 would probably be a better fit } * * * * * * * * * * * * * * * * * * * * * contract details the fax programs are an agreement between each end user of the fax machine and the relevant vendor , as follows : pitney bowes 36 month rental . 30 day notice for termination of contract . no penalty for early termination of contract = call pb rep . and have the machine picked up , making sure a receipt is given to you by the collecting rep . upgrade / downgrade available = $ 0 penalty . rep will be happy to discuss details with you and answer any questions on these points . panasonic communications 36 month lease rental . 30 day notice for termination of contract before term expiration . no penalty for early termination of contract for office / department / location closure . upgrade / downgrade available = $ 0 penalty . rep will be happy to discuss details with you and answer any questions on these points . * * * * * * * * * * * * * * * * * * * * * please note the following the facsimile machine agreement is between the enron business unit / department requesting the facsimile machine and the vendor . the user or requester of the fax machine is responsible for invoice payment . enron property & services corporation is not responsible for the coding , processing or payment of facsimile { fax } machine invoices . in order to return any old fax machine equipment , you must contact the leasing company that supplied the equipment and send them a certified letter that terminates the agreement . if you terminate a contract within the original agreement period , you may be liable for penalty charges as a lot of fax machines are on a non - cancellable lease agreement . the vendor who supplied the fax equipment will be able to let you know of any outstanding $ amounts for your existing equipment . if you are asked to pay outstanding $ amounts , be aware that some vendors include the cost of outright purchase of the old fax equipment = from the contracts i have reviewed so far , you are under no obligation to purchase the old equipment . ikon contact name for returns : beth frank : phone = new # - - > 409 - 441 - 1262 { previously 281 - 355 - 6274 } beth frank fax # = new # - - > 409 - 441 - 1266 { previously 281 - 355 - 5496 } beth frank e - mail address ~ eafrank @ aol . com marimon business systems contact name for returns : don scott : phone = 713 - 686 - 6601 don scott fax # = 713 - 686 - 6676 { no e - mail address available } * * * please call me or e - mail me if it is a different vendor name on the machine and i will respond with a contact name * * * charges for fax machines are dependant upon manufacturer & model , with the person responsible for the fax machine , paying the invoice . you must notify the vendor of any changes relating to fax machine assignment { even if it is within the same group } = who the machine has been reassigned to { contact name } , the new contact phone # and the location of the machine . * * * * * * * * * * * * * * * * * * * * * fax machine supplies replacement toner cartridges : most of these are available to enron through corporate express @ savings over the fax vendor invoice price . these savings can be significant , so please e - mail me if you would like more details . * * * * * * * * * * * * * * * * * * * * * please call me if you have any questions . thanks , iain russell @ 713 - 853 - 6861 contracts supervisor administration enron property & services corp . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * kevin g moore 05 / 19 / 2000 12 : 42 pm to : iain russell / epsc / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : fax machine iain , please , i am in need of a fax machine . it was brought to my attention that you may have one available . please inform me concerning this matter , we need one a . s . a . p . . thanks kevin moore x 34710",0 +"Subject: quantitative position vince we happened upon this fellow through strickland . what are your thoughts on the background ? we are still working to formulate our requirements in the office but consider this person worth talking to . paul - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on 07 / 26 / 2000 09 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" simon hurst "" on 07 / 25 / 2000 10 : 10 : 23 pm please respond to "" simon hurst "" to : cc : subject : quantitative position dear paul , ? my friend chris strickland has informed me that enron is looking for a quantitative analyst . i am ? interested in talking to you about this position . i have attached my resume for your perusal . i am currently on holidays and can be ? contacted from ? monday 31 st july . my contact details are contained within my attached resume . i look forward to talking to you . ? yours sincerely , simon hurst . ? ? - srh resume . doc",0 +"Subject: seeking opportunity in computational finance dear vince : in following up on my voicemail message today , i attach my resume below for your review and consideration . it ' s ironic that you called while i was putting the message together . i will keep it short and look forward to speaking to you at your convenience . best regards , paul e . paul rowady , jr . 2300 west alabama , suite 69 houston , texas 77098 713 - 807 - 8624 home / fax 713 - 539 - 4541 mobile epr @ pipeline . com - paul rowady 2 . doc",0 +"Subject: re : grant masson great news . lets get this moving along . sheila , can you work out offer letter ? vince , i am in london monday / tuesday , back weds late . i ' ll ask sheila to fix this for you and if you need me call me on my cell phone . vince j kaminski 12 / 15 / 2000 09 : 50 am to : david oxley / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : grant masson david , a follow - up on my voice - mail message regarding grant . dave delainey is on board regarding grant . we can bring him back at the same level and comp , assuming that resignation was handled in a professional manner . dd asked me to work out the details with you . can we meet to talk about it on monday ? vince",0 +"Subject: enron : wefa luncheon may 1 martin : vince and lance want you to attend this presentation if possible . please let me know if you will be going to lunch also . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 13 / 2001 08 : 36 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 11 / 2001 12 : 36 pm to : lance cunningham / na / enron @ enron , vasant shanbhogue / hou / ect @ ect , alex huang / corp / enron @ enron , sevil yaman / corp / enron @ enron cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : enron : wefa luncheon may 1 would you like to attend the presentation and join me for lunch with wefa . any other suggestions re attendance . please , let shirley know . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2001 12 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" peter mcnabb "" on 04 / 11 / 2001 11 : 52 : 47 am to : cc : "" kemm farney "" subject : enron : wefa luncheon may 1 dear vince thanks for your voicemail and delighted to have you confirm lunch on may 1 . kemm farney the head of wefa ' s electric power services will be travelling with me this time . i expect there may be other enron colleagues that may care to join us for lunch so don ' t hesitate to invite as you see fit . for reservations purposes , perhaps you arrange to let me know numbers . kemm would also be prepared to informally present our current power outlook to a larger group at 11 : 00 , if this would be of interest . as you know , these types of presentations are part of all your wefa energy retainer package . i will also plan to update you with respect to our current multi client study schedule for the remainder of the year . regards , peter peter a . mcnabb vice president energy , north america wefa inc . 2 bloor st . w . toronto , canada m 4 w 3 rl 416 - 513 - 0061 ex 227 - 2001 energy brochure . doc - wefaenergy _ factsheet for energy scenarios 2001 . doc",0 +"Subject: schedule and more . . dr . kaminski , i think i ' ll be able to start work from the last week of may , but not from monday , probably , i ' ll be able to work from 5 / 30 ( wed ) . will it be good ? i know it is not that much earlier than i mentioned . . 6 / 4 i am sorry . and actually , there is an e - business conference at haas school of business , organized by my advisor could you distribute the link and the attached invitation letter to groups interested in e - business and especially procurement ? the link is as following . i am afraid you might forgot this i told you in the last email . . . my advisor ( arie segev at haas school of business ; segev @ haas . berkeley . edu ) wants me to ask whether you have any idea on joint research with him during the summer , while i am staying there . his interest is in e - business . . ( what else . . ? ) and has expertise in e - procurement system and marketplace . . . xml based standard such as obi , cxml , xcbl , rosettanet , biztalk . . system interoperability study , auction and negotiation , workflow system , e - catalog management , digital signature , edi , etc etc . . . many technical aspects of e - business . . . he wants to do some kind of technical case study that is beneficial for both enron and him . he may travel one or two times to houston to have a meeting during the summer . ( and to be frankly , this will be good for me too , because i can have a meeting for my dissertation while he is in houston . . ) could you think about the possibility of joint research , with him ? thank you . . sincerely , jinbaek - fcp - invite . pdf",0 +"Subject: re : iris mack molly , this is the list of people we can ask to interview iris . i would include one ( or possibly more ) people from each group below , depending on availability . 1 . debbie brackett or bill bradford 2 . ted murphy , bjorn hagelman or david port 3 . mark tawney or joe hrgovcic 4 . greg whalley or louise kitchen i shall send a message to them explaining that we try to identify the best fit for a good candidate . vince enron north america corp . from : molly magee 12 / 18 / 2000 11 : 57 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : iris mack iris would like to come on thursday , 12 / 28 / 2000 , to visit with you and your group . she will be in new orleans , and will just fly in for the day . molly",0 +"Subject: a friend of mine shirley , please , arrange a phone interview with richard . stinson , myself , vasant . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kristin gandy / enron @ enronxgate on 05 / 01 / 2001 05 : 14 pm to : vince j kaminski / hou / ect @ ect cc : subject : a friend of mine vince , last week i was contacted by one of my friends who is very interested in becoming an enron employee . he has a phd and several years research and lab experience . richard is afraid that being a phd is a dying breed and may need to go back to school to obtain an mba . i was wondering if you would mind looking at the attached resume to assess if you have any interest in richard , or if you feel i should encourage him to go back to school . i am unclear as to the qualifications for your group so i apologize if this request is way off base . thank you for your help , kristin gandy associate recruiter enron corporation 1400 smith street eb 1163 houston , texas 77002 713 - 345 - 3214 kristin . gandy @ enron . com",0 +"Subject: reactions password reminder = = = = = = = = = = = = = = = = = reactions password reminder = = = = = = = = = = = = = = = = = hi , we do not seem to be able to see you on our systems , please try registering and you will automatically receive a username and password . if you have already registered on this website , then please let us know and we will investigate further . regards . reactions support - euromoney publications plc . tel : + ( 44 ) 0171 779 8927 fax : + ( 44 ) 0171 779 8704 ",0 +"Subject: ll visa - anshuman shrivastava anshuman : i have been asked to contact you regarding your possible move to houston , texas . in order that i may begin the process of getting you an ll immigration visa , i will need you to complete the attached visa questionnaire and return it to me with copies of the following documents : a copy of all pages of your passport , even if blank copies of all previous us visas issued an updated resume , showing months and years copies of all diplomas and transcripts received if you have dependent family members coming to the states with you , copies of their passports please send to my attention , via fedex to : enron corp . 3 allen center , 3 ac 2026 a 333 clay street houston , tx 77002 please call me with any questions you may have at 713 - 345 - 5083 .",0 +"Subject: re : new powermod 97 . xls marty : absolutely yes ! we are now using option functions in the exotic options library ( in r : \ exotica which everybody in risk management has access to ) instead of the old visual basic code in the powermod file . this improved the calculation speed for options quite a bit . we are also embarking on a new project to develop the next generation structuring and pricing models . i will discuss about this project in more detail with you soon and get your input , but the main goals i see now are : 1 . superior performance ( speed ) to enable fast pricing especially for the underwriting group , 2 . proper documentation for easy maintenance and ability to quickly adapt to meet future needs , and 3 . security / access control to the files . the first stage in this process is to take inventory of what we have : i am documenting the current structuring models . this step is important not only for developing our next generation models but also for the aa audit of all the ees pricing models . krishna . to : maureen craig / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect , dennis benevides / hou / ees @ ees cc : subject : new powermod 97 . xls any performance improvement to be expected ? - - - - - - - - - - - - - - - - - - - - - - forwarded by marty sunde / hou / ees on 07 / 26 / 2000 10 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - pinnamaneni krishnarao @ ect 07 / 24 / 2000 01 : 37 pm to : dennis benevides / hou / ees @ ees , james w lewis / hou / ees @ ees , neil hong / hou / ees @ ees cc : marty sunde / hou / ees @ ees , alexios kollaros / hou / ees @ ees subject : new powermod 97 . xls we have made enhancements to powermod 97 . xls model to enable proper processing from the batch model . these changes should not affect current functionality of this file . we will be putting the new version into production later today . please contact me or alex kollaros ( x 39806 ) with your comments or problems . thanks , krishna x 35485 .",0 +"Subject: re : book order thanks vince ! ? will champagne do ? ? if not , name your price . ? do you have an email address for steve leppard ? ? i tried : steve . leppard @ enron . com ? which bounced back . ? thanks , julie ? ps - guess i ' ll finally meet you at the end of the month ? - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie cc : vince . j . kaminski @ enron . com sent : wednesday , january 31 , 2001 1 : 36 pm subject : re : book order julie , there are many employees in london ? who would be interested . you can send ? an inquiry to steve leppard . i had a presentation last night to garp in houston and did a commercial for the book . you should put me on commission . vince "" julie "" on 01 / 31 / 2001 06 : 31 : 39 am please respond to "" julie "" to : ? ? cc : subject : ? re : book order vince , i wasn ' t sure if i responded to your email , so apologise either for my delayed response or repeating myself . thanks for the 2 nd order ! i believe they have already been ? dispatched . yes , i believe we received payment ; thank you very much for ? following up with paul . glad the book was a hit ! on another subject , are there any enron employees in europe who may be interested in attending either the energy or the weather course ? or , are the quants and risk management mostly handled out of houston ? thanks again , and i ' ll forward an invoice on to shirley . julie - - - - - original message - - - - - from : ? vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : friday , january 26 , 2001 11 : 29 ? pm subject : book order julie , we received the shipment of 50 books . ? thanks . the book was an instant hit . we need 50 more ? books . vince p . s . i understand paul sent you the check for the ? remaining 50 %",0 +"Subject: memo information on grains and sugars from last week in memo form . nelson - - - - - - - - - - - - - - - - - - - - - - forwarded by nelson neale / na / enron on 03 / 05 / 2001 10 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : maria arefieva 03 / 05 / 2001 11 : 01 am to : nelson neale / na / enron @ enron cc : subject : memo attached please find a summary of sessions on grains and sugar . a memo on ag policy and outlook for the livestock sector will follow . thanks , masha",0 +"Subject: final project deadline is april 30 dear energy derivatives students , the deadline for the final project has been set for april 30 , 2001 . all grades will be submitted to rice administration by may 4 th ( university requirement ) . please mark your calendars ! ! ! if you have questions , please contact vince or me . good luck ! jason sokolov",0 +"Subject: meeting regarding "" gary hickerson trading "" hello all : vince would like to schedule a meeting on tuesday , may 23 at 3 : 00 pm in conference room ebl 938 . this will be to discuss the subject topic . please let me know if you are available . thanks shirley 3 - 5290",0 +"Subject: interview with the enron corp . research group good morning jacob : the enron corp . research group would like to bring you in for an informal interview . please give me some times and dates within the next 2 - 3 weeks that would be convenient for you and i will coordinate an interview schedule . the interviewers would be : vince kaminski managing director stinson gibner vice president krishna krishnarao vice president zimin lu director tanya tamarchenko director bob lee manager tom halliburton manager chonawee supatgiat manager i look forward to hearing from you soon . best regards , shirley crenshaw administrative coordinator enron research group 713 / 853 - 5290 email : shirley . crenshaw @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001 09 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 03 / 08 / 2001 09 : 17 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : candidate for us jacob kang , currently a leading developer for pros energy applications , is interested in a job in derivatives valuation . let me know if we want to bring him for a interview . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 08 / 2001 09 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jacob y . kang "" on 03 / 07 / 2001 11 : 10 : 24 pm to : zlu @ enron . com cc : subject : my cover letter and resume dear zhimin , the attached files are my cover letter and resume . thank you very much and i really appreciate your help on this matter . ying these two files do not contain any virus even though there are error signs on the virus check status . do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com / - cover letter _ enron . doc - resume _ ying . doc",0 +"Subject: re : fwd : happy st . patricks day jana , great attachment . thanks . saturday , march 25 works for me . i shall call or e - mail you from california to talk about the time . early afternoon would be great . vince jlpnymex @ aol . com on 03 / 17 / 2000 10 : 58 : 54 am to : vkamins @ enron . com cc : subject : fwd : happy st . patricks day vince , how about saturday , march 25 ? call or email me next week , to let me know what time would be good for you . have a good trip to california and a happy st . patrick ' s day today ! jana return - path : received : from rly - ydol . mx . aol . com ( rly - ydol . mail . aol . com [ 172 . 18 . 150 . 1 ] ) by air - ydol . mail . aol . com ( v 70 . 19 ) with esmtp ; fri , 17 mar 2000 10 : 06 : 51 - 0500 received : from mta 3 . rcsntx . swbell . net ( mta 3 . rcsntx . swbell . net [ 151 . 164 . 30 . 27 ] ) by rly - ydol . mx . aol . com ( v 70 . 19 ) with esmtp ; fri , 17 mar 2000 10 : 06 : 26 - 0500 received : from postoffice . swbell . net ( [ 207 . 193 . 12 . 192 ] ) by mta 3 . rcsntx . swbell . net ( sun internet mail server sims . 3 . 5 . 2000 . 01 . 05 . 12 . 18 . p 9 ) with esmtp id for jlpnymex @ aol . com ; fri , 17 mar 2000 09 : 04 : 52 - 0600 ( cst ) date : fri , 17 mar 2000 08 : 57 : 53 + 0000 from : ckcrews @ swbell . net subject : happy st . patricks day to : jana reply - to : ckcrews @ swbell . net message - id : mime - version : 1 . 0 x - mailer : mozilla 4 . 05 [ en ] c - sbis - nc 404 ( winnt ; u ) content - type : multipart / mixed ; boundary = "" - - - - - - - - - - - - eed 862 df 35 cd 73 flfo 74403 a "" - stpat . exe",0 +"Subject: re : interview elizabeth , yes , manager . thanks . vince from : elizabeth grant 01 / 10 / 2000 03 : 27 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : interview we ' ll get right on it . are you looking at him for a specific level ( manager ? ) - elizabeth vince j kaminski 01 / 10 / 2000 12 : 56 pm to : elizabeth grant / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : interview elizabeth , we would like to invite bob lee for an interview , january 24 , monday . he will be interviewed by me , stinson gibner , zimin lu , paulo issler , vasant shanbhogue , krishnarao pinnamaneni , grant masson . thanks vince",0 +"Subject: re : alp presentation vince , thank you for the invitation . i will attend the presentation , but have another commitment for dinner . please indicate the specific room for the presentation when it is known . thanks , wil at 08 : 13 am 4 / 10 / 01 - 0500 , you wrote : > on behalf of enron corp . i would like to invite you to an alp project > presentation by a group of students > of jesse h . jones graduate school of management , rice university . > > the students will present the results of a research project regarding > electronic trading > platforms in the energy industry . > > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . > > we would also like to invite you to dinner , following the presentation . > > > vince kaminski > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > ( 713 ) 410 5396 ( cell ) > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com",0 +"Subject: re : final pivot table for mg metals globals positions data dear all , please see attached spreadsheet - we will have to think of a way to automate the position update - right now it ' s a manual process to convert the text file that andreas sends us to proper spreadsheet format and then pivot table the results - only takes about 20 minutes to do this however . note that the version la var model links via vlookup to the spreadsheet attached ( as you know , we have to use vlookup because mg does not necessarily have positions in all forward months , whilst the pivot table only produces numbers for forward months with a position ) . regards , anjam x 35383 positions as of 19 th july - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 25 / 07 / 2000 20 : 41 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : anjam ahmad 25 / 07 / 2000 19 : 17 to : cantekin dincerler / hou / ect @ ect cc : tanya tamarchenko / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , grant masson / hou / ect @ ect , andreas . barschkis @ mgusa . com @ enron subject : re : positions data our pivot table ; we noticed that copper position for 19 th july has option included but this is not reported in mercur - i guess we should include the 5 , 248 tonnes for the copper option for 2000 . 09 , but we won ' t show any gamma . - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 25 / 07 / 2000 19 : 18 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : anjam ahmad 25 / 07 / 2000 19 : 14 to : tanya tamarchenko / hou / ect @ ect cc : cantekin dincerler / hou / ect @ ect , andreas . barschkis @ mgusa . com @ enron subject : re : positions data hi tanya , we are using the data for 19 th july from andreas - see file attached . we are using this because we can reconcile to mercur print out that we got from andreas last wednesday . if you don ' t mind , perhaps cantekin can try again with this new sheet attached . we already looked at it , but would like to see what cantekin can come up with independently . i think the positions changed a lot from 3 rd july ( your data ) to 19 th july . thanks , anjam & kirstee",0 +"Subject: interview schedule for jinbaek kim i didn ' t see this before it went out , but i will be happy to meet with jinbaek in the 11 : 00 am time slot , if you don ' t have anyone else scheduled then . if not , i can easily meet with hiim after lunch . molly - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 17 / 2001 08 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shawn grady @ enron 01 / 17 / 2001 06 : 02 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , bob lee / na / enron @ enron , vasant shanbhogue / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , anita dupont / na / enron @ enron , molly magee / hou / ect @ ect subject : interview schedule for jinbaek kim please find the interview packet for the above - referenced candidate . the interview will occur on friday january 19 , 2001 . please print all documents for your reference . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . shawn grady 58701",0 +"Subject: bob lee starting june 5 , 2000 bob lee ' s official starting date is june 5 , 2000 . shirley , bob will be reporting to zimin lu and primarily supporting ena . we will need to find a desk for him as well as set up his phone and pc ( can we use ravi ' s ? ) . elizabeth grant ( x 57583 ) has handled him on the hr recruiting side and has his contact information . thanks , stinson",0 +"Subject: ljm put valuation wes : attached is a spreadsheet for the valuation of the rthm put position . i should be in on tuesday , so feel free to give me a call at x 34748 . - - stinson",0 +"Subject: re : eol phase 2 michael , please , contact zimin lu . vince kaminski michael danielson 06 / 30 / 2000 01 : 10 pm to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : angela connelly / lon / ect @ ect , savita puthigai / na / enron @ enron subject : eol phase 2 thanks for your help on content for eol phase 2 . an additional piece of content that we are trying to include in our scope is an options calculator . this would be an interactive tool to teach less sophisticated counterparties about options . we would like to collaborate with someone in research to refine our approach ( and make sure we ' re using the right formulas ) . who should we contact in research for this ? attached is a mock - up of what we have in mind . . . - calculator prototype . ppt",0 +"Subject: re : implementing term - structure of correlations for power tanya , while there is seasonal correlations in power , especially for np - 15 and sp - 15 ( same region ) , the term structure of correlations can be input . however , the same correlation structure with similar periodicity may not hold between np - 15 and , say , rlb ( neepool ) , though one would imagine that relationship would still be seasonal ( summer / winter ) , with greater noise . even if the correlational term structure is to be done for power , different rules would have to be inputted for different regions . naveen tanya tamarchenko @ ect 10 / 05 / 2000 10 : 42 am to : vladimir gorny / hou / ect @ ect , naveen andrews / corp / enron @ enron cc : kirstee hewitt / lon / ect @ ect , debbie r brackett / hou / ect @ ect , wenyao jia / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : implementing term - structure of correlations for power vlady 2 ) correlations are periodic with a period of 1 year ( this means we can use 12 correlation matrices calculated from first 12 forward contracts and apply these matrices to other forward months ) ; 3 ) using decay factor makes the curves a little smoother . implementation of multiple correlation matrices will not affect the speed of calculations in var model significantly . please , give me your response , thanks , tanya .",0 +"Subject: best picks hey , best picks are zigo and smtx steve",0 +"Subject: re : summer internships at enron vince : thanks . yes it is unfortunate that we were not able to quickly identify who the interested tiger team students were . we will go ahead and process an offer letter for kim and get it to her immediately . also , thanks for agreeing to help out with stanford . hopefully we will get a few good ones ! regards , celeste vince j kaminski 03 / 01 / 2001 09 : 32 am to : celeste roberts / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : summer internships at enron celeste , i have just talked to kim . i told her she will receive one . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001 09 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 01 / 2001 09 : 25 am to : celeste roberts / hou / ect @ ect cc : kristin gandy / na / enron @ enron , christie patrick / hou / ect @ ect , vince j kaminski / hou / ect @ ect , piazze @ wharton . upenn . edu subject : summer internships at enron celeste , it seems that the process lasted too long for some students and only kim whitsel is interested in the internship at this point . her resume has been forwarded to you . i am enclosing it just in case . thanks for your help . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001 09 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 02 / 23 / 2001 02 : 28 : 48 pm to : "" ' vkamins @ enron . com ' "" cc : "" ' piazze @ wharton . upenn . edu ' "" subject : summer internships at enron vince : thank you to you , ken and christie for coming to campus for the enron tiger team mid - project review . the students are working hard and appreciate your insight and suggestions to the project . thank you for your support of the wharton school . kim whitsel ( whitselk @ wharton . upenn . edu ) of tiger team 1 has informed me that she is very much interested in a summer internship at enron this year . i don ' t believe some of the students understood the process you had setup for them at enron as part of the tiger team . being concerned with having summer employment , they interviewed with other firms and ultimately accepted positions . the students asked that i express to you that this does not mean they are not interested in full time work at enron next year . i apologize and take responsibility for the lack of communication in this regard . i think it is a lesson learned and perhaps , in the future , we can make the agreement to students understood in advance of their "" dedicated interview week "" and eliminate their need to interview at all . this can also be an added advantage of applying to be a member of the tiger team . please let me know if you have any questions and exactly how kim whitsel should proceed . thank you , donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: re : thanks vince . . . jeff vince j kaminski 09 / 01 / 2000 10 : 23 am to : jeffrey a shankman / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : jeff , christ , mark and myself are planning to visit tom piazze in october . i talked to christy about wharton and she will be calling tom to set it up . vince from : jeffrey a shankman 09 / 01 / 2000 09 : 25 am to : vince j kaminski / hou / ect @ ect , mark palmer / corp / enron @ enron cc : celeste roberts / hou / ect @ ect , charlene jackson / corp / enron @ enron subject : hi vince , i just got off the phone with donna piazze at wharton , ( i don ' t know if there is a relationship with tom at wharton ) , and we were discussing there tiger teams . it is a required research program , 2 nd semester for mbas , and wharton would love to have enron participate . i told her there is probably some real life reasearch project we could have the students do . she did also mention that it is one of the best recruiting tools under development at wharton . . i gave her your number . her number is 215 573 8394 . please call her when you get a chance within the week . mark , can we get christy involved ? thanks everyone . jeff",0 +"Subject: professor bambos ' itinerary hello all : attached please find the itinerary for professor bambos . if any corrections need to be made , please let me know . thanks and have a great day ! shirley 3 - 5290",0 +"Subject: paper hi mr . kaminski , thank you for taking your time to interview me for opportunities at enron . i enjoyed talking you and learning more about enron and its dynamic business environment . i appreciate your consideration for a challenging and rewarding position in this industry . please find the attached copy of my dissertation . if you have any problem in compiling this file , please let me know . i respected your insights and perspective on the issues addressed in my ph . d . dissertation ; including the issues on creative model building , factors affecting natural gas and elctricity demand and supply , and implementation of these models to simulate the future and help traders in the decision making of their day to day business . i appreciated talking with you . thank you for considering me . i am enthusiastic about opportunities at enron and look forward to hearing from you . sincerely dipak agarwalla _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com - dissertation - dipak agarwalla . doc",0 +"Subject: re : dr . michelle foss - energy institute aisha , the person to contact is christie patrick who is in charge our university relations office . her e - mail address is : christie _ patrick @ enron . com . i shall forward your message to ms . patrick . vince aisha jamal on 04 / 23 / 2001 03 : 15 : 29 pm please respond to aisha @ uh . edu to : vkamins @ ect . enron . com cc : mmfoss @ uh . edu subject : dr . michelle foss - energy institute dear mr . kaminski , i am writing to ask a favor for dr . michelle foss . as you know we will be running our "" new era "" program from may 14 - may 25 th . dr . foss was wondering if on may 22 nd ( between 1 : 30 pm and 4 : 00 pm ) , we would be able to bring our participants for a tour of your trading floor . at this time we will have 30 - 40 people , and since only 10 people maximum should really be on a trading floor we need to have 4 companies among which to divide our participants . at this time , we have a floor from coral energy , and are working with duke , and i will be contacting mr . paul roberts to arrange for the reliant energy trading floor . i was hoping very much that you would be able to direct me to the right person to contact to arrange this tour . will this be a possiblity ? i really appreciate your help very much . thank you ! best regards , aisha jamal energy institute 713 - 743 - 4634",0 +"Subject: wharton tiger team vince and kristin , i forwarded by separate emails the lists of tiger teams 1 and 3 . thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 15 / 01 11 : 28 pm - - - - - kristin gandy @ enron 02 / 15 / 01 01 : 07 pm to : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect cc : subject : wharton tiger team vince and christie , greetings . i am writing because i need a break out of names for the tiger team group 1 and 3 . i understand tiger team group 2 has decided not to be a part of enron and i also need to know who those students are . i have a listing of all the tiger team members but they are listed alphabetically so that does not help me with my quest . we are trying to firm up the details and get offers out to the correct people for summer associate positions in vince ' s department . regards , kristin",0 +"Subject: re : summer internship jinbaek , you can coordinate the details with me . let me know what the time frame is for you and we shall send you an appropriate offer . vince jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm to : vince . j . kaminski @ enron . com cc : subject : re : summer internship dr . kaminski , thank you very much . of course , i ' ll be happy to have an opportunity to work at such a wonderful company . i was contacting with surech raghavan at deal bench team , and was going to express my appreciation to you again after settling down process with them . for the period of working , i still need to coordinate with my advisor and may need to adjust according to that . but anyway , i ' ll try to coordinate smoothly . please let me know whether i should keep contacting with deal bench team , for working period and for misc . living support such as finding a place , rent a car , etc . i appreciate you so much again , for arranging such meetings and giving me an opportunity . all this opportunity will not be available to me , without your kind help . warm regards , jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > hello , > > sorry for a delay in getting back to you . > we would like very much to offer you a summer internship . > > please , let me know if you are interested . > > vince kaminski > >",0 +"Subject: re : rent r / c updates - 19 th floor & 29 th floor hi carol : thanks for helping straighten this out . below are the room numbers and people ( plus ext . ) . 1938 team room 3 - 3135 1939 maureen raymone 3 - 0396 1940 tanya tamarchenko 3 - 3997 1941 vacant 1942 vacant 1943 clayton vernon 3 - 9719 1944 amitava dhar 3 - 4215 1945 alex huang 3 - 1631 1946 kevin kindall 5 - 8167 1947 vacant 1948 vacant 1949 farouk llaji 3 - 1790 1951 vacant 1951 a printer / fax 1952 vacant 1953 mail stop / supply station 1954 wm . sam smith 5 - 8322 1955 martin lin 3 - 9387 1955 a xerox machine 1956 printer / colored printer 1957 vacant 1958 paulo issler 5 - 6274 1959 vincent tang 3 - 4790 1960 ravi thuraisingham 3 - 3057 1961 shirley crenshaw 3 - 5290 1962 vince kaminski 3 - 3848 1963 stinson gibner 3 - 4748 1964 p . v . krishnarao 3 - 5485 1966 grant masson 3 - 4768 1967 zimin lu 3 - 6388 1968 vacant 1969 kevin moore 3 - 4710 1969 a vacant 1969 b vacant 1970 mike roberts 3 - 5701 1971 joe hrgovcic 3 - 3914 1972 a vacant 1972 b roman zadorozhny 3 - 9737 1972 c michael sergeev 3 - 4305 1972 d tricia tlapek 3 - 6615 1972 e jason sokolov 3 - 6286 1973 vasant shanbhogue 3 - 7570 19 c 2 conference room carol brittain 01 / 10 / 2000 11 : 33 am to : shirley crenshaw / hou / ect @ ect cc : joann holloway / epsc / hou / ect @ ect , janelle duree / hou / ect @ ect subject : re : rent r / c updates - 19 th floor & 29 th floor shirley : if you could forward all the names , locations , and extensions to me so that i can update fms and the employee lists , i will take care of this for you . carol enron property & services corp . from : joann holloway 01 / 10 / 2000 09 : 48 am to : carol brittain / epsc / hou / ect @ ect cc : subject : re : rent r / c updates - 19 th floor & 29 th floor - - - - - - - - - - - - - - - - - - - - - - forwarded by joann holloway / epsc / hou / ect on 01 / 10 / 2000 09 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 01 / 07 / 2000 03 : 33 pm to : joann holloway / epsc / hou / ect @ ect cc : subject : re : rent r / c updates - 19 th floor & 29 th floor oh dear ! i thought it was all straight . ebl 931 was my room on the original floor plan , but somehow they changed the numbers . we were all packed , everything was ready for the move and i just happened to come to the 19 th floor the day of the move and noticed that they had renumbered all of the rooms ! the move team hurredly put stickers ( with the old numbers ) on the doors of each room . i am now in eb 1961 . vince kaminski is in 1962 . if you need the names for all of the other rooms , let me know . sorry ! enron property & services corp . from : joann holloway 01 / 07 / 2000 03 : 09 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : rent r / c updates - 19 th floor & 29 th floor shirley , i guess my floor plans are misnumbered . in what room number are you sitting ? the relocation request had eb 1931 . jo ann shirley crenshaw 01 / 07 / 2000 02 : 16 pm to : joann holloway / epsc / hou / ect @ ect cc : subject : re : rent r / c updates - 19 th floor & 29 th floor joann : sorry , joann , i did not read all of your first e - mail . listed below are the spaces on 19 that should be charged to 0011 - 100038 . 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1951 1951 a 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 enron property & services corp . from : joann holloway 01 / 07 / 2000 02 : 04 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : rent r / c updates - 19 th floor & 29 th floor shirley , although the rent for your locations on the 19 th floor has been updated , i ' ve just received a relocation update for some folks moving from the 45 th floor to the 19 th floor tonight . the odd thing is that among many other locations , the following locations were included ( which you ' ve already requested be assigned to 0011 / 100038 ) : eb 1930 eb 1931 eb 1932 eb 1933 eb 1934 eb 1935 eb 1936 please let me know if they should stay assigned to your group or should they be assigned to this other group ' s r / c . thank you . jo ann x 35957 enron property & services corp . from : joann holloway 01 / 05 / 2000 08 : 47 am to : shirley crenshaw / hou / ect @ ect cc : ( bcc : joann holloway / epsc / hou / ect ) subject : rent r / c updates - 19 th floor & 29 th floor shirley , the following locations on the 29 th floor are still assigned to 0011 / 100038 . they were not listed on the december 17 th churn relocation request . so , are the personnel in these locations still reporting to 0011 / 100038 or are they moving later . please advise : eb 2963 a eb 2963 b eb 2964 a eb 2965 a eb 2965 b eb 2966 a eb 2966 b eb 2966 c eb 2966 d eb 2970 c eb 2971 a eb 2975 a eb 2975 b the following location on the 19 th floor are now assigned to 0011 / 100038 : eb 1928 eb 1929 eb 1929 a eb 1930 eb 1930 d eb 1931 eb 1932 eb 1933 eb 1934 eb 1935 eb 1936 eb 1938 eb 1941 eb 1942 eb 1943 eb 1944 eb 1945 eb 1947 eb 1949 thank you . jo ann holloway x 35957",0 +"Subject: re : marketpoint license agreement john , fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 27 / 2000 03 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" dale m . nesbitt "" on 11 / 27 / 2000 02 : 51 : 54 pm please respond to to : cc : subject : re : marketpoint license agreement vince : i will send you our contract for the week long engagement . the way we do it is send out our time and materials contract , which has a space for individual task statements . i then put in a task statement for the week long project at the $ 12 k level so that the costs and risks are capped for you . look for it in the next day or two . with regard to the long run and short run gas models , they are both implemented in the same software system . neither is a prerequisite for running the other , but both operate the same way and the sum of the two consumes approximately the same resources are either individually . i plan to have an extended visit in houston beginning one week from today and lasting through the following wednesday . ( intensively tutoring my daughter for her first semester economics finals at rice . she certainly should have gotten a better looking tutor . ) that will make it very easy to come by and finalize whatever needs to be finalized with you that week . with her in houston , i spend a good bit of time there . look for the stuff in the next day or two . i look forward to working with you and your colleagues . thanks dale - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , november 27 , 2000 10 : 44 am to : dale . nesbitt @ worldnet . att . net cc : vince . j . kaminski @ enron . com subject : re : marketpoint license agreement dale , thanks for your message . in our phone conversation before the meeting you mentioned another contractual arrangement under which we could work with your company employees on a case - study . the cost of a weekly project would be $ 12 , 000 that would be applied to the purchase price should we go ahead and decide to acquire the software . this project would allow us to evaluate the model and come up with an estimate of the manpower necessary to support the model internally . please , let me know more about this option . we are primarily interested in a long - term natural gas model and the database for north america . unless a familiarity with the short term model is a prerequisite , we don ' t have resources to spend too much time on it . of course , a trading desk may be interested in the short term version of the model . i shall talk to them about it . vince "" dale m . nesbitt "" on 11 / 13 / 2000 06 : 00 : 05 pm to : , "" vince . j . kaminski "" cc : subject : marketpoint license agreement john / vince : i really enjoyed the meeting the other day with you and a broad cross section of your people . thank you very much for setting it up , and thank you for giving me the opportunity to speak with your people . as i mentioned to john , i am sending you the license paperwork for marketpoint . i have attached our standard license agreement for your consideration . as i mentioned , the license agreement covers the entire bundled product , which includes ? north american gas , short and long term ? north american electricity , short and long term ? world gas ? western european gas ? world oil we are just finishing porting the world oil , world gas , and western european gas models over from our old ( now obsolete ) software system into marketpoint , so they will not be fully tested and complete for a couple of months . however , the gas and electricity models for north america are presently complete and tested . that should allow us to give you an attractive price before the full worldwide toolkit is available throughout your worldwide business . as i understood it , you will want the gas modeling capability first and will want to defer decisions on electric or other capability . as i mentioned at the meeting , we are prepared to offer that for approximately the fully bundled price . as you read the license agreement , you will see that the software licenses for $ 100 , 000 annually , the gas data for $ 5 , 000 , and the electric data for $ 10 , 000 . marketpoint will agree to license you the gas model plus the data for the software license plus the data license for a total of $ 55 , 000 annually . this is just under the fully bundled price . i think that is consistent with the discussions at our meeting , and from marketpoint ' s perspective would provide a great basis to move forward together with enron . if or when enron ever desires to "" scale up "" to another model or model ( s ) from the marketpoint portfolio , we will simply scale you up to the entire license agreement . this will allow you to decouple the gas decision from any other decisions you might make . ( i will be glad to put this additional pricing provision into the agreement if you decide to move forward . ) i felt i was able to communicate the philosophy , scope , and operation of our approach during the meeting and to deliver you much of the information you might need to evaluate whether marketpoint meets your needs . i thought you were able to see the depth and sophistication of the product yet at the same time its simplicity and effectiveness . i thought you were able to see the benefits of the marketpoint dimension of economic equilibrium as a complement and supplement to other approaches you will assuredly use . i would be interested in your impressions and those of your colleagues . i look forward to your response and to moving ahead together . we view you as a very important prospective customer and client and will work with you to earn and secure your business . if you decide to license marketpoint , we can arrange to transfer and mount marketpoint and the short term narg model ( which is the model we suggest you begin with ) and travel to houston to deliver our 1 day training seminar . our clients are usually very fluent after that 1 day training seminar . thereafter , we would want you to work with the short term narg model for a few weeks while you get up to speed , very fluent , and very comfortable before you take delivery of the longer term version of narg several weeks later . thanks again , and all the best . if there is some item from the meeting that i might have forgotten to send , please remind me . my notes don ' t show anything , but i was speaking a lot rather than writing notes during the meeting and might have overlooked something someone wanted . dale nesbitt president marketpoint inc . 27121 adonna ct . los altos hills , ca 94022 ( 650 ) 218 - 3069 dale . nesbitt @ marketpointinc . com ( see attached file : license . doc )",0 +"Subject: california update 3 / 15 / 01 executive summary ? davis might concede to rate hikes for future power consumption but not for past utility debt ? davis and pg & e negotiations at a standstill , sticking point is net short for pg & e this summer ? as the days go on with no word of a secured deal , involuntary bankruptcy chances increase significantly among small generators and qfs ? ferc would probably approve transmission deal but with several conditions for california california public utility commission rate increases today may be the turning point as the ca puc reviews the size of the department of water resources ( dwr ) rate increase to be passed along to consumers on their electricity bills . until now , davis has considered rate hikes to be political suicide , but there may be some relief for him from consumer groups . sources indicate that one of california ' s main consumer advocate leaders may tolerate rate increases for future power consumption , but remains adamant about not raising rates to cover past utility debt . dwr , which is currently buying power on behalf of the state , needs more income to securitize the planned $ 10 b bond issue that is key part of davis ' plan to sign long term power contracts . as dwr continues to spend $ 40 to $ 60 m every day on power purchases , a well placed source informed us the dwr is essentially bankrupt . it currently has no money for normal activities such as ordering supplies , purchasing new equipment , etc . the department of finance is forwarding dwr money from where ever it can ( parks , other programs ) to purchase power , but dwr ' s hands are tied until revenue bonds are issued . the california state treasurer phil angelides will be submitting a recommendation on rate increases in order to secure revenue and cover $ 10 billion worth of state bonds . davis & pg & e at odds sources report that davis and pg & e negotiations are facing two difficult challenges : 1 ) pg & e wants 2 . 9 times book , which is far more than consumer groups recommend for the sale of its transmission lines ( sce accepted 2 . 3 ) , and 2 ) pg & e needs relief from davis for pg & es legal responsibility to be the ultimate power purchaser for the state , and at this point davis wants to limit further state energy power purchases ( especially for summer ) . the utilities refuse to sign a deal which will leave them billions of dollars further in the red ( $ 3 to $ 4 b ) and pg a measure that if accomplished would provide davis with even less negotiating power . with all this activity , davis is starting to lose support in the state legislature . sources report increasing tension between the governor and state senate president pro - tem john burton . burton has just announced a special senate committee will investigate the generators for evidence of price manipulation , and the state auditor is also planning an investigation . davis increasingly realizes he has to protect any deal he signs against being picked apart by the legislature and consumer groups later . qf ' s most likely source of involuntary bankruptcy sacramento insiders fear that a group of small generators will lose patience and force bankruptcy on the utilities . sb 47 x may have been california ' s qualified facilities last hope at avoiding an involuntary bankruptcy filing against pg & e , socal ed , and sdg & e . the bill designed to cut the qf ' s costs and provide them with a better rate structure is being held up in the state ' s senate . sources indicate that a filing could come at anytime and further investigations are underway to ferret out the most likely candidates . out with hebert , in with wood the bush administration favors replacing hebert , jr . with texas puc head pat wood . there is an intense battle behind the scenes between senate republican leader trent lott , who favors hebert , and president bush , who wants wood . the administration would prefer wood because they do not want ferc to pick a fight with davis which means bush might ultimately lose some western states in 2004 . in effort to tone down the recent press reports , hebert has made several token concessions to california , including $ 69 million worth of power refunds and streamlining the federal permitting process for pipeline and power plant installation . it ' s is expected that ferc would most likely approve any transmission deal that davis could complete but with a list of conditions . some conditions might include bring the lines formally into the regional grid system as well as other elements to pave the way for more dramatic administrative actions in the west next year . the bush administration is opposed to price caps and believes in free market solutions . the administration is also considering whether it might be a good idea to privatize federally - owned assets such as bpa .",0 +"Subject: spanish power option pricing hi paul / cassim , further to our meeting yesterday regarding power options , that we may use to capture short - term volatility from regulatory caps being adhered to or broken , i have attached a spreadsheet that should assist in nailing down the value . arbitrary distribution the first issue to address is converting the price scenarios for the average of the q 2 - q 3 swap into a volatility equivalent . this is achieved by fitting a normal distribution that matches the one specified for mean and standard deviation . the graph below illustrates the method for the numbers discussed yesterday . in this example , the annualised volatility is coming up as approximately 23 % . pricing & implied volatility the pricing is as for a regular asian option . the payoff depends on the average of the daily prices for spanish power for q 2 and q 3 . the valuation using 23 % volatility is showing about 15 . 3 pta per kwh . i will schedule a meeting to allow us to take this forward . regards , anjam x 35383 spreadsheet :",0 +"Subject: light switch for eb 1939 good morning all : maureen raymond castaneda is officed in ebl 939 . she has terrible migraine headaches which are made worse by light . we would like to get a price on having an on / off switch installed in her room . as of now , they have removed the light bulbs , but said that may not completely answer the problem as some one may see that they are out and request they be replaced . i think the answer ( if it is not too expensive ) would be to have a switch installed . please let me know . our co . # is 0011 and our rc # is 100038 . thanks ! shirley 3 - 5290",0 +"Subject: project richard , i would like to inform you that we decided against participation in your project . thanks for your interest in having enron involved in the study . vince kaminski",0 +"Subject: ena year end promotions nominations as a follow on to the discussion at monday ' s staff meeting ; attached is a summary of the manager and above promotion nominations made and discussed during the december business review / pre - ranking meetings in ena , which were captured in the system . promotions through to senior professional on the support side should already have been communicated to the employees . promotions to manager and director where agreed at the final ena performance review meeting on december 14 and should be attached . these can be communicated to the individuals , if you haven ' t already done so . no ena wide promotion memo is planned , therefore please feel free to communicate your departments promotions by separate memo if you believe appropriate .",0 +"Subject: seismic data via satellite i have attached a background piece to brief oil traders on this subject prior to a possible meeting with them . please give me any comments on 1 ) accuracy 2 ) completeness and 3 ) coverage of the areas we want to explore . as a side note , i found some info on the web stating current proven oil reserves are 1 , 000 billion bbls . discovery of a 1 billion bbl field would add only 0 . 1 % . while we will pursue the trading advantage option , it is not looking promising that it has great short term value , given the long time frame and high cost of bringing deep water reserves to market . bob lee",0 +"Subject: pres . to delainy sorry vince , please use this file instead of the earlier one . krishna .",0 +"Subject: re : yo ! vince , here is a little more info on the book bob darden is writing that might be useful in explaining who he is talking to at present . john > date : fri , 30 mar 2001 12 : 29 : 11 - 0600 > from : robert darden > subject : re : yo ! > x - sender : "" robert darden "" ( unverified ) > to : "" john d . martin "" > organization : the door > x - mailer : mozilla 4 . 04 [ en ] c - flashnet ( win 95 ; i ) > > you , sir , are a gentleman and a scholar . > if the research director needs more info on the book , i can send him / her > whatever they need : > publisher : fleming h . revell ( a division of baker books ) > deadline : may 30 > people who we have already interviewed or who we have tentative > agreements to interview : > jerry conangelo , norm miller , dr . kenneth cooper , philip clements , > george gallup , ted benna , bob lawless , jack eckerd , truett cathey , ed > bonneau , jay pifer , bill bailey etc . . . > thanks again > bob > > john d . martin wrote : > > > > at 11 : 35 am 3 / 30 / 01 - 0600 , you wrote : > > > hi john - - i enjoyed our meeting yesterday . this looks very promising . > > > meanwhile , as i mentioned at the table , i ' m getting a little nervous > > > about the book that is due june 1 . > > > one of the names on our "" wish "" list of interviewees for "" the business of > > > heaven "" is ken lay at enron . ( yes , i ' ll try to get this for you today ) > > > would it be possible for you to give me a good address and phone number > > > for mr . lay ' s office ? > > > and may i mention your name in the cover letter ? ( certainly - - not that it > > will necessarily help . i ' ll talk to the director of research about your > > project and see if he can help ) > > > i would be forever indebted . i might even buy the next lunch . > > > bob > > > p . s . thanks for sharing your concerns about church yesterday , too . i ' m > > > genuinely sorry things didn ' t work out better and feel more than a > > > little embarrassed that i didn ' t work harder to make you guys feel more > > > welcome and connected . on the other hand , please know that mary and i > > > will always love you and consider you both friends . i know you ' ll be > > > happy at lake shore - - even as we miss you at 7 th ! > > > > > john d . martin > > carr p . collins chair in finance > > finance department > > baylor university > > po box 98004 > > waco , tx 76798 > > 254 - 710 - 4473 ( office ) > > 254 - 710 - 1092 ( fax ) > > j _ martin @ baylor . edu > > web : http : / / hsb . baylor . edu / html / martinj / home . html > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : hello david , another trip in the cards . you can catch me at the office on wed or next week at home . vince "" walkup , david c ( houstonas as 582 ) "" on 04 / 03 / 2000 03 : 43 : 31 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : hello i am tentatively planning on being in the woodlands wednesday . should i stop by the house that night or do we need to get together tomorrow or wednesday morning ? david c . walkup financial consultant 713 - 658 - 1685 800 - 456 - 9712 > - - - - - - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : monday , april 03 , 2000 4 : 35 pm > to : dwalkup @ pclient . ml . com > subject : re : hello > > > david , > > can you stop by on wednesday ? > > i shall be gone for a few days after this day . > > vince > > > > > > "" walkup , david c ( houstonas as 582 ) "" on > 04 / 03 / 2000 > 01 : 21 : 45 pm > > to : "" ' vincent kaminski ' "" > cc : > subject : hello > > > hello , vince . > > i guess you are still traveling a lot . i just wanted to say hello and see > when we can get together and look at getting some more money deposited > into > the cma for future investments . > > get back with me when you can . > david c . walkup > financial consultant > 713 - 658 - 1685 > 800 - 456 - 9712 > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > > > > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . for your protection , avoid sending > identifying information , such as account , social security or card numbers > to > us or others . further , do not send time - sensitive , action - oriented > messages , such as transaction orders , fund transfer instructions , or check > stop payments , as it is our policy not to accept such items electronicall > > > > > > caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . for your protection , avoid sending identifying information , such as account , social security or card numbers to us or others . further , do not send time - sensitive , action - oriented messages , such as transaction orders , fund transfer instructions , or check stop payments , as it is our policy not to accept such items electronicall",0 +"Subject: latest fall 2001 module schedule and calendar ( rev . c ) - placed in your mailbox 4 - 5 - 01 students , faculty , and staff , a hard copy of the latest fall 2001 module schedule and calendar ( rev . c ) were placed in your mailbox on thursday . please review over the calendar closely for changes made . i have also posted the latest fall 2001 module schedule and calendar ( rev . c ) to embanet . reminder : the jones graduate school does not always follow the university calendar on scheduled breaks , exams , etc . . . . always refer to jones graduate school information regarding breaks , exam schedules , etc . . . . thanks , kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: re : houston research opportunity tara : thanks for the update . it seems anjam is playing hard ball a little . my initial reaction is to be inflexible because it is a good offer , but on second thoughts , could you please give me an idea of what is meant by a 12 - month assignment when you have a moment ? compensation , benefits , responsibilities , career path implications , etc . many thanks ! regards , grant .",0 +"Subject: re : [ no subject ] hi vince , this resume looks quite good . we may wish to talk to him on the phone . however , now that david hoog has hired his own actuarial guys ( alex tartakowski and larry markus ) from ace , i am not sure if they require support on the actuarial side . with don black ( of global risk markets ) leaving enron , i think the effort to develop power products for the insurance markets is pretty much nonexistent , except for david hoog ' s product . the resume still looks interesting , though . vasant - - - - - original message - - - - - from : kaminski , vince sent : friday , april 13 , 2001 3 : 56 pm to : shanbhogue , vasant subject : [ no subject ] vasant , please , take a look at this eresume . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 09 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - cathy lira @ enron 03 / 26 / 2001 11 : 12 pm to : vkamins @ enron . com cc : subject : [ no subject ] - - - - - - - - - - - - - - - - - - - - - - forwarded by cathy lira / na / enron on 03 / 26 / 2001 04 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" imccracken "" on 02 / 24 / 2001 04 : 02 : 11 pm please respond to "" imccracken "" to : grad _ programs @ enron . com cc : subject : [ no subject ] dear sir / madam , i am a student in a master ' s programme in mathematical finance due to graduate in august . my intention upon graduation is to work in a quantitative capacity in the power markets and to this end , i am including my resume in the hope that i might be considered for any available position in your risk management or structured products group requiring such mathematical skills . i have addressed this email to your graduate programmes address but i am unsure whether or not my candidacy would fall under the umbrella covered by your associate programme . if this is not the case , any help in seeing that my resume finds the correct destination would be greatly appreciated . yours sincerely , ian mccracken * get free , secure online email at http : / / www . ziplip . com / * - iancv . doc >",0 +"Subject: re : followup from iris mack hi , thanks for taking time out of your busy schedules to meeet with me on the 28 th of december - especially during the holiday season . i enjoyed meeting some of the research group ' s internal clients . hope to be able to work with you in the future . regards , iris mack get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: re : ll visa - anshuman shrivastava vince : apparently neil mcgregor became upset when he received margaret daffin ' s email . he is saying , however , that anshuman will only be in houston for one month , and you had mentioned six months when we spoke earlier . it really doesn ' t make any difference since he will need to get an ll visa under either circumstance , but i thought you might want to see his email . molly - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 24 / 2001 10 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 01 / 24 / 2001 09 : 57 am to : molly magee / hou / ect @ ect cc : subject : re : ll visa - anshuman shrivastava molly : per our conversation today . please let me know the status so that i can proceed with the visa process . thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001 09 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - neil mcgregor @ enron _ development 01 / 24 / 2001 05 : 18 am to : margaret daffin / hou / ect @ ect cc : wade cline / enron _ development @ enron _ development subject : re : ll visa - anshuman shrivastava anshuman is not moving or immigrating to the us . we are allowing him to work for a lmonth assignment in the us with enron . please carry out the necessary approvals and visa ' s on this basis . neil mcgregor ceo dabhol power margaret daffin @ ect 01 / 23 / 2001 10 : 31 pm to : anshuman . srivastav @ enron . com cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra sengupta / enron _ development @ enron _ development , wade cline / enron _ development @ enron _ development , neil mcgregor / enron _ development @ enron _ development @ ect , harsimran subject : ll visa - anshuman shrivastava anshuman : i have been asked to contact you regarding your possible move to houston , texas . in order that i may begin the process of getting you an ll immigration visa , i will need you to complete the attached visa questionnaire and return it to me with copies of the following documents : a copy of all pages of your passport , even if blank copies of all previous us visas issued an updated resume , showing months and years copies of all diplomas and transcripts received if you have dependent family members coming to the states with you , copies of their passports please send to my attention , via fedex to : enron corp . 3 allen center , 3 ac 2026 a 333 clay street houston , tx 77002 please call me with any questions you may have at 713 - 345 - 5083 .",0 +"Subject: re : various market data charges to the research group for february 2001 julie : i talked to both maureen and tanya and neither one want this service and have not been using it . maureen told me that she told you a year ago that she did not want telerate ( when she was supporting gary hickerson ' s group on 30 ) . if that is the case , we probably need a refund . let me know if there is anything that can be done about this . the only person in our group that wants telerate is jason sokolov and i put in a request for that yesterday . please cancel everything else . thanks ! shirley from : julie pechersky / enron @ enronxgate on 04 / 09 / 2001 12 : 33 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : various market data charges to the research group for february 2001 hi shirley , regarding telerate : i can cancel the service for both maurenn and tanya , but another name commonly used for the telerate application is bridge or bridgestation so you may want to just ask the two of them once more to be sure that they do not use it . just let me know and i will cancel billing jason can get access to it by submitting an e - request for him for telerate . when you go into e - request and it is prompting you for what application to choose , type in the words market data and hit search . telerate will pop up as an option and within that choose the role basic energy . we will take care of it from there . i will also remove hector campos from reuters . was there anyone else being charged for reuters services that are not needed ? i will also remove clayton vernon . i do not see anything under the name brad amoine , is this the correct spelling of his name ? i will also find out where shalesh ' s charges should be moved to . thanks for updating us and let me know if there is anything else . julie - - - - - original message - - - - - from : jackson , clifford sent : wednesday , april 04 , 2001 1 : 44 pm to : crenshaw , shirley cc : pechersky , julie subject : re : various market data charges to the research group for february 2001 hi shirley . i ' ve copied this to julie pechersky , who maintains the market data database , and will be able to make the user changes you request . she ' ll also be able to tell you how / when telerate can be enabled for mr . sokolov . we get the billing data from her , so once it is correct there , it will be billed correctly . cliff jackson - - - - - original message - - - - - from : crenshaw , shirley sent : wednesday , april 04 , 2001 1 : 31 pm to : jackson , clifford cc : kaminski , vince subject : various market data charges to the research group for february 2001 clifford : in reviewing our february eis billing summary for co # 0413 , cc # 107043 , i have several questions . telerate : ( february charges : $ 3 , 032 , 35 ) i polled the group and only one person has asked for telerate and he is not shown being charged for it . that is jason sokolov . he would like to have access to telerate . if you could let me know how to get that for him . the largest percent of the telerate charges appear to be for maureen raymond , who says that she does not use telerate . could she be accessing some data that she does not know is telerate ? please let me know . if there are individual accounts for telerate the only one we need is for jason sokolov , unless maureen ' s charges are for something that she does not know is telerate . tanya tamarchenko does not need telerate and she has the second largest percentage of the charges . anyway , the only telerate subscription we need is for jason sokolov . reuters : ( february charges : $ 405 . 96 ) no one in research uses reuters . i believe most of the charges are for hector campos who used it when he was on the trading desk . when he rotated into the research group he did not need it any longer , but is still being billed for it . please remove from the research cost center . the following individuals are no longer with enron or no longer with research and their accounts should be removed from the research cost center . clayton vernon no longer with the research group remove his lim / lim / excel and lim core charges from the research cost center brad amoine no longer with enron remove his lim / lim / excel and lim core charges from the research cost center shalesh ganjoo no longer with the research group remove his lim and lim core charges from the research cost center i hope this is not too confusing ! please advise . thanks ! shirley crenshaw",0 +"Subject: gas prices vince - 1 . we can detect "" hoarding "" of pipeline capacity as an elevated basis against the actual inflow . 2 . we can detect "" market power "" by dissociating the seller from the buyer , distinguishing between the physical "" cost "" in gas to run the generators and the transmission cost in dollars , i . e . the basis . 3 . ( as you noted ) we can detect "" storage "" as the difference between inflow and consumption . it appears to me there are two time series needed for a straightforward model of gas prices : flow rates at interconnects ( from telemetry ) and spot - market prices . there is an elevated basis reflecting pipeline companies monopolizing capacity , as well as hoarding of capacity by contracts . the dynamics of gas prices reflect consumption demand changes due to changes in expectations for the weather , as well as their impact on two highly strategic behaviors : hoarding of pipeline capacity and storage of gas . we can "" calibrate "" the price elasticity of demands for consumption and storage , and the price elasticities of demand for transmission , as well as the extent of hoarding , from the two sets of numbers mentioned : flows and prices . what the basis trader needs to understand are the incentives , and disincentives , for storage and capacity - hoarding , in terms of the calibrated price - elasticities , and each of these are as - if exotic call options at the consumption hub . finally , flows are "" explained "" by the model , and can be imputed from prices if necessary , resulting in a purely stochastic model of the basis in terms of the weather . i believe the problem is quite tractable , and i would like to proceed with a model . clayton",0 +"Subject: entouch newsletter business highlights weather trading the weather desk closed a 3 - year precipitation collar with payouts linked to natural gas prices . the transaction hedges included asian options from the gas market , precipitation floors from the weather market , and precipitation insurance from the insurance market . eight companies were involved in the transaction including the following enron companies : egm , ena , enron re , and rmt . along with the hedges , the end result of the transaction is cheap 3 - year precipitation call options and precipitation dependent natural gas call options for the weather desk . houston pipe line company on thursday , january 11 , american electric power ( nyse : aep ) announced that they have executed a definitive agreement under which aep energy services gas holding co . , a wholly owned subsidiary of aep , will acquire the stock of houston pipe line co . from enron corp . included in this agreement are all of the pipeline assets of hpl , as well as a 30 - year operating lease for the bammel storage facility , the houston loop and the texas city loop . in the news "" enron is , in other words , the biggest , baddest b 2 b e - commerce company on the planet , and its experience belies the idea that innovation is impossible in large organizations . "" - - ecompany now , january / february 2001 . brown bag mark your lunch calendars now for the upcoming brown bag featuring gary taylor , manager in weather trading . he will present an overview of the weather risk management market . it  , s next thursday , january 18 , 11 : 30 am - 12 : 30 pm , in 5 c 2 . rsvp today to ext . 5 - 7352 . nuggets & notes "" what am i missing ? ! "" - mike bradley , vice president / equity trading - egm "" do something ! "" - david vitrella , manager / equity trading - egm "" we may not do the most enrononline trades , but we do the largest "" - larry gagliardi , director / oil products - egm  & we have completed an efficient and successful transition from energy outsourcing to steel . of course , as my dad used to say ,  + talk ' s cheap , takes money to buy whiskey .  , in 2001 , we ' ll let our p & l performance do the bulk of the talking .  8 - tim battaglia , vice president / steel origination - eim congratulations to william stuart , manager in currency trading and charla stuart , manager in community relations . they are the proud parents of aaron myles stuart , who was born january 9 and weighed 7 . 11 lbs . sean keenan , associate in eim , and wife , katherine , are the proud parents of william patrick , who was born january 1 and weighed 6 . 4 lbs . carlos ruiz , associate in eim , and wife , maria , are excited to announce the arrival of their new baby boy . cristobal ruiz was born on january 8 and weighed 7 lbs . welcome new hires ena - thomas barkley , rakesh bharati , delmar davis , andrew edison , brendan fitzsimmons , patricia goode , michelle huber , ken lewchuk , wykena lipscomb , albert meyers , stacie mouton , victor munoz , wichai narongwanich , christopher ordway , brent johnston , michael law , michelle wells , peter piorecki , eim  ) jill lafave legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: 1 candidate and 2 interns hi vince and molly . here attached is one candidate who is particularly interested in having his profile sent to vince . . . he is going to be traveling to ny from the uk soon for 2 wks . he specifically asked my partner at robertwalters in the uk to investigate enron through my new relationship with you guys . he would be howard haughton , attached below ( cv ) . the other 2 resumes are my students at the university of michigan . howard lin received a 4 . 0 / 4 . 0 for his last term and will be willing to do whatever it takes to intern at enron for june - aug . i have his picture included as well . the second is sung , they are friends . howy will be done expected in may 2001 and sung in may 2002 . they are my favorite interns and i expect they can be cultivated to the enron culture with no real cost to you ( a "" test drive before committal . i have agreed to represent them and shall take ownership , as they become graduate candidates upon their degree completion . i hope these attachment can represent my value and commitment to quality of talent to enron . thank you for your acceptance . best wishes for the weekend . jeff * get free , secure online email at http : / / www . ziplip . com / * - 00343938 alec . doc - sungvince . doc - howardagent 9498132241 . doc - howardlin . gif",0 +"Subject: re : eci id for stinson steve - could you please escalate per our conversation thank you paula - - - - - - - - - - - - - - - - - - - - - - forwarded by paula corey / enron communications on 01 / 21 / 2000 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner @ ect 01 / 21 / 2000 08 : 09 am to : timothy morita - mcvey / enron communications @ enron communications @ enron cc : paula corey / enron communications @ enron communications , jean mrha / enron communications @ enron communications subject : re : eci id for stinson timothy : i still have a problem . when i am on the eci network i cannot receive email , and , even worse , i cannot even send email . this is not an acceptable situation . i need to have a fully functional email account on the eci side as well as the ena side . don ' t tell me that its against policy because i know that ravi thuraisingham has already be set up this way for months . i don ' t care if mail from one network is forwarded to the other as i will have access in houston to both , but i can already see that i need to have functional accounts on both sides , or it will be a continual thorn in my side when travelling to portland , etc . . . again thanks for your help on getting this set up correctly , - - stinson gibner x 34748 from : timothy morita - mcvey @ enron communications on 01 / 19 / 2000 10 : 20 am pst to : stinson gibner / hou / ect @ ect @ enron cc : subject : re : eci id thanks stinson , that should give me what i need . i understand that you will have two notes id ' s with the eci mail forwarded to your "" stinson gibner / hou / ect @ ect @ enron "" address . i should be able to complete this today ( later today ) thanks , timothy morita - mcvey lotus notes administrator enron communications , inc . 503 . 886 . 0390 timothy _ morita - mcvey @ enron . net stinson gibner @ ect 01 / 19 / 00 09 : 07 am to : timothy morita - mcvey / enron communications @ enron communications cc : subject : eci id i must have written down your phone number incorrectly , it did not work . regarding my user id on the eci network , i would be set up in the same way as ravi thuraisingham with an id on both the ena and the eci networks . i am in the corp . research group but am spending about 80 % of my time in support of eci in the trading and origination areas . feel free to contact me if you need any further info . - - stinson houston x 34748",0 +"Subject: re : telephone interview with the research group fyi : praveen will be available on thursday , may 4 at 10 : 00 am houston time . call him at 301 / 422 - 0889 . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 28 / 2000 08 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - mellacheruvu venkata praveen on 04 / 27 / 2000 08 : 58 : 47 pm to : shirley . crenshaw @ enron . com cc : subject : re : telephone interview with the research group dear ms . crenshaw , the interviewers can call me at ( 301 ) 422 0889 . please do inform them accordingly . thank you for setting up the interview . regards , praveen mellacheruvu . on thu , 27 apr 2000 shirley . crenshaw @ enron . com wrote : > > praveen : > > i have scheduled the conference call for thursday , may 4 at 11 : 00 am ( est ) > 10 : 00 am ( central ) . it will be better if they can call you . please le me > know > what number you can be reached at . > > if this is not allright , please let me know . > > thanks and have a great day ! > > shirley crenshaw > >",0 +"Subject: corrected : new update on ppi model for inflation book dear all , i followed up on the suggestions at the conference call as follows : - 1 ) use less data unfortunately , kicking out only 1990 makes the overall equation a lot less robust , in fact dramatically so , and so eliminates the possibility of using less data . the model tested was the rpi ( month + 15 ) ppi pre - empts the moves in rpi by about 8 months . the magnitude of the oscillations is also reduced . this shows that if we had more detail in our rpi forward curve , then the ppi model would reflect those peaks and humps adequately . conclusion i therefore propose that we use the model that incorporates rpi , rpi [ t + 15 ] and deviations of brent crude from long - term average . the new model is plotted below in burgundy and can be compared to the old ppi which is depicted in blue . the new model achieves the two main objectives of the ppi curve : it is significantly more robust and stable than the existing one , and it is considerably less sensitive to the input coefficients , which results in us having more confidence in our monthly p it was found that deviations of dated brent crude from the long - term average of $ 18 . 80 was the best form of the variable to use ( for predictions the brent forward curve produced by the global products group is used ) . the three new equations developed were : - pllu ( t ) = a . rpi ( t ) + b . rpi ( t + n ) + c . ( datedbrentcrude - 18 . 8 ) + constant , where n is 14 , 15 or 16 [ reddish curves ] r - squared approx 0 . 49 f - stat approx 32 the chart below shows what our projected pllu curve would be given this equation , and also the three best relations from before which were based upon current and future rpi : pllu ( t ) = a . rpi ( t ) + b . rpi ( t + n ) + constant , where n is 14 , 15 or 16 [ greenish curves ] r - squared approx 0 . 47 f - stat approx 45 comparison of models as you can see , the two equations differ in the very short - term and very long - term ; the inclusion of deviations of brent crude leads to short - term predictions of 3 . 0 % to 3 . 2 % over the next six months . the greenish curves predict pllu in the range of 2 . 5 % to 2 . 8 % over the next six months . the curves are then very similar until 2009 , when the models including crude break - away to the upside , relative to the falling rpi curve . the model based purely on rpi hugs the rpi curve much more closely in the longer term . this is only important to the extent that we have large positions beyond 2009 ( which we don ' t ) . suggestion what could be useful now is a differently - specified model designed to forecast only the next 3 months , using auto - regressive or auto - regressive error terms . this model would be far more accurate in the near - term , and we could include this information onto the front of this long - term model . this may be useful , despite the fact that most of our exposure is in future time buckets . back - testing all the models give similar visual and statistical performance over the data sample used ( based mainly on 1990 s "" new paradigm "" economy ) . hopefully we can discuss these and other points later in the tele - conference ; your ideas on this would be appreciated . regards , anjam x 35383",0 +"Subject: re : executive program on credit risk modeling tanya , please , ask him to make the arrangements . vince tanya tamarchenko 05 / 25 / 2000 11 : 19 am to : vince j kaminski / hou / ect @ ect cc : subject : re : executive program on credit risk modeling yes , i think it is useful for vincent to attend the program . tanya . vince j kaminski 05 / 22 / 2000 09 : 50 am to : tanya tamarchenko / hou / ect @ ect cc : subject : executive program on credit risk modeling tanya , another thought . should vincent go as well ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 22 / 2000 09 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 05 / 22 / 2000 08 : 10 am to : tanya tamarchenko / hou / ect @ ect cc : subject : executive program on credit risk modeling fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 22 / 2000 08 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" kashiwamura , shelby "" on 05 / 18 / 2000 02 : 03 : 19 pm to : "" isero , alicia "" , "" kashiwamura , shelby "" cc : ( bcc : vince j kaminski / hou / ect ) subject : executive program on credit risk modeling subject : announcement : executive program on credit risk modeling credit risk modeling for financial institutions october 15 - 20 , 2000 at stanford university business school risk management specialists , stanford business school professors of finance darrell duffie and kenneth singleton will be repeating their successful executive program on credit risk pricing and risk management for financial institutions . the course is created for risk managers , research staff , and traders with responsibility for credit risk or credit - related products , including bond and loan portfolios , otc derivative portfolios , and credit derivatives . this program includes : * valuation models for defaultable bonds , otc derivatives , and credit derivatives , with empirical applications to corporate and sovereign markets * empirical and theoretical assessments of models for measuring credit risk , with correlation , for portfolios * the strengths and limitations of current practice in credit risk measurement * practical issues in implementing credit modeling and risk systems * estimation of default and transition probabilities , and the correlations among the default risks of publicly traded companies , from historical data application form : credit risk modeling for financial institutions stanford , october 15 - 20 , 2000 this form may be completed and returned by email , or may be printed and sent by fax to : stanford gsb executive education programs fax number : 650 723 3950 you may also apply and see more detailed information by visiting our web site at : www . gsb . stanford . edu / exed / crm applications will be acknowledged upon receipt . if you have not received an acknowledgement within two weeks , please contact us . please complete all sections . all information is kept strictly confidential . name : put an x beside one , please : male : female : citizenship : job title : company : your company ' s main activity : business mailing address : business phone ( all codes please ) : business fax : email address : home address : home phone : nickname for identification badge : emergency contact name : emergency contact phone : title of person to whom you report : your job responsibilities and experience related to this course : ( please provide a brief job summary here , or attach and send a biographical summary containing information relevant to your purpose and qualifications for the course . ) college or university education : please list , by degree : college or university dates degree granted _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ please note : all classes and discussions are conducted in english . in order to reserve a place in the course , the program fee of us $ 7 , 500 is due upon notification of acceptance . this fee covers the tuition , single room , meals , and all course materials ( including a proprietary manuscript on credit risk pricing and measurement ) . our refund policy is available upon request . please state the source from which you heard about this course : name and date : if you would like a hard copy brochure and application form , please contact : ( make sure to include your mailing address ) shelby m . kashiwamura program manager executive education stanford graduate school of business ( 650 ) 723 - 9356 phone ( 650 ) 723 - 3950 fax kashiwamura _ shelby @ gsb . stanford . edu",0 +"Subject: re : resume vince , paulo and i talked to mr . zhang on the phone . he is currently with kock equity trading and formly a quant supporting power trading . his power market experience could be valuable to us . i would recommend to bring him for an on - site interview . since we get more demanding power projects , alex needs some help . zimin vince j kaminski 03 / 14 / 2001 10 : 06 am to : zimin lu / hou / ect @ ect cc : subject : resume - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001 10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - marshall brown on 03 / 09 / 2001 07 : 46 : 22 am to : vince kaminski cc : subject : resume vince , how are you . this candidate would be interested in any positions in your group . regards , marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . if you have received this email in error please notify the system manager . this footnote also confirms that this email message has been swept by mimesweeper for the presence of computer viruses . - zhan _ ren . doc",0 +"Subject: re : installation of new programs i gave you local admin rights on your laptop yesterday . what you have to do is to log into the laptop using the local machine account . the id and the password is the same as your corp login now . the password on the local account will never change . if you have a minute today i will show you how . let me know a time . phillip randle desktop support specialist x 39665 - - - - - original message - - - - - from : kaminski , vince sent : tuesday , may 01 , 2001 5 : 17 pm to : randle , phillip c . cc : kaminski , vince subject : installation of new programs phillip , how can i install new programs on my laptop , without the administrator ' s privileges ? one example : when i travel i use aol to get access to my mail and to communicate with the office . windows 2000 does not allow me to install it . also , i have my private statistical software i often use when i work at night during business trips . i would like to load it as well . vince",0 +"Subject: re : telephone interview with the enron corp . research group since several of you will be out on the 6 th , we have moved the telephone interview for marshall yan to tuesday , the 5 th at 1 : 00 pm . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 29 / 2000 03 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jingming ' marshall ' yan "" on 11 / 29 / 2000 03 : 16 : 16 pm to : shirley . crenshaw @ enron . com cc : subject : re : telephone interview with the enron corp . research group ms . crenshaw , tuesday the 5 th is ok with me . i will talk to you then . marshall on wed , 29 nov 2000 shirley . crenshaw @ enron . com wrote : > > hi marshall : > > i have some unfortunate news . several of the interviewers will be > traveling > next week and they have had to schedule their return on wednesday the > 6 th . would you be able to do the telephone interview on tuesday , the > 5 th instead ? the same time 1 : 00 pm houston time . > > please let me know as soon as possible . > > sorry for the change ! > > regards , > > shirley crenshaw > > > > > > > > > "" jingming ' marshall ' yan "" on 11 / 28 / 2000 11 : 30 : 20 pm > > to : shirley . crenshaw @ enron . com > cc : > subject : re : telephone interview with the enron corp . research group > > > ms . crenshaw , > > thank you for the arrangement . i will talk to you then . > > marshall > > on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote : > > > > > marshall : > > > > thanks for responding so quickly . i have scheduled the following > > interview : > > > > wednesday , december 6 - 1 : 00 pm houston time . it will last approximately > > 1 hour . we will call you at ( 605 ) 497 - 4045 unless otherwise instructed . > > > > if you have any questions , please feel free to contact me at > 713 / 853 - 5290 . > > > > best regards , > > > > shirley crenshaw > > > > > > > > > > > > > > > > > > "" jingming ' marshall ' yan "" on 11 / 28 / 2000 12 : 59 : 55 pm > > > > to : shirley . crenshaw @ enron . com > > cc : vince . j . kaminski @ enron . com > > subject : re : telephone interview with the enron corp . research group > > > > > > ms . crenshaw , > > > > thank you very much for the message . i am very interested in the > > opportunity to talk to personnel from the research group at enron . > between > > the two days you suggest , i prefer wednesday 12 / 6 . considering the > > two - hour time difference between california and texas , 11 : 00 am pacific > > time ( 1 : 00 pm your time ) seems to be a good slot . however , i am open most > > of the day on 12 / 6 so if some other time slot is prefered on your end , > > please let me know . > > > > thanks again . i look forward to talking to you and your > > colleagues . > > > > jingming > > > > on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote : > > > > > good afternoon jingming : > > > > > > professor wolak forwarded your resume to the research group , and > > > they would like to conduct a telephone interview with you , sometime > next > > > week , at your convenience . the best days would be tuesday , 12 / 5 or > > > wednesday , 12 / 6 . > > > > > > please let me know which day and what time would be best for you and > > > they will call you . let me know the telephone number that you wish to > be > > > contacted at . > > > > > > the interviewers would be : > > > > > > vince kaminski managing director and head of research > > > vasant shanbhogue vice president , research > > > lance cunningham manager , research > > > alex huang manager , research > > > > > > look forward to hearing from you . > > > > > > best regards , > > > > > > shirley crenshaw > > > administrative coordinator > > > enron research group . > > > 713 - 853 - 5290 > > > > > > > > > > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > > jingming "" marshall "" yan jmyan @ leland . stanford . edu > > department of economics ( 650 ) 497 - 4045 ( h ) > > stanford university ( 650 ) 725 - 8914 ( o ) > > stanford , ca 94305 358 c , economics bldg > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > > if one seeks to act virtuously and attain it , then what is > > there to repine about ? - - confucius > > > > _ ? oo ? ? ooo ? ? t  xo - ? ? - -  ? ? > > > > > > > > > > > > > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > jingming "" marshall "" yan jmyan @ leland . stanford . edu > department of economics ( 650 ) 497 - 4045 ( h ) > stanford university ( 650 ) 725 - 8914 ( o ) > stanford , ca 94305 358 c , economics bldg > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > if one seeks to act virtuously and attain it , then what is > there to repine about ? - - confucius > > _ ? oo ? ? ooo ? ? t  xo - ? ? - -  ? ? > > > > > > > jingming "" marshall "" yan jmyan @ leland . stanford . edu department of economics ( 650 ) 497 - 4045 ( h ) stanford university ( 650 ) 725 - 8914 ( o ) stanford , ca 94305 358 c , economics bldg if one seeks to act virtuously and attain it , then what is there to repine about ? - - confucius _ ? oo ? ? ooo ? ? t  xo - ? ? - -  ? ?",0 +"Subject: re : carnegie interviews super friday vince , thank you very much but i ended up finding interviewers for all the time slots . paulo has volunteered to interview for 1 hour , thank you for suggesting his name . kristin vince j kaminski @ ect 01 / 17 / 2001 02 : 00 pm to : kristin gandy / na / enron @ enron cc : kevin kindall / corp / enron @ enron , alex huang / corp / enron @ enron , paulo issler / hou / ect @ ect , bob lee / na / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : carnegie interviews super friday kristin , i shall be tied up with the wharton group all day friday . i am forwarding the message to some members of the research group . i hope some of them will be available . vince p . s . to the research group . can you , please , help kristin ? enron north america corp . from : kristin gandy @ enron 01 / 16 / 2001 02 : 03 pm to : alyse herasimchuk / na / enron @ enron cc : vince j kaminski / hou / ect @ ect , ann korioth / enron communications @ enron communications , terry yamada / corp / enron @ enron , traci warner / enron communications @ enron communications , erik simpson / hou / ect @ ect , laura howenstine / enron communications @ enron communications , sarah wesner / enron @ enronxgate subject : re : carnegie interviews super friday okay group it is tuesday and we have heard from no volunteers . we only need 30 minutes of your time . is any one available on this friday to interview ? please help ! kristin from : alyse herasimchuk 01 / 12 / 2001 03 : 55 pm to : vince j kaminski / hou / ect @ ect , ann korioth / enron communications @ enron communications , terry yamada / corp / enron @ enron , traci warner / enron communications @ enron communications , erik simpson / hou / ect @ ect , laura howenstine / enron communications @ enron communications , sarah wesner / corp / enron cc : kristin gandy / na / enron @ enron subject : carnegie interviews super friday we have one last group of candidates coming in for final round interviews on friday , january 19 th . we need interviewers for half a day ( 9 : 00 am to 11 : 15 am ) . please let me know if you can be available for the entire morning or what times you could be available : 9 : 00 am - 9 : 30 9 : 35 am - 10 : 05 10 : 10 am - 10 : 40 10 : 45 am - 11 : 15 i appreciate any help you can offer in submitting names for those who may be able to interview if you can not . thanks ! alyse herasimchuk recruiting coordinator associate / analyst program 57339",0 +"Subject: resume - jeff andrews vince , attached is the evaluation form and resume for your interview w / jeff andrews this afternoon at 5 pm . i will bring him to your office at that time . jeff is interviewing for a research position within the coal group . please feel free to contact if there are any questions . thanks chris williams ena staffing x 39866",0 +"Subject: re : telephone interview hi darlene : vince kaminski and the research group would like to bring todd perry in for an interview . they have already had a "" telephone interview "" and feel like he may be a good fit somewhere in the research group . a copy of his resume is attached . he will be able to come on friday , june 2 . please contact him and arrange his travel . when this is completed , call me and we will set up the interview schedule . the interviewers would be : vince kaminski stinson gibner krishna krishnarao grant masson zimin lu vasant shanbhogue if you have any questions , please call me . thanks ! shirley todd a . perry - resume 2 . doc todd a . perry department of finance 541 . 346 . 1341 ( voice ) lundquist college of business 541 . 346 . 3341 ( fax ) 1208 university of oregon eugene , or 97403 - 1208 http : / / darkwing . uoregon . edu / ~ taperry",0 +"Subject: re : preface for book julie , no problem . it ' s your call but chris should also be mentioned as number one . vince "" julie "" on 08 / 03 / 2000 03 : 06 : 28 pm to : "" vince j kaminski "" cc : subject : re : preface for book vince , thanks for this . ? ? ? are you ok with us using your name for this ? ? ? julie - - - - - original message - - - - - from : vince j kaminski to : julie @ lacima . co . uk sent : wednesday , august 02 , 2000 2 : 11 pm subject : re : preface for book - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000 08 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 08 / 02 / 2000 08 : 09 am to : ? ? "" julie "" @ enron cc : ? ? vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : ? re : preface for book ? ( document link : vince j kaminski ) julie , the introduction looks fine . i have made some cosmetic changes ( typos and split infinitives that slipped by ) . you can safely ignore most of them . english is not even my second language . the corrections are in pink . vince ( see attached file : introo 802 . doc ) "" julie "" on 08 / 01 / 2000 07 : 43 : 10 am to : ? ? "" vincejkaminski "" cc : subject : ? preface for book vince , hope you are well . we spoke a while ago about who should write the preface for the book , and ? you kindly offered that you would provide this . is this still ? possible ? we realise that you are extremely busy , so chris and les went ? ahead and wrote something , which is below , and if you want to review , change or ? re - write the preface , that would be very appreciated . let me know ? what your thoughts are . thanks , julie ( we ' re getting close ) preface one of our main objectives in ? writing energy derivatives : pricing and risk management has been to bring ? together as many of the various approaches for the pricing and risk management ? energy derivatives as possible , to discuss in - depth the models , and to show how ? they relate to each other . in this ? way we hope to help the reader to analyse the different models , price a wide ? range of energy derivatives , or to build a risk management system which uses a ? consistent modelling framework . we ? believe that for practitioners this last point is very important and we continue ? to stress in our articles and presentations the dangers of having flawed risk ? management and giving arbitrage opportunities to your competitors by using ? ad - hoc and inconsistent models for different instruments and markets ( see also others who propose consistent ? models ? ) . however , it is not ? our wish to concentrate on one particular model or models , at the exclusion of ? the others because we believe that the choice should rest with the user ? ( although it will probably be clear from our discussions the model ( s ) we ? prefer ) . we therefore try and give ? as clear account as possible of the advantage and disadvantages of all the ? models so that the reader can make an informed choice as to the models which ? best suit their needs . in order to meet our objectives the ? book is divided into 11 chapters . ? in chapter 1 we give an overview of the fundamental principals needed to ? model and price energy derivatives which will underpin the remainder of the ? book . in addition to introducing ? the techniques that underlie the black - scholes modelling framework we outline ? the numerical techniques of trinomial trees and monte carlo simulation for ? derivative pricing , which are used throughout the book . in chapter 2 we discuss the ? analysis of spot energy prices . as ? well as analysing empirical price movements we propose a number of processes ? that can be used to model the prices . ? we look at the well - know process of geometric brownian motion as well as ? mean reversion , stochastic volatility and jump processes , discussing each and ? showing how they can be simulated and their parameters estimated . chapter 3 , written by vince ? kaminski , grant masson and ronnie chahal of enron corp . , discusses volatility ? estimation in energy commodity markets . ? this chapter builds on the previous one . it examines in detail the methods , ? merits and pitfalls of the volatility estimation process assuming different ? pricing models introduced in chapter 2 . ? examples from crude , gas , and electricity markets are used to illustrate ? the technical and interpretative aspects of calculating volatility . chapter 4 examines forward curves ? in the energy markets . although ? such curves are well understood and straight - forward in the most financial ? markets , the difficulty of storage in many energy markets leads to less well ? defined curves . in this chapter we ? describe forward price bounds for energy prices and the building of forward ? curves from market instruments . we ? outline the three main approaches which have been applied to building forward ? curves in energy markets ; the arbitrage approach , the econometric approach , and ? deriving analytical values by modelling underlying stochastic factors . chapter 5 presents an overview of ? structures found in the energy derivative markets and discusses their uses . examples of products analysed in this chapter include a variety of swaps , caps , floors and collars , as well as energy swaptions , compound options , asian options , barrier options , lookback options , and ladder options . chapter 6 investigates single and ? multi - factor models of the energy spot price and the pricing of some standard ? energy derivatives . closed form ? solutions for forward prices , forward volatilities , and european option prices ? both on the spot and forwards are derived and presented for all the models in ? this chapter including a three factor , stochastic convenience yield and interest rate model . chapter 7 shows how the prices of ? path dependent and american style options can be evaluated for the models in ? chapter 6 . simulation schemes are ? developed for the evaluation of european style options and applied to a variety ? of path dependent options . in order ? to price options which incorporate early exercise opportunities , a trinomial ? tree scheme is developed . this tree ? is built to be consistent with the observed forward curve and can be used to ? price exotic as well as standard european and american style options . chapter 8 describes a methodology ? for valuing energy options based on modelling the whole of the market observed ? forward curve . the approach results ? in a multi - factor model that is able to realistically capture the evolution of a wide range of energy forward curves . ? the user defined volatility structures can be of an extremely general ? form . closed - form solutions are ? developed for pricing standard european options , and efficient monte carlo ? schemes are presented for pricing exotic options . the chapter closes with a discussion of the valuation of american style options . chapter 9 focuses on the risk ? management of energy derivative positions . ? in this chapter we discuss the management of price risk for institutions ? that trade options or other derivatives and who are then faced with the problem ? of managing the risk through time . ? we begin with delta hedging a portfolio containing derivatives and look ? at extensions to gamma hedging ? illustrating the techniques using both spot and ? forward curve models . the general ? model presented in chapter 8 is ideally suited to multi - factor hedging of a ? portfolio of energy derivatives and this is also discussed . chapter 10 examines the key risk ? management concept of value at risk ( var ) applied to portfolios containing ? energy derivative products . after ? discussing the concept of the measure , we look at how the key inputs ? ( volatilities , covariances , correlations , etc ) can be estimated . we then compare the fours major ? methodologies for computing var ; delta , delta - gamma , historical simulation and ? monte - carlo simulation , applying each to the same portfolio of energy ? options . in this chapter we also ? look at testing the var estimates for various underlying energy market ? variables . finally , in chapter 11 we review ? modelling approaches to credit risk . ? we look in detail at two quite different approaches , creditmetrics ( j . p . morgan ( 1997 ) ) and ? creditrisk + ( credit suisse financial ? products ( 1997 ) ) for which detailed information is publicly available . together these provide an extensive set ? of tools with which to measure credit risk . we present numerical examples of applying these techniques to energy derivatives . before ? we begin we stress that the models and methods we present in this book are tools ? which should be used with the benefit of an understanding of how both the ? tool ? ? and the market works . the ? techniques we describe are certainly not ? magic wands ? which can be waved at ? data and risk management problems to provide instant and perfect solutions . to quote from the riskmetrics technical document ? ? no amount of sophisticated analytics will replace experience and professional judgement in managing risk . ? . ? however , the right tools , correctly used make the job a lot ? easier !",0 +"Subject: my visit dear vince , thanks for your phone call this morning . i will ring mike tonight , i . e . houston tomorrow morning . . . . . had a look at the temps and anomalies over ca , looks warm for this time of the year ( dec . ) , there has been an increase in the night time t _ min , and t _ max remains at an above average level . i will start setting up my models over conus this week . regards , christian",0 +"Subject: re : a personal favor thanks very much . i am attaching his resume for your review . - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , may 07 , 2001 12 : 08 pm to : anurag . saksena @ gmacrfc . com cc : vince . j . kaminski @ enron . com subject : re : a personal favor anurag , i shall talk about vikas to our it people . can you send me his resume ? vince "" saksena , anurag "" on 05 / 07 / 2001 10 : 06 : 54 am to : "" ' vkamins @ ect . enron . com ' "" cc : subject : a personal favor vince , i have left a voice mail to you and will wait to talk to you personally . my brother vikas , who is now in london , is trying to make a switch from consulting world to working for a specific firm . over last few months , i have heard of great deal about the success of enron on line business which fits well in the area of his expertise . i am wondering if you know of some one in london who he can speak to regarding career opportunities . since i spoke to you last , a number of things have changed . recently , my manadate was broaden to include leading a charge for developing a risk management function for both the domestic and international businesses for gmac . needless to say , this is exciting albeit making the life a little more hectic than usual . talk to you later . anurag 952 - 857 - 6133 - resl . doc",0 +"Subject: mark , please , check the following web - site . we can commisison a study from this guy . vince ",0 +"Subject: from the enron india newsdesk - may 4 th newsclips vince / stinson , some news articles on india . it appears that dpc will attend the may 11 meeting , but will not be presenting any proposals . they will be taking representatives from the lender side , ge and bechtel , as well as from the lng supplier side . also , a name has been thrown up as the likely person to represent the center . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 05 / 04 / 2001 02 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - nikita varma 05 / 04 / 2001 07 : 47 am to : nikita varma / enron _ development @ enron _ development cc : ( bcc : sandeep kohli / enron _ development ) subject : from the enron india newsdesk - may 4 th newsclips the economic times friday , may 04 , 2001 , http : / / www . economictimes . com / today / 04 infrol . htm godbole panel suggestions unacceptable : enron , girish kuber - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the above article also appeared in the following newspaper : business standard friday , may 04 , 2001 , godbole terms of reference not acceptable : dpc the hindustan times power purchase talks between govt , enron falls through - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the times of india friday , may 04 , 2001 , http : / / www . timesofindia . com / today / 04 busi 2 . htm enron ready to take part in ppa talk , nitin yeshwantrao the financial express friday , may 04 , 2001 , http : / / www . financialexpress . com / fe 20010504 / ecol 0 . html dpc team to appear before godbole panel on may 11 the above article also appeared the following newspapers : mid day enron , state govt to meet next week the hindu businessline friday , may 04 , 2001 , http : / / www . hindubusinessline . com / stories / 140456 uy . htm enron wants renegotiation meet rescheduled - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - afternoon friday , 4 may , 2001 , http : / / www . afternoondc . com / houston team to meet godbole - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard friday , may 04 , 2001 , salve may represent centre on enron talks panel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the times of india friday , may 04 , 2001 , http : / / www . timesofindia . com / today / 04 busi 2 . htm salve may represent centre on enron talk panel - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pioneer friday , may 04 , 2001 , enron talks : salve may be govt man - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - mid day friday 4 may 2001 , enron ' s rates too high : mseb - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , friday , may 04 , 2001 godbole panel suggestions unacceptable : enron , girish kuber hopes that the godbole committee would be able to renegotiate the dabhol power project promoted by the us energy major enron may turn out to be misplaced . the us energy major says that the godbole committee  , s suggestions were unacceptable . in response to a query from et , the company said in a statement that the  & published terms of the godbole report do not represent an acceptable basis for further discussions .  8 the statement said that it would be meeting the committee next week as  & a matter of courtesy  8 .  & since the purpose of our meeting is to hear out the committee and understand their thoughts , we will not present any proposals ,  8 the statement said . according to highly - placed sources in the government , the company has informed the madhav godbole panel that it would be meeting on may 11 . earlier reports had indicated that the discussions with the panel would take place on may 5 . according to sources , enron would be meeting the panel with representatives of its lenders and shareholders . the godbole committee , that studied the current power purchase agreement , has called for cancellation of the present tariff structure , renegotiation of the lng and shipping contract , removal of dollar denomination as far as fixed charges of the tariff is concerned , debt restructuring and the formation of a committee to renegotiate the power purchase agreement . these suggestions , it seems , may not be acceptable to enron . the maharashtra government accepted the report and asked the godbole committee to renegotiate . the committee has been given a month  , s time to renegotiate on behalf of the state government with dpc for a new ppa . the committee has opined that since the lng facility of 5 mmpta is far in excess of what is required by the plant ( only 2 . 1 mmpta of which 1 . 8 mmpta is on take or pay ) , it should be separated into a distinct facility whose capital costs should not be reflected in the fuel charge , not as take or pay . it should instead be only in proportion to the fuel regassified for the power generation . using the entire allocated gas requires an unusually high plf . instead , the surplus gas can be sold to other players like petronet or enron  , s own metgas .  & it is important to distribute the cost over the entire capacity and not just the amount sold to the power plant ,  8 says the committee . similarly , it has been suggested that enron could lease out the harbour facilities as a common facility to other lng importers . on the lng contract negotiated by enron for long - term supplies , it has said that since the lng market has witnessed great changes , particularly as far as prices are concerned , the power company should take advantage of spot buys and renegotiate the contract accordingly . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the times of india , friday , may 04 , 2001 enron ready to take part in ppa talk , nitin yeshwantrao the enron management has finally agreed to participate in a ' discussion ' with the madhav godbole - led re - negotiation committee set - up to facilitate the restructuring of the power purchase agreement ( ppa ) signed between the us power major and the state government . officials of dabhol power company ( dpc ) , a subsidiary of enron , alongwith their team of shareholders and lenders will arrive here on may 11 for talks with the nine - member godbole panel . though the dpc spokesperson was reluctant to give a confirmation , a key mantralaya official told the times of india that the team had expressed willingness for talks with the experts committee in a bid to end the imbroglio . enron ' s response is viewed as a welcome development to amicably resolve the controversy which had been raging for the last few weeks , with the board of directors of enron authorising its india md k wade cline to serve a termination notice to mseb . the state government , on its part , too adopted a confrontational position by slapping a rs 401 crore rebate charge on dpc for defaulting on power supply . however , the sudden change of heart by the enron management is largely attributed to the stand taken by its local lenders led by industrial development bank of india ( idbi ) which had recently opposed the move to pull out of the project . this was in contradiction to the stand taken by the foreign lenders of the dpc who were in favour of slamming the brakes on disbursement of funds to dpc . the congress - led democratic front government had publicly declared that it would impress upon the enron management to renegotiate the ppa as scrapping the project would not be in the interest of both the parties . last week , the state government constituted a nine - member panel of experts under former bureaucrat madhav godbole . godbole had written to the dpc management inviting it for talks to re - negotiate the ppa on may 5 . for the delayed response from enron , the meeting has been rescheduled to may 11 . the issues which would be debated at the meeting include the separation of the lng facility from the power plant , renegotiating lng supply and shipping agreements , redefining the dpc tariff and to convert it into a two - part tariff . the godbole panel will bargain hard for removal of dollar denomination in the fixed charge component and to allow the maharashtra government to sell power to third parties . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the financial express , friday , may 04 , 2001 , dpc team to appear before godbole panel on may 11 a battery of dabhol power company ( dpc ) officials and foreign lenders will appear before the madhav godbole renegotiations committee on may 11  & as a matter of courtesy , and not for presenting any proposals .  8 simultaneously , the dpc has made it clear that the published terms of the godbole report do not represent an acceptable basis for further discussions . the dpc team is likely to include officials from the enron corp , bechtel , general electric , its liquefied natural gas suppliers , oman lng and abu dhabi lng and a trustee bank , abn amro for the proposed may 11 meeting , it is reliably learnt . mantralaya sources said that the dpc had earlier expressed its inability to appear before the godbole committee on may 5 , fixed earlier , on account of the non - arrival of its team from houston and other parts of the world . however , the company has ultimately decided to meet the godbole committee on may 11 . dpc spokesman jimmy mogal said :  & we confirm that dpc has been invited to meet the recently formed negotiating committee . as a matter of courtesy , we have agreed to meet them next week . since the purpose of our meeting is to hear out the committee and understand their thoughts , we will not present any proposals .  8  & while we have constantly maintained that we are open to a dialogue towards resolving issues , this meeting in no manner be construed as an open offer from dpc to renegotiate the terms of the contract . furthermore , the published terms report do not represent an acceptable basis for further discussions ,  8 he added . sources said enron corp chairman kenneth lay is likely to meet former chief minister sharad pawar to find an acceptable solution for the ongoing crisis before the may 11 meet . mr lay told the foreign news agency on wednesday that the enron corp has no immediate plans to sell its stake in the troubled $ 2 . 9 - billion dabhol power project in western india . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - afternoon , may 4 , 2001 houston team to meet godbole the enron - promoted dabhol power company ( dpc ) yesterday said it had agreed to meet the godbole committee "" as a matter of courtesy "" and this should "" in no manner be construed as an open offer from dpc to renegotiate the terms of the contract . "" in a statement issued last night , the us energy major made it clear that the purpose of the meeting with the nine member renegotiating committee was "" to hear out the panel and understand their thoughts , and not present any proposals . "" furthermore , the published terms of the godbole report did not represent any acceptable basis for towards resolving issues . earlier , state government sources said that a team of senior officials from enron headquarters in houston is slated to attend the first godbole renegotiations committee meeting , now to be held on may 11 . the panel deferred its meeting from may 5 as in a formal communication , dpc requested the state government for a suitable date other than the stipulated one , they said . however , the multinational is yet to send a list of its nominees , who are due to arrive next week , they said . meanwhile , the centre is likely to appoint solicitor general harish salve as its representative on the high - power committee to renegotiate the power purchase agreement ( ppa ) signed between dpc and maharashtra state electricity board . other members of the godbole committee are hdfc chairman deepak parekh , teri director r . k . pachauri , former union energy secretary e . a . s . sarma , kirit parikh of indira gandhi institute of developmental research , maharashtra energy secretary v . m . lal , state finance secretary s . k . srivastav and mseb chairman vinay bansal . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , friday , may 04 , 2001 salve may represent centre on enron talks panel solicitor general harish salve is likely to be named the centre  , s representative on the high - power committee appointed by the maharashtra government to renegotiate the power purchase agreement ( ppa ) with the us energy giant enron - promoted dabhol power company ( dpc ) . according to highly placed government sources , salve  , s name has been cleared by both ministries of finance and power . the maharashtra government has appointed a negotiating committee headed by former bureaucrat madhav godbole to renegotiate the estranged ppa signed by the maharashtra state electricity board ( mseb ) and dpc . enron had made opening of talks with maharashtra conditional on the presence of a centre  , s representative on the negotiating committee . salve would meet secretaries in the ministries of finance , power and law to firm up the centre  , s stand on the crisis arising out of payment defaults by mseb , sources said adding that petroleum secretary is also likely to be included in the panel . sources said enron appeared to be keen on solving the present impasse through negotiations judging from corporation chairman kenneth lay  , s statement yesterday in houston that the company had no plans to sell its stake in the $ 2 . 9 billion dabhol project . the government is likely to make a formal announcement of salve  , s appointment on the negotiating committee by the weekend , sources said . the negotiating committee would suggest solutions to bring down the exorbitant power tariffs , separating of the liquefied natural gas ( lng ) facility , restructuring of dpc and allowing sale of excess power through central utilities , mainly the national thermal power corporation ( ntpc ) , sources said . the dpc board had late last month authorised the local manager in india to issue termination notice to mseb following a bitter payment controversy . dpc has already slapped one conciliation notice on the centre and three arbitration notices on the state government over non - payment of dues . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the times of india , friday , may 04 , 2001 salve may represent centre on enron talk panel solicitor general harish salve is likely to be named the centre ' s representative on the high - power committee appointed by the maharashtra government to renegotiate the power purchase agreement ( ppa ) with us energy giant enron - promoted dabhol power company ( dpc ) . according to highly placed government sources , salve ' s name had been cleared by both ministries of finance and power . the maharashtra government has appointed a negotiating committee headed by former bureaucrat madhav godbole to renegotiate the estranged ppa signed by maharashtra state electricity board ( mseb ) and dpc . enron had made opening of talks with maharashtra conditional on the presence of centre ' s representative on the negotiating committee . salve would meet secretaries in the ministries of finance , power and law to firm up centre ' s stand on the crisis arising out of payment defaults by mseb , sources said , adding petroleum secretary is also likely to be included in the panel . sources said that enron appeared to be keen on solving the present impasse through negotiations judging from corporation chairman kenneth lay ' s statement on wednesday in houston that the company had no plans to sell its stake in the $ 2 . 9 billion dabhol project . ( pti ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the pioneer , friday , may 04 , 2001 , enron talks : salve may be govt man solicitor general harish salve is likely to be named as centre ' s representative on the high - power committee appointed by the maharashtra government to renegotiate the power purchase agreement ( ppa ) with us energy major enron - promoted dabhol power company . according to sources , mr salve ' s name has been cleared by the ministries of finance and power . the maharashtra government recently appointed a committee headed by former bureaucrat madhav godbole to renegotiate the ppa signed by the maharashtra state electricity board ( mseb ) and dpc . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - mid day , friday 4 may 2001 enron ' s rates too high : mseb the maharashtra state electricity board ( mseb ) is planning to convey to the dabhol power company ( dpc ) , a subisidiary of us energy giant enron , its inability to pay increased fixed charges at the rate of rs 500 crore a month from next year . mseb officials said that dpc would be informed about this during re - negotiation of the power purchase agreement ( ppa ) . as per ppa , the increased rate will come into effect from january , 2002 following completion of dpc ' s 1 , 444 mw second phase of the project in october this year . the ppa also says that the fixed rate will have to be paid to the company irrespective of the consumption of electricity . at present mseb is paying fixed chages of rs 95 crore a month to dpc for its first phase of the project , generating 740 mw power . ' ' we have been raising this issue with dpc for last couple of months , highlighting that this ( fixed charges from next year ) is not viable for us . even state chief minister vilasrao deshmukh raised the issue in new delhi at a meeting recently ' ' , the officials said . the board will continue to raise this issue during the re - negotiation process with dpc . however , dpc officals are keeping mum over the issue , adopting a ' wait and watch ' policy , they added . under the second phase of the project , 722 mw power generating capacity will be achieved by june and remaining 722 mw by october this year , the officials said .",0 +"Subject: re : telephone interview with the enron research group hi nina : we would be glad to see you tomorrow . since this is a preliminary interview to see if there is a fit and an interest , we will schedule an hour and probably the interviewers will double up their time . i have scheduled the following , if the times do not work for you , please let me know . 9 : 00 am vince kaminski and stinson gibner 9 : 30 am tanya tamarchenko and zimin lu when you come into the enron bldg , go to the security desk and ask for me , they will call me and i will meet you in the lobby of the 19 th floor . thanks and have a safe trip . regards , shirley crenshaw nina knirel on 11 / 29 / 2000 09 : 52 : 02 am to : shirley . crenshaw @ enron . com cc : subject : re : telephone interview with the enron research group dear shirley crenshaw , thank you very much for your interest . i will be in houston tomorrow morning and i thought that it could be more convenient if we can meet in person . if you prefer the phone interview , let me know what number i should call and we can have it tomorrow . thanks again , nina knirel - - - shirley . crenshaw @ enron . com wrote : > good morning ms . knirel : > > vince kaminski and several members of the research > group would like > to conduct a telephone interview with you sometime > this week at your > convenience . please let me know the times that you > are available and > they will contact you . > > the telephone interviews usually last approximately > 1 hour and will be > conducted via a speaker phone . > > the interviewers will be : > > vince kaminski managing director and head of > research > stinson gibner vice president , research > tanya tamarchenko director , research > zimin lu director , research > > look forward to hearing from you . > > best regards , > > > shirley crenshaw > administrative coordinator > enron research group > do you yahoo ! ? yahoo ! shopping - thousands of stores . millions of products . http : / / shopping . yahoo . com /",0 +"Subject: phone call today vince , there are a few matters i ' d like to discuss with you : clarification on who tony harrison reports to ( i had understood it would be the houston crude oil weather forecast team but i am not now sure ) to let you know that joe wants to recruit a strongly mathematical macroeconomist reporting to steve , and therefore that maureen will be returning to houston later this month to talk about stinson coming over for a visit regards , tani",0 +"Subject: re : var and credit meeting on wednesday , april 11 at 11 : 30 am everybody , this week our regular meeting will be devoted primarily to 2 subjects : 1 . simulating power prices in var ; 2 . capturing correlations across commodities as well as across term structure of forward prices . research will present some suggestions based on data analysis . detailed agenda is enclosed . please , let shirley crenshaw know if you are not planning to attend . tanya .",0 +"Subject: seminar mugs vince : our pr staff has put together a great design for the finance seminar mugs . we need to get a clean copy of the enron logo , if possible . the design is in adobe pagemaker if your people can find a logo that can be pulled into that format . they can send it directly to me and i will make sure it gets to the right place . thanks so much . bbo",0 +"Subject: dabhol power company caps vince we have completed the valuation of the above interest rate caps as requested . i have faxed a copy of the attached files to your attention at ( 713 ) 646 2503 . please let us know if we can help again . regards , leslie abreo andrew kalotay associates , inc . 61 broadway , ste 3025 new york ny 10006 phone : ( 212 ) 482 0900 fax : ( 212 ) 482 0529 email : leslie . abreo @ kalotay . com visit aka ' s website at http : / / www . kalotay . com - cap valuation _ 0900 . doc - dabhol power co caps . xls",0 +"Subject: payroll elena chilkina was not paid for the following days , july 3 and 4 . please any questions contact shirley crenshaw or kevin moore . if more information is needed feel free to call x 34710 . thanks kevin moore",0 +"Subject: eprm article hi vince , ? i ' m sorry you weren ' t around in sydney this week . you missed a very good book launch party that john martin organised here for us . paul made a short speech in which he relayed some great comments which he said came from ? you - thanks very much ! ? please find attached the next eprm article . its not really tided up fully from our end yet , but i wanted to send it off before the weekend in case you got chance to look at it . because of the easter break robin is after it by thursday of next week . ? best regards . ? chris . ? - eprm _ 10 _ fwd _ curve _ simulation . doc",0 +"Subject: texas a & m at galveston dr . bill mcmullen called you this morning and said that you had called the school last week asking for courses that they scheduled for quantitive analysis . they gave your name to dr . mcmullen and he would like you to email him exactly what you are looking for . his email address is : mcmullew @ tamug . tamu . edu thanks ! shirley",0 +"Subject: informs - maui hi steve : good to hear from you and hope you are liking your new role at u . of maryland . i would like to come but i am not sure if i will be able to make it to this conference . i will forward your message to my colleagues and ask them to contact you if they are interested . thanks , krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 12 / 12 / 2000 12 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - steve gabriel on 12 / 11 / 2000 10 : 52 : 21 am to : pkrishn @ ect . enron . com cc : subject : informs - maui krishna : how are you doing ? i wanted to let you know my new address , i ' m now at the university of maryland . also , in my role as energy cluster chair for the maui , hawaii informs conference ( june 17 - 20 , 2001 ) , i am looking for either session chairs or speakers . perhaps you may know of some interested individuals ? i am also running a session on optimization and equilibrium modeling in energy , please send interested speakers ( or possible session chairs to me ) . thanks . - steve gabriel steven a . gabriel , ph . d . assistant professor , project management program http : / / www . cee . umd . edu / prog / projmgt . html director , optimization & equilibrium studies , center for technology and systems management http : / / ctsm . umd . edu / contact information : department of civil and environmental engineering 1143 glenn l . martin hall university of maryland college park , maryland 20742 - 3021 sgabriel @ eng . umd . edu tel . ( 301 ) 405 - 3242 fax ( 301 ) 405 - 2585 ",0 +"Subject: background information tom , can you send me additional copies of the information about the webi program ? i want to distribute it internally . vince",0 +"Subject: re : software license karla , august is a vacation month in france . i would not count on a response any time soon . vince from : karla feldman on 08 / 08 / 2000 09 : 34 am to : geman @ dauphine . fr cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : software license ms . geman , i am just following up to see if you had received my previous message forwarded below and whether you have a response so that we can move forward with this contract ? thank you , karla feldman - - - - - forwarded by karla feldman / hou / ect on 08 / 08 / 2000 09 : 23 am - - - - - karla feldman 07 / 28 / 2000 01 : 41 pm to : geman @ dauphine . fr cc : subject : software license dear ms . geman , i met with vince kaminski yesterday regarding picking back up with the license agreement we were working on back in march . he relayed some additional requirements which need to be added to the agreement , which include the following : 1 . the price agreed upon is $ 90 , 000 . 2 . d - g will provide system support . 3 . no later than 12 months of execution of the agreement , d - g will provide the source code to enron . in the meantime , the source code is to be in escrow . additionally , the source code would be released sooner than the 12 months if any of the following conditions occur : ( i ) d - g goes out of business ; ( ii ) d - g is unable to provide effective technical support ; or ( iii ) if d - g agrees to release it sooner . before i have our attorney add these things to the agreement , we need to discuss the escrow situation . vince mentioned that you had suggested that your attorney keep the software in escrow . is your attorney a u . s . attorney ? it seems like i may have recalled that way back in march you might have said you had a friend or relative that was an attorney . is that the same person ? does this attorney work for a large firm , small firm , or solo practitioner ? basically , if you could just provides some additional information about your attorney , i would appreciate it . we normally would use an escrow company to put the software in escrow . we have dealt with a company here in the u . s . called dsi technology . i will check into that pending your answer regarding your attorney . once we decide what we want to do regarding placing the software in escrow , we will red - line the agreement to reflect such changes and e - mail it back to you for your review . i look forward to hearing from you . karla feldman enron corp . contract administration ( 713 ) 646 - 7554",0 +"Subject: hvince , edge effectiveness testing for fas 133 vince , as we discussed , subject to minor changes the attached paper will appear in the j of applied corporate planning . i ' d be most interested in your comments . by the way , if you like the yield curve generation process described in the paper , we ' d be happy to perform a simulation , so that you can compare the results based on the to the hjm procees . i look forward to getting together with you when you come to ny to attend the garp conference , around february 13 . just give me a brief warning . regards , andy andrew kalotay associates , inc . ( 212 ) 482 - 0900 andy @ kalotay . com visit our web - site http : / / www . kalotay . com - fasl 33 article . doc",0 +"Subject: re : jinbaek kim molly , we can pay for the plane ticket . we have to make sure that we shall extend the same treatment to other summer interns to avoid bad feelings . vince from : molly magee / enron @ enronxgate on 04 / 25 / 2001 11 : 47 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : jinbaek kim we received some correspondence this morning from jinbaek in which he says he plans to start on june 4 , 2001 . since we are trying to offer a package comparable to that of an associate in the program , i assume we will also pay for his plane ticket here ? ? ? just wanted to check before i contacted him . . . . , so i ' ll wait to hear from you . thanks , molly x 34804",0 +"Subject: re : impending visit vince : would friday morning july 7 at 9 : 00 am work for you ? give me an email shout if so . thanks . dale nesbitt - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : june 28 , 2000 2 : 19 pm to : dale . nesbitt @ marketpointinc . com cc : vince . j . kaminski @ enron . com subject : re : impending visit dale , sorry for a delay in responding to your message . i shall talk to the head of our b 2 b unit on friday this week and shall remind him about your visit . i hope he can make a decision at this time whether he is interested in pursuing this opportunity vince "" dale nesbitt "" on 06 / 27 / 2000 11 : 26 : 05 pm to : "" vincent kaminski "" , "" vince . j . kaminski "" cc : subject : impending visit vince : i sent you an email a couple of days ago to inquire if we might get together at your offices on july 5 or july 7 in houston to follow up our earlier discussions . i notice i have two email addresses for you , so i am sending this to both . i am not sure the earlier transmission got to you . would you be available the afternoon of the 5 th or the morning of the 7 th to continue our earlier discussions ? give me an email or phone shout at 650 . 218 . 3069 . thanks dale nesbitt",0 +"Subject: re : report research i have responded back to barbara and am sending her some written material . thank you . vince j kaminski 10 / 12 / 2000 10 : 50 am to : mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect cc : mark tawney / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : report research joe , mike , please check with pr first if we want too talk to her and run it by mark . i think it is in our interest to be quotes extensively in the press . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000 10 : 53 am - - - - - - - - - - - - - - - - - - - - - - - - - - - energywriter @ aol . com on 10 / 11 / 2000 10 : 54 : 39 am please respond to energywriter @ aol . com to : energywriter @ aol . com cc : subject : report research i am writing a management report on weather risk management . the story will discuss different weather risk management tools used by power marketers in the energy industry . it also looks at weather prediction and analysis services available to energy traders . i am looking for a list and description of the weather risk management products , and how each can benefit an energy trader . i would also like to know what traders ' reactions to significant weather are . and where can i find a list of popular weather instruments with descriptions ? i appreciate any help you can give me . i would like to set up a chat with you this week if you have the time , or simply email me your input . thanks in advance ! barbara drazga independent journalist po box 472401 aurora , co 80047 303 - 369 - 3533 tel . 303 - 369 - 3510 fax",0 +"Subject: renshi zhang ' s resume fyi . please cancel the interview schedule for renshi zhang . hr just notified me that he has accepted another position . it was scheduled for tomorrow . i have removed it from the calendars that i have access to . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 23 / 2001 10 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 04 / 19 / 2001 04 : 08 pm to : shirley crenshaw / hou / ect @ ect , molly magee / enron @ enronxgate cc : vince j kaminski / hou / ect @ ect subject : renshi zhang ' s resume shirley and molly , vince is interested to set up an interview for renshi zhang . any day except thursday next week is good . interviewers : vince , stinson , vasant , tanya , alex , bob , krishna and myself . contact number for mr . zhang is 713 - 544 - 5989 . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 19 / 2001 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 04 / 05 / 2001 09 : 49 am - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 05 / 2001 09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 14 / 2001 10 : 06 am to : zimin lu / hou / ect @ ect cc : subject : resume - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001 10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - marshall brown on 03 / 09 / 2001 07 : 46 : 22 am to : vince kaminski cc : subject : resume vince , how are you . this candidate would be interested in any positions in your group . regards , marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . if you have received this email in error please notify the system manager . this footnote also confirms that this email message has been swept by mimesweeper for the presence of computer viruses . - zhan _ ren . doc",0 +"Subject: vince / stinson , please find the two attachments that give a more detailed calculation , as well as the revised statement that can be made to press . the numbers are not small , but really do not reflect the true magnitude of the genset issue . they do not take into account the capital costs of the gensets , and also do not focus on the many smaller units that are operating in homes , and commercial establishments . hope ths helps . regards , sandeep .",0 +"Subject: re : volume ii of the technical corner collection sam , this is a partial list of people to whom i would like to send the volumes : volume 1 & 2 winokur ( enron board member , shirley has his address ) jeff skilling ken lay mark frevert greg whalley rick buy jeff shankman john lavorato dave delainey i shall write the cover letter . also , we can add additional volume for kaminski ' s columns ( just 10 copies ) , including bios and my contributions . i would like to show the depth of talent we have in the group . vince enron north america corp . from : william smith @ enron 01 / 09 / 2001 01 : 07 pm to : vince j kaminski / hou / ect @ ect cc : subject : volume ii of the technical corner collection vince , i have successfully integrated martin ' s article into volume ii and am following mike ' s instructions for reproduction . i ' m also having some additional volume i ' s printed , too . would you mind disposing of the other set i gave you ? i wouldn ' t want things to get confused . also , i ' m doing 20 volume i ' s and 60 volume ii ' s . please let me know how many you personally need and i will deliver them to your office . thank you , sam",0 +"Subject: re : invitation to speak at power 2000 emma , it ' s your choice . i can chair the session of day 2 or speak on one of these topics . please , let me know what works for you . possible presentations : evaluating the effectiveness of insurance as a risk management tool or applying real option theory to value power plants or overcoming the difficulties of accurately estimating volatility vince "" emma wolfin "" on 12 / 14 / 99 04 : 08 : 03 pm to : vince j kaminski / hou / ect @ ect cc : subject : invitation to speak at power 2000 hi vince it is my great pleasure to invite you to speak at power 2000 which will be in houston on 9 & 10 may 2000 . would you be interested in chairing one of the streams on day 2 of the conference ? or making a full presentation on one of the days ? please let me know which talks interest you . obviously , some of the talks are no longer available but i would like to give you a choice as much as possible . please could you get back to me asap on 212 925 1864 ext 151 or by return email . i very much hope you can make the dates as i ' m very keen to have you participate at power . not to flatter you unnecessarily , but i know that a lot of people come to our conferences to hear what you have to say . best regards emma - invite . doc",0 +"Subject: re : aram ' s visit jesus , i yalked to aram . i have him on my calendar from 8 : 30 till 10 : 00 on friday . a dinner / lunch on fri would work for me . vince jesus melendrez @ enron 04 / 20 / 2000 09 : 53 am to : vince j kaminski / hou / ect @ ect cc : subject : re : aram ' s visit vince , i asked my assistant to schedule the meetings with aram and she will contacting your asst . . as far as lunch or diner , i would be interested . i will visit with aram in the next few days or if you do , you might want to ask him . i believe he is coming for a wedding and he might have a tight schedule but lets ask . hope all is going well . jgm",0 +"Subject: - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 26 / 2000 10 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" gould , aaron "" on 06 / 16 / 2000 02 : 54 : 03 pm to : "" ' vkamins @ enron . com ' "" cc : subject : dr . kaminski , on wednesday , june 14 th i attended your presentation entitled "" the challenge of valuation of energy related derivatives "" at the risk 2000 conference in boston . can you please e - mail me the slides you presented . also , you mentioned that the method you used to calculate volatility for energy prices was not the "" normal "" method . can you please tell me , or give me a reference to the method that you did use . thank you , aaron gould senior risk management analyst pseg services corporation aaron . gould @ pseg . com 1 - 973 - 456 - 3527",0 +"Subject: reschedule meeting for duffie report hi shirley , this email is in reference to your vmail regarding my rescheduling my meeting on tomorrow at 2 pm with vince . that is fine with me because the credit guys ( craig chaney and jeff kinneman ) have had a change in strategy . they have asked us to take some time to evaluate moody ' s riskcalc software . therefore i have had to put the duffie project on hold for the last few days . however i am about two thirds through the duffie documents and will resume studying them as soon as i get through the lengthy riskcalc documents . let me know if he still wants to meet later in the week thanks , iris .",0 +"Subject: re : enl - dailyupdate - txt please respond to lyris listmanager you have been subscribed to enl - dailyupdate - txt with the email address "" vkamins @ enron . com "" to unsubscribe , send a blank email to leave - enl - dailyupdate - txt - 13662 e @ estutenwsl 1 . energy . williams . com",0 +"Subject: financial engineering invoice # 2001 - m 608 connie : in response to your email to vince kaminski of 3 / 19 / 01 , the subject invoice was sent to our accounting dept . for payment on february 25 , 2001 . we did not need the spav maintenance , so we deducted $ 1 , 600 . 00 . did you receive a payment in the amount of $ 4100 . 00 that could possibly have been payment for this invoice ? i have left a message for our accounting dept . to see exactly when the invoice was paid and the check number . as soon as i hear from them i will left you know . best regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: personal time on tuesday , nov . 21 , 2000 shirley : just a reminder that i had requested time - off on tuesday , november 21 , 2000 , to attend a school function that i attend every year for a little friend of ours . i know you will be on vacation but leann will be here to help vince or any of the rest of the department . i would not normally take off when you are gone , but this is really important to riley and i hate to disappoint him . his school has grandparents day the tuesday before thanksgiving every year . he does not have grandparents that can attend so he has always asked my husband and i to come as his special friends . usually , al could just go alone but as you know he is in hawaii taking care of his father and will not be here tomorrow . i have worked enough extra hours to cover the time i will be off ( 9 : 00 am to 1 : 00 pm or 1 : 30 pm ) . i appreciate your consideration and thanks in advance if we can work this out . anita",0 +"Subject: re : alp presentation fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" dennis w . loughridge "" on 04 / 30 / 2001 10 : 49 : 10 am please respond to to : cc : subject : re : alp presentation vince i will be attending the alp presentation on may 7 and would be pleased to join the team for dinner if it is not too late . thank you dennis loughridge dennis w . loughridge director of energy consortium rice university 713 - 348 - 2812 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , april 10 , 2001 8 : 16 am to : loughrid @ rice . edu cc : luigical @ rice . edu subject : alp presentation sorry , trying again . i probably got a wrong e - mail address and the original message was returned . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 10 / 2001 08 : 13 am to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: additional info dear vince , thanks so much for your prompt return call . as discussed , pls find attached a # of related self - explanatory documents ( in naturally the strictest privacy and confidence ) . > > > > > > > > > > > the tx fellowship - - the highest individual recognition reward within the > company - - will be determined in jan . 2001 . the pdf files refer to a paper > presentation and 2 press interviews , respectively . the spe paper will be > published in the jan . 2001 edition of journal of petroleum technology > ( jpt ) . > > i ' ll appreciate your review and additional discussion re best fit . as > discussed , it ' s best to correspond via my personal e - mail address : > newsoussan @ iwon . com or else pls leave me a message a my secure personal > phone # @ work . pls be also advised that i ' ll be checking my phone - and > e - mail infrequently ( every other day ) while i ' m in england . i look > forward to seeing you soon in either ny or houston . > wishing you a very happy holiday season and a healthy and prosperous 2001 . > soussan , > 914 253 4187 ( w ) > > > - sfaiz _ detailed _ resume . doc - sfaiz _ job _ description . doc - sfaiz _ cover _ nomtxfellow . doc - sf _ external _ invitations . xls - spe 62964 . pdf - real _ rewards . pdf - get _ real . pdf",0 +"Subject: today ' s project list please , use a new template stored in the plans 2001 folder for today ' s project lists . over the last few weeks we had several parallel copies of the same file floating around . i have updated he list of group members in the first sheet . please , make sure i have not omitted anybody . vince ",0 +"Subject: @ jones : news and information from the jones school @ jones : news and information from the jones school march 13 , 2001 forbes magazine survey alumni association reception - - new york : march 15 conference - - perspectives on women in business : march 16 southwest business plan competition - - march 30 - 31 rice alliance business presentation forum - - march 30 cancelled - - neuhaus lecture : march 19 dean ' s lecture - - ralph eads , executive vice president , el paso corp . : april 11 black leadership conference : april 27 prof . stephen zeff publishes new book on henry rand hatfield , accounting historian rice alliance continues expansion of network , enhances services jones school campaign visit construction site - - - - - - - - - - - - - - - - - - - - - - - announcement - - - - - - - - - - - - - - - - - - - - - - - if those of you in the class of 1996 haven ' t received the forbes magazine survey , please do fill it out when it comes . forbes is looking at return on investment . your names and addresses will not be used for any other purpose beyond this one - page questionnaire and your responses will remain confidential . as you know , rankings are influenced by the percentage of the class which returns the survey . this is true for all rankings . we greatly appreciate your taking your time to do this and thank you for supporting the jones school . - - - - - - - - - - - - - - - - - - - - - - - news - - - - - - - - - - - - - - - - - - - - - - - the jones graduate school alumni association will host a dean ' s reception on thursday , march 15 , in new york city . you and your guest are invited to join gil whitaker , dean and professor of business economics , for cocktails and hors d  , oeuvres from 6 to 8 p . m . on march 15 at the 50 th floor , j . p . morgan chase & co . building , 270 park avenue , new york , ny . please rsvp to deanna sheaffer , director of finance and alumni affairs , at sheaffer @ rice . edu or 713 - 348 - 6222 . managers and business owners will address issues related to women in leadership in the march 16 conference "" grace under pressure : perspectives on women in leadership "" in herring hall . the conference , sponsored by enron corp . , j . p . morgan chase monika drake , assistant director of career planning , jones school ; marla hutchison , principal , deloitte consulting ; christie patrick , vice president , public affairs , enron corp . ; and bette wickline , director , women  , s business initiative , j . p . morgan chase & co . the march 19 neuhaus lecture featuring c . k . prahalad , harvey c . fruehauf professor of business administration , university of michigan graduate school of business administration , ann arbor , has been cancelled . it will be rescheduled at a later date . the jones school and the rice alliance will welcome aspiring entrepreneurs at the first southwest business plan competition , scheduled for march 30 - 31 , at herring hall . nine teams from schools in the southwest region of the u . s . will compete for the opportunity to enter the international moot corpc competition held each year at the university of texas , austin . http : / / www . alliance . rice . edu / swbpc / the rice alliance hosts the second annual business plan presentation forum from 9 a . m . to 1 : 30 p . m . on saturday , march 31 , duncan hall . the forum is intended to provide presenters with candid and constructive coaching on the components of their business plans . ralph eads , group executive vice president of merchant energy and production for el paso corp . , will speak at the dean ' s lecture series scheduled for 9 : 45 a . m . on wednesday , april 11 at 124 herring hall . http : / / jonesgsm . rice . edu / news / calendar / index . cfm ? eventrecord = 1735 author and financial advisor brooke stevens ; shell oil company chairman steve miller ; former u . s . secretary of energy hazel o ' leary ; and federal reserve board member samuel golden . http : / / jonesgsm . rice . edu / content / content . cfm ? pageid = 60 stephen zeff , the herbert s . autrey professor of accounting and professor of managerial studies , was profiled in the march 1 edition of rice news for the successful release of his book on accounting historian henry rand hatfield , the first first full - time accounting professor in a u . s . university . in its 2001 rankings of the top full - time mba programs in the world , the financial times ranked the jones school among the ten best in four categories : value for money ; employed at three months ; finance ; entrepreneurship . overall , the jones was ranked 35 th of 51 u . s . schools and 54 th among the world ' s best 100 graduate business schools . the rice alliance for technology and entrepreneurship enters its second year determined to enhance services that have promoted the entrepreneurial spirit in the rice community and in houston . the alliance brings together students , faculty , alumni and other rice - associated parties as collaborators , mentors and investors in engineering , science , software , or e - commerce innovations . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - online : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - visit the construction web cam url for up - to - the - minute live feeds of the new jones school building construction . learn about new and upcoming initiatives and programs at the school , and view artist renderings of the new $ 60 million building , currently under construction . http : / / jonesgsm . rice . edu / campaign / campaign . html @ jones : news and information from the jones school , the jones school e - newsletter , is published monthly by the public relations department of the jesse h . jones graduate school of management . the jones school website http : / / jonesgsm . rice . edu is updated frequently and we encourage you to visit the site regularly to get the latest news and information about new initiatives and programs at the jones school . to submit items to be posted on the jones school website , please e - mail jgsmnews @ rice . edu or call 713 - 348 - 6364 .",0 +"Subject: fw : energy leader consulting generation evaluator ( ege ) vince : this is the gentleman that wants to meet with you on the 29 th ? - - - - - original message - - - - - from : "" steve mitnick "" @ enron [ mailto : imceanotes - + 22 steve + 20 mitnick + 22 + 20 + 3 csmitnick + 40 earthlink + 2 enet + 3 e + 40 enron @ enron . com ] sent : monday , may 21 , 2001 9 : 13 am to : crenshaw , shirley cc : vkamins @ enron . com subject : energy leader consulting generation evaluator ( ege ) shirley : as requested , herein is information regarding the meeting with vince kaminski . the presentation on the ege tool ' s applications and the allegheny energy case study is timed to take an hour . if the meeting is most conveniently scheduled for tuesday , may 29 , might i request it be set for late afternoon ( as my other appointments are the next day ) . and , as vince will recall , i was co - leader of the energy consulting business of phb hagler bailly , and developer of the ramp up , real time , 75 check and electric strategy tools . presently , i am ceo of energy leader consulting ( elc ) . background the u . s . power generation industry has become increasingly efficient in recent years . rapidly growing new entrants seek profit maximization aggressively . utilities , who still control most power plants , endeavor to adopt the entrants ' methods . yet , inefficiency among many utilities remains widespread . utility inefficiency arises from adherence to decades - old habits and in unit commitment and dispatch and planned maintenance scheduling . many utilities , notwithstanding the industry - wide trend towards profit maximization , cling to ingrained routines . inefficiency can also arise from the diseconomies of small scale . a utility may operate a relatively small system ( fewer than a dozen plants ) . a small system lacks portfolio diversification and perspective in its focus on its regulated customers , playing the wholesale market at the margin . for a variety of reasons , utilities are reluctant to cut back the starts of their generating units , let alone shut down any ( even temporarily or seasonally ) . economically inefficient units continue to be committed , week after week , and run in the half - load range . ege objectives ege identifies and assesses generating units of a utility with questionable commitment routines . taking into account transmission and reliability factors , the procedure points towards profit opportunities that may be exploited by another industry participant . i . an industry participant can use ege as a basis for a medium or long - term wholesale power transaction with a utility ; or to price wholesale power more aggressively , to take market share from the utility ( i . e . , compel changes in unit commitment habits ) . ii . an industry participant can use ege to spot and quantify efficiencies that would come from a merger or acquisition . iii . a power plant developer can use ege to estimate the incremental value a new plant will enjoy when the target utility ' s unit commitment routines inevitably become rationalized . specific ege concepts ege reduces and analyses the extraordinary but unwieldy continuous emission monitoring data base intelligently focusing on profit opportunities . it produces indicative statistics such as : a . the frequency distribution of starts per week ; b . the frequency distribution of starts by day / 15 - minute segment during the week ; c . the frequency distribution of load level ; d . the frequency distribution of hours of operation per start ; e . average heat rate and approximate fully - allocated cost in the half - load range ; f . average ramp rate from the half - load range ; g . the frequency distribution of unused connected capacity during the highest demand hours ; and h . forced - off maintenance outage rate ( where indicated ) . indicative statistics are generally aggregated by month / year ; in some cases , by temperature range . ( they can be by regional wholesale prices as well . ) ege establishes if the target utility has changed unit commitment routines significantly in recent years . ege is based upon uniquely timely actual hourly operating data . ege is now updated for the 4 th quarter 2000 ( through december 31 , 2000 ) . ege lst quarter 2000 ( through march 31 , 2001 ) will be available approximately june 15 , 2001 . ege also compares and ranks generating units ' commitment and dispatch with that of similar units operated by the target utility ( as well as other regional generators ) . some utilities operate a group of economically marginal units at the half - load level for lengthy time periods ( without an apparent reliability basis ) , splitting the limited economic demand for power among the units . other ege supporting data : i . planned maintenance schedule ( where indicated ) ; j . actual maximum generating capacity ; k . actual minimum generating capacity ( actual maximums and minimums can differ significantly from government - reported values ) ; l . average heat rate in the full - load range ; and m . average heat rate in the three - quarter - load range . with respect to a generating units ' average heat rate in the half - load , three - quarter - load and full - load ranges , it can be instructive to rank these relative to similar generating units within a region . it can also be of interest to identify significant seasonal variations in average heat rates and maximum capacities , and changes in recent years in these parameters . the real - world example of allegheny energy allegheny energy can serve as a case study to illustrate the application of ege . in the 4 th quarter 2000 , for instance , one high - cost generating unit was started virtually every weekday morning ( 52 times ) and committed for the whole day ( in all but two cases ) . arguably , there are power products that could substitute for this routine ( in part at least ) at a profit to the seller of the product and allegheny energy . another high - cost allegheny energy generating unit was started virtually every weekend during the autumn ( nine times ) and committed for most of the coming week . at another plant , two high - cost units were operated too often in the expensive half - load range ( some 550 hours ) and three - quarter - load range ( another 400 to 600 hours ) ; they were seldom called upon to run at higher levels . again , there are power products that that address these practices and might appeal to allegheny energy . offering of energy leader consulting ( elc ) ege is a procedure , not a software package or data base . elc believes this format is more effective in arming clients with the information they need to act upon profit opportunities . elc transfers its "" knowledge "" about the ege procedure and the supporting data methods in a straight - forward four - step process : 1 . enron would select one to three target utilities . 2 . elc would perform the ege procedure on the target utilities . 3 . employing this real - world analysis as a pedagogic tool , elc , in a one - day seminar with enron personnel , would instruct how to perform the procedure in the future ( without the assistance of elc ) . 4 . optionally , elc would provide ege supporting data , quarterly , to enron . the basic ege supporting data set is national including all generating units under the continuous emission monitoring program ( virtually all fossil fuel units ) . parameters that are incorporated , and the data set format , will be specified upon request . custom modifications will be considered . steven a . mitnick chief executive officer energy leader consulting 4807 41 st street , nw washington , dc 20016 ( 202 ) 997 - 0924 voice ( 202 ) 537 - 0906 fax smitnick @ energyleader . com",0 +"Subject: re : publication submission question martin , i don ' t see any problem . the article supportsenron ' s position . please , go ahead . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 02 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 05 / 2001 01 : 01 pm to : martin lin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : publication submission question martin , let me read it friday . we run our papers by our pr department to review for any potential conflict with the company line . i shall fwd it to them . i think you should submit it as an enron employee with a note that it was developed when you were at ut . vince from : martin lin on 04 / 02 / 2001 11 : 59 am to : vince j kaminski / hou / ect @ ect cc : subject : publication submission question my supervising professors from ut and i are finishing a paper ( finally ! ) that is based on work done for my phd . all of the research was done while i was a grad student . i have a couple of questions regarding submission of this paper ( to ieee transactions on power systems ) . 1 . should i submit it with my affiliation as the university of texas at austin or as enron ( ena , corp , etc ) ? 2 . what legal or other reviews / clearances would i need ? a draft of the paper for your review is attached . thanks , martin ",0 +"Subject: vince kaminski expense reports hi liz : vince has two expense reports pending for approval from greg whalley . they are : london trip - 8 , 051 . 59 philadelphia ( wharton business school ) - 2 , 067 . 47 please have greg approve these as soon as possible . the wharton school will be cross - charged to christie patrick ' s cost center . but for expediency in getting this paid it was submitted on our cost center . thanks ! shirley",0 +"Subject: i ' ve done it . . . . vince , thanks for this . the original sender of this resume , brian , works for me ! say , do you have any hot leads on any good hands - on electrical engineers interested in designing sensors ? cheers , scott - - - - - - - - - - - - - - - - - - - - - - forwarded by scott tholan / corp / enron on 01 / 30 / 2001 06 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 01 / 30 / 2001 05 : 45 pm to : scott tholan / corp / enron @ enron cc : subject : i ' ve done it . . . . scott , please , take a look at this resume . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 30 / 2001 05 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : paula corey @ enron communications on 01 / 30 / 2001 01 : 03 pm to : vince j kaminski / hou / ect @ ect cc : subject : i ' ve done it . . . . vince - here you go . . . this has been reformatted - - - - - forwarded by paula corey / enron communications on 01 / 30 / 01 01 : 03 pm - - - - - brian mihura @ enron 01 / 30 / 01 11 : 52 am to : paula corey / enron communications @ enron communications cc : subject : i ' ve done it . . . . here is matt ' s resume as a msword doc .",0 +"Subject: re : summer internship position celeste , we need to make sure that the interns in vince ' s group are coordinated and incorporated with the rest of the summer associates . they should be offered the same starting dates , i believe they are may 22 , 2000 june 5 , 2000 . i am not sure about the june date . would you check and let vince know . they should also be offered the same starting salary package as the others . they will be included in training ( a few days ) and any other events we host . thanks",0 +"Subject: trial of weathereffects web site mike , following up on my phone call , we ' re ready to do the following : 1 . assign a login and password to enron for a trial evaluation of the www . weathereffects . com power trader web service . 2 . initiate a daily bilateral conference call at a morning time to be determined . to ensure that your traders and analysts are ready for such a call , we will await your response to this email before initiating the service . 3 . we will also pdf certain energy analysis files to you ( eg , the daily gas market file ) so you can see the evolution of our day to day thinking on the markets . a reminder that the power service currently deals with nepool and pjm and will initiate coverage of nypp in september . i look forward to hearing from you . ed krapels director , esai gas and power services",0 +"Subject: additional resources ben and i have been discussing the possibility of getting more dedicated support from houston on our project . we are wondering what the possibility is of having either amitava or vasant come over for 8 - 12 weeks to help get things jumpstarted on the the credit scoring and modeling front as well as provide some guidance on the clo part of the business and potentially hiring an additional full time resource . if there is any possibility , it would be hugely valuable given the long lead times to get someone from the city in and integrated in addition to the significant cost . let me know your thoughts bs",0 +"Subject: rice / enron finance seminar series a copy of paul schultz ' s paper , "" who makes the market , "" is now available . the paper to can be obtained ( by monday for sure ) from felicia jones ( economics ) , latha ramchand ( university of houston ) , and vince kaminski ( enron ) or barbara ostdiek ( everyone else ) . paul ' s seminar is friday , march 30 , at 3 : 30 in room 201 ( note the room change ) . the abstract of the paper is copied below : abstract "" i provide evidence that nasdaq dealers make markets in the stocks in which they receive order flow . several variables used to proxy for the stocks that individual market maker ' s brokerage customers would trade , including trading volume , location , underwriting participation and analyst coverage , are significant determinants of market marking activity . informational advantages may also be a factor in the market making decision as evidenced by dealers specializing in stocks in specific industries . some potential problems that arise when researchers ignore the integration of market making with brokerage , securities analysis and underwriting businesses are discussed . """,0 +"Subject: re : exotica . xla hi anjam , thanks for the info . i ' m afraid that one thing i don ' t know is precisely how to build s : \ research \ exotica \ excel \ exotica . xla from the code you sent me . could you send me instructions ? also as you are very busy and away from your desk could you set up your lotus notes calendar so mary ward and joe kelsey permission can see your calendar so i can get in touch with you if anything comes up . they can both see my calendar . thanks , sharad enron europe from : anjam ahmad 17 / 10 / 2000 11 : 37 to : sharad agnihotri / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , zimin lu / hou / ect @ ect , dale surbey / lon / ect @ ect subject : exotica . xla in answer to your questions . anjam - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 17 / 10 / 2000 09 : 20 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : sharad agnihotri 16 / 10 / 2000 13 : 59 to : anjam ahmad / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , dale surbey / lon / ect @ ect , tani nath / lon / ect @ ect , steven leppard / lon / ect @ ect subject : exotica . xla hi anjam , i have quite a few questions / requests regarding the exotics libarary : 1 ) could you e - mail me instructions for building / compiling s : \ research \ exotica \ excel \ exotica . xla also if there is any more source code that i need please could you e - mail me that . you have all the code ( c & vba ) that makes up the library now - please see previou e - mails 2 ) also could you e - mail me documents on the changes you have made to s : \ research \ exotica \ excel \ exotica . xla changes are documented through aterations to comments on individual source code files as is the current method in houston and as adopted by me in london - version control occurs at the individual file level rather than through soiurce safe 3 ) the exotica . xla used in london and exotica . xll used in houston are quite different . what regression testing has been done ? how do we know if the two versions that we have been using produce the same results . i have not recently compared the xll from houston with our xla - this would be a useful exercise for you 4 ) judging from the documentation there are quite a few more functions available on the houston exotica like asian spreads , quantos , digitals etc . is there any reason why they have not been implemented in london ' s exotica . xla ? maintenance and upgrades to london exotica to ensure compatability with houston and vice versa is an on - going process - inevitably there will be some lag between a new model being implemented in houston and in london , as is the case with asian spreads and digitals . quantos are already available - see vba code . thanks in advance , sharad",0 +"Subject: floating lng terminal folks , as a follow - up to scott neal ' s inquiry this morning concerning portable / floating lng opportunities for california , i have learned that no such capability currently exists . according to todd peterson of enron global lng , exploitation of this opportunity has been the topic of some industry articles but no one , as far as we know , has constructed such a vessel . i did come across a proposed design for an lng floating terminal by the italian company , tecnomare . i contacted them and they indicated that they have not built such a vessel . it is estimated that construction of such a vessel would take 2 - 3 years , and as one might imagine , achieving the required operational and environmental performance in such a vessel would be quite substantial . attached is a link to a relatively brief description of the proposed vessel , please let me know if any further research is needed . charlie weldon",0 +"Subject: spring 2001 academic calendar for the jones graduate school spring 2001 faculty and students , the spring 2001 academic calendar for the jones graduate school has been posted to embanet . to access the academic calendar please open the jgsm area icon on the embanet desktop . next please open the announcement jgsm icon . you will find the spring 2001 academic calendar located under the subject column . please open the document . if you do not have access to embanet you will need to speak with david kilgore at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 . thanks , kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: hello vince , i enjoyed talking with you this morning . per our conversation , here is norberto valdes ' resume . i will call you in about an hour to make sure you received it . thank you and let me know when you would like to meet him . sincerely , lisa ford 281 ) 913 - 2076 ( see attached file : resumen 4 . doc ) - resumen 4 . doc",0 +"Subject: re : 1997 risk paper on pricing of electricity derivatives bernard , i am forwarding your message to my assistant and she will mail you a reprint . i would be glad to take a look at your dissertation . is it available as a publication , working paper ? vince "" murphy , bernard "" on 03 / 01 / 2001 02 : 17 : 39 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : 1997 risk paper on pricing of electricity derivatives hello vince , my name is bernard murphy - i received your e - mail address from les clewlow , who was my phd supervisor at the financia options research centre at warwick business school . i ' ve just finished my phd on electricity price jump diffusions : a theoretical and empirical study in incomplete markets - hence my interest in electricity price modelling and derivative pricing . i was looking to get hold of a copy of your 1997 paper , which has recently come to my attention : "" the challenge of pricing & risk - managing electricity derivatives "" , the us power market , risk publications , pp . 149 - 171 . and les suggested that i contact you directly ( les is travelling at present and doesn ' t have an electronic copy available ) to request an e - copy . incidentally , i am lecturer in finance / financial mathematics at university of limerick ( ireland ) and have taken a year out to work for caminus uk , where i am working on introducing and developing a markets - based approach ( spark - spread ) to real asset valuations in the uk power industry . thanks in advancve bernard murphy",0 +"Subject: my resume molly , we would like to bring this student as a summer intern ( the last one , we are running out of space ) . i shall send you another message regarding his proposed dates . thanks . i hope you have a very happy easter . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zhendong xia on 04 / 12 / 2001 03 : 58 : 25 pm to : vince . j . kaminski @ enron . com cc : subject : my resume hi , dr . kaminski : glad to get your reply . here is my resueme . if you wanna know more about me , please feel free to contact me . thanks . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318 - cv . doc",0 +"Subject: the garp 2001 convention dear mr kaminski ? please find attached important information concerning the garp 2001 convention , which will be held in new york between 13 th and 14 th february , 2001 . ? please respond by the 6 th september so that all your details are correctly put into the brochure and our web site . should you have any queries please do not hesitate to contact me . ? i look forward to working with you and to seeing you in new york in february . ? kind regards ? andreas _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900 - kaminski . doc",0 +"Subject: rodrigo lamas - best wishes i would like to take the opportunity to let you know i have resigned today . i wish you all the best in your carreer and in life . regards rodrigo lamas",0 +"Subject: marketpoint business plan summary vince : thanks very much for your interest in our marketpoint product , and thanks for the hour you gave me this morning . as promised , i am enclosing our executive summary and first chapter from our business plan for you to take forward to your management as a prospective enron - marketpoint investment collaboration . i want to reiterate that should enron elect to be the lead investor here , you will be exclusive in your industry if you want . if enron wants to be the lead and ensure the entire second round of resources we need , we would not offer and investment opportunity to other trading companies , pipelines , or electrics until the third or subsequent rounds and then only with your participation as a marketpoint board member . i am aware you have coinvested with sap in the past and that you might want to coinvest with them again . i presume you would not have a problem with non - competitors such as epri , our management consulting service provider partner , or our vc partner ( but i would want guidance from you in this arena ) . i think you would find our vc partner very suitable and very attractive . they have done several interesting energy and trading plays , and they would provide good management skills i believe . i hope we can move forward together . i am looking forward to a positive response . thanks again and best regards . dale nesbitt ps : you might hear from drew ries of your investments group . i spoke with him after speaking with you about many of the same issues . - longexecsum . doc",0 +"Subject: drogi vincenty . skoro ty byles na tyle mily ze zadzoniles osmielam sie i ja zaimejlowac do ciebie . w dniach 29 . 04 do 7 . 05 bede w usa . cel turystyczny do moich znajomych z roku . w programie mam wiele . glowna baza idahi springs . lece z mija corka i kolegami z roku . nie znam twojego miejsca zamieszkania , ale moze . tefon moich znajomych chyba 303 567 0190 , adres e - mailowy pzdrawiam zofia grodek . oni maja na nazwisko golebiowscy . get free email and a permanent address at http : / / www . netaddress . com / ? n = 1",0 +"Subject: christie and vince : on behalf of enron team 1 , we would like to thank you for being such gracious hosts . the trip far exceeded our expectations and we appreciate the fact that so many people took time out of their busy schedules to meet with us . a special thanks to the both of you for spending all day friday with us . we look forward to our telephone conference on thursday and to working with you in the future . team 1 : kim whitsel nick levitt vincent chen jack rejtman deepa mallik tulika bhalla",0 +"Subject: research re - org please let me know of any corrections . - - stinson teams reporting to krishna , tanya , mike , and maureen have no changes . ena / egm / eim support to be primarily organized by type of support rather than by business line under stinson and vasant : stinson ( ebs ) martin lin ( * ) , shalesh ganjoo , chonawee supatgiat , iris mack ( option pricing ) zimin lu , alex huang , tom halliburton , bob lee , paulo issler , ken parkhill , tom barkley , hector campos vasant ( power ) martin lin ( * ) , lance cunningham , sevil yaman ( risk and market analysis ) amitava dhar , joe hrgovcic , nelson neale , kate lucas ( * ) martin to have the option of maintaining ties to ebs or to gradually move to mainly power fundamentals .",0 +"Subject: eol data mining vince , here are four graphs i came up with yesterday afternoon that may be of interest : the first one shows what percentage of our trades are done with different counterparties - ( note the large part that aquila plays ! ) the other three graphs look at how trading volume varies during the week between the hours of 8 : 00 am and 4 : 00 pm for different categories of product . natural gas and power have their own graphs , as they have the largest traded volumes . "" products "" is for the remaining categories . there are still some things i would like to take a look at . the databeacon software is now available , and can be reached at the following url : do you have any specific questions that you would like me to try answering regarding eol ? i have also started doing some research on automated trading platforms . are there any websites and / or papers you would recommend i read ? thanks , tom",0 +"Subject: invoice for energy derivatives courses shirley , please , pay . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 29 / 2000 12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - lacima @ compuserve . com > on 03 / 28 / 2000 02 : 49 : 43 pm to : shirley cc : vince subject : invoice for energy derivatives courses shirley , please find attached the invoice for the energy derivatives courses . if i should forward this to someone in accounts , please let me know who i should contact and i will take care of it . thanks , julie lacima consultants - enron 28 _ 03 _ 00 . doc",0 +"Subject: introducing the new iijournals online ! institutional investor journals are now published online ! dear subscriber , your institutional investor journals subscription now includes free access to a full - text website . visit www . iijournals . com and log onto the new iijournals homepage - - from there you can go to any of the journal specific sites . you can logon today with the following account information . userid : 13417514 password : 13417514 new site features at http : / / www . iijournals . com : - read the full - text of the current issue online before the paper edition reaches your mailbox . - use a keyword search engine to search through the entire listing of iijournals abstracts . - access online any article that has been published since january 1999 . - update your personal information , change your mailing address , or sample other institutional investor journals . to read full - text articles : before accessing the full - text of articles on any institutional investor journals web site , you need to install adobe acrobat 4 . 0 and fileopen . this is a one - time process and should take only a few minutes . please visit our "" how to read articles "" page on the website . click here to link : http : / / www . iijournals . com / common / readarticles . asp we hope you enjoy the new website . if you have any additional questions , comments , or suggestions about the website , please email info @ iijournals . com or phone ( 212 ) 224 - 3664 . sincerely , allison adams publisher http : / / www . iijournals . com",0 +"Subject: combinatorial auction - jan 11 mtg background - - - - - forwarded by greg woulfe / enron communications on 12 / 28 / 00 09 : 58 am - - - - - chonawee supatgiat @ enron 12 / 22 / 00 05 : 08 pm to : stinson gibner / hou / ect @ ect , greg woulfe / enron communications @ enron communications cc : subject : combinatorial auction stinson and greg , i have read the paper "" combinatorial auction with multiple winners for universal service "" from richard steinberg and frank kelly . they propose a combinatorial auction which is an auction for multiple items that allows bidders to realize their synergies on combinations of items . the combinatorial auction is appropriated for bandwidth commodity because most bidders in the market have synergies on the combination of items . for example , if we want to get bandwidth between boston and dc , we would bid for boston - ny and ny - dc . it will be valuable to us only if we won both links . if we won only one link , it will be useless . in the paper , they propose the auctioning method but their method has not been tested or validated yet . i have not checked their proposition mathematically but their paper was published in management science so i think it should be all right . i will look at it in more details and let you know . anyhow , there are also other combinatorial auctions that are actually used , for example , the alberta government ' s ppa auction that enron canada was participated 3 - 4 months ago . based on our long position on bandwidth , auction and exchange might be a good channel to dispose our unused ( or unsold ) bandwidth . i know there is not much demand in the market . but if we open a combinatorial auction or exchange , we might be able to increase our market share . ( by taking demand from our competitors ) . i believe , at the moment , there are no bandwidth exchanges that allow "" combinatorial "" bids . if we are the first one to do it , we might improve our sale channel and gain some market share . ( note : auction - > one seller and many buyers : exchange - > many sellers and many buyers . ) moreover , i think auctioning the unsold bandwidth will not hurt us because we cannot sell them anyway . in addition , we ourselves can be a dummy bidder in the system and bid in the auction . if the current wining bid is too low , we can just over - bid it and keep the product . this way , we can indirectly put a reserve price on the products . let ' s meet sometime in the first week of january . - chonawee",0 +"Subject: re : thanks from enpower you are welcome . it is my pleasure to work with the talented enpower team . zimin zhiyun yang @ enron 01 / 04 / 2001 05 : 29 pm to : zimin lu / hou / ect @ ect cc : subject : thanks hi zimin : thanks a lot for the explanation of the spread option , it ' s not a cheap help . - zhiyun",0 +"Subject: vacation goodmorning , i will be out of the office on vacation for the next few days . thanks kevin moore see you when i return .",0 +"Subject: optical network engineering & enron research offsite meeting hi john , as per our discussion and e - mails , i am suggesting the following dates for the subject offsite : april 14 & 15 th ( friday & sat ) . place and agenda to follow once this date is nailed up . the heads of each group will decide who will attend . we would also invite kevin hannon , scott yeager , tom gros , ted seitz and jean mrha once the dates and agenda are agreed upon by the technical folks . as before , the idea is to introduce the two of the most technical groups within enron and to exchange ideas and issues . the enron research team will provide trading and modeling presentations and the optical network engineering team will present networking and components related topics . take away from the two days will be to provide john griebling ' s group with better understanding about how the trading markets have developed in general and energy markets in particular via enron ( i . e . , how the sausage was made ! ) . likewise , john ' s group will provide us with better understanding of optical networking from a technical perspective . particularily , how ebs is planning to develop the puplic switched optical network ( pson ) that john has ' branded ' our pooling point based network ! please reply asap if these two days ( april 14 & 15 ) will work . additionally , john , is the original suggestion to hold it in scott yeager ' s cabin somewhere up in colorado mts . still holds ? if yes , i should probably let scott know ! if not , i ' ll try to find other places - - any suggestions , anyone ? regards , ravi .",0 +"Subject: re : craig , thanks for the feedback . elena is doing really great and i think that she will be a great enron ' s asset . vince craig breslau 08 / 09 / 2000 09 : 19 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : i wanted to give you some feedback . elena chilkina has gone way above the call of duty to help me on a very important research project . i am trying to conduct some research on the global fuels market for jeff shankman . when i mentioned this to elena , she was extraordinarily helpful in helping me compile some very useful information on very short notice . she was able to quickly define the scope of the project and gather some pertinent information . because this was not one of her regular assignments , she put in many extra hours to help us out on this project . i just wanted to let you know about a job well done . regards , craig",0 +"Subject: wharton hi jeff ! i know you received the information below . additionally , i have 2 people from broadband services meeting us there friday ( one is traci warner who set up the rice u deal ) . further , i ' ll be meeting with amy briggs regarding the entrepeneurship conference nov 30 th and dec lst . i ' ve already spoken with her and tom piazze and both independently confirmed as you suspected that we committed to sponsor at the $ 10 , 000 level . this entitles us to banners , panels , posters , and most importantly , a keynote address . i ' ll discuss the keynote address with her but would appreciate your thoughts in advance as to how you ' d like to see the keynote speech executed ( suggestions for topics , proposed speaking candidates , when in the conference you ' d like to see enron ' s speech , etc ) . i ' ll review the trip with you when we return . thanks jeff ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 10 / 13 / 2000 03 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" piazze , thomas "" on 10 / 13 / 2000 09 : 18 : 24 am to : "" amit , raffi "" , "" macmillan , ian "" , "" stamer , anne "" , "" cieri , emily gohn "" , "" weigelt , keith w "" , "" piazze , donna "" , "" tyler , cara "" , "" kunreuther , howard "" , "" wind , yoram "" , "" baltes , michael "" , "" winter , sidney g "" cc : "" roberts , stacey "" , "" williams , dorothy ( wharton ) "" , "" harker , patrick "" , "" ' kaminski , vince ' "" , "" ' patrick , christie ' "" , "" ' shankman , jeff ' "" subject : visit by enron , 19 october 2000 a team of key executives from enron will be on campus on the 19 th of october for the purposes of meeting with key staff and faculty to learn more about the school and how the firm can gain a greater presence here . included in this group will be : vince kaminski , director of research christie patrick , vp , university relations mike rosen , director , university affairs group i have developed a proposed agenda for the visit . please review and confirm that you are available to meet with one or more of the enron team at the times specified . if so , please provide me a prefered meeting location . if not , please alternate times and locations . 8 : 00 - 9 : 00 breakfast with donna piazze and keith weigelt to discuss "" tiger team fap project "" the ivy grill , inn at penn 9 : 00 - 10 : 30 meeting with raffi amit , ian macmillan , emily cieri and anne stamer to discuss the sol c . snider entreprenuer center and its related programs , the business plan competition and webi . . . 4 th floor conference room , vance hall ? ? ? 10 : 30 - 12 : 00 christie and mike hold discussions with cara tyler , bob bonner and pat rose regarding recruiting processes and procedures . . . cms conference room 10 : 30 - ? ? ? broadband executive meets with gerry mccartney and other university officials to discuss campus needs , future usage projections , etc . 10 : 30 - 11 : 30 vince meets with sid winter reference jones center and related research 11 : 30 - 12 : 00 vince meets with howard kunruether to discuss risk management 12 : 00 - 1 : 15 pm group lunch with jerry wind at faculty club to discuss the e - fellows program 2 : 00 - 3 : 00 pm christie and mike meet with mike baltes to discuss co - branding issues with wharton and upenn 5 : 00 pm all will attend the et conference dinner event please confirm your willingness and availability to support this agenda . thanks for your help . tom",0 +"Subject: request submitted : access request for sandeep . kohli @ enron . com you have received this email because the requester specified you as their manager . please click approval to review and act upon this request . request id : 000000000025312 request create date : 3 / 23 / 01 9 : 52 : 03 am requested for : sandeep . kohli @ enron . com resource name : visual studio enterprise resource type : applications",0 +"Subject: focus group invitation - supervisors charlene , karen : vince asked me to let you know that he will be unable to attend the lunch on friday , september 8 th . he has a previous engagement that he cannot miss . i tried contacting constance charles , but her voice mail box was full . thanks . shirley crenshaw administrative coordinator",0 +"Subject: meetings next week hi guys , vince talked with christie and they both are available next tuesday ( game day ) at 9 am . can you meet then to start preparing an outline ? also would you be up for a presentation at the research group ' s lunch meeting next thursday ? vince will be out , but you ' ll undoubtably get some interesting questions from others at the meeting , if your up for it . let me know soon , and we can schedule you for next thursday . talk to you later ken",0 +"Subject: ebs research telecom rercruiting effot hi , vince please put your best effort in making sure that we differentiate summer interns and associates that ebs research will be hiring . i am talking about compensation here . ken rice mentioned that ebs is in the process of developing a technical equivalent of our aa pool . ebs research people can potentially rotate through this pool in the future . i just don ' t want to risk losing people like giuseppe ( & get the word out that we are low - ballers ) because we have to fit them into certain set of categories that was designed for the energy business . i realize that you have estabilished such differentiation for research as a whole , but i think that would have to be moved up a notch in the case of ebs . ravi .",0 +"Subject: mg metals : quant analysis & risk hi eric , thanks for getting back to me - i believe there are a number of issues to address to ensure that the integration goes smoothly from a risk management and quantitative analysis perspective , and i have put together a ( by no means exhaustive ) list : - i ) seamless transfer of front and middle office systems from an exotic options linking perspective ( e . g . their spreadsheets link to different option pricing add - ins ) ii ) development of volatility curves and factor analysis to ensure that we can capture metals risk in our var system ( we will require historical data for this ) . iii ) ensure that mg staff on quant and risk side become familiar with our methods and systems and vice versa these tasks will involve a significant degree of cross - communication with relevant contacts within mg metals , and so i look forward to starting on the process as soon as possible - i hope to play a full part from a quantitative research and risk management perspective to ensure that everything goes smoothly in this exciting new development , so please do not hesitate to involve me . best regards , anjam ahmad research x 35383 enron europe from : anjam ahmad 15 / 06 / 2000 16 : 18 to : eric gadd / lon / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : quant analysis & structuring for metals business dear eric , i understand from dale that you are co - ordinating the integration of mg metals into enron europe . dale and i thought it would be a good idea to ensure that we are fully prepared from a quantitative research and structuring perspective so that we can "" hit the ground running "" when they do arrive . i would be grateful if you could provide a contact person in mg metals that may look after this area , or someone who may find it useful to discuss and identify their possible future modelling requirements . thanks & regards , anjam ahmad research x 35383",0 +"Subject: hi vince ! yes , meeting for dinner tuesday night is great ! i ' ll be coming in on tuesday from d . c . and i ' ll be taking the train to new york on wednesday morning . see you and ken tuesday at 5 : 30 at the inn at penn lobby . hope you both have a great weekend ! ! thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 11 : 23 am - - - - - vince j kaminski 02 / 16 / 2001 11 : 04 am to : christie patrick / hou / ect @ ect cc : kenneth parkhill / na / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : change - video to teleconferences - enron christie , meeting at 5 : 30 is fine with me . the presentation is at 6 : 30 . i sent you a message regarding a dinner on tuesday . can you join me and ken parkhill ? vince from : christie patrick on 02 / 16 / 2001 10 : 19 am to : vince j kaminski / hou / ect @ ect cc : subject : change - video to teleconferences - enron hi vince ! thanks for the information below ! i spoke with tom piazze today . i ' ll be meeting with him at 3 : 30 on the 20 th to discuss the webi contract . i ' ll also be meeting with wharton ' s broadband ( technical people ) before our meeting with the students . further , i hope to meet with the people in charge of the business plan competition . tom suggested you might want to call howard kurnreuther ( sp ? ) and possibly stop in to see him while we are at wharton . i ' ll be getting to wharton sometime tuesday ; i ' ll try to get a reservation at the inn at penn . i ' ll then be leaving early wednesday morning by train to new york . shall we meet in tha lobby at the inn at penn before going to meet the students ( i think the meeting with the students is at 6 pm - ish ) - - say , 5 : 30 ? please let me know ! also , we still need to give wharton an answer as to whether we ' re interested in another $ 50 , 000 investment in efellows . thanks vince ! have a great wekend ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 10 : 13 am - - - - - vince j kaminski 02 / 16 / 2001 10 : 06 am to : christie patrick / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : change - video to teleconferences - enron fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 02 / 16 / 2001 08 : 35 : 22 am to : clay degiacinto , deepa mallik , dennis feerick , heather thorne , jack rejtman , jason cummins , kim whitsel , nicholas levitt , omar bassel , ram vittal , steve lessar , thomas , tulika bhalla , vincent chen cc : fap , "" ' vkamins @ enron . com ' "" , "" ' patterm @ wharton . upenn . edu ' "" subject : change - video to teleconferences - enron 3 / 1 shdh 215 3 / 22 shdh 215 3 / 29 shdh 215 please note that the remaining videoconferences scheduled with enron have been changed to teleconferences due to the difficulties we have experienced . the host has agreed and we will , therefore , continue with teleconferences in the same locations / dates as noted above . any questions , please contact the fap office . thanks , donna",0 +"Subject: power trading hi folks : very glad to hear about the new developments . just to recap what we discussed this morning about different things you need to look into to set up trading operations and the contacts : 1 . licence to trade : regulatory people : i guess you know about this part better than me . 2 . trading & risk mgmt : global risk mgmt oversight : john sherrif in london has the overall responsibility outside western hemisphere . research group can help with the structuring models used for trading . 3 . risk conrols : before trading group is operational , it needs to get the authorization from the board of directors of enron along with total position limits and possibly value @ risk limits . these limits are typically by commodity type and by region . risk assessment & control ( rac ) under rick buy performs the internal control function ensuring that the businesses adhere to these trading limits . ted murphy is the vp in rac overseeing the trading operations . the value @ risk models come from the research group , but day - to - day monitoring of the numbers is done by ted ' s group . 4 . credit risk : a credit reserve number is computed for each deal ( again , the models are created by research ) and is transferred to the credit group under bill bradford ( also in rac ) . this is basically like buying insurance from the corp . , so that if there is a couterparty default , the loss is covered by the reserve pool of the credit dept . 5 . legal : the name i was given is alan aronowitz for legal help . 6 . back office : initially can survive with excel spreadsheets . you should contact the it though when the plans finalize to talk about systems . australia is the most recent place where we set up the trading operations . you can talk to paul quilky , the trader there to talk about these issues ( mention to him that grant masson in research gave his name ) . barry pierce in london was incharge of back office at the begin there . i can coordinate for talking with people next week . give me a call monday if possible . i hadn ' t the time to search for the presentation stuff today . will do it next week . krishna .",0 +"Subject: re : developing my electricity model at enron aziz , yes . if you are interested in joining us next summer as an intern , we would be very happy to have you . please , send me your resume . vince aziz lookman on 12 / 06 / 2000 01 : 11 : 57 pm to : vince . j . kaminski @ enron . com cc : subject : re : developing my electricity model at enron dr . kaminski : i am the phd student at the business school at carnegie mellon who is interested in energy modeling . thanks once again for taking the time to talk with me about my model for electricity during your recent visit to carnegie mellon . during our conversation , you had mentioned the possibility of my coming out to enron to work on developing my model , possibly through an internship . is this still an option ? if so , could you please advise me how to proceed . sincerely , aziz a . lookman",0 +"Subject: re : greetings from london ( to enron ) iris , please , feel free to give me a call when you have a few minutes . i shall be glad to chat with you . vince iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am to : vkamins @ enron . com cc : denis . autier @ paribas . com subject : greetings from london ( to enron ) dear dr . kaminski , how are you ? it was nice to meet you at the real options conference in nyc . i was intrigued by some of the comments in your conference talk . in particular , by your use of real options to hedge financial options . this is something i am interested in as well . when you have some time , could we chat about this topic in a bit more detail ? thanks for your time and consideration . hope to hear from you soon . regards , iris mack - - - - - - - - - - - - - - - - this message is confidential ; its contents do not constitute a commitment by bnp paribas group * except where provided for in a written agreement between you and bnp paribas group * . any unauthorised disclosure , use or dissemination , either whole or partial , is prohibited . if you are not the intended recipient of the message , please notify the sender immediately . * bnp paribas group is a trading name of bnp sa and paribas sa ce message est confidentiel ; son contenu ne represente en aucun cas un engagement de la part du groupe bnp paribas * sous reserve de tout accord conclu par ecrit entre vous et le groupe bnp paribas * . toute publication , utilisation ou diffusion , meme partielle , doit etre autorisee prealablement . si vous n ' etes pas destinataire de ce message , merci d ' en avertir immediatement l ' expediteur . * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas sa",0 +"Subject: fw : winston debbie , this is an update on the continuing winston saga . tanya identified the sections of the code that produce inefficiencies but the rest is in the winston ' s hands . steve stock is very cooperative and takes a very rational , enron - first approach to the problem . privately , my concern is that the code , based on tanya ' s report to me , leaves a lot to be desired . the code tends to be a very mechanical implementation of the algorithm , developed without a series attempt to optimize it . let ' s keep paddling along . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001 08 : 53 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : stephen stock / enron @ enronxgate on 01 / 23 / 2001 05 : 38 pm to : vince j kaminski / hou / ect @ ect cc : subject : fw : winston vince , . . . just to keep you in the loop on the tanya / winston issue . . . regards steve - - - - - original message - - - - - from : stock , stephen sent : tuesday , january 23 , 2001 5 : 36 pm to : tamarchenko , tanya subject : re : winston tanya , i just checked in with the contractors here . . . . . and it looks like it might be a good idea for you to spend about 30 minutes with them to give you a guided tour of their documentation . it ' s presented as a linked set of word documents and visio drawing , with links to all the reletive parts as hyperlinks . it ' s pretty good and i imagine it will be very usefull to you , but probably requires a little introduction first . please feel free to come to my office whenever it is convenient . even if i ' m not available , the guys are just outside my office and i can easily stop whatever i ' m doing to introduce you to the project manager . regards steve - - - - - original message - - - - - from : tamarchenko , tanya sent : tuesday , january 23 , 2001 4 : 53 pm to : stock , stephen subject : re : winston steve , - we spent about 5 fruitful hours with winston last week . - i pretty much understand the data flow when the code runs . - i also got an idea where the time is spent during the execution of the code by questioning winston . i did not see any results of profiling the code . winston ' s opinion is ( as i understood ) that he knows how much time is spent on different calculations and profiling is not easy to do , so we don ' t need to do it . - based on above i suggested possible way to reduce the time credit model takes to run and we discussed it with debbie , who was going to arrange a meeting with winston . - it might be useful to look at the documentation created by contractors , if you have it handy - send it to me , please . thank you , tanya . from : stephen stock / enron @ enronxgate on 01 / 23 / 2001 03 : 38 pm to : tanya tamarchenko / hou / ect @ ect cc : subject : winston tanya , how ' s it going with code - review from your perspective ? . . . did you manage to talk to our documentation contractors ? . . . if not , would you me to arrange for them to bring you the documentation as it currently stands ? regards steve",0 +"Subject: risk article fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 23 / 2001 09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - ben parsons 01 / 23 / 2001 08 : 51 am to : nigel price / lon / ect @ ect , george albanis / lon / ect @ ect , markus fiala / lon / ect @ ect , jean - sebastien fontaine / corp / enron @ enron , katherine siig / eu / enron @ enron , amitava dhar / corp / enron @ enron , vasant shanbhogue / hou / ect @ ect , ilan hershkovitz / lon / ect @ ect , greg hedger / lon / ect @ ect , david a wall / risk mgmt / lon / ect @ ect , simon brooks / lon / ect @ ect cc : bryan seyfried / lon / ect @ ect , steven leppard / lon / ect @ ect subject : risk article everyone should read the attached risk article about calculating def probs from cds quotes . amazingly it is in pretty close agreement with our own methodology for both cds valuation and reverse engineering def probs . the only extension in the reverse engineering is that instead of linearly interpolating cds quotes , they propose minimising an error measure based on ' smoothness ' of def prob curve and difference between model and market prices . what is also amazing is the fact that this article has been published in risk , given that it is essentially the same as my credit pricing paper , plus one excellent idea . given extra time , resources and brainpower , there is no reason why we shouldn ' t have similar work published ourselves . ben ( thanks steve for pointing this article out ) - - - - - - - - - - - - - - - - - - - - - - forwarded by ben parsons / lon / ect on 23 / 01 / 2001 14 : 40 - - - - - - - - - - - - - - - - - - - - - - - - - - - london fax system 2 23 / 01 / 2001 14 : 09 to : ben parsons / lon / ect @ ect cc : subject : new fax received ( likely sender : + 44 20 7783 8076 ) . you have received a new fax from + 44 20 7783 8076 the image contains 3 page ( s ) .",0 +"Subject: houston trip hello everyone ! regarding the tiger team research project houston trip , these are the rsvp ' s i ' ve received : jaideep singh dennis feerick kim whitsel "" and team 1 "" ram vittal heather thorne pat henahan vincent chen jack rejtman deepa mallik josh leventhal edson otani omar bassal stephen lessar clayton dediocinto . note : heather and jack have requested to stay in houston until sunday ( expenses other than air fare , beyonfd friday at enron will be individually borne ) . donna , would you please review this list , add the individual names of "" team # 1 ) , add any additional faculty , t . a . ' s etc , that will be attending , and returnm this list to me and my assistant , "" melinda mccarty "" who will begin the arrangements . also , if others would prefer sunday returns to phily , on the same terms offered heather and jack , please so indicate no later than tuesday , dec . 20 . please inform donna , who will then prepare and forward to me and my assistant melinda ( e - mail address above ) one complete , confirmed list of attendees . the plan will be to leave phily on thurs afternoon , arrive late aft thursday , dinner at churrasco ' s south america restaurant thursday evening with me , vince , vance , jeff shankman , and possibly a few others from enron . hotel thursday evening and ground transportation through return to airport will be arranged by enron . friday will be reserved for an enron tour , and individual meetings the teams would like to set up with members from variuous business units return will be scheduled for early fri evening , except for those electing to stay through sunday . again , except for return to airport and airfare , expenses beyond friday afternoon will be borne by each respective student ( though we encourage you to stay and look around this great city of houston ! ) . thanks donna , for your immediate assistance with this - - vinve , vance , jeff and i are excited about the trip ! ! regards ! - - christie .",0 +"Subject: re : my model for spikes dear vince , thank you very much for your e - mail . i am very excited about the opportunity y to see you soon in dallas . any week day , in general , and fridays , in particular , is convenient for me . please let me know what day might be convenient for you . i look forward to hearing from you and to seeing you soon . sincerely , valery",0 +"Subject: re : resume ok vince j kaminski 01 / 17 / 2000 12 : 46 pm to : elizabeth grant / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : re : resume elizabeth , please , include jim fallon on the list . vince from : elizabeth grant 01 / 17 / 2000 09 : 39 am to : vince j kaminski / hou / ect @ ect cc : subject : re : resume will do ! - elizabeth vince j kaminski 01 / 17 / 2000 08 : 21 am to : elizabeth grant / hou / ect @ ect cc : grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect , james b fallon / hou / ect @ ect subject : resume elizabeth , i would like to bring this guy in , not necessarily to hire him , though it ' s a possibility , but mostly to find out what cinergy is doing . we should include some power traders and originators in the interview list . grant masson can give you some hints . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2000 08 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - marshall . brown @ robertwalters . com on 01 / 14 / 2000 02 : 48 : 42 pm to : vince j kaminski / hou / ect @ ect cc : subject : resume vince , hope all is well . this candidate would be interested in talking with you . regards , marshall brown robert walters associates 212 - 704 - 0596 this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . if you have received this email in error please notify the system manager . this footnote also confirms that this email message has been swept by mimesweeper for the presence of computer viruses . - yu _ hai . doc",0 +"Subject: re : summer work . . jinbaek , this is a project related to automated trading platforms for commodities . vince jinbaek kim on 05 / 02 / 2001 05 : 21 : 40 pm to : vince . j . kaminski @ enron . com cc : subject : re : summer work . . dr . kaminski , thanks for your mail . i am sorry that i ' ll not be available earlier , i will talk with my advisor , but probably it will be pretty negative . however , i may be able to start it from junel , depending on what he tells . . we will meet tomorrow afternoon , so i ' ll be able to let you know whether we can start work earlier then . and could you tell me briefly what are those projects you have in mind ? thanks ! jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on wed , 2 may 2001 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > thanks for your message . > > we have a number of additional fascinating projects that you can work > on . as a matter of fact , it would be great to have you here earlier . > > vince > > > > > > "" jinbaek kim "" on 05 / 02 / 2001 05 : 18 : 32 am > > to : , "" raghavan , suresh "" > , "" mesquita , ross "" > > cc : > subject : summer work . . > > > long time no see , > how have you been . . . must be busy and living a challenging life ? > i have been pretty busy too , > to finish a project and write a paper , these days . > > everything looks going ok for my summer internship . > i took necessary steps to work out of campus , and sent > signed contract to molly a week ago . . > > here is what i am expecting to do in the summer . > please let me know if you have any change in mind . > actually , i wonder a little bit if dealbench changed its business model . . . > and maybe you got priority in something different > because it has been quite a while since we talked . > i ' d like to what ' s going on in dealbench team . . . > raghavan and ross , > if we talk over phone it will be great ! > > dr . kaminski , > if you think there is something else interesting to work with during the > summer , > to both you and i , please let me know . > my interest is auction , market design , and simulation . > i am taking a financial engineering class , ( mostly on option pricing ) > and working on electricity generator valuation problem based on > spark spread option . > > all of you , > let ' s keep in touch until we meet in june ! ! > > best regards , > jinbaek > > > tentative work period : 6 / 4 - 8 / 4 > > 1 . tasks : > 1 ) survey on auctions : the state of art > single - item auction , multi - unit auction , sequential auction , > multi - attribute auction , combinatorial auction > > - theoretical > - experimental > - algorithmical > > 2 ) deal bench ' s auction model analysis > > 2 . deliverables : > 1 ) 3 presentations : > - lst presentation : around 6 / 30 : on different auction types and > researches > - 2 nd presentation : around 7 / 15 : the state of art in auction studies > - 3 rd presentation : around 8 / 1 : deal bench ' s model analysis > > 2 ) report : > summary of auction study in laymen ' s term > deal bench ' s model analysis > > > > > > >",0 +"Subject: re : merit increases vince , i am going to have the team look at the problem . hopefully it will be an easy fix . otherwise , we can work off the worksheets that you complete over the weekend . you have my cell number if you have any questions . norma villarreal 713 - 598 - 1545 vince j kaminski 01 / 19 / 2001 06 : 09 pm to : norma villarreal / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : merit increases norma , it seems that there is a bug in the system . i made an error mixing equity and merit raises in one column . the system does not allow me to correct the mistake by moving the entries from one column to another . i can enter the changes , but after i save them the system reverts to original designations . as a result , the columns contain mixed entries related to merit and equity raises . the column totals are misleading . i am taking a csv version home to continue making adjustments . i shall work at home monday ( 281 367 5377 ) . vince",0 +"Subject: sharad agnihotri : telephone chat following the offer hi kate , thanks for setting up the telephone informal discussion with sharad so that i can make him more comfortable with what ' s on offer - i really think it will make the difference . as you mentioned , the agency fee goes up from 25 % to 30 % at 50 , 000 , hence the offer of 49 , 000 . i guess , as you mentioned , we can keep in reserve the possibility of an element of sign on bonus to get him over the decision hump . regards & thanks , anjam",0 +"Subject: re : summer intern hi steve , thanks for the fyi ; i ' d be happy to interview him if you need a second opinion at the telephone interview you ' re arranging next week . regards , anjam steven leppard 29 / 03 / 2000 17 : 19 to : anjam ahmad / lon / ect @ ect cc : subject : re : here it goes ! - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 03 / 29 / 2000 05 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 29 / 2000 03 : 45 pm to : steven leppard / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : here it goes ! steve , taking summer interns is the best way to screen and identify good candidates at low cost and low risk . i would take this person in , assuming you can still run it by the analyst / associate program . they closed the books for the summer . let me know if you run into any roadblock . i shall try help you from here . vince steven leppard 03 / 29 / 2000 08 : 31 am to : vince j kaminski / hou / ect @ ect cc : subject : here it goes ! vince do you have any views on taking summer interns here in the research group in london ? one of our analysts has recommended a friend of hers ( resume attached ) . i ' m sure we could dream up some work for an intern , so let me know what you think . many thanks , steve - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 03 / 29 / 2000 03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zuzana strmenova 02 / 23 / 2000 10 : 51 am to : steven leppard / lon / ect @ ect cc : subject : here it goes ! thanks , a lot steve .",0 +"Subject: erequest password your erequest ' s password is 4311 to use this password , go to the erequest website and click on non - corp logon . put in your email address and the password above and click log in , and you will log into erequest .",0 +"Subject: re : term project : dear vince , i was wondering if you were able to open the attachment with my resume this time . rumor has it that you are currently hiring people for your group . is this true ? sincerely , helen - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 11 , 2001 3 : 22 pm to : isranir @ rice . edu ; demianen @ rice . edu ; tbal 93 @ yahoo . com ; maue @ rice . edu ; loughrid @ rice . edu ; jblantonjr @ yahoo . com ; gjohnson @ rice . edu ; emchombo @ rice . edu ; nazareth @ rice . edu ; vanstone @ rice . edu ; ganguzza @ rice . edu ; nelsonb @ rice . edu ; sssmith @ rice . edu ; wheelock @ rice . edu ; westmore @ rice . edu ; gaudette @ rice . edu ; otaylor @ rice . edu ; dikeman @ rice . edu ; jettke @ rice . edu ; litton @ rice . edu ; chilkina @ rice . edu ; helms @ rice . edu ; wankhade @ rice . edu ; monfan @ rice . edu ; kostya @ rice . edu ; pcp @ rice . edu ; yueguo @ rice . edu ; nlwbio @ rice . edu ; zhangn @ rice . edu ; rishad @ rice . edu ; yoshiura @ rice . edu ; howard @ rice . edu ; dayangd @ rice . edu ; wuwei @ rice . edu ; so @ rice . edu ; wooddy @ rice . edu ; lamas @ rice . edu ; tbalestrery @ houston . rr . com ; hingoran @ rice . edu ; planck @ rice . edu cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com ; jason . sokolov @ enron . com subject : term project : this is the list of projects for the members of the "" quant "" team . if you are working on different project , please , ignore this message . please , develop in a spreadsheet solutions / examples for the following : 1 . black - scholes formula 2 . black ' s formula 3 . develop a spreadsheet to simulate price trajectory using : a . gbm b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 ) c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 ) 4 . schwartz single factor model ( formula 6 . 12 ) 5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8 vince",0 +"Subject: xpress and cplex runtime comparison results vince , fyi below is the comparison of the computation time results from cplex and xpress optimization softwares . - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 05 / 19 / 2000 03 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 05 / 17 / 2000 05 : 48 pm to : samer _ takriti @ enron . net , stinson gibner / hou / ect @ ect , ravi thuraisingham / enron communications @ enron communications cc : tom halliburton / corp / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect , ming - lung . lee @ sycamorenet . com , ming 888 lee @ aol . com subject : xpress and cplex runtime comparison results hi , i have tested both cplex and xpress - mp optimization software in solving our network design problem . xpress is more user friendly hence it takes less developing time . however , cplex performs significantly better in term of computation time , especially in integer programming . as a result , eventhougth xpress is easier to use and cheaper , i would recommend our ebs group to use cplex . please let me know what do you think . . . the test problem has 10 nodes , 77 cables , 5 cable speed . the table below represents the computation time in seconds for solving this problem . the second column indicates if the general integer variables are relaxed ( but still keep the binary variables ) . the "" lp "" column represents the computational time when solving relaxed problem ( no binary & integer variable constraints ) . xpress took too much time in solving case 4 and 6 so i had to stop the process and report the best solutions it found . below are the graph .",0 +"Subject: meeting with mr . sud vince / stinson , i met with rebecca mcdonald , and introduced her to mr . sud on saturday . the meeting went on quite well , and mr . sud repeated the point he had made to me regarding ntpc buying the power . he did not ask for any consulting or other contract , but said that he would try to help . rebecca seemed happy with the meeting , but i do not know whether she has a plan in mind going forward . i can give you more details of the meeting if anyone is interested . i do believe that mr . sud is well connected in india . regards , sandeep .",0 +"Subject: interview with enron corp . research good morning adam : the enron corp . research group would like to conduct an informal interview with you at your convenience . please give me some dates and times that would be convenient to , sometime within the next 2 - 3 weeks and i will coordinate an interview schedule . i look forward to hearing from you very soon . best regards , shirley crenshaw administrative coordinator enron corp . research 713 - 853 - 5290 email : shirley . crenshaw @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001 09 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" adam bobrowski "" on 03 / 07 / 2001 09 : 45 : 03 pm to : cc : subject : resume dear mr . kaminski , as a follow - up to your oral communication with my friend tom ware , i would like to express my interest in working for your company , enron . please find enclosed my resume and curriculum vitae . if you need additional data , please feel free to call me at ( 713 ) 592 - 8909 ( home ) or ( 713 ) 743 - 3483 ( office ) , or email me at adambob @ stat . rice . edu or adambob @ math . uh . edu . yours sincerely , adam bobrowski . - cvbobrowski . ps - bobrowskiresume . doc",0 +"Subject: australian energy 2000 dear vince , i hope you are well and that things round at enron aren ' t too hectic . it is my pleasure to invite you to speak at energy any help would be gratefully received . this event will be thoroughly marketed through both energy & power risk management magazine and our extensive database . it is my aim to attract the leading market players by providing a first - class programme with top - rated speakers , making this a highly worthwhile event for the energy industry . i have attached a copy of the programme for your information . unfortunately my schedule for this event is very tight . please let me know if you would like to participate by reurn email as it is unlikely that we can speak on the phone as i am currently based in hong kong . if you would like to send a colleague , then i would be happy to discuss this but it would be great if you could complete the eprm grand slam by addressing our three major annual events on three different continents ! i look forward to hearing from you soon . yours sincerely , joel hanley producer , eprm conferences & courses - australianenergy 2000 . doc _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ eprm conferences risk publications hong kong tel : 852 2545 2710 fax : 852 2545 7317 www . riskpublications . com",0 +"Subject: new 22 cpm color copier information kevin , i am not sure by what date you require a color copier but if you can wait until april , lanier has let me know that they are going to release their new 22 copy per minute color copier @ that time . please look @ the attached spreadsheet and compare the cost with the $ 24 cpm canon copier sent to you on 01 / 31 / 2000 : let me know what you think . thanks , iain . . . . . . . . . . . . . . . . . iain russell 02 / 01 / 2000 10 : 11 am to : kevin g moore / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect subject : revised 10 cpm color copier information kevin , i revised the cost on the 10 cpm tab under cpi : - - > thanks , iain . . . . . . . . . . . . . . . . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by iain russell / epsc / hou / ect on 02 / 01 / 2000 10 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - color copier information from : iain russell on 01 / 31 / 2000 11 : 45 pm to : kevin g moore / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , carole rogers / epsc / hou / ect @ ect subject : color copier information",0 +"Subject: talon find attached the mc model for talon . a copy of this spreadsheet may be found on o : \ research \ custom \ projects \ talon \ paulo issler",0 +"Subject: re : houston visit soussan , thanks . see you at 6 : 30 . vince "" faiz , soussan "" on 01 / 24 / 2001 10 : 46 : 57 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : houston visit vince , great . . . i ' m glad that you ' re in town on wed . 1 / 31 . i ' ll be staying @ the westin oaks in the galleria . let ' s pls meet @ the hotel ' s lobby at 6 : 30 pm . i have both your work and cell # and my work # is below ( just in case ) . i look forward to our dinner and catching up . best , soussan 914 253 4187 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , january 24 , 2001 10 : 52 am to : faizs @ texaco . com cc : vince . j . kaminski @ enron . com subject : re : houston visit soussan , nice to hear from you . dinner on wednesday , jan 31 would be great . please , let me know where you are going to stay . vince "" faiz , soussan "" on 01 / 22 / 2001 04 : 29 : 08 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : vkaminski @ aol . com subject : re : houston visit hello vince , happy 2001 and hope all is well . i ' ll be in houston the week of 1 / 29 . it will be great to have our belated dinner preferably on wed . 1 / 31 . pls let me know whether you ' re available on wed . or , if not , another day that week . best , soussan 914 253 4187",0 +"Subject: re : real options openings ? shirley , austin . please , set up an interview with me , stinson , zimin , vasant , grant , paulo , krishna . sometimes next week . let ' s make it a formal interview ( coordinated through elizabeth grant ) . vince shirley crenshaw 05 / 08 / 2000 09 : 27 am to : vince j kaminski / hou / ect @ ect cc : subject : re : real options openings ? vince : is this gentleman in houston ? when do you want to bring him over - next week ? thanks ! vince j kaminski 05 / 08 / 2000 09 : 25 am to : christopher m kenyon @ enron cc : stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : real options openings ? chris , we shall make arrangements to bring you over for an interview . our hr department will contact you later this week . vince christopher m kenyon on 05 / 05 / 2000 07 : 56 : 11 am to : vkamins @ enron . com cc : subject : real options openings ? dear vince kaminski , i was auditing prof dyer ' s real options class on thursday when you spoke on enron ' s activities in this area . i would be interested in exploring the possibility of joining the group that works on real options in response to and in anticipation of enron ' s business requirements . i ' m currently working in the development and application of real options methodology at schlumberger . in particular i ' ll be speaking at an industry real options valuation conference in london ( http : / / www . iqpc . co . uk / finance / rov / ) and i just had the paper accepted for publication in operations research . could you pass my resume on to the relevant people to have a look at ? thanks in advance , chris kenyon - cmkenyon _ cv _ mayo 0 . doc",0 +"Subject: re : witaj wicku ! marek , jestem w trakcie organizacji programu interview w houston . musze skoordynowac plany 3 - 4 osob , ktore powinny cie spotkac . wicek mark kierlanczyk on 02 / 05 / 2001 11 : 43 : 09 am to : "" ' vkamins @ enron . com ' "" cc : subject : witaj wicku ! przez tydzien musialem poddac sie medycznej dygresji zapoznania sie co to znacza kamienie nerkowe . teraz jest juz dobrze i znow powraca do mnie nadzieja aby zyc wiecznie . czy zdarzylo sie cos nowego odnosnie mojej wizyty w houston ? jesli nie to umowmy sie na 13 lutego w nowym yorku , gdzie i kiedy , jesli nadal masz zamiar przyjechac . serdeczne pozdrowienia - marek",0 +"Subject: fwd : enron / stanford program content - transfer - encoding : 7 bit return - path : received : from rly - yco 3 . mx . aol . com ( rly - yco 3 . mail . aol . com [ 172 . 18 . 149 . 35 ] ) by air - yco 5 . mail . aol . com ( v 76 _ rl . 8 ) with esmtp ; fri , 06 oct 2000 14 : 29 : 58 - 0400 received : from smtp . stanford . edu ( smtp . stanford . edu [ 171 . 64 . 14 . 23 ] ) by rly - yco 3 . mx . aol . com ( v 75 _ b 3 . 9 ) with esmtp ; fri , 06 oct 2000 14 : 28 : 30 - 0400 received : from stanford . edu ( dialup - 209 . 245 . 133 . 121 . sanjosel . level 3 . net [ 209 . 245 . 133 . 121 ] ) by smtp . stanford . edu ( 8 . 9 . 3 / 8 . 9 . 3 ) with esmtp id laaol 053 ; fri , 6 oct 2000 11 : 28 : 25 - 0700 ( pdt ) message - id : date : fri , 06 oct 2000 11 : 33 : 46 - 0700 from : nick bambos x - mailer : mozilla 4 . 7 [ en ] ( win 98 ; i ) x - accept - language : en , el mime - version : 1 . 0 to : vince . j . kaminski @ enron . com , vkaminski @ aol . com , gappy @ stanford . edu subject : re : enron / stanford program references : content - type : text / plain ; charset = us - ascii vince , i have managed to change my ticket and we can meet for dinner on sunday 10 / 15 / 00 . shall we say at 7 pm ? > > > > giuseppe : can you please join us for dinner on sunday 10 / 15 . we ' d like to briefly discuss the project too . could i please ask you to make reservations for 3 at il fornaio or some other nice place in palo alto ? preferably a quiet place where we can talk . > nick , > > dinner on sunday would work for me . i shall stay > in the bay area till monday morning . > > vince > > nick bambos on 09 / 28 / 2000 08 : 33 : 38 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : enron / stanford program > > hi vince , > > i am on the technical program committee of the infocom 2001 conference , > and we are meeting in new york city on saturday , october 14 th , to select > papers for the conference program . i ' m leaving stanford on friday and > getting back on sunday . > > it might be a possibility to have dinner together on sunday , if that would > work for you . in that case i would have to reschedule my flight to land > in sfo earlier than i ' m currently scheduled to land . > > would dinner on sunday work for you ? any chance we can meet monday for > lunch ? > > i look forward to seeing you . > > best regards , > > nick > > vince . j . kaminski @ enron . com wrote : > > > > nick , > > > > i shall be in stanford oct 14 - 15 , visiting my family . > > i would be glad to meet you ( and possibly giuseppe - your call ) for > lunch . > > please , let mer know if you are free on one of these days . saturday would > > work better for me . > > > > vince > > > > nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm > > > > to : stinson . gibner @ enron . com > > cc : vince . j . kaminski @ enron . com > > subject : re : enron / stanford program > > > > stinson , > > > > great ! i ' m looking forward to a very productive collaboration . > > i ' ll immediately start doing giuseppe ' s papers , for him to work > > on the enron / stanford program . > > > > many thanks to you and vince , and i hope to see you soon at stanford > > or enron . if i remember correctly , vince is visiting stanford in > > october . > > > > best regards , > > > > nick > > > > stinson . gibner @ enron . com wrote : > > > > > > nick , > > > > > > i spoke with paul racicot , head of trading for ebs , north america this > > > morning . he said that he is happy to send the $ 100 , 000 for your > program > > > from his budget . i have forwarded to him the draft letter to > accompany > > > the funds and will try to follow up to make sure that the money is sent > > > promptly . > > > > > > - - stinson",0 +"Subject: re : vmi agreements ravi , maybe stinson can get on this conference call . i shall be at the office on thursday only this week . vince ravi thuraisingham @ enron communications on 02 / 20 / 2000 01 : 13 : 06 am to : vince kaminski , mark holsworth / corp / enron @ enron cc : laura beneville , kristy carnes / enron communications @ enron communications , kristy carnes / enron communications @ enron communications subject : re : vmi agreements hi vince , mark holsworth reviewed our contract on such a short notice . i thank mark for responding to our short - notice request . it turns out that we need to get this database to move forward on a number of things and have legal save some time for us is an excellent help . as mentioned below , it appears that pennwell ' s folks want to chat some more about this . mark , can you schedule a conference call with these people to finalise this contract . i will be out of town all week next week on a lock - down deal meeting . vince may be able to get on the conference call . i would greatly appreciate it if you could help us close this one ! regards , ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 20 / 00 12 : 38 am - - - - - russell @ pennwell . com 02 / 18 / 00 06 : 16 pm to : ravi thuraisingham / enron communications @ enron communications cc : toni . turnerbudd @ sbtglaw . com subject : re : vmi agreements ravi - i would like to schedule a conference call between you , me , pennwell ' s counsel ( toni turner budd ) , and enron ' s counsel to discuss your changes and finalize the kmi end - user license agreement . i propose that we have the conference call at 2 : 00 pm cst this monday , february 21 . please let me know if you are available at this time and , if not , propose an alternative time for the call . in addition , please provide me with a telephone number where i can reach you for the conference call . pennwell is looking forward to finalizing the license agreement and delivering the kmi data to enron . yours truly , russell iorio manager of business development pennwell corporation 1421 south sheridan road tulsa , ok 74112 russell @ pennwell . com ( 918 ) 831 - 9122 direct ( 918 ) 831 - 9476 fax - - - - - original message - - - - - from : ravi _ thuraisingham @ enron . net [ mailto : ravi _ thuraisingham @ enron . net ] sent : thursday , february 17 , 2000 6 : 30 pm to : rmack @ kmicorp . com ; mpass @ kmicorp . com ; russell @ pennwell . com cc : kristina _ lund @ enron . net ; stinson _ gibner @ ect . enron . net ; vince _ kaminski @ enron . net ; earl _ harvey @ enron . net ; tracy _ williams @ enron . net subject : vmi agreements > hi richard , here is a marked up version from our lawyer . please have your people look at it and if it seems fine make the changes and send a signed copy back to me . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 06 : 21 pm - - - - - | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | mark | | | holsworth @ enr | | | on | | | | | | 02 / 17 / 00 | | | 04 : 10 pm | | | | | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > - | | | | to : ravi thuraisingham / enron communications @ enron communications , | | gene diers / corp / enron @ enron | | cc : | | subject : vmi agreements | - | please find attached my redlining of the vmi agreelment . please review it and send it to the vendor for their review . ( see attached file : 2 - 14 - 2000 eula . doc )",0 +"Subject: re : another stanford acceptance thanks so much vince ! vince j kaminski @ ect 04 / 23 / 2001 11 : 09 am to : althea gordon / na / enron @ enron cc : greg . whalley @ enron . com , traci . warner @ enron . com , patricia . payton @ enron . com subject : re : another stanford acceptance althea great news . it ' s all your hard work . vince althea gordon @ enron 04 / 20 / 2001 01 : 43 pm to : vince . kaminski @ enron . com , brad . romine @ enron . com , brad . alford @ enron . com , martin . lin @ enron . com , stephen . swain @ enron . com , matt _ harris @ enron . net , elliot . mainzer @ enron . com , mauricio . mora @ enron . com , victor . browner @ enron . com cc : greg . whalley @ enron . com , traci . warner @ enron . com , patricia . payton @ enron . com subject : another stanford acceptance stanford team , we have received yet another acceptance - noah jacobs has accepted our offer as a summer associate . we are now 4 of 6 for our summer offers . i have sent paul kasper , our one full time offer a cultivation gift and will be checking in on him next week . also eric cope , a stanford student that vince kaminski ' s group had interviewed here in houston for a summer associate position has also accepted . all in all our stanford numbers are looking great ! many thanks to everyone and keep up the great work ! althea ",0 +"Subject: re : tuesday interview hi vince , thanks for replying to my email . the scheduled interview with howard will go ahead tomorrow , i have written to shirley to request a convenient time for you and we will arrange for howard to come back in for a video conference with you . regards rachel vince j kaminski @ ect 16 / 02 / 2001 23 : 42 to : rachel quirke / eu / enron @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : tuesday interview rachel , i would like very much to interview howard but i am in philadelphia on tuesday . vince",0 +"Subject: re : hi vince : i think full time employment starting in about six months seems to be the best option . it is probably best to get my dissertation wrapped up before taking on additional commitments . regards zeigham - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : zkhokher @ mail . utexas . edu cc : vince . j . kaminski @ enron . com ; stinson . gibner @ enron . com date : tuesday , april 11 , 2000 10 : 25 am subject : re : hi zeigham , we discussed two options ( not necessarily mutually exclusive ) : 1 . summer internship 2 . full employment . are you interested exclusively in full employment ? i need the answer asap , as we are going to discuss the additional summer intern positions this afternoon . vince zkhokher @ mail . utexas . edu on 04 / 11 / 2000 01 : 06 : 14 pm to : cc : subject : hi vince : it was very nice talking to you at the texas finance festival and i think the telecom market that enron is entering is very interesting and very lucrative . i would be very interested in working in that segment for enron . however , i talked to sheridan about this oppurtunity and he said that it is probably going to be another six months before i finish my dissertation . so while i am definitely interested , the start date will probably have to be around that time . at any rate , it was a pleasure meeting you again and hopefully once i have defended my dissertation we can discuss employment oppurtunities in greater detail . regards zeigham zkhokher @ mail . utexas . edu 512 - 471 - 1676",0 +"Subject: re : hello from vince kaminski at enron that will be a great talk shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : cc : ; sent : tuesday , august 29 , 2000 5 : 01 pm subject : re : hello from vince kaminski at enron > > shmuel , > > the date of our trip to berkeley has been set . it will be october 16 th and > 17 th > ( monday and tuesday ) . > > i shall be glad to make a presentation on energy derivatives markets > ( development of the markets in the us and europe , valuation difficulties , > enron ' s role > in developing the forward markets for natural gas and electricity ) . > > please , let me know if this topic would be of interest to you . if this is > the > case , i shall follow with a title and an abstract . > > by the way , are you free for dinner on monday ? > > vince > > > > > > > "" shmuel oren "" on 08 / 24 / 2000 08 : 59 : 38 am > > to : "" vince j kaminski "" > cc : > subject : re : hello from vince kaminski at enron > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a > title and abstract . > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > shmuel s . oren , professor > dept . of industrial engineering > and operations research > 4117 etcheverry hall > university of california > berkeley , ca 94720 - 1777 > e - mail : oren @ ieor . berkeley . edu > phone : ( 510 ) 642 - 1836 or 5484 > fax : ( 510 ) 642 - 1403 > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > - - - - - original message - - - - - > from : "" vince j kaminski "" > to : "" shmuel oren "" > cc : "" vince j kaminski "" ; "" ashley baxter "" > > sent : thursday , august 24 , 2000 9 : 58 am > subject : re : hello from vince kaminski at enron > > > > > > > > shmuel , > > > > thanks for the message . i am working with our recruiter , ashley baxter , > > to finalize the date of the trip . i shall shoot for october the 23 rd > > if this date works for the rest of our team . > > > > vince > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am > > > > to : vince j kaminski / hou / ect @ ect > > cc : > > subject : re : hello from vince kaminski at enron > > > > > > > > dear vince . > > i sent you a reply earlier this month but i haven ' t heard from you about > the > > date of your visit . our department has a seminar every monday . if you can > > schedule your visit on a monday i would like to invite you to give a > seminar > > which will be attended by many of our graduate students and faculty and > will > > give you an opportunity to tell them about your program . with sufficient > > lead - time i can advertise the seminar in the hass school to their > financial > > engineering students . > > shmuel . > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > shmuel s . oren , professor > > dept . of industrial engineering > > and operations research > > 4117 etcheverry hall > > university of california > > berkeley , ca 94720 - 1777 > > e - mail : oren @ ieor . berkeley . edu > > phone : ( 510 ) 642 - 1836 or 5484 > > fax : ( 510 ) 642 - 1403 > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > - - - - - original message - - - - - > > from : > > to : ; ; > > > > sent : tuesday , august 08 , 2000 10 : 59 am > > subject : hello from vince kaminski at enron > > > > > > > shmuel , > > > > > > i hope you remember me . i visited you together with aram sogomonian , a > > > good friend of mine , a few years ago . i am currently responsible , among > > > other things , for recruiting graduates with finance and / or technical > > > backgrounds at the university of berkeley . i would be glad to give you > a > > > call and talk more about the details of our program . my colleague , > > > ashleybaxter , from the analyst / associate program at enron would join me > > > as well . > > > > > > i am sending you a copy of the brochure about the analyst / associate > > > program . > > > > > > vince kaminski > > > > > > > > > vincent kaminski > > > managing director - research > > > enron corp . > > > 1400 smith street > > > room ebl 962 > > > houston , tx 77002 - 7361 > > > > > > phone : ( 713 ) 853 3848 > > > fax : ( 713 ) 646 2503 > > > e - mail : vkamins @ enron . com > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : argentina modelling michael , sorry , i was out around the holidays . i shall be glad to meet with you in the lst week of january . please call me ( 3 - 3848 ) or my assistant , shirley crenshaw , 3 - 5290 . vince michael guerriero @ enron _ development 12 / 20 / 99 02 : 31 pm to : vince j kaminski @ ect cc : subject : argentina modelling i am responsible for our argentina operation and would like to discuss some modelling issues with you . could you be available wednesday for a meeting . thanks mfg",0 +"Subject: re : anita dupont resume oooopppss ! please disregard the e - mail below as i see now that shirley has already sent the job description to norma villarreal . my apologies . irma alvarez ext . 3 - 1543 - - - - - - - - - - - - - - - - - - - - - - forwarded by sheila walton / hou / ect on 08 / 07 / 2000 11 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : sheila walton 08 / 07 / 2000 10 : 58 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , norma villarreal / hou / ect @ ect subject : re : anita dupont resume mr . kaminski , in sheila walton ' s absence ( she is on vacation this week ) , please go ahead and have shirley crenshaw forward the job description that you would like posted to norma villarreal for handling . if you or shirley require any additional assistance before forwarding your material to norma , please feel free to contact me . thank you . irma alvarez ena hr coordinator ext . 3 - 1543 vince j kaminski 08 / 07 / 2000 08 : 29 am to : sheila walton / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , norma villarreal / hou / ect @ ect subject : re : anita dupont resume sheila , no , we have to go through the posting phase first . i shall ask shirley to provide the job description . vince from : sheila walton 08 / 04 / 2000 02 : 44 pm to : vince j kaminski / hou / ect @ ect cc : norma villarreal / hou / ect @ ect subject : re : anita dupont resume vince , alice has strong qualities for a sr admin asst . vince , have we posted this position on the job posting board ? if so , great . if not , we need to post this opening to prove that we have given an opportunity to all existing enron employees before we go outside to external candidates . otherwise , existing employees have a valid complaint that we are limiting their advancement within enron but hiring externally . if we have not posted this , i will have the recruiter contact shirley so shirley can give us a job description . then we can post and interview anita simultaneously . please let me know asap if this has been posted . thanks . sheila walton vince j kaminski 08 / 02 / 2000 08 : 48 am to : sheila walton / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : anita dupont resume sheila , i would like to hire anita dupont as a senior admin assistant , reporting to shirley . please , call me about it after you review the resume . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000 08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont @ enron 08 / 02 / 2000 08 : 17 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : anita dupont resume vince : here is the resume you requested . thanks . anita",0 +"Subject: thanks vince : thanks for the time that you took today . it was very interesting to meet with you . i ' d like to continue the discussions sometime . thanks again . shawn",0 +"Subject: phone numbers computer support : 713 - 348 - 8319 ( help with computer connection ) suzanna vazquez : 713 - 348 - 3736 ( copies , etc . ) please let me know if you have any more questions or if i can help in any way . pamela castro mba program associate rice university 713 - 348 - 6223",0 +"Subject: iris m . mack ms . mack has called you several times today trying to return your call . she is currently in new york until december 2 , 2000 . ms . mack is interested in talking with you regarding a position here . she is currently on vacation in new york and she will be difficult to reach . i suggested that she try to reach you by phone at 8 : 00 am our time tomorrow . also , she will be checking her emails and voice mails regularly if you can give her a time and a phone number where she might reach you whiole she is on vacation . if she is unable to reach you before the holiday , she left some phone numbers where she may be reached beginning tuesday , november 28 , 2000 in new york . tuesday , november 28 - thursday , november 30 washington square hotel 212 - 777 - 9515 friday , december 1 - saturday , december 2 marriott hotel 212 - 385 - 4900 also , her email is irismmack @ hotmail . com . she said you need both m ' s .",0 +"Subject: confirmation of your order this is an automatic confirmation of the request you have placed using it central . request number : ecth - 4 uznuy order for : vince 1 x ( compaq armada m 700 $ 2722 ) enron it purchasing * please send all status inquiries regarding this request to : mailto : receiving & hardware @ enron . com",0 +"Subject: thursday summer intern dinner vince : is it ok to send the following out to the interns ?",0 +"Subject: my first draft dear dr . kaminski this is quentin kerr again from australia . as i mentioned brefore , my paper will be ready soon . please find out the attachment with the draft of my paper ( hasn ' t submitted yet ) . there are always some errors in my paper . please read it , give me some suggestions . any comments will be appreciated . by the way , i would like to ask you , have you received my resume ? i sent it to you about two weeks ago . ps : attached with the pdf file . thanks quentin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 622 tel : ( 07 ) 33461428 department of mathematics , the university of queensland - jumpl . pdf",0 +"Subject: intranet site dear dale / all , thanks for the interest . . . i have already contacted intranet development about updates - they don ' t have to do much except publish the document and maybe add some headings , so it resources are not really a problem . as you suggest , what would be great is if we can get some more content in terms of well - explained introductions to various topics like value - at - risk , credit risk and so on . it should not be at too high a level and will probably have to be written specifically for this purpose . if you have time to put any interesting material together ( word docs , text files or power point presentations ) , please do pass it on to me and i will collate for the update . regards , anjam x 35383 dale surbey 15 / 06 / 2000 10 : 13 to : anjam ahmad / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , benjamin parsons / lon / ect @ ect , steven leppard / lon / ect @ ect , matthew d williams / lon / ect @ ect subject : re : e - commerce & continental europe anjam , this would be a good opportunity to update the content on the intranet site and expand the coverage into new areas . can you arrange some it resources for us ? if everyone in research works on developing the content , we just need it to publish it out to the intranet . thoughts ? ? - dale",0 +"Subject: re : eprm julie , sorry for the delay . i was traveling a lot the last few days . i shall send back my comments by saturday morning my time . vince "" julie "" on 10 / 13 / 2000 04 : 34 : 17 am to : "" vincejkaminski "" cc : "" lc "" , "" chris "" subject : eprm vince , ? could you please provide me with an indication on whether you will be able to review the latest eprm article in the next day or so ? ? ? look forward to hearing from you shortly . ? julie",0 +"Subject: re : kmv visit dear mr . seyfried , i am following up on the attached message from vasant shanbhogue who visited with us in san francisco recently . i will be in london on friday , march 31 st , and would be happy to drop by your offices to provide additional information on our products . at this point , the best time for me would be in the late afternoon ( 2 pm to 3 pm ? ) . please let me know if you would still like to meet and if this time will work for you . regards , rob - - - - - original message - - - - - from : vasant shanbhogue [ mailto : vasant . shanbhogue @ enron . com ] sent : friday , march 24 , 2000 10 : 56 am to : rudy @ kmv . com cc : bryan seyfried ; william s bradford ; vince j kaminski subject : kmv visit hi robert , following up on our visit to your office , vince kaminski and i are very interested in your products . bryan seyfried , who is heading up the credit trading operations in london , would like you to visit the london office when you are there next friday . he would like to discuss technical implementation details at that time , in addition to the overall framework . i will also give you a call to set up a time to have a more technical ( options modeling ) conversation over the phone . thanks , vasant shanbhogue vice president , research enron corp",0 +"Subject: re : brad romine that is fine . i look forward to visiting with him . celeste vince j kaminski 05 / 12 / 2000 08 : 56 am to : celeste roberts / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : brad romine celeste , as you may know , brad romine ' s dot . com venture fell apart . the offer from enron looks much better now . i have arranged for him a number of different interviews ( including one with you ) . i think we should not be too punitive and give him the 2 nd chance . i am setting up for him interviews with rac , ebs and greg whalley and he should be able to negotiate a good first rotation . please , give me a call if you have any other question . vince kaminski",0 +"Subject: lance ' s telephone hi vince : lance ' s telephone # is : ( 512 ) 280 - 5052 .",0 +"Subject: the url p . s . http : / / enaresearch . dev . corp . enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 01 / 09 / 2001 01 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : mike a roberts 01 / 09 / 2001 01 : 13 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , osman sezgen / hou / ees @ ees , maureen raymond / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , jose marquez / corp / enron @ enron , stephen bennett / na / enron @ enron , william smith / corp / enron @ enron , elena chilkina / corp / enron @ enron , steve bigalow / na / enron @ enron cc : subject : everybody , as vince suggested , i made a topical allocation of our new website for quality control . can you please check out in detail , and put through the paces , the following list ? weather mike links maureen technical analysis steve bigalow options library zimin ( this is a big one ! ! ) european weather jose agricaltural weather jose ( be sure and run spell check ! ! ! ) weather derivatives stephen presentations tanya nuclear outage updates sam fx and sovergn risk maureen industry analysis vasant publications osman research intelligence stinson hot button # 8 vince thanks , just email me with any problems or ideas for adds / changes - - - mike",0 +"Subject: template for pricing the right of first refusal shelley and chris , i have set up a template for pricing rofrs . the rofr is priced as a series forward start options . a forward start option gives the holder the right to exercise the option but the strike price is set at the money in future before the option expiration . the feature mimics the "" matching the best bid "" in the rofr . the underlying for the option is the "" best bid "" , which should be closely related to the price differential between the two hubs that the pipeline connects . therefore the rofr is case dependent , as vince pointed out . the volatility can be estimated from the "" best bid "" price history . with these inputs we can estimate the value of rofr . if you have any questions concerning the model please feel free to call me or vince . zimin lu",0 +"Subject: re : uc - berkeley graduate student vince , i agree . if you think that this candidate would be good for your group specifically - i would invite him in directly . hope all is well . ashley vince j kaminski @ ect 10 / 24 / 2000 04 : 09 pm to : ashley baxter / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : uc - berkeley graduate student ashley , this is one resume i got today . i think that it makes sense to invite him for an interview directly with my group . he does not qualify as an analyst candidate . what do you think ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000 04 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm to : vkamins @ enron . com cc : subject : uc - berkeley graduate student dr . vincent kaminski managing director and head of research enron corp . dear dr . kaminski , it was a pleasure talking with you and attending your talk today . i am a graduate student in industrial engg . and operations research working with prof . shmuel oren on topics in financial instrument pricing and design of contracts in deregulated electricity markets . i am also doing research in auction models and computable equilibrium models with applications in electricity market design . i am planning to graduate with a ph . d . in may 2001 and would appreciate hearing about any opportunities in your group at enron . i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal . thanking you , sincerely , rajnish kamat graduate student ieor , uc - berkeley 4135 , etcheverry hall dept . of industrial engineering and operations research university of california at berkeley berkeley , ca , 94710 - cvrkamat . doc",0 +"Subject: yen outlook vince , as a followup to our meeting with david port and rudi zipter re enron ' s investment in sk - enron , maureen and i wrote the attached position paper on the japanese yen . as we have discussed , the volatility of the won closely tracks fluctuation in the yen , and this yen position paper is intended to complement the won outlook piece for a broader perspective on currencies that takes into account the yen ' s influence on asian currencies . . we would like to distribute this outlook to david and rudi , but wanted to send it to you for initial reaction prior to internal distribution . thank you , and let me know if you have any questions or comments re the attached . gwyn",0 +"Subject: re : fwd : praca dyplomowa v edycja mba warszawa panie tomaszu , prosze poinformowac kolegow , ze przesle moje uwagi do niedzieli . w . kaminski vkaminski @ aol . com on 01 / 30 / 2001 06 : 27 : 25 am to : vkamins @ enron . com cc : subject : fwd : praca dyplomowa v edycja mba warszawa content - transfer - encoding : quoted - printable return - path : received : from rly - ygo 2 . mx . aol . com ( rly - ygo 2 . mail . aol . com [ 172 . 18 . 147 . 2 ] ) by air - ygo 3 . mail . aol . com ( v 77 . 31 ) with esmtp ; mon , 29 jan 2001 17 : 42 : 48 - 0500 received : from postmaster . enron . com ( outbound 5 . enron . com [ 192 . 152 . 140 . 9 ] ) by rly - ygo 2 . mx . aol . com ( v 77 . 27 ) with esmtp ; mon , 29 jan 2001 17 : 42 : 35 - 0500 received : from nahou - msmswo 2 px . corp . enron . com ( [ 172 . 28 . 10 . 38 ] ) by postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id waal 2034 for ; mon , 29 jan 2001 22 : 42 : 34 gmt from : vince . j . kaminski @ enron . com received : from ene - mtaol . enron . com ( unverified ) by nahou - msmswo 2 px . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp id for ; mon , 29 jan 2001 16 : 42 : 33 - 0600 subject : praca dyplomowa v edycja mba warszawa to : vkaminski @ aol . com date : mon , 29 jan 2001 16 : 42 : 46 - 0600 message - id : x - mimetrack : serialize by router on ene - mtaol / enron ( release 5 . 0 . 6 | december 14 , 2000 ) at 01 / 29 / 2001 04 : 40 : 54 pm mime - version : 1 . 0 content - type : text / plain ; charset = iso - 8859 - 2 x - mailer : unknown ( no version ) - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 29 / 2001 04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" scarbeko "" on 01 / 29 / 2001 07 : 35 : 10 am to : cc : subject : praca dyplomowa v edycja mba warszawa szanowny panie doktorze , na samym pocz ? tku chcia ? bym si przypomnie ` . jestem studentem v edycji mba ? w wy "" szej szkole handlu i finans ? w midzynarodowych w warszawie i wraz z panami jerzym seremakiem i waldemarem mrozem piszemy u pana doktora prac ? dyplomow ? z finans ? w midzynarodowych . nsze prace przes ? a ? em do pana doktora juz w listopadzie ubieg ? ego roku i do tej pory nie dosta ? em potwirerdzenia , "" e pan je otrzyma ? . bardzo bym prosi ? o potwierdzenie otrzymania tych "" e prac lub zaprzeczenie . panie doktorze nastepna sprawa dotyczy zapytania czy pa  stwa firma by ? aby zainteresowana inwestycjami w budow ? elektrowni na ukrainie . pracuj w ? firmie konsultingowej kt ? ra zajmuje si min . tego typu biznesem . nie jest to dla nas pierwszy kontakt z tego rodzaju inwestycjami , poniewa "" w obecnej chwili przygotowujemy sie do kontraktu ? z niemieck ? ? firm ? lahmeyer international na budow elektrowni 150 mw szczeg ? ly moge podac ? je "" eli panstwo wyrazicie zainteresowanie . ? ? z powa "" aniem tomasz b ? ach ? ? ? ? ?",0 +"Subject: fwd : hello from charles shen at williams co . toni , i would like to bring two people for an interview one of them sent me a message that is attached below . i am including the info about the 2 nd gentleman below . i would like to include myself , vasant shnabhogue , tanya tamarchenko stinson gibner , zimin lu , paulo issler , alex tang on the interview list . it would be great if we could bring them this week on friday . tanya will be at a training course next week . this means that if friday this week is too aggressive , we should shoot for interviews in 2 weeks . sorry for a short notice . vince jermakyan , martin 410 brightmore downs alpharetta , ga 30005 phone : ( 770 ) 753 - 9341 ( h ) ( 404 ) 402 - 8957 ( c ) martin @ electraparners . com - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 09 / 2000 09 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 10 / 07 / 2000 05 : 55 : 11 pm to : vkamins @ enron . com cc : subject : fwd : hello from charles shen at williams co . return - path : received : from rly - zco 2 . mx . aol . com ( rly - zco 2 . mail . aol . com [ 172 . 31 . 33 . 2 ] ) by air - zco 2 . mail . aol . com ( v 76 _ rl . 8 ) with esmtp ; wed , 04 oct 2000 13 : 43 : 33 - 0400 received : from web 9407 . mail . yahoo . com ( 23 . 0 / 24 . 129 . 136 . 216 . in - addr . arpa [ 216 . 136 . 129 . 23 ] ) by rly - zco 2 . mx . aol . com ( v 75 _ b 3 . 9 ) with esmtp ; wed , 04 oct 2000 13 : 43 : 06 - 0400 message - id : received : from [ 151 . 142 . 252 . 11 ] by web 9407 . mail . yahoo . com ; wed , 04 oct 2000 10 : 43 : 02 pdt date : wed , 4 oct 2000 10 : 43 : 02 - 0700 ( pdt ) from : charles shen subject : hello from charles shen at williams co . to : vkamins @ ect . enron . com cc : vkaminski @ aol . com mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii x - mailer : unknown dear vince : how are you ? i am not sure whether you still remember me , we met in a conference last year in houston . after having been working for williams for about two years , now i am ready to make a move . i have heard enron is a great company , i am wondering whether there is any opportunity for me , either in research group or in structure group here is brief description about myself : right after i got my ph . d . on finance and econometrics from duke university in 1998 , i joined williams energy trading company as a quantitative analyst . now i am lead quant and in charge of the quantitative research group with 7 highly talented people . i have done extensive research and modeling about electricity , load - following deal and tolling deals . if you need any additional information , please feel free to call me at 918 - 409 - 4308 . i look forward to hearing from you soon , thank you . sincerely , charles do you yahoo ! ? yahoo ! photos - 35 mm quality prints , now get 15 free ! http : / / photos . yahoo . com /",0 +"Subject: please keep in touch hi , just like to say that it has been great meeting and working with you all . i will be leaving enron effective july 5 th to do investment banking in hong kong . i will initially be based in new york and will be moving to hong kong after a few months . do contact me when you are in the vicinity . i don ' t know my contact details yet and would let you know once i get it . in the meantime , i will always be checking my e - mail at royibasco @ yahoo . com . please let me know what your e - mail addresses are and keep in touch ! best regards , roy",0 +"Subject: re : off site with john griebling ' s optical network engineers april 13 , 14 is better for me as well . i ' ll toss these dates to john griebling ' s people . ravi . shirley crenshaw @ ect 03 / 02 / 00 01 : 30 pm to : ravi thuraisingham / enron communications @ enron communications @ enron cc : vince j kaminski / hou / ect @ ect , kristy carnes / enron communications @ enron communications subject : re : off site with john griebling ' s optical network engineers ravi : i previously told you that the weekend of march 31 st would be allright for this , however , i just found out that krishna has planned a research party at his house ( it is for all of research on saturday , april 1 and vince told him it would be allright - it is his daughter ' s birthday ) . it looks now like vince and his reports will be unable to do this until the weekend of the 13 and 14 th of april . please advise . shirley ravi thuraisingham @ enron communications on 03 / 01 / 2000 12 : 56 : 25 pm to : shirley crenshaw / hou / ect @ ect @ enron cc : subject : re : off site with john griebling ' s optical network engineers yes . shirley crenshaw @ ect 03 / 01 / 00 12 : 54 pm to : ravi thuraisingham / enron communications @ enron communications @ enron cc : subject : re : off site with john griebling ' s optical network engineers ravi : does this include vince and all of his direct reports ? ravi thuraisingham @ enron communications on 03 / 01 / 2000 12 : 29 : 00 pm to : shirley crenshaw / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , vince kaminski , john _ griebling @ palm . net , scott yeager / enron communications @ enron communications , kristy carnes / enron communications @ enron communications , dorn _ hetzel @ palm . net subject : off site with john griebling ' s optical network engineers hi shirley , please give me a few dates form end of march to first week in april to do an offsite for vince ' s direct reports ( including myself ) and selected ebs research people . this includes , vince direct report from our research group and the following people from ebs research : ravi , stinson , samer , chinowee . the agenda will include : research people giving several mini presentations on trading , market development ( history of nat gas , electricity , etc . ) , pricing , etc . . . john ' s people will do similar mini presentations on optical network engineering , optical components , provisioning , telecom markets , pricing , etc . . . . if scott yeager can make it , he will do his magic via quick motivational speech on the vision of ebs , etc . . it is will be strictly technical to technical professional meeting to get to know each others group . so , do not include others unles stinson or i look at the additions case - by - case . john suggested scott yeager ' s summar house in denver for this event . please follow this up with scott ' s assistant ( scott may not know about this if john has not told him so you should explain the intend , etc . ) to get in touch with scott . i ' ll cc this e - mail to give scott a heads up . we can do half day friday and all day saturday . or , we can do the whole weekend and people will have an option to bring family to nearby hotel ( family expense in not on ebs ) . we will have to sort all this out when we have a chance to talk to john & scott . i just wanted to get the ball rolling but getting dates and place first . thanks , ravi .",0 +"Subject: proposed agenda for january 11 auction meeting let me know if you would like anything else included . - - - - - forwarded by greg woulfe / enron communications on 01 / 05 / 01 07 : 09 am - - - - - _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ from 4 january 2001 dr richard steinberg university of cambridge the judge institute trumpington street cambridge cb 2 lag england tel : + 44 - 1223 - 339638 fax : + 44 - 1223 - 339701 e - mail : r . steinberg @ jims . cam . ac . uk",0 +"Subject: re : erequest 3991 thanks ! vince j kaminski @ ect 10 / 10 / 2000 05 : 06 pm to : jameika smikle / corp / enron @ enron cc : mike a roberts / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : erequest 3991 aproved in both cases . vince kaminski from : jameika smikle @ enron on 10 / 10 / 2000 04 : 19 pm to : vince j kaminski / hou / ect @ ect cc : subject : erequest 3991 peter makkai is also requesting this access . - - - - - forwarded by jameika smikle / corp / enron on 10 / 10 / 2000 04 : 19 pm - - - - - jameika smikle 10 / 10 / 2000 04 : 16 pm to : vince kaminski cc : subject : erequest 3991 stpehen bennett is requesting read / write access to o : \ research please advise . jameika irm",0 +"Subject: organization announcement given the growth in ees it has become apparent that it is time to consolidate the risk functions between ees and ews . this will provide ees with the systems , resources and risk expertise of the wholesale energy groups necessary for it to continue to grow and take advantage of current market opportunities . with this in mind and in agreement with the management of ees , two new risk groups inside enron americas will be formed to provide ees with pricing , structuring , retail and wholesale commodity risk management , logistics and back - office services . these groups main function is to provide these services to ees . we have asked rogers herndon , currently vice president - trading in the eastern power group to manage this function in the eastern interconnect ( this includes both gas and power ) . rogers will continue to report to kevin presto . we have asked don black , formerly vice president - ees risk management and sourcing , to manage this function in the western u . s . don will manage this group from houston and will report to tim belden . these groups will work very closely with ees to pursue shared goals while ensuring close coordination with the wholesale gas and power trading organizations . these changes are effective immediately . please congratulate rogers and don on their new roles . john lavorato & louise kitchen",0 +"Subject: the storage revolution has begun network world fusion focus : amy larsen decarlo on storage in the enterprise today ' s focus : the storage revolution has begun 03 / 07 / 00 dear wincenty kaminski , today ' s focus : the storage revolution has begun by amy larsen decarlo believe the hype . we are in the middle of a storage revolution . virtually overnight , businesses have gone from storing gigabytes to terabytes of data , and the number of users accessing that information is skyrocketing . the subsequent requirements are forcing companies to rethink their storage strategies and to recognize the importance of storage management in the equation of efficient information delivery . it isn  , t just the volume of data or the higher scalability demands that are changing how businesses handle storage . the premium that companies place on much of their enterprise information is having a profound effect on their storage requirements . businesses demand fault - tolerant storage systems that deliver swift and reliable data access to their employees , suppliers and customers . but given the fact that hard disk capacity requirements , on average , double every 12 months , while processor speeds double every 18 months , companies are left with a quandary : how can they manage the proliferation of stored information efficiently enough to compensate for the differential between capacity requirements and processor speeds ? the simple answer to this question is to institute a well - executed storage management plan that anticipates capacity requirements in advance and leverages the best technologies and techniques to support those needs . bear in mind that the majority of storage costs come not from the equipment but from the implementation and support of those systems . there are several ways to efficiently manage storage . one of the best routes is consolidation that is , pooling resources and managing storage as a system , as opposed to a decentralized collection of file servers . this may sound like a throwback to an earlier era , when enterprise storage resided on mainframes . but it  , s actually a progressive step , as the consolidation has more to do with centralizing the planning , management , and ongoing support of storage systems than it does with the physical location of the files . next , it is important to recognize that not all information is equally important to the organization . consequently , storage requirements vary by business application . as in all areas of it , it is important to make storage implementation decisions based on business needs . businesses trying to more efficiently manage storage are looking for alternatives to the distributed file server storage model . they want to speed access to stored files and remove bandwidth - intensive backup and recovery operations from the lan . network - attached storage ( nas ) supplies it professionals with one answer , giving workstations and servers a way to gain direct access to stored data . nas devices , which have been widely available for years , are optimized to process i / o transactions . though they promise better performance , they don  , t remove backups from the transport network . instead , they supply a relatively easy - to - deploy solution to cross - platform storage problems for most heterogeneous environments . many consider storage - area networks ( san ) to be the best long - term answer to current and future storage challenges . because sans are designed with a topology separate from the corporate data network , they alleviate many of the availability and performance issues associated with more traditional storage models . yet , given the early deployment stage most companies are still in , many of those capabilities are still largely untested in a production environment . this newsletter will examine how , through effective storage management , it professionals can reduce support costs and improve service delivery to their customers . this newsletter will not focus on items like the least expensive tape drive or the fast tape library . instead , it will look at how businesses can reduce inefficiencies and leverage emerging technologies to resolve their particular storage application issues . ultimately , the goal is to identify storage technology options and practices that work in real - world environments . to contact amy larsen decarlo : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - amy larsen decarlo is an analyst with enterprise management associates in boulder , colo . , ( http : / / www . . com ) , a leading analyst and market research firm focusing exclusively on all aspects of enterprise management . she focuses on storage management , application management , and security . in her position , she oversees market research and contributes to custom project work in her focal coverage areas . prior to joining ema , amy spent five years covering enterprise management for industry trade magazines , including informationweek and data communications . she can be reached at mailto : decarlo @ . com for related links - - click here for network world ' s home page : http : / / www . nwfusion . com the national storage industry consortium ( nsic ) http : / / www . nsic . org the distributed management task force ( dmtf ) http : / / www . dmtf . org storage systems standards working group of the ieee http : / / www . ssswg . org the ietf http : / / www . ietf . org subscription services to subscribe or unsubscribe to any network world e - mail newsletters , go to : to change your email address , go to : subscription questions ? contact customer service by replying to this message . other questions / comments have editorial comments ? write jeff caruso , newsletter editor , at : mailto : jcaruso @ nww . com for advertising information , write jamie kalbach , account executive , at : mailto : jkalbach @ nww . com network world fusion is part of idg . net , the idg online network . it all starts here : http : / / www . idg . com copyright network world , inc . , 2000",0 +"Subject: re : ll visa - anshuman shrivastava vince : i don ' t think that you could have summarized the situation any better ! ! ! i will be happy to respond to neil as you suggested . thanks , molly vince j kaminski 01 / 24 / 2001 11 : 02 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : ll visa - anshuman shrivastava molly , thanks for the update . two points . please , let neil mcgregor know that many possible proposals were floated with regard to anshuman and there was some noise in the system . we need ll visa anyway and we decided to go ahead an arrange it . i shall also write to him and explain the confusion . also , if i have the choice between upsetting neil or jeffs ( shankman and skilling ) , i shall choose neil . vince enron north america corp . from : molly magee 01 / 24 / 2001 10 : 13 am to : vince j kaminski / hou / ect @ ect cc : subject : re : ll visa - anshuman shrivastava vince : apparently neil mcgregor became upset when he received margaret daffin ' s email . he is saying , however , that anshuman will only be in houston for one month , and you had mentioned six months when we spoke earlier . it really doesn ' t make any difference since he will need to get an ll visa under either circumstance , but i thought you might want to see his email . molly - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 24 / 2001 10 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 01 / 24 / 2001 09 : 57 am to : molly magee / hou / ect @ ect cc : subject : re : ll visa - anshuman shrivastava molly : per our conversation today . please let me know the status so that i can proceed with the visa process . thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001 09 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - neil mcgregor @ enron _ development 01 / 24 / 2001 05 : 18 am to : margaret daffin / hou / ect @ ect cc : wade cline / enron _ development @ enron _ development subject : re : ll visa - anshuman shrivastava anshuman is not moving or immigrating to the us . we are allowing him to work for a lmonth assignment in the us with enron . please carry out the necessary approvals and visa ' s on this basis . neil mcgregor ceo dabhol power margaret daffin @ ect 01 / 23 / 2001 10 : 31 pm to : anshuman . srivastav @ enron . com cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra sengupta / enron _ development @ enron _ development , wade cline / enron _ development @ enron _ development , neil mcgregor / enron _ development @ enron _ development @ ect , harsimran subject : ll visa - anshuman shrivastava anshuman : i have been asked to contact you regarding your possible move to houston , texas . in order that i may begin the process of getting you an ll immigration visa , i will need you to complete the attached visa questionnaire and return it to me with copies of the following documents : a copy of all pages of your passport , even if blank copies of all previous us visas issued an updated resume , showing months and years copies of all diplomas and transcripts received if you have dependent family members coming to the states with you , copies of their passports please send to my attention , via fedex to : enron corp . 3 allen center , 3 ac 2026 a 333 clay street houston , tx 77002 please call me with any questions you may have at 713 - 345 - 5083 .",0 +"Subject: telephone interview with the research group praveen : please excuse the error on the email below . i misunderstood - the position will be a full time position with the research group . please let me hear from you . thanks ! shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 27 / 2000 09 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 04 / 27 / 2000 09 : 39 am to : praveen @ wam . umd . edu cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , osman sezgen / hou / ees @ ees subject : telephone interview with the research group good morning praveen : the enron corp . research group would like to conduct a telephone interview with you at your convenience . this will be as a "" summer intern "" with the research group . please let me know your availability on monday , may lst or thursday ; may 4 th . the persons who will be interviewing you are : vince kaminski managing director stinson gibner vice president krishna krishnarao director osman sezgen manager i look forward to hearing from you . thank you and have a great day shirley crenshaw administrative coordinator 713 - 852 - 5290",0 +"Subject: yvan ' s application molly , i am enclosing my recommendation letter for yvan chaxel . vince",0 +"Subject: fw : my london "" wish list "" oops , i sent the previous email to another kaminski . - - - - - original message - - - - - from : mack , iris sent : thursday , april 26 , 2001 10 : 42 am to : salmon , scott cc : chaney , craig ; kaminski , jim ; dhar , amitava ; shanbhogue , vasant subject : my london "" wish list "" hi scott , as we discussed , i will be flying to london on monday to spend some time in enron ' s london office . i am really looking forward to meeting you and the others i have corresponded with via email , phone , vc , etc . on yesterday vince , vasant , amitava and i discussed my stay and london and the desire to make this trip a productive one . hence we came up with the following "" wish list "" of things i wish to accomplish while i am over there . if you think of any other important items to add to this list , please let me know . after that , we can forward the list to the parties involved to find out if they will be available to meet with me during my stay in london . thanks , iris iris ' london "" wish list "" scott schematic diagram of how the various models are tied together for the overall objective of coming up with final cds and dbs pricing product descriptions - more details ben * spss * answertree ( card book ) george * nnpm mike * need to create internal database to store d & b data . * how will d & b data be stored ? need flexibility for data manipulation & model development . bryan & markus * feasiblity model : what calculations do they already have ? * breakeven spread * moral hazards issues * legal contract issues to resolve moral hazard issues . * a company can ' t buy bankruptcy on itself ? * need to have "" accurate "" information for correlation between reference & counterparty",0 +"Subject: associate & analyst prc update the prc process for the associate & analyst programs has been revised . the office of the chairman , in conjunction with the heads of each operating company , has established a prc committee for the associates and one for the analysts . each committee will oversee the respective prc meetings . details of the process are as follows : i . prc committee members associate prc committee sally beck don w . black dan catagnola paul chivers ed coats dave duran bob hayes sean homes fred kelly dick leibert sean long scott neal ozzie pagan kevin presto brad richter mark ruane jim steffes analyst prc committee dave bowers federico cerisoli ed coats david crews brenda herod rogers herndon ben jacoby steve jernigan william gehle jay lewis ( james w ) paul mead mike norris rockey storie jon thomsen emilio vicens ii . meeting logistics enron will hold eastern hemisphere associate and analyst prc meetings on july 17 th in london . the prc for the eastern hemisphere will include europe , india and asia and will be chaired by john sherriff . the western hemisphere associate and analyst prc meetings will be held on july 19 th in houston . the prc for the western hemisphere will include south america , calgary , portland , houston and australia ( houston administers it ) and will be chaired by joe sutton . the analyst prc will be conducted from 8 : 00 a . m . to 12 : 30 p . m . , and the associate prc will be conducted from 1 : 30 p . m . to 6 : 30 p . m . iii . process each prc representative has been randomly assigned 15 to 17 associates or analysts that they will represent in the prc meeting . please note the prc rep is not representing only those individuals who may work in his or her specific opco but individuals that work throughout the organization . the prc rep will continue to represent the assigned associates or analysts during their entire tenure with the program . the prc reps are expected to contact the prc supervisor and gather performance information ( including pre - ratings if available ) . the program will prepare a binder for each prc rep that includes consolidated feedback from the pep system for their assigned associates or analysts and will provide this to the prc representatives on july 7 th . associates and analysts will be pre - rated by their business unit supervisor using the six performance ratings ( superior - issues ) and the management professional feedback form as detailed in the pep system . the pre - ratings must be loaded into pep by july 6 th . the associate and analyst ratings will be cross - calibrated by tenure at the meeting as follows : associates : level 1 : 0 to 6 months level 2 : 7 to 12 months levels 3 & 4 will be reviewed together : 13 months + . analysts : level 1 : 0 to 6 months level 2 : 7 to 12 months level 3 : 13 to 24 months level 4 and 5 will be reviewed together : 25 months + the rating determined in the global cross calibration meeting is final , and cannot be changed once the meeting has ended . following the global associate and analyst prc , the associates  , and the analysts  , supervisors will obtain the final rating from the prc representative . the supervisors must ensure that an evaluation session is conducted and the final rating is communicated to each associate and analyst by september 15 th . the completed form must be signed by the associate or analyst and returned to terry bosien in human resources by 9 / 18 / 00 . iv . promotions all promotions must be recommended in the prc . associates are eligible for promotion to manager at their 18 and 24 month anniversary . timing . anniversaries that occur from april lst through september 30 th should be recommended in the july prc and those that occur from october lst through march 31 st should be recommended in the december prc . if the promotion is granted it would become effective on the lst of the month following the prc , or on the associate  , s anniversary date , whichever is later . associates promoted after march 31 st for the july prc and after september 30 th for the december prc will be evaluated as associates for prc purposes , not as a manager ( i . e . an associate was promoted to manager effective april lst . in the july prc the individual should be evaluated as an associate not as a manager ) . 2 nd year analysts are to be recommended for promotion to 3 rd year analysts after completing the 2 nd year , utilizing the same timing criteria outlined above ( i . e . , an analyst who completes the 2 nd year on september 30 th should be recommended for promotion to 3 rd year analyst in the july prc ) . 3 rd year analysts may be recommended for promotion to associate after completing the 3 rd year , utilizing the same timing criteria outlined above ( i . e . , an analyst who completes the 3 rd year on september 30 th should be recommended for promotion to associate in the july prc ) . please call terry bosien at 713 / 853 - 5230 or celeste roberts at 713 / 853 - 0555 if you have any questions .",0 +"Subject: pricing credit on thousands of names all - our challenge for the next few months is to build an automated system to provide differential pricing on thousands of credits [ 5 , 000 by year - end ] . most of these credits will be illiquid in terms of market price information , making the challenge harder , and the end result more important in terms of competitive pricing advantage . what we need is an overall strategy for how we plan to achieve this from the quantitative perspective . currently we have several models for credit pricing either in use or under development : fmc model ( default probability approach ) . using bloomberg ' s fair market ( par yield ) curves , probabilities are generated from the risky - libor , then default / bankruptcy swap prices computed using expectation methodology . fmc model ( credit spread approach ) . using the fmcs , then directly taking the libor credit spread at each tenor , adjusting for basis and compounding differences . bond model ( fmc approach ) . taking the fmcs as benchmark curves , the model regresses the input bonds ( specific to a name ) on the two best fitting benchmarks . the result is a zero yield curve with the same shape as the fmcs , but with the level tweaked for the specific issuer . prices are then generated using both spread and probability approaches . under testing . bond model ( spline approach ) . taking only the bonds specific to an issuer , the model fits an exponential cubic spline to the zero - coupon price curve , then builds a zero yield curve from this . under testing . market prices . for certain liquid names , or sectors / ratings , cds market prices are used , then recovery and event discount used to get bankruptcy swap prices . kmv . using expected default frequencies ( edfs ) from the kmv model and database , we will build a model to price default swaps , making appropriate risk adjustments . kmv is being installed now , so model will be worked on next . each of these models returns a price ( credit default and bankruptcy ) , and the accuracy of the price depends on many factors - liquidity and regulatory differences between bond and cds markets , recovery assumptions , risk premia , capital charges , etc . the aim will be to accurately price as many liquid names as possible , based upon these models , then use these prices , alongside other financial information , as the backbone to a full automated pricing system . our inputs to the proposed pricing system for a specific name are model and market prices for all issuers , alongside name - specific ' soft ' data from credit reports and financial statements . if the credit is liquid enough , a price will be generated from their own information only . otherwise , the credit will be mapped onto a subset of liquid credits , with financial information and historical price movements providing the mapping and weights . the model price will then be periodically adjusted to align itself with market ( or trader ) prices , and this adjustment will feed back into the weighting and mapping composition . in loose terms , we could think of the system price for an illiquid credit as being a weighted average of liquid market prices ( bonds , equities , default swaps ) , where the weightings are calibrated using credit analysis , financial ratios , etc . the key steps to implementing such a system will be : establishing what exactly we want to ' predict ' - is it a price , a rating , a probability , or a score ? we will need a clean market history to calibrate to , which we only really have for ratings . we will then need to develop a mapping from rating / score to price . getting and cleaning the historical financial and credit data required to calibrate the model . building the mechanics of the model , ie , the calibration methodology . neural nets / fuzzy logic seem the obvious candidates , but which exact methods and software packages to use ? determining an automated methodology for mapping names with limited information into the model . getting the "" true "" market price , in order to feed back an error . at present such a price exists for very few credits . allocating resources to the development . mckinsey claimed such a system would take 6 - 10 man - months to develop . further ideas or comments are requested , as we need to develop our strategy asap . the model description above is fairly vague , as we don ' t yet have the knowledge needed to fill in the specific details . further help will be especially required on this if we are to continue to move at ' internet speed ' . regards ben",0 +"Subject: new members the following people are joining the research group reporting to me effective immediately . please make sure that their transfer from ees to our group is reflected in the support systems . oren v . ( "" dayne "" ) zimmerman chuanli ( "" ken "" ) deng anguel g grigorov thanks , krishna .",0 +"Subject: re : vacation shirley , no problem . vince shirley crenshaw 11 / 13 / 2000 10 : 21 am to : vince j kaminski / hou / ect @ ect cc : anita dupont / na / enron @ enron , kevin g moore / hou / ect @ ect subject : vacation vince : i would like to take vacation next tuesday and wednesday , the 21 st and 22 nd ? please let me know if it is alright . anita will be here . thanks ! shirley",0 +"Subject: storage book / luken ' s storage model please plan to attend a meeting on thursday , april 27 , from 3 : 00 - 5 : 00 p . m . to discuss luken ' s storage model and , more importantly , where we want to go with a storage book . this meeting will be in eb - 30 cl . any questions , contact mark breese ( ext . 3 - 6751 ) or gerri irvine ( ext . 3 - 6145 ) .",0 +"Subject: rice / enron finance seminar series - attl . htm",0 +"Subject: re : choosing the riskfree rate dear all , i completeley agree with ben that treasuries are the most liquid and reliable benchmarks . i also think that fmas have their own advantages and disadvantages . however , it looks like it would be very difficult for us to avoid using libor as benchmark - at least to price anything related to capital markets ( for example , credit default swaps ) . our prices will always be different from that on capital markets if we use benchmarks different from the market . as a half - way solution we can have different benchmarks - for example , use anything , that we decide is closest to risk - free , to value products significantly different from that priced on capital markets , and libor for everything priced on capital markets . we can adjust by manipulating other coefficients ( event , liquidity , recovery ) for our purposes , but it looks like benchmark should be libor . to avoid negative default probabilites ( for highly rated reference entities ) we can add cost fo repo and haircuts ( as all bankers do ) . let us continue our discussion on this . slava benjamin parsons 13 / 03 / 2000 20 : 07 to : bryan seyfried / lon / ect @ ect , martin mcdermott / lon / ect @ ect , viacheslav danilov / lon / ect @ ect , stuart ffoulkes / lon / ect @ ect , eklavya sareen / lon / ect @ ect , tomas valnek / lon / ect @ ect , john metzler / lon / ect @ ect , simon brooks / lon / ect @ ect , konstantin malinovski / lon / ect @ ect cc : vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , jitendra patel / lon / ect @ ect , william s bradford / hou / ect @ ect , harry arora / hou / ect @ ect subject : choosing the riskfree rate dear all , following on from the discussions had with vince et al a few weeks ago , regarding the problems inherent in using treasuries as our benchmark riskfree curve , i ' ve written the attached short document . my preliminary conclusions are as follows : recent turmoil in the treasury market mostly hit 10 and 30 - year bonds . treasuries are still the most liquid curve , and that used by banks for benchmarking risky debt . there is a considerable a liquidity / scarcity premium inherent within the corporate - treasury spread , which we are not taking into account . more accurate measurement of this premium should allow us to calculate bankruptcy prices based on treasuries , which are consistent with the market . all further comments are welcome of course . regards ben",0 +"Subject: phone interview with bill anderson - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 03 / 07 / 2001 08 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" wander "" on 03 / 06 / 2001 08 : 09 : 42 pm to : cc : subject : phone interview 3 / 5 dear mr . kindall , i just wanted to let you know that i appreciated the time you gave me on monday , and that i am very interested in pursuing a career at enron . i feel that my risk management and treasury experience would prove to be valuable at your firm , and i would very much like to continue discussions with you if a suitable position becomes open . thanks again for the taking the time to chat with me , and i look forward to hearing from you soon . sincerely , bill anderson",0 +"Subject: research reporting tani - are you happy having steve leppard and research reporting to you in london , with a thick dotted line to vince in houston . up to now it has reported to dale , so it makes sense to shift to you . steve wants a dotted line to commercial , which i ' m happy to have to me as he does o much work for us . richard",0 +"Subject: chapter 3 vince and grant , ? can you please send us your excel spreadsheets that were used for generated the graphs ? ? we will need to edit them so that they will look like the graphs in the rest of the book . ? vince , when you send us your half , will you please provide us with the references and footnotes ? ? grant , thanks for your half . ? look forward to hearing from you soon , thanks , julie",0 +"Subject: 2000 chairman ' s award everyday heroes are all around us at enron , living our core values of respect , integrity , communication and excellence in everything they do . some of these heroes make a big splash while others just quietly make a difference in the workplace around them . either way , these special individuals deserve to be recognized with a nomination for the 2000 chairman ' s award . as there is more than just one employee living the values at enron , this award program will honor 10 employees as members of the chairman ' s roundtable . from that group , the one individual most embodying our values will be presented with the chairman ' s award at the management conference in san antonio in november . the beauty of this award program is that it is completely employee - driven from beginning to end . from your nominations , an international employee committee will select the chairman ' s roundtable and eventually , the chairman ' s award winner . your role of nominating our everyday heroes is extremely vital to the program ' s success . if someone has made a positive impression on you , please take the time to complete a nomination form and send it to charla reese by october 1 , 2000 . you may click here for a printable form : http : / / home . enron . com / announce / chairman _ nom / form 3 . doc for more information on the chairman ' s award , including details on last year ' s roundtable members and previous winners , repit suliyono and bobbye brown , please click here : http : / / home . enron . com / announce / chairman _ nom again , this is a very special award at enron and we sincerely thank you for your participation . ken , jeff and joe",0 +"Subject: re : congratulations and to yourself - extra well deserved . see you soon . b . vince j kaminski 11 / 01 / 2000 16 : 04 to : barry pearce / lon / ect @ ect cc : subject : congratulations barry , congratulations . well deserved . vince",0 +"Subject: encounter article - shalesh ganjoo as a follow up to the below message , i wanted to contact you to see if you have had an opportunity to review the attached article . the article will be going to print within the next two weeks . therefore , i would like to ensure the accuracy of the information provided . thank you again for your efforts , tracy arthur - - - - - - - - - - - - - - - - - - - - - - forwarded by tracy l arthur / hou / ect on 03 / 26 / 2001 09 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tracy l arthur 03 / 19 / 2001 03 : 29 : 37 pm to : david cox / enron communications @ enron communications , vince j kaminski / hou / ect @ ect cc : shelly jones / hou / ect @ ect subject : encounter article - shalesh ganjoo we have conducted an interview and written the attached article for the upcoming edition of the encounter , the associate & analyst programs ' newsletter . the interview was conducted with shalesh ganjoo in regards to his participation with the implementation of storage capacity as a commodity . to ensure our publication is printing the most accurate information , i have attached the article for your review . please confirm that the information provided from shalesh ganjoo is accurate . thank you in advance for your assistance , tracy arthur communication specialist associate & analyst department 713 - 345 - 7853",0 +"Subject: re : followup from iris mack hi again , i thought it might be helpful if i forwarded a document which describes some of the hybrid structured products i have been contemplating . please refer to the attached files . in addition , any further information regarding my coming to houston ? regards , iris ( see attached file : hybrid structured products . doc ) ( see attached file : diagram of aircraft delivery options . doc ) - - - - - - - - - - - - - - - - this message is confidential ; its contents do not constitute a commitment by bnp paribas group * except where provided for in a written agreement between you and bnp paribas group * . any unauthorised disclosure , use or dissemination , either whole or partial , is prohibited . if you are not the intended recipient of the message , please notify the sender immediately . * bnp paribas group is a trading name of bnp sa and paribas sa ce message est confidentiel ; son contenu ne represente en aucun cas un engagement de la part du groupe bnp paribas * sous reserve de tout accord conclu par ecrit entre vous et le groupe bnp paribas * . toute publication , utilisation ou diffusion , meme partielle , doit etre autorisee prealablement . si vous n ' etes pas destinataire de ce message , merci d ' en avertir immediatement l ' expediteur . * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas sa - hybrid structured products . doc - diagram of aircraft delivery options . doc",0 +"Subject: meeting during energy expo this will confirm our meeting at your office on 16 th of march 2000 at 8 am . we will be at the energy expo booth nbr . 931 on the 14 th  - 16 th and staying at the allen park inn on allen parkway if you need to reach us . liam leahy for dr . robert e . brooks direct line ( 323 ) 913 - 3355 main line ( 323 ) 663 - 4831 http : / / gpcm . rbac . com / - attl . htm",0 +"Subject: re : interview with enron pierre philippe , we have two options . kevin will be interviewing in mid - december in pittsburgh and he can talk to you you or we can invite you to houston . what are you interested in ? a quant position or a trading job ? our trading desks are looking for people with trading experience . vince "" pierre - philippe ste - marie "" on 11 / 29 / 2000 07 : 36 : 19 am to : cc : subject : interview with enron dear mr . kaminski , ? even though i cannot pass "" official "" interviews , i would like to discuss with enron . i was really impressed by your presentation and i think i would be a good fit for your firm . ? i know that you ? will be soon recruiting on campus , maybe we could set up an "" informal meeting "" . either give me a call at home ( 412 - 802 - 6429 ) or send me an email at this address . i would appreciate though not to appear on interview lists . ? pierre - philippe ste - marie http : / / pstemarie . homestead . com",0 +"Subject: re : ( no subject ) jana , next week would work for me . i am flying to san antonio from florida . i shall be back on sunday . what about friday or saturday next week ? vince jlpnymex @ aol . com on 04 / 04 / 2000 09 : 59 : 01 am to : vince . j . kaminski @ enron . com cc : subject : re : ( no subject ) vince , nice to hear from you . we will miss you on thursday evening . would you still like to join us for a movie sometime ? jana",0 +"Subject: re : re : software license ms . geman , i apologize for the delay , but i finally have drafted an escrow agreement for placing the software in escrow with your attorneys . please review and have your attorneys review and let me know if it is acceptable . i will be leaving the department i have been working in and moving to a different enron subsidiary on october 13 . if at all possible , could we try to get the software license agreement and the escrow agreement wrapped up before i leave so that someone else does not have to try to pick up where i left off ? i think we are just about in agreement on the software license portion . seems like the only outstanding question had to do with your concern regarding providing a response time of 2 business days . i do not have any answers regarding that - maybe vince kaminski or stinson gibner can respond on this issue . i look forward to hearing from you and trying to get this finalized within the next 2 weeks if possible . thank you , karla feldman enron corp . ( 713 ) 646 - 7554",0 +"Subject: p . c . we spoke about the p . c . for trisha tlapek . location eb 3132 b . co . # 0011 r . c . 100038 thanks kevin moore x 34710",0 +"Subject: ravi ' s schedule for next week project hamachi lives on ! john griebling asked the crew to come back for march 7 - 10 th . kristy , please book me to come back to project hamachi ( omin hotel in broomfield ) . that is , i need to come back to broomfield , co next week tues : arrive at omin hotel and be in the office here at 12 : 00 noon march 7 th , 2000 . so i need to take the earliest flight out of houston to get to denver airport in time to get to the hotel checked in , etc . . . . so i need to land ~ 10 am . i ' ll come back to houston end of day friday . thanks , ravi .",0 +"Subject: wti simulation presentation - the latest john , this is the updated presentation for the open - close assumption . i will finish the close - close ( continuous trading ) case . zimin",0 +"Subject: re : check julie , yes , this is how we split this expense internally . please , send it to me . vince "" julie "" on 10 / 31 / 2000 01 : 57 : 55 am to : cc : subject : re : check vince , ? oh . ? i sent an invoice to habiba for aus 5 k a while back , and she informed me that she passed it along to the people who are handling the agreement now ( i take that as fiona grant in london ? ) . ? i will then send out another invoice of aus 5 k in the next week or so for the remaining balance . ? should i have sent the invoice to you ? ? thanks , julie - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : monday , october 30 , 2000 9 : 12 pm subject : re : check julie , a clarification . we had an agreement with chris and les to contribute ? aus 10 , 000 as a part of the cost . vince "" julie "" on 10 / 30 / 2000 12 : 32 : 14 pm to : ? ? cc : subject : ? re : check vince , thank you for your email . we will send you a copy of the book as soon as it is available , which we are now estimating to be around 21 november ( no need to send us a cheque ; you deserve it ) . just let us know if we should use a different address than your office ? in houston . thanks again for all of your help . julie - - - - - original message - - - - - from : ? vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : monday , october 30 , 2000 2 : 16 ? pm subject : check julie , this message was returned to me a few times when ? i sent it from my home address . vince - - - - - - - - - - - - - - - - - - - - - - ? forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 08 : 00 am ? - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 10 / 28 / 2000 12 : 12 : 57 ? pm to : julie @ lacima . co . uk cc : vkaminski @ aol . com , vkamins @ enron . com subject : ? check julie , as the book is about to be released to the ? market , i would like to start the process to issue the check to lacima . ? who will be the payee ( lacima ) and what is the ? address ? vince",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: organizational announcement fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by osman sezgen / hou / ees on 04 / 23 / 2001 02 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron energy services from : ees distribution 04 / 23 / 2001 01 : 29 pm sent by : kay chapman to : all ees cc : subject : organizational announcement consistent with the floor talks of a couple weeks ago , we are following up with an e - mail describing the latest changes in our risk and back - office functions that are now complete . ees ' s risk management and the vast majority of ees ' s risk controls and operations group will become a new group in enron wholesale services . this group ' s sole function will be to provide pricing , structuring , commodity risk management , logistics and back - office services for ees . both don black and wanda curry will report to the ews office of the chairman . this change was driven by the explosive growth of ees and the resulting need to tap the systems , resources and risk expertise of the wholesale groups in order to continue to grow and take advantage of current market opportunities . this change will allow us to more quickly capture the benefits of scale , process , and technology in risk , logistics and back - office functions from the larger enron capability . as discussed at the all employee meeting in march , these are important objectives , and this change allows us to reach those goals more quickly . specifically , the following groups within the former ees risk management group , will become a part of this new group reporting to don black : - the gas , power and tariff desks , - the options desk , - the site profiles and consumption desks , and - the matrix products / secondary products desks . the dsm group and iam , along with its execution capability , will remain in ees and report to the ees office of the chairman . we are pleased to announce that ozzie pagan has agreed to lead this function . ozzie is an established commercial dealmaker in ena . he has experience in power trading , origination and plant development . in addition , the services group , which will provide billing , information and other retail services , led by evan hughes , will remain in ees and report to the ees ooc . all support functions , within the former ees risk controls and operations group , that currently support the dsm and the services groups , will remain in ees . the remaining parts of the risk controls and operations group will become part of ews reporting to wanda curry . as part of this change , we are pleased to add evan hughes and ozzie pagan to the ees operating committee . in addition , the structuring group , led by sean holmes , will be re - named deal management . the vision for this group remains the same as that discussed at the all employee meeting ; however , it will also facilitate and ensure productive transaction interaction between ees and ews . we have asked , marty sunde , as part of his vice chairman role , to resource and lead a formal restructuring group to enhance or protect value in several key transactions in our portfolio primarily in california . the newly created it function , led by anthony dayao , will continue to report into the ees ooc but will support both ees and ews it requirements . other than these changes , the organizational structure , vision and objectives detailed out for ees at the all - employee meeting in march remain . we need to continue to understand and drive deeper into our markets , manage our client relationships , mine our portfolio , build new products and execute on our opportunities . thanks for all your hard work . with your help we will become the worlds leading energy retailer and enron ' s leading division . if you have any questions please do not hesitate to ask",0 +"Subject: matthew patteson , inventor cindy , this is our preliminary review of the documentation sent by mr . patteson . one more person will take a look at it . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 25 / 2000 03 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 10 / 25 / 2000 01 : 16 pm to : vince j kaminski / hou / ect @ ect cc : zimin lu / hou / ect @ ect , kevin kindall / corp / enron @ enron subject : matthew patteson , inventor vince , after reviewing the documents furnished by mr . patteson , i do not feel that enron should consider engaging in any testing , development , or licensing of his proposed generator for the following reasons : 1 . enron is not currently in the business of developing or manufacturing electrical generation equipment and does not plan , as far as i know , to enter this business . the one exception is our ownership in entities developing wind and solar , renewable energy . 2 . enron does not have the proper facilities or expertise to test or develop mr . pattesons proposed generator . 3 . there could be substantial risk in testing this generator as it would involve boiling of a flammable material under pressure . 4 . i do not believe that the proposed generator will produce any significant quantity of electrical power . the generator produces power by induction . that is , electric current is induced by a changing magnetic field . the mechanism powering the changing magnetic field is the movement of magnetic dipoles which are suspended in a boiling medium . as the boiling will produce a somewhat random movement of the liquid , the "" movement "" or change in the magnetic field will be highly random and thus not suitable for producing a steady or reliable electrical current . i have asked martin lin to also review the documents to render an independent opinion of this proposal . respectfully , dr . stinson gibner phd . physics vp research , enron north america p . s . kevin and zimin : if you have any interest in reviewing mr . patteson ' s proposal , please let me know .",0 +"Subject: bi - weekly transmission update report energy info source is privileged to make available to you a free sample issue of its bi - weekly transmission update report ( attached ) . this report contains the latest iso , rto , utility , and merchant transmission news provided in pdf format delivered to you via email every other week all for only $ 75 / year for an individual subscription ( corporate subscriptions for multiple users are available for $ 200 / year ) . check it out and if you ' d like to subscribe , click on the following link to order online or call us at 888 - 986 - 2250 to order by phone . we accept visa / mastercard / american express or can invoice your company . viewing the report requires adobe acrobat reader 4 . 0 or higher , available free at : - - - - - - - - - - - - - - - - - - - - - - if you want to be removed from our mailing list or for more information : energy info source , inc . email : custsvc @ energyinfosource . com phone : 888 - 986 - 2250 - transo 7 _ 23 . pdf",0 +"Subject: re : technical training at the houston energy expo ! vince : looks like an excellent value overall if they cover the same topics in these classes as in the enron internal classes . the website says that registering for one of the classes automatically registers you to the expo . i would like to recommend them to my team . did someone from our group already register for this ? thanks krishna . vince j kaminski 02 / 12 / 2001 01 : 50 pm to : pinnamaneni krishnarao / hou / ect @ ect cc : subject : technical training at the houston energy expo ! krishna , please , take a look . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 12 / 2001 01 : 50 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - lana moore on 02 / 07 / 2001 10 : 53 : 05 am to : nesa members cc : subject : technical training at the houston energy expo ! technical training in conjunction with the houston energy expo march 20 - 21 , 2001 hyatt regency hotel - downtown we are offering : fundamentals of electricity basics of risk management natural gas - wellhead to burnertip there are only 25 spots in each class , so sign up today ! go to www . nesanet . org , in educational programs each class is listed with details and a registration form . member price is $ 545 per person . non - member price is $ 745 per person . if you have any questions , please give me a call ! ! lana moore ( 713 ) 856 - 6525",0 +"Subject: arthur andersen model validation request vince , our goal is to validate that the enron global market book administrators are accurately using the "" spread option model "" as developed by the research group . to determine this , we would like to provide you with the inputs for a particular deal ( as provided by a global markets book administrator ) and have you recalculate the deal value . we will then compare your results to the values calculated by global markets . two koch deals have been chosen due to their substantial p / l effect . i have attached the deal data in two forms : ( 1 ) the spread option model that kara boudreau , book administrator egm , provided and ( 2 ) an excel spreadsheet that isolates the 2 deals . if there is anything more that we could provide , please don ' t hesitate to call me at x 30968 . thank you so much for all of your help . gillian 1 . 2 .",0 +"Subject: visiting enron may 4 th christie , fyi . a message i received from stanford . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 11 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" susan c . hansen "" on 04 / 06 / 2001 06 : 14 : 10 pm to : vince . j . kaminski @ enron . com cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu subject : visiting enron may 4 th dear vince , this is great news ! donna and i are delighted that you have time to see us on may 4 th . i ' ll be out of the office next week . by copy of this email to my assistant , carol lovell , i will ask her to get in touch with shirley for scheduling as well as directions on where to meet you . we ' ll be glad to meet with christie patrick as well . looking forward to meeting you , susan at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote : > susan , > > thank you for your message . i shall be glad to meet with you on may the > 4 th . > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to > set up the meeting . > > also , for your information , we have recently set up a special unit to > coordinate enron ' s > relationships with the universities . the person running this unit is > christie patrick . > please , feel free to contact her and give my name as a reference . i shall > coordinate the meeting > on may the 4 th with her . > > vince > > > additional information re christie : > > phone : ( 713 ) 853 - 6117 > > email : christie _ patrick @ enron . com > > > > > > "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm > > to : vkamins @ enron . com > cc : > subject : visit from stanford ? > > > dear dr . kaminski , > > let me briefly introduce myself , i am the director of corporate relations > for the school of engineering at stanford university . in this role , i am > always on the watch for ways to bring our faculty together with companies > that have an appetite for engagement with top tier research institutions . > > i believe you know hill huntington , who is a senior researcher with > stanford ' s energy modeling forum . he suggested i get in touch with you for > some ideas about contacts at enron . i ' m in the process of planning a trip > to texas in early may along with my colleague donna lawrence , the > university ' s director of corporate relations . we were hoping to be able to > include a stop at enron on our itinerary . right now it appears that friday , > may 4 th would work best for us but we ' re at the very beginning of our trip > planning . > > the purpose of our visit would be to review the current relationship > between enron and stanford , to give you an overview of current priorities > in the school of engineering , and ask for your help in identifying the best > points of contact . > > i look forward to hearing from you about your availability , > > sincerely , > susan hansen > > > > > susan c . hansen > director , corporate relations > school of engineering > stanford university > stanford , ca 94305 - 4027 > ( 650 ) 725 - 4219 susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: re : your visit with vince kaminski - enron corp . research dear mr . fujita : professor kaminski will be delighted to have dinner with you and your colleague mr . yamada . i have put you on his calendar at 3 : 00 pm . with dinner to follow in early evening . please let me know if you would like me to make dinner reservations for you . sincerely , shirley crenshaw administrative coordinator enron corp . research group 713 / 853 - 5290 masayuki fujita on 04 / 04 / 2000 11 : 07 : 19 am to : shirley crenshaw cc : subject : re : your visit with vince kaminski - enron corp . research shirley crenshaw administrative coordinator research group enron corp dear ms . crenshaw , i am very glad to see professor kaminski let me meet with him . i offer to visit you around 3 p . m . on 17 th monday . i wonder if we can invite him for a dinner that night because my colleague mr . yamada who also wishes to meet with him will attend a risk publication ' s seminar up to 5 p . m . on that day . please let professor kaminski know we understand this offer may affect on his private time and we do not insist on it . i am very much looking forward to seeing him . best regards , masayuki fujita principal financial engineer financial technologies section mitsubishi research institute , inc . 3 - 6 otemachi 2 - chome , chiyoda - ku tokyo 100 - 8141 japan tel + 81 - 3 - 3277 - 0582 fax + 81 - 3 - 3277 - 0521",0 +"Subject: re : exotica ( second request ) please see attached : enron europe from : sharad agnihotri 09 / 10 / 2000 11 : 56 to : anjam ahmad / lon / ect @ ect cc : steven leppard / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : exotica ( second request ) anjam , i have tried to call you on your mobile but with no success . please make sure you send me the exotica code . sharad",0 +"Subject: re : resume hi , mr . kaminski : how are you ? i hope you had a wonderful holiday . i just came back from chicago . there is an enron on campus interview at cmu scheduled on 12 / 11 . is this the interview for our class or for mba students ? i am concerned because i was not selected for this interview , and i would like very much to have a chance to talk you about what i can do at enron . frank - - - - - original message - - - - - from : to : cc : sent : tuesday , november 21 , 2000 2 : 13 pm subject : re : resume > > frank , > > we are going to interview the students of your class on the campus . > i may participate in the interviews . > > have a very happy thanksgiving . > > > vince > > > > > > "" frank qian "" on 11 / 14 / 2000 12 : 48 : 14 pm > > to : "" vince j . kaminski "" > cc : > subject : resume > > > dear mr . kaminski : > > how are you ? i hope everything goes well for you at work . enron ' s > recruiting > at cmu just started . i have submitted my resume through the career > services . > the deadline for selecting interviewee is nov . 21 st . i ' d like to assure > you > my interest in associate / analyst program at enron . > > as you knew , the mscf program is an in - depth training of the mathematics > employed to financial algorithm and modeling as well as advanced > statistical > tools needed to analyze and predict the behavior of financial market . > through the intensive classroom learning combined with practical projects > using real - time financial data , i have gained a solid background in > state - of - art quantitative techniques used in financial industry , such as > derivative pricing , monte carlo simulation , and var analysis . with my > programming skills in c + + , s - plus , and java , i ' ll also be able to implement > sophisticated financial or trading models into practice . > > i am a highly motivated , reliable , and team - oriented person not only have > quantitative skills , but also have broad knowledge of financial products . > my > unique mixture of skill sets will enable me make significant contribution > to > enron . my academic research experience and credentials all compose a > valuable asset to your organization . working at enron will greatly enhance > my learning experience and future career development . my resume is attached > for your review . i wish to be included on your pre - selected interviewee > list > and look forward to meet you again . > > regards , > > frank qian > fqian @ andrew . cmu . edu > > > ( see attached file : enron _ resume . doc ) > > >",0 +"Subject: term paper dr . kaminski , attached please find a copy of our term paper . advise if you experience problems opening the attachment . best regards , ken jett - combo 2 [ 1 ] . v 2 . doc",0 +"Subject: re : bruno repetto interview with enron corp . research group bruno repetto will be in the office on may 11 beginning at 1 : 00 pm . following is the interview schedule : vince kaminski 1 : 00 pm stinson gibner 1 : 30 pm grant masson 2 : 00 pm vasant shanbhogue 2 : 30 pm krishna krishnarao 3 : 00 pm zimin lu 3 : 30 pm tany tamarchenko 4 : 00 pm all interviews will be conducted in ebl 938 . the calendars that i have access to have already been marked . thanks ! shirley",0 +"Subject: vince kaminski bullet points * definition of price volatility * historical vs . implied vs . model derived volatility * estimation of volatility from historical data in the presence of ? ? ? ? ? ? - seasonality ? ? ? ? ? ? - jumps ? ? ? ? ? ? - fat tails * stochastic volatility models * recent cases of extreme price volatility in the power markets in the us : the causes and remedies",0 +"Subject: zingales seminar fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 23 / 2001 03 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - albert wang on 04 / 23 / 2001 11 : 23 : 22 am to : ( recipient list suppressed ) cc : subject : zingales seminar enron seminar series in finance jones graduate school of management , rice university luigi zingales university of chicago will give a seminar at the jones school on friday , april 27 , "" the great reversals : the politics of financial development in the 20 th century . "" the seminar will begin at 3 : 30 in room 105 . a pdf of the paper is available through the seminar website : http : / / www . ruf . rice . edu / ~ jgsfss / . fu - kuo albert wang assistant professor jones graduate school of management - - ms 531 rice university 6100 main street houston , tx 77005 phone : 713 - 348 - 5404 fax : 713 - 348 - 5251 email : wangfa @ rice . edu http : / / www . ruf . rice . edu / ~ wangfa /",0 +"Subject: pjml 01 : the basics - january 16 , 2001 01 / 04 / 01 pjm to : vincent kaminski enron re : "" pjm 101 : the basics "" training course you are confirmed for the following course : "" pjm 101 : the basics "" training course on tuesday , february 27 , 2001 from 9 : 00 a . m . to 12 : 00 noon and 1 : 00 p . m . to 4 : 00 p . m . on the internet . we encourage you to coordinate participation in this workshop with others at your location by organizing a conference room with internet and phone access . no fee will be charged to pjm members ; nonmembers will be invoiced $ 500 . 00 to attend the course . the fee is nonrefundable . non - members will be charged only for each connection . multiple participants may watch on a single connection . in order to participate in the course , you will need a computer with internet connection on at least a 56 k modem and a java compliant browser , at least version 4 . 5 of netscape or internet explorer . you will also need a phone connection . phone charges will be paid by pjm for domestic callers . international callers must pay for their own long distance charges . our course is being produced by virtual - workshops . com . a few days from now you will receive registration confirmation from them . a few days prior to the course , you will receive log - on and dial up instructions from them as well as files of the slides which will be used so that you can print them out and take notes if appropriate . if you need additional details , you can call me on 610 - 666 - 8981 or call our customer service hotline at ( 610 ) 666 - 8980 . we look forward to your attendance at our program . sincerely , carolyn mullen customer relations & training",0 +"Subject: re : subscription renewals susan : vince would like to renew all of the below subscriptions , except the "" financial markets institutions & instruments for us canada & mexico "" . thanks ! shirley enron north america corp . from : susan l kennedy 10 / 09 / 2000 03 : 27 pm to : shirley crenshaw / hou / ect @ ect cc : subject : subscription renewals shirley , i hope you had a good weekend . the following subscriptions for vince are up for renewal . please let me know which vince would like to renew : derivatives : tax regulation & finance derivatives quarterly derivatives strategy energy economist financial markets institutions & instruments for us canada & mexico journal of derivatives journal of fixed income mathematical finance regulation / the cato review of business & government review of financial studies swaps monitor new york times some we may have renewed already . call me with any questions . thank you susan",0 +"Subject: weekly meetings maureen , this is to remind you that we scheduled , at your request , regular weekly meetings . we are supposed to meet every friday at 8 : 00 a . m . if i am not at the office , the meeting will be rescheduled . vince",0 +"Subject: re : anshuman neil , you must have already gotten my earlier mail of clarification . going forward , i agree with you that we should start the assigment early rather than late . however , i would not necessarily like to wait till even feb 5 . the bids for lng must go out by the 15 th of feb , and we need to do a lot of fuel based analysis before then . hence , if it is possible for anshuman ot be available before then , i would greatly appreciate it . perhaps even as early as monday or tuesday if possible ? ? regards , sandeep . neil mcgregor @ enron _ development 01 / 25 / 2001 10 : 19 am to : vince j kaminski / hou / ect @ ect cc : neil mcgregor / sin / ect @ ect , molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , sandeep kohli @ enron @ ect subject : re : anshuman thanks for the clarification vince i appreciate it . we have a significant resource problem here in india , given we have a renegotiation about fall in our laps . anshuman is one of our key analysts and we are very proud of his abilities and future potential for enron . once we have dabhol off the "" life support system "" we could look at a longer assignment . as far as the present one month assignment is concerned , i would rather go for an early start say 5 th feb till 5 th march . is this convenient to you and jeff . neil vince j kaminski @ ect 01 / 24 / 2001 10 : 41 pm to : neil mcgregor / sin / ect @ ect cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , sandeep kohli @ enron subject : anshuman neil , i would like to apologize for the confusion regarding anshuman . we have floated a number of possible scenarios regarding his trip to houston and there was a lot of confusion regarding the terms ( given that i was talking to sandeep every few days ) . currently , we expect anshuman to come to houston for one month to work on the dpc project ( at jeff shankman ' s request ) . the lawyers advised me that we need an ll visa for him , irrespective of the duration of his stay . sorry for the confusion . vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: henwood license karla : please inform henwood that enron will renew the license for the prosym software modules but will not renew the licenses for north american databases . the software modules to be renewed are : base system ( prosym ? ) ( ecosym is included in the base system ) asap / mstat multisym emss interface . it is not 100 % sure that the last module is required . nevertheless , please begin the agreement amendment process asap . i will let you know if there are modifications soon . thanks , grant .",0 +"Subject: temporary internet access for 5 rice students good morning : the research group will have 5 rice students , who are working on an enron project for their doctorate , coming to enron for approximately 1 week . they will be sitting in a conference room located on the 19 th floor research area . we need to get them internet access ( to be applied to one computer ) , with one logon id and password . will you please let me know what i need to do to get this accomplished ? they will be coming this thursday , april 5 th . thanks ! shirley crenshaw",0 +"Subject: re : request submitted : access request for jennifer . n . stewart @ enron . com i don ' t know her or anything about it . i sent her an email asking what she needs . - - stinson vince j kaminski 01 / 11 / 2001 08 : 22 am to : stinson gibner / hou / ect @ ect cc : subject : request submitted : access request for jennifer . n . stewart @ enron . com stinson , do you know anything about it ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 11 / 2001 08 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - arsystem on 01 / 10 / 2001 08 : 59 : 24 am to : "" vince . j . kaminski @ enron . com "" cc : subject : request submitted : access request for jennifer . n . stewart @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000013085 approver : stinson . gibner @ enron . com request create date : 1 / 10 / 01 8 : 59 : 14 am requested for : jennifer . n . stewart @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read ] resource type : directory",0 +"Subject: re : new business h , lyette , i am working systematically through un - answered messages . yes , i shall be delighted to meet your friend . vince helyette geman on 04 / 05 / 2001 04 : 58 : 47 am to : vkamins @ enron . com cc : vkaminski @ aol . com subject : new business dear vince , a friend of mine , head of research and new projects in a major bank , wanted to get in touch with the energy industry to possibly develop working relationships . i said that enron was the right place to start and "" you "" the right person to meet . in this order , he would come to the power 2001 and i would introduce him to you . is this o . k with you ? best regards helyette h , lyette geman professor of finance university paris ix dauphine and essec",0 +"Subject: internal var / credit candidate : amit bartarya hi vince , here is one internal candidate for the var / credit risk role . i have had plenty of contact with him over the past year or so and he is very hard working , intelligent and dedicated and has expressed interest in joining research on a few occassions . regards , anjam x 35383 as promised earlier , here is a copy of my cv : if you have any questions , feel free to ask . thanks , amit .",0 +"Subject: thomas knudsen : interviews cancelled dear all , i just got a call from thomas who wants to cancel the interviews scheduled for today - he told me that he would call me at the beginning of may ( after his holidays ) to arrange them . i did mention that there was a risk that the position may be filled by then , but he seemed unperturbed by this . regards , anjam x 35383 - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 17 / 04 / 2000 09 : 28 - - - - - - - - - - - - - - - - - - - - - - - - - - - anjam ahmad 14 / 04 / 2000 09 : 57 to : dale surbey / lon / ect @ ect , benjamin parsons / lon / ect @ ect , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : steven leppard / lon / ect @ ect , stinson gibner / hou / ect @ ect , kate bruges / lon / ect @ ect subject : interviews for thomas knudsen dear all , we need to see thomas on monday or tuesday as he is going on holiday after that . can we arrange to meet him on monday afternoon ? suggest 45 minutes each . starting from 3 pm : - monday 17 th april slotl : 3 pm slot 2 : 3 . 45 pm slot 3 : 4 . 15 pm slot 4 : 5 pm vince - please could you let me know which slot you prefer - we can try video conference , but i can ' t guarantee availability , so we may have to fall back to telephone interview for you . regards , anjam x 35383",0 +"Subject: re : risk report on "" guide to electricxity hedging "" and request for gu est access to enrononline ed , i sent a message to louise kitchen who runs the enrononline effort . she should be getting back to you shortly . vince ekrapels on 01 / 18 / 2000 12 : 00 : 12 pm to : vince j kaminski / hou / ect @ ect cc : subject : risk report on "" guide to electricxity hedging "" and request for gu est access to enrononline dear vince , greetings from boston , where we ' re doing all we can to help keep the price of gas high . as i may have told you earlier , i ' m writing a "" guide to electricity hedging "" for risk publications similar to the report on oil . i had planned to write a significant section on enrononline , and in the midst of my research on the topic was denied access by enron ' s gatekeeper . can you help get me in ? as always , the best from here . ed krapels - - - - - original message - - - - - from : donna greif [ mailto : dcorrig @ ect . enron . com ] sent : tuesday , january 18 , 2000 12 : 37 pm to : ekrapels @ esaibos . com subject : request for guest access dear mr . krapels : thank you for requesting guest access to enrononline . unfortunately , we are unable to give you quest access at this time . enrononline is exclusively for those companies who can transact wholesale energy commodities and related products . in addition , you had indicated within the comments section of your email that you are preparing a "" guide to electricity hedging "" for risk publications . i have forwarded your inquiry to our public relations department along with your contact information . should you not hear back from anyone within a reasonable amount of time , please feel free to contact our call center at 713 853 - help ( 4357 ) . sincerely , donna corrigan greif enrononline help desk 713 / 853 - 9517 - attl . htm",0 +"Subject: re : publication submission question martin , i don ' t see any problem . the article supportsenron ' s position . please , go ahead . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 02 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 05 / 2001 01 : 01 pm to : martin lin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : publication submission question martin , let me read it friday . we run our papers by our pr department to review for any potential conflict with the company line . i shall fwd it to them . i think you should submit it as an enron employee with a note that it was developed when you were at ut . vince from : martin lin on 04 / 02 / 2001 11 : 59 am to : vince j kaminski / hou / ect @ ect cc : subject : publication submission question my supervising professors from ut and i are finishing a paper ( finally ! ) that is based on work done for my phd . all of the research was done while i was a grad student . i have a couple of questions regarding submission of this paper ( to ieee transactions on power systems ) . 1 . should i submit it with my affiliation as the university of texas at austin or as enron ( ena , corp , etc ) ? 2 . what legal or other reviews / clearances would i need ? a draft of the paper for your review is attached . thanks , martin",0 +"Subject: maddox vince , here is michael maddox contact information : tel : ( 617 ) 497 6446 email : mmaddox @ cera . com they have an office in europe as well . i would love to be involved in projects involving georgia , azerbaijan , turkey , etc . my resume thanks , bessik matchavariani enron broadband services tel : 713 . 345 . 7230 fax : 713 . 646 . 8861 bessik _ matchavariani @ enron . net",0 +"Subject: congratulations ! vince , congratulations on your promotion to managing director . best wishes for your continued success . bob",0 +"Subject: re : lap - top kevin : tricia asked hector ( hardware tech ) to hold the machine until today and that she would call with a good time to drop off the laptop . the laptop is configured and ready to go . please advise . regards , steve andrews kevin g moore 01 / 05 / 2000 11 : 26 am to : stephen andrews / hou / ect @ ect , patricia tlapek / hou / ect @ ect , mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : lap - top hello , we ordered a lap - top for trisha tlapek and we are still waiting . . could you please provide me with information concerning this . # 991815 . thanks kevin moore x 34710",0 +"Subject: new listing goodmorning everyone , last year we did quite a bit of christmas baskets , during the time we were in the process of another major move . we are currently settled on all floors now , therefore our christmas basket list will be cut more than half . here are a list of the names that received baskets last year . matt rodgers chris hyde darren prager charlie notis harvey freese jon davis maryam golnarghi delores sustaita rodney keys iain russell trina williams todd butler pamela ford facilities robert knight phillip randle mary martinez daniel hornbuckle ( ozarka ) guy move - team greg whalley richard weeks mary sue rose there are several names boldly printed that probably will not receive the baskets this year . the christmas season is approaching therefore we must start preparing . please note that i will be out on vacation dec 13 th - 18 th , if possible i would like your list of names before my vacation begins whereby all baskets can arrive at their destinations on time . thanks kevin moore please any comments , question , answers - feel free to call x 34710",0 +"Subject: first derivatives class bob , i have asked martin , zimin , and paulo to prepare short presentations on the power , gas , and crude markets , respectively . this will take probably 45 minutes of class time . in addition i will prepare some lecture material . if we don ' t have enough class time to cover all assigned problems , we can just roll them to the next class . thanks , stinson",0 +"Subject: lunch conversation vince , we wanted to thank you for your time and support today . we have been thinking about our conversation and it may be better to wait until december before you approached delainey . this time period would give us the opportunity to change his impression of our contributions to gas and power . please let us know if you would advise differently . thank you , kristin and john",0 +"Subject: re : confidential yannis , yes , very much . please stop by this week or during the week of the 24 th . i am in australia next week . vince",0 +"Subject: interview schedule for shen ( charles ) yingquan please find the interview packet for the above - referenced person . the interview will occur on friday october 13 , 2000 . please print all three documents for your reference . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . stephanie 58701",0 +"Subject: re : telephone interview with the enron research group hi christine ! thanks for being so prompt ! i have scheduled the telephone interview for 2 : 00 pm on thursday , november 30 th . they will call you at ( 504 ) 861 - 9110 . if this is not the telephone number that you wish to be contacted at , please let me know the number that you do want them to call you on . the research group does sponsor green cards and visas . below is a short synopsis of what the research group does . however , they will be glad to answer any questions you have during the interview . "" the enron research group is responsible for option modeling , building systems for risk quantification and management , development of optimization systems , help with statistical analysis and anything that requires advanced math "" . the research group supports all units of enron . if you have any other questions , please feel free to contact me , or feel free to ask during the interview . talk to you on thursday ! best regards , shirley crenshaw "" qing chen "" on 11 / 27 / 2000 05 : 40 : 09 pm to : cc : subject : re : telephone interview with the enron research group hi shirley , thanks for the arrangement . i am available to start the interview : - from 9 am to 10 am on wednesday and thursday - from 2 : 30 pm to 4 pm on thursday new orleans is in the central time zone . in addition , could you let me know : - what is the main responsibilities of the research group ; - what positions you are recruiting for ; and - what qualifications and skill sets are critical to these positions . thanks . i look forward to hearing from you . best regards , qing ( christine ) chen mba 2001 a . b . freeman school of business tulane university tel : ( 504 ) 861 - 9110 e - mail : qchenl @ tulane . edu - - - - - original message - - - - - from : to : sent : monday , november 27 , 2000 10 : 25 am subject : telephone interview with the enron research group > good morning ms . chen : > > vince kaminski and several members of the research group would like > to conduct a telephone interview with you sometime this week at your > convenience . please let me know the times that you are available and > they will contact you . > > the telephone interviews usually last approximately 1 hour and will be > conducted via a speaker phone . > > the interviewers will be : > > vince kaminski managing director and head of research > stinson gibner vice president , research > tanya tamarchenko director , research > zimin lu director , research > > look forward to hearing from you . > > best regards , > > > shirley crenshaw > administrative coordinator > enron research group > >",0 +"Subject: independent variables for ene regressions brad , as we discussed , it ' s very difficult to find drivers of the ene stock ' s behaviours . we investigated about 30 comparable stocks , 10 capital market indices , and three energy commodity indices . regular regressions as well as regressions with different legs and leads were performed . some variables show significant correlated with ene stock during particular time periods , but most of those correlation disappears when we tested them over different or longer time periods . only two variables , s & p utility index ( spxu ) and dow jones utility index ( util ) , show stable and significant relationship with ene stock ( a summary of these relationship can be found in the attached file "" outputsummary "" ) . but as you can see , the r 2 are below 30 % . also , the ? durbin - watson statistics tell us to be careful about autocorrelation . ? basically , the regression analysis so far confirms our original opinion - - ? it ' s hard , if not impossible , to find out any real driver of the ene stock . ? after enron added new core business several month ago , the stock behaved more ? or less like a tele _ comm stock , which suggests that enron stock has entered ? into a new phase . to capture , at least trying to capture , its ? characteristics in the new phase , we need a lit bit more time to cumulate the ? market date . ? ? let me know if you need me investigate more variables or you come up with ? some new thoughts . ? ? ? ? vincent ? ?",0 +"Subject: esai gas / power alert on impact of gas prices on generation investment attached is an essay of the impact of gas prices on generation investment . if you have any questions or comments , feel free to contact me . ed _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ edward n . krapels , phd managing director esai power and gas services tel 781 245 2036 cell 617 899 4948 ekrapels @ esaibos . com www . esai . com - esai gas alert 101800 . pdf",0 +"Subject: re : hello from vince kaminski at enron shmuel , the date of our trip to berkeley has been set . it will be october 16 th and 17 th ( monday and tuesday ) . i shall be glad to make a presentation on energy derivatives markets ( development of the markets in the us and europe , valuation difficulties , enron ' s role in developing the forward markets for natural gas and electricity ) . please , let me know if this topic would be of interest to you . if this is the case , i shall follow with a title and an abstract . by the way , are you free for dinner on monday ? vince "" shmuel oren "" on 08 / 24 / 2000 08 : 59 : 38 am to : "" vince j kaminski "" cc : subject : re : hello from vince kaminski at enron great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a title and abstract . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : "" vince j kaminski "" to : "" shmuel oren "" cc : "" vince j kaminski "" ; "" ashley baxter "" sent : thursday , august 24 , 2000 9 : 58 am subject : re : hello from vince kaminski at enron > > > shmuel , > > thanks for the message . i am working with our recruiter , ashley baxter , > to finalize the date of the trip . i shall shoot for october the 23 rd > if this date works for the rest of our team . > > vince > > > > > > > "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am > > to : vince j kaminski / hou / ect @ ect > cc : > subject : re : hello from vince kaminski at enron > > > > dear vince . > i sent you a reply earlier this month but i haven ' t heard from you about the > date of your visit . our department has a seminar every monday . if you can > schedule your visit on a monday i would like to invite you to give a seminar > which will be attended by many of our graduate students and faculty and will > give you an opportunity to tell them about your program . with sufficient > lead - time i can advertise the seminar in the hass school to their financial > engineering students . > shmuel . > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > shmuel s . oren , professor > dept . of industrial engineering > and operations research > 4117 etcheverry hall > university of california > berkeley , ca 94720 - 1777 > e - mail : oren @ ieor . berkeley . edu > phone : ( 510 ) 642 - 1836 or 5484 > fax : ( 510 ) 642 - 1403 > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > - - - - - original message - - - - - > from : > to : ; ; > > sent : tuesday , august 08 , 2000 10 : 59 am > subject : hello from vince kaminski at enron > > > > shmuel , > > > > i hope you remember me . i visited you together with aram sogomonian , a > > good friend of mine , a few years ago . i am currently responsible , among > > other things , for recruiting graduates with finance and / or technical > > backgrounds at the university of berkeley . i would be glad to give you a > > call and talk more about the details of our program . my colleague , > > ashleybaxter , from the analyst / associate program at enron would join me > > as well . > > > > i am sending you a copy of the brochure about the analyst / associate > > program . > > > > vince kaminski > > > > > > vincent kaminski > > managing director - research > > enron corp . > > 1400 smith street > > room ebl 962 > > houston , tx 77002 - 7361 > > > > phone : ( 713 ) 853 3848 > > fax : ( 713 ) 646 2503 > > e - mail : vkamins @ enron . com > > > > > > > >",0 +"Subject: re : london visit paul , i shall be in london in the beginning of october . i shall notify you about the timing of my trip later this week . vince paul . e . day @ uk . arthurandersen . com on 09 / 18 / 2000 03 : 29 : 50 pm to : vince . j . kaminski @ enron . com cc : subject : re : london visit i understand this has been cancelled - no problem - life is kind of hectic here anyway ! ! why don ' t we try to rearrange next time you ' re over ? kind regards paul day to : paul e . day cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com date : 25 / 08 / 2000 19 : 10 from : vince . j . kaminski @ enron . com subject : re : london visit paul , thanks for your message . i am in process of finalizing my plans for the trip to london in the end of september . i delayed responding to you message till i had more specific information . unless there a major change in my schedule , i shall arrive in london on monday morning ( september 18 ) and leave on thursday in the evening . please , let me know what would be convenient time to meet . you can send me an e - mail message and my secretary will contact to confirm the date and place of the meeting . my assistant ' s name is shirley crenshaw and her phone number is 713 853 5290 . i look forward to meeting you , tom and julian . vince kaminski paul . e . day @ uk . arthurandersen . com on 08 / 25 / 2000 11 : 53 : 02 am to : vince j kaminski / hou / ect @ ect cc : tom . o . lewthwaite @ uk . arthurandersen . com , julian . leake @ uk . arthurandersen . com subject : london visit i understand that you will be in london around 20 september . tom lewthwaite has asked me to arrange a meeting between you , tom and julian leake . i understand that you have met tom and julian before . i would also like to attend - i am a manager in our uk financial services practice with responsibilty for enron from a uk financial services perspective . we would like to discuss any risk management concerns that you may have and any internal initiatives with which we could assist . if you are happy to meet on this basis , i would be grateful if you could let me know how you to proceed ( whether i should arrange timings with you , your secretary , someone in london etc ) . you can contact me on + 44 20 7783 7446 ( at enron ' s london offices ) or on this e - mail address . kind regards paul day * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: re : thanks vince . i ' ll make the reservation , then send shirley the details to issue an invite to us all . steve vince j kaminski 09 / 20 / 2000 05 : 10 pm to : steven leppard / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : steve , i shall talk to john sherriff about such issues . my intention is to vest you with maximum decision making powers . it makes most sense to me to make decisions where the information resides . please , invite anjam or alternatively make reservations for dinner and let shirley know . shirley can send an invitation to everybody in the group on my behalf . it would be really bad to exclude anjam from the dinner . it vince steven leppard 09 / 20 / 2000 10 : 30 am to : vince j kaminski / hou / ect @ ect cc : subject : re : thanks vince . dinner on sunday ok all round . do you want anjam along too ? i can ' t really ask him , given our current relationship . one other thing , have you had thoughts on reporting lines , who signs expenses , etc . etc . , or are these issues to be resolved when you come over ? cheers , steve vince j kaminski 09 / 20 / 2000 04 : 14 pm to : steven leppard / lon / ect @ ect cc : subject : steve , steve , this is the spreadsheet . also , please , let shirley know if the dinner on sun is ok . vince",0 +"Subject: var for enroncredit . com rick and ted , it looks more like foxes building chicken houses as opposed to foxes guarding chicken houses . i shall send a message to bryan saying that the research has to look under the hood and examine the mechanics of the model in order to sign off on it . a dog and pony show is not sufficient . in any case , the decision to approve the model should not be left to ben and kirstee . please , let me know what your thinking is . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000 01 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 11 / 10 / 2000 03 : 20 am to : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect cc : ted murphy / hou / ect @ ect subject : var for enroncredit . com vince / steve - - we are going to the board in december to ask for formal limits . as you know one of the key limits at the board level is value at risk . to that end , it is imperative that you are comfortable with our approach for calculating var . we have implemented a third party risk system which holds all of our positions and are in the process of putting the debt positions in . the system has a var engine which is being demo ' d by the vendor today . ben and kirstee are attending the demo and if they find the technology acceptable , i propose moving forward with implemantion of the module . pls . let me know if this sounds reasonable and how you would envision implementing . thanks",0 +"Subject: announcing tff 2000 happy new year ! just a note to announce the dates for this years texas finance festival . this year we are meeting earlier in april , in san antonio , and start the program on friday . please put the date on you calendar and send in your registration forms asap as space at the conference is limited . i also encourage you to register with the hotel immediately as we were able to reserve only a limited number of rooms at the reduced conference rate . hope to see you all there ! more fun in texas . john - announcerev . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: dear vince , bardzo dziekuje za podeslana literature , szczegolnie drugie wydanie ksiazki . bylismy w londynie w czerwcu zeszlego roku , ale w ksiegarni znalezlismy tylko piersze wydanie . obaj z alkiem ( ojcem ) wspolpracujemy z energetyka ( glownie polska ) od kilku lat . w zeszlym roku wydalismy ksiazke "" gielda energii : strategie zarzadzania ryzykiem "" , a obecnie pracujemy nad jej angielskim wydaniem . na jaki adres ci ja przyslac ? serdeczne pozdrowienia , rafal",0 +"Subject: re : times 2 filing units rachel , can you give us a delivery date on p . o . no . 0898 - 984503 ? thanks , pat anita dupont @ enron 03 / 08 / 2001 09 : 30 am to : pat scarborough / epsc / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : times 2 filing units pat : will you please notify me when these filing units are going to be delivered as we have to unload the lateral file cabinets that are currently in that room . also , will the men who deliver the times 2 units remove the lateral files ? thanks . anita - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 03 / 08 / 2001 09 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont 02 / 21 / 2001 09 : 39 am to : pat scarborough / epsc / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : times 2 filing units pat : out co # is 0413 , rc # is 107043 . please deliver them to eb 19 c 2 . also , please let me know when they are going to be delivered as we have to unload the lateral file cabinets that are currently in that room . will the men who deliver the times 2 units remove the lateral files ? thanks . anita",0 +"Subject: re : interest in a position alison , my group needs generally people with advanced skills in mathematics and programming . i shall try to help you by forwarding your resume ( with your permission ) to other units of enron . please , let me know if it ' s ok with you . vince enron north america corp . from : mary alison bailey 11 / 21 / 2000 09 : 42 am to : vince j kaminski / hou / ect @ ect cc : subject : interest in a position dear vince , when we talked last , you mentioned you were considering making additions to your office staff . if you are still considering these additions , i would like to talk to you and see if there might be a place for me . it would be wonderful to work with a group such as yours . it has been great working in recruiting , but the time has come for me to try something else . i am beginning to look around , but wanted to talk to you first . if my skill sets match a position you might be adding , please consider me . i have attached my resume so that you will have an idea of what i have done . thank you for your consideration . have a great thanksgiving ! alison bailey 713 - 853 - 6778",0 +"Subject: mid - project review date - enron enron tiger team : the enron tiger team mid - project review date has been set for tuesday , feb 20 from 6 : 30 - 8 : 30 pm in shdh 205 . your host will be on campus for the review . each of the 3 teams will present at this time followed by q & a . all students are required to attend . questions , please contact the fap office . donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: password security notice for password renewals only it security & controls  ) password security notice passwords the key to maintaining information and system security is the use of well - selected and guarded passwords . because your password is our first line of defense , stronger password selection criteria will soon be implemented for all employees . password policy passwords  ( 1 . must be at least of eight characters in length . 2 . must not contain names , userids , common english dictionary words , and begin or end with a number . 3 . must contain alphanumeric characters and contain at least one special character . no more than fifty percent of the overall password can be in english . 4 . must not be reused or cyclical . 5 . must be changed every 60 days . 6 . must not be publicly displayed . 7 . must not be shared with other users . choosing a good password comes down to two things . first , avoid common everyday words a potential hacker  , s software will be looking for . second , keep your password simple enough that you can remember it without having to write it down . please keep in mind that the enron code of ethics holds employees responsible for password security . it security & controls conducts periodic audits to ensure compliance with company policy . for any problems encountered concerning password controls , please call your appropriate resolution center ( available : 24 hrs . / day , 7 days / week ) .",0 +"Subject: performance at this point , monday december 4 th seems to be free for most of you whose calendar i have . let me know . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 30 / 2000 07 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 10 / 30 / 2000 07 : 32 am to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , maureen raymond / hou / ect @ ect , mike a roberts / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , osman sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect cc : subject : performance good morning everyone . please let me know which date you would prefer . december 4 or december 8 th . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 30 / 2000 07 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - norma villarreal 10 / 28 / 2000 10 : 47 am to : shirley crenshaw / hou / ect @ ect , stinson gibner / hou / ect @ ect , mike a roberts / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , maureen raymond / hou / ect @ ect , zimin lu / hou / ect @ ect , osman sezgen / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect , ramona perkins / corp / enron @ enron subject : performance the research group will be conducting a performance review committee ( prc ) meeting in early december . all vice presidents , sr . directors and directors should attend . shirley crenshaw will be contacting you to schedule the prc meeting date and time . these are the current available dates : december 4 , 8 . in preparation for the meeting please submit recommended rankings and promotions to me based on employee feedback by november 29 , 2000 . please included analyst / associates , if you have any questions please feel free to call me or ramona perkins at x 58165 . here is some helpful information for you as we proceed throughout he performance evaluation process october 25 , 2000 - november 17 , 2000 ( 3 1 / 2 weeks ) : employees will provide a list of accomplishments occurring after june 1 , 2000 to their supervisors employees will receive an email advising of access and passwords to pep system ( 10 / 25 ) employees identify selected reviewers on line and will submit to supervisor supervisor will add and / or delete reviewers in order to capture a full 360 degree feedback supervisor will submit and reviewers will receive an e : mail advising them of their reviewer role reviewers can decline or complete the review once system closes on november 17 , 2000 , prepare for research prc meeting ( print consolidate review , pre rank employees , identify candidates for promotion and submit to hr ) important dates ( i will notify you of any changes ) : september 30 , 2000 only employees before 10 / 1 / 00 will be included for pep and bonuses october 15 , 2000 whomever is the supervisor for employees on 10 / 15 / 00 will be responsible for their reviews october 25 , 2000 pep system opens ( http : / pep . corp . enron . com ) october 30 - 31 , 2000 pep overview session at doubletree november 17 , 2000 pep system closes for feedback november 23 - 24 thanksgiving holiday november 29 , 2000 provide hr with pre - rankings and promotions december tbd , 2000 research prc january 31 , 2001 all reviews must be complete , signed and submitted to hr norma sr . hr representative x 31545",0 +"Subject: re : fw : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford iris , we can mention to ben that the papers will be edited and combined into a coherent review . vince from : iris mack / enron @ enronxgate on 04 / 23 / 2001 01 : 49 pm to : vasant shanbhogue / enron @ enronxgate , vince j kaminski / hou / ect @ ect , amitava dhar / corp / enron @ enron cc : subject : fw : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford hi , attached is a bit of feedback from ben regarding the papers listed below . can you help me out here ? thanks , iris - - - - - original message - - - - - from : parsons , ben sent : monday , april 23 , 2001 3 : 05 am to : mack , iris subject : re : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford hi iris i would not include paper 8 , as paper 7 supersedes it . also how much rewriting of these papers do you envisage ? some of them are not up - to - date , or were written poorly and under time - pressure , so what do you envisage eventually sending to duffie ? thanks ben from : iris mack / enron @ enronxgate on 21 / 04 / 2001 22 : 30 cdt to : ben parsons / lon / ect @ ect cc : vasant shanbhogue @ / o = enron / ou = na / cn = recipients / cn = notesaddr / cn = e 6795104 - 40 ff 9820 - 86256525 - 68 daao @ ex @ enronxgate , vince j kaminski / hou / ect @ ect , scott salmon / eu / enron @ enron , bryan seyfried / lon / ect @ ect , nigel price / lon / ect @ ect , tomas valnek / lon / ect @ ect , george albanis / lon / ect @ ect , markus fiala / lon / ect @ ect , craig chaney / enron @ enronxgate , kim detiveaux / enron @ enronxgate , amitava dhar / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , mike mumford / lon / ect @ ect subject : re : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford hi ben , i think i have read all the papers that are to be used in the comparative model study to be sent to professor duffie at stanford . these documents are all listed below . please let me know if i have omitted any ( however , don ' t get the impression that i am begging for more papers to read ) . now i will try to transform my notes into a draft for professor duffie . thanks , iris list of papers for comparative model study 1 . actively managing corporate credit risk : new methodologies and instruments for non - financial firms by r . buy , v . kaminski , k . pinnamaneni & v . shanbhogue chapter in a risk book entitled credit derivatives : application for risk management , investment and portfolio optimisation 2 . neural network placement model by george albanis , enroncredit ( 12 / 22 / 00 ) 3 . pricing parent companies and their subsidiaries : model description and data requirements by ben parsons and tomas valnek , research group 4 . a survey of contingent - claims approaches to risky debt valuation by j . bohn www . kmv . com / products / privatefirm . html 5 . the kmv edf credit measure and probabilities of default by m . sellers , o . vasicek & a . levinson www . kmv . com / products / privatefirm . html 6 . riskcalc for private companies : moody ' s default model moody ' s investor service : global credit research 7 . discussion document : asset swap model by ben parsons , research group ( 4 / 20 / 01 ) 8 . asset swap calculator : detailed functional implementation specification ( version 1 . 0 ) by ben parsons , research group 9 . discussion document : live libor bootstrapping model by ben parsons , research group ( 4 / 20 / 01 ) 10 . the modelling behind the fair market curves : including country and industry offsets by nigel m . price , enron credit trading group 11 . pricing portfolios of default swaps : synthetic cbos - moody ' s versus the full monte ( carlo ) by nigel m . price , enron credit trading group 12 . placement model vl . 0 : discussion document by ben parsons , research group , 2000 13 . credit pricing methodology - enroncredit . com by ben parsons , research group 14 . correlation : critical measure for calculating profit and loss on synthetic credit portfolios by katherine siig , enron credit group 15 . discussion document : var model for enron credit by ben parsons , research group , ( 1 / 3 / 01 ) 16 . methodology to implement approximate var model for the credit trading portfolio by kirstee hewitt , research group",0 +"Subject: schedule vince , my schedule for the risk 2001 conference in houston is : arrive sunday 4 / 13 9 pm . staying at the houstonian depart tuesday 4 / 15 5 : 30 pm . hopefully , we can get together . thanks , aram ( cell phone 503 - 701 - 6692 )",0 +"Subject: re : vince . . . feedback from howard on debrief jeff , we shall continue talking to howard when he comes back from nyc . i shall set up an interview with him . vince "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" on 02 / 05 / 2001 12 : 49 : 20 pm please respond to "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" to : vince . j . kaminski @ enron . com cc : subject : vince . . . feedback from howard on debrief hi vince , this is exactly what i recieved back from my man in the uk . . . pls review . any comments or instructions ? thank you , jeff wesley 949 813 2241 direct spoke to howard , he is intereste in speaking to someone higher up the foodchain at enron . he got the impression that those people he met would report into him . he really needs to speak to someone higher up and discuss the roles strategic potential . he is interested mainly in structuring which this role is not . but he recognised where it might lead and this would potetially be interesting to him but needs to speak to someone who is involved in the strategic direction of enrons credit . com . vuthy is aware that enron have intimated they want to see him again . howard has told me there is a lot happening for him both here and in the us . vuthy will arrange to get howard interviewed here in london early next week . tks and rgds alec * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: ceraweek 2000 update ! dear ceraweek 2000 registrant , thank you for your recent registration to ceraweek 2000 , cera ' s 19 th annual executive conference and related events , february 8 - 10 , 2000 in houston , tx . ceraweek 2000 promises to be a premier international event offering senior energy executives new ideas , insight , and strategic thinking , as well as opportunities for discussion on the major issues facing the global energy industries . to keep abreast of new speakers and agenda changes , we recommend that you visit our website at http : / / www . cera . com / ceraweek / . please note that there have been slight changes to the agenda and schedule . if you have questions or concerns regarding ceraweek 2000 please contact cera registration at register @ cera . com or 800 879 - 2372 ext . 800 ( outside the u . s . ( 617 ) 497 - 6446 ext . 800 . ) we look forward to seeing you in houston . sincerely , cera registration - attl . htm",0 +"Subject: re : contact info glenn , please , contact rudi zipter to set up an interview with him and david port . vince "" glenn darrah "" on 04 / 25 / 2001 04 : 27 : 03 pm please respond to gdarrah @ bigfoot . com to : vince . j . kaminski @ enron . com cc : subject : contact info vincent , congratulations on spearheading the mind ' s eye madness event - it looks like quite a success . my biggest disappointment is that i am leaving enron this week and have been too busy to participate as much as i would like . i have had continued interest in the work and presentations that amy oberg has done , so would have really enjoyed the workshop yesterday . i am still considering doing some or all of the motorcade friday , however that may work . separately , thanks for the update in the lobby today on the enterprise risk project . please keep in touch with me . as i mentioned , my redeployment period ends tomorrow ( april 26 ) , but i currently do not have an outside job lined up and still have a lot of interest in the project if something can be worked out over the next few weeks . although he is not in the same group as david port , i have worked a lot with brad larson in the rac underwriting group - he may be a good source of information on me also . contact information : e - mail : gdarrah @ bigfoot . com phone : 713 . 668 . 4277 cell : 713 . 320 . 5615 thanks , glenn darrah get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: re : congratulations thanks vince and likewise congratulations on your promotion to md ! i enjoyed getting to work with you and your group over the past year . rick c .",0 +"Subject: energy leader consulting generation evaluator ( ege ) shirley : as requested , herein is information regarding the meeting with vince kaminski . the presentation on the ege tool ' s applications and the allegheny energy case study is timed to take an hour . if the meeting is most conveniently scheduled for tuesday , may 29 , might i request it be set for late afternoon ( as my other appointments are the next day ) . and , as vince will recall , i was co - leader of the energy consulting business of phb hagler bailly , and developer of the ramp up , real time , 75 check and electric strategy tools . presently , i am ceo of energy leader consulting ( elc ) . background the u . s . power generation industry has become increasingly efficient in recent years . rapidly growing new entrants seek profit maximization aggressively . utilities , who still control most power plants , endeavor to adopt the entrants ' methods . yet , inefficiency among many utilities remains widespread . utility inefficiency arises from adherence to decades - old habits and in unit commitment and dispatch and planned maintenance scheduling . many utilities , notwithstanding the industry - wide trend towards profit maximization , cling to ingrained routines . inefficiency can also arise from the diseconomies of small scale . a utility may operate a relatively small system ( fewer than a dozen plants ) . a small system lacks portfolio diversification and perspective in its focus on its regulated customers , playing the wholesale market at the margin . for a variety of reasons , utilities are reluctant to cut back the starts of their generating units , let alone shut down any ( even temporarily or seasonally ) . economically inefficient units continue to be committed , week after week , and run in the half - load range . ege objectives ege identifies and assesses generating units of a utility with questionable commitment routines . taking into account transmission and reliability factors , the procedure points towards profit opportunities that may be exploited by another industry participant . i . an industry participant can use ege as a basis for a medium or long - term wholesale power transaction with a utility ; or to price wholesale power more aggressively , to take market share from the utility ( i . e . , compel changes in unit commitment habits ) . ii . an industry participant can use ege to spot and quantify efficiencies that would come from a merger or acquisition . iii . a power plant developer can use ege to estimate the incremental value a new plant will enjoy when the target utility ' s unit commitment routines inevitably become rationalized . specific ege concepts ege reduces and analyses the extraordinary but unwieldy continuous emission monitoring data base intelligently focusing on profit opportunities . it produces indicative statistics such as : a . the frequency distribution of starts per week ; b . the frequency distribution of starts by day / 15 - minute segment during the week ; c . the frequency distribution of load level ; d . the frequency distribution of hours of operation per start ; e . average heat rate and approximate fully - allocated cost in the half - load range ; f . average ramp rate from the half - load range ; g . the frequency distribution of unused connected capacity during the highest demand hours ; and h . forced - off maintenance outage rate ( where indicated ) . indicative statistics are generally aggregated by month / year ; in some cases , by temperature range . ( they can be by regional wholesale prices as well . ) ege establishes if the target utility has changed unit commitment routines significantly in recent years . ege is based upon uniquely timely actual hourly operating data . ege is now updated for the 4 th quarter 2000 ( through december 31 , 2000 ) . ege lst quarter 2000 ( through march 31 , 2001 ) will be available approximately june 15 , 2001 . ege also compares and ranks generating units ' commitment and dispatch with that of similar units operated by the target utility ( as well as other regional generators ) . some utilities operate a group of economically marginal units at the half - load level for lengthy time periods ( without an apparent reliability basis ) , splitting the limited economic demand for power among the units . other ege supporting data : i . planned maintenance schedule ( where indicated ) ; j . actual maximum generating capacity ; k . actual minimum generating capacity ( actual maximums and minimums can differ significantly from government - reported values ) ; l . average heat rate in the full - load range ; and m . average heat rate in the three - quarter - load range . with respect to a generating units ' average heat rate in the half - load , three - quarter - load and full - load ranges , it can be instructive to rank these relative to similar generating units within a region . it can also be of interest to identify significant seasonal variations in average heat rates and maximum capacities , and changes in recent years in these parameters . the real - world example of allegheny energy allegheny energy can serve as a case study to illustrate the application of ege . in the 4 th quarter 2000 , for instance , one high - cost generating unit was started virtually every weekday morning ( 52 times ) and committed for the whole day ( in all but two cases ) . arguably , there are power products that could substitute for this routine ( in part at least ) at a profit to the seller of the product and allegheny energy . another high - cost allegheny energy generating unit was started virtually every weekend during the autumn ( nine times ) and committed for most of the coming week . at another plant , two high - cost units were operated too often in the expensive half - load range ( some 550 hours ) and three - quarter - load range ( another 400 to 600 hours ) ; they were seldom called upon to run at higher levels . again , there are power products that that address these practices and might appeal to allegheny energy . offering of energy leader consulting ( elc ) ege is a procedure , not a software package or data base . elc believes this format is more effective in arming clients with the information they need to act upon profit opportunities . elc transfers its "" knowledge "" about the ege procedure and the supporting data methods in a straight - forward four - step process : 1 . enron would select one to three target utilities . 2 . elc would perform the ege procedure on the target utilities . 3 . employing this real - world analysis as a pedagogic tool , elc , in a one - day seminar with enron personnel , would instruct how to perform the procedure in the future ( without the assistance of elc ) . 4 . optionally , elc would provide ege supporting data , quarterly , to enron . the basic ege supporting data set is national including all generating units under the continuous emission monitoring program ( virtually all fossil fuel units ) . parameters that are incorporated , and the data set format , will be specified upon request . custom modifications will be considered . steven a . mitnick chief executive officer energy leader consulting 4807 41 st street , nw washington , dc 20016 ( 202 ) 997 - 0924 voice ( 202 ) 537 - 0906 fax smitnick @ energyleader . com",0 +"Subject: thanks vince ok vince . alec at rw and i are ready for you concerning howard . thank you for the information . jeff * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * jeff my interview with howard will be scheduled on a different day . vince * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: re : mit offers karen , the total of 5 offers . i sent you 2 cvs electronically , 2 hard copies to charlene . paulo ' s resume will follow . vince karen marshall 02 / 22 / 2000 03 : 51 pm to : vince j kaminski / hou / ect @ ect cc : charlene jackson / corp / enron @ enron , ginger b gamble / hou / ect @ ect , celeste roberts / hou / ect @ ect subject : mit offers vince , do you want 3 offers extended or 5 ? i just noticed that you plan to fax two additional resumes . if so , when can i expect the additional resumes ? karen - - - - - - - - - - - - - - - - - - - - - - forwarded by karen marshall / hou / ect on 02 / 22 / 2000 03 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - karen marshall 02 / 22 / 2000 03 : 37 pm to : vince j kaminski / hou / ect @ ect cc : charlene jackson / corp / enron @ enron , ginger b gamble / hou / ect @ ect , celeste roberts / hou / ect @ ect subject : mit offers vince , i will handle the offer letters for the candidates . i have the resumes for darten williams and sevil yaman . i know you only provided the e - mail memo for paulo rocha , but i really need his resume in order to capture the necessary information for his offer letter . please have him e - mail it to me at karen . marshall @ enron . com thanks , karen marshall recruiting manager",0 +"Subject: reviewer approval please note that your employees have suggested the following people to complete a feedback form on their behalf . you will need to access the performance management system ( pep ) to either approve or decline these suggested reviewers . once you have approved the suggested reviewers they will be notified and can begin completing the feedback form . your list of employees that have suggested reviewers are listed below : date suggested : may 24 , 2000 feedback due date : jun 16 , 2000 employee name : crenshaw , shirley j date suggested : may 19 , 2000 feedback due date : jun 16 , 2000 employee name : kollaros , alexios date suggested : may 22 , 2000 feedback due date : jun 16 , 2000 employee name : krishnarao , pinnamaneni v date suggested : may 22 , 2000 feedback due date : jun 16 , 2000 employee name : shanbhogue , vasant",0 +"Subject: now visible red to : mike a roberts / hou / ect , jose marquez / corp / enron @ enron , tony hamilton / eu / enron @ enron cc : stephen bennett / na / enron @ enron subject : leaving london hi guys . . . tony and i wanted to summarize "" where we go from here "" - here is how we see it . i left the string attached - just read below . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by stephen bennett / na / enron on 04 / 26 / 2001 10 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tony hamilton 04 / 26 / 2001 10 : 46 am to : stephen bennett / na / enron @ enron cc : subject : re : leaving london my comments in blue . . . tony enron capital & trade resources corp . from : stephen bennett 26 / 04 / 2001 16 : 36 to : tony hamilton / eu / enron @ enron cc : subject : leaving london hi guys . . . before leaving here i wanted to quickly summarize the projects that have been left open : 1 ) tony shifts his focus slightly toward more development - a little less day to day forecasting development - building and developing a transatlantic heating demand model - including shipment - building an nao model and index for wx deriv - developing a model for the api number - examine uk met data and potential for getting ensemble forecasts from the ecmwf - keep up with non - enron global markets ' future needs without commiting current resources operational - begin daily briefings for agriculture - examine data sources and forecast products - continue to produce global summary - with help from steve / jose in houston - continue to produce 1 - 5 and 6 - 10 day forecasts for europe coordinating with houston - continue to coordinate on us 6 - 10 day forecasts with houston - continue monday / wednesday briefings for crude meetings - provide met comment and support toward weekly / monthly / seasonal official outlooks from the uk met for wxderiv ( team support from houston ) - design and develop forecast of met forecast ( try to beat their release by at least 1 hour ) prior to each daily update ( like our bloomberg forecaster ) - identify any additional "" market - movers "" , anticipate and add value to same "" back - burner "" - develop a method for providing probability distribution / confidence graphics based on numerical forecast guidance and ensemble data "" on the shelf "" - daily briefings and products for uk gas - daily briefings and products for continental power - daily briefings and products for dutch power - weather support for coal trading ? - daily forecasts of and comment on uk met official 3 - 5 and 6 - 10 forecasts - automation of temperature history / forecast plots from model ensemble data 2 ) steve continues to work on a few ongoing projects and ties up "" loose ends "" on - going - automate a process for getting forecast temps ( model / other ) from earthsat data - continue to produce the us part of the global exec summary - consult with tony on 1 - 5 day europe forecast - continue to produce port status report - work on expanding this report - european forecast verification ( like houston ) "" loose - ends "" - contract with wsi for met data - talk to earthsat about a daily conference call for tony - talk to uk met office about a daily conference call for tony - refine list of europe forecast cities and get them from earthsat - make sure jose didn ' t destroy my house ! ! 3 ) jose - continues to investigate data for global ag and works with tony on getting ag products up and running - makes sure steve ' s dog is in perfect shape to return home this weekend ( i . e . find one with identical markings before steve gets back ! ) - order mofongo for london research luncheons ! that ' s it - see you tuesday . . . . steve",0 +"Subject: visiting enron may 4 th vince ( and shirley and melinda ) , thanks so much for including me in this meeting with stanford engineering - - - unfortunately , i ' m committed to participate in the enron law conference in san antonio that entire day . thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 09 / 2001 03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 04 / 09 / 2001 01 : 21 pm to : christie patrick / hou / ect @ ect cc : melinda mccarty / corp / enron @ enron subject : visiting enron may 4 th christie / melinda : can christie meet with susan and vince on friday , may 4 th from 1 : 30 - 3 : 00 ? please let me know . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 01 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 09 / 2001 01 : 18 pm to : shirley crenshaw / hou / ect @ ect cc : subject : visiting enron may 4 th shirley , fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 01 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" susan c . hansen "" on 04 / 06 / 2001 06 : 14 : 10 pm to : vince . j . kaminski @ enron . com cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu subject : visiting enron may 4 th dear vince , this is great news ! donna and i are delighted that you have time to see us on may 4 th . i ' ll be out of the office next week . by copy of this email to my assistant , carol lovell , i will ask her to get in touch with shirley for scheduling as well as directions on where to meet you . we ' ll be glad to meet with christie patrick as well . looking forward to meeting you , susan at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote : > susan , > > thank you for your message . i shall be glad to meet with you on may the > 4 th . > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to > set up the meeting . > > also , for your information , we have recently set up a special unit to > coordinate enron ' s > relationships with the universities . the person running this unit is > christie patrick . > please , feel free to contact her and give my name as a reference . i shall > coordinate the meeting > on may the 4 th with her . > > vince > > > additional information re christie : > > phone : ( 713 ) 853 - 6117 > > email : christie _ patrick @ enron . com > > > > > > "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm > > to : vkamins @ enron . com > cc : > subject : visit from stanford ? > > > dear dr . kaminski , > > let me briefly introduce myself , i am the director of corporate relations > for the school of engineering at stanford university . in this role , i am > always on the watch for ways to bring our faculty together with companies > that have an appetite for engagement with top tier research institutions . > > i believe you know hill huntington , who is a senior researcher with > stanford ' s energy modeling forum . he suggested i get in touch with you for > some ideas about contacts at enron . i ' m in the process of planning a trip > to texas in early may along with my colleague donna lawrence , the > university ' s director of corporate relations . we were hoping to be able to > include a stop at enron on our itinerary . right now it appears that friday , > may 4 th would work best for us but we ' re at the very beginning of our trip > planning . > > the purpose of our visit would be to review the current relationship > between enron and stanford , to give you an overview of current priorities > in the school of engineering , and ask for your help in identifying the best > points of contact . > > i look forward to hearing from you about your availability , > > sincerely , > susan hansen > > > > > susan c . hansen > director , corporate relations > school of engineering > stanford university > stanford , ca 94305 - 4027 > ( 650 ) 725 - 4219 susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: re : potential prospect tom , we are currently space constrained but we shall always take a qualified candidate . please , ask george to send me a resume and we shall get in touch with him to arrange a phone / on - location interview . vince tom arnold on 04 / 25 / 2001 09 : 15 : 09 am to : vince . j . kaminski @ enron . com cc : subject : potential prospect hey vince , given that the eastern finance conference is already taking place , i think it is safe to assume that they did not desire an energy derivative round table discussion . however , i appreciate you volunteering to potentially having been on such a round table discussion . i ' ve been teaching a "" real options "" course that has the students performing monte carlo analysis , black - scholes pricing , and binomial pricing along with a heavy dosage of understanding risk neutral pricing . a few of your new hires from the undergraduate program will be coming from this course . however , i have a student who will be finishing his mba next spring that is particularly good . he is genuinely interested and curious about option pricing , trading , and hedging with excel / vba skills . in fact , he usually figures out when i make even very small mistakes in my calculations . this is not to say that some of my other students aren ' t very talented themselves , but that this person really stands out . do you think you and / or enron would be interested in such a person ? if so , what do you recommend that he do to get his foot in the door ? his intention is to finish the mba , but i do not know if this would preclude you from hiring or at least taking a look at him now . his name is george moss and i ordinarily would not bother you directly about a potential employee . i am making an exception in this case because he is a particularly good talent without being the slightest bit arrogant . otherwise , i hope this e - mail finds you doing well and not travelling too much . tom professor tom arnold e . j . ourso college of business administration department of finance 2155 ceba louisiana state university baton rouge , la 70803 o : 225 - 388 - 6369 f : 225 - 388 - 6366",0 +"Subject: rdi project michelle , cecil and david ' s code was correct but could not match ken ' s spreadsheet output due to a slight mis - specification in ken ' s excel spreadsheet . the code was then modified to conform with ken ' s specification and results very close to that of ken were obtained . as of now ken ' s modifying his spreadsheet to re - run the results , the original correct code will be restored , and we will see what happens then . anyway this is rather encouraging . best , alex",0 +"Subject: departure of grant masson the research group : it is with a deep sense of regret that i announce that grant masson will be leaving the research group and enron , effective today . grant has been a very important part of the research group ' s growth and stability within enron and he will be deeply missed . we wish him the very best in his new venture and want to send him off with all the "" good "" wishes and support that he deserves . however , since i will be out of town all next week , we will postone the "" good luck and best wishes "" party for grant until sometime within the next 3 weeks . an announcement will be forthcoming at a later date . please take a minute to wish grant the "" best "" . sincerely , vince",0 +"Subject: london update vince , more fuel for our discussion with john sheriff today , mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 25 / 2001 05 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : stephen bennett @ enron 04 / 25 / 2001 04 : 05 am to : jose marquez / corp / enron @ enron , mike a roberts / hou / ect cc : tony hamilton / eu / enron @ enron subject : softs ( ag ) support hi guys , i thought i would quickly update you on a few meetings we ' ve had with the ag folks here over the past 2 days . they are extremely interested in weather support and appear to be our most enthusiastic customer group to date . a summary : 1 ) they are interested in cocoa , coffee and sugar . specifically : brazil : londrina , bauru , lavras ( all wmos available in accuweather ) vietnam : kentum , dalat ( no data immediately evident ) ivory coast : man , gagnoa ( wmos in accuwx ) indonesia : sumatra - kotubumi , sulawesi - dolo ( no data immediately evident ) 2 ) they are specifically interested in event spikes - extreme temperature , precipitation or wind . they are also interested in any trend information we can devise . links between enso or other large scale oscillations that could have long range effects . tony has already given their group a 101 course on enso and its impacts on these areas . 3 ) they would eventually like daily am briefings - along with a daily product related to their market ( ie precip / temp graphs etc ) 4 ) they do not begin actually trading for another 6 to 8 weeks - so we have some time to experiment with the type of support that fits them best . tony and i agree that we would like to brainstorm this a bit with you guys to see what exactly can be produced daily - as efficiently as possible . we should be able to add any lat / long points we want to the list of international cities streaming through from the mrf / avn / ecmwf from earthsat . the problems here would be the models ' problems handling tropical weather along with specific local effects - especially in indonesia . let ' s talk about this at some point and get our thoughts together . steve",0 +"Subject: transition to research group - an update vince , just wanted to let you know that i had a meeting with wade cline ( coo , enron india ) , neil mcgregor ( president , dpc ) , and mohan gurunath ( cfo , dpc ) today . though i had already spoken to all of them earlier about my joining your group , today it became official , and all of them supported the move . i explained to them what we would be doing , and the results expected from the henwood study . dpc would like to pay the costs for the study , and that was mentioned . there maybe some tax issues etc . that need to be cleared , and other related issues that i would like to discuss with you , so i will leave them till i get to houston . i also spoke about anshuman , and there was resistance to his leaing for such a long time . however , i have agreement from folks here to send him to houston for a shorter stint on dpc budget . i will try to finalize that before i leave . i will call you in the evening to just chat . i am very thankful to you for giving the opportunity you have . things here have deteriorated dramatically over the last few weeks . morale is quite down due to many lay - offs . i am really looking forward to returning to houston , and the family ! ! regards , sandeep .",0 +"Subject: term paper stuart , i cannot open your attachment . vince kaminski",0 +"Subject: re : opportunities lloyd , yes , i would be very interested . vince lloyd will 10 / 24 / 2000 02 : 45 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : opportunities vince would you be interested in this professional . i would be glad to facilitate a conference call . thanks . - - - - - - - - - - - - - - - - - - - - - - forwarded by lloyd will / hou / ect on 10 / 24 / 2000 02 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" sheble , g . b . "" on 10 / 17 / 2000 04 : 52 : 57 pm to : "" ' lloyd . will @ enron . com ' "" cc : subject : re : opportunities loyd i tried to call yesterday , but you were out of the office . my schedule follows , would you want to pick a time for me to call you or send me a list of times to pick ? gerry fall 2000 teaching schedule ee 553 mtwr 10 - 11 am curtis hall 308 engr 161 mw 2 - 4 howe hall 2228 other commitments m 11 - 12 ep & es m 1 - 2 office hours t 12 - 2 ep & es seminar t 2 - 3 office hours t 3 - 4 pserc t 5 - 6 epri - dod w 11 - 12 office hours w 4 - 9 dsm r 11 - 12 office hours f 11 - 12 p & t f 1 - 3 cas f 3 - 4 departmental meeting - - - - - original message - - - - - from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ] sent : monday , october 16 , 2000 8 : 00 am to : sheble , g . b . subject : re : opportunities give me a call any time to discuss things . 713 - 853 - 3383 . thanks . "" sheble , g . b . "" on 10 / 15 / 2000 02 : 17 : 02 pm to : lloyd will / hou / ect @ ect cc : subject : re : opportunities lloyd i am attaching another resume for your review , please pass it along if there is any interest . i would also like to discuss opportunities with you as i expect to graduate with my mba summer 2001 . cordially , gerry = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = gerald b . shebl , professor , electrical and computer engineering director of complex adaptive systems program 1115 coover hall ames , iowa 50011 voice : 515 . 294 . 3046 fax : 515 . 294 . 4263 email : gsheble @ iastate . edu web : http : / / www . ee . iastate . edu / ~ sheble / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =",0 +"Subject: avistar users and allocated charges avistar has been installed globally to provide desktop conferencing . hardware and installation charges have been allocated by invoice to the relevant location . the schedule below lists by business unit and rc the number of units and charges allocated . it will assume the monthly charge - out process . the allocated dollars will be depreciated over a three year period to your respective cost center beginning february 2001 . if you have any questions please feel free to call or e - mail , sheila glover , 3 - 3210 , or paige cox , 3 - 5428 . thanks . sheila",0 +"Subject: weather article has been approved - - need to send photos gary & seth , thumbs up on the fow article . many thanks for working through it with me . . . joe - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 10 / 26 / 2000 11 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - jane sandiford on 10 / 25 / 2000 06 : 26 : 32 am to : joseph . hrgovcic @ enron . com cc : subject : weather article - photos ? dear joseph , thank you so much for sending me such an interesting article on the internet and weather derivatives . i really enjoyed reading it ! i just have one final question - do you have a photograph of yourself ( or the other authors ) that you could send me ? tif , gif or jpeg files are fine so long as they are 300 dpi . thanks again and i hope to hear from you soon . best regards , jane jane sandiford deputy editor fow magazine tel : 0207 827 6493 fax : 0207 827 6413 email : jsandiford @ fow . com * * disclaimer * * the contents of this e - mail is sent to the addressee only and may contain information that is confidential . persons other than the addressee should not read , disclose , copy or otherwise distribute this message except for delivery to the addressee . this e - mail and its attachments ( if any ) have been scanned by trend micro interscan viruswall v 3 . 4 . * * personal e - mails * * the metal bulletin e - mail system scans all e - mails and deletes personal messages which contain items of a sexual , racial or other inappropriate matter without notifying the sender . therefore , the transmission of personal messages , both incoming and outgoing , cannot be guaranteed .",0 +"Subject: re : i ' ll check my billing ! thanks for the warning ! warm regards , and thanks for the book , darrell darrell duffie mail gsb stanford ca 94305 - 5015 usa phone 650 723 1976 fax 650 725 7979 email duffie @ stanford . edu web http : / / www . stanford . edu / ~ duffie / ",0 +"Subject: re : dear navroz thanks for getting back to me . the reason there has been a dialogue ( not , i should point out , with nick , but with shan millie ) , is that my work is of quite a large size , and needs to find an appropriate home . the question is should it go into a compilation book , or somehow be published in the magazine ? i was awaiting some feedback from risk on the best course of action . we were hoping to publish a cut down version in the magazine , and a full version in risk ' s upcoming "" game choices "" book , but i ' ve heard nothing from your organisation until now ( and i fear we ' ve now missed the boat on the game choices book deadline ) . i ' m attaching the full internal enron document for your reference , and i ' d appreciate your thoughts on how best to put the article in your journal . since the subject is highly diagrammatic , i ' m concerned that 4000 words may be too many when coupled with diagrams ! ( it is currently only 6000 words , but is around 25 a 4 pages long . ) if you can give me some guidance on the issue of publishing extensive diagrams as part of the text , i ' ll get to work chopping my work around until it suits your preferred format . shan millie gave me some good feedback on general points of style and clarity in my writing , but incorporating these would actually make the article longer rather than shorter . i think you ' d better look the document over before i do further work on it . i look forward to your response . many thanks , steve leppard enron capital & trade resources corp . from : "" navroz patel "" 04 / 28 / 2000 03 : 25 pm please respond to "" navroz patel "" to : cc : subject : dear steven , my name is navroz patel and i am the technical assistant at risk magazine . i am contacting you with regards to your initial dialogue with nick dunbar . we would be grateful if you could email to both of the addresses below a copy of your ' real options ' article for our consideration . please note that articles must have full references , be approximately 4000 words in length , and the attachment should be in ms word or pdf format . npatel @ risk . co . uk ndunbar @ risk . co . uk ? thank you for your interest . yours sincerely , navroz patel . technical assistant , risk magazine .",0 +"Subject: re : interview with enron corp . research dear shirley , thanks for your letter and invitation . next week we have a spring break at uh , so i will be pretty flexible . is next tuesday fine ? almost any time . if not , any other day next week will work for me . starting march 19 i will teach again , and it will be harder ( but not impossible ) to find a good time for interview with enron . adam - - - - - original message - - - - - from : shirley . crenshaw @ enron . com [ mailto : shirley . crenshaw @ enron . com ] sent : 8 marca 2001 09 : 36 to : adambob @ stat . rice . edu subject : interview with enron corp . research good morning adam : the enron corp . research group would like to conduct an informal interview with you at your convenience . please give me some dates and times that would be convenient to , sometime within the next 2 - 3 weeks and i will coordinate an interview schedule . i look forward to hearing from you very soon . best regards , shirley crenshaw administrative coordinator enron corp . research 713 - 853 - 5290 email : shirley . crenshaw @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001 09 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" adam bobrowski "" on 03 / 07 / 2001 09 : 45 : 03 pm to : cc : subject : resume dear mr . kaminski , as a follow - up to your oral communication with my friend tom ware , i would like to express my interest in working for your company , enron . please find enclosed my resume and curriculum vitae . if you need additional data , please feel free to call me at ( 713 ) 592 - 8909 ( home ) or ( 713 ) 743 - 3483 ( office ) , or email me at adambob @ stat . rice . edu or adambob @ math . uh . edu . yours sincerely , adam bobrowski . ( see attached file : cvbobrowski . ps ) ( see attached file : bobrowskiresume . doc )",0 +"Subject: maddox vince , here is michael maddox contact information : tel : ( 617 ) 497 6446 email : mmaddox @ cera . com they have an office in europe as well . i would love to be involved in projects involving georgia , azerbaijan , turkey , etc . my resume thanks , bessik matchavariani enron broadband services tel : 713 . 345 . 7230 fax : 713 . 646 . 8861 bessik _ matchavariani @ enron . net",0 +"Subject: re : scifinance curt , thanks very much . yes , the same time will be fine . so i will be expecting you on nov . 10 at 11 : 30 am . you can call shirley to get to our area . my office is at ebl 969 . zimin lu 713 - 853 - 6388 shirely , please mark the time on vince and stinson ' s schedule . and make an announcement to the group next week . thanks . zimin randall on 10 / 30 / 2000 08 : 54 : 59 am to : zimin . lu @ enron . com cc : randall @ scicomp . com , "" johansen , david "" subject : re : scifinance ok . same time ? zimin . lu @ enron . com wrote : > > hello , curt , > > i am just aware that our department head dr . kaminski is going to be out of > the town > on friday nov . 3 . if possible , can we reschedule your visit to nov . 10 ? > > sorry for any inconvenience , and let me know if this is ok . > > zimin lu > 713 - 853 - 6388 > > randall on 10 / 19 / 2000 05 : 20 : 40 pm > > to : zimin . lu @ enron . com > cc : randall @ scicomp . com , "" johansen , david "" > subject : re : scifinance > > zimin . lu @ enron . com wrote : > > > > yes , nov . 3 . we do not have to work on saturday , thank you for > reminding > > me that . > > > > zimin > > you are welcome . > > shall we say 11 : 30 to allow some time for getting organized ? > > i usually use an old fashioned overhead transparency projector if you ' ve > got one . if they ' ve all been replaced by digital projectors , i can > bring one . > > i ' ll be in touch early that week , to get directions for parking etc . > > rgds , > curt > > - - > + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + > | curt randall | scicomp inc . | > | e - mail : randall @ scicomp . com | 5806 mesa drive | > | voice : 512 - 451 - 1050 ext 202 | suite 250 | > | fax : 512 - 451 - 1622 | austin , texas 78731 | > + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - | curt randall | scicomp inc . | | e - mail : randall @ scicomp . com | 5806 mesa drive | | voice : 512 - 451 - 1050 ext 202 | suite 250 | | fax : 512 - 451 - 1622 | austin , texas 78731 | ",0 +"Subject: re : good morning john , i shall see christie tomorrow and i shall talk to her about the project . friday , feb 23 works for me . vince "" john d . martin "" on 10 / 18 / 2000 10 : 00 : 57 am to : vkamins @ enron . com cc : subject : good morning vince , just an update for you and a question . first , i have talked to christie and corresponded via e - mail . we don ' t have dates to talk to lay , skilling and fastow as yet but christie is working on it . i will prompt her again next week . the second item of business is a question . i want to see if we can move our meeting in spring ( business education and the new economy workshop ) back a week to friday february 23 rd . one of the attendees has a conference he wants to attend on march 2 nd . let me know asap if the 23 rd works for you . i have committments from a number of folks for the workshop and i think it will be great fun and a wonderful learning experience for us all . john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: mgmt 656 here are your latest rosters . let me know if you would like the spreadsheet with their e - mail addresses as well ! - pam ( 6223 ) - 656 . doc",0 +"Subject: chonawee supatgiat / corp / enron is out of the office . i will be out of the office from 11 / 27 / 2000 until 12 / 12 / 2000 . i am out of the country and cannot check mails . you can reach me by sending an e - mail to chonawee @ yahoo . com . otherwise , i will response to your message when i get back . thank you . - chonawee",0 +"Subject: kudos congratulations on your promotion - - well deserved ! ! lucy",0 +"Subject: dr . kaminski : ? you probably won ' t remember my name , but i am the ph . d . student that took you back to the airport after your visit to louisiana state university during the previous academic year . ? i received my m . s . in finance in may of last year , and chose to ? remain at lsu to work on my ph . d . at that time , i intended to pursue a career in ? teaching and research at a four year college or university . ? in part ? because of your visit , ? and my ? primary interest in normative research , my ? plans have changed . ? while i ? still want to earn my ph . d . , ? i plan to pursue a career in research in the private sector . ? as you know , ph . d . programs in financial economics are designed to train future academics . ? not surprisingly , they emphasize methods to approach the types of questions that are of interest to finance academics . ? what did surprise me , however , was that these areas of interest often had little to do with what i imagined to be the concerns of practitioners in the real world . ? as you mentioned in your discussion , academic researchers know little about what their counterparts in the private sector ? in light of my objective , i feel i would get the most out of the remainder of my doctoral studies if i took some time off to work in the private sector to see first hand the ? types of challenges i can expect to face as a researcher in corporate america . ? as my primary interests revolve around the use of derivatives and financial engineering in corporate risk management , enron , as the leading innovator in these areas , would be an ideal place to learn . ? i was wondering if you were aware of any openings at the company that might provide me with the exposure i am looking for . ? if there are no such positions or opportunities , any advice or suggestions you could give me , ? such as whether or not you think such a "" sabbatical "" ( for lack of a better term ) would be helpful , or information on private sector careers for ph . d . ' s would be greatly appreciated . ? ? i am sending a current copy of my vita as an attachment . ? if you have any questions my e - mail address is sgreen @ finance . lsu . edu . ? thanks for your help and advice . ? ? cordially , ? ? ? ? shane green ? ? ? ? ? ? ? - vita . doc",0 +"Subject: request submitted : access request for stewart . range @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000007876 approver : stinson . gibner @ enron . com request create date : 11 / 20 / 00 2 : 36 : 29 pm requested for : stewart . range @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: ameriflash newsletter michell vitrella called and wanted to know if the "" research group "" would like to submit an article for the next issue of the ena newsletter ( "" ameriflash ) they need to have the article by tomorrow . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 24 / 2000 10 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : michelle vitrella 10 / 24 / 2000 09 : 53 am to : shirley crenshaw / hou / ect @ ect cc : subject : ameriflash newsletter - - - - - - - - - - - - - - - - - - - - - - forwarded by michelle vitrella / hou / ect on 10 / 24 / 2000 09 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : ena public relations @ enron 10 / 19 / 2000 08 : 25 pm sent by : enron announcements @ enron to : all _ ena _ egm _ eim cc : subject : ameriflash newsletter note from mark frevert with the wide and varied activities of our three organizations , we created this e - mail newsletter to keep everyone better informed about our various businesses . i hope you find it informative and more importantly , that you will use this newsletter to help spread the word about the successes in your group . to provide content for future e - mails , contact michelle vitrella in our public relations group via e - mail or call her at ext . 3 - 9767 . communication is one of the core enron values and i believe this is a great way to improve communication across our wholesale businesses . additionally , i would like to again encourage everyone to take a few minutes to complete  & the pulse  8 survey . this annual survey regarding the work experience at enron and how we can make it better is an important part of the two - way communication process at enron . please go to the enron intranet and type survey . enron . com . it only takes a few minutes , it  , s confidential and your comments will help make enron a better place to work . business highlights natural gas middle marketing  , s biggest trade of the year so far occurred this month . the significant transaction was a five year , multimillion dollar restructuring with a subsidiary of formosa plastics , one of the world  , s largest producers of polyvinyl chloride . additionally , continental airlines , the fifth largest us carrier , has hedged a considerable amount ( 1 . 2 million barrels / month ) of crude oil . winter nymex hedges were put in place for the undisputed heavyweight chip champ of the world , frito lay . pulp & paper with the acquisition of garden state paper and launch of clickpaper . com , enron is creating an efficient spot physical market for pulp and paper commodities . buyers and sellers will benefit from improved price transparency and reliability and access to enron  , s online financial markets . improved price transparency and the ability to imbed financial derivatives into physical trading flows will facilitate the growth of enron  , s trading business . to date , clickpaper . com has traded over 1 millions tons of pulp and paper product with a notional value of over $ 675 million . upstream origination upstream origination , headed by julie gomez and jean mrha , focuses on natural gas products to optimize commercial value associated with the natural gas grid on the continent and in the gulf of mexico ( gom ) . through products such as storage , electric compression and producer services & outsourcing , ena creates value for its customers and reconfigures the natural gas infrastructure to be more efficient . in addition , upstream origination transactions exploit the unique relationship between development of strategic assets through sophisticated financing structures and the utilization of the market information created by those assets .  & the pulse  8 survey results as of wednesday , october 18 , the total responses to  & the pulse  8 from ena / egm / eim are 689 . this is approximately 30 % of all employees . since our goal is a 100 % response rate , we have a long way to go ! please take a few minutes to log on and give enron your thoughts . the pulse is located at survey . enron . com on the enron intranet page . if you like competition , here are the results by group : commercial - origination 131 energy operations 126 risk management and trading 106 other / none of the above 91 bus . analysis & rep . / fin . ops . 90 legal 46 gas assets 37 human resources 30 tax 18 technology / it 14 welcome transferred into ena / eim / egm ena - kathleen neal / hr , suzanne kelly / infocentral , tobias monk / finance direct eim - eric connor / industrial energy group egm - eric calub / global product mgmt new hires ena / eim / egm ena - lance cunningham / cts research , anita dupont / cts research , yvette hales / gas logistics  ) east , angela howell / equity trading , farid mithani / power risk - credit egm - heather purcell / enron global markets in the news  & no company illustrates the transformative power of innovation more dramatically than enron . over the past decade enron  , s commitment to the invention  * and later domination  * of new business categories has taken it from a $ 200 million old - economy pipeline operator to a $ 40 billion new - economy trading powerhouse .  8 from  & the world  , s most admired companies ,  8 fortune , monday , october 2 nuggets & notes  & what  , s the message we  , re trying to get across ?  8  ) ray bowen , coo eim  & i  , m not a micro - manager  8 - john lavorato , coo ena  & make it so , number one  8  ) jeff shankman , coo egm contest enron is  & the most innovative company  8 based on fortune magazine  , s most admired survey . ena public relations is ready to put enron north america , industrial markets and global markets to the test . we need your creative minds to help name the new electronic newsletter we now call ameriflash . put on your thinking caps and submit your ideas for a new name to michelle . vitrella @ enron . com . the ena public relations team will narrow the list to the top ten and then send it to our official judge , mark frevert , to make the final decision . the winner will receive a gift certificate to any pappas restaurant . good luck !",0 +"Subject: interview with the enron research group hello kenneth : nice talking to you this morning ! below is your interview schedule for monday , oct . 30 th and directions to the enron bldg . . please let me know if you need any travel arrangements made . coming from the northwest part of houston , your best bet would be to take i - 45 into town . there is quite a bit of construction downtown , so you will probably have to take the mckinney exit from i - 45 ( you will need to stay in the left lane as you approach town . exit mckinney to smith street , take a right on smith street go to andrews street , take a right on andrews ( the enron bldg . is on the left ) , pass the enron bldg . cross "" ruthvan "" ( 1 st stop sign ) and pull into the allen center parking garage ( visitors area on your right ) . come to the security desk on the lst floor of the enron bldg . and ask for me . they will call me and i will meet you in the elevator lobby on the 19 th floor . monday , october 30 th 9 : 00 am vince kaminski , managing director , research 9 : 30 am zimin lu , director 10 : 00 am vasant , vice president 10 : 30 am krishna krishnarao , director 11 : 00 am paulo issler , manager 11 : 30 am stinson gibner ( he will take you to lunch ) 1 : 00 pm molly mcgee ( hr recruiter ) have a safe trip . regards , shirley crenshaw ( 713 - 853 - 5290 )",0 +"Subject: vince kaminski ' s bio hello amy : attached please find vince kaminski ' s "" bio "" . he is working on his presentation . thanks ! shirley",0 +"Subject: my students dear vincent , i spoke with my students yesterday and they told me they have thought about coming to see you again , and they think it ' ll be much better in the future when they are closer to completion of their ph . d . i think this is a very sound idea , but i wanted to give them anyway the opportunity to see the actual working environment at a place like enron . they are both very serious and responsible , so they feel they had better go see you when they would be in a better disposition to give more of themselves to enron . they are both superb students and very hard working individuals , so i do hope you will consider checking them out in the future ( within a year - year and a half ) . i will contact you and / or stinson in the future when they are closer to finishing up . best , carlos",0 +"Subject: re : greetings carlos , vince kaminski , the head of our group is quite interested in meeting you and discussing ways in which we might be able to help your students . i will be out of the office until october 16 th . you can talk to vince before i get back or wait to see both of us ; whatever you wish . should you want to schedule a time to talk with vince , contact his assistant , shirley crenshaw , at 713 853 5290 . i look forward to meeting you in person . stinson gibner p . s . my address at enron is : p . o . box 1188 houston , tx 77251 - 1188 the physical address is 1400 smith street . carlos ordonez on 09 / 15 / 2000 03 : 29 : 28 pm to : sgibner @ enron . com cc : subject : greetings dear stinson , i enjoyed our conversation this morning . i would love to meet with your people to discuss collaborations that will be of mutual benefit to me and the students and postdocs and your company . i am available on mondays , wednesdays or fridays , at just about any time ( early mornings or afternoons best ) . we ' ll probably need up to a couple of hours . please send me your address to mail you some info . best , carlos",0 +"Subject: re : liz demers research seminar marc , thanks for the invitation . i shall attend . vince kaminski enron marc epstein ( by way of kathy spradling < spradlin on 01 / 22 / 2001 03 : 41 : 13 pm to : ( recipient list suppressed ) cc : subject : liz demers research seminar dear faculty bob westbrook and the accounting group has asked me to put together a continuing series of research workshops in accounting . my intention is to invite four or five researchers from around the country to present workshops on topics of interest each year . these are in addition to the normal recruiting seminars that we will have . the researchers will be a combination of senior and junior researchers . in addition to adding to our own research culture , the seminars should help promote the jones school in the academic accounting community . my intention is to invite people that are doing very interesting work that will be of interest to a large portion of the faculty . given the small size of the accounting group , success of the seminars is dependent in part on the participation of faculty from other disciplines . our first seminar will be on february 16 from 10 : 30 - 12 : 00 and will be conducted by elizabeth demers , a stanford phd and presently an assistant professor at rochester . her paper is titled "" a rude awakening : internet shakeout in 2000 "" and co - authored with baruch lev ( a senior accounting researcher at nyu ) . the work should be of particular interest to faculty in finance and those interested in the valuation of internet companies and the value of intellectual capital and non financial information . i expect that it will be a very interesting seminar . liz will arrive thursday late afternoon and be here all day on friday . i invite any of you who would like to meet with her or join us for a meal , to please let me know . i will appreciate it if you could plan on attending at least some of our seminars . i hope that the topics and presenters will be of interest . thanks for your support . marc marc j . epstein jones graduate school of management rice university 6100 main street houston , texas 77005 - 1892 phone ( 713 ) 348 - 6140 fax ( 713 ) 348 - 5251 email epstein @ rice . edu",0 +"Subject: re : [ fwd : stanford meeting ] vince , if that doesn ' t work we can meet on saturday . no problem . my cellular phone is 650 - 796 - 8163 . i will have it on , friday after 11 am . looking forward to seeing you , nick vince . j . kaminski @ enron . com wrote : > > nick , > > the plan is ok , subject to unforeseen complications . > my flight from london was delayed and i had to spend a night in newark , nj . > my schedule for today was disrupted and i had to postpone my departure till > friday > morning . i should be at san francisco around 10 : 00 a . m . if there is no > delay . > i should be able to meet you at noon at your office . > > please , confirm the meeting both to my office e - mail address and my private > address > ( vkaminski @ aol . com ) . can you give me the phone number > at which i can reach you on friday if there is a delay ? > > look forward to meeting you . > > vince > > nick bambos on 02 / 24 / 2000 02 : 31 : 38 pm > > to : vince . j . kaminski @ enron . com > cc : bambos @ stanford . stanford . edu > subject : [ fwd : stanford meeting ] > > vince , is this plan ok ? thanks . nick > > nick bambos wrote : > > > > vince , > > > > friday is fine . we can have lunch at the faculty club - you ' ll > > be my guest . shall we meet in my office in packard 238 and > > walk to the faculty club ? > > > > nick > > > > vince . j . kaminski @ enron . com wrote : > > > > > > nick , > > > > > > i shall be in stanford for parents ' weekend ( my son is a junior at > > > stanford ) . > > > i plan to be on the campus friday through sunday this week . i shall be > glad > > > to meet you anytime during the weekend . what about a lunch on friday ? > > > i would like to talk to you about enron underwriting research projects > by > > > the graduate students > > > at your department . > > > > > > you can reach me at stanford at my son ' s phone number : 650 497 6938 . > > > please , let me know if you are free for lunch and i shall make the > > > reservation > > > > > > vince > > > > > > nick bambos on 02 / 22 / 2000 12 : 54 : 15 pm > > > > > > to : vince . j . kaminski @ enron . com > > > cc : ravi . thuraisingham . enron _ communications @ enron . com , > gappy @ stanford . edu > > > subject : stanford meeting > > > > > > dear vince , > > > > > > giuseppe tells me that you will be visiting stanford soon > > > and you you would like to meet with me . i would definitely > > > be glad to meet you and talk further . > > > > > > would you please let me know about the time of your visit > > > and your availability to meet . i look forward to seeing you . > > > > > > best regards , > > > > > > nick > > > > > > ps : giuseppe and amy came back very impressed by you are doing at > enron ! > > > thanks for hosting them .",0 +"Subject: super saturday iv results ! good afternoon ! attached is the list of associate candidates to whom offers have been extended from super saturday iv . please feel encouraged to call or e - mail to congratulate them ! let me know if you have any questions ( ext . 3 - 6176 ) . thank you for all your help ! elizabeth boudreaux ps - i have also included the "" no offer "" list , just fyi .",0 +"Subject: re : var for enroncredit . com vince , thanks for effort . let me know what we need to do on this end ted vince j kaminski 11 / 10 / 2000 01 : 30 pm to : rick buy / hou / ect @ ect , ted murphy / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : var for enroncredit . com rick and ted , it looks more like foxes building chicken houses as opposed to foxes guarding chicken houses . i shall send a message to bryan saying that the research has to look under the hood and examine the mechanics of the model in order to sign off on it . a dog and pony show is not sufficient . in any case , the decision to approve the model should not be left to ben and kirstee . please , let me know what your thinking is . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000 01 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 11 / 10 / 2000 03 : 20 am to : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect cc : ted murphy / hou / ect @ ect subject : var for enroncredit . com vince / steve - - we are going to the board in december to ask for formal limits . as you know one of the key limits at the board level is value at risk . to that end , it is imperative that you are comfortable with our approach for calculating var . we have implemented a third party risk system which holds all of our positions and are in the process of putting the debt positions in . the system has a var engine which is being demo ' d by the vendor today . ben and kirstee are attending the demo and if they find the technology acceptable , i propose moving forward with implemantion of the module . pls . let me know if this sounds reasonable and how you would envision implementing . thanks",0 +"Subject: re : term project : brian , no problem . vince "" brian corbett nelson "" on 04 / 26 / 2001 08 : 15 : 14 pm please respond to to : cc : subject : re : term project : vince , i finally joined a team that only had two members . it looks like our paper will only be about 13 to 15 pages . we were wondering that since our team is less than half the size of some of the other teams , if you could possible relax the length requirement ? thanks , brian nelson - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 11 , 2001 3 : 54 pm to : nelsonb @ rice . edu subject : re : term project : brian , the last class + plus a few days ( depending on when i have to submit the grades ) . vince "" brian corbett nelson "" on 04 / 11 / 2001 03 : 35 : 14 pm please respond to to : cc : subject : re : term project : mr . kaminski , i had an interview last thusday in dallas and could not attend class . did you set a project deadline ? thanks , brian nelson - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 11 , 2001 3 : 22 pm to : isranir @ rice . edu ; demianen @ rice . edu ; tbal 93 @ yahoo . com ; maue @ rice . edu ; loughrid @ rice . edu ; jblantonjr @ yahoo . com ; gjohnson @ rice . edu ; emchombo @ rice . edu ; nazareth @ rice . edu ; vanstone @ rice . edu ; ganguzza @ rice . edu ; nelsonb @ rice . edu ; sssmith @ rice . edu ; wheelock @ rice . edu ; westmore @ rice . edu ; gaudette @ rice . edu ; otaylor @ rice . edu ; dikeman @ rice . edu ; jettke @ rice . edu ; litton @ rice . edu ; chilkina @ rice . edu ; helms @ rice . edu ; wankhade @ rice . edu ; monfan @ rice . edu ; kostya @ rice . edu ; pcp @ rice . edu ; yueguo @ rice . edu ; nlwbio @ rice . edu ; zhangn @ rice . edu ; rishad @ rice . edu ; yoshiura @ rice . edu ; howard @ rice . edu ; dayangd @ rice . edu ; wuwei @ rice . edu ; so @ rice . edu ; wooddy @ rice . edu ; lamas @ rice . edu ; tbalestrery @ houston . rr . com ; hingoran @ rice . edu ; planck @ rice . edu cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com ; jason . sokolov @ enron . com subject : term project : this is the list of projects for the members of the "" quant "" team . if you are working on different project , please , ignore this message . please , develop in a spreadsheet solutions / examples for the following : 1 . black - scholes formula 2 . black ' s formula 3 . develop a spreadsheet to simulate price trajectory using : a . gbm b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 ) c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 ) 4 . schwartz single factor model ( formula 6 . 12 ) 5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8 vince",0 +"Subject: resume for chris pernoud molly , we want to hire this very bright young man as a part - time employee , reporting to mike roberts . mike will be contacting you regarding the details . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001 10 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" chris pernoud "" on 01 / 24 / 2001 09 : 21 : 11 am please respond to to : "" michael roberts "" , "" vincent kaminski "" , "" shirley crenshaw "" cc : subject : resume for chris pernoud gentlemen , thank you for your time and consideration yesterday . i am excited about working for enron and gladly accept your offer . to reiterate our consensus today , i will be working an average of 10 hours a week , mostly early mornings from around 5 to 7 . another option for me might be to work mondays , wednesdays , and fridays from around 5 to 8 or 9 . toni graham was my contact in hr six months ago . she is probably more familiar with my previous file than anyone else . if you have any questions or concerns please don ' t hesitate to contact me . thank you , chris pernoud = = = = = = = = = = = = = = christopher pernoud 7315 brompton rd . apt . 231 b houston , tx 77025 ( 713 ) 349 - 8963 cgpl @ cornell . edu - chrispernoud . doc",0 +"Subject: update vince , a quick update on job candidates : 1 ) nelson neale : relayed your request to norman , and told nelson that an offer is in progress . did not mention specific numbers to him . 2 ) charles shen : left a message for him that we would get back to him next week with details of an offer . 3 ) interviewed by phone tom barkley at thunderbird ( brought to our attention by enron recruiters there ) . he looks very interesting so i am trying to schedule a visit to enron for him . he will finish t - bird in december ( mba ) and has a bachelors with honours in mathematics . have a great weekend . stinson",0 +"Subject: re : 12 / 17 churn - - eb 29 to ebl 9 job done ! - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 05 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lupe rodriguez @ enron 12 / 21 / 99 04 : 08 pm to : move - team / epsc / hou / ect @ ect cc : kevin g moore / hou / ect @ ect , dolores sustaita / epsc / hou / ect @ ect , janelle duree / hou / ect @ ect subject : re : 12 / 17 churn - - eb 29 to ebl 9 i have guys up there now to complete this request . we don "" t move the plants but we will this time . any thing else just let me know . lupe move - team @ ect 12 / 21 / 99 02 : 26 pm sent by : linda richard @ ect to : lupe rodriguez / corp / enron @ enron cc : kevin g moore / hou / ect @ ect , dolores sustaita / epsc / hou / ect @ ect , janelle duree / hou / ect @ ect subject : 12 / 17 churn - - eb 29 to ebl 9 hi lupe ! there are approximately 25 boxes , several small file cabinets and 2 plants ( a 3 ft and a 9 ft plant ) that are ready to be moved from 29 to 19 . this is part of the 29 th floor 12 / 17 churn . the items are located in various offices of the "" fishbowl "" area on the 29 th floor . they are labeled with the 19 th floor designated location . there are 2 larger file cabinets that are located in the hallway . the 2 plants need to be taken to ebl 944 . is there anyway to work this in your schedule on tommorrow ? thanks linda",0 +"Subject: customer profiling meeting - amendment bob shults is scheduled to be in atlanta , ga on the 17 th of march and would like to reschedule the "" customer profiling meeting "" , to friday , march 24 th at 1 : 30 p . m . , location to be announced . if you are unable to attend please let me know . lydia 3 - 9975",0 +"Subject: gt symposium on qcf , april 7 please share the following announcement with your associates . georgia institute of technology symposium on quantitative and computational finance friday , april 7 th , 2000 auditorium of marc bldg . on the georgia tech campus sponsored by the dupree college of management , the college of engineering school of industrial and systems engineering , and the college of sciences school of mathematics . program : 12 : 30 - 12 : 40 welcome michael thomas , provost of georgia tech 12 : 40 - 12 : 45 introduction of the first speaker 12 : 45 - 1 : 30 walter j . muller iii , bank of america "" interest rate models for pricing fixed income securities "" 1 : 30 - 1 : 40 q & a and introduction of the second speaker 1 : 40 - 2 : 25 steven l . allen , chase manhattan bank "" management of market risk - - what can we learn from the experiences of 1997 and 1998 ? "" 2 : 25 - 2 : 45 break 2 : 45 - 2 : 50 introduction of the third speaker 2 : 50 - 3 : 35 billy thornton , invesco capital management "" optimal portfolio construction and risk control "" 3 : 35 - 3 : 45 q & a and introduction of the fourth speaker 3 : 45 - 4 : 30 ron dembo , algorithmics , inc . "" measuring the risk of a large financial institution "" 4 : 30 - 4 : 40 q & a and introduction of the fifth speaker 4 : 40 - 5 : 25 alexander eydeland , southern company energy marketing l . p . "" energy derivatives "" 5 : 25 - 5 : 40 closing / extra time 5 : 45 - 6 : 30 reception short biographies of the speakers are given below . registration : there is no charge for attendance at the symposium . however , space is limited , so we do encourage you to let us know that you will be attending . please send the following information before wednesday , april 5 , 2000 . conference : "" qcf "" first name : last name : company / institution : department : address : city : state / province : zip / postal code : phone : fax : email : to robert kertz e - mail : kertz @ math . gatech . edu fax : 404 - 894 - 4409 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * lodging : you can make your own hotel arrangements with one of the many hotels in town . some hotels close by tech ' s campus are : holiday inn express ( 404 - 881 - 0881 ) , days inn , 683 peachtree street ( 404 - 874 - 9200 ) , renaissance hotel , w . peachtree street ( 404 - 881 - 6000 ) , marriott courtyard , 1132 techwood drive ( 404 - 607 - 1112 ) , and regency suites , 975 west peachtree street ( 404 - 876 - 5003 ) . in all cases , ask about the georgia tech rate . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * location : the conference will be held in the first floor auditorium of the manufacturing research center ( marc bldg . ) , 813 ferst drive , on the georgia tech campus in atlanta , georgia . map : a map of campus can be found on the web at http : / / gtalumni . org . the conference is in the manufacturing research center ( # 126 on the map ) , which is the rectangular building directly north of the groseclose building ( # 56 on the map ) and the instructional center ( # 55 on the map ) . directions : ( additonal directions can be found at the website associated with the marc building ) by marta : take the north - south marta train ( $ 1 . 50 ) to the north avenue exit . the station is on the northeast corner of west peachtree and north avenue . walk west along north avenue past the varsity and over the expressway . after the football stadium , take the steps up and enter the campus . walk diagonally across the campus and ask some students where to find the manufacturing research center . by car , if you are entering atlanta from i - 20 or while traveling north on i - 75 or i - 85 : i - 75 and i - 85 merge in atlanta to form i - 75 / 85 . ( if you are on i - 20 , go north on i - 75 / 85 in the center of atlanta . ) exit the expressway at exit 100 which is the spring street and west peachtree street exit . turn left at the second light onto west peachtree street . turn left at the first light onto north avenue . travel west on north avenue and follow the signs to the "" center for the arts "" . these signs will ask you to turn right onto tech parkway which is the second traffic light along the gt campus , then turn right at the first light , and then you are forced to turn either right or left onto ferst drive . now go to the parking directions section below . by car , if you are entering atlanta while traveling south on i - 75 or i - 85 : i - 75 and i - 85 merge in atlanta to form i - 75 / 85 . exit the expressway at exit 100 which is the north avenue exit . turn right at the top of the ramp onto north avenue . travel west on north avenue and follow the signs to the "" center for the arts . "" these signs will ask you to turn right onto tech parkway which is the second traffic light along the gt campus , then turn right at the first light , and then you are forced to turn either right or left onto ferst drive . now go to the parking directions section below . parking directions : turn right onto ferst street , then turn left into the student center driveway which is the second driveway on your left . there is a fee of $ 4 . walk north past the instructional center to the manufacturing research center . for further information , please contact professor robert kertz by email at kertz @ math . gatech , edu , by fax at 404 - 894 - 4409 , by phone at 404 - 894 - 4311 or by regular mail at professor robert kertz school of mathematics georgia institute of technology atlanta , ga 30332 - 0160 . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * biographies of speakers steven l . allen managing director , market risk management for derivatives chase manhattan bank , new york steve allen is a managing director in the market risk management group of the chase manhattan bank , heading the derivatives product team . he began his career in 1967 with chase , where his assignments included deputy director of management science and manager of modeling and systems for the asset - liability committee . from 1981 through 1991 , he was director of research for chase ' s trading activities , in charge of the development of models and analytics . his risk management career began in 1991 with the north american division of union bank of switzerland , where he was market risk manager for fixed income products . he took his current position in 1995 with chemical bank , rejoining chase by benefit of merger . steve studied mathematics as an undergraduate at columbia college and as a graduate student at new york university ' s courant institute . he currently teaches risk management in the masters program in mathematics in finance at courant . he is co - author of "" valuing fixed income investments and derivative securities "" . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * ron s . dembo president and chief executive officer algorithmics , inc . toronto ron dembo is president and chief executive officer of algorithmics , inc . , a leading provider of innovative enterprise - wide financial risk management software , which he founded in 1989 . before founding algorithmics , he created and managed a group at goldman sachs responsible for fixed income optimization modeling . prior to that , he held several positions in academia . from 1976 to 1986 , he served as an assistant and associate professor of operations research in computer science at yale university , and as a visiting professor for operations research at the massachusetts institute of technology . dr . dembo obtained a ph . d . in operations research from the university of waterloo , ontario ( 1975 ) . he has written and published over 50 technical papers on finance and mathematical optimization and holds two patents for portfolio replication . his latest book on risk , "" seeing tomorrow : weighing financial risk in everyday life , which he co - authored with andrew freeman , was published in may 1998 by wiley in the u . s . in october of 1998 , dr . dembo was honored with ernst model review ; and price verification . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * billy thornton director of quantitative research invesco capital management 1360 peachtree street atlanta , ga 30309 billy thornton is a partner at invesco and director in the quantitative research group . billy began his career in 1979 as a management consultant at andersen consulting , before joining bellsouth as a regulatory economic analyst in 1981 . billy next moved into academia as a finance professor teaching corporate finance for the undergraduate , graduate and executive programs at goizueta school of business , emory university . while a professor at emory , he spent a year as a visiting scholar at the federal reserve bank of atlanta researching special projects . continuing to teach corporate finance , billy joined clark atlanta university in 1995 . during this time , he also worked as a consultant with watson wyatt worldwide performing asset allocation consulting , and executive education and training . billy joined invesco in 1998 to head invesco ' s department of quantitative research . his team of analysts performs statistical modeling , researches investment strategies , and sets risk management controls . billy earned a b . s . in mathematics from clark atlanta university in 1977 and an m . s . in statistics from carnegie - mellon university in 1979 . he graduated from harvard university , earning a ph . d in financial economics in 1989 jointly from the harvard business school and harvard department of economics , and also receiving his m . s . in business economics in 1987 . billy was a member of both leadership atlanta , class of 1994 , and leadership georgia , class of 1996 . ",0 +"Subject: request submitted : access request for amitava . dhar @ enron . com you have received this email because the requester specified you as their manager . please click approval to review and act upon this request . request id : 000000000011185 request create date : 12 / 21 / 00 4 : 20 : 10 pm requested for : amitava . dhar @ enron . com resource name : unlisted application / software resource type : applications",0 +"Subject: hello dear vince , i just wanted to let you know that i ' m working here for the summer . i ' m with ctg ( commercial transactions ) in the industrial services group on the 30 th floor . i ' m excited to be back at enron and look forward to a great summer . i ' m also happy to know that it is working out with the new members who have joined research . i hope you had a very nice memorial day weekend and an even better birthday . happy ( belated ? ) birthday ! warmest regards , van",0 +"Subject: i wanted to give you some feedback . elena chilkina has gone way above the call of duty to help me on a very important research project . i am trying to conduct some research on the global fuels market for jeff shankman . when i mentioned this to elena , she was extraordinarily helpful in helping me compile some very useful information on very short notice . she was able to quickly define the scope of the project and gather some pertinent information . because this was not one of her regular assignments , she put in many extra hours to help us out on this project . i just wanted to let you know about a job well done . regards , craig",0 +"Subject: re : fw : stanford or - summer intern this guy has basic quant skills , etc . but at ebs we would need interns possible from mba schools , not phd . i think he is a summer intern fit for enron research and we can loop him into ebs research as we need help ( which is likely ) . ravi . vince j kaminski @ ect 02 / 29 / 00 08 : 23 am to : stinson gibner / hou / ect @ ect cc : ravi thuraisingham / enron communications @ enron communications , vince j kaminski / hou / ect @ ect subject : fw : stanford or - summer intern stinson , should we get him as well ? it seems he has the right skills . we might have maxed out on the number of summer interns through the a / a program . we would have to hire him directly . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 29 / 2000 08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" shikhar ranjan "" on 02 / 28 / 2000 02 : 31 : 39 pm to : ravi _ thuraisingham @ enron . net cc : vince j kaminski / hou / ect @ ect subject : fw : stanford or - summer intern hi ravi : i had sent an email about a week back with my resume for the summer internship . i think the address i sent it to was not correct , so i am resending it . i will also tell the others in the group to send there resumes to you . thanks . regards , shikhar - - - - - - - - - - - - - - - - - - - - - - - - shikhar ranjan phd student management science & engineering stanford university ca ( 650 ) 497 5762 - - - - - original message - - - - - from : shikhar ranjan to : cc : sent : sunday , february 20 , 2000 5 : 24 pm subject : stanford or - summer interns > hi ravi : > > please find attached my resume for the summer internship program . i > apologize for the delay . we actually lost your contact info . please let me > know if you will need any additional information and / or a cover letter > besides the resume and i can send it right away . > > thanks > > regards , > shikhar > - - - - - - - - - - - - - - - - - - - - - - - - > shikhar ranjan > phd student > management science & engineering > stanford university ca > ( 650 ) 497 5762 > - resumeo 0 - ene . doc",0 +"Subject: auctions with an incumbent ' s right of first refusal shelley , my colleague , clayton vernon , who has a background in economics , wrote a short summary of arguments against the rofr . we are working on the second approach to the problem : we try to come up with a numerical estimate of the value of this option . the fact that an incumbent shipper has this option has distributional consequences : he has something of value he never paid for . having a numerical estimate of the value of this option could help to argue against it . the value of such an option is case specific ; so we shall rather produce a template you can use for valuation case by case . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 20 / 2000 08 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - - clayton vernon @ enron 01 / 20 / 2000 08 : 29 am to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , zlu / hou / ect @ ect subject : auctions with an incumbent ' s right of first refusal vince - here is an essay on the issue you are discussing : the adverse economic impact of "" rights of first refusal "" an option to "" first refuse "" to match a competitor ' s offer is a restraint of free trade and an impediment to efficiency in the marketplace . this economic conclusion is unambiguous . if an "" incumbent "" has the right to match an offer made by a competitor , for an item or service of value , then few competitors will invest the time and expense necessary to prepare and submit offers , those offers will be lower than they would have been otherwise , and the contract will often be awarded to an inefficient incumbent instead of a more efficient challenger . in a traditional auction , where all bids are sealed and the item up for auction is awarded to the highest bidder , we can safely predict the item will be awarded to the bidder who values it the most , at a price reflecting the full value of the item up for auction . this is the efficient result in a market economy , because the financing of the high bid reflects resources freely allocated to the high bidder . if the auction has open bids , we can again safely predict the item to be awarded to the correct bidder , albeit at a slightly lower price to the donor of the item since the bidder with the highest valuation can simply increment by an infinitesimal amount the second - highest valuation . now , in a modified auction , where an incumbent bidder has the right to match the highest bid and retain the item for himself , each competing bidder must justify his own due diligence and bid preparation expenses against the following , and likely , scenario : the incumbent does not spend himself for due diligence , but instead uses these savings to help finance his matching the top bid from a competitor . simply put , the incumbent with a "" right of first refusal "" can be safely predicted to simply match their competitor ' s bid by "" rule of thumb . "" but the incumbent ' s valuation of the item up for auction can be less than the valuation of the competitor , by the amount of the due diligence and administrative expenses . and , the incumbent firm expropriates the expertise of his competitors , not only in their valuations themselves , a nontrivial financial exercise , but in any operational details required to be submitted along with the bid . furthermore , in an esoteric concept known as the "" winner ' s curse , "" a bidder realizes that if his bid actually prevails , if the incumbent fails to match it , he almost certainly overbid . given this , most competitors will not even bother to bid in an auction when an incumbent has the right of first refusal , and those that submit a bid do not rationally invest the time , expense and expertise necessary ; they may just "" fire off "" a "" low - ball "" bid . after all , in almost every conceivable "" state of the world "" arising from the auction the competitors expect to lose money . so , the incumbent almost always retains the contract at a below - market price , despite the incumbent not necessarily placing the highest value on the contract because the incumbent cannot put the contract to its most efficient use .",0 +"Subject: re : next step al , i have spoken with mark lay and he is interested . even if we cannot help you here in enron , he may be able to put you in touch with other cv groups in town . please , call him directly and give my name as a reference . ( 713 ) 853 - 7408 good luck . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001 02 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 24 / 2001 11 : 21 am to : al arfsten @ enron cc : subject : re : next step al , i have called mark lay and left a message on his voice mail . vince al arfsten on 01 / 24 / 2001 11 : 16 : 25 am to : vkamins @ enron . com cc : subject : next step vince : your suggestion to introduce the concept discussed with one of the lays is welcomed . i hope that this would mean that you would remain involved at some level . the design of the model and its potential economics could be key to how worthy the effort might be . enron could be an ideal environment from which to the concept enhancement through to commercialization could be successfully accomplished . please confidentially share matters as you think best and advise me of the interest generated . i am ready to meet there at your building or elsewhere that is appropriate . best regards , al arfsten 713 965 2158",0 +"Subject: re : london contact number hi anita , how are you ? i arrived yesterday late morning from the london gatwick airport . due to rush hour traffic , etc . it took a while to get into the city to the hotel . also , due to may day ( may lst ) protests / riots , etc . , the hotel management strongly recommended that we remain in the hotel . however , i am in the office today . i can be reached via email or via telephone at 44 ( 0 ) 207 783 5647 . take care , iris - - - - - original message - - - - - from : dupont , anita sent : tuesday , may 01 , 2001 5 : 23 pm to : mmumford @ enron . com cc : mack , iris ; crenshaw , shirley subject : i . m . mack 30 apr - 15 may * * plse review for accuracy * * agent ce / ce booking ref x 7 w 882 mack / iris eb 1972 enron corp importance : high see iris ' s itinerary below . i thought her initial plan was to land this morning and come in to enron house in early afternoon . see itinerary for phone number of hotel . let me know if i can help in any other way . thanks . anita service date from to depart arrive continental airlines 30 apr houston tx london gatwick 350 p 655 a co 34 j mon g . bush iah gatwick 01 may terminal dom terminal s dinner / snack non stop reservation confirmed 9 : 05 duration vegetarian meal , non - dairy confirmed aircraft : boeing 777 - 200 / 300 hotel 30 apr athenaeum hotel and apartments 11 may 116 piccadilly london england , wlv obj united kingdom telephone : 44 - ( 0 ) - 207 - 499 - 3464 fax : 44 - ( 0 ) - 207 - 493 - 1860 confirmation : claire 25 apr rate : rac gbp 270 . 00 per night guarantee given prereg actual arr lmay 655 am apartment to avoid billing cancel by 6 pm 24 hrs prior continental airlines 11 may london gatwick houston tx 1200 n 415 p co 5 j fri gatwick g . bush iah terminal s terminal dom lunch / snack non stop reservation confirmed 10 : 15 duration vegetarian meal , non - dairy confirmed aircraft : boeing 777 - 200 / 300",0 +"Subject: panel session at 2001 pes summer meeting vince and vasant , i was asked by one of my advisors to be on a panel for the summer power engineering society . i stated that i couldn ' t divulge any information on modeling efforts at enron but could give a general overview and cover my dissertation work . he stated that he understood and other companies had expressed similar concerns . i guess that i need your ok to attend this presentation and present . thanks , lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 03 / 27 / 2001 10 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" martin l . baughman "" on 03 / 27 / 2001 08 : 59 : 35 am to : shams . siddiqi @ lcra . org , harry . singh @ neg . pge . com , lance . cunningham @ enron . com , rosenberg @ hotmail . com , "" camporeale , robert "" cc : baran @ eos . ncsu . edu , liu @ ee . washington . edu subject : panel session at 2001 pes summer meeting gentlemen : thank you for agreeing to participate on the panel . to comply with the quality control requirements of the society i must request from each of you the following : 1 . name , affiliation , and title of presentation as you want it listed in program . 2 . a 2 - 6 summary of the presentation . these summaries will appear in the proceedings . many speakers simply provide a few powerpoint slides that contain this information , or alternatively , a few paragraphs of text summarizing the points they intend to make in their presentations . please provide this information to me by april 2 . here is the status of the panel so far . title : power trading and asset management : tools of the trade requested day and time : wed july 18 morning session summary a number of sophisticated anlytical tools are used in support power trading and asset management activities . these include various time - series , stochastic , and physical models of quantities and prices , portfolio and risk analysis tools , and other risk management tools . in this panel , the analytical approaches are surveyed and discussed . panelists : lance cunningham / confirmed manager , research enron north america micahel rosenberg / confirmed txu shams siddiqi / confirmed lcra harry singh / confirmed director , market economics pg & e national energy group robert camporeale coned energy panel organizer and chair : martin l . baughman ece department the university of texas at austin remember , by april 2 . marty martin l . baughman ece dept . ens 348 the university of texas at austin austin , tx 78712 ph . ( 512 ) 471 - 5376 fax ( 512 ) 471 - 5532",0 +"Subject: houston trip vasant , so sorry for the name mix up . . . it is you , not "" vance "" , another guy on my pr team , who is to be included in this . . . so sorry . . i ' d just gotten off the phone with "" vance "" before i wrote this . i ' m writing this from "" vacation - day - at - my - house "" . . which i can tell , the "" vacation "" part , i should start taking literally ! happy holidays ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 12 / 18 / 2000 02 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - christie patrick 12 / 18 / 2000 02 : 45 pm to : fap @ enron , melinda mccarty / corp / enron @ enron , cindy derecskey / corp / enron @ enron , michael b rosen / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : clay degiacinto @ enron , deepa mallik @ enron , dennis feerick @ enron , edson otani @ enron , gustavo palazzi @ enron , "" heather n . thorne ( e - mail ) "" @ enron , jack rejtman @ enron , jaideep singh @ enron , jason cummins @ enron , joshua leventhal @ enron , kim whitsel @ enron , "" louis a thomas ( e - mail ) "" @ enron , murat camoglu @ enron , nick levitt @ enron , omar bassel @ enron , pat henahan @ enron , ram vittal @ enron , steve lessar @ enron , tulika bhalla @ enron , vincent chen @ enron , weigelt @ enron , fap @ enron , "" ' christie . patrick @ enron . com ' "" @ enron , "" ' vkamins @ enron . com ' "" @ enron , piazze @ wharton . upenn . edu subject : houston trip hello everyone ! regarding the tiger team research project houston trip , these are the rsvp ' s i ' ve received : jaideep singh dennis feerick kim whitsel "" and team 1 "" ram vittal heather thorne pat henahan vincent chen jack rejtman deepa mallik josh leventhal edson otani omar bassal stephen lessar clayton dediocinto . note : heather and jack have requested to stay in houston until sunday ( expenses other than air fare , beyonfd friday at enron will be individually borne ) . donna , would you please review this list , add the individual names of "" team # 1 ) , add any additional faculty , t . a . ' s etc , that will be attending , and returnm this list to me and my assistant , "" melinda mccarty "" who will begin the arrangements . also , if others would prefer sunday returns to phily , on the same terms offered heather and jack , please so indicate no later than tuesday , dec . 20 . please inform donna , who will then prepare and forward to me and my assistant melinda ( e - mail address above ) one complete , confirmed list of attendees . the plan will be to leave phily on thurs afternoon , arrive late aft thursday , dinner at churrasco ' s south america restaurant thursday evening with me , vince , vance , jeff shankman , and possibly a few others from enron . hotel thursday evening and ground transportation through return to airport will be arranged by enron . friday will be reserved for an enron tour , and individual meetings the teams would like to set up with members from variuous business units return will be scheduled for early fri evening , except for those electing to stay through sunday . again , except for return to airport and airfare , expenses beyond friday afternoon will be borne by each respective student ( though we encourage you to stay and look around this great city of houston ! ) . thanks donna , for your immediate assistance with this - - vinve , vance , jeff and i are excited about the trip ! ! regards ! - - christie .",0 +"Subject: re : research dept contact please contact stinson gibner ( vp ) , vince kaminski ( md of enron research ) or one their technical staff who did the model development : samer takriti or chonawee supatgiat . as i mentioned in our meeting , enron research is staffed with some of the best risk model developers and ebs has engaged them to develop optimization tools for trading and customer pricing activities . phil markwart has been our optical engineering expert who helped specify the requirements for the research group . ravi . p . s . for those who don ' t know dan , he is part of the team ( dan please correct me if i am wrong here ! ) that will be responsible for developing a trading system for bandwidth trading org . he has also began to look at the optimization needs of the system . dan cummings 07 / 10 / 00 09 : 33 am to : ravi thuraisingham / enron communications @ enron communications cc : subject : research dept contact ravi , who ' s working on the optimization engine you mentioned friday ? dan",0 +"Subject: got book and papers , thanks ! the fedex people dropped them off last week , and i ' m happily reading away . thanks ! keith baggerly",0 +"Subject: re : interviews marshall , sorry for a delay in responding to you . my hr people were asked to get in touch with you re the candidates . vince marshall brown on 03 / 27 / 2001 02 : 36 : 12 pm to : "" ' vince kaminski ' "" cc : subject : interviews vince , i had two candidates speak with zamin lu on 3 / 14 / 01 and 3 / 16 / 01 . ( renshi zhang and bill koures respectively ) . i know you were in london last week . if you could please give me some feedback ( either positive or negative ) as soon as possible , i would appreciate it . regards , marshall brown vice president robert walters associates phone : 212 - 704 - 0596 fax : 212 - 704 - 4312 marshall . brown @ robertwalters . com caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . if you have received this email in error please notify the system manager . this footnote also confirms that this email message has been swept by mimesweeper for the presence of computer viruses . ",0 +"Subject: authorization robert , please find below the authorization for the studay , as we had spoken about during our conference call earlier today . authorization i authorize henwood energy services , inc . , to provide for the hourly rates stated in the proposal dated 29 dec . 2000 , an analysis of the india electricity system and an evaluation of the dabhol plant despatch . the results of the study and information provided by enron shall be considered confidential and will be subject to a confidentiality agreement to be prepared by enron and submitted to henwood . sandeep kohli , vice president , enron .",0 +"Subject: summer opportunity vince : i did get your phone message about the summer , but i still haven ' t heard from enron about an offer for summer employment . i do have other offers with other energy companies that i must respond to this week . could you let me know as soon as possible if an offer will be made to me . sincerely , kimberly whitsel wharton mba candidate 2002",0 +"Subject: request submitted : access request for youyi . feng @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000025307 approver : stinson . gibner @ enron . com request create date : 3 / 23 / 01 9 : 23 : 49 am requested for : youyi . feng @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: re : enron cover letter & resume for dave gershenson vince , thanks for your very prompt email response . i passed your message along to dave . thanks also for a great dinner and day of meetings last week . i really enjoyed the chance to learn more about enron , and was very impressed with everyone i met . look forward to working with you these next few months ! ! cheers , vincent - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , january 17 , 2001 2 : 39 pm to : chenvinc @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com subject : re : enron cover letter & resume for dave gershenson vincent , i have forwarded the resume to our analysts / associate pool with a recommendation to accept david as a summer intern . i expressed interest in taking him into my group . he may , of course , work for a different unit of enron . it ' s up to him and i shall not be offended if he would like to go into trading or deal origination . vince",0 +"Subject: re : summer internship vince , we have not started our spring hiring yet . however , we will review and let him know we have an interest and tell him when we will be interviewing on campus . thanks althea and shelly , please keep track of his resume so that he is considered for a summer position when we begin the spring recruiting . thanks vince j kaminski @ ect 11 / 15 / 2000 07 : 39 am to : charlene jackson / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : summer internship hello charlene , i am forwarding you a resume of a student from berkeley . we would like very much to have him as a summer intern with my group . please , let me know if your program can accommodate him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 15 / 2000 07 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - ezequiel luis on 11 / 13 / 2000 04 : 23 : 23 pm to : vkamins @ enron . com cc : subject : summer internship dear mr . kaminski i am currently pursuing the m . s . in ieor at uc berkeley . i attended the speech you gave some weeks ago . i am interested in summer internship positions available in enron . you will find enclosed my resume . sincerely , ezequiel luis este mensaje fue enviado desde http : / / commcenter . infosel . com internet gratis http : / / www . terra . com . mx / terralibre - resume elm . doc",0 +"Subject: journal of applied corporate finance vince : i hope you received the winter issue of the jacf . your article was great . many of the issues and themes raised in that piece can be expanded upon . the same holds for the round table discussion which included gene humphrey . finally . i would love to get your assessment of the real option article i wrote with gordon sick . best regards , john l . mccormack svp , stern stewart & co . 212 - 261 - 0740 note : the information contained in this message may be privileged and confidential and protected from disclosure . if the reader of this message is not the intended recipient , or an employee or agent responsible for delivering this message to the intended recipient , you are hereby notified that any dissemination , distribution or copying of this communication is strictly prohibited . if you have received this communication in error , please notify us immediately by replying to the message and deleting it from your computer . thank you . stern stewart & co .",0 +"Subject: follow - up on captive generation vince / stinson , please find below two attachemnts . the excell spreadsheet shows some calculations on the savings from using dabhol power as against a diesel genset operating at a higher heat rate . there is also a differential in price of diesel , as against naphtha used by the plant . i have taken data from the septemeber bill of dpc . we do not want to give the actual numbers to the press , since they ar likely to have a field day with the 6 cent / kwh energy price of dabhol that is reflected there . the seond attachement ( word ) has the wordings that i think we can send in to the press . please review the calculations and the note , ad if you find this satisfactory , please forward to jeff / s . i am availabel on mobile if you have questions o clarifications . the number ( 610 mw ) for total captive generation in maharashtra ) is taken from mohan gurunath ' s presentation on this . regards , sandeep .",0 +"Subject: re : powerisk 2000 followup in re weatherdelta vince , i will contact them and set up a meeting . alex vince j kaminski @ ect 10 / 30 / 2000 10 : 21 am to : alex huang / corp / enron @ enron cc : joseph hrgovcic / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect , lance cunningham / na / enron @ enron , sevil yaman / corp / enron @ enron , stinson gibner / hou / ect @ ect subject : powerisk 2000 followup in re weatherdelta alex , can you set up a meeting to review this product . they have an office in houston . please , invite people on the distribution list . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 10 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - denton mike on 10 / 24 / 2000 10 : 14 : 04 am to : vkamins @ enron . com cc : subject : powerisk 2000 followup in re weatherdelta mr . kaminski , ? nick perry and i were recently discussing the conference in paris , and we gathered that you had some interest in exploring possible uses of our new weatherdelta tool - kit . ? it is the only application that we know of , that can ? model temperature , loads , and power prices in several locations simultaneously : thus allowing the user to measure the value an risk in a variety of financial instruments , physical obligations and assets . ? i have attached the product overview sheet , and would be happy to discuss its capabilities with you at your convenience . ? ? ? nick and i send our regards , ? vice president na strategic consulting caminus 747 third avenue , 18 th floor new york , new york 10017 ( 212 ) 515 - 3667 ? ? - weatherdelta . pdf",0 +"Subject: re : support for exotica steve , i have to draft an announcement and send it to john sheriff . i shall do it this weekend . vince steven leppard 10 / 13 / 2000 09 : 27 am to : vince j kaminski / hou / ect @ ect cc : subject : re : support for exotica hi vince good luck calling anjam . he never seems to answer his mobile when sharad calls him to track him down . furthermore he ' s off work until tuesday . i ' ve had tani ask me what ' s happened to the announcement about my new appointment . any progress there ? cheers , steve vince j kaminski 13 / 10 / 2000 14 : 44 to : steven leppard / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : support for exotica steve , i am calling anjam to give him a deadline regarding move to houston . if he decides to stay in houston , you should meet with him to convey the concerns regarding his performance . vince steven leppard 10 / 13 / 2000 03 : 50 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , dale surbey / lon / ect @ ect , tani nath / lon / ect @ ect cc : paulo issler / hou / ect @ ect , sharad agnihotri / lon / ect @ ect , zimin lu / hou / ect @ ect subject : support for exotica all sharad ' s investigations of exotica ' s status in london have turned up a very confused state of affairs . this isn ' t being helped by the fact that : 1 . anjam is rarely at his desk , and can ' t be found anywhere in the building . 2 . when he is around he isn ' t willing or able to provide all the information sharad might need to support exotica . this is worrying since much of our business depends on the validity of exotica ' s valuations . sharad will now request information from anjam via email to leave a trail , and i want to alert you to the fact that sharad will be cc ' ing you in on these emails . if things don ' t improve soon , i may need to request some assistance in extracting this information from anjam . many thanks , steve",0 +"Subject: re : a / a program question vince , thanks for the support . gwyn vince j kaminski @ ect 10 / 24 / 2000 04 : 38 pm to : gwyn koepke / na / enron @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : a / a program question gwyn , no problem . please , continue with your current tutor . vince gwyn koepke @ enron 10 / 23 / 2000 04 : 22 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : re : a / a program question vince , the a / a program does not have a contract in place with melly language services . it appears that by the note below from my contact in the a / a - hr department , the reimbursement policy appears to be driven by department , not enron at large . as i mentioned earlier , if i continue with my current tutor , but outside of the melly language services , the cost to the department will decrease for me to take french classes . pls advise if research will be able to continue to fund my lessons . many thanks , gwyn koepke - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 10 / 23 / 2000 04 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : ivonne brown 10 / 23 / 2000 04 : 17 pm to : gwyn koepke / na / enron @ enron cc : subject : re : a / a program question gwyn , in the past the associate & analyst program use to pick - up the cost for the classes , but they stopped doing so effective 1 / 99 . ( although , some business units decided to continue paying for it - you may want to double check with your business unit to whether or not they have a contract . the a / a dept does not . ) please let me know if you have additional questions . thank you for your patience . sincerely , ivonne brown gwyn koepke 10 / 23 / 2000 01 : 15 pm to : ivonne brown / na / enron @ enron cc : subject : a / a program question ivonne , have you been able to find an answer to the attached ? thanks ! gwyn - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 10 / 23 / 2000 01 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - gwyn koepke 10 / 19 / 2000 08 : 25 pm to : ivonne brown / na / enron @ enron cc : subject : a / a program question ivonne , i am currently enrolled in a french language class thru enron and melly ' s language services , and my group is paying the cost directly . i am considering quitting the melly ' s language program in favor of an outside private tutor , for a number of reasons . it will be cheaper too . i would like to know : 1 . does enron have a contract in place with melly ' s language service , to be the exclusive provider of language services to enron ? 2 . will enron pay the costs of my language classes if they are held outside of the melly contract ( if any ) ? i just want to make sure that if i decide to "" drop out "" of the melly classes and sign up for other private tutoring courses , which will be less expensive than the melly svc , that enron will not have a problem picking up the tab . vince kaminski , the md , wants to know this , to ensure there is no legal restriction on who must provide these language services in order to secure enron reimbursement . thanks for your help . gwyn koepke",0 +"Subject: schedule for nick as far as i know , the schedule for nick bambos is : 9 - 10 ebl 9 c 2 meet with paul racicot and ebs research members 11 : 00 leave for lunch at vincent ' s 12 : 30 return to enron 1 - 2 eb 46 c 2 giuseppe p . talk on ip pricing . 2 - 4 eb 43 c 2 open forum discussions with ebs traders 4 : 14 nick departs for hobby",0 +"Subject: site license for power world gentleman , kevin presto concurred on the purchase of a site license as recommended by vince . what are the thoughts of others ? i am available to demo the package if others would like to see it . thanks , lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 11 / 20 / 2000 01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 11 / 10 / 2000 09 : 16 am to : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , tim belden / hou / ect @ ect , tim . heizenrader @ enron . com , kevin m presto / hou / ect @ ect , george hopley / hou / ect @ ect cc : lance cunningham / na / enron @ enron subject : site license for power world gentlemen , i recommend that we purchase this package and split the cost 3 ways between 3 power trading desks . i think that we should go for option 3 ( ~ $ 15 , 000 ) . lance cunningham in my group looked at this software package and found it very useful for modeling transmission problems . please , feel free to ask him for technical details in support of this recommendation . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000 09 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lance cunningham @ enron on 11 / 09 / 2000 06 : 15 : 14 pm to : vince j kaminski / hou / ect @ ect cc : vasant shanbhogue / hou / ect @ ect subject : site license for power world vince , we have three options to increase our availability across enron for the power world load flow software . option 1 , upgrade to a site license for the load flow software only . price $ 9 , 990 . 00 this would give all of enron the ability to perform load flows , but not determine marginal cost or available transfer capacity ( atc ) because only the optimal power flow ( opf ) version can perform that task . option 2 , site license for the load flow and purchase 1 opf package for walter coffer ' s group . price $ 11 , 240 . this would give all of enron the ability to perform load flows and one other group the ability to determine marginal cost and atc . option 3 , site license for load flows , opf and atc . price $ 14 , 990 . 00 this would give all of enron the ability to perform load flows , marginal cost , and atc . regards , lance",0 +"Subject: inquery re : aluminium companies vince , margaret mentioned to me that you might be able to help me with the followings : we ( central european origination , london office ) might start talking to two aluminium companies in central europe . before we were to meet them , it would be rather useful ( i suppose ) to find out what aluminium deals ( if any ) you closed in the states . the most important issue would be whether you managed to index the price of power to the price of aluminium ; if yes , how . your help would be much appreacited . many thanks , jozsef",0 +"Subject: re : job posting hi vince , this posting is for my group . thanks for the referral . - - - - - original message - - - - - from : kaminski , vince sent : tuesday , april 24 , 2001 5 : 31 pm to : goodpasture , john ; watson , kimberly ; ferrell , lee ; kaminski , vince cc : krishnarao , pinnamaneni subject : job posting i am teaching a class at rice and one of my very bright students sent her resume in response to this posting . do you know who posted this job ? vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" helen demianenko "" on 04 / 24 / 2001 02 : 11 : 05 pm please respond to to : cc : subject : job posting dear vince , thanks for talking to me this morning about the sr . risk analyst position . here is where you can find the job description for that position : also , i have cut and pasted it down below , just in case . i appreciate your assistance in this matter and will start working on my cover letter right away . i would also like to talk to somebody to get a better feel for the position ( is this really an mba level position and how much of the in - depth learning opportunities for the derivatives market does it entail ? ) sincerely , helen demianenko p . s . i have attached my resume ( one more time ) . sr risk analyst essential functions : primary accountability for managing the ets risk book structure and processes from a pipeline ( front office ) perspective . work within current nng and tw marketing organizations to effectively integrate risk books into daily marketing and structured product activities . provide feedback to management regarding overall and specific risk positions . provide support for consistent and accurate deals entry / reporting for stand alone risk management system . create ad - hoc reports to assist management in risk analysis . responsible for managing and providing enhancements to the capacity books : ? maintain functionality and provide leadership for new functionality from a users perspective . provide support and direction for integration of capacity books and revenue management project . support revenue management team essential requirements : ba / bs in finance or accounting ( mba preferred ) . minimum of two years financial instruments experience . excellent quantitative / analytic and systems skills . knowledge of commodity risk book concepts . understanding of physical natural gas market , interstate transportation and financial derivatives . ability to interface with structuring / marketing groups in order to define business requirements . ability to provide leadership for business and system processes . excellent communication skills with an ability to communicate across organization with varied skill sets and ideas . must be self - motivated with a high level of energy preferred skills : na . special characteristics : this job functions in a team - oriented , fast - paced environment with multiple concurrent assignments and constantly changing priorities . contact : responses will be accepted through may 3 , 2001 . respond to enron corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or e - mail : dea . crum @ enron . com as a . doc or . txt attachment . please include this requisition number . job id 0000108729 department risk management & reporti company enron transportation services enron transportation services location houston , tx type posting date 19 - apr - 01 - helen _ d _ resume . doc >",0 +"Subject: important united way reminder reminder ! the united way executive breakfasts are one week away . please rsvp if you have not already done so . date : thursday , august 3 , 2000 ( hosted by joe sutton ) or friday , august 4 , 2000 ( hosted by jeff skilling ) time : 7 : 45 - 9 : 00 a . m . location : depelchin children  , s center 100 sandman ( near memorial and shepherd intersection ) rsvp : reply directly to this email or call jessica nunez , 853 - 1918 by monday , july 31 transportation : bus will depart from the enron building ( andrews street side ) promptly at 7 : 30 a . m . bus transportation is encouraged , due to limited onsite parking . however , if you should need to drive , directions to depelchin are below . executive solicitation executive solicitation kicked - off on july 24 and is well underway . as you know , participation by enron  , s executive team is vital to the success of the campaign . to make your contribution , please click on the following united way link , http : / / unitedway . enron . com or go directly to internet explorer or netscape and type in http : / / unitedway . enron . com in the address field . either option should take you to enron  , s united way 2000 campaign site where you should be able to make your pledge within minutes . please call kathy mayfield , enron  , s campaign coordinator at 713 / 853 - 3264 if you have any difficulties at all accessing the site . we look forward to seeing you next week ! directions to depelchin children  , s center  ) 100 sandman ( 713 - 861 - 8136 ) from downtown houston ? take prairie ( which turns into memorial ) or allen parkway west to shepherd . ? turn right on shepherd . ? turn left on feagan ( which is the first light after memorial . ) ? turn left on sandman and drive down a couple of blocks . from the galleria area ? take 610 north to the woodway / memorial exit . exit and turn right on woodway . ? woodway will turn into memorial and stay on memorial until you see the shepherd exit . ? exit shepherd and turn left on shepherd . ? turn left on feagan ( which is the first light after memorial . ) ? turn left on sandman and drive down a couple of blocks . from north of downtown ? take 45 or 59 south to i - 10 . go west on i - 10 . ? take the shepherd / durham exit and go through the shepherd intersection to durham . go left under the freeway on durham . ? turn right on feagan ( which will be a light . ) ? turn left on sandman and drive down a couple of blocks .",0 +"Subject: li sun i ' ve asked vince to get involved with you about getting li into vince ' s group . this issue needs to be resolved by week ' s end - - we look like we don ' t have our act together , and that bothers me . especially since we are about to make a significant monetary investment at wharton , and we could have a new wharton recruit disgruntled . vince , can you set up a meeting with you , me and mark palmer to follow up with our meeting with skilling ? thanks very much . . . jeff",0 +"Subject: holiday invitation please click on the attached link to launch your holiday party invitation . http : / / invitation . enron . com please direct any questions to dorie hitchcock via email .",0 +"Subject: control and echelon very interesting websites . thanks for keeping me updated ! - scott - - - - - - - - - - - - - - - - - - - - - - forwarded by scott tholan / corp / enron on 06 / 29 / 2000 05 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 06 / 29 / 2000 10 : 37 am to : scott tholan / corp / enron @ enron cc : subject : control fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000 10 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 06 / 28 / 2000 11 : 11 : 37 pm to : vkamins @ enron . com cc : subject : control sto a : political control technologies - summary of interim study",0 +"Subject: seminar mugs vince : can your secretary forward to debra thomas the enron logo in a word document that debra can use in a design for the rice / enron finance seminar series mugs ? hope your summer is going well . thank you again for your kind assistance . bbo",0 +"Subject: re : economic espionage act presentation - august 15 th scott , i shall attend . vince enron north america corp . from : scott tholan 08 / 01 / 2000 04 : 49 pm sent by : sharon purswell to : john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect , greg whalley / hou / ect @ ect , steven j kean / hou / ees @ ees , jim fallon / enron communications @ enron communications , russell woody / enron communications @ enron communications , john brindle , david oxley / hou / ect @ ect cc : alan aronowitz / hou / ect @ ect , mark e haedicke / hou / ect @ ect subject : economic espionage act presentation - august 15 th you are cordially invited to attend a presentation entitled : "" acquiring information : trade secrets and the economic espionage act ( eea ) "" . daniel waltz , of the law firm patton boggs llp , is a leading expert on the eea and will deliver what promises to be an interesting and informative segment . congress passed the eea in 1996 , and it will increasingly shape how corporate america collects , uses , and protects valued information . in addition to explaining some of the intricacies of the eea , dan waltz will include "" hypothetical "" corporate case studies ( some actually torn from the headlines ) to illustrate his points . this event is sponsored by ena ' s competitive analysis and business controls ( cabc ) group and is supported by ena legal . this event kicks - off cabc ' s competitive intelligence standards program , which seeks to raise awareness of issues relevant both to enron ' s practitioners and senior consumers of competitive intelligence . this particular speaking engagement is designed to raise awareness of the eea ' s legal guidelines , as well as to stimulate thought both on the collection opportunities against our competitors as well as how we might better protect enron ' s own proprietary information . i believe the topic of the eea is especially relevant , given that we find ourselves amidst the big bang of this new information age . all cabc staff is being asked to attend this presentation , and we are inviting a small number of other enron employees who are engaged in aspects of serious competitive intelligence . select executives like yourselves are being invited to attend , and i would welcome any suggestions of others that you think might benefit from attending this event . the eea presentation is set for august 15 , 1 : 30 - 3 : 00 pm , in the 50 th floor conference room . please rsvp to either myself or sharon purswell . hope to see you there . p . s . by the way , our next speaker segment in the ci standards program will concentrate on the guidelines and implications of the "" foreign corrupt practices act ( fcpa ) , "" and will likely be scheduled for the fall .",0 +"Subject: re : recruiting at carnegie - mellon i am so sorry that we keep missing one another . are you available at any time tomorrow so i can come visit to talk about carnegie mellon recruiting this fall ? kristin vince j kaminski @ ect 08 / 23 / 2000 05 : 33 pm to : john b gordon / na / enron @ enron cc : vince j kaminski / hou / ect @ ect , kristin gandy / na / enron @ enron subject : re : recruiting at carnegie - mellon john , i haven ' t received the invitation yet to the sep 13 th meeting . i shall contact you thursday regarding the cmu presentation . vince john b gordon @ enron 08 / 23 / 2000 05 : 01 pm to : vince j kaminski / hou / ect @ ect cc : subject : recruiting at carnegie - mellon vince : i understand that you are the lead recruiter for cmu . as you know , i am the only alum from that school in enron ' s associate program . i assume i will be joining you for our corporate presentation on 9 / 13 at 7 : 30 am . please let me know what i can do to help prepare for this event . enron and gsia are a great fit , so i want this recruiting effort to go well . are you also giving a talk / lecture to the computational finance students ? if so , what time ? maybe we can schedule a lunch with duane seppi . i look forward to hearing from you . john gordon",0 +"Subject: re : meeting on feb 8 , 2001 david thanks . i shall get in touch with you a few days before to coordinate the details . vince from : david port @ enron 01 / 09 / 2001 07 : 47 am to : vince j kaminski / hou / ect @ ect cc : rick buy / hou / ect @ ect , john l nowlan / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : meeting on feb 8 , 2001 vince i will be available . dp vince j kaminski @ ect 01 / 08 / 2001 12 : 06 pm to : rick buy / hou / ect @ ect , david port / market risk / corp / enron @ enron , john l nowlan / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : meeting on feb 8 , 2001 fyi . this is the list of the petronas executives visiting enron on feb 8 . i have invited them to lunch . would you like to join me for lunch . i would like to propose a short courtesy meeting at 10 with jeff / john ( 5 - 10 minutes ) , followed by rac / research presentation till 11 : 30 . vince p . s . i shall reserve a conference room for this meeting - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 08 / 2001 10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - azminab @ petronas . com . my on 01 / 07 / 2001 06 : 37 : 33 pm to : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com , khairuddinbmjaafar @ petronas . com . my cc : subject : re : meeting on feb 8 , 2001 dear kaminski 4 members from corporate risk management unit 1 . iqbal abdullah - general manager 2 . nur azmin abu bakar - head , risk assessment & controls 3 . zulkifli a rahim - head , risk measurement & systems 4 . adnan adams - head , special projects regards vince . j . kaminski @ enron . com on 03 / 01 / 2001 09 : 45 : 02 pm to : azminab @ petronas . com . my cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com subject : re : meeting on feb 8 , 2001 dear mr . nur azmin abu bakar , thanks for your prompt reply . please , let us know how many members of your team will visit enron . i look forward to our meeting on february 8 . vince kaminski azminab @ petronas . com . my on 01 / 02 / 2001 06 : 38 : 33 pm to : vince . j . kaminski @ enron . com , khairuddinbmjaafar @ petronas . com . my , shirley . crenshaw @ enron . com cc : subject : re : meeting on feb 8 , 2001 dear kaminski , happy new year and thank you for the reply . we are honored to have lunch with you and your team however we have another appointment at 2 . 30 p . m . regards vince . j . kaminski @ enron . com on 03 / 01 / 2001 07 : 38 : 19 am to : azminab @ petronas . com . my cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com subject : meeting on feb 8 , 2001 dear sir , i would like to apologize for the delay in responding to your fax . i was on vacation for the last few days . i shall be honored to meet your delegation on thursday , february 8 at 10 : 00 a . m . please , let me know if you will be free for lunch after the meeting . vince kaminski",0 +"Subject: completion of lng model review jeff , fyi . we completed the review of the lng model . the copy of the review is available if you want to take a look at it . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 17 / 2000 04 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - bob lee @ enron 10 / 16 / 2000 01 : 53 pm to : vince j kaminski / hou / ect @ ect cc : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : completion of lng model review the review of eric groves ' lng model spreadsheet has been completed . no independent model was available for use in the comparison ; however , the model appears complete and accurate in representating all important cost and revenue elements . if this financial model is coupled with a optimization model for planning ship usage in the future , additional variables may be needed to represent the variability of trip times , weather factors , etc . a reference describing these possible additions was provided . bob lee",0 +"Subject: meeting requested hi mr . kaminski , please send me your assistants name and number so i can schedule a time for you and kevin to go to lunch next week . thanks ! rebekah rushing ( rebekah _ rushing @ enron . net ) enron broadband services broadband ventures group 713 - 853 - 3273 - phone 713 - 646 - 8010 - fax - - - - - forwarded by rebekah rushing / enron communications on 01 / 05 / 01 02 : 00 pm - - - - - kevin garland 01 / 05 / 01 12 : 04 pm to : vince j kaminski / hou / ect @ ect cc : rebekah rushing / enron communications @ enron communications subject : meeting requested vince , i would like to meet with you or someone in your group to discuss some of the investment ideas and structures we are exploring . how is your group structured these days ? who would be best for me to meet ? might you be available for lunch next week ? i will have my assistant contact you . thank , kevin garland",0 +"Subject: alliance info alert - ferc reporting attached is a summary of recent ferc activities ( pdf file ) and the weekly alliance express . the following is a summary of the most recent ferc meeting , followed by a listing of the most recent ferc filings . in a brief meeting yesterday , ferc approved a final rule adopting section 203 merger filing requirements , generally as proposed , and extended the existing nyiso bid cap in its non - spinning reserves market and the related mandatory bidding requirement until such time that the new york market can be determined to be "" workably competitive . "" at the same time , ferc ordered a technical conference to explore changes to the nyiso reserves market , and urged market participants to reach a consensus on a preferred solution , next steps , and deadlines for resolution / implementation . additional details are provided below . ferc updates , streamlines merger filing process ferc unanimously approved its proposed order revising the reporting requirements for mergers . however , comm . hebert did so with reservations , as discussed below . commission staff stated that the order closely follows the notice of proposed rulemaking previously issued , but adds more detail and more certainty to the industry . staff stated that the order is improved over the proposed rule because it includes exemptions from reporting for certain entities and it more precisely defines geographical areas and products . according to ferc , the draft order : - revises the commission ' s filing requirements to reflect existing merger policy based on ferc ' s 1996 merger policy guidelines ; - provides more detail for the industry in developing competitive market analyses . the rule continues the existing screening process for mergers with potential horizontal competitive concerns . in addition , the rule establishes informational requirements for vertical competitive analyses . - streamlines filing requirements for transactions that do not raise competitive concerns ; and - reduces the industry ' s regulatory burden by eliminating outdated filing requirements . the rule will take effect 60 days after its publication in the federal register . commissioner reaction : comm . hebert expressed reservations that , although he was voting for the rule , ferc should not be duplicating the department of justice ( doj ) and the federal trade commission ( ftc ) market concentration analyses and that ferc should follow the lead of anti - trust enforcement officials , who could also analyze mergers faster and more confidentially . he also stated that ferc should review the filings after the doj or the ftc review them , not before , and that there should be a definite time frame for review . hebert did mention that he was pleased that rtos and the disposition of transmission assets would be exempt , that ancillary services would be considered as a separate product and that the final rule opens the door for alternative market analysis . comm . breathitt supported the final rule , stating that it should expedite the approval process and that the regulatory burden should be eased due to the fact that older , irrelevant requirements have been dropped . she indicated that the final rule balanced the need for speedy decisions while protecting the public interest by stating that the process will be "" efficient yet sufficient "" . the commissioner said that she was pleased the final rule addressed technical issues such as computer modeling as well as retail competition and one of her main concerns , confidentiality . comm . massey fully supported the final rule , emphasizing that it would improve response time , lessen the need to ask for more data and allow the industry to better predict commission actions . like commissioner breathitt , massey was pleased that the order will allow market modeling analysis that will better enable ferc to evaluate market concentration and allow applicants to point to other factors when concentration appears too high . massey also stated that the new rule includes the ability to address many of ferc ' s concerns , such as future mergers when they occur in succession , retail competition , mitigation by the enlargement of markets through rtos and analysis of ancillary services . in sum , he averred that the order will provide ferc with the tools it needs for accurate analysis , while taking into consideration the rapid changes in the industry . chairman hoecker also voiced his support and noted that he felt that this was a very important rule . in response to comm . hebert , chairman hoecker said that the doj and ftc actually wait for ferc ' s report before issuing their own , that the anti - trust enforcement agencies rely on ferc ' s expertise when reviewing mergers in the electric and gas industries . there is a major positive connection between industry consolidation and rtos and that both are reconfiguring the markets and effect how they work , he noted . because the rtos enlarge the size of the subject market , he indicated , rtos will help to preserve competition . therefore , more and larger rtos should allow for more mergers , he said . the chairman cautioned that this is not to imply that joining an rto is a requirement for a merger , but that it would certainly be viewed favorably . nyiso bid caps extended until ancillary service market shown to be workably competitive in a 3 - 1 decision , with comm . hebert dissenting , ferc extended the existing nyiso bid cap in its non - spinning reserves market and the related mandatory bidding requirement until such time as that market can be determined to be "" workably competitive . "" at the same time , ferc ordered a technical conference to explore changes to the nyiso reserves market , and urged market participants to reach a consensus on a preferred solution , next steps , and deadlines for resolution / implementation . in so doing , ferc rejected certain aspects of nyiso ' s september 1 and 8 , 2000 compliance filing , submitted pursuant to its may 31 , 2000 order imposing a temporary bid cap through october 31 . the iso ' s efforts to correct market flaws identified in the order and further strengthen market performance had not yet satisfied the commission ' s directives , ferc concluded . ferc found that while nyiso has achieved solid progress in certain areas , overall the iso has not shown sufficient improvement to warrant raising and then gradually lifting the temporary bid cap in the iso ' s non - spinning reserve market by april 2001 , as the iso requested . commissioner reaction : comms . hoecker , massey and breathitt all endorsed the order as an "" imperfect solution , "" yet a pragmatic approach toward resolving the flaws plaguing the iso ' s market . comm . hebert faulted the commission for squandering an opportunity to incentivize additional supply by lifting the price controls . hoecker and breathitt joined hebert in expressing disappointment in the lack of the iso ' s progress , but contended that significant outstanding issues must be resolved before the bid cap can be lifted . in other action , ferc accepted nyiso ' s and nepool ' s proposed emergency energy transaction agreement , allowing nyiso and iso - ne to provide emergency service to each other ( ero 0 - 3638 - 000 ) ; stricken items included cae - 16 ( nepool ' s 64 th agreement amendment proposing the elimination of in service and instituting new rules governing certain import transactions ( ero 0 - 3577 - 000 ) ) . = = recent ferc filings = = ( 1 ) rto developments * iso ne submitted its changes to market rule 17 , market monitoring , reporting and market power mitigation , in compliance with the commission ' s july 26 , 2000 order . erol - 368 - 000 . filed november 1 , 2000 . * iso ne submitted its special interim market rule in compliance with the commission ' s july 26 , 2000 order . ero 0 - 369 - 000 . filed november 1 , 2000 . * illinois industrial energy consumers filed to intervene regarding dynegy ' s filing to request approval for the withdrawal of the illinois power co . from the miso . erol - 123 - 000 . filed november 6 , 2000 . * el segundo power filed a motion "" requesting order on request for rehearing by date certain "" in complaint that challenges the ca iso ' s ability to set the rates for the energy that it can compel generators to produce for reliability under its standard form contract . ero 0 - 1830 - 001 . filed november 3 , 2000 . * ca iso filed an unbundled grid management charge in order to recover its administrative and operating costs . erol - 313 - 000 . comments due by november 22 , 2000 . * nepool submitted supplemental information related to its filing of the sixty - fourth agreement amending the nepool agreement , which proposed the elimination of in service . ero 0 - 3577 - 000 . comments due by november 14 , 2000 . ( 2 ) oatt / transmission * duke energy filed an amendment to its catawba interconnection agreement with north carolina electric membership coop . erol - 282 - 000 . comments due by november 21 , 2000 . * duke energy filed an amendment to its catawba interconnection agreement with the saluda river electric coop . erol - 281 - 000 . comments due by november 21 , 2000 . * duke energy filed an amendment to its catawba interconnection agreement with north carolina municipal power agency no . 1 . erol - 280 - 000 . comments due by november 21 , 2000 . * alliant energy , on behalf of ies utilities , interstate power and wisconsin power and light , filed new rates under its oatt to reflect the transfer of certain transmission facilities to american transmission co . erol - 312 - 000 . comments due by november 22 , 2000 . * wolverine power supply coop . filed to change its rate schedule ferc no . 4 , wholesale service to member distribution coops , to make the debt restructuring charge applicable to all energy delivered to its member coops , to add standby service rates and to remove references to entities that no longer exist . erol - 285 - 000 . comments due by november 21 , 2000 . * wolverine power supply coop . filed an amendment to its oatt to accommodate michigan retail choice and to add delivery scheduling and balancing service as a new service for generators interconnected to its transmission system . erol - 286 - 000 . comments due by november 21 , 2000 . * potomac electric power filed a revised attachment h - 9 to the pjm oatt reducing the other supporting facilities charge for lower voltage deliveries in the pepco zone of pjm to southern maryland electric coop . erol - 336 - 000 . comments due by november 22 , 2000 . * wolf hills energy filed a motion to intervene out of time to support the interconnection and operation agreement between itself and american electric power service corp . and to deny the protest of tva . ero 0 - 3688 - 000 . filed november 6 , 2000 . ( 3 ) complaints * aep and southwest power pool each filed an answer to enron ' s motion for summary disposition regarding enron ' s complaint , in response to aep ' s updated market analysis , that aep service corp . administered the aep oasis and tariff in a manner favoring aep ' s merchant function . er 96 - 2495 - 015 , et . al . filed november 6 , 2000 . * potomac electric power ( pepco ) and the southern parties filed a motion to answer the protest of southern maryland electric coop and panda - brandywine regarding pepco ' s divestiture of generation assets pursuant to restructuring initiatives in maryland and the district of columbia . eco 0 - 141 - 000 and ero 0 - 3727 - 000 . filed november 6 , 2000 . * dunkirk power , huntley power and oswego power filed a motion to answer protests filed by numerous entities regarding ferc ' s jurisdiction over station power . elo 0 - 113 - 000 . filed november 6 , 2000 . * allegheny energy supply and ppl montour filed an answer to protests regarding their purchase of certain jurisdictional facilities . ero 0 - 3727 - 000 and eco 0 - 141 - 000 . filed november 6 , 2000 . ( 4 ) mergers / corporate restructuring ( 5 ) miscellaneous = = other news = = * s & p revises miso outlook to negative - allianceexpressl 10700 . doc - ffl 10300 . pdf",0 +"Subject: restricted stock deferral opportunity - reminder this message is to remind you of your opportunity to defer restricted stock that may be released to you during 2001 into the enron corp . 1994 deferral plan ( or the enron expat . services , inc . deferral plan for expatriates ) . information concerning this opportunity was delivered to you earlier this week . if you want to participate in this program , please complete an election form at your earliest convenience . forms should be returned to my attention ( ebl 614 or via facsimile 713 - 646 - 4858 ) . i will be away from the office next week ; please do not hesitate to call renee ratcliff ( 713 - 345 - 7960 ) or mary mckendree ( 713 - 345 - 8085 ) with any questions . thank you ! kim bolton executive compensation 713 - 853 - 7084",0 +"Subject: fw : fw : question about ernie vince , i left you a voice message that explains a little about the history of this inquiry ( you may want to refer to that first ) . please let me know what you know about this and your opinion . thank you , anthony * 36304 - - - - - original message - - - - - from : presas , gracie sent : monday , march 05 , 2001 5 : 38 pm to : sexton , anthony subject : re : fw : question about ernie anthony , please contact vince kaminsky at ext . 3 - 3848 . i think his group has this type of training set up . ask him is you can be added to their classes . let me know if this works for you . gracie from : anthony sexton / enron @ enronxgate on 03 / 05 / 2001 01 : 31 pm to : gracie s presas / hou / ect @ ect cc : subject : fw : question about ernie hi , gracie . i ' m just following up on my inquiry from last week . have you begun any discussions on statistics classes ? anthony - - - - - original message - - - - - from : sexton , anthony sent : thursday , march 01 , 2001 8 : 28 am to : presas , gracie subject : question about ernie gracie , does enron have any statistics classes ? ones more focused on basic statistics and the lingo ( ex : alpha , beta , delta - gamma , type i & ii error , distributions , kurtosis , etc . ) than the var class ? i have not seen any in the class schedule . in working with traders and studying risk mangement concepts , even our "" experts "" that know almost everything about marketing and modeling risk management products do not seem to have an adequate understanding of basic statistics ! ! ! this lack of knowledge basically makes my job as a fundamentals analyst ( researching the underlying commodity markets for the purpose of maximizing egm / ea / eim profits ) very inefficient . if they already do not exist , i recommend that ernie institute two types of statistics classes ( which mirror the existing finance class selection ) . "" introduction to statistics "" ( perhaps a database approach - including application to excel ? ) and "" applied statistics "" ( which would be a more advanced approach that specifies how enron uses - or should use - statistics in risk management marketing ) . please let me know what you think . cordially , anthony sexton * 36304",0 +"Subject: re : conversation w / andersen vince : forwarding this to you as an fyi - do you suppose you should sit in since you ' ve already met victor ? just a thought . . . regards , amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 09 / 2000 10 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - - richard causey @ enron 08 / 09 / 2000 10 : 30 am to : amy oberg / hou / ees @ ees cc : subject : re : conversation w / andersen i am in the process of setting up a conference call with my contact here as well as victor burke . prelimainary indications are they have not finalized their objectives yet but i will discuss that further with them . i would still strongly suggest rescheduling until everyone can attend and we can fully discuss our involvement . to : richard causey / corp / enron @ enron cc : subject : conversation w / andersen rick : quick follow up - any response yet from your contacts at andersen ? we are holding off cancelling the thurs meeting w / hope they will get back to you by eob wednesday . pls let me know what the status is . thanks and regards , amy oberg richard causey @ enron 08 / 07 / 2000 09 : 07 am to : amy oberg / hou / ees @ ees cc : subject : re : mit / aa new value research lab i have discussed with aa and they are following up . if i am the agenda , i would cancel the meeting and when i hear from aa , i will e mail everyone . i would suggest we not hold a meeting until kean , buy , koenig and i can all come so that we can truly move forward ( or decide not to ) . let me know what you decide . thanks . rick to : richard causey / corp / enron @ enron cc : subject : mit / aa new value research lab rick : just wanted to highlight that you are the agenda for this meeting ( see initial notice , agenda ) . let me know if there ' s anything i can do for you . amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 07 / 2000 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron energy services from : carol moffett 08 / 03 / 2000 04 : 21 pm phone no : 713 - 853 - 6658 phone 888 - 782 - 3518 pager eb 613 b to : richard causey / corp / enron @ enron , marie hejka / corp / enron @ enron , steven j kean / hou / ees @ ees , amy oberg / hou / ees @ ees , mark palmer / corp / enron @ enron , mark ruane / hou / ect @ ect , vince j kaminski / hou / ect @ ect , rick buy / hou / ect @ ect , mark koenig / corp / enron @ enron cc : sharron westbrook / corp / enron @ enron , christie connell / corp / enron @ enron , maureen mcvicker / hou / ees @ ees , laura gutierrez / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , karen k heathman / hou / ect @ ect , joannie williamson / corp / enron @ enron subject : meeting confirmed : mit / aa new value research lab this will confirm the meeting requested below . please note , all invitees are not available , but the confirmed meeting time is the best time for most of the invitees . date : thursday - august 10 time : 11 : 00 a to noon place : conference room 4741 confirmed attendees : rick causey marie hejka steve kean amy oberg mark palmer mark ruane thanks for your help , everyone . - - - - - - - - - - - - - - - - - - - - - - forwarded by carol moffett / hou / ees on 08 / 03 / 2000 04 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron energy services from : carol moffett 08 / 02 / 2000 03 : 44 pm phone no : 713 - 853 - 6658 phone 888 - 782 - 3518 pager eb 613 b to : ginger dernehl / hou / ees @ ees , shirley crenshaw / hou / ect @ ect , karen k heathman / hou / ect @ ect , sharron westbrook / corp / enron @ enron , laura gutierrez / hou / ect @ ect , laura valencia / corp / enron @ enron , patty pennington / enron communications @ enron communications cc : steven j kean / hou / ees @ ees , vince j kaminski / hou / ect @ ect , rick buy / hou / ect @ ect , richard causey / corp / enron @ enron , mark ruane / hou / ect @ ect , mark koenig / corp / enron @ enron , mark palmer / corp / enron @ enron , amy oberg / hou / ees @ ees , marie hejka / corp / enron @ enron subject : meeting request : mit / aa new value research lab good afternoon . i am assisting amy oberg with setting up a meeting among the individuals listed below . would you be so kind as to review their calendars and let me know if they are available during any of the suggested meeting times . meeting topic : mit / aa new value research lab meeting purpose : follow up to discussion from 8 / 1 / 00 ; rick causey to brief group on conversations w / aa regarding "" where they intend to go with this effort "" . attendees : steve kean vince kaminski rick buy rick causey mark ruane mark koenig mark palmer amy oberg marie hejka suggested meeting dates and times : thursday - august 10 anytime between 8 : 00 a and 10 : 00 a thursday - august 10 11 : 00 to noon friday - august 11 anytime between 8 : 00 a and 9 : 30 a friday - august 11 1 : 00 p to 2 : 00 p thank you .",0 +"Subject: uc - berkeley graduate student ashley , this is one resume i got today . i think that it makes sense to invite him for an interview directly with my group . he does not qualify as an analyst candidate . what do you think ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000 04 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm to : vkamins @ enron . com cc : subject : uc - berkeley graduate student dr . vincent kaminski managing director and head of research enron corp . dear dr . kaminski , it was a pleasure talking with you and attending your talk today . i am a graduate student in industrial engg . and operations research working with prof . shmuel oren on topics in financial instrument pricing and design of contracts in deregulated electricity markets . i am also doing research in auction models and computable equilibrium models with applications in electricity market design . i am planning to graduate with a ph . d . in may 2001 and would appreciate hearing about any opportunities in your group at enron . i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal . thanking you , sincerely , rajnish kamat graduate student ieor , uc - berkeley 4135 , etcheverry hall dept . of industrial engineering and operations research university of california at berkeley berkeley , ca , 94710 - cvrkamat . doc",0 +"Subject: christmas baskets kevin : please add the copy center and the graphics people for a tray . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 20 / 2000 11 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont @ enron 11 / 17 / 2000 10 : 07 am to : shirley crenshaw / hou / ect @ ect cc : subject : christmas baskets shirley , may i send a basket or tray to the copy center and to the graphics people for the work they did on the ees seminars ? - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 11 / 17 / 2000 10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore @ ect 11 / 10 / 2000 09 : 32 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , anita dupont / na / enron @ enron cc : subject : christmas baskets here is the final list for christmas baskets for this year with the exception of stinson gibner and vasant shanbhogue . any comments or questions please call x 34710 . thanks kevin moore we still have plenty of time . . . . . . deadline date : december 12 , 2000",0 +"Subject: re : your visit to sydney in july paul , raymond , thanks for your message . sorry i did not get in touch with you earlier . the last few weeks were very hectic . i am starting right now my preparations for the presentation i am going to give at the conference . here are the details of my itinerary ( i shall send you a copy tomorrow ) . i arrive sunday morning and leave saturday morning . the conference takes place on monday and tuesday . on wednesday , i am making a presentation at the workshop on value - at - risk . i would like to stay at the conference for the duration : it ' s a great learning opportunity for me . on thursday and friday , as well as in the evenings ( except for the evening of july 18 ) , i am at you disposal . i would like to take advantage of this trip and learn as much as i can about the australian markets and discuss with you the research agenda . i shall be glad to make several presentation . i can repeat my workshop presentation on value - at - risk as well as cover additional topics . vince paul quilkey @ enron _ development 07 / 04 / 2000 05 : 23 am to : vince j kaminski @ ect cc : subject : your visit to sydney in july vince i support raymond ' s email and would welcome the opportunity to have you give a presentation ( formal or informal ) to the trading group on latest research initiatives in houston . please let us know your schedule so that we do not overly burden you during your visit . look forward to seeing you and catching up over a beer . thnx paul - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on 07 / 05 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - raymond yeow 07 / 04 / 2000 08 : 21 pm to : vince j kaminski @ ect cc : paul quilkey / enron _ development , kirsty hogarth / enron _ development , elliott katz / enron _ development , david gray / enron _ development subject : your visit to sydney in july dear vince , hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in sydney . is risk organising your hotel ? otherwise , kirsty can organise for you , eg harbour view at the regent or convenience to the seminar location at the sheraton ? we would like to make sure that you have all the necessary "" comforts "" of home when you are with us , elliott & david can set up a desk for you in the office / trading room with phone etc so you can use one of our pc to access email or plug in your laptop . please let elliott or david kmow your requirements . how long will you be with us ? is this your first trip to sydney ? there are several of us in the office who would like to take you for a meal ( s ) / show you the sights etc and discuss the latest research findings with you whilst you are in sydney eg var . hear from you soon . raymond 725 pm 4 july",0 +"Subject: re : enron site / mepr 2 fyi , my message to risk . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 28 / 2000 05 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 06 / 05 / 2000 08 : 04 am to : conrad gardner @ enron cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , daniel diamond / hou / ect @ ect subject : re : enron site / mepr 2 conrad , thanks for your message . there are 3 papers enron contributed to the last mepr . there is also another paper on electricity i contributed to the "" red book "" on us power markets , as well as a paper or credit risk management , and a paper on weather derivatives . all these papers included in other risk books were written by enron employees . we would like them included as well , if technically possible . i think that offering other energy related books through our site , in addition to mepr 2 , is fine , but i would leave the decision to dan diamond , who is responsible for the project . vince conrad gardner on 06 / 05 / 2000 07 : 08 : 36 am to : vince . j . kaminski @ enron . com cc : subject : enron site / mepr 2 > date : mon , 05 jun 2000 13 : 02 : 02 > to : vince kaminski > from : conrad gardner > > dear vince > > thanks for the call and email on friday . i will contact masuyuki and follow it from there . > > regarding the enron site , i think it is absolutely fine to put up the two enron chapters ( i ' ll provide pdfs ) , and prevent any customer leakages from your site by the use of "" submit "" buttons . as mentioned , i ' ll offer a 20 % discount on mepr 2 to customers but would you be interested in some of other energy titles ? - please let me know . > > many thanks > > conrad gardner > head of book publishing risk books haymarket house 28 - 29 haymarket london swly 4 rx direct tel : + 44 ( 020 ) 7 484 9750 main tel : + 44 ( 020 ) 7 484 9700 fax : + 44 ( 020 ) 7 484 9758 e - mail : conrad @ risk . co . uk www . riskpublications . com",0 +"Subject: vince : i was in the power modeling presentation the other day and wanted to know if i could get a copy of your presentation . thanks agin for taking the time to go through this important material with us . regards , ben rogers 3 - 7998",0 +"Subject: ibuyit form attached please find the completed form for vince kaminski , managing director , research group . he will be approving all purchases for cost center 107043 . - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect cc : subject : ibuyit form hi shirley there were two shirleys , so sending to both isc help desk",0 +"Subject: informal exploratory interview with enron research group ms . stone : your resume was forwarded to the enron research group and they would like to conduct an informal interview with you at your convenience . please let me know your availability the week of september 11 th . the individuals that would like to interview you are : vince kaminski grant masson kevin kindall tanya tamarchenko they will need approximately 30 minutes each ( 2 - 2 1 / 2 hours ) you may reach me at 713 / 853 - 5290 or by email : shirley . crenshaw @ enron . com i look forward to hearing from you . sincerely , shirley crenshaw administrative coordinator enron research group",0 +"Subject: research allocations to egm hi becky , vince and i came up with these allocations for all of egm : gary hickerson rate & currency trading 10 . 0 % agriculture trading & origination 27 . 5 % jeff shankman weather 20 % insurance 30 % oil 7 . 5 % coal 2 . 5 % freight 2 . 5 % total 100 %",0 +"Subject: re : cheers vince see you there . simon - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : simon turner cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com date : fri 29 september 2000 3 : 28 : pm subject : re : > > simon , > > i shall bring a floppy to paris . > > vince > > > > > > > "" simon turner "" on 09 / 29 / 2000 10 : 13 : 47 am > > please respond to "" simon turner "" > > to : > cc : > subject : re : > > > vince > > this works . > > are you attaching your presentation for next week ? ? > > thanks > > simon > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com > to : simon @ localbloke . freeserve . co . uk > cc : vince . j . kaminski @ enron . com > date : wed 27 september 2000 5 : 04 : pm > > > > test > > > > vince kaminski > > > > > > > > > > > >",0 +"Subject: re : clewlow / strickland derivatives book andy , please , give me the number of copies and i can order on your behalf at 15 % discount . vince andy m l anderson @ ees 02 / 07 / 2001 10 : 18 am to : vince j kaminski / hou / ect @ ect cc : subject : clewlow / strickland derivatives book vince : do you have an internal person i could go through to obtain copies of the derivatives book you showed us at the garp meeting ? i am ordering a few copies for my risk guys . i look forward to talking with you soon , economist to economist . thanks , andy",0 +"Subject: re : spring 2001 schematic mr . kaminski , you will need to speak with david kilgore at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 regarding getting set up in embanet and if you can have access the database from the outside . kathy at 02 : 40 pm 1 / 23 / 01 - 0600 , you wrote : > kathy , > > what is embanet ? do i have access from the outside ? > > > vince kaminski > > > > > kathy spradling on 01 / 11 / 2001 11 : 01 : 48 am > > to : ( recipient list suppressed ) > cc : cmiller @ rice . edu , castro @ rice . edu , spradlin @ rice . edu > subject : spring 2001 schematic > > > spring 2001 faculty , > > the spring 2001 schematic has been posted to embanet . to access the > schematic please open the jgsm area icon on the embanet desktop . next > please open the announcement jgsm icon . you will find the spring 2001 > schematic located under the subject column . please open the document . if > you do not have access to embanet you will need to speak with david kilgore > at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 . > > thanks , > kathy > > kathy m . spradling > mba program coordinator > jesse h . jones graduate school of management > rice university > 6100 main street , ms 531 > houston , texas 77005 - 1892 > phone : ( 713 ) 348 - 3313 > fax : ( 713 ) 348 - 5251 > email : spradlin @ rice . edu > http : / / www . rice . edu / jgs > e - mail : spradlin @ rice . edu > http : / / www . ruf . rice . edu / ~ jgs / kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: another bet vince i here you are running abook on how quickly we can implement convolution var for power and since i am up against a summer deadline for this i felt i should take the other side . so how about i buy you dinner if i get it done ? rgds dp",0 +"Subject: re : associate / analyst super saturday participation - additional request shelly , these are the super saturdays i can help you with : nov 10 dec 1 dec 8 dec 15 i shall be traveling on two other days . one of these trips is related to recruiting at cmu . vince vince enron north america corp . from : shelly jones , recruiting manager @ enron 10 / 24 / 2000 09 : 12 pm sent by : enron announcements @ enron to : ena employees cc : subject : associate / analyst super saturday participation - additional request additional interviewer participation is requested for october 28 & november 4 . also , please note the school / date changes ( in red ) . this change was necessary due to the number of candidates participating in super saturday . if you have a change in your participation as a result of the date change , please contact john harrison , ext . 3 - 7811 for revisions . thank you shelly jones enron managing directors , vice presidents , directors , and managers who utilize the associate / analyst pool as a follow up from a "" save the date "" email regarding your participation in the associate and analyst super saturday process , now is the time to select your dates to attend and participate . below are the dates for super saturday weekends during the upcoming recruiting season . if you are houston - based or if you know you will be in houston on business at the appropriate times please click the link below to volunteer . ( when selecting dates please avoid selecting to interview candidates who attend the schools for which you are a team member . ) associates analysts october 27 - 28 , 2000 november 3 - 4 thunderbird , ut , georgetown , rice rice , ut , baylor , a & m , ou , florida , lsu , uhcl november 10 - 11 , 2000 november , 17 - 18 , 2000 columbia , stern nyu , ucla , darden , cornell penn , uva , vanderbilt , michigan , howard , auc , vanderbilt , michigan uhmain and clear lake , lsu december , 1 - 2 , 2000 december 8 - 9 , 20000 chicago , kellogg , harvard , wharton , mit wellesley , overflow and re - schedules from previous s / s - friday , december 15 , 2000 carnegie mellon yale off - cycle candidates thank you for your support of the associate and analyst programs . shelly jones recruiting manager",0 +"Subject: hiring of wharton tiger teams members for summer associate positions in research vince : just want to confirm our conversation regarding your interest in the wharton tiger teams 1 & 3 and your intent to hire interested members into the summer associate program . you stated that you could take all members into your research group for the summer . kristin gandy is now in the process of obtaining from either you or members of your department the names of the individuals on teams 1 & 3 . some of these individuals may have interviewed with us during the campus process . if they did and were turned down by the team for a summer position , we will not extend offers to those individuals . otherwise , if you are willing to take the additional tiger team members into your group based on the experience you and your staff have had in working with these students , then the associate program will facilitate those offers . at mid summer and the end of the summer , these wharton mbas ' performance will be evaluated and cross - calibrated with other summer associates to determine whether they receive an offer to join the full - time associate program . offers will be given to those summer associate who achieve extremely high performance ratings . as soon as kristin receives the names of these individuals and determines which members did not already interview , she will get out both a verbal and offer to them . as follow - up , jana giovannini , manager of staffing in career development , will staff those that accept our offer from this tiger team list into your group for the summer . should you have any questions or concerns , please feel free to contact me . regards , celeste roberts",0 +"Subject: associate / analyst super saturday participation - additional request additional interviewer participation is requested for october 28 & november 4 . also , please note the school / date changes ( in red ) . this change was necessary due to the number of candidates participating in super saturday . if you have a change in your participation as a result of the date change , please contact john harrison , ext . 3 - 7811 for revisions . thank you shelly jones enron managing directors , vice presidents , directors , and managers who utilize the associate / analyst pool as a follow up from a "" save the date "" email regarding your participation in the associate and analyst super saturday process , now is the time to select your dates to attend and participate . below are the dates for super saturday weekends during the upcoming recruiting season . if you are houston - based or if you know you will be in houston on business at the appropriate times please click the link below to volunteer . ( when selecting dates please avoid selecting to interview candidates who attend the schools for which you are a team member . ) associates analysts october 27 - 28 , 2000 november 3 - 4 thunderbird , ut , georgetown , rice rice , ut , baylor , a & m , ou , florida , lsu , uhcl november 10 - 11 , 2000 november , 17 - 18 , 2000 columbia , stern nyu , ucla , darden , cornell penn , uva , vanderbilt , michigan , howard , auc , vanderbilt , michigan uhmain and clear lake , lsu december , 1 - 2 , 2000 december 8 - 9 , 20000 chicago , kellogg , harvard , wharton , mit wellesley , overflow and re - schedules from previous s / s - friday , december 15 , 2000 carnegie mellon yale off - cycle candidates thank you for your support of the associate and analyst programs . shelly jones recruiting manager",0 +"Subject: ees operational risk per our conversation , here is the model that i have for simon . the notes that i gave you were from some work i did back in september as i was looking for volume numbers . the notes show what drives the final cash flow numbers . briefly , the issue surrounds exactly what is meant by nonmarket and noncredit risk . ideally , this would be anything that effects npv of the deal . however , i think that we should limit ourselves to those things that effect the time and amount of the eam volumes . even here , such a problem set is quite large . if you glance at the spreadsheet model , you will notice that there exists a large number of possible items that effect the eam volumes . if we are to do this rigorously , then it is necessary to tear apart ees ' s business model , and although such an attempt to do so would be noble , the scope of such an excercise may be too large . we need a clear definition of ees operational risk . briefly , from the ees deals that i have looked at , two things drive their profit : a long term bet that power prices will go down , and that we can improve the facility through various enhancements . each of these may be gleaned from the spreadsheet , as well as the assumptions regarding the funding of the facility improvements and so on . 95 % of the savings is assumed to come from power , and 5 % from gas . ( the effeciency gain may not be explicitly given ) . if we have data that show the realized efficiency gains , then it would be simple [ in principle ] to determine a distribution , and hence a distribution of eam volumes , npv ' s , etc . at this time , i understand that rac has determined some of the realized efficiency gains , but my knowledge is quite sketchy . jay hachen may have more info . if i get a chance , i will try to see if i can do a "" proof of concept "" excercise , but i have a late january deadline on something else . another point : even if we are successful in doing this for the spreadsheet model , ees has chosen to book things differently . i do not have a thorough understanding of their it systems , but at least in principle , if we can do this for the spreadsheet model , then we can do it in their it environment ( data are data are data ) . they may book efficiency gains through improvement type , such as gains due to compressors , chillers , boilers , etc . if this is indeed the case , then we need to have distributions for each type of improvement . if we are successful on the spreadsheet and not successful with their it systems , then the other alternative is to build our own reporting system . it would be similar to a database where the recordsets are replaced by excel workbooks . it can be constructed in such a way as to enable us to run simulations and queries , but this would probably take me about five or six weeks . finally , don hawkins does operational audits for enron ' s physical assets . he sends out teams to audit our pipelines and strategic assets . i don ' t think that he does it for ees , but you might want to give him a call anyway . - kevin k . ps : the ees lunch meeting has been moved to wednesdays . jay hachen will know more .",0 +"Subject: rice program in financial engineering dear vince , tony and i are looking forward to meeting with you tomorrow ( thurs . ) at 10 a . m . regarding the rice iniative in financial engineering . attached to this message is our draft plan for the proposed undergraduate program ; i will also bring a copy to the meeting in the morning . see you tomorrow ! best regards , kathy katherine bennett ensor professor and chairperson department of statistics , ms 138 rice university houston , tx 77251 - 1892 ensor @ rice . edu phone : ( 713 ) 527 4687 fax : ( 713 ) 285 5476 - draft - plano 2 . doc",0 +"Subject: storage model back - testing brad , with your success in automation of the testing , we can go ahead to test storage cycles as follows april 95 - march 96 april 96 - march 97 april 97 - march 98 april 98 - march 99 april 99 - march 00 this way we can collect 5 years data for further analysis . zimin",0 +"Subject: california 1 / 17 / 01 pt . ii one of the issues we have been following with respect to the california power crisis concerns the role of prospective broader federal involvement in the issue post - inauguration . in the last two days , we have seen two signals suggesting that the bush administration will not significantly deviate from the "" broker "" role played by the clinton white house : 1 . in his confirmation hearing this morning , treasury secretary - designate o ' neill cautioned that "" it is not clear that us intervention is needed in california "" and that the "" governor must be the first line of defense . "" 2 . a source close to bush economic advisor larry lindsey reported to us yesterday that "" there was little that the federal government could do specifically to help , beyond focusing on national issues ( increased production , transmission capacity etc . ) . "" of course , the bush treasury officials are likely to be more cautious with respect to intervention than the energy team , as was true with the clinton administration . yet lindsey in particular is unlikely to deviate far from the official bush view at this stage . further guidance should be forthcoming with respect to this issue from energy secretary - designate spence abraham ' s testimony tomorrow .",0 +"Subject: move locations sorry , the churn has been turned in as of 4 / 15 / 00 therefore locations are as follows . tricia tlapek - eb 3273 a vince kaminski - eb 3273 b sam smith - eb 3273 c michael sergeev - eb 3274 a jason sokolov - eb 3274 b vacant - eb 3274 c this is where all equipment and items should be labelled . i am so sorry that we could not make changes on short notice . thanks kevin moore",0 +"Subject: website : data _ research _ pub please approve or reject this request . thank you , information risk management ( et ) - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 04 / 28 / 2000 09 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system directory line item pending access processing directory name : website : data _ research _ pub service type : grant expiration date : comments : this is an urgent request . please process asap . security processing processing status : e - mail message : comments / justification : 04 / 28 / 00 emailed vince kaminski for approval general information request : kgme - 4 jlej 2 requested by : kevin g moore / hou / ect phone : 713 / 853 - 4710 requested for : jose marquez employee type : company : 100038 rc # : 0011 priority : high comments / justification : he needs access to the y drive editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 1 2 information risk management information risk management 04 / 28 / 2000 09 : 32 : 58 am 04 / 28 / 2000 09 : 33 : 46 am",0 +"Subject: re : jeff skilling ' s presentation i want to thank all of you for all your help ! alhamd alkhayat enron corp . + 1 ( 713 ) 853 - 0315 this message ( including any attachments ) contains confidential information intended for a specific individual and purpose , and is protected by law . if you are not the intended recipient , you should delete this message and are hereby notified that any disclosure , copying , or distribution of this message , or the taking of any action based on it , is strictly prohibited . - - - - - forwarded by alhamd alkhayat / na / enron on 12 / 14 / 2000 02 : 15 pm - - - - - sent by : "" daron peschel "" 12 / 14 / 2000 01 : 57 pm please respond to "" daron peschel "" to : sherri . sera @ enron . com cc : alhamd . alkhayat @ enron . com subject : re : jeff skilling ' s presentation sherri and alhamd , just wanted to let you know that i heard jeff skilling really impressed chairman greenspan this morning ( i did not attend the meeting . ) thanks for all you help making sure the presentation went off without a hitch . daron _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ reply separator _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ subject : jeff skilling ' s presentation author : sherri . sera @ enron . com at notesmail date : 12 / 12 / 00 10 : 01 am daron , we are not yet finished with jeff ' s presentation , and probably won ' t be completely finished until tomorrow afternoon - just about the time that jeff will leave for dallas . in addition , e - mailing the complete presentation may not be an option due to the size of the file . i ' ve asked hamd to e - mail you want we have right now so that you can test it with your system . we ' ll then send a cd with the entire presentation along with jeff to dallas . i ' ll ask jeff to deliver it to you at the dinner wednesday evening , so perhaps your av people can test it that night . daron , i apologize for any inconvenience this may cause . if you have another idea as to how to handle this situation , we ' re certainly willing to entertain it . thanks , srs",0 +"Subject: amerada hess day rate hedge numbers attached are the historical numbers for the semi - submersibles 4 th and 5 th generation day rates . their price is 155 , 000 / day for the next 4 years . i would think that a floor of $ 100 , 000 would be the place to start jan 1 , 2001 through dec 31 , 2004 . we need to know the call strike that would make it costless . i plan on making some examples discussion purposes to discuss with them on friday of this week . i will update you asap on the balance of day rate prices . let me know what else you will need to prepare the statistical analysis . the numbers include highs and lows ; let me know your ideas on how to address this in the quote . thanks , john 30395",0 +"Subject: your talk on 2 / 7 / 00 ( monday ) ( fwd ) vince : a minor revision of my earlier email shown below . the last line should read ' i will be waiting in my office from 6 : 30 - 6 : 50 for your call . . . ' my office phone is 713 743 4716 . sorry that i have to resend this email . ed - - - - - - - - - - forwarded message - - - - - - - - - - date : thu , 3 feb 2000 08 : 17 : 40 - 0600 ( cst ) from : edward kao to : vince j kaminski subject : your talk on 2 / 7 / 00 ( monday ) dear vince : i would like to send out an annoucement about your talk in my risk management in the energy sector course on february 7 , monday . is it correct that the name of your talk will be "" commodity trading in the energy sector "" . you indicated that you would be using transparencies so we have a projector ready for you . please let me know if there is anything else you need for the talk . please also confirm this at your earliest convenience so that i can get announcement sent out soon . thanks in advance for the talk . we all look forward to meeting you monday . best regards , ed ps . the class meet 7 : 00 - 8 : 20 pm at 117 meclcher hall . as we originally planned , i will be waiting in my office from 6 : 30 - 6 : 50 and greet you at the parking lot ie .",0 +"Subject: resumes charlene , i am sending you as promised the information i have about 3 of our summer interns . i shall fax you this morning two additional resumes i have in hard copy . in the case of paulo rocha we don ' t have a formal resume , just a letter from him with the summary of his skills . thanks for your help . enron desperately needs this talent . vince",0 +"Subject: re : eol clayton , great news . i would like to sit down with you , tom and stinson and review where we are with this project . also , i would like to talk to you about your status ( finalizing the transfer to another group ) . vince clayton vernon @ enron 01 / 18 / 2001 03 : 21 pm to : vasant shanbhogue / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : eol vasant - dave delaney called an hour ago . he needed a statistic from eol that the eol folks couldn ' t give him ( it seems they had a database problem in 1999 ) , and the grapevine had it we had the data . tom barkley was able to give him the data he needed for his presentation , within a matter of 10 minutes or so . clayton",0 +"Subject: re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 vince , welcome to ibuyit , enron ' s integrated procurement through payment solution . your ibuyit security form has been processed . here is your ibuyit eprocurement logon information : user id : po 0503778 password : your date of birth ( format : yyyymmdd - - 19670120 for january 20 , 1967 ) important : when you first log on to ibuyit eprocurement , you will be prompted to change your password . you may use the same password you enter when logging on to other sap - related applications , e . g . , ehronline . should you select a new password , your password in other sap - related applications will automatically reset . you only need one password for your sap user id ( pid ) . ready to launch ibuyit eprocurement ? access it from the ibuyit portal : for step - by - step documentation on ibuyit eprocurement , click here : for help , call the isc call center at 713 - 345 - 4727 . if you have any question regarding this request , please contact sap security . thanks ! from : raul davila / enron @ enronxgate on 04 / 19 / 2001 06 : 02 pm to : sap security @ enron cc : subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 approved - - - - - original message - - - - - from : tow , eva on behalf of sap security sent : thursday , april 19 , 2001 5 : 39 pm to : davila , raul cc : vkamins @ enron . com ; crenshaw , shirley subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 raul , raul , vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security . thanks ! shirley crenshaw @ ect 04 / 19 / 2001 03 : 01 pm to : sapsecurity @ enron . com cc : vince j kaminski / hou / ect @ ect subject : ibuyit form attached please find the completed form for vince kaminski , managing director , research group . he will be approving all purchases for cost center 107043 . > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect cc : subject : ibuyit form hi shirley there were two shirleys , so sending to both > isc help desk ",0 +"Subject: re : shan , it ' s nice to hear from you . congratulations on the new job . ft is my favorite publication i never miss ( and i read a number of different ft publications , including ft energy collection ) . you can contact harry arora ( x 6750 ) here in london who works on finance related e - commerce projects . he may give you some useful comments . i shall be myself very interested in the first issue of your new publication . regards vince shan . millie @ ft . com ( shan millie ) on 08 / 08 / 2000 08 : 50 : 45 am to : vince j kaminski / hou / ect @ ect cc : subject : hullo , vince : i hope you ' re very well . as you can see , i am now working for the ft ' s magazine publishing business ; i have responsibility for what ' s currently termed the expatriate division and i ' ve just passed my statutory probationary period of 3 months . apologies for not contacting you sooner - but i guess you knew you ' d hear from me sooner or later , especially when i need help ! having gotten thru probation , i am set loose upon new projects . . . . . . i ' m investigating several ideas for new magazine product and wondered if you would be able to comment on one of them . very basically , i want to develop a magazine product for the international private investor , specifically o hnwis o owner - managers o results - oriented but intelligent investor with long - term investment goals and a desire to be able to converse with their private bankers and / or brokers on something approaching equal terms the product would be delivered monthly and cater to the developing breed of private international investor who prefers to make informed decisions - for themselves . the product would aim to cover the major asset classes , including the "" wilder shores "" such as hedge funds and emerging markets . i am working on a portal site ( imaginatively entitled ftexpat . com ! ) , nested within ft . com , which will launch in october ; international investment will be a significant channel on the site , and a key distribution / marketing channel for this ( and future ) offering . at this very early stage i am testing out the reaction to the notion of such a product - do you have one ? would you be able to suggest any other contacts who might be willing / able to share their thoughts with me ? i know it ' s not bang in your sphere but i ' m hoping you ' ll be interested enough to share your thoughts with me . if you can give me a few pointers , i ' d be grateful . looking forward to hearing from you , sh ? n 44 - 20 - 7896 - 2310 * please visit the web site of the financial times at : * * http : / / www . ft . com * * * * this e - mail is intended for the use of the addressee only and may * * contain confidential information . if you are not the intended * * recipient , you are hereby notified that any use or dissemination * * of this communication is strictly prohibited . * * if you receive this transmission in error , please notify us * * immediately then delete this e - mail . * * * * * postmaster @ ft . com * ",0 +"Subject: exploratory interview for grant masson ' s support for power trading hi kathy : attached is the resume for lance cunningham , who is a phd candidate from the university of texas . grant masson would like to bring him in for an exploratory interview at his convenience . the position he would be interviewing for is : manager , transmission / power trading support , reporting to grant masson . the interviewees would be : grant masson * vince kaminski * martin lin zimin lu george hopley * bill rust it is essential that the ones marked with an asterik interview him , but it would be great if the others could also . if you need any more information , please let me know . thanks and have a great day ! - enron gm . doc - lcunningham resume . doc",0 +"Subject: re : wicek , wyslalem ci nasza ksiazke razem z kilkoma pracami matematyczno / finansowo / energetycznymi i dwa egzemplarze rynku terminowego , w ktorym od 2000 roku jest dzial poswiecony rynkowi energii ( jego redaktorem jest alek ) . mam nadzieje , ze to cie zainteresuje . ksiazka jest zainteresowany cambridge university press i w tej chwili jest recenzowany draft angielskiej wersji ( mozesz do sciagnac ze strony : http : / / www . im . pwr . wroc . pl / ~ rweron / gene . html ) . angielski jest jeszcze slaby ( tlumaczyla moja studentka ) , ale da sie czytac . w ostatecznej wersji planujemy pare zmian . jakbys mial czas to przegladnij ksiazke , wszelkie uwagi bardzo mile widziane . rafal",0 +"Subject: updated credit support model latest model vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 10 / 10 / 2000 11 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - andy west @ enron 10 / 06 / 2000 02 : 15 pm to : vasant shanbhogue / hou / ect @ ect cc : subject : updated credit support model attached is an updated credit support model that you were working with for jodi coulter . the same sheets - paperco credit and data - are the sheets to key on . please let me know if you have any questions . andy x . 37685",0 +"Subject: visit by professor shijie deng on friday , july 28 , 2000 professor shijie deng , assistant professor , school of industrial and systems engineering , georgia institute of technology will be spending friday , july 28 , 2000 with the research group . he will be doing a presentation from 1 : 00 pm to 2 : 30 pm in conference room 49 c 4 . his field of expertise is : financial asset pricing and real options valuation financial engineering applications in energy commodity markets transmission pricing in electric power systems applications of contract theory in supply chain modeling please plan to attend .",0 +"Subject: new position ( sam smith ) norma , the need for a new position within the research group has evolved along with our expanding responsibilities , and we would like to fill that position with an already on - board employee familiar with same , that person being william ( sam ) smith . the new position created it that for a staff specialist , who would be responsible for technical duties including evaluation and quality control of weather forecasting procedures , design and preparation of the research intelligence intelligence newsletter , operational responsibilities related to morning report assembly , and hurricane season surveillance as well as satellite system supervision . . we would like to make this retroactive to january lst of this year . - - - mike roberts",0 +"Subject: re : follow - up on siam workshop thanks for forwarding peter ' s resume . by copy of this memo i am forwarding peter ' s resume to danny mccarty and phil lowry . danny and phil : please follow - up with vince if you have an interest in meeting with peter . he seems to be a very qualified candidate . vince j kaminski @ ect 04 / 30 / 2001 02 : 28 pm to : stanley horton / corp / enron @ enron , danny mccarty / et & s / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : follow - up on siam workshop i am forwarding for your attention the resume of peter percell who has an extensive experience in modeling physical flows of natural gas in pipeline systems . peter is looking currently for a job . i met him last week at the meeting of the science and industry advance with mathematics society at the university of houston . the application of recent developments in optimization theory and numerical methods can help enron to improve further efficiency of our pipeline system and reduce the consumption of compressor fuel . please , let me know if you interested in introducing peter to executives in your organization . i shall be glad to make arrangements for an interview . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - peter percell on 04 / 30 / 2001 11 : 16 : 58 am to : vincent kaminski cc : subject : follow - up on siam workshop i enjoyed your presentation , and meeting you briefly afterwards , at the siam workshop last friday . i have extensive experience as a technical leader in the design and development of modeling and simulation software products , mostly for the oil and gas pipeline industry . i am looking for a position that can utilize my software development and mathematical skills . getting out of the narrow confines of the pipeline simulation industry would be a plus . please consider whether i might fit in your group . your answer to a question indicated that i have several of the skills you look for . also , please let me know , by email , the names and contact information of other managers within enron who might benefit from having someone with my qualifications in their group . attached are my resume and an addendum covering academic & consulting experience . publications are available on request . i will call you in a couple of days to follow up on this email . thank you for your time . peter percell 10030 doliver drive percell @ swbell . net houston , tx 77042 - 2016 ( 713 ) 532 - 3836 voice & fax - percell , peter resume only . doc - percell , peter a & c exp . doc",0 +"Subject: re : from a previous summer intern dear giuseppe : unfortunately , i am no longer with the associate and analyst recruiting department and will be unable to assist you directly . please contact tracy warner , who is now responsible for recruiting . she will be able to assist you directly . tracy can be contacted at tracy . warner @ enron . com . i would also recommend having vince kaminski contact her as well to ensure that all communications are in order . best regards , celeste roberts giuseppe andrea paleologo @ stanford . edu on 04 / 20 / 2001 01 : 53 : 39 pm please respond to gappy @ stanford . edu sent by : gappy @ stanford . edu to : celeste roberts cc : subject : from a previous summer intern celeste , my name is giuseppe a . paleologo and you amy remember me : i was a summer intern last summer in the research group , and attended the hiring event this year at stanford . in that occasion i had an informal offer from vince kaminski , and the assurance that i would receive a written one in the following two weeks , but since then i have not received any letter from enron . i would like to know if the offer is still valid , and if it has been sent . i am asking because i am in the process of evaluating my offers , and would like to wait for enron before i make my final decision . thanks in advance , giuseppe paleologo - - giuseppe a . paleologo email : gappy @ stanford . edu office phone : ( 650 ) 725 - 0541",0 +"Subject: re : weekly international econ review gwyn , i see no reason why we cannot include the article in monday ' s issue . of course , vince will need to review it as he does for everyone ' s material . i ' m forwarding a copy to him with this message . regarding the software , you can just initiate a security request online and order it . we can put issues online the old way until they set you up with the new stuff . by the way , i ' m going to be gone thursday and friday , so when your new issue is ready on friday , you should send it to elena . i know she will be here at least in the morning . sam gwyn koepke 10 / 17 / 2000 11 : 29 am to : william smith / corp / enron @ enron cc : maureen raymond / hou / ect @ ect subject : re : weekly international econ review sam , this is great , thanks for taking care of that so quickly ! i will check on the software needed and get back to you today . also , maureen and i co - authored a paper on ppp and our thai forecast that might be appropriate for the tech corner . i ' ve attached it below . please advise if we can get this into the tech corner for next week . thanks , gwyn from : william smith 10 / 17 / 2000 08 : 34 am to : gwyn koepke / na / enron @ enron cc : subject : re : weekly international econ review gwyn , i was successful in my efforts to put your new product on the web site ! have a look ! i know elena may want to modify it a bit , but at least it ' s up there . i have a couple of suggestions for your future efforts : get adobe acrobat 4 . 0 , full version ( not just the reader ) - - - this will allow you to publish it in final form from your desk . do you have access to the y : drive ? it ' s a drive mapped off of o : \ research and all of the web pages are there . let me know , and if you don ' t , as long as you have rights to o : \ research , i can come down and map if for you . then , all you have to do is print the new edition to pdf , then save it to the same spot each time , and it ' s automatically online . sam",0 +"Subject: iafe membership a membership renewal form was faxed to you on 11 / 28 / 00 for vince kaminski . we requested a "" full "" membership at the practitioner level for $ 165 . 00 and it was charged to mr . kaminski ' s credit card . would you please verify that you received this form ? thank you . shirley crenshaw administrative coordinator - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 07 / 2000 03 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 12 / 07 / 2000 10 : 40 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : iafe membership shirley , please , renew my membership . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 07 / 2000 10 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - main @ iafe . org on 12 / 05 / 2000 03 : 47 : 45 pm to : cc : subject : iafe membership dear colleague : we are pleased to report that we had a very exciting and productive year with dozens of activities around the world . as we enter our 10 th year of operations , the iafe has additional membership options available to you . please take a moment to look at the attached membership form with the 2001 rate schedule . based on member requests , a premium membership is now being offered that includes the annual conference at a 30 % discount , the financial engineer of the year dinner , plus a subscription to the journal of derivatives ( jod ) . the full membership remains as in previous years . the new regular membership includes all membership benefits except jod . membership is based on the calendar year january 1 - december 31 , 2001 . membership is also available on our secured membership registration form at our website http : / / www . iafe . org / about / join . ihtml . while on our website , please take a moment to visit our calendar listing upcoming events for the new year . if you have any questions please don ' t hesitate to contact me at main @ iafe . org . regards , donna jacobus iafe office manager - 2001 membership application . pdf",0 +"Subject: re : london , new york , houston , financial mathematics june / july 2001 vince : are you just speaking at the one in houston ? vince j kaminski 05 / 01 / 2001 04 : 45 pm to : shirley crenshaw / hou / ect @ ect cc : subject : london , new york , houston , financial mathematics june / july 2001 fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" joanna vidal "" on 05 / 01 / 2001 03 : 43 : 11 pm to : , "" geman helyette "" , , , , , , cc : subject : london , new york , houston , financial mathematics june / july 2001 hello speakers ! ? my name is joanna vidal and i am the coordinator for the financial mathematics training course being in held on the following dates : ? london on june 28 & 29 new york on july 9 & 10 houston on july 16 & 17 ? ? i am in the process of preparing the speaker packs which will include an updated contact information sheet with ? all your details . ? you will receive this pack shortly after you confirm your addresses . ? i will list them below and i ask that you please look it over and make any necessary corrections . ? ? ? my contact details , for your information are : ? joanna vidal events coordinator risk waters group t : ( 212 ) 925 1864 ext . 197 f : ( 212 ) 925 7585 jvidal @ riskwaters . com www . riskwaters . com ? thank you and i look forward to working with you . ? duane seppi carnegie mellon university graduate school of industrial administrations pittsburgh , pa 15213 - 3890 t : 001 412 - 268 - 2298 f : 001 412 - 269 - 8896 ? helyette geman universite de paris dauphine finance department au de ka grand ecole corgy pontois , paris france 95021 t : 00 33 60 - 807 - 4200 ? vincent kaminski enron credit 1400 smith street room ebl 962 houston , tx 77002 - 7361 t : 001 713 - 853 - 3848 f : 001 713 - 646 - 2503 ? peter nance teknecon , inc . 1515 s . capital of texas highway suite 101 austin , tx 78746 t : 001 512 - 732 - 7084 f : 001 512 - 732 - 7099 ? chris harris innogy holdings place windmill hill business park whitehill way swindon , wiltshire uk , 5 n 5 6 pb t : 44 793 387 - 7777 f : 44 793 389 - 7811 ? spyros maragos dynergy , inc . 1000 louisiana street suite 5800 houston , tx 77002 t : 011 713 - 507 - 6589 f : 001 713 - 767 - 5958 ? ehud ronn university of texas at austin department of finance mccombs school of business austin , tx 78712 - 1179 t : 001 512 - 471 - 5853 f : 001 512 - 471 - 5073 ? ? ?",0 +"Subject: mscf speaker series mscf speaker series official invitation ? ? it is with great pleasure and some amount of pride that i announce the next event in the speaker series . next friday we will have the honor to host a conference given by mr . vince kaminski head of research at enron corp . ? ? the ? sixth event is ? next friday ( nov 3 rd ) ! ? from : 11 . 30 - 13 . 30 please attend ! ! ! the next event in the student speaker series is : friday , november 3 , 2000 11 : 30 a . m . to 12 : 30 p . m . fast lab [ image ] vince kaminski enron corp . tentative student speaker series schedule 2000 - 2001 the following is a tentative schedule of the mscf student speaker series for the 2000 - 2001 academic year . all events take place from 11 : 30 a . m . to 12 : 30 p . m . in the fast lab ( gsia 229 ) unless otherwise noted . updates are soon to follow . volatility curve and bond basis august 11 , 2000 david hartney & jerry hanweck vice president , futures and option sales j . p . morgan price and hedging volatility contracts september 1 , 2000 dmitry pugachevsky deutsche bank dmitry pugachesky is a director with otc derivatives research of deutsche bank , where his research is primarily focussed on credit derivatives . prior to joining deutsche bank , dmitry worked for six years with global analytics group of bankers trust . there he developed models for emerging markets , interest rates , and equity derivatives and also participated in actual trading and structuring of interest rate options . he received his phd in applied mathematics from carnegie mellon university specializing in control theory for stochastic processes . he has published several papers on modelling in emerging markets and on valuation for passport options . a measurement framework for bank liquidity risk september 15 , 2000 raymond cote vice president , finrad inc . raymond cote is vice president , financial engineering at finrad inc . , a montreal - based consulting firm offering financial management solutions that combine advisory and systems development services to & corporations and financial institutions . abstract : liquidity risk , as opposed to credit and market risks , has received little attention in professional or academic journals . we argue that analyzing bank liquidity risk can be viewed as a variation of credit risk analysis . after introducing some concepts and definitions , the presentation defines a framework allowing to measure a bank ' s structural liquidity risk . it then shows that combining the framework with modern credit risk measurement tools leads to a liquidity risk var measure . the presentation then offers concluding comments on the integration of the liquidity risk measurement framework within enterprise - wide risk management . the impact of electronic trading on the uses of quantitative research in equity options september 22 , 2000 scott morris hull group , quantitative research department quantitative research in investment management october 6 , 2000 raman srivastava & anna bulkovshteyn assistant vice president , & fixed income , quantitative analysts , putman investments [ image ] tba november 3 , 2000 vince kaminski enron corp . fund management and market efficiency november 10 , 2000 andrea dalton researcher , friess associates ( advisor to the brandywine funds ) . tba november 17 , 2000 jeff keifer & deb aep tutorial on bridge november 24 , 2000 pierre ste - marie & punit rawal mscf students a corporate risk management framework december 8 , 2000 darin aprati & brian moore mcdonald ' s [ image ] math speaker series schedule 2000 - 2001 [ image ] speaker series student committee [ image ] previous speakers ? pierre - philippe ste - marie - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ image ] http : / / pstemarie . homestead . com",0 +"Subject: london status report - research weather effort vince , fyi to give you background for tomorrow ' s telephone conference steve is really a home - run hitter mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 12 / 2001 09 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : stephen bennett @ enron 04 / 12 / 2001 09 : 02 am to : mike a roberts / hou / ect @ ect cc : subject : london status report hi mike , before we meet with vince tomorrow - i thought we should drop you a line and give you an idea as to what ' s been accomplished in the first week as well as some of the challenges and problems we ' ve run into . this way we can make the most effective use of vince ' s time . 1 ) current products and customers in our first 3 days - we established 6 different customer groups - representing approximately 40 traders plus additional fundamentals and analytics folks . the groups are : uk trading , gas fundamentals , crude trading , weather derivatives , continental power , and an internal trader newsletter . we ' ve built the following framework to address these customers - the key deadlines are noted : 0800 : uk trading / weather derivatives / fundamentals : prepare a 1 to 5 day uk specific forecast and assess the 12 z runs of the ecmwf ( and ensembles ) , the avn as well as earthsat ' s 1 - 5 day outlook . the traders are particularly interested in the performance of the ecmwf as it feeds all of their demand models . we prepare a 1 page summary and give an idea as to any particular forecast biases - whether we feel things may come in warmer or colder than the model . we brief the traders and field questions then provide our report to the fundamentals group . * * in the future we would like to be able to gather raw data from the avn and mrf to provide a series of choices which could be input into their demand models or at least be able to give them our "" best pick "" of guidance and how we feel things may deviate from that pick . 1030 am : obtain the uk met 6 - 10 and 1 - 5 day forecasts . provide comment for uk trading . 1200 : uk trading / crude and products / weather derivatives : prepare a full qualitative analysis of oz models ( mrf / nogaps / canadian / ensembles ) . produce a 6 to 10 day europe forecast and make any needed adjustments to the 1 to 5 day forecast . produce the global weather report including a global executive summary ; analysis of teleconnections and their expected impact ; 1 to 5 and 6 to 10 day forecasts compared to earthsat ; a 10 day city forecast table for european cities along with the expected effect on heating demand and finally a "" port status report "" describing weather and port conditions in 11 worldwide ports . update traders ( uk and wx deriv ) on changes or new trends in the oz models . provide a quality assessment of the uk met 6 to 10 and 1 to 5 day forecast for uk trading . 1330 ( mon - wed ) : brief the crude and products groups in london and houston . 1600 : review 12 z avn for any major forecast changes and communicate changes to traders . weekly : produce a weather article for "" critical mass "" - internal trading newsletter . of course between 1000 and 1330 we are looking closely at the us weather for support to you guys in houston . i ' m still writing the daily us executive summary as well as producing a 6 to 10 day us forecast . 2 ) requested projects : * gas fundamentals has asked us to provide weather information for their morning report and website . they would like to be able to gather objective output from as many forecast models as we can get . * weather derivatives has asked for week ahead , month ahead , and seasonal outlooks for temperature and precipitation . they have also asked about creating a tradeable "" nao index "" and developing an in - house model for forecasting nao . * continental power has asked for temperature and precipitation outlooks for power generation and hydro . * gas fundamentals , uk trading , continental power , weather derivatives and crude and products have all asked for a european summer outlook for temperature and precipitation . we expect to have this completed tomorrow . * the research group has asked for assistance in gathering climate data across spain for temperature and precipitation . 3 ) leads to follow up on : * elsa in houston asked us to contact some of the softs traders here and let them know once we were up and running . * contact chris mahoney to determine if we can provide and additional support for crude and products . * follow up on a potential morning breifing for continental power 4 ) challenges : * we ' ve been told that we will be moving locations next week - which might entail corrupting or loosing the software and hardware configurations that have taken almost a week to get fully established . it seems that this office functions on a "" hot desk "" system where people are constantly moving around . this will make it very difficult to stay connected - as well as very difficult for our customers to identify us . * administrative detail take an inordinate amount of time . assembling reports both physical and electronic can take nearly as long as actually preparing the reports ! - - - mike , ok - i think that brings you up to speed . i ' ve been amazed at the amount of feedback we ' ve already gotten and we ' ve only been here 3 days ! on that note i wanted to let you know that i am fully committed to this project . it seems that we will not have a second meteorologist to assist tony by my planned departure date on the 20 th . as such - i can continue in my current role through my planned vacation - keeping me in london until the 27 th - which is my current reservation back to houston . i am also open to remaining in london beyond the 27 th to ensure the success of this project . hopefully this gives you a good idea as to what ' s gone on in the first few days here . we look forward to talking to you later today and with you and vince tomorrow .",0 +"Subject: re : green card norma : you are correct in that sevil and i have spoken about her green card , and before we can proceed with this , we need to transfer her from the fl visa to an hib visa , which we will do later this year . sevil : please contact me approx . june or july so that we can start the hib process . thanks margaret from : norma villarreal / enron @ enronxgate on 03 / 08 / 2001 06 : 31 pm to : sevil yaman / corp / enron @ enron , margaret daffin / hou / ect @ ect cc : norma villarreal / hou / ect @ enron , vince j kaminski / hou / ect @ ect subject : re : green card sevil , i believe you and margret daffin have spoken about the next steps for your green card . you will need to start working on you hib at the begining of october 2001 . if there is any confusion on my part please let me know . norma villarreal x 31545 below is dicussion between margret daffin and sevil in an e : mail january 26 , 2001 : "" sevil : first of all we have to get you an hib visa before we can work on getting you the green card . after you get your opt , contact me sometime in the summer and i will start working on your hib visa which we will obtain in approx . october , 2001 . we cannot start the green card process when you are still on an fl visa - you have to be on an hib visa . there is no rush - you will have six years on the hib visa - plenty of time in which to get the green card . "" this was in reference to her note to me , as follows : "" i think i ' ll have time approximately until the end of 2002 by using cpt and opt . this makes almost two years . if we can start green card process now , do you think that i would get it before i need hl . in every case , can ' t we start green card before i get hl ? because i don ' t want to waste these two years given the fact that green card process is a long process . "" - - - - - original message - - - - - from : yaman , sevil sent : thursday , march 08 , 2001 3 : 59 pm to : daffin , margaret cc : norma villarreal / hou / ect @ enron subject : green card i haven ' t heard back from any of you regarding my immigration status . could you please get back to me with the information about the initialization of my green card process ? thank you . sevil yaman eb 1943 x 58083",0 +"Subject: hi amitava , as we discussed this morning , i have created the attached spreadsheet for our "" to dos "" for the the credit guys . please take a look at it to make sure it is okay , make any changes , etc . in the mean time i will work on the data vendor research , order eviews , etc . . . . . . thanks , iris",0 +"Subject: workshop dear vince , i would be delighted if you agreed to share with me a one - day workshop before a major icbi conference in berlin , on june 19 . the topics would be similar ; we may add real options . could you answer me before tuesday ? kind regards helyette",0 +"Subject: follow up to last week vince - appreciate you taking the time to dicuss some of our ongoing quantitative challenges . just wanted to confirm with you the next steps we agreed to : research to develop a working prototype of a private firm model by aug . 2001 this effort will include evaluating existing private firm models houston research to allocate a full time resource , who is willing to spend a significant amount of time in london ( at least initially ) to kick off the effort please let me know if i have missed something . thanks bryan",0 +"Subject: post visit - enron vince and christie : again , many thanks for inviting and hosting the tiger team for an on - site visit . it was a wonderful opportunity to meet and attend the very informative briefings from the many senior level contacts you provided to learn more about enron overall . it was enlightening and exciting to learn so much about enron . what a great company ! the trip got rave reviews from the students . you were delightful and most accommodating hosts . as for the project , i am in the process of confirming dates and locations for the weekly thursday ( 4 : 00 - 6 : 00 pm est ) videoconferences with enron and will copy you on the email to the students . i know they are anxious to begin to narrow the scope as soon as possible so that can begin the research and analysis of their particular projects . thank you for your time and support of the project . sincerely , donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: re : a visit dear mr . fujita : thank you for you interest in enron . i shall be honored if you visit enron and i shall invite other employees of the company to the meeting . please , call my assistant , shirley crenshaw ( 713 853 5290 ) to discuss the exact time of your visit . she will be trying to reach you from our end . the copy right for the book belongs to the risk magazine . i shall give you the contact at the company with whom you can discuss the japanese version issues . sincerely , vince kaminski masayuki fujita on 03 / 31 / 2000 08 : 36 : 00 am to : vkamins @ enron . com cc : eugenio perez subject : a visit professor vincent kaminski vice president of research enron corp . dear professor kaminski i , masayuki fujita was the only japanese attendee of the energy derivatives seminar in houston last december and a member of japanese consultation firm : mitsubishi research institute , inc . i would be very honored if you can meet with me 17 or 18 april after attending energy trading summit in 12 th - 14 th . as you know , japanese electricity trading is on the way of deregulation beneficial to the consumers from a long stage of the nine major companies ' regional monopoly . we are giving a hand to help the ministry and industry to find the right course of them . i and my colleague yamada , who will attend risk publications monte calro seminar in four seasons hotel , would like to visit you and your company for studying the sophisticated risk management at enron . in return , we may give you the information about recent institutional progress and major electricity companies response in japan . we are now personally translating your book "" managing energy price risk "" second edition and wondering if you have not given the right to publish in japanese and nay give us the chance to help you introduce modern technology to manage energy risk in the japanese energy industry . i do not hope japanese english power prevent me to pass my sincerity to you and i can visit you soon . best regards , masayuki fujita principal financial engineer financial technologies section mitsubishi research institute , inc . 3 - 6 otemachi 2 - chome , chiyoda - ku tokyo 100 - 8141 japan tel + 81 - 3 - 3277 - 0582 fax + 81 - 3 - 3277 - 0521",0 +"Subject: approval for reviewer shanbhogue , vasant has suggested reviewers and submitted them for your approval . your may review / modify this list of reviewers by logging on to pep at http : / / pep . corp . enron . com and going to supervisor services . please remember , no feedback can be completed on shanbhogue , vasant until you have approved the list .",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . please note that there is only two days remaining to complete feedback in the system you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 carson , margaret m james d steffes may 26 , 2000 carson , richard l richard b buy may 22 , 2000 crenshaw , shirley j wincenty j . kaminski may 24 , 2000 ganjoo , shalesh peyton s gibner jun 15 , 2000 ghosh , soma timothy davies may 31 , 2000 kaminski , wincenty j . david w delainey jun 05 , 2000 overdyke , jere c . david w delainey jun 12 , 2000 peyton , john a randal t maffett jun 05 , 2000 thuraisingham , ravi vasant shanbhogue may 30 , 2000 vernon , clayton j vasant shanbhogue may 26 , 2000 yuan , ding richard l carson jun 02 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: a visit professor vincent kaminski vice president of research enron corp . dear professor kaminski i , masayuki fujita was the only japanese attendee of the energy derivatives seminar in houston last december and a member of japanese consultation firm : mitsubishi research institute , inc . i would be very honored if you can meet with me 17 or 18 april after attending energy trading summit in 12 th - 14 th . as you know , japanese electricity trading is on the way of deregulation beneficial to the consumers from a long stage of the nine major companies ' regional monopoly . we are giving a hand to help the ministry and industry to find the right course of them . i and my colleague yamada , who will attend risk publications monte calro seminar in four seasons hotel , would like to visit you and your company for studying the sophisticated risk management at enron . in return , we may give you the information about recent institutional progress and major electricity companies response in japan . we are now personally translating your book "" managing energy price risk "" second edition and wondering if you have not given the right to publish in japanese and nay give us the chance to help you introduce modern technology to manage energy risk in the japanese energy industry . i do not hope japanese english power prevent me to pass my sincerity to you and i can visit you soon . best regards , masayuki fujita principal financial engineer financial technologies section mitsubishi research institute , inc . 3 - 6 otemachi 2 - chome , chiyoda - ku tokyo 100 - 8141 japan tel + 81 - 3 - 3277 - 0582 fax + 81 - 3 - 3277 - 0521",0 +"Subject: rice / enron finance seminar series rice / enron finance seminar series participants : we are getting ready to kick off the 2000 / 2001 enron finance seminar series at rice university . you can find the current schedule at http : / / www . ruf . rice . edu / ~ jgsfss / . note that this is a new web address . for your convenience , here are the dates and speakers lined up so far : sept 22 jeff pontiff , u . of washington sept 29 len mirman , u . of virginia oct 6 charles lee , cornell oct 13 george allayannis , darden oct 20 william goetzmann , yale nov 17 yacine ait - sahalia , princeton ( joint seminar with rice economics ) mar 9 paul schultz , notre dame apr 27 luigi zingales , u . of chicago lined up for the spring but date not yet scheduled : tim bollerslev , duke university matthew richardson , new york university as changes are made to the schedule , i will notify the distribution list . in addition , as we have done in the past , we will post the abstract and a downloadable version of the paper ( if available ) to the website a week or two before the seminar . the website will also provide a link to the speaker ' s homepage so you can access his or her biographical information . if the paper is not available at the website , i will send a hardcopy to interested jones school faculty , to felecia jones ( economics ) , latha ramchand ( university of houston ) , and vince kaminski ( enron ) . i will e - mail an announcement before each seminar , reminding you of the seminar date , time , and location . the distribution list will include everyone that receives this e - mail . please contact me at ostdiek @ rice . edu if you would like to be deleted from the mailing list or if you know of someone who should be added ( new phd students , new faculty , etc . ) . bbo barbara ostdiek assistant professor of finance jones graduate school of management rice university 6100 main street - ms 531 houston , tx 77005 - 1892 713 - 348 - 5384 ( voice ) 713 - 348 - 5251 ( fax ) ostdiek @ rice . edu www . ruf . rice . edu / ~ ostdiek /",0 +"Subject: hedging vince : the attached article confirms that although a few relatively progressive e & p ( and mining ) companies are beginning to absorb some of the benefits of hedging , they still find the subject very slippery . regards , - cfomagazineaprol . doc",0 +"Subject: re : lsu visit ( resume ) datren , i am forwarding your resume to our analyst / associate program . i talked to them about my needs for the summer and i don ' t see any problem . they should contact you shortly . vince kaminski datren williams on 02 / 05 / 2000 03 : 46 : 43 pm to : vince j kaminski / hou / ect @ ect cc : subject : lsu visit ( resume ) mr . kaminski , it was a pleasure and honor to have lunch with you . i also enjoyed your presentation in our graduate class . i hope you enjoyed your visit to baton rouge . come back to visit us sometime ! ! attached is my resume as you suggested . thank you for your interest in lsu and me . sincerely , datren l . williams - resume . doc",0 +"Subject: re : energy derivative courses fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 10 / 2000 07 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 03 / 10 / 2000 07 : 06 am to : lacima @ enron cc : subject : re : energy derivative courses hi julie : here is the information you requested : name : vince kaminski title : managing director and head of research company : enron corp . address : 1400 smith street - ebl 962 houston , tx 77002 telephone : ( 713 ) 853 - 3848 ( vince ) - ( 713 ) 853 - 5290 ( shirley ) fax : ( 713 ) 646 - 2503 if you need anything else , please let me know . thanks and have a great day ! shirley administrative coordinator enron corp . research lacima @ compuserve . com > on 03 / 09 / 2000 04 : 09 : 20 pm to : enron cc : subject : energy derivative courses dear shriley , thank you for registering vince kaminski for the energy courses to be held in houston , 29 - 31 march . to complete the registration , could you please provide and confirm the following details : name : vince kaminski position : company : enron corporate research address : phone : 713 / 853 - 5290 fax : we will invoice you for the course fees , and upon payment , we will forward the pre - course reading material via email . the course will be held at the hyatt in downtown houston . please contact me if you require additional information . sincerely , julie brennan lacima consultants - - - - - - - - - - - - - forwarded message - - - - - - - - - - - - - - - - - from : "" shirley crenshaw "" , internet : shirley . crenshaw @ enron . com to : [ unknown ] , chris _ strickland date : 3 / 8 / 100 5 : 20 pm re : energy derivative courses good afternoon professor strickland : please register vince kaminski for both the energy derivatives : pricing and risk management course and the v @ r course , scheduled for march 29 , 30 and 31 st . please forward method of payment preferred . thank you very much . shirley crenshaw administrative coordinator enron corp . research 713 / 853 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 08 / 2000 04 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 08 / 2000 10 : 02 am to : shirley crenshaw / hou / ect @ ect cc : subject : energy derivative courses shirley , please , enroll me in this course . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2000 10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - chris strickland on 03 / 07 / 2000 12 : 20 : 40 pm to : vince j kaminski / hou / ect @ ect , grant masson cc : subject : energy derivative courses dear vince / grant , it was good to meet and talk with you both this morning - very interesting . here are the details of the course ( actually there are two seperate courses , one on var ) that i promised you . i hope to see you both again later in the month . best regards . chris . course 1 : energy derivatives : pricing and risk management - course leaders : dr les clewlow and dr chris strickland houston : 29 - 30 march 2000 london : 3 - 4 april 2000 fee : stg 1950 / usd 2950 this is an intermediate course aimed at the energy professional who is familiar with energy derivative products but who requires the mathematical foundations of derivative pricing and an understanding of the pricing and risk management of energy derivatives . this course assumes that participants are familiar with standard basic option pricing theory ( the black - scholes formula , monte carlo simulation , and the use of binomial trees for option pricing ) . the format for the course will follow our usual highly practical and successful style of alternate sessions of lectures and excel based computer workshops . to facilitate intensive interaction , the course will be limited to a maximum of 15 participants so early booking is advisable . the excel based computer workshops deal with oil and gas as well as electricity derivatives and contain detailed calculations for pricing and risk management . at the end of the 2 days , participants leave with a diskette containing answers to all the workshops as well as valuable code for pricing and simulation . registration fee includes : pre - course reading , course materials , copies of relevant research materials , diskette with fully worked solutions to computer workshops , lunch and refreshments . additionally , each attendee will receive a free copy of clewlow and strickland ' s forthcoming book "" energy derivatives : pricing and risk management "" which includes valuable contributions from enron ' s vince kaminski and grant masson . upon registration , participants will be sent a pack containing relevant pre - course reading . course outline day 1 , am : introduction to energy derivatives modelling energy derivatives - structures and applications fundamentals of modeling and pricing analysing energy data spot price behaviour building forward curves - assessing available models the relationship between the spot price and forward curve dynamics workshop : analysing the properties of energy data - mean reversion , volatility structures , jumps day 1 , pm : spot price models and pricing by simulation and trees review of spot price models the pros and cons of spot price models pricing standard options , swaptions , caps , floors , and collars simulation for spot price models pricing exotic options ( barriers , lookbacks , asians , etc . ) building and using trees for energy derivatives building trees consistent with the forward curve pricing options in trees workshop : using simulation and trinomial trees to price energy derivatives day 2 , am : forward curve based models forward curve dynamics and forward curve models the relationship to spot price dynamics multi - factor forward curve models volatility function interpretation and estimation pricing standard energy options pricing energy swaptions pricing energy exotics using simulation workshop : using simulation to implement multi - factor models and price energy options day 2 , pm : risk management of energy derivatives energy market risk and hedging computing hedge sensitivities determining the hedge instruments hedging a energy derivatives book value - at - risk in energy markets - the pros and cons of the approaches credit risk in energy markets - issues and models workshop : hedging an energy portfolio please feel free to e - mail us to register for this course and we will contact you regarding payment . course 2 : var for energy markets course leaders : dr les clewlow and dr chris strickland houston : 31 march 2000 london : 5 april 2000 fee : stg 950 / usd 1950 this is an intermediate course aimed at the energy professional who is familiar with energy derivative products but who requires an understanding of the theory and calculation of value at risk for energy derivative portfolios . the format for the course will follow our usual highly practical and successful style of alternate sessions of lectures and excel based computer workshops . to facilitate intensive interaction the course will be limited to a maximum of 15 participants so early booking is advisable . the excel based computer workshops deal with oil and gas as well as electricity derivatives . at the end of the course participants leave with a diskette containing answers to all the workshops as well as valuable code for pricing and var calculations . registration fee includes : pre - course reading , course materials , copies of relevant research materials , diskette with fully worked solutions to computer workshops , lunch and refreshments . additionally , each attendee will receive a free copy of clewlow and strickland ' s forthcoming book "" energy derivatives : pricing and risk management "" . upon registration , participants will be sent a pack containing relevant pre - course reading . course outline day 1 , am : understanding the var methodologies and issues what is var ? uses of var types of var methodologies implications of applying the riskmetrics assumptions in energy markets delta var , historical simulation linear and non linear instruments workshop : applying simple var methodologies in the energy market day 1 , pm : calculation of energy portfolio var using simulation modelling the energy forward curve - single and multi - factor modelling the joint behaviour of different energies simultaneously calculation of covariances and correlations incorporating jumps detailed example var calculation for an energy portfolio workshop : simulating energy forward curves and calculation of var for an energy portfolio . dr . les clewlow and dr chris strickland hold associate research positions at both the school of finance and economics , university of technology , sydney and the financial options research centre , university of warwick , uk . together they have over 20 years combined experience in the financial and energy derivative markets and have published many articles in academic and trade journals . they are the authors of the book "" implementing derivatives models "" ( wiley , 1998 ) and editors of "" exotic options : the state of the art "" ( itp , 1998 ) . their forthcoming book , "" energy derivatives : pricing and risk management , "" is due to be published during the second quarter 2000 . currently , their interests are concentrated in the energy derivatives area , where they have developed a wide range of pricing tools for electricity options and other energy derivatives . - - - - - - - - - - - - - - - - - - - - - - - internet header - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - sender : shirley . crenshaw @ enron . com received : from mailman . enron . com ( mailman . enron . com [ 192 . 152 . 140 . 66 ] ) by spamgaaa . compuserve . com ( 8 . 9 . 3 / 8 . 9 . 3 / sun - 1 . 9 ) with esmtp id raal 8057 for ; wed , 8 mar 2000 17 : 20 : 18 - 0500 ( est ) received : from dservl . ect . enron . com ( dservl . ect . enron . com [ 172 . 16 . 1 . 37 ] ) by mailman . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / corp - 1 . 03 ) with esmtp id waal 9791 for ; wed , 8 mar 2000 22 : 19 : 39 gmt received : from notes . ect . enron . com ( notes . ect . enron . com [ 172 . 16 . 4 . 33 ] ) by dservl . ect . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with smtp id qaa 23887 for ; wed , 8 mar 2000 16 : 20 : 16 - 0600 ( cst ) received : by notes . ect . enron . com ( lotus smtp mta v 4 . 6 . 5 ( 863 . 2 5 - 20 - 1999 ) ) id 8625689 c . 007 ab 2 ce ; wed , 8 mar 2000 16 : 20 : 11 - 0600 x - lotus - fromdomain : ect from : "" shirley crenshaw "" to : chris _ strickland @ compuserve . com message - id : date : wed , 8 mar 2000 16 : 20 : 09 - 0600 subject : energy derivative courses mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii content - disposition : inline",0 +"Subject: re : status steve , welcome back . let ' s have coffee asap and review all the projects under way . vince from : stephen stock / enron @ enronxgate on 03 / 01 / 2001 09 : 40 am to : vince j kaminski / hou / ect @ ect cc : subject : status hi vince , winston is telling me that he has started a serious of presentations to certain members of your group to help everyone better understand the various components that have been documented . how is that going from your perspective ? . . . . . . are your people getting anything out of it ? also , the var documentation was completed last week , and i ' ve just asked for a full printed copy of it to be created mand given to your department . i ' ve just engaged a small team to document the credit reserve model as a final piece and then we are done with the core documentation . regards steve",0 +"Subject: re : dash request david , thanks . i cc you on my message to john sherriff . please , let me know what you think about my comments . vince david gorte 05 / 15 / 2000 10 : 58 am to : vince j kaminski / hou / ect @ ect cc : subject : re : dash request vince , i ' ll send you the dash that was done previously for the used lng tanker , the mystic lady ( now renamed as the hoegh galleon ) . the analysis used in this transaction was not detailed due the short time - frame we had to analyze this transaction as well as to enron ' s right to terminate this charter for convenience . we are presently working on the analysis for a second , new - build lng tanker . when this analysis has progressed far enough that we have a draft dash , i will forward it to you ( this may be later this week ) . regards , dave",0 +"Subject: luncheon at cera roundtable in houston cambridge energy research associates ( cera ) is pleased that you will be joining us on wednesday , november 1 , 2000 for our roundtable sessions at the four seasons hotel ? in houston , texas . ? during the roundtable day , our luncheon in between sessions will feature a special presentation from cera ' s latin america energy expert , sondra scott , speaking about the future of mexico ' s energy industry . as a participant in cera ' s roundtables on november 1 , you are already registered for this luncheon . ? we look forward to your participation . sincerely , alberto bullrich ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? lauren laidlaw ? ? ? ? ? ? ? ? business development ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? associate * * special update on "" brazil : market rules and power plays "" * * our multiclient study , "" brazil : market rules and power plays "" is now being completed . ? this study is a powerful tool to help evaluate current and future strategies , test investment decisions , manage uncertainty , and capture opportunities in this exciting power market . it will serve as both a blueprint for your immediate business planning needs and a guide for monitoring and enhancing your strategic planning for near - and long - term developments . ? for more information on this study , please visit our website at http : / / eprofile . cera . com / offerings / mcs / brazpow /",0 +"Subject: re : risk report on "" guide to electricxity hedging "" and request fo r gu est access to enrononline ed , louise must be very busy . i sent her another message regarding your request . i shall call her if there is no reply from her within 3 days . please , let me know . vince ekrapels on 02 / 04 / 2000 01 : 58 : 59 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : risk report on "" guide to electricxity hedging "" and request fo r gu est access to enrononline dear vince , i have not heard from louise and assume i cannot access enrononline . as a result , i have written what i can discern in the attached draft chapter for the risk guide to electricity hedging . could you review the enrononline section and let me know if i have any factual errors ? obviously , i welcome any other comments you might have . don ' t warry about any textual problems - - me editors will catch those . english is , after all , my thrid language ( he said , defensively ) . sorry i couldn ' t gain access . enrononline looks interesting and the stock market seems to be giving you a strong pat on the back . well done . thanks for your help . ed krapels - - - - - original message - - - - - from : vince j kaminski [ mailto : vkamins @ ect . enron . com ] sent : tuesday , january 18 , 2000 2 : 44 pm to : ekrapels cc : vince j kaminski subject : re : risk report on "" guide to electricxity hedging "" and request for gu est access to enrononline ed , i sent a message to louise kitchen who runs the enrononline effort . she should be getting back to you shortly . vince ekrapels on 01 / 18 / 2000 12 : 00 : 12 pm to : vince j kaminski / hou / ect @ ect cc : subject : risk report on "" guide to electricxity hedging "" and request for gu est access to enrononline dear vince , greetings from boston , where we ' re doing all we can to help keep the price of gas high . as i may have told you earlier , i ' m writing a "" guide to electricity hedging "" for risk publications similar to the report on oil . i had planned to write a significant section on enrononline , and in the midst of my research on the topic was denied access by enron ' s gatekeeper . can you help get me in ? as always , the best from here . ed krapels - - - - - original message - - - - - from : donna greif [ mailto : dcorrig @ ect . enron . com ] sent : tuesday , january 18 , 2000 12 : 37 pm to : ekrapels @ esaibos . com subject : request for guest access dear mr . krapels : thank you for requesting guest access to enrononline . unfortunately , we are unable to give you quest access at this time . enrononline is exclusively for those companies who can transact wholesale energy commodities and related products . in addition , you had indicated within the comments section of your email that you are preparing a "" guide to electricity hedging "" for risk publications . i have forwarded your inquiry to our public relations department along with your contact information . should you not hear back from anyone within a reasonable amount of time , please feel free to contact our call center at 713 853 - help ( 4357 ) . sincerely , donna corrigan greif enrononline help desk 713 / 853 - 9517 - attl . htm",0 +"Subject: sevile norma , i would like to proceed on two fronts with sevile ( both hl visa and the green card . i shall rather work hard to keep my employees happy here than try to attach them to the job through immigration arrangements . they can see through such arrangements and it de - motivates them . vince",0 +"Subject: re : good morning that ' s great . john p . s . bob parrino told me you were at ut last week . we academics really appreciate your willingness to share your experiences with us and our students . at 11 : 40 am 10 / 18 / 00 - 0500 , you wrote : > > john , > > i shall see christie tomorrow and i shall talk to her about > the project . > > friday , feb 23 works for me . > > vince > > > > > > "" john d . martin "" on 10 / 18 / 2000 10 : 00 : 57 am > > to : vkamins @ enron . com > cc : > subject : good morning > > > vince , > > just an update for you and a question . first , i have talked to christie > and corresponded via e - mail . we don ' t have dates to talk to lay , skilling > and fastow as yet but christie is working on it . i will prompt her again > next week . > > the second item of business is a question . i want to see if we can move > our meeting in spring ( business education and the new economy workshop ) > back a week to friday february 23 rd . one of the attendees has a conference > he wants to attend on march 2 nd . let me know asap if the 23 rd works for > you . i have committments from a number of folks for the workshop and i > think it will be great fun and a wonderful learning experience for us all . > > john > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : thank you dr . kaminski , i can stop by any thursday or friday to meet grant . i think that will be great for me to understand better what you are doing in your group and i will be doing this summer . could you let me know which day would work for you , please ? sevil yaman department of economics university of houston houston , tx 77204 - 5882 ( 713 ) 743 - 3814 / 3817 on thu , 24 feb 2000 vince . j . kaminski @ enron . com wrote : > > sevil . > > we are looking forward to having you here . > if you want , you can stop by one day and i shall introduce you > to grant masson with whom you will be working this summer . > > vince > > > > > > sevil yaman on 02 / 23 / 2000 10 : 09 : 30 am > > to : vkamins @ enron . com > cc : > subject : thank you > > > > hi dr . kaminski , > > yesterday , i learned from shannon rogers at the associate - analyst program > that i was offered a summer associate / internship position in your group . i > am already very excited about this position and look forward to working in > your group . many thanks for your consideration . > > > sevil yaman > department of economics > university of houston > houston , tx 77204 - 5882 > ( 713 ) 743 - 3814 / 3817 > > > > > > >",0 +"Subject: re : 2001 headcount information dawn : here it is ! dawn derr @ enron 07 / 07 / 2000 10 : 45 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : 2001 headcount information shirley , get it to me as soon as you can . thanks . dawn shirley crenshaw @ ect 07 / 07 / 2000 09 : 11 am to : dawn derr / corp / enron @ enron cc : subject : re : 2001 headcount information dawn : i apologize , i have not been able to pin vince down . however , he did take it with him this morning ( he will be in prc meetings all day . ) and i told him \ you needed it yesterday . i hope it is not too late . let me know . thanks shirley dawn derr @ enron 07 / 05 / 2000 04 : 09 pm to : shirley crenshaw / hou / ect @ ect cc : subject : 2001 headcount information shirley , i need the headcount information for vince ' s group no later than thursday , july 6 . let me know if this is a problem . dawn",0 +"Subject: congratulations ! vince - nice job , dr . managing director hey , is "" constrained technical "" anything like "" constrained optimization "" ? : ) clayton",0 +"Subject: financial mathematics grad from u of c vince and ravi , below is a message from the student whose resume i forwarded to you earlier this week . vince , i suspect he may be best suited for your group , but i don ' t know what your current needs are . unfortunately , i ' m leaving enron and my last day is friday of this week , so i won ' t be around to help this guy through the process or host him when he is here . can either of you suggest someone i can ask to handle this for you if you ' re interested in him ? thanks . regards , laura - - - - - original message - - - - - from : "" laura howenstine "" @ enron e + 40 enron @ enron . com ] sent : wednesday , february 28 , 2001 3 : 32 pm to : howenstine , laura subject : fwd : > from : "" kodjo adovor "" > to : > date : tue , 27 feb 2001 22 : 27 : 01 - 0600 > > dear laura , > i will be in texas ( close to houston ) for spring break between march 17 and > march 25 . i was wondering if vince and ravi will be interested in an > informational interview on one of those days during lunch or something like > that . i can just come in and talk to them about what they do and take a look > at the work environment . thanks . > > regards , > > kodjo adovor > the university of chicago > financial mathematics > get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: re : congratulations right back at you . . . . . great job",0 +"Subject: re : storage meeting ladies and gentlemen , stinson just pointed out that i forgot to mention that the meeting is scheduled for tomorrow ( 10 th of march 2000 ) between 2 : 30 pm and 4 : 30 pm . it may seem like a very short notice ; however , we ( mark , mary , kara , mike , virawan and myself ) had initially set this time and date last week . in the future i will make sure that everyone is notified early . sorry for any inconvenience this may have caused . thank you . shalesh ganjoo",0 +"Subject: schedule vince , my schedule for the risk 2001 conference in houston is : arrive sunday 4 / 13 9 pm . ? staying at the houstonian depart tuesday 4 / 15 5 : 30 pm . hopefully , we can get together . thanks , aram ? ( cell phone 503 - 701 - 6692 )",0 +"Subject: re : kwi user group vince yes please go ahead . david - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 24 april 2001 23 : 35 to : djw @ kwi . com subject : re : kwi user group david , i can ask our ceo john sherriff . please , let me know by 10 : 00 a . m . central time , wednesday . vince david warwick on 04 / 24 / 2001 05 : 24 : 53 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : kwi user group vince sorry to hear you cannot make it . . . you would obviously have been the big catch ! ! in terms of a london based replacement , who did you have in mind and what sort of subject could they cover ? david - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 24 april 2001 23 : 22 to : djw @ kwi . com cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com subject : re : kwi user group david , i regret to inform you i am unable to attend the conference due to previous commitments . would you consider a speakers form our london office ? vince david warwick on 04 / 24 / 2001 09 : 47 : 31 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : kwi user group vince any further thoughts on this ? david - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 13 april 2001 21 : 44 to : djw @ kwi . com cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com subject : re : kwi user group david , thanks for the invitation . i shall check my schedule on monday and will get back to you regarding the conference . i hope you will a very happy easter . vince david warwick on 04 / 12 / 2001 04 : 04 : 32 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : kwi user group dear vince please may i reintroduce myself . we met last year at the sydney eprm conference which my company kwi sponsored . i chaired the session at which you spoke . as you may remember , my company , kwi are one of the world ' s leading provider of systems ( kw 3000 ) and consultancy for energy , trading and risk management . we have over 60 clients worldwide including many of the world ' s leading energy companies ( not enron unfortunately ) : north america - tva - ontario power - cinergy - bonneville power europe - enel - atel - electrabel - edf nordic - vattenfall - fortum - sydkraft - statkraft - birka energi - norsk hydro each year we stage a "" kwi users forum "" - a 2 - day event attended by leading trading and risk staff from our clients . last year there were about 100 delegates . the agenda primarily focusses on issues surrounding risk management for the energy sector . the agenda comprises keynote presentations on burning risk issues from industry leading energy speakers and practical workshops focussed around using our software . this years event is at a luxury hotel in the wonderful spanish city of barcelona and runs from the evening of sunday september 9 th to tuesday september 11 th . the main conference dinner is on the monday evening and is always a memorable event . this year it is in a leading barcelona restaurant preceded by a bus tour of the city with a stop for pre - dinner drinks . i would like to invite you to make the opening keynote address , the highlight of the conference . the subject could be : * a general energy risk related topic * a general insight into the secret of enron ' s continued success in the energy markets * your thoughts on the future development on energy markets ( and other commodity related - bandwidth etc . ) worldwide obviously , we would cover all your delagate costs including accomodation , food and drink . what ' s in it for you ? many of our users are some the energy sectors leading risk thinkers and i ' m sure you would enjoy meeting them and exchanging views . please let me know if you are able to accept the invitation . best regards david warwick - marketing dierctor and co - founder",0 +"Subject: institute of international finance - annual subscription robert johnston has asked me to charge vince ' s department for 1 / 3 of the cost of the annual subscription to iif . the annual cost is $ 47 k . therefore the cost for 1 / 3 is $ 15 , 666 . 67 . this information is for maureen raymond ' s use . i will be happy to process the invoice for payment but in order for me to do so , i will need the proper coding for vince ' s department . please let me know if you are agreeable to this . if you have questions , you may wish to contact robert johnston directly at 3 - 9934 . thanks , sharon 5 - 7212",0 +"Subject: points for singh meet vince , please find below a note i had prepared for wade cline who is meeting with a representative of the prime minister ' s office tomorrow . i think you may find these points useful . additionally , i am attaching a copy of a small presentation i made , saturday in mumbai on roadblocks in the power sector with special reference to wat needs to be done to start trading ( & its benefits ) . i have been working with the henwood team that arrived today , and i think a good part of the data is now in place . i will be arranging meeting with some officicals from the transmission side and gather any additional data there too . krishan got in last night ( i conveyed your best wishes to him ) . we will hopefully have a useful day with henwood folks tomorrow . i look forward to being in houston , possibly by the end of the coming week . hope you and the team are doing well ! ! regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 15 / 2001 01 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli 01 / 15 / 2001 01 : 17 am to : wade cline / enron _ development @ enron _ development cc : subject : points for singh meet wade , please find below a brief note on what i feel your tack should be with n . k . singh ( who is supposed to be a hard negotiator ) . i am assuming here that this will be more of an introductory meeting where both sides are feeling out the other . the two meetings i had arranged over the weekend , would hopefully , have given you a better idea of the thinking of at least these two people o the issue . incidentally , in the indian system , the governor of any state is a central government nominee . he is the eyes and ears of the central govt . in the state . please see basak ' s meeting in that light . the message he takes will likely go directly to the pmo in delhi . i will therefore be working closely to convey the right impression . for n . k . singh clearly there are three things you would try to convey : a description of the problem , some of the resultant consequences if it is not solved soon enough , and conveying the fact that there are win - win solutions well within the goi ' s power to implement , that would in fact enhance his reputation and the country ' s as one that lives up to its reputation i would be careful to make the point that we are not going to give up any value , but are willing to be accomodative to mseb , gom , and goi needs , either through financial re - engineering , or through getting direct access to the market in some areas . this will also fly well with enron management that is more comfortable with market risks than political . describing the problem dpc has a ppa , backed by goi mseb ' s monthy collections not improving - are in the range of rs . 900 cr . / month mseb , and gom clearly do not have the resources , in the short run ( 3 - 5 yrs . ) to meet these obligations ; hence central intervention is needed . in a grid of 13000 mw ( maharashtra grid size ) , absorbing an additional 1440 mw ( phase ii ) at one go is difficult ; however if we take western region , grid size is 42000 mw . clearly absorbing all the power in that framework is much easier . to this if we add northern and southern grids , we can probably evacuate out another 500 - 700 mw through the interconnects . hence , there is definitely value in looking at this issue at a national level . additionally , it is not just solvable at that level , but actually answers to the crying need for power in the country , and hence is a boon for the govt . , and should be treated as such . consequences of not solving the problem we can call upon the sovereign guarantee , which will cover our partial payments . however , this would almost definitely lead to a deterioration of the country ' s credit rating - put back incoming investments into the petroleum sector ( where private participation program is about to be unveiled in 25 o we need to get someone to negotiate with . please use your good offices to quickly form a representative group that includes central , state govt . , and seb representatives so that we can work on the solution . without active participation from pm ' s office , we are likely to waste precious time bouncing between the seb , gom , and various ministries of goi . hope this helps . regards , sandeep .",0 +"Subject: thank you for power 2000 hi vince just wanted to thank you for your participation at power 2000 last week and for contributing to the success of the conference . the feedback we received was absolutely glowing and we were delighted with the smooth - running of the event . thank you for being a key part of that . as always , your presentations went down extremely well and your presence at our events makes a big difference , as people are alwyas keen to hear both form you personally and from enron as a company . as i mentioned to you , i have recently been given the responsibility of creating and developing a new conference stream in the financial technology sector under the waters brand , so i would like to take this opportunity to say how much i have enjoyed working with you in the past couple of years and to wish you the best of luck in the future . please stay in touch and if you come to new york , please let me know so i can take you out for a drink ! best regards and thank you again both for your patience in helping me research topics and for being so willing to participate at our events . emma ? ? emma wolfin manager , waters conferences tel 212 925 1864 ext 151",0 +"Subject: access to research project tracking database kevin kindall brought to my attention that a number of new members in the group may need to get access to the research projects tracking database in lotus notes . access can be requested through use of the secutity resource request form accessed from lotus notes . just submit the form requesting that you be added as a user of the research group ' s research projects tracking database . thanks , - - stinson",0 +"Subject: lng meeting vince , before i contact the london staff about next wednesday ' s meeting , i was wondering if we could move it up a little bit . the reason is that by 2 pm in houston it is 8 pm in london and i thought it might be difficult to round up the crew in london at that time . please let me know if we have plans to change the time . thanks , eric",0 +"Subject: re : chapter 3 revisions dear vince and grant , please find attached our butchering of your work ( only joking . . . ) . we ' ve tied the chapter in with what has gone before and changed some of your notation so that it is consistent with ours . vince ; could you please send thru the footnotes referred to in the chapter at your convenience . could you also please supply a full reference for routledge , seppi , spatt ( 1999 ) . grant ; i hope you don ' t mind we ' ve called pdjd just jd ( to fit in more with our work ) . please also can you supply the last figure before you disappear ! do you want us to write the summary ? many thanks again for all your efforts . it ' s all looking good . best regards . chris . - - - - - original message - - - - - from : grant masson to : chris strickland sent : tuesday , june 27 , 2000 8 : 54 am subject : re : chapter 3 revisions > > > > chris : > > i can ' t decide if i should take your silence over the past several weeks to mean > that you are getting stuck into finishing up the book or you are just so > thoroughly disgusted with our work that you would like to wash your hands of us . > > i ' ve been stuck on trying to get the last figure mentioned in the chapter into a > format that i like . the problem is the volatility found in the regressions is > on the order of several hundred percent , and so when i plot the historical data > next to a simulated curve over the course of the year , the simulated curve tends > to drift up or down stupidly both in the jump diffusion and garch + jump diffusion > model . any suggestions would be accepted with pleasure . i wonder if i should > skip the figure . it seems a pity to do so however , because otherwise the last > section comes off as a bit of an afterthought , and i would like to present a > practical example . again any guidance would be appreciated . > > anyway , i am sending you a somewhat improved draft now ( minus only the last > figure ) , rather than sit on the whole thing while i stew on this bit , i hope > this will be useful to you . because i am leaving for holidays at the end of the > week , i can guarantee you that you will have a final draft before then . > > regards , > grant . > ( see attached file : cs 260600 . doc ) > - ed _ co 3 _ volatility . zip",0 +"Subject: it security and standards notice information risk management  ) it security and standards notice passwords the key to maintaining information and systems security is the use of well - selected and guarded passwords . please remember , your password is our first line of defense . it is important that : ? your password should be unique and only known to you . ? your password should never be shared with someone else . ? a password must never be written down ( i . e . post - it notes ) , stored in files on personal computers , at workstations , hidden under keyboards , configured on terminal hot - keys , etc . ? passwords must be changed every 60 days . strong password selection criteria will soon be automated for all employees . for instructions on selecting a good password or to the view the company password policy and standards , click here : please keep in mind that the enron conduct of business affairs holds employees responsible for password security . information risk management conducts periodic audits to ensure compliance with company policy . for any problems encountered concerning password controls , please call your appropriate help desk ( available : 24 hrs . / day , 7 days / week ) .",0 +"Subject: california update 3 / 16 / 01 ? a source within the generator community confirms press reporting that coram energy plans to file an involuntary bankruptcy early next week . through an intermediary , we were able to corroborate this information with a senior member of the ca iso board . coram energy is a relatively small wind generator qf based in west vancouver , british columbia , though it also owns wind stations in california . coram has 238 40 kw units . ? the source believes that this filing may have been precipitated by the fact that many people believe it would take a blackout for governor davis to be able to get his bailout plan passed by the legislature . it is unlikely that blackouts would happen in april or may , meaning a long wait for the cash strapped qfs to wait to get paid . ? the filing will be against socal . ? in order to file an involuntary bankruptcy , coram would have to file along with at least two other creditors owed $ 10 , 000 or more . sources report coram has two other creditors who will file with them ( working on finding out who they are ) . ? sources also report that other qfs are "" taking legal advice "" on how to proceed in light of these developments .",0 +"Subject: howard & lawrence for vince hey vince ! here is a picture of howard lin and picture of lawrence ( the guy i spoke to you about over the telephone ) and his new resume . i will call alec tonight in london to let him know that you sent the "" other howard "" ( howard haughton over to enron uk ) . lawrence has banking and online experience with hsbc - he is being examined only by one other company that i know of ( williams ) that is my competitor . he also went to the chief investment officer of the san diego pension fund ( a friend of mine ) . i don ' t think he is a "" best fit "" - but , if you like him - i ' ll get him for you ! i have a great relationship with him . ok ! thanks , jeff wesley ps - i kinda like lawrence ' s "" look "" , vince . always held in strict confidence . jeff wesley 949 813 2241 hotline 347 487 8957 voice / fax us + 44 ( 845 ) 3341644 uk * get free , secure online email at http : / / www . ziplip . com / * - howardlin . gif - imageo 02 . jpg - lawrenceagent 9498132241 new . doc",0 +"Subject: re : the package - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001 01 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 23 / 2001 01 : 06 pm to : "" valery kholodnyi "" @ enron cc : subject : re : the package valery , thanks a lot . i have received the package last week . i was traveling and i did not have time to take a closer look at it yet . i think about a trip to dallas sometimes in the first few days of february . i hope you will find time for lunch . i will contact you later this week regarding the date . vince "" valery kholodnyi "" on 01 / 22 / 2001 05 : 59 : 53 pm to : vince . j . kaminski @ enron . com cc : subject : the package dear vince , could you please acknowledge receipt of the package with a copy of my article on spikes in power prices , as well as copies of my books and some of my other relevant articles , that i recently sent to you . i look forward to hearing from you . sincerely , valery",0 +"Subject: improved process for engaging temporary workers as you are aware , enron utilizes temporary staffing services to satisfy staffing requirements throughout the company . for the past several months , a project team , representing enron  , s temporary staffing users , have researched and evaluated alternative managed services programs to determine which source would best meet our current and future needs in terms of quality , performance and cost containment objectives . the business unit implementation project team members are : laurie koenig , operations management , ees carolyn vigne , administration , ee & cc linda martin , accounting & accounts payable , corporate beverly stephens , administration , ena norma hasenjager , human resources , et & s peggy mccurley , administration , networks jane ellen weaver , enron broadband services paulette obrecht , legal , corporate george weber , gss in addition , eric merten ( ebs ) , kathy cook ( ee 713 - 438 - 1400 ) amy binney , sharon b . sellers  ) operations cherri carbonara  ) marketing / communications cynthia duhon  ) staffing partner management",0 +"Subject: organizational changes given the evolution of a number of our businesses , we have decided to make an organizational change . the change is in response to a number of factors . first , as a part of our new initiative in enron net works , it is becoming clear that we have the opportunity to quickly expand enron  , s underlying business model to other commodity markets . such an expansion requires a coordinated focus on strategy as we select and develop these opportunities . second , the success of enrononline and the continued expansion of our wholesale activities in north america and europe have increased the coordination requirements across our north american and european operations . as a result of these two factors , we are making the following organizational changes effective immediately : cliff baxter will move from enron north america to enron corp . as executive vice president and chief strategy officer . mark frevert will become chairman and ceo of north america , replacing cliff . in addition , mark will remain chairman of enron europe . john sherriff will become president and ceo of enron europe . we are confident that these changes will increase the effectiveness of our organization . please join us in congratulating cliff , mark and john on their new responsibilities .",0 +"Subject: re : enl - dailyupdate - txt you have been subscribed to enl - dailyupdate - txt with the email address "" vkamins @ enron . com "" to unsubscribe , send a blank email to ",0 +"Subject: credit exposure model bill , attached are the spreadsheet for the credit exposure model and the xll file . we have performed some tests and the numbers looked reasonable . however , more extensive testing using realistic data is needed . we would like to pass the model to you so you can have someone check it more extensively and compare the model with what you are using . also , please kindly inform me of any suggestions to improve the model as well as any problems you may find . i can be reached at 31631 . best , alex",0 +"Subject: conference on risk management : the state of the art , january 13 - 14 , 2000 we confirm receipt of your registration for the above - mentioned conference . the conference will be held at new york university stern school of business , henry kaufman management center , 44 west 4 th street , new york city . registration and continental breakfast will begin at 8 : 30 a . m . , when you will receive the conference material and a name tag . meanwhile , if you have any questions regarding the conference , please do not hesitate to contact me . mary t . jaffier nyu salomon center stern school of business 44 west 4 th street , suite 9 - 160 new york , ny 10012 tel : 212 - 998 - 0706 fax : 212 - 995 - 4220 http : / / www . stern . nyu . edu / salomon",0 +"Subject: a resume john , this is a resume i received today from my friend . please , take a look at it . what follows below is a copy of his message to me : dear vincent , i very much would like to ask you for a career advice . i am looking for new challenges and new professional opportunities . possibly there would be such opportunity around yourself at enron corporation . i trust that my strongest asset is my intellectual capital and ability to look from new angles into complex issues . beside of the experience of working under jacob goldfield an paul jacobson at goldman on the interest rate swaps and proprietary desks , i was a part of research effort of john meriwether group at salomon brothers , i headed the european interest options desk at dkbi in london and i have managed a small hedge fund in partnership with albert friedberg . i hold ph . d . in mathematics from mit and i have studied under nobel laureate in economics , bob merton . i very much would like to apply my knowledge of capital markets , trading and research in the field of energy markets . with my very best regards and personal wishes , mark kierlanczyk godel partners llc 67 wall street , suite 1901 new york , ny 10005 tel 212 943 5300 mkierlanczyk @ fmginy . com",0 +"Subject: mgmt 656 ( rice university ) here are your rosters for mgmt 656 . let me know if you need a list of e - mail addresses as well . i will update you as student schedules change . - pam ( 713 - 348 - 6223 ) - 656 . doc",0 +"Subject: re : stressing correlations hi , everybody , following up on our discussions on stressing correlations i made a spreadsheet and a dll . here is what it does : in the input ( "" main "" sheet ) the user has to specify : - the size of the correlation matrix ; - the row and column for the element he wants to stress ( row = 1 and col = 3 in the example ) - the integer number n _ iter ; - the original correlation matrix . in the output ( see sheet "" results "" ) we see 2 columns : - the first column contains possible correlation values ( from - 1 to 1 , n _ iter + 1 numbers ) for the element ( 1 , 3 ) , - the second column contains the smallest eigenvalue for the "" stressed "" correlation matrix ( which is the same as the original matrix except the elements ( 1 , 3 ) and ( 3 , 1 ) which take values from - 1 to 1 ) . thus , the user can see which values for the chosen element ( 1 , 3 ) are permitted ( those for which the smallest eigenvalue is positive ( marked green in the example ) . the user might decide that he wants to assign the correlation which is "" not permitted "" to this particular element ( the smallest eigenvalue is negative ) . then the user might have a few options : 1 . all the elements of the correlation matrix will be modified so that the chosen element has the desired correlation in it , but the change in the correlation matrix is the "" smallest "" possible ( in the sense of matrix norm ) ( this is my next step to do for this spreadsheet ) . 2 . just one column ( and the corresponding row , of course ) will change , while the rest of the matrix will stay unchanged ( kevin ' s suggestion ) . in this case the user have to choose which column ( and row ) he prefers to modify ( in my example - column - row 1 or column - row 3 ) . we can discuss this approach with risk control and see how they like it . i send you only the spreadsheet with an example now . tanya .",0 +"Subject: vega v @ r , credit reserve model update attached is a draft of the vega var implement documentation . we will discuss this issue tomorrow . index var and the vega var status : because any modification of the var model has to be coded into the new version by it , the index var model and the vega var model are on the waiting list to get into it group ' s door . currently , they are struggling with the credit model . accord to jonathan le , they will implement the "" prudency "" model after the "" credit "" and before anything else . so , it ' s uncertain when they can begin these two projects . credit reserve model status : new version developed by it is still in the debugging stage . two major difference exist between the new and old versions : 1 ) old version uses delta - gammar methodology , new version uses full evaluation . it group is not comfortable with their implementation of the "" spread option "" and "" swaption "" evaluation . i am working with them on it . 2 ) insurance projects are new to the new version . it also wants our help too . only after the it finishes the debugging process , could we start testing the new version with the current one . thanks . vincent",0 +"Subject: re : invitation to my house tony , great . i look forward to visiting you and your wife on april the 22 nd . no dietary restrictions . vince from : anthony mends @ enron communications on 03 / 07 / 2000 03 : 52 pm to : vince j kaminski / hou / ect @ ect @ enron cc : subject : re : invitation to my house vince , april 22 is fine . thanks for accepting the invitation . do you have any dietary restrictions or preferences ? please it is no trouble to tell us ( my wife would be doing the cooking but i can speak for her ) . please let me know . thank you , tony . vince j kaminski @ ect 03 / 07 / 00 10 : 00 am to : anthony mends / enron communications @ enron communications @ enron cc : vince j kaminski / hou / ect @ ect , vkaminski @ aol . com subject : re : invitation to my house anthony , thanks for the invitation . what about april 22 ? i have committed to different speaking engagements , charities , off - sites etc . for all the saturdays prior to this date . vince from : anthony mends @ enron communications on 03 / 06 / 2000 02 : 18 pm to : vince j kaminski / hou / ect @ ect cc : subject : invitation to my house vince , i hope you are well . sorry i have not been in touch but i have been swamped trying to build my organization simultaneously as i endeavor to understand ebs and navigate its political terrain . quite interesting . i shall tell you more later . my wife , elisabeth and i would love to have you for dinner at our house any saturday at you convenience . would please let me know which saturday would be suitable ? we are both looking forward to it so please let me know . thanks , tony",0 +"Subject: telephone interview with the houston research group good morning quentin : vince kaminski and the research group would like to conduct a telephone interview with you sometime next week . considering the time difference between houston and australia , it probably makes sense to try and schedule it very early in the morning your time , say 7 : 00 am ? it would be 5 : 00 pm here in houston . how does next wednesday or thursday , ( 8 / 16 or 8 / 17 ) at 7 : 00 am your time sound ? also , please let me know if you want to be reached at home or work . thanks quentin and have a great day ! shirley crenshaw administrative coordinator enron research 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: enron / globe dear drs . roberts and benjamin , vince kaminski and i enjoyed and appreciated the opportunity to speak with you this morning . enron is very happy to agree to participate in stanford ' s globe project ( being conducted in partnership with mckinsey & company ) . attached please find my business card with all of my contact information . i look forward to hearing from dr . benjamin in the near future to begin enron ' s involvement . thank you ! - - christie .",0 +"Subject: re : schedule and more . . jinbaek , may 30 sounds good . i shall inform our hr department . i don ' t see any project i could get going with your advisor on such a short notice . when you come here you can determine in what area he could make the biggest contribution to enron . i shall call or e - mail him independently and talk to him . vince "" jinbaek kim "" on 05 / 07 / 2001 02 : 25 : 53 am to : cc : subject : schedule and more . . dr . kaminski , i think i ' ll be able to start work from the last week of may , but not from monday , probably , i ' ll be able to work from 5 / 30 ( wed ) . will it be good ? i know it is not that much earlier than i mentioned . . 6 / 4 i am sorry . and actually , there is an e - business conference at haas school of business , organized by my advisor could you distribute the link and the attached invitation letter to groups interested in e - business and especially procurement ? the link is as following . i am afraid you might forgot this i told you in the last email . . . my advisor ( arie segev at haas school of business ; segev @ haas . berkeley . edu ) wants me to ask whether you have any idea on joint research with him during the summer , while i am staying there . his interest is in e - business . . ( what else . . ? ) and has expertise in e - procurement system and marketplace . . . xml based standard such as obi , cxml , xcbl , rosettanet , biztalk . . system interoperability study , auction and negotiation , workflow system , e - catalog management , digital signature , edi , etc etc . . . many technical aspects of e - business . . . he wants to do some kind of technical case study that is beneficial for both enron and him . he may travel one or two times to houston to have a meeting during the summer . ( and to be frankly , this will be good for me too , because i can have a meeting for my dissertation while he is in houston . . ) could you think about the possibility of joint research , with him ? thank you . . sincerely , jinbaek - fcp - invite . pdf",0 +"Subject: interview & mike / christian dear vince , 1 . quentin kerr , we will be pleased to do the initial due diligence in an interview . phil taylor is contacting quentin and getting him down our sydney office from his university in the next state - queensland . 2 . re : christian , we will be very glad for christain to interact with houston research on "" . . the weather forecasting technology . . "" however , we are very skinny on w staff here ( like christian is our one & only ) , and christian is doing much work for both the power & weather business . i was thinking that we could run with our initial idea of having mike roberts come to sydney . there is still time before the olympics ! will keep you posted on quentin . regards raymond vince j kaminski @ ect 08 / 08 / 2000 06 : 30 am to : paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : thank you paul & raymond , it took more than a few days to catch up after i came back from australia . there are few things i would like to bring up to your attention . first of all , i would like to thank you for your hospitality . i learned a lot about the australian markets and was greatly impressed with the quality of the people at the sydney office . 1 . the resume you sent to me and grant looks quite good . i think it makes sense to interview this person and we can help you with a phone interview . 2 . i have received another resume that looks very promising . i am very interested in this guy and would be ready to bring him over to the states where we lack desperately technical talent . can you help us by interviewing him in sydney ? the main determination i need from you is whether he can function in a company like enron . as any good academic he sent his resume in a ps format and i shall fax you a copy in case you don ' t have a postscript reader on your system . 3 . christian werner does some really neat things on the weather front . i would like to determine if he can help us to upgrade our systems . can we bring him to houston for a week to discuss the weather forecasting technology with mike roberts and joe hrgovcic ? i think that he could learn a lot from mike and other weather guys here how we translate weather info into business - related information . i shall be glad to underwrite the cost of this trip . vince",0 +"Subject: re : avistar systems - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 10 / 24 / 2000 01 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - paige cox @ enron 10 / 24 / 2000 08 : 54 am to : kevin g moore / hou / ect @ ect cc : subject : re : avistar systems you ' re welcome . i have vince on the list now . we are installing this week and over next weekend . we ' ll have to go to the location to see if we ' ll have to pull additional cable to vince ' s desk . i wouldn ' t look for it to be in before next monday . with regards to the billing - - i will have stella ely get with you on that . thank you for all of the info paige kevin g moore @ ect 10 / 24 / 2000 08 : 47 am to : mike a roberts / hou / ect @ ect , paige cox / corp / enron @ enron , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : avistar systems i really appreciate you speaking with gary regarding the avistar system . please inform me on what i need to do to make the process continue . the location for the avistar is eb 3240 d . the location belongs to vince kaminski . if you need more information please call x 34710 . if possible , would you please inform me as when to expect the system connection date and time . thanks kevin moore",0 +"Subject: re : m lay response al , thanks for the update . i hope that you and mark will come up with a good plan of attack . i can only regret that my workload does not allow me to participate in this project . vince al arfsten on 01 / 25 / 2001 05 : 45 : 54 pm to : vkamins @ enron . com cc : subject : m lay response vince : i forwarded mark lay ' s reply to update you . al received : from outbound 5 . enron . com ( 192 . 152 . 140 . 9 ) by mailo 6 a . intermediahosting . com ( rs ver 1 . 0 . 58 s ) with smtp id 09075930 for ; thu , 25 jan 2001 18 : 34 : 37 - 0500 ( est ) received : from nahou - msmswolpx . corp . enron . com ( [ 172 . 28 . 10 . 37 ] ) by postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id xaal 2799 for ; thu , 25 jan 2001 23 : 34 : 36 gmt from : mark . lay @ enron . com received : from nahou - lnintol . corp . enron . com ( unverified ) by nahou - msmswolpx . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp id for ; thu , 25 jan 2001 17 : 34 : 36 - 0600 to : arfsten @ bflassociates . com x - priority : 3 ( normal ) importance : normal date : thu , 25 jan 2001 17 : 34 : 16 - 0600 subject : re : [ fwd : new commodity marketplace opportunity ] message - id : x - mimetrack : serialize by router on nahou - lnintol / enron ( release 5 . 0 . 2 b ( intl ) | 16 december 1999 ) at 01 / 25 / 2001 05 : 34 : 34 pm mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii x - loop - detect : 1 x - mozilla - status 2 : 00000000 i did understand that you were still at the concept stage . it is a very interesting proposal and i would like to think about it . thanks , mark - - - - - original message - - - - - from : al arfsten @ enron enron . com ] sent : thursday , january 25 , 2001 10 : 45 am to : lay , mark subject : [ fwd : new commodity marketplace opportunity ] mark : per our brief conversation this morning , the attached email was sent to you yesterday . i hope that you might understand that i am conceptually looking for "" founders "" and at the "" pre "" business plan stage . there is an enormous problem existing with a very attractive economic reward and willing participants needing this solution . i need help . al arfsten 713 965 2158 content - transfer - encoding : 7 bit x - mozilla - status 2 : 00000000 message - id : date : wed , 24 jan 2001 15 : 49 : 37 - 0600 from : al arfsten organization : bfl associates , ltd . x - mailer : mozilla 4 . 7 [ en ] c - cck - mcd nscpcd 47 ( win 98 ; i ) x - accept - language : en mime - version : 1 . 0 to : mark . lay @ enron . com subject : new commodity marketplace opportunity content - type : text / plain ; charset = us - ascii mark lay : i shared confidentially with vince kaminski my developing concept of a highly inefficient not - for - profit enterprise with dramatically increasing costs . i believe that a for - profit economic model is possible that should reverse these skyrocketing costs and ultimately lower the commodity thereby having a national , if not , global impact of health care costs . vince seems to also believe in the concepts potential . the ceo of one of the biggest u . s . blood banks has already asked to become involved . i would like involve more people with vision , means and desire to help make this a reality . i would look forward to meeting with you to talk further . al arfsten 713 965 2158",0 +"Subject: re : wharton tiger team # 3 i have reserved conference room 32 c 2 for thursday , feb 1 , feb 8 , and feb 15 from 3 : 30 - 5 : 30 john to teleconference in tomorrow ( feb 1 ) call 713 - 853 - 9554 please let me know if wharton is using a different number from last week so that i can inform the scheduling people melinda x 31641 christie patrick @ ect 01 / 30 / 2001 06 : 34 pm to : melinda mccarty / corp / enron @ enron cc : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect , degiacic @ wharton . upenn . edu subject : re : wharton tiger team # 3 melinda , would you please coordinate john henderson into the thursday videoconference ? thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 30 / 2001 06 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - mohn henderson @ newpower 01 / 30 / 2001 04 : 13 pm sent by : melissa corley @ newpower to : christie patrick / hou / ect @ ect @ ees cc : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect , melinda mccarty / corp / enron @ enron , degiacic @ wharton . upenn . edu subject : re : wharton tiger team # 3 john would prefer to join the thursday call via teleconference . if you could provide the dial in number he will call in . thanks , melissa corley john henderson christie patrick @ ect 01 / 30 / 2001 03 : 50 pm to : jhenders @ newpower @ ees , vince j kaminski / hou / ect @ ect cc : melinda mccarty / corp / enron @ enron , degiacic @ wharton . upenn . edu subject : wharton tiger team # 3 hi john and vince ! john , hopefully you received my voice mail regarding the matter set forth below . i ' m in ny now and won ' t return until thursday morning . perhaps it would be easiest for john to come to the video conference on thursday ( if he ' s in houston ) or via telephone if he ' s travelling ? ? whatever you both think is best . . please let me know ! my assistant , melinda mccarty , is setting up the call location at the enron building , as well as the dial - in number with donna piazze at wharton . melinda , please include john in the distribution of the video conference location . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 30 / 2001 03 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" degiacinto , clayton "" on 01 / 30 / 2001 02 : 00 : 07 pm to : "" ' christie . patrick @ enron . com ' "" cc : "" feerick , dennis "" , "" lessar , stephen "" , "" vittal , maheshram "" , "" bassal , omar "" , "" cummins , marc "" subject : wharton tiger team # 3 christie , as we talked last thursday via video teleconference , we are planning to narrow our scope to focus on a marketing / promotion plan for newpower including value - added products and services for the future . before we talk again on thursday , we would like to speak with john henderson again to see if he recommends any specific items he would like us to address . we are having trouble contacting him and wonder if you could facilitate a phone meeting between us , or if it would be best to include him in our next video teleconference . we are available the next two days at lpm and 4 pm houston time . we understand that john is a very busy person , and we appreciate any help you can give in getting us together to ensure our work is commensurate with his expectations . thanks , enron team 3 ( retail )",0 +"Subject: re : meeting sorry for the rescheduling . shalesh is unable to make it until late this afternoon . since what we have is informal and not urgent , perhaps we can catch you for a few minutes just sometime late today or tomorrow before you leave . otherwise , it can wait until you return . thanks , martin vince j kaminski 09 / 19 / 2000 08 : 36 am to : martin lin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : meeting martin , let ' s try bet 1 and 2 : 30 . vince from : martin lin on 09 / 19 / 2000 08 : 30 am to : vince j kaminski / hou / ect @ ect cc : subject : meeting shalesh and i wanted to meet with you briefly , but this morning ' s timing isn ' t working out . are you available this afternoon , sometime after 5 pm ? thanks , martin",0 +"Subject: cvs of candidates for rac support role these three guys will all be available for interview monday afternoon . regards ben",0 +"Subject: re : double - up swap thanks thor vince j kaminski 12 / 12 / 2000 15 : 18 to : thor lien / osl / ect @ ect cc : vince j kaminski / hou / ect @ ect , paulo issler / hou / ect @ ect subject : re : double - up swap thor , we have modeled this structure a few times in the past . paulo issler will call you shortly to talk about it . vince thor lien 12 / 12 / 2000 03 : 02 am to : vince j kaminski / hou / ect @ ect cc : subject : double - up swap vince do we have any models to use on this product for power ? thor",0 +"Subject: re : hello hello , i just received your message . are still in nyc ? i like it a lot . i wish my job was associated with traveling . according to saturday meeting - i will be there . have a save trip back home . patrycja from : vkaminski @ aol . com save address - block sender to : pdalecka @ hotmail . com save address cc : vkaminski @ aol . com save address subject : re : hello date : mon , 13 mar 2000 23 : 22 : 26 est reply reply all forward delete previous next close hello patrycja , greetings from the big apple . saturday works for me . let ' s meet at 4 : 00 p . m . at carrabba ' s . it ' s an italian restaurant on i - 45 in the woodlands . after you pass conroe , take the research forest exit ( 5 - 10 miles past conroe ) and stay on the feeder road . go through the lights ( research forest intersection with i - 45 ) . as you continue along the feeder road you will pass on your right the woodlands mall and the exxonmobil building , . the restaurant will be on your right , about 200 - 300 yards before the next lights ( i - 45 and sawdust ) . i shall have my cell phone with me ( 713 898 9960 ) . in case you arrive early you can stop at my home : 10 snowbird place , ( 281 ) 367 5377 . i shall send you later the instructions how to get there . i shall leave home around 3 : 45 . look forward to meeting you . vince",0 +"Subject: re : thursday night ' s dinner ( and friday also ) hello all : bad news ! most of the really nice restaurants in breckenridge close on the 22 nd of april . we may have to have all the dinners at the hotel . do you have any other suggestions ? i will check with scott yeager ' s wife again today to see if she perhaps knows of another good restaurant that may be open , but the owner of pierre ' s told me most of them close and open again for the summer season in may . thanks ! shirley sheryl lara @ enron communications 03 / 28 / 2000 06 : 29 pm to : ravi thuraisingham / enron communications @ enron communications cc : shirley crenshaw / hou / ect @ ect , shirley subject : re : final list of invited participants to offsite meeting ravi : can you answer shirley ' s question . are you planning to have the entire group go to dinner , or just senior management ? please let us know your plan . sheryl - - - - - forwarded by sheryl lara / enron communications on 03 / 28 / 00 07 : 24 pm - - - - - shirley crenshaw @ ect 03 / 28 / 00 03 : 15 pm to : sheryl lara / enron communications @ enron communications @ enron cc : subject : re : final list of invited participants to offsite meeting sheryl : i am going to call pierre ' s restaurant and make reservations for thursday night - will everyone on the list be attending or just part ? thanks ! sheryl lara @ enron communications 03 / 28 / 2000 03 : 09 pm to : shirley crenshaw / hou / ect @ ect , ravi thuraisingham / enron communications @ enron communications cc : subject : final list of invited participants to offsite meeting here it is ! ! ! the final list of participants .",0 +"Subject: re : latest revision vince , i got the zipped version fine . thanks the only outstanding items relate to the complete references for your papers ( the book publisher and dates ) . i spoke with shirley this morning and she is tracing this down for me . i re - read the gas market paper segment on the take - or - pay contracts and corrected my "" oversight "" . by the end of the day i hope to have all the corrections that you gave me incorporated in the manuscript . we will make them on the galley pages of the article when it arrives . thanks again for all your help . john p . s . i also spoke with mary joyce ( she returned my earlier call a week ago when i was trying to ask cindy something ) . all is well . at 10 : 15 am 2 / 5 / 01 - 0600 , you wrote : > > john , > > html version of enron article : > > > vince > > ( see attached file : b 3719001 . htm ) ( see attached file : b 3719003 . htm ) ( see > attached file : b 3719004 . htm ) ( see attached file : b 3719005 . htm ) ( see attached > file : b 3719006 . htm ) ( see attached file : b 3719007 . htm ) ( see attached file : > b 3719008 . htm ) ( see attached file : b 3719009 . htm ) ( see attached file : > b 3719010 . htm ) > > > > > > "" john d . martin "" on 02 / 04 / 2001 06 : 37 : 47 pm > > to : vkamins @ enron . com > cc : > subject : latest revision > > vince , > > i have made bold face edits to the attached document . i still have two > edits to make but am concerned that you were not reading the most recent > version . sorry for any confusion but the editor doesn ' t use the edit > function in word so i have ended up making edits on new versions of the > paper . > > i still haven ' t made the change regarding the take - or - pay problem ( i left > that paper at home in my briefcase and will make the change tomorrow > morning ) . also , i haven ' t added anything regarding the conflict that arose > over pay for new hires nor have i received the business week e - mail from > you . > > however , if the paper looks ok to mark palmer we can make these minor edits > on the galley pages of the article . > > thanks > > john > > p . s . i am very disappointed about the scheduling conflict you have on feb > 23 rd . you will be greatly missed but i certainly understand . > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > > attachment converted : "" c : \ windows \ desktop \ b 3719001 . htm "" > > attachment converted : "" c : \ windows \ desktop \ b 3719003 . htm "" > > attachment converted : "" c : \ windows \ desktop \ b 3719004 . htm "" > > attachment converted : "" c : \ windows \ desktop \ b 3719005 . htm "" > > attachment converted : "" c : \ windows \ desktop \ b 3719006 . htm "" > > attachment converted : "" c : \ windows \ desktop \ b 3719007 . htm "" > > attachment converted : "" c : \ windows \ desktop \ b 3719008 . htm "" > > attachment converted : "" c : \ windows \ desktop \ b 3719009 . htm "" > > attachment converted : "" c : \ windows \ desktop \ b 3719010 . htm "" > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: capm and cost of capital greetings from the global association of risk professionals ! ! we are putting together a panel for our march meeting related to one of the following topics ; cost of capital , estimating risk premium , and capm approaches to measuring risk . currently , we have steve mann , an assistant professor of finance at tcu , is scheduled to speak and we are seeking additional volunteers for our panel . if you are interested please respond via email . if your organization would like to host the event , please let me know so that arrangements can be made . fyi , we have identified resources in new york city that would come to houston to speak , and we are in need of a sponsor ( or suggestions ) to cover the general expense of bringing these individuals to houston . steve mann is an assistant professor of finance at the neeley school at tcu , where he teaches courses in derivatives and corporate finance . his primary area of research is trading , with focus on the risk & reward of market making in derivative contracts , as well as behavioral aspects of trading , and liquidity measurement . his publications to date include papers in the review of financial studies , the journal of business , and the journal of futures markets . looking forward to your response . respectfully , frank hayden garp the information in this email is confidential and may be legally privileged . it is intended solely for the addressee . access to this email by anyone else is unauthorized . if you are not the intended recipient , any disclosure , copying , distribution or any action taken or omitted to be taken in reliance on it , is prohibited and may be unlawful . when addressed to our clients any opinions or advice contained in this email are subject to the terms and conditions expressed in the governing kpmg client engagement letter . ",0 +"Subject: colorado fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 08 / 17 / 2000 11 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : samer takriti @ enron communications on 08 / 17 / 2000 10 : 57 am to : stinson gibner / hou / ect @ ect cc : subject : colorado stinson , i prefer to skip the trip . as i said , it would feel a little uncomofortable and strange . thanks though . - samer",0 +"Subject: technical corner vince , last monday , i sent the vp ' s an e - mail asking for their help ( from them , or from one of the people working with them ) in providing a technical corner article by today . to date , sandeep and mike have responded but cannot do one for this coming week . i didn ' t get a response from the other three . do you have something that could be easily adapted for the monday issue ? and , any suggestions about how to motivate a vp would be appreciated . my usual approach is to ask politely , which usually gets a positive response . i know the newsletter is low priority compared to our daily work , but surely as much as our people like to publish their ideas , one person out of forty - some - odd would be able to do something in a week ' s time , right ? as always , i appreciate your help . and , if you would care to share some advice on how i can do this in a better way , i will always listen and learn . sam",0 +"Subject: re : i will miss the tuesday staff meeting osman , vasant is setting up a meeting to review the credit models with ees . please , call - in or attend when the meeting is set . vince osman sezgen @ ees 01 / 15 / 2001 02 : 49 pm to : vince j kaminski / hou / ect @ ect cc : subject : i will miss the tuesday staff meeting vince , i will not be able to attend the meeting . here are some updates : 1 ) i left a message to george posey , i will follow up tomorrow ( tuesday ) , 2 ) i will follow up on the credit reserve issue asap , i will find out what the present state of the models are and come up with modification requirements to accomodate asset related projects . 3 ) this week i will need to spend much of my time in meeting with the breakthrough folks . they are at a stage where our contribution is being defined and specifies ( curves , components , etc . ) . if you would like to contact me urgently , please leave a phone message instead of e - mail - - i will be checking my phone messages more frequently . 4 ) we have a var meeting with rac on eam issues wednesday at lpm . 5 ) other issues are covered in my project list . regards , osman",0 +"Subject: consulting project dear vince : i have now spent 16 hours on the valuation project and wanted to touch base with you to make sure that the basic approach makes sense and that you think we are making an appropriate amount of progress . my invoice is attached . by the way , john martin just mentioned that you have agreed to be our luncheon speaker at the texas finance festival . i really appreciate your help on this and would like to schedule some time next week to talk about it in more detail . i look forward to hearing from you . regards , sheridan - invoice for february and march 2001 . doc sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu",0 +"Subject: re : mid - project review dates - enron great ! i ' ll arrange it with donna ! melinda arranged the video conference on 32 . see you there ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 24 / 2001 10 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 24 / 2001 09 : 47 am to : christie patrick / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : mid - project review dates - enron christie , feb the 20 th is the best time for me . vince christie patrick 01 / 23 / 2001 11 : 29 pm to : vince j kaminski / hou / ect @ ect cc : subject : mid - project review dates - enron hi vince ! the best dates for me are the 16 th or the 20 th . please let me know ! thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 23 / 2001 11 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 01 / 23 / 2001 11 : 46 : 32 am to : "" ' vkamins @ enron . com ' "" , "" ' christie . patrick @ enron . com ' "" cc : fap subject : mid - project review dates - enron tiger hosts : this is a reminder that the deadline for setting up the mid - project review dates for your tiger team is friday , jan 26 . the following are the remaining available dates / times . please let me know what works best for you at your earliest convenience . monday , feb 12 4 : 30 - 6 : 30 or 6 : 30 - 8 : 30 tuesday , feb 13 4 : 30 - 6 : 30 or 6 : 30 - 8 : 30 wed . , feb 14 4 : 30 - 6 : 30 or 6 : 30 - 8 : 30 friday , feb 16 10 : 00 - 12 : 00 or 6 : 30 - 8 : 30 tuesday , feb 20 6 : 30 - 8 : 30 again , this will be based on a first come - first serve basis . you may come to campus or this can be done by videoconference . if you choose the latter , please provide to me a call - in number for the conference . any questions , please contact the fap office . donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: steve ' s trip to houston dale , richard , i am ready to cover the cost of steve ' s trip to houston ( one month in the summer ) . i think very highly of steve and think about coaching him a bit to expand his horizons . i see him as a very valuable asset of enron and a great leader in not too distant future . he needs exposure to more diverse business problems and areas of research . i think it will be in the best interest of the company to devote some resources to foster his development . vince",0 +"Subject: command confirmation request ( 4 e 46 c 824 ) your command : subscribe frbnyrmagl vince kaminski has been received . you must now reply to this message ( as explained below ) to complete your subscription . the purpose of this confirmation procedure is to check that the address listserv is about to add to the list for your subscription is reachable . this is a typical procedure for high - volume lists and all new subscribers are subjected to it - you are not being singled out . every effort has been made to make this verification as simple and painless as possible . thanks in advance for your cooperation . to confirm the execution of your command , simply point your browser to the following url : alternatively , if you have no www access , you can reply to the present message and type "" ok "" ( without the quotes ) as the text of your message . just the word "" ok "" - do not retype the command . this procedure will work with any mail program that fully conforms to the internet standards for electronic mail . if you receive an error message , try sending a new message to listserv @ peach . ease . lsoft . com ( without using the "" reply "" function - this is very important ) and type "" ok 4 e 46 c 824 "" as the text of your message . finally , your command will be cancelled automatically if listserv does not receive your confirmation within 48 h . after that time , you must start over and resend the command to get a new confirmation code . if you change your mind and decide that you do not want to confirm the command , simply discard the present message and let the request expire on its own .",0 +"Subject: non - disclosure agreement p . o . box 2227 livermore , california 94550 april 4 , 2001 dr . vince j . kaminski vice - president of research enron corporation p . o . box 1188 huston , texas 77251 vince , i have cleared my calendar , and i am looking forward to meeting with you in houston on may 4 th . transmitted herewith is the agreement that you requested . thanks . have a great weekend . larry thorne attachments : non - disclosure agreement - non - disclosure agreement . pdf",0 +"Subject: re : programming for rdi model michelle , the coding is progressing nicely . cecil and david have the first part of the code almost done ( there are 3 parts of code ) , and they expect to have the first two parts completed by next tuesday or wednesday . if ken ' s needed , that will be in the testing of the third part of code , which should be sometime next week or later . i will inform you of the status change as soon as possible . best , alex",0 +"Subject: statistician position open feel free to circulate this to get a statistician for us . thanks , krishna",0 +"Subject: re : ca for henwood engagement i suspect that enron india llc would be the entity to use . however , is anyone from tax involved in this ? if not , we need to get someone in the loop . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ lauren hagerty enron india / ebs asia three allen center , room 2119 houston , texas 77002 phone : 713 - 646 - 6529 fax : 713 - 646 - 7549 bonnie nelson 01 / 19 / 2001 11 : 54 am to : stinson gibner / hou / ect @ ect , bruce lundstrom / enron _ development @ enron _ development , lauren cc : vince j kaminski / hou / ect @ ect , sandeep subject : re : ca for henwood engagement stinson , please find attached a revised version of the draft consulting agreement with henwood . fyi , i am attaching both a clean version and one marked toshow changes from the last draft i sent you . please let me know if you have any questions or comments on the agreement or the most recent changes . what is the status of henwood ? do you still want to engage them and what is the timeframe for their work ( the dates in the draft may need to be corrected ) . bruce and lauren : please advise on which enron entity should be the party to this consulting agreement . thanks , bonnie",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 carson , margaret m james d steffes may 26 , 2000 vernon , clayton j vasant shanbhogue may 26 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: friday night dinner itinerary dinner team itinerary date : friday , december 1 , 2000 restaurant : la columbe d ' or 3410 montrose 713 - 524 - 7999 cocktails : 7 : 30 pm dinner : 8 : 30 pm  ) 10 : 30 pm table no . 7 executive host : vince kaminski associate / analyst co - host : joana ryan dinner details : all super saturday candidates will be arriving at the restaurant by shuttle . a member of the associate and analyst program staff will greet them . this staff member will also be there to assist you . there will be a short cocktail reception prior to dinner . during the reception , you will have the opportunity to meet many of the candidates . a table has been reserved in the executive host  , s name . students will not have seating assignments this year . the hosts should feel free to invite up to four students to sit at their table if desired . dress for the evening is business attire . hosts are no longer responsible for the bill . if you would like to provide feedback on any candidate , an evaluation form is attached or you may discuss your input with the associate and analyst staff member after dinner . the evaluation form must be faxed to 713 - 646 - 5935 , prior to 12 : 00 p . m . on saturday to be included in the decision meeting .",0 +"Subject: re : houston visit thank you very much for your prompt reply . pls let me know if you ' re going to be in ny , otherwise i look forward to seeing you soon in houston . soussan ( 914 ) 253 - 4187 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , april 25 , 2000 11 : 23 am to : faizs @ texaco . com subject : re : houston visit soussan , it looks fine . look forward to meeting you again in houston or new york . vince "" faiz , soussan "" on 04 / 25 / 2000 09 : 29 : 34 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : houston visit dear vince , firstly , i really appreciate your time and our meeting last week . learning about enron ' s use of leading - edge practices was quite enlightening and i truly benefited from our visit . secondly , i ' ve summarized my key "" take - aways "" as stated below . before conveying it to my management , however , i really appreciate it if you can pls review my conclusions and ensure that they are not miss - stated . again , thanks so much for your time and wisdom . i was also honored that you gave me a copy of the "" managing energy price risk "" book and shall reference it with interest . thank you . i really look forward to seeing you again next time i ' m in houston . best regards , soussan ( 914 ) 253 - 4187 ps . the latest fortune article on ene is a great read and substantiates the company ' s innovative and creative approach to business . - - - - - - as you may know , i was invited to visit with enron ( ene ) last week . i met with vince kaminski , the vp and head of research in the risk management group of ene . vince who used to be with salomon brothers and at & t is the "" brain "" of ene w . r . t . their analytical tools for pricing of commodities , hedging , optimization of financial and physical transactions , as well as the value - at - risk systems . in addition , vince has received the 1999 james h . mcgraw award for energy risk management ( energy risk manager of the year ) and is well published . he is the key contributor to a best - selling publication by risk books entitled : managing energy price risk . our meeting was mainly focused on gaining additional insights re leading - edge practices within ene . my key findings are summarized below : 1 . ene does not use corporate price premises . they use market price info only and adhere to mark - to - market accounting . 2 . ene uses the "" heath , jarrow , and morton "" methods for modeling price dynamics ( i ' ve asked bic for a copy of the associated paper ) . they have their own "" home - grown "" software , however , they periodically review selected external developments for internal inclusion and advancement . 3 . vince ' s group comprises of mathematicians , physicists , and operations researchers who are responsible for the development and advancement of ene ' s risk management tools . these models are religiously used by the traders , risk managers , and bus across ene . 4 . investment proposals are screened , risked , and "" roved "" by a separate corporate group ( similar to our special studies and with business and real options skills ) who work in conjunction with the bus . all evaluations and transactions are marked - to - market . 5 . ene does not use efficient - frontier portfolio concepts . they "" vc fund "" any opportunity that has a credible value proposition and can stand on its own . they believe that with the current plentiful liquidity in the market , project - financing in not an issue for a "" good "" opportunity . however , they closely monitor the development of each opportunity , within their deep portfolio , at the corporate level and know how to "" fail fast "" . 6 . the employee reward system is based on p & ls as well as the creation of new business . 7 . most employees have stock options . i really enjoyed my visit and hope to meet with vince again the next time i ' m in houston .",0 +"Subject: var update memo hi grant , as requested i have sent a quick summary document giving an up - to - date description of the var model . i may well have missed some points but cantekin has worked closely with me on any changes so it is worth consulting him on any details i have missed . thanks kirstee",0 +"Subject: friday brown bag lunch on option pricing zimin , i have talked to alex about it . i don ' t think that the additional seminars will crowd out the brown bag lunches . the seminars are really targeted to people who recently joined the group and have very limited , or zero , exposure to energy markets . for most members of the group it should be the piece of cake . brown bag lunches are not that time intensive , except for the speaker . plus , we ran out of days available for lunch meetings . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 03 / 2001 08 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - alex huang @ enron 01 / 02 / 2001 12 : 15 pm to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : friday brown bag lunch on option pricing vince , this is a brief summary of last year ' s friday brown bag lunch option pricing series . we had about 15 lectures , given by the following people : grant , stinston , vasant , krishna , zimin , maureen , clayton , paulo , chonawee , myself , and some outside speakers . we were able to attract some outside audience as well . overall the response is quite encouraging and we have planned to continue it . in light of the presently scheduled seminars on "" energy derivatives "" , it seems our friday schedule will be too crowded if we have seminars on "" energy derivatives "" on two fridays and fbblop on other fridays . what ' s your suggestion ? should we discontinue the fbblop ? we also have scheduled january 19 for tom halliburton ' s visitor leon lasdon from ut austin to talk on non - linear programming . should we cancel it ? best , zimin & alex",0 +"Subject: fyi ",0 +"Subject: re : lawyer ian , sorry for a delay in responding to you . i am currently in london , flying back to houston tomorrow . the problem is not with the lawyers . we worked on our presentation materials together with a professor from another university and we agreed to use these materials only internally . we have to honor our commitment to him . i am sure that this is exactly what you would have expected from us if we had made a similar commitment to you . vince "" macmillan , ian "" on 03 / 21 / 2001 04 : 31 : 27 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : lawyer what do i need to do to move this thing forward ? i suspect that the problem is basically with the lawyers . they only know how to stop things , but in a way they play a role in global society . if it were not for the handicaps they lay on us the rest of the world would never have a chance . - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : macmilli @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com sent : 3 / 8 / 01 12 : 12 pm subject : re : lawyer ian , sorry for a delay in getting back to you . i have one challenge i did not anticipate when i talked to you the first time about our real options internal seminar . the materials were prepared in collaboration with a professor from another school , and there is some sensitivity regarding the intellectual property rights and the ability to distribute the materials outside enron . please , give me some time to find out if i can work around this issue . vince "" macmillan , ian "" on 03 / 07 / 2001 06 : 46 : 28 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : lawyer i still have not heard from your lawyer . i would like to see whar materials you are using and assess how we could work on the topic of real options with enron",0 +"Subject: re : interview with enron corp . cliff : thank you for replying and we want to wish you the best in your new endeavor . texaco is also a good company and i am sure you will be pleased . best of luck ! sincerely , shirley crenshaw cliff parsons on 06 / 27 / 2000 02 : 05 : 13 pm to : shirley crenshaw cc : vince j kaminski , pinnamaneni krishnarao , osman sezgen , cp 38 @ andrew . cmu . edu subject : re : interview with enron corp . dear ms . crenshaw : i recently accepted a quant position with texaco in houston . lara berry from enron contacted me just after that , and i told her of the situation . i agreed to send her my resume ( which i did ) and keep in touch . enron is a fabulous corporation with exciting opportunities . mr . kaminski is very well known in the energy field , and i have read some of his material . i am extremely pleased that you all would be interested in me ; however , i have given my word to texaco . the texaco position offers a lot of opportunity and risk . this is the kind of challenge for which i am looking . if things do not work out , however , i would definitely contact enron again and cherish any opportunity for an interview . thank you very much , cliff parsons - - on monday , june 26 , 2000 , 11 : 27 am - 0500 shirley crenshaw wrote : > > > good morning mr . parsons : > > the enron corp . research dept . would like to conduct a telephone > interview with you at your convenience . > > the interviewers would be : > > vince kaminski managing director > p . v . krishnarao director > osman sezgen manager > > please give me some dates and times either this week or july 5 , 6 & 7 > of next week that you would be available and i will coordinate the > calendars . > > look forward to hearing from you . > > regards , > > shirley crenshaw > administrative coordinator > enron corp . research > 713 / 853 - 5290 > email : shirley . crenshaw @ enron . com > >",0 +"Subject: invitation to cera multiclient study workshop mr . vincent j . kaminski managing director enron capital & trade resources corp . dear mr . kaminski : you are cordially invited to attend a special workshop during ceraweek 2001 in houston addressing new and subtle dynamics in the oil market that could be costing companies millions of dollars in lost revenue . the workshop presents insights from a recent cera study entitled : "" the hole in the barrel : capturing value from a volatile oil price "" . ? the speakers will explain the challenges and suggest practical steps not only to mitigate these forces , but use them as a way to increase revenue . time : monday , february 12 , 2001 , 2 : 00 - 5 : 00 pm location : westin galleria , houston , tx cost : the workshop is a deliverable to members of the hole in the barrel : capturing value from a volatile oil price . for non - members of the hole in the barrel multiclient study , a fee of us $ 3 , 500 will be charged ( fee can be applied to the purchase of the study ) . please visit our online prospectus for the study located at : for more information , please contact me at badedamola @ cera . com or + 1 617 441 - 1348 . barry adedamola associate director , oil & global strategies our relationship with you is very important to us . ? if you wish not to receive e - mail notifications from cera , please send a reply to this message with "" donotemail "" as the subject of your message . ( mailto : info @ cera . com ? subject = donotemail ) ",0 +"Subject: re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture wicke , thanks for a prompt reply . i am not planning any particular trip to houston yet . for the time being , i am about to leave for london , and then poland . i will most likely be at the olympics in sydney in late september , and in ny in early october . mid - october could be the first realistic opportunity to visit with enron , although i am looking forward to seeing you sooner in palo alto . i am simply curious whether and how we could leverage together core competencies and connectivity that both our companies seem to have or are developing . i am senior vice president for visa usa , responsible for strategy and planning . i would probably bring with me ( though i haven ' t discuss it yet ) people in charge of our network or / and our coo . best , andrzej - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , august 18 , 2000 6 : 24 am to : lubowski , andrzej cc : vince . j . kaminski @ enron . com subject : re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture andrzej , thanks . please , send me the information about the dates when you plan to visit houston . also , the information about your position / title / responsibilities ( as well as the info about the other members of your team ) would be useful . i shall be in the bay area between the 10 th and the 20 th of october . hope to see your then . wicek",0 +"Subject: sevil yamin anne , vasant sent this information to norma . i shall fwd his message to you . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 03 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 04 / 10 / 2001 02 : 57 pm to : vince j kaminski / hou / ect @ ect cc : subject : sevil yamin vince , do you want me to do this , or vasant ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2001 02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : anne labbe / enron @ enronxgate on 04 / 06 / 2001 09 : 57 am to : stinson gibner / hou / ect @ ect cc : subject : sevil yamin stinson , i am the new hr generalist for the research group because norma villarreal is moving to business analysis and reporting . earlier this week , norma and i met with vince , and he said that he was going to talk to you about writing up a list of sevil ' s projects / accomplishments for last year and this year , so that we can give her a project bonus since she did not receive a bonus during the normal prc time . at your earliest convenience , will you please email me this list so that i can get started putting together all of the paperwork so that she can receive a check on april 16 th . if you have any questions , please feel free to contact me at 5 - 7809 . i look forward to meeting you , and the rest of the group next week at vince ' s staff meeting . thanks , anne labbe '",0 +"Subject: re : uk rab multiples michael , thanks for the information . we shall have the results for you by tomorrow morning . vince michael anderson @ azurix 08 / 23 / 2000 07 : 48 pm to : vince j kaminski / hou / ect @ ect cc : keith . harris @ wessexwater . com subject : uk rab multiples i talked with keith harris , our cfo at wessex , about the rab multiple graph i gave you . he expressed that the wessex people had originated the data and that the graph was correct , to the best of their knowledge . the only ( but very important correction ) is that they started the graph at an index of 100 % , which does not imply a 100 % of rab multiple . rather , the initial rab multiple was around 80 % , implying that the entire line should be taken down by 20 percentile points . thus the all time hime in late 98 should be closer to the 1 . 3 x rab that i had targeted during our discussion . please call keith if he has not yet contact you .",0 +"Subject: re : article hello , vince ! i just got this from steve bigalow . is it okay to use for monday ' s newsletter ? thanks for the help , sam - - - - - - - - - - - - - - - - - - - - - - forwarded by william smith / corp / enron on 03 / 09 / 2001 12 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - steve bigalow 03 / 09 / 2001 11 : 39 am to : william smith / corp / enron @ enron cc : subject : re : article",0 +"Subject: the february issue of reactions is now live online dear colleague , the latest edition of the financial magazine for the global insurance market is now live at ; http : / / www . reactionsnet . com our monthly analysis of all the financial issues to affect the insurance industry could be just what you were looking for . ? with unique data and superb supplements such as the a - z of reinsurers , asia cover magazine and s simply click on the link to enter the site , http : / / www . reactionsnet . com you can contact us for help at mailto : web - help @ euromoneyplc . com or + 44 ( 0 ) 20 7779 8006 . ? february 2001 ' s cover story ? ? ? insurance tax battle : the war of the loophole although a handful of us insurers failed last year in their attempt to make rivals owned by offshore parents pay more tax , they have vowed to fight on . they are confident of victory . simon challis looks at the loophole that is tying politicians and businessmen in knots . february 2001 ' s this issue features ace ' s ina gamble : duperreault ' s risky bet ace took a very big risk when it acquired the property / casualty operations of cigna back in july 1999 . so far , the gamble appears to have paid off , but can ace keep it up ? captives : havens from a hard market bermudian performance survey : bermuda marches again oecd initiative : fighting spirit profile : stockton re - widening the net plus all this month ' s biggest stories ? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - for your conference diary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + new world old world risks have changed - 15 - 16 march , 2001 , berkeley court hotel , dublin , ireland the @ revolution is driving changes in the business practice of buyers , service providers and providers of risk finance . ? what are the key practitioners doing and what are the implications ? ? dublin 2001 will explore the emerging new dimensions of risk financing , the threats and opportunities and present practical strategies for addressing these issues . for a programme and registration form contact hannah bassally on : ? + 44 20 8895 3258 or e - mail : bassalh @ towers . com . + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + don ' t miss iasa 2001 ! ? iasa is recognized as one of the premier providers of insurance industry education . ? and , iasa ' s annual educational conference and business show is one of the most important industry conferences of the year . during june 3 - 6 , 2001 , choose from over 100 educational sessions , meet more than 200 exhibiting companies , and network with 4 , 000 of your industry colleagues . earn cpe credits , learn about new technologies and hear from industry experts . register today at www . iasa . org ! ? or , for more information , call ( 919 ) 489 - 0991 . we hope to see "" y ' all "" in san antonio , texas during iasa 2001 ! + + + + + + + + + + + + + + + + + + + + + weather derivatives and risk management april 2 - 4 , 2001 , london crowne plaza , st james this two - day weather risk management conference and half - day workshop on valuation of weather derivatives organised by euromoney energy events , in association with weather risk advisory , will bring together the most experienced decision - makers in the weather risk market , and will give delegates a thorough education on the use of weather products . to find out more ; e mail : mailto : energyevents @ euromoneyplc . com ? online : www . coaltransconferences + + + + + + + + + + + + + + + + + + + + + + + + + + + + + * plus ! * ? industry publications - read the executive summaries online ! reinsurance 4 th edition - the definitive industry - standard textbook @ risk - internet & e - commerce insurance and reinsurance legal issues insurance risk securitisation - a guide for issuers and investors to advertise or link your company website to this industry circular please contact nick lipinski tel : + 44 ( 0 ) 20 7779 8199 or e - mail mailto : nlipinski @ euromoneyplc . com if you have any problems logging onto or using ? www . reactionsnet . com please call our dedicated help desk + 44 ( 0 ) 20 7779 8006 or email mailto : web - help @ euromoneyplc . com we send this email because we believe you will find our magazine of value , however if you do not wish to continue receiving our monthly updates please reply to this email with unsubscribe in the title bar .",0 +"Subject: update - reimbursement of individually billed items the use of cell phones and pagers has increased dramatically in the past few years . as a result the accounts payable department has seen a rapid increase in the number of invoices and vendors . with the higher volume , we have reviewed our processes in order to continue our rapid payment cycle . although we encourage vendors to address their invoices to individual employees , they often mail invoices directly to accounts payable . at times they fail to list the individual who uses the pager or cell phone . in these cases we return the invoice to the vendor . if the employee is designated , we try to track him / her down and forward the invoice . the high level of employee movement among jobs and locations at enron has made this increasingly challenging . either way , we end up doing something less productive than paying invoices . to maintain satisfactory response to our vendors and to reduce time necessary for research , we request that employees who have pagers , cell phones , and other individually billed items such as licenses , subscriptions , etc . , pay for them by personal check or charge card ( if applicable  * payment instructions are usually indicated on the invoice ) and request reimbursement through employee expense reports . by submitting these charges on your expense report , you can help us reduce the amount of time spent researching and forwarding invoices , the number of checks generated by treasury , the number of vendors in our database , and the turnaround time for payment of invoices . incidentally , accounts payable is currently installing a corporate - wide web - based expense reporting system similar to what enron international has used for the past year . this will make it even easier to file your expense report and receive quick reimbursement . we  , d like to make this effective immediately . if you have any questions or suggestions , please contact the accounts payable department .",0 +"Subject: re : enron credit modeling discussions hi again , some of you have been kind enough to supply me with information that can be used for the strategic plan ( i am writing for duffie ) . to assist you in gathering further information , it was suggested that i forward a preliminary outline of this strategic plan to your attention . thanks in advance for your assistance , iris table of contents executive summary highlights introduction what is enron credit ? what is the business plan ? what are the products planned ? current status : what we currently trade , how we price . what new models we need to achieve goals . what attempts are being made internally and what external commercial sources are available . swot analysis strengths weakness opportunities threats pricing approach a diagram illustrating how various models are tied together for the overall objective of coming up with final cds and dbs pricing . brief description of each model shown in the diagram . public firm versus private firm what we have as first cut for modeling primarily public firms . our understanding on public versus private firms ' credit risk characteristics , data availability and possible modeling approaches . our proposed approach / plan towards development of private firm model , including comparative analysis , model development , etc . . portfolio level business feasibility analysis accounting breakeven analysis portfolio theory alternative ( short term ) measures kmv ' private firm model moody ' s riskcalc model for private firms comparison of kmv vs moody ' s private firm model future strategy development of private firm pricing models ( short - and long - tenor modelso completion of parent / subsidiary model risk management model for ect business references",0 +"Subject: refined products line - - north american markets - cera alert : decem ber 15 , 2000 cera alert : december 15 , 2000 title : refined products line - - north american markets cera knowledge areas : refined products us margin highlights * responding to falling apparent demand and rising primary inventory levels , us gulf coast unleaded gasoline margins versus wti fell by $ 2 . 26 per barrel to average $ 1 . 45 per barrel during november . gasoline margins have returned to a historically normal range after spending the summer of 2000 at exceptionally high values . cera expects gasoline margins to wti to average $ 2 . 75 per barrel during the first quarter of the new year , $ 1 . 16 per barrel lower than this year ' s first quarter average . * high sulfur no . 2 fuel oil differentials with wti dropped slightly , averaging $ 5 . 97 per barrel in november . despite the drop of $ 0 . 37 per barrel from october ' s average , fuel oil differentials remain at unprecedented values - $ 4 . 20 per barrel higher than a year ago and $ 3 . 46 per barrel greater that the previous five - year average . for the first quarter of 2001 , cera anticipates distillate margins to moderate somewhat but remain at a record high level of $ 4 . 75 per barrel in the first quarter . * jet / kerosene differentials versus wti rose $ 0 . 63 per barrel from the october average , reaching a whopping $ 8 . 59 per barrel in november . in correspondence with the distillate market , jet / kerosene margins are at historically high levels and receiving support from relatively tight fundamentals . cera expects jet / kerosene margins to moderate somewhat in the first quarter in response to seasonal weakening of demand following the holiday travel season but to remain exceptionally strong at an average of $ 5 . 75 per barrel . * margins for us gulf coast 1 % sulfur residual fuel dropped by $ 2 . 15 per barrel , reaching $ 3 . 99 per barrel below wti during november . despite the recent widening of differentials , cera expects soaring natural gas prices to support relatively narrow residual fuel differentials throughout the winter months . residual fuel differentials are expected to average $ 2 . 50 per barrel below wti during the first quarter of next year , at the high end of the historical range . us demand highlights * apparent demand for unleaded gasoline fell seasonally by about 0 . 5 million barrels per day ( mbd ) from the october level , reaching 8 . 36 mbd for the four weeks ending december 8 . demand is averaging less than 1 percent below last year largely because y 2 k concerns helped inflate december demand a year ago . cera anticipates gasoline demand to continue to decline seasonally as colder temperatures arrive , averaging 8 . 08 mbd during the first quarter of 2001 . * reported distillate apparent demand remains exceptionally strong at 3 . 94 mbd for the four weeks ending december 8 , over 7 percent greater than this time last year . this represents a slight increase of about 0 . 05 million barrels ( mb ) from the end - october level of 3 . 90 mb , but still a record high level for early december . with support from low home heating oil inventories , particularly in the northeast , distillate demand has been very strong during the fall of 2000 . cera expects demand to remain strong in the coming winter months , averaging 3 . 79 mb during the first quarter of next year . * apparent demand for jet fuel declined by 5 percent from the october level to reach 1 . 68 mbd for the four weeks ending december 8 . despite the decline , apparent jet fuel demand is over 1 percent above the year - ago level . the relative strength of jet fuel reported demand continues to parallel distillate demand strength with support coming from the use of jet fuel to help mitigate the tight distillate market fundamentals . cera expects the demand for jet fuel to average 1 . 81 mb during the fourth quarter . * reported demand for residual fuel dropped to 0 . 87 mbd for the four weeks ending december 8 , a decline of about 0 . 09 mbd from the october average and a slight increase over the november level . demand for residual fuel is currently 11 percent greater than last year , and surging natural gas prices are expected to result in continued strong residual fuel demand throughout the winter . residual fuel demand is expected to remain in the 0 . 85 to 0 . 9 mbd range during the first quarter of 2001 . us inventory highlights * primary inventories of unleaded gasoline rose to 196 . 5 mb , increasing almost 10 mb from the end - october value . responding to rising stock levels and declining apparent demand , forward supply coverage of gasoline climbed to 23 . 5 days for the four weeks ending december 8 . forward supply is 2 . 5 percent below last year ' s level at this time of year and at its lowest level in the past eight years - although cera still believes coverage is currently sufficient for the level of demand expected this winter . however , cera is looking cautiously at the implications of high distillate refinery yields and production because of the possibility of low gasoline inventories at the start of the driving season in the second quarter of next year . * distillate inventory coverage has remained about level since the end of october at 29 . 2 days of forward supply for the four weeks ending december 8 . despite record high apparent demand , strong refinery production levels helped boost primary distillate inventories slightly , to 115 . 3 mb for this period . primary stocks are 16 percent below last year ' s level at this time and at their lowest historical level ever . although stocks are low , cera does not anticipate shortages to occur this winter . assuming normally cold weather , refinery production and net imports are expected to be capable of meeting demand requirements - albeit at a high price . * jet fuel inventory coverage crept upward by about 1 day of coverage , to reach 25 . 7 days of forward supply for the four weeks ending december 8 . this moves jet fuel coverage above the 23 . 5 to 25 days ' supply range that it had been in for the past four months . the rise of just under 1 day in forward supply was mainly a response to a decline in apparent demand . jet inventories and coverage are expected to become tighter in the coming weeks as the pull from tight distillate markets strengthen , but supplies are expected to be adequate for the winter . * inventory coverage of residual fuel rose by almost 4 days of forward supply from october , reaching 41 . 7 days of forward supply during the four weeks ending december 8 . the increase in coverage was a temporary response to a drop in demand and an increase in stocks . with demand expected to strengthen because of colder weather and high gas prices , cera looks for inventories and coverage gradually to decline in the coming weeks . * * end * * this cera alert will be available in pdf format within 24 hours . this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www . cera . com / tos . html questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: purchase of license for software hello all ! please order visual studio ( visual basics and c + + ) for chonawee supatgiat a new manager with the research group . the information you will need to order this package is as follows : co . # : 0011 rc # : 100038 head of research department : vince kaminski name : chonawee supatgiat title : manager location : eb 1942 phone : 5 - 8756 if you need anything else , please let me know . thanks and have a great day ! shirley 3 - 5290",0 +"Subject: re : lunch przepraszam , ze tak dlugo nie odpowiadalem . nasz team mial zaplanowany wspolny wieczor w piatek , ale nic nie bylo pewne , poniewaz mamy duzo osob sie rozchorowalo . z tegoz powodu wieczor zostal odwolany , a ja jestem wolny . jesli nadal nie ma pan planow na piatkowy wieczor , to ja jestem jak najbardziej za spotkaniem . j vince j kaminski 12 / 19 / 2000 10 : 05 am to : julius zajda / lon / ect @ ect cc : subject : re : lunch juliusz , sorry , i have to cancel the lunch meeting today . pleas , give a call sometimes today . maybe we can meet for drinks friday afternoon . i am taking the next week off . vince julius zajda 12 / 19 / 2000 09 : 25 am to : vince j kaminski / hou / ect @ ect cc : subject : lunch dzien dobry , mam nadzieje , ze nic sie nie zmienilo i jestesmy umowieni na dziesiejszy lunch . proponuje sie spotkac o godzinie 12 . 00 na parterze obok biurka "" security ladies "" ( bo wiem gdzie to jest ) . ubrany jestem w czarne spodnie , bezowe buty i szara bluze . nie jestem pewien czy bede mogl przeczytac potwierdzenie , bo od 10 do 11 . 45 przeprowadzam szkolenie . juliusz",0 +"Subject: pdo ' s in the media more about the pacific decadal oscillation . . . q . will we have a drought in southern california ? a . if the pacific decadal oscillation has switched we are likely to have 20 - 30 years with lower rainfall that we have had since the late ' 70 ' s . we will still have winter rains , but the number of really wet years is likely to decrease .",0 +"Subject: re : enron contact info christie , thanks for taking initiative on the trip so quickly . let ' s meet with jeff shankman to discuss the agenda . i shall try to organize a meeting next week after prcs are over . i agree with your assessment of the group . i was greatly impressed with the caliber of the students . vince christie patrick @ ect 12 / 07 / 2000 06 : 33 pm to : fap @ enron cc : clay degiacinto @ enron , deepa mallik @ enron , dennis feerick @ enron , edson otani @ enron , gustavo palazzi @ enron , "" heather n . thorne ( e - mail ) "" @ enron , jack rejtman @ enron , jaideep singh @ enron , jason cummins @ enron , joshua leventhal @ enron , kim whitsel @ enron , "" louis a thomas ( e - mail ) "" @ enron , murat camoglu @ enron , nick levitt @ enron , omar bassel @ enron , pat henahan @ enron , ram vittal @ enron , steve lessar @ enron , tulika bhalla @ enron , vincent chen @ enron , weigelt @ enron , fap @ enron , "" ' christie . patrick @ enron . com ' "" @ enron , "" ' vkamins @ enron . com ' "" @ enron , jeffrey a shankman / hou / ect @ ect subject : re : enron contact info hi evryone ! vince , vasant and i are very excited about the tiger project ! we all thoroughly enjoyed the opportunity to meet with such an incredibly interesting , enthusiastic and intelligent group . thank you for your time ! for those interested in the houston trip on january 18 - 19 th , please let me know by the 15 th of december so that i can get the best deal on air fare ( one - month in advance ) . also , i ' ll be forwarding the enron information packages to donna piazze for your receipt next week . i am including jeff shankman in this reply , as jeff is a wharton grad , leader of one of our enron business units , and one of the most enthusiastic enron / wharton cheerleaders . please feel free to individually contact me if there is anything i can do for any of you . thanks again for your enthusiastic interest in enron ! - - christie .",0 +"Subject: re : executive program on credit risk vince , next time this program will be offered in ca in october ( see below ) . let me know what you think , tanya . "" isero , alicia "" on 01 / 07 / 2000 12 : 38 : 12 pm to : tanya tamarchenko / hou / ect @ ect cc : subject : re : executive program on credit risk thank you for your message . yes , it will be offered in california at stanford , but not until october 15 - 20 . if you look on our website : www . gsb . stanford . edu / exed ( click on programs ) it will give you the information for both programs ( london and stanford ) . regards , alicia steinaecker isero program manager , executive education stanford university graduate school of business stanford , ca 94305 - 5015 phone : 650 - 723 - 2922 fax : 650 - 723 - 3950 email : isero _ alicia @ gsb . stanford . edu - - - - - original message - - - - - from : tanya tamarchenko [ smtp : ttamarc @ ect . enron . com ] sent : thursday , january 06 , 2000 3 : 23 pm to : isero _ alicia @ gsb . stanford . edu subject : re : executive program on credit risk hi , alicia , i work for enron research and i would like to take the executive program on credit risk . i am trying to find out if this program is going to be offered in california soon . is the date known ? can you , please , let me know . appreciate it , tanya tamarchenko 11 / 19 / 99 01 : 37 pm to : tanya tamarchenko / hou / ect @ ect cc : subject : re : executive program on credit risk ( document link : tanya tamarchenko ) "" isero , alicia "" on 11 / 10 / 99 06 : 10 : 57 pm to : "" ' credit risk mailing ' "" cc : "" weidell , anna "" , "" sheehan , alice "" ( bcc : tanya tamarchenko / hou / ect ) subject : executive program on credit risk subject : announcement : executive program on credit risk modeling credit risk modeling for financial institutions february 27 - march 2 , 2000 in london , at the lanesborough hotel risk management specialists , stanford business school professors of finance darrell duffie and kenneth singleton will be repeating their successful executive program on credit risk pricing and risk management for financial institutions . the course is created for risk managers , research staff , and traders with responsibility for credit risk or credit - related products , including bond and loan portfolios , otc derivative portfolios , and credit derivatives . this program includes : * valuation models for corporate and sovereign bonds , defaultable otc derivatives , and credit derivatives * models for measuring credit risk , with correlation , for portfolios * analyses of the empirical behavior of returns and credit risk * the strengths and limitations of current practice in modeling credit risk * practical issues in implementing credit modeling systems application form : credit risk modeling for financial institutions london , february 27 - march 2 , 2000 this form may be completed and returned by email , or may be printed and sent by fax to : stanford gsb executive education programs fax number : 650 723 3950 you may also apply and see more detailed information by visiting our web site at : http : / / www . gsb . stanford . edu / eep / crm applications will be acknowledged upon receipt . if you have not received an acknowledgement within two weeks , please contact us . please complete all sections . all information is kept strictly confidential . name : put an x beside one , please : male : female : citizenship : job title : company : your company ' s main activity : business mailing address : business phone ( all codes please ) : business fax : email address : home address : home phone : nickname for identification badge : emergency contact name : emergency contact phone : title of person to whom you report : your job responsibilities and experience related to this course : ( please provide a brief job summary here , or attach and send a biographical summary containing information relevant to your purpose and qualifications for the course . ) college or university education : please list , by degree : college or university dates degree granted _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ please note : all classes and discussions are conducted in english . in order to reserve a place in the course , the program fee of us $ 6 , 500 is due upon notification of acceptance . this fee covers the tuition , most meals , and all course materials ( including a proprietary manuscript on credit risk pricing and measurement ) . the program classes will be held at the lanesborough hotel at hyde park corner , london . hotel accommodations are not included . our refund policy is available upon request . please state the source from which you heard about this course : name and date : if you would like a hard copy brochure and application form , please contact : ( make sure to include your mailing address ) alicia steinaecker isero program manager , executive education stanford university graduate school of business stanford , ca 94305 - 5015 phone : 650 - 723 - 2922 fax : 650 - 723 - 3950 email : isero _ alicia @ gsb . stanford . edu ",0 +"Subject: final version of the presentation george , here is the presentation . i wasn ' t able to add a table showing the distribution of bids by fuel type for april 2000 since the database is not updated . also , in the map i didn ' t make those minor changes . because when i try to erase those names , the map looks ugly . when i get back from california let ' s get together and discuss the feedbacks from traders . sevil ,",0 +"Subject: congratulations - well deserved . ",0 +"Subject: interviews hi vince , thanks for taking the time off to meet with me last week . i did enjoy meeting you and your co - workers in the research group . i do realize my background may not be the best fit for the type of work done in your division . i ' ll be job hunting over the next several weeks , and would really appreciate it if you could let let me know if something opens up at enron . thanks again and best regards . ruwan - - * ruwan jayasuriya economics department ruwan @ rice . edu rice university http : / / www . ruf . rice . edu / ~ ruwan houston , tx 77005 *",0 +"Subject: re : follow up on houston opportunity anjam : 11 : 30 works for me . give me a call . grant .",0 +"Subject: re : dale nesbitt meeting tues margaret , i shall try to invite hunter shiveley who is in charge of gas market fundamentals . vince margaret carson @ enron 11 / 02 / 2000 09 : 57 am to : vince j kaminski / hou / ect @ ect cc : james d steffes / na / enron @ enron subject : dale nesbitt meeting tues vince do you plan on inviting anyone from the power issues side - - perhaps ben jacoby , julie gomez , jean mrha , scott neal to this meeting ? thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 11 / 02 / 2000 09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : john goodpasture 11 / 01 / 2000 05 : 53 pm to : vince j kaminski / hou / ect @ ect , margaret carson / corp / enron @ enron , mike mcgowan / et & s / enron @ enron , dave neubauer / et & s / enron @ enron , robert hill / npng / enron @ enron , shelley corman / et & s / enron @ enron cc : danny mccarty / lon / ect @ ect , bill cordes / et & s / enron @ enron , michael moran / et & s / enron @ enron , rod hayslett / fgt / enron @ enron subject : dale nesbitt meeting margaret carson is going to join us in the meeting next week with nesbitt . vince will check with ena to see if they also want to attend . i would also like to determine if ets and / or nbp would want to send a representative ( s ) , although margaret said she would take copious notes for distribution to other key players as necessary . we should ask nesbitt how he would structure a deal for multiple clients ( eg . ets , nbp , ena , and maybe el paso ) . [ we need to remain aware of any "" affiliate "" issues that may result , and make certain that we are in complete compliance with the regs . ] i will wait until after our meeting with nesbitt before deciding if / how to approach el paso . presumably , if asked to particpate , they would share the cost and have independent access to any working model that is developed . jng - - - - - - - - - - - - - - - - - - - - - - forwarded by john goodpasture / ots / enron on 11 / 01 / 2000 04 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 10 / 30 / 2000 04 : 42 pm to : john goodpasture / ots / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : dale nesbitt john , i talked to dale nesbitt . he suggested that the best way to evaluate his model is to go through a one week intensive project with assistance of somebody from his company . our cost is a flat fee of $ 12 , 500 that would be deducted from the purchase price of $ 55 , 000 , in case we buy the software package . the price of 55 k is indicative and will be adjusted based on the required level of support . dale will be in houston next week . i have tentatively invited him to visit with us on tuesday , november 7 , at 3 : 00 p . m . he will adjust if you are busy at this time . please , let me know what you think . vince",0 +"Subject: preliminary interviews with the research group good morning professor ordonez : vince would like to bring ernesto and carlos in for a preliminary interview . vince and stinson are available on tuesday , december 5 or wednesday , december 6 . should i contact them personally , or will you arrange the interviews ? i will need to know the times they are available on these days and i will also need copies of their resumes . if you need any information , please call me at 713 / 853 - 5290 . regards , shirley crenshaw administrative coordinator enron research group - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 27 / 2000 10 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 11 / 27 / 2000 10 : 47 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : re : greetings shirley , please , invite them for a preliminary interview , stinson , zimin , paulo and myself . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 27 / 2000 10 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - carlos ordonez on 11 / 27 / 2000 10 : 15 : 51 am to : vince . j . kaminski @ enron . com cc : subject : re : greetings dear vince , i am sorry for the dely in answering . these are their phone numbers : ernesto hernandez : ( 713 ) 532 - 0573 carlos gorrichategui : ( 713 ) 668 - 0408 . the best way to get a hold of them at this point would be through me . i would pass along the information and then they can contact you . cheers , carlos at 12 : 50 pm 11 / 21 / 00 - 0600 , you wrote : > > carlos , > > i need their phone numbers . > > vince > > > > > > carlos ordonez on 11 / 21 / 2000 11 : 45 : 45 am > > to : vince . j . kaminski @ enron . com > cc : > subject : re : greetings > > > vince , > > i gave you both their academic reports from here and mexico and panama . > this > information i believe also contain some personal info . would you need more ? > one of them was a bit nervous about the formality of turning in an actual > resume . . . > > please let me know whether the academic info is not enough . > > cheers , > > carlos > > > > > > at 10 : 41 am 11 / 21 / 00 - 0600 , you wrote : > > > > carlos , > > > > please , forward their resumes to us and we shall set up an interview for > > them . > > > > vince > > > > > > > > > > > > carlos ordonez on 11 / 21 / 2000 09 : 30 : 08 am > > > > to : stinson . gibner @ enron . com > > cc : vkamins @ enron . com > > subject : re : greetings > > > > > > dear vincent and stinson , > > > > both my students would love to come visit you guys for an informal > > visit in the near future . please let me know well ahead of time > > when they can come . if possible , see to it that their parking expenses > > be paid when they do come . > > > > > > i ' ll be in touch with you all over the next months about this and > > a possible postdoctoral / trainee agreement ( world lab . ) . > > > > cheers , > > > > carlos > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: gentlemen , spoke to vince k today and asked if he would send stinson gibner to sidney to be available on monday to review the x system . paul , make sure our x friends are available and the confidentially agreement is signed . further , i spoke to phillip b . about a technical going too . g ' day mates , gary",0 +"Subject: a letter i sent fiona , ? i sent you a letter a while ago to obtain enron ' s approval of the text . ? are you still ? my contact for this ? ? if not , please let me know who i should send the ? promotional material for approval . ? thanks , julie brennan ? lacima group - covering letter for book brochures - final . doc",0 +"Subject: re : var for 1 . 5 years for frozen portfolio vince , i sent it to you yesterday , sending again , let me know if you don ' t get it . tanya . tanya tamarchenko 06 / 20 / 2000 02 : 15 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : backtesting : using historical vols versus implied",0 +"Subject: re : anita dupont resume sheila , no , we have to go through the posting phase first . i shall ask shirley to provide the job description . vince from : sheila walton 08 / 04 / 2000 02 : 44 pm to : vince j kaminski / hou / ect @ ect cc : norma villarreal / hou / ect @ ect subject : re : anita dupont resume vince , alice has strong qualities for a sr admin asst . vince , have we posted this position on the job posting board ? if so , great . if not , we need to post this opening to prove that we have given an opportunity to all existing enron employees before we go outside to external candidates . otherwise , existing employees have a valid complaint that we are limiting their advancement within enron but hiring externally . if we have not posted this , i will have the recruiter contact shirley so shirley can give us a job description . then we can post and interview anita simultaneously . please let me know asap if this has been posted . thanks . sheila walton vince j kaminski 08 / 02 / 2000 08 : 48 am to : sheila walton / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : anita dupont resume sheila , i would like to hire anita dupont as a senior admin assistant , reporting to shirley . please , call me about it after you review the resume . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000 08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont @ enron 08 / 02 / 2000 08 : 17 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : anita dupont resume vince : here is the resume you requested . thanks . anita",0 +"Subject: entouch newsletter business highlights enron industrial markets metal bulletin - iron and steel awards for 2000 pushiest entrant : enron , the us commodity trading company , which promised it would revolutionize the steel business by offering futures in hot rolled coil via its online market place . the eim fundamentals analysis group is excited to announce that dave allan has joined as a director , responsible for all forest products lines . he comes to eim with 20 years of experience in the forest products industry , of which 14 were spent at abitibi and 6 with pulp and paper week . please join us in welcoming dave . the siebel team ( "" the force "" ) continues to work towards program implementation of its customer management system in early may , with training to begin at the end of april . stay tuned for updates . enron global lng enron global lng is positioning itself to be a creator and leader of a global wholesale lng market . the rising prices of natural gas in the united states and concerns over future energy supplies have created a bullish outlook for lng in the u . s . and around the globe . lng has played a major role in serving energy needs in many parts of the world , but its place in the u . s . energy picture has been limited . an lng market that spans the globe can supply vast amounts of otherwise stranded gas to the world ' s growing appetite for cleaner burning fuels . enron global lng sees great opportunity for enron ' s wholesale energy business model to help shape yet another energy market . in the news enron corp . says first - quarter profit rose 20 percent houston , april 17 ( bloomberg ) - - enron corp . , the largest energy trader , said first - quarter profit rose 20 percent as sales almost quadrupled . profit from operations rose to $ 406 million , or 47 cents , from $ 338 million , or 40 cents , in the year - earlier period . enron raised its 2001 profit forecast to $ 1 . 75 to $ 1 . 80 a share , from its january projection of $ 1 . 70 to $ 1 . 75 . first - quarter revenue surged to $ 50 . 1 billion from $ 13 . 1 billion as enron boosted the volume of power sold in north america by 90 percent . enron had a first - quarter gain of $ 19 million , or 2 cents a share , for an accounting change , making net income $ 425 million , or 49 cents a share . there were no charges or gains in the year - earlier period . welcome new hires egm - janelle russell , eim - david allan , sylvia carter ena - sasha divelbiss , amy quirsfeld , judy zhang , annette thompson , kelly donlevy - lee , grant patterson transfers ( to or within ) ena - william abler , magdalena cruz , barbara taylor , james reyes , marvin carter , angel tamariz , jesse bryson eim - cassandra dutton , christine sullivan , camille gerard , sherri kathol , jennifer watson egm - steven batchelder legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: damages limitations bill and vince , please see the attached memorandum . vince , this relates to what we briefly spoke about during our recent meeting . cheryl , can you set up a meeting for bill , vince and i to meet and discuss ? thanks . rz",0 +"Subject: info about enron ' s bandwidth market martin , can you , please , call shu and provide him with information about ebs ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 25 / 2000 05 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jun shu on 10 / 23 / 2000 07 : 27 : 49 pm to : vkamins @ enron . com cc : subject : info about enron ' s bandwidth market dear dr . kaminski , i enjoyed your talk this afternoon at ieor very much . i wonder if you could point me to some information resource on enron ' s bandwidth market . i am a ph . d student at ieor . i work with professor oren and professor varaiya from eecs department on the topic of pricing the internet . in particular , i am designing pricing mechanism in the framework of the diffserv architecture which is the latest proposal made by ietf to provide scalable service differentiation . i would very much like to get in touch with people in enron working on the similar topics . thank you very much . jun shu http : / / www . ieor . berkeley . edu / ~ jshu",0 +"Subject: addition to enron - summer internships vince : please include ram vittal to the summer internship list , if you have not already done so . according to my count , that make a total of 8 students from the enron tiger team who have a desire to work with enron . thanks , donna - - - - - original message - - - - - from : vittal , maheshram [ mailto : mvittal @ wharton . upenn . edu ] sent : friday , february 02 , 2001 10 : 17 pm to : ' fap ' subject : re : call from enron donna : i had submitted my resume directly to their recruiting office and haven ' t heard from them . i would be very willing to reforward my resume , if required . thanks , ram",0 +"Subject: career opportunity dear mr . kaminski : i recently sent you a copy of my resume and am just following up to see if it reached you without any problems ? i know you are a very busy professional and i would like to apologize for any inconvienence i have caused . i am just very dedicated in trying to obtain a career with your very well - respected company . i would really like to put my expereince and education to work for enron , as well as establish my life around the company . i am looking for an entry - level postion if that ' s what it takes to bulid my life and family enron corporation . once again mr . kaminski , i am deeply apologetic for taking up any of your time . any information you could help me with about my resume would be greatly appreciated . thank you for your valuable time . warmest regards , eric hilton",0 +"Subject: risk chapters conrad - - i am working on development of enrononline ' s web site . i got your name from vince kaminski . could you send me the pdf files of the chapters that you and vince discussed for posting on enrononline along with any copyright information ? thanks kal shah 001 713 853 9354 - - - - - - - - - - - - - - - - - - - - - - forwarded by kal shah / hou / ect on 06 / 21 / 2000 12 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 06 / 21 / 2000 12 : 39 pm to : kal shah / hou / ect @ ect cc : subject : re : enron site / mepr 2 - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 21 / 2000 12 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - conrad gardner on 06 / 05 / 2000 09 : 16 : 05 am to : vince . j . kaminski @ enron . com cc : subject : re : enron site / mepr 2 sorry vince one must have got away ! will contact dan shortly . conrad at 08 : 04 am 6 / 5 / 00 - 0500 , you wrote : > > conrad , > > thanks for your message . > > there are 3 papers enron contributed to the last mepr . > > there is also another paper on electricity i contributed to the "" red book "" > on us > power markets , as well as a paper or credit risk management , and a paper > on weather derivatives . all these papers included in other risk books were > written by enron > employees . > > we would like them included as well , if technically possible . > > > i think that offering other energy related books through our site , in > addition to mepr 2 , > is fine , but i would leave the decision to dan diamond , who is responsible > for the project . > > > vince > > > > > > conrad gardner on 06 / 05 / 2000 07 : 08 : 36 am > > to : vince . j . kaminski @ enron . com > cc : > subject : enron site / mepr 2 > > > > date : mon , 05 jun 2000 13 : 02 : 02 > > to : vince kaminski > > from : conrad gardner > > > > dear vince > > > > thanks for the call and email on friday . i will contact masuyuki and > follow > it from there . > > > > regarding the enron site , i think it is absolutely fine to put up the two > enron chapters ( i ' ll provide pdfs ) , and prevent any customer leakages from > your site by the use of "" submit "" buttons . as mentioned , i ' ll offer a 20 % > discount on mepr 2 to customers but would you be interested in some of other > energy titles ? - please let me know . > > > > many thanks > > > > conrad gardner > > > head of book publishing > risk books > haymarket house > 28 - 29 haymarket > london > swly 4 rx > direct tel : + 44 ( 020 ) 7 484 9750 > main tel : + 44 ( 020 ) 7 484 9700 > fax : + 44 ( 020 ) 7 484 9758 > e - mail : conrad @ risk . co . uk > www . riskpublications . com > > > > > > > head of book publishing risk books haymarket house 28 - 29 haymarket london swly 4 rx direct tel : + 44 ( 020 ) 7 484 9750 main tel : + 44 ( 020 ) 7 484 9700 fax : + 44 ( 020 ) 7 484 9758 e - mail : conrad @ risk . co . uk www . riskpublications . com",0 +"Subject: re : enron / stanford program hi vince , stinson thank you for hosting my visit to enron and arranging for me to meet with you and other decision - makers at enron . the meetings been very productive on my side , as i try to formulate the project more clearly . we are entering the period that i have to set up the research assistantships ( ra ) for next year for giuseppe and the other student i have committed to support on this project . school starts in late september , but already i have to start putting together the papers for the ras in the fall , as per departmental requirement . would it be possible to put the project in place soon , so that i can do the raship papers for the students ? i expect i will start having pressure from the department to do the paperwork for these raships early september , and i have to have them in place by the third week of september , just before school starts . i am attaching below the same draft of a letter i had sent you in a previous e - mail , which would be required to set up the project at stanford . please , let me know how you would like to proceed . again , thanks for your hospitality and i look forward to productive collaboration during the coming year and beyond . best regards , nick ps : vince , i look forward to seeing you during your visit to the bay area in october . draft of letter to be sent from enron to stanford . prof . nicholas bambos 420 terman engineering center management science & eng . dept . and electrical engineering department stanford university stanford , ca 94305 dear nick , we are happy to provide gift funds of $ 100 , 000 per year , over three years , to support a program in your research group , related to bandwidth markets / trading and networking technologies . enron would like to support research activities in the above mentioned area , including pd . d . student work , research seminars etc . there may also be opportunities to have the supported ph . d . students do summer internships at enron , related to their research interests . please find enclosed a check of $ 100 , 000 payable to stanford university for supporting this research effort in your group during the first year . best regards , name and title",0 +"Subject: vince , liberty gas storage project - we appreciated the insight from zimin lu on the liberty gas storage project . i had originally thought that enron could negotiate a deal directly with hng storage co . on the joint development of these facilities . however , hngs has now retained wasserstein pirella to "" market "" the opportunity . [ fyi - wasserstein was the investment banker that handled the recent sale of the market hub partners storage facilities , so they certainly would have a current list of interested parties . ] unfortuneately , we will now have to participate in another "" auction "" if we are to pursue this further . i ' ll let you know what we decide to do . alaska / northern canada pipeline - i would like to discuss ways that enron might enhance our prospect of participating in the initiative to bring substantial new gas reserves from alaska and northern canada to the lower 48 . a large equity investment in a very expensive , regulated pipeline is not likely to get much support within enron . instead , our competitive advantage may best be realized through the efficient and creative utilization of the existing us pipeline grid , ( "" backhaul "" on northern natural , expansion opportunities on northern border and nng , or even capacity exchanges with other pipeline operators ) . i think it would be very useful if we had the capability to model the impact of the evolving north american marketplace on that initiative , and vice versa . any insight we could develop on who will be the eventual "" winners "" and "" losers "" if / when that large volume of new gas enters the market would be valuable . i will look forward to our discussion tomorrow ( thursday ) at 1 : 30 pm . regards , jng",0 +"Subject: re : presentation david , i am leaving for vacation this weekend and i haven ' t received the copy of your presentation yet . the window during which i could make changes to my presentation is closing very fast . let ' s do the following : i shall keep my presentation as is ( this means that i shall use the copy of my presentation i sent to dawn scovill and you this week ) . if there is an overlap between our presentations , so be it . dawn , please use the copy of my presentation i sent you earlier this week . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 17 / 2000 04 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 16 / 2000 08 : 02 am to : "" dawn scovill "" @ enron cc : sobotkad @ kochind . com , vince j kaminski / hou / ect @ ect subject : re : presentation dawn , i met david sobotka from koch this morning and we talked about coordinating our presentations . this means there will be changes intended to avoid overlaps . sorry for that . the portions of my presentation will survive ( those about valuation paradigms ) and i shall add a few more pages on accounting treatment of weather derivatives plus more specific examples . david will cover primarily market evolution + plus examples of some standard structures , and we shall both give more interesting examples of specific deals executed by our companies . i shall send you an updated version of my part next week . let me know what the deadline is . vince "" dawn scovill "" on 03 / 14 / 2000 07 : 53 : 47 am to : "" vince j kaminski "" cc : subject : re : presentation thanks - - would you like me to include these in the conference book ? or do you anticipate changes ? dawn from : dawn scovill , conference coordinator "" powerful new ideas 2000 "" dawn @ perfectmeeting . com - - - - - original message - - - - - from : vince j kaminski to : cc : shirley crenshaw ; vince j kaminski ; vince j kaminski sent : monday , march 13 , 2000 1 : 56 pm subject : presentation > > > dawn , > > i am sending you an electronic version of my presentation . > > vince kaminski > > ( see attached file : fplo 400 . ppt ) >",0 +"Subject: re : seismic data on oil & gas field development via satellite there may be a business opportunity with this company , but i would not advise making an investment . kevin garland richard reichardt 10 / 10 / 00 12 : 30 pm to : mike mcconnell / hou / ect @ ect cc : larry lawyer / enron communications @ enron communications , tom gros / enron communications @ enron communications , vince j kaminski / hou / ect @ ect , kevin garland / enron communications @ enron communications , richard dimichele / enron communications @ enron communications , ken rice / enron communications @ enron communications subject : seismic data on oil & gas field development via satellite mike , using nasa satellite transmission of maritime data and establishing a houston data center to consolidate and centrally process 3 d seismic data surveys for oil and gas extraction , exploration and development could save the petroleum industry more than $ 300 million dollars annually through reduced operational expenses . added value in shortening the time to process and deliver the finished surveys should generate more than $ 26 million per site ( based upon $ 15 / barrel for average oil well production to market 30 days sooner ) in revenue . by re - selling this data to market analysts or by internally using this data for forecasting future oil / gas production enron could increase the accuracy of forecasting reserves and production capabilities globally . by holding the data as exclusive ( or partially exclusive ) , enron would have a significant market advantage in futures pricing for oil and gas . ( vince ' s team is quantifying the valuation of this information ) attached please find an updated version of the business case for seismic data transfer via satellite , by a geophysicist at spacedata - william k . aylor , calculated using $ 22 / barrel oil . based upon your availability , jon adler and i would like to make a presentation to you ( or your designated representative ) on the enron potential of this opportunity , sometime next week ( 17 - 20 october ) . - sdt business case 4 . pdf v . r . , richard reichardt enron broadband services ( 713 ) - 345 - 8377 ( office ) ( 713 ) - 907 - 3767 ( mobile ) 1400 smith street , suite eb 4364 houston , texas 77002",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 qqqzj order for : maureen raymond 1 x ( compaq armada m 700 $ 3522 ) enron it purchasing",0 +"Subject: congratulations vince , congratulations on your promotion to managing director . you certainly deserve it . zhiyong",0 +"Subject: houston research opportunity hi vince , thank you for offering the opportunity in houston to me last week . i guess i would interested to discuss it further with you - one question i have is about which commercial groups within the houston office you were looking for additional research coverage on ? please let me know when you might be free to talk - the best times for me would be from between 12 pm and 5 pm houston time ( i am usually home from 3 pm houston time ) . regards , anjam x 35383 home : 0208 877 9741",0 +"Subject: re : completion of ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 vince , you have been approved for the technical view within ibuyit . changes will take effect on next login . thank you , sap security ( eva - from : raul davila / enron @ enronxgate on 04 / 19 / 2001 06 : 02 pm to : sap security @ enron cc : subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 approved - - - - - original message - - - - - from : tow , eva on behalf of sap security sent : thursday , april 19 , 2001 5 : 39 pm to : davila , raul cc : vkamins @ enron . com ; crenshaw , shirley subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 raul , raul , vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security . thanks ! shirley crenshaw @ ect 04 / 19 / 2001 03 : 01 pm to : sapsecurity @ enron . com cc : vince j kaminski / hou / ect @ ect subject : ibuyit form attached please find the completed form for vince kaminski , managing director , research group . he will be approving all purchases for cost center 107043 . > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect cc : subject : ibuyit form hi shirley there were two shirleys , so sending to both > isc help desk",0 +"Subject: model validation trena , i have received your message . please , send the model for review to zimin lu . maureen raymond and myself will work with zimin to review the model . vince",0 +"Subject: enron ' s 2001 goals our vision to become the world ' s leading company positions our company for great success this year and beyond . our success is dependent on execution . with that in mind , we are making enron ' s 2001 corporate and business unit goals available to employees . please take a few minutes to review our 2001 goals on enron ' s intranet at http : / / 172 . 28 . 92 . 190 / bowne / we believe they will help you gain a better understanding of our vision for the company and will inspire you to identify innovative ways to help your organization and enron achieve our objectives . we have a lot to accomplish this year , and with your hard work and dedication , we can realize another year of stellar performance .",0 +"Subject: fwd : dinner for paula return - path : received : from rly - zbo 2 . mx . aol . com ( rly - zbo 2 . mail . aol . com [ 172 . 31 . 41 . 2 ] ) by air - zbol . mail . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 17 : 38 : 20 - 0500 received : from mailman . enron . com ( mailman . enron . com [ 192 . 152 . 140 . 66 ] ) by rly - zbo 2 . mx . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 17 : 38 : 03 - 0500 received : from dservl . ect . enron . com ( dservl . ect . enron . com [ 172 . 16 . 1 . 37 ] ) by mailman . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / corp - 1 . 03 ) with esmtp id waal 4060 for ; fri , 28 jan 2000 22 : 37 : 36 gmt received : from notes . ect . enron . com ( notes . ect . enron . com [ 172 . 16 . 4 . 33 ] ) by dservl . ect . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with smtp id qaa 22343 for ; fri , 28 jan 2000 16 : 38 : 01 - 0600 ( cst ) received : by notes . ect . enron . com ( lotus smtp mta v 4 . 6 . 5 ( 863 . 2 5 - 20 - 1999 ) ) id 86256874 . 007 c 528 f ; fri , 28 jan 2000 16 : 37 : 55 - 0600 x - lotus - fromdomain : ect from : "" vince j kaminski "" to : vkaminski @ aol . com message - id : date : fri , 28 jan 2000 16 : 37 : 55 - 0600 subject : dinner for paula mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii content - disposition : inline content - transfer - encoding : 7 bit - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 28 / 2000 04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : marie thibaut @ enron communications on 01 / 26 / 2000 02 : 55 pm sent by : marie thibaut @ enron communications to : ametz @ uswebcks . com , steve lovett / enron communications @ enron communications , richard weeks / enron communications @ enron communications , anthony mends / hou / azurix @ azurix , vince j kaminski / hou / ect @ ect cc : paula corey / enron communications @ enron communications subject : dinner for paula alaina , richard , vince , tony , elizabeth and paula - following are directions to paula ' s birthday dinner ( 6 : 30 pm ) at my house on saturday night , the 29 th note to all i hope these directions are somewhat clear but . . . . before you read my directions please be advised that it is a well known fact that marie thibaut has absolutely "" no sense of direction "" ! ! directions to my house - coming in from beltway 8 north / sam houston tollway - exit onto tomball parkway / 249 n and exit towards fml 960 , turn right on 1960 , stay on 1960 for approximately 3 miles . turn left on wunderlich ( there is a 24 hour gym on the corner ) stay on wunderlich until you come to 14515 trophy club condos - on the left side of street . turn left into the condos and press * 6070 at the gate entrance . continue to the left ( which bears slightly to the right ) , pass over 2 speed bumps until you come to the end of street . turn left and my unit is on the right side upstairs # 706 . call me at 281 - 587 - 2029 if you have trouble with my directions . directions to my house - coming in from i 45 - exit at 1960 going west , stay on 1960 for approximately 9 miles . turn right on wunderlich until you come to the 14515 trophy club condos - on the left side of street . turn left into the condos and press * 6070 at the gate entrance . continue to the left ( which bears slightly to the right ) , pass over 2 speed bumps until you come to the end of street . turn left and my unit is on the right side upstairs # 706 . call me at 281 - 587 - 2029 if you have trouble with my directions .",0 +"Subject: wall street journal subscription good morning mary sue : can you please get the wall street journal for kevin kindall ? it should be delivered to the 19 th floor along with the rest . co . # 0011 , rc # 100038 thanks and have a great day ! shirley 3 - 5290",0 +"Subject: enron research and ebs engineering and operations group technical forum scott : this is the memo that vince sent to the "" top "" management for the offsite . i am sending it to you for your information . glad you can be there on thursday evening . * * * * * * * * * * * * i would like to invite you to an off - site meeting of john griebling ' s organization and the research group . date : april 27 - april 29 location : breckenridge , colorado as you know , john griebling is managing the network design and construction project currently under way in ebs . the research group is actively involved in this effort which requires advanced quantitative skills in the area of stochastic optimization and stochastic processes ( for modeling and forecasting internet traffic flows ) . the objective of this meeting is to develop common language and accomplish transfer of skills between the two groups , to facilitate cooperation on this project in the future . we are inviting ken rice and kevin hannon to this meeting . we would appreciate if you could speak , together with kevin and ken , on strategic directions of ebs . it is important for a group of technical people , with relatively specialized technical skills , to understand the big picture . i am attaching the preliminary agenda for this meeting . vince kaminski",0 +"Subject: re : risk magazine - enron sponsored issue on energy derivatives yes , i will have sam send him two copies . sam : can you send the below enron employee 2 copies of "" the book "" thanks ! vince j kaminski 02 / 28 / 2000 08 : 21 am to : shirley crenshaw / hou / ect @ ect cc : subject : risk magazine - enron sponsored issue on energy derivatives shirley , do we still have some copies left ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 28 / 2000 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - gopalakrishnan subramaniam @ enron _ development 02 / 25 / 2000 11 : 24 pm sent by : subramaniam gopalakrishnan @ enron _ development to : vince j kaminski @ ect cc : subject : risk magazine - enron sponsored issue on energy derivatives i have recently come on board as treasurer , enron india . prior to joining , i was with reliance industries , a petrochemical conglomerate in india . the central banking authorities are now thinking of permitting corporates to hedge their oil and other related risks . i believe the literature published by risk in collaboration with enron has come to be considered as an industry standard . would it be possible to arrange for two copies to be sent across to us . thanx n regards g . subramaniam treasurer , enron india pvt . ltd . 36 , maker chambers vi , nariman point , mumbai 400 021",0 +"Subject: understanding and applying financial mathematics hello - this email is a reconfirmation that you have received the speaker package i have sent you last month regarding the above titled training course . if you have not received it , please contact me asap and i will send you all the information needed for the training . also , please remember to hand in the following : your biographical details speaker checklist copy of your presentation for our documentation printed materials ( please keep in mind that you will need to bring your presentation with you at the training , as we will not have it pre - downloaded ) . please keep in mind the deadline of july 27 and please call or email me with any questions you have . ? regards , amy lamonsoff training coordinator ? t ( 212 ) 925 - 1864 xl 48 f ( 212 ) 925 - 7585 alamonsoff @ watersinfo . com ? risk waters group 270 lafayette street , suite 700 new york , ny 10012",0 +"Subject: the installation of the equipment you ordered is completed - - - automatic notification system ( request # : ecth - 4 r 5 mlm ) requested for : vince j kaminski requested by : shirley crenshaw the installation of the equipment ( see below ) has been completed . en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0 en 6600 128 mb installed in desktop 21 "" vl 100 monitor",0 +"Subject: all about current and near future gas / power markets it ' s all here . comments appreciated . best regards , jhherbert - june 2000 . pdf",0 +"Subject: maureen ' s expenses it appears that administratively maureen ' s expenses in coming to london cannot be processed from this office . can i confirm that there is no doubt that the london office will pay these . could i therefore please ask shirley to process them in houston , and we will find out how they can then be charged back from research in houston to the london metals cost centre . thanks in advance for you help . tani nath",0 +"Subject: interview - numerical methods & finance dear tanya : it was a great pleasure to have met you . i very much enjoyed the interview and your insightfull questions . i am keenly aware that many of the methods that i discussed with you yesterday are unique , new and not reported elsewhere . this is true both about the work i did in whole yield curve interest rate pricing as well as garch . the innovations stem from the extensive numerical analysis experience that i have both in turbulence physics as well as finance . they entailed considering the problem from its raw formulation , mathematical analysis , physical interpretation , taylored numerical method development , software writting and develoment and data management . as to why i have not yet published anything the answer is that the driver in my work has been adding value to the business not publishing . publishing is however an option that has always been open with my former supervisor who is aware of the work that i did . i not however that these results were possible only by exploring to the utmost extent the mathematics , finance , software design and data managemnet aspects of the problem . absence of any of these aspects is likely to cripple performance and execution . please recall that as good as they were the performance measures that i mentioned to you were for a single processor machine . vastly better can be achieved with both soft parallelism ( multithreading ) as well as hard parallelism ( heterogenous network ) . this fo course allows us to step up the reach of the models used . in fact i know for a fact that better can be done than what i mentioned in the interview . from work that i have been doing on the integration of the swaption volatility surface on the whole yield curve interest rate model itm and otm instruments can be included in both the callibration , pricing and hedging . i look forward hearing back from you soon and particularly to the opportunity of us cooperating . best regards joao",0 +"Subject: sevil yaman hi norma , sevil ' s primary project has been the generation bidding analysis for the east power desk . she worked closely with the power fundamentals group and the it group in collecting and organizing the data , and then developing the analysis . sha has focused on the pjm area and plans to expand the analysis to other regions in the east . sevil has also investigated the issue of risk premia in power prices compared to marginal cost . vasant",0 +"Subject: re : private firm schedule thanks for the schedule update - - - - - original message - - - - - from : kirkpatrick , eric sent : monday , april 23 , 2001 10 : 52 am to : mack , iris ; dhar , amitava ; brent , richard ; salmon , scott ; chaney , craig ; mumford , mike ; detiveaux , kim ; cruver , brian subject : private firm schedule all : this is the rough schedule we came up with at today ' s video conference : submit rfp to d & b , experian , and amadeus 2 days 25 apr mumford receive back rfps 1 . 5 weeks 4 may mumford complete evaluation , selection & authorization 1 week 11 may mumford / mack contract complete and signed 2 weeks 25 may mumford data to iris & amitava 3 weeks 15 june mumford model development complete 4 weeks 15 july mack * integration of model and data feeds into cts 6 weeks 30 august kirkpatrick prior to integration into cts any prices would have to be manually uploaded into cts via spreadsheet . the rfp will include a request for a smaller data calibration set that we may select to purchase immediately . we can revisit this schedule at our wednesday video conference . eric kirkpatrick",0 +"Subject: full - time offer terms cantekin , dolores muzzy forwarded your e - mail . i apologize for not answering sooner but i have been travelling . unfortunately , the terms of the associate program compensation package are not negotiable . we have reviewed our terms and believe we are competitive with our peers . i have spoken with vince kaminski who will be calling you to discuss . given that it has taken 6 days to respond to you , if you are still considering enron ' s offer of employment i will extend your deadline until october 24 th . please call if you have any other questions . sincerely , charlene jackson",0 +"Subject: sokolov eis expenses - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 03 / 15 / 2001 05 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kevin jolly / enron @ enronxgate on 03 / 14 / 2001 01 : 38 pm to : anita dupont / na / enron @ enron cc : subject : sokolov eis expenses anita , the other day i called you to get jason sokolov ' s cost center . some of his eis expenses ( market data , long distance ) for jan and feb 2001 were charged to the enron corp . rac cost center . in order for our accountants to reclass the expenses , we need your approval that the expenses can be moved . if this is okay , just reply back and let me know . see the attached files for the detail of the expenses to be moved for jan and feb . thanks for your help , kevin",0 +"Subject: re : valuation steve , please , let me know when you come back . i have detected a tendency to implement different approaches to valuation in the past . to some extent , it reflects the absence of formal rules for sign - off on the valuation techniques which , in turn , reflects , the turf wars and the desire by the originators to control the outcomes . vince stevestock @ pagenetips . com on 01 / 19 / 2001 06 : 53 : 14 pm to : vince . j . kaminski @ enron . com cc : subject : valuation vince , i ' d like an opportunity to talk to you about valuation . i ' m hearing confusing messages about the way that the uk it team and the uk traders get their valuation code aparently signed off by research , while here . . . you provide it for our guys to wrap up . we have now a situation where the uk team are using a home grown valuation piece called dove , where results differ from those of the equivalent usa portcalc . i need to break through the pride barriers and the "" not built here "" syndrome , and try to do the right thing , but i don ' t beleive i can do that without you guidance . i ' m scared that if we diverge too much we will never work globally on these systems . steve - - - - - - - - - - - - - - - - - - - - - - - - tel : 713 - 345 - 8980 cell : 281 - 541 - 1862 page : stevestock @ pagenetips . com",0 +"Subject: re : arthur andersen model validation request gilian , no , we don ' t additional need more data . i understand stinson gibner has already sent you a reply with his findings . vince to : vince j kaminski / hou / ect @ ect cc : subject : arthur andersen model validation request vince , was the data we provided sufficient to determine whether the global markets book administrator correctly utilized the spread option model ? please let me know if there are any additional data requirements . thank you again for your assistance . gillian boyer x 30968 - - - - - - - - - - - - - - - - - - - - - - forwarded by gillian boyer / aa / corp / enron on 12 / 18 / 2000 01 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - gillian boyer 11 / 27 / 2000 10 : 25 am to : vince j kaminski / hou / ect @ ect cc : subject : arthur andersen model validation request vince , our goal is to validate that the enron global market book administrators are accurately using the "" spread option model "" as developed by the research group . to determine this , we would like to provide you with the inputs for a particular deal ( as provided by a global markets book administrator ) and have you recalculate the deal value . we will then compare your results to the values calculated by global markets . two koch deals have been chosen due to their substantial p / l effect . i have attached the deal data in two forms : ( 1 ) the spread option model that kara boudreau , book administrator egm , provided and ( 2 ) an excel spreadsheet that isolates the 2 deals . if there is anything more that we could provide , please don ' t hesitate to call me at x 30968 . thank you so much for all of your help . gillian 1 . 2 .",0 +"Subject: re : green card sevil , i believe you and margret daffin have spoken about the next steps for your green card . you will need to start working on you hib at the begining of october 2001 . if there is any confusion on my part please let me know . norma villarreal x 31545 below is dicussion between margret daffin and sevil in an e : mail january 26 , 2001 : "" sevil : first of all we have to get you an hib visa before we can work on getting you the green card . after you get your opt , contact me sometime in the summer and i will start working on your hib visa which we will obtain in approx . october , 2001 . we cannot start the green card process when you are still on an fl visa - you have to be on an hib visa . there is no rush - you will have six years on the hib visa - plenty of time in which to get the green card . "" this was in reference to her note to me , as follows : "" i think i ' ll have time approximately until the end of 2002 by using cpt and opt . this makes almost two years . if we can start green card process now , do you think that i would get it before i need hl . in every case , can ' t we start green card before i get hl ? because i don ' t want to waste these two years given the fact that green card process is a long process . "" - - - - - original message - - - - - from : yaman , sevil sent : thursday , march 08 , 2001 3 : 59 pm to : daffin , margaret cc : norma villarreal / hou / ect @ enron subject : green card i haven ' t heard back from any of you regarding my immigration status . could you please get back to me with the information about the initialization of my green card process ? thank you . sevil yaman eb 1943 x 58083",0 +"Subject: re : price process parameter esimator michael , i think you mean price process parameter esimator . it is under o : \ research \ exotica \ prices \ reversion 97 _ trend . xls tanya "" michael schilmoeller "" on 05 / 11 / 2000 05 : 04 : 20 pm to : ttamarc @ enron . com cc : gmasson @ enron . com , vkamins @ enron . com , mike _ niman @ pgn . com subject : price process simulator hi tanya , hope things go well for you . can i get a copy of the price process simulator you wrote ? it would be helpful in developing a plant dispatch module for monet , the power systems simulation model i co - authrored . thank you , michael",0 +"Subject: new frbny research : 5 / 3 please respond to michael . demottnow available at the new york fed ' s research site : "" stocks in the household portfolio : a look back at the 1990 s , "" by tracy and schneider ( current issues 7 , no . 4 ) http : / / www . newyorkfed . org / rmaghome / curr _ iss / ci 7 - 4 . html "" currency orders and exchange - rate dynamics : explaining the success of technical analysis , "" by osler ( staff report 125 ) http : / / www . newyorkfed . org / rmaghome / staff _ rp / 2001 / srl 25 . html "" recent changes in the u . s . business cycle , "" by chauvet and potter ( staff report 126 ) http : / / www . newyorkfed . org / rmaghome / staff _ rp / 2001 / srl 26 . html u . s . and global economies charts , updated every wednesday http : / / www . newyorkfed . org / rmaghome / dirchrts / in addition , the foreign exchange committee ' s 2000 annual report is now available http : / / www . newyorkfed . org / fxc / ar 2000 / fxaro 0 . html research home page http : / / www . newyorkfed . org / rmaghome feel free to forward these messages . to unsubscribe , contact listserv @ peach . ease . lsoft . com . in the e - mail , type : signoff frbnyrmagl . for more details : http : / / www . newyorkfed . org / rmaghome / subscribe / subscribe . html . this notification service is provided to you free of charge . by subscribing to the service and providing your e - mail address , you agree to waive any claim against the federal reserve bank of new york for any messages that you may receive by reason of your subscription to this service and / or any resultant harm to you and / or your computer from receipt of such messages . the federal reserve bank of new york assumes no responsibility for any inaccuracies in any messages you may receive as a result of your subscription to this service .",0 +"Subject: regulatory var tentative agenda for the research lunch meeting on wednesday , august 2 nd at 11 : 30 am : objective : develop a methodology and a model for estimating risks of the ees regulatory portfolio . discussion items : 1 . elements of the regulatory portfolio - transmission and distribution ( t & d ) positions - bundled tariffs ( full utility tariffs that are in place prior to deregulation ) - competitive transition charges ( ctc ) positions - diversification between the three risk elements 2 . risk drivers in each bucket ( scott stoness of ees to provide more detail ) - t & d : interest rates - bundled tariffs : regulatory decisions , power prices , interest rates , inflation - ctc : power prices , fuel prices , generation valuation , generation stack , regulatory decisions 3 . position aggregation parameters ( scott stoness of ees to provide suggestions ) - by nerc region - by state - by utility - by utility tariff 4 . model environment - excel - grms / risktrac - other 5 . var parameters - correlations - factor loadings ( 1 - factor model ? ) - other 6 . ees specific issues - the size of ctc positions is impacted by the roll - off date , which is subject to change due to a number of factors ( jump diffusion ? ) - t & d and bundled tariffs do not move daily , but rather once every 2 - 3 years ( event driven ? ) thanks , vlady . ps : shirley , could you please make the lunch arrangements accordingly .",0 +"Subject: urgent the associate and analyst recruiting department will be conducting a number of two hour workshops to review our recruiting and interview process for the fall on - campus recruiting effort . critical information regarding our on - campus interview process , revised evaluation forms and program structure will be reviewed during these two hours sessions . it is mandatory that all team members attend these workshops . all team members must attend in order to articulate and demonstrate the enron recruiting process . knowing how busy schedules are , we have made arrangements to present these workshops in two hours sessions for a total of 40 workshops that will run during the last week of august , through the month of september and end at mid october . listed below are the dates , location and times for each session . please select a date and time and e - mail this information to my assistant , dolores muzzy . we can accommodate 25 participants at a time . dolores will take dates and times on a first come , first serve basis . we have scheduled enough sessions to accommodate every member of both the associate and analyst recruiting teams . in order to participate in the recruiting process , you must attend one of these sessions . we will be tracking participation . cpe credits will also be given for attending this workshop .",0 +"Subject: fw : invitation to 2001 energy finance conference - the university of texas at austin vince , i understand you ' ll be speaking at the cefer conference . gary taylor , the head of marketing in the weather deriv . group , would like to know if you plan on mentioning weather derivatives at all and that if you do , he has numerous existing slides and presentations that might be useful to you . joe - - - - - original message - - - - - from : angela dorsey [ mailto : angela . dorsey @ bus . utexas . edu ] sent : wednesday , january 10 , 2001 9 : 06 pm to : angela dorsey cc : ehud ronn ; sheridan titman ( e - mail ) subject : invitation to 2001 energy finance conference - the university of texas at austin colleagues and friends of the center for energy finance education and research ( cefer ) : happy new year ! hope you all had a wonderful holiday season . on behalf of the university of texas finance department and cefer , we would like to cordially invite you to attend our : 2001 energy finance conference austin , texas february 22 - 23 , 2001 hosted by the university of texas finance department center for energy finance education and research dr . ehud i . ronn and dr . sheridan titman are currently in the process of finalizing the details of the conference agenda . we have listed the agenda outline below to assist you in your travel planning . each conference session will be composed of a panel discussion between 3 - 4 guest speakers on the designated topic . as supporters of the center for energy finance education and research , representatives of our trustee corporations ( enron , el paso , reliant , conoco , and southern ) will have the $ 500 conference fee waived . the conference package includes thursday evening ' s cocktails & dinner and hotel / ut shuttle service , as well as friday ' s conference meals , session materials and shuttle service . travel to austin and hotel reservations are each participant ' s responsibility . a limited number of hotel rooms are being tentatively held at the radisson hotel on town lake under the group name "" university of texas finance department "" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the latter evening for those who choose to stay in austin after the conference ' s conclusion ) . to guarantee room reservations , you will need to contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday , january 22 nd , and make your reservations with a credit card . please let me know when you have made those arrangements so that i can make sure the radisson gives you the special room rate of $ 129 / night . please rsvp your interest in attending this conference no later than january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as seating availability is limited . please feel free to extend this invitation to your colleagues who might be interested in attending this conference . center for energy finance education and research program of the 2001 energy finance conference february 22 - 23 , 2001 thursday , feb 22 : 3 : 00 p . m . reserved rooms at the radisson hotel available for check - in 5 : 30 p . m . bus will pick up guests at the radisson for transport to ut club * 6 : 00 p . m . cocktails , ut club 9 th floor 7 : 00 p . m . dinner , ut club 8 : 00 p . m . keynote speaker 9 : 00 p . m . bus will transport guests back to hotel friday , feb 23 : 7 : 45 a . m . bus will pick up at the radisson for transport to ut 8 : 30 a . m . session 1 - real options panelists : jim dyer , ut ( chair ) sheridan titman , ut john mccormack , stern stewart & co . 10 : 00 a . m . coffee break 10 : 15 a . m . session 2 - deregulation panelists : david eaton , ut ( chair ) david spence , ut jeff sandefer , sandefer capital partners / ut peter nance , teknecon energy risk advisors 11 : 45 a . m . catered lunch & keynote speaker 1 : 30 p . m . guest tour - eds financial trading & technology center 2 : 00 p . m . session 3 - risk management panelists : keith brown , ut ( chair ) vince kaminski , enron alexander eydeland , southern co . ehud i . ronn , ut 3 : 30 p . m . snack break 3 : 45 p . m . session 4 - globalization of the energy business panelists : laura starks , ut ( chair ) bob goldman , conoco ray hill , southern co . 5 : 15 p . m . wrap - up 5 : 30 p . m . bus picks up for transport to airport / dinner 6 : 30 p . m . working dinner for senior officers of energy finance center trustees * we have made arrangements to provide shuttle service between the radisson hotel and ut during the conference . however , if you choose to stay at an alternative hotel , then transportation to conference events will become your responsibility . * * * * * * * * * * * * * * angela dorsey assistant director center for energy finance education & research the university of texas at austin department of finance , cba 6 . 222 austin , tx 78712 angela . dorsey @ bus . utexas . edu * * * * * * * * * * * * * *",0 +"Subject: proposed bonuses greg , these are proposed bonuses : managers : superior 1 . ravi thuraisingham 40 k 2 . ronnie chahal 40 k 3 . amitava dhar 40 k excellent 1 . osman sezgen 35 k 2 . tanya tamarchenko 35 k 3 . joe hrgovcic 30 k 4 . vincent tang 30 k directors : superior 1 . mike roberts 100 k 2 . krishnarao pinnamaneni 60 k excellent 1 . zimin lu 50 k 2 . maureen raymond 40 k assistants : 1 . shirley crenshaw 6 k 2 . robert moore 5 k you already have the vp numbers . vince",0 +"Subject: re : update on iris molly , it seems that we got only bill bradford so far . given that almost everybody will be out that week , we probably should move the interview to the beginning of january , even if it means higher costs . vince enron north america corp . from : molly magee 12 / 18 / 2000 06 : 57 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : update on iris bill bradford has returned our call , and is scheduled to see iris at 11 : 30 am on 12 / 28 . more info as it becomes available . molly",0 +"Subject: performance good morning everyone . please let me know which date you would prefer . december 4 or december 8 th . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 30 / 2000 07 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - norma villarreal 10 / 28 / 2000 10 : 47 am to : shirley crenshaw / hou / ect @ ect , stinson gibner / hou / ect @ ect , mike a roberts / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , maureen raymond / hou / ect @ ect , zimin lu / hou / ect @ ect , osman sezgen / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect , ramona perkins / corp / enron @ enron subject : performance the research group will be conducting a performance review committee ( prc ) meeting in early december . all vice presidents , sr . directors and directors should attend . shirley crenshaw will be contacting you to schedule the prc meeting date and time . these are the current available dates : december 4 , 8 . in preparation for the meeting please submit recommended rankings and promotions to me based on employee feedback by november 29 , 2000 . please included analyst / associates , if you have any questions please feel free to call me or ramona perkins at x 58165 . here is some helpful information for you as we proceed throughout he performance evaluation process october 25 , 2000 - november 17 , 2000 ( 3 1 / 2 weeks ) : employees will provide a list of accomplishments occurring after june 1 , 2000 to their supervisors employees will receive an email advising of access and passwords to pep system ( 10 / 25 ) employees identify selected reviewers on line and will submit to supervisor supervisor will add and / or delete reviewers in order to capture a full 360 degree feedback supervisor will submit and reviewers will receive an e : mail advising them of their reviewer role reviewers can decline or complete the review once system closes on november 17 , 2000 , prepare for research prc meeting ( print consolidate review , pre rank employees , identify candidates for promotion and submit to hr ) important dates ( i will notify you of any changes ) : september 30 , 2000 only employees before 10 / 1 / 00 will be included for pep and bonuses october 15 , 2000 whomever is the supervisor for employees on 10 / 15 / 00 will be responsible for their reviews october 25 , 2000 pep system opens ( http : / pep . corp . enron . com ) october 30 - 31 , 2000 pep overview session at doubletree november 17 , 2000 pep system closes for feedback november 23 - 24 thanksgiving holiday november 29 , 2000 provide hr with pre - rankings and promotions december tbd , 2000 research prc january 31 , 2001 all reviews must be complete , signed and submitted to hr norma sr . hr representative x 31545",0 +"Subject: re : uk portfolios and books setup in risktrac tanya the books were set up incorrectly when the spreadsheet feeds were implemented . this has since been corrected . currently the european risk trac numbers do not feed into the corporate reporting of var . the books should now contain gas exposures in uk gas and power in uk power and have no duplication . i have previously discussed with naveen and kirstee that it would be a good idea if we set up a regular meeting to projecct manage the implementation of european var numbers , from risk trac , into the daily reporting . if you have no objections i suggest we discuss this at the next weekly rac / research meeting . rgds oliver tanya tamarchenko 03 / 01 / 2001 21 : 05 to : david port / market risk / corp / enron @ enron , vince j kaminski / hou / ect @ ect cc : kirstee hewitt / lon / ect @ ect , oliver gaylard / lon / ect @ ect subject : re : uk portfolios and books setup in risktrac david and vince , in my e - mail below i pointed out to a inconsistency in the portfolio hierarchy for uk positions in risktrac that i found out , namely : some books ( for example elsb 1 and elsb 2 ) belong to uk - gas portfolio and to uk - power portfolio . i wanted to clarify this in order to reconcile positions in risktrac and in the spreadsheet . tanya . tanya tamarchenko 01 / 03 / 2001 02 : 09 pm to : naveen andrews / corp / enron @ enron , matthew adams / corp / enron @ enron cc : rabi de / na / enron @ enron , jaesoo lew / na / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : uk portfolios and books setup in risktrac naveen and matthew , i started looking systematically through uk positions and corresponding var numbers in the risckrac . i found a few inconsistencies so far . 1 . the portfolio elsb 1 - nbp has a book elsb 1 under it . the sum of delta positions for this book is 239 , 021 , 655 , the sum of gamma positions is - 211 , 031 , 450 . var for the portfolio elsb 1 - nbp is zero . the same refers to a few other portfolios , for example elsb 2 - nbp , elsb 3 - nbp , e 2 xxl - nbp . 2 . the portfolio elsbp 1 - ppp also has the book elsb 1 under it . this book contains the positions on pppwdl through pppwd 6 and pppwel through pppwe 4 . the same refers to the other books , for example elsb 2 . this looks messy . can someone in rac go over all the portfolios , all the corresponding books and curves in risktrac and make sure they are set up properly ? thank you , tanya .",0 +"Subject: interview schedule for martin jermakyan please find the interview packet for the above - referenced person . the interview will occur on friday october 27 , 2000 . please print all three documents for your reference . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . stephanie 58701",0 +"Subject: eprm 2001 houston dear speaker , i would like to remind you that the room block at the houstonian hotel where the above mentioned event is being held is about to expire . after friday 20 th april you will not be able to take advantage of the discounted rooms that are being held there . please book your accommodation asap to take advantage of this offer . contact the hotel directly and say that you are part of the risk conference on 14 & 15 may 2001 . 001 713 680 2626 . risk waters group do not book accommodation for speakers , you have to contact them yourself , directly . if you have not already sent me a short biography and your speaker checklist , please do so at your earliest convenience . kind regards layla o ' leary event co - ordinator risk waters group haymarket house 28 - 29 haymarket london swly 4 rx tel : + 44 ( 0 ) 20 7484 9871 fax : + 44 ( 0 ) 20 7484 9800",0 +"Subject: your approval is overdue : access request for mraymon @ enron . com this request has been pending your approval for 2 days . please click approval to review and act upon this request . request id : 000000000007494 request create date : 11 / 15 / 00 12 : 57 : 59 pm requested for : mraymon @ enron . com resource name : unlisted application / software resource type : applications",0 +"Subject: jaesoo lew tanya : although you and i didn ' t have an opportunity to talk this morning , vince conveyed to me that an offer should be extended to jaesoo lew . he also told me that jaesoo would be reporting to you . i need some information concerning the position , so i am attaching a form that needs to be completed and returned to me as quickly as possible . in the meantime , i will contact jaesoo to verbally offer him the position . please call me with any questions . molly x 34804",0 +"Subject: vince kaminski ' s discussion notes for the enterprise wide risk management meeting , january 21 attached please find the discussion notes for the offsite meeting on friday , february 4 th . if you have any questions or comments , please let me know . vince kaminski ( by shirley crenshaw ) 3 - 3848",0 +"Subject: re : frank , thanks . i have given your name to the employee energy and power risk management magazine who organizes power 2001 conference in houston ( may of 2001 ) . vince "" frank a . wolak "" on 11 / 28 / 2000 09 : 04 : 42 am to : vince . j . kaminski @ enron . com cc : subject : vince , sorry about the delay in responding . it ' s the end of the quarter and i ' m teaching 3 courses , so things are very busy , plus i had to work on a response to the ferc proposed order for california . here is my student ' s cv . please let me know if you need more information . frank wolak - jmyan _ cv _ newl . pdf",0 +"Subject: re : eprm articles chris , thanks for the invitation . the evening of july the 18 th is fine with me . the list looks fine and it can be easily expanded , if the first set of articles is well received . i shall prepare a list of topics that occupy us every day and that we could write about without revealing the details of our proprietary research . please , feel free to send the message from lacima . i think that it ' s better for us to sign the articles with our names , giving our respective affiliations . in this way , enron gets the credit , but not the liability if there is any error in an article . hope to see you soon . vince",0 +"Subject: focus group invitation - supervisors vince , the associate & analyst programs are conducting focus group sessions to gather feedback regarding the mid - year 2000 prc process . you have been randomly identified as a participant in the supervisors session . organizational development consultants from corporate human resources will facilitate the sessions . we encourage your participation and welcome your feedback as we prepare for the year - end performance assessment process . the logistics are as follows : friday , september 8 , 2000 11 : 00 am - 12 : 30 pm location - eb 32 c 2 please rsvp to constance charles at 3 - 5614 or by email no later than wednesday , september 6 th at 12 : 00 noon . lunch will be provided . i look forward to receiving your feedback . thank you , charlene jackson",0 +"Subject: powerisk 2000 - october 3 rd - 6 th - paris dear mr kaminski i am delighted to say that the printed conference brochure is now available and our logistics team will be mailing them out , along with the speaker guideline packs ( including information on hotel discounts etc ) , in the next couple of weeks . you will also no doubt receive copies via our main mailing campaign . in the interim , please find attached a shortened pdf copy of the conference brochure for your perusal . ( i did not want to send you the complete 12 pages as it would clog up your email ! ) the full colour version can be found on our website at www . icbi . uk . com / powerisk i hope you agree that the speaker plenum and line - up of topics is possibly one of the best ever and not surprisingly the event is already drawing strong international interest . in particular the executive summit day on e - business and power trading is taking numerous bookings . i would be happy for you to attend either the summit day or one of our two intensive post conference workshops , but in order to avoid overcrowding on the day ask that all reservations be made in advance . i am certain that you have friends or colleagues who would be interested in attending the conference this year , and would like to ask that you email the enclosed details to them . to make things easy , i have attached a booking form which should be faxed to + 44 20 7915 5101 . icbi would be happy to offer a 10 % discount on registrations received through speaker recommendations . finally for any enquiries relating to travel or hotel matters please contact our logistics manager clare capel on + 44 20 7915 5198 . of course for any programme related issues , please drop me an email or call me on + 44 20 7915 5194 . i look forward to seeing you in october for what promises to be excellent and informative week . kind regards rosemary fitzgerald director , powerisk 2000 + 44 20 7915 5194 fax : + 44 20 7915 5101 email : rosef @ icbi . co . uk ! - poweriska 300 . pdf - speakerreg . doc",0 +"Subject: rotation of leandro "" roy "" ibasco hello celeste : plans are in the works to rotate roy ibasco from the research group into henry arora ' s group . vanessa carranza is handling the churn request . i am not sure of the rotation date , but we need his desk by the 15 th for gwyn koepke . you probably already know all of this , but just in case . shirley 3 - 5290",0 +"Subject: re : parking space at 777 clay street for summer interns hi louis : we will take it ! listed below are the individuals that will be using the spot . june lst - july 30 th vince kaminski july 31 st - august 18 th matthew williams ( london ) august 21 st - sept . 15 th steven leppard ( london ) sept . 18 th - oct . 13 th kirstee hewitt ( london ) oct . 16 th - nov . 10 th ben parsons ( london ) june lst - july 30 th should be billed to vince kaminski - co . # 0011 and rc # 100038 july 31 st - nov . 10 th should be billed to the london office - i have requested their co # and rc # and will forward it to you when i get it . thanks louis ! shirley crenshaw 3 - 5290 louis allen @ ect 06 / 01 / 2000 10 : 11 am to : shirley crenshaw / hou / ect @ ect @ enron cc : subject : re : parking space at 777 clay street for summer interns hi shirley , i have one ( 1 ) space available at 777 clay garage . please let me know who the summer intern is thats needing a space . please advise asap . thanks , louis shirley crenshaw @ ect 05 / 15 / 2000 11 : 36 am to : louis allen @ enron cc : subject : parking space at 777 clay street for summer interns good morning louis : we would like to requst a parking spot at 777 clay street for the months of june , july , august and september . we will have 3 employees from the london office that will be rotating on special assignment to our group . is there a way that we can go ahead and reserve the spot and i will let you know the car information and driver information as they come ? our co . # is 0011 and our rc # is 100038 . thanks ! shirley 3 - 5290",0 +"Subject: re : presentation on tuesday vince , i will be out of the office this thursday afternoon . here is what i can present on tuesday related to power prices : do you want to discuss it with me some other time ? tanya",0 +"Subject: enron earth day "" trash bash "" i encourage everybody very strongly to join other enron employees at this event . it ' s a great opportunity to contribute to the growth of our city and to make sure that enron is not embarrassed if other energy companies show up in strength . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 12 / 2001 11 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont @ enron 03 / 07 / 2001 02 : 37 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , sandeep kohli / enron _ development @ enron _ development , joseph hrgovcic / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , youyi feng / na / enron @ enron , praveen mellacheruvu / hou / ees @ ees , stephen bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane green / hou / ees @ ees , seksan kiatsupaibul / hou / ees @ ees , kate lucas / hou / ect @ ect , nelson neale / na / enron @ enron , rabi de / na / enron @ enron , kenneth parkhill / na / enron @ enron , jaesoo lew / na / enron @ enron , jason sokolov / hou / ect @ ect , steve bigalow / na / enron @ enron , tom barkley / na / enron @ enron , rakesh bharati / na / enron @ enron , wnarongw @ enron . com , iris . mack @ enron . colm cc : subject : enron earth day "" trash bash "" enron is hosting a special event on saturday , march 31 st . the first annual enron "" trash bash "" to clean up the banks of buffalo bayou between shepherd drive and sam houston park . i am chairing the check - in team which consists of : registering all of the volunteers handing out enron t - shirts and caps passing out gloves and garbage bags making clean up section assignments for anyone who might be interested in helping me , please call me at ext . 30329 . also , we need a lot of volunteers to walk along buffalo bayou and pick up trash . this would be a great family project , a good project for your childs youth group or boy scout or girl scout troop . it will also be fun . they will have live bands , lyou get an enron t - shirt and enron baseball cap , lunch will be served at sam houston park and there are a lot of good door prizes . if you want to volunteer for the "" trash bash "" clean up , just show up at sam houston park on saturday , march 31 , 2001 , at 8 am to register . clean up starts at 9 am and lunch will be served at 11 : 00 am and after lunch door prizes will be drawn and then you can go home feeling like you have done your part for houston ' s waterway environment . i hope you will think about it and bring your friends , family , ect . and help enron clean up the environment . thanks , anita",0 +"Subject: re : [ no subject ] hi vince , this resume looks quite good . we may wish to talk to him on the phone . however , now that david hoog has hired his own actuarial guys ( alex tartakowski and larry markus ) from ace , i am not sure if they require support on the actuarial side . with don black ( of global risk markets ) leaving enron , i think the effort to develop power products for the insurance markets is pretty much nonexistent , except for david hoog ' s product . the resume still looks interesting , though . vasant - - - - - original message - - - - - from : kaminski , vince sent : friday , april 13 , 2001 3 : 56 pm to : shanbhogue , vasant subject : [ no subject ] vasant , please , take a look at this eresume . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 09 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - cathy lira @ enron 03 / 26 / 2001 11 : 12 pm to : vkamins @ enron . com cc : subject : [ no subject ] - - - - - - - - - - - - - - - - - - - - - - forwarded by cathy lira / na / enron on 03 / 26 / 2001 04 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" imccracken "" on 02 / 24 / 2001 04 : 02 : 11 pm please respond to "" imccracken "" to : grad _ programs @ enron . com cc : subject : [ no subject ] dear sir / madam , i am a student in a master ' s programme in mathematical finance due to graduate in august . my intention upon graduation is to work in a quantitative capacity in the power markets and to this end , i am including my resume in the hope that i might be considered for any available position in your risk management or structured products group requiring such mathematical skills . i have addressed this email to your graduate programmes address but i am unsure whether or not my candidacy would fall under the umbrella covered by your associate programme . if this is not the case , any help in seeing that my resume finds the correct destination would be greatly appreciated . yours sincerely , ian mccracken * get free , secure online email at http : / / www . ziplip . com / * - iancv . doc > ",0 +"Subject: only 1 week left to register for the henwood power market symposium at the discount registration fee dear energy participant : don ' t miss your chance to register for the henwood power market symposium at the discounted price of $ 875 . after april lst the registration fee increases to $ 975 . * register now because space is limited ! this annual three - day event will take place from april 29 to may 1 , 2001 in atlanta , ga at the beautiful evergreen mountain resort . this year ' s symposium features leaders from ferc , electric power research institute , standard & poor ' s , iso new england , conoco , entergy nuclear , and more . discussion topics will include "" rating implications of the california market failure "" , "" upcoming changes to wholesale electric markets in new england "" , "" impacts of high gas costs to the nation ' s supply portfolio "" , and many others . as always , participants will also have the opportunity to gain access to henwood ' s software products , consulting services , and online databases , as a means to develop competitive strategies and unequalled value in restructured markets . your registration fee is inclusive of the following : - complete hotel accommodations at the stone mountain resort for sunday april 29 th and monday april 30 th , 2001 - all meals and refreshments for april 29 th through may lst . a welcome reception is planned for sunday , april 29 th . this reception is an excellent opportunity to network with market participants and decision - makers of the electric power industry . - a river boat dinner cruise on monday , april 30 th on board the henry w . grady paddlewheel riverboat . also don ' t miss the henwood captain and crew golf tournament planned for sunday , april 29 th . we invite golfers of all levels to participate in this fun event . for more information please contact me at 916 569 - 0985 or hmason @ hesinet . com . you can also learn more about the symposium by visiting our web site at www . hesinet . com . heather mason marketing assistant henwood energy 2710 gateway oaks dr . suite 300 n 916 - 569 - 0985 * make sure to ask about our special 2001 henwood client discount .",0 +"Subject: fyi : enron = the best hi vince . i spoke with molly mcgee down in hr - we are getting the paperwork together . i will send you those candidates we talked about next . just to let you know why i contacted you . . . every student at the better universities including those in the uk - ask either for you or enron . i saw enron was voted the best company to work for out of 10 in the world andthere are countless articles in the financial times on enron . for this i am thankful to know you now ! did you know why my grandfather changed his name from wesloski to wesley ? . . . when he came from poland to work as an autoworker in detroit . . . there was alot of anti - polish sentiment and he was beaten and intimidated to the point where he was afraid for his life and the saftey of the family . he then changed the name to the english derivative from wesloski to "" wesley "" . nevertheless , they kicked his teeth out of his mouth and beat him senseless many times . i may change it back . . . i don ' t know . ok - i will get everything together for you and molly ! thank you for the opportunity to work with you vince and enron . thank you , jeff * get free , secure online email at http : / / www . ziplip . com / * - private 9498132241 . pdf",0 +"Subject: pjm two - settlement & market - based regulation market trials announ ced message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : pjm two - settlement & market - based regulation market trials pjm will be conducting two - settlement and regulation market trials in preparation for the implementation of its two - settlement and regulation markets on june 1 , 2000 . the market trials are designed to provide pjm market participants the opportunity to submit generation offers , regulation offers , demand bids ( fixed and price - sensitive ) , increment offers , and decrement bids using pjm emkt . pjm will clear the markets and provide the ability for pjm market participants to view two - settlement and regulation market results using pjm emkt . pjm will conduct three sets of market trials . the first and second trials will be conducted on april 19 and on april 27 . the final market trials will be conducted on business days between may 15 and may 24 , 2000 . all pjm market participants are eligible to participate in the market trials for two - settlement and regulation and must register in advance . register now ! ! ! ! ( http : / / www . pjm . com / twoset / form _ twoset _ reg . html ) details of the market trails are described in the attached document . > - 2 g 3 dol ! . doc questions may be directed to pjm customer service at ( 610 ) 666 - 8980 . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: re : fw : credit risk model comments - at this point . bill , we spent about an hour with rick explaining the rationale behind different solutions and i think he has a better understanding of the models at this point . i think he was asked by jeremy to look into it . vince from : william s bradford / enron @ enronxgate on 04 / 11 / 2001 09 : 05 pm to : rick buy / enron @ enronxgate , vince j kaminski / hou / ect @ ect cc : mark ruane / enron @ enronxgate subject : fw : credit risk model comments - at this point . rick / vince , should this not be a credit / research initiative while the business unit focuses on originating good economic transactions ? not to be complaining , but shouldn ' t ees be focusing on infrastructure issues rather than waste resources on a project we are already moving forward on ? you can ' t run a portfolio model , unless you have deals in a risk system ! how complex do we want these models to be ? behavioral implications on credit default ? they still don ' t seem to understand . regards , bill mark - please attend . you may want to include martin to help ees understand the complexity of their deals . - - - - - original message - - - - - from : krishnarao , pinnamaneni sent : wednesday , april 11 , 2001 9 : 14 am to : kaminski , vince ; dhar , amitava ; de , rabi ; william s bradford / hou / ect @ enron ; tamarchenko , tanya subject : credit risk model comments - at this point . comments from rick jones on the credit reserve model . anita dupont is setting up a meet with rick jones to discuss these . vince & bill - if you want to join the meeting , please let me or anita know . regards , krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 11 / 2001 09 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - - richard b jones @ ees 04 / 10 / 2001 04 : 16 pm to : pinnamaneni krishnarao / hou / ect @ ect cc : subject : credit risk model comments - at this point . - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 04 / 10 / 2001 04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - richard b jones 03 / 23 / 2001 05 : 53 pm to : cheryl lipshutz / hou / ees @ ees , trushar patel / corp / enron @ enron , michelle . wenz @ enron . com , gayle muench / enron @ enronxgate , jeremy blachman / hou / ees @ ees cc : subject : credit risk model comments - at this point . hi everyone , i have run the model and , along with the contract briefs i have some questions the number of trials , numerical roundoff , and random number generator randomness statistical properties . the first two are not a problem in this application but the last one could be . has anyone examined the effect of using different random number generators on enron  , s aggregate credit risk ? 7 ) there is one last point here . for most of the above points , the "" improved "" analysis could make the credit risk be higher . rick",0 +"Subject: re : sorry . thank you , vince . i really like your idea . thank you again , - chonawee vince j kaminski @ ect 01 / 04 / 2001 05 : 17 pm to : chonawee supatgiat / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : sorry . chonawee , this was perfectly all right . as a matter of fact i expect and encourage the members of the group to disagree with me ( or anybody else ) on any subject . i am never offended by it and take it as a manifestation of ability to think independently and having the courage of one ' s convictions . nobody has the monopoly on truth and nobody knows everything . the only way we can learn and avoid costly errors ( to ourselves and the company ) is by having open communication . in enron , facts are friendly . by the way , it was an excellent presentation . vince chonawee supatgiat @ enron 01 / 04 / 2001 03 : 10 pm to : vince j kaminski / hou / ect @ ect cc : subject : sorry . hi vince , i am sorry for correcting on the revenue of the different auctions . vickrey 1961 showed that all 4 kinds of auctions would yield the same expected revenue to the auctioneer . ( dutch , english , first price - sealed bid , and second - price sealed bid . ) in fact , the selling price is equal to the valuation of the second highest bidder . for example , in vickrey auction , everyone bids at his own valuation . hence , the winner pays the valuation of the second highest bidder . in english auction , the second highest valuation bidder will stop competing if the price is above his valuation . hence , the winner also gets the item at the price of the second highest valuation bidder . thank you for attending the meeting and giving many helpful contributions . - chonawee",0 +"Subject: 3 - d seismic data and oil trading a brief summary of the research evaluation of siesmic data financial impact on oil trading is attached for transmittal to the client ( rich reichart ) . our conclusion is negative . bob",0 +"Subject: actuarial course material hi dale , i just talked to the actuarial education company and found that the combined material packs ( cmps ) are priced per course as follows : - 101 statistical modelling : 102 financial mathematics 103 stochastic modelling 104 survival models 105 actuarial mathematics 106 actuarial mathematics ii 107 economics 108 finance and financial reporting 109 financial economics 302 life insurance 303 general insurance having reviewed , i think the most suitable ones to order are suggested in blue . this adds up to o 525 for the sub - set in blue ; alternatively we can stick to 103 through 106 for o 356 - > i suggest we go for the smaller sub - set to start off with . regards , anjam x 3583",0 +"Subject: new extension installed we will receive a new employee on jan . 17 th 2000 . if possible we would like for his telephones and extensions to be ready . his name is jose marquez . his locations are eb 3130 c and ebl 968 . any questions please call kevin moore x 34710 thanks kevin moore",0 +"Subject: re : fw : fw : get together this coming tuesday ? thanks for the update . kim . - - - - - original message - - - - - from : kaminski , vince sent : tuesday , may 01 , 2001 2 : 08 pm to : watson , kimberly cc : gadd , eric ; kaminski , vince subject : re : fw : fw : get together this coming tuesday ? kim , i talked to dale early this morning and suggested that we meet during his next trip to houston when we decide on timing of our project . vince from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 08 : 41 am to : vince j kaminski / hou / ect @ ect , eric gadd / et & s / enron @ enron cc : subject : fw : fw : get together this coming tuesday ? vince , if dale comes in to see you , it looks like eric might be available to meet with you as well . it would be a good opportunity for eric to meet dale and get a little more information on his model . eric ' s phone number is x 54713 . thanks , kim . - - - - - original message - - - - - from : gadd , eric sent : monday , april 30 , 2001 8 : 12 pm to : watson , kimberly subject : re : fw : get together this coming tuesday ? works for me . give me a call at 9 : 30 . from : kimberly watson / enron @ enronxgate on 04 / 30 / 2001 05 : 09 pm to : eric gadd / et kaminski , vince subject : re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince > "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: re : statistician from rice osman , this guy is too much . i would tell him that we understand that he has to make the best choice for himself and can change his mind but at this point we treat his decision as final but we still appreciate the interest he showed in enron . we never had any luck hiring a statistician . maybe we shall get one some day . vince osman sezgen @ ees 04 / 20 / 2001 11 : 54 am to : vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect cc : subject : statistician from rice i had a message on my phone this morning from william indicating that he had changed his mind and will be taking another job . he also mentions that the other organization will give him time to publish his thesis and he assumes enron would not do that . i am inclined to give up on him but wanted to get your input before doing so . osman",0 +"Subject: congratulations ! hi vince : i just received the email announcing your promotion , and i wanted to take this opportunity to congratulate you . best regards , bani",0 +"Subject: re : mscf speaker series pierre - philippe , yes , we are ready . i shall be accompanied by one person from our analyst / associate program and i would like to ask you if she can be invited to dinner as well . we plan to come thursday night and leave on sat morning to avoid potential flight delay risk . vince pierre - philippe ste - marie on 10 / 08 / 2000 06 : 55 : 27 pm to : vince . j . kaminski @ enron . com cc : subject : re : mscf speaker series hi mr . kaminski , just touching base for the 3 rd of november . is everything ready ? sincerely , pierre - philippe ste - marie",0 +"Subject: re : anjam ' s term sheet tara : i am forwarding it to vince for his approval . it looks good although i have three questions : 1 ) i presume that it is clear that enron pays housing up to 1500 / month . anjam does not get a check for 1500 to play with . utility bills are not included unless part of the rent , right ? this should be clarified ; as you know , houston summers are a significant burden on the pocket - book . 2 ) economy class plane . can we even do that ? i thought enron policy was for a b - class ticket for flights over 6 hours . 3 ) 500 lbs of transport . i don ' t know if this is a big ticket item , but i would give him less , 250 say , if it would save enron considerable expense . regards , grant .",0 +"Subject: project with maria garcia vince , here is a brief about the project with maria garcia . promigas , in partnership with others , wants to acquire $ 80 mm tvcable company in mexico . promigas ' s ownership would be 25 % , i . e . , 20 mm . 10 mm of it would come from debt . enron wants to participate this deal by offer promigas loan guarantee in exchange of call options on 50 % promigas equity in tvcable . following suggestions have been made : 1 ) get a market quote for the loan guarantee ; use credit risk model to price the guarantee internally ; need to speak to vasant 2 ) find a comparable company , study the volatility using company value histogram from economics model ( crystal ball output ) , i can fit a lognormal distribution , then find the volatility 3 ) calcalte the call option value , find braek - even strike . any inputs are extremely welcome . zimin",0 +"Subject: re : risk 2000 panel discussion steve , a meeting at 8 : 00 - 8 : 15 is fine with me . vince "" bramlett , stephen "" on 06 / 06 / 2000 08 : 24 : 08 am to : "" ' vince j kaminski ' "" , "" bramlett , stephen "" cc : jefferid @ kochind . com , oliver @ risk . co . uk subject : re : risk 2000 panel discussion vince - thanks for the update . i ' ve been pulled into a 7 : 00 am breakfast which i must attend . chances are i could catch up with everyone between 8 : 00 and 8 : 15 . i apologize , but two of my breakfast dates are taking special flights in just for the breakfast - or i wouldn ' t inconvenience everyone . - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , june 06 , 2000 8 : 11 am to : bramlett , stephen cc : jefferid @ kochind . com ; oliver @ risk . co . uk ; vince j kaminski subject : re : risk 2000 panel discussion steve , this looks fine . i think we are meeting at 7 : 45 a . m . on the 14 th next to the general reception area . vince "" bramlett , stephen "" on 06 / 05 / 2000 06 : 28 : 36 pm to : "" ' jefferis , dick ' "" , "" bramlett , stephen "" , vince j kaminski / hou / ect @ ect , "" ' oliver @ risk . co . uk ' "" cc : subject : re : risk 2000 panel discussion gentlemen , please see the edit of my outline below . also , what time did we agree to meet on the 14 th ? successes and failures ( stephen bramlett ) risk consideration directed at the enterprise level . what makes for a successful application ? long - term view of managing weather identifying the corporate objectives lost opportunities trading desks at utilities insurance comparisons product managers target audience scale of the failure treasury enterprise risk management cfo assistance of wall street link to stock prices earnings smoothing",0 +"Subject: two - settlement xml / csv conversion utilities message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : the two - settlement xml / csv conversion utilities are now available for download from the pjm web site . the zip file containing the required programs and examples can be downloaded from please do not reply to this message . if you have a question for pjm customer relations and training , please send an e - mail to custsvc @ pjm . com . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: cera conference call : ferc ' s order for california market : bold decision of insufficient action ? - cera conference call cera conference call : sent tue , november 07 , 2000 title : cera conference call : ferc ' s order for california market : bold decision of insufficient action ? author : e - mail category : conference call product line : western energy , north american power , url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1412 , http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1413 , alternative urls : western energy members : n . american electric power members : north american electric power and western energy conference call a cambridge energy research associates conference call topic ferc ' s order for the california market : bold decision or insufficient action ? * a ferc vote for market solutions * where is the relief for retail customers ? * what ' s next for california and western wholesale markets ? * implications for the broader north american power market format at the time listed below , our speakers will address this topic for approximately 30 minutes , followed by an open question and answer period . speakers larry makovich , cera senior director , north american electric power mike zenker , cera director , western energy time 1 : 00 p . m . eastern , monday , november 13 , 2000 eligibility clients eligible to participate in this conference call are those who subscribe to the north american electric power retainer advisory service or the western energy retainer advisory service . to enroll to enroll , please contact ms . kari paakaula via fax at ( 617 ) 497 - 0423 , or enroll via e - mail at kpaakaula @ cera . com before 4 : 00 p . m . , friday , november 10 , 2000 . audio for the audio portion of the call , please call in on one of the following numbers approximately five ( 5 ) minutes before the call : within the united states : 1 - 800 - 946 - 0741 outside the united states : ( 719 ) 457 - 2649 confirmation code : 640107 title of the call : cera call technical assistance u . s . callers : if you are experiencing difficulties during the call , you may signal for technical assistance by pressing * 0 ( star , zero ) on your telephone keypad international callers : please re - dial and ask the operator for assistance before giving the confirmation code . a recording of this call ( audio only ) will be available until december 13 , 2000 . to access this recording , please call 1 - 888 - 203 - 1112 ( within the u . s . ) or ( 719 ) 457 - 0820 ( outside the u . s . ) . please use confirmation number 640107 to access the call . * * for more information , please contact kari paakaula via e - mail at kpaakaula @ cera . com or via telephone at ( 617 ) 441 - 1362 . * * end * * follow url for html version of this message only . account changes to edit your personal account information , including your e - mail address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www . cera . com / tos . html questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: volumetric optionality model changes - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 06 / 15 / 2000 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - natasha danilochkina 06 / 15 / 2000 05 : 26 am to : david gallagher / lon / ect @ ect , peter crilly / lon / ect @ ect , richard lewis / lon / ect @ ect , haakon olafsson / lon / ect @ ect , tony fricker / lon / ect @ ect , andrew fairley / lon / ect @ ect , matthew nicholas / lon / ect @ ect , david redmond / lon / ect @ ect , steven mccarthy / lon / ect @ ect , dale surbey / lon / ect @ ect , matthew nimmo / lon / ect @ ect , matthew ferguson / lon / ect @ ect cc : anjam ahmad / lon / ect @ ect , zimin lu / hou / ect @ ect , steven leppard / lon / ect @ ect , stinson gibner / hou / ect @ ect subject : volumetric optionality model changes as a result of meetings with zimin lu ( houston research ) and anjam ahmad in early june , the gas desk together with research will be revising the models for pricing options on volume ( swing ) and similar products . the idea is to have a consistent method that can be applied to all contracts . this will affect : flat price gas swing options indexed gas swing options j - block contract modified thermbank contract enbank ( virtual storage ) the new feature that will be introduced into all models is ability for real - time mtm ( and prospectively - sensitivities calculations ) . the work will be carried out as follows : natasha danilochkina : problem definition , contracts / products summary , functional specification anjam ahmad : zimin ' s model modifications / implementation and houston / london interaction start date : june 16 th , 2000 end date : tbc",0 +"Subject: re : telephone interview with the enron corp . research group fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2000 12 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - hao peng on 04 / 19 / 2000 11 : 52 : 53 am to : shirley crenshaw cc : subject : re : telephone interview with the enron corp . research group dear shirley : it is my pleasure to have the opportunity to interview with enron . i will be available at 412 - 661 - 3393 at 4 : 30 pm eastern time . please let me know if there is any change about this sechedule . thanks . hao - - on wednesday , april 19 , 2000 , 11 : 29 am - 0500 shirley crenshaw wrote : > > > hello hao : > > the enron corp . research group would like to interview you by telephone > tomorrow , thursday , april 20 , at 3 : 30 pm central standard time ( 4 : 30 > eastern time ) . > > please let me know if this is satisfactory to you and what telephone > number they may reach you at . > > the interview will include the following members of the research group : > > vince kaminski managing director > stinson gibner vice president > vasant shanbhogue vice president > zimin lu director > tanya tamarchenko manager > > if you have any questions , please let me know > > thanks you very much and look forward to hearing from you . > > shirley crenshaw > administrative coordinator > enron corp . research > 713 / 853 - 5290 > email : shirley . crenshaw @ enron . com > > >",0 +"Subject: job description good afternoon . here is the job description for the computational finance students . we should have our preferred interview dates shortly . please let us know if you have any questions , and have a happy thanksgiving . - kevin kindall",0 +"Subject: re : sms conference yes , i shall be glad to make a presentation . thanks for considering me . vince zzmacmac @ aol . com on 01 / 31 / 2001 08 : 01 : 23 am to : vkamins @ enron . com cc : subject : sms conference the strategic management society is holding its annual meeting in san francisco oct 21 to 24 we have a panel on real options , the thrustof which i attach . i was wondering if you would be interested in presenting on the practitioner ' s perspective - if not you would one of your colleagues be interested ? - sms 2001 1 - 23 - 01 . doc",0 +"Subject: re : anshuman srivastava sandeep : further to my voice mail to you today , i will meet with anshuman at 10 : 30 am and will keep his documents in a file . however , without some type of job offer in the us , we cannot move forward with an ll visa for him and if you believe he will not be returning to the us to work , then we really do not need to get him the ll at this time . if the circumstances change , please let me know . margaret sandeep kohli @ enron _ development 02 / 15 / 2001 02 : 05 pm to : margaret daffin @ ect cc : molly magee @ ect , anshuman srivastav / enron _ development @ enron _ development subject : anshuman srivastava margaret , please find attached the resume of anshuman , as well as the form needed for l - 1 visa , duly filled in . copies of all required material for the visa , has already been put into inter - office mail . please do call me at 713 - 857 - 6826 . i want to reschedule today ' s meeting for another time , since we are working on a deadline here . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 02 / 15 / 2001 01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli 02 / 15 / 2001 11 : 21 am to : anshuman srivastav / enron _ development @ enron _ development cc : subject :",0 +"Subject: computer - new location hello , i need a computer and flat screen moved . the location is eb 3240 e . only - one computer and a flat screen needs to be moved to eb 3240 g . the remaining flat screens should stay at the location eb 3240 e . r . c . 107043 - co . # 0413 thanks kevin moore please if at all possible let me know when this should take place .",0 +"Subject: re : real options conference in cambridge lenos i ' d like to give a talk entitled "" diagrammatic representation of real options in enron "" , in which i will give a brief run - down of a diagrammatic technique i have developed for representing real option deals . my notation allows originators , managers and quants to communicate unambiguously , while still appreciating the complexity and subtlety of real optionality . i have defined a "" diagrammatic grammar "" which guarantees that the pricing of the deal follows immediately and automatically from the diagram . i propose to introduce the symbols and grammar , then go on to present some suitable examples of diagrams . if appropriate i ' ll talk about the links with dynamic programming . ( i will need some guidance as to how much technical detail i can go into based on the audience . ) all the best , steve enron capital & trade resources corp . from : lenos trigeorgis 04 / 20 / 2000 08 : 45 pm to : "" steven leppard "" cc : "" vince j kaminski "" subject : re : real options conference in cambridge steve thanks for agreeing to talk . i attach the program to see the other speakers and style ( it is addressed to a professional autience ) please give me a suitable title for the talk ( replacing kaminski  % s slot on july 6 / energy session ) and the details of your position thanks lenos at 05 : 01 _ _ 04 / 20 / 00 + 0100 , steven leppard wrote : > > > dear prof trigeorgis > > vince kaminski has suggested that i would be a suitable speaker at your july > conference in cambridge , and i ' d be happy to come along if required . please > could you send me appropriate details , and the audience type expected . > > many thanks . > > yours sincerely , > steve leppard > > > > - 4 thconfsessions . doc lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: f / u from iris mack , mba / phd to enron vince , iris received an error message when sending this to you so she ask i forward it to you . she is currently living in california . - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 11 / 15 / 2000 09 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" iris mack "" on 11 / 14 / 2000 11 : 20 : 15 pm to : vincent . kaminski @ enron . com cc : subject : f / u from iris mack , mba / phd to enron dear dr . kaminski , how are you ? i seemed to have lost contact with you . the last contact was with a ms . graham - regarding my coming to houston for an interview - while i was still living in london . i am now back in the states - where i spent the last few months working for a dot . com . although this internet opportunity was interesting , it was not a viable one . i guess part of the technology firm shake out . therefore i am now interviewing again - with investment banks and insurance companies . is enron still interested in having me come down for an interview ? if so , please let me know how to proceed . thank you in advance for your time and consideration . kind regards , iris mack 925 . 933 . 7833 get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com . - cv for iris mack , mba , phd . doc",0 +"Subject: a paper of mine vince , i have written a paper , which supposedly is going to be published in the february 2000 issue of eprm , probably after some editorial cuts ( at least this is what i am being told by them ) . i would appreciate your thoughts if you would have time to read it . regards , martin - userconf . doc",0 +"Subject: eol wti maket maker simulation model stinson , i add the total p / l due to contract rollover . when the number of trades is large and the spread is not too small , the model prints a lot of money , dominated by those trade earning the half of bo spread . i also wrote an explaination about the model on the front page . i think we are ready to deliever the model v . 1 . the next step is to incorporate the intra - day market movement by using high and low prices into the pricing . i will call you on monday . happy thanksgivings ! zimin",0 +"Subject: enron , india database sandeep , ? below , i have summarized henwood ' s work on the india database to date . ? the "" inter _ regional links . ppt "" file shows the topology and links between bubbles in the our model and "" expand _ india _ data _ 011000 . xls "" details the existing station information that we have compiled to date . ? total resources closely match reported resources as shown in "" l & r _ 0110 . xls "" . reported india total in 1997 is 86 , 000 mw and that in the henwood database is 84 , 000 mw through 1997 . ? region emss database reported [ 1 ] difference - inter _ regional links . ppt - expand _ india _ data _ 011000 . xls - l & r _ 0110 . xls",0 +"Subject: to ops - revised february bod approved risk management policy fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by cassandra schultz / na / enron on 02 / 18 / 2001 10 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : cassandra schultz 02 / 18 / 2001 10 : 26 pm to : bob m hall / na / enron @ enron , leslie reeves / hou / ect @ ect , jeffrey c gossett / hou / ect @ ect , peggy hedstrom / cal / ect @ ect , stacey w white / hou / ect @ ect , brent a price / hou / ect @ ect , scott earnest / hou / ect @ ect , sheila glover / hou / ect @ ect , d todd hall / hou / ect , cindy horn / lon / ect @ ect , brenda f herod / hou / ect @ ect , mike jordan / lon / ect @ ect , howard carter / eu / enron @ enron , andrew cornfield / lon / ect @ ect , james new / lon / ect @ ect , orjan agdesteen / osl / ect @ ect , james new / lon / ect @ ect , marcelo parra / nyc / mgusa @ mgusa , louis colarusso / nyc / mgusa @ mgusa , heidi mason / enron _ development @ enron _ development , jan - erland bekeng / ap / enron @ enron , kevin rhodes / eu / enron @ enron , naomi connell / lon / ect @ ect cc : sally beck , shona wilson , chris abel subject : to ops - revised february bod approved risk management policy attached is the revised risk management policy incorporating the bod ' s changes - please discard the previously circulated version i sent out prior to the bod meeting . i ' ve also included a recap of substantive changes since the october 2000 version that was circulated to you in conjuction with the compliance certificates last fall , but you should read the policy to enhance your understanding , and distribute it to your groups as some changes are significant and are detailed further in the policy . i did notify the office of the chair for each of your business units of these changes earlier this week , and i will also provide them with a copy of the revised policy . if you have any questions , feel free to give me a call at x 30429 . regards , cassandra schultz market risk management",0 +"Subject: re : bogdan szopa - cv shawn , i have met bogdan a few times socially . he graduated from the same university i went to in poland . he seems to be a dynamic and a personable guy . he has experience that may be useful to your group . vince shawn cumberland @ enron _ development 02 / 12 / 2001 08 : 08 am to : vince j kaminski / hou / ect @ ect cc : subject : bogdan szopa - cv vince : can you give me some background on bogdan ? many thanks . shawn - - - - - - - - - - - - - - - - - - - - - - forwarded by shawn cumberland / enron _ development on 02 / 12 / 2001 08 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - - awenda 2000 @ cs . com on 02 / 11 / 2001 11 : 26 : 12 pm to : shawn . cumberland @ enron . com cc : subject : bogdan szopa - cv dear shawn , it was a pleasure talking to you today . i will call you upon my return from europe . in the meantime we will stay in touch via e - mail . enclosed is my curriculum vitae . best regards , bogdan m . szopa - bogdan res . . doc",0 +"Subject: video conference with ross mcintyre vince , you should have received an invitation through lotus notes which outlines the vc location for the conference call tomorrow . it is schedule for 4 : 30 pm uk time ( 10 : 30 am houston time ) ross ' s background is from investment banking ex dresner bank , he has a phd in mathematical and is currently with speedwell weather derivatives where he has been developing weather derivative pricing and portfolio optimisation tools which they have been marketing to end - users with weather risks . the attached word documents are articles that he has written for publication . regards nick mooney - mcs . doc - analytic . doc - par . doc",0 +"Subject: praca dyplomowa niniejszym potwierdzam , ze nastepujacy studenci zlozyli prace dyplomowe : jerzy seremak prezentacja instrument ? w analizy finansowej jako podstawa oceny wybranego podmiotu w kr ? tkim i dlugim okresie czasu ocena : bardzo dobra waldemar mr ? z controlling w przedsiobiorstwie ocena : bardzo dobra t . blach analiza wskaznikowa ocena : bardzo dobra w . kaminski",0 +"Subject: program i forgot to attach the program file . here it is - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 10 / 17 / 2000 09 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 10 / 17 / 2000 09 : 13 pm to : mike a roberts / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : program mike , here is third version of the program . it gives better results than the previous versions you have . sorry for the delay , these past 2 days i have been busy meeting with people on the new ebs project . i think the result looks reasonably good . you can try it . ( to run , type cow filename . jpg m ) smallcow . jpg : hand count 165 , program reports 140 cow 2 . jpg : hand count 1 , program reports 1 cow 3 . jpg : hand count 273 , program reports 244 cow 4 . jpg : hand count 7 , program reports 7 cow 5 . jpg : hand count 160 - 180 , program reports 165 - chonawee you can show it to the others by yourself or i can go with you . i will have to go to german consulate tomorrow morning and will be in the office around 10 : 30 - 11 am . - chonawee",0 +"Subject: research group "" millenium "" party hello all ! since we all seemed to survive the "" y 2 k "" bug , we are going to celebrate ! our "" holiday millenium "" party will be this saturday . see attached for information , if you have questions , please call me at 3 - 5290 . see you there ! shirley",0 +"Subject: telephone interview with the enron research group good morning ms . knirel : vince kaminski and several members of the research group would like to conduct a telephone interview with you sometime this week at your convenience . please let me know the times that you are available and they will contact you . the telephone interviews usually last approximately 1 hour and will be conducted via a speaker phone . the interviewers will be : vince kaminski managing director and head of research stinson gibner vice president , research tanya tamarchenko director , research zimin lu director , research look forward to hearing from you . best regards , shirley crenshaw administrative coordinator enron research group",0 +"Subject: cera monthly oil briefing - cera alert - december 20 , 2000 title : cera monthly oil briefing : fundamentals update e - mail category : cera monthly briefing cera knowledge area : world oil in the past two weeks , oil prices have sold off the premium or price strength that had been built into the market in anticipation of possible shortages this winter . the exact cause of the sharp switch in market psychology is hard to pinpoint but seems to be a combination of very early signs that the oil stock situation is at least stabilizing , even if stocks have not built substantially , and that , thus far , despite a few weeks of colder - than - normal temperatures , heating oil supply has been adequate to meet demand in the key us market . that has allayed some of the concerns that were driving speculative interest into the market . furthermore , the potential for weakness in the us economy may be creating expectations for weaker oil demand in 2001 . the change in market psychology was dramatically illustrated when news that iraq was cutting off exports caused prices to slide , yet , the iraqi export cutoff is having a concrete effect on fundamentals . if the cutoff lasts through december , the effect will be pronounced - it would turn a projected fourth quarter 2000 stockbuild of 0 . 5 million barrels per day ( mbd ) into a stockdraw of 0 . 1 mbd . we expect iraqi production levels to remain erratic because of its dispute with the un security council over sanctions , and exports may again cease . at some point such a development would have a price supportive effect . cera ' s price outlook for 2001 remains the same as that in the world oil watch released in late november . assuming normal winter weather and no prolonged or repeated shutdowns of iraqi production , the projected average for first quarter 2001 is $ 29 per barrel for wti . however , this outlook is based on opec ' s announcing an agreement early in the first quarter to cut its production by the start of the second quarter . a failure to restrain output would result in a downward adjustment to an average of $ 27 wti for the first quarter of 2001 , with prices lower in the second half of the quarter than in the first . the downward pressure results from the prospect of a larger - than - usual implied build in stocks during the second quarter of about 3 . 0 mbd - with a cut in opec output . iraq in a twilight zone as anticipated , iraq ceased exporting oil under the un - controlled "" oil for food "" program as of december 1 in protest over the rejection by the security council ' s sanctions committee of its proposed december export price schedule . * iraq ' s pricing was judged by the un overseers , who monitor the export program and advise the sanctions committee , to be about 60 cents per barrel below comparable crudes in an apparent attempt to offset an illicit surcharge that iraq was seeking from buyers . although the standoff with the sanctions committee continues , iraq partially resumed exporting on december 13 . since then , about 1 mbd has been exported from the mina al - bakr terminal in the persian gulf . prior to the shutdown , iraqi exports under un auspices were at a rate of 2 . 21 mbd for november , as compared with 2 . 08 mbd for the third quarter . exports for november were about 1 . 3 mbd from mina al - bakr and about 0 . 9 mbd from ceyhan in the mediterranean . exports from ceyhan have not resumed , owing to the surcharge dispute , with the result that about 1 . 2 mbd of iraqi crude remains off the market . iraq ' s semi - shutdown has put it into a kind of twilight zone while its dispute with the sanctions committee over pricing continues . ( in the midst of this dispute , the un security council approved phase nine of the oil - for - food program at the last minute on december 5 ; it became effective on december 6 and has been accepted by iraq ) . as of decemberl 9 , iraq ' s revised export price for ceyhan , proposed for the remainder of december , has again been judged too low by the overseers and is expected to be rejected by the sanctions committee . additionally , the overseers have notified lifters of iraqi crude that any oil payment made directly to iraq rather than to the un escrow account would be a violation of un sanctions . buyers of iraqi oil from mina al - bakr have consistently been reported as saying that they are not paying a surcharge to iraq . how long iraq may operate at about half capacity is unclear , but it continues to request a surcharge payment from prospective lifters at ceyhan in an apparent effort to circumvent and degrade the un financial controls that are the heart of the sanctions system . the distinction that iraq has made between mina al - bakr and ceyhan arose when it resumed operations at mina al - bakr by loading two cargoes for the india oil company . iraq may have judged this accommodation to be in its interest , since it recently also signed an oil exploration contract with india under which payments would be made in oil . as currently structured , the deal would violate un sanctions , but india is seeking an exception from the security council on grounds of economic hardship . the exception seems unlikely to be granted , which may lead iraq to cease exports from mina al - bakr again . there are many possible scenarios that iraq could follow , but we expect uncertainty about iraqi exports to continue as iraq uses its oil exports as leverage to undermine sanctions in its ongoing struggle with the security council to end all restraints . consequently , the iraq factor will remain an element in the oil price outlook . iraq ' s antisanctions campaign has also raised the visibility of the iraq issue in washington as the incoming bush administration prepares to take office . secretary of state - designate colin powell has already acknowledged a need to reassess iraq policy and has said that he would work to "" reenergize "" sanctions . the iraq issue is being debated in virtually every foreign policy - oriented think tank in washington . a consensus seems to be emerging around seeking renewed international support and legitimacy for sanctions by retaining un control over iraq ' s oil revenue and strictly enforcing a prohibition on sales of weapons and related material while lifting general trade controls that increasingly are both ineffective and an international irritant . there is virtually no sentiment in favor of operations to destabilize or remove the saddam hussein regime on the pragmatic basis that the prospects for success are remote . demand trends record high us natural gas prices have increased the economic incentive for gas consumers with the capability to switch from gas to distillate to do so , and reports of switching are emerging in a number of areas . interruptible gas customers with resid or distillate fuel back - up have already switched to oil , so it is now firm gas supply customers with the potential to add to the already high level of distillate demand . so far in december us distillate demand is running at a record high december level of 3 . 9 mbd . however , only a small portion of this demand is the result of economically based fuel - switching from gas to distillate . cera estimates that the additional demand likely to come from further switching of gas to distillate is relatively small , on the order of 0 . 1 to 0 . 2 mbd . in cera ' s view it is likely that only a portion of the theoretical capacity will be switched on short notice because in some cases , this theoretically switchable capacity has not been used in recent years , and tankage and delivery infrastructure may be in uncertain condition . switching by interruptible gas customers ( such as utilities ) to distillate began about a month or more ago , although the volumes involved are relatively small . switching to residual fuel already occurred months ago when gas prices started to surge in the summer . a portion of the us secondary and tertiary distillate stockbuild seen this autumn was likely prompted by interruptible gas customers filling their reserve distillate fuel storage . given the expectations of a tight gas market , regulators have been explicit about enforcing back - up fuel storage requirements in the months leading up to the current heating season . other end users of natural gas have few or no options for fuel switching . some ammonia and ethane producers have shut down operations because the cost of feedstock natural gas is high . natural gas is also used in some enhanced oil recovery operations , and some of these producers have also opted to sell gas back to the grid rather than produce oil . supply trends non - opec supply for the fourth quarter is expected to be up 0 . 9 mbd over a year earlier at 46 . 4 mbd . recent events include a shortfall in mexican production , curtailed in october by about 300 , 000 bd owing to the effects of hurricane keith . mexico ' s fourth quarter liquids production is expected to be 3 . 64 mbd - about 95 percent of mexican liquids capacity . norway ' s output increased 200 , 000 bd from october to november as maintenance season ended . norway ' s production for the fourth quarter is expected to be 3 . 53 mbd . * growing russian crude oil production throughout the year is supporting a recent surge in exports , in spite of higher export taxes . russian exports of domestic oil production ( excluding transit volumes ) reached 2 . 5 mbd in november , after remaining fairly steady at about 2 . 35 mbd from july though october . fourth quarter oil exports are expected to average 2 . 5 mbd , 0 . 3 mbd greater than in the fourth quarter 1999 . cera estimates iraqi oil production averaged 2 . 91 mbd in november - down 0 . 1 mbd from the october level . the cutoff in exports earlier this month reduced iraqi output for the first 12 days of december to roughly 0 . 8 mbd . iraq resumed exports of about 1 mbd on december 13 , which raised production to 1 . 80 mbd . assuming no change in iraq ' s current production stance , iraqi production would average 1 . 41 mbd for december . on a quarterly basis , the decline in iraq output would lead to estimated opec output in the fourth quarter of 29 . 0 mbd and would turn an estimated global oil stockbuild of 0 . 5 mbd into a stockdraw of 0 . 1 mbd . these production estimates include 0 . 15 mbd of crude oil exports to syria that began on november 20 without un authorization and are continuing . oil stocks us crude oil inventories ( doe data ) have climbed intermittently from an annual low of 280 million barrels in september and reached 292 million barrels in mid - december ( see figure 1 ) . since prices weakened in late november , crude oil stocks have stabilized above the annual low in september and the ranges seen in october to levels from 289 - 292 million barrels . primary inventories of us heating oil remain well below year - earlier levels ; at 48 million barrels they are 15 million barrels , or 24 percent less , than those of a year ago , but there are indications of builds in secondary and tertiary inventories . we estimate that wholesale and consumer stocks are up 5 - 10 million barrels since august and are actually higher than they were at the end of last year . in europe crude oil stocks are at more comfortable levels when compared with those of the united states . in november stocks rose nearly 9 million barrels to 426 million barrels . at this level they are below the highs of 1999 but well above the low levels of early 1996 ( see figure 2 ) . japanese crude oil inventories at end - october were 107 . 6 million barrels , which is above the record low set earlier this year but still well below levels seen in recent years ( see figure 3 ) . come shoot the rapids with us at ceraweek 2001 , "" shooting the rapids : strategies and risks for the energy future "" in houston , february 12 - 16 , 2001 ! ? for more information and to register , please visit http : / / www 20 . cera . com / ceraweek / to make changes to your cera . com account go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - crenshaw , shirley j wincenty j kaminski oct 26 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: further actions on anjam ' s departure hi mel further to our earlier discussions here ' s the full list of actions we ' d like to put into place regarding anjam ' s departure : hr - type stuff : 1 . get anjam off the trading floor as soon as possible . there is no need for him to remain on the floor . this will need to be delayed until it number 1 is completed ( cataloguing his work ) . 2 . determine where anjam is heading . we need to know who is going to know our positions and curves next . 3 . remove his security pass , and insist that he is always accompanied when in the building . sharad is to sit with him while he catalogues his work . it - type stuff : 1 . ask him to catalogue the contents of his h : drive , since the rest of the group will need to support his work in the future . this should take no more than a day or two . 2 . get it to obtain their backups of anjam ' s h : drive for weekly intervals over the last two months . this will allow us to determine what he has deleted . 3 . get it to provide a snapshot of anjam ' s notes folders , and provide records of mail sent out to the internet over the last couple of months . i ' m worried about code / data he may have zipped up and mailed out . 4 . ask it to use a utility program to determine what has been deleted from anjam ' s c : drives . there may be useful info here too . 5 . revoke all internet access , whether via explorer or notes mail . 6 . get a record of all files he has printed over the last couple of months . vince has ok ' d this lot , so let ' s do it asap . many thanks , steve",0 +"Subject: re : bandwidth + + stinson , let ' s bring up these two ideas at the meeting with john bloomer ( to discuss the other product ideas ) . vince steven leppard 05 / 11 / 2000 08 : 38 am to : vince j kaminski / hou / ect @ ect cc : subject : re : bandwidth + + vince if it ' s new ebs products you ' re after , how about a real - time bandwidth swing contract with automatic exercise ? the customer pays for the minimum ( baseload ) bandwidth they need for their ( say ) videoconference , with a premium on top that automatically buys them extra bandwidth as it becomes available from the system . they are guaranteed a minimum quality they can live with , and ( more than likely ) they get improved quality much of the time for a bargain price . we get to charge for the use of bandwidth that would otherwise be idle . steve vince j kaminski 05 / 11 / 2000 02 : 09 pm to : steven leppard / lon / ect @ ect cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : bandwidth + + steve , i think personally it ' s a great idea , though my son , who studies computer science , poured a bucket of icy water on me . computers are becoming very cheap and most companies have already a lot of spare capacity on their systems . but we can always try . we shall take this idea , to the person in ebs responsible for the new products and ask him to talk directly to you to discuss the details . ebs is dying to come up with some new products . vince steven leppard 05 / 11 / 2000 03 : 56 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : bandwidth + + vince , stinson have any investigations been made of the issue of trading ( spare ) processing power ? such a proposal would have natural synergies with the bandwidth business , since the jobs to be processed would need to be piped around , as would their results . obvious technical and legal problems are : 1 . standardisation . ( java ? ) 2 . security and confidentiality . just a thought that ' s been buzzing around my head for a while . steve",0 +"Subject: storage book . . . ravi : samer and i met this morning with sara ledbetter . she is starting the groundwork for setting up a storage book and a streaming book for tracking the e - powered products positions . they are having a meeting on next tuesday to discuss this . samer will attend . this is a good opportunity to start compiling the data that we will need for some of john grieblings questions . - - stinson p . s . sara also asked if we knew anyone who would be interested in managing the storage book . any suggestions ?",0 +"Subject: re : billing question thank you for your message . the credit card i want to use is currently stored in your system . when i want to update the billing information with this card number , i am getting the answer : credit card already in use . the card is in good standing and there is absolutely no problem with this card and there was never any problem . i don ' t understand why your system failed . i think that this is your problem , not mine . discover last 4 digits : 0057 . expiration : 05 / 02 sincerely , w . kaminski p . s . i have just called discover and was told the account is in pefect shape ( as expected ) . as i have said , you must have a bug in your system .",0 +"Subject: re : garp 2001 convention frank , i assume you want to take advantage of this opportunity . please , confirm . i shall notify andreas . vince enron north america corp . from : frank hayden @ enron 12 / 14 / 2000 09 : 55 am to : vince j kaminski / hou / ect @ ect cc : subject : re : garp 2001 convention thanks , frank vince j kaminski @ ect 12 / 14 / 2000 09 : 45 am to : frank hayden / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : garp 2001 convention frank , does this help ? please , let me know . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 14 / 2000 09 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" andreas simou "" on 12 / 13 / 2000 04 : 51 : 51 am to : cc : subject : re : garp 2001 convention dear vince thank you for your recent enquiry concerning a complimentary pass to the two - day garp convention . unfortunately , it is not garp ' s policy to allow this for a number of reasons : garp is a not - for - profit organisation , will much lower delegate fees ( and still the same overheads ) than other conference organizers . garp ' s mission is to allow an educational forum for furtherance of financial risk management and an opportunity to allow networking and contact time between financial risk professionals . however , in an attempt to remain at ease with my speakers , i would like to offer a 50 % discount off the delegate fee for one of you colleagues in enron . this will be for the two - day convention and will include the gala awards evening on 13 th february , which had over three financial and risk professionals at garp 2000 . i trust that this is satisfactory . if you would like to take advantage of this , please fax a completed registration form , along with a brief covering note referring to this e - mail , and i will ensure that our administration depart handle the relevant paper work . if you have any questions please do not hesitate to contact me . i look forward to your response and to meeting you in new york in february ( and receiving a copy of your presentation in a few days ) . kind regards andreas - - - - - original message - - - - - from : to : cc : sent : tuesday , december 12 , 2000 8 : 50 pm subject : re : garp 2001 convention andreas , am i entitled to bringing one delegate as a guest , free of charge ? some conferences offer such privileges . vince "" andreas simou "" on 12 / 04 / 2000 06 : 31 : 37 am to : cc : subject : garp 2001 convention dear garp 2001 speaker this is just a quick note to keep you up - to - date with developments at the garp 2001 convention , which will be held in new york between 12 th and 15 th february , 2001 . thus far , garp 2001 looks set to far exceed our expectations and garp 2000 . there has been a great deal of interest in the 2001 convention . delegate bookings have been much higher than this time last year . as a result , we are set to far exceed the number of delegates that attention earlier this year . the three workshops and the one - day asset management forum are also very well received and will probably reach full capacity . i will of course provide you with much fuller details closer to the time of the event . regarding the event itself , i would like a few outstanding issues : 1 . presentations : can you please e - mail your presentation to me by 15 th december , so that i have enough time to reproduce them and place them in a delegate pack for the convention . ( given the break of the christmas and new york period , and that the event is being held in new york , i am sure you can appreciate that there are certain logistical factors that need to be taken into account , hence the reason why the presentations are required as soon as possible ) . this is purely for reproduction , we also request you bring your presentation to the convention on the day in either a floppy disc or a laptop . 2 . audio - visual requirements : can you please inform me of what audio - visual requirements you may have ( 35 mm slides ; ohp ; lcd projection - notably powerpoint ) . 3 . check list : i have attached a check list for your information . if you have not returned this already , can you please read and fax it to my colleague , claire as soon as possible . if you have any questions or queries , please do not hesitate to contact me , otherwise i eagerly await your response in due course . i look forward to seeing you in new york in february . kind regards andreas _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900 don ' t miss the garp 2001 convention , program details via our web site www . garp . com ( see attached file : speaker checklist . doc )",0 +"Subject: re : additional bloomberg terminal for weather group on 31 st floor jason , there was a problem with the request . i could not approve it ( the system would not let me do it ) . there must have been a mistake in the way it was submitted ) . please , ask shirley to resubmit . vince from : jason sokolov 01 / 28 / 2000 08 : 51 am to : vince j kaminski / hou / ect @ ect cc : subject : additional bloomberg terminal for weather group on 31 st floor vince , a few weeks ago we talked about installing an additional bloomberg terminal on the 31 st floor for mike ' s weather team . i have submitted a security request , and we are now waiting for your approval . could you , please , go over that request and give mike roberts and me your feedback ? jason sokolov",0 +"Subject: re : spring 2001 conference participation by jeffrey k . skilling thanks for the note and i enjoyed seeing you the other night . we are working with jeff ' s assistant on the date . it looks like it may be possible but there are a few conflicts to dodge . we will be in touch soon . thanks "" ehud i . ronn "" on 09 / 20 / 2000 11 : 12 : 46 am to : rcausey @ enron . com , vkamins @ enron . com cc : subject : spring 2001 conference participation by jeffrey k . skilling rick / vince , good morning . in my 9 / 14 e - mail , i advised you of the practitioner - industry cefer ( center for energy finance education and research ) conference we are planning for spring 2001 . as you know , we would like to invite jeff skilling to be the keynote speaker at the thur . evening dinner . the following day ' s four topics consist of risk management , deregulation , real options , and international / globalization . the majority of invitees would be ( predominantly u . s . - based ) energy - industry practitioners , as well as several academics . given lead time issues in these matters , we have reserved hotel rooms in austin for feb . 22 , 2001 . could i ask you to ascertain jeff skilling ' s availability for that evening ? thanks , ehud ronn ehud i . ronn professor of finance and jack s . josey professor in energy studies director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: risk report on "" guide to electricxity hedging "" and request for gu est access to enrononline louise , it would be a good commercial for enron . what can we do to help him and get free publicity ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 18 / 2000 01 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - ekrapels on 01 / 18 / 2000 12 : 00 : 12 pm to : vince j kaminski / hou / ect @ ect cc : subject : risk report on "" guide to electricxity hedging "" and request for gu est access to enrononline dear vince , greetings from boston , where we ' re doing all we can to help keep the price of gas high . as i may have told you earlier , i ' m writing a "" guide to electricity hedging "" for risk publications similar to the report on oil . i had planned to write a significant section on enrononline , and in the midst of my research on the topic was denied access by enron ' s gatekeeper . can you help get me in ? as always , the best from here . ed krapels - - - - - original message - - - - - from : donna greif [ mailto : dcorrig @ ect . enron . com ] sent : tuesday , january 18 , 2000 12 : 37 pm to : ekrapels @ esaibos . com subject : request for guest access dear mr . krapels : thank you for requesting guest access to enrononline . unfortunately , we are unable to give you quest access at this time . enrononline is exclusively for those companies who can transact wholesale energy commodities and related products . in addition , you had indicated within the comments section of your email that you are preparing a "" guide to electricity hedging "" for risk publications . i have forwarded your inquiry to our public relations department along with your contact information . should you not hear back from anyone within a reasonable amount of time , please feel free to contact our call center at 713 853 - help ( 4357 ) . sincerely , donna corrigan greif enrononline help desk 713 / 853 - 9517 - attl . htm",0 +"Subject: london telephonhe numbers change fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 26 / 2000 12 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - anjam ahmad 04 / 26 / 2000 11 : 44 am to : shirley crenshaw / hou / ect @ ect cc : subject : london telephonhe numbers change hi shirley , please could you forward this to houston research . . . may explain difficulty in calling london . thanks , anjam - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 26 / 04 / 2000 16 : 54 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe general announcement 20 / 04 / 2000 15 : 41 please respond to european it support / lon / ect to : ect london cc : subject : very important - "" change of telephone numbers "" this weekend ! ! ! as you are no doubt aware , this weekend ( 22 nd april 2000 ) the 0171 and 0181 london dialling codes are being replaced by 0207 and 0208 respectively . since our move to enron house all external customers should have been made aware of the new 020 7783 telephone numbers . we are however still receiving calls on the old 0171 numbers . please be aware that these 0171 numbers will be cease to operate on the 22 april 2000 . from this date , calls made to the old 0171 numbers will reach an announcement advising them to call enron ' s new switchboard number : 020 7783 0000 . please ensure that your external contacts are made aware of the correct number convention : 020 7783 xxxx details of new phone and fax numbers are as follows : click here - - > < - - to access the personal fax numbers ( surname k - z ) details in the "" non - commercial bulletin board "" database on ectlon - ln 2 / ect . if you access the enron network via ' ras ' , you must ensure that the ras number is updated in your laptop settings . the old ras number was 0171 316 6666 . this has changed to 020 7783 6666 . from the 22 april 00 oftel ' s ' big number ' day you will no longer be able to dial 0171 and 0181 numbers . the new 0207 and 0208 numbers must be used in their place . current users of the new code will know that at present you must use the new area code as well as the new number . from the 22 april 00 you will be able to dial either the local number on it ' s own i . e . 7783 0000 or the area code and local number i . e . 020 7783 0000 . if you have any questions please contact european it support on 36777",0 +"Subject: my trip to india tentative plan is like this : leave houston : sun . 9 th to arrive bombay mon late night . leave bombay for hyderabad fri 14 th . leave for vijayawada 16 th night . return to bombay and leave bombay on 19 th wed . back to houston on thursday . i will be taking vacation on 17 th & 18 th visiting my family . i don ' t have a number for bombay , but i should be with sandeep kohli ( cell # below ) . contact # s : bombay 011 - 91 - 982 - 1068238 ( to 14 th ) hyderabad 011 - 91 - 40 - 7114833 ( 15 - 16 th ) vijayawada 011 - 91 - 866 - 430928 ( 17 - 18 th ) hopefully , there won ' t be too much of excitement on the flights , especially in india ! krishna .",0 +"Subject: component var tanya , some stability tests were performed on the simulation . ( 1 ) the window size of the averaging in the simulation was changed from 10 to 20 for ng - price ( the biggest book in gas ) for effective date june - 28 . as you can see in the file 28 ng - price _ windowsize , the component var numbers are very similar . ( 2 ) to look at a calculational comparison , i looked at the storage - prc book ( which has no gamma position ) for effective date of 27 th and ( a ) calculated ffvols , and ( b ) calculated the riskmetrics var ( the correlations are very high across the term structure ) and compared to the component var code calculation , and again the two nubers are comparable , given the different modes of calculation . naveen",0 +"Subject: new order : palm vx for grant masson lyn : please order for me one palm pilot vx including docking cradle ( that ' s the palm v with 8 mb of ram ) . company number is : 0011 rc is : 100038 thanks , grant masson v . p . research eb 1966 x 34768",0 +"Subject: the latest ( last ? ) intended for mark a . palmer . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by mark s palmer / na / enron on 02 / 02 / 2001 08 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 02 / 02 / 2001 08 : 45 am to : mark s palmer / na / enron @ enron cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect subject : the latest ( last ? ) mark , i am sending you the final ( ? ) draft of the paper by john martin on enron ' s transformation . john martin is a prof from baylor who visited us a few weeks ago . can you take a look at the paper and bless it . i haven ' t read this last version of the paper yet and i will go through it on weekend . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" john d . martin "" on 02 / 01 / 2001 04 : 15 : 36 pm to : vkamins @ enron . com cc : subject : the latest ( last ? ) vince , attached is my latest attempt to wrap everything together . our timetable is very short as we need an "" approved by enron "" version of the paper to don by next wednesday . don has already made editorial changes for us and may make some additional "" writing style "" changes but he doesn ' t change the content . i ' ll give you a call later today to alert you to the e - mail . take care , john p . s . i had a nice conversation with steve . sounds like he ' s landed a pretty good contract with wiley . - enron _ paper _ 2 _ 1 _ 01 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : follow up on houston opportunity anjam , i have another meeting . please , talk to grant . i shall catch him in the morning to review where we stand . vince enron capital & trade resources corp . - europe from : anjam ahmad 08 / 10 / 2000 08 : 41 am to : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect cc : subject : follow up on houston opportunity hi vince & grant , i was wondering if you would have some time to discuss the opportunity tomorrow morning ( friday ) ? i am free from 10 am to 12 pm houston time . thanks , anjam x 35383",0 +"Subject: re : personal dear mr . kaminski : thank you very much for meeting with me again today over lunch . i appreciated the opportunity to catch up with you . please find attached my current resume ( both a short and a long version ) . i have worked as a trader , portfolio risk manager , and a stock analyst . i have traded derivatives , bonds , and stocks , and managed insurance and pension investment portfolios to maximize risk - adjusted returns . let me highlight some of my work experiences . trading and risk management a . . structured , negotiated , and traded otc interests rate swaps , cross - currency swaps , swaptions , and exchange - traded equity index futures and options . made powerpoint presentations to garp and the uoh on credit derivatives . b . . developed investment hedging program utilizing exchanged - traded bond futures and interest rate swaps . c . . traded and managed pension and insurance fixed income portfolios to maximize total return and funding ratios . bonds traded : treasuries , agencies , mbs / cmos , abs , corporate , yankees , and foreign . d . . traded and managed stock mutual portfolios for total return . e . . created a computer program to quantify the attribution of total return for fixed income portfolios relative to market returns . f . . programmed investment compliance rules to monitor the management of domestic and global stock , bond and money market mutual funds . g . . supervised market risks , credit risks , legal risks , and operations risks of derivatives , bonds , money market securities , and equities . policy , reporting and projects a . . developed investment policy guidelines to manage fixed income portfolios . b . . rewrote derivatives policy manual . c . . prepared a 20 - page powerpoint slide presentation on india for the senior management . d . . prepared and presented investment reports to cios , investment committees , and boards of trustees i shall , therefore , appreciate your help in connecting me with the right individual within enron for a job interview to work as a financial trader / risk manager . i can provide excellent references upon request . thank you for the lunch . sincerely , maruti d . more , cfa 713 - 722 - 7199 more @ insync . net - - - - - original message - - - - - from : vince j kaminski to : more date : tuesday , january 25 , 2000 12 : 39 pm subject : re : fw : luncheon meeting : asap hello , i shall be traveling this week . i shall be glad to meet you for lunch next week . please give me a call monday at 713 853 3848 . vince "" more "" on 01 / 25 / 2000 10 : 27 : 09 am to : vince j kaminski / hou / ect @ ect cc : subject : fw : luncheon meeting : asap dear mr . kaminski : just to bring you up to date . i am no longer with american general . i shall , therefore , appreciate an opportunity to meet with you for lunch at the earliest possible time . i can be reached at 713 - 722 - 7199 . thank you . maruti more 713 - 722 - 7199 - - - - - original message - - - - - from : more to : vince j kaminski date : friday , december 17 , 1999 8 : 55 pm subject : re : luncheon meeting thank you for your response . i was very happy to hear from you . i am also taking next week off and will be back to work on december 27 th . please do call me when you get back . would very much appreciate the opportunity to have a quick lunch with you , if possible . hope everything is going well . have wonderful christmas holidays . regards maruti more 713 - 831 - 6209 ( o ) - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski date : friday , december 17 , 1999 3 : 35 pm subject : re : luncheon meeting hello , i shall be taking a few days off around xmas . i shall call you at the end of december when i get back to the office . with best holiday wishes , vince "" more "" on 12 / 01 / 99 09 : 28 : 09 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : luncheon meeting dear mr . kaminski : how are you doing ? i want to find out if we can meet again for a quick lunch . you might know that in maharashtra , india there is now a new chief minister ( ceo of the state government ) . i am proud to say that he and i are from the same town , latur . i would really enjoy talking with you again , at your convenience . i will call you tomorrow to follow up . thank you . sincerely , maruti more - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski ; vkaminski @ aol . com date : thursday , july 01 , 1999 6 : 16 am subject : re : luncheon meeting dear mr . more , let ' s meet at 11 : 45 in the lobby of the enron building . we can walk to one of the restaurants in the downtown area . vince kaminski ( embedded enron capital & trade resources corp . image moved to file : from : "" more "" picl 7002 . pcx ) 06 / 30 / 99 10 : 38 pm to : vince j kaminski / hou / ect cc : subject : luncheon meeting dear mr . kaminski : i am looking forward to our luncheon meeting on this friday , july 2 , 1999 at 11 : 30 am . please let me know where we should meet . thank you for taking time out from your busy schedule . sincerely , maruti more tel . : 713 - 831 - 6209 - attl . htm - bio @ home . doc - more @ home . doc",0 +"Subject: re : vincent tang vince - thanks so much for the job description . i forwarded it to our legal counsel for their review , and they were very pleased with it . they said it really helped them to understand what vincent is actually doing , which will enable them to better prepare his case . thanks again . candace vince j kaminski 01 / 07 / 2000 12 : 20 pm to : candace womack / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : vincent tang candace , . sorry for additional delay . editing took a long time . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000 12 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 04 / 2000 12 : 11 pm to : candace womack / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : vincent tang candace , sorry for the delay . i shall edit the job description and forward it to you later today . vince candace womack 01 / 04 / 2000 11 : 24 am to : vince j kaminski / hou / ect @ ect cc : rebecca shelp , "" r . van ravenswaay "" , margaret daffin / hou / ect @ ect , jane allen / hou / ect @ ect subject : vincent tang vince - will you please review the following job description which tindall research analyst ) overview : provides research support for specific projects and programs . essential functions : projects may involve collecting and analyses data to formulate recommendations , policies or solutions . marginal functions : may involve mathematical or simulation models of problem for solution by computers or other methods : analyzes problem in terms of information and conceptualizes and defines problem . studies information and selects plan from competitive proposals that affords maximum probability of profit or effectiveness in relation to cost or risk . prepares model of problem in form of one or several equations that relates constants and variables , restrictions , alternatives , conflicting objectives and their numerical parameters . defines data requirements and gathers and validates information applying judgment and statistical tests . specifies manipulative or computational methods to be applied to model . performs validation and testing of model to ensure adequacy , or determines need for reformulation . prepares reports to management defining problem , evaluation , and possible solution . evaluates implementation and effectiveness of research . may design , conduct , and evaluate experimental operational models where insufficient data exists to formulate model . may specialize in research and preparation of contract proposals specifying competence of organization to perform research , development , or production work . may develop and apply time and cost networks , such as program evaluation and review techniques ( pert ) , to plan and control large projects . may work in association with engineers , scientists , and management personnel in business , government , health , transportation , energy , manufacturing , environmental sciences or other technologies . i look forward to your response . rebecca shelp legal assistant tindall & foster , p . c . 600 travis , suite 2800 houston , texas 77002 - 3094 telephone : ( 713 ) 229 - 0636 ext . 101 fax : ( 713 ) 228 - 1303 email : rshelp @ tindallfoster . com",0 +"Subject: re : technical corner article tanya , looks good . we should break it up in 2 parts . vince tanya tamarchenko 02 / 09 / 2001 10 : 36 am to : vince j kaminski / hou / ect @ ect cc : william smith / corp / enron subject : re : technical corner article vince , see if this is a good article for our technical corner . tanya",0 +"Subject: re : amitava ' s visit bryan , i am glad we could help . let me talk to vasant about amitava ' s support for you . vince bryan seyfried 11 / 05 / 2000 05 : 26 am to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : steven leppard / lon / ect @ ect , markus fiala / lon / ect @ ect subject : amitava ' s visit really appreciate your freeing amitava up to provide critical input into the quantitative work we have undertaken . as you are aware much of the work requires exploring uncharted territory and the team has confirmed the significant contribution that amitava ' s experience and expertise has provided in a very short timeframe . as you might expect , this quickly confirms that we really need more dedicated support from someone with amitava ' s background . it is imperative that we leverage his experience to speed up the process and apply critical insights into our project . this will not only speed up the work considerably but also ensure that we have put our best team on the difficult issues in front of us . i would like to discuss an arrangement where we can ensure amitava is more integrated into our efforts . i realize it will be difficult to free him up but maybe we can put something together which works for everybody . some early ideas : have amitava and family come over for 6 weeks of dedicated support . this should allow us to develop the communication processes to run a global quant effort for the project and then continue with amitava a full time ec . com resource working from houston . this is likely my preference . or agree a schedule of regular trips which allows amitava to provide critical insights and oversight of the project and give our team a resource to extract his experience on an ongoing basis . let ' s discuss before i talk to john about the practicalities thanks for your assistance .",0 +"Subject: a message from joe sutton today , i announce my departure from enron . enron is a great company and i have enjoyed working with our terrific employees over the last eight years . together , we have made enron a successful global company . with enron  , s decreased emphasis on international asset development activity , however , i have decided to pursue opportunities where i can make greater use of my skills and experience . i leave enron with wonderful memories of our employees and the many successes we have achieved together . you have my best wishes for enron  , s continued success . joe",0 +"Subject: enhanced energy scheduler tool in production today message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : the new pjm enhanced energy scheduler ( ees ) will go into production at 10 : 00 this morning 4 / 17 / 00 at https : / / ees . pjm . com / mui / index . htm . schedules may be submitted for energy that begins on or after tomorrow , 4 / 18 / 00 . for questions please contact pjm at 610 - 666 - 2270 . questions may be directed to pjm customer service at ( 610 ) 666 - 8980 . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: summer position - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 13 / 2000 01 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - amy ruth ward on 03 / 13 / 2000 01 : 31 : 54 pm to : celeste roberts / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : summer position dear celeste and stinson , i am writing to refuse enron ' s offer for a summer position . after several conversations with my advisor at stanford , we have decided that i should remain at stanford to work on my dissertation . thank you again for taking the time to show me around enron . sincerely , amy ward",0 +"Subject: re : confirm participation at real options conference at cambridge u . - urgent i ' d love to . it ' d be good to get to know lenos . cheers , steve vince j kaminski 04 / 20 / 2000 02 : 09 pm to : steven leppard / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : confirm participation at real options conference at cambridge u . - urgent steve , are you interested in speaking at this conference ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 20 / 2000 08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lenos trigeorgis on 04 / 19 / 2000 05 : 32 : 27 pm to : "" vince j kaminski "" cc : subject : re : confirm participation at real options conference at cambridge u . - urgent vince can you please check with steve leppard and ask him to confirm , and send to me his position and title of his talk ( if different from yours ) ? thanks very much again lenos at 05 : 14 _ _ 04 / 19 / 00 - 0500 , you wrote : > > > lenos , > > my busy schedule does not allow me to attend . > > i would like , however , to recommend my colleague who works > in london , steve leppard . > he can make a very interesting and original presentation on real options . > please , let me know what you think . > > vince > > > > > > > lenos trigeorgis on 04 / 18 / 2000 09 : 29 : 18 pm > > to : lenos . trigeorgis @ rogroup . com > cc : ( bcc : vince j kaminski / hou / ect ) > subject : confirm participation at real options conference at cambridge > u . - urgent > > > > the attached file contains the tentative program for two back - to - back real > options conferences ( a professional one for july 5 - 6 , and the standard > annual academic one for july 7 - 8 ) at cambridge u . > > your name has been provisionally included on the program . please check all > the information relating to you and confirm your participation as listed > ( or advice us of desired changes immediately ) . > > thank you . > > lenos > > > > attachment converted : "" c : \ drive _ e \ eudora \ attach \ 4 thconfsessionsl 2 . doc "" > > > lenos trigeorgis > professor of finance > university of cyprus > dept of business > 75 kallipoleos , po box 20537 > cy 1678 nicosia cyprus > > tel : + 357 2 892261 > fax : 339063 > > > lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: re : research meeting steve , yes . i shall try to call you later this morning . i had a schedule from hell the last few days . vince steven leppard 10 / 26 / 2000 08 : 45 am to : john sherriff / lon / ect @ ect , michael r brown / lon / ect @ ect , richard lewis / lon / ect @ ect , joe gold / lon / ect @ ect , tani nath / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , sarah jane white / lon / ect @ ect , lauren urquhart / lon / ect @ ect , kirsten nelz / lon / ect @ ect , sarah knott / lon / ect @ ect , fiona stewart / lon / ect @ ect subject : research meeting all john sherriff has suggested we all get together in the near future to discuss the demands being placed on the research group . i will be making a request for additional resources , and the aim of the meeting is to determine the most appropriate size for the team . assistants : can we aim for week commencing 6 th november ? vince : would you like to teleconference in ? many thanks steve",0 +"Subject: visit may 4 th vince : per susan ' s email below , do you want to go to the luncheon for john hennessey ? she doesn ' t say where the lunch is going to be , did you get an invite ? the only thing you have that day is 9 : 00 am larry thorne and the energy derivatives class at 11 : 30 . let me know . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 17 / 2001 11 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" susan c . hansen "" on 04 / 17 / 2001 10 : 47 : 38 am to : shirley . crenshaw @ enron . com cc : clovell @ stanford . edu , donna lawrence subject : visit may 4 th hi shirley , thanks for corresponding with carol during my absence , and confirming our meeting with vince kaminski at 1 : 30 on may 4 th . i have a question about the logistics . i believe dr . kaminski has received an invitation to an event in houston : new stanford president john hennessy is visiting a number of cities on a "" welcome tour , "" and it just so happens he is hosting a luncheon in houston on may 4 th . if dr . kaminski wants to attend the hennessy welcome tour luncheon , donna lawrence and i could meet with him at 1 : 30 somewhere in the hotel . if he ' s not attending the presidential event , please let me know where you are located , and we ' ll plan travel time accordingly . regards , susan susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: re : equity investment fair value in turkey john , please , give me another day to elaborate . it ' s quite hectic here . vince enron capital & trade resources corp . - europe from : john bottomley 06 / 21 / 2000 03 : 41 am to : vince j kaminski / hou / ect @ ect cc : subject : re : equity investment fair value in turkey vince , any further thoughts on your end ? john vince j kaminski 19 / 06 / 2000 15 : 45 to : john bottomley / lon / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : re : equity investment fair value in turkey john , it seems to me that using a risk - free rate is not appropriate . i shall elaborate on my position and send you a longer message this afternoon ( my time ) . vince enron capital & trade resources corp . - europe from : john bottomley 06 / 19 / 2000 05 : 55 am to : vince j kaminski / hou / ect @ ect cc : john sherriff / lon / ect @ ect , dale surbey / lon / ect @ ect subject : equity investment fair value in turkey vince , john sherriff recommended that i contact you regarding an interesting ( and potentially contentious ) option valuation issue we are currently dealing with in london . we hold longish term options in a private company in turkey which is currently seeking to ipo . the issue we are discussing with rac is which discount rate ( i . e . , risk - free ? and if so turkish or us ? ) should we use to value these options first , some additional information . option characteristics : - - 116 , 000 options ( representing 9 % of the company ) - - term : minimum of 3 years but possibly longer - - still being renegotiated - - strike price : 20 % below the upcoming ipo price ( either priced in us $ or turkish lire ) we currently hold the above number of options with a fixed price of $ 118 . 75 per option but 34 , 800 expire on july 15 , 2000 with the remainder expiring on december 15 , 2000 . the company ' s investment bankers ( abn / amro rothchilds ) are concerned regarding the strike price because it values the company at $ 118 million and they believe the company is worth approx $ 300 million . due to such a large "" valuation gap "" , they originally encouraged us to exercise all of the options by the end of june ( ipo target date in late sept / early oct ) . our counter - proposal is to "" swap "" instrinsic value for time value by repricing the options strike higher while extending their term . we are currently negotiating with rac the most appropriate discount rate to use to value the options . we are arguing that the us risk free is the most appropriate discount rate and their current position is that the company ' s historical senior debt cost ( 18 % ) is the more appropriate number to use ( although admit that this is not justifiable - - only a proxy ) a few key points : - - rac is valuing the options via crystal ball simulations such that this "" to be negotiated "" discount rate is used to calculate the pv of the future options intrinsic value in 3 years ( i . e . , for black - scholes , a higher discount rate yields a higher value but the opposite is true using crystal ball simulation ) - - the model simulates both an ipo / no ipo case and in the case of no ipo we have put options for our equity priced at a fixed 17 % return - - the model assigns a 30 % illiquidity discount - - in the simulated cases where the options are out - of - the - money , we obviously do not exercise . we understand that for black - scholes option valuation , one needs to be able to construct a comparable portfolio of cash flows using equity futures and the risk free in order for the valuation to hold . and here is where we reach our difficulty : since the company doesn ' t currently trade on a public market and since equity futures do not exist for turkish equities , rac is arguing that a us risk free is not appropriate to use . our argument is that the non - ipo scenario , a 30 % illiquidity discount and a us $ based option volatility are already in the factored into the simulation . as such , we feel rac ' s approach is double counting . if you managed to get through the above , your a patient man ! i ' ll give you a call today or tomorrow after you ' ve had a chance to digest the information . regards , john bottomley",0 +"Subject: stanford associate recruiting i would like to take this opportunity to thank each of you for your participation in the stanford associate interviews last week . our efforts resulted in 6 summer associate offers and 1 full - time associate offer . althea gordon will be e - mailing you the names of the individuals who will receive offers . we would like you to contact these individuals to congratulate them and encourage their acceptance . althea will match you up with the candidates you interviewed and provide you with contact information . althea has verbally contacted both the offers and the declines . we will be sending out both offer letters and decline letters by end of day tuesday , march 20 . in the meantime , should any of you be contacted by students who did not receive an offer , i recommend the following verbal response : "" our summer program is highly competitive , forcing us to choose a smaller number of candidates from a highly qualified pool . our summer hiring this year will be between 35 - 40 associates . the full - time program typically hires between 80 - 90 associates . given that you made it this far in our selection process , i would strongly encourage you to apply in the fall for the full - time associate program . "" we will keep you informed via e - mail of our acceptance rate at stanford . again , thank you for your support . we look forward to working with you on potential future stanford recruiting events . regards , celeste roberts",0 +"Subject: my coordinates test message vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: re : visit to houston and vince kaminski ' s research group vince , thanks for the update . i ' m looking forward to meeting you too . shijie shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng on thu , 27 jul 2000 vince . j . kaminski @ enron . com wrote : > > shijie , > > we would like you to meet tomorrow morning , starting at 9 : 00 , with a few > members of the > group . around 11 : 15 we shall go to lunch ( myself , stinson gibner and zimin > lu ) . > at 1 : 00 we would like you to make a presentation to the research group on > the topic > of your choice . after 2 : 30 we shall continue with individual meetings . > > we shall give you an agenda with the names and times when you arrive . > > you can come to the lobby of the enron building ( 1400 smith ) > between 8 : 30 and 9 : 00 and call me ( 3 - 3848 ) or my assistant , > shirley crenshaw ( 3 - 5290 ) , to be admitted to the building . > we are on the 19 th floor . > > look forward to meeting you . > > vince kaminski > > > > > > > shijie deng on 07 / 27 / 2000 10 : 10 : 03 am > > to : shirley . crenshaw @ enron . com > cc : vince kaminski > subject : re : visit to houston and vince kaminski ' s research group > > > > hi shirley , > > an overhead would be good . thanks . > btw , is there happen to be an agenda for my visit ? thank you . > > shijie > > shi - jie deng > assistant professor > school of isye > georgia institute of technology > > office phone : ( 404 ) 894 - 6519 > e - mail : deng @ isye . gatech . edu > home page : http : / / www . isye . gatech . edu / ~ deng > > on fri , 7 jul 2000 shirley . crenshaw @ enron . com wrote : > > > > > shijie : > > > > thanks for the information . > > > > please let me know if you need av equipment , i . e . , lcd projector , > overhead > > projector , etc . > > > > thanks ! > > > > shirley > > > > > > > > > > > > > > > > > > > > shijie deng on 07 / 03 / 2000 11 : 40 : 05 am > > > > to : shirley . crenshaw @ enron . com > > cc : vince kaminski > > subject : re : visit to houston and vince kaminski ' s research group > > > > > > > > shirley , > > > > i just booked my flights and the hotel . i ' ll be arriving houston on > > the evening of 7 / 27 and leaving on 7 / 29 . i ' ll stay at the doubletree > > houston allen center for two nights . looking forward to meeting you at > > enron . > > > > regards , > > > > shijie > > > > shi - jie deng > > assistant professor > > school of isye > > georgia institute of technology > > > > office phone : ( 404 ) 894 - 6519 > > e - mail : deng @ isye . gatech . edu > > home page : http : / / www . isye . gatech . edu / ~ deng > > > > > > > > > > > > > > > > > > > >",0 +"Subject: your visit to sydney in july dear vince , hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in sydney . is risk organising your hotel ? otherwise , kirsty can organise for you , eg harbour view at the regent or convenience to the seminar location at the sheraton ? we would like to make sure that you have all the necessary "" comforts "" of home when you are with us , elliott & david can set up a desk for you in the office / trading room with phone etc so you can use one of our pc to access email or plug in your laptop . please let elliott or david kmow your requirements . how long will you be with us ? is this your first trip to sydney ? there are several of us in the office who would like to take you for a meal ( s ) / show you the sights etc and discuss the latest research findings with you whilst you are in sydney eg var . hear from you soon . raymond 725 pm 4 july",0 +"Subject: re : grades thank you ! - pvc at 09 : 19 am 5 / 3 / 01 - 0500 , you wrote : > pam , > > another group : > > stuart hamel > jed howard > brian nelson > > > > b + > > > > vince > > > > > > pamela vande krol castro on 05 / 03 / 2001 08 : 58 : 24 am > > to : vince . j . kaminski @ enron . com > cc : > subject : re : grades > > > got them - thank you ! - pvc > > at 05 : 21 pm 5 / 2 / 01 - 0500 , you wrote : > > pam , > > > > another team : > > > > elena chilkina > > robert j . guadette > > joseph helms > > kenneth jett > > todd litton > > mark westmoreland > > > > > > grade : a - > > > > > > vince kaminski",0 +"Subject: move to the research area hi shalesh : the move team has informed me that they will not be able to move your telephone until wednesday , the 23 rd . i have asked them to bring you boxes by friday , but i have not heard back from them . your computer is here , but without a telehone , you may not want to move down here until the 23 rd . just to let you know . have a great day ! shirley",0 +"Subject: dr . gabriel bitran vince , fyi . prof . gabriel bitran of the m . i . t . management science department is planning to visit ebs on wednesday , aug . 9 , to discuss research topics which might be of interest to ebs . ( this is amit dhadwal ' s advisor . ) he still has 25 k of funding to use for research , but we are having a hard time coming up with a mutually suitable topic . i have asked samer to work with him in trying to come up with a research subject . stinson",0 +"Subject: re : visit to houston martin , all other things equal , i would prefer march 2 nd as the following friday is the beginning of spring break for hisd . can you check with racicot and fallon ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 12 / 2001 11 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 02 / 09 / 2001 11 : 33 : 33 am to : stinson . gibner @ enron . com cc : gappy @ stanford . edu , cope @ csli . stanford . edu subject : re : visit to houston hi stinson , eventually , the team here ( giuseppe , eric , myself ) has converged to two possible dates to propose for a visit : 1 ) friday , march 2 2 ) friday , march 9 how do these look on your side ? we ' ll structure the agenda immediately after we fix the date . i look forward to seeing you again . best , nick stinson . gibner @ enron . com wrote : > > nick , > > i hope things are going well and you are not staying too busy . we should > start planning for your next trip to houston , as i ' m sure your schedule > will be getting full very soon . perhaps you could give the people in > enron broadband an overview of the areas of interest within your research > group . i ' m sure we could also benefit from you views of how the current > technology is evolving . > > are there certain dates which would potentially work for you ? please let > me know by email or give me a call at 713 853 4748 . > > looking forward to talking with you . > > - - stinson",0 +"Subject: re : testiing component var naveen , as we discussed yesterday , i would like to see the results of components var testing . i got some from sunil today for agg - gas . in addition if you can send me component var results for ng - price for some date , as well as ng positions , forward price curve , forward volatility curve for ng - price - prc for that same date , i can verify the numbers . thank you , tanya .",0 +"Subject: soma ghosh prc mid year review tim davies has requested that i contact you regarding soma ghosh ' s prc mid year review . you will recall that you were asked to do a review for soma and to date this is still outstanding . i would be grateful if you could do this at some stage today as our review meeting will be held tomorrow . thank you for your assistance claire dunnett 37462",0 +"Subject: career opportunities @ enron - - - - - - - - - - - - - - - - - - - - - - forwarded by jens gobel / corp / enron on 03 / 15 / 2000 09 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - gordian kemen on 03 / 15 / 2000 09 : 13 : 47 am to : jens . gobel @ enron . com cc : subject : re : bei enron hi jens , anbei findest du meinen cv in englisch als pdf - file . ein treffen in austin wuerde mir gut passen . diesen feitag wegen sehr spaeter ankunft ausgenommen , ginge es prinzipiell an beiden wochenenden . ich muesste allerdings vorher noch abklaeren , was meine schwiegereltern konkret an events geplant haben . wann wuerde es dir denn passen ? ich gebe dir jetzt auf jeden fall schon mal die telefonnr . meiner in - laws : ( 512 ) 301 - 9819 , damit wir uns nicht verpassen . bist du in austin oder mobil erreichbar ? schoene gruesse und vielen dank fuer dein engagement . gordian - gordianresume . pdf - - - - - - - - - gordian kemen , dipl . - volksw . universit , t mannheim | | university of mannheim lehrstuhl f _ r finanzierung | | chair of finance l 5 , 2 d - 68131 mannheim germany fon : + 49 621 181 - 1524 fax : + 49 621 181 - 1519 mailto : g . kemen @ uni - mannheim . de - - - - - - - -",0 +"Subject: eim organization change as part of enron industrial market ' s ( eim ) move into the pulp , paper and steel markets , our european effort is well underway . our markets are global in nature and we believe we need a strong presence in europe to penetrate that market effectively . accordingly , we are pleased to announce that bruce garner has been appointed president and chief executive officer of enron industrial markets - europe . in this role , bruce will be responsible for all activities for eim in the european market . please join us in congratulating bruce in his new position .",0 +"Subject: contact - joao c . neves & enron dear vince : it is my understanding that ms . kate szablya ( whom you apparently met this past week ) of power brokers has expressed to you my interest in considering the possibility of working at enron . in addition i belive that she has forwarded to you my cv . my communication with ms . szablya has been less than satisfactory for some time . therefore ms . szablya is nolonger representing me and i would like ms . rita de claris ( whom i cc ) of de claris & associates ( 713 - 868 - 4440 ) to represent me in the future in this search . i have instructed her to forward my cv to you once more . forgive me for this , perhaps unusual , step but i regard highly the opportunity of working at enron and do not feel i am being adequately represented at present . i look forward to hearing from you soon . best regards joao",0 +"Subject: greeting from charles dear molly : happy new year ! haven  , t talked to you for a while , hope you and your family had a great holiday . i can  , t believe we are already in 2001 ! i remember we had talk last december , and you were basically waiting for the response from vince , have you heard anything back from vince yet ? since we are already in january , i really hope we can move forward . if you have any questions , please feel free to call me at 918 - 409 - 4308 . thank you . sincerely , charles do you yahoo ! ? yahoo ! photos - share your holiday photos online ! http : / / photos . yahoo . com /",0 +"Subject: re : interview rahul , i shall be glad to meet with you . please , give me a call when you get here . vince rahul kumar @ enron _ development 08 / 16 / 2000 09 : 49 am to : vince j kaminski @ ect cc : subject : interview vince , we had spoken a few weeks back , but were unable to meet due to our schedules . i will be back in houston next week ( august 21 st ) , and would appreciate the opportunity to meet with you and take your advice . as i may have mentioned to you , i am interested in exploring opportunities that are more us focused . i think paula corey has already forwarded my resume to you . however , i have attached it to this note just in case . i would really appreciate the opportunity to meet with you next week , and would be grateful if you could let me know what time fits best with your schedule . i look forward to hearing from you . regards , rahul",0 +"Subject: re : guest access to enrononline ed , i am glad i got it resolved . hope you will like the system . vince ekrapels on 02 / 18 / 2000 03 : 43 : 54 pm to : donna greif / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : guest access to enrononline dear donna , thanks for your help , and to vince as well . i ' ll access the site next week , when i ' m back from a holiday weekend . ed krapels - - - - - original message - - - - - from : donna greif [ mailto : donna . greif @ enron . com ] sent : friday , february 18 , 2000 10 : 53 am to : ekrapels @ esaibos . com subject : guest access to enrononline attention : esai ed krapels thank you for your interest in enrononline . as requested , following is a guest password that will allow you temporary view only access to enrononline . please note , the user id and password are case sensitive . guest user id : ena 61296 guest password : tr 84 byl 3 in order to apply for transaction status with enrononline , your company needs to complete a password application and registration form for a master user account . each master user will be able to grant various levels of access for additional users . to obtain a password application and registration form , you can visit our website at www . enrononline . com and select the ? how to register ? link , or call our helpdesk at 713 / 853 - help ( 4357 ) . we hope you will find that enrononline provides an easy and more efficient way to do business with enron . we look forward to transacting with you online . sincerely , donna corrigan greif enrononline helpdesk 713 / 853 - help ( 4357 ) - attl . htm",0 +"Subject: cal berkeley general presentation confirmation - 10 / 16 / 00 cal berkeley general presentation monday , october 16 th this note is to confirm that you are scheduled to attend the cal berkeley general presentation on monday october 16 th . this e - mail should contain any information that you need to know pertaining to your trip . please print out a hard copy and bring with you in case of emergency . if you have any questions , there is a list of contacts listed below . once again , thank you for offering to help with technology recruiting at cal berkeley . see you on campus ! lara the general presentation will be held : monday , october 16 th the faculty club seaborg room - 2 nd floor 7 : 00 p . m . to 9 : 00 p . m . * * please plan on arriving at the general presentation by 6 : 00 p . m . the general presentation is designed to educate the students on enron and the global technology track . following the presentation we will invite the students to ask questions about enron and the global technology track . please plan to arrive at the general presentation by 6 : 00 p . m . it is business casual attire . flight arrangements : you are responsible for scheduling your own flight arrangements with your preferred airline provider . please schedule your flight to arrive to the san francisco airport on monday , october 16 th . please remember that there can be significant traffic over the bay bridge and to get into town at least an hour prior to the event . please make all flight arrangements through the travel agency in the park so that we are able to take advantage of discount fares . if you do not have a representative that you currently use at the travel agency in the park - feel free to contact liz mendiola at 713 - 860 - 1140 . rental car arrangements : once again , you are responsible for scheduling your own rental car arrangements with your preferred provider . your travel agency in the park representative should be able to assist you with rental car reservations . hotel arrangements : hotel reservations are currently being made by our representative at the travel agency in the park . as soon as we have confirmation numbers , i will let you know . san francisco airport to the faculty club take 101 northbound exit to san francisco / oakland bay bridge exit to 1 - 80 east exit on university ave . east on university avenue for 1 . 5 miles to oxford st . right on oxford st . , left on durant ave . , left on piedmont you will see parking on the right side once again , thank you so much for helping with the general presentation . below are some last minute tips to keep in mind : please remember to dress business casual . please remember to bring some business cards for students . i have attached a pdf version of the global technology track brochure . please forward all expense receipts to grace garcia . she will handle any expenses incurred for this recruiting trip including : flight costs , hotel , car , food , valet , etc . however , you must turn in some sort of receipt - so be sure and save them ! ashley baxter work : 713 - 853 - 3589 cell : 281 - 793 - 0567 lara berry work : 713 - 345 - 8320 cell : 713 - 857 - 1034 grace garcia work : 713 - 853 - 7252 simone lewis work : 713 - 853 - 1645",0 +"Subject: re : follow up dale , i have passed on the information you gave me but you have to realize that i acted just as a go - between . i shall be glad to remind our new business unit about your proposal . i have already asked a few times . i shall be traveling this week , wed - fri . i shall be back in the office on monday . vince "" dale nesbitt "" on 06 / 06 / 2000 02 : 03 : 18 am to : "" vincent kaminski "" cc : subject : follow up vince : just wanted to make sure you know we are still vitally interested in getting together with you and the key enron people . thanks so much for all your help . i understand how busy you and the new person are , but i hope you are interested enough to find a slot for us . i think it will benefit you as well as us . dale",0 +"Subject: re : from larry roberts thanks for the referral on this matter . we want to be the best and honor our affirmative action and accessibility responsibility to all people , so we plan to satisfy at least the priority 1 points in the web content accessibility guidelines put out by the world wide web consortium . in addition , we will continue to monitor and improve as we develop new tools . thanks again have a good weekend !",0 +"Subject: re : enron exotica options library patrick , we have those two models in the exotica library . you need to add exotica . xll located in o : \ research \ exotica \ xll to your excel before you can use the functions . you can find the documentation in o : \ research \ exotica \ doc . example spreadsheets can be found in o : \ research \ exotica \ . the precedure of addin is as follows . 1 ) clik tools / addin on your excel 2 ) choose browse and got to o : \ research \ exotica \ xll 3 ) select exotica . xll or its identical copy exotical . xll 4 ) answer the question "" copy . . . "" no . 5 ) click ok , then you should see exotica menu bar pop up . if you have any more questions please let me know . zimin vince j kaminski 11 / 21 / 2000 08 : 06 am to : patrick markey / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , zimin lu / hou / ect @ ect subject : re : enron exotica options library patrick , please , contact zimin lu , 713 853 6388 . vince patrick markey 11 / 21 / 2000 05 : 15 am to : vince j kaminski / hou / ect @ ect cc : patrick markey / hou / ect @ ect subject : enron exotica options library vince , i am trying to price a crack spread option utilizing either of the following models in the exotica library : 1 . spread options by 1 - d integration - sprdopt 2 . spread options on asian spreads - asnsprd how do i get access to these options models ? who can i visit with in the houston group if i have any questions regarding the models . your help would be greatly appreciated . i am located in singapore , so i would probably be visiting with the houston personnel via e - mail . thanks , pat markey p . s . - i have access to the o : \ research \ exotica \ xll \ xll _ templates \ directory ; however , there are no macros associated with the programs that i can find . also , i don ' t have access to the m : drive . please let me know where to find these options models .",0 +"Subject: research allocations to egm hi becky , vince and i came up with these allocations for all of egm : gary hickerson rate & currency trading 10 . 0 % agriculture trading & origination 27 . 5 % jeff shankman weather 20 % insurance 30 % oil 7 . 5 % coal 2 . 5 % freight 2 . 5 % total 100 %",0 +"Subject: re : efa meetings hey vince , thanks for your reply . i ' ll see what becomes of the session and keep you informed . as to the paper , tim crack and i have a revised version of the paper i gave you . we have since found out that by using certainty equivalence , our model is more robust . for example , if one has an asset pricing model that incorporates mean , variance , and skewness ( harvey and siddique , jf june , 2000 ) and a binomial model that incorporates mean , variance , and skewness ( johnson , paulukiewicz , and mehta , rqfa , 1997 ) , our model allows you to price options under the real world measure . the benefit is that one can take all of the model parameters from historical data that is non - risk neutralized . from a pricing perspective , there isn ' t a tremendous benefit in a mean - variance world ( variance stays the same in risk neutral or risky measure ) . however , in the mean - variance - skewness world , there is a benefit because we do not believe ( although we ' re still hunting down an appropriate cite ) skewness is the same under risk - neutral and risky measure . given we can only measure the skewness in our risky world , our model becomes much more significant . i would certainly appreciate comments on the version of the paper you have and would also pass on the new version of the paper if you would like to see it . thanks again , tom",0 +"Subject: research family outing and volleyball game hello everyone : start practicing ! we are going to have an outing and volleyball game for the research employees and their families ! . details are as follows :",0 +"Subject: 2000 projects in order to better understand the research group , can i get a list of projects that your group works on during 2000 ? were these projects budgeted for separately in 2000 ? if the answer is yes , can we do a comparison analysis on these projects ( actual vs plan ) ? based on the 2001 plan , i do not think we budgeted by project , but i have to ask . . . if you have any questions , please call me at 5 - 7094 . thanx .",0 +"Subject: re : petronas benchmarking visit khairuddin , yes , it ' s correct . we have experienced problems replying to a number of messages sent by your organization ( not just your e - mail address ) . i shall send you the list of people who will attend the meeting at a later day . we shall have representatives from the crude and lng trading desks , research and risk control . could you , please , resend me the list of your delegates . vince i have invited a number khairuddinbmjaafar @ petronas . com . my on 01 / 19 / 2001 02 : 53 : 53 am please respond to khairuddin _ mjaafar @ petronas . com . my to : vkamins @ ect . enron . com cc : subject : re : petronas benchmarking visit vince , it was brought to my attention that something was wrong with my ' reply to : ' function of my email resulting in difficulties to reply to my email . below is the e - mail that i ' ve sent to you earlier and i believe this time , i will receive your reply . thanks , regards , khairuddin to : vince . j . kaminski @ enron . com cc : subject : re : petronas benchmarking visit ( document link : khairuddin b m jaafar ) vince , thank you for your prompt reply . we have received your fax earlier this morning . fyi , we shall be sending you the questionaires by next week as we are going through the final draft this week . could you please tell me who will be joining the discussion during our visit ? thanks . regards , khairuddin disclaimer : this e - mail and any files transmitted with it ( "" message "" ) is intended only for the use of the recipient ( s ) named above and may contain confidential information . you are hereby notified that the taking of any action in reliance upon , or any review , retransmission , dissemination , distribution , printing or copying of this message or any part thereof by anyone other than the intended recipient ( s ) is strictly prohibited . if you have received this message in error , you should delete this message immediately and advise the sender by return e - mail . opinions , conclusions and other information in this message that do not relate to the official business of petronas or its group of companies shall be understood as neither given nor endorsed by petronas or any of the companies within the group . ( embedded image moved to file : pic 24393 . pcx ) - pic 24393 . pcx",0 +"Subject: re : spring 2001 schematic david , i am an adjunct professor at rice . can i get access to embanet ? vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001 05 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kathy spradling on 01 / 23 / 2001 03 : 03 : 05 pm to : vince . j . kaminski @ enron . com cc : subject : re : spring 2001 schematic mr . kaminski , you will need to speak with david kilgore at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 regarding getting set up in embanet and if you can have access from the outside . kathy at 02 : 40 pm 1 / 23 / 01 - 0600 , you wrote : > you will need to speak with david kilgore > at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 . kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: associate prc , martin lin dave , you are representing martin lin , an associate currently in the research group , at the mid - year prc . we would like to promote martin to a manager position in the research group , so you will need to nominate him for promotion at the prc meeting for us . martin has spent the last four months supporting ebs . his primary project has been development of a simulation model for analyzing the capability of the media - cast product running on the ebs network . this type of analysis is critical to understanding what types of bottlenecks we might encounter in trying to service , for example , the blockbuster deal . martin has already come up to speed so that he is able to largely replace an expensive contractor from lucent who is under contract to support this modelling effor . prior to supporting ebs , martin used his engineering skills ( b . s . caltech , ph . d . u . of texas in ee ) to create models of regional power transmission networks in order to better understand possible congestion constraints . in our internal pre - ranking meeting we felt that martin was deserving of a rating of superior due to his technical excellence , his excellent attitude and work ethic , and his ability to move projects forward with minimal supervision . regards , stinson",0 +"Subject: re : pound sterling economic analysis 30 august 2000 - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - maureen raymond 09 / 11 / 2000 04 : 01 pm to : trena mcfarland / lon / ect @ ect @ enron cc : subject : re : pound sterling economic analysis 30 august 2000 thanks , i hope everything is fine in ny ! say hello to the big apple for me . regards , maureen p . s . i still owe you sushi ! ! ! i worked until 7 : 30 p . m . on that friday in london when i invited you out for drinks . by the time i called you were gone for the day . sorry . trena mcfarland @ ect 09 / 08 / 2000 03 : 39 pm to : maureen raymond / hou / ect @ enron cc : subject : re : pound sterling economic analysis 30 august 2000 this was a great summary ! t",0 +"Subject: interview schedule for jeff lei he attached please find the interview packet for the above - referenced person . the interview will happen friday july 14 , 2000 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sean 58701",0 +"Subject: sap id - here it is ! ! ! ! ! the following sap id and password allows you to access pay , benefit , and personal data via ehronline . do not provide this id / password to anyone as it enables modification to direct deposit account information . the sap system and ehronline will be available beginning friday , june 23 at 8 : 00 am for time entry . full sap functionality for financials will be available on july 5 , 2000 . you will be asked to change your password at the initial logon . your new password should meet the following criteria : must be 6 - 8 characters long can include numbers and letters can not include ' enron ' in your password . the system will require you to change your password every 90 days . the following address will connect you to ehronline beginning friday , june 23 at 8 : 00 am , http : / / ehronline . enron . com ( must use internet explorer , version 4 . 01 or higher to access this link . ) how do i get help ? : sap support : call the coe sap hotline at 713 - 345 - 4 sap ( 4727 ) . for quick reference tools , security request processes , after hours contact information and other general information , go to the coe web site via internet explorer using the following url address : http : / / sap . enron . com / coe for troubleshooting and go - live tips , go to the following web site , via internet explorer , using the following url address : http : / / sap . enron . com / coe click on sap , then click on troubleshooting and go - live tips training : contact your site manager if you were not able to attend a sap training class , and would like to attend one , for approval and role assignment . for interactive web based training for ehronline time entry , go to the following web site , via internet explorer , using the following url address : select the "" new users click here to register "" link",0 +"Subject: visit with vince kaminski on may 4 th carol : for your information and susan ' s , christie patrick will not be available on the 4 th of may . she will be out of the city . maybe susan can contact her directly at another time . i still have 1 : 30 as the time for vince and susan to meet . thanks ! shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 04 / 09 / 2001 11 : 14 am to : susan . hansen @ stanford . edu cc : subject : visit with vince kaminski on may 4 th good morning susan : vince forwarded the below message to me and after looking over his calendar , he appears to be free most of the afternoon on the 4 th of may . please let me know what would be a good time for you and i will block it out before someone else gets it . thanks ! shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 11 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 06 / 2001 05 : 36 pm to : "" susan c . hansen "" @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : visit from stanford ? susan , thank you for your message . i shall be glad to meet with you on may the 4 th . i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to set up the meeting . also , for your information , we have recently set up a special unit to coordinate enron ' s relationships with the universities . the person running this unit is christie patrick . please , feel free to contact her and give my name as a reference . i shall coordinate the meeting on may the 4 th with her . vince additional information re christie : phone : ( 713 ) 853 - 6117 email : christie _ patrick @ enron . com "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm to : vkamins @ enron . com cc : subject : visit from stanford ? dear dr . kaminski , let me briefly introduce myself , i am the director of corporate relations for the school of engineering at stanford university . in this role , i am always on the watch for ways to bring our faculty together with companies that have an appetite for engagement with top tier research institutions . i believe you know hill huntington , who is a senior researcher with stanford ' s energy modeling forum . he suggested i get in touch with you for some ideas about contacts at enron . i ' m in the process of planning a trip to texas in early may along with my colleague donna lawrence , the university ' s director of corporate relations . we were hoping to be able to include a stop at enron on our itinerary . right now it appears that friday , may 4 th would work best for us but we ' re at the very beginning of our trip planning . the purpose of our visit would be to review the current relationship between enron and stanford , to give you an overview of current priorities in the school of engineering , and ask for your help in identifying the best points of contact . i look forward to hearing from you about your availability , sincerely , susan hansen susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: re : joao neves thank you vince . i look forward to speaking with you tomorrow , and in meeting you on april 13 th ! regards , kate szablya power brokers , llc energy search and recruitment 303 - 716 - 2987 303 - 619 - 7589 cell 303 - 716 - 3426 fax www . powerbrokersllc . com",0 +"Subject: followup from iris mack hi , thank you for your email . i am indeed interested in exploring opportunities in your group - research ( quantitative modeling ) . just a note to let you know that i am not in the pure quantitative research group here at bnp paribas - but in the derivatives structured products . i do some of my own modeling and basic excel programming . i used to do a lot of fortran programming . however , i am not a very good c / c + + programmer . hope this gives you further details about my skills and interests . thank you , iris in iris , at this point it ' s my group : research , i . e . quantitative modeling . please , let me know what your interests are and i shall try to line up other groups for the interview . vince iris . mack @ bnpparibas . com on 06 / 09 / 2000 02 : 33 : 50 am to : vince . j . kaminski @ enron . com cc : subject : re [ 10 ] : greetings from london ( to enron ) hi , i will be out of the country until wednesday afternoon - london time . maybe we can chat then . also , could you please tell me about the group ( s ) that are interested in speaking with me . thanks , iris internet from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 20 : 31 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 8 ] : greetings from london ( to enron ) iris , leaving for ca in a few minutes . i shall get back to you monday . vince iris . mack @ bnpparibas . com on 06 / 06 / 2000 10 : 36 : 46 am to : vince . j . kaminski @ enron . com cc : subject : re [ 8 ] : greetings from london ( to enron ) hi , thanks for your email . begining of july - what about july 4 th week ? could you give me a bit more info regarding the best days for you and your colleagues . thanks , iris internet from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 14 : 29 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 6 ] : greetings from london ( to enron ) iris , the beginning of july would be better for us . please , let me know what is your availability . vince iris . mack @ bnpparibas . com on 06 / 06 / 2000 02 : 30 : 49 am to : vince . j . kaminski @ enron . com cc : subject : re [ 6 ] : greetings from london ( to enron ) hi , thank you for your email . how many days do we need ? i have checked my calendar . and think that i should be able to come on monday june 19 th ( tuesday june 20 th - if you need more than one day ) . . i can fly from london to houston during the following weekend to arrive in time for monday morning . let me know if these days are good for you and your colleagues . regards , iris internet from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 18 : 33 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 4 ] : greetings from london ( to enron ) iris , we can invite you for an interview to houston . what would be a the time for you ? vince iris . mack @ bnpparibas . com on 05 / 25 / 2000 11 : 32 : 04 am to : vince . j . kaminski @ enron . com cc : subject : re [ 4 ] : greetings from london ( to enron ) hi , thank you for your prompt response . i am interested in any contacts you may have in your rolodex . also , i would be opened to talk to enron as well . please let me know more details . kind regards , iris internet from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 16 : 19 gmt to : iris mack cc : vince . j . kaminski , stinson . gibner , grant . masson , pinnamaneni . krishnarao , vasant . shanbhogue bcc : subject : re : re [ 2 ] : greetings from london ( to enron ) iris , i shall go through my rolodex and try to find some good leads for you . i left investment banking 8 years ago and this field changes very fast . alternatively , would you be interested in a company like enron or another energy company in houston ? please , let me know . vince iris . mack @ bnpparibas . com on 05 / 25 / 2000 09 : 20 : 01 am to : vince . j . kaminski @ enron . com cc : subject : re [ 2 ] : greetings from london ( to enron ) hi , how are you ? thank you kindly for your email . sorry i have not responded sooner . currently i am working in derivatives structured products and risk management at bnp paribas in london . although i currently enjoy living and working in london , i may need to return to the states - because of my mother ' s failing health . do you know of any good contacts at investment banks that i may forward my details to ? for your information , i have attached my cv . ( please see attached file : iris marie mack . doc ) . thank you in advance for your time and consideration . kind regards , iris mack 44 ( 0 ) 20 7595 8665 ( work ) 44 ( 0 ) 20 7229 9986 ( home ) ( see attached file : iris marie mack . doc ) internet from : vince . j . kaminski @ enron . com on 04 / 04 / 2000 15 : 03 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : greetings from london ( to enron ) iris , please , feel free to give me a call when you have a few minutes . i shall be glad to chat with you . vince iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am to : vkamins @ enron . com cc : denis . autier @ paribas . com subject : greetings from london ( to enron ) dear dr . kaminski , how are you ? it was nice to meet you at the real options conference in nyc . i was intrigued by some of the comments in your conference talk . in particular , by your use of real options to hedge financial options . this is something i am interested in as well . when you have some time , could we chat about this topic in a bit more detail ? thanks for your time and consideration . hope to hear from you soon . regards , iris mack - - - - - - - - - - - - - - - - this message is confidential ; its contents do not constitute a commitment by bnp paribas group * except where provided for in a written agreement between you and bnp paribas group * . any unauthorised disclosure , use or dissemination , either whole or partial , is prohibited . if you are not the intended recipient of the message , please notify the sender immediately . * bnp paribas group is a trading name of bnp sa and paribas sa ce message est confidentiel ; son contenu ne represente en aucun cas un engagement de la part du groupe bnp paribas * sous reserve de tout accord conclu par ecrit entre vous et le groupe bnp paribas * . toute publication , utilisation ou diffusion , meme partielle , doit etre autorisee prealablement . si vous n ' etes pas destinataire de ce message , merci d ' en avertir immediatement l ' expediteur . * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas sa ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) - iris marie mack . doc",0 +"Subject: re : congratgulations thanks vince , and congratulations on your promotion too . vince j kaminski 01 / 11 / 2000 04 : 02 pm to : harry arora / hou / ect @ ect cc : subject : congratgulations harry , congratulations . well deserved . vince",0 +"Subject: uoft rick , thanks for your message . i shall talk to greg whalley about his participation . vince",0 +"Subject: re : mission impossible - hr associate groups recommendation and next steps david , no problem . we shall send the required fire power . the person who will attend is amitava dhar . vince p . s . amitava , please , take note . david oxley 09 / 26 / 2000 11 : 38 am to : andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , gerry gibson / corp / enron @ enron , tim o ' rourke / corp / enron @ enron , ted c bland / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : daniel brown / na / enron @ enron , tana cashion / na / enron @ enron , rhonna palmer / hou / ect @ ect , cindy olson / corp / enron @ enron subject : mission impossible - hr associate groups recommendation and next steps rhonna , please arrange a meeting later this week for all of those addressed by this message ( vince , it would great if one of your team could attend since we will need some heavy statistical and analytical help to complete this project ) . the prupose of the meeting will be to discuss and delegate next steps required to implement the hr associate groups recommendations for the development of an hr "" value index "" at enron . i would anticipate we will need approx 45 minutes . david",0 +"Subject: iso new england and pjm propose standard market design message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : iso new england and pjm interconnection propose a standard market design for wholesale electricity markets march 29 , 2001 - holyoke , ma - two of the country ' s leading wholesale electricity market administrators , iso new england inc . and pjm interconnection , l . l . c . , together with alstom esca corporation , a systems developer for electric utilities , today announce their intent to formalize an agreement that will not only standardize their electricity markets , but will lead , they believe , to the standardization of wholesale electricity markets across the country . today , iso new england delivered a letter to the chairman and commissioners of the federal energy regulatory commission ( ferc ) , enclosing a report concerning its proposed comprehensive wholesale market program that combines salient features of the pjm market model with elements of its own existing wholesale market design . the combination would create a standardized wholesale market structure called the standard market design for wholesale electricity markets ( "" standard market design "" ) . iso new england , alstom esca and pjm , acting through its wholly - owned subsidiary , pjm technologies inc . , have agreed to proceed with the negotiation of an agreement where iso new england will purchase the existing pjm market design and certain software components from alstom esca and pjm . the two isos and alstom esca will work together to create a standardized market design that includes solutions to reserve markets and a common solution to unit dispatch . "" this new market standard should put into place the necessary market improvements more quickly and at a reduced cost than if we were to implement a customized market system for new england , "" said william w . berry , chairman and acting ceo of iso new england . "" now is the time to stop the experimentation . ultimately , we hope the standard market design will serve as the benchmark for wholesale electricity marketplaces across the country , if not around the world . "" "" pjm is very excited to further standardize a design for a competitive wholesale electricity market , "" said phillip g . harris , chairman and ceo of pjm . "" along with the progress in the implementation of the pjm west concept , this initiative will provide an even broader standardized market design . "" this approach should further expedite the elimination of trading barriers across different markets and promote ferc ' s goal of creating a seamless marketplace . "" we intend to continue to work with the new york iso on issues of mutual importance , "" stated mr . berry . "" this new market design , together with our efforts to address the market "" seams "" and other coordination issues , will eventually bring the three northeast iso markets closer together . "" iso new england and the new york iso will continue to work together on these issues under a joint board resolution passed on january 16 , 2001 . "" because of our geographic location , new york is in the center of the northeast markets , with iso new england , pjm and imo each on one of our borders . we support the continued elimination of barriers across northeast trading markets to develop a more seamless marketplace where everyone will benefit , "" said william j . museler , president and ceo of the new york independent system operator . "" the new york iso will continue to work with our neighboring markets to remove barriers to trading across the region and to move towards larger regional markets . "" this proposed market design standard will be developed jointly with stakeholder input . iso new england will propose the standard market design to the new england conference of public utility commissioners and the new england power pool in a series of meetings next week . additional meetings will be conducted in the next few weeks . the standard market design for new england will be subject to ferc approval . "" standardization requires consistent and reliable technology to facilitate a market ' s efficiency . a market that moderates price fluctuations and encourages investment based on an expected return is an efficient market - - and efficiency is the key to establishing market liquidity , "" said alain steven , ceo of alstom esca . "" in the future , this agreement will be viewed as a catalyst in establishing more robust electricity markets . "" iso new england inc . is the not - for - profit corporation responsible for the day - to - day reliable operation of new england ' s bulk generation and transmission systems with an installed capacity of almost 26 , 000 megawatts . in addition to operating the bulk power grid , iso new england is the administrator of the region ' s wholesale electricity marketplace and the open access transmission tariff on behalf of the new england power pool . iso new england is based in holyoke , massachusetts . the pjm interconnection , l . l . c . , is an independent system operator , administering the pjm open access transmission tariff and operating the pjm energy markets and capacity markets . pjm currently administers the largest wholesale electricity market in the world and has a membership of more than 200 . it is headquartered in norristown , pennsylvania . pjm technologies , inc . is a wholly - owned subsidiary of pjm interconnection , l . l . c . , designed to respond to market opportunities by bringing cost - effective , reliable solutions to the energy marketplace . it was created to commercialize pjm ' s knowledge capital , experience , and proven success in electric energy markets , system operations , and applications development . # # # for more information about the new york iso , please call : steve sullivan , director of communications , 518 - 356 - 7605 . please do not reply to this message . if you have a question for pjm customer relations and training , please complete and submit this form : to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: personnel announcement jordan h . mintz has been named vice president & general counsel for enron global finance and will be leaving the enron north america tax group . stephen h . douglas , sr . director , will head up tax services for ena . steve came to ena ' s tax planning group from the charlotte , north carolina firm fennebresque , clark , swindell & hay in may , 1998 . he was previously affiliated with the skadden , arps law firm in new york city . steve received his bs degree in finance and mathematics from trinity university ( 1987 ) , his jd from the university of texas school of law ( 1990 ) and his llm in taxation from the new york university school of law ( 1993 ) . please join me in congratulating jordan and steve in their new roles . robert j . hermann , managing director & general tax counsel",0 +"Subject: re : summer internship thanks dr . kaminski , i forgot that : - ) i ' ll understand it as i may identify work that i think will be beneficial to both of us . actually , i have more ideas on the work , beyond the suggestion . i ' ll work on it and send it in more formal way again . ( i mean , work list , schedule , deliverables etc ) i ' ll take steps to get work permit for those two months . and please tell me know what you can support and what i should start to do to find a place to stay , rent a car etc . warm regards , jinbaek ps . and thanks for forwarding the message . jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on thu , 22 mar 2001 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > the answer to the lst question is yes . > the project list is fine with me and is still valid . we are an organization > driven by the needs of our internal customers . > > i shall froward your message to the person in ebs . > hopefully , we shall get a positive response . > > > vince > > > > > > jinbaek kim on 03 / 15 / 2001 01 : 12 : 32 am > > to : vince . j . kaminski @ enron . com > cc : > subject : summer internship > > > dr . kaminski , > > sorry for the late response , > it took me some time to coordinate things . > finally , it ' s almost dont : - ) > it turned out that from june to august > will be best for me for work at enron > ( say june . 4 to august . 4 ) > > but i still need to know several things from your side . > could you answer following questions ? > > first : > is my suggested working period is ok with you ? > if so , let me know what to do for settlement > during the period . > > second : > i got a list of work , i might be able to do for > dealbench team from ross and suresh . > i ' d like to know it is still a valid work list : > the list he sent is as following : > > > 1 . write a paper in layman ' s terms that answers > > questions like the following : > > benefits of auctioning online for both buyers and > > sellers , particularly in reverse auctions > > explanation how multi - variable auctions are not > > as efficient as price - only auctions ( is this true ? ) > > how many participants are recommended for a > > successful live auction > > what types of goods and services are best suited > > for live auctions versus sealed bid quotes > > opinions on lotting strategies > > trends in online private auctions > > > 2 . identify appropriate recent auction research ( 3 > > or 4 papers out of the 90 + you provided ) and obtain approvals from the > > authors to post on our site > > > 3 . create a list / bibiliography of relevant auction > > literature ( with hyperlinks ? ) > > > 4 . would you be willing to offer auction consulting > > services to our customers ( if they are interested ) > > third : > there is an e - procurement forum at haas school of business , > in may 22 . the chair of the forum is my advisor prof . arie segev . > a person from wells fargo bank will talk about wells fargo ' s role > in e - marketplace payment initiative , > where enron broadband services is also one of key players > along with citibank . > he asked me whether you can contact a person at > enron broadband services , who ' s related to the initiative . > he wants to know whether we will have a speaker from enron > to see enron ' s perspective , in the forum . > > here is a link to news related to the initiative , > > http : / / www . internetweek . com / story / inw 20000808 so 001 > > fourth : > my advisor wants to know whether > there could be any opportunity to do a case study , > regarding enron ' s business . > he is interested in e - procurement and e - marketplaces . > business model and system architecture . . . > > thanks for reading this long email . > i ' ll look forward to your answer . . > i am sorry for giving you so much burden > to answer those questions possibly not easy to answer . > > warm regards , > jinbaek > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > jinbaek kim > ph . d candidate > dept . of industrial engineering and operations research > u . c . berkeley > http : / / www . ieor . berkeley . edu / ~ jinbaek > > go bears ! > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > : a a : _ _ . . . . . _ > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > : . ' : ` . : ` , ` . > ` . : ' - - ' - - ' : . ' ; ; > : ` . _ ` - ' _ . ' ; . ' > ` . ' "" ' ; > ` . ' ; > ` . ` : ` ; > . ` . ; ; : ; > . ' ` - . ' ; : ; ` . > _ _ . ' . ' . ' : ; ` . > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > ` . . . . . . . - ' ` . . . . . . . . ' > > > on mon , 5 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > jinbaek , > > > > this is fine though you are welcome to spend more > > time with us this summer . > > > > vince > > > > > > > > > > > > jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm > > > > to : vince . j . kaminski @ enron . com > > cc : > > subject : re : summer internship > > > > > > dr . kaminski , > > > > thanks for your answer . > > before i tell you the time frame , > > i ' ll need to talk with my advisor , first . > > because here is an on - going - project . > > i need to coordinate the schedule . > > > > i ' ll appreciate it if you understand my situation , > > and give me some time ( less than a week , of course ) . > > > > for your reference , > > probably > > the dates i ' d like to ask you will be > > from mid - may to mid - july ( 2 months ) > > > > warm regards , > > jinbaek > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > > jinbaek kim > > ph . d candidate > > dept . of industrial engineering and operations research > > u . c . berkeley > > http : / / www . ieor . berkeley . edu / ~ jinbaek > > > > go bears ! > > > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > > : a a : _ _ . . . . . _ > > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > > : . ' : ` . : ` , ` . > > ` . : ' - - ' - - ' : . ' ; ; > > : ` . _ ` - ' _ . ' ; . ' > > ` . ' "" ' ; > > ` . ' ; > > ` . ` : ` ; > > . ` . ; ; : ; > > . ' ` - . ' ; : ; ` . > > _ _ . ' . ' . ' : ; ` . > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > > ` . . . . . . . - ' ` . . . . . . . . ' > > > > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > > > > jinbaek , > > > > > > you can coordinate the details with me . > > > let me know what the time frame is for you > > > and we shall send you an appropriate offer . > > > > > > vince > > > > > > > > > > > > > > > > > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm > > > > > > to : vince . j . kaminski @ enron . com > > > cc : > > > subject : re : summer internship > > > > > > > > > dr . kaminski , > > > > > > thank you very much . > > > of course , i ' ll be happy to have an opportunity > > > to work at such a wonderful company . > > > i was contacting with surech raghavan at deal bench team , > > > and was going to express my appreciation to you again > > > after settling down process with them . > > > > > > for the period of working , > > > i still need to coordinate with my advisor and > > > may need to adjust according to that . > > > but anyway , i ' ll try to coordinate smoothly . > > > > > > please let me know whether i should keep contacting > > > with deal bench team , > > > for working period and > > > for misc . living support such as finding a place , rent a car , etc . > > > > > > i appreciate you so much again , > > > for arranging such meetings and giving me an opportunity . > > > all this opportunity will not be available to me , > > > without your kind help . > > > > > > warm regards , > > > jinbaek > > > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > jinbaek kim > > > ph . d candidate > > > dept . of industrial engineering and operations research > > > u . c . berkeley > > > http : / / www . ieor . berkeley . edu / ~ jinbaek > > > > > > go bears ! > > > > > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > > > : a a : _ _ . . . . . _ > > > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > > > : . ' : ` . : ` , ` . > > > ` . : ' - - ' - - ' : . ' ; ; > > > : ` . _ ` - ' _ . ' ; . ' > > > ` . ' "" ' ; > > > ` . ' ; > > > ` . ` : ` ; > > > . ` . ; ; : ; > > > . ' ` - . ' ; : ; ` . > > > _ _ . ' . ' . ' : ; ` . > > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > > > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > > > ` . . . . . . . - ' ` . . . . . . . . ' > > > > > > > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > > > hello , > > > > > > > > sorry for a delay in getting back to you . > > > > we would like very much to offer you a summer internship . > > > > > > > > please , let me know if you are interested . > > > > > > > > vince kaminski > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : ibuyit user set up diane : we have had quite a few problems with this ibuyit procedure . i have submitted several invoices for payment since may lst and have reveived none of them back for coding and approval . i am afraid the vendors are going to be coming after us ! we also have had approval problems . i submitted a hardware request and it went to every manager in our group . i think we have finally gotten that straightened out for the present . the requestors and coders would be : shirley crenshaw anita dupont kevin moore the only approved for our group is vince j . kaminski ( co 0413 - cc 107043 ) if you need anything else , please let me know . shirley - - - - - original message - - - - - from : fellers , diane r . sent : thursday , may 10 , 2001 4 : 56 pm to : kaminski , vince j . cc : crenshaw , shirley subject : fw : ibuyit user set up vince , per the request below , i need a list of people you would like to serve as approvers and requestors for the research group for the ibuyit program . of course , they want this as soon as possible . please let me know who you would like to include . thanks , diane x 5 - 7996 - - - - - original message - - - - - from : vandor , david sent : thursday , may 10 , 2001 4 : 18 pm to : fellers , diane r . ; guilliams , lisa ; heath , holly ; nguyen , vivian cc : leschber , edie subject : fw : ibuyit user set up could you please gather this info for all your support departments ? in case you don ' t know , ibuyit is the web site where employees can purchase , code , and approve invoices for items online . thanks , david - - - - - original message - - - - - from : day , misti sent : thursday , may 10 , 2001 3 : 43 pm to : becton , pam ; brown , sarah ; cameron , marlene ; carter , carol ; coffey jr . , jim ; davis , angelic ; dawson , brian ; east , laynie ; fredericks , kristi ; hanslip , david ; hardy , stacy ; hardy , trey ; harris , paula ; helton , susan ; killen , faith ; lamb , marnie ; leschber , edie ; long , lindsay ; mayeux , cassandra ; orsak , susie ; patterson , grant ; pierce , jody ; schwertner , brian ; vandor , david ; vargas , hope ; vu , nancy h . ; washington , deanna ; wolfe , stephen subject : ibuyit user set up the ibuyit team is trying to get a complete list of approvers and requestors for this program . for each of your teams , please send me the following : names of approvers ( team head , cc owner , etc . ) names of requestors ( admins , anyone who would be ordering ) cost center the ibuyit team wants to keep the number of requestors and approvers limited , but each team will need more than one approver . every requestor will have a pre - approved limit for each transaction . approvers will be required to go into the system and approve all transactions that exceed that limit in order for the transaction to be completed . unfortunately , we need this information as soon as possible ( monday afternoon at the latest ) ! please feel free to call me with any questions . thanks , misti x 39525",0 +"Subject: re : mec mark , steve ' s comment has many merits . i think stinson gibner and grant masson ( physics ph . d . ' s ) can help to identify academic and industry sources to validate some of the claims . on the other hand , even if our guests were wrong by a factor of 2 or 3 in their time estimates , the technology they develop will bring about a technological revolution with enormous potential payoffs . it make sense to stay close to them and to explore potential investment opportunities . vince steven j kean @ ees 07 / 26 / 2000 05 : 11 pm to : mark lay / hou / ect @ ect cc : rex shelby / enron communications @ enron communications @ ect , mike mcconnell @ ect , vince j kaminski / hou / ect @ ect , philippe a bibi / hou / ect @ ect , kenneth lay / corp / enron @ enron @ ect , fabricio soares / hou / ect @ ect subject : re : mec i think it would be useful to verify their view that they are really only 2 - 3 years from commercial production . ideally , we could get that confirmation from someone familiar with the technology but without any financial interest in its success . their technology pitch sounded good , but i don ' t know enough to recognize the potential shortcomings . i want to feel comfortable that you all feel this is real , then i would be happy to have me and my team spend some time with them . to : rex shelby / enron communications @ enron communications , steven j kean / hou / ees @ ees , mike mcconnell , vince j kaminski / hou / ect @ ect , philippe a bibi / hou / ect @ ect cc : kenneth lay / corp / enron @ enron , fabricio soares / hou / ect @ ect subject : mec thank you for participating in yesterday ' s meeting . we spoke with harvey and jim after the meeting and they took to speed to market comments to heart . there is an opportunity for enron to participate with mec in the early development of their company , but it seems the one thing they want is the one thing we also want , people . i would appreciate your thoughts and comments on the possiblity of creating a small team that could work directly with mec as part of a potential investment and strategic relationship . given our resource constraints , this would most likely be part of the organization that sees the greatest strategic impact from mec ' s development . mark x 37408",0 +"Subject: iv kirstee hewitt fifth floor se 5005 intervew schedule 17 . 30 - 18 . 00 vince kaminski & anjam ahmad 18 . 00 - 18 . 30 ben parsons 18 . 30 - 19 . 00 stephen leppard",0 +"Subject: fwd : latest roster - rice let ' s try this again ! - pam > date : wed , 07 mar 2001 16 : 13 : 42 - 0600 > to : vince . j . kaminski @ enron . com > from : pamela vande krol castro > subject : latest roster - rice > > here is your latest roster for mgmt 656 . let me know if you need the list > of e - mail addresses or if there are any discrepancies that i should > address . thanks for your help ! - pam ( 713 - 348 - 6223 ) - 656 . doc",0 +"Subject: re : picks and publishers sure . i ' d love to share my experiences . have him give me a call . by the way , the chapter you sent has been very helpful to me in coming to understand enron ' s early history . "" i ' m getting it "" even if slowly . john at 07 : 57 am 1 / 31 / 01 - 0600 , you wrote : > john . > > i want to ask you for a favor . can you help > this fellow ( who is negotiating a contract with john wiley > by giving him some advice ? > > vince > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001 > 07 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > steve bigalow @ enron > 01 / 31 / 2001 07 : 37 am > > to : vince j kaminski / hou / ect @ ect > cc : > subject : picks and publishers > > good morning , > > first , a reminder that you want to see follow through strength on the picks > before going into them secondly do you know anybody that has published a > book ? i need some help in how to negotiate points in the contract . > > thanks , steve > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: request submitted : access request for tony . harris @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000006452 approver : stinson . gibner @ enron . com request create date : 11 / 2 / 00 1 : 12 : 58 pm requested for : tony . harris @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: gas & power marketing & trading study vincent , i enjoyed meeting with you yesterday and discussing our gas & power marketing & trading study . we really hope that enron is able to participate this year and we will work with you to address your concerns . i believe that the problem last year was primarily due to concerns over releasing data in general and not our study in particular . i am attaching an electronic copy of the latest version of the input sheet for the study . it is far easier to read on a computer than in print . please remember that enron does not need to answer every question to participate and that all results are reported back in a blinded format . the only data points identified by company are the data points for the company values of the company receiving the report . if you have any further questions regarding the report , please do not hesitate to call john stephenson or myself at ( 713 ) 523 - 8001 . have a great weekend and thank you for your efforts to enable enron to participate in this year ' s study . sincerely , richard murphy rmurphy @ navigantconsulting . com ( 713 ) 523 - 8001 - 2000 input sheet . xls",0 +"Subject: re : martin lin norma , thanks for your message . approved . vince from : norma villarreal 08 / 30 / 2000 08 : 12 pm to : vince j kaminski / hou / ect @ ect cc : grant masson / hou / ect @ ect subject : martin lin per my voice mail to vince , martin lins offer letter will be provided to him on thursday , august 31 , 2000 . however , a concern was shared regarding the retention bonus we originally discussed . therefore , based on his phd and market information we are able to offer him a base salary of 98 - 100 k and no retention bonus . we can discuss retention bonus after he begins his manager role in your group . if you would like to discuss further please feel free to call me . otherwise , please approve salary structure of base 98 , 000 with no bonus . thank you . norma villarreal x 31545",0 +"Subject: re : fw : energy book promotion thanks . - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie cc : vince . j . kaminski @ enron . com sent : saturday , march 24 , 2001 1 : 18 am subject : re : fw : energy book promotion julie , i shall track down fiona . she may be on vacation . vince "" julie "" on 03 / 22 / 2001 03 : 28 : 34 pm please respond to "" julie "" to : ? ? "" vincejkaminski "" cc : subject : ? fw : energy book promotion hi vince , i sent the attached for enron ' s approval to fiona grant , but haven ' t heard back . in the contract that we signed it states that we need to seek approval from enron if we want to use the company name . is there someone else we should direct these requests ? hope you are well . julie - - - - - original message - - - - - from : julie to : fiona . grant @ enron . com sent : thursday , march 15 , 2001 5 : 20 pm subject : energy book promotion fiona , i ' ve attached a letter that is going to be sent out to some ? universities , promoting the energy derivative book . are we allowed to ? mention , "" . . . in association with enron corp . "" ? please see attached . should we check with you every time we would like to use "" enron corp . "" when advertising the book ? it will usually follow similar format . thanks , julie lacima group ( see attached file : covering letter for book brochures . doc )",0 +"Subject: re : forward oil prices john , i can extract the curves from the database . thanks . vince john l nowlan 10 / 30 / 2000 07 : 28 am to : vince j kaminski / hou / ect @ ect cc : subject : re : forward oil prices vince , i would have no problem in giving these numbers , do you have the numbers to forward or would someone in our group need to help him ? vince j kaminski 10 / 27 / 2000 04 : 24 pm to : john l nowlan / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stefan - jorg gobel / fra / ect @ ect subject : forward oil prices john , i am forwarding to you the request by jens . we gave in the past our forward oil curves ( with approval of greg whalley ) to some academics . what is your position on this request ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 27 / 2000 04 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jens gobel @ enron 10 / 26 / 2000 12 : 06 pm to : vince j kaminski / hou / ect @ ect cc : subject : forward oil prices vince , as discussed on the phone , i am sending you the request that i have received from prof . buehler . prof . buehler is the head of the faculty of finance at mannheim university in germany . currently , he is writing a study about the hedging strategy that led to the metallgesellschaft debacle . for this study he would like to get forward oil prices form us . the forward oil prices should be for wti with cushing as the delivery point for the time period july 1986 and december 1996 with remaining contract durations between one and ten years . it would be ideal to get this data on a daily basis . weekly or monthly data is helpful as well , of course . since mannheim university is among enron ' s tier one recruiting universities in germany , it would be great if we could help him with some data . thanks a lot for your help . jens o . korn @ uni - mannheim . de on 10 / 10 / 2000 11 : 44 : 57 am to : jens . gobel @ enron . com cc : subject : daten sehr geehrter herr goebel , bezugnehmend auf ihr heutiges telefongespraech mit herrn prof . buehler hat mich prof . buehler gebeten , ihnen genauer darzustellen , welche daten idealerweise fuer unsere studie benoetigt wuerden . zunaechst zum hintergrund . wir sind auf enron gestossen , weil eduardo schwartz in einer seiner arbeiten die folgende datenquelle angibt : "" in addition to the publicly available futures data described above , for the purpose of this study enron capital and trade resources made available some proprietary historical forward price curves from 1 / 15 / 93 to 5 / 16 / 96 . from these data ten forward prices were used in estimation , ranging in maturities from two months to nine years "" dies laesst uns annehmen , dass enron bestimmte daten verfuegbar hat . nun zum idealen datensatz : forwardoelpreise ( am besten wti mit lieferung in cushing ) fuer restlaufzeiten zwischen einem und zehn jahren fuer den zeitraum juli 1986 bis dezember 1996 . dabei waere eine hohe datenfrequenz ideal ( taeglich , ansonsten woechentlich oder monatlich ) . zusaetzlich waeren auch spotpreise fuer wti mit lieferung in cushing nuetzlich . diese idealen datenanforderungen werden sich vermutlich nicht erfuellen lassen . jedoch waere uns auch schon geholfen , wenn ein kuerzerer zeitraum oder eine niedrigere datenfrequenz vorlaege . wir waernen ihnen sehr dankbar , wenn sie in erfahrung bringen koennten , inwiefern solche daten von enron zu erhalten sind . herzlichen dank fuer ihre muehe und beste gruesse olaf korn p . s . bei rueckfragen stehe ich ihnen jederzeit gern zur verfuegung dr . olaf korn university of mannheim chair of finance d - 68131 mannheim germany tel . : + + 49 / 621 / 181 - 1487 fax . : + + 49 / 621 / 181 - 1519 e - mail : o . korn @ uni - mannheim . de",0 +"Subject: enron open positions hello mr . kaminski , can we meet for a quick lunch again at your convenience ? just to bring you up to date about my search for the right opportunity . also i noticed in the risk magazine that enron investment partners and aig have joined treasuryconnect as strategic partners to capitalize on internet - based transaction execution of financial derivatives . i would like to explore if i can be any help to hank finkenstaedt , the director of enron investment partners . please let me know what day and time might be convenient for you . thank you . sincerely , maruti more 832 - 251 - 7267 mmore @ houston . rr . com - - - - - original message - - - - - from : more to : vince j kaminski date : monday , july 10 , 2000 11 : 28 am subject : enron open positions dear mr . kaminski : i would like to explore the opportunity to join enron investment partners . i understand that enron has $ 20 million fund set up to finance start - ups , and gene humphreys and his assistant john godbold are trying to attract minority - owned start - up firms . i also learned that enron has plans to increase the size of this fund to $ 200 million . i can find these opportunities for enron around the globe . given my background as a chartered financial analyst , with hands - on experience in investment management covering financial derivatives , fixed income , and equity , i can be a valuable resource to do the due diligence , origination , valuation , and monitoring of these start - ups . would you please help me arrange a meeting with either gene humphreys , ted murphy , or may be ken lay ? i am pasting below the job opportunities open at enron . i am also interested in these positions and would like to meet with the hiring manager . i will give you a call to follow up . thank you . sincerely , maruti more 832 - 251 - 7267 job 0000104282 details manager / director essential functions : candidates will be responsible for helping facilitate the transaction approval process for domestic and international investments . these investments include , but are not limited to , private equity , project development , venture capital , and structured credits . candidates will work with business developers and underwriters in identifying , understanding , and documenting transaction risks . they will also assist in preparing transaction approval documentation . in addition , they will oversee the valuation , modeling , and simulation process for investments . the primary focus is to identify and measure key risk factors from both a quantitative and a qualitative perspective with an emphasis on fundamental analysis . the candidate must be able to assist in management and training of departmental staff and in formulation of investment valuation policies and procedures . essential requirements : ? strong interpersonal skills ? understanding of transaction structuring and credit risk issues ? understanding of finance and valuation methodologies . ? proficiency with excel cash flow models ? experience with financial statement analysis ? understanding of statistics and simulation techniques ( monte carlo ) . preferred skills : na . special characteristics : the ideal candidate will possess an undergraduate degree in finance , accounting , or economics , and an mba . relevant experience could include credit analysis or valuation / finance experience . manager / director in the risk assessment department of a $ 20 billion energy company . contact : please email resumes to corpjobsl @ enron . com , please refer to job no . 104282 when responding . job id 0000104282 department capital pricing / risk an company corporate staff risk assessment and control location houston , tx type posting date 05 - jun - 00 to submit your resume for this position : online enter your resume id : no resume id ? you can create a resume on - line , deposit it in our database , and receive a resume id using our resume builder . your resume id will allow you to submit your resume once , but route it to up to 20 open positions . enron does not process resumes that are not sent in response to specific positions . if you have an existing resume in electronic format , the resume builder allows you to cut and paste your whole resume . fax our fax number is 1 - 888 - 588 - 7152 . you must tell us which jobs you ' re interested in , or we will not be able to process your resume . write on your resume ( or on a separate page ) all of the jobs ids of the jobs you ' re interested in pursuing . an equal opportunity and affirmative action employer top of page copyright 1997 - 1999 enron corp . all rights reserved . contact us . job 0000104281 details staff / spec / sr spec essential functions : "" snapshot "" preparation - responsible for preparation of quarterly asset "" snapshots "" which provides enron ' s senior management with summarized operational and financial information on selected merchant portfolio investments . responsibilities associated with preparation of snapshots include : researching publicly traded companies , calculating key financial data , updating and analyzing graphical summaries of performance , reviewing press releases for recent events data , updating stock prices from bloomberg ? weekly underwriters report - full responsibility for updating and distributing weekly underwriters ' report . involves regular interaction with executive vice president , london office personnel , as well as several vice presidents within underwriting group within rac . ? various projects - will be utilized on special projects on an as needed basis essential requirements : accounting / finance / economics degree with 0 - 4 years business experience . excellent computer skills - excel , powerpoint , bloomberg , word research skills and the ability to interact with a variety of personnel and departments . excellent organization skills . self starter , quick learner . must be team player . good writing skills with the ability to concisely summarize operational and financial results . preferred skills : na . special characteristics : . entry level position with the opportunity to gain familiarity with all of enron ' s portfolio assets . future advancement in asset and portfolio management possible for candidate who exhibits competence and creativity . contact : please email resumes to enajobsl @ enron . com , please refer to job no . 104281 when responding . job id 0000104281 department due diligence / asset mgmt company corporate staff risk assessment and control location houston , tx type posting date 05 - jun - 00 job 0000102789 details sr specialist essential functions : in this position candidates will model , run monte - carlo simulations , evaluate capital investments . these investments will cover a wide range . candidates will be responsible for the validation of models as well as insuring the accuracy and integrity of the model and underlying assumptions . the primary focus will be to provide an objective valuation for an investment by identifying and measuring key risk factors from both a quantitative as well as qualitative perspective . ? understanding of valuation techniques applied to equity or structured financial products . ? understanding of cash flow models and option pricing models . ? proficiency in excel . ? understanding of project finance and risk mitigation techniques . ? experience with financial statement analysis and pro forma statements . ? understanding of statistics and application to financial analysis . essential requirements : na . preferred skills : ? understanding of simulation methodologies such as montecarlo . ? exposure to statistical analysis software such as crystal ball or @ risk . the ideal candidate will possess an undergraduate degree in finance , accounting , or economics and have 2 to 3 years of financial modeling experience and an mba / cpa . special characteristics : na . contact : please do not contact the hiring manager . please no faxes . send resumes via e - mail to corpjobsl @ enron . com or mail to enron , attn : tvasut - eb 3628 , 1400 smith st . , houston , tx 77002 . please refer to job # 102789 job id 0000102789 department capital pricing / risk an company corporate staff risk assessment and control location houston , tx type posting date 17 - mar - 00 - attl . htm",0 +"Subject: new documents vince , here ' s the latest set of interview notes as well as the latest "" version "" of the paper . i will be working more this afternoon ( if i can ) and send an updated version . talk to you later tomorrow or friday . john - enron transformation paperl 2 _ 17 _ 00 . doc - . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : action learning project and enron tour christie , let ' s meet to discuss this project . i need more information from you about it . by the way , i shall meet bob westbrook on wednesday to discuss unrelated issues . vince christie patrick 11 / 02 / 2000 12 : 33 am to : cmiller @ rice . edu , cindy derecskey / corp / enron @ enron , michael b rosen / hou / ect @ ect , steven j kean / na / enron @ enron , vince j kaminski / hou / ect @ ect , grwhit @ rice . edu , westbro @ rice . edu , mark palmer / corp / enron @ enron cc : subject : action learning project and enron tour hi carrie , it was great meeting with you and dean whitaker again last friday , as well as mr . westbrook . as we discussed , i have submitted the action learning program materials to vince kaminski , our managing director of risk analysis and corporate research . i ' ll be following up with him , and his recommendations for project proposals next week . also , i ' ve discussed with our university affairs team setting up the faculty tours - - we ' re ready when you are ! ! the sooner the better - - i ' d love to get these in pretty immediately , and in any event , before the reception at the end of the month . i "" ll have cindy derecskey in my group email you - - she is prepared to set these tours up . i look forward to continuing to develop the multiple potential dynamics of the enron - rice relationship ! thanks ! - - christie . ps : thanks so much for the crystal rice owl - - my participation as a judge in the rice invitational case competition was my pleasure indeed ! - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 11 / 02 / 2000 12 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - carrie miller on 11 / 01 / 2000 12 : 47 : 17 pm to : christie _ patrick @ enron . com cc : grwhit @ rice . edu , westbro @ rice . edu subject : action learning project and enron tour christie , i enjoyed visiting with you last week at the jones school . thanks for taking time to come see us . i wanted to follow up with you regarding the action learning project program and enron tour . we hope to have enron as part of the program in 2001 . please let me know how i can help make this happen . i look for the program to be full before the deadline of december lst . also , i am happy to help organize a group to tour enron . if you were to participate in the alp program , january / february might be a good time to put something together with key faculty and the alp team . let me know your thoughts . again , many thanks for your continued support of the jones school . i look forward to hearing from you soon . carrie = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = carrie chamberlin miller director of mba program jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 5260 fax : ( 713 ) 348 - 5251 e - mail : cmiller @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: files in houston hi , i am trying to retrieve some analysis that i did while i was in houston . it is very imporatant that i get these files asap as i need to continue the correlation analysis for the uk power / gas desk . i have put in a request to the resolution center in houston to try and get a back up but would like to know if anyone has any further suggestions ? i was not told that the files in this folder were periodically deleted . i think tanya should have a copy of these files but do not know where she is likely to store them . thanks in advance , kirstee",0 +"Subject: tiger evals - attachment tiger hosts : i understand that some hosts have had problems accessing the database to complete the tiger team evaluations . i apologize for the difficulties and have attached the form for your convenience . please feel free to return it electronically or by fax ( 215 - 573 - 5727 ) . thank you again for your time . donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu > - tiger team host evaluation . doc",0 +"Subject: re : sddp vince , i ' ll send him one of the manuals , and perhaps a paper on sddp . tom vince j kaminski @ ect 07 / 28 / 2000 10 : 53 am to : tom halliburton / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : sddp tom , can you send the info regarding sddp to john ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 28 / 2000 10 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 07 / 19 / 2000 06 : 41 pm to : "" o ' brien john "" @ enron cc : vince j kaminski / hou / ect @ ect subject : re : sddp john , i shall e - mail the information about sddp from houston . vince "" o ' brien john "" on 07 / 18 / 2000 01 : 47 : 41 am to : vkamins @ enron . com cc : subject : sddp vincent , you kindly suggested that i email you with regard to some information you have on the sddp system ( i ' m not sure if i ' ve got the abbreviation correct , but it ' s something that is currently used in south america ) . your presentation was very interesting and informative . kind regards , john o ' brien manager , treasury & risk management snowy hydro trading pty ltd level 17 , bligh house 4 bligh street sydney nsw 2000",0 +"Subject: meeting for friday on storage hi mark , i have not met you yet but heard a lot of good things about you . i would like to discuss with you and possibly with john bloomer and richard reichardt about the ebs research ' s role in supporting the storage market development from the origination and trading perspective . there are several people in various groups that are talking about storage but here is what ' s my take on our involvement - - please correct me or suggest otherwise . shalesh ganjoo is our lead analyst on this effort . in addition to his effort with your group , he is presently supporting jean mrha with pricing and standardization for a traded storage maret - - stinson gibner is directly supervising him in this effort . shalesh came to us through referal from david cox - - david discovered him at one of his speaking engagements . shalesh had talked to david about traded storage market development some time last october and david refered shalesh to enron research group . we hired shalesh for general analyst position and now he is pulled into all aspect of this storage effort . currently , he is our point person ( with stinson or i supervising his effort ) who is supporting jean mrha and you on the subject . kara knop has aproached shalesh with request for some support and shalesh and she are sorting out each other  , s role in this regard . as per my discussion today with david , we need to coordinate this storage effort from the perspective of modeling market assessment etc . for this i suggest shalesh and his effort so that all parties involved can benefit from collective effort within one central source . based on david ' s and my assessment of shalesh ' s capabilities , i would like to suggest that the commercial heads use shalesh for his creative thinking , understanding of the market and analytical capabilities and not just for data gathering and simple research effort . we can add other staff as we see the need and as you request them . please respond this e - mail with your comments if this sounds like aplan , so that we can support this effort efficiently and in a scalable manner . kind regards , ravi . a bit about ebs research group john bloomer and richard reichardt have met me and are aware of my role and stinston gibner ' s role in ebs . i lead a team of quantitative professionals via a group we are calling ebs research . this group reports to stinson gibner ( vp ) and vince kaminski ( md and head of enron research ) . stinson and vince are the original founders of enron corp research that has been charged with model development efforts to support enron energy trading and other enron business . enron research is involved in all aspects of enron buinesses ( ees , international , corporate affairs such as fas 133 and other accounting and new product ( derivatives ) development , etc . ) . within ebs research , there serveral professionals supporting kevin howard ( cfo office ) , john griebling , tom gros and jean mrha , david cox ( via boris ) , and the war room . our main area of focus is with jean mrha ( trading ) and john griebling ( optical network design and optimization , etc . ) . we play a key role with john griebling ' s go forward network design and implementation through our responsiblity to provide traffic engineering analysis and modeling effort . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 08 / 00 09 : 31 am - - - - - shalesh ganjoo @ ect 03 / 07 / 00 08 : 01 pm to : mark s palmer / enron communications @ enron communications cc : ravi thuraisingham / enron communications @ enron communications @ enron subject : meeting for friday on storage dear mark , i am looking forward to presenting my competitive analysis on the storage market on friday to you and others . ravi thurasingham will be calling you to find out if we ( research group ) can assist your group in any other way . please let me know if you need any information before we meet . thank you . sincerely , shalesh ganjoo",0 +"Subject: happy thanksgiving ! hello , vince ! happy thanksgiving ! per our talk , here is a master list of total return swap deals . i am giving it a shot to compile everything in a spreadsheet ( "" trigger event "" ) , please be advised whether it is helpful . thanks ! li",0 +"Subject: re : allan roberts email jim , thanks . i shall drop him an e - mail . vince james . w . petrie . jr @ us . arthurandersen . com on 07 / 27 / 2000 05 : 51 : 31 pm to : vkamins @ enron . com cc : allan . roberts @ uk . arthurandersen . com subject : allan roberts email vince - it was a pleasure to meet you this afternoon . as promised , please find allan ' s email address above . we look forward to working with enron and mit on finding better ways to value companies . if you have any questions , please feel free to contact me . jim - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - james w . petrie , jr . knowledge sharing director energy industry knowledge services group arthur andersen llp - houston office voice = = > 713 . 237 . 2357 , fax = = > 713 . 237 . 5673 james . w . petrie . jr @ us . arthurandersen . com - - - - - - - - - - * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: re : eol guest account access i ' ve logged on . thanks for your help . - - - - - original message - - - - - from : danny . lee @ enron . com [ mailto : danny . lee @ enron . com ] sent : thursday , july 27 , 2000 5 : 07 pm to : ekrapels @ esaibos . com subject : eol guest account access attention : esai ed krapels thank you for your interest in enrononline . the following is a guest password that will allow you temporary view only access to enrononline . please note , the user id and password are case sensitive . guest user id : ena 61296 guest password : welcome ! in order to apply for transaction status with enrononline , your company needs to complete a password application and registration form for a master user account . each master user will be able to grant various levels of access for additional users . to obtain a password application and registration form , you can visit our website at www . enrononline . com and select the "" how to register "" link , or call our helpdesk at 713 / 853 - help ( 4357 ) . alternatively , you may click on the attached documents , complete the forms , and fax to 713 - 646 - 8511 . just a reminder , in order to access enrononline , shockwave needs to be installed . the shockwave installer can be found within "" about enrononline "" on the home page . after opening "" about enrononline "" , using right scroll bar , go to the bottom . click on "" download shockwave "" and follow the directions . after loading shockwave , shut down and reopen browser ( i . e . microsoft internet explorer / netscape ) . we hope you will find that enrononline provides an easy and more efficient way to do business with enron . we look forward to transacting with you online . sincerely , danny lee enrononline helpdesk 713 / 853 - help ( 4357 ) ( see attached file : na pa ver 2 web . doc ) ( see attached file : registration _ form . doc )",0 +"Subject: re : extreme value theory applied to weathet dear vince and grant , i am currently reviewing some of the more erecent references on evt and its application . i get back to you shortly with some points regarding the usefulness of evt and how traders ( electricity and weather ) can benefit from evt . cheers , christian to : christian werner / enron _ development @ enron _ development cc : subject : re : extreme value theory applied to weathet christian : to my knowledge , the research group is examining evt primarily in the context of value at risk calculations . we have not looked at evt for power , because , to date , we have been focussing on shorter term fundamental forecasting of price excursions : i . e . given tomorrow ' s load forecasts and expected plant dispatch , we attempt to predict which lines will become constrained and how the system will react to alleviate these constraints . i would be interested in your thoughts on how evt would benefit the traders however . as far as the weather goes , i would expect the weather desk to use evt at some level . clearly you should talk to joe hrgovcic , the researhc chap attached to the weather desk , for a more accurate assessment . cheers , grant .",0 +"Subject: re : fw : wharton resume submission - summer intern kristin , yes , we would like very much to have her as a summer intern . i can take her ino my group . vince enron north america corp . from : kristin gandy @ enron 01 / 26 / 2001 04 : 03 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : fw : wharton resume submission - summer intern vince , can you tell me if these candidates will be part of the program ? i will generate an offer letter as soon as i know this information . thank you , kristin vince j kaminski @ ect 01 / 23 / 2001 01 : 23 pm to : kristin gandy / na / enron @ enron cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : fw : wharton resume submission - summer intern kristin . kim is a member of the tiger team . she is interested in a summer internship with enron and i shall be glad to take her . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001 01 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" kim whitsel "" on 01 / 22 / 2001 12 : 07 : 35 am to : , cc : subject : fw : wharton resume submission - - - - - original message - - - - - from : kim whitsel [ mailto : kimberly . whitsel . wgo 2 @ wharton . upenn . edu ] sent : friday , december 22 , 2000 6 : 51 pm to : kristin . gandy @ enron . com subject : wharton resume submission summer position under wharton schedule # 1823 - kim whitsel - enron cover letter . doc - kim whitsel - wharton 2 resume . doc",0 +"Subject: re : kwi user group david , i regret to inform you i am unable to attend the conference due to previous commitments . would you consider a speakers form our london office ? vince david warwick on 04 / 24 / 2001 09 : 47 : 31 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : kwi user group vince any further thoughts on this ? david - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 13 april 2001 21 : 44 to : djw @ kwi . com cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com subject : re : kwi user group david , thanks for the invitation . i shall check my schedule on monday and will get back to you regarding the conference . i hope you will a very happy easter . vince david warwick on 04 / 12 / 2001 04 : 04 : 32 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : kwi user group dear vince please may i reintroduce myself . we met last year at the sydney eprm conference which my company kwi sponsored . i chaired the session at which you spoke . as you may remember , my company , kwi are one of the world ' s leading provider of systems ( kw 3000 ) and consultancy for energy , trading and risk management . we have over 60 clients worldwide including many of the world ' s leading energy companies ( not enron unfortunately ) : north america - tva - ontario power - cinergy - bonneville power europe - enel - atel - electrabel - edf nordic - vattenfall - fortum - sydkraft - statkraft - birka energi - norsk hydro each year we stage a "" kwi users forum "" - a 2 - day event attended by leading trading and risk staff from our clients . last year there were about 100 delegates . the agenda primarily focusses on issues surrounding risk management for the energy sector . the agenda comprises keynote presentations on burning risk issues from industry leading energy speakers and practical workshops focussed around using our software . this years event is at a luxury hotel in the wonderful spanish city of barcelona and runs from the evening of sunday september 9 th to tuesday september 11 th . the main conference dinner is on the monday evening and is always a memorable event . this year it is in a leading barcelona restaurant preceded by a bus tour of the city with a stop for pre - dinner drinks . i would like to invite you to make the opening keynote address , the highlight of the conference . the subject could be : * a general energy risk related topic * a general insight into the secret of enron ' s continued success in the energy markets * your thoughts on the future development on energy markets ( and other commodity related - bandwidth etc . ) worldwide obviously , we would cover all your delagate costs including accomodation , food and drink . what ' s in it for you ? many of our users are some the energy sectors leading risk thinkers and i ' m sure you would enjoy meeting them and exchanging views . please let me know if you are able to accept the invitation . best regards david warwick - marketing dierctor and co - founder",0 +"Subject: enron interview of james valverde hi molly ! has this been scheduled yet ? the recruiter is asking for a copy of the itinerary for his client and directions to the enron bldg . i thought i would send both at the same time . let me know . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 30 / 2001 08 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 01 / 29 / 2001 10 : 26 am to : molly magee / hou / ect @ ect cc : subject : enron interview of james valverde molly : vince arranged the times for this interview with a recruiting firm - it will be thursday , february 1 from 1 : 00 pm - 5 : 00 pm . i am enclosing an interview request form for him and i have scheduled vince , krishna , and stinson . if these times need to be changed to accommodate the others , please let me know . his resume is also attached . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 29 / 2001 09 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 26 / 2001 05 : 09 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : fwd : re : enron - resume interview of james valverde shirley , we want to invite him for an interview , thu , 1 - 5 . interviews with kp , sg , vk , gk , br , molly , cs , dan rack . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 26 / 2001 05 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - johan dahl on 01 / 26 / 2001 05 : 04 : 50 pm to : vince . j . kaminski @ enron . com cc : subject : re : fwd : re : enron - resume interview of james valverde vince , james valverde is confirmed for a face - to - face interview with you on thursday february lst at 1 . 00 pm to 5 . 00 pm . ? when you have an interview itinerary , please share it with me so james know who he is interviewing with . ? please also tell me where you want him to show up , what floor , suite etc . ? i am assuming you are in the building on 1400 smith st . , right ? we have not discussed yet the details regarding what key skills and qualifications you are looking for in a candidate , other than that they are bright and talented . could you please share , via email or over the phone , what you are looking for in candidate for your organization . ? if you want me to put a search together , i can only do it by knowing what you want . ? thank you . if there is anything else i can do for you before the interview on thursday , please let me know . respectfully , johan at 04 : 39 pm 1 / 26 / 01 - 0600 , you wrote : johan , please , confirm the interview on thursday next week , 1 - 5 . vince johan dahl on 01 / 24 / 2001 12 : 04 : 42 pm to : ? ? vince . j . kaminski @ enron . com cc : subject : ? fwd : re : enron - resume interview of james valverde johan c . dahl director energy staffing group management recruiters of portland , inc . phone : 503 - 290 - 1153 phone : 800 - 979 - 8701 fax : 503 - 282 - 4380 e - mail : jdahl @ mrportland . com web : www . mrportland . com / html / energy . htm",0 +"Subject: mr . big shot ! vince - i couldn ' t have been more pleased than when i saw your name on the managing director promotion list last january - who says nice guys finish last ! i ' ve had the announcement in my "" to do "" folder all this time , waiting for me to catch up enough to send you this message , but i guess you ' re no stranger to that scenario . . . . nothing stochastic about it , you ' re simply the best ! betty : )",0 +"Subject: re : seminar series mug barbara , i think you make valid points in your e - mail . the latest design you sent me looks fine and meets with our approval . thanks . marge barbara ostdiek on 08 / 17 / 2000 04 : 10 : 44 pm to : "" marge nadasky "" cc : subject : re : seminar series mug at 03 : 58 pm 8 / 17 / 00 - 0500 , you wrote : > barbara , vince kaminski had forwarded me the artwork for the mug being > worked on > for the seminar series for review / comment . we in public relations were > wondering if you might be able to incorporate the enron logo in the design ? > could you please contact me and advise if this is possible ? we tried to use both the enron logo and the rice university seal . it just didn ' t work . there seemed to be a few problems . the first was color - as is , the mug will be black with metallic gold text ; introducing the other colors was distracting . our admissions department uses a black and gold mug that is quite stunning and , it seems to go with "" finance . "" that was my motivation . the second problem was that the logos themselves , even if it made sense to do them in gold , made the design too busy - a lot of the appeal in these "" word "" mugs is the clean , linear look . finally , i think lack of company and competing business school logos increases the chances that the academics who come to present their work at our workshop will display this mug on their desk or on their shelves . i think the mug will look quite stunning and i think the display of finance terms will make it an interesting conversion piece - i ' ve never seen anything like it in academics , let alone in finance . i think enron ' s sponsorship of the seminar series will get noticed when people follow their interest in the mugs to say "" what is this ? where ' d this come from ? "" i ' m hoping this version will be acceptable to you for our first shot at this . please advise . barbara ostdiek",0 +"Subject: re : vacation shirley , no problem . please , coordinate with kevin and anita . vince shirley crenshaw 09 / 06 / 2000 03 : 30 pm to : vince j kaminski / hou / ect @ ect cc : subject : vacation vince : i would like to take next wednesday , the 13 th as a vacation day , if it is alright . you will not be here . thanks ! shirley",0 +"Subject: hello all just wanted to share the list of "" one - page "" bios and summary statements that i have collected to this point . i have two more yet to come and will share them asap . have a great weekend and i look forward to seeing everyone in "" sunny / warm waco "" next week . by the way , bill petty has challenged everyone to a 40 minute jog along the river on friday morning at 6 : 45 a . m . so bring your jogging gear . i also have heard from very reliable sources that bennett stewart is the odds on favorite to "" win the race "" ( cynthia leaked the story that he ' s been in training now for several months ) . i ' ll also be sending you driving / parking , etc . instructions early next week . have a great weekend , john - bennett _ stewart . doc - david palumbo current bio . doc - g _ ferrell . doc - ivaysmanbiosketch . doc - jmartinbiosketch . doc - korpi _ bio _ plus _ views _ v 2 . doc - m _ froehls . doc - srivastava new econ . rtf john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : follow - up meeting on wharton hi christie : the telephone number in ebl 938 is : 713 / 853 - 3135 . have a safe trip . shirley christie patrick 12 / 12 / 2000 10 : 36 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : follow - up meeting on wharton shirley , unless my flights change , i can call in from my cell phone - - what number shall i dial ? thanks ! - - christie .",0 +"Subject: re : light switch for eb 1939 dolores : vince said to go ahead and do it . it is a health need . her eb # is 1939 and our co . # is 0011 and rc # 100038 . thanks for your prompt response ! have a great day ! shirley dolores sustaita 02 / 28 / 2000 09 : 06 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : light switch for eb 1939 f . y . i . , please read below . dolores - - - - - - - - - - - - - - - - - - - - - - forwarded by dolores sustaita / epsc / hou / ect on 02 / 28 / 2000 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron property & services corp . from : charles upshaw 02 / 28 / 2000 08 : 32 am to : dolores sustaita / epsc / hou / ect @ ect cc : subject : re : light switch for eb 1939 approx . $ 500 . dolores sustaita 02 / 25 / 2000 02 : 31 pm to : shirley crenshaw / hou / ect @ ect , charles upshaw / epsc / hou / ect @ ect cc : subject : light switch for eb 1939 charles , can you help with cost estimate ? dolores - - - - - - - - - - - - - - - - - - - - - - forwarded by dolores sustaita / epsc / hou / ect on 02 / 25 / 2000 02 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 02 / 24 / 2000 08 : 56 am to : pat scarborough / epsc / hou / ect @ ect , dolores sustaita / epsc / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron subject : light switch for eb 1939 good morning all : maureen raymond castaneda is officed in ebl 939 . she has terrible migraine headaches which are made worse by light . we would like to get a price on having an on / off switch installed in her room . as of now , they have removed the light bulbs , but said that may not completely answer the problem as some one may see that they are out and request they be replaced . i think the answer ( if it is not too expensive ) would be to have a switch installed . please let me know . our co . # is 0011 and our rc # is 100038 . thanks ! shirley 3 - 5290",0 +"Subject: tiger team mr . bayne : attached is the updated document . if you need anything else , please let me know .",0 +"Subject: hi vince , as always , i enjoyed having dinner with you . its always interesting . per your recommendation from last night , you should have received a note i just sent to andy fastow . if you can fit it into you schedule , sheridan and i would appreciate having you attend the conference , the conference dinner and reception . also , if you would like to participate on saturday only , that is a possibility as well . whatever might work with you . regards , dave * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: resume for wichai narongwanich i was able to retrieve his resume . please print out a hard copy for your files .",0 +"Subject: christmas baskets the christmas baskets have been ordered . we have ordered several baskets . individual earth - sat freeze - notis smith barney group baskets rodney keys matt rodgers charlie notis jon davis move team phillip randle chris hyde harvey freese faclities iain russell darren prager telephone services mary martinez ( robert knights dept . ) trina williams daniel hornbuckle todd butler pamela ford ozarka - maryam golnaraghi special baskets greg whalley richard weeks any questions please contact kevin moore other request contact kevin moore price information contact kevin moore please also if you need any assistance with your christmas cards let me know . thanks kevin moore",0 +"Subject: re : looking for someone who has experience in finance , math , programming , and the energy industry ? ( that ' s right , all four . . . ) megan , thanks for your interest in the research group . please , call me next week ( tuesday and later ) and stop by . i would like to talk to you for a few minutes before we shall go ahead with a formal interview . vince megan cooper @ ees 12 / 04 / 2000 04 : 54 pm to : vince j kaminski / hou / ect @ ect cc : subject : looking for someone who has experience in finance , math , programming , and the energy industry ? ( that ' s right , all four . . . ) vince , following your espeak session , erin rice suggested i contact you about joining your group . i have been with ees for almost three years , and during that time i have worked on tasks that are similar to what your group does on a larger scale . specifically , i excel at analytical / quantitative problem solving and the development of models and user requirements for application development . my educational background is energy management , and i have recently become involved in the financial aspects of transactions . i have attached my resume for your review , and i hope you will call me so we can talk in person . thank you . megan cooper integrated water solutions group ees - na ( 713 ) 853 - 1461",0 +"Subject: new pc shirley , ok . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000 12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - alex huang @ enron 01 / 07 / 2000 08 : 28 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : new pc hi shirley , i would like to request for a new pc . my current pc is quite old with not enough memory . twice i ran out of memory and had to have it people coming to clean it for me . their suggestion is to either get a new hard drive or a new pc . given that dell has pentiumc iii processor at 800 mhz on market , i would like to request a pc with process at 500 mhz or higher level . thank you very much . best , alex",0 +"Subject: presentation to faculty and students at berkeley vince - - please feel free to also call jeff dasovich ( 415 - 782 - 7822 ) in our san fransisco office . he has been very involved in the california market discussions and presented before ferc during their field hearings . he knows the profs you are meeting with and has some great insights into our positions . jeff also attended berkeley as an undergrad and is now attending their b - school in the evenings . thanks . jim steffes - - - - - - - - - - - - - - - - - - - - - - forwarded by james d steffes / hou / ees on 09 / 20 / 2000 09 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : steven j kean @ enron on 09 / 20 / 2000 09 : 21 am sent by : steven j kean @ enron to : maureen mcvicker / na / enron @ enron , james d steffes / hou / ees @ ees , elizabeth linnell / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : presentation to faculty and students at berkeley maureen - - please send vince my california testimony and the talking point presentation for jeff skilling at the national press club . eliz - - keep vince on the distribution list for the documents we are generating now to repond to the california situation . - - - - - forwarded by steven j kean / na / enron on 09 / 20 / 2000 09 : 18 am - - - - - vince j kaminski @ ect 09 / 18 / 2000 01 : 26 pm to : steven j kean / na / enron @ enron cc : charlene jackson / corp / enron @ enron , celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron subject : presentation to faculty and students at berkeley steve , i am a lead recruiter at the university of california at berkeley for enron analyst / associate program . i contacted several friends who work at berkeley and received an invitation from one of them to make a presentation at the weekly faculty seminar of the dept . of industrial engineering and operations research . the students and faculty members from the business school will be also invited . berkeley in general , and department of industrial engineering and operations research in particular , are important centers of academic research on electricity markets ( s . oren works very closely with severin borenstein ) . my presentation will focus on the analyst / associate program . i shall also have an opportunity to discuss the power markets in california ( i expect many questions ) before many experts who are very important to shaping public opinion and regulatory agenda . please , let me know who in you group could help me in preparing this presentation and in presenting enron ' s point of view in a more effective way . vince fyi . the name of my friend who invited me : shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777",0 +"Subject: re : power crisis in the west tim belden ' s office referred me to you . has grant masson been replaced ? - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , november 06 , 2000 11 : 00 am to : niam @ infocastinc . com subject : re : power crisis in the west nia , please , contact tim belden in our portland office . his phone number is : ( 503 ) 464 - 3820 vince nia mansell on 11 / 03 / 2000 12 : 46 : 52 pm to : vkamins @ enron . com cc : subject : power crisis in the west dear vince , i spoke with you briefly yesterday regarding grant masson . you informed me that he is no longer an enron employee . i have also been informed that grant has not yet been replaced . i am inquiring because infocast would like to have an enron representative speak at an upcoming conference entitled "" power crisis in the west : status it is certainly going to be an exciting conference due to all of the controversy surrounding the situation in san diego . kind regards , nia mansell infocast conference manager ( 818 ) 888 - 4445 ext . 45 ( 818 ) 888 - 4440 fax niam @ . com > ( see attached file : power crisis in the west invite . doc )",0 +"Subject: draft from the editor with questions . i ' ll call mark , this is the latest draft ( fri afternoon ) , of the paper by john martin from baylor . please , review the draft from the point of view of our pr policy . i shall read it as well . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001 02 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" john d . martin "" on 02 / 02 / 2001 10 : 59 : 11 am to : vkamins @ enron . com cc : subject : draft from the editor with questions . i ' ll call vince , attached is the editor ' s latest edits on my draft . there are a couple of things i ' d like to discuss with you and will call right after lunch . john - 134 martin 2 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : conference : monetary policy in the new economy maureen , ok . vince maureen raymond 10 / 11 / 2000 05 : 39 pm to : vince j kaminski / hou / ect @ ect , gary hickerson / hou / ect @ ect cc : subject : conference : monetary policy in the new economy i would like to attend the following conference : "" monetary policy in the new economy "" on october 19 th in washington dc . this is the topic of an annual conference on monetary policy . fed chairman alan greenspan is the keynote speaker . also , former fed vice chairman manuel johnson and many prominent monetary economists will be attending and participating in the debate on u . s . monetary policy . the cost of the conference is $ 375 . while in washington , i could also arrange meetings with the iif economist on our largest investment exposures . in addition , i could interview mark giancola and possibly some other candidates from johns hopkins school of advanced international studies for our group . regards , maureen",0 +"Subject: re : nymex volumes for rebuttal vince - i need these numbers by tomorrow am as we are at crunch time . thanks - chris margaret carson 09 / 27 / 2000 08 : 44 am to : chris long / corp / enron @ enron cc : subject : nymex volumes for rebuttal chris i track physical volumes in markets not really financials . . . try vince kaminski vp in ena ' s research desk and his people will have this for you . . . . margaret",0 +"Subject: re : ca for henwood engagement badri , in the event dpc signs the contract , we would need to make it indian tax efficient . please suggest the structure / clauses / information required by which we need not pay withholding taxes . if you need more info on the scope of work contemplated you can talk to wade / neil / sandeep . regards mohan sandeep kohli 01 / 22 / 2001 07 : 11 am to : wade cline / enron _ development @ enron _ development , mohan gurunath cc : stinson gibner @ ect , vince j kaminski @ ect , bruce lundstrom / enron _ development @ enron _ development , bonnie nelson / enron _ development @ enron _ development , lauren haggety subject : re : ca for henwood engagement wade / mohan , please find below the last draft copy of the henwood consulting agreement . we need to sign this asap so as to not be in violation of ene policies . as you will see , the draft agreement is made out with enron in mind , even though we have left the company name blank in the agreement . mohan - last when we spoke ( friday ) , you were going to explore the tax aspects of having dpc be the signing company . please tell us if that works . separately , you and wade may need to consider how dpc lenders may look upon some of the information emerging from this study , and whether you want all of it in lender domain . based on the same you may want to decide whether this needs to be eipl , ene houston , or dpc . we could also have a version where ene houston is signing the contract on behalf of dpc . please let me know what you decide , and we will proceed accordingly . if you would like someone in eipl / dpc to be signing the contract , please let me know , who the signing authority is . i suspect , that even i could sign on behalf of dpc or ene ? ? if so , i will be in houston on wednesday , and sign at the time . if not , you can assign someone to sign . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 22 / 2001 06 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lauren hagerty 01 / 20 / 2001 01 : 01 am to : bonnie nelson / enron _ development @ enron _ development cc : bruce lundstrom / enron _ development @ enron _ development , sandeep kohli / enron _ development @ enron _ development , stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : ca for henwood engagement i suspect that enron india llc would be the entity to use . however , is anyone from tax involved in this ? if not , we need to get someone in the loop . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ lauren hagerty enron india / ebs asia three allen center , room 2119 houston , texas 77002 phone : 713 - 646 - 6529 fax : 713 - 646 - 7549 bonnie nelson 01 / 19 / 2001 11 : 54 am to : stinson gibner / hou / ect @ ect , bruce lundstrom / enron _ development @ enron _ development , lauren cc : vince j kaminski / hou / ect @ ect , sandeep subject : re : ca for henwood engagement stinson , please find attached a revised version of the draft consulting agreement with henwood . fyi , i am attaching both a clean version and one marked toshow changes from the last draft i sent you . please let me know if you have any questions or comments on the agreement or the most recent changes . what is the status of henwood ? do you still want to engage them and what is the timeframe for their work ( the dates in the draft may need to be corrected ) . bruce and lauren : please advise on which enron entity should be the party to this consulting agreement . thanks , bonnie",0 +"Subject: re : d - g energy please let me know when you send it to legal , so i can track the progress . thanks , - - stinson from : laine borgman @ enron on 11 / 20 / 2000 03 : 23 pm to : stinson gibner / hou / ect @ ect cc : subject : re : d - g energy stinson , attached is the final version of the sofware license agreement . prior to any signatures being placed on the document by enron , i need to send the document to our legal counsel for his sign - off by initialing . laine",0 +"Subject: ppi index short - term models - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 31 / 2000 01 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - anjam ahmad 03 / 21 / 2000 04 : 10 pm to : martina angelova / lon / ect @ ect , trena mcfarland / lon / ect @ ect cc : dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect , zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : ppi index short - term models hi martina i believe that the forecasts are accurately reflecting this . please see graphs below : both models really need our rpi curve to be linked ( at the moment i have just copied the 2 . 3 % number forward ) . because the auto - regressive error term is not very important , we can run the models forward with reasonable confidence . as i mentioned , i don ' t think we can really run this model more than 12 months , in fact , i think we should run for 9 - 12 months and blend the next 3 - 4 months out with the long - term model . hope i can fix the long - term ones now with some new insight ! regards , anjam x 35383 pllu : dzcv :",0 +"Subject: re : loan pc charlotte , i confirmed today with your colleague stuart at x 34073 and he arranged for the cpu to be removed . please call me if you have any questions . thanks ! martina x 34327 vince j kaminski 24 / 02 / 2000 15 : 28 to : charlotte baldock / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , martina angelova / lon / ect @ ect subject : re : loan pc charlotte , i am back in houston . please , contact anjam ahmad and / or martina angelova . they will be able to help you . vince kaminski charlotte baldock 02 / 24 / 2000 05 : 22 am to : vince j kaminski / hou / ect @ ect cc : subject : loan pc vince can you confirm that you will returning the loan pc to it support today please ? thanks charlotte",0 +"Subject: re : offer ken , either is really fine with me . i ' m glad to have you coming . i will be out of the office on nov . 21 and the 22 nd is likely to be a short day for most people , so starting on nov . 27 would probably work the best for us . - - stinson kenneth parkhill on 11 / 10 / 2000 03 : 59 : 42 pm to : "" stinson gibner ( e - mail ) "" cc : subject : offer stinson , i have talked with folks here at fn , and i am happy to say that may be able to start at enron as soon as monday november 20 , the week of thanksgiving . i am in the process of wrapping up my existing projects , but it appears that things are coming together well , and i may be able to leave a little earlier than i had thought . would you prefer that i start the week after thanksgiving ? ken kenneth l . parkhill , p . e . , ph . d . freese & nichols , inc . 4055 international plaza , suite 200 fort worth , texas 76109 - 4895 817 . 735 . 7391 817 . 735 . 7491 ( fax ) ",0 +"Subject: wharton business plan competition hi anne ! i ' ll be at wharton on tuesday the 20 th - - perhaps we can get together to discuss this sometime later in the afternoon . what does your schedule look like ? thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 10 : 08 am - - - - - "" stamer , anne "" 01 / 26 / 2001 03 : 47 pm to : "" ' christie _ patrick @ enron . com ' "" cc : subject : wharton business plan competition dear christie : thank you for your voice mail . things are moving along nicely with the competition . phase ii deadline was today , so we hope to have some statistics in the next few weeks . i have attached the statistics from phase i , for your files . listed below are ways that enron could be involved , let me know in which ( or all ) of these enron would be interested in participating . * we want to start listing our sponsors , so it would be really good if we could get your logo . * also , does enron wish to be a judge in phase iii and the venture fair ( vf ) ? for phase iii , we would mail each judge about 3 full blown business plans to be ranked . we anticipate this taking no more than 1 afternoon * for the vf , we would need a judge to be present for the entire day . the vf is by invitation only and we anticipate about 350 students , venture capitalists , business entrepreneurs and faculty . the vf will be held in philadelphia on april 30 th . * at the vf we will provide an opportunity for our sponsors with a 6 foot table for exhibits or materials to hand out . we will need to know if you wish to use the exhibit space . * we plan on providing our 25 semi - finalist teams with one - on - one mentoring . if enron is interested , that would be about 1 / 2 or 1 day commitment . * there might be an opportunity for a workshop to the university community . would enron be interested in participating in something like this ? i look forward to working with you to make this year ' s bpc a success . thank you . sincerely , anne stamer > anne stamer wharton business plan competition wharton entrepreneurial programs the wharton school 419 vance hall , 3733 spruce street philadelphia , pa 19104 - 6374 215 - 746 - 6460 ( direct ) 215 - 898 - 4856 ( office ) 215 - 898 - 1299 ( fax ) stamer @ wharton . upenn . edu - phase ioverview . doc",0 +"Subject: pjm / ftrs ' meeting this thursday 6 / 8 ftr team , the pre - bid meeting arrangements are as follows : location : eb 3125 a date : 6 / 8 ( thursday ) time : 8 : 30 am to 2 : 00 pm cdt breakfast : provided lunch : sandwiches thanks .",0 +"Subject: visit by enron , 19 october 2000 a team of key executives from enron will be on campus on the 19 th of october for the purposes of meeting with key staff and faculty to learn more about the school and how the firm can gain a greater presence here . included in this group will be : vince kaminski , director of research christie patrick , vp , university relations mike rosen , director , university affairs group i have developed a proposed agenda for the visit . please review and confirm that you are available to meet with one or more of the enron team at the times specified . if so , please provide me a prefered meeting location . if not , please alternate times and locations . 8 : 00 - 9 : 00 breakfast with donna piazze and keith weigelt to discuss "" tiger team fap project "" the ivy grill , inn at penn 9 : 00 - 10 : 30 meeting with raffi amit , ian macmillan , emily cieri and anne stamer to discuss the sol c . snider entreprenuer center and its related programs , the business plan competition and webi . . . 4 th floor conference room , vance hall ? ? ? 10 : 30 - 12 : 00 christie and mike hold discussions with cara tyler , bob bonner and pat rose regarding recruiting processes and procedures . . . cms conference room 10 : 30 - ? ? ? broadband executive meets with gerry mccartney and other university officials to discuss campus needs , future usage projections , etc . 10 : 30 - 11 : 30 vince meets with sid winter reference jones center and related research 11 : 30 - 12 : 00 vince meets with howard kunruether to discuss risk management 12 : 00 - 1 : 15 pm group lunch with jerry wind at faculty club to discuss the e - fellows program 2 : 00 - 3 : 00 pm christie and mike meet with mike baltes to discuss co - branding issues with wharton and upenn 5 : 00 pm all will attend the et conference dinner event please confirm your willingness and availability to support this agenda . thanks for your help . tom",0 +"Subject: london , new york , houston , financial mathematics june / july 2001 hello speakers ! ? my name is joanna vidal and i am the coordinator for the financial mathematics training course being in held on the following dates : ? london on june 28 & 29 new york on july 9 & 10 houston on july 16 & 17 ? ? i am in the process of preparing the speaker packs which will include an updated contact information sheet with ? all your details . ? you will receive this pack shortly after you confirm your addresses . ? i will list them below and i ask that you please look it over and make any necessary corrections . ? ? ? my contact details , for your information are : ? joanna vidal events coordinator risk waters group t : ( 212 ) 925 1864 ext . 197 f : ( 212 ) 925 7585 jvidal @ riskwaters . com www . riskwaters . com ? thank you and i look forward to working with you . ? duane seppi carnegie mellon university graduate school of industrial administrations pittsburgh , pa 15213 - 3890 t : 001 412 - 268 - 2298 f : 001 412 - 269 - 8896 ? helyette geman universite de paris dauphine finance department au de ka grand ecole corgy pontois , paris france 95021 t : 00 33 60 - 807 - 4200 ? vincent kaminski enron credit 1400 smith street room ebl 962 houston , tx 77002 - 7361 t : 001 713 - 853 - 3848 f : 001 713 - 646 - 2503 ? peter nance teknecon , inc . 1515 s . capital of texas highway suite 101 austin , tx 78746 t : 001 512 - 732 - 7084 f : 001 512 - 732 - 7099 ? chris harris innogy holdings place windmill hill business park whitehill way swindon , wiltshire uk , 5 n 5 6 pb t : 44 793 387 - 7777 f : 44 793 389 - 7811 ? spyros maragos dynergy , inc . 1000 louisiana street suite 5800 houston , tx 77002 t : 011 713 - 507 - 6589 f : 001 713 - 767 - 5958 ? ehud ronn university of texas at austin department of finance mccombs school of business austin , tx 78712 - 1179 t : 001 512 - 471 - 5853 f : 001 512 - 471 - 5073 ? ? ?",0 +"Subject: 2 nd message - re : dec 2 super saturday interviewer confirmation please see the attached for interviewer information . shelly jones 11 / 28 / 2000 05 : 54 pm to : scott earnest / hou / ect @ ect , tim mckone / corp / enron @ enron , richard dimichele / enron communications @ enron communications , brandon neff / hou / ees @ ees , john j lavorato / corp / enron @ enron , guido caranti / enron _ development @ enron _ development , robert bailey / hou / ees @ ees , dixie yeck / enron communications @ enron communications , cheryl lipshutz / hou / ect @ ect , john godbold / hou / ect @ ect , chuck randall / hou / ees @ ees , michelle juden / hou / ees @ ees , mark reese / hou / ees @ ees , jim fallon / enron communications @ enron communications , sarah wesner / corp / enron @ enron , sylvia barnes / hou / ees @ ees , kirk neuner / enron communications @ enron communications , mari capestany / hou / ees @ ees , wayne perry / enron _ development @ enron _ development , john neslage / enron _ development @ enron _ development , fred lagrasta / hou / ect @ ect , bani arora / hou / ees @ ees , jonathan risch / hou / ees @ ees , heather kroll / hou / ect @ ect , brad romine / na / enron @ enron , julia kazibwe / hou / ees @ ees , thomas rich / fgt / enron @ enron , mark smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect , kathy m lynn / corp / enron @ enron , stephen stenhouse / enron communications @ enron communications , jere c overdyke / hou / ect @ ect , jim meyn / na / enron @ enron , donald reid / enron @ gateway , ken gustafson / hou / ees @ ees , daniel reck / hou / ect @ ect cc : sue foust / hou / ect @ ect , rebecca serwin / corp / enron @ enron , crissy collett / enron communications @ enron communications , sonia guerra / enron _ development @ enron _ development , mary lou browder / enron _ development @ enron _ development , mary lou browder / enron _ development @ enron _ development , adriana cortes / hou / ect @ ect , leticia botello / hou / ees @ ees , paula pierre / enron communications @ enron communications , theresa davis / hou / ect @ ect , kelly lacalli / hou / ees @ ees , lily guerra / hou / ees @ ees , lucy marshall / enron communications @ enron communications , amy rios / hou / ect @ ect , karen street / hou / ees @ ees , cindy long / corp / enron @ enron , becky young / na / enron @ enron , marcia a linton / na / enron @ enron , claudette harvey / hou / ect @ ect , brenda flores - cuellar / na / enron @ enron , valerie villareal / hou / ees @ ees , becky young / na / enron @ enron , amy flores / corp / enron @ enron , sally slaughter / enron communications @ enron communications , donna baker / hou / ect @ ect , chaun roberts / na / enron @ enron , terri bachand / enron communications @ enron communications , angie collins / hou / ect @ ect subject : dec 2 super saturday interviewer confirmation please see the attached . this is a confirmation for saturday interviews only . if you volunteered for friday night dinner as well , notification will be sent via email by end of work day wednesday regarding your friday night dinner participation . please feel free to contact me with any questions . thank you shelly jones ext . 3 - 0943",0 +"Subject: re : re : workshop this is great news for me and even more so for icbi ( or the other way around . . ) . could you call me today before 11 . 30 p . m paris time or to - morrow between 3 and 5 . 30 p . m paris time ? i think i do not have the right numbers for you any more helyette",0 +"Subject: analysis of dabhol energy cost jeff , i am forwarding an analysis put together by sandeep kohli and reviewed by vince and me . the results in the attached word document show that dabhol energy costs are several cents below that of roughly 600 mw of distributed generation which has been identified in maharastra . this 600 mw does not include innumerable small generators which will have even worse energy costs . the excel spreadsheet contains the data and calculations . regards , stinson x 34748 - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 05 / 2001 03 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli @ enron _ development 01 / 05 / 2001 02 : 28 am to : vince j kaminski @ ect , stinson gibner @ ect cc : subject : vince / stinson , please find the two attachments that give a more detailed calculation , as well as the revised statement that can be made to press . the numbers are not small , but really do not reflect the true magnitude of the genset issue . they do not take into account the capital costs of the gensets , and also do not focus on the many smaller units that are operating in homes , and commercial establishments . hope ths helps . regards , sandeep .",0 +"Subject: re : default rates mark , this is a good point . in moody ' s june 1999 study , debt recoveries for corporate bankruptcies , there is a graph of firm - level recovery rates by year of bankruptcy resolution ( as opposed to default year ) . reading from the graph finds : as the data above is based on resolution year , the same study finds the average length of time spent in bankruptcy is 1 . 30 years ( median 1 . 15 years and standard deviation of 1 . 20 years ) . the interesting point is the slide in recovery value 1996 to 1998 . one would wonder if the mix of high - yield issuance slanted towards the tech companies would yield lower recoveries ( quick technological obsolescence - - little tangible recovery value ) . interesting to note is the december 1999 to december 2000 change in spreads . the table below divides the december 2000 spreads by the december 1999 spreads . one would have expected a pronounced flight to safety over this time - frame , but the figures are more mixed : to : michael tribolet / corp / enron @ enron , william s bradford / hou / ect @ ect , david gorte / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : re : default rates per our discussion , see attached for impact of assumed recovery rates : michael tribolet @ enron 12 / 11 / 2000 08 : 09 am to : william s bradford / hou / ect @ ect , david gorte / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mark ruane / hou / ect @ ect cc : subject : default rates please see below for my note to jeremy at the bottom and his reponse . i have placed mark ruane ' s yields against a mid november default frequency table . note there may be a slight shearing in dates , but the concept is more important : market implied cumulative default rates ( % ) : 1 year 5 year 10 year aaa 0 . 51 5 . 74 14 . 54 aa 0 . 67 6 . 39 16 . 61 a 0 . 98 8 . 98 21 . 03 bbb 1 . 17 9 . 88 22 . 39 bb 3 . 27 18 . 62 37 . 51 b 4 . 65 24 . 21 46 . 27 s & p historical default rates ( % ) : 1 year 5 year 10 year aaa 0 . 00 0 . 13 0 . 67 aa 0 . 01 0 . 33 0 . 90 a 0 . 04 0 . 47 1 . 48 bbb 0 . 21 1 . 81 3 . 63 bb 0 . 91 8 . 82 14 . 42 b 5 . 16 20 . 95 27 . 13 in looking at the one - year transition rates as a very rough proxy for how many more defaults occur in a recession ( 1991 ) versus average ( 1981 - 1999 ) historical default rates ( % ) : investment grade non - investment grade avg . 1981 - 99 0 . 07 4 . 21 1991 0 . 12 10 . 40 multiple 1 . 7 x 2 . 5 x looking at where the market implied default rates divided by the historicals default rates to obtain a "" multiple "" ( how much more severe than historical ) : 1 year 5 year 10 year aaa infinite 44 . 2 x 21 . 7 x aa 67 . 0 x 19 . 4 x 18 . 5 x a 24 . 5 x 19 . 1 x 14 . 2 x bbb 5 . 6 x 5 . 5 x 6 . 2 x bb 3 . 6 x 2 . 1 x 2 . 6 x b 1 . 1 x 1 . 2 x 1 . 7 x on the 10 year historical figures , we need to be careful as the s & p static pool figures show a definite seasoning ( lower defaults in late years probably due to prepayment ) versus our contracts . secondly , the s & p figures have withdrawn ratings , which usually mean they are stale , but loosing some information content . i will ask emy to set up a meeting to discuss further . - - - - - - - - - - - - - - - - - - - - - - forwarded by michael tribolet / corp / enron on 12 / 11 / 2000 07 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jeremy blachman @ ees on 12 / 10 / 2000 07 : 21 am to : michael tribolet / corp / enron @ enron cc : subject : default rates thanks . i would strongly suggest an offsite sooner than later with a handful of the right people so that we can step back and design the right architecture for looking at credit in our deals . it is broken , not clear , killing our velocity and true capabilities . we also need to look at staffing , skills sets , the credit reserve model etc . perhaps you should take a crack at an agenda . - - - - - - - - - - - - - - - - - - - - - - forwarded by jeremy blachman / hou / ees on 12 / 10 / 2000 07 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - michael tribolet @ enron 12 / 09 / 2000 03 : 51 pm to : jeremy blachman / hou / ees @ ees cc : subject : default rates i visited with vince kaminski for about 20 minutes today regarding the market implied defaults rates and the disconnect in investment grade land . he is seeing the same anomaly and agreed that we as a company need to revisit the methodology employed in calculating the implied figures . i will follow through and report back .",0 +"Subject: thanks maureen - thanks for your outstanding presentation on friday . sorry again for the difficulties in scheduling . i can see some excellent collection opportunities for our group as a result of your presentation and look forward to discussing them with you on my return . we think we can get excellent info on production & exports in russia , as well as good insight into anti - dumping out of dc and the wto . labor unrest , environmental problems , civil unrest are other possibilities . fyi , the speeches from today ' s lme seminar will be posted on the lme website tomorrow . you may be particularly interested in the outlooks for aluminum , nickel , and copper . rj",0 +"Subject: managing enron ' s relationships with the universities jeff , i would like to get on your calendar ( together with jeff shankman ) for 15 - 30 minutes to discuss the results of my visit at the wharton school with tom piazze . a separate message about this visit will follow . i would like also to talk to you about the way we manage our relationships with different universities . historically , we were rather passive customers of the academic institutions , trying to hire the best students and limiting our presence on the campuses mostly to the recruiting trips and campus receptions . we should rethink the way we work with universities . the efforts to get the best students look more and more like a hand - to - hand combat and often we are not very successful . it is critical that we increase our presence on the campuses and this can be accomplished in a number of different ways : 1 . involvement in research projects . for example , we are currently underwriting two research projects at stanford university , involving ph . d . students of professor nicholas bambos ( a top expert on communications networks ) . we shall participate in formulation of the projects ' objectives and will be given access to the results . involvement in research projects allows us to obtain access to current scientific developments in the leading universities and also to lock - up some very promising students . most companies in the high tech industries have such programs . 2 . lectures and presentations by enron employees . practically every presentation i have made so far at different universities resulted in a number of resumes and hiring decisions . it is important that students get exposed to enron early in their academic program . in many cases , the best students have already made up their mind by the time we approach them during their senior years . 3 . visits by faculty members in enron . closer cooperation with the universities has many advantages in addition to getting the best students and obtaining access to current research . the universities are very important in shaping public opinion on the issues critical to enron ' s future ( especially in the area of deregulation and design of new markets ) . currently , the relationships with many leading academic centers depend on personal commitment of a number of overworked enron employees . in many cases , there is no continuity and focus . i want to recommend a creation of a special function ( vp or md level ) responsible for coordinating our relationships with the universities . this function would be separate from our analyst / associate program . i have many ideas how this function could be structured . vince",0 +"Subject: re : risk 2000 panel discussion , boston oliver , makes sense to me . vince "" oliver bennett "" on 04 / 03 / 2000 09 : 49 : 13 am please respond to "" oliver bennett "" to : , "" vince j kaminski "" , cc : subject : risk 2000 panel discussion , boston just a quick email to start some discussion about the panel session you are involved in during risk 2000 in boston on 13 similarly it is often interesting to hear the panel ' s comments on one individual ' s more specific area of knowledge . ? conseqently if you could return this email ( to all panel members ) with topics you feel should be covered , any particular areas you would personally like to focus on , any proposed changes to the actual panel structure , and possibly additonal panel members you think should be there , that would be a good start . i am still in the process of looking for a moderator and if anyone has any suggestions , please let me know . ? ( the talk title is effectively applying weather derivatives ) ? best regards , ? oliver ? ? ? direct : + 44 ( 0 ) 20 7484 9880 ? risk publications , 28 - 29 haymarket , london swly 4 rx fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk www . riskpublications . com",0 +"Subject: re : trading algorithms andy , sounds good . one comment : vasant is swamped with work coordinating several high profile projects . bob is very productive and thorough and will get a lot of support internally from other members of the group : this contribution may not be directly visible but it will be still very important . we appreciate your hands - on involvement . it ' s always the most important condition of a successful project to have direct and frequent interaction with the customer . look fwd to working on this project . vince from : andy zipper / enron @ enronxgate on 04 / 18 / 2001 01 : 57 pm to : jay webb / enron @ enronxgate , vince j kaminski / hou / ect @ ect cc : subject : trading algorithms guys , here is what i took away from our meeting : 1 ) . research will continue working on custom reporting off of enrononline data . 2 ) . research will continue working on market analysis off of enrononline data 3 ) . research will a contribute a resource to the trading algorithm effort , presumably one at this point in time . i would prefer it to be vasant but i am flexible . the trading algorithm group will be run by the enrononline team with its product reviewed by research . it is my belief that projects like this require a firm commercial hand in their infancy to make sure they stay on the right track . if this presents a problem for anyone please let me know so that we can discuss . thanks , andy",0 +"Subject: re : check vince , ? oh . ? i sent an invoice to habiba for aus 5 k a while back , and she informed me that she passed it along to the people who are handling the agreement now ( i take that as fiona grant in london ? ) . ? i will then send out another invoice of aus 5 k in the next week or so for the remaining balance . ? should i have sent the invoice to you ? ? thanks , julie - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : monday , october 30 , 2000 9 : 12 pm subject : re : check julie , a clarification . we had an agreement with chris and les to contribute ? aus 10 , 000 as a part of the cost . vince "" julie "" on 10 / 30 / 2000 12 : 32 : 14 pm to : ? ? cc : subject : ? re : check vince , thank you for your email . we will send you a copy of the book as soon as it is available , which we are now estimating to be around 21 november ( no need to send us a cheque ; you deserve it ) . just let us know if we should use a different address than your office ? in houston . thanks again for all of your help . julie - - - - - original message - - - - - from : ? vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : monday , october 30 , 2000 2 : 16 ? pm subject : check julie , this message was returned to me a few times when ? i sent it from my home address . vince - - - - - - - - - - - - - - - - - - - - - - ? forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 08 : 00 am ? - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 10 / 28 / 2000 12 : 12 : 57 ? pm to : julie @ lacima . co . uk cc : vkaminski @ aol . com , vkamins @ enron . com subject : ? check julie , as the book is about to be released to the ? market , i would like to start the process to issue the check to lacima . ? who will be the payee ( lacima ) and what is the ? address ? vince",0 +"Subject: re : philippe jorion ' s pending visit to rice david , it ' s even better . dinner on the 18 th works best for me . i sent your outline to our cfo with my recommendation . i hope to hear shortly from him . vince david ikenberry on 02 / 05 / 2001 02 : 29 : 04 pm to : "" vkamins @ ennron . com "" cc : subject : philippe jorion ' s pending visit to rice hi vince , we have tentatively re - scheduled philippe jorion for monday , march 19 . he will likely come for dinner on sunday , march 18 and return to california on march 19 . would dinner on the 18 th and / or a seminar sometime on monday the 19 th work with your schedule ? thanks , dave * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: organizational announcement - introducing enron engineering and operational services in order to better align our engineering and operations capabilities with the commercial businesses they support , we are pleased to announce the following organizational change will be effective immediately . a new business unit , enron engineering and operational services ( eeos ) , is being formed which will include our existing operations in enron engineering and construction company ( ee & cc ) , operational energy corporation ( oec ) , and national energy production corporation ( nepco ) . brian stanley , as president and chief executive officer , and keith dodson , as chief operating officer will provide the leadership for this new organization , reporting to the office of the chairman of enron wholesale services . nepco will continue to operate as a stand - alone business under john gillis , president . with the majority of ee & cc and oec  , s activities focused on assets and projects which are in wholesale services , this will better align the efforts of eeos with the commercial businesses it supports . while eeos will be a stand - alone unit within enron wholesale services it will work very closely with and have direct accountability to the business units it supports . this realignment also centralizes our engineering and operations capabilities in a single business segment and should ensure that innovation and best practices are shared and implemented across our many operations and will also allow for better identification of priorities and more effective allocation of resources to these projects . consistent with this approach , development engineering will have dual reporting to both eeos and the business units which they support . with an extensive and varied portfolio of assets around the world and a wide variety of new development opportunities available to enron , it is critical that we continue to maintain the best in class capability to design , construct , commission , and effectively manage and operate enron  , s assets on a global basis . this new global business unit should insure that we will continue to enhance these demonstrated capabilities and provide us with a sustainable advantage as we advance our business strategy around the world . please join us in congratulating brian and keith on their new assignments . mark frevert & dave delainey",0 +"Subject: re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture great . we will be around . let ' s get together . please , give me a call ( 650 - 570 - 6509 ) or / and let me know your phone number in palo alto . andrzej - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , october 24 , 2000 12 : 58 pm to : lubowski , andrzej cc : vince . j . kaminski @ enron . com subject : re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture andrzej , i shall be in the bay area again for thanksgiving . i came to sf for one day to do recruiting at berkeley . i hope you will feel better soon . vince "" lubowski , andrzej "" on 10 / 20 / 2000 12 : 45 : 25 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture wicku , i hoped to hear from you . please , let me know whether your plans have changed , and if so , when you are coming to palo alto . i spent theer weeks in europe in september ( had dinner with leszek and ewa ) , and went to sydney as a guest of nbc . upon return i caught a flu , and travelled heavily congested to new york , which led to some ear problems . consequently i intend to stay put for several weeks , and will have to reschedule my trip to houston for dec . or january . hope to see you here before then . best to all three of you . andrzej - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , august 18 , 2000 6 : 23 am to : lubowski , andrzej cc : vince . j . kaminski @ enron . com subject : re : fw : citi , wells , enron , sl and i 2 form a b 2 b venture andrzej , thanks . please , send me the information about the dates when you plan to visit houston . also , the information about your position / title / responsibilities ( as well as the info about the other members of your team ) would be useful . i shall be in the bay area between the 10 th and the 20 th of october . hope to see your then . wicek",0 +"Subject: new recruit : matthew williams work and training plan attached . those in the us please feel free to resize the document to your printer ' s content . steve",0 +"Subject: re : fw : possible visit to enron by professor nalin kulatilaka of boston university thanks , i will followup with shirley and vasant asap . - - - - - original message - - - - - from : kaminski , vince sent : monday , april 02 , 2001 10 : 32 am to : mack , iris cc : kaminski , vince ; shanbhogue , vasant subject : re : fw : possible visit to enron by professor nalin kulatilaka of boston university iris , please , check with shirley . she keeps my calendar up to date . also , we got a 2 nd desk for you with the credit group on the 23 rd floor . you can divide your time bet the 19 th floor and the 23 rd floor to stay in touch with the business unit . please , check with vasant and he will introduce you to the credit team here in houston ( jeff kinneman , craig chaney ) . also , please plan for a trip to london in 3 - 4 weeks . vince vince from : iris mack / enron @ enronxgate on 04 / 02 / 2001 09 : 57 am to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : re : fw : possible visit to enron by professor nalin kulatilaka of boston university hi , thanks for your prompt response . nalin kulatilaka wants to visit when you are in town . what are good thursdays for you ? thanks , iris - - - - - original message - - - - - from : kaminski , vince sent : monday , april 02 , 2001 8 : 14 am to : mack , iris cc : gibner , stinson ; kaminski , vince subject : re : fw : possible visit to enron by professor nalin kulatilaka of boston university iris , i wrote an endorsement for his book on real options ( it was on the cover under jeff skilling ' s name ) . let ' s invite him to the thursday lunch . vince from : iris mack / enron @ enronxgate on 03 / 29 / 2001 05 : 52 pm to : stinson gibner / hou / ect @ ect , stinson gibner / enron communications cc : vince j kaminski / hou / ect @ ect subject : fw : possible visit to enron by professor nalin kulatilaka of boston university hi stinson , a colleague of mine - professor nalin kulatilaka of boston university - is interested in visiting enron to give a talk on work he is doing in the broadband area . please see the forwarded emails for further information and available dates . can you let me know if we can give him a forum at one of our thursday research lunches or a friday brown bag lunch ? thanks , iris - - - - - original message - - - - - from : nalin kulatilaka @ enron com ] sent : thursday , march 29 , 2001 5 : 40 pm to : mack , iris cc : lin , martin subject : re : possible visit to enron by professor nalin kulatilaka of boston university hi iris i have two different hats to wear in talking to enron . one is as a financial economist . the other as the director of the newly formed "" global mobility innovation initiative ( gmii ) - - this is the research project funded by lucent , involving bu , lbs , and insead , to study various aspects of the mobile internet ( read 3 g ) . on the former i am working with a couple of ph . d . students in understanding ( a ) details of how having physical supply ( inventory ) can be used by a market maker . this is a problem that has been studies in the context of specialists inventory in the stock market but i think really interesting in the way enron does it in some of the newer markets like bandwidth . i think this is a big issue in lighting up all the dark fiber that is in the ground . ( b ) how enron is disciplining the internal decision making process with market . this is in many ways the critical aspect of real options that most finance people miss - - having options is one thing but exercising them and realizing their value is another . all of the incomplete contracting , asymmetric information , and incentive issues are ignored in real options valuation models . but they are real in practice . my impression is enron ' s real success is in putting place an organization that is able to mitigate these problems by imposing a market disciplining . ( c ) how enron manages the various books that involve physicals , financials , credit etc . this is specially important when many of the real assets have options features and therefore , include non - linear risk profiles . the story of gas is pretty well understood but not many of the others markets enron has been moving into over the last few years . on the gmii front , i think that some interesting opportunities arise when you think of the spectrum in a way similar to that of dark fiber . i am working with several people at lucent on this issue . i think it would be wonderful to engage in a conversation with enron and lucent folks in the room . i can do a lunch time talk on any of these issues . perhaps we can discuss some of these over a conference call . clearly , having vince kaminski in the room would be very important to me . as for schedules , the first 3 weeks of april are horrible . april 26 / 27 , may 3 / 4 are good for me . regards nalin at 06 : 56 pm 03 / 22 / 2001 , mack , iris wrote : > hi , > > as we briefly discussed , i spoke with one of my colleagues ( dr . > martin lin ) about your visiting enron to give a talk and to spend some > time with us to discuss you work in telecommunications , real options , > etc . > > martin and i are working on various broadband related problems . > > we thought it might be helpful if you let us know a bit more about > the following : > * when you want to come ( the research group has weekly > catered lunch on thursday and brown bag lunches on every other friday ) . > > * a description of what you want to talk about with respect > to telecoms , broadband , etc . > * who you would like to meet with me - vince kaminski ( our > boss ) , any other of our colleagues in research , broadband , etc . > . . . . . . . . . . . . . . . . . etc . > > > > > look forward to hearing from you . > > regards , > iris",0 +"Subject: re : invoice for energy derivatives courses i already did - you signed it this morning . thanks ! vince j kaminski 03 / 29 / 2000 12 : 33 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : invoice for energy derivatives courses shirley , please , pay . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 29 / 2000 12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - lacima @ compuserve . com > on 03 / 28 / 2000 02 : 49 : 43 pm to : shirley cc : vince subject : invoice for energy derivatives courses shirley , please find attached the invoice for the energy derivatives courses . if i should forward this to someone in accounts , please let me know who i should contact and i will take care of it . thanks , julie lacima consultants - enron 28 _ 03 _ 00 . doc",0 +"Subject: new research tool - too cool ! ! ! this tool is really a breakthrough . real - time off our new satellite controller , meteorological info from noaa ' s satellite ! ! ! simple and easy . just go to . . . further instruction ( there is only one instruction ) . . type in your station of interest , example : khou for houston , texas , lirf for rome , italy , eddh for hamburg , etc ( see attached city code list ) you will be constantly updated way before the competition ! enjoy . . .",0 +"Subject: re : real options vince , thanks again for coming to austin to speak with my class . i am sure that they appreciated hearing about the use of real options at enron , and i think it was a very fine way to finish the semester . along with my colleagues from finance , i appreciate the strong support that enron has provided to the college of business administration . we appreciate the relationship , and look forward to seeing you in austin again next year . jim",0 +"Subject: re : candidate evaluation , wendi germani pam , we don ' t think wendi has skills required for this job . vince from : pam wilson @ enron communications on 03 / 10 / 2000 12 : 27 pm to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , jonathan davis / hou / ect @ ect cc : subject : candidate evaluation , wendi germani please complete the attached form and also let me know if you have an interest in proceeding with wendi . thanks ! pam",0 +"Subject: research and development charges to gpg dawn : here is the original notification . i will also send you the one where vera says it was never done . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 14 / 2000 07 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kimberly watson @ enron 06 / 15 / 2000 03 : 26 pm to : kent miller / et & s / enron @ enron , martha janousek / et & s / enron @ enron , elaine concklin / et & s / enron @ enron , vera apodaca / et & s / enron @ enron , rod hayslett / fgt / enron @ enron , vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : research and development charges to gpg vince , krishna and i met to discuss the research and development cross charges to gpg for january through june . these charges are based upon a budgeted amount of allocating three resources to the gpg group ( two resources for revenue management and one resource for gpg marketing ) . we have utilized the r & d group some during the first half of the year , but not to the full extent of three resources . vince and krishna have agreed to reverse out some of the charges that were budgeted january through june . we will revisit this issue again toward the end of the year to determine if any adjustments are necessary for july through december . the budgeted amount january through june has been distributed between the nng and tw as follows : research and development budget ( $ 000 ) nng tw et & s january $ 46 . 7 $ 46 . 7 february $ 26 . 1 $ 20 . 4 $ 46 . 5 march $ 35 . 9 $ 10 . 2 $ 46 . 1 april $ 34 . 8 $ 10 . 2 $ 45 . 0 may $ 36 . 4 $ 8 . 8 $ 45 . 2 june $ 36 . 4 $ 8 . 8 $ 45 . 2 $ 274 . 7 out of the $ 274 . 7 budgeted for the first half of the year , $ 199 . 7 is to be reversed back to the research and development department . this reversal will occur in july . vince , vera apodaca ( ext . x 35980 ) will be our contact to help facilitate the reversal of these charges . elaine , the remaining $ 75 . 0 ( $ 274 . 7 - $ 199 . 7 ) is to be allocated with $ 50 . 0 going to the revenue management work order and $ 25 . 0 remaining in o & m . if anyone has any questions or needs additional information , please don ' t hesitate to call me ( x 33098 ) . thanks , kim .",0 +"Subject: manoj gupta - interview schedule attached you will find the interview packet for the above - referenced person . the interview will happen monday , april 16 , 2001 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sasha divelbiss 58714",0 +"Subject: maureen ' s presentation here it is !",0 +"Subject: invitation to sunday dinner with vince @ 6 . 30 pm hi steve & ben , we are planning an early sunday dinner ( one of the few evening slots that are free in vince ' s schedule ) at : diverso restaurant 85 piccadilly london wlv 9 hd tel : 020 7491 2222 it ' s just a few yards to the left of park lane hotel on park lane , close to hyde park corner underground and we ' ve been there before . vince would like to discuss the latest developments and it seems like the best opportunity to do so . please let me know if you can make it and i can make sure the table is booked accordingly . regards , anjam x 35383 p . s . vince will be staying at the park lane hotel , telephone number 0171 499 6321",0 +"Subject: joint probabilities michael tables of joint probabilities for scenario 3 ( 8 % improvement rate during the regulatory cycle ) are attached . call if you have any questions . bob x 35163",0 +"Subject: re : aiesec polska - eurolds 2000 szanowny panie kaminski ! ! ! bardzo dziekuje za okazana pomoc ! mimo wielu bledow , ktore popelnilismy , a przede wszystkim to , ze zglosilismy sie do pana astramowicza zbyt pozno , bardzo nam pomogl . european leadership development seminar 2000 w polsce sie odbedzie , i postaramy sie , zeby bylo to wydarzenie na wysokim poziomie ! ! ! jeszcze raz bardzo dziekuje i postaram sie aby nastepne mozliwe informacje o naszych projektach szybciej docieraly do firmy takiej jak enron , a w szczegolnosci do takiej osoby jak pan i pan jarek astramowicz . bardzo dziekuje z powazaniem andrzej wodnicki - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : awodni @ sgh . waw . pl cc : vince . j . kaminski @ enron . com date : 23 lutego 2000 09 : 37 subject : re : aiesec polska - eurolds 2000 > > drogi panie andrzeju , > > prosze powolac sie na mnie . > > w . kaminski > > > > > andrzej wodnicki on 02 / 22 / 2000 04 : 02 : 42 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : aiesec polska - eurolds 2000 > > > > drogi panie kaminski ! > > bardzo przepraszam za klopot . wiem , ze jest pan niezmiernie > zajetym czlowiekiem . jednak chcialem zapytac sie pana o jeszcze > jedna kluczowa dla nas sprawe , ze wzgledy na termin naszego > wydarzenia - 7 marzec 2000 . > > mianowicie , czy byloby mozliwe , aby w > rozmowie z panem astramowiczem powolac sie na pana . > wydaje mi sie , ze bardzo by nam pana nazwisko pomoglo . > bardzo liczymy na pana pomoc , > > > pozdrawiam > > andrzej wodnicki > > > > > >",0 +"Subject: norway visit : research agenda dear all , i would like to make myself available for some meetings at the oslo office during my visit on friday pm , monday and tuesday . i believe bjarne will be available on tuesday , if not monday , and so would like to arrange the trading and origination meetings for tuesday ( so that he can attend ) and maybe go through the energydesk issues on monday . i will also give a presentation , probably on monday . trading : options & volatility curves it would be useful to meet with the traders along with bjarne ' s team to help us improve our understanding of the valuation / hedging issues encountered in trading options ( both european and asian ) . i hope to discuss the vol curves and will bring the example of the recent work done for the uk electricity desk where a monthly volatility curve generator and initial half - hourly forward volatility curve have been developed . origination : any issues arising in complex deals ( e . g . dry reservoir , user - time contracts ) etc . perhaps with didrik . energydesk . com to support the on - going effort to ensure the accuracy of the energydesk . com systems , i hope to help james stephen nail - down the reasons for some of the discrepancies between the energydesk . com valuation and the oslo book ( for this i hope to meet with trond ) . exotic options : if everything runs smoothly , i plan to roll - out the new asian model which should also help us in improving our electricity volatility curve . i will be in the oslo office from friday afternoon , and available all day monday and tuesday . i will be staying at the grand hotel and probably contactable on my mobile : 07747 86813 . look forward to meeting you soon ! regards , anjam x 35383 p . s . i will be contactable on my mobile for any urgent queries from london customers : 07747 868131 , or reachable through catherine / maret ( x 2570 )",0 +"Subject: interview schedule for greg mikkelson attached please find the interview packet for the above - referenced person . the interview will happen tuesday , july 11 , 2000 . print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . liz alvarado 58983",0 +"Subject: multi trigger vince , jere asked that i forward you a copy of the draft presentation on the multi trigger transactions . please call if you have any questions . 54426 joana",0 +"Subject: brad romine greg , as you may know , brad romine ' s dot . com venture fell apart . the offer from enron looks much better now . i have arranged for him a number of different interviews ( including one with you ) . i think we should not be too punitive and give him the 2 nd chance . i am also setting up for him interviews with rac and ebs and he should be able to negotiate a good first rotation . please , give me a call if you have any other question . vince kaminski",0 +"Subject: my new position i wanted to submit my notice of rotation to the "" fundamental analysis "" group and thank the fx and country risk group for giving me an opportunity to work in such exiting learning environment . i really enjoyed being part of the research group and hope to keep all of the relationships i have developed throughout my rotation . i am looking forward to my new position as an opportunity to learn more about the company and to try my abilities in a new environment . "" fundamental analysis "" group is a new and developing group , which will give me an opportunity to develop and grow as an employee . i understand that it is my responsibility to train the individual who will be taking my current position . in an effort to make a smooth transition to my new rotation i will train the new individual and starting december 18 th will devote my free time to pursue my new job responsibilities . in agreement with maureen official start date of new rotation is january 2 nd 2001 . sincerely , yana kristal",0 +"Subject: projected fund giving george - here is one statistical method ( linear regression ) , applied to hosanna ' s fund giving . the method is deterministic , where contributions each sunday are attempted to be explained by significant events on the church ' s and members ' calendars , and the method shoudl be considered in contrast to an anecdotal one , where each sunday ' s giving might be estimated to be the average giving of the same sunday ( e . g . , each 2 nd sunday in january ) in the past . the following effects are estimated independently by the computer ( they add and subtract with each other accordingly ; some sundays can have more than one effect "" in play "" ) : 1 ) most positive for giving : an additional + $ 8 , 802 for special pastoral appeals ( 3 of them in the past 3 years ) 2 ) positive for giving : an additional + $ 2 , 551 easter and nearest - christmas "" sunday , "" an additional + $ 59 thanksgiving sunday , and a tiny additional + $ 1 each week pure time trend . 3 ) negative for giving : - $ 304 for sundays of monday federal holiday weekends , and - $ 9 during the summer ( june 1 - aug 31 ) 4 ) "" wave "" : there is an $ 80 per week "" wave "" - giving $ 80 higher one week , $ 80 lower the next , etc . . . the computer can explain roughly 60 % of the absolute variation in giving the past 3 years using this approach . keep in mind , much of the information , statistically , is captured in the pastoral appeals , easter and christmas sundays , and holiday weekends . the rest of the variation cannot be explained by this simple model ( i . e . , it looks like "" noise "" ) . here are the predictions for fund giving for the upcoming year . you can cut - and - paste these numbers to any file or spreadsheet you like . they may seem "" boring "" to you ; please remember they are the deterministic components of a process that involves a lot of volatility , and your church ' s actual experience will predictably be volatile . these numbers are as - if the "" means "" of experiences dependent on the "" standard deviations . "" 01 / 02 / 00 4611 01 / 09 / 00 4699 01 / 16 / 00 4394 01 / 23 / 00 4705 01 / 30 / 00 4701 02 / 06 / 00 4702 02 / 13 / 00 4703 02 / 20 / 00 4400 02 / 27 / 00 4710 03 / 05 / 00 4706 03 / 12 / 00 4708 03 / 19 / 00 4709 03 / 26 / 00 4710 04 / 02 / 00 4711 04 / 09 / 00 4712 04 / 16 / 00 4713 04 / 23 / 00 7265 04 / 30 / 00 4672 05 / 07 / 00 4717 05 / 14 / 00 4718 05 / 21 / 00 4719 05 / 28 / 00 4416 06 / 04 / 00 4717 06 / 11 / 00 4713 06 / 18 / 00 4714 06 / 25 / 00 4715 07 / 02 / 00 4716 07 / 09 / 00 4718 07 / 16 / 00 4719 07 / 23 / 00 4720 07 / 30 / 00 4721 08 / 06 / 00 4722 08 / 13 / 00 4723 08 / 20 / 00 4724 08 / 27 / 00 4725 09 / 03 / 00 4432 09 / 10 / 00 4742 09 / 17 / 00 4738 09 / 24 / 00 4739 10 / 01 / 00 4740 10 / 08 / 00 4742 10 / 15 / 00 4743 10 / 22 / 00 4744 10 / 29 / 00 4745 11 / 05 / 00 4746 11 / 12 / 00 4747 11 / 19 / 00 4748 11 / 26 / 00 4808 12 / 03 / 00 4750 12 / 10 / 00 4752 12 / 17 / 00 4753 12 / 24 / 00 7305 12 / 31 / 00 4711 best wishes , clayton vernon manager , research",0 +"Subject: re : paper - request ( informs meeting in san antonio ) erik , i regret to inform you i had to cancel my presentation . i am working on another presentation on the same topic for a different audience , and i shall send you the slides . vince kaminski erik pruyt on 11 / 28 / 2000 08 : 39 : 11 am to : vince . j . kaminski @ enron . com cc : subject : paper - request ( informs meeting in san antonio ) brussels , 28 / 11 / 2000 ref : md 29 price volatility and probabilistic methods in the energy market : current challenges dear sir , unfortunately i could not attent the informs 2000 meeting in san antonio . since i am very interested in the topic you presented there , i would really like to read the paper you presented or have a look at the slides you showed . could you please be so kind as to send me a copy of the paper ? or could you tell me where i might find your paper ( already published ) ? thank you so much . yours sincerely , erik pruyt free university of brussels = = = = = erik pruyt erik . pruyt @ vub . ac . be or erikpruyt @ yahoo . com vrije universiteit brussel , faculteit esp , dienst stoo - csoo pleinlaan 2 , 1050 brussel , belgium , tel : + 32 / ( 0 ) 2 629 20 64 private address : stockemstraat 14 , b - 3040 huldenberg , belgium tel : ( + 32 ) 2 / 6875257 handy : ( + 32 ) 496185687 fax : ( + 32 ) 2 / 6883760 do you yahoo ! ? yahoo ! shopping - thousands of stores . millions of products . http : / / shopping . yahoo . com /",0 +"Subject: e & p company model mark , did you have a chance to review the e & p company model ( the old cash flow mode ) and determine if it can be used by fred lagrasta ' group . please , let me know . vince",0 +"Subject: re : european energy 2000 , april , amsterdam angela , no problem . i shall be glad to do it . happy holidays if i don ' t hear from you . vince "" angela adedeji "" on 12 / 14 / 99 12 : 00 : 40 pm please respond to "" angela adedeji "" to : vince j kaminski / hou / ect @ ect cc : subject : european energy 2000 , april , amsterdam hi vince re : european energy 2000 , 3 & 4 april , amsterdam i hope all is well . i wondered whether or not you would be interested in chairing the stream of your talk ? i look forward to hearing from you soon . kind regards angela - attl . htm",0 +"Subject: greg whalley ' s new office location greg whalley and i have moved to the 33 rd floor . greg ' s new office location is eb 3324 - steno # 549 i ' m located at eb 3322 - steno # 598 many thanks , liz taylor",0 +"Subject: london meeting dear vince could you let me know when you are able to meet riskcare ? i will try to reach you in houston , otherwise i will give anjam ' s office a call tomorrow . regards manuel manuel rensink riskcare - financial technology services piercy house 7 copthall avenue london http : / / www . riskcare . com tel : + 44 ( 0 ) 20 7562 3400 fax : + 44 ( 0 ) 20 7562 3401 about riskcare since riskcare ' s inception in 1994 , we have specialised in providing pre - eminent services and pioneering tools to the financial markets industry . riskcare offers : * a range of hands - on technology services for systems implementation and operation , including development , integration , support , technical skills and software selection * a range of financial engineering services , including model validation , risk advisory , analytics integration , development of pricing models for derivative instruments and front office analytics such as willow , a revolutionary tool for option pricing",0 +"Subject: it compliance after 23 years of service to enron , alberto gude retired on april 30 , 2000 . on behalf of the many personnel that knew and worked with alberto , i want to thank him for his dedication to enron and also for his friendship and mentoring that he provided to so many . we wish alberto , his wife maria , and their children steven and michelle all our very best . following alberto  , s retirement , the following organizational changes will take place immediately within the it compliance group . andrew parsons , senior director , will be responsible for all corp . it compliance activities . andrew will report directly to me . mark thibodeaux , director , will continue working primarily on information security evaluations and technical reviews . mark has 16 years of experience as an it security expert and ten years as a cpa . stephen simpson recently joined it compliance as a director . steve came to enron with 8 years of experience in arthur andersen  , s computer risk management practice . steve will focus on application risk management . the corp . it compliance group is responsible for enterprise wide information technology reviews and it risk management compliance activities . these activities include ensuring that our systems and related processes are secure , available , operating with integrity and are adhering to audit standards developed in conjunction with arthur andersen . please join me in congratulating andrew , mark and steve on their new responsibilities .",0 +"Subject: departure of grant masson the research group : it is with a deep sense of regret that i announce that grant masson will be leaving the research group and enron , effective today . grant has been a very important part of the research group ' s growth and stability within enron and he will be deeply missed . we wish him the very best in his new venture and want to send him off with all the "" good "" wishes and support that he deserves . however , since i will be out of town all next week , we will postone the "" good luck and best wishes "" party for grant until sometime within the next 3 weeks . an announcement will be forthcoming at a later date . please take a minute to wish grant the "" best "" . sincerely , vince",0 +"Subject: re : gwen koepke i will see you on friday at 3 . if you would like for me to come before then , just let me know . - - - - - original message - - - - - from : kaminski , vince sent : wednesday , may 02 , 2001 3 : 01 pm to : labbe , anne cc : kaminski , vince subject : re : gwen koepke anne , thanks for contacting me about this . as a matter of fact , i wanted to talk to you about it today as this matter was outstanding for a long time . i think we should go ahead and adjust gwen to manager , effective march 1 . the compensation would be her current base plus 10 k . this is what we typically do when we promote an associate to a manager . such promotions take place in march and i think gwen should not be penalized for the inefficiency of her management ( i . e . my and maureen ' s procrastination ) . on unrelated and more serious matter . gary hickerson is the primary client for maureen ' s services . he communicated to me a few weeks ago that he is unwilling to underwrite maureen ' s position ( he is in general unhappy with her contribution ) . this means that maureen will have to find another sponsor or leave enron . given her abrasive and aggressive personality finding another internal customer will be quite a challenge . gary volunteered to pay a very generous severance to maureen from his budget . i would like to talk to you about it when you have a few minutes . vince from : anne labbe / enron @ enronxgate on 05 / 02 / 2001 10 : 34 am to : vince j kaminski / hou / ect @ ect cc : subject : gwen koepke vince , just wanted to touch base with you . i have tried to contact maureen so that gwen ' s title and salary can be adjusted to manager just as you requested , but have not heard any response from her . would you like for me to wait until i hear from maureen or should i go ahead and proceed in changing her title ? i just want to make sure that gwen is in the right peer group during prc . also , i am going to try and set up a meeting with you next week through shirley to discuss any buring issues that you are experiencing , and your expectations during prc . thanks , anne",0 +"Subject: phone number in france : mes amis , in case of emergencies , you can reach me after july 3 at 011 33 4 50 02 22 12 . france is 7 hours later than houston , i . e . 11 : 00 am in houston is cocktail hour ( 6 : 00 pm ) in france . affecteusement , grant .",0 +"Subject: elena chilkina hi",0 +"Subject: clean fuels - gpg business segment dwight and i are working to develop an updated valuation for the mtbe and methanol business segments . we would appreciate assistance from your group in assessing the market over the next 3 - 4 years . with the octane shortage this summer , and the strong gas and oil price environment , mtbe prices are well above budgeted levels . how will political / environmental issues affect mtbe prices over the next few years . methanol prices are also now very favorable , but it would seem that north american methanol producers will be disadvantaged if gas prices in na remain higher than the rest of the world . your thoughts on these and any other factors affecting prices would be most helpful . both dwight and i are available to meet with you or a member of your group as soon as convenient . thanks , sorry we missed you today . jng",0 +"Subject: fwd : billing question return - path : received : from rly - yao 3 . mx . aol . com ( rly - yao 3 . mail . aol . com [ 172 . 18 . 144 . 195 ] ) by air - yao 5 . mail . aol . com ( v 67 . 7 ) with esmtp ; mon , 10 jan 2000 07 : 03 : 24 - 0500 received : from abbott . office . aol . com ( abbott . office . aol . com [ 10 . 2 . 96 . 24 ] ) by rly - yao 3 . mx . aol . com ( 8 . 8 . 8 / 8 . 8 . 5 / aol - 4 . 0 . 0 ) with esmtp id haal 1942 for ; mon , 10 jan 2000 07 : 03 : 24 - 0500 ( est ) received : from sunphol . ops . aol . com ( sunphol . office . aol . com [ 10 . 5 . 4 . 200 ] ) by abbott . office . aol . com with smtp ( 8 . 8 . 6 ( phne _ 14041 ) / 8 . 7 . 1 ) id haal 1465 for ; mon , 10 jan 2000 07 : 03 : 22 - 0500 ( est ) received : from 0 by sunphol . ops . aol . com ( smi - 8 . 6 / smi - svr 4 ) id haa 28403 ; mon , 10 jan 2000 07 : 03 : 21 - 0500 message - id : from : to : date : 01 / 10 / 2000 20 : 04 : 28 reply - to : subject : re : billing question dear valued member ; thank you for taking time to write us . i apologize for the frustration you are experiencing with america online . i appreciate your patience and understanding regarding this matter . upon reviewing your account record there was a failed transaction on your account which was the amount of your subcription to aol annual plan , this bill was just been "" resubmitted "" on your next month billing date . so that we can answer your questions and concerns in a timely manner it is requested that along with your response , please include your correct last four numbers of your current payment method . you may of course contact our billing department directly at 1 - 800 - 827 - 6364 or 1 - 888 - 265 - 8003 toll free number between 6 : 00 am to 2 : 00 am est . seven days a week and they will be happy to assist you . i do apologized for any inconvenienced this matter has may caused you . we hope we have provided you with useful information about your inquiry . if you have any further questions , please feel free to write us back . take care and wishing you all the best and happiness in life . we greatly appreciate your aol membership and customer service is important to us . we hope that you were satisfied with the service you have received . marvin l . customer care consultant billing department america online , inc . - - - - - - - - - - original message - - - - - - - - - - from : vkaminski @ aol . com to : billingl @ abbott . office . aol . com field 1 = wincenty kaminski field 2 = 10 snowbird field 4 = the woodlands field 5 = texas field 6 = 77381 field 7 = 0057 field 8 = other ( please give details below ) field 9 = i have just sent you another message . i have inspected the bill summary for the last and current months , and it seems that my payment plan has been changed by you without my authorization . last year i was on a flat annual payment plan ( about $ 220 per year ) , paid in one installment . i did not agree to switch to any other plan , unless you asked me a question regarding the billing in a vague or deceptive way . i hope that you will look into this matter promptly and refund any excessive charges . w . kaminski field 10 = texas field 11 = other - see comments x - rep : 822 x - mailid : 583192 x - queue : 4 x - mailer : swiftmail v 3 . 50",0 +"Subject: invites for australian energy risk 2000 july 17 - 18 dear lucie , when i agreed to speak at the above conference , it was agreed that enron could bring another staff member to attend gratis . however , i noticed that enron is actually providing two speakers - dr vince kamainski and myself . it would be appreciated if we could instead of sending two staff members to the same seminar that enron sends one staff member to the aust energy seminar and one staff member to the risk 2000 - sydney seminar in august 22 - 23 . the length & pricing are similar for both the seminars . upon your reply , i will supply the names of the staff members , there is strong internal competition to go . thank you , raymond 715 pm 4 july "" lucie deathridge "" on 05 / 25 / 2000 09 : 30 : 25 am please respond to "" lucie deathridge "" to : cc : subject : australian energy risk 2000 thank you for agreeing to speak at the australian energy risk 2000 conference in sydney in july . last week i sent a speaker pack to you . i would be grateful if you would confirm receipt of this by return of email . in the event that you have not received it please let me know immediately and send me your full contact details . i am the co - ordinator of this conference and please do not hesitate to contact me if you have any queries . regards lucie deathridge conference co - ordinator risk publications ? tel : ( + 44 ) ( 0207 ) 484 9867",0 +"Subject: re : alp presentation fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" dennis w . loughridge "" on 04 / 30 / 2001 10 : 49 : 10 am please respond to to : cc : subject : re : alp presentation vince i will be attending the alp presentation on may 7 and would be pleased to join the team for dinner if it is not too late . thank you dennis loughridge dennis w . loughridge director of energy consortium rice university 713 - 348 - 2812 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , april 10 , 2001 8 : 16 am to : loughrid @ rice . edu cc : luigical @ rice . edu subject : alp presentation sorry , trying again . i probably got a wrong e - mail address and the original message was returned . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 10 / 2001 08 : 13 am to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: various market data charges to the research group for february 2001 clifford : in reviewing our february eis billing summary for co # 0413 , cc # 107043 , i have several questions . telerate : ( february charges : $ 3 , 032 , 35 ) i polled the group and only one person has asked for telerate and he is not shown being charged for it . that is jason sokolov . he would like to have access to telerate . if you could let me know how to get that for him . the largest percent of the telerate charges appear to be for maureen raymond , who says that she does not use telerate . could she be accessing some data that she does not know is telerate ? please let me know . if there are individual accounts for telerate the only one we need is for jason sokolov , unless maureen ' s charges are for something that she does not know is telerate . tanya tamarchenko does not need telerate and she has the second largest percentage of the charges . anyway , the only telerate subscription we need is for jason sokolov . reuters : ( february charges : $ 405 . 96 ) no one in research uses reuters . i believe most of the charges are for hector campos who used it when he was on the trading desk . when he rotated into the research group he did not need it any longer , but is still being billed for it . please remove from the research cost center . the following individuals are no longer with enron or no longer with research and their accounts should be removed from the research cost center . clayton vernon no longer with the research group remove his lim / lim / excel and lim core charges from the research cost center brad amoine no longer with enron remove his lim / lim / excel and lim core charges from the research cost center shalesh ganjoo no longer with the research group remove his lim and lim core charges from the research cost center i hope this is not too confusing ! please advise . thanks ! shirley crenshaw",0 +"Subject: linear programming software purchase vince , i ' d like to purchase some copies of the xpress lp solver for the gas storage optimization model . we have previously discussed the purchase of cplex , but after trialing both systems , have found some worthwhile advantages with xpress . if others find planner / cplex best suited to their application , i see no problem is their use of a different system - both have strengths , and it is likely that i would use planner / cplex myself on some future project if we were to have both systems available . xpress is particularly suited to my application because it handles special ordered sets . this is a very efficient way of representing the storage ratchets as the integer search process is able to use the extra information provided by the set , rather than just using binary integer variables to represent the ratchets . planner is a c + + interface for cplex . it has some significant limitations , and does not permit access to all cplex features . dash optimization have made the following offer : all software purchases made by enron this year will be at 30 % off the list price - we do not need to make a single purchase of any specific quantity of licenses to obtain this discount . 90 days of full maintenance services will be provided with the purchase . the emosl utility will be provided at no cost . the xbsl system will be provided at no cost when it is released in a few weeks time . for the gas storage optimization model , i would like to purchase : one development license , hyper version , with modeller , primal / dual simplex , mip search , dlls , emosl and xbsl when available . list price $ 10 , 000 discounted price $ 7 , 000 two run time licenses for above , list price total $ 8 , 000 discounted price $ 5 , 600 total cost $ 12 , 600 i ' ve used the usually security request system to set the purchase process going , should you agree to this . tom .",0 +"Subject: re : power play book vince , i ' m really feeling like a blind mouse about this because i haven ' t ( nor has christie , mike and mark ) read mr . mehta ' s comments . i believe that we would be better equipped to discuss the course of action that should be taken , if any , after we are well versed with mr . mehta and his perspectives . although , i do suggest that if we do decide to proceed , we should approach it by addressing the issues mr . mehta discussed under a different premise , i . e . sponsor a speaking engagement where one of the speakers ' topics would be related to mr . mehta ' s topic - allowing us to strategically tell our side of the story without it appearing that this is a planned rebuttal . we should specifically invite those who attended mr . mehta ' s engagement , but not limit it to this group . let ' s all discuss this once our group has read mr . mehta ' comments . regard , cindy vince j kaminski @ ect 10 / 12 / 2000 04 : 37 pm to : cindy derecskey / corp / enron @ enron cc : mark palmer / corp / enron @ enron , christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : power play book cindy , i had rather in mind targeting the same audiences to which mr . mehta spoke , not a general press release . i agree that a general message to the world would attract attention . vince from : cindy derecskey @ enron on 10 / 12 / 2000 03 : 55 pm to : vince j kaminski / hou / ect @ ect cc : christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect , mark palmer / corp / enron @ enron subject : re : power play book vince , you are a saint for lending me a copy of your book . i agree with you that we don ' t want increase there revenues even by a $ 1 . 00 , although my recommendation ( and mark palmer ' s as well ) is that we should pursue a rebuttal for the following reasons : as i mentioned i scoured the internet ( britannica . com , amazon . com , yahoo . com and dow jones ) and could not find one mention of the book , therefore mr . mehta ' s distribution must not be wide at all . consequently , his comments may not have reached a large audience . issuing a rebuttal , may in fact , draw more attention to the comments and issues then they are currently receiving . i believe we should proceed with caution , and respond accordingly ( with counter comments ) only when comments are solicited from us . so far , we have not received any telephone inquiries from media in relation to mr . mehta ' s enron bashing . may be we should ' leave the stones unturned ' . let me know what you think . also , please contact me when it is convenient for me to borrow the book from you . regards , cindy vince j kaminski @ ect 10 / 12 / 2000 03 : 38 pm to : cindy derecskey / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : power play book cindy , i got a copy of the book and another one is on the way from our officer in india . i can lend you the book and you can makes copies of the most important chapters . i don ' t think we should be buying too many copies and increasing the sales of the book . in general , i think that we should counter the presentations made by mr . mehta . the person in charge of our dhabol operation is a stanford graduate and maybe he could obtain an invitation to speak at the same forum and present the facts as they are . he should be here for the management conference . vince from : cindy derecskey @ enron on 10 / 11 / 2000 01 : 30 pm to : vince j kaminski / hou / ect @ ect cc : christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect subject : power play book good afternoon vince , christie patrick mentioned to me the conference that your wife recently attended at stanford . at this coference abahy mehta discussed his / her recently published book ' power play ' - that certainly does not flatter enron . i have conducted a search on amazon . com , britannica . com and dow jones and i am coming up empty handed . would you be kind enough to briefly trouble your wife to provide any other information she may remember , so i can narrow my search . i greatly appreciate it . regards , cindy",0 +"Subject: christmas baskets here is the final list for christmas baskets for this year with the exception of stinson gibner and vasant shanbhogue . any comments or questions please call x 34710 . thanks kevin moore we still have plenty of time . . . . . . deadline date : december 12 , 2000",0 +"Subject: i ' m in hospital ! ! ! i ' ve had a burst appendix and pneumonia . call debbie for details on 936 - 321 - 8836 ( home ) or 936 - 499 - 4996 ( cell ) or me directly on 713 - 598 - 0732 ( but i share a room with someone , so we may disturb them . . . . steve - - - - - - - - - - - - - - - - - tel : 713 - 345 - 8980 cell : 713 - 598 - 0732",0 +"Subject: wti maket maker simulation model john , we finished the version 2 of the simulation model which deals with the open - close trading versus the continuous trading in the previous version . i added the cummulative p / l as an output . there are a few apparent trading strategies from this model : 1 ) higher bid / offer spread , more profit 2 ) more daily # of trades , more profit 3 ) smaller net open positions allowed , more profit 1 ) and 2 ) are obvious , but 3 ) is more interesting . it means that we are better off if we do not allowed net open positions at end of the day . in a trending market , this makes an intuitive sense , for example , in the case of bull market we are short as a market maker and we can avoid the loss at the higher openning price by keeping zero or small net short positions . i have attached the model with this mail , and i ' ll be happy to discuss the model in more details with you . zimin",0 +"Subject: good meeting mark : i enjoyed our meeting last tuseday very much and i look forward to calling you again in a week or so . i think your idea of having me present to several senior enron executives including koenig and , perhaps , jeff skilling is very good . i discussed this a bit with vince kaminski on thursday as well and he expressed a strong interest in attending the meeting as well . regards ,",0 +"Subject: request for two powerpoint presentations from risk 2000 conferenc e - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 26 / 2000 10 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" bryson , allen "" on 06 / 26 / 2000 09 : 17 : 07 am to : "" ' vkamins @ enron . com ' "" cc : subject : request for two powerpoint presentations from risk 2000 conferenc e vince , i would like to receive copies of both your energy risk and weather presentations from the risk 2000 conference in boston . thanks , allen bryson conoco",0 +"Subject: re : houston trip i extended the rental on the apartment until the 20 th of november . shirley vince j kaminski 10 / 30 / 2000 01 : 31 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : houston trip shirley , i hope it ' s ok with the apartment company . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 01 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . - europe from : sharad agnihotri 10 / 30 / 2000 11 : 40 am to : paulo issler / hou / ect @ ect , zimin lu / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : houston trip hi all , i am hoping to come to houston from the 5 th to the 17 th of november . sorry about the short notice . looking forward to seeing you . sharad agnihotri",0 +"Subject: re : charm jim , charm looks more like a prototype that requires a lot of work to make it more a production tool . we have developed a similar model ( without some nice functionalities charm has ) in about two weeks , at request of rick jones who joined ees from hsb . rick worked on a similar model at his old company and wanted to have a similar tool for his projects with enron . i can tell you more about it when we meet ( hopefully ) later this week . i would tell willis that the model requires more work before enron can consider it as commercial product . vince james l bouillion 04 / 11 / 2001 06 : 52 am to : vince j kaminski / hou / ect @ ect cc : jonathan davis / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : re : charm vince , what feedback should i give willis on their charm product ? - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 04 / 11 / 2001 06 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - james l bouillion 04 / 11 / 2001 06 : 50 am to : "" bertil olsson "" @ enron cc : subject : re : charm no word yet . i will follow up with the attendees . thanks for taking thje time to make the presentation . "" bertil olsson "" on 04 / 10 / 2001 04 : 07 : 11 pm to : james . l . bouillion @ enron . com cc : subject : re : charm jim , any feed - back on our meeting ? we certainly appreciated the opportunity and the fact that the meeting was very interactive . regards , bertil the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person .",0 +"Subject: the main list should be : michael farmer - ceo merchanting ( michael . farmer @ mgmcc . co . uk ) thomas boettcher ( thomas . boettcher @ mgmcc . co . uk ) michael hutchinson - chairman mg ltd ( michael . hutchinson @ mgltd . co . uk ) tim jones - md mg ltd - head of trading ( tim . jones @ mgltd . co . uk ) russell plackett - head of options trading ( russell . plackett @ mgltd . co . uk ) christian schirmeister - director of marketing ( christian . schirmeister @ mgltd . co . uk ) alex heath - it development ( alex . heath @ mgltd . co . uk ) phil bacon - head of concentrates trading ( philip . bacon @ mgusa . com ) jo robertson - senior executive ( joe . robertson @ mgusa . com ) tom mckeever - chairman mg plc ( tom . mckeever @ mgplc . co . uk ) regards vince j kaminski 07 / 07 / 2000 22 : 04 to : lloyd fleming / lon / ect @ ect cc : maureen raymond / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : lloyd , yes , this would be very useful . i was told that we should not do any official business with mg until july 15 . i don ' t want to violate those rules of engagement and go beyond casual contacts . after the 15 th all the stops are off . vince from : lloyd fleming 07 / 07 / 2000 01 : 51 am to : vince j kaminski / hou / ect @ ect cc : subject : re : no problem - i do think this could wait until mg are more closely integrated in any case . a useful first step might be an email to relevant trading staff at mg outlining briefly what maureen does and how she can provide a service to them . would you like me to send her a list of potential people to email ? regards lloyd vince j kaminski 06 / 07 / 2000 23 : 39 to : lloyd fleming / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , maureen raymond / hou / ect @ ect subject : re : lloyd , i think that we can arrange a few video conference meetings instead . i don ' t see a justification for extending the stay over the weekend if we have an alternative solution . vince enron capital & trade resources corp . - europe from : lloyd fleming 07 / 06 / 2000 12 : 37 pm to : vince j kaminski / hou / ect @ ect cc : maureen raymond / hou / ect @ ect subject : vince i met maureen yesterday and had a useful discussion on her role within enron . i think it would be very helpful to promote the research group function of the company , particularly given maureen ' s background , if she could be introduced to some of the main traders down at mg . unfortunately she won ' t have time to meet with mg unless we can schedule some meetings on monday . would you be happy for her to extend her stay here till monday to allow the meetings to take place ? regards",0 +"Subject: off work all i will be taking the following days off work : thursday 9 th march ( all day ) friday 10 th march ( all day ) monday 13 th march ( all day ) tuesday 14 th march ( all day ) wednesay 15 th march ( morning only ) steve",0 +"Subject: continue enjoying iijournals - - renew today ! dear vince kaminski , we hope you are enjoying the benefits of receiving market - leading , rigorous and current research from industry experts through your subscription to derivatives quarterly . unfortunately , your subscription is about to expire ! by renewing now , your access to the web site and to your print copies will be uninterrupted . you can continue to get the exclusive research and practical advice for financial practitioners - written by the best minds in your business ! click here to renew today thank you .",0 +"Subject: more jcc the historical context . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 12 / 20 / 2000 05 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin kindall 11 / 28 / 2000 09 : 29 am to : russell dyk / corp / enron @ enron cc : subject : jcc writeup - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 28 / 2000 09 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin kindall 09 / 28 / 2000 04 : 44 pm to : james pyke / ap / enron @ enron cc : subject : jcc writeup here are the results that i sent to marc de la rouche . the answers to both questions below is "" yes . "" as mentioned earlier , i ' ll send the complete analysis along with explanations tomorrow . incidentally , here is a list of contacts regarding lng and jcc . its a bit dated , but may prove useful . clay harris lng houston ( 713 ) 853 - 1631 brad hitch lng houston ( 713 ) 345 - 5140 marc de la roche global fuels houston ( 713 ) 853 - 3949 victor santos global fuels singapore ( 65 ) 838 - 9041 li yin lim global fuels singapore ( 65 ) 838 - 9029 vv rao lng singapore ( 65 ) 838 - 9043 - kevin kindall - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 09 / 28 / 2000 04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : marc de la roche @ ect 06 / 06 / 2000 02 : 50 pm to : kevin kindall / corp / enron @ enron cc : grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : jcc that this email constitutes your groups ( vince kaminski ' s ) sign - off on using this hedge ratio to hedge jcc and jcc - based products ? thanks in advance , marc de la roche kevin kindall @ enron 06 / 06 / 2000 02 : 18 pm to : marc de la roche / hou / ect @ ect cc : grant masson / hou / ect @ ect subject : re : jcc & brent good afternoon . i have performed a review of the jcc data that you sent some time ago . the study was done using several different excel workbooks , and are available upon request . relevant charts are embedded in the powerpoint attachment . questions / comments welcome . - kevin kindall",0 +"Subject: re : enron alp vince , many thanks for the invitation . ? i ' m leaving for a conference in new orleans today and won ' t be in town . ? however , i ' d love to join you if dinner should happen again in the future . thanks again for all your support and interest in the alp program . ? i feel confident that this will be a great project . carrie at 10 : 03 am 1 / 24 / 01 - 0600 , you wrote : carrie , we have invited the team to dinner thursday , 7 : 00 p . m . would you loike to join us ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001 10 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - - pamela vande krol castro on 01 / 22 / 2001 06 : 18 : 16 pm to : ? ? kenneth . parkhill @ enron . com , vkamins @ enron . com cc : subject : ? enron alp dear alp company representatives : thank you again for your participation in the alp company day at rice university . we are pleased to inform you that your project proposal has been chosen for the 2001 alp program . the following students will be working on your project : ? ? calabrese , luigi ? ? ? ? ? ? ? luigical @ rice . edu ? ? ghose , ivy ? ? ? ? ? ? ? ? ? ? ? ? ? ghosei @ rice . edu ? ? ghosh , ronnie ? ? ghoshr @ rice . edu ? ? iqbal , syed ? ? ? ? ? ? ? ? ? ? ? ? iqbal @ rice . edu ? ? sud , pravas ? ? ? ? ? ? ? ? ? ? ? ? pravas @ rice . edu ? ? womack , charles cwomack @ rice . edu the faculty liaisons for your project are : ? ? barrett , deborah ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? barrett @ rice . edu ? ? uecker , will ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? uecker @ rice . edu ? ? loughridge , dennis ? ? ? ? ? loughrid @ rice . edu a representative from the student team will contact you soon to set up meeting time . if you need to contact your team , i have included the students ' email addresses . they check their email on a regular basis , so this is a good way to communicate with them . please let me know if you have any questions regarding this information . again , thank you for your interest in the jones school . best wishes for great project ! carrie chamberlin miller director of mba program rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 5260 fax : ( 713 ) 348 - 5251 e - mail : cmiller @ rice . edu http : / / www . ruf . rice . edu / ~ jgs / pamela castro mba program associate rice university phone : 713 - 348 - 6223 fax : 713 - 348 - 5251 e - mail : castro @ rice . edu = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = carrie chamberlin miller director of mba program jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ? ( 713 ) 348 - 5260 fax : ? ( 713 ) 348 - 5251 e - mail : ? cmiller @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: the garp 2001 convention : invitation to speak invitation to speak garp 2001 the 2 nd annual risk management convention 13 th & 14 th february , 2001  ) marriott world trade center , new york dear kaminski further to my telephone conversation today with your secretary , shirley crenshaw , and on behalf of the global association of risk professionals , i have great pleasure in inviting you to speak at our 2 nd annual risk management convention  ) garp 2001 . this event has rapidly establishing itself as the risk management industry  , s most important meeting point . garp 2000 reflected the key concerns of risk management experts world - wide , with over 400 attendees in its first year . three simultaneous streams address traditional pricing and risk management techniques , along with specialised streams addressing new sectors , such as the corporate world and the insurance industry . with a speaker panel of over 55 senior and executive financial professionals from investment banks , regulatory bodies , asset management firms , academics , insurers / re - insurers , corporate and system providers this is the financial risk management event of the year . key areas that this convention will consider include market risk ( stress testing , liquidity , jump diffusion , evt ) , credit risk ( regulation , modeling , stress testing , credit portfolio management , credit derivatives ) , operational risk , ( regulation , data , modeling , validation , evt ) advanced asset & liability management , corporate / energy risk management and the insurance & capital markets . from my research and discussions with experts in this arena your name was highly recommended as a speaker for this event . below is the stream on corporate / energy risk management and i had in mind one of the sessions below for you . also , the topic titles are provisional and i am open to suggested alterations . corporate / energy risk management modelling corporate risk  ) risk management from a shareholder value perspective measuring energy risk  ) tackling price volatility , adapting var , scenario modelling and regulatory requirements forward pricing  ) construction of the forward curve , correlations , transparency issues the volatility challenge  ) modelling price volatility and examining the new products designed to stabilise volatility energy credit risk management garp is a not - for - profit , independent organisation of risk management practitioners and researchers from leading financial institutions world - wide . garp  , s mission is to facilitate the exchange of information , developing educational programs and promoting standards in the area of financial risk management . for more information please refer to our web site : www . garp . com i sincerely hope you will be able to accept this invitation and i look forward to hearing from you in due course . should you have any questions please do not hesitate to contact me , otherwise i will call you again on to discuss this further . best regards andreas ps i have also attached a copy of garps 2000 program for your attention . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900 - draft programme . doc - g 2000 b & wlowr . pdf",0 +"Subject: eol wti trading simulation - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 12 / 22 / 2000 01 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 12 / 22 / 2000 01 : 24 pm to : ted murphy / hou / ect @ ect cc : subject : eol wti trading simulation ted , maximum daily loss was $ 12 . 2 mm on a daily move of $ 1 . 74 when we would have started the day already near the position limit of 5 mm bbl . - - stinson",0 +"Subject: power spread option - curve access request kevin , i am helping doug for building a model to price power spread options he saw in the market . this includes power capacity , transmission , heating rate options , etc . i do not have the access to the power curves in m : \ power 2 \ region as i used to . i need your permission to regain the read - only access to the curves . thanks in advance . zimin lu research x 36388",0 +"Subject: cera conference call : mexican energy in transition - - update - cera conference call cera conference call : sent tue , november 07 , 2000 title : cera conference call : mexican energy in transition - - update author : latin america energy team e - mail category : conference call product line : latin american energy , url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1414 , alternative url : latin america energy conference call and web presentation a cambridge energy research associates conference call & web presentation topic mexican energy in transition - update * cera ' s view on the fox administration * cabinet announcements * mexico ' s energy sector dynamics format at the time listed below , our speakers will address this topic for approximately 30 minutes , with accompanying graphics presented on the internet , followed by an open question and answer period . speakers sondra scott , cera director , latin american energy time 11 : 00 a . m . eastern , thursday , november 16 , 2000 eligibility clients eligible to participate in this conference call are those who subscribe to the latin america energy retainer advisory service . to enroll to enroll , please contact ms . nelly rivera via fax at ( 617 ) 576 - 8763 , or enroll via e - mail at nrivera @ cera . com before 4 : 00 p . m . , wednesday , november 15 , 2000 . audio netscape navigator 3 . 02 or higher ; or sun hot java ( tm ) * close all desktop applications and disable your screen saver technical assistance u . s . callers : if you are experiencing difficulties during the call , you may signal for technical assistance by pressing * 0 ( star , zero ) on your telephone keypad after you have connected to the audio portion of the conference . international callers : please re - dial and ask the operator for assistance before giving the confirmation code . a recording of this call ( audio only ) will be available until december 16 , 2000 . to access this recording , please call 1 - 888 - 203 - 1112 ( within the u . s . ) or ( 719 ) 457 - 0820 ( outside the u . s . ) . please use confirmation number 403120 to access the call . for more information , please contact nelly rivera via e - mail at nrivera @ cera . com or via telephone at ( 617 ) 441 - 2642 . * * end * * follow url for html version of this message only . account changes to edit your personal account information , including your e - mail address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www . cera . com / tos . html questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: re : lost cell telephone thanks ! chris samaniego on 12 / 18 / 2000 03 : 06 : 09 pm to : "" ' shirley . crenshaw @ enron . com ' "" , enron cc : subject : re : lost cell telephone request completed . chris samaniego account associate houston cellular corporate accounts petrochemical vertical ( 713 ) 562 - 2995 cellular ( 713 ) 345 - 7183 enron direct ( 713 ) 646 - 2415 fax enron @ houstoncellular . com e - mail samaniec @ houstoncellular . com e - mail samaniec @ bellsouthips . com interactive pager > - - - - - original message - - - - - > from : shirley . crenshaw @ enron . com [ smtp : shirley . crenshaw @ enron . com ] > sent : monday , december 18 , 2000 2 : 19 pm > to : enron > subject : lost cell telephone > > hello : > > vince kaminski left his cell phone on the bus last friday . he has > contacted > the bus line , but the person in charge of the lost and found is not in the > office today . > > if there any way that we can put a hold on this telephone until he can see > whether it has been turned in or not ? > > the cell # is : 713 / 410 - 5396 and the account # is : 88563580 . > > please let me know as soon as possible . > > thanks ! > > shirley crenshaw > 3 - 5290 > ebl 961 > shirley . crenshaw @ enron . com > >",0 +"Subject: re : fw : a request from uc hicago student laura , we shall have phone interviews with both candidates you brought up to our attention . vince from : laura howenstine / enron @ enronxgate on 02 / 28 / 2001 04 : 05 pm to : vince j kaminski / hou / ect @ ect , ravi thuraisingham / enron communications @ enron communications cc : subject : fw : a request from uc hicago student hi vince and ravi , here is another student from univ . of chicago ' s financial mathematics program who is interested in enron . his resume is attached at the bottom . thanks . regards , laura - - - - - original message - - - - - from : "" laura howenstine "" @ enron e + 40 enron @ enron . com ] sent : tuesday , february 27 , 2001 11 : 16 am to : howenstine , laura subject : fwd : a request from uc hicago student > from : "" ramaswamy garimella "" > to : lhowenstine @ hotmail . com > cc : ramaswamy _ garimella @ hotmail . com > subject : a request from uc hicago student > date : tue , 27 feb 2001 01 : 08 : 00 - 0600 > > hello ms . laura howenstine , > > my name is ramaswamy , and i am student of the ms financial > mathematics program at the university of chicago ( uc ) . i found your > address in the uc alumni gateway . > > i am interested in the associate position at enron , and would like > to request you for any information that you can share with me in > this respect . please find my resume attached to this message . > briefly , i have an mba - finance from smu - dallas , and have > extensive experience in it . currently , i am learning risk > management / derivative pricing in the ms financial mathematics > program at uc . > > you are the first alumni that i sought for informational help . so , > please excuse me for any mistakes in protocol . please reply me at > your convenient time . thank you very much . > > sincerely , > ramaswamy garimella . > > > get your free download of msn explorer at http : / / explorer . msn . com - resume . doc",0 +"Subject: ljm vince / stinson : the following is an update on ljm deal : 1 ) i participated on a conference call with aa ( jitendra and others ) and our accounting / credit group ( wes , bill bradford and others ) yesturday , in which we discussed the best approach for definining credit reserves at year - end for the puts we own . 2 ) a big chunck of the meeting was dedicated to explain aa the details of the deal . little progress was made on achieving the meeting ' s goal . 3 ) apparently , accounting did want to expose the calculation we made for puts value that considers credit risk - the two factor model we developed . that line of action was implied on a pre - meeting we had early that morning . from my understanding , accounting argues that we should not make any credit reserve because we could not liquidate our position by year - end . 4 ) at a certain point jintendra suggested me to use a two factor mc - simulation for calculating the position with credit risk . the approach is actually a more simplified version of the model we have . i and nobody mentioned the results we got from our 2 - factor model . 5 ) at that same afternoon i knew from accounting that we are in a process of unwinding our position . these are the main points . please let me know if need more details . paulo issler",0 +"Subject: re : stanford project nick , thanks for your message . my family is in houston for the christmas holidays and this means i am not coming any time soon to stanford . i shall probably visit the campus for the parents weekend . let ' s plan to meet for dinner then . i am very glad that you have recruited the 2 nd phd student for the research project . we are discussing internally what would be the best topic ( s ) for the project and we should be ready to talk to you in the nearest future about it . it makes a lot of sense for you to visit enron to finalize the selection of the research topics . we shall be glad to take both eric and giuseppe as summer interns . everybody was immensely impressed with giuseppe and we shall welcome him with open arms . i shall get in touch with you in the beginning of january to finalize the arrangements for your trip and our meeting at stanford . vince nick bambos on 12 / 20 / 2000 12 : 14 : 40 pm to : vince . j . kaminski @ enron . com cc : stinson . gibner @ enron . com subject : stanford project hello vince and stinson , first of all , best wishes for happy holidays ! ! ! ! if you are in the stanford area during the holidays , let ' s get together some time to have dinner . i have formally established the project - thanks again for funding it - and i have also recruited the second phd student . his name is eric cope , and he is a top - notch student , very mature , and entrepreneurial ! we have started working on some interesting problems in this area . i would hope that eric could spend the coming summer at enron to get immersed into the "" problem / opportunity generation environment . "" that really helps the student to develop a realistic vision about their research . perhaps , our whole team could visit enron again some time in the next quarter , say in march or so , to discuss the research issues we are pursuing . and of course you could visit us before that too . with my warmest wishes , nick",0 +"Subject: hrgovcic , hrvoje please incease the bonus for hrgovcic in vince kaminski ' s research group for a total of $ 75 , 000 . the difference of $ 47 , 500 should be charged to jeff shankmans cost center . this request was prompted by jeff shankman and vince kaminski . norma villarreal ews generalist x 31545",0 +"Subject: re : your presentation vince , i ' m very happy you found the presentation useful . i ' m working very closely with adam kulick who you probably know . please let me know if you have any questions or if you have any difficulty opening the file . best regards , alla - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : monday , june 19 , 2000 1 : 43 pm to : gil , alla cc : vince j kaminski subject : your presentation alla , i enjoyed your presentation at risk 2000 last week . i would appreciate an electronic copy of the documentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com - riskcongress . ppt",0 +"Subject: enron wholesale services legal department as a follow - up to the recent enron corp . memorandum forming enron wholesale services ( ews ) , effective today , we have reorganized the wholesale services legal department . the goals in reorganizing the department are as follows : ( i ) align the legal department as closely as possible with the business units , ( ii ) speed the flow of legal technology across the business units , and ( iii ) achieve greater efficiency and consistency across the organization . to this end , a legal policy group will be formed for ews legal , which will include lance schuler , enron americas ; mark evans , enron europe ; mark taylor , enron net works ; alan aronowitz , enron global markets ; julia murray , enron industrial markets ; and bruce lundstrom , enron global assets . the organization chart for the ews legal department is attached . more comprehensive organization charts will follow for each group . mark frevert and mark haedicke",0 +"Subject: vmi agreements hi richard , here is a marked up version from our lawyer . please have your people look at it and if it seems fine make the changes and send a signed copy back to me . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 06 : 21 pm - - - - - mark holsworth @ enron 02 / 17 / 00 04 : 10 pm to : ravi thuraisingham / enron communications @ enron communications , gene diers / corp / enron @ enron cc : subject : vmi agreements please find attached my redlining of the vmi agreelment . please review it and send it to the vendor for their review .",0 +"Subject: venue details for energy derivatives and weather derivatives course and workshops the venue details for the courses are the following : ? city : ? houston hotel : ? hyatt regency houston address : ? located in the center of downtown houston 1200 louisiana houston , tx ? 77002 usa ? telephone : ? + 1 713 654 1234 fax : ? + 1 713 951 0934 ? we have ? been offered a room rate of us $ 199 a night . ? your company may be able to obtain a better quote , by contacting them directly . ? ? however , at reservations , they may not have the course name and information logged into their system yet because this is being handled directly by their catering manager . ? if you would like us to make your hotel reservations , we would need your arrival date and departure date . ? ? the ? itinerary for each day of the course is as follows : ? 9 : 00 ? ? ? start 10 : 30 ? coffee break 12 : 30 ? lunch 15 : 30 ? coffee break 17 : 30 ? approximate finish ? course format will consist of segments of lecture followed by computer based workshops ( two a day ) . ? if you need anything further , please contact us . ? sincerely , julie ?",0 +"Subject: position report for dual trigger product vince , i have enclosed a summary of our proposed approach on calculation of notional and the greeks for dual trigger option portfolio . please let us know your thoughts / comments . amitava",0 +"Subject: telephone interview with the enron research group good morning richard : your resume was forwarded to vince kaminski and the research group and they would like to conduct a telephone interview with you at your convenience . please give me some dates and times that you would be available and i will coordinate the schedule . also , the telephone number you wish to be contacted at . the telephone interview will be last approximately an hour and the interviewers would be : vince kaminski managing director , research stinson gibner vice president , research vasant shanbhogue vice president , research thanks richard and we look forward to hearing from you . regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: wharton collaborative research here is a short note on potential research with wharton . please review and edit and then we can send some indication to the wharton guys . - - - - - - - - - - the objective would be to define the amount of risk an enterprise can take , and the difference between this and the actual amount of risk the enterprise chooses to take based on the capital structure and reporting structure . in particular , one can view enron as a hierarchy of companies , and assuming we can separately quantify the risks of each unit , what framework would one use to analyze risk at enron ? a related question is how one should represent risks in the different units ? risks may be of different types - - - short - term volatility risk , catastrophic risk , liquidity risk , etc - - - what should one focus on for a first cut ? another related question is to decide on the optimal amount of insurance both at the unit level and the enterprise level , and relate the decision to get insurance to the cost / benefit of insurance .",0 +"Subject: re : interview schedule for iris mack oops ! i guess you were supposed to know that she is coming this friday , the 8 th of december . sorry ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 05 / 2000 08 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 12 / 05 / 2000 08 : 41 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : interview schedule for iris mack shirley , what day is she coming ? vince shirley crenshaw 12 / 04 / 2000 01 : 36 pm to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , zimin lu / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : subject : interview schedule for iris mack below is the interview schedule for iris mack . i will give your her resume on thursday . 8 : 30 am vince kaminski 9 : 00 am stinson gibner 9 : 30 am tanya tamarchenko 10 : 00 am zimin lu 10 : 30 am vasant shanbhogue 11 : 00 am molly magee thanks ! shirley",0 +"Subject: tiger team hi vince ! attached is part 1 for the "" tiger team "" application . nb : can shirley please fill in your fax number ? thanks ! - - christie .",0 +"Subject: organizational announcement in case you have not already heard through the extensive grapevine , i am indeed leaving the company to take a challenging position in product development for panamsat , the satellite communications company . i would like to thank all of you - many friends that i ' m leaving behind at enron . please stop by and visit when you ' re in the northeast ( i ' ll be working in greenwich ct ) , and my permanent email address is dinos @ oskar . uchicago . edu all the best , dinos",0 +"Subject: re : uk : reconciling the spreadsheet and risktrac var numbers hi , tanya : the factor loading results for the eff _ dt = ' 12 - dec - 2000 ' are available on the rms _ stage database . the parameters being used : effective _ date = ' 12 - dec - 2000 ' start _ date = ' 12 - sep - 2000 ' end _ date = ' 12 - dec - 2000 ' please check the result in the database with : factor _ def _ id = 1510 basis _ map _ id = 1562 corr _ def _ id = 1280 notice : this is only a testing result ! jin tanya tamarchenko 12 / 15 / 2000 05 : 20 pm to : debbie r brackett / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , rabi de / na / enron @ enron , jin yu / hou / ect @ ect , wenyao jia / hou / ect @ ect , ganapathy ramesh / hou / ect @ ect subject : re : uk : reconciling the spreadsheet and risktrac var numbers debbie , we asked dba to refresh stage this monday . it was refreshed on thursday . jin is running vatrfacs today ( friday ) to create correlations and factors . then , according to our plan , we will ask ramesh to run var on these inputs . we will send the inputs to you to run var in the spreadsheet and reconcile the results for uk . tanya .",0 +"Subject: re : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford hi ben , i think i have read all the papers that are to be used in the comparative model study to be sent to professor duffie at stanford . these documents are all listed below . please let me know if i have omitted any ( however , don ' t get the impression that i am begging for more papers to read ) . now i will try to transform my notes into a draft for professor duffie . thanks , iris list of papers for comparative model study 1 . actively managing corporate credit risk : new methodologies and instruments for non - financial firms by r . buy , v . kaminski , k . pinnamaneni & v . shanbhogue chapter in a risk book entitled credit derivatives : application for risk management , investment and portfolio optimisation 2 . neural network placement model by george albanis , enroncredit ( 12 / 22 / 00 ) 3 . pricing parent companies and their subsidiaries : model description and data requirements by ben parsons and tomas valnek , research group 4 . a survey of contingent - claims approaches to risky debt valuation by j . bohn www . kmv . com / products / privatefirm . html 5 . the kmv edf credit measure and probabilities of default by m . sellers , o . vasicek & a . levinson www . kmv . com / products / privatefirm . html 6 . riskcalc for private companies : moody ' s default model moody ' s investor service : global credit research 7 . discussion document : asset swap model by ben parsons , research group ( 4 / 20 / 01 ) 8 . asset swap calculator : detailed functional implementation specification ( version 1 . 0 ) by ben parsons , research group 9 . discussion document : live libor bootstrapping model by ben parsons , research group ( 4 / 20 / 01 ) 10 . the modelling behind the fair market curves : including country and industry offsets by nigel m . price , enron credit trading group 11 . pricing portfolios of default swaps : synthetic cbos - moody ' s versus the full monte ( carlo ) by nigel m . price , enron credit trading group 12 . placement model vl . 0 : discussion document by ben parsons , research group , 2000 13 . credit pricing methodology - enroncredit . com by ben parsons , research group 14 . correlation : critical measure for calculating profit and loss on synthetic credit portfolios by katherine siig , enron credit group 15 . discussion document : var model for enron credit by ben parsons , research group , ( 1 / 3 / 01 ) 16 . methodology to implement approximate var model for the credit trading portfolio by kirstee hewitt , research group",0 +"Subject: fas 133 working group meeting - energy issues 9 / 20 dear working group participant we are stating up the garp fas 133 working group meetings again . the next meeting is on wednesday september 20 from 6 : 30 - 8 : 30 central time in houston . phone - in will be provided . greetings from garp ! we are having the next meeting september 20 th at enron , from 6 : 30 pm until 8 : 30 pm . due to security we need everyone to rsvp , including the names of any guest they may be bringing . please rsvp to rita . hennessy @ enron . com . the meeting will cover sfas 133 and related risk management issues . sajjad rizvi and phillip merrill ( garp chairman relating to sfas 133 ) will be presenting . attendence is anticipated to include risk control / accounting / and quantitative analyst . below is the following agenda : "" fasl 33 and beyond ; an update on sfas 138 and eitf 98 - 10 "" overview of ? 4 major amendments to sfas 133 , that were made in 138 , accounting for certain derivative instruments and certain hedging activities impact of the expanded definition of normal purchase normal sales on the commodity transactions . update on all the recently finalized implementation issues from dig since the last garp meeting in may / june 2000 . discussion on ? eitf 98 - 10 issues on energy related contracts . ? ? ? eitf 00 - t - capacity ? contract subject to ? lease accounting treatment under sfas 13 . ? ? ? eitf 96 - 17 - power contracts - long term ? ? ? eitf 91 - 6 - ? power contracts - long term outline garp ' s role and methodology in dealing with the fasb regarding energy related issues overview of fasb and dig rule making process and how garp can make impact discussion to find common ground on issues relating to this new accounting rule outstanding issues in the energy industry , including capacity sales transactions , book - outs etc . prioritizing issues explore various positions and how to take next steps the issues presented by sfas 133 are very dynamic and the presenters have requested that if you would like a particular issue raised at this meeting , please direct your interests and questions to sajjad rizvi at lima @ flash . net , or call sajjad at 281 - 579 - 3410 again , i would like to extend a thank you to our presenters and i look forward to your attendence . regards , frank hayden director - garp houston chapter",0 +"Subject: don ' t forget - coffee colloquium this morning ( 4 - 25 - 01 ) last one of this academic year students , faculty , and staff , don ' t forget to participate in the coffee colloquium this morning ( 4 - 25 - 01 ) from 9 : 45 to 10 : 45 held outside room 124 . this will be the last coffee colloquium of this academic year . hope to see you there . the coffee colloquium is an informal gathering which will allow faculty , administration , and students an opportunity to talk , exchange ideas and get to know each other better . the jones school coffee colloquium will be a regular gathering every wednesday ( same time , same place ) unless there is another scheduled event ( dean ' s lecture , exam day , holiday ) . we usually have coffee , tea , juice , soft drinks , and some light snacks available to all who participate . kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: re : approval is overdue : access request for stewart . range @ enron . com i will ask him which specific directories he needs to access . - - stinson vince j kaminski 11 / 22 / 2000 08 : 08 am to : stinson gibner / hou / ect @ ect cc : subject : approval is overdue : access request for stewart . range @ enron . com stinson , should we do it ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 22 / 2000 08 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - arsystem @ mailman . enron . com on 11 / 21 / 2000 07 : 04 : 54 pm to : vince . j . kaminski @ enron . com cc : subject : approval is overdue : access request for stewart . range @ enron . com this request has been pending approval for 2 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000007876 approver : stinson . gibner @ enron . com request create date : 11 / 20 / 00 2 : 36 : 29 pm requested for : stewart . range @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: real options conference programs ( ucla , july 11 - 14 ) please find attached the programs for the two back - two - back conferences on real options at ucla ( you may also download them from www . realoptions . org and www . rogroup . com ) . the two conferences are separate but complementary events . the first conference , co - sponsored with accenture and morgan stanley dean witter , on july 11 - 12 , is a professional conference on real options valuation in the connected economy : high tech , pharma , energy , corporate valuation & strategic / portfolio management . for information and online registration see www . rogroup . com . the second is the 5 th annual international conference on real options : theory meets practice ( the annual industry event where academics and practitioners get together to share the latest developments on theory and applications ) , co - organized with the anderson school at ucla on july 13 - 14 . for information and online registration see www . realoptions . org between the two complementary events , we are pleased to present an extensive array of practitioner and cutting - edge academic presentations , sharing of experiences by corporate executives , and panel discussions by experts from leading organizations and universities . our keynote speaker this year will be eduardo s . schwartz of ucla . interested participants must register for the conference online www . realoptions . org ) and indicate hotel preferences by may 31 or asap . we look forward to seeing you at this exciting event , and would appreciate if you share this with interested colleagues . lenos trigeorgis - 5 2001 . doc - 5 2001 . doc",0 +"Subject: re : get together this coming tuesday ? dale , i can reserve 2 to 2 : 30 time slot but there is really not much that i can tell you at this point . the commercial groups are still interested and are moving towards the test of the package . as soon as they will decide to move ahead , we ( research ) shall be involved , helping to evaluate the product . as i have said , we are not the decision makers in this case . i think that we should allow simply the process to run its course . vince "" dale m . nesbitt "" on 04 / 30 / 2001 05 : 59 : 30 pm please respond to to : cc : subject : re : get together this coming tuesday ? vince : i will call tomorrow in the morning . lunch or right after lunch would be great . how would 100 pm work for you ? dale - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , april 30 , 2001 3 : 07 pm to : dale . nesbitt @ marketpointinc . com cc : kimberly . watson @ enron . com ; vince . j . kaminski @ enron . com subject : re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: re : book cover habiba , thanks for this , but i haven ' t heard a peep out of them yet , and i ' m concerned since the book and cover are going to print in about a week . ? is it possible for me to contact them ? ? thanks , julie - - - - - original message - - - - - from : habiba . bayi @ enron . com to : julie @ lacima . co . uk sent : wednesday , september 27 , 2000 2 : 46 pm subject : re : book cover julie , i have forwarded your e : mails and information to london . ? they now have responsibility for this project and they would be making the necessary decisions . ? i have given them your contact information so that they can coordinate efforts with you . thank you . habiba "" julie "" on 09 / 27 / 2000 08 : 21 : 54 am to : ? ? cc : subject : ? book cover habiba , could you please let us know if we can use the book cover on our web ? page ? we would like to put this on our web site next week . please let us know . thanks , julie",0 +"Subject: re : mathworks molly , i met lou in the building lobby last wednesday and he suggested that he ( or his representatives ) join the mathworks presentation to my group ) . it ' s a good software package for mathematical modeling , but there is a limit to the number of different installations any group can productively use . i shall take a look at some new features they offer and decide whether it ' s worth the effort . vince kaminski lou casari @ enron communications 09 / 20 / 2000 02 : 10 pm sent by : molly carnes @ enron communications to : vince j kaminski / hou / ect @ ect cc : subject : mathworks do you know this person or this company ? they are want to set an appointment with ebs and i believe , are wanting to meet with you , also . any feedback ? thanks . molly carnes for lou casari enron broadband services 713 - 853 - 1467 , room eb 4486 a molly _ carnes @ enron . net - - - - - forwarded by molly carnes / enron communications on 09 / 20 / 00 02 : 09 pm - - - - - scottw @ mathworks . com 09 / 20 / 00 08 : 46 am to : lou casari / enron communications @ enron communications cc : subject : we ' ll be in houston hello mr . casari : myself and our energy trading financial team will be visiting with the r & d group at enron the week of 10 / 16 / 00 . they have several applications can be dramatically improved with our tools . we are very interested to understand the bandwidth trading market , to see if any additional challanges can be overcome with our tools . i would like to understand your challanges of modeling , simulating and deploying applications to control risk . are you available to discuss these items prior to our visit ? i look forward to hearing from you . thanks scott wakefield",0 +"Subject: hello guys vince and stinson , just got a copy of the attached paper and thought it may have some interest for you guys . on another note , i am putting together a workshop in the spring on the new economy and business education and will be seeking out some enron network people to join in the discussion ( 2 - hours on friday march 2 nd ) . i ' ll let you know more as we work through the details . the idea is to "" brainstorm "" about the new world you guys work in every day and its implications for what we should be doing . hope this is interesting to you and that you ' ll want to spend the day with us . take care and enjoy the weekend . john - risk . pdf john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : houston trip dear vince / christie , thanks for coming to philadelphia to present an overview of the projects . we enjoyed meeting you and your colleagues and look forward to working with enron . i would also like to pass on my team ' s appreciation for the dinner as well . we wanted to give you an update on our project and get some feedback and additional information prior to our upcoming visit to houston on january 19 th . our project is going to be geared to the 3 rd option you mentioned . we plan on addressing some part of the retail energy services business . we are considering two options regarding this topic and would like to pursue either ( i ) how customers are acquired and recommending new processes and ways to serve retail customers , or ( ii ) studying the supply chain and coming up with recommendations for areas for further investments . however , we would like to get some more information on the retail energy services before truly scoping the project . we are also very open to suggestions , especially if you had a much broader or different scope in mind ; so please let us know . we have not yet reviewed the introductory information received last week , but here are the questions we have specific to the retail energy services unit : can we look at its overall business plan or a more detailed summary than is in the annual report ? what is the pricing philosophy / overall structure ? who are the customers and how are they acquired ? what would the customers be doing if they did not work with enron ? what are the international expansion plans and capabilities ? is there any important regulatory summary information we can have ? if this information is not already covered in the review material you sent , will you be able recommend other sources where we may find such information ? after we have reviewed the material sent to us recently , we may want to schedule a phone call with you and / or one of your colleagues directly involved in the retail energy services business . i would like to call you in the new year to discuss this further . in the meantime , please feel free to call me at ( 215 ) 546 - 9416 if you need any information . regards , retail energy services tiger team ram dennis jason omar steve clay",0 +"Subject: research prc please make sure that vince has the new location on his calendar - i think shirley is out of the office - - - - - - - - - - - - - - - - - - - - - - forwarded by norma villarreal / hou / ect on 12 / 07 / 2000 04 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - ramona perkins @ enron 12 / 06 / 2000 05 : 38 pm to : shirley crenshaw / hou / ect @ ect cc : norma villarreal / hou / ect @ ect , susan wimberley / hou / ect @ ect subject : research prc the prc meeting for research has been moved to eb 42 cl . please make the necessary changes to vince ' s calendar . thanks .",0 +"Subject: position shirley , i would like to invite him to an interview next week . we should use his home phone number and / or private e - mail address . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 18 / 2000 12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jaesoo lew "" on 10 / 17 / 2000 09 : 59 : 01 pm to : vkamins @ enron . com cc : subject : position dear dr . kaminski my name is jaesoo lew and i am referred by dr . wayne lee . currently i ' ve been working at aquila energy in kansas city as an pricing analyst since july 2000 . since then , i have developed a natural gas storage valuation model applying the swing options ( forest method ) pricing approach . the price processes would be considered critical for the storage valuation since a trinomial forest is required to value storage . also the c + + programming using excel dll has been developed , too . i attached my resume to this message for your consideration and am looking forward to talking about an opportunity at enron . my home phone number is 913 - 649 - 0578 , dr . kaminski , i will wait your call in this week as dr . lee informed me . if possible , please let me know your expected calling day through the mail . i appreciate your consideration . thank you very much . sincerely , jaesoo lew get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com . - vitae 2 . doc",0 +"Subject: re : hello from vince kaminski at enron shmuel , thanks for the message . i am working with our recruiter , ashley baxter , to finalize the date of the trip . i shall shoot for october the 23 rd if this date works for the rest of our team . vince "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am to : vince j kaminski / hou / ect @ ect cc : subject : re : hello from vince kaminski at enron dear vince . i sent you a reply earlier this month but i haven ' t heard from you about the date of your visit . our department has a seminar every monday . if you can schedule your visit on a monday i would like to invite you to give a seminar which will be attended by many of our graduate students and faculty and will give you an opportunity to tell them about your program . with sufficient lead - time i can advertise the seminar in the hass school to their financial engineering students . shmuel . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : ; ; sent : tuesday , august 08 , 2000 10 : 59 am subject : hello from vince kaminski at enron > shmuel , > > i hope you remember me . i visited you together with aram sogomonian , a > good friend of mine , a few years ago . i am currently responsible , among > other things , for recruiting graduates with finance and / or technical > backgrounds at the university of berkeley . i would be glad to give you a > call and talk more about the details of our program . my colleague , > ashleybaxter , from the analyst / associate program at enron would join me > as well . > > i am sending you a copy of the brochure about the analyst / associate > program . > > vince kaminski > > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com >",0 +"Subject: var methodology change gentlemen , below is a plan of action for moving along with the var methodology change related to forward - forward volatility : 1 . finalize the methodology proposed ( research / market risk ) - determine the time period used to calculated forward - forward vols vs . correlations ( 20 days vs . 60 days ) - stabilize the calculation for curves and time periods where the curve does not change based on historical prices , implying volatility of 0 % 2 . get approval for the methodology change from rick buy ( see draft of the memo attached ) - john lavorato and john sherriff 3 . develop and implement the new methodology in a stage environment ( research / it ) 4 . test the new methodology ( market risk , traders ) 5 . migrate into production ( research / it ) please let me know if this is reasonable and meets everyone ' s expectations . vlady .",0 +"Subject: re : edith terry vince : thank you very much . i hope i get a chance to meet you sometime , cheers , edith terry enron / dc vince j kaminski @ ect 04 / 14 / 2000 01 : 46 pm to : scott tholan / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect ( bcc : edith terry / enron _ development ) subject : edith terry scott , i spoke briefly with edith terry from our dc office . there is not a good fit for my group but she could be a great asset for you . i have her resume in case you are hiring and would like to take a look at her . vince",0 +"Subject: re : invitation to speak at infocast ' s managing summer price volat ilit y conference in houston thank you very much , mr . kaminsky ! britta bothe - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , october 17 , 2000 1 : 58 pm to : brittab @ infocastinc . com cc : vince . j . kaminski @ enron . com subject : re : invitation to speak at infocast ' s managing summer price volatilit y conference in houston dear ms . bothe , i have forwarded my message to one of my associates who specializes in weather derivatives . vince kaminski britta bothe on 10 / 17 / 2000 12 : 38 : 33 pm to : vkamins @ enron . com cc : subject : invitation to speak at infocast ' s managing summer price volatilit y conference in houston dear ms . kaminsky : as i just mentioned on your voicemail , infocast is going to host a managing summer price volatility course , january 30 - february 1 , 2001 in houston . the course will focus on the various tools at hand to manage summer price and load volatility . our target audience for this event will primarily be risk managers and managers in bulk power sales & purchase ( our secondary target audience is energy traders ) . attached you will find a draft program agenda for your review . please let me know if you or someone else at enron is interested in presenting at this event . in particular , we are looking for someone to talk about weather derivatives . i appreciate you taking the time to review the conference schedule and i hope that i will have an opportunity to talk to you . unfortunately , i am running behind schedule in finalizing this program . i will call tomorrow to see what your feedback is . if you have any questions or suggestions , please do not hesitate to contact me at ( 818 ) 888 - 4445 ext . 30 . sincerely , britta bothe infocast conference manager ( 818 ) 888 - 4445 ext . 30 > ( see attached file : agenda 5 . doc )",0 +"Subject: re : agenda for houston visit mike , sounds good . christian mike a roberts @ ect 21 / 12 / 2000 09 : 26 am to : christian werner / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , paul quilkey / enron _ development @ enron _ development , mark tawney / hou / ect @ ect subject : re : agenda for houston visit christian , just finished meeting with pual , vince & mark new plan : let ' s plan on your coming to houston march 12 th - april 2 nd ( after our summer / winters respectively but . . let ' s proceed with the project without pause : 1 . please send up the software that needs to be installed along with operating system requirements 2 . please copy me on forecasting provided to sydney office on a daily basis if we work on these two fronts , it will optimize your time here and permit transotion to cover your forecasting there thanks - - - mike",0 +"Subject: ppa auction the government of alberta power purchase arrangement auction of the regulated generation plants and units commenced wednesday , august 2 nd , and will continue through a number of rounds over a number of days and possibly weeks . enron canada power corp . ( ecpc ) , a wholly - owned subsidiary of enron canada corp . , is an invited bidder participating in the auction . for strategic corporate purposes and as a result of restrictions imposed under the auction participation agreement and the auction rules ( compliance with which is secured by a us $ 27 mm bid deposit ) , any information , details or speculation regarding ecpc ' s involvement in the auction , including whether ecpc is participating or continuing to participate in the auction or has withdrawn from the auction at any time , the plants or units ecpc is or is not bidding on , the amounts ecpc is bidding or is approved for bidding , and any other information whatsoever about the auction process is to be kept strictly confidential . in particular , the auction has been followed closely by the media and may be of interest to shareholders , investors and other constituents , and such communications are prohibited until after the auction has been completed and the winning bidders have been announced by the government of alberta . if you have any questions or concerns , please contact peter keohane , enron canada corp . , at 403 - 974 - 6923 or peter . keohane @ enron . com .",0 +"Subject: re : matthew williams let ' s agree the switch happens november lst and we will change sap to reflect specialist status and matthew will be send a letter . matt , can you just send me a note confirming you are ok with this and cc . karen tamlyn who will make the change . regards sk dale surbey 11 / 10 / 2000 18 : 21 to : steven leppard / lon / ect @ ect cc : melanie doyle / lon / ect @ ect , sophie kingsley / lon / ect @ ect , tani nath / lon / ect @ ect , matthew d williams / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : matthew williams i agree - sounds like a good idea . - dale steven leppard 11 / 10 / 2000 18 : 05 to : melanie doyle / lon / ect @ ect , sophie kingsley / lon / ect @ ect cc : tani nath / lon / ect @ ect , dale surbey / lon / ect @ ect , matthew d williams / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : matthew williams all following discussions between matt , vince kaminski , and me , matt has decided he ' d like to make a longer - term commitment to research . with this in mind we ' d like to request that matt is switched from a & a to the specialist track . vince and i feel this is clearly in the best interests of enron given matt ' s proven strengths in quant analysis . how do we proceed ? all the best , steve",0 +"Subject: april futures contract vince and vasant : for the record , the april hh future closed last monday at $ 2 . 72 , and is now trading at $ 2 . 97 , a 9 % rise in less than one week . for the record , enron ' s technical "" experts "" strongly advised selling this contract last week , predicting a "" collapse . "" clayton",0 +"Subject: re : summer internship shirley , cantekin will be joining us again this summer as a summer intern . he will be starting around the end of may . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 17 / 2000 12 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" cantekin dincerler "" on 04 / 14 / 2000 03 : 52 : 04 pm please respond to to : "" ' stinson gibner ' "" cc : subject : re : summer internship stinson , i have received the offer , thank you . i am looking forward to being there again and getting involved in some interesting projects . i bet it will be fun . as to when i can start , i think i can start around the end of may . i can give you a more precise date after i figure out the schedule regarding my assistanship obligations . ps : could you give some idea about the kind of projects that we ' ll be working on ? i might do some advance reading if you could point out some references . best regards , cantekin > cantekin , > > you should be getting an offer of a summer internship within > the next few days . > if you don ' t , please let me know . > > i think you will be working with me on a combination of enron > broadband services > and enron north america projects and am looking forward to > having your help . > some of the projects should be a lot of fun . > > > when are available to start so i can plan ahead for you ? > > best regards , > > stinson > >",0 +"Subject: interview for japan office darren , tanya and i had a telephone interview for yumi . i do not know what kind of position you would offer her . if you intended to let her do the work on quantitative modeling , her knowledge in math seems very sallow . she is working on a math degree on stochastic process , but she can not explain what ito ' lemma is . we also asked questions about volatility of a basket , value at risk , etc . she did not have a clear answer . if you intended to let her to be a junior trader , she might be ok . it seems she has some experience of financial market , but i think you are much more qualified to probe her than i do in this aspect . keep in touch , best regards zimin from : darren delage @ enron on 01 / 12 / 2001 11 : 59 am ze 9 to : "" mm 21 yumi "" cc : zimin lu / hou / ect @ ect subject : re : next tuesday good afternoon imokawa - san , we would like to invite you to have a brief dialogue with some members of our research team . they would like to ask you to briefly expound on your mathematical studies . if you could please contact them next wednesday at 7 : 50 am ( it should be 4 : 50 pm houston time , tuesday ) . the conversation should take no more than 20 minutes of your time , and will enable us to get a more enhanced understanding of your quantitative abilities . zimin lu , director of research , can be reached at 713 - 853 - 6388 to dial from japan , 0061 - 1 - 713 - 853 - 6388 if you could please send zimin a copy of your resume before the interview , that would be much appreciated . you can call the above number to obtain the appropriate fax number . i will be in touch with you shortly thereafter . sincerely , darren "" mm 21 yumi "" 01 / 11 / 2001 08 : 35 pm to : cc : subject : thank you darren , thank you for cordinating everything . i understand it takes time , this is only the first week of the year in japan , and i do not like to push you much . normally , i have long meetings every thursday . for other dates , i make best effort to fit the schedule for your convenience , including early morning or late evening . i am looking forward to seeing you sometime soon . sincerely , yumi imokawa",0 +"Subject: eol stuff vince - i spoke with tom , and i completely agree and would like to hand all this eol stuff over to you . we need a sun server to take over the task . as it happens martin lin has one in his office he ' s not using and up to the task . his box could serve sas to enron , as well as handle listening in on the eol feedds and maintaining its database . martin ' s box technically belongs to ebs , but i think they are downsizing and wouldn ' t mind giving it up . in this way , you would have complete physical and administrative custody over the data and any work you do with it . i needn ' t be involved , and you can know your work is completely confidential . i ' ll make sas and the eol software available , as well as the necessary ram the server , at no charge . you just need to summon up some sysadmin resources to finish the job . there is a fine unix guy named ben thompson who will support you , i ' m sure . task : 1 ) upgrade ram on martin ' s server 2 ) install newest solaris os on server 3 ) install tibco and gnu software on server 4 ) install sas on server clayton",0 +"Subject: interview schedule for punit rawal hi molly : punit rawal is a carnegie mellon student that kevin kindall and bob lee interviewed back in december . we would like to bring him in for an interview . he is definately a "" trading support "" prospect . i forwarded his resume to john lavorato back in december and inquired as to whether he would be interested in interviewing him or not , but have had no response , except that he has not had a chance to look at his resume yet . vince originally said that either john or gary hickerson might be interested . i did not send his resume to gary , maybe you can check with him ? i am attaching the interview request form and his resume . thanks ! shirley - punit + rawal + newresume . doc",0 +"Subject: request submitted : access request for john . f . anderson @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000005409 approver : stinson . gibner @ enron . com request create date : 10 / 23 / 00 8 : 47 : 14 am requested for : john . f . anderson @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: the ferc staff report on western markets and the causes of the summer 2000 price abormalities , entit the ferc staff report on western markets and the causes of the summer 2000 price abormalities , entitled , part i of staff report on u . s . bulk power markets , is available at the following website : http : / / www . ferc . fed . us / electric / bulkpower . htm . if you have any questions or comments , please call jack cashin at 202 / 508 - 5499 .",0 +"Subject: enron credit modeling discussions hi , this email is in reference to our plan for detailed discussions about enron credit ' s modeling strategy . several meetings have already been scheduled . please refer to the attached excel spreadsheet for further details . also , if you like , we can have more informal discussions over lunch , dinner , drinks , etc . thanks in advance for your time . regards , iris",0 +"Subject: resending paper - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 04 / 30 / 2001 05 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" lynn nazareth "" on 04 / 27 / 2001 12 : 46 : 37 pm to : jason . sokolov @ enron . com cc : subject : resending paper jason : here is our team ' s assignment . please confirm receipt . i am also sending you the file via my outlook address in case this doesn ' t work . this is our team : helen demianenko javier lamas lynn nazareth shauywn smith carlos wheelock sarah wooddy thanks , jason ! see you at enron this fall ! lynn get your free download of msn explorer at http : / / explorer . msn . com - mg _ analysis _ final . doc",0 +"Subject: re : lawyer i will sign an agreement not to use the materials - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , march 08 , 2001 11 : 13 am to : macmilli @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com subject : re : lawyer ian , sorry for a delay in getting back to you . i have one challenge i did not anticipate when i talked to you the first time about our real options internal seminar . the materials were prepared in collaboration with a professor from another school , and there is some sensitivity regarding the intellectual property rights and the ability to distribute the materials outside enron . please , give me some time to find out if i can work around this issue . vince "" macmillan , ian "" on 03 / 07 / 2001 06 : 46 : 28 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : lawyer i still have not heard from your lawyer . i would like to see whar materials you are using and assess how we could work on the topic of real options with enron",0 +"Subject: 4 : 00 pm budget meeting dave will continue to have the friday afternoon "" budget meetings "" with one change : effective april 21 , 2000 the time will change from 4 : 00 pm to 3 : 00 pm . date : fridays this friday , aril 14 , 2000 remains at 4 : 00 pm time : 3 : 00 pm - 4 : 00 pm location : 3321 topic : budget meeting if you have any questions / conflicts , please feel free to call me or bev ( 5 - 7857 ) . thanks , kay 3 - 0643",0 +"Subject: re : power play book vince , you are a saint for lending me a copy of your book . i agree with you that we don ' t want increase there revenues even by a $ 1 . 00 , although my recommendation ( and mark palmer ' s as well ) is that we should pursue a rebuttal for the following reasons : as i mentioned i scoured the internet ( britannica . com , amazon . com , yahoo . com and dow jones ) and could not find one mention of the book , therefore mr . mehta ' s distribution must not be wide at all . consequently , his comments may not have reached a large audience . issuing a rebuttal , may in fact , draw more attention to the comments and issues then they are currently receiving . i believe we should proceed with caution , and respond accordingly ( with counter comments ) only when comments are solicited from us . so far , we have not received any telephone inquiries from media in relation to mr . mehta ' s enron bashing . may be we should ' leave the stones unturned ' . let me know what you think . also , please contact me when it is convenient for me to borrow the book from you . regards , cindy vince j kaminski @ ect 10 / 12 / 2000 03 : 38 pm to : cindy derecskey / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : power play book cindy , i got a copy of the book and another one is on the way from our officer in india . i can lend you the book and you can makes copies of the most important chapters . i don ' t think we should be buying too many copies and increasing the sales of the book . in general , i think that we should counter the presentations made by mr . mehta . the person in charge of our dhabol operation is a stanford graduate and maybe he could obtain an invitation to speak at the same forum and present the facts as they are . he should be here for the management conference . vince from : cindy derecskey @ enron on 10 / 11 / 2000 01 : 30 pm to : vince j kaminski / hou / ect @ ect cc : christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect subject : power play book good afternoon vince , christie patrick mentioned to me the conference that your wife recently attended at stanford . at this coference abahy mehta discussed his / her recently published book ' power play ' - that certainly does not flatter enron . i have conducted a search on amazon . com , britannica . com and dow jones and i am coming up empty handed . would you be kind enough to briefly trouble your wife to provide any other information she may remember , so i can narrow my search . i greatly appreciate it . regards , cindy",0 +"Subject: re : ( no subject ) jana , sounds perfect . look forward to meeting you on saturday . any suggestions regarding the movie ? vince jlpnymex @ aol . com on 04 / 07 / 2000 08 : 28 : 53 am to : vince . j . kaminski @ enron . com cc : subject : re : ( no subject ) vince you missed a really fun party last night . the turnout was even better than we had hoped - - about 250 people . how about saturday , april 15 for a 5 : 00 pm ( or so ) movie and then dinner ? have a good weekend , and i hope to see you tuesday evening at the hea / nymex crawfish boil ! jana",0 +"Subject: re : bei enron anjam , can you , please , invite gordian kemen to an interview in london ? stinson , zimin , vasant and krishna can interview him from houston ( video conference ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 04 / 2000 10 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - - jens gobel @ enron 03 / 16 / 2000 05 : 36 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : bei enron gordian kemen on 03 / 15 / 2000 09 : 13 : 47 am to : jens . gobel @ enron . com cc : subject : career opportunities @ enron hi vince , following up to our chat on the phone . gordian kemen will be arriving in austin on the 16 th . he will be staying in austin for 2 weeks . he would very much appreciate to have the opportunity to have a talk with you to find out if there is a place for him at enron . you can reach him under ( 512 ) 301 - 9819 ( his parents in law ' s phone number ) . thanks a lot for you help and attention , jens - gordianresume . pdf",0 +"Subject: re : risk 2000 - boston oliver , i apologize for the delay . i was traveling over the last few weeks . please , feel free to edit my bullet points . i shall be back in the office on friday afternoon . in the meantime you can reach me on my cell phone : 713 410 5396 my name : vince kaminski ( not kaminsky ) managing director enron corp . the challenge of valuation of energy related derivatives - modeling the dynamics of energy prices - incomplete markets - complexity of the energy related contracts - embedded options - multiple layers if optionality vince kaminski "" oliver bennett "" on 01 / 24 / 2000 08 : 12 : 16 am please respond to "" oliver bennett "" to : vince j kaminski / hou / ect @ ect cc : subject : risk 2000 - boston dear vince , i apologise for sending another email . i was wondering if you could confirm your talk title ( plus some bullet points ) for your presentation at our annual us congress . i have attached a condensed programme for the event - you are speaking on stream three , part of the new research in derivatives modelling and analysis section . unfortunately we are printing the brochure at the end of the week and will need these details by thursday 27 january . best regards , oliver direct : + 44 171 484 9880 risk publications , 28 - 29 haymarket , london swly 4 rx fax : + 44 171 484 9800 email : conf - ny @ msn . com www . riskpublications . com - attl . htm - condensed . doc",0 +"Subject: organisational announcement we are pleased to announce that we have appointed michael brown as chief operating officer of enron europe . michael joined enron  , s london legal department in 1995 and has played a key role in the success of many of our large commercial ventures since then . in july 1999 , he was made enron europe  , s general counsel . replacing michael in the general counsel role will be mark evans who joined our legal department in 1995 . please join us in congratulating michael and mark in their new roles .",0 +"Subject: from the enron india newsdesk - april 23 rd newsclips vince , from the sound of the articles , it appears ene is ready to exit india , or alternately to get into an arbitration battle . i have scheduled some time with you at 10 . 30 to discuss . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 04 / 23 / 2001 07 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nikita varma 04 / 23 / 2001 07 : 20 am to : nikita varma / enron _ development @ enron _ development cc : ( bcc : sandeep kohli / enron _ development ) subject : from the enron india newsdesk - april 23 rd newsclips april 23 , 2001 , http : / / www . financialexpress . com / fe 20010423 / fed 3 . html godbole ' s report unearths absurd calculations , maharashtra could use this to wriggle out of the dabhol project sucheta dalal april 23 , 2001 , http : / / www . financialexpress . com / fe 20010423 / newsl . html dpc board set to authorise president , enron md to issue notice of termination , sanjay jog scrapping of power purchase agreement monday , april 23 , 2001 , http : / / www . business - standard . com / today / corp 8 . asp ? menu = 2 dpc seeks ok to exit power project , tamal bandyopadhyay & s ravindran april 23 , 2001 , http : / / www . cybernoon . com / index . html enron winding up operations in india ? state for consolidating all dpc arbitration notices , sanjay jog monday , april 23 , 2001 , http : / / www . financialexpress . com / fe 20010423 / news 3 . html monday , april 23 , 2001 , http : / / www . economictimes . com / today / 23 econo 4 . htm maharashtra to set up experts panel on enron the article also appeared in the following newspaper business standard april 23 , 2001 , http : / / www . business - standard . com / today / state 3 . asp ? menu = 32 maharashtra to set up expert panel on enron april 23 , 2001 , http : / / www . economictimes . com / today / 23 econo 7 . htm ' enron is a national problem ' april 23 , 2001 , http : / / www . cybernoon . com / index . html cm takes enron to delhi today monday , april 23 , 2001 , http : / / www . outlookindia . com / full . asp ? fname = enron + % 28 f % 29 & fodname = 20010430 & sid = 1 the real story of dabhol if a judicial probe , suggested by the committee , is ordered into the enron deal , it could embarrass three governments ranjit bhushan monday , april 23 , 2001 , http : / / www . business - standard . com / today / state 2 . asp ? menu = 32 mseb revenue collections up at rs 968 crore in march , renni abraham the financial express , april 23 , 2001 godbole ' s report unearths absurd calculations , maharashtra could use this to wriggle out of the dabhol project , sucheta dalal it is finally quit india time for enron . though the controversial multinational has denied plans to sell its stake in dabhol power company ( dpc ) , informed sources say that it has sent feelers to china light it deliberately uses expensive raw material ( ignoring world bank warnings ) , has worked on fanciful demand - supply estimates and several legal requirements and permissions . in fact , the committee has found that the mseb has been paying enron rs 930 crore more than it should every year . this comprises overcharging of rs 253 crore on account of the large regassification plant of which only 42 per cent of the capacity is used for dpc . there ' s also a rs 100 crore extra billing to the mseb for shipping and harbour charges although the cost of these facilities had been included in the capital recovery charge . by charging more than twice the operations & maintenance rate stipulated by the government of india , enron collects approximately rs 246 crore extra every year . it has also been collecting rs 332 crore every year through inflated fuel consumption claims . enron has been charging at 1878 kcal / kwh under the power purchase agreement ( ppa ) although the equipment manufacturer has guaranteed it a much lower consumption rate . this gives it a fat fuel arbitrage opportunity at the cost of the people of maharashtra . the committee has also pointed to the strange practice of using four different exchange rates for different aspects of the project negotiation : a rate of rs 32 per dollar was assumed for calculating debt service of rupee loans , rs 34 . 5 per dollar as reference rate for phase - i , rs 39 . 35 per dollar as reference rate for phase - ii and a curious rs 42 per dollar for calculating government of india tariff . forcing a reduction of these excessive charges has nothing to do with contract cancellation . all it needs is tough negotiation and public pressure on the political establishment . the godbole committee has established that dpc ' s tariffs can easily be halved if excess payments are eliminated and unfair conditions such as the dollarisation of payments , the take - or - pay clause and escrow facility ( which is in fact hampering mseb ' s reform particularly in power distribution ) are scrapped . the security of future payments to dpc under the restructured tariff would be based on increased cash flows from a reformed distribution system . the committee also gives enron a difficult escape route . it says that if the multinational finds the conditions for restructuring too onerous , it should free mseb from its contractual obligations and find buyers outside maharashtra . the committee has tried to establish another precedent on all projects negotiated by government : "" the public has a right to know what is being contracted on their behalf "" and has recommended that all documents , including contracts related to all independent power projects ( ipps ) , particularly dpc , should be published by the maharashtra government within two months . also , having established that demand - supply estimates by the state government were fanciful , the committee has asked mseb to defer all negotiations with power producers until demand levels in the state permit full absorption of power generation from such ipps . it recommends that such negotiations should be in accordance with the least - cost plan spelt out by the report . this should also end the hectic lobbying by reliance ( patalganga ) , mittals ( bhadravati ) , the bses ( saphale ) and others to set up ipps in maharashtra . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the financial express , april 23 , 2001 dpc board set to authorise president , enron md to issue notice of termination , sanjay jog scrapping of power purchase agreement the board of directors of dabhol power company ( dpc ) , which has already taken an aggressive posture , has proposed to authorise the enron india managing director k wade cline and dpc president and chief executive officer neil mcgregor to issue notices for the termination of power purchase agreement ( ppa ) and transfer of dabhol project in view of continuing default by the state and central governments and maharashtra state electricity board ( mseb ) . the board of directors , which would meet on april 25 in london , also plans to appoint mr cline as its "" true and lawful attorney - in - fact "" and authorise him to represent the company in the negotiation of all project contracts and financing agreements and their amendments and modifications . top sources told the financial express that dpc would authorise mr cline and / or mr mcgregor to serve the preliminary termination notices and transfer notices to the state and central governments and mseb under clause 17 and schedule 11 of the ppa . "" in response to the continuing default by the mseb of its payment obligations under the ppa , the failure of the government of maharashtra to honour obligations under its guarantee and state support agreement and failure of the government of india to honour obligations under its counter guarantee , the company has sought recourse to dispute resolution and has initiated conciliation and arbitration proceedings , "" the company resolution said . "" consistent with this recourse to contractual remedies , the company now seeks the authority to serve preliminary termination notices and transfer notices pursuant to clause 17 and schedule 11 of the ppa from time to time and at any time upon the occurrence of an event giving rise to its right to serve such notices as determined by the company , "" the resolution added . according to the resolution , the directors , the company secretary and officers of the company and each of them acting individually , are authorised and empowered to execute and deliver such documents and instruments and take such other actions as they deem fit to effect the purpose of the resolution , in the name and for and on behalf of the company . against this backdrop , the state government and mseb have been exploring the possibilities of issuing termination notice to the dpc for its failure to meet the contractual obligations under the ppa . the state government and mseb sources said that such a notice could be served by the mseb as dpc has not paid the rebate ( penalty ) of rs 409 crore for misdeclaration and default on the availability of power on january 28 and february 13 . the state government and mseb , which reviewed its position on saturday at a meeting convened by the chief minister vilasrao deshmukh , are of the view that they have a strong case and substantial grounds to slap the termination notice to the dpc . the dpc ' s move to appoint mr k wade cline as its "" true and lawful attorney - in - fact "" deserves importance especially when the state government proposes to set up a negotiating committee to cut the per unit cost and gauge the possibility of sale of dabhol power to the power deficit states . mr cline would also be authorised to dispose of equipment that is worn out or obsolete or other equipment or fuel no longer expected to be used in the ordinary course in amounts exceeding rs 64 crore or the equivalent in foreign currency in any financial year . furthermore , mr cline would be in a position to enter into contracts and take any other actions for purpose relating to the day - to - day operation of the company ' s business or exercise its rights and discharge its obligations under the project contracts and the financing agreements - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , monday , april 23 , 2001 dpc seeks ok to exit power project , tamal bandyopadhyay otherwise it cannot be a complete exercise , "" he added . deshmukh and the mseb team are scheduled to meet union finance minister yashwant sinha and power minister suresh prabhu on monday in new delhi to discuss the stalemate and find a acceptable solution for the same . "" i am meeting sinha and prabhu to request them to take an initiative and send representatives for the negotiations committee , "" he said . deshmukh ' s meeting with the centre comes at a crucial stage as dpc ' s lenders would be meeting in london , on the same day , to decide upon the future finances of the controversy marred 2 , 184 - mw project in dabhol . moreover , the dpc board is also scheduled to meet on april 25 in london to decide the fate of its $ 900 million project in dabhol , including winding up of its operations . the meeting would discuss the topmost item on the agenda , which was to empower dpc managing director neil mcgregor to wind up operations in the country . dpc has already slapped one conciliation notice on the centre and three arbitration notices on the state government over non - payment of dues amounting to rs 213 crore plus interest towards the bills due for the months of december 2000 and january 2001 . asked whether the centre had send any feel over a possible clubbing together of the arbitration and conciliation processes , deshmukh replied in the negative . deshmukh said mseb chairman vinay bansal along with two senior officials would attend dpc ' s board meeting in london . bansal had said on sunday that mseb would present its case concerning the rs 401 - crore penalty that the loss - making board slapped on dpc on february 28 , for not generating required power within the stipulated time as per the ppa . currently , enron india holds 65 per cent in the $ 900 - million dpc project , which includes mseb ' s 15 per cent , while general electric and bechtel hold 10 per cent each . ( pti ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , april 23 , 2001 ' enron is a national problem ' union power minister suresh prabhu on sunday said the centre would render all possible help to resolve the enron crisis faced by maharashtra which is "" haunting the entire country "" . prabhu said he would meet the state chief minister vilasrao deshmukh in new delhi tomorrow to discuss stalemate over the payments due to the us energy major - promoted dhabol power company by the maharashtra state electricity board . referring to godbole committee report ' s finding that dpc was keen on offering mseb ' s 15 per cent stake to the national thermal power corporation , prabhu said : "" the centre has not received any such proposal regarding participation of the central power utility . "" ( pti ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - afternoon , april 23 , 2001 cm takes enron to delhi today chief minister vilasrao deshmukh will discuss the enron imbroglio with union finance minister yashwant sinha and union power minister suresh prabhu in delhi today . he will request the centre to appoint a representative to the committee that the state government is setting up to carry on discussions and negotiations regarding the dabhol power project of the us - based enron power company . today , a special meeting of representatives of all those finanicial institutions which have extended loans to the dabhol power project is also being held in london . a meeting of its directors will be held on wednesday to discuss the fate of the $ 900 million project which has been under a cloud ever since its inception . yesterday , mr . prabhu declared at a ' janata darbar ' in thane that the centre would extend all help to solve the enron crisis . this is in the backdrop of pending bills to the tune of rs . 213 crore which the state fowarded to the centre against payments for the months of december 2000 and january 2001 . confirming that there was no proposal from the state government to handover the project to the centre , mr . prabhu said that the situation of the electricity boards in the country was precarious . the centre had decided to assist maharashtra upto rs . 250 crore every year to improve customer services . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - outlook , monday , april 23 , 2001 the real story of dabhol if a judicial probe , suggested by the committee , is ordered into the enron deal , it could embarrass three governments ranjit bhushan "" the committee has prima facie found infirmities in several decisions taken in respect of the enron project at different points of time by successive governments and agencies in the centre and state . "" - - energy review committee headed by former home secretary madhav godbole this could well be the real enron story a five - member high - powered committee headed by madhav godbole - and including former union economic affairs secretary e . a . s . sarma , hdfc chairman deepak parekh , teri chairman rajendrapachauri and maharashtra government official vinay mohan lal - has recommended a judicial probe into the entire enron power project deal saying it signified "" the utter failure of governance that seems to have characterised almost every step of the decision - making process relating to the dabhol project "" . the report , which was submitted to the maharashtra government last fortnight and has been acquired by outlook , is severely critical of former chief minister sharad pawar ( with the congress then ) , the 13 - day bjp - led union government which reworked the deal in 1996 , shiv sena supremo balasaheb thackeray and his government in maharashtra headed by manohar joshi "" the utter failure of governance seems to have characterised almost every step of decision - making relating to the dabhol project . "" madhav godbole committee report an investigation , if ordered , could embarrass at least these three governments the report clearly upholds the allegations of money being paid by enron to politicians and bureaucrats for clinching the deal . according to the committee , the deal reveals failure of governance , both at the centre and state , and across different agencies . "" it strains belief to accept that such widespread and consistent failure to execute responsibilities is purely coincidental , "" the report said , proposing a set of measures to be implemented if something of the project was to be retrieved . godbole and sarma also felt that the panel should categorically recommend the government of india to order a judicial inquiry . this was finally adopted by it . says a congress leader : "" enron could well become the biggest political issue in maharashtra and put to question liberalisation , particularly in the power sector . "" the proposal has already struck panic . says ncp ' s praful patel : "" if the enron decision has at all been detrimental , it is because of the haste with which phase 2 was cleared by the shiv sena - bjp government . now with the state having already entered into an agreement with enron , the important thing is to resolve it amicably . a judicial inquiry will be an eyewash because it ' s not an issue of corruption but that of perception . "" pro - market congressmen privately admit that it was their governments at the centre and the state which invited enron , even though the second phase was cleared by the bjp - shiv sena combine . says congress spokesperson jaipal reddy : "" right now we ' re too involved with the parliament deadlock over tehelka . "" pro - liberalisation congress mps also fear that such witch - hunting could send wrong signals to foreign investors . non - congress mps from maharashtra , meanwhile , claim that the godbole committee was instituted with the express purpose of politicising the enron issue . "" i think i know vilasrao deshmukh ' s gameplan , "" says an mp from the state . but some mps like congress ' prithviraj chavan question the cloak of secrecy that ' s surrounded the deal : "" i ' ve maintained for long that there should be a judicial committee to examine this "" . the committee report also says that had the enron project been subjected to a techno - economic appraisal , as envisaged under provisions of the electricity supply act of 1948 and related legislations , the infirmities could have been avoided . since this wasn ' t done , questions about a concerted effort towards exercising undue influence at every stage of the project are bound to arise , the exhaustive 93 - page report points out . "" i ' d highlight the speed with which the 13 - day vajpayee government cleared the project minutes before it quit , "" says congress mp prithviraj chavan . the enron project had been held out as an exemplar of the impending liberalisation in the early ' 90 s and , despite several controversies , is now an established power project at dabhol , 150 km south of mumbai . in july 1992 , enron signed an mou with the maharashtra state electricity board ( mseb ) to set up a 2 , 550 mw station as part of the government ' s ' fast track ' projects . subsequently , when the shiv - sena - bjp came to power in maharashtra it filed a writ against the project . this curiously led to renegotiations with enron . the committee has quoted a bombay high court order on the renegotiated deal . "" once it ( gom ) decided to revive the project , it acted in the very same manner its predecessors in office had done . it forgot all about competitive bidding and transparency . the speed with which the negotiating group studied the project and made its proposal for renegotiatons , which was accepted by dabhol , is unprecedented . "" says chavan : "" i would particularly like to highlight the speed with which the 13 - day vajpayee government at centre endorsed the renegotiated project minutes before it resigned . "" since the commissioning of the plant in may 1999 , the mseb has paid rs 1 , 607 crore for the power it has bought from dabhol . if the same watttage of power had been bought from indian - built power plants fired by indigenous coal , the payment would have been approximately rs 736 crore . in the first year - and - a - half of its operation itself , the dpc had drained the maharashtra exchequer of nearly rs 1 , 000 crore . the central electricity authority ( cea ) , in fact , pointed out that the dabhol plant was not the least costly option . the mseb had other inexpensive alternatives like the four units of kaparkheda , but they were in a preliminary stage . the report notes : "" . . . if the mseb had made efforts to seriously pursue these projects , they might not have remained in their preliminary stages "" . it adds that the members were of the opinion that "" the mseb and the maharashtra government erred seriously , based on information available at that time , in proceeding with the dpc as a base - load factor even when its capacity was reduced . "" the failure seems to have been compounded by the laxity of the union power ministry , finance ministry and the cea . it quotes the cea as saying that since the union finance ministry found the tariff reasonable , no further examination was required strangely , bal thackeray ' s shiv sena , when it came to power together with the bjp in maharashtra , filed a writ in the court and then renegotiated the deal . after the new shiv sena - bjp government took over , its cm , manohar joshi , appointed a renegotiating committee in 1996 which made the right noises , actually managing to reduce the tariff . but certain things remained inexplicable . no fresh clearances were required from the cea , which also said that "" since no cost increase was involved . . . fresh formal clearance wasn ' t necessary . "" says the committee : "" this only adds strength to the suspicion that the cea didn ' t consider the economic aspects of the project at all . indeed , given the non - availability of any official record of the meeting on june 24 , 1994 , with the committee and the nature of this letter dated december 23 , 1994 , the committee is doubtful whether the economic aspects of dpc were discussed at all . ' ' the credibility of the shiv sena - bjp government has been seriously questioned . "" the committee finds it unexplicable ( sic ) why there was no mention of any reduction in capital cost of the project from $ 2 , 828 million to $ 2 , 501 million as agreed by dpc in the summary report of the renegotiating committee , "" the panel observes . says lawyer prashant bhushan : "" it is strange that the shiv sena - bjp government first filed a writ in the court and then coolly renegotiated the deal . "" the committee further spells out the losses incurred through the deal . "" subsequent to the commissioning of the dpc , the financial deterioration of mseb has been rapid . while the mseb was in profit in 1998 - 99 , it plunged into huge losses of rs 1681 crore in 1999 - 2000 . "" significantly , the world bank in 1993 had predicted the system ' s inherent weaknesses . in a letter written to the then power secretary , r . vasudevan , a top bank official had said that "" after a detailed review of the analytical framework and costing assumptions , we reconfirm our earlier conclusion that the dabhol project , as presently formulated , is not economically justified "" and that in "" our assessment the project is too large to enter the mseb system in 1998 . the proposed base - load operation could result in uneconomic plant dispatch , as already existing lower variable cost coal power would be replaced by the higher cost lng power . "" enron ' s persistence and the ' gullibility ' of the indian side can be gauged from high - ranking enron official joe sutton ' s letter to a key indian official , ajit nimbalkar : "" i recently met with the world bank and have been following the articles in the india papers . i feel that the world bank opinion can be changed . we ' ll engage a pr firm and hopefully manage the media from here on . the project has solid support from all other agencies in washington . "" the key question in the enron deal is whether a developed state like maharashtra needs outside intervention in the power sector at all ? for the first time the godbole committee has raised objections about the viability of such a project . according to the report , the mseb has been one of the better performing boards in the country and has , despite a faulty transmission and distribution ( t and d ) system , managed to consistently earn net revenue surpluses on an accrual basis . maharashtra accounts for nearly one - fourth of the gross value of india ' s industrial sector . it ' s one of the few states to achieve 100 per cent electrification . since ' 95 , the mseb has been adding to its generation . "" this improvement , which has been largely due to renovation and modernisation undertaken by the mseb , exceeded its own expectations at a time when the dpc was being considered , "" the report points out . following a policy of cross - subsidy , roughly nine out of its ten users are subsidised . but the gap between the average cost of supply and average realisation hasn ' t been much . in fact , the subsidy claim decreased from rs 630 crore in 1995 - 96 to rs 355 crore in 1998 - 99 , until in 1999 - 2000 it increased nearly five - fold to rs 2 , 084 crore due to the sudden increase in the gap by 26 paise per unit - from 15 to 41 paise - an increase of 173 per cent . "" the increase in the subsidy claim by rs 1 , 729 crore is due to the increase in the gap principally because of the increase in power purchase costs , "" says the committee , adding : "" without the dpc and without problems of t and d loss , the mseb could be financially healthy . "" but can that happen now since enron is here to stay ? the committee has come up with some far - reaching recommendations : make public all dabhol - related documents and agreements , restructure the dabhol project itself to bring down the cost of power , restructure dpc financially , allow sale of dpc power outside maharashtra , re - examine ppas in accordance with least - cost plans , and thoroughly reform the mseb . the committee know this can become reality only with political consensus and through forming of public opinion . the question is , can that be achieved in an unstable political environment ? with priya sahgal making of a scam ? 1992 : centre invites enron to set up ' fast track ' power project ? dec 1993 : first ppa signed with mseb ? 1994 : enron starts construction ? 1995 : sena - bjp govt scraps enron ? 1996 : state govt renegotiates project ? 1996 : 13 - day vajpayee govt approves counter - guarantee ? may 1996 : state cabinet clears ppa ? may 13 , 1999 : phase i commissioned ? jul 1999 : financial closure for phase ii ? oct 2000 : mseb defaults on payment , subsequently stops paying monthly bills ? feb 6 , 2001 : enron invokes central government ' s counter - guarantee - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , monday , april 23 , 2001 mseb revenue collections up at rs 968 crore in march , renni abraham the maharashtra state electricity board ' s ( mseb ) revenue collections in march 2001 stood at a record rs 968 crore . this was largely due to the disconnection drive on defaulter connections - - pegged at nearly 20 , 000 disconnections a month - - which resulted in compliance by consumers . with the dabhol power company ( dpc ) monthly financial burden issue now a topic of discussion among arbitrators on the negotiating table , the mseb has turned to putting its house in order . as if to ward of any criticism of its fiscal condition that could be termed as the facilitator to the entire dpc tariff crisis , the state electricity board has put matters relating to its performance on record . for instance , mseb has recorded the highest power generation in the year ended march 31 , 2001 , at 45930 units , compared with the previous year ' s 45582 units , making it the top seb of the country in this respect . similarly its power stations recorded the highest availability percentage at 86 . 1 up from 84 . 6 per cent last fiscal . plant load factor is up to 72 . 78 per cent , compared with 71 . 7 per cent in 2000 . the parli power station has recorded the highest ever generation in the ten years of its life time in 2000 at 4545 million units , which made it eligible for the meritorious productivity award under the eligibility guidelines issued by the government of india carrying a cash award of rs 12 . 5 lakh . all other power stations in the state , without exception , also fulfill the eligibility criteria for the cash award , a senior mseb official said . similarly , the chandrapur power station became the first power station of any state electricity board to get the iso 9002 certification . a senior mseb official said : "" earlier mseb was suffering from too much interference in its day to day functioning . the agriculturists were touted as the major reason for its deteriorating accruals , while theft of electricity during the transmission and distribution stage was conveniently camouflaged under this head . in the recent past , the government has authorised mseb to take steps to curb this misuse of power by its own officials , many of whom , including a chief engineer have suffered suspensions",0 +"Subject: phone interview per our conversation yesterday , i will have a job description for the comp finance students sometime today . i have also gone through the mba resume stack yet again . the person who requested the phone interview is troy mischke . he works for pratt & whitney in florida . cmu has a flexmode program , which is another phrase for distance learning . it turns out that there are a number of people that work for pratt & whitney in florida . my guess is that they all know each other , and decided to take the flexmode program together . here are the names tony garcia k . todd kuykendall timothy leonard troy mischke only troy requested the phone interview , although tony gacia did send a cover letter . what is the best path forward ? - kevin kindall",0 +"Subject: interview schedule for yingquan shen ( charles ) please be aware of the correction on candidate ' s name . thank you stephanie - - - - - - - - - - - - - - - - - - - - - - forwarded by stephanie summers / na / enron on 10 / 10 / 2000 04 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stephanie summers 10 / 10 / 2000 03 : 41 pm to : vince j kaminski / hou / ect @ ect , zimin lu / hou / ect @ ect , alex huang / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , paulo issler / hou / ect @ ect cc : anita dupont / na / enron @ enron , shirley crenshaw / hou / ect @ ect , marlow anderson / corp / enron @ enron subject : interview schedule for yingquan shen ( charles ) please find the interview packet for the above - referenced person . the interview will occur on friday october 13 , 2000 . please print all three documents for your reference . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . stephanie 58701",0 +"Subject: re : ca for henwood engagement sandeep , it probably makes sense for you to directly coordinate the signing of the contract for henwood . attached is another copy of the earlier email containing a draft contract provided by bonnie nelson in legal . she would still like to change section 6 on exclusivity . her number in houston is 713 646 7712 . let me know whatever i can do to help . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 18 / 2001 08 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bonnie nelson @ enron _ development 01 / 11 / 2001 12 : 51 pm to : stinson gibner / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , sandeep subject : re : ca for henwood engagement stinson , attached please find a draft consulting agreement for use with henwood . you will want to review it before you send it to henwood . please see section 6 in particular . also , i put in that arbitration will be in houston and texas law will apply . we could move that to new york , with new york law if that is better for henwood . if pressed , we could make it singapore or u . k . law , with arb in singapore . but any other law , including australian law , would mean we would need to get this contract reviewed by foreign counsel - - so i strongly urge you to argue for texas or ny law ( no other state , please ) . i tried to make this agreement reflect the terms in henwood ' s proposal , and believe i succeeded . our form has some additional terms not contained in their proposal , as well as fcpa boilerplate ( ie . , the "" business conduct "" and "" drug policy "" language ) . also , i just want to point out that this agreement allows them to subcontract the work - - but only with our written agreement . under their proposal , the subcontractor costs will be charged to us at cost plus 15 % - - so you might not want to do it . please let me know if you have any comments or questions . bonnie",0 +"Subject: re : book review great job vince . i know people will be knocking themselves over for the book . i know for a fact that the consultants can make a lot of money just ' reselling ' stuff that are in the book ! i know first hand since d & t did that with even the first version . i think the fas 133 article by some out - of - work nuclear engineer was the bomb ! ravi .",0 +"Subject: resume , cv . , etc . dear mr . kaminski : as explained over the phone , i have been doing political , economic , and strategic analysis for terry thorn , formerly head of government affairs for ei . most of my work has been focussed on asia , a region in which i have deep experience and speak major languages . wtih the restructuring of the asia - pacific group , terry is moving to a new function and i am seeking a new role . since i have been based in washington , dc , with more frequent trips to asia than to houston , i still feel as though i don ' t know my way around the company , a disadvantage in my current situation . several people have recommended that i talk to you about your shop , but more generally if you have any ideas about where i might fit in , i would appreciate them . i am attaching my resume , cv and a biographical sketch as you requested , edith terry enron / dc",0 +"Subject: alliance info alert : ferc report on western markets at its special meeting today , ferc released the results of its eagerly awaited probe into california ' s summer power crisis , concluding that under certain circumstances , california ratepayers were subjected to unjust and unreasonable power rates due to california ' s "" seriously flawed "" market structure and rules in conjunction with tight demand and supply conditions throughout the west . the ferc staff report on western markets and the causes of the summer 2000 price abormalities , entitled , part i of staff report on u . s . bulk power markets , is available at the following website : in response , ferc issued an order proposing a series of sweeping structural changes to the california iso and px to help remedy the pricing problems , and solicited public comment by november 22 . a technical conference has also been scheduled for november 9 , to discuss the proposed solutions and other remedies that might be suggested ( details tba ) . while all four commissioners supported the order , the order stretched the commission . chairman hoecker and comm . breathitt expressed strong endorsements , while comms . hebert and massey concurred , citing areas where they felt the commission had either "" over - reached "" or not gone far enough , as discussed below . a final order is expected to be issued by year ' s end . at the same time , the commission warned california consumers of their continued risk of paying higher prices unless policy makers there resolve state issues , such as : ( 1 ) immediately implementing the availability of day ahead markets for power purchases ; ( 2 ) development of demand responses ; ( 3 ) siting of generation and transmission ; and ( 4 ) assurance of sufficient reserve requirements . highlights of proposed california structural remedy in its order , ferc proposed a series of market overhauls , including : ( 1 ) eliminating the state ' s mandatory requirement that the state ' s investor - owned utilities buy and sell electricity through the px , and allowing these utilities to purchase electricity through forward contracts and other alternative mechanisms to manage supply risks . ( 2 ) requiring market participants to schedule 95 percent of their transactions in the day - ahead market and instituting a penalty charge for under - scheduling ( in excess of five percent of hourly load requirements ) , in order to discourage over - reliance on the real - time spot market . ( 3 ) establishing independent , non - stakeholder governing boards for the iso and px . ( 4 ) modifying the current single price auction system by ( a ) imposing a temporary $ 150 / mwh "" soft cap "" that prohibits supply bids in excess of $ 150 from setting the market - clearing price for all bidders ; ( b ) requiring sellers bidding above $ 150 / mwh to report their bids to ferc on a confidential , weekly basis and provide certain cost support ; and ( c ) requiring the iso and px to report monthly information on such bids . the commission ' s price mitigation measures would remain in effect through december 31 , 2002 . ( 5 ) declining to order retroactive refunds for the state ' s ratepayers and utilities , citing insufficient authority to do so , but subjecting sellers to potential refund liability for transactions from october 2 , 2000 until december 21 , 2002 , but no lower than their marginal or opportunity costs , if ferc finds non - competitive behavior . ( 6 ) encouraging accelerated state siting approval and introduction of demand response management programs . separately , the draft order rejected the iso ' s request for an extension of its current purchase price cap authority , and the px ' s request for price capping authority . commissioner responses comm . herbert reluctantly concurred , noting that his decision may change when a final order is considered based on comments filed or testimony offered at the november 9 meeting . he stressed that he would have preferred that the order address four areas : ( 1 ) eliminate all price controls in california markets ; ( 2 ) abolish the single price auction entirely ; ( 3 ) terminate the "" buy and sell "" mandate in the px ; and ( 4 ) direct the iso to address a long list of cited problems in its january 2001 rto filing , rather than having the commission prescribe specific remedies . hebert stated that while he was opposed in principle to the "" soft cap "" concept , if one had to be adopted , then the soft cap should increase incrementally increase over time at specific pre - announced dates . he believes that this would serve to both encourage greater investment in facilities and additional forward contracting as well as provide an incentive for california regulators to address market design and other flaws . also , he would not have disbanded the stakeholder governing boards at this time , but allow the iso and px to address this issue in their january 2001 rto filings . in addition , he would not dictate risk management methods , preferring instead that market participants determine appropriate actions on their own . finally , he advised californians not to be so environmentally focused that they do not realize their tremendous need for generation capacity . comm . breathitt stated her approval of the order while warning that ferc cannot allow the events of this past summer to reverse or slow the progress towards open and competitive markets . she noted that it was the commission ' s job to guide the market to self - correct and not to conduct "" command and control . "" she also commended the managers of the iso and px , saying that they have performed admirably . however , she noted she is awaiting comments on the single price auction remedy and its accompanying confidential reporting requirements . comm . massey concurred , but emphasized that he advocates a more aggressive approach . he feels that the congress has "" put its thumb on the scale "" in the federal power act to protect consumers . stating that prices will continue to be unreasonable in the future , he believes that this order moves in the right direction , by proposing solutions to identified problems such as an over reliance on the spot market , lack of demand response , the need to reconstitute governance of the iso and px and the elimination of the buy / sell mandate . comm . massey specifically called for comments regarding whether the $ 150 / mwh soft cap went far enough , whether ferc has the legal authority to issue refunds and to determine whether there should be a requirement for a certain percentage of forward contracting to hedge against the spot market price volatility . finally , chairman hoecker stated his strong support of the order , but noted that this is "" no time to pull punches . "" he emphasized that the commission needed frank comments from the industry . he echoed comm . breathitt ' s warning that competition is at risk and that they needed to get the markets back on track . noting that the commission lacked authority to order refunds , he stated that the responsibility rests with congress . addressing jurisdictional issues , he stated that siting problems encountered at the state level are slowing the "" meandering transition "" to competition . he feels that the state of california and ferc need to work together to resolve these problems and that ferc is not attempting to usurp power . rather , california is part of a broader interstate market and is dependent on the western region for reliable energy , thus placing the burden on federal action to make things work , hoecker maintained . the chairman also said that the commission will fully investigate and act upon complaints of market power abuse or further evidence provided by staff ' s ongoing investigation . if you have any questions or comments , please call jack cashin at 202 / 508 - 5499 .",0 +"Subject: revised : restricted list neither ena / rac / egf employees nor family members or others living in their household or financially dependent on the ena / rac / egf employee may purchase or sell securities of any entity ( or derivatives thereof ) listed on the restricted list for your or their personal or related accounts or recommend the purchase or sale of such securities to any person , except with the prior approval of the compliance department in consultation with the ena legal department . in addition to the trading restrictions above , should you at any time possess non - public material information about any public company , you , your family members and anybody that is financially dependent on you , are restricted from trading in that issue , and you may not disclose the non - public material information to anyone that does not have a business need to know . company name stock symbol adrian resources beau canada exploration ltd bau cn belco oil & gas corporation bog bonus resource services corp bou brigham exploration bexp canfibre group ltd . cfgl carrizo oil & gas inc . crzo costilla energy cose crown energy croe cynet , inc . cyne cypress energy cyz esenjay exploration esnj hanover compressor co . hc ice drilling enterprises inc . idf industrial holdings , inc . ihii inland resources , inc . inln kafus environmental industries , inc . ks nakornthai strip mill public co ltd nsm set paladin resources plc plr ld paradigm geophysical pgeof place resources , inc . plg cn quanta services inc . pwr queen sand resources , inc . qsri quicksilver resources inc . kwk rhythms netconnection inc . rthm saxon petroleum , inc . sxn cn startech seh cn syntroleum corp . synm tejon ranch corp . trc titan exploration texp transcoastal marine services , inc . tcms zargon oil & gas zar cn the restricted list is solely for the internal use of ena / rac / egf . no one may engage in discussions regarding whether a security is or is not on the restricted list with persons outside ena / rac / egf without specific clearance from the compliance department in consultation with the ena legal department . in addition to the above , you are reminded that pursuant to enron corp . ' s risk management policy ( "" policy "" ) , no ena / rac / egf employee may engage in the trading of any "" position "" ( "" position "" means any commodity , financial instrument , security , equity , financial asset or liability that are authorized for trading in the policy for the benefit of any party other than ena / rac / egf , whether for his / her own account or the account of any third party , where such position relates to ( i ) any commodity , financial instrument , security , equity , financial asset or liability which falls within such employee ' s responsibility at ena / rac / egf or ( ii ) any energy commodity . the prohibitions listed above do not replace or modify the policies set forth in ena ' s policies and procedures regarding confidential information and securities trading , enron corp . ' s risk management policy , or enron corp . ' s conduct of business affairs . should you have any questions regarding the above , please contact me at ext . 31939 .",0 +"Subject: seasonal factors and curve fitting i have written a c + + code to do the following : for a given curve , the code will filter out the seasonal factor . it then fits the deseasoned curve to a smooth function of the form f ( t ) = a + a / ( t + b ) c , with 00 , which is useful in calculating forward - forward ? vol . ? the outputs are season patterns ( 2 different patterns are allowed ) ? and the smoothed curve . one can then calculate forward - forward vol ? from the smoothed curve and superimpose the seasonal factors back ? onto the curve . ? ? this procedure is not useful for var calcuation . however , i believe it ? is useful for other situations which require the knowledge of seasonal ? forward - forward vols . for example , in power plant valuation and ? credit exposure simulations , it would reflect the reality more closely ? if we add seasonality to our forward - forward vol in simulating the forward ? prices . ? ? attached are the spreadsheet and xll file . i will forward the c code if ? any of you is interested . ? ? alex ? ?",0 +"Subject: doreen v - i spoke with doreen this morning re : our san francisco project . please forward info to her at doreen @ magdalinweiss . com are you up fro brunch at my house on sunday with bill and mary ? kathryn will be home on midterm break p -",0 +"Subject: re : ken lay ' s speech the $ 460 billion would be the cumulative tax cut over the first five years . the $ 1 . 3 trillion would be the cumulative tax cut over 10 years , so yes , the $ 460 billion is part of the $ 1 . 3 trillion . attached is the inforamtion that you requested on the ppi . regards , maureen",0 +"Subject: fea announces the release of @ energy 2 . 1 . 05 / 14 / 2001 enron north america corp . vince kaminski 1400 smith street 30 th floor , rm . 3036 b houston , tx 77251 - 1188 1 713 - 853 - 3848 dear vince kaminski , this is to inform you of the release of @ energy 2 . 1 . ftp download instructions are available immediately . the download instructions are included at the end of this email . please see below for more information regarding this new release . . fea is pleased to enclose your new version of @ energy / erglib . the accompanying documentation contains installation and other information . here is an overview of the new and changed features since version 2 . 0 . @ energy ( forward curve ) no change . @ energy ( basics ) a control variate methodology hull ( 1997 ) has been implemented for valuation of american options ( opt ) , black and mean - reverting models . it greatly improves accuracy at minimal cost in speed . all models now supports new scalar risk measures corresponding to parallel displacement delta , hedge , and gamma . average price / strike options now support an alternative way of computing theta . the definition of gamma curves has been modified for all models . @ energy ( advanced ) a faster and more accurate methodology is used to value spread options . models affected are spreadopt , stripspreadopt , optspreadopt , optstripspreadopt . the new methodology dramatically improves speed . all models now supports new scalar risk measures corresponding to parallel displacement delta , hedge , and gamma . average price / strike options now support an alternative way of computing theta . the definition of gamma curves has been modified for all models . @ energy ( swing ) the definition of gamma curves has been modified for all models . @ energy ( weather ) no change . see the file fea \ energy \ ergnote . txt in your distribution for a list of bug fixes . here is an overview of the new and changed features since version 1 . 6 . @ energy ( forward curve ) jump parameters are now calibrated for use in other @ energy functions . inputs and outputs to powercalib and comcalib have changed . see the corresponding function syntax in the user guide for additional information . 35 - 40 % speed improvement . the module is now out of beta . @ energy ( basics ) different interpolation schemes on forward prices are now supported . if you use indexswap , exoticswap , or optindexswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . a new utility function , pathutil , allows you to simulate and visualize price paths consistent with the models supported by @ energy . 25 - 30 % speed improvement . @ energy ( advanced ) different interpolation schemes on forward prices are now supported . if you use optdiffswap or diffswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . calspreadopt now allows for the specification of two different mean reversion rates . 30 - 35 % speed improvement . @ energy ( swing ) swingopt and stripswingopt now allow for valuation of swing straddle contracts with overall load constraints . 65 - 70 % speed improvement . the module is now out of beta . @ energy ( weather ) 30 - 35 % speed improvement . see the file fea \ energy \ ergnote . txt in your distribution for a list of bug fixes . if you are a user of the erglib library , please be aware of possible backward compatibility issues in calls to eapo , easo , espreadapo , espreadaso , and ecrackapo . see fea \ energy \ ergnote . txt for additional details . here is an overview of the new and changed features since version 1 . 5 . @ energy ( basics ) european options and strips of european options now support valuation via a jump diffusion model ( see opt and stripopt functions ) . average price options ( see the apo , spreadapo , crackapo functions ) , and average strike options ( see the aso , spreadaso functions ) now allow for a direct input of the fixing dates . @ energy ( advanced ) includes two new functions , optstripopt and optstripspreadopt for valuation of complex compound options . if you are a user of the erglib library , please be aware of backward compatibility issues in calls to eapo , easo , espreadapo , espreadaso , and ecrackapo . see fea \ energy \ ergnote . txt for additional details . here is an overview of the new and changed features since version 1 . 4 . @ energy ( forward curve ) @ energy ( forward curve ) is the new module which includes functions designed to generate forward curves , volatility curves and mean reversion rates used in many other @ energy functions . module in beta release . @ energy ( basics ) apo ' s and aso ' s : bug fixed when avg _ starts prompt . type "" quit "" . the file will be downloaded into the directory at which you entered the ftp site . double click on the exe and follow the instructions on the screen . there is also a readme file which contains installation instructions . you may wish to print this out for easy reference . n . b . : the password is only valid until the first friday of next month . if you have any questions please feel free to contact us . we appreciate this opportunity to be of continuing service to enron north america corp . . regards , erin hopkins administrative assistant financial engineering associtates , inc . tel : + 1 . 510 . 548 . 6200 mailto : info @ fea . com or mailto : support @ fea . com",0 +"Subject: re : garp 2001 convention andreas , am i entitled to bringing one delegate as a guest , free of charge ? some conferences offer such privileges . vince "" andreas simou "" on 12 / 04 / 2000 06 : 31 : 37 am to : cc : subject : garp 2001 convention dear garp 2001 speaker ? this is just a quick note to keep you up - to - date with developments at the garp 2001 convention , which will be held in new york between 12 th and 15 th february , 2001 . ? thus far , garp 2001 looks set to far exceed our expectations and garp 2000 . there has been a great deal of interest in the 2001 convention . delegate bookings have been much higher than this time last year . as a result , we are set to far exceed the number of delegates that attention earlier this year . the three workshops and the one - day asset management forum are also very well received and will probably reach full capacity . i will of course provide you with much fuller details closer to the time of the event . ? regarding the event itself , i would like a few outstanding issues : ? 1 . presentations : can you please e - mail your presentation to me by 15 th december , so that i have enough time to reproduce them and place them in a delegate pack for the convention . ( given the break of the christmas and new york period , and that the event is being held in new york , i am sure you can appreciate that there are certain logistical factors that need to be taken into account , hence the reason why the presentations are required as soon as possible ) . this is purely for reproduction , we also request you bring your presentation to the convention on the day in either a floppy disc or a laptop . ? 2 . audio - visual requirements : can you please inform me of what audio - visual requirements you may have ( 35 mm slides ; ohp ; lcd projection - notably powerpoint ) . ? 3 . check list : i have attached a check list for your information . if you have not returned this already , can you please read and fax it to my colleague , claire as soon as possible . ? if you have any questions or queries , please do not hesitate to contact me , otherwise i eagerly await your response in due course . ? i look forward to seeing you in new york in february . ? kind regards ? andreas _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900 ? don ' t miss the garp 2001 convention , program details via our web site www . garp . com - speaker checklist . doc",0 +"Subject: logistics for the sycamore meeting in chelmsford next week hi barb , please add the following enron names to your list . i will call to confirm this later today ( 1 / 28 / 00 ) . krishna and samer , please go ahead and arrange the travel plans as per the following schedule and my e - mail before . kind regards , ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 01 / 28 / 00 11 : 10 am - - - - - barb . vanbeyrer @ sycamorenet . com 01 / 28 / 00 08 : 56 am to : phil markwart / enron communications @ enron communications cc : ravi thuraisingham / enron communications @ enron communications , erik simpson / enron communications @ enron communications , stinson gibner @ ect , john griebling / enron communications @ enron communications , allan grimm / enron communications @ enron communications , dorn hetzel / enron communications @ enron communications , michael baker / enron communications @ enron communications , nicole gilson / enron communications @ enron communications , hardeep luthra / contractor / enron communications @ enron communications , larry . sakauye @ sycamorenet . com , richard reichardt / enron communications @ enron communications , susan wadle / enron communications @ enron communications subject : logistics for the sycamore meeting in chelmsford next week hi phil , here are the logistical details for our meetings next week at sycamore in chelmsord ( 10 elizabeth drive ) . hotel : double tree in lowell . transportation : everyone should fly into boston monday afternoon / early evening . chelmsford is about 40 - 45 minutes from the airport , more in traffic . i can arrange for a car service from the airport to the restaurant monday night for everyone , and have the limo wait for you until we are through with dinner ( then everyone can leave there bags in the limo ) . if some or all want to use this car service , i ' ll need their flight information by friday afternoon so i can make arrangements . here is the agenda for next week : monday : dinner at 7 : 30 pm - agresti ' s restaurant , 175 littleton rd , westford , ma . directions will immediately follow this email . tuesday meetings at sycamore 8 : 30 am - 5 : 00 pm planning session : - enron ' s business drivers / vision - enron ' s optical networking architecture - dinner planned - - location tbd wednesday meetings at sycamore 8 : 30 am - 5 : 00 pm planning session : - detailed route design - deployment planning - dinner planned - - location tbd ( boston ? ) thursday meetings at sycamore 8 : 30 am - 4 : 00 pm - review detailed route designs - metro area services : access partners - depart for airport at 4 pm thursday , or friday morning depending on flight availability as of this morning , here is the list of enron attendees that we are expecting : john griebling dorn hetzel phil markwart ravi thuraisingham stinson gibner allan grimm erik simpson mike baker nicole gilson hardeep luthra richard reichardt valient employee ( i have no name as of today ) can you please let me know of any additions or changes to the attendee list ? and please send this email to anyone planning to attend that is not on the cc : ' d list . thanks . please call me today , or over the weekend if you have any questions . my cell phone number is listed below . look forward to seeing everyone next week ! barb barbara van beyrer national account manager sycamore networks office : 503 - 977 - 6354 mobile : 503 - 781 - 0693 fax : 503 - 977 - 6185 barb . vanbeyrer @ sycamorenet . com www . syacmorenet . com",0 +"Subject: energy & power risk management 2001 dear vince , i would like to confirm the invitation for you to participate at our annual congress in houston . following our conversation , i would be most interested in including a presentation on ' modeling price volatility in us power markets ' in the pricing , hedging & trading stream on the 14 th may , 2001 . i am keen to confirm each speaker and session by the end of next week , which will then allow time to work with each presenter on titles and points that will provide an accurate summary for the session . if you have any overall views or suggestions regarding the conference feel free to email me at pbristow @ riskwaters . com or call me on 212 925 6990 , extn . 225 . i look forward to confirming your participation at energy & power risk management 2001 . important : due to system problems i am using another system . please do not reply to this email . please reply to the address given above . yours sincerely , paul bristow manager of conferences , usa risk waters group - spktemp 2 . doc",0 +"Subject: introduction of the european gas advisory service and european po wer advisory service to : european gas and power clients from : peter hughes , cera senior director ; scott foster , cera director ; simon blakey , cera director ; mack brothers , cera director date : 14 march 2000 re : introduction of the european gas advisory service and european power advisory service for the past 15 years , cera ' s european gas and power retainer advisory service has been primarily a natural gas service , with a small component related to electric power issues . in recognition of the changing industry and regulatory environment for electric power , we have significantly added to our electric power capabilities in europe over the past three years , in terms of both staff and of the depth and breadth of our research . based on strong client demand for a dedicated team and service focused on the impending sea change for the power industry and our desire not to lessen the service we provide to the natural gas industry and market in europe , cera is pleased to announce the launch of the european power advisory service as of 1 april 2000 . this new service , in combination with our existing european gas advisory service , will maintain cera ' s thought leadership and provide clients with an "" early warning "" system in these fast changing and important markets . the two teams will continue to work closely together , which will allow them to identify and analyze the important aspects of "" convergence "" between the gas and electric power markets while highlighting and researching the independent issues in each market . european gas advisory service the european gas advisory service will continue to provide clients with independent analysis and insight on the changing dynamics of the european gas market . it offers decision makers clear and comprehensive analysis on the future energy landscape and the challenges posed by the emerging competitive environment in europe . the focus is on market fundamentals , the impact of european union and national policies , the changing industry structure , and strategic responses . the deliverables include : the semi - annual european gas watch european gas decision briefs european gas private reports european gas energy signposts interactive media conference calls dedicated european gas website - highlighting cera ' s current thinking and market fundamentals on the gas sector in europe on a country - by - country basis . attendance at european gas roundtables ( optional ) european power advisory service the european power advisory service will provide clients with independent analysis and insight on the changing dynamics of the european power market . the service will review the market fundamentals for the european electricity market and will provide clients with a framework for understanding and interpreting the major changes taking place in the market . european power advisory service will present cera ' s view of the dynamics and assessment of the opportunities being created in the market . the deliverables will include : a semi - annual european power watch european power decision briefs european power private reports european power energy signposts interactive media conference calls dedicated european power website - highlighting cera ' s current thinking and market fundamentals on the power sector in europe on a country - by - country basis . attendance at european power roundtable ( optional ) we are pleased at this opportunity to enhance cera ' s coverage of a rapidly changing market and look forward to providing you with deeper and broader perspectives on the future of european energy . if you have any questions regarding this exciting transition , please contact mack brothers * in our paris office at + 33 ( 0 ) 1 42 44 10 10 . also please note the upcoming european gas and european power roundtable sessions scheduled for monday 5 june 2000 in paris . these roundtables commence at 9 a . m . and include dinner that evening . * cera is pleased to announce that as of 1 april 2000 mack brothers will be moving from our cambridge office to our paris office to head the commercial team for european energy . * * end * * this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . - attl . htm",0 +"Subject: leadership committees we are launching a number of committees to perform key functions across enron . enron  , s breadth of activities and nonhierarchal organization make it increasingly necessary to broaden the participation of enron  , s next generation of leadership in the important decisions affecting the company . broadening participation will result in increased access to information as decisions are made and will allow committee members to extend their working relationships and influence throughout the company . the committee charters and memberships are set forth below . not everyone listed has been contacted in advance . we urge you to serve if at all possible , but , if you cannot , please contact the committee chair . vp prc the vp prc will continue to be responsible for evaluating the performance of enron  , s vice presidents , determining promotions to vice president , and recommending promotions to managing director . additionally , the vp prc will review and propose changes to the prc process , the performance evaluation criteria and the promotion criteria . the vp prc will be chaired by dave delainey and its membership is as follows : tim belden ben glisan danny mccarty michael brown joe gold jeff mcmahon rick buy mark haedicke rob milnthorp wes colwell jim hughes matthew scrimshaw david cox louise kitchen jeff shankman janet dietrich michael kopper richard shapiro dave duran john lavorato marty sunde jim fallon dan leff analyst / associate prc the analyst / associate prc will be divided into 3 groups . enron europe will have the same committee evaluate analysts and associates . this group will be chaired by john sherriff and its membership is as follows : pierre aury kevin heffron andreas radmacher rob bayley joe hirl stuart rexrode paul chivers chris mahoney marcello romano markus fiala christopher mckey bjarne schieldrop david gallagher roy poyntz ron slimp bruce garner paul quilkey rob stewart the associate prc for the americas will be chaired by stan horton and its membership is as follows : sally beck troy henry kevin presto jeremy blachman sean holmes brad richter don black sean long stewart seeligson dan castagnola rodney malcolm hunter shively joe deffner scott neal jim steffes kevin garland john nowlan andy zipper david gorte ozzie pagan the analyst prc for the americas will be chaired by steve kean and its membership is as follows : federico cerisoli mark jackson everett plante jennifer fraser ben jacoby paul racicot derrick davies steve jernigan angela schwarz scott gahn jay lewis ed smida rod hayslett cheryl lipshutz jon thomsen rogers herndon michael mann emilio vicens brenda herod ed mcmichael frank vickers kevin howard steve meyers analyst / associate program the most essential determinant of enron  , s continued growth is our ability to attract and develop new talent . the analyst / associate program has been the biggest contributor to our success in this area . charlene jackson , currently leading our analyst / associate program , has taken a commercial position in ees  , account management organization . we thank charlene for her hard work and many contributions to the program . going forward , this program will be administered by a committee chaired by john sherriff , ceo of enron europe . the members of this committee are listed below . billy lemmons , currently vice president of enron global markets , will lead the day - to - day operations of the program . billy joined enron in 1992 , and has served in a variety of commercial capacities across the company and has been an active participant in the associate / analyst program . please join us in congratulating billy on his new responsibilities . phillip allen andy fastow eric shaw robina barker - bennett kevin garland hunter shively rick causey ken rice stu staley joe deffner culture we are combining the vision and values , diversity and corporate responsibility committees into a single corporate culture committee chaired by ken lay . cindy olson , beth tilney and kelly kimberly will serve as executive directors of this committee . this committee will focus on leadership and work - life issues ( making it easier to attract and retain the best talent ) , in addition to continuing the work of the vision and values , diversity and corporate responsibility task forces . the members of this committee are as follows : greg adams louise kitchen mark palmer shelley corman michael kopper paula rieker janet dietrich richard lewis jeff shankman jeff donahue sean long mitch taylor gene humphrey dan mccarty mike terraso robert jones jean mrha the corporate policy committee will conduct the md prc and review the recommendations of the other committees , giving substantial deference to the decisions of those other committees . we will be forming other committees to deal with other significant functions , tasks and issues facing the company .",0 +"Subject: employees that are listed in the research time site that are not in the research group hello everyone : in doing the sap timesheets this time i have discovered there are several people listed in the 105896 cost center - org . unit # 1424 ( research ) that are no longer in the research group . shouldn ' t they be moved ? they are : alexios kollaros 502373 now with the new power co . farouk lalji 501609 analyst rotated out ainsley gaddis 400250 summer intern returned to school ( last day the 11 th ) mandeep chahal 502876 now with the new power co . james aimone 514849 summer intern returned to school ( last day the 11 th ) roman zadorozhny 501778 now with another co . in enron please let me know if i need to do anything . thanks ! shirley",0 +"Subject: re : vacation shirley , no problem . vince shirley crenshaw 01 / 09 / 2001 10 : 24 am to : vince j kaminski / hou / ect @ ect cc : subject : vacation vince : if it is allright , i would like to take the following days as vacation days : friday , january 12 friday , february 2 anita will be here . thanks ! shirley",0 +"Subject: spreadsheet for george posey vince and clayton : attached is the spread sheet i worked up for george posey . feel free to edit or let me know and i will . thanks !",0 +"Subject: meeting with vince kaminski hello mr . roberts : vince kaminski will be arriving in london on monday , the 18 th of september at 9 : 55 am . he would be available to meet with you in the afternoon on the 18 th . please let me know if this is acceptable and who the individuals are that will be attending the meeting . you also mentioned an agenda , which would be great . thanks ! shirley crenshaw administrative coordinator enron research group",0 +"Subject: flat screens hello , please call or contact regarding the other flat screens requested . trisha tlapek - eb 3132 b michael sergeev - eb 3132 a also the sun blocker that was taken away from eb 3131 a . trisha should two monitors also michael . thanks kevin moore",0 +"Subject: re : follow - up on siam workshop thanks for forwarding peter ' s resume . by copy of this memo i am forwarding peter ' s resume to danny mccarty and phil lowry . danny and phil : please follow - up with vince if you have an interest in meeting with peter . he seems to be a very qualified candidate . vince j kaminski @ ect 04 / 30 / 2001 02 : 28 pm to : stanley horton / corp / enron @ enron , danny mccarty / et & s / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : follow - up on siam workshop i am forwarding for your attention the resume of peter percell who has an extensive experience in modeling physical flows of natural gas in pipeline systems . peter is looking currently for a job . i met him last week at the meeting of the science and industry advance with mathematics society at the university of houston . the application of recent developments in optimization theory and numerical methods can help enron to improve further efficiency of our pipeline system and reduce the consumption of compressor fuel . please , let me know if you interested in introducing peter to executives in your organization . i shall be glad to make arrangements for an interview . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - peter percell on 04 / 30 / 2001 11 : 16 : 58 am to : vincent kaminski cc : subject : follow - up on siam workshop i enjoyed your presentation , and meeting you briefly afterwards , at the siam workshop last friday . i have extensive experience as a technical leader in the design and development of modeling and simulation software products , mostly for the oil and gas pipeline industry . i am looking for a position that can utilize my software development and mathematical skills . getting out of the narrow confines of the pipeline simulation industry would be a plus . please consider whether i might fit in your group . your answer to a question indicated that i have several of the skills you look for . also , please let me know , by email , the names and contact information of other managers within enron who might benefit from having someone with my qualifications in their group . attached are my resume and an addendum covering academic & consulting experience . publications are available on request . i will call you in a couple of days to follow up on this email . thank you for your time . peter percell 10030 doliver drive percell @ swbell . net houston , tx 77042 - 2016 ( 713 ) 532 - 3836 voice & fax - percell , peter resume only . doc - percell , peter a & c exp . doc",0 +"Subject: hello hi vince , how are you . it was really a pleasure meeting you and talking to you at the toronto energy derivative conference . thank you for speaking with me about the possibility of visiting your research group . it will be great if i could have such opportunity whenever you see your schedule fits . i am very much open for the last week of july and early august . i ' m looking forward to hearing from you soon . best , shijie shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng",0 +"Subject: resume for bruce james dr . kaminski : please find attached my resume and cover letter . sincerely , bruce james - jameslett 60 . zip",0 +"Subject: ( no subject ) vince , here are the overview powerpoint slides for the investment and strategic relationship management firm , azure capital , i mentioned in my voice mail . the transactions they completed in their past lives at csfb and already in the new firm , as well as their advisory board are probably the strongest evidence of their capabilities . hope all is well . blake - azure slides . ppt",0 +"Subject: resume - rabi de vince , thanks for returning my call . here ' s rabi ' s resume for your review . as i mentioned , i worked with rabi for a little over a year at shell and was very impressed with both his abilities and work ethic . if you would like any further info from me , please do not hesitate to give me a call . thanks . bill ( for human resources ) - - - - - - - - - - - - - - - - - - - - - - forwarded by bill berkeland / corp / enron on 06 / 26 / 2000 11 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - rabi de on 06 / 25 / 2000 08 : 24 : 07 pm to : bill . berkeland @ enron . com cc : subject : resume dear bill : thank you very much for volunteering to circulate my resume within enron . as you know , i am interested in exploring career opportunities in financial engineering within enron . i am particularly interested in joining the research group headed by dr . vince kaminski . enron continues to innovate its way through the energy and telecom marketplace using its substantial intellectual capital . the enclosed resume details my experience , academic background , and contributions in the area of risk modeling and management . understanding risk is a core competency of enron and i am excited about the possibility of working , learning , and growing with the very best in the industry . please forward my resume within enron as you see fit . thank you in advance for any referrals or recommendations you may be able to provide . best regards , rabi s . de do you yahoo ! ? get yahoo ! mail - free email you can access from anywhere !",0 +"Subject: re : transition to research group - an update sounds great - - molly vince j kaminski 01 / 19 / 2001 06 : 21 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly , thanks . let ' s wait for sandeep : he comes back wednesday . anshuman will work with him . vince enron north america corp . from : molly magee 01 / 19 / 2001 06 : 08 pm to : margaret daffin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update once again , margaret , we are in your debt . vince , let ' s get together some time next week and see where you would like us to go with this . . . molly margaret daffin 01 / 19 / 2001 03 : 27 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly : just to be sure that everyone understands , anshuman cannot work in the us on a bl visa - he can only come here for business meetings and training . we will have to get him the ll visa in order for him to work in the us . margaret enron north america corp . from : molly magee 01 / 19 / 2001 02 : 53 pm to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update thank you so much for the information , vince . i hope that you have a great weekend ! molly vince j kaminski 01 / 19 / 2001 02 : 39 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly , i shall ask sandeep to do it when he comes back from india next week . i have just learned that anshuman has bl visa and he can start on a project as a person delegated by dhabol power company to houston . to be absolutely above the line , i would still arrange the ll visa . vince enron north america corp . from : molly magee 01 / 19 / 2001 10 : 44 am to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update i agree that it makes sense to put the ll in place . there are several things we will need from you in order to start the visa process . the first is a fairly detailed job description for anshuman . secondly , we also need to know whether or not he will be in a managerial position here and / or managing a project . if there is someone else in your group who can furnish this job description , just let me know and i will be happy to contact him / her . as for sandeep , i have been told that he is a u . s . resident so there should be no problems with him . margaret daffin will be contacting him to be absolutely sure . thanks , molly vince j kaminski 01 / 19 / 2001 10 : 21 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly , let ' s get ll for anshuman , just in case . i am sure he will stay here for a while once he comes . it is quite obvious jeff shankman will have to keep him longer , given the priority of the project . i assume there are no problems with sandeep . thanks . vince enron north america corp . from : molly magee 01 / 19 / 2001 09 : 54 am to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update thank you for the update , vince . i have been working with margaret daffin with regard to anshuman ' s visa status . we will have to get an ll visa in place before he can come to the united states , even in a temporary capacity . do you want to move forward with that effort at this time , or is the possibility of him coming to the u . s . so remote that it wouldn ' t be worth the time and money right now ? molly vince j kaminski 01 / 19 / 2001 09 : 42 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : transition to research group - an update molly , this is an update on anshuman . please , see below . it seems that his transfer is not an issue for the time being . we can put it on a back - burner till he gets here . vince p . s . the relevant section . i also spoke about anshuman , and there was resistance to his leaing for such a long time . however , i have agreement from folks here to send him to houston for a shorter stint on dpc budget . i will try to finalize that before i leave . i will call you in the evening to just chat . - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 19 / 2001 09 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli @ enron _ development 01 / 19 / 2001 04 : 32 am to : vince j kaminski @ ect cc : subject : transition to research group - an update vince , just wanted to let you know that i had a meeting with wade cline ( coo , enron india ) , neil mcgregor ( president , dpc ) , and mohan gurunath ( cfo , dpc ) today . though i had already spoken to all of them earlier about my joining your group , today it became official , and all of them supported the move . i explained to them what we would be doing , and the results expected from the henwood study . dpc would like to pay the costs for the study , and that was mentioned . there maybe some tax issues etc . that need to be cleared , and other related issues that i would like to discuss with you , so i will leave them till i get to houston . i also spoke about anshuman , and there was resistance to his leaing for such a long time . however , i have agreement from folks here to send him to houston for a shorter stint on dpc budget . i will try to finalize that before i leave . i will call you in the evening to just chat . i am very thankful to you for giving the opportunity you have . things here have deteriorated dramatically over the last few weeks . morale is quite down due to many lay - offs . i am really looking forward to returning to houston , and the family ! ! regards , sandeep .",0 +"Subject: re : summer work . . jinbaek , thanks for your message . we have a number of additional fascinating projects that you can work on . as a matter of fact , it would be great to have you here earlier . vince "" jinbaek kim "" on 05 / 02 / 2001 05 : 18 : 32 am to : , "" raghavan , suresh "" , "" mesquita , ross "" cc : subject : summer work . . long time no see , how have you been . . . must be busy and living a challenging life ? i have been pretty busy too , to finish a project and write a paper , these days . everything looks going ok for my summer internship . i took necessary steps to work out of campus , and sent signed contract to molly a week ago . . here is what i am expecting to do in the summer . please let me know if you have any change in mind . actually , i wonder a little bit if dealbench changed its business model . . . and maybe you got priority in something different because it has been quite a while since we talked . i ' d like to what ' s going on in dealbench team . . . raghavan and ross , if we talk over phone it will be great ! dr . kaminski , if you think there is something else interesting to work with during the summer , to both you and i , please let me know . my interest is auction , market design , and simulation . i am taking a financial engineering class , ( mostly on option pricing ) and working on electricity generator valuation problem based on spark spread option . all of you , let ' s keep in touch until we meet in june ! ! best regards , jinbaek tentative work period : 6 / 4 - 8 / 4 1 . tasks : 1 ) survey on auctions : the state of art single - item auction , multi - unit auction , sequential auction , multi - attribute auction , combinatorial auction - theoretical - experimental - algorithmical 2 ) deal bench ' s auction model analysis 2 . deliverables : 1 ) 3 presentations : - lst presentation : around 6 / 30 : on different auction types and researches - 2 nd presentation : around 7 / 15 : the state of art in auction studies - 3 rd presentation : around 8 / 1 : deal bench ' s model analysis 2 ) report : summary of auction study in laymen ' s term deal bench ' s model analysis",0 +"Subject: contstraints on the shape of a smile stinson , vince , zimin , here ' s a brief document on constraints on the shape of a smile for a fixed expiry date . the constraints are neccessary and sufficient for no arbitrage in this case . i ' ve used a template created by dr . leppard which is why it looks so scary . if you need constraints in the time direction then i will have to think a little bit more about it . i think constraints in this direction are very model depenendent e . g . stochastic volatility and local volatility models will throw up different constraints . steve , i am not sure if our traders ( or quants for that matter ) are aware of these constraints and some desks are beginning to build smiles . . . regards sharad",0 +"Subject: re : invoices hi julie : the march invoice # 000166 was sent to our accounting department for payment on march 28 th . i have a call into them to see what happened to it . i will let you know . the aud 5000 invoice was sent to the accounting department but they sent it back saying they cannot pay invoices in foreign currency . so i then had to send it to the treasury dept . i will check on it today also . as far as the other invoice . it should be sent to our australia office to the attention of paul quilkey . we had agreed to split this with them . their address is : paul quilkey enron australia pty . ltd . level 21 9 castlereagh street sydney , nsw 200000 , australia if you need anything else , please let me know . shirley . "" julie "" on 12 / 12 / 2000 07 : 03 : 32 am please respond to "" julie "" to : cc : subject : invoices shirley , ? sorry to bother you again , but we still have two outstanding invoices from enron . ? they are : ? march ' 00 : ? ? ? ? ? enron ? inv . 000166 ? ? ? ? ? ? usd 4900 ? september ' 00 ? ? enron inv . 000202 ? ? ? ? ? ? ? aud 5000 i have another invoice to send out for the balance of ? the original aud 10 , 000 ( balance would be the remaining aud 5 , 000 ) , but ? i ' m ? unsure to whom i should direct it ? ? i sent ? an email to vince several weeks ago asking for this information , but haven ' t heard ( assume he ' s tremendously busy ) . ? let me know what you ? need from ? me . ? thanks , julie ? lacima group ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?",0 +"Subject: re : mscf speaker series pierre - philippe , friday would be beter . vince pierre - philippe ste - marie on 10 / 09 / 2000 10 : 11 : 37 am to : vince . j . kaminski @ enron . com cc : subject : re : mscf speaker series dear mr . kaminski , it goes without saying that whoever come with you is invited for dinner . would you prefer to have dinner on thursday night or friday night . i think it would be better friday night as we could discuss the presentation . sincerely , pierre - philippe ste - marie",0 +"Subject: hi vince ! please let me know if university affairs cana ssist in setting up interviews to address the ees issues raised by maheshram . i ' m at beaver creek in colorado now , and will be in california making presentations of various cases for completeing my phd course work jan 3 - 4 . back in houston on the 5 th . if anything needs to get arranged on this before then , please feel free to call mike rosen at 3 - 9624 . he will be happy to help . thanks vince ! may your new year be filled with peace - of - mind , good health and many joys ! see you there ! best regards ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 12 / 29 / 2000 12 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" vittal , maheshram "" on 12 / 26 / 2000 10 : 59 : 38 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : "" ' christie . patrick @ enron . com ' "" subject : re : houston trip dear vince / christie , thanks for coming to philadelphia to present an overview of the projects . we enjoyed meeting you and your colleagues and look forward to working with enron . i would also like to pass on my team ' s appreciation for the dinner as well . we wanted to give you an update on our project and get some feedback and additional information prior to our upcoming visit to houston on january 19 th . our project is going to be geared to the 3 rd option you mentioned . we plan on addressing some part of the retail energy services business . we are considering two options regarding this topic and would like to pursue either ( i ) how customers are acquired and recommending new processes and ways to serve retail customers , or ( ii ) studying the supply chain and coming up with recommendations for areas for further investments . however , we would like to get some more information on the retail energy services before truly scoping the project . we are also very open to suggestions , especially if you had a much broader or different scope in mind ; so please let us know . we have not yet reviewed the introductory information received last week , but here are the questions we have specific to the retail energy services unit : can we look at its overall business plan or a more detailed summary than is in the annual report ? what is the pricing philosophy / overall structure ? who are the customers and how are they acquired ? what would the customers be doing if they did not work with enron ? what are the international expansion plans and capabilities ? is there any important regulatory summary information we can have ? if this information is not already covered in the review material you sent , will you be able recommend other sources where we may find such information ? after we have reviewed the material sent to us recently , we may want to schedule a phone call with you and / or one of your colleagues directly involved in the retail energy services business . i would like to call you in the new year to discuss this further . in the meantime , please feel free to call me at ( 215 ) 546 - 9416 if you need any information . regards , retail energy services tiger team ram dennis jason omar steve clay",0 +"Subject: the real options conference shirley , please , forward my bio to crystal . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 11 / 2000 08 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - - crystal barry on 02 / 09 / 2000 05 : 05 : 17 am to : vince j kaminski / hou / ect @ ect cc : subject : the real options conference dear vince , as the above event is drawing closer , i thought i would write a quick email to finalise a few things with you . i understand that you would like a guest to attend , please can you let me know their name and job title . also , if you could send me your conference checklist i would appreciate it , so that i can finalise details with my audio visual company . in the meantime , if there is anything i can do for you , please do not hesitate to let me know on 0171 - 915 - 5116 . kind regards crystal",0 +"Subject: off - site : john griebling ' s organization and research group jeff , i would like to invite you to an off - site meeting of john griebling ' s organization and the research group . date : april 27 - april 29 location : breckenridge , colorado as you know , john griebling is managing the network design and construction project currently under way in ebs . the research group is actively involved in this effort which requires advanced quantitative skills in the area of stochastic optimization and stochastic processes ( for modeling and forecasting internet traffic flows ) . the objective of this meeting is to develop common language and accomplish transfer of skills between the two groups , to facilitate cooperation on this project in the future . we are also inviting to this off - site senior management of ebs and plan to have on the agenda several presentations about strategic directions of ebs . the effort of network design and construction currently under way is unprecedented in terms of its scope and complexity and it is important for technical people , who often have highly specialized technical skills , to understand the broad picture . i would appreciate if you could join us for friday afternoon ( april 28 ) and saturday ( april 29 ) . i understand that you have commitments on thursday and friday morning . we have reorganized the tentative agenda of the meeting to devote friday afternoon to more general topics . vince",0 +"Subject: data for moody ' s riskcalc craig and kim , as you know , i have obtained a 60 day trial subscription to moody ' s riskcalc . you wanted to know if it makes sense for enron to purchase riskcalc . well , after plowing through their 100 page manual and sitting through today ' s 2 - hour moody ' s presentation , it is necessary for us to have information about enron ' s counterparties to move to the next step with riskcalc . we have obtained some information on enron ' s european counterparties from our colleagues in the london office . we need for you and / or your colleagues in the houston office to supply us with a list of enron ' s north american counterparties . more specifically , to evaluate moody ' s riskcalc we will need the following financial inputs for enron ' s north american ( private firm ) counterparties : fiscal year the prior twelve months of financial data are represented . annual statements are usable as well as quarterly statements after summing the flow variables , such as cost of goods sold , net income , sales , and ebit . the value should be a four - digit integer year without mention of the day or month such as 1999 or 2000 . forecasts until the year 2009 can be made . a constant rate of inflation is applied to future years using last year ' s ( 1999 ) inflation level . in general this ' estimation error ' will not cause any great problems , as size affects default rates at very large scales ( e . g . , $ 10 , 000 , 000 vs . $ 1 , 000 , 000 makes a significant difference , $ 1 , 000 , 000 vs . $ 1 , 050 , 00 does not ) . cash & equivalents this measure of liquid assets includes cash and marketable securities . inventory inventories are taken directly from the balance sheet , in thousands dollars , without any alterations for accounting method ( e . g . , lifo , fifo , average cost ) . this item represents merchandise bought for resale and materials and supplies purchased for use in production of revenue . specifically this would include purchase cost , sales cost , sales taxes , transportation costs , insurance costs , and storage costs . current assets this item primarily represents cash , inventories , accounts receivables , marketable securities , and other current assets . total assets total assets and every other variable are entered in thousands of dollars . for example , $ 15 , 500 , 000 should be entered as 15500 . specifically , total assets are the sum of current assets plus net property , plant , and equipment plus other noncurrent assets ( including intangible assets , deferred items , and investments and advances ) . leave previous year ' s total assets blank for australian companies . current liabilities liabilities are positive values . included in current liabilities are short - term debt , accounts payable , and other current liabilities . total liabilities this balance sheet account , total liabilities , is a positive number representing the sum of current liabilities plus long - term debt plus other noncurrent liabilities ( including deferred taxes , investment tax credit , and minority interest ) . retained earnings retained earnings , a historical measure of performance , is the cumulative earnings of the company less total dividend distributions to shareholders . typically , it is the prior year ' s retained earnings plus net income less distributions . retained earnings are generally positive . some firms with low credit quality will have negative retained earnings . leave this field blank for australian companies . sales this item consists of the industry segment ' s gross sales ( the amount of actual billings to customers for regular sales completed during the period ) reduced by cash discounts , trade discounts , and returned sales and allowances for which credit is given to customers . cost of goods sold entered in thousands of dollars , this value is generally a positive number less than sales . it represents all costs directly allocated by the company to production , such as material , labor , and overhead . not fixed overhead or items that would be included in selling , general , and administrative expenses . leave this field blank for australian companies . ebit earning before interest expense is operating income after depreciation . it can be positive or negative but is usually greater then net income . interest expense this item represents the periodic expense to the company of securing short - and long - term debt . typically , we expect this charge to be approximately the prevailing interest rate times the total liabilities . one measure of computing this is : interest expense = 0 . 07 * total liabilities . net income this item represents the income ( or loss ) reported by a company after expenses and losses have been subtracted from all revenues and gains for the fiscal period including extraordinary items and discontinued operations . a loss is represented by a negative sign . for example , a $ 5 , 000 , 000 loss would be entered as - 5000 . leave previous year ' s net income blank for australian companies . extraordinary items positive or negative , this item represents unusual items that sometimes appear on the income statement . the items are designated by the company as extraordinary and presented after net income from continuing operations and discontinued operations . these items include extraordinary gains / losses , income ( loss ) from discontinued operations , and cumulative affect of accounting changes . expenses are entered as negative values , gains as positive values . leave previous year ' s extraordinary items blank for australian companies . country this model is calibrated for the united states , canada , and australia . we look forward to receiving this information for enron ' s private firm north american counterparties so that we can move on to the next step with the evaluation of riskcalc . thanks , iris",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - crenshaw , shirley j wincenty j kaminski oct 26 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000",0 +"Subject: color copier information kevin , please see the following websites for features and specifications of the color copiers currently available to enron and pricing is on an attacment @ the bottom of the mesage . let me know if you would like to meet with any of the reps or if vince / mike / shirley or yourself would want to take a trip to the vendor location for demonstrations on any of the equipment listed below . these color copiers are only supported by the vendor and the lease would be between your group and the relative vendor . response times have been specified as 4 hr from the time the call is placed to the vendor tech arriving during normal business hours . after hours service is available @ premium rates , yet to be quoted = let me know if you require this after hours service pricing . epsc key - op does not currently support color copier equipment and as such , someone in your group would receive the necessary training for low level maintenance { jams / toner / staples etc } . you would also need to store the necessary supplies for the selected color copier . lanier 5706 website : - - > http : / / www . lanier . com / ps / products / wkgrp / c 5706 . html canon clc 900 website : - - > http : / / www . usa . canon . com / corpoffice / copiers / clc 900 . html lanier 5710 website : - - > http : / / www . lanier . com / ps / products / hivol / c 5710 . html canon clcl 150 website : - - > http : / / www . usa . canon . com / corpoffice / copiers / clcl 150 . html { we have one of these installed @ 3 acl 612 } canon clc 2400 website : - - > http : / / www . usa . canon . com / corpoffice / copiers / clc 2400 . html canon clcl 000 website : - - > http : / / www . usa . canon . com / corpoffice / copiers / clcl 000 . html { we have some of these installed @ 3 acl 8 & 3 aco 9 } pricing please see attached winzip file : - - > thanks , iain russell @ 713 - 853 - 6861 contracts supervisor administration enron property & services corp .",0 +"Subject: uk swap rpi model - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 31 / 2000 01 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - martina angelova 03 / 22 / 2000 02 : 59 pm to : zimin lu / hou / ect @ ect cc : anjam ahmad / lon / ect @ ect , trena mcfarland / lon / ect @ ect subject : uk swap rpi model hi zimin ! please find attached the rpi model i developed by bootstrapping rpi swaps . the structure of this particular swap is : semi / semi act / 365 f > > yoyukrpi = ( ukrpi ( p - 2 ) / ukrpi ( p - 14 ) - 1 ) / 2 > p = payment month > the first payment is the latest known historical rpi , february 2000 . you will notice that i have assumed constant cashflows between the quoted years ( as opposed to interpolating swaps which distorts the curve a lot ) . please find below a graphic comparison between the rpi curve produced by swaps and the one produced by the gilt market . looking forward to your comments . best regards , martina x 34327",0 +"Subject: risk systems enhancements meeting 9 / 29 / 00 - 11 : 30 - 1 : 00 p . m . eb 2868 tanya : fyi . this is the meeting you will be attending for vince tomorrow . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 28 / 2000 10 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - - dorothy youngblood 09 / 28 / 2000 09 : 11 am to : karen k heathman / hou / ect @ ect , jo corbitt / na / enron @ enron , rita hennessy / na / enron @ enron , cherylene r westbrook / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , peggy mccurley / hou / ect @ ect , patti thompson / hou / ect @ ect , giselle james / corp / enron @ enron cc : subject : risk systems enhancements meeting 9 / 29 / 00 - 11 : 30 - 1 : 00 p . m . eb 2868 ladies , good morning , just a reminder of the above referenced meeting will be held tomorrow 9 / 29 / 2000 @ 11 : 30 a . m . - 1 : 00 p . m . lunch will be served . attendees : rick buy sally beck philippe bibi ( or representative from his group ) bill bradford debbie brackett vince kaminski ( or representative from his group ) ted murphy beth perlman david port stephen stock thank you in advance . . dorothy 3 - 6114 - - - - - - - - - - - - - - - - - - - - - - forwarded by dorothy youngblood / hou / ect on 09 / 28 / 2000 08 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - - dorothy youngblood 09 / 21 / 2000 11 : 41 am to : karen k heathman / hou / ect @ ect , jo corbitt / na / enron @ enron , rita hennessy / na / enron @ enron , cherylene r westbrook / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , peggy mccurley / hou / ect @ ect , patti thompson / hou / ect @ ect , giselle james / corp / enron @ enron cc : subject : risk systems enhancements meeting 9 / 22 / 00 - 11 : 30 - 1 : 00 p . m . eb 2868 ladies , just a quick reminder about the meeting tomorrow . lunch will be served - - so each of your bosses or their representatives will be served . so they do not have to worry about bringing their lunches . yeah ! ! ! ! ! attendees : rick buy sally beck philippe bibi ( or representative from his group ) bill bradford debbie brackett vince kaminski ( or representative from his group ) ted murphy beth perlman david port stephen stock please see below : menu blackened chicken fettuccine fresh seasonal vegetables ceasar salad w / assorted dressings fresh baked rolls w / butter bottled water assorted drinks cookies ( assorted ) thank you very much in advance . thanks . . dy - - - - - - - - - - - - - - - - - - - - - - forwarded by dorothy youngblood / hou / ect on 09 / 21 / 2000 10 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - dorothy youngblood 09 / 19 / 2000 12 : 52 pm to : karen k heathman / hou / ect @ ect , jo corbitt / na / enron @ enron , rita hennessy / na / enron @ enron , cherylene r westbrook / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , peggy mccurley / hou / ect @ ect , patti thompson / hou / ect @ ect , giselle james / corp / enron @ enron cc : subject : risk systems enhancements meeting ladies rick buy would like to have the above meeting on a weekly basis . debbie brackett asked that i send an email to invite your bosses . the meeting will be from 11 : 30 a . m . - 1 : 00 p . m . this meeting will be held each friday - room eb 2868 for the rest of the year . attendees : rick buy bill bradford debbie brackett philippe bibi ted murphy david port stephen stock vince kaminski beth perlman sally beck thank you dorothy 3 - 6114 - - - - - - - - - - - - - - - - - - - - - - forwarded by dorothy youngblood / hou / ect on 09 / 19 / 2000 12 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie r brackett 09 / 11 / 2000 10 : 09 am to : dorothy youngblood / hou / ect @ ect cc : subject : rac it improvement projects - - - - - - - - - - - - - - - - - - - - - - forwarded by debbie r brackett / hou / ect on 09 / 11 / 2000 10 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - - rick buy @ enron 09 / 07 / 2000 04 : 35 pm sent by : jo corbitt @ enron to : sally beck / hou / ect @ ect , philippe a bibi / hou / ect @ ect , debbie r brackett / hou / ect @ ect , william s bradford / hou / ect @ ect , mike jordan / lon / ect @ ect , vince j kaminski / hou / ect @ ect , ted murphy / hou / ect @ ect cc : john j lavorato / corp / enron @ enron , mike mcconnell / hou / ect @ ect , john sherriff / lon / ect @ ect subject : rac it improvement projects",0 +"Subject: california power 1 / 15 / 01 vince - kristin mentioned that you might be interested in receiving our daily updates on the california situation . hope that you are doing well and let us know if you require any additional information . rj - - - - - - - - - - - - - - - - - - - - - - forwarded by robert johnston / hou / ect on 01 / 16 / 2001 08 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - robert johnston 01 / 15 / 2001 09 : 10 pm to : michelle d cisneros / hou / ect @ ect cc : gary hickerson / hou / ect @ ect , james d steffes / na / enron @ enron , richard shapiro / na / enron @ enron , jaime gualy / na / enron @ enron , john greene / lon / ect @ ect , jeff kinneman / hou / ect @ ect , kristin walsh / hou / ect @ ect , scott tholan / corp / enron @ enron subject : california power 1 / 15 / 01 as talks continued toward the tuesday deadline markets have been focused on for the california electricity crisis , state officials around governor gray davis have toughened up their rhetoric on a couple of fronts even as they confirmed they would be in the market as early as tuesday taking bids for energy to be paid by the state of california . one problem on that front is still how much producers want to charge the state for electricity . as we reported last week , davis and his aides want to pay around $ 50 to $ 55 dollars per megawatt hour and suppliers want about $ 75 . treasury secretary summers has suggested an auction as the best way to determine the price , but california officials are taking a less free market approach and still hope to set the price through negotiation over long - term contracts . our sources in washington , sacramento , and california are increasingly of the view that governor davis is positioning his government to establish long - term power contracts with the generators that could be passed through to the utilities following a bankruptcy in the near term . this week ' s legislative activities in sacramento will create the vehicle to do so . state credit backing purchases of power would obviate the need for super - priority borrowing to finance power purchases after utility bankruptcy . 1 . audit - untangling utility relationships california officials have also toughened their rhetoric on the debt repayment front as they say results from a preliminary audit show that half of the $ 9 to $ 12 billion the utilities say they owe is actually owed to themselves for power they bought from their corporate relations this strange situation is due to the fact that one holding company owns both the power - generating and power - distributing companies under a holding company umbrella . of course , that means that some of the power pg & e and southern california edison bought at highly inflated prices was bought from themselves . but it was not all bad news in the tense negotiations . sources confirm that davis increasingly understood that the state finance role was a crucial part of any potential solution . he told our sources this afternoon that he is willing to use state credit to eliminate the "" risky debt "" premium that pg & e and sce are being charged by suppliers because of their shaky finances and that he is willing to extend the current 10 % rate increase utility customers are paying far beyond the initial 90 - day deadline . in return he is demanding that the companies prepare to "" share the burden of debt reduction in return for state help and credit extension . "" 2 . debt restructuring - guarantees , but no direct state money davis also told the videoconference that he believes the $ 12 billion in back debt owed by the utility companies can be cleared up during a 90 - day forbearance period ( whether that period has been agreed to by all creditors is not something we are clear about right now ) . davis ' idea , as he laid it out in the meeting , is to use the forbearance period to securitize the debts and sell them against the utilities ' forward rate base or by establishing a medium - term repayment plan backed by continued state guarantees . in both cases the restructured debt would be resolved over a decade without direct use of taxpayer money as the utilities use their positive margins to paydown their debt . one of the reasons davis wants to stay close to the $ 50 - $ 55 megawatt charge is that it maximizes the rate at which utilities can pay down this debt . there is a strong chance that davis will agree to use state guarantees to sweeten the pot at the end of these negotiations , but he remains opposed to using direct state money . this frustrates both clinton administration and utility creditors , but davis has not yet shown much flexibility . 3 . eminent domain / reregulation perhaps most frustrating to the washington dc free market crowd at treasury and the white house was the continued comfort davis and his group of political advisers have with "" non - market "" solutions to the energy crisis . although the governor ' s aides actually believe the weapon is more a "" way to force eventual agreement , than an actual solution , "" the talk returns frequently to these non - market mechanisms . "" we have the ultimate weapon to enforce compliance by the tuesday deadline . if we make no progress . if this thing looks like it will turn into a genuine crisis , then we will use our powers of condemnation and we will re - take the plants and equipment and run them ourselves , "" a close political aide to davis said . "" we will absorb the plants , the transmission lines and the reserved parking places of the executives . the legislature would agree in a second . """,0 +"Subject: energy book fiona , ? thanks for your message and the update . ? we haven ' t made any changes . ? i was referring to the enron changes , and the electronic brochure i sent to you yesterday . ? in total , we have the following pieces which list the enron name : ? - ? book cover - ? bios which are on the cover and in the "" preface "" section of the book - ? chapter 3 which was written by vince kaminski ' s group - ? electronic brochure ? the first 3 pieces are the most important since they have to do with the printing of the book . ? if you could ? get the modifications to us by thursday , that would be great . ? ? thanks , and look forward to hearing from you . ? julie ?",0 +"Subject: re : yes sir jeff , thanks . we shall try to arrange a video conference with houston when howard is back . vince "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" on 02 / 05 / 2001 07 : 29 : 12 pm please respond to "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" to : vince . j . kaminski @ enron . com cc : subject : yes sir ok , vince . i ' ll track him and find when he is back . i will inform alec and his manager what you want . i ' m on it . thank you . jeff jeff , we shall continue talking to howard when he comes back from nyc . i shall set up an interview with him . vince * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: trash bash event on saturday , march 31 st thanks for the interest so many of you have shown in trash bash . several of you are of the mistaken idea that trash bash is tomorrow . it is not until saturday , march 31 , 2001 . registration will be in sam houston park and trash will be picked up along buffalo bayou from so . shephard to the wortham center . the work areas will be divided into 8 to 10 sections . when you check in , you will be assigned to a work section . if you are going to work at the registration desk , you need to be at sam houston park by 7 : 30 am . if you are going to pick - up trash , you need to be at sam houston park by 8 : 00 am . there will be a pre - registration desk set up in the lobby of the enron bldg . sometime during the week of march 26 th and i will let you know the exact dates when they are given to me . if you pre - register , you won ' t have to stand in the long lines at sam houston park . thanks again for your interest and help . anita",0 +"Subject: re : prospective 6 / 22 houston visit hi professor ronn : i have ordered a flip chart and markers and an overhead projector . there were 11 pages in your presentation and they look fine . we have already made the copies . i believe everything is set - if you think of anything else , please let me know . enjoy your dinner tonight and we will see you tomorrow . regards , shirley crenshaw "" ehud i . ronn "" on 06 / 21 / 2000 02 : 03 : 03 pm to : shirley . crenshaw @ enron . com cc : subject : re : prospective 6 / 22 houston visit shirley : > please let me know if you need > anything else . there is one additional item i would request : if the room does not contain a blackboard or whiteboard , i would appreciate a flip chart and markers . i am faxing you my presentation handout for tomorrow . i would be grateful if your produced copies in sufficient number for tomorrow ' s 11 : 30 a . m . meeting ; vince advises me the number of attendees will be in the 25 - 30 range . i will also bring along a "" master copy "" in case the trasmission unduly mangles the fax . thanks , ehud ehud i . ronn department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : visit to enron fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 05 / 19 / 2000 11 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 05 / 19 / 2000 11 : 33 : 29 am to : stinson . gibner @ enron . com cc : subject : re : visit to enron stinson , > 1 . will you be able to arrive in houston by , say , 6 p . m . on thursday so > that we can schedule a dinner meeting that evening ? i ' m arriving at the george bush airport in houston next thursday at 5 : 15 pm . i could then take a taxi to the hotel or the restaurant . how long would it take me to get there ? is there a "" rush hour "" problem at that time ? > also , if you are > returning on friday , what time is your flight ? i don ' t want to book > meetings too late in the afternoon for you , if you will need to leave for > the airport . i ' m flying out of houston on friday at 6 : 45 pm . is there a rush hour problem on the freeways at that time ? what time should i leave from enron to be at the airport at 6 pm ? > 2 . would you be amenable to giving a 45 minute presentation on friday ? > this would be an effective way of introducing you to many more people in > ebs , including many of the traders . the topic could be of your choice and > could be related to networks or the future of the internet . i hope i ' ll have opportunities to give talks at enron in subsequent visits along the research path . in this first visit i was hoping to understand better the research goals of enron and brainstorm with people about what are the top challenges and opportunities for our research collaboration . identifying the best research problems in terms of 1 ) highest innovation potential and 2 ) highest projected impact would be at the top of my list . it might be unprofessional on my side to talk to an audience that i don ' t have any prior information about and is very diverse anyway ; it could actually be "" dangerous . "" i would feel much more comfortable to do that in my second visit , after i have understood the environment better and i have some results to talk about . i would like to be in a position to "" impress "" people when i give my first talk at enron . ( besides , i will have to prepare good slides for such a talk and i am totally swamped all next week . ) > 3 . do you have time to draft a short letter of understanding that vince > could use to document the support being given to you and the uses which > would be made of our contribution to your research effort ? i ' m swamped , but i ' ll try to put something together . i look forward to seeing you next week . nick",0 +"Subject: good morning vince , attached you will find a draft "" thought document "" based on our conversations yesterday . i think that it captures much of my recollections . please edit it to your liking and pass it back to me . in the next steps i have laid out a plan of action that should lead us to a successful conclusion and a draft by christmas . let me emphasize that this is a working document so feel free to modify it in whatever ways you think appropriate ( don ' t be bashful - - i want us to get this right ) . have a great day . your friend , john - enroninterview . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: vacation vince : i would like to take a day of vacation next friday , october 6 th if it ok . anita will be here . thanks ! shirley",0 +"Subject: ideas vince : i may have neglected to send you the attached last week . enron is one of a handful of institutions which could facilitate an entire transaction of the kind described here . this is simply your old production payment concept applied to corporate finance . best , - pressrelease . pdf - monetization . pdf",0 +"Subject: riskbrief - january issue riskbrief - http : / / www . financewise . com / risk dear risk brief subscriber , it  , s been a while since you last received your monthly ' risk brief ' update from financewise . but not without good reason - we ' ve changed a lot . we have launched an exciting online news product called ' risknews ' . this free website provides dedicated global coverage of all the top stories , informed analysis and best practice in the world of financial risk management , derivatives , technology and exchanges , people moves and key industry events . breaking news is added to the website throughout the day , every day . another key benefit of risknews is a free weekly e - mail update covering the need - to - know headlines and links back to the relevant news items . so , if you can ' t find the time to visit http : / / www . risknews . net regularly , don ' t worry , you can keep yourself informed with the weekly ' risknews update ' . so , what does this mean for you ? from now on , as well as receiving your monthly ' risk brief ' e - mail summarising risk management news a month after it happens , you can now receive the weekly ' risknews update ' . the e - mail update is sent every friday and the service is free . starting from friday 26 january you will receive your first ' risknews update ' with coverage from stories occurring just this week . and finally  ( to celebrate this important milestone in our internet services development , we would like to offer you a free copy of the february issue of ' operational risk ' , worth $ 70 . this special issue serves as a guide to the regulators  , proposals on operational risk capital charges as contained in the basle committee ' s second consultative paper released in january 2001 . coverage contains market reactions , impacts and implications , as well as : ? contributing articles from the regulators ? views and reactions from banking analysts ? views of the banking industry bodies ? implications for the risk technology sector with interviews order your free copy ( worth $ 70 ) now and check out http : / / www . risknews . net for the first time ! your comments please e - mail us on mailto : web @ riskwaters . com , best regards , the risknews team ( formerly risk brief ) if you think any of your business associates or colleagues would find risknews useful , please forward a copy of this e - mail to them for us . thanks ! all of risk waters group online services can be accessed through http : / / www . riskwaters . com risk waters group  ) providing products with accurate analysis and technical commentary on the latest developments in the world of finance , financial technology , credit , emerging markets , market data , bandwidth trading & telecoms , risk management and derivative products . to unsubscribe to this list , send a blank message to mailto : financewise - unsubscribe @ listbot . com or visit http : / / www . financewise . com / public / edit / riskm / briefix . htm and unsubscribe from there . to unsubscribe , write to financewise - unsubscribe @ listbot . com",0 +"Subject: re : green card for paulo stinson , yes , makes perfect sense . brad can start the process . vince stinson gibner 03 / 10 / 2000 02 : 15 pm to : vince j kaminski / hou / ect @ ect cc : subject : green card for paulo vince : now that paulo is a manager , i think we can start the process for trying to get him a permanent resident status . should i contact brad mcsherry about this ? - - stinson",0 +"Subject: re : march real options conference gary , peter , this is a copy of my london presentation . i expect to make some minor changes to this presentation for march 13 . vince vince kaminski "" jackson , gary l . "" on 02 / 27 / 2000 03 : 07 : 13 pm to : vince j kaminski / hou / ect @ ect , "" ' peter tufano ' "" cc : "" demars , suzanne "" subject : re : march real options conference > this is a draft of what i was thinking of presenting . i was not planning to go over any specific options or opas ( these are covered by confidentiality clauses and i have to be careful from a competitive standpoint ) but to give the audience a few of the "" real world "" applications and challenges . i welcome any thoughts or comments . gary > - - - - - - - - - - > from : peter tufano [ smtp : ptufano @ hbs . edu ] > sent : friday , february 18 , 2000 4 : 56 pm > to : vkamins @ ect . enron . com ; gljackson 2 @ tva . gov > subject : re : march real options conference > > dear vince and gary , > > we are all speaking at the march real options session in ny . my work in > real options in the energy field has come , to a large part , from my > casewriting in your two organizations , so i feel that we should probably > allocate more time toward your presentations and less to mine . while we > have a two hour block among the three of us , i think we can freely > re - arrange things to produce the best result . would you two like to > schedule a brief conference call to coordinate our talks ? i am free > virtually all of next wednesday 2 / 23 , perhaps we could talk at 10 am ( est ) > or 2 pm ( est ) ? i am happy to arrange the call , if you send me your phone > numbers . thanks . > > peter tufano > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - > prof . peter tufano > harvard business school > morgan hall 377 > soldiers field > boston , massachusetts 02163 > phone : ( 617 ) 495 - 6855 > fax : ( 617 ) 496 - 6592 > email : ptufano @ hbs . edu > http : / / www . people . hbs . edu / ptufano > - real options valuation in the new economy . ppt",0 +"Subject: re : alp presentation christie , great ! ! you think big . it also puts a lot of pressure on the students . vince christie patrick 04 / 11 / 2001 10 : 57 am to : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron , melinda mccarty / corp / enron @ enron , shirley crenshaw / hou / ect @ ect cc : subject : re : alp presentation vince and ken , please see note below . rice ' s president is planning to attend the presentation and dinner ! i ' ll let you know when i hear from gil ( dean whitaker ) . thanks ! also , please remember that i ' ve scheduled steve kean for lunch ( i ' ll have melinda have lunches brought to the conference room ) . please let me know the exact room number and the exact number of lunches needed from your end . thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 11 / 2001 10 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - - judith duvall on 04 / 11 / 2001 10 : 36 : 06 am to : christie . patrick @ enron . com cc : subject : re : alp presentation ms . patrick , dr . gillis will attend both events . judith at 06 : 01 pm 4 / 10 / 01 - 0500 , you wrote : > president gillis and dean whitaker , > > enron would be honored with your presense at the presentation set forth > below . > > under the guidance of vince kaminski and his team here at enron , we are > thoroughly enjoying working with this group of bright and enthusiastic rice > students . we hope you can join us for the culmination of their significant > efforts . > > please let me know - - thanks ! ! > > - - christie . > - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001 > 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > vince j kaminski > 04 / 10 / 2001 08 : 13 am > > to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , > lounghrid @ rice . edu , luigical @ rice . edu > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley > crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron > > subject : alp presentation > > on behalf of enron corp . i would like to invite you to an alp project > presentation by a group of students > of jesse h . jones graduate school of management , rice university . > > the students will present the results of a research project regarding > electronic trading > platforms in the energy industry . > > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . > > we would also like to invite you to dinner , following the presentation . > > > vince kaminski > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > ( 713 ) 410 5396 ( cell ) > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com > > > > > > judith duvall secretary to the president rice university 6100 main street - - msl houston , tx 77005 713 / 348 - 4601 713 / 348 - 5271 ( fax )",0 +"Subject: spring 2001 course schedule spring 2001 faculty , the spring 2001 course schedule has been posted to embanet . to access the schedule please open the jgsm area icon on the embanet desktop . next please open the announcement jgsm icon . you will find the spring 2001 course schedule located under the subject column . please open the document . if you do not have access to embanet you will need to speak with david kilgore at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 . thanks , kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: re : houston visit soussan , thanks for your message . it would be great to meet you when you come to houston . i shall be in town on december 7 , flying back from philly in the morning . assuming that the flight is on schedule , i shall be available for dinner . please , let me know how i can contact you on thursday , december the 7 th , to confirm . look forward to meeting you . vince "" faiz , soussan "" on 11 / 26 / 2000 09 : 04 : 01 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : houston visit dear vince , greetings from ny and hope that all is well and you had a great thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are available either evening for dinner . would be great to see you again and catch up with the latest . . . i really enjoyed my visit last april , your insights , and the risk book you gave me . i do hope you ' re available to meet and pls let me know which evening suits you better . best , soussan faiz texaco inc . 914 253 4187",0 +"Subject: invitation - wharton et events mark , fyi . what about going to wharton in october to attend the e - commerce conference ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 18 / 2000 11 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tomczyk @ wharton . upenn . edu ( michael tomczyk ) on 08 / 15 / 2000 01 : 37 : 34 pm to : vkamins @ enron . com cc : thomas . piazze @ wharton . upenn . edu subject : invitation - wharton et events vince hello , i just wanted to followup up on our meeting at wharton and let you know that there are two upcoming events that you may want to attend - or designate others from enron to attend . both of these events are good opportunities to "" test drive "" the emerging technologies program and see if there is an interest in joining our partner group . september 8 - what next on the internet ? our next insight - building event will be held at wharton on friday , september 8 and is entitled "" what next on the internet ? "" this is primarily a wharton faculty event and we will be exploring 3 areas : 1 ) the new economics on the web , 2 ) internet , anywhere , and 3 ) implications for ( academic ) research and education . speakers will include jay walker ( priceline . com ) , david farber ( chief technologist at the fcc ) and mohan sawhney ( kellog univ . , one of the nation ' s thought leaders on e - commerce ) , along with several senior wharton faculty members . there will be considerable discussion on how the next generation of the internet will evolve and the implications for management and management research . we are inviting our industry partners to join us at this event , and participate in the discussion , which should contain some valuable insights and also provides an opportunity to help set our research agenda . you are most welcome to participate , or designate a colleague , if you like . october 19 & 20 - winners & losers in the e - commerce shakeout this will be a major impact conference to explore the coming internet shakeout , and apply some of the traditional shakeout measures to e - commerce and try to determine what we can expect . it should be an intriguing day . if you plan to attend please rsvp early since we are sure to be "" overbooked "" for this event . this is probably the best showcase for our insight - building activities , if you would like to invite any colleagues help determine if it makes sense for enron to become a partner in the et program . if you ' d like to rsvp for you and any colleagues who would like to attend one or both of the events described above , send me an email reply and i ' ll send you a more detailed agenda and speaker description , etc . i ' ll be on vacation the rest of this week but if you have any questions or comments you can call or email me next week . best regards , michael michael s . tomczyk managing director emerging technologies management research program 1400 sh - dh / 6371 the wharton school philadelphia , pa 19104 - 6371 tel 215 - 573 - 7722 fax 215 - 573 - 2129",0 +"Subject: re : invitation to my house anthony , thanks for the invitation . what about april 22 ? i have committed to different speaking engagements , charities , off - sites etc . for all the saturdays prior to this date . vince from : anthony mends @ enron communications on 03 / 06 / 2000 02 : 18 pm to : vince j kaminski / hou / ect @ ect cc : subject : invitation to my house vince , i hope you are well . sorry i have not been in touch but i have been swamped trying to build my organization simultaneously as i endeavor to understand ebs and navigate its political terrain . quite interesting . i shall tell you more later . my wife , elisabeth and i would love to have you for dinner at our house any saturday at you convenience . would please let me know which saturday would be suitable ? we are both looking forward to it so please let me know . thanks , tony",0 +"Subject: re : lng may 19 decision john , this is the update on what i have done for the lng transactions . 1 . i was not involved in the lng ship project . i shall read the dash and give you my comments . without looking at the details , i think that the decision to charter a tanker removes one significant risk we have at the elba island project ( please , see point 2 ) . 2 . elba island . i am working with doug rotenberbg , brad hitch , scott earnest ( sally beck ' s organization ) and rac to set up the book for the elba island transaction . the next step will be to expand the book to capture all the enron ' s lng - related positions in one place and to look for natural risk offsets and possible hedges . a working group is meeting to close a few remaining gaps tomorrow ( tuesday ) at 8 : 30 . a few comments on the book design and my view of the project : a . the current thinking is that lng will be sourced for the elba island facility by buying marginal cargos on the fob basis . marginal cargos will represent supply from excess capacity that has not been committed under long - term contracts or became available due to some short - term frictions . the fob cargos are typically selling at a significant discount to the long - term contract prices . the economics of the deal , as represented by the book we are setting up , will reflect the assumption that not only we can locate marginal cargos but that we shall be able to do it on a regular basis , arranging shipping and coordinating the facility schedule and natural gas transactions in the us . in other words , we have a significant logistical and operational risk in this transaction . b . the transaction will cover the period of 17 years ( with an extension option of 5 years ) . even if we can lock - in the lng volumes over this time period , we have no ability to lock - in the other side of the spread ( us gas prices ) for such a long tenor . this is essentially a tolling transaction with exposure to the lng - nat gas spread and i would not recommend locking - in only one leg of the spread . one solution would be to cover , let ' s say , 50 % of he lng volumes for the first 5 years and lock - in the nat gas side on the us market side . c . the book we are setting up will be based on many managerial assumptions regarding sources of lng , shipping rates , schedules , etc . i would set up a big prudence reserve in case we mark it to market . d . my group will work on valuation of some options we have in the elba island deal ( that are good for enron ) and on the hedging strategy for the lng positions . long - term lng contracts are typically based on the japanese crude cocktail that correlates very well with brent . vince john sherriff 05 / 14 / 2000 01 : 40 am to : vince j kaminski / hou / ect @ ect cc : lauren urquhart / lon / ect @ ect subject : lng may 19 decision vince i haven ' t spoken to you for awhile but hope the world is treating you well . anyway with greg moving to his new role i have ( i hope only temporarily ) staff trading oversight for the eastern hemishere plus lng . i understand that your group is taking a first cut at developing curves for lng and lng ship values . i also understand that another lng ship decision is on the dockets for may 19 ( not very far away ) . anway i understand this is a big decision but i still have gotten very little info yet . can you please let me know where you stand now ? i will ask my assistant lauren to set up a time that i can speak with you in the next couple of days and if you have anything for me to review before then she can get it faxed to me as well . look forward to connecting with you vince . john",0 +"Subject: contact for sam audit vince & stinson , for your information , professor duffie assigned taiichi , his ph . d . student to work on the audit back in may . i will contact with him about the progress . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 08 / 02 / 2000 10 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - hoshino @ leland . stanford . edu on 05 / 25 / 2000 09 : 14 : 52 pm please respond to hoshino @ leland . stanford . edu to : zimin . lu @ enron . com cc : subject : it worked ! dear zimin , it was nice talking to you on the phone today and thank you for the tip . i manually created "" c : \ temp "" and that was it . the spreadsheet works now . with pentium 200 mhz and 80 m memory , it runs within 5 minutes . very best regards , / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ taiichi hoshino ph . d . candidate ees & or stanford university the shadows apt # 171 750 north shoreline blvd . mountain view ca 94043 home tel / fax ) 650 - 960 - 1993 / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~",0 +"Subject: benefits - personal days vince : is the following all right to send to the group ? * * * * * * * * good morning all : the question has arisen as to whether enron has "" personal days "" , that , you can take in case of repair problems at home ; car problems ; sick spouse , sick child , etc . i checked with hr and the policy manual and the answer is "" no "" , but they can be designated at the discretion of the supervisor . i talked this over with vince and he has decided that the research group will be allowed two ( 2 ) personal days per year to take care of personal business and not have to take a vacation day , discretionary day , or leave of absence . if you have advance notice ( such as an air conditioner repair scheduled ) , please let me know when you are going to take these days . if an emergency arises with no notice , please call in and let me know that you are taking a personal day . it will be coded on your time sheet . these two personal days will in no way cancel or take the place of , "" funeral leave "" , "" family leave "" , or "" civic duty leave "" . they are just a way of being able to take care of repair problems and other personal problems that arise . these should be very beneficial and i am sure very much appreciated by all of us . if you have any questions , please call me . shirley 3 - 5290",0 +"Subject: btrieve free ride ends network world fusion focus : dave kearns on novell netware today ' s focus : btrieve free ride ends 03 / 14 / 00 dear wincenty kaminski , today ' s focus : btrieve free ride ends by dave kearns netware has shipped with btrieve ( originally a flat - file database system , now grown into a full - fledged relational database system ) since the days of netware 2 some 12 years ago . many independent software vendors have relied on this and constructed their netware applications to use the built - in facilities btrieve afforded . originally licensed from its creator , softcraft , novell bought btrieve outright in the late  + 80 s , then sold it off 10 years later to some of the original developers , now incorporated as pervasive software . pervasive has , essentially , retired the btrieve name in favor of "" pervasive sql 2000 , "" a true relational database system which nevertheless still purports to support applications written to the btrieve 6 . x specification . a major change has been introduced in netware 5 . 1 , however . there is no longer an unlimited - use version of the database included . novell still uses btrieve technology for ( among other things ) its installed products database ( sys : system \ products . dat is the file ) , but netware 5 . 1 includes only a two - user license for sql 2000 enough for the administrator to add new products and services , but not enough for any btrieve - based applications the network might be running . there is an unlimited - use version of sql 2000 included , but it  , s an evaluation version only . it will time out after 90 days . full - use licenses may be purchased from pervasive software ( or your software vendors may provide them ) , but unsuspecting network administrators could be caught off - guard when applications stop working . for the adventurous , there is an unlimited - use version of btrieve 6 . 10 included with the netware 5 . 1 distribution . but novell admits it hasn ' t tested the software with netware 5 . 1 , it may not work , and the real killer most current applications ( such as computer associates arcserve ) require btrieve 6 . 15 . check the applications you ' re using before doing that upgrade to netware 5 . 1 , and calculate the additional costs of obtaining the requisite number of sql 2000 licenses . then , decide if that ' s what you want to do , or if switching to a different application is the better choice . to contact dave kearns : - - - - - - - - - - - - - - - - - - - - - - - dave kearns is the word wrangler for virtual quill , a writing agency serving the computer and networking industries . if your target customer doesn ' t know your product , doesn ' t know its uses and doesn ' t know he needs it , he ' s not going to buy it . from books to reviews , marketing to manuals , vq can help you and your business . virtual quill - "" words to sell by . . . "" find out more at : http : / / www . vquill . com / , or by e - mail at mailto : info @ vquill . com . for related links - - click here for network world ' s home page : http : / / www . nwfusion . com pervasive . sql  v 2000 product family sdk understanding pervasive . sql 2000 , a white paper ( pdf ) migration guide 6 to pervasive . sql . doc % 20 to % 20 pervasive . sql . pdf other netware - related articles from network world : active directory upgrade requires strong game plan , network world , 03 / 13 / 00 microsoft exec sketches future for win 2000 , network world , 03 / 13 / 00 subscription services to subscribe or unsubscribe to any network world e - mail newsletters , go to : to change your email address , go to : subscription questions ? contact customer service by replying to this message . other questions / comments have editorial comments ? write jeff caruso , newsletter editor , at : mailto : jcaruso @ nww . com for advertising information , write jamie kalbach , account executive , at : mailto : jkalbach @ nww . com network world fusion is part of idg . net , the idg online network . it all starts here : http : / / www . idg . com copyright network world , inc . , 2000",0 +"Subject: copier on 32 nd floor hello iain , well time is drawing near for another move for us . the problem is we do not have a heavy duty copier for the floor . we do need a copier . please inform me as how we can work through this , maybe we can split the cost with others on the floor . the move is schedule sometime at the end of the month . i will keep you informed . . . . . . . . thanks kevin moore",0 +"Subject: continental phone # 1 - 800 - 621 - 7467 or ? cust . serv . 1 - 800 - 932 - 2732",0 +"Subject: open enrollment 2001 open enrollment 2001 is going on now through october 22 nd , 5 pm cst for regular full - time and regular part - time employees . your 2000 elections will automatically rollover for 2001 , so if you don  , t want to make any changes , do absolutely nothing ! annual elections for all flexible spending accounts will rollover too ! yes , you heard right  ) all 2000 elections will automatically rollover for 2001 , including spending accounts ! to make it even more convenient , print your 2001 confirmation statement right from the web site and you  , re finished ! sound easy ? it is ! don  , t have your packet ? no problem ! you can access the enrollment 2001 web site and print your personal worksheet right from your desktop . call benefits at 1 - 800 - 332 - 7979 , option 1 , for additional information or assistance . confirmation statements will be mailed to your home at the end of october and final changes for 2001 can be made via the web or ivr from 11 / 8 - 11 / 15 . logon to www . enron . benefitsnow . com today ! quick facts ? 100 % default for all current elections and spending accounts  ) don  , t want to make a change ? then do absolutely nothing  ) your 2000 annual election will rollover for 2001 ! ? $ 250 medical deductible plan for employees residing outside of a network area ? hmo plans going away  ) coventry health care of iowa ( formerly known as principal health care ) presbyterian health plan healthnet of oregon ( formerly known as qual / med ) blue shield of california ? orthodontia treatment is not considered a pre - existing condition under the enron corp . dental plan . the plan will coordinate with other coverage based on coordination of benefit ( cob ) rules . ( contact metlife at 1 - 800 - 492 - 8588 for specific details and information ) ? new hires who make their 2000 elections by 10 / 16 will receive their 2001 packets the first week of november for enrollment during 11 / 8 - 11 / 15 ; elections not in by 10 / 16 will require a manual enrollment for 2000 and 2001 and must be made within 31 days of their hire date ? provider directories can be accessed directly from the enrollment 2001 web site or - 1 ) link directly to the providers through the hr / benefits intranet website or 2 ) go directly to the source by logging on through the web at : www . cigna . com www . vsp . com www . provider . uhc . com / enron www . merck - medco . com",0 +"Subject: thank - you . . . dear dr . kaminski : i enjoyed our discussion this morning . it sounds like there is a great deal of overlap between enron business units and my interests . i am very much looking forward to meeting you and your colleagues . thank - you for the invitation to interview with your group . sincerely , rodney greene work : 312 - 692 - 8129 rgreene @ heliosgroup . com home : 773 - 881 - 7142 rodneyg @ interaccess . com",0 +"Subject: re : status of enron project howard , sorry for the delay . i shall be able to get back to you next week . a very interesting new research idea came up and we have to close a few loops internally . vince "" kunreuther , howard "" on 04 / 05 / 2001 08 : 42 : 44 pm to : "" kaminski ( e - mail ) "" cc : "" kleindorfer , paul "" subject : status of enron project hi vince : just a short note to indicate that we have not heard received any information from your group since our discussion at wharton in february . we look forward to get some information on what issues you would like us to spend some time thinking about . hope all is well . regards , howard howard kunreuther cecilia yen koo professor of decisions sciences and public policy chairperson operations and information management department 1326 steinberg hall - dietrich hall wharton school university of pennsylvania philadelphia , pa 19104 - 6366 phone : 215 - 898 - 4589 fax : 215 - 573 - 2130 email : kunreuth @ wharton . upenn . edu",0 +"Subject: request submitted : access request for chris . clark @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000005413 approver : stinson . gibner @ enron . com request create date : 10 / 23 / 00 8 : 50 : 58 am requested for : chris . clark @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: enron / stanford program paul , thanks for putting in place the funding for our stanford relationship with nick bambos . below is a draft letter which should accompany the funds sent to stanford . by designating the funds as a gift to this specific research area , all the funds can be used to support bandwidth and networking research without any overhead charge from the university . if you need any clarification or assistance , please contact vince , me , or nick bambos directly . nick ' s email is bambos @ stanford . edu . - - stinson x 34748 draft of letter to be sent from enron to stanford . prof . nicholas bambos 420 terman engineering center management science & eng . dept . and electrical engineering department stanford university stanford , ca 94305 dear nick , we are happy to provide gift funds of $ 100 , 000 per year , over three years , to support a program in your research group , related to bandwidth markets / trading and networking technologies . enron would like to support research activities in the above mentioned area , including pd . d . student work , research seminars etc . there may also be opportunities to have the supported ph . d . students do summer internships at enron , related to their research interests . please find enclosed a check of $ 100 , 000 payable to stanford university for supporting this research effort in your group during the first year . best regards , name and title",0 +"Subject: energy derivatives book hi vince , it was good to speak to you and grant the other day . plese find attached a block of 3 chapters that are basically the middle of the book . this should give you an idea at the level it is pitched - although these are probably some of the the most technical of the chapters . julie who works for us will be getting in contact with you soon to chase you up on your chapter ! i ' ve asked julie to have a chat to you about a couple of other things at the same time . i hope this is ok with you . julie and i will be making a trip thru houston around the third week of february to try and visit some energy companies . it ' s mainly a fact finding trip to see what the energy companies are doing and how we might be able to make use of our skills in a commercial sense . would you recommend any people we should talk too ? also we will be running a course on energy derivatives in houston at the end of march following the success of the course in new york last year and want to advertise this . do you know of people who would be interested in such a course ? we are currently putting together promotional material for the book - can you please let julie know how you and grant would like to be advertised - your official positions , etc . best regards , and i look forward to reading your chapter soon . chris . - ed _ vince . zip",0 +"Subject: re : this summer ' s houston visits 2 anjam , it makes sense to come to houston for a longer time period . i think that you should spend here at least 3 weeks . vince anjam ahmad 04 / 28 / 2000 05 : 47 am to : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect cc : subject : this summer ' s houston visits 2 hi vince , one of my only windows of opportunity right now is to schedule the houston visit for monday 10 th july for a single week only . regards , anjam - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 28 / 04 / 2000 11 : 33 - - - - - - - - - - - - - - - - - - - - - - - - - - - steven leppard 28 / 04 / 2000 10 : 15 to : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect cc : anjam ahmad / lon / ect @ ect , benjamin parsons / lon / ect @ ect , kirstee hewitt / lon / ect @ ect , matthew d williams / lon / ect @ ect , steven leppard / lon / ect @ ect subject : this summer ' s houston visits vince , dale here are our proposals for houston visits from our group : kirstee all of july , all of september . ( kirstee ' s personal commitments mean she needs to be in the uk for august . ) ben all of october . ( no crossover with kirstee , ensures var / credit cover in london office . ) steve 2 - 3 weeks in july , first 3 weeks of september . anjam to be arranged at anjam and houston ' s mutual convenience . matt not a permanent research group member . i ' m asking richard ' s group to pay for his visit , probably in august . steve",0 +"Subject: promotions our promotions are listed below . we will notify these in the next couple of days . call with questions . - - - - - - - - - - - - - - - - - - - - - - forwarded by steve w young / lon / ect on 11 / 01 / 2000 20 : 34 - - - - - - - - - - - - - - - - - - - - - - - - - - - amy fitzpatrick 11 / 01 / 2000 14 : 57 to : steve w young / lon / ect @ ect cc : subject : promotions below is a listing of all of your employees which have been approved for promotion . please be sure to communication with all those listed below by monday as there will be a company - wide announcement going out . claire viejou to senior professional ben parsons to junior professional steven leppard to manager if you have any questions , please let me know . thanks ! amy",0 +"Subject: videoconferences w / enron team and host : i have set up the following dates / times for videoconferences . unfortunately , 4 : 00 - 6 : 00 was not available , so i arranged for 4 : 30 - 6 : 30 pm on the following dates . i hope this does not cause anyone inconvenience , but i took time and space that was available . note : i did not schedule during interview week , finals week or spring break . 1 / 25 shdh 1203 2 / 1 shdh 1203 2 / 15 shdh 1203 3 / 1 shdh 215 3 / 22 shdh 215 3 / 29 shdh 215 any questions , please contact the fap office . donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: organisational announcement - introducing enron global markets as evidenced by an exceptionally strong performance in the second quarter , enron  , s wholesale energy businesses in north america and europe continue to experience tremendous growth . the opportunities to continue to grow our natural gas and power businesses have never been better and it is critical to enron  , s future success that we remain focused on expanding these businesses and maintaining the strong momentum we have in these markets . it is equally important that we continue to develop new businesses outside of gas and electricity , which can make significant contributions to our earnings growth . we have made significant progress in developing these businesses in north america , europe , and most recently in our new net works business unit . included in these global businesses are our efforts in crude and products , coal , emissions , insurance , currency , equity trading , interest rates , credit trading , paper and pulp , and metals . while significant progress has been made in these efforts we need to accelerate the growth of these new businesses while continuing to aggressively expand our core gas and electricity businesses in north america and europe . in order to accomplish these two objectives and to capitalize on the increasingly global opportunities in these new businesses we are today announcing the formation of a new business unit  ) enron global markets . this new business unit will focus on markets and commodities which are global in scope , but outside our traditional gas and power markets . this new core business unit will operate in parallel with and in close coordination with the north american and european businesses . enron global markets will be headed by mike mcconnell , president and chief executive officer , and jeff shankman , chief operating officer . they will report to mark frevert who will be chairman of enron global markets . mark , mike and jeff will comprise the office of the chairman for enron global markets . included in this new business unit and reporting to the office of the chairman will be the following businesses and their leaders : - global crude and products : john nowlan - coal : george mcclellan - currency , equities , interest rate and agricultural trading : gary hickerson - insurance and weather : jere overdyke enron  , s metals business and enron credit . com will remain the responsibility of enron europe . the paper and pulp business will continue to reside in north america . with the departure of mike mcconnell from enron net works , we are pleased to announce the following appointments in that business unit : - jeff mcmahon : president and chief operating officer - louise kitchen : chief commercial officer - philippe bibi : chief technology officer jeff , louise and philippe , along with greg whalley , will comprise the office of the chairman for enron net works . with jeff shankman  , s departure from enron north america  , s natural gas operation , all of jeff  , s direct reports will report to john lavorato . we are also pleased to announce the following changes to the enron north america office of the chairman . john lavorato will join the ena office of the chairman as chief operating officer . dave delainey will assume the role of president and chief executive officer . mark frevert will retain his role as chairman of enron north america in addition to his role as chairman of both enron global markets and enron europe . please join us in congratulating everyone in their new assignments and in supporting the new enron global markets organisation .",0 +"Subject: re : petronas benchmarking visit khairuddin , i am glad you received the fax . i shall send you the list of enron ' s participants at a later date . i have invited a numbers of enron employees representing our different business units , including lng and crude trading , risk controls group and research . vince kaminski khairuddinbmjaafar @ petronas . com . my on 01 / 17 / 2001 06 : 39 : 10 pm to : vince . j . kaminski @ enron . com cc : subject : re : petronas benchmarking visit vince , thank you for your prompt reply . we have received your fax earlier this morning . fyi , we shall be sending you the questionaires by next week as we are going through the final draft this week . could you please tell me who will be joining the discussion during our visit ? thanks . regards , khairuddin",0 +"Subject: re : schedule and more . . jinbaek , may 30 sounds good . i shall inform our hr department . i don ' t see any project i could get going with your advisor on such a short notice . when you come here you can determine in what area he could make the biggest contribution to enron . i shall call or e - mail him independently and talk to him . vince "" jinbaek kim "" on 05 / 07 / 2001 02 : 25 : 53 am to : cc : subject : schedule and more . . dr . kaminski , i think i ' ll be able to start work from the last week of may , but not from monday , probably , i ' ll be able to work from 5 / 30 ( wed ) . will it be good ? i know it is not that much earlier than i mentioned . . 6 / 4 i am sorry . and actually , there is an e - business conference at haas school of business , organized by my advisor could you distribute the link and the attached invitation letter to groups interested in e - business and especially procurement ? the link is as following . i am afraid you might forgot this i told you in the last email . . . my advisor ( arie segev at haas school of business ; segev @ haas . berkeley . edu ) wants me to ask whether you have any idea on joint research with him during the summer , while i am staying there . his interest is in e - business . . ( what else . . ? ) and has expertise in e - procurement system and marketplace . . . xml based standard such as obi , cxml , xcbl , rosettanet , biztalk . . system interoperability study , auction and negotiation , workflow system , e - catalog management , digital signature , edi , etc etc . . . many technical aspects of e - business . . . he wants to do some kind of technical case study that is beneficial for both enron and him . he may travel one or two times to houston to have a meeting during the summer . ( and to be frankly , this will be good for me too , because i can have a meeting for my dissertation while he is in houston . . ) could you think about the possibility of joint research , with him ? thank you . . sincerely , jinbaek - fcp - invite . pdf",0 +"Subject: invitation to speak at power 2000 hi vince it is my great pleasure to invite you to speak at power 2000 which will be in houston on 9 & 10 may 2000 . would you be interested in chairing one of the streams on day 2 of the conference ? or making a full presentation on one of the days ? please let me know which talks interest you . obviously , some of the talks are no longer available but i would like to give you a choice as much as possible . please could you get back to me asap on 212 925 1864 ext 151 or by return email . i very much hope you can make the dates as i ' m very keen to have you participate at power . not to flatter you unnecessarily , but i know that a lot of people come to our conferences to hear what you have to say . best regards emma - invite . doc",0 +"Subject: new book out : theory of financial risks dear colleague , you have recently downloaded a draft version of our book , we are pleased to announce that it is now available in print : * * * theory of financial risks * * * > from statistical physics to risk management by jean - philippe bouchaud ( commissariat a l ' energie atomique , saclay ) and marc potters ( science & finance ) cambridge university press ( 2000 ) isbn 0 521 78232 5 the book is available in bookstores in europe and should be available before october in the rest of the world . you can find out more about it , including links to order it on - line , on our web site : http : / / www . science - finance . fr / book . html we wish you a pleasant reading , sincerely , jean - philippe bouchaud and marc potters - - science & finance - - capital fund management 109 - 111 rue victor hugo | book @ science - finance . fr 92532 levallois | tel : + 33 . 1 . 41 . 27 . 91 . 11 france | fax : + 33 . 1 . 47 . 39 . 04 . 47",0 +"Subject: allocation schedule we spoke prior to the holiday and you were working on a list on support names and projects that research is working on for various bus . can you tell me how you are doing on that ? sarah brown , my manager , had a meeting with corp and they are disputing the billing we are proposing to bill to them ( $ 1 . 9 m ) . their argument is that they are going to bill ena back anyway ; therefore , they have agreed to take 40 % of the amount we intented to bill them in 2001 , which is approximately $ 760 k . if you have any questions , please call . thanx .",0 +"Subject: pjm files load reduction pilot program with ferc message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : the pjm interconnection , l . l . c . filed the pjm customer load reduction pilot program with the federal energy regulatory commission ( ferc ) on friday july 7 . this innovative program pays participants to reduce their own load or operate backup generation to produce a beneficial load reduction for the grid during pjm emergency events at times of peak demand . "" we are excited about this program that will provide an important resource during times of high electricity usage . the program will augment the region ' s well - established emergency procedures "" stated bruce balmat , vice president , system operations . the pilot program was developed in response to a may 17 , 2000 ferc notice and is in effect through september 30 , 2000 . a full description of the program and pjm ' s filing , including participation requirements and procedures , can be found on the pjm website ( www . pjm . com ) . those interested in participating in the program should complete a registration form indicating their load reduction plan . those who are not already pjm members , will become special non - voting members with membership fees waived . please do not reply to this message . if you have a question for pjm customer relations and training , please send an e - mail to custsvc @ pjm . com . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: re : ca for henwood engagement stinson , attached please find a draft consulting agreement for use with henwood . you will want to review it before you send it to henwood . please see section 6 in particular . also , i put in that arbitration will be in houston and texas law will apply . we could move that to new york , with new york law if that is better for henwood . if pressed , we could make it singapore or u . k . law , with arb in singapore . but any other law , including australian law , would mean we would need to get this contract reviewed by foreign counsel - - so i strongly urge you to argue for texas or ny law ( no other state , please ) . i tried to make this agreement reflect the terms in henwood ' s proposal , and believe i succeeded . our form has some additional terms not contained in their proposal , as well as fcpa boilerplate ( ie . , the "" business conduct "" and "" drug policy "" language ) . also , i just want to point out that this agreement allows them to subcontract the work - - but only with our written agreement . under their proposal , the subcontractor costs will be charged to us at cost plus 15 % - - so you might not want to do it . please let me know if you have any comments or questions . bonnie",0 +"Subject: re : sevil yamen anne , thanks . vince from : anne labbe / enron @ enronxgate on 04 / 20 / 2001 01 : 31 pm to : vince j kaminski / hou / ect @ ect cc : subject : sevil yamen good news , i finally received the memo from legal that accompanies project bonuses . i have left sevil a voice mail to contact me at her earliest convenience . sevil should receive this payment on april 30 th .",0 +"Subject: pravas sud billy , i would like you to ask for a favor for one of the rice students , pravas sud . he is interested in a summer internship . his phone number is ( 713 ) 283 5825 , ( 832 ) 647 8738 ( c ) . vince p . s . a phone message explaining the special circumstances follows . it ' s very important for enron .",0 +"Subject: luigi zingales seminar on april 27 rice / enron finance seminar participants : luigi zingales will present a paper co - authored with raghuram g . rajan , entitled "" the great reversals : the politics of financial development in the 20 th century . "" the full text of the paper is available in pdf form on the seminar website : http : / / www . ruf . rice . edu / ~ jgsfss the baton for organizing the seminar series has been passed from barbara ostdiek to myself . if you have questions regarding the series , please contact me ( wangfa @ rice . edu or 713 - 348 - 5404 ) . as we have done in the past , we will post the abstract and a downloadable version of the paper ( if available ) to the website a week or two before the seminar . the website will also provide a link to the speaker ' s homepage so you can access his or her biographical information . if the paper is not available at the website , i will send a hardcopy to interested jones school faculty , to felecia jones ( economics ) , sorin sorescu ( university of houston ) , and vince kaminski ( enron ) . i will e - mail an announcement before each seminar , reminding you of the seminar date , time , and location . the distribution list will include everyone that receives this e - mail . please let me know if you would like to be deleted from the mailing list or if you know of someone who should be added . albert fu - kuo albert wang assistant professor jones graduate school of management - - ms 531 rice university 6100 main street houston , tx 77005 phone : 713 - 348 - 5404 fax : 713 - 348 - 5251 email : wangfa @ rice . eduhttp : / / www . ruf . rice . edu / ~ wangfa /",0 +"Subject: re : research sign off steve , sign - off from the research group is something that requires defining formal rules going forward . my concern over the last few years was that we were asked on many occasions to sign - off on partial results of valuation , without the benefits of a full picture . sometimes , we were asked to sign - off on trade ideas , over which we have no control long - term . i shall talk to rick buy and david port about setting up more formal rules for the research sign - off . vince steven leppard 01 / 24 / 2001 03 : 42 am to : sharad agnihotri / lon / ect @ ect cc : tani nath / lon / ect @ ect , ted murphy / lon / ect @ ect , james new / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : research sign off hi sharad i note from our discussion earlier this morning that you ' ve been asked to sign off a calculation from another group , which is something we ' re asked to do from time to time . i take the view that we in research can assess a computation in terms of what it achieves with respect to its requirements , what its shortfalls are , and therefore what the risks associated with using this method are . we cannot provide an opinion on whether these risks are acceptable to enron , which i feel falls firmly within rac territory . this then raises the question of can research sign off anything for other groups after all ? to "" sign off "" means to accept something , which our opinion in itself cannot do . it is most appropriate for us to provide a technical note outlining the methodology , risks and shortcomings of a method , leaving the formal "" sign off "" to those best placed to assess these risks for our company . the alternative is for multiple groups each to have their own view on what is acceptable risk for the company . steve",0 +"Subject: ameriflash newsletter business highlights coal trading the liquidity in trading of the standard european coal agreement has increased significantly over the last 6 weeks . many counterparties that previously opted to stay on the sidelines finally chose to join the game . since the contract ' s inception at the beginning of the year , enron has traded a total of 5 . 3 million tons against the seca contract , of which 3 . 8 million tons has been traded via enrononline since july 2000 . we are 5 . 3 million tons of a total traded market of 5 . 8 million tons . principal investments tridium inc . , the leading provider of internet - based automation infrastructure solutions , announced the close of a $ 20 million round of capital funding . the funds will be used to increase tridium  , s sales and technical support offices in north america , expand its operations into europe and asia , and enhance its technology and products . kroad ventures , l . p . and enron north america each contributed $ 10 million in venture capital . corporate development allegheny energy supply company , llc , a wholly owned subsidiary of allegheny energy , inc . , announced the signing of a definitive agreement under which allegheny energy supply will purchase three enron natural gas - fired merchant generating facilities . the acquisition is expected to close in the 2 nd quarter of 2001 . performance review the deadline to provide feedback is friday , november 17 . if you have been selected to provide feedback on one of your fellow employees , please take the time to fill out an evaluation online at www . pep . enron . com . in the news "" enron corp . , already north america ' s biggest , buyer and seller of natural gas and electric power is dead serious about its efforts to capture a big slice of the $ 400 billion global trade in pulp , paper and lumber . "" - reuters news service 2000 chairman  , s award nominees please join us in congratulating the ena / eim / egm / employees who have been recognized as chairman  , s award nominees . congratulations to : irma alvarez alan aronowitz rick bergseiker carol coats joya davis rufino durante sue foust julie gomez barbara gray jackie griffith john harrison gerri irvine kathy benedict michael kelley mike mcconnell dave nommensen ina norman juan padron veronica parra michael roberts rhonda robinson kevin sweeney helen taylor stacey white extra kudos to barbara gray , who is a finalist for the 2000 chairman  , s award . barbara and ten other individuals are flying to san antonio from around the world to be honored at enron  , s annual management conference . one of these finalists will be recognized as the 2000 chairman  , s award winner . welcome new hires ena / eim / egm ena  ) anil chandy , alejandra chavez egm  ) marty cates , joanne underwood , brad miller transfers to ena / eim / egm ena  ) mark wadlington , jennifer blay - smith , georgian landau , kathryn bussell , john coleman , steven gillespie , clarissa garcia , ina rangel , farouk lalji , eva rainer , chuchu wang , smith day egm  ) gloria solis , carmella jones , nancy haralson legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed outside of enron .",0 +"Subject: asset swaps vs cds ' s - - - - - - - - - - - - - - - - - - - - - - forwarded by bryan seyfried / lon / ect on 30 / 03 / 2001 17 : 12 - - - - - - - - - - - - - - - - - - - - - - - - - - - martin mcdermott 23 / 03 / 2001 18 : 47 to : john sherriff / lon / ect @ ect , bryan seyfried / lon / ect @ ect cc : subject : asset swaps vs cds ' s john , i haven ' t had much time to put something together on this issue . fundamentally both instruments represent the same credit risk , i . e . same credit events and contingent payments , both represent senior unsecured credit risk . the differences in pricing therefore arise purely from supply and demand . one would expect generally that the asset swap would be lower than the cds because of liquidity : there are only so many bonds out there , and so demand for asset swaps is limited . i am attaching a one page note by jp morgan where they claim that one of the principal reasons for the cds to be more expensive is people hedging convertible bonds by combining ( 1 ) a call option on the equity and ( 2 ) a cds . if the call is cheap they will be willing to pay more for the cds , driving the price up . i ' ll try to synthesize something more complete next week . cheers martin",0 +"Subject: agenda for houston visit dear vince and mike , to maximize my time in houston an agenda needs to be agreed upon as well as milestones . here is a summary of what i have in mind : * mesoscale weather analysis and forecasting * computer models vs . human forecasters , performance issues * nwp modeling - types of numerical weather predictio models ( nwp models ) - objective analysis and initialization - data iisues and feeds - ( physical ) processes that determine the quality of a forecast * predictibility and verification * visualisation of weather and climate forecasts * installation of - short - to - medium term forecast system - seasonal forecast system - system testing and verification * issues - data feeds - platform considerations - realtime performance what we need to agree on is a firm agenda , milestones , resources , etc . . . . and a time table . . . . my contact details are : office : + 61 2 9229 2319 ( direct ) cell : + 61 417 695 212 home : + 61 2 9871 7369 regards , christian",0 +"Subject: fyi - a new esai report forecasting power prices in eastern markets attached is a new report forecasting jan - feb - mar power prices based on weather services international weather forecasts and esai energy analytics . feel free to comment . a version using national weather service information will also be available . ed edward n . krapels , phd managing director esai power and gas services tel 781 245 2036 cell 617 899 4948 ekrapels @ esaibos . com www . esai . com - esai energycast power dec 00 . pdf",0 +"Subject: re : shane , thanks for your message . as a matter of fact , i expected your resume in time for our summer internship program . we shall be glad to invite you for an interview . how long "" sabbatical "" do you envisage ? vince p . s . shirley , please , call shane to arrange an interview with hr . "" shane green "" on 06 / 19 / 2000 02 : 14 : 00 pm to : cc : subject : dr . kaminski : ? you probably won ' t remember my name , but i am the ph . d . student that took you back to the airport after your visit to louisiana state university during the previous academic year . ? i received my m . s . in finance in may of last year , and chose to ? remain at lsu to work on my ph . d . at that time , i intended to pursue a career in ? teaching and research at a four year college or university . ? in part ? because of your visit , ? and my ? primary interest in normative research , my ? plans have changed . ? while i ? still want to earn my ph . d . , ? i plan to pursue a career in research in the private sector . ? as you know , ph . d . programs in financial economics are designed to train future academics . ? not surprisingly , they emphasize methods to approach the types of questions that are of interest to finance academics . ? what did surprise me , however , was that these areas of interest often had little to do with what i imagined to be the concerns of practitioners in the real world . ? as you mentioned in your discussion , academic researchers know little about what their counterparts in the private sector ? in light of my objective , i feel i would get the most out of the remainder of my doctoral studies if i took some time off to work in the private sector to see first hand the ? types of challenges i can expect to face as a researcher in corporate america . ? as my primary interests revolve around the use of derivatives and financial engineering in corporate risk management , enron , as the leading innovator in these areas , would be an ideal place to learn . ? i was wondering if you were aware of any openings at the company that might provide me with the exposure i am looking for . ? if there are no such positions or opportunities , any advice or suggestions you could give me , ? such as whether or not you think such a "" sabbatical "" ( for lack of a better term ) would be helpful , or information on private sector careers for ph . d . ' s would be greatly appreciated . ? ? i am sending a current copy of my vita as an attachment . ? if you have any questions my e - mail address is sgreen @ finance . lsu . edu . ? thanks for your help and advice . ? ? cordially , ? ? ? ? shane green ? ? ? ? ? ? ? - vita . doc",0 +"Subject: re : new color printer sorry , don ' t we need to know the cost , as well . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 14 / 99 08 : 09 am to : shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : re : new color printer this information was also sent to it purchasing . i need to know what options we have and how soon it can be delivered . don ' t we need to know as well ? before purchase . i also need a central location for this printer . thanks kevin moore sam mentioned hp 4500 , i will check into it . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 12 / 14 / 99 07 : 55 am to : kevin g moore / hou / ect @ ect cc : subject : re : new color printer kevin : what kind of information do you need ? i thought you were going to look at some colored printer literature . sam seemed to be aware of a colored printer that might work for us . ask him . i don ' t think we need anything as big as "" sapphire "" . it will be located in your area on the 19 th floor . thanks ! kevin g moore 12 / 14 / 99 06 : 27 am to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : new color printer we are in need of a new color printer . we are also in the process of moving to the 19 th floor . we need the color printer a . s . a . p . if you would please , i need information concerning this matter whereby , we can get the printer ordered and delivered to our new location . thanks kevin moore",0 +"Subject: re : managing energy price risk let me think about a similar publication . zimin , any ideas ? vince gopalakrishnan subramaniam @ enron _ development 03 / 06 / 2000 04 : 34 am sent by : subramaniam gopalakrishnan @ enron _ development to : vince j kaminski @ ect cc : subject : managing energy price risk thanx a million . the book is just superb . would there be any similar literature on the interest rate front ? ? regards g . subbu",0 +"Subject: re : prospective 6 / 22 houston visit ehud , we can meet for dinner on the 21 st . then you can visit with us on the 22 nd in the morning and have individual meetings . at 11 : 30 you can meet the entire research group at our weekly lunch meeting . we can continue individual meetings in the afternoon . please , make a reservation at hyatt regency downtown or double tree downtown ( there are several hotels with the same names ) . vince "" ehud i . ronn "" on 06 / 09 / 2000 02 : 01 : 09 pm to : vince . j . kaminski @ enron . com cc : subject : re : prospective 6 / 22 houston visit vince , > june 22 works for me . do you want to firm it up ? if it ' s not too late , i do . i believe the "" game plan "" was for me to come in the previous evening . if you confirm the date , please advise at your convenience how you see the 6 / 21 - 6 / 22 schedule . best , ehud ehud i . ronn department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : uk rab multiples vince , we have used the updated rab with initial rab around 80 % in the simulation . zimin vince j kaminski 08 / 24 / 2000 08 : 47 am to : zimin lu / hou / ect @ ect , robert e lee / hou / ect @ ect , stinson gibner / hou / ect @ ect , steven leppard / lon / ect @ ect cc : subject : uk rab multiples fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 24 / 2000 08 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - michael anderson @ azurix 08 / 23 / 2000 07 : 48 pm to : vince j kaminski / hou / ect @ ect cc : keith . harris @ wessexwater . com subject : uk rab multiples i talked with keith harris , our cfo at wessex , about the rab multiple graph i gave you . he expressed that the wessex people had originated the data and that the graph was correct , to the best of their knowledge . the only ( but very important correction ) is that they started the graph at an index of 100 % , which does not imply a 100 % of rab multiple . rather , the initial rab multiple was around 80 % , implying that the entire line should be taken down by 20 percentile points . thus the all time hime in late 98 should be closer to the 1 . 3 x rab that i had targeted during our discussion . please call keith if he has not yet contact you .",0 +"Subject: congratulations vince congrats on the promotion to md . well deserved and a sign of many years of real service to the company . not a bit of controvery in the election process . well done ! john",0 +"Subject: new value lab fyi . . . . . ajo - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 16 / 2000 02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - richard causey @ enron 08 / 16 / 2000 01 : 42 pm to : amy oberg / hou / ees @ ees cc : subject : re : update i have a conference call scheduled with them on friday . thanks to : richard causey / corp / enron @ enron cc : subject : update rick : we ' re trying to reschedule the new value lab meeting . what ' s the status of your conversation w / your collegues at aa ? thanks . amy",0 +"Subject: enron in india hi vince , i was not aware of the "" power play "" book tour . i ' ll check it out . as to the article with the baylor professor , i think it ' s a great idea . i ' d like the university affairs team to get involved . if a visit is required , interviews , etc . , they should coordinate . that way , i think we ' ll have the greatest opportunity to leverage the relationship . mark - - - - - forwarded by mark palmer / corp / enron on 10 / 10 / 2000 02 : 23 pm - - - - - vince j kaminski @ ect 10 / 09 / 2000 09 : 08 am to : mark palmer / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : enron in india mark , two points . 1 . you probably know about it already . abhay mehta , the author of "" power play "" , is on a tour of the united states . please , take a look at the information about a meeting last sunday at stanford university . the web site address is given below . my wife went to the presentation and told me it was quite critical about enron . about 40 people attended . 2 . i was approached by john martin , a professor of finance at baylor , to write jointly an academic paper on enron for a financial journal . he wanted to work on an article on ebs . i have suggested a different topic : enron - case study of a company reinventing itself . i made a few points to john : a . enron ' s evolution did not just happen by accident . it was a result of implementation of a far - reaching strategy developed by the management . b . in the process of its evolution enron changed its environment . i came up with a term "" proactive evolution "" , as opposed to "" reactive evolution . "" c . the strategy included many elements , including emphasis on the quality of human resources , changing corporate attitudes to risk taking and employee empowerment . d . there are very few companies that match enron ' s experience and accomplishemnts . the paper could become a standard reading at the mba courses on corporate strategy and would help greatly our recruiting efforts . writing the paper would require interviews with ken , jeff and a few other key players . let me know what you thing about it . john is really excited about this paper . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 09 / 2000 08 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 10 / 07 / 2000 05 : 29 : 41 pm to : vkamins @ enron . com cc : subject : enron http : / / www . stanford . edu / group / sia / stanford india association",0 +"Subject: united healthcare contracting update to : houston area employees participating in domestic medical plan benefits from : enron human resources we are pleased to pass along to you the fact that united healthcare ( uhc ) and memorial herman health systems ( mhhs ) reached agreement on a long - term contract . there will be no disruption in terms of accessing network services from the hospital system or those providers who were scheduled to be terminated . employees currently electing uhc will receive a confirming letter shortly from uhc . as mentioned in our earlier memo , it is our understanding that cigna has also been contacted by mhhs and are now in contract negotiations . open enrollment packages are in the mail and you should consider the above facts when making your decision on your medical election .",0 +"Subject: cplex stinson , enclosed are the details of the cplex purchase . if everyone agrees , i will assume that ebs is responsible for 1 / 3 of the cost ( with taxes etc . must be close to $ 15 , 000 ) . krishna and grant , what do you think ? - samer "" kim turley "" on 05 / 25 / 2000 02 : 22 : 30 pm please respond to to : cc : subject : revised ilog quote 5 - 25 - 00 hi chonawee , you are right , i did make a mistake on the calculation , though it isn ' t exactly 2 / 3 of the previous 3 pak quote . sorry about that and so glad you caught it . i multiplied by 1 . 5 and i meant to use 1 . 3 . we have discounted deployment paks which we discount by quantity . our chart starts with a 3 pak so i took that number from our price list and multiplied by 1 . 3 to get 14 , 560 . 00 . for 2 deployments , i take $ 4 , 500 for one , plus 10 % off for the second license 4 , 050 , then times 1 . 3 = 11 , 115 . 00 . here is the revised quote . i checked the other numbers again and they are correct . again , i am sorry for the mistake . regards , * * * * * * * * * * * * * * * * * * * * * * * * * * * * may 25 , 2000 enron corporation a single user cplex v 6 . 6 development license with callable library and mixed integer , 2 cplex floating deployment licenses with mixed integer and 2 opl studios , all with first year ' s maintenance and on win nt on an intel pc . once you have a cplex development license with maintenance and update services , then you can purchase deployment licenses ( run time / license derivative works ) item 1 description fee - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1 1 cplex floating development license , callable library , mixed integer $ 15 , 300 . 00 2 maintenance on item 1 2 , 295 . 00 3 2 opl studio 10 , 000 . 00 4 maintenance on item 3 3 , 000 . 00 5 2 cplex floating deployment / mixed integer 11 , 115 . 00 6 maintenance on item 5 1 , 667 . 25 - - - - - - - - - - - - total $ 43 , 377 . 25 the cost of ( optional ) annual maintenance and update services is 15 % of the license fees . the customer is responsible for and must add any applicable sales tax , value - added ( ad valorem ) tax , duty or other transaction tax associated with the sale . this quotation is firm for 30 days and subject to the terms of the ilog license agreement and the ilog maintenance agreement . order information fax a purchase order ( with clear shipping and billing address ) to match the above items , attention kim turley . as soon as we receive your purchase order , we will ship the software and simultaneously send you an invoice by separate mail for payment . payment terms are net 30 . regards , kim turley ilog direct sales ilog inc . , lake tahoe office 889 alder avenue , suite 200 incline village , nv 89451 , usa phone : ( 775 ) 832 - 1960 , ext . 130 fax : ( 775 ) 831 - 7755 email : kturley @ ilog . com have you downloaded your free copy of opl studio ? if not , please visit : http : / / www . ilog . com / products / oplstudio / ilog : powering your software http : / / www . ilog . com http : / / www . cplex . com ask me about our - ampl training june 15 - 16 - next opl studio training , june 2000 p . s . from now until june 30 , 2000 , any ilog cplex licensee may acquire ilog opl studio for just $ 5 , 000 ( 50 % discount ) . ask me about the details !",0 +"Subject: fw : mark boland - deal examples and accomplishments here ' s the list of deals and accomplishments for mark . . . molly - - - - - original message - - - - - from : vasut , tony sent : tuesday , march 13 , 2001 9 : 59 am to : magee , molly subject : fw : mark boland - deal examples and accomplishments - - - - - original message - - - - - from : port , david sent : monday , march 12 , 2001 10 : 47 am to : vasut , tony subject : fw : mark boland - deal examples and accomplishments - - - - - original message - - - - - from : mark . boland @ seb . se @ enron sent : monday , march 12 , 2001 8 : 05 am to : port , david subject : fw : mark boland - deal examples and accomplishments > - - - - - original message - - - - - > from : boland , mark > sent : tuesday , january 23 , 2001 15 : 26 > to : ' david . port @ enron . com ' > subject : mark boland > > david , > > i ' ll attach below a short outline which i have recently put together to > summarize what i ' ve been up to . > also , i ' ve attached a couple of termsheets ( we had very few in english ) to > give you a sample of my > production . more is available if need be . i ' ve put together around 200 > various deals in the last 3 years . > i believe you already have my resume from mark , but i ' ll be glad to send > another copy . > > i ' ll be tracking you down on the phone in the near future . > regards , > mark > > > > > > > outline : > 1 ) structuring > a ) provided coordination of all parts and entities in closing > structured bond deals . i . e . : coordination of > swap . option , bond issuer , back offices , documentation , middle > office , sales , traders ( swap desk and > multiple counterparties ) , research , credit limits , legal , etc . > b ) did all of the above in a ) in a profitable and successful manner , > while evolving the product > and processes at seb . this was accomplished both individually and as > part of a team . > 2 ) idea generation > a ) constantly provided group with new ideas to consider , every week . > provided written > and / or verbal explanation and additional information and coaching > b ) have brought forth new ideas which we have used and made profits > from > 3 ) option trading > a ) represent my department and seb to world ' s leading investment > banks and derivatives > traders on some of the most complex financial transactions carried > out in today ' s market > b ) successfully trade the product while maintaining huge profits , > and not making errors > which cost the bank money > c ) providing clients with a superior investment product > d ) creating enormous profits from arbitrage trading on my own > abilities , > 4 ) systems > a ) constructed valuation model for use by back , middle office , and > risk control , and ultimately > clients receive the results of this , received positive feedback from > users > b ) part of team to negotiate and choose new equity derivatives > systems > 5 ) training other members of the structured department > a ) product knowledge > b ) market knowledge > c ) system use > d ) all aspects of structuring to stockholm and international sales > team > e ) have successfully played role of "" information booth "" and "" course > instructor "" for > members of the department and bank wide > > > > mark m . boland > seb merchant banking > 10640 stockholm , sweden > > telephone + 46 8 5062 3224 > cell + 46 70 772 3224 > > this e - mail is from seb , skandinaviska enskilda banken . it may contain > privileged and confidential information and is intended for the named > recipient ( s ) only . if you are not an intended recipient , please notify us > immediately by reply e - mail , delete this e - mail from your system and > destroy any copy hereof . > - broschyr 204 engelska ny . pdf - broschyr p + engelska . doc",0 +"Subject: re : spring workshop folks : it is my pleasure to announce the visit of professor rene carmona from princeton on february 13 , 2001 . ( this web site may provide a little information on professor carmona : http : / / www . princeton . edu / ~ rcarmona / ) professor carmona is going to talk to us about his research endeavors in weather and financial engineering . similarly , we will make a short presentation of our activities and research interests . the aim of the meeting is to explore areas of common interest and investigate the possibility of collaborating in certain research areas . the time is 2 : 00 - 3 : 30 pm . room eb 30 cl is reserved for 2 : 00 - 4 : 30 pm . please plan on attending . also , do let me know , if you would like to include someone else to this distribution list . yannis tzamouranis",0 +"Subject: energy conference vince , greetings , happy new year , and thanks for your end - of - 2000 e - mail . > one suggestion i want to make is rick causey . i talked to him and he is > willing to > be a speaker . he is a very senior and important executive of enron and a ut > grad . i have asked sheridan to raise the keynote - speaker issue with you during your discussions tomorrow . best , ehud ehud i . ronn jack s . josey professor in energy studies department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: charm see below for more information on the willis analytic product . i will provide the brochure when it arrives and we can discuss scheduling the proposed meeting . - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 01 / 18 / 2001 04 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" bertil olsson "" on 01 / 18 / 2001 04 : 03 : 18 pm to : jbouill @ ect . enron . com cc : "" david scott "" , "" carl groth "" subject : charm jim , 1 . i can confirm that charm does express traditional exposures in a var format . one of the beauties of charm is that it expresses any quantifiable exposure in a var format , i . e . financial , insurance , weather risks . in addition , it has the capability of incorporating correlations between risks - to the extent that they can be quantified . 2 . to get the ball rolling , i will send you a broschure of charm this week . i also suggest a conference call with carl groth of our ny office . carl knows charm well and my thought is that we can give you some more ideas of this product in order for you to decide whether or not you would like to pursue a presentation . a presentation can be arranged at the location of your choice . let me know if the above fits your purpose or if you would prefer to move in another direction . regards , bertil the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person .",0 +"Subject: re : background information tom , electronic version is ok . vince "" piazze , thomas "" on 11 / 07 / 2000 10 : 25 : 45 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : background information vince : i will be happy to do so . do you wish to have it in hard copy or electronically ? if in hard copy , how many copies ? tom - - - - - original message - - - - - from : vince . j . kaminski @ enron . com sent : monday , november 06 , 2000 6 : 00 pm to : piazzet @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com subject : background information tom , can you send me additional copies of the information about the webi program ? i want to distribute it internally . vince",0 +"Subject: re : genetic programming todd , we have several members of the group who can help you . one of them is steve leppard located in london . vince to : vince j kaminski / hou / ect @ ect cc : subject : genetic programming vince - i am with the ebs venture capital group . we are looking at evaluating an investment in a company called widevine out of seattle . part of their value proposition involves certain patents on genetic programming . are you familiar with that ? if so , can i set a meeting with you and a few other members of my group to discuss on tuesday or wednesday ? todd van roten enron broadband ventures office : ( 713 ) 853 - 3850 fax : ( 713 ) 646 - 8010 cell : ( 713 ) 305 - 0110",0 +"Subject: re : curves for south america remi , no problem . my assistant shirley crenshaw will call you friday to set up a meeting . vince remi collonges @ enron _ development 02 / 24 / 2000 09 : 10 am to : vince j kaminski @ ect , grant masson @ ect cc : subject : curves for south america vince and grant , i have been made responsible for all gas and power curves in south america ( plus books development , reporting , . . . . . . . ) . i have somewhat started but , since i am new on the job , i ' d love to receive advice , guidance ( and at some stage help ) from you . would you be available for a meeting next week , preferably thursday or friday ? i ' m planning to be in houston these days . remi collonges ( 55 ) 11 5503 1200",0 +"Subject: your trip hi vince , the following has been organised for you : sunday 6 . 45 pm dinner at diverso restaurant 85 piccadilly 0207 491 2222 with ben , steve , anjam monday clear until noon 12 pm lunch with dale surbey at olivetto or olivo 2 . 30 pm interviews start 6 . 30 pm or 7 pm approximate time for end of interviews tuesday clear until 10 am 10 am to 12 pm energydesk . com meeting with mikael nordstrum afternoon clear wednesday 9 am to 10 . 30 am riskcare meeting in nel 002 with michael curran , anjam and dale 11 . 30 am to 12 pm meeting with john sherriff regards , anjam x 35383",0 +"Subject: re : action learning project information kathy , enron will be represented by myself ( vince kaminski ) and kenneth parkhill . vince kathy spradling on 01 / 05 / 2001 05 : 04 : 21 pm to : ( recipient list suppressed ) cc : chamberl @ rice . edu , castro @ rice . edu , spradlin @ rice . edu subject : action learning project information dear company representative , we are pleased to announce that your company  , s proposal has been selected as a potential project in the jones graduate school of management ' s action learning project ( alp ) program . as indicated in the alp brochure , company representatives are invited to attend the alp program introduction and student networking session on wednesday , january 10 . please rsvp to kathy spradling , mba program coordinator , at 713 - 348 - 3313 or e - mail her at spradlin @ rice . edu by monday , january 8 to let her know if you plan to attend the session . please provide your company name and the names of representatives attending the session so nametags can be prepared . dress is business casual . below is the schedule of events : 8 : 30 9 : 00 a . m . ? continental breakfast and setup of your company table ? farnsworth pavilion ( located in rice student center ) 9 : 00 9 : 45 a . m . ? introduction and program overview with company representatives , alp administration and faculty liaisons ? farnsworth pavilion ( located in rice student center ) 10 : 00 12 : 00 p . m . ? student networking session with company representatives and first - year students ? grand hall ( located in rice student center ) the alp program introduction and student networking session will be held in the rice student center ( numbers 10 and 11 on the campus map sent with your acceptance letter ) . please contact kathy spradling if you need an additional map faxed to you . there is a large amount of construction taking place on campus . once the visitor  , s lot near the rice memorial center is full , we recommend you park in the stadium lot in the designated visitor area and take the shuttle bus to the rice memorial center . make sure to let the bus driver know your destination . the mba program office has reserved the grand hall for the student networking session . each company represented will have a table set up with signage for your company . you may bring additional materials you feel might be of interest to students such as company brochures , articles and packets . due to the limited space , we are discouraging the use of display boards in the networking session . unfortunately , no internet connections will be available for use during the session . again , thank you for your interest in rice . we look forward to working with you , and hope to see you on wednesday , january 10 . carrie miller pam castro kathy spradling kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: re : it was nice meeting you at the informs meeting . i enjoyed talking to you in the slc conference . thank you for the reference to your recent publication . let me find out about rice seminars and any interest within our group and get back to you . regards , krishna . uryasev @ aol . com on 06 / 18 / 2000 05 : 58 : 38 am to : cc : subject : it was nice meeting you at the informs meeting . dear dr . krishnarao , it was nice meeting you at the informs meeting . if it is of interest , you can download my recent papers and reports in the area of risk management and financial engineering from further , i give the list of recent downloadable publications related to the risk management and financial engineering . 1 . uryasev , s . conditional value - at - risk : optimization algorithms and applications . financial engineering news , no . 14 , february , 2000 . 2 . uryasev , s . introduction to the theory of probabilistic functions and percentiles ( value - at - risk ) . research report 2000 - 7 . ise dept . , university of florida , may 2000 . 3 . chekhlov , a . , uryasev , s . , and m . zabarankin . portfolio optimization with drawdown constraints . research report 2000 - 5 . ise dept . , university of florida , april 2000 . 4 . palmquist , j . , uryasev , s . , and p . krokhmal . portfolio optimization with conditional value - at - risk objective and constraints . research report 99 - 14 . ise dept . , university of florida , november 1999 . 5 . andersson , f . and s . uryasev . credit risk optimization with conditional value - at - risk criterion . research report 99 - 9 . ise dept . , university of florida , august 1999 . 6 . uryasev , s . and r . t . rockafellar . optimization of conditional value - at - risk . research report 99 - 4 . ise dept . , university of florida , june 1999 . i am e - mailing to you from japan . i am for three month at the center for research in advanced financial technology , tokyo institute of technology . here in japan , i am collaborating with my colleges on new classification techniques . suppose you have some data set ( e . g . , a data set of financial records of companies ) and you want to rate the companies based on this ( or some other information ) . linear programming and semi - definite programming methods are used for this purpose . with these techniques we are able to calculate credit rating of investment companies ( aaa , bbb ,  ( ) . similar techniques can be used for scoring of credit card applications and other classification problems . i am interested in applied projects in energy , risk management , and financial engineering area . i will be happy to collaborate with you on this subject . i am looking for financial support for phd students who may work on your applications . also , i will be interested in to give a presentation at your company or at the rice university , as we discussed . best regards , stan uryasev prof . stanislav uryasev university of florida , ise po box 116595 303 weil hall gainesville , fl 32611 - 6595 e - mail : uryasev @ ise . ufl . edu url : www . ise . ufl . edu / uryasev",0 +"Subject: interview schedule for wichai narongwanich attached please find the interview packet for the above - referenced person . the interview will happen friday july 14 , 2000 . please print both documents for your hard copies . hardcopies of the resume will be delivered via runner . if you have any questions , or conflicts of schedule , please do not hesitate to contact me .",0 +"Subject: reimbursement of individually billed items the memo distributed on june 27 on reimbursement of individually billed items requires clarification . the intent of the memo was to give employees an alternate method of paying for pagers , cell phones , etc . employees can continue to submit these invoices to accounts payable for processing or pay these items with their corporate american express card and request reimbursement through an expense report . either way is an acceptable way to process these small dollar high volume invoices .",0 +"Subject: re : test avi , these are my coordinates vince vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com on 06 / 20 / 2000 01 : 34 : 49 pm to : "" vince j kaminski "" cc : subject : re : test vince : got the message ! kind regards avi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - avi i . hauser phd mba cds director 100 international drive mt olive nj 07828 - 1383 + 1 973 691 3664 ( office ) + 1 973 347 8189 ( fax ) + 1 973 727 3622 ( car + slow paging ) hauser @ cdsusa . com",0 +"Subject: re : your mail zhendong , dr . kaminski called me back telling me that he would like to have you as an intern student in his research department during the summer . please write him an email as soon as possible to introduce yourself and letting him know of your expected starting date and ending date . dr . kaminski ' s email address is vince . j . kaminski @ enron . com shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng",0 +"Subject: aiesec polska - eurolds 2000 jarek , czy enron moze pomoc w organizacji tej imprezy ? bylaby to dobra okazja nawiazania wielu pozytecznych kontaktow . wicek - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 17 / 2000 08 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" andrzej wodnicki "" on 02 / 16 / 2000 02 : 50 : 05 am to : vince j kaminski / hou / ect @ ect cc : subject : aiesec polska - eurolds 2000 szanowny panie kaminski ! nazywam sie andrzej wodnicki i jestem czlonkiem stowarzysznia studentow aiesec przy szkole glownej handlowej ( dawnej sgpis ) . prosze o poswiecenie paru chwil na przeczytanie tego maila . ( kontakt do pana otrzymalem od kolegi , ktory organizowal prezentacje firmy enron na sgh , a posrednio od pana jarka astramowicza , przedstawiciela enron na polske . ) w imieniu aiesec polska chcialbym zwrocic sie do pana z wielka prosba pomocy przy wydarzeniu , ktore w tym roku organizujemy . aiesec polska , a w szczegolnosci aiesec przy szkole glownej handlowej ma zaszczyt organizowac w tym roku european leadership development seminar . jest to seminarium na temat przywodztwa skierowne do obecnych i przyszlych czlonkow rad wykonawczych komitetow lokalnych aiesec w calej europie . po raz pierwszy aiesec polska ma mozliwosc organizacji takiego wydarzenia i stanowi ono dla nas olbrzymie wyzwanie . przygotowywalismy sie do niego od kilku lat i obecnie jestesmy juz w koncowej fazie organizacji eurolds 2000 . projekt rozpoczyna sie 7 marca 2000 roku oficjalnym otwarciem przez pana prezydenta aleksandra kwasniewskiego w sali kongresowej . pozniej odbeda sie dyskusje panelowe ( udzial wielu znakomitych gosci - m . in jan krzysztof bielecki , jacek saryusz wolski , andrzej olechowski ) oraz wyklady i prezentacje regionow polski w auli spadochronowej szkoly glownej handlowej , a nastepnie delegaci udadza sie do hotelu mrongovia na szkolenia , casy i wyklady na temat przywodztwa . ( szczegolowy program eurolds 2000 przesylam w zalaczniku . ) jak do tej pory staralismy sie mozliwie najwiecej dokonac wlasnymi silami , jednak obecnie na 3 tygodnie przed tym wydarzeniem stoimy przed pewnym problemem i stad tez pojawil sie pomysl skontaktowania pana , jako osoby , ktora moglaby nam wydatnie pomoc . chcielibysmy poprosic pana o wsparcie finansowe . wspolpracujemy juz z wieloma firmami i instytucjami ( m . in . deloitte & touche , arthur andersen , fundusz phare , fundacja konrada adenauera oraz wieloma innymi ) , jednak na obecnym etapie organizacji projektu wciaz brakuje nam 12000 $ . poczatkowo chcielismy nawiazac kontakt z pania eileen price z londynu , jednak wydaje nam sie , ze pan jako zalozyciel aiesec w polsce powienien po pierwsze o takim wydarzeniu wiedziec , a po drugie mamy nadzieje , ze moze nam pan pomoc . bardzo prosze o odpowiedz , z powazaniem andrzej wodnicki prezydent eurolds 2000 aiesec szkola glowna handlowa - attl . htm - eurolds _ prezentacja . ppt",0 +"Subject: factor loadings fyi . . jeff - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 06 / 22 / 2000 07 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : ted murphy 06 / 21 / 2000 05 : 43 pm to : rick buy , john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , mark frevert / na / enron @ enron cc : subject : factor loadings i hope that the following clears up some of the confusion regarding the above - captioned process . factor loadings are an input to value - at - risk ( var ) . generally , you can consider them the determinants of relationships between curves , and points on curves based on trader inputs . these pertain to all curves not just north american natural gas . there is a specific program which calculates these relationships which requires a considerable amount of processing time ( 3 hours per run ) as well as another few man - days to evaluate the results . there is no "" ideal "" or recommended period in which these must be updated . more frequent is "" better "" . given the amount of time it takes to refresh , it was "" agreed "" a long time ago amongst rac , research , it and operations that it would be done every 2 weeks . no commercial input was received . the roles were to be simple as they are with most roles in and around var and other risk management controls : research specifies the math it codes the program operations runs the program rac evaluates the results the process has been run every two weeks on the second thursday of every month since february ( as it had been prior ) and rac has rejected the results because the results did not reflect the underlying math because of the complexity of the math and the continuing addition of new products and curves . this created the need to recode the application from scratch . rac continued to agitate to get this done , particularly knowing that the pressure on the efficacy of var would be questioned as we went into the volatile period of 2000 ( e - mails from rudi zipter available upon request ) . the new code was implemented last thursday and the results were accepted resulting in an approximate 10 % difference in var . rac had requested that the code be re - written on 6 / 10 / 99 @ 7 : 44 am with a target completion date of 8 / 2 / 99 . this was discussed and accepted by phillipe bibi on 6 / 17 / 99 in a meeting in his conference room with rick buy , dan bruce , jonathon le , ted murphy , bill bradford , debbie brackett and rudi zipter along with the rest of our task list . we have resolved that the process will continue as stated and will communicate to you the results . there are dozens of other processes that are important to the calculation and interpretation of var that need to be implemented , enhanced , improved or rewritten altogether . for example , the jump - diffusion factors for north american power have not been refreshed in 2000 . the prioirty is dependent on the level of precision required . i will provide a comprehensive list of those processes in due course . ted",0 +"Subject: a few comments john , happy new year . i hope the first few weeks of this year will see the completed paper . i am sending you the last version of the paper i have received with a few comments ( in red ) . i think it makes sense to discuss the paper over the phone . i have a number of more detailed comments . vince - enron transformation paperl 2 _ 17 _ 00 _ vk . doc",0 +"Subject: mba career opportunity dear ? vincent kaminski : ? i got your contact details from the web site for power marketers . i have a strong interest in pursuing a career in the energy industry ? with a top energy company like ? enron , where my abilities and qualifications can be fully applied for our mutual benefit . i am graduating in may with an mba ? degree with concentrations in finance and information systems . this summer i worked ? as an intern with structuring and analytics group of ameren energy . ? this internship ? has been especially challenging and has enhanced my professional competencies . while there , i was afforded the opportunity to ? develop a forward view model ? for ? off - peak ? electricity price forecasting and analyze the data sets of a fundamental ? model to create forward price curves . both projects added value to the company and provided me with first - hand experience in the area of energy trading and marketing as well as modeling techniques . in addition , i have an undergraduate degree in mechanical engineering and two years ' experience in power generating . with my work experience in energy finance and exceptional academic and professional achievements , along with my exemplary leadership and management potential and outstanding analytical , business communication , problem - solving and computer skills , i ' m convinced that i will be able to make immediate contributions to your company . i am attaching my resume for your review . should you have any questions or need clarification , please feel free to contact me at ( 504 ) 861 - 9110 or qchenl @ tulane . edu . as i have some offers with deadlines approaching , i would appreciate it if you could give me a quick response . i also expect ? a base compensation above $ 75 k . i look forward to ? hearing from you soon . ? best regards , qing ( christine ) chen mba 2001 a . b . freeman school of business tulane university tel : ( 504 ) 861 - 9110 - resumeus . doc - resumeus txt . txt",0 +"Subject: the installation of the equipment you ordered is completed - - - automatic notification system ( request # : ecth - 4 rstt 6 ) requested for : vince j kaminski requested by : shirley crenshaw the installation of the equipment ( see below ) has been completed . en 6600 128 mb installed in desktop en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0 en 6600 128 mb installed in desktop",0 +"Subject: risk and purchasing meeting - eb 4438 this is scheduled to be a short ( 1 hour ) meeting to discuss risk and purchasing",0 +"Subject: re : holiday greeting from jerry wind - holiday , revisionl . doc",0 +"Subject: re : next visit to houston ed , wednesday , july 12 , 2 : 300 will work for me . i shall be glad to review your website - - www . weathereffects . com . i shall invite some people who work on electricity in my group to join me . vince "" edward krapels "" on 06 / 29 / 2000 03 : 53 : 40 pm please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : re : next visit to houston vince , good to hear from you and i ' m glad you ' re available . how is wednesday at 2 : 30 ? i did look at eol and am not surprised to see its quality . i was unable to say much about it in my risk electricity hedging and trading report because of deadline pressures . how is the site doing ? i am intrigued by the competition for trading platforms and was astonished to hear that goldman , morgan , bp and shell were going to launch a site to compete with yours . talk about a shotgun marriage ! if we have time next week , i could step you through our website - - www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out a password yet but would be happy to walk through the site with you over the phone using my password . it ' s a very ambitious site - - with state - of - the - art wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for pjm and nepool . esai contributes oil and gas input price forecasts , capacity judgments , and "" herding "" ideas to develop power price forecasts for same time periods . after one month ' s full - bore effort , i ' m pleased with the results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) . have a great weekend . ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , june 28 , 2000 5 : 29 pm to : ekrapels @ esaibos . com cc : vince j kaminski ; shirley crenshaw subject : re : next visit to houston ed , i shall be available on both days . what about wednesday , july 12 , between 1 : 30 and 4 : 00 . please , let me know what time would work for you . it will be nice to see you again . vince p . s . by the way , did you have a chance to take a look at the eol ? "" edward krapels "" on 06 / 28 / 2000 02 : 49 : 41 pm please respond to ekrapels @ esaibos . com to : vince j kaminski / hou / ect @ ect cc : subject : next visit to houston dear vince , i will be returning to houston during the week of july 10 . esai and weather services international have launched - - after more than 18 months of r & d - - our service , called energycast power trader and energycast gas trader , for power traders in nepool and pjm . i would be happy to review the service with you as well as take you on a tour of our web site . are you available on july 12 - 13 ? sincerely , ed krapels",0 +"Subject: re : re [ 10 ] : greetings from london ( to enron ) teresa , i would like to invite iris for an interview in houston . she works currently in london can you call her and ask when she is planning to visit the states . we could pay the airfare from a location in the states . i would hate to pay the lst class ticket from london to houston , though i would go for it , if necessary ( i don ' t want a candidate to think that we are that cheap ) . business class is a standard for business related , cross - atlantic flights . i would be more comfortable if you could negotiate this issue . thanks vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 16 / 2000 10 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 06 / 12 / 2000 03 : 51 pm to : iris . mack @ bnpparibas . com @ enron cc : vince j kaminski / hou / ect @ ect subject : re : re [ 10 ] : greetings from london ( to enron ) iris , at this point it ' s my group : research , i . e . quantitative modeling . please , let me know what your interests are and i shall try to line up other groups for the interview . vince iris . mack @ bnpparibas . com on 06 / 09 / 2000 02 : 33 : 50 am to : vince . j . kaminski @ enron . com cc : subject : re [ 10 ] : greetings from london ( to enron ) hi , i will be out of the country until wednesday afternoon - london time . maybe we can chat then . also , could you please tell me about the group ( s ) that are interested in speaking with me . thanks , iris internet from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 20 : 31 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 8 ] : greetings from london ( to enron ) iris , leaving for ca in a few minutes . i shall get back to you monday . vince iris . mack @ bnpparibas . com on 06 / 06 / 2000 10 : 36 : 46 am to : vince . j . kaminski @ enron . com cc : subject : re [ 8 ] : greetings from london ( to enron ) hi , thanks for your email . begining of july - what about july 4 th week ? could you give me a bit more info regarding the best days for you and your colleagues . thanks , iris internet from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 14 : 29 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 6 ] : greetings from london ( to enron ) iris , the beginning of july would be better for us . please , let me know what is your availability . vince iris . mack @ bnpparibas . com on 06 / 06 / 2000 02 : 30 : 49 am to : vince . j . kaminski @ enron . com cc : subject : re [ 6 ] : greetings from london ( to enron ) hi , thank you for your email . how many days do we need ? i have checked my calendar . and think that i should be able to come on monday june 19 th ( tuesday june 20 th - if you need more than one day ) . . i can fly from london to houston during the following weekend to arrive in time for monday morning . let me know if these days are good for you and your colleagues . regards , iris internet from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 18 : 33 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 4 ] : greetings from london ( to enron ) iris , we can invite you for an interview to houston . what would be a the time for you ? vince iris . mack @ bnpparibas . com on 05 / 25 / 2000 11 : 32 : 04 am to : vince . j . kaminski @ enron . com cc : subject : re [ 4 ] : greetings from london ( to enron ) hi , thank you for your prompt response . i am interested in any contacts you may have in your rolodex . also , i would be opened to talk to enron as well . please let me know more details . kind regards , iris internet from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 16 : 19 gmt to : iris mack cc : vince . j . kaminski , stinson . gibner , grant . masson , pinnamaneni . krishnarao , vasant . shanbhogue bcc : subject : re : re [ 2 ] : greetings from london ( to enron ) iris , i shall go through my rolodex and try to find some good leads for you . i left investment banking 8 years ago and this field changes very fast . alternatively , would you be interested in a company like enron or another energy company in houston ? please , let me know . vince iris . mack @ bnpparibas . com on 05 / 25 / 2000 09 : 20 : 01 am to : vince . j . kaminski @ enron . com cc : subject : re [ 2 ] : greetings from london ( to enron ) hi , how are you ? thank you kindly for your email . sorry i have not responded sooner . currently i am working in derivatives structured products and risk management at bnp paribas in london . although i currently enjoy living and working in london , i may need to return to the states - because of my mother ' s failing health . do you know of any good contacts at investment banks that i may forward my details to ? for your information , i have attached my cv . ( please see attached file : iris marie mack . doc ) . thank you in advance for your time and consideration . kind regards , iris mack 44 ( 0 ) 20 7595 8665 ( work ) 44 ( 0 ) 20 7229 9986 ( home ) ( see attached file : iris marie mack . doc ) internet from : vince . j . kaminski @ enron . com on 04 / 04 / 2000 15 : 03 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : greetings from london ( to enron ) iris , please , feel free to give me a call when you have a few minutes . i shall be glad to chat with you . vince iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am to : vkamins @ enron . com cc : denis . autier @ paribas . com subject : greetings from london ( to enron ) dear dr . kaminski , how are you ? it was nice to meet you at the real options conference in nyc . i was intrigued by some of the comments in your conference talk . in particular , by your use of real options to hedge financial options . this is something i am interested in as well . when you have some time , could we chat about this topic in a bit more detail ? thanks for your time and consideration . hope to hear from you soon . regards , iris mack - - - - - - - - - - - - - - - - this message is confidential ; its contents do not constitute a commitment by bnp paribas group * except where provided for in a written agreement between you and bnp paribas group * . any unauthorised disclosure , use or dissemination , either whole or partial , is prohibited . if you are not the intended recipient of the message , please notify the sender immediately . * bnp paribas group is a trading name of bnp sa and paribas sa ce message est confidentiel ; son contenu ne represente en aucun cas un engagement de la part du groupe bnp paribas * sous reserve de tout accord conclu par ecrit entre vous et le groupe bnp paribas * . toute publication , utilisation ou diffusion , meme partielle , doit etre autorisee prealablement . si vous n ' etes pas destinataire de ce message , merci d ' en avertir immediatement l ' expediteur . * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas sa ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) - iris marie mack . doc",0 +"Subject: rab graph i believe this will be helpful in your analysis . - - - - - - - - - - - - - - - - - - - - - - forwarded by michael anderson / hou / azurix on 08 / 22 / 2000 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : keith harris / wsx / azurix @ exchange on 08 / 03 / 2000 01 : 40 pm gdt to : michael anderson / hou / azurix @ azurix cc : colin skellett / wsx / azurix @ exchange subject : fw : amended index graph michael i have got csfb working on the amendment you asked for . in the meantime we have produced a graph which shows , as indices , market values of the water companies and the rab of the industry since privatisation . the following points come out 1 market values overtime have been 1 . 1 x rab 2 the result is significantly skewed by the period between mid 1997 and end 1998 when the ratio was cl . 5 x . 3 the premium to rab is only found at a time when political uncertainty has been removed the companies are able to outperform the regulatory deal significantly . those days are gone - a fact witnessed by the decline in share prices in the last year just to note that the graph we have produced here is a weighted average of water companies - whereas the figures we did yesterday on the rab market value ratio is a straight average . obviously that influences the numbers a little . on customerco . csfb have contacted around 7 energy companies . the result has been positive and they are prepared to enter our journal exercise . i await a revised fee proposal but csfb have been advised that it should be more modest than the last one ! keith - - - - - original message - - - - - from : david kitchener sent : 03 august 2000 13 : 27 to : keith harris subject : amended index graph",0 +"Subject: re : summer internship shirley , fyi . it looks like cantekin will be starting on may 22 ( summer intern ) . can we find him space on 19 ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 20 / 2000 02 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" cantekin dincerler "" on 04 / 20 / 2000 11 : 21 : 11 am please respond to to : "" ' stinson gibner ' "" cc : subject : re : summer internship stinson , i just received a word from associate & analyst program that the official starting dates are may 22 , and june 2 . they seem to be strict about this . hopefully i ' ll make it to may 22 . regards , - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 http : / / uts . cc . utexas . edu / ~ cantekin - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > - - - - - original message - - - - - > from : stinson gibner [ mailto : stinson . gibner @ enron . com ] > sent : thursday , april 13 , 2000 5 : 13 pm > to : cantekin @ mail . utexas . edu > subject : summer internship > > > > > cantekin , > > you should be getting an offer of a summer internship within > the next few days . > if you don ' t , please let me know . > > i think you will be working with me on a combination of enron > broadband services > and enron north america projects and am looking forward to > having your help . > some of the projects should be a lot of fun . > > > when are available to start so i can plan ahead for you ? > > best regards , > > stinson > >",0 +"Subject: re : uk portfolios and books setup in risktrac tanya , we have checked the risktrac system and ( 1 ) the spreadoption , and other , mappings in risktrac are correct . ie , els 1 b has both power ( ppp ) and gas ( nbp ) and the deltas / gammas tie out . the lolp and smp mappings all tie out . ( 2 ) however , the uk power in risktrac has 25 twh more of power . this has something to do with the enpower - risktrac communication . ( 3 ) uk - gas positions tie out in aggregate ( off by a single bcf ) for var discrepancies , other than positions , the following will contrbute ( 1 ) in risktrac power is mapped to r 4 ( cinergy ) while in the spreadsheet it is us - ng . ( 2 ) gas - power and efa - efa correlations are different . matthew is coordinating with oliver and london it to resolve the position issues . naveen tanya tamarchenko @ ect 01 / 03 / 2001 02 : 09 pm to : naveen andrews / corp / enron @ enron , matthew adams / corp / enron @ enron cc : rabi de / na / enron @ enron , jaesoo lew / na / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : uk portfolios and books setup in risktrac naveen and matthew , i started looking systematically through uk positions and corresponding var numbers in the risckrac . i found a few inconsistencies so far . 1 . the portfolio elsb 1 - nbp has a book elsb 1 under it . the sum of delta positions for this book is 239 , 021 , 655 , the sum of gamma positions is - 211 , 031 , 450 . var for the portfolio elsb 1 - nbp is zero . the same refers to a few other portfolios , for example elsb 2 - nbp , elsb 3 - nbp , e 2 xxl - nbp . 2 . the portfolio elsbp 1 - ppp also has the book elsb 1 under it . this book contains the positions on pppwdl through pppwd 6 and pppwel through pppwe 4 . the same refers to the other books , for example elsb 2 . this looks messy . can someone in rac go over all the portfolios , all the corresponding books and curves in risktrac and make sure they are set up properly ? thank you , tanya .",0 +"Subject: re : ( no subject ) jana , sorry , i shall be in florida this thursday . i am speaking at a conference in key biscayne . talk to you soon . vince jlpnymex @ aol . com on 03 / 28 / 2000 09 : 32 : 16 am to : doris . a . abernathy @ ucm . com , nalexander @ texasmonthly . emmis . com , blackj @ wellsfargo . com , ckcrews @ swbell . net , rclark @ nymex . com , kcdunnagan @ aol . com , rdyerlaw @ houston . rr . com , ggulen @ uh . edu , lesley . guthrie @ cpa . state . tx . us , elizabethherring @ pzlqs . com , eric . hoffman @ esso . com , khcnb @ arkansas . net , michael . jacobs @ hq . doe . gov , vkamins @ enron . com , info @ . com , kimmorrell @ excite . com , adrian . a . nunez @ usa . conoco . com , elizabeth _ oldroyd @ americancentury . com , woodybc @ bp . com cc : subject : ( no subject ) dear friends : it is time for rockin ' at rockefellers which benefits the houston symphony ! this is your chance to dance , your date to associate , and your option to auction ! join us thursday , april 6 , from 7 - 10 p . m . at the legendary rockefeller hallon historic washington avenue at heights blvd . dance the night away to the sounds of sammy relford and friends and enjoy an open bar and light hors d ' oeuvres , and a silent auction full of unique , celebrity items . tickets are $ 20 in advance , and $ 25 at the door . invite your friends , and join us there ! jana phillips",0 +"Subject: help on dpc lng options jeff , i fully support sandeep ' s request to move anshuman srivastav to houston . i anticipate that we shall be working on dhabol related issues for the next two years until all the business problems are successfully resolved . anshuman is a very capable employee , with the right combination of skills to attack the dhabol modeling challenge . he understands the indian markets as well as international fuel markets . he has also a very good grasp of power industry fundamentals and of the technology used at the dhabol power plant . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 12 / 2001 04 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli @ enron _ development 03 / 12 / 2001 12 : 40 pm to : vince j kaminski @ ect cc : subject : help on dpc lng options vince , this is a follow - up of our meeting with jeff shankman on friday , as well as our discussions with the global assets group on dpc issues . as you see , there is a need for developing a comprehensive fuel strategy for dpc that encompasses both the lng phase , and the naphtha side . furthermore , any fuel strategy we develop will have to be in consonance with the power side of the business . there is a lot of analytical work that will be required in this context over the next several months , and we will need a person who understands both the power and the fuel side of the business at dpc . i believe anshuman is just such a person . he has worked closely with me over the last 2 yrs . , and has been trained in the derivatives side of the business ( he has attended all three levels of derivatives classes offered at enron ) . over the last month , his presence in houston has greatly helped me in melding the henwood study with the picture on the lng / fuel side . i believe his presence in houston will be critical to us developing a comprehensive fuel / lng strategy for dabhol , together with the global markets and asset groups . i am therefore requesting you to explore the possibility of anshuman being moved on a more permanent basis to houston . as you are aware , anshuman himself would welcome such an arrangement . regards , sandeep .",0 +"Subject: tage vince , i have the information you requested concerning spyros maragos . please call me at your convenience . paul johnson ( 281 ) 497 - 8595",0 +"Subject: 20 th annual ceraweek - "" shooting the rapids : strategies and risks for the energy future "" mr . vincent j . kaminski managing director enron capital & trade resources corp . dear mr . kaminski : i am pleased to invite you to join my cera colleagues and me at our 20 th annual executive conference , "" shooting the rapids : strategies and risks for the energy future "" to be held february 12 - 16 , 2001 in houston , texas . ? this is the premier international gathering offering senior executives new ideas , insights and strategic thinking on the issues facing the global energy industry . i believe you will find the conference and related social events timely and of considerable value . ? our focus will be on the critical implications of the current market turmoil for energy strategies , investment , regulatory backlash , competitive dynamics , and industry structure . ? presentations cover all key regions and energy sectors - - oil , natural gas and power - - and their interconnections . ? the conference is the centerpiece of ceraweek , a full week of senior level meetings designed to foster exchange and learning , as well as informal interaction and networking . ? last year ' s participants included some 1600 executives from over 57 countries . complete details on ceraweek 2001 can be found at ? http : / / www . cera . com / cfm / track / mc . cfm ? p = 670 & c = 2804 ? . to register , please go directly to http : / / www . cera . com / cfm / track / mc . cfm ? p = 781 email register @ cera . com ; or call us at 1 ( 800 ) 879 - 2372 ext . 800 ( outside the u . s . ( 617 ) 497 - 6446 ext . 800 ) . ? i hope you will join us ! sincerely , daniel yergin chairman , cambridge energy research associates should you experience problems reaching the web site using the links above , please go to http : / / www . cera . com / ceraweek / our relationship with you is very important to us . ? if you wish not to receive future e - mail notifications , please send a reply to this message with "" donotemail "" as the subject of your message . ( mailto : info @ cera . com ? subject = donotemail ) ? please indicate whether you wish to be removed from the conference list or alternatively from the list for any future cera notifications . ",0 +"Subject: re : fw : parent - subsidary model hi again , thanks for the financial data on enron ' s european counterparties . it is my understanding that you started out with a list of 500 such counterparties . however , your spreadsheet only contains information for 72 of these european counterparties . will you please tell me the logic behind the elimination of the 400 + other counterparties ? thanks so much , iris - - - - - original message - - - - - from : parsons , ben sent : tuesday , april 17 , 2001 2 : 56 am to : mack , iris cc : valnek , tomas ; dhar , amitava ; mumford , mike subject : re : fw : parent - subsidary model hi iris the inputs and outputs generated by riskcalc can be seen in the attached file : > we only looked at the 5 - yr pd . inputs are in columns a - u . these are the inputs generated by amadeus . you can run these inputs through the riskcalc model over the web ( http : / / www . moodysqra . com / privfirm ) using the login : dupred , password : detective . this is our trial licence which lasts for about 2 more weeks ( mike mumford will have more details about the current licence ) tomas valnek was getting the data from the amadeus database , so i ' ll leave it to him to determine if houston access is possible . in the meantime you can use the dataset attached for testing purposes . ben from : iris mack / enron @ enronxgate on 12 / 04 / 2001 17 : 58 cdt to : ben parsons / lon / ect @ ect cc : amitava dhar / corp / enron @ enron subject : fw : parent - subsidary model hi ben , how are you ? today we had a meeting with craig chaney and jeff kinneman to discuss the private firm model . they requested that i spend some time carefully analyzing the moody ' s riskcalc model . i noticed that you also have been looking at riskcalc - as indicated in your paper entitled "" pricing parent companies and their subsidiaries : model description and data requirements "" other than the example discussed in your paper , did generate any other test statistics , scores , etc . also , you stated that you used amadeus database . we are in the process of trying to obtain data from various data vendors - but that may take a while . in the mean time , may we have access to the amadeus database or some sample dataset ? thanks so much , iris - - - - - original message - - - - - from : valnek , tomas sent : tuesday , april 10 , 2001 9 : 10 am to : fiala , markus ; seyfried , bryan ; salmon , scott ; kirkpatrick , eric ; mumford , mike ; fontaine , jean - sebastien ; brooks , simon ; price , nigel ; diprose , robert ; rezaeian , reza ; gordon , mike ; lee , derek ; hershkovitz , ilan ; golden , sally ; stephan , nicholas ; albanis , george ; shanbhogue , vasant ; mack , iris cc : parsons , ben subject : parent - subsidary model attached is a description of the parent - subsidiary model that ben and i have been working on over the last few weeks . comments welcome ! tv >",0 +"Subject: interview with the research group good morning toni : the research group would like to bring in jerzy jarosz for an exploratory interview at his convenience . . the interviewers from the research group would be : vince kaminski p . v . krishnarao zimin lu paulo issler tanya tamarchenko stinson gibner grant masson ( if the interview is after the 18 th of july ) vasant shanbhogue ( if the interview is after the 21 st of july ) from other departments : ted murphy bill bradford gary hickerson his resume is attached . if you need any other information , please let me know . thanks !",0 +"Subject: a few loose ends norma , thanks for your mesage . 1 . i shall ask krishna to reduce his rollover to 40 hrs . 2 . any resolution on bonus for lance ( october 2 nd start ) ? anita dupont is in the same situation . 3 . can you send me a copy of exit interview for grant masson ? there is a special reason i need and i shall explain it to you in person . 4 . what time next week would be good for lunch ? i would be glad to invite you molly and ramona . what about friday the 22 nd ? vince",0 +"Subject: a friend of mine shirley , please , arrange a phone interview with richard . stinson , myself , vasant . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kristin gandy / enron @ enronxgate on 05 / 01 / 2001 05 : 14 pm to : vince j kaminski / hou / ect @ ect cc : subject : a friend of mine vince , last week i was contacted by one of my friends who is very interested in becoming an enron employee . he has a phd and several years research and lab experience . richard is afraid that being a phd is a dying breed and may need to go back to school to obtain an mba . i was wondering if you would mind looking at the attached resume to assess if you have any interest in richard , or if you feel i should encourage him to go back to school . i am unclear as to the qualifications for your group so i apologize if this request is way off base . thank you for your help , kristin gandy associate recruiter enron corporation 1400 smith street eb 1163 houston , texas 77002 713 - 345 - 3214 kristin . gandy @ enron . com",0 +"Subject: re : enterprise risk management jim , yes , i would be very interested . vince james l bouillion 01 / 17 / 2001 03 : 02 pm to : kevin kindall / corp / enron @ enron cc : jere c overdyke / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : enterprise risk management i had a meeting with willis ( insurance broker ) today and they advised that they have a computer analytics tool that can evaluate traditional exposures and express the risk as var . would you be interested in seeing the tool ?",0 +"Subject: fwd : re : optical network engineering & enron research offsite meeti ng fyi . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 17 / 00 09 : 10 am - - - - - john _ griebling @ palm . net 03 / 17 / 00 06 : 29 am please respond to john _ griebling to : scott yeager / enron communications @ enron communications , dorn @ palm . net , diane _ hetzel @ palm . net cc : ( bcc : ravi thuraisingham / enron communications ) subject : fwd : re : optical network engineering & enron research offsite meeti ng scott , we are definitely going to do the network engineering / research off - site in breckenridge the weekend of april 21 - 22 - 23 ( fri , sat , sun ) . there will be 25 - 30 people . we will plan on meeting and lodging facilities in town . let us know if you want to arrange a social event or activity at your place for the group . my assistant , sheryl lara , will be coordinating with you . she will also be publishing agenda and attendee invites as soon as we finalize these next week . - - forwarded message - - hi vince , here is the official ' go ' signal from john griebling . sheryl and shirely please plan the space etc . together . please plan on about 25 to 30 people . regards , ravi . p . s . vince , john and stinson , i will send another e - mail with the proposed ag",0 +"Subject: re : mscf speaker series kristin gandy is following up on this . she ' s the new carneige mellon recruiter . sorry about the delay . alison vince j kaminski 08 / 11 / 2000 03 : 59 pm to : mary alison bailey / hou / ect @ ect cc : subject : re : mscf speaker series fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 11 / 2000 04 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" pierre - philippe ste - marie "" on 08 / 11 / 2000 03 : 39 : 39 pm to : cc : subject : re : mscf speaker series thx , we are very anxious to hear her answer pierre - philippe ste - marie - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pstemarie . homestead . com - - - - - original message - - - - - from : to : cc : ; sent : friday , august 11 , 2000 10 : 55 am subject : re : mscf speaker series > > pierre - philippe , > > i have contacted allison bailey to ask her to move her visit > to the campus to coincide with my presentation . > i hope to hear from her soon . > > vince kaminski > > p . s . nice web site > > > > > > > > "" pierre - philippe ste - marie "" on 08 / 10 / 2000 05 : 13 : 53 pm > > to : > cc : > subject : mscf speaker series > > > > dear mr . kaminsky , > > just checking if there was any progress . . . or anything i could do to help > you . > > sincerely , > > pierre - philippe ste - marie > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > pstemarie . homestead . com > > > > >",0 +"Subject: day off tuesday stinson , i would like to take a day off tomorrow ( tuesday , april 10 ) . i need to register my son to elementary school and send my cars to service . my cell number is 713 - 858 - 2577 in case you need to reach me . zimin",0 +"Subject: re : f / u to dr . kaminski @ enron from iris mack hi again , i am visiting several family members and friends over the next few days . therefore it will be hard to contact me . however , next week i will be easier to reach . my contact details in nyc are as follows . i will be staying at the following hotels : washington square hotel from november 28 th for 3 nights ( tue , wed and thur ) 212 . 777 . 9515 marriott nyc financial december lst for 1 night ( fri ) 212 . 385 . 4900 at any rate , i will still try to reach you on tomorrow morning . if all fails , we will try to reach each other next week . happy thanksgiving , iris > from : "" iris mack "" > to : vince . j . kaminski @ enron . com > subject : re : f / u to dr . kaminski @ enron from iris mack > date : tue , 21 nov 2000 22 : 07 : 09 > > hi , > > how are you ? seems like we have had a bit of difficulty contacting each > other . sorry i missed your call . i am now in nyc - until december 2 nd . > > i will try to call you on tomorrow morning about 8 am houston time . > > take care , > iris > > > > > > from : vince . j . kaminski @ enron . com > > to : irismmack @ hotmail . com > > cc : vince . j . kaminski @ enron . com > > subject : hello > > date : tue , 21 nov 2000 15 : 14 : 31 - 0600 > > > > iris , > > > > we are trying to reach you but we are getting error messages . > > please , call me 713 853 3848 . > > > > vince > > > > > _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com",0 +"Subject: telephone interview with the research group good morning mr . catanese : your resume was forwarded to the research group and they would like to conduct a telephone interview with you at your convenience . we would prefer the week of july 5 - 7 ( monday and tuesday , the 3 rd and 4 th are holidays ) , if at all possible . please let me know your availability and where you may be reached by phone and i will coordinate the calendars . the interviewers would be : vince kaminski managing director stinson gibner vice president p . v . krishnarao director osman sezgen manager i look forward to hearing from you . sincerely , shirley crenshaw administrative coordinate enron corp . research group 713 / 853 - 5290",0 +"Subject: re : fw : fw : get together this coming tuesday ? kim , i talked to dale early this morning and suggested that we meet during his next trip to houston when we decide on timing of our project . vince from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 08 : 41 am to : vince j kaminski / hou / ect @ ect , eric gadd / et & s / enron @ enron cc : subject : fw : fw : get together this coming tuesday ? vince , if dale comes in to see you , it looks like eric might be available to meet with you as well . it would be a good opportunity for eric to meet dale and get a little more information on his model . eric ' s phone number is x 54713 . thanks , kim . - - - - - original message - - - - - from : gadd , eric sent : monday , april 30 , 2001 8 : 12 pm to : watson , kimberly subject : re : fw : get together this coming tuesday ? works for me . give me a call at 9 : 30 . from : kimberly watson / enron @ enronxgate on 04 / 30 / 2001 05 : 09 pm to : eric gadd / et kaminski , vince subject : re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale ",0 +"Subject: times 2 filing units pat : recently , i talked with you about ordering another filing unit . it turns out that we need 2 more filing units . please order them the same size as the floor to ceiling cabinet we have . have the inside of the cabinets configured as follows : 1 cabinet should have 5 shelves 1 cabinet should have 6 shelves when interstore was here today reconfiguing 2 of our existing cabinets , they removed 8 shelves that they are going to use on these new units . please price these 2 new units and charge them to co . # 0413 , rc # 107043 . please let me the prices and approximate delivery date . also , let me know if you need anything else . thanks . anita",0 +"Subject: carnegie mellon shirley , i just spoke with vince and asked him if he would be available to interview one last candidate on monday . he said no problem that both he and stinson would be available for interviews . could you please put on vince ' s schedule one interview at 8 : 45 am - 9 : 15 am . stinson ' s interview will be from 9 : 30 am - 10 : 00 am . i will just bring the candidate to their offices so they do not have to show up early . if you have any questions please feel free to contact me at extension 53214 . thank you very much , kristin gandy",0 +"Subject: model development vince , here is our final draft for the model development report . i believe that we have incorporated all your comments from the last meeting . if you have any questions or would like to sit down and go over the report please feel free to call myself or patty . if the report is ok or if there are some additional comments , i would appreciate if you would respond by wednesday january 12 . thanks andy",0 +"Subject: re : request for two powerpoint presentations from risk 2000 confe renc e i was wandering whether the document was resent . i still have not seen anything at either email address . thanks , allen bryson > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : tuesday , june 27 , 2000 7 : 56 am > to : r - allen . bryson @ usa . conoco . com > cc : vince . j . kaminski @ enron . com > subject : re : request for two powerpoint presentations from risk 2000 > conferenc e > > > allen , > > i responded to your message from home . > > please , let me know if you did not receive the attachments . > aol malfunctions sometimes . > > vince > > > > > > "" bryson , allen "" on 06 / 26 / 2000 09 : 17 : 07 am > > to : "" ' vkamins @ enron . com ' "" > cc : > subject : request for two powerpoint presentations from risk 2000 > conferenc > e > > > vince , > > i would like to receive copies of both your energy risk and weather > presentations from the risk 2000 conference in boston . > > thanks , > > allen bryson > conoco > > > >",0 +"Subject: re : argentina modelling michael , what about 1 : 00 p . m . thursday ? vince michael guerriero @ enron _ development 01 / 05 / 2000 05 : 47 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : argentina modelling could we meet tomorrow afternoon ? mfg vince j kaminski @ ect 12 / 30 / 99 06 : 41 pm to : michael guerriero / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect subject : re : argentina modelling michael , sorry , i was out around the holidays . i shall be glad to meet with you in the lst week of january . please call me ( 3 - 3848 ) or my assistant , shirley crenshaw , 3 - 5290 . vince michael guerriero @ enron _ development 12 / 20 / 99 02 : 31 pm to : vince j kaminski @ ect cc : subject : argentina modelling i am responsible for our argentina operation and would like to discuss some modelling issues with you . could you be available wednesday for a meeting . thanks mfg",0 +"Subject: visit in november shirley , please , schedule a meeting , 30 minutes with him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 17 / 2000 05 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - carlos ordonez on 10 / 17 / 2000 02 : 56 : 07 pm to : stinson . gibner @ enron . com cc : vkamins @ enron . com subject : visit in november dear stinson , november is fast approaching and my schedule , and i am sure yours and vincents ' , is filling up . i would love to visit with you guys again to discuss possibilites of collaborations . right now , i am busy nov : 3 in the afternoon , 6 , 10 in the morning , 15 , and any tuesday or thursday . please let me know date and time for my visit as early as you can . best , carlos",0 +"Subject: working paper list & etc ? ? ? dear vince : ? ? ? ? i have put together a list of finance working papers ( some of which i brought to the interview last wednesday ) which i have written since 1995 mostly in support of my work but also ( at least initially ) as a learning tool . several of them , however , ? do contain innovations . ? ? ? ? ? ? i have asked ms . de claris to forward a copy to you . ? ? ? ? as i expressed to you earlier i am particularly interested in enron credit swaps trading platform and the business opportunities that it will spawn . ? ? ? ? i also think that there are tremendous opportunities to be explored in the secondary mortgage maket in the us . i do not know if enron has considered or is active in this market . this would be an area that i am also very interested and in which i think much better can be done than most of the players in the street . ? ? ? ? the question in my mind ( hopefully not prematurely ) ? is : if there is interest here would enron consider letting me put together this business ? ? ? ? ? i look forward to hearing from you soon . ? ? ? ? best regards ? ? ? ? joao ? ? ? ?",0 +"Subject: iv rene ledis fifth floor se 5018 interview schedule 17 . 00 - 17 . 30 vince kaminski & anjam ahmad 17 . 30 - 18 . 00 ben parsons 18 . 00 - 18 . 30 stephen leppard",0 +"Subject: confirmation of your order this is an automatic confirmation of the request you have placed using it central . request number : ecth - 4 ujn 5 l order for : mitra mujica 1 x ( option : 128 mb upgrade for deskpro en 6600 $ 63 ) 1 x ( standard desktop $ 905 ) enron it purchasing * please send all status inquiries regarding this request to : mailto : receiving & hardware @ enron . com",0 +"Subject: re : dolores please , register me for a session on 9 / 29 / 2000 at 12 : 45 . vince kaminski celeste roberts 08 / 29 / 2000 06 : 21 pm to : celeste roberts / hou / ect @ ect cc : ( bcc : vince j kaminski / hou / ect ) subject : urgent the associate and analyst recruiting department will be conducting a number of two hour workshops to review our recruiting and interview process for the fall on - campus recruiting effort . critical information regarding our on - campus interview process , revised evaluation forms and program structure will be reviewed during these two hours sessions . it is mandatory that all team members attend these workshops . all team members must attend in order to articulate and demonstrate the enron recruiting process . knowing how busy schedules are , we have made arrangements to present these workshops in two hours sessions for a total of 40 workshops that will run during the last week of august , through the month of september and end at mid october . listed below are the dates , location and times for each session . please select a date and time and e - mail this information to my assistant , dolores muzzy . we can accommodate 25 participants at a time . dolores will take dates and times on a first come , first serve basis . we have scheduled enough sessions to accommodate every member of both the associate and analyst recruiting teams . in order to participate in the recruiting process , you must attend one of these sessions . we will be tracking participation . cpe credits will also be given for attending this workshop .",0 +"Subject: eol trade size discrepancies vince - i have discovered the two sources of discrepancy in the "" transaction dollars "" on eol , between my numbers and those of eol . first , eol records all index trades with the henry hub price ( since the index price isn ' t , inadvertently , recorded with the trade , as i told you ) , whereas i went back and appended the contemporaneous index price to the trades . second , eol ignores all basis trades in reporting transaction dollars , whereas i append a rough size to them of the "" price "" as the basis , times the quantity . i ' m sorry i wasn ' t ready in time with my numbers ; i took the task of accuracy very seriously . clayton",0 +"Subject: recent projects hi vince , i have been working on and / or planning to work on the following projects : 1 . finished a gas daily swing option model for commodity structuring group ( sanjeev khanna ) . the model uses american monte carlo simulation and dynamic programming techniques . 2 . continue working on psim model . this includes reading power generation and operation books as well as thinking about ways to model power plant and its operation . the standard approach ( i . e . turn the plant on if power price > total generation cost , else turn the plant off ) is not particularly good if the regional demand is very high and the plant still has some un - utilized generation capacity . that is , the generation criteria is quite different depending on we model power plant from regional point view or from plant point of view . plan to have meetings with tom and lance . 3 . started working on stochastic process parameter estimation . i will concentrate on four processes : gbm , mean reverting , jump diffusion , and jump diffusion with mean reverting . i have looked at tanya ' s earlier work and decided to discretize the processes slightly differently . it is hoped that this will give a more stable estimation . best , alex",0 +"Subject: re : yaron ' s resume kevin , i would greatly appreciate if you could help me in this case . yaron ' s father helped me a lot to open many doors at berkeley . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 25 / 2000 05 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - charlene jackson @ enron 10 / 24 / 2000 05 : 15 pm to : vince j kaminski / hou / ect @ ect cc : kevin hannon / enron communications @ enron communications , kristin gandy / na / enron @ enron , shelly jones / hou / ect @ ect subject : re : yaron ' s resume vince , kevin hannon is the executive lead for cornell and he needs to approve . i am not sure if they have already interviewed on campus . he should go through the on - campus screening process before attending a super saturday . we are reserving the super saturday weekend for individuals that are highly likely to receive an offer . i will forward this to kevin and kristin gandy . although they are responsible for graduate recruiting at cornell , perhaps it is possible for him to interview when they go on campus . charlene kevin and kristin , please see vince ' s message below . would it be possible for an undergraduate to interview while you are at cornell ? please let me know . thanks vince j kaminski @ ect 10 / 24 / 2000 04 : 37 pm to : charlene jackson / corp / enron @ enron cc : mary alison bailey / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : yaron ' s resume charlene , please , help . this is a son of a professor at berkeley who helps me a lot in the recruiting process . his son goes to cornell . can we invite him ( the son , not the professor ) to a super saturday ? i really want to repay the debt to his father who is very instrumental in my recruiting efforts . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000 04 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" shmuel oren "" on 10 / 23 / 2000 04 : 37 : 25 pm to : cc : subject : yaron ' s resume ? - yaron - resume 3 . doc",0 +"Subject: re : houston research opportunity : anjam vince : here is an explanation of what a 12 month package for anjam actually entails . it seems to me that anjam ' s interest in getting an expat package is mostly about money . based on the uk hr ' s read of anjam , they think he will jump . i have a telephone conference with anjam at 11 : 00 . my stance will be 110 is firm . we will help with the transition via a one time settlement : flat rental issues , 500 lbs of air shipping for moving furniture , maybe one trip back to uk a year , but no more . re : his concerns of having a place in london should he want to return , i will say that vince would be far better at finding a good spot for you than any hr type , so that part of the "" package "" promise is not particularly important . any guidelines for me to follow , coach ? regards , grant . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 08 / 11 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tara rozen 08 / 11 / 2000 05 : 44 am to : grant masson / hou / ect @ ect cc : melanie doyle / lon / ect @ ect , jane allen / hou / ect @ ect subject : re : houston research opportunity grant not sure if i told you that i work mon , wed , friday hence the delay in responding . sorry if i forgot to tell you ! another contact name in my absence who will be able to assist is jane allen in houston ( cc ' ed above ) . three main reasons we try to stay away from assignments to the us for this type / level of transfer are : 1 ) cost 2 ) equitability among other peers 3 ) difficulty in transferring employee to local package from assignment package . however , if this is truly a 12 month assignment with no intention of extension , we would normally do the following : 12 month assignment london base , car allowance , and benefits and national insurance contribution costs ( currently 12 . 2 % of all comp compared with 1 . 45 % of all comp plus 6 . 2 % up to max of $ 76 k of employers us contribution ) housing costs in houston paid if maintaining housing in the uk ( usually up to $ 1800 per month for single ) utility costs if maintaining a house in the uk - up to $ 100 per month home leave - two economy trips per year is standard transportation to / from assignment - economy class transportation in houston - we normally give this - up to $ 40 per day for rental car in addition to the person ' s car allowance as they normally do not require a car in the uk and take the car allowance as a cash benefit whereas they will require a car in houston . shipment of goods - 500 lbs air tax assistance disturbance allowance - normally pay approx $ 1000 so , in terms of costs if you just compare a local us salary of manager on $ 100 k to a local uk manager on o 68 k the us total cost is approx $ 120 k . the uk cost is approx $ 230 k . then if you add the above costs to the assignment , you will see an even greater increase in cost compared with the local peers , ie approx $ 280 k compared with $ 120 k . we do have the ability to change the above in any way as there is no set policy ; however , anjam has already brought up other people ' s assignments and i have a feeling he will do his best to find out what everyone else is receiving . if we make clear , though , that we are keeping on uk payroll but not providing any assignment type allowances just in order for him to maintain his pension contributions for the year and at which point a decision will need to be made ( returns or moves to local us ) , then we may be able keep more consistency with your group while maintaining more reasonable costs . not sure how you want to play this , though . even if he does go on assignment rather than transfer locally , there is still the issue of whether or not a suitable job will be here at the end of the 12 months . we will always do our best to find suitable postions but we cannot guarantee it . if he transfers to a local us contract , enron europe ' s responsibility of finding suitable employment is pretty much nil . i hope this has made things clearer rather than more complicated . i honestly feel that ajnam will absolutely not take this position if it is not on an assignment basis . he made it pretty clear that unless he could stay on uk payroll for 12 months , he would not transfer . call me if you would like to discuss . tara - x 36763 enron capital & trade resources corp . from : grant masson 09 / 08 / 2000 20 : 48 to : tara rozen / lon / ect @ ect cc : subject : re : houston research opportunity tara : thanks for the update . it seems anjam is playing hard ball a little . my initial reaction is to be inflexible because it is a good offer , but on second thoughts , could you please give me an idea of what is meant by a 12 - month assignment when you have a moment ? compensation , benefits , responsibilities , career path implications , etc . many thanks ! regards , grant .",0 +"Subject: registration for "" north american gas storage conference "" - june 22 , 2001 please register wincenty j . ( vince ) kaminski , managing director , research enron wholesale services , to the subject conference to be held in houston on june 22 , 2001 . if you need more information , please contact me at : shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: visiting enron may 4 th christie , fyi . a message i received from stanford . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 11 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" susan c . hansen "" on 04 / 06 / 2001 06 : 14 : 10 pm to : vince . j . kaminski @ enron . com cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu subject : visiting enron may 4 th dear vince , this is great news ! donna and i are delighted that you have time to see us on may 4 th . i ' ll be out of the office next week . by copy of this email to my assistant , carol lovell , i will ask her to get in touch with shirley for scheduling as well as directions on where to meet you . we ' ll be glad to meet with christie patrick as well . looking forward to meeting you , susan at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote : > susan , > > thank you for your message . i shall be glad to meet with you on may the > 4 th . > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to > set up the meeting . > > also , for your information , we have recently set up a special unit to > coordinate enron ' s > relationships with the universities . the person running this unit is > christie patrick . > please , feel free to contact her and give my name as a reference . i shall > coordinate the meeting > on may the 4 th with her . > > vince > > > additional information re christie : > > phone : ( 713 ) 853 - 6117 > > email : christie _ patrick @ enron . com > > > > > > "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm > > to : vkamins @ enron . com > cc : > subject : visit from stanford ? > > > dear dr . kaminski , > > let me briefly introduce myself , i am the director of corporate relations > for the school of engineering at stanford university . in this role , i am > always on the watch for ways to bring our faculty together with companies > that have an appetite for engagement with top tier research institutions . > > i believe you know hill huntington , who is a senior researcher with > stanford ' s energy modeling forum . he suggested i get in touch with you for > some ideas about contacts at enron . i ' m in the process of planning a trip > to texas in early may along with my colleague donna lawrence , the > university ' s director of corporate relations . we were hoping to be able to > include a stop at enron on our itinerary . right now it appears that friday , > may 4 th would work best for us but we ' re at the very beginning of our trip > planning . > > the purpose of our visit would be to review the current relationship > between enron and stanford , to give you an overview of current priorities > in the school of engineering , and ask for your help in identifying the best > points of contact . > > i look forward to hearing from you about your availability , > > sincerely , > susan hansen > > > > > susan c . hansen > director , corporate relations > school of engineering > stanford university > stanford , ca 94305 - 4027 > ( 650 ) 725 - 4219 susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: re : compound model for reedy creek stinson , i think the gamma will flow into v @ r . vince stinson gibner 11 / 30 / 2000 06 : 14 pm to : alex huang / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : compound model for reedy creek alex , paulo and i have continued to look at the model and have come up with a couple of additional changes . 1 . the cash flow calculations need to include the overlying option strike payment . also , paulo is trying to clarify if the cashflows should be discounted to the valuation date or reported as notional future values . 2 . i would suggest trying changing the option valuation from a binomial tree approach to a one - dimensional integration , perhaps using a quadrature method . this may allow us to minimize the size of the delta discontinuities . 3 . edith is supposed to check and see if the theoretical gamma is used for anything . if it is , we will probably need to revisit the gamma calculation since we are not currently including any cross terms for gamma . thanks , stinson",0 +"Subject: the expertfinder is here ! ! introducing expertfinder . the expertfinder enables you to identify critical skills and mobilize enron ' s intellectual capital . by utilizing this powerful intranet search engine , you can locate people within the enron community by organization structure , skills , reporting relationships , languages , school attended , and prior work experience . to access expertfinder go to https : / expertfinder . enron . com on the enron intranet . expertfinder is only as good as the data stored in it . does your data or the data for your business unit need updating ? go to ehronline . enron . com or home . enron . co . uk / home . asp ( london only ) to update your data today . view changes in expertfinder tomorrow ! due to the sensitivity of this data , we are initially previewing this tool to only managing directors & above , as well as key people in the hr community . we want your feedback on how expertfinder can be further enhanced . try it out and give us your thoughts by sending an email to expertfinder @ enron . com ! finally , you will have the opportunity to work with your hr leaders to review and expand the template that is used to store the types of skills that are relevant for your business . if you want to be able to search on certain criteria , let us know and the template will be updated immediately . got information ? we provide the tool , expertfinder . enron . com , you provide the data , ehronline . enron . com . theexpertfinderand ehronline - helping to empower you !",0 +"Subject: change of payroll status for elena chilkina teresa : please change elena chilkina ' s payroll record to reflect non - exempt instead of exempt in order for her to be paid overtime . vince kaminski has approved this action . her time site is : 0428 if you need anything else , please let me know . thanks ! shirley 3 - 5290",0 +"Subject: test project proposal vince : i did get the proposal out today , but after close of business your time . sorry for the brief delay . you will find two attachments . the first is our time and materials contract , which will need to be executed if you want to do the test project . the second is an addendum to that time and materials contract under section h , which allows for specific work statements to amend and supersede the general consulting agreement . the general consulting agreement ( termsandconditions . doc ) contains all the confidentiality , billing rate , and other provisions that your contract people will probably want and provides a general framework for doing business . the work statement ( testproject . doc ) contains the specific provisions for our standard weeklong onsite test project . i hope we get the opportunity to serve you and ultimately to make marketpoint available to you . in light of the contiguity to the holidays , i dont think it would be realistic to try to schedule this test project before then , probably from your perpsective as well as ours . let ' s think about doing it the first opportunity in january if you decide to go forward if that is ok with you . all the best . dale - testproject . doc - termsandconditions . doc",0 +"Subject: re : frank , yes . vince from : frank hayden / enron @ enronxgate on 05 / 01 / 2001 07 : 51 am to : vince j kaminski / hou / ect @ ect cc : subject : vince , are you going to be able to make the power var meeting on thursday ? frank",0 +"Subject: re : weather and energy price data mulong , we shall send you natural gas henry hub prices right away . please look at the last winter and the winter of 95 / 96 . we shall prepare for you the electricity price information ( cinergy , cobb and palo verde ) but you have to approach ft ( the publishers of megawatts daily , a newsletter that produces the price index we recommend using ) and request the permision to use the data . we are not allowed to distribute this information . please , explain that this is for academic research and that we can produce the time series for you , conditional on the permission from the publishers of megawatts daily . vince kaminski mulong wang on 04 / 15 / 2001 03 : 43 : 26 am to : vkamins @ ect . enron . com cc : richard macminn subject : weather and energy price data dear dr . kaminski : i am a phd candidate under the supervision of drs . richard macminn and patrick brockett . i am now working on my dissertation which is focused on the weather derivatives and credit derivatives . could you kindly please offer me some real weather data information about the price peak or plummet because of the weather conditions ? the past winter of 2000 was very cold nationwide , and there may be a significant price jump for natural gas or electricity . could you please offer me some energy price data during that time period ? your kind assistance will be highly appreciated and have a great day ! mulong",0 +"Subject: address allan , i am sending you my coordinates . i expect to be in london around september the 20 th . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: carnegie mellon recruiting i received the following email this afternoon . - kevin k . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 16 / 2000 05 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sallygould on 11 / 16 / 2000 03 : 38 : 44 pm to : kevin . kindall @ enron . com cc : subject : carnegie mellon recruiting kevin , jean eisel asked that i connect with you about recruiting comp . finance students . please contact me with questions you might have about the recruiting process or if you have some dates in mind for coming to campus . i look forward to hearing from you . regards , sally gould recruiting coordinator gsia - carnegie mellon university 412 - 268 - 1311 412 - 268 - 4146 ( fx )",0 +"Subject: re : stanford or - summer interns ravi , i shall leave the decision to stinson and you . vince ravi thuraisingham @ enron communications on 02 / 23 / 2000 11 : 39 : 01 am to : stinson gibner / hou / ect @ ect , vince kaminski cc : subject : stanford or - summer interns hi this is one of the junior phd students that we ' ve visited in stanford . are we interested in bringing him to enron research and or ebs research . i ' ll have to think about his role in ebs . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 23 / 00 11 : 32 am - - - - - shikhar @ stanford . edu 02 / 20 / 00 07 : 24 pm to : ravi . thuraisingham . enron _ communications @ enron . com cc : ravi . thuraisingham @ enron . com , ( bcc : ravi thuraisingham / enron communications ) subject : stanford or - summer interns hi ravi : please find attached my resume for the summer internship program . i apologize for the delay . we actually lost your contact info . please let me know if you will need any additional information and / or a cover letter besides the resume and i can send it right away . thanks regards , shikhar - - - - - - - - - - - - - - - - - - - - - - - - shikhar ranjan phd student management science & engineering stanford university ca ( 650 ) 497 5762 - resumeo 0 - ene . doc",0 +"Subject: re : houston visit great ! i look forward to our dinner on thurs . 12 / 7 evening . hopefully your flight will be on time . . . although having watched 60 minutes last night and suffered from a # of delays lately , let ' s hope that the "" weather blame "" doesn ' t get in the way . it ' s best to leave me a message @ my usual work # on thurs . , 914 253 4187 , . . . i can easily check it in houston . i ' ll be staying @ the westin oaks in the galleria . . . any preferred place that i can book ( & for what time ) ? ? coming over to down town won ' t be a problem for me either . will be great to see you again . soussan 914 253 4187 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , november 27 , 2000 12 : 10 pm to : faizs @ texaco . com cc : vince . j . kaminski @ enron . com subject : re : houston visit soussan , thanks for your message . it would be great to meet you when you come to houston . i shall be in town on december 7 , flying back from philly in the morning . assuming that the flight is on schedule , i shall be available for dinner . please , let me know how i can contact you on thursday , december the 7 th , to confirm . look forward to meeting you . vince "" faiz , soussan "" on 11 / 26 / 2000 09 : 04 : 01 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : houston visit dear vince , greetings from ny and hope that all is well and you had a great thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are available either evening for dinner . would be great to see you again and catch up with the latest . . . i really enjoyed my visit last april , your insights , and the risk book you gave me . i do hope you ' re available to meet and pls let me know which evening suits you better . best , soussan faiz texaco inc . 914 253 4187",0 +"Subject: re : summer opportunity kim , yes , the offer is coming . it may take a few days to process it , but you can count on it . vince "" whitsel , kimberly "" on 03 / 05 / 2001 08 : 36 : 47 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : summer opportunity vince : i did get your phone message about the summer , but i still haven ' t heard from enron about an offer for summer employment . i do have other offers with other energy companies that i must respond to this week . could you let me know as soon as possible if an offer will be made to me . sincerely , kimberly whitsel wharton mba candidate 2002",0 +"Subject: ll visa - anshuman shrivastava anshuman : please go ahead and complete the visa questionnaire and send the required documents so that i can proceed with your working visa for the us . regardless of the length of time you will be in the us , you will still need the ll visa in order to work here . many thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001 11 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 01 / 23 / 2001 11 : 01 am to : anshuman . srivastav @ enron . com cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra sengupta / enron _ development @ enron _ development , wade cline / enron _ development @ enron _ development , neil mcgregor / enron _ development @ enron _ development @ ect , harsimran subject : ll visa - anshuman shrivastava anshuman : i have been asked to contact you regarding your possible move to houston , texas . in order that i may begin the process of getting you an ll immigration visa , i will need you to complete the attached visa questionnaire and return it to me with copies of the following documents : a copy of all pages of your passport , even if blank copies of all previous us visas issued an updated resume , showing months and years copies of all diplomas and transcripts received if you have dependent family members coming to the states with you , copies of their passports please send to my attention , via fedex to : enron corp . 3 allen center , 3 ac 2026 a 333 clay street houston , tx 77002 please call me with any questions you may have at 713 - 345 - 5083 .",0 +"Subject: re : srf for sandeep kohli : eva : remedy 364463 shirley , it ' s an it request for sandeep . please , help . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001 03 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sap security @ enron 03 / 08 / 2001 02 : 20 pm sent by : eva tow @ enron to : sandeep kohli / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect subject : re : srf for sandeep kohli : eva : remedy 364463 sandeep , your request does not look to be sap security related . please use the erequest to obtain access to the network at itcentral . enron . com . you may call 713 - 853 - 1411 if you need additional assistance . thank you , sap security ( eva ) kohli @ mailman . enron . com on 03 / 07 / 2001 02 : 34 : 11 pm ; sandeep on 03 / 07 / 2001 02 : 34 : 11 pm to : website : sap security request cc : subject : sap security request form the following request information was recently submitted . . . requestor information : business unit : ena cost center : 107043 company code : 0413 business unit for roles : ena sap id : po 0504918 general information : supervisor : vince kaminski supervisor telephone number : 713 - 853 - 3848 employee name ( last , first , m ) : kohli , sandeep employee location : eb 1958 employee telephone number : 713 - 853 - 5188 employee email address : sandeep . kohli @ enron . com job title : vice president sap user type : enron employee business reason : i need access to the o : drive , research subdirectory . this subdirectory has information to be shared between different members of the research group . i need to access this for projects we do as a team . viewer roles : no roles in this area were selected . financial accounting roles : no roles in this area were selected . project system roles : no roles in this area were selected . joint venture roles : no roles in this area were selected . materials management / purchasing roles : no roles in this area were selected . centralized roles ( limited to specific personnel ) : no roles in this area were selected . human resources ( hr personnel only ) : no roles in this area were selected . human resources - timekeepers : no roles in this area were selected . human resources - benefits ( benefits personnel only ) : no roles in this area were selected . human resources - payroll ( payroll personnel only ) : no roles in this area were selected .",0 +"Subject: from robert schenck , henwood sandeep , i don ' t know if robert sent you this directly , so am forwarding a copy . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 03 / 2001 08 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" robert schenck "" on 01 / 02 / 2001 11 : 13 : 23 pm to : cc : subject : re : india model stinson , i have attached a marked up copy of the authorisation we need from you can we please change our phone contact to friday your time , ( saturday mine ) as i have a previous engagement which i cannot cancel regards robert - authorisation . doc",0 +"Subject: tentative schedule of the talks at siam . doc tentative schedule of the talks at siam ? ? april 27 , 2001 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? april 28 , 2001 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 8 : 45  ) 9 : 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 9 : 00  ) 12 : 15 welcoming remarks ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? imaging & inverse problems in ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? geophysics 9 : 00  ) 10 : 30 arthur vailas  ) environmental modeling ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? kurt marfurt ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? jason ching ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? william symes ? richard kendall ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 10 : 30  ) 10 : 45 ? coffee break ? 10 : 30  ) 10 : 45 ? coffee break ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? arthur weglein ? 10 : 45  ) 12 : 15 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? jacques tabanou reservoir simulation ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? lunch 12 : 15 stephen lyons ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 1 : 30  ) 3 : 00 ? ? amr el bakry ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? information technology ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? lunch 12 : 00 noon ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? david archer ? 1 : 30  ) 3 : 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? t . lasseter modeling energy markets ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 3 : 00  ) 3 : 15 ? coffee break pablo padilla ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 3 : 15  ) 5 : 00 vince kaminski ? ? ? ? ? ? ? ? ? ? ? workshop on industrial mathematics programs ? 3 : 00  ) 3 : 15 ? coffee break ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? samuel rankin ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 3 : 45  ) 4 : 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? panel p . percell ? 4 : 00  ) 5 : 30 session on industrial intern programs ? fadil santosa ? panel",0 +"Subject: re : time david : i have you scheduled for 2 : 00 pm , monday , august 7 th . in vince ' s office . regards , shirley david p dupre 08 / 01 / 2000 08 : 46 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : time 2 pm is good for monday the 7 th . thanks david shirley crenshaw 08 / 01 / 2000 08 : 44 am to : david p dupre / hou / ect @ ect cc : subject : re : time david : vince would like to talk with you alone for now . monday , the 7 th is a pretty good day . let me know what times you might be available . thanks ! shirley david p dupre 07 / 31 / 2000 05 : 26 pm to : shirley crenshaw / hou / ect @ ect cc : subject : time hi , i wanted to inquire as to which day ( s ) might be convenient to meet with vince and his colleagues . many thanks david",0 +"Subject: enron mid - year 2000 performance management process enron ' s mid - year 2000 performance management process has begun . during this process , you will be required to select suggested reviewers who can provide performance related feedback on you and you may also be requested to provide feedback on fellow employees . you will need to do this by accessing the performance management system ( pep ) at http : / / pep . enron . com . any questions should be directed to the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com to log on to pep , enter your user id and password provided below . once you have logged on , you will be immediately prompted to change to a secure password . your user id & password are : user id : wkamins 2910 password : welcome",0 +"Subject: re : a request duane , i shall be traveling for the rest of the week but my colleague dr . zimin lu will call you to talk about different structures . vince ds 64 @ cyrus . andrew . cmu . edu on 03 / 13 / 2001 09 : 54 : 24 am to : "" vince j kaminski "" cc : subject : re : a request vince , sorry that i missed your call yesterday . i have a meeting from 2 - 3 today ( tuesday ) , but otherwise any time in the afternoon works for me . let me know what is convenient for you . thanks for your help . duane * * * * * * * * duane seppi graduate school of industrial administration carnegie mellon university pittsburgh pa 15213 - 3890 tel . ( 412 ) 268 - 2298 fax ( 412 ) 268 - 8896 email ds 64 + @ andrew . cmu . edu",0 +"Subject: hea sporting clays tournament - august 15 , 2000 hea ' s annual sporting clays tournament is just around the corner , august 15 , 2000 at the american shooting centers . watch your fax for all the details , but prepare for the same format as last year with registration starting at 1 : 30 p . m . ( late registration after 2 : 45 earns 2 shot penalty ! ) and the action beginning at 3 : 30 p . m . warm up with the two - man flush at 1 : 30 . reservation and pre - payment required by august 9 th ! a "" private drawing "" for a new shotgun will be held for reservations / payments received by august 1 , 2000 - so make your plans now to participate . after the competition , dinner will be again in the air conditioned pavilion with thousands of dollars in door prizes ! non shooters pay $ 40 per person for dinner , drinks and door prizes . luck of the draw ( randomly selected teams ) pay $ 80 per person - 50 targets , dinner , drinks & door prizes . blast masters ( make your own 4 shooter team ) pay $ 115 per person - 100 targets , dinner , drinks & door prizes . contributions , corporate sponsors and volunteers are needed . if interested , please contact one of our three tournament chairs - jim cody ( 713 / 230 - 3550 ) , jeff eatherton ( 713 / 230 - 7286 ) or kemp jones ( 713 / 207 - 5189 ) . thanks again to our sponsors from last year . details will be faxed out and available on our website friday ( june 16 ) . or call eva pollard at the hea office ( 713 / 651 - 0551 ) or jim cody for more information . this message was sent by : teresa knight , executive director houston energy association ( hea ) phone : ( 713 ) 651 - 0551 fax : ( 713 ) 659 - 6424 tknight @ houstonenergy . org if you would like to have your email address removed from our mailing list , please click the link below to the hea home page , where you will find a mini - form to remove your name automatically . http : / / www . houstonenergy . org /",0 +"Subject: re : prosym license hi karolina , the last word i got was that grant masson was still coordinating the contract and would be the person to talk to about getting a copy of the license . i checked to see if i had an electronic copy somewhere , but couldn ' t find anything . i suspect my copy was paper , and it would have been returned to grant when i went back to portland general electric . probably didn ' t speak to the situation in london , anyway , because the real interest in london didn ' t arise until after i would have gotten my copy . grant is transitioning to his new job with el paso in london , so if you have difficulty reaching him , check with vince kaminski , or if vince is unavailable , shriley crenshaw . shirley may know the person in enron legal or contracts admin . who worked with grant on the henwood license . of course , eric t . would have a copy . if you run into problems with houston , have eric send you a fax . ( the license is relatively short as contracts go . ) hope this helps , michael > > > karolina potter / lon / ect @ enron 10 / 18 / 00 07 : 44 am > > > michael two weeks ago i attended hesi client symposium followed by advanced prosym course in sacramento . during that time i had an opportunity to get to know several people from both henwood energy services support and development groups . one of them was eric toolson - head of client support in hesi , with whom i discussed some issues in regards to our liaison with london based support team . i agreed to meet up with simon crisp back in london to agree on a form of our working relationship . before i go to the meeting i would like to find out the following : the text of enron ' s prosym license what service we are entitled to based on the license i am not sure if you are the person to ask about the above but if you could help me by either providing the license or directing to the appropriate person within enron it would be much appreciated . many thanks karolina",0 +"Subject: re : chapter 3 revisions grant , sorry for the silence . it ' s definately not a commentary on your work - i ' ve been travelling back and forward between sydney and london like a yo - yo and trying to tidy up things on our end . i ' ve been working on incoporating your material and will spend all of tomorrow on this ( hopefully ! ) so that i can ask for the last few amendments before the w / end . many thanks and best regards . chris . - - - - - original message - - - - - from : grant masson to : chris strickland sent : tuesday , june 27 , 2000 8 : 54 am subject : re : chapter 3 revisions > > > > chris : > > i can ' t decide if i should take your silence over the past several weeks to mean > that you are getting stuck into finishing up the book or you are just so > thoroughly disgusted with our work that you would like to wash your hands of us . > > i ' ve been stuck on trying to get the last figure mentioned in the chapter into a > format that i like . the problem is the volatility found in the regressions is > on the order of several hundred percent , and so when i plot the historical data > next to a simulated curve over the course of the year , the simulated curve tends > to drift up or down stupidly both in the jump diffusion and garch + jump diffusion > model . any suggestions would be accepted with pleasure . i wonder if i should > skip the figure . it seems a pity to do so however , because otherwise the last > section comes off as a bit of an afterthought , and i would like to present a > practical example . again any guidance would be appreciated . > > anyway , i am sending you a somewhat improved draft now ( minus only the last > figure ) , rather than sit on the whole thing while i stew on this bit , i hope > this will be useful to you . because i am leaving for holidays at the end of the > week , i can guarantee you that you will have a final draft before then . > > regards , > grant . > ( see attached file : cs 260600 . doc ) >",0 +"Subject: re : agenda for ny mg metals visit lloyd , no problem . i wanted to make sure that everybody realizes how detailed - oriented our tasks are and that we have to be in direct communication with our counterparties . vince enron capital & trade resources corp . - europe from : lloyd fleming 07 / 14 / 2000 10 : 40 am to : vince j kaminski / hou / ect @ ect cc : richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect subject : re : agenda for ny mg metals visit vince , i certainly think anjam & tanya should visit ny , but i simply had a concern that some of the questions being asked had already been covered by anjam / myself and andreas but had somehow not been communicated . my message was not intended to convey any another impression . i ' ve also now spoken with anjam 2 . information on exotic options structures ( existing 3 . the data flow ( are we going to get data from london or ny ) . 4 a . storage of positions information at mg . how to extract the positions info from mg database into spreadsheets . 4 b . existing positions structure for each metal . 5 . introduction to concentrates trading business , key personnel . best regards , tanya & anjam 713 853 3997",0 +"Subject: re : telephone interview with the enron corp . research group dear mr . kaminski , mr . krishnarao and mr . sezgen , i was very pleased to have an wonderful telephone interview with you . it ' s exciting and challenging . i like it . i talked to my financial engineering program classmate , bob lee who was just hired by enron recently . he told me he is very impressed by your company and very excited to work there . i believe i ' m a strong candidate for this position . i ' d like to share more my background and experience with you . i look forward to meeting you . thank you . p . s . thank shirley for her coordinate work . when i come to houston , i may need her help again . sincerely , jeff he",0 +"Subject: research tip hello vince : my name is fati liamidi . i work as an associate in the urm group in ees . i have come up with an value proposition which i think could make sense for my group and wanted to run it by one of your colleagues to see if they could help me out in terms of pricing . would you mind directing me toward somebody in your group who would be willing to talk to me ? the idea involves options . thanks you very much in advance . fati liamidi 3 - 4563",0 +"Subject: hello all : please send an email to : ibuyit @ enron . com stating that you are approver of invoices as requested in the email below . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 17 / 2001 07 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : ibuyit / enron @ enronxgate on 04 / 16 / 2001 05 : 20 pm to : dl - ibuyit payables - all @ / o = enron / ou = na / cn = recipients / cn = dl - ibuyitpayables - all @ ex @ enronxgate cc : john gill / eu / enron @ enron , erin abdelnour / enron @ enronxgate , shelley robbins / enron @ enronxgate , sally mcadams / enron @ enronxgate , joe cuccia / enron @ enronxgate , judy knepshield / enron _ development @ enron _ development subject : thank you for identifying yourself as a future ibuyit payables user ! the ibuyit project team wants to make sure that your receive the information , tools , and support that you need to successfully transition to the new system on may lst . ibuyit payables training for houston - based coders overview sessions will be held this week , monday through thursday , at the doubletree hotel , nautile room , at 9 : 00 am and 2 : 00 pm . these one - hour sessions will provide you with a demonstration of the system and an opportunity to ask questions about the new system . no registration is necessary . hands - on classroom training will begin next week . these sessions will provide you with the opportunity to complete real - life exercises in the system . please contact the isc registrar to register . ibuyit payables training for field - based coders don ' t worry ! we have not forgotten about you ! on - line materials will be available beginning next week via the integrated solution center document library at . materials will include an overview of the system and step - by - step instructions . you will receive an e - mail with links to these materials next week . ibuyit payables approvers we need your help to identify future ibuyit approvers . please encourage the people that approve your invoices to identify themselves as future ibuyit users by sending an email with their name , e - mail address , and whether they code or approve invoices to > . on - line materials for approvers will be available beginning next week via the integrated solution center document library at . materials will include an overview of the system and step - by - step instructions . identified approvers will receive an e - mail with links to these materials next week . questions ? send an e - mail to > ",0 +"Subject: re : weatherwise thanks , brian . do contact him , please . his number in houston should be ( 713 ) 853 - 3400 , or 6 - 853 - 3400 on the direct line . michael ronnie : brian ' s number is 503 - 464 - 8516 > > > brian soth 09 / 07 / 00 12 : 06 pm > > > michael - we have a contract with weatherwise to launch the weatherproof bill here in our service territory . the wpb is a hedge for customers and , to some extent , a weather hedge for us . we are not buying a typical enron - like hedge from them , however . if you want me to talk to ronnie i ' d be glad to . > > > michael schilmoeller 09 / 05 / 00 10 : 25 am > > > an associate of mine from research , ronnie chahal , is working for the enron subsidiary newpower and was wondering if pge uses weatherwise , a derivatives provider for weather hedges among other things . ronnie is trying to get some background on them . if any of you know whether pge uses this service , please contact ronnie or me and let me know to whom ronnie could speak about pge ' s experiences with weatherwise . thanks , michael - text . htm",0 +"Subject: summer at enron hi vince : if you or your human resources department tries to reach me , please call me at new home phone ( 713 ) 647 - 7161 , or email me at ekao @ uh . edu , or eckao @ aol . com monday , 5 / 15 will be my moving day . otherwise i can be reached at my home phone . regards , ed",0 +"Subject: this is the daily total load and weather information we discussed at monday ' s meeting . electric generation load has been removed from these sendout numbers . > > john p . wirick , jr . ext . 4910 the information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and / or privileged material . any review , retransmission , dissemination or other use of , or taking of any action in reliance upon , this information by persons or entities other than the intended recipient is prohibited . if you received this in error , please contact the sender and delete the material from any computer . - nsdata 2000 to enron . xls - pgdata 2000 to enron . xls",0 +"Subject: alp presentation vince and ken , dean gil whittaker of the rice business school has also confirmed ! ! pass the word on to the students ( no pressure ! ! ha ! ! ) - i think i ' ll go ahead and put the word out to some of the active rice alums here at enron - - it ' ll be a great event ! thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 11 / 2001 03 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" gilbert r . whitaker , jr . "" on 04 / 11 / 2001 03 : 15 : 28 pm to : christie . patrick @ enron . com cc : subject : re : alp presentation christie - i have rearranged my schedule and will be very pleased to attend the alp presentation and dinner at enron . thanks . gil at 06 : 01 pm 4 / 10 / 01 - 0500 , you wrote : > president gillis and dean whitaker , > > enron would be honored with your presense at the presentation set forth > below . > > under the guidance of vince kaminski and his team here at enron , we are > thoroughly enjoying working with this group of bright and enthusiastic rice > students . we hope you can join us for the culmination of their significant > efforts . > > please let me know - - thanks ! ! > > - - christie . > - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001 > 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > vince j kaminski > 04 / 10 / 2001 08 : 13 am > > to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , > lounghrid @ rice . edu , luigical @ rice . edu > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley > crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron > > subject : alp presentation > > on behalf of enron corp . i would like to invite you to an alp project > presentation by a group of students > of jesse h . jones graduate school of management , rice university . > > the students will present the results of a research project regarding > electronic trading > platforms in the energy industry . > > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . > > we would also like to invite you to dinner , following the presentation . > > > vince kaminski > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > ( 713 ) 410 5396 ( cell ) > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com",0 +"Subject: re : qian ( frank ) feng interview with the research group hi molly : i guess it is time to try and schedule frank ' s interview . we would like to bring him in sometime around the first of february ( when krishna returns ) . please contact him and see what a good time for him would be . attached is his resume and interview request form . - enron _ resume . doc - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 16 / 2001 09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : molly magee 12 / 20 / 2000 05 : 35 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : qian ( frank ) feng interview with the research group you , too , shirley . we ' ll be back in touch . molly shirley crenshaw 12 / 20 / 2000 02 : 07 pm to : cheryl arguijo / enron _ development @ enron _ development , molly magee / hou / ect @ ect cc : subject : qian ( frank ) feng interview with the research group hello molly and cheryl : attached is frank ' s resume . we still have quite a bit of time as we want to schedule this for after krishna returns on the 25 th of january . this position would be for the research group directly , and would include all of vince ' s direct reports . thanks and merry christmas and happy new year ! !",0 +"Subject: enron university affairs enron public affairs has launched a new initiative : enron university affairs . the overall mission of enron university affairs is to broaden the depth and scope of our relationships with targeted universities through building enron brand recognition on campuses , leveraging research exchanges between enron and the academic community , and identifying commercial opportunities for enron . this initiative should also further enron  , s efforts to hire and retain the world  , s most innovative employees . leading this initiative are christie patrick , vice president , mike rosen , director and cindy derecskey , in conjunction with her position as public affairs coordinator will also work with the university affairs team . please join me in congratulating christie , mike and cindy on their new responsibilities .",0 +"Subject: re : grades pam , the students resent the documents . the group members : rakhi israni felix feng lu winny so orlandotaylor sanjay wankhade ning zhang grade : a separately , i think i have sent you already : jeffrey planck grade : a please , confirm this message . vince kaminski",0 +"Subject: re : friday brown bag lunch on option pricing vince , thanks for your support . we will continue the friday lunch series , which i think is very useful for us to keep up with the lastest development in various areas . zimin vince j kaminski 01 / 03 / 2001 08 : 29 am to : zimin lu / hou / ect @ ect cc : alex huang / corp / enron @ enron , stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : friday brown bag lunch on option pricing zimin , i have talked to alex about it . i don ' t think that the additional seminars will crowd out the brown bag lunches . the seminars are really targeted to people who recently joined the group and have very limited , or zero , exposure to energy markets . for most members of the group it should be the piece of cake . brown bag lunches are not that time intensive , except for the speaker . plus , we ran out of days available for lunch meetings . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 03 / 2001 08 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - alex huang @ enron 01 / 02 / 2001 12 : 15 pm to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : friday brown bag lunch on option pricing vince , this is a brief summary of last year ' s friday brown bag lunch option pricing series . we had about 15 lectures , given by the following people : grant , stinston , vasant , krishna , zimin , maureen , clayton , paulo , chonawee , myself , and some outside speakers . we were able to attract some outside audience as well . overall the response is quite encouraging and we have planned to continue it . in light of the presently scheduled seminars on "" energy derivatives "" , it seems our friday schedule will be too crowded if we have seminars on "" energy derivatives "" on two fridays and fbblop on other fridays . what ' s your suggestion ? should we discontinue the fbblop ? we also have scheduled january 19 for tom halliburton ' s visitor leon lasdon from ut austin to talk on non - linear programming . should we cancel it ? best , zimin & alex",0 +"Subject: dear vince : are you available to attend our next advisory meeting on june 14 , 2001 ? here is the draft agenda : > please let me know . kate fang 215 - 898 - 1212 wharton risk management and decision processes center - agenda - draft . doc",0 +"Subject: re : contact information eric , thank you for your message . the only other message in my mailbox from you is dated 6 / 11 / 2000 and contains a reference to a resume i cannot locate . i checked the log of all the messages and could not find any other communication from you . please , send a message with a resume again and we shall go from there . vince kaminski eric hilton on 06 / 21 / 2000 08 : 37 : 58 pm to : vince . j . kaminski @ enron . com cc : subject : contact information dear mr . kaminski , i sent my resume to your well respected company a few weeks ago in regards to establishing a long - lasting career with them . i never received a response and was wondering if you knew who was in charge of the electric power disbatching / scheduling department or know of who i may contact to inquire this information ? i know you are a very busy professional and i apologize for the inconvenience . thank you for your valuable time . warmest regards , eric hilton",0 +"Subject: re : enron / stanford program stinson , how about monday , august 21 st or monday , aug . 28 ? mondays are especially effective , because i would like to come on saturday and work over the weekend together with giuseppe before the meetings on monday . stinson gibner wrote : > > nick , > > vince asked me to coordinate the planning for you august visit to enron . vince > and i are free almost any date except august 14 and 15 th , but we would like to > try and schedule your visit at a time when you could meet with other key ebs > executives such as kevin hannon and perhaps ken rice and john echols . if you > could send me a few of your preferred choices of dates , i will try to optimize > getting you on the calendars of these individuals . > > by the way , giuseppe is doing a great job and has already made a very good > impression on everyone he has worked with . it ' s been a real pleasure having him > here for the summer . i ' m very happy to hear that . he is also very excited to be there working with your team ! thanks , nick",0 +"Subject: re : conference call on friday , march 17 th shirley , 11 : 00 am ca - time is fine ( 1 : 00 pm tx - time ) . i ' ll be at 650 725 - 5525 . my cell phone number is 650 796 - 8163 . please call me there if plans change . thanks , nick shirley . crenshaw @ enron . com wrote : > > hello nick : > > i agree e - mail is much easier . > > there is a two - hour time difference between calif and texas , i . e . , 1 : 00 pm > texas time - 11 : 00 am calif time . > > would tomorrow at 11 : 00 am calif time be ok with you ( 1 : 00 pm texas ) ? > this time is fine for vince , tom gros and stinson gibner . > > can they call you and if so , what number ? > > please let me know . > > thanks ! > > shirley > 713 - 853 - 5290 > > nick bambos on 03 / 16 / 2000 12 : 28 : 58 pm > > to : shirley . crenshaw @ enron . com > cc : bambos @ stanford . stanford . edu > subject : re : visit to enron > > shirley , > > it ' s easier to communcate by e - mail , since i am moving from > meeting to meeting ( but i have the laptop always with me ) . > > please give me a phone number that i could call tomorrow . > what is the time difference between california and your > location ? i think it ' s 2 hours ( ca - > tx ) - is that right ? > > i can do the conference call any time from 9 - 11 ca time . > would that be ok on your side ? > > thanks , > > nick > > vince . j . kaminski @ enron . com wrote : > > > > nick , > > > > we can close the loop on our commitment to support the research projects > > before your visit to enron . > > > > my assistant , shirley crenshaw , will call you to set up a conference > call > > with me , stinson gibner , > > and tom gros from enron broadband services to discuss all the isssues . > > friday this week would work for > > both tom and me . i think we need about 15 minutes . > > > > vince > > > > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525 > > ( office ) . > > > > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm > > > > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu > > cc : > > subject : visit to enron > > > > hello vince , > > > > it was nice seeing you at stanford and many thanks for the lunch > > we had together . i really enjoyed our discussions , both at the > > technical level and otherwise . > > > > i promised to send you an e - mail regarding possible dates for > > a visit to enron . i delayed it for a week till my schedule was > > clearer . let ' s see if we can get a match with your schedule - > > mine is rather terrible : > > > > friday , 21 st of april looks good . but april 23 rd is easter > > sunday , so that may make it difficult for some people at enron > > to be around . let me know if that is the case . i am willing to > > visit then , because the week after that i am scheduled to be in > > japan and in the previous weeks i am all committed on fridays . > > > > friday , 19 th of may is the next possibility , but this probably > > is too far out . the main problem is that i am operating within > > a window of opportunity for attracting top students for this > > research . this window closes by the end of april , and it would be > > important for the student support funds to be in place then , so > > that i can make hard commitments to students and attract top > > talent . i am already reviewing files of students who have > > approached me for phd advising , and i am in a mode of doing "" soft > > commitments to star - level students "" to get this research and its > > potential on their radar screen . top students are highly sought > > after by advisors and i want to be an early player in this > > competition . > > > > does my visit to enron have to happen before we can set up the > > project and student support at stanford ? if so , doing it before the > > end of april is important for getting top people . if the visit can > > happen after we get the ball rolling , then we can schedule it in may . > > i assume there will be multiple visits both ways when the project gets > > going . please let me know what you think . > > > > best regards , > > > > nick",0 +"Subject: re : hyundai merchant marine lng draft dash jeff , i don ' t think this transaction makes sense . we should not keep increasing our exposure in one area , given that we can deploy our capital in a more efficient way elsewhere , without taking illiquid , long - term positions . vince from : jeffrey a shankman 08 / 29 / 2000 10 : 30 am to : eric gonzales / lon / ect @ ect , joe gold / lon / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : hyundai merchant marine lng draft dash has any of you seen this ? ideas , comments , feedback ? thanks for the timely response . jeff - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 08 / 29 / 2000 10 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : rick buy 08 / 29 / 2000 08 : 37 am to : jeffrey a shankman / hou / ect @ ect cc : subject : hyundai merchant marine lng draft dash this is a draft of the dash we are putting together . michael tribolet works in my group and feel free to contact him if you have specific questions . i also spoke with frevert re lng and he informed me that if project summer happpens , lng goes with summer , if not , it is transferred to you . what happens in the mean time is anyone ' s guess . lets discuss . rick - - - - - - - - - - - - - - - - - - - - - - forwarded by rick buy / hou / ect on 08 / 29 / 2000 08 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - - michael tribolet @ enron 08 / 28 / 2000 08 : 15 pm to : rick buy / hou / ect @ ect cc : subject : hyundai merchant marine lng draft dash here is the draft of the dash . while having a positive npv , many of the trials run are negative due to defaults .",0 +"Subject: asking for advice regarding summer associate position at enron gentlemen , here is a guy who is looking for a summer associate position . i looked at his resume and think that he may be worth talking to . pavel - - - - - - - - - - - - - - - - - - - - - - forwarded by pavel zadorozhny / hou / ect on 01 / 12 / 2001 01 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - dmitri villevald on 01 / 03 / 2001 06 : 56 : 54 pm to : "" pavel zadorozhny ( e - mail ) "" cc : subject : asking for advice regarding summer associate position at enron dear mr . zadorozhny : maxim philippov suggested that i write you . being a first - year mba student at owen graduate school of management ( vanderbilt university ) with a finance concentration , i am looking for a summer associate position at enron . the area of my particular interest is enron ' s risk management products ( commodity derivatives research and trading ) . graduating from novosibirsk state university with major in physics , i am eager to apply my experience with the use of theoretical and statistical physics techniques to the managing of modeling processes and creating complex financial and trading models . i strongly believe that my graduate education coupled with undergraduate background in physics , solid work experience in finance and proven entrepreneurial spirit will allow me to contribute to enron as a summer associate . i would really appreciate your advice regarding employment opportunities at enron and would like to find out more about enron capital & trade resources corp . i will call you within this week to follow up on my request . thank you very much for your time . sincerely , dmitri villevald enclosure : resume > p . s . looking through an example of margin risk hedging at enron ' s web site , i think i found a small mistake there . url of this page is ( producer application ) the second sentence of the paragraph beginning with "" paradigm and enron exchange . . . "" states the following . for example , if the actual margin is $ 1 . 25 / mmbtu for a given month , then paradigm will pay enron $ 0 . 13 / mmbtu . alternatively , if the actual margin is $ 2 . 00 / mmbtu , then enron will pay paradigm $ 0 . 62 / mmbtu . i believe , if i am reading it correctly , the money should flow in the opposite direction , namely : for example , if the actual margin is $ 1 . 25 / mmbtu for a given month , then enron will pay paradigm $ 0 . 13 / mmbtu . alternatively , if the actual margin is $ 2 . 00 / mmbtu , then paradigm will pay enron $ 0 . 62 / mmbtu . am i right ? again , thank you very much for your time . - resume . doc",0 +"Subject: re : kenneth parkhill stinson : norma has checked the internal equity in the group , and kenneth is fine in a senior specialist spot at that salary . i will be happy to extend an offer to him . did you discuss anything concerning the relocation package with kenneth ? molly x 34804 stinson gibner 11 / 01 / 2000 06 : 18 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : kenneth parkhill molly , we would like to go ahead with an offer to kenneth . after talking to him again , i think he will accept . we would like to offer him the equivalent package to an incoming associate , which i understand would be $ 76 k base and a signing bonus of $ 20 k . he position would be a specialist or senior specialist ( whichever fits the salary ) reporting to me . thanks for your help , stinson x 34748",0 +"Subject: congratulations dear vince - i am soooo gland to see you get the promotion you so deserve . i have always thought you should have received such honors many years ago . i ' m glad to see enron finally did you right . good luck and congratulations , julie : - )",0 +"Subject: ppi index short - term models hi martina i believe that the forecasts are accurately reflecting this . please see graphs below : both models really need our rpi curve to be linked ( at the moment i have just copied the 2 . 3 % number forward ) . because the auto - regressive error term is not very important , we can run the models forward with reasonable confidence . as i mentioned , i don ' t think we can really run this model more than 12 months , in fact , i think we should run for 9 - 12 months and blend the next 3 - 4 months out with the long - term model . hope i can fix the long - term ones now with some new insight ! regards , anjam x 35383 pllu : dzcv :",0 +"Subject: ena fileplan vince : fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 01 / 2000 08 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sarah bolken @ enron 08 / 01 / 2000 08 : 08 am sent by : sara bolken @ enron to : shirley crenshaw / hou / ect @ ect cc : subject : ena fileplan we are records and information management consultants from millican & associates , who have been hired by carolyn gilley , ena ' s records manager , to formulate a fileplan for all of ena ' s business records . the approach we ' ve taken to develop this fileplan is to perform a generic inventory of each ena department ' s records . now , we generally meet with an executive ( usually a vice president or director ) within each group to first explain this project and seek permission to perform the inventory , and then to ask that executive to designate someone within his / her area to serve as our working contact . the contact is usually someone who is very familiar with their department ' s record , and can be a manager or support staff . there are a number of reasons we are working on this ena fileplan project . enron , as i am sure you know , creates volumes of paper and electronic records - - much of it has never been captured . many departments are keeping records well beyond their legal retention requirements , taking up valuable and expensive office space . the fileplan , once completed , will document what is being created , who has responsibility for it , and how long it must be maintained . during our inventory we will attempt to capture both paper and electronic records . we ' ll also try to identify any computer systems your area ( s ) use . the inventory itself is non - invasive , in that we do not open or look into file cabinets or desk drawers . it ' s simply an interview process where the contact answers a few easy , simple questions . please feel free to contact me if you have any questions . thank you . sara bolken x 35150",0 +"Subject: re : resume , thanks for the heads up , vince . i ' ll coordinate with shirley . molly vince j kaminski 10 / 30 / 2000 09 : 52 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : resume , molly , i would like to invite this student for an interview , sometimes in late december when things slow down . interviews with all my direct reports and george hopley . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 09 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 10 / 24 / 2000 04 : 32 pm to : jinbaek kim @ enron cc : vince j kaminski / hou / ect @ ect subject : re : resume , jinbaek , we shall invite you to an interview in houston . vince jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm to : vkamins @ enron . com cc : subject : resume , dear mr . kaminski , hi , i am a ph . d student at ieor department at u . c . berkeley . thanks for your presentation today . it gave me knowledge and interest in electricity markets , and your company . as you mentioned in the presentation , i send a resume to give me opportunity to learn more about your company . i hope i can join the super saturday event . jinbaek - resume . doc",0 +"Subject: re : parking pass for van ngo done . shirley crenshaw @ ect 01 / 19 / 2000 07 : 33 am to : louis allen @ enron cc : vince j kaminski / hou / ect @ ect , kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron subject : parking pass for van ngo good morning louis : please cancel the "" secom "" parking badge that was issued to van ngo for parking in the 777 clay garage while she was working part time with the research group during the holidays . the number on the card is 4280 . i will return the badge to you this morning . the co . # is 0011 and the rc # is 100038 . thanks louis and have a great day ! shirley 3 - 5290",0 +"Subject: re : houston visit soussan , let ' s meet at westin oaks next to the reception around 6 : 30 p . m . thursday . there are several nice restaurants within a walking distance to the galleria . i shall make a reservation ( is italian or a steakhouse ok ? ) . you can reach me on thursday at my cell phone 713 410 5396 . look forward to meeting you . vince "" faiz , soussan "" on 11 / 27 / 2000 04 : 37 : 30 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : houston visit great ! i look forward to our dinner on thurs . 12 / 7 evening . hopefully your flight will be on time . . . although having watched 60 minutes last night and suffered from a # of delays lately , let ' s hope that the "" weather blame "" doesn ' t get in the way . it ' s best to leave me a message @ my usual work # on thurs . , 914 253 4187 , . . . i can easily check it in houston . i ' ll be staying @ the westin oaks in the galleria . . . any preferred place that i can book ( & for what time ) ? ? coming over to down town won ' t be a problem for me either . will be great to see you again . soussan 914 253 4187 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , november 27 , 2000 12 : 10 pm to : faizs @ texaco . com cc : vince . j . kaminski @ enron . com subject : re : houston visit soussan , thanks for your message . it would be great to meet you when you come to houston . i shall be in town on december 7 , flying back from philly in the morning . assuming that the flight is on schedule , i shall be available for dinner . please , let me know how i can contact you on thursday , december the 7 th , to confirm . look forward to meeting you . vince "" faiz , soussan "" on 11 / 26 / 2000 09 : 04 : 01 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : houston visit dear vince , greetings from ny and hope that all is well and you had a great thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are available either evening for dinner . would be great to see you again and catch up with the latest . . . i really enjoyed my visit last april , your insights , and the risk book you gave me . i do hope you ' re available to meet and pls let me know which evening suits you better . best , soussan faiz texaco inc . 914 253 4187",0 +"Subject: re : telephone interview with the enron corp . research group marshall : thanks for responding so quickly . i have scheduled the following interview : wednesday , december 6 - 1 : 00 pm houston time . it will last approximately 1 hour . we will call you at ( 605 ) 497 - 4045 unless otherwise instructed . if you have any questions , please feel free to contact me at 713 / 853 - 5290 . best regards , shirley crenshaw "" jingming ' marshall ' yan "" on 11 / 28 / 2000 12 : 59 : 55 pm to : shirley . crenshaw @ enron . com cc : vince . j . kaminski @ enron . com subject : re : telephone interview with the enron corp . research group ms . crenshaw , thank you very much for the message . i am very interested in the opportunity to talk to personnel from the research group at enron . between the two days you suggest , i prefer wednesday 12 / 6 . considering the two - hour time difference between california and texas , 11 : 00 am pacific time ( 1 : 00 pm your time ) seems to be a good slot . however , i am open most of the day on 12 / 6 so if some other time slot is prefered on your end , please let me know . thanks again . i look forward to talking to you and your colleagues . jingming on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote : > good afternoon jingming : > > professor wolak forwarded your resume to the research group , and > they would like to conduct a telephone interview with you , sometime next > week , at your convenience . the best days would be tuesday , 12 / 5 or > wednesday , 12 / 6 . > > please let me know which day and what time would be best for you and > they will call you . let me know the telephone number that you wish to be > contacted at . > > the interviewers would be : > > vince kaminski managing director and head of research > vasant shanbhogue vice president , research > lance cunningham manager , research > alex huang manager , research > > look forward to hearing from you . > > best regards , > > shirley crenshaw > administrative coordinator > enron research group . > 713 - 853 - 5290 > > > jingming "" marshall "" yan jmyan @ leland . stanford . edu department of economics ( 650 ) 497 - 4045 ( h ) stanford university ( 650 ) 725 - 8914 ( o ) stanford , ca 94305 358 c , economics bldg if one seeks to act virtuously and attain it , then what is there to repine about ? - - confucius _ ? oo ? ? ooo ? ? t  xo - ? ? - -  ? ?",0 +"Subject: mike ' s laptop vince , check it out ! thanks for your advice on strategic problem - solving thanks again - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 24 / 2000 07 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - henry moreno 05 / 23 / 2000 06 : 00 pm to : mike a roberts / hou / ect @ ect cc : grace e warren / hou / ect @ ect , kevin g moore / hou / ect @ ect , david wile / hou / ect @ ect , chris bowling / hou / ect @ ect , john p tollefsen / hou / ect @ ect , bob hillier / na / enron @ enron , roberto deleon / corp / enron @ enron , mark hall / hou / ect @ ect subject : re : request for help mr . roberts , i am glad we were able to reach a practical solution for you without going too much against the grain of enron corp . ' s it policy and standards . thanks to david wile and mark hall in formulating a solution that addresses everyone ' s needs . in summary , your contingency and recovery machine ( laptop ) will be imaged for win 2000 applications will be evaluated for compatibility this will allow you to use the machine as a back - up to gather weather data off the internet ( via independent dial - out line ) in case the normal enron network architecture is unavailable . i will follow - up to make sure we capture the one exception to the policy and standard that surfaced ( local admin rights on the laptop for development activity ) . irm / roberto deleon will facilitate with a risk acceptance request form . thanks again , henry moreno information risk management ( irm ) from : mike a roberts 05 / 23 / 2000 10 : 29 am to : henry moreno / hou / ect @ ect cc : grace e warren / hou / ect @ ect , kevin g moore / hou / ect @ ect subject : request for help what i have : a . i have an ibm thinkpad and a cd for windows 98 b . i got the ibm from richard weeks . i bought the windows 98 . c . i have a valid business need to get windows 98 on the ibm a . my job requires a totally independent backup to access data off the internet and process same for trader ' s report b . this must be done 7 days per week in the early am . c . i have new equipment that doesn ' t run on nt i . audio file generator ( nomad ) ii . video file generator ( intel ) d . i will also be loading office 2000 ( which i have ) the problem : a . when i travel , terminal server doesn ' t work ( last time i spent several $ hundred trying ) b . on the weekends , terminal server unacceptably slow ( requiring someone to come in sat & sun ) c . when we move internally , things go wrong ( this monday we got switched from 100 megabytes to 10 mega bytes ) - trader ' s report not ready on time d . i currently have no stand - alone backup for contingency purposes what i need : i need help putting windows 98 put on my thinkpad ( when i reformatted and loaded , it did not recognize the modem ) there should be no security risk because this system will be totally independent of enorn system ( just usinf the phone ) can you approve someone to help me load it up ? ? ? thank you . mike roberts vice president , research x 3 - 5701",0 +"Subject: t . v . please what ' s the ststus ? - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 08 / 21 / 2000 11 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 08 / 08 / 2000 11 : 08 am to : darren p adamik / hou / ect @ ect , mike a roberts / hou / ect @ ect , william smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect cc : subject : t . v . we are in need of a 9 inch t . v . set . the set will be located betweeneb 3240 e and eb 3240 f . r . c . # 100038 co . # 0011 please if any more information is needed please call me x 34710 . also please provide e . t . a . thanks kevin moore",0 +"Subject: renshi zhang ' s resume shirley and molly , vince is interested to set up an interview for renshi zhang . any day except thursday next week is good . interviewers : vince , stinson , vasant , tanya , alex , bob , krishna and myself . contact number for mr . zhang is 713 - 544 - 5989 . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 19 / 2001 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 04 / 05 / 2001 09 : 49 am - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 05 / 2001 09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 14 / 2001 10 : 06 am to : zimin lu / hou / ect @ ect cc : subject : resume - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001 10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - marshall brown on 03 / 09 / 2001 07 : 46 : 22 am to : vince kaminski cc : subject : resume vince , how are you . this candidate would be interested in any positions in your group . regards , marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . if you have received this email in error please notify the system manager . this footnote also confirms that this email message has been swept by mimesweeper for the presence of computer viruses . - zhan _ ren . doc",0 +"Subject: resume and available dates for amy ward fyi vince p . s . charlene , i am in london till wednesday . if you have any questions you can contact stinson gibner x 3 - 4748 . - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 21 / 2000 09 : 49 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 02 / 18 / 2000 01 : 58 pm to : vince j kaminski / hou / ect @ ect cc : ravi thuraisingham / enron communications @ enron communications subject : resume and available dates for amy ward vince : here is an electronic version of amy ward ' s resume . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 18 / 2000 01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - amy ruth ward on 02 / 18 / 2000 12 : 02 : 22 pm to : stinson gibner cc : subject : re : thanks for coming to houston stinson , i am pleased to hear your hr department is putting together an offer for summer employment . i enjoyed everyone i interviewed with while in houston and appreciated you taking the time to put together this day . as requested , i am attaching an electronic version of my resume . ( note it is a slightly more updated one then the one i gave you earlier . ) it is in microsoft word format . my dates of availability are wed . , july 5 through fri . , september 15 ( 10 1 / 2 weeks ) . sincerely , amy ward - resume . doc",0 +"Subject: forecasting project per our monday meeting , the time line for completion of the "" phase i "" forecasting project ( hourly system load & next day load ) is as follows : aug . 15 - sept . 15 ( data collection ) sept . 15 - oct . 15 ( modeling ) oct . 15 - nov . 15 ( system development and testing ) if any questions arise between now and the end of august , contact barbara dillard , but as of sept . 1 , i will be the chicago lead for this and other forecasting projects and will be available to handle any questions or issues . best regards , mark mixon",0 +"Subject: re : congratulations thanks . vince j kaminski @ ect 01 / 11 / 2000 08 : 01 am to : richard shapiro / hou / ees @ ees cc : subject : congratulations rick , i have just looked at the memo regarding promotions . congratulations - well deserved . vince",0 +"Subject: color copier thanks for your immediate response . the problem seems to be the cost . iain , i have the smallest group but we are willing to pay what it takes for the copier . on the other hand there may be other groups that are larger and may not need the copier as much and are not willing to pay the cost . seems to me , the copier is a necessity for the floor , it would save not only time , but money also in the long haul . we have updated every possibility on the 32 nd floor and this copier is needed for quick presentations , meetings , etc . and allows everyone not to depend on color printers as much ! ( gives us choices ) please after today , once we get together regarding this matter , i will let ina continue with the process , whereby , i can continue focusing on what is best for my group as well as the floor . thanks kevin moore",0 +"Subject: re : internship shane : sorry , i have been on vacation . i just returned today . could you please send me a copy of your resume by email ? i have tentatively scheduled the following interviews : 8 : 30 am vince kaminski 9 : 00 am p . v . krishnarao 9 : 30 am stinson gibner 10 : 00 am tanya tamarchenko 10 : 30 am paulo issler 11 : 00 am zimin lu 11 : 30 am human resources you should be free to return to baton rouge by 1 : 00 pm . if this schedule is not ok , please let me know . thanks ! regards , shirley crenshaw adminitrative coordinator enron corp . research 713 / 853 - 5290 email : shirley . crenshaw @ enron . com "" shane green "" on 07 / 06 / 2000 10 : 05 : 13 am to : cc : subject : internship ms . crenshaw , ? i just wanted to touch base and see if you had any information concerning my visit to enron on monday . ? i will be in my office at lsu for the rest of ? the day with a couple exceptions . ? i teach corporate finance from 2 : 30 - 3 : 30 , ? and will ? go to lunch at around 1 . ? you can contact me here at ( 225 ) 388 - 6335 . ? if this is not convenient , you can send me an e - mail , or leave a message on my home phone at ( 225 ) 744 - 3201 , and i can get in ? touch with you tomorrow . ? thanks , shane green",0 +"Subject: invoice for ordered papers shirley , the invoice for papers i have ordered on - line . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2000 01 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - nber working paper catalog on 04 / 11 / 2000 10 : 09 : 59 am to : vkamins @ enron . com cc : subject : invoice for ordered papers you have ordered the following papers : - wp w 7613 foundations of technical analysis : computational algorithms , statistical inference , and empirical implementation - wp w 6250 pricing and hedging derivative securities in incomplete markets : an e - aritrage model the total cost ( excluding shipping ) is : $ us 10 shipping address : if you ordered papers for electronic delivery and experienced problems downloading them , browse the following url ( s ) to download your paper orders . the url ( s ) are valid for 7 days . if you receive duplicate bills , please send a note to .",0 +"Subject: electricity summit at u . c . berkeley vince , i just received this message . what do you think ? should i register to attend it ? sevil , - - - - - - - - - - - - - - - - - - - - - - forwarded by sevil yaman / corp / enron on 10 / 24 / 2000 02 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - pwpens on 10 / 24 / 2000 12 : 16 : 14 pm to : ( recipient list suppressed ) cc : subject : electricity summit at u . c . berkeley register now to attend the electricity summit at u . c . berkeley , november 13 , 2000 u . c . berkeley ' s goldman school of public policy , with additional support from the u . c . berkeley ' s competition policy center and the u . c . energy institute , will host a meeting of industry representatives , policy makers , consumers representatives , legislators and researchers to discuss the electricity restructuring experience and potential solutions to the difficulties that california and other governments have encountered . the summit will run from 12 : 30 - 6 pm with two roundtable discussions that will include a wide variety of viewpoints . for registration information and further details , go to ",0 +"Subject: telephone interview with enron corp . research good morning amyn : the enron corp . research group would like to conduct a telephone interview with you at your convenience . this will be as a "" summer intern "" with the research group . please let me know your availability on monday , may lst or thursday ; may 4 th . the persons who will be interviewing you are : vince kaminski managing director stinson gibner vice president krishna krishnarao director osman sezgen manager i look forward to hearing from you . thank you and have a great day shirley crenshaw administrative coordinator 713 - 852 - 5290",0 +"Subject: installation of new programs phillip , how can i install new programs on my laptop , without the administrator ' s privileges ? one example : when i travel i use aol to get access to my mail and to communicate with the office . windows 2000 does not allow me to install it . also , i have my private statistical software i often use when i work at night during business trips . i would like to load it as well . vince",0 +"Subject: your confirmation is needed please reply to this email message to confirm your subscription to enl - dailyupdate - txt . your email address has been entered for a subscription to the enl - dailyupdate - txt mailing list . however , your new subscription requires a confirmation that you received this email message and want to join this mailing list . if you do not want to join , do nothing . you will be automatically removed . to confirm that you do want to join , simply reply to this message . make sure that your message is addressed to to unsubscribe immediately , you send an email message to ",0 +"Subject: cera conference call - tuesday , january 25 , 2000 kari : please enroll vince kaminski , enron corp . for the conference call to be held on tuesday , january 25 at 4 : 00 pm eastern time . information requested : name : vince kaminski company : enron corp . telephone # : 713 - 853 - 3848 he will call in 10 - 15 minutes prior to the conference call . please confirm his registration . thanks and have a great day ! shirley crenshaw 713 - 853 - 5290",0 +"Subject: bob lee ' s bio vince , here ' s bob ' s bio . it ' s pretty short , but i expanded his picture a bit to compensate . i also had to convert it from third person to first , so it ' s a little "" i "" heavy . sam - - - - - - - - - - - - - - - - - - - - i joined the pricing and evaluation technology group in june , 2000 . i  , m currently working on pricing models for commodity options and time series analysis to relate commodity and equity prices . i have completed an m . s . in financial engineering at the university of michigan in april , 2000 and have also been an independent organization development consultant for 15 years with extensive work in electric and gas utilities . prior to that , i managed a methods development group for a nuclear reactor manufacturer for 16 years . from a few years back , i  , ve earned a bs ( aero . eng . ) from rensselaer polytechnic institute , an ms ( nuclear science ) from vanderbilt university and a ph . d . ( nuclear engineering ) from rensselaer . when away from enron , my outside interests include yoga and grandchildren . _ _ _ _ _ _ _ _ _ _ _",0 +"Subject: re : london contact number hi anita , how are you ? i arrived yesterday late morning from the london gatwick airport . due to rush hour traffic , etc . it took a while to get into the city to the hotel . also , due to may day ( may lst ) protests / riots , etc . , the hotel management strongly recommended that we remain in the hotel . however , i am in the office today . i can be reached via email or via telephone at 44 ( 0 ) 207 783 5647 . take care , iris - - - - - original message - - - - - from : dupont , anita sent : tuesday , may 01 , 2001 5 : 23 pm to : mmumford @ enron . com cc : mack , iris ; crenshaw , shirley subject : i . m . mack 30 apr - 15 may * * plse review for accuracy * * agent ce / ce booking ref x 7 w 882 mack / iris eb 1972 enron corp importance : high see iris ' s itinerary below . i thought her initial plan was to land this morning and come in to enron house in early afternoon . see itinerary for phone number of hotel . let me know if i can help in any other way . thanks . anita service date from to depart arrive continental airlines 30 apr houston tx london gatwick 350 p 655 a co 34 j mon g . bush iah gatwick 01 may terminal dom terminal s dinner / snack non stop reservation confirmed 9 : 05 duration vegetarian meal , non - dairy confirmed aircraft : boeing 777 - 200 / 300 hotel 30 apr athenaeum hotel and apartments 11 may 116 piccadilly london england , wlv obj united kingdom telephone : 44 - ( 0 ) - 207 - 499 - 3464 fax : 44 - ( 0 ) - 207 - 493 - 1860 confirmation : claire 25 apr rate : rac gbp 270 . 00 per night guarantee given prereg actual arr lmay 655 am apartment to avoid billing cancel by 6 pm 24 hrs prior continental airlines 11 may london gatwick houston tx 1200 n 415 p co 5 j fri gatwick g . bush iah terminal s terminal dom lunch / snack non stop reservation confirmed 10 : 15 duration vegetarian meal , non - dairy confirmed aircraft : boeing 777 - 200 / 300",0 +"Subject: re : the garp 2001 convention andreas , i shall be glad to serve as the chairman . i am currently located in enron n . a . it stands for enron north america . in enron the orgchart changes every 3 months . vince "" andreas simou "" on 09 / 20 / 2000 06 : 38 : 09 am to : cc : subject : the garp 2001 convention dear vince ? i would like to invite you to chair the stream on energy and corporate risk management at the garp convention . is this something that would be of interest to you ? ? also , can i please confirm , because i am having a few it problems at present , that the following title is correct for you : vince kaminski , managing director , research , enron corp . i look forward to your response in due course . ? kind regards ? andreas _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900",0 +"Subject: re : test thanks , vince . we have received both her application and her signed offer letter , so we are moving in the right direction . molly - - - - - original message - - - - - from : kaminski , vince sent : thursday , april 19 , 2001 10 : 44 am to : magee , molly cc : crenshaw , shirley subject : re : test molly fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 19 / 2001 10 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - - edward kao on 04 / 18 / 2001 08 : 30 : 49 pm to : vkamins @ ect . enron . com cc : subject : re : test vince : candice ' s contact information at mount holyoke is as follows : phone : ( 413 ) 493 - 5092 email : cgkao @ mtholyoke . edu address : 1453 blanchard campus center mount holyoke college south hadley , ma 01075 - 6002 ed ps : i hope ron singer has given you the needed info . please feel free to contact me if i can be of any help with regard to your colleague ' s inquiry about pursuing doctoral study at uh .",0 +"Subject: re : visit to enron thanks . i will be flying back from tokyo on that day , so unfortunately i ' ll miss bambos . if my schedule changes , i ' ll let you know . all the best , tom vince j kaminski @ ect 05 / 01 / 00 09 : 05 am to : thomas d gros / hou / ect @ ect , stinson gibner / hou / ect @ ect , ravi thuraisingham / enron communications @ enron communications cc : vince j kaminski / hou / ect @ ect subject : re : visit to enron fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2000 09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 05 / 01 / 2000 04 : 26 : 30 am to : vince . j . kaminski @ enron . com cc : subject : re : visit to enron vince , how are you ? hope all is well . is there any chance we can schedule my visit to enron on friday , may 19 , or friday , may 26 ? by the end of april i was able to attract a top new student to work on the project . the other one for the coming year will be giuseppe . by spending the summer at enron , he will be in a position to bring the new one up to speed and create an intellectual team here at stanford to look at these problems . i must move ahead soon to put the project in place and get the work going . talk to you soon , nick vince . j . kaminski @ enron . com wrote : > > nick , > > we can close the loop on our commitment to support the research projects > before your visit to enron . > > my assistant , shirley crenshaw , will call you to set up a conference call > with me , stinson gibner , > and tom gros from enron broadband services to discuss all the isssues . > friday this week would work for > both tom and me . i think we need about 15 minutes . > > vince > > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525 > ( office ) . > > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm > > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu > cc : > subject : visit to enron > > hello vince , > > it was nice seeing you at stanford and many thanks for the lunch > we had together . i really enjoyed our discussions , both at the > technical level and otherwise . > > i promised to send you an e - mail regarding possible dates for > a visit to enron . i delayed it for a week till my schedule was > clearer . let ' s see if we can get a match with your schedule - > mine is rather terrible : > > friday , 21 st of april looks good . but april 23 rd is easter > sunday , so that may make it difficult for some people at enron > to be around . let me know if that is the case . i am willing to > visit then , because the week after that i am scheduled to be in > japan and in the previous weeks i am all committed on fridays . > > friday , 19 th of may is the next possibility , but this probably > is too far out . the main problem is that i am operating within > a window of opportunity for attracting top students for this > research . this window closes by the end of april , and it would be > important for the student support funds to be in place then , so > that i can make hard commitments to students and attract top > talent . i am already reviewing files of students who have > approached me for phd advising , and i am in a mode of doing "" soft > commitments to star - level students "" to get this research and its > potential on their radar screen . top students are highly sought > after by advisors and i want to be an early player in this > competition . > > does my visit to enron have to happen before we can set up the > project and student support at stanford ? if so , doing it before the > end of april is important for getting top people . if the visit can > happen after we get the ball rolling , then we can schedule it in may . > i assume there will be multiple visits both ways when the project gets > going . please let me know what you think . > > best regards , > > nick",0 +"Subject: re : presentation thanks ! you are probably familar with the format . . . 15 - 20 minutes for the presentation followed by 20 - 30 minutes for q & a . see you at 7 : 30 am thursday in the lobby of the sonesta for breakfast ! ghw "" vince j kaminski "" on 03 / 31 / 2000 12 : 48 : 58 pm to : george wayne @ fpl cc : "" vince j kaminski "" , vkaminski @ aol . com subject : presentation george , this is the presentation i promised . vince ( see attached file : fplo 400 . ppt ) - fplo 400 . ppt",0 +"Subject: from the enron india newsdesk - may 5 - 7 newsclips stinson / vince , some news articles . do read the first one , and the second last one . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 05 / 07 / 2001 09 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nikita varma 05 / 07 / 2001 07 : 42 am to : nikita varma / enron _ development @ enron _ development cc : ( bcc : sandeep kohli / enron _ development ) subject : from the enron india newsdesk - may 5 - 7 newsclips the economic times , may 7 , 2001 enron ceo casts vote to save dpc , tina edwin & soma banerjee - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 7 , 2001 maha sore over delay in naming godbole nominee - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the times of india , 7 may , 2001 maharashtra ' unhappy ' with delay in naming godbole nominee - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , monday , 7 may 2001 reliance allowed to hawk power from patalganga to third parties arijit de , s ravindran & renni abraham in mumbai - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 7 , 2001 no need of patalganga , bhadravati power : mseb also appeared in the following newspaper : the times of india , may 7 , 2001 ' no need of patalganga , bhadravati power ' - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , may 7 , 2001 global bankers ask govt to honour dpc obligations - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard saturday , 5 may , 2001 , ge may pull out as dpc supplier , s ravindran in mumbai - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - hindu businessline , may 5 , 2001 agenda for fresh talks with enron chalked out - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 6 , 2001 http : / / 216 . 34 . 146 . 167 : 8000 / servlet / form godbole panel meets sans dabhol representation - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 5 , 2001 http : / / 216 . 34 . 146 . 167 : 8000 / servlet / form ntpc not to buy power from enron : govt - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the times of india , may 7 , 2001 mseb recovers rs 3 . 06 cr arrears in one day - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 7 , 2001 enron ceo casts vote to save dpc , tina edwin & soma banerjee amul ' s creative directors may have gone back to ad - libbing ' enron or enr - off ' , but for the big kahuna at the american utility , dabhol is still a worthwhile project . while the entire enron board had almost decided to call it quits and proceed with the termination of the $ 2 . 9 - billion power project at dabhol , the veto exercised by the company chairman kenneth lay has saved the project  * - at least for the timebeing . sources said the meeting held on tuesday at the energy major ' s headquarters in houston could have sounded the death knell for the only big foreign investment in the indian power sector . although the future of the project is still pretty uncertain with the lenders unwilling to continue disbursements unless payment obligations are not honoured and contractual obligations left unfulfilled , the veto exercised at this juncture by the chairman of the parent company has come as a big boost to the indian venture . company sources said : "" we do not know what went on there but it is true that as of now we are not pulling out . "" with the engineering procurement and construction contractors ge and equipment suppliers bechtel too in a cautious mode mode , dpc was finding it even more difficult to continue the construction of the project as per the schedules . sources said the stand taken by the rest of the directors on the board would be in view of the backlash that the company would have to face from its shareholders if the project actually flopped . enron had similar bitter experiences in pakistan and it was difficult for the parent company to then justify such investments to the shareholders . enron , which had planned a major investments in india ' s infrastructure sectors such as oil and gas , lng , gas transportation , telecom and broadband network , has already pulled out most of their personnel from some of these operations . the company ' s mous with various other majors like indian oil corporation , too , is in a limbo and the us major ' s stake in the oil and gas venture is up for grabs . however , even though lay is still hoping to find a solution to the controversy back home , both dpc and mseb are still to get down to negotiations . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 7 , 2001 maha sore over delay in naming godbole nominee the maharashtra government has expressed ' unhappiness ' over the centre ' s delay in appointing its nominee on the nine - member godbole committee to renegotiate the power purchase agreement signed between enron - promoted dabhol power company and state electricity board . "" the committee , which is to hold discussions with enron officials from houston on may 11 , has only a month ' s time for renegotiations and with dpc ' s termination notice threat hanging on our head , time is actually running out . yet there is no official to represent the union government , "" said a senior state government official . "" there are media reports that the solicitor - general harish salve would be appointed , but we are yet to hear anything from their side , "" he said . the official said the state expected centre to announce its representative before may 11 , as it would appreciate his crucial presence in the first session of discussions with enron officials , lenders and gas suppliers . sources in the mantralaya added the government had also been unhappy over the centre ' s "" rigid stand "" on not allowing state - owned national thermal power corporation to buy the excess capacity of dpc ' s total 2 , 184 - mw project . "" let ntpc and power trading corporation of india come together and sell dpc ' s surlpus power . we have already mooted this suggestion , but a favourable reply is yet to come from the union power ministry , "" the official said . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the times of india , 7 may , 2001 maharashtra ' unhappy ' with delay in naming godbole nominee the maharashtra government has expressed ' unhappiness ' over the centre ' s delay in appointing its nominee on the nine - member godbole committee to renegotiate the power purchase agreement ( ppa ) signed between enron promoted dabhol power company ( dpc ) and the maharashtra state electricity board ( mseb ) . "" the committee , which is to hold discussions with enron officials from houston on may 11 , has only a month ' s time for renegotiations and with dpc ' s termination notice threat hanging on our head , time is actually running out . yet there is no official to represent the union government , "" a senior state government official said here on sunday . "" there are media reports that solicitor general harish salve would be appointed , but we are yet to hear anything from their side , "" he said . the official said that the state expected the centre to announce their representative before may 11 , as it would appreciate his crucial presence in the first session of discussions with enron officials , lenders and gas suppliers . sources in the mantralaya added that the government had also been unhappy over the centre ' s rigid stand on not allowing state - owned national thermal power corporation ( ntpc ) to buy the excess capacity of dpc ' s total 2 , 184 mw project . "" let ntpc and power trading corporation of india ( ptc ) come together and sell dpc ' s surlpus power . we have already mooted this suggestion , but a favourable reply is yet to come from the union power ministry , "" the official said . the official said that the centre , which was also responsible for dpc project as it has provided counter guarantee to enron india , should form a special purpose vehicle for sale of the excess power to other states . the state government ' s reaction comes in wake of union power minister suresh prabhu ' s discussion with chief minister vilasrao deshmukh in delhi few days ago . it was learnt that prabhu told deshmukh "" there is no question of ntpc buying power from the project since long term ppas have been signed by ntpc with the buying states "" . deshmukh had suggested that the central power utility should sell excess power over and above the 300 - 400 mw needed for the state from the dpc ' s 740 mw phase - i and soon to be commissioned phase - ii of 1 , 444 mw , to other needy states . considering the high cost of power generated from dpc , which during the recent months has hovered around rs 7 per unit as against an average cost of rs 2 . 30 - 2 . 80 a unit from central and state utilities , there would be few takers for the power from dabhol , the power minister reportedly said . "" deficit states will buy dpc power only when the cost of power is brought down , "" he said , adding power ministry would facilitate wheelng of this power to the buyers . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , monday , 7 may 2001 reliance allowed to hawk power from patalganga to third parties arijit de , s ravindran & renni abraham in mumbai in an unusual departure from normal practice , the maharashtra government has allowed the reliance group to sell power generated by its 447 - mw patalganga power project directly to third parties if the maharashtra state electricity board ( mseb ) does not lift power . the project  , s power purchase agreement ( ppa ) has a clause to this effect . the state government  , s permission to reliance to hawk power to third parties has to be seen in the context of its dithering on forwarding to the centre the dabhol power company  , s bid for mega power status so that it could sell power to third parties . dpc sources told business standard several weeks ago that the company  , s application had been pending with the chief minister  , s office for months . only now has the state government authorised the godbole committee to negotiate with dpc on third party sales outside the state . the dpc project is facing the threat of closure following mseb  , s inability to buy power from it , thanks to the board  , s weak financial position . not only can the reliance group sell power to third parties within maharashtra , but it can sell power to utilities outside the state . the ppa does not expressly bar it from doing so . nor does it specify the category of customers to whom power can be sold . so , in effect , this suggests that the group could sell power to industrial and commercial customers in maharashtra and emerge as a rival to the mseb . the state electricity board derives over 80 per cent of its revenue from such consumers . apart from captive power plants , independent power producers in india are allowed to sell power only to state electricity boards . they can sell power outside the state only if they qualify for mega power project status . with its 447 - mw capacity , the patalganga project is not eligible for such status because mega power rojects are supposed to have a minimum capacity of 1 , 000 mw . speaking on the sidelines of a press conference last week , reliance industries managing director anil ambani told business standard : a provision in third parties . ambani was answering a question on whether the mseb  , s weak financials and inability to offer escrow cover to the project as emphasised in the godbole committee report set up to defuse the dabhol crisis would derail the patalganga project . the ppa does not have any express restriction as to third party sale outside the state , a reliance spokesperson confirmed on friday in a faxed response to questions . a senior mseb official explained that the state government cleared private power projects some years ago on the basis of the unrealistically high demand projections contained in a report by a former mseb official . subsequently , it was realised that the state would be stuck with excess power . so the reliance group was permitted to sell power to third parties , he said . the patalganga project along with the ispat group  , s 1 , 082 mw bhadravati project has been put on hold till the godbole committee submits its second report . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 7 , 2001 no need of patalganga , bhadravati power : mseb the axe seems to have finally fallen on the much - delayed reliance industries - promoted patalganga and ispat industries ' bhadravati power projects in maharashtra as the state electricity board has firmly told the government that "" there is no need of these projects nor their power "" . the loss - making board has communicated to the government that mseb had "" no interest "" in patalganga and bhadravati , as it did not have escrow - able capacity and also that industrial demand for power had slowed down tremendously in maharashtra , state government sources said here on sunday . "" in last november itself , mseb had sent an official intimation to the state government informing its decision in favour of cancellation of the two projects on several grounds - - including they being unviable and unaffordable , "" sources said . "" reliance ' s project is no different from that of dpc ' s . patalganga is also naphtha - based and its ppa is on similar lines . . . after the enron experience , mseb cannot even dream of another gas - based power plant in the state , "" a senior mseb official said . he said mseb has already asked the state government not to provide escrow to both the 447 - mw patalganga and the 1 , 084 - mw coal - based bhadravati , "" as the us energy major has almost squeezed us of all over finances "" . when contacted , mseb chairman vinay bansal said : "" reliance and ispat projects have been put on hold as per the godbole committee ' s recommendations "" , but expressed inability to give further details . currently , bhadravati and patalganga projects have been put on hold as per godbole committee report , which was set up to review the dpc - mseb ppa and energy scenario in maharashtra . "" can you go ahead with the project without an escrow cover ? "" the committee was believed to have asked ispat and reliance representatives , to which the reply had been negative , sources added . sources said , as of now , both the projects have not been able to achieve financial closure as leading financial institutions were not willing to fund the projects which do not have a "" guaranteed payment "" mechanism from mseb , which , incidentally it has promised to dpc . "" all the three were cleared as ' fast - track ' projects , but other than enron , reliance and ispat have been caught in a quagmire , especially bhadravati , which has been hanging afire since last nine years , "" they added . moreover , the mseb official opined that given the current situation , if dpc calls it quits from india , bhadravati was a safer bet than reliance ' s patalganga . patalganga ' s power would be mere 50 paise less than that of dpc ' s that ranges anywhere around approximately rs 4 . 50 per unit to as high as rs 7 , while bhadravati ' s cost could be around rs 3 . 80 to rs 4 per unit , he informed . mseb ' s installed capacity ended on march 31 , 2001 , wasl 4 , 000 mw and it has generated 45 , 000 million units with transmission and distribution losses as high as 39 per cent . ( pti ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , may 7 , 2001 global bankers ask govt to honour dpc obligations tamal bandyopadhyay , surajeet dasgupta & santosh tiwary in mumbai / newdelhi global arrangers for the dabhol power company have mounted fresh pressure on the finance ministry to honour the union government  , s counter - guarantee and have also set strict conditions for reconsidering the termination of the power purchase agreement ( ppa ) between the dpc and the maharashtra state electricity board ( mseb ) . in a related development , the dpc has sent a note to all lenders saying they would have to bear the consequences of the turn of events as they have prevented the dpc from serving the ppa termination notice last month . the lenders . in their turn , sent a statement - - prepared by the new york - based legal firm white & case - - defending their stance saying they are working in the best interest of the project . the lenders are expected to meet in london over the next fortnight to take stock of the situation . the deadline for resolving the issues are drawing to a close as 10 days of the three - week reprieve have passed . at the dpc board meeting in london on may 25 , the lenders had managed to stall the issuance of the termination notice and got three weeks  , time for themselves to convince the centre as well as the maharashtra government to resolve the impasse on the controversial project . in a letter to finance secretary ajit kumar dated april 30 , the global arrangers said the government must own up its responsibility and meet its obligations without further delay . among the stiff conditions , set by the arrangers , are the demand that the central government ensure payment of all the pending bills of mseb for december 2000 , january 2001 , february 2001 and march 2001 which remain unpaid without any protest or reservation by may 7 ( monday ) . any payment previously made under  & protest  8 should be made free and clear of such protest or any other reservation , and the center should ensure timely payment of future bills by mseb , they said . meanwhile , sources said that the finance secretary was expected to meet the international lenders to the dabhol projects in london stand on the issue . the lenders  , list of demands also include asking mseb to take steps required under the existing contracts to activate the escrow arrangements put in place at the time of financial close of phase ii of the project by may 7 . they have demanded that the union government and the maharashtra government should take all required actions to ensure that no government agency will take any step to impede the operation of phase i or the construction and operation of phase ii without due cause . the lenders have also asked them to ensure that the relevant customs authorities permit import of all goods and equipment required for the project by may 21 . csfb , anz export finance , citi , bank of america and abn amro are the global arrangers for both phase i as well as phase ii of the project . the state bank of india , which is also a global arranger for phase ii , did not sign the letter . "" ten days have passed since the lenders bought three weeks time from the company delaying its declaration of the termination of the ppa . since then , nothing has moved at the material level barring mseb ' s payment of the january bill to the tune of rs 134 crore under protest , "" said a source among the global arrangers . come forward to meet its obligations the lenders are planning to meet around mid - may in london and this time they will be left with no choice but to give the go - ahead to the company to terminate the ppa unless the finance ministry comes forward to settle the issue , the source added . the lenders are , however , not ready to take the blame for any delay in the termination of ppa as implied by the company . the white & case statement said the lenders are concerned about the fate of the project and they are exploring all intermediate steps before choosing the last option - - termination of ppa . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - business standard , saturday , 5 may , 2001 ge may pull out as dpc supplier , s ravindran in mumbai after us - based bechtel , it is now the turn of general electric to review its participation as equipment supplier to the controversial 2 , 184 - mw power project in maharashtra , being set up by the dabhol power company . bechtel is the epc contractor to the project while ge has supplied the equipment , primarily turbines . general electric , like bechtel , also holds 10 per cent in dabhol power company ( dpc ) . and both bechtel and general electric are worried about future payments from dpc . sources familiar with the project said that so far dpc has not defaulted in its payments to general electric . what is worrying general electric is the possible scenario after june 7 , when about 700 mw power will be commissioned after the second phase trial runs . dpc and the maharashtra state electricity board ( mseb ) have been locked in a payments dispute for months . if mseb continues with its stance , dpc in turn may not be able to pay general electric . in such a situation , ge may walk out of the project . a final decision will be taken only in june , said sources . general electric did not respond to a faxed questionnaire sent by business standard . senior executives at its public relations agency burson marsteller roger pereira said that only dpc executives were authorised to speak on the issue . the dpc spokesman declined to comment on the issue . the first phase of the 740 mw has already been commissioned . after the second phase of 1 , 444 mwis commissioned by december , 2001 , mseb will have to pay dpc a minimum of rs 500 crore per month . the escrow account for this was to have been made operational by april 7 , 2001 . mseb has refused to do this . earlier , dpc had invoked the political force majeure clause in its contract with the board . mseb is now arguing that the invocation of this clause has absolved dpc of all its liabilities . consequently , it will not operationalise the escrow account . this casts a further shadow over dpc  , s ability to pay general electric and bechtel . this is worrying the lenders to the project as well . the situation has taken a turn for the worse with dpc practically refusing to re - negotiate the contract for the second phase with the godbole panel constituted by the maharashtra government . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - hindu businessline , may 5 , 2001 agenda for fresh talks with enron chalked out officials of the state government , maharashtra state electricity board ( mseb ) and members of the madhav godbole committee , which recently submitted its review on the dabhol power project , met here on saturday . the meeting was to ` ` chart the agenda for renegotiation with enron officials , ' ' a senior mseb official said . enron officials were scheduled to attend this meeting but backed out on may 3 . enron had informed the state government that it would not accept the recommendations of the godbole committee . ` it is understandable that the company does not find the recommendations acceptable . but the report is not bound to personal opinions , ' ' the official said . the next meeting to decide the direction of renegotiation process with enron is scheduled on may 11 . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 6 , 2001 godbole panel meets sans dabhol representation the godbole committee , set up for renegotiating the estranged power purchase agreement between us energy major enron - promoted dabhol power company and the state electricity board on saturday held its first internal meeting sans representatives of the multinational . "" it was an internal meeting to take stock of the current situation and decide on matter pertaining to the may 11 meet with officials of enron , ge , bechtel and dpc ' s foreign lenders , "" said state government sources . the meeting , which lasted for almost four hours , discussed a strategy to present the committee ' s recommendations made public last month , they said . of the nine members of the committee , saturday ' s meeting was attended by five members - - including godbole , mseb chairman vinay bansal , state energy secretary v m lal , state finance secretary sudhir shrivastava and kirit parekh of indira gandhi institute of developmental research . those absent were hdfc chairman deepak parekh , teri director r k pachauri , former union energy secretary eas sarma and yet - to - be - appointed representatives of the centre and central electricity authority . the negotiating committee would suggest solutions to bring down the exorbitant power tariff , separating of the liquefied natural gas facility , restructuring of dpc and allowing sale of excess power through central utilities mainly the national thermal power corporation , said sources . ( pti - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the economic times , may 5 , 2001 ntpc not to buy power from enron : govt the centre has ruled out the possibility of national thermal power corporation buying power generated by us energy giant enron - promoted dabhol power company . union power minister suresh prabhu is learnt to have stated this during the meeting with maharashtra chief minister vilasrao deshmukh last month , convened by the finance minister yashwant sinha to discuss the enron crisis , said government sources on friday . prabhu had pointed out that "" there is no question of ntpc buying power from the project since long - term power purchase agreements have been signed by ntpc with the buying states "" . maharashtra chief minister vilasrao deshmukh during the meeting suggested that the central power utility sell the excess power over and above the 300 - 400 mw needed for the state from the 740 mw phase - i and soon - to - be - commissioned phase - ii of 1 , 444 - mw , to other needy states . when contacted , prabhu said the entire controversy over payment default by maharashtra state electricity board owing to high cost of power generated by dpc had to be resolved between the state government , and dpc and centre had very limited role to play . dpc has already slapped one conciliation notice on the centre and three arbitration notices on the state government over non - payment of dues amounting to rs 213 - crore - plus interest rate towards bills due for the months of december 2000 and january 2001 . ( pti ) - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - the times of india , may 7 , 2001 mseb recovers rs 3 . 06 cr arrears in one day in a special day - long drive , nagpur rural zone of maharashtra state electricity board ( mseb ) has recovered rs 3 . 06 crore as arrears from the defaulters who had to pay a handsome dividend , and disconnectedl 5 , 000 connections of erring customers last week . according to mseb sources , under the drive , initiated by chief engineer manohar bapat , with the assistance of about 5 , 000 employees including engineers , accounts staff and linesmen , a door - to - door campaign was launched to meet 25 , 000 customers , leading to the recovery of the dues . power supply to 15 , 000 customers were disconnected on the spot due to non - payment of arrears in chandrapur , gadchiroli , wardha , bhandara , gondia and nagpur districts , it said in a release . the drive met with stiff resistence from public and the police were called in at many places to assist the powermen , it added .",0 +"Subject: japan candidate vince , i spoke with whalley at the sa offsite and he mentioned that had ( or knew of ) a person that could bring some talent to the evaluation of an enron merchant business in japan . i am in sydney today , but will be in tokyo next week . i would like to speak more about this . what time might you be available ? my japan mobile number is 81 90 4073 6761 . regards , joe",0 +"Subject: re : course instructor clare , i regret to inform you that i have to decline your invitation due to prior commitments on the same days . vince kaminski - - - - - original message - - - - - from : clare fitzgerald [ mailto : claref @ marcusevansch . com ] sent : monday , may 07 , 2001 8 : 48 pm to : ' vkamins @ enron . com ' subject : course instructor vince , i am writing in regards to an energy derivatives training course i am developing . i would like to invite you to be an instructor for the course . a preliminary agenda is attached . brett humphreys from risk capital management is teaching on day one , and i was wondering if you would be interested in covering all or part of day two . the topics outlined here can be modified based on your feedback . our training courses are structured for an interactive , classroom - type setting . we limit the audience to 25 people and bring in 2 - 3 instructors to cover the material over the course of two days . i will follow up but please let me know what you think . > thank you , clare fitzgerald director , training courses marcus evans 312 - 540 - 3000 x 6785 - agenda . doc >",0 +"Subject: bearish pressure on prices to resume , with an end to cold weather in sigh here is esai ' s latest natural gas fundwatch . edna o ' connell office manager esai 301 edgewater place , suite 108 wakefield , ma 01880 ( 781 ) 245 - 2036 ( 781 ) 245 - 8706 ednao @ esaibos . com - ngol 1900 . pdf",0 +"Subject: s . tamarchenko teresa , it ' s ok to hire s . tamarchenko as a summer temporary employee . we need all the help we can get this summer . i assume it will be 40 hrs a week , as long as ut conforms with all the external and internal regulations . vince",0 +"Subject: cusip david , the cusip of the bond i have is 694308 efo pgc 8 . 375 % 5 / 1 / 25 lst & ref mortgage bond , ser 92 b . vince",0 +"Subject: wti trading simulation presentation - combinded john , just finished the continous trading case . please see the two attached files . let me know if you want to add more scenarios . happy holidays ! zimin - - - - - - - - - - - - - - - - attachment - - - - - - - - - - - - - - - - - - open - close trading : close - close trading :",0 +"Subject: this hurricane elana ",0 +"Subject: reviewer approval please note that your employees have suggested the following people to complete a feedback form on their behalf . you will need to access the performance management system ( pep ) to either approve or decline these suggested reviewers . once you have approved the suggested reviewers they will be notified and can begin completing the feedback form . your list of employees that have suggested reviewers are listed below : date suggested : may 19 , 2000 feedback due date : jun 16 , 2000 employee name : kollaros , alexios date suggested : may 22 , 2000 feedback due date : jun 16 , 2000 employee name : krishnarao , pinnamaneni v",0 +"Subject: fwd : billing question return - path : received : from rly - yao 2 . mx . aol . com ( rly - yao 2 . mail . aol . com [ 172 . 18 . 144 . 194 ] ) by air - yao 2 . mail . aol . com ( v 67 . 7 ) with esmtp ; mon , 10 jan 2000 06 : 39 : 16 - 0500 received : from abbott . office . aol . com ( abbott . office . aol . com [ 10 . 2 . 96 . 24 ] ) by rly - yao 2 . mx . aol . com ( 8 . 8 . 8 / 8 . 8 . 5 / aol - 4 . 0 . 0 ) with esmtp id gaa 26342 for ; mon , 10 jan 2000 06 : 39 : 16 - 0500 ( est ) received : from sunphol . ops . aol . com ( sunphol . office . aol . com [ 10 . 5 . 4 . 200 ] ) by abbott . office . aol . com with smtp ( 8 . 8 . 6 ( phne _ 14041 ) / 8 . 7 . 1 ) id gaao 8342 for ; mon , 10 jan 2000 06 : 39 : 01 - 0500 ( est ) received : from 0 by sunphol . ops . aol . com ( smi - 8 . 6 / smi - svr 4 ) id gaa 27342 ; mon , 10 jan 2000 06 : 39 : 00 - 0500 message - id : from : to : date : 01 / 10 / 2000 19 : 40 : 07 reply - to : subject : re : billing question dear wincently , we at america online would like to thank you for spending the time to write us . my name is ellen and i appreciate the opportunity to assist you regarding your recent e - mail . after reviewing your account , it shows that the annual prepaid fee was not successfully collected . i suggest that you contact your bank regarding this matter . you may also want to contact our billing department at 1 - 888 - 265 - 8003 or at 1 - 800 - 827 - 6364 toll free should you want to resubmit the bill . if there has been a problem billing your account , america online may send a billing popup screen that states you need to update your billing information at keyword : billing . america online does not request this information be placed anywhere other than at keyword : billing . ( if you ' re unfamiliar with keywords you can start using them by typing ctrl - k . when the keyword "" box "" appears , type the keyword in the space provided and click the go button ) . it is possible that you will receive the popup more than once in a 24 hour period , as we update our database every 24 hours . the message that america online sends states : an important message from aol member services our records indicate that the credit card information on file for your aol account may not be up - to - date . outdated information on your aol account may cause bill processing problems with in some cases could lead to service interruptions ! please take a minute now to update your aol account information . just click on the update billing information button below . this update will only take a few moments and the information you provide will be kept completely confidential . note : if you have recently updated your billing information , please ignore this additional reminder while we process your changes . if you have questions concerning this message , please call member services at 1 - 888 / 265 - 8003 between the hours or 6 : 00 am - 2 : 00 am est seven days a week . update billing information ( text on button appears in white on the actual popup ) we greatly appreciate your america online membership . if you have any further questions , please do not hesitate to contact us again . thank you for using america online . have a wonderful day . : - ) ellen l . customer care consultant the billing department america online , inc . - - - - - - - - - - original message - - - - - - - - - - from : vkaminski @ aol . com to : billingl @ abbott . office . aol . com field 1 = wincenty kaminski field 2 = 10 snowbird field 4 = the woodlands field 5 = texas field 6 = 77381 field 7 = 0057 field 8 = other ( please give details below ) field 9 = on signing on to aol i received the information that billing information may be outdated . i don ' t see why . my annual fee has just been paid , the credit card is in good standing , i did not move . please , let me know what is the problem field 10 = texas field 11 = other - see comments x - rep : 743 x - mailid : 583092 x - queue : 4 x - mailer : swiftmail v 3 . 50",0 +"Subject: my resume hi vince , i spoke with ray again , and he seems to have the background necessary to work with the insurance group here . he is not an actuary , but he can work with data . would you mind calling him on the phone sometime next week ? please let me know what time you would call him , so i can let him know . once you speak with him , then maybe we can bring him down for interviews , if you think it appropriate . his business phone number is 816 889 4417 thanks , vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 07 / 2000 11 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" spudeck , ray e . ms - res "" on 12 / 29 / 99 02 : 24 : 09 pm to : vasant shanbhogue / hou / ect @ ect cc : subject : my resume vasant , i enjoyed our telephone conversation this morning . from our conversation , it sounds like enron is moving out on the cutting edge of risk transfer and insurance finance . in my mind , there seem to be a myriad number of interesting opportunities moving forward . as well , i see a number of issues that would need to be resolved . frankly , i find that quite exciting . i left academics largely because i wanted to move into a more "" front line "" career . while i ' ve enjoyed my work here at the naic , it is still not where i ultimately see myself . i gathered from your comments some concern about my being too senior in the organization . if i am interpreting you correctly , you are concerned about hands on technical work . i enjoy that immensely and some of the strengths i bring to the table are the ability to think creatively about solving financial problems and the the ability to make data tell the underlying story . i look forward to talking to you next week . i just found out that our office building will be closed monday , so i will not be in until tuesday a . m . ray spudeck sr . research associate ( 816 ) 889 - 4417 rspudeck @ naic . org > - resumeres . doc",0 +"Subject: re : greetings hi , mr . kaminski : how are you ? i am back to school for the new semester now . i am in contact with molly magee for my travlling schedule to enron . i got from garp that you chaired a seeesion on energy risk at the new york conference last week . if it is not too much trouble , could you please send a copy of your presentation to me ? i appreciate it . see you soon ! frank",0 +"Subject: fw : eprm article any feedback on the latest article from chris for eprm ? ? please let me know when i can expect some feedback so i can get back to eprm , since they are going to press in a week . ? thanks , julie ? ? - - - - - original message - - - - - from : robin lancaster to : julie sent : wednesday , october 11 , 2000 10 : 52 am subject : eprm article julie i know that chris is away and so siad to contact you with any problems . just want to know the status of the article for this month ? the last e - mail from chris said it was getting a final look over from vince kaminski and i should expect it a few days and that was last thursday . any news , as we ' re due to go to press in a week and a day . robin",0 +"Subject: research and development charges to gpg janice : here is the memo i spoke to you about concerning the charges that need to be reversed . if you have any questions , please call me . shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 16 / 2000 09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kimberly watson @ enron 06 / 15 / 2000 03 : 26 pm to : kent miller / et & s / enron @ enron , martha janousek / et & s / enron @ enron , elaine concklin / et & s / enron @ enron , vera apodaca / et & s / enron @ enron , rod hayslett / fgt / enron @ enron , vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : research and development charges to gpg vince , krishna and i met to discuss the research and development cross charges to gpg for january through june . these charges are based upon a budgeted amount of allocating three resources to the gpg group ( two resources for revenue management and one resource for gpg marketing ) . we have utilized the r & d group some during the first half of the year , but not to the full extent of three resources . vince and krishna have agreed to reverse out some of the charges that were budgeted january through june . we will revisit this issue again toward the end of the year to determine if any adjustments are necessary for july through december . the budgeted amount january through june has been distributed between the nng and tw as follows : research and development budget ( $ 000 ) nng tw et & s january $ 46 . 7 $ 46 . 7 february $ 26 . 1 $ 20 . 4 $ 46 . 5 march $ 35 . 9 $ 10 . 2 $ 46 . 1 april $ 34 . 8 $ 10 . 2 $ 45 . 0 may $ 36 . 4 $ 8 . 8 $ 45 . 2 june $ 36 . 4 $ 8 . 8 $ 45 . 2 $ 274 . 7 out of the $ 274 . 7 budgeted for the first half of the year , $ 199 . 7 is to be reversed back to the research and development department . this reversal will occur in july . vince , vera apodaca ( ext . x 35980 ) will be our contact to help facilitate the reversal of these charges . elaine , the remaining $ 75 . 0 ( $ 274 . 7 - $ 199 . 7 ) is to be allocated with $ 50 . 0 going to the revenue management work order and $ 25 . 0 remaining in o & m . if anyone has any questions or needs additional information , please don ' t hesitate to call me ( x 33098 ) . thanks , kim .",0 +"Subject: new commodity marketplace opportunity mark lay : i shared confidentially with vince kaminski my developing concept of a highly inefficient not - for - profit enterprise with dramatically increasing costs . i believe that a for - profit economic model is possible that should reverse these skyrocketing costs and ultimately lower the commodity thereby having a national , if not , global impact of health care costs . vince seems to also believe in the concepts potential . the ceo of one of the biggest u . s . blood banks has already asked to become involved . i would like involve more people with vision , means and desire to help make this a reality . i would look forward to meeting with you to talk further . al arfsten 713 965 2158",0 +"Subject: re : subscription renewal stephanie , thanks for remembering about me . yes , i want to renew . vince from : stephanie e taylor on 11 / 29 / 2000 01 : 18 pm to : vince j kaminski / hou / ect @ ect cc : subject : subscription renewal dear vince , this is to inform you that your subscription to risk is up for renewal . the regular subscription cost through december , 2001 , is $ 599 . 00 . the cost after the corporate discount is $ 509 . 15 . please let me know if you would like to renew this publication . we will be happy to take care of this for you . if you have any questions , please do not hesitate to call me . sincerely , stephanie e . taylor",0 +"Subject: risk 2000 panel discussion good morning gentlemen : i will go ahead and schedule the conference call for wednesday , may 31 st at 11 : 00 am est ( 10 : 00 cst ) . please let me know the telephone numbers you may be reached at and vince will call you . if you find you cannot do this , please let me know . thanks and have a wonderful weekend . shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 05 / 26 / 2000 08 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 05 / 25 / 2000 03 : 54 pm to : oliver @ risk . co . uk , jefferid @ kochind . com , sbramlet @ utilicorp . com cc : subject : risk 2000 panel discussion hello everyone : vince kaminski would be available for a conference call on wednesday , may 31 at 10 : 00 or 11 : 00 am est . the rest of the day is rather full . please let me know if either time is convenient for you . if not , maybe we could do it on june 1 - he is free most of the day with the exception of 12 : 30 - 2 : 00 est . look forward to hearing from you . thanks ! shirley crenshaw administrative coordinator enron corp . research 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: fwd curves margaret , the forward power and gas price curves , unlike nymex futures prices , are not publicly available and are a closely guarded secret of the trading desks . we have no authority to release them without getting the head of the trading desk involved . vince",0 +"Subject: research dept . move hello everyone : attached is the churn relocation request for some office exchanges within the research group on the 19 th floor . i have grouped them in sets of two which are the exchanges . this is a very rush order . we would appreciate your getting to this as soon as possible - the 15 th of august would be great , if possible . let me know if there is something that you do not understand . thanks ! shirley",0 +"Subject: interim report to gary hickerson for ag trading vince , please find attached the interim report on agricultural commodity trading for gary hickerson . your comments are welcome as we would like to send this to gary as soon as possible . regards , kate ext 3 - 9401",0 +"Subject: re : generation earnings model michelle , i agree with you that we need to run at least 500 iterations . but i did not realize that it took 16 hours to run 100 iterations . helen and i talked earlier about using parallel computing technique to split the algorithm into smaller parts and run the parts separately on different processors , then aggregate the results . this procedure makes better use of computer power and saves time . looks like we have to do it this way now . buying a more powerful computer helps but does not solve the problem . in addition , we might want to re - consider if writing the code in vb is optimal . i was assured at the very beginning that vb runs as fast ( if not faster ) as c , but some re - assurance from it group on this issue is helpful . best , alex from : michelle d cisneros @ ect 04 / 09 / 2001 02 : 52 pm to : alex huang / corp / enron @ enron cc : gary hickerson , danielle romain subject : generation earnings model hi alex - danielle and i were talking to david m . today regarding running the model for purposes of back testing the results . last week we ran calpine using 46 days of historical forward price data at 10 and 100 iterations . the 100 iteration run took 16 hours to run . to run all 20 companies with the 46 days worth of data and at 100 iterations is estimated to take about 28 days . we are concerned that 100 iterations will not be sufficient and will need to be increased to at least 500 iterations . we are thinking that we need to use a server or something much more powerful than the test computer we have been using . do you have any suggestions as to how we can improve the process ? thanks , michelle x 35435 hi alex - danielle and i were talking to david m . today regarding running the model for purposes of back testing the results . last week we ran calpine using 46 days of historical forward price data at 10 and 100 iterations . the 100 iteration run took 16 hours to run . to run all 20 companies with the 46 days worth of data and at 100 iterations is estimated to take about 28 days . we are concerned that 100 iterations will not be sufficient and will need to be increased to at least 500 iterations . we are thinking that we need to use a server or something much more powerful than the test computer we have been using . do you have any suggestions as to how we can improve the process ? thanks , michelle x 35435",0 +"Subject: united way executive solicitation as you know , enron  , s united way executive solicitation is well under way . august 9 th is the target date to achieve 100 % participation and finalize the commitment from our executives and is also the date for the kickoff of the company wide drive . we have a way to go to meet this objective . as of august 3 rd less than 25 % of our executives have turned in their pledge . enron  , s united way goal for the year is $ 2 . 3 million ( before the corporate match ) . ena  , s share of this goal is $ 346 , 500 . while these are aggressive goals , they are very doable , and if everyone contributes their fair share , we can easily surpass these goals . along with focusing on meeting our financial goals , i  , d like to have 100 % participation throughout the organization . this is especially important among our executives . we define "" participation "" as an employee who has completed their pledge on - line and made a contribution , no matter what the level . i am a proud member of the alexis de tocqueville society , which is a contributor of $ 10 , 000 or more and have pledged significantly more this year than last year . enron has 39 members of this society , only 5 of which are from ena . i would like to see this number increase significantly and if you are able , i would like you to consider stepping up to this level . given the fact that enron executives are highly compensated with generous options and bonus program , i encourage each of you to at least become a member of the "" make a difference "" club , which is a contribution of 1 . 2 % of your annual salary . i would also challenge each of you to increase your pledge this year , regardless of your level of giving last year . with the campaign going on - line with electronic pledging , i  , ll need the support of you and your campaigners to increase participation levels across the ena organization and reach our financial goals . whatever your decision regarding the level of your pledge , we need 100 % participation from our executives in order to set a good example for the rest of ena . your contribution to the united way will continue to make a difference in our community . when you give , you change a life right here in our community . please join me in setting the standard for ena by giving generously and getting your pledges in by august 9 th . log - in to system on netscape or explorer - - unitedway . enron . com",0 +"Subject: eol presentation thank you for meeting with the students from rice university ' s jesse h . jones graduate school of management in april . the students greatly appreciated the opportunity to talk with you . your perspective and insights into eol and its competitors helped the students gain much more useful information in their interviews with enymex , houstonstreet . com , ice , dynegydirect , and other energy e - commerce platforms . the students will present the results of their research next monday ( may 7 ) at 4 : 00 p . m . in room 49 cl . we would be delighted if you can attend their presentation . if you cannot attend but would like a copy of their final report , please feel free to let me know and i will make sure you get it . thanks again for your help .",0 +"Subject: collaborative effort vince : i am very enthusiastic about your interest and possible contributions towards a 22 nd century human blood system . i have attached a letter that discusses the endeavor . please note that it has a built - in automatic release in the event you need to terminate . it has a confidentiality statement as well . if it is acceptable , please sign it and fax it back to me at 713 965 2114 at your earliest convenience . al arfsten - kaminski acceptance 011601 . doc",0 +"Subject: nymex chris , here is the analysis you requested . let me know if i can be of any further assistance . charlie weldon",0 +"Subject: good morning vince , attached is a note written by a former phd student of mine . he comments on the calif power problem and i thought you and others at enron might enjoy his insights . john - california is worth 50 basis points . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: it was great talking with you . dave - brochure . doc * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: happy holidays ! i wish you wonderful holidays and a happy happy new year with many blessings ! shirley",0 +"Subject: fw : fyi - more on truck s / d vince : i ' d like to send you some articles on the fleet card business . if you have some time , i ' d like to discuss the meeting that we had with comdata ( which has a 60 % market share of the fleet card business ) . they have some live data that potentially could be very interesting ; however , i ' d like to discuss it with you . shawn what a mess ! ( statistical data included ) john d . schulz 03 / 26 / 2001 traffic world page 25 copyright 2001 gale group inc . all rights reserved . copyright 2001 journal of commerce , inc . truckers still waiting for signs of pent - up freight demand ; earnings shortfalls , layoffs loom if you are waiting for trucking to kick - start the nation ' s economic recovery , pull up a chair and wait awhile . trucking ceos say they haven ' t seen this slow a first quarter in a decade . "" perhaps the weakest first quarter for freight demand since swift became a public company in 1990 , "" phoenix - based swift transportation chairman and ceo jerry moyes said . the first - quarter trucking mantra historically has been this : everybody loses money in january , hopes for a break - even february and earns whatever profit there is in the quarter in march . that formula may not hold this year . gregory l . quesnel , president and ceo of con - way transportation services and emery worldwide parent cnf inc . , said the current slowdown was first detected late in the third quarter last year and has become "" more pronounced in each successive quarter . "" march , he said , has been "" as disappointing as the first two months this year . "" layoffs already are occurring at the major ltl carriers . yellow freight system has idled as many as 1 , 000 teamsters and hundreds of white - collar back - office workers . most large carriers are warning of profit shortfalls that will cause them to miss analysts ' first - quarter estimates . but there are deeper fears , too . marginal players may be forced into bankruptcy . small , family - owned carriers may be unable to exit the industry on their own terms because of the shocking decline in the value of used trucks that is causing some companies to be valued at less than half their worth of just two years ago . swift ' s volume drop - off began with shipments originating on the west coast in january and february and it is continuing in march , moyes said . coupled with reduced demand from the southwest , moyes said swift will not meet analysts ' first - quarter earnings expectations . swift is not alone . "" we hauled less freight in february than february a year ago , "" said bob hammel , executive vice president of pittsburgh - based pitt ohio express , a leading privately held eastern regional ltl carrier . "" the slowdown in manufacturing began in the middle of last year and it was precipitous . nobody anticipated the speed in which manufacturing demand fell off . "" even con - way , the most profitable ltl operation in the past five years , said it would have a decline in first - quarter operating income compared with the year - ago period . con - way ' s tonnage declines were estimated in the "" mid - single - digit "" percentage range . roadway express estimated that its current tonnage levels are running 10 to 11 percent below those a year ago , which will result in an approximately one - half of 1 percent ( 0 . 5 percent ) decline in its operating ratio . ( see sidebar ) pat hanley , overnite transportation ' s senior vice president and chief financial officer , said freight figures were flat in february year over year but rose slightly in march . overnite is the exception to the ltl industry with as many as 24 new terminals scheduled to be opened this year . "" january was pretty good to us , but february was flat . it ' s coming back in march . we ' re probably up in low single digits , 3 to 4 percent . we ' re picking back up . the economy has hurt us . if you had asked us at the start of the year , we ' d have said we ' d be up double - digits , "" hanley said . the national economic picture is "" a big concern , "" hanley said . "" we ' re not seeing pressure on prices , at least not so far . we ' re seeing customers ship 10 pallets a day instead of 20 . the shipment size is coming down . certainly we ' re concerned . we ' ll do o . k . , but not as great as we ' d like . "" forget consumer confidence surveys or the producer pricing index or whatever stars align in federal reserve board chairman alan greenspan ' s world . the genuine leading indicator of any national economic trend is trucking , which is always a first - in , first - out industry in any economic slowdown . to hear trucking industry leaders tell it , get comfortable with beans and franks for dinner . it ' s going to be awhile before it ' s filet mignon time again . shippers see what ' s happening as well but say it ' s still too early in the year for carriers to start cutting rates to fill empty trucks . "" all the carriers we talk with report flat or slightly declining business levels - - definitely slower than early last year , "" said bill huie , assistant vice president of corporate transportation for nch corp . , irving , texas . "" with a couple of exceptions , carriers we talk with have no plans for expansion in the next few months . we are getting feelers about some possible lane adjustments to boost revenue . but generally it appears a little early in the economic downturn for much price movement . "" the national ltl carriers are seeing the same things . "" our business is down pretty substantially for the first quarter , "" said roger dick , spokesman for yellow corp . , parent of yellow freight system and two large regional ltl carriers , jevic transportation , delanco , n . j . , and saia motor freight , duluth , ga . usfreightways corp . , citing what it called the nation ' s "" serious economic slowdown , "" said it expects first - quarter earnings to fall "" very substantially below "" current wall street consensus . extreme weather conditions also contributed to the already weakened operating environment , usf chairman , president and ceo samuel k . skinner added . "" traditionally , the first quarter builds momentum slowly , with march being the strongest month of the period , "" skinner said in a statement . "" this year , the economic slowdown of the fourth quarter of 2000 accelerated in january and february , softening even the normal modest expectations for those two months . "" it ' s not just the ltl industry that ' s hurting . the morgan stanley dean witter truckload freight index continues to show the worst demand - supply relationship since analyst james j . valentine began tracking the data in april 1994 . two events can cause weakness in the index , according to valentine . they are either an abundance of excess trucks on the road or weak freight demand . "" so far in 2001 , we have seen the confluence of both factors , but the fall - off in demand has far outpaced the increase in supply , "" valentine wrote in his most recent "" trucking snapshot "" for early march . year - to - date measurement for truckload demand is down 25 percent year over year , according to valentine ' s index , while supply is up only 7 percent . that would indicate the over capacity was a significant issue last year but was "" masked by the strong economy , "" valentine says . in a more ominous note , valentine believes overcapacity will continue to plague the truckload industry for the next one to two years . only a reaccelerating national economy can bring the demand - supply back in balance for the truckload sector in the near term , valentine predicts . the overproduction of new class 8 trucks from early 1998 through early last year has put too many trucks on the roads and caused supply to back up at manufacturers , wholesalers and other retailers . used trucks have lost on average more than 30 percent of their value over the past 18 months . anecdotally , one used truck dealer , music city truck & equipment , in lavergne , tenn . , is holding a "" two - for - one "" sale on three - to five - year - old class 8 freightliners . you can buy two for around $ 30 , 000 , less than a brand new chevy suburban suv . what that means is a trucker who bought a 1998 class 8 truck for $ 70 , 000 and depreciated half the value over three years has a piece of equipment on the books this year at $ 35 , 000 . but assuming it has lost 30 percent of that value , it may only be worth $ 24 , 500 in actuality . for a carrier with a 100 - truck fleet , that equates to a loss of more than $ 1 million on assets . the glut may last for a while , according to valentine ' s analysis . assuming a three - year trade - in cycle , most of the class 8 tractors in the truckload sector are just now rolling over to the used - truck market . that means that overcapacity will plague the truckload industry for at least the next year . that will result in some of the marginal carriers exiting the business , as did nearly 1 , 900 carriers last year that either closed or declared bankruptcy . "" we can see from indexes , surveys and other information available to us that it is unlikely there will be any significant improvement in march and freight demands will continue to be soft throughout the month . based on all of these factors , we expect usfreightways ' profits for the first quarter to be very substantially less than published analysts ' forecasts , "" skinner said . in addition , severe weather conditions including an earthquake in seattle , rainstorms in california and blizzards in the northeast have added cost and decreased efficiencies , skinner added . expectations at each of usf ' s operating companies have been affected , some more than others . the ltl , logistics , reverse logistics and freight - forwarding units are all showing decreased revenue and volume over a similar period last year , skinner said . further job cuts at usf worldwide , its freight forwarder , would be in the offing as cost controls at the unit would be "" accelerated "" in the wake of the softening economy , skinner said . late last year , skinner said the rebuilding process at usf worldwide would be a two - year process . but the worsening economy has made that rebuilding job harder , he said . "" we are seeing evidence that the slowing economy is , in fact , further impeding progress in this area , "" skinner said . "" during the fourth quarter of 2000 and continuing into the first quarter of 2001 , the company has taken steps to increase cost efficiencies . among these actions are a substantial cutback in capital spending and significant reductions in the labor force . these cost - control efforts will be accelerated to partially counterbalance the damaging impact of the current economic and weather conditions . "" in the 2000 first quarter , usf posted $ 22 . 3 million net income , a 27 percent rise from the $ 17 . 5 million earnings in the 1999 first quarter . at the time , that was usf ' s 15 th straight quarter - over - quarter earnings increase . it came on $ 608 . 2 million revenue , an 18 . 5 percent rise in from the $ 513 . 2 million revenue in the 1999 first quarter . analysts had been estimating usf to earn about $ 3 . 50 a share earnings for 2001 , compared with actual $ 3 . 61 earnings per share for all of last year . in the fourth quarter last year , usf earned $ 23 . 7 million , or 91 cents a share . trucking in a snapshot market what ' s going on msdw [ * ] truckload remains in record - low territory , indicating freight index the worst demand - supply relationship since msdw began tracking the date in april 1994 . diesel prices diesel prices in the first quarter of 2001 have come down 6 % sequentially from 4 qo 0 . however , the average price for the quarter remains 6 % above that of lqo 0 . wti oil opec recently agreed to reduce supply by 5 % and has stated a price objective of $ 25 per barrel . capacity retail sales of class 8 tractors ( new trucks entering the market ) came down in january , but inventory ( trucks that will enter the market at some point ) to sales ratio hit a new high of 3 . 4 months gdp 4 qo 0 gdp increased 1 . 1 % and economists see u . s . recession in 2001 with + 0 . 5 % and - 1 . 4 % gdp forecast for lqol and 2 qol , respectively . retail sales retail sales rose 0 . 7 % in january . while this was better than forecast , the upside was likely the result of excessive clearance sales after a disappointing holiday season . consumer the conference board ' s measure of consumer confidence confidence fell again ( nine points ) in february after registering the largest one - month decline in 10 years in january ( 14 points ) . napm the february napm rose slightly to 41 . 9 . however , it still indicates a contracting manufacturing sector . leading the index of leading economic indicators economic rose 0 . 8 % in january , while indicator msdw had forecast a 0 . 6 % increase . this represents the first rise in four months . stock after a recent pullback , trucking stocks remain perfonnance up year - to - date with tl stocks up 5 % , regional ltl stocks up 9 % and national ltl stocks up 13 % . investor for the week ended february 28 , mutual fund outflows totaled $ 309 million , compared with inflows of $ 2 billion in the prior week . market implications msdw [ * ] truckload negative for all tl carriers . freight index diesel prices the downward trend is positive for all carriers , especially tl carriers , which have greater exposure to fuel than ltl carriers . wti oil negative for all carriers , as $ 25 per barrel is still 25 % higher than the $ 20 per barrel average since 1990 . capacity negative for tl carriers , not a major concern for ltl carriers , which measure capacity by the number of terminals . gdp negative for all carriers . retail sales negative for both ti and ltl carriers . consumer negative for all carriers confidence napm negative for all carriers . leading positive for all carriers . economic indicator stock positive , however , stocks could pull perfonnance back further in the short term as fundamentals catch up . investor negative . source : morgan stanley dean witter research",0 +"Subject: mit team meeting greetings , mit recruiting team ! each of you has been chosen to represent enron for our fall 2000 recruiting efforts at mit university . as part of the team , you will be challenged with choosing the best candidates from sloan ' s graduate school to join our associate program . our first campus event will be on september 21 and interviews will be held on campus november 7 and 8 . i hope you are all able to participate in the exciting process of recruiting young talent . we will be more formally organising ourselves in the next couple of weeks . currently , we are planning to have a brief team meeting in order to make introductions , inform you about the associate program , and discuss the fall recruiting calendar . to that end , please contact me with any questions or comments you may have . the team meeting date is set for september lst at 10 am in room 11 c 2 . please rsvp to me as soon as possible . i look forward to meeting you all soon . sincerely , kristin gandy associate recruiter x 53214",0 +"Subject: mscf speaker series mscf speaker series dear mr . kaminsky , i have included the web page of the list of confirmed speakers , most of them are people i worked with as a fixed income bond options trader . ? having you as a speaker would ? give a chance to the mscf students to gain insight in an area ( commodities ) and in a field ( research ) ? in which many are ? interested . official invitation ? ? ? the first event is next friday ! ? first event : august 11 , 2000 10 : 30 to 12 : 30 a . m . fast lab david hartney & jerry hanweck vice president , futures and option sales ? j . p . morgan n . b . there will be free caps and a copy of the treasury bond basis . priority will be given to mscf students . ? ? ? price and hedging volatility contracts september 1 , 2000 dmitry pugachevsky deutsche bank dmitry pugachesky is a director with otc derivatives research of deutsche bank , where his research is primarily focussed on credit derivatives . prior to joining deutsche bank , dmitry worked for six years with global analytics group of bankers trust . there he developed models for emerging markets , interest rates , and equity derivatives and also participated in actual trading and structuring of interest rate options . he received his phd in applied mathematics from carnegie mellon university specializing in control theory for stochastic processes . he has published several papers on modelling in emerging markets and on valuation for passport options . a measurement framework for bank liquidity risk september 15 , 2000 raymond cote vice president , finrad inc . nbc raymond cote is vice president , financial engineering at finrad inc . , a montreal - based consulting firm offering financial management solutions that combine advisory and systems development services to & corporations and financial institutions . abstract : liquidity risk , as opposed to credit and market risks , has received little attention in professional or academic journals . we argue that analyzing bank liquidity risk can be viewed as a variation of credit risk analysis . after introducing some concepts and definitions , the presentation defines a framework allowing to measure a bank ' s structural liquidity risk . it then shows that combining the framework with modern credit risk measurement tools leads to a liquidity risk var measure . the presentation then offers concluding comments on the integration of the liquidity risk measurement framework within enterprise - wide risk management . swaps , spreads and bonds september 29 , 2000 chris leonard senior trader fixed income arbitrage ? october 27 , 2000 chuck mchugh vice president , nbc - new york fund management and market efficiency november 10 , 2000 andrea lee portfolio manager , freiss associates pierre - philippe ste - marie - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - http : / / pstemarie . homestead . com",0 +"Subject: re : our workshop helyette , sorry for not getting back to you earlier . my schedule was quite crazy over the last few days . i shall be in london on sunday meeting my group for dinner at 7 : 30 . can i call you around 6 : 00 - 6 : 30 ? vince p . s . you can send a reply to my aol address . vince gemanix @ aol . com on 09 / 29 / 2000 11 : 27 : 51 am to : vince . j . kaminski @ enron . com cc : subject : our workshop dear vince , our workshop has already 20 registered delegates , which is very good given the french power situation . moreover , french people tend to be fairly educated and we should coordinate a little bit . i am leaving in 30 minutes for 2 days . can we talk on sunday at 7 or 8 p . m my time ? my 2 numbers will be 33 1 46040110 or 33 6 08074200 alex would agree to speak for a while as we did in francfort . karla sent me a proposal for the escrow problem . i had a further question in your direction regarding "" system support "" . karla , as you know , would kindly like to wrap up the contract before moving to a new department and i will do my very best to satisfy her wish and your feasible requests . kind regards helyette",0 +"Subject: vince and vasant : here is a brief summary of my meeting with chris germany , capacity trader at the east desk , related to gas transmission : typically , pipelines lease capacity billed on a monthly basis . an example might be the pipeline between south texas and brooklyn , where you might pay $ 12 . 00 per month per 10 , 000 decatherms of capacity ( $ 0 . 40 per day ) , a fixed payment . variable charges are 6 % for fuel costs ( "" shrinkage "" ) and 6 . 5 % for overhead expenses . a gas trader might call south texas and be quoted a delivery price tomorrow of nymex - $ 0 . 10 ( "" basis "" ) , and might call brooklyn and be quoted a delivered price of nymex + $ 0 . 25 . the trader ' s spread is $ 0 . 35 , and variable costs of transmission are $ 0 . 125 , so the trader would offer the leaseholder of capacity up to $ 0 . 225 for firm capacity tomorrow . as for the distinction betweem firm and interruptible , the leaseholders have an excellent knowledge of the firm - equivalent of interruptible capacity . also , many pipelines don ' t discount firm capacity from the tariff maximum ( "" it ' s not worth their time to haggle "" ) ( there is a further issue of "" secondary markets "" not important to the model yet ) . for south texas and brooklyn , there are several different routes the gas can physically take ( pipelines of enron , texas eastern , etc ) . and , once the trade is in the system traders can cover the ( enron ) positions on each end of the pipeline , in so doing freeing up the capacity for other contracts . clayton",0 +"Subject: re : ena analysts and associates i shall be attending the bi - monthly meetings . we always have a significant number of associates rotating through my group and supporting different units of enron . vince kaminski enron north america corp . from : david w delainey 07 / 26 / 2000 10 : 17 am sent by : kay chapman to : sally beck / hou / ect @ ect , tim belden / hou / ect @ ect , raymond bowen / hou / ect @ ect , christopher f calger / pdx / ect @ ect , wes colwell / hou / ect @ ect , janet r dietrich / hou / ect @ ect , jeff donahue / hou / ect @ ect , w david duran / hou / ect @ ect , mark e haedicke / hou / ect @ ect , gary hickerson / hou / ect @ ect , mike jakubik / hou / ect @ ect , scott josey / corp / enron @ enron , john j lavorato / corp / enron @ enron , rodney malcolm / hou / ect @ ect , george mcclellan / hou / ect @ ect , rob milnthorp / cal / ect @ ect , julia murray / hou / ect @ ect , jere c overdyke / hou / ect @ ect , david oxley / hou / ect @ ect , kevin m presto / hou / ect @ ect , brian redmond / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , c john thompson / corp / enron @ enron , max yzaguirre / na / enron @ enron , james a ajello / hou / ect @ ect , edward ondarza / hou / ect @ ect , vince j kaminski / hou / ect @ ect , beth perlman / hou / ect @ ect , mark frevert / na / enron @ enron , jean mrha / na / enron @ enron , julie a gomez / hou / ect @ ect cc : patti thompson / hou / ect @ ect , catherine dumont / pdx / ect @ ect , marsha schiller / hou / ect @ ect , mollie gustafson / pdx / ect @ ect , shirley tijerina / corp / enron @ enron , christy chapman / hou / ect @ ect , tina rode / hou / ect @ ect , janette elbertson / hou / ect @ ect , stella l ely / hou / ect @ ect , nicole mayer / hou / ect @ ect , tonai lehr / corp / enron @ enron , kimberly hillis / hou / ect @ ect , ana alcantara / hou / ect @ ect , yolanda ford / hou / ect @ ect , carolyn george / corp / enron @ enron , donna baker / hou / ect @ ect , rhonna palmer / hou / ect @ ect , felicia doan / hou / ect @ ect , barbara lewis / hou / ect @ ect , pilar cerezo / na / enron @ enron , terrellyn parker / hou / ect @ ect , dusty warren paez / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , nicki daw / na / enron @ enron , cherylene r westbrook / hou / ect @ ect , kay chapman / hou / ect @ ect , lillian carroll / hou / ect @ ect , venita coleman / corp / enron @ enron , melissa jones / na / enron @ enron ( bcc : ted c bland / hou / ect ) subject : ena analysts and associates i have just received word from ted bland that no one has responded to this memo . please re - read the following memo and respond to ted by july 31 , 2000 . thanks in advance for your prompt attention to this matter . as you know the ena otc is actively working with the analyst and associate program to develop greater talent flow into ena . we are presently working on a number of initiatives to improve how this is working and significantly improve communication flow and responsiveness . however in this regard we also need you to help make sure we have clear lines of communication within ena regarding a & a resource levels , performance , rotations and retention efforts . in this regard we would like for each of you to take the lead for your groups needs and ensure that any requests , questions or concerns about a & a ' s in your area are passed through you to either ted bland ( ena recuitment team lead - x 35275 ) or jana giovannani ( ena liaison from the aa program - x 39233 ) or myself . it is important that we are discerning about what we do with our a & a resources and plan carefully and accurately for our future needs , in this regard we need for you personally ( or a senior member of your team who you may optionally delegate this task to ) will take the time to review any a & a resource requests from your team before passing them onto us . in addition , given the importance of these resources , we will be inviting you to a regular bi - monthly meeting to discuss ena a & a matters . we will confirm the first date in due course . in the meantime if you would like to volunteer another senior member of your team to assume this reponsibility please supply their name as soon as possible . please call with any questions .",0 +"Subject: super saturday - dinner participation not needed please see the attached memo . we will not be needing you to participate in the dinner friday , december 8 th . thanks so much for volunteering ! ! !",0 +"Subject: preface for book vince , ? hope you are well . ? we spoke a while ago about who should write the preface for the book , and you kindly offered that you would provide this . ? is this still possible ? ? we realise that you are extremely busy , so chris and les went ahead and wrote something , which is below , and if you want to review , change or re - write ? the preface , that would be very appreciated . ? let me know what your thoughts are . ? thanks , julie ( we ' re getting close ) ? ? preface ? ? ? one of our main objectives in writing energy derivatives : pricing and risk management has been to bring together as many of the various approaches for the pricing and risk management energy derivatives as possible , to discuss in - depth the models , and to show how they relate to each other . ? in this way we hope to help the reader to analyse the different models , price a wide range of energy derivatives , or to build a risk management system which uses a consistent modelling framework . ? we believe that for practitioners this last point is very important and we continue to stress in our articles and presentations the dangers of having flawed risk management and giving arbitrage opportunities to your competitors by using ad - hoc and inconsistent models for different instruments and markets ( see also others who propose consistent models ? ) . ? however , it is not our wish to concentrate on one particular model or models , at the exclusion of the others because we believe that the choice should rest with the user ( although it will probably be clear from our discussions the model ( s ) we prefer ) . ? we therefore try and give as clear account as possible of the advantage and disadvantages of all the models so that the reader can make an informed choice as to the models which best suit their needs . ? in order to meet our objectives the book is divided into 11 chapters . ? in chapter 1 we give an overview of the fundamental principals needed to model and price energy derivatives which will underpin the remainder of the book . ? in addition to introducing the techniques that underlie the black - scholes modelling framework we outline the numerical techniques of trinomial trees and monte carlo simulation for derivative pricing , which are used throughout the book . ? in chapter 2 we discuss the analysis of spot energy prices . ? as well as analysing empirical price movements we propose a number of processes that can be used to model the prices . ? we look at the well - know process of geometric brownian motion as well as mean reversion , stochastic volatility and jump processes , discussing each and showing how they can be simulated and their parameters estimated . ? chapter 3 , written by vince kaminski , grant masson and ronnie chahal of enron corp . , discusses volatility estimation in energy commodity markets . ? this chapter builds on the previous one . ? it examines in detail the methods , merits and pitfalls of the volatility estimation process assuming different pricing models introduced in chapter 2 . ? examples from crude , gas , and electricity markets are used to illustrate the technical and interpretative aspects of calculating volatility . ? chapter 4 examines forward curves in the energy markets . ? although such curves are well understood and straight - forward in the most financial markets , the difficulty of storage in many energy markets leads to less well defined curves . ? in this chapter we describe forward price bounds for energy prices and the building of forward curves from market instruments . ? we outline the three main approaches which have been applied to building forward curves in energy markets ; the arbitrage approach , the econometric approach , and deriving analytical values by modelling underlying stochastic factors . ? chapter 5 presents an overview of structures found in the energy derivative markets and discusses their uses . ? examples of products analysed in this chapter include a variety of swaps , caps , floors and collars , as well as energy swaptions , compound options , asian options , barrier options , lookback options , and ladder options . ? chapter 6 investigates single and multi - factor models of the energy spot price and the pricing of some standard energy derivatives . ? closed form solutions for forward prices , forward volatilities , and european option prices both on the spot and forwards are derived and presented for all the models in this chapter including a three factor , stochastic convenience yield and interest rate model . ? chapter 7 shows how the prices of path dependent and american style options can be evaluated for the models in chapter 6 . ? simulation schemes are developed for the evaluation of european style options and applied to a variety of path dependent options . ? in order to price options which incorporate early exercise opportunities , a trinomial tree scheme is developed . ? this tree is built to be consistent with the observed forward curve and can be used to price exotic as well as standard european and american style options . ? chapter 8 describes a methodology for valuing energy options based on modelling the whole of the market observed forward curve . ? the approach results in a multi - factor model that is able to realistically capture the evolution of a wide range of energy forward curves . ? the user defined volatility structures can be of an extremely general form . ? closed - form solutions are developed for pricing standard european options , and efficient monte carlo schemes are presented for pricing exotic options . ? the chapter closes with a discussion of the valuation of american style options . ? chapter 9 focuses on the risk management of energy derivative positions . ? in this chapter we discuss the management of price risk for institutions that trade options or other derivatives and who are then faced with the problem of managing the risk through time . ? we begin with delta hedging a portfolio containing derivatives and look at extensions to gamma hedging  ) illustrating the techniques using both spot and forward curve models . ? the general model presented in chapter 8 is ideally suited to multi - factor hedging of a portfolio of energy derivatives and this is also discussed . ? chapter 10 examines the key risk management concept of value at risk ( var ) applied to portfolios containing energy derivative products . ? after discussing the concept of the measure , we look at how the key inputs ( volatilities , covariances , correlations , etc ) can be estimated . ? we then compare the fours major methodologies for computing var ; delta , delta - gamma , historical simulation and monte - carlo simulation , applying each to the same portfolio of energy options . ? in this chapter we also look at testing the var estimates for various underlying energy market variables . ? finally , in chapter 11 we review modelling approaches to credit risk . ? we look in detail at two quite different approaches , creditmetrics ( j . p . morgan ( 1997 ) ) and creditrisk + ( credit suisse financial products ( 1997 ) ) for which detailed information is publicly available . ? together these provide an extensive set of tools with which to measure credit risk . ? we present numerical examples of applying these techniques to energy derivatives . ? before we begin we stress that the models and methods we present in this book are tools which should be used with the benefit of an understanding of how both the  + tool  , and the market works . ? the techniques we describe are certainly not  & magic wands  8 which can be waved at data and risk management problems to provide instant and perfect solutions . ? to quote from the riskmetrics technical document  &  ( no amount of sophisticated analytics will replace experience and professional judgement in managing risk .  8 . ? however , the right tools , correctly used make the job a lot easier !",0 +"Subject: re : sevil yamen anne , thanks . vince from : anne labbe / enron @ enronxgate on 04 / 20 / 2001 01 : 31 pm to : vince j kaminski / hou / ect @ ect cc : subject : sevil yamen good news , i finally received the memo from legal that accompanies project bonuses . i have left sevil a voice mail to contact me at her earliest convenience . sevil should receive this payment on april 30 th .",0 +"Subject: packet analysis software hi stinson , as per our discussion , here is the e - mail from jim on the subject . i convinced jim that this type of modeling effort is our gig and he completely agrees . as per jim ' s suggestion , he and i will talk more on the product while we are in denver . i suspect that we will arrange for the vendor to come to houston and do a presentation on the product and install the product on our machines . as for additional development we should get john bloomer and jim together in a meeting and hash out the requirements from john bloomer ' s perspective . using vince ' s analogy , this tool allows us to deternime the size of the cargo space needed for fedex - like delivery ( our streaming media products ) . whereas , the optical light path switching ( ds - 3 , oc - 3 , oc - 12 and oc - 48 ) based trading will reserve the underlying airline routes , etc . so the packet based stuff is looking at the required capacity from ip layer ( network and transport : level 3 and 4 ) requirements . the optical light path is level 1 & 2 based requirements . that is this tool will allow john bloomer to size ( actually we will do the analysis for him ) the capacity requirement that he would need for the products that he is developing . that is my take on the difference , we ' ll find out otherwise . once i finish off this discussion with jim in denver , i suggest putting martin lin on the job to find out more about the product and do the leg work to arrange for vendor demo and software installation . martin will keep samer and chonawee updated on the information that he gathers . martin please start checking on the web about this company and other similiar produts . i will get you contact number for ebs and the vendor as soon as jim provides them to me . avici uses this product . avici is a next generation router vendor that is selling terabit routers . ebs is an investor in that company . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 08 / 00 03 : 47 pm - - - - - jim irvine 03 / 08 / 00 12 : 33 pm to : ravi thuraisingham / enron communications @ enron communications cc : subject : ravi attached is an overview of what opnet technologies itdg and modeler ( v ) 7 . 0 offers out of the box . as previously mentioned , we have purchased this s / w and are discussing potential co - development of module ( s ) currently not supported . my belief is we can spin up a couple of your studs and develop our own stuff faster @ a fraction of the cost . avici , used opnet to develop a circuit emulation model for their tsr and cisco used opnet for mpls and dpt modeling . these guys are willing brides at this point . we just need to clearly identify their role in the network performance management and modeling space . we will have to talk more in denver . my flight arrives @ 10 : 00 ish and i am told that rental cars are scarce . jim - - - - - forwarded by jim irvine / enron communications on 03 / 08 / 00 10 : 18 am - - - - - mvaghedi @ mil 3 . com 01 / 12 / 00 02 : 10 pm to : jim irvine / enron communications @ enron communications cc : subject : - version 7 . 0 capability list - final - vl . 3 . 00 . doc mani vaghedi mil 3 , inc . itdg sales engineer tel . ( 408 ) 562 - 5757 ext . 3200 fax : ( 408 ) 562 - 5758 mvaghedi @ mil 3 . com http : / / www . mil 3 . com * * * * * * * * * * * * * * * * * * * * * * please attend the industry ' s most informative decision support seminar register today for free seminar at www . mil 3 . com / seminars . html * * * * * * * * * * * * * * * * * * * * * * - att 2 . htm",0 +"Subject: pserc denver meeting vince , the pserc meeting lance and i went to was both interesting and boring . pserc has 11 school members and 30 industry members . its research program consists of three stems : markets , transmission and distribution , and systems . ( enron ' s interests probably lie mainly in the first stem . ) in morning of the first day , researchers from universities presented their project proposals . i found some of them quite interesting . for example , shmuel oren , fernando alvarado , tim mount ( of cornell ) propose to study "" market redesign : incorporating the lessons learned from actual experiences for enhancing market design , "" shijie deng , s . oren et al propose to study "" power asset valuation model in a market - based and reliability - constrained electric power system . "" the first got funded but the second did not . in the same afternoon industry and academic separated to have their own discussion . i went to the academic discussion and lance the industry one . i hope my presence there did not make things worse , for the discussion revealed a lot of organizational chaos and confusion . the proposal screen process got a lot of heat from participants . the proposal process goes as follows : researchers first write a short proposal to appropriate stem committee ( no industry participantion , it seems to me ) , each committee then ranks the proposal and selects the top 3 or 4 . the selected proposals are then expanded to be present to the industry . industry then gets to vote which proposals get funded . however , some researchers were very unhappy about the initial ranking and selection process . there were accusation of self - ranking , communication between stem committee and member schools breaking down , and so on . some were even asking for some sort of assurance that the project will be funded even before wrting it ( the arguement was "" then it was a waste of our time to write proposals "" , which i found quite amusing ) . all in all , i found the process was not taken seriously enough by university researchers . pserc has been established for 5 years now and it still does not have a proper proposal screen process , which is hard to believe . also , the communication among university researchers , between stem committee and member schools , and most importantly , between researchers and industry , are not smooth as all . since the proposals are voted by 30 or so industry members , the "" right "" projects may not get funded . too many participants also make the decision process very indecisive and quite painful to watch ( lance can comment on this better ) . they also wanted to spread the fund among all schools which made the voting a less authoritive . i believe enron will not get much returns from join pserc ( price tag is $ 40 , 000 per company per year ) . if we find some projects interesting , we can sponsor the schools in the form of summer interns , the schools claim that most of the fund goes to support students anyway . alex",0 +"Subject: great divide lodge vince and shirley : i have spoken with steve collins the national sales manager at great divide lodge . he has agreed to honor our $ 6000 . 00 credit as long as we fulfill the following two requirements : confirm reservations prior to july 31 hold event prior to thanksgiving the appropriate contact number is 970 . 453 . 3152 steven collins thanks for working with us on that . paula",0 +"Subject: re : interview with research dept . candidate rabi s . de , friday , august 11 , 2000 i apologize for not putting the date of this interview . for everyone but tanya and paulo , the interview time is already entered on your calendars for august 11 , 2000 . again , sorry for the oversite . - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 08 / 01 / 2000 09 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner @ ect 08 / 01 / 2000 09 : 12 am to : anita dupont / na / enron @ enron cc : subject : re : interview with research dept . candidate rabi s . de on which day are the interviews ? anita dupont @ enron 07 / 31 / 2000 03 : 49 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , paulo issler / hou / ect @ ect cc : subject : interview with research dept . candidate rabi s . de the following interview schedule has been set up for rabi s . de by sean grady , hr staffing : 9 : 00 - 9 : 30 am vince kaminiski 9 : 30 - 10 : 00 am stinson gibner 10 : 00 - 10 : 30 am grant masson 10 : 30 - 11 : 00 am krishna krishnarao 11 : 00 - 11 : 30 am tanya tamarchenko 11 : 30 - 1 : 00 pm lunch with tanya tamarchenko and zimin lu 1 : 00 - 1 : 30 pm zimin lu 1 : 30 - 2 : 00 pm vasant shanbhogue 2 : 00 - 2 : 30 pm paulo issler please call me if you have any questions or if a conflict develops and you need to change your interview time . thanks . anita",0 +"Subject: charles shen vince : update on charles shen : he called me this morning to verify that we had received his faxed paystub . i told him that we had , and that i had relayed the information to you , but hadn ' t heard back from you yet . he is definitely interested in working for enron , and ended up saying that he didn ' t mean to be demanding and really only wanted a package a little better than the one he has at williams . i told him that i would follow up with you to see where you wanted to go from here , and that i would get back to him as soon as i received some instructions from you . please let me know if you would like me to do anything else or find out any more information from him . molly",0 +"Subject: siam conference dear mr . kaminski , i was one of the participants of the siam conference which was held last week - end , and i have very much enjoyed your presentation . at the end of the session , i was hoping to talk to you , but unfortunately you were already gone . you said that if we were interested , you could e - mail a copy of your talk . i would appreciate if you could send a copy to this e - mail address . i am a mathematics ph . d . student at texas a & m university and i will be graduating this august . i am very much interested in working in the modeling of energy markets . can you please tell me whom i should send my resume , and who i should contact in your company about a possible position in your research group . thank you for your time . sincerely g . aysu bilgin texas a & m university department of mathematics get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: re : meeting on feb 8 , 2001 fyi . this is the list of the petronas executives visiting enron on feb 8 . i have invited them to lunch . would you like to join me for lunch . i would like to propose a short courtesy meeting at 10 with jeff / john ( 5 - 10 minutes ) , followed by rac / research presentation till 11 : 30 . vince p . s . i shall reserve a conference room for this meeting - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 08 / 2001 10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - azminab @ petronas . com . my on 01 / 07 / 2001 06 : 37 : 33 pm to : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com , khairuddinbmjaafar @ petronas . com . my cc : subject : re : meeting on feb 8 , 2001 dear kaminski 4 members from corporate risk management unit 1 . iqbal abdullah - general manager 2 . nur azmin abu bakar - head , risk assessment & controls 3 . zulkifli a rahim - head , risk measurement & systems 4 . adnan adams - head , special projects regards vince . j . kaminski @ enron . com on 03 / 01 / 2001 09 : 45 : 02 pm to : azminab @ petronas . com . my cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com subject : re : meeting on feb 8 , 2001 dear mr . nur azmin abu bakar , thanks for your prompt reply . please , let us know how many members of your team will visit enron . i look forward to our meeting on february 8 . vince kaminski azminab @ petronas . com . my on 01 / 02 / 2001 06 : 38 : 33 pm to : vince . j . kaminski @ enron . com , khairuddinbmjaafar @ petronas . com . my , shirley . crenshaw @ enron . com cc : subject : re : meeting on feb 8 , 2001 dear kaminski , happy new year and thank you for the reply . we are honored to have lunch with you and your team however we have another appointment at 2 . 30 p . m . regards vince . j . kaminski @ enron . com on 03 / 01 / 2001 07 : 38 : 19 am to : azminab @ petronas . com . my cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com subject : meeting on feb 8 , 2001 dear sir , i would like to apologize for the delay in responding to your fax . i was on vacation for the last few days . i shall be honored to meet your delegation on thursday , february 8 at 10 : 00 a . m . please , let me know if you will be free for lunch after the meeting . vince kaminski",0 +"Subject: re : vince / stinson , the note below gives us the authorization to proceed . i have received no comments from wade on my signing , but i have his approval for the study , so i will proceed on that basis . since we do not have any format of confidentiality agreement from jim , let us use the one signed by the legal team for the japan study by henwood . in this reference , could you ( stinson ) get this from either heather mitchell , or john viverito ( who is the lawyer involved with japan , reporting to alan aronowitz ) . we could use that as template and proceed before friday on that basis . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 03 / 2001 10 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - james a hughes 01 / 03 / 2001 11 : 08 pm to : sandeep kohli / enron _ development @ enron _ development cc : wade cline / enron _ development @ enron _ development subject : re : i have already given authorization to proceed . however , i did not know we were providing the data . that is the thing i am looking for most - the raw information on what the grid and stack looks like . we need this asap . how do we get this done quickly ? jim sandeep kohli 01 / 02 / 2001 10 : 55 pm to : wade cline / enron _ development @ enron _ development , james a cc : subject : wade / jim , my apologies for missing the conference calls yesterday and today . i was not able to download my messages in time for the calls , but i will be on going forward . while i am still on vacation , i have been in conversation with vince and the research group following up on the henwood study we had spoken about . we have received a formal proposal from henwood , and they are wanting authorization to go forward . the study will get us the despatch forecasts for the next 8 - 10 years , and will deliver the results by january end , per henwood . vince and i have reviewed the proposal , and feel that we should proceed . we will be fine tuning the assignment as we go forward . the big issue there is the data for the model / s , and at this point henwood is relying more on us to provide the data . we spoke to henwood yesterday , and i will be on another call with them on friday . i need your confirmation on the following : that i have your approval to proceed ahead with the study that the study shall be paid for by dpc , and if so , is it ok for me to sign the authorization being sent by henwood we will need a formal confidentiality agreement to be in place by tomorrow ( jim - if you have a particular format , please let me know ) i am leaving the issue of hourly rates and cost to the research group since they have more experience in dealing with groups like henwood . they feel the costs are reasonable , and i will leave it at that . we will need to collect data from the different sources we have in india , and i have proposed that there be a formal session in india between henwood and the ene team in india in the week between 10 th and 15 th . this is important to insure that there are no disconnects , and that there are no illusions on the quality of the data that will be available . it will also help us formalize the scope and better define the issues . in order to meet the deadlines , the data will have to be in place by january 15 th . i will call jim later today ( i had called but you were on a call ) . i am here till the weekend when i leave for india . please let me know if this arrangement is ok . regards , sandeep .",0 +"Subject: rtp project thanks vince . i think the right person is anoush farhangi . jh john henderson - - - - - forwarded by john henderson / hou / newpower on 03 / 19 / 2001 10 : 32 am - - - - - vince j kaminski @ ect 03 / 19 / 2001 08 : 12 am to : john henderson / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : rtp project john and krishna , i am sending you an outline of a conference at stanford on topics related to demand - side pricing and management in the power markets . please , let me know if you are personally interested and who else in your respective organizations would like to attend . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 19 / 2001 08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - hill huntington on 03 / 15 / 2001 05 : 26 : 55 pm to : vkamins @ enron . com cc : subject : rtp project vince , targetted conference date is th - f june 21 - 22 at stanford . enclosed in the recent revision to what i sent before . great to meet you , hill - retail notes . rtf hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: re : a very good candidate ok , will get that started . we ' ll let you know when rodney can be available for a trip to houston and will follow up with you to obtain the complete interviewer list . - elizabeth vince j kaminski 03 / 01 / 2000 09 : 31 am to : elizabeth grant / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : a very good candidate elizabeth , we got a very good candidate we would like to bring over for an interview . he came through an agency on london ( the address is on the resumes ) . the contact at the agency is anthony regamey . please , contact them to arrange an interview in houston . please , include me , stinson gibner , vasant shanbhogue , tom gros ( ebs ) , jean mrha , brad blesie . we shall think about some other names later . vince",0 +"Subject: houston trip hi jaideep ! my first suggestion is that you come to houston as scheduled ( and arranged with wharton nearly 3 weeks ago ) . alternatively , rely on your tiger teammates to gather information necessary to respond to the project . should circumstances lead you to decide not to come for this trip , please return the ticket issued to you . should it make sense for you to visit enron some time in the future , we can discuss arrangements at that time . hope to see you soon ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 18 / 2001 01 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jaideep singh "" on 01 / 17 / 2001 08 : 58 : 51 pm to : cc : subject : houston trip hello christie , thank you for organizing the wharton trip to enron . unfortunately , the flight setup for tomorrow is way too early for me as i ' ll have to miss over 4 hours of classes , which i cannot afford to do . i tried changing the time with continental and there latest flight leaves at 6 pm - which does not work for me ( smack in the middle of my 3 hour class ) thus the dilemma that i find myself in is the following : a . try a different flight as i can make any flight after 7 : 30 pm ( however , i have no control over reservations / budget etc ) b . as it is possible to delay travel upto 1 year , use this ticket to come some other time sorry for this but i just saw the bookings today . any suggestions ? thanks , jaideep",0 +"Subject: marketpoint license agreement john / vince : i really enjoyed the meeting the other day with you and a broad cross section of your people . thank you very much for setting it up , and thank you for giving me the opportunity to speak with your people . as i mentioned to john , i am sending you the license paperwork for marketpoint . i have attached our standard license agreement for your consideration . as i mentioned , the license agreement covers the entire bundled product , which includes ? north american gas , short and long term ? north american electricity , short and long term ? world gas ? western european gas ? world oil we are just finishing porting the world oil , world gas , and western european gas models over from our old ( now obsolete ) software system into marketpoint , so they will not be fully tested and complete for a couple of months . however , the gas and electricity models for north america are presently complete and tested . that should allow us to give you an attractive price before the full worldwide toolkit is available throughout your worldwide business . as i understood it , you will want the gas modeling capability first and will want to defer decisions on electric or other capability . as i mentioned at the meeting , we are prepared to offer that for approximately the fully bundled price . as you read the license agreement , you will see that the software licenses for $ 100 , 000 annually , the gas data for $ 5 , 000 , and the electric data for $ 10 , 000 . marketpoint will agree to license you the gas model plus the data for the software license plus the data license for a total of $ 55 , 000 annually . this is just under the fully bundled price . i think that is consistent with the discussions at our meeting , and from marketpoint  , s perspective would provide a great basis to move forward together with enron . if or when enron ever desires to  & scale up  8 to another model or model ( s ) from the marketpoint portfolio , we will simply scale you up to the entire license agreement . this will allow you to decouple the gas decision from any other decisions you might make . ( i will be glad to put this additional pricing provision into the agreement if you decide to move forward . ) i felt i was able to communicate the philosophy , scope , and operation of our approach during the meeting and to deliver you much of the information you might need to evaluate whether marketpoint meets your needs . i thought you were able to see the depth and sophistication of the product yet at the same time its simplicity and effectiveness . i thought you were able to see the benefits of the marketpoint dimension of economic equilibrium as a complement and supplement to other approaches you will assuredly use . i would be interested in your impressions and those of your colleagues . i look forward to your response and to moving ahead together . we view you as a very important prospective customer and client and will work with you to earn and secure your business . if you decide to license marketpoint , we can arrange to transfer and mount marketpoint and the short term narg model ( which is the model we suggest you begin with ) and travel to houston to deliver our 1 day training seminar . our clients are usually very fluent after that 1 day training seminar . thereafter , we would want you to work with the short term narg model for a few weeks while you get up to speed , very fluent , and very comfortable before you take delivery of the longer term version of narg several weeks later . thanks again , and all the best . if there is some item from the meeting that i might have forgotten to send , please remind me . my notes don ' t show anything , but i was speaking a lot rather than writing notes during the meeting and might have overlooked something someone wanted . dale nesbitt president marketpoint inc . 27121 adonna ct . los altos hills , ca 94022 ( 650 ) 218 - 3069 dale . nesbitt @ marketpointinc . com - license . doc",0 +"Subject: mgmt 656 here is your latest roster . we are up - to - date on all changes but , of course , the students may still drop / add up to the second week of module 5 . when the time comes , please check your roster carefully and make sure that the people on the list really are attending your course . mistakes happen so i just would like to make sure we have a correct record . as always , let me know if you would like the excel folder with e - mail addresses . i don ' t send them at the same time to avoid overwhelming our e - mail system . thanks for your help ! - pam ( 713 - 348 - 6223 ) - 656 . doc",0 +"Subject: mit financial engineering pro - seminar vince , i have received a call from mit asking if enron would be interested in sponsoring a financial engineering pro - seminar . this means that enron would propose a problem that would have its solution developed by students in the financial engineering track . these students would present the findings in the end . i think that enron has already sponsored a financial engineering pro - seminar . i remember something about real options at the time i was at school . please , let me know if enron has the interest , specifically the research . talking here at the weather desk , mark tawney expressed interest . if you agree , we ( the weather desk ) could co - sponsor this pro - seminar with the research . the idea , then , would be to propose a problem connected to weather trading . please , give me your thoughts about this issue . thanks , claudio",0 +"Subject: co - integration zimin , andrea reed asked for our help in looking for end - users of steel which might be used to take a commodity hedge position . she will work on identifying potential equities or indices which might be used , and then we will analyze them for correlation or co - integration with steel prices . andrea should be contacting you next week regarding the project . hector has done co - integration analysis in the past and has the tools to do this project . thanks , stinson anrdrea : we will also need you to identify which steel prices / indices should be used in this analysis .",0 +"Subject: gas transportation meeting - 8 / 16 / 00 hello everyone : a meeting has been scheduled between the addressees for wednesday , august 16 th at 4 : 00 pm in ebl 938 . if you have any questions , please let me know . regards , shirley",0 +"Subject: presentation at ut vince , i appreciate your response to my request for you to speak to my class on real options . i thought you might enjoy the following exchange of emails that occurred yesterday . perhaps some of these issues could be addressed in your talk . jim - - - - - original message - - - - - from : sheridan titman sent : friday , march 31 , 2000 9 : 11 am to : jim dyer subject : re : real options course feedback jim : your student has raised some difficult questions . i would recommend ehud , but i thought that the finance people have the answers in cases with complete markets and that we rely on the decision science people for cases with incomplete markets . if it would help , i can come in at 6 pm after my class in a couple of weeks . sheridan sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu - - - - - original message - - - - - from : jim dyer sent : thursday , march 30 , 2000 4 : 37 pm to : sheridan titman subject : re : real options course feedback sheridan , which of your classes do you want to miss ? just kidding . actually you probably told me that before . can you suggest someone else who would be a good choice to discuss the use of option theory in the context of incomplete markets , and to address some of the types of questions raised in the note from the student ? jim - - - - - original message - - - - - from : sheridan titman sent : thursday , march 30 , 2000 5 : 58 pm to : jim dyer subject : re : real options course feedback jim : i teach at the same time as you do . sheridan sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu - - - - - original message - - - - - from : jim dyer sent : thursday , march 30 , 2000 11 : 32 am to : sheridan titman subject : fw : real options course feedback sheridan , see the comments below . i don ' t mean to put you on the spot , and have not announced anything in class , but i am hoping that you could visit my class for about an hour one thursday afternoon to discuss your views regarding applications of option pricing concepts to "" real options "" . as a reminder , i ' ve attached a course outline . chris kenyon from schlumberger is speaking on april 13 , and vince kaminski has tentatively agreed to speak on april 20 . i am going to be out of town on april 27 , so that leaves either next thursday ( april 6 ) or may 4 . would either of those times work for you ? i ' m not thinking of any preparation , but more of an informal discussion of the "" philosophical issues "" related to real options work . jim - - - - - original message - - - - - from : jim dyer sent : thursday , march 30 , 2000 1 : 24 pm to : ' jclevenger @ optionii . bus . utexas . edu ' subject : re : real options course feedback josh , some very thoughtful observations . as you know , i had invited one finance professor to our class on arundel , but he was out of town . i do plan to invite sheridan titman to discuss the issue of using the option models in situations where there is no underlying security that is traded . i do think it is important to face that issue , which is actually covered at a theoretical level in our last couple of readings . the issue of volatility is also an excellent issue for further discussion , as you suggest . so far , we ' ve been looking at cases where volatility is "" given "" . the problem of finding an "" objective "" measure of volatility for a project reminds me of the problem of finding the correct risk adjusted discount rate , which is not surprising since the concepts are almost two sides of the same plate . one approach , of course , is to do some modeling using traditional decision analysis tools , including subjective probabilities , but the finance people who write options articles don ' t like to think about such ideas . i ' ll try to address these issues in more detail as the semester continues . i think it was important to surface some of these points early , and to come back to them after we have seen how to apply the methods in a naive sort of way . thanks for the feedback and comments . jim - - - - - original message - - - - - from : jclevenger @ optionii . bus . utexas . edu sent : thursday , march 30 , 2000 8 : 42 am to : jim . dyer @ bus . utexas . edu cc : josh - clevenger @ reliantenergy . com subject : real options course feedback after overcoming the initial ( i hope ) overload of materials and tools presented thus far in the semester , it appears to me that you are achieving the objective of making us comfortable with optionality valuation as applied to a variety of problems which are outside the borders defined by a liquid market of traded financial elements . as a constructive feedback , you have been forthright with us in marking off areas of this subject which are still controversial . i also realize that rightly so , real - world application of this type of analysis without a robust understanding of finance may degenerate into a succession of assumptions that result in a "" house of cards "" effect . my opinion at this point is that two issues are of potentially "" make - or - brake "" importance if i am to persuade my superiors to accept these methods for valuations outside the realm of projects whose value is primarily driven by the value of commodities backed by financial instruments . these issues are easy to guess : 1 ) discounting and risk free rates : i do not sense that anyone in the class has put forth convincing arguments as to the proper application of time value questions in the absence of liquidity . is there someone within the finance department that can present a firmer position on this question ? 2 ) volatility : i found winston ' s examples on this metric succinct . i would recommend that in future years you dedicate some hours of class time to this subject . my criticism again relates to messy problems . i anticipate arguments against real option applications based on the dispute of volatility measures . if i were a conservative financial manager , i would argue that : * * * two - a : implied volatility derived from an industry specific slice of equity options is a shotgun approach - - the projects being valued are of a tranche which may in fact have a significantly different outcome variance than the weighted average measured by the equities utilized . oil , gas and electricty are good examples the major players are competing on many different levels of the value chain . smaller companies do exist which are dedicated to one strata , but what about projects that want to exploit opportunies across strata in a vertically integrated company ? * * * two - b : based on the following skepticism - if a real option value is being proposed for a new business venture ( some new unexploited opportunity , ) there is some paradox embedded in the increased value based on high volatility in new ventures and the high risk of failure . this skepticism is likely to be less acute in high - tech sectors where the huge upside of new ventures is paraded before us daily by nasdq touts . it is a much harder sell to "" mature "" industries . of particular interest in the power industry are investments centered around opportunities arising from restructuring of electricity and natural gas sectors as regulation is removed . a large proportion of the risk is embedded in ongoing changes of public policy on an international basis . as an intentionally screwed - up example , can anyone other than a financial genius correctly asses volatility for u . s . companies investing in seed projects in mexico based on speculation of the inevitable dismantling of the national utility ( cfe ) and pemex ? james s . dyer fondren centennial chair in business department of management science and information systems cba 5 . 202 the university of texas at austin austin , texas 78712 - 1175 email : j . dyer @ bus . utexas . edu telephone : 512 - 471 - 5278 fax : 512 - 471 - 0587",0 +"Subject: re : sfa individual registrations hi julie , it is so nice to hear from you . i have had several conversations with the houston compliance people regarding how to keep my sfa licenses current . as per your request , i will respond to your questions in your email : - - - - - original message - - - - - from : russell , julie sent : friday , april 06 , 2001 10 : 19 am to : mack , iris subject : sfa individual registrations iris your mails regarding sfa registration finally made their way to me , as i look after all enron ' s individual registrations with the sfa . at present , we are able to register overseas based individuals , although this may change towards the end of the year when the fsa takes over from the sfa as lead regulator in the uk . i am sort of overseas . however i will be spending some time in the london office ( which is another reason why i don ' t want to lose my sfa designations ) . as a matter of fact , i will be coming to london office in a week or two - and staying there for a while . there is still a lot of uncertainty surrounding how the fsa will implement individual registrations , but it has stated that anyone registered with the sfa at the point at which the fsa takes over , will be automatically ' grandfathered ' across to the new regulator . time will tell , what will happen thereafter . what we need to do as far as your registration is concerned , is to submit a transfer form to the sfa to move your registration to enron . i shall put a form in the mail to you ( please let me know where to send it ) for signature and update of personal details . my enron office address in houston is as follows : iris mack research department 1400 smith street , 1972 d houston , texas 77002 usa as we have to submit the form to the sfa with original signatures , please return it to me at enron house and i can get it authorised by our sfa compliance officer , jonathan marsh . i will then inform you when i receive confirmation of your acc could you respond to the following by return e - mail ; name of the sfa regulated firm where you were last registered ; banque nationale de paris paribas at 10 harewood avenue in london date ( approximation ) when you left the above ; august 2000 type of registration you held - please note we can only register you in the following registers ; general representative , futures and options representative , securities representative or corporate finance representative i passed three exams : derivatives , securities and regulations the final question is whether you are going to be based in houston permanently or whether you know at this stage if / when you will be returning to the uk . right now i will be spending time in both houston and london . see above explanation . hopefully i have answered all your questions . please let me know if you require additional information . kind regards , iris look forward to hearing from you best regards julie julie russell compliance and regulatory",0 +"Subject: var for metals it is my preference to have an aggregated var methodology for the metals business as soon as possible ( version la ) . i do not want to poison progress with my opiniion , but i think that the critical first step is to find a way to aggregate positions in coarse buckets , perhaps sacrificing precision for speed , based on "" rules "" that oerations can deliver , research can stand behind and commercial will accept . , and using an equally coarse var calculation ( the equivalent of ad - hoc var ? ) that can be delivered to the "" official books and records "" on a daily basis . this i believe would be acceptable for a 2 - 3 month time frame ( at which time we get versionlb ) as opposed to waiting 2 - 3 months to implement a better process and have nothing in the interim . ultimately , i would look for version 2 a to be delivered and very defendable by 1 / 1 / 01 . this will require indulgence and compromise on all fronts but i cannot conceive of a better way . please let me know if this is consistent with your understanding . a critical point from my perspective is that the mg commercial team and metal operations staff understand their role in making this happen and willingness to accept the consequences . i look for you to take the lead as leader of the integration to do so . if you need any input from the rest of us to underscore the importance please let us know . as i alluded to on the phone , the people in houston that have been involved in the var process have been through an extraordinary period of detailed scrutiny of var by commercial and have been hindered by the lack of basic understanding by all parties as their responsibilities . given the distance and the newness of the metals personell , i fear that this could set us all up for some surprises and some very uncomfortable communication , much of which is not entirely necessary . thanks ted eric gadd 07 / 21 / 2000 11 : 46 am to : ted murphy / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect cc : richard sage / lon / ect @ ect subject : attached fax ted and bjorn - we plan to release draft recommendations on metal position limits by close of business on 24 july and have asked vince to prepare a v @ r computational methodology prior to the 7 / 8 aug bod meeting .",0 +"Subject: re : question will do . john at 11 : 15 am 2 / 15 / 01 - 0600 , you wrote : > > john , > > i think it ' s a good idea . please , go ahead and call > him directly . > > vince > > > > > "" john d . martin "" on 02 / 13 / 2001 06 : 12 : 48 pm > > to : vkamins @ enron . com > cc : > subject : question > > > vince , > > what do you think about asking andy fastow to come to the texas finance > festival this april as our luncheon speaker ? if you agree i ' ll go ahead > and call him . if you have an opportunity to speak with him about the > conference that would be great . the date is april 21 st ( that ' s a > saturday ) . > > hope you are enjoying ny . shirley tells me that you ' re running up your > frequent flyer miles again . > > your friend , > > john > > > date : tue , 13 feb 2001 17 : 29 : 42 - 0600 > > from : sheridan titman > > subject : re : oops > > x - sender : titman @ mail . utexas . edu > > to : "" john d . martin "" > > x - mailer : windows eudora light version 3 . 0 . 1 ( 32 ) > > > > john : > > > > i like your enron article . i will assign it to my students . do you think > > we can get the cfo for the tff ? i saw that he is making a presentation to > > a conference of cfos in dallas about capital structure . > > > > sheridan > > > > at 09 : 15 am 2 / 7 / 01 - 0600 , you wrote : > > > > > > > > > > > > john d . martin > > > carr p . collins chair in finance > > > finance department > > > baylor university > > > po box 98004 > > > waco , tx 76798 > > > 254 - 710 - 4473 ( office ) > > > 254 - 710 - 1092 ( fax ) > > > j _ martin @ baylor . edu > > > web : http : / / hsb . baylor . edu / html / martinj / home . html > > sheridan titman > > department of finance > > college of business administration > > university of texas > > austin , texas 78712 - 1179 > > > > 512 - 232 - 2787 ( phone ) > > 512 - 471 - 5073 ( fax ) > > > > titman @ mail . utexas . edu > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: non - firm power curve building hi vince , amitava and i have received a request to build a non - firm power curve for each region from david hoog ' s double trigger folks . the objective , as they explain it , is to allow the desk to buy non - firm from the market , buy david ' s outage product , and sell firm to the market . accountants would like a curve to mark the non - firm position . my initial thought is that the desk should provide this non - firm curve , but it seems that this market is very illiquid and they are reluctant so they have put the ball in david hoog ' s court to build the curve if david wants to sell his product internally to the desk . assuming we build the curve , the next issue is how to define "" non - firm "" ? the only way i can think of is to tie the non - firmness to a specific generation unit or group of units . this will allow the purchase of david ' s outage product to cover the non - firmness risk . tying the definition of non - firmness to a whole region seems implausible - - - what does it mean to give a marketer the option to not deliver power if there is any problem anywhere in the region ? consequently , the non - firm curve takes on a unit - level interpretation , and not a region - level interpretation . consequently , i do not see how we can talk about the "" non - firm curve for the region "" ? we will need to build a non - firm curve for each generation unit or group of units . maybe i could get your thoughts later today . thanks , vasant",0 +"Subject: dot . odpowiedzi na list mam nadzieje , ze moja odowiedz na list sz . pana z dn . 19 . 01 . 01 doszla do pana . byl on wysylany z niepewnego komputera . jezeli nie doszedl , to prosze dac znac ( elektronicznie oczywiscie ) . serdecznie pozdrawiam grazyna piesniewska",0 +"Subject: credit model status update bill , i am forwarding a memo from vincent tang about the new credit model . english may be imperfect but the message is clear . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 10 / 2000 02 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vincent tang 02 / 08 / 2000 02 : 43 pm to : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect cc : subject : credit model status update",0 +"Subject: high frequency market data analysis stinson , we are going to update you and vince the progress of the eol george project . friday , 9 : 30 am - 10 : 00 am in eb 1938 . bob , we may get some other ideas from the following book , take a look to see if it is worth to buy one . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - risk executive reports ? ? ? high - frequency financial market data sources , applications and market microstructure by dr owain ap gwilym and professor charles sutcliffe , school of management , university of southampton , uk a high - quality , non - technical resource on an increasingly invaluable topic for all users of high - frequency data . 10 sections cover the many aspects of high - frequency data by covering a broad set of information ranging from data suppliers to detailed research angles topics covered include : managing hfd ; arbitrage opportunities ; intra - day seasonalities ; regulation ; market efficiency and market making . format price report ol 75 / us $ 280 a 4 , 162 pp published : august 1999 review | table of contents | order now in o | order now in $ for other titles of interest please click here : risk executive reports send this page to a colleague high - frequency financial market data contents 1 . introduction and overview overview and background the motivation and demand for high - frequency data the uses of high - frequency data structure of this report 2 . sources and types of high - frequency data types of data data supplied by exchanges panel 2 . 1 ( by paul macgregor , liffe ) - the sourcing and preparation of liffe tick data specialist data providers real - time data providers summary 3 . managing and exploiting high - frequency data panel 3 . 1 - illustrative high - frequency data data storage , filtering and cleaning the treatment of time panel 3 . 2 - olsen filtering system constructing continuous series key considerations in manipulating high - frequency data modelling issues summary of chapter 4 . arbitrage opportunities in equity markets what is arbitrage ? empirical studies of arbitrage opportunities arbitrage in equity markets individual arbitrage trades 5 . intra - day seasonalities intra - day patterns in returns intra - day patterns in volume intra - day patterns in volatility intra - day patterns in the bid - ask spread intra - day patterns in the autocorrelation of returns intra - day patterns in hedge ratios other intra - day patterns effects of news announcements on intra - day patterns the turn - of - the - year effect and high - frequency data conclusions 6 . links between markets leads and lags in prices between different types of market based on the same asset the 1987 stock market crash leads and lags in price volatility links between geographically separated markets rival markets 7 . destabilisation of markets relative volatility programme trading and volatility price movements at expiration conclusions 8 . regulations governing the markets regulation of dual capacity circuit breakers restrictions on short selling taxes on transactions tick size and price clustering delayed publication of trades conclusions 9 . market efficiency weak - form efficiency semi - strong - form efficiency conclusions 10 . market makingrevision of prices other aspects of financial markets determinants of the bid - ask spread block trades conclusions 11 . conclusion and future developments references ? ? ?",0 +"Subject: contact info i will be out next week . if there are any problems with or questions concerning the grains report , please let me know . i can be reached on my cell phone at 713 - 303 - 5973 and will periodically check voice mail . have a good holiday ! nelson",0 +"Subject: hello vince vince , two things . do you have any comments on the interview document ? second , i want to submit a proposal to the european financial management association meetings for next may based on our paper . the meeting is in may and is held in paris . hope you can come ( assuming the program committee likes our proposal - - i won the best paper award at last year ' s meeting so maybe we can do it again ) . looking forward to hearing form you so i can get bob ' s response to the questions . john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: sabbatical dr . kaminski : ? i had intended to contact you regarding a position at enron this summer , but the department really needed me to teach a section of undergraduate corporate finance this summer . ? if all goes well , and ? there is a place for me at enron , i would be able to start after the summer session ends in late ? july . ? ? i ? discussed the possibility of a sabbatical at enron with drs . tom arnold and alex butler , both of whom send their regards , and they both felt the experience would be invaluable given my research and career objectives . ? dr . arnold and i agreed that a sabbatical of 1 - 2 years would be optimal . ? i feel that it would be difficult to get a good idea of where the company is headed , and to show how i can be a valuable team member in helping it get there ? in much less than a year . ? he was afraid that the university would begin to grumble if i was gone for much more than 2 years . ? any suggestions ? ? thank you again for your help , and i look forward to hearing from you . ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? cordially , ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? shane green",0 +"Subject: re : li sun jeff , i met with li sun last night and i shall take her for the first rotation . she comes across as a very smart and highly motivated person . i am planning to go with mark palmer to wharton in october to finalize the deal . vince from : jeffrey a shankman 08 / 23 / 2000 06 : 31 am to : jana giovannini / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : li sun i ' ve asked vince to get involved with you about getting li into vince ' s group . this issue needs to be resolved by week ' s end - - we look like we don ' t have our act together , and that bothers me . especially since we are about to make a significant monetary investment at wharton , and we could have a new wharton recruit disgruntled . vince , can you set up a meeting with you , me and mark palmer to follow up with our meeting with skilling ? thanks very much . . . jeff",0 +"Subject: univ of texas julia , the lawyers at ut at austin have some questions regarding your corrections to the non - disclosure agreement . specifically , they want to discus the arbitration provision . the name of the lawyer at ut is gene bartley , 512 471 2995 . vince",0 +"Subject: enron : wefa luncheon may 1 would you like to attend the presentation and join me for lunch with wefa . any other suggestions re attendance . please , let shirley know . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2001 12 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" peter mcnabb "" on 04 / 11 / 2001 11 : 52 : 47 am to : cc : "" kemm farney "" subject : enron : wefa luncheon may 1 dear vince thanks for your voicemail and delighted to have you confirm lunch on may 1 . kemm farney the head of wefa ' s electric power services will be travelling with me this time . i expect there may be other enron colleagues that may care to join us for lunch so don ' t hesitate to invite as you see fit . for reservations purposes , perhaps you arrange to let me know numbers . kemm would also be prepared to informally present our current power outlook to a larger group at 11 : 00 , if this would be of interest . as you know , these types of presentations are part of all your wefa energy retainer package . i will also plan to update you with respect to our current multi client study schedule for the remainder of the year . regards , peter peter a . mcnabb vice president energy , north america wefa inc . 2 bloor st . w . toronto , canada m 4 w 3 rl 416 - 513 - 0061 ex 227 - 2001 energy brochure . doc - wefaenergy _ factsheet for energy scenarios 2001 . doc",0 +"Subject: continue enjoying iijournals - - renew today ! dear vince kaminski , we hope you are enjoying the benefits of receiving market - leading , rigorous and current research from industry experts through your subscription to derivatives quarterly . unfortunately , your subscription is about to expire ! by renewing now , your access to the web site and to your print copies will be uninterrupted . you can continue to get the exclusive research and practical advice for financial practitioners  ) written by the best minds in your business ! click here to renew today thank you .",0 +"Subject: eol dan , i am forwarding you the summary of the information for eol that we can provide . i shall talk to risk magazine to settle the copyright issues . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 25 / 2000 05 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : mike a roberts 05 / 25 / 2000 02 : 56 pm to : vince j kaminski / hou / ect @ ect cc : subject : eol vince - as a follow - up to this afternoon ' s telephone conversation , the following four categories of information were discussed with dan diamond for inclusion in the research group ' s contribution to eol content : 1 . published articles authored by research group members a . mostly risk magazine stuff b . copyright issues 2 . research intelligence articles a . backlog of around 50 articles b . needs screening prior to release c . review system in place for future articles d . weekly 3 . technical analysis a . cross commodity analyses b . intranet material ready for internet c . generic informative content available 4 . streaming video of weather a . daily 2 - 3 minutes capsule b . toned - down verson of whats given to traders c . energy - focused - - mike",0 +"Subject: follow - up meeting on wharton it seems like several of you will be on vacation next week , so lets see if we can do it this week . vince is available on thursday from 2 : 00 - 3 : 00 pm or friday , from 1 : 30 - 2 : 30 pm . do either one of these two times work ? let me know . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 12 / 2000 10 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 12 / 12 / 2000 09 : 20 am to : christie patrick / hou / ect @ ect , james l bouillion / hou / ect @ ect , george carrick / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : follow - up meeting on wharton good morning everyone : vince would like to schedule a follow - up meeting on wharton as soon as we can agree on a time . how does monday the 18 th look for you ? vince is free from 9 : 30 am - 11 : 30 am and from 1 : 00 pm - 4 : 00 pm . please let me know if you are available during any of these times . thanks ! shirley crenshaw 3 - 5290",0 +"Subject: re : improving option valuation precision in erms stinson , zhiyong wei ' s group will need to make this change . please follow up with zhiyong and jeremy wong . - - allan . stinson gibner 08 / 23 / 2000 09 : 54 am to : allan severude / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , paulo issler / hou / ect @ ect , eric moon / hou / ect @ ect , ed mcmichael / hou / ect @ ect , zimin lu / hou / ect @ ect subject : improving option valuation precision in erms allan , paulo issler in our group , working with eric moon in structuring , recently tracked down the reason for a slight mis - match in option pricing in erms vs . the structuring spreadsheets . it is due to the fact that the option valuation functions in erms use a slightly less accurate approximation for the cumulative normal distribution . we would be happy to work with the right person to update the erms code in order to close this discrepancy . please let me know how you would like to proceed . if you are not the correct person to address the mainenance of erms , please let me know who to contact . thank you , stinson gibner x 34748",0 +"Subject: re : li xiao thanks so much , vince . molly vince j kaminski 06 / 29 / 2000 11 : 06 am to : molly magee / hou / ect @ ect cc : subject : re : li xiao molly , my recommendation letter . vince enron north america corp . from : molly magee 06 / 22 / 2000 10 : 39 am to : vince j kaminski / hou / ect @ ect cc : subject : li xiao vince : li has selected you as a reference on her application for a graduate school tuition loan . thanks for taking the time to participate in this process . molly",0 +"Subject: reminder hello everyone : vince has asked me to send the following as a reminder : * * * * * * * * * * * * * * * * this is another reminder about the responsibility we have as a group for cleaning the conference rooms after meetings . for many visitors to enron a conference room maybe the first and the last exposure to the company . last thursday , some members of the group left , leaving behind their lunch boxes on the table . please , don ' t embarrass me by having to point out to you that your mothers don ' t work here . vince",0 +"Subject: re : argentina power & gas market modelling okay julian poole 03 / 17 / 2000 10 : 35 am to : michael guerriero / enron _ development @ enron _ development cc : vince j kaminski @ ect , grant masson @ ect , jeff kabel / enron _ development @ enron _ development , rodolfo freyre / enron _ development @ enron _ development , diego hollweck / enron _ development @ enron _ development , bernardo andrews / enron _ development @ enron _ development , mario aguilar benitez / enron _ development @ enron _ development , santiago subject : re : argentina power & gas market modelling all , let ' s arrange a conference call next week to discuss the process . how does tuesday afternoon fit everyone ' s schedule ? julian enron international from : michael guerriero 03 / 17 / 2000 03 : 49 pm to : vince j kaminski @ ect , grant masson @ ect , jeff kabel / enron _ development @ enron _ development , julian poole / enron _ development @ enron _ development , rodolfo freyre / enron _ development @ enron _ development , diego hollweck / enron _ development @ enron _ development , bernardo andrews / enron _ development @ enron _ development , mario aguilar benitez / enron _ development @ enron _ development , santiago cc : subject : argentina power & gas market modelling i would like to initiate a team to address the continued improvement of the argentine power & gas market models . i spoke with vince this morning and we reviewed that history of work to date and what we will need to do from here . a summary is as follows : team : ba members : julian poole lead mario benitez associate ba associates : diego hollweck associate bernardo andrews associate santiago porta associate houston members : to be named . time schedule : as soon as possible . completed before june 1 , 2000 winter in argentina . scope of work : power model : advance the current model from basic load forecasting to incorporate weather , hydrology , improved short term and long term forecasting . natural gas model : build a supply and demand load forecasting model incorporating weather , thermal demand , pipeline flow rates , well head supply , improved short term and long term forecasting . phase i - data request power historic weather : temperature - daily , hourly , min , max , average humidity precipitation cloud cover regionally forward weather : temperature - daily , hourly , min , max , average humidity precipitation cloud cover regionally historic hydrology : reservoir levels reservoir capacity current hydrology : reservoir levels remote monitoring : aireal , pressure device , laser snow pack : density volume and mass power supply : current and future capacity transmission capacity : current and future capacity natural gas data list to be developed phase ii - power model development phase iii - natural gas model development we will take advantage of the fact that the associates are in houston for the next two weeks . vince is out next week but we can start with a process discussion with grant masson next week . julian please get a meeting scheduled as soon as possible . we should immediately start collecting data . thanks mfg",0 +"Subject: re : enron / stanford program stinson , great ! i ' m looking forward to a very productive collaboration . i ' ll immediately start doing giuseppe ' s papers , for him to work on the enron / stanford program . many thanks to you and vince , and i hope to see you soon at stanford or enron . if i remember correctly , vince is visiting stanford in october . best regards , nick stinson . gibner @ enron . com wrote : > > nick , > > i spoke with paul racicot , head of trading for ebs , north america this > morning . he said that he is happy to send the $ 100 , 000 for your program > from his budget . i have forwarded to him the draft letter to accompany > the funds and will try to follow up to make sure that the money is sent > promptly . > > - - stinson",0 +"Subject: approval for reviewer roberts jr , michael a has suggested reviewers and submitted them for your approval . you may review / modify this list of reviewers by logging on to pep at http : / / pep . corp . enron . com and going to supervisor services . please remember , no feedback can be completed on roberts jr , michael a until you have approved the list .",0 +"Subject: re : bollerslev seminar excellent . thank you . bbo at 03 : 19 pm 10 / 10 / 00 - 0500 , you wrote : > barbara , > > noon will be fine . we shall just use the lunch hour . > > vince > > > > > > > barbara ostdiek on 10 / 10 / 2000 12 : 53 : 34 pm > > to : vince . j . kaminski @ enron . com ( vince kaminski ) > cc : > subject : bollerslev seminar > > > vince : > > i don ' t know if you noticed that we have tim bollerslev on the seminar > schedule for december 8 . in order for tim to get back to north carolina on > friday , we need to move the seminar time . i thought that the enron folks > might be interested in his talk so i wanted to get you input on a new > time . i know that 3 : 30 is best but would over the noon hour be second best > or would 2 : 00 be better ? > > thanks . > > bbo > > > >",0 +"Subject: reactions november is now live on - line reactions the latest edition of the financial magazine for the global insurance market is now live at http : / / www . reactionsnet . com ? ? you can contact us for help at mailto : web - help @ euromoneyplc . com or + 44 ( 0 ) 20 7779 8006 . ? the november issue of the world ' s leading insurance and reinsurance magazine is packed full of news , views and figures ; simply hit the links at the bottom of each item to see the full article . the november features race - based underwriting : haunted by a racist past the discovery of continued race - based underwriting in the us will cost life insurers involved millions of dollars and do untold damage to their reputations - as well as severely embarrassing state regulators integrated risk management : we can work it out the new actuaries reckon they can measure abstruse business risks - and then integrate them with known risks . ? but is there madness in their method ? mga business : the need for continuity capital adequacy : that capital question a . m . best ' s top 100 buyers and sellers in the us : a time of change buyers - the 20 biggest risers and fallers ? sellers - the 20 biggest risers and fallers the fall of reliance : errant insurer ' s battle for survival in the spotlight : harry rhulen for more information about the sponsors of www . reactionsnet . com , please visit their official websites at : renaissance re holdings ltd - http : / / www . renre . com / ipc re ltd - http : / / www . ipcre . bm / gerling global financial products - http : / / www . ggfp . com / e - insuring your business the park lane hotel , london january 26 , 2001 a one - day management symposium discussing insurance , the internet and your business . join mis training and reactions for a day of discussions , insight and knowledge transfer e - insurance and why you need it to protect your business the legal realities and responsibilities you need to know about managing the risks and devising successful risk policies live demonstration for further information please contact daniel carney or alex johnson at mis training on 020 7779 7217 / 8097 . * plus ! * ? industry publications - read the executive summaries and order online ! rbi & reactions insurance management reports : diversification of european insurance and financial services trends in global commercial insurance - the impact of art risk management - new challenges and new solutions opportunities in latin american insurance the outlook for european teleinsurance outlook for insurance in germany uk einvestments reinsurance 4 th edition - industry - standard textbook @ risk - internet and e - commerce insurance and reinsurance legal issues e - nsurance - insurance and the internet revolution http : / / www . reactionsnet . com to advertise or link your company website to this industry circular please contact nick lipinski tel : + 44 ( 0 ) 20 7779 8199 or e - mail mailto : nlipinski @ euromoneyplc . com if you have any problems logging onto or using ? www . reactionsnet . com please call our dedicated help desk + 44 ( 0 ) 20 7779 8006 or email mailto : web - help @ euromoneyplc . com",0 +"Subject: re : mit financial engineering pro - seminar claudio , i have done it twice in the past . i shall be glad to help again . vince from : claudio ribeiro @ enron 11 / 21 / 2000 08 : 32 am to : vince j kaminski / hou / ect @ ect cc : subject : re : mit financial engineering pro - seminar vince : it was stewart myers , head of the financial engineering track . he did not contact me directly , he contacted josef ( an mit student that spent the summer with enron and received an offer to come to work with us ) . josef wanted to know who could make the commitment of sponsoring ( sending the problem ) . claudio vince j kaminski @ ect 11 / 21 / 2000 08 : 16 am to : claudio ribeiro / corp / enron @ enron cc : subject : re : mit financial engineering pro - seminar claudio . who was the professor who came up with the request ? vince from : claudio ribeiro @ enron 11 / 20 / 2000 05 : 04 pm to : vince j kaminski / hou / ect @ ect cc : joseph hrgovcic / hou / ect @ ect subject : mit financial engineering pro - seminar vince , i have received a call from mit asking if enron would be interested in sponsoring a financial engineering pro - seminar . this means that enron would propose a problem that would have its solution developed by students in the financial engineering track . these students would present the findings in the end . i think that enron has already sponsored a financial engineering pro - seminar . i remember something about real options at the time i was at school . please , let me know if enron has the interest , specifically the research . talking here at the weather desk , mark tawney expressed interest . if you agree , we ( the weather desk ) could co - sponsor this pro - seminar with the research . the idea , then , would be to propose a problem connected to weather trading . please , give me your thoughts about this issue . thanks , claudio",0 +"Subject: re : flight molly , it ' s ok ( even if the answer is ex post ) . vince enron north america corp . from : molly magee 10 / 19 / 2000 08 : 45 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : flight vince : would this be okay with you ? molly - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 10 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : jlew @ kent . edu > 10 / 18 / 2000 07 : 30 pm to : molly . magee @ enron . com cc : jlew @ kent . edu subject : flight dear molly , i asked about change of the departure city . they said i should send my ticket back to get a new ticket . since aquila provides the ticket , it ' s hard for me to change the departing place . if possible , can i ask you to arrange the one way flight from houston to seattle on the evening of 25 th ? i ' m sorry for this . thank you very much . sincerely , jaesoo lew",0 +"Subject: some municipal bonds for you to look at . . . . . i called out muni desk to have them take a look at the current munis avaiable that looked best at this time to invest $ 50 , 000 going out to 30 years for you . the following is what they came up with . . . . pecos co tx cert of obl w / a coupon 5 . 5 % matures in 02 / 01 / 11 callable at par on 02 / 01 / 07 offered at $ 101 . 964 - aaa rated brownsville util rev w / a coupon of 5 . 25 % maturing in 09 / 01 / 15 callable at par on 09 / 01 / 05 offered at $ 97 . 425 - aaa rated alvin tx isd psf w / a coupon of 5 . 75 % maturing in 08 / 15 / 22 callable at par on 08 / 15 / 10 offered at par - aaa rated houston tx air revs w / a coupon of 5 . 00 % maturing in 07 / 01 / 28 callable at par on 07 / 01 / 08 offered at 86 . 479 - aaa rated remember , these are subject to change , but if these interest you and they are not still available , i will see if there is something comparable . talk to you soon . please call me with any questions . thanks , julie",0 +"Subject: working at home this afternoon i will be working from my home this afternoon after 1 : 30 pm . my extension will be forwarded to my home . if i happen to be away from the phone taking care of my mother , leave a message and i will return your call immediately . there is a generic message on my home phone , "" please leave message after tone "" , so don ' t worry that you have the wrong number . you may reach me by email at adupont @ pdq . net . in the next several days , i will be set up to dial in and you will be able to use my regualr enron email address . i will be at my desk most days , but until we have mother settled in the rehab facility there may be some days or afternoons that i will be working at home . please do not hesitate to contact me if you need meetings set up or any other thing that you would normally request of me . thanks . anita",0 +"Subject: joe mccauley ' s papers vince , as promised , these are a couple of references that i have for joe mccauley ' s papers . whether the specific papers are of interest to what exactly we ' re doing or not , i cannot say . on the other hand , given uh ' s drive to create an "" econophysics "" specialization within the physics department , i thought we could both help them * and * drive it towards a direction that it could be of use to us . i think that they would very much like to hear what the industry would like to see from such a specialization . some of the things that have been discussed as course offerings would be : basic physics courses ( mechanics , nonlinear dynamics , stat . physics , math methods ) various finance courses like options , banking , etc . statistics , math methods , and statistical physics ( that could teach topics like brownian motion , lognormal distributions , fractals , levy flights , and statistics of ' large deviations ' , which are of interest comp science ( java , c + + , data structures , algorithms ) monte carlo simulations etc setting up some sort of exchange , where at minimum we could get summer interns from this program , would also be beneficial to both sides . even better , a wider collaboration between enron and the physics department could be set up . after this message , i will inform joe mccauley and larry pinsky ( departmental chair person ) of your suggestions on how to proceed . i will send shirley their contact information to arrange for a visit at the beginning of june . thanks , yannis",0 +"Subject: bill koures vince , alex and i did a phone interview with bill koures . he works for williams and had a wall street background . he is very qualified for the work we are doing here ( stochastic modeling , curve building , option valuation , etc . ) he programs in c and matlab . in terms of quantitative skills , bill is better than ren zhang ( koch ) i talked yesterday . the only down side alex and i can think of about mr . koures is that we may not get him due to a higher price tag . zimin",0 +"Subject: re : operational risk michael , the science of measuring operational risk is in its early stages of development . there are really no cook - book solutions . one has to use creativity and a lot of common sense . vince to : vince j kaminski / hou / ect @ ect cc : subject : operational risk mr . kaminsky , recently , i read articles published by garp and monographs in a book published by garp . although they are excellent sources of introduction to operational risk , none of them have any details on the "" how to . "" if you know of a good book or book ( s ) could you recommend one ? thank you . michael kim",0 +"Subject: re : p + spread options jeff , a short follow up on the p + options . attached is a chart showing historical correlations for calendar spreads between futures contracts . it shows correlation over four different time horizons up to the roll of the nearest contract in each pair . as you can see the level is usually higher than 0 . 98 and often near 0 . 99 . if our current book of "" index p + "" options were re - marked at a 98 % correlation , it would result in a reduction in m - t - m value of about $ 78 million according to my estimate .",0 +"Subject: re : resume , molly , i would like to invite this student for an interview , sometimes in late december when things slow down . interviews with all my direct reports and george hopley . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 09 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 10 / 24 / 2000 04 : 32 pm to : jinbaek kim @ enron cc : vince j kaminski / hou / ect @ ect subject : re : resume , jinbaek , we shall invite you to an interview in houston . vince jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm to : vkamins @ enron . com cc : subject : resume , dear mr . kaminski , hi , i am a ph . d student at ieor department at u . c . berkeley . thanks for your presentation today . it gave me knowledge and interest in electricity markets , and your company . as you mentioned in the presentation , i send a resume to give me opportunity to learn more about your company . i hope i can join the super saturday event . jinbaek - resume . doc",0 +"Subject: re : confidential sophie , i think it ' s a fair deal . vince sophie kingsley 08 / 30 / 2000 11 : 49 am to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect subject : re : confidential both , thanks for your comments and comparisons , it is good to get context . based on your comments here would be my proposal o 63 , 500 basic salary - ol 5 k kickers for each of the 2 years - these are paid as a lump sum on each anniversary guaranteed . therefore guaranteed salary is effectively o 78 , 500 - this is completely separate and in addition to any performance bonus increase the value of options to o 60 k to vest 1 / 3 as before - which leaves a 1 / 3 ( $ 20 , 000 ) hanging out there at the end of the contract . just fyi - anjam is currently on o 68 , 000 but does not have an agreement , so this would effectively put a 10 . 5 k gap between the two . let me know your thoughts . dale surbey 30 / 08 / 2000 16 : 09 to : sophie kingsley / lon / ect @ ect cc : subject : re : confidential sophie , here ' s vince ' s comments on your proposal for steve . also , what ' s a 2 - yr exec ? how do the kickers work - are they basically a guaranteed minimum bonus or incremental bonus ? - dale - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 16 : 10 - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 30 / 08 / 2000 14 : 21 to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : confidential dale , thanks for your message . i don ' t know the labor market in london that well but here the market for quants is very hot . steve is in my view an exceptionally talented person and i would go an extra mile to retain him long - term for the company . i would adjust the base salary or the kicker upward a bit . o 62 , 000 basic is what anjam is receiving currently ( if i remember correctly ) . steve has a much higher value to enron than anjam . vince dale surbey 08 / 30 / 2000 07 : 49 am to : vince j kaminski / hou / ect @ ect cc : subject : confidential vince , this is the package hr is proposing for steven . what do you think ? - dale - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 13 : 50 - - - - - - - - - - - - - - - - - - - - - - - - - - - sophie kingsley 29 / 08 / 2000 20 : 32 to : dale surbey / lon / ect @ ect cc : subject : confidential sorry dale , long day , here are the proposed numbers 2 year exec o 62 , 000 basic ( currently o 55 k ) ol 0 k each year kickers $ 50 , 000 worth of options to vest 1 / 3 1 / 3 1 / 3 let me know what you think . regards sophie",0 +"Subject: re : change - video to teleconferences - enron christie , meeting at 5 : 30 is fine with me . the presentation is at 6 : 30 . i sent you a message regarding a dinner on tuesday . can you join me and ken parkhill ? vince from : christie patrick on 02 / 16 / 2001 10 : 19 am to : vince j kaminski / hou / ect @ ect cc : subject : change - video to teleconferences - enron hi vince ! thanks for the information below ! i spoke with tom piazze today . i ' ll be meeting with him at 3 : 30 on the 20 th to discuss the webi contract . i ' ll also be meeting with wharton ' s broadband ( technical people ) before our meeting with the students . further , i hope to meet with the people in charge of the business plan competition . tom suggested you might want to call howard kurnreuther ( sp ? ) and possibly stop in to see him while we are at wharton . i ' ll be getting to wharton sometime tuesday ; i ' ll try to get a reservation at the inn at penn . i ' ll then be leaving early wednesday morning by train to new york . shall we meet in tha lobby at the inn at penn before going to meet the students ( i think the meeting with the students is at 6 pm - ish ) - - say , 5 : 30 ? please let me know ! also , we still need to give wharton an answer as to whether we ' re interested in another $ 50 , 000 investment in efellows . thanks vince ! have a great wekend ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 10 : 13 am - - - - - vince j kaminski 02 / 16 / 2001 10 : 06 am to : christie patrick / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : change - video to teleconferences - enron fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 02 / 16 / 2001 08 : 35 : 22 am to : clay degiacinto , deepa mallik , dennis feerick , heather thorne , jack rejtman , jason cummins , kim whitsel , nicholas levitt , omar bassel , ram vittal , steve lessar , thomas , tulika bhalla , vincent chen cc : fap , "" ' vkamins @ enron . com ' "" , "" ' patterm @ wharton . upenn . edu ' "" subject : change - video to teleconferences - enron 3 / 1 shdh 215 3 / 22 shdh 215 3 / 29 shdh 215 please note that the remaining videoconferences scheduled with enron have been changed to teleconferences due to the difficulties we have experienced . the host has agreed and we will , therefore , continue with teleconferences in the same locations / dates as noted above . any questions , please contact the fap office . thanks , donna",0 +"Subject: re : evaluations - enron - reminder > please pass this along to others who may have worked with the students . > > to : tiger hosts > > from : field application project office > the wharton school > university of pennsylvania > > re : tiger team evaluations > > thank you for hosting the tiger team project , field application project > 2001 . this opportunity provided the student team a worthwhile experience > to apply newly acquired skills to a real world issue facing your company . > your dedication and support of the project contributed greatly to its > success . > > hopefully , by now you have had the opportunity to review the final > reports . please take a moment to complete the host evaluation form > available at : ( use internet > explorer ) > > username : tiger > password : fap 2001 ( no space between ) > ( note : case sensitive , please use lower case ) > deadline for acceptance : wednesday , april 25 , 2001 > > your feedback is important to us . it is taken into consideration when > calculating student grades and when implementing changes that will impact > and enhance the program in the future . also , in an effort to insure the > return of meaningful and contributing host companies , we ask that you > indicate your interest in returning as a host next year and the fap office > will contact you in september 2001 . > > thank you again for your support of the wharton school and participation > in the field application project this year . we look forward to working > with you in the future . > > if you have any questions , please contact the fap office at ( 215 ) 573 - 8394 > or email : fap @ management . wharton . upenn . edu > > > sincerely , > donna piazze > program director > field application project",0 +"Subject: from the enron india newsdesk - april 27 th newsclips fyi news articles from indian press . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 04 / 27 / 2001 08 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nikita varma 04 / 27 / 2001 07 : 51 am to : nikita varma / enron _ development @ enron _ development cc : ( bcc : sandeep kohli / enron _ development ) subject : from the enron india newsdesk - april 27 th newsclips friday apr 27 2001 , http : / / www . economictimes . com / today / cmo 3 . htm dpc board empowers md to cancel mseb contract friday apr 27 2001 , http : / / www . economictimes . com / today / 27 compl 1 . htm mseb pays rs 134 cr under ' protest ' to dpc friday , april 27 , 001 , http : / / www . businessstandard . com / today / economy 4 . asp ? menu = 3 enron india md authorised to terminate ppa friday , april 27 , 2001 , http : / / www . financialexpress . com / fe 20010427 / topl . html foreign lenders slam brakes on disbursements to dpc , sanjay jog & raghu mohan global banks comfortable with enron pull - out friday , april 27 , 2001 , http : / / www . indian - express . com / ie 20010427 / nat 23 . html enron : dabhol chief gets powers to end deal with the mseb friday , april 27 , 2001 , http : / / www . the - hindu . com / stories / 0227000 d . htm offer of renegotiation ' too late ' : enron , by mahesh vijapurkar friday , 27 april 2001 , http : / / www . timesofindia . com / today / 27 home 2 . htm enron ready to pull out , but lenders say wait friday , april 27 , 2001 , http : / / www . hindubusinessline . com / stories / 142756 dh . htm dpc board authorises md to issue ppa termination notice friday , april 27 , 2001 , http : / / www . dailypioneer . com / secon 2 . asp ? cat = story 7 & d = front _ page enron testing maharashtra ' s nerves , t n raghunatha friday , april 27 , 2001 , http : / / www . telegraphindia . com / enron signal to switch off dabhol power friday , april 27 , 2001 , http : / / www . thestatesman . org / page . news . php 3 ? id = 13026 & type = pageone & theme = a enron threatens to pull out friday , april 27 , 2001 , http : / / www . chalomumbai . com / asp / article . asp ? cat _ id = 29 & art _ id = 10006 & cat _ code = 2 f 574841545 f 535 f 4 f 4 e 5 f 4 d 554 d 4241492 f 5441415 a 415 f 4 b 4841424152 ' dpc may not wind up ' friday , april 27 , 2001 , http : / / www . chalomumbai . com / asp / article . asp ? cat _ id = 29 & cat _ code = 2 f 574841545 f 535 f 4 f 4 e 5 f 4 d 554 d 4241492 f 5441415 a 415 f 4 b 4841424152 & art _ id = 9953 enron offers ' no comment ' on renegotiation , h s rao http : / / www . afternoondc . com / ' enron ' s on ! ' state govt . to renegotiate dabhol power project , by hubert vaz the economic times , friday apr 27 2001 dpc board empowers md to cancel mseb contract the enron power project crisis on thursday deepened with the board of dabhol power company authorising the management to issue a termination notice to the maharashtra state electricity board even while international lenders to the project asked enron to renegotiate power purchase agreement signed with the mseb . the decision to authorise managing director neil mcgregor to issue "" notice of termination on the contract to sell 740 mw of power "" was taken after the board prevented mseb from voting on the ground that it was an interested party . the decision was taken with six votes in favour and the single opposition vote was cast by idbi , sources said . according to reports , financial institutions such as anz investment bank , credit suisse first boston , citibank , abn - amro and the state bank of india have on wednesday advised enron against terminating its ppa with mseb . mseb chairman vinay bansal , who with two other directors attended the meeting on wednesday representing maharashtra ' s 15 per cent stake in the near $ 3 - billion project , said : "" the indian side told them that it would be unfortunate if enron broke the contract . "" while bansal declined comment on the board decision , the sources said the indian side had expressed its interest to holds talks on the issue rather than terminating the project and there were possibilities of a fresh power purchase agreement between the company and the state . ( pti ) the economic times , friday apr 27 2001 mseb pays rs 134 cr under ' protest ' to dpc despite the threat of a possible termination notice hanging on its head , maharashtra state electricity board on thursday made a "" protest payment "" of rs 134 crore disputed amount , towards march bill of rs 146 . 64 crore to dabhol . "" we were ready with the payment on wednesday itself , but dpc officials could not collect the cheque due to the statewide bandh "" , a senior mseb official said . "" we have disputed payment of rs 12 . 64 crore and it would be now taken up at the disputes resolution forum , of which enron india managing director k wade cline and krishna rao are members "" , mseb sources said . last week , dpc had dashed off a communication to the government and mseb that it would not accept "" protest payments "" anymore . cline had said the energy major shall treat such payments as an election to pay the sums , which mseb in fact owed dpc in full and that the company would also not recognise the "" purported protest or reservation "" . mseb had paid a rs 113 . 5 crore february bill in protest last month . on april 23 last , both domestic and international lenders of dpc had met in london and held exhaustive discussions the multinational ' s move to issue a termination notice to mseb and state government . ( pti ) business standard , friday , april 27 , 001 enron india md authorised to terminate ppa the board of the enron - promoted dabhol power company ( dpc ) , at its meeting in london on wednesday , authorised the managing director of enron india to issue a notice for terminating the power purchase agreement to the maharashtra state electricity board and the state government . "" the board has authorised wade cline to serve the termination notice . however , this does not mean that the termination notice will be served immediately . it is only an enabling provision and will be used only if the situation arises , "" a state government source told business standard from london . he said dpc was under pressure from its lenders . the dpc spokesperson here refused to comment on the issue . the hardening of the board ' s stand is in sharp contrast to the advice of dpc ' s lenders , who had warned enron not to precipitate matters by issuing a termination notice . the lenders had arrived at a consensus that the termination notice need not be served at this stage . serving of the notice requires a nod from the lenders , who have an exposure of about $ 2 billion in the project . sources said given the lenders ' strong opposition to termination of the contract , the enron board ' s "" enabling resolution "" did not have much significance beyond conveying a hardening of its stand with regard to the current imbroglio . the maharashtra chief minister had warned enron not to scuttle the process of crisis resolution by issuing a termination notice . the state government is to nominate an expert group to renegotiate the terms of the dabhol contract . enron holds 65 per cent in dpc , while us - based ge and bechtel hold 10 per cent each . the balance 15 per cent is held by mseb through a special purpose vehicle , maharashtra power development corporation . the mseb representatives were not allowed to vote at the meeting since they were an interested party . the idbi representative protested against the board ' s decision . the meeting was attended by state energy secretary vm lal . the meeting was held against the backdrop of a dispute between mseb and dpc over payment of bills . after mseb failed to pay rs 102 crore towards the december 2000 bill , dpc invoked the state government ' s guarantee and then the union government ' s counter guarantee . when payment of the rs 127 - crore january bill became overdue , dpc again invoked the state government ' s guarantee . mseb retaliated on january 28 , 2001 by slapping a rs 401 - crore penalty for non - supply of electricity at adequate levels . it demanded that dpc adjust the bills against this penalty . "" this stand of mseb was explained to dpc at the board meeting "" , a state government official said . the centre also supported mseb ' s stand and refused to honour the counter guarantee . the power company then invoked the political force majeure clause . a process of conciliation and arbitration between the centre and dpc is currently on . the financial express , friday , april 27 , 2001 foreign lenders slam brakes on disbursements to dpc , sanjay jog & raghu mohan global banks comfortable with enron pull - out lenders to the dabhol power company ( dpc ) are a sharply divided lot . international lenders , in direct contrast to the stand taken by local ones led by the the industrial develoment bank of india ( idbi ) , are categorical that additional assistance to dpc ' s phase - ii will be held in abeyance despite the completion of 92 per cent of the project work . the stage is also set for a preliminary termination notice to be served by dpc to the maharashtra state electricity board ( mseb ) within the next four weeks . this follows the authorisation given to enron india ' s managing director k wade cline and dpc president & ceo neil mcgregor to serve the termination notice , and transfer notices to mseb , following wednesday ' s dpc board meeting in london . the essence of the message from the international lenders following the london meeting with dpc board is : emotions do not work . contractual obligations and payments have to be met . we are convinced that the mseb has failed to meet its obligations . there is no point in enron continuing with the project and the company should get out of it . the structuring of dpc ' s debt has created two classes of lenders . in phase - i , international lenders are covered by a sovereign guarantee while in phase - ii , no lender is . however , all lenders have a parri passu charge , making attachment of assets a messy affair . sources in international banks were quick to point out that local lenders to phase - ii of the project are worried that an awry dpc project will affect their interests more given that they have no security - other than assets - like a sovereign cover . "" it was this desperation that made local lenders like idbi slash the interest rates a few months back to 16 . 5 per cent from 21 . 5 per cent , "" a leading foreign banker pointed out . three points that were made clear and stressed in no uncertain terms by international lenders were : a ) there are contractual obligations b ) mseb was not punctual in its payments to dpc and c ) mseb adopted a confrontational position by slapping a rs 401 crore rebate charge on dpc for misdeclaration and default on the availability of power . while local lenders led by idbi - with mseb parroting the same - were of the view that the current situation is a temporary one , international lenders were steadfast that pulling out of the project is the only way out . this is despite the stance taken by idbi and mseb that authorisation for termination given to mr cline and mr mcgregor was not called for . international bankers pointed out that they will now have to look at the issue of charges and protection for their loans in the event of the power project being scrapped in its present form . the points of contention are : a ) that phase - i of dpc is backed by a sovereign guarantee b ) phase - ii is not and c ) to the extent that phase - ii is covered by assets , cancellation of phase - ii may see all assets - even those under phase - i - getting attached . therefore , an examination on the segregation of assets under phase - i and phase - ii is now warranted . pti adds : in a significant move , dpc board has empowered its management to sever power supply agreement with mseb , a move that could inflict a financial liability of about rs 2840 crore on the centre . a decision to authorise dpc president neil mcgregor to issue a termination notice to mseb for sale of power was taken by the board at its meeting on wednesday . the indian express , friday , april 27 , 2001 enron : dabhol chief gets powers to end deal with the mseb the board of dabhol power company , a subsidiary of houston - based enron corp , has decided to warn the maharashtra state electricity board ( mseb ) that it intends to pull the plug on its guhagar - based project . in a board meeting held in london on wednesday , the board decided to authorise dpc president and ceo neil mcgregor and enron india ' s managing director k wade cline to serve a ' ' preliminary ' ' termination notice for sale of power to the mseb within the next four weeks . the dabhol project has been mired in disputes since mseb began missing payments last year . mseb owes dabhol power $ 48 million for power delivered in december and january . the payment ran into a dispute after mseb slapped penalty notices of rs 401 crore on dpc for its failure to supply power within three hours of the demand being placed . but mseb has paid $ 24 million for february . and a payment of $ 31 million was made for march on thursday . the $ 3 billion dabhol project is the largest foreign investment made in india to date . issuing the preliminary termination notice could enable dabhol to suspend deliveries as it negotiates payment disputes . while a preliminary termination notice is the first of three steps that could potentially lead to the abandonment of the project by enron , analysts have described the decision as a ' ' procedural ' ' move consistent with dpc ' s negotiating strategy to recover overdue payments from the mseb . after the company issues the preliminary termination notice , step two would be an official termination notice , and step three would be a notice that the company is surrendering control of the project . if the project is terminated , the government of india will have to take a hit of $ 300 million besides paying bills of rs 1 , 500 crore for the next one year to enron as penalty . ' ' our ( centre ' s ) liability , if dabhol power project is terminated , would be one year ' s electricity bill and a termination fee of $ 300 million , ' ' power secretary a k basu said . ' ' contractually , the centre will have to pay one year ' s electricity bill , totalling at present prices about rs 1 , 400 - 1 , 500 crore , and take over dpc ' s debt , which stands at around $ 300 million , if the project was terminated , ' ' basu said in delhi . dabhol power is in the process of completing the second phase of the 2 , 184 - megawatt power - plant project , which is 95 per cent through . while the international lenders to the project are pressurising the company to get out of the project , indian lenders , led by idbi , are asking the company to reconsider its decision on its termination notice . during the meeting in london , mseb which holds a 15 per cent stake in the project , had strongly opposed dpc ' s move to authorise cline and mcgregor to issue notices for termination . mseb chairman vinay bansal and technical director prem paunikar - both directors on the dpc board - and the state principal secretary ( energy ) vm lal , an invitee to the board , raised the issue at the board meeting in london . mseb claimed that dpc was needlessly ' ' threatening ' ' to issue various arbitration notices and thereby interpreting the clauses of ppa in isolation . in recent weeks , dabhol has raised the stakes in its spat with the mseb , delivering a notice of political force majeure to maharashtra - a step typically invoked to dissolve a contract in case of an emergency like a war , coup , or a similar radical political event . in this case , dpc ' s move was viewed as a threat to stop providing electricity . dpc has come under fire because of the relatively high cost of its power . critics object to the company charging rs 7 . 1 a kilowatt - hour for its power , compared with around rs 1 . 5 a kilowatt - hour charged by other suppliers . the hindu , friday , april 27 , 2001 offer of renegotiation ' too late ' : enron , by mahesh vijapurkar mumbai , april 26 . the enron - sponsored dabhol power company , which last night authorised its local management to issue a notice of termination of its power purchase agreement ( ppa ) with the maharashtra state electricity board , has decided to keep a stiff upper lip . this , in turn , has stoked speculation that the switching off of power from its phase i plant was imminent , while in reality , a lengthy procedure has to be followed as prescribed within the ppa . as one source familiar with the ppa told the hindu , ` ` it is not sudden death of the project ' ' and in all probability , the dpc , vexed with the developments , including sharp and pointed observations by the godbole committee , has chosen to only arm itself with a serious option . ` ` this would only eventually come into effect . it is not an overnight operation and a lot of legal work is involved ' ' . apparently , the dpc intends to do some arm - twisting . at the board of directors meeting in london , which maharashtra was initially disinclined to attend but later used the forum to put across its contentions on the project , the dpc squarely told the mseb nominees on the board that the offer of renegotiation had come rather ` ` too late ' ' . it also said it did not see any room for optimism about the outcome . it did not , however , rule out the option of talks , thus underscoring the possibility that the decision to authorise termination was a new weapon . the maharashtra chief minister , mr . vilasrao deshmukh , had hoped that dpc would not take any ` ` harsh step ' ' which would cause lot of damage to the interests of both the independent power producer and the government and today he expressed his dismay . in fact , the mandate of the team that went , on the strength of its stake in the dpc , was to put across the idea that negotiation was the requirement and not confrontation . echo in ls the enron issue also echoed in the lok sabha today where the power minister , mr . suresh prabhu , said that scrapping of the agreement would cost the centre rs . 2 , 840 crores , whose liability in the project agreement was limited . the centre ' s liability in case of termination is one year ' s electricity bill and a termination fee of $ 300 million . blow to fis the termination could prove to be a serious blow to the indian financial institutions ( fis ) which , under the leadership of the idbi , were trying to convince the other lenders of the project against the notice . the exposure of indian fis in the project is understood to be not covered by any guarantee either of the centre or the state . the times of india , friday , 27 april 2001 enron ready to pull out , but lenders say wait the dabhol power company board , which met on wednesday in london , authorised the company management to issue a termination notice to the maharashtra state electricity board . the company , however , may not pull out of the project yet , considering its lenders , who met on monday , opposed such a move and favoured renegotiations . sources present during both the meetings said that though foreign lenders supported enron on the termination issue , domestic financial institutions , led by the industrial development bank of india , prevailed over the deliberations to oppose any such drastic move . enron needs the lenders ' consent to file a pre - termination notice for pulling out from the project . the decision to empower dpc chief wade cline to issue a termination notice was taken with six votes in favour against a single idbi vote against such a move . another significant development during the entire proceedings was that the financial institutions made it clear that further funding of phase ii of the project will depend on the government of india assuring payment mechanisms . institutions are yet to disburse about 30 per cent of the sanctioned package , which is crucial for completing the phase ii expansion project . ` ` the board has given powers to wade cline to issue a pre - termination notice . but the meeting quite unanimously felt the need of the hour is not to terminate the project but to initiate serious re - negotiation proceedings , ' ' said mseb chairman vinay bansal , who attended the board meeting . ` ` mseb presented their views to the board members and it was understood by enron which also included the rs 401 crore penalty issue which is heading for arbitration proceedings . ` ` we have also made it clear that the tariff structure of enron is quite high and a downward revision of tariffs is unavoidable , "" bansal added . ` ` they cannot issue a termination notice without our consent since our exposure in the project is quite large and the lenders should approve any plans in that direction , ' ' said a top banker who was present during the lenders ' meet . ` ` there is a general consensus that the project must be completed and the proposal to terminate the ppa should be kept in abeyance , ' ' he added . the global arrangers for the dpc include anz investment bank , credit suisse first boston , abn - amro , citibank and the state bank of india , where all these parties conducted separate meetings with the company officials . however , some bankers said the company can file a termination notice even if one lender with a minimum 5 per cent exposure on the project favours such proceedings . meanwhile , in a clear reversal of roles , maharashtra chief minister vilasrao deshmukh said that the state government was not keen on terminating the ppa . ` ` we will ask them to refrain from taking any such harsh steps since that would be bad news for all of us , including dpc , ' ' deshmukh said . deshmukh was echoing union power minister suresh prabhu ' s sentiments , who said that the government wanted an amicable settlement of the payment row . he , however , added that termination of the project would not hurt foreign investments , and dismissed warnings by analysts that winding up the $ 2 . 9 billion project would be a blow to india ' s efforts to woo foreign investors . the dpc has already slapped one conciliation notice on the centre and three arbitration notices on the state government over non - payment of dues amounting to rs 213 crore and interest towards the bills due for december 2000 and january 2001 . meanwhile , mseb officials said in mumbai that the march bills amounting to rs 134 crore was paid on thursday as protest payment , despite the dispute over the amount . when asked on the future course of action , bansal said it was up to the dpc . the hindu businessline , friday , april 27 , 2001 dpc board authorises md to issue ppa termination notice the board of directors of dabhol power company ( dpc ) has authorised the managing director , mr neil mcgregor , to issue the notice of intent to terminate its power purchase agreement ( ppa ) with the maharashtra state electricity board ( mseb ) ` ` at an appropriate time ' ' . the decision was taken at a board meeting held in london yesterday . ` ` while mseb , which is an ` interested party ' , was not allowed to vote , it made a presentation clarifying its stand on the matter , ' ' a senior state government official said . the resolution to authorise the management to issue the termination notice was carried by six votes to one . idbi voted against the decision , the official said . the serving of the preliminary termination notice will lead to a six - month ` ` suspension period ' ' . according to clause 17 . 8 of the termination procedure , of the ppa : ` ` following the giving of a preliminary termination notice , the parties shall consult for a period of six months ( or such longer period as they may agree ) as to what step shall be taken with a view to mitigating the consequences of the relevant event having regard to all the circumstances . . . ' ' idbi and state bank of india , the principal indian lenders , had earlier persuaded the overseas lenders to hold their consent to the termination notice for some more time . at least one lender has to consent for the company to serve termination notice . it is understood that overseas lenders are in favour of termination of the project and are prepared to consent . however , domestic lenders are worried about the security of their advances if the ppa is abandoned mid - way . according to institutional sources , indian lenders are trying to get all the parties concerned to thrash out outstanding issues . the maharashtra and central governments too are in favour of a conciliation . mr vilasrao deshmukh , chief minister of maharashtra , yesterday went on record that the state did not want the project terminated . mr yashwant sinha , union finance minister , is also understood to be of the same opinion . ` ` the dpc will now have to decide what is the ` appropriate time ' to serve the notice , ' ' the official said . mseb pays rs 134 crore : meanwhile , mseb has paid dpc rs 134 crore towards its march 2001 bill . mseb officials confirmed that the bill was paid ` in protest ' ' today morning . ` ` they ( dpc ) had billed us for an amount of rs 146 crore . we do not agree with some of the items included , ' ' a senior mseb official said . the pioneer , friday , april 27 , 2001 enron testing maharashtra ' s nerves , t n raghunatha dabhol power company ( dpc ) has begun to put fresh pressure on the maharashtra state electricity board ( mseb ) , the maharashtra state government and the centre for an early resolution to the prolonged dispute between them , if the dpc board of directors ' decision to authorise its managing director to serve a contract termination notice to the mseb is any indication . the dpc board , in its meeting in london on wednesday , empowered the company management to sever its power supply agreement with mseb , a move that could inflict a financial liability of rs 2 , 840 crore on the centre . the decision to authorise the dpc management to issue a termination notice to mseb was taken by a vote of six to one after the maharasthra government representatives were prevented from voting on the ground of "" interested party "" . when contacted , the company ' s mumbai - based spokesperson , mr jimmy mogal , declined to comment on the reports about the decision taken by the dpc board . "" we have nothing to say on the reports emanating from london . we will express our views after a few days , "" he said . however , maharashtra chief minister vilasrao deshmukh on thursday termed the dpc board ' s decision as "" unfortunate "" . "" we have already requested the company not to take any harsh decision "" , mr deshmukh said in mumbai . official sources in the state energy ministry interpreted the dpc board ' s decision as a pressure tactic employed by the enron subsidiary to force the mseb to clear the pending power bills without any further delay . through its tough posture , the dpc wants to make its position stronger before it can formally agree for re - negotiations with the mseb , the centre and the state government for cutting the price of power supplied by it to the state electricity board . the sources said that the dpc ' s reported decision to authorise its managing director to stop electricity supply to the mseb did not mean that the enron subsidiary would actually go ahead with the scrapping of the power contract with the mseb . "" if anything , the dpc ' s reported decision is to mount additional pressure on the mseb for clearance of pending power bills and put itself in a stronger position in settling its dispute with the mseb . as part of its plan to arm itself with powers to break a contract in case situation goes beyond its control , the dpc had recently served a political force majeure to the mseb , the centre and the state government , "" the sources said . not surprisingly , the dpc ' s london decision comes on the heels of the maharashtra government ' s decision to set up a high - level committee , comprising representatives of the mseb , the centre and the state government to re - negotiate with the enron ' s subsidiary company for reducing the cost of power supplied to the state electricity board . meanwhile , amidst the threat of a possible termination notice hanging on its head , the mseb on thursday made a "" protest payment "" of the rs 134 crore disputed amount towards march bill of rs 146 . 64 crore to dpc . riday , april 27 the telegraph , friday , april 27 , 2001 enron signal to switch off dabhol power enron today took the first decisive step out of the controversy - ridden dabhol power company when it won an authorisation from the company ' s board to stop sale of power to maharashtra state electricity board ( mseb ) . the meeting of the company , of which the houston - based energy giant holds 65 per cent and the mseb 15 per cent , was attended by state energy secretary v m lal and mseb technical director p paunikar and it came days after its lenders discussed payment problems and a possible termination . the centre ' s liability , if enron decides to snap the agreement , will be a year ' s power bill and a termination fee of $ 300 million . however , the company will have to wait for six months from the day it serves the notice before it pulls the plug . the centre shrugged off the move , saying there would not be any adverse effect on foreign investment in power if enron walks out . "" we do not see fdi inflows into the power sector being hit , "" power minister suresh prabhu said . mseb officials said the ball is now in the court of dpc , which said its corporate policy did not allow it to comment on proceedings at board meetings . the decision coincided with a rs 134 - crore ' protest payment ' by the cash - strapped power board as part of the march bill worth rs 146 . 64 crore . there was speculation that mseb coughed up the amount to cool frayed tempers at enron ' s hub in houston , and because it was rattled by the sudden turn of events in the past few days during which the dispute had come to a head . mseb officials brushed away the allusions , saying the cheque was ready on wednesday but could not be handed over to dpc because of the state - wide bandh . "" we have a disputed payment of rs 12 . 64 crore , which will be taken up at the dispute - resolution forum , "" a board official said . last week , dpc told the state government and mseb it would no longer accept protest payments in a move to fortify its legal position . mseb officials say bechtel and general electric , the other partners who hold around 20 per cent in dpc , are willing to go along with enron corp in terminating the deal but financial institutions such as idbi are not game because it puts their loans at risk . investments made by indian institutions are not covered under the centre ' s and state ' s counter - guarantees , unlike those made by international lenders . maharashtra chief minister vilasrao deshmukh called enron ' s decision unfortunate . "" we had told state government officials attending the enron board meeting to stop the company from winding up its operations in the state as it will harm both parties . "" the statesman , friday , april 27 , 2001 enron threatens to pull out the enron crisis deepened with the board of directors of the dabhol power company deciding to authorise the managing director , mr k wade cline , to serve a notice of termination on the contract for the first phase of the $ 2 . 9 billion power project . the decision , which could lead to the cessation of dabhol ' s power supply to the state , was taken at the meeting held yesterday in london according to reports quoting the chairman of the maharashtra state electricity board , mr vinay bansal . while dpc officials refuse to comment on anything , it is learnt that mseb was itself prepared to serve a legal notice of termination just two days before the meeting . mseb was said to have been dissuaded by the nationalist congress party president , mr sharad pawar , and union power minister mr suresh prabhu , who had talks in new delhi with the maharashtra chief minister , mr vilasrao deshmukh , and an mseb delegation last monday . the state government has been served two arbitration notices while the centre is ready to go for conciliation with the dpc for failing to honour its counter - guarantee . further , the dpc has already slapped a notice of political force majeure which protects itself against undeserved claims in the event of exigencies that force it to take an extreme step . the union power minister , mr suresh prabhu , contended in delhi that since dpc contributed only 0 . 7 per cent of the total energy output of the country , its termination would not have such a phenomenal impact on the power situation . however , if terminations proceedings go through , enron corp , a 65 per cent share - holder in the dabhol power company , would stand to net a hefty amount in damages . the union power secretary has been quoted as saying that termination of the dpc would cost the centre rs 1 , 800 crore , which is the total of one years ' electricity bill and a termination fee of $ 300 million . according to an energy analyst , mr pradyumna kaul , the total liability would not cross rs 350 crore . however mr prabhu said in the lok sabha today that the that scrapping of the agreement would cost the centre rs 2 , 840 crore . it is learnt that on 20 april , mr deshmukh had given the go - ahead to the mseb to prepare a legal notice to be issued to enron during the meeting of the dpc ' s board of directors on wednesday . at the meeting , the energy minister , padamsinh patil , energy secretary , mr vinay mohan lal and mseb chairman mr vinay bansal , were also present . the notice was prepared over the past weekend and taken by the delegation when they called on mr prabhu on 24 april . however , the politicians convinced them that enron would not get tough , given its huge stake in the project , and that such a notice would not be necessary . the meeting thus ended with the decision to renegotiate the power tariff , with enron ' s consent . among those present at the london meeting were mr lal , mr bansal and mseb technical director , mr p paunikar , in their capacity as directors . however , they abstained from voting since they were deemed an interested party . the only vote to go against the decision was that of the idbi which is also represented on the board , it is learnt . the chief minister , mr vilasrao deshmukh , said the state was not in favour of terminating the project . this could mean that the latest manoeuvre to arm - twist the indian authorities could achieve its immediate target of getting the arrears accumulated over the past three months cleared . the mseb owes enron rs 146 . 64 crore for march 2001 and rs 229 crore for december 2000 and january 2001 . the centre today put up a brave face on enron ' s decision saying there would not be any adverse effect on foreign investment in power sector in the country , pti reported from new delhi . "" there will be no adverse impact as a result of any action by any domestic or foreign company . as far as we are concerned there will be no adverse impact on fdi in power sector , "" power minister suresh prabhu told reporters when asked about dpc ' s decision to authorise management to issue a termination notice to mseb . emphasising that there would be no fallout of such decision , prabhu said after the meeting of the cabinet committee on economic affairs "" we are expecting cooperation from many scandinavian countries as well as european nations in the power sector . "" in fact not only the power minister but also the prime minister of norway was here to inaugurate a seminar on power and he promised lot of cooperation in the sector . "" mid day ' dpc may not wind up ' maharashtra chief secretary v ranganathan has said that though neil mcgregor , managing director of the dabhol power corporation ( dpc ) , has been given complete powers with regard to dpc ' s operations in the state , including the authority to wind up operations , it does not necessarily mean that mcgregor will issue such a termination notice . mcgregor was given the powers at a meeting of the dpc board in london on wednesday . ranganathan said that state officials , including maharashtra state electricity board ( mseb ) chairman vinay bansal and power secretary v m lal , have reported back to him about the meeting in london . with regard to the state ' s failure to pay enron , ranganathan said , "" bills are prepared as per the power purchase agreement ( ppa ) and dpc owes some money to us . our people informed enron officials about this . . in fact , there was no reason to give powers to the md to slap a termination notice . "" in the london meeting , mseb and industrial development bank of india ( idbi ) representatives insisted that the dpc must pay rs 411 crore since it could not supply power whenever needed . chief minister vilasrao deshmukh has already termed as unfortunate the decision of the board of the enron - promoted dpc to give mcgregor powers to wind up operations . deshmukh added , "" we have already requested enron not to take any harsh decision . "" deshmukh had earlier said , "" we have directed state government officials attending the dpc board meeting to desist the energy company from winding up operations in the state , as it would be harmful to both of us . "" enron officials are keeping mum on the issue . mcgregor said , "" i am not going to give any comment . "" mid day , april 27 , 2001 enron offers ' no comment ' on renegotiation , h s rao a crucial meeting of the board of directors of the dabhol power company ( dpc ) , promoted by the us energy major enron , was held here yesterday apparently to discuss fate of its $ 900 - million power project in maharashtra , but there was no official word on the indian and state governments ' decision to renegotiate the contract . an enron spokesman declined to divulge what transpired at the meeting , saying the issues discussed at the meeting were ' confidential ' . "" we have not received any direct communication . unless we get it and evaluate the details , we have no comments to make , "" the spokesman said when asked about the proposed decision on re - negotiation of the project in which the maharashtra state electricity board ( mseb ) has 15 per cent stake . asked whether the board had taken a decision on empowering dpc managing director neil mcgregor to wind up its operations in india , the spokesman said he had nothing to say on them . enron has reportedly authorised mcgregor to look at various options including selling the company ' s stake in dpc . maharashtra chief minister vilasrao deshmukh said in mumbai that the state government would pay up the undisputed dues to the company . he said the maharashtra government "" is not in favour of terminating the 2184 - mw project , but wanted an amicable solution to the imbroglio . "" mid day , friday , april 27 , 2001 , committee to renegotiate enron deal a committee to renegotiate the power purchase agreement with the dabhol power company will be appointed by this evening , chief minister vilasrao deshmukh said today . addressing media persons after his meeting with the noted social reformer anna hazare at his official residence varsha , deshmukh said the committee would be formed by this evening or by tomorrow , at the most . he termed as unfortunate the enron board decision empowering dpc chief neil mcgregor to serve a preliminary termination notice on the maharashtra state electricity board and said the state was willing to negotiate the issue with power company . "" renegotiations will be held as per the suggestions made by the godbole committee and the center will also depute its representative on the renegotiating committee . we don ' t want to take any hasty decision , "" deshmukh saidhe pointed that the only bone of contention with the dpc had been its expensive tariff and hoped that the issue would be resolved amicably . when pointed that the enron board had taken a decision to serve the notice despite state  s willingness to appoint a renegotiating committee , chief minister said it was unfortunate . earlier , in his meeting with hazare , deshmukh promised to make necessary amendments to the right to information law recently passed by the state so that the information was easily accessed by the common people . he also gave a patient hearing to hazare on his complaints of corruption in various state departments and promised action against guilty after a thorough inquiry within three months . afternoon , april 27 , 2001 ' enron ' s on ! ' state govt . to renegotiate dabhol power project , by hubert vaz the us power giant , enron power corporation ' s willingness to wrap up the dabhol power project and leave the shores may not actually materialise , though the dabhol power company chief , mr . wade cline , has been authorised to do so , since the lenders for the project would have a decisive say in the matter . disclosing this , chief minister vilasrao deshmukh confirmed this morning that the state government would churn out a compromise formula by which the power project at dabhol could be continued , and at the same time enron did not feel slighted . "" enron has not yet conveyed to us about this decision . we are waiting for their letter , "" he said . when asked what sort of compromise the state government plans to forge , mr . deshmukh said , "" let our officers come back . after that we will decide a future course of action . but we are definitely going in for renegotiation of the project . it is very difficult to predict the outcome of enron ' s decision but as of now the project is still on . "" when asked whether the project could be moved to another state , if wound up from maharashtra , mr . deshmukh said , that was not possible as per the terms of the agreement between the us company and the state government . however , it was difficult for the project to move out of the state itself , he indicated . he also confirmed that both parties would face considerable losses if the project was terminated . the board of directors of the dabhol power company , which met in london on wednesday , decided to put an end to all controversies surrounding the project once and for all by empowering the dpc chief to terminate the project , if he deemed it fit . however , this decision , as of now , does not necessarily indicate the death knell for the project . the enron project , which had been riddled with controversies right from its inception , had been a pretext for the political parties in the state to drag each other on the mat from time to time . the previous sena - bjp government , which had been out to terminate the project , however , chose to continue with it following renegotiations with enron ' s top visiting officials like ms . rebecca mark . and , the democratic front government inherited the controversial project when the governments changed hands a year and a half ago . meanwhile , state energy minister dr . padamsinh patil , when contacted at the osmanabad circuit house , said the state government and the central government have decided to appoint a joint committee to renegotiate the project with enron . "" it is not easy for them to walk out of the project just like that . they will have to go in for litigation and this would prove costly for both sides , "" he said . in case the project is terminated , the government can still manage the power needs of the state , though it would be a bit tough job , he added .",0 +"Subject: re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 vince , welcome to ibuyit , enron ' s integrated procurement through payment solution . your ibuyit security form has been processed . here is your ibuyit eprocurement logon information : user id : po 0503778 password : your date of birth ( format : yyyymmdd - - 19670120 for january 20 , 1967 ) important : when you first log on to ibuyit eprocurement , you will be prompted to change your password . you may use the same password you enter when logging on to other sap - related applications , e . g . , ehronline . should you select a new password , your password in other sap - related applications will automatically reset . you only need one password for your sap user id ( pid ) . ready to launch ibuyit eprocurement ? access it from the ibuyit portal : for step - by - step documentation on ibuyit eprocurement , click here : for help , call the isc call center at 713 - 345 - 4727 . if you have any question regarding this request , please contact sap security . thanks ! from : raul davila / enron @ enronxgate on 04 / 19 / 2001 06 : 02 pm to : sap security @ enron cc : subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 approved - - - - - original message - - - - - from : tow , eva on behalf of sap security sent : thursday , april 19 , 2001 5 : 39 pm to : davila , raul cc : vkamins @ enron . com ; crenshaw , shirley subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 raul , raul , vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security . thanks ! shirley crenshaw @ ect 04 / 19 / 2001 03 : 01 pm to : sapsecurity @ enron . com cc : vince j kaminski / hou / ect @ ect subject : ibuyit form attached please find the completed form for vince kaminski , managing director , research group . he will be approving all purchases for cost center 107043 . > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect cc : subject : ibuyit form hi shirley there were two shirleys , so sending to both > isc help desk",0 +"Subject: re : brazil fyi . this is a deal i ' ve been helping them value correctly . here remi is , ostensibly the head of trading in brazil , and he doesn ' t even know what a digital option is . scary ! grant . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 03 / 30 / 2000 10 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - remi collonges @ enron _ development 03 / 29 / 2000 07 : 53 am to : grant masson / hou / ect @ ect cc : subject : re : odebrecht / ita deal thanks for taking the time to look at this transaction . i ' m currently trying to understand what a digital option is , but besides this i can say you ' ve got it right . remi",0 +"Subject: re : tiger team - wharton participants i lied a little - 2 people from the bottom of the list did submit resumes - i got discouraged and didn ' t check everyone . michele nezi marvin manager enron broadband services ( 713 ) 853 - 6848 michele nezi marvin 01 / 10 / 01 06 : 18 pm to : kristin gandy / na / enron @ enron cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : tiger team - wharton participants are these students first or second years ? if they are first years , we did not have a single one submit a resume for the summer associate position . michele nezi marvin manager enron broadband services ( 713 ) 853 - 6848 kristin gandy @ enron 01 / 03 / 01 10 : 17 am to : jeffrey a shankman / hou / ect @ ect , william keeney / hou / ect @ ect , catherine clark / hou / ect @ ect , rajesh chettiar / enron _ development @ enron _ development , tom dutta / hou / ect @ ect , jayshree desai / hou / ect @ ect , colin jackson / enron communications @ enron communications , laura howenstine / enron communications @ enron communications , michele nezi marvin / enron communications @ enron communications , jennifer fraser / hou / ect @ ect , natalie halich / enron communications @ enron communications , ranabir dutt / corp / enron @ enron , teresa dyar / na / enron @ enron , jeff golden / hou / ees @ ees , charles ward / corp / enron @ enron , sarah wesner / corp / enron @ enron , li sun / na / enron @ enron , gillian johnson / na / enron @ enron , lisa connolly / na / enron @ enron , michael j popkin / na / enron @ enron , kevin mcgowan / corp / enron @ enron , evan betzer / enron communications @ enron communications , jebong lee / enron communications @ enron communications , chu chu wang / corp / enron @ enron , brad hitch / eu / enron @ enron , betsy bassis / enron communications @ enron communications , matthew goering / hou / ect @ ect , claude tellis / enron @ enronxgate cc : subject : tiger team - wharton participants attached below is a list of individuals that will be participating in the tiger team event at enron in houston on the 18 th of january . keep these people in mind when it comes time to pick candidates to interview for the spring . call if you have any questions and i am still looking for wharton alum who would like to attend the dinner at churrasco ' s that same evening . thank you , kristin - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 01 / 03 / 2001 10 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - melinda mccarty 01 / 03 / 2001 09 : 43 am to : kristin gandy / na / enron @ enron cc : subject : tiger team - wharton participants vincent chen nicholas levitt deepa mallik jack rejtman heather thorne donna piazze kim whitsel tulika bhalla jaideep singh edson otani joshua leventhal pat henahan gustavo palazzi clay degiacinto steve lessar ram vittal omar bassel jason cummins dennis feerick",0 +"Subject: miscellaneous items vince : here are several items that you need to know about . 1 . paul johnson said that monday night would be fine for the dinner with spyros . 2 . lucy deathridge from risk called and needed your presentation for the boston conference by this evening in order to have copies made . i told her you were in meetings and had been very busy , i did not know whether your presentation was ready or not . we can have 500 copies made from the copy center and overnight them to her next week , but you won ' t be here on the 9 th to do this . do you have any suggestions ? 3 . i have been trying to schedule a meeting that mike roberts called about regarding e - online . he said to schedule it for friday at 11 : 30 am . i called mark palmer and he knew nothing about the meeting , but said he would be here at 11 : 30 am . however , i have been unable to reach dan diamond . mike said that you might have his cell phone ? thanks ! shirley",0 +"Subject: risk desk , issue # 1 hello - - listen , wanted to make sure you received a copy of our newest publication last week , the risk desk . because of the size of the files we sent out , quite a few bounced back because some corp firewalls halt emails over a certain size . anyhow , if you didn ' t receive the issue , hit the reply button and type "" resend risk desk . "" responce so far has been great for those of you that received the free copy - - we think you ' ll agree that it ' s soon to become the leading "" must read "" publication on market , credit , price and operational risk management in the energy space . also , just a reminder , the charter price for a one year subscription ( $ 199 ) ends soon . let us know . john sodergreen editor - in - chief scudder publishing group , llc ph : 410 / 923 - 0688 fax : 410 / 923 - 0667 johns @ scudderpublishing . com the desk , the risk desk , power executive the bandwidth desk , energy ebusiness",0 +"Subject: re : 1997 risk paper on pricing of electricity derivatives bernard , yes , i can read a dvi file . you can also cc my home address : vkaminski @ aol . com . i shall try to send you an answer to your question on weekend . vince "" murphy , bernard "" on 03 / 01 / 2001 09 : 18 : 58 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : 1997 risk paper on pricing of electricity derivatives vince , i can send you a scientific word dvi file ( at the weekend ) if you can read scientific word files ? the dissertation hasn ' t been reviewed by les or the external yet - although its been at forc for 2 months . i think that the empirical chapter is probably the one which would be of most relevance to both our company ' s businesses - although i ultimately didn ' t have the time to ' explicitly ' price the jump risk - premium which i conjectured is possibly implicit in the prices of exchange - traded electricity futures - options - rather i developed an implicit estimation procedure which will enable a rough assessment ( with a little bit of further work , but not too much ) be made of the price of jump risk in wholesale power markets . in other words , i assumed spot jump - risk to be undiversifiable , and essentially devoted 2 theoretical chapters to : 1 ) proving that a jump - diffusion trading model is "" incomplete "" ( synthesising the securities markets framework with martingale representation theory ) - note that i did not assume that markets could be dynamically completed with ' term structure ' securities as in the hjm w / jumps papers of shirakawa and das and ; 2 ) deriving an explicit risk - adjustment process for ' implementing ' the price of jump - risk using a jump - diffusion marginal indirect utility of wealth process ( ie . a jump - augmented production economy approach in the spirit of cir , bates , ahn whereas in the latter the driftless forward supposition means that i have to capture mean - reversion via the futures volatility function , and jumps are less easy to calibrate . any suggestions ? regards bernard - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 01 march 2001 14 : 54 to : murphy , bernard cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com subject : re : 1997 risk paper on pricing of electricity derivatives bernard , i am forwarding your message to my assistant and she will mail you a reprint . i would be glad to take a look at your dissertation . is it available as a publication , working paper ? vince "" murphy , bernard "" on 03 / 01 / 2001 02 : 17 : 39 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : 1997 risk paper on pricing of electricity derivatives hello vince , my name is bernard murphy - i received your e - mail address from les clewlow , who was my phd supervisor at the financia options research centre at warwick business school . i ' ve just finished my phd on electricity price jump diffusions : a theoretical and empirical study in incomplete markets - hence my interest in electricity price modelling and derivative pricing . i was looking to get hold of a copy of your 1997 paper , which has recently come to my attention : "" the challenge of pricing & risk - managing electricity derivatives "" , the us power market , risk publications , pp . 149 - 171 . and les suggested that i contact you directly ( les is travelling at present and doesn ' t have an electronic copy available ) to request an e - copy . incidentally , i am lecturer in finance / financial mathematics at university of limerick ( ireland ) and have taken a year out to work for caminus uk , where i am working on introducing and developing a markets - based approach ( spark - spread ) to real asset valuations in the uk power industry . thanks in advancve bernard murphy",0 +"Subject: enron ' s new weather system , courtesy the research dept . v last night , i tested our new system for real - time surveillance and messaging of the weather , and it delivers the data to desktops throughout the building more than 6 1 / 2 minutes before the national weather service updates their webpages . our current technology was web - scraping these pages via ftp , then parsing into a database . the impact of these 6 1 / 2 minutes for the hourly power traders is enormous - the weather stations upload their data around 53 minutes after the hour , and we can now receive them within 2 minutes later . we can now re - estimate our nonlinear stack model before the top of the hour , when hourly power trading begins . otherwise , we would not have model results until around 15 minutes after the hour . notably , hourly power trading is , for all intents and purposes , concluded by then ( they trade for 10 - 15 minutes and manage the scheduling for the next 30 or so miutes ) . so , effectively , we may now be one * hour * ahead of where we were just a few days ago , in terms of information . people are very excited up here , from the cto on down - thanks for letting it happen . c",0 +"Subject: research group accountant hi dawn : the research group has moved around so much that we do not know who to contact for accounting issues . we need to reverse some money back to one of the groups we are supporting , but do not know who to contact . do you have a clue ? we are also still using an sap corp . co # and rc # because we do not know where to go to get the new ena # ' s . if you could help in this we would really appreciate it . thanks ! shirley crenshaw",0 +"Subject: var for cob lst aug 2000 hi , i have run the var for cob lst aug 2000 . a summary of the results is as follows : i have also attached the model . again the prices for cocoa beans and gold have not been updated since the 26 th july . the gamma positions for the metals have been added to check the effect on the var . the change was small : delta var - $ 4 , 899 , 196 delta / gamma var - $ 4 , 780 , 797 this is not a live daily feed as andreas mannually created the file for me today so that we could do this check . regards kirstee",0 +"Subject: understanding risk and return of an insurance portfolio hi vince , i am enclosing a report on my thoughts about risk and return behaviour of an insurance portfolio . your input on this will be very helpful . i have given vasant a copy of this report and am working with him towards improving this . in the mean time , i happened to mention this idea in a meeting with david porter , per sekse , brad blesie and david hoog and there seems to be some interest in understanding how this works . in fact , david hoog subsequently reviewed this with me and suggested some changes . those changes have been included in this report . the idea here is simple and just a starting point . while it provides a broad picture on how risk and return will behave at portfolio level , i am hoping to be able to relax some of the assumptions to get more realistic picture in near future . looking forward to your input , sincerely , amitava",0 +"Subject: aga for 6 / 16 / 00 is predicted at 82 i will keep runing my aga model ( the molecule model ) for awhile . for the last two weeks the numbers that came out from the model are in the lucky side . see the following table . the following figures shows the overall fit . zimin",0 +"Subject: confirmation of meeting vince : thanks for introducing me as a speaker at the power 2000 conference . as per our conversation , please find enclosed my resume . i will come to your office at 1 : 30 pm , friday , may 12 , 2000 . please let me know if the dress code is casual or formal . thanks again for taking the time to talk to me regarding opportunities at enron . > sanjeev k khanna , m . sc . , p . eng . director , quantitative risk management pg & e energy trading 1100 louisina street , # 1000 houston , tx 77094 email : sanjeev . khanna @ et . pge . com tel : ( 713 ) 371 6647 , pager 800 - 526 - 4095 , cell ( 281 ) 302 - 8468 pg & e energy trading and any other company referenced herein which uses the pg & e name or logo are not the same company as pacific gas and electric company , the california utility . these companies are not regulated by the california public utilities commission , and customers do not have to buy products from these companies in order to continue to receive quality regulated services from the utility . - . doc",0 +"Subject: re krishnarao , pinnamaneni v review i made a mistake and put comments for another person into krishnar ' s prc . please make sure that you ignore it if i can ' t get it fixed . below is what i intended to put in . my apologies . i will get my assistant to get it deleted and put this information in on monday . it won ' t let me do it now . i guess it does not pay to leave 30 or 40 reviews to the last day . paula : please fix this for me and let vince know either that it is fixed or cannot be fixed . innovation / entrapraneurship no basis communicating goal setting no basis team work / communication excellent . very easy to work with and get along with . business instincts excellent . krishnar is consistent in asking to help out and asking what more he could do to help us out . analystical technical excellent . krishnar has a very strong grasp of what we are doing and how it should be done . overall excellent . my interactions with krishnar have been limited but positive . krishnar is always positive with a positive attitude to get the job done . strengths : very strong analytical skills with a desire to add value . areas for improvements i don ' t understand krisnar ' s role ( is leading all research people on our floor or just some ) well and have had limited interaction with him . { all has been positive when it has ocurred } this suggests that krishnar might spend more time define what his people are doing and getting feedback about their performance , and developing the project scope better .",0 +"Subject: re : the research lunch i would be very willing to make a presentation to you . this coming thursday unfortunately , i have a sick day scheduled ( babies will do this kind of thing to you ) and will not come into the office . would it be more practical to make the presentation to a select group of a few ( possibly ) interested individuals ? this might give us more shceduling flexibility and would also seem more appropriate , knowing that what i have is a set of suggestions for development and no earth - shuttering , live product . please let me know if this accomodates your needs , yannis joseph hrgovcic 03 / 29 / 2000 09 : 35 am to : yannis tzamouranis / hou / ect @ ect cc : subject : re : the research lunch yannis , shirley will know the room in which the lunch is scheduled . let her know what audio - visual materials you ' ll need . keep in mind that the research group is now about 40 people , some of whom will be watching the presentation on video from portland and from london . the best platform would be to get a pc - video or pc - screen link - up , so that everyone , including people watching remotely , can see your computer ' s monitor on a big screen . the itinerary for the lunch is that we meet at 11 : 30 and eat lunch and trade news for the first 30 - 45 minutes , and then at 12 : 00 or 12 : 30 at the latest , we have a presentation . we try to wrap up by 1 : 00 , so that what we discussed yesterday should make for a very good presentation in pretty much every way . from my experience , the audio - visual people need at least an hour advance warning to get the screens linked up . let me know if you need any help in getting you and jenny the things you need . joe - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 03 / 29 / 2000 09 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 29 / 2000 09 : 31 am to : yannis tzamouranis / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : is this data of interest to any of you ? yannis , it makes a lot of sense to get this info . also , you are welcome to make a presentation to the group this thursday at lunch . please , call shirley crenshaw ( x 3 - 5290 ) to coordinate and order sandwich you would like to have . vince joe , can you , please , babysit this presentation ( make sure we have all the audiovisual equipment we need , etc . ) . vince yannis tzamouranis 03 / 28 / 2000 02 : 50 pm to : yannis tzamouranis / hou / ect @ ect cc : ( bcc : vince j kaminski / hou / ect ) subject : is this data of interest to any of you ? fyi : the following file describes the contents of the monthly energy review ( application , current , and historical ) . the data is available through a doe site and we can get it for free and incorporate it in the lim database , if there is interest . review the attached file ( look for keywords of interest ) and let us know whether need dictates loading these datasets . for the market analysis and infomration management group , yannis c . tzamouranis enron it",0 +"Subject: re : eprm course chris , thanks for the invitation . yes , i am interested in the training course . i shall call paul bristow today . please , give me some indication regarding the dates . vince vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 "" chris strickland "" on 02 / 06 / 2001 02 : 20 : 52 am please respond to "" chris strickland "" to : "" vincejkaminski "" cc : "" vince \ ( home \ ) "" subject : eprm course hi vince , ? hope you are fine . i hope that grant ' s leaving ? hasn ' t affected your group too much ? ? eprm ' s paul bristow has been in touch about a var training course involving les , yourself and i . are you interested ? we would be ? extremely happy to work with you . he was talking about london and houston which i don ' t know if it fits with your travel schedule . maybe we can sort something out . ? i hope to have the next article with you by early next week . ? best regards as always , and many thanks for your book promotional efforts ! ? chris . ? ? ?",0 +"Subject: re : information vince , after checking into this issue i have found that the type of information requested is proprietary and not available for release . i will try to contact them and see if there is something else we can help them with but as far as the data is concerned i don ' t believe we can help them with that request . i am sorry i couldn ' t be of more help . thank you . shalesh ganjoo vince j kaminski 11 / 21 / 2000 09 : 15 am to : shalesh ganjoo / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : information shalesh , please , look into it . can we give them this information ? i see a remote possibility of a gain for enron : it ' s in our interest to support the growth of this market and part of the process is development of the infrastructure for this market and maintaining public interest . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000 09 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" yann d ' halluin "" on 11 / 16 / 2000 01 : 18 : 39 pm to : vince . j . kaminski @ enron . com cc : subject : information dear sir : the scientific computation group at the university of waterloo , ontario , canada , has recently started to be very interested in the recent developments of the bandwidth market . we find that the specifics of the bandwidth market offer challenges from the modelling point of view . however , we have encountered difficulties when looking for data , and we were wondering if you could help us . specifically we would like to know for a given city pair for the different existing type of lines ( e . g . oc 3 , ocl 2 , oc 48 . . . . ) 1 . what has been the spot lease prices ( e . g . $ / line - type / mile ) for the past 12 months ? 2 . what is the price of the dark fiber for a given type of line ? 3 . what is the maintenance cost $ / month ? ( for the same lines , e . g . oc 3 , ocl 2 , oc 48 , . . . ) 4 . what is the upgrading cost for the different lines ? ( e . g . how much does it cost to upgrade ) oc 3 - - > ocl 2 oc 3 - - > oc 48 ocl 2 - - > oc 48 5 . how long does it take to upgrade a line from a certain capacity to another ( e . g . 1 month , 2 month , . . . ) ? we realize that some of these questions may ask for confidential data , in that case we would really appreciate if an order of magnitude was provided . i look forward to hearing from you . sincerely , yann d ' halluin p . s : here is a link to our web page : http : / / www . scicom . uwaterloo . ca - - this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . any unauthorized review , use , disclosure or distribution is prohibited . if you are not the intended recipient , please contact the sender by reply e - mail and destroy all copies of the original message . ",0 +"Subject: re : fwd : summer internship - - ph . d . in chicago stinson , can you ask alex and tanya to interview this guy ? i wan to make a recommendation to celeste based on an this interview . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 19 / 2001 05 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - celeste roberts 01 / 18 / 2001 04 : 33 pm to : vince j kaminski / hou / ect @ ect cc : paul lebeau / na / enron @ enron subject : re : fwd : summer internship - - ph . d . in chicago vince : have you had a chance to interview ? if not , we can make arrangements to have candidate interviewed when we go to chicago for summer associate interviews . let me know and i will get the chicago recruiter to add to schedule . vince j kaminski 01 / 17 / 2001 03 : 51 pm to : celeste roberts / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : fwd : summer internship - - ph . d . in chicago celeste , i am a very good customer of your group . this is another student ( this time from chicago ) i would be glad to take into the group as an intern . the resume is attached at the bottom of this message . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2001 03 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - li xiao on 01 / 13 / 2001 01 : 41 : 29 pm to : vkamins @ ect . enron . com cc : subject : fwd : summer internship - - ph . d . in chicago hi , vince , this is li , writing from u . of chicago . i am in the second quarter here . the study and social life is extremely busy at the school . but i enjoy connecting the knowledge i learn everyday here with the experience i had with enron . a schoolmate of mine , a chicago ph . d . candidate in finance , is looking for an internship for the coming summer . i recommend him to write to you to see if you are interested in or if there is a need . if so , you can contact with him directly . he is a really bright guy . if not , hope you don ' t mind that i sell enron at school so hard . again , thanks for all the help you gave me . have a good new year . li p . s . : cover letter below and resume attached . li xiao university of chicago graduate school of business , class of 2002 ( 773 ) 955 - 0710 dear dr . vince kaminski , i am a ph . d . student in finance at the university of chicago gsb who = hopes to find a summer internship at enron of 2001 ( between june and = september ) . i heard your group from my friend li , who worked at enron = for 3 year . she spoke highly of you . if it ' s okay , i am primarily = interested in risk management . at the university of chicago , i will have completed all the ph . d . = courses in the area of finance by the end of the first year . as normally = it takes two years to finish the required finance courses , i decided to = take all the finance courses in the first year . in the fall quarter , i = already took empirical asset pricing and theoretical asset pricing and = did very well . in the winter quarter , i will be taking corporate = finance , continuous time finance and behavioral finance . i am exposed to = all fields of finance . prior to coming to chicago , i received a master ' s = degree in economics at washington university in saint louis where i = acquired skills in economic analysis . i also have a strong background in = statistics and mathematics . this makes me believe that i have acquired = the ability to do financial research . prior to coming to the united state , i was an outstanding graduate from = beijing university , china . i was the founder and president of beijng = univeristy society of oceanology . i also organized a research jouney in = the round - the - bo - sea economic region . these experience helped to hone my = communication and interpersonal skills . as illustrated above , my skills and expertise are ideally suited for = financial research . my resume is enclosed . in the event that you think = an interview is in need , my time is very flexible . your assistance is = appreciated . sincerely yours , jason chen ( huafeng ) 6022 s . drexel ave , apt 612 chicago , il 60637 ( 773 ) 955 - 0348 - resume . doc",0 +"Subject: dr . michelle foss - energy institute michelle , fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001 09 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - christie patrick 04 / 25 / 2001 07 : 43 am to : vince j kaminski / hou / ect @ ect cc : subject : dr . michelle foss - energy institute hi vince - - i ' ll take care of it ! thanks ! christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 25 / 2001 07 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 24 / 2001 05 : 15 pm to : christie patrick / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : dr . michelle foss - energy institute christie , i am forwarding you a message i have received from the university of houston . can you help them ? we have a very good relationship with the uoh . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - aisha jamal on 04 / 23 / 2001 03 : 15 : 29 pm please respond to aisha @ uh . edu to : vkamins @ ect . enron . com cc : mmfoss @ uh . edu subject : dr . michelle foss - energy institute dear mr . kaminski , i am writing to ask a favor for dr . michelle foss . as you know we will be running our "" new era "" program from may 14 - may 25 th . dr . foss was wondering if on may 22 nd ( between 1 : 30 pm and 4 : 00 pm ) , we would be able to bring our participants for a tour of your trading floor . at this time we will have 30 - 40 people , and since only 10 people maximum should really be on a trading floor we need to have 4 companies among which to divide our participants . at this time , we have a floor from coral energy , and are working with duke , and i will be contacting mr . paul roberts to arrange for the reliant energy trading floor . i was hoping very much that you would be able to direct me to the right person to contact to arrange this tour . will this be a possiblity ? i really appreciate your help very much . thank you ! best regards , aisha jamal energy institute 713 - 743 - 4634",0 +"Subject: re : rice students ken a tour would be great ( after 10 : 30 , if they can make it ) . please , let shirley know about the meeting . vince kenneth parkhill @ enron 01 / 29 / 2001 10 : 17 am to : vince j kaminski / hou / ect @ ect cc : subject : rice students vince , 19 c is available and reserved for 9 am to 10 : 30 , wednesday . would you like me to try and arrange a tour for the students or should we wait until we know more about their interests ? are their some other enron folks you would like to invite for wednesday ? ken",0 +"Subject: re : clustering for power tanya , as we discussed in the last meeting , to simulate secondary power curve we need correlated jump sizes . this is totally different from the current secondary price curve simulation which assume the perfect correlation and also totally different from the secondary gas basis curve simulation which is based on the hedging ratio . there are two more issues on my side i need to resolve : 1 . i want resolve the power basis curve issue . currently all power position on these basis curve are actually price positions . we are hard coding this : if power basis we add basis to corresponding region curve . i am trying to remove this hard coding by asking loading the price curve for all these basis locations . 2 . same is true for all those power f curves . these curves looks similar to those basis curves . currently we just directly map these f curves to the corresponding region curves . i would also prefer to load the price curves instead of the price differences . from research , i need those jump size correlations . clearly , all these involve many new development , unless we want to use simpler way to simulate secondary power curves . regards , winston - - - - - original message - - - - - from : tamarchenko , tanya sent : monday , april 16 , 2001 9 : 17 am to : lew , jaesoo cc : gorny , vladimir ; jia , winston ; kaminski , vince subject : re : clustering for power jaesoo , as we discussed last week on wednesday meeting can you , please , implement clustering for power curves by geographical region . this involves the following : 1 . deciding together with risk control how many geographical regions we want to use and which enron ' s curves belong to each region . 2 . deciding together with risk control how to choose core curves for each region . this decision can be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations . 3 . doing regression analysis for each curve versus the corresponding core curve . winston , can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ? should we wait for the stage re - fresh and what is the status on this ? tanya .",0 +"Subject: fwd : our conversation today return - path : from : awenda 2000 @ cs . com full - name : awenda 2000 message - id : date : mon , 4 dec 2000 12 : 47 : 07 est subject : our conversation today to : wkamins @ enron . com mime - version : 1 . 0 content - type : multipart / mixed ; boundary = "" part 2 _ 3 b . d 386 bc 9 . 275 d 329 b _ boundary "" x - mailer : unknown sub 111 hi wincenty , it was a pleasure talking to you today . i am enclosing my resume and look forward to talking to you again . best regards bibianna - bibianna res . # 2 . doc",0 +"Subject: re : tasha , yes , i think li xiao deserves the bonus . vince kaminski tasha lair @ enron 03 / 21 / 2000 02 : 24 pm to : vince j kaminski / hou / ect @ ect cc : subject : vince , linda vargo asked me because i am the administrator of employee referral program to contact you on whether or not li xiao is eligible for a bonus on his referral of alex huang . i have informed linda that the decision up to you . if you feel that alex huang was hired as a result of li bringing him to the attention of enron then the bonus is due . linda and yourself have communicated via e - mail on this issue in early february and it appears from that correspondence that li did encourage alex to e - mail his resume to you . please advise as to whether or not you want to award the bonus . thank you",0 +"Subject: re : lunch fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 28 / 2000 10 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - allan . roberts @ uk . arthurandersen . com on 09 / 26 / 2000 09 : 41 : 47 am to : shirley . crenshaw @ enron . com cc : subject : re : lunch shirley , thank you for your e - mail , i hope all has turned out well with vince and his family . this is my first day back in the office , so the reason for contacting you is to acknowledge receipt of your note and to inquire as to when vince will next be in the uk . please contact me at you convenience , allan to : allan roberts cc : date : 18 / 09 / 2000 16 : 18 from : shirley . crenshaw @ enron . com subject : re : lunch allen : i apologize ! i tried to call on the numbers below , but they would not go through . i sent you an email explaining why vince was not there , unfortunately it did not get to you in time ! vince ' s wife and son were driving to california for his junior year at stanford . they stopped in phoenix and his wife got sick . vince is afraid he will have to fly out there and drive them on to calif . please accept our deepest apologies and we will reschedule for october , if it is ok . regards , shirley crenshaw allan . roberts @ uk . arthurandersen . com on 09 / 18 / 2000 09 : 08 : 15 am to : shirley . crenshaw @ enron . com cc : chris . j . osborne @ uk . arthurandersen . com , richard . p . emerton @ uk . arthurandersen . com , mike . pilgrem @ uk . arthurandersen . com , angela . mindley @ uk . arthurandersen . com subject : lunch dear shirley , my colleagues and i were expecting to lunch with vince today . unfortunately , vince did not show . the reason for contacting you is to inform you of the situation and to enquire as to whether everything is ok . his plane arrived on time , but we have not heard from him today . if you need to contact me urgently , please call me on + 44 370 584 695 , or my ea angela on + 44 7304 8102 . regards , allan * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: complexity science and the energy industry brown bag > please join nesa / hea at the "" complexity science and the energy industry brown bag "" ~ april 18 th , 2001 if you have any questions , please call lana moore at ( 713 ) 856 - 6525 . thanks and have a great day ! ! - e - business . doc",0 +"Subject: request for natural gas technical analysis - - - - - - - - - - - - - - - - - - - - - - forwarded by patricia tlapek / hou / ect on 09 / 03 / 2000 10 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tim mckone @ enron 08 / 30 / 2000 10 : 21 am to : mike a roberts / hou / ect @ ect cc : patricia tlapek / hou / ect @ ect , anna santucci / na / enron @ enron subject : request for natural gas technical analysis hello mike , i work in rodney malcolm ' s commercial transaction group , focusing on developing energy management relationships with large volume industrial energy consumers . due to the volatility and high price levels of the natural gas contract , these consumers of natural gas are extremely concerned about this exposure , and they are asking for our assistance in helping them manage this exposure . one of the tools that these customers are requesting is technical analysis of the natural gas contract so as to determine entry points for their hedges . to the extent you could assist us with this analysis , we can proactively meet these customer requests and increase our deal flow . please advise as to the availability of your assistance . thank you , tim",0 +"Subject: raptor position reports for 1 / 29 / 01 vince , these spreadsheets have the most up to date numbers for the raptor structures . the summary sheet summarizes the assets and liabilities in all four . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 02 / 2001 04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - rakesh bharati @ enron 02 / 02 / 2001 10 : 27 am to : stinson gibner / hou / ect @ ect cc : subject : raptor position reports for 1 / 29 / 01 - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 02 / 02 / 2001 10 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : gordon mckillop on 01 / 31 / 2001 09 : 36 am to : rakesh bharati / na / enron @ enron cc : subject : raptor position reports for 1 / 29 / 01 - - - - - forwarded by gordon mckillop / na / enron on 01 / 31 / 2001 09 : 35 am - - - - - gordon mckillop 01 / 30 / 2001 03 : 58 pm to : ben f glisan / hou / ect @ ect , andrew s fastow / hou / ect @ ect , richard causey / corp / enron @ enron , rick buy / hou / ect @ ect , greg whalley / hou / ect @ ect cc : barry schnapper / corp / enron @ enron , andrea v reed / hou / ect @ ect , ryan siurek / corp / enron @ enron , kevin d jordan / corp / enron @ enron , michael kopper / hou / ect @ ect , chris loehr / hou / ect @ ect , anne yaeger / hou / ect @ ect , rodney faldyn / corp / enron @ enron , ron baker / corp / enron @ enron , amy . flores @ ljminvestments . com , l ' sheryl hudson / hou / ect @ ect , wes colwell / hou / ect @ ect , kevin howard / enron communications @ enron communications , david port / market risk / corp / enron @ enron , jordan mintz / hou / ect @ ect , maria lebeau / hou / ect @ ect , david maxwell / hou / ect @ ect , susie ayala / hou / ect @ ect , hope vargas / hou / ect @ ect , bob butts / gpgfin / enron @ enron , marnie lamb / na / enron @ enron subject : raptor position reports for 1 / 29 / 01 the raptor i credit capacity is $ ( 110 . 8 ) million as a result of the merlin credit derivative ( $ 63 ) and heartland steel ( $ 38 ) being reflected in the mpr for 1 / 29 . raptor iv has a notional capacity of $ 522 million available .",0 +"Subject: re : fw : fw : visit to enron by professor nalin kulatilaka of boston university hi nalin , martin lin asked if you have a paper "" or something "" related to the lecture you will be giving to us on may 17 th . ciao , iris - - - - - original message - - - - - from : lin , martin sent : monday , april 30 , 2001 8 : 52 am to : mack , iris subject : re : fw : fw : visit to enron by professor nalin kulatilaka of boston university is there a paper or something related to this topic that we can look over beforehand ? thanks , martin iris mack / enron @ enronxgate 04 / 27 / 01 05 : 42 pm to : chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / enron communications @ enron communications , martin lin / hou / ect @ ect , martin lin / contractor / enron communications @ enron communications cc : subject : fw : fw : visit to enron by professor nalin kulatilaka of boston university fyi - - - - - original message - - - - - from : mack , iris sent : monday , april 23 , 2001 2 : 45 pm to : crenshaw , shirley ; crenshaw , shirley ; dupont , anita cc : kaminski , vince ; ' nalink @ bu . edu ' subject : fw : fw : visit to enron by professor nalin kulatilaka of boston university hi , here is the title and abstract for professor kulatilaka ' s talk on may 17 th at our 11 : 30 am research group luncheon / seminar . iris title : "" using the mobile internet to make new markets "" abstract : professor kulatilaka will talk about some new ideas that he is working on which involve using the micro billing / payments capability of a packet - switched wireless network to create new markets . the potential markets range from spot markets for local spectrum to congestion - based pricing for highways .",0 +"Subject: pro opticus shirley , please , send this memo to the entire group and ask if this demo was given to anybody in our group . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 06 / 2000 05 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin sweeney 10 / 23 / 2000 06 : 53 am to : vince j kaminski / hou / ect @ ect cc : kara maloney / na / enron @ enron , mario de la ossa / na / enron @ enron , matt a brown / hou / ect @ ect subject : pro opticus vince , i understand that you or someone in your group had a demo from the above group last friday . i was wondering if this was part of a push to bring more options ' analytics to the traders ' desks , and if so , if you could explain what that effort looks like ? one of the global markets traders , mario de la ossa also had a look at the software as he has used it in the past . thanks , kevin",0 +"Subject: re : a personal favor anurag , i shall talk about vikas to our it people . can you send me his resume ? vince "" saksena , anurag "" on 05 / 07 / 2001 10 : 06 : 54 am to : "" ' vkamins @ ect . enron . com ' "" cc : subject : a personal favor vince , ? i have left a voice mail to you and will wait to talk to you personally . my brother vikas , who is now in london , is trying to make a switch from consulting world to working for a specific firm . over last few months , i have heard of great deal about the success of enron on line business which fits well in the area of his expertise . i am wondering if you know of some one in london who he can speak to regarding career opportunities . ? since i spoke to you last , a number of things have changed . recently , my manadate was broaden to include leading a charge for developing a risk management function for both the domestic and international businesses for gmac . needless to say , this is exciting albeit making the life a little more hectic than usual . ? talk to you later . ? anurag ? 952 - 857 - 6133",0 +"Subject: risk and purchasing meeting due to time constraints on mr . kaminski ' s schedule during the time that you all are in town from portland , the meeting being held on august 9 , 2000 in eb - 45 cl must be held to one hour ( 2 : 00 - 3 : 00 pm ) please have your questions , comments , and / or materials ready in advance and expect this to be a fast paced meeting . kristin j . harrelson enron broadband services , inc . procurement , logistics , and contracts 1400 smith , suite eb - 4573 a houston , tx 77002 phone : 713 . 853 . 6814 fax : 713 . 646 . 8582 cell : 713 . 594 . 1385 ",0 +"Subject: old email address > hello vince , > nie bardzo wiem czy pisac po polsku czy po angielsku : ) > co u ciebie slychac ? > u mnie troche zmian jak ze juz nie pracuje w scem , a przenioslem sie > do mieco ( a small marubeni backed energy - america trading company ) . > bardzo rozne od scem . najbardzij przypomina mi scem na poczatku z joe , jak > bylo 20 - 30 osob . sa i minusy i plusy . troche structure i research ale > przede wszystkim weather . trrovhe latam miedzy east i west bo sa officy > w obydwu miejscach . california jest ok w zimie : ) . > na bardziej personalnym froncie ; pamietasz dinner na ktory poszlismy > kiedys na conferencji w ny z catherine ( she used to work for williams - > works for morgan stanley now ) , we are dating ( for a while ) . it is a > good story how we met . so we owe you dinner : ) > jak bylem w atlancie to pracowala dla mnie christa grey . bedzie teraz > konczyla grad school in international relations ( with eastern european > slant ) , i zastanawia sie czy sa jakies mozliwosci polaczenia tego co > robila ze "" wschodem "" . co robila to bylo przede wszystkim vb > implementations modeli , ( roznego rodzaju ) , web based data collections , > basic research , teraz jest w gas structuring etc . she speaks russian > and was in ukraine / poland few times on peace corp assingments . she is very > bright and dedicated . myslalem zeby ja zwabic do californii ale ten > eastern european pociag jest u niej silniejszy niz u mnie : ) . i have here > resume , wiec jak bys myslal ze jest jakis fit i will foreward it to you . > troche tak mieszanka pisze , przepraszam > bede chyba w houston w pazdzierniku to moze bysmy sie mogli spotkac . > latwiej pewnie by bylo w ny ( mieszkam po nj stronie ( rent jest inny niz > w atlancie : ) ( 201 ) 222 - 0435 ) , wiec daj mi znac jakbys mial czas i ochote . > thanks > roman >",0 +"Subject: your lap top vince : the it migration team called and said that they need an email from you stating that you do not want your lap top "" ghost upped "" ? ( not sure if this is the correct term ) . they said they were supposed to do this to all computers during the migration process , but since you requested that they not do this , then they need an email from you with this request . you need to send the email to : kacee downey / enron @ enronxgate thanks ! shirley",0 +"Subject: cera conference call and web presentationthe final wave of rto filings : the ball is in ferc ' s court - cera conference call title : cera conference call and web presentation  * the final wave of rto filings : the ball is in ferc ' s court url : http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2243 electric transmission and north american electric power conference call and web presentation a cambridge energy research associates conference call & web presentation topic the final wave of rto filings - - the ball is in ferc ' s court * some surprises from the independent system operators * will the deadline be met ? the countdown to december 15 , 2001 * the ferc : a soft stance on rto filings ? format at the time listed below , our speakers will address this topic for approximately 30 minutes , with accompanying graphics presented on the internet , followed by an open question and answer period . speakers david clement , cera associate director , electric transmission hope robertson , cera senior associate , north american electric power larry makovich , cera senior director , north american electric power time 1 : 00 p . m . eastern , thursday , february 22 , 2001 eligibility clients eligible to participate in this conference call are those who subscribe to the electric transmission advisory service or the north american electric power advisory service . to enroll to enroll , please return this form via fax to kari paakaula at ( 617 ) 497 - 0423 , or enroll via e - mail at kpaakaula @ cera . com before 4 : 00 p . m . , wednesday , february 21 , 2001 . for the audio portion of the call , please call in on one of the following numbers approximately 10 - 15 minutes before the call : audio netscape navigator 3 . 02 or higher ; or sun hot java ( tm ) * close all desktop applications and disable your screen saver technical assistance : u . s . callers : if you are experiencing difficulties during the call , you may signal for technical assistance by pressing * 0 ( star , zero ) on your telephone keypad after you have connected to the audio portion of the conference . international callers : please re - dial and ask the operator for assistance before giving the confirmation code . for more information , please contact kari paakaula via e - mail at kpaakaula @ cera . com or via telephone at ( 617 ) 441 - 1362 . a recording of this call ( audio only ) will be available until march 22 , 2001 . to access this recording , please call 1 - 888 - 203 - 1112 ( within the u . s . ) or ( 719 ) 457 - 0820 ( outside the u . s . ) . please use confirmation number 507712 to access the call . * * end * * follow above url for full report . come shoot the rapids with us at ceraweek 2001 , "" shooting the rapids : strategies and risks for the energy future "" in houston , february 12 - 16 , 2001 ! for more information and to register , please visit http : / / www 20 . cera . com / ceraweek / e - mail category : conference call cera knowledge area ( s ) : north american power , to make changes to your cera . com account go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2001 . cambridge energy research associates",0 +"Subject: re : durasoft - - java class what do you think about option 2 ? - - sg - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 30 / 2001 12 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" siva thiagarajan "" on 01 / 30 / 2001 08 : 55 : 55 am to : cc : subject : re : durasoft - - java class stinson , ? here are some options considering what you have said : ? 1 ) ? we can do a full week of class from may 7 to 11 . ? 2 ) ? the second option is to split the course over two weeks . if you cannot possibly accomodate a full week of training then we can try this . ? we have done this before and it has worked fairly well . ? it would be like : ? week 1 ( 20 hours ) : ? feb 20 - 23 , tue - fri , 12 : 00 to 5 : 00 week 2 ( 20 hours ) : ? april 9 - 12 , mon - thu , 12 : 00 to 5 : 00 ? these are the only two weeks that are available for venkat to teach before may 7 th date . ? ? please let me know if these would work . ? i look forward to hearing from you . ? ? regards , ? - siva - - - - - original message - - - - - from : stinson . gibner @ enron . com to : siva @ durasoftcorp . com cc : vince . j . kaminski @ enron . com ; clayton . vernon @ enron . com date : monday , january 29 , 2001 4 : 01 pm subject : re : durasoft - - java class siva , ? ? ? ? i will have to check and see if we can accomodate a 5 day 8 to class . ? ? ? also , president ' s day is a holiday for us , so we may have to look at a later date . - - stinson "" siva thiagarajan "" on 01 / 29 / 2001 08 : 51 : 02 am to : ? ? cc : subject : ? re : durasoft - - java class stinson , i have attached a file along with this email that lists the software needed for our java class . we would like to do the class from monday thru friday , 8 am to 5 pm . ? that way we can complete the class within a ? week . ? we are unable to offer classes in the evenings or for few hours a week . we usually teach week long courses for our other clients and because of that ? we won ' t be available . currently , we can do the class from feb . 19 th through feb . 23 ( that is if you are working on feb 19 th , president ' s day ) . i will call ? you sometime this afternoon to talk further . ? please feel free to reach me if you have any further questions in the mean time . regards , - siva - - - - - original message - - - - - from : stinson . gibner @ enron . com to : siva @ durasoftcorp . com date : friday , january 26 , 2001 5 : 52 pm subject : re : durasoft - - java class > > siva , > > a few additional questions . ? ? can you tell me what software would be > required for the students ? ? ? also , ? when would venkat be available to start > the class and what type of schedule would you recommend ? ? ? would having two > hour classes twice a week from , say , 4 - 6 pm work ? ? we have a high level of > interest and just need to iron out the details . ? ? feel free to call me > ( late afternoon on monday might be best ) at 713 853 4748 or email . > > - - stinson > > > ( see attached file : javasoftwareneeds . htm )",0 +"Subject: re : risk model thanks vince . i made some real progress on the paper today . i ' ll try to ship you a revision sometime later this week . take care friend , john at 01 : 14 pm 1 / 17 / 01 - 0600 , you wrote : > > hi john , > > you have a very attractive family . you must be a very proud father and > husband . > > vince > > > > > "" john d . martin "" on 01 / 17 / 2001 11 : 09 : 29 am > > to : vince . j . kaminski @ enron . com > cc : > subject : re : risk model > > > got it and i understand . thanks > > john > > p . s . have a great day ! by the way , how ' d you like the martin clan picture ? > > > at 11 : 06 am 1 / 17 / 01 - 0600 , you wrote : > > john , > > > > i am sending you an old write - up on the risk management system . > > this is for "" your eyes only "" , though this info is out already . some people > > left > > the company and also the consultants who audited the model use these > ideas . > > > > > > vince > > ( see attached file : overo 907 . doc ) ( see attached file : prico 912 . doc ) > > attachment converted : "" c : \ windows \ desktop \ overo 907 . doc "" > > > > attachment converted : "" c : \ windows \ desktop \ prico 912 . doc "" > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: encounter article - shalesh ganjoo we have conducted an interview and written the attached article for the upcoming edition of the encounter , the associate & analyst programs ' newsletter . the interview was conducted with shalesh ganjoo in regards to his participation with the implementation of storage capacity as a commodity . to ensure our publication is printing the most accurate information , i have attached the article for your review . please confirm that the information provided from shalesh ganjoo is accurate . thank you in advance for your assistance , tracy arthur communication specialist associate & analyst department 713 - 345 - 7853",0 +"Subject: re : agenda for next week ben , i spoke with anjam and gave him the information about my trip . here is the short summary : 1 . if you are free for dinner on sunday , i would be glad to meet with you ( as well as anjam and steve ) . i would like to review what ' s going on in houston and london . 2 . we can arrange the interviews for all the candidates you lined up monday afternoon ( tuesday and wednesday mornings are the alternative dates ) . we treat the interviews as internal to the research group and we shall arrange full interview schedules at a later day for those candidates who pass our internal test . 3 . please , feel free to put on my agenda other meetings you think might be useful . please , coordinate the meetings with anjam and steve . i am busy on tuesday afternoon ( i a speak at a conference ) . vince benjamin parsons 02 / 14 / 2000 08 : 18 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : agenda for next week vince , could you give me an idea of your agenda for next week ' s london visit - in particular which day ( s ) would be best to bring some candidates in for interviews for my old role . thanks ben",0 +"Subject: rabi de toni : we talked to rabi . he ' s sitting on the fence for some good reasons , and he has to weigh what is fairly comfy job situation for one that starts out at a lower level but has more potential . wrt the green , vince verbally offered salary of $ 105 k plus a guarantee that his bonus at year end would be a minimum of $ 15 k cash . that ' s in addition to the $ 15 k sign on bonus . vince said that we would not bother working up a revised offer letter unless and until rabi came back with a verbal ok . he will ponder the offer ; probably for a few more days and get back with us . he may well call you to discuss the exact details of the benefits . esop , 401 ( k ) contributions , etc . regards , grant .",0 +"Subject: wharton trip jim , no changes in the schedule . the meeting will take place , as scheduled , on the 6 th of december at 9 : 00 a . m . we may have to cancel lunch with the professors as they have other commitments . the meeting will last about 2 hours . vince",0 +"Subject: option p & l gentleman : the erms system , as you know , has an excellent capability for decomposing option p & l into the following components : new deals curve shift gamma vega theta rho drift 2 nd order adjustments what i dont understand is the gamma component which is reported in dollars . the unit of measure suggests that incremental changes in a contract position is being associated with specific prices . these prices are the effective buy or sell prices associated with the dynamic delta position . stated differently , the standard taylor expansion has incorporated a price variable in such a way as to convert the unit of measure from gamma ' s standard contract count to total gamma dolalrs . this is something i dont understand . to date , inquiries to the risk management accounting group has further revealed that the gamma component of p & l is not well understood . this is what concerns me : bridgeline has 2 books with option exposures ( nymex and gas daily ) . both books dynamically hedged its positions during yesterdays large price move and , through anticipitory hedging in advance or during the large price move , secured sufficient coverage to neutralize expected changes in delta . however , our p & l from our underlying position did not offset our gamma p & l . consequently , i have to ask why ? im hoping that a brief look at the why gamma dollars are calculated may reveal something which will better guide our hedging decisions . any help is appreciated",0 +"Subject: re : enron tiger dinner donna , thanks for the restaurant recommendation . i would appreciate if you could coordinate the dinner with the students and the faculty . you can expect 4 persons from enron but the restaurant should allow for some flexibility , just in case . if the restaurant needs a credit card number or a security deposit , you can refer them to my assistant , shirley crenshaw at 713 853 5290 . vince piazze on 11 / 29 / 2000 12 : 34 : 33 pm to : "" ' vkamins @ enron . com ' "" cc : "" ' piazze @ wharton . upenn . edu ' "" subject : enron tiger dinner vince : i look forward to seeing you and jeff shankman next week in regard to the enron tiger kick - off meeting scheduled for wednesday , dec 6 in vance hall 210 from 3 : 00 - 5 : 00 pm . you mentioned possibly wanting to take the group to dinner after the presentation . i would like to recommend the palladium restaurnat , which is on locust walk here on campus . you may want to view their website at www . . com i think they have a nice menu and can accomodate large groups . there are several menus from which to choose , as well . please let me know if you would like for me to set this up for you and i will notify the students and faculty . please let me know if i can assist with your visit in any way . regards , donna piazze",0 +"Subject: calling @ 2 pm me . . . 4 pm you hi vince , thank you for allowing me the call to speak candidly with you tomarrow ( 1 / 9 / 2001 ) @ 2 pm pst ( 4 psm central ) about my students / candidates asking about enron . i am looking forward to the conversation . best wishes , jeff wesley ps - pls review the attachments below on your coffee break . thanks . pss - ask me about the controversial attachment i wanted to send you - but , didn ' t . always held in strict confidence . 949 813 2241 hotline 347 487 8957 voice / fax us ( 011 ) + 44 ( 845 ) 3341644 uk - - - - - begin pgp public key block - - - - - version : pgpfreeware 6 . 5 . 3 for non - commercial use 2 w 4 duudd 3 yisxx 8 wy 2 o 9 vpji 8 bd 8 kvbgi 2 oulwmufo 4 ozt 9 fbdxq 6 mdggzemyestsr / pogxkuayeyl 8 6 vq rpmynofdopnqnyej 2 + m 9 zwwyw 3 gbij 4 vktfyngoqevl 3 l 9 hg 2 l 7 lsls + 8 ywlvcqb llmkul 3 lxa 9 idp 6 bzu 9 drwdfrba 5 rdvbfylolythsp 0 zg 4 lolurfgyy + iakwe / 5 n 78 fc 32 lczbj 8 rvsvh + qljiyisjdvambww 4 hjlzc 9 tipdtggz 6 g 5 lgg 8 dfw 74 ezsx lzsy + zzncacst / dveok / + y 4 nrumqor + qggo 9 l 9 gwpqu 5 blxenpedteczmwome 48 z glkh + bz 39 qcfvc + hxgi 7 ogcon / rseitrweao / sy = = 2 nkw - - - - - end pgp public key block - - - - - * get free , secure online email at http : / / www . ziplip . com / * - private 9498132241 . pdf - worththemoney 9498132241 . pdf",0 +"Subject: re : hello hello vince , how are you this week ? my week is pretty relaxing - i am taking the training for the very last product of my company , called voicenet , and i will achieve the highest state of initiation with destia ( viatel ) products , ha . . . unfortunatelly i have not been promoted for business vip representative ( the position associated with t - 1 ) as i do not have any experience with it . i am blaming myself because i cannot discipline myself to study consequently every day for gmat . all the best to you and see you on saturday . patrycja - - - - - original message - - - - - from : vkaminski @ aol . com [ mailto : vkaminski @ aol . com ] sent : tuesday , march 14 , 2000 5 : 26 pm to : patrycja . dalecka @ destia . com subject : re : hello hello , still in new york . leaving tomorrow night for houston . see you on saturday . i shall send you more detailed directions on friday . take care . vince",0 +"Subject: mg metals - london research responsibility dear all , please ensure that all requests for metals research support in london are directed / forwarded to me in the first instance ( e . g . option pricing , var ) . this is to ensure speediest response time and to avoid duplication of effort as well as confusion on the part of our mg counterparts due to multiple ( duplicated ) requests for information . tanya and i are currently developing version la of the var models for mg metals . vince , ted and mg metals are looking to tanya and i to provide leadership in this area for the integration effort and after production of var v . 1 a , i will look to pass on responsibility for mg metals var systems integration to kirstee hewitt for the london side . regards , anjam ahmad research x 35383",0 +"Subject: re : response from lenos steve , i shall e - mail you my standard real option spin presentation + plus a presentation on enron ( for analysts ) . you can use a few slides to introduce the company . i would prefer not to disseminate the information about the use of amc . the industry does not know about it yet and i consider it a very powerful tool ( given its flexibility ) . i have the files on my laptop . i shall bring it to work to morrow and send it to you . please , remind me about it on thursday ( old age and the hectic pace here start showing up ) . vince steven leppard 04 / 26 / 2000 05 : 09 am to : vince j kaminski / hou / ect @ ect cc : subject : response from lenos vince lenos got back to me , and said he ' d prefer a high - level overview of real options in enron , perhaps using my notation to express the ideas . he wants me to keep away from the technicalities of my work . would you send me your ( usual ) powerpoint presentation on real options , and i ' ll look at manipulating it to include my diagrams . my own efforts to date have been on fairly limited power plant modelling / asset development , and i obviously don ' t have the high - level view you have . this will ensure i get the full range of real option type deals in my presentation . if required i could present the real option problems i have analysed , namely : 1 . maintenance scheduling in power plant operation ; 2 . gas storage ; 3 . power plant asset development , which would include ( 1 ) as a sub - tree . i will also need your advice on whether i can talk about the fact that we prefer american monte carlo to build our trees . i haven ' t used amc myself up till now , i ' ve been carrying out static optimizations , with different price curve scenarios being run through . i ' m still working on selling the full stochastic dynamic programming approach - people are just getting to the stage of accepting my deterministic dp , and they ' re still being supplied with useful products , as per my "" real options strategy "" document . cheers , steve",0 +"Subject: professor bitran ' s visit colleagues , professor gabriel bitran of mit will be visiting enron on wednesday 9 august . he will be here all morning . he would like to meet and discuss with us some of the issues and problems that are of interest to ebs . the goal is to suggest a research subject for one of his students that is of interest to ebs and its business . please let me know if you are interested in meeting him . i suggest having one open meeting ( perhaps one hour ) in which all of us can sit down and discuss the issues with him . - samer",0 +"Subject: re : steve leppard vince , i agree - i ' ll talk with sherriff when he gets back to london next week . - dale vince j kaminski 11 / 07 / 2000 20 : 49 to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : steve leppard dale , my recommendation is to make steve the head of the research unit in london . we were talking originally about september but i think we should accelerate this process . of course , anjam will be very unhappy about it , but we cannot manage around him any longer . i think that the promotion should be combined with a salary increase . i would like to offer him a significant increase that goes with expanded responsibilities and much higher visibility . a salary increase will also bring him closer to the market . we see the market for technical people going through the roof in practically every location where we operate . a contract is not a good solution in my view . it creates a sense of false security for both an employee and the company . i shall send a message to john sherriff with my recommendation . i shall cc you . i would appreciate if you could bring it up with john as well . vince dale surbey 07 / 11 / 2000 10 : 23 am to : vince j kaminski / hou / ect @ ect cc : subject : steve leppard hi vince , hr is working on a mid - year salary review for london people that have a noticeable gap between their compensation at enron and what we would have to pay in the market for a replacement . they highlighted steve as someone with a potential gap - particularly in light of what we ' re seeing in our quant recruiting effort for credit trading and research . i ' d like your opinion on the best way to make sure we keep steve happy and keep him at enron . there are several things i see we can do : 1 ) give him a mid - year pay increase to move him closer to market . i ' m not sure this is the best way to go , especially if we only offer him a token salary increase . 2 ) offer him more responsibility : what are your thoughts on timing for making steve the official head of the london research team ? with my move to ebs , should we accelerate this ? i think this is good way to keep him happy and motivated , and then follow up with a more meaningful salary review at year - end ( as part of the regular process ) that takes into account his greater responsibility . 3 ) we have some people that we ' re trying to get under long - term ( 3 - yr ) contract with a 12 - month notice clause . obviously anyone signing one of these will want significant up - front compensation for being handcuffed . we ' ve not had a lot of success with these here in london , and i would prefer to keep steve happy so he wants to stay with enron rather than contractually binding him to the job . i ' d value your thoughts on this . thanks , dale",0 +"Subject: receipts from visit dear vince , thanks again for taking the time to visit . ? both faculty and students got a lot out of your presentations . i have a favor to ask concerning the expense reimbursement process . ? can you mail all travel and lodging receipts to my secretary joan payne at the following address : joan payne department of finance 2163 ceba louisiana state university baton rouge , la ? 70803 thanks , jim garven james r . garven william h . wright , jr . endowed chair for financial services department of finance 2158 ceba e . j . ourso college of business administration louisiana state university baton rouge , la ? 70803 - 6308 voice ( 225 ) 388 - 0477 ? | ? fax : ( 800 ) 859 - 6361 e - mail : ? jgarven @ lsu . edu home page : http : / / garven . lsu . edu vita : http : / / garven . lsu . edu / dossier . html research paper archive : http : / / garven . lsu . edu / research . html ",0 +"Subject: the garp 2001 convention dear mr kaminski thank you very much for your prompt reply and for the information you sent me . i have incorporated this information in the program and am sending you it again for one last confirmation . ( in particular , i hope that i have your job title and organization name correct ? ) . measuring energy risk  ) tackling price volatility , adapting var , scenario modelling and regulatory requirements the challenge of modeling price dynamics in the energy markets . - seasonality - fat tails - jumps - mean ( or floor ) reversion price volatility in the energy markets : definition and estimation adapting value - at - risk for the energy markets : - combination of physical and financial contracts - correct representation of price dynamics and inter - market price relationships - capturing complexity of energy contracts historical vs . monte carlo simulation vs . scenario analysis . pros and cons of different approaches regulatory uncertainty and value - at - risk vince kaminski , managing director , research , enron corp . if there are no alterations required i will assume that everything is fine as it is and will proceed to the printers in due course . i also look forward to receiving a short biography of about fifty words in due course . ? if you have any queries please do not hesitate to contact me , otherwise i look forward to seeing you in new york in february . ? kind regards ? andreas _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900",0 +"Subject: re : eol pricing algorithm hi bob , some comments : 1 . you request enron position after successful market order , but not after limit order - - you may want it after limit order as well to be consistent . i am not clear on how you would use enron position . it is possible that the trading desk will have a target position in mind and they will set bids and offers in such a way as to try to achieve that target position , but this target position probably changes continuously and is not stored anywhere , and without this target position there is nothing to compare actual enron position to . of course , enron position may still provide some insights . 2 . you request bid - mid - ask prices for each trade - - - given that a successful trade may execute later than time of order ( especially for limit orders ) , would you need the evolution or range of bid - mid - ask over this time interval ( time of order to time of execution ) ? also , for failed trades , you may need the evolution or range of bid - mid - ask over the time interval from time of order to time of rejection . this again mainly applies to limit orders , as the time intervals may not be significant for market orders given the speed of execution ( something to check ) . - - - - - original message - - - - - from : lee , bob sent : monday , april 23 , 2001 8 : 33 am to : kaminski , vince ; shanbhogue , vasant ; barkley , tom cc : lu , zimin ; huang , alex ; gibner , stinson subject : eol pricing algorithm a draft data request for eol data we would use to study p & l patterns for the "" george "" pricing algorithm is attached for your review . i would like to send this to andy zipper and jay webb this afternoon . bob >",0 +"Subject: contact info i will be in one of these two places - - my home : 011 91 80 3312635 my in - laws ' home : 011 91 80 5262719 you can also contact me by email at vshanbh @ yahoo . com , but it is better to call since i do not have easy access to a computer , and there may be a delay with reading email . vasant",0 +"Subject: wharton event - junel 0 - insead vince , bryan has been unable to find anyone suitable to attend this symposium on saturday , so has suggested i attend , which i am happy to do . my only reservation is that my knowledge of this area is very limited , so it is likely i would just be an observer , rather than a participant . anyway just so that i am adequately prepared could you briefly describe our current relationship with this project , and also suggest any reading , like a magazine or paper , that would quickly aid my understanding of the topics to be discussed . many thanks , ben - - - - - - - - - - - - - - - - - - - - - - forwarded by benjamin parsons / lon / ect on 08 / 06 / 2000 08 : 36 - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 06 / 06 / 2000 16 : 46 to : benjamin parsons / lon / ect @ ect cc : subject : wharton event - junel 0 - insead - - - - - - - - - - - - - - - - - - - - - - forwarded by bryan seyfried / lon / ect on 06 / 06 / 2000 16 : 48 - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 05 / 06 / 2000 15 : 13 to : bryan seyfried / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : wharton event - junel 0 - insead bryan , i shall call you later today when i have a chance to read the message from ben . i wanted to ask you for a favor ( on a very short notice ) . we are talking to the wharton school about setting up a relationship with them and getting involved in one or more research projects with them . one of the potential topics is emerging technologies . the wharton offers a symposium in paris on june 10 on high tech acquisitions and it would make a lot of sense if you ( or somebody from london you could identify ) could attend and help us to evaluate the usefulness of this project . i am enclosing the message from the person in wharton running this program . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 05 / 2000 09 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tomczyk @ wharton . upenn . edu ( michael tomczyk ) on 05 / 18 / 2000 10 : 56 : 08 am to : vkamins @ enron . com cc : thomas . piazze @ wharton . upenn . edu subject : wharton event - junel 0 - insead vincent , it was truly a pleasure getting to know you in our meeting yesterday , and i look forward to the prospect of exchanging views in the future on a variety of topics pertaining to emerging technologies . per our discussion , i ' ve enclosed three files that include an invitation , agenda and rsvp form for the june 10 symposium on high tech acquisitions at insead . if you or the individual ( s ) who will be attending have any questions , please email : phanish puranam at : phanis 20 @ wharton . upenn . edu or you can call him at 215 - 898 - 1231 . this initiative will be expanded during the coming year and i believe that enron ' s involvement will give the company access to some of the early research in progress as it unfolds , and of course , if you become involved as a partner in the emerging technologies program you would have opportunities to help guide the direction of the research which is one of the partnership "" benefits . "" our next upcoming events are scheduled for : friday , september 8 "" what next on the internet ? "" this is a faculty update day with industry partners also invited . we will co - sponsor this with wharton ' s major e - business initiative . major issues addresses include "" new economics of the web "" and "" internet , anywhere . "" friday , october 20 "" first mover advantage , shakeouts & survival strategies "" designed by the et core group and presented in collaboration with the e - commerce forum . as i indicated during our discussion , participation in the emerging technologies management research program is by invitation and on behalf of our core faculty , i am pleased to extend an invitation for enron to join the program . to assist in your decision , we recommend having a representative attend the symposium in paris on june 10 to "" test drive "" the program . i ' ll send you a formal invitation which you are free to accept at your convenience , should you agree that enron ' s participation in the et program would be of value . please call or email if you have any comments or questions . best regards , michael - insead workshop invitation lett - insead workshop agendal . doc - rsvp form . doc michael s . tomczyk managing director emerging technologies management research program 1400 sh - dh / 6371 the wharton school philadelphia , pa 19104 - 6371 tel 215 - 573 - 7722 fax 215 - 573 - 2129",0 +"Subject: re : mutually agreed upon changes okay larry , i had a brief discussion with our lawyers . they are strongly advising us to keep the changes we earlier incorporated , but to which you have not assented . as this is a matter of company policy , unfortunately we do not have much room to maneuver . if it would help you to have a direct conversation with the lawyers to appreciate our company ' s perspective , i can arrange for a phone call . please advise . thanks . rakesh lawrencelrtnmt @ aol . com on 05 / 01 / 2001 08 : 06 : 47 am to : rakesh . bharati @ enron . com cc : subject : mutually agreed upon changes okay hi rakesh , thanks for your work on the non - disclosure agreement . your integration of our mutually agreed upon modifications looks good , rakesh . thanks ! i ' ll await your next version . larry",0 +"Subject: re : mscf speaker series pierre - philippe , i have contacted allison bailey to ask her to move her visit to the campus to coincide with my presentation . i hope to hear from her soon . vince kaminski p . s . nice web site "" pierre - philippe ste - marie "" on 08 / 10 / 2000 05 : 13 : 53 pm to : cc : subject : mscf speaker series dear mr . kaminsky , ? just checking if there was any progress . . . or anything i could do to help you . ? sincerely , ? pierre - philippe ste - marie - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pstemarie . homestead . com",0 +"Subject: eol stuff vince - i spoke with tom , and i completely agree and would like to hand all this eol stuff over to you . we need a sun server to take over the task . as it happens martin lin has one in his office he ' s not using and up to the task . his box could serve sas to enron , as well as handle listening in on the eol feedds and maintaining its database . martin ' s box technically belongs to ebs , but i think they are downsizing and wouldn ' t mind giving it up . in this way , you would have complete physical and administrative custody over the data and any work you do with it . i needn ' t be involved , and you can know your work is completely confidential . i ' ll make sas and the eol software available , as well as the necessary ram the server , at no charge . you just need to summon up some sysadmin resources to finish the job . there is a fine unix guy named ben thompson who will support you , i ' m sure . task : 1 ) upgrade ram on martin ' s server 2 ) install newest solaris os on server 3 ) install tibco and gnu software on server 4 ) install sas on server clayton",0 +"Subject: raptor vince how do we cope with the ethical issues this presents ? rgds dp",0 +"Subject: re : visiting enron may 4 th susan , thanks . it makes sense to call christie and explain the objectives of your visit in may . vince "" susan c . hansen "" on 04 / 06 / 2001 06 : 14 : 10 pm to : vince . j . kaminski @ enron . com cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu subject : visiting enron may 4 th dear vince , this is great news ! donna and i are delighted that you have time to see us on may 4 th . i ' ll be out of the office next week . by copy of this email to my assistant , carol lovell , i will ask her to get in touch with shirley for scheduling as well as directions on where to meet you . we ' ll be glad to meet with christie patrick as well . looking forward to meeting you , susan at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote : > susan , > > thank you for your message . i shall be glad to meet with you on may the > 4 th . > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to > set up the meeting . > > also , for your information , we have recently set up a special unit to > coordinate enron ' s > relationships with the universities . the person running this unit is > christie patrick . > please , feel free to contact her and give my name as a reference . i shall > coordinate the meeting > on may the 4 th with her . > > vince > > > additional information re christie : > > phone : ( 713 ) 853 - 6117 > > email : christie _ patrick @ enron . com > > > > > > "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm > > to : vkamins @ enron . com > cc : > subject : visit from stanford ? > > > dear dr . kaminski , > > let me briefly introduce myself , i am the director of corporate relations > for the school of engineering at stanford university . in this role , i am > always on the watch for ways to bring our faculty together with companies > that have an appetite for engagement with top tier research institutions . > > i believe you know hill huntington , who is a senior researcher with > stanford ' s energy modeling forum . he suggested i get in touch with you for > some ideas about contacts at enron . i ' m in the process of planning a trip > to texas in early may along with my colleague donna lawrence , the > university ' s director of corporate relations . we were hoping to be able to > include a stop at enron on our itinerary . right now it appears that friday , > may 4 th would work best for us but we ' re at the very beginning of our trip > planning . > > the purpose of our visit would be to review the current relationship > between enron and stanford , to give you an overview of current priorities > in the school of engineering , and ask for your help in identifying the best > points of contact . > > i look forward to hearing from you about your availability , > > sincerely , > susan hansen > > > > > susan c . hansen > director , corporate relations > school of engineering > stanford university > stanford , ca 94305 - 4027 > ( 650 ) 725 - 4219 susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: your visit to sydney in july vince i support raymond ' s email and would welcome the opportunity to have you give a presentation ( formal or informal ) to the trading group on latest research initiatives in houston . please let us know your schedule so that we do not overly burden you during your visit . look forward to seeing you and catching up over a beer . thnx paul - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on 07 / 05 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - raymond yeow 07 / 04 / 2000 08 : 21 pm to : vince j kaminski @ ect cc : paul quilkey / enron _ development , kirsty hogarth / enron _ development , elliott katz / enron _ development , david gray / enron _ development subject : your visit to sydney in july dear vince , hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in sydney . is risk organising your hotel ? otherwise , kirsty can organise for you , eg harbour view at the regent or convenience to the seminar location at the sheraton ? we would like to make sure that you have all the necessary "" comforts "" of home when you are with us , elliott & david can set up a desk for you in the office / trading room with phone etc so you can use one of our pc to access email or plug in your laptop . please let elliott or david kmow your requirements . how long will you be with us ? is this your first trip to sydney ? there are several of us in the office who would like to take you for a meal ( s ) / show you the sights etc and discuss the latest research findings with you whilst you are in sydney eg var . hear from you soon . raymond 725 pm 4 july",0 +"Subject: fw : citi , wells , enron , sl and i 2 form a b 2 b venture fyi only ! > - - - - - original message - - - - - > from : lubowski , andrzej > sent : tuesday , august 08 , 2000 12 : 42 pm > to : allen , paul ; dahir , victor ; gustafson , pete ; isaacson , bond ; mcewen , > tony ; onoda , john ; pascarella , carl ; saeger , rebecca ; thompson , > scott ( visausa ) ; vessey , paul > subject : citi , wells , enron , sl and i 2 form a b 2 b venture > > yesterday , citigroup , wells , enron , i 2 and sl corp . formed a new firm > . com inc . to streamline buying , selling and > facilitating payments in business - to - business e - commerce . > the announcement says that "" the new company will connect buyers and > sellers in e - marketplaces with payment processing , credit and other > services through multiple participating banks and financial services > companies . "" > while i don ' t fully understand yet what this new venture will do and how , > and most importantly , what implications , if any , it may have on visa , i > have a feeling that this announcement is different than the mass of > publicity seeking b 2 b plays that we have seen in the last year . > > enron will provide its broadband network , which allows scalability , and > bypasses the congestion of the public internet . enron is highly praised > for its demonstrated ability to radically reorganize existing industries > ( energy , commodities , risk management , etc . ) . > sl builds customizable internet financial services platforms and have > heavyweight partners ( ibm , andersen ) , and invested clients ( citi , royal > bank of canada , andersen , allianz , fleetboston , jp morgan , state farm and > zurich financial ) . > its chairman and ceo , commenting on the venture said : "" so far , various > companies have separately offered individual financial services such as > sourcing credit , escrow and payments authentication and processing , but no > one has offered them all together in a multi - bank model . the lack of a > complete financial services solution for e - marketplaces has been a major > inefficiency for b 2 b e - commerce and a bottleneck for these e - marketplaces , > restricting their transaction volume . . com will > offer a full package of financial services in an open system that can be > seamlessly integrated into any e - marketplace . "" > > my group , working with others , will try to get a better sense of the > nature of this new beast . on the surface , however , it looks like an > attempt to create a payment pipeline .",0 +"Subject: check julie , this message was returned to me a few times when i sent it from my home address . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 08 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 10 / 28 / 2000 12 : 12 : 57 pm to : julie @ lacima . co . uk cc : vkaminski @ aol . com , vkamins @ enron . com subject : check julie , as the book is about to be released to the market , i would like to start the process to issue the check to lacima . who will be the payee ( lacima ) and what is the address ? vince",0 +"Subject: stinson gibner & hector campos ken lay gave a high profile presentation on the current natural gas supply and price situation at a recent conference held by the interstate oil and gas compact commission , and some of the best graphs came from work that stinson and hector did ( see the attached , slides # 11 , # 12 , # 14 , & # 15 ) . i really appreciate their research and hope to be able to use their talents again for presentations for the office of the chairman . . - rob robert l . bradley jr . director , public policy analysis enron corp . p . o box 1188 , room 4724 a [ 1400 smith street 77002 ] houston , texas 77251 - 1188 ( p ) 713 - 853 - 3062 ( f ) 713 - 646 - 4702 assistant : joan stransky 713 - 853 - 4702 jstrans @ enron . com",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 n 2 qjb order for : amitava dhar we need to order the latest version of the "" sas "" manuel . enron it purchasing",0 +"Subject: request from our mexico city office vince do you or someone else down on the trading floor have a copy of this book ricardo can borrow ? ? ? if not any other ideas where i can get it > thx margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 04 / 18 / 2000 04 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - ricardo charvel 04 / 18 / 2000 04 : 02 pm to : margaret carson / corp / enron @ enron cc : subject : request margaret , first of all i apologize for not sending you the information to complete the chart that you gave me . i have been travelling because of work and then vacation , maybe i spent 3 or 4 full working days in the office in the last 4 weeks . now that i am going through my to do list i cannot find that page that you gave me . could you please send it to me again ? on the other hand i was wondering if maybe within enron possibly at info central or with one of your friends at the trading desk you could get me a copy of a book titled : chicago board of trade commodity trading manual isbn : 1579580025 publisher : fitzroy dearborn publishers , incorporated pub . date : december 1997 it si not in stock at the dot com libraries and it will take them a long time to deliver . i need this bbok in order to produce a document that steve kean requested from me a couple of weeks ago . thank you very much for your help . best , ricardo",0 +"Subject: meeting with vince kaminski and stinson gibner - november good morning professor ordonez : vince and stinson are both free at the present , on wednesday , november 8 th from 9 : 00 - 11 : 30 am . please let me know if any time during this period would work for you . regards , shirley crenshaw",0 +"Subject: re : informal exploratory interview with enron research group valeria : thank you for your prompt response . i have arranged the following schedule for your interviews . please let me know if any of the times are inconvenient . wednesday , september 13 th : 3 : 30 pm vince kaminski , managing director 4 : 00 pm grant masson , vice president 4 : 30 pm tanya tamarchenko , director 5 : 00 pm kevin kindall , manager when you enter the lobby of the enron bldg . , go to the security area and they will call me on the telephone to let us know you are here and will give you a visitor ' s security pass . your interviews will be held in ebl 938 . have a great weekend and we will see you on the 13 th of september . best regards , shirley crenshaw valeria . i . stone @ exxon . sprint . com on 09 / 01 / 2000 08 : 43 : 27 am to : shirley . crenshaw @ enron . com cc : subject : re : informal exploratory interview with enron research group date : september 1 , 2000 from : stone , v . i . ( valeria ) vistone - americas to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail subject : re : informal exploratory interview with enron research group i want to thank you for giving me this excellent opportunity to meet with enron research group . i would be my pleasure to visit with you any time after 3 pm september 12 - 15 th . if this time frame is not suitable for you , please let me know . also , it would be preferable for me to schedule the interview as late as you can in the afternoon or as early in the morning as possible . as i has already mentioned above , i am very honored by the interest displayed by enron research group in interviewing me . i believe your company displays an excellent example of the well respected leader of the energy industry . enron ' s overall orientation of staying on the cutting edge of technology ( with such breathtaking projects as e - commerce development ) will make the employment with enron very interesting , pleasant , and rewarding experience . furthermore , it will provide me with an excellent opportunity to make the contribution to your company ' s continuing growth and profit . - - - - - original message - - - - - from : fpexmail ( shirlecl ) sent : thursday , august 31 , 2000 5 : 29 pm to : stone , v . i . ( valeria ) subject : informal exploratory interview with enron research group ms . stone : your resume was forwarded to the enron research group and they would like to conduct an informal interview with you at your convenience . please let me know your availability the week of september 11 th . the individuals that would like to interview you are : vince kaminski grant masson kevin kindall tanya tamarchenko they will need approximately 30 minutes each ( 2 - 2 1 / 2 hours ) you may reach me at 713 / 853 - 5290 or by email : shirley . crenshaw @ enron . com i look forward to hearing from you . sincerely , shirley crenshaw administrative coordinator enron research group",0 +"Subject: re : project brainstorming for paulo april , i ' ll be in colorado until march 10 . we can schedule next week or you can talk to him directly . currently , ebs research is helping kevin howard and scott yeager ( indirectly via kevin ) in their effort to assess the value of an eyeball . paulo ' s research will complement this effort . the research that paulo will perform for you will be part of a bigger picture work that kevin howard has aked stinson and i to support . you can call me on my cell 713 - 516 - 5440 while i am in co . regards , ravi . april hodgson 03 / 02 / 00 07 : 13 pm to : stinson gibner / hou / ect @ ect @ enron cc : ravi thuraisingham / enron communications @ enron communications , vince j kaminski / hou / ect @ ect @ enron subject : re : project brainstorming for paulo i will be in my office friday and next tuesday . other than that i will be traveling so please call me on one of those days and we can discuss this further . i was in houston this week and will be back in houston 3 / 14 - 3 / 16 . let me know what works for you . regards stinson gibner @ ect 03 / 02 / 00 10 : 03 am to : april hodgson / enron communications @ enron communications cc : ravi thuraisingham / enron communications @ enron communications , vince j kaminski / hou / ect @ ect subject : project brainstorming for paulo april : paulo is the mit ph . d . student who talked with you by phone a couple of weeks ago . he is interested in trying to better define what type of project he might do over the summer with ebs . recall that he is interested in the psychological / customer behavior issues related to web commerce as compared to traditional commerce . perhaps the easiest way to proceed would be for you , me , ravi , and vince to get together to discuss possibilities . we could then include paulo by phone to get his initial reactions / suggestions . after an initial assessment , we could then plan on another visit for paulo . please let me know what your schedule would allow . thanks , - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 02 / 2000 08 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - paulo rocha e oliveira on 02 / 28 / 2000 12 : 19 : 18 pm to : cc : subject : re : next meeting stinson - thanks for your reply . i just got a call from someone at enron today about summer employment , so i think a meeting with april and your group would be very appropriate at this time . i am available to meet with april any day this coming month , except march 9 , march 10 , and march 17 - 30 . please let me know what works for you . thanks again , paulo",0 +"Subject: mg metals var preliminary modella - subject to minor updating / correcting dear all , i am leaving the office now , and sending you the preliminary model la for mg metals var that tanya , cantekin , kirstee have put together . we are now in a position to look at the var by metal for positions as of 19 th july 2000 , subject to some data that needs updating / correcting ; we still need to update some information / data flow processes as follows : - i ) factor loadings for silver , gold , cocoa beans and tc ( treatment charge for copper concentrate ) ii ) check correlations between nickel and alu and nickel and copper ( i got different answers to houston ) iii ) ensure latest forward price curves are included ( perhaps through live link to telerate / reuters ) iiia ) price for silver is wrong ( units should be $ per troy ounce ) , and similarly for gold ( price should be $ per troy ounce ) , also we need cocoa bean forward curve iv ) find a better way to extract positional information from mg metals / link to the spreadsheet in an automated fashion v ) add "" minor "" metals like cobalt , palladium , platinum , cadmium etc . ( n . b . we have 1 , 093 troy ounces of palladium short posn and 3 , 472 troy ounces platinum long as of 19 th july ) please feel free to add to this list if i have missed anything ; i believe that we have most of the bases covered in respect of issues to resolve ahead of the deadline of 7 th august and fully expect that we will deliver . regards , anjam ahmad x 35383 spreadsheet : p . s . the dll the spreadsheet requires is in o : \ research \ common \ from _ vsh \ value @ risk \ ccode \ debug \ varcsnl . dll - > most of you have access to this .",0 +"Subject: new site ' s url thank you all in advance for contributing to enron research site ! here is the new site ' s url : http : / / enaresearch . dev . corp . enron . com when system requests login and password , please use the login and the password that you use to login into the enron network . please send me your comments and suggestion , so that they will be incorporated into the site . sincerely , elena elena chilkina 713 - 853 - 4503",0 +"Subject: employment authorization hi vince , last evening i received the employment authorization card from ins , valid for one year . it seems milenia soto has submitted all the applications but for some reason she did not receive the receipts . i really appreciate your help and support . with regards , amitava",0 +"Subject: fw : my london "" wish list "" oops , i sent the previous email to another kaminski . - - - - - original message - - - - - from : mack , iris sent : thursday , april 26 , 2001 10 : 42 am to : salmon , scott cc : chaney , craig ; kaminski , jim ; dhar , amitava ; shanbhogue , vasant subject : my london "" wish list "" hi scott , as we discussed , i will be flying to london on monday to spend some time in enron ' s london office . i am really looking forward to meeting you and the others i have corresponded with via email , phone , vc , etc . on yesterday vince , vasant , amitava and i discussed my stay and london and the desire to make this trip a productive one . hence we came up with the following "" wish list "" of things i wish to accomplish while i am over there . if you think of any other important items to add to this list , please let me know . after that , we can forward the list to the parties involved to find out if they will be available to meet with me during my stay in london . thanks , iris iris ' london "" wish list "" scott schematic diagram of how the various models are tied together for the overall objective of coming up with final cds and dbs pricing product descriptions - more details ben * spss * answertree ( card book ) george * nnpm mike * need to create internal database to store d & b data . * how will d & b data be stored ? need flexibility for data manipulation & model development . bryan & markus * feasiblity model : what calculations do they already have ? * breakeven spread * moral hazards issues * legal contract issues to resolve moral hazard issues . * a company can ' t buy bankruptcy on itself ? * need to have "" accurate "" information for correlation between reference & counterparty",0 +"Subject: risk 2000 , 12 - 15 june , boston - speaker confirmation thank you for agreeing to speak at risk magazine ' s annual us congress , risk 2000 , taking place in boston between 12 - 15 june 2000 . ? could you please return this email with your full postal address and contact details so we can send you hard copies of the brochure , inform you of congress and hotel locations and let you know when we will need a copy of your presentation . if you are part of a panel discussion , myself or the panel moderator will contact you shortly . ? in the meantime the full brochure can be viewed and / or downloaded from the following web address - ? www . riskpublications . com / risk 2000 us ? if you have any further questions , please don ' t hesitate to contact me . ? best regards , ? oliver bennett senior conference producer ? ? direct : + 44 ( 0 ) 20 7484 9880 ? risk publications , 28 - 29 haymarket , london swly 4 rx fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk www . riskpublications . com",0 +"Subject: reminder - enronanywhere portal project meeting you are scheduled to attend the enronanywhere portal project meeting . when : wednesday , april 18 , 2001 where : eb 50 m dining room time : 12 : 00 - 4 : 00 lunch will be served . thank you in advance for helping us to create one enron . your attendance and participation is certain to make this project a huge success . call me if you have any questions . thanks , marie hejka enronanywhere 3 9698 p . s . note , we decided not to send a pre - workshop assignment . see you there .",0 +"Subject: re : lsu seminar visit dear vince , would you mind emailing to me a short biography / vita sometime when you get a chance ? also , if you have a paper to circulate or any powerpoint slides that you ' ll want to use either in your presentations to my students thursday afternoon , 2 / 3 , or to the faculty seminar on friday morning , 2 / 4 , please email these to me . this would be greatly appreciated . my colleagues and i are looking forward to your visit on feb . 3 - 4 to lsu . sincerely , jim garven james r . garven william h . wright , jr . endowed chair for financial services department of finance 2158 ceba e . j . ourso college of business administration louisiana state university baton rouge , la 70803 - 6308 voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361 e - mail : jgarven @ lsu . edu home page : http : / / garven . lsu . edu vita : http : / / garven . lsu . edu / dossier . html research paper archive : http : / / garven . lsu . edu / research . html - attl . htm",0 +"Subject: modeling in real options vince , my name is jeanne anne klein and i am a financial modeler working with mingcheng lian on a high profile pipeline project in china . zimin lu referred us to you regarding questions we have on the real option valuation approach . we are very enthusiastic about what we have read and heard about this valuation method . we have been doing some preliminary research on the real option valuation approach and believe that integrating this approach into our financial model would bring a significant increase to the value to the project . we have identified some deal aspects we believe would be ideal to valuate as real options . our goal is to work with the development team to structure the deal to incorporate the real option valuation approach into the model enabling us to arrange the contracts within the deal to optimize the project ' s value . we would like to arrange a meeting with you at your ealiest convenience to brainstorm on additional deal aspects that can be valued using the real option approach as well as on ways to quantify these aspects using the real option valuation method . please advise if you will be able to meet with us within the next week or two . thank you for your kind attention , jeanne anne x 6 - 6547",0 +"Subject: re : lawyer what do i need to do to move this thing forward ? i suspect that the problem is basically with the lawyers . they only know how to stop things , but in a way they play a role in global society . if it were not for the handicaps they lay on us the rest of the world would never have a chance . - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : macmilli @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com sent : 3 / 8 / 01 12 : 12 pm subject : re : lawyer ian , sorry for a delay in getting back to you . i have one challenge i did not anticipate when i talked to you the first time about our real options internal seminar . the materials were prepared in collaboration with a professor from another school , and there is some sensitivity regarding the intellectual property rights and the ability to distribute the materials outside enron . please , give me some time to find out if i can work around this issue . vince "" macmillan , ian "" on 03 / 07 / 2001 06 : 46 : 28 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : lawyer i still have not heard from your lawyer . i would like to see whar materials you are using and assess how we could work on the topic of real options with enron",0 +"Subject: ny march real options conference please find attached the final program for an exciting conference on "" real options valuation in the new economy : internet / e - commerce , r & d / pharmaceuticals , energy . "" the conference , organised in new york city march 13 - 15 by the real options group and co - sponsored by ernst & young llp , is addressed to a corporate audience . the chairman of the conference is prof . michael j . brennan of ucla who will deliver the opening address , and the keynote speaker is prof . stewart c . myers of mit . many of the world / s thought leaders in real options analysis , along with prominent experts from many leading corporations will also share their ideas and experiences . please note that the deadline for hotel registration is february 21 ( see the attached brochure for hotel details ) and conference fees increase by 20 % for those registering after march 1 . the ( full ) conference brochure and on - line conference registration are available at our website www . rogroup . com we hope that you will be able to participate and would appreciate it if you could also communicate this announcement among other interested colleagues . in fact , it would be most helpful to us and would be greatly appreciated , if you could send me ( also cc . to amicaliz @ sda . uni - bocconi . it ) a list of 5 - 10 colleagues to whom we can send the electronic version of the brochure . best wishes , lenos trigeorgis president , real options group - rognyconference . pdf lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: re : meeting on feb 8 , 2001 dear mr . nur azmin abu bakar , thanks for your prompt reply . please , let us know how many members of your team will visit enron . i look forward to our meeting on february 8 . vince kaminski azminab @ petronas . com . my on 01 / 02 / 2001 06 : 38 : 33 pm to : vince . j . kaminski @ enron . com , khairuddinbmjaafar @ petronas . com . my , shirley . crenshaw @ enron . com cc : subject : re : meeting on feb 8 , 2001 dear kaminski , happy new year and thank you for the reply . we are honored to have lunch with you and your team however we have another appointment at 2 . 30 p . m . regards vince . j . kaminski @ enron . com on 03 / 01 / 2001 07 : 38 : 19 am to : azminab @ petronas . com . my cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com subject : meeting on feb 8 , 2001 dear sir , i would like to apologize for the delay in responding to your fax . i was on vacation for the last few days . i shall be honored to meet your delegation on thursday , february 8 at 10 : 00 a . m . please , let me know if you will be free for lunch after the meeting . vince kaminski",0 +"Subject: ebs stinson , the spreadsheet below shows the allocations i made for ebs . the numbers in magenta show percentage allocations , of course , samir and samer are gone , ad so is roman . the problem is that once i give the percentages to accounting they become fixed for one year .",0 +"Subject: white marker board wall for eb 19 c 2 good morning all : i don ' t know where this request should go , would you please direct me in the right direction ? conference room eb 19 cl has one whole wall that is a white marker board . we would like to see about having a wall like this installed in 19 c 2 . please let me know the costs and time involved . vince kaminski has approved . thanks and have a great day ! shirley 3 - 5290",0 +"Subject: re : wednesday meeting eric , i think we can skip the meeting and discuss any issues between us . the meeting was convened at the request of doug arnell , but jeff shankman thinks that there is no need for formal meetings : we can ask them for the information directly on as needed basis . vince enron north america corp . from : eric groves 09 / 05 / 2000 11 : 01 am to : vince j kaminski / hou / ect @ ect cc : subject : wednesday meeting are we still having the meeting tomorrow ? at what time ? thanks , eric",0 +"Subject: new expense account forms hello all : along with the inception of the new sap time keeping , we also have new expense account forms . they will no longer use your social security number as the id on your expense accounts , they want you to use your new employee # that was sent to you by email to access hronline . in order for anita and myself to continue to do your expense reports , we will need your new employee # . please send this number to me as soon as possible . thanks ! shirley",0 +"Subject: cv - keith baggerly i have attached a copy of my cv as a postscript file . if you need further info , or a different format , please let me know . enjoy ! keith baggerly asst professor , statistics rice university ( 713 ) 348 - 5282 kabagg @ stat . rice . edu - 00 apr . ps",0 +"Subject: re : enroll in intro to java at productivity point , feb 12 - 16 marty : how many do we need to enroll in order to bring the class to enron ? thanks ! shirley marty chrisman @ enron 01 / 25 / 2001 04 : 58 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : enroll in intro to java at productivity point , feb 12 - 16 ok . the discounted rate applies regardless of numbers enrolled per class . marty shirley crenshaw @ ect 01 / 25 / 2001 02 : 45 pm to : marty chrisman / corp / enron @ enron cc : subject : re : enroll in intro to java at productivity point , feb 12 - 16 marty : vince wants to wait and see how many actually need this training before we enroll anymore from his group . right now tanya and rabi are all that have approval . i will let you know if we decide to do more . thanks for all of your assistance . shirley marty chrisman @ enron 01 / 25 / 2001 11 : 46 am to : twolfe @ propoint . com cc : ahmad farooqi / enron @ enronxgate , jared lane / na / enron @ enron , tanya tamarchenko / hou / ect @ ect , rabi de / na / enron @ enron , shirley crenshaw / hou / ect @ ect subject : enroll in intro to java at productivity point , feb 12 - 16 please enroll the following in the java class in houston , feb 12 - 16 ahmad farooqi , jared lane tanya tamachenko rabi de ahmad & jared are application developers . tanya & rabi are in the research group . i may have one or more names to submit and will send those to you as soon as i get them thank you , marty chrisman 713 - 853 - 4567",0 +"Subject: re : good morning / afternoon thanks vince . i ' ll get right on it . john at 08 : 10 am 4 / 2 / 01 - 0500 , you wrote : > > john , > > the phone number for ken lay is ( 713 ) 853 - 6773 . > my recommendation is to call mark palmer first and discuss the book > with him . his recommendation will open the door . i shall mention this to > him > as well . mark ' s phone number is ( 713 ) 853 - 4738 . > > vince > > > > > > > "" john d . martin "" on 03 / 30 / 2001 12 : 12 : 50 pm > > to : vkamins @ enron . com > cc : > subject : good morning / afternoon > > > vince , > > one of my colleagues here at baylor is writing a book about "" the business > of heaven "" in which he interviews prominent business leaders . bob darden > is his name and he ' s a former journalist and nice guy . he would like to > contact ken lay about being one of his interviews . do you think this is > possible ? if so , could you give me an address / phone numbers that bob might > use to contact ken ' s secretary about setting up an interview ? > > if this is in any way "" not ok "" please just say so . > > see ya , > > john > > > date : fri , 30 mar 2001 11 : 35 : 03 - 0600 > > from : robert darden > > subject : yo ! > > x - sender : "" robert darden "" ( unverified ) > > to : j _ martin @ baylor . edu > > organization : the door > > x - mailer : mozilla 4 . 04 [ en ] c - flashnet ( win 95 ; i ) > > > > hi john - - i enjoyed our meeting yesterday . this looks very promising . > > meanwhile , as i mentioned at the table , i ' m getting a little nervous > > about the book that is due june 1 . > > one of the names on our "" wish "" list of interviewees for "" the business of > > heaven "" is ken lay at enron . > > would it be possible for you to give me a good address and phone number > > for mr . lay ' s office ? > > and may i mention your name in the cover letter ? > > i would be forever indebted . i might even buy the next lunch . > > bob > > p . s . thanks for sharing your concerns about church yesterday , too . i ' m > > genuinely sorry things didn ' t work out better and feel more than a > > little embarrassed that i didn ' t work harder to make you guys feel more > > welcome and connected . on the other hand , please know that mary and i > > will always love you and consider you both friends . i know you ' ll be > > happy at lake shore - - even as we miss you at 7 th ! > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : anshuman thanks for the clarification vince i appreciate it . we have a significant resource problem here in india , given we have a renegotiation about fall in our laps . anshuman is one of our key analysts and we are very proud of his abilities and future potential for enron . once we have dabhol off the "" life support system "" we could look at a longer assignment . as far as the present one month assignment is concerned , i would rather go for an early start say 5 th feb till 5 th march . is this convenient to you and jeff . neil vince j kaminski @ ect 01 / 24 / 2001 10 : 41 pm to : neil mcgregor / sin / ect @ ect cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , sandeep kohli @ enron subject : anshuman neil , i would like to apologize for the confusion regarding anshuman . we have floated a number of possible scenarios regarding his trip to houston and there was a lot of confusion regarding the terms ( given that i was talking to sandeep every few days ) . currently , we expect anshuman to come to houston for one month to work on the dpc project ( at jeff shankman ' s request ) . the lawyers advised me that we need an ll visa for him , irrespective of the duration of his stay . sorry for the confusion . vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: final project deadline is april 30 dear energy derivatives students , the deadline for the final project has been set for april 30 , 2001 . all grades will be submitted to rice administration by may 4 th ( university requirement ) . please mark your calendars ! ! ! if you have questions , please contact vince or me . good luck ! jason sokolov",0 +"Subject: re : hello from vince kaminski at enron vince , thank you for forwarding the following messages . i am sorry that i am just now getting back to you , my lotus notes was down all afternoon yesterday . we currently have the cal berkeley general presentation set for wednesday , october 18 th at 7 : 00 p . m . which works out well because it is just prior to the time deadline for students to submit their resumes . the general presentation is a general overview of enron , the program , the interview process , as well as a chance for students to meet and chat with enron reps . since this is the first year that we are recruiting from cal berkeley , i think that it is important that i attend this event on campus so that i can answer any interview process questions . i will check the schedule and see if it is possible to move the presentation to the 23 rd . the only negative is that i will not be able to attend because i will be conducting interviews at rice that day . also , it is very difficult to find a location to hold the presentation , and i need to check on location availability on the 23 rd . however , i do think that we should take advantage of the seminar on campus . this may mean that they are two seperate trips to campus . perhaps , we can also set up some other presentations for the 23 rd or even the monday prior . although i would like to be able to attend the class / seminar presentations , i don ' t think that it is as vital as the general presentation . what are your thoughts ? thanks , ashley vince j kaminski @ ect 08 / 24 / 2000 08 : 58 am to : "" shmuel oren "" cc : vince j kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron subject : re : hello from vince kaminski at enron shmuel , thanks for the message . i am working with our recruiter , ashley baxter , to finalize the date of the trip . i shall shoot for october the 23 rd if this date works for the rest of our team . vince "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am to : vince j kaminski / hou / ect @ ect cc : subject : re : hello from vince kaminski at enron dear vince . i sent you a reply earlier this month but i haven ' t heard from you about the date of your visit . our department has a seminar every monday . if you can schedule your visit on a monday i would like to invite you to give a seminar which will be attended by many of our graduate students and faculty and will give you an opportunity to tell them about your program . with sufficient lead - time i can advertise the seminar in the hass school to their financial engineering students . shmuel . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : ; ; sent : tuesday , august 08 , 2000 10 : 59 am subject : hello from vince kaminski at enron > shmuel , > > i hope you remember me . i visited you together with aram sogomonian , a > good friend of mine , a few years ago . i am currently responsible , among > other things , for recruiting graduates with finance and / or technical > backgrounds at the university of berkeley . i would be glad to give you a > call and talk more about the details of our program . my colleague , > ashleybaxter , from the analyst / associate program at enron would join me > as well . > > i am sending you a copy of the brochure about the analyst / associate > program . > > vince kaminski > > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com >",0 +"Subject: re : follow on conversation w / aa amy - - steve kean and i finally got to discuss this the other day and we decided that this effort would likely be too time consuming and costly , particularly for certain key employees , to justify doing it . it obviously is an interesting topic but one that would require alot of attention ( and possibly money ) to participate in fully . thanks for your attention to this . to : richard causey / corp / enron @ enron cc : subject : follow on conversation w / aa rick - resending previous inquiry . waiting reply . thanks . amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy oberg / hou / ees on 08 / 23 / 2000 08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron energy services from : amy oberg 08 / 21 / 2000 08 : 37 am phone no : 713 - 345 - 7381 to : richard causey / corp / enron @ enron cc : subject : follow on conversation w / aa rick : i ' m assuming you had conference call w / aa on friday re : the new value research lab effort - is that correct ? we are ready to regroup this week and hear the results of your conversation . pls advise as to your feedback and availability . thanks . amy",0 +"Subject: re : planning for your energy finance class presentation wed . , 10 / 11 ehud , i am flying back in the evening and dinner would be difficult . i shall be glad to join you for lunch , shirley , as i understand gave you my requirements for the av . my flight arrives at 8 : 30 a . m . i can meet you at your office in the morning and we can talk about the conference and other issues . vince "" ehud i . ronn "" on 10 / 09 / 2000 09 : 23 : 55 am to : vkamins @ enron . com cc : subject : planning for your energy finance class presentation wed . , 10 / 11 vince , good morning . further to your forthcoming visit this wed . , i write to clarify last - minute details : 1 . your eta / etd . will you be available to join us for lunch and / or dinner ? 2 . your av requirements , if any . should you need either , we have an overhead projector as well as laptop capability ( either your laptop , or we can with advance notice reserve a laptop if you bring floppies ) . btw , any developments re jeff skilling ' s 2 / 22 conference keynote ? best , ehud ehud i . ronn jack s . josey professor in energy studies department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: information shalesh , please , look into it . can we give them this information ? i see a remote possibility of a gain for enron : it ' s in our interest to support the growth of this market and part of the process is development of the infrastructure for this market and maintaining public interest . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000 09 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" yann d ' halluin "" on 11 / 16 / 2000 01 : 18 : 39 pm to : vince . j . kaminski @ enron . com cc : subject : information dear sir : the scientific computation group at the university of waterloo , ontario , canada , has recently started to be very interested in the recent developments of the bandwidth market . we find that the specifics of the bandwidth market offer challenges from the modelling point of view . however , we have encountered difficulties when looking for data , and we were wondering if you could help us . specifically we would like to know for a given city pair for the different existing type of lines ( e . g . oc 3 , ocl 2 , oc 48 . . . . ) 1 . what has been the spot lease prices ( e . g . $ / line - type / mile ) for the past 12 months ? 2 . what is the price of the dark fiber for a given type of line ? 3 . what is the maintenance cost $ / month ? ( for the same lines , e . g . oc 3 , ocl 2 , oc 48 , . . . ) 4 . what is the upgrading cost for the different lines ? ( e . g . how much does it cost to upgrade ) oc 3 - - > ocl 2 oc 3 - - > oc 48 ocl 2 - - > oc 48 5 . how long does it take to upgrade a line from a certain capacity to another ( e . g . 1 month , 2 month , . . . ) ? we realize that some of these questions may ask for confidential data , in that case we would really appreciate if an order of magnitude was provided . i look forward to hearing from you . sincerely , yann d ' halluin p . s : here is a link to our web page : http : / / www . scicom . uwaterloo . ca - - this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . any unauthorized review , use , disclosure or distribution is prohibited . if you are not the intended recipient , please contact the sender by reply e - mail and destroy all copies of the original message . ",0 +"Subject: re : vmi agreements hi vince , mark holsworth reviewed our contract on such a short notice . i thank mark for responding to our short - notice request . it turns out that we need to get this database to move forward on a number of things and have legal save some time for us is an excellent help . as mentioned below , it appears that pennwell ' s folks want to chat some more about this . mark , can you schedule a conference call with these people to finalise this contract . i will be out of town all week next week on a lock - down deal meeting . vince may be able to get on the conference call . i would greatly appreciate it if you could help us close this one ! regards , ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 20 / 00 12 : 38 am - - - - - russell @ pennwell . com 02 / 18 / 00 06 : 16 pm to : ravi thuraisingham / enron communications @ enron communications cc : toni . turnerbudd @ sbtglaw . com subject : re : vmi agreements ravi - i would like to schedule a conference call between you , me , pennwell ' s counsel ( toni turner budd ) , and enron ' s counsel to discuss your changes and finalize the kmi end - user license agreement . i propose that we have the conference call at 2 : 00 pm cst this monday , february 21 . please let me know if you are available at this time and , if not , propose an alternative time for the call . in addition , please provide me with a telephone number where i can reach you for the conference call . pennwell is looking forward to finalizing the license agreement and delivering the kmi data to enron . yours truly , russell iorio manager of business development pennwell corporation 1421 south sheridan road tulsa , ok 74112 russell @ pennwell . com ( 918 ) 831 - 9122 direct ( 918 ) 831 - 9476 fax - - - - - original message - - - - - from : ravi _ thuraisingham @ enron . net [ mailto : ravi _ thuraisingham @ enron . net ] sent : thursday , february 17 , 2000 6 : 30 pm to : rmack @ kmicorp . com ; mpass @ kmicorp . com ; russell @ pennwell . com cc : kristina _ lund @ enron . net ; stinson _ gibner @ ect . enron . net ; vince _ kaminski @ enron . net ; earl _ harvey @ enron . net ; tracy _ williams @ enron . net subject : vmi agreements > hi richard , here is a marked up version from our lawyer . please have your people look at it and if it seems fine make the changes and send a signed copy back to me . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 06 : 21 pm - - - - - | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | mark | | | holsworth @ enr | | | on | | | | | | 02 / 17 / 00 | | | 04 : 10 pm | | | | | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > - | | | | to : ravi thuraisingham / enron communications @ enron communications , | | gene diers / corp / enron @ enron | | cc : | | subject : vmi agreements | - | please find attached my redlining of the vmi agreelment . please review it and send it to the vendor for their review . ( see attached file : 2 - 14 - 2000 eula . doc )",0 +"Subject: re : options training classes for those of you who did not see the memos from jeff that went out on february 17 th . & february 22 nd . regarding the upcoming options training classed , i have attached both memos below : i have the books at my desk for those of you that have not received your copy . there will be a third memo in the next couple of days with regards to the location of the classes . if you have any other questions , please feel free to contact me . - brenda x 31914",0 +"Subject: charles chen interview vince / tanya : i interviewed charles today 10 : 30 am . here are my impressions : 1 ) excellent professional and managerial experience . 2 ) very good technical background . deal valuation and model implementation 3 ) promisses to fit very well into the group ' s culture . the only issues i see is that he would have to leave a high level position at his current employee . paulo issler",0 +"Subject: re : meeting andrew , i shall be glad to meet and discuss the project . it sounds intriguing . vince andrew miles @ enron 09 / 22 / 2000 01 : 34 pm to : vince j kaminski / hou / ect @ ect cc : subject : meeting hi vince ! maybe you remember me , my name is andrew miles and we worked together on a speech for jeff skilling this past july . i am hoping that i can get on your calendar for 30 minutes next week . i have been working with 3 other enron employees for the past 6 months , developing a comprehensive innovation acceleration process for use by potentially all enron employees - and we would really appreciate your input . we have presented the idea to quite a few people in the company , and some outside of the company ( strategos institute ) , all of which have really liked the idea and provided key input . many people have suggested that we run the idea by you . if you have some time next week , would you mind allowing me to explain our ideas to you ? i will follow up with a telephone call . all the best , andrew",0 +"Subject: technical corner paper vince , as you suggested , i splited the paper into two parts , the first one devotes to the fx market and second one to gas market . attached is the first part . let me know if there is any mistakes in there , thanks . sam , vince wants to publish this article in the next monday edition of the research intelligence . thanks . zimin",0 +"Subject: transportation for m . gillis and g . whitaker for post presentation celebration at enron box at enron field hi judith ! i have a special parking ticket for malcolm and gil to use in dr . gillis ' s car . then , i ' ll have a car pick up gil when he ' s ready to leave the game - - we ' ll take care of everything ( thanks for offering ) - - we ' re really looking forward to the event ! best regards for a great weekend ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 05 / 04 / 2001 04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - judith duvall on 05 / 04 / 2001 02 : 09 : 26 pm to : christie . patrick @ enron . com cc : subject : re : rice alp final presentation and post presentation celebration at enron box at enron field christie : could you please fill me in on the logistics ? dr . gillis and gil whitaker will be at the apl project presentation at enron at 4 p . m . . further , they both plan to attend the dinner at enron field . however , dr . gillis must skip the game due to an early morning breakfast the next day . will you provide special parking at the dinner / game ? i think dr . g and gil will go together , then i will have dr . gillis picked up by limo , at approximately 8 : 00 p . m . does this sound feasible ? judith duvall at 10 : 00 am 5 / 4 / 01 - 0500 , you wrote : > hi friends ! > > the big rice - alp final presentation day is almost here : monday , may 7 th , > 4 pm , at enron , 1400 smith . please come to the enron lobby and ask for > me or my assistant , melinda mccarty . > > after the presentation , you are cordially invited to dinner and an astro ' s > game ( vs phillies ) at the enron box at enron field . as participation in > the enron box at enron field is limited to this special invitation list > only , please confirm your attendance via return email , or via voice mail to > me at 713 - 853 - 6117 asap . > > we ' re very excited about the work the rice alp team has done and we ' re all > greatly looking forward to the presentation . > > hope to see everyone monday ! ! > > best regards ! > > - - christie . > > > judith duvall secretary to the president rice university 6100 main street - - msl houston , tx 77005 713 / 348 - 4601 713 / 348 - 5271 ( fax )",0 +"Subject: re : petrochem desk yes , i will have kate get involved and talk to christian to get details . vasant - - - - - original message - - - - - from : kaminski , vince sent : monday , april 23 , 2001 9 : 29 am to : shanbhogue , vasant cc : kaminski , vince subject : petrochem desk vasant , it seems we have to help them . can kate help on this project ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 23 / 2001 09 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nelson neale @ enron 04 / 20 / 2001 10 : 29 am to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate cc : subject : petrochem desk i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group . from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research . nelson",0 +"Subject: re : enron project keith , it was a great pleasure to work you with on this project . the entire enron team was impressed by the quality of the students and commitment of the school to exploring new and creative ways of exposing students to business problems . vince weigelt on 04 / 10 / 2001 12 : 05 : 25 pm to : "" ' vkamins @ enron . com ' "" cc : subject : enron project vince ; i just wanted to tell you how much i enjoyed working with enron on the tiger project . i found the interaction with you and your colleagues very stimulating . the ideas we covered ( like whether there are network externalities in these markets ) was more like a workshop than a project . i wish all businessmen had your interests and capabilities . thanks keith",0 +"Subject: wharton risk center advisory committee meeting - june 14 , 2001 to : advisory committee members from : paul r . kleindorfer howard kunreuther date : march 12 , 2001 subject : our next advisory committee meeting just to let you know that our next advisory committee meeting will be on thursday , june 14 , 2001 . we will be sending the agenda and more details in late march or early april . the principal theme of this meeting of the advisory committee will be "" markets and regulation for efficient risk management "" . we would appreciate your letting theresa convery know your attendance by returning a completed response form ( copy attached ) via fax or email as soon as possible . fax : ( 215 ) 573 - 2130 phone : ( 215 ) 898 - 5688 email : tconvery @ wharton . upenn . edu > ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ theresa convery administrative assistant risk and decision processes center the wharton school of the university of pennsylvania ( 215 ) 898 - 5688 / fax : ( 215 ) 573 - 2130 tconvery @ wharton . upenn . edu - response form . doc",0 +"Subject: rice / eron finance seminar series fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 04 / 2000 07 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - barbara ostdiek on 12 / 01 / 2000 05 : 38 : 08 pm to : ostdiek @ rice . edu cc : subject : rice / eron finance seminar series enron seminar series in finance jones graduate school of management , rice university tim bollerslev duke university will give a seminar at the jones school on friday , december 8 , ?  & measuring , modeling , and forecasting realized volatility .  8 the seminar will begin at 10 : 30 in room 113 . please note the different time and different room for this seminar . a pdf of the paper is available through the seminar website http : / / www . ruf . rice . edu / ~ jgsfss / . ?",0 +"Subject: aga forecast for 7 / 21 is 42 vince & stinson , the number comes out from the time series model is 42 , compared with mike ' s 61 . last year ' s number ( true ) was 41 ( 7 / 23 / 99 ) , and 26 ( 7 / 30 / 99 ) . therefore the curve is down - sloping dramatically . let us see what happen tomorrow . zimin",0 +"Subject: re : country risk jr . economist hiring vince , thanks . - - gwyn vince j kaminski @ ect 05 / 02 / 2001 03 : 20 pm to : gwyn koepke / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : country risk jr . economist hiring gwyn , try to reduce the number of potential candidates to 3 , before i shall get involved . also , i contacted hr regarding your promotion . the process has started . vince gwyn koepke @ enron 05 / 02 / 2001 03 : 09 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : country risk jr . economist hiring thanks vince . i have the resume book from sais . i ' d like to start contacting them individually telephonically prior to meeting with maureen . i will begin to contact them and do some initial screening . would you like to participate in the initial screening ? thanks , - - gwyn vince j kaminski @ ect 05 / 02 / 2001 03 : 06 pm to : gwyn koepke / na / enron @ enron cc : subject : re : country risk jr . economist hiring gwyn , yes , please go ahead and get a resume book from sais . vince gwyn koepke @ enron 05 / 02 / 2001 11 : 40 am to : vince j kaminski / hou / ect @ ect cc : subject : country risk jr . economist hiring vince , maureen had mentioned to me a while back that our group had approval to hire an junior / full economist . she then asked me to contact johns hopkins sais to get resumes of possible candidates . i have completed all this . but , before i begin contacting these potential candidates , i wanted to confirm with you that we have the approval to hire another person at the either junior or associate economist level . thank you . gwyn koepke",0 +"Subject: correlation matrix reduction zhiyang , got your message . as we discussed , the best way to breakdown the big correlation matrix between different location indices is through "" cluster analysis "" . the idea is to select major hubs and the "" satellite "" markets . by establish the correlation between the hubs and correlation between the satellites and the hubs , the big matrix can be significantly reduced . then the traders only need to input the correlations between the hubs . this technique has been applied in our value at risk system . you may talk to tanya to find out the details . zimin ps : the wsprd code you requested .",0 +"Subject: re : uk power / gas vince , just fyi : oliver ( risk control in london ) was asking if it is appropriate to use a set of factors corresponding to some commodity for another commodity . this "" mapping "" we do quite frequently in our var system when forward prices for a commodity are not correlated ( because of poor price history ) . i think using this kind of mappings is ok because we can not trust these correlations based on illiquid price information . if we believed the matrix with low correlations represents what goes on in the market and we simply can not reconstruct it with our 7 factors - then we might use more factors then 7 or the matrix itself . tanya tanya tamarchenko 12 / 15 / 2000 02 : 36 pm to : oliver gaylard / lon / ect @ ect cc : david port / market risk / corp / enron @ enron , rudi zipter / hou / ect @ ect , wenyao jia / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , debbie r brackett / hou / ect @ ect , naveen andrews / corp / enron @ enron subject : re : uk power / gas oliver , i completely agree with you : validating var inputs like positions , prices and volatilities which are used by risktrac is the first thing to do . you also rise a valid question : if the factor loadings for some commodity do not make sense should we use the factor loadings for another commodity ? the factor loadings "" do not make sense "" when the correlations across the term structure are not high . so if we believe that the forward prices for this commodity are market prices and statistical analysis on these prices produces the correlations which we trust , then it would be proper to use this correlation matrix in var engine , not the factors . using factors is simply the way to speed up calculations for highly correlated prices without sacrificing the accuracy . tanya . oliver gaylard 12 / 15 / 2000 07 : 11 am to : naveen andrews / corp / enron @ enron cc : david port / market risk / corp / enron @ enron , rudi zipter / hou / ect @ ect , wenyao jia / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , tanya tamarchenko / hou / ect @ ect , ganapathy ramesh / hou / ect @ ect , debbie r brackett / hou / ect @ ect subject : re : uk power / gas naveen regarding the calculation of uk vars in risk trac i agree that we should be using this calculation engine for all commodity vars . however we should not focus solely on the uk but ensure that we use risk trac for continental power and gas , uk power and gas , nordic power . to use risk trac i think the following need to be resolved first , to implement it "" right the first time "" , as i think it is incorrect to consider the risk trac numbers "" as the most accurate "" since it depends on the validity of these items : positions ( delta and gamma ) and curve mapping - these need to include all positions including those outside the main risk systems positions , curves and mapping should now be no problem given the feeds , apart from continental power , have been uat ' d and we have the spreadsheet feeds up and running . price and vol curves - as used by the risk systems as above inter commodity correlation - prompt month correlation should be easy to calculate given an accurate and complete data set ( however the incomplete historic data for europe in risk trac , prior to the formation of the task force , would mean a full data set needs to be obtained and used ) . term structure of correlation would be good but i understand this is difficult to use in the calculation . factor loadings i think factor loadings should be calculated , on the same data sets used for inter commodity correlation , for all commodities . if this analysis does not appear to work i am not sure that using factor loadings for other markets is adequate . do we need to consider an alternative approach to calculating var for these markets ? to ensure this moves forward i think a list of the mile stones , responsibilities and time lines needs to be drawn up otherwise i fear the process of moving across to risk trac from the spreadsheet var will experience some slippage . i will call today to start the process off . rgds oliver naveen andrews @ enron 06 / 12 / 2000 21 : 50 to : oliver gaylard / lon / ect @ ect cc : david port / market risk / corp / enron @ enron , rudi zipter / hou / ect @ ect , wenyao jia / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , tanya tamarchenko / hou / ect @ ect , ganapathy ramesh / hou / ect @ ect , debbie r brackett / hou / ect @ ect subject : uk power / gas oliver , i had a couple of issues pertaining to uk power / uk gas . first , just a few notes as it pertains to risk trac uk - implementation : ( 1 ) in risktrac , currently all the gas curves are mapped to nbp . ( 2 ) all the power curves are mapped to r 4 ( cinergy ) . factor loading analysis lends itself only to nbp and the norewgian curves ( for reasons of liquidity , etc ) . we have decided that nbp and cinergy are the best curves available at this time . the spreadsheet which is utilized in the uk also has curves mapped to a 2 - 3 - year old set of factors derived from us nat gas , which is clearly not optimal . hence ( 1 ) we should be using risktrac numbers for var , as it is the "" most accurate "" , both in terms of ene - wide model usage and in terms of the most recent updated data . ever since uk power came on board in risktrac 3 weeks ago , the uk power number has been consistently 7 - 8 mm above the numbers in your spreadsheet . this difference is to be ecpected , given the different inputs . ( 2 ) the consistent numbers do not point to a data error in any obvious way , however , if you believe that positions are not captured correctly , please let our it staff know that . ( 3 ) checks which ramesh has done indicate that positions are tying in . however , as you know , there could be disconnects with enpower , etc . in any event , it would be ideal and optimal to have all the simulations run out of risktrac for reasons of aggregation and analysis . your help is appreciated . regards naveen",0 +"Subject: fwd : abstract return - path : from : vkaminski @ aol . com full - name : vkaminski message - id : date : sun , 1 oct 2000 07 : 40 : 46 edt subject : abstract to : deng @ isye . gatech . edu mime - version : 1 . 0 content - type : multipart / mixed ; boundary = "" part 2 _ 15 . 9 e 45 a 9 f . 27087 cbe _ boundary "" x - mailer : aol 3 . 0 16 - bit for windows sub 86 shijie , i am sending you the abstract for my informs presentation . vince * * * * * the last three years were characterized by exceptionally high volatility of the power prices in the us markets . the market developments have created a number of unique challenges for energy industry economists . one immediate question we have to answer is how to measure volatility of energy prices . although we can all agree that the prices in the power markets are characterized by high variability , the traditional measures used in financial economics ( annualized standard deviation of log price returns ) may not fit well electricity prices . the second challenge is to explain the sources of high price volatility and to answer the question to what extent it can be attributed to problems that can be addressed in the long run . such problems include flaws in market design that allow some market participants to abuse market power , limited availability and / or unequal access to transmission , temporary shortages of generation capacity . some factors underlying high volatility of electricity prices may be of permanent nature and may be a necessary price to pay for increased market efficiency and expanded customer choice . - informs . doc",0 +"Subject: monday ' s newsletter hello vince ! i ' m working with michael sergeev to produce this next issue of the newsletter . do you have a suggestion for the kaminski column on page one ? if so , please tell me what you ' d like to use and i ' ll get it ready either today or monday morning . at some point , when you have a couple of minutes , we should sit down and talk about your philosophy regarding the newsletter and what you would like to see in the future . i ' d like to get a little creative with it once i know your thoughts on this . best regards , sam p . s . - note that i am "" william smith "" in the lotus notes system . there is also a "" will smith "" that works in it . we forward each other ' s mail all the time ! : - ) ss",0 +"Subject: stewart seeligson joins ebs hi stinson & vince this is the person that kevin howard told me about - - kevin did the finacing portion of the deals mentioned blow and stewart was the commercial counterpart . he will be heading up hamachi towards its closure this week . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 13 / 00 02 : 20 pm - - - - - ebs office of the chairman sent by : dolph selten 03 / 13 / 00 01 : 47 pm to : ec employees - - all @ enron communications cc : subject : stewart seeligson joins ebs we are pleased to announce that stewart seeligson has joined ebs relocating after more than 4 years from enron europe in london . stewart started with enron nearly six years ago as an associate in ect in houston . in europe , stewart was successful in playing a key role in sutton bridge , originating a number of highly structured transactions including the eastern deals and more recently co - led enron ' s commercial activities in spain especially the development of a 1200 mw ccgt which is expected to begin construction later this year . stewart will assist in developing , managing and leading several of our more complicated mission critical commercial transactions . in particular , stewart will focus on those transactions which require multiple functions across ebs , a role stewart excelled in at enron europe . stewart will report directly to ken rice as a vice president , but will work directly with each of the commercial business unit leaders on a project specific basis . please welcome stewart to the ebs team .",0 +"Subject: re : trading algorithms andy , sounds good . one comment : vasant is swamped with work coordinating several high profile projects . bob is very productive and thorough and will get a lot of support internally from other members of the group : this contribution may not be directly visible but it will be still very important . we appreciate your hands - on involvement . it ' s always the most important condition of a successful project to have direct and frequent interaction with the customer . look fwd to working on this project . vince from : andy zipper / enron @ enronxgate on 04 / 18 / 2001 01 : 57 pm to : jay webb / enron @ enronxgate , vince j kaminski / hou / ect @ ect cc : subject : trading algorithms guys , here is what i took away from our meeting : 1 ) . research will continue working on custom reporting off of enrononline data . 2 ) . research will continue working on market analysis off of enrononline data 3 ) . research will a contribute a resource to the trading algorithm effort , presumably one at this point in time . i would prefer it to be vasant but i am flexible . the trading algorithm group will be run by the enrononline team with its product reviewed by research . it is my belief that projects like this require a firm commercial hand in their infancy to make sure they stay on the right track . if this presents a problem for anyone please let me know so that we can discuss . thanks , andy",0 +"Subject: hello vince , nie bardzo wiem czy pisac po polsku czy po angielsku : ) co u ciebie slychac ? u mnie troche zmian jak ze juz nie pracuje w scem , a przenioslem sie do mieco ( a small marubeni backed energy - america trading company ) . bardzo rozne od scem . najbardzij przypomina mi scem na poczatku z joe , jak bylo 20 - 30 osob . sa i minusy i plusy . troche structure i research ale przede wszystkim weather . trrovhe latam miedzy east i west bo sa officy w obydwu miejscach . california jest ok w zimie : ) . na bardziej personalnym froncie ; pamietasz dinner na ktory poszlismy kiedys na conferencji w ny z catherine ( she used to work for williams - works for morgan stanley now ) , we are dating ( for a while ) . it is a good story how we met . so we owe you dinner : ) jak bylem w atlancie to pracowala dla mnie christa grey . bedzie teraz konczyla grad school in international relations ( with eastern european slant ) , i zastanawia sie czy sa jakies mozliwosci polaczenia tego co robila ze "" wschodem "" . co robila to bylo przede wszystkim vb implementations modeli , ( roznego rodzaju ) , web based data collections , basic research , teraz jest w gas structuring etc . she speaks russian and was in ukraine / poland few times on peace corp assingments . she is very bright and dedicated . myslalem zeby ja zwabic do californii ale ten eastern european pociag jest u niej silniejszy niz u mnie : ) . i have here resume , wiec jak bys myslal ze jest jakis fit i will foreward it to you . troche tak mieszanka pisze , przepraszam bede chyba w houston w pazdzierniku to moze bysmy sie mogli spotkac . latwiej pewnie by bylo w ny ( mieszkam po nj stronie ( rent jest inny niz w atlancie : ) ( 201 ) 222 - 0435 ) , wiec daj mi znac jakbys mial czas i ochote . thanks roman",0 +"Subject: re : aiesec biliana , i have prior commitments on saturday , february the 5 th . please , send me more information about the following saturday . there is a remote possibility i shall have to go to london that weekend . otherwise , i shall be glad to join you . vince biliana pehlivanova on 01 / 28 / 2000 11 : 54 : 58 am to : vince j kaminski / hou / ect @ ect cc : subject : aiesec dear mr . kaminski , the following are the personal and work e - mail addresses of the polish trainees in college station . sylwester rutkowski sylwesterr @ usa . net , sylwester . rutkowski @ destia . com patricia dalecka pdalecka @ hotmail . com , patrycia . dalecka @ destia . com danusia mas danusia . mas @ destia . com lidia olczyk lolczyk @ usa . net , lidia . olczyk @ destia . com robert lyczak rlyczak @ yahoo . com , robert . lyczak @ destia . com i would like to invite you to join us for a paintball game next saturday , feb 5 th . the purpose of this event is to develop team building among our student members , board of advisors , and corporate clients . in addition , i would like to invite you to participate in our mock sales day on saturday , feb . 12 th . during this day , the new members will first receive training on aiesec sales / knowledge and then role play with our board of advisors and alumni acting as company representatives . sharing your aiesec and work experience would be a valuable contribution to our training program . i will get in touch with you regarding these events in the beginning of next week , as soon as i have the time and place finalized . i appreciate your interest in working with us . best regards , biliana pehlivanova vice president of incoming exchange aiesec houston",0 +"Subject: corp and muni bonds here ' s what i found . pls let me know if i can help you with anything . i checked on the bonds that we spoke with you about earlier . the call date was in august so i just passed on it . these look pretty good . thanks , julie - kaminsky 2 . doc",0 +"Subject: re : ff vols from historical fwd price curves winston , i am sending you ffd vol curves which are calculated based on 1 month ( 18 log - returns ) of data with 0 . 97 decay factor . these vols give $ 3 . 14 m in var for storage - prc ( versus 3 . 37 in production for 5 / 30 / 00 ) . tell me what i need to change in the format so that it is convenient for you . tanya",0 +"Subject: re : your mail zhendong , dr . kaminski called me back telling me that he would like to have you as an intern student in his research department during the summer . please write him an email as soon as possible to introduce yourself and letting him know of your expected starting date and ending date . dr . kaminski ' s email address is vince . j . kaminski @ enron . com shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng",0 +"Subject: request submitted : access request for brian . mihura @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000005412 approver : stinson . gibner @ enron . com request create date : 10 / 23 / 00 8 : 49 : 45 am requested for : brian . mihura @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: enroncredit . com report for 12 . 10 fyi ` - - - - - - - - - - - - - - - - - - - - - - forwarded by benjamin parsons / lon / ect on 13 / 10 / 2000 09 : 16 - - - - - - - - - - - - - - - - - - - - - - - - - - - katja schilling 13 / 10 / 2000 08 : 40 to : john sherriff / lon / ect @ ect , deborah edwards / lon / ect @ ect , edmund cooper / lon / ect @ ect , ted murphy / hou / ect @ ect , william s bradford / hou / ect @ ect , eva hoeffelman / lon / ect @ ect , jackie gentle / lon / ect @ ect , steve w young / lon / ect @ ect , tim davies / lon / ect @ ect , mark pickering / lon / ect @ ect , denis o ' connell / lon / ect @ ect , david a wall / risk mgmt / lon / ect @ ect , rod nelson / lon / ect @ ect , jeff kinneman / hou / ect @ ect , joanne wadey / lon / ect @ ect , enroncredit . com london , enroncredit . com houston , michael r brown / lon / ect @ ect , philippe a bibi / hou / ect @ ect , louise kitchen / hou / ect @ ect , drew c lynch / lon / ect @ ect cc : subject : enroncredit . com report for 12 . 10 1 . credit quality 2 . website",0 +"Subject: lacima energy and weather derivatives courses by clewlow and strickland please find attached information ? for our next two courses and workshops : ? energy derivatives : ? pricing and risk management and weather derivatives , which will be conducted in houston and in london in feb / march 2001 . ? instructors will be dr les clewlow and dr chris strickland . ? because the course requires intense interaction , the courses will be ? limited to a maximum of 15 people , so early registration is encouraged . ? if you require further information , or would like to register for either or both ? courses , please contact me via this email or our web site , ? www . lacimagroup . com - energy . pdf - weather . pdf",0 +"Subject: mec advisory board meeting we are still in discussions with mec about a transaction , but it seems to be moving in the right direction . they have asked to set up an advisory meeting in december to meet the senior team members . mr . plotnick indicated that he expects to have his cto in place by then . i am trying to arrange our first meeting the week of december 5 or december 12 . please send me a short list of times you have available for a two hour meeting . once again , i would like to thank each of you for your help with this project . regards , mark mark lay enron investment partners 333 clay st . , suite 3800 houston , tx 77002 p 713 - 853 - 7408 f 713 - 345 - 7670",0 +"Subject: re : resume how did it go with renshi zhang and bill koures ? renshi has two offers already . if you want to persue him , i would recommend moving quickly . regards , marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : monday , march 12 , 2001 6 : 36 pm > to : marshall . brown @ robertwalters . com > cc : vince . j . kaminski @ enron . com > subject : re : resume > > > marshall , > > i am catching up with my mail . we would like to talk to this candidate as > well > ( phone interview ) . > > vince > > > > > > marshall brown on 02 / 21 / 2001 12 : 36 : 39 > pm > > to : vince kaminski > cc : > subject : resume > > > vince , > this candidate would be interested in speaking with you . > regards , > > marshall brown > vice president > robert walters associates > tel : ( 212 ) 704 - 0596 > fax : ( 212 ) 704 - 4312 > mailto : marshall . brown @ robertwalters . com > http : / / www . robertwalters . com > > > > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . > > this email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed . if you have received this email in error please notify > the system manager . > > this footnote also confirms that this email message has been swept by > mimesweeper for the presence of computer viruses . > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > ( see attached file : kour _ vas . doc ) > > >",0 +"Subject: anjam and kirstee , as i have suspected the position as of 6 / 30 vs 7 / 19 makes the difference . the first table first column is my var number with 6 / 30 position and gold & silver prices , the second column is your var with 7 / 19 position and dummy gold & silver prices . the second table first column is my var with 7 / 19 position and 6 / 30 gold & silver prices , the second column is as before . i would ask you to plug the gold and silver prices and see what kind of numbers you get in order to verify we are on the same page . please refer to modelvar 2000 . xls that i have sent you for gold & silver prices and volatilities . thank you , cantekin table 1 table 2",0 +"Subject: vince , i hope you are well . until today , i did not know there was another kaminski at enron . perhaps you know him already but i found him in the enron address book his first name is jim . i am enrolled in the above mandatory program and i have nominated you in the peer / colleague category , to provide feedback on me . i do not know the nature of the questions you would be required to respond to but sometime soon you would receive an e - mail asking you for your input . i know your plate is full and life is already hectic but i thought i could nominate you for your input . i should be grateful if you would take some time off your very hectic schedule and provide the feedback on me . very many thanks , tony enron broadband services 713 - 853 - 3939",0 +"Subject: re : the consultant ' s model for gary hickerson ' s group the model is supposed to be a real option model to capture the value of power plants of gencos . it is to give trader a better insight as to whether the market is overvaluing / undervaluing certain genco stocks , and trader can act accordingly . i ' m still trying to find out how trader is supposed to use it . modeling details : the model takes in all gencos ' locational power forward prices and fuel forward prices , and uses garch model to simulate one year daily prices , and then uses a hourly profile to convert them into hourly prices . garch model parameters are estimated by the consultant using and separate model and are updated twice a year , and it does not matter whether the simulation starts in january or september . using these prices , it will determine whether a unit at a particular location will be dispatched or not depending on a ) spread of power and fuel prices , and b ) whether the start - up cost can be recovered during 8 operation hours . the unit can be dispatched at minimum and peak levels . fixed o & m , sox and nox ( i don ' t know what the last two stand for ) are taken into consideration . with the simulated dispatch schedule , the model calculates the value that can be generated by this unit , then sums it up across all units . the final value is the average of 100 simulations . and it takes about 16 hours to run for about 200 units . after our conversation , the consultant promised to look into a ) how to make the model more flexible , say , to allow a different time horizon , b ) reduce spreadsheet overhead by doing calculation one unit a time and not saving all the intermediate information ( as of now it saves everything on the spreadsheet ) . assuming the garch process is modelled correctly , i believe the methodology is ok , though it does not capture most of the optionality . my concerns are : whether the price processes are modelled correctly . i have to get more details before making any conclusion . 100 simulations are way too few . unless we convert the algorithm to c , i don ' t see how spreadsheet can handle more simulations . i guess that ' s why they contact us . but again , if enron ' s buying the model from the consulting company , why should enron do their job for them ? how trader ' s going to use the model output . for this i phoned jeff ( the associate who initiated all these ) and am still waiting for his returning call . a related questions why the model horizon is one year . we can either oversee the conversation , but not doing actual coding for them . or redo the model for them . ( the problem still remains that how trader ' s going to use the output ) . but in view of the great wall of china separating the business units , should we do it ? as of now i have a simulation model taking start - up cost , fixed o & m , rump - up delay into consideration . it simulates monthly prices ( using gbm ) and takes 2 minutes 40 seconds to run 10 , 000 simulations for one unit for ten years ( 120 time steps ) . it can use forward - forward vol and incorporate seasonality into it ( i understand this is debatable ) . ( one interesting observation is that when using forward - forward vol simulation , the standard deviation is about 0 . 5 % , while standard deviation using forward vol is about 2 % . also , incorporating seasonality increases the value by about 1 . 6 % ) . since most of the time - cost occurs in price simulation , and we are to simulate about 20 price processes , i hope the full model ( if we build it ) will take a couple of hours to run for 200 units . the main task will be interfacing , i . e . , getting data from data base , and outputting the results . this is where i need most help if i am to do it . please advice the course of action . i am supposed to talk to michelle cisneros today . p . s . i never promised to oversee a programmer in our group ( see the message below ) . best , alex - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 01 / 05 / 2001 08 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - jeff m gray 01 / 04 / 2001 to : gary . hickerson @ enron . com , michael . w . bradley @ enron . com , michelle . d . cisneros @ enron . com , jaime . gualy @ enron . com cc : alex . huang @ enron . com , kskinner @ ftenergy . com , cseiple @ ftenergy . com subject : fw : project timeline ken and i worked up the following timeline and refined the trading methodology a bit this morning . we also met with alex huang from vince ' s group , and explained the model and coding tasks . ken and alex have arranged to speak by phone on monday , and meanwhile alex is coordinating within the research group . alex will oversee a programmer within his group , while interfacing regularly with us . 1 / 4 kickoff 1 / 11 complete spreadsheet , table , and database structures ( rdi ) . 1 / 17 complete software coding for the pricemaker component of the model ( rdi and enron research ) , and begin testing ( enron research ) . 1 / 22 complete software coding for the dispatch portion of the model ( rdi and enron research ) , and begin testing ( enron research ) . 1 / 22 complete financial trader "" user "" interface , within the access environment ( rdi ) . 1 / 22 complete collection and delivery of unverified generating - unit data from rdi databases ( rdi ) . begin verification process ( rdi ) . 1 / 29 complete all charts and reports accessible from the user interface ( rdi ) . 1 / 29 complete compilation of consensus ebitda forecasts for all operations other than merchant generation ( enron financial trading ) . 2 / 9 complete code testing ( enron research ) . 2 / 9 deliver verified and quality - checked generating - unit data ( rdi ) . 2 / 9 complete the model , begin testing the trading methodology , and train users . 2 / 16 finish training , testing , and final qc . jeff",0 +"Subject: mit research on bandwidth pricing gentlemen : amit is a former mit sloan student whose research was sponsored by a program set up by tom gros to learn more about bandwidth pricing and market effects . we worked with him quite a bit for a while , as did vince kaminski and stinson gibner , on this project . well , he has finally graduated and is in the process of having his thesis published . he has offered to come down to present his findings to anyone interested , so i am inquiring as to your level of interest in order to schedule a meeting , if appropriate . below is a short description of his work . please let me know your thoughts and if you have any questions . thanks , jay . - - james f . hawthorn enron broadband services global bandwidth risk management + 1 713 853 7606 telephone + 1 713 646 8795 facsimile - - - - - forwarded by jay hawthorn / enron communications on 03 / 29 / 01 09 : 15 am - - - - - adhadwal @ mit . edu 03 / 20 / 01 03 : 50 pm to : jay hawthorn / enron communications @ enron communications , adhadwal @ mit . edu cc : subject : hi jay , as per our discussion this morning , will be terrific to come on down to talk about the results of my thesis related to pricing & risk management of forward contracts on bandwidths . thanks to the support from enron for this work ! here ' s a brief description . we addressed the problem of pricing and risk managment of forward contracts on bandwidth under uncertain future available supply . this exposes the seller to both the risk of perishability as well as the risk of overcommitments . we consider a variety of selling strategies to map commitment risk , and show how forward pricing varies over time under these strategies . the managerial insights into dynamic forward pricing are neat ! have several graphs from simulations , and several math proofs . there are two technical pricing papers from this thesis , now submitted for publication . it will be great to share this knowledge with enron , thanks to your support for the work , and also discuss how the results may be mapped with real - life , possible modifications , and finally how they may be programmed and used . let me know your thoughts and interest level - maybe someone from vince ' s group as well ? i can make the talk as technical as you want , depending on the audience . at its core , it is math - heavy , but the insights can easily be translated to a high - managerial level view , a more detailed trader - level view , or a super - detailed research level view . cheers , - amit",0 +"Subject: sddp model john , attached is a copy of the sddp methodology manual , written by the developers . the model was developed by mario pereira , who is the proprietor of psri ( power systems research inc ) in rio de janeiro . their web site is : www . psr - inc . com where you can find more information about the company and contact details . mario and most of the staff speak english , so phone calls are possible . development of sddp was originally done on a world bank contract to compare the benefits of new generation and transmission system interconnections in central america . it has since found much wider application . the code runs on a pc , and is licensed to a number of consultants , power companies , etc . while i was with ecnz in wellington , new zealand , we purchased a copy around 1994 . the model works with weekly or monthly time steps , with a time horizon of from 1 to 10 years , for mid to long range planning of hydro thermal power systems . it represents loads in each period as from one to five load blocks , so it is not a chronological model . this type of model can not handle thermal plant ramp rates and similar chronological system constraints . i ' m not sure how important that would be to you . the optimization phase of the model takes into account hydrological uncertainty using a form of stochastic dynamic programming with sampling . this phase sets up a function for water value in each large reservoir in the system . the simulation phase uses a number of hydrological outcomes to collect statistics on how the system would operate . the water values can be used with the short term optimization mode of sddp or in some other more detailed short term optimization model . most constraints found in hydro systems can be modelled . many transmission constraints can be modelled . a dc load flow option can be used to determine bus nodal prices . a visual basic user interface is provided which reads and writes text files . if you ' d like to know more about sddp , you could call me here in houston . ( tel 001 713 345 8539 ) yours tom halliburton",0 +"Subject: follow up / cultivation for mit mit / sloan team : i am pleased to announce that the two candidates below were extended offers for enron ' s summer associate program : hakeem sanusi 617 - 576 - 7570 hsanusi @ mit . edu offer pending jozef lieskovsky 617 - 905 - 5633 jlieskov @ mit . edu offer pending as we discussed , there were a number of excellent candidates that we met while interviewing for summer associates . in an effort to strengthen our name on campus and to cultivate relationships with these individuals , we want to make a concerted effort to keep up with them for our fall recruiting effort . i have attached a template for us to use and refer to for both the offers and the cultivations . this serves as a two - fold communication tool : a tool for the team members to use in contacting the candidates and a tool for me to use when tracking any issues or concerns the candidates may have . please feel free to add to it and e - mail it back to me or give me a call ( ext . 37632 ) and i will update it . i will also be using this to report back to a & a management . below are the names of the candidates that made it to the second round . we want to call on all of them . blaise nietcho 617 - 225 - 2598 blaise @ mit . edu rocco paduano 617 - 742 - 2085 rpaduano @ mit . edu samuel vainstein 617 - 266 - 7257 samuva @ mit . edu diego silva robert 617 - 441 - 6999 dsilva @ mit . edu should you have any questions , please feel free to give me a call . thanks , karen marshall recruiting manager",0 +"Subject: re : thank you sevil . we are looking forward to having you here . if you want , you can stop by one day and i shall introduce you to grant masson with whom you will be working this summer . vince sevil yaman on 02 / 23 / 2000 10 : 09 : 30 am to : vkamins @ enron . com cc : subject : thank you hi dr . kaminski , yesterday , i learned from shannon rogers at the associate - analyst program that i was offered a summer associate / internship position in your group . i am already very excited about this position and look forward to working in your group . many thanks for your consideration . sevil yaman department of economics university of houston houston , tx 77204 - 5882 ( 713 ) 743 - 3814 / 3817",0 +"Subject: california on the brink - - cera alert cera alert : december 13 , 2000 title : california on the brink cera knowledge areas : western energy , n . american power , n . american gas california on the brink the california stalemate california moved closer to the brink of an outage today as concerns over credit - worthiness of buyers brought the possibility that generators would avoid selling to the california market . while numerous factors have contributed to the high cost of power incurred by california ' s utilities , the root cause of the current crisis is a lack of new generation . the current credit crisis and its threat to supplies could spark state action to address the situation . the collective efforts of all market participants should be focused on increasing generation capacity as quickly as possible . western power prices have skyrocketed well beyond the record levels set this summer . perhaps because frozen rates insulate the majority of california consumers and companies from tangible effects of the market crisis , regulators have been able to postpone meaningful market reforms and significant rate increases . the california public utilities commission denied the requests of pacific gas & electric and southern california edison to end their rate freezes , forcing these utilities at least temporarily to finance the costs of higher wholesale energy . this has created an unsustainable accumulation of costs and a loss of faith in the california market . the current credit crisis and the potential for blackouts may become the galvanizing events that provide state regulators with a public mandate to address the underlying structural problems in the industry . however , there is no guarantee that these regulatory actions will expedite an effective solution for customers and the industry as a whole . wholesale and retail markets that emerge from regulatory intervention are likely to remain muddled . in the necessarily political process that will follow , it is possible that - as has largely been the case so far - the steps taken will fail to move the california power market toward a more enduring solution and will instead continue to mask the underlying structural flaws . in the six months since california ' s supply shortfall began plaguing western markets , regulators have done little to address the underlying problem . rather than addressing the cause of the supply shortage - establishing a market environment that encourages timely additions of new generating capacity and demand side responses - efforts are instead directed at trying to lay blame for the crisis and lessen the immediate financial impact on customers . indeed , several actions taken thus far have served more to compound the problem by discouraging new power plant additions . these include price caps , repeated changes to market rules , attempts to seize generator profits , and a challenging siting and permitting process . medicine worse than the illness several years of electricity demand growth and low prices in california were accompanied by very few additions to the supply base . regulators did not pay adequate attention to the looming supply shortfall . the void of consensus over the cause of the current crisis has instead been replaced by a series of bandaid remedies that address the symptoms , but not the cause , of california ' s electric market woes . * * challenging siting and permitting . despite state action to better coordinate the siting and permitting process for new power plants , power plant developers still face high hurdles . local community opposition alone has struck down some key proposed facilities . * price caps discourage investment . state and federal proposals to cap prices limit the attractiveness of the california wholesale power market , especially for developers who have the option of channeling scarce capital and equipment to more stable or more attractive markets outside the state . * repeated rule changes . frequent rule changes in the iso markets ( including the price caps ) confound attempts by developers to estimate profits from new plant development . * calls for refunds . despite reports by the power exchange , the iso , and the ferc that no pattern of abuse could be found from their examination of the california markets , state officials continue to accuse power providers of gaming the market . calls by state officials for refunds of generator profits are a threat to new plant development . * facility inspections . recent inspections of power plants by state officials to verify that operators are honestly reporting the operational status of their generating units accentuates the atmosphere of mistrust . cera ' s recent analysis suggests that merchant plant developers in the west are not guaranteed ? to make a profit . prospects of new plant profitability are affected by the timing and quantity of new plants , decommissioning of older units , demand growth , and numerous other difficult - to - forecast factors . california ' s regulatory actions only further cloud the assessment of financial viability and degrade the political environment for developers considering entering the state . despite efforts by the california iso to stimulate new capacity additions in the state with a special , limited - term capacity payment , cera estimates that demand growth will continue to outstrip supply additions in the west in 2001 . in addition , the existing siting and permitting process will prevent a sufficient quantity of capacity from entering the market until 2003 at the earliest . therefore , three years remain before a sufficient quantity of capacity enters service to significantly dampen prices and decrease the risk of an outage . the road to recovery there are a number of actions that can be taken to help relieve the capacity shortfall : * encourage new build . supply must be part of the answer . this requires a series of steps that can help facilitate new supply build . while in principal some have been taken , such as new fast track approval , the success of these actions can only be measured by the build itself . for now , there is still not enough new supply coming on until 2003 to relieve supply tightness . ? * stabilize investment climate . utilities must have assurance that they will ultimately be allowed to recover market costs for power . this provides the credit worthiness needed by sellers to produce energy and to stimulate new build . * move toward more balanced utility supply portfolios . one of the reasons the pressure on customers has been so intense in california has been the absence ( and even discouragement ) of diverse supply portfolios among the utilities in the state - particularly for residential and small commercial customers . with the market at a peak , however , now is in one sense a sub - optimal time to move toward term contracting . yet these contracts provide the foundation for a series of actions - including new supply build and demand side investments . if they end up above market , they will at least have achieved the desired effect of knocking down prices , a fact which by itself should provide sufficient justification for recovering the cost of these commitments . * encourage market mechanisms that elicit a demand response . although originally a feature of california ' s market design , most consumers are insulated from price spikes through capped or frozen retail rates . exposing customers to at least some of the market price signals would encourage a demand response . * encourage market mechanisms that dampen the "" boom bust "" characteristic of the market . whether in the form of a capacity payment , a reserve requirement , or a minimum term portfolio requirement , the california power market needs to move to a structure that encourages investment in new capacity when the market is in balance rather than waiting for a shortage and price shock to elicit new investment . such a structure can help dampen ( but not eliminate ) future price volatility . * avoid continuously tinkering with the market . while the market does need to be restructured as described above , it also needs to be stable and reliable to encourage the development of new supply as well as a robust long - term contractual market for power in california . continually tinkering with the market structure - such as the three times the price cap has been shifted since july - only serves to undermine confidence in the market . california needs to do its best to develop a long - term solution and then let the market run its course . * allow for greater environmental flexibility . the state should explore a more balanced solution to emissions restrictions in the face of a supply shortfall that has been exacerbated by generators that cannot operate due to emissions restrictions . * free purpa power plants to generate . relief should be granted to purpa power plants that are operational , but are restricted by contract from operating to generate only power . * * end * * this cera alert will be available in pdf format within 24 hours . this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www . cera . com / tos . html questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: your riskmetrics site password dear kaminski , thank you for registering . your requested username is polonia and your password is riskdata . you may use this login to : - access picture of risk at http : / / www . riskmetrics . com / por / index . cgi - use the longrun forecast engine at - use the data directory at http : / / www . riskmetrics . com / data / view / index . cgi - access the creditmetrics datasets at - access the riskmetrics datasets at - read our technical documents at - read our monitors at http : / / www . riskmetrics . com / research / monitors / index . cgi - read the corporatemetrics publications at - read risk management : a practical guide at please let us know if you have any questions or concerns , rmg web services web @ riskmetrics . com",0 +"Subject: re : new risk management book vince , thanks so much , pedro fernando vince j kaminski @ ect 11 / 21 / 2000 01 : 17 pm to : shirley crenshaw / hou / ect @ ect cc : pedro fernando manrique / enron _ development @ enron _ development , vince j kaminski / hou / ect @ ect subject : re : new risk management book shirley , please , send a copy of the book to pedro fernando . vince pedro fernando manrique @ enron _ development 11 / 15 / 2000 02 : 04 pm to : vince j kaminski @ ect cc : subject : new risk management book vince , in colombia we are setting up a trading operation and would be nice to have a copy of the new book for our reference . please let us know how we can get access to a copy . many thanks , pedro fernando",0 +"Subject: dinner speaker - may 23 vince : michael crew would like you to be a speaker on wednesday , may 23 rd instead of the 24 th at the rutgers conference . is this ok ? he is preparing the agenda and needs to know as soon as possible . shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 21 / 2001 02 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" michael a . crew "" on 03 / 21 / 2001 10 : 07 : 52 am to : shirley . crenshaw @ enron . com cc : vkamins @ enron . com , crri @ andromeda . rutgers . edu , kleindorfer @ wharton . upenn . edu subject : dinner speaker - may 23 shirley , this is to follow up today ' s conversation with anita . as mentioned paul kleindorfer invited vince to be our dinner speaker on thursday , may 24 . on reflection given the strong line up for wednesday - fred kahn et al - we would very much like vince to be the speaker on wednesday . this will conclude the day very well giving participants a strong incentive to be there for the wednesday . i gather that this change should be acceptable to vince . we will show vince ' s name as follows : wincety j . kaminski managing director - research enron jeremy will be em ailing you the program with this information immediately . we would like to go to press today . failing that we can go to press tomorrow . we would very much appreciate your confirming this and making any corrections or changes . if you would respond to all of us it would be appreciated . michael michael a . crew professor ii director - center for research in regulated industries editor - journal of regulatory economics rutgers university , graduate school of management 180 university avenue newark , n . j . 07102 - 1897 phone : 973 353 5049 fax : 973 353 1348 http : / / www - rci . rutgers . edu / ~ crri",0 +"Subject: re : grading graders usually follow the following guidelines : - half of the class gets a - and above ; - the other half of the class gets b + and below - instructors seldom ever give grades below b - , but it happens in rare cases - the highest grade possible is a + jason",0 +"Subject: oleg bodnar shirley , please , put oleg bodnar on jeff shankman ' s and john arnold ' s schedules for an interview . he should be already on john lavorato ' s schedule . vince",0 +"Subject: super saturday changes the recruiting season has officially begun . the first super saturday weekend is the weekend of october 27 th and 28 th . we have undergone a rigorous interview process on campus , which will allow us to focus on  however , we are still in need of interviewers for each of the super saturdays . please respond with your willingness to interview at : http : / / axis . enron . com / notice / ssinvite . asp ( when selecting dates please avoid selecting to interview candidates who attend the schools for which you are a team member ) . we thank you in advance for your participation and support of the program .",0 +"Subject: enron credit modeling when we laast spoke , we agreed that you would look to support some of our development efforts from houston . if possible , i would like to have a quick conference call this week to figure out where we are and move forward . thanks",0 +"Subject: reactions september is now live on - line > reactions > the latest edition of the financial magazine for the global insurance > market is now live at http : / / www . reactionsnet . com > > the world ' s leading insurance and reinsurance magazine . simply hit > the links at the bottom of each item to see the full article . you can > call or email us for help at any time on mailto : web - help @ euromoneyplc . com > or + 44 ( 0 ) 20 7779 8006 . the september issue of reactions is packed full > of news , views and figures : > > * cover report : the future for reinsurance : ignoring uncertainty and > danger > http : / / www . reactionsnet . com / viewstory . asp ? id = 799 > * cover report : are ratings agencies responsible for excess capital ? > http : / / www . reactionsnet . com / viewstory . asp ? id = 800 > * cover report : why not give the capital back ? > http : / / www . reactionsnet . com / viewstory . asp ? id = 801 > * cover report : m & a shakeout likely > http : / / www . reactionsnet . com / viewstory . asp ? id = 802 > * cover report : what the future industry will look like - the new > face of risk transfer > http : / / www . reactionsnet . com / viewstory . asp ? id = 803 > > > les rendez - vous de septembre ~ monte carlo 2000 > the 44 th international meeting of insurers , reinsurers , brokers and > reinsurance consultants starts on september 3 rd , and you will be able to > keep right up to date with all the news by logging - on to the official > monte carlo website : http : / / www . rvs - monte - carlo . com . > > in association with guy carpenter [ http : / / www . guycarp . com ] , > reactions will publish the rendez - vous reporter daily . it will be > available to read on - line should you not be able to attend in person - > simply go to the section headed "" newsletter "" to access these daily > updates . you can also read last year ' s archived reporters here . > > look out for our daily email news alerts , sent directly from monte > carlo next week ! > > > other stories > > * profile : munich re - giant steps forward > munich re has kept as silent as a statue for many > years - even when confronted with the most innocent enquiries about its > strategy . but now the statue has come to life and is willing to talk about > how it maintains its position as the world ' s most powerful reinsurer . > simon challis went to munich to hear about it . > http : / / www . reactionsnet . com / viewstory . asp ? id = 804 > > * financial risks : the path to new risks > insurance companies and banks were once two separate and > distinct marketplaces . but now the dividing lines between the two are more > blurred than ever . this is creating new opportunities for both , but also a > fresh set of problems and challenges to be overcome . > http : / / www . reactionsnet . com / viewstory . asp ? id = 805 > * tax havens : financial paradise under threat > offshore domiciles and tax havens have created important > niches within insurance and finance and have become centres of excellence > for many industries . but the sun may soon disappear for these > jurisdictions as they come under pressure to change . > http : / / www . reactionsnet . com / viewstory . asp ? id = 806 > for a free trial to the leading authority on international > fund management , global investor magazine , please go to > http : / / www . . com / admin / registernow . asp , to see the > home page go to http : / / www . . com . > > * e - commerce : electronic re hits the screens > in a rapidly changing world , one thing at least has become > abundantly clear . insurers and reinsurers who fail to rise to the > challenges of internet technology will fall by the wayside . > http : / / www . reactionsnet . com / viewstory . asp ? id = 809 > for specialist information on the internet economy visit our > sister publication evantage at http : / / www . evantagenow . com . > > * european insurance : all change in a unified market > the eu ' s non - life insurance markets are undergoing rapid > transformation , driven by the deregulation of the markets and advances in > information technology . http : / / www . reactionsnet . com / viewstory . asp ? id = 812 > > > plus > * latin american insurance by susan drury > this brand new report analyses the growth and opportunities > for companies , products and alliances in the market . susan drury > forecasts the shape and direction of the latin american industry over the > next ten years . > https : / / ecommerce . waterside . net / reactions / la _ insurance . asp > > * @ risk : internet and ecommerce insurance and reinsurance legal issues > this guide is a vital point of reference for anyone involved > in the covering of internet related liabilities . for a reduced price of > 150 pounds you can ensure that you have the best information on risk > associated e - commerce insurance at your disposal . > https : / / ecommerce . waterside . net / reactions / risk . asp > > * ensurance > without a clear e - commerce strategy you are seriously > jeopardising the future competitiveness of your company . reactions > publishing group has produced the report to answer all your questions on > this new and expanding market . > https : / / ecommerce . waterside . net / reactions / ensurance . asp > > * reinsurance fourth edition by professor rl carter > the fully updated edition of the best selling guide to the > reinsurance market . a must read book for every executive and consultant > involved in the rapidly evolving reinsurance industry . > https : / / ecommerce . waterside . net / reactions / reins _ fourth . asp > > * euromoney plc provides a uniquely focussed on - line book and > information service for all financial markets professionals . to find the > best , most up - to - date selection of books and journals specifically for > your sector please go to http : / / www . euromoneyplc . com ( registration is > free ) or call us on + 44 ( 0 ) 20 7779 8673 . > > > http : / / www . reactionsnet . com > > > to advertise or link your company website to this industry > circular please contact andreas silberman > tel : + 44 ( 0 ) 20 7779 8186 or e - mail > mailto : asilberman @ euromoneyplc . com > > if you have any problems logging onto or using > www . reactionsnet . com please call our dedicated help desk > + 44 ( 0 ) 20 7779 8006 or email > mailto : web - help @ euromoneyplc . com",0 +"Subject: fw : resume for vince kaminski vince : i have received this resume ( unsolicited ) from an outside recruiting agency . if you are interested in meeting with johnathan , i would be more than happy to set it up for you . molly - - - - - original message - - - - - from : graham , toni sent : thursday , march 08 , 2001 2 : 07 pm to : magee , molly subject : fw : resume for vince kaminski - - - - - original message - - - - - from : "" m eastman "" @ enron @ enron . com ] sent : thursday , march 08 , 2001 1 : 53 pm to : graham , toni subject : resume for vince kaminski johnathan is at 142 , 000 base + 10 - 15 % bonus . he is a phd . , certified in financial risk management , awaiting charter as cfa , and the list goes on . at kpmg his clients are financial institutions , e - commerce , internet , and high tech . he has real options valuation and various other financial and overall corporate risk valuation and analysis skills that may be of interest to vince and his group . mike eastman , cpc - president qualitec professional services , lp accounting - financial - energy risk - tax search consultants 281 - 647 - 9300 ext . 314 fax 281 - 647 - 9300 email meastman @ qualitec . com website www . qualitec . com - johnathan mun . doc",0 +"Subject: the inn at penn danielle fyi . this is the information regarding the best hotel for the meeting on december the 6 th , 9 : 00 - 12 : 00 . vince http : / / www . innatpenn . com / contact . html the inn at penn sansom common , 3600 sansom street philadelphia , pa . 19104 phone : 1 - 800 - 809 - 7001 fax : 215 - 222 - 4600 please , mention that the stay is related to the university business when making the reservation . tom piazze at wharton can confirm it . tom piazze phone : ( 215 ) 898 1615 piazzet @ wharton . upenn . edu",0 +"Subject: iafe membership dear colleague : we are pleased to report that we had a very exciting and productive year with dozens of activities around the world . as we enter our 10 th year of operations , the iafe has additional membership options available to you . please take a moment to look at the attached membership form with the 2001 rate schedule . based on member requests , a premium membership is now being offered that includes the annual conference at a 30 % discount , the financial engineer of the year dinner , plus a subscription to the journal of derivatives ( jod ) . the full membership remains as in previous years . the new regular membership includes all membership benefits except jod . membership is based on the calendar year january 1 - december 31 , 2001 . membership is also available on our secured membership registration form at our website http : / / www . iafe . org / about / join . ihtml . while on our website , please take a moment to visit our calendar listing upcoming events for the new year . if you have any questions please don ' t hesitate to contact me at main @ iafe . org . regards , donna jacobus iafe office manager - 2001 membership application . pdf",0 +"Subject: associate & analyst super saturday friday night dinner participation thank you for volunteering your time for this weekend ' s super saturday . we appreciate your commitment to enron ' s recruiting success . at this time we do have an adequate number of friday night dinner participants and will not need you to sacrifice your friday evening . if you haven ' t already , we encourage you to volunteer for one of our other future super saturdays . thank you again for your support and your participation . shelly jones recruiting manager associate & analyst programs",0 +"Subject: congratulations vince : congratulations on your promotion to md . you certainly are well deserving this long overdue promotion . cheers , ding yuan",0 +"Subject: re : december 6 th meeting theresa , thanks . i appreciate it . happy thanksgiving and please give my regards and best wishes to howard . vince "" convery , theresa "" on 11 / 22 / 2000 09 : 39 : 53 am to : "" vince kaminski ( e - mail ) "" cc : "" kunreuther , howard "" subject : december 6 th meeting dear mr . kaminski : this is to confirm the december 6 th meeting here at our center . the location for the meeting is room # 3212 steinberg hall - dietrich hall and the time will run from 9 : 00 am - 11 : 00 am . please let us know if you need anything further . we look forward to seeing you then . regards , theresa convery ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ theresa convery administrative assistant risk and decision processes center the wharton school of the university of pennsylvania ( 215 ) 898 - 5688 / fax : ( 215 ) 573 - 2130 tconvery @ wharton . upenn . edu",0 +"Subject: mr . sud rebecca , i share some of your concerns regarding mr . sud . he is retired and he chose to contact us rather indirectly ( or on the spur of the moment ) . i understand that things are done differently in different cultures but i did not meet him and could not form my judgment based on personal observations . however , the information he gave us seems to be too important not to convey to you and not to act upon . vince kaminski",0 +"Subject: cera conference call playback now available - cera conference call playback title : regulatory scorecard for power : who ' s on first ? what ' s on second ? url ( s ) : in a may 17 , 2001 , cera conference call and web presentation , amy biehl , sharon reishus , and dan mahoney discussed : regulatory scorecard for power : who ' s on first ? what ' s on second ? * has the dust finally settled from the backlash of the california power crisis on other states ' efforts to restructure the electric industry ? * where do congress and the bush administration stand on electric industry reform ? * status of retail competition for electric power and natural gas please follow above url to view and listen to a replay of this cera multimedia conference call . when the premiere conferencing placeware window opens , simply enter your name and click the "" view "" button . a "" recording key code "" is not required . hosted by premiere conferencing . * * end * * e - mail category : conference call playback cera knowledge area ( s ) : north american power , retail energy cera ' s spring 2001 roundtable event dates and agendas are now available at http : / / www 20 . cera . com / event to make changes to your cera . com profile go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2001 . cambridge energy research associates",0 +"Subject: re : enron / stanford program nick , i spoke with paul racicot , head of trading for ebs , north america this morning . he said that he is happy to send the $ 100 , 000 for your program from his budget . i have forwarded to him the draft letter to accompany the funds and will try to follow up to make sure that the money is sent promptly . - - stinson",0 +"Subject: re : reprint available "" alliance gas pipeline : john , my mailing address is : vince kaminski enron corp . 1400 smith room eb 1962 houston , tx 77002 thanks for remembering about me . vince "" john h herbert "" on 12 / 04 / 2000 07 : 09 : 55 am to : "" vince j kaminski "" cc : subject : reprint available "" alliance gas pipeline : early , late , or just in time ? a story of big gambles , big assumptions , and spark spreads turned upside down "" by john h . herbert , published in the november 15 , 2000 issue of public utilities fortnightly ( puf ) . this article which contains five figures and is on the long side for puf also covers market issues that go beyond alliance . if you like to receive a reprint please send me your address . best regards , jhherbert 703 - 532 - 4544 ( phone ) 603 - 719 - 6675 2929 rosemary lane falls church , virginia 22042",0 +"Subject: re : speakers for a ceo meeting with nebraska governor johanns margaret , i have an economist in my group and asked her if she feels qualified to make a presentation on this topic . i shall keep you posted . i think it would help enron to oblige . vince margaret carson @ enron 02 / 16 / 2000 02 : 24 pm to : vince j kaminski / hou / ect @ ect cc : subject : speakers for a ceo meeting with nebraska governor johanns vince , i could work up a talk on everything they are looking for except the area of energy impacts on agri - customers . . . does ena have some specialist that look at this slice of the energy marke that could help me respondt ? thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 02 / 16 / 2000 02 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - beth jensen 02 / 16 / 2000 01 : 19 pm to : margaret carson / corp / enron @ enron cc : rob wilson / et & s / enron @ enron , larry deroin / npng / enron @ enron , bill cordes / et & s / enron @ enron , mike mcgowan / et & s / enron @ enron , beth jensen / npng / enron @ enron subject : speakers for a ceo meeting with governor johanns hello margaret . we are looking for a speaker for a meeting that is being arranged with nebraska governor johanns during the first week in april . the potential topic is a national perspective on pricing pressures / trends on natural gas , electricity and oil and their impact on agricultural production costs , as well as types of risk managment tools that are being used to offset the price fluctuations . do you know of anyone , either within the corporation or outside , who would be available to travel to omaha to make this presentation ? i would appreciate any assistance that you could provide , margaret . thanks , beth jensen",0 +"Subject: re : summer associate position at enron hi dmitri : thank you for responding so quickly . i have scheduled the telephone interview for wednesday , january 31 st at 3 : 30 pm ( houston time ) . you may be ahead one hour ? the interview will be for approximately 1 hour . the research group that will be interviewing you will be : vince kaminski managing director stinson gibner vice president zimin lu director we will call you at 615 - 496 - 1132 . if anything changes , please let me know . thanks dmitri . sincerely , shirley crenshaw dmitri villevald on 01 / 16 / 2001 11 : 42 : 05 pm to : "" ' shirley . crenshaw @ enron . com ' "" cc : subject : re : summer associate position at enron dear ms . crenshaw : thank you for choosing me for the telephone interview . it is a great honor for me to be interviewed by enron research group professionals . i will be available for the interview on january 25 th - 26 th , january 29 th - 31 st anytime from 3 : 00 pm to 6 : 00 pm . please let me know which time is the most convenient for you . you can reach me by telephone ( home : 615 - 292 - 7122 ) . also , i am always available at my cell phone ( 615 - 496 - 1132 ) . to make sure that i will do my best during the interview , i will greatly appreciate if you provide me with some details on the interview structure and the type of questions i could expect . again , thank you very much for the great opportunity to demonstrate and prove my credentials , interest and desire to work for enron during this summer . i am excited about the prospect of applying my skills at enron research group as a summer associate . if i can provide more information or answer additional questions , please , contact me either by telephone ( 615 - 496 - 1132 ) or via e - mail ( dmitri . villevald @ owen 2002 . vanderbilt . edu ) . sincerely , dmitri villevald - - - - - original message - - - - - from : shirley . crenshaw @ enron . com [ mailto : shirley . crenshaw @ enron . com ] sent : tuesday , january 16 , 2001 9 : 40 am to : dmitri villevald subject : summer associate position at enron good morning dmitri : your resume was forwarded to the research group with enron by pavel zadorozhny . they would like to conduct a telephone interview with you at your convenience sometime within the next two weeks . it will be a conference call and will include several of the research group . this will determine where you might fit for the summer program . please let me know some times that would be convenient for you and the telephone number that you can be reached at . sincerely , shirley crenshaw adminsitrative coordinator enron research group 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: re : message from ken rice vince : thanks for returning this call . i guess it helps if i provide the contact information ! tom limperis 517 - 423 - 5617 thanks ! dorothy dalton office of the chairman enron broadband services 1400 smith street , eb 4505 houston , tx 77002 713 - 853 - 6724 - direct 713 - 853 - 9469 - fax vince j kaminski @ ect 05 / 02 / 01 09 : 42 am to : dorothy dalton / enron communications @ enron communications @ enron cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate subject : re : message from ken rice dorothy , no problem . please , cc - mail me tom ' s number . one of the members of the group has a phd in computer science and he will join me for the call . vince from : dorothy dalton @ enron communications on 05 / 01 / 2001 08 : 53 am to : vince j kaminski / hou / ect @ ect cc : subject : message from ken rice vince : ken rice received a call through a friend ' s referral from dr . tom limperis ( a professor at the university of michigan ) . dr . limperis has developed a statistical database management system he would like to show enron . ken would like you to return this call on his behalf . he feels that you are probably the only person who will understand and be able to determine if enron should have an interest . do you mind returning this call ? please let me know . thanks ! dorothy dalton office of the chairman enron broadband services 1400 smith street , eb 4505 houston , tx 77002 713 - 853 - 6724 - direct 713 - 853 - 9469 - fax ",0 +"Subject: updating your profile information in the gis system as the global vp / md mid - year prc draws closer , i want to take the opportunity to stress to you the importance of updating your profile information in the gis system . details on your current responsibilities , employment history , skills and education should have been updated by 7 july 2000 . for those of you that have not opened your profile in gis , i urge you to do so as soon as possible to ensure that your profiles are current and complete . gis is accessible via the hrweb home page on the intranet . you may go to hrweb . enron . com and look for the gis link , or just type eglobal . enron . com on the command line of the browser . your timely response to this request is greatly appreciated . thank you ,",0 +"Subject: california update - urgent please read 5 / 7 / 01 sources report that the bond authorization will be put to a vote today the bridge loan financing bill will put to a vote today in the california assembly . the republicans are currently in caucus until 3 : 30 pst and then will go to the floor for a vote . the current situation is very fluid , but sources now indicate that the bill would pass with a simple majority vote , lacking the two - thirds needed for an immediate bond issuance . if this is the case , the bill would not take effect for 90 days and the state would be forced to abandon its proposed bridge loan plans . absent of last minute financial rescues by davis or a new longer bridge loan package ( unlikely ) socal could seek voluntary bankruptcy . the main problem would then be the waiting period for financial relief from the state through the transmission line purchase or other assistance . there is an outside chance that republican defectors could precipitate from the current caucus . there is extreme pressure on the republicans from davis and angelides . if the bill failed due to lack of republican support , it would provide davis the opportunity to blame republicans for on - going expenditures of $ 70 m / day ( power purchases ) , and a possible bankruptcy by socal . the last republican who gave support to a democratic bill ( ab lx ) , representative bill campbell , lost his job . sources also confirm that democrats have not met with republicans on the bond issuance since last week .",0 +"Subject: your advice is appreciated vince , in the morning we were talking about the el paso candidate who thinks he is above something and is not willing to take certain project or responsibility . in real life , we also occasionally have similar stiuation . ( an example is attached ) . i would like to have your guidance when such a situation occurs . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 05 / 02 / 2001 02 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 05 / 02 / 2001 01 : 41 pm to : paulo issler / hou / ect @ ect cc : subject : re : asian option for pavel our convention is whoever finalizes the model should write the documentation . it does not make sense to write one when changes are anticipated . you have been working on this almost a year , it never strikes you that we need a documentation ? i created exotica . xll , does that also give you an excuse not working on exotica documentation ? zimin paulo issler 05 / 02 / 2001 11 : 52 am to : zimin lu / hou / ect @ ect cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel i am surprised that we do not have the documentation ready . i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality . paulo issler zimin lu 05 / 02 / 2001 11 : 29 am to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect cc : pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel tai woo , here are the c - codes for the crudeapo . ' sig ' is the spot volatility meaning the price volatility within the delivery period . you should consult with pavel for the definition of this "" extra "" parameters . we would like to see the position monitor once you get it running . we might have some additional suggestions . paulo , why don ' t we have a documentation on crudeapo you worked on ? i can not find it in exotica help file . please supply that to tai , thanks . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am to : paulo issler / hou / ect @ ect cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect subject : asian option for pavel this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio . he asked me to talk to you in order to access to the code so that i can see the difference made to the model . as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is . thanks ,",0 +"Subject: the national forum on corporate finance andy , i am sending you a draft oof a proposal regarding national forum for top finance practitioners and academics . the idea came from a professor at rice university who has already received a commitment from a number of most distinguished cfos . please , read the outline and see if you would be interested in joining this forum . i shall be glad to help to arrange a meeting with prof . ikenberry . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 05 / 2001 10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - david ikenberry on 02 / 02 / 2001 06 : 10 : 02 pm to : "" vkamins @ ennron . com "" cc : subject : it was great talking with you . dave - brochure . doc * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: software erequests for credit modeling hi lola , as per our recent conversation , today we had a conference call with the enron research and credit groups in the us and the uk . it was decided that we would require the folowing software to assist us in developing the private firm models : 1 . eviews statistical package 2 . spss statistical package ( the uk office already has an spss site license . ) 3 . tops software 4 . neural net software package ( george in the uk developed this package ) . please discuss submit these requests to craig chaney for his approval . thanks , iris",0 +"Subject: energy futures contracts project hi vince and jason : please find attached a copy of our project . thank you for an enjoyable and informative class . sincerely , rishad patel neeraj hingorani duane maue eric van stone john ganguzza grant johnson paulo yoshiura - . doc",0 +"Subject: re : li sun : important notice : year - end prc preparation stinson , i think it should be kevin kindall . vince stinson gibner 09 / 18 / 2000 08 : 08 am to : vince j kaminski / hou / ect @ ect cc : subject : li sun : important notice : year - end prc preparation vince , should i be responsible for li sun ( for prc ) or do you want grant since she is primarily working for kevin kindall ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 09 / 18 / 2000 08 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" the associate and analyst programs "" @ enron . com > on 09 / 15 / 2000 06 : 13 : 49 pm to : "" sgibner @ enron . com "" cc : subject : important notice : year - end prc preparation good afternoon supervisors of associates and analysts : as you may be aware , the year - end prc for 2000 is quickly approaching and your assistance is needed in ensuring a smooth process . it is imperative that the performance management team obtains the correct reviewing supervisor for the associates and analysts in order to facilitate the prc process . the reviewing supervisor is the person that will provide the associate / analyst their year - end individual performance feedback . you will be considered the reviewing supervisor if you employ the individuals listed below as of october 1 , 2000 . a comprehensive list of the associates and / or analysts currently in our database indicates that you are the supervisor of the individuals listed below . please examine the list and reply with "" no changes "" if the data is correct . if analyst in your response . if you will not be the reviewing supervisor as of october lst , please let us know so that we may follow up with the associates and analysts . in order to meet the performance management team ' s deadline , your reply is needed by friday , september 22 , 2000 . we appreciate your assistance in this matter . our records show the following associates and analysts under your prc review . shalesh ganjoo , analyst li sun , associate martin lin , associate thanks in advance for your cooperation . please feel free to call shelly butler @ 713 - 853 - 4584 or jana giovannini @ 713 - 853 - 9233 with any questions you might have .",0 +"Subject: this summer ' s houston visits 2 hi vince , one of my only windows of opportunity right now is to schedule the houston visit for monday 10 th july for a single week only . regards , anjam - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 28 / 04 / 2000 11 : 33 - - - - - - - - - - - - - - - - - - - - - - - - - - - steven leppard 28 / 04 / 2000 10 : 15 to : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect cc : anjam ahmad / lon / ect @ ect , benjamin parsons / lon / ect @ ect , kirstee hewitt / lon / ect @ ect , matthew d williams / lon / ect @ ect , steven leppard / lon / ect @ ect subject : this summer ' s houston visits vince , dale here are our proposals for houston visits from our group : kirstee all of july , all of september . ( kirstee ' s personal commitments mean she needs to be in the uk for august . ) ben all of october . ( no crossover with kirstee , ensures var / credit cover in london office . ) steve 2 - 3 weeks in july , first 3 weeks of september . anjam to be arranged at anjam and houston ' s mutual convenience . matt not a permanent research group member . i ' m asking richard ' s group to pay for his visit , probably in august . steve",0 +"Subject: fyi - lacima run a 2 day course - uts on weather derivatives - first w / e sept - - - - - - - - - - - - - - - - - - - - - - forwarded by raymond yeow / enron _ development on 07 / 14 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" chris strickland "" on 07 / 14 / 2000 05 : 01 : 12 am please respond to "" chris strickland "" to : "" shane dallmann "" cc : "" julie "" , "" les "" , "" raymond yeow "" , "" paul quilkey "" subject : run a 2 day course - uts on weather derivatives - first w / e sept hi shane , thanks for your e - mail . we actually sent the 9 of the 11 chapters off to the typesetter today and i will forward you our word documents in the morning . i ' ve been travelling a lot to the uk at the moment and so haven ' t spent much time with the student myself . are you going to te energy confernece next week , perhaps we can meet up there ? good to hear about the weather . we are actually going to run a two day course thru uts on weather derivatives the first weekend of september . feel free to tell your potential clients about it if you think it will bring up the industry knowledge . maybe we can associate your name with the course somehow which might help both of us ? c . - - - - - original message - - - - - from : shane dallmann to : cc : paul quilkey ; raymond yeow sent : thursday , july 13 , 2000 1 : 56 pm > > > > chris , > > how are things going ? i see that you are presenting at australian energy risk > 2000 along with vince kaminski who will be out from the us > > i was wondering how the book is going and whether we ' re likely to get a copy > ( just notes would do ) any time soon . or are you still waiting on those slack > enron people to finish it ? ( maybe you can corner him while he ' s here ) . if i > remember correctly from when you were here , you were going to give us a copy of > the notes and then we were going to sit down and decide what exactly we wanted > you to cover in an in - house course . > > paul also told me about a student of yours that was going to get in touch with > me but i have not heard anything yet . > > enron australia is also going to launch weather in the next couple of weeks and > would like to invite you and les along , so can you send me an address we can > send invitations to if you ' re interested . > > regards , > > shane > >",0 +"Subject: replacement of stolen chairs hi reggie , we spoke regarding the chairs on monday . please , we need these chairs as soon as possible , without being charged . we paid for all new chairs each time we moved and it ' s not fair we pay again . thanks kevin moore p . s . these chairs were taken . . . . . . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 18 / 2000 10 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : william smith @ enron 04 / 18 / 2000 10 : 00 am to : reggie wilson / epsc / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , kevin g moore / hou / ect @ ect subject : replacement of stolen chairs reggie , there may already be a request floating around for a standard black office chair for ebl 972 d . it was stolen over a weekend several weeks ago . in addition to that one , my own chair at eb 3132 a was stolen this past weekend . could you come up with a couple of decent ones for us ? if you need to charge them to us , our numbers are 0011 and 100038 . as always , call me if you need to at x 58322 . thanks ! sam smith",0 +"Subject: re : resume sorry , i did not know about the jv . marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : friday , january 26 , 2001 3 : 53 pm > to : marshall . brown @ robertwalters . com > cc : vince . j . kaminski @ enron . com ; stinson . gibner @ enron . com > subject : re : resume > > > marshall , > > thanks for the resume . we have a jv with peoples , so poaching is out of > the > question . > > vince > > > > > > marshall brown on 01 / 25 / 2001 09 : 04 : 23 > am > > to : vince kaminski > cc : > subject : resume > > > vince , > this candidate would be interested in speaking with you . let me know > your thoughts . > regards , > > marshall brown > vice president > robert walters associates > tel : ( 212 ) 704 - 0596 > fax : ( 212 ) 704 - 4312 > mailto : marshall . brown @ robertwalters . com > http : / / www . robertwalters . com > > > > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . > > this email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed . if you have received this email in error please notify > the system manager . > > this footnote also confirms that this email message has been swept by > mimesweeper for the presence of computer viruses . > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > ( see attached file : laps _ rob . doc ) > > >",0 +"Subject: headcount verification - deadline noon wednesday , oct 25 , 2000 becky : attached is the october "" revised "" research group headcount : - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 24 / 2000 01 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - becky pham 10 / 24 / 2000 11 : 57 am to : shirley crenshaw / hou / ect @ ect cc : subject : headcount verification - deadline noon wednesday , oct 25 , 2000 please verify the attached file for accuracy , complete the blank columns and add any new employees . if you have any questions , call me . thanx .",0 +"Subject: re : support on statistical modeling randall , the person supporting ebs in the research group is martin lin . i shall ask him to give you a call and will be glad to join you at the meeting with martin . vince from : randall hicks @ enron communications on 04 / 04 / 2001 10 : 42 am to : vince j kaminski / hou / ect @ ect cc : bradford brooks / enron communications @ enron communications , shirley crenshaw / hou / ect @ ect , daryl flaming / enron communications @ enron communications , martin sacchi / enron communications @ enron communications subject : support on statistical modeling dear vince : i was referred by rita hartfield of ebs . i am the director of marketing for the digital content services team ( david cox , frank bay , et . al . ) . we are identifying and evaluating features and functions that will be a part of the next generation entertainment on demand ( eod ) product . the e - mail i ' ve excerpted below contains two links to a company that offers a "" preferencing "" service that we know is quite popular and important to entertainment consumers . i have some questions abouts the statistics , sampling methodology , explained variance etc . of the model that the stylelogic group employs . do you have a member of your team that could assist on this project ? thanks for your help , randall hicks director - marketing enron broadband services 1400 smith street - eb 4589 a houston , tx 77002 work - 713 . 853 . 9970 randall _ hicks @ enron . net - brad , i would appreciate a chance to talk with you regarding enron ' s vod plans . we have developed movie selection and recommendation / prediction functionality that we can manage for ebs . if you would like to read about what we have to offer , you may go to : http : / / www . stylelogic . com / predict i also invite you to see our functionality at : http : / / www . reviewmovies . com / i look forward to a chance to speak with you at your earliest convenience . brent rosenkranz president stylelogic - internet strategies and solutions 101 n . acacia avenue solana beach , ca 92075 phone - 858 - 350 - 3939 toll free - 888 - 750 - 4678 fax - 858 - 350 - 3930 www . stylelogic . com brent @ stylelogic . com",0 +"Subject: request submitted : access request for rakesh . bharati @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000013287 approver : stinson . gibner @ enron . com request create date : 1 / 10 / 01 5 : 57 : 18 pm requested for : rakesh . bharati @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: enron tiger team dear jeff , our tiger team very much enjoyed your presentation about enron global markets on friday . given that we have latitude in our project scope , our team would like to assist enron in evaluating a new market opportunity . you mentioned several markets that enron is considering in 2001 , including transportation , cement , coffee , cocoa , sugar , etc . we believe that a project of this sort will give us the opportunity to really learn how enron creates value , what its business model and core competencies are , and how they can be translated to a new market . furthermore , we can get an in - depth understanding of an industry . we believe our project will complement any analysis that your business group is currently undertaking . please propose the top three new markets that you would like us to evaluate for enron . upon receipt of your proposal , perhaps we could set up a conference call to discuss your thoughts and to make a final selection . your expeditious response is appreciated . regards , josh leventhal 215 - 546 - 2103",0 +"Subject: re : a friend of mine vince , thank you very much for the follow up report . i am sure richard will be very enthusiastic about the opportunity to speak with you and your team . i appreciate your help , and please feel free to contact me if you or shirley need assistance with logistics . again , thank you and i look forward to working with you again this recruiting season . regards , kristin - - - - - original message - - - - - from : kaminski , vince sent : wednesday , may 02 , 2001 8 : 27 am to : gandy , kristin subject : re : a friend of mine kristin , thanks a lot for the resume . we shall arrange a phone interview with richard . this is out standard procedure . a phone interview is followed by the on - site interview , after we determine what is the best team to interview the candidate . vince from : kristin gandy / enron @ enronxgate on 05 / 01 / 2001 05 : 14 pm to : vince j kaminski / hou / ect @ ect cc : subject : a friend of mine vince , last week i was contacted by one of my friends who is very interested in becoming an enron employee . he has a phd and several years research and lab experience . richard is afraid that being a phd is a dying breed and may need to go back to school to obtain an mba . i was wondering if you would mind looking at the attached resume to assess if you have any interest in richard , or if you feel i should encourage him to go back to school . i am unclear as to the qualifications for your group so i apologize if this request is way off base . thank you for your help , kristin gandy associate recruiter enron corporation 1400 smith street eb 1163 houston , texas 77002 713 - 345 - 3214 kristin . gandy @ enron . com >",0 +"Subject: re : thank you ! frank , thanks a lot . look forward to meeting you again on campus . vince "" frank qian "" on 11 / 05 / 2000 05 : 10 : 06 pm to : cc : subject : thank you ! dear mr . kaminski : it ' s a great pleasure to have you visiting us and a great honor to have dinner with you . i ' d like to thank you for your wonderful presentation . it ' s the most interesting topic we had so far . this is not just my personal opinion , all my classmates i talked to agree with me . i like enron ' s style and culture and i think it played a big role in enron ' s success . i look forward to discuss career opportunities at enron during your on - campus interview session . regards , frank qian fqian @ andrew . cmu . edu",0 +"Subject: confirmation of your online order wincenty j kaminski ( vkamins @ enron . com ) this email is to confirm your online order which was received on 24 - aug - 2000 . please note that this does not constitute a receipt . if you have any queries or problems please e - mail directcustserve @ cup . cam . ac . uk ( customer services ) quoting order reference number web 5908 / ds 51002180 . totals : 1 lines , 1 items , weight 0 . 630 kg , value gbp 30 . 00 delivery charge , air : gbp 5 . 00 total cost : gbp 35 . 00 shopping basket theory of financial risks , from statistical physics to risk management , jean - philippe bouchaud ( hardback ) , isbn 0521782325 quantity : 1 reference : kaminski cost : gbp 30 . 00 in stock",0 +"Subject: new update on ppi model for inflation book - final version dear all , attached is anjam ' s reasoning and final version of the uk ppi pllu model . the uk inflation book ' s main exposure is to two ppi indexes - the pllu and the dzcv through year 2010 . both are ppi output indexes with very comparable baskets . the only significant difference between the two is the presence of energy in the pllu ( 7 . 6 % ) . the model in use escalates the two indexes by the same factors . however , with the energy price fluctuations in recent years different models for the two indexes would reflect better the nature of their drivers . anjam concentrated on the pllu index first and he will shortly construct one for the dzcv based on the same methodology , but without the brent crude curve . the new model achieves the two main objectives of the ppi curve : it is significantly more robust and stable than the existing one , and it is considerably less sensitive to the input coefficients . this will result in us having more confidence in our monthly p & l as well as less fluctuations . best regards , martina x 34327 anjam ahmad 10 / 03 / 2000 11 : 59 to : martina angelova / lon / ect @ ect cc : subject : new update on ppi model for inflation book dear all , i followed up on the suggestions of happening babe at the conference call as follows : - 1 ) use less data unfortunately , kicking out only 1990 makes the overall equation a lot less robust , in fact dramatically so , and so eliminates the possibility of using less data . the model tested was the rpi ( month + 15 ) ppi pre - empts the moves in rpi by about 8 months . the magnitude of the oscillations is also reduced . this shows that if we had more detail in our rpi forward curve , then the ppi model would reflect those peaks and humps adequately . conclusion i therefore propose that we use the model that incorporates rpi , rpi [ t + 15 ] and deviations of brent crude from long - term average . the new model is plotted below in burgundy and can be compared to the old ppi which is depicted in blue . please note that all this analysis only applies to pllu , and that a separate study will be needed for the dzcv ppi index . regards , anjam x 35383 - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 09 / 03 / 2000 16 : 52 - - - - - - - - - - - - - - - - - - - - - - - - - - - anjam ahmad 08 / 03 / 2000 14 : 03 to : martina angelova / lon / ect @ ect , harry arora / hou / ect @ ect , maureen raymond / hou / ect @ ect , zimin lu / hou / ect @ ect , farouk lalji / hou / ect @ ect cc : trena mcfarland / lon / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , leandro ibasco / corp / enron @ enron subject : update on ppi model for inflation book dear all , we thought it might be useful to incorporate brent crude as an explanatory variable for ppi ; it was found that deviations of dated brent crude from the long - term average of $ 18 . 80 was the best form of the variable to use ( for predictions the brent forward curve produced by the global products group is used ) . the three new equations developed were : - pllu ( t ) = a . rpi ( t ) + b . rpi ( t + n ) + c . ( datedbrentcrude - 18 . 8 ) + constant , where n is 14 , 15 or 16 [ reddish curves ] r - squared approx 0 . 49 f - stat approx 32 the chart below shows what our projected pllu curve would be given this equation , and also the three best relations from before which were based upon current and future rpi : pllu ( t ) = a . rpi ( t ) + b . rpi ( t + n ) + constant , where n is 14 , 15 or 16 [ greenish curves ] r - squared approx 0 . 47 f - stat approx 45 comparison of models as you can see , the two equations differ in the very short - term and very long - term ; the inclusion of deviations of brent crude leads to short - term predictions of 3 . 0 % to 3 . 2 % over the next six months . the greenish curves predict pllu in the range of 2 . 5 % to 2 . 8 % over the next six months . the curves are then very similar until 2009 , when the models including crude break - away to the upside , relative to the falling rpi curve . the model based purely on rpi hugs the rpi curve much more closely in the longer term . this is only important to the extent that we have large positions beyond 2009 ( which we don ' t ) . suggestion what could be useful now is a differently - specified model designed to forecast only the next 3 months , using auto - regressive or auto - regressive error terms . this model would be far more accurate in the near - term , and we could include this information onto the front of this long - term model . this may be useful , despite the fact that most of our exposure is in future time buckets . back - testing all the models give similar visual and statistical performance over the data sample used ( based mainly on 1990 s "" new paradigm "" economy ) . hopefully we can discuss these and other points later in the tele - conference ; your ideas on this would be appreciated . regards , anjam x 35383",0 +"Subject: lets meet and greet ! hello everyone : since we have so many new employees , vince thought it would be a good idea for the research group to have an offsite social so that we might get to know each other better and to celebrate a great first half ! when : tuesday , july 11 th where : ninfa ' s across the street . time : 5 : 30 pm - 7 : 30 pm what : snacks , drinks and fellowship more to follow - mark your calendars ! shirley",0 +"Subject: invitation for you from rice university : the national forum on corporate finance mark , i left you a message regarding the national forum on corporate finance at rice . they would be delighted if you could serve as a panel member at this conference . here are the coordinates of the professor at rice who is in charge . i would appreciate if you could call him and let him know if you can attend . thanks . vince prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: thomas knudsen all i ' ve been informed by thomas knudsen that he no longer wishes to pursue his application to join our research group . steve",0 +"Subject: re : asian option for pavel stinson , let ' s talk about it . it seems like an open personality clash developing for the first time in the history of the group . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 03 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 05 / 02 / 2001 01 : 41 pm to : paulo issler / hou / ect @ ect cc : ( bcc : vince j kaminski / hou / ect ) subject : re : asian option for pavel our convention is whoever finalizes the model should write the documentation . it does not make sense to write one when changes are anticipated . you have been working on this almost a year , it never strikes you that we need a documentation ? i created exotica . xll , does that also give you an excuse not working on exotica documentation ? zimin paulo issler 05 / 02 / 2001 11 : 52 am to : zimin lu / hou / ect @ ect cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel i am surprised that we do not have the documentation ready . i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality . paulo issler zimin lu 05 / 02 / 2001 11 : 29 am to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect cc : pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel tai woo , here are the c - codes for the crudeapo . ' sig ' is the spot volatility meaning the price volatility within the delivery period . you should consult with pavel for the definition of this "" extra "" parameters . we would like to see the position monitor once you get it running . we might have some additional suggestions . paulo , why don ' t we have a documentation on crudeapo you worked on ? i can not find it in exotica help file . please supply that to tai , thanks . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am to : paulo issler / hou / ect @ ect cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect subject : asian option for pavel this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio . he asked me to talk to you in order to access to the code so that i can see the difference made to the model . as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is . thanks ,",0 +"Subject: joe carson greg , two things i did not manage to mention to you at the meeting on monday . 1 . joe carson . i was very positively impressed by joe carson . enron badly needs a senior economist of his stature and experience . he has many contacts in the industry and can represent enron well . he is very pragmatic and , also , i expect a cool head on old shoulders . one negative is that he wants to work out of new york . the tradeoff is between maintaining his contacts and working closer with the desks . 2 . tony mends . i think you , or louise , should explore the possibility of using the skills of tony mends . tony and i are good friends so i may be biased . i think that he is a very smart and efficient person and can contribute a lot to the organization that relies on processing huge volumes of information . vince",0 +"Subject: re : willow and pathstar evaluations mike , we are short manpower in london . we shall try to evaluate the software in houston . vince "" mike curran "" on 04 / 24 / 2001 10 : 03 : 24 am please respond to "" mike curran "" to : cc : subject : willow and pathstar evaluations hi vince - hope all is well with you . sharad hasn ' t had time to evaluate our willow tree or monte carlo software since the middle of last year . is there somebody else that could do it ? please let me know who i should send the evaluation to . best regards , michael curran ceo quantin ' leap limited piercy house 7 copthall avenue london ec 2 r 7 nj tel : + 44 ( 0 ) 20 7562 3450 fax : + 44 ( 0 ) 20 7562 3411 mailto : mcurran @ quantinleap . com http : / / www . quantinleap . com",0 +"Subject: time sensitive : executive impact & influence program survey * * * reminder * * * we have not yet received your feedback . your input is very valuable and to be included in the participant ' s summary report , it must be received no later than close of business on friday , february 9 . without your feedback , the participant may not receive a summary report or be eligible to attend the program . * immediate action required - do not delete * executive impact & influence program dear vince kaminski , as part of the executive impact and influence program , each participant is asked to gather input on the participant ' s own management styles and practices as experienced by their immediate manager , each direct report , and up to eight colleagues / peers . you have been requested to provide feedback for a participant attending the next program . your input ( i . e . , a self assessment , if you are a participant in this program , manager assessment , direct report assessment , or colleague / peer assessment ) will be combined with the input of others and used by the program participant to develop an action plan to improve his / her management styles and practices . if you are providing feedback as a manager of the participant , please note that your feedback will be identified in the summary report . it is important that you complete this assessment no later than close of business on friday , february 9 . to begin the online administration process , you will need the following internet address and password ( s ) . note : if you are providing feedback for more than one person , each password and participant name is individually listed below . open your internet browser e . g . , internet explorer or netscape navigator , and please type or copy the url address below into your internet browser ( please do not go through lotus notes ) : www . fsddatasvc . com / enron h 73 m 9 a ( anthony mends ) if you experience technical problems , please call dennis ward at fsd data services , 713 - 942 - 8436 . if you have any questions about this process , you may contact debbie nowak at enron , 713 - 853 - 3304 , or christi smith at leadership research institute / keilty , goldsmith & company , 619 - 216 - 0404 . thank you for your participation .",0 +"Subject: request submitted : access request for anita . dupont @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000012736 approver : stinson . gibner @ enron . com request create date : 1 / 8 / 01 4 : 28 : 42 pm requested for : anita . dupont @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: re : jeff skilling does msl 50 vince , thank you so much for your generous pledge . please make your check payable to "" national ms society , "" and send it to me at eb 5008 a at your convenience . thanks again , srs vince j kaminski @ ect 03 / 30 / 2000 09 : 02 am to : sherri sera / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : jeff skilling does msl 50 sherri , i can pledge $ 2 per mile . vince enron north america corp . from : sherri sera @ enron 03 / 29 / 2000 11 : 13 am to : j mark metts / na / enron @ enron , dolores fisher / na / enron @ enron , jeffrey sherrick / corp / enron @ enron , christina grow / corp / enron @ enron , kenneth lay / corp / enron @ enron , jeff skilling / corp / enron @ enron , joseph w sutton / enron _ development @ enron _ development , james m bannantine / enron _ development @ enron _ development , cliff baxter / hou / ect @ ect , sanjay bhatnagar / enron _ development @ enron _ development , rick buy / hou / ect @ ect , richard causey / corp / enron @ enron , diomedes christodoulou / enron _ development @ enron _ development , james derrick / corp / enron @ enron , andrew s fastow / hou / ect @ ect , peggy fowler / enron @ gateway , mark frevert / lon / ect @ ect , kevin hannon / enron communications @ enron communications , ken harrison / enron @ gateway , david haug / enron _ development @ enron _ development , joe hirko / enron communications @ enron communications , stanley horton / corp / enron @ enron , kurt s huneke / enron _ development @ enron _ development , larry l izzo / enron _ development @ enron _ development , steven j kean / hou / ees @ ees , mark koenig / corp / enron @ enron , rebecca p mark / hou / azurix @ azurix , mike mcconnell / hou / ect @ ect , rebecca mcdonald / enron _ development @ enron _ development , jeffrey mcmahon / hou / ect @ ect , lou l pai / hou / ees @ ees , ken rice / enron communications @ enron communications , john sherriff / lon / ect @ ect , greg whalley / hou / ect @ ect , thomas e white / hou / ees @ ees , brenda garza - castillo / enron _ development @ enron _ development , marcia manarin / enron _ development @ enron _ development , susan skarness / hou / ect @ ect , stacy guidroz / enron _ development @ enron _ development , beena pradhan / enron _ development @ enron _ development , karen k heathman / hou / ect @ ect , sharron westbrook / corp / enron @ enron , molly bobrow / enron _ development @ enron _ development , rosane fabozzi / enron _ development @ enron _ development , stephanie harris / corp / enron @ enron , bridget maronge / hou / ect @ ect , mary trosper / enron @ gateway , nicki daw / lon / ect @ ect , carol ann brown / enron communications @ enron communications , dolly henrici / enron @ gateway , ann joyner / corp / enron @ enron , elaine rodriguez / enron _ development @ enron _ development , nancy young / enron communications @ enron communications , cindy stark / corp / enron @ enron , sherryl stone / enron _ development @ enron _ development , mary e garza / enron _ development @ enron _ development , maureen mcvicker / hou / ees @ ees , joannie williamson / corp / enron @ enron , rosalee fleming / corp / enron @ enron , marsha lindsey / hou / azurix @ azurix , cathy phillips / hou / ect @ ect , loretta brelsford / enron _ development @ enron _ development , sue ford / hou / ect @ ect , karen owens / hou / ees @ ees , dorothy dalton / enron communications @ enron communications , lauren urquhart / lon / ect @ ect , pam benson / enron _ development @ enron _ development , liz m taylor / hou / ect @ ect , judy g smith @ ees , katherine brown / corp / enron @ enron , vanessa groscrand / corp / enron @ enron , cindy olson / corp / enron @ enron , bobbie power / corp / enron @ enron cc : danny mccarty / lon / ect @ ect , philippe a bibi / hou / ect @ ect , david w delainey / hou / ect @ ect , mark e haedicke / hou / ect @ ect , michael kopper / hou / ect @ ect , john j lavorato / cal / ect @ ect , jere c overdyke / hou / ect @ ect , greg piper / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , richard dimichele / enron communications @ enron communications , jay fitzgerald / corp / enron @ enron , jim fallon / hou / ect @ ect , rebecca carter / corp / enron @ enron , david cox / enron communications @ enron communications , tom gros / enron communications @ enron communications , marty sunde / hou / ees @ ees , dan leff / hou / ees @ ees , jim crowder / enron communications @ enron communications , mary ann long / enron communications @ enron communications , charlene jackson / corp / enron @ enron , jeremy blachman / hou / ees @ ees , mark s muller / hou / ees @ ees , michael burke / houston / eott @ eott , john b echols / hou / ees @ ees , gene humphrey / hou / ect @ ect , drew c lynch / hou / ect @ ect , amanda k martin / hou / azurix @ azurix , ted murphy / hou / ect @ ect , mark palmer / corp / enron @ enron , paula rieker / corp / enron @ enron , rob walls / enron _ development @ enron _ development , david berberian / enron communications @ enron communications , scott yeager / enron communications @ enron communications , stephen barth / enron communications @ enron communications , john bloomer / enron communications @ enron communications , kenny burroughs / enron communications @ enron communications , kevin garland / enron communications @ enron communications , john griebling / enron communications @ enron communications , kevin howard / enron communications @ enron communications , kristina mordaunt / enron communications @ enron communications , everett plante / enron communications @ enron communications , david reece / enron communications @ enron communications , james reece / enron communications @ enron communications , rex shelby / enron communications @ enron communications , claudia johnson / enron communications @ enron communications , kevin kohnstamm / enron communications @ enron communications , steve luginbill / enron communications @ enron communications , jean mrha / enron communications @ enron communications , brad nebergall / enron communications @ enron communications , raymond bowen / hou / ect @ ect , janet r dietrich / hou / ect @ ect , jeff donahue / hou / ect @ ect , gary hickerson / hou / ect @ ect , vince j kaminski / hou / ect @ ect , george mcclellan / hou / ect @ ect , julia murray / hou / ect @ ect , brian redmond / hou / ect @ ect , colleen sullivan / hou / ect @ ect subject : jeff skilling does msl 50 well , the bike is inspected , a few training rides have been made , and the camping gear is being dusted off ( yes , he is actually camping at the fairgrounds in lagrange ! ) . now all our fearless leader ( and incidentally , the national multiple sclerosis society ' s 2000 man of the year ) , jeff skilling , needs is your help in raising money for ms . enron ' s msl 50 dream team is bigger than some townships in these parts - over 350 enron employees , led by jeff , will ride from houston to austin under the enron flag april 15 - 16 , and the team ' s goal is to raise $ 350 , 000 . i am challenging ( is begging a better word ? ) each of you to pledge a certain amount per mile - i . e . , $ 1 , $ 2 , $ 5 , it ' s your call . i ' ll even give you a break on the calculation and use 150 miles , even though jeff swears it ' s closer to 170 miles ( you know how he is with numbers ) . of course , a flat pledge is also appreciated . and don ' t forget , enron will match your pledge to this very worthy cause 1 - 1 . i hope you will join the team and help enron maintain its status as the top money raiser of all msl 50 rides in the nation ! thank you for your consideration . if you have any questions , please don ' t hesitate to call me . sherri x 3 - 5984",0 +"Subject: christmas vacation shirley , i plan to take off the 3 days after christmas for vacation , december 27 , 28 , and 29 th . please mark on your calendar . since vasant is out , i checked with vince and he gave the ok as long as we have coverage . thanks , lance",0 +"Subject: re : charles shen molly , it would be tanya . vince enron north america corp . from : molly magee 11 / 09 / 2000 04 : 40 pm to : vince j kaminski / hou / ect @ ect cc : subject : charles shen vince : we need some information to set up this position , and i don ' t think we ever discussed to whom he would be reporting . is it you ? molly",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 s 5 sy 2 order for : amitava dhar 1 x ( compaq armada m 700 $ 3297 ) 1 x ( option : m 300 / m 700 convenience base $ 293 ) 1 x ( option : carry case for m 700 $ 72 ) 1 x ( option : m 300 / m 700 universal ac adapter with power cord $ 59 ) 1 x ( option : m 300 / m 700 universal battery charger $ 124 ) 1 x ( option : m 700 8 cell li - ion battery $ 149 ) enron it purchasing",0 +"Subject: here ' s a list of materials vince , here is my list of collected materials . i would like to get copies of your papers on risk management as well ( can you send me cites ? ) look forward to talking with you next week . your friend , john - enron corporation paper . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: united way executive breakfasts please join us for one of the executive breakfasts at depelchin children  , s center , our adopted agency for this year and one of the more than 80 community organizations supported by the united way of the texas gulf coast . the executive breakfasts will focus on our 2000 campaign . to reach our goal of $ 2 , 310 , 000 , it will take the active leadership and support of each of you . we look forward to seeing all of you at one of the breakfasts . event : executive breakfast date : thursday , august 3 , 2000 ( hosted by joe sutton ) or friday , august 4 , 2000 ( hosted by jeff skilling ) time : 7 : 45 - 9 : 00 a . m . location : depelchin children  , s center 100 sandman ( close to memorial and shepherd intersection ) transportation : bus will depart from the enron building ( andrews street side ) promptly at 7 : 30 a . m . note : bus transportation is encouraged , due to limited onsite parking . however , if you should need to drive , a map will be provided . please r . s . v . p . no later than wednesday , july 26 to confirm your attendance and bus transportation to jessica nunez at 853 - 1918 .",0 +"Subject: eprm 2001 houston please respond to dear speaker , i would like to remind you that the room block at the houstonian hotel where the above mentioned event is being held is about to expire . after friday 20 th april you will not be able to take advantage of the discounted rooms that are being held there . please book your accommodation asap to take advantage of this offer . contact the hotel directly and say that you are part of the risk conference on 14 & 15 may 2001 . 001 713 680 2626 . risk waters group do not book accommodation for speakers , you have to contact them yourself , directly . if you have not already sent me a short biography and your speaker checklist , please do so at your earliest convenience . kind regards layla o ' leary event co - ordinator risk waters group haymarket house 28 - 29 haymarket london swly 4 rx tel : + 44 ( 0 ) 20 7484 9871 fax : + 44 ( 0 ) 20 7484 9800",0 +"Subject: re : various market data charges to the research group for february 2001 julie : i talked to both maureen and tanya and neither one want this service and have not been using it . maureen told me that she told you a year ago that she did not want telerate ( when she was supporting gary hickerson ' s group on 30 ) . if that is the case , we probably need a refund . let me know if there is anything that can be done about this . the only person in our group that wants telerate is jason sokolov and i put in a request for that yesterday . please cancel everything else . thanks ! shirley from : julie pechersky / enron @ enronxgate on 04 / 09 / 2001 12 : 33 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : various market data charges to the research group for february 2001 hi shirley , regarding telerate : i can cancel the service for both maurenn and tanya , but another name commonly used for the telerate application is bridge or bridgestation so you may want to just ask the two of them once more to be sure that they do not use it . just let me know and i will cancel billing jason can get access to it by submitting an e - request for him for telerate . when you go into e - request and it is prompting you for what application to choose , type in the words market data and hit search . telerate will pop up as an option and within that choose the role basic energy . we will take care of it from there . i will also remove hector campos from reuters . was there anyone else being charged for reuters services that are not needed ? i will also remove clayton vernon . i do not see anything under the name brad amoine , is this the correct spelling of his name ? i will also find out where shalesh ' s charges should be moved to . thanks for updating us and let me know if there is anything else . julie - - - - - original message - - - - - from : jackson , clifford sent : wednesday , april 04 , 2001 1 : 44 pm to : crenshaw , shirley cc : pechersky , julie subject : re : various market data charges to the research group for february 2001 hi shirley . i ' ve copied this to julie pechersky , who maintains the market data database , and will be able to make the user changes you request . she ' ll also be able to tell you how / when telerate can be enabled for mr . sokolov . we get the billing data from her , so once it is correct there , it will be billed correctly . cliff jackson - - - - - original message - - - - - from : crenshaw , shirley sent : wednesday , april 04 , 2001 1 : 31 pm to : jackson , clifford cc : kaminski , vince subject : various market data charges to the research group for february 2001 clifford : in reviewing our february eis billing summary for co # 0413 , cc # 107043 , i have several questions . telerate : ( february charges : $ 3 , 032 , 35 ) i polled the group and only one person has asked for telerate and he is not shown being charged for it . that is jason sokolov . he would like to have access to telerate . if you could let me know how to get that for him . the largest percent of the telerate charges appear to be for maureen raymond , who says that she does not use telerate . could she be accessing some data that she does not know is telerate ? please let me know . if there are individual accounts for telerate the only one we need is for jason sokolov , unless maureen ' s charges are for something that she does not know is telerate . tanya tamarchenko does not need telerate and she has the second largest percentage of the charges . anyway , the only telerate subscription we need is for jason sokolov . reuters : ( february charges : $ 405 . 96 ) no one in research uses reuters . i believe most of the charges are for hector campos who used it when he was on the trading desk . when he rotated into the research group he did not need it any longer , but is still being billed for it . please remove from the research cost center . the following individuals are no longer with enron or no longer with research and their accounts should be removed from the research cost center . clayton vernon no longer with the research group remove his lim / lim / excel and lim core charges from the research cost center brad amoine no longer with enron remove his lim / lim / excel and lim core charges from the research cost center shalesh ganjoo no longer with the research group remove his lim and lim core charges from the research cost center i hope this is not too confusing ! please advise . thanks ! shirley crenshaw",0 +"Subject: meeting with mr . sud rebecca , as we had spoken on the phone , i met with mr . kk sud , a retired secretary in the govt . of india yesterday . this meeting was arranged at vince ' s request , since vince had been approached by mr . sud ' s son who is a student at rice ( where vince teaches a course ) . the younger mr . sud had wanted someone at enron to meet with his father who was visiting houston , and is currently an advisor ( post retirement from the government ) to the prime minister ' s office . this was my first meeting , and i have no background check on the person . however , the meeting was interesting , and mr . sud conveyed to me in confidence that the indian govt . is very interested in solving the dabhol issue . he also conveyed that a decision is being made in the direction of ntpc buying all the power from dabhol , but that this was still under wraps . i have no way of judging the genuineness of this person , but he claimed to have been secretary in the ministry of defence for some 16 years , which is a very important post in india . the information he was conveying seemed so important that vince and i decided to update you on the same by phone this morning . mr . sud is leaving houston on monday so , as discussed , i will see if he can meet with you on saturday morning . regards , sandeep .",0 +"Subject: re : resco database and customer capture steve : osman has been working on setting up this meeting and its agenda . i already informed john henderson about this as he is the main person from resco . both osman and i will be involved from the research modeling angle . osman will contact you today regarding this . thanks , krishna . vince j kaminski 04 / 11 / 2000 05 : 27 pm to : steven r meyers / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect subject : re : resco database and customer capture steve , krishna from my group . krishna can also advise you on resco participation . vince steven r meyers @ ees 04 / 11 / 2000 04 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : resco database and customer capture vince , i was not going to be involved directly in the meeting . who from either your group or from resco marketing should participate ? thanks , steve vince j kaminski @ ect 04 / 11 / 2000 08 : 27 am to : steven r meyers / hou / ees @ ees cc : pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : resco database and customer capture steve , it makes sense to meet with abacus . retail marketing is very data intensive . if you set up a meeting with them , please , let me know . vince steven r meyers @ ees 04 / 11 / 2000 08 : 17 am to : timothy edward vail / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect subject : resco database and customer capture tim , i hope things are going well in resco . i think somebody from resco ( or research ) may be interested in the email i received below from brad davids . brad is now working at abacus who works with residential customer patterns as well as predictive modelling . he ' s going to be here the 25 and 26 of this month . i ' m not sure who is responsible for resco marketing , but i think they would find this interesting . who should i send this to ? please let me know if anybody in resco may have any interest . thanks , steve ps : vince , simply an fyi since they do focus on modelling and research . - - - - - - - - - - - - - - - - - - - - - - forwarded by steven r meyers / hou / ees on 04 / 11 / 2000 08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bradley davids on 04 / 10 / 2000 08 : 35 : 32 pm to : "" ' steven . r . meyers @ enron . com ' "" cc : subject : re : possible meeting ? steve : i ' ll see if i can get in on the 25 th . . . will let you know , but i think it ' ll work . just to give you a very brief overview so you can think about who might be interested , abacus has the largest transactional database of consumer buying behavior in the world ( 89 million us households , 3 billion + purchases ) , along with sophisticated modeling capabilities to help predict customer response to various offers at the household level . given the critical need to reduce customer acquisition costs in retail energy markets , we believe that our data and modeling can help energy retailers target their direct marketing efforts toward the residential customers most likely to respond to whatever the offer is - - improving the efficiency of mailings and other promotional campaigns ( so there is an efficiency angle , see ! ) because our data allow the modeling of future buying behavior based on actual purchases , our results tend to be significantly more predictive than demographic - based models . so far , the the response from utilities and "" new entrants "" i ' ve been talking to so far has been quite positive , and we have some tests of our data underway , but we ' re interested in talking to as many players in the market as possible as we develop specific products to meet utility needs . i can provide more background if desired to whoever might be interested , but i guess the key immediate question is whether it might be worthwhile to arrange a short meeting sometime on the 25 th of april with whoever at enron might have interest in hearing what we ' re up to , and ( most importantly ) listening to what your data needs might be as you enter new markets . thanks very much for any help . . . i look forward to catching up and hearing how things are going for you . regards , brad davids 303 - 410 - 5531 - - - - - original message - - - - - from : steven . r . meyers @ enron . com [ mailto : steven . r . meyers @ enron . com ] sent : monday , april 10 , 2000 12 : 13 pm to : brad . davids @ abacus - direct . com subject : re : possible meeting ? it ' d be great to meet on the 25 th in the afternoon . i have a flight in the evening . i ' m interested in hearing about life at abacus . i too have heard that enron is getting back into the residential market . what type of database do you have ? i might be able to find somebody for you to talk with here . - steve bradley davids on 04 / 10 / 2000 12 : 04 : 00 pm to : "" steve meyers ( e - mail ) "" cc : subject : possible meeting ? steve : sorry we ' ve been unable to hook up . . . i can probably get down there on the 25 th , if you ' re going to be in town that afternoon ? would love to catch up - - both on how things are going with ees and tell you about my new life . also , i ' m hearing rumors that enron is about to get back into the residential market in a big way - - you know anything about that ? anybody i should talk to there about my huge database of consumer buying behavior ? thanks - - looking forward to connecting . . . i ' ll be travelling most of this week , but you can leave a vm and let me know when i can call you , or try me on the cell at 303 - 886 - 3458 . best , brad davids bradley j . davids associate vice president , utilities abacus direct , a division of doubleclick , inc . 11101 west 120 th avenue broomfield , co 80021 usa e - mail brad . davids @ abacus - direct . com tel 303 . 410 . 5531 fax 303 . 410 . 5300 www . doubleclick . net www . abacus - direct . com ( see attached file : c . dtf )",0 +"Subject: off duty days good morning all : most of you do this , but just in case , please advise me of any off duty days , i . e . vacation , sick , personal , jury duty , etc . as soon as possible , either before or as soon as you take them . also , i am making new wallet info cards and if you have not sent me your home telephone number , or if you have a new one , please let me know as soon as possible . thanks and have a great day ! shirley",0 +"Subject: inflation model review - final version this morning a draft of rac ' s inflation model review was discussed with anjam . all points as presented in the draft were agreed upon . also , four new points were amended as suggested by anjam : the rpi short - term model could be improved by a combination of the information available from the gilts and rpi swaps market . add : "" this is an issue across all enron ' s econometric models . "" to section pllu and dzcv short - term , first point . to implement some of the suggestions requires additional statistical and programming resources . additionnal human resources with advanced econometric modelling skills are required given the current workload of the european research team . please find the final version attached . please note that the short term solution has been to freeze the curve . the medium to long term solution involves futher research towards a sounder and more efficient model . given the current workload of the european research group , it is necessary to hire a new member of staff with strong economics and econometrics background to address this issue properly . rac will communicate to the financial trading group and risk management the actions to take as the curve will be frozen . thanks , rodrigo",0 +"Subject: re : enron case study - - - - - original message - - - - - from : cindy . derecskey @ enron . com [ mailto : cindy . derecskey @ enron . com ] sent : wednesday , october 25 , 2000 11 : 23 am to : j _ martin @ baylor . edu cc : christie . patrick @ enron . com ; vince . j . kaminski @ enron . com subject : enron case study importance : high good morning mr . martin , i would like to introduce myself . i currently work with christie patrick and michael b rosen in the enron university affairs department . in recent discussions with christie , she has suggested that i liaise with you and our management in preparation for your and vince kaminski ' s case study . christie has forwarded recent emails sent by you suggesting a few convenient times that work with your schedule . i will work with our management and do my best to schedule one hour time slots for interviews that fit with your outline . initially , i will schedule interviews with : ken lay - chairman and ceo , jeff skilling - president and coo , and andy fastow - cfo . if you feel that you may need to speak with additional management , we will definitely try to work something out the same day , so you don ' t have to travel back here . i will forward your project outline to the aforementioned participants once the interviews are scheduled . do you anticipate drafting specific questions ? if so , i would greatly appreciate a copy when convenient . i greatly look forward to working with you and i hope that we can touch base very soon . regards , cindy derecskey enron university affairs ( 713 ) 853 - 5670",0 +"Subject: change - video to teleconferences - enron fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 02 / 16 / 2001 08 : 35 : 22 am to : clay degiacinto , deepa mallik , dennis feerick , heather thorne , jack rejtman , jason cummins , kim whitsel , nicholas levitt , omar bassel , ram vittal , steve lessar , thomas , tulika bhalla , vincent chen cc : fap , "" ' vkamins @ enron . com ' "" , "" ' patterm @ wharton . upenn . edu ' "" subject : change - video to teleconferences - enron 3 / 1 shdh 215 3 / 22 shdh 215 3 / 29 shdh 215 please note that the remaining videoconferences scheduled with enron have been changed to teleconferences due to the difficulties we have experienced . the host has agreed and we will , therefore , continue with teleconferences in the same locations / dates as noted above . any questions , please contact the fap office . thanks , donna",0 +"Subject: christmas - near good morning all . we apologize that we are not going to be able to have our holiday party before the first of the year . we wanted to use the scout house in west university like we did last year and it was not available . vince suggested that with the move and a lot of people taking vacation that we wait until after the first of the year . this way you can take advantage of "" after christmas sales "" for your gift ! just remember whose name you have and we will schedule an "" offsite "" after the first of the year . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 13 / 99 09 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 13 / 99 08 : 58 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix , amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect , ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect , patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : christmas - near hello everyone , the pulling of names are completed . shirley will inform you as to when we will make exchanges . thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 13 / 99 08 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 10 / 99 08 : 28 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix , amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect , ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect , patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : christmas - near goodmorning , things went well on yesterday with names being pulled . here is a list of people who have to pull a name . stinson gibner samer takriti ravi thuraisingham martin lin alexios kollaros shirley crenshaw let ' s celebrate at work with each other making the last christmas in 1999 - great ! reminder : if you feel you will be unable to attend the exchanging of the gifts , please do not let that stop you from participating . each persons name has been entered ; can you guess who has your name ? we have a gift for you . so if you can not attend for any reason please know that you are included and your gift will be here when you return . wishing all a merry christmas , and a good kick - off to happy holidays . thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 10 / 99 06 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 08 / 99 07 : 47 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix , amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect , ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect , patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : christmas drawing - near ho ! ho ! ho ! merry christmas , on thursday we will pull names . once again , this is so we may share in the christmas spirit and show our appreciation for one another . we will then join and exchange gifts on a later date . . . . . stay tuned . . . . . . . . . . . . . . . . . . if for some chance you will not be present on thursday , feel free to stop by my desk and pull your name today . eb 3130 a x 34710 join in the fun and remember , keep it simple thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 08 / 99 06 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 07 / 99 09 : 40 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , maureen raymond / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , mike a roberts / hou / ect @ ect , samer takriti / hou / azurix @ azurix , amitava dhar / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , osman sezgen / hou / ees @ ees , tanya tamarchenko / hou / ect @ ect , vincent tang / hou / ect @ ect , ravi thuraisingham / hou / ect @ ect , paulo issler / hou / ect @ ect , martin lin / hou / ect @ ect , ross prevatt / hou / ect @ ect , michael sergeev / hou / ect @ ect , patricia tlapek / hou / ect @ ect , roman zadorozhny / hou / ect @ ect , martina angelova / hou / ect @ ect , jason sokolov / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : christmas drawing - near hello everyone , we would like for christmas this year that the research group pull names , as a way of sharing in the spirit of christmas , and as appreciation for one another . we want to keep it simple so the gift should be less than twenty - dollars . please everyone participate , your name is already entered . i will return with more info . later . . . . . . . . . . . thanks kevin moore let ' s have a wonderful christmas at work .",0 +"Subject: my departure from enron dear all , i have decided to attend carnegie mellon ' s computational finance program for the 2001 - 2002 academic year . the program starts on may 14 th . unfortunately due to the quick arrival of the starting date , my last day at enron will have to be friday , april 13 th 2001 . i have really enjoyed my last 10 months here at enron which i ' ve spent with the research group . thank you . - hector",0 +"Subject: your approval is requested thank you",0 +"Subject: a basic idea of price - offer matching clauses vince - here is the basic idea i was alluding to : suppose a car dealer promised to "" match any advertised price . "" then his competitor would feel the need to respond in kind . and so on , until all dealers advertised they would "" match any advertised price . "" now , consider one of these dealer ' s decision to perhaps lower his prices . if he does so , everyone will immediately match his price , so his market share will remain unchanged , at whatever it was before , but his revenues ( and all other dealers as well ) would be lowered by the amount of his price reduction . so , the dealer rationally decides not to lower his prices to try to sell more cars . now , suppose a limited partnership , where the partners contract to "" control "" who they are in business with , by putting a "" right of first refusal "" clause into the partnership ' s papers , whereby any partner wishing to sell his interests must offer the remaining partners the right to match any offer the partner received from outside for his shares . now , suppose you are an outsider , considering doing your due diligence in the thought you might want to buy into the partnership . you know if your offer is a "" good "" one from your perspective , offering you the prospects of a fair rate of return , the existing partners will match it , and you will get nothing in the deal but you will have paid , from your own pocket , for your due diligence . conversely , if you offer too much for the shares , then the other partners will not match your offer and you will then realize you overpaid . in neither case can you credibly assume you know more about the business than do the current partners . so , you ( basically ) don ' t make an offer . so , a partner ' s shares are seriously devalued by his partners having the right to match any offers he receives for them . the "" right of first refusal "" clause precludes economically efficient rebalancing of portfolios by rendering the shares ( essentially ) illiquid . clayton",0 +"Subject: re : march real options conference > this is a draft of what i was thinking of presenting . i was not planning to go over any specific options or opas ( these are covered by confidentiality clauses and i have to be careful from a competitive standpoint ) but to give the audience a few of the "" real world "" applications and challenges . i welcome any thoughts or comments . gary > - - - - - - - - - - > from : peter tufano [ smtp : ptufano @ hbs . edu ] > sent : friday , february 18 , 2000 4 : 56 pm > to : vkamins @ ect . enron . com ; gljackson 2 @ tva . gov > subject : re : march real options conference > > dear vince and gary , > > we are all speaking at the march real options session in ny . my work in > real options in the energy field has come , to a large part , from my > casewriting in your two organizations , so i feel that we should probably > allocate more time toward your presentations and less to mine . while we > have a two hour block among the three of us , i think we can freely > re - arrange things to produce the best result . would you two like to > schedule a brief conference call to coordinate our talks ? i am free > virtually all of next wednesday 2 / 23 , perhaps we could talk at 10 am ( est ) > or 2 pm ( est ) ? i am happy to arrange the call , if you send me your phone > numbers . thanks . > > peter tufano > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - > prof . peter tufano > harvard business school > morgan hall 377 > soldiers field > boston , massachusetts 02163 > phone : ( 617 ) 495 - 6855 > fax : ( 617 ) 496 - 6592 > email : ptufano @ hbs . edu > http : / / www . people . hbs . edu / ptufano > - real options valuation in the new economy . ppt",0 +"Subject: re : full version i ' ll have a look ! i haven ' t much time , but can certainly get you a quick reaction , at least ! best , darrell > x - lotus - fromdomain : ect > from : "" vince j kaminski "" > to : duffie @ stanford . edu > date : thu , 10 aug 2000 14 : 04 : 47 - 0500 > subject : full version > mime - version : 1 . 0 > content - disposition : inline > x - uidl : 9 fef 7462 afa 5 d 4 ee 6 co 4 c 9 co 2 df 71 b 25 > x - keywords : > > > > darrell , > > grant just alerted me that i sent you only part of the text . > > here is the full chapter with an aged version of gran ' t part . > what i sent you represents an update of his contribution . > > sorry for that . > > vince > > ( see attached file : volo 720 . doc ) darrell duffie mail gsb stanford ca 94305 - 5015 usa phone 650 723 1976 fax 650 725 7979 email duffie @ stanford . edu web http : / / www . stanford . edu / ~ duffie / ",0 +"Subject: pro opticus good morning all : below is an email from kevin sweeney inquiring about a software demo that he thought might have been in our group . if anyone had this demo , please let vince know . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 06 / 2000 05 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin sweeney 10 / 23 / 2000 06 : 53 am to : vince j kaminski / hou / ect @ ect cc : kara maloney / na / enron @ enron , mario de la ossa / na / enron @ enron , matt a brown / hou / ect @ ect subject : pro opticus vince , i understand that you or someone in your group had a demo from the above group last friday . i was wondering if this was part of a push to bring more options ' analytics to the traders ' desks , and if so , if you could explain what that effort looks like ? one of the global markets traders , mario de la ossa also had a look at the software as he has used it in the past . thanks , kevin",0 +"Subject: spring 2001 energy finance conference participation louise , would you consider being a keynote speaker at this conference ( feb 22 evening ) ? the conference will be held in austin . we have a very good relationship with ut and we are helping them to organize this conference . i shall be glad to provide you more information about the event . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 02 / 2000 02 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ehud i . ronn "" on 11 / 02 / 2000 10 : 57 : 00 am to : vince . j . kaminski @ enron . com cc : subject : spring 2001 energy finance conference participation vince , as promised , enclosed please find a brief description of the proposed feb . 22 - 23 energy finance conference , suitable for dissemination to your colleagues : "" as director of the center for energy finance education and research ( cefer ) , my colleagues and i are planning a practitioner - industry conference in spring 2001 , feb . 22 - 23 , to discuss four topics : risk management , deregulation , real options , and international / globalization . other than the univ . of texas participants and selected academics from other institutions , we expect most participants at the conference to be energy practitioners from houston . the conference will begin with a dinner and address thur . evening , then continue all day fri . "" given the energy - finance focus of the conference , do you believe the networks topics is sufficiently energy - related ? best , ehud ehud i . ronn jack s . josey professor in energy studies department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : confirmation of your order yes , i am the one that placed it . gwyn told me she would be starting on march 19 th ? did you not know about it ? vince j kaminski 03 / 05 / 2001 11 : 35 am to : shirley crenshaw / hou / ect @ ect cc : subject : confirmation of your order shirley , do you know about it ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 05 / 2001 11 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron it purchasing 03 / 05 / 2001 11 : 09 am please respond to enron it purchasing sent by : ecthou - domwebl to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : confirmation of your order this is an automatic confirmation of the request you have placed using it central . request number : ecth - 4 ujn 5 l order for : mitra mujica 1 x ( option : 128 mb upgrade for deskpro en 6600 $ 63 ) 1 x ( standard desktop $ 905 ) enron it purchasing * please send all status inquiries regarding this request to : mailto : receiving & hardware @ enron . com",0 +"Subject: re : risk book translation dear professor kaminski , thanks for spending your very valuable time to take trouble to arrange our contact with the risk staffs . i will appreciate very much . masayuki fujita",0 +"Subject: fw : research allocations to egm vince : can you tell me where to get this info ? - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 25 / 2001 03 : 53 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : becky pham / enron @ enronxgate on 04 / 25 / 2001 10 : 58 am to : shirley crenshaw / hou / ect @ ect cc : diane fellers / enron @ enronxgate subject : fw : research allocations to egm back in november of last year , you have indicated that 40 % of the 17 . 5 % ( 40 % of 17 . 5 is 7 % ) that we are allocating to egm should be billed to gary hickson ' s group . gary is asking for further broken down of this 40 % to his world . can you check with vince to see what portion of the 7 % should be charged to equity trading , rate & currency trading , agricultural trading & origination and convertible trading ? and can i get this information back by the end of this week because we are going to start closing on friday . if you have any questions , call me . thanx . - - - - - original message - - - - - from : khoja , sayed sent : wednesday , april 25 , 2001 10 : 17 am to : pham , becky subject : research allocations to egm becky , i have attached your original emails below . can you provide further break out of the 40 % allocation to gary hickerson . gary is responsible for financial trading which includes : ? equity trading ? rate & currency trading ? agricultural trading & origination ? convertible trading thanks for your help . sayed to : sayed khoja / na / enron @ enron cc : subject : re : research allocation - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 02 / 2000 03 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - to : becky pham / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : research allocation becky , i gave the % % for egm to shirley . i assume she communicated this info to you already . i assume egm includes f / x - i / r ( gary hickerson ) , weather , insurance ( jere overdyke ) , oil trading and coal . for calme i don ' t have any info . let ' s split the cost evenly . vince to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : research allocation shirley , grm is now with egm group . egm wants to verify that the 17 . 5 % we are going to allocate to grm is for the insurance , jere overdyke group . egm seems to think that their weather , mark tawney group , is receiving support from research . also , can we break out the support for calme ? calme is going to split into 3 bus and i am trying to determine who i need to bill for research supports . if you have any questions , call me . thanx . to : sayed khoja / na / enron @ enron cc : subject : re : research allocation - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 02 / 2000 02 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - to : becky pham / hou / ect @ ect cc : subject : re : research allocation becky : vince said to allocate it as follows : gary hickerson 40 % jeff shankman weather 20 % insurance 30 % oil 5 % coal 5 % hope this helps ! shirley to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : research allocation shirley , grm is now with egm group . egm wants to verify that the 17 . 5 % we are going to allocate to grm is for the insurance , jere overdyke group . egm seems to think that their weather , mark tawney group , is receiving support from research . also , can we break out the support for calme ? calme is going to split into 3 bus and i am trying to determine who i need to bill for research supports . if you have any questions , call me . thanx .",0 +"Subject: next eprm article hi vince the next article is due by the end of the week - apologies for the lateness . could you have a look at the attached draft and let us have your comments in the next couple of days . thanks les . - eprm _ 08 _ analytical _ pricing . zip",0 +"Subject: re : a resume for john lavorato thanks , vince . i will get moving on it right away . molly vince j kaminski 02 / 21 / 2001 05 : 55 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : a resume for john lavorato molly , please , make arrangements for the interview with this candidate for a trading position . interviews with john lavorato , jeff shankman , gary hickerson , stinson gibner . i talked to him in new york and he is considering other opportunities , so we have to act fast . i think john will like him more than punit . thanks",0 +"Subject: karthik rajan i spoke with karthik this morning about our offer , and answered some additional questions that he had . he has accepted our offer , but with one additional request . he would now like for us to ship his car . i asked him why he couldn ' t drive it down here , and he said that it was too old . i am going to check with relocation for an approximate cost and will get back to you . . . . thanks , molly x 34804",0 +"Subject: re : fas 133 offsite zimin lu will also be attending from research . he will be responsible for a lot of the options modeling that may be required as part of the fas 133 process . vasant from : paige b grumulaitis 02 / 08 / 2000 10 : 17 am to : vasant shanbhogue / hou / ect @ ect cc : subject : fas 133 offsite this is the offsite i was referring to . this is for enron contracts that apply not customer ' s issues or product design . please let me know who we can get to help us along the way . - - - - - - - - - - - - - - - - - - - - - - forwarded by paige b grumulaitis / hou / ect on 02 / 08 / 2000 10 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : donna jones 02 / 07 / 2000 05 : 58 pm to : paige b grumulaitis / hou / ect @ ect , ron baker / corp / enron @ enron , li n chan / hou / ect @ ect , georgeanne hodges / hou / ect @ ect , mary lynne ruffer / hou / ect @ ect , jeff nogid / hou / ect @ ect , roger g leworthy / enron _ development @ enron _ development , james j brown / aa / corp / enron @ enron , kimberly scardino / aa / corp / enron @ enron , patty grutzmacher / aa / corp / enron @ enron , donald . l . avant @ us . arthur . andersen . com , nina nguyen / hou / ees @ ees , sally beck / hou / ect @ ect cc : dawn rodriguez / aa / corp / enron @ enron , shirley tijerina / corp / enron @ enron , renee ingram / hou / ect @ ect , tracey bouillion / aa / corp / enron @ enron , patti thompson / hou / ect @ ect subject : fas 133 offsite enron implementation offsite doubletree hotel - tba wednesday , february 16 , 2000 8 : 30 am - 5 : 00 pm you are invited to an enron implementation offsite to discuss fas 133 . the session will focus on the development and enhancement of the post - implementation fas 133 functional processes . we will then further develop the implementation plan for the detailed development of these processes and systems requirements . your participation in this stage is vital , as the final process will impact all of us . questions regarding content can be directed to paige grumulaitis at x 36271 or ron baker at x 35562 . please rsvp to donna jones at x 33175 by friday , february 11 th so she may have an accurate count for seating and refreshments . we look forward to working with you at the offsite . ron baker & paige grumulaitis",0 +"Subject: re : london visit fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 28 / 2000 10 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 09 / 18 / 2000 04 : 38 pm to : paul . e . day @ uk . arthurandersen . com @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : london visit paul , i shall be in london in the beginning of october . i shall notify you about the timing of my trip later this week . vince paul . e . day @ uk . arthurandersen . com on 09 / 18 / 2000 03 : 29 : 50 pm to : vince . j . kaminski @ enron . com cc : subject : re : london visit i understand this has been cancelled - no problem - life is kind of hectic here anyway ! ! why don ' t we try to rearrange next time you ' re over ? kind regards paul day to : paul e . day cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com date : 25 / 08 / 2000 19 : 10 from : vince . j . kaminski @ enron . com subject : re : london visit paul , thanks for your message . i am in process of finalizing my plans for the trip to london in the end of september . i delayed responding to you message till i had more specific information . unless there a major change in my schedule , i shall arrive in london on monday morning ( september 18 ) and leave on thursday in the evening . please , let me know what would be convenient time to meet . you can send me an e - mail message and my secretary will contact to confirm the date and place of the meeting . my assistant ' s name is shirley crenshaw and her phone number is 713 853 5290 . i look forward to meeting you , tom and julian . vince kaminski paul . e . day @ uk . arthurandersen . com on 08 / 25 / 2000 11 : 53 : 02 am to : vince j kaminski / hou / ect @ ect cc : tom . o . lewthwaite @ uk . arthurandersen . com , julian . leake @ uk . arthurandersen . com subject : london visit i understand that you will be in london around 20 september . tom lewthwaite has asked me to arrange a meeting between you , tom and julian leake . i understand that you have met tom and julian before . i would also like to attend - i am a manager in our uk financial services practice with responsibilty for enron from a uk financial services perspective . we would like to discuss any risk management concerns that you may have and any internal initiatives with which we could assist . if you are happy to meet on this basis , i would be grateful if you could let me know how you to proceed ( whether i should arrange timings with you , your secretary , someone in london etc ) . you can contact me on + 44 20 7783 7446 ( at enron ' s london offices ) or on this e - mail address . kind regards paul day * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: time sheets ! ! ! hello everyone ! not very many of you have filled out your timesheet in the excel spreadsheet if you cannot access the "" o "" drive . you will need to fill out one by hand until you can get access . whichever way - i need them today ! ! thanks ! shirley",0 +"Subject: re : congratulations vince , thanks for your note . and congratulations backatcha ! i was thrilled to see your name on the list as well . kristina",0 +"Subject: boss ' s day hey everyone , i know you may not be aware that boss ' s day oct . 16 , 2000 we will celebrate as a group in the staff meeting on oct . 19 th , with the big boss vince kaminski and all the others , however , if you would like to do something special for our boss , please inform me whereby i can make arrangements . thanks kevin moore",0 +"Subject: paper hey vince , i understand that alex butler has sent you a copy of the schwartz paper . i have a copy of my paper attached to this e - mail . it was good to see you again and i hope you enjoyed your visit to lsu . sincerely , tom arnold - gopop . pdf",0 +"Subject: interview on friday , may 5 th good morning norberto : enron corp . research would like you to come in for an informal interview friday , may 5 , beginning at 1 : 30 pm . following is a tentative schedule : vasant shanbhogue 1 : 30 pm vince kaminski 1 : 45 pm clayton vernon 2 : 00 pm stinson gibner 2 : 15 pm tanya tamarchenko 2 : 30 pm grant masson 2 : 45 pm please let me know if these times work for you . thank you ! shirley crenshaw 713 - 853 - 5290",0 +"Subject: dhabol jeff , we shall forward to you shortly a copy of the message from sandeep with the numbers you have requested . what follows below are the extracts from two recent articles on the power situation in india published by the financial times . the first article describes recent power outage in northern india affecting millions of people . one possible line of defense is pointing out to the value of output lost due to power shortages . it is obvious that the value of lost production exceeds the cost of power produced by the dhabol plant ( expensive as it may be ) . the power cut affected 230 million people . the second article is enron specific . vince asia - pacific : power failure hits north india financial times ; jan 3 , 2001 by angus donald tens of millions of people were left without electricity in northern india yesterday after a power grid breakdown . electricity was gradually switched on in some areas and most parts of the capital new delhi , with 60 to 70 per cent of supply expected to be restored by the end of the day , according to power grid officials . the associated chambers of commerce and industry ( assocham ) , a leading business organisation , expressed "" deep concern "" and called for a mechanism to prevent future disruption that could "" cripple the economy "" . the power failure across eight indian states , including new delhi , disrupted train services , water supplies and the telephone network and forced hospitals to switch to emergency generators . the fault occurred on the northern grid , which provides electricity for 226 m people , and affected the states of delhi , haryana , punjab , uttar pradesh , himachal pradesh , madhya pradesh , rajasthan and jammu and kashmir . a breakdown at a sub - station in kanpur in uttar pradesh , india ' s most populous state , caused an overload of power on other lines , which then failed as well . trains stopped running for most of the day and signals systems were damaged . new delhi international airport was also slightly affected before its own power supply could be engaged . "" we will probe into the reasons for the failure . it is most likely to be a technical failure , but we will investigate why it happened , "" suresh prabhu , the power minister , was quoted as saying by press trust of india . india suffers regularly from power problems because of lack of funding to upgrade infrastructure . theft of supplies is also a big problem . thirty per cent of the country ' s electricity is stolen , according to analysts . in new delhi as much as 50 per cent is stolen . two years ago , a power failure blacked out uttar pradesh and delhi for hours . assocham issued a statement , saying that increasing industrial demand would exacerbate the problems already faced by india ' s inefficient power sector . "" the slow progress , particularly in strengthening the transmission and distribution system , and ever increasing theft will contribute to worsening the power supply situation further . "" copyright : the financial times limited , copyright the financial times limited 2000 . "" ft "" and "" financial times "" are trademarks of the financial times . privacy policy | terms jan 3 , 2001 by khozem merchant enron , the us energy producer and a constant target of criticism in india , is hitting back with a campaign to reverse its image as a profiteering multinational . its "" myth and reality "" offensive in local newspapers follows the west indian state of maharashtra ' s decision to review the tariff it pays the texas - based company , whose dollars 2 . 2 bn electricity generating plant at dabhol is india ' s biggest single foreign investment . maharashtra ' s tariff has more than doubled since 1993 and is three times greater than that charged by other independent power producers ( ipps ) . the tariff has risen because of the depreciation of the rupee against the dollar and the high but now falling price of naphtha fuel . the state also pays a fixed capacity charge of rs 970 m ( dollars 21 m ) a month , reflecting the huge project cost and , controversially , irrespective of consumption . a showdown looks inevitable , reminiscent of a clash six years ago that damaged india ' s appeal to foreign investors . a former official of the world bank , which has criticised the deal , says enron is emerging "" as the east india company of the 21 st century "" - a reference to the british trader that colonised key areas of the indian economy in the 19 th century . the stand - off is the latest blot on india ' s power sector . the uk ' s powergen and cogentrix of the us have quit india recently , frustrated by long approval procedures , inadequate payments mechanisms or because of higher returns elsewhere . "" india has lost time and opportunity and has driven returns down by six percentage points , "" says gerry grove - white , former india general manager of powergen , which has sold its 655 mw plant in gujarat to china light & power of hong kong . india ' s national plan for the five years to 2002 says generating capacity must rise by 40 , 000 mw to about 120 , 000 mw . but since 1992 , ipps have added only 3 , 000 mw and 2 , 500 mw remains under construction . this is insufficient to support official projections of 6 to 8 per cent economic growth . enron was a bellwether of india ' s liberalisation , winning fast - track project approval in the early 1990 s . phase 1 , a 740 mw plant fuelled by expensive naphtha came on stream in may 1999 , and phase 2 , a dollars 1 . 87 bn plant of 1 , 624 mw capacity that will run on cheaper liquefied natural gas ( lng ) , will be completed this year . only two of seven other fast - track proposals have achieved financial closure . from the outset enron encountered attacks , culminating in maharashtra ' s then nationalist government cancelling the project before renegotiating terms no less onerous . vilasrao deshmukh , chief minister of the successor government , says the power purchase agreement is unaffordable . enron , whose attackers also include cultural chauvinists , wants to maintain good political relations in a hostile but lucrative environment . enron views india as a testing ground for its evolution from a traditional manager of power plants to a broad - based trader of commodities , such as energy , gas and bandwidth . to support these ambitions enron hopes to trade energy between power surplus and deficit states , once legislation is passed this year . it is building an lng terminal and pipelines to trade imported natural gas . and it is laying a 15 , 000 km fibre - optic network to trade bandwidth space in a country desperately short of this new economy commodity . in any event , enron believes it has a watertight contract . it is supported by many that believe any subversion of the contract would confirm investor perception of maharashtra , india ' s financial and industrial hub , as an unreliable destination for investment . mr deshmukh - who has avoided the language of his predecessor , which threatened to "" dump dabhol into the arabian sea "" - is under pressure from radical members of his wobbly coalition . but his options are limited . scrapping the project would be ruinous for an economically troubled state that would have to compensate shareholders . maharashtra state electricity board , the local utility and enron ' s main client , is obliged to dispatch or "" off - take "" 90 per cent of dabhol ' s output . yet mseb has never honoured these guarantees . its off - take has averaged 60 per cent since the plant opened and , in effect , mseb has been paying a lot more while consuming a lot less power . one reason off - take is low is because the state ' s tough new regulator has told mseb to buy from cheaper sources . enron says the tariff would be rs 4 . 02 / kwh if mseb ' s off - take averaged 90 per cent . but with off - take a third lower , the average tariff is rs 4 . 94 per unit , and often higher . in october , the tariff was rs 6 . 91 per unit , when off - take was about 49 per cent . enron says tariffs should come down when phase 2 , run on cheaper lng , starts . these cost pressures have forced mseb to take up only half of a 30 per cent equity option in phase 2 . enron has acquired the balance and mandated bankers to find a buyer . enron ' s difficulties have undermined the appeal of ipps , which have failed to deliver the flood of investments . potential ipps feared they would never be paid by state generating boards that have become a byword for corrupt management of power . reform of state electricity boards , whose uneconomic pricing means industrial users subsidise poor farmers , as well as transmission and distribution ( t & d ) services to check huge theft and technical losses , is overdue . "" given the limited resources , money would be better spent on t & d rather than on new plant , "" says oliver blackaby , managing director of n m rothschild in india , which is advising karnataka on the privatisation of its distribution network . for the moment , attention is fixed on enron ' s ability to satisfy the competing interests of investors and clients . as sanjay bhatnagar , chief executive officer of enron india , said in a recent trade magazine , one of the key lessons learned from phase 2 is "" having flexibility to deal with externalities "" . copyright : the financial times limited , copyright the financial times limited 2000 . "" ft "" and "" financial times "" are trademarks of the financial times . privacy policy | terms & conditions .",0 +"Subject: rodeo vince , it was a pleasure to meet you last week at our rodeo night . i am glad you could join us . i am going to fax you the invitation to the houston symphony partners party that we discussed . i hope you can attend . keep in touch and let ' s get together for lunch and / or seeing "" american beauty . "" jana phillips 713 - 658 - 9296",0 +"Subject: congratulations ! you did again ! i just read about your most recent accomplishment . congratulations on your promotion ! go vince . . . . go vince . . . go vince . . ! sending warmest regards , trang",0 +"Subject: re : asian option for pavel our convention is whoever finalizes the model should write the documentation . it does not make sense to write one when changes are anticipated . you have been working on this almost a year , it never strikes you that we need a documentation ? i created exotica . xll , does that also give you an excuse not working on exotica documentation ? zimin paulo issler 05 / 02 / 2001 11 : 52 am to : zimin lu / hou / ect @ ect cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel i am surprised that we do not have the documentation ready . i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality . paulo issler zimin lu 05 / 02 / 2001 11 : 29 am to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect cc : pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel tai woo , here are the c - codes for the crudeapo . ' sig ' is the spot volatility meaning the price volatility within the delivery period . you should consult with pavel for the definition of this "" extra "" parameters . we would like to see the position monitor once you get it running . we might have some additional suggestions . paulo , why don ' t we have a documentation on crudeapo you worked on ? i can not find it in exotica help file . please supply that to tai , thanks . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am to : paulo issler / hou / ect @ ect cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect subject : asian option for pavel this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio . he asked me to talk to you in order to access to the code so that i can see the difference made to the model . as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is . thanks , ",0 +"Subject: naphtha hedge for 2001 folks , i am forwarding this in order for the team to focus on the naphtha issue . please note that : as phase ii comes on line , blocks b and c will first have to run on naphtha for a period of 3 - 6 months this will hit us some time in 2001 , hence is a more urgent issue than lng , which is still a year away if there are delays in the commissioning of the regas terminal , the period on naphtha could further prolong the naphtha market is more volatile than the crude market , and is not as deep , hence we need to take small positions early on to test the market dpc board has already approved a risk management policy that allows for hedging . we may need to look into options that are costless ( selling put and buying call ) to begin with , and test while only block a is in place . close coordination will be required on this with the global markets group , and i propose someone like anshuman should actually be seconded onto the group a whole plan on tools to manage the fuel risk need to be worked in close coordination with the team on the ground these are just some of my thoughts . with 50 % of the tariff being fuel price dependent , this is an area that requires close attention . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 03 / 2001 10 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tushar dhruv @ enron 01 / 02 / 2001 09 : 25 pm to : neil mcgregor / sin / ect @ ect , sandeep kohli / enron _ development @ enron _ development , mukesh tyagi / enron _ development @ enron _ development , pavan . dave @ enron . com , anshuman cc : marc de la roche / hou / ect @ ect , doug leach / hou / ect @ ect subject : naphtha hedge for 2001 current level of naphtha prices and the crude futures curve being backwardated provide an opportune time for dpc to enter into a hedge for all or a portion of its naphtha requirements for the year 2001 . we ( efi ) would like to explore this possibility before this situation passes . please advise . best regards , - - tushar",0 +"Subject: re : hello molly , kim watson would like us to bring jacob for another interview . we can do it later this week . vince vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 09 : 17 am to : vince j kaminski / hou / ect @ ect cc : subject : re : hello hi vince , if you are still interested in bringing back this gentleman back for another interview , i would very much like to meet with him . sean talked with him when you brought him in a few weeks ago and he thought it would be a good idea for me to meet with him so we can compare thoughts . thanks , kim . - - - - - original message - - - - - from : kaminski , vince sent : monday , april 16 , 2001 1 : 21 pm to : watson , kimberly cc : krishnarao , pinnamaneni ; kaminski , vince subject : re : hello kim , this is a letter from one of the job applicants who works for pros . it seems that the system they develop for williams is more a scheduling system . would you like to ask him to come back for another interview , to get more information out of him ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jacob y . kang "" on 04 / 11 / 2001 11 : 18 : 44 pm to : vince . j . kaminski @ enron . com cc : subject : re : hello dear vince : it was so nice meeting and talking with you too . i did not take any pen back , i lost my pen too somewhere in enron . as i mentioned to you , after i got my ph . d in 1999 , i have been working two years as lead scientist and science manager in energy division at pros revenue management inc . in houston . i developed and implemented the mathematical models for trading optimization system and firm transportation optimization system . the trading optimization system becomes the most popular product in the industry this year . duke energy just signed the contract to buy this product yesterday . conoco and williams also signed the contracts for it . according to pros sales department , the potential marketer to buy this product exceeds 15 companies in one or two years . enron is the ideal place for me to continue my research and system developing efforts to combine revenue management with risk management . i am confident that i can make significant contributions to enron in this area . i would like to thank you again for giving me this opportunity to come to enron for this interview . i am looking forward to having the opportunity to work in enron . sincerely yours jacob - - - vince . j . kaminski @ enron . com wrote : > jacob , > > it was nice meeting you . did take by any chance > my pen ? if not , i apologize . > > vince > do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com / ",0 +"Subject: real option conference vince , i was brought to my attention that an interesting real option conference is taking place in march 27 - 28 . i would like to attend this conference if possible . thanks . alex",0 +"Subject: re : eol phase 2 deal all , i have written the option pricing formula for european ( euro ) , american ( amer ) and asian ( agc ) options . i have also cited the references for each option . the function names in ( ) are the option models in the enron exotica options library . you do not have to have outside programmer to duplicate our work , since we have constructed and tested these models . if you have any questions , please let me know . zimin vince j kaminski 06 / 30 / 2000 02 : 31 pm to : michael danielson / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : eol phase 2 michael , please , contact zimin lu . vince kaminski michael danielson 06 / 30 / 2000 01 : 10 pm to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : angela connelly / lon / ect @ ect , savita puthigai / na / enron @ enron subject : eol phase 2 thanks for your help on content for eol phase 2 . an additional piece of content that we are trying to include in our scope is an options calculator . this would be an interactive tool to teach less sophisticated counterparties about options . we would like to collaborate with someone in research to refine our approach ( and make sure we ' re using the right formulas ) . who should we contact in research for this ? attached is a mock - up of what we have in mind . . . - calculator prototype . ppt",0 +"Subject: check out here is the rfc that was written in 1994 about the internet of 2020 i mentioned . i hope you find it as enlightening as i did , and enjoy it as well . click here : http : / / info . internet . isi . edu / in - notes / rfc / files / rfcl 607 . txt mak",0 +"Subject: re : amitava is diverted where does this stand ? we really need amitavas full time focus . benjamin parsons 27 / 10 / 2000 07 : 50 to : mike mumford / lon / ect @ ect cc : steven leppard / lon / ect @ ect , bryan seyfried / lon / ect @ ect , nigel price / lon / ect @ ect subject : re : amitava is diverted presumably if the eastern credit reserve issues take lots of his time away from enroncredit , we could extend his stay for another week ? especially as it ' s unlikely we could get vasant over in the foreseeable future . ben mike mumford 26 / 10 / 2000 18 : 20 to : bryan seyfried / lon / ect @ ect cc : qlist subject : amitava is diverted bryan , just fyi - amitava will be diverted for an unspecified portion of his stay here next week . the did the initial coding for software / pricing systems used to value the eastern deal . there are over - riding concerns there i or steve l . can fill you in on if you like . problem could be monday morning or all week . we could press for vasant to re - prioritize his time . any thoughts ? i haven ' t checked with ben about impacts yet . . . ben ? mike",0 +"Subject: re : congratulations thanks vince i was in midland yesterday so i just saw the announcement . congrats yourself ! ! vince j kaminski 01 / 11 / 2000 10 : 02 am to : bradford larson / hou / ect @ ect cc : subject : congratulations brad , congratulations . well deserved . vince",0 +"Subject: organizational changes as enron ' s broadband services business grows , we will continue to position the company to take advantage of the significant opportunities in this market and meet the needs of our global customers . with that in mind , we ' ve made a number of changes within the office of the chairman of enron broadband services aimed at providing a better focus on the key objectives of the organization . joe hirko and ken rice , previously co - ceos of enron broadband services , will continue to jointly manage the strategic direction of the company . joe will continue as ceo and will be responsible for the primary executive management of ebs as well as network build - out , bos development , cross - market capabilities and staff functions . ken will assume the role of chief commercial officer and will be responsible for developing the commercial functions of the organization . in addition , kevin hannon has been named chief operating officer and will be responsible for the day - to - day operations of ebs . kevin was most recently ceo of global risk management and , prior to that position , he was president and coo of enron north america , where he has been instrumental in developing enron ' s trading and risk management business in gas , electricity and other emerging markets . greg whalley , president and coo of ena , will again assume his responsibilities for global risk management . please join us in congratulating joe , ken , kevin and greg in their new roles .",0 +"Subject: re : releasing different versions of vatrfacs code winston and jin , for last half year the following developments were implemented by jin for vatrfacs code ( the calibration code for var ) : 1 . weighting the log - returns with exponential decay factor while calculating correlations ; 2 . calculating factors and correlations for uk curves ; 3 . joint estimation of factor loading for selected groups of commodities ; 4 . alternative method for collecting historical data for correlations calculation ( based on fixed contract instead of collecting prompt , prompt + 1 , etc . prices ) in order to release these developments research has to have each version under clearcase . then we will : 1 . run vatrfacs code in stage environment ( stage has been refreshed recently ) . 2 . run var code in stage and validate the results . it is time to start releasing these 4 versions . projects 3 and 4 require some experimental runs in stage . a few traders ( in gas , power and liquids markets ) are expecting the results . meanwhile the following developments have been suggested by reseach , approved by risk control , submitted to it as spreadsheet prototypes and waiting in line : 1 . volatility blending for intramonth power positions ; 2 . forward volatility smoothing and extracting forward forward volatilities ; hope we can follow our procedures to make all these developments go smoothly and efficiently . tanya .",0 +"Subject: re : caida ' metrics ' wg meeting , 2 mar 00 ( fwd ) hi amy , jim irvine ( ebs head of network planning ) and i ( team lead , ebs research ) will attend the meeting . we will have our assistances ( christine blair & kristy carnes , respectively ) arrange the trip . we will plan to come in the night before and return on march 2 , 00 . also , either vince kaminski ( md and head of enron research ) or stinson gibner ( vp , enron research ) may also attend . they will let me know shortly if they plan to attend . regards , ravi . p . s . our company name has been changed to enron broadband services kristy , christine please make the appropriate travel arrangements . the place , time , etc . are listed . amy @ sdsc . edu 02 / 24 / 00 07 : 07 pm to : ravi thuraisingham / enron communications @ enron communications cc : subject : caida ' metrics ' wg meeting , 2 mar 00 ( fwd ) hi ravi , i wanted to follow up directly with you and see if you or anyone at enron had any interest in participating in the proposed caida "" metrics "" working group meeting ? please let me know . amy e . blanchard caida % % % % % % % % % % % % % e - mail : amy @ caida . org phone : ( 858 ) 534 - 8338 fax : ( 858 ) 534 - 5117 b . wg charters , meeting on 2 mar 00 i believe that we should instead run a single caida working group on ' network metrics , ' rather than the two proposed earlier . my draft of its charter is appended below . it focuses on producing educational material about network measurement , and on developing new metrics - these were the two areas of greatest interest amongst the caida members . the wg co - chairs are sue moon ( sprintlabs ) and brett watson ( mfn / abovenet ) you are invited to attend the first wg meeting . the agenda is as follows . . agenda for caida wg meeting on : thursday 2 mar 00 - - - - - - - - - - - - - - - - - 10 am - 4 pm , abovenet , downtown sjc ( see below for details ) - - - - - - - - - - - - - - - - - - - - - - - - 1 . review wg charter - is it reasonable as set out in the draft ? - what should be removed or added ? 2 . work through revised charter in detail - identify the work required for each part - determine who ' s willing to work on it - attempt to determine delivery times 3 . discussion of new metrics - first attempt at making a list of metrics to be considered 4 . anything else ? location : abovenet is located in the knight - ridder building , attached to the fairmont hotel complex . the address is 50 w . san fernando st . san jose , ca 95113 rsvp : to help us with organising the meeting , please send email to nevil @ caida . org telling us how many will attend from your organisation . cheers , nevil nevil brownlee visiting researcher phone : ( 619 ) 822 0893 caida , san diego caida network metrics working group : draft charter , tue 23 feb 00 goals : 1 education + faq on what does ' measuring the internet actually mean ? ' - why measure anyway ? - what can be measured ? how ? where ? by whom ? - active vs passive , end - to - end vs provider network only , application vs transport layer - rating schemes : provider ' net performance ' pages , internet ' weather map ' s , keynote , etc . publish as caida web pages , or maybe as an info rfc + survey paper on metrics and internet measurement - current measurement efforts ( surveyor , ripe test traffic , amp , iperf , at & t , keynote , skitter , . . . ) - current tools publish as caida web pages 2 service metrics + define new metrics - taxonomy of current metrics ( ippm , rtfm , itu , . . ) - summary of metrics used for current services - gather information / ideas about new / emerging services , especially diffserv - based ones - make list of new metrics , either to improve measurement of existing services or to support new ones [ list of ' metrics ' questions ( appendix a ) goes here ] + organise experimental implementation / testing of tools for new metrics + make recommendations on implementation - define core set of ' really useful ' metrics - recommend that caida implement these as a ' service measurement toolkit ' + publish new metric definitions through ippm or rtfm + produce document "" measurement requirements for hardware / software vendors . "" publish on caida web pages appendix a : questions from the earlier draft caida wg charters a . what types of network - and transport - layer metrics are being used by isps in engineering and operating their networks ? by customers for verifying service guarantees ? b . what new services are being ( or are likely to be ) offered , e . g . diffserv ? is there a need for higher - layer metrics to better monitor and manage these services ? c . will these new differentiated transport - and application - layer services need new metrics ? d . how can the service metrics be measured in a multi - isp environment ? e . how can customers verify these measurements ? f . what requirements would service measurement introduce for equipment vendors ? g . how relevant are specific techniques ( e . g . which flow ) and points of measurement to specific users ( isp , customer , etc . ) requirements ? h . how do these metrics relate to network behavior as perceived by users ? how do they correlate with performance ? appendix b : background on the ietf working groups * rtfm wg : realtime traffic flow measurement rtfm is concerned with passive measurements of two - way traffic flows , specified in terms of their end - point attributes . its primary goal was to produce an improved traffic flow measurement model considering at least the following needs : a . wider range of measurable quantities , e . g . those relating to ipv 6 , and to class of service b . simpler ways to specify flows of interest c . better ways to control access to measured flow data d . strong focus on data reduction capabilities e . efficient hardware implementation * ippm wg : ip performance measurement the ippm wg charter is to develop a set of standard metrics that can be applied to the quality , performance , and reliability of internet data delivery services . these metrics will be designed such that they can be performed by network operators , end users , or independent testing groups . it is important that the metrics not represent a value judgement ( i . e . define "" good "" and "" bad "" ) , but rather provide unbiased quantitative measures of performance . rfcs framework for ip performance metrics ( rfc 2330 ) metrics : connectivity ( rfc 2678 ) , one - way delay ( rfc 2679 ) , one - way packet loss ( rfc 2680 ) round - trip delay ( rfc 2681 ) i - ds bulk transfer capacity ( 2 x ) instantaneous packet delay variation one - way loss patterns * other wgs the rmonmib wg is thinking about ' application performance measurement . ' this is clearly a hard problem ( e . g . does this just mean response - time measurement , can it be done by passive means , how should the measurements be presented , etc . ) . in short - rtfm provides a good distributed measuring system for traffic volumes - ippm has concentrated on transport - layer behaviour of the current , best - effort internet . - rmonmib is beginning to consider application - layer measurement ",0 +"Subject: re : my resume we ' ll get this offer out today , vince . molly - - - - - original message - - - - - from : kaminski , vince sent : friday , april 13 , 2001 10 : 03 am to : molly magee / hou / ect @ enron cc : kaminski , vince ; crenshaw , shirley ; huang , alex subject : my resume molly , we would like to bring this student as a summer intern ( the last one , we are running out of space ) . i shall send you another message regarding his proposed dates . thanks . i hope you have a very happy easter . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zhendong xia on 04 / 12 / 2001 03 : 58 : 25 pm to : vince . j . kaminski @ enron . com cc : subject : my resume hi , dr . kaminski : glad to get your reply . here is my resueme . if you wanna know more about me , please feel free to contact me . thanks . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318 - cv . doc >",0 +"Subject: program attached ; march ny ro conference / participation confirmation the current version of the conference program is attached please confirm your participation as speaker ( and confirm your presentation title as listed on the attached conference program ) by next tuesday . the program is about to be sent to the printers next week please cc your reply also to gordon . sick @ rogroup . com lenos - nymarch 2000 conferencetimes . doc lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: re : ming sit dennis : i talked to ming for only short time and am concerned about the cons scott mentioned . i would like to know what your assessment is like . also , i would like vince , ronnie & myself to talk to ming over the phone . can we call him directly and talk to him ? please let me know how strongly you feel about having him as a support person . thanks , krishna . x 35485 to : pinnamaneni krishnarao / hou / ect @ ect cc : subject : re : ming sit krisna : are you still interested in hiring ming sit , through the research group . if so , please proceed and assign him to support ees . please let me know if i need to provide any information . thanks dennis - - - - - - - - - - - - - - - - - - - - - - forwarded by dennis benevides / hou / ees on 05 / 22 / 2000 09 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - - james w lewis 05 / 21 / 2000 11 : 44 am to : dennis benevides / hou / ees @ ees cc : scott stoness / hou / ees @ ees subject : re : ming sit i like db ' s suggestion . let ' s do it . enron energy services from : dennis benevides 05 / 19 / 2000 03 : 31 pm phone no : 713 853 - 9609 to : scott stoness / hou / ees @ ees cc : james w lewis / hou / ees @ ees subject : re : ming sit got a little scared at your first sentence i read "" he is no replacement for jay but he could be for dennis b . . "" ? ? . anyway : i think he would be a good fit withing the group . krisna has offered to hire him in the research group , he has good programing background and is excited about working for enron instead of a utility such as pacificcorp . he expressed interest in applying his skill to make $ $ $ $ . i suggest bringing him in in research as a first alternative . i see three potential applications where we can use his skills to evaluate best longer term fit : continuing ronnie ' s model building role , but with a focus within neil ' s group to tie rm systems together bridge the lack of phd econometrics expertise we have as are result of the departure of anoush . risk management systems infrastructure development . scott stoness 05 / 19 / 2000 02 : 02 pm to : james w lewis / hou / ees @ ees cc : dennis benevides / hou / ees @ ees subject : ming sit he is no replacement for jay but he could be a dennis b employee . pros : engineer so would be good at math his boss hired him a 2 nd time ( 1 at txu and again at pacificor again ) so he must be reliable phd in economics and engineering ( good ) from stanford ( ugh : ) : ) : ) ) cons : does not understand tariffs . i asked him and he said he is not experienced . i probed too and he does not understand regulatory that well . does not understand ancillary services ( which is surprising to me since he started out as an plant operation side of hk power ) has limited people management skills ( he described 1 analyst he works with that is not capable that he has to jump into the excel spreadsheet and fix it for him and he cannot give him feedback because it is a utility mentality ) he is not a good communicator ( i asked him to describe what he did in hk power and it took him forever to explain because he expected me to know that plant operations meant planning the start up of oil plants ) . overall : i suspect that he is a very solid guy when it comes to analysis but not particularly creative or good at communication and leadership . he would be a great support person . i would hire for analysis but not as a potential leader . go",0 +"Subject: e - commerce & continental europe hi sven , thanks a lot for your note - i think it would be great to see what we can do to help you & joe ' s business units . plenty of our knowledge is no longer proprietary in that quite a lot of this information is now in the public domain - we can sit down and discuss this on thursday afternoon if that works for you . regards , anjam x 35383 sven becker 14 / 06 / 2000 19 : 10 to : anjam ahmad / lon / ect @ ect cc : clemens mueller / lon / ect @ ect subject : re : research group intranet site anjam , congratulations on your initiative . i appreciate that you share this information throughout enron . as you may know , my group is working with joe ' s business units to create so - called market hubs . i see great potential in sharing some of the information that you have acucmulated and that is not proprietary to enron . i would appreciate if we could sit down tomorrow and talk about the possibility to leverage on the existing know - how . regards sven please respond to anjam ahmad / lon / ect to : ect europe cc : subject : research group intranet site research group intranet site following the recent lunch presentations , there has been considerable interest from enron europe staff in improving their quantitative skills , helping to maintain our competitive advantage over competitors . we have recently created the research group ' s intranet site which you can find on the enron europe home page under london research group . the site contains an introduction to the group and also information on : derivatives pricing risk management weather derivatives extensive links weather derivatives credit risk extensive links database if you have any questions or issues on quantitative analysis ( including hedging and risk management of derivatives ) please don ' t hesitate to get in touch . regards , anjam ahmad research group first floor enron house x 35383",0 +"Subject: maths course dear vince , ? further to our telephone conversation , that you very much for agreeing to participate in the financial mathematics training course . as discussed i would be delighted if you could present the following sessions : ? practical techniques to price exotic energy options ? evaluating methodologies for pricing exotics ? ? ? assessing the pros and cons of a partial differential equation ? ? ? applying multi - factor models to price exotic energy derivatives ? ? ? building trees for pricing and hedging exotics pricing ? ? ? asian options ? ? ? bermudan and american style options ? ? ? spread and spark spread options ? ? ? multi - commodity options practical example : ? ? ? pricing swing options ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? using monte carlo techniques to value swing options practical example : ? ? ? pricing a multi - commodity option ? analysing approaches to weather derivatives valuation ? understanding the mechanics of weather derivatives ? ? ? heating and cooling degree day swaps ? ? ? precipitation contracts applying probablistic approaches to pricing weather derivatives ? ? ? stochastics ? ? ? monte carlo techniques using historical methodologies and black - scholes for pricing weather derivatives valusing long term transactions practical example ? please could you let me know by the close of business on thursday if you would like to make any changes to the bullet points . i have printed out your biography below and please could you also let me know if you would like to make any changes to it . ? vince kaminski , enron capital & trade resources vince kaminski is vice president and head of research at enron risk management and trading , a unit of enron capital & trade resources . mr kaminksi joined enron in 1992 . previously he was vice president in the research department at salomon brothers . ? thanks again vince and i ? look forward to speaking to you on friday . ? best regards , ? vicky",0 +"Subject: latest draft - - comments ? vince , this is my latest effort and i would appreciate your thoughts . i know that we haven ' t written together before so let me assure me that you will not hurt my feelings by "" slashing away "" with a red pen . i think that i have put all the clay on the table for this piece of sculpture but it is still pretty crude . help me "" refine "" the work to create something we can both be very proud of . by the way , i know you are extremely busy right now so don ' t feel pressured to spend lots of time here . any guidance you can offer will be appreciated . i don ' t know what the editor ' s time schedule is but he asked me to send him a draft on monday . you and i will still be able to edit the manuscript but he will begin reading and editing it too . i ' ll let you know as soon as i have a final deadline . your friend , john p . s . hope life is a bit calmer for you . by the way , i ' m reading an interesting book entitled "" the four agreements "" by miguel ruiz that documents the toltec philosophy of life in the context of the dreams of reality that we all create . you might enjoy it . - enron _ paper _ 1 _ 16 _ 01 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: entouch newsletter business highlights enron freight markets enron freight markets ( efm ) launched its over - the - road trucking business this week . in addition , efm completed 199 intermodal transactions in the first week of april . ena west power ena west power recently closed the sale of two power projects . the 750 mw pastoria energy facility in kern county , california was sold to calpine and the 240 mw fountain valley power project in colorado was sold to black hills energy capital . given the power shortage in the west , ena is developing additional power generation in nevada , california and washington . enron industrial markets the newsprint group of eim is working to revolutionize the newsprint market and bring financial rigor and market efficiencies to a business that has remained relatively unchanged for more than a century . the global newsprint market is a 23 billion dollar a year business with the north american market comprising one third . the group ' s originators , mid - marketers , and financial and physical traders offer our customers numerous financial and physical products not previously available in the market . eim has made a substantial commitment to this business with the purchase of garden state paper company last year and the recent purchase of daishowa paper in quebec city . the number of transactions has grown exponentially with the physical trading alone reaching a nominal trading volume of more than $ 10 , 000 , 000 per month in little more than four months since opening . in addition to physical spot transactions , the desk offers our counterparties log - term fixed priced transactions , indexed based pricing , forward contracts , swaps , and derivative products . forest products forestweb inc . , an internet - based generator , aggregator and integrator of knowledge and information for the forest products industry , announced a new window to industry financial and risk management tools available from clickpaper . com . clickpaper allows the industry direct access to transactable prices for both physical and financial products , in an electronic format . paperloop . com , one of the leading online resources for the forest products industry , announced the addition of clickpaper . com in their emarketplace , which showcases various e - commerce companies and highlights their services . paperloop provides clickpaper . com exposure to its 250 , 000 + monthly users in the pulp , paper and converting industries . in the news ken lay was the cover story for the april 2001 issue of continental magazine . he had positive things to say about his employees .  & sitting in his 50 th floor mahogany - paneled office overlooking his much - beloved downtown houston , lay , with a self - conscious smile , bows his head slightly as he  , s described as an innovative market maker .  + i really can  , t take any credit , he says . my employees are responsible for what enron does .  , what he does best , the missouri - born corporate icon says , is  + to create an atmosphere of empowerment and creativity and hire bright , innovative people who aren  , t afraid to take risks and try new things .  8 welcome new hires eim - craig rickard , lisa mcclendon ena - ben brasseaux , stephen swisher , tamera joyner , vanessa griffin , kathleen ashton weekly enrononline statistics below are the latest figures for enrononline as of april 6 , 2001 . * total life to date transactions > 845 , 000 * life to date notional value of transactions > $ 500 billion nuggets & notes mark your lunch calendars now ! the next ews brown bag is thursday , april 19 at 11 : 30 am . tim battaglia vp / eim will be discussing steel origination . congratulations to peter del vecchio , eim senior counsel , and his wife , nair . they are the proud parents of dante valentin del vecchio , born april 3 , weighing 4 pounds , 8 ounces . news from the global flash enron poland obtains gas trading license on 22 nd march 2001 enron poland received a 10 - year gas trading license , valid for both domestic gas trading within poland as well as for gas exports . the license is a key component to our entering the gas trading market in poland and , coupled with the power trading license we obtained in 1999 , will give enron poland a strong position in the developing wholesale energy market . in the next two to three weeks , we expect to receive a cross - border trading license covering gas imports that are further regulated under the polish energy law ordinance on gas import diversification . enron wind announces first uk off - shore wind farm on 5 th april 2001 , enron wind announced that it had been granted the right to initiate the planning process for its first uk offshore wind farm , located at gunfleet sands , 7 km from clacton - upon - sea in essex . construction is expected to start towards the end of 2002 , with the wind farm of 30 turbines being operational by q 4 2003 . enron wind is also actively involved in a number of on - shore projects in the uk , including the development of wind farms in wales and northern ireland . legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: apr 20 - wharton - final agenda michael , vince and i appreciate your keeping us involved with this event . good luck and we hope to see you soon ! - best ! christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 18 / 2001 04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - michael tomczyk on 04 / 18 / 2001 02 : 54 : 00 pm to : vkamins @ enron . com , christie _ patrick @ enron . com cc : subject : apr 20 - wharton - final agenda vince and christie , i know you are unable to attend this week ' s event at wharton but i thought you would like to see the final agenda , and i also wanted to remind you that about a week or so after the event we will post a summary of presentations and discussion insights on our website : ? http : / / emertech . wharton . upenn . edu . in addition to senior wharton faculty and colleagues , senior managers from the following companies will be attending : ? charles schwab , cybersource , ellacoya networks , glaxosmithkline , gmac , healthnetworks . com , hewlett - packard , infosys , ibm , nsa , omnichoice , philadelphia newspapers , and usinternetworking . best regards , michael managing strategic partnerships & acquisitions ? friday april 20 , 2001 - - 8 : 30 am to 400 pm location - room 1206 steinberg - dietrich hall - wharton school - philadelphia final agenda ? managing strategic partnerships an insight - building conference including new wharton research on best practices and successful strategies for achieving corporate growth through alliances , mergers and acquisitions . friday , april 20 , 2001 - 8 : 00 to 4 : 00 1206 steinberg - dietrich hall , wharton school presented for our industry partners and guests by the emerging technologies management research program , mack center on managing technological innovation agenda & conference topics 8 : 00 - 8 : 30 ? - ? continental breakfast and informal networking 8 : 30 - 8 : 45 introduction : strategic partnering for growth and innovation harbir singh , wharton 8 : 45 - 9 : 30 ? - networking , partnerships & strategy lori rosenkopf , wharton 9 : 30 - 11 : 00 ? - success and failure factors in strategic partnering todd horst , usinternetworking tim george , pfizer dave daetz , cybersource 11 : 00 - 11 : 15 ? - break 11 : 15 - 11 : 40 ? - building partnering skills and capabilities prashant kale , university of michigan 11 : 40 - 12 : 00 ? - successes & failures in strategic outsourcing : some initial findings howard perlmutter , wharton 12 : 00 - 1 : 30 ? working lunch - strategic partnering as a core competency paul j . h . schoemaker and roch parayre , wharton 1 : 30 - 1 : 45 ? - mapping social networks : applications to strategic partnering ruhul quddus , wharton 1 : 45 - 2 : 30 ? - small group reports paul j . h . schoemaker & roch parayre , wharton 2 : 30 - 2 : 45 ? - break 2 : 45 - 3 : 45 ? - managing high technology acquisitions phanish puranam , wharton walt vester & harry hirschman , wharton kerri ford , wharton 3 : 45 - 4 : 00 ? - summary of key insights and future research goals harbir singh , wharton 4 : 00 - adjourn - - michael s . tomczyk managing director emerging technologies management research program 1400 sh - dh / 6371 the wharton school philadelphia , pa 19104 - 6371 tel 215 - 573 - 7722 fax 215 - 573 - 2129 website : ? http : / / emertech . wharton . upenn . edu",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 pcl 4 f order for : maureen raymond 1 x ( option : 128 mb upgrade for deskpro en 6600 $ 144 ) enron it purchasing",0 +"Subject: prob of default for e rating 7 as of 2 / 3 / 00 vincent , i got the e - rating and default probabilities for promigas from the credit group . could you plug in these numbers to the loan guarantee model ? promigas is rated as bb . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 02 / 04 / 2000 08 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tanya rohauer 02 / 04 / 2000 07 : 27 am to : zimin lu / hou / ect @ ect cc : subject : prob of default for e rating 7 as of 2 / 3 / 00",0 +"Subject: fw : resume for vince kaminski we just received this resume from an agency . i had just heard this morning that an economist was coming into your group , so i don ' t know if you are interested or not . let me know if i can be of any help . molly - - - - - original message - - - - - from : graham , toni sent : thursday , march 08 , 2001 2 : 07 pm to : magee , molly subject : fw : resume for vince kaminski - - - - - original message - - - - - from : "" m eastman "" @ enron @ enron . com ] sent : thursday , march 08 , 2001 1 : 53 pm to : graham , toni subject : resume for vince kaminski johnathan is at 142 , 000 base + 10 - 15 % bonus . he is a phd . , certified in financial risk management , awaiting charter as cfa , and the list goes on . at kpmg his clients are financial institutions , e - commerce , internet , and high tech . he has real options valuation and various other financial and overall corporate risk valuation and analysis skills that may be of interest to vince and his group . mike eastman , cpc - president qualitec professional services , lp accounting - financial - energy risk - tax search consultants 281 - 647 - 9300 ext . 314 fax 281 - 647 - 9300 email meastman @ qualitec . com website www . qualitec . com - johnathan mun . doc",0 +"Subject: fyi : forward hi vince , the following is what i wrote to molly as she prepares the contract for me to work with enron . i thank you for allowing me to work with enron and will do all that i can to make you happy with my candiates and performance . thank you for you support vince . will check in soon , jeff sorry about the mix - up on the email molly . i hope you get this one . as most good corporations like enron have predefined contractual arrangements to do executive search business i will be happy to abide by your terms and rules . and to be quite honest - enron is about the "" best it gets "" so , i prefer to not draft a contract this time or for this relationship - i will wait for yours to be signed by me . the only stipulation i request of you is that upon contractual performance , enron accounts payable please wire my funds to my account as i have a multi - currency account denominated in usd / canadian or british pounds ( which ever fits you as i may need to pay my counterparts in the uk ) . . . other than that i have no perplexities . i will send you my wire instructions later , either my bank in california or in bermuda . as i live in california and do contingency search , i must go off of my client ' s "" good word "" on occasion and luckily haven ' t had any problems so far . . . i always honor california verbal contract law - if i do not draft . i think you fee payment of 20 % is generous and the industry standard of 30 day guarantee on replacement is fair . obviously there is no deposit on any contingency and if there is a definite urgent need for a position to be filled only then will i ask your help for a minor deposit to aid in my overhead to shift all my resources to search on behalf on enron . as enron has the in - house power to probably not need this service then obviously a deposit will not be required . if you wish me to send my standard agreement then i will , but you have made yourself perfectly clear by phone what you are willing to do . i therefore will be happy to receive you contract and follow your instructions . i thank you and vince for allowing me to work with enron and pledge to you my best work and candidates utilizing my network of contacts . i am very excited about our new relationship and hope to give you my very best service . thank you very much for this opportunity molly , please send my your contract so , that i may sign it and send it right back to you immediately . i am looking forward to working with vince and you . thank you again , jeff wesley ps - i can utilize to resources of management recruiters international usa and robert walters of the uk to aid in my service to you . best regards , jeff wesley * get free , secure online email at http : / / www . ziplip . com / * - private 9498132241 original . doc - statement 9498132241 origina . doc",0 +"Subject: enron contact info dear vince , christie and vasant : thank you for the presentation to the enron tiger team . it was most informative and well received by the students . this is an exciting project and the students are enthusuastic and anxious to begin . many thanks , also , for hosting the dinner at the palladium . it was a wonderful opportunity to get to know more about the project , as well the enron representatives and the students . listed below is the contact information with team contacts identified . i will send you the teams project preferences as soon as i recieve them from all the students . it may be a good idea to contact the students before they leave for vacation ( 15 - 22 dec ) to see who is interested in a trip to houston in january for planning purposes . they will return to campus jan . 16 . please let me know if there is anything i can do to assist from this end . again , thank you for your support of the wharton school and of the tiger team project 2001 . sincerely , donna piazze program director field application project the wharton school univ . of pennsylvania ( 215 ) 573 - 8394 ( 215 ) 573 - 5727 fax fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu enron 1 vincent chen vincent . chen . wgo 2 @ wharton . upenn . edu enron 1 nick levitt nicholas . levitt . wgo 2 @ wharton . upenn . edu enron 1 deepa mallik mallikd @ wharton . upenn . edu enron 1 jack rejtman jack . rejtman . wgo 2 @ wharton . upenn . edu enron 1 kim whitsel whitselk @ wharton . upenn . edu * * * team contact enron 1 tulika bhalla bhallat @ wharton . upenn . edu enron 2 jaideep singh singhjai @ wharton . upenn . edu enron 2 edson otani edsono @ wharton . upenn . edu enron 2 joshua leventhal levent 86 @ wharton . upenn . edu * * * team contact enron 2 pat henahan mhenahan @ wharton . upenn . edu enron 2 murat camoglu camoglum @ wharton . upenn . edu enron 2 gustavo palazzi gustavop @ wharton . upenn . edu enron 3 clay degiacinto enron 3 steve lessar stephen . lessar . wgo 2 @ wharton . upenn . edu enron 3 ram vittal mvittal @ wharton . upenn . edu * * * team contact enron 3 jason cummins marc . cummins . wgo 2 @ wharton . upenn . edu enron 3 omar bassel bassalo @ wharton . upenn . edu enron 3 dennis feerick dennis . feerick . wgo 2 @ wharton . upenn . edu professors : louis thomas thomas @ wharton . upenn . edu keith weigelt weigelt @ wharton . upenn . edu ta : heather thorne hethorne @ wharton . upenn . edu fap : donna piazze piazze @ wharton . upenn . edu host contacts : vince kaminski vkamins @ enron . com christie patick christie . patrick @ enron . com",0 +"Subject: course invoice vince , ? hi , hope you are well . ? i ' m just dropping a note regarding invoice 215 which was for 5 people attending the energy and weather course . ? our records show that it hasn ' t been paid , which is good . ? we will re - do the invoice and charge you only for alex and tom ' s attendance since paulo didn ' t show . ? is this ok with you ? ? by the way , we only charged $ 250 a person for the weather course since it was suppose to be an exchange of information session , and enron weather paid for the venue . ? nice to have finally met you in houston ! ? julie ?",0 +"Subject: term papers team , can you resend your text document to vince asap . we could open your spreadsheet ok , but not the document . vince ' s contact information is on the attached email below . thanks jason - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 05 / 04 / 2001 05 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 05 / 04 / 2001 05 : 29 pm to : monfan @ rice . edu cc : vkaminski @ aol . com , jason sokolov / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : term papers felix , please , resend me the term papers of your group , each as a separate file . please send it to my aol address as well as work address . my aol address is vkaminski @ aol . com my home phone number is 281 367 5377 . vince",0 +"Subject: re : option pricing challenge zimin , to generalize your initial comment , for any process ds = mu ( s , t ) * s * dt + sigma ( s , t ) * s * dz , the delta - hedging argument leads to the black - scholes pde . this is true for any arbitrary functions mu and sigma , and so includes gbm , mean reversion , and others . there is no problem with this , because in the risk - neutral world , which is what you enter if you can hedge , the drift of the "" actual "" process is irrelevant . i believe your concern is that you would like to see a different option price for mean reversion process . this can only happen if the asset is not hedgeable , and so the actual dynamics then need to be factored into the option pricing . if you assume that the underlying is a non - traded factor , then the pde will have to reflect the market price of risk , and the drift of the actual process is then reflected in the pde . vasant zimin lu 10 / 17 / 2000 05 : 20 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect cc : subject : option pricing challenge dear all , i have a fundamental question back in my mind since 95 . hope you can give me a convincing answer . zimin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - in deriving bs differential equation , we assume the underlying follows gbm ds = mu * s * dt + sigma * s * dz where mu is the drift , sigma is the volatility , both can be a function of s . then we use delta hedging argument , we obtain the bs differential equation for the option price , regardless of mu . with the bs pde and boundary condition , we can derive bs formula . fine . no problem . question comes here . suppose the underlying is traded security and follows , say , mean - reverting process ds = beta ( alpha - s ) dt + sigma * s * dz apparantly , this sde leads to a different probability distribution . however , using the delta hedging argument , we still get the same bs differential equation , with the same boumdary condition , we get the same bs formula . not fair ! from another angle , i can derive the distribution from the bs pde for the underlying , which is the lognormal distribution . my thinking is : can i drive the distribution for any sde from the option pde ? the answer should be yes , but got to be from a different pde rather than bs pde . then what we do about the delta - hedging argument ? thanks .",0 +"Subject: as promised molly sorry about the mix - up on the email molly . i hope you get this one . as most good corporations like enron have predefined contractual arrangements to do executive search business i will be happy to abide by your terms and rules . and to be quite honest - enron is about the "" best it gets "" so , i prefer to not draft a contract this time or for this relationship - i will wait for yours to be signed by me . the only stipulation i request of you is that upon contractual performance , enron accounts payable please wire my funds to my account as i have a multi - currency account denominated in usd / canadian or british pounds ( which ever fits you as i may need to pay my counterparts in the uk ) . . . other than that i have no perplexities . i will send you my wire instructions later , either my bank in california or in bermuda . as i live in california and do contingency search , i must go off of my client ' s "" good word "" on occasion and luckily haven ' t had any problems so far . . . i always honor california verbal contract law - if i do not draft . i think you fee payment of 20 % is generous and the industry standard of 30 day guarantee on replacement is fair . obviously there is no deposit on any contingency and if there is a definite urgent need for a position to be filled only then will i ask your help for a minor deposit to aid in my overhead to shift all my resources to search on behalf on enron . as enron has the in - house power to probably not need this service then obviously a deposit will not be required . if you wish me to send my standard agreement then i will , but you have made yourself perfectly clear by phone what you are willing to do . i therefore will be happy to receive you contract and follow your instructions . i thank you and vince for allowing me to work with enron and pledge to you my best work and candidates utilizing my network of contacts . i am very excited about our new relationship and hope to give you my very best service . thank you very much for this opportunity molly , please send my your contract so , that i may sign it and send it right back to you immediately . i am looking forward to working with vince and you . thank you again , jeff wesley ps - i can utilize to resources of management recruiters international usa and robert walters of the uk to aid in my service to you . best regards , jeff wesley always held in strict confidence . 949 813 2241 hotline 347 487 8957 voice / fax us ( 011 ) + 44 ( 845 ) 3341644 uk - - - - - begin pgp public key block - - - - - version : pgpfreeware 6 . 5 . 3 for non - commercial use 2 w 4 duudd 3 yisxx 8 wy 2 o 9 vpji 8 bd 8 kvbgi 2 oulwmufo 4 ozt 9 fbdxq 6 mdggzemyestsr / pogxkuayeyl 8 6 vq rpmynofdopnqnyej 2 + m 9 zwwyw 3 gbij 4 vktfyngoqevl 3 l 9 hg 2 l 7 lsls + 8 ywlvcqb llmkul 3 lxa 9 idp 6 bzu 9 drwdfrba 5 rdvbfylolythsp 0 zg 4 lolurfgyy + iakwe / 5 n 78 fc 32 lczbj 8 rvsvh + qljiyisjdvambww 4 hjlzc 9 tipdtggz 6 g 5 lgg 8 dfw 74 ezsx lzsy + zzncacst / dveok / + y 4 nrumqor + qggo 9 l 9 gwpqu 5 blxenpedteczmwome 48 z glkh + bz 39 qcfvc + hxgi 7 ogcon / rseitrweao / sy = = 2 nkw - - - - - end pgp public key block - - - - - * get free , secure online email at http : / / www . ziplip . com / * - private 9498132241 original . doc - private 9498132241 original . doc - statement 9498132241 . pdf - statement 9498132241 origina . doc",0 +"Subject: reminder for dinner on saturday dec 2 nd this is to remind all of you of the dinner plan ( with family ) at my house on saturday dec 2 nd . we will expect you at about 6 : 00 pm . address : 3410 s . briarpark ln , sugar land directions ( from downtown ) : take 59 south all the way past sam houston beltway 8 , and past highway 6 . take the next exit - - - first colony blvd / sweetwater blvd . take a left at the traffic light onto sweetwater blvd ( over the highway ) . go straight on sweetwater blvd past a few traffic lights and a few stop signs . after passing a golf course on the right , you will get a subdivision "" crescents on the green "" on the right , and a subdivision "" briarwood "" on the left . take a left into the briarwood subdivision and an immediate right onto s . briarpark ln . ( there is only one street in the subdivision ) . our house ( 3410 ) is right there - - - 3 rd house from cul - de - sec . phone : 281 265 8959 cell : 713 569 2438 vasant do you yahoo ! ? yahoo ! shopping - thousands of stores . millions of products . http : / / shopping . yahoo . com /",0 +"Subject: recommendation for john gordon dear vince , i am writing to bring to your attention a gsia student , john gordon , who is currently being considered for enron ' s associates program . my understanding is that mark courtney and andrew miles at enron are championing john as a late addition to the program . while i know enron doesn ' t routinely recruit at gsia , john would be an ideal candidate if you are willing to make an exception . he is a terrific finance student with a strong transcript ; including an a + in my options class . since john has an engineering / energy background , he asked early on for additional background reading about finance and energy . john is personable and outgoing . normally the job market for someone of john ' s caliber would have already cleared , but i have been told that there are dual career issues at play here . i would be very appreciative if you would take a look at john . a copy of his resume is attached to this email . best regards , duane * * * * * * * * duane seppi graduate school of industrial administration carnegie mellon university pittsburgh pa 15213 - 3890 tel . ( 412 ) 268 - 2298 fax ( 412 ) 268 - 8896 email ds 64 @ andrew . cmu . edu - john gordon ' s resume",0 +"Subject: enron research and ebs engineering and operations group technical forum kevin , i would like to invite you to an off - site meeting of john griebling ' s organization and the research group . date : april 27 - april 29 location : breckenridge , colorado as you know , john griebling is managing the network design and construction project currently under way in ebs . the research group is actively involved in this effort which requires advanced quantitative skills in the area of stochastic optimization and stochastic processes ( for modeling and forecasting internet traffic flows ) . the objective of this meeting is to develop common language and accomplish transfer of skills between the two groups , to facilitate cooperation on this project in the future . we are inviting ken rice and joe hirko to this meeting . we would appreciate if you could speak , together with joe and ken , on strategic directions of ebs . it is important for a group of technical people , with relatively specialized technical skills , to understand the big picture . i am attaching the preliminary agenda for this meeting . vince",0 +"Subject: interview follow up from susan v . gonzalez nov . 2 , 2000 ? michael roberts , vice president , reseach stinson gibner , vice president , reseach vincent kaminsik , managing director , research enron corp . ? gentlemen , thank you for the opportunity to learn about a new communication position within your group . ? ? based on our discussions , here are some initial thoughts / observations on the job and the task . ? * daily email newsletter for primarily two audiences : ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 1 . ? internal for employees available via the enron intranet ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 2 . ? external for clients , industry at large ? * also suggest the newsletter be sent to a targeted group of trade press . ? as this information tool builds momentum and credibility , it will support the leadership positioning of ? enron ' s trading group . ? ? plus , it could become a driver for media inquiries and ? requests for further information or interviews with enron ? trading experts . ? * i heard you wanting internal and external versions for both morning and afternoon distribution . ? ? that is an aggressive set of daily mailings . i would want to review the scope of the content and look at the frequency . ? just like print publications , ? email newsletters are ? now the rage and too many are ? landing in the email inboxes . ? ? my counsel would be to start with a manageable number and do it well . ? you can always increase frequency . ? difficult to cut back on frequency without it appearing as a take away or lack of commitment to the product . staffing ? ? ? * invite outside industry analysts or clients to provide commentary . ? * consider developing an "" editorial advisory board "" to govern the content . ? ? traders , ? legal department , communications dept . a multidisciplinary group that ? can add value to the publication . ? * suggest finding an ims or it resource from within enron to be assigned to this communications effort . ? ? database set up for the email addresses , technical issues arise ? for ? creating the links etc . ? managing an e - newsletter in my current position , i can ? tell you that a writer / editor has enough to do to compile content . ? ? you want mailings to go off without any glitches . ? or if there are glitches , he or she can ? solve quickly . ? what are the implications of these mailings on the company ' s computer systems ? ? ? * budget . ? although not a typical print publication , this effort should have a budget . ? graphics , freelance or contract writing , photography ? any special software or hardware needs associated with this effort ? ? ? * review process . ? what is the review process for ? this publication . ? legal guidelines ? ? corporate guidelines with regards to style , graphics etc . ? ? technical review of the material for accuracy ? ? a clear policy should be established ? up front for the review process so everyone involved knows and understands their role and responsibilities ? towards this communication effort . ? * have you surveyed what is out in the marketplace ? ? ? gather samples of ? newsletters that you like or don ' t like for discussion purposes . ? * measurement / evaluation of the newsletter . ? ? how ? will the effectiveness of the newsletter be measured ? ? hits on the website . ? inquiries from clients ? ? don ' t have a quick answer but ? some goals should be set to measure against . ? * maintenace of the mailing lists should reside with the individual groups participating in the newsletter . ? ? maintenance of the newsletter databases should not be the responsibility of the communications representative . ? ? ? ? this sent to you in the spirit of exploring the position further . ? look forward to your feedback . ? ? thank you for your consideration . ? ? sincerely , susan v . gonzalez 11822 poplar creek houston , tx ? 77077 ( 281 ) 497 - 7185 home ( 281 ) 877 - 5853 work",0 +"Subject: re : marketpoint gas model john : thanks for the information . chaim and i were aware that you might be changing roles at enron . i am delighted kim is slated to take over the reins working with vince . kim has put in a good bit of time in the past few years reviewing our stuff and setting up contacts for us in your company . we will give kim a call early next week after easter . we have made a lot of progress on marketpoint , which i think will be of keen interest to your team . the introductory activity as well as the ongoing , inhouse architecture are both improved relative to what you and your people were able to review , and i anticipate you will be pleased and impressed . john , it isnt that easy for you to get away from us ! remember the story of the tar baby . ( just kidding . ) all the best , and i hope we get the chance to serve you and make your organization even better . dale > - - - - - original message - - - - - > from : goodpasture , john [ mailto : john . goodpasture @ enron . com ] > sent : thursday , april 12 , 2001 9 : 03 am > to : chaim . braun @ altosmgmt . com > cc : dale m . nesbitt ; kaminski , vince ; watson , kimberly > subject : marketpoint gas model > > dear mr . braun : > > as i mentioned , i have recently been reassigned here at enron . although i > am still in the enron transportation services group , i am no longer the > most appropriate contact for consideration of the altos gas model . i > would suggest you contact kim watson at 713 - 853 - 3098 or of course , vince > kaminski , who will remain very much a part of the decision process . > > regards , > > john goodpasture > > > > > > > > > > > - winmail . dat",0 +"Subject: the business of power june 23 , 2000 international electric industry conference for the past five years , the association of power exchanges ( apex ) has held its business meetings in different locations around the world . for the first time , an industry conference is being held to compliment these meetings , providing a means to connect industrial electricity exchanges , isos and pools with senior leaders in the worldwide electric industry . for more information we have attached an adobe acrobat pdf file . the document requires adobe acrobat reader 2 . 1 or higher . the latest version is available to download from http : / / www . adobe . com . or view our website : http : / / www . apex 2000 conf . com . # 12 - apex 2000 . pdf",0 +"Subject: good looking guy hi vince . look at this guy ( picture included ) . he is "" lawrence "" , the guy i spoke to you about last week that you said you wanted to see . he asked me if he can do a phone interview . . . i think williams , ford and sdcera are soliciting him . if i told him you and enron are interested - he would drop the others off the map for a chance to interview with you . i like him too as he follows my instructions as is pleasant to work with ( most are not ) . do you want to chat with him ? on your command , jeff wesley always held in strict confidence . jeff wesley 949 813 2241 hotline 347 487 8957 voice / fax us + 44 ( 845 ) 3341644 uk * get free , secure online email at http : / / www . ziplip . com / * - imageo 02 . jpg - lawrenceagent 9498132241 new . doc",0 +"Subject: thursday instead friday john sherriff ' s asst has moved the meeting . i hope this is still possible for you . steve - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 09 / 11 / 2000 08 : 05 - - - - - - - - - - - - - - - - - - - - - - - - - - - lauren urquhart 07 / 11 / 2000 09 : 16 to : steven leppard / lon / ect @ ect cc : subject : thursday instead friday hi steve steve , the research meeting has been moved to thursday at 3 . 00 pm . can you please let vince know . thanks . lauren",0 +"Subject: hello vince vince , can i call you tuesday morning about our writing project ? i have to be in austin for a dental appointment on monday at noon and that will probably wipe out the day . give me a time and number where i can reach you . john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: wharton event - junel 0 - insead bryan , i shall call you later today when i have a chance to read the message from ben . i wanted to ask you for a favor ( on a very short notice ) . we are talking to the wharton school about setting up a relationship with them and getting involved in one or more research projects with them . one of the potential topics is emerging technologies . the wharton offers a symposium in paris on june 10 on high tech acquisitions and it would make a lot of sense if you ( or somebody from london you could identify ) could attend and help us to evaluate the usefulness of this project . i am enclosing the message from the person in wharton running this program . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 05 / 2000 09 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tomczyk @ wharton . upenn . edu ( michael tomczyk ) on 05 / 18 / 2000 10 : 56 : 08 am to : vkamins @ enron . com cc : thomas . piazze @ wharton . upenn . edu subject : wharton event - junel 0 - insead vincent , it was truly a pleasure getting to know you in our meeting yesterday , and i look forward to the prospect of exchanging views in the future on a variety of topics pertaining to emerging technologies . per our discussion , i ' ve enclosed three files that include an invitation , agenda and rsvp form for the june 10 symposium on high tech acquisitions at insead . if you or the individual ( s ) who will be attending have any questions , please email : phanish puranam at : phanis 20 @ wharton . upenn . edu or you can call him at 215 - 898 - 1231 . this initiative will be expanded during the coming year and i believe that enron ' s involvement will give the company access to some of the early research in progress as it unfolds , and of course , if you become involved as a partner in the emerging technologies program you would have opportunities to help guide the direction of the research which is one of the partnership "" benefits . "" our next upcoming events are scheduled for : friday , september 8 "" what next on the internet ? "" this is a faculty update day with industry partners also invited . we will co - sponsor this with wharton ' s major e - business initiative . major issues addresses include "" new economics of the web "" and "" internet , anywhere . "" friday , october 20 "" first mover advantage , shakeouts & survival strategies "" designed by the et core group and presented in collaboration with the e - commerce forum . as i indicated during our discussion , participation in the emerging technologies management research program is by invitation and on behalf of our core faculty , i am pleased to extend an invitation for enron to join the program . to assist in your decision , we recommend having a representative attend the symposium in paris on june 10 to "" test drive "" the program . i ' ll send you a formal invitation which you are free to accept at your convenience , should you agree that enron ' s participation in the et program would be of value . please call or email if you have any comments or questions . best regards , michael - insead workshop invitation lett - insead workshop agendal . doc - rsvp form . doc michael s . tomczyk managing director emerging technologies management research program 1400 sh - dh / 6371 the wharton school philadelphia , pa 19104 - 6371 tel 215 - 573 - 7722 fax 215 - 573 - 2129",0 +"Subject: re : hib visa application - sevil yaman margaret , thanks for reminding me this issue . i think i ' ll be fine until i start full time here in the research group . as you know right now i am using curricular practical training as work permission . and until i graduate i am allowed do as many as part time cpt i want to do . because of tax purposes i think i ' ll use this right given to me . in this case , what i need to do is that after i and vince make sure about my full time start date ( this may happen in the beginning of 2002 ) , i ' ll let you know and send you the necessary document you require to initiate my hlb visa application process . thanks again . sevil , margaret daffin @ ect 25 - 04 - 2001 12 : 04 to : sevil yaman / corp / enron @ enron cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate subject : hib visa application - sevil yaman sevil : please let me know when you will be sending me the information for your hib visa ? thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 04 / 25 / 2001 12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 04 / 10 / 2001 04 : 04 pm to : sevil yaman / corp / enron @ enron cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate subject : hib visa application - sevil yaman sevil : in order that we may proceed with your request for permanent residency , our immigration attorneys have advised us that we need to process the hib visa , prior to the permanent residency application . therefore , i am attaching an hib visa questionnaire that i would like you to complete and return to me , together with copies of all of the documents listed at the bottom of the form . please bring these to me in 3 ac 2026 a . please let me know if you have any questions at x 55083 . thank you margaret",0 +"Subject: interview schedules for tony hamilton and damian likely please find the interview packets for the above - referenced candidates . the interviews will occur on friday january 26 , 2001 . please print all documents for your reference . hardcopies of their resumes will be delivered via runner . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . shawn grady 58701",0 +"Subject: energydesk . com 2000 : meeting to review the new initiative with a demonstration of the latest implementation , with a view to identify the value we can add from the research group [ exact time tbc ] exact time and location tbc for a mutually convenient time",0 +"Subject: re : term papers please respond to here is the excel file ( zipped ) . you have to unzip to read it . felix * * * * * * * * * * * * * * * * * * * * felix feng lu mba candidate , class 2001 jesse h . jones graduate school of management rice university phone - 713 . 942 . 8472 / fax - 714 . 908 . 7914 monfan @ rice . edu * * * * * * * * * * * * * * * * * * * * - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , may 04 , 2001 5 : 30 pm to : monfan @ rice . edu cc : vkaminski @ aol . com ; jason . sokolov @ enron . com ; vince . j . kaminski @ enron . com subject : term papers felix , please , resend me the term papers of your group , each as a separate file . please send it to my aol address as well as work address . my aol address is vkaminski @ aol . com my home phone number is 281 367 5377 . vince - feng lu . vcf - modelingproject . zip",0 +"Subject: re : actions on anjam ' s resignation i will sit anjam down before he leaves and explain the confidentiality provisions in his contract and that we will pursue them vigorously . melanie - can you give me a copy , steve , let me know when he is leaving - i ' ll do it closer to the time . richard steven leppard 26 / 10 / 2000 10 : 13 to : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , melanie doyle / lon / ect @ ect cc : richard lewis / lon / ect @ ect , simon hastings / lon / ect @ ect subject : actions on anjam ' s resignation all my preferred approach to dealing with anjam ' s departure is given below . these recommendations are informed by the fact that i don ' t feel anjam has much to offer his next employer , except what code and data he can remove from enron : hr - type stuff : 1 . get anjam off the trading floor as soon as possible . there is no need for him to remain on the floor . 2 . determine where anjam is heading . we need to know who is going to know our positions and curves next . it - type stuff : 1 . ask him to catalogue the contents of his h : drive , since the rest of the group will need to support his work in the future . this should take no more than a day or two . 2 . get it to obtain their backups of anjam ' s h : drive for weekly intervals over the last two months . this will allow us to determine what he has deleted . 3 . get it to provide a snapshot of anjam ' s notes folders , and provide records of mail sent out to the internet over the last couple of months . i ' m worried about code / data he may have zipped up and mailed out . 4 . ask it to use a utility program to determine what has been deleted from anjam ' s c : drives . there may be useful info here too . steve",0 +"Subject: india database jim / wade , as you are aware , i have been working with vince ' s group on the henwood model data . the target was to have data on all india plants collected by jan . 15 th . we all know that getting power out o maharashtra holds the key to being able to solve the dabhol challenge . with all of your help , this model can become the tool that tells us exactly how that can be done , and at what prices . we are a substantial part of the way there on data collection , and have got data of some 1500 plants across the country . the spreadsheet for the same is attached . this will help you answer any questions that come up in calls about the various plants . please note that we are located in the western region , or wr in the spreadsheet . we will be further scrubbing the data and getting more recent and accurate information , especially on maharashtra over the next 2 - 3 days . the henwood team will be in india on sunday , and will compare notes with the team here . i am arranging for a presentation on the model and what it will do . wade - it would be good if a broad section of the team attend , including neil , yourself and mohan . i will talk to you about a convenient time for you in this regard . neil & mohan - over the next week ( monday and tuesday ) i will need some time from vivek , anshuman , ravi , and a few others , to interact with the henwood team . i will be abliged if you can make that possible . the first phase of model runs ( which will be done by jan . end ) will just give us some more basic information , but i will need all of your inputs in order to ask the right questions . the idea is that as we go along , this model will be used to answer all types of management questions concerning dabhol , and power evacuation out of maharashtra . this will be critical for the team going forward . regards , sandeep .",0 +"Subject: re : invitation - wharton et events i agree . if you are going to send an rsvp , i suggest it be you , me , and christie patrick . if any of us drop out , we ' ll be able to fill the space . mark",0 +"Subject: moze cie to zainteresuje vince , dawno ze soba nie rozmawialismy . mam nadzieje ze u ciebie wszystko o . k . nie wiem czy znana jest ci postac prof . aleksandra werona - zajmuje sie on zastosowaniem metod matematycznych w inzynierii finansowej . ostatnio natomiast skupil sie na rynku energii . wraz z synem rafalem wydal ksiazke "" gielda energii - strategie zarzadzania ryzykiem "" . zawarte sa w niej podstawy zarzadzania ryzykiem . na jego stronie internetowej http : / / www . im . pwr . wroc . pl / ~ hugo / fe . html mozesz znalezc cos wiecej na temat tego czym sie zajmuje . to co moze cie zainteresowac to moze byc strona http : / / www . im . pwr . wroc . pl / ~ hugo / rockets . html . ciekaw jestem co o tym sadzisz . spotkalem sie z weronem kilkakrotnie na roznych seminariach . zorganizowalem mu tez zobaczenie naszego trading floor podczas jednej z jego wizyt w londynie . pozdowienia jarek",0 +"Subject: removal of caps on resale of transmission on march 16 , martin lin will be participating in a panel discussion with dick o ' neill of ferc , a rep . of morgan stanley , and ed cazalet of apx on "" market turmoil , trading and risk management "" ( harvard electricity group ) . at the present time , except in several limited regions , marketers do not have the ability to hedge transmission risk by reselling it above cost . last year , we approached dick o ' neill ' s staff about the possibility of lifting the cap on resales of transmission , but they were not inclined to proceed absent the use of certain restrictions . there have been several recent developments in power and gas , as discussed in the attached memo . it would be helpful for martin to discuss these recent orders as necessary in order to attempt to gain support from dick o ' neill for the idea of lifting the cap for power . after martin ' s discussion , we should consider reapproaching ferc to seek approval .",0 +"Subject: sokolov eis expenses hi kevin : i was out of the office on thursday and friday . i have discussed this with vince kaminski and he says the charges are correct . jason sokolov reports to tanya tamarchenko in the research group and all of their costs are charged to rac . if you need further verification , please contact vince kaminski at 3 - 3848 . thanks ! shirley crenshaw administrative coordinator enron research group 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 19 / 2001 07 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont @ enron 03 / 15 / 2001 05 : 20 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : sokolov eis expenses - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 03 / 15 / 2001 05 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kevin jolly / enron @ enronxgate on 03 / 14 / 2001 01 : 38 pm to : anita dupont / na / enron @ enron cc : subject : sokolov eis expenses anita , the other day i called you to get jason sokolov ' s cost center . some of his eis expenses ( market data , long distance ) for jan and feb 2001 were charged to the enron corp . rac cost center . in order for our accountants to reclass the expenses , we need your approval that the expenses can be moved . if this is okay , just reply back and let me know . see the attached files for the detail of the expenses to be moved for jan and feb . thanks for your help , kevin",0 +"Subject: re : internship dr . kaminski : sounds good . you all have a nice weekend and 4 th . - - shane - - - - - original message - - - - - from : to : cc : ; sent : friday , june 30 , 2000 2 : 33 pm subject : re : internship > > shane , > > monday would work for us . > > my assistant will contact you wednesday to arrange the interviews . > > vince > > > > > > > "" shane green "" on 06 / 30 / 2000 11 : 33 : 53 am > > to : > cc : > subject : internship > > > > dr . kaminski : > > i just wanted to touch base and see if i needed to snail mail a copy of my > resume or get in touch with anyone else over at enron . > > the finance department at lsu will be sending out financial award letters > to new ph . d . students before long , and my interning at enron would free up > some additional departmental funds . in addition , if i will be here in > baton rouge during the fall , i will need to pay my tuition next month . i > am able to pursue an internship in large part because of the department ' s > cooperation and assurance that when i return i will still have a research > and or teaching assistantship to help fund the completion of ph . d . i have > been told that such cooperation and assurances are rare at lsu , so i am > trying to rock the boat as little as possible . > > i realize until i receive an offer from enron my internship ( i say > internship rather than sabbatical because lsu will not continue to pay me > my stipend while i am away ) is not assured until an offer has been > extended by enron . i understand that there are procedures and protocols > that must be followed before this occurs , and i would be willing to do > whatever is necessary to move to the next step in that process . > > i will be in houston on july 8 & 9 for my wife ' s grandmother ' s 80 th > birthday . if it would be convenient , i could be in town on the preceding > friday , or following monday for a visit and / or interview . if not , given > the relatively close proximity between baton rouge and houston , i would be > happy to come at another time . > > thanks again , > shane green > > > > > >",0 +"Subject: re : powerisk 2001 - your invitation angelika . yes . vince angelika staude on 04 / 12 / 2001 03 : 01 : 25 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : powerisk 2001 - your invitation vince , brilliant , thanks . same sub points , same bio ? best regards , angelika staude director gas & powerisk 2001 tel : 0044 207 915 5675 fax : 0044 207 915 5101 www . icbi - uk . com / powerisk - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 11 , 2001 6 : 59 pm to : astaude @ iirltd . co . uk cc : vince . j . kaminski @ enron . com subject : re : powerisk 2001 - your invitation angelika , thanks for the invitation . yes , i shall be glad to attend and repeat the same presentation . vince angelika staude on 04 / 09 / 2001 04 : 19 : 08 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : powerisk 2001 - your invitation powerisk 2001 the global premier forumforenergy trading & risk management 6 th - 9 th november 2001 , paris dear mr kaminski , i am responsible for the programme of this year ' s powerisk conference in paris . helyette geman has informed me that she has contacted you concerning the workshop and that you are happy to do it with her again this year - brilliant ! i would like to know if you are also interested in delivering a paper again . the audience in previous years greatly appreciated your contribution , and i would me more than happy if you could join us again . to give you an idea of the programme so far , these are the ( "" technical "" ) topics that are already covered : chris strickland : forward curve models with jumps for the pricing of exotic energy contracts multi - factor forward curve models for the valuation of energy contracts adding jumps applying the models to exotic energy options extensions to multiple energy contracts les clewlow : valuation and risk management of virtual power stations and gas supply agreements structures of gas supply agreements ( gsa ) relationships between physical and virtual power stations ( pps / vps ) valuation methods for gsa ' s and vps ' s risk analysis of gsa ' s and vps ' s derek bunn , professor of decision sciences , london business school : analysing the impact of neta on market efficiency & volatility in the uk energy market chris harris , director of market development . operations and engineering , innogy : applying cutting - edge portfolio management theory in order to optimise your risk exposure establishing and valuing the key factors using a bottom up approach looking at the interconnection between key factors the treatment of the risk of infrequent but high impact events peter nance , principal , teknecon : combining power systems and monte carlo simulations for effective pricing dan mansfeld , head of risk control , vattenfall : assessing the benefits and risks of using derivatives as part of your risk management strategy spyros maragos : analysing new approaches to building forward curves from available market data tamara weinert , credit and contracts manager , mirant energy : successfully measuring limit setting ; risk reducing structures importance of credit in the organizational structure : reporting ; dependence ; structure of credit department brett humphreys : examining cutting - edge credit exposure mitigation tools : combining counterparty and portfolio credit var techniques helyette geman : pricing of exotic energy derivatives and structured contracts please let me know if you are interested in joining the powerisk 2001 speaker panel , and which topic you would like to cover . i think that something along the lines of last year ' s talk ( state - of - the - art volatility and correlation estimation techniques for multiple energy portfolios ) would be brilliant again , but please feel free to chose something else that has not been covered yet . i look forward to hearing from you , kind regards , angelika staude director powerisk 2001 tel : 0044 207 915 5675 fax : 0044 207 915 5101 ps : for your information , please find enclosed a list of confirmed speakers for powerisk 2001 . ( see attached file : confirmed speakers . doc )",0 +"Subject: re : hello vince thank you for the update . i will be back in the office january 8 . have a great new year gerry - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , december 21 , 2000 5 : 35 pm to : gsheble @ iastate . edu cc : vince . j . kaminski @ enron . com subject : re : hello gerry , let me review my calendar in the beginning of the next year and i shall e - mail you with a suggested date . my assistant will update my schedule for 2001 in the first week of january and i shall be able to select a date for ypur presentaton . vince kaminski "" sheble , g . b . "" on 12 / 21 / 2000 10 : 43 : 50 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : hello dear mr . kaminski please excuse the cancellation due to illness . the students do not care who they infect near the end of the semester , they just want to get done ! here is my available schedule for next year . i am now overloaded next week with tasks to complete the semester . i do hope that we can reschedule during the first quarter next year . i would note that my schedule is most free for thursday or friday . i could fly out late wednesday night . cordially , gerry teaching schedule m 11 - 12 t and r 10 - 12 and 2 - 4 t 12 - 2 ep & es seminar m 6 - 8 t 6 - 8 w 6 - 8 ( r = thursday ) workshops : jan 12 - 13 des moines jan 26 - 27 des moines feb 9 - 10 des moines ieee wpm conference feb 28 - 31 columbus , ohio",0 +"Subject: meetings next week hi guys , vince talked with christie and they both are available next tuesday ( game day ) at 9 am . can you meet then to start preparing an outline ? also would you be up for a presentation at the research group ' s lunch meeting next thursday ? vince will be out , but you ' ll undoubtably get some interesting questions from others at the meeting , if your up for it . let me know soon , and we can schedule you for next thursday . talk to you later ken",0 +"Subject: congratulations ! congratulations on your promotion to managing director ! it ' s great that your hard work and dedication to enron have been recognized . sherry",0 +"Subject: re : meeting re : wharton strategy jennifer , i am available for 30 minutes on fri , oct 30 . . a meeting at 8 : 30 would work better for me . vince jennifer burns 10 / 24 / 2000 04 : 14 pm to : michele nezi marvin / enron communications @ enron communications , mark palmer / corp / enron @ enron , cindy derecskey / corp / enron @ enron , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , beth miertschin / hou / ect @ ect , christie patrick / hou / ect @ ect , kristin gandy / na / enron @ enron cc : subject : meeting re : wharton strategy lets try for friday , october 27 @ 9 : 00 am , please let me know if you are available . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by jennifer burns / hou / ect on 10 / 24 / 2000 04 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jennifer burns 10 / 23 / 2000 11 : 08 am to : michele nezi marvin / enron communications @ enron communications , sarah mulholland / hou / ect @ ect , mark palmer / corp / enron @ enron , kristin gandy / na / enron @ enron , beth miertschin / hou / ect @ ect , christie patrick / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : meeting re : wharton strategy jeff shankman would like to have a meeting re : wharton strategy . please let me know if you would be available thursday , october 26 @ 3 : 00 . i will get back with everyone to confirm a location . thanks ! jennifer",0 +"Subject: fw : chapter 3 revisions hi grant , ? chris is travelling at the moment , so i ' m contacting you on his behalf with regards to the status of ? the completion of the chapter . ? we are dependent on receiving this as soon as possible , since all the chapters have been typeset and are now in the final stages of the edit process . ? ? please let us know when you can send this over . ? ? also , let us know if we can do anything . ? sincerely , julie brennan ? lacima group ? - - - - - original message - - - - - from : chris strickland to : grant masson cc : julie sent : friday , august 11 , 2000 8 : 49 am subject : re : chapter 3 revisions hi grant , thanks for that . sorry for he delay but i ' ve been away for a few days . timely executon would be good - we have just got the proofs back for all the other chapters from the typesetters . best regards . chris . - - - - - original message - - - - - from : grant masson to : chris strickland sent : wednesday , august 09 , 2000 9 : 14 am subject : re : chapter 3 revisions > > > chris : > > my and ronnie ' s revisions are complete . ? vince is having a statistics guru > colleague review the material for glaring errors . ? he should be sending you the > completed chapter within a day or so . > > regards , > grant . > > >",0 +"Subject: re : 2001 headcount information dawn : i am resending this - i forgot the staffing summary by location . sorry ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 07 / 07 / 2000 03 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - dawn derr @ enron 07 / 07 / 2000 10 : 45 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : 2001 headcount information shirley , get it to me as soon as you can . thanks . dawn shirley crenshaw @ ect 07 / 07 / 2000 09 : 11 am to : dawn derr / corp / enron @ enron cc : subject : re : 2001 headcount information dawn : i apologize , i have not been able to pin vince down . however , he did take it with him this morning ( he will be in prc meetings all day . ) and i told him \ you needed it yesterday . i hope it is not too late . let me know . thanks shirley dawn derr @ enron 07 / 05 / 2000 04 : 09 pm to : shirley crenshaw / hou / ect @ ect cc : subject : 2001 headcount information shirley , i need the headcount information for vince ' s group no later than thursday , july 6 . let me know if this is a problem . dawn",0 +"Subject: fw : wharton resume submission - - - - - original message - - - - - from : kim whitsel [ mailto : kimberly . whitsel . wgo 2 @ wharton . upenn . edu ] sent : friday , december 22 , 2000 6 : 51 pm to : kristin . gandy @ enron . com subject : wharton resume submission summer position under wharton schedule # 1823 - kim whitsel - enron cover letter . doc - kim whitsel - wharton 2 resume . doc",0 +"Subject: introduction - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 28 / 2000 07 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - on 06 / 20 / 2000 03 : 12 : 53 pm to : "" vince j kaminski "" cc : richard . larsen @ effem . com subject : introduction vince : as way of introduction , i wanted to write a bit about mars inc . and then about cds , the unit i head . mars is a private company , considered to be the largest privately owned manufacturing company in the world . mars is not in the habit of disclosing its finances , so the best i could do is refer to forbes ' estimate of $ 15 billion annual revenue and to the profit margins of similar companies between 5 - 12 % . mars is in the business of manufacturing confectionery ( m & m , dove bar , skittles , twix , - all ( r ) ) food ( uncle ben rice ( r ) ) pet food ( pedigree , whiskas waltham ( r ) ) and other products . mars has prospered during the years because of a unique philosophy that emphasizes the long term goals of the company . part of the philosophy is to look for win - win solutions with its suppliers , customers and partners . as can be understood from the nature of the company , a large chunk of its expenses goes towards purchasing commodity like products , and hence the history of researching those commodities and the weather that influences their supply and the demand ( people eat less ice cream in the winter and less chocolate in the summer ) . cds has a history of few decades in forecasting weather and has been very successful , with an envious track record , in helping mars get a competitive advantage in these arenas . cds is a global group ( in 4 countries across two continents ) which supports the purchasing function and the corporate at large in these and other arenas . it is a multidiscipline and multinational team with a lot to offer . not having a ready access to the energy markets , and with a risk profile based on manufacturing expertise , mars has decided to look for potential partners in this area . enron presence in the market place certainly makes it an interesting party to talk to . in talking to enron , we are careful to suggest that mars is not committing to anything at this point , and all we are after is to find out if there is an interest to pursue the opportunity we discussed in the future . i am looking forward to our video conference call . kind regards , avi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - avi i . hauser phd mba cds director 100 international drive mt olive nj 07828 - 1383 + 1 973 691 3664 ( office ) + 1 973 347 8189 ( fax ) + 1 973 727 3622 ( car + slow paging ) hauser @ cdsusa . com",0 +"Subject: model for insurance against cruel oil down side risk fred , i have finished a model we talked about a few days ago . the option we try to price is a digital on on an asian strip . if the average price of the prompt month crude oil in a specified time window falls below the strike price , the option pays a lump sum of money secified by the "" digital payout "" in the model . as a comparison , i also included european option on the asian strip . let me know if you have any questions . zimin x 36388",0 +"Subject: re : agenda for ny mg metals visit i agree with vince . ideally , this visit would supplement rather than duplicate effort . however , on the front end , i would prefer a little overkill to underkill - especially with respect to the var process . i would defer to anjam / tanya ' s opinion as to what is necessary to get an initial comfort level . remember that this is the first cut , but it will need to be refined over time to the point where it is credible enough to force someone to take a position down based on the calculatiion . if this causes some heartburn please refer those people to me . ted vince j kaminski 07 / 14 / 2000 09 : 04 am to : lloyd fleming / lon / ect @ ect cc : richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect subject : re : agenda for ny mg metals visit lloyd , speaking from experience , i think that it ' s critical for tanya and anjam to visit mg in new york and establish direct relationship with technical people . merging two risk management systems requires handling many very technical issues and face to face discussions between it and quants will be very helpful . vince from : lloyd fleming 07 / 14 / 2000 03 : 42 am to : tanya tamarchenko / hou / ect @ ect cc : andreas . barschkis @ mgusa . com @ enron , richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect subject : re : agenda for ny mg metals visit tanya , i think most of your queries can be dealt with on the phone - i ' ll be at mg with andreas today and we ' ll call you . most of these points have already been covered with anjam in any case . i ' m also attaching a file downloaded from mercur ( mg ' s risk aggregation system ) showing monthly total positions for each metal in each entity . you can fairly easily create tables and graph what you want to see . we can talk today about getting a full deal download . regards tanya tamarchenko 13 / 07 / 2000 22 : 45 to : andreas . barschkis @ mgusa . com @ enron cc : dale surbey / lon / ect @ ect , lloyd fleming / lon / ect @ ect , richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , stinson gibner / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect subject : agenda for ny mg metals visit hi andreas , here are the issues we would like to discuss on our thursday meeting in ny : 1 . inputs for options valuation , in particular the origins of volatility curves ; 2 . information on exotic options structures ( existing 3 . the data flow ( are we going to get data from london or ny ) . 4 a . storage of positions information at mg . how to extract the positions info from mg database into spreadsheets . 4 b . existing positions structure for each metal . 5 . introduction to concentrates trading business , key personnel . best regards , tanya & anjam 713 853 3997",0 +"Subject: howard confirmation hi vince , i ' m on vacation from friday ( today ) until tuesday . rachel / london sent me this confirmation last night and think it illicts your attention - did they get it right to meet you satisfaction ? i hope your interview goes well with howard too . it ' s all set . any feedback on the guys from ford credit and citigroup / oxford university ? i own them outright - no other firms involved ! fyi : my fees are always much less on these candidates ( exclusive ownership by myself ) as there are no middlemen involved from these "" other firms "" . i luckily have been attracting very talented candidates with just doing business "" as myself "" rather than mri . i am very encouraged . please check them out , vince . . . as you know - i always send you them first then on to my other clients - if you reject them . bye vince , thank you for the business ! jeff ps - use my cellphone if you want me ( the next 4 days ) for anything ; i ' m here for you - 949 813 2241 candidate ' s name : howard haughton date of interview : tuesday 20 february 2001 time of interview : 2 . 00 pm interviewers : david weekes enron credit sales & marketing mark leahy enron credit sales & marketing bryan seyfried enron credit executive markus fiala enron credit trading robina barker - bennett enron credit syndication ted murphy executive rac each interview will be approximately 45 minutes . address : 40 grosvenor place london swlx 7 en switchboard : 020 7783 - 0000 closest tube / train station : victoria to ask for : david weekes at main reception location map attached ( see attached file : location map . pdf ) i will take this as confirmed unless i hear otherwise from you . if you would like to discuss this please contact me on 020 7783 5677 . regards rachel quirke human resources * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: meeting with vince set for 1 pm monday , april 17 maureen , thank you very much for taking time away from your project to talk with me this morning . since the management decision to close info central , i have been doing small projects that , while necessary , do not require my education , knowledge or research capabilities . i appreciate your suggestion that i speak to vince since i am anxious to return to contributing at a higher level . i am attaching my resume in the hope that it will trigger ideas for possible ways that i can use my abilities in the research department . i have worked as an information specialist for 14 years , doing research for people at all levels in both the pharmaceutical and energy industries . i have focused most heavily on business research , but learn quickly and can branch out in whatever direction necessary for a project . i ' m looking forward to meeting with vince on monday afternoon . thanks again for your help .",0 +"Subject: re : 1 . 00 pm tomorrow ? lauren , 1 : 00 p . m . is fine . 713 853 3848 vince lauren urquhart 05 / 15 / 2000 12 : 08 pm to : vince j kaminski / hou / ect @ ect cc : subject : 1 . 00 pm tomorrow ? hi vince i have just spoken to john . he ' s requested we move your phone call to 1 . 00 pm houston time - 7 . 00 pm uk time . does this suit you ? lauren",0 +"Subject: re : visiting enron may 4 th susan , thanks . it makes sense to call christie and explain the objectives of your visit in may . vince "" susan c . hansen "" on 04 / 06 / 2001 06 : 14 : 10 pm to : vince . j . kaminski @ enron . com cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu subject : visiting enron may 4 th dear vince , this is great news ! donna and i are delighted that you have time to see us on may 4 th . i ' ll be out of the office next week . by copy of this email to my assistant , carol lovell , i will ask her to get in touch with shirley for scheduling as well as directions on where to meet you . we ' ll be glad to meet with christie patrick as well . looking forward to meeting you , susan at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote : > susan , > > thank you for your message . i shall be glad to meet with you on may the > 4 th . > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to > set up the meeting . > > also , for your information , we have recently set up a special unit to > coordinate enron ' s > relationships with the universities . the person running this unit is > christie patrick . > please , feel free to contact her and give my name as a reference . i shall > coordinate the meeting > on may the 4 th with her . > > vince > > > additional information re christie : > > phone : ( 713 ) 853 - 6117 > > email : christie _ patrick @ enron . com > > > > > > "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm > > to : vkamins @ enron . com > cc : > subject : visit from stanford ? > > > dear dr . kaminski , > > let me briefly introduce myself , i am the director of corporate relations > for the school of engineering at stanford university . in this role , i am > always on the watch for ways to bring our faculty together with companies > that have an appetite for engagement with top tier research institutions . > > i believe you know hill huntington , who is a senior researcher with > stanford ' s energy modeling forum . he suggested i get in touch with you for > some ideas about contacts at enron . i ' m in the process of planning a trip > to texas in early may along with my colleague donna lawrence , the > university ' s director of corporate relations . we were hoping to be able to > include a stop at enron on our itinerary . right now it appears that friday , > may 4 th would work best for us but we ' re at the very beginning of our trip > planning . > > the purpose of our visit would be to review the current relationship > between enron and stanford , to give you an overview of current priorities > in the school of engineering , and ask for your help in identifying the best > points of contact . > > i look forward to hearing from you about your availability , > > sincerely , > susan hansen > > > > > susan c . hansen > director , corporate relations > school of engineering > stanford university > stanford , ca 94305 - 4027 > ( 650 ) 725 - 4219 susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: parameter estimation vince , i have put together a parameter estimation model , which is continuation of tanya ' s model . the estimation process is more consistent now . attached are the model and a brief write - up of the methods . if you see any problem / ways to improve it , please let me know . best , alex",0 +"Subject: darden case study on "" the transformation of enron "" sherri : vince kaminski is available from 2 : 00 pm - 5 : 00 pm on tuesday , april 18 . sherri : as a side note , professor bodily was visiting with vince yesterday and was impressed with the pictures that are in each of the elevators - showing enron ' s "" vision and values "" . he asked me if i could possibly find out how he could get copies of the prints . are they available anywhere , and to anyone ? did our graphics dept . do them ? if you have any information , please let me know . thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 30 / 2000 02 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 30 / 2000 02 : 33 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : darden case study on "" the transformation of enron "" shirley , please , provide this info . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 30 / 2000 02 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : sherri sera @ enron 03 / 30 / 2000 12 : 47 pm to : lou l pai / hou / ees @ ees , gene humphrey / hou / ect @ ect , ken rice / enron communications @ enron communications , andrew s fastow / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : karen owens / hou / ees @ ees , bert frazier / hou / ect @ ect , mercedes estrada / enron communications @ enron communications , bridget maronge / hou / ect @ ect , mark palmer / corp / enron @ enron , katherine brown / corp / enron @ enron , fabricio soares / hou / ect @ ect subject : darden case study on "" the transformation of enron "" gentlemen , jeff has asked that each of you make time to meet with professors bruner and bodily regardig the above referenced case ( i have attached a project overview for your review ) . they are scheduled to be in houston on tuesday , april 18 , to begin conducting interviews ( some of which may be videotaped ) . please let me know your availablility on that date . thanks for your help , and please don ' t hesitate to call me ( x 3 - 5984 ) should you need additional information . srs",0 +"Subject: access on the block : international transmission auctions - cera a lert - december 20 , 2000 title : access on the block : international transmission auctions are opening european power markets e - mail category : cera insight cera knowledge area : european power despite an apparent impasse in negotiations among european transmission system operators , regulators , and the european commission in florence , auctions of international transmission capacity ( itc ) in france , the united kingdom , denmark , belgium , italy , austria , switzerland , slovenia , and the netherlands are opening access between countries and paving the way for the single european marketplace . however , the patchwork auctioning of access to itc leaves important issues unresolved . the most significant of these include the potential for gaming , third - party transit , and the allocation of auction proceeds . as they stand , these issues , cera believes , are likely to lead to action at the european level and the eventual imposition of a more integrated scheme . nevertheless , current plans to open most of europe ' s itc represent a watershed of activity that will hasten transparency in the market and determine trade flows and signal transmission investment in 2001 . international auctions are opening markets a major portion of international transmission capacity on the continent will be allocated by auction in 2001 ( see table 1 ) . in cera ' s view auctions for itc are likely to have the greatest impact during 2001 in the following areas : * increasing market transparency . the posting of available transmission capacity on yearly , monthly , and daily bases will facilitate the market ' s efficient usage of scarce interconnector capacity . for the first time , signals for new transmission investment , power flows , and transmission asset valuation will come from the market . * increasing cross - border trade . although auctions may not reduce uncertainty in the marketplace initially , the effect of heightened transparency in access rules and prices will soon work to increase trade . secondary markets for interconnector capacity will add to the number of actively traded power products and work to increase the overall level of trade . ? * increasing price correlation . auctions will replace nonmarket - based allocation methods such as long - term capacity reservation . the dynamic character of shorter - term auctions , combined with an expected secondary market for capacity , should bring access to international capacity in line with the needs of the market . in this way the market will be able to adjust more rapidly to changes in local conditions and thereby work to correlate pricing points . * increasing competition . once players have secured access to itc at a given price , they will be looking to sign supply contracts or integrate the capacity into structured deals . the result could be more aggressive maneuvering on the part of incumbents and new entrants alike , resulting in greater competition at the national level . * reducing the competitiveness of imports . the results of international transmission capacity auctions will determine the competitiveness of imported power into domestic markets . final prices offered for itc will reflect the relative cost of power between markets and work to make cheaper power more expensive to import . * spurring investment in transmission . the money raised through auction could provide transmission companies with the financial capability to invest in upgrading international transmission links . access to international transmission capacity between the netherlands , germany , and belgium in 2001 was auctioned for 63 million euros ( see http : / / www . tso - auction . org for details ) . ? auctions for access into spain , france , and italy are expected to realize a premium for access to highly coveted markets . connecting rather than integrating markets auctions between national grids , or more accurately commercial grids , are a pragmatic approach to the problem of granting access to scarce international transmission capacity on an open and transparent basis . the auctions will open access to interconnectors and at the same time reward transmission system operators . even so , the proposed approaches are not likely to satisfy market players or the stated objectives of european policymakers . in cera ' s view the following issues may eventually bring down the hammer on itc auctions : * third - party transit . the bilateral nature of itc auctions perpetrates the problem of tariff pancaking and discriminates against trade involving transit through a third grid . this is ultimately inconsistent with the european commission ' s objective of a single european power market . the fact that physical power flows do not follow contractual flows and almost always transit third - party grids further weakens the legitimacy of the approach . * transaction - based scheme . although still transactional in nature ( tied to a specific deal ) , auctions fall within the european commission ' s stated preference for market - based mechanisms for allocating international transmission capacity . it remains to be seen how successful this approach is in achieving integration of national markets . action at the european level could move allocation of itc in the direction of nontransactional mechanisms such as market splitting , counter trading , or redispatching . * gaming of auctions . auctions will in theory allocate access to transmission on a nondiscriminatory market basis to those that value it most . in practice it remains to be seen if gaming can be avoided . even though most of the auctions have placed limits on ownership of transmission capacity , tactical maneuvers could bid up transmission prices as players act to raise the price of imported power . * allocating auction proceeds . one likely outcome of auctions will be the transfer of profits between players as transmission owners recoup some of the rents currently reaped by other players . this will works to raise the value of transmission assets relative to generation , suppliers , or traders . it remains to be seen how funds from auctions will be allocated among transmission companies and the grid , as transmission is still currently subject to monopoly regulation . * * end * * come shoot the rapids with us at ceraweek 2001 , "" shooting the rapids : strategies and risks for the energy future "" in houston , february 12 - 16 , 2001 ! ? for more information and to register , please visit http : / / www 20 . cera . com / ceraweek / to make changes to your cera . com account go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: msl 50 confirmation thank you for your involvement with the 2000 isuzu msl 50 bike tour , a texas cycling tradition . check the bottom of this email for a custom donation letter that you can use for on - line donations in your name . here is a copy of the information you submitted : isuzu msl 50 contribution confirmation contribution on behalf of : john norden / jnorden @ enron . com description : donations amount : $ 25 . 00 order _ id : 9910 name : wincenty j . kaminski company : enron addressl : 1400 smith address 2 : ebl 962 city : houston state : tx zip : 77002 country : united states of america phone : 281 367 5377 e - mail : vkamins @ enron . com account name : wincenty j . kaminski card type : visa total : $ 25 . 00",0 +"Subject: re : insurance derivs steve , i have a book edited by helyette regarding insurance derivatives . i shall make a few copies of the most important articles for you . vince steven leppard 11 / 06 / 2000 05 : 39 am to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : gillian lockwood / lon / ect @ ect subject : insurance derivs vince , vasant i ' ve just been speaking to gillian lockwood from our tax group , who is interested in your work on ins . derivs . have you any general articles on the principles of pricing these instruments ? many thanks , steve",0 +"Subject: cera monthly summary - - july 2000 - cera monthly summary cera monthly summary : sent wed , august 02 , 2000 title : cera monthly summary - - july 2000 author : cera e - mail category : monthly summary product line : monthly summary , url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1298 , table of contents asia pacific energy after the panic : east asia three years later url : http : / / www . cera . com / client / ap / pr / 070700 _ 10 / ap _ pr _ 070700 _ 10 _ ab . html state government finances in india : a looming crisis or a driver for accelerated energy sector reform ? url : http : / / www . cera . com / client / ap / db / 070700 _ 15 / ap _ db _ 070700 _ 15 _ ab . html cera insight  * china ' s power sector : uneven recovery , uneven reform url : http : / / www . cera . com / client / ap / alt / 070700 _ 13 / ap _ alt _ 070700 _ 13 _ ab . html cera insight : the second phase of deregulation in japan ' s power industry . . . url : http : / / www . cera . com / client / ap / db / 072500 _ 16 / ap _ db _ 072500 _ 16 _ ab . htm climate change and environment cera watch : moving toward more diversified strategies url : http : / / www . cera . com / client / cce / wch / 072500 _ 18 / cce _ wch _ 072500 _ 18 _ ab . html energy & e - business retail energy : pioneering a nonenergy brand in europe url : http : / / www . cera . com / client / e 2 / alt / 071300 _ 15 / e 2 _ alt _ 071300 _ 15 _ ab . html disruptive technology , industry structure , and competitive advantage url : http : / / www . cera . com / client / e 2 / pr / 072000 _ 10 / e 2 _ pr _ 072000 _ 10 _ ab . html energy and e - business : reflections on the cera summit url : http : / / www . cera . com / client / e 2 / db / 072800 _ 15 / e 2 _ db _ 072800 _ 15 _ ab . html eurasia energy russia ' s governors could make or break energy industry reform url : http : / / www . cera . com / client / fsu / db / 071000 _ 15 / fsu _ db _ 071000 _ 15 _ ab . html turkish ipps near approval url : http : / / www . cera . com / client / fsu / alt / 072100 _ 16 / fsu _ alt _ 072100 _ 16 _ ab . html european gas running fast to stay still : gas prices in central europe url : http : / / www . cera . com / client / eg / alt / 070300 _ 15 / eg _ alt _ 070300 _ 15 _ ab . html signposts to a high demand path for natural gas : . . . url : http : / / www . cera . com / client / eg / alt / 070700 _ 11 / eg _ alt _ 070700 _ 11 _ ab . html retail energy : pioneering a nonenergy brand in europe url : european gas clients : european power first cracks in "" fortress france "" : how long before the french market opens ? url : http : / / www . cera . com / client / ep / db / 071100 _ 10 / ep _ db _ 071100 _ 10 _ ab . html retail energy : pioneering a nonenergy brand in europe url : http : / / www . cera . com / client / ep / alt / 071300 _ 15 / ep _ alt _ 071300 _ 15 _ ab . html turkish ipps near approval url : http : / / www . cera . com / client / ep / alt / 072100 _ 16 / ep _ alt _ 072100 _ 16 _ ab . html forum for it strategy white paper : url : http : / / www . cera . com / client / fits / pr / 073100 _ 12 / fits _ pr _ 073100 _ 12 _ ab . html summary of discussions : url : http : / / www . cera . com / client / fits / pr / 072800 _ 15 / fits _ pr _ 072800 _ 15 _ ab . html global energy middle east peacemaking : what comes next ? url : http : / / www . cera . com / client / ge / alt / 072600 _ 18 / ge _ alt _ 072600 _ 18 _ ab . html latin america energy mexico elections : the pan triumvirate url : http : / / www . cera . com / client / la / alt / 070300 _ 16 / la _ alt _ 070300 _ 16 _ ab . html brazil downstream oil logistics : opportunities with open access ? url : http : / / www . cera . com / client / la / db / 072500 _ 19 / la _ db _ 072500 _ 19 _ ab . html argentine power markets : june prices rise with increased demand . . . url : http : / / www . cera . com / client / la / alt / 072700 _ 12 / la _ alt _ 072700 _ 12 _ ab . html coal bed methane in western canada - - a sleeping giant ? url : http : / / www . cera . com / client / nag / db / 070600 _ 12 / nag _ db _ 070600 _ 12 _ ab . html north american gas monthly briefing : the pressure remains url : http : / / www . cera . com / client / nag / alt / 071400 _ 15 / nag _ alt _ 071400 _ 15 _ ab . html a quiet energy crisis ( this op - ed article ran in the washington post on july 21 , 2000 ) url : http : / / www . cera . com / client / nag / alt / 072600 _ 16 / nag _ alt _ 072600 _ 16 _ ab . html north american electric power a quiet energy crisis ( this op - ed article ran in the washington post on july 21 , 2000 ) url : http : / / www . cera . com / client / nap / alt / 072600 _ 16 / nap _ alt _ 072600 _ 16 _ ab . html refined products monthly briefing : refined products line  * north american markets url : http : / / www . cera . com / client / rp / alt / 071400 _ 18 / rp _ alt _ 071400 _ 18 _ ab . html refined products line  * european markets url : http : / / www . cera . com / client / rp / alt / 072000 _ 14 / rp _ alt _ 072000 _ 14 _ ab . html market update url : http : / / www . cera . com / client / rp / alt / 072700 _ 17 / rp _ alt _ 072700 _ 17 _ ab . html retail energy forum cera insight : the second phase of deregulation in japan ' s power industry . . . url : http : / / www . cera . com / client / ref / db / 072500 _ 16 / ref _ db _ 072500 _ 16 _ ab . html weathering the summer price volatility and highs - - how will retail marketers fare ? url : http : / / www . cera . com / client / ref / alt / 072700 _ 16 / ref _ alt _ 072700 _ 16 _ ab . html western energy power market caps : lower prices at higher risk ? url : http : / / www . cera . com / client / ce / alt / 070700 _ 16 / ce _ alt _ 070700 _ 16 _ ab . html the west : keeping its fingers crossed url : http : / / www . cera . com / client / ce / alt / 072600 _ 16 / ce _ alt _ 072600 _ 16 _ ab . html world oil oil market politics : the saudi dilemma url : http : / / www . cera . com / client / wo / alt / 070600 _ 18 / wo _ alt _ 070600 _ 18 _ ab . html after the panic : east asia three years later url : http : / / www . cera . com / client / wo / pr / 070700 _ 10 / wo _ pr _ 070700 _ 10 _ ab . html opec : arguing over output url : http : / / www . cera . com / client / wo / alt / 071800 _ 18 / wo _ alt _ 071800 _ 18 _ ab . html * * end * * please follow url at top of page for a listing of the above reports with associated summaries and links to full reports . note : should the above url not work , please use the following url : account changes to edit your personal account information , including your e - mail address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www . cera . com / tos . html questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: from vicky windsor dear vince , how are you ? well i hope . i hope you don  , t mind me writing to you . you may remember that 5 months ago i left risk publications and moved to a charity . having been here for only a few months , i have decided that this job is not for me ( i miss the buzz of a corporate office ) and i have decided to move back into the corporate sector . because of my previous experience and knowledge of the energy sector , i am very interested in moving into this area . i have always thought that it would be great to work for enron because it is such a dynamic company and i am planning to approach the london office to discuss any opportunities , which might be available . i am particularly interested in product marketing and research , although i am very open - minded at the moment . i wondered whether you could recommend the right person to speak to in london . i know that you are incredibly busy , but any help you can give me would be fantastic vince . thanks and best regards , vicky windsor get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com .",0 +"Subject: offsite meeting - - great divide lodge - - invited guest list gentlemen : attached please find the "" proposed "" final invitees list for the technical , research , and operations offsite meeting to be held april 27 - 29 , 2000 at the great divide lodge in breckenridge , colorado . i am working with shirley crenshaw to secure cost - efficient travel and meeting arrangements for the entire group . in order to secure a group rate , we must make sure we have a "" final headcount "" in place . please let me know by tuesday , march 28 th at 12 : 00 noon if you have any additions or corrections to the attached list . many thanks in advance for your prompt attention !",0 +"Subject: re : infocast ' s valuing electric power assets and companies : a real options perspective britta , thanks for your message . i have several commitments at the time of the conference and have to decline with regret . vince "" britta bothe "" on 04 / 12 / 2000 03 : 52 : 46 pm please respond to to : cc : subject : infocast ' s valuing electric power assets and companies : a real options perspective dear mr . kaminsky , as i mentioned on your voice mail , infocast is going to host an  & valuing electric power assets and companies : a real options perspective  8 conference to be held on july 31 - august 2 , 2000 , in chicago , il - i would like to explore your or your organization ' s possible participation at this event with you . this conference has been designed to bring together industry professionals , like you , to provide the latest details on a "" real options "" approach to electric power asset valuation . i have attached a draft program outline for your review . if you or someone else at your company is interested in presenting on one of the topics please let me know . i truly appreciate your taking the time to review the conference schedule and hope that you will consider participating . i am running behind schedule in finalizing this program . i will call you on tomorrow to follow up with you on this invitation . in the meantime , if you have any questions or suggestions , please do not hesitate to contact me at ( 818 ) 888 - 4445 , ext . 30 . i hope you can join us for this event . sincerely , britta bothe infocast conference manager - ea & cv , program outline , scenario 1 . doc",0 +"Subject: interview with hao peng hello kathy : the research group would like to bring hao peng in for an interview . his resume is attached . the following would be included in the interview schedule . since all of them are in the research group ( with the exception of hr ) we can have the interviews in ebl 938 . vince kaminski stinson gibner zimin lu paulo issler grant masson krishna krishnarao vasant shanbhogue hr ? mr . peng ' s availability is flexible with the exception of may 2 and may 4 ( he has finals ) . if you need anything else , please let me know . thanks ! shirley - cover - enron . doc - resume - gsia . doc",0 +"Subject: wharton trip january 18 , 2001 jeff and vince . . . "" fyi ' ' . . . christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 12 / 19 / 2000 09 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - melinda mccarty @ enron 12 / 19 / 2000 03 : 05 pm to : christie _ patrick @ enron . com cc : subject : wharton trip january 18 , 2001 cp - fyi - attached is the memo that i faxed to the parkplace warwick . i copied donna piazze at wharton also . maria",0 +"Subject: p . v . krishnarao ' s expenses good afternoon sandeep : i sent krishna ' s expenses for his recent trip to our accounting dept . this morning and expensed them to the research group ' s co and rc # . however , we need to be reimbursed for these expenses and i would like to know the best way to do this . our accounting dept . thought we should just send an invoice with the back up material to dabhol power co . asking them to cut a check made payable to enron corp . and then it would be credited to our co # and rc # . please let me know if this is acceptable , and if so , who the invoice should be made out to and where i should send it . i appreciate your assistance in this matter . have a great day ! shirley crenshaw 713 - 853 - 5290",0 +"Subject: siam conference dear mr . kaminski , ? i was one of the participants of the siam conference which was held last week - end , and i have very much enjoyed your presentation . at the end of the session , i was hoping to talk to you , but unfortunately you were already gone . you said that if we were interested , you could e - mail a copy of your talk . i would appreciate if you could send a copy to this e - mail address . ? i am a mathematics ph . d . student at texas a & m university and i will be graduating this august . i am very much interested in working in the modeling of energy markets . can you please tell me whom i should send my resume , and who i should contact in your company about a possible position in your research group . ? thank you for your time . ? sincerely ? g . aysu bilgin texas a & m university department of mathematics ? get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: request submitted : access request for amitava . dhar @ enron . com you have received this email because the requester specified you as their manager . please click approval to review and act upon this request . request id : 000000000011185 request create date : 12 / 21 / 00 4 : 20 : 10 pm requested for : amitava . dhar @ enron . com resource name : vpn resource type : applications",0 +"Subject: re : fw : chapter 3 revisions - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 08 / 16 / 2000 03 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : grant masson 08 / 16 / 2000 03 : 57 pm to : "" julie "" @ enron cc : subject : re : fw : chapter 3 revisions julie : unfortunately , our reviewer has not come back to us with comments , so i am sending you the final version without the benefit of review . the attached zipped file contains the second half of the chapter for which i was responsible . vince will send you his half separately . putting them together should be a simple matter of cut and paste , assuming that vince has not changed his equation , figure , or table numbering . i presume chris will be reading through the chapter once again for editorial reasons . there is one place where i would ask him for specific redaction : table 3 . 6 "" model specifications "" on page 14 / 15 has a column labeled "" equation reference "" . some cells are blank because the equations specified have not been referenced previously in the parts i have written . nevertheless , the concepts are surely introduced elsewhere in the book , and it may be helpful for chris to insert the appropriate reference in this table . alternatively , one could simply delete the column . if i can help in any way , please do not hesitate to contact me . w ) 713 853 4768 h ) 713 664 7260 work email : grant . masson @ enron . com personal email : gmasson @ email . com regards , grant .",0 +"Subject: it resources guys , in response to the offsite , beth perleman is now a dedicated ena resource on the it side of the business . she will be joining the ena management team of which you are all a part . she will participate in the friday management meeting to address it issues and opportunities . on friday may 18 th , beth will go over her management team and her available resources . at every friday meeting , she will present the current project queue ( with associated cost / capital budget and sponser ) and the management team will set priorities and necessary incremental resources . regards delainey",0 +"Subject: wti model stinson , this is the latest wti model for open - close trading . zimin",0 +"Subject: re : cairn gas purchase bid doug , i shall be glad to meet you and help you with the project . my assistant will call you to set up a meeting latter this week . vince douglas s parsons @ enron _ development 08 / 15 / 2000 08 : 05 am to : vince j kaminski @ ect cc : subject : re : cairn gas purchase bid vince , i ' m following up on our conversation late last week and i ' m interested to see what your group can advise , per doug leach ' s recommendation . as you can see he is raising a major red flag in regards to our non - binding offer to cairn . since , it was late the other night i didn ' t touch base with sandeep kohli , but bobby and i are probably the most knowledgeable in regards to the indian gas market . please let me know what information you may need from us to provide some guidance . regards , doug - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on 08 / 15 / 2000 07 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bobby farris 08 / 14 / 2000 10 : 19 pm to : douglas s parsons / enron _ development @ enron _ development cc : subject : re : cairn gas purchase bid there is no harm in seeing what kaminski ' s group will advise . do you have any problem in contacting them ? bobby doug leach @ ect 08 / 14 / 2000 07 : 45 am to : douglas s parsons / enron _ development @ enron _ development cc : marc de la roche / hou / ect @ ect , bobby subject : re : cairn gas purchase bid i strongly disagree with the pricing and structure of your non - binding offer to cairn . this reminds me of the debacle in brazil . you should have contacted vince kaminski ' s research group as we talked about before an offer was made . this is a bad deal . douglas s parsons @ enron _ development 08 / 12 / 2000 01 : 51 am to : doug leach @ ect , marc de la roche @ ect cc : subject : cairn gas purchase bid doug & marc , fyi , please let me know if you think we ' re totally off base . i appreciate your help . regards , doug - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on 08 / 12 / 2000 01 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - douglas s parsons 08 / 11 / 2000 06 : 24 am to : bobby farris / enron _ development @ enron _ development cc : f b virani / enron _ development @ enron _ development , ujjwal dey / enron _ development @ enron _ development , nilesh subject : cairn gas purchase bid bobby , after meeting with cairn today in delhi , my perception is that our offer was received well . they were more open and relaxed then they were on wed . morning and made several encouraging comments about our price range , ( once we talked through the price movements ) , and the seriousness of our gas related activities on the west coast of india , in light of the ioc agreement . i think the overall package is attractive to them and no serious objections were raised . we did talk to some extent about the guarantees , but we didn ' t get too far and they ' re willing to accept at this point that what ' s acceptable to the lng suppliers , should be suitable for their needs . however , they would like to understand the corporate structure and assets of enron energy marketing a little better and i told them i would get back to them on that point . david and ajay were up in hazira yesterday looking at some property for their gas treatment facility , which apparently is across the road from pipeline access . while there they went and looked at shell ' s proposed lng site after walking the last 1 km , inaccessible to their 4 wd vehicle and not surprisingly found a beach . in summary , here is what we offered on a non - binding basis : six year production plateau 85 % top $ 3 . 67 / mmbtu net , at a base of $ 18 / bbl brent , with point of sale at the tail - end of the gas processing plant floor & cap of $ 15 . 50 - $ 27 . 00 / bbl price movement : + / - $ 1 . 00 / bbl from the $ 18 / bbl base price ( on a 3 mo . rolling average ) equals + / - $ 0 . 145 / mmbtu fixed on a quarterly basis guarantees : same protection we ' re providing the lng suppliers under the trust retention account i appreciate everyone ' s help in submitting this offer . thanks , doug",0 +"Subject: invoice for ordered papers you have ordered the following papers : - wp w 7613 foundations of technical analysis : computational algorithms , statistical inference , and empirical implementation - wp w 6250 pricing and hedging derivative securities in incomplete markets : an e - aritrage model the total cost ( excluding shipping ) is : $ us 10 shipping address : if you ordered papers for electronic delivery and experienced problems downloading them , browse the following url ( s ) to download your paper orders . the url ( s ) are valid for 7 days . if you receive duplicate bills , please send a note to .",0 +"Subject: energy book vl . 0 vince : i have rewritten the paragragh for chapter 3 . please read and return your comments . thanks , grant . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 02 / 16 / 2000 02 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chris strickland on 02 / 15 / 2000 05 : 28 : 42 am to : grant masson @ ect , vkamins @ ect cc : subject : energy book hi grant , hope all is well with you . i trust you got my message via the voicemail that ileft with vince late friday afternoon about my inability to travel - i ' m trying to rearrange my trip for a couple of week ' s time when my ear has cleared up , and i look forward to meeting with you one day . i wrote to vince last week asking for a favour , but i ' m not sure ifhe is there in houston . i know that you guys are probably very busy but i was wondering if you can write a few sentences for me . i ' m sending out some sample chapters to the people who responded positively ( all of them ! ) to my request for some feedback on the book . chapter 1 has an ' overview ' of the book with just a couple of sentences on each chapter . could you please write a sentence or two for your chapter ? i ' m including what i have already written ( although i think it has changed slightly from this version ) so that you can see the style . many thanks and best regards . chris . 2 overview of this book this book aims to provide an in - depth understanding of the pricing and risk management of energy derivatives . in the remainder of this chapter we give an overview of the fundamental principals needed to model and price energy assets , and which underlie the rest of the book . as well as introducing the techniques that underlie the black - scholes modelling framework we discuss the numerical techniques of trinomial trees and monte carlo simulation for derivative pricing which are used extensively later in the book . in chapter 2 we analyse spot energy prices . apart from describing empirical prices we propose a number of processes that can be used to model the prices . we look at the well - know process of gbm as well as mean reversion , stochastic volatility and jump processes , discussing each , and showing how they can be simulated and their parameters estimated . chapter 3 , written by vince kaminski , grant masson and ronnie chahal of enron corporation , discusses volatility estimation in energy commodity markets . this chapter builds on the previous one . it examines in detail the methods , merits and pitfalls of the volatility estimation process assuming different pricing models introduced in chapter 2 . examples from crude , gas , and electricity markets are used to illustrate the technical and interpretative aspects of calculating volatility . chapter 4 examines forward curves in the energy markets . although such curves are well understood and straight forward in the world debt markets the difficulty of storage in many energy markets leads to less well defined curves . what we do in this chapter chapter 5 presents an overview of the common and not - so - common derivative structures in the energy markets and discusses their uses . examples of products analysed in this chapter include a variety of swaps , caps , floors and collars , as well as energy swaptions , compound options , asian ( or average rate ) options , barriers , lookbacks , and ladder options . chapter 6 investigates single and multi - factor models of the energy spot price and the pricing of some standard energy derivatives . closed form solutions for forward prices , forward volatilities , and european option prices are derived and presented for all the models in this chapter including a three factor stochastic convenience yield and interest rate model with jumps . chapter 7 shows how the prices of path dependent and american style options can be evaluated for the models in chapter 6 . simulation schemes are developed for the evaluation of european style options and applied to a variety of path dependent options . in order to price options which incorporate early exercise opportunities , a trinomial tree scheme is developed . this tree is built to be consistent with the observed forward curve and can be used to price exotic as well as standard american style options . chapter 8 develops a new methodology for valuing energy options based on modelling the market observed forward curve . the approach results in a multi - factor model that is able to capture realistically the evolution of a wide range of energy forward curves and where the user defined volatility structures can be of an extremely general form . closed - form solutions are developed for pricing standard european options and efficient monte carlo schemes for exotic options . the chapter finishes with a discussion of the valuation of american style options . chapter 9 focuses on the risk management of energy derivative positions . in this chapter we discuss the management of price risk for institutions that sell options or other derivatives to a client and who is then faced with the problem of managing the risk through time . we begin with delta hedging a portfolio containing derivatives and look at extensions to gamma hedging - using the models from chapters 5 and 7 . the general model of chapter 7 ideally suited to multi - factor hedging and this is also discussed . chapter 10 looks at the key risk - management concept of value at risk applied to portfolios containing energy derivative portfolios . after discussing the concept of the measure , we look at how the key inputs ( volatilities , covariances , correlations , etc ) can be estimated . we then compare the fours major methodologies for computing var ; delta , delta - gamma , historical simulation and monte - carlo simulation . finally , we look at testing the var estimates for various underlying energy market variables .",0 +"Subject: sharad ' s houston visit sharad as expected we didn ' t get time to discuss in detail what to do in houston . we have discussed the subject informally , but i ' m laying it out here for clarity , and for vince / stinson ' s information . here are my thoughts : 1 . exotica . this is the top priority , as you ' d rightly identified yourself . a . learn how to build xlls . b . catalogue functions in houston exotica not yet available in london . c . catalogue differences between inputs to london and houston exotica functions . d . produce london xll that allows current function calls to be used where possible , and incorporates new functions . e . update documentation as appropriate . if you do nothing else in your two weeks , i ' ll be very happy with this . main contacts are paulo and zimin . 2 . understand american monte carlo ( amc ) . the aim is to get a feel for amc ' s characteristics . before we embark on the use of amc for real option valuation , i ' d like to understand how it behaves for financial options . i suggest something like the following : a . produce amc code for single gbm for american option . compare greeks against those from appropriate tree methods . b . two gbm spread option model , to compare against 1 - d numerical integration method . although the "" american "" bit of amc isn ' t going to be used here , it will be interesting to think about the bucketing issue in price / payoff space and , again , the greeks . c . some form of mean reverting model , preferably two factor . d . hjm for pure financial option valuation . if you get somewhere on a - d , and amc behaves sensibly on pure financial models , then i ' ll be very keen to roll it out for real option valuations . vince / stinson - since i ' m expecting the worst from it i . t . o . email support , would you be good enough to print this email out and hand it to sharad ? many thanks , steve",0 +"Subject: a applicable model kim , after yestersday ' s meeting , i ' ve come up with an idea which is applicable to the zone ef and seems also to be applicable to the broader area . the model assumes that if there are positive spreads of energy products between pairs of locations , we can always find the possibilities of swaptions . this assumption , as discussed with jim and sean , is a reasonable approximation . i suggest that the prototype be built up at this model if you think that it is rational . if you interested in the model , i will explain it to all of you . best regards , youyi",0 +"Subject: gone tuesday vince , a reminder that i ' m gone on tuesday to spearman . status of projects : 1 . compound option for power structuring ( bernie , edith cross , nick ? ) alex has finished the model . paulo has done some validation so we can probably release it . this is will be used for an exotic book , so we may have to help with var interface , etc . 2 . followed up with laine borgman on dg contract . we still need legal ' s sign off . 3 . left a message and email about tom barkley with molly magee and told tom that an offer would be coming by next week .",0 +"Subject: re : mid - year 2000 performance evaluation due - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 11 / 2000 07 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 08 / 11 / 2000 07 : 49 am to : "" perfmgmt @ enron . com "" @ enron cc : subject : re : mid - year 2000 performance evaluation due i haven ' t received yet the final performance evaluation results . the usual practice is to defer the reviews till the final summary rankings are available . please , let me know when i can expect it form the hr . thanks . vince kaminski "" perfmgmt @ enron . com "" < perfmgmt on 08 / 10 / 2000 05 : 16 : 14 pm to : vkamins @ enron . com cc : subject : mid - year 2000 performance evaluation due sep 01 , 2000 the above date is when the mid - year 2000 performance evaluation forms for directors and below are due in human resources . if you have not already done so , supervisors should begin the process of giving feedback to their employees . the evaluation forms used to provide feedback to the employee can be obtained via the performance management system ( pep ) . to download the evaluation forms from pep , please follow the steps below : 1 . log into pep at http : / / pep . enron . com . 2 . under supervisor services , click supervisor evaluation forms . 3 . right - click on each employee and choose ' save target as . . . ' or ' save link as . . . ' 4 . select your own personal directory , choose a file name to save to and click ' save ' . 5 . repeat for each employee . 6 . now you can complete your evaluation forms from your personal directory and will not have to access pep to finalize the form . upon completion , please forward the signed evaluation forms to your hr representative no later than friday , september lst 2000 . if you have any questions , please contact the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com your employees that should receive mid - year evaluations are listed below : crenshaw , shirley j ganjoo , shalesh gibner , peyton s kollaros , alexios krishnarao , pinnamaneni v masson , grant s raymond , maureen j roberts , michael a sergeev , mikhail shanbhogue , vasant vernon , clayton j",0 +"Subject: a computer and internet connection for you and your family as you know , technology is critical to enron ; it drives our success and will continue to do so in the future . technology has helped enron create new businesses like enron broadband services and enron net works , and it is responsible for applications such as enrononline and enroncredit . com . you  , ve seen what technology can do at work . now we want you and your family to realize its benefits at home . with that in mind , we are excited to let you know that we are introducing the clickathome program , which will give each employee a computer for use at home . where technology permits , we will also subsidize an internet connection . with the click of a mouse , a home computer plus internet access will put a world of internet knowledge at your family  , s fingertips . we have just signed an agreement with dell computer corporation to provide the computer hardware . we wanted to let you know about the program now in case you and your family were considering the purchase or upgrade of a home computer or internet connection in the next few months . the scope of clickathome includes the following : ? basic package : dell desktop computer with a high - speed processor , floppy disk drive , mouse , speakers , monitor , modem , cd - rom drive and windows 2000 software . employees will have the option to receive a subsidized internet connection , including broadband , where commercially available . ? participation : this program will be available to active regular full - time and regular part - time employees of enron and its wholly owned subsidiaries ; however , employees of some enron companies ( portland general electric , eott , enron facility services ) may not be able to participate due to legal , accounting , tax , labor or business reasons . eligibility includes being employed at the time of implementation . ? timing : u . s . employee sign - up will begin in early 2001 , with delivery of the equipment and internet connection to follow shortly thereafter . delivery of equipment to participating non - u . s . employees is targeted for late 2001 . details about this program are still being finalized . to address some of your initial questions , we  , ve posted a question - and - answer document on http : / / clickathome . enron . com . we will schedule an espeak session in the near future where you will have an opportunity to ask questions . or , you can submit your questions and comments to clickathome @ enron . com . we are excited to extend our investment in technology to you and your family . we believe this program takes communication at enron to a new level by creating endless possibilities for you to experience and participate in the broadband internet revolution . it is just another reason why we believe enron is a great place to work .",0 +"Subject: entouch newsletter business highlights us natural gas teams the us natural gas marketing originations teams have had a successful lq 2001 . in addition to mid market activity led by fred lagrasta , new origination desk heads and marketing teams have been set up across the us and are led by the following : west gas origination - barry tycholiz , central gas origination - laura luce , east gas origination - frank vickers . these teams have made significant inroads in 2001 , focusing on customer coverage , new accounts , transportation syndication , risk management products and market intelligence . all of these individuals are open to any questions regarding the new businesses . siebel summary eim ' s ability to rapidly transform its designated forest products and steel markets is dependent upon its ability to effectively manage the market participants and accelerate their adoption of eim ' s business strategy . to achieve this objective , eim will implement siebel sales enterprise , a customer - focused centralized database that effectively leverages all information learned about our customers and enables sharing of this information throughout the front , mid and back offices . siebel is designed to help in - house and mobile sales professionals in large organizations manage accounts , contacts , activities and opportunities associated with the sales cycle . eim fundamentals is leading the siebel implementation effort . in the news enron is hosting the new york energy risk management seminar at the st . regis hotel in new york city on april 5 , 2001 . topics include : power outlook , natural gas outlook , and weather risk management . to rsvp , contact laura pena at x 3 - 5376 . welcome new hires egm - sherman franzen , fariba karimi , ryan krogmeier , lawrence marcus eim - ronald barnes , paul hanks , chad ihrig , stella pedroza , linda silva ena - hagar kedem , steven merriss , courdney williams , diane fellers transfers ena  ) tammie schoppe , lynna kacal , johnna kokenge , karen jones , stuart zisman , anne labbe egm  ) justin cornett , george thomas , richard yeboah , phi khanh wolfe , alan harvey , philip berry , ethan schultz , sanjeev khanna , mingcheng lian nuggets & notes "" we have to move paper , make money and move the industry . "" - - rodney malcolm , vice president / forest products eim congratulations to angela and chris connelly , manager in coal trading . they are the proud parents of nicholas connelly , born on march 17 and weighed 7 lbs . 11 oz . ( rumor has it that at 48 hours of age , he had more hair than his father ! ) congratulations to carmen and glenn wright , director in steel origination who welcomed little lauren nicole born march 12 . she weighed in at 7 lbs . 13 oz . and debuted with a full head of hair and "" making lots of noise . "" legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: the spreadsheet for talon deal vince , here is the spreadsheet for your review . thanks . rakesh",0 +"Subject: re : storage meeting dear rex , i believe there might be a few additions to this core group . i have spoken with sherron watkins and she is handling the storage side of the deal from product development perspective ( john bloomer ' s team ) and so she would need to be a part of this core group . i am trying to determine who else is involved with storage within ebs so that we don ' t replicate our efforts . i am hoping that after tomorrow ' s meeting we will have a better picture of how to go forward on this project . please let me know if you need any further information regarding this project . thank you very much for your interest and i look forward to meeting you in the near future . sincerely , shalesh ganjoo rex _ shelby @ enron . net on 03 / 09 / 2000 01 : 52 : 25 pm to : shalesh . ganjoo @ enron . com , mark _ s _ palmer @ enron . net cc : jim _ crowder @ enron . net subject : re : storage meeting shalesh , mark - - thanks for pulling this together . is the core team mark , mary , kara , mike , virawan , and shalesh ? i know that there is a lot of interest in this topic , but you folks will need to carefully control the noise level from all the input . let me know how i can help . best regards . - - rex shalesh . ganjoo @ enron . com on 03 / 09 / 2000 01 : 05 : 56 pm to : mark s palmer / enron communications @ enron communications , jim crowder / enron communications @ enron communications , jean mrha / enron communications @ enron communications , kara knop / enron communications @ enron communications , stinson _ gibner @ enron . com , vince _ j _ kaminski @ enron . com , david cox / enron communications @ enron communications , shalesh . ganjoo @ enron . com , john bloomer / enron communications @ enron communications , john griebling / enron communications @ enron communications , richard reichardt / enron communications @ enron communications , scott yeager / enron communications @ enron communications , david berberian / enron communications @ enron communications , rex shelby / enron communications @ enron communications , mike haney / enron communications @ enron communications , ravi thuraisingham / enron communications @ enron communications cc : subject : re : storage meeting ladies and gentlemen , stinson just pointed out that i forgot to mention that the meeting is scheduled for tomorrow ( 10 th of march 2000 ) between 2 : 30 pm and 4 : 30 pm . it may seem like a very short notice ; however , we ( mark , mary , kara , mike , virawan and myself ) had initially set this time and date last week . in the future i will make sure that everyone is notified early . sorry for any inconvenience this may have caused . thank you . shalesh ganjoo",0 +"Subject: re : approval is overdue : access request for paul . d . thomas @ enron . com the system will not allow me to view this request , saying that it has been assigned to you . i have left a message with the admin who originated these requests . if i don ' t hear back from her today , i think we should just deny all of them . i earlier sent emails to the individuals named asking what data they needed to access and none of them responded . - - stinson vince j kaminski 01 / 31 / 2001 07 : 45 am to : stinson gibner / hou / ect @ ect cc : subject : approval is overdue : access request for paul . d . thomas @ enron . com stinson , any resolution on this one ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001 07 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - arsystem on 01 / 30 / 2001 07 : 17 : 35 pm to : "" vince . j . kaminski @ enron . com "" cc : subject : approval is overdue : access request for paul . d . thomas @ enron . com this request has been pending approval for 2 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000015793 approver : stinson . gibner @ enron . com request create date : 1 / 29 / 01 9 : 48 : 41 am requested for : paul . d . thomas @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read ] resource type : directory",0 +"Subject: re : our discussion mike , there might be a place for steve in our unit supporting ees . i shall forward the resume to my associates supporting the facility management effort . thanks for thinking about us . vince p . s . krishna , osman , can you take a look at the attached resume ? steve has no finance background but his engineering background is very strong . vince michael l miller @ enron _ development 02 / 17 / 2000 07 : 52 am sent by : michael linn miller @ enron _ development to : vince j kaminski @ ect , stinson gibner @ ect cc : aspijk @ texas . net subject : our discussion vince & stinson , i was given your names by lynn dunphy in recruiting and am taking the liberty of forwarding you the attached cv . steve roeder is a former collegiate swimmer and currently coach of the master ' s swimming program in the woodlands ( my wife is president of the program ) . he is also currently employed at air liquide usa ( or one of its subsidiaries ) over in the galleria area . as a consequence of air liquide ' s pending merger with boc , steve believes that there will be significant personnel reductions sometime during 2000 and is taking action now to try to locate his next professional challenge . lynn suggested there might be a fit with your group and i would be grateful if you could have a look and let me know whether you might be interested . alternatively , if you don ' t see a fit ( or are adequately staffed at the moment ) , i would be grateful for any suggestions you might have as to whom i might contact internally on steve ' s behalf . many thanks in advance . m . l . miller vice president - mergers & acquisitions calme region ( 713 ) 345 5272 - - - - - - - - - - - - - - - - - - - - - - forwarded by michael linn miller / enron _ development on 02 / 17 / 2000 07 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" roeder , steve "" on 02 / 10 / 2000 03 : 14 : 18 pm to : "" ' michael . l . miller @ enron . com ' "" cc : subject : our discussion mike - thanks for taking the time to talk last evening . ? i really appreciated it . ? ( by the way , how is life in the white house now that you are living with a president ? ? is air force one all that it is cracked up to be ? ) please see the attached document . ? by reading between the lines , hopefully one can see that , whereas my training has been highly technical , my desire to transform my career into the business side of a high - technology application is set in this good foundation ( rather than limited by it ) . thanks again for your support . > steve roeder technology manager air liquide america 713 624 8777 713 624 8350 fax steve . roeder @ airliquide . com - steve . doc",0 +"Subject: re : programming for rdi model michelle , helen , cecil , david ( just joined the effort ) and i had a meeting this morning . a lot of things regarding the coding has been discussed . we all felt good about the progress that has been made and have clear idea of how to proceed . the project is speeding up nicely . best , alex",0 +"Subject: visit to wharton , december 6 i would like to invite you to join mewhen i visit to the wharton risk management and decision processes center on december 6 . the meeting will take place in the morning , 9 : 00 - 12 : 00 , followed by lunch . the description of the center is at the bottom of the message . the web site address is the objective of the trip is to discuss joint research projects in the area of risk management and alternative risk transfer . please , feel free to contact me with recommendations regarding discussion and potential research topics . the best hotel to stay in is the inn at penn . http : / / www . innatpenn . com / contact . html the inn at penn sansom common , 3600 sansom street philadelphia , pa . 19104 phone : 1 - 800 - 809 - 7001 fax : 215 - 222 - 4600 vince kaminski the mission of the wharton risk management and decision processes center is to carry out a program of basic and applied research to promote effective policies and programs for low - probability events with potentially catastrophic consequences . the center is especially concerned with natural and technological hazards and with the integration of industrial risk management policies with insurance . the center is also concerned with promoting a dialogue among industry , government , interest groups and academics through its research and policy publications and through sponsored workshops , roundtables and forums .",0 +"Subject: contract update sheila , some minor differences between the draft and the final executed version . i have forgotten to bring the draft today , i shall send a copy to you tomorrow . there were some hand - written changes made by greg ijn the draft that were not transferred to the final version . vince",0 +"Subject: adres marysi robertlu @ friko 6 . onet . pl",0 +"Subject: re : primary curves missing from factor loading tanya , we are very close to generating factors for all primary curves . jin almost get it done . but we are still waiting on the expiration dates for those london curves . if anyone can help , please help . also , we have some curves that don ' t have futures . how to decide these curves ' s expiration dates ? matthew adams helped us deciding many curves expiration rules . but there are still many primary curves that don ' t have expiration dates . if no expiration dates , then there will be no factor loadings . whoever wants to generate factor loadings then give us the expiration dates first ! : ) winston tanya tamarchenko 09 / 21 / 2000 09 : 00 am to : bjorn hagelmann / hou / ect @ ect , wenyao jia / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , rodrigo lamas / lon / ect @ ect , xochitl figueroa / na / enron @ enron , manfred roenz / corp / enron @ enron , christian lebroc / corp / enron @ enron , bjorn hagelmann / hou / ect @ ect , homan amiry / lon / ect @ ect , naveen andrews / corp / enron @ enron subject : re : primary curves missing from factor loading bjorn , you are absolutely right that we should run the factors for every primary curve . it has been working for a while on this . the problem is data , as always ( missing price curves , zero prices , not changing prices , etc . ) most of these problems come from london curves , so winston and jin yu are debugging the code , fixing the problems for every curve . winston , do you think we are ready to calculate factors for us curves ? ( while continue working on the rest ) . tanya from : bjorn hagelmann 09 / 20 / 2000 10 : 06 pm to : tanya tamarchenko / hou / ect @ ect , naveen andrews / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , rodrigo lamas / lon / ect @ ect , xochitl figueroa / na / enron , manfred roenz / corp / enron , christian lebroc / corp / enron , bjorn hagelmann / hou / ect @ ect , homan amiry / lon / ect @ ect subject : re : primary curves missing from factor loading tanya , naveen : i am confused , i thought that when we identified primary curves they would then have factors run against them . does this not distort what we are trying to do with the primary and var ? regards bjorn h . - - - - - - - - - - - - - - - - - - - - - - forwarded by bjorn hagelmann / hou / ect on 20 / 09 / 2000 21 : 57 - - - - - - - - - - - - - - - - - - - - - - - - - - - xochitl figueroa @ enron 20 / 09 / 2000 18 : 16 to : manfred roenz / corp / enron @ enron , christian lebroc / corp / enron @ enron , homan amiry / lon / ect @ ect cc : bjorn hagelmann / hou / ect @ ect subject : re : primary curves missing from factor loading i am in the same situation as manfred . i have one primary curve for southern cone gas and one for southern cone power and i am not getting factors for either . for my power curves i am getting wti factors and for gas i am getting ng factors . but i do agree with you manfred , i think all the primary curves should have their own factor loadings . xochitl manfred roenz 09 / 20 / 2000 05 : 33 pm to : christian lebroc / corp / enron @ enron , xochitl figueroa / na / enron @ enron , homan amiry / lon / ect @ ect cc : bjorn hagelmann / hou / ect @ ect subject : re : primary curves missing from factor loading christian , at least you have 2 curves that you get factors for . i get none . i have four primary curves for coal but factors from nbsk are used . in emissions i have one primary curve but wti factors are used . i think all the primary curves should have their own factor loadings . xochitl , what factors are used for your primary curves ? manfred from : christian lebroc 09 / 20 / 2000 11 : 28 am to : homan amiry / lon / ect @ ect , manfred roenz / corp / enron @ enron , xochitl figueroa / na / enron @ enron cc : bjorn hagelmann / hou / ect @ ect subject : primary curves missing from factor loading i was in the process of setting up sunil ' s template for calculating co - variance on all liquids primary curves using the "" factor loading "" data . unfortunately , i did not get very far , because i noticed that the factor loading table contains only 2 ( wti & hu ) out of 13 liquids primary curves . i am concern that liquids var could conceivably be over or understated due to the absence of 11 other curves which are listed below . please verify your perspective commodity desk on this issue . 61 ny brent c 2 gc c 3 gc c 5 xt condensate dubaicrude ic 4 mtbe nc 4 nxho christian",0 +"Subject: reply requested : do you code or approve invoices ? do you code or approve invoices for goods and services that are processed by the houston - based accounts payable center ? if yes , please read and respond to this e - mail . on may lst , ibuyit payables will be activated for all organizations supported by the houston - based accounts payable processing center ( for example , invoices submitted via ap drop box to 600 jefferson , houston ) . if you code or approve these invoices , the ibuyit payables project team has important information to share with you about the ibuyit payables system , training , and the may lst transition to the new system . to identify yourself as a future ibuyit payables coder or approver , please respond to this e - mail upon receipt with the following information : * full name ( first , middle , last ) * e - mail address * business unit ( for example , corporate , ets , ews , ees , or ebs ) * do you code invoices ? ( yes / no ) * do you approve invoices ? ( yes / no ) * are you a remote user ? for example , do you dialup to access the enron network ? ( yes / no ) this will ensure that you receive important ibuyit payables information . thank you for your response ! attached is important ibuyit payables training information : ",0 +"Subject: re : smoothing methodology for extracting forward forward volatilities tanya , the exponentials we tried earlier ( a + bexp ( - cx ) , etc , fit well but gave negative numbers in the bootstrapping . i tried a + b ( t + c ) ( - 1 ) , a standard power law , and as the ? accompanying graph shows ( for the 12 months ) , the fits are quite good . ? in this case , the ffvols do not become negative ( i believe this ? corresponds to your 0 beta ) . ? i would have preferred exp ( - t ) and variants ( can explain owing to ? mean - reverting vols ) , but the power law might be a practical alternative ? ( from an implementation standpoint ) . ? naveen ? ? ? ? ? ? ? ? tanya tamarchenko @ ect ? 11 / 17 / 2000 02 : 59 pm ? to : naveen andrews / corp / enron @ enron , alex huang / corp / enron @ enron ? cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vladimir ? gorny / hou / ect @ ect ? ? subject : re : smoothing methodology for extracting forward forward ? volatilities ? ? following up on our discussions i implemented one method for creating forward ? forward curve ? from implied vol curve . ? i sorted out 12 forward curves from an original forward vol curve , each of 12 ? curves corresponding ? to certain month . then i fitted each of 12 curves with a function : ? ? y = a + a / power ( x + b , beta ) ? ? i figured out that when beta is from ( 0 , . 5 ) the above function is suitable ? for performing our bootstrapping ? routine of deriving ff vols from implied , because : ? ? y ( x + t ) * y ( x + t ) * ( x + t ) - y ( x ) * y ( x ) * tx > 0 for all x , t . ? ? ( i have to double check on this again . also when beta > 0 . 5 there are some ? combinations of parameters a , a , b , beta ? for which above equality holds ) . even with restriction on beta this class of ? functions represents quite a variety of shapes . ? ? below you see the example of fitting as well as the example of ff vol curve ? constructed from implied vol curve for ng . ? ? i ' ll try this for power as well . ? ? any comments ? ? ? ? ? ? ? ? ? ? ? ?",0 +"Subject: progress fyi 1 - 2 days is optimistic , but we have core value of optimism ! - - - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 10 / 09 / 2000 02 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat @ enron 10 / 09 / 2000 12 : 16 pm to : mike a roberts / hou / ect @ ect cc : subject : progress mike , doug , an it guy , asked around and he could not find any software that can do the job . i am still working on the code . the program should be ready in 1 - 2 days . - chonawee",0 +"Subject: re : ken lay ' s speech so is it bigger than his tax cut on an annual average basis ?",0 +"Subject: re : follow - up meeting on wharton christie , this is regarding the risk management project . i shall set up a separate meeting with jeff regarding wharton tiger team . i would appreciate if you could call in as well . vince christie patrick 12 / 12 / 2000 10 : 14 am to : shirley crenshaw / hou / ect @ ect cc : james l bouillion / hou / ect @ ect , george carrick / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : follow - up meeting on wharton hi shirley ! i ' ll be on vacation , but will be happy to call in at that time , or any other time that is convenient for vince . should we also include jeff shankman ? please let me know the time and telephone number to call , and i ' ll be there ! thanks ! - - christie .",0 +"Subject: re : referral can you advise as to whether or not li xiao referred alex to you last summer . i need to know this in order to process an employee referral ( under old plan ) for her . - - - - - - - - - - - - - - - - - - - - - - forwarded by linda vargo / hou / ect on 02 / 14 / 2000 02 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - li xiao @ enron 02 / 14 / 2000 11 : 19 am to : linda vargo / hou / ect @ ect cc : subject : re : referral hi , linda , i wonder if you heard from vince kaminski regarding my referral for alex huang . thanks , li x 39635 - - - - - - - - - - - - - - - - - - - - - - forwarded by li xiao / corp / enron on 02 / 14 / 2000 11 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - - linda vargo @ ect 01 / 17 / 2000 04 : 29 pm to : li xiao / enron _ development @ enron _ development cc : subject : re : referral i am waiting for feedback from vince kaminsky . as soon as i know something , i will advise .",0 +"Subject: spvs hi , vince , merry christmas and happy new year ! please see attached brief descriptions of spvs , to my knowledge , there are a couple more and i will keep you posted . best regards , li",0 +"Subject: jacob kang vince , jacob has good background in or and can start working on pipeline problems right away , if we need someone . maybe it is from his consulting background , i found that at times he exaggerates a bit about his roles in model building . he would start saying he did everything , and later water it down quite a bit . ( what he actually did is not an easy accomplishment though . ) he also stressed that he wants to move away from pipeline projects . i did not got a chance to ask him any questions about derivatives and finance . best , alex",0 +"Subject: re : no problem vince , the thur mtg was cancelled . steve vince j kaminski 10 / 11 / 2000 14 : 48 to : steven leppard / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , tani nath / lon / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : steve , i assume it ' s 9 : 00 a . m . my time , monday . it works for me . i haven ' t responded in time to the your message re thursday . i had a few back to back meetings in the morning and i read your message quite late into the day . vince steven leppard 11 / 10 / 2000 04 : 25 am to : vince j kaminski / hou / ect @ ect , tani nath / lon / ect @ ect cc : subject : vince , tani fyi . steve - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 10 / 11 / 2000 10 : 27 - - - - - - - - - - - - - - - - - - - - - - - - - - - calendar entry research meeting w / - michael , john , tani , richard , joe , steve & vince kaminski brief description : date : time : 13 / 11 / 2000 15 : 00 - 15 : 45 detailed description : invitations phone / ext include chairperson : john sherriff / lon / ect 37359 yes organised by : lauren urquhart / lon / ect no invitations sent to : tracie mccormack kirsten nelz steven leppard this meeting repeats starting on ( if the date occurs on a weekend the meeting ) .",0 +"Subject: reactions website http : / / www . reactionsnet . com thank you for registering for a free trial to the reactions magazine website . your user name and password are listed below - please keep this email or a printout of these details as you will need them to access the site . if you have any problems logging on or using this site please feel free to contact our help desk on + 44 ( 0 ) 20 7779 8006 or mailto : web - help @ euromoneyplc . com your trial user name is : kaminski and your password is : 105006 reactions is also available in hard copy format . if you wish to receive a complimentary copy , please email us your full mailing address . for further informationon all sbscriptions , please call our hotline on + 44 ( 0 ) 20 7779 8999 ( uk ) or 1 - 800 437 9997 ( usa ) or mailto : hotline @ euromoneyplc . com .",0 +"Subject: re : fw : parent - subsidary model hi again , thanks for the financial data on enron ' s european counterparties . it is my understanding that you started out with a list of 500 such counterparties . however , your spreadsheet only contains information for 72 of these european counterparties . will you please tell me the logic behind the elimination of the 400 + other counterparties ? thanks so much , iris - - - - - original message - - - - - from : parsons , ben sent : tuesday , april 17 , 2001 2 : 56 am to : mack , iris cc : valnek , tomas ; dhar , amitava ; mumford , mike subject : re : fw : parent - subsidary model hi iris the inputs and outputs generated by riskcalc can be seen in the attached file : > we only looked at the 5 - yr pd . inputs are in columns a - u . these are the inputs generated by amadeus . you can run these inputs through the riskcalc model over the web ( http : / / www . moodysqra . com / privfirm ) using the login : dupred , password : detective . this is our trial licence which lasts for about 2 more weeks ( mike mumford will have more details about the current licence ) tomas valnek was getting the data from the amadeus database , so i ' ll leave it to him to determine if houston access is possible . in the meantime you can use the dataset attached for testing purposes . ben from : iris mack / enron @ enronxgate on 12 / 04 / 2001 17 : 58 cdt to : ben parsons / lon / ect @ ect cc : amitava dhar / corp / enron @ enron subject : fw : parent - subsidary model hi ben , how are you ? today we had a meeting with craig chaney and jeff kinneman to discuss the private firm model . they requested that i spend some time carefully analyzing the moody ' s riskcalc model . i noticed that you also have been looking at riskcalc - as indicated in your paper entitled "" pricing parent companies and their subsidiaries : model description and data requirements "" other than the example discussed in your paper , did generate any other test statistics , scores , etc . also , you stated that you used amadeus database . we are in the process of trying to obtain data from various data vendors - but that may take a while . in the mean time , may we have access to the amadeus database or some sample dataset ? thanks so much , iris - - - - - original message - - - - - from : valnek , tomas sent : tuesday , april 10 , 2001 9 : 10 am to : fiala , markus ; seyfried , bryan ; salmon , scott ; kirkpatrick , eric ; mumford , mike ; fontaine , jean - sebastien ; brooks , simon ; price , nigel ; diprose , robert ; rezaeian , reza ; gordon , mike ; lee , derek ; hershkovitz , ilan ; golden , sally ; stephan , nicholas ; albanis , george ; shanbhogue , vasant ; mack , iris cc : parsons , ben subject : parent - subsidary model attached is a description of the parent - subsidiary model that ben and i have been working on over the last few weeks . comments welcome ! tv >",0 +"Subject: re : i am zhendong zhendong , thanks . please , send me your updated resume as well . vince zhendong xia on 04 / 11 / 2001 09 : 14 : 01 pm to : vince . j . kaminski @ enron . com cc : subject : i am zhendong hi , dr . kaminski : i am zhendong , the student of dr . deng . i think dr . deng has sent my resume to you . i am very happy to have an opportunity to work with you this summer . i am a student in both ms qcf and ph . d eda programs in georgia tech now . i plan to find a job in industry instead of academic after my graduation . so i intend to do internship during the process of prusuing my degree to acquire some experience for my future career . i hope to start on 5 / 14 / 2001 and end on 8 / 17 / 2001 . thanks a lot . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318",0 +"Subject: energy futures contracts project please respond to hi vince and jason : please find attached a copy of our project . thank you for an enjoyable and informative class . sincerely , rishad patel neeraj hingorani duane maue eric van stone john ganguzza grant johnson paulo yoshiura - . doc",0 +"Subject: sevil yaman hi norma , sevil ' s primary project has been the generation bidding analysis for the east power desk . she worked closely with the power fundamentals group and the it group in collecting and organizing the data , and then developing the analysis . sha has focused on the pjm area and plans to expand the analysis to other regions in the east . sevil has also investigated the issue of risk premia in power prices compared to marginal cost . vasant",0 +"Subject: re : cv of rodney greene re quantitative positions . vince - would you have any interest in this candidate ? kind regards - amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy fitzpatrick / lon / ect on 21 / 02 / 2000 09 : 34 - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 18 / 02 / 2000 19 : 50 to : amy fitzpatrick / lon / ect @ ect cc : subject : re : cv of rodney greene re quantitative positions . probably a bit to techy for me but maybe a good fit for vince kaminski in houston research . bs amy fitzpatrick 17 / 02 / 2000 12 : 52 to : david port / corp / enron @ enron , david weekes / lon / ect @ ect , steve w young / lon / ect @ ect , bryan seyfried / lon / ect @ ect cc : subject : cv of rodney greene re quantitative positions . any thoughts on this candidate ? kind regards - amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy fitzpatrick / lon / ect on 17 / 02 / 2000 12 : 52 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : simon bragg 17 / 02 / 2000 12 : 36 to : "" ' amy . fitzpatrick @ enron . com ' "" cc : subject : cv of rodney greene re quantitative positions . hi amy a colleague of mine interviewed someone last week who is a phd whose background is as a developer within catastrophe risk management . he is looking to move into more of a quantitative role which will utilise his developing skills and also his statistical and theoretical knowledge as well . the issue is that he is based in chicago and i wondered if there would be any interest from your headquarters there . please find attached his details . speak to you soon . regards simon - do 075530 . doc",0 +"Subject: re : introduction thanks , subroto original message - - - - - from : ? vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : ? ? monday , march 12 , 2001 7 : 39 pm to : ? ? ? ? subroto . roy @ riskmetrics . com subject : ? ? ? ? ? ? ? re : introduction dear subroto , thanks for your message . here is my information : vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ? ? ? ( 713 ) 853 3848 ? ? ? ? ( 713 ) 410 5396 ( cell ) fax ? : ? ( 713 ) 646 2503 e - mail : vkamins @ enron . com vince subroto roy on 03 / 12 / 2001 11 : 28 : 52 am to : ? ? "" ' vkamins @ enron . com ' "" cc : subject : ? introduction dear vince : it was a pleasure talking with you today , especially about risk management and data opportunities . we appreciate your openness with respect to sharing information about your business activity . riskmetrics has grown rapidly in the last one year . we now have 370 institutional clients worldwide for our risk management software and data products . we encourage you to visit our web site and our ' risk grades ' site for risk measurements for retail clients . we look forward to meet with you and your colleagues at enron . sincerely , subroto roy riskmetrics inc . 44 wall street new york , ny 10005 t 212 - 981 - 7435 , f 212 - 981 - 7401 http : / / www . riskmetrics . com / * * * * * * * * * * * * * * * * * * * * * check the risk of your personal investments at http : / / www . riskgrades . com /",0 +"Subject: re : houston visit soussan , it seems we have planned for all contingencies . look forward to meeting you next week . vince "" faiz , soussan "" on 11 / 28 / 2000 06 : 51 : 51 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : houston visit vince , your suggested arrangement is perfect with me and i love both italian or steak . . . the choice is yours . i really look forward to our meeting vkaminski @ aol . com subject : re : houston visit soussan , let ' s meet at westin oaks next to the reception around 6 : 30 p . m . thursday . there are several nice restaurants within a walking distance to the galleria . i shall make a reservation ( is italian or a steakhouse ok ? ) . you can reach me on thursday at my cell phone 713 410 5396 . look forward to meeting you . vince "" faiz , soussan "" on 11 / 27 / 2000 04 : 37 : 30 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : houston visit great ! i look forward to our dinner on thurs . 12 / 7 evening . hopefully your flight will be on time . . . although having watched 60 minutes last night and suffered from a # of delays lately , let ' s hope that the "" weather blame "" doesn ' t get in the way . it ' s best to leave me a message @ my usual work # on thurs . , 914 253 4187 , . . . i can easily check it in houston . i ' ll be staying @ the westin oaks in the galleria . . . any preferred place that i can book ( & for what time ) ? ? coming over to down town won ' t be a problem for me either . will be great to see you again . soussan 914 253 4187 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , november 27 , 2000 12 : 10 pm to : faizs @ texaco . com cc : vince . j . kaminski @ enron . com subject : re : houston visit soussan , thanks for your message . it would be great to meet you when you come to houston . i shall be in town on december 7 , flying back from philly in the morning . assuming that the flight is on schedule , i shall be available for dinner . please , let me know how i can contact you on thursday , december the 7 th , to confirm . look forward to meeting you . vince "" faiz , soussan "" on 11 / 26 / 2000 09 : 04 : 01 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : houston visit dear vince , greetings from ny and hope that all is well and you had a great thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are available either evening for dinner . would be great to see you again and catch up with the latest . . . i really enjoyed my visit last april , your insights , and the risk book you gave me . i do hope you ' re available to meet and pls let me know which evening suits you better . best , soussan faiz texaco inc . 914 253 4187",0 +"Subject: executive program on credit risk modeling subject : announcement : executive program on credit risk modeling credit risk modeling for financial institutions october 15 - 20 , 2000 at stanford university business school risk management specialists , stanford business school professors of finance darrell duffie and kenneth singleton will be repeating their successful executive program on credit risk pricing and risk management for financial institutions . the course is created for risk managers , research staff , and traders with responsibility for credit risk or credit - related products , including bond and loan portfolios , otc derivative portfolios , and credit derivatives . this program includes : * valuation models for defaultable bonds , otc derivatives , and credit derivatives , with empirical applications to corporate and sovereign markets * empirical and theoretical assessments of models for measuring credit risk , with correlation , for portfolios * the strengths and limitations of current practice in credit risk measurement * practical issues in implementing credit modeling and risk systems * estimation of default and transition probabilities , and the correlations among the default risks of publicly traded companies , from historical data application form : credit risk modeling for financial institutions stanford , october 15 - 20 , 2000 this form may be completed and returned by email , or may be printed and sent by fax to : stanford gsb executive education programs fax number : 650 723 3950 you may also apply and see more detailed information by visiting our web site at : www . gsb . stanford . edu / exed / crm applications will be acknowledged upon receipt . if you have not received an acknowledgement within two weeks , please contact us . please complete all sections . all information is kept strictly confidential . name : put an x beside one , please : male : female : citizenship : job title : company : your company ' s main activity : business mailing address : business phone ( all codes please ) : business fax : email address : home address : home phone : nickname for identification badge : emergency contact name : emergency contact phone : title of person to whom you report : your job responsibilities and experience related to this course : ( please provide a brief job summary here , or attach and send a biographical summary containing information relevant to your purpose and qualifications for the course . ) college or university education : please list , by degree : college or university dates degree granted _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ please note : all classes and discussions are conducted in english . in order to reserve a place in the course , the program fee of us $ 7 , 500 is due upon notification of acceptance . this fee covers the tuition , single room , meals , and all course materials ( including a proprietary manuscript on credit risk pricing and measurement ) . our refund policy is available upon request . please state the source from which you heard about this course : name and date : if you would like a hard copy brochure and application form , please contact : ( make sure to include your mailing address ) shelby m . kashiwamura program manager executive education stanford graduate school of business ( 650 ) 723 - 9356 phone ( 650 ) 723 - 3950 fax kashiwamura _ shelby @ gsb . stanford . edu",0 +"Subject: grades pam , another term paper : john ganguzza neeraj hingorani grant johnson duane maue rishad patel eric van stone palo yoshiuro grade : a please , confirm . vince",0 +"Subject: jcc forward curve the following spreadsheet contains a simple way to build a jcc forward curve . it is based upon the spread between jcc and brent lagged one month . i ' m out until the 2 nd . - kevin k .",0 +"Subject: thank you graham pl . # 207 austin , tx 78705 ( 512 ) 4746683 november 30 , 2000 dear mr . kaminski : thank you for the opportunity to interview today for a position with enron company . i enjoyed meeting you and learning more about your company and the interesting work done by enron . the interview strengthened my interest in working for enron company . my education and experience fit nicely with the job requirements , and i am confident i can make a positive contribution to the company . i want to reiterate my strong interest in enron company and in working with you and your staff . after further investigating your well - established company , i am eager to reaffirm my interest in the position . please feel free to contact me at ( 512 ) 4746683 or at knirel @ mail . utexas . edu if i can provide you with any additional information . again , thank you for your consideration . i hope to hear from you soon regarding your decision . sincerely , nina knirel do you yahoo ! ? yahoo ! shopping - thousands of stores . millions of products . http : / / shopping . yahoo . com /",0 +"Subject: reply from charles shen shirley : thank you very much for the e - mail . attached please find the copy of my resume , please treat it with high confidentiality . i would love to fly to houston this friday to talk to vince and other people in enron , and i will fly from tulsa , oklahoma to houston . when you make the flight reservation , please make sure to use my legal name "" yingquan shen "" . if you have any questions , please feel free to let me know . sincerely , charles - - - shirley . crenshaw @ enron . com wrote : > mr . shen : > > vince kaminski and the research group would like to > bring you in for an > interview this friday , if possible . please forward > me a copy of your > resume , as soon as possible , and i will have our hr > dept . contact you . > > thank you . > > shirley crenshaw > administrative coordinator > enron research dept . > 713 / 853 - 5290 > > > > > do you yahoo ! ? get yahoo ! mail - free email you can access from anywhere ! http : / / mail . yahoo . com / - charles _ shen . doc",0 +"Subject: re : willow and pathstar evaluations i will check with michael and see if it ' s feasible to do a quick evaluation of his software here in houston . - - stinson vince j kaminski 04 / 24 / 2001 05 : 22 pm to : stinson gibner / hou / ect @ ect cc : subject : willow and pathstar evaluations stinson , he keeps bugging us about it . any thoughts what we should do ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" mike curran "" on 04 / 24 / 2001 10 : 03 : 24 am please respond to "" mike curran "" to : cc : subject : willow and pathstar evaluations hi vince - hope all is well with you . sharad hasn ' t had time to evaluate our willow tree or monte carlo software since the middle of last year . is there somebody else that could do it ? please let me know who i should send the evaluation to . best regards , michael curran ceo quantin ' leap limited piercy house 7 copthall avenue london ec 2 r 7 nj tel : + 44 ( 0 ) 20 7562 3450 fax : + 44 ( 0 ) 20 7562 3411 mailto : mcurran @ quantinleap . com http : / / www . quantinleap . com",0 +"Subject: re : asian option for pavel our convention is whoever finalizes the model should write the documentation . it does not make sense to write one when changes are anticipated . you have been working on this almost a year , it never strikes you that we need a documentation ? i created exotica . xll , does that also give you an excuse not working on exotica documentation ? zimin paulo issler 05 / 02 / 2001 11 : 52 am to : zimin lu / hou / ect @ ect cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel i am surprised that we do not have the documentation ready . i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality . paulo issler zimin lu 05 / 02 / 2001 11 : 29 am to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect cc : pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel tai woo , here are the c - codes for the crudeapo . ' sig ' is the spot volatility meaning the price volatility within the delivery period . you should consult with pavel for the definition of this "" extra "" parameters . we would like to see the position monitor once you get it running . we might have some additional suggestions . paulo , why don ' t we have a documentation on crudeapo you worked on ? i can not find it in exotica help file . please supply that to tai , thanks . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am to : paulo issler / hou / ect @ ect cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect subject : asian option for pavel this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio . he asked me to talk to you in order to access to the code so that i can see the difference made to the model . as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is . thanks ,",0 +"Subject: re : mr . sud vince , it never hurts ( or rarely , anyway ) to follow up on things . i met with him on saturday . it will be interesting to see what he does . i didn ' t empower him to do anything on our behalf and basically just stated what i wouldn ' t mind him repeating . thanks , rebecca - - - - - original message - - - - - from : kaminski , vince sent : friday , march 09 , 2001 9 : 03 am to : rebecca mcdonald / enron _ development @ enron cc : kaminski , vince subject : mr . sud importance : high sensitivity : confidential rebecca , i share some of your concerns regarding mr . sud . he is retired and he chose to contact us rather indirectly ( or on the spur of the moment ) . i understand that things are done differently in different cultures but i did not meet him and could not form my judgment based on personal observations . however , the information he gave us seems to be too important not to convey to you and not to act upon . vince kaminski",0 +"Subject: re : telephone interview with the enron corp . research group ms . crenshaw , thank you very much for the message . i am very interested in the opportunity to talk to personnel from the research group at enron . between the two days you suggest , i prefer wednesday 12 / 6 . considering the two - hour time difference between california and texas , 11 : 00 am pacific time ( 1 : 00 pm your time ) seems to be a good slot . however , i am open most of the day on 12 / 6 so if some other time slot is prefered on your end , please let me know . thanks again . i look forward to talking to you and your colleagues . jingming on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote : > good afternoon jingming : > > professor wolak forwarded your resume to the research group , and > they would like to conduct a telephone interview with you , sometime next > week , at your convenience . the best days would be tuesday , 12 / 5 or > wednesday , 12 / 6 . > > please let me know which day and what time would be best for you and > they will call you . let me know the telephone number that you wish to be > contacted at . > > the interviewers would be : > > vince kaminski managing director and head of research > vasant shanbhogue vice president , research > lance cunningham manager , research > alex huang manager , research > > look forward to hearing from you . > > best regards , > > shirley crenshaw > administrative coordinator > enron research group . > 713 - 853 - 5290 > > > jingming "" marshall "" yan jmyan @ leland . stanford . edu department of economics ( 650 ) 497 - 4045 ( h ) stanford university ( 650 ) 725 - 8914 ( o ) stanford , ca 94305 358 c , economics bldg if one seeks to act virtuously and attain it , then what is there to repine about ? - - confucius _ ? oo ? ? ooo ? ? t  xo - ? ? - -  ? ?",0 +"Subject: re : book notes vince : look forward to meeting you . . . amy vince j kaminski @ ect 07 / 24 / 2000 08 : 33 am to : amy oberg / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : book notes amy , i received your voice - mail message . i was traveling last week and unable to answer it directly . i shall be glad to join you on thursday for the presentation ( 3 p . m . on my calendar ) . vince",0 +"Subject: re : weather and energy price data dear dr . kaminski : thank you very much for the natural gas information . the electricity price is also definitely of great help if it can be available . could you kindly please let me know the contact information for ft or megawatt daily ? i will contact them asap to get their permission for the access of the price data . thank you very much and have a great day ! mulong on mon , 16 apr 2001 vince . j . kaminski @ enron . com wrote : > > mulong , > > we shall send you natural gas henry hub prices right away . > please look at the last winter and the winter of > 95 / 96 . > > we shall prepare for you the electricity price > information ( cinergy , cobb and palo verde ) but > you have to approach ft ( the publishers of > megawatts daily , a newsletter that produces the price > index we recommend using ) and request the permision > to use the data . we are not allowed to distribute > this information . > > please , explain that this is for academic research and that > we can produce the time series for you , > conditional on the permission from the publishers > of megawatts daily . > > vince kaminski > > > > > mulong wang on 04 / 15 / 2001 03 : 43 : 26 am > > to : vkamins @ ect . enron . com > cc : richard macminn > subject : weather and energy price data > > > dear dr . kaminski : > > i am a phd candidate under the supervision of drs . richard macminn and > patrick brockett . i am now working on my dissertation which is focused on > the weather derivatives and credit derivatives . > > could you kindly please offer me some real weather data information about > the price peak or plummet because of the weather conditions ? > > the past winter of 2000 was very cold nationwide , and there may be a > significant price jump for natural gas or electricity . could you > please offer me some energy price data during that time period ? > > your kind assistance will be highly appreciated and have a great day ! > > mulong > > > > > > > > > >",0 +"Subject: meeting on the 20 th of march robert , this is to confirm the meeting on march the 20 th at 9 : 00 a . m . enron will be represented by bill bradford , bryan seyfried , , vasant shanbhogue and myself . could you , please , advise me what is the best hotel where we could stay overnight , close to your location ? vince kaminski enron corp . 1400 smith street , room 1962 houston , tx 77251 - 1188 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: re : transport model ken and greg , the gamma and cross gamma from our spread option appear to be correct . one anomaly i found is the price change as function of maturity , see attached figure . it is odd , isn ' t it ? and the seeming gamma anomaly is largely because of this . zimin enron north america corp . from : kenneth shulklapper 08 / 07 / 2000 11 : 40 am to : zimin lu / hou / ect @ ect cc : subject : transport model zimin , i have been looking at the new transport model and there are some returns in the greek calculations that i am not comfortable with . i have looked through the formulas and do not see inconsistencies , but we are getting significantly higher gamma values in ' out years ' than in the ' near months / years ' . rho also seems to be very high throughout the curve . we are prepared to release this model to be used on the floor , but would like you to sign off on the calculations . i know that you have a meeting on this on wednesday , and wanted to get you the model to review early . a good example that i am talking about is on the tab "" longterm 9 "" . this is the kingsgate to malin deal that we worked on previously . please give me ( or greg couch ) a call with any questions . thanks . ken 3 - 7009 - - - - - - - - - - - - - - - - - - - - - - forwarded by kenneth shulklapper / hou / ect on 08 / 07 / 2000 10 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : victor guggenheim 08 / 07 / 2000 10 : 54 am to : kenneth shulklapper / hou / ect @ ect cc : subject : transport model",0 +"Subject: wharton interviews - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 01 / 30 / 2001 03 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kristin gandy 01 / 29 / 2001 05 : 32 pm to : jeremy blachman / hou / ees @ ees cc : bryan kite / enron communications @ enron communications , michele nezi marvin / enron communications @ enron communications subject : wharton interviews this is a request for your interview participation . the associate program will be on the wharton , mba campus interviewing summer associate interns next week . due to business reasons , previously scheduled interviewers from the wharton team have had to cancel their participation . currently , i need two interviewers for monday , february 5 th and two interviewers for tuesday , february 6 th . please let me know of your availability . campus interviews are scheduled as follows : place : rittenhouse hotel 210 west rittenhouse square philadelphia , pa 19103 date : monday , february 5 th tuesday , february 6 th day one interviews day two interviews time : 8 : 30 a . m . to 5 : 00 p . m . 8 : 30 a . m . to 4 : 00 p . m . interviewers : bryan kite - confirmed michele nezi marvin - confirmed in the event that you have scheduling conflicts and cannot participate , any referrals at the director or vp level would be greatly appreciated . as always , thank you for your time and please contact me @ ext . 5 - 3214 if you have any questions . kristin gandy associate recruiting",0 +"Subject: re : storage book . . . hi stinson , shales ' initial in road to ebs was through david cox ( after vince ' s suggest to talk to david , i think ) . what shalesh did at the time was to put a four page concept on trading storage as a commodity in the new networked world . he has keen interest in such an idea and has done some work . he will be a good fit unless that person has to be in ebs under jean etc . . . . if so , we are not ready to let shalesh go ! he can support that effort , but i need him to get the supply & demand work in real - time user friendly form for jean ' s traders before shalesh ventures onto something else . i did promising that i will get him involved in some juicy stuff like new product / deals etc . . . . this may be his non - it stuff that he can do . . . . . what do you think ? ravi . stinson gibner @ ect 02 / 18 / 00 10 : 10 am to : ravi thuraisingham / enron communications @ enron communications cc : vince j kaminski / hou / ect @ ect subject : storage book . . . ravi : samer and i met this morning with sara ledbetter . she is starting the groundwork for setting up a storage book and a streaming book for tracking the e - powered products positions . they are having a meeting on next tuesday to discuss this . samer will attend . this is a good opportunity to start compiling the data that we will need for some of john grieblings questions . - - stinson p . s . sara also asked if we knew anyone who would be interested in managing the storage book . any suggestions ?",0 +"Subject: re : dabhol report narottam , i have in fact not received a copy of the report . was this something you sent by e - mail ? if so , please resend it to me so that i could make the appropriate comments . please do this asap , since i have been waiting for this report to give my comments for some time now . regards , sandeep . "" narottam aul "" on 05 / 06 / 2001 08 : 25 : 53 pm please respond to to : cc : subject : dabhol report sandeep trust you have had the opportunity to review the draft of the dabhol report that was sent on 24 april 2001 . i assume that the circulation of the report to the relevant people within dabhol and enron has been done at your end . it will be helpful if all comments are collated and send through you . the report can then be amended to incorporate your comments and a final version sent for your records . we would very much to close the assignment with the completion of the report . please do let me know , if we can do any further analysis and sensitivities to assist enron and dabhol in the existing phase of discussions with mseb and the state government . best regards narottam narottam aul henwood energy services inc . 26 greenhill road wayville sa 5034 australia tel : + 61 8 8179 2006 fax : + 61 8 8179 2099 mobile : 0421 061 016",0 +"Subject: re : part - time work vince , zimin and i talked briefly about the part - time work this morning . to recap ; i am willing to work 20 hours a week , however , i expressed my concern about commuting every week . i asked if commuting once every two weeks ( and work out of austin every other week ) would be acceptable . as to the term of the work , i suggested a 3 - mo period ( i have yet not talked to international office which arranges work authorization using curricular practical training of which i have used up 9 months already ) , i might run into problems if i ask for more . i also mentioned that i would do my best to accomodate your preferences . we did not discuss any other details . i shall be awaiting for your response on this matter . best , - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 cell : ( 512 ) 680 - 5355 http : / / uts . cc . utexas . edu / ~ cantekin - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] > sent : monday , september 18 , 2000 5 : 50 pm > to : cantekin @ mail . utexas . edu > cc : vince . j . kaminski @ enron . com > subject : re : part - time work > > > > cantekin , > > i shall call you tomorrow to discuss the details . > > vince > > > > > > "" cantekin dincerler "" on 09 / 18 / 2000 > 02 : 59 : 41 pm > > please respond to > > to : > cc : > subject : part - time work > > > hi vince , > > i promised to get back to you on the part - time work issue . > sorry for the > delay , i got back to austin only last week . i talked to ehud > about this and > he is ok with it . just wanted to let you know . > > best , > > - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > cantekin dincerler > > doctoral candidate > the university of texas at austin > graduate school of business > department of finance > office : ( 512 ) 471 - 1676 > fax : ( 512 ) 471 - 5073 > home : ( 512 ) 472 - 5356 > cell : ( 512 ) 680 - 5355 > http : / / uts . cc . utexas . edu / ~ cantekin > - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > > > > > > >",0 +"Subject: re : congratulations vince , congratulations to you too ! in my mind you ' ve always been an md , they ' re just officializing it now . thank you very for all your help and support . - - anthony vince j kaminski 01 / 11 / 2000 10 : 05 am to : anthony dayao / hou / ect @ ect cc : subject : congratulations anthony , congratulations . well deserved . i am very happy for you . better late than never . vince",0 +"Subject: re : risk ' s advanced stress testing course dear all , i have been asked to give a talk on the use of copulas in stress testing at a risk conference . as i don ' t really work directly on those sorts of things anymore i would need some help putting anything together - i am happy with the theory , i would just need to present some results . it is a risk conference in london / new york in february . if i can ' t accept it soonish i ' ll have to turn it down . the organiser has another person in mind and i don ' t want to give a rubbish talk . regards , sharad agnihotri please respond to "" jean - pierre doggett "" to : cc : subject : risk ' s advanced stress testing course dear sharad , i attach a copy of the draft programme - please feel free to suggest any amendments . to give you some context , we ' re pitching the course at more senior risk managers who are familiar with standard stress testing techniques so the content must be a significant step further e . g . alternative approaches , incorporating credit risk etc . my number is at the bottom of this message . thanks for your help , j - p jean - pierre doggett risk conference producer risk waters group phone : + 44 ( 0 ) 20 7484 9813 fax + 44 ( 0 ) 20 7484 9800 e - mail : jpdoggett @ riskwaters . com www . riskwaters . com - stress testing draft . doc",0 +"Subject: re : enron / stanford program vince , i have managed to change my ticket and we can meet for dinner on sunday 10 / 15 / 00 . shall we say at 7 pm ? > > > > giuseppe : can you please join us for dinner on sunday 10 / 15 . we ' d like to briefly discuss the project too . could i please ask you to make reservations for 3 at il fornaio or some other nice place in palo alto ? preferably a quiet place where we can talk . > nick , > > dinner on sunday would work for me . i shall stay > in the bay area till monday morning . > > vince > > nick bambos on 09 / 28 / 2000 08 : 33 : 38 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : enron / stanford program > > hi vince , > > i am on the technical program committee of the infocom 2001 conference , > and we are meeting in new york city on saturday , october 14 th , to select > papers for the conference program . i ' m leaving stanford on friday and > getting back on sunday . > > it might be a possibility to have dinner together on sunday , if that would > work for you . in that case i would have to reschedule my flight to land > in sfo earlier than i ' m currently scheduled to land . > > would dinner on sunday work for you ? any chance we can meet monday for > lunch ? > > i look forward to seeing you . > > best regards , > > nick > > vince . j . kaminski @ enron . com wrote : > > > > nick , > > > > i shall be in stanford oct 14 - 15 , visiting my family . > > i would be glad to meet you ( and possibly giuseppe - your call ) for > lunch . > > please , let mer know if you are free on one of these days . saturday would > > work better for me . > > > > vince > > > > nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm > > > > to : stinson . gibner @ enron . com > > cc : vince . j . kaminski @ enron . com > > subject : re : enron / stanford program > > > > stinson , > > > > great ! i ' m looking forward to a very productive collaboration . > > i ' ll immediately start doing giuseppe ' s papers , for him to work > > on the enron / stanford program . > > > > many thanks to you and vince , and i hope to see you soon at stanford > > or enron . if i remember correctly , vince is visiting stanford in > > october . > > > > best regards , > > > > nick > > > > stinson . gibner @ enron . com wrote : > > > > > > nick , > > > > > > i spoke with paul racicot , head of trading for ebs , north america this > > > morning . he said that he is happy to send the $ 100 , 000 for your > program > > > from his budget . i have forwarded to him the draft letter to > accompany > > > the funds and will try to follow up to make sure that the money is sent > > > promptly . > > > > > > - - stinson",0 +"Subject: breckenridge offsite hello all : fyi . the breckenridge offsite has officially been cancelled . sheryl lara and i are notifying everyone today . thanks . shirley",0 +"Subject: colored printer taj mahal hello everyone . this memo only applies to the research group on the 19 th floor that use the colored printer "" taj mahal "" . vince has requested that i ask each of you to only use the colored printer "" taj mahal "" for presentations , newsletters , etc . that require at least 90 % of color . these cartridges are very expensive and several times we have picked up a copy of something that only had color on the first page and it would be maybe 15 - 20 pages long . this is not cost effective . if you have something that has color on the first page , but not on the rest of the presentation , then please just print the first page on the color printer and the rest on "" bandit "" or "" wagon "" . your help will be greatly appreciated ! thanks ! shirley",0 +"Subject: re : joint probabilities bob - i ' ve edited our numbers a bit on the azurix analysis and would like you to re - run the joint probabilities tables . please note that i ' ve got 2 cases in the model now - an optimistic case and a pessimistic case . i hope you can run both cases . ( you will need to toggle for case 1 or 2 - real complicated stuff ! ! ) please keep everything else the same ( ie , the currency probabilities , rab probabilities , etc . ) thanks for your help . michael anderson 646 - 9666",0 +"Subject: re : eprm 2001 houston layla , my associate ' s name is tanya tamarchenko . the e - mail address is : tanya . tamarchenko @ enron . com . location is the same as mine , enron , 1400 smith , houston . thanks vince p . s . shirley , please send my bio to layla "" layla o ' leary "" on 05 / 02 / 2001 10 : 33 : 00 am please respond to to : cc : subject : re : eprm 2001 houston yes , that ' s fine . if you can please give me her full contact details including e - mail and address i will have her registered as a co - speaker . if you would like to bring your own copies to the event i would ask you to send 200 copies directly to the venue . although if you can get it to me on friday i can still insert it ! could i please trouble you for a short biography ? kind regards layla - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 02 may 2001 15 : 38 to : loleary @ riskwaters . com cc : vince . j . kaminski @ enron . com subject : re : eprm 2001 houston layla , a few points . i shall be glad to attend the reception . i am falling behind in getting my presentation ready . sorry for the delay . i can commit to delivering the required number of copies on the day of my presentation ( or a day before ) . i have done it on two occasions before ( power 2000 and power 1999 ) : the copies were produced by our company copy center at no cost to you . my associate , tanya tamarchenko , is helping me with one aspect of the presentation and i would like her to deliver part of my speach . it ' s only fair to give her the credit when the credit is due . is it ok to include her as an additional speaker ? vince "" layla o ' leary "" on 04 / 30 / 2001 09 : 04 : 52 am please respond to to : cc : subject : eprm 2001 houston dear speaker , pre - congress cocktail reception - sunday 13 th may @ 5 : 30 pm in the juniper room we would be delighted to have you attend our pre - congress cocktail reception . we will be extending this invitation to all our sponsors , exhibitors and eprm / risk waters group staff . we hope this will provide a perfect opportunity for you to meet all our staff and clients before the formal opening of eprm 2001 usa + rsvp i would also like to remind you that i need any missing presentations by thursday 3 rd may . it is essential that i get these in as the delegates rely on these to make notes and get very upset if they are not included in the packs . if you still haven ' t informed me of your av requirements , please do so as quickly as possible . i also require a short biography . i would like to point out that i will not be taking any presentations on disk to the event . if you are using a laptop , your presentation should be loaded onto the laptop that you bring with you . you must bring your own laptop and disc , with connecting cables . any questions , please do not hesitate to contact me . kind regards layla o ' leary event co - ordinator risk waters group haymarket house 28 - 29 haymarket london swly 4 rx tel : + 44 ( 0 ) 20 7484 9871 fax : + 44 ( 0 ) 20 7484 9800",0 +"Subject: resending paper - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 04 / 30 / 2001 05 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" lynn nazareth "" on 04 / 27 / 2001 12 : 46 : 37 pm to : jason . sokolov @ enron . com cc : subject : resending paper jason : here is our team ' s assignment . please confirm receipt . i am also sending you the file via my outlook address in case this doesn ' t work . this is our team : helen demianenko javier lamas lynn nazareth shauywn smith carlos wheelock sarah wooddy thanks , jason ! see you at enron this fall ! lynn get your free download of msn explorer at http : / / explorer . msn . com - mg _ analysis _ final . doc",0 +"Subject: last day notification shelia walton , hr , told me that my last day with my department will be june 30 . meanwhile i talked last week to ebs , enrononline , and ees . i was most interested in the ees talk with harold buchanan who needs to know that he has the most complete list of potential customers and then information about those customers . any happenings from your talks ?",0 +"Subject: new mexico energy graphic presentations - cera report title : new mexico energy graphic presentations e - mail category : report cera knowledge area ( s ) : mexico energy - http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2396 cera is pleased to announce some new enhancements to the mexico energy advisory service website . in addition to recent research and upcoming events , the mexico service is incorporating new features including rich media presentations . areas of focus for these presentations include : * the energy dialogue : players and issues , * mexico energy reform progress update : electric power , and * mexico energy reform progress update : natural gas to view these presentations , you must have the flash player software installed on your computer . the free macromedia flash player can be downloaded at : pl _ prod _ version = shockwaveflash we encourage you to visit the mexico energy website today to obtain cera ' s independent perspective on mexican energy market issue via a new medium ! these graphics presentations are presented under the market outlook area of the mexican energy website at : cera ' s spring 2001 roundtable event dates and agendas are now available at http : / / www 20 . cera . com / event to make changes to your cera . com profile go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2001 . cambridge energy research associates",0 +"Subject: re : maureen raymond - castaneda extension maureen , i apologize that your phone was disconnected in error . at this time your phone is working and your voice mail box needs to be set up . i would like to add however , i do not appreciate your disrespect and unreasonable demands placed on my employees . they were not the cause of this problem and can only relay your information to the appropriate group . enron has values of respect , integrity , communication and excellence . i would appreciate you taking the time to review them . robert knight director voice communications stella l ely 03 / 08 / 2000 11 : 08 am to : move - team / epsc / hou / ect @ ect , telephone mods / corp / enron @ enron , dolores sustaita / epsc / hou / ect @ ect , robert knight / hou / ect @ ect cc : subject : maureen raymond - castaneda extension please reinstate maureen ' s extension immediately , if possible . it was disconnected this past weekend when we had it taken off of the phone at eb 3073 f . her extension was on two phones at two different locations and should not have been disconnected at eb 1939 . her extension no . is 30396 . sorry for the confusion . please let me know timing asap . thank you . stella ely",0 +"Subject: finance club : e - trading and fixed income markets workshop as faculty advisor to the finance club , prof . barb ostdeik is encouraging all members to take advantage of a great opportunity to learn more about trading operations from two very respected individuals in the industry . keith anderson of blackrock , inc ( jgsm 1983 ) and dexter senft of lehman brothers & tradeweb llc ( rice 1974 ) have visited the jones school to give this lecture and students have raved about them . albert wang ' s fixed income and advanced investments classes are required to attend , and james weston recommends for his applied finance students and any first years taking investments next year to be there . when : 9 : 45 a . m . d 11 : 15 a . m . wednesday april 18 where : room 117 herring hall presentation / discussion topics : trading tactics d phone trades vs . electronic trading evolution of e - trading in fixed income markets the future of the trading desk buy - side vs . sell - side issues speaker profiles : keith anderson , managing director and chief investment officer , fixed income of blackrock , inc . , is co - head of the fixed income operating committee , chairman of the investment strategy group and a member of blackrock  , s management committee . mr . anderson is responsible for global fixed income strategy , asset allocation and the overall management of client portfolios . he coordinates a team of thirty - two portfolio managers and more than twenty - five credit and quantitative analysts . mr . anderson is a member of the treasury borrowing advisory committee , which meets quarterly in washington , d . c . with the secretary and staff of the u . s . treasury to advise them on the financing and management of the federal debt . prior to founding blackrock in 1988 , mr . anderson was a vice president in fixed income research at the first boston corporation , working in mortgage securities and derivative products strategies . mr . anderson with criterion investment management company where he had primary responsibility for a $ 2 . 8 billion fixed income portfolio . mr . anderson has authored numerous articles on fixed income strategies , including two articles in the handbook of fixed income options : "" scenario analysis and the use of options in total return portfolio management "" and "" measuring , interpreting , and applying volatility within the fixed income market "" . dexter senft is a managing director with global responsibility for fixed income electronic commerce for lehman brothers . during his eight years at the firm , he has also managed or co - managed lehman  , s fixed income research , quantitative research , counterparty credit and global economics departments . mr . senft is the former chairman of tradeweb llc , a consortium - owned electronic bond trading system whose volume currently averages over $ 10 billion per day , and of which lehman brothers is a founding shareholder . he remains on tradeweb  , s board , and chairs tradeweb  , s trading protocol committee , which oversees the rules that govern the electronic flow of information within the system . mr . senft also serves on the bond market association  , s committee for alternative trading systems , as well as its online bond steering committee and he chairs the subcommittee on e - commerce protocols and standards . prior to ejv , mr . senft spent 17 years at the first boston corporation ( now part of cs first boston ) , where he was a managing director and head of fixed income research and product development . he is a widely published author of articles on mortgage securities , fixed income derivatives , and quantitative portfolio management , and his work continues to be among the readings for cfa applicants . in 1983 , mr . senft led the product team that created the first cmo for freddie mac . this is regarding the e - trading / bond market session arranged for april 18 . as part of the lst year finance elective , you may have already been informed by james weston ( were you ? ) but i need to get the info out to more 2 nd years as well . do you usually send out your speaker announcements to all faculty , students , and staff ? albert wang ' s fixed income and advanced investments classes are required to come and james weston will be encouraging lst years that took the finance elective to come . these guys are pretty good - they came a few years back . thanks . bbo",0 +"Subject: colleagues , i will be leaving enron next week . friday , september 8 , will be my last day . i enjoyed knowing and working with you . for the time being , i can be reached at takriti @ att . net . - samer",0 +"Subject: re : research allocation becky , i gave the % % for egm to shirley . i assume she communicated this info to you already . i assume egm includes f / x - i / r ( gary hickerson ) , weather , insurance ( jere overdyke ) , oil trading and coal . for calme i don ' t have any info . let ' s split the cost evenly . vince becky pham 11 / 02 / 2000 02 : 11 pm to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : research allocation shirley , grm is now with egm group . egm wants to verify that the 17 . 5 % we are going to allocate to grm is for the insurance , jere overdyke group . egm seems to think that their weather , mark tawney group , is receiving support from research . also , can we break out the support for calme ? calme is going to split into 3 bus and i am trying to determine who i need to bill for research supports . if you have any questions , call me . thanx .",0 +"Subject: d - g energy systems vince , i just wanted to keep you informed - i have not received a contract from d - g energy systems yet . they had said they would send it last weekend but it never came . i sent helyette geman an e - mail yesterday asking the status but she has not responded yet . karla",0 +"Subject: london update vince , more fuel for our discussion with john sheriff today , mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 25 / 2001 05 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : stephen bennett @ enron 04 / 25 / 2001 04 : 05 am to : jose marquez / corp / enron @ enron , mike a roberts / hou / ect cc : tony hamilton / eu / enron @ enron subject : softs ( ag ) support hi guys , i thought i would quickly update you on a few meetings we ' ve had with the ag folks here over the past 2 days . they are extremely interested in weather support and appear to be our most enthusiastic customer group to date . a summary : 1 ) they are interested in cocoa , coffee and sugar . specifically : brazil : londrina , bauru , lavras ( all wmos available in accuweather ) vietnam : kentum , dalat ( no data immediately evident ) ivory coast : man , gagnoa ( wmos in accuwx ) indonesia : sumatra - kotubumi , sulawesi - dolo ( no data immediately evident ) 2 ) they are specifically interested in event spikes - extreme temperature , precipitation or wind . they are also interested in any trend information we can devise . links between enso or other large scale oscillations that could have long range effects . tony has already given their group a 101 course on enso and its impacts on these areas . 3 ) they would eventually like daily am briefings - along with a daily product related to their market ( ie precip / temp graphs etc ) 4 ) they do not begin actually trading for another 6 to 8 weeks - so we have some time to experiment with the type of support that fits them best . tony and i agree that we would like to brainstorm this a bit with you guys to see what exactly can be produced daily - as efficiently as possible . we should be able to add any lat / long points we want to the list of international cities streaming through from the mrf / avn / ecmwf from earthsat . the problems here would be the models ' problems handling tropical weather along with specific local effects - especially in indonesia . let ' s talk about this at some point and get our thoughts together . steve",0 +"Subject: re : enron offsite - the great divide - april 27 , 28 , 29 and 30 th hello all : fyi ! how is the headcount coming ? - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 23 / 2000 09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" steve collins "" on 03 / 23 / 2000 09 : 41 : 19 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : enron offsite - the great divide - april 27 , 28 , 29 and 30 th hello ! the 29 th will be fine - - if we can definitely get everything in by then . i just worry a little when we start getting less than a month out . we need to make sure that our conference services office has enough time to detail all of your functions properly so that everything flows smoothly . also please know that the availability of those $ 274 airfares is also not guaranteed until booked ( you know how those airlines are about changing fares around ) . we need to be able to book a specific class of service to get that fare , so once those are gone the fare cannot be guaranteed . do you want me to get started with the air contract ? please keep me posted ! thanks ! steve steve collins national sales manager the village at breckenridge / great divide lodge ( 800 ) 332 - 0424 or ( 970 ) 453 - 3156 direct scollins @ vailresorts . com > > > "" shirley crenshaw "" 03 / 23 / 00 08 : 12 am > > > good morning steve : i received your voice mail and the flight information sounds great ! i need to update you as to the status of everything at present . the contract is fine , however , i am not authorized to sign it , so if it is allright , we are putting "" john griebling ' s "" name in my place . he will sign the contract and we will put the charges on his credit card . however , john is out of town and will not be back in until tomorrow . this may cut it a little close as to getting everything back to you by monday , the 27 th . is there a possibility of getting this deadline pushed back a couple of days ? we are also having a problem getting a commitment from the top management people - they are all out of town at present . this does not involve very many - only 3 or 4 people , but we need to get a definate count so that we won ' t be short on rooms . if everyone can come , it looks like we might need at least 39 rooms . we should be able to have everthything to you by the 29 th - is this a problem ? please let me know as soon as possible . thanks and have a great day ! shirley crenshaw telephone : 713 - 853 - 5290 fax : 713 - 646 - 2503 e - mail : shirley . crenshaw @ enron . com",0 +"Subject: update on energy book vince , ? just to let you know , the books will be shipped to both you and rice university tomorrow by express mail , which means the books should arrive within 5 days ( depending on customs ) . ? rice has purchased 25 books , and i informed them that if they don ' t sell them all , we will ? credit their account ? with the amount of unsold copies . ? i ' ve asked them to ? give you ? any extra copies instead of returning them . ? please find attached the invoice for the 50 books . ? thanks again , and if you need anything further , please let me know . ? julie - enron 224 _ 10 _ 01 _ 01 . doc",0 +"Subject: re : clustering for power jaesoo , as we discussed last week on wednesday meeting can you , please , implement clustering for power curves by geographical region . this involves the following : 1 . deciding together with risk control how many geographical regions we want to use and which enron ' s curves belong to each region . 2 . deciding together with risk control how to choose core curves for each region . this decision can be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations . 3 . doing regression analysis for each curve versus the corresponding core curve . winston , can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ? should we wait for the stage re - fresh and what is the status on this ? tanya .",0 +"Subject: re : move research employee from one location to another on the 19 th floor shirley , your request has been scheduled for march 23 rd . erica : ) shirley crenshaw 03 / 17 / 2000 12 : 16 pm to : move - team / epsc / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , william smith / corp / enron @ enron , kevin g moore / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , clayton vernon / corp / enron @ enron subject : move research employee from one location to another on the 19 th floor hello all : attached is a churn request to move clayton vernon from ebl 943 to ebl 952 . he will need 3 boxes and labels delivered to his ebl 943 location , a few days before you schedule his move . if you need any other information , please let me know . thanks and have a great weekend !",0 +"Subject: re : recent hardware repair joe , we are extremely pleased with the support we receive from your team . the problem was fixed very quickly . vince from : joe langston / enron @ enronxgate on 04 / 27 / 2001 11 : 31 am to : vince j kaminski / hou / ect @ ect cc : subject : recent hardware repair vince , recently the hardware services team performed work on a piece of equipment for you . the technician that performed the work was jd marter , and this is just a follow up to insure that your problem was resolved . it is our goal to provide you with the best service possible , so please feel free to respond to this email if you have any comments that may help us provide you better service in the future . attached you will find a work log detailing what was done to resolve your issue . if you have any questions , or if the problem is not completely resolved please feel free to contact me . thank you , joe langston team lead hardware services office : 713 - 345 - 8883 cell : 713 - 545 - 5912 pager : 877 - 239 - 2794",0 +"Subject: re : white wall board anita , no problem . vince anita dupont @ enron 08 / 18 / 2000 10 : 27 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : white wall board shirely : amitava wants one of those wall size white marker boards for his office . how do i go about ordering one of those ? anita",0 +"Subject: re : craig - thanks for the feedback . i ' ve received similar reports from other research customers on various non - recurring and on - going projects elena has been able to help out on . the most recent member of a long line of rice mba candidates who have "" made a difference "" in our research efforts , elena will be staying with us throughout this next ( her final ) year . she ' ll be working the morning shift . please let us know if she , or any other member of our group can assist you in any way . - mike",0 +"Subject: interview - credit derivatives dear vince : thank you for the invitation yesterday . it was a pleasure to meet you all and learn more about the group , it ' s structure and to some extent what you are involved in . please extend my thanks to all of them . i am particularly interested in the credit swap trading platform that enron has recently started . such a platform will provide unique visibility into the credit markets . as you suggested i tried to learn more about this from tanya . i would like to learn more and if possible meet other people more directly linked to the effort . just simple instruments like credit swaps will require serious modelling capability for the pricing and the hedging of these apparently simple intruments . the market visibility i mention above can be explored through credit derivatives trading successfully if enron possesses superior ( vis a vis morgan stanley , salomon smith barney , chase manhatan , etc . ) modelling technology in credit derivatives . i can and would like to consider the possibility of doing this for enron . i would like to help develop and participate in putting together that business . as i mentioned to you i have done some work in credit derivatives and am deeply familiar with virtually all the work of the principal academics in credit derivatives namely : duffie , lando , tuffano , duffee , das , lelland , etc . i have read carefully most of their work ( published as well as working papers ) on the subject to date . i look forward to hearing from you . best regards joao",0 +"Subject: feedback forms vince , here are the feedback forms for the following : vp and md manager and professional administrative support let me know if you have any other questions . norma x 31545",0 +"Subject: boss ' s day vince , happy boss day ! you have been a wonderful boss , thank you . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 10 / 16 / 2000 08 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 10 / 16 / 2000 05 : 58 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect , anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles weldon / hou / ect @ ect , shane green / hou / ees @ ees , yana kristal / corp / enron @ enron , praveen mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance cunningham / na / enron @ enron , shirley crenshaw / hou / ect @ ect , david ryan / corp / enron @ enron , todd decook / corp / enron @ enron cc : subject : boss ' s day reminder - let your boss know that you care ! tell him or her happy boss ' s day ! happy boss ' s day , vince , mike , vasant and stinson and also to you shirley , i hope you all have a wonderful day . also remember the weather team will be over at ninfa ' s for 3 : 30 p . m . for happy hour . today you are welcome to join us . . . . . . . . . . . .",0 +"Subject: @ ect . enron . com email notification ! we are one @ enron . com ! please be aware of the following senders were automatically notified to ( a ) . stop sending internet mail to your @ ect . enron . com address and to ( b ) . send future internet communications to vince . j . kaminski @ enron . com : j _ martin @ baylor . edu , cantekin @ mail . utexas . edu reminder : your @ ect . enron . com address should not be used any longer and will be deactivated soon . so please make sure these contacts switch to your new @ enron . com address . if you have subscribed to mailing lists , please make sure to update your addresses there as well . and your shortname @ enron . com address ( i . e . jsmith @ enron . com ) will continue to work , even though your formal address is longname @ enron . com ( i . e . john . smith @ enron . com ) please do not reply to this message as it was automatically generated .",0 +"Subject: * * get together * * dear friends : fall happy hour friday , september 15 , 2000 after work : 5 : 30 pm - - 8 : 00 pm ragin cajun - - on the patio ( the new location ) westheimer at gessner ( the randalls shopping center on the corner ) 832 - 251 - 7171 feel free to bring friends ! hope to see you there ! ! jana",0 +"Subject: congratulations vince : congratulations on your promotion . i know it is well deserved ! i have not seen you in a while since i am not riding the woodlands bus much these days . i am expecting a baby for the end of february 2000 and it is much easier to drive than to ride the bus ! take care and congratulations again , darlene norris",0 +"Subject: yesterday i enjoyed meeting you both yesterday to discuss my sincere interest in the research group . since many of the rotations for analysts are pre - determined , i think it is best for me to wait until my candidacy for the analyst program is finalized . thank you for your interest in my skill - set . i am enrolled in the cfa program , have completed numerous futures / options courses in undergraduate school , and am confident that my profile will be well - received after completing your in - house project which will be utilized to test certain skills . i ' ll talk to you soon after my discussions with the analyst program . regards , david",0 +"Subject: re : argentina power & gas market modelling team , for me it  % s ok . let us know the confimed date early , so we can arrange our classes . thanks diego julian poole 03 / 17 / 2000 10 : 35 am to : michael guerriero / enron _ development @ enron _ development cc : vince j kaminski @ ect , grant masson @ ect , jeff kabel / enron _ development @ enron _ development , rodolfo freyre / enron _ development @ enron _ development , diego hollweck / enron _ development @ enron _ development , bernardo andrews / enron _ development @ enron _ development , mario aguilar benitez / enron _ development @ enron _ development , santiago subject : re : argentina power & gas market modelling all , let ' s arrange a conference call next week to discuss the process . how does tuesday afternoon fit everyone ' s schedule ? julian enron international from : michael guerriero 03 / 17 / 2000 03 : 49 pm to : vince j kaminski @ ect , grant masson @ ect , jeff kabel / enron _ development @ enron _ development , julian poole / enron _ development @ enron _ development , rodolfo freyre / enron _ development @ enron _ development , diego hollweck / enron _ development @ enron _ development , bernardo andrews / enron _ development @ enron _ development , mario aguilar benitez / enron _ development @ enron _ development , santiago cc : subject : argentina power & gas market modelling i would like to initiate a team to address the continued improvement of the argentine power & gas market models . i spoke with vince this morning and we reviewed that history of work to date and what we will need to do from here . a summary is as follows : team : ba members : julian poole lead mario benitez associate ba associates : diego hollweck associate bernardo andrews associate santiago porta associate houston members : to be named . time schedule : as soon as possible . completed before june 1 , 2000 winter in argentina . scope of work : power model : advance the current model from basic load forecasting to incorporate weather , hydrology , improved short term and long term forecasting . natural gas model : build a supply and demand load forecasting model incorporating weather , thermal demand , pipeline flow rates , well head supply , improved short term and long term forecasting . phase i - data request power historic weather : temperature - daily , hourly , min , max , average humidity precipitation cloud cover regionally forward weather : temperature - daily , hourly , min , max , average humidity precipitation cloud cover regionally historic hydrology : reservoir levels reservoir capacity current hydrology : reservoir levels remote monitoring : aireal , pressure device , laser snow pack : density volume and mass power supply : current and future capacity transmission capacity : current and future capacity natural gas data list to be developed phase ii - power model development phase iii - natural gas model development we will take advantage of the fact that the associates are in houston for the next two weeks . vince is out next week but we can start with a process discussion with grant masson next week . julian please get a meeting scheduled as soon as possible . we should immediately start collecting data . thanks mfg",0 +"Subject: re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: new basis report bhavna : the basis report has been updated to cover 2000 prices . it is called basisnw 7 . xls and is in the erg database . it looks to be working correctly , but of course without data it is a little hard to confirm . as always , it is ultimately your job to verify that the numbers reported are correct . lemme know if there are problems . it is easy to change the spreadsheet to start a new year . you should keep this mail message as a reference . 1 ) add 12 to the expression in "" printmacro "" ! b 35 i . e . change copy ( offset ( henrycash , 12 * againstyear + 63 , i , 12 , 1 ) ) to 2 ) define a new cell reference on the basis page for the first date to be printed out on the report page . for example , last year , the basis report went from jan 93 to dec 1999 . in basisnw 6 . xls there is a name "" jan 93 "" defined as "" basis "" ! a 64 ( i . e . refers to the row where the jan 1993 basis numbers are recorded ) . this year , in basisnw 7 . xls , i defined "" jan 94 "" to refer to "" basis "" ! a 76 . that ' s because the basis report will now run from jan 1994 to dec 2000 . 3 ) change the expression in "" printmacro "" ! b 45 to use this new cell reference i . e . change copy ( offset ( jan 93 , 12 * indexyear , report , 12 , 1 ) ) to 4 ) having executed steps 1 ) - 3 ) the spreadsheet will now print numbers shifted up by one year . all that remains to do is to change the dates on the "" printformat "" page to be one year more . by that i mean change 1998 to 1999 , 1999 to 2000 , change 98 / 99 to 99 / 00 , etc . don ' t move any numbers or formulas ! that ' s it . as we discussed bhavna , while i am happy to do this for you , it is not in your or my best interest for this to continue . please do work to find some one in your shop to maintain this spreadsheet . regards , and happy new year ! grant .",0 +"Subject: re : ruewan ' s resume no interest for global risk markets . his background does not address the needs . vasant",0 +"Subject: re : fw : pserc nuggets related to market stem hi vince and happy new year good to hear from you and i can understand being busy . i am myself trying to balance my commitments here . like any research consortium pserc is trying to provide value to its members while walking the fine line between cooperation and competition . we are definitely not in the business of providing proprietary research to the members but rather working on more generic areas that later individual members could see way to convert to proprietary tools . the work that shijie deng and rajnish kamat have been doing with me are good examples . as to my trip , thanks for the invitation but i already committed myself to get back friday night so i will save my visit for another time . i will tell my son about the spring interviews at cornell . hopefully this time he will not miss it . regards , shmuel - - - - - original message - - - - - from : to : cc : sent : monday , january 08 , 2001 1 : 40 pm subject : re : fw : pserc nuggets related to market stem > > hello shmuel , > > thanks for your message . the end of 2000 and the beginning of 2001 were > extremely busy > and i could not focus on pserc issues . i shall consult a few people in > enron on this subject and get in > touch with you . our concern right now is that the results of research are > widely shared with > our competition . > > i am out on the 19 th , but the 20 th would work for me . i would be glad to > cover the cost of your austin > to houston trip . > > regarding your son . the analyst / associate program will interview again on > the campus > in the spring and they will be more than happy to interview him . > > > > > > "" shmuel oren "" on 12 / 19 / 2000 01 : 40 : 02 pm > > to : > cc : "" dennis ray "" , , > > subject : fw : pserc nuggets related to market stem > > > hello vince > happy holidays . > i wanted to connect with you regarding the possibility of enron joining > pserc . as you might have heard from lance and alex we are going through a > transition period having doubled the number of universities and industry > members within the last year . consequently , our business processes are not > well developed . one of the problems we are facing is the balance between > the > electrical engineering folks and industry members that are more interested > in market related research . i hope to recruit more of the later so tat we > have more of a constituency in the advisory board that sees the value of > market related research . i already have a verbal commitment from people at > electrabell that expressed interest in joining pserc . with members like > electrabell and enron we will be able to support more market stem projects > such as the one that shijie deng proposed ( not funded in this round ) . > please > let me know if i can do anything to facilitate the decision at enron . i am > going to be in austin on january 19 to participate at a puct hearing and > could come through huston for a visit . attached are some items that i > shared > with our pserc members and thought that you might be interested in them as > well . > regards , shmuel . > > - - - - - original message - - - - - > from : "" shmuel oren "" > to : "" power systems engineering research center "" > sent : tuesday , december 19 , 2000 9 : 47 am > subject : re : pserc nuggets related to market stem > > > > the following are 3 items that demonstrate the impact of pserc research > in > > the market stem area . > > > > 1 . on december 12 , i ( shmuel oren ) testified at a hearing in san > francisco > > before the blue ribbon panel ( chaired by alfred kahn ) for the that is > > investigating the implications of uniform price vs . pay as bid auctions > in > > the california px . as part of my testimony i presented a movie produced > by > > tim mount and bob thomas that show results of an experimental economic > study > > showing how bidders respond by raising their bids in a pay as bid > auction . > > following is an acknowledgement i received . > > > > dear shmuel : > > > > > > thank you for attending the blue ribbon panel this past tuesday in san > > francisco . your presentation was very informative and valuable to all > the > > panel members and other participants . the panel greatly appreciates your > > involvement in this important project . > > > > > > thanks again , > > natalie efland > > > > > > 2 . a recent e - mail from the texas puc > > > > professor oren , i hope you and your family are doing well . we are > seriously > > considering your help and advice to facilitate the commission ' s final > > decision regarding retail competition in ercot . > > > > i wanted to let you know that ercot stakeholders filled an application > for > > approval of the ercot protocols in november . we received comments > including > > list of issues on november 22 and reply comments on december 1 . staff > will > > draft and submit a preliminary order to the commissioners for their > > discussion on december 13 . there will be a pre - hearing on december 15 > when > > parties will be asked to brief the commission on list of issues by the > end > > of first week in january . there will be a hearing on january 16 followed > > with another hearing if needed . parties have asked the commission to > > finalize its decision by mid march . > > > > to give you some more background , i have to mention that almost most of > your > > suggestions were accepted and will be reflected in the final protocols , > > except for problems with intra - zonal gaming regarding congestion > management > > and pay - as - bid compensation for selected ancillary services . a few > > additional concerns are raised regarding ancillary services and > congestion > > management . stakeholders are still working toward more load > participation > > in ercot market . however , the main problem is the fact that market > ( pilot > > that covers 100 % of wholesale , but only 5 % of retail load ) will be open > on > > june 1 , 2001 based on a version of the protocols locked on august 1 , > 2000 . > > ( that was the deadline for ercot to give a final design to anderson > > consulting . ) that version does not include some of your recommendations > to > > address market design flaws . the full version is highly possible to be > > implemented by january 1 , 2002 when market for 100 % retail competition is > > scheduled to open . given this gap , some parties have recommended not to > > implement incomplete protocols and wait for full implementation by > january > > 2002 . in other words , they say let ' s go ahead with 5 % pilot retail load , > > but wait for full design implementation before allowing 100 % wholesale > load > > ( and retail load ) be subject to the rules of the game described in the > final > > protocols . > > > > thanks . > > > > parviz adib , ph . d . > > director of market oversight division > > public utility commission of texas > > 1701 n . congress avenue > > p . o . box 13326 > > austin , texas 78711 - 3326 > > ph . no . : 512 - 936 - 7365 > > > > 3 . the following is a segment from a published summary of the dec 13 puct > > hearing . this segment describes the commision ' s deliberation on an agenda > > item addressing the possibility of instituting price caps as part of the > > ercot protocols . ( see reference to my involvement in the next to last > > paragraph ) > > > > docket no . 23220 - petition of the electric reliability council of > texas > > for approval of the ercot protocols . ( discussion and possible action ) > > parviz adib , jess totten , keith rogas , and tammy cooper > > chairman wood turned to page 2 item number 3 of the draft order > identifying > > issues , recommending that the word "" including "" be changed to "" other than "" > in > > the parentheses . he thinks they know the ups and downs of the two > > mechanisms , which are bid caps and price caps , but would not mind having > > parties focus on what other protections might be used . commissioner > walsh > > would say "" including , but not limited to "" because she does not think it > is > a > > bad idea for ercot to at least consider in their protocols a fail - safe > > mechanism . it ' s kind of like the stock market suspending trading when > > something crazy happens . they could consider a maximum scenario , such as > > "" we don ' t think this will ever happen but if it does we need to muffle > it "" , > > whether it is $ 1 , 000 or $ 99 or whatever it is . they could consider > whether > > to put into the protocols a self - enacting price cap . while not expecting > it > > to happen , if it did , you don ' t have to declare it an emergency and have > the > > commission have to act . chairman wood asked if they could leave the > > question without the parenthetical at all and just say "" what protections > > should be added to avoid extreme price spikes . "" commissioner walsh > > reiterated that she wants ercot to think about the unlikely possibility > of > > unacceptable price spikes . she would like for them to have their own > > fail - safe mechanism that is self - initiating as opposed to leaving that to > > having someone have to come in and act . commissioner perlman stated that > he > > thinks the california - type price caps is what the concern is about . he > > thinks everyone in this state is opposed to those , but he thinks the > point > > commissioner walsh is making is an interesting one . he had not thought > > about the circuit breaker idea , and it might have some merit . he agreed > > that it was worth considering something like that . then the question > > becomes what the level is . chairman wood suggested the wording "" what > > self - implementing protections should be added to avoid the price spikes . > > commissioner perlman said he did not think anyone is talking about $ 250 > > price caps . commissioner walsh agreed , but noted that if the unexpected > > happens we should be prepared . commissioner perlman indicated that if > > someone is making $ 10 , 000 in one particular hour that it probably does > not > b > > enefit the market and is probably a windfall to them . it is not > something > > they would normally put in their business plan for determining whether > they > > are going to build a plant in texas . chairman wood stated that they want > to > > lean toward the market as heavily as they can on these issues . > > > > chairman wood noted that some of these issues date back to when dr . oren > was > > assisting the commission , and asked if he could be brought back again . > > staffer dr . parviz adib said that staff had already talked to dr . oren > and > > that he is available to assist the commission further . chairman wood > noted > > that dr . oren had helped people think outside the box without just > focusing > > on california . > > > > the final wording was clarified to state "" self - implementing mechanisms "" > and > > to delete the parenthetical part of the sentence in question . the order > was > > approved as amended . > > > > > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : mec steve , i spoke with david ealier today . he is planning a meeting with jim tour to due diligence the technology . i would like to put together a team to drive mec ' s strategy , including a consolidation in houston . we would trade this commitment for warrants in the company and a right to participate in future fundings . effectively , our team could help drive the strategy for the company and due diligence a possible investment at the same time . thanks , mark steven j kean @ ees 07 / 26 / 2000 05 : 11 pm to : mark lay / hou / ect @ ect cc : rex shelby / enron communications @ enron communications @ ect , mike mcconnell @ ect , vince j kaminski / hou / ect @ ect , philippe a bibi / hou / ect @ ect , kenneth lay / corp / enron @ enron @ ect , fabricio soares / hou / ect @ ect subject : re : mec i think it would be useful to verify their view that they are really only 2 - 3 years from commercial production . ideally , we could get that confirmation from someone familiar with the technology but without any financial interest in its success . their technology pitch sounded good , but i don ' t know enough to recognize the potential shortcomings . i want to feel comfortable that you all feel this is real , then i would be happy to have me and my team spend some time with them . to : rex shelby / enron communications @ enron communications , steven j kean / hou / ees @ ees , mike mcconnell , vince j kaminski / hou / ect @ ect , philippe a bibi / hou / ect @ ect cc : kenneth lay / corp / enron @ enron , fabricio soares / hou / ect @ ect subject : mec thank you for participating in yesterday ' s meeting . we spoke with harvey and jim after the meeting and they took to speed to market comments to heart . there is an opportunity for enron to participate with mec in the early development of their company , but it seems the one thing they want is the one thing we also want , people . i would appreciate your thoughts and comments on the possiblity of creating a small team that could work directly with mec as part of a potential investment and strategic relationship . given our resource constraints , this would most likely be part of the organization that sees the greatest strategic impact from mec ' s development . mark x 37408",0 +"Subject: re : spring 2001 conference participation by jeffrey k . skilling ehud , i shall send a message to jeff ' s secretary today . vince "" ehud i . ronn "" on 09 / 20 / 2000 11 : 12 : 46 am to : rcausey @ enron . com , vkamins @ enron . com cc : subject : spring 2001 conference participation by jeffrey k . skilling rick / vince , good morning . in my 9 / 14 e - mail , i advised you of the practitioner - industry cefer ( center for energy finance education and research ) conference we are planning for spring 2001 . as you know , we would like to invite jeff skilling to be the keynote speaker at the thur . evening dinner . the following day ' s four topics consist of risk management , deregulation , real options , and international / globalization . the majority of invitees would be ( predominantly u . s . - based ) energy - industry practitioners , as well as several academics . given lead time issues in these matters , we have reserved hotel rooms in austin for feb . 22 , 2001 . could i ask you to ascertain jeff skilling ' s availability for that evening ? thanks , ehud ronn ehud i . ronn professor of finance and jack s . josey professor in energy studies director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : greetings from garp frank , looks good . vince enron north america corp . from : frank hayden @ enron 12 / 12 / 2000 11 : 31 am to : vince j kaminski / hou / ect @ ect cc : subject : greetings from garp vince , this is the announcement i ' m thinking about sending out . is there anything else you would like to add ? frank greetings from garp ! we are having the next meeting january 30 th at enron . time 6 : 30 pm until 8 : 30 pm vince kaminski will lead a discussion regarding volatility in the energy markets . please rsvp to rita hennessy . her email address is rita . hennessy @ enron . com",0 +"Subject: re : benchmarking study sally , thanks . the name of the person is at the bottom of this sequence of messages . vince enron north america corp . from : sally beck 01 / 05 / 2001 09 : 27 am to : vince j kaminski / hou / ect @ ect cc : subject : re : benchmarking study i passed this information along to some of my direct reports for their thoughts , and truthfully didn ' t hear back from anyone and didn ' t follow up . two years ago , we agreed to be part of a benchmarking study that was done by aa ' s houston office ( interestingly enough , wes colwell was the aa partner who led this effort ) and we had mixed results . the study was designed to cover gas and power . despite our involvement in the steering committee , the study itself was very , very detailed , such that it was troublesome to complete . jim fallon at the time refused to submit information on the majority of the questions surrounding power , so our survey data for power was not very useful . i would agree that at this time we will pass on this request . thanks for passing it along , however . i would be happy to convey this directly to the person that has contacted you . just let me know his / her name and number and i will follow through on that if you would like . hope that your holidays was enjoyable and that the new year will be a good one for you . - - sally vince j kaminski 01 / 03 / 2001 03 : 29 pm to : sally beck / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : benchmarking study sally , i gave you some time ago a brochure on this benchmarking study request . they renewed their request for enron ' s participation . what is your view on this ? do you think the benefits of knowing what ' s going on offset the loss due information released and time spent on the project . my recommendation is to forget it . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 03 / 2001 03 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" theresa sanders "" on 12 / 27 / 2000 01 : 32 : 18 pm to : cc : subject : benchmarking study dear vince , peter nance and i wanted to follow - up our discussion of enron ' s participation in our benchmarking study . have you discussed enron ' s participation in the project with your colleagues ? here is a small sample set of metrics that were taken from a comprehensive list of over 700 metrics . the study group will decide which metrics to use . with eei ' s credibility and teknecon ' s technical expertise , we intend to become the industry standard in benchmarking . we would very much like to have enron participate in the study . i would be happy to set up another meeting with you and your colleagues with peter nance if you think that would be helpful . best regards , theresa sanders director of business development alliance of energy suppliers edison electric institute tel : 202 - 508 - 5183 - eei metrics - short list . xls - ebrochure . doc - riskbenc . ppt",0 +"Subject: re : research allocation thank you",0 +"Subject: re : tff 2001 meeting date question vince , i certainly understand . however , we are going to try to move the date up a week or two to make sure there are no conflicts for anyone . we ' ve had some trouble getting our hotel date even this far in advance . i ' ll be back in touch when we get it ironed out . john at 05 : 42 pm 8 / 23 / 00 - 0500 , you wrote : > > john , > > easter may not work for me because i shall most likely > be visiting my son who goes to school in california ( we were spending > easter together for the last three years ) . > > vince > > > > > > > "" john d . martin "" on 08 / 21 / 2000 01 : 42 : 14 pm > > to : aagrawal @ cba . ua . edu , andres almazan , > bethel @ babson . edu , murat binay , > abutler @ finance . bus . lsu . edu , tyrone . callahan @ bus . utexas . edu , murray > carlson , chapman @ eco . utexas . edu , kent > daniel , fdiebold @ stern . nyu . edu , > lederington @ ou . edu , harperl @ u . washington . edu , sgillan @ tiaa - cref . org , > stuart gillan , denis gromb , > grullon @ rice . edu , jarradh @ oregon . uoregon . edu , jhartzel @ stern . nyu . edu , > jhund @ mail . utexas . edu , daveike @ rice . edu , jegadees @ uiuc . edu , > cindy . justice @ enron . com , matthias kahl > , vince . j . kaminski @ enron . com , > zkhokher @ mail . utexas . edu , alynch @ debit . stern . nyu . edu , andras marosi > , "" john d . martin "" > , maxwell @ ba . ttu . edu , beth miertschin > , metrick @ wharton . upenn . edu , "" thomas h . > noe "" , parrino @ mail . utexas . edu , bill > petty , manju puri , > ramnath @ rice . edu , rampini @ nwu . edu , steve _ rich @ baylor . edu , > eronn @ mail . utexas . edu ( ehud i . ronn ) , kemal saatcioglu > , akin sayrak , > sirri @ babson . edu , laura starks , > suarez @ cemfi . es , "" a . subrahmanyam "" , > stice @ mailhost . tcs . tulane . edu , titman @ mail . utexas . edu , > stathis . tompaidis @ bus . utexas . edu , wangfa @ rice . edu , > hong . yan @ bus . utexas . edu , beth miertschin , > gwillard @ mit . edu > cc : > subject : tff 2001 meeting date question > > > hello from texas , > > we are trying to set up our meeting date for the 2001 conference and have > run into a snag . we cannot get our san antonio hotel on the first weekend > in april ( as last year ) . however , we can get the hotel and make all our > "" fun "" arrangements for the second weekend in april . however , this is > easter weekend . the good news is that the room rates are substantially > lower because it ' s a holiday . however , we are concerned that holding the > meeting on this particular friday - saturday will interfere with family plans > such that some or many of you may not be able to attend . > > my related question to you is this : > > does holding the meeting on the second weekend in april ( easter weekend ) > pose a problem for you ? please give us your thoughts asap even if you > think you may not be able to attend this year ' s conference . we need your > opinion to guide our decision . > > thanks and i hope to see you all again next april ( sometime ) ! > > john > > p . s . we are very fortunate to have enron return as our corporate sponsor > again this year . > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: spread option code change zhiyang and zhiyun , vince told me that london has some trouble to calculate spread option for correl = 1 , voll = vol 2 . in such a case , the effective volatility becomes zero , and the option has zero time value . i have modified the unitcorrpremium ( ) routine to force the code to treat this situation as a special case . ( it returns the discounted intrinsic value ) . please incorporate this chang to your code so that it will no longer cause any problems that should not happen in the first place . if you have any questions , please let me know . zimin - - - - - - - - - - - - - - - - - - - - - - - double unitcorrpremium ( double sl , double s 2 , double strike , double r , double ql , double q 2 , double voll , double vol 2 , double correl , double tmat , int opttype ) { double retval ; if ( tmat < = 0 . 0 ) return intrinsic ( sl , s 2 , strike , opttype ) ; / / look right here for the change , only two lines . if ( ( 1 . 0 - correl ) < tiny & setup ( sl , s 2 , strike , r , ql , q 2 , voll , vol 2 , correl , tmat ) ; if ( opttype ) retval = s . disc * gauherint ( ffuncoc ) / sqrtpi ; else retval = s . disc * gauherint ( ffuncop ) / sqrtpi ; return retval ; }",0 +"Subject: re : infocast ' s valuing electric power assets and companies : a real options perspective good morning , i am sorry , to hear that you will not be able to join us - would know of anybody else at enron who would possibly be interested in presenting at our conference ? thank you for your assistance in this matter - - - - - britta - - - - - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , april 13 , 2000 6 : 08 am to : brittab @ . com cc : vince j kaminski subject : re : infocast ' s valuing electric power assets and companies : a real options perspective britta , thanks for your message . i have several commitments at the time of the conference and have to decline with regret . vince "" britta bothe "" on 04 / 12 / 2000 03 : 52 : 46 pm please respond to to : cc : subject : infocast ' s valuing electric power assets and companies : a real options perspective dear mr . kaminsky , as i mentioned on your voice mail , infocast is going to host an ? valuing electric power assets and companies : a real options perspective ? conference to be held on july 31 - august 2 , 2000 , in chicago , il - i would like to explore your or your organization ' s possible participation at this event with you . this conference has been designed to bring together industry professionals , like you , to provide the latest details on a "" real options "" approach to electric power asset valuation . i have attached a draft program outline for your review . if you or someone else at your company is interested in presenting on one of the topics please let me know . i truly appreciate your taking the time to review the conference schedule and hope that you will consider participating . i am running behind schedule in finalizing this program . i will call you on tomorrow to follow up with you on this invitation . in the meantime , if you have any questions or suggestions , please do not hesitate to contact me at ( 818 ) 888 - 4445 , ext . 30 . i hope you can join us for this event . sincerely , britta bothe infocast conference manager ( see attached file : ea & cv , program outline , scenario 1 . doc )",0 +"Subject: ravi thuraisingham ' s skytel two way pager number here is the pager number that has been setup via jim irvine . email : 8776804806 @ skytel . com direct dial : 800 dial : 1 - 800 - 759 - 8352 box # 877 - 680 - 4806 i can be reached at this pager if you need to get me asap . ravi .",0 +"Subject: energycast please could you sort out an guest id for one month . - - - - - - - - - - - - - - - - - - - - - - forwarded by louise kitchen / hou / ect on 27 / 07 / 2000 13 : 59 - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 26 / 07 / 2000 09 : 05 to : louise kitchen / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : energycast louise , can we grant him guest access to eol again ? he is he same person who requested it a few weeks ago . evidently he was busy working on another project . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 26 / 2000 09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" edward krapels "" on 07 / 25 / 2000 11 : 09 : 47 am please respond to ekrapels @ esaibos . com to : vince j kaminski / hou / ect @ ect cc : subject : energycast dear vince , i hope your trip to australia was successful . it ' s one of my favorite places to go . i ' ve copied you on the email to mike initiating enron ' s trial service to energycast . thanks for helping to set this up . would you ask the authorities in enron to refresh my access to enrononline ? my guest user id as ena 61296 and my guest password was tr 84 byl 3 . they no longer work , probably because i haven ' t visited the site in months as we were in full development mode on energycast . vince , you will note in our website references to forward prices of power in nepool , nypp , and pjm . we use reuters as a reference - - not satisfactory . if your traders like energycast and enron became a client , would enron consider linking its prices to our site ? we have to improve over the reuters quotes and regard enrononline or bloomberg as the best candidates . over time , as our service spreads i believe this could help generate deal flow for your traders . let me know what you think . ed",0 +"Subject: enterprise risk paul bristow gave me a call a few minutes ago , and is sending over some info . i also received an email yesterday relating to operational risk . evidently cibc has purchased some software to help quantify there exposure . - kevin - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 08 / 08 / 2000 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" tao , xin "" on 08 / 07 / 2000 12 : 26 : 00 pm to : undisclosed - recipients : ; cc : subject : press release - netrisk announces sale of riskopstm software to c anadian imperial bank of commerce and erste bank > please find attached an update on our most recent riskops sales . in > addition , we are currently implementing riskops at a continental european > financial insitution and a tokyo based japanese financial institution , > neither of whom are more members . we hope to issue a press release on > these clients in the near future . > > kind regards , > > lara swann > > > > > > > netrisk announces sale of riskopstm software > to canadian imperial bank of commerce and erste bank > > > greenwich , ct . july 11 , 2000 - netrisk , inc . , the risk management software > and advisory firm , today announced that both canadian imperial bank of > commerce ( cibc ) and erste bank have purchased licenses to its riskops ( tm ) > software product for measuring and managing enterprise - wide operational > risk . operational risk includes the risk of direct and indirect loss from > causes as diverse as rogue trading to technology failures to improper > sales practices . > > erste bank , the second largest austrian bank , and canadian imperial bank > of commerce , the second largest canadian bank , plan to use riskops ( tm ) on > a continuing basis to help evaluate and quantify their firm - wide > operational risk capital . the results will be integrated into their > risk - adjusted return on capital ( raroc ) and consolidated enterprise > ( market , credit and operational ) risk measures . these measures will help > both banks to better allocate resources , evaluate individual business > units on a risk - adjusted basis and improve strategic decision - making . > > "" we are delighted to continue our working relationships with cibc and > erste bank by offering the riskops ( tm ) solution to complete their > operational risk measurement and management processes , "" says dan mudge , a > founding partner of netrisk . "" operational risk has been at the forefront > of the regulators ' minds and both cibc and erste bank are taking leading > positions in the industry by quantifying capital at risk by business > line . "" > > "" riskops ( tm ) has enabled us to comprehensively measure and manage > operational risk for each of our businesses , "" says tony peccia , head of > operational risk management at cibc . "" riskops ( tm ) gives us the tools we > need not only for capital allocation purposes but also for strategic > decision making . "" > > "" the formal inclusion of operational risk into our overall risk management > framework has required a significant commitment of erste bank . > riskops ( tm ) will be used to estimate capital at risk for each business , > thereby creating an incentive for stronger risk management within the > bank , "" says franz reif head of risk management of erste bank . "" in > addition , we plan to work with swiss re new markets to evaluate our risk > financing alternatives to ensure our capital is being used most > efficiently . "" > > "" netrisk is pleased to continue its leadership role in helping the > financial services industry develop methods and tools to quantify and > manage operational risk , "" said rob ceske , head of netrisk ' s operational > risk management division . "" as another example , the data standards we are > developing in conjunction with multinational operational risk exchange ( tm ) > ( more ( tm ) ) , which includes cibc , will significantly benefit the industry ' s > ability to exchange loss and risk data . "" > > riskops ( tm ) incorporates a database of published operational risk losses > from the financial services industry , combined with web - based software to > allow users to understand operational risk , analyze loss probabilities , > scale these losses to their firm and determine operational risk profiles , > including operational capital - at - risk . the product displays graphical > analyses of the causes , effects , probabilities and severities of > operational risk , specific descriptions of events and measures to help > senior management and risk managers understand and quantify the sources of > operational risk . riskops ( tm ) is available via the internet , by means of > any standard browser . > > about netrisk > netrisk ' s mission is to bring cost - effective , practical , leading edge risk > solutions to its clients . to do so it is creating on - line communities and > risk analytic software delivered via the internet . products and services > offered by netrisk include : riskops - internet - based operational risk > management solution ; crystal box - interactive performance and risk > reporting for the investment professional ; and risk advisory - enterprise > risk management consulting , advice and solutions to the financial services > industry . gene shanks , the former president of bankers trust , founded > netrisk , inc . in 1997 . netrisk has offices in greenwich , ct ; new york > city ; and london . additional information on netrisk is available at > http : / / www . netrisk . com / and on more at morexchange . org . > > about canadian imperial bank of commerce > canadian imperial bank of canada is canada ' s number two bank . its 1350 > branches a range of banking services , including checking and savings > accounts , investment products , mortgages and other loans , and credit cards > to consumers and small to mid - sized businesses . in addition , the bank > underwrites and sells life , credit , personal property / casualty , and > non - medical health insurance . cibc world markets provides investment > banking and other financial services in north america , europe and latin > america . > about erste bank > erste bank is austria ' s oldest and second - largest commercial bank . the > bank is doing business in six core segments : retail banking , corporate > banking , treasury , trading and sales , and real estate financing and asset > management . it has approximately 300 branches with international offices > in new york , hong kong , and london . as austrian banks consolidate , erste > bank is increasing its presence in eastern europe . it has subsidiaries in > croatia and hungary and acquired 52 % of the shares in ceska sporitelna , > the second largest bank in the czech republic from the czech government . > one of erste bank ' s largest shareholders is savings foundation > anteilsverwaltung sparkasse . > > > > >",0 +"Subject: re : ( no subject ) candice , maureen was sick for the last few days . when she comes back , i shall ask her to start the process regarding a formal offer for you . vince cedkao @ aol . com on 01 / 24 / 2001 11 : 00 : 52 am to : vkamins @ enron . com cc : shirley . crenshaw @ enron . com , cedkao @ aol . com subject : ( no subject ) dear dr . kaminski , i would like to thank you and your colleagues , dr . gibner and ms . raymond - castaneda , for taking the time to talk with me . i enjoyed the visit very much and will be looking forward to the opportunity of working as a summer intern at enron . you mentioned that you will call me this week . in the event i ' m not at home , please leave a message at my home phone number ( 713 ) 647 - 7161 or email me at my houston email address cedkao @ aol . com . sincerely , candice kao",0 +"Subject: a resume for your consideration vince , stinson : i gave a talk to a bunch of uh mba students taking a course on options . one of the more interesting of the inevitable stream of resumes is the enclosed . perhaps an ebs hire ? grant - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 04 / 24 / 2000 08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" matthew crouse "" on 04 / 21 / 2000 05 : 06 : 08 pm to : grant . masson @ enron . com cc : subject : uh lecture and potential career opportunity dr . masson , i attended your lecture at uh and enjoyed it tremendously . if possible , i would like to investigate a career opportunity with your group in particular or enron in general . would you please review my resume and / or forward to potentially interested parties ? in tandem will all of enron ' s other propaganda efforts , your top - notch lecture at uh spurred me to do some soul searching . i currently work at duke energy trading and marketing , but have been extremely impressed with enron ' s cutting - edge research and market - leading position . i have a ph . d in electrical engineering from rice ( statistical signal processing ) with two years of experience at duke relating to the valuation , risk management , and risk measurement of financial derivatives and physical assets . i seek a similar position that would allow me to leverage my quantitative skills and grow within in the corporation . i believe i would be a great fit with enron and hope you would consider me for a potential position . best regards , matt crouse get your private , free e - mail from msn hotmail at http : / / www . hotmail . com - matt crouse cv . doc",0 +"Subject: re : fw : opportunities gerry , i may have unexpected meeting ( s ) in the morning . please , keep trying and i shall try to call you as well . vince "" sheble , g . b . "" on 10 / 27 / 2000 09 : 09 : 16 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : fw : opportunities vince since we were not able to connect this morning , would you identify any other time as convenient for you ? should i try monday morning ? thank you gerry = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = gerald b . shebl , professor , electrical and computer engineering director of complex adaptive systems program 1115 coover hall ames , iowa 50011 voice : 515 . 294 . 3046 fax : 515 . 294 . 4263 email : gsheble @ iastate . edu web : http : / / www . ee . iastate . edu / ~ sheble / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =",0 +"Subject: re : contract update got the copies and i have the corrected copies for you . will have them hand delivered to you this afternoon . sheila - - - - - original message - - - - - from : kaminski , vince sent : wednesday , march 07 , 2001 8 : 37 am to : walton , sheila cc : kaminski , vince subject : re : contract update sheila , there were some handwritten changes made by greg whalley on the draft . . i am sending you a copy in a few minutes . vince from : sheila walton / enron @ enronxgate on 03 / 06 / 2001 06 : 05 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : contract update vince , if there are some differences that we need to correct , you and i can meet tomorrow when you bring the contract in . i am available anytime after lunch . please call me at x 30649 . sheila - - - - - original message - - - - - from : kaminski , vince sent : tuesday , march 06 , 2001 3 : 10 pm to : sheila walton / hou / ect @ enron cc : kaminski , vince subject : contract update sheila , some minor differences between the draft and the final executed version . i have forgotten to bring the draft today , i shall send a copy to you tomorrow . there were some hand - written changes made by greg ijn the draft that were not transferred to the final version . vince",0 +"Subject: new resume dear vince , i am so grateful for your efforts . i really appreciate you taking time from your busy schedule . if you have not contacted michael maddox , it ' s even better . i have updated and re - worded my resume to better reflect my accomplishments . would you please contact michael maddox of cera and forward my resume to him ? his contact information is ( 617 ) 497 6446 or email : mmaddox @ cera . com have you had a chance to talk to david port ? maybe there are other options . i am flexible and willing to do whatever it takes . sincerely , bessik matchavariani manager enron broadband services tel : 713 . 345 . 7230 fax : 713 . 646 . 8861 bessik _ matchavariani @ enron . net",0 +"Subject: re : status vince - understood . i am going to request two days of vacation , for monday and tuesday . clayton",0 +"Subject: request for update vince , hopefully you have had a chance to look at mr . valverde ' s resume . please let me know if you have an interest in talking with him or not . thank you . johan johan c . dahl director energy staffing group management recruiters of portland , inc . phone : 503 - 290 - 1153 fax : 503 - 282 - 4380 e - mail : jdahl @ mrportland . com web : http : / / www . mrportland . com",0 +"Subject: comments hi sheridan , how are you ? i hope that you had a good vacation . vasant and i looked at your memo and found it to be interesting . i shall first briefly summarize our understanding of the methodology you propose . the comments follow . finally , i shall sketch a simple gas field project you can use as a test case in further refining the model . it appears that you are proposing a state - space approach where probabilities of different states at various future dates are specified . the next step is to assume a discount rate and to compute the present value by following the branches from the origin to one of the terminal points . traversing through the tree in this manner over many iterations will permit us to compute the average present value of the project . also , you are using the simulation to assign a value of the project to each node . thus each node will have a cash flow associated with it which will occur if the node is reached and a value which is an expectation of the value to be realized going forward . if some of these values turn out to be negative , zero - coupon , risk - free bonds are purchased to neutralize the negative realization . next , we find a comparable and apply the expected rate of return back to our project ( based on the variance of the returns ) . we iterate until convergence . finally , we subtract the initial investment and the computed risk capital from the pv of the gross cash flows ( including debt ) to determine if the project merits further consideration . comments / clarifications 1 . the money is being set aside to avoid negative values . it is not clear if you mean the values of the cash flow or the pv at the node . anyhow , we shall be setting aside money not just for that specific node but all nodes at that cross - section of time as the risk - free asset pays in all states of nature . this will have to be done every time there is a negative realization . thus , for the typical project we have , the value of risk capital may be extremely high , as we are not following a tail - based norm anymore . 2 . your memo appears to suggest that debt capacity is contingent on all values being positive . if so , we are only issuing risk - free debt . also , a project with a single negative value at each cross - section of time will not have a positive debt capacity . 3 . it seems that our optimization argument is the discount rate , which is obtained in each step from the comparison investment ( by equating the variances ) . it is not clear if changing the discount rate will have such an effect on the project variance so as to lead to a global convergence . also , our project has a finite life and the market - based assets will have infinite lives . in the light of this fact , how will we define the relevant variance ? is it the spot variance of the returns of the comparison investment ? 4 . finally , our criterion is to subtract from the average pv the investment and also the risk capital . setting risk capital to zero , this model closely resembles the intuitive present value criterion and endogenously determines the discount rate . gas field case to facilitate your thinking , we are providing a gas field example below . we invest x million dollars to buy and develop a gas field . a profile of expected production and variance of the production per year is available from the engineers at the beginning . production will be autocorrelated , as the profile will shift up or down based on the actual gas reserves being more or less than the estimated reserves . we assume the life of the field to be 10 years with no salvage value . there are fixed and variable operating costs . it might be useful for you to think about applying the framework to this problem . do let me know if you have further questions . rakesh",0 +"Subject: re : vince , sorry for getting back a little late . i have been in touch with kirstee to figure out how to treat positions data which is the primary cause for fluctuations . apparently , as of 7 / 19 , mg still has july position . this may be spot or balance of the month , or some settlement issue . this indeed is what we are trying to find out / verify ( it may be an error too ) . kirstee is going to get back to me on this . if it is not an error , then anjam ' s latest results ( $ 5 . 5 million total var ) are reasonable given all the assumptions and the missing pieces . i will keep you posted . cantekin vince j kaminski 07 / 26 / 2000 10 : 12 am to : cantekin dincerler / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , ted murphy / hou / ect @ ect subject : re : cantekin , can you figure out the reason for cocoa beans var fluctuations ? the same is true of aluminum . i assume this is the position change . vince cantekin dincerler 07 / 26 / 2000 09 : 28 am to : anjam ahmad / lon / ect @ ect , kirstee hewitt / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : anjam and kirstee , as i have suspected the position as of 6 / 30 vs 7 / 19 makes the difference . the first table first column is my var number with 6 / 30 position and gold & silver prices , the second column is your var with 7 / 19 position and dummy gold & silver prices . the second table first column is my var with 7 / 19 position and 6 / 30 gold & silver prices , the second column is as before . i would ask you to plug the gold and silver prices and see what kind of numbers you get in order to verify we are on the same page . please refer to modelvar 2000 . xls that i have sent you for gold & silver prices and volatilities . thank you , cantekin table 1 table 2",0 +"Subject: faculty contact and schedule persentation please respond to dear mr . kaminski , the following are the faculty details : ms . deborah j . barrett instructor & dir . , mba communications phone 713 - 348 - 5394 barrett @ rice . edu mr . wil uecker associate dean for executive education phone 713 - 348 - 5869 uecker @ rice . edu mr . dennis wayne loughridge adjunct professor - management phone 713 - 348 - 4869 lounghrid @ rice . edu i will also speak with the faculty and inform them about the details concerning the presentation on may 7 at enron office ( time to be determine ) and the dinner following it . sincerely , luigi calabrese rice mba candidate class of 2002",0 +"Subject: re : jaesoo lew vince , we should start working on the offer for jaesoo , should we ? tanya . jlew @ kent . edu > on 11 / 01 / 2000 09 : 59 : 25 am to : tanya . tamarchenko @ enron . com cc : jlew @ kent . edu subject : thanks dear tanya , thank you very much for the offer . basically , i can start at anytime if the condition is acceptable . currently i ' m in the middle of a decision that i can extend my internship or accept a job offer at here . but i think that decision should be done soon since my original internship expires this week . so the exact time to start work at enron depends on how quickly i can get your official offer including employment condition . i hope this will help to your question . if you have any question on me , please feel free to contact me . again , i appreciate your decision . sincerely , jaesoo lew",0 +"Subject: organizational announcement enron is off to a fantastic start this year as we continue strong growth in our wholesale energy businesses and begin rapidly developing a global market for premium broadband services . to help accomplish our goals in these businesses , the following management appointments are effective immediately : kevin p . hannon has been appointed chairman and ceo of enron global risk management . in his new role , kevin will devote the vast majority of his time and efforts to building a successful bandwidth intermediation business for enron , in addition to providing global risk management oversight . kevin will report to enron  , s office of the chairman and will serve on the executive committee . because of his efforts to build bandwidth intermediation capabilities , he also will report to the office of the chairman of enron broadband services . greg whalley has been named president and coo of enron north america , where he will fully dedicate his efforts to ena  , s continued growth and success . greg will retain responsibility for ena  , s risk management functions but will transition his global responsibilities to kevin . please join us in congratulating greg and kevin in their new positions .",0 +"Subject: moody ' s upgrade to the great and powerful research group : as you may know , moody ' s has recently upgraded enron from baa 2 to baal . we had been on watch for an upgrade for a while and after their intitial credit meeting , they still had questions primarily related to our control of market and credit risk . to that end , jeff mcmahon and tim despain had rick buy , bill bradford and i meet with eight members of the moody ' s team . the questions centered around policy and procedure in the wholesale businesses . we discussed var , stress testing and potential credit exposure . to make a long story short , subsequent to that meeting , they reconvened their committee and announced the upgrade . i want you to know how critical your contribution was to the discussion and will continue to be as the bar gets raised . i am sure that next year they will continue to be concerned with our risk management capabilities as well as extensions of our current platform - tail risk , intra day risk , operational risk , and enterprise wide risk . thank you for your efforts in supporting rac - it has tangible benefits . ted p . s . - there is still lots of interesting opportunities to extend the paradigm",0 +"Subject: research mike , vince and i are eager to see if our group can play a role in helping you in your development work using some combination of the or experts in our group and the resources to which we have access at stanford . can we get together for a short planning session when you are next in houston ? please let me know your schedule , or have your assistant coordinate a time with vince ' s assistant , shirley crenshaw ( x 35290 ) . thanks , stinson",0 +"Subject: warning system greg , as a follow up . we are talking to jay webb today about the data we can get from the enron online system to develop an early warning system for automated crude trading . by the way , it was a good catch . you left us red faced . vince",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: re : recruiting at carnegie - mellon john , i haven ' t received the invitation yet to the sep 13 th meeting . i shall contact you thursday regarding the cmu presentation . vince john b gordon @ enron 08 / 23 / 2000 05 : 01 pm to : vince j kaminski / hou / ect @ ect cc : subject : recruiting at carnegie - mellon vince : i understand that you are the lead recruiter for cmu . as you know , i am the only alum from that school in enron ' s associate program . i assume i will be joining you for our corporate presentation on 9 / 13 at 7 : 30 am . please let me know what i can do to help prepare for this event . enron and gsia are a great fit , so i want this recruiting effort to go well . are you also giving a talk / lecture to the computational finance students ? if so , what time ? maybe we can schedule a lunch with duane seppi . i look forward to hearing from you . john gordon",0 +"Subject: thank you for the opportunity hello vince , i have heard you were sick . hope it is over . thank you for the opportunity to visit enron , again , and to speak to the guys . you have a good team . i wonder if you have come up with a decision regarding my employment ? look forward to hearing from you . regards , martin",0 +"Subject: holiday gift basket thank you , so very much for the gift basket , it is beautiful , i will share with the group . happy , happy , holiday ' s ! dolores sustaita & move - team",0 +"Subject: re : carl tricoli i think i will coordinate with zimin , and have guadalupe do some research on equities linked to corn price . initially , there will be some scenario analysis done , and we can explore the possible use of options theory . vasant vince j kaminski 04 / 05 / 2000 02 : 41 pm to : carl tricoli / corp / enron @ enron cc : zimin lu / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : carl tricoli carl , depends if it is more like financial or insurance type hedging . i shall leave it to vasant to decide . vince carl tricoli @ enron 04 / 05 / 2000 11 : 19 am to : vince j kaminski / hou / ect @ ect cc : zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , christopher a helfrich / hou / ect @ ect subject : re : carl tricoli vince , thank you for the response . in the interim , we met with vasant shanbhogue yesterday and explained the deal and what we needed . should vasant continue to work on it , or would you still like us to loop in zimin lu ? vince j kaminski @ ect 04 / 05 / 2000 10 : 11 am to : zimin lu / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , carl tricoli / corp / enron @ enron subject : carl tricoli zimin , carl tricoli ( 5 - 8958 ) will call you regarding help on ethanol ( hedging ) . vince",0 +"Subject: re : recruiting for weather risk management group hello vince , thank you very much for forwarding the message . i hope all is well with you ! regards , heather on fri , 27 apr 2001 vince . j . kaminski @ enron . com wrote : > > heather , > > i am forwarding this message to 2 groups in enron that may be interested . > > vince > > > > > > "" heather thorne "" on 04 / 26 / 2001 08 : 55 : 56 pm > > to : "" christie patrick "" , "" vince kaminsky "" > > cc : "" greg hunt home "" > subject : recruiting for weather risk management group > > > > > dear vince and christie , > > > > i hope that you are both well , and are ready for the onset of summer in > houston ! ? i was disappointed that i was not able to see you at the final > tiger team presentations last month due to a family emergency . ? i hope that > the teams ' analyses will be helpful to your work , and echo their > appreciation of your involvement and support . > > > > i am writing with a question regarding recruiting for enron ' s weather risk > management group . ? my boyfriend , greg hunt , is currently seeking > opportunities to combine his background in meteorology ( ms and 2 years of > research at lawrence livermore nat ' l lab ) and an mba in finance and > information technology . ? i began thinking about enron ' s work in weather > derivatives , and realized that there could possibly be a great fit there . > > > > i have copied greg on this message , and would appreciate any suggestions > you can offer regarding opportunities in this group . ? thank you very much ! > > > > best regards , > > > > heather > > > > > > > > > > heather n . thorne > > mba candidate , 2001 > > the wharton school at university of pennsylvania > > 2516 pine street > > philadelphia , pa 19103 > > ( 215 ) 545 - 3022 > > > > > >",0 +"Subject: risk management it offsite meeting notes fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 08 / 24 / 2000 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : maureen craig @ ees 08 / 23 / 2000 06 : 19 pm to : dennis benevides / hou / ees @ ees , scott yeargain / hou / ees @ ees , ress young / hou / ees @ ees , timothy j hamilton / hou / ees @ ees , barend vanderhorst / hou / ees @ ees , ford cooper / hou / ees @ ees , megan corley / hou / ees @ ees , steven r meyers / hou / ees @ ees , burt bailey / hou / ees @ ees , dave roberts / hou / ees @ ees , james w lewis / hou / ees @ ees , mallik avs / hou / ees @ ees , travis julian / efs / ees @ ees , ryan tull / hou / ees @ ees , glenn dickson / hou / ees @ ees , scott stoness / hou / ees @ ees , neil hong / hou / ees @ ees , sanjay agarwal / hou / ees @ ees , david draper / hou / ees @ ees , monica hwang / hou / ees @ ees , cathy pittenger / hou / ees @ ees , kenneth lee / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect , osman sezgen / hou / ees @ ees , tony spruiell / hou / ees @ ees , sean a holmes / hou / ees @ ees , wanda curry / hou / ect @ ect , meredith m eggleston / hou / ees @ ees , chuck hahn / sfo / ees @ ees cc : marty sunde / hou / ees @ ees , mike harris / hou / ees @ ees , mohsin manzoor / hou / ees @ ees , stephen douglass / hou / ees @ ees , john krakoski / hou / ees @ ees , brian haskett / hou / ees @ ees , kelly cunningham / hou / ees @ ees , bernard felefli / hou / ees @ ees , rudy tobias / hou / ees @ ees , michael clark / hou / ees @ ees , terry caudill / hou / ees @ ees , wpicker @ us . ibm . com , james welsh / hou / ees @ ees , james johnson / hou / ees @ ees , ben castro / hou / ees @ ees , carol moffett / hou / ees @ ees subject : risk management it offsite meeting notes the ees / ibm it team would again like to thank all of you for your vigorous participation in last weeks it needs analysis workshop . in particular , we would like to extend appreciation to jay , dave roberts , and dennis for their business presentations . thanks , as well , to meghan corley , barry vanderhorst , burt bailey , and glenn dickson for presenting their individual area needs , to meredith for overall assistance in creating and delivering the agenda , and to marty for his sponsorship and support . the team is currently assimilating the results and formulating an action plan to address priority 1 , 2 , and 3 needs . actions to address many priority 1 items are underway . we will be reporting on this in marty ' s weekly staff meeting . attached below are the results from the meeting , as well as copies of all materials that were presented . any additional feedback is welcome and encouraged . apologies to any participants that do not appear on this distribution . one thing we failed to do was to take an attendees list . please forward to your team mates , accordingly . thank you , maureen craig and john krakoski",0 +"Subject: re : global risk management operations rick , i read your memo regarding global risk management initiative . i am sending you the information regarding a related initiative on which i have been working last year and which is moving now into the implementation stage . it ' s enterprise - wide risk management and it ' s really an effort to measure business risks consistently across the company . i hope my group can be helpful in designing the general approach to this problem . please , let me know what your thoughts are . vince enron north america corp . from : rick causey @ enron 01 / 17 / 2000 06 : 04 pm sent by : enron announcements @ enron to : all enron worldwide cc : subject : global risk management operations recognizing enron  , s increasing worldwide presence in the wholesale energy business and the need to insure outstanding internal controls for all of our risk management activities , regardless of location , a global risk management operations function has been created under the direction of sally w . beck , vice president . in this role , sally will report to rick causey , executive vice president and chief accounting officer . sally  , s responsibilities with regard to global risk management operations will mirror those of other recently created enron global functions . in this role , sally will work closely with all enron geographic regions and wholesale companies to insure that each entity receives individualized regional support while also focusing on the following global responsibilities : 1 . enhance communication among risk management operations professionals . 2 . assure the proliferation of best operational practices around the globe . 3 . facilitate the allocation of human resources . 4 . provide training for risk management operations personnel . 5 . coordinate user requirements for shared operational systems . 6 . oversee the creation of a global internal control audit plan for risk management activities . 7 . establish procedures for opening new risk management operations offices and create key benchmarks for measuring on - going risk controls . each regional operations team will continue its direct reporting relationship within its business unit , and will collaborate with sally in the delivery of these critical items . the houston - based risk management operations team under sue frusco  , s leadership , which currently supports risk management activities for south america and australia , will also report directly to sally . sally retains her role as vice president of energy operations for enron north america , reporting to the ena office of the chairman . she has been in her current role over energy operations since 1997 , where she manages risk consolidation and reporting , risk management administration , physical product delivery , confirmations and cash management for ena  , s physical commodity trading , energy derivatives trading and financial products trading . sally has been with enron since 1992 , when she joined the company as a manager in global credit . prior to joining enron , sally had four years experience as a commercial banker and spent seven years as a registered securities principal with a regional investment banking firm . she also owned and managed a retail business for several years . please join me in supporting sally in this additional coordination role for global risk management operations .",0 +"Subject: re : new business h ? lyette , i am working systematically through un - answered messages . yes , i shall be delighted to meet your friend . vince helyette geman on 04 / 05 / 2001 04 : 58 : 47 am to : vkamins @ enron . com cc : vkaminski @ aol . com subject : new business dear vince , a friend of mine , head of research and new projects in a major bank , wanted to get in touch with the energy industry to possibly develop working relationships . i said that enron was the right place to start and "" you "" the right person to meet . in this order , he would come to the power 2001 and i would introduce him to you . is this o . k with you ? best regards helyette h ? lyette geman professor of finance university paris ix dauphine and essec",0 +"Subject: re : lng may 19 decision vince - thanks for the update . what i am not sure of is what if any decision has to be made on may 19 . it seems to me that the mystic lady and elba island deals have already been approved and executed - but it is quite likely i am missing a detail or two . john vince j kaminski 15 / 05 / 2000 17 : 14 to : john sherriff / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , david gorte / hou / ect @ ect , rick buy / hou / ect @ ect , ted murphy / hou / ect @ ect subject : re : lng may 19 decision john , this is the update on what i have done for the lng transactions . 1 . i was not involved in the lng ship project . i shall read the dash and give you my comments . without looking at the details , i think that the decision to charter a tanker removes one significant risk we have at the elba island project ( please , see point 2 ) . 2 . elba island . i am working with doug rotenberbg , brad hitch , scott earnest ( sally beck ' s organization ) and rac to set up the book for the elba island transaction . the next step will be to expand the book to capture all the enron ' s lng - related positions in one place and to look for natural risk offsets and possible hedges . a working group is meeting to close a few remaining gaps tomorrow ( tuesday ) at 8 : 30 . a few comments on the book design and my view of the project : a . the current thinking is that lng will be sourced for the elba island facility by buying marginal cargos on the fob basis . marginal cargos will represent supply from excess capacity that has not been committed under long - term contracts or became available due to some short - term frictions . the fob cargos are typically selling at a significant discount to the long - term contract prices . the economics of the deal , as represented by the book we are setting up , will reflect the assumption that not only we can locate marginal cargos but that we shall be able to do it on a regular basis , arranging shipping and coordinating the facility schedule and natural gas transactions in the us . in other words , we have a significant logistical and operational risk in this transaction . b . the transaction will cover the period of 17 years ( with an extension option of 5 years ) . even if we can lock - in the lng volumes over this time period , we have no ability to lock - in the other side of the spread ( us gas prices ) for such a long tenor . this is essentially a tolling transaction with exposure to the lng - nat gas spread and i would not recommend locking - in only one leg of the spread . one solution would be to cover , let ' s say , 50 % of he lng volumes for the first 5 years and lock - in the nat gas side on the us market side . c . the book we are setting up will be based on many managerial assumptions regarding sources of lng , shipping rates , schedules , etc . i would set up a big prudence reserve in case we mark it to market . d . my group will work on valuation of some options we have in the elba island deal ( that are good for enron ) and on the hedging strategy for the lng positions . long - term lng contracts are typically based on the japanese crude cocktail that correlates very well with brent . vince john sherriff 05 / 14 / 2000 01 : 40 am to : vince j kaminski / hou / ect @ ect cc : lauren urquhart / lon / ect @ ect subject : lng may 19 decision vince i haven ' t spoken to you for awhile but hope the world is treating you well . anyway with greg moving to his new role i have ( i hope only temporarily ) staff trading oversight for the eastern hemishere plus lng . i understand that your group is taking a first cut at developing curves for lng and lng ship values . i also understand that another lng ship decision is on the dockets for may 19 ( not very far away ) . anway i understand this is a big decision but i still have gotten very little info yet . can you please let me know where you stand now ? i will ask my assistant lauren to set up a time that i can speak with you in the next couple of days and if you have anything for me to review before then she can get it faxed to me as well . look forward to connecting with you vince . john",0 +"Subject: re : message from ken rice dorothy , no problem . please , cc - mail me tom ' s number . one of the members of the group has a phd in computer science and he will join me for the call . vince from : dorothy dalton @ enron communications on 05 / 01 / 2001 08 : 53 am to : vince j kaminski / hou / ect @ ect cc : subject : message from ken rice vince : ken rice received a call through a friend ' s referral from dr . tom limperis ( a professor at the university of michigan ) . dr . limperis has developed a statistical database management system he would like to show enron . ken would like you to return this call on his behalf . he feels that you are probably the only person who will understand and be able to determine if enron should have an interest . do you mind returning this call ? please let me know . thanks ! dorothy dalton office of the chairman enron broadband services 1400 smith street , eb 4505 houston , tx 77002 713 - 853 - 6724 - direct 713 - 853 - 9469 - fax",0 +"Subject: financial mathematics course - urgent hi vince , in order to provide the marketing department with sufficient lead time for our financial mathematics course , the brochure will need to be printed by the end of next week . i would like to confirm the bullets for your two sessions at the 2001 series of courses . if you feel that there is little need to update the points i ' ll include the previous outlines . the one addition i would like to make is on the ' practical example ' point at the end of each session . if we could provide a line outlining what the example would be , this would add some important information to this event . i will be in the office until wedesday afternoon and would very much like to talk with you about your views on this years ' event . i will be out of the office on thursday and friday and will need to confirm my changes at the start of next week . i look forward to speaking with you soon . best wishes , paul bristow",0 +"Subject: re : wednesday meeting eric , we are looking at the model . i shall get back to you next week . vince enron north america corp . from : eric groves 09 / 06 / 2000 08 : 55 am to : vince j kaminski / hou / ect @ ect cc : subject : re : wednesday meeting vince , i was wondering if you or someone in your group has had a chance to overview the lng shipping model that i sent you . merritt thomas is sending me more data to add the to model on all of the other ports and nautical miles . i would like to to have your input on the functionality of this file before we go farther . please call with any questions or comments . thanks , eric vince j kaminski 09 / 06 / 2000 08 : 26 am to : eric groves / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , scott earnest / hou / ect @ ect subject : re : wednesday meeting eric , i think we can skip the meeting and discuss any issues between us . the meeting was convened at the request of doug arnell , but jeff shankman thinks that there is no need for formal meetings : we can ask them for the information directly on as needed basis . vince enron north america corp . from : eric groves 09 / 05 / 2000 11 : 01 am to : vince j kaminski / hou / ect @ ect cc : subject : wednesday meeting are we still having the meeting tomorrow ? at what time ? thanks , eric",0 +"Subject: december 6 th meeting dear mr . kaminski : this is to confirm the december 6 th meeting here at our center . the location for the meeting is room # 3212 steinberg hall - dietrich hall and the time will run from 9 : 00 am - 11 : 00 am . please let us know if you need anything further . we look forward to seeing you then . regards , theresa convery ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ theresa convery administrative assistant risk and decision processes center the wharton school of the university of pennsylvania ( 215 ) 898 - 5688 / fax : ( 215 ) 573 - 2130 tconvery @ wharton . upenn . edu",0 +"Subject: today ' s gathering hello , vince ! i was planning to stop by damian ' s this evening , but i think i ' ll go home instead . i ' ve contracted a sneezy cold , and i don ' t want to spread it around anymore than i already have . thank you for putting this together . i ' ll have to make the one in january for sure ! sam",0 +"Subject: welcome to - energy news live dear vincent kaminski , welcome to energy news live - http : / / www . energynewslive . com ! you are receiving this email as a result of your recent registration . free energy news live membership we ' re glad you ' ve joined us ; we think you ' ll find enl an amazing business tool , with live , up - to the - minute news every hour on the hour of every business day . insight from actual traders . exotic and proprietary weather modeling . a new cross - commodity index . we ' ll break every energy headline around the world , and bring them right to your desktop . so sign on , leave it on , stay on top . and enjoy your membership to energynewslive . com , the first real - time energy network . also , thank you for your request to receive more information from energynewslive . com . keep checking your email for updates and special offers . if you did not request to receive special offers from enl please click here to de - activate : you have also indicated that you would like to receive a daily video wrap - up from energynewslive . com . if you did not request to receive a daily video wrap - up from enl please click here to de - activate : sincerely , the energy news live team",0 +"Subject: re : simon , i shall bring a floppy to paris . vince "" simon turner "" on 09 / 29 / 2000 10 : 13 : 47 am please respond to "" simon turner "" to : cc : subject : re : vince this works . are you attaching your presentation for next week ? ? thanks simon - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : simon @ localbloke . freeserve . co . uk cc : vince . j . kaminski @ enron . com date : wed 27 september 2000 5 : 04 : pm > test > > vince kaminski > >",0 +"Subject: czesc ludmilo , wicku i wicusiu co slychac . w polsce zimno , ponuro , w gdansku aktualnie odwilz , co sprzyja grypie . uciekamy przed grypa na tydzien do bialki tatrzanskiej pod zakopanem . bylismy tam w zeszlym roku przez 4 dni w zimie i bardzo nam sie podobalo . gory w zimie sa naprawde piekne . bylismy pierwszy raz w zimie w gorach od 25 lat . bardzo bedziemy chcieli wpasc jutro do pabianic ( albo w drodze powrotnej do gdanska ) . nie wiem , czy to sie uda , bo wieczor zapada bardzo wczesnie , a ja nie moge jezdzic w nocy . latwo sie mecze i szybki zasypiam . bylem u twoich dziewczyn we wrzesniu , przypominalem sobie stare czasy jak nocowalismy u was z rodzicami , ojciec siedzial na lezaku pod jablonia . ech . bylo , minelo . slyszalem , ze wicusiowi idzie nadzwyczajnie . pamietam , jakim ty byles ulubienicem taty ( peptydy w juracie , pamietasz ) . michal ze swoja narzeczona wybiera sie w lecie do ameryki . chcialby podszkolic sie w angielskim i przy okazji troche popracowac . oboje studiuja medycyne na trzecim roku . jak myslisz , mogliby znalezc prace w houston ? czy moglbys im w tym pomoc ? oni chcieliby tylko znalezc prace , nie chca was w niczym absorbowac . co o tym myslisz ? jak bedziesz znowu w polsce , daj znac . musze z przyjemnoscia powiedziec , ze poglady polityczne eli , jadzi i nasze sa identyczne . nawet nie mamy sie o co poklocic . generalnie sie zgadzam z balcerowiczem , ale uwazam , ze reforma zdrowia jest do d . doznajemy tego na wlasnej skorze . trzymajcie sie cieplo i do uslyszenia . pa , pa adam t . chemat @ softel . gda . pl",0 +"Subject: important information about united healthcare - please read ! to : houston area employees participating in the domestic medical plan benefits you may have recently received communication from united healthcare ( uhc ) concerning memorial hermann health systems ' ( mhhs ) decision to terminate their contract with uhc in the houston / beaumont area . this communication also included the names of physicians who will be dropped from the network due to this action . it is our intent to help you understand the situation . it is our understanding that memorial herman health systems asked for a 40 % increase in fees - a substantial increase that would have been passed on to you and enron ! when united healthcare attempted to negotiate with a counter proposal , memorial hermann cancelled their contract . while this contractual arrangement was between the hospital system and uhc , enron continues to support uhc in their ongoing contract negotiation efforts . at this time , it is only uhc which has been affected , however , it is our understanding that cigna has also been contacted by the hospital group and may be in contract negotiations at this time as well . many doctors have obtained admission privileges to other area hospitals within the uhc network or have contracted directly with uhc including those with admission privileges to the woodlands , sugarland and clear lake hospitals , to name a few . in a further effort to limit disruption to our affected employees and families who are enrolled in the uhc network or epo options , enron has authorized uhc to process claims incurred between september 28 and december 31 , 2000 as if the termination of the memorial hermann health systems from the network had not occurred and in - network benefits applied . office visits will have a $ 10 copayment and all other charges will be covered at 90 % . hospital admissions will still need to be pre - certified with uhc . these steps have decreased the number of participants ' affected by primary care physician disruption from 1 , 050 to 127 . if you need medical attention : you or your doctor / hospital must call uhc ' s customer service number so proper benefits can be verified . in some cases the hospital or doctor may request payment at the time service is performed . if this should happen , please obtain an itemized statement and submit it to uhc with a claim form for prompt reimbursement . claim forms can be obtained by calling 1 - 800 - 332 - 7979 or in houston at 713 - 853 - 7979 ( press 1 ) . open enrollment materials will be coming soon . take this opportunity to consider your elections for 2001 . united healthcare and enron hr are committed to assisting enron employees through this transition . we will communicate any further developments that may impact you or your family .",0 +"Subject: sample day - ahead lmp postings message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : from 04 / 10 / 00 through 05 / 12 / 00 , pjm will be posting sample day - ahead prices produced using the two - settlement software and generation bids and ties schedules as bid into the pjm real time market . perturbations may be applied to the demand bids in order to illustrate the impact of total demand mws bid on day - ahead lmps ( such perturbations will be discussed in the day - ahead case description file ) . sample prices will be posted for weekdays only . these prices are for illustration purposes only . they will not be used in any pjm settlements . sample lmps will be posted in a csv file using the following name convention yyyymmdd - da . csv . the names of files initially posted for 4 / 10 / 00 and 4 / 11 / 00 have been changed to this name convention . questions may be directed to pjm customer service at ( 610 ) 666 - 8980 . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: california update 3 / 06 / 01 executive summary ? if no comprehensive deal is reached by april 9 th , chances of bankruptcy increase due to a one day "" opt - out "" clause in all long - term power contracts . ? pg & e and state locked in tough negotiations , several issues on the table : puc - imposed requirement forcing pg state - 2 . 3 times book value vs . pg & e - 4 times book value ? pg & e will not use any of the $ 1 b secured last week to help their ailing utility . ? davis ' s announcement of long term power contract didn ' t include some details : of the 8 , 800 megawatts secured this far , only 6 , 000 are available this summer some of the "" long term contracts "" are really only for three months none of the contracts prevent california from buying peak demand on the spot market ? one the same day davis announced long term contracts , davis also quietly announce a 10 % rate hike . ? ferc may be the wild card in approving this deal . pg & e transmissions deal one thing that is still uncertain is pg & e . bankruptcy may still be a likely alternative if current negotiations to buy pg & e ' s share of the electric transmission grid fail to produce a deal by april 9 ( when all long - term power contracts being negotiated have a one - day "" opt - out "" clause they can exercise unilaterally if a "" comprehensive solution "" has not been reached by the state and its major utilities ) . according to sources close to senior pg & e officials , pg & e made it clear that any hope for a politically acceptable deal on the transmission lines depends on the california government ' s willingness to make a major financial commitment it has been completely unwilling to make until now . pg & e will not make a final deal to sell its grid unless davis agrees to relieve it of the puc - imposed requirement to be the "" electricity buyer of last resort . "" current state regulations make the utility companies ultimately responsible for generating or purchasing enough electricity at all times to supply california ' s energy needs . as long as the state steps in and makes those purchases , as it has for the past three months , the utilities are shielded from absorbing the losses generated by paying premiums for spot market power and selling to consumers who are shielded by low rate ceilings . but , pg & e officials are worried 1 ) this summer ' s supply and 2 ) davis ' s concern over how fast he is draining the state ' s budget surplus . if things get into a crunch this summer and davis makes a new decision that the state will pay only for the electricity it buys through long - term contracts , then pg & e will be left holding the bag . thus , as part of the negotiations over buying the electricity grid , pg & e is demanding a "" comprehensive solution "" that includes not being liable for cost differentials between the spot market purchase and what consumers are allowed to pay . state officials are in no mood to grant that kind of "" get out of jail free "" card , so the two sides remain locked in extremely tough negotiations that are complicated by three other factors : ( 1 ) pg ( 2 ) state legislative demands that the price davis negotiate for pg and ( 3 ) the ferc must "" positively approve "" any grid purchase by the state of california . the principal concern on the price front is that pg & e wants to sell the electricity grid for nearly four times the estimated book value of their transmission , while consumer groups insist that two times book value is the politically acceptable limit . "" we see 2 . 3 times book value as an absolute upper bound . there is no way pg & e will get more than that , whatever they think , "" according to the leader of one main consumer groups . "" we are going to try to force any deals down to about 2 . 0 in any case . "" negotiators for davis are also trying to ' proposition - proof ' any transmission deal to protect against a later ballot proposal . they think there are ways to do that , but not if the price of pg & e ' s part of the grid triggers a ballot initiative . remember , if davis ' s eventual solution triggers a ballot initiative , he will be running for re - election on the same ballot as a public initiative designed to overturn his solution . on the sacramento front - no one understands pg & e ' s motives the one question no one in sacramento can figure out is what kind of game pg & e is playing . in a three day period pg & e made a series of announcements that left everyone scratching their heads . ? late thursday , pg & e officials leaked information to california papers that they had agreed in principle to sell their part of the electricity transmission grid to the state , which seemed like obvious good news , but then made it clear in discussions that the price they were asking was at least 30 % above what the state was currently offering . while a deal can still be done , anything like the $ 10 billion pg & e wants would be very hard to get through the california legislature which needs to approve any purchase . ? late friday , pg & e officials announced that they had secured a $ 1 billion loan for the parent company ( not the electricity utility ) and would use the money to pay off bondholders , other creditors and to return $ 161 million to shareholders in a new dividend payout . not a cent of that money was earmarked to help the struggling electricity orphan of pg & e and that left at least one rating agency convinced that the company was more ready to send the utility into bankruptcy than had been previously understood . ? over the weekend , pg & e leaked a story claiming that it was willing to pay off its energy suppliers ' debt for 15 cents on the dollar right now . for generators who are having to make decisions each morning about whether to start legal actions that protect their rights in any eventual bankruptcy action or hold off on the assumption that the politics of this process will "" make them whole "" in a couple of months , that kind of trial balloon is extremely unnerving . thus , in a very short time period , pg & e ' s corporate owners showed they could access public credit markets with relative ease and then showed that they were unwilling to use these funds to smooth the way toward a solution to the energy crisis . davis has demanded that all of the major utilities absorb at least a part of the $ 13 billion debt they have accumulated since last summer and pg & e ' s fund - raising will harden and deepen those demands . as one senior political official told our source "" just when you think the corporate leadership of that company has insulted us as completely as possible , they come up with something even more outrageous . "" pg and some of these "" long - term contracts "" are actually only good for three months . none of these contracts , however , keep california from having to buy the most expensive peak demand electricity on the spot market . davis agrees on new consumer electricity rate hikes for next year while the media was concern with davis ' s announcement of long term contracts for california , of less concern to the media was davis ' s quietly announced a decision to let rates rise again for electricity consumers . the state will accept the 10 % emergency surcharge levied on consumers in january as a permanent increase as well as an additional 10 % increase for consumers that will take effect early 2002 when the old 1996 rate cut legislation expires . that would bring the average charge to about 8 cents a kilowatt hour . ferc the other major danger to the transmission line deal is that the federal energy regulatory commission can block the deal simply by failing to approve it in a positive vote . senior california officials and legislators doubt that ferc has jurisdiction , and believe that ferc would not dare stop a deal . but they may be wrong . "" the deal can only go through if ferc specifically signs off on the deal . its power over transmission deal is absolute , no matter what anyone says , "" according to source close to the president . there are three possibilities : 1 ) ferc could "" pocket veto "" it by not even putting it on agenda for discussion ; 2 ) the deal is put on the agenda but it gets voted down . the democrat on the commission , william massey , has already said he is opposed to it ; or 3 ) the commission could approve it but with condition that davis has to agree to bring the lines into a regional grid system . one complicating factor in the ferc decision , however , is that its chairman curt hebert , who is adamantly opposed to the transmission line sale , may not be around long enough to have his say . "" hebert is definitely not a shoo in for the ferc chairman position , "" says one washington official . two other appointments to the commission will soon be named , this official notes , and one of them "" could easily become chairman . """,0 +"Subject: wharton business plan competition hi anne ! thank you for your reply . enron is delighted to be a part of the wharton business plan competition ! first , our assistant in the university affairs group , melinda mccarty , will provide you with our logo . enron would definitely like to be judge in phase iii and participate in the venture fair , including the display table . as to the mentoring and university community program , let ; s discuss that further so i can better judge our way forward . after i ' ve had the chance to discuss all of this with our entire university affairs and wharton team here at enron , you and i can get together to plan a more difinitive participatory strategy for enron . i will call you next week . again , we at enron are very enthusiastic about participation with wharton in this mutually interesting endeavor . ! best regards ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 26 / 2001 06 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" stamer , anne "" on 01 / 26 / 2001 03 : 47 : 39 pm to : "" ' christie _ patrick @ enron . com ' "" cc : subject : wharton business plan competition dear christie : thank you for your voice mail . things are moving along nicely with the competition . phase ii deadline was today , so we hope to have some statistics in the next few weeks . i have attached the statistics from phase i , for your files . listed below are ways that enron could be involved , let me know in which ( or all ) of these enron would be interested in participating . * we want to start listing our sponsors , so it would be really good if we could get your logo . * also , does enron wish to be a judge in phase iii and the venture fair ( vf ) ? for phase iii , we would mail each judge about 3 full blown business plans to be ranked . we anticipate this taking no more than 1 afternoon * for the vf , we would need a judge to be present for the entire day . the vf is by invitation only and we anticipate about 350 students , venture capitalists , business entrepreneurs and faculty . the vf will be held in philadelphia on april 30 th . * at the vf we will provide an opportunity for our sponsors with a 6 foot table for exhibits or materials to hand out . we will need to know if you wish to use the exhibit space . * we plan on providing our 25 semi - finalist teams with one - on - one mentoring . if enron is interested , that would be about 1 / 2 or 1 day commitment . * there might be an opportunity for a workshop to the university community . would enron be interested in participating in something like this ? i look forward to working with you to make this year ' s bpc a success . thank you . sincerely , anne stamer > anne stamer wharton business plan competition wharton entrepreneurial programs the wharton school 419 vance hall , 3733 spruce street philadelphia , pa 19104 - 6374 215 - 746 - 6460 ( direct ) 215 - 898 - 4856 ( office ) 215 - 898 - 1299 ( fax ) stamer @ wharton . upenn . edu - phase ioverview . doc",0 +"Subject: another addition from enron tiger member vince : please add deepa mallik to the list , as well , as she is interested in a summer internship with enron . she said she forwarded her resume to you last week . will gladly resend , if necessary . thanks , donna > - - - - - original message - - - - - > from : fap > sent : friday , february 02 , 2001 2 : 04 pm > to : ' vkamins @ enron . com ' > cc : ' clayton . degiacinto . wgo 2 @ wharton . upenn . edu ' ; > ' hethorne @ wharton . upenn . edu ' ; thomas ; weigelt ; fap > subject : addition from enron tiger member > importance : high > > vince : > > please add clayton degiancinto as an applicant to a summer internship at > enron . he told me that he sent christie patrick his resume two weeks ago . > let me know if you need to have it resent . > > thanks , > donna",0 +"Subject: re : enron default swaps no hurry about those documents , i have so much to do already ! thanks and warm regards , darrell on mon , 2 apr 2001 vince . j . kaminski @ enron . com wrote : > > darrell , > > thanks . i am beating up on my group to accelerate preparation of > documentation for > the audit . > > vince > > > > > > j d duffie on 04 / 02 / 2001 03 : 35 : 31 pm > > to : > cc : > subject : re : enron default swaps > > > > hi vince ! > > i got those notes . they should indeed > be useful . the one from deutsche bank > is especially helpful ! > > i am suppose to know this stuff , as i teach it ! > > sorry about the delayed billing . > i have had trouble getting a bill > from my excellent asistant , taichi hoshino , > who has returned to goldman tokyo , > and has not been able to get anything else > done lately . i will try to get something out soon ! > > we had several energy people , > from several companies , at our credit risk > exec ed course last month . seems that > credit risk and power risk go > together these days ! > > warm regards , darrell > > > > > on fri , 30 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > darrell , > > > > i am sending you 2 technical notes on enron default swaps : i hope that > they > > will > > be useful . i shall read the articles on weekend . i am curious if you > > find these explanations satisfactory . > > > > we are very slow in preparing a number of technical documents > > for you for model reviews . we still hope you will be able > > to find some time to review our credit models ( for our london > > credit trading ) and var and option pricing related models . > > > > also , please check your invoices . i still think we owe you money . > > > > > > vince > > ( see attached file : cds vs as . pdf ) ( see attached file : cdsstrat . pdf ) > > > > > > > > > > darrell duffie on 03 / 28 / 2001 08 : 07 : 38 am > > > > to : vince j kaminski > > cc : > > subject : re : enron default swaps > > > > > > > > > > vince : according to a bank of america > > publication , your ( enron ) default swap spreads > > are consistently trading about 80 > > basis points wider than your asset swaps . > > any idea of what is going on here ? > > > > thanks for any guidance , darrell > > > > > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > darrell duffie > > mail gsb stanford ca 94305 - 5015 usa > > phone 650 723 1976 > > fax 650 725 7979 > > email duffie @ stanford . edu > > web http : / / www . stanford . edu / ~ duffie / > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > > > > > > > > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > darrell duffie > mail gsb stanford ca 94305 - 5015 usa > phone 650 723 1976 > fax 650 725 7979 > email duffie @ stanford . edu > web http : / / www . stanford . edu / ~ duffie / > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > > > > > darrell duffie mail gsb stanford ca 94305 - 5015 usa phone 650 723 1976 fax 650 725 7979 email duffie @ stanford . edu web http : / / www . stanford . edu / ~ duffie / ",0 +"Subject: december 11 prc meeting please mark your calendars for the december 11 , 2000 prc meeting to prereview vice presidents in the following organizations : enron north america enron industrial markets enron global markets enron networks enron south america apachi calme the meeting will be held at the st . regis hotel , 1919 briar oaks lane , houston in the plaza room . the meeting is scheduled from 8 : 00 am to 5 : 00 pm . for those of you who are part of the enron wholesale services group , please plan to be there at 8 : 00 am , as the first part of the meeting will be devoted to discussing prc results of groups below vice president , and manager to director / sr . director promotion nominations . the vice president rating is scheduled to begin at approximately 9 : 45 am . the telephone number of the hotel is 713 - 840 - 7600 . a complete agenda and details will be forthcoming later this week . for those of you in the organization units listed above , please be prepared to present and discuss your vice presidents . please feel free to contact me at x 36628 in houston , should you have any questions . sheila knudsen",0 +"Subject: re : weather course julie , i forwarded your message to the weather desk . i think you can cancel hyatt and save some money . vince "" julie "" on 02 / 19 / 2001 03 : 19 : 45 pm please respond to "" julie "" to : "" vincejkaminski "" cc : subject : re : weather course vince , enron is fine ( although i think we have to pay for the hyatt anyway ) . ? good discount ( i have a feeling that my idea of a good discount and the weather desk ' s idea is probably different ? ) : ? for the one day , $ 1100 per person . ? if you think that there will be ? around 10 people or more , then we can offer a day rate , regardless of the number of people . ? ? thanks vince ? julie ? ps - of course when i announced that we were cancelling , people started responding that they wished to attend . ? ugh ! ? - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie cc : vince . j . kaminski @ enron . com sent : friday , february 16 , 2001 4 : 05 pm subject : re : weather course julie , enron location makes more sense . no reason to pay for the hotel . also , i think that one day makes more sense . i contacted the weather desk about including other people at the training course . i think that they would be interested if they got a good discount . vince "" julie "" on 02 / 16 / 2001 09 : 39 : 37 am please respond to "" julie "" to : ? ? cc : subject : ? re : weather course vince , great . just to let you know , we decided not to wait on the indecisive ones , and postponed the open course . it ' s yours , whatever you want : ? 1 day ( specific to what you feel will be of the most benefit ) , 2 days , hyatt or ? enron , or not at all . i hope this doesn ' t cause problems for you . special deal , for sure . i owe my godfather . julie - - - - - original message - - - - - from : ? vince . j . kaminski @ enron . com to : julie cc : joseph . hrgovcic @ enron . com sent : thursday , february 15 , 2001 3 : 16 ? pm subject : re : weather course julie , that ' s definitely an option . we can ? provide the room . maybe we can cut with you a special deal for enron and ? increase the # of people attending . i am forwarding your message to our ? weather desk . vince joe , what do you think about ? it ? vince "" julie "" on ? 02 / 15 / 2001 08 : 20 : 24 am please respond to "" julie "" to : ? "" vincejkaminski "" cc : subject : ? weather course vince , we just wanted to let you know ? that we only have 3 people signed up for the weather derivatives course ? ( all from enron ) so far . we have a couple more that have expressed strong ? interest , but we are awaiting their final decision . if no one else signs ? up , chris and les thought that you guys could probably get through the ? first day pretty easily , and thus thought it may be an option to teach just ? the 2 nd day material ( pricing ) only at enron ( doing it at the hyatt is an ? option as well but the room might be on the large side ) ? we would ? obviously reimburse you for the day not taught . we can teach both days as ? well , but thought you may want to save some time . i just wanted to give ? you some time to think about it . we will know where we stand on final ? numbers by next ? wednesday . julie",0 +"Subject: re : fw : mtg . scheduled frank , regarding simulating power prices in var we might discuss the following items and show some results : 1 . clustering for power : - clustering based on historical prices and correlations from them ; - geographical clustering ; - flexibility in choosing "" core curves "" ( based on position size ) ; 2 . jump - diffusion process for intramonth and prompt month : - parameter estimation from historical data ( do we want to use it ? ) - working out parameters ( jumps frequency , jump size ) as stress scenarios ; 3 . correlations within a cluster and across clusters . 4 . changing correlations estimations ( using fixed contact ' time series ) . 5 . joint estimation of factors for selected regions . let me know what you think should be in the agenda for this meeting . regards , tanya from : frank hayden / enron @ enronxgate on 04 / 18 / 2001 03 : 43 pm to : tanya tamarchenko / hou / ect @ ect cc : subject : fw : mtg . scheduled if you want , i welcome your help in putting together an agenda . frank - - - - - original message - - - - - from : black , tamara jae sent : wednesday , april 18 , 2001 3 : 32 pm to : presto , kevin ; davis , mark dana ; sturm , fletcher ; herndon , rogers ; gilbert - smith , doug ; white , stacey ; kaminski , vince ; andrews , naveen ; belden , tim ; gorny , vladimir ; davenport , lacrecia cc : hayden , frank subject : mtg . scheduled please mark your calendar for a meeting with : frank hayden reg . value @ risk april 26 th 3 - 4 pm rm 3125 b thanks tjae black x 35800",0 +"Subject: re : credit risk technical article ben , let me review it one more time from this angle . if you don ' t hear from me by wednesday , it ' s ok to post it . vince benjamin parsons 01 / 04 / 2000 04 : 31 am to : vince j kaminski / hou / ect @ ect cc : ross prevatt / hou / ect @ ect , bijoya banerjea / lon / ect @ ect subject : credit risk technical article vince , bijoya is currently working on the development of the website for the new credit trading initiative , and we thought it would be a good idea to put my recent technical article "" measuring credit risk "" on it . are you okay with this release , or does it contain any proprietary information we should edit out ? ben",0 +"Subject: re : christmas list will do , vince thanks vince j kaminski 11 / 08 / 2000 10 : 42 am to : kevin g moore / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : re : christmas list kevin , the donuts are a great idea . i think we should add jeff and john as well ( baskets ) . vince kevin g moore 11 / 07 / 2000 11 : 14 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : re : christmas list while the thought is still on my mind , so you want think i ' m being selfish . what i am thinking we could do is send the move team , help desk and facilities complimentary donuts from the research group during the holiday season . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 11 / 07 / 2000 12 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 11 / 07 / 2000 11 : 02 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ e cc : subject : re : christmas list i sent the last e - mail before asking this question . vince , what about dave delainey , john lavorato and jeff shankman . please inform . . . . . . . . . . . . . . . . kevin g moore 11 / 07 / 2000 10 : 57 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : christmas list hello vince and mike i want to keep you informed . this year all baskets will be done in a timely manner . on last year we were going through a major move therefore many people played key roles in keeping us together . this year however , is a little different , as it is always nice to give unfortunately we can not give to everyone . i am sending a lists of who we have so far . there are a few names on the list that i feel we should do something else for this year . under shirley ' s list of names . ( not so expensive ) they are : move team who ? mail room who ? facilities help desk who ? there are other tokens of appreciation that we can get for them . please note that you two are the only ones that have seen this e - mail so far i will need your approval for all baskets , however your input on the matter will be greatly appreciated . the list is not completed i am still waiting for additions . thanks kevin moore",0 +"Subject: re : enron open positions vince , just fine . i will be there at 11 : 30 am on friday , september 8 , 2000 . see you at the enron building . thank you . maruti - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : mmore @ houston . rr . com cc : vince . j . kaminski @ enron . com date : monday , august 28 , 2000 2 : 14 pm subject : re : enron open positions maruti , does 11 : 30 enron building work for you ? vince "" more "" on 08 / 28 / 2000 01 : 25 : 54 pm to : "" vince j kaminski "" cc : subject : re : enron open positions hello vince , thank you very much for getting back to me . friday , september 8 is fine with me . please let me know what time would be convenient for you and where we can meet . i can come any time anywhere . sincerely , maruti 832 - 251 - 7267 - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski date : monday , august 28 , 2000 12 : 12 pm subject : re : enron open positions maruti , what about september 8 , friday ? vince "" more "" on 08 / 25 / 2000 03 : 27 : 26 pm to : vince j kaminski / hou / ect @ ect cc : subject : enron open positions",0 +"Subject: re : comments hi vince , sorry to have missed you in paris . many thanks for your comments - they ' ve now been incorporated and sent to eprm . things are crazy at the moment , but hopefully will calm down in a couple of weeks and we ' ll have time to catch up better . best regards . chris . - - - - - original message - - - - - from : to : cc : ; ; sent : sunday , october 15 , 2000 11 : 06 am subject : comments > julie , > > sorry for the delay . here are he comments . > > vince > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > sorry for long delay in responding . i have a few comments . most are focused > on the third article as here is till time to make modifications . > > 1 . in the second article , i would mention that the formulation of the mean > reversion process represents one of several possible equations that capture > the same type of market evolution of prices over time . > 2 . one comment that applies to both articles . the problem is how one defines > the time series of energy prices . the numbers used for australian nsw pool > prices seem to correspond to chronological prices . one alternative approach > is to build different time series for the corresponding time intervals for > each day . this would result in different price behavior and estimates of > jump . the choice is one of convenience and depends on actual problem under > investigation . one could argue that volumes of electricity traded during > different time slots represent different economic commodities . > figure 3 a ( jump frequency ) has units on the vertical axis that require > explanation . are we talking about an expected number of jumps in the total > number of half hourly periods in a year ? the same goes for f in table 2 > ( article number 3 ) . > >",0 +"Subject: hello from enron dear dr . mcmullen , a few weeks ago i received a call from your university regarding employment opportunities at enron . i called back and summarized the needs of my group ( an ideal profile of a candidate ) : 1 . mathematical finance 2 . computer programming ( c , c + + ) 3 . understanding of the energy markets i shall appreciate any information about potential candidates . i have also given some other suggestions regarding potential opportunities for graduates with different profiles . please , feel free to call me . my number is 713 853 3848 . vince kaminski",0 +"Subject: it support for research weather group mark , first let me say thank you for your assistance in making it possible for meteorologists tony hamilton and stephen bennett to hit the groung running this week when they came over to london from houston . when we came into our offices in houston monday morning , tony and steve had already gathered and analyzed their data , prepared reports and were ready for the avistar briefings ! the cross - atlantic communication and data - sharing and manipulation went seamlessly ! we have great expectations for continued synergy with this new set - up . the research weather group is excited about our expanded responsibilities in london . we are committed to maximizing the value added we can provide to the weather derivatives , crude & products , uk trading , continental power , and analytics efforts . we are , however , also extremely dependent on computers and communication , associated software and peripherals . plus the datastreams we access and the reports we generate are very time - critical in their value to traders . we need a very stable environment , with reliable back - up and 24 - hour support to fulfill our commitments to providing the trading operation with timely , never - fail research and information flows . so , thanks again , and please do whatever you can to continue this high level of support by passing this letter of praise and thanks to your team , and show them our appreciation for your efforts . mike roberts",0 +"Subject: re : energy derivatives hi vince , thanks for your call today - i look forward t speaking to you tomorrow . i ' ll be working at home in the mornng ( my time ) - trying to finish up my chapters ! - my number is 61 2 9460 3079 . best regards . chris .",0 +"Subject: re : ed krapels louise , thanks . his e - mail address is ekrapels @ esaibos . com . the company coordinates are as follows : esai 301 edgewater place , suite 108 wakefield , ma 01880 ( 781 ) 245 - 2036 ( 781 ) 245 - 8706 vince louise kitchen 02 / 11 / 2000 05 : 13 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : ed krapels absolutely - i can ' t find the previous email but it may have been lost during the few days they moved my email box from london to houston - i know i had a lot of lost emails - do you have his phone number and email and we can sort out a password for a few days for him too . louise vince j kaminski 10 / 02 / 2000 22 : 15 to : louise kitchen / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : ed krapels louise , some time ago i sent you a message regarding ed krapels . he is writing a book on energy commodity markets and would like to learn more about eol . can you give him a call and chat with him for 10 minutes . he is a good friend of enron and it would be free ad for us . vince",0 +"Subject: re : cplex floating license chonawee and i just had a phone conversation with cplex . there are other alternatives ( products ) that may help in saving time and cost . chonawee and i feel that one floating develoment license , and one or two opl ( a package on sale that provides modeling and optimization features ) licenses will do . in addition , we need floating deployment licenses . for the development licenses , the charges should be split "" equally "" between the different groups that may ask for optimization help ( although it is hard to predict who may ask for future help ) . we are suggesting equally since these licenses are used to develop the needed solution but are not ( in general ) used to run the software . the deployment licenses can be charged on per - use basis for different groups . cplex is going to send us a new quote . we ' ll make the decision soon after that . - samer",0 +"Subject: re : alp presentation for your information , the alp project presenation that vince kaminski invited you to will be held in the enron bldg . in conference room eb 49 cl . if you need any other information , please let me know . regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: john martin , energy finance article vince , f . y . i . i have not talked to john martin about it yet . i don ' t know if you have any interest . stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 07 / 24 / 2000 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - john martin on 07 / 21 / 2000 07 : 36 : 31 pm to : stinson gibner cc : subject : re : your call my number is 254 - 710 - 4473 ( office ) and 254 - 757 - 0852 ( home ) . the editor of the journal of applied corporate finance is doing a special issue on energy finance for the fall and i want to see if you and vince would like to put something together describing enron ' s basic business model . i would love to join you if you would like and i can actually draft the paper with your help . i ' ll get in touch with you on monday . have a great weekend . john p . s . mitch taylor was in class today and did his usual great job . i sure enjoy using enron as my "" premier company example "" . at 04 : 48 pm 7 / 20 / 00 - 0500 , you wrote : > > > john , > > i misplaced your phone number . please let me have it , and i promise to give > you a call . i ' d love to hear what you have in mind . > > > best regards , > > stinson >",0 +"Subject: re : seminar series mug marge , the person at rice to work with is barbara ostdiek . her e - mail address is below ( on one of the messages appended at the bottom ) . vince marge nadasky 08 / 17 / 2000 10 : 13 am to : vince j kaminski / hou / ect @ ect cc : subject : seminar series mug vince , would it be possible for me to work with whomever is designing this mug to see if we could incorporate the enron logo into the design ? i agree with mark that it would be preferable to have the logo somewhere on this . please let me know . marge , ext . 36631 - - - - - - - - - - - - - - - - - - - - - - forwarded by marge nadasky / hou / ect on 08 / 17 / 2000 10 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - mark palmer @ enron 08 / 17 / 2000 09 : 40 am to : marge nadasky / hou / ect @ ect cc : subject : seminar series mug looks a little off - brand to me . do you think we need an enron logo ? can you help vince ? anything from the catalog they could personalize ? mark - - - - - - - - - - - - - - - - - - - - - - forwarded by mark palmer / corp / enron on 08 / 17 / 2000 09 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 08 / 16 / 2000 05 : 14 pm to : mark palmer / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : seminar series mug mark , rice univ . wants to produce a coffee mug for the participants of the workshop enron sponsors . please , take a look at the proposed design . do we need any formal approval ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 16 / 2000 05 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - barbara ostdiek on 08 / 15 / 2000 10 : 26 : 12 pm to : vince . j . kaminski @ enron . com ( vince kaminski ) cc : subject : seminar series mug vince : i have attached the general design we are proposing for the enron seminar series mug . we have a little refinement to do - spacing here and there a couple type - o ' s but this is the idea . if you like it , we will put an order in . i ' ll put out an announcement on the seminar schedule shortly . so far the fall line up includes will goetzman - yale , lenard mirman - virgina , jeff pontiff - u . of washington , george allyannis - darden , and charles lee - cornell . thank you . bbo - mugl 1 . pdf",0 +"Subject: organizational announcement to help accomplish our business goals , the following management appointments are effective immediately : tod lindholm , previously managing director - chief accounting officer for ebs , will move to corporate as managing director and assume responsibility for business risk management , it compliance as well as working on a number of special assignments for rick causey , executive vice president - chief accounting officer for enron corp . john echols , currently managing director - risk systems development for ebs will assume responsibility for accounting and administration for ebs as well as his current responsibilities and will report to the office of the chairman for ebs . everett plante , currently vice president - chief information officer for ebs will now report directly to the office of the chairman for ebs .",0 +"Subject: re : charm jim , i shall be glad to talk to them . vince james l bouillion 04 / 24 / 2001 01 : 43 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : charm vince , would you be agreeable to such a phone call , or would you prefer to designate someone in your group ? - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 04 / 24 / 2001 01 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" bertil olsson "" on 04 / 24 / 2001 01 : 40 : 06 pm to : james . l . bouillion @ enron . com cc : "" carl groth "" , "" kenneth risko "" subject : re : charm jim , thanks for the feed - back . to assist in the further development of the product , are there any specific areas your group would like to see improved ? based on comments made during our meeting , it sounded like your main concern was whether or not charm would have the capacity to cover the very different and complex risk areas that your company is involved in . would you mind if someone from our charm group called you or mr . kaminski for some specific comments ? regards , bertil james . l . bouillion @ enron . com on 04 / 24 / 2001 01 : 35 : 09 pm to : bertil olsson / hou / us / wcg @ wcg cc : bcc : subject : re : charm bertil , i again wish to thank you for the presentation on the charm product . the response from the group is that the model requires more work before enron could consider it as a commercial product . please keep me advised as i assume that you will continue to develop the model . james l bouillion 04 / 11 / 2001 06 : 50 am to : "" bertil olsson "" @ enron cc : subject : re : charm ( document link : james l bouillion ) no word yet . i will follow up with the attendees . thanks for taking thje time to make the presentation . "" bertil olsson "" on 04 / 10 / 2001 04 : 07 : 11 pm to : james . l . bouillion @ enron . com cc : subject : re : charm jim , any feed - back on our meeting ? we certainly appreciated the opportunity and the fact that the meeting was very interactive . regards , bertil the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person . the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person .",0 +"Subject: re : wharton finance conference sponsorship information i ' d be interested to see who else is sponsoring the conference and who the other panelists would be . since it is a first year conference , the success of it is highly dependent on the people who are pulling it together . since the deadline on the sponsorship form is sept . 8 , they should be able to give us an indication of other participants . do you want me to call suresh to find out - he ' s been emailing me every other day about how interested he is in working for ebs anyway . the timing of it is good - the week after everyone comes for super saturday . i ' d also be interested in what tom says . i ' d only do a gold sponsorship - i don ' t think we need or want to be on more than 1 panel - either the corporate finance or sales and trading . michele nezi marvin manager enron broadband services ( 713 ) 853 - 6848 jeffrey a shankman @ ect 10 / 05 / 00 10 : 55 am to : kristin gandy / na / enron @ enron cc : michele nezi marvin / enron communications @ enron communications , vince j kaminski / hou / ect @ ect , mark palmer / corp / enron @ enron subject : re : wharton finance conference sponsorship information it ' s not necessarily an either / or decision . michelle , do you think this is a good program ? kristin , can you call tom piazze at wharton , and ask him what he thinks about the importance of our participation in this ? jeff kristin gandy @ enron 10 / 05 / 2000 08 : 56 am to : jeffrey a shankman / hou / ect @ ect cc : subject : wharton finance conference sponsorship information here is another conference we can participate in . would you rather do this conference or the entrepreneurship conference ? kristin - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 10 / 04 / 2000 08 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" suresh balasubramanian "" on 10 / 04 / 2000 02 : 09 : 56 pm please respond to to : cc : subject : wharton finance conference sponsorship information hi kristin i am following up on our conversation earlier with respect to enron participating in the whartons finance conference and the evening reception known as bullish on finance . i think this forum will be a great opprotunity for enron to reach the students interested in finance and it also provides a great platform to talk about enrons unique position in the global financial community . please do consider the option of sponsoring a panel at the gold level . it provides a great value and essentially a full panel "" ownership "" to talk about enrons acitivities . i would like to touch base with you early next week to hear you thoughts and feedback on these proposals . looking forward to a great conference participation . kind regards suresh suresh balasubramanian mba class of 2001 the wharton business school ph # : 215 - 893 - 9491 - financel . con . enron . doc",0 +"Subject: market maker simulation v . 2 stinson and vince , i finished the second version of the model which deals with open to close trading . the major difference is that there is an additional mark to market at open price which will affect the p / l . i also added the output features that john wants to see . the cumulative p / l is path dependent , the net open allowed seemingly has a strong influence on the cumulative p / l trajectory . ( the anomaly i discussed with vince is due to the trajectory shape change which needs further examination ) . could you review what i have done before we talk to john again ? zimin",0 +"Subject: swaps monitor research . elena , please , review the energy related info in this database ( if any ) and talk to me about it . i would like to do some research in this area and ask you to write a summary report . nothing urgent . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - andrei osonenko on 10 / 11 / 2000 04 : 26 : 38 pm to : ( recipient list suppressed ) cc : subject : swaps monitor research . we have today published information about the otc derivative activities of the largest dutch dealers . this research is contained in the attached pdf file . through our web site , swapsmonitor . com , you can obtain additional information about otc derivatives dealers , including rankings and a database of outstandings going back to 1994 . as an e - mail subscriber to our research , you will automatically receive all free research at the same time it is placed on our web site . if you wish to remove your name from the e - mailing list , please use the reply feature of your e - mail application and type the word "" remove "" in the subject line . regards , - dutch _ dealers . pdf andrei osonenko research department",0 +"Subject: wti - new eol product please provide comments on the summary below . after i have collected them , we can decide to distribute to greg , john , jeff and anyone else involved . the following is my summary of our collective thoughts regarding the proposed 24 x 7 trading of prompt wti : 1 ) appears advisable to have on - site human monitoring for the following reasons : a ) public relations b ) in case there are operational bugs c ) unforeseen market events , particulary during off exchange hours , long weekends , etc 2 ) we advocate some live trading simulation with incentives to "" bust "" the system prior to launch to work our operational glitches , and because the historical simulations used daily , not intra - day prices . 3 ) consider a daily position limit ( a sub - limit of the overall global products limit ) whereby each day , at least once a day , the open position will be reduced under the limit ( or to close to flat ? ) 4 ) consider a "" trigger "" whereby the fixed spread widens if a certain number of consecutive trades occurs on the same side of the market 5 ) consider the purchase of deep out - of - the - money puts and calls to protect against extreme events . ted",0 +"Subject: re : summer visits steve , i can pick up the cost of your trip from the research group budget . the more i think about it , the more i am convinced it would be difficult to justify 2 trips per person . i think that we should go for one contiguous stay per person and make a good effort to make these trips productive . vince steven leppard 05 / 11 / 2000 03 : 41 am to : vince j kaminski / hou / ect @ ect cc : dale surbey / lon / ect @ ect subject : summer visits vince thanks for offering to look my presentation over . the deadline for submission has been extended until tomorrow ( friday ) , so there ' s less of a hurry . as regard our summer visits , we ' ll need to speak to dale over the budget . personal commitments mean it ' s difficult for me to take two whole months to visit , so if the cost is prohibitive i may need to make just one shorter visit . i ' d obviously like to spend longer , and two visits seems to be the only way i can do it . i believe the situation is similar for kirstee . i ' ve persuaded richard to pay for matt ' s visit in its entirety , and i ' ve no doubt that rac / credit trading will pick up the bills for ben and kirstee . it ' s difficult to think who ' d be the natural group to pay for me . i honestly think i ' ll have difficulty persuading , e . g . richard , that it ' s worth his while to pay for my visit . i get the impression he thinks i ' m doing ok without the need to go to houston for further training . i ' m interviewing a candidate for bjorn ' s model review role during today ' s videoconference , so we ' ll need to speak beforehand or perhaps friday . all the best , steve vince j kaminski 05 / 10 / 2000 01 : 54 pm to : steven leppard / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect subject : conference steve , i am tied up at the power 2000 conference . i shall get back to you with my comments on thursday morning . i also want to talk to you tomorrow about finalizing the dates of the summer rotations . we are talking to hr here about apartments , car rentals , and other arrangements for the london team for the summer . i promised to give them the names and dates by the end of the week . sorry for the delay in sending you my comments . vince",0 +"Subject: re : hi : zeigham , mike roberts from my group will help you . vince on 09 / 22 / 2000 07 : 14 : 37 pm to : cc : subject : hi : hi vince : this zeigham khokher at the university of texas at austin , finance department . ? i need some publicly available data that unfortunately is not available here . ? it is basically the historical prices for price of oil , gas and gold futures contracts and options . ? again the data is strictly public info and not proprietary at all . ? let me know if there is a central data person at enron who would be able to help . ? all help will be of course gratefully acknowledged . ? hope all is well , i hear you will be giving a talk at ut this fall ? and look forward to seeing you then . ? regards zeigham ? ?",0 +"Subject: development of a program in "" econo - physics "" good afternoon professors : i am the administrative coordinator for the enron corp . research group . yannis tzamouranis spoke with vince kaminski about meeting with you to discuss the development of a program for the u of h . i understand from your email that you will be available wednesday , may 24 th . if this is correct , and if professors mccauley and reiter will also be available that date , we would like to schedule a meeting at 4 : 00 pm on the 24 th of may at vince kaminski ' s enron office . if this is not acceptable , please let me know . sincerely , shirley crenshaw administrative coordinator enron corp . research group 713 / 853 - 5290 email : shirley . crenshaw @ enron . comi",0 +"Subject: stentofon goodmorning liz , we are in need of another stentofon for trisha tlapek . she works very closely with the traders and it is important for quick communication . thanks kevin moore",0 +"Subject: credit exposure model alex , i have set up a meeting with bill bradford on monday , nov . 6 , at 10 : 00 am in his office ( eb 2861 ) to discuss the credit exposure model specifications . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 11 / 01 / 2000 09 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : william s bradford on 10 / 31 / 2000 06 : 50 pm to : zimin lu / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , alex huang / corp / enron @ enron , dorothy youngblood / hou / ect @ ect subject : re : credit exposure model i am out of the office this week but will be back in the office all next week . please coordinate a time with my assistant dorothy youngblood . zimin lu 10 / 31 / 2000 02 : 44 pm to : william s bradford / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , alex huang / corp / enron @ enron subject : credit exposure model bill , alex and i are working on the credit exposure model . we finished the initial design issues regarding input and output . we would like to have a meeting with you to seek feedback . we also preceeded to write the underlying model . so feedback at early stage can be important for the later development . paulo issler is working on the short term enhancement to the credit loss model : adding asian option to the model built by vasant and amitava . let me know when is a good time for us to meet . zimin",0 +"Subject: re : new pc with two 128 mb of ram vince : i was confused also - but i think this is the computer we ordered for the new employee that is coming next week ( rakesh bharati ) . phillip our it floor tech said that the computer in the back room at ebl 972 g was very old and did not have much memory so i ordered a new one with an upgrade to bring it up to 196 m ( this is what phillip said we need ) . also there is another computer back there that does not have much memory and we ordered an upgrade for it ( jason ' s ) . i went ahead an did it so that they would be ready when the new employees come in . maureen already has her upgrade . shirley vince j kaminski 12 / 18 / 2000 03 : 58 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : new pc with two 128 mb of ram shirley , is this an upgrade for maureen ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 18 / 2000 03 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : felix buitron jr . / enron @ enronxgate on 12 / 18 / 2000 02 : 27 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : new pc with two 128 mb of ram vince , i have your new pc . i will get with you when i ' m done to schedule a delivery time . i will need your network and notes password to test your apps . thanks , felix",0 +"Subject: the equipment you ordered is in stock . - - - automatic notification system ( request # : ecth - 4 r 5 mlm , po # : 20110550 ) requested for : vince j kaminski requested by : shirley crenshaw your equipment ( see below ) has arrived . please allow 3 to 5 days for configuration . you will be notified when a technician has been assigned . en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0 en 6600 128 mb installed in desktop 21 "" vl 100 monitor",0 +"Subject: update hello all , the program for the 2000 texas finance festival has been formalized and can be found on our web site at i do need to remind you of a few things before we converge on san antonio . first , be sure to contact the convention hotel and make your reservations . at last count there were only 6 rooms left . second , i need a completed application form from everyone so that we can get an accurate meal count . i am attaching the program announcement so you can fill out the appropriate boxes for meals and numbers of guests in the event you have not sent in a form . remember that we are starting the conference off with a luncheon on friday so plan on arriving early friday or coming in on thursday evening if you can . our hotel is right on the river and there are lots of restaurants and interesting things to visit in the immediate area ( the alamo is across the plaza from the hotel ) . we are making plans for spouses and children to attend both the dinner on friday and saturday evenings . the friday evening dinner begins at 6 p . m . so that we can be done in plenty of time for our private guided tour of the alamo at 8 : 00 p . m . for saturday we are still working out plans for the evening so stay tuned . there will be more information later as the conference nears . looking forward to seeing you all and in beautiful , sunny san antonio . john - announcerev . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: storage modeling john , i want to thank you for your compliment to the work that we have done for the liberty county storage facility valuation . you and your talented associate ms . tian gave me a lot of valuable insights to understand all the aspects of the deal , so it was also a great learning experience for me . if you think the research can help you in any way to your deals , storage , transport , mtbe , real options , or whatever , just let me know , we will get the job done . zimin",0 +"Subject: cuiaba models hey ding . if you recall , we looked at southern cone during july , as this was the feedback that we got from our presentation in late may . the cuiaba gas and power volumes may be found in several different places since there is more than one model . the models do not necessarily agree with each other . i have attached a few models that should contain the necessary info . i also have a summary sheet template that was to be attached in maps . enjoy . - kevin k .",0 +"Subject: reference on bruce kimich mike , below are some references on bruce . sorry for the delay . we needed to get the contact info from him . call me if you have questions . mcm : i was able to verify dates and position as well as a positive reference to his ability to work on a team , complete projects timely . and stated that he was a "" great guy "" . dr . carl palash : was a co - manager at mcm . confirmed all that bruce listed on his resume as what they had worked on and stated that bruce is considerate and that he would work with bruce or hire him if he had the opportunity in the future . david krell : helped co - coordinate graduate level classes re : technical analysis at rutgers . bruce is now the lead teacher and the course is highly regarded , gets positive reviews and has a full enrollment each time it is offered . sheila walton",0 +"Subject: interviews scheduled for monday , november 6 th ( gary hickerson ' s position ) good morning all : below are two more candidates for gary hickerson ' s tech position . they will be here monday , november 6 th for interviews . cynthia shanley vince kaminski 8 : 30 am ebl 938 mike roberts 9 : 00 am ebl 938 christopher burford vince kaminski 9 : 00 am ebl 9 c 2 mike roberts 9 : 30 am ebl 9 c 2 please mark your calendars . thanks ! shirley molly : do you have copies of the resumes for these two and the others that are being interviewed today and tomorrow ? thanks !",0 +"Subject: contract agreement for energy derivatives i work with john ambler in apachi pr , and have been assisting vince with efforts on the energy derivatives book , which lacima consultants is publishing and to which vince is contributing a chapter . attached is the draft contract agreement , which requires your legal review and approval . could you kindly look it over and let me know your comments . when we have your approval , we will send lacima a copy for their signature , after which vince will sign the document . we will ensure that your office has a copy for your records . if you wish to speak to me , please do not hesitate to call me at ext . 66503 . thank you for your kind assistance . habiba",0 +"Subject: re : vacation shirley , no problem . vince shirley crenshaw 03 / 07 / 2001 03 : 14 pm to : vince j kaminski / hou / ect @ ect cc : anita dupont / na / enron @ enron , kevin g moore / hou / ect @ ect subject : vacation vince : if it is allright , i would like to take vacation , thursday and friday , march 15 th and 16 th ( next week ) . thanks ! shirley",0 +"Subject: australian energy 2000 dear vince , dzien dobry . many thanks for agreeing to take the remainder of the var seminar - it is a great help . i asked raymond yeow of enron australia if he would chair day one but he said that you would be a bigger draw and perhaps better placed . to this end , i am hoping that you would consider chairing day one ' s plenary session and trading stream . you can blame raymond for recommending you ! i appreciate that this is asking even more of you than you originally signed up for but you seem to be famous in this small market and it would be great if you could do it . i apologise for imposing once again but look forward to hearing back from you when you get a chance . as ever , let me know if you have any questions . best regards , joel",0 +"Subject: enron , case study at nordic business schools good morning vince , could you please provide with some guidance in relation to mark ' s comments directly below . i don ' t have any recollection of recent case studies that we could send oddbjorn tysnes - do you know of any ? i will send him a number of reprints of articles . please let me know if you have anything at your fingertips . . . . regards , cindy - - - - - forwarded by cindy derecskey / corp / enron on 10 / 30 / 2000 10 : 21 am - - - - - mark palmer 10 / 30 / 2000 08 : 48 am to : christie patrick / hou / ect @ ect , michael b rosen / hou / ect @ ect , cindy derecskey / corp / enron @ enron cc : subject : enron , case study at nordic business schools i don ' t want to spend a lot of time right now , from this office , pursuing these opportunities . but , if we have some case studies "" on the shelf "" we could send something to oddbjorn . thanks , mark - - - - - forwarded by mark palmer / corp / enron on 10 / 30 / 2000 08 : 45 am - - - - - oddbj > rn tysnes 10 / 29 / 2000 01 : 36 pm to : "" ' mark . palmer @ enron . com ' "" cc : "" thor lien ( e - post ) "" , "" julie green ( e - post ) "" , j > rn bremtun subject : enron , case study at nordic business schools dear mark , i want to thank you for two very interesting days and a very pleasant evening in london at the european pr conference . as you may remember from the session "" ideas forum "" , i presented an idea of introducing enron ' s transformation from an "" old "" industry / energy company to an innovative player in the "" new "" economy as a case study at the leading nordic business schools . i have later discussed the idea with enron ' s head of the nordic region , thor lien . he agrees that this could be a good way of raising the awareness of enron in the nordic business community . one reason for this is that several professors of the nordic business schools are frequent speakers at business conferences , they are very often sought by business reporters to give comments etc . if enron becomes a "" top of mind "" innovative company with these professors , it will help relation - building and pr work towards the business community . i understood from you that some us business schools have developed similar ( ? ) case studies on enron . do you or someone else in enron have access to such case studies ? if so , would it be possible for you to send us copies ? it would be a great help for us . best regards , oddbjorn tysnes",0 +"Subject: power plant model ken of rdi and i have gone through his model together and i have a clear idea of how it ' s going step by step . i believe we can almost start recoding now . i need a c programmer who ' s familiar with access data base . i . e . , he ( or she ) knows how to extract data from an access data table ( of certain format ) and output the results into an access data table of certain format . once the programmer is assigned , i will go through the model with him and incorporate his ideas and ken ' s , then we can start coding . alex",0 +"Subject: re : harvard business school case studies vince - the only one i can find is the dhabol one . do you still want that one alone ? i ' m sorry we don ' t have the others . beth vince j kaminski 07 / 31 / 2000 04 : 17 pm to : beth miertschin / hou / ect @ ect cc : subject : re : harvard business school case studies beth , thanks . dhabol is one . there should be 2 more case studies we used . one about old egs , the 2 nd about tva options . 2 - 3 copies will be sufficient . vince from : beth miertschin 07 / 31 / 2000 03 : 44 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : harvard business school case studies try this . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 07 / 31 / 2000 03 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : beth miertschin 07 / 31 / 2000 03 : 14 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : harvard business school case studies vince - i just found some copies ! how many do you need and i will have them delivered to you . they are the case about the dabhol project in india . is that the one you were thinking of ? beth vince j kaminski 07 / 31 / 2000 03 : 10 pm to : beth miertschin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : harvard business school case studies beth , i have a favor to ask . do we have copies of harvard business school case studies about enron ? we use these case studies during super saturdays . i need a few copies . this is for prof . john martin . vince",0 +"Subject: re : thomas knudsen steve , yes , please arrange the interview . the resume is very interesting . i shall be on vacation all of next week ; you can make arrangements for the following week , monday through thursday . please , include stinson , grant and vasant . vince steven leppard 03 / 17 / 2000 03 : 36 am to : vince j kaminski / hou / ect @ ect cc : subject : thomas knudsen hi vince i met with thomas this morning ( i gave you his cv before , though i don ' t know if you had time to read it ) . he ' s extremely interested in moving to enron , and accepts that our work is far less academic than his postdoc research , although far broader than his investment banking quant experience . he remains interested , and emphasised he wants to stay close to the traders , but wants to look at new markets and products . i think we should seriously consider hiring him . he is ( understandably ) reluctant to move to houston , but there ' s no doubt that there is plenty of ( unnmet ) demand for derivatives pricing ( and thinking ) here in london . would you be interested in my setting up a videoconference in the next couple of weeks so you have a chance to chat with him ? i ' m meeting with him again on tuesday at an academic quant finance seminar organised by lane at king ' s college . i ' ve attached his cv for your reference . all the best , steve",0 +"Subject: grades pam , the last group . please , let me know if any name is missing . grade : a thanks a lot . it was a pleasure working with you . vince kaminski",0 +"Subject: re : contact jana , a correction . i am going to spend one week in australia and i have just realized that i have to leave on friday , july the 14 th , at night , to arrive in sydney on sunday morning . maybe we can meet on friday the 7 th ( we would like to invite you to dinner and then we can have a glass of wine outside , the weather and mosquitoes permitting ) . alternatively , we can meet during the weekend of july the 29 th . vince jlpnymex @ aol . com on 06 / 26 / 2000 01 : 27 : 41 pm to : vince . j . kaminski @ enron . com cc : subject : re : contact vince , the weekend of july 15 , 2000 is fine for us . which day is better for you - - friday or saturday ? do you want to go to the woodlands for a show , or just visit ? also , let me know if i can bring something . thanks and we look forward to meeting your family . jana",0 +"Subject: re : grades pam , the students resent the documents . the group members : rakhi israni felix feng lu winny so orlandotaylor sanjay wankhade ning zhang grade : a separately , i think i have sent you already : jeffrey planck grade : a please , confirm this message . vince kaminski",0 +"Subject: deadline information : ehronline is now available today is a big day for enron ! this morning , we are rolling out the next step toward empowering our most valuable resource - - you . as of this morning , most of you have access to the new ehronline intranet site . the new ehronline functionality ( a feature of the sap implementation ) is very easy to use and is accessible through the enron intranet ( at http : / / ehronline . enron . com ) . using ehronline , not only can you enter your own time , but also maintain your profile , and update personal data , including home address , phone numbers , w - 4 changes and emergency contact information . additionally , you will be able to view your individual pay advice and benefit elections . remember the deadline for time entry is 3 : 00 pm cst , on june 30 th - - all time must be submitted and ready for payroll processing . because this is the first period using sap to record time , please work closely with your timekeeper to ensure the deadline is met . by now , you should have received a note from your timekeeper . however , if you have not and are unsure who your timekeeper is , please call the site manager for your business unit . their names and numbers are listed below . because of the size of this rollout , we have to expect a few "" bumps in the road . "" so , we  , re asking you to be patient and work with us over the next few weeks . if you have questions , are experiencing problems , or would like more information , please contact the center of expertise ( coe ) . center of expertise ( coe ) the center of expertise can help answer many of your questions and provide you with assistance if you are experiencing problems . the coe is available 24 hours a day from monday at 7 : 00 am cst through friday at 7 : 00 pm cst . you can contact the coe : via phone at ( 713 ) 345 - 4 sap ( 4727 ) coe website : sap . enron . com ( contains job aids , instructional materials , forms and policies ) via lotus notes at sap coe / corp / enron via internet email at sap . coe @ enron . com bu site managers enron north america cindy morrow , ( 713 ) 853 - 5128 yvonne laing , ( 713 ) 853 - 9326 global products shelly stubbs , ( 713 ) 853 - 5081 yvonne laing , ( 713 ) 853 - 9326 global finance jill erwin , ( 713 ) 853 - 7099 yvonne laing , ( 713 ) 853 - 9326 gas pipeline group michael sullivan , ( 713 ) 853 - 3531 greg lewis , ( 713 ) 853 - 5967 diane eckels , ( 713 ) 853 - 7568 global e & p diane eckels , ( 713 ) 853 - 7568 enron energy services bobby mahendra , ( 713 ) 345 - 8467 daler wade , ( 713 ) 853 - 5585 corporate todd peikert , ( 713 ) 853 - 5243 enron renewable energy corp joe franz , ( 713 ) 345 - 5936 daler wade , ( 713 ) 853 - 5585 enron investment partners yvonne laing , ( 713 ) 853 - 9326 job aids and reference guides finally , the apollo & beyond training team has developed several useful reference guides that you can access via the sap website at sap . enron . com also , a brochure will be delivered to your mailstop today . this brochure provides step by step instructions on how you can use ehronline to view and update your personal information .",0 +"Subject: re : telephone interview with the enron research group i have had to reschedule the interview with nina knirel for tomorrow . the following is the new schedule . zimin lu and tanya tamarchenko 3 : 30 - 4 : 00 pm vince kaminski and stinson gibner 4 : 00 - 4 : 30 pm her flight does not arrive until noon . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 29 / 2000 04 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 11 / 29 / 2000 09 : 59 am to : nina knirel @ enron cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , zimin lu / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect subject : re : telephone interview with the enron research group hi nina : we would be glad to see you tomorrow . since this is a preliminary interview to see if there is a fit and an interest , we will schedule an hour and probably the interviewers will double up their time . i have scheduled the following , if the times do not work for you , please let me know . 9 : 00 am vince kaminski and stinson gibner 9 : 30 am tanya tamarchenko and zimin lu when you come into the enron bldg , go to the security desk and ask for me , they will call me and i will meet you in the lobby of the 19 th floor . thanks and have a safe trip . regards , shirley crenshaw nina knirel on 11 / 29 / 2000 09 : 52 : 02 am to : shirley . crenshaw @ enron . com cc : subject : re : telephone interview with the enron research group dear shirley crenshaw , thank you very much for your interest . i will be in houston tomorrow morning and i thought that it could be more convenient if we can meet in person . if you prefer the phone interview , let me know what number i should call and we can have it tomorrow . thanks again , nina knirel - - - shirley . crenshaw @ enron . com wrote : > good morning ms . knirel : > > vince kaminski and several members of the research > group would like > to conduct a telephone interview with you sometime > this week at your > convenience . please let me know the times that you > are available and > they will contact you . > > the telephone interviews usually last approximately > 1 hour and will be > conducted via a speaker phone . > > the interviewers will be : > > vince kaminski managing director and head of > research > stinson gibner vice president , research > tanya tamarchenko director , research > zimin lu director , research > > look forward to hearing from you . > > best regards , > > > shirley crenshaw > administrative coordinator > enron research group > do you yahoo ! ? yahoo ! shopping - thousands of stores . millions of products . http : / / shopping . yahoo . com /",0 +"Subject: re : meeting requested kevin , let ' s meet for lunch next week ( monday of friday would be best ) . we can talk about the project and decide who has the right skills to help you . the person who supports ebs is stinson gibner and his lead person is martin lin . my secretary ' s number is 3 - 5290 ( shirley crenshaw ) . vince to : vince j kaminski / hou / ect @ ect cc : rebekah rushing / enron communications @ enron communications subject : meeting requested vince , i would like to meet with you or someone in your group to discuss some of the investment ideas and structures we are exploring . how is your group structured these days ? who would be best for me to meet ? might you be available for lunch next week ? i will have my assistant contact you . thank , kevin garland",0 +"Subject: work at enron hi , vince i just wanted to thank you for the opportunity to interview for a position with your group . i find the work described very interesting and the work environment very appealing . i think the retail area would be a good match with my skills and interests , and i could make a contribution very quickly . i believe that the power and options valuation areas would make a good fit as well , if that matches your needs . thanks again , bob lee",0 +"Subject: please note that my email address has been changed to : jhanley @ riskwaters . com please update your address books . thanks . joel . direct : + 44 ( 0 ) 20 7484 9885 www . riskwaters . com - attl . htm",0 +"Subject: re : price processes for ng grant & vince , i am sending you the results of fitting different price process models into ng prompt month prices . the fit is quite good for some models . we might think of using these mean - reverting jump - diffusion models in our credit model . i should examine other contracts behavior ( beyond prompt month ) as well . tanya .",0 +"Subject: re : enron finance conference sponsorship this is great . . . . i ' ll get it on the calendar . . . . thanks . from : michele nezi marvin @ enron communications on 10 / 25 / 2000 02 : 13 pm to : kristin gandy , jeffrey a shankman / hou / ect @ ect cc : subject : re : enron finance conference sponsorship this is exciting news . suresh must really want a job with us ! ! jeff - are you in to be the speaker on the panel ? it is friday , december 8 . michele nezi marvin manager enron broadband services ( 713 ) 853 - 6848 - - - - - forwarded by michele nezi marvin / enron communications on 10 / 25 / 00 02 : 11 pm - - - - - sureshb @ wharton . upenn . edu 10 / 25 / 00 02 : 05 pm please respond to sureshb to : michele nezi marvin / enron communications @ enron communications cc : subject : re : enron finance conference sponsorship hi michele i am writing to confirm that enron will be participating in the sales / trading panel . i have some great news . we have decided to give enron the sponsorship spot for the sales and trading panel . key benifits of being a panel sponsor - a big enron banner can be displayed indicating that you are the official sponsor of the entire sales / trading panel - mention in the program guide and all other conference material - in addition to the panelist spot on the sales / trading panel , enron gets to open the panel session with a 15 - 20 min presentation on general trends in the sales and trading industry , an excellent opportunity for a senior person from enron to address the audience . also for folks from enron coming to the conference we have hotel rooms blocked at a discount price at the park hyatt . i will be getting you a lot of the details with regards to logistics for the panel and enrons participation in the conference in the coming weeks . . once again , i would like to thank you for the sponsorship and presence at the finance conference . looking forward to it . . regards suresh balasubramanian 215 - 893 - 9491 > - - - - - original message - - - - - > from : michele _ nezi _ marvin @ enron . net > [ mailto : michele _ nezi _ marvin @ enron . net ] > sent : friday , october 20 , 2000 5 : 31 am > to : sureshb @ wharton . upenn . edu > cc : kristin _ gandy @ enron . net ; jeffrey _ a _ shankman @ ect . enron . net > subject : enron finance conference sponsorship > > > > > please see attached for our sponsorship form . can you let me > know asap which > panel we are on - i think we would be a great contributer to > either the sales > and trading or corporate finance panels . looking forward to a > great conference . > > ( see attached file : finance conference form . doc ) > > michele nezi marvin > manager > enron broadband services > ( 713 ) 853 - 6848 >",0 +"Subject: re : summer internship vince , i appreciate your inquiry regarding an extra spot in the summer associate pool . i am looking forward to hearing from you soon . best regards , - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 http : / / uts . cc . utexas . edu / ~ cantekin - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > - - - - - original message - - - - - > from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] > sent : wednesday , march 29 , 2000 8 : 34 am > to : cantekin @ mail . utexas . edu > cc : vince j kaminski ; vasant shanbhogue > subject : re : summer internship > > > > > cantekin , > > the summer associate program has closed but i shall check to see > if i can get one extra place . > > vince > > > > > > > "" cantekin dincerler "" on 03 / 28 / 2000 > 11 : 48 : 53 am > > please respond to cantekin @ mail . utexas . edu > > to : vkamins @ ect . enron . com > cc : ( bcc : vince j kaminski / hou / ect ) > subject : summer internship > > > > hi vince , > > i am writing you at this time to inquire as to the potential > of renewing my > internship at enron for the summer of 2000 . > > while the date of my request is later than i would have > wished , the reason > is that i had originally planned to go back to turkey this > summer and get > my mandatory military duty done . however , i now realize i can > put it off to > a further date . that left me wondering if you believe there > is a project > that i can get involved in this summer and be useful . if that were the > case , i would be more than happy to postpone my military duty > and spend the > summer with the research group . i discussed this with dr . > ronn , and he is > very supportive of this idea . > > i apologize again for bringing up this issue late , and look forward to > hearing from you . > > best regards , > > - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > cantekin dincerler > > doctoral candidate > the university of texas at austin > graduate school of business > department of finance > office : ( 512 ) 471 - 1676 > fax : ( 512 ) 471 - 5073 > home : ( 512 ) 472 - 5356 > http : / / uts . cc . utexas . edu / ~ cantekin > - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > > > > > > >",0 +"Subject: lsu visit ( resume ) mr . kaminski , it was a pleasure and honor to have lunch with you . i also enjoyed your presentation in our graduate class . i hope you enjoyed your visit to baton rouge . come back to visit us sometime ! ! attached is my resume as you suggested . thank you for your interest in lsu and me . sincerely , datren l . williams - resume . doc",0 +"Subject: if you arrange administrative or clerical temporary employees , this e - mail contains important information for you . as you probably know by now , enron recently entered into a new relationship with corestaff ' s managed services group to manage and administer its temporary staffing program . this new arrangement is designed to improve service and quality as well as increase efficiency in meeting enron ' s temporary employment needs . there are many benefits , including a web - based application which will provide enron ' s temporary staffing users with online ordering , approval and reporting . more details on this system will be coming soon . in order to help the managed services group serve you better in the days ahead , please take a moment now to fill out the profile questions below and forward your reply to joseph marsh at joseph marsh / na / enron . this information will not be used for solicitation , but rather to facilitate a more efficient ordering process . name : business unit : department : phone / e - mail : cost center : number of temporaries currently in use : average / peak number of temporaries used per week : skill sets / positions required : phase i of the program , which starts january 2 , 2001 , encompasses all administrative / clerical temporary employees in the houston area . please note that we anticipate no changes for temporary employees currently on assignment at enron as we make this transition . again , more details on the managed services program and processes will be distributed in the coming weeks . as of january 2 , the managed services account team will be on - site to answer any questions and handle your temporary employee needs . they will be available via e - mail or by calling 713 - 345 - 6899 . please note that the current process for requesting temporary employees will remain in effect through the end of the year . thank you , the enron corp implementation team",0 +"Subject: rice math course : hector vince , in case i forget by monday : hector campos asked if he can take a course in pde ' s at rice this fall . it would meet tues and thurs . mornings and would cost about $ 3000 . i ' ll try to catch you on monday to see what you think . stinson",0 +"Subject: ( no subject ) greg , blake johnson sent me this proposal ( i think some of his friends are the founders of this group ) . it looks like a good project for brad romine to evaluate it . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 09 / 2000 01 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - blake johnson on 07 / 20 / 2000 01 : 02 : 59 pm please respond to blakej @ stanford . edu to : vkamins @ enron . com cc : subject : ( no subject ) vince , here are the overview powerpoint slides for the investment and strategic relationship management firm , azure capital , i mentioned in my voice mail . the transactions they completed in their past lives at csfb and already in the new firm , as well as their advisory board are probably the strongest evidence of their capabilities . hope all is well . blake - azure slides . ppt",0 +"Subject: re : interview with the enron research group - reply - reply mark : good to hear from you ! i think it is a good idea for you to talk to maureen raymond - castaneda , enron ' s chief economist or dr . vince kaminski , managing director and head of research . unfortunately both are out of the office at present . maureen will return on monday , the 23 rd and vince will return on wednesday , the 25 th . if you will be available for a telephone call on wednesday , the 25 th , please let me know when and the telephone number and i will arrange the telephone interview . regards , shirley crenshaw 713 - 853 - 5290 mark . giancola @ do . treas . gov on 10 / 20 / 2000 01 : 57 : 40 pm to : mark . giancola @ do . treas . gov , shirley . crenshaw @ enron . com cc : subject : re : interview with the enron research group - reply - reply date : 10 / 20 / 2000 02 : 54 pm ( friday ) from : mark giancola to : ex . mail ( "" shirley . crenshaw @ enron . com "" , "" mark . giancola "" ) subject : re : interview with the enron research group - reply - reply shriley : i ' m terribly sorry it ' s taking me so long to get back to you . because i am moving to a new office after my trip next week it is difficult to make definite plans . looking at my schedule now i would suggest tentatively that i could come on friday november 3 . again , i would like to reconfirm with you after i return from montreal a week from now . i would also be interested in having a phone conversation with someone who can tell me in a bit more detail about enron ' s research group and this particular position . that would be very helpful in preparing to come to houston . please let me know if this is feasible . thanks for your patience . mark giancola > > > ex . mail . "" shirley . crenshaw @ enron . com "" 10 / 13 / 00 10 : 09 am > > > mark : while we are anxious to fill this position , we certainly understand scheduling conflicts ! please let us know as soon as you have a definate time . dr . kaminski will be out of the office the next two weeks also . maybe the week of the 30 th or the 6 th of november ? look forward to hearing from you . sincerely , shirley crenshaw mark . giancola @ do . treas . gov on 10 / 13 / 2000 08 : 47 : 57 am to : shirley . crenshaw @ enron . com cc : subject : interview with the enron research group - reply date : 10 / 13 / 2000 09 : 42 am ( friday ) from : mark giancola to : ex . mail ( "" shirley . crenshaw @ enron . com "" ) subject : interview with the enron research group - reply thanks for your message . our e - mail system was down all day yesterday so i was not able to respond until today . i am very interested in coming in for an interview . unfortunately , my schedule will make traveling on a weekday difficult for at least the next two weeks . i am travelling as part of the us delegation to the g - 20 on the 24 th and 25 th and will be busy until then in preparation . immediately following that trip i will be moving to a new office here in treasury and am not sure about my schedule . i would like to wait until next week when i have a better idea of my schedule to propose times to come to houston . please let me know if there are time constraints on your side . thanks , mark giancola > > > ex . mail . "" shirley . crenshaw @ enron . com "" 10 / 12 / 00 09 : 06 am > > > good morning mr . giancola : your resume was forwarded to vince kaminski , managing director and head of research with enron . we would like to bring you in for an informal interview at your convenience . this would be for a position of "" economist "" or "" associate economist "" , reporting to maureen raymond castaneda . please give me some dates and times that would be convenient with you and i will have our hr rep contact you to schedule your coming to houston . i look forward to hearing from you . sincerely , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290",0 +"Subject: re : dinner this fri . in london ? ehud , i had to cancel my trip to london . steve leppard will take care of my presentations . vince "" ehud i . ronn "" on 09 / 18 / 2000 09 : 12 : 47 am to : lane hughston , vkamins @ enron . com , pnance @ teknecon . com , ds 64 @ cyrus . andrew . cmu . edu , steven . leppard @ enron . com , geman @ edu . essec . fr , chris . harris @ natpower . com cc : subject : dinner this fri . in london ? colleagues , greetings . i ' d like to plan a dinner subsequent to the adjournment of this week ' s eprm conference in london fri . 9 / 22 . whereas some of you have already notified me of your availability or travel plans , please advise whether you are available for dinner on fri . 9 / 22 or sat . 9 / 23 . ehud ehud i . ronn jack s . josey professor in energy studies department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: risk boston please read the attached important information . ? thank you ? regards catriona clowes conference co - ordinator tel + 44 ( 0 ) 20 7484 9864 - chase . doc",0 +"Subject: rabi de phone interview shirley , let ' s act on it . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 07 / 2000 05 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 07 / 07 / 2000 01 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : rabi de phone interview vince , we had phone interview with rabi de . my impression is good . we should invite him for a formal interview . he is a hands on person with wide range of experience ( energy financing , derivatives trading , hedging , etc ) . he communicates very well and expressed interest in financial engineering & modeling . zimin",0 +"Subject: re : exotic options presentation vince the presentation is riddled with errors , which were pointed out at the conference . they ' re only there because i was working on the presentation at midnight ! i ' ll send a new version as soon as it ' s ready . steve vince j kaminski 09 / 28 / 2000 04 : 35 pm to : steven leppard / lon / ect @ ect cc : subject : re : exotic options presentation steve , thanks a lot . vince",0 +"Subject: time sensitive : executive impact & influence program survey * * * reminder * * * we have not yet received your feedback . your input is very valuable and to be included in the participant ' s summary report , it must be received no later than close of business on wednesday , october 25 . without your feedback , the participant may not receive a summary report or be eligible to attend the program . * immediate action required - do not delete * executive impact & influence program dear vince kaminski , as part of the executive impact and influence program , each participant is asked to gather input on the participant ' s own management styles and practices as experienced by their immediate manager , each direct report , and up to eight colleagues / peers . you have been requested to provide feedback for a participant attending the next program . your input ( i . e . , a self assessment , if you are a participant in this program , manager assessment , direct report assessment , or colleague / peer assessment ) will be combined with the input of others and used by the program participant to develop an action plan to improve his / her management styles and practices . if you are providing feedback as a manager of the participant , please note that your feedback will be identified in the summary report . it is important that you complete this assessment no later than close of business on wednesday , october 25 . to begin the online administration process , you will need the following internet address and password ( s ) . note : if you are providing feedback for more than one person , each password and participant name is individually listed below . open your internet browser e . g . , internet explorer or netscape navigator , and please type or copy the url address below into your internet browser ( please do not go through lotus notes ) : www . fsddatasvc . com / enron ph 9 jbm ( mike roberts ) if you experience technical problems , please call dennis ward at fsd data services , 713 - 942 - 8436 . if you have any questions about this process , you may contact debbie nowak at enron , 713 - 853 - 3304 , or christi smith at keilty , goldsmith & company , 858 - 450 - 2554 . thank you for your participation .",0 +"Subject: super saturday changes - update i am sure that all of you have seen the notice sent this morning from charlene jackson , managing director of the associate and analyst program . i wanted to follow up with a note to all campus team mds and it team members to clarify any confusion surrounding super saturdays and technologist recruiting for the global technology track . although the global technology track is part of the analyst and associate program - we will not be participating in the super saturday events listed below . technologist candidates will be brought into the office for a friday office visit . super saturdays were first initiated for commercial analyst and associate recruiting because many enron representatives were not able to leave their desks while the market was open during the workday . bringing candidates in during the weekend works well in this situation because enron representatives can fully participate in the office visit and candidates can still see the office . however , many technology vps have suggested that seeing enron "" alive and in action "" during the week would be a high selling point for technologist candidates . therefore , we have opted to have technology office visits on fridays . the first three office visits are listed below : november 10 th december lst january 19 th we will be sending out more detailed information on how you can become more involved with technology office visits . i apologize for any confusion . please feel free to contact me with any questions or comments . 3 - 3589 . thanks , ashley - - - - - - - - - - - - - - - - - - - - - - forwarded by ashley baxter / corp / enron on 10 / 25 / 2000 08 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : charlene jackson 10 / 24 / 2000 09 : 20 pm sent by : enron announcements to : all enron employees north america cc : subject : super saturday changes the recruiting season has officially begun . the first super saturday weekend is the weekend of october 27 th and 28 th . we have undergone a rigorous interview process on campus , which will allow us to focus on  however , we are still in need of interviewers for each of the super saturdays . please respond with your willingness to interview at : http : / / axis . enron . com / notice / ssinvite . asp ( when selecting dates please avoid selecting to interview candidates who attend the schools for which you are a team member ) . we thank you in advance for your participation and support of the program .",0 +"Subject: re : power flow software question thanks . i ' ll let walter know if he calls . i just wanted to make sure things were done correctly . martin vince j kaminski @ ect 10 / 10 / 00 03 : 25 pm to : martin lin / contractor / enron communications @ enron communications @ enron cc : vince j kaminski / hou / ect @ ect , walter coffer / hou / ect @ ect subject : re : power flow software question martin , it ' s ok for walter to use remaining hours . no real cost to enron , just the benefits . vince from : martin lin @ enron communications on 10 / 09 / 2000 03 : 06 pm to : vince j kaminski / hou / ect @ ect cc : subject : power flow software question walter coffer contacted me regarding whether we still have power flow software available . we do have almost all of a 200 execution - hour license for pss / e , which was purchased for the transmission congestion project last summer . this was purchased by east power trading . should walter want to use the remaining hours , who has authority to grant this ? thanks , martin",0 +"Subject: california update 1 / 31 / 01 please do not hesitate to contact robert johnston ( x 39934 ) or kristin walsh ( x 39510 ) with additional questions . executive summary an announcement could be made as early as today regarding the first wave of long - term contracts ( price and term ) . the threat of bankruptcy is significantly diminishing as davis hatches a plan to 1 ) pass on "" court ordered rate increases "" and 2 ) issue revenue bonds . audit results are in and questions loom about the amount of funds transferred to parent companies . davis is expected to use the threat of "" endless appeals "" in courts and a possible ballot initiative in november to keep the pressure on the parent companies to pay a share of the utility debt , as well as to limit the scope of the rate hikes . davis hopes that a court ruling in favor of the utilities would provide him with the political cover he needs to pass on rate hikes to california consumers and avoid utility bankruptcy . davis walking a fine line with consumer advocacy groups . if there is a ballot initiative in november to challenge the expected court - ordered rate hikes , it could be disastrous for investor confidence in the state . legislation and bail out bill ablx was heard for several hours in the senate appropriations yesterday . issues still remain regarding the tiered rate structure , specifically for communities that have harsh climates . however , the bill has received support from almost everyone including consumer groups . the bill is expected to pass sometime today . tim gage , ca director of finance said davis supports all the provisions in ablx and expected to sign . bill abl 8 x was not heard in the assembly yesterday but is expected to be hear today . in committee hearings monday , the dwr testified it is spent all of the $ 400 m and were spending $ 45 m / day in the spot market to buy power . according to sources with direct access to governor davis , the on - going court battle , as discussed below , is viewed as an excellent opportunity for a settlement . davis recognizes that 1 ) the expected court ruling in the cpuc case will likely authorize the utilities to increase rates charged to california rate payers ; 2 ) despite that ruling , the state government has the ability to delay the eventual reward of that order long enough to cripple the two utilities unless they come to terms . thus , davis believes that california consumers cannot avoid getting hit with higher electricity charges , but he plans to use the threat of an appeal ( and a possible ballot initiative ) to limit the amount of the rate hikes . a plan to exempt the lowest income , smallest consumers from any rate increase and to concentrate rate increases among consumers using 130 % of a baseline usage rate was gaining serious momentum last night in sacramento . that would still hit about one half of all consumers ( since the "" baseline "" is set at 60 % of average consumption ) , but it is "" progressive "" in a politically important sense . making this work would require solving a minor crisis that erupted last night when pg & e admitted they had stopped reading electricity meters for many customers and were estimating their bills based on previous usage rates . the company ' s defense ( they had laid off meter readers to conserve cash ) was met with widespread derision as consumer advocates pointed out the estimation policy conveniently allowed the company to charge more despite serious efforts by californians to use less electricity . "" every time you think there ' s a moment when these utilities will not embarrass themselves , something like this happens , "" one legislator moaned . long - term contracts a second key to keeping the eventual rate increases down lies in the negotiations now almost complete for the first wave of long - term power buying contracts davis initiated earlier this month . the first wave of those contracts will be announced perhaps as early as today and they will be surprisingly positive , according to officials in the talks . "" we got a series of good offers in those initial proposals . and some not so good ones , "" one official told our source . "" the idea is to announce the results of the first contract talks with the good guys and then go back to the others and say , ' you want in on this with these terms ? ' we think we ' ll eventually shake loose a lot of supply with this strategy . "" bankruptcy because of these new dynamics , there is improved market confidence that california will emerge from the current energy crisis without bankruptcy for socal edison and pg & e , even as they are set to miss another round of payments to creditors and suppliers today ( remember , there is a standstill agreement among creditors not to ask for accelerated payment until feb . 13 ) . we believe that sense of optimism will be given an even more credible boost by the court case in front of us district judge ronald s . w . lew in los angeles , which is likely to mushroom into the kind of political cover for elected officials that make a settlement possible by the end of next week , at the latest . in fact , without that political cover it would be impossible to square all the various circles of this crisis . audit results and ballot initiatives markets , bush administration officials , and perhaps utility companies themselves are underweighting the possibility that citizens groups will launch a successful ballot initiative in the fall of 200 l to bring all electricity generation back under state control . the threat of a proposition initiative mounted as the two audits of the utility companies ordered by the california public utilities commission released in the last 48 hours confirmed two seriously damaging points we have been warning about since mid - january . first , the audit of socal edison confirmed that $ 2 billion of the debt the utility claims it owes to energy suppliers is actually owed to itself through its corporate holding structure that generates and sells power . second , it confirmed that edison electric paid nearly $ 5 billion in profits to the holding company which then used that money to buy back its stock and increase dividends in an effort to keep its stock price up even while it was going on a debt - issuing binge . the audit of pg & e released late last night was even more damaging : pg & e management was sharply criticized for poor decisions in failing to react to "" clear warning signs of an approaching energy crisis "" by not making deep spending cuts , "" including scaling back management salaries . "" the auditors also questioned the utility ' s decision to funnel some $ 4 . 7 billion of its profits since deregulation into the coffers of its parent holding company , which then used the cash mostly to pay dividends and buy back stocks . "" basically , they took the money and ran , "" as state senate speaker burton put it yesterday . what appears to be governor gray davis ' grudging acceptance of reality is actually a highly evolved effort to produce a solution that provides enough rate hikes / taxpayer subsidy to help solve the current crisis without triggering a new - - and far more damaging - - burst of populist outrage among a voter base that still thinks the utility companies are basically making this all up . there is no doubt that this use of money by socal edison and the debts it owes to itself are perfectly legal and in keeping with the spirit of the 1996 deregulation law , but that is irrelevant in popular political terms . were it not for the political cover potentially afforded by the court case discussed below , these audits would make settlement extremely difficult . keeping that anger from exploding into a ballot initiative this fall is key to understanding the very complex game that davis , his advisers and senior legislators are now playing . a ballot initiative would be a potential disaster since it would almost certainly be aimed at re - establishing full public control over the electric utilities . even if the state and utilities successfully challenged such an initiative in court it would be years before that victory was clear and it would freeze all new private investment during that prolonged period . that ' s something california cannot afford as businesses would be moving out and new ones failing to relocate . court battle thus , legislators are listening in horror as they hear the ugly details of the court case in los angeles that socal edison and pg & e are likely to win in mid - february . the court will most likely grant the two utilities $ 12 . 7 billion in relief and that the cost would fall immediately on the shoulders of consumers who would see bills rise by at least 30 % , california politicians could see the emergence of the one thing everyone has needed since the start of this extended drama : political cover . davis will then have to rely on his political and negotiating skills to pressure the parent companies of the utilities to pass on something less than the full $ 12 . 7 billion debt . pg & e and socal edison have already won round one of a legal battle designed to let them raise electricity rates enough to recover all of the debt they have accumulated since august last year when the puc refused to let them raise prices even as electricity prices soared . the court said the 1996 deregulation law was crystal clear - - when the two utilities had repaid so - called "" stranded costs , "" they were free to begin charging whatever they needed to charge consumers to cover their cost of acquiring power . although the utilities won this case , the judge stayed his order until february 14 th at the state government ' s request . as that deadline approaches , an intense new negotiating round is under way . on the one hand , political officials know they have the ultimate political cover for higher electric prices ( "" the courts made me do it "" ) , but on the other hand , they also know that immediate and full compliance with that court order would force electricity rates up by about 40 % on top of natural gas bills that have soared by about 300 % since last year . utility companies are playing this card aggressively in negotiations about the scope and shape of the final bailout . "" we ' ll just wait until the court puts the order into effect in mid - february then even if we are in bankruptcy we will emerge quickly and easily . "" one tactic the state political officials are using , in order to force a settlement , is the threat of keeping the law suit tied up in court for the next couple of years . one political official pointed out that they could keep the utilities from receiving their money this year , next year or perhaps even the year after . "" sure , we tell them , they will probably win in court and get that money . eventually . we are making them well aware that unless we have a settlement we will appeal that court ruling all the way to the supreme court and keep them tied up for the next two years at least . we don ' t think the creditors will be quite that patient . """,0 +"Subject: it support for research weather group mark , first let me say thank you for your assistance in making it possible for meteorologists tony hamilton and stephen bennett to hit the groung running this week when they came over to london from houston . when we came into our offices in houston monday morning , tony and steve had already gathered and analyzed their data , prepared reports and were ready for the avistar briefings ! the cross - atlantic communication and data - sharing and manipulation went seamlessly ! we have great expectations for continued synergy with this new set - up . the research weather group is excited about our expanded responsibilities in london . we are committed to maximizing the value added we can provide to the weather derivatives , crude & products , uk trading , continental power , and analytics efforts . we are , however , also extremely dependent on computers and communication , associated software and peripherals . plus the datastreams we access and the reports we generate are very time - critical in their value to traders . we need a very stable environment , with reliable back - up and 24 - hour support to fulfill our commitments to providing the trading operation with timely , never - fail research and information flows . so , thanks again , and please do whatever you can to continue this high level of support by passing this letter of praise and thanks to your team , and show them our appreciation for your efforts . mike roberts",0 +"Subject: re : convergence of the research model i was curious about the accuracy of our credit reserve model as a function of the number of simulations we use . this question , i think , is not so important when we calculate credit reserve , because the assumptions underlying our model are pretty rough anyway ( here i mean the assumptions regarding price processes , correlations , etc . ) this question becomes more essential when we talk about calculating sensitivities of the credit reserve to various factors . when the magnitude of the sensitivity is comparable to the accuracy of calculation of the credit reserve , what is the accuracy of such sensitivity ? i performed a numerical experiment where i calculated the expected loss for a simple portfolio with one counterparty ( sithe ind power ) for different number of simulations ( 10 , 100 , 1000 , 10000 , 100000 ) using old research credit model . you can see how the result converges and the relative error ( compared to the result for 100000 simulations which is assumed to be the most accurate ) in the attached file . tanya .",0 +"Subject: monday 4 th september 2000 > monday 4 th september 2000 > > the monte carlo rendez - vous reporter from reactions , in association with > guy carpenter [ http : / / www . guycarp . com ] . simply click on the link next to > each headline to read the full story . > > top stories of the day : > > haag ' s rendez - vous curtain call > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 666 > > how lothar and martin changed the european landscape > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 669 > > also : > holocaust haunts munich re > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 668 > movie financing - mind the gap > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 670 > uk insurers commit legal suicide > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 672 > monaco claim victory > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 674 > swiss re enjoys life in the us > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 667 > yasuda and dai - ichi consider merger > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 671 > reliance go it alone in india > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 673 > > > please visit http : / / www . reactionsnet . com for all the latest news from the > world ' s largest insurance and reinsurance conference . > > alternatively , you can read these stories on the official rendez - vous > website at http : / / www . rvs - monte - carlo . com > > > book of the industry : > > reinsurance > fourth edition of professor robert l carter ' s industry - standard textbook . > https : / / ecommerce . waterside . net / reactions / reins _ fourth . asp >",0 +"Subject: re : interview schedule change for bruce james sean , i think we should invite bruce for additional interviews . i think that he does not have the skills required in my unit , but he could contribute in other areas . here is the list of potential interviewees : john echols ted murphy mark ruane vince sean grady @ enron 07 / 26 / 2000 02 : 17 pm to : grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , william s bradford / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , zimin lu / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , david port / market risk / corp / enron @ enron cc : toni graham / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , rita hennessy / na / enron @ enron , dorothy youngblood / hou / ect @ ect subject : interview schedule change for bruce james attached please find the interview packet for the above - referenced person . the interview will happen thursday july 27 , 2000 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sean grady 58701",0 +"Subject: london visit hi maureen how many days are you coming over for ? in addition to the couple of days you ' ll be spending at brook hunt , i can see one further day with our metals people , and one extra day with rodrigo ( from rac ) looking at our inflation model . do you have 4 + days ? all the best steve",0 +"Subject: re : 2001 fma european conference that ' s fine . i didn ' t want to change anything until i heard from you guys . see ya ! john at 11 : 06 am 11 / 28 / 00 - 0600 , you wrote : > > john , > > thanks . stinson will be able to join us for dinner . he is opting out of > the paper due to his big workload but we can get his perspective on > the last 8 years he spent at enron . > > vince > > > > > > "" john d . martin "" on 11 / 28 / 2000 09 : 44 : 17 am > > to : vkamins @ enron . com > cc : > subject : 2001 fma european conference > > > here ' s the info on the european conference . just for your files . > > john > > > date : tue , 28 nov 2000 08 : 40 : 39 - 0500 > > from : karen wright > > subject : 2001 fma european conference > > to : kwright @ fma . org > > x - mailer : mozilla 4 . 5 [ en ] ( win 98 ; i ) > > x - accept - language : en , pdf > > > > 2001 fma european conference > > > > the fifth annual european meeting of the financial management > > association international ( fma ) will be held may 31 and june 1 , 2001 at > > the hotel sofitel ( rive gauche ) in paris , france . fma ' s european > > meeting brings together academicians and practitioners with interests in > > financial decision - making . the meeting provides a forum for presenting > > new research and discussing current issues in financial management , > > investments , financial markets and institutions , and related topics . > > keynote addresses and other special presentations will be held in > > addition to research paper presentations . > > > > paper submissions > > research papers . the program includes traditional research paper > > presentations . criteria used to determine the suitability of these > > papers for the program include the nature of the research problem , > > implications of the proposed research , the quality of the research > > design , and the expected contribution of the research to the > > literature . please note that the purpose of these sessions is to > > present new and unpublished research . > > > > submission fee . there is no submission fee for the fma european > > conference . > > > > submissions . please follow these steps : > > complete the presentation form that can be downloaded at > > www . fma . org / paris . htm . carefully select the subject code on the > > presentation form that most closely describes your research . the code > > number you select will be used to select reviewers for your proposal . > > > > send six ( 6 ) copies of your completed paper , along with the completed > > presentation form , to the fma office ( financial management association , > > university of south florida , college of business administration , tampa > > fl 33620 - 5500 , usa ) . > > please note that only completed papers will be accepted for the fma > > european conference review process . > > > > the paper submission deadline is friday , december 1 , 2000 . > > > > you will receive an electronic confirmation of your submission within > > six weeks of its receipt by the fma office , and you will be notified of > > the results of the reviewing process by the middle of february , 2001 . > > > > competitive paper awards > > the financial management association international is pleased to > > announce that four ( 4 ) $ 1 , 500 awards will be presented in conjunction > > with the 2001 fma european conference . the "" young scholars "" award will > > be presented to the best paper authored by a ph . d . student ( or > > equivalent ) or recent ph . d . ( or equivalent ) graduate . three additional > > $ 1 , 500 awards will be presented to the papers deemed "" best of the best "" > > by the members of the 2001 fma european conference competitive paper > > awards committee . please note that these awards will be made only if , in > > the opinion of the fma awards committee , a paper warrants such a > > decision . the decisions of the fma awards committee are final . > > > > accepted papers . if your proposal is accepted , the version of the paper > > you submit will be sent to its discussant as soon as he / she is > > identified . you are obligated to send the final version of your paper to > > the discussant and session chair by april 27 , 2001 . you also are > > obligated to present your paper in a professional manner at the assigned > > fma program session . > > > > the collegiality of the meeting provides a very special opportunity for > > participants to share their work and to hear about the work others are > > doing . thus , individuals whose papers are accepted for presentation at > > the 2001 fma european conference will be expected to either chair a > > session or discuss a paper . > > > > program co - chairs > > > > francois degeorge > > hec paris > > 1 rue de la lib , ration > > 78351 jouy en josas cedex > > france > > 33 - 1 - 39 - 67 - 72 - 34 ( ph ) > > 33 - 1 - 39 - 67 - 94 - 34 ( fax ) > > degeorge @ hec . fr > > > > kent womack > > dartmouth college > > amos tuck school > > hanover , nh 03755 > > 1 603 646 2806 ( ph ) > > 1 603 646 1308 ( fax ) > > kent . womack @ dartmouth . edu > > > > additional opportunities for participation > > > > session chairperson or discussant . if you wish to serve as the > > chairperson of a session or paper discussant , but are not submitting a > > paper , please complete the participation form which can be downloaded > > from www . fma . org / paris . htm . submit the completed form to the fma office > > by december 1 , 2000 . session organization will take place in march , > > 2001 . > > > > deadline summary > > > > completed papers : december 1 , 2000 > > chairperson / discussant requests : december 1 , 2000 > > > > > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: ( no subject ) stinson , henwood can help us with the project in our time frame ( end of january ) . the henwood person who will coordinate the project is david branchcomb , located in london . he will have to involve the henwood ? manager for asia , who works out of australia . i told him that you would call him wednesday morning on his cell phone to set up a conference call later the same day with the guy in australia . given time difference it may happen late afternoon . they expect that we shall give them the specs of the project . it makes sense to involve sandeep at the conference call : he will be very specific about our needs . i sent you his coordinates in an earlier message . sandeep may have to come to the office : i don ' t know if anita knows how to set up a conference call . david ' s phone numbers : 44 207 242 8950 44 787 942 5375 ( cell ) . i may be at the office in the morning for an hour or two . vince",0 +"Subject: tiger evals - attachment tiger hosts : i understand that some hosts have had problems accessing the database to complete the tiger team evaluations . i apologize for the difficulties and have attached the form for your convenience . please feel free to return it electronically or by fax ( 215 - 573 - 5727 ) . thank you again for your time . donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu > - tiger team host evaluation . doc",0 +"Subject: re : ken lay ' s speech the $ 1 . 3 trillion tax cut which is frequently quoted by the press is over 10 years , the $ 460 tax cut below is over five years . maureen raymond 01 / 02 / 2001 12 : 44 pm to : alhamd alkhayat / na / enron @ enron , steven j kean / na / enron @ enron , margaret carson / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : ken lay ' s speech i looked into the proposed tax cut by george w . bush . on his website he proposes a $ 460 billion tax cut over five years . the $ 213 billion "" energy tax "" imposed from 1999 to 2001 by higher energy prices , is roughly half of bush ' s proposed tax cut . maureen",0 +"Subject: your approval is overdue : access request for tom . halliburton @ enron . com this request has been pending your approval for 9 days . please click approval to review and act upon this request . request id : 000000000003619 request create date : 9 / 27 / 00 9 : 18 : 21 am requested for : tom . halliburton @ enron . com resource name : unlisted application / software resource type : applications",0 +"Subject: vince , here is why analytical var does not work for non - normal variables . rakesh reviewed this argument as well . tanya",0 +"Subject: kin tso - ut candidate for direct hire vince , just wanted to follow up on our conversation yesterday regarding kin tso . charlene actually called kin yesterday to let him know that your group was interested in him as a direct hire and would be contacting him this week . as we discussed , kin was told that his quantitative skills were a much better fit for your group instead of our rotating associate program . we let him know that the associate program would not be making him an offer but he is being considered for a direct hire . kin was receptive and is looking forward to hearing from you . we will consider this issue closed from the associate and analyst program . we hope that you might find a direct hire fit for him in your area . if you have any additional questions , please let me know . thanks so much .",0 +"Subject: bachelier finance society congress , crete 2002 dear dr kaminsky , on behalf of the scientific committee of the 2 nd world congress of the bachelier finance society , it is my pleasure to invite you to give one of the plenary lectures . the bachelier finance society came into being in 1996 by the initiative of mathematical finance researchers who found the need to create an organization where academia and practitioners would meet and exchange ideas spanning on the crossroads between finance , economics , econometrics , insurance and mathematics . the conference is the society ' s second biannual meeting and it will take place in the island of crete , from june 12 to june 15 , 2002 . the other members of the scientific committee are g . constantinides , m . davis , f . delbaen , d . duffie , h . foellmer , m . jeanblanc and e . platen . either myself or any other member of the committee would be happy to discuss with you about the conference and the society . crete is one of the most beautiful greek islands . the conference will take place in a resort in xersonissos , a picturesque site close to irakleion and knossos . the airfare ( economy class ) and all local expenses ( lodging , meals and local transportation ) will be covered . we will all be honored by your presence . sincerely , thaleia zariphopoulou chair of the scientific committee v . n . neuhaus professor dpts of mathematics and msis the university of texas at austin ",0 +"Subject: london research group john , i am writing to you regarding the management of the london research group . as you know , dale surbey , who was managing the london unit of the research group , is moving to ebs . dale did a terrific job helping me to develop the pool of talent we have currently in london . given that dale is likely to be transfered to houston , it ' s time to nominate one member of the research group for a management position . my recommendation is steve leppard . steve emerged not only as the most technically qualified member of the group but also as a natural leader , highly respected by his peers and internal customers . steve has a very high energy level and is very efficient as a manager and as coach of new talent . his promotion is likely to cause anjam ' s departure form enron . i value technical skills of anjam , but in spite of my loyalty to him , don ' t think he is the same caliber as steve . however , i would not like to lose him and think about moving him to houston for 2 years . i think that the opportunity to work in houston , would be a sufficient incentive to keep him in enron . by the way , his performance feedback has greatly improved . please , let me know what you think . vince",0 +"Subject: re : baylor professors lunch beth , i would appreciate it . see you at 11 : 45 tomorrow . vince from : beth miertschin 07 / 11 / 2000 03 : 05 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : baylor professors lunch yes vince , i will drive and you are welcome to ride with me if you would like . i can meet you in the lobby about 11 : 45 tomorrow . beth vince j kaminski 07 / 11 / 2000 02 : 51 pm to : beth miertschin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : baylor professors lunch beth , thanks . you can always track me down on my cell phone 713 410 5396 in case i am mia . also , will you drive ? please , let me know . vince from : beth miertschin 07 / 11 / 2000 02 : 26 pm to : vince j kaminski / hou / ect @ ect cc : subject : baylor professors lunch try this vince and i ' m sorry ! beth - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 07 / 11 / 2000 02 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : beth miertschin 07 / 11 / 2000 09 : 40 am to : mitchell taylor / corp / enron @ enron , bill w brown / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : shelly jones / hou / ect @ ect , geynille dillingham / hou / ect @ ect , sheila pardo / hou / ect @ ect subject : baylor professors lunch the lunch with the baylor professors will be tomorrow , july 12 th , at damian ' s . the reservation is for 12 : 00 pm and you are welcome to meet us in the lobby around 11 : 45 or meet us at the restaurant . please let me know where we should look for you so we don ' t inadvertently leave you . i look forward to seeing you all then and thanks for your support and participation . beth miertschin - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 07 / 11 / 2000 09 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : beth miertschin 07 / 07 / 2000 05 : 01 pm to : mitchell taylor / corp / enron @ enron , bill w brown / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : shelly jones / hou / ect @ ect , geynille dillingham / hou / ect @ ect subject : baylor professors lunch on wednesday , july 12 dr . john martin , chair of finance department , and dr . bill petty , chair of entrepreneurship department , of baylor university will be at the enron building to discuss future sponsorship of the texas finance festival and to talk about recruiting . they have asked me to invite all of you to lunch with us on that day so that they might have a chance to visit with you all as well . please let me know if you are available for lunch on july 12 at noon .",0 +"Subject: customer profiling meeting bob shults is scheduled to be in atlanta , ga on the 17 th of march and would like to reschedule the "" customer profiling meeting "" , to tuesday , march 21 st at t 1 : 30 p . m . , location to be announced . if you are unable to attend please let me know . lydia 3 - 9975",0 +"Subject: meeting confirmed : mit / aa new value research lab this will confirm the meeting requested below . please note , all invitees are not available , but the confirmed meeting time is the best time for most of the invitees . date : thursday - august 10 time : 11 : 00 a to noon place : conference room 4741 confirmed attendees : rick causey marie hejka steve kean amy oberg mark palmer mark ruane thanks for your help , everyone . - - - - - - - - - - - - - - - - - - - - - - forwarded by carol moffett / hou / ees on 08 / 03 / 2000 04 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron energy services from : carol moffett 08 / 02 / 2000 03 : 44 pm phone no : 713 - 853 - 6658 phone 888 - 782 - 3518 pager eb 613 b to : ginger dernehl / hou / ees @ ees , shirley crenshaw / hou / ect @ ect , karen k heathman / hou / ect @ ect , sharron westbrook / corp / enron @ enron , laura gutierrez / hou / ect @ ect , laura valencia / corp / enron @ enron , patty pennington / enron communications @ enron communications cc : steven j kean / hou / ees @ ees , vince j kaminski / hou / ect @ ect , rick buy / hou / ect @ ect , richard causey / corp / enron @ enron , mark ruane / hou / ect @ ect , mark koenig / corp / enron @ enron , mark palmer / corp / enron @ enron , amy oberg / hou / ees @ ees , marie hejka / corp / enron @ enron subject : meeting request : mit / aa new value research lab good afternoon . i am assisting amy oberg with setting up a meeting among the individuals listed below . would you be so kind as to review their calendars and let me know if they are available during any of the suggested meeting times . meeting topic : mit / aa new value research lab meeting purpose : follow up to discussion from 8 / 1 / 00 ; rick causey to brief group on conversations w / aa regarding "" where they intend to go with this effort "" . attendees : steve kean vince kaminski rick buy rick causey mark ruane mark koenig mark palmer amy oberg marie hejka suggested meeting dates and times : thursday - august 10 anytime between 8 : 00 a and 10 : 00 a thursday - august 10 11 : 00 to noon friday - august 11 anytime between 8 : 00 a and 9 : 30 a friday - august 11 1 : 00 p to 2 : 00 p thank you .",0 +"Subject: prc meeting hello everyone : it looks like friday , december 8 th is the day that you will have the prc meeting listed below . mark your calendars - details later . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 30 / 2000 01 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - norma villarreal 10 / 28 / 2000 10 : 47 am to : shirley crenshaw / hou / ect @ ect , stinson gibner / hou / ect @ ect , mike a roberts / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , maureen raymond / hou / ect @ ect , zimin lu / hou / ect @ ect , osman sezgen / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect , ramona perkins / corp / enron @ enron subject : performance the research group will be conducting a performance review committee ( prc ) meeting in early december . all vice presidents , sr . directors and directors should attend . shirley crenshaw will be contacting you to schedule the prc meeting date and time . these are the current available dates : december 4 , 8 . in preparation for the meeting please submit recommended rankings and promotions to me based on employee feedback by november 29 , 2000 . please included analyst / associates , if you have any questions please feel free to call me or ramona perkins at x 58165 . here is some helpful information for you as we proceed throughout he performance evaluation process october 25 , 2000 - november 17 , 2000 ( 3 1 / 2 weeks ) : employees will provide a list of accomplishments occurring after june 1 , 2000 to their supervisors employees will receive an email advising of access and passwords to pep system ( 10 / 25 ) employees identify selected reviewers on line and will submit to supervisor supervisor will add and / or delete reviewers in order to capture a full 360 degree feedback supervisor will submit and reviewers will receive an e : mail advising them of their reviewer role reviewers can decline or complete the review once system closes on november 17 , 2000 , prepare for research prc meeting ( print consolidate review , pre rank employees , identify candidates for promotion and submit to hr ) important dates ( i will notify you of any changes ) : september 30 , 2000 only employees before 10 / 1 / 00 will be included for pep and bonuses october 15 , 2000 whomever is the supervisor for employees on 10 / 15 / 00 will be responsible for their reviews october 25 , 2000 pep system opens ( http : / pep . corp . enron . com ) october 30 - 31 , 2000 pep overview session at doubletree november 17 , 2000 pep system closes for feedback november 23 - 24 thanksgiving holiday november 29 , 2000 provide hr with pre - rankings and promotions december tbd , 2000 research prc january 31 , 2001 all reviews must be complete , signed and submitted to hr norma sr . hr representative x 31545",0 +"Subject: customer profiling meeting - amendment bob shults is scheduled to be in atlanta , ga on the 17 th of march and would like to reschedule the "" customer profiling meeting "" , to tuesday , march 24 st at t 1 : 30 p . m . , location to be announced . if you are unable to attend please let me know . lydia 3 - 9975",0 +"Subject: re : evaluation for barbara pierce patricia , barbara pierce did not show up on my list of people asking for a review . maybe a glitch in the system . vince patricia payton @ enron 11 / 22 / 2000 08 : 56 am to : vince . kaminski @ enron . com cc : subject : evaluation for barbara pierce thank you for agreeing to interview barbara pierce . unfortunately we are unable to proceed because we have not received all of her evaluations . can you please fax the evaluation to me at your earliest convenience at ( 713 ) 646 - 3441 and send the original via interoffice mail to ebl 171 . thanks again , patricia ext . 54903",0 +"Subject: * special notification * aurora version 5 . 5 release , what ' s new ? iv friends : i spoken with most of you over the last few weeks regarding the new version of aurora due to be released tomorrow . we ' ve broken a lot of new ground with this version , and this version will serve as our official launch into the eastern u . s . we ' ve worked closely with our eastern customers , and responded to the needs of the market . some of the enhancements : aurora software modeling enhancements : * energy storage - resources ( pumped hydro ) * market areas : no limit on number of areas * transmission : congestion pricing . * price caps * risk analysis * modeling enhancements via vb scripting : "" update data "" capability general capabilities * aurora ' s run time speed improved again . * file transfers to epis * interface enhancements reporting enhancements * marginal resource reporting * resource operations reporting * resource stacks detail consolidated aurora databases * east - central aurora database - - 25 market areas modeled with 11 market areas in new york iso . * wscc aurora database - - updated ipp resources * ercot aurora database - updated resources * all databases updated to use the new modeling capabilities as aurora continues to grow , and we meet the needs of the market , we have made several procedural changes . we continue to offer free 7 - day demos to those companies that want to take a look at the model , and get a brief idea of how it thinks and feels . after that 7 - day demo period we now offer either a discount for moving into a full license , or we offer a 60 - day trial for $ 10 , 000 . 00 - - we also now offer more options for the licensing of the model . annual licenses are priced as follows : single user ( 1 user / 1 pc ) $ 33 , 000 . 00 limited - use ( 1 user / multiple pcs or multiple users / 1 pc ) $ 45 , 000 . 00 two - user ( 2 users / 2 pcs ) $ 55 , 000 . 00 site license ( unlimited users / pcs excluding affiliates ) $ 79 , 000 . 00 affiliate - site ( unlimited users / pcs including affiliates ) $ 99 , 000 . 00 for additional information , please contact me , and i ' ll speak with you about how aurora can help you in your specific operations and projects . v . todd wheeler sales manager epis , inc . ( 503 ) 722 - 2023 tel . x 210 ( 503 ) 722 - 7130 fax www . epis . com todd @ epis . com > - what ' s new - version 5 . 5 information . doc",0 +"Subject: akamai kevin , i have followed up on your request to identify a potential hire from akamai ( a person familiar with their technology ) . we can start discussions with the targets in a few days . please , let me know which unit in ebs is a potential hiring agent . if it ' s research , who inside ebs can sponsor this position ? we have to discuss the responsibilities and job description . vince",0 +"Subject: re : houston visit hi vince , sorry that we couldn ' t meet in houston . hope your philadelphia trip was fruitful and you didn ' t suffer from weather related flight delays on your way back to houston . your phone message stated that you may be coming to ny in jan . 2001 . that ' s great vkaminski @ aol . com subject : re : houston visit soussan , it seems we have planned for all contingencies . look forward to meeting you next week . vince "" faiz , soussan "" on 11 / 28 / 2000 06 : 51 : 51 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : houston visit vince , your suggested arrangement is perfect with me and i love both italian or steak . . . the choice is yours . i really look forward to our meeting vkaminski @ aol . com subject : re : houston visit soussan , let ' s meet at westin oaks next to the reception around 6 : 30 p . m . thursday . there are several nice restaurants within a walking distance to the galleria . i shall make a reservation ( is italian or a steakhouse ok ? ) . you can reach me on thursday at my cell phone 713 410 5396 . look forward to meeting you . vince "" faiz , soussan "" on 11 / 27 / 2000 04 : 37 : 30 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : houston visit great ! i look forward to our dinner on thurs . 12 / 7 evening . hopefully your flight will be on time . . . although having watched 60 minutes last night and suffered from a # of delays lately , let ' s hope that the "" weather blame "" doesn ' t get in the way . it ' s best to leave me a message @ my usual work # on thurs . , 914 253 4187 , . . . i can easily check it in houston . i ' ll be staying @ the westin oaks in the galleria . . . any preferred place that i can book ( & for what time ) ? ? coming over to down town won ' t be a problem for me either . will be great to see you again . soussan 914 253 4187 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , november 27 , 2000 12 : 10 pm to : faizs @ texaco . com cc : vince . j . kaminski @ enron . com subject : re : houston visit soussan , thanks for your message . it would be great to meet you when you come to houston . i shall be in town on december 7 , flying back from philly in the morning . assuming that the flight is on schedule , i shall be available for dinner . please , let me know how i can contact you on thursday , december the 7 th , to confirm . look forward to meeting you . vince "" faiz , soussan "" on 11 / 26 / 2000 09 : 04 : 01 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : houston visit dear vince , greetings from ny and hope that all is well and you had a great thanksgiving . i ' ll be coming to houston for 12 / 6 - 12 / 7 and hope you are available either evening for dinner . would be great to see you again and catch up with the latest . . . i really enjoyed my visit last april , your insights , and the risk book you gave me . i do hope you ' re available to meet and pls let me know which evening suits you better . best , soussan faiz texaco inc . 914 253 4187",0 +"Subject: re : country risk jr . economist hiring vince , thanks . - - gwyn vince j kaminski @ ect 05 / 02 / 2001 03 : 20 pm to : gwyn koepke / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : country risk jr . economist hiring gwyn , try to reduce the number of potential candidates to 3 , before i shall get involved . also , i contacted hr regarding your promotion . the process has started . vince gwyn koepke @ enron 05 / 02 / 2001 03 : 09 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : country risk jr . economist hiring thanks vince . i have the resume book from sais . i ' d like to start contacting them individually telephonically prior to meeting with maureen . i will begin to contact them and do some initial screening . would you like to participate in the initial screening ? thanks , - - gwyn vince j kaminski @ ect 05 / 02 / 2001 03 : 06 pm to : gwyn koepke / na / enron @ enron cc : subject : re : country risk jr . economist hiring gwyn , yes , please go ahead and get a resume book from sais . vince gwyn koepke @ enron 05 / 02 / 2001 11 : 40 am to : vince j kaminski / hou / ect @ ect cc : subject : country risk jr . economist hiring vince , maureen had mentioned to me a while back that our group had approval to hire an junior / full economist . she then asked me to contact johns hopkins sais to get resumes of possible candidates . i have completed all this . but , before i begin contacting these potential candidates , i wanted to confirm with you that we have the approval to hire another person at the either junior or associate economist level . thank you . gwyn koepke ",0 +"Subject: request submitted : access request for tony . harris @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000006452 approver : stinson . gibner @ enron . com request create date : 11 / 2 / 00 1 : 12 : 58 pm requested for : tony . harris @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read ] resource type : directory",0 +"Subject: re : hello from vince kaminski at enron great you are on for the 23 shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : cc : sent : friday , september 15 , 2000 6 : 04 pm subject : re : hello from vince kaminski at enron > > shmuel , > > sorry for not getting back to you earlier . > if the 23 rd of october is still open , i can make the presentation on this > day . > > vince > > > > > > > "" shmuel oren "" on 08 / 30 / 2000 08 : 18 : 15 am > > to : > cc : > subject : re : hello from vince kaminski at enron > > > originally you mentioned october 23 so i reserved that week which is still > open . > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > shmuel s . oren , professor > dept . of industrial engineering > and operations research > 4117 etcheverry hall > university of california > berkeley , ca 94720 - 1777 > e - mail : oren @ ieor . berkeley . edu > phone : ( 510 ) 642 - 1836 or 5484 > fax : ( 510 ) 642 - 1403 > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > - - - - - original message - - - - - > from : > to : > cc : ; ; > > sent : wednesday , august 30 , 2000 9 : 03 am > subject : re : hello from vince kaminski at enron > > > > > > shmuel , > > > > let ' s see if we can either rearrange the seminar speakers > > or change the date of our visit to the campus . ashley baxter , our > > coordinator is very efficient and > > got a faculty room for a presentation on monday morning on the 16 th . > > > > vince > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 29 / 2000 05 : 37 : 33 pm > > > > to : > > cc : > > subject : re : hello from vince kaminski at enron > > > > > > dear vince . i spoke too soon . apparently the seminar slot on the 16 was > > already filled . i will see if i can switch the speaker for that week to > the > > following week . in any case we are on for dinner on the 16 . > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > shmuel s . oren , professor > > dept . of industrial engineering > > and operations research > > 4117 etcheverry hall > > university of california > > berkeley , ca 94720 - 1777 > > e - mail : oren @ ieor . berkeley . edu > > phone : ( 510 ) 642 - 1836 or 5484 > > fax : ( 510 ) 642 - 1403 > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > - - - - - original message - - - - - > > from : > > to : > > cc : ; > > sent : tuesday , august 29 , 2000 5 : 01 pm > > subject : re : hello from vince kaminski at enron > > > > > > > > > > shmuel , > > > > > > the date of our trip to berkeley has been set . it will be october 16 th > > and > > > 17 th > > > ( monday and tuesday ) . > > > > > > i shall be glad to make a presentation on energy derivatives markets > > > ( development of the markets in the us and europe , valuation > difficulties , > > > enron ' s role > > > in developing the forward markets for natural gas and electricity ) . > > > > > > please , let me know if this topic would be of interest to you . if this > is > > > the > > > case , i shall follow with a title and an abstract . > > > > > > by the way , are you free for dinner on monday ? > > > > > > vince > > > > > > > > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 24 / 2000 08 : 59 : 38 am > > > > > > to : "" vince j kaminski "" > > > cc : > > > subject : re : hello from vince kaminski at enron > > > > > > > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me > a > > > title and abstract . > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > shmuel s . oren , professor > > > dept . of industrial engineering > > > and operations research > > > 4117 etcheverry hall > > > university of california > > > berkeley , ca 94720 - 1777 > > > e - mail : oren @ ieor . berkeley . edu > > > phone : ( 510 ) 642 - 1836 or 5484 > > > fax : ( 510 ) 642 - 1403 > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > > - - - - - original message - - - - - > > > from : "" vince j kaminski "" > > > to : "" shmuel oren "" > > > cc : "" vince j kaminski "" ; "" ashley baxter "" > > > > > > sent : thursday , august 24 , 2000 9 : 58 am > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > > > > > > > shmuel , > > > > > > > > thanks for the message . i am working with our recruiter , ashley > baxter , > > > > to finalize the date of the trip . i shall shoot for october the 23 rd > > > > if this date works for the rest of our team . > > > > > > > > vince > > > > > > > > > > > > > > > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am > > > > > > > > to : vince j kaminski / hou / ect @ ect > > > > cc : > > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > > > > > dear vince . > > > > i sent you a reply earlier this month but i haven ' t heard from you > > about > > > the > > > > date of your visit . our department has a seminar every monday . if you > > can > > > > schedule your visit on a monday i would like to invite you to give a > > > seminar > > > > which will be attended by many of our graduate students and faculty > and > > > will > > > > give you an opportunity to tell them about your program . with > > sufficient > > > > lead - time i can advertise the seminar in the hass school to their > > > financial > > > > engineering students . > > > > shmuel . > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > shmuel s . oren , professor > > > > dept . of industrial engineering > > > > and operations research > > > > 4117 etcheverry hall > > > > university of california > > > > berkeley , ca 94720 - 1777 > > > > e - mail : oren @ ieor . berkeley . edu > > > > phone : ( 510 ) 642 - 1836 or 5484 > > > > fax : ( 510 ) 642 - 1403 > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > > > > - - - - - original message - - - - - > > > > from : > > > > to : ; ; > > > > > > > > sent : tuesday , august 08 , 2000 10 : 59 am > > > > subject : hello from vince kaminski at enron > > > > > > > > > > > > > shmuel , > > > > > > > > > > i hope you remember me . i visited you together with aram > sogomonian , > > a > > > > > good friend of mine , a few years ago . i am currently responsible , > > among > > > > > other things , for recruiting graduates with finance and / or > technical > > > > > backgrounds at the university of berkeley . i would be glad to give > > you > > > a > > > > > call and talk more about the details of our program . my colleague , > > > > > ashleybaxter , from the analyst / associate program at enron would > join > > me > > > > > as well . > > > > > > > > > > i am sending you a copy of the brochure about the analyst / > associate > > > > > program . > > > > > > > > > > vince kaminski > > > > > > > > > > > > > > > vincent kaminski > > > > > managing director - research > > > > > enron corp . > > > > > 1400 smith street > > > > > room ebl 962 > > > > > houston , tx 77002 - 7361 > > > > > > > > > > phone : ( 713 ) 853 3848 > > > > > fax : ( 713 ) 646 2503 > > > > > e - mail : vkamins @ enron . com > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : visit to houston and vince kaminski ' s research group shijie , we would like you to meet tomorrow morning , starting at 9 : 00 , with a few members of the group . around 11 : 15 we shall go to lunch ( myself , stinson gibner and zimin lu ) . at 1 : 00 we would like you to make a presentation to the research group on the topic of your choice . after 2 : 30 we shall continue with individual meetings . we shall give you an agenda with the names and times when you arrive . you can come to the lobby of the enron building ( 1400 smith ) between 8 : 30 and 9 : 00 and call me ( 3 - 3848 ) or my assistant , shirley crenshaw ( 3 - 5290 ) , to be admitted to the building . we are on the 19 th floor . look forward to meeting you . vince kaminski shijie deng on 07 / 27 / 2000 10 : 10 : 03 am to : shirley . crenshaw @ enron . com cc : vince kaminski subject : re : visit to houston and vince kaminski ' s research group hi shirley , an overhead would be good . thanks . btw , is there happen to be an agenda for my visit ? thank you . shijie shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng on fri , 7 jul 2000 shirley . crenshaw @ enron . com wrote : > > shijie : > > thanks for the information . > > please let me know if you need av equipment , i . e . , lcd projector , overhead > projector , etc . > > thanks ! > > shirley > > > > > > > > > > shijie deng on 07 / 03 / 2000 11 : 40 : 05 am > > to : shirley . crenshaw @ enron . com > cc : vince kaminski > subject : re : visit to houston and vince kaminski ' s research group > > > > shirley , > > i just booked my flights and the hotel . i ' ll be arriving houston on > the evening of 7 / 27 and leaving on 7 / 29 . i ' ll stay at the doubletree > houston allen center for two nights . looking forward to meeting you at > enron . > > regards , > > shijie > > shi - jie deng > assistant professor > school of isye > georgia institute of technology > > office phone : ( 404 ) 894 - 6519 > e - mail : deng @ isye . gatech . edu > home page : http : / / www . isye . gatech . edu / ~ deng > > > > > > >",0 +"Subject: risk contact steve , i talked to sh ? n about your paper . please , feel free to contact her directly and discuss the publication options . vince sh ? n millie risk books 28 - 29 haymarket london swly 4 rx phone : 44 ( 0 ) 171 484 9740 fax : 44 ( 0 ) 171 484 9758 e - mail : shan @ risk . co . uk www . riskpublications . com",0 +"Subject: re : fed ex from iris sounds good to me , vince . thanks , molly vince j kaminski 01 / 17 / 2001 09 : 52 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : fed ex from iris molly , yes , march 1 would work . vince enron north america corp . from : molly magee 01 / 16 / 2001 03 : 36 pm to : vince j kaminski / hou / ect @ ect cc : subject : fed ex from iris just checking to be sure you ' re okay with a march 1 start date for iris ? molly - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 16 / 2001 03 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : "" iris mack "" 01 / 16 / 2001 03 : 13 pm to : molly . magee @ enron . com , vince . j . kaminski @ enron . com cc : subject : fed ex from iris hi , thanks for the fed ex with the offer letter , and other pertinent information about enron . i have signed the letter and returned it to you , along with a couple of other forms . you should receive these documents via fed ex on tomorrow morning . because i have to tie up a few loose ends here in california , i won ' t be able to start until march lst . i hope that is okay . thanks so much . regards , iris get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: re : offsite meeting - - great divide lodge - - invited guest list hi sheryl , please add david cox ' s name in the list . additionally , please include chonawee supatgiat for research . once john approves the current list and we get some feed back by talking to people ' s admin to book attendees time . ravi . here is the latest version of the agenda . sheryl lara 03 / 27 / 00 04 : 59 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / enron communications , john griebling / enron communications @ enron communications , ravi thuraisingham / enron communications @ enron communications cc : shirley crenshaw / hou / ect @ ect subject : offsite meeting - - great divide lodge - - invited guest list gentlemen : attached please find the "" proposed "" final invitees list for the technical , research , and operations offsite meeting to be held april 27 - 29 , 2000 at the great divide lodge in breckenridge , colorado . i am working with shirley crenshaw to secure cost - efficient travel and meeting arrangements for the entire group . in order to secure a group rate , we must make sure we have a "" final headcount "" in place . please let me know by tuesday , march 28 th at 12 : 00 noon if you have any additions or corrections to the attached list . many thanks in advance for your prompt attention !",0 +"Subject: briefing robert johnston on metals vince , sorry , i was not able to take your call this morning , to avoid distractions i was editing a technical coner article on ppp out of my office . last friday , i called robert johnston immediately after you told me to contact him to brief him on nonferrous metals . i let him know that i was scheduled to speak about metals in our research meeting on october 12 th . i also talked with him a few weeks ago that i would like to meet with him and scott tholan to brief them on metals . robert did not arrange the meeting . i arranged a meeting for 10 : 30 tomorrow to take them both through the metals fundametals speech . the london metals confererence sounds great , since i have five years experience in metals fundamental analysis and pricing , i would also like to attend . many of my new research group customers are asking for my expertise in this new business for enron . i could certainly help our customers better by getting the latest information on metals . please let me know if this is ok with you . regards , maureen",0 +"Subject: re : uk portfolios and books setup in risktrac naveen and matthew , i started looking systematically through uk positions and corresponding var numbers in the risckrac . i found a few inconsistencies so far . 1 . the portfolio elsb 1 - nbp has a book elsb 1 under it . the sum of delta positions for this book is 239 , 021 , 655 , the sum of gamma positions is - 211 , 031 , 450 . var for the portfolio elsb 1 - nbp is zero . the same refers to a few other portfolios , for example elsb 2 - nbp , elsb 3 - nbp , e 2 xxl - nbp . 2 . the portfolio elsbp 1 - ppp also has the book elsb 1 under it . this book contains the positions on pppwdl through pppwd 6 and pppwel through pppwe 4 . the same refers to the other books , for example elsb 2 . this looks messy . can someone in rac go over all the portfolios , all the corresponding books and curves in risktrac and make sure they are set up properly ? thank you , tanya .",0 +"Subject: re : update john , i shall be traveling thu and fri this week and mon and tue next week . please , give me a call tuesday morning and i shall carve out an hour from my schedule to discuss the paper . stinson will be gone for three weeks so we have to do the work without him . alternatively , we can delay the conversation till next week . vince "" john d . martin "" on 09 / 12 / 2000 04 : 23 : 34 pm to : vkamins @ enron . com cc : subject : update vince , sorry i haven ' t been pressing you on the paper but there ' s always more to do than we have time for . however , i had a phone call from the editor encouraging me to get the paper to him by christmas so it could serve as the centerpiece of his energy issue . his comment to me was "" everyone wants to know what enron ' s doing "" . so , with that said i ' ll try to put together a list of materials that i have collected and maybe we can have a phone conversation to get your ideas on a plan to put the paper together . the harvard cases do a nice job of laying out institutional and historical details but we will need a "" tack "" or theme to begin the writing process . by the way , we have managed to delay the spring texas finance festival one week so that it will not coincide with easter ( hope you can now attend ) . we didn ' t have too many problems with the easter weekend but there were some and we would prefer not to use that weekend either . hope all is going well for you guys . tell stinson hello for me . your friend , john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : further actions on anjam ' s departure anjam has told me he is not going to an energy competitor ( he mentioned weather derivatives as a the only overlap . i therefore see this as low risk from a security point of view , so let ' s make sure handover is thorough . you might focus our security efforts on his access to weather - related info . richard steven leppard 26 / 10 / 2000 17 : 06 to : melanie doyle / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect , richard lewis / lon / ect @ ect subject : further actions on anjam ' s departure hi mel further to our earlier discussions here ' s the full list of actions we ' d like to put into place regarding anjam ' s departure : hr - type stuff : 1 . get anjam off the trading floor as soon as possible . there is no need for him to remain on the floor . this will need to be delayed until it number 1 is completed ( cataloguing his work ) . 2 . determine where anjam is heading . we need to know who is going to know our positions and curves next . 3 . remove his security pass , and insist that he is always accompanied when in the building . sharad is to sit with him while he catalogues his work . it - type stuff : 1 . ask him to catalogue the contents of his h : drive , since the rest of the group will need to support his work in the future . this should take no more than a day or two . 2 . get it to obtain their backups of anjam ' s h : drive for weekly intervals over the last two months . this will allow us to determine what he has deleted . 3 . get it to provide a snapshot of anjam ' s notes folders , and provide records of mail sent out to the internet over the last couple of months . i ' m worried about code / data he may have zipped up and mailed out . 4 . ask it to use a utility program to determine what has been deleted from anjam ' s c : drives . there may be useful info here too . 5 . revoke all internet access , whether via explorer or notes mail . 6 . get a record of all files he has printed over the last couple of months . vince has ok ' d this lot , so let ' s do it asap . many thanks , steve",0 +"Subject: new procedures for enron it purchasing attention ! starting 06 / 22 / 00 , enron it purchasing will no longer be able to receive orders for it equipment . to place an order , please proceed to the following website : http : / / itcentral . enron . com any orders sent to enron it purchasing before this date will be processed - - you do not need to enter another request . enron it purchasing will still be open to status requests , approval notifications and pricing inquiries . thank you very much for your patience and cooperation ! it sourcing and procurement .",0 +"Subject: enron europe research group intranet site announced to enron europe with very positive response . hope to catch up with you soon ( probably july ) , anjam x 35383 - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 15 / 06 / 2000 09 : 20 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : enron europe general announcement 14 / 06 / 2000 18 : 53 please respond to anjam ahmad / lon / ect to : ect europe cc : subject : research group intranet site research group intranet site following the recent lunch presentations , there has been considerable interest from enron europe staff in improving their quantitative skills , helping to maintain our competitive advantage over competitors . we have recently created the research group ' s intranet site which you can find on the enron europe home page under london research group . the site contains an introduction to the group and also information on : derivatives pricing risk management weather derivatives credit risk extensive links database if you have any questions or issues on quantitative analysis ( including hedging and risk management of derivatives ) please don ' t hesitate to get in touch . regards , anjam ahmad research group first floor enron house x 35383",0 +"Subject: java class starting feb 20 th . some notes on the upcoming java class . we have an extremely high interest in the class , which is good , but since we are limited to 15 students , not everyone who expressed an interest could be accomodated . those registered are : 1 martin lin 2 . chonawee 3 . tom barkley 4 . lance cunningham 5 . seksan kiatsupaibul 6 . wichai narongwanich 7 . praveen mellacheruvu 8 . sevil yaman 9 . stephen bennett 10 . sam smith 11 . jason sokolov 12 . jaesoo lew 13 . amitava dhar 14 . george hopley ' s group 15 . george hopley ' s group each person taking the class will need to find a laptop computer ( shirley may be able to help ) and be sure that the proper software is installed before the course . chonawee will try to install the s / w on his laptop as a test case . the class is divided into two weeks . each week consisting of 4 days , noon to 5 p . m . the first four days are feb 20 - 23 , so mark your calendars . the classes in feb . will be in 30 cl ( tuesday ) and 30 c 2 ( remainder of the week ) . if you can not attend please let me know , so that others who want to take the class can take your place . - - stinson",0 +"Subject: info about enron ' s bandwidth market dear dr . kaminski , i enjoyed your talk this afternoon at ieor very much . i wonder if you could point me to some information resource on enron ' s bandwidth market . i am a ph . d student at ieor . i work with professor oren and professor varaiya from eecs department on the topic of pricing the internet . in particular , i am designing pricing mechanism in the framework of the diffserv architecture which is the latest proposal made by ietf to provide scalable service differentiation . i would very much like to get in touch with people in enron working on the similar topics . thank you very much . jun shu http : / / www . ieor . berkeley . edu / ~ jshu",0 +"Subject: interview with norberto valdes hello all : norberto telephoned me this morning and will not be able to come on friday , may 5 th . we have rescheduled the interview for monday , may 1 . the times are as follows : vasant shanbhogue 1 : 00 pm vince kaminski 1 : 15 pm clayton vernon 1 : 30 pm stinson gibner 1 : 45 pm tanya tamarchenko 2 : 00 pm grant masson 2 : 15 pm they will be conducted in ebl 938 thanks ! shirley",0 +"Subject: re : ut short course travel arrangements martin , i can join the car pool . vince from : martin lin on 04 / 25 / 2001 10 : 59 am to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , sandeep kohli / enron _ development @ enron _ development , lance cunningham / na / enron @ enron , sevil yaman / corp / enron @ enron cc : subject : ut short course travel arrangements if the schedule works , perhaps a carpool is best for attending the course , given the number of us going . vasant has offered to drive . dependiing on driving speed and traffic , leaving houston by 9 : 30 am should give sufficient time to make the lpm class , including some time for lunch . please let me know if you are interested in the carpool or have alternate plans or suggestions . thanks , martin",0 +"Subject: my gratitude dear : i would like to express my gratitude to you for giving me an opportunity to have an interview with enron . i have to accept that enron provides an excellent working environment . i am looking forward to hearing good news from the research group . if there is anything else that i can do to accelerate the process , don ' t hesitate to e - mail me . best regards , seksan .",0 +"Subject: re : charm jim , charm looks more like a prototype that requires a lot of work to make it more a production tool . we have developed a similar model ( without some nice functionalities charm has ) in about two weeks , at request of rick jones who joined ees from hsb . rick worked on a similar model at his old company and wanted to have a similar tool for his projects with enron . i can tell you more about it when we meet ( hopefully ) later this week . i would tell willis that the model requires more work before enron can consider it as commercial product . vince james l bouillion 04 / 11 / 2001 06 : 52 am to : vince j kaminski / hou / ect @ ect cc : jonathan davis / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : re : charm vince , what feedback should i give willis on their charm product ? - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 04 / 11 / 2001 06 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - james l bouillion 04 / 11 / 2001 06 : 50 am to : "" bertil olsson "" @ enron cc : subject : re : charm no word yet . i will follow up with the attendees . thanks for taking thje time to make the presentation . "" bertil olsson "" on 04 / 10 / 2001 04 : 07 : 11 pm to : james . l . bouillion @ enron . com cc : subject : re : charm jim , any feed - back on our meeting ? we certainly appreciated the opportunity and the fact that the meeting was very interactive . regards , bertil the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person . ",0 +"Subject: change of role just a quick note to say that i have now left the eprm / risk conference division after two and a half very happy years . i am however still at risk waters group , where i am now working as a journalist on eprm magazine . future conference enquiries should go to paul bristow ( us - 212 925 6990 ) or frances tully ( europe - + 44 ( 0 ) 20 7484 9731 ) . many thanks for your work my events and i hope we can work together again in the future . if you have any ideas on the writing side then i would always appreciate a call or email - my contact details all remain the same . best regards , joel . joel hanley eprm magazine direct : + 44 ( 0 ) 20 7484 9885 www . riskwaters . com",0 +"Subject: uk gas data hi vince , i only just got forwarded this request - i can deal with the uk gas data requirments . regards , anjam x 35383 - - - - - - - - - - - - - - - - - - - - - - forwarded by kyran hanks / lon / ect on 01 / 08 / 2000 09 : 21 - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret carson @ enron 31 / 07 / 2000 22 : 12 to : vince j kaminski / hou / ect @ ect cc : kyran hanks / lon / ect @ ect subject : vince does your group have a monthly or a quarterly price history in nominal terms for a us onshore louisiana natural gas price ( or a texas wellhead price ) and a uk landed beach price for the past 15 years ? i am gathering historical data for jim o hara for our colombia pipeline in south america and these are among the series of data they are seeking . they would like the data from a published source in an electronic file if possible . . their timetable is by cob weds this week . thank you for your help . margaret",0 +"Subject: class speaker vince , as a reminder , i am hoping that you can identify a speaker for my class at ut on real options ( perhaps you ! ) . i look forward to hearing from you . jim james s . dyer fondren centennial chair in business department of management science and information systems cba 5 . 202 the university of texas at austin austin , texas 78712 - 1175 email : j . dyer @ bus . utexas . edu telephone : 512 - 471 - 5278 fax : 512 - 471 - 0587",0 +"Subject: mgmt 656 enclosed please find the final grade rosters for mgmt 656 . grades are due into our office no later than friday , may 4 . remember that this is the university deadline for graduating students . thank you for your help ! - pam ( 713 - 348 - 6223 ) - 656 . doc",0 +"Subject: re : informs abstract ( fwd ) - - - - - - - - - - forwarded message - - - - - - - - - - date : sun , 1 oct 2000 14 : 29 : 20 - 0400 ( edt ) from : shijie deng to : vkaminski @ aol . com cc : shijie deng subject : re : informs abstract vince , thanks for the abstract ! for the purpose of the conference program listing , the conference organizers need a title and an abstract which is longer than 50 words . based on the abstract that you sent me , i took the liberty to make up a title and the 50 - word abstract ( attached below ) . please make changes as you feel necessary and send them back to me . i ' ll send them out to the organizers once i get your confirmation on this . best , shijie title : current challenges in modeling power price volatility author : dr . vince kaminski , head of quantitative research , enron capital & trade resources abstract : the power market developments in the us have created several unique challenges for energy industry economists . we discuss the major factors underlying the exceptionally high volatility of electricity prices . we feel that some of them may be a necessary price to pay for increased market efficiency and expanded customer choice . shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng on sun , 1 oct 2000 vkaminski @ aol . com wrote : > shijie , > > i am sending you the abstract for my informs presentation . > > vince > > > * * * * * > > > the last three years were characterized by exceptionally high volatility of > the power prices in the us markets . the market developments have created a > number of unique challenges for energy industry economists . one immediate > question we have to answer is how to measure volatility of energy prices . > although we can all agree that the prices in the power markets are > characterized by high variability , the traditional measures used in financial > economics ( annualized standard deviation of log price returns ) may not fit > well electricity prices . the second challenge is to explain the sources of > high price volatility and to answer the question to what extent it can be > attributed to problems that can be addressed in the long run . such problems > include flaws in market design that allow some market participants to abuse > market power , limited availability and / or unequal access to transmission , > temporary shortages of generation capacity . some factors underlying high > volatility of electricity prices may be of permanent nature and may be a > necessary price to pay for increased market efficiency and expanded customer > choice . >",0 +"Subject: re : good morning / afternoon john , the phone number for ken lay is ( 713 ) 853 - 6773 . my recommendation is to call mark palmer first and discuss the book with him . his recommendation will open the door . i shall mention this to him as well . mark ' s phone number is ( 713 ) 853 - 4738 . vince "" john d . martin "" on 03 / 30 / 2001 12 : 12 : 50 pm to : vkamins @ enron . com cc : subject : good morning / afternoon vince , one of my colleagues here at baylor is writing a book about "" the business of heaven "" in which he interviews prominent business leaders . bob darden is his name and he ' s a former journalist and nice guy . he would like to contact ken lay about being one of his interviews . do you think this is possible ? if so , could you give me an address / phone numbers that bob might use to contact ken ' s secretary about setting up an interview ? if this is in any way "" not ok "" please just say so . see ya , john > date : fri , 30 mar 2001 11 : 35 : 03 - 0600 > from : robert darden > subject : yo ! > x - sender : "" robert darden "" ( unverified ) > to : j _ martin @ baylor . edu > organization : the door > x - mailer : mozilla 4 . 04 [ en ] c - flashnet ( win 95 ; i ) > > hi john - - i enjoyed our meeting yesterday . this looks very promising . > meanwhile , as i mentioned at the table , i ' m getting a little nervous > about the book that is due june 1 . > one of the names on our "" wish "" list of interviewees for "" the business of > heaven "" is ken lay at enron . > would it be possible for you to give me a good address and phone number > for mr . lay ' s office ? > and may i mention your name in the cover letter ? > i would be forever indebted . i might even buy the next lunch . > bob > p . s . thanks for sharing your concerns about church yesterday , too . i ' m > genuinely sorry things didn ' t work out better and feel more than a > little embarrassed that i didn ' t work harder to make you guys feel more > welcome and connected . on the other hand , please know that mary and i > will always love you and consider you both friends . i know you ' ll be > happy at lake shore - - even as we miss you at 7 th ! > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : reminder thanks , so much for your support !",0 +"Subject: fw : modified version lance , any comment ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 05 / 2001 08 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : beth perlman / enron @ enronxgate on 04 / 04 / 2001 04 : 50 pm to : louise kitchen / hou / ect @ ect , tim belden / hou / ect @ ect , kevin m presto / hou / ect @ ect , hunter s shively / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : fw : modified version this may be of interest to you . i was contacted by steve lake from argonne national laboratory who is interested in selling us some of their models and mapping software . let me know if there is any interest . thanks , beth - - - - - original message - - - - - from : "" lake , stephan "" @ enron nron . com ] sent : wednesday , april 04 , 2001 3 : 52 pm to : perlman , beth cc : conzelmann , guenter subject : fw : modified version beth , i enjoyed talking with you this afternoon regarding possible enron / argonne national laboratory collaboration . as i mentioned , one of our divisions , decision information sciences has built state of the art tools for modeling and simulating energy use . they have trained many country energy ministries on the use of their tools as well as solved complex energy technology issues . i ' ve attached a presentation which describes some of their capabilities in this area . decision information sciences also has done much work in studying critical infrastructure issues in both gas and electric systems which also may be of interest . finally , they have been pioneers in the development of agent based complex adaptive systems for modeling very complex systems that are impossible to view with over approaches . i will also include a copy of my correspondences with one of your e - business groups under separate transmission . regards , stephan lake manager , business development and marketing argonne national laboratory 630 - 252 - 5685 telephone 630 - 252 - 5230 fax - - - - - original message - - - - - from : conzelmann , guenter sent : monday , april 02 , 2001 4 : 50 pm to : lake , stephan subject : modified version guenter conzelmann manager , national and international studies section energy and environmental systems analysis group argonne national laboratory 9700 south cass avenue building 900 argonne , il 60439 - 4832 telephone : + + 1 - 630 - 252 - 7173 fax : + + 1 - 630 - 252 - 6073 email : guenter @ anl . gov web : http : / / enpep . dis . anl . gov / enpep / fedex / dhl address : 1200 international parkway woodridge , il 60517 - enpep overview industrial partnership 02 lake . ppt",0 +"Subject: re : saturday lunch nick , thanks for your message . saturday , 11 : 45 at the terman is fine with me . see you there . vince nick bambos on 03 / 01 / 2000 12 : 32 : 24 pm to : vince . j . kaminski @ enron . com cc : vkaminski @ aol . com , lorriep @ stanford . edu subject : saturday lunch vince , unfortunately , the faculty club is closed on saturday . > > > lorrie , could you please make reservations for 2 at , say , spieto ' s . < < < < i am looking forward to seeing you on saturday . shall we meet at the terman ground floor lobby at 11 : 45 ? i think the packard building is locked on saturday . thanks , nick",0 +"Subject: weather deriv . presentation vince , here is the info we discussed . if you need anything else , let me know joe x 33914 our london group ' s web page : http : / / www . weather - risk . com / ( especially check out the press presentations section ; it has a lot of good general info ) pdo ' s http : / / www . srh . noaa . gov / bro / pdo . htm more general info : ( has a bit more on precip derivatives than usual , given the audience ) finally , according to our traders , cme trading activity is down to a couple of deals a month . i ' ll try to dig up some specific articles , but i suspect most of them are in one way or another cme press releases so that they will gloss over the low liquidity .",0 +"Subject: ipps in ercot jim , can we meet on friday to discuss this topic . the person who supports power , grant masson , will be out for the next two days . vince",0 +"Subject: re : fw : eprm article chris , i have read the paper . it reads very well . two comments . 1 . it probably makes sense to include a note on the standard gbm simulation equation and the way it ' s typically discretized . 2 . it will help the reader who did not read the earlier articles to explain what ct is ( perhaps a footnote ) . i am also including a message i sent to julie today . * * * * * * * * * * * * * * * 1 . i would like to register 2 members of my group for both courses ( in houston ) : a . paulo issler b . alex huang i shall attend the course on weather only . 2 . i have started the process to issue a check for 5 , 000 aud for lacima . shirley sent you an update on this . the 2 nd installment comes from the budget of our office in australia . i shall talk to paul quilkey today about it . please , let me know if there is any delay . 3 . the book will be used as textbook for the class i shall be teaching at rice . rice univ bookshop is placing an order . 4 . i would like to order 50 copies for my group . what is the best way to place the order ? can we pay in us dollars ? * * * * * * * * * * * * * * * best regards . vince "" chris strickland "" on 12 / 12 / 2000 05 : 21 : 22 pm please respond to "" chris strickland "" to : cc : "" julie "" subject : fw : eprm article hi vince , i ' m wondering if you got this last week ? if you could have a quick look and get back to me with any comments that would be great - robin is chasing me on this one ! best regards . chris . - - - - - original message - - - - - from : chris strickland to : sent : wednesday , december 06 , 2000 4 : 16 am subject : eprm article > hi vince , > > hope things are fine with you . i ' m sorry that i only ever write to you when > i ' m after something , but could you look at this simulation article - the > next installment in the eprm articles . > > many thanks and best regards . > > chris . > > > > - - - - - original message - - - - - > from : > to : ; ; ; > > sent : friday , september 08 , 2000 4 : 23 am > subject : re : var article > > > > les , > > > > the revised version of the var article looks fine . > > > > vince > > > - eprm _ 04 _ sim _ mr . zip",0 +"Subject: vince and stinson , i got this resume from my friend ming sit who has a ph . d . from stanford . please take a look at his resume to see if we can use him . i classify him as a structurer , but things may change after all these years . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 05 / 17 / 2000 04 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" sit , ming "" on 05 / 17 / 2000 02 : 41 : 50 pm to : "" zimin lu ( e - mail ) "" cc : subject : - resume . doc",0 +"Subject: re : request for suggestions : vince ' s visit to sydney in july raymond , i shall call you on sunday after my arrival in sydney . look forward to meeting you again . i shall be ready to speak on all the topics you mentioned . vince raymond yeow @ enron _ development 07 / 09 / 2000 09 : 07 pm to : vince j kaminski @ ect cc : paul quilkey / enron _ development @ enron _ development , shirley crenshaw @ ect subject : re : request for suggestions : vince ' s visit to sydney in july dear vince , after getting our heads together here , we would much apprecaite if you could share the research group ' s latest on - - - - var ie "" . . . repeat my workshop presentation on value - at - risk . . . "" as well as cover additional topics viz . - discuss , with application , enrons internal v @ r model , and how this is used internally . - discuss volatility modelling , and whether it is possible to maintain and trade a term structure of volatility in electricity - modelling forward curves with reference to associated markets ( eg oil ) . can we gain some insights through spreads to related market curves ( spark ) . i assume your hotel is booked already . catching the taxi is the best way to get to your hotel . since you are arriving on the weekend , if you need to contact me - my mobile is 0417 - 692295 , home tel / fax is 9232 - 8892 rgds raymond - - - - - - - - - - - - - - - - - - - - - - forwarded by raymond yeow / enron _ development on 07 / 07 / 2000 04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 07 / 06 / 2000 09 : 20 am to : paul quilkey / enron _ development @ enron _ development cc : raymond yeow / enron _ development @ enron _ development , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : your visit to sydney in july paul , raymond , thanks for your message . sorry i did not get in touch with you earlier . the last few weeks were very hectic . i am starting right now my preparations for the presentation i am going to give at the conference . here are the details of my itinerary ( i shall send you a copy tomorrow ) . i arrive sunday morning and leave saturday morning . the conference takes place on monday and tuesday . on wednesday , i am making a presentation at the workshop on value - at - risk . i would like to stay at the conference for the duration : it ' s a great learning opportunity for me . on thursday and friday , as well as in the evenings ( except for the evening of july 18 ) , i am at you disposal . i would like to take advantage of this trip and learn as much as i can about the australian markets and discuss with you the research agenda . i shall be glad to make several presentation . i can repeat my workshop presentation on value - at - risk as well as cover additional topics . vince paul quilkey @ enron _ development 07 / 04 / 2000 05 : 23 am to : vince j kaminski @ ect cc : subject : your visit to sydney in july vince i support raymond ' s email and would welcome the opportunity to have you give a presentation ( formal or informal ) to the trading group on latest research initiatives in houston . please let us know your schedule so that we do not overly burden you during your visit . look forward to seeing you and catching up over a beer . thnx paul - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on 07 / 05 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - raymond yeow 07 / 04 / 2000 08 : 21 pm to : vince j kaminski @ ect cc : paul quilkey / enron _ development , kirsty hogarth / enron _ development , elliott katz / enron _ development , david gray / enron _ development subject : your visit to sydney in july dear vince , hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in sydney . is risk organising your hotel ? otherwise , kirsty can organise for you , eg harbour view at the regent or convenience to the seminar location at the sheraton ? we would like to make sure that you have all the necessary "" comforts "" of home when you are with us , elliott & david can set up a desk for you in the office / trading room with phone etc so you can use one of our pc to access email or plug in your laptop . please let elliott or david kmow your requirements . how long will you be with us ? is this your first trip to sydney ? there are several of us in the office who would like to take you for a meal ( s ) / show you the sights etc and discuss the latest research findings with you whilst you are in sydney eg var . hear from you soon . raymond 725 pm 4 july",0 +"Subject: a request vince , i am writing to ask for your help with some research i am doing with john lehoczky and a phd student . we trying to apply recent advances in monte carlo for american options to value swing and other options with multiple early exercise decisions that are important in energy markets . i know in general that early exercise shows up in a wide range of energy contracts , both real as welll as financial . would it be possible for you , either via email or on the phone , to give us some examples of typical terms for such instruments ? we would like our examples to look realistic . we also want to make sure we are focusing on the right sorts of optionality . thanks in advance , duane * * * * * * * * duane seppi graduate school of industrial administration carnegie mellon university pittsburgh pa 15213 - 3890 tel . ( 412 ) 268 - 2298 fax ( 412 ) 268 - 8896 email ds 64 + @ andrew . cmu . edu",0 +"Subject: renshi zhang ' s resume fyi . please cancel the interview schedule for renshi zhang . hr just notified me that he has accepted another position . it was scheduled for tomorrow . i have removed it from the calendars that i have access to . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 23 / 2001 10 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 04 / 19 / 2001 04 : 08 pm to : shirley crenshaw / hou / ect @ ect , molly magee / enron @ enronxgate cc : vince j kaminski / hou / ect @ ect subject : renshi zhang ' s resume shirley and molly , vince is interested to set up an interview for renshi zhang . any day except thursday next week is good . interviewers : vince , stinson , vasant , tanya , alex , bob , krishna and myself . contact number for mr . zhang is 713 - 544 - 5989 . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 19 / 2001 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 04 / 05 / 2001 09 : 49 am - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 05 / 2001 09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 14 / 2001 10 : 06 am to : zimin lu / hou / ect @ ect cc : subject : resume - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001 10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - marshall brown on 03 / 09 / 2001 07 : 46 : 22 am to : vince kaminski cc : subject : resume vince , how are you . this candidate would be interested in any positions in your group . regards , marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . if you have received this email in error please notify the system manager . this footnote also confirms that this email message has been swept by mimesweeper for the presence of computer viruses . - zhan _ ren . doc",0 +"Subject: confidential : valuation of collateralized mortgages dear vince , we have just received the signed confidentiality agreement . according to the terms in the agreement , i am sending you an attachment with the pdf file of the paper discussing the valuation of collateralized debt . we would be glad to discuss further about a possible collaboration at your convenience . please let me know if you have any trouble deciphering the attachment . with best regards , stathis stathis tompaidis assistant professor msis department , cba 5 . 202 mccombs school of business university of texas at austin austin , tx 78752 - 1175 tel . 512 - 4715252 fax . 512 - 4710587 stathis . tompaidis @ bus . utexas . edu - paper . pdf",0 +"Subject: fw : aram g . sogomonian per my voice mail , attached is the resume for aram sogomonian . please schedule a telephone interview with john lavorato and aram sogomonian . if you have any questions please let me know . norma villarreal sr . human resource represenative x 31545 - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000 11 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" sogomonian , aram "" on 10 / 11 / 2000 12 : 03 : 16 pm to : "" ' vkamins @ enron . com ' "" cc : subject : fw : aram g . sogomonian - aram g 2 . doc",0 +"Subject: approval for reviewer raymond , maureen j has suggested reviewers and submitted them for your approval . you may review / modify this list of reviewers by logging on to pep at http : / / pep . corp . enron . com and going to supervisor services . please remember , no feedback can be completed on raymond , maureen j until you have approved the list .",0 +"Subject: my new info please respond to dear friends and colleagues , i have switched again my employment status between self - employment and employment by joining the txu energy trading on the capacity of their managing director of risk management operations . will commute home on weekends , but otherwise , will be stationed in dallas . the new email address is mjermakl @ txu . edu , and the phone number is ( 214 ) 875 - 9603 . regards , martin jermakyan www . txu . com - winmail . dat",0 +"Subject: anthony dayao happy hour - - - - - - - - - - - - - - - - - - - - - - forwarded by anthony dayao / hou / ect on 07 / 10 / 2000 10 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - - cherylene r westbrook 07 / 06 / 2000 04 : 47 pm to : cindy cicchetti / hou / ect @ ect , giselle james / corp / enron @ enron , terry furches / corp / enron @ enron , xochil moreno / hou / ect @ ect , linda shoup / hou / ect @ ect , kim ladish / corp / enron @ enron , cheryl oliver / corp / enron @ enron , angelina v lorio / hou / ect @ ect , diana ovalle / corp / enron @ enron , peggy mccurley / hou / ect @ ect cc : anthony dayao / hou / ect @ ect , beth perlman / hou / ect @ ect subject : anthony dayao happy hour assistants : please forward to your groups asap . thanks , cheri x 3 - 6477",0 +"Subject: fwd : mgmt 656 - - - "" jack blanton , jr . "" wrote : > date : wed , 28 feb 2001 13 : 09 : 16 - 0800 ( pst ) > from : "" jack blanton , jr . "" > subject : mgmt 656 > to : vince . j . kaminski @ enron . com > > dear proffesor kaminski > i wish to audit the energy derivatives class > which > you are teaching on thursday nights . i am currently > a > second year student in the emba program and am > chairman of nicklos drilling company . nicklos > drilling currently operates three land rigs along > the > texas gulf coast and is constucting a fourth . i > have > received permision from the emba program to audit > the > class and the only conditions would be your > permission > and space avalability . > thank you for your consideration , > jack s . blanton , jr . > jblantonjr @ yahoo . com > 713 - 222 - 0191 > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > do you yahoo ! ? > get email at your own domain with yahoo ! mail . > http : / / personal . mail . yahoo . com / > do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com /",0 +"Subject: re : revision of lst request i approve of the attached request . - - stinson gibner x 34748 from : information risk management 12 / 30 / 99 12 : 02 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : revision of lst request sorry don ' t know if you can see the request below . but , william smith is request access to the o : research drive . need your approval or rejection . thanks information risk management for your approval . tori - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 12 / 30 / 99 12 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system directory line item pending access processing directory name : o : \ research \ ( all folders ) service type : grant expiration date : comments : i need to be able to save / modify files in these folders . to make it easier on you , you can just copy whatever rights kevin moore ( kmoore 2 ) has . those will be all that i will need . security processing processing status : e - mail to requestor : comments / justification : general information request : wsmh - 4 esnva requested by : william smith / corp / enron phone : 713 - 345 - 8322 requested for : william smith / corp / enron employee type : company : 0011 rc # : 100038 priority : normal comments / justification : editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 1 information risk management 12 / 22 / 99 12 : 35 : 11 pm",0 +"Subject: re : documents from iris mack iris , i have received your e - mail and phone message . i shall distribute your papers to the other interviewers . also , i shall contact you by thursday regarding a job offer . vince "" iris mack "" on 12 / 11 / 2000 08 : 09 : 10 pm to : irismmack @ hotmail . com , zlu @ enron . com , vshanbh @ enron . com cc : vince . j . kaminski @ enron . com subject : re : documents from iris mack hi again , i don ' t recall if i mentioned that my harvard doctoral dissertation involved another energy problem - the transient stability of electrical power systems . much of the data , model and analysis was done with lots of collaborative efforts with my advisors at harvard and mit and with the electrical power research institute ( epri ) in palo alto . kind regards , iris mack > from : "" iris mack "" > to : zlu @ enron . com , vshanbh @ enron . com > cc : vince . j . kaminski @ enron . com > subject : documents from iris mack > date : sun , 10 dec 2000 16 : 57 : 21 > _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com received : from 64 . 20 . 165 . 171 by lwl 1 fd . lawl 1 . hotmail . msn . com with http ; sun , 10 dec 2000 16 : 57 : 21 gmt x - originating - ip : [ 64 . 20 . 165 . 171 ] from : "" iris mack "" to : zlu @ enron . com , vshanbh @ enron . com cc : vince . j . kaminski @ enron . com subject : documents from iris mack date : sun , 10 dec 2000 16 : 57 : 21 mime - version : 1 . 0 content - type : text / html x - stn - info : dear zimin and vasant , ? ? ? ? ? how are you ? ? thank you for taking time out of your busy schedules to tell me about the work you are doing at enron . ? ? ? ? ? this email is in reference to your requests for two documents i forwarded to dr . kaminski : ? ? ? ? ? ? ? ? ? 1 . ? my london business school executive mba thesis on weather derivatives ? ? ? ? ? ? ? ? ? 2 . ? a document describing some work i did on real options applied to the commodities industry . ? ? ? ? ? you should be able to get a copy of these documents from dr . kaminski . ? if not , please let me know . ? kind regards , iris mack",0 +"Subject: resume from ningxiong xu vince : this is a candidate from stanford i mentioned to you about last friday . he is a student of my thesis advisor there . he seems to have solid math and statistics background ( including stochastic calculus ) and his thesis is on supply - chains . you mentioned about two possible positions : one in net works and another in freight trading . thanks , krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 09 / 2001 09 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - ningxiong xu on 04 / 09 / 2001 03 : 18 : 33 am to : cc : arthur veinott subject : resume from ningxiong xu 41 b . escondido village stanford , ca 94305 april 9 , 2001 dr . pinnamaneni v . krishnarao vice president , enron corporation dear dr . krishnarao , professor veinott told me a little about the research going on at enron from his conversation with you late last week . the work sounded very interesting to me . professor veinott also told me that the research group at enron may have some positions for which i might be qualified . i am writing to let you know that i would have great interest in exploring this potential opportunity with you . to that end i attach my resume together with an abstract of my ph . d . thesis under professor veinott as a word document . i might also add that i expect to finish my ph . d . in management science and engineering here by july 1 , 2001 . incidentally , my work has led me to study your own thesis in some detail and i have been very impressed with it . it may be of some interest to you that our work is related and seems to require a different generalization of karush ' s additivity - preservation theorem than the lovely ones you develop . i look forward to hearing from you . sincerely , ningxiong xu - 10408 resume 3 . doc",0 +"Subject: new computer hello again , lyn i will like to add to the previous request another computer and flat screen . the location for the equipment will be eb 3130 c . the r . c . and company is below . any additional please call x 34710 . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 02 / 03 / 2000 06 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 02 / 01 / 2000 11 : 47 am to : lyn malina / hou / ect @ ect cc : subject : new computer hello lyn i am in need of another computer . i will also need a flat screen monitor . ( large ) the location is eb 3130 a . the co . # is 0011 . the r . c . # is 100038 . the computer is needed a . s . a . p . lyn , please give me a estimated time of arrival . thank you kevin moore x 34710",0 +"Subject: re : prospective 6 / 22 houston visit professor ronn : thank you for your email and i wish to respond as follows : i have left a message with our travel agency asking if they can get you a hotel reservation closer into town . i will let you know . i have ordered an overhead projector and the room already has a screen installed . however , there is really not room for a lectern . the overhead will sit on the end of the large conference table and most have room to use part of the table for their presentation copies . i will be glad to make copies for you , however , it would be a big help if you could email me a copy of your presentation on wednesday . thursday mornings around here get pretty hectic sometimes and we may not have time to make the copies . i hope this meets with your approval . please let me know if you need anything else . we look forward to your visit . regards , shirley crenshaw 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: request for payroll reclassification the following payroll reclassification request has been submitted for your approval . click on this link to view document - - >",0 +"Subject: re : accounting adjustment vince , many thanks ! i will let our accounting department know . kim .",0 +"Subject: re : real options conference in cambridge steve thanks for agreeing to talk . i attach the program to see the other speakers and style ( it is addressed to a professional autience ) please give me a suitable title for the talk ( replacing kaminski  % s slot on july 6 / energy session ) and the details of your position thanks lenos at 05 : 01 _ _ 04 / 20 / 00 + 0100 , steven leppard wrote : > > > dear prof trigeorgis > > vince kaminski has suggested that i would be a suitable speaker at your july > conference in cambridge , and i ' d be happy to come along if required . please > could you send me appropriate details , and the audience type expected . > > many thanks . > > yours sincerely , > steve leppard > > > > - 4 thconfsessions . doc lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: fyi : howard haughton thanks vince . my guys in london are working on howard right now . keep you informed and updated . thank you , jeff 949 813 2241 hi jeff , re . howard haughton further to your recent communications with vince kaminski with regards to the above candidate we would like to see him for an interview at our london offices . could you please advise me of a convenient time for howard or details on how to contact him to arrange this . he will be seeing four people for approximately 45 minutes each . we would like to do this preferably on wednesday or thursday of this week as some of vince ' s team will be in london on those days . please contact me if you have any queries on 0044 20 7783 5677 or via e - mail . look forward to hearing from you with regards rachel quirke human resources * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: re : power conference sevil , no problem . vince sevil yaman @ enron 10 / 18 / 2000 10 : 42 am to : vince j kaminski / hou / ect @ ect cc : subject : power conference vince , please check the university of california energy institute web site ( http : / / www . ucei . berkeley . edu / ucei / ) . you may already be aware of it but if you are not , there are lots of paper that i am using as a reference and that you might be interested in reading them . also , every year they are holding a one day power conference in uc berkeley . i ' d like to attend the one in march of 2001 . is that fine ? sevil ,",0 +"Subject: enron metals hi tanya thanks for your time last week - i ' ve been travelling a bit but i ' m now back in london at mg to commence obtaining information for you . i ' m not really sure where to start on this , so initially i propose to get : a complete data set ( i . e . all live trades from all entities ) which includes prices and volatilities a separate file of options any written valuation methodologies used by the core systems there is a project to obtain a data feed from an mg system called mercur . this is their risk management system but we are proposing to use it along the lines of a data warehouse , not a risk system . i ' d be happy to talk you through any other current issues . let me know if there ' s anything else you need at present . regards",0 +"Subject: re : daily lunches kevin , please , talk to jeff shankman ' s secretary about including all the research group members on the 31 st floor in the company provided lunches ( when they are available ) . if an additional lunch is needed from time to time , it ' s fine , but it should be seen as a something done under exceptional circumstances . vince kevin g moore 12 / 20 / 99 12 : 10 pm to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : daily lunches hi vince , it has been brought to my attention that several members of the weather team may require a lunch from time to time . the person right now is trisha tlapek she has to be at her desk . please , could i provide daily lunches for her . thanks kevin moore",0 +"Subject: everybody , as vince suggested , i made a topical allocation of our new website for quality control . can you please check out in detail , and put through the paces , the following list ? weather mike links maureen technical analysis steve bigalow options library zimin ( this is a big one ! ! ) european weather jose agricaltural weather jose ( be sure and run spell check ! ! ! ) weather derivatives stephen presentations tanya nuclear outage updates sam fx and sovergn risk maureen industry analysis vasant publications osman research intelligence stinson hot button # 8 vince thanks , just email me with any problems or ideas for adds / changes - - - mike",0 +"Subject: re : dram trading authority vince thanks - i think this one is fairly hot at the moment - so as soon as you can get comfortable would be good ! it might be worth spending some time together on it - let me know what you would prefer rgds dp vince j kaminski @ ect 11 / 08 / 2000 05 : 08 pm to : david port / market risk / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : dram trading authority david , when do you need my signature . i missed the presentation last tuesday ( i was sick ) and would like a day or two to review the product . vince from : david port @ enron 11 / 08 / 2000 02 : 43 pm to : vince j kaminski / hou / ect @ ect , robbi rossi / enron communications @ enron communications , tanya rohauer / hou / ect @ ect , james ginty / enron communications @ enron communications , kristin albrecht / enron communications @ enron communications cc : ted murphy / hou / ect @ ect , barry pearce / enron communications @ enron communications , michael moulton / enron communications @ enron communications subject : dram trading authority here is the latest trading request : specifically it requires the following to get it over the line : vince , your concurrence with a simplistic var calculation the start - up period everybody else , your signatures , or agreement to sign via email in addition , here is the commercial presentation which wil be attached to the request on its way to eb 5007 many thanks dp",0 +"Subject: re : fmrc mark , thanks for the info . i shall check it out . vince mark courtney 05 / 17 / 2000 03 : 48 pm to : vince j kaminski / hou / ect @ ect cc : joe gordon / corp / enron @ enron subject : fmrc vince , i ran across this during my recruiting at vanderbilt . it is headed by hans stoll , one of the leading derivative academicians in the country . i looked at their website briefly and thought you might be interested . i have also forwarded some email correspondence between dr . stoll and joe gordon , one of our associates and a former student of his at owen school . we have been very successful lately in recruiting at vanderbilt , both at the undergrad and mba levels , and have gotten some high quality people . please let me know if you have any interest in this and i would be glad to follow up with dr . stoll or help out in any way i can . thank you , mark courtney - - - - - - - - - - - - - - - - - - - - - - forwarded by mark courtney / hou / ect on 05 / 17 / 2000 03 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : joe gordon @ enron 05 / 11 / 2000 11 : 33 am to : mark courtney / hou / ect @ ect cc : subject : re : fmrc mark - - i dropped the ball as far as getting someone to the april meeting , but i would to try to get this going . thanks , joe - - - - - - - - - - - - - - - - - - - - - - forwarded by joe gordon / corp / enron on 05 / 11 / 2000 08 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - - hans stoll on 03 / 20 / 2000 12 : 22 : 36 pm to : "" ' joe . gordon @ enron . com ' "" cc : subject : re : fmrc joe , thanks for your note . the purpose of the fmrc is to stimulate research on financial markets and to provide a link between academic research , real world issues and regulation . members of the center sit on the advisory board and help direct the research of the center . they send an unlimited number of participants to center conferences . our center is unique in its mix of academics , practitioners and regulators . for members , such as enron , it provides a window on the academic world , and would give enron an opportunity to stimulate research in the use of markets in heretofore unusual commodities . more information on the center can be found at http : / / mba . vanderbilt . edu / fmrc / center members include , nyse , nasdaq , cme , some high tech trading firms , merrill lynch . . . . joining the center usually requires a top management decision , but i would approach it through the research and the trading areas . one way to start is to see if anyone in a position to recommend joining the center would like to attend this year ' s conference on april 13 - 14 . the program is on the web site . ( membership is $ 10 , 000 per year ) appreciate your interest and help . let me know if we should provide more detail to someone . regards , hans - - - - - original message - - - - - from : joe . gordon @ enron . com [ mailto : joe . gordon @ enron . com ] sent : monday , march 20 , 2000 10 : 45 am to : hans . stoll @ owen . vanderbilt . edu subject : fmrc dr . stoll : sorry for the delay , but we haven ' t forgotten about your interest in having enron participate in the fmrc . our holdup is determining who is the appropriate contact person at enron ( that , and neglect ) . we ' re not sure if we should approach someone from trading , research , senior management , etc . also , any additional information on the role the participating firms play would be helpful . thanks , joe gordon",0 +"Subject: wti trading simulation presentation john , i prepared the presentation in the way we discussed on wednesday . in summary i have included the following scenarios : tenor : 1 , 3 , 5 years back from nov , 2000 1 , 3 , 5 years back from nov , 1998 1 , 3 , 5 years back from nov . 1995 number of trade per day : 200 , 600 , 1000 bid - offer spread : $ 0 . 04 and $ 0 . 06 net open position allowed : 1 , 000 , 000 and 5 , 000 , 000 volume per trade is fixed at 1 , 000 bbl . all together , there are 9 * 12 = 108 scenarios included in the presentation . i will be on vocation starting next week . but i will check my e - mail and phone messages to make modifications you need . happy holidays , zimin",0 +"Subject: approval is overdue : access request for peter . makkai @ enron . com this request has been pending approval for 5 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000003997 approver : stinson . gibner @ enron . com request create date : 10 / 3 / 00 1 : 14 : 27 pm requested for : peter . makkai @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read ] resource type : directory",0 +"Subject: re : "" analytical "" var implementation in risktrac debbie , i am forwarding to you a 2 page document describing implementation of "" analytical "" var in risktrac . here is why this effort is very important : 1 . we need to calculate var for other percentile but 5 ( 1 % or even 0 . 2 % as mentioned by rick buy ) and our simulation model can not handle required number of simulations ; 2 . we need to present additional risk measures ( such as mean tail loss ) to the board . the analytical approach is implemented in a spreadsheet and fully tested already so there will be no problems with the algorithm itself . we need to get together and discuss it implementation . what do you think ? tanya",0 +"Subject: presentation on metals - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - alison sealy on 10 / 09 / 2000 10 : 37 : 40 am to : mraymon @ enron . com cc : subject : presentation on metals hi maureen , it was good to meet you last week and hear your presentation on the metals - full of advice on what to think about and all the various things that affect the market place . i am only sorry i had to dash off to the airport - good job i left when i did though as check - in took ages ! anyway , please could you send me through a copy of that presentation either on email or if it is located on the network somewhere then i could access it over the intranet ? i will be joining the lme conference tomorrow so am currently trying to do a bit of reading in preparation . thanks very much in advance & look forward to seeing the presentation over here in london . kind regards alison",0 +"Subject: re : here ' s a 4 th try ! ! ! rick , i shall ask my assistant to schedule a meeting early next week . vince richard b jones @ ees 02 / 01 / 2001 10 : 23 am to : vince j kaminski / hou / ect @ ect cc : subject : here ' s a 4 th try ! ! ! - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 02 / 01 / 2001 10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - richard b jones 01 / 31 / 2001 04 : 39 pm to : vince j kaminski / hou / ect @ ect cc : subject : here ' s a third try ! ! ! vince , while i was at hsb , i designed an insurance or reinsurance financial model that hsb uses for new product development , pricing different reinsurance strategies , computing stochastic earnings forecast , and estimating probabilistic maintenance & repair costs . the code , written in visual basic & ms access belongs to hsb , and i want to replicate it here for our use at enron . i would like to arrange a time to specifically talk to you and perhaps vasant who was briefed on the model , about how we can use your group for the analytical and programming support to get this model re - constructed . i have screen outputs from the code and vasant thought the re - design and construction here at enron is a problem that your group can do . could you let me know when we can setup an hour to discuss ? thanks , rick jones",0 +"Subject: re : rice / enron speakers for fall 2001 and spring 2002 david kendrick from the university of texas may be good . martin vince j kaminski 04 / 24 / 2001 05 : 11 pm to : stinson gibner / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , rakesh bharati / na / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , iris mack / enron @ enronxgate , martin lin / hou / ect @ ect , lance cunningham / na / enron @ enron , vince j kaminski / hou / ect @ ect cc : wangfa @ rice . edu subject : rice / enron speakers for fall 2001 and spring 2002 any recommendations . please , let me know asap . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - albert wang on 04 / 23 / 2001 12 : 37 : 55 pm to : vince . j . kaminski @ enron . com cc : subject : rice / enron speakers for fall 2001 and spring 2002 hi , vince : we are considering a preliminary list of speakers for rice / enron seminar series in finance for fall 2001 and spring 2002 . ? do you have any persons in mind that you and your group want to include in the list ? ? finance faculty will meet to finalize the list later . thanks , albert p . s . : is ronnie chahal still around ? ? she is currently in my enron distribution list with email address : rchahal @ ess . enron . com . ? i have received an error message indicating a failure of delivering email to her address . fu - kuo albert wang assistant professor jones graduate school of management - - ms 531 ? rice university ? 6100 main street ? houston , tx 77005 ? phone : 713 - 348 - 5404 ? fax : ? ? ? ? 713 - 348 - 5251 email : wangfa @ rice . edu http : / / www . ruf . rice . edu / ~ wangfa /",0 +"Subject: access to o ; . . . vince , this e - mail is to request access to the o : / research / power meteorlogy / weather temps / txtemps . xls file . . . i was told by tech - support to e - mail you with this request and everything would get squared away . daniel , could you please advise on what to do next . thank you . . . juan - - - - - - - - - - - - - - - - - - - - - - forwarded by juan padron / na / enron on 09 / 19 / 2000 02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - daniel muschar 09 / 19 / 2000 09 : 14 am to : juan padron / na / enron @ enron cc : subject : access to o ; . . . i called security again and here is what is happening : this request is waiting on the approver . stinson gibner : here is the info on the user we are waiting on . stinson ? ? gibner contact info company info phone : ( 713 ) 853 - 4748 employee type : enron employee email : sgibner @ enron . com job title : vp research location : eb 1963 supervisor : kaminski , wincenty j fax : ( 713 ) 646 - 2503 contract company : ect resources corp cellular : company number : 0413 pager : cost center : 0000107043 click here for others in cost center cost center name : na - research group ena city : houston bner or vince kaminski are the approvers for this directory",0 +"Subject: b 2 b at enron tom , i am sending you the information about our new b 2 b unit . i have talked yesterday with greg whalley who is heading the new unit about the e - commerce project at wharton and recommended that enron join this program . i have sent him this morning a copy of the materials you gave me . the meeting with jeff skilling has been pushed till the 2 nd half of july . i talked to him briefly twice that jeff shankman and i want to discuss with him building a relationship with wharton . jeff shankman is , by the way , a great friend of your institution . vince * * * * * * * * * * * * * * * * * * * * * * * companies & finance : the americas : enron sees bricks and bytes mix reshaping energy market : purchase of mg only a start in building b 2 b platforms , writes hillary durgin : companies financial times ; 16 - jun - 2000 12 : 00 : 00 am ; 604 words by hillary durgin if jeffrey skilling is right , enron ' s acquisition of mg is only the tip of the iceberg . enron ' s president and chief operating officer is engineering a fundamental strategy shift at the houston energy company , aimed at making it a dominant "" new economy "" player across various industrial markets . the dollars 446 m acquisition last month of mg , the uk - based metals trader , is only the first of more than dollars lbn in estimated new investments the company is targeting . it is seeking vehicles on which to build business - to - business ( b 2 b ) platforms in sectors such as logistics , chemicals , agricultural products and pulp & paper . mr skilling wants to take the business model the company developed in natural gas and power and apply it to other wholesale commodity markets . he argues the electronic platforms it creates will not only become the principal b 2 b sites for those sectors , but reshape those industries . as an example , he points to enron ' s new e - commerce platform , enrononline , which has changed the way the company does business with its customers while significantly increasing sales . the company - the largest wholesale merchant of natural gas and power - saw wholesale , physical deliveries of natural gas surge 53 per cent in the first quarter . critics argue that enron ' s move away from its familiar energy business into new industries , where the learning curve is steep and the competition entrenched , is risky . yet a number of industry analysts point out enron has proved it understands markets and how to manage risks while becoming the largest importer of coal in the uk , the largest trader of gas and power in the us and grabbing an advantage in bandwidth . "" it ' s a prudent strategy , but it ' s got to be done in an orderly way , "" says ronald barone , analyst with paine - webber in new york . "" what they ' re doing here is what they ' ve been incredibly successful at doing , "" he adds , noting that enron posted dollars 1 . 3 bn in earnings before interest and taxes ( ebit ) from its wholesale energy and services business in 1999 , up 34 per cent from the previous year . earnings from that division accounted for two - thirds of the company ' s overall income before interest and taxes last year , and mr barone sees the unit ' s ebit increasing 15 - 30 per cent annually over several years . as with gas and power and now broadband , where enron is standardising contracts and creating a market in bandwidth , it wants to create markets by entering as a physical player and providing merchant , risk management and financial services over the internet . "" we will provide electronic commerce , but we will provide liquidity and we will provide settlement , or fulfilment of that contract , "" mr skilling says . "" that is an extremely powerful model . if you look at other b 2 b sites , they don ' t do that . "" mr skilling argues enron ' s e - commerce platform will triumph over the other , bulletin board - type exchanges , where striking a deal depends on two parties hooking up and working through uncertainties over timing , price , credit and fulfilment . not everyone shares that view . some energy companies , for example , would rather not do business with a competitor . bp amoco recently purchased a 3 per cent stake in altra energy technologies , a houston - based , neutral wholesale energy exchange . with koch industries and american electric power , it also committed to carry out a fixed volume of transactions on the site to lend it liquidity . just as in gas and power and now broadband and metals , enron believes it needs networks of strategic physical assets . in acquiring mg , enron got a stable of warehouses , lending it a strong physical position . "" it should provide ( mg ) with a more vibrant , more active physical spot market in more markets in the world , "" says greg whalley , chief executive officer of enron net works , the new division enron is launching to identify and enter commodity markets . he argues that in metals and other markets , enron will deliver better pricing , price risk management services , cross - commodity transactions and flexible transactions for a wider range of customers . mr skilling says there are significant rewards for restructuring an industry . "" if you can take that platform , and you use the capabilities the bricks bring to the table , e - commerce the industry and change the structure , you ' re selling for more than a 50 multiple . "" copyright , the financial times limited",0 +"Subject: re : mba career opportunity vince , thanks for your consideration . please let me know details for the phone interview at your earliest convenience . happy thanksgiving . qing - - - - - original message - - - - - from : to : sent : tuesday , november 21 , 2000 8 : 45 am subject : re : mba career opportunity > > christine , > > we shall arrange a phone interview with you . > > vince > > >",0 +"Subject: re : seneca lake storage deirdre , i run two senarios using two different curves . i got $ 1 . 39 / mmbtu per year for if - cng / north , and $ 1 . 41 / mmbtu per year for if - cng / n _ cityga . therefore if we look at 20 years time horizon , the storage can generate $ 1 . 40 * 1 . 4 * 20 = 39 . 2 mm dollars . let us discuss if you have any questions . zimin enron north america corp . from : deirdre mccaffrey 06 / 12 / 2000 10 : 45 am to : zimin lu / hou / ect @ ect cc : subject : seneca lake storage zimin - the gas assets group is looking at investing in a storage facility in western ny . here are the specs : total capacity : 1 , 400 , 000 mmbtus mdqw : 140 , 000 mmbtus mdiq : 70 , 000 mmbtus injection fuel : 1 . 5 % injection fee : $ . 003 w / d fuel : 0 % w / d fee : $ . 003 injection curve : cng north city gate w / d curve : cng north pool point please call with any questions - x 39685 . thanks - deirdre",0 +"Subject: re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: @ jones : news and information from the jones school @ jones : news and information from the jones school february 15 , 2001 forbes magazine survey request financial times rankings : jones school is in top ten in four categories ; 35 th of 51 u . s . schools and 54 th of world ' s best 100 mba programs . digital technology panel : february 20 2001 alumni weekend : march 2 - 3 lecture - - gordon bethune , ceo , continental airlines : march 5 lecture - - bruce dunlevie , founder , benchmark capital : march 12 neuhaus lecture - - c . k . prahalad , professor , university of michigan : march 19 dean ' s lecture - - rodney eads , executive vice president , el paso corp . : april 11 black leadership conference : april 27 rice alliance continues expansion of network , enhances services seven rules for success in the new economy tips on financial risk management by marc shapiro , vice chairman , j . p . morgan employed at three months ; finance ; entrepreneurship . overall , the jones was ranked 35 th of 51 u . s . schools and 54 th among the world ' s best 100 graduate business schools . the yale club of houston and the jones school hosts a panel discussion on digital technology at 6 p . m . on tuesday , february 20 at 124 herring hall . rsvp by february 16 . cost is $ 20 for jones school alumni and $ 25 for non - members / guests . the 2001 alumni weekend reunion will be held march 2 - 3 , 2001 . register by feb . 16 . http : / / jonesgsm . rice . edu / alumni / alumni _ weekend 2001 . html . gordon bethune , ceo of continental airlines , will speak at the jones school at 9 : 45 a . m . on monday , march 5 at 124 herring hall . alumni and students are invited to attend the lecture . bruce dunlevie , founder and general partner of benchmark capital , will speak at noon on monday , march 12 at the farnsworth pavilion , rmc / ley student center . jones school students and alumni are invited to attend . c . k . prahalad , harvey c . fruehauf professor of business administration at the university of michigan business school in ann arbor , will deliver the 2001 w . oscar neuhaus lecture at 9 : 45 a . m . on monday , march 19 , 124 herring hall . rodney w . eads , group executive vice president of merchant energy and production for el paso corp . , will speak at the dean ' s lecture series scheduled for 9 : 45 a . m . on wednesday , april 4 at 124 herring hall . this year ' s black leadership conference , scheduled for april 27 , brings together mbas , lawyers , accountants , engineers , healthcare professionals , educators , and entrepreneurs from houston to discuss key issues facing black professionals . last year ' s keynote speakers include ambassador cynthia shepherd perry , honorary consul general to senegal and ambassador berhane g . christos , ambassador of ethiopia . the rice alliance for technology and entrepreneurship enters its second year determined to enhance services that have promoted the entrepreneurial spirit in the rice community and in houston . the alliance brings together students , faculty , alumni and other rice - associated parties as collaborators , mentors and investors in engineering , science , software , or e - commerce innovations . murray weidenbaum , founder and chairman of the murray weidenbaum center on the economy , government , and public policy , joins the jones school as the ken lay , vinson & elkins visiting scholar through may 31 . a noted expert on american and global economics and top adviser on economic issues during the nixon and reagan administrations , weidenbaum is working on a study of u . s . and international trade policy , developing a high middle ground in a controversial area . marc j . shapiro , vice chairman , j . p . morgan & chase , talked about six tenets of success in financial risk management at the jan . 22 dean ' s lecture . a distinguished panel of e - commerce and energy industry leaders addressed current trends and the future of e - commerce at the jan . 10 forum "" 2001 : an internet odyssey "" jointly hosted by the rice alliance for technology and entrepreneurship , the jones school , rice university executive education , and texasecomm . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - online : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - visit the construction web cam url for up - to - the - minute live feeds of the new jones school building construction . learn about new and upcoming initiatives and programs at the school , and view artist renderings of the new $ 60 million building , currently under construction . http : / / jonesgsm . rice . edu / campaign / campaign . html @ jones : news and information from the jones school , the jones school e - newsletter , is published monthly by the public relations department of the jesse h . jones graduate school of management . the jones school website http : / / jonesgsm . rice . edu is updated frequently and we encourage you to visit the site regularly to get the latest news and information about new initiatives and programs at the jones school . to submit items to be posted on the jones school website , please e - mail jgsmnews @ rice . edu .",0 +"Subject: visit to carnegie mellon dear dr . kaminski : pierre ste - marie tells me he has invited you to visit carnegie mellon . i would just like to emphasize how much we hope you can arrange a visit . we have had the good fortune of attracting outstanding students into our master ' s program in computational finance , and i think you will enjoy meeting them . last year alexander eydeland visited , and at the conclusion of the year hired one of the students . i look forward to meeting you . sincerely yours , steve shreve steven e . shreve department of mathematical sciences carnegie mellon university pittsburgh , pa 15213 - 3890 e - mail : shreve @ cmu . edu direct telephone : 412 - 268 - 8484 department telephone : 412 - 268 - 2545 fax : 412 - 268 - 6380",0 +"Subject: re : i have you scheduled . dolores vince j kaminski 08 / 30 / 2000 08 : 13 am to : dolores muzzy / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : dolores please , register me for a session on 9 / 29 / 2000 at 12 : 45 . vince kaminski celeste roberts 08 / 29 / 2000 06 : 21 pm to : celeste roberts / hou / ect @ ect cc : ( bcc : vince j kaminski / hou / ect ) subject : urgent the associate and analyst recruiting department will be conducting a number of two hour workshops to review our recruiting and interview process for the fall on - campus recruiting effort . critical information regarding our on - campus interview process , revised evaluation forms and program structure will be reviewed during these two hours sessions . it is mandatory that all team members attend these workshops . all team members must attend in order to articulate and demonstrate the enron recruiting process . knowing how busy schedules are , we have made arrangements to present these workshops in two hours sessions for a total of 40 workshops that will run during the last week of august , through the month of september and end at mid october . listed below are the dates , location and times for each session . please select a date and time and e - mail this information to my assistant , dolores muzzy . we can accommodate 25 participants at a time . dolores will take dates and times on a first come , first serve basis . we have scheduled enough sessions to accommodate every member of both the associate and analyst recruiting teams . in order to participate in the recruiting process , you must attend one of these sessions . we will be tracking participation . cpe credits will also be given for attending this workshop .",0 +"Subject: thanks again vince : i ' m looking forward to getting your outline on the economic paradigm . i hope that , among all the paper i ' ve bombarded you with over the last few weeks , i have included a reprint of a fall 1998 jacf article entitled "" how to use eva in the oil and gas industry . "" if this is not among the things i have left you with , i ' d be happy to send you a copy . the discussion of hydrocarbon reserve values is very much along the lines we have been discussing . best regards ,",0 +"Subject: vol skew no - arbitrage constraints the attached note lists conditions that can be used to verify that a given vol skew curve does not generate arbitrage opportunities in a strip of option prices . if you have questions or want to discuss implementation , please give me a call . bob lee x 35163",0 +"Subject: harvard business school - - enron case study - - ' final ' draft friends , attached is the "" final "" draft of the harvard business school case study prepared by harvard professor chris bartlett and his research assistant meg wozny . [ please scroll down to the end of the next message for the attachment ] . the content was developed from interviews with most of you . please review the case and let me know of any desired edits / corrections / comments as soon as possible . [ one obvious correction is the spelling of cindy olson ' s last name ] . we ' d like to "" sign off "" on this within the next 2 or 3 days . harvard professors are excited about teaching this case this coming semester . in fact , professor don sull will be focusing largely on this enron case this semester , culminating in "" enron day "" at harvard business school april 26 th , featuring jeff skilling . also , chris and meg will be in houston this thursday , jan . 11 th , ' capping off ' their work with video interviews with ken , jeff and louise , which will help "" bring the case to life "" for the students studying it . please forward any edits / corrections / comments to me via e - mail or via hard copy ( please deliver to eb 4710 , or call me [ 3 - 6117 ] and we ' ll have it picked up ) . thanks to everyone for all your contributions to this exciting work ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 08 / 2001 09 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - - meg wozny on 01 / 08 / 2001 09 : 31 : 00 am to : christie . patrick @ enron . com cc : subject : re : enron case study christie : congratulations ! i don ' t know how you manage to work full - time at enron and study for a phd at the same time . sounds superhuman to me ! the fedex was marked for saturday delivery , but in case you haven ' t received it yet , i ' m enclosing the draft as an attachment . it would be great if we could get enron ' s approval during our visit . ( i know professors at hbs are interested in teaching that case as soon as it ' s available . ) thanks for all your help , and let me know if you have any questions , comments , etc . best , meg at 09 : 12 am 1 / 8 / 01 - 0600 , you wrote : > meg . . . just got back in the office - - - anxiously looking for the package ! ! > > i finished my phd ( psychology @ usc ) class work last week - - i made my last case presentations this past friday ! ! now i only have my dissertation to go ! . . . hooray ! > looking forward to seeing you and chris thursday ! > > - - christie . - latest draftl . doc * * * * * * * * * * * * * * meg wozny research associate harvard business school gallatin lounge c soldiers field boston , ma 02163 voicemail : ( 617 ) 496 - 0802 facsimile : ( 617 ) 496 - 6943 email : mwozny @ hbs . edu",0 +"Subject: research get - together at sandeep kohli ' s new home hello everyone : here is your invitation and a map to sandeep ' s home . see you saturday !",0 +"Subject: action learning project congratulations ! your company project was selected by the students for the 2001 action learning project program at rice university . the company day was a huge success last week , and we appreciate all your time and effort . on monday , january 22 , we will send you a list of your team members via email with a hard copy to follow . student team members will be in touch soon so that you can plan your first meeting . thanks for your continued support and interest in the jones school . = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = carrie chamberlin miller director of mba program jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 5260 fax : ( 713 ) 348 - 5251 e - mail : cmiller @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: message from john martin - - - - - forwarded by cindy derecskey / corp / enron on 10 / 26 / 2000 06 : 32 am - - - - - "" john martin "" 10 / 25 / 2000 06 : 58 pm to : cc : subject : re : enron case study cindy , great to hear from you and i look forward to getting our interviews done . i am answering this from a hotel in seattle so i don ' t have questions for you at this time but can get them together for you . i will contact vince next week and get a set of questions together for each of the three individuals you mentioned . i will have to talk to vince about others who would be of interest to interview . i really appreciate your help in getting this together and i ' ll work hard to get everything together for you next week . i don ' t have vince ' s e - mail address with me here so i would appreciate your forwarding this message on to him for me . thanks again , john - - - - - original message - - - - - from : cindy . derecskey @ enron . com [ mailto : cindy . derecskey @ enron . com ] sent : wednesday , october 25 , 2000 11 : 23 am to : j _ martin @ baylor . edu cc : christie . patrick @ enron . com ; vince . j . kaminski @ enron . com subject : enron case study importance : high good morning mr . martin , i would like to introduce myself . i currently work with christie patrick and michael b rosen in the enron university affairs department . in recent discussions with christie , she has suggested that i liaise with you and our management in preparation for your and vince kaminski ' s case study . christie has forwarded recent emails sent by you suggesting a few convenient times that work with your schedule . i will work with our management and do my best to schedule one hour time slots for interviews that fit with your outline . initially , i will schedule interviews with : ken lay - chairman and ceo , jeff skilling - president and coo , and andy fastow - cfo . if you feel that you may need to speak with additional management , we will definitely try to work something out the same day , so you don ' t have to travel back here . i will forward your project outline to the aforementioned participants once the interviews are scheduled . do you anticipate drafting specific questions ? if so , i would greatly appreciate a copy when convenient . i greatly look forward to working with you and i hope that we can touch base very soon . regards , cindy derecskey enron university affairs ( 713 ) 853 - 5670",0 +"Subject: summary of dabhol lenders ' presentation vince / stinson , please find below a summary of the presenation given to lenders at the april 23 rd meeting in london . the key points that emerge are : phase ii will require commitments of about $ 700 mm to complete ( phase i + ii total $ 3 . 2 billion ) several commercial issues are getting severe in the current environment in india , could result in cost escalations makes the case that mseb does not have the financial strength to absorb phase ii power management to seek authority to serve preliminary termination notice ( ptn ) , triggering a 6 month cure period a copy of the full presenation is available . regards , sandeep .",0 +"Subject: re : presentation will do - - thank you very much . dawn from : dawn scovill , event coordinator designs event consulting dawn @ perfectmeeting . com - - - - - original message - - - - - from : vince j kaminski to : cc : ; vince j kaminski ; sent : friday , march 17 , 2000 5 : 38 pm subject : re : presentation > > > david , > > i am leaving for vacation this weekend and i haven ' t received the copy of your > presentation yet . > the window during which i could make changes to my presentation is closing very > fast . let ' s > do the following : i shall keep my presentation as is ( this means that i shall > use the copy of my > presentation i sent to dawn scovill and you this week ) . if there is an overlap > between our presentations , so be it . > > dawn , please use the copy of my presentation i sent you earlier this week . > > vince > > > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 17 / 2000 04 : 33 > pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > vince j kaminski > 03 / 16 / 2000 08 : 02 am > > to : "" dawn scovill "" @ enron > cc : sobotkad @ kochind . com , vince j kaminski / hou / ect @ ect > subject : re : presentation ( document link : vince j kaminski ) > > dawn , > > i met david sobotka from koch this morning and we talked about coordinating our > presentations . > this means there will be changes intended to avoid overlaps . sorry for that . the > portions of my presentation > will survive ( those about valuation paradigms ) and i shall add a few more pages > on accounting treatment of weather derivatives > plus more specific examples . david will cover primarily market evolution + plus > examples of some > standard structures , and we shall both give more interesting examples of > specific deals executed by our companies . > > i shall send you an updated version of my part next week . let me know what the > deadline is . > > vince > > > > "" dawn scovill "" on 03 / 14 / 2000 07 : 53 : 47 am > > to : "" vince j kaminski "" > cc : > subject : re : presentation > > > thanks - - would you like me to include these in the conference book ? or do > you anticipate changes ? > > dawn > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > from : dawn scovill , conference coordinator > "" powerful new ideas 2000 "" > dawn @ perfectmeeting . com > > > - - - - - original message - - - - - > from : vince j kaminski > to : > cc : shirley crenshaw ; vince j kaminski > ; vince j kaminski > sent : monday , march 13 , 2000 1 : 56 pm > subject : presentation > > > > > > > > dawn , > > > > i am sending you an electronic version of my presentation . > > > > vince kaminski > > > > ( see attached file : fplo 400 . ppt ) > > > > > > > > > >",0 +"Subject: vince , i ' ll see you around 8 : 45 in the morning . meanwhile , the attached file contains the latest draft of our questions . please run us a copy . thanks , john - enroninterview . doc",0 +"Subject: letter for lloyd shirley , please , add the date at the right place . vince",0 +"Subject: re : i am zhendong zhendong , thanks . please , send me your updated resume as well . vince zhendong xia on 04 / 11 / 2001 09 : 14 : 01 pm to : vince . j . kaminski @ enron . com cc : subject : i am zhendong hi , dr . kaminski : i am zhendong , the student of dr . deng . i think dr . deng has sent my resume to you . i am very happy to have an opportunity to work with you this summer . i am a student in both ms qcf and ph . d eda programs in georgia tech now . i plan to find a job in industry instead of academic after my graduation . so i intend to do internship during the process of prusuing my degree to acquire some experience for my future career . i hope to start on 5 / 14 / 2001 and end on 8 / 17 / 2001 . thanks a lot . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318",0 +"Subject: hello from enron dear dr . mcmullen , a few weeks ago i received a call from your university regarding employment opportunities at enron . i called back and summarized the needs of my group ( an ideal profile of a candidate ) : 1 . mathematical finance 2 . computer programming ( c , c + + ) 3 . understanding of the energy markets i shall appreciate any information about potential candidates . i have also given some other suggestions regarding potential opportunities for graduates with different profiles . please , feel free to call me . my number is 713 853 3848 . vince kaminski",0 +"Subject: re : hello from vince kaminski at enron dear vince . i sent you a reply earlier this month but i haven ' t heard from you about the date of your visit . our department has a seminar every monday . if you can schedule your visit on a monday i would like to invite you to give a seminar which will be attended by many of our graduate students and faculty and will give you an opportunity to tell them about your program . with sufficient lead - time i can advertise the seminar in the hass school to their financial engineering students . shmuel . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : ; ; sent : tuesday , august 08 , 2000 10 : 59 am subject : hello from vince kaminski at enron > shmuel , > > i hope you remember me . i visited you together with aram sogomonian , a > good friend of mine , a few years ago . i am currently responsible , among > other things , for recruiting graduates with finance and / or technical > backgrounds at the university of berkeley . i would be glad to give you a > call and talk more about the details of our program . my colleague , > ashleybaxter , from the analyst / associate program at enron would join me > as well . > > i am sending you a copy of the brochure about the analyst / associate > program . > > vince kaminski > > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com >",0 +"Subject: calendars and reviews could all of you please give access to your calendars ( lotus organizer ) to anita dupont , and also make sure that if you step away from your desk that your calendar indicates where you will be ? it has happened a few times recently that people have come for appointments and the person has been away from his / her desk and anita could not get hold of the person . this does not portray a good image of the group . also , if you have cell phones , please make sure anita has the number . also , please make sure to complete your self - assessment performance review , and either indicate list of projects worked on since june in there or at least separately e - mail me a list . thanks , vasant",0 +"Subject: enron on line and tracking this meeting has been rescheduled for : friday , january 7 th 2 : 15 - 3 : 15 pm eb 3084 if you have questions please call george smith @ 36993 or alex @ 57389 . i will keep you informed of any changes . thanks alex - - - - - - - - - - - - - - - - - - - - - - forwarded by alex saldana / hou / ect on 01 / 05 / 2000 12 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - alex saldana 01 / 05 / 2000 11 : 30 am to : george smith / hou / ect @ ect , edward terry / hou / ect @ ect , katherine l kelly / hou / ect @ ect , robert superty / hou / ect @ ect , randall l gay / hou / ect @ ect , hunter s shively / hou / ect @ ect , scott neal / hou / ect @ ect , robert shring / hou / ect @ ect cc : heather choate / hou / ect @ ect , kimberly brown / hou / ect @ ect , airam arteaga / hou / ect @ ect , brenda flores - cuellar / hou / ect @ ect , elizabeth rivera / corp / enron @ enron subject : enron on line and tracking please plan to attend the above mentioned meeting : thursday , january 6 th 3 : 30 - 4 : 30 pm eb 3013 if you have any questions please call george smith @ 36993 , for any scheduling conflicts call me at @ 57389 . thanks alex",0 +"Subject: ebs goes live ! . . . 15 , 000 will be impacted on 7 / 1 / 00 enron broadband services is the latest addition to the enron sap rollout . the apollo and beyond project team and enron ' s business units are currently preparing for the project ' s final implementation . apollo and beyond is an enron initiative tasked with laying a common financial , human resources , project management , and procurement foundation throughout the majority of enron ' s businesses . ebs "" go - live "" on april lst , enron broadband services supplemented their current sap functionality with hr online and sap hr , including payroll and organizational structure management . hr online enables the ebs population to enter their own time , view and update their personal information , and view their vacation time and individual payroll information via enron ' s intranet . additionally , this implementation enhanced the sap financial , project and procurement processes that ebs has had in operation since april 1 , 1999 . these enhancements included an ebs pilot of b 2 b , a web - based requisitioning tool . among the benefits of these enhancements will be improved information flow across business units currently on sap . july 1 "" go - live "" this final apollo and beyond implementation will directly impact more than 15 , 000 enron employees and contractors - - odds are that you are one of them ! people impacted on july lst include : all enron employees paid out of corporate payroll in houston , excluding azurix employees the financial communities of enron energy services , enron investment partners , enron north america , enron renewable energy corporation , gas pipeline group , global finance , and global products . the project management communities of enron north america , gas pipeline group , global asset operations , global finance , and global products . the human resources communities of corporate , global e & p , enron energy services , enron engineering and construction company , enron investment partners , enron north america , enron renewable energy corporation ( houston only ) , the international regions , gas pipeline group , global finance , and global products . general sap training will be available in late april via the enron intranet . additional , specific , sap classes and workshops are scheduled to begin in may and continue through august . information on the project can be obtained through the enron intranet at http : / / sap . enron . com and by contacting business unit representatives currently working with the project . a list of business unit representatives is located on the intranet site . additional information related to the july lst implementation will be communicated to you over the next few months . thank you . melissa becker project leader , apollo and beyond",0 +"Subject: power 2000 power 2000 - may 8 - 11 ? please note to hand in the following by no later than april 24 : ? presentation ( s ) ( if you are not giving one , please advise ) biography speaker checklist ? as some portions of materials have already been handed over , please only turn in what you haven ' t already submitted . please also note that if emailing a powerpoint presentation , please email it in a 97 version or lower . ? ? ? ? ? ? ? ? it is urgent that all your materials be sent by this monday , as the conference is rapidly approaching . if you have any questions , please contact me to further discuss . i will be out of the office this thursday and friday but will be returning on monday . ? ? ? regards , amy lamonsoff conference coordinator t ( 212 ) 925 - 1864 xl 48 f ( 212 ) 925 - 7585 alamonsoff @ watersinfo . com ? ? ? ? ? ? ? ? ? ?",0 +"Subject: mike roberts john , i have received your message regarding mike roberts . i could not agree more . mike deserves to be compensated for his exceptional contribution . additional recommendation . i think that all weather forecasting support should be consolidated under mike ( including the weather guys supporting power trading ) . in my view , it was a mistake to remove mike from power support . it would also mean a lot to him personally . vince",0 +"Subject: vince , this morning i got a call from richard bryant , director of computational finance program at carnegie mellon university ( the program kevin and i went through ) . he ' s interested in getting enron involved with their program designing and ( more critically i guess ) campus recruiting effort . i gave him your phone number and email . you can expect to hear something from him soon . best , alex",0 +"Subject: christmas baskets kevin : i do not know who half of these people are ! my list would be : move team susan kennedy and judy schlesinger ( order all of our subscriptions ) demonica lipscomb ( video scheduling - should include stuart ) dave delainey mail room help desk ( our tech is : doug doring ) facilities help desk ( don ' t know who ) marriott ( trina - she takes care of all the lunches we order ) i don ' t think we need to give the ozarka guy one , we have several who deliver down here , it is not always the same one . vince probably has more , i will let you know . thanks ! shirley kevin g moore 11 / 03 / 2000 12 : 00 pm to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : subject : new listing goodmorning everyone , last year we did quite a bit of christmas baskets , during the time we were in the process of another major move . we are currently settled on all floors now , therefore our christmas basket list will be cut more than half . here are a list of the names that received baskets last year . matt rodgers chris hyde darren prager charlie notis harvey freese jon davis maryam golnarghi delores sustaita rodney keys iain russell trina williams todd butler pamela ford facilities robert knight phillip randle mary martinez daniel hornbuckle ( ozarka ) guy move - team greg whalley richard weeks mary sue rose there are several names boldly printed that probably will not receive the baskets this year . the christmas season is approaching therefore we must start preparing . please note that i will be out on vacation dec 13 th - 18 th , if possible i would like your list of names before my vacation begins whereby all baskets can arrive at their destinations on time . thanks kevin moore please any comments , question , answers - feel free to call x 34710",0 +"Subject: help on cluster analysis just wanted to pass a quick note to say thanks for all of your help that the three of you each gave me concerning cluster analysis . your help was invaluable . as you may have been aware , we were performing the cluster analysis to define the commercial zones in ercot . i only had a few days in which to learn the fastclus procedure in sas and prepare graphical views of the results . your assistance ensured that enron was seen as one of three market leaders who had the capability to perform the analysis and cross check other market participants analysis . we were the only participant who had the ability to graphically display the results . i was able to take the lead in a commercial meeting because of the data and results . i just wanted you guys to know that i really appreciated your help . i have attached a couple of files that show some of the results . the presentation has the best overview . best regards , lance",0 +"Subject: re : real options hi navroz having presented my real options work at a recent conference , i think i can see my way clear to producing a much reduced version ( 3 or 4 pages ) of my "" diagrammatic real options "" paper . would risk still be interested in such a shortened article ? cheers , steve enron capital & trade resources corp . from : "" navroz patel "" 05 / 23 / 2000 11 : 37 am please respond to "" navroz patel "" to : cc : subject : real options steven , after further consultation with the technical editor , we feel that your work would find a more suitable environment for exposure in the journal of risk . ? if you email a copy of your work ( to the editor - in - chief , philippe jorion ) and outline what has happened to : ? ? pjorion @ uci . edu ? then i am sure that they will be keen to give due consideration . ? thank you for your interest and sorry for the delay in coming to this decision . ? best wishes , ? navroz patel , technical assistant , risk magazine . ?",0 +"Subject: good morning / afternoon vince , one of my colleagues here at baylor is writing a book about "" the business of heaven "" in which he interviews prominent business leaders . bob darden is his name and he ' s a former journalist and nice guy . he would like to contact ken lay about being one of his interviews . do you think this is possible ? if so , could you give me an address / phone numbers that bob might use to contact ken ' s secretary about setting up an interview ? if this is in any way "" not ok "" please just say so . see ya , john > date : fri , 30 mar 2001 11 : 35 : 03 - 0600 > from : robert darden > subject : yo ! > x - sender : "" robert darden "" ( unverified ) > to : j _ martin @ baylor . edu > organization : the door > x - mailer : mozilla 4 . 04 [ en ] c - flashnet ( win 95 ; i ) > > hi john - - i enjoyed our meeting yesterday . this looks very promising . > meanwhile , as i mentioned at the table , i ' m getting a little nervous > about the book that is due june 1 . > one of the names on our "" wish "" list of interviewees for "" the business of > heaven "" is ken lay at enron . > would it be possible for you to give me a good address and phone number > for mr . lay ' s office ? > and may i mention your name in the cover letter ? > i would be forever indebted . i might even buy the next lunch . > bob > p . s . thanks for sharing your concerns about church yesterday , too . i ' m > genuinely sorry things didn ' t work out better and feel more than a > little embarrassed that i didn ' t work harder to make you guys feel more > welcome and connected . on the other hand , please know that mary and i > will always love you and consider you both friends . i know you ' ll be > happy at lake shore - - even as we miss you at 7 th ! > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : lawyer ian , sorry for a delay in getting back to you . i have one challenge i did not anticipate when i talked to you the first time about our real options internal seminar . the materials were prepared in collaboration with a professor from another school , and there is some sensitivity regarding the intellectual property rights and the ability to distribute the materials outside enron . please , give me some time to find out if i can work around this issue . vince "" macmillan , ian "" on 03 / 07 / 2001 06 : 46 : 28 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : lawyer i still have not heard from your lawyer . i would like to see whar materials you are using and assess how we could work on the topic of real options with enron",0 +"Subject: cera conference call - - scheduled for wednesday , march 8 , 2000 - cera conference call cera conference call : wed , march 01 , 2000 title : cera conference call - - scheduled for wednesday , march 8 , 2000 author : cera e - mail category : conference call product line : north american gas , north american power , refined products , url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1109 , http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1110 , http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1111 , conference call and web presentation scheduled for wednesday , march 8 , 2000 topic northeast us energy markets : implications of the winter price spikes cera is pleased to invite you to participate in a conference call and web presentation with our experts on global energy . we will be discussing : * understanding the winter price spikes in electric power , natural gas , and oil products markets in the northeast us netscape navigator 3 . 02 or higher ; or sun hot java ( tm ) * close all desktop applications and disable your screen saver technical assistance if you are calling from the united states and are experiencing difficulties during the call , you may signal for technical assistance by pressing * 0 ( star , zero ) on your telephone keypad after you have connected to the audio portion of the conference . international callers please re - dial into the call , asking the operator for assistance before giving the confirmation code . for more information for more information , please contact kari paakaula via e - mail at kpaakaula @ cera . com or via telephone at ( 617 ) 441 - 1362 . a recording of this call will be available until april 8 , 2000 . to access this recording , please call 1 - 888 - 203 - 1112 ( within the us ) or ( 719 ) 457 - 0820 ( outside the us ) . please use confirmation number 915415 to access the call . * * end * * follow url for html version of this message only . note : should the above url not work , please use the following : http : / / www . cera . com / client / nap / cc / 022900 _ 16 / nap _ cc _ 022900 _ 16 _ ab . html [ for north american electric power clients ] http : / / www . cera . com / client / nag / cc / 022900 _ 16 / nag _ cc _ 022900 _ 16 _ ab . html [ for north american natural gas clients ] http : / / www . cera . com / client / rp / cc / 022900 _ 16 / rp _ cc _ 022900 _ 16 _ ab . html [ for refined products clients ] this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www . cera . com / tos . html questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: joao neves dear vince : ? i am in a somewhat delicate position . one of the people in the group here has asked me to introduce him to you . ? as an el paso vice president , i should not have agreed to do this , and frankly , the guy should not have asked . ? but he is clearly very unhappy at el paso , so , as a human being , i felt it was appropriate . also , because this guy would have contacted you anyway , with or without my introduction , as a professional courtesy , i would like you to benefit from my experience with this fellow . ? the guy ' s name is joao neves ( portugese ) . ? i think he is reasonably bright and seems to have a quite deep understanding of general finance and financial mathematics . he is a manager and feels very frustrated because he had hoped to be promoted to a position of authority . instead the group ' s m . d . brought in two price - waterhouse - coopers consultants as v . p ' s to run the structuring and quant sides of the group . in this respect , i can understand his unhappiness . unfortunately for him , however , i also think it is in his nature to whine . ? i have observed him to bad mouth lots of people starting with the it guys ( ok , that ' s perhaps not much an indictment ! ) all the way to dismissing broadie & glasserman ' s or eduardo schwartz ' works as shoddy or shallow . ? he does not seem to suffer well people he considers fools . ? caveat emptor , therefore ! having said all this , i do want to emphasize that he is a bright guy , is very pleasant with me , and , perhaps given the appropriate environment and supervision , might be quite productive . ? but don ' t take my word for it . talk to him , and see what you think . ? obviously , i would ask that you keep these comments in confidence . i have given you an honest assessment - - brutally so . ? ' nuff said ! i have fulfilled my moral obligations both to joao and to you . ? best regards , grant .",0 +"Subject: welcome to pjm - customer - info - - welcome to the pjm - customer - info mailing list ! please save this message for future reference . thank you . if you ever want to remove yourself from this mailing list , you can send mail to with the following command in the body of your email message : unsubscribe pjm - customer - info or from another account , besides vince . j . kaminski @ enron . com . : unsubscribe pjm - customer - info vince . j . kaminski @ enron . com . if you ever need to get in contact with the owner of the list , ( if you have trouble unsubscribing , or have questions about the list itself ) send email to . this is the general rule for most mailing lists when you need to contact a human . here ' s the general information for the list you ' ve subscribed to , in case you don ' t already have it : this mailing list is maintained by the pjm interconnection l . l . c . to communicate information about pjm and pjm ' s upcoming events .",0 +"Subject: re : cover design / copy for energy derivatives publication fiona , to answer your questions : 1 . we approved chapter 3 for publication . 2 . my current affiliation is enron n . a . grant left the company but my advice it to leave his bio as is ( it reflects his employment status when he was working on the chapter ) . i don ' t think we should update the bio and advertise his new employer . 3 . ad material is fine . vinnce",0 +"Subject: visit with vince kaminski on may 4 th carol : for your information and susan ' s , christie patrick will not be available on the 4 th of may . she will be out of the city . maybe susan can contact her directly at another time . i still have 1 : 30 as the time for vince and susan to meet . thanks ! shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 04 / 09 / 2001 11 : 14 am to : susan . hansen @ stanford . edu cc : subject : visit with vince kaminski on may 4 th good morning susan : vince forwarded the below message to me and after looking over his calendar , he appears to be free most of the afternoon on the 4 th of may . please let me know what would be a good time for you and i will block it out before someone else gets it . thanks ! shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 11 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 06 / 2001 05 : 36 pm to : "" susan c . hansen "" @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : visit from stanford ? susan , thank you for your message . i shall be glad to meet with you on may the 4 th . i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to set up the meeting . also , for your information , we have recently set up a special unit to coordinate enron ' s relationships with the universities . the person running this unit is christie patrick . please , feel free to contact her and give my name as a reference . i shall coordinate the meeting on may the 4 th with her . vince additional information re christie : phone : ( 713 ) 853 - 6117 email : christie _ patrick @ enron . com "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm to : vkamins @ enron . com cc : subject : visit from stanford ? dear dr . kaminski , let me briefly introduce myself , i am the director of corporate relations for the school of engineering at stanford university . in this role , i am always on the watch for ways to bring our faculty together with companies that have an appetite for engagement with top tier research institutions . i believe you know hill huntington , who is a senior researcher with stanford ' s energy modeling forum . he suggested i get in touch with you for some ideas about contacts at enron . i ' m in the process of planning a trip to texas in early may along with my colleague donna lawrence , the university ' s director of corporate relations . we were hoping to be able to include a stop at enron on our itinerary . right now it appears that friday , may 4 th would work best for us but we ' re at the very beginning of our trip planning . the purpose of our visit would be to review the current relationship between enron and stanford , to give you an overview of current priorities in the school of engineering , and ask for your help in identifying the best points of contact . i look forward to hearing from you about your availability , sincerely , susan hansen susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219 ",0 +"Subject: re : job application thank you . nurit nurit krausz , ph . d . http : / / www . ma . utexas . edu / users / nurit / dept . of mathematics phone : ( 512 ) 471 - 7170 university of texas at austin office : rlm 11 . 170 hours : mwf 8 : 30 - 10 on thu , 2 mar 2000 , vince j kaminski wrote : > > > nurit , > > we shall schedule a phone interview for you sometimes next week . > my assistant , shirley crenshaw ( 713 853 5290 ) , will call you to discuss the > timing . > > vince kaminski > > > > > > > nurit krausz on 03 / 01 / 2000 10 : 44 : 00 am > > to : vince j kaminski / hou / ect @ ect > cc : nurit krausz > subject : job application > > > > > dear dr . kaminski , > > i currently hold a post - doctorate position in the mathematics > department at the university of texas at austin ( with a ph . d . > in theoretical physics ) . although my position here is renewable > until summer 2001 , i would like to move on to a more dynamic field > where i can still use my analytical skills and mathematical knowledge . > since attending a series of lectures on mathematical finance given > by dr . marc potters last summer i started studying the subject on my > own and found it intriguing and challenging . > > i am interested in a position in your group ( rac ) at enron . > last fall in a career seminar at ut you mentioned that people who are > interested can send you their resume . if this is still relevant , please > find below my resume ( in word 97 and text formats ) . > thank you for your time . > > yours , > nurit krausz > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > nurit krausz , ph . d . http : / / www . ma . utexas . edu / users / nurit / > dept . of mathematics phone : ( 512 ) 471 - 7170 > university of texas at austin office : rlm 11 . 170 hours : mwf 8 : 30 - 10 > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > resume > > nurit krausz > university of texas > department of mathematics > austin , tx 78712 > phone : ( 512 ) 471 - 7170 > e - mail : nurit @ math . utexas . edu > http : / / rene . ma . utexas . edu / users / nurit / > > objective > > a position in the field of mathematical finance utilizing broad > mathematical knowledge , innovative thinking and creativity . > > summary of qualifications > > with extensive academic background and research experience , > combined with experience as an engineer in the israeli air force , > i possess the following : > * deep mathematical and scientific knowledge . > * strong analytical and problem - solving skills . > * proven ability to quickly become an expert in new subjects . > * ability to present clearly and effectively complicated subjects . > * ability to work productively both independently and in teams . > > academic positions > > 1998 - present : post - doctorate position at the university of texas > at austin , department of mathematics . > > education > > 1994 - 1998 : d . sc . in physics at the technion - israel inst . of tech . > research thesis : quantum dynamics on non - compact group manifolds . > supervisor : prof . m . marinov . > > 1992 - 1994 : m . sc . in physics at the technion - israel inst . of tech . > research thesis : a study of scintillation in doped silica glass > for detection of neutrino oscillation . > supervisor : prof . j . goldberg . > the experiments were performed at cern during the summer of 1993 . > * performed the design , testing , and installation of the experimental > setup from remote - controlled mechanical equipment to sophisticated > electronics . > * performed statistical data analysis and critical interpretation of > results using software developed at cern ( paw ) . > * solved a complicated problem of track reconstruction through an > unusually shaped magnet for the chorus collaboration at cern , and > delivered a computer code ready for implementation , still in use > today . > > 1985 - 1989 : b . sc . in aeronautical engineering cum laude at the > technion - israel institute of technology . > > military service > > 1989 - 1992 : aeronautic design engineer in the israeli air force . > rank : first lieutenant . > * designed and supervised numerous prototype installations of > electronic equipment and changes in combat planes . > * wrote procedures for harsh environmental durability tests for cockpit > and avionics bay - mounted equipment . > * negotiated and supervised manufacturing of parts with contractors . > * attended project management , engineering and product reliability > and maintenance courses . > * programmed simulations of ammunition trajectories from moving > aircrafts . > > teaching experience : > > 1998 - present : lecturer at the university of texas > undergraduate courses : precalculus , calculus , linear algebra > graduate course : theory of lie groups > > 1992 - 1997 physics department , technion , teaching assistant > undergraduate course : elementary lab in mechanics > graduate courses : group theory for physics , > introduction to particle physics , relativistic quantum mechanics . > > computer knowledge : > > unix and windows os , most common word processors , excel , > maple , mathematica , fortran , html , latex . > > publications : > > 1 . j . goldberg and n . krausz , response of cerium - doped silica glass > in a beam at cern , proceedings of the scifi conference , notre dame > university , notre dame , indiana ( 1993 ) . > 2 . n . krausz and m . s . marinov , quantal dynamics on non - compact > groups , proceedings of the 5 th international wigner symposium , > world scientific ( 1998 ) , 398 . > 3 . n . krausz and m . s . marinov , exact evolution operator on > non - compact group manifolds , quant - ph / 9709050 , > submitted to j . of math . phys . > 4 . n . krausz , spherical averages in minkowski space , in preparation . > 5 . n . krausz , quantum field theory in minkowski space , in preparation . > > >",0 +"Subject: re : long term demand forecast - looking for more information hi slava i ' m not sure who ' s looking after power - related stuff in houston at present . best to let vince redirect your query . steve viacheslav danilov 11 / 10 / 2000 15 : 51 to : steven leppard / lon / ect @ ect cc : graham mullin / lon / ect @ ect subject : long term demand forecast - looking for more information hi steve , i plan to spend next week building relatively simple long term ( 1 - 2 years ) demand forecast - it will be a starting point and will allow our guys to work . for more detailed analysis i will need more information , particularly on recent changes in demand in the sates ( california ) . i tried to contact vince , but probably he is very busy right now . please , could you help me to find somebody in the houston who may provide any help . many thanks , slava",0 +"Subject: re : maureen raymond - castaneda extension norma fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 22 / 2000 09 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : robert knight on 03 / 08 / 2000 04 : 09 pm to : maureen raymond / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : maureen raymond - castaneda extension maureen , i apologize that your phone was disconnected in error . at this time your phone is working and your voice mail box needs to be set up . i would like to add however , i do not appreciate your disrespect and unreasonable demands placed on my employees . they were not the cause of this problem and can only relay your information to the appropriate group . enron has values of respect , integrity , communication and excellence . i would appreciate you taking the time to review them . robert knight director voice communications stella l ely 03 / 08 / 2000 11 : 08 am to : move - team / epsc / hou / ect @ ect , telephone mods / corp / enron @ enron , dolores sustaita / epsc / hou / ect @ ect , robert knight / hou / ect @ ect cc : subject : maureen raymond - castaneda extension please reinstate maureen ' s extension immediately , if possible . it was disconnected this past weekend when we had it taken off of the phone at eb 3073 f . her extension was on two phones at two different locations and should not have been disconnected at eb 1939 . her extension no . is 30396 . sorry for the confusion . please let me know timing asap . thank you . stella ely",0 +"Subject: henwood ' s 2001 ercot symposium : january 23 , 2001 shirley , please , register me , lance and alex for this event . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 22 / 2000 04 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" chris farrell "" on 12 / 22 / 2000 06 : 13 : 50 am to : cc : subject : henwood ' s 2001 ercot symposium : january 23 , 2001 mark your calendar - tuesday january 23 , 2001 downtown houston hyatt hotel henwood will be hosting a comprehensive ercot symposium on tuesday , january 23 , 2001 . a team of henwood regional power market specialists will be presenting the latest analysis and information to assist you in preparing for the new ercot restructured power market , in addition to an anlysis of the issues now playing out in the wscc markets . coffee and registration will begin at 9 : 30 am and the program will run until 3 : 00 pm . lunch and snacks will be provided . agenda topics include : * what will be the critica - success factors for qualified scheduling entities operating in ercot ' s new wholesale & retail markets ? * how will market restructuring impact mid to long - term wholesale prices ? * what is the outlook for new generation ? * what are the impacts of upcoming emission regulations on ercot ' s generation resources ? * what are the new analytical tools available to capture market uncertainty impacts to your supply contracts and generation assets ? * what are the restructuring lessons learned from the california experience and the implications to ercot ? in conjunction with this program , henwood will have a demonstration room available to present its latest software applications and e - business solutions . a nominal $ 75 registration fee is required to reserve a space in the workshop . for more information or to reserve your spot , please contact chris farrell at henwood : cfarrell @ hesinet . com or 916 / 569 - 0985 . about henwood : henwood offers integrated business solutions , strategic consulting , and innovative e - business applications to meet the challenges of the restructured energy markets throughout north america , australia , and europe , serving clients that include eight of the ten top utilities in north america , in addition to energy services providers and power marketers . if you want to be removed from our email list please reply to the sender and put "" remove "" in the subject box .",0 +"Subject: biliana ' s resume mr . kaminski , thank you for referring me to your recruitment representative . attached is my resume . i would appreciate you letting me know the name of the hr person whom i can folow up with . best regards , biliana = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = biliana pehlivanova vice president of incoming exchange aiesec houston 713 743 - 4927 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = do you yahoo ! ? yahoo ! photos - 35 mm quality prints , now get 15 free ! http : / / photos . yahoo . com / - biliana ' s resume . doc",0 +"Subject: jacob feedback vince , chonawee and tom halliburton had feedback about jacob to me . tom ' s feedback is what he does for pros is actually too simple . their so - called trading system is actually a scheduling system . my impression is that jacob is good at selling himself , his knowledge of finance and derivatives is very limited . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 11 / 2001 03 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat @ enron 03 / 21 / 2001 07 : 28 pm to : zimin lu / hou / ect @ ect cc : tom halliburton / corp / enron @ enron subject : jacob feedback i asked jacob two questions to check his basic knowledge . he answered correctly in the optimization question so i believe that he has a good foundation on his optimization skill . i have a doubt about his stochastic skill because he took only one course in stochastic processes and his previous models are simple deterministic models . if we had more interview time i would be able to check his stochastic and modeling skills . he completely failed to answer the second question , which is to check his basic risk management skill . it is clear to me that he has a very weak background in finance and risk management . he does not understand the relationship between a discount rate and risk . he showed some weakness in annuity calculation . in conclusion , i feel that he has good basic in optimization but a very weak background in finance . based on his experiences , i have a doubt on his advance optimization skills , such as his stochastic skill and his ability to attack a complex optimization problem . i would recommend a second - round interview if he will be solving a complex - optimization problem . - chonawee",0 +"Subject: job spec for junior quant hi dale , please see the job spec that i plan to get posted on the enron europe internet site - please could you review before i hand over to hr ? thanks , anjam",0 +"Subject: re : info help . hi niclas , i am in the middle of preparing some presentations right now , so it might be more productive to speak by phone ( 503 - 464 - 8430 ) . please leave your number , if you get my voicemail . to get you started , you might see if you can get access to the ferc gads database of plant forced and planned availability . it seems others in research have asked about this , so you may already have this at your disposal . the eia has a good electronic database of plant for and por available for free ( http : / / www . nerc . com / ~ esd / ) . i know alexios in re / ees has this . if you wanted to do it the hard way , you can also ask jaison to access the epa ' s cems data he has summarized on a machine there in research . it contains hourly plant operation for every unit over about 50 mw , which you could aggregate up . the wscc 10 - year forecast of new plant construction and loads is a good place to start for plant construction information , but suffers from some notorious "" self - reporting "" error . it is available in pdf form from the web site http : / / www . wscc . com / . other sources that should be more near - term , but more accurate are the cec inventory of plants ( http : / / www . energy . ca . gov / ) and the bpa whitebook ( http : / / www . transmission . bpa . gov ) . as far as basic economic data is concerned , you can either rely on the reported utility forecasts for loads , or you can go to fundamental data . the ultimate source of the census data collected by the us dept of commerce , which you can buy on cdrom for cheap . it would have this kind of information by sic code , by zip code . you may also have access to one of the economic forecasting businesses ( wharton ' s wefa , dri , etc . ) they have this in highly digested and complete form . btw , tim heizenrader , who runs fundamental analysis and research on the west desk , is a sharp cookie and should have all this under control . is your client aware of this resource ? give me a buzz and we can talk more , michael > > > niclas egmar / hou / ees @ enron 08 / 14 / 00 12 : 49 pm > > > michael , i ' m an analyst in the research group . i would like your help with finding some information specific for the west coast . a new analyst on the west power desk needs information on planned outages and planned new generation . he is studying the long - term fundamentals of electricity volatility on the west coastso so he also needs info on housing starts , computer sales or industrial production figures for computer manufacturing , growth of start - up companies , and population stats . any help in finding the needed info would be greatly appreciated . contact me or daniel kang ( new analyst ) . niclas - text . htm",0 +"Subject: schedule to chelmsford hi all , here is what i have so far on the agenda front ! shirley , we need travel arrangement to attend the meeting mentioned below . here are our prelimnary schedule . please try to check us all in at the double tree in chelmsford , ma where the meeting will be . vince cannot attend . there will be four people from our group attending including myself , stinson , krishna and samer . only stinson and i will attend the dinner on monday night . here is the suggest times by names : ravi & stinson : leave houston around 12 : 00 pm on monday ( jan 31 , 2000 ) to be there for the dinner . try to get us in chelmsford , ma in time so that we can attend the dinner . leave chelmsford , ma around 2 : 00 pm thursday . one full size rental car for all four of us . you can put this in either mine or stinson ' s name . krishna & samer : leave houston around 5 : 00 pm to get in time to get a good night sleep to attend the meeting tue ( feb 1 ) : leave chelmsford , ma either wed 6 : 00 pm or thurs afternoon depending on individual schedule . krishna and samer , please let shirely know when you want to get back . as long as you are there for tue and wed full day , you should get enough out of the meeting . shireley , please call me for more details . regards , ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 01 / 27 / 00 04 : 45 pm - - - - - phil markwart 01 / 26 / 00 08 : 00 pm to : barb . vanbeyrer @ sycamorenet . com cc : ravi thuraisingham / enron communications @ enron communications , erik simpson / enron communications @ enron communications , stinson gibner / hou / ect @ ect subject : schedule please copy the persons in the cc line with the schedule of 31 jan as soon as you get it . at this point , you have told me : 31 jan travel to chelmsford and dinner around 7 pm ? 1 feb overall optical design considerations 2 feb specific route designs 3 feb more route design",0 +"Subject: eprm vince , ? could you please provide me with an indication on whether you will be able to review the latest eprm article in the next day or so ? ? ? look forward to hearing from you shortly . ? julie",0 +"Subject: software license ms . geman , i am just following up to see if you had received my previous message forwarded below and whether you have a response so that we can move forward with this contract ? thank you , karla feldman - - - - - forwarded by karla feldman / hou / ect on 08 / 08 / 2000 09 : 23 am - - - - - karla feldman 07 / 28 / 2000 01 : 41 pm to : geman @ dauphine . fr cc : subject : software license dear ms . geman , i met with vince kaminski yesterday regarding picking back up with the license agreement we were working on back in march . he relayed some additional requirements which need to be added to the agreement , which include the following : 1 . the price agreed upon is $ 90 , 000 . 2 . d - g will provide system support . 3 . no later than 12 months of execution of the agreement , d - g will provide the source code to enron . in the meantime , the source code is to be in escrow . additionally , the source code would be released sooner than the 12 months if any of the following conditions occur : ( i ) d - g goes out of business ; ( ii ) d - g is unable to provide effective technical support ; or ( iii ) if d - g agrees to release it sooner . before i have our attorney add these things to the agreement , we need to discuss the escrow situation . vince mentioned that you had suggested that your attorney keep the software in escrow . is your attorney a u . s . attorney ? it seems like i may have recalled that way back in march you might have said you had a friend or relative that was an attorney . is that the same person ? does this attorney work for a large firm , small firm , or solo practitioner ? basically , if you could just provides some additional information about your attorney , i would appreciate it . we normally would use an escrow company to put the software in escrow . we have dealt with a company here in the u . s . called dsi technology . i will check into that pending your answer regarding your attorney . once we decide what we want to do regarding placing the software in escrow , we will red - line the agreement to reflect such changes and e - mail it back to you for your review . i look forward to hearing from you . karla feldman enron corp . contract administration ( 713 ) 646 - 7554",0 +"Subject: potential new analyst hi guys a number of us interviewed a guy named matthew williams last week for an analyst position . he has a phd in particle physics and experience with monte carlo simulation ( albeit in fortran 77 ) from his academic work . he ' s also a good communicator , having completed a postgrad course in acting , and has been active in the theatre as performer and director . if he accepts our job offer then ( after discussion with dale and bryan ) we ' ve decided to give him his first rotation in research here in london . i hope he accepts . i ' ll keep you posted . steve",0 +"Subject: re : ut short course travel arrangements martin , i can join the car pool . vince from : martin lin on 04 / 25 / 2001 10 : 59 am to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , sandeep kohli / enron _ development @ enron _ development , lance cunningham / na / enron @ enron , sevil yaman / corp / enron @ enron cc : subject : ut short course travel arrangements if the schedule works , perhaps a carpool is best for attending the course , given the number of us going . vasant has offered to drive . dependiing on driving speed and traffic , leaving houston by 9 : 30 am should give sufficient time to make the lpm class , including some time for lunch . please let me know if you are interested in the carpool or have alternate plans or suggestions . thanks , martin",0 +"Subject: re : extreme value theory applied to weathet vince , thanks for responding to christian . i had replied earlier and said that evt is based on iid events , and is therefore not useful in weather , where there is so much correlation going on . jitendra from aa raised the same issue yesterday . joe vince j kaminski 08 / 22 / 2000 04 : 49 pm to : christian werner / enron _ development @ enron _ development cc : joseph hrgovcic / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : extreme value theory applied to weathet christian , about two years ago i asked joe hrgovcic to look tinto evt applications . as far as i know he is the only person in the group , in addition to me , looking at evt . vince christian werner @ enron _ development on 08 / 18 / 2000 07 : 00 : 42 pm to : vince j kaminski @ ect cc : subject : extreme value theory applied to weathet - - - - - - - - - - - - - - - - - - - - - - forwarded by christian werner / enron _ development on 19 / 08 / 2000 10 : 06 - - - - - - - - - - - - - - - - - - - - - - - - - - - christian werner on 19 / 08 / 2000 02 : 08 : 56 to : vince . kaminski @ enron . com cc : subject : extreme value theory applied to weather - - - - - - - - - - - - - - - - - - - - - - forwarded by christian werner / enron _ development on 19 / 08 / 2000 01 : 15 - - - - - - - - - - - - - - - - - - - - - - - - - - - christian werner on 19 / 08 / 2000 01 : 55 : 56 to : vkamins @ enron . com cc : subject : extreme value theory applied to weather dear vince , back in july , when you visited our sydney office you mentioned extreme value theory . i am wondering whether research is looking into the application of extreme value theory to power and esp . to weather . in a recent news article it was highlighted that a trend in the industry towards t _ max , t _ min , etc . i am in particular referring to the news article below : in the past we have observed a similar trend where customers are asking for t _ max , t _ min , or below or above precipitation structures . the choice in the past has been the burn analysis on historical data . however , we are in particular interested in the extreme events , and the application of evt could provide a meaningful tool for the analysis . has the research group looked into the application of evt to weather ? evt has a long history of application in hydrology ( which would cover parts of the precipitation structures . . . ) . also , research ( esp . at eth in zuerich ) is indicating the application of evt to v @ r . . . . thank you ! regards , christian",0 +"Subject: california update 4 / 27 / 01 the following report contains confidential and sensitive information . please treat with discretion . executive summary : ? ferc price cap decision reflects bush political and economic objectives . politically , bush is determined to let the crisis blame fall on davis ; from an economic perspective , he is unwilling to create disincentives for new power generation ? davis finds four major flaws with ferc plan , most notably its exclusion of out - of - state generators ? june lst "" kill clause "" for ferc order could coincide with new bush regional plan ? california facing growing fiscal risk following bond downgrade , expected $ 20 billion power bill this summer - - economic crisis would force deeper administration involvement ? qf bid for advance payments from pg & e likely to fail in bankruptcy court ? new generation delays probable because of state / qf squabbling ? consumer groups are preparing a constitutional challenge to socal bailout deal 1 . ferc fallout the ferc decision is a holding move by the bush administration that looks like action , but is not . rather , it allows the situation in california to continue to develop virtually unabated . the political strategy appears to allow the situation to deteriorate to the point where davis cannot escape shouldering the blame . once they are politically inoculated , the administration can begin to look at regional solutions . moreover , the administration has already made explicit ( and will certainly restate in the forthcoming cheney commission report ) its opposition to stronger price caps on the grounds that they are unwilling to create disincentives to the construction of new generation . it is interesting and ironic to note that electricity generators were generally happy with the ferc order and that the only ferc commissioner who favors price caps actually voted against this plan . 2 . something less than effective price caps from davis ' s point of view , the ferc plan has four major flaws : ? the order applies only to california , not to the rest of the west . non - california generators are not required to sell at capped rates to california . ? as the order is written , it is more of a price floor for emergency power than a ceiling . ? state officials also believe that energy suppliers will continue to game the system , because the price mitigation scheme only kicks in after a stage 2 emergency and does not require any collusion . ? even when the price caps kick in , they are based on the cost - plus for the highest cost producer supplying power to california and do not require wholesalers to abide by the cap . the generators can also charge above the cap , provided they can subsequently justify the excess charge to ferc . 3 . proposal "" kill clause "" adds to the political dilemma for davis the ferc proposal includes a "" kill clause "" that says the caps will be withdrawn unless california ' s iso agrees by june lst to become part of the regional grid now under ferc control . if davis doesn ' t sign on to the regional grid by june lst , then he will have to live with june 2 nd headlines blaming him for letting the "" bush price caps plan "" collapse . 4 . growing fiscal risk in california sources speculate that california could therefore pay as much as $ 20 billion on power this summer - this is more than the combined enterprise value of pg & e and sce . these sources believe that , because of the severity of the situation , the ferc and / or the federal government will be forced to take further action to control prices for power . the consensus is that the state of california will run out of money in about 90 days . one of the first projects to be cancelled will be state plans to finance new power plant construction in exchange for long - term power deals . the bleak fiscal picture is also causing bank creditors to revisit the bridge loans they are providing to california . the bush administration and the fed are only now waking up to the seriousness of the fiscal picture . the country ' s largest and most prosperous state will have gone from large surpluses to serious debt downgrades and devastating deficits in a matter of months . 5 . qfs to seek advance payment from pg & e meanwhile , on the bankruptcy front , the qfs reportedly will ask the bankruptcy judge today to give them advance payment from pge ' s accounts , since their natural gas vendors have likewise demanded advance payment for gas . it appears very unlikely that the qfs ' request will be granted . if the qfs do not receive advance payment , it is likely that most of the 4 , 000 mw of gas - fired qf capacity will remain offline . 6 delays likely in new qf generation the qf deals made with the state for long - term contracts are being continually renegotiated , which is likely to mean that the new plants those contracts are supposed to finance will not be online as early as anticipated . 7 . consumer groups ready to challenge constitutionality of sce bailout plan harvey rosenfield and his colleagues reportedly have been reviewing an analysis of the mou for the sce bailout plan . the analysis was done by a utilities analyst , rather than a lawyer , though it appears to raise a number of good legal points . for example , one of the elements of the mou is a "" non - bypassable "" charge on ratepayers that would require them to pay even if they disconnect from the grid . this is effectively a tax , since there is no exchange of value for money , which under the ca constitution cannot be used to directly benefit a private entity . this makes the bonds that would be issued are general obligation bonds , rather than revenue bonds . according to the constitution , the state cannot be put into debt to benefit a private company . for this and other reasons , even if the republicans would vote for the sce bailout , which remains unlikely , the bailout probably would not stand a likely constitutional challenge . 8 . governor hurt by continued failure to disclose long - term power contracts the issue of the governor ' s failure to disclose the details of the long - term power contracts continues to distress the other players in the crisis . even if he were to disclose everything he and his staff have been negotiating , it is likely that their actions and negotiations will challenged , creating an even further delay .",0 +"Subject: phone time dear dr . kaminski thanks for your arrangement . i have received email from shirley . either wednesday or thursday will be fine to me . i am looking forward to talking to you at that time . it is always my pleasure to work with you . best wishes quentin kerr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 625 tel : ( 07 ) 33461428 department of mathematics , the university of queensland",0 +"Subject: re : stinson gibner richard we actually need to duplicate his ena workstation as he will be reporting at both locations p",0 +"Subject: confirming your attendance - oct . 19 / 20 - wharton vince , we are delighted that you , christie ( and possibly mark palmer ) will be attending our upcoming wharton impact conference on october 19 - 20 . the final agenda is enclosed ( below ) - please note - unless we hear otherwise from you , we will assume that you will be attending both the dinner on oct . 19 and the conference on oct . 20 . this very timely event has generated enormous interest . we look forward to your participation , and hope you will find this to be a valuable insight - building experience . please call or e - mail if you have any questions about any aspect of the conference . also - i ' ll look forward to hearing some stories of your exploits during your recent trip to poland . must have been extremely interesting ! best regards , michael tomczyk _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ winners and losers in the e - commerce shakeout thurs . oct . 19 ( dinner ) and fri . oct . 20 ( conference ) agenda winners and losers in the e - commerce shakeout thursday , october 19 , 2000 ( dinner ) friday , october 20 ( conference ) the wharton school - philadelphia , pa jointly sponsored by the william and phyllis mack center on managing technological innovation , wharton school marketing science institute wharton e - business initiative ( webi ) conference themes & objectives e - commerce is heading inextricably and rapidly toward an inevitable shakeout and consolidation that tends to characterize every major new industry . this impact conference bringstogether a distinguished group of industry and academic leaders to discuss what is required to survive the e - commerce shakeout , and what it takes to be a "" winner "" when the shakeout hits , full - force . shakeouts are spawned in the boom - and - bust environment of hot emerging markets . an unsustainable glut of competitors is attacted by the contagious enthusiasm for the emerging technology . as competition intensifies and falling prices put pressure on margins there is a wave of ailures and mergers that removes the weaker players . few ecommerce markets - - whether e - tailing online exchanges or others - - - will be exempted from the forces that cause shakeouts . this conference will combine lessons from markets that have experienced shakeouts , with the latest thinking about the unique features of e - commerce , to identify successful strategies for surviving a shakeout . questions to be addressed include : - are the patterns seen in previous shakeouts of high technology markets applicable to ecommerce ? what are the early warning signs of an impending shakeout ? - which ecommerce markets are most susceptible to a shakeout ? will there be single or multiple winners ? - which companies are likely to survive ? what strategies will the winners use ? there is controversy and uncertainty about which factors will most contribute to prospects for survival . how important are first mover advantages and building brand equity ? what do incumbents have to do to prevail ? which business models are most robust ? how important is the ability to manage strategic partnerships ? these issues will be addressed with a program that encourages active dialogue and interaction and includes speakers from industry , academia and wall street . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ agenda * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * dinner co - author of the best - selling books net gain and net worth ) * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * conference - riday , october 20 8 : 00 - 8 : 30 a continental breakfast and david reibstein , woodside prof . of marketing , wharton school and director , marketing science institute ) 11 : 30 - 12 : 15 p technology investing , 15 things that should be true ( stephen j . andriole , senior vice president and chief technology officer , safeguard scientifics ) 12 : 15 - 1 : 30 working lunch participants will work in small groups . half the group will be asked to select an ecommerce firm with a strong likelihood of winning and identify the most important reasons for success ; the other half will be asked to do the same for a firm that is likely to fail . 1 : 30 - 2 : 15 small group reports 2 : 15 - 3 : 00 finding a winning strategy ( norman drapeau , chief executive officer of mro . com ) 3 : 00 - 3 : 15 break 3 : 15 - 4 : 00 living through a consolidation ( harry smilow , previously chief executive officer of telebank which is now part of e * trade ) 4 : 00 - 4 : 45 a view from wall street ( henry blodget , first vice president and senior internet / e - commerce analyst , merrill lynch ) 4 : 45 - 5 : 00 sum up - what have we learned ? what do we need to learn ? 5 : 00 adjourn _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ directions to the event & accommodations : the dinner will be held at the inn at penn which is located at 3600 sansom street . there is also an entrance on walnut street between 36 h and 37 th . the conference will be held in steinberg - dietrich hall which is located on locust walk on the wharton campus in philadelphia . from the airport or train station take a taxi to the intersection of 37 th street and walnut , walk left onto the campus ( there is a broad paved walkway leading into the campus from that intersection ) . at the first intersection you will see a life sized bronze status of ben franklin sitting on a park bench reading a newspaper . turn left at this intersection and steinberg - dietrich hall is the first building on the right . there is a broad entrance with several doors . also , any student can direct you to this building . go inside and take the staircase down to the right - - room 350 is on the lower ( basement ) level . accommodations overnight accommodations are available at the inn at penn which is across the street from the campus ( tel 215 - 222 - 0200 - mention you are here for the emerging tech conference on e - commerce shakeouts , to receive the $ 164 / night wharton room rate ) . please make your reservations early because the inn is often fully booked . we have reserved a set of rooms for this event . if you stay at another hotel in center city , most hotels ( rittenhouse , latham , ritz carlton ) are approximately 15 minutes by taxi from the campus . there is also a sheraton approximately 3 blocks from the campus , on chestnut st . michael s . tomczyk managing director emerging technologies management research program 1400 sh - dh / 6371 the wharton school philadelphia , pa 19104 - 6371 tel 215 - 573 - 7722 fax 215 - 573 - 2129 website : http : / / emertech . wharton . upenn . edu",0 +"Subject: re : estimating tail of distribution and additional risk measures naveen , the "" analytical var "" approach is working for equity portfolio . it gives us the tool to examine the tails ' behavior for this portfolio and calculate "" expected tail loss "" . the same should be done for commodities portfolio as well . meanwhile , as we discussed , we can give some rough estimates of the losses corresponding to percentiles other than 5 th . look at the figure below . you can see var numbers for 5 % , 1 % , 0 . 5 % and 0 . 1 % calculated with 1 ) simulations ( 100 thousand simulations ) ; 2 ) analytical var ( gamma - delta positions representation ) 1 ) and 2 ) are very close because there are not many options in equity portfolio . 3 ) simulations ( 1000 simulations ) to calculate 5 % var . then in order to approximately estimate var for 1 % , 0 . 5 % and 0 . 1 % i scaled 5 % var with factors corresponding to normal distribution ( for example : norminv ( 0 . 001 , 0 , 1 ) / norminv ( 0 . 05 , 0 , 1 ) for 0 . 1 % ) . the result of such extrapolation in this case is quite good ( just 5 % different from the correct number ) . we probably can use such rough estimates of tail for commodities portfolio until we have proper methods implemented . tanya tamarchenko 02 / 28 / 2001 01 : 17 pm to : wenyao jia / hou / ect , debbie r brackett / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : "" analytical "" var implementation in risktrac debbie , i am forwarding to you a 2 page document describing implementation of "" analytical "" var in risktrac . here is why this effort is very important : 1 . we need to calculate var for other percentile but 5 ( 1 % or even 0 . 2 % as mentioned by rick buy ) and our simulation model can not handle required number of simulations ; 2 . we need to present additional risk measures ( such as mean tail loss ) to the board . the analytical approach is implemented in a spreadsheet and fully tested already so there will be no problems with the algorithm itself . we need to get together and discuss it implementation . what do you think ? tanya",0 +"Subject: re : meeting requested i will ask rebekah to try to set it up for monday . kg vince j kaminski @ ect 01 / 05 / 01 01 : 48 pm to : kevin garland / enron communications @ enron communications @ enron cc : rebekah rushing / enron communications @ enron communications , vince j kaminski / hou / ect @ ect subject : re : meeting requested kevin , let ' s meet for lunch next week ( monday of friday would be best ) . we can talk about the project and decide who has the right skills to help you . the person who supports ebs is stinson gibner and his lead person is martin lin . my secretary ' s number is 3 - 5290 ( shirley crenshaw ) . vince to : vince j kaminski / hou / ect @ ect cc : rebekah rushing / enron communications @ enron communications subject : meeting requested vince , i would like to meet with you or someone in your group to discuss some of the investment ideas and structures we are exploring . how is your group structured these days ? who would be best for me to meet ? might you be available for lunch next week ? i will have my assistant contact you . thank , kevin garland",0 +"Subject: welcome to the new cera . com ! dear cera . com client : we are pleased to welcome you to the new cera . com ! we hope you will agree that this new site represents another positive step in the evolution of cera ' s internet services . to access the new site , please visit : http : / / www 20 . cera . com if you have forgotten your username and password , please use our new username and password reminder located at : http : / / www 20 . cera . com / client / forgot / please note : bookmarks you have for specific cera reports will no longer be valid . shortcuts to specific client knowledge areas will still work . for example , the link to cera ' s world oil service home page ( http : / / www . cera . com / client / wo / ) will remain the same ( note this link only active for members of the world oil service ) . please take time to surf the new cera . com to see what ' s new ! sincerely , cera . com development team",0 +"Subject: reliant tigers interested in enron vince : below , please find 2 names of wharton students who are interested in internships this summer . thanks , donna - - - - - original message - - - - - from : chen , vincent [ mailto : chenvinc @ wharton . upenn . edu ] sent : sunday , february 04 , 2001 11 : 24 pm to : ' fap ' subject : re : call from enron donna , i had also passed along the resumes of two reliant energy tiger team members , david gershenson and james iker , who were both interested in working for enron this summer . i had spoken to vince about these candidates when we were in houston , and he said he would arrange internships for them as well . he should already have copies of their resumes and cover letters . please let me know if you have any questions or need clarification . thanks ! ! vincent - - - - - - - - end of unsent message",0 +"Subject: eol wti maket maker simulation model john , here is the spreadsheet zimin built for estimaing p / l from trading wti forwards . let zimin , vince , or i know if you have questions or comments . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 11 / 20 / 2000 11 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 11 / 17 / 2000 04 : 37 pm to : stinson gibner / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : eol wti maket maker simulation model stinson , i add the total p / l due to contract rollover . when the number of trades is large and the spread is not too small , the model prints a lot of money , dominated by those trade earning the half of bo spread . i also wrote an explaination about the model on the front page . i think we are ready to deliever the model v . 1 . zimin",0 +"Subject: 4 - urgent - owa please print this now . current notes user : reasons for using outlook web access ( owa ) 1 . once your mailbox has been migrated from notes to outlook , the outlook client will be configured on your computer . after migration of your mailbox , you will not be able to send or recieve mail via notes , and you will not be able to start using outlook until it is configured by the outlook migration team the morning after your mailbox is migrated . during this period , you can use outlook web access ( owa ) via your web browser ( internet explorer 5 . 0 ) to read and send mail . please note : your calendar entries , personal address book , journals , and to - do entries imported from notes will not be available until the outlook client is configured on your desktop . 2 . remote access to your mailbox . after your outlook client is configured , you can use outlook web access ( owa ) for remote access to your mailbox . please note : at this time , the owa client is only accessible while connecting to the enron network ( lan ) . there are future plans to make owa available from your home or when traveling abroad . how to access outlook web access ( owa ) launch internet explorer 5 . 0 , and in the address window type : http : / / nahou - msowaolp / exchange / john . doe substitute "" john . doe "" with your first and last name , then click enter . you will be prompted with a sign in box as shown below . type in "" corp / your user id "" for the user name and your nt password to logon to owa and click ok . you will now be able to view your mailbox . please note : there are some subtle differences in the functionality between the outlook and owa clients . you will not be able to do many of the things in owa that you can do in outlook . below is a brief list of * some * of the functions not available via owa : features not available using owa : - tasks - journal - spell checker - offline use - printing templates - reminders - timed delivery - expiration - outlook rules - voting , message flags and message recall - sharing contacts with others - task delegation - direct resource booking - personal distribution lists questions or concerns ? if you have questions or concerns using the owa client , please contact the outlook 2000 question and answer mailbox at : outlook . 2000 @ enron . com otherwise , you may contact the resolution center at : 713 - 853 - 1411 thank you , outlook 2000 migration team",0 +"Subject: conference call on friday , march 17 th hello nick : i agree e - mail is much easier . there is a two - hour time difference between calif and texas , i . e . , 1 : 00 pm texas time - 11 : 00 am calif time . would tomorrow at 11 : 00 am calif time be ok with you ( 1 : 00 pm texas ) ? this time is fine for vince , tom gros and stinson gibner . can they call you and if so , what number ? please let me know . thanks ! shirley 713 - 853 - 5290 nick bambos on 03 / 16 / 2000 12 : 28 : 58 pm to : shirley . crenshaw @ enron . com cc : bambos @ stanford . stanford . edu subject : re : visit to enron shirley , it ' s easier to communcate by e - mail , since i am moving from meeting to meeting ( but i have the laptop always with me ) . please give me a phone number that i could call tomorrow . what is the time difference between california and your location ? i think it ' s 2 hours ( ca - > tx ) - is that right ? i can do the conference call any time from 9 - 11 ca time . would that be ok on your side ? thanks , nick vince . j . kaminski @ enron . com wrote : > > nick , > > we can close the loop on our commitment to support the research projects > before your visit to enron . > > my assistant , shirley crenshaw , will call you to set up a conference call > with me , stinson gibner , > and tom gros from enron broadband services to discuss all the isssues . > friday this week would work for > both tom and me . i think we need about 15 minutes . > > vince > > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525 > ( office ) . > > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm > > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu > cc : > subject : visit to enron > > hello vince , > > it was nice seeing you at stanford and many thanks for the lunch > we had together . i really enjoyed our discussions , both at the > technical level and otherwise . > > i promised to send you an e - mail regarding possible dates for > a visit to enron . i delayed it for a week till my schedule was > clearer . let ' s see if we can get a match with your schedule - > mine is rather terrible : > > friday , 21 st of april looks good . but april 23 rd is easter > sunday , so that may make it difficult for some people at enron > to be around . let me know if that is the case . i am willing to > visit then , because the week after that i am scheduled to be in > japan and in the previous weeks i am all committed on fridays . > > friday , 19 th of may is the next possibility , but this probably > is too far out . the main problem is that i am operating within > a window of opportunity for attracting top students for this > research . this window closes by the end of april , and it would be > important for the student support funds to be in place then , so > that i can make hard commitments to students and attract top > talent . i am already reviewing files of students who have > approached me for phd advising , and i am in a mode of doing "" soft > commitments to star - level students "" to get this research and its > potential on their radar screen . top students are highly sought > after by advisors and i want to be an early player in this > competition . > > does my visit to enron have to happen before we can set up the > project and student support at stanford ? if so , doing it before the > end of april is important for getting top people . if the visit can > happen after we get the ball rolling , then we can schedule it in may . > i assume there will be multiple visits both ways when the project gets > going . please let me know what you think . > > best regards , > > nick",0 +"Subject: fw : research allocations to egm vince : can you tell me where to get this info ? - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 25 / 2001 03 : 53 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : becky pham / enron @ enronxgate on 04 / 25 / 2001 10 : 58 am to : shirley crenshaw / hou / ect @ ect cc : diane fellers / enron @ enronxgate subject : fw : research allocations to egm back in november of last year , you have indicated that 40 % of the 17 . 5 % ( 40 % of 17 . 5 is 7 % ) that we are allocating to egm should be billed to gary hickson ' s group . gary is asking for further broken down of this 40 % to his world . can you check with vince to see what portion of the 7 % should be charged to equity trading , rate & currency trading , agricultural trading & origination and convertible trading ? and can i get this information back by the end of this week because we are going to start closing on friday . if you have any questions , call me . thanx . - - - - - original message - - - - - from : khoja , sayed sent : wednesday , april 25 , 2001 10 : 17 am to : pham , becky subject : research allocations to egm becky , i have attached your original emails below . can you provide further break out of the 40 % allocation to gary hickerson . gary is responsible for financial trading which includes : ? equity trading ? rate & currency trading ? agricultural trading & origination ? convertible trading thanks for your help . sayed to : sayed khoja / na / enron @ enron cc : subject : re : research allocation - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 02 / 2000 03 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - to : becky pham / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : research allocation becky , i gave the % % for egm to shirley . i assume she communicated this info to you already . i assume egm includes f / x - i / r ( gary hickerson ) , weather , insurance ( jere overdyke ) , oil trading and coal . for calme i don ' t have any info . let ' s split the cost evenly . vince to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : research allocation shirley , grm is now with egm group . egm wants to verify that the 17 . 5 % we are going to allocate to grm is for the insurance , jere overdyke group . egm seems to think that their weather , mark tawney group , is receiving support from research . also , can we break out the support for calme ? calme is going to split into 3 bus and i am trying to determine who i need to bill for research supports . if you have any questions , call me . thanx . to : sayed khoja / na / enron @ enron cc : subject : re : research allocation - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 02 / 2000 02 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - to : becky pham / hou / ect @ ect cc : subject : re : research allocation becky : vince said to allocate it as follows : gary hickerson 40 % jeff shankman weather 20 % insurance 30 % oil 5 % coal 5 % hope this helps ! shirley to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : research allocation shirley , grm is now with egm group . egm wants to verify that the 17 . 5 % we are going to allocate to grm is for the insurance , jere overdyke group . egm seems to think that their weather , mark tawney group , is receiving support from research . also , can we break out the support for calme ? calme is going to split into 3 bus and i am trying to determine who i need to bill for research supports . if you have any questions , call me . thanx .",0 +"Subject: vince , i ' ve been out of the office the last few days . as we discussed friday , veronica and i hope you can join us , the stocks and the chaneys ( craig chaney is with enroncredit . com ) for dinner at 7 : 00 friday , april 27 th . directions from research and gosling : go west on research forest turn left the 2 nd time you cross alden bridge ( stop sign after kuykendall , shopping center on right with albertson ' s , exxon ) . go approximately 1 . 4 miles . will pass park and elementary school on left . take next left - noble bend . turn right on the 2 nd street - freestone place . we are # 30 freestone place - the next - to - last home on the right . phone # 281 - 362 - 7267 mike x 39990",0 +"Subject: eol project vince , just to update you on how things are going with regard to eol - i had a meeting with john arnold yesterday to show him what had been accomplished to date , and i think that he was fairly impressed by the information available . i asked him for his input , and he expressed his interest in having a couple of reports made up that couldn ' t be created from the format the data was in . i spoke to clayton about this , and he has already made changes that will reflect a number of the modifications john requested . i am also continuing to research the issue of an automated trading platform for eol . i have some information about how the nasdaq operates , and i have looked at some websites for ecns , such as archipelago , island and instinet . i have also had a look at the international securities exchange ( ise ) web - site , but they do not seem to explain much about their system . any further suggestions would be appreciated . i want to find out more about where eol is currently and what modifications may be necessary in the existing system , finish reading the material at the websites i have investigated , and then i will try to put together a presentation for you and / or greg whalley . tom",0 +"Subject: re : from george huan , ut austin mba thanks a lot ! george huan - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : xiaojun huan cc : vince . j . kaminski @ enron . com sent : 5 / 22 / 00 1 : 18 pm subject : re : from george huan , ut austin mba george , i have resent your resume to the risk management group . please , give them a few more days . vince xiaojun huan on 05 / 22 / 2000 01 : 08 : 07 pm to : "" ' vkamins @ enron . com ' "" cc : subject : from george huan , ut austin mba dear mr . kaminski : how are you doing ? i called you on may 11 th about my first rotational assignment . you recommended risk management and asked me to email you my resume . it seems like risk management group are not very interested in me , because i haven ' t received any feedback from them yet . do you think i should wait for a few days or call them ? i do appreciate your help , which will make a difference on my career path . sincerely xiaojun george huan mba 2000 , ut austin tel : ( 512 ) 477 - 8690 > ( see attached file : resume - george huan . doc ) >",0 +"Subject: re : confidential sophie , thanks . i shall discuss this with steve as soon as we have the nomination form signed . i can do it while he is stioll here at houston . vince sophie kingsley 09 / 05 / 2000 10 : 37 am to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect subject : re : confidential we need to get a nomination form signed by you & vince . once we have this you guys can discuss the figures with steve and once everything is agreed we will get the nomination form signed by sherriff and the agreement drawn up . i will get one up to you today / tomorrow . dale surbey 05 / 09 / 2000 15 : 33 to : vince j kaminski / hou / ect @ ect cc : sophie kingsley / lon / ect @ ect , michele small / lon / ect @ ect subject : re : confidential sophie - what do we need to do to implement this ? vince - do you want to go through this with steve while he ' s in houston ? - dale vince j kaminski 30 / 08 / 2000 23 : 43 to : sophie kingsley / lon / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect subject : re : confidential sophie , i think it ' s a fair deal . vince sophie kingsley 08 / 30 / 2000 11 : 49 am to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect subject : re : confidential both , thanks for your comments and comparisons , it is good to get context . based on your comments here would be my proposal o 63 , 500 basic salary - ol 5 k kickers for each of the 2 years - these are paid as a lump sum on each anniversary guaranteed . therefore guaranteed salary is effectively o 78 , 500 - this is completely separate and in addition to any performance bonus increase the value of options to o 60 k to vest 1 / 3 as before - which leaves a 1 / 3 ( $ 20 , 000 ) hanging out there at the end of the contract . just fyi - anjam is currently on o 68 , 000 but does not have an agreement , so this would effectively put a 10 . 5 k gap between the two . let me know your thoughts . dale surbey 30 / 08 / 2000 16 : 09 to : sophie kingsley / lon / ect @ ect cc : subject : re : confidential sophie , here ' s vince ' s comments on your proposal for steve . also , what ' s a 2 - yr exec ? how do the kickers work - are they basically a guaranteed minimum bonus or incremental bonus ? - dale - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 16 : 10 - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 30 / 08 / 2000 14 : 21 to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : confidential dale , thanks for your message . i don ' t know the labor market in london that well but here the market for quants is very hot . steve is in my view an exceptionally talented person and i would go an extra mile to retain him long - term for the company . i would adjust the base salary or the kicker upward a bit . o 62 , 000 basic is what anjam is receiving currently ( if i remember correctly ) . steve has a much higher value to enron than anjam . vince dale surbey 08 / 30 / 2000 07 : 49 am to : vince j kaminski / hou / ect @ ect cc : subject : confidential vince , this is the package hr is proposing for steven . what do you think ? - dale - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 13 : 50 - - - - - - - - - - - - - - - - - - - - - - - - - - - sophie kingsley 29 / 08 / 2000 20 : 32 to : dale surbey / lon / ect @ ect cc : subject : confidential sorry dale , long day , here are the proposed numbers 2 year exec o 62 , 000 basic ( currently o 55 k ) ol 0 k each year kickers $ 50 , 000 worth of options to vest 1 / 3 1 / 3 1 / 3 let me know what you think . regards sophie",0 +"Subject: re : new web address shannon , thanks for the message . see you soon in houston . your message serves as a useful reminder . i have to start work on my presentation . vince "" shannon burchett "" on 04 / 11 / 2000 02 : 35 : 29 pm please respond to "" shannon burchett "" to : vince j kaminski / hou / ect @ ect cc : subject : new web address email background - primary templete dfw addressgood morning vince , hope all is going great with you there . today we launched a new version of our web site . the permanent url is . . . www . risklimited . com my email address remains the same , sburchett @ risklimited . com hope to see you at one of the upcoming houston conferences . cheers , shannon risk limited corporation box 612666 dallas , texas 75261 usa tel : 972 . 245 . 8300 fax : 972 . 245 . 8318 www . risklimited . com - attl . htm",0 +"Subject: job posting i am teaching a class at rice and one of my very bright students sent her resume in response to this posting . do you know who posted this job ? vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" helen demianenko "" on 04 / 24 / 2001 02 : 11 : 05 pm please respond to to : cc : subject : job posting dear vince , thanks for talking to me this morning about the sr . risk analyst position . here is where you can find the job description for that position : also , i have cut and pasted it down below , just in case . i appreciate your assistance in this matter and will start working on my cover letter right away . i would also like to talk to somebody to get a better feel for the position ( is this really an mba level position and how much of the in - depth learning opportunities for the derivatives market does it entail ? ) sincerely , helen demianenko p . s . i have attached my resume ( one more time ) . sr risk analyst essential functions : primary accountability for managing the ets risk book structure and processes from a pipeline ( front office ) perspective . work within current nng and tw marketing organizations to effectively integrate risk books into daily marketing and structured product activities . provide feedback to management regarding overall and specific risk positions . provide support for consistent and accurate deals entry / reporting for stand alone risk management system . create ad - hoc reports to assist management in risk analysis . responsible for managing and providing enhancements to the capacity books : ? maintain functionality and provide leadership for new functionality from a users perspective . provide support and direction for integration of capacity books and revenue management project . support revenue management team essential requirements : ba / bs in finance or accounting ( mba preferred ) . minimum of two years financial instruments experience . excellent quantitative / analytic and systems skills . knowledge of commodity risk book concepts . understanding of physical natural gas market , interstate transportation and financial derivatives . ability to interface with structuring / marketing groups in order to define business requirements . ability to provide leadership for business and system processes . excellent communication skills with an ability to communicate across organization with varied skill sets and ideas . must be self - motivated with a high level of energy preferred skills : na . special characteristics : this job functions in a team - oriented , fast - paced environment with multiple concurrent assignments and constantly changing priorities . contact : responses will be accepted through may 3 , 2001 . respond to enron corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or e - mail : dea . crum @ enron . com as a . doc or . txt attachment . please include this requisition number . job id 0000108729 department risk management & reporti company enron transportation services enron transportation services location houston , tx type posting date 19 - apr - 01 - helen _ d _ resume . doc",0 +"Subject: enron storage analysis model audit professor darrel duffie 450 miramonte avenue palo alto , ca 94306 may 8 , 2000 dear professor duffie , i enclosed with this e - mail enron storage analysis model ( sam ) for your review . the attached files include : 1 ) a brief documentation of the model ( sam . doc ) , 2 ) c - code of the main routines , 3 ) excel spreadsheet interface , 4 ) sam _ audit . dll . dr . vince kaminski , dr . stinson gibner and myself have spent about one year in developing this model . with traders  , feedback incorporated , the model results are close to reality . although there are features to be included , we believe the model is ready for your review . we look forward to your comments and suggestions . please feel free to contact me should you need additional detail . sincerely , zimin lu director , enron research zlu @ enron . com 713 - 853 - 6388 enclosures",0 +"Subject: revised speaker contact details for power 2000 ? attached is the revised speaker contact details for the power 2000 conference in houston this upcoming may . please contact me with any questions you may have . ? ? regards , amy lamonsoff ? conference coordinator ? power 2000 ? ? - power 2000 speaker contact details . doc",0 +"Subject: invitees for grant ' s party vince : when do you want to try and have grant ' s party ? below is a list of people that he would like to invite . shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 09 / 2000 10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" grant masson "" on 10 / 09 / 2000 10 : 09 : 46 am to : shirley . crenshaw @ enron . com cc : vince . kaminski @ enron . com subject : invitees for grant ' s party shirley : vince suggested i send you a list of non - research folks whom i would like to invite to the going away party . ted murphy george hopley bernie aucoin edith cross vlady gorny naveen andrews debbie brackett . the above are the essentials . i also like to invite the following , but i recognize that vince may want to control costs , so i will leave it up to you and him to invite or not . bill bradford jim simpson ( structuring , works for bernie ) rudi zipter greg woulfe ( ebs trader , not a portland marketer ! ) scott tholan kevin golden rebecca ? ? ? ( works with vlady ) . i will also try to invite terry lohrenz unless instructed not to . give me a call at home if you have questions . regards , grant . get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com .",0 +"Subject: term project : this is the list of projects for the members of the "" quant "" team . if you are working on different project , please , ignore this message . please , develop in a spreadsheet solutions / examples for the following : 1 . black - scholes formula 2 . black ' s formula 3 . develop a spreadsheet to simulate price trajectory using : a . gbm b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 ) c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 ) 4 . schwartz single factor model ( formula 6 . 12 ) 5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8 vince",0 +"Subject: p . c . what do i need to do in order to get this p . c . early a . m . please let me know . thanks kevin moore very important - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 06 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 20 / 99 11 : 28 am to : lyn malina / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : p . c . we spoke about the p . c . for trisha tlapek . location eb 3132 b . co . # 0011 r . c . 100038 thanks kevin moore x 34710",0 +"Subject: contacting iris mack vince , iris mack finally returned my call . her message said she had been in california on a job interview and it looks like she may take the position . i will contact her to get the details and confirm if she is off the market . toni graham staffing consultant - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 07 / 06 / 2000 09 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : teresa bien 06 / 22 / 2000 01 : 51 pm to : toni graham / corp / enron @ enron cc : subject : re : re [ 10 ] : greetings from london ( to enron ) fyi . can you look in to this for him ? - - - - - - - - - - - - - - - - - - - - - - forwarded by teresa bien / corp / enron on 06 / 22 / 2000 01 : 49 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 06 / 16 / 2000 10 : 14 am to : teresa bien / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : re [ 10 ] : greetings from london ( to enron ) teresa , i would like to invite iris for an interview in houston . she works currently in london can you call her and ask when she is planning to visit the states . we could pay the airfare from a location in the states . i would hate to pay the lst class ticket from london to houston , though i would go for it , if necessary ( i don ' t want a candidate to think that we are that cheap ) . business class is a standard for business related , cross - atlantic flights . i would be more comfortable if you could negotiate this issue . thanks vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 16 / 2000 10 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 06 / 12 / 2000 03 : 51 pm to : iris . mack @ bnpparibas . com @ enron cc : vince j kaminski / hou / ect @ ect subject : re : re [ 10 ] : greetings from london ( to enron ) iris , at this point it ' s my group : research , i . e . quantitative modeling . please , let me know what your interests are and i shall try to line up other groups for the interview . vince iris . mack @ bnpparibas . com on 06 / 09 / 2000 02 : 33 : 50 am to : vince . j . kaminski @ enron . com cc : subject : re [ 10 ] : greetings from london ( to enron ) hi , i will be out of the country until wednesday afternoon - london time . maybe we can chat then . also , could you please tell me about the group ( s ) that are interested in speaking with me . thanks , iris internet from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 20 : 31 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 8 ] : greetings from london ( to enron ) iris , leaving for ca in a few minutes . i shall get back to you monday . vince iris . mack @ bnpparibas . com on 06 / 06 / 2000 10 : 36 : 46 am to : vince . j . kaminski @ enron . com cc : subject : re [ 8 ] : greetings from london ( to enron ) hi , thanks for your email . begining of july - what about july 4 th week ? could you give me a bit more info regarding the best days for you and your colleagues . thanks , iris internet from : vince . j . kaminski @ enron . com on 06 / 06 / 2000 14 : 29 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 6 ] : greetings from london ( to enron ) iris , the beginning of july would be better for us . please , let me know what is your availability . vince iris . mack @ bnpparibas . com on 06 / 06 / 2000 02 : 30 : 49 am to : vince . j . kaminski @ enron . com cc : subject : re [ 6 ] : greetings from london ( to enron ) hi , thank you for your email . how many days do we need ? i have checked my calendar . and think that i should be able to come on monday june 19 th ( tuesday june 20 th - if you need more than one day ) . . i can fly from london to houston during the following weekend to arrive in time for monday morning . let me know if these days are good for you and your colleagues . regards , iris internet from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 18 : 33 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : re [ 4 ] : greetings from london ( to enron ) iris , we can invite you for an interview to houston . what would be a the time for you ? vince iris . mack @ bnpparibas . com on 05 / 25 / 2000 11 : 32 : 04 am to : vince . j . kaminski @ enron . com cc : subject : re [ 4 ] : greetings from london ( to enron ) hi , thank you for your prompt response . i am interested in any contacts you may have in your rolodex . also , i would be opened to talk to enron as well . please let me know more details . kind regards , iris internet from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 16 : 19 gmt to : iris mack cc : vince . j . kaminski , stinson . gibner , grant . masson , pinnamaneni . krishnarao , vasant . shanbhogue bcc : subject : re : re [ 2 ] : greetings from london ( to enron ) iris , i shall go through my rolodex and try to find some good leads for you . i left investment banking 8 years ago and this field changes very fast . alternatively , would you be interested in a company like enron or another energy company in houston ? please , let me know . vince iris . mack @ bnpparibas . com on 05 / 25 / 2000 09 : 20 : 01 am to : vince . j . kaminski @ enron . com cc : subject : re [ 2 ] : greetings from london ( to enron ) hi , how are you ? thank you kindly for your email . sorry i have not responded sooner . currently i am working in derivatives structured products and risk management at bnp paribas in london . although i currently enjoy living and working in london , i may need to return to the states - because of my mother ' s failing health . do you know of any good contacts at investment banks that i may forward my details to ? for your information , i have attached my cv . ( please see attached file : iris marie mack . doc ) . thank you in advance for your time and consideration . kind regards , iris mack 44 ( 0 ) 20 7595 8665 ( work ) 44 ( 0 ) 20 7229 9986 ( home ) ( see attached file : iris marie mack . doc ) internet from : vince . j . kaminski @ enron . com on 04 / 04 / 2000 15 : 03 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : greetings from london ( to enron ) iris , please , feel free to give me a call when you have a few minutes . i shall be glad to chat with you . vince iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am to : vkamins @ enron . com cc : denis . autier @ paribas . com subject : greetings from london ( to enron ) dear dr . kaminski , how are you ? it was nice to meet you at the real options conference in nyc . i was intrigued by some of the comments in your conference talk . in particular , by your use of real options to hedge financial options . this is something i am interested in as well . when you have some time , could we chat about this topic in a bit more detail ? thanks for your time and consideration . hope to hear from you soon . regards , iris mack - - - - - - - - - - - - - - - - this message is confidential ; its contents do not constitute a commitment by bnp paribas group * except where provided for in a written agreement between you and bnp paribas group * . any unauthorised disclosure , use or dissemination , either whole or partial , is prohibited . if you are not the intended recipient of the message , please notify the sender immediately . * bnp paribas group is a trading name of bnp sa and paribas sa ce message est confidentiel ; son contenu ne represente en aucun cas un engagement de la part du groupe bnp paribas * sous reserve de tout accord conclu par ecrit entre vous et le groupe bnp paribas * . toute publication , utilisation ou diffusion , meme partielle , doit etre autorisee prealablement . si vous n ' etes pas destinataire de ce message , merci d ' en avertir immediatement l ' expediteur . * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas sa ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) ( see attached file : iris marie mack . doc ) - iris marie mack . doc",0 +"Subject: re : avistar training i will keep you informed ! - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 11 / 06 / 2000 02 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : paige cox @ enron on 11 / 06 / 2000 01 : 21 pm to : kevin g moore / hou / ect @ ect , ian richardson / corp / enron @ enron cc : phillip daigle / corp / enron @ enron , cedric belt / corp / enron @ enron , bwood @ avistar . com subject : re : avistar training hi kevin , brian wood with avistar is going to be here next tuesday ( 11 / 14 ) . i have asked him to schedule some time to meet with you and vince , and whomever else needs to be trained . i was not aware that you would be using the media server , so i didn ' t arrange to have him spend any time with you when he was here alst . i ' ll let you kow what time ( s ) he ' ll be available next tuesday . sorry for the delay ian - - please ensure that vince kaminski is set up to use the media server thanks ! paige kevin g moore @ ect 11 / 06 / 2000 12 : 43 pm to : ian richardson / corp / enron @ enron , cedric belt / corp / enron @ enron cc : paige cox / corp / enron @ enron subject : avistar training we are still waiting on avistar training / set up . please inform me on the situation . thanks kevin moore",0 +"Subject: re : confirm participation at real options conference at cambridge u . - urgent steve , are you interested in speaking at this conference ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 20 / 2000 08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lenos trigeorgis on 04 / 19 / 2000 05 : 32 : 27 pm to : "" vince j kaminski "" cc : subject : re : confirm participation at real options conference at cambridge u . - urgent vince can you please check with steve leppard and ask him to confirm , and send to me his position and title of his talk ( if different from yours ) ? thanks very much again lenos at 05 : 14 _ _ 04 / 19 / 00 - 0500 , you wrote : > > > lenos , > > my busy schedule does not allow me to attend . > > i would like , however , to recommend my colleague who works > in london , steve leppard . > he can make a very interesting and original presentation on real options . > please , let me know what you think . > > vince > > > > > > > lenos trigeorgis on 04 / 18 / 2000 09 : 29 : 18 pm > > to : lenos . trigeorgis @ rogroup . com > cc : ( bcc : vince j kaminski / hou / ect ) > subject : confirm participation at real options conference at cambridge > u . - urgent > > > > the attached file contains the tentative program for two back - to - back real > options conferences ( a professional one for july 5 - 6 , and the standard > annual academic one for july 7 - 8 ) at cambridge u . > > your name has been provisionally included on the program . please check all > the information relating to you and confirm your participation as listed > ( or advice us of desired changes immediately ) . > > thank you . > > lenos > > > > attachment converted : "" c : \ drive _ e \ eudora \ attach \ 4 thconfsessionsl 2 . doc "" > > > lenos trigeorgis > professor of finance > university of cyprus > dept of business > 75 kallipoleos , po box 20537 > cy 1678 nicosia cyprus > > tel : + 357 2 892261 > fax : 339063 > > > lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: garp presentation vince , would i be able to get a copy of your presentation last night at garp ? i have a coworker who was unable to attend . thanks , allen bryson conoco inc",0 +"Subject: iraq and crude output an interesting piece of information from the oil markets . iraq is trying to extract concessions from the us and threatens to shut down production as of oct 1 ( just in time for the us elections ) . the source of this info is phil verlaeger ( an oil analyst ) . he is very good but excessively concerned with iraqi machinations . he is the source of news ( reported by friedman of the new york times in his op - ed columns ) about massive iraqi trading in the oil futures markets . i personally discount this info : the volume and transparency of the oil markets would not support this type of huge scale operations by saddam ' s government . there may be some trading by iraqi officials on the side . vince",0 +"Subject: re : risk 2000 , 12 - 15 june , boston - speaker confirmation oliver , thanks a lot for your message . here is the information you requested : vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com vince "" oliver bennett "" on 03 / 21 / 2000 11 : 00 : 16 am please respond to "" oliver bennett "" to : "" zou , zhou "" , "" young , derek "" , "" walter gontarek "" , "" vince j kaminski "" , "" steven e shreve "" , "" stephen ross "" , "" staley , mark "" , "" selvaggio , robert "" , "" ross mayfield "" , "" ritchken , peter "" , "" prasad nanisetty "" , "" philipp schoenbucher "" , "" pesco , anthony "" , "" merrell hora "" , "" mark d ames "" , "" lirtzman , harris "" , "" leslie rahl "" , "" john mcevoy "" , "" john hull "" , "" joe pimbley "" , "" jeremy berkowitz "" , "" javaid , masood ( mlmam ) "" , "" ethan berman "" , "" browne , sid "" , "" bob maynard "" , "" amarger , regis "" , "" derman , emanuel "" , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , cc : subject : risk 2000 , 12 - 15 june , boston - speaker confirmation thank you for agreeing to speak at risk magazine ' s annual us congress , risk 2000 , taking place in boston between 12 - 15 june 2000 . ? could you please return this email with your full postal address and contact details so we can send you hard copies of the brochure , inform you of congress and hotel locations and let you know when we will need a copy of your presentation . if you are part of a panel discussion , myself or the panel moderator will contact you shortly . ? in the meantime the full brochure can be viewed and / or downloaded from the following web address - ? www . riskpublications . com / risk 2000 us ? if you have any further questions , please don ' t hesitate to contact me . ? best regards , ? oliver bennett senior conference producer ? ? direct : + 44 ( 0 ) 20 7484 9880 ? risk publications , 28 - 29 haymarket , london swly 4 rx fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk www . riskpublications . com",0 +"Subject: re : videoconferences w / enron melinda , thanks . vince melinda mccarty @ enron 01 / 24 / 2001 10 : 02 am to : vince j kaminski / hou / ect @ ect , christie patrick cc : shirley crenshaw / hou / ect @ ect subject : re : videoconferences w / enron i have reserved 32 c 2 video conference room - 3 : 30 - 5 : 30 for tomorrow ( thursday , january 25 ) let me know if you need anything else melinda x 31641 vince j kaminski @ ect 01 / 24 / 2001 09 : 37 am to : melinda mccarty / corp / enron @ enron cc : subject : videoconferences w / enron fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2001 09 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 01 / 23 / 2001 11 : 21 : 10 am to : clay degiacinto , deepa mallik , dennis feerick , edson otani , gustavo palazzi , "" heather n . thorne ( e - mail ) "" , jack rejtman , jaideep singh , jason cummins , joshua leventhal , kim whitsel , "" louis a thomas ( e - mail ) "" , murat camoglu , nick levitt , omar bassel , pat henahan , ram vittal , steve lessar , tulika bhalla , vincent chen cc : "" ' vkamins @ enron . com ' "" , "" ' christie . patrick @ enron . com ' "" , fap subject : videoconferences w / enron team and host : i have set up the following dates / times for videoconferences . unfortunately , 4 : 00 - 6 : 00 was not available , so i arranged for 4 : 30 - 6 : 30 pm on the following dates . i hope this does not cause anyone inconvenience , but i took time and space that was available . note : i did not schedule during interview week , finals week or spring break . 1 / 25 shdh 1203 2 / 1 shdh 1203 2 / 15 shdh 1203 3 / 1 shdh 215 3 / 22 shdh 215 3 / 29 shdh 215 any questions , please contact the fap office . donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: fwd : invitation to the 20 th annual rutgers conference paul , thank you for the invitation to speak at the eastern conferences on regulation and competition on may the 25 th . i shall be glad to attend and make an after dinner presentation . i hope to be able to attend the entire conference . sorry for a delay in responding to your message . i have been traveling extensively in the last few weeks . vince return - path : from : vkaminski @ aol . com full - name : vkaminski message - id : date : thu , 15 mar 2001 17 : 04 : 02 est subject : fwd : invitation to the 20 th annual rutgers conference to : vkaminski @ aol . com mime - version : 1 . 0 content - type : multipart / mixed ; boundary = "" part 2 _ 70 . 8 aeecl 9 . 27 e 29652 _ boundary "" x - mailer : aol 6 . 0 for windows us sub 10501 return - path : received : from rly - yho 3 . mx . aol . com ( rly - yho 3 . mail . aol . com [ 172 . 18 . 147 . 35 ] ) by air - yho 3 . mail . aol . com ( v 77 _ rl . 21 ) with esmtp ; fri , 09 mar 2001 18 : 01 : 27 - 0500 received : from postmaster . enron . com ( outbound 5 . enron . com [ 192 . 152 . 140 . 9 ] ) by rly - yho 3 . mx . aol . com ( v 77 _ rl . 21 ) with esmtp ; fri , 09 mar 2001 18 : 01 : 01 - 0500 received : from mailman . enron . com ( mailman . enron . com [ 192 . 168 . 189 . 66 ] ) by postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id xaao 2258 for ; fri , 9 mar 2001 23 : 00 : 59 gmt from : vince . j . kaminski @ enron . com received : from nahou - msmswo 3 px . corp . enron . com ( [ 172 . 28 . 10 . 39 ] ) by mailman . enron . com ( 8 . 10 . 1 / 8 . 10 . 1 / corp - 1 . 05 ) with esmtp id f 29 noxp 22494 for ; fri , 9 mar 2001 17 : 00 : 59 - 0600 ( cst ) received : from ene - mtaol . enron . com ( unverified ) by nahou - msmswo 3 px . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp id for ; fri , 9 mar 2001 17 : 01 : 07 - 0600 subject : invitation to the 20 th annual rutgers conference to : vkaminski @ aol . com date : fri , 9 mar 2001 17 : 00 : 58 - 0600 message - id : x - mimetrack : serialize by router on ene - mtaol / enron ( release 5 . 0 . 6 | december 14 , 2000 ) at 03 / 09 / 2001 04 : 58 : 03 pm mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii x - mailer : unknown ( no version ) - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 09 / 2001 05 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" kleindorfer , paul "" on 03 / 08 / 2001 03 : 41 : 21 pm to : "" ' vkamins @ enron . com ' "" cc : "" ' mcrew @ andromeda . rutgers . edu ' "" subject : invitation to the 20 th annual rutgers conference vince : for two decades now , i have been a member of the faculty helping to organize the eastern conferences on regulation and competition that michael crew of rutgers has chaired . this year will be , in fact , the 20 th anniversary conference and a number of notable personages will be joining us to celebrate what we have learned and what we haven ' t about the economics of network industries . fred kahn , al philipps , bill hogan and a number of other distinguished academics will be reviewing our progress and the prospects for the future . the conference will take place at a beautiful site in the poconos , about 90 minutes north of philadelphia , from wednesday afternoon may 24 th to friday afternoon may 26 th . you can check for yourself the nature of the program and the conference site / hotel at the following website url : http : / / www . rci . rutgers . edu / ~ crri / ws . htm michael crew and i would both be delighted if you would be willing to be an after dinner speaker on thursday evening ( may 25 th ) , just before the key research reviews of friday morning take place on the electricity , telephone and gas industries , and following a day of special topics on emerging power markets and other developments in network industries . naturally we would be pleased if you would be able to stay for the entire conference , but knowing your schedule , you may only have time for a part of it . that would not be a problem . the usual after - dinner address is for 30 minutes , followed by a short q & a period . your presentation would help to underline the tremendous importance of enron in driving the development of new risk instruments to assist in price discovery and efficient risk management for market participants , in energy markets and more generally . both michael and i feel that your perspectives on the "" new science of risk management "" and what can be expected from it could be a very important addition to this special anniversay event . please let me know ( and please do copy michael on your response ) whether your schedule will allow your participation in this very special event . michael and i would , of course , be very happy to follow up with you in discussing the nature of the presentation , participants and so forth , if this is a go . i look forward to hearing from you . regards , paul paul kleindorfer 215 898 - 5830",0 +"Subject: message 1 dear dr . kaminski this is quentin kerr from australia , i just came back from the sydney ' s conference . glen dixon has told me that you are interested in my work . it is always my honor to work with you . i am currently a phd student at the mathsmatics department of the university of queensland ( aiming to finish my thesis at the end of this year ) . my research interest is financial mathematics , in particular , energy market modeling and derivatives pricing . now i send you copies of my first paper ( submitted to the applied mathematical finance ) and my talk ( the full version of the academic paper will be available in 2 weeks ) . any comment will be appreciated . ps : attached with the talk at the conference . best regard quentin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 622 tel : ( 07 ) 33461428 department of mathematics , the university of queensland - conl . ppt",0 +"Subject: re : d dhar , amitava cc : chaney , craig ; mumford , mike ; kirkpatrick , eric ; brent , richard ; parsons , ben ; albanis , george subject : re : d & b contact names iris / amitava , i may have already said this , but we ' ve had so many e - mails and telephone calls flying back and forth that i wanted to make sure i at least got this much out to you . clearly , i would like you to set up the meeting with the riskcalc gurus to dig deeper into their methodology ( as much as they ' ll tell ) and the impact of missing variables and any other idiosyncracies the model may have . also try to get a better feel for how well they think the model extends to other countries . i know from a previous conversation with lea carty and reading about the model that it was calibrated off north american names but they suspect it might extend to other countries . conversely , i know they are working efforts within moody ' s risk management services to develop private ( and probably public ) firm models specific to regions . one they mentioned was australia and also within western europe . data , as always , was the issue . see if the quants have any perspective on their success / plan in that area . lastly , we truly appreciate the aggressive efforts you both have made toward pushing off this private model initiative and i ' m very confident we ' ll be able to nail a firm plan down upon receipt of either d & b and / or experian data . cheers , scott - - - - - - - - - - - - - - - - - - - - - - forwarded by scott salmon / eu / enron on 19 / 04 / 2001 20 : 51 - - - - - - - - - - - - - - - - - - - - - - - - - - - mike mumford @ ect 19 / 04 / 2001 17 : 55 to : scott salmon / eu / enron @ enron cc : subject : re : d & b contact names - - - - - - - - - - - - - - - - - - - - - - forwarded by mike mumford / lon / ect on 19 / 04 / 2001 17 : 59 - - - - - - - - - - - - - - - - - - - - - - - - - - - from : iris mack / enron @ enronxgate on 19 / 04 / 2001 09 : 23 cdt to : mike mumford / lon / ect @ ect cc : amitava dhar / corp / enron @ enron subject : re : d & b contact names hi , two riskcalc sales people made a presentation this week about their product . they stated that they could set up a meeting with their quants and our people to discuss the model input and what happens if we have less than 17 inputs . regards , iris - - - - - original message - - - - - from : mumford , mike sent : thursday , april 19 , 2001 1 : 37 am to : mack , iris subject : re : d & b contact names ooops . . . part ii . i just threw out 12 as a number for something we might develop . . . it ' s really not based on anything . we know 17 will work for pre - packaged programs . we also know there will be a great number of names with less than the full 17 . . . i assume we would pursue another model ( internal or external ) to provide probably less accurate numbers but at least available for names with fewer inputs . mike from : iris mack / enron @ enronxgate on 18 / 04 / 2001 15 : 02 cdt to : mike mumford / lon / ect @ ect cc : amitava dhar / corp / enron @ enron , scott salmon / eu / enron @ enron , eric kirkpatrick / eu / enron @ enron subject : re : d salmon , scott ; kirkpatrick , eric subject : re : d & b contact names iris , thanks . after our meeting we stuck around to discuss things a little further . specifically with respect to global counterparty names . . . we have duns cross - references on about 70 of active names ( 13 k out of 18 . 5 k ) . we could greatly accellerate purchase of some useful data by buying blind all major data associated with these specific duns numbers . pro - data gets in on names we know we want to review asap , but without resolution on which specific fields are most useful . we also get to test for completeness of data ( how many have all 17 fields . . . how many have only 12 of which fields , etc . ) . con - costs could be significantly higher . . . buying info we don ' t know we need ( converse of buying only the 17 fields doesn ' t seem best answer ) . we would end up buying additional info later . . . overhead costs and piecemeal buying will increase costs . it development time would be greatly increased . . . multiple file formats . . . developing to unknown maximum size , etc . . . . redoing when more data is purchased . any thoughts . mike",0 +"Subject: re : dr . bernard loyd at mckinsey ( agriculture ) hi , thanks for the document on your practice . i forwarded it to the relevant parties . they will take a look at it and get back to me when they wish to take the next steps with you and your colleagues at mckinsey . regards , iris - - - - - original message - - - - - from : @ enron sent : wednesday , march 07 , 2001 11 : 28 am to : mack , iris subject : re : dr . bernard loyd at mckinsey ( agriculture ) below is some material on the practice . b to : bernard _ loyd @ mckinsey . com 03 / 07 / 2001 cc : 10 : 21 am subject : re : dr . bernard loyd at mckinsey ( agriculture ) hi , thanks for your prompt response . my colleagues would indeed like to chat with you about the agriculture industry some time in the future . can we touch bases in a few weeks . in the mean time , do you have any materials you can forward to us about mckinsey ' s agriculture group ? thanks , iris - - - - - original message - - - - - from : @ enron sent : wednesday , march 07 , 2001 2 : 17 am to : mack , iris subject : re : iris mack at enron hey iris , great to hear from you and welcome back stateside ! i would be delighted to meet with you and your colleagues . bernard margot tyler 03 / 06 / 2001 to : bernard 02 : 41 pm loyd / chi / northamerica / mckinsey cc : subject : re : iris mack at enron - - - - - forwarded by margot tyler / chi / northamerica / mckinsey on 03 / 06 / 2001 02 : 41 pm - - - - - to : margot _ tyler @ mckinsey . com 03 / 06 / 2001 cc : 02 : 27 pm subject : re : message for bernard hi again , i had lunch today with some of the guys in my group who work on agriculture - related deals and on weather derivatives . i mentioned to them about bernard ' s working at mckinsey and specializing in the agriculture area . we thought it might be worthwhile if we all had a chat and / or met to discuss possible collaborative efforts . will you please forward this email on to bernard to see if this might be of interest to him ? thanks , iris | this message may contain confidential and / or privileged | | information . if you are not the addressee or authorized to | | receive this for the addressee , you must not use , copy , | | disclose or take any action based on this message or any | | information herein . if you have received this message in | | error , please advise the sender immediately by reply e - mail | | and delete this message . thank you for your cooperation . | | this message may contain confidential and / or privileged | | information . if you are not the addressee or authorized to | | receive this for the addressee , you must not use , copy , | | disclose or take any action based on this message or any | | information herein . if you have received this message in | | error , please advise the sender immediately by reply e - mail | | and delete this message . thank you for your cooperation . | - afc qual pack . zip >",0 +"Subject: re : gwen koepke anne , thanks for contacting me about this . as a matter of fact , i wanted to talk to you about it today as this matter was outstanding for a long time . i think we should go ahead and adjust gwen to manager , effective march 1 . the compensation would be her current base plus 10 k . this is what we typically do when we promote an associate to a manager . such promotions take place in march and i think gwen should not be penalized for the inefficiency of her management ( i . e . my and maureen ' s procrastination ) . on unrelated and more serious matter . gary hickerson is the primary client for maureen ' s services . he communicated to me a few weeks ago that he is unwilling to underwrite maureen ' s position ( he is in general unhappy with her contribution ) . this means that maureen will have to find another sponsor or leave enron . given her abrasive and aggressive personality finding another internal customer will be quite a challenge . gary volunteered to pay a very generous severance to maureen from his budget . i would like to talk to you about it when you have a few minutes . vince from : anne labbe / enron @ enronxgate on 05 / 02 / 2001 10 : 34 am to : vince j kaminski / hou / ect @ ect cc : subject : gwen koepke vince , just wanted to touch base with you . i have tried to contact maureen so that gwen ' s title and salary can be adjusted to manager just as you requested , but have not heard any response from her . would you like for me to wait until i hear from maureen or should i go ahead and proceed in changing her title ? i just want to make sure that gwen is in the right peer group during prc . also , i am going to try and set up a meeting with you next week through shirley to discuss any buring issues that you are experiencing , and your expectations during prc . thanks , anne",0 +"Subject: grep for windows . folks , those of you who have used unix are probably familiar with the grep command . it ' s used to extract lines from a set of files that contain a given input string , and is very useful . ( if you have any questions on how to invoke it , ask me . ) the grep command is now available in a pc version - - see below . joe - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 12 / 01 / 2000 10 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - carlos uribe @ enron 12 / 01 / 2000 11 : 23 am to : todd kimberlain / na / enron , joseph hrgovcic / hou / ect cc : malcolm wells / na / enron , michael barber / hou / ect subject : grep for windows . todd and joseph , as discussed earlier , i did recall reading somewhere that grep had been ported to windows . i did some research and was able to find the windows ported version of grep . attached you will find a compressed file that contains the grep binary and source . please let me know if i can be of any further assistance . thanks . - carlos",0 +"Subject: re : approval is overdue : access request for paul . d . thomas @ enron . com agree , especially if the guy doesn ' t even want it anymore ! for background , this directory id one i set up for dave ryan and todd decook to deposit there forecast data and exchange with mine - - - mike",0 +"Subject: resume of mark giancola richard : i am vince kaminski ' s assistant , and vince received an email from you yesterday concerning employment for mark giancola . he forwarded the email to maureen raymond , sr . economist with the research group . she is currently looking for an associate economist and would very much like to interview mark . can you let us know the best way to approach this ? can you contact him or should i send him an email asking him to give us some dates he might be available for an interview . your quick response will be appreciated . thanks richard ! shirley crenshaw 3 - 5290",0 +"Subject: the neural network site www . pfr . com / ptonline ? and username : june ? with password : ? ? trend : change",0 +"Subject: summer intern : paulo oliveira vince : here is the information that i have on paulo . he would be slated to work for the summer with april hodgeson and matt harris on how streaming media products may add value to advertising or some related area . actually , he would also be a good fit for helping to think ways to analyze our enron on - line data . i have asked if he can send a resume . in the mean time , most of his relevant information is attached below . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 17 / 2000 11 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - paulo rocha e oliveira on 02 / 10 / 2000 12 : 04 : 56 pm to : "" stinson gibner "" cc : subject : re : trip to houston stinson , thank you for your e - mail . my phone number is ( 617 ) 492 - 9551 . i graduated from princeton university in 1996 ( mathematics ) , and came straight to mit for a ph . d . in operations management at the sloan schoolof management . in my first three years i took all the required coursework in mathematics , optimization , stochastic processes , etc . , as well as a number of courses in psychology ( at mit and harvard ) . i am working with prof . gabriel bitran , and i am interested in the mathematical modeling of service operations . in particular , i am interested in the interaction between customers and companies ( hence the interest in psychology ) . the ( tentative ) title of my phd thesis is "" pricing substitute products on the internet "" , and i am sending you the summary which i sent to tom gros a few weeks ago that will give you an idea of what this research is about . thanks again , and i ' m looking forward to meeting you and your research group next week . paulo pricing substitute products on the internet objective : to develop new tools to decide pricing policies for goods and services sold on the internet . motivation : this research is motivated by the fact that traditional choice and optimization models are not appropriate for internet - related businesses . the technological innovations associated with the internet brought about an overload of information which inevitably affects the ways in which consumers make choices . furthermore , companies have a great deal of influence on how much information consumers can have access to . the problem of pricing substitute products is an important strategic issue faced by internet companies . consumers usually search for generic products ( e . g . vcrs or computers ) without knowing exactly what they will buy . companies can show different products and different prices to each consumer . this type of flexibility was not available until the internet came about . the problem of pricing substitute products is not unique to the internet . the methodology developed by this research should be transferable to a number of other settings , such as pricing services . services are unique , and there are many cases where customers will only buy one of many services offered by a given company . our model will help companies decide which services to offer to which customers and how much to charge for these services . research strategy : our research strategy is to divide the pricing problem into two components which can be combined to generate optimal pricing strategies . these components are choice models and optimization models . choice models : choice models describe how customers make choices . the management literature draws on two main sources for these models : psychology and economics . the common approach in psychology models is to use what are called heuristic elimination methods . these methods consist of the elimination of options based on the sequential elimination of features until only one choice remains . these methods tend to be very context - specific and do not lend themselves very easily to mathematical analysis . economists focus on utility - maximing models that are significantly more mathematically tractable than psychological models . the most common economic model of choice is the logit model . the problem with these types of models is that they are not very accurate reflections of how consumer make choices on the internet . the first step in our research will be to develop choice models that capture the interactions going on between customers and companies on the internet . optimization : traditionally , the optimization problem consists of maximizing revenue over a certain planning horizon . on the internet , the problem of maximizing revenue still exists , but there is also a need to learn about customers . short term profit is based on sales , but long term profit is based on how well you know your customers and are able to retain them . the optimization problem must therefore include a short term component ( sales ) and a long term component ( learning ) .",0 +"Subject: re : book for lacima course attendees julie , thanks . also , as a follow up : did you receive the check from paul quilkey ? vince "" julie "" on 01 / 14 / 2001 02 : 15 : 57 pm please respond to "" julie "" to : cc : subject : book for lacima course attendees just wanted to let you know that the energy derivatives : ? pricing and risk management book , by clewlow and strickland and sponsored by enron corp . , ? is completed . ? we will begin shipping 15 january , which will include distributing ? your complimentary copy . ? thank you for your patience and support . ? sincerely , julie ? lacima group ? ?",0 +"Subject: 1 - urgent - outlook email notification ( new ) outlook email notification your date of migration is : may 7 th you will be unable to send e - mail unless you take the following action : please go through your notes email and clean out as many old / un - needed email items as possible before your date of migration . after you are migrated to outlook you will only be allocated 100 mb of total mailbox space . if more than this amount of data is migrated to outlook you will not be able to send e - mail until it is below the 100 mb limit . cleaning up your notes email now will prevent this from happening to you . enron ' s messaging platform is migrating from lotus notes to microsoft outlook 2000 worldwide . you will be accessing outlook for all of your email functions . why is enron migrating to outlook 2000 ? many factors contributed to the decision to migrate from lotus notes to microsoft exchange / outlook . the most prominent factors were : ? significant advantages to moving to a product that is more integrated with current enron apps ( windows 2000 , office and internet explorer ) ? more efficient shared pc and roaming user features ? improved support and integration for palm / ce devices ? instant messaging capabilities what is being migrated to outlook 2000 ? ? email messages . from the date of your scheduled migration , the last ( 30 ) thirty days of your email will be converted for use in outlook . ? all your folders in notes you use to store email messages in . ? to do items ? journal items ? calendar entries dating from ( 1 ) one year in the past to ( 10 ) ten years in the future will be converted . ? address books , but not your distribution lists that you created . you will need to re - create these in outlook . thank you , outlook 2000 migration team",0 +"Subject: re : clayton vernon thanks for the e - mail . please let me know if clayton does not honor his commitment to complete his current project . i am giving clayton an opportunity ( next 6 months ) to prove he can add value to our operation creating state of the art decision support tools . if he fails , i will take the necessary steps . thank you .",0 +"Subject: my new info dear friends and colleagues , i have switched again my employment status between self - employment and employment by joining the txu energy trading on the capacity of their managing director of risk management operations . will commute home on weekends , but otherwise , will be stationed in dallas . the new email address is mjermakl @ txu . edu , and the phone number is ( 214 ) 875 - 9603 . regards , martin jermakyan www . txu . com - winmail . dat",0 +"Subject: re : test shirley , please , remind me about making arrangements for this trip later this week . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2000 09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" piazze , thomas "" on 04 / 05 / 2000 02 : 47 : 10 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : test vince : my schedule indicates that should be a good day to be on campus , so let ' s plan for it . please forward to me those brief topic write - ups you promised so that i can schedule appropriate faculty to meet with you . thanks . tom > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : wednesday , april 05 , 2000 11 : 08 am > to : piazzet @ wharton . upenn . edu > cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com > subject : re : test > > > tom , > > the conference in new york is held on may 18 and may 19 . i can visit > wharton > the day before . > > vince kaminski > > > > > "" piazze , thomas "" on 04 / 05 / 2000 08 : 40 : 55 am > > to : "" ' vince j kaminski ' "" > cc : > subject : re : test > > > vince : i enjoyed talking with you yesterday and look forward to receiving > information relative to your visit to campus . > > tom piazze > > > - - - - - original message - - - - - > > from : vince j kaminski [ smtp : vince . j . kaminski @ enron . com ] > > sent : tuesday , april 04 , 2000 4 : 52 pm > > to : piazzet @ wharton . upenn . edu > > subject : test > > > > > > > > test > > > > >",0 +"Subject: energy operations promotions i am pleased to announce the following promotions effective february 1 within ena energy operations . these individuals have been promoted in recognition of their outstanding performance and their contributions to the continuing success of enron north america . please join me in congratulating these employees on their promotions . promotions to senior director kristin albrecht serves as business controller for ena  , s power business . along with leslie reeves , kristin ensures that power transactions are handled accurately and smoothly from beginning to end . kristin  , s primary focus is on risk controls and daily reporting of positions and p & l for east power trading , west power trading and genco operations . brenda herod serves as business controller for ena  , s assets business , working with the gas assets group and the texas trading desk . her responsibilities include global contracts and facilities , risk management , confirmations , gas scheduling , volume management , settlements and regulatory compliance for houston pipeline , lrc and enron midstream services . leslie reeves is a business controller for ena  , s power business , working closely with kristin albrecht in managing mid and back office support for the east , west and genco power trading groups . her primary responsibilities are documentation and settlements , with a focus on contract administration , cash forecasting and cash management . mary solmonson leads ena  , s global database management group , collecting and validating information on our customers , contracts , pipelines and facilities , as well as published prices . these activities support overall energy operations responsibilities from risk to logistics to settlement . in addition , mary has been instrumental in the promotion and implementation of the global systems across enron to provide control , consistency , and common data throughout the organization . promotions to director scott pleus serves as business controller for enron  , s emerging products . these businesses include bandwidth , pulp and paper , and weather . his primary responsibilities include day - to - day functions of risk management , confirmations , pulp and paper scheduling , and settlements as well as long term system development . sheri thomas led ena  , s natural gas off - system settlements function throughout 1999 . her responsibilities included cash forecasting , collections , and accountability for receivables and payables for ena  , s gas business in the east , west and central regions of the us . sheri accepted a new assignment in january 2000 and is now managing the enron online operations . promotions to manager bennett kaufman manages the risk management administration function for the equity trading and debt trading groups . he has also had experience in supporting the options book for natural gas derivatives trading . prior to joining enron in early 1998 , bennett worked in trading operations for investment banking firms in new york . richard mckeel is the systems integration analyst within global database management , overseeing the change management process and new software development needed to interface the global applications with strategic systems  ) sitara , unify , enpower , solarc , sap , and enrononline . other promotions specialist to senior specialist : analyst to specialist : sylvia campos  ) deal compliance contract records tara eslick  ) financial trading risk management kam keiser  ) gas risk management - central desk victoria versen  ) gas logistics - east desk phillip love  ) risk controls operational analysis jeff coats  ) gas risk management - central desk monica lande  ) west power risk management ( portland ) senior clerk to staff : trang le  ) strategic operations  ) project unify john postlewaite  ) east power risk management anthony campos  ) deal compliance contract records diane seib  ) documentation ( calgary ) kori loibl  ) gas risk management - financial books donnie vinson  ) west power risk management ( portland ) imelda frayre  ) strategic operations - project sitara clerk to senior clerk : staff to specialist : leslie smith  ) information & records management amy degeyter  ) power documentation melinda whalen  ) documentation ( calgary ) michael nguyen  ) emerging products risk management sherlyn schumack  ) logistics volume management karie hastings  ) strategic operations - project sitara in addition , peggy hedstrom and brent price were promoted to vice president , as announced in the memo issued by enron corp . office of the chairman . peggy leads energy operations for enron canada , with responsibility for risk management , documentation and gas logistics . peggy also serves as a key interface with canadian pipelines as a member of several industry committees . brent is the senior business controller for gas trading operations in the u . s . his responsibilities include risk management , confirmations , volume management and settlements for the east , west and central regions . he also provides operational expertise in the due diligence phase of the evaluations of joint ventures and acquisitions .",0 +"Subject: list of teams and projects vince , here is the list of teams and projects . there are still a couple of people who have not found their teams yet . i will try to put them in one of the existing teams . jason teaml : project metalgesselschaft ( mg ) lynn nazareth javier lamas shauywn smith carlos wheelock team 2 : energy related futures contracts john ganguzza neeraj hingorani grant johnson duane maue rishad patel eric van stone paulo yoshiura team 3 : standard option contracts yue guo fang li nan li tracy pan wei wu jeff planck team 4 : standard options contract felix feng lu ning zhang rakhi israni sanjay wankhade winni so orlando taylor team 5 : power pool analysis elena chilkina rob gaudette joe helms ken jett todd litton marc westmoreland",0 +"Subject: summer internship hello charlene , i am forwarding you a resume of a student from berkeley . we would like very much to have him as a summer intern with my group . please , let me know if your program can accommodate him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 15 / 2000 07 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - ezequiel luis on 11 / 13 / 2000 04 : 23 : 23 pm to : vkamins @ enron . com cc : subject : summer internship dear mr . kaminski i am currently pursuing the m . s . in ieor at uc berkeley . i attended the speech you gave some weeks ago . i am interested in summer internship positions available in enron . you will find enclosed my resume . sincerely , ezequiel luis este mensaje fue enviado desde http : / / commcenter . infosel . com internet gratis http : / / www . terra . com . mx / terralibre - resume elm . doc",0 +"Subject: congestion pricing & forecasting program i would like to go to this conference / tutorial on congestion modeling and management . is that ok , or would you prefer somebody else to go ? thanks , vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 19 / 2001 05 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - infocast on 01 / 19 / 2001 03 : 58 : 13 pm to : vasant . shanbhogue @ enron . com cc : subject : congestion pricing & forecasting program as an infocast preferred customer , we would like to invite you to attend our highly acclaimed program , congestion pricing & forecasting , scheduled for february 21 - 23 , 2001 in washington dc at a very special discount ! attend this program for only $ 895 . 00 and the pre - conference workshop , congestion pricing tutorial : from lmp to flow - based for only $ 520 . 00 . this is a 25 % savings off the standard tuition ! however , this special offer is only good through friday , january 26 , 2001 and seats are rapidly filling ! attached you will find a copy of this timely and informative infocast program , or you can visit our website at www . infocastinc . com . congestion pricing & forecasting has been designed to provide you with a clear understanding of how to predict the impacts of congestion and what mechanisms can be used to control these impacts . experts will discuss : ? the most advanced techniques for forecasting transmission congestion , locational prices and ftr prices ? the latest approaches to the "" seams "" issues ? the pros and cons of implementing a flow - based congestion management system don ' t miss this excellent opportunity . but remember , this offer is only good until january 26 , 2001 so please phone me at ( 818 ) 888 - 4444 ext . 20 or email me at mail @ infocastinc . com and mention this letter to be registered at this exceptional price . you can also fax or mail me your completed registration form along with this letter . best regards , hiedy vitug preferred customer representative infocast ( 818 ) 888 - 4444 ext . 20 fax ( 818 ) 888 - 4440 email : mail @ infocastinc . com enclosure if you do not wish to receive e - mail notification of infocast conferences , click on the text below and send mailto : mail @ . com ? subject = delete from mailing list - congest . pdf",0 +"Subject: approval for restricted websit : web _ research _ pub per kevin moore , please approve elena chilkina ' s access for the following restricted website : web _ research _ pub . thank you , information risk management ( et ) - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 05 / 02 / 2000 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system directory line item pending access processing directory name : website : web _ research _ pub service type : grant expiration date : comments : will send to vince kaminski for approval . security processing processing status : e - mail message : comments / justification : general information request : kgme - 4 jtf 4 c requested by : kevin g moore / hou / ect phone : 713 / 853 - 4710 requested for : elena chilkina / hou / ect employee type : company : 100038 rc # : 0011 priority : high comments / justification : she will need the same as michael sergeev . a few has been listed there may be some others that are not listed . please apply . editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 1 information risk management 05 / 02 / 2000 09 : 03 : 15 am",0 +"Subject: draft agenda for meeting between icf consulting and enron corp - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 01 / 27 / 2000 12 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" gabriel , steven vaol "" on 01 / 10 / 2000 02 : 25 : 00 pm to : pinnamaneni krishnarao / hou / ect @ ect , "" vikas , shree vaol "" , "" balakrishnan , s . tx 99 "" cc : subject : draft agenda for meeting between icf consulting and enron corp > krishna : i ' ve attached a draft agenda for the meeting we ' ve been discussing ( tentatively for february ) . we ' ll try to contact you thursday of this week to get your comments . thanks . - steve gabriel & shree vikas = = = = = = = = = = = = = = = = = = = = = = = = = = = steven a . gabriel , ph . d . industrial address project manager icf consulting 9300 lee highway fairfax , va 22031 - 1207 tel . ( 703 ) 218 - 2624 fax ( 703 ) 934 - 3968 sgabriel @ icfconsulting . com www . icfconsulting . com academic address professorial lecturer dept . of engineering management & systems engineering the george washington university washington , dc 20052 sgabriel @ seas . gwu . edu - enron . doc",0 +"Subject: re : fw : fw : get together this coming tuesday ? thanks for the update . kim . - - - - - original message - - - - - from : kaminski , vince sent : tuesday , may 01 , 2001 2 : 08 pm to : watson , kimberly cc : gadd , eric ; kaminski , vince subject : re : fw : fw : get together this coming tuesday ? kim , i talked to dale early this morning and suggested that we meet during his next trip to houston when we decide on timing of our project . vince from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 08 : 41 am to : vince j kaminski / hou / ect @ ect , eric gadd / et & s / enron @ enron cc : subject : fw : fw : get together this coming tuesday ? vince , if dale comes in to see you , it looks like eric might be available to meet with you as well . it would be a good opportunity for eric to meet dale and get a little more information on his model . eric ' s phone number is x 54713 . thanks , kim . - - - - - original message - - - - - from : gadd , eric sent : monday , april 30 , 2001 8 : 12 pm to : watson , kimberly subject : re : fw : get together this coming tuesday ? works for me . give me a call at 9 : 30 . from : kimberly watson / enron @ enronxgate on 04 / 30 / 2001 05 : 09 pm to : eric gadd / et kaminski , vince subject : re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince > "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: telephone interview with enron corp . research group good morning todd : david hunker has suggested that you might be a good fit with the research group of enron corp . with this in mind , we would like to conduct and informal telephone interview with you at your convenience . if you could give me some times and dates during the week of may 22 nd , i will coordinate the interview . please let me know the telephone number that you may be reached at , also . the interviewers would be : vince kaminski managing director and head of research stinson gibner vice president , research zimin lu director , research thanks . shirley crenshaw adminstrative coordinator research group 713 / 853 - 5290",0 +"Subject: i believe all of you received a request from jeremy blachman to hold the afternoon of january 10 th open for an off - site to discuss the manner in which rac and research assess / test the credit quality of ees transactions . i realize that rac and ees have had many discussions as to the methodology , but it might be helpful for all of us to understand the actual derivation of some of analysis . please call me with any questions or comments at ext # 30349 . the agenda will be as follows : 12 : 00 - 1 : 00 lunch 1 : 00 - 3 : 30 presentations 3 : 30 - to close discussion rac / research presentations the following topics would be of interest to ees : 1 - the derivation of default probabilities including ( research ) - - a discussion of the actual mathematical process , - - the analytics behind why these computations are deemed the best for enron , - - a comparison to historic default rates and why they differ ( in respect to actual default rates , shape of the cumulative default curves etc . 2 - the volatilities which are used to determine possible loss scenarios for the commodity portion of ees deals including ( research ) - - the selection of curves - - the application of those curves to the actual credit reserve model and - - why these particular tests are applicable to our products . 3 - the recovery rates used in the credit reserve model . how are these figures derived ? ( rac ) 4 - how rac and research have adjusted the credit reserve model to accommodate unusual aspects of the deal including ( rac ) - - promotion payments , - - accounts receivable - - committed capital - - and other factors ees also understands that some of you may be familiar with our processes , however , there are perhaps areas that you would like to understand more fully . please tell us what you would like to hear from us . also , rac has sent us the credit reserve model and i have seen completed models . perhaps prior to our meeting on wednesday , someone from rac and / or research could sit with me and someone from phil layton ' s group and go through the process of how the various pieces are put together .",0 +"Subject: re : grades thank you mr . kaminsky ! i received your first group of grades and will keep track as you work your way through the class to make sure that we don ' t miss anyone . - pam at 04 : 55 pm 5 / 1 / 01 - 0500 , you wrote : > pam , > > the term papers arrived at my internet mailbox . > i shall be sending you the information as i make progress reading the > papers . > > first group of students : > > helen demianenko > javier lamas > lynn nazareth > shauywn smith > carlos wheelock > sarah woody > > grade : a > > > please , confirm receipt of this message and please double check > that all registered students have been graded ( to make sure no student > falls through > the cracks ) . > > > vince",0 +"Subject: re : power point slides about enron vince - please ask your associate to contact laura valencia in my group - she can give you the recent lq anaylst slides and the enron . com year end presentation on the web ( these two should give you enough for a "" basic "" ene pitch . mark vince j kaminski @ ect 04 / 14 / 2000 08 : 54 am to : mark koenig / corp / enron @ enron , m rajgopal / corp / enron @ enron cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : power point slides about enron mark , i want to ask you for a favor . one of my associates , stinson gibner , is making a presentation to the mba students at texas a & m university next week . do you have a power point general presentation about enron , emphasizing our growth , creativity and employment opportunities ? we could use it for presentations we make on campuses to business and science students . there are many presentations available on our intranet site , but the are outdated . it was nice meeting you in san antonio . vince",0 +"Subject: re : amit ' s visit sounds great . there is another mit student , juan - carlos , who i would like to have accompany amit on the 16 th . i ' ll speak to him to clear the date . all the best . stinson gibner @ ect 01 / 17 / 00 09 : 57 am to : thomas d gros / hou / ect @ ect cc : jean mrha / enron communications @ enron communications , ravi thuraisingham / hou / ect @ ect , samer takriti / hou / azurix @ azurix , vince j kaminski / hou / ect @ ect , melissa jones / enron communications @ enron communications subject : amit ' s visit amit planning to spend the day of february 16 th at enron in order to give an update on his bandwidth pricing research . we will also try to spend some time in more of a round - table discussion designed pick his brain on any other related issues on which he may be able to help us . i am corresponding with amit to set up a more detailed agenda . please let me know if there are conflicts which should lead us to choose a different date . regards , - - stinson",0 +"Subject: class speaker vincent , we met last year when you were visiting the university , and talking primarily with our finance faculty . as you may have heard , i tried to call to talk with you about the possiblity of a guest speaker in my class on real options from your group at enron . naturally , i would be delighted if you could speak , but i could also appreciate the possibility that someone else might also be a good choice . i have attached a copy of the course syllabus for your information . this is the first time this course has been offered at ut , and i was motivated to do so because of the "" buzz "" regarding the topic in industry . i have about 30 mba students in the class , many of whom were in the energy finance classes offered by sheridan titman and ehud ronn ( both of whom have been very supportive of the development of this class ) . my own background is decision analysis rather than finance , so i tend to approach the topic with that perspective . as you can see , i have covered both traditional decison analysis topics and a review of the options literature . at the present time , i don ' t think there is a really complete textbook that fits the course at the mba level , so i ' ve tried to focus on how to do things in practice , and have provided software ( dpl , spreadsheets , @ risk , etc ) as tools for the students to use . the course is scheduled on thursday afternoons from 3 : 30 to 6 : 30 , which is a time that i chose to make possible the participation of some executive mba students from houston ( 3 are participating ) . i look forward to hearing from you about the possiblity of a speaker , or any other suggestions that you might have . james s . dyer fondren centennial chair in business department of management science and information systems cba 5 . 202 the university of texas at austin austin , texas 78712 - 1175 email : j . dyer @ bus . utexas . edu telephone : 512 - 471 - 5278 fax : 512 - 471 - 0587",0 +"Subject: re : prc dave , no problem . i shall do it this weekend . also , i left you a message regarding grant masson ( a vp in my group who left and went to work for el paso 2 months ago ) . i made a bet that he would be knocking on our door in a year . i lost . he wants to come back after 2 months . my recommendation is to take him back . he left on good terms and is quite competent . i would also like to send a message to the group that the grass on the other side of the fence may look greener , but in reality it may be painted hay . "" the return of grant masson "" would demonstrate that enron offers best long - term growth opportunities ( and that i am good manager ) . grant would come back to his original vp position . can we short - circuit the hiring procedures for a vp . grant ' s body is still warm and we can just re - instate him in the original position instead of going through all the loops required to hire a vp . vince david w delainey 12 / 14 / 2000 10 : 29 am to : vince j kaminski / hou / ect @ ect cc : subject : prc vince , can you provide for me a detailed list of 2000 accomplishments , strengths / weaknesses and feedback against the criteria for the 2000 prc . i need that in the next week or so . thanks delainey",0 +"Subject: constellation delta positions jim , i can provide some explaination about the spread option function in the exotica library . my phone number is 713 - 853 - 6388 . let us set up a time . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 06 / 2001 10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 06 / 2001 09 : 56 am to : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : constellation delta positions zimin , stinson i think i forwarded the message to you . did we act on it ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 06 / 2001 09 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - jim meyn @ enron 02 / 27 / 2001 03 : 53 pm to : vince j kaminski / hou / ect @ ect cc : robert stalford / na / enron @ enron , mason hamlin / hou / ect @ ect subject : constellation delta positions vince , rob and i would like to coordinate a meeting with one of your research people to review the spread option calculation from the exotica options library . we ' re pricing a spread option deal in nyc and have some questions related to the formula , greeks , etc . please let me know who might be available to sit with us for about 1 / 2 hour . thanks - jim - - - - - - - - - - - - - - - - - - - - - - forwarded by jim meyn / na / enron on 02 / 27 / 2001 03 : 49 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : mason hamlin @ ect 02 / 27 / 2001 01 : 48 pm to : tom may / corp / enron @ enron , robert stalford / na / enron @ enron cc : jim meyn / na / enron @ enron , gautam gupta / hou / ect @ ect subject : constellation delta positions attached are the delta positions for the nyc constellation deal . if you have any questions or would like to review the model , please call me . thanks , mason",0 +"Subject: re : term project : please respond to dear vince , i was wondering if you were able to open the attachment with my resume this time . rumor has it that you are currently hiring people for your group . is this true ? sincerely , helen - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 11 , 2001 3 : 22 pm to : isranir @ rice . edu ; demianen @ rice . edu ; tbal 93 @ yahoo . com ; maue @ rice . edu ; loughrid @ rice . edu ; jblantonjr @ yahoo . com ; gjohnson @ rice . edu ; emchombo @ rice . edu ; nazareth @ rice . edu ; vanstone @ rice . edu ; ganguzza @ rice . edu ; nelsonb @ rice . edu ; sssmith @ rice . edu ; wheelock @ rice . edu ; westmore @ rice . edu ; gaudette @ rice . edu ; otaylor @ rice . edu ; dikeman @ rice . edu ; jettke @ rice . edu ; litton @ rice . edu ; chilkina @ rice . edu ; helms @ rice . edu ; wankhade @ rice . edu ; monfan @ rice . edu ; kostya @ rice . edu ; pcp @ rice . edu ; yueguo @ rice . edu ; nlwbio @ rice . edu ; zhangn @ rice . edu ; rishad @ rice . edu ; yoshiura @ rice . edu ; howard @ rice . edu ; dayangd @ rice . edu ; wuwei @ rice . edu ; so @ rice . edu ; wooddy @ rice . edu ; lamas @ rice . edu ; tbalestrery @ houston . rr . com ; hingoran @ rice . edu ; planck @ rice . edu cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com ; jason . sokolov @ enron . com subject : term project : this is the list of projects for the members of the "" quant "" team . if you are working on different project , please , ignore this message . please , develop in a spreadsheet solutions / examples for the following : 1 . black - scholes formula 2 . black ' s formula 3 . develop a spreadsheet to simulate price trajectory using : a . gbm b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 ) c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 ) 4 . schwartz single factor model ( formula 6 . 12 ) 5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8 vince",0 +"Subject: re : improve communication zimin , i will make sure that you have the opportunity to present your contributions . it makes also sense to ask paulo every time to say a few words . vince zimin lu 06 / 22 / 2000 10 : 06 am to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : re : improve communication vince , thanks for your reply . that is what i feel too : vince knows what we are doing , so he does not have to ask us again . in another dimension , i want to make sure that people like paulo get enough incentive to perform . the group meeting , i think , will provide a sense of accomplishment when other members in the group know what we have been through . thanks again for your understanding . zimin vince j kaminski 06 / 21 / 2000 06 : 30 pm to : zimin lu / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : re : improve communication zimin , sorry if you get this impression . the real reason is that i treat the lunch meetings as an opportunity to get updates on things that are going on at more remote locations . i interact with each of the members of your group daily and i know what ' s going on . i agree with you , however , that the lunch meetings are not exclusively for my benefit , but also for the benefit of the other members of the group . i shall make sure that you have the opportunity to communicate your contribution to the company . vince zimin lu 06 / 20 / 2000 02 : 47 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : improve communication vince and stinson , the valuation group has accomplished a lot during last six months . the number of projects we are working on is keeping increasing . however , when comes to the staff meeting ( thursday lunch meeting ) , we are often left out for updating our projects . this makes me feel that what we are doing is no longer interesting or worth mentioning . i am hoping that we can get more exposure , despite we are still in the old economy . zimin",0 +"Subject: re : texas finance festival fyi : below is some information on the 2 nd annual texas finance festival . - - - - - - - - - - - - - - - - - - - - - - forwarded by cindy justice / hou / ect on 03 / 13 / 2000 09 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" john d . martin "" on 03 / 13 / 2000 09 : 43 : 51 am to : cindy justice cc : bill petty subject : re : texas finance festival cindy , yes , it ' s just around the corner and we have our very best program ever . our web site is up at check it out . actually , i was waiting for the final version of the program from sheridan to post it before getting in touch with you this week . we are planning on a room capacity group of 45 - 50 folks and are finalizing the plans for entertainment for friday and saturday night on the riverwalk . bill is handling the arrangements this year and i ' ll pass this message on to him as well . do you think we could get an enron speaker for saturday ' s luncheon ? last year was fabulous and would be hard to top but we ' d like to try . san antonio should be a bit easier on the speaker too . let me know what your thoughts are on everything including the speaker . bill and i are leaving town wed afternoon to go to a harvard conference so maybe we could talk before then . we ' re getting excited and want to get you guys involved for it is your personal ( and financial ) support that makes the conference really work . john at 01 : 09 pm 3 / 10 / 00 - 0600 , you wrote : > > > john - > > i haven ' t heard from you in a while and realized that the texas finance festival > is around the corner on april 7 & 8 . how are things going ? > > cindy justice > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : enron visit - - thanks larry , i was thinking about the potential applications over the weekend and i think i shall have a proposal for you in a few days . vince p . s . i want to remind you about the favor i asked you about . we would like to talk ( no commitments ) to the prediction company . can you refer me to your friend . vince lawrencelrtnmt @ aol . com on 05 / 06 / 2001 12 : 07 : 18 am to : vkamins @ enron . com cc : subject : enron visit - - thanks dear vince , i just wanted to thank you for inviting me to visit enron last friday and for the generous amount of time you spent with me personally while i was there . i found our discussions both informative and stimulating . vince , i was genuinely impressed by the caliber of the group you have assembled at enron . their individual and collective expertise is obvious ; and they were most generous in exchanging ideas and sharing opinions with me . if you or any of your people have , over the weekend , developed further questions or thought of additional information that might be helpful , i ' m standing by . i ' m eager to continue our dialogue . sincerely , larry thorne",0 +"Subject: f / up - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 22 / 2000 04 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - clayton vernon @ enron 12 / 21 / 2000 03 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : f / up vince - i got your message ( i was up on the roof of the building helping to fix the weather satellite dish - what a gorgeous view of houston ! ) . i appreciate your words . everything remains fine , vince . you are my "" father "" here at enron , and i admire and respect you greatly . i think i know the kind of person you are , in terms of your integrity , and i admire the high standards you set for all of us in your extended "" group . "" i want to let you know i am not the only one in the group who doesn ' t appreciate the way maureen disrespects you . you remain the key external factor in their success - it is not simply their own abilities that matter to their futures but your own - vince ' s - success with upper management that matters . we respect you , and we don ' t like it when you are disrespected . maureen didn ' t disrespect me today , vince , she disrespected you . it ' s time i told you something . last april , maureen , highly intoxicated following a work - related function at ninfa ' s , made an unsolicited predatory sexual advance on me at my desk on the 19 th floor . i was shocked and disgusted , but i didn ' t say one word about this , vince , because i played it out and didn ' t want to put you into the position of having a raving maureen in your midst as you perhaps had to fire her and then endure a litany of gender - bias crap lawsuits . i "" took one for the team , "" vince . i can ' rt say i would do it again - maureen is brazen to berate me after what she did , in public no less . i appreciate your bringing me into enron . i ' ve found a respectful and , indeed , a loving work environment . i remain willing to do whatever i can to help the group . clayton",0 +"Subject: giuseppe ' s bio vince , i will take care of the few typos , capitalizations , etc . , but i wanted to get this to you asap . he has a fine sense of humor ! sam - - - - - - - - - - - - - - - - - - - - - - forwarded by william smith / corp / enron on 08 / 28 / 2000 12 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : giuseppe paleologo @ enron communications on 08 / 28 / 2000 12 : 11 pm to : william smith / corp / enron @ enron cc : subject : re : hello ! i landed in the research group as a summer associate at the end of june , straight from sunny palo alto , where i am pursuing a phd in management science and engineering . since my area of research is the performance evaluation and economic analysis of communication networks , enron is "" the "" place to be : enron broadband services has the first mover ' s advantage in this field , and nearly every decision requires an understanding of both data networks and financial mathematics . enron has most of the needed skills to succeed , and the right attitude . after two months here , i am more convinced than ever that the best is still to come . i am from rome , italy , where i have spent most of my life ( my pre - columbian period , properly speaking ) . italy is the nation known among americans for having invented the pasta alfredo and for having elected a porn star as a member of parliament . the former allegation is indeed false : pasta alfredo is quintessential american . about the latter , one of my dubious achievement is to have interviewed the aforementioned member of parliament about her political agenda , receiving predictably fuzzy answers . as many members of the research groups , my background is in physics . i fell in love with operation research and management science while working for a large it consulting firm in italy , and wanted to learn more . i have been a student at stanford university since then . studying there has been a very enjoyable experience , and i am sorry i will have to leave it sometime soon . management science is not the only hobby in my life . i am an avid motorcyclist , and am a lifelong student of argentine tango . i also like reading ( a skill i learned in lst grade and has never failed me ) , in particular 20 th century english , italian and french poetry . william smith @ enron 08 / 11 / 00 02 : 10 pm to : giuseppe paleologo / enron communications @ enron communications cc : subject : hello ! giuseppe , i ' m sam smith and among other things i ' m the department newsletter editor . are you going to be leaving after today or will you be around next week ? if you ' ll be around , i ' d love for you to write a short bio piece for the newsletter . have a look at some recent issues for examples . if you ' ll be here monday morning , i can get a quick photo . if not , then i ' m sorry i missed you ! sam",0 +"Subject: re : your mail dear vince , the following message is from co - pi , prof . baichun xiao in long island university . in this message , he told me how enron would be registered . to my best knowledge , ibm , lucent and other big companies have registered in nsf for long . your kindly understanding is acknowledged very much . good weekend , youyi - - - - - - - - - - - - - - - - - - - - - - forwarded by youyi feng / na / enron on 09 / 08 / 2000 03 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - baichun xiao on 09 / 07 / 2000 09 : 39 : 38 am to : youyi . feng @ enron . com cc : subject : re : your mail dear youyi : the person in charge of external grants in your company needs to contact nsf by calling the following numbers for institution registration . fastlane user support : 1 - 800 - 673 - 6188 . fastlane availability ( recording ) : 1 - 800 - 437 - 7408 . after enron is registered ( i think it ' s a free registration ) , you provide the following information to the enron official so he / she will send it to nsf . nsf will assign you a password for future access to electronic submission ( called fastlane ) . since all proposals have to be submitted through fastlane after oct . 1 , 2000 , this is the must . name highest degree year conferred present institution department street address city state zip code social security number ( ssn ) email address business phone number business fax number for more information , you may go to www . fastlane . nsf . gov / fastlane . htm baichun at 05 : 14 pm 9 / 6 / 00 - 0500 , you wrote : > > dear baichun , > > i am having no idea about contacting nsf while the > managing director of this research group has kindly agreed > on doing anything he can to help us pursue fund rising . > please let me know how enron can put my profile into nsf ' s > database officially . > > the first four pages of the project application have been revised by > me . i do not > really know if you like the revision . appended is the primary > and description of the project document files . > > best regards , > > > youyi > > ( see attached file : project summary . doc ) ( see attached file : project > description . doc ) > attachment converted : "" c : \ bcx \ res \ eudora \ attach \ project summary . doc "" > > attachment converted : "" c : \ bcx \ res \ eudora \ attach \ project description . doc "" >",0 +"Subject: re : fw : invitation to 2001 energy finance conference - the university of texas at austin joe , i shall probably ask tanya to attend . it coincides with parents ' weekend at stanford . please , send me the slides anyway . i shall help tanya to prepare her presentation . vince from : joseph hrgovcic / enron @ enronxgate on 02 / 12 / 2001 09 : 47 am to : vince j kaminski / hou / ect @ ect cc : subject : fw : invitation to 2001 energy finance conference - the university of texas at austin vince , i understand you ' ll be speaking at the cefer conference . gary taylor , the head of marketing in the weather deriv . group , would like to know if you plan on mentioning weather derivatives at all and that if you do , he has numerous existing slides and presentations that might be useful to you . joe - - - - - original message - - - - - from : angela dorsey [ mailto : angela . dorsey @ bus . utexas . edu ] sent : wednesday , january 10 , 2001 9 : 06 pm to : angela dorsey cc : ehud ronn ; sheridan titman ( e - mail ) subject : invitation to 2001 energy finance conference - the university of texas at austin colleagues and friends of the center for energy finance education and research ( cefer ) : happy new year ! hope you all had a wonderful holiday season . on behalf of the university of texas finance department and cefer , we would like to cordially invite you to attend our : 2001 energy finance conference austin , texas february 22 - 23 , 2001 hosted by the university of texas finance department center for energy finance education and research dr . ehud i . ronn and dr . sheridan titman are currently in the process of finalizing the details of the conference agenda . we have listed the agenda outline below to assist you in your travel planning . each conference session will be composed of a panel discussion between 3 - 4 guest speakers on the designated topic . as supporters of the center for energy finance education and research , representatives of our trustee corporations ( enron , el paso , reliant , conoco , and southern ) will have the $ 500 conference fee waived . the conference package includes thursday evening ' s cocktails & dinner and hotel / ut shuttle service , as well as friday ' s conference meals , session materials and shuttle service . travel to austin and hotel reservations are each participant ' s responsibility . a limited number of hotel rooms are being tentatively held at the radisson hotel on town lake under the group name "" university of texas finance department "" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the latter evening for those who choose to stay in austin after the conference ' s conclusion ) . to guarantee room reservations , you will need to contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday , january 22 nd , and make your reservations with a credit card . please let me know when you have made those arrangements so that i can make sure the radisson gives you the special room rate of $ 129 / night . please rsvp your interest in attending this conference no later than january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as seating availability is limited . please feel free to extend this invitation to your colleagues who might be interested in attending this conference . center for energy finance education and research program of the 2001 energy finance conference february 22 - 23 , 2001 thursday , feb 22 : 3 : 00 p . m . reserved rooms at the radisson hotel available for check - in 5 : 30 p . m . bus will pick up guests at the radisson for transport to ut club * 6 : 00 p . m . cocktails , ut club 9 th floor 7 : 00 p . m . dinner , ut club 8 : 00 p . m . keynote speaker 9 : 00 p . m . bus will transport guests back to hotel friday , feb 23 : 7 : 45 a . m . bus will pick up at the radisson for transport to ut 8 : 30 a . m . session 1 - real options panelists : jim dyer , ut ( chair ) sheridan titman , ut john mccormack , stern stewart & co . 10 : 00 a . m . coffee break 10 : 15 a . m . session 2 - deregulation panelists : david eaton , ut ( chair ) david spence , ut jeff sandefer , sandefer capital partners / ut peter nance , teknecon energy risk advisors 11 : 45 a . m . catered lunch & keynote speaker 1 : 30 p . m . guest tour - eds financial trading & technology center 2 : 00 p . m . session 3 - risk management panelists : keith brown , ut ( chair ) vince kaminski , enron alexander eydeland , southern co . ehud i . ronn , ut 3 : 30 p . m . snack break 3 : 45 p . m . session 4 - globalization of the energy business panelists : laura starks , ut ( chair ) bob goldman , conoco ray hill , southern co . 5 : 15 p . m . wrap - up 5 : 30 p . m . bus picks up for transport to airport / dinner 6 : 30 p . m . working dinner for senior officers of energy finance center trustees * we have made arrangements to provide shuttle service between the radisson hotel and ut during the conference . however , if you choose to stay at an alternative hotel , then transportation to conference events will become your responsibility . * * * * * * * * * * * * * * angela dorsey assistant director center for energy finance education & research the university of texas at austin department of finance , cba 6 . 222 austin , tx 78712 angela . dorsey @ bus . utexas . edu * * * * * * * * * * * * * *",0 +"Subject: phone interview shirley , please , arrange a phone interview next week . tt , sg , zl , vk . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000 08 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nina knirel on 11 / 20 / 2000 05 : 13 : 47 pm to : vince . j . kaminski @ enron . com cc : subject : 708 graham place # 207 austin , tx 78705 november 20 , 2000 dear mr . kaminski : i read with interest your company  , s description on the web page . i was highly impressed by the work that enron corporation does and would like to inquire about employment opportunities with your company . enclosed is a copy of my resume that details my academic qualifications and practical experience . i am excited about stepping into a position , which will utilize my technical , analytical , and interpersonal skills in a fast paced environment , and look forward to expanding my horizons with new challenges and opportunities that enron corporation will offer . i know from customer and supervisor feedback that i have the interpersonal skills imperative to building a successful career at the enron corporation and am motivated to do so . your firm has an excellent reputation and i genuinely look forward to becoming a part of the enron corporation community . i know you must be busy during this time of the year , but i would sincerely appreciate a few minutes of your time . i plan to call you within the next seven days to discuss how my education , practical skills , and background would qualify me as a member of your company . in the meantime , if you need to contact me , my daytime and nighttime number is ( 512 ) 474 - 6683 and my e - mail address is knirel @ mail . utexas . edu . thank you very much for your time and consideration . i look forward to talking to you . sincerely , nina knirel do you yahoo ! ? yahoo ! calendar - get organized for the holidays ! http : / / calendar . yahoo . com / - knirel resume final [ 1 ] . doc",0 +"Subject: risk 2000 panel discussion draft agenda attached . please mark up at will . > - boston risk conference agenda . doc",0 +"Subject: interview schedule for rabi s . de attached please find the interview packet for the above - referenced person . the interview will happen friday august 11 , 2000 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sean grady 58701",0 +"Subject: re : invitation to present at risk ' s advanced stress testing course jean - pierre , sorry . i have previous commitments on these days . vince "" jean - pierre doggett "" on 11 / 07 / 2000 10 : 14 : 05 am please respond to "" jean - pierre doggett "" to : "" risk conferences "" cc : subject : invitation to present at risk ' s advanced stress testing course i would like to invite you to present a section on risk ' s course entitled , "" practical application of advanced stress testing "" which will be held in london ( 5 & 6 february 2001 ) and new york ( 12 & 13 february 2001 ) . ? you have been recommended to me in the course of my research as an authority in this field so i would be delighted for you to present any of the sections that are still available on the attached programme : for london : sections 1 , 2 . 1 , 2 . 2 , 3 , 4 and for new york : sections 1 , 2 . 1 , 2 . 2 , 4 and 8 my market research indicates that advanced stress testing is a highly interesting theme for a wide range of senior quantitative analysts and risk managers . i anticipate the course to be technical and practical in nature and assume a high level of knowledge from the delegates . it aims to extend the scope of accepted practices into the new areas of liquidity and credit risk stress testing and complement var methods by introducing new risk measurement techniques that can be applied in an integrated context . ? please contact me as soon as possible with an indication of which section is most suitable for your current interests . if you feel that you will not be able to participate on this occasion , i would welcome any speaker suggestions you may have . please call me if you have any questions . ? many thanks , ? jean - pierre doggett risk conference producer risk waters group phone : + 44 ( 0 ) 20 7484 9813 fax + 44 ( 0 ) 20 7484 9800 e - mail : jpdoggett @ riskwaters . com www . riskwaters . com - stress testing draft . doc - stress testing draft . txt",0 +"Subject: enron announcement car rental options for enron travelers rental car contracts for 2001 have been awarded to : national car rental ( primary ) and alamo rent - a - car ( secondary ) . the intent of these agreements is to consolidate and leverage enron ' s total car rental spend to achieve the most favorable rates and non - pricing provisions ( i . e . insurance ) . national car rental , due to its service levels , availability and total value proposition , has been awarded primary status and is recommended as the first choice for enron travelers ' needs . alamo rent - a - car , a sister company to national , has been awarded a contract reflecting a secondary status , due to its service levels , availability and low cost solutions . alamo is recommended as an alternative to national , where available . when you rent a vehicle in the united states , ( including puerto rico ) or canada , the following insurance provisions are included , regardless of rate selected : 1 . l / dw ( loss / damage waiver ) - this is what is called comprehensive or collision on your personal auto . it covers the rental vehicle and pays for any damage to it . 2 . liability - this covers people and property outside the rental vehicle . for both national and alamo , the coverage is $ 100 , 000 per person , $ 300 , 000 per occurrence and $ 50 , 000 for property damage . * * important * * * these coverages apply regardless of rate selected , as long as the following contract id is communicated at the time of reservation and rental is recorded on the transaction rental agreement . ( national - 5000838 alamo - # 143974 ) to enjoy the highest levels of service while renting a vehicle from enron ' s preferred suppliers , it is recommended that each traveler enroll in national ' s and alamo ' s preferred traveler programs . national ' s emerald club membership and alamo ' s quicksilver program are designed to speed the transaction time by providing services such as counter bypass and rapid return . the enrollment fees for these programs have been waived for enron travelers . enrollment packets will be mailed to the addresses of enron american express t & e cardholders . you may also find an enrollment form on the enron travel program intranet @ gss . enron . com . if you have any questions or comments , please contact jeff leath at 713 - 646 - 6165 .",0 +"Subject: itinerary phelim , fyi vince",0 +"Subject: aiesec vince , my name is shelly jones , i am the analyst recruiting manager for the associate / analyst program . christy young passed on information from the university of houston aiesec program . due to the restructuring of the associate / analyst program and the new policies regarding the interview process , compensation , offers , etc . , we will not be participating in the aiesec program this year . due to your past interest in the program , i have forwarded the literature on to you , via inter - office mail , for your consideration . please contact me if you have any questions . thank you for your time . shelly jones",0 +"Subject: re : power 2000 zimin , you are the lst . feel free to register as my guest . vince zimin lu 02 / 14 / 2000 02 : 59 pm to : vince j kaminski / hou / ect @ ect cc : subject : power 2000 vince , could you take me as your guest for the power 2000 conference if no one has asked already ? there are a few interesting topics i would like to hear . zimin",0 +"Subject: hib visa application - sevil yaman sevil , please , make sure you provide this information asap . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001 12 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 04 / 25 / 2001 12 : 04 pm to : sevil yaman / corp / enron @ enron cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate subject : hib visa application - sevil yaman sevil : please let me know when you will be sending me the information for your hib visa ? thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 04 / 25 / 2001 12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 04 / 10 / 2001 04 : 04 pm to : sevil yaman / corp / enron @ enron cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate subject : hib visa application - sevil yaman sevil : in order that we may proceed with your request for permanent residency , our immigration attorneys have advised us that we need to process the hib visa , prior to the permanent residency application . therefore , i am attaching an hib visa questionnaire that i would like you to complete and return to me , together with copies of all of the documents listed at the bottom of the form . please bring these to me in 3 ac 2026 a . please let me know if you have any questions at x 55083 . thank you margaret",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 campos , hector o peyton s gibner nov 06 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 gandy , kristin h celeste c roberts nov 01 , 2000 gorny , vladimir theodore r murphy ii nov 02 , 2000 hewitt , kirstee l steven leppard nov 06 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 pham , bich anh t sarah brown nov 06 , 2000 raymond , maureen j wincenty j kaminski nov 02 , 2000 rosen , michael b christie a patrick nov 06 , 2000 sun , li kevin kindall nov 09 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 tawney , mark r jeffrey a shankman oct 26 , 2000 williams , matthew steven leppard nov 08 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: a visit joe , this is a message from the japanese guy interested in energy risk management . please , let me know if you want somebody from your organization at the meeting . he will be here next monday at 3 : 00 p . m . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 12 / 2000 06 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - masayuki fujita on 03 / 31 / 2000 08 : 36 : 00 am to : vkamins @ enron . com cc : eugenio perez subject : a visit professor vincent kaminski vice president of research enron corp . dear professor kaminski i , masayuki fujita was the only japanese attendee of the energy derivatives seminar in houston last december and a member of japanese consultation firm : mitsubishi research institute , inc . i would be very honored if you can meet with me 17 or 18 april after attending energy trading summit in 12 th - 14 th . as you know , japanese electricity trading is on the way of deregulation beneficial to the consumers from a long stage of the nine major companies ' regional monopoly . we are giving a hand to help the ministry and industry to find the right course of them . i and my colleague yamada , who will attend risk publications monte calro seminar in four seasons hotel , would like to visit you and your company for studying the sophisticated risk management at enron . in return , we may give you the information about recent institutional progress and major electricity companies response in japan . we are now personally translating your book "" managing energy price risk "" second edition and wondering if you have not given the right to publish in japanese and nay give us the chance to help you introduce modern technology to manage energy risk in the japanese energy industry . i do not hope japanese english power prevent me to pass my sincerity to you and i can visit you soon . best regards , masayuki fujita principal financial engineer financial technologies section mitsubishi research institute , inc . 3 - 6 otemachi 2 - chome , chiyoda - ku tokyo 100 - 8141 japan tel + 81 - 3 - 3277 - 0582 fax + 81 - 3 - 3277 - 0521",0 +"Subject: confirmation : arthur andersen 21 st annual energy symposium thank you for your event rsvp . we hope that the process was quick and simple . for any further questions , please contact the event coordinator . your confirmation number is : 49297 you are registered for : arthur andersen 21 st annual energy symposium event date : tuesday , november 28 , 2000 7 : 00 : 00 am westin galleria hotel 5060 west alabama houston , texas 77056 fee information if you register on or before october 31 , the registration fee is $ 950 . 00 . after that date , the registration fee is $ 1 , 200 . 00 . , $ 950 . 00 total amount : $ 950 . 00",0 +"Subject: making room for "" summer interns "" hello all : i have some "" good "" news and i have some "" bad "" news . the "" good "" news is that we are growing ! the "" bad "" news is that we are running out of space . therefore , just for the summer we need to use jose ' s and joe ' s offices on the 19 th floor for "" summer "" interns . i will have to remove the extensions from those offices so they won ' t be ringing all the time . however , we can put them back after the summer is over . i hope this is not too inconvenient for you , but with roman and jason needing spaces on the 19 th floor , and another new hire coming on board , we are left without any extra spaces . thanks ! shirley",0 +"Subject: big rumor vince - i know you ' re very busy , so you might not have heard this . . . apparently , the board will meet this week to approve the sale of * all * of enron international ' s assets to a member of hte saudi royal family , the same prince who once invested heavily in citicorp to bail it out . the source of this is someone i trust . clayton",0 +"Subject: el paso statement on california situation in case you haven ' t already seen this : el paso addresses the california energy situation ( february 26 , 2001 ) houston , feb . 26 / prnewswire / - - el paso corporation ( nyse : epg ) reaffirmed today its continuing commitment to work with all parties involved to help improve california ' s energy situation . "" we are surprised to see continuing misinformation in the media concerning el paso ' s involvement in california , "" said norma dunn , senior vice president of corporate communications and external affairs at el paso corporation . "" we would like to take this opportunity to clarify the record . "" the significant increase in electricity demand at a time when available power supplies are short has caused a sharp climb in the price of power , which has in turn increased the price of natural gas used to generate electricity . high natural gas prices are , therefore , an effect rather than a cause of the power shortage . allegations that natural gas prices were deliberately manipulated by withholding capacity on the el paso natural gas pipeline overlook critical facts and are demonstrably untrue . it is not possible for any holder of capacity on the el paso natural gas pipeline to cause a significant increase in california gas prices by refusing to use that capacity . the el paso natural gas pipeline is required by law to post the availability of any unused capacity on its public bulletin board and is obligated to sell that capacity for no more than the published tariff rate found to be just and reasonable by the federal energy regulatory commission . all capacity held by el paso merchant energy on the el paso natural gas pipeline has been used or made available for use by others to serve california and other western markets . allegations that there was a "" conspiracy "" in 1996 to limit new interstate pipeline capacity into california are absolutely refuted by facts that no one can challenge . the facts show that all new pipelines considered during the 1990 s were either built or were not viable projects because they lacked sufficient customer support to justify their construction . for example , despite years of marketing efforts by tenneco , not a single potential customer could be induced to make the sort of binding commitment required for the proposed altamont project to proceed . for that reason alone , it was ultimately dropped . in 1996 , according to estimates , there were between one and two billion cubic feet per day ( bcf / d ) of excess natural gas transportation capacity on existing interstate pipelines serving california . indeed , it was misplaced reliance on the continuing availability of such excess capacity that prompted the california public utilities commission to encourage pg & e , socal edison , and socal gas , beginning in 1996 and continuing into 1998 , to relinquish over 1 . 5 bcf / d of firm transportation capacity on the el paso natural gas pipeline . processes are now under way to assess present demand and support for new interstate pipeline capacity into california , and el paso intends to do its part to help satisfy whatever needs may be established today . as recently as last year , there were periods when significant quantities of unused capacity were available on the el paso natural gas pipeline that were not necessary to meet demands at that time . notwithstanding its availability , this capacity was not used by shippers to california to fill in - state natural gas storage facilities for future use . if california had taken advantage of the opportunity in 2000 to store the same volumes of natural gas that had been stored in 1999 , reliance on the spot market would have been reduced and the steep rise in prices at the california border could have been substantially mitigated or avoided . it is now widely recognized that the california "" energy crisis "" was caused by the inability of the supply of power available in california to keep pace with the state ' s economy and increased demand . a combination of factors caused a sharp increase in power prices . first , the construction of new power plants in california is a slow , difficult , and heavily regulated process . as a result , the growing demand has far outstripped in - state generating capabilities . second , unfavorable precipitation and increased out - of - state demand caused some of the hydroelectric power normally relied on by california to become unavailable . third , increased demand for power in the western united states drove up prices that california had to pay to out - of - state generators . fourth , state policies deregulated wholesale power prices but capped the rates paid by consumers , leaving demand unrestrained and preventing utilities from recovering their costs . fifth , because rate caps prevented utilities from passing increased costs to consumers , the utilities ' creditworthiness was impaired , causing supplemental power needed during peak periods to become more difficult and expensive to purchase . sixth , the early and greater - than - normal use of peaking units - plants that are designed to only operate under peak demand conditions - necessitated unscheduled maintenance , rendering them unavailable at critical times . seventh , during the final months of 2000 , some power plants were forced to shut down because increased usage exhausted their air emissions credits . eighth , a warm summer followed by an early onset of cold weather further drove up demand for power . finally , the increased power costs in california could have been substantially mitigated through long - term power contracts and less reliance on the volatile short - term power market . "" california is currently in a difficult position , but now has the opportunity to refine its regulatory model and craft a long - term energy policy , "" said dunn . "" el paso has been one of the largest suppliers of energy to california for more than 50 years , and we are actively participating with all parties in california to be a part of a long - term , stable solution to california ' s energy needs . "" el paso corporation , the largest and most broadly based natural gas company in the world , spans the energy value chain from wellhead to electron . with an enterprise value in excess of $ 50 billion , el paso is a leader in every phase of the natural gas industry . the company owns and operates a significant portion of the north american natural gas delivery grid , operates the fastest growing , most sophisticated energy merchant group , and is the nation ' s third largest natural gas producer . el paso , a leader in risk management techniques , is focused on maximizing shareholder value , transforming existing markets , and speeding the development of new markets . visit el paso at www . epenergy . com . cautionary statement regarding forward - looking statements this release includes forward - looking statements and projections , made in reliance on the safe harbor provisions of the private securities litigation reform act of 1995 . the company has made every reasonable effort to ensure that the information and assumptions on which these statements and projections are based are current , reasonable , and complete . however , a variety of factors could cause actual results to differ materially from the projections , anticipated results or other expectations expressed in this release . while the company makes these statements and projections in good faith , neither the company nor its management can guarantee that the anticipated future results will be achieved . reference should be made to the company ' s ( and its affiliates ' ) securities and exchange commission filings for additional important factors that may affect actual results . bob brooks gpcm natural gas market forecasting system http : / / gpcm . rbac . com",0 +"Subject: fw : usaee conference dear mr . kaminski , attached please find our vip speaker letter , two program announcements , registration form and hotel information . please complete the registration form and fax to 216 - 464 - 2768 . if you have questions or need additional information please contact us . we look forward to seeing you later this month . kind regards . dave williams and mary novak - vip speaker letter . doc - final sec prog for pdf . pdf - usaee - iaee 2000 conference program 0728 . pdf - regform . doc - hotel & conference info . doc",0 +"Subject: re : tiger team event michele , i have defined the project for the students . it ' s one project that is divided into three sections . feel free to stop by to talk about it . vince from : michele nezi marvin @ enron communications on 01 / 03 / 2001 05 : 33 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : tiger team event i understand that you have been involved with the wharton tiger teams . i am the commerical team lead for wharton recruiting . do you know the 3 projects that the students are working on and who within enron is working with them on the projects ? thanks for helping to facilitate this opportunity for wharton students . michele nezi marvin manager enron broadband services ( 713 ) 853 - 6848 - - - - - forwarded by michele nezi marvin / enron communications on 01 / 03 / 01 05 : 34 pm - - - - - kristin gandy @ enron 01 / 02 / 01 11 : 30 am to : michele nezi marvin / enron communications @ enron communications cc : subject : re : tiger team event i will try to get that information from christie . from : michele nezi marvin @ enron communications on 01 / 01 / 2001 06 : 38 pm to : kristin gandy / na / enron @ enron cc : subject : re : tiger team event i can attend . do you know any of the details of the tiger team project and who they are working with ? also , names of the students would be helpful . so we can see if any are applying for summer positions . michele nezi marvin manager enron broadband services ( 713 ) 853 - 6848 kristin gandy @ enron 12 / 28 / 00 10 : 28 am to : jeffrey a shankman / hou / ect @ ect , william keeney / hou / ect @ ect , catherine clark / hou / ect @ ect , rajesh chettiar / enron _ development @ enron _ development , tom dutta / hou / ect @ ect , jayshree desai / hou / ect @ ect , colin jackson / enron communications @ enron communications , laura howenstine / enron communications @ enron communications , michele nezi marvin / enron communications @ enron communications , jennifer fraser / hou / ect @ ect , natalie halich / enron communications @ enron communications , ranabir dutt / corp / enron @ enron , teresa dyar / na / enron @ enron , jeff golden / hou / ees @ ees , charles ward / corp / enron @ enron , sarah wesner / corp / enron @ enron , li sun / na / enron @ enron , gillian johnson / na / enron @ enron , lisa connolly / na / enron @ enron , michael j popkin / na / enron @ enron , kevin mcgowan / corp / enron @ enron , evan betzer / enron communications @ enron communications , jebong lee / enron communications @ enron communications , chu chu wang / corp / enron @ enron , brad hitch / eu / enron @ enron , betsy bassis / enron communications @ enron communications , matthew goering / hou / ect @ ect , claude tellis / enron @ enronxgate cc : christie patrick / hou / ect @ ect subject : tiger team event hello team , i hope that everyone had a wonderful and restful holiday season . down to business : the university affairs group is putting together a tiger team of students to do a project for enron . those students will be in town on january 18 th and will be having dinner at churrasco ' s that night . i think it would be a great opportunity for some of the wharton alum to come out and meet the participants , talk about enron and eat some good food . : - ) if you are interested in participating please rsvp to me via email or at extension 53214 no later than 1 / 5 / 01 . thank you and hope to see you soon , kristin gandy",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 pks 7 y order for : maureen raymond 1 x ( standard desktop $ 1319 ) enron it purchasing",0 +"Subject: intelligence : el paso capacity - - someone has upped the ante but match still possible fyi . kim . - - - - - - - - - - - - - - - - - - - - - - forwarded by kimberly watson / et & s / enron on 12 / 16 / 99 04 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - lorna brennan 12 / 16 / 99 09 : 59 am to : rockey storie / et & s / enron @ enron , stephanie miller / et & s / enron @ enron , kent miller / et & s / enron @ enron , john dushinske / et & s / enron @ enron , dave neubauer / et & s / enron @ enron , michael bodnar / et & s / enron @ enron , joni bollinger / et & s / enron @ enron , david badura / et & s / enron @ enron , janet bowers / et & s / enron @ enron , craig buehler / et & s / enron @ enron , bob burleson / et & s / enron @ enron , allen cohrs / et & s / enron @ enron , john fiscus / et & s / enron @ enron , bret fritch / et & s / enron @ enron , steve gilbert / et & s / enron @ enron , morgan gottsponer / et & s / enron @ enron , brenda harris / et & s / enron @ enron , james harvey / et & s / enron @ enron , stephen herber / et & s / enron @ enron , dana jones / et & s / enron @ enron , jane joyce / et & s / enron @ enron , stephanie korbelik / et & s / enron @ enron , therese lohman / et & s / enron @ enron , bill mangels / et & s / enron @ enron , penny mccarran / et & s / enron @ enron , vernon mercaldo / et & s / enron @ enron , larry pavlou / et & s / enron @ enron , eileen peebles / et & s / enron @ enron , maria perales / et & s / enron @ enron , tony perry / et & s / enron @ enron , loren penkava / et & s / enron @ enron , ken powers / et & s / enron @ enron , joan schwieger / et & s / enron @ enron , chris sebesta / et & s / enron @ enron , frank semin / et & s / enron @ enron , neal shaw / et & s / enron @ enron , larry swett / et & s / enron @ enron , kay threet / et & s / enron @ enron , mike ullom / et & s / enron @ enron , lisa valley / et & s / enron @ enron , chuck wilkinson / et & s / enron @ enron , jim wiltfong / et & s / enron @ enron , jo williams / et & s / enron @ enron , karen lagerstrom / et & s / enron @ enron , ray stelly / et & s / enron @ enron , bob stevens / et & s / enron @ enron , sue m neville / et & s / enron @ enron , mike barry / et & s / enron @ enron , miriam martinez / et & s / enron @ enron , martha janousek / et & s / enron @ enron , kimberly watson / et & s / enron @ enron , don powell / et & s / enron @ enron , melinda tosoni / et & s / enron @ enron , steve weller / et & s / enron @ enron , michael g stage / et & s / enron @ enron , tim johanson / et & s / enron @ enron , mike mcgowan / et & s / enron @ enron , lynn blair / et & s / enron @ enron , rick dietz / et & s / enron @ enron , steven january / et & s / enron @ enron , sheila nacey / et & s / enron @ enron , steven harris / et & s / enron @ enron , lindy donoho / et & s / enron @ enron , jeffery fawcett / et & s / enron @ enron , lorraine lindberg / et & s / enron @ enron , kevin hyatt / et & s / enron @ enron , christine stokes / et & s / enron @ enron , julia white / et & s / enron @ enron cc : subject : intelligence : el paso capacity - - someone has upped the ante but match still possible negotiated el paso deal topped el paso confirmed that someone had upped the ante on the negotiated deal for slightly more than 1 . 2 bcf / d in firm capacity to the california border that was announced friday ( see daily gpi , dec . 13 ) . a higher bid was submitted prior to wednesday ' s 1 p . m . mst deadline in a four - day open season , a pipeline spokesman said . however , the original negotiating party has until this afternoon to match the new price and retain the capacity . the new bid was for $ 38 million over one year starting jan . 1 , about $ 8 million more than the amount in friday ' s announcement ( $ 30 million ) . one source called it "" ridiculous "" that someone was willing to pay so much for the space , given that on a mark - to - market basis the capacity is worth only about $ 20 - 25 million . late last week some sources speculated that duke energy was the recipient of next year ' s package given its large power generation holdings in california . a marketer yesterday said he believed dynegy upped the ante . "" rather than go through all the hassles they [ dynegy ] had at ferc with the 1998 - 99 package , they let someone else do all the work this time and then came in late with a higher bid . that way no one can complain that the procedure was tainted . after all , dynegy has quite a few power plants in california to keep fueled , and all of their current ft on el paso expires at the end of this year . of course , they still could be thwarted if the original negotiated customer matches their bid . it may all sound kind of machiavellian but sort of makes sense . "" other sources heavily discounted the chances of dynegy being the new high bidder , pointing out that the company made significantly less than expected this year because san juan / border basis differentials narrowed significantly . a dynegy source indicated that the company was involved in the bidding and lost to duke in the first round . regardless of what happens next year , a marketer noted that the southern california border / san juan basis spread continues to compress as socal gas withdraws from storage and east - of - california utilities exercise their peaking contracts because of cold weather in the rockies and elsewhere in the west . from a december index spread of 29 cents , the border / basin gap was down to about 18 cents wednesday , she said .",0 +"Subject: re : sorry . chonawee , this was perfectly all right . as a matter of fact i expect and encourage the members of the group to disagree with me ( or anybody else ) on any subject . i am never offended by it and take it as a manifestation of ability to think independently and having the courage of one ' s convictions . nobody has the monopoly on truth and nobody knows everything . the only way we can learn and avoid costly errors ( to ourselves and the company ) is by having open communication . in enron , facts are friendly . by the way , it was an excellent presentation . vince chonawee supatgiat @ enron 01 / 04 / 2001 03 : 10 pm to : vince j kaminski / hou / ect @ ect cc : subject : sorry . hi vince , i am sorry for correcting on the revenue of the different auctions . vickrey 1961 showed that all 4 kinds of auctions would yield the same expected revenue to the auctioneer . ( dutch , english , first price - sealed bid , and second - price sealed bid . ) in fact , the selling price is equal to the valuation of the second highest bidder . for example , in vickrey auction , everyone bids at his own valuation . hence , the winner pays the valuation of the second highest bidder . in english auction , the second highest valuation bidder will stop competing if the price is above his valuation . hence , the winner also gets the item at the price of the second highest valuation bidder . thank you for attending the meeting and giving many helpful contributions . - chonawee",0 +"Subject: livelink access sorry for the miscommunication but your password is blank . after you log in . please change your password by going to the go to menu and change your password . - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 06 / 2001 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 03 / 05 / 2001 03 : 37 pm to : kenneth parkhill / na / enron @ enron , jaesoo lew / na / enron @ enron , tom halliburton / corp / enron @ enron , kevin kindall / corp / enron @ enron , bob lee / na / enron @ enron , alex huang / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , joseph hrgovcic / enron @ enronxgate , gwyn koepke / na / enron @ enron , rakesh bharati / na / enron @ enron , martin lin / hou / ect @ ect , rabi de / na / enron @ enron , chonawee supatgiat / corp / enron @ enron , seksan kiatsupaibul / hou / ees @ ees , wichai narongwanich / hou / ees @ ees , sevil yaman / corp / enron @ enron , tom barkley / na / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect , osman sezgen / hou / ees @ ees , praveen mellacheruvu / hou / ees @ ees , sandeep kohli @ enron , vince j kaminski / hou / ect @ ect cc : subject : livelink access you have been added to the livelink test instance for research . see below for the link . - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 05 / 2001 03 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron technology from : moyez lallani @ enron 01 / 16 / 2001 10 : 46 am to : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : subject : livelink access gentlemen , i have created a folder called research projects folder in the livelink test instance . the url to the test instance is to log in , use your nt login id as your userid and password ( all lowercase ) . you will find the folder on the enterprise workspace . please call me should you require further assistance . moyez lallani x 5 - 3683",0 +"Subject: re : opportunities at enron vince kaminski , i am one of the stanford students that you interviewed last october . i really apologize for contacting you that late , but for some reason when i wrote the email that i transcribe below i did not send it , and just realized about that until now . also , i want to thank you again for opening the possibility of a summer internship at enron . regards , jorge picazo > vince kaminski , > > i am one of the students that you interviewed at stanford university > last october . > > during our meeting i asked for the possibility of an internship position > at enron during this summer , and you asked me to send you an email > by february . > > however and after a long talk with my advisor , i have decided to focus > on my academic research during the summer , and i am writing to let you > know about my decision . > > in any case , i really want to thank you for opening the possibility of a > summer internship at enron . if my academic duties had not keep me at > stanford , i am sure that it would have been a great experience . > > thanks anyway , > > jorge picazo > > > > > > hello , > > > > my name is vince kaminski and i am in charge of quantitative research at enron > > corp . i shall visit the stanford campus on october 21 and 22 ( thursday and > > friday ) > > and hope to talk to a number of faculty members about recruiting stanford > > graduates for enron . > > > > i shall be accompanied by two other enron employees : greg whalley , a stanford > > graduate , head of risk management at enron and my boss , and celeste roberts , > > head of our associate / analyst program . > > > > if you are interested in meeting with me and two other members of the enron > > team to talk about opportunities at enron , send me a message to two e - mail > > addresses : vkaminski @ aol . com ( home ) and vkamins @ enron . com ( office ) . i shall > > send you in the beginning of the next week information about the time and > > place of the meeting . > > > > you can also reach me at ( 713 ) 853 3848 . > > > > vince kaminski > > = jorge a . picazo hidalgo ph . d . candidate adress : 1600 villa st apt 391 department of statistics 94041 , mountain view ca stanford university sequoia hall rm 237 phone : ( 650 ) 965 - 4119 m . s . email : jpicazo @ leland . stanford . edu department of engineering - economic jpicazo @ stat . stanford . edu systems and operations research stanford university =",0 +"Subject: ola oladeji we are in the process of placing our remaining new associates as they are here for orientation and will be available for work august 28 . ola has yet to be placed and i am inquiring if there is any interest in him joining one of your groups . i know some of you expressed interest upon interviewing him . if so , please advise as soon as possible . if you have any questions , please contact me at 3 - 4584 . thanks so much for your participation in the associate program ! !",0 +"Subject: re : real options conference in cambridge steve , risk will give you more exposure in the peer group faster . shan left ( i think they are firing people at risk - a normal development for a successful company that got ahead of itself ) . if risk does not work , i shall talk to phelim about speeding the publication . vince steven leppard 04 / 25 / 2000 08 : 06 am to : vince j kaminski / hou / ect @ ect cc : subject : re : real options conference in cambridge hi vince the person i was dealing with ( shan millie ) passed on my paper to her successor , and i ' ve heard nothing since . the plan was to try and publish the article in risk ' s "" game choices "" real options book , which is being published in june , along with a summary version for the magazine . i ' m supposed to be waiting for them to get back to me , and it ' s not been at the front of my mind until now . i think i ' ll chase them up . interestingly at a recent risk course phelim boyle expressed an interest in my work to appear in one the the journals he edits , i think it ' s decision science or something like that . do you think this would be a more appropriate home for the work ? one more thing that may be of interest to you is that i ' ve now worked forward recursive dp into my notation too . it ' s simply a matter of putting the decision nodes on the left hand side of the value symbols ! should i chase risk , or pursue the peer reviewed phelim boyle option ? steve vince j kaminski 04 / 25 / 2000 02 : 00 pm to : steven leppard / lon / ect @ ect cc : subject : re : real options conference in cambridge steve , how are the discussions with risk about an article progressing ? vince steven leppard 04 / 25 / 2000 05 : 07 am to : lenos trigeorgis @ enron cc : vince j kaminski / hou / ect @ ect subject : re : real options conference in cambridge lenos i ' d like to give a talk entitled "" diagrammatic representation of real options in enron "" , in which i will give a brief run - down of a diagrammatic technique i have developed for representing real option deals . my notation allows originators , managers and quants to communicate unambiguously , while still appreciating the complexity and subtlety of real optionality . i have defined a "" diagrammatic grammar "" which guarantees that the pricing of the deal follows immediately and automatically from the diagram . i propose to introduce the symbols and grammar , then go on to present some suitable examples of diagrams . if appropriate i ' ll talk about the links with dynamic programming . ( i will need some guidance as to how much technical detail i can go into based on the audience . ) all the best , steve enron capital & trade resources corp . from : lenos trigeorgis 04 / 20 / 2000 08 : 45 pm to : "" steven leppard "" cc : "" vince j kaminski "" subject : re : real options conference in cambridge steve thanks for agreeing to talk . i attach the program to see the other speakers and style ( it is addressed to a professional autience ) please give me a suitable title for the talk ( replacing kaminski  % s slot on july 6 / energy session ) and the details of your position thanks lenos at 05 : 01 _ _ 04 / 20 / 00 + 0100 , steven leppard wrote : > > > dear prof trigeorgis > > vince kaminski has suggested that i would be a suitable speaker at your july > conference in cambridge , and i ' d be happy to come along if required . please > could you send me appropriate details , and the audience type expected . > > many thanks . > > yours sincerely , > steve leppard > > > > - 4 thconfsessions . doc lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: projects update vince , a quick project update . 1 . sandeep and i spoke with robert schenck in adelaide . he will email a henwood proposal to us . they already figured that we must be interested in modelling dabhol . 2 . the wti eol trading simulation had an error . we were counting a mid - offer spread profit on each trade , but we actually would make the spread on each round - trip transaction ( one trade to open , one trade to close ) . i modified the calculation and sent the new numbers to greg whalley ( he is the one who caught the mistake , so there goes my bonus for the year . ) and john lavorato . i should probably re - run the earning volatility numbers , and update ted murphy as well . - - stinson",0 +"Subject: re : enron / stanford program nick , vince asked me to coordinate the planning for you august visit to enron . vince and i are free almost any date except august 14 and 15 th , but we would like to try and schedule your visit at a time when you could meet with other key ebs executives such as kevin hannon and perhaps ken rice and john echols . if you could send me a few of your preferred choices of dates , i will try to optimize getting you on the calendars of these individuals . by the way , giuseppe is doing a great job and has already made a very good impression on everyone he has worked with . it ' s been a real pleasure having him here for the summer . regards , stinson",0 +"Subject: resume : dipak agarwallah ph . d . econ . here is a resume forwarded to our group . dipak has some industry experience , but does not seem to have programming skills . any interest ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 11 / 09 / 2000 10 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - paulo issler 11 / 07 / 2000 02 : 56 pm to : stinson gibner / hou / ect @ ect cc : subject : resume and cover letter stinson : per our conversation i am forwarding you dipak ' s resume . - - - - - - - - - - - - - - - - - - - - - - forwarded by paulo issler / hou / ect on 11 / 07 / 2000 02 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - guido caranti @ enron _ development 11 / 02 / 2000 01 : 44 pm to : paulo issler @ ect cc : subject : resume and cover letter poulo , this is the info of the guy i talked to you about . please let me know what you think . thanks a lot guido - - - - - - - - - - - - - - - - - - - - - - forwarded by guido caranti / enron _ development on 11 / 02 / 2000 01 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" dipak agarwalla "" on 10 / 13 / 2000 11 : 36 : 22 am to : guido . caranti @ enron . com cc : a _ dipak @ hotmail . com subject : resume and cover letter hi mr . caranti , please find the attached cover letter and resume . please let me know if you need any further information and i look forward to talking to you on saturday at 8 : 30 pm . thank you very much dipak get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com . - resume - dipak agarwalla . doc - cover letter - dipak agarwalla . doc",0 +"Subject: year end 2000 feedback deadline prc meetings begin on monday , november 20 th . if you have not already done so , please go in to pep at http : / / pep . corp . enron . com and complete the requests for feedback on the employees listed below . if you have any questions , please call the pep help desk at : houston : 1 - 713 - 853 - 4777 , option 4 london : 44 - 207 - 783 - 4040 , option 4 e - mail : perfmgmt @ enron . com thank you for your participation . andrews , naveen c baxter , ashley campos , hector o carson , richard l crenshaw , shirley j gandy , kristin h gorny , vladimir hewitt , kirstee l hickerson , gary j kaminski , wincenty j kindall , kevin leppard , steven patrick , christie a pham , bich anh t raymond , maureen j rosen , michael b sun , li supatgiat , chonawee tamarchenko , tanya v tawney , mark r thuraisingham , ravi williams , matthew yaman , sevil yuan , ding",0 +"Subject: re : weather course julie , enron location makes more sense . no reason to pay for the hotel . also , i think that one day makes more sense . i contacted the weather desk about including other people at the training course . i think that they would be interested if they got a good discount . vince "" julie "" on 02 / 16 / 2001 09 : 39 : 37 am please respond to "" julie "" to : cc : subject : re : weather course vince , ? great . ? just to let you know , we decided not to wait on the indecisive ones , and postponed the open course . ? it ' s yours , whatever you want : ? 1 day ( specific to what you feel will be of the most benefit ) , 2 days , hyatt or enron , or not at all . ? i hope this doesn ' t cause problems for you . ? special deal , for sure . ? i owe my godfather . ? julie ? ? - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie cc : joseph . hrgovcic @ enron . com sent : thursday , february 15 , 2001 3 : 16 pm subject : re : weather course julie , that ' s definitely an option . we can provide the room . maybe we can cut with you a special deal for enron and increase the # of people attending . i am forwarding your message to our weather desk . vince joe , what do you think about it ? vince "" julie "" on 02 / 15 / 2001 08 : 20 : 24 am please respond to "" julie "" to : ? ? "" vincejkaminski "" cc : subject : ? weather course vince , we just wanted to let you know that we only have 3 people signed up for the weather derivatives course ( all from enron ) so far . we have a couple more that have expressed strong interest , but we are awaiting their final decision . if no one else signs up , chris and les thought that you guys could probably get through the first day pretty easily , and thus thought it may be an option to teach just the 2 nd day material ( pricing ) only at enron ( doing it at the hyatt is an option as well but the room might be on the large ? side ) ? we would obviously reimburse you for the day not taught . we can teach both days as well , but thought you may want to save some time . i just wanted to give you some time to think about it . we will know ? where we stand on final numbers by next wednesday . julie",0 +"Subject: re : joint probabilities michael the updated probabilities are attached . the probability of reaching any fx times rab multiple are the same as the original analysis . the probabilities of reaching a given stock price are lower than the original analysis in both the optimistic and pessimistic cases because the debt levels are higher , and hence the stock value is lower for any fx - rab value . bob lee x 35163",0 +"Subject: re : green card vince , thanks for initiating this information flow . i think the confusion is coming from the question of if an fl can apply for green card or not . to my knowledge and to the knowledge of international student services in my university , yes i can apply . anyway , thanks again and i am sure we ' ll find a good answer for this question since here is enron . sevil , - - - - - - - - - - - - - - - - - - - - - - forwarded by sevil yaman / corp / enron on 03 / 09 / 2001 10 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : norma villarreal / enron @ enronxgate on 03 / 08 / 2001 06 : 31 pm to : sevil yaman / corp / enron @ enron , margaret daffin / hou / ect @ ect cc : norma villarreal / hou / ect @ enron , vince j kaminski / hou / ect @ ect subject : re : green card sevil , i believe you and margret daffin have spoken about the next steps for your green card . you will need to start working on you hib at the begining of october 2001 . if there is any confusion on my part please let me know . norma villarreal x 31545 below is dicussion between margret daffin and sevil in an e : mail january 26 , 2001 : "" sevil : first of all we have to get you an hib visa before we can work on getting you the green card . after you get your opt , contact me sometime in the summer and i will start working on your hib visa which we will obtain in approx . october , 2001 . we cannot start the green card process when you are still on an fl visa - you have to be on an hib visa . there is no rush - you will have six years on the hib visa - plenty of time in which to get the green card . "" this was in reference to her note to me , as follows : "" i think i ' ll have time approximately until the end of 2002 by using cpt and opt . this makes almost two years . if we can start green card process now , do you think that i would get it before i need hl . in every case , can ' t we start green card before i get hl ? because i don ' t want to waste these two years given the fact that green card process is a long process . "" - - - - - original message - - - - - from : yaman , sevil sent : thursday , march 08 , 2001 3 : 59 pm to : daffin , margaret cc : norma villarreal / hou / ect @ enron subject : green card i haven ' t heard back from any of you regarding my immigration status . could you please get back to me with the information about the initialization of my green card process ? thank you . sevil yaman eb 1943 x 58083",0 +"Subject: associate and analyst program contacts associate and analyst programs ( the  & programs  8 ) are administered globally . listed below is the contact information for the offices that utilize the programs . please do not hesitate to contact the individuals identified with any questions , placement needs or hiring needs . houston / portland / australia celeste roberts , program director . manages the daily operations . her assistant is dolores muzzy and can be reached at ext . 3 - 6245 . ginger gamble . overall responsibility for associate recruiting . candidates interested in the associate program can forward their inquiries and resumes to ginger at ebl 191 . ginger can also be reached at ext . 3 - 7583 or by e - mail at ginger . b . gamble @ enron . com . shelly jones . overall responsibility for analyst recruiting . candidates interested in the analyst program can forward their inquiries and resumes to shelly at ebl 175 . shelly can also be reached at ext . 3 - 0943 or by e - mail at shelly . jones @ enron . com . jana giovannini . responsible for operations and expenses . jana can be reached at ext . 3 - 9233 or by e - mail at jana . giovannini @ enron . com . jana is located at ebl 187 . shannon rodgers . responsible for associate rotations . associates and hiring managers who need information on rotations and associate availability should contact shannon at extension 3 - 3853 or by e - mail at shannon . rodgers @ enron . com . shannon is located at ebl 186 a . elizabeth boudreaux . responsible for analyst rotations . analysts and hiring managers who need information on rotations and analyst availability should contact elizabeth at ext . 3 - 6176 or by e - mail at elizabeth . boudreaux @ enron . com . elizabeth is located at ebl 186 b . argentina / bolivia / brazil miguel padron . responsible for associate and analyst rotations , operations and expenses . his assistant is rosely nassar and can be reached at 5503 - 1243 . disneau santiago . responsible for associate and analyst recruitment . disneau  , s assistant is marlene muniz and can be reached at 5503 - 1244 . calgary dawn doucet . responsible for associate and analyst recruiting and rotations . candidates interested in either the associate or analyst programs can forward their inquiries and resumes to dawn in the calgary office . dawn can be reached at ( 403 ) 974 - 6724 , the fax number is ( 403 ) 974 - 6985 or by e - mail at dawn . doucet @ enron . com . london elizabeth barrett , director of european program . she can be reached at + 44 20 7783 7701 . sophie kingsley . responsible for day to day management of the european program , both pre / post hire , including associate and analyst rotations and international transfers . sophie can be reached at + 44 20 7783 7975 or by e - mail at skingsley @ enron . com . india ranen sengupta and dick liebert . responsible for associate and analyst recruiting and rotations . candidates interested in either the associate or analyst programs can forward their inquiries and resumes to ranen sengupta or dick liebert . ranen can be reached at ext . 6 - 7967 and his e - mail is ranen . sengupta @ enron . com . dick leibert  , s extension is 6 - 7145 and his e - mail is dick . liebert @ enron . com .",0 +"Subject: re : meeting ( fwd ) - - bradley romine ees / or stanford university bradley @ leland . stanford . edu - - - - - - - - - - forwarded message - - - - - - - - - - date : thu , 20 jan 2000 12 : 09 : 05 - 0800 ( pst ) from : bradley romine to : nick bambos subject : re : meeting professor bambos , 3 pm on wed . is fine with them . so i ' ll see you then in your office in terman . brad on thu , 20 jan 2000 , nick bambos wrote : > brad , > > yes , i would be happy to meet with them . > how about 3 pm on wed . > > thanks , > > nick > > bradley romine wrote : > > > > hello professor bambos , > > i was talking to some friends i have at enron about pricing > > options for bandwidth trading and other optimization algorithms for > > broadband networks . anyway they are interested in talking to you about > > your research . they will be in town next week tuesday and wednesday and > > would appreciate getting a chance to talk to you . are you available ? > > > > thanks , > > brad > > > > - - > > bradley romine > > ees / or stanford university > > bradley @ leland . stanford . edu > - - bradley romine ees / or stanford university bradley @ leland . stanford . edu",0 +"Subject: re : vlady gorny perfect . thanks , vince . in all likelihood , it would be just fine , it is just not customary for job talks to include others . again , since you are a member of the risk management chair search committee ( you may not know of this official capacity , but i believe it is the case ) , we by all means hope that you will be able to attend the seminar as well as dinner . i will get details on the schedules to you early next week . bbo at 03 : 38 pm 3 / 2 / 01 - 0600 , you wrote : > barbara , > > i called vlady gorny and explained that the presentation by jorion is not > offered > under the umbrella of the seminar sponsored by enron and that it is a > closed meeting for the school faculty . > > i don ' t think that enron would open its job interviews to rice observers > who expressed interest and i made this comment to vlady . he is ok with > this . > > you can let his program director know that i have explained to vlady > that it is a meeting for limited audience and that he does not expect to be > invited . > > > please , let me know the details of the dinners . > > vince",0 +"Subject: recommendations vince and joe , this is just a short reminder about the four letters of recommendation . i have attached an envelope with each recommendation . once you seal each envelope , please don ' t forget to sign it ( over the adhesive seal ) and to label the front , e . g . "" columbia - joseph hrgvocic "" . also , i will be mailing everything in one package to each university , so please don ' t mail them out . that is all . as always , i really do appreciate the time you ' re taking to do this . thank you , hector",0 +"Subject: alp presentation christie , shirley reserved room 49 cl for monday 4 : 00 p . m . presentation . can you issue the formal invitation to our guests with the game / dinner details ? i don ' t have all the details regarding the enron field box and time . i am out most of the day on wednesday but we can discuss the details on thursday . hope to see you on saturday at the concert . vince",0 +"Subject: re : forecast rates ! vince , we responded to kellie and osman on march 21 . don reid decided that he did not need a curve for turkey at this time . regards , maureen vince j kaminski 03 / 27 / 2000 06 : 14 pm to : kellie fleeks / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , maureen raymond / hou / ect @ ect , farouk lalji / hou / ect @ ect subject : re : forecast rates ! kellie , i was on vacation last week . sorry for the delay in getting back to you . i am forwarding this request to maureen raymond who is handling such requests . vince kaminski to : vince j kaminski @ ect cc : subject : forecast rates ! vince , your name was given as a contact to get information on some exchange rates . don reid is needing some information on forecast rates and inflation rates for turkish ponds for the years 2000 - 2006 . if you can help me we really would appreciate it , we need it as soon as possible . thank you in advance for your help . kellie 5 . 5205",0 +"Subject: marking chairs hello all : unfortunately , in the last two weeks we have had two of our research "" chairs "" disappear from their location . we have reported this to security , but in all likelihood they will be almost impossible to locate . facilities has told us that they are not responsible for missing chairs and we will have to order new ones . since they are very expensive , we have decided to "" mark "" our chairs underneath the seat with a location or name . sam is going to order some "" silver or white "" markers and we will begin marking each chair . it is a shame we have to do this , but know of no other alternative . we will let you know when this will take place . thanks ! shirley",0 +"Subject: term paper dr . kaminski , attached please find a copy of our term paper . advise if you experience problems opening the attachment . best regards , ken jett - combo 2 [ 1 ] . v 2 . doc",0 +"Subject: martin lin norma , thanks for your excellent suggestion of using a retention bonus for martin lin in order to address both the issues of compensation and retention for him . as i mentioned during our meeting , just my small team within research has lost 3 people over about the last 2 years , and we have had a hard time recruiting good candidates . last year we made an offer to a person graduating from ut ( ms in computational finance ) of 75 k plus 25 k signing bonus . he replied that he would like to work at enron but was already in the position of turning down an offer with a base salary above $ 100 k . martin is a very skilled individual with a ph . d . in electrical engineering and almost two years experience at enron . he would be very difficult ( and expensive ) to replace . for this reason i feel it necessary to be proactive in finding ways of retaining him as an employee . please let me know if we have a green light to go forward with a 1 - year retention bonus of 10 k and a raise to 87 k base salary for mr . lin . i would plan to then give martin an additional raise at his next review period . regards , stinson x 34748",0 +"Subject: li sun vince , thanks for your response . apparently , we were under the incorrect impression that your group would be taking li ( based on jeff ' s note below ) . we apologize for not contacting you last friday to confirm prior to "" placing "" li in your group . i have faxed li ' s resume to you and hope that you will have time to review it today . please call me back as soon as you can to discuss li ' s opportunities in your group . if vince is not interested in li for his group , we will consider li placed in ena - gas trading ( original placement ) in john lavorato ' s organization . once i hear from vince one way or the other , the program will consider li ' s placement final in either research or ena - gas trading . hopefully this will be resolved by tuesday morning so that we may communicate to li her rotation information . if you have any questions , please let me know . thank you ! vince j kaminski 08 / 21 / 2000 01 : 03 pm to : jana giovannini / hou / ect @ ect cc : subject : re : vikas dwivedi fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 21 / 2000 01 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 08 / 21 / 2000 12 : 58 pm to : shelly butler / hou / ect @ ect cc : john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , hunter s shively / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : vikas dwivedi shelly , i shall not accept anybody for a rotation without a prior interview . li was scheduled to meet with me last thursday but she never showed up . she did not call to cancel or to apologize for not showing up . i have not seen her resume . please , assume she is not rotating into my group till further notice . vince from : shelly butler 08 / 18 / 2000 03 : 37 pm to : jeffrey a shankman / hou / ect @ ect cc : hunter s shively / hou / ect @ ect , john j lavorato / corp / enron @ enron , vince j kaminski / hou / ect @ ect , craig breslau / hou / ect @ ect , ina rangel / hou / ect @ ect subject : vikas dwivedi jeff , just wanted to confirm that li will be placed in vince kaminski ' s group . vikas has been placed in ena middle market reporting to craig breslau . please contact me at 3 - 4584 if you have any questions . thanks for your help ! ! shelly from : jeffrey a shankman 08 / 18 / 2000 03 : 18 pm to : shelly butler / hou / ect @ ect cc : hunter s shively / hou / ect @ ect , john j lavorato / corp / enron @ enron subject : shelly , hunter spoke with li today and agrees that her first rotation should be in vince ' s group doing modelling , etc . this will give her the broadest experience for a first rotation . i ' m sure the other person in question , vikas , will do very well in hunter ' s group . thanks for your help . jeff",0 +"Subject: visiting enron dr . kaminski , i would like to thank you very much for taking care of amy and me during our trip to houston . what i saw at enron communication was nothing short of revolutionary . more than that , i was impressed with the drive of the people , their kindness , and their proficiency . i look forward to meeting you again in stanford during the last weekend of february . i will send you an email next week , so that we can arrange a meeting between you and prof . bambos . all the best wishes , giuseppe - - : : giuseppe a paleologo : : http : / / www . stanford . edu / ~ gappy "" what a waste it is to lose one ' s mind . or not to have a mind is being very wasteful . how true that is . "" - vice president dan quayle winning friends while speaking to the united negro college fund , 5 / 9 / 89 -",0 +"Subject: credit exposure model bill , alex and i are working on the credit exposure model . we finished the initial design issues regarding input and output . we would like to have a meeting with you to seek feedback . we also preceeded to write the underlying model . so feedback at early stage can be important for the later development . paulo issler is working on the short term enhancement to the credit loss model : adding asian option to the model built by vasant and amitava . let me know when is a good time for us to meet . zimin",0 +"Subject: please read mike : enron is one of only a handful of institutions that could facilitate the following ( see attached ) . call to discuss if you ' re interested . best regards , - pressrelease . pdf - monetization . pdf",0 +"Subject: a "" bit "" of history on the fourth of july hello everyone : vince asked me to send this to you . it definately is eye opening and heart wrenching . we sometimes forget the price that was paid for our wonderful country . have a wonderful 4 th of july ! shirley",0 +"Subject: london fyi research weather link vince - fyi research ' s customer base growing by the hour ! - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 10 / 2001 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : stephen bennett @ enron 04 / 10 / 2001 09 : 02 am to : annette harris / lon / ect @ ect cc : tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron subject : research weather link http : / / enaresearch . corp . enron . com / from here - there is a drop down menu at the top left . the "" weather "" tab - "" main weather page "" is the full support site for the houston gas traders . look under the "" european weather "" tab "" main europe weather "" page for what we ' ve started doing here . let us know how we can build this to better meet your needs . . . steve stephen bennett senior meteorologist enron research london through april 27 : ext - 34761",0 +"Subject: allocation schedule shirley , will you check with vince on the support schedule for me ? i need to get the support to the bus in order to get them to agree on the 2001 billing . if you have any questions , call me . thanx . - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 01 / 16 / 2001 01 : 49 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - becky pham 01 / 02 / 2001 11 : 12 am to : vince j kaminski / hou / ect @ ect cc : subject : allocation schedule we spoke prior to the holiday and you were working on a list on support names and projects that research is working on for various bus . can you tell me how you are doing on that ? sarah brown , my manager , had a meeting with corp and they are disputing the billing we are proposing to bill to them ( $ 1 . 9 m ) . their argument is that they are going to bill ena back anyway ; therefore , they have agreed to take 40 % of the amount we intented to bill them in 2001 , which is approximately $ 760 k . if you have any questions , please call . thanx .",0 +"Subject: charlie weldon charlene , thank you for accomodating our request to start charlie weldon in his rotation in the research group earlier than the incoming associate official start date of august 7 th . as we discussed , the business purpose for this request is related to the project we have earmarked for him , which is linked to the hurricane season , which starts in june . and you have my e - handshake that we will release him to participate in the regularly organized orientation activities scheduled for august . we expect he will report on wednesday , june 21 st . thanks again , - - mike roberts",0 +"Subject: re : status clayton , we can discuss your request when i come back to the office on monday . regarding the trip to portland . such a trip requires an explicit prior permission from your boss , myself in his absence , or stinson in my and vasant ' s absence . in case you did not ask for such a permission before , the request is denied . vince clayton vernon @ enron 07 / 20 / 2000 03 : 12 pm to : vasant shanbhogue / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : status vasant - i hope you had a wonderful vacation back home , and are rested and recovered from the long flight back . i wanted to give you an update of the eol project , the gas model , and of my intentions here at enron . software ( in compiled c on the unix platform ) has been developed and debugged to listen to the eol trades , process them , book them , and file them away . in addition , software has been developed and debugged to mark these to market on a continual basis , and to store the entirety of open positions on eol in a dynamic matrix facilitating analysis . it has yet to get back with me on how the software can be informed of those trades ultimately rejected for credit purposes . these data files are stored in a format for reading by excel or by sas , for which i have written the data step program and basic tabulation routines elucidating the structure of the data . i am in the process of documenting all of this for you . with regards the gas model and its slow performance on the compaq , dell has agreed to loan me one of their competing machines to the compaq , to see if the performance issue of the lp is related to the compaq . i have been researching this issue with it here and with compaq and dell . the new machine will be here any day now ( no financial obligation to anyone ) , and i will be able to immediately ascertain whether the problem the model is having is compaq - specific . i am also in the process of documenting the gas model for you . i ' ve tried to do my best for you , vasant , but i have been frustrated by not only the death of my mother but some internal systems in it here . just the other day , sas could not open a full query of the eol database because there wasn ' t enough free space on the server ' s hard drive for the workfiles . in discussing some of these issues with some good friends of mine in power trading , people whom i have known for over 10 years , they indicated they were ubiquitous here . the power traders have similar pc ' s to my new one , and they have complained from day 1 that theirs are slower than their old ones . also , there remains a large frustration with the development of data warehouses ; during my brief tenure here it has gone through two differing proposals as to how to address this . when i have been told of tools available for real - time data harvesting , my requests for such have typically been met with "" well , we have it , but we haven ' t really tested it yet . "" an example is the weather : we still do not record to disk the hourly nws observations from the goes satellite . my interests here are to help enron to do well , because i will do well only if enron does well . these aren ' t empty words - my ira is 100 % invested in the enron stock fund . i believe my best contributions to enron will be in the areas of systems as well as modeling , and the difficulty working in the research group , in terms of systems development , is that , frankly , few people at enron seem to care what a researcher thinks about our systems . we aren ' t directly generating revenues for enron , and we aren ' t really their customers , except in our relatively small deparrtmental infrastructure expenses . as it happens , power trading posted an opening for a modeling and forecasting person , and i spoke with them and they asked me to take the job , reporting to george hopley . it is a wonderful opportunity for me , vasant , as they are interested in large system modelng of power grids as well as improving their traders ' access to real - time fundamentals data . i was completely candid with kevin presto regarding my shortcomings here in research - i told him you were disgusted with me because i repeatedly failed to meet time deadlines . they also understand i have yet to be at enron for 1 year , and thus may only bid on a job with your permission . we agree the move is good for enron ; we all work for enron , and your acquiescence to the move does not endorse it but merely permit it . they are comfortable with me - they have known me for years as a hard worker , honest and unpretensive . they have already ordered a state - of - the - art unix workstation and server for me , and they have told me they will commit whatever resources are necessary for me to be successful , including hiring an analyst to work for me . and , i have already been able to teach their analysts improved techniques for data harvesting and analysis i have learned here . so , i am requesting your permission to bid for this job opening . it would be a lateral move in position and salary , and i would commit to you to help you in any way possible in the future with regards the gas model or the eol database . i will continue to work on their improvement , and complete their documentation . as it happens , i am away on enron business in portland monday and tuesday , and will be back wednesday . i had wanted to talk face - to - face instead of by email , but enron business supercedes - i am on a team designing the data warehouse for floor trader support . clayton .",0 +"Subject: california power update 1 / 17 / 01 pt . iii 1 . california ag exploring investigation of power profits sources report that the california attorney general ' s office , in a meeting yesterday , ordered a review of the federal profiteering statute . in keeping with the recent rhetoric by gov . davis , this action is almost certainly directed toward investigations of profits made by generators and marketers . 2 . more detail on bankruptcy - creditors concerned about lengthy "" cure period "" the generators want to limit their exposure as general creditors in a chapter 11 proceeding . their ability to their exposure depends on the "" cure period "" for making good on a defaulted payment , which would be dictated by the specific contract terms . if the "" cure period "" - that is , the time the utilities have available to make up for missed payments before the generators or the power exchange can take them to court - is a short period of time , for the sake of argument 30 days , then the utilities ' creditors have to swallow another 30 days of accumulated ( impaired ) receivables before they can move to the more desirable position of postpetition suppliers ( in which bills do get paid , as would be directed by the bankruptcy court judge ) . if , however , the utilities have a longer "" cure period "" , for the sake of argument 60 days , then their creditors will effectively have to swallow 60 days of accumulated impaired receivables on which they will ultimately have to take a substantial haircut .",0 +"Subject: weather derivatives : under cover - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 06 / 01 / 2000 12 : 53 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : lucy ortiz 06 / 01 / 2000 08 : 58 am to : mark tawney / hou / ect @ ect , steven vu / hou / ect @ ect , brando hayden / hou / ect @ ect , david kistler / hou / ect @ ect , gary taylor / hou / ect @ ect , paul r henry / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , rajib saha / hou / ect @ ect , michael nguyen / hou / ect @ ect , tony harris / hou / ect @ ect , seth hurwitz / corp / enron @ enron , timothy m norton / hou / ect @ ect , nick mooney , ingrid wees , catherine woolgar / lon / ect @ ect , victoria bedingfield , raymond yeow / enron _ development @ enron _ development , christian cc : subject : weather derivatives : under cover - - - - - - - - - - - - - - - - - - - - - - forwarded by lucy ortiz / hou / ect on 06 / 01 / 2000 08 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - djcustomclips @ djinteractive . com on 06 / 01 / 2000 09 : 21 : 18 am please respond to nobody @ maill . djnr . com to : 126812 @ mailman . enron . com cc : subject : weather derivatives : under cover business under cover martin waller 05 / 31 / 2000 the times of london 2 w 31 ( copyright times newspapers ltd , 2000 ) corney & barrow , the mainly city wine bar chain , is going into the derivatives market . the chain is thought to be the first in the hospitality industry to take a position against our atrocious weather . sarah heward , the managing director , got the idea after meeting a bunch of customers who had just left garban to set up their own business , speedwell weather derivatives . about half her wine bars have outside terraces which have understandably not proven too popular of late . "" they set me up with a hedge - my counterparty is enron us , "" says heward . this safeguards a modest pounds 15 , 000 of turnover . folder name : weather derivatives relevance score on scale of 100 : 94 to review or revise your folder , visit http : / / www . djinteractive . com or contact dow jones customer service by e - mail at custom . news @ bis . dowjones . com or by phone at 800 - 369 - 7466 . ( outside the u . s . and canada , call 609 - 452 - 1511 or contact your local sales representative . ) copyright ( c ) 2000 dow jones & company , inc . all rights reserved",0 +"Subject: interview schedule for stephen bennett attached please find the interview packet for the above - referenced person . the interview will happen friday august 4 , 2000 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sean grady 58701",0 +"Subject: news article on enron india : enron aftermath business line - 02 / 21 / 2000 abhay mehta copyright ( c ) 2000 kasturi source : world reporter ( tm ) - asia intelligence wire power play a study of the enron project * publishers : orient longman , new delhi * price : rs . 195 the enron power project at dabhol in ratnagiri district of maharashtra has been mired in nationwide controversy ever since the inception of the project proposal in 1992 ; and the sordid tale ends only in 1997 , with the supreme court of india refusing to even admit an appeal against the bombay high court decision , of december 1996 , which while commenting that "" this case has highlighted to the people as to how even after 50 years of independence , political considerations outweigh the public interest and the interest of the state and to what extent the government can go to justify its actions not only before the public but even before the courts of law "" - yet dismissed a public interest petition against the project on the ( purely technical ) ground of res judicata , even though new facts , new arguments , new evidence of the violation of the laws of the land had been advanced by the petitioners . the fact that the fresh violations of the law were not even considered and recorded , despite the petitioners adducing the required evidence , can only be termed as strange , perhaps bizarre . abhay mehta ' s simple , factual documentation - in fact a chronological narration - of all events , including the process of bending all rules , of subverting the law for promoting a project involving unparalleled future liabilities for maharashtra , indeed for the whole of india - is not only masterly , it is devastating . it is a short , pithy book which deserves to be read from cover to cover by all thinking citizens of this country . barring the concluding chapter , the epilogue , there are no personal comments , only facts , disseminated from the original papers , mostly ' secret ' documents . all documentation has been carefully , faithfully recorded , including extracts from supposedly ' top secret ' minutes of cabinet committee meetings ; and the specific violations of the law ( which were opposed by a few public spirited civil servants , much to their disadvantage ) have been pointed up . apart from an introductory ' primer on electricity ' - introduced for the benefit of the layman , explaining some technical issues relating to electricity generation , transmission and distribution - and the background of the events of 1991 , the foreign exchange crisis , and the aftermath of the crisis , the other fifteen chapters , three appendices and fourteen annexes of the small book ( of 226 pages ) packs in an enormous volume of factual information . the strange saga of the enron project , and the sheer magnitude of the future problems this one single project poses for the country , need to be briefly recounted here , for essentially , it is the coming generation which would have to face the problem . the mseb has contracted to buy - and if not used , to pay for - 2000 mw of electricity ( for a period of 20 years ) from the dabhol power company ( the legal entity set up by enron , as an unlimited liability company registered in india , through a maze of intricate crossholdings of equity by half a dozen or more ' front ' companies registered in various tax - free havens . abhay mehta has indicated the total payments to enron over 20 years amount to $ 35 billion ( at 1998 exchange rates , around rs . 1 , 25 , 000 crores ) over the life of the project . one must record that : ( a ) crude oil / oil product prices have as of writing , more than doubled since the above calculations were made . a per the ' doctored ' figures presented by the company ( and its advocate ) , the charge per unit of electricity supplied , at the 1998 level of prices , was to 4 . 39 cent ( per unit ) as ' capacity charge ' and 3 . 43 cents ( per unit ) for ' energy costs ' . the former is indexed to the us inflation rate , and the latter to international fuel prices . the former may be assumed to have gone up only marginally ( rounded to 4 . 4 cents per unit ) ; we know that fuel prices have more than doubled internationally over 1999 . assuming the ' fuel costs ' to have increased less than 100 per cent - even though international prices have more than doubled - we may assume ( for 1999 ) energy costs of 6 . 85 cents per units , making for a total payment of 11 . 25 us cents per unit of electricity supplied by the dabhol power company ( dpc ) to mseb in late 1999 , in phase i of the project . within another two years , at 2000 mw , the annual offtake ( for 365 days x 24 hours / day ) would be 17 . 52 billion kwh ; and at 11 . 25 cents per unit , the total payment amounts to $ 1 . 97 billion annually ; for 20 years , this workout to $ 39 . 4 billion . this is not counting any further inflation in either energy costs or capacity charge . at today ' s exchange rate - about rs . 43 . 5 per us dollar - in rupee terms this works out to wore than rs . 175 , 000 crores ( as compared to rs . 125 , 000 crores indicated by abhay mehta ) . this is the cost to mseb in rupee ; and to the country in foreign exchange as payment to just one project authority , for supply of part of the power required in maharashtra . the really significant point to note in this connection is that this payment - and considerably more , depending on ( a ) future increase in ' capacity charges ' depending on us inflation rate , and international prices of lngaphtha ( for ' fuel costs ' ) , and ( b ) depreciation of the exchange rate of the rupee vis - a - vis the us dollar - is obligatory ; the assets of the mseb , the maharashtra government indeed , all assets of the government of india ( present and future ) are mortgaged to enron , by way of sovereign guarantees extended by both governments . the other significant point in this connection is that - as predicted by all independent indian experts as well as the world bank - the enron project he forced the mseb to cut its offtake of tata electric company ' s and its own much cheaper thermal power already ; in a postscript dated august 1999 , abhay mehta has indicated that already , the mseb had stopped buying between 200 and 250 mw of power from tata electric ( available at rs . 1 . 80 per unit ) and has had to backdown its own chandrapur thermal power station ( cost of this power being rs . 1 . 20 per unit ) , while forced to buy more expensive enron power at rs . 5 per unit . the loss to mseb on this count alone comes to rs . 460 crore per year . this had in fact , been predicted earlier even by the world bank . it is pointless here to go into the details of how precisely all this was contrived , by a deliberate campaign of ' disinformation ' , of blatant lies , of sidelining of expert opinion , not only of independent experts but also the goi ' s own official advisers in this matter , namely , the central electricity authority as well as that of the world bank , which was resolutely opposed to this project . the detailed facts , the letters exchanged in the above context , the pressure tactics adopted , the flouting of all procedures norms , even statutory provisions of the electricity ( supply ) act , are all carefully documented by abhay mehta . mehta correctly concludes : "" we frequently blame external agencies - like the world bank - for all our problems , when , as a matter of fact , we ourselves are our own worst enemies . in the instant case , the world bank not only advised the government of india against the project , it stood resolutely firm in its assessment of the total inadvisability of this project . in fact , one must note here that in 1996 , neighbouring pakistan , which had entered into a somewhat similar mou with enron , cancelled the project ( and the power purchase agreement with enron ) , for a $ 670 million , 782 mw residual oil - fuelled power plant , even though that agreement had stipulated enron power supply at a fixed rate of 6 . 4 us cents per kwh over a 30 year period . ( note the estimated rate of 11 . 25 cents per kwh for dabhol power for the mseb in december 1999 , which works out to around rs . 5 per unit ) . one could go on ; but one must leave the reader to go through abhay mehta ' s crisp , factual , matter of fact narration of the enron saga , and switch over to the point made by him in the epilogue to the story , about ' the next round of scams ' . for quite some time , the ruling elite in india has been intent on ' privatising ' all public enterprises ; and even ' utilities ' are no exception . the ' unbundling ' of infrastructure with a view to privatisation of all the ' profitable ' segments . all this - as per the current ' disinformation campaign ' - is supposedly in the interest of rationalisation and greater efficiency of poorer supply . the author has referred in this context to the acquisition from the government - by the torrent group - of the ahmedabad and surat electricity companies at less than one - tenth of the market value of the assets of thee facilities . again , much like the enron saga , all objections by the finance department of the gujarat government were overruled . and , abhay mehta has predicated that this onslaught - the break - up of power utilities into three segments , generation , transmission and distribution , - with a view to their privatisation is likely to be the new thrust by the ruling elite , for reasons that do not require to be spelt out . though mehta had the examples of the torrent group takeover of ahmedabad and surat electricity companies , and of the break up of the orissa state electricity board before him , yet his statement can be stated today to be prophetic ; the upseb is now on the firing line . the recent strike by the workers and engineers of the upseb in protest of the announced up government decision to trifurcate the upseb ; and the union minister of power , mr . rangarajan kumaramangalam ' s statement that the upseb is a loss making , inefficient unit and that privatisation of the facilities after the trifurcation - need to be noted . that 40 per cent of the dues of the upseb are from the up government ; that tariffs for up electricity supply are fixed by the up government and not by the upseb ; that the upseb does not have the cash even for routine maintenance as a result of the above - these are facts that nobody is prepared even to consider . that the remedy for upseb lies in a different kind of reform and restructuring , is not even to be debated . the whole idea is to privatise the profitable segments , and to leave the public sector entity with all the problem areas , including rural energy supply . it is against this background that abhay mehta ' s book needs to be widely disseminated , read , and its implications understood . what is at stake is not a ' utility ' here or a psu there . what is at stake is the future of some 80 per cent of the have - nots in this country . what is at stake is the ' pillory ' of the assets of the nation for private aggrandisement . arun ghosh",0 +"Subject: re : your visit to enron frank , great idea . i think it will be an opportunity to brainstorm about the problem . vince "" francis x . diebold "" on 11 / 06 / 2000 04 : 08 : 26 pm to : vince . j . kaminski @ enron . com cc : subject : re : your visit to enron vince , now that ' s an interesting idea - - the problem is that i don ' t really have any work yet , as i am just now beginning ! but yes , why don ' t i put a talk together as to what i ' m thinking about , why it ' s important , why existing methods may be inadequate , and how i think econometricians can contribute . does that sound ok ? f . vince . j . kaminski @ enron . com wrote : > frank , > > thanks a lot . are you planning to make a general presentation on your work > in the weather area ? if this is the case , i would > invite to our lunch meeting the traders from the weather derivatives > desk . > > vince > > "" francis x . diebold "" on 11 / 04 / 2000 08 : 47 : 41 am > > to : shirley . crenshaw @ enron . com > cc : vince kaminski > subject : re : your visit to enron > > shirley , > > the 21 st is perfect . i will go ahead and purchase my plane tickets . would > you > please make me a hotel reservation for the night of the 21 st ? > > many thanks , > > frank diebold > > shirley . crenshaw @ enron . com wrote : > > > good morning professor diebold : > > > > i am vince kaminski ' s assistant and he has forwarded your emails to me > > for scheduling purpose . unfortunately , we have a conflict on december > > 14 th . can you possibly come on the 21 st ? > > > > i hope you have not already made your reservations . if i can do anything > > to assist you , please let me know . > > > > best regards , > > > > shirley crenshaw > > administrative coordinator > > enron research group > > 713 - 853 - 5290 > > > > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on > 11 / 03 / 2000 > > 09 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > > vince j kaminski > > 11 / 02 / 2000 04 : 30 pm > > > > to : "" francis x . diebold "" @ enron > > cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect > > subject : re : visit ? ( document link : shirley crenshaw ) > > > > frank , > > > > dec 14 would be better for us . we have already scheduled > > an internal presentation on december 7 . please , go ahead and make a > > reservation . > > the best place to stay is hyatt regency downtown or doubletree downtown > > ( within a walking distance to enron ) . it is important to specify the > > downtown > > location for both hotels . > > > > vince > > > > "" francis x . diebold "" on 11 / 02 / 2000 03 : 00 : 49 pm > > > > to : vince . j . kaminski @ enron . com > > cc : > > subject : re : visit ? > > > > sounds good , vince . how about dec 7 ? the roundtrip coach fare , > regardless > > of > > airline , is about $ 1900 . i hope that won ' t break the bank . once i have > > your > > approval , i ' ll go ahead and book it . best , frank > > > > vince . j . kaminski @ enron . com wrote : > > > > > frank , > > > > > > yes , i would be very interested in meeting with you in houston in > > december . > > > the best day for visit would be thursday when my group has a lunch > > meeting > > > and you could meet the rest of the research unit . > > > > > > please , let me know what day would work for you . we shall be very glad > to > > > cover the cost of your trip . > > > > > > vince > > > > > > i > > > > > > "" francis x . diebold "" on 10 / 31 / 2000 01 : 01 : 11 pm > > > > > > to : vince kaminski > > > cc : > > > subject : visit ? > > > > > > hi vince , > > > are you still interested in my visiting for a day , perhaps in dec or > > > jan ? i have begun a project on unobserved - components modeling of > > > weather patterns , so it would be productive and fun to compare notes . > > > best , > > > frank > > > > > > - - > > > francis x . diebold > > > wp carey professor > > > > > > department of economics > > > university of pennsylvania > > > 3718 locust walk > > > philadelphia , pa 19104 - 6297 > > > > > > fdiebold @ sas . upenn . edu > > > http : / / www . ssc . upenn . edu / ~ diebold > > > > > > ( 215 ) 898 - 1507 telephone > > > ( 215 ) 573 - 4217 fax > > > > - - > > francis x . diebold > > wp carey professor > > > > department of economics > > university of pennsylvania > > 3718 locust walk > > philadelphia , pa 19104 - 6297 > > > > fdiebold @ sas . upenn . edu > > http : / / www . ssc . upenn . edu / ~ diebold > > > > ( 215 ) 898 - 1507 telephone > > ( 215 ) 573 - 4217 fax > > - - > francis x . diebold > wp carey professor > > department of economics > university of pennsylvania > 3718 locust walk > philadelphia , pa 19104 - 6297 > > fdiebold @ sas . upenn . edu > http : / / www . ssc . upenn . edu / ~ diebold > > ( 215 ) 898 - 1507 telephone > ( 215 ) 573 - 4217 fax - - francis x . diebold wp carey professor department of economics university of pennsylvania 3718 locust walk philadelphia , pa 19104 - 6297 fdiebold @ sas . upenn . edu http : / / www . ssc . upenn . edu / ~ diebold ( 215 ) 898 - 1507 telephone ( 215 ) 573 - 4217 fax",0 +"Subject: re : invitation to 2001 energy finance conference - the university of texas at austin steve , no problem . it was a very short meeting ( most people were out ) . yes , i will be in houston during the week of the conference . see you in austin and in houston . vince steven leppard 01 / 19 / 2001 06 : 03 am to : vince j kaminski / hou / ect @ ect cc : subject : re : invitation to 2001 energy finance conference - the university of texas at austin hi vince i see you ' re speaking at the austin conference . will you be in the houston office during the earlier part of the week ? if so , i may look into arranging a trip out to meet you guys , and take in the conference too . sorry i didn ' t dial in to the updat emeeting on tuesday - i was delivering prc feedback to my team . steve - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 19 / 01 / 2001 12 : 04 - - - - - - - - - - - - - - - - - - - - - - - - - - - "" angela dorsey "" on 10 / 01 / 2001 21 : 06 : 18 to : "" angela dorsey "" cc : "" ehud ronn "" , "" sheridan titman ( e - mail ) "" subject : invitation to 2001 energy finance conference - the university of texas at austin colleagues and friends of the center for energy finance education and research ( cefer ) : happy new year ! hope you all had a wonderful holiday season . on behalf of the university of texas finance department and cefer , we would like to cordially invite you to attend our : 2001 energy finance conference austin , texas february 22 - 23 , 2001 hosted by the university of texas finance department center for energy finance education and research dr . ehud i . ronn and dr . sheridan titman are currently in the process of finalizing the details of the conference agenda . we have listed the agenda outline below to assist you in your travel planning . each conference session will be composed of a panel discussion between 3 - 4 guest speakers on the designated topic . as supporters of the center for energy finance education and research , representatives of our trustee corporations ( enron , el paso , reliant , conoco , and southern ) will have the $ 500 conference fee waived . the conference package includes thursday evening ' s cocktails & dinner and hotel / ut shuttle service , as well as friday ' s conference meals , session materials and shuttle service . travel to austin and hotel reservations are each participant ' s responsibility . a limited number of hotel rooms are being tentatively held at the radisson hotel on town lake under the group name "" university of texas finance department "" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the latter evening for those who choose to stay in austin after the conference ' s conclusion ) . to guarantee room reservations , you will need to contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday , january 22 nd , and make your reservations with a credit card . please let me know when you have made those arrangements so that i can make sure the radisson gives you the special room rate of $ 129 / night . please rsvp your interest in attending this conference no later than january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as seating availability is limited . please feel free to extend this invitation to your colleagues who might be interested in attending this conference . center for energy finance education and research program of the 2001 energy finance conference february 22 - 23 , 2001 thursday , feb 22 : 3 : 00 p . m . reserved rooms at the radisson hotel available for check - in 5 : 30 p . m . bus will pick up guests at the radisson for transport to ut club * 6 : 00 p . m . cocktails , ut club 9 th floor 7 : 00 p . m . dinner , ut club 8 : 00 p . m . keynote speaker 9 : 00 p . m . bus will transport guests back to hotel friday , feb 23 : 7 : 45 a . m . bus will pick up at the radisson for transport to ut 8 : 30 a . m . session 1 - real options panelists : jim dyer , ut ( chair ) sheridan titman , ut john mccormack , stern stewart & co . 10 : 00 a . m . coffee break 10 : 15 a . m . session 2 - deregulation panelists : david eaton , ut ( chair ) david spence , ut jeff sandefer , sandefer capital partners / ut peter nance , teknecon energy risk advisors 11 : 45 a . m . catered lunch & keynote speaker 1 : 30 p . m . guest tour - eds financial trading & technology center 2 : 00 p . m . session 3 - risk management panelists : keith brown , ut ( chair ) vince kaminski , enron alexander eydeland , southern co . ehud i . ronn , ut 3 : 30 p . m . snack break 3 : 45 p . m . session 4 - globalization of the energy business panelists : laura starks , ut ( chair ) bob goldman , conoco ray hill , southern co . 5 : 15 p . m . wrap - up 5 : 30 p . m . bus picks up for transport to airport / dinner 6 : 30 p . m . working dinner for senior officers of energy finance center trustees * we have made arrangements to provide shuttle service between the radisson hotel and ut during the conference . however , if you choose to stay at an alternative hotel , then transportation to conference events will become your responsibility . * * * * * * * * * * * * * * angela dorsey assistant director center for energy finance education & research the university of texas at austin department of finance , cba 6 . 222 austin , tx 78712 angela . dorsey @ bus . utexas . edu * * * * * * * * * * * * * *",0 +"Subject: wharton risk center advisory committee meeting june 14 , 2001 dear vince , attached please find a prelimary agenda for the wharton risk management and decision process center advisory committee meeting taking place june 14 , 2001 . howard kunreuther and paul kleindorfer co - directors for the center would like to extend to you the opportunity to serve as an advisory committee member . if you could kindly let me know your attendance status and if you are interested in serving as soon as possible i would be very grateful . we are presently working on the spring edition of the center ' s newsletter which always prints a list of members . we would like to add your name , title and company . thank you , theresa > ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ theresa convery administrative assistant risk and decision processes center the wharton school of the university of pennsylvania ( 215 ) 898 - 5688 / fax : ( 215 ) 573 - 2130 tconvery @ wharton . upenn . edu - agenda - draft . doc",0 +"Subject: meeting with petronas rick , i was contacted by petronas who requested a meeting with enron on risk management . i have met with them a few years ago and they want to discuss with us their progress implementing risk management practices . can we arrange for them a standard presentation , like the one we have for banks ( you or david port , bill bradford , research ) ? unfortunately , they gave us no choice as far as the timing is concerned ( given a very tight schedule ) . they want to visit on thursday , feb . 8 , at 10 a . m . i shall take them out to lunch after the meeting . i shall also contact jeff shankman and john nowlan to arrange a short courtesy meeting with them . vince",0 +"Subject: re : referral vince : according to alex , li xiao gave your email address to alex . did li xiao talk to you first about alex ? i don ' t know for certain . alex contacted you in march , interviewed once , but nothing came of it . after gary left , li xiao suggested to alex that he try again , and the rest is history . grant . vince j kaminski 02 / 15 / 2000 08 : 58 am to : grant masson / hou / ect @ ect cc : subject : re : referral grant , did li xiao refer alex to us ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 15 / 2000 08 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - - linda vargo 02 / 14 / 2000 02 : 39 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : referral can you advise as to whether or not li xiao referred alex to you last summer . i need to know this in order to process an employee referral ( under old plan ) for her . - - - - - - - - - - - - - - - - - - - - - - forwarded by linda vargo / hou / ect on 02 / 14 / 2000 02 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - li xiao @ enron 02 / 14 / 2000 11 : 19 am to : linda vargo / hou / ect @ ect cc : subject : re : referral hi , linda , i wonder if you heard from vince kaminski regarding my referral for alex huang . thanks , li x 39635 - - - - - - - - - - - - - - - - - - - - - - forwarded by li xiao / corp / enron on 02 / 14 / 2000 11 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - - linda vargo @ ect 01 / 17 / 2000 04 : 29 pm to : li xiao / enron _ development @ enron _ development cc : subject : re : referral i am waiting for feedback from vince kaminsky . as soon as i know something , i will advise .",0 +"Subject: re : mec mark , one option is to talk to a number of physicists in my group who might be interested . vince enron investment partners from : mark lay 07 / 26 / 2000 07 : 57 am to : rex shelby / enron communications @ enron communications , steven j kean / hou / ees @ ees , mike mcconnell , vince j kaminski / hou / ect @ ect , philippe a bibi / hou / ect @ ect cc : kenneth lay / corp / enron @ enron , fabricio soares / hou / ect @ ect subject : mec thank you for participating in yesterday ' s meeting . we spoke with harvey and jim after the meeting and they took to speed to market comments to heart . there is an opportunity for enron to participate with mec in the early development of their company , but it seems the one thing they want is the one thing we also want , people . i would appreciate your thoughts and comments on the possiblity of creating a small team that could work directly with mec as part of a potential investment and strategic relationship . given our resource constraints , this would most likely be part of the organization that sees the greatest strategic impact from mec ' s development . mark x 37408",0 +"Subject: karolyi dinner tonight i ' m writing to confirm our dinner plans with andrew karolyi for this evening . we have reservations for 7 pm at damian ' s , 3011 smith st . , 713 . 522 . 0439 dave * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: your approval is overdue : access request for tom . halliburton @ enron . com this request has been pending your approval for 2 days . please click approval to review and act upon this request . request id : 000000000003619 request create date : 9 / 27 / 00 9 : 18 : 21 am requested for : tom . halliburton @ enron . com resource name : unlisted application / software resource type : applications",0 +"Subject: fw : eprm article hi vince , i ' m wondering if you got this last week ? if you could have a quick look and get back to me with any comments that would be great - robin is chasing me on this one ! best regards . chris . - - - - - original message - - - - - from : chris strickland to : sent : wednesday , december 06 , 2000 4 : 16 am subject : eprm article > hi vince , > > hope things are fine with you . i ' m sorry that i only ever write to you when > i ' m after something , but could you look at this simulation article - the > next installment in the eprm articles . > > many thanks and best regards . > > chris . > > > > - - - - - original message - - - - - > from : > to : ; ; ; > > sent : friday , september 08 , 2000 4 : 23 am > subject : re : var article > > > > les , > > > > the revised version of the var article looks fine . > > > > vince > > > - eprm _ 04 _ sim _ mr . zip",0 +"Subject: uk gas desk hi vince & stinson , for your information , jonathan whitehead is moving to the japan opportunity - tomorrow is his last day as head of uk gas trading . the new head of uk gas is moving over from continental trading team , and his name is david gallagher . regards , anjam x 35383",0 +"Subject: re : approval for restricted websit : web _ research _ pub approved . vince kaminski information risk management 05 / 02 / 2000 09 : 04 am to : vince j kaminski / hou / ect @ ect cc : subject : approval for restricted websit : web _ research _ pub per kevin moore , please approve elena chilkina ' s access for the following restricted website : web _ research _ pub . thank you , information risk management ( et ) - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 05 / 02 / 2000 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system directory line item pending access processing directory name : website : web _ research _ pub service type : grant expiration date : comments : will send to vince kaminski for approval . security processing processing status : e - mail message : comments / justification : general information request : kgme - 4 jtf 4 c requested by : kevin g moore / hou / ect phone : 713 / 853 - 4710 requested for : elena chilkina / hou / ect employee type : company : 100038 rc # : 0011 priority : high comments / justification : she will need the same as michael sergeev . a few has been listed there may be some others that are not listed . please apply . editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 1 information risk management 05 / 02 / 2000 09 : 03 : 15 am",0 +"Subject: contact info . during my vacation cell : 011 - 91 - 984 - 9022360 ( try this first ) hyderabad : 011 - 91 - 40 - 7114833 vijayawada : 011 - 91 - 866 - 430928 ( dec 28 - jan 8 ) bombay office : 011 - 91 - 982 - 1038711 also , i will be checking my email regularly ( as long as i can get the connected ) . have a great christmas and holidays . i will see you all in the new year ! best wishes krishna .",0 +"Subject: re : high - end desktop computing ? shirley , yes , it will be a swap of one machine for another . vince shirley crenshaw 03 / 17 / 2000 12 : 17 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : high - end desktop computing ? vince : is this ok to order ? - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 17 / 2000 12 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - clayton vernon @ enron 03 / 17 / 2000 09 : 34 am to : mark davidson / corp / enron @ enron , shirley crenshaw / hou / ect @ ect cc : subject : re : high - end desktop computing ? mark - shirley will order an 800 mhz machine with 512 mb of ram , and a large ( 17 "" + ) flat - screen monitor for me . clayton mark davidson 03 / 17 / 2000 08 : 52 am to : clayton vernon / corp / enron @ enron cc : shirley crenshaw / hou / ect @ ect subject : re : high - end desktop computing ? clayton - sorry it took so long to get back to you . there are a couple of things to keep in mind : - enron it supports enron equipment . - all equipment must be purchased through "" enron it purchasing "" our current high end desktop is a 800 mhz pentium iii machine with 128 m of ram . you can bump up the ram to whatever you feel is appropriate . when the lghz processors come out ( in the very near future ) that will become our standard . what we want to avoid is getting equipment that we do not have a image for . the "" image "" is the complete package of software that we put on a machine when it is deployed . if you go out and buy a machine that we do not have a image for , we can ' t support it for a multitude of reasons . hopefully this answered your questions / concerns . if not , please call me so that we can discuss this further . thanks mark davidson x 39038 clayton vernon 03 / 14 / 2000 03 : 39 pm to : mark davidson / corp / enron @ enron cc : subject : high - end desktop computing ? mark - i have developed a model for enron that requires ultra - high - end pc performance ( it does many calculations in excel ) , and my boss has authorized me to buy whatever pc i need . i ' m looking at the compaq 850 , but richard ( our floor rep ) says no pc ' s over the 600 series will be supported by it . i need to resolve this issue ; we are sophisticated buyers , we know the type of machine we want , and we have the money to pay for it . sincerely , clayton vernon manager , research",0 +"Subject: ieor monday seminar - october 23 , 2000 ? ? industrial engineering and operations research monday seminar ieor 298 - 1 - fall 2000 monday , october 23 , 2000 - - - - - - - - - - - - - - - - - - - - - - - - - - - - "" volatility of electricity prices - measurement and analysis of underlying causes "" dr . vincent kaminski managing director and head of research for enron corp . ? abstract : the last three years were characterized by exceptionally high volatility of the power prices in the us markets . the market developments have created a number of unique challenges for energy industry economists . one immediate question we have to answer is how to measure volatility of energy prices . although we can all agree that the prices in the power markets are characterized by high variability , the traditional measures used in financial economics ( annualized standard deviation of log price returns ) may not fit well electricity prices . the second challenge is to explain the sources of high price volatility and to answer the question to what extent it can be attributed to problems that can be addressed in the long run . such problems include flaws in market design that allow some market participants to abuse market power , limited availability and / or unequal access to transmission , temporary shortages of generation capacity . some factors underlying high volatility of electricity prices may be of permanent nature and may be a necessary price to pay for increased market efficiency and expanded customer choice . time and location : 3 : 30 - 5 : 00 p . m . - 3108 etcheverry refreshments : 3 : 00 p . m . - 4 th floor hallway",0 +"Subject: dr . rafael campo good morning , ? i have attached a press release that may be of interest to you . ? if you have any questions regarding it , or if we can be of assistance in any other way , please call me directly at 972 - 245 - 8300 . ? thanks and best regards , katheryn stalker ? risk limited corporation box 612666 ? ? dallas , texas 75261 ? ? usa ? ? ? tel : 972 . 245 . 8300 ? ? fax : 972 . 245 . 8318 ? ? ? www . risklimited . com - press release dr . rafael campo 5 - 2 - 01 . doc",0 +"Subject: re : visit to enron fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2000 09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 05 / 01 / 2000 04 : 26 : 30 am to : vince . j . kaminski @ enron . com cc : subject : re : visit to enron vince , how are you ? hope all is well . is there any chance we can schedule my visit to enron on friday , may 19 , or friday , may 26 ? by the end of april i was able to attract a top new student to work on the project . the other one for the coming year will be giuseppe . by spending the summer at enron , he will be in a position to bring the new one up to speed and create an intellectual team here at stanford to look at these problems . i must move ahead soon to put the project in place and get the work going . talk to you soon , nick vince . j . kaminski @ enron . com wrote : > > nick , > > we can close the loop on our commitment to support the research projects > before your visit to enron . > > my assistant , shirley crenshaw , will call you to set up a conference call > with me , stinson gibner , > and tom gros from enron broadband services to discuss all the isssues . > friday this week would work for > both tom and me . i think we need about 15 minutes . > > vince > > p . s . shirley , nick ' s phone number is 650 796 8163 ( cell ) , 650 - 725 - 5525 > ( office ) . > > nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm > > to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu > cc : > subject : visit to enron > > hello vince , > > it was nice seeing you at stanford and many thanks for the lunch > we had together . i really enjoyed our discussions , both at the > technical level and otherwise . > > i promised to send you an e - mail regarding possible dates for > a visit to enron . i delayed it for a week till my schedule was > clearer . let ' s see if we can get a match with your schedule - > mine is rather terrible : > > friday , 21 st of april looks good . but april 23 rd is easter > sunday , so that may make it difficult for some people at enron > to be around . let me know if that is the case . i am willing to > visit then , because the week after that i am scheduled to be in > japan and in the previous weeks i am all committed on fridays . > > friday , 19 th of may is the next possibility , but this probably > is too far out . the main problem is that i am operating within > a window of opportunity for attracting top students for this > research . this window closes by the end of april , and it would be > important for the student support funds to be in place then , so > that i can make hard commitments to students and attract top > talent . i am already reviewing files of students who have > approached me for phd advising , and i am in a mode of doing "" soft > commitments to star - level students "" to get this research and its > potential on their radar screen . top students are highly sought > after by advisors and i want to be an early player in this > competition . > > does my visit to enron have to happen before we can set up the > project and student support at stanford ? if so , doing it before the > end of april is important for getting top people . if the visit can > happen after we get the ball rolling , then we can schedule it in may . > i assume there will be multiple visits both ways when the project gets > going . please let me know what you think . > > best regards , > > nick",0 +"Subject: re : alp presentation christie , what about the invitation to dinner for gillis and whitaker ? vince christie patrick 04 / 10 / 2001 06 : 01 pm to : mgillis @ rice . edu , grwhit @ rice . edu cc : vince j kaminski / hou / ect @ ect , steven j kean / na / enron @ enron subject : alp presentation president gillis and dean whitaker , enron would be honored with your presense at the presentation set forth below . under the guidance of vince kaminski and his team here at enron , we are thoroughly enjoying working with this group of bright and enthusiastic rice students . we hope you can join us for the culmination of their significant efforts . please let me know - - thanks ! ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 10 / 2001 08 : 13 am to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: re : summary spreadsheet for data vendor research and model development hi , fyi here is an updated spreadsheet summarizing the data vendor research and model development . please let me know if any thing is missing , wrong , should be deleted , etc . thanks , iris - - - - - original message - - - - - from : salmon , scott sent : monday , april 09 , 2001 2 : 15 pm to : dhar , amitava cc : mumford , mike ; kirkpatrick , eric ; mack , iris subject : re : data for private firm model great work iris ! this gets us heading down the right direction and we ' ll have some project scope documentation asap . cheers , scott amitava dhar 09 / 04 / 2001 19 : 25 to : scott salmon / eu / enron @ enron , mike mumford / lon / ect @ ect , eric kirkpatrick / eu / enron @ enron cc : iris mack / enron @ enronxgate subject : data for private firm model the enclosed spreadsheet contains a summary of preliminary data search plan prepared by iris . we will talk about further progress during our conf . call on wednesday . > ",0 +"Subject: recruiting at cmu computational finance program vince , thanks for the prompt reply . i ' ll plan to call early next week . rick - - - - - original message - - - - - from : "" vince j kaminski "" to : "" rick bryant "" cc : "" vince j kaminski "" ; "" kevin kindall "" sent : friday , july 28 , 2000 9 : 05 am subject : re : recruiting at cmu computational finance program > > > rick , > > thanks for your message . i am familiar with the computational finance program > and value its high quality . > > please , call me next week . the best time is between 7 : 00 and 8 : 30 a . m . > cst . > > vince > > > > > > > > "" rick bryant "" on 07 / 26 / 2000 01 : 27 : 23 pm > > to : vince j kaminski / hou / ect @ ect > cc : "" kevin kindall "" , "" ken keeley "" , > "" sanjay srivastava "" > subject : recruiting at cmu computational finance program > > > > vince , > > greetings ! i am the director of the ms in computational finance program at > carnegie mellon . i am following up on a conversation i had with kevin > kindall , a graduate of our program , who gave me your e - mail address and > suggested i contact you as the individual making the recruiting decisions > for the research group at enron . > > in speaking with the director of the career opportunity center at the > business school , i am told that although an alison bailey from enron > ( mary . alison . bailey @ enron . com ) has arranged for a sizable block of rooms in > which to conduct interviews on campus on december 11 th , there is as yet no > indication of whether the comp finance students will have opportunity to > compete for these spaces . > > we are regarded by many in the industry as the top quantitative finance > program in the country . focused on derivative pricing , econometrics , var > and portfolio management , our graduates should be an excellent fit for your > business . i would be happy to talk with you further about our > rogram ( http : / / student . gsia . cmu . edu / mscf / ) as well as our students ' interest > in enron ( the name comes up a lot ! ) . also , if you are interested , we run a > "" speaker series "" on most friday ' s during the fall and spring that would > give you ( or another in your group ) the opportunity to address our students > in an area of interest . such a meeting would , i think , help you better > understand the careers our students are preparing to pursue as well as give > our students first hand knowledge of enron and its future . > > when might be a good time to contact you by telephone ? > > thank you for your time . > > rick > > richard l . bryant > director , computational finance program > carnegie mellon university > graduate school of industrial administration > pittsburgh , pa 15213 > phone / fax ( 412 ) 268 - 4592 / ( 412 ) 268 - 6837 > http : / / fastweb . gsia . cmu . edu / mscf > > > > > > > > > >",0 +"Subject: interview - credit derivatives ? ? ? ? ? ? ? ? ? ? ? ? ? ? dear vince : ? ? ? ? ? ? ? thank you for the invitation yesterday . it was a pleasure to meet you all and learn more about the group , it ' s structure and to some extent what you are involved in . please extend my thanks to all of them . ? ? ? ? ? ? ? i am particularly interested in the credit swap trading platform that enron has recently started . such a platform will provide unique visibility into the credit markets . as you suggested i tried to learn more about this from tanya . ? i would like to learn more and if possible meet other people more directly linked to the effort . ? ? ? ? ? ? ? just simple instruments like credit swaps will require serious modelling capability for the pricing and the hedging of these apparently simple intruments . the market visibility i mention above can be explored through credit derivatives trading successfully if enron possesses superior ( vis a vis morgan stanley , salomon smith barney , chase manhatan , etc . ) ? modelling technology in credit derivatives . i can and would like to ? consider the possibility of doing this for enron . i would like to help develop and participate in putting together that business . ? ? ? ? ? ? ? as i mentioned to you i have done some work in credit derivatives and am deeply familiar with virtually all the work of the principal academics in credit derivatives namely : duffie , lando , tuffano , duffee , das , lelland , etc . i have read carefully most of their work ( published as well as working papers ) on the subject to date . ? ? ? ? ? ? ? i look forward to hearing from you . ? ? ? ? ? ? ? best regards ? ? ? ? ? ? ? joao",0 +"Subject: enron opportunities dr . kaminski : ? here is my resume and cover letter . ? thanks , ? richard iles - enron cover and resume . doc",0 +"Subject: re : training courses shirley , no problem . vince shirley crenshaw 03 / 13 / 2000 12 : 08 pm to : vince j kaminski / hou / ect @ ect cc : subject : training courses vince : kevin moore and jose marquez would like to take a course entitled "" wellhead to burnertip "" which is scheduled monthly . the first course available would be may 18 th and the cost would be $ 600 . 00 each . is this ok ? thanks !",0 +"Subject: re : storage model : simple issues brad , here are my thoughts on your concerns . * you needs curve inputs . this is an it job . i can help you for the curves before the system is properly set up . * intrinsic value vs time value : the intrinsic value depends on how you allocate the volumes . if you have a rough idea about the allocation as you did in the spreadsheet , we can calucate the intrinsic value within the model . the difference between the total and the intrinsic will be the ( option ) time value . however , by pre - allocating volumes , you killed some options . in the storage model , volumes are allocated dynamically , therefore it is hard to distinguish the intrinsic vs . time value . * factor of loading : factor of loadings are used to give historical correlation matrix . the three factors correspond to paralle shift , slopping and curveture . the covariance matrix in the model is expressed in the form covar = row ( vol _ { i } ) * ( correl ( i , j ) ) * colum ( vol _ { j } ) where vols are the implied volatilities from the vol curve . ( correl ( i , j ) ) = l * l ' + residue ( small ) where l is the factor of loading matrix . so in a simple words , the factor of loadings ( say , 60 x 3 ) are a simplier way for us to remember the historical correlation matrix ( say , 60 x 60 ) . let me know if i can offer further help . zimin brad horn 02 / 15 / 2000 07 : 15 am to : zimin lu / hou / ect @ ect cc : sandra henderson / hou / ect @ ect subject : storage model : simple issues zimin : thanks for your time with the revised storage valuation . your right to point out the similarity to market bids . here are some basic questions tied to implementation and calibration : model infrastructure / it support : i obviously need to re - build my link to the forward curves as the model is not working in my new location . short - term ( aprox 1 month ) , i ' d like to establish a link to the ena database egsprod 32 in order to fetch the long - dated price and volatility curves . my link to ena forward curves would then be quickly severed in favor of the curves generated by the new bridgeline entity ( database name and data structure yet to be defined ) . however , its not clear to me what is required in this two stage process to support your model . any definition of model input or minimum support requirements you provide is appreciated . i ' ll then work with sandra henderson , an enron employee providing our it support , to ensure the model continues to work regardless any downstream system changes that may take place as we build and establish our separate trading systems or databases . meanwhile , is there anything you think you can do to ensure im up and running quickly ? sandra : linking excel spreadsheets to bridgeline forward curves will be key to all our pricing projects , not just the storage model supplied by research . intrinsic vs extrinsic value : it would be helpful to decompose the model ' s calculated storage price and to distinguish intrinsic vs extrinsic ( time or option ) value . i could easily link a new spreadsheet tab to your model inputs and to calculate the intrinsic value , and then through a simple difference i could determine the extrinsic value . ive included a simple spreadsheet calculation for the intrinsic value for review . i wanted to share this with you to ask the following : does the nature of the model define intrinsic and extrinsic value differently than the simple difference proposed ? do you think it would make sense to do the simple value decomposition in the backcode c - code via . dll in order to ensure run - time is faster ? my goal here is straightforward : a ) to better understand the model and its sensitivities . ; and b ) to determine if and when the option approach is associating significant value above and beyond the simple present value of the time spreads . factor loadings : what are some of the thoughts or insights you can offer with regards to factor loadings and how i should interpret the graph of the 3 factors calculated ? factor loadings have always been a mystery to me . for example , what problems should i be looking for as a warning against mispricing ? what , if anything , is implied about 1 day price change or expected curve re - shapings ( after all , curve - reshapings are key to storage valuation ! ! ! ) ? calibration : we are preparing a simple summary of descriptive statistics which should allow me to refine some of the model inputs . i ' ll share the data when we are and model results once im up and running .",0 +"Subject: credit support value for mg and paperco find below a spreadsheet with my very rough calculation of the value of credit support for mg and paperco . my approach is as follows : 1 . assume all contracts can be modelled as financial swaps . 2 . spread the notional trading volumes over the estimated swap tenors . 3 . calculate the value of defaulting at each period of the swap ( the default option ) using black ' s formula . 4 . treat the value of the default options as risky cash flows . that is treat this value just like you would an annuity stream . by discounting back this stream of cash flows at the original risky rate and at the risk - reduced rate , i find the value of credit enhancement as the difference in the two npv ' s . please give your comments , especially if this makes no sense to you . stinson",0 +"Subject: energy finance critiques david , here are the reviews of the ut energy finance program that you requested : from jennifer martinez ( mba class of 1999 , energy finance taken fall of 1998 ) : the energy finance program 2 years ago was very good , especially considering it was the first year of the program . there were a lot of guest speakers from various energy companies who gave us a lot of practical knowledge about the energy industry through case studies , lectures , etc . basically , we learned all the same finance concepts and tools as in the regular finance classes , but all the cases and examples were energy - related . the professors were good for the most part but didn ' t have a great deal of practical industry experience . if i had to guess the reason for decreased participation in the program , i would probably say it is the professors . ronn and titman are great but known as being very technical and quantitative . some students prefer less technical professors and classes that aren ' t limiting to the energy industry . also , the fact that the class meets for 3 hours twice a week may not be so appealing . other than those things , i can ' t imagine why there has been such a drop in enrollment . i especially don ' t understand why every single person didn ' t drop for enron . i wonder if it has something to do with international status . ? ? ? from john massey ( mba class of 1999 , energy finance taken fall of 1998 ) : bottom line - ut business schools is great - investment fund - best activity available to students energy finance program - fairly weak - it was a watered down version of the futures options class crossed with a weak finance appendage - the finance teacher was pathetic - both a poor teacher , ignorant about industry specific analysis , devoid of industry experience , rude to outside lectures ( from industry ) keith brown was the only educator that was any good and he only had a small portion of the class time - way to make better : get teachers with practical industry experience - make it a seminar class - focus on case studies , lectures - given by people from industry - promote the class within the business school - i felt like ut did a poor job of internally ( to students ) promoting the class - - - - - - - - - - - - from ross mesquita ( mba class of 1999 , energy finance taken fall of 1998 ) : to be honest , a great majority of the coursework was not energy specific . when energy applications were presented , it seemed more like general finance questions were reworded to include energy lingo . we had some very good speakers , but for the most part , i did not feel like the 6 hours of class had enough energy focus . i assumed that this would get better as the program progressed . one reason that may account for the decline in enrollment is that energy finance is a very specific focus . i would have probably not enrolled in the energy finance program had it been available in my first year . i did not know enough about energy at that time and i had returned to b - school to consider several career options - - i . e . , investment banking , corporate finance , entrepreneurship , marketing , etc . as a new mba student , i would not want to narrow my window of opportunities to only energy companies . here is my perspective and probably something that is true of many mbas - - my interest in enron brought me to the energy industry and not vice versa . - - - - - - - - - - from billy braddock ( mba class of 1999 , energy finance taken fall of 1998 ) : i was a participant in the inaugural energy finance program in the fall of 1998 . the primary positives to the class revolved around outside panels / instruction . for example , enron sent representatives on 2 separate occasions to discuss particular topics ( vince kaminski and gary hickerson ) . other notable speakers were jeff sandefer ( independent business consultant and e & p professional ) , the beacon group , and encap investments . another good speaker was a professor from ut ' s school of engineering . he brought a good perspective as to the "" basics "" of the energy business . the class was structured via a team - based instruction approach , with 3 professors team - teaching a 6 - hour credit course . none of the 3 professors had any product knowledge of the energy business . of the 3 professors , 2 were research focussed / tenured with little credibility in "" teaching . "" one of the professors primary focus of research was fixed income , while the other 2 were investments and corporate finance , respectively . as is the case for ut ' s finance program in general , and energy finance in particular , ut is in dire need of teaching professors ( as opposed to research professors ) that have the ability to convey finance with practical examples and at a level that can be more easily be understood by students without a finance background . particular to the energy program , ut needs to have more instruction from energy professionals ( such as the instructors used for enron ' s internal learning programs ( ie . derivatives classes , etc . ) . - - - - - - - - - - - - - - - - - - - - - - - from bryan williams ( mba class of 1999 , energy finance taken fall of 1998 ) : i participated in the first energy finance class offered in fall of 1998 , at the university of texas . the curriculum was understandably  & rough around the edges  8 as 1998 was the first year the energy finance course was offered . however , the instruction also suffered as none of the instructors had any energy background to speak of ( the 6 - credit hour class was team taught by three tenured professors ) . two of the three professors have co - authored textbooks , and the third professor  , s claim to fame is fixed income . as a group , the three professors are research - heavy ( as opposed to industry focused ) , and the team - teaching format did not incent any one of the profs to be personably accountable for the success of the class . that said , the instructors did a good job attracting some top notch outside speakers . among them : vince kaminski & gary hickerson , both of enron . they also dedicated one class period to a video conference call with the beacon group , an energy consulting group that i believe was recently acquired by goldman . jeff sandefer , an independent businessman , an entreprenuership instructor , and one of the foremost experts in the e - there are some experienced , brand - name professors ( e . g . sheridan titman ) teaching in the program ; cons : - the program should give the students more exposures to energy companies such as enron . specifically , it might need to help students link to the interview oppurtunites from these energy companies such as enron ; from george huan ( mba class of 2000 , energy finance taken fall of 1999 ) : companies expect mba students to have both general management ( new ideas ) and analytic ( quantative ) skills . energy industry is no exception . energy finance program offers financial strategy and risk managements courses which fit in the insudtry need . however , these two courses are far from enough to help students understand the dynemic of industrial transformation and excitements and opportunities in this industry . other management and quantitive courses are needed to complete this program . my suggestions : 1 ) seminars or lectures about energy industry and energy companies . before students make their decisions , let them know : what ' s happening and what ' s going to happen in this industry ; what the companies are doing now ; who they are looking for . 2 ) management and / or analytical courses should be included . such as : strategy , financial enginering and real option . 3 ) more industry connections . presentations and discussions . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - from charlie weldon ( mba class of 2000 , energy finance taken in fall of 1999 ) my experience in the energy finance program overall was a positive experience . the most rewarding part of the class was the guest speakers brought in during dr . titman ' s portion of the class . this part of the course is taught in the second half of the semester and consisted of ~ 10 case classes all focusing on the energy industry . two of the cases were based on enron , and overall the case selection in my opinion was very appropriate and well thought out . value added by the professor was less than from the speakers and cases . the first eight weeks of the course covered futures and options . nearly all of the examples and problems discussed pertained directly to the energy industry and special emphasis was placed on increasing the student ' s understanding of the supply and demand dynamics in the power market . the use of options and futures for speculating and / or hedging was stressed on numerous occasions and a decent attempt at explaining how to value a power plant project . i believe that the university energy finance faculty are trying to continuously make improvements to the program . however , i do not believe that they are moving fast enough or necessarily down the right path to improvement . there is a strong need for more practical based training on energy derivatives similar to the course taught by paradigm here at enron . the focus of the university teachers is quite theoretical , due in large part to their background . while the theoretical basis is crucial to understanding the basics , the real value of such a program in my opinion is the effective bridging of the theoretical with the practical all in one course . until measures are taken to inject practicality from someone with extensive industry experience , i believe the energy finance program will continue to underdeliver on its objectives . additionally , i believe that the course structure should be changed to eliminate the need of having 3 consecutive hours of classroom instruction .",0 +"Subject: technical analysis more fallout - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 04 / 2001 03 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : lee ferrell / enron @ enronxgate on 05 / 04 / 2001 02 : 26 pm to : mike a roberts / hou / ect @ ect cc : subject : technical analysis mike , our department has been using your technical analysis to support commercial decisions . you stated that these services would be discontinued . we opted to use your technical analysis in lieu of outside services . please continue to provide technical analysis data with regard to natural gas ( candlestick and elliot wave ) . lee ferrell director , risk management and reporting ets",0 +"Subject: approval for reviewer krishnarao , pinnamaneni v has suggested reviewers and submitted them for your approval . your may review / modify this list of reviewers by logging on to pep at http : / / pep . corp . enron . com and going to supervisor services . please remember , no feedback can be completed on krishnarao , pinnamaneni v until you have approved the list .",0 +"Subject: re : mg integration support - daily update # 6 hi richard , lloyd fleming introduced me to the key personnel on the trading and risk side at mg today ; i spent most of today discussing forward curves and option volatilities with tim jones , russell plackett and jon barrett . i hope to be able to get historical data from david thompson to facilitate forward curve analysis for our var models . also discussed valuation issues ( e . g . option on calendar spread that they need a model for ) . also was able to get a good understanding of trading strategies and nuances of aluminum , copper and nickel markets . regards , anjam x 35383 richard sage 04 / 07 / 2000 02 : 37 to : stop : mike jordan / lon / ect @ ect , andrew cornfield / lon / ect @ ect , naomi connell / lon / ect @ ect , stephen wood / lon / ect @ ect , tim poullain - patterson / lon / ect @ ect , andrea m kerch / lon / ect @ ect , janine juggins / lon / ect @ ect , lloyd fleming / lon / ect @ ect , tim davies / lon / ect @ ect , david hardy / lon / ect @ ect , barry sangster / lon / ect @ ect , robert campbell / lon / ect @ ect , alex holland / lon / ect @ ect , michael heap / lon / ect @ ect , phil redman / lon / ect @ ect , fiona grant / lon / ect @ ect , toby knight / lon / ect @ ect , melissa laing / lon / ect @ ect , jeanie slone / lon / ect @ ect , beth apollo / lon / ect @ ect , mark pickering / lon / ect @ ect , suzanne lane / lon / ect @ ect , stephen evans / lon / ect @ ect , niamh o ' regan / lon / ect @ ect , anjam ahmad / lon / ect @ ect , fernley dyson / lon / ect @ ect , eric gadd / lon / ect @ ect cc : subject : re : mg integration support - daily update # 6 deal entry the need for 3 data - entry clerks becomes clearer when we understand that between 200 and 2000 manual deal tickets are written each day which then have to be keyed in . romulus the trading assets of rudolf wolff in london and new york were bought after close of play on friday . included with the metals trading is a proprietary fx desk , and a softs desk , trading coffee , cocoa , and sugar . the softs people are expected to arrive in enron house at the end of july . eol two metals trades have been executed on eol .",0 +"Subject: re : for your approval erica , yes , no problem . vince information risk management 12 / 01 / 2000 09 : 50 am to : gary taylor / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : for your approval please let me know if he is approved . thanks , erica garcia - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 12 / 01 / 2000 09 : 39 am - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system directory line item pending access processing directory name : o : \ weather derivatives \ , o : \ research \ common service type : grant expiration date : comments : security processing processing status : e - mail message : comments / justification : general information request : jhrc - 4 rkjjz requested by : joseph hrgovcic / hou / ect phone : 33914 requested for : joseph hrgovcic / hou / ect employee type : company : 0011 rc # : 100038 priority : high comments / justification : i have a test windows 2000 machine running ( with userid t _ weatherol , for which i need access to o : \ research \ common and o : \ weather derivatives \ editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 1 information risk management 11 / 30 / 2000 12 : 30 : 19 pm",0 +"Subject: latest draft don , attached is my latest effort . it entailed fairly drastic "" restructuring and reorganization "" of the earlier draft . my revision effort has been directed at improving the focus of the paper . the new story is the following : 1 . enron was formed as a regulated gas pipeline company in the mid - eighties . 2 . economic and competitive conditions conspired to force a dramatic reorganization of the company almost immediately . the result was the creation of a new , unregulated energy trading operation . the strategy of the new unit was to capitalize on business opportunities in the deregulation of markets that was occuring at the time ( mid - eighties until now ) . 3 . the business model adopted for the new unregulated business was that of a "" gas bank "" . the analogy to a commercial bank posed a very difficult problem to enron ' s management in that there was no source of liquidity to the market from a central bank authority . as a consequence enron had to develop its own very elaborate risk management procedures . 4 . another consequence of the new business model was that it required a different set of employee skills and talents . specifically , it required were bright , energetic and innovative individuals capable of identifying entrepreneurial opportunities and starting new businesses . furthermore , a new , flatter organizational structure entailing decentralized decision making was required to facilitate quick response to changing market conditions . to monitor and manage this new "" empowered "" labor force required that the firm develop new personnel policies and procedures . 5 . three primary tools of personnel management were adopted : ( i ) measure performance semi - annually , ( ii ) tie compensation closely to performance , and ( iii ) allow personnel free movement within enron to seek out the best opportunities . 6 . other attributes of the enron model include consideration for asset optionality , recognition of the value of networks in adding value to trading platforms , and the use of mark - to - market accounting for business transactions as a means of ensuring transparency and promoting prompt actions . if my "" story line "" sounds better than the draft i have attached its because its the last thing i ' ve written . at any rate i look forward to hearing your comments and to getting this wrapped up . thanks and i look forward to seeing you in february . john - enron _ paper _ 1 _ 26 _ 01 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : hello sounds great - - i ' ll coordinate with shirley . jacob was very excited about his prior meeting with you and the group . molly - - - - - original message - - - - - from : kaminski , vince sent : tuesday , may 01 , 2001 4 : 42 pm to : magee , molly cc : kaminski , vince ; krishnarao , pinnamaneni ; watson , kimberly subject : re : hello molly , kim watson would like us to bring jacob for another interview . we can do it later this week . vince vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 09 : 17 am to : vince j kaminski / hou / ect @ ect cc : subject : re : hello hi vince , if you are still interested in bringing back this gentleman back for another interview , i would very much like to meet with him . sean talked with him when you brought him in a few weeks ago and he thought it would be a good idea for me to meet with him so we can compare thoughts . thanks , kim . - - - - - original message - - - - - from : kaminski , vince sent : monday , april 16 , 2001 1 : 21 pm to : watson , kimberly cc : krishnarao , pinnamaneni ; kaminski , vince subject : re : hello kim , this is a letter from one of the job applicants who works for pros . it seems that the system they develop for williams is more a scheduling system . would you like to ask him to come back for another interview , to get more information out of him ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > "" jacob y . kang "" on 04 / 11 / 2001 11 : 18 : 44 pm to : vince . j . kaminski @ enron . com cc : subject : re : hello dear vince : it was so nice meeting and talking with you too . i did not take any pen back , i lost my pen too somewhere in enron . as i mentioned to you , after i got my ph . d in 1999 , i have been working two years as lead scientist and science manager in energy division at pros revenue management inc . in houston . i developed and implemented the mathematical models for trading optimization system and firm transportation optimization system . the trading optimization system becomes the most popular product in the industry this year . duke energy just signed the contract to buy this product yesterday . conoco and williams also signed the contracts for it . according to pros sales department , the potential marketer to buy this product exceeds 15 companies in one or two years . enron is the ideal place for me to continue my research and system developing efforts to combine revenue management with risk management . i am confident that i can make significant contributions to enron in this area . i would like to thank you again for giving me this opportunity to come to enron for this interview . i am looking forward to having the opportunity to work in enron . sincerely yours jacob - - - vince . j . kaminski @ enron . com wrote : > jacob , > > it was nice meeting you . did take by any chance > my pen ? if not , i apologize . > > vince > do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com /",0 +"Subject: faculty contact and schedule persentation dear mr . kaminski , the following are the faculty details : ms . deborah j . barrett instructor & dir . , mba communications phone 713 - 348 - 5394 barrett @ rice . edu mr . wil uecker associate dean for executive education phone 713 - 348 - 5869 uecker @ rice . edu mr . dennis wayne loughridge adjunct professor - management phone 713 - 348 - 4869 lounghrid @ rice . edu i will also speak with the faculty and inform them about the details concerning the presentation on may 7 at enron office ( time to be determine ) and the dinner following it . sincerely , luigi calabrese rice mba candidate class of 2002",0 +"Subject: your riskmetrics site password dear , thank you for registering . your requested username is vincek and your password is longrun . you may use this login to : - use the data directory at http : / / www . riskmetrics . com / products / data / index . cgi - access the creditmetrics datasets at . html - access the riskmetrics datasets at tml - read our technical documents at - read our monitors at http : / / www . riskmetrics . com / research / journals / index . cgi - read risk management : a practical guide at please let us know if you have any questions or concerns , rmg web services web @ riskmetrics . com",0 +"Subject: complexity science seminar confirmation confirmation date : april 18 th , 2001 time : 11 : 30 am - 1 : 30 pm location : koch industries 20 e . greenway plaza conference room 1 dress is business casual . parking is free . there is parking available in the koch building or across the street in a lot . lunch will be provided and is scheduled to start at 11 : 15 am . please feel free to pass along the word to anyone you think might like to join us . information can be found on our website at http : / / www . nesanet . org / or the can contact me at ( 713 ) 856 - 6525 with any questions . thanks , lana moore",0 +"Subject: re : cplex floating license samer ' s suggestion makes a lot of sense . we can start with something like one floating dev . license + 2 opl licenses and buy more later based on actual usage . on the pricing agreement , it probably makes sense to get a guarantee on the discounts for additional licenses for one year ( or till dec . ) . i am definitely interested and can provide the share of funding necessary from my clients . thanks , krishna . from : samer takriti @ enron communications on 05 / 19 / 2000 11 : 14 am to : ravi thuraisingham / enron communications @ enron communications cc : chonawee supatgiat / corp / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect @ enron , samer _ takriti @ enron . net , stinson gibner / hou / ect @ ect @ enron , tom halliburton / corp / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : cplex floating license chonawee and i just had a phone conversation with cplex . there are other alternatives ( products ) that may help in saving time and cost . chonawee and i feel that one floating develoment license , and one or two opl ( a package on sale that provides modeling and optimization features ) licenses will do . in addition , we need floating deployment licenses . for the development licenses , the charges should be split "" equally "" between the different groups that may ask for optimization help ( although it is hard to predict who may ask for future help ) . we are suggesting equally since these licenses are used to develop the needed solution but are not ( in general ) used to run the software . the deployment licenses can be charged on per - use basis for different groups . cplex is going to send us a new quote . we ' ll make the decision soon after that . - samer",0 +"Subject: re : information dear mr kaminski : thank you very much for your help . sincerely , yann - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , november 21 , 2000 10 : 05 am to : ydhallui @ elora . math . uwaterloo . ca cc : vince . j . kaminski @ enron . com subject : re : information yann , i have forwarded this request to a member of my group who supports enron broadband services . he will check into availability of data and confidentiality issues . vince",0 +"Subject: re : telephone interview with the enron corp . research group hello yong cho : sorry it has taken me so long to get back with you . thursday , may 4 is a good time for the telephone interview . would 3 : 30 pm ( houston time - 1 : 30 pm california time ) be ok with you ? please let me know . they will call you at 408 - 541 - 3502 . the position title is : sr . specialist . thanks and have a great day ! shirley crenshaw 713 - 853 - 5290 yongcho 70 @ aol . com on 04 / 27 / 2000 02 : 59 : 19 pm to : shirley . crenshaw @ enron . com cc : subject : re : telephone interview with the enron corp . research group dear shirley crenshaw , hi . this is yong cho . i ' m very excited to have the interview offer from enron . either 5 / 1 or 5 / 4 will do . if i should choose one , i prefer 5 / 4 . i ' m in my office from 10 am - 6 pm ( pt ) . you can set a time at your convenience and just let me know . my number here is 408 - 541 - 3502 . i would like to know how long it will take , and also exact job title i ' m interviewing for . thank you very much for your help . sincerely , yong",0 +"Subject: re : copy room kevin , you have full charge . thanks for volunteering . liz kevin g moore 04 / 06 / 2000 07 : 50 am to : barbara lewis / hou / ect @ ect , mike a roberts / hou / ect @ ect , frances ortiz / hou / ect @ ect , liz m taylor / hou / ect @ ect , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : copy room to whom it may concern : i would like to know who will be responsible for keeping up with the copy room near my area . eb 32 copy rooml i am aware that this is something that must be decided by whoever is in charge however , i would like to participate in keeping this room operational . please note that i use this room more often than anyone else and i pay more attention to what is needed there on a daily basis . i am not asking for full charge over the room but i would like to assist whereby , it will always be operational . thanks kevin moore",0 +"Subject: re : i would like to help , but i am in kansas hunting pheasant during the last week in december . vince j kaminski 18 / 12 / 2000 15 : 46 to : debbie r brackett / hou / ect @ ect , william s bradford / hou / ect @ ect , ted murphy / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , david port / market risk / corp / enron @ enron , mark tawney / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , greg whalley / hou / ect @ ect , louise kitchen / hou / ect @ ect cc : molly magee / hou / ect @ ect subject : i am asking molly magee , our hr rep , to set up an interview for iris mack with , depending on your availability between christmas and new year . iris was interviewed by a number of my associates for a position with the research group and my objective is to introduce her to a number of enron units that she may eventually support . i shall appreciate your comments . vince kaminski",0 +"Subject: organizational announcement - introducing enron industrial markets we are pleased to announce the creation of a new business unit  ) enron industrial markets  ) within our wholesale energy business . enron industrial markets will be responsible for leading all worldwide business activities in the paper , pulp , lumber , and steel markets , including trading , origination and energy outsourcing activities . enron industrial markets is being created to accelerate the growth of enron north america  , s existing paper , pulp , & lumber business and to establish and grow a new business in the steel market . the formation of enron industrial markets will allow the enron north america and enron europe management to continue to focus its efforts on the aggressive expansion of our core gas and electricity business . as a standalone business unit , enron industrial markets can accelerate the growth of the paper , pulp & lumber and steel businesses into major contributor  , s to enron  , s overall growth and , working closely with enron networks , position enron as the leader in the transformation of these industries into new economy markets . enron industrial markets will be headed by jeff mcmahon , president and chief executive officer , and ray bowen , chief operating officer . they will report to mark frevert who will be chairman of enron industrial markets . mark , jeff , and ray will comprise the office of the chairman for enron industrial markets . included in this new business unit and reporting to the office of the chairman will be the following individuals and their respective groups : pulp , paper , & lumber origination bryan burnett pulp , paper & lumber trading bob crane steel trading greg hermans transaction development rodney malcolm enron industrial markets has established an operating group to manage the operations of physical assets . this unit will temporarily report to the enron industrial markets office of the chairman . coincident with the establishment of enron industrial markets , all energy outsourcing activities associated with industries other than paper , pulp , lumber and steel will be the responsibility of enron energy services . with jeff mcmahon  , s departure from enron networks , louise kitchen will assume the role of president and chief operating officer . please join us in congratulating these individuals for their new roles .",0 +"Subject: p + option valuation model mark , after recently reviewing the booking of the p + options , it is my understanding that these options are being valued using a standard spread option model where the price evolution of the two legs of the spread are assumed to be correlated geometric brownian motion processes ( i . e . the price process assumptions are consistent with standard black - 76 model assumptions extended to two commodities ) . the payoff for a call option is : payoff = max ( 0 , a  ) b  ) k ) . where : a = nxwti ( delivery price for nymex ) b = posting price = ( wti swap )  ) ( posting basis ) k = posting bonus ( fixed ) . the only complication of this option as compared to most other spread options is that leg "" b "" of the spread is a combination of three prices , the two futures prices which make up the wti swap for the given month , and the average posting basis during the delivery month . combination of these prices is easily addressed by simply setting the volatility of leg "" b "" and the correlation to correctly account for the volatility of this basket of prices and its correlation with the nxwti price . i believe that this approach is more straightforward than the alternative , which would be to use a three or four - commodity model with its associated volatility and correlation matrices . in summary , i believe that this is an appropriate model for valuation of these types of options , assuming that the inputs are set correctly . regards , stinson gibner v . p . research",0 +"Subject: re : willow and pathstar evaluations i will check with michael and see if it ' s feasible to do a quick evaluation of his software here in houston . - - stinson vince j kaminski 04 / 24 / 2001 05 : 22 pm to : stinson gibner / hou / ect @ ect cc : subject : willow and pathstar evaluations stinson , he keeps bugging us about it . any thoughts what we should do ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" mike curran "" on 04 / 24 / 2001 10 : 03 : 24 am please respond to "" mike curran "" to : cc : subject : willow and pathstar evaluations hi vince - hope all is well with you . sharad hasn ' t had time to evaluate our willow tree or monte carlo software since the middle of last year . is there somebody else that could do it ? please let me know who i should send the evaluation to . best regards , michael curran ceo quantin ' leap limited piercy house 7 copthall avenue london ec 2 r 7 nj tel : + 44 ( 0 ) 20 7562 3450 fax : + 44 ( 0 ) 20 7562 3411 mailto : mcurran @ quantinleap . com http : / / www . quantinleap . com",0 +"Subject: vince , the book "" power economics "" can be downloaded from http : / / www . stoft . com / best , alex",0 +"Subject: updated electricity homepage ( great links - university of queensl and - australia ) hi vince , have a look at my homepage which i have been updating ( see energy markets ) : regards glen dixon part - time phd student - department of mathematics ( university of queensland ) p . s i am hopefully attending the australian risk conference where you are a speaker in july 2000 ( sydney ) . hope to hear you speak . glen w . dixon project officer - procurement profiling queensland purchasing department of public works "" important this electronic message and any attachments are supplied in good faith and are believed to be free of year 2000 or other date related problems ( i . e . year 2000 compliance ) . the department of public works forwards this message and attachments to you on the basis that you use them at your own risk . the department accepts no responsibility for damage or loss ( arising from negligence or otherwise ) which may occur through the use or transmission of this message and attachments and recommends that you conduct your own independent tests to determine year 2000 compliance before use . the contents of this electronic message and any attachments are intended only for the addressee and may contain privileged or confidential information . they may only be used for the purposes for which they were supplied . if you are not the addressee , you are notified that any transmission , distribution , downloading , printing or photocopying of the contents of this message or attachments is strictly prohibited . the privilege or confidentiality attached to this message and attachments is not waived , lost or destroyed by reason of a mistaken delivery to you . if you receive this message in error please notify the sender by return e - mail or telephone . thank you . """,0 +"Subject: re : visit to houston and vince kaminski ' s research group shirley , i just booked my flights and the hotel . i ' ll be arriving houston on the evening of 7 / 27 and leaving on 7 / 29 . i ' ll stay at the doubletree houston allen center for two nights . looking forward to meeting you at enron . regards , shijie shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng",0 +"Subject: reschedule - meeting with riskcare to discuss joint ventures ( michael curran , manuel rensink & richard haddow ) vince j kaminski / hou / ect wants to reschedule a meeting . on 02 / 23 / 2000 03 : 00 : 00 am cst for 2 hours with : anjam ahmad / lon / ect ( chairperson ) vince j kaminski / hou / ect ( invited ) shirley crenshaw / hou / ect ( invited ) dale surbey / lon / ect ( invited ) stinson gibner / hou / ect ( invited ) meeting with riskcare to discuss joint ventures ( michael curran , manuel rensink & richard haddow )",0 +"Subject: re : steve leppard dale , my recommendation is to make steve the head of the research unit in london . we were talking originally about september but i think we should accelerate this process . of course , anjam will be very unhappy about it , but we cannot manage around him any longer . i think that the promotion should be combined with a salary increase . i would like to offer him a significant increase that goes with expanded responsibilities and much higher visibility . a salary increase will also bring him closer to the market . we see the market for technical people going through the roof in practically every location where we operate . a contract is not a good solution in my view . it creates a sense of false security for both an employee and the company . i shall send a message to john sherriff with my recommendation . i shall cc you . i would appreciate if you could bring it up with john as well . vince dale surbey 07 / 11 / 2000 10 : 23 am to : vince j kaminski / hou / ect @ ect cc : subject : steve leppard hi vince , hr is working on a mid - year salary review for london people that have a noticeable gap between their compensation at enron and what we would have to pay in the market for a replacement . they highlighted steve as someone with a potential gap - particularly in light of what we ' re seeing in our quant recruiting effort for credit trading and research . i ' d like your opinion on the best way to make sure we keep steve happy and keep him at enron . there are several things i see we can do : 1 ) give him a mid - year pay increase to move him closer to market . i ' m not sure this is the best way to go , especially if we only offer him a token salary increase . 2 ) offer him more responsibility : what are your thoughts on timing for making steve the official head of the london research team ? with my move to ebs , should we accelerate this ? i think this is good way to keep him happy and motivated , and then follow up with a more meaningful salary review at year - end ( as part of the regular process ) that takes into account his greater responsibility . 3 ) we have some people that we ' re trying to get under long - term ( 3 - yr ) contract with a 12 - month notice clause . obviously anyone signing one of these will want significant up - front compensation for being handcuffed . we ' ve not had a lot of success with these here in london , and i would prefer to keep steve happy so he wants to stay with enron rather than contractually binding him to the job . i ' d value your thoughts on this . thanks , dale",0 +"Subject: re : bryan seyfried visiting houston i have scheduled the meeting for friday , february 11 at 9 : 00 am . have a great day ! shirley vince j kaminski 01 / 31 / 2000 08 : 52 am to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , danya moody / lon / ect @ ect cc : subject : bryan seyfried visiting houston shirley , can you please set up the meeting . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2000 08 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - danya moody 01 / 31 / 2000 08 : 32 am to : vince j kaminski / hou / ect @ ect cc : subject : bryan seyfried visiting houston hi vince bryan seyfried will be in houston on the 9 , 10 & 11 th february and was hoping to arrange an hour with you on one of these days . he is available any time except the morning of 10 th february . could you please let me know if this is possible and if so what time suits you . thanks danya",0 +"Subject: re : potential prospect hey vince , i e - mailed george to send you a resume . tom professor tom arnold e . j . ourso college of business administration department of finance 2155 ceba louisiana state university baton rouge , la 70803 o : 225 - 388 - 6369 f : 225 - 388 - 6366",0 +"Subject: enron global messaging announcement over the last few months , we have been discussing our standard e - mail platform with you , our customer . your feedback from the various demonstrations , surveys and technology showcases validated that e - mail is a vital part of your ability to communicate effectively . however , your feedback also indicated that you need your e - mail client to have additional functionality and increased integration with other applications you use . therefore , to meet the demands of our fast - paced business , enron net works is standardizing our e - mail platform by deploying microsoft outlook 2000 to all the business units we currently support for messaging . ( project plans for ebs , ees and azurix are still being finalized and will be communicated separately . ) this conversion from lotus notes to outlook 2000 will improve your ability to communicate and provide a more consistent look and feel across the standard office applications you use on a daily basis . we are excited about this opportunity to provide a more robust , full function solution for your messaging needs . to provide you with additional details about the conversion from lotus notes to outlook 2000 , we are including a list of frequently asked questions about this project . how does this project affect me ? your current lotus notes e - mail system will be converted to microsoft outlook 2000 . what is microsoft outlook 2000 ? outlook 2000 is the messaging client you will use to read your e - mail , update your calendar and personal address book , record to do lists , etc . why are we switching to outlook 2000 ? outlook 2000 integrates more effectively with our new operating system , windows 2000 , and the microsoft products that enron currently uses . with outlook 2000 , we can provide you with a more robust mail platform including the following new features : instant messaging  ) ability to send person - to - person , immediate , pop - up messages . improved palm / ce synchronization  ) allows for simpler and quicker updates of your hand held device from multiple places . conferencing server  ) ability to conduct video conferences from your desktop . web access  ) ability to retrieve your enron e - mail via a browser . fax integration  ) ability to send / receive faxes from your e - mail inbox . voice mail integration  ) ability to have your voice mail delivered to your e - mail inbox for retrieval . when will the outlook 2000 rollout start and when will i get it ? the pilot will begin in late october with the production rollout beginning in late november . we are finalizing our business unit rollout schedule . additional information will be provided to all business units as it becomes available . project updates will be posted on the project section of the it central web site at http : / / itcentral . enron . com . additionally , you may send questions to outlook . 2000 @ enron . com , and a member of the project team will be happy to address these individually .",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 campos , hector o peyton s gibner nov 06 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 gandy , kristin h celeste c roberts nov 01 , 2000 gorny , vladimir theodore r murphy ii nov 02 , 2000 hewitt , kirstee l steven leppard nov 06 , 2000 hickerson , gary j jeffrey a shankman nov 15 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 leppard , steven dale surbey nov 06 , 2000 patrick , christie a mark a palmer nov 09 , 2000 pham , bich anh t sarah brown nov 06 , 2000 raymond , maureen j wincenty j kaminski nov 02 , 2000 rosen , michael b christie a patrick nov 06 , 2000 sun , li kevin kindall nov 09 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 tawney , mark r jeffrey a shankman oct 26 , 2000 thuraisingham , ravi paul h racicot jr nov 12 , 2000 williams , matthew steven leppard nov 08 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: re : maths course vicky , my affiliation is enron corp . my assistant , shirley crenshaw , will send you an updated version of my bio . here are the bullet points : practical techniques to price exotic energy options definition of an exotic option - pay - off profile - price process assumptions - different sources of risk different types of exotic options used in the energy industry - asian options - spread options - basket options - swing options evaluating methodologies for pricing exotics ? ? ? - assessing the pros and cons of different techniques - approximations of closed - form formulas - monte carlo techniques - trees - numerical solutions of pdes ? ? ? - applying multi - factor models to price exotic energy derivatives ? ? ? - building trees for pricing and hedging exotics practical examples ? analysing approaches to weather derivatives valuation ? definition of a weather derivative why does energy industry need weather derivatives ? - hedging volume / price risk as opposed to hedging exclusively price risk - the energy industry ' s exposure to weather : numerical estimates different types of weather derivatives used in the energy industry ? ? ? - heating and cooling degree day swaps and options ? ? ? - precipitation contracts - hurricane contracts - financial options contingent on weather - digital options valuation controversy : actuarial valuation vs . valuation based on the black - scholes paradigm use of monte carlo techniques in valuation of weather derivatives valuing long term transactions practical example please , feel free to edit my bullet points to improve my english . it was a pleasure working with you and i hope our roads will cross at some point . the best of luck to you . vince "" vicky windsor "" on 04 / 13 / 2000 01 : 00 : 18 pm please respond to "" vicky windsor "" to : cc : subject : maths course dear vince , ? i just wondered whether you have had chance to look at your bullet points and bio for the maths course . if so please could could email them to me as soon as possible . could you also let me know whether your company affiliation should now be enron north america . ? thanks vince and best regards , ? vicky",0 +"Subject: telerate service hello everyone : please let me know if you have a subscription to "" telerate "" ? we are being billed for this service and i do not know who is using it . thanks ! shirley",0 +"Subject: re : simulated trading jana , i shall be glad to join you . vince jlpnymex @ aol . com on 09 / 12 / 2000 01 : 51 : 06 pm to : rsbaker @ duke - energy . com , blackj @ wellsfargo . com , martha @ plunkettresearch . com , dgriffin 240 @ earthlink . net , genieand @ hotmail . com , robyn _ howard @ aimfunds . com , agerhardt @ pkftexas . com , colgin @ campbellriggs . com , crowsley @ flash . net , carol _ fitzpatrick @ agc . com , gburrows @ capstonefinancial . com , jhall @ harvardreit . com , jlpnymex @ aol . com , cefi @ dynegy . com , clairta @ yahoo . com , mara _ smith @ aimfunds . com , ddenbina @ mpr . com , rdyerlaw @ houston . rr . com , edwards @ nwol . net , sgoldfield @ tmh . tmc . edu , theath @ coral - energy . com , vkamins @ enron . com , tknight @ houstonenergy . org , monica _ kolb @ aimfunds . com , lanejb @ wellsfargo . com , info @ . com , elizabethmorrell @ excite . com , kimmorrell @ excite . com , adrian . a . nunez @ usa . conoco . com , jack _ plunkett @ plunkettresearch . com , daricha @ ppco . com , mroberts @ coral - energy . com , jstanton @ calpine . com , jstephenson @ navigantconsulting . com , dstowers @ watersinfo . com , chtremel @ epri . com , reneeb @ swiftenergy . com , njfitzgerald @ coral - energy . com , cthomso @ ppco . com , mwolper @ alum . mit . edu , carol _ mccutcheon @ oxy . com , leesa . foster @ ipaper . com , woodybc @ bp . com , dzerba @ teldatasolutions . com cc : subject : simulated trading dear friends and colleagues : nymex is hosting a cocktail reception and a simulated open outcry trading "" class "" : thursday , sept . 28 , 2000 5 : 00 - 7 : 00 pm houston center club ( downtown - across from the 4 seasons ) this is being held in conjuction with the crude oil association . they charge $ 25 at the door . however , as a host i can have as many of my colleagues there for free ! but , i must know if you are coming by september 24 , 2000 c . o . b . , to give a count to the houston center club . i hope you can all attend . please feel free to invite someone to come with you . the simulated trading will be held three times during the evening , and is very interesting . i look forward to hearing from you , and seeing you on 9 / 28 ! jana ps - call me if you have any questions",0 +"Subject: your king ' s college london conference hi lane i * will * be free to speak at your conference on 12 th july , so put my name down . i will give a talk on my "" diagrammatic approach to real options "" . will you have a laptop projector available ? do you require any advance submission of material ? cheers , steve",0 +"Subject: dg energy software vince , here is my edited version of the software license agreement . can you read it once before i forward it for internal approval ? i specified that the $ 100 , 000 covers a single user perpetural license , access to source after one year , and covers maintenance and support for one year . any suggestions ? - - stinson",0 +"Subject: summer internship hi , i ' d like to thank you for the opportunity of letting me work here this summer . i ' ve learned a lot in the past three months and hopefully have been of some help around here . i was very impressed with this department , and enron itself , and i really appreciate the chance for me to have worked in such an environment . so anyway , thank you and i wish you and the department well , brad",0 +"Subject: fea announces the release of @ energy 2 . 0 zimin , please , take a look at it . i think we should download the update . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001 11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" michelle mendoza "" on 01 / 26 / 2001 02 : 33 : 14 pm to : cc : subject : fea announces the release of @ energy 2 . 0 january 26 , 2001 vince kaminski enron north america corp . 1400 smith street 30 th floor , rm . 3036 b houston , tx 77251 - 1188 1 713 - 853 - 3848 dear vince kaminski , this is to inform you of the release of @ energy 2 . 0 . ftp download instructions are available immediately . the download instructions are included at the end of this email . your cd ' s and manuals will be shipped to you within 2 weeks . please see below for more information regarding this new release . please confirm that you are the correct recipient for this shipment and your address above is correct by clicking reply and send . if any changes need to be made , please make the changes above and reply . * * warning : please note that if you did not received a license key for @ energy after june 2000 , you will need to contact support @ fea . com or call 510 . 548 . 6200 to obtain a new license key to enable the new version . * * * * swing users : @ energy / swing now replaces the "" swing "" product . see the @ energy user manual for a discussion of the changes . contact fea for the necessary license keys . you will be able to run both the new and old swing simultaneously . heres an overview of the new and changed features since version 1 . 6 : @ energy ( forward curve ) jump parameters are now calibrated for use in other @ energy functions . inputs and outputs to powercalib and comcalib have changed . see the corresponding function syntax in the user guide for additional information . 35 - 40 % speed improvement . the module is now out of beta . @ energy ( basics ) different interpolation schemes on forward prices are now supported . if you use indexswap , exoticswap , or optindexswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . a new utility function , pathutil , allows you to simulate and visualize price paths consistent with the models supported by @ energy . 25 - 30 % speed improvement . @ energy ( advanced ) different interpolation schemes on forward prices are now supported . if you use optdiffswap or diffswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . calspreadopt now allows for the specification of two different mean reversion rates . 30 - 35 % speed improvement . @ energy ( swing ) swingopt and stripswingopt now allow for valuation of swing straddle contracts with overall load constraints . 65 - 70 % speed improvement . the module is now out of beta . @ energy ( weather ) 30 - 35 % speed improvement . if you have any questions please feel free to contact us . we appreciate this opportunity to be of continuing service to enron north america corp . . regards , michelle mendoza support @ fea . com + 1 - 510 - 548 - 6200 financial engineering associates , inc . ( fea ) * * * * * * * * * * * * * * * * * * * * * * * * * * * * * to download @ energy 2 . 0 via ftp , follow the following instructions : note : using explorer leads to unpredictable results , so we suggest using netscape or a dos shell . using netscape : in the location box type : ftp : / / energy @ ftp . fea . com password : 2 rbzxgv 5 energy - 2 . 0 - win 32 . exe is for windows 95 / 98 / 2000 / nt . download and run on a local drive . using a dos shell : at a dos prompt type : ftp ftp . fea . com user : energy password : 2 rbzxgv 5 type "" binary "" and hit ' return ' . type "" ls "" for a list of available files . type "" get "" energy - 2 . 0 - win 32 . exe and and wait for the ftp > prompt . type "" quit "" . the file will be downloaded into the directory at which you entered the ftp site . double click on the exe and follow the instructions on the screen .",0 +"Subject: sap expense report form with the implementation of sap , the employee expense report form has been modified to reflect the new coding system . the procedures for its use are unchanged , but there are some cosmetic differences . one item to note : the form no longer requires entry of your social security number ; instead use your new personnel number assigned through human resources ( see http : / / hrweb . enron . com ) . for electronically submitted expense reports , enter the same number on the receipt envelope . the form is now available at the sap website . to access the form : from the enron home page , go to the sap intranet site http : / / sap . enron . com choose one of the following paths : click on quick reference tools on the left menu click drop - down arrow for accounts payable forms click sap expense report form click on forms and procedures library on the left menu click drop - down arrow for accounts payable forms click sap expense report form wait for it to load click enable macros ( or yes , allow macros ) after you enter the data , save as excel workbook ( . xls file extension ) with a new filename . do not save as excel template ( . xlt extension ) . you may print the spreadsheet for submission to accounts payable , or attach it to notes for electronic submission . instructions are available at the website , on the same drop down box as the form . if you have any questions , contact the center of expertise ( coe ) at 713 345 - 7427 .",0 +"Subject: re : conference may 31 on energy derivatives in toronto phelim , i shall be glad to join you for dinner on sunday . i shall be also available for the panel discussion . i would like to thank you one more time for the invitation to speak at the conference . vince phelim boyle on 05 / 12 / 2000 03 : 47 : 59 pm to : vince . j . kaminski @ enron . com , amy aldous , pconcessi @ deloitte . com , ross raymond - cmmrcl ops cc : subject : conference may 31 on energy derivatives in toronto vince thanks again for agreeing to speak at our conference . it is attracting considerable interest . . is it possible for you to send us copies of your slides by may 18 to meet our deadline for preparing the material . ? if you have ? a related paper available that covers some of the same material that would do instead but naturally we would prefer the slides . i would like to mention again the ? ? the pre - conference dinner at 7 pm on sunday may 30 for the speakers we hope very much you can be present i was also hoping you would be available for the last ? session of the day to be panel member the provisional title ? is managing risk in illiquid markets the chair is pat concessi of deloitte and touche the panel last from 3 . 30 until 4 . 30 and we would like panel members should speaker for a few minutes and take questions from the floor . in the meantime if you have any questions please let amy or myself know sincerely phelim p boyle ? - - phelim p boyle director centre for advanced studies in finance , university of waterloo , waterloo , ontario canada n 2 l 3 gl tel ? 519 885 1211 ( 6513 ) fax 519 888 7562 ?",0 +"Subject: esource presents esearch esource launches esearch site bringing research to your desktop esource , enron ' s premier research group , launched their new product , esearch , on december 8 , 2000 . esource ' s team of specialized researchers have created a web site to bring information and research to every employee ' s desktop . the esearch web site offers many links to information resources , access to research databases , specialized searches , sites to purchase books , articles , and reports , and training . employees can use the web site to conduct their own research or as a vehicle to submit research requests . esource ' s researchers and industry specialists are available to all enron business units to provide timely and cost efficient research , to work with individuals or groups to fulfill one time research requests , or to design ongoing , customized monitoring projects or news updates . the preferred browser is internet explorer join us for a demonstration and training session on friday , december 15 th at 1 : 00 - 1 : 30 and 2 : 00 - 2 : 30 in room eb 5 c 2 . http : / / esource . enron . com discover a wealth of information at your desktop",0 +"Subject: summer internship position celeste , i would like to ask you for a favor . we would like to have sevil as an intern in our group this summer . she prepares a ph . d . dissertation on transmission : a critical issue to the power markets everywhere . i have also a few other students i would like to take in as summer interns . i shall send you the resumes in separate messages . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 11 / 2000 12 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sevil yaman on 02 / 10 / 2000 10 : 22 : 28 pm to : vkamins @ enron . com cc : subject : summer internship position hi dr . kaminski , as i told you last monday in dr . kao ' s class i am looking for a summer internship position in your group in which i can use my economics background together with my quantitative skills and knowledge in electricity markets . currently , i am a third year ph . d . student at the economics department of the university of houston . at the end of this semester i ' ll be completing my coursework and starting to write my dissertation which analyzes the access pricing issue in network industries , especially in electricity transmission . i would like to give you a few examples from my coursework . in addition to basic statistics i - ii and econometrics i - ii , i have taken "" macroeconomic modeling and forecasting "" ( time series ) class in which i learned rats . in "" applied econometrics "" class , it was given a great deal of attention to the case method learning approach that involved extensive computer analysis . we were taught sas . as a term paper i worked on electricity demand forecasting . this semester i am taking "" special topics in applied econometrics "" course in which i am being taught qualitative dependent models , mle , panel data techniques , and so on , and as software stata . moreover , this semester i am also taking "" options theory and its applications "" class and auditing dr . kao ' s class . i definitely agree with you in what you mentioned in your lecture last monday about the understanding of the options theory as a necessity in the energy sector . besides , i spent my last summer in the oil and gas unit of the world bank as a research assistant . this work experience in which i had great exposure to the energy market issues and my own research area , which is regulation of transmission pricing ( congestion pricing ) , made me believe that the ongoing restructuring of the electricity sector , especially the transmission network issue , could be well understood by working in the industry . dr . kaminski , attached you can find my resume . i would be glad if you could find a chance to review it and get back to me soon . many thanks , = = = = = sevil yaman department of economics university of houston houston , tx 77204 - 5882 ( 713 ) 743 - 3814 / 3817 do you yahoo ! ? talk to your friends online with yahoo ! messenger . http : / / im . yahoo . com - resume - sevil . doc",0 +"Subject: ken , attached is a correction to pages 10 , 11 , and 12 that were presented by the iso staff at a recent qse training session . i have attached pages 10 , 11 , and 12 for ease of reference . this is the example that i told you about at out at the last csc meeting . best regards , lance - enron correction for congestion management example . pdf - pagel 2 . pdf - pagel 1 . pdf - pagel 0 . pdf",0 +"Subject: alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: re : ebs var transaction policy that would be great . b . vince j kaminski @ ect 06 / 29 / 00 10 : 27 am to : barry pearce / enron communications @ enron communications cc : stinson gibner / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : ebs var transaction policy barry , stinson forwarded your message to me . i am meeting ted murphy today and i shall bring it up with him . we have unit at research ( tanya tamarchenko , reporting to grant mason ) who is responsible for v @ r support . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000 10 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 06 / 29 / 2000 09 : 55 am to : vince j kaminski / hou / ect @ ect cc : subject : ebs var transaction policy fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 06 / 29 / 2000 09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - barry pearce @ enron communications 06 / 29 / 2000 09 : 09 am to : stinson gibner / hou / ect @ ect , dale surbey / lon / ect @ ect , ted murphy / hou / ect @ ect cc : lou casari / enron communications @ enron communications , john echols / enron communications @ enron communications , jim fallon / enron communications @ enron communications subject : ebs var transaction policy hey you guys , we are trying to implement a ' var transaction ' policy - and would like your opinion . this is going to be tough - because i ' m not sure we have implemented a similiar policy across any of our other ' books ' - that is - we looking to bring in all the accrual / operational assets as well as the mtm stuff ( lambdas ) . to have a real - live ' configuration ' of the system . if assets / routes / servers etc . . . are added - what is the impact on the ' value ' of the system and what it ' s worth . john has attached a draft below - for your review and thoughts . i can see how this works in a trading environment - when you actually know the var of your whole trading portfolio . however - i ' ve not seen this done with a mixture of mtm & accrual assets . add the spice of a ' operational system ' valuation - and this will be tough to quantify and model . step 1 - configure system and value it step 2 - calculate a var on this . we will need to do some work here ! step 3 - calculate the incremental var of new deals / amendements / reconfigs etc - tough . . . . see what you think ? b . john echols 06 / 28 / 00 05 : 41 pm to : jim fallon / enron communications @ enron communications , barry pearce / enron communications @ enron communications , lou casari / enron communications @ enron communications cc : subject : policies here is a first rough draft of a "" value @ risk "" transaction policy . i would like you to start looking at where we are going on the policy and get some early thinking going on limits for the v @ r . for example , should we effectively shut down all server relocations without approval , or allow some level of mb of storage to be moved around or reconfigured ? i need some commercial and industry realism for this . we may need rick paiste or your industry helpers ( marquardt , etc . to help us ) . barry , lou , i need your input .",0 +"Subject: re : charles shen thanks so much , vince - - i couldn ' t agree with you more . molly vince j kaminski 11 / 27 / 2000 02 : 40 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : charles shen molly , i think you called his bluff . if he does not fax a copy of his paycheck stub , we should not talk to him . he never talked to me about it . if he made a true statement about his compensation , he should have no reservations about sending us the confirmation . vince enron north america corp . from : molly magee 11 / 27 / 2000 01 : 58 pm to : vince j kaminski / hou / ect @ ect cc : subject : charles shen vince : i left you a voicemail about charles shen a week or so ago , but wanted to follow up with you . when i called him to extend our offer to him , he expressed surprise at the base salary offer of $ 110 , 000 , and told me that he was currently earning base pay in the amount of $ 120 , 000 . i told him that the salary figure he had written himself on the application was $ 102 , 000 , but he insisted that he had made an error and that it should have been $ 120 , 000 . i asked him what base salary he was looking for , and he said he would expect at least a 10 % increase in his base . i then told him that i was not authorized to make an offer above our initial one , and would contact you and get back to him . i called him later that afternoon and asked him to fax me a copy of his last paycheck stub so that we could minimize the confusion about his base pay . he said that he would be happy to do so , but i never received the fax . he left me a voicemail message during the evening that said he was on vacation and didn ' t have access to the pay stubs , but would send me a copy when he returned . i have not heard from him since , and wondered if he had contacted you . if not , would you want to get together to discuss our next step ? i ' ll wait to hear from you , molly x 34804",0 +"Subject: research prc next steps the pep system is no longer available to accept feedback from reviewers . if necessary , you can still call the employee ' s reviewers who have not submitted feedback via the pep system . verbal feedback can be included as part of the consolidated review . the following is a list of action items for next steps for supervisors : action item deadline print consolidated feedback wednesday , nov 22 thanksgiving holidays thursday - friday november 23 - 24 review / approve employees peer group and supervisor ( hr will provide report by 11 / 21 ) tuesday , november 28 pre - rank employees based on consolidated feedback tuesday , november 28 send pre - rankings to norma via encrypted e : mail wednesday , november 29 vince will review pre - rankings monday , december 4 , 2000 ena research prc meeting friday , december 8 written / verbal review provided to employee december 20 - january 20 signed review form due to hr january 27 , 2000 forward to appropriate parties , with sensitivity of the confidentiality of this information . if you have questions regarding the prc process please feel free to call me . norma villarreal x 31545",0 +"Subject: var david , during today ' s var coordination meeting we had a discussion of issues related to mapping of the forward price curves into core locations . mapping is a necessity dictated by the limitations of the computer system : we have to reduce the dimensionality of the problem to stay within the bounds of available cpu memory . also , in some cases the quality of price discovery is poor and it ' s difficult to model the price curves independently : we solve the problem by mapping them into more liquid and better behaved core locations curves . we have agreed on the following : 1 . winston will investigate the it side and determine to what extent we can increase the number of forward price curves that are simulated as basic ( core ) curves . he will investigate the impact of a larger number of the core curves on the time required to complete the var run . 2 . the curves associated with the biggest 10 - 20 positions in each commodity should be modeled as core curves ( i . e . no mapping into other locations ) . it makes sense to monitor the biggest risks separately and avoid aggregating them into less transparent aggregates . 3 . the results of an automated clustering ( mapping ) procedures should be systematically monitored by a human and corrected if they misrepresent the risks of the trading positions . this responsibility should be vested with one person ( right now the responsibility is dispersed through the organization and this means in practice that nobody is responsible ) . research can allocate one person to this task ; cooperation of trading and rac will be critical . vince",0 +"Subject: zingales seminar fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 23 / 2001 03 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - albert wang on 04 / 23 / 2001 11 : 23 : 22 am to : ( recipient list suppressed ) cc : subject : zingales seminar enron seminar series in finance jones graduate school of management , rice university luigi zingales university of chicago will give a seminar at the jones school on friday , april 27 , ? "" the great reversals : the politics of financial development in the 20 th century . "" the seminar will begin at 3 : 30 in room 105 . a pdf of the paper is available through the seminar website : http : / / www . ruf . rice . edu / ~ jgsfss / . fu - kuo albert wang assistant professor jones graduate school of management - - ms 531 ? rice university ? 6100 main street ? houston , tx 77005 ? phone : 713 - 348 - 5404 ? fax : ? ? ? ? 713 - 348 - 5251 email : wangfa @ rice . edu http : / / www . ruf . rice . edu / ~ wangfa /",0 +"Subject: credit applicatiions in grms this note is from ted murphy ( not bjorn hagelman ) my understanding is that yet another meeting has been scheduled with the intent of diverting resources from the grms project to some other project . while i am not privy to the urgency of this other project , i do know that we have a very large , multi - phase project going in grms . grms stands for the global risk monitoring system . it is not intended to be a commercial trading product not is its primary purpose for commercial decision - making . conceptually , it is a risk warehouse for the primary purpose of rac due to the deficiency of current front office trading systems and their inability to provide timely , aggregated information useful to rac . rac has spent over a year developing a business plan scope and detailed task list to accomplish its objectives . as a firm we are woefully behind our press clippings in our ability to aggregate and understand our risk profile . my most recent sojorn in europe is a classic example of the current systems inabilty to aggregate and meet the needs of rac having abetted poor decision making and causing cash losses in well in excess of the grms budget or that of the market risk group in rac . the grms project is a requirement that bill bradford and i have in order to do our jobs . we have delegated authority to debbie brackett and rudi zipter to make decisions regarding priorities and as such meet regularly with jonathon and his team as well as rick buy to provide updates . while progress is never as fast as we would like it , in every instance in which we have only to rely on rac , jonathon ' s team and research to make a deadline it haas been hit . the primary reason for any delays whatsoever has been the diversion of resources off the project or the reliance for cooperation from some other source - most recently the it staff in london was a tremendous impediment to deadlines . please excuse the frustration that is apparently coming through in this note , but i feel like the boy with his finger in the dyke and no one is listening . also , i have had several employees come to resignation over their frustration on the lack of management support for this project , usually manifesting itself in the lack of resources or the diversion of resources devoted to it . i think we have proven collectively that we can organize a modular multiphase project and provide tangible deliverables when not distracted . please let us do our jobs . i do not denigrate the efforts of others , but i believe that they must either submit their detailed requirements to us for our consideration of their worthiness to put in our que or develop their own project with their own resources . thank you for your consideration of this opinion . as it relates to things that will effect the ability of market risk to do its job , please consult me as i would you . ted",0 +"Subject: congratulations congrats on your promotion to md . i appreciate the work you group is doing for et & s , and i know the promotion is well deserved . bill cordes",0 +"Subject: departure the research group is a unique and extraordinarily valuable organization for enron . the success of the group has led to widespread recognition of enron ' s leadership in quantitative finance as it relates to the energy markets . therefore , it is with great mixed emotions that i announce my resignation as i move on to the next phase of my career . i have enjoyed getting to work with each of you and wish you continued success for the future . highest regards , kevin kindall ps : comments , question , and anecdotes will be addressed in thursday ' s meeting . shirley will have my contact info .",0 +"Subject: trisha lunch - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 01 / 10 / 2000 11 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - - frances ortiz 01 / 07 / 2000 02 : 54 pm to : ina rangel / hou / ect @ ect , kevin g moore / hou / ect @ ect cc : subject : trisha lunch jeff has approved for her to be added for lunch everyday and bodweek thanks fso",0 +"Subject: updated org chart vince , i updated my part of the org chart with the following changes . 1 . corrected samer ' s title to director ( he was hired by azurix as a director and has retained that title ) 2 . corrected spelling of samar khleif ' s name . 3 . added vacant analyst under zimin stinson",0 +"Subject: re : vacation vincent : congratulations ! please take whatever time is necessary . i hope the complications are only with the in - laws and not the police / u . s . immigration , etc . let me know if there is anything we can do for you . regards , grant . vincent tang on 04 / 17 / 2000 12 : 40 : 26 pm to : grant . masson @ enron . com cc : subject : ? hi , grant , how are you ? hope everything is going well . my wedding ceremony was very good but the whole process is more complex than i expected . it might take several more days . so i am wondering , if it is not too much a trouble for you , i would like to extend my vacation several more days . please let me know . best regards , vincent do you yahoo ! ? send online invitations with yahoo ! invites . http : / / invites . yahoo . com",0 +"Subject: re : stinson vacation plans stinson , no problem . vince stinson gibner 03 / 31 / 2000 05 : 28 pm to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : stinson vacation plans vince , i would like to plan on taking 6 days of vacation on june 2 through june 9 th . thanks , - - stinson",0 +"Subject: rosters ( rice university ) i have enclosed your latest rosters for mgmt 656 : energy derivatives . the word document is your official rosters . the excel document is a list of names with e - mail addresses . i ' ll keep you updated as students add / drop . as always , let me know if you have any questions . pamela castro mba program associate rice university 713 - 348 - 6223 - 656 . xls - 656 . doc",0 +"Subject: 3 - urgent - to prevent loss of information critical migration information : 1 . your scheduled outlook migration date is the evening of : may 7 th 2 . you need to press the "" save my data "" button ( only once ) to send us your pre - migration information . 3 . you must be connected to the network before you press the button . 4 . if a pop - up box appears , prompting you to "" abort , cancel or trust signer "" please select trust signer . 5 . any information you add to your personal address book , journal or calendar after you click on the button will need to be manually re - added into outlook after you have been migrated . 6 . clicking this button does not complete your migration to outlook . your migration will be completed the evening of your migration date . failure to click on the button means you will not get your calendar , contacts , journal and todo information imported into outlook the day of your migration and could result in up to a 2 week delay to restore this information . if you encounter any errors please contact the resolution center @ 713 - 853 - 1411",0 +"Subject: re : off - site : john griebling ' s organization and research group vince , jeff does plan to attend the off - site in breckenridge . i ' m not sure exactly what time he ' ll arrive on friday , 4 / 28 , but will send those details when available . thanks , srs vince j kaminski @ ect 03 / 27 / 2000 04 : 43 pm to : jeff skilling / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , ravi thuraisingham / enron communications @ enron communications , sherri sera / corp / enron @ enron , katherine brown / corp / enron @ enron , ken rice / enron communications @ enron communications , kevin hannon / enron communications @ enron communications , joe hirko / enron communications @ enron communications , john griebling / enron communications @ enron communications subject : off - site : john griebling ' s organization and research group jeff , i would like to invite you to an off - site meeting of john griebling ' s organization and the research group . date : april 27 - april 29 location : breckenridge , colorado as you know , john griebling is managing the network design and construction project currently under way in ebs . the research group is actively involved in this effort which requires advanced quantitative skills in the area of stochastic optimization and stochastic processes ( for modeling and forecasting internet traffic flows ) . the objective of this meeting is to develop common language and accomplish transfer of skills between the two groups , to facilitate cooperation on this project in the future . we are also inviting to this off - site senior management of ebs and plan to have on the agenda several presentations about strategic directions of ebs . the effort of network design and construction currently under way is unprecedented in terms of its scope and complexity and it is important for technical people , who often have highly specialized technical skills , to understand the broad picture . i would appreciate if you could join us for friday afternoon ( april 28 ) and saturday ( april 29 ) . i understand that you have commitments on thursday and friday morning . we have reorganized the tentative agenda of the meeting to devote friday afternoon to more general topics . vince",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 carson , margaret m james d steffes may 26 , 2000 carson , richard l richard b buy may 22 , 2000 crenshaw , shirley j wincenty j . kaminski may 24 , 2000 ghosh , soma timothy davies may 31 , 2000 kaminski , wincenty j . david w delainey jun 05 , 2000 peyton , john a randal t maffett jun 05 , 2000 thuraisingham , ravi vasant shanbhogue may 30 , 2000 vernon , clayton j vasant shanbhogue may 26 , 2000 yuan , ding richard l carson jun 02 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: re : is this data of interest to any of you ? yannis , it makes a lot of sense to get this info . also , you are welcome to make a presentation to the group this thursday at lunch . please , call shirley crenshaw ( x 3 - 5290 ) to coordinate and order sandwich you would like to have . vince joe , can you , please , babysit this presentation ( make sure we have all the audiovisual equipment we need , etc . ) . vince yannis tzamouranis 03 / 28 / 2000 02 : 50 pm to : yannis tzamouranis / hou / ect @ ect cc : ( bcc : vince j kaminski / hou / ect ) subject : is this data of interest to any of you ? fyi : the following file describes the contents of the monthly energy review ( application , current , and historical ) . the data is available through a doe site and we can get it for free and incorporate it in the lim database , if there is interest . review the attached file ( look for keywords of interest ) and let us know whether need dictates loading these datasets . for the market analysis and infomration management group , yannis c . tzamouranis enron it",0 +"Subject: research group hello norma : in answer to your phone message i am sending you the following information . there is one thing you probably need to be aware of . on the research list , elena chilkina is shown as an analyst p / t , however , in the records she is shown as an "" adm coord "" . this was done so that she could be considered non - exempt and receive overtime . however , her actual job is an analyst . also , roman zadarozhny is an analyst that rotated out of our group 6 months ago , but was never moved to the new group . he is now up for rotation again and vince said that we will just keep him until he finds a new rotation . if you have any questions , please call me .",0 +"Subject: zingales seminar enron seminar series in financejones graduate school of management , rice universityluigi zingalesuniversity of chicagowill give a seminar at the jones school on friday , april 27 , ? "" the great reversals : the politics of financial development in the 20 th century . "" the seminar will begin at 3 : 30 in room 105 . a pdf of the paper is available through the seminar website : http : / / www . ruf . rice . edu / ~ jgsfss / . fu - kuo albert wangassistant professorjones graduate school of management - - ms 531 ? rice university ? 6100 main street ? houston , tx 77005 ? phone : 713 - 348 - 5404 ? fax : ? ? ? ? 713 - 348 - 5251 email : wangfa @ rice . eduhttp : / / www . ruf . rice . edu / ~ wangfa /",0 +"Subject: re : the garp 2001 convention : invitation to speak andreas , this looks ok . i look forward to receiving a formal confirmation from you . vince "" andreas simou "" on 08 / 17 / 2000 11 : 49 : 29 am to : cc : subject : re : the garp 2001 convention : invitation to speak dear mr kaminski thank you very much for agreeing to speak at the garp 2001 convention . i will be sending you a formal letter of confirmation in the next few days , in the meantime i have selected the session below for you and included some preliminary details ; are these correct ? i apologize if your details are not correct but this is the information that was available to me . is the title of the session to you liking , or would you like to ' spice it up ' a little ? measuring energy risk - tackling price volatility , adapting var , scenario modelling and regulatory requirements vince kaminski , head of quantitative research , enron energy once again , thank you for agreeing to participate and i look forward to working with you on this event . kind regards andreas - - - - - original message - - - - - from : to : cc : sent : thursday , august 17 , 2000 5 : 22 pm subject : re : the garp 2001 convention : invitation to speak andreas , i shall be glad to speak . i can address topic 2 or 4 ( energy risk or volatility ) . vince kaminski "" andreas simou "" on 08 / 15 / 2000 09 : 58 : 26 am to : cc : subject : the garp 2001 convention : invitation to speak invitation to speak garp 2001 the 2 nd annual risk management convention 13 ( superscript : th ) & 14 ( superscript : th ) february , 2001 ? marriott world trade center , new york dear kaminski further to my telephone conversation today with your secretary , shirley crenshaw , and on behalf of the global association of risk professionals , i have great pleasure in inviting you to speak at our 2 ( superscript : nd ) annual risk management convention ? garp 2001 . this event has rapidly establishing itself as the risk management industry ' s most important meeting point . garp 2000 reflected the key concerns of risk management experts world - wide , with over 400 attendees in its first year . three simultaneous streams address traditional pricing and risk management techniques , along with specialised streams addressing new sectors , such as the corporate world and the insurance industry . with a speaker panel of over 55 senior and executive financial professionals from investment banks , regulatory bodies , asset management firms , academics , insurers / re - insurers , corporate and system providers this is the financial risk management event of the year . key areas that this convention will consider include market risk ( stress testing , liquidity , jump diffusion , evt ) , credit risk ( regulation , modeling , stress testing , credit portfolio management , credit derivatives ) , operational risk , ( regulation , data , modeling , validation , evt ) advanced asset & liability management , corporate / energy risk management and the insurance & capital markets . from my research and discussions with experts in this arena your name was highly recommended as a speaker for this event . below is the stream on corporate / energy risk management and i had in mind one of the sessions below for you . also , the topic titles are provisional and i am open to suggested alterations . corporate / energy risk management modelling corporate risk ? risk management from a shareholder value perspective measuring energy risk ? tackling price volatility , adapting var , scenario modelling and regulatory requirements forward pricing ? construction of the forward curve , correlations , transparency issues the volatility challenge ? modelling price volatility and examining the new products designed to stabilise volatility energy credit risk management garp is a not - for - profit , independent organisation of risk management practitioners and researchers from leading financial institutions world - wide . garp ' s mission is to facilitate the exchange of information , developing educational programs and promoting standards in the area of financial risk management . for more information please refer to our web site : www . garp . com i sincerely hope you will be able to accept this invitation and i look forward to hearing from you in due course . should you have any questions please do not hesitate to contact me , otherwise i will call you again on to discuss this further . best regards andreas ps i have also attached a copy of garps 2000 program for your attention . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900 ( see attached file : draft programme . doc ) ( see attached file : g 2000 b & wlowr . pdf )",0 +"Subject: re : from a previous summer intern dear giuseppe : unfortunately , i am no longer with the associate and analyst recruiting department and will be unable to assist you directly . please contact tracy warner , who is now responsible for recruiting . she will be able to assist you directly . tracy can be contacted at tracy . warner @ enron . com . i would also recommend having vince kaminski contact her as well to ensure that all communications are in order . best regards , celeste roberts giuseppe andrea paleologo @ stanford . edu on 04 / 20 / 2001 01 : 53 : 39 pm please respond to gappy @ stanford . edu sent by : gappy @ stanford . edu to : celeste roberts cc : subject : from a previous summer intern celeste , my name is giuseppe a . paleologo and you amy remember me : i was a summer intern last summer in the research group , and attended the hiring event this year at stanford . in that occasion i had an informal offer from vince kaminski , and the assurance that i would receive a written one in the following two weeks , but since then i have not received any letter from enron . i would like to know if the offer is still valid , and if it has been sent . i am asking because i am in the process of evaluating my offers , and would like to wait for enron before i make my final decision . thanks in advance , giuseppe paleologo - - giuseppe a . paleologo email : gappy @ stanford . edu office phone : ( 650 ) 725 - 0541",0 +"Subject: a chapter to be published in a book by clewlow / strickland darrell , grant masson , ronnie chahal and myself made a contribution to the book on energy derivatives to be published soon in australia ( a book by clewlow and strickland ) . given our growing workload and responsibilities , the quality of the paper is less than satisfactory . i would like to make sure that there are no obvious and embarrassing errors in what we submit . i would appreciate if you could take a quick look at the chapter and give us the feedback ( under the same arrangement as in the previous cases ) . thanks for looking at our storage model . i shall give you a call within the next few days to update you on our work and developments at enron . vince will start his senior year in 6 weeks . he wants to graduate and look for work : he thinks getting an advanced degree in his field makes no economic sense . he spent the summer building his own computer ( 1000 mhz clock speed ) . i was the unskilled immigrant worker toiling under his management . i hope everything is well at home and that your wife ' s company is doing great . regards . vince",0 +"Subject: re : alp presentation dennis , thanks for you message . i shall send you more information regarding the dinner later this week . christie patrick , who is in charge of our university liaison unit , is making arrangements for the evening at the enron field . hopefully , we shall be able to combine dinner with a game . vince "" dennis w . loughridge "" on 04 / 30 / 2001 10 : 49 : 10 am please respond to to : cc : subject : re : alp presentation vince i will be attending the alp presentation on may 7 and would be pleased to join the team for dinner if it is not too late . thank you dennis loughridge dennis w . loughridge director of energy consortium rice university 713 - 348 - 2812 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , april 10 , 2001 8 : 16 am to : loughrid @ rice . edu cc : luigical @ rice . edu subject : alp presentation sorry , trying again . i probably got a wrong e - mail address and the original message was returned . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 10 / 2001 08 : 13 am to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: re : ebs research telecom rercruiting effot hi kristy , please track down electronic form of the four students that we interviewed ( 2 stanford , 2 mit ) . if you need help , feel free to talk to vince to find out which one he has etc . . . . vince , there will be salal from mit coming in march 5 th ( i think , kristy please confirm ) . he is very qualified and most like a good fit . so , please let hr know that we may add a couple , etc . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 20 / 00 12 : 46 am - - - - - vince j kaminski @ ect 02 / 18 / 00 08 : 24 am to : ravi thuraisingham / enron communications @ enron communications @ enron cc : stinson gibner / hou / ect @ ect subject : re : ebs research telecom rercruiting effot ravi , our compensation for summer interns is very generous . it ' s more than what an engineering student expects . vince p . s . any progress on the resumes in electronic form ? i want to send a package to charlene today . vince ravi thuraisingham @ enron communications on 02 / 17 / 2000 02 : 34 : 01 pm to : vince kaminski , stinson gibner / hou / ect @ ect cc : subject : ebs research telecom rercruiting effot hi , vince please put your best effort in making sure that we differentiate summer interns and associates that ebs research will be hiring . i am talking about compensation here . ken rice mentioned that ebs is in the process of developing a technical equivalent of our aa pool . ebs research people can potentially rotate through this pool in the future . i just don ' t want to risk losing people like giuseppe ( & get the word out that we are low - ballers ) because we have to fit them into certain set of categories that was designed for the energy business . i realize that you have estabilished such differentiation for research as a whole , but i think that would have to be moved up a notch in the case of ebs . ravi .",0 +"Subject: re : worldpower mark , i agree with you . they do not seem to have the market penetration we need . the benefits don ' t justify the expense . i shall notify them . vince mark palmer @ enron 01 / 21 / 2000 08 : 22 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : worldpower i think we should decline . mark",0 +"Subject: dram trading authority here is the latest trading request : specifically it requires the following to get it over the line : vince , your concurrence with a simplistic var calculation the start - up period everybody else , your signatures , or agreement to sign via email in addition , here is the commercial presentation which wil be attached to the request on its way to eb 5007 many thanks dp",0 +"Subject: re : visit to houston - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 02 / 2001 01 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 03 / 02 / 2001 11 : 33 : 11 am to : stinson . gibner @ enron . com cc : gappy @ stanford . edu , cope @ csli . stanford . edu , bambos @ stanford . edu subject : re : visit to houston hi stinson , giuseppe , eric and i , arrive on thusday night at 10 pm . we ' ll try to reserve rooms at the doubletree hotel next to the enron building . does enron get special deals with this hotel ? > > > giuseppe , can you please make the reservations ? > > giuseppe , can you please call stinson and see how we can optimize the agenda and maximize the value of the visit . i am swamped today . . . nick , > > i hope everything is ok in palo alto . are you able to come to houston on > the 9 th of march ? please let me know of your plans so we will know what > times to set up discussions . i will try calling you tomorrow to check on > your plans , or feel free to call me . > > regards , > > stinson > 713 853 4748",0 +"Subject: financial mathematics - houston , august 31 and september 1 ? - speaker chase - vince kaminski . doc",0 +"Subject: lance cunningham vince : i have left a message with teresa and have sent the following terse note to lance to let him know that we are moving . as we discussed , i asked teresa to offer 90 k + 10 k signing bonus . regards , grant - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 06 / 30 / 2000 11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : grant masson 06 / 30 / 2000 11 : 21 am to : lbcunningham @ mail . utexas . edu cc : subject : enron lance : i am going on vacation tomorrow , but i wanted to get in touch with you before i left . i have asked hr to extend an offer to you . teresa bien should be sending you an offer letter via fedex . of course , with the july 4 th weekend , i ' m not sure when you will get it . if you have questions , i suggest that you call vince kaminski at 713 853 3848 . regards , grant masson .",0 +"Subject: re : tani , yes , i am aware of it . thanks for letting me know who is the hr rep in london . vince tani nath 05 / 02 / 2001 09 : 01 am to : vince j kaminski / hou / ect @ ect cc : tara rozen / lon / ect @ ect subject : vince , i don ' t know if you are already aware of this , but maureen raymond has been taken ill and i understand has received medical advice that she should not travel before the end of next week at the earliest . tara is the appropriate hr representative in london ; i will ask her to keep both you and houston hr informed of the situation . many thanks , tani",0 +"Subject: re : informs abstract ( fwd ) shijie , additional changes . abstract : the power market developments in the us have created several unique challenges for energy industry economists . we discuss the major factors underlying the exceptionally high volatility of electricity prices . we feel that some of them may reflect the flaws in power pools design and incomplete transition to fully deregulated markets in generation and transmission . the title is fine . vince shijie deng on 10 / 01 / 2000 07 : 47 : 53 pm to : vkamins @ enron . com cc : subject : re : informs abstract ( fwd ) - - - - - - - - - - forwarded message - - - - - - - - - - date : sun , 1 oct 2000 14 : 29 : 20 - 0400 ( edt ) from : shijie deng to : vkaminski @ aol . com cc : shijie deng subject : re : informs abstract vince , thanks for the abstract ! for the purpose of the conference program listing , the conference organizers need a title and an abstract which is longer than 50 words . based on the abstract that you sent me , i took the liberty to make up a title and the 50 - word abstract ( attached below ) . please make changes as you feel necessary and send them back to me . i ' ll send them out to the organizers once i get your confirmation on this . best , shijie title : current challenges in modeling power price volatility author : dr . vince kaminski , head of quantitative research , enron capital & trade resources abstract : the power market developments in the us have created several unique challenges for energy industry economists . we discuss the major factors underlying the exceptionally high volatility of electricity prices . we feel that some of them may be a necessary price to pay for increased market efficiency and expanded customer choice . shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng on sun , 1 oct 2000 vkaminski @ aol . com wrote : > shijie , > > i am sending you the abstract for my informs presentation . > > vince > > > * * * * * > > > the last three years were characterized by exceptionally high volatility of > the power prices in the us markets . the market developments have created a > number of unique challenges for energy industry economists . one immediate > question we have to answer is how to measure volatility of energy prices . > although we can all agree that the prices in the power markets are > characterized by high variability , the traditional measures used in financial > economics ( annualized standard deviation of log price returns ) may not fit > well electricity prices . the second challenge is to explain the sources of > high price volatility and to answer the question to what extent it can be > attributed to problems that can be addressed in the long run . such problems > include flaws in market design that allow some market participants to abuse > market power , limited availability and / or unequal access to transmission , > temporary shortages of generation capacity . some factors underlying high > volatility of electricity prices may be of permanent nature and may be a > necessary price to pay for increased market efficiency and expanded customer > choice . >",0 +"Subject: re : fwd : australian energy 2000 dear vince , i am truly grateful . that would be excellent . many thanks , joel - - - - - original message - - - - - from : vince j kaminski to : eprmconf @ asiarisk . com . hk cc : vince j kaminski ; vkaminski @ aol . com date : 02 march 2000 14 : 56 subject : re : fwd : australian energy 2000 > > > joel , > > i shall be glad to take all the remaining sections . > > i have spoken on this subject several times so it will > relatively easy to prepare it . > > vince > > > > > > vkaminski @ aol . com on 02 / 29 / 2000 09 : 27 : 19 pm > > to : vkamins @ enron . com > cc : > subject : fwd : australian energy 2000 > > > > > return - path : > received : from rly - ydol . mx . aol . com ( rly - ydol . mail . aol . com [ 172 . 18 . 150 . 1 ] ) by > air - ydo 3 . mail . aol . com ( v 69 . 17 ) with esmtp ; tue , 29 feb 2000 : 30 : 22 - 0500 > received : from srol . imsbiz . com ( srol . imsbiz . com [ 206 . 161 . 62 . 5 ] ) by > rly - ydol . mx . aol . com ( v 69 . 17 ) with esmtp ; tue , 29 feb 2000 9 : 51 - 0500 > received : from joel ( [ 210 . 176 . 232 . 92 ] ) by srol . imsbiz . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with > smtp id kaao 0361 for ; wed , 1 mar 2000 10 : 29 : 44 + 0800 > message - id : > x - sender : eprmconf @ pop . asiarisk . com . hk > x - mailer : qualcomm windows eudora light version 3 . 0 . 5 ( 32 ) > date : wed , 01 mar 2000 10 : 32 : 41 + 0800 > to : vkaminski @ aol . com > from : joel hanley > subject : re : australian energy 2000 > in - reply - to : > mime - version : 1 . 0 > content - type : multipart / mixed ; > > dear vince , > i am delighted to be working with you at last . i can confirm the lessons > learned session , and i shall leave it up to you to consider the content . > the session will last one hour , including q the second topic > will > > be "" value - at - risk "" ( please , feel free to make this title more specific ) . > > > > i look forward to meeting you in australia in july . > > > > vince > > > > > > > > > ps . as of friday 3 rd march , i shall be back in my london office where my > email address is hanley @ risk . co . uk and my number is + 44 207 484 9885 . > > ( see attached file : varseml . doc ) > > >",0 +"Subject: re : zakup ksiazki "" inzynieria finansowa "" w wnt pani grazyno , dziekuje bardzo za wiadomosc . autor ksiazki przeslal mi egzemplarz . na pewno skorzystam z okazji , by kupic inne ksiazki pani wydawnictwa . any web - site i can access ? w . kaminski "" wydawnictwa naukowo - techniczne "" on 03 / 01 / 2001 09 : 57 : 19 am to : cc : subject : zakup ksiazki "" inzynieria finansowa "" w wnt uprzejmie informuje , ze do dnia dzisiejszego nie wplynely pieniadze na zamowiona ksiazke , wobec czego uwazam to za rezygnacje z zakupu . serdecznie pozdrawiam . grazyna piesniewska",0 +"Subject: re : mgmt 656 ( rice university ) pam , thanks . the list of e - mail addresses would be useful as well . vince pamela vande krol castro on 01 / 17 / 2001 03 : 05 : 01 pm to : vince . j . kaminski @ enron . com cc : subject : mgmt 656 ( rice university ) here are your rosters for mgmt 656 . let me know if you need a list of e - mail addresses as well . i will update you as student schedules change . - pam ( 713 - 348 - 6223 ) - 656 . doc",0 +"Subject: giuseppe paleologo molly , giuseppe is finishing his ph . d . at stanford and worked for us last summer . we would like to make him an offer to bring him as a manager . vince would like to offer $ 110 k base plus a $ 20 k signing bonus and whatever would be the appropriate relocation package ( he is single . ) . he is leaving on monday for europe , so it would be preferable if we can get an offer letter in his hands by friday or saturday . i have verbally given him this offer already , but told him that you would be the expert regarding what is covered in the relocation part . he should be sending me his current address by email which i will forward to you a . s . a . p . thanks , stinson x 34748 p . s . regarding jinbaek . we would be happy to pay his air ticket . - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 25 / 2001 03 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - giuseppe andrea paleologo @ stanford . edu on 04 / 23 / 2001 07 : 33 : 29 pm please respond to gappy @ stanford . edu sent by : gappy @ stanford . edu to : stinson . gibner @ enron . com cc : subject : re : from stinson stinso , nice to hear from you . things are going well here . the only annoyance comes from the ins . i applied for curricular practical training , and it will take about three months to have the work permit . receiving an h - 1 takes understably much longer . other than this , i would like to know how are things in the research group and ebs . i will leave for italy next monday and will stay there two weeks . i hope to hear from you before my departure . giuseppe stinson . gibner @ enron . com wrote : > > giuseppe , > > how are you ? is your thesis still on schedule ? i hope things are going > well . i will try and give you a call in the next day or two to see how > things are going and to bring you up to date on what ' s going on here at > enron . look forward to talking with you . > > - - stinson - - giuseppe a . paleologo email : gappy @ stanford . edu office phone : ( 650 ) 725 - 0541",0 +"Subject: re : preface for book julie , the introduction looks fine . i have made some cosmetic changes ( typos and split infinitives that slipped by ) . you can safely ignore most of them . english is not even my second language . the corrections are in pink . vince "" julie "" on 08 / 01 / 2000 07 : 43 : 10 am to : "" vincejkaminski "" cc : subject : preface for book vince , ? hope you are well . ? we spoke a while ago about who should write the preface for the book , and you kindly offered that you would provide this . ? is this still possible ? ? we realise that you are extremely busy , so chris and les went ahead and wrote something , which is below , and if you want to review , change or re - write ? the preface , that would be very appreciated . ? let me know what your thoughts are . ? thanks , julie ( we ' re getting close ) ? ? preface ? ? ? one of our main objectives in writing energy derivatives : pricing and risk management has been to bring together as many of the various approaches for the pricing and risk management energy derivatives as possible , to discuss in - depth the models , and to show how they relate to each other . ? in this way we hope to help the reader to analyse the different models , price a wide range of energy derivatives , or to build a risk management system which uses a consistent modelling framework . ? we believe that for practitioners this last point is very important and we continue to stress in our articles and presentations the dangers of having flawed risk management and giving arbitrage opportunities to your competitors by using ad - hoc and inconsistent models for different instruments and markets ( see also others who propose consistent models ? ) . ? however , it is not our wish to concentrate on one particular model or models , at the exclusion of the others because we believe that the choice should rest with the user ( although it will probably be clear from our discussions the model ( s ) we prefer ) . ? we therefore try and give as clear account as possible of the advantage and disadvantages of all the models so that the reader can make an informed choice as to the models which best suit their needs . ? in order to meet our objectives the book is divided into 11 chapters . ? in chapter 1 we give an overview of the fundamental principals needed to model and price energy derivatives which will underpin the remainder of the book . ? in addition to introducing the techniques that underlie the black - scholes modelling framework we outline the numerical techniques of trinomial trees and monte carlo simulation for derivative pricing , which are used throughout the book . ? in chapter 2 we discuss the analysis of spot energy prices . ? as well as analysing empirical price movements we propose a number of processes that can be used to model the prices . ? we look at the well - know process of geometric brownian motion as well as mean reversion , stochastic volatility and jump processes , discussing each and showing how they can be simulated and their parameters estimated . ? chapter 3 , written by vince kaminski , grant masson and ronnie chahal of enron corp . , discusses volatility estimation in energy commodity markets . ? this chapter builds on the previous one . ? it examines in detail the methods , merits and pitfalls of the volatility estimation process assuming different pricing models introduced in chapter 2 . ? examples from crude , gas , and electricity markets are used to illustrate the technical and interpretative aspects of calculating volatility . ? chapter 4 examines forward curves in the energy markets . ? although such curves are well understood and straight - forward in the most financial markets , the difficulty of storage in many energy markets leads to less well defined curves . ? in this chapter we describe forward price bounds for energy prices and the building of forward curves from market instruments . ? we outline the three main approaches which have been applied to building forward curves in energy markets ; the arbitrage approach , the econometric approach , and deriving analytical values by modelling underlying stochastic factors . ? chapter 5 presents an overview of structures found in the energy derivative markets and discusses their uses . ? examples of products analysed in this chapter include a variety of swaps , caps , floors and collars , as well as energy swaptions , compound options , asian options , barrier options , lookback options , and ladder options . ? chapter 6 investigates single and multi - factor models of the energy spot price and the pricing of some standard energy derivatives . ? closed form solutions for forward prices , forward volatilities , and european option prices both on the spot and forwards are derived and presented for all the models in this chapter including a three factor , stochastic convenience yield and interest rate model . ? chapter 7 shows how the prices of path dependent and american style options can be evaluated for the models in chapter 6 . ? simulation schemes are developed for the evaluation of european style options and applied to a variety of path dependent options . ? in order to price options which incorporate early exercise opportunities , a trinomial tree scheme is developed . ? this tree is built to be consistent with the observed forward curve and can be used to price exotic as well as standard european and american style options . ? chapter 8 describes a methodology for valuing energy options based on modelling the whole of the market observed forward curve . ? the approach results in a multi - factor model that is able to realistically capture the evolution of a wide range of energy forward curves . ? the user defined volatility structures can be of an extremely general form . ? closed - form solutions are developed for pricing standard european options , and efficient monte carlo schemes are presented for pricing exotic options . ? the chapter closes with a discussion of the valuation of american style options . ? chapter 9 focuses on the risk management of energy derivative positions . ? in this chapter we discuss the management of price risk for institutions that trade options or other derivatives and who are then faced with the problem of managing the risk through time . ? we begin with delta hedging a portfolio containing derivatives and look at extensions to gamma hedging  ) illustrating the techniques using both spot and forward curve models . ? the general model presented in chapter 8 is ideally suited to multi - factor hedging of a portfolio of energy derivatives and this is also discussed . ? chapter 10 examines the key risk management concept of value at risk ( var ) applied to portfolios containing energy derivative products . ? after discussing the concept of the measure , we look at how the key inputs ( volatilities , covariances , correlations , etc ) can be estimated . ? we then compare the fours major methodologies for computing var ; delta , delta - gamma , historical simulation and monte - carlo simulation , applying each to the same portfolio of energy options . ? in this chapter we also look at testing the var estimates for various underlying energy market variables . ? finally , in chapter 11 we review modelling approaches to credit risk . ? we look in detail at two quite different approaches , creditmetrics ( j . p . morgan ( 1997 ) ) and creditrisk + ( credit suisse financial products ( 1997 ) ) for which detailed information is publicly available . ? together these provide an extensive set of tools with which to measure credit risk . ? we present numerical examples of applying these techniques to energy derivatives . ? before we begin we stress that the models and methods we present in this book are tools which should be used with the benefit of an understanding of how both the  + tool  , and the market works . ? the techniques we describe are certainly not  & magic wands  8 which can be waved at data and risk management problems to provide instant and perfect solutions . ? to quote from the riskmetrics technical document  &  ( no amount of sophisticated analytics will replace experience and professional judgement in managing risk .  8 . ? however , the right tools , correctly used make the job a lot easier !",0 +"Subject: livelink access - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 11 / 2001 01 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron technology from : moyez lallani @ enron 01 / 16 / 2001 10 : 46 am to : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : subject : livelink access gentlemen , i have created a folder called research projects folder in the livelink test instance . the url to the test instance is to log in , use your nt login id as your userid and password ( all lowercase ) . you will find the folder on the enterprise workspace . please call me should you require further assistance . moyez lallani x 5 - 3683",0 +"Subject: re : london , new york , houston , financial mathematics june / july 2001 vince : are you just speaking at the one in houston ? vince j kaminski 05 / 01 / 2001 04 : 45 pm to : shirley crenshaw / hou / ect @ ect cc : subject : london , new york , houston , financial mathematics june / july 2001 fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" joanna vidal "" on 05 / 01 / 2001 03 : 43 : 11 pm to : , "" geman helyette "" , , , , , , cc : subject : london , new york , houston , financial mathematics june / july 2001 hello speakers ! my name is joanna vidal and i am the coordinator for the financial mathematics training course being in held on the following dates : london on june 28 & 29 new york on july 9 & 10 houston on july 16 & 17 i am in the process of preparing the speaker packs which will include an updated contact information sheet with all your details . you will receive this pack shortly after you confirm your addresses . i will list them below and i ask that you please look it over and make any necessary corrections . my contact details , for your information are : joanna vidal events coordinator risk waters group t : ( 212 ) 925 1864 ext . 197 f : ( 212 ) 925 7585 jvidal @ riskwaters . com www . riskwaters . com thank you and i look forward to working with you . duane seppi carnegie mellon university graduate school of industrial administrations pittsburgh , pa 15213 - 3890 t : 001 412 - 268 - 2298 f : 001 412 - 269 - 8896 helyette geman universite de paris dauphine finance department au de ka grand ecole corgy pontois , paris france 95021 t : 00 33 60 - 807 - 4200 vincent kaminski enron credit 1400 smith street room ebl 962 houston , tx 77002 - 7361 t : 001 713 - 853 - 3848 f : 001 713 - 646 - 2503 peter nance teknecon , inc . 1515 s . capital of texas highway suite 101 austin , tx 78746 t : 001 512 - 732 - 7084 f : 001 512 - 732 - 7099 chris harris innogy holdings place windmill hill business park whitehill way swindon , wiltshire uk , 5 n 5 6 pb t : 44 793 387 - 7777 f : 44 793 389 - 7811 spyros maragos dynergy , inc . 1000 louisiana street suite 5800 houston , tx 77002 t : 011 713 - 507 - 6589 f : 001 713 - 767 - 5958 ehud ronn university of texas at austin department of finance mccombs school of business austin , tx 78712 - 1179 t : 001 512 - 471 - 5853 f : 001 512 - 471 - 5073",0 +"Subject: uk ppi curve generator with smoothing - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 31 / 2000 01 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - anjam ahmad 03 / 28 / 2000 02 : 08 pm to : martina angelova / lon / ect @ ect , trena mcfarland / lon / ect @ ect cc : dale surbey / lon / ect @ ect , mary thambiah / lon / ect @ ect , zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : uk ppi curve generator with smoothing hi martina & trena , i think this is a reasonable smoothing method between the short and long - term models - let me know if you need me to explain it . i also included the short - term models so this is now a self - standing spreadsheet , but probably still needs cleaning up a bit . zimin & stinson : we agreed on short - term and long - term models for dzcv and pllu ppi indices in a meeting with dale and trena and a simple smoothing is employed to give the results as follows . blue and red curves are the proposed dzcv and pllu ppi index forward curves whilst rpi is the market - derived black curve . regards , anjam x 35383",0 +"Subject: re : mg metals : additional areas to look at dear richard , thanks for your message - i just met lloyd fleming who is setting up meetings for me and getting me some of the information requested . houston research has started on this process , but i believe that i will take over from here - i am in houston in 10 days time and will also discuss initial findings with them . regards , anjam hmad london research x 35383 richard sage 30 / 06 / 2000 09 : 50 to : anjam ahmad / lon / ect @ ect cc : subject : mg metals : additional areas to look at phil redman will come to see you to capture appropriate tasks on the overall project plan and identify dependencies . i hope lloyd has kept you up to date so far . i have added you to the address list for daily updates affecting the support functions . - - - - - - - - - - - - - - - - - - - - - - forwarded by richard sage / lon / ect on 30 / 06 / 2000 09 : 50 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : anjam ahmad 30 / 06 / 2000 09 : 46 to : lloyd fleming / lon / ect @ ect , richard sage / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , dale surbey / lon / ect @ ect , tanya tamarchenko / hou / ect @ ect subject : mg metals : additional areas to look at dear lloyd & richard , i have been discussing with eric gadd about two particular areas of concern that will affect the london research group . i believe there are a number of issues to address to ensure that the integration goes smoothly from a risk management and quantitative analysis perspective , and i have put together a ( by no means exhaustive ) list : - i ) seamless transfer of front and middle office systems from an exotic options linking perspective ( e . g . their spreadsheets link to different option pricing add - ins ) ii ) development of volatility curves and factor analysis to ensure that we can capture metals risk in our var system ( we will require historical data for this ) . i am sure bjorn will be looking to the research group to assist in this matter . iii ) ensure that mg staff on quant and risk side become familiar with our methods and systems and vice versa these tasks will involve a significant degree of cross - communication with relevant contacts within mg metals , and so i look forward to starting on the process as soon as possible - i hope to play a full part from a quantitative research and risk management perspective to ensure that everything goes smoothly in this exciting new development , so please do not hesitate to involve me . best regards , anjam ahmad research x 35383",0 +"Subject: re : follow - up thanks , vince , that is great information . eric vince j kaminski @ ect 08 / 25 / 2000 02 : 51 pm to : eric thode / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : follow - up eric , mandeep chahal , ainsley gaddis , sofya tamarchenko , elena chilkina , james aimone should not count . m . chahal was transferred to the new company , the rest are summer interns ( gone back to school ) , or part - time high school or college kids . i shall walk around and remind the rest of the crowd about the deadline . vince eric thode @ enron 08 / 25 / 2000 02 : 31 pm to : vince j kaminski / hou / ect @ ect cc : subject : follow - up vince - - we have been working the last few days to get ena ' s united way participation rate up as high as possible . i called earlier about your cost center because the following 16 employees were listed in power trading , but i believe are part of the research organization . if you have a chance , could you encourage them to log onto http : / / unitedway . enron . com on the intranet and make a contribution to the united way . the deadline is today . thanks . eric employees in your cost center : ainsley gaddis elena chilkina james aimone jose marquez kevin moore mandeep chahal maureen raymond osman sezgen paulo issler peyton gibner pinnamaneni krishnarao samer takriti sofya tamarchenko thomas halliburton william smith yana kristal",0 +"Subject: call option - promigas zimin , thanks for the meeting yesterday , your help is going to be very valuable for the analysis of our deal . below you will find the names of the comparable companies you can use for the study of the volatility : cablevision comcast cox communications mediaone group rogers communications time warner morgan stanley dean witter published a memorandum on january 5 / 00 "" us investment research : cable television "" where you can get detailed information on the performance of these companies we will be working on the histogram during the weekend and we will be sending the results to you as soon as possible . regarding the quotes for the loan guarantee we will be getting them on monday . please let me know if you will need any additional information for the volatility study thanks and regards , maria elena",0 +"Subject: friday brown bag for options pricing hello , researchers : this friday we have paulo issler speaking on "" implied trees and edgworth binomial trees "" . time : 12 noon , may 26 ; place : 19 c 2 . the brown bag series has been a success thanks to your participation . hope to see you again this friday . zimin , alex .",0 +"Subject: california 1 / 17 / 01 summary : late night efforts by the california assembly to craft a legislative solution are falling short of market and creditor expectations . bankruptcy appears increasingly likely , but the dynamics of a ch . 11 proceeding remain unclear . socal edison is likely to be the first in ch . 11 following its suspended payments to creditors yesterday and is now in a 30 day cure period . attempts to bring in the assets of the parent companies are unlikely to succeed . bankruptcy would provide davis with some political cover to implement the tough decisions that he has so far avoided on the questions of rate hikes and other costs to taxpayers connected to the proposed operations of the california power authority . 1 . legislation passes assembly , but generators and consumers remain unhappy the first legislation ( ab lx ) passed the california general assembly last night , but both generators and consumers are unhappy with the terms . generators object to the 5 . 5 cent per kw / h price in the proposed long - term contract , while consumer groups such as the foundation for taxpayer and consumer rights object to the state acting as a purchaser of power . the legislation is expected to pass the senate today and to be signed by governor davis as early as tonight . press and source reporting this morning confirms that the principal financial creditors and utility analysts are also unimpressed with the bill , which is viewed as insubstantial and falling short of creating a solution to the financial pressures on the utilities . 2 . financial institutions exposure to california utilities bank of america : $ 215 million j . p . morgan : $ 202 million there is a total of $ 12 billion in outstanding loans , but much of this ( arranged by societe general ) is to the parents national energy group and edison international . the $ 417 million mentioned above is the most immediate concern . the southern california edison loans are subject to immediate repayment in the aftermath of yesterday ' s rating downgrade to junk status . the fed will not be involved , except in a routine way as a bank regulator making sure that the appropriate risk reserves are made against the utilities ' loans and securities . there is no moral hazard here , because the fed is not going to guarantee any of the utilities ' credits , which , by the way , they do not have the authority to do . 3 . pg & e / national energy group - shielding assets despite considerable anger at pg & e for reorganizing to shield its profitable assets from its debt - plagued utility business , it would seem that davis has little authority to intervene . the question of "" fraudulent conveyance "" , which is a term in bankruptcy law for transferring assets to favored parties not long before a filing ( which transfer can then be reversed by the court ) would not seem to apply here , since pg dynegy has threaten to take take edison into bankruptcy court if they default pg & e current available : $ 500 m in cash and reserves due feb : lst - $ 580 m to iso 15 th - $ 431 m to california power exchange contrary to press reports and leaks from the governor ' s office yesterday about political brinksmanship , edison is clearly not playing negotiating games and is really short of cash . in this situation , it is unlikely that its executives will be making fraudulent statements . the bonds on which they failed to pay would have a 30 - day cure period . after that the trustees will move on edison , if edison has not already filed . they have three ways of financing power purchases going forward : 1 ) the state continues to buy power and sell edison ( and pg or 2 ) pending the passage of today ' s legislation , the state legislature authorizes the purchase of power through long - term contracts under the proposed borrowing authority ; or 3 ) edison files for reorganization under chapter 11 and obtains almost immediately superpriority post - petition lines of credit secured against its unmortgaged assets , which it uses to pay for power until the puc and the rest of the state government recognize that rates have to increase . 6 . new hampshire experience a guide for davis ? following the bankruptcy of the public service company of new hampshire , the bankruptcy judge was authorized by a higher court to mandate rate hikes . the prospect of imposed rate hikes from the bankruptcy court caused the state government to subsequently determine that rate hikes to consumers were unavoidable , passing a seven year rate hike of 7 . 5 percent . for davis , a similar scenario would provide him with some political cover , if he were forced by the bankruptcy court to pass through rate hikes as part of a settlement .",0 +"Subject: re : d - g energy karla , the wording you have below sounds reasonable as we would only use the code for internal valuation purposes . i also checked with vince regarding the issues we discussed by phone yesterday . he would like to specify a 2 day response time for the software support . also , he would like to specify that the payment schedule be : 50 % at time of initial contract and 50 % at the time when the software is released . this would give them an incentive to release the software before the full year is over if they want to accelerate the payment . thanks again for all the help , stinson from : karla feldman on 09 / 06 / 2000 10 : 30 am to : stinson gibner / hou / ect @ ect cc : subject : d - g energy stinson , while trying to put together the agreements for d - g energy , i have an additional question : i need to know exactly what yall plan to do with the source code once you have it after the initial one year period is up ? there are still limitations as to what you can do with it , so i will need to know so we can try to revise the contract so that you will be legal . for example , in the language regarding release of the source code from escrow , it states that once you have the source code , you just have the "" right to use , copy and modify the source code , solely for our internal purposes in connection with support , maintenance and operation of the software "" . do yall plan to reverse engineer , decompile , etc ? do you plan on using any of their code to create our own product ? if so - i think these are going to be a problem . the latter would be an infringement issue , unless we were to contract to do so . please let me know more details of your plan so i can see how we need to proceed in this area . thanks , karla x 67554",0 +"Subject: re : enron , india database sandeep , ? we ' ve ? completed a review ? this morning to try to fill in missing pieces ? of information on hourly load shapes , hydro dispatch history , and transactions for india and have not come up with anything yet . would you know of any of the above information which would ? assist us in our efforts ? ? thanks , ? david yomogida ? - - - - - original message - - - - - from : david to : sandeep kohli cc : robert schenck - australia ; vince j kaminski ; stinson gibner sent : wednesday , january 10 , 2001 6 : 20 pm subject : enron , india database sandeep , ? below , i have summarized henwood ' s work on the india database to date . ? the "" inter _ regional links . ppt "" file shows the topology and links between bubbles in the our model and "" expand _ india _ data _ 011000 . xls "" details the existing station information that we have compiled to date . ? total resources closely match reported resources as shown in "" l & r _ 0110 . xls "" . reported india total in 1997 is 86 , 000 mw and that in the henwood database is 84 , 000 mw through 1997 . ? region emss database reported [ 1 ] difference india total 84 , 103 86 , 120 2 , 017 ? ? we are currently working on the development of hourly load shaping , seasonal hydro energy allocation , and the gathering of transaction information . sandeep , we will try to contact you tomorrow ( thursday - - australia ? or wednesday - - united states ) to answer any questions that you may have on this information . ? sincerely , ? david yomogida ? ?",0 +"Subject: part - time work vince : i enjoyed the lunch and part of your presentation last week ( i had an other engagement to attend to , and hence could not make it to the rest of the presentation and reception following it ) . i appreciate the part - time offer , however , i must admit that i did not find the terms very favorable . unlike a person who is permamently located in houston , i would have the inconvenience and cost of commuting between austin and houston , and of accomodation both in austin and houston . i really would love to work in the research group and am sincere about this . i would just hope that you would consider compensating me at manager level so that i can cover transportation , accomodation expenses and more importantly , justify the decision to devote at least half of my time to enron away from my thesis . i will be looking forward to hearing from you soon . best , cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 cell : ( 512 ) 680 - 5355 http : / / uts . cc . utexas . edu / ~ cantekin",0 +"Subject: texas finance festival registration the attached is the registration form and information for the texas finance festival which will be held on april 7 - 8 , 2000 in san antonio . cindy - - - - - - - - - - - - - - - - - - - - - - forwarded by cindy justice / hou / ect on 01 / 06 / 2000 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" john d . martin "" on 01 / 03 / 2000 10 : 23 : 21 am to : cindy justice / hou / ect @ ect cc : subject : good morning ! cindy , i tried to send this out earlier and it bounced back . hope it makes it this time . john - announcerev . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: review of paper by titman , et al resending . . . vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 10 / 10 / 2000 11 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vasant shanbhogue 10 / 02 / 2000 02 : 04 pm to : vince j kaminski / hou / ect @ ect cc : subject : review of paper by titman , et al",0 +"Subject: re : options calculator hi , michael , i will take a look . zimin michael danielson 10 / 06 / 2000 09 : 26 am to : zimin lu / hou / ect @ ect cc : subject : options calculator here ' s the link to the options calculator : ",0 +"Subject: telephone interview with the enron corp . research group good afternoon mr . xu your resume has been forwarded to the research group with enron corp . they would like to conduct a telephone interview with you at your convenience . please let me know your available dates and times along with the telephone number you may be reached at and they will call you . the interviewers would be : vince kaminski managing director stinson gibner vice president zimin lu director look forward to hearing from you . regards , shirley crenshaw administrative coordinator enron corp . research 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: treasury memo kevin , the memo looks good . one suggestion i have is to emphasize what we can deliver by end of january since that was the initial deadline . although the memo indicates that a lot of work has been done , the reader might want to know what he can get in his hand in terms of models or quantitative results . you will of course describe everything in your presentation , but given that setting up presentations may take time , you should think about creating some template / model and send it with brief explanations . for example , a template for trs as it stands , and a template listing trigger events and how the results will be displayed . you can then expand on this in your presentations . vasant",0 +"Subject: tony hamilton / joe carson questions vince , i just wanted to follow - up with you regarding the action items that were taken away from yesterday ' s meeting with you , mike roberts , norma , and myself . 1 ) tony hamilton as you know tony ' s official start date was march 12 , 2001 , and he has yet to receive a paycheck . london ' s pay cycles are different than ours however , and they only get paid on the 20 th of each month . tony did not receive a paycheck on march 20 th because all of his new hire information has to be put into sap ( the payroll system ) by the first of the month for the employee to receive a check on the 20 th . consequently , tony will not receive his first paycheck until april 20 th . if you would like for me to try and work with the london office however and try to get him a paycheck quicker than that , please let me know . 2 ) joe carson from what i am able to gather , gary hickerson did make joe carson an offer that consisted of a one - year contract . however , gary is out of town until monday , and no one is sure of the specifics of the deal . would you like me to contace joe to find out the specifics , or would it be more acceptable for me to wait until gary returns so that i can get all of the facts . i look forward to working with you . thanks , anne labbe '",0 +"Subject: re : equity investment fair value in turkey john , it seems to me that using a risk - free rate is not appropriate . i shall elaborate on my position and send you a longer message this afternoon ( my time ) . vince enron capital & trade resources corp . - europe from : john bottomley 06 / 19 / 2000 05 : 55 am to : vince j kaminski / hou / ect @ ect cc : john sherriff / lon / ect @ ect , dale surbey / lon / ect @ ect subject : equity investment fair value in turkey vince , john sherriff recommended that i contact you regarding an interesting ( and potentially contentious ) option valuation issue we are currently dealing with in london . we hold longish term options in a private company in turkey which is currently seeking to ipo . the issue we are discussing with rac is which discount rate ( i . e . , risk - free ? and if so turkish or us ? ) should we use to value these options first , some additional information . option characteristics : - - 116 , 000 options ( representing 9 % of the company ) - - term : minimum of 3 years but possibly longer - - still being renegotiated - - strike price : 20 % below the upcoming ipo price ( either priced in us $ or turkish lire ) we currently hold the above number of options with a fixed price of $ 118 . 75 per option but 34 , 800 expire on july 15 , 2000 with the remainder expiring on december 15 , 2000 . the company ' s investment bankers ( abn / amro rothchilds ) are concerned regarding the strike price because it values the company at $ 118 million and they believe the company is worth approx $ 300 million . due to such a large "" valuation gap "" , they originally encouraged us to exercise all of the options by the end of june ( ipo target date in late sept / early oct ) . our counter - proposal is to "" swap "" instrinsic value for time value by repricing the options strike higher while extending their term . we are currently negotiating with rac the most appropriate discount rate to use to value the options . we are arguing that the us risk free is the most appropriate discount rate and their current position is that the company ' s historical senior debt cost ( 18 % ) is the more appropriate number to use ( although admit that this is not justifiable - - only a proxy ) a few key points : - - rac is valuing the options via crystal ball simulations such that this "" to be negotiated "" discount rate is used to calculate the pv of the future options intrinsic value in 3 years ( i . e . , for black - scholes , a higher discount rate yields a higher value but the opposite is true using crystal ball simulation ) - - the model simulates both an ipo / no ipo case and in the case of no ipo we have put options for our equity priced at a fixed 17 % return - - the model assigns a 30 % illiquidity discount - - in the simulated cases where the options are out - of - the - money , we obviously do not exercise . we understand that for black - scholes option valuation , one needs to be able to construct a comparable portfolio of cash flows using equity futures and the risk free in order for the valuation to hold . and here is where we reach our difficulty : since the company doesn ' t currently trade on a public market and since equity futures do not exist for turkish equities , rac is arguing that a us risk free is not appropriate to use . our argument is that the non - ipo scenario , a 30 % illiquidity discount and a us $ based option volatility are already in the factored into the simulation . as such , we feel rac ' s approach is double counting . if you managed to get through the above , your a patient man ! i ' ll give you a call today or tomorrow after you ' ve had a chance to digest the information . regards , john bottomley",0 +"Subject: california update 5 / 4 / 01 if you have any questions , please contact kristin walsh at ( 713 ) 853 - 9510 . bridge loan financing bills may not meet their may 8 th deadline due to lack of support sources report there will not be a vote regarding the authorization for the bond issuance / bridge loan by the may 8 th deadline . any possibility for a deal has reportedly fallen apart . according to sources , both the republicans and democratic caucuses are turning against davis . the democratic caucus is reportedly "" unwilling to fight "" for davis . many legislative republicans and democrats reportedly do not trust davis and express concern that , once the bonds are issued to replenish the general fund , davis would "" double dip "" into the fund . clearly there is a lack of good faith between the legislature and the governor . however , it is believed once davis discloses the details of the power contracts negotiated , a bond issuance will take place . additionally , some generator sources have reported that some of the long - term power contracts ( as opposed to those still in development ) require that the bond issuance happen by july 1 , 2001 . if not , the state may be in breach of contract . sources state that if the legislature does not pass the bridge loan legislation by may 8 th , having a bond issuance by july lst will be very difficult . the republicans were planning to offer an alternative plan whereby the state would "" eat "" the $ 5 billion cost of power spent to date out of the general fund , thereby decreasing the amount of the bond issuance to approximately $ 8 billion . however , the reportedly now are not going to offer even this concession . sources report that the republicans intend to hold out for full disclosure of the governor ' s plan for handling the crisis , including the details and terms of all long - term contracts he has negotiated , before they will support the bond issuance to go forward . currently there are two bills dealing with the bridge loan ; ab 8 x and ab 31 x . ab 8 x authorizes the dwr to sell up to $ 10 billion in bonds . this bill passed the senate in march , but has stalled in the assembly due to a lack of republican support . ab 31 x deals with energy conservation programs for community college districts . however , sources report this bill may be amended to include language relevant to the bond sale by senator bowen , currently in ab 8 x . senator bowen ' s language states that the state should get paid before the utilities from rate payments ( which , if passed , would be likely to cause a socal bankruptcy ) . according to sources close to the republicans in the legislature , republicans do not believe there should be a bridge loan due to money available in the general fund . for instance , tony strickland has stated that only 1 / 2 of the bonds ( or approximately $ 5 billion ) should be issued . other republicans reportedly do not support issuing any bonds . the republicans intend to bring this up in debate on monday . additionally , lehman brothers reportedly also feels that a bridge loan is unnecessary and there are some indications that lehman may back out of the bridge loan . key points of the bridge financing initial loan amount : $ 4 . 125 b lenders : jp morgan $ 2 . 5 b lehman brothers $ 1 . 0 b bear stearns $ 625 m tax exempt portion : of the $ 4 . 125 b ; $ 1 . 6 b is expected to be tax - exempt projected interest rate : taxable rate 5 . 77 % tax - exempt rate 4 . 77 % current projected blended ir : 5 . 38 % maturity date : august 29 , 2001 for more details please contact me at ( 713 ) 853 - 9510 bill sb 6 x passed the senate yesterday , but little can be done at this time the senate passed sb 6 x yesterday , which authorizes $ 5 billion to create the california consumer power and conservation authority . the $ 5 billion authorized under sb 6 x is not the same as the $ 5 billion that must be authorized by the legislature to pay for power already purchased , or the additional amount of bonds that must be authorized to pay for purchasing power going forward . again , the republicans are not in support of these authorizations . without the details of the long - term power contracts the governor has negotiated , the republicans do not know what the final bond amount is that must be issued and that taxpayers will have to pay to support . no further action can be taken regarding the implementation of sb 6 x until it is clarified how and when the state and the utilities get paid for purchasing power . also , there is no staff , defined purpose , etc . for the california public power and conservation authority . however , this can be considered a victory for consumer advocates , who began promoting this idea earlier in the crisis . socal edison and bankruptcy at this point , two events would be likely to trigger a socal bankruptcy . the first would be a legislative rejection of the mou between socal and the governor . the specified deadline for legislative approval of the mou is august 15 th , however , some decision will likely be made earlier . according to sources , the state has yet to sign the mou with socal , though socal has signed it . the republicans are against the mou in its current form and davis and the senate lack the votes needed to pass . if the legislature indicates that it will not pas the mou , socal would likely file for voluntary bankruptcy ( or its creditor - involuntary ) due to the lack operating cash . the second likely triggering event , which is linked directly to the bond issuance , would be an effort by senator bowen to amend sb 31 x ( bridge loan ) stating that the dwr would received 100 % of its payments from ratepayers , then the utilities would receive the residual amount . in other words , the state will get paid before the utilities . if this language is included and passed by the legislature , it appears likely that socal will likely file for bankruptcy . socal is urging the legislature to pay both the utilities and the dwr proportionately from rate payments .",0 +"Subject: re : meeting nov 8 th vince , i look forward to seeing you tomorrow around 3 : 30 / 3 : 45 . ? christie , many thanks for helping get this organized . ? i am working on the tour list also . thanks , carrie at 12 : 48 pm 11 / 7 / 00 - 0600 , you wrote : hi vince and carrie ! per my voice mails to each of you , here are your respective phone numbers : vince kaminski : 713 - 853 - 3848 carrie miller : 713 - 348 - 5260 . i hope your respective schedules allow for a meeting at rice tomorrow to discuss rice ' s action learning program . please leave me a voice mail if there is anything else i can do regarding this effort . ? ( 713 ) - 853 - 6117 . thanks ! - - christie . = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = carrie chamberlin miller director of mba program jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ? ( 713 ) 348 - 5260 fax : ? ( 713 ) 348 - 5251 e - mail : ? cmiller @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: an interview shirley , please schedule an interview with konstantin on may 8 . stinson , zimin , alex , tanya , krishna , myself . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 03 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" konstantin n . kudin "" on 05 / 02 / 2001 01 : 39 : 15 pm to : cc : subject : an interview dear dr . kaminski we have talked earlier during your energy class at rice about career opportunities in risk management at enron . if it is possible , i would like to meet with you and people from your group next week , preferably tuesday ( may 8 ) . my time is flexible , i could come any time . other days are also fine . thank you very much in advance . sincerely , konstantin kudin",0 +"Subject: fwd : hea renewals & crawfish boil teaser shirley , please , enroll me in this organization . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 04 / 2000 10 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - jlpnymex @ aol . com on 03 / 22 / 2000 04 : 24 : 33 pm to : nalexander @ texasmonthly . emmis . com , blackj @ wellsfargo . com , rdyerlaw @ houston . rr . com , sgoldfield @ tmh . tmc . edu , ggulen @ uh . edu , lesley . guthrie @ cpa . state . tx . us , elizabethherring @ pzlqs . com , robyn _ howard @ aimfunds . com , vkamins @ enron . com , mmfoss @ uh . edu , adrian . a . nunez @ usa . conoco . com , jack _ plunkett @ plunkettresearch . com , james . stanton @ et . pge . com , dstowers @ watersinfo . com , woodybc @ bp . com cc : subject : fwd : hea renewals tue , 21 mar 2000 17 : 20 : 25 - 0500 received : from cobaltl . crescentcon . com ( cobaltl . crescentcon . com [ 208 . 244 . 126 . 12 ] ) by rly - ydol . mx . aol . com ( v 70 . 21 ) with esmtp ; tue , 21 mar 2000 17 : 20 : 07 - 0500 received : ( from httpd @ localhost ) by cobaltl . crescentcon . com ( 8 . 9 . 3 / 8 . 9 . 3 ) id qaao 2187 ; tue , 21 mar 2000 16 : 20 : 06 - 0600 date : tue , 21 mar 2000 16 : 20 : 06 - 0600 message - id : to : jlpnymex @ aol . com from : houston energy association subject : hea renewals & crawfish boil teaser dear hea member : this week is the absolute last week you can renew and be included in the annual directory . just call the office ( 713 / 651 - 0551 ) and if you have no changes , you can renew with your credit card over the phone . also , our next event is april 11 th at woodrow ' s on chimney rock . hea is proud to announce that the new york mercantile exchange ( nymex ) is our corporate sponsor of the 8 th annual crawfish boil . nymex is celebrating their 10 th anniversary of natural gas futures trading , and will be awarding several door prizes that evening . this will be the last event at which to purchase one of the remaining raffle tickets for the harley davidson sportster which will be awarded to some lucky winner at energy extravaganza on may 6 , 2000 . so renew your dues , and watch your fax and email for more details about april 11 th ! this message was sent by : teresa knight , executive director houston energy association ( hea ) phone : ( 713 ) 651 - 0551 fax : ( 713 ) 659 - 6424 tknight @ houstonenergy . org if you would like to have your email address removed from our mailing list , please click the link below to the hea home page , where you will find a mini - form to remove your name automatically . http : / / www . houstonenergy . org /",0 +"Subject: holiday gift thank you so much for your thoughtfulness . . . . this basket is absolutely beautiful . . . . . thanks again for your thoughtfulness and for thinking of me . . . . . . you have a wonderful holiday . . . . . . kay",0 +"Subject: re : 1 . your thur . / fri . austin trip ; 2 . presentation of my risk - management optimization model ; 3 . enron on - line ehud , sorry i shall miss you on thursday . i shall definitely attend you presentation at power 2000 . i shall ask about a guest accounton eol . typically , such an account allows an outside user to take a look at the system , but i don ' t think the traders will allow systematic access to the price data over a long period of time by a third party . vince "" ehud i . ronn "" on 05 / 01 / 2000 05 : 54 : 50 pm to : vince . j . kaminski @ enron . com cc : subject : 1 . your thur . / fri . austin trip ; 2 . presentation of my risk - management optimization model ; 3 . enron on - line vince , greetings . i am following up at this time with respect to the above issues we discussed in san antonio . 1 . i am leaving thur . morn for philadelphia , and shall not be back until late fri . ( my etd is 9 : 40 a . m . , which i understand is less than an hour before your arrival . . . ) thus i shall regrettably miss your current ut visit , which we had hoped to also use as an opportunity to present / discuss my enterprise - wide risk management model . 2 . that said , i shall be presenting an abridged version of this model at power 2000 ' s first day , 5 / 9 4 : 15 - 4 : 55 p . m . while i realize you ' ll be very busy over power 2000 ' s two days , should your schedule permit , i should most welcome the opportunity for you to see the model . 3 . per your suggestion in san antonio , i would like to take this opportunity to inquire whether i might obtain an enron on - line account to obtain electricity prices quoted by enron . i look forward to seeing you at power 2000 . best regards , ehud ehud i . ronn department of finance college and graduate school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : eprm 2001 houston layla , a few points . i shall be glad to attend the reception . i am falling behind in getting my presentation ready . sorry for the delay . i can commit to delivering the required number of copies on the day of my presentation ( or a day before ) . i have done it on two occasions before ( power 2000 and power 1999 ) : the copies were produced by our company copy center at no cost to you . my associate , tanya tamarchenko , is helping me with one aspect of the presentation and i would like her to deliver part of my speach . it ' s only fair to give her the credit when the credit is due . is it ok to include her as an additional speaker ? vince "" layla o ' leary "" on 04 / 30 / 2001 09 : 04 : 52 am please respond to to : cc : subject : eprm 2001 houston dear speaker , pre - congress cocktail reception - sunday 13 th may @ 5 : 30 pm in the juniper room we would be delighted to have you attend our pre - congress cocktail reception . we will be extending this invitation to all our sponsors , exhibitors and eprm / risk waters group staff . we hope this will provide a perfect opportunity for you to meet all our staff and clients before the formal opening of eprm 2001 usa + rsvp i would also like to remind you that i need any missing presentations by thursday 3 rd may . it is essential that i get these in as the delegates rely on these to make notes and get very upset if they are not included in the packs . if you still haven ' t informed me of your av requirements , please do so as quickly as possible . i also require a short biography . i would like to point out that i will not be taking any presentations on disk to the event . if you are using a laptop , your presentation should be loaded onto the laptop that you bring with you . you must bring your own laptop and disc , with connecting cables . any questions , please do not hesitate to contact me . kind regards layla o ' leary event co - ordinator risk waters group haymarket house 28 - 29 haymarket london swly 4 rx tel : + 44 ( 0 ) 20 7484 9871 fax : + 44 ( 0 ) 20 7484 9800",0 +"Subject: weather and energy price data elena , please , prepare for mulong ng and power price series . we can use henry hub for ng , cinergy , cobb and pv for electricity . we can send him ng price right away . electricity prices are different : he has to obtain permission from ft ( megawatts daily ) . i shall cc you on my msg to him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 02 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - mulong wang on 04 / 15 / 2001 03 : 43 : 26 am to : vkamins @ ect . enron . com cc : richard macminn subject : weather and energy price data dear dr . kaminski : i am a phd candidate under the supervision of drs . richard macminn and patrick brockett . i am now working on my dissertation which is focused on the weather derivatives and credit derivatives . could you kindly please offer me some real weather data information about the price peak or plummet because of the weather conditions ? the past winter of 2000 was very cold nationwide , and there may be a significant price jump for natural gas or electricity . could you please offer me some energy price data during that time period ? your kind assistance will be highly appreciated and have a great day ! mulong",0 +"Subject: re : dave , both days . vince david ikenberry on 02 / 06 / 2001 01 : 39 : 58 pm to : vince . j . kaminski @ enron . com cc : ostdiek @ rice . edu subject : hi vince , i just now heard back from andrew karolyi . he will be here on monday march 12 . would you be available for dinner either on sunday march 11 or monday march 12 ? thanks , dave * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: conference steve , the slides are ok . how are the negotiations with risk proceeding ? they had recently many changes ( firing people ) . vince",0 +"Subject: re : biliana ' s resume biliana , i am glad i could help . look forward to working with you . vince biliana pehlivanova on 12 / 31 / 2000 08 : 19 : 52 am to : vince . j . kaminski @ enron . com cc : subject : re : biliana ' s resume mr . kaminski , i would like to thank you for forwarding my resume . i have resently accepted enron ' s offer for a position with the analyst program and will be joining the company in february . hope you had a merry christmas and wish you a happy new year ' s ! regards , biliana - - - vince . j . kaminski @ enron . com wrote : > > biliana , > > i forwarded your resume to the hr person > responsible for recruiting at your university > with my recommendation . > > vince > > > > > > biliana pehlivanova > on 09 / 28 / 2000 06 : 02 : 20 > pm > > to : vkamins @ enron . com > cc : > subject : biliana ' s resume > > > mr . kaminski , > > > thank you for referring me to your recruitment > representative . > > attached is my resume . i would appreciate you > letting > me know the name of the hr person whom i can folow > up > with . > > best regards , > biliana > > > = = = = = > = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = > biliana pehlivanova > vice president of incoming exchange > aiesec houston > 713 743 - 4927 > = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > do you yahoo ! ? > yahoo ! photos - 35 mm quality prints , now get 15 > free ! > http : / / photos . yahoo . com / > ( see attached file : biliana ' s resume . doc ) > > > > attachment part 2 application / octet - stream name = biliana ' s resume . doc = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = biliana pehlivanova vice president of incoming exchange aiesec houston 713 743 - 4927 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = do you yahoo ! ? yahoo ! photos - share your holiday photos online ! http : / / photos . yahoo . com /",0 +"Subject: re : tony hamilton tony hamilton reports to mike roberts in the houston office . vince kaminski will answer these questions for you at any given time . tony ' s start date in london will be april 9 th thanks kevin moore desleigh langfield 04 / 04 / 2001 08 : 29 am to : kevin g moore / hou / ect @ ect cc : subject : tony hamilton kevin tani nath who heads up the structuring and research teams rang this morning to get more information on tony . can you tell me who he reports to in houston and whether that person will continue to manage him remotely ? what cost centre he should be charged to ? whose headcount he appears on , and for what group he will be providing services for , tani was unsure on all of the above and wants clarification . also can you confirm his start date in london thanks desleigh - - - - - - - - - - - - - - - - - - - - - - forwarded by desleigh langfield / lon / ect on 04 / 04 / 2001 14 : 27 - - - - - - - - - - - - - - - - - - - - - - - - - - - desleigh langfield 06 / 03 / 2001 13 : 40 to : steven leppard / lon / ect @ ect cc : subject : tony hamilton steve all sorted and we will check later in the week with it that all is okay . can you please tell your assistant to organise a desk for tony , no rush obviously thanks desleigh - - - - - - - - - - - - - - - - - - - - - - forwarded by desleigh langfield / lon / ect on 06 / 03 / 2001 13 : 38 - - - - - - - - - - - - - - - - - - - - - - - - - - - desleigh langfield 06 / 03 / 2001 13 : 38 to : european resolution center / lon / ect @ ect cc : kevin g moore / hou / ect @ ect , steven leppard / lon / ect @ ect , anna seymour / lon / ect @ ect subject : tony hamilton hi tony is a uk employee who starts next monday 12 th march 2001 , we have done a quick start in nest today for him . tony will be working his first month in the houston office , however we still need to set up a log on and notes account here . can you please send the log on and password for both accounts to kevin as he will be meeting with tony on monday morning in the houston office . tony will not have a desk arranged for him until he comes back in approximately a month so no actual pc is necessary until then . one question - with a uk log on and notes account , will tony be able to access these from houston ? if it ' s complicated can you please let kevin know how to do this . any problems let me know thanks desleigh",0 +"Subject: london research intranet felipe following our discussion please close down all intranet access to the london research group site . inaccuracies have been found in the content which may have implications for our trading operations . closing the site will force traders to contact our group direct , ensuring only correct information is passed . the site will be completely overhauled over the coming months , so i see little benefit in reinstating access to the site in the near future . many thanks , steve",0 +"Subject: harvard - - nyu itinerary hi ! attached please find the itinerary for the harvard - - - nyu trip ; please disregard any parts of the trip that don ' t apply to you . if i have not already done so , i ' ll try this morning to get you a copy of the enron online case being taught at harvard tomorrow ( thursday ) . otherwise , i ' ll give it to you on the plane - - it ' s fewer than 15 pages , so it ' s a quick read . please call me if you have any questions ( 3 - 6117 ) . otherwise , i ' ll see you at the corporate hangar at 6 pm . ( for anyone unfamiliar with the location of the corporate hangar , i believe you can get a map / address / directions from the enron aviation department . ) thanks ! - - christie .",0 +"Subject: job description for sr . adm . asst - research group posting norma : here is the "" job description "" that vince asked me to provide . let me know if you need anything else . shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 07 / 2000 01 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 08 / 07 / 2000 08 : 29 am to : sheila walton / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , norma villarreal / hou / ect @ ect subject : re : anita dupont resume sheila , no , we have to go through the posting phase first . i shall ask shirley to provide the job description . vince from : sheila walton 08 / 04 / 2000 02 : 44 pm to : vince j kaminski / hou / ect @ ect cc : norma villarreal / hou / ect @ ect subject : re : anita dupont resume vince , alice has strong qualities for a sr admin asst . vince , have we posted this position on the job posting board ? if so , great . if not , we need to post this opening to prove that we have given an opportunity to all existing enron employees before we go outside to external candidates . otherwise , existing employees have a valid complaint that we are limiting their advancement within enron but hiring externally . if we have not posted this , i will have the recruiter contact shirley so shirley can give us a job description . then we can post and interview anita simultaneously . please let me know asap if this has been posted . thanks . sheila walton vince j kaminski 08 / 02 / 2000 08 : 48 am to : sheila walton / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : anita dupont resume sheila , i would like to hire anita dupont as a senior admin assistant , reporting to shirley . please , call me about it after you review the resume . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000 08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont @ enron 08 / 02 / 2000 08 : 17 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : anita dupont resume vince : here is the resume you requested . thanks . anita",0 +"Subject: assume i will not be chairing . . . dear joel , as i have not received any reply yet re email below , i have arranged other appts for myself on monday and will not be chairing any seesions . rgds raymond 345 pm ; 14 july - - - - - - - - - - - - - - - - - - - - - - forwarded by raymond yeow / enron _ development on 07 / 14 / 2000 03 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - raymond yeow 07 / 12 / 2000 07 : 39 pm to : "" joel hanley "" cc : subject : re : is there any chance you could chair a session at the conference ? dear joel , will be glad to help out but had a look at the stream 2 on monday and it is 1120 am - 520 pm covering three sessions ! ! ! could i suggest that i take the 1120 am - lunch session and you can find another speaker ( s ) from day 2 to chair the afternoon session ( s ) . i am flexible if you need me to take a different time on the monday . rgds raymond "" joel hanley "" on 07 / 12 / 2000 03 : 37 : 39 am please respond to "" joel hanley "" to : cc : subject : is there any chance you could chair a session at the conference ? raymond , by the way , is there any chance you could chair a session at the conference ? glenn labhart from the us has unfortunately dropped out so i am hoping you could chair stream two on day one ( monday 17 th ) . please let me know asap . it would be a great help is you ' re available . best wishes , joel . direct : + 44 ( 0 ) 20 7484 9885 ? www . riskpublications . com",0 +"Subject: meeting to discuss presentation materials hello vince and kenneth , my teammates and i would like to schedule a time with you to discuss our presentation materials . we would prefer to meet with you sometime on thursday so that we can have the weekend to include any changes that you may suggest , but we will accommodate your schedules . thank you for all of your help , = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = charles womack jr . mba candidate 2002 rice university jesse h . jones graduate school of management cwomack @ rice . edu cell : 281 - 413 - 8147",0 +"Subject: request vince , would you mind making a few luncheon comments to the texas finance festival group at our sat luncheon ? i struck out with andy and sheridan thought that you could relate very well to the group . how about it ? john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: enron net works it is becoming increasingly clear that the development of ecommerce will have a significant and continuing impact on the conduct of business in a broad array of industries . through enrononline , enron has quickly become a major catalyst for the transition to the web in the gas and electric industries . enrononline has been an enormous success since its launch . since launch , we have completed 67 , 043 transactions on line , with a total dollar value of over $ 25 billion . enrononline is now the largest ecommerce site in the world . we believe that the competitive success of enrononline is due to one very specific reason . in addition to providing a web - based platform for transactions , enron acts as principal to provide direct liquidity to the site . we stand ready at all times , in any market conditions , to buy and sell at the posted price . this converts a  & bulletin board  8 ( the more typical ecommerce concept ) into a true market . there are very few , if any , competitors that can provide this capability . we are increasingly convinced that this competitive advantage can be dramatically expanded to other products and other geographies . if we are correct , this could provide an enormous new opportunity for growth for enron . accordingly , we are initiating a major new effort to capture this opportunity . effective today we are creating a new business , enron net works , to pursue new market development opportunities in ecommerce across a broad range of industries . it is likely that this business will ultimately be our fifth business segment , joining transmission mike mcconnell , chief operating officer ; and jeff mcmahon , chief commercial officer . these individuals will comprise the office of the chairman for enron net works and remain on the executive committee of enron corp . replacing greg whalley as president and chief operating officer of enron north america is dave delainey , who will also join enron  , s executive committee . global technology will remain intact but will now be a part of enron net works . it will maintain all of the same businesses and services as it did as an enron global function . philippe bibi will remain the chief technology officer for all of enron corp . and continues to be responsible for the development of worldwide technology standards and platforms . enrononline , headed by louise kitchen , will also remain intact and will now be a part of enron net works . the success of enrononline enables us to utilize this site as a model as we explore other markets . in addition , the following individuals are included in enron net works along with their current ecommerce initiatives : harry arora , public financial securities ; jay fitzgerald , new markets identification ; bruce garner , metals ; and greg piper , pulp and paper . over the next several weeks we will complete staffing and organizational design and will provide full details on this exciting new business opportunity .",0 +"Subject: re : ( no subject ) great , please , let me know . there are several good films playing currently . vince jlpnymex @ aol . com on 04 / 04 / 2000 10 : 09 : 28 am to : vince . j . kaminski @ enron . com cc : subject : re : ( no subject ) vince , i will check with david and get back with you . i still want to hear about your california trip . jana",0 +"Subject: re : recommendation of an outstanding baylor mba student for summer internship jim , i shall contact althea and make sure rusty meets with the research group members . vince jim garven on 03 / 28 / 2001 01 : 01 : 42 pm to : stinson _ gibner @ enron . com cc : vince _ j _ kaminski @ enron . com subject : recommendation of an outstanding baylor mba student for summer internship dear stinson , i would like to call your attention to rusty parks , who is an mba student here and has been serving as my research assistant since last fall . ? rusty is a very outstanding individual with a very impressive work ethic and interest in topics such as financial engineering and technology , particularly as these issues pertain to the energy industry . ? ? in fact , you met rusty during your recent visit to baylor ( specifically , last month over dinner at the gamma iota sigma chartering ceremony ) . i happen to know that rusty is already scheduled to visit enron for an interview for a summer internship on april 19 . ? he has been invited by althea gordon . ? if there is any possibility that you could meet with him during his visit , i am sure that he would be most grateful . ? rusty is one of the very best research assistants i have ever had , and i am sure that enron would benefit from having him aboard during the coming summer . sincerely , jim garven p . s . : please find rusty ' s resume attached to this email . james r . garven , ph . d . professor of finance & insurance department of finance , insurance and real estate hankamer school of business hsb 336 baylor university box 98004 waco , tx ? 76798 voice : ( 254 ) 710 - 6207 fax : ( 603 ) 994 - 6680 e - mail : james _ garven @ baylor . edu home page : http : / / garven . baylor . edu vita : http : / / garven . baylor . edu / dossier . html research paper archive : http : / / garven . baylor . edu / research . html - rusty parks resume . doc",0 +"Subject: re : eastern unless we can model the protection in some form we will not know what our true exposure is . so i need our team reassessing how we can model the benefit of the credit proctection . please keep working on this . john soma ghosh 07 / 03 / 2000 17 : 57 to : john sherriff / lon / ect @ ect cc : william s bradford / hou / ect @ ect , tanya rohauer / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , bryan seyfried / lon / ect @ ect subject : re : eastern john , we are currently not modelling the effect of insurance on eastern on an individual risk basis . i have spoken at length with houston research & credit risk management on this given that the portfolio of risk is dynamic , specific allocation of protection is not appropriate . as i mentioned in my earlier message there is $ 135 mm cap on any one loss , assuming no losses have occured prior to that . i am happy to discuss this further with you if required . bill , i ' d appreciate any comments you may have re . the above . regards , soma john sherriff 06 / 03 / 2000 15 : 06 to : soma ghosh / lon / ect @ ect , bryan seyfried / lon / ect @ ect , mariano gentilini / lon / ect @ ect cc : subject : re : eastern soma how are we modeling the affect of the insurance packages on the eastern deal ? john soma ghosh 06 / 03 / 2000 11 : 53 to : john sherriff / lon / ect @ ect cc : subject : re : eastern the protection is not a fixed allocation of protection to individual counterparties but covers the global portfolio of risk . enron has in place 3 tranches of credit insurance covering up to $ 135 mm per event . whilst the insurance is not counterparty specific , it would be available for credit loss on eastern provided that losses had not been incurred prior to an eastern loss . i have already discussed with houston credit risk management at this point in time there has been no resolution in finding an appropriate way to allocate protection by name . summary of insurance : enron absorbs the first $ 10 mm of losses in any one year capped at the aggregate of $ 30 mm over a ten year period . aegis absorbs the next $ 35 mm of losses for the same ten year period . chubb will pick up the next $ 50 mm losses for any single event and $ 100 mm in losses in the aggregate for 5 years rsa takes the next $ 50 mm for losses in excess of $ 95 mm over a five year period & covers the top 9 counterparties by exposure regards , soma john sherriff 03 / 03 / 2000 18 : 16 to : soma ghosh / lon / ect @ ect cc : subject : re : eastern soma how does the company ' s credit insurance ( done by houston last year ) affect this exposure ? john soma ghosh 03 / 03 / 2000 16 : 24 to : john sherriff / lon / ect @ ect cc : david weekes / lon / ect @ ect , steve w young / lon / ect @ ect , barry pearce / lon / ect @ ect , fernley dyson / lon / ect @ ect , william s bradford / hou / ect @ ect , rick buy / hou / ect @ ect , oliver gaylard / lon / ect @ ect subject : re : eastern please note that total exposure $ number is $ 979 . 8 mm not $ 783 . 2 mm . apologies , soma - - - - - - - - - - - - - - - - - - - - - - forwarded by soma ghosh / lon / ect on 03 / 03 / 2000 16 : 22 - - - - - - - - - - - - - - - - - - - - - - - - - - - soma ghosh 03 / 03 / 2000 16 : 17 to : john sherriff / lon / ect @ ect cc : david weekes / lon / ect @ ect , steve w young / lon / ect @ ect , barry pearce / lon / ect @ ect , fernley dyson / lon / ect @ ect , william s bradford / hou / ect @ ect , rick buy / hou / ect @ ect , oliver gaylard / lon / ect @ ect subject : re : eastern john , as requested : total exposure as at 29 feb 2000 : o 620 . 9 mm ( $ 783 . 2 mm ) eurocash i monetezation : - ol 24 . 7 mm ( - $ 196 . 1 mm ) less credit derivatives : o 40 . 0 mm ( $ 63 . 1 mm ) total net exposure as at 29 feb 2000 : o 456 . 2 mm ( $ 713 . 9 mm ) net month on month increase : ol 25 . 4 mm ( $ 197 . 9 mm ) total value of eastern group guarantee : o 520 mm ( $ 820 . 6 mm ) amount backed by txu : zero as well as the increase in overall exposure , please note the change in shape of the exposure month on month most notably credit exposure now peaking at the front end of the transaction ( ex credit derivs . the max exposure is at day 1 ) , compare to max . exp . at feb 2005 for month end jan . . shape of profile & increase in mtm primarily due to : - power curve downward shift at front end yrs 0 - 11 - power curve upward shift at back end yrs 12 - 18 - gas curve upward shift yrs 1 - 5 .",0 +"Subject: petition for summer internship celeste , i am recommending jason sokolov for summer internship with enron . jason is currently working part - time for mike roberts and makes very valuable contribution to a number on - going projects . we are very happy with his performance and see him as a valuable future enron employee . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 05 / 2000 07 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jason sokolov 01 / 04 / 2000 01 : 32 pm to : vince j kaminski / hou / ect @ ect cc : subject : petition for summer internship vince : as we discussed earlier , i attached the copy of the petition for my summer internship with enron analyst and associate group . i also have the hard copy of the letter , which i will deliver to you presonally . i am looking forward to , finally , become an official enron employee . thank you very much for your valuable contributions to my experience with the company . jason sokolov",0 +"Subject: re : p + spread options fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 29 / 2001 12 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jeffrey a shankman on 01 / 29 / 2001 12 : 38 pm to : stinson gibner / hou / ect @ ect cc : john l nowlan / hou / ect @ ect , don schroeder / hou / ect @ ect subject : re : p + spread options let ' s get together on this in the next couple of days . thanks . jeff stinson gibner 01 / 29 / 2001 12 : 10 pm to : jeffrey a shankman / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : p + spread options jeff , we are reviewing the p + spread option book . one item of note is that the correlations used to book the spread options have dropped significantly from what was being used a year ago ( see charts below ) . i also remember that john mee was using even higher correlations when he ran this book . in fact he wanted to book options with a correlation of 1 . 0 , but our model would not allow it , so he was using 0 . 999 . we are currently calculating historical correlations for you as well . if you want , vince and i can review this with you at the end of the day . just let me know what time would be convenient . - - stinson x 34748",0 +"Subject: rice seminar hello all : fyi : jones graduate school research seminar series in finance sponsored by enron corp . alon brav fuqua school of business duke university will give a seminar at the jones school on friday , march 31 , "" competing theories of financial anomalies "" * the seminar will begin at 3 : 15 pm in room 115 . * note the slightly early start time to accommodate an early flight . a pdf of the paper is available through the seminar website ",0 +"Subject: re : yvan ' s application thanks for your help , vince . molly vince j kaminski 05 / 11 / 2000 08 : 29 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : yvan ' s application molly , i am enclosing my recommendation letter for yvan chaxel . vince",0 +"Subject: congratulations your majesty , congratulations on your well deserved promotion to managing director . i am very happy for you and a little sad as well because this was so long overdue . the list every year was not complete without your name on it . we shall need to celebrate this sometime . all the best , tony .",0 +"Subject: risk 2000 boston - speaker reception 12 june 2000 there will be a drinks reception taking place on monday 12 june 2000 between 6 . 00 - 7 . 00 pm in the lower level of the congress center - for speakers , sponsors and exhibitors of risk 2000 , boston ? please let me know if you would like to attend so we can guage numbers . ? best regards , oliver ? ? ? direct : + 44 ( 0 ) 20 7484 9880 ? risk publications , 28 - 29 haymarket , london swly 4 rx fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk www . riskpublications . com",0 +"Subject: re : university of texas conference on energy finance , february 2001 vince , greetings . i write at this time to follow up on your kind intercession on our behalf with jeff skilling ' s office regarding his participation in our spring conference . we have secured hotel rooms at the radisson hotel , will shortly have to provide a guarantee on those rooms , and would therefore like to ascertain his participation as keynote speaker the evening of thur . 2 / 22 . hope all is well . see you oct . 11 th , if not sooner . best , ehud ehud i . ronn jack s . josey professor in energy studies department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: natural gas production vince - i spoke with roy kass of the energy information agency this morning . apart from clarifying the timeliness , or lack thereof , of the published state - specific wellhead production estimates , he indicates their scientists find severe weather in the fields ( freezes , hurricanes ) to be a far more significant issue in production , and in wellhead prices , than is severe weather in the northeast , for instance . also , he agrees with you as to there being strictly increasing marginal costs in production , there being a rich texture of wells in terms of their efficiency , technologies , maintenance and investment issues . clayton",0 +"Subject: re : john martin - baylor cindy , i am in wharton on december 6 . other days prior to dec 6 are ok . vince from : mark palmer @ enron on 10 / 25 / 2000 10 : 33 am sent by : cindy derecskey @ enron to : vince j kaminski / hou / ect @ ect cc : christie patrick / hou / ect @ ect subject : john martin - baylor good morning vince , christie has suggested that i be the liaison for john martin and your research project ' enron - case study of a company reinventing itself ' . in john ' s lastest email , he suggested that the first week of december works with his schedule - up to december 6 th - or the following couple of weeks after dec . 8 th . do these dates work for you as well ? if so , i will proceed in booking one hour sessions with the following enron management : ken lay jeff skilling andy fastow if these dates do not work for you let me know when you are available and i will try to coordinate with john , jeff , ken and andy . also , i will send an introductory email to john . i ' m looking forward to hearing from you , cindy derecskey 3 - 5670",0 +"Subject: re : mgmt 656 jack , this is up to the mba program . i have no problem if they agreed to it . the only constraint is the space and we shall have to address the issue on thursday during the first class . vince "" jack blanton , jr . "" on 02 / 28 / 2001 03 : 09 : 16 pm to : vince . j . kaminski @ enron . com cc : subject : mgmt 656 dear proffesor kaminski i wish to audit the energy derivatives class which you are teaching on thursday nights . i am currently a second year student in the emba program and am chairman of nicklos drilling company . nicklos drilling currently operates three land rigs along the texas gulf coast and is constucting a fourth . i have received permision from the emba program to audit the class and the only conditions would be your permission and space avalability . thank you for your consideration , jack s . blanton , jr . jblantonjr @ yahoo . com 713 - 222 - 0191 do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com /",0 +"Subject: re : followup vince , i have left a message w / bruce requesting the password for the neural network site , and am waiting for his reply . trish vince j kaminski 06 / 16 / 2000 10 : 16 am to : patricia tlapek / hou / ect @ ect cc : subject : re : followup trish , i could not access his neural network site . it requires access password . vince from : patricia tlapek 06 / 12 / 2000 03 : 57 pm to : vince j kaminski / hou / ect @ ect cc : subject : followup - - - - - - - - - - - - - - - - - - - - - - forwarded by patricia tlapek / hou / ect on 06 / 12 / 2000 03 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - barcharts @ aol . com on 06 / 09 / 2000 10 : 01 : 59 am to : patricia . tlapek @ enron . com , mike . roberts @ enron . com cc : subject : followup good morning , i enjoyed visiting you yesterday afternoon to discuss the opportunity at enron . sounds exciting , challenging and a good use of a lot of my skills and experience . i look forward to further talks , hopefully this coming week . i mentioned a couple web sites and don ' t know if they came through clearly on the phone with my sore throat . the neural network approach to timing can be found at http : / / www . pfr . com / ptonline / the introductory piece on technical analysis i wrote for forbes . com and the glossary can be found at htttp : / / www . forbes . com / tool / html / 00 / jun / 0603 / feat . htm i am also working with long time friend and neighbor steve nison with his site and you can see the first on line lesson for free at http : / / www . candlecharts . com / have a nice weekend . hope to hear from you next week . bruce m . kamich , cmt barcharts @ aol . com 732 - 463 - 8438",0 +"Subject: re : fw : parent - subsidary model hi iris we started off with about 105 companies , which were enron europe ' s uk power and gas desk counterparties . i ' m not sure where you got the figure of 500 from - maybe this is the entire enron europe counterparty list , which constitutes the next major effort for end - july . from this list of 104 , only the 72 in the spreadsheet had information in amadeus . the other firms had no information available , most likely because they were too new . ben from : iris mack / enron @ enronxgate on 17 / 04 / 2001 19 : 37 cdt to : ben parsons / lon / ect @ ect cc : tomas valnek / lon / ect @ ect , amitava dhar / corp / enron @ enron , mike mumford / lon / ect @ ect , vasant shanbhogue / enron @ enronxgate , vince j kaminski / hou / ect @ ect subject : re : fw : parent - subsidary model hi again , thanks for the financial data on enron ' s european counterparties . it is my understanding that you started out with a list of 500 such counterparties . however , your spreadsheet only contains information for 72 of these european counterparties . will you please tell me the logic behind the elimination of the 400 + other counterparties ? thanks so much , iris - - - - - original message - - - - - from : parsons , ben sent : tuesday , april 17 , 2001 2 : 56 am to : mack , iris cc : valnek , tomas ; dhar , amitava ; mumford , mike subject : re : fw : parent - subsidary model hi iris the inputs and outputs generated by riskcalc can be seen in the attached file : > we only looked at the 5 - yr pd . inputs are in columns a - u . these are the inputs generated by amadeus . you can run these inputs through the riskcalc model over the web ( http : / / www . moodysqra . com / privfirm ) using the login : dupred , password : detective . this is our trial licence which lasts for about 2 more weeks ( mike mumford will have more details about the current licence ) tomas valnek was getting the data from the amadeus database , so i ' ll leave it to him to determine if houston access is possible . in the meantime you can use the dataset attached for testing purposes . ben from : iris mack / enron @ enronxgate on 12 / 04 / 2001 17 : 58 cdt to : ben parsons / lon / ect @ ect cc : amitava dhar / corp / enron @ enron subject : fw : parent - subsidary model hi ben , how are you ? today we had a meeting with craig chaney and jeff kinneman to discuss the private firm model . they requested that i spend some time carefully analyzing the moody ' s riskcalc model . i noticed that you also have been looking at riskcalc - as indicated in your paper entitled "" pricing parent companies and their subsidiaries : model description and data requirements "" other than the example discussed in your paper , did generate any other test statistics , scores , etc . also , you stated that you used amadeus database . we are in the process of trying to obtain data from various data vendors - but that may take a while . in the mean time , may we have access to the amadeus database or some sample dataset ? thanks so much , iris - - - - - original message - - - - - from : valnek , tomas sent : tuesday , april 10 , 2001 9 : 10 am to : fiala , markus ; seyfried , bryan ; salmon , scott ; kirkpatrick , eric ; mumford , mike ; fontaine , jean - sebastien ; brooks , simon ; price , nigel ; diprose , robert ; rezaeian , reza ; gordon , mike ; lee , derek ; hershkovitz , ilan ; golden , sally ; stephan , nicholas ; albanis , george ; shanbhogue , vasant ; mack , iris cc : parsons , ben subject : parent - subsidary model attached is a description of the parent - subsidiary model that ben and i have been working on over the last few weeks . comments welcome ! tv >",0 +"Subject: risk 2000 - boston dear vince , i apologise for sending another email . i was wondering if you could confirm your talk title ( plus some bullet points ) for your presentation at our annual us congress . i have attached a condensed programme for the event - you are speaking on stream three , part of the new research in derivatives modelling and analysis section . unfortunately we are printing the brochure at the end of the week and will need these details by thursday 27 january . best regards , oliver direct : + 44 171 484 9880 risk publications , 28 - 29 haymarket , london swly 4 rx fax : + 44 171 484 9800 email : conf - ny @ msn . com www . riskpublications . com - attl . htm - condensed . doc",0 +"Subject: friday brown bag on derivative pricing hello all : if you think any of your people would be interested in the following - please pass the messages on . thanks ! * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * message one dear everyone , we understand the as members of enron research group , all of us are working on very interesting projects , some of which are ground - breaking , and we all keep a very keen mind on any development of new technology . we also find out , through our own experience , that at this age of information explosion , it becomes more and more difficult to have enough time and energy to keep abreast with most of the exciting stuff taking place in this department , let alone in the industry . it is also our personal experience that many a project we are working on has partially been attempted by other members of this group . as a remedy , we propose that the research group start an informal brown bag lunch group meeting , once every two weeks on friday , for about 50 minutes . it is hoped that it will provide a forum for us to facilitate with new technology and development , as well as with each other  , s work , so that we do not have to reinvent the wheels . we envision the following : in this meeting ( or seminar ) , each one of us will take turns to make presentations to the group . the topics could range from theoretical consideration to practical implementation , be it option pricing , process modelling , insurance issue , or monte carlo simulation , or anything one finds fascinating . the presentation material could be papers you have been reading recently , projects you are working on , some problem that bothers you , or an idea that is fascinating . you choose your own presentation style . it could be everything - you - always - wanted - to - know - but - were - afraid - to - ask , hand waving style , or it can involve nitty - gritty , detailed derivations , anyway a style that suits you and the topic . or it can simply be a dry - run for your presentation at the next risk conference . zimin and alex will take upon the responsibility of organizing the seminar . we hope the seminar will be up and running in two - three weeks . for that purpose your support will be greatly appreciated . please let either zimin or alex know if you are interested in giving a presentation to the group and provide a tentative schedule . surely the rest of the group will be happy to hear your presentation . we encourage everyone to participate this brown bag meeting , either to give a talk or just sit in . zimin lu alex huang message two dear everyone , it looks like the proposed bblop has great support and is to have a great start . vince , grant , , amitava , kevin , clayton and chonawee have promised to give presentations to us . vince will kindly deliver the inaugural presentation next friday ( march 31 ) on new methodology for option pricing ( precise title tba ) . bblop will start at 12 noon and last about 45 to 50 minutes . let ' s make this a new enron tradition ! best regards . zimin , alex",0 +"Subject: re : seminar series mug barabara , it looks great . it ' s a very nice design . vince barbara ostdiek on 08 / 15 / 2000 10 : 26 : 12 pm to : vince . j . kaminski @ enron . com ( vince kaminski ) cc : subject : seminar series mug vince : i have attached the general design we are proposing for the enron seminar series mug . we have a little refinement to do - spacing here and there a couple type - o ' s but this is the idea . if you like it , we will put an order in . i ' ll put out an announcement on the seminar schedule shortly . so far the fall line up includes will goetzman - yale , lenard mirman - virgina , jeff pontiff - u . of washington , george allyannis - darden , and charles lee - cornell . thank you . bbo - mugl 1 . pdf",0 +"Subject: seating on the 32 nd floor mike roberts eb 3240 a jose marquez eb 3240 b kevin moore eb 3240 c vince kaminski eb 3240 d patricia tlapek eb 3240 e william smith eb 3240 f elena chilkina eb 3240 g open eb 3239 f charlie weldon eb 3239 e open eb 3274 a open eb 3273 a these are the only seats we have on the 32 nd floor . the two open spaces are being used by another group temporally . if you need additional information please feel free to call x 34710 . thanks kevin moore",0 +"Subject: dr . kaminski , thank you for giving me an opportunity to talk with you and zimin . it ' s my great pleasure to meet with you and your group members . i met zimin last week . we had a wonderful talk . after our meeting , i handed in him my current resume . he may already forwarded my resume to you . if not , i will be very happy to send you a copy . by talking with you , zimin and by attending your presentation yesterday at uh , i find i am really interesting the fields that you are working on . i am deeply impressed by the research works your team have done and i am looking forward i am able to become one of your members . i am also looking forward to be able to do researches under your guidance . i strongly feel that your research department provides the kind of jobs and environments that i have been looking for a long time . my career objective matches your research fields and directions . i believe my training in mathematics and computer science will provide me some necessary backgrounds in energy risk management . i am also sure that by working with you , i can greatly expand my it skills and experiences . i also can learn tremendously from you and your research teams . currently after finishing my programing work as an it spcialist , i am reading john hull ' s book and try to catch up necessary background in finance and related fields . i am also readingyour "" managing energy price risk "" book . thank you for giving me a copy of this book . again , thank you for giving me this opportunity and i am looking forward to working in your team . john hou 713 - 853 - 1600",0 +"Subject: energy book hi grant , hope all is well with you . i trust you got my message via the voicemail that ileft with vince late friday afternoon about my inability to travel - i ' m trying to rearrange my trip for a couple of week ' s time when my ear has cleared up , and i look forward to meeting with you one day . i wrote to vince last week asking for a favour , but i ' m not sure ifhe is there in houston . i know that you guys are probably very busy but i was wondering if you can write a few sentences for me . i ' m sending out some sample chapters to the people who responded positively ( all of them ! ) to my request for some feedback on the book . chapter 1 has an ' overview ' of the book with just a couple of sentences on each chapter . could you please write a sentence or two for your chapter ? i ' m including what i have already written ( although i think it has changed slightly from this version ) so that you can see the style . many thanks and best regards . chris . 2 overview of this book this book aims to provide an in - depth understanding of the pricing and risk management of energy derivatives . in the remainder of this chapter we give an overview of the fundamental principals needed to model and price energy assets , and which underlie the rest of the book . as well as introducing the techniques that underlie the black - scholes modelling framework we discuss the numerical techniques of trinomial trees and monte carlo simulation for derivative pricing which are used extensively later in the book . in chapter 2 we analyse spot energy prices . apart from describing empirical prices we propose a number of processes that can be used to model the prices . we look at the well - know process of gbm as well as mean reversion , stochastic volatility and jump processes , discussing each , and showing how they can be simulated and their parameters estimated . chapter 3 , written by vince kaminski and grant masson of enron capital and trade . chapter 4 examines forward curves in the energy markets . although such curves are well understood and straight forward in the world debt markets the difficulty of storage in many energy markets leads to less well defined curves . what we do in this chapter chapter 5 presents an overview of the common and not - so - common derivative structures in the energy markets and discusses their uses . examples of products analysed in this chapter include a variety of swaps , caps , floors and collars , as well as energy swaptions , compound options , asian ( or average rate ) options , barriers , lookbacks , and ladder options . chapter 6 investigates single and multi - factor models of the energy spot price and the pricing of some standard energy derivatives . closed form solutions for forward prices , forward volatilities , and european option prices are derived and presented for all the models in this chapter including a three factor stochastic convenience yield and interest rate model with jumps . chapter 7 shows how the prices of path dependent and american style options can be evaluated for the models in chapter 6 . simulation schemes are developed for the evaluation of european style options and applied to a variety of path dependent options . in order to price options which incorporate early exercise opportunities , a trinomial tree scheme is developed . this tree is built to be consistent with the observed forward curve and can be used to price exotic as well as standard american style options . chapter 8 develops a new methodology for valuing energy options based on modelling the market observed forward curve . the approach results in a multi - factor model that is able to capture realistically the evolution of a wide range of energy forward curves and where the user defined volatility structures can be of an extremely general form . closed - form solutions are developed for pricing standard european options and efficient monte carlo schemes for exotic options . the chapter finishes with a discussion of the valuation of american style options . chapter 9 focuses on the risk management of energy derivative positions . in this chapter we discuss the management of price risk for institutions that sell options or other derivatives to a client and who is then faced with the problem of managing the risk through time . we begin with delta hedging a portfolio containing derivatives and look at extensions to gamma hedging - using the models from chapters 5 and 7 . the general model of chapter 7 ideally suited to multi - factor hedging and this is also discussed . chapter 10 looks at the key risk - management concept of value at risk applied to portfolios containing energy derivative portfolios . after discussing the concept of the measure , we look at how the key inputs ( volatilities , covariances , correlations , etc ) can be estimated . we then compare the fours major methodologies for computing var ; delta , delta - gamma , historical simulation and monte - carlo simulation . finally , we look at testing the var estimates for various underlying energy market variables .",0 +"Subject: storage meeting ladies and gentlemen , due to unavailability of conference rooms on the 44 th floor i have reserved a conference room on the 19 th floor from 2 : 30 pm to 4 : 30 pm . the room number is 19 c 2 . i realize some people might not be able to attend , so please let me know and i will e - mail you a summary of the discussions after the meeting . i would also like to suggest that we make this a regularly scheduled meeting and have it bi - weekly or monthly . this will allow everyone to share their opinions and knowledge to direct or redirect our efforts based on the market situation . please let me know if you have any comments or suggestions . thank you . shalesh ganjoo",0 +"Subject: re : my son vince , i left a message with one of yaron ' s roommates on thursday afternoon for him to call asap for an interview on sunday . i guess he took the wrong number down but i do not understand this because the roommate read the number back to me and it was correct . when i did not hear from yaron i called on friday and left a voice mail with my cell and office numbers . i still did not hear from him and called again yesterday morning . i finally received a call at 4 pm yesterday but by that time my team and myself were half way back to houston . sorry it did not work out . i have a call into charlene jackson as to how she wants me to proceed and i will get back with you . kristin vince j kaminski @ ect 11 / 01 / 2000 08 : 40 am to : john goodpasture / ots / enron @ enron , kristin gandy / na / enron @ enron cc : subject : my son fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 01 / 2000 08 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" shmuel oren "" on 10 / 31 / 2000 02 : 27 : 18 pm to : cc : subject : my son vince apparently the recruiter spoke to one of my son ' s roommates and left a phone number ( 713 ) 343 - 3214 which he tried several times and got busy signals . today she called just before you called me and left her cellphone number but he was in classes all morning and got the message in the afternoon . i really appreciate your going out of your ? way to help . perhaps there will be another opportunity . ? shmuel ?",0 +"Subject: talon vince : here is the document sent by ryan today . i did not have the chance to look at it yet . paulo issler - - - - - - - - - - - - - - - - - - - - - - forwarded by paulo issler / hou / ect on 04 / 12 / 2000 04 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - ryan siurek @ enron 04 / 12 / 2000 10 : 05 am to : paulo issler / hou / ect @ ect cc : subject : re : draft analysis fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by ryan siurek / corp / enron on 04 / 12 / 2000 10 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital management from : trushar patel 04 / 11 / 2000 09 : 49 am to : ryan siurek / corp / enron @ enron cc : subject : re : draft analysis - - - - - - - - - - - - - - - - - - - - - - forwarded by trushar patel / corp / enron on 04 / 11 / 2000 09 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - ian . c . dsouza @ us . pwcglobal . com on 04 / 04 / 2000 01 : 42 : 34 pm to : trushar . patel @ enron . com cc : steven . j . stampf @ us . pwcglobal . com , timothy . luehrman @ us . pwcglobal . com subject : re : draft analysis hi trushar please find attached our draft analysis . it is still very preliminary as we have not been provided the latest version of legal documents and so the analysis reflects our understanding of the economics of the transaction as outlined to us based on discussions with enron and available prior draft documentation . . the analysis uses the enron share price as of march 28 , 2000 ( $ 72 . 81 ) and assumes the ljm 2 distribution is based on $ 30 m or 25 % irr . we anticipated that this might reach 30 % irr based on enron discussions with ljm 2 . please call steve stampf ' s phone number for tomorrow ' s conference call at 9 . 30 am our time on 212 597 3162 . regards ( see attached file : raptor v 5 . ppt ) the information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and / or privileged material . any review , retransmission , dissemination or other use of , or taking of any action in reliance upon , this information by persons or entities other than the intended recipient is prohibited . if you received this in error , please contact the sender and delete the material from any computer . - raptor v 5 . ppt",0 +"Subject: enron team 3 question hi melinda ! we need to get this to john henderson , but he did not come up on my email . otherwise , likely any manager level at new power would know . any help in forwarding would be great ! thanks ! - - christie , - - - - - forwarded by christie patrick / hou / ect on 03 / 27 / 01 07 : 47 pm - - - - - "" degiacinto , clayton "" 03 / 27 / 01 02 : 51 pm to : "" ' christie . patrick @ enron . com ' "" cc : vince . j . kaminski @ enron . com subject : enron team 3 question hi christie and vince , we really look forward to seeing you all next week . we ' ve learned a lot working on this project , and think we will provide some useful information for you . if possible , we need to know what states newpower is operating in . specifically , what states there is a current marketing campaign ? should i ask melinda mccarty for this information ? thanks again for your help . regards , tiger team 3",0 +"Subject: erac koch p + spread options - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 29 / 2001 10 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 01 / 29 / 2001 09 : 47 am to : bob lee / na / enron @ enron , paulo issler / hou / ect @ ect , zimin lu / hou / ect @ ect cc : subject : erac koch p + spread options booking spreadsheet in in o : \ research \ common \ projects \ exotic 2001 _ 0125 . xls sheet where options are booked is called "" index deals "" . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 29 / 2001 09 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - - mark fondren 01 / 26 / 2001 10 : 53 am to : stinson gibner / hou / ect @ ect cc : subject : erac koch p + spread options - - - - - - - - - - - - - - - - - - - - - - forwarded by mark fondren / hou / ect on 01 / 26 / 2001 10 : 53 am - - - - - - - - - - - - - - - - - - - - - - - - - - - mark fondren 01 / 25 / 2001 12 : 07 pm to : john l nowlan / hou / ect @ ect cc : spencer vosko / hou / ect @ ect subject : erac koch p + spread options price 1 = wti cushing physical cash price ( wti nymex contract ) for example , the april 2001 wti cushing price equals the aprol wti nymex contract . price 2 = koch oil posting for west texas / new mexico intermediate . koch p + = price 1 - price 2 price 2 is calculated by subtracting 3 spreads from price 1 1 . koch posting / wti nymex basis spread 2 . 66 . 6 % ( aprilol / mayol wti nymex spread ) 3 . 33 . 3 % ( aprilol / junol wti nymex spread ) example using 1 / 24 / 2001 wti settles aprol 28 . 31 mayol 27 . 72 junol 27 . 19 april 2001 koch posting = april 2001 wti nymex settlement - koch / nymex basis spread - . 666 ( apr / may ) - . 333 ( apr / jun ) = 28 . 31 - 2 . 75 - . 666 ( . 59 ) - . 333 ( 1 . 12 ) = 28 . 31 - 2 . 75 - . 3929 - . 37296 = 24 . 794 koch p + = 28 . 31 - 24 . 794 = 3 . 516 please call with any questions mark f ext 853 - 1982",0 +"Subject: "" enron day "" to be declared in spearman , texas vince , f . y . i - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 09 / 20 / 2000 02 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 09 / 20 / 2000 02 : 28 pm to : cindy olson / corp / enron @ enron cc : subject : "" enron day "" to be declared in spearman , texas cindy , you may or may not remember that i sent a short note to you last may outlining a fundraising effort for the hansford county library in spearman , texas . the community was challenged to raise $ 20 , 000 which i offered to match 2 to 1 . with enron foundations employee match , this grows to a total mathching ratio of $ 4 for every $ 1 raised by the community . ( of course , because of the $ 15 , 000 / year limit , i have to spread my gifts over several years in order to get the total amount matched by enron . ) sherry benton , the librarian in spearman just called and gave me the great news that the $ 20 , 000 in community donations has been achieved . in fact , i expect that the total community number will come to almost $ 25 , 000 once all of the donations are received . in order to recognize our part in all this , the mayor of the town is planning to declare october 17 th as "" stinson gibner and enron day "" in spearman , and they would like to have some public ceremony to bestow this recognition . there will be coverage by the local radio station and newspaper and , possibly , by the amarillo newspaper as well . they are asking if a representative from enron ( other than myself ) would be interested in coming to spearman for this event . please let me know if you or anyone else would be interested in doing this . spearman is about a 90 minute drive north from the airport in amarillo , and it is possible to get there and back to houston on the same day . thanks , stinson gibner x 34748 p . s . is there any possibility of getting a one time raise on the $ 15 , 000 / year matching cap so that i can have $ 40 , 000 matched in just two years instead of three ? - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 09 / 20 / 2000 02 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 05 / 05 / 2000 11 : 47 am to : cindy olson / corp / enron @ enron cc : subject : thanks cindy , i just received notification of enron ' s match of my $ 8000 donation to the hansford county library in spearman , texas . ( all old pipeline hands know spearman because both northern natural and transwestern pipelines run near by the city . ) you may be interested to know what i am trying to accomplish there . the library is one of the few independent public libraries in the state of texas as it is owned neither by the county nor city . it ' s budget is met through a combination of city , county , and private contributions . a big part of their income comes from the "" thrift shop , "" spearman ' s version of the blue bird circle . in order to help the library continue to provide quality services to the community ( our library in spearman , population 3000 , is by all accounts much better than the one in nearby perryton , population 15000 ) , i am trying to help the library establish an endowment fund . we have set a goal of raising $ 100 , 000 over the next 3 years . with enron ' s matching , i am planning to provide about $ 80 , 000 of that amount with the other $ 20 , 000 coming from contributions from others in the local community . i am also investigating if the library can get any type of matching grant from other foundations , but it looks like most prefer to fund specific projects rather than put funds towards endowments . let me know if you have any suggestions for us . thanks , stinson x 34748",0 +"Subject: re : visit to enron vince , dec . 29 at 9 : 00 will be fine . i have talked to shirley and have directions . thanks , bob vince j kaminski wrote : > bob , > > can you come to our office on dec 29 at 9 : 00 a . m . ? > > please , call shirley crenshaw ( 3 - 5290 ) or stinson gibner ( 3 - 4748 ) > from the reception to be admitted to the building . > > vince kaminski",0 +"Subject: re : enron case study update good afternoon john , i just want to drop you a line to update you re : andy fastow . i have confirmed a one hour interview slot with mr . fastow in monday , december 4 th from 11 : 00 a . m . - noon . this is in addition to your schedule interviews with mr . lay and mr . skilling - outline below . if you have any questions , please do not hesitate to contact me at 713 - 853 - 5670 . regards , cindy - - - - - forwarded by cindy derecskey / corp / enron on 11 / 06 / 2000 04 : 49 pm - - - - - cindy derecskey 10 / 31 / 2000 01 : 44 pm to : "" john martin "" cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect subject : re : enron case study good afternoon john , i hope things are well with you . i am writing to update you on the status of your meetings with andy fastow , ken lay and jeff skilling . i have arranged the following meeting dates and times with ken lay and jeff skilling , ( i am still trying to work with andy fastow ' s schedule ) : jeff skilling december 4 th 2 : 00 - 3 : 00 p . m . ken lay december 4 th 3 : 30 - 4 : 30 p . m . also , i will attempt to schedule the meeting with andy fastow for december 4 th for convenience - this will also allow us to possibly schedule additional meetings for the 5 th ( as needed ) . i will let you know as soon as i ' m successful . regards , cindy derecskey university affairs enron corp .",0 +"Subject: sandeep kohli dave , i would like to recommend to you sandeep kohli who is likely to approach you regarding a position in your area . i have been working with sandeep for a number of years and i was always impressed with his skills , intelligence and mature , thoughtful approach to solving business problems . he is currently located in india ( our dpc unit ) and is looking for a permanent position with enron in houston for family reasons ( his wife is from houston and has a family here ) . of course , there are some other obvious factors affecting his decision . vince",0 +"Subject: moddeling support for dpc related issues a quick update on the status of sandeep kohli . he is working currently in my group . he is available on a very short notice to help you with any quantitative modeling that can be required in making decisions regarding our dpc strategy . in case you need his help , he can also rely on the support of other members of my group with skills in different areas . vince kaminski",0 +"Subject: alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: re : real options jim , i am scheduled to arrive in austin on may 4 at 10 : 32 a . m . i shall be glad to join you and a group of your colleagues for lunch . i am flying back to houston friday morning and we can meet for dinner after the class . i shall have a power point presentation on my pc . i can also prepare a set of transparencies if this is more convenient for you . vince jim dyer on 04 / 27 / 2000 05 : 44 : 51 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : sheridan titman subject : real options vince , i am traveling at this time , attending a nsf meeting in washington . however , i wanted to touch base regarding plans for your presentation in my class on real options next thursday ( may 4 ) . as you recall , the class is from 3 : 30 to 6 : 30 , and you could plan to take a significant part of that time for your presentation . sheridan titman has agreed to join us after his class at about 6 : 00 for a 30 minute "" panel discussion "" with the students on issues related to real options in practice . l i am not sure about your travel plans , but we would be happy to plan lunch on thursday with several of my colleagues . i would also be delighted to be your host for dinner on thursday night if that is convenient for you . i ' ll be back in my office on monday , and will look forward to hearing from you . jim james s . dyer fondren centennial chair in business department of management science and information systems cba 5 . 202 the university of texas at austin austin , texas 78712 - 1175 email : j . dyer @ bus . utexas . edu telephone : 512 - 471 - 5278 fax : 512 - 471 - 0587",0 +"Subject: request submitted : access request for iris . mack @ enron . com you have received this email because the requester specified you as their manager . please click approval to review and act upon this request . request id : 000000000024099 request create date : 3 / 16 / 01 5 : 39 : 34 pm requested for : iris . mack @ enron . com resource name : visual studio enterprise resource type : applications",0 +"Subject: telephone interview with the enron research group good morning richard : your resume was forwarded to vince kaminski and the research group and they would like to conduct a telephone interview with you at your convenience . please give me some dates and times that you would be available and i will coordinate the schedule . also , the telephone number you wish to be contacted at . the telephone interview will be last approximately an hour and the interviewers would be : vince kaminski managing director , research stinson gibner vice president , research vasant shanbhogue vice president , research thanks richard and we look forward to hearing from you . regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: li sun vince , i am so glad that your meeting went well with li yesterday . this is a confirmation email to let everyone know that li sun will begin in vince ' s organization on monday , august 28 th . if you have any questions , please let me know . thanks . - - - - - - - - - - - - - - - - - - - - - - forwarded by jana giovannini / hou / ect on 08 / 23 / 2000 10 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jana giovannini 08 / 21 / 2000 01 : 25 pm to : vince j kaminski / hou / ect @ ect cc : john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , hunter s shively / hou / ect @ ect , shelly butler / hou / ect @ ect , ina rangel / hou / ect @ ect subject : li sun vince , thanks for your response . apparently , we were under the incorrect impression that your group would be taking li ( based on jeff ' s note below ) . we apologize for not contacting you last friday to confirm prior to "" placing "" li in your group . i have faxed li ' s resume to you and hope that you will have time to review it today . please call me back as soon as you can to discuss li ' s opportunities in your group . if vince is not interested in li for his group , we will consider li placed in ena - gas trading ( original placement ) in john lavorato ' s organization . once i hear from vince one way or the other , the program will consider li ' s placement final in either research or ena - gas trading . hopefully this will be resolved by tuesday morning so that we may communicate to li her rotation information . if you have any questions , please let me know . thank you ! vince j kaminski 08 / 21 / 2000 01 : 03 pm to : jana giovannini / hou / ect @ ect cc : subject : re : vikas dwivedi fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 21 / 2000 01 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 08 / 21 / 2000 12 : 58 pm to : shelly butler / hou / ect @ ect cc : john j lavorato / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , hunter s shively / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : vikas dwivedi shelly , i shall not accept anybody for a rotation without a prior interview . li was scheduled to meet with me last thursday but she never showed up . she did not call to cancel or to apologize for not showing up . i have not seen her resume . please , assume she is not rotating into my group till further notice . vince from : shelly butler 08 / 18 / 2000 03 : 37 pm to : jeffrey a shankman / hou / ect @ ect cc : hunter s shively / hou / ect @ ect , john j lavorato / corp / enron @ enron , vince j kaminski / hou / ect @ ect , craig breslau / hou / ect @ ect , ina rangel / hou / ect @ ect subject : vikas dwivedi jeff , just wanted to confirm that li will be placed in vince kaminski ' s group . vikas has been placed in ena middle market reporting to craig breslau . please contact me at 3 - 4584 if you have any questions . thanks for your help ! ! shelly from : jeffrey a shankman 08 / 18 / 2000 03 : 18 pm to : shelly butler / hou / ect @ ect cc : hunter s shively / hou / ect @ ect , john j lavorato / corp / enron @ enron subject : shelly , hunter spoke with li today and agrees that her first rotation should be in vince ' s group doing modelling , etc . this will give her the broadest experience for a first rotation . i ' m sure the other person in question , vikas , will do very well in hunter ' s group . thanks for your help . jeff",0 +"Subject: non - disclosure agreement and intellectual property rights hi kay , i was referred to you by julia for assistance . here in research , we are in the process of retaining prof . sheridan titman of university of texas at austin to perform some consulting work . in anticipation , we would like to have a non - disclosure agreement to protect the confidentiality of any information we might provide him . also , we would like have an agreement on how the intellctual property rights of any outcome of this effort will be shared . please let me know what information i can provide from this end to help you draft these documents . my extension is 30936 . thanks . rakesh",0 +"Subject: re : telephone interview with the enron corp . research group dear kevin : dr . kaminski , stinson gibner and zimin lu will interview you at the same time in a group interview , which will last approximately 1 hour . if it meets with your approval , i have scheduled the telephone interview for this friday , august 4 at 1 : 00 pm . they will call you at 713 - 630 - 0768 . fyi . the research group is responsible for option modeling , building systems for risk quantification and management , development of optimization systems , assisting with statistical analysis and anything that requires advanced math , for all of enron . if you have any other questions , please let me know . regards , shirley crenshaw administrative assistant enron corp . research 713 - 853 - 5290 email : shirley . crenshaw @ enron . com ningbo xu on 08 / 01 / 2000 11 : 30 : 44 am to : "" ' shirley crenshaw ' "" cc : "" ' kevinxu 98 @ yahoo . com ' "" subject : re : telephone interview with the enron corp . research group dear shirley , sorry for getting back with you until today . i have been out of town since last friday and didn ' t have access to emails . i appreciate the opportunities to talk with mr . kaminski , mr . gibner , and mr . lu and look forward to their phone calls . as to the date and time , i will be available all day this friday and any day next week . please let me know when they will be available so that i can arrange schedule to accommodate . i can be reached at 713 - 630 - 0768 . also , i have a couple of questions that i hope to get your help : 1 . will the interview be a group interview or each of them will talk with me individually ? 2 . what ' s the role of the research group at enron ? thank you very much and look forward to hearing from you . kevin xu - - - - - original message - - - - - from : shirley crenshaw to : xuni @ olin . wustl . edu sent : 7 / 28 / 00 11 : 45 am subject : telephone interview with the enron corp . research group good afternoon mr . xu your resume has been forwarded to the research group with enron corp . they would like to conduct a telephone interview with you at your convenience . please let me know your available dates and times along with the telephone number you may be reached at and they will call you . the interviewers would be : vince kaminski managing director stinson gibner vice president zimin lu director look forward to hearing from you . regards , shirley crenshaw administrative coordinator enron corp . research 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: weather person for london egm folks : we interviewed three candidates . one of the three ( tony hamilton ) seems to be a very good fit within the enron culture and values . recommended next steps vince , mike and jeff interview tony via video conference or avistar tony hamilton key strengths quick thinker good teams skills driven - will be able to get the project off the ground quickly has a commercial attitude sees "" the big picture "" tony hamilton is available for follow up interviews the first week of january . thanks jen",0 +"Subject: re : hello from london zimin , i have a copy of the article . i agree with you . the model is essentially the same ( in intentions ) . i shall distributed the copy of the paper to the trades here . it explains well the logic behind the model and it ' s an independent source . vince zimin lu 05 / 30 / 2000 10 : 44 am to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : re : hello from london vince , i got the article . i can make a copy for you when i get back . the article is pretty much for marketing purpose . my reading from that paper is as follows : 1 . solve optimal exercise bounday using stocastic dp ; 2 . runing price trajectory to tracking storage level to give average storage cycling ; our model addresses the same issues , althrough maybe the implementation is not quite the same . i will fax to you if i can find the article here . regards , zimin vince j kaminski 05 / 30 / 2000 09 : 56 am to : zimin lu / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : hello from london zimin , there was an interesting article on gas storage modeling by people from camminus in the march issue of energy and power risk management . please , see if you can get this article . vince zimin lu 05 / 30 / 2000 04 : 59 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : anjam ahmad / lon / ect @ ect subject : hello from london vince and stinson , i am in the london office this week . things are quite nice here . my host anjam arranged a full itinerary for me . tuesday is reserved for anjam to talk about various subjects including inflation modeling , power vol curve , mean reverting price & vol model , and i will talk about the spot and multi - factor models , xll . wednesday , i will concentrate on the gas storage model with natasha danilochkina . thursday and friday i will talk to haakan olafsson , mark jones , anjam , and natasha about uk gas forward curve simulation , gas swing model , and implementation issues of uk virtural storage model . i will give you a full report when i get back . it is cold and rainy here in london . it makes me feel sunny and hot houston actually is not that bad . zimin",0 +"Subject: re : clustering for power jaesoo , as we discussed last week on wednesday meeting can you , please , implement clustering for power curves by geographical region . this involves the following : 1 . deciding together with risk control how many geographical regions we want to use and which enron ' s curves belong to each region . 2 . deciding together with risk control how to choose core curves for each region . this decision can be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations . 3 . doing regression analysis for each curve versus the corresponding core curve . winston , can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ? should we wait for the stage re - fresh and what is the status on this ? tanya .",0 +"Subject: re : exotica ( second request ) thanks anjam . that ' s looks great . sorry about the second request . i didn ' t realise you were in a meeting . thanks , sharad",0 +"Subject: mba career opportunity shirley , please , arrange a phone interview . tt , vk , sg , zl . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000 09 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" qing chen "" on 11 / 17 / 2000 06 : 01 : 28 pm to : cc : subject : mba career opportunity dear ? vincent kaminski : ? i got your contact details from the web site for power marketers . i have a strong interest in pursuing a career in the energy industry ? with a top energy company like ? enron , where my abilities and qualifications can be fully applied for our mutual benefit . i am graduating in may with an mba ? degree with concentrations in finance and information systems . this summer i worked ? as an intern with structuring and analytics group of ameren energy . ? this internship ? has been especially challenging and has enhanced my professional competencies . while there , i was afforded the opportunity to ? develop a forward view model ? for ? off - peak ? electricity price forecasting and analyze the data sets of a fundamental ? model to create forward price curves . both projects added value to the company and provided me with first - hand experience in the area of energy trading and marketing as well as modeling techniques . in addition , i have an undergraduate degree in mechanical engineering and two years ' experience in power generating . with my work experience in energy finance and exceptional academic and professional achievements , along with my exemplary leadership and management potential and outstanding analytical , business communication , problem - solving and computer skills , i ' m convinced that i will be able to make immediate contributions to your company . i am attaching my resume for your review . should you have any questions or need clarification , please feel free to contact me at ( 504 ) 861 - 9110 or qchenl @ tulane . edu . as i have some offers with deadlines approaching , i would appreciate it if you could give me a quick response . i also expect ? a base compensation above $ 75 k . i look forward to ? hearing from you soon . ? best regards , qing ( christine ) chen mba 2001 a . b . freeman school of business tulane university tel : ( 504 ) 861 - 9110 - resumeus . doc - resumeus txt . txt",0 +"Subject: resid fx option - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 08 / 17 / 2000 09 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 08 / 17 / 2000 09 : 59 am to : stinson gibner / hou / ect @ ect , paulo issler / hou / ect @ ect cc : subject : resid fx option i have created a directory residfx in where i put my monte - carlo model ( c project ) and calling spreadsheet for the valuation . zimin",0 +"Subject: re : spreadsheet for george posey vince - here is an analysis of the fund giving at the church . first off , it appears from the data that a special "" appeal "" for fund giving was made ( from the pulpit ? ) on april 19 , 1998 and april 25 , 1999 , ( perhaps tied rhetorically into income taxes ? ) . then , by going back and incorporating obvious dates from the calendars for 1997 - 1999 , the following regression analysis is made , where each effect is added independently : giving this sunday = $ 4403 + a minor $ 3 weekly time trend ( i . e . , multiply by the number of weeks since jan . 5 , 1997 ) + no pure effect from last week ' s contributions ( i . e . , denies first - order autoregressive effects ) + $ 2426 if easter sunday or the sunday nearest christmas + $ 9695 if ( pastoral appeal ) april 19 , 1998 or april 25 , 1999 - $ 340 if the sunday falls on the weekend of a monday federal holiday - $ 50 if the sunday following thanksgiving - $ 73 if a summer weekend ( june 1 thru august 31 ) the pure time trend is very small , so an annual projection based on all 3 years data would be for giving to increase only a minor amount ( $ 150 ) for 2000 assuming a similar appeal for giving is made this april . clayton",0 +"Subject: friday brown bag on derivative pricing dear everyone , we understand the as members of enron research group , all of us are working on very interesting projects , some of which are ground - breaking , and we all keep a very keen mind on any development of new technology . we also find out , through our own experience , that at this age of information explosion , it becomes more and more difficult to have enough time and energy to keep abreast with most of the exciting stuff taking place in this department , let alone in the industry . it is also our personal experience that many a project we are working on has partially been attempted by other members of this group . as a remedy , we propose that the research group start an informal brown bag lunch group meeting , once every two weeks on friday , for about 50 minutes . it is hoped that it will provide a forum for us to facilitate with new technology and development , as well as with each other  , s work , so that we do not have to reinvent the wheels . we envision the following : in this meeting ( or seminar ) , each one of us will take turns to make presentations to the group . the topics could range from theoretical consideration to practical implementation , be it option pricing , process modelling , insurance issue , or monte carlo simulation , or anything one finds fascinating . the presentation material could be papers you have been reading recently , projects you are working on , some problem that bothers you , or an idea that is fascinating . you choose your own presentation style . it could be everything - you - always - wanted - to - know - but - were - afraid - to - ask , hand waving style , or it can involve nitty - gritty , detailed derivations , anyway a style that suits you and the topic . or it can simply be a dry - run for your presentation at the next risk conference . zimin and alex will take upon the responsibility of organizing the seminar . we hope the seminar will be up and running in two - three weeks . for that purpose your support will be greatly appreciated . please let either zimin or alex know if you are interested in giving a presentation to the group and provide a tentative schedule . surely the rest of the group will be happy to hear your presentation . we encourage everyone to participate this brown bag meeting , either to give a talk or just sit in . zimin lu alex huang",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ? s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000",0 +"Subject: another bet vince i here you are running abook on how quickly we can implement convolution var for power and since i am up against a summer deadline for this i felt i should take the other side . so how about i buy you dinner if i get it done ? rgds dp",0 +"Subject: re : a personal favor thanks very much . i am attaching his resume for your review . - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , may 07 , 2001 12 : 08 pm to : anurag . saksena @ gmacrfc . com cc : vince . j . kaminski @ enron . com subject : re : a personal favor anurag , i shall talk about vikas to our it people . can you send me his resume ? vince "" saksena , anurag "" on 05 / 07 / 2001 10 : 06 : 54 am to : ? ? "" ' vkamins @ ect . enron . com ' "" cc : subject : ? a personal favor vince , i have ? left a voice mail to you and will wait to talk to you personally . my brother ? vikas , who is now in london , is trying to make a switch from consulting world to ? working for a specific firm . over last few months , i have heard of great deal ? about the success of enron on line business which fits well in the area of his ? expertise . i am wondering if you know of some one in london who he can speak to ? regarding career opportunities . since ? i spoke to you last , a number of things have changed . recently , my manadate was ? broaden to include leading a charge for developing a risk management function ? for both the domestic and international businesses for gmac . needless to say , ? this is exciting albeit making the life a little more hectic than ? usual . talk ? to you later . anurag 952 - ? 857 - 6133 ? - resl . doc",0 +"Subject: d - g energy software procurement laine , enclosed is a revised copy of the software licence agreement with d - g energy . the earlier version had prices and conditions of use which differed from what had been discussed over the telephone . this version brings into line the terms with what has been agreed upon , and has been given tentative approval by the president of d - g , who i met with last week . i have highlighed the sections which have changed from the version that you sent out for signature last november . i assume that the revised document will have to be reviewed by legal again . let me know if i can be of any assistance in this process . regards , stinson gibner",0 +"Subject: re : statistician from rice osman , this guy is too much . i would tell him that we understand that he has to make the best choice for himself and can change his mind but at this point we treat his decision as final but we still appreciate the interest he showed in enron . we never had any luck hiring a statistician . maybe we shall get one some day . vince osman sezgen @ ees 04 / 20 / 2001 11 : 54 am to : vince j kaminski / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect cc : subject : statistician from rice i had a message on my phone this morning from william indicating that he had changed his mind and will be taking another job . he also mentions that the other organization will give him time to publish his thesis and he assumes enron would not do that . i am inclined to give up on him but wanted to get your input before doing so . osman",0 +"Subject: business trip to houston dear all , i will be in the houston office from monday 10 th july through wednesday 19 th july and stopping in ny on the return leg to meet staff at mg metals ny on thursday 20 th july at the suggestion of lloyd fleming who is co - ordinationg the rac activities for the integration of mg metals . i will probably take a day of leave on friday 21 st which would mean that i will be back in the london office on monday 24 th july . regards , anjam p . s . as usual i will be contactable on my cellular : ( 07747 ) 868131 or through lotus notes .",0 +"Subject: re : moving roy ibasco hi vanessa : you will need to fill out a "" churn request "" and forward it to the "" move team "" they will take care of everything that you put on the form . i am attaching a copy of the form for your information . the receiving department is responsible for doing this . he will need boxes to pack his belongings ( ask him how many he needs - he will have to do the packing ) . the only item that moves other than his personal items , is his telephone . the computer , chair , etc . belongs to the research group . if you have any questions , or need help , please let me know . thanks ! vanessa carranza @ enron 06 / 08 / 2000 04 : 47 pm to : shirley crenshaw / hou / ect @ ect cc : subject : moving roy ibasco shirley - i need to have roy ibasco ' s things moved to eb 2930 c from ebl 948 and have it charged to co / rc 413 - 1708 . please give me a call if you have any questions ! thanks - vanessa c 3 - 5030",0 +"Subject: re : agenda for vc craig , thanks for your email regarding tomorrow ' s houston / london videoconference . attached is an updated spreadsheet which elaborates upon the issues amitava and i will discuss tomorrow . regards , iris - - - - - original message - - - - - from : chaney , craig sent : thursday , april 19 , 2001 2 : 34 pm to : kirkpatrick , eric ; salmon , scott ; cruver , brian ; dhar , amitava ; mack , iris ; mumford , mike ; detiveaux , kim subject : agenda for vc folks , here were some of the things i thought would be useful we could discuss : status and schedule on data aquistion : iris and mike riskcalc testing : methodology , criteria , and schedule : iris and amitava model development : which model are going be developed and when : iris and amitava feel free to add to the agenda . craig",0 +"Subject: mgmt 656 enclosed please find the final grade rosters for mgmt 656 . ? grades are due into our office no later than friday , may 4 . remember that this is the university deadline for graduating students . thank you for your help ! - pam ( 713 - 348 - 6223 ) - 656 . doc",0 +"Subject: re : outage tracker option and background karl , thanks a lot . i have passed this information to grant masson who worked here on a related problem . he will get in touch with you regarding this technology . vince karl tomlinson @ enron _ development 07 / 24 / 2000 06 : 00 pm to : vince j kaminski @ ect cc : subject : outage tracker option and background vince , to follow up on the idea of a means for effectively tracking instantanious plant faliure utilising either system frequency or connection point voltage . the system frequency phase shift across a network will probably be the best option as this would allow alll significant deviations to be tracked along with relative network performance from a few points . i am currently chasing nemmco ( au system operator ) to get hold of a few weeks of 4 second metering data for the whole system to see if there is enough measurement consistency to prove one of the ideas . the idea follows along the lines ( literally ! ) that when a unit fails it will introduce a shock into the system and reduce system frequency , which is then reacted to by frequency control services offered in by generators . the drop in frequency is noticable across the whole network and as one option may change the phase shift across the whole grid . the phase shift across the network is constantly changing due to loads and power factor correctrion devices switching on and off , however a unit failure may be distinct . the second option relates to how a unit fails , whereby if a circuit breaker is involved as in the case of uncontrolled shutdowns , then the outage will cause an rf pulse that should propogate across some of the network . transformers will attenuate the pulse , however it should be detectable many miles away from the fault location . measure the arrival time at several point on the network , work out the shift and backtrack on the network . part of the solution is already proven in lightning trackers . the solution may be made more simple by detecting the exact point on the sinewave that the unit failed ( i . e . measuring the three phases at lmhz and then sending the data through a dsp ) . this solution is more complex , however this should allow unit failure to be pinpointed to a station . the timing base for each of the nodes may be sourced from gps timing , self locating at the same time ! will send you some links and documents for potentail hardware and setups . karl .",0 +"Subject: cal berkeley recruiting congratulations ! ! ! you have been nominated to join the cal berkeley campus team . beginning this fall , enron will head to the university of california at berkeley for the first time ! in addition to traditional analyst recruiting focusing on finance , economics , and business majors , the analyst program will add a new addition to it ' s rotational program - the global technology track . the global technology track will provide a pipeline for mis , computer science and engineering majors to join enron and rotate within enron net works and ebs technology functions . therefore , we would like to create a recruiting team that represents all aspects of enron including both it and business "" swat teams "" to help attack campus during career fairs , presentations , dinners , and other events searching for the ideal candidate . in the next week you will receive an invitation to the cal berkeley planning session and kickoff . at that time we will review strategies , profiles , and events to ensure that enron is able to attract the top candidates ! please make every effort to attend . if you have any questions , please do not hesitate to contact me at 3 - 3589 . thanks , ashley baxter global technology track recruiter",0 +"Subject: re : gwen koepke i will see you on friday at 3 . if you would like for me to come before then , just let me know . - - - - - original message - - - - - from : kaminski , vince sent : wednesday , may 02 , 2001 3 : 01 pm to : labbe , anne cc : kaminski , vince subject : re : gwen koepke anne , thanks for contacting me about this . as a matter of fact , i wanted to talk to you about it today as this matter was outstanding for a long time . i think we should go ahead and adjust gwen to manager , effective march 1 . the compensation would be her current base plus 10 k . this is what we typically do when we promote an associate to a manager . such promotions take place in march and i think gwen should not be penalized for the inefficiency of her management ( i . e . my and maureen ' s procrastination ) . on unrelated and more serious matter . gary hickerson is the primary client for maureen ' s services . he communicated to me a few weeks ago that he is unwilling to underwrite maureen ' s position ( he is in general unhappy with her contribution ) . this means that maureen will have to find another sponsor or leave enron . given her abrasive and aggressive personality finding another internal customer will be quite a challenge . gary volunteered to pay a very generous severance to maureen from his budget . i would like to talk to you about it when you have a few minutes . vince from : anne labbe / enron @ enronxgate on 05 / 02 / 2001 10 : 34 am to : vince j kaminski / hou / ect @ ect cc : subject : gwen koepke vince , just wanted to touch base with you . i have tried to contact maureen so that gwen ' s title and salary can be adjusted to manager just as you requested , but have not heard any response from her . would you like for me to wait until i hear from maureen or should i go ahead and proceed in changing her title ? i just want to make sure that gwen is in the right peer group during prc . also , i am going to try and set up a meeting with you next week through shirley to discuss any buring issues that you are experiencing , and your expectations during prc . thanks , anne",0 +"Subject: re : next visit to houston yes and so would the northeast trader john suarez vince j kaminski 06 / 29 / 2000 04 : 07 pm to : george hopley / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : next visit to houston george , would you like to take a like at the service ( see below ) . the meeting is on july 12 at 2 : 30 ( 19 th floor ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000 04 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" edward krapels "" on 06 / 29 / 2000 03 : 53 : 40 pm please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : re : next visit to houston vince , good to hear from you and i ' m glad you ' re available . how is wednesday at 2 : 30 ? i did look at eol and am not surprised to see its quality . i was unable to say much about it in my risk electricity hedging and trading report because of deadline pressures . how is the site doing ? i am intrigued by the competition for trading platforms and was astonished to hear that goldman , morgan , bp and shell were going to launch a site to compete with yours . talk about a shotgun marriage ! if we have time next week , i could step you through our website - - www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out a password yet but would be happy to walk through the site with you over the phone using my password . it ' s a very ambitious site - - with state - of - the - art wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for pjm and nepool . esai contributes oil and gas input price forecasts , capacity judgments , and "" herding "" ideas to develop power price forecasts for same time periods . after one month ' s full - bore effort , i ' m pleased with the results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) . have a great weekend . ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , june 28 , 2000 5 : 29 pm to : ekrapels @ esaibos . com cc : vince j kaminski ; shirley crenshaw subject : re : next visit to houston ed , i shall be available on both days . what about wednesday , july 12 , between 1 : 30 and 4 : 00 . please , let me know what time would work for you . it will be nice to see you again . vince p . s . by the way , did you have a chance to take a look at the eol ? "" edward krapels "" on 06 / 28 / 2000 02 : 49 : 41 pm please respond to ekrapels @ esaibos . com to : vince j kaminski / hou / ect @ ect cc : subject : next visit to houston dear vince , i will be returning to houston during the week of july 10 . esai and weather services international have launched - - after more than 18 months of r & d - - our service , called energycast power trader and energycast gas trader , for power traders in nepool and pjm . i would be happy to review the service with you as well as take you on a tour of our web site . are you available on july 12 - 13 ? sincerely , ed krapels",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 campos , hector o peyton s gibner nov 06 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 gandy , kristin h celeste c roberts nov 01 , 2000 gorny , vladimir theodore r murphy ii nov 02 , 2000 hewitt , kirstee l steven leppard nov 06 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 raymond , maureen j wincenty j kaminski nov 02 , 2000 rosen , michael b christie a patrick nov 06 , 2000 sun , li kevin kindall nov 09 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 williams , matthew steven leppard nov 08 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: update - meteorologist search we have identified two good candatites who would be available for a london interview the week of the 18 th : 1 . kerryn hawke 2 . stephen cusack also strong but not available for that week is 3 . piero chessa ( working for ecmwf in italy ) we have a couple others here in the states if the london interviews don ' t work out . i am forwarding under separate cover kerryn and stephen ' s cv ' s with telephone numbers to jen - - - mike",0 +"Subject: vince , i ' ll have him e - mail you a cv . i ' d be happy to speak at the power risk conference . frank professor frank a . wolak email : wolak @ zia . stanford . edu department of economics phone : 650 - 723 - 3944 ( office ) stanford university fax : 650 - 725 - 5702 stanford , ca 94305 - 6072 phone : 650 - 856 - 0109 ( home ) world - wide web page : http : / / www . stanford . edu / ~ wolak cell phone : 650 - 814 - 0107",0 +"Subject: your advice is appreciated vince , in the morning we were talking about the el paso candidate who thinks he is above something and is not willing to take certain project or responsibility . in real life , we also occasionally have similar stiuation . ( an example is attached ) . i would like to have your guidance when such a situation occurs . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 05 / 02 / 2001 02 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 05 / 02 / 2001 01 : 41 pm to : paulo issler / hou / ect @ ect cc : subject : re : asian option for pavel our convention is whoever finalizes the model should write the documentation . it does not make sense to write one when changes are anticipated . you have been working on this almost a year , it never strikes you that we need a documentation ? i created exotica . xll , does that also give you an excuse not working on exotica documentation ? zimin paulo issler 05 / 02 / 2001 11 : 52 am to : zimin lu / hou / ect @ ect cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel i am surprised that we do not have the documentation ready . i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality . paulo issler zimin lu 05 / 02 / 2001 11 : 29 am to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect cc : pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel tai woo , here are the c - codes for the crudeapo . ' sig ' is the spot volatility meaning the price volatility within the delivery period . you should consult with pavel for the definition of this "" extra "" parameters . we would like to see the position monitor once you get it running . we might have some additional suggestions . paulo , why don ' t we have a documentation on crudeapo you worked on ? i can not find it in exotica help file . please supply that to tai , thanks . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am to : paulo issler / hou / ect @ ect cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect subject : asian option for pavel this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio . he asked me to talk to you in order to access to the code so that i can see the difference made to the model . as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is . thanks , ",0 +"Subject: re : dabhol power jim , can you meet with us tomorrow ? one of my associates worked on a few projects with dpc and will visit them in january . his name is krishnarao pinnnamaneni and he will be gone for 3 weeks , starting wednesday please , let shirley crenshaw , my assistant ( 3 - 5290 ) , know what time would work for you tuesday . vince james a hughes @ enron _ development 12 / 18 / 2000 01 : 07 pm to : vince j kaminski @ ect cc : subject : dabhol power vince : as i am sure you are aware , we are facing significant challenges with the dabhol project . as i have delved into the project and our problems , i have been disturbed by our lack of information / data relative to our position in the grid and the overall fundamentals for the region . i would like to meet with you and get your assistance in identifying some resources to try and help the india team develop a better understanding of their market and how to identify / develop / use the fundamentals . thanks . jim",0 +"Subject: password for pjm 101 : the basics dear pjm attendees : for pjm 101 : the basics - febuary 27 , 2001 @ 9 : 00 am et your username and password will both be pjm + the first 3 letters of your last name . for instance my username and password would be pjmcur . feel free to go to our web site and change this at any time . http : / / www . virtual - workshops . com if you have any questions regarding this , give me a call .",0 +"Subject: re : flat screens f . y . i . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 01 / 07 / 2000 06 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 01 / 07 / 2000 06 : 03 am to : tommy garza / hou / ect @ ect cc : subject : re : flat screens thanks tommy , the locations are correct . eb 3131 b and eb 3132 b . the persons at the locations are trisha tlapek and michael sergeev . thanks also we need a computer for roman zadorozhny location ebl 972 b . please inform me on this . . . . . . . . . kevin moore",0 +"Subject: giuseppe paleologo molly , giuseppe is finishing his ph . d . at stanford and worked for us last summer . we would like to make him an offer to bring him as a manager . vince would like to offer $ 110 k base plus a $ 20 k signing bonus and whatever would be the appropriate relocation package ( he is single . ) . he is leaving on monday for europe , so it would be preferable if we can get an offer letter in his hands by friday or saturday . i have verbally given him this offer already , but told him that you would be the expert regarding what is covered in the relocation part . he should be sending me his current address by email which i will forward to you a . s . a . p . thanks , stinson x 34748 p . s . regarding jinbaek . we would be happy to pay his air ticket . - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 25 / 2001 03 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - giuseppe andrea paleologo @ stanford . edu on 04 / 23 / 2001 07 : 33 : 29 pm please respond to gappy @ stanford . edu sent by : gappy @ stanford . edu to : stinson . gibner @ enron . com cc : subject : re : from stinson stinso , nice to hear from you . things are going well here . the only annoyance comes from the ins . i applied for curricular practical training , and it will take about three months to have the work permit . receiving an h - 1 takes understably much longer . other than this , i would like to know how are things in the research group and ebs . i will leave for italy next monday and will stay there two weeks . i hope to hear from you before my departure . giuseppe stinson . gibner @ enron . com wrote : > > giuseppe , > > how are you ? is your thesis still on schedule ? i hope things are going > well . i will try and give you a call in the next day or two to see how > things are going and to bring you up to date on what ' s going on here at > enron . look forward to talking with you . > > - - stinson - - giuseppe a . paleologo email : gappy @ stanford . edu office phone : ( 650 ) 725 - 0541",0 +"Subject: ca for henwood engagement bonnie , thanks for getting back to me on friday . enron will be contracting with henwood for henwood to provide an analysis of the indian power system . however , enron will be providing a significant part of the input data used for the study including our views on the indian market in the future and also very detailed information about our dabhol plant . we want to be sure that the information provided by us to henwood remains confidential . we also want to be sure that henwood considers as confidential the results of this study provided by henwood to enron . the enron and related entities providing information are likely to include dabhol power corp . enron india also possibly enron north america the primary henwood contact for the project is robert schenck in australia at henwood energy services , inc . 26 greenhill road wayville , sa 5034 australia the henwood corporate office is in sacramento : 2710 gateway oaks drive suite 300 north sacramento , ca 95833 let me know if you need any additional information . - - stinson x 34748",0 +"Subject: global risk management initiative rick , i read your memo regarding global risk management initiative . i am sending you the information regarding a related initiative on which i have been working last year and which is moving now into the implementation stage . it ' s enterprise - wide risk management and it ' s really an effort to measure business risks consistently across the company . i hope my group can be helpful in designing the general approach to this problem . please , let me know what your thoughts are . vince",0 +"Subject: re : credit reserve update we have not done any recent analysis since the end of january or maybe even the end of december . i will have rod nelson and tanya rohauer relook at the impact of the changing yield curve on credit reserve . we have a lot of improvements we need to make on our current methodology when we have the time and resources to dedicate to it . bill vince j kaminski 02 / 17 / 2000 10 : 14 am to : william s bradford / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : credit reserve update bill , most recent vincent ' s update on what ' s going on with the credit model . another issue . i am increasingly concerned with our general approach to the generation of probabilities of default . recent developments in the credit markets are likely to change completely the dynamics and levels of interest rate spreads . i am curious if you looked at the credit reserve based on the current yield curves ( as of the last few days ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 17 / 2000 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vincent tang 02 / 15 / 2000 05 : 12 pm to : vince j kaminski / hou / ect @ ect cc : grant masson / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect subject : credit reserve update",0 +"Subject: re : 2 - survey / information email 5 - 7 - 01 outlook migration team @ enron 05 / 04 / 2001 03 : 26 pm to : alex huang / corp / enron @ enron , amitava dhar / corp / enron @ enron , anita dupont / na / enron @ enron , bob lee / na / enron @ enron , chonawee supatgiat / corp / enron @ enron , elena chilkina / corp / enron @ enron , gwyn koepke / na / enron @ enron , jaesoo lew / na / enron @ enron , jason sokolov / hou / ect @ ect , jose marquez / corp / enron @ enron , kate lucas / hou / ect @ ect , kenneth parkhill / na / enron @ enron , kevin g moore / hou / ect @ ect , lance cunningham / na / enron @ enron , leann walton / na / enron @ enron , martin lin / hou / ect @ ect , maureen raymond / lon / ect @ ect , mike a roberts / hou / ect @ ect , nelson neale / na / enron @ enron , paulo issler / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , rabi de / na / enron @ enron , rakesh bharati / na / enron @ enron , sandeep kohli / enron _ development @ enron _ development , sevil yaman / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , sofya tamarchenko / na / enron @ enron , stinson gibner / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , tom barkley / na / enron @ enron , tom halliburton / corp / enron @ enron , vince j kaminski / hou / ect @ ect , william smith / corp / enron @ enron , youyi feng / na / enron @ enron , zimin lu / hou / ect @ ect , alan muntz / npng / enron @ enron , anita swanson / npng / enron @ enron , bambi heckerman / npng / enron @ enron , christopher burns / npng / enron @ enron , darla steffes / npng / enron @ enron , geneva patterson / npng / enron @ enron , jerry boston / npng / enron @ enron , jody warner / npng / enron @ enron , john freeman / npng / enron @ enron , judith weakly / npng / enron @ enron , laurie willemyns / npng / enron @ enron , leon schneider / npng / enron @ enron , loren charbonneau / npng / enron @ enron , ray neppl / npng / enron @ enron , scott coburn / npng / enron @ enron , alliece morris / ots / enron @ enron , etsweb @ enron , joe zhou / fgt / enron @ enron , ladonna dervin / ots / enron @ enron , larry hill / fgt / enron @ enron , max brown / ots / enron @ enron , patty hermanek / fgt / enron @ enron , peter lu / et & s / enron @ enron , randy cantrell / gco / enron @ enron , richard abramowicz / et & s / enron @ enron , rick craig / ots / enron @ enron , robert fugel / et & s / enron @ enron , tina dunnaway / fgt / enron @ enron , wendy koh / et & s / enron @ enron , anne bike / corp / enron @ enron , barry tycholiz / na / enron @ enron , carli smith / na / enron @ enron , doug fletcher / enron _ development @ enron _ development , jacquelyn matthews / na / enron @ enron , janelle russell / enron _ development @ enron _ development , joanne smith / corp / enron @ enron , kayla bruzzese / na / enron @ enron , michael j beyer / hou / ect @ ect , michael j miller / enron communications @ enron communications , michelle lincoln / enron _ development @ enron _ development , shelly jones / hou / ect @ ect , susan huston / hr / corp / enron @ enron , zachary sampson / na / enron @ enron , alison smith / nyc / mgusa @ mgusa , bernie penner / nyc / mgusa @ mgusa , janet vala - terry / nyc / mgusa @ mgusa , lilia penagos / nyc / mgusa @ mgusa , patricia benington / nyc / mgusa @ mgusa , jack netek / enron communications @ enron communications cc : subject : 2 - survey / information email 5 - 7 - 01 current notes user : to ensure that you experience a successful migration from notes to outlook , it is necessary to gather individual user information prior to your date of migration . please take a few minutes to completely fill out the following survey . when you finish , simply click on the ' reply ' button then hit ' send ' your survey will automatically be sent to the outlook 2000 migration mailbox . thank you . outlook 2000 migration team full name : vince j kaminski login id : vkamins extension : 3 - 3848 office location : ebl 962 what type of computer do you have ? ( desktop , laptop , both ) desktop , laptop do you have a pda ? if yes , what type do you have : ( none , ipaq , palm pilot , jornada ) palm pilot do you have permission to access anyone ' s email / calendar ? no if yes , who ? does anyone have permission to access your email / calendar ? shirley crenshaw , anita dupont if yes , who ? are you responsible for updating anyone else ' s address book ? no if yes , who ? is anyone else responsible for updating your address book ? no if yes , who ? do you have access to a shared calendar ? no if yes , which shared calendar ? do you have any distribution groups that messaging maintains for you ( for mass mailings ) ? no if yes , please list here : please list all notes databases applications that you currently use : in our efforts to plan the exact date / time of your migration , we also will need to know : what are your normal work hours ? from : 7 : 30 to : 6 : 30 will you be out of the office in the near future for vacation , leave , etc ? no if so , when ? from ( mm / dd / yy ) : to ( mm / dd / yy ) :",0 +"Subject: option hedging for ees eugene , bob and i had a discussion about your question you raised yesterday . for an option writer , he has the obligation to deliver , so he hedges it with the underlying by adjesting delta positions . the hedging cost , theoretically , should be equal to the fair value of the option premium . on the other hand , for the option holder , he has no obligation , by delta heging , he would pay double for the option , with no upside . so he should not hedge it at all . if the option holder wants to protect the time value of the option , he should sell the option to the market or some equivalent options to create a theta - neutral portfolio . this may require trading in both the orginal and the equivalent option underlyings . our question to you , if the call options you mentioned are embedded in the ees contracts , say fixed price sale contracts , what makes it possible to just separate those options and sell them to the market to retain the full values of the options ? we conjecture that these options are meant to hedge the original contract . by selling those options you eliminate the upside of the original contract . give one of us a call if you want to discuss this further . zimin",0 +"Subject: interview schedule for seksan kiatsupaibul attached please find the interview packet for the above - referenced person . the interview will happen friday , july 7 , 2000 . print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . shawn grady 59385",0 +"Subject: re : anita dupont resume sheila walton is out of the office this week . i will be the hr representative handling this group in her absence . please send the job description to me , norma villarreal , so that i can begin the process . please call me if you have any questions on this or any other hr related issue . thank you norma villarreal x 31545 vince j kaminski 08 / 07 / 2000 08 : 29 am to : sheila walton / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , norma villarreal / hou / ect @ ect subject : re : anita dupont resume sheila , no , we have to go through the posting phase first . i shall ask shirley to provide the job description . vince from : sheila walton 08 / 04 / 2000 02 : 44 pm to : vince j kaminski / hou / ect @ ect cc : norma villarreal / hou / ect @ ect subject : re : anita dupont resume vince , alice has strong qualities for a sr admin asst . vince , have we posted this position on the job posting board ? if so , great . if not , we need to post this opening to prove that we have given an opportunity to all existing enron employees before we go outside to external candidates . otherwise , existing employees have a valid complaint that we are limiting their advancement within enron but hiring externally . if we have not posted this , i will have the recruiter contact shirley so shirley can give us a job description . then we can post and interview anita simultaneously . please let me know asap if this has been posted . thanks . sheila walton vince j kaminski 08 / 02 / 2000 08 : 48 am to : sheila walton / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : anita dupont resume sheila , i would like to hire anita dupont as a senior admin assistant , reporting to shirley . please , call me about it after you review the resume . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 02 / 2000 08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont @ enron 08 / 02 / 2000 08 : 17 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : anita dupont resume vince : here is the resume you requested . thanks . anita",0 +"Subject: re : a resume - canadian trader john , he is currently a student at carnegie mellon , one - year computational finance program . i got his resume recruiting in the campus . i would recommend him as a potential hire ( my group or trading ) . vince john j lavorato @ enron 12 / 10 / 2000 11 : 40 am to : vince j kaminski / hou / ect @ ect cc : subject : re : a resume - canadian trader vince where did this resume come from and is he still employed by the national bank in monteal .",0 +"Subject: enterprise risk management conference it appears that things are filling up fast . among the open topics listed , "" techniques for the clarification and quantification of operational risk within the energy industry "" and "" var , stress testing , and extreme value theory within an enterprise risk management framework "" seem to be the best . we have liberty to suggest our own topic , maybe along the lines of asset / liability management . do you have a preference ? - kevin k . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 08 / 08 / 2000 04 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" paul bristow "" on 08 / 08 / 2000 10 : 28 : 37 am please respond to "" paul bristow "" to : cc : subject : enterprise risk management conference dear kevin , ? following our telephone conversation , please find attached a summary of topics proposed for inclusion in the forthcoming enterprise risk management conference . last year the event attracted over eighty delegates and more are expected this year . the conference will be held in houston on thursday 16 th and friday 17 th november , with a pre - conference seminar on the 15 th . as we discussed , i would be delighted to invite enron to lead a session . i would be happy to consider any of the available sessions or if you have a session that you feel is currently missing from the programme , do not hesitate to make a suggestion . ? i have attached a file that gives an indication of the topics that have been identified so far . although i have bullet points for the sessions i would first like to identify interested parties and then work with them to develop a session that reflects their particular expertise and experience . i also think that by continuously developing the points we can make greater allowances for continuity between each participant . ? i look forward to speaking with you soon . ? yours sincerely , ? paul bristow , senior course and conference producer , eprm + 44 ( 0 ) 20 7484 9883 - maildoc . doc",0 +"Subject: fw : luncheon meeting : asap dear mr . kaminski : just to bring you up to date . i am no longer with american general . i shall , therefore , appreciate an opportunity to meet with you for lunch at the earliest possible time . i can be reached at 713 - 722 - 7199 . thank you . maruti more 713 - 722 - 7199 - - - - - original message - - - - - from : more to : vince j kaminski date : friday , december 17 , 1999 8 : 55 pm subject : re : luncheon meeting thank you for your response . i was very happy to hear from you . i am also taking next week off and will be back to work on december 27 th . please do call me when you get back . would very much appreciate the opportunity to have a quick lunch with you , if possible . hope everything is going well . have wonderful christmas holidays . regards maruti more 713 - 831 - 6209 ( o ) - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski date : friday , december 17 , 1999 3 : 35 pm subject : re : luncheon meeting hello , i shall be taking a few days off around xmas . i shall call you at the end of december when i get back to the office . with best holiday wishes , vince "" more "" on 12 / 01 / 99 09 : 28 : 09 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : luncheon meeting dear mr . kaminski : how are you doing ? i want to find out if we can meet again for a quick lunch . you might know that in maharashtra , india there is now a new chief minister ( ceo of the state government ) . i am proud to say that he and i are from the same town , latur . i would really enjoy talking with you again , at your convenience . i will call you tomorrow to follow up . thank you . sincerely , maruti more - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski ; vkaminski @ aol . com date : thursday , july 01 , 1999 6 : 16 am subject : re : luncheon meeting dear mr . more , let ' s meet at 11 : 45 in the lobby of the enron building . we can walk to one of the restaurants in the downtown area . vince kaminski ( embedded enron capital & trade resources corp . image moved to file : from : "" more "" picl 7002 . pcx ) 06 / 30 / 99 10 : 38 pm to : vince j kaminski / hou / ect cc : subject : luncheon meeting dear mr . kaminski : i am looking forward to our luncheon meeting on this friday , july 2 , 1999 at 11 : 30 am . please let me know where we should meet . thank you for taking time out from your busy schedule . sincerely , maruti more tel . : 713 - 831 - 6209 - attl . htm",0 +"Subject: amr research preview information vince , feel free to use this username and password to surf around the amrresearch site ken - - - - - - - - - - - - - - - - - - - - - - forwarded by kenneth parkhill / na / enron on 04 / 12 / 2001 01 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - webmaster @ www . amrresearch . com ( craig mackay ) on 04 / 11 / 2001 05 : 34 : 08 pm to : kenneth parkhill cc : subject : amr research preview information the following is your user name and password for an amr research preview account . username : parkhilll 51647 password : remain the preview section will give you access to the executive summaries section and the presentation library . if you have any questions about amr research , please email info @ amrresearch . com or call ( 617 ) 542 - 6600 . to access the preview section , please go to the following url . http : / / www . amrresearch . com / members",0 +"Subject: vol skew no - arbitrage constraints the attached note lists conditions that can be used to verify that a given vol skew curve does not generate arbitrage opportunities in a strip of option prices . if you have questions or want to discuss implementation , please give me a call . bob lee x 35163",0 +"Subject: re : research resumes molly , below are the resumes sent to us by focus . vince suggested that we interview one person plus sriram , who already lives in houston . karim looks like the most qualified , but my fear is that we may not be able to afford him . i am assuming that vince will want to hire at most at the manager level . can you first check and see if karim would consider coming at a manager level salary before we spend time talking with him . if he is too senior , then we should talk to samir , who looks like a more junior level person . thanks , stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 05 / 2001 02 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 04 / 05 / 2001 08 : 42 am to : vince j kaminski / hou / ect @ ect cc : subject : re : resumes vince , see below for my picks based on the resumes . the others marked as "" no "" might be ok as well , but did not seem to have as much slant towards finance . - - stinson vince j kaminski 04 / 04 / 2001 03 : 45 pm to : stinson gibner / hou / ect @ ect cc : subject : resumes - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 04 / 2001 03 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - to : cc : subject : resumes here are some people you might want to speak with . ? siriam lives in houston . ? please see the attached resumes of the following : ? karim ashktorab yes ( might be expensive ? ) stephen liu no farshad ravanshad no matthew rusk no samir ranjan yes cedric chow no sriram vasudevan maybe ( already in houston ) ? regards , ? scott gerson focus capital markets 71 vanderbilt avenue suite 200 new york , ny 10017 ( 212 ) 986 - 3344 tele ( 212 ) 986 - 3370 fax - focus sriram vasudevan . doc - focus cedric chow . doc - focus samir ranjan . doc - focus matthew rusk . doc - focus farshad ravanshad . doc - focus stephen liu . doc - focus karim ashktorab . doc",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 carson , margaret m james d steffes may 26 , 2000 carson , richard l richard b buy may 22 , 2000 crenshaw , shirley j wincenty j . kaminski may 24 , 2000 ganjoo , shalesh peyton s gibner jun 15 , 2000 ghosh , soma timothy davies may 31 , 2000 kaminski , wincenty j . david w delainey jun 05 , 2000 overdyke , jere c . david w delainey jun 12 , 2000 peyton , john a randal t maffett jun 05 , 2000 rotenberg , douglas m . david l . haug jun 15 , 2000",0 +"Subject: please approve : application request ( wsmh - 4 esnva ) security resource request wsmh - 4 esnva has been submitted for your approval . to view the request , double click your left mouse button on the notes document link below . quick steps to approve or reject request form : 1 . click the button to view details of the requests . 2 . click the button to approve or reject the requests . 3 . to edit the request form , double - click anywhere on the form . see the online help for instructions or call ect security .",0 +"Subject: raptor position reports for 12 / 28 / 00 attached are the latest available daily position report files for the 4 raptor vehicles which include spreadsheets detailing what is hedged within each vehicle . one thing that i forgot to mention in our meeting yesterday is that there is considerable indecision as to whether or not raptor 4 will be included in the cross - guarantees , so we will need to have a value with or without raptor 4 . i will send a follow - up e - mail with the latest drafts available for the cross guarantees . let me know as questions arise . thanks again . ron - - - - - forwarded by ron baker / corp / enron on 01 / 03 / 2001 09 : 25 am - - - - - gordon mckillop 12 / 29 / 2000 12 : 26 pm to : ben f glisan / hou / ect @ ect , andrew s fastow / hou / ect @ ect , richard causey / corp / enron @ enron , rick buy / hou / ect @ ect , greg whalley / hou / ect @ ect cc : barry schnapper / corp / enron @ enron , andrea v reed / hou / ect @ ect , ryan siurek / corp / enron @ enron , kevin d jordan / corp / enron @ enron , michael kopper / hou / ect @ ect , chris loehr / hou / ect @ ect , anne yaeger / hou / ect @ ect , rodney faldyn / corp / enron @ enron , ron baker / corp / enron @ enron , amy . flores @ ljminvestments . com , l ' sheryl hudson / hou / ect @ ect , wes colwell / hou / ect @ ect , kevin howard / enron communications @ enron communications , david port / market risk / corp / enron @ enron , jordan mintz / hou / ect @ ect , maria lebeau / hou / ect @ ect , michael s galvan / hou / ect @ ect , david maxwell / hou / ect @ ect , susie ayala / hou / ect @ ect , hope vargas / hou / ect @ ect , bob butts / gpgfin / enron @ enron subject : raptor position reports for 12 / 28 / 00",0 +"Subject: request submitted : access request for pinnamaneni . krishnarao @ enron . com you have received this email because the requester specified you as their vp . please click approval to review and act upon this request . request id : 000000000010552 request create date : 12 / 18 / 00 8 : 53 : 23 am requested for : pinnamaneni . krishnarao @ enron . com resource name : vpn resource type : applications",0 +"Subject: re : petrochemical forward curves vince , you will find the most recent email exchanges below . per our discussion , i did sit down with christian last week to talk about a fundamental / econometric approach to forward curve construction as was done for the agricultural efforts . let me know how you , vasant , and stinson would like to proceed on this matter . nelson - - - - - - - - - - - - - - - - - - - - - - forwarded by nelson neale / na / enron on 04 / 18 / 2001 08 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : christian lebroc / enron @ enronxgate on 04 / 17 / 2001 04 : 41 pm to : nelson neale / na / enron @ enron cc : subject : re : petrochemical forward curves please review the "" curve model 2 k "" file which was built by research a few years back for plastics trading group . i would like to work with you or someone in research as far as building the same model for all petrochemical products . the "" benz _ curve "" file is what i have done so far but it is very primitive compare to the other model . let me know what i need to do going forward . christian - - - - - original message - - - - - from : neale , nelson sent : friday , april 13 , 2001 11 : 28 am to : lebroc , christian subject : re : petrochemical forward curves what kind of crude price volatility are you proposing to use ( nymex ) ? as i recall , we did find some relationship between the time series price variable and one of the s & d terms that you had placed in the excel worksheet . there was no relationship with lagged price either ? if you don ' t mind , please forward the data to me so that i can take a quick look at it . nelson from : christian lebroc / enron @ enronxgate on 04 / 12 / 2001 05 : 44 pm to : nelson neale / na / enron @ enron cc : subject : re : petrochemical forward curves for gbm , i was thinking about using crude volatility . unfortunately , supply and demand is not a good indicator of predicting prices because of the economic complexity of processing aromatics . statistically , there is no relationship between utilization , supply , demand and price . inserting time lag does not make the number any better either . christian - - - - - original message - - - - - from : neale , nelson sent : thursday , april 12 , 2001 5 : 23 pm to : lebroc , christian subject : re : petrochemical forward curves hi christian , both mean reversion and gbm models assume that all information related to a future price may be found in the historical price . the approach employed in the ag curves suggests that there may be some fundamental information related to supply and demand that impacts also drives future price . a portion of the mean reversion process is actually captured with inclusion of lagged prices ( autoregressive component ) . a gbm process requires some information on price volatility . since there is presumably no forward / future curve for the commodity of interest , it is difficult to come up with historical volatility values . hope it helps . nelson from : christian lebroc / enron @ enronxgate on 04 / 12 / 2001 11 : 46 am to : nelson neale / na / enron @ enron cc : subject : petrochemical forward curves neslon , i would like to insert "" mean reversion "" and "" geometric brownian motion "" in the linear forward curve equation you put together for me earlier this week . please inform me on how to assemble the above request . thanks christian - - - - - original message - - - - - from : lebroc , christian sent : tuesday , april 10 , 2001 2 : 29 pm to : neale , nelson subject : petchem data > >",0 +"Subject: ed krapels louise , some time ago i sent you a message regarding ed krapels . he is writing a book on energy commodity markets and would like to learn more about eol . can you give him a call and chat with him for 10 minutes . he is a good friend of enron and it would be free ad for us . vince",0 +"Subject: carnegie mellon candidates kristin : we are sending the interview request form information to molly magee to bring the following two candidates in for interviews : frank ( feng ) qian punit rawal we have no further interest in the following two candidates . do you handle contacting them ? heap - ho tan kyubaek heo thanks ! shirley",0 +"Subject: summer internship at enron jana : vince kaminski is interested in taking kyriakos frantzeskakis into his group as a summer associate . once you have finalized your staffing , please confirm with vince kaminski the placement status . thanks , celeste - - - - - - - - - - - - - - - - - - - - - - forwarded by celeste roberts / hou / ect on 03 / 12 / 2001 11 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 12 / 2001 11 : 08 am to : celeste roberts / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kevin kindall / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , kristin gandy / na / enron @ enron subject : summer internship at enron celeste , we shall be happy to take him as an intern ( summer asociate ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 12 / 2001 11 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin kindall @ enron 03 / 12 / 2001 09 : 27 am to : vince j kaminski / hou / ect @ ect cc : vasant shanbhogue / hou / ect @ ect subject : summer internship at enron - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 03 / 12 / 2001 09 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kf 2 @ andrew . cmu . edu on 03 / 12 / 2001 09 : 15 : 09 am please respond to to : cc : subject : summer internship at enron dear kevin , following my interviews at gsia on february 15 / 16 , i will join enron as a summer associate this may . i would be very excited to join the research team , if possible . thank you in advance , kyriakos frantzeskakis",0 +"Subject: interview dear mr . kaminski : i am very sorry to tell you that i have to cancel my interview with you scheduled on feb 9 th . i had a job offer from citadel investment at chicago with a deadline on feb 5 th . i have been trying to get an extension for the past week and unfortunately it failed today . with this very short time frame , it is impossible for me and enron ' s interviewing process to meet the feb 5 th deadline . how unwillingly , i would not be able to visit enron for after taking citadel ' s offer . i hope you will find another candidate from our class . there are some people still available . i will be happy to help you get in touch with those interested . please keep in touch and i wish you well in your business ! frank qian fqian @ andrew . cmu . edu",0 +"Subject: ees implementation message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : valued customer : ees production cut - over the production ees application will be made available to the registered users on monday april 17 , 2000 for day - ahead scheduling . the production system will be preloaded with all schedules submitted through the current scheduling process to that point ( pjm identifiers for these pre - loaded schedules will be provided through the usual scheduling practices ) . hourly schedules may be entered beginning april 18 , 2000 . the sandbox will be made unavailable at the time of production implementation . prior to april 17 , the https : / / eestest . pjm . com url will be reserved for the sandbox . beginning april 17 , the https : / / ees . pjm . com url will point to the production ees application . registration users with accounts on the sandbox will automatically have accounts on the production system . if you have not registered , please complete the authorization and registration forms located at http : / / www . pjm . com / ees / ees _ index . html . the contact designated on the ees authorization form will be faxed a list of user id ' s and passwords upon completion of the registration process . ees support pjm is enthusiastic about providing the responsive support you and your technical staff require . please contact our customer hotlines with your functional and technical inquiries . * functional support : ( 610 ) 666 - 8980 * technical support : ( 610 ) 666 - 8886 * email : eeshelp @ pjm . com questions may be directed to pjm customer service at ( 610 ) 666 - 8980 . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: re : confirmation of meeting i would very much like to meet vince , unfortunately i am in back to back meetings all day today . maybe we could rearrange next time vince is in london or i am in houston . regards paul to : paul e . day cc : date : 29 / 09 / 2000 17 : 52 from : shirley . crenshaw @ enron . com subject : re : confirmation of meeting paul : fyi . regards , shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 29 / 2000 11 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 09 / 29 / 2000 11 : 51 am to : wendy . dunford @ arthurandersen . com @ enron cc : subject : re : confirmation of meeting ( document link : shirley crenshaw ) wendy : i am so sorry for the late notice , but vince will be in london for 1 day only , monday , october 2 nd . he has had some time freed up and if paul and julian could meet with him , they can call him at the grosvenor house , 870 - 400 - 8500 . his morning is already full , but lunch , dinner or afternoon would work . regards , shirley wendy . dunford @ arthurandersen . com on 09 / 18 / 2000 10 : 14 : 51 am to : shirley . crenshaw @ enron . com cc : subject : re : confirmation of meeting hi shirley thanks for getting back to me . regards wendy * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: re : rtp conference hill , yes , i think it can be done . i am in london right now and i shall come back next week thursday . please , give me call about it . vince vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com hill huntington on 03 / 22 / 2001 04 : 47 : 33 pm to : vince kaminsky cc : subject : rtp conference vince , sounds like there are several enron people very interested in our seminar . many thanks for passing the idea around . do you think that these groups might provide some sponsorship ? i didn ' t know whether you have already asked them and they are thinking about it or whether i need to approach them directly . i would appreciate any suggestions you have . regards , hill hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: re : cairn gas purchase bid fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 08 / 17 / 2000 09 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - douglas s parsons @ enron _ development 08 / 15 / 2000 09 : 30 am to : doug leach / hou / ect @ ect cc : marc de la roche / hou / ect @ ect subject : re : cairn gas purchase bid i can appreciate and share your objective . earlier today i sent a separate note to vince forwarding your concerns and asking again for his assistance . i ' ll start there and if needed i ' ll contact michael popkin ' s structuring group . however , before getting too many people involved i want to see what feedback we get from cairn after they ' ve discussed the offers internally this week . doug leach @ ect 08 / 15 / 2000 08 : 37 am to : douglas s parsons / enron _ development @ enron _ development cc : marc de la roche / hou / ect @ ect subject : re : cairn gas purchase bid i gave you several clear alternatives such as contacting vince ' s structuring group , michael popkin ' s southern cone structuring group and a long discussion regarding the pricing and suggested "" collar . "" i also asked if you had spoken to your customer about what they were willing to pay , but that was a non starter . trust me , i have seen almost every bad deal enron has entered into or attempted to enter into and i am trying to get metgas to objectively relook at their offer to cairn become it becomes another bad deal . douglas s parsons @ enron _ development 08 / 15 / 2000 08 : 31 am to : doug leach / hou / ect @ ect cc : subject : re : cairn gas purchase bid that ' s fine , but don ' t you think i would also prefer not receiving criticism that assumes i didn ' t do something and provides no clear alternative . doug leach @ ect 08 / 15 / 2000 07 : 52 am to : douglas s parsons / enron _ development @ enron _ development cc : marc de la roche / hou / ect @ ect , bobby subject : re : cairn gas purchase bid you spoke to me once and i gave you my opinions which were contrary to your resultant offer to cairn . currently , i have better things to do with my time . douglas s parsons @ enron _ development 08 / 15 / 2000 12 : 10 am to : doug leach / hou / ect @ ect cc : marc de la roche / hou / ect @ ect , bobby subject : re : cairn gas purchase bid i talked to vince after we hung up and his only suggestion was to call sandeep kohli . i spoke with marc and yourself four times on this matter over a 3 day period and given the timing , i put forth a non - binding offer , after discussing it further with bobby , based on the information i had that appears to position us close to our competitors offers . we haven ' t committed ourselves and should we be selected for negotiations there are numerous variables to affect the outcome . if you ' ve got any suggestions for a better deal , please advise . doug leach @ ect 08 / 14 / 2000 07 : 45 am to : douglas s parsons / enron _ development @ enron _ development cc : marc de la roche / hou / ect @ ect , bobby subject : re : cairn gas purchase bid i strongly disagree with the pricing and structure of your non - binding offer to cairn . this reminds me of the debacle in brazil . you should have contacted vince kaminski ' s research group as we talked about before an offer was made . this is a bad deal . douglas s parsons @ enron _ development 08 / 12 / 2000 01 : 51 am to : doug leach @ ect , marc de la roche @ ect cc : subject : cairn gas purchase bid doug & marc , fyi , please let me know if you think we ' re totally off base . i appreciate your help . regards , doug - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on 08 / 12 / 2000 01 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - douglas s parsons 08 / 11 / 2000 06 : 24 am to : bobby farris / enron _ development @ enron _ development cc : f b virani / enron _ development @ enron _ development , ujjwal dey / enron _ development @ enron _ development , nilesh subject : cairn gas purchase bid bobby , after meeting with cairn today in delhi , my perception is that our offer was received well . they were more open and relaxed then they were on wed . morning and made several encouraging comments about our price range , ( once we talked through the price movements ) , and the seriousness of our gas related activities on the west coast of india , in light of the ioc agreement . i think the overall package is attractive to them and no serious objections were raised . we did talk to some extent about the guarantees , but we didn ' t get too far and they ' re willing to accept at this point that what ' s acceptable to the lng suppliers , should be suitable for their needs . however , they would like to understand the corporate structure and assets of enron energy marketing a little better and i told them i would get back to them on that point . david and ajay were up in hazira yesterday looking at some property for their gas treatment facility , which apparently is across the road from pipeline access . while there they went and looked at shell ' s proposed lng site after walking the last 1 km , inaccessible to their 4 wd vehicle and not surprisingly found a beach . in summary , here is what we offered on a non - binding basis : six year production plateau 85 % top $ 3 . 67 / mmbtu net , at a base of $ 18 / bbl brent , with point of sale at the tail - end of the gas processing plant floor & cap of $ 15 . 50 - $ 27 . 00 / bbl price movement : + / - $ 1 . 00 / bbl from the $ 18 / bbl base price ( on a 3 mo . rolling average ) equals + / - $ 0 . 145 / mmbtu fixed on a quarterly basis guarantees : same protection we ' re providing the lng suppliers under the trust retention account i appreciate everyone ' s help in submitting this offer . thanks , doug",0 +"Subject: re : monday presentation i have made one correction to guadalupe ' s degree - - - it is actually ma , law and diplomacy rather than ms , finance . here is the corrected version .",0 +"Subject: oracle nt client software upgrade - manual upgrade steps this weekend , the enron global information technologies department will be distributing a new version of the oracle 8 i client . due to the mobile environment of our user base , not all machines will receive the automatic update . if you are a user of an oracle based application and your machine is not available to the network this weekend , you can manually upgrade your machine via the following steps : 1 ) click on start - programs - utilities 2 ) then click on "" install oracle 8 i client "" . if you are a user of microsoft excel spreadsheets or microsoft access databases that retrieve information from our oracle databases , you can manually convert your oracle odbc connections to the proper drivers via the following steps : 1 ) click on start - programs - utilities 2 ) then click on "" update odbc data source names to oracle 8 i "" . if you do not see these icons , there is another icon under start - programs - utilities called "" update start menu "" that will re - populate your start menu . thank you for your co - operation - scott williamson director , database infrastructure enron global technology",0 +"Subject: re : updated message - preliminary rankings norma , i could not open the message . i get the message : encrypted , not intended for you . vince norma villarreal 11 / 29 / 2000 06 : 06 pm to : vince j kaminski / hou / ect @ ect cc : subject : updated message - preliminary rankings",0 +"Subject: re : sevil yaman great ! let me know how she performs . at 02 : 54 am 2 / 23 / 2000 - 0600 , you wrote : > > > hi michelle , > > thanks for your input . we are moving ahead to offer sevil a summer > internship with us . > > vince > > > > > michelle michot foss on 02 / 21 / 2000 05 : 29 : 36 pm > > to : vince j kaminski / hou / ect @ ect > cc : > subject : sevil yaman > > > > hi - - one of the ph . d . - econ students over here , sevil yaman , has been > talking with you . she ' s interested in a summer internship that will help > her "" ground "" her dissertation . with our help , sevil has become totally > corrupted ( ! ) . i have successfully impacted her view of the world re . > academic economics v . industry . she would like her diss to be as relevant > as possible , and with that in mind already moved from a pure electricity > transmission pricing topic to focusing more on congestion management and > trying to address practical market problems . she has in mind to work in > industry when her degree is finished . i recommend her to you highly . she > is extremely bright and competent , needs some guidance and input to get > going in the right direction to finish up . talk soon - - > > michelle > * * * * * * * * * * > "" this e - mail contains information which is privileged , confidential and > protected > from disclosure . please do not disclose the contents or take copies without > contacting us first . thank you . "" > > michelle michot foss , ph . d . > director , energy institute > college of business administration > university of houston > houston , tx 77204 - 6283 > tel : 713 - 743 - 4634 > fax : 713 - 743 - 4881 > please note our new email addresses ! > e - mail : mmfoss @ uh . edu > web : http : / / www . uh . edu / energyinstitute / > > > > > * * * * * * * * * * "" this e - mail contains information which is privileged , confidential and protected from disclosure . please do not disclose the contents or take copies without contacting us first . thank you . "" michelle michot foss , ph . d . director , energy institute college of business administration university of houston houston , tx 77204 - 6283 tel : 713 - 743 - 4634 fax : 713 - 743 - 4881 please note our new email addresses ! e - mail : mmfoss @ uh . edu web : http : / / www . uh . edu / energyinstitute /",0 +"Subject: information you requested from economic capital iconference thank you for requesting information about our products during the registration for the recent erisk iconference on economic capital . please click on the link below to read an overview of our offerings in the areas of analytics , consulting , and risk transfer : note : if you can ' t open this pdf , you need to upgrade to the new version of adobe acrobat reader at additional materials : read a case study about implementation of our erisk analytics at cobank : read a case study about implementation of p & c raroc at the st . paul companies : if you would like to speak directly with an erisk representative , please contact angela isaac at aisaac @ erisk . com regarding consulting and risk transfer projects and murray nash at mnash @ erisk . com to learn more about our erisk analytics product . regards , erisk client services this is a one - time mailing only . to subscribe to our regular email newsletter , please register at if you received this mailing in error , please email info @ erisk . com with "" unsubscribe "" in the subject line .",0 +"Subject: summer associate mentor the summer associate program is a critical component of our recruiting efforts . we appreciate you acting as a mentor for the following summer associate . vince , a reception to introduce you to the summer associates is scheduled for june 22 nd . the reception will be held from 6 : 00 pm until 7 : 30 pm at sierra ' s grill located at 4704 montrose ( 713 - 942 - 7757 ) . we have also provided the summer associate with your name and phone number ; however , we encourage you to contact guiseppe prior to the reception if possible . please rsvp your attendance to cheryl kuehl at x 39804 or by email . thank you charlene jackson",0 +"Subject: thank you , i am on board vince : i have just finished talking with rick . he will have the hr person to workout the details and get me on board this week . thank you so much for your help . i would like to let you know that your help meant a great deal for me , i am not taking it lightly . i will do my best to get the work down and live up to yours and rick ' s expectations . thank you again . ding . 6 - 7072",0 +"Subject: ees t & d interest rate hedge vince - osman asked me to forward a copy of the memo to you . we hope to speak to you tomorrow and bring you the original for your approval . regards , dave foti",0 +"Subject: f / up vince - i got your message ( i was up on the roof of the building helping to fix the weather satellite dish - what a gorgeous view of houston ! ) . i appreciate your words . everything remains fine , vince . you are my "" father "" here at enron , and i admire and respect you greatly . i think i know the kind of person you are , in terms of your integrity , and i admire the high standards you set for all of us in your extended "" group . "" i want to let you know i am not the only one in the group who doesn ' t appreciate the way maureen disrespects you . you remain the key external factor in their success - it is not simply their own abilities that matter to their futures but your own - vince ' s - success with upper management that matters . we respect you , and we don ' t like it when you are disrespected . maureen didn ' t disrespect me today , vince , she disrespected you . it ' s time i told you something . last april , maureen , highly intoxicated following a work - related function at ninfa ' s , made an unsolicited predatory sexual advance on me at my desk on the 19 th floor . i was shocked and disgusted , but i didn ' t say one word about this , vince , because i played it out and didn ' t want to put you into the position of having a raving maureen in your midst as you perhaps had to fire her and then endure a litany of gender - bias crap lawsuits . i "" took one for the team , "" vince . i can ' rt say i would do it again - maureen is brazen to berate me after what she did , in public no less . i appreciate your bringing me into enron . i ' ve found a respectful and , indeed , a loving work environment . i remain willing to do whatever i can to help the group . clayton",0 +"Subject: papers vince , did you receive this paper ? jason - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 05 / 01 / 2001 03 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" stuart russell hamel "" on 04 / 30 / 2001 04 : 52 : 12 pm please respond to to : cc : subject : dr . kaminski : please see our attached paper . thank you , jed howard , brian nelson , and stuart hamel ( 713 ) 218 - 8903 - winmail . dat",0 +"Subject: entouch newsletter business highlights weather group on wednesday , december 6 th , the weather channel aired an episode of their show "" atmospheres , "" which included a fifteen minute segment focusing on enron ' s weather risk management business . mark tawney , steven vu , gary taylor , and steve bennett were featured . the weather channel has aired the episode periodically since then . the parts that make it through the enron cutting room floor will be coming soon to an elevator near you ! if you would like to view a copy of the episode in its entirety , please contact yvette simpson at ext . 3 - 9595 . the weather risk management group completed the first ever power demand transaction this week . the transaction was a swap based on the pjm demand index . power demand contracts use average peak power demand as an index and allow power market participants ( generators , btu distributors , marketers , etc . . . ) to mitigate volumetric exposures . weekly swaps are available on enrononline and the desk has placed option contracts on this index in the broker market . inquiries regarding this product should be directed to claudio ribeiro , product manager ext . 3 - 7313 , gary taylor ext . 3 - 1511 , or valter stoiani ext . 3 - 6906 . west power trading it  , s been a wild and crazy holiday season in the west . electricity prices have remained extremely bullish throughout the entire wscc , due in large part to below - normal temperatures ,  & less than stellar  8 river flows in the northwest and northern california , tremendously volatile natural gas prices , and a number of generating plants down for both planned and unplanned maintenance . recently , the federal regulatory energy commission ( ferc ) has stepped in to implement several orders in an effort to try to correct this  some have the feeling that the best is yet to come . happy holidays seasons greetings from ena pr . the entouch newsletter will be on holiday break next week . if you have information for future issues of entouch , please send it to michelle vitrella . we hope you have a wonderful and safe holiday . see you next year ! welcome new hires ena / eim / egm ena  ) kimberly hardy , adam johnson , daniel lisk , william fleenor , stacey wales , jason fischer , aparna rajaram legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: parking pass for van ngo good morning louis : please cancel the "" secom "" parking badge that was issued to van ngo for parking in the 777 clay garage while she was working part time with the research group during the holidays . the number on the card is 4280 . i will return the badge to you this morning . the co . # is 0011 and the rc # is 100038 . thanks louis and have a great day ! shirley 3 - 5290",0 +"Subject: greg , fyi - jeff asked me to forward this to you for your review . srs - - - - - - - - - - - - - - - - - - - - - - forwarded by sherri sera / corp / enron on 05 / 15 / 2000 04 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" joseph a . cherian "" on 05 / 09 / 2000 08 : 10 : 19 am to : "" jeffrey k . skilling "" cc : vince j kaminski , "" robert a . jarrow "" , "" robert c . merton "" subject : mr . jeffrey k . skilling president and c . o . o . , enron corp . dear jeff , this email is from robert jarrow ( cornell ) and myself ( joe cherian ) . i hope you recall meeting / lunching with bob jarrow & me when you keynoted at my 1999 math finance day conference here at boston university . i wanted to introduce you to skg inc . , a startup that is focused on providing an innovative service to the electronic trading community . messers kuppuswamy seshadhri , sriketan mahanti , and gaurav mallik are the principal founders of skg , inc . bob jarrow and i represent the company ' s scientific advisory board . nobel laureate robert merton , who also sat on our table during your keynote address , very kindly serves as an ad hoc senior advisor to skg and has been an invaluable resource to skg , including putting us in touch with jp morgan . coincidentally , the c . o . o . of jp morgan capital corp . ed colloton , in an april 7 meeting told us he would introduce us to the c . f . o . of enron online , whom he knows and at which he felt skg would have huge value - adding opportunities . however , given ed ' s busy travel schedule , i don ' t believe he has been able to do that yet . hence this joint decision by bob jarrow and myself to send you this email . skg ' s solution is to provide dynamic pricing and value maximization in electronic trading of securities / commodities on ecns and atss ( alternative trading systems ) . it achieves this through a process of "" strategic negotiation "" using automated agents ( intelligent software manifestations ) . our system should not be viewed as an ecn , but rather as an enhancement to any extant trading system , be it an ecn , ats , clob , nasdaq , etc . our initial system design has been conducted for financial instruments trading , e . g . bonds / equities , but our strategy is as much applicable to energy / power instruments trading , high speed communications bandwidth trading , and other web - based commodities trading , which we believe is of interest to enron online . skg is superior to existing solutions in the following way : 1 ) it considers multiple attributes , e . g . , price , time , volatility , bandwidth . ( in high speed communication bandwidth scenarios , for example , the dimensions could be price , bandwidth size , time for which bandwidth available , continguity of the allocation , and such . ) 2 ) it involves dynamic matching as opposed to "" static "" matching . 3 ) it is multi - lateral . 4 ) it adapts itself dynamically to changing market conditions . 5 ) it allows traders to make important trade - offs , as they do in traditional markets . currently , skg is involved in discussions with the heads of trading at fidelity , putnam investments , lehman bros . , kpmg , meridien research , salomon smith barney , jp morgan , state street , banc of america , mckinsey , citizens power , and a host of other folks . we think we have a value - adding service to provide to enron online or any other enron subsidiary that the skg offering matches and that you deem fit . skg ' s founders and i will be very happy to provide you or your representative ( s ) with more details , including a demo of the prototype , in a meeting . we are therefore hopeful that you will be able to arrange something appropriate . thanks very much , jeff ! we look forward to hearing from you . with warm regards , joseph cherian and robert jarrow cc : professor robert c . merton joseph a . cherian associate professor of finance boston university school of management 595 commonwealth avenue , room 522 h boston , ma 02215 tel : 617 - 353 - 2679 ( o ) 617 - 353 - 6667 ( fax )",0 +"Subject: lunch presentation london is very pleased with the speech . thanks it was a great idea to prepare the presentation . both mike hutchinson and mike farmer were very please . thanks , maureen - - - - - - - - - - - - - - - - - - - - - - forwarded by maureen raymond / hou / ect on 11 / 09 / 2000 06 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - maria abello 11 / 09 / 2000 03 : 20 am to : maureen raymond / hou / ect @ ect cc : kirsten ross / lon / ect @ ect subject : lunch presentation hi maureen , thanks very much for presenting yesterday . your presentation created much interest and as always we look forward to your return to london office for another talk . the viewing statistics on iptv were excellent and are as follows : current : 85 cumulative : 110 i have spoken to the audio visual team regarding the possibility of showing your presenting on iptv in houston . it will take a couple of days to encode the videotape , but as soon as this done , i will send a copy to you in houston . they are also looking send the file to the relevant person in houston so they can put in on iptv . if you have any questions at all , please do not hesitate to call me . kind regards and thanks again maria abello european training and development enron europe ltd email : maria . abello @ enron . com + 44 ( 0 ) 207 783 4787",0 +"Subject: full circle : asps the new big blue ? network world fusion focus : mike jude and nancy meachim on application service providers today ' s focus : full circle : asps the new big blue ? 03 / 15 / 00 dear wincenty kaminski , today ' s focus : full circle : asps the new big blue ? by mike jude and nancy meachim the terms  & asp  8 and  & ibm  8 may have more in common than being three - letter acronyms . remember big blue of the early  + 60 s ? the vision , then , was centralized computing . mainframe computers hosted complex , expensive applications that end users accessed via dumb terminals . it infrastructure , especially memory , was expensive and needed to be controlled . with computing resources centralized , ibm reasoned , they were easier to maintain . of course , ibm got it wrong , in that computers became a cheap commodity . and users weren  , t happy simply using dumb terminals . they wanted a bigger share in all that technology offered . so , as memory prices fell , so did the idea of central control . dumb terminals were transformed into intelligent desktop machines that could store applications and data . the glass house populated by white - smocked technicians went out of fashion . looking back on those times , many of us would shake our heads and wonder how ibm could have been so wrong . but maybe big blue wasn  , t so far off . thanks to the advent of application service providers , centralized computing is making a comeback . asps offer centralized application management . the market started as a way to offer the benefits of server advertisement protocol and other complex enterprise resource planning software to small companies or companies with less technical savvy . but asps now host all kinds of applications , including small , multilicensed programs whose images are downloaded to end users on demand . but , the principle remains the same : central control makes support much more efficient and usually cheaper . how about that , ibm ? to be fair , the dynamics of an asp are very different from old centralized mainframe operations . an asp doesn  , t just host and support an application for general distribution over an in - house proprietary network . unlike the ibm vision , an asp is very dependent on network service . it is also very sensitive to service levels . in the  + 60 s , if the mainframe let you down , you ended up twiddling your thumbs for an hour or so , and your only recourse was that white - smocked fellow . nowadays , users start to scream if service is interrupted for even a minute . and woe to the asp who brings down a customer operation . the world of the asp is much more complex than that of the old  + 60 s shop . however , if one could magically transport a computer user from the  + 60 s to the wonderful new 2000 s , would it seem all that different to him ? in an ideal asp world , a la scott mcnealy  , s vision , users would sit down at a semidumb terminal , download the application du jour , and start working . what did the  + 60 s user do ? kind of the same thing ! so you are probably wondering , what is the point ? just this : ibm  , s problem was leaving the customer out of the equation . and look what happened . customers rebelled . they didn  , t buy ibm  , s spiel . it became the  & in  8 thing to hate ibm . why ? because the guys in white smocks couldn  , t spell service and didn  , t care about customers . to be successful , asps need to learn from the past . they need to tattoo service on the forehead of each of their employees . there are too many choices , today , for customers to put up with inferior service . that  , s one big difference from the  + 60 s . customers now can literally choose any service provider in the world . just being big doesn  , t cut it these days . to contact mike jude and nancy meachim : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - senior consultant michael jude and research director nancy meachim are with enterprise management associates in boulder , colo . , ( http : / / www . . com ) , a leading analyst and market research firm focusing exclusively on all aspects of enterprise management . jude has over 18 years of experience in the telecommunications industry , most recently with us west , where he was a manager of public policy . mike can be reached at mailto : jude @ . com . meachim focuses on e - business management . she is currently conducting a research study on asp management that is due to be released in april . nancy ' s email address is mailto : meachim @ . com . for related links - - click here for network world ' s home page : http : / / www . nwfusion . com buzz : application otsourcing , network world fusion , 09 / 27 / 99 asp research page , network world all about asps information center for application service providers , their customers and delivery partners . includes resources , events and news . the asp industry consortium . http : / / www . aspindustry . org / subscription services to subscribe or unsubscribe to any network world e - mail newsletters , go to : to change your email address , go to : subscription questions ? contact customer service by replying to this message . other questions / comments have editorial comments ? write jeff caruso , newsletter editor , at : mailto : jcaruso @ nww . com for advertising information , write jamie kalbach , account executive , at : mailto : jkalbach @ nww . com network world fusion is part of idg . net , the idg online network . it all starts here : http : / / www . idg . com copyright network world , inc . , 2000",0 +"Subject: approval for reviewer crenshaw , shirley j has suggested reviewers and submitted them for your approval . your may review / modify this list of reviewers by logging on to pep at http : / / pep . corp . enron . com and going to supervisor services . please remember , no feedback can be completed on crenshaw , shirley j until you have approved the list .",0 +"Subject: re : var article les , the revised version of the var article looks fine . vince",0 +"Subject: re : american gas association mike , please , draft a message to js , dd and jl outlining the aga benefits and costs . this will be their decision . vince from : mike a roberts 07 / 27 / 2000 09 : 10 am to : vince j kaminski / hou / ect @ ect cc : subject : re : american gas association vince - - - this project is getting lost in the cracks should we meet with dave delainy to get it off high center ? ? - - - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 07 / 27 / 2000 09 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - elizabeth linnell @ ees 07 / 27 / 2000 08 : 41 am to : mike a roberts / hou / ect @ ect cc : richard shapiro / hou / ees @ ees subject : re : american gas association please see the string of messages below . - - - - - - - - - - - - - - - - - - - - - - forwarded by elizabeth linnell / hou / ees on 07 / 27 / 2000 08 : 36 am - - - - - - - - - - - - - - - - - - - - - - - - - - - carolyn cooney @ enron 07 / 27 / 2000 08 : 35 am to : elizabeth linnell / hou / ees @ ees cc : subject : re : american gas association - - - - - - - - - - - - - - - - - - - - - - forwarded by carolyn cooney / corp / enron on 07 / 27 / 2000 09 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : allison navin 07 / 26 / 2000 05 : 23 pm to : cynthia sandherr / corp / enron @ enron cc : carolyn cooney / corp / enron @ enron subject : re : american gas association i actually called stan horton ' s office yesterday to find out if they knew anything about the aga membership , and cindy stark who works with stan informed me that stan cancelled our associate membership with aga effective january , 2000 . i called jay copan with aga back and left him a voicemail with the information . i asked him to call me if he had any questions and i have not heard back from him . i ' ll considered it closed unless i hear back from him . from : cynthia sandherr 07 / 25 / 2000 08 : 08 pm to : carolyn cooney / corp / enron @ enron cc : allison navin / corp / enron @ enron subject : re : american gas association this is a joe hillings issue . carolyn cooney 07 / 25 / 2000 11 : 01 am to : allison navin / corp / enron @ enron cc : cynthia sandherr / corp / enron @ enron subject : re : american gas association i believe that stan horton ' s office handled the dues for aga . from : allison navin 07 / 25 / 2000 10 : 33 am to : cynthia sandherr / corp / enron @ enron cc : carolyn cooney / corp / enron @ enron subject : american gas association jay copan with american gas assn . called . julie caboose suggested that he talk with you about enron ' s aga dues . ( he spoke to rick shapiro who said that he has no knowledge of the dues situation ) . please call at 202 - 824 - 7020 .",0 +"Subject: re : file cabinet for mike roberts kevin g moore 11 / 20 / 2000 12 : 14 pm to : mike a roberts / hou / ect @ ect cc : subject : re : file cabinet for mike roberts this file cabinet will also be located on the 32 nd floor . what i will try and attempt is keeping all weather data nearby therefore , once we move into the new building the information will not be lost . thanks kevin moore shirley crenshaw 11 / 20 / 2000 11 : 24 am to : vince j kaminski / hou / ect @ ect cc : kevin g moore / hou / ect @ ect subject : file cabinet for mike roberts vince : since we have to clear kevin ' s office for the new employee jaesoo lew , can kevin order a tall file cabinet to put the material in ? thanks ! shirley vince j kaminski 11 / 20 / 2000 10 : 55 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : "" skunkworks "" meeting with scott tholan shirley , no , that ' s it . vince shirley crenshaw 11 / 20 / 2000 10 : 06 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : kevin g moore / hou / ect @ ect subject : "" skunkworks "" meeting with scott tholan the "" skunkworks "" meeting with scott tholan scheduled for this wednesday , the 22 nd has been cancelled , per scott tholan . mike / vince : is there anyone else , that needs to be notified ? thanks ! shirley",0 +"Subject: re : the transportion model worked great to hear that . you are right , we should include rho ( done ) and theta ( to do ) for the cost term . zimin enron north america corp . from : kenneth shulklapper 04 / 26 / 2000 12 : 07 pm to : zimin lu / hou / ect @ ect cc : subject : it worked zimin , the model worked well today . hopefully it will continue the same in the future . do we need to make a similar change in the model to "" drift "" to account for changes on the demand charges over time ? ken",0 +"Subject: re : cross - guarantees attached are the latest drafts of 3 of the cross - guarantee agreements . i have the other nine as well , in case you need them . the agreements are basically identical with one exception . the debt to enron in raptor 3 ( approx . $ 259 mm ) is excluded from the guarantees . you may also note that this debt is not represented on the dprs which i sent earlier . this is because the formation of raptor 3 was a failed fas 125 transaction , therefore we did not get sale treatment and can ' t recognize the debt in looking at credit capacity . let me know if you have questions or if you need the other nine guarantees . thanks , ron - - - - - forwarded by ron baker / corp / enron on 01 / 03 / 2001 09 : 40 am - - - - - "" kornreich , craig "" 12 / 18 / 2000 04 : 55 pm to : "" curry , alicia "" , "" mintz , jordan ( enron ) "" , "" ' joel . ephross @ enron . com ' "" cc : "" ' kevin . d . jordan @ enron . com ' "" , "" ' george . mckean @ enron . com ' "" , "" ' ryan . siurek @ enron . com ' "" , "" patel trushar ( enron ) "" , "" tiller , annmarie ( enron ) "" , "" ' brent . vasconcellos @ enron . com ' "" , "" ' ron . baker @ enron . com ' "" , "" ' clint . walden @ enron . com ' "" , "" ' alan . quaintance @ enron . com ' "" , "" spradling , mark "" , "" halbert , elaine "" subject : re : cross - guarantees attached please find drafts of the 3 remaining raptor guaranty agreements ( i . e . , those where pronghorn is the beneficiary ) . regards , craig s . kornreich vinson & elkins l . l . p . 2300 first city tower 1001 fannin street houston , tx 77002 ph ( 713 ) 758 - 4816 fax ( 713 ) 615 - 5862 e - mail : ckornreich @ velaw . com + + + + + + confidentiality notice + + + + + the information in this email may be confidential and / or privileged . this email is intended to be reviewed by only the individual or organization named above . if you are not the intended recipient or an authorized representative of the intended recipient , you are hereby notified that any review , dissemination or copying of this email and its attachments , if any , or the information contained herein is prohibited . if you have received this email in error , please immediately notify the sender by return email and delete this email from your system . thank you - talon ( i ) ifo pronghorn ( iii ) cross - guarantee . doc - timberwolf ( ii ) ifo pronghorn ( iii ) cross - guarantee ( v . 2 ) . doc - bobcat ( iv ) ifo pronghorn ( iii ) cross - guarantee . doc",0 +"Subject: candidate to bring in for interviews with the research group hello toni : the research group would like to bring bruce r . james in for an exploratory interview sometime next week ( june 26 - 30 ) . the individuals who would be interviewing him are : vince kaminski managing director stinson gibner vice president grant masson vice president vasant shanbhogue vice president p . v . krishnarao director zimin lu director tanya tamarchenko manager please ask bruce to give you several dates within next week that would accommodate him and we can coordinate his dates with vince ' s schedule and the schedules of the rest of the group . just call me when you have some dates and times . his resume is attached .",0 +"Subject: correction : risk and purchasing meeting - - august 8 th correction - - - this meeting is being held on august 8 th ( not aug . 9 th ) sorry for the mistake . kristin j . harrelson enron broadband services , inc . procurement , logistics , and contracts 1400 smith , suite eb - 4573 a houston , tx 77002 phone : 713 . 853 . 6814 fax : 713 . 646 . 8582 cell : 713 . 594 . 1385 kristin harrelson 07 / 28 / 00 12 : 54 pm to : denise bradley / enron communications , eric merten / enron communications , jim mandis / enron communications , michael moore / enron communications , paula corey / enron communications , richard weeks / enron communications , tobin carlson / enron communications cc : diane cutsforth / enron communications @ enron communications , shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : risk and purchasing meeting due to time constraints on mr . kaminski ' s schedule during the time that you all are in town from portland , the meeting being held on august 9 , 2000 in eb - 45 cl must be held to one hour ( 2 : 00 - 3 : 00 pm ) please have your questions , comments , and / or materials ready in advance and expect this to be a fast paced meeting . kristin j . harrelson enron broadband services , inc . procurement , logistics , and contracts 1400 smith , suite eb - 4573 a houston , tx 77002 phone : 713 . 853 . 6814 fax : 713 . 646 . 8582 cell : 713 . 594 . 1385 ",0 +"Subject: re : real options paul , krishna and i are thinking that you may be able to book this type of option as a call swaption on power . if you would like to discuss further , let ' s set up a time when we can call you . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 04 / 2001 04 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 02 / 2001 08 : 16 am to : paul smith / enron _ development @ enron _ development cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development subject : re : real options paul , we have done a lot of work in this area . i shall call you later today ( monday my time ) , tuesday morning your time with some recommendations . vince p . s . shirley , please send a real options binder to paul . vince from : paul smith @ enron _ development on 03 / 30 / 2001 08 : 42 am zel 0 to : vince j kaminski @ ect cc : paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development subject : real options vince , the sydney office is currently evaluating a proposal that involves an option to participate in building a wind farm . should this proceed , we would like to mark this option "" to market "" . have the research group completed any work on methods for booking and remarking real options ? alternatively , do you have any suggestions as to the best way to value , and book , real options fairly ? regards paul smith",0 +"Subject: re : visit to houston allan , i shall be glad to meet you . i am planning to attend the energy symposium and we can meet on the location . if business keeps me at the office , feel free to contact me at 713 853 3848 and we can schedule a meeting during the day or in the evening . vince allan . roberts @ uk . arthurandersen . com on 11 / 22 / 2000 06 : 45 : 42 am to : vince . j . kaminski @ enron . com cc : george . e . danner @ us . arthurandersen . com , david . b . duncan @ us . arthurandersen . com subject : visit to houston vince , i hope things are well with you and your family . the reason for contacting you today is to let you know i will be in houston next week between monday and wednesday inclusive . if there is an opportunity to meet up , probably informally , it would be useful to discuss our continuing activities in the areas of strategy , value and , increasingly , real options . if you are attending our energy symposium , or can meet up , please contact me at your convenience . if we do meet , i would also like to introduce you to one of our senior managers from houston : george e . danner . george is a member of our us national strategy team and part of our global network of specialists working on real option pricing . if i do not speak to you before tomorrow - happy thanksgiving . allan * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * the uk firm of arthur andersen is authorised by the institute of chartered accountants in england and wales to carry on investment business . a list of partners is available at 1 surrey street , london , wc 2 r 2 ps ( principal place of business ) . privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: re : got a hold of fiona grant i think it was the copying of your name on my latest email ; - ) ? thanks for your help - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie sent : wednesday , april 11 , 2001 6 : 37 pm subject : re : got a hold of fiona grant julie , you have more luck than myself . i called a few times and left messages on her voice mail . vince "" julie "" on 05 / 11 / 2001 07 : 04 : 40 am please respond to "" julie "" to : ? ? "" vincejkaminski "" cc : subject : ? got a hold of fiona grant vince , just to let you know , i finally got in touch with fiona grant . j",0 +"Subject: re : the national forum on corporate finance andy , thanks . i shall forward your message to prof . ikenberry . vince from : andrew s fastow / enron @ enronxgate on 02 / 22 / 2001 01 : 45 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : the national forum on corporate finance vince : i would be interested in participating . thanks . andy - - - - - original message - - - - - from : kaminski , vince sent : monday , february 05 , 2001 10 : 23 am to : andrew s fastow / hou / ect @ enron cc : kaminski , vince subject : the national forum on corporate finance andy , i am sending you a draft oof a proposal regarding national forum for top finance practitioners and academics . the idea came from a professor at rice university who has already received a commitment from a number of most distinguished cfos . please , read the outline and see if you would be interested in joining this forum . i shall be glad to help to arrange a meeting with prof . ikenberry . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 05 / 2001 10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - david ikenberry on 02 / 02 / 2001 06 : 10 : 02 pm to : "" vkamins @ ennron . com "" cc : subject : it was great talking with you . dave - brochure . doc > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: accomplishments / self evaluation prc is just around the corner and dave has not been provided the accomplishment / self evaluation from some of you . this serves as a reminder to please provide dave with a list of accomplishments / self evaluation for the past six ( 6 ) months as soon as possible . thanks in advance for your prompt attention to this matter . if you have any questions , please feel free to call kay 3 - 0643 . thanks , kay",0 +"Subject: re : summer work . . jinbaek , this is a project related to automated trading platforms for commodities . vince jinbaek kim on 05 / 02 / 2001 05 : 21 : 40 pm to : vince . j . kaminski @ enron . com cc : subject : re : summer work . . dr . kaminski , thanks for your mail . i am sorry that i ' ll not be available earlier , i will talk with my advisor , but probably it will be pretty negative . however , i may be able to start it from junel , depending on what he tells . . we will meet tomorrow afternoon , so i ' ll be able to let you know whether we can start work earlier then . and could you tell me briefly what are those projects you have in mind ? thanks ! jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on wed , 2 may 2001 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > thanks for your message . > > we have a number of additional fascinating projects that you can work > on . as a matter of fact , it would be great to have you here earlier . > > vince > > > > > > "" jinbaek kim "" on 05 / 02 / 2001 05 : 18 : 32 am > > to : , "" raghavan , suresh "" > , "" mesquita , ross "" > > cc : > subject : summer work . . > > > long time no see , > how have you been . . . must be busy and living a challenging life ? > i have been pretty busy too , > to finish a project and write a paper , these days . > > everything looks going ok for my summer internship . > i took necessary steps to work out of campus , and sent > signed contract to molly a week ago . . > > here is what i am expecting to do in the summer . > please let me know if you have any change in mind . > actually , i wonder a little bit if dealbench changed its business model . . . > and maybe you got priority in something different > because it has been quite a while since we talked . > i ' d like to what ' s going on in dealbench team . . . > raghavan and ross , > if we talk over phone it will be great ! > > dr . kaminski , > if you think there is something else interesting to work with during the > summer , > to both you and i , please let me know . > my interest is auction , market design , and simulation . > i am taking a financial engineering class , ( mostly on option pricing ) > and working on electricity generator valuation problem based on > spark spread option . > > all of you , > let ' s keep in touch until we meet in june ! ! > > best regards , > jinbaek > > > tentative work period : 6 / 4 - 8 / 4 > > 1 . tasks : > 1 ) survey on auctions : the state of art > single - item auction , multi - unit auction , sequential auction , > multi - attribute auction , combinatorial auction > > - theoretical > - experimental > - algorithmical > > 2 ) deal bench ' s auction model analysis > > 2 . deliverables : > 1 ) 3 presentations : > - lst presentation : around 6 / 30 : on different auction types and > researches > - 2 nd presentation : around 7 / 15 : the state of art in auction studies > - 3 rd presentation : around 8 / 1 : deal bench ' s model analysis > > 2 ) report : > summary of auction study in laymen ' s term > deal bench ' s model analysis > > > > > > >",0 +"Subject: lunch with it and credit tanya , can you coordinate , in my absence , the lunch with it and credit . we need the body count and reservation at the restaurant for the 14 th . vince",0 +"Subject: re : synfuel option valuation lenny , i believe that you must have done your home work on the the tax credit issue . however , it may make sense to create some kind of reserve in case the tax credit is removed in the future . i am glad that you like the way we treat the tax credit , which is built into the strike price for the digital option . with the tax credit , it is most likely the option will be exercised . paulo issler is the person who worked on this model initially . he will be back this wednesday . we can talk to him about the standard deviation he put into the model . zimin lenny hochschild @ enron 02 / 12 / 2001 08 : 15 am to : zimin lu / hou / ect @ ect cc : subject : re : synfuel option valuation zimin , thanks for your e - mail . sorry for the late reply , i was travelling last week . i ' m under the impression that the with the new administration , there is a greater chance that section 29 will be extended beyond 2007 than repealed . if this happens , we contractually have the right to extend this contract . we have not valued the chance of this happening , so i don ' t think we should value the chance of this not happening . anyways , let me speak to my supervisor on this and revert . in the meantime , i looked over the amendment you made with regard to adding the second strike of the tax credit and think this is now reflective of the deal and am happy with it . i still do not understand a few things re : where did the st . deviations come from . i believe you said that someone who works for you put this together but was away last week . please revert with his / her name so that i can get together and understand this . thanks . lenny zimin lu @ ect 02 / 06 / 2001 01 : 09 pm to : lenny hochschild / na / enron @ enron cc : eric groves / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : synfuel option valuation lenny , i think we had a good discussion about the deal valuation . one thing , i think you are prefectly aware of it , is that the economics of this deal is driven by the tax credit ( $ 25 . 03 ) . the risk on our side is that if the tax credit is removed , aig will not deliver the synfuel and pay $ 4 . 55 to us . vince mentioned that congress might act quickly enough to eliminate the tax benefit . i just want to remind you we should take this risk into consideration . zimin ps : i changed the results in sheetl slightly . the values in column a was shifted by 0 . 5 . use the attached model .",0 +"Subject: re : part - time work zimin , can you call cantekin to discuss the details ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 19 / 2000 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 09 / 18 / 2000 05 : 50 pm to : cc : vince j kaminski / hou / ect @ ect subject : re : part - time work cantekin , i shall call you tomorrow to discuss the details . vince "" cantekin dincerler "" on 09 / 18 / 2000 02 : 59 : 41 pm please respond to to : cc : subject : part - time work hi vince , i promised to get back to you on the part - time work issue . sorry for the delay , i got back to austin only last week . i talked to ehud about this and he is ok with it . just wanted to let you know . best , - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 cell : ( 512 ) 680 - 5355 http : / / uts . cc . utexas . edu / ~ cantekin - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -",0 +"Subject: re : d - g energy karla , we may use 1 workstation in london , 1 in houston . yes , please call ms . geman and ask for more detailed price information . vince from : karla feldman 03 / 20 / 2000 01 : 15 pm to : vince j kaminski / hou / ect @ ect cc : subject : d - g energy hello vince , i didn ' t know if that was your correct e - mail address listed below on receiving from outside the company , so i thought i would forward this with a couple of comments . she states below that she has enclosed a proposal , however , the only pricing i really see is in the software license agreement , article 2 , which states that the license fee is $ 100 , 000 and lists out when you must pay for it . it then states in article 3 that the fees are set forth in appendix 1 , but there are no prices in appendix 1 . i have reviewed the actual terms and conditions to the license and am going to prepare it as we usually do to send to mark holsworth for review . in the meantime , do you want me to go back to ms . geman and ask her for more detailed pricing information or do you have what you need ? also , in appendix 2 , you will need to list the number of sites and workstations you want to have . please let me know . thanks , karla - - - - - - - - - - - - - - - - - - - - - - forwarded by karla feldman / hou / ect on 03 / 20 / 2000 01 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - geman on 03 / 18 / 2000 04 : 39 : 43 am to : karla . feldman @ enron . com cc : vkamins @ enron . com subject : dear ms . feldman , please find enclosed a proposal for the d - g energy software license agreement in which enron may be interested . we deliberately left blank the appendix 2 related to the number of sites and workstations it would cover , in order to let dr . kaminski decide what is best for enron . sincerely - appendices . doc - contract . doc h , lyette geman professor of finance university paris ix dauphine and essec",0 +"Subject: grades pam , the term papers arrived at my internet mailbox . i shall be sending you the information as i make progress reading the papers . first group of students : helen demianenko javier lamas lynn nazareth shauywn smith carlos wheelock sarah woody grade : a please , confirm receipt of this message and please double check that all registered students have been graded ( to make sure no student falls through the cracks ) . vince",0 +"Subject: norberto elizabeth , i want to discuss the issue of the compensation of norberto with my boss . vince",0 +"Subject: the garp convention dear shirley ? further to our telephone conversation earlier today , i am writing concerning the garp 2001 convention , which will be held in new york between 13 th and 14 th february . ? i have set a new deadline for presentations to be sent to me , which is friday 5 th january . i am sure you can appreciate that collating , arranging , organising and printing over 80 presentations is a mammoth logistical task , hence why i require the presentations as soon as possible . ? can i please have an indication of when i am likely to receive vince ' s presentation ? below is the talk he has agreed to give ( he has also agreed to chair the stream on energy & corporate risk on tuesday 13 th february ) : ? measuring energy risk - tackling price volatility , adapting var , scenario modeling and regulatory requirements - mean ( or floor ) reversion [ image ] the challenge of modeling price dynamics in the energy markets - bullitl . jpg",0 +"Subject: re : approval is overdue : access request for stewart . range @ enron . com he told me that he has what he needs . - - stinson vince j kaminski 12 / 14 / 2000 09 : 53 am to : stinson gibner / hou / ect @ ect cc : subject : approval is overdue : access request for stewart . range @ enron . com stinson , did we resolve this case ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 14 / 2000 09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - arsystem @ mailman . enron . com on 12 / 13 / 2000 07 : 00 : 54 pm to : vince . j . kaminski @ enron . com cc : subject : approval is overdue : access request for stewart . range @ enron . com this request has been pending approval for 18 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000007876 approver : stinson . gibner @ enron . com request create date : 11 / 20 / 00 2 : 36 : 29 pm requested for : stewart . range @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: thanks for the interview dear vince , thanks for the interview with enron . i appreciated your time and the conversation that we had together . i really enjoyed my time at enron and believe that it is the type of company that i would like to work for . more specifically i enjoyed meeting the people in the research group and feel that i could make a contribution and fit in well . i look forward to hearing from you or an enron representative . sincerely , lance",0 +"Subject: energy in europe congress 2000 8 th floor , 29 bressenden place london swle 5 dr tel : + 44 171 915 5100 fax : + 44 171 915 5101 conference bookings : + 44 171 915 5103 date : may 15 , 2000 from : tanuja tulsiani phone : 44 171 915 5173 fax : 44 171 915 5101 re : energy in europe congress 2000 , berlin urgent - urgent - urgent - urgent - urgent - urgent - urgent message dear energy in europe speaker as the conference in berlin draw closer , i would like to remind you that we urgently need to receive a copy of your presentation materials by friday , 26 th may 2000 . if you could please send me a hard copy of your talk text or copies of any slides you plan to use , as soon as possible i would be most grateful . i am sure you are aware of the importance of documentation , even if you plan to speak off the cuff please try and supply at least an outline of your proposed speech . if this material doesn ' t reach me by 26 th may i am afraid they will not form part of the delegate packs . you can send a hard copy either by post or fax to the above address and details or you can e - mail it to me at the following address : ttulsi @ icbi . co . uk . if you have already sent copies of your presentation then please ignore this fax . should you have any queries , please do not hesitate to contact me , and i look forward to seeing you in berlin shortly . kind regards tanuja tulsiani tanuja tulsiani logistics manager ! ! ! !",0 +"Subject: reminder stinson ( and vince - - don ' t think your e - mail address is correct ) this is just a reminder about the "" care package "" of enron cases and materials that you guys were going to send to me . stinson , please convey this request on to vince because i think the e - mail address i have is an old one . thanks and have a great weekend . john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: reprint of my article - the gas - fired future : boom or bust ? my article "" the gas - fired future : boom or bust ? last year brought prices not seen for decades . so consumers will buy less gas , just as before , and send forecasts out the window . "" was just published in april 1 , 2001 issue of public utilities fortnightly . if you would like to receive a reprint when i receive them send me your address . best regards , jhherbert",0 +"Subject: petition for summer internship vince : as we discussed earlier , i attached the copy of the petition for my summer internship with enron analyst and associate group . i also have the hard copy of the letter , which i will deliver to you presonally . i am looking forward to , finally , become an official enron employee . thank you very much for your valuable contributions to my experience with the company . jason sokolov",0 +"Subject: alliance info alert dear generation / power marketing executive : this alliance info alert includes three items of interest : 1 ) the weekly alliance express newsletter 2 ) listing of recent filings at ferc 3 ) timeline for ferc action on california markets ( attached ) alliance of energy suppliers express   december 19 , 2000 inside washington   federal affairs * * * ferc de - federalizes california markets , adopts other structural reforms * * * at a special meeting friday afternoon , ferc unanimously approved its eagerly awaited final order reforming the california wholesale markets , adopting the major outlines of its november 1 proposed order and sending back to california the responsibility for addressing state - related matters . at the same time , ferc deferred consideration of retroactive refund issues as well as the imposition of region - wide price caps . ferc reiterated their earlier conclusions that under certain circumstances , california ratepayers were subjected to unjust and unreasonable power rates due to california ' s "" seriously flawed "" market structure and rules in conjunction with tight demand and supply conditions throughout the west . ferc adopted the november proposal to eliminate , effective immediately , the state ' s mandatory requirement that the state ' s investor - owned utilities buy and sell electricity through the px , and allow these utilities to purchase electricity through forward contracts and other alternative mechanisms to manage supply risks . ferc terminated the px ' s rate schedules effective at the close of business on april 30 , 2001 . in effect , as chairman james hoecker stated , the order de - federalizes 60 percent of the california wholesale market established under the state ' s restructuring law , returning ratemaking authority over company - owned generation to the california public utilities commission ( cpuc ) . the agency also modified the effective period of the $ 150 / mwh "" soft cap "" proposal , limiting its application through april 2001 , whereupon a "" comprehensive and systematic monitoring and mitigation program which incorporates appropriate thresholds , screen and mitigation measures "" must be in place . in a related move , ferc ordered a technical conference early next year to develop such a program by march 1 , 2001 , so that these measures can be place by the may 1 , deadline . * * * energy secretary issues order to power generators and marketers to bolster california ' s supplies * * * energy secretary bill richardson has responded to the severely constrained power supply situation in california by issuing an order , pursuant to section 202 ( c ) of the federal power act , to require generators and marketers to make power available to meet the state ' s electricity needs . the emergency directive requires that , if the california independent system operator ( iso ) certifies that there is an inadequate supply of electricity , certain suppliers would be required to make power available to the iso if they have power available in excess of the amount needed to satisfy service to firm customers . those suppliers that have provided power to the california power exchange ( px ) and the iso over the last 30 days that have firm capacity available would be subject to the order . under the order , the iso is required to provide notice to each supplier subject to the order of the amount and type of service requested by 9 : 00 pm est on the day before the requested service . the iso must , to the extent feasible , allocate the requests in proportion to the amount of each supplier ' s available power . the price for the power provided pursuant to the order will be set by an agreement between the iso and the supplier . if no agreement is reached , ferc is to determine the just and reasonable rate at a later date . the order will remain in effect until 3 : 00 am est on december 21 , 2000 unless modified . * * * epa sets plans to regulate plants ' mercury emissions * * * epa administrator carol browner , in a long - awaited announcement , indicated last week that the administration will require reductions of mercury emissions from coal - and oil - fired power plants . the agency stated that it plans to propose new regulations in december 2003 , and hopes to finalize new rules by december 2004 . in the wake of the decision , eei called on epa to make certain that any program to control utilities ' mercury emissions be based on the best scientific information available in order to assure the protection of public health . "" eei urges epa to maintain its commitment to resolving the key scientific and technological issues , "" said paul bailey , eei vice president , environmental affairs . given these uncertainties , eei is disappointed that the regulatory determination includes statements regarding public health threats and hazards that are unsupported by current science , "" said mr . bailey . "" in the meantime , the electric power industry will continue to work with all stakeholders to determine the extent to which additional mercury reductions from power plants may be needed , and how those cuts should be achieved , "" mr . bailey concluded . mergers & acquisitions * * * calpine completes acquisition of emi power assets * * * calpine corporation has announced that it has completed the acquisition of power assets from energy management , inc . ( emi ) . in the deal , calpine acquired the remaining interest in three recently constructed , combined - cycle power generating facilities located in new england , as well as a joint marketing venture between calpine and emi . prior to the transaction , calpine held a 50 percent net interest in the projects . "" we are very pleased to have completed the acquisition of these new and highly efficient power plants . the dighton , tiverton , and rumford facilities were among the first merchant power plants to enter commercial operation in new england , "" said calpine senior vice president bob alff . "" combined with our other announced project in the northeast , we have created a coordinated system of low - cost assets , with excellent geographic diversity , to provide power to a very attractive new england market , "" added alff . * * * exelon completes acquisition of 49 . 9 percent of sithe * * * exelon corporation and sithe energies have announced the completion of exelon ' s acquisition of 49 . 9 percent of the stock of sithe . the completion of the acquisition finalizes an agreement in which peco energy company agreed to purchase 49 . 9 percent of sithe ' s assets in north america for $ 682 million . peco has since merged with unicom corporation to form exelon corporation . under the terms of the agreement , exelon has the option to purchase the remaining 50 . 1 percent of sithe within two to five years at a price based on prevailing market conditions when the purchase option is exercised . exelon and sithe will continue to operate independently , said the companies . energy data * * * weekly electric output ( week 50 ) * * * electric output reached 74 , 737 gwh for the week ending december 9 ( week 50 ) , with the highest increase over 1999 levels in the mid - atlantic region , which had a 15 . 8 percent increase over 1999 . looking at year - to - date information , the pacific southeast leads the nation in growth of output . for more information , email alliance @ eei . org . who ' s who * * * allegheny energy announces leadership change * * * allegheny energy , inc . this week announced the appointment of michael morrell , senior vice president and cfo , as president of its unregulated supply business , allegheny energy supply company , effective february 1 , 2001 . morrell will replace peter skrgic , current president , who will be retiring on that date after 37 years of service to the company . in his new position , mr . morrell will direct and continue the growth of allegheny ' s energy supply business , which operates and markets competitive retail and wholesale electric generation throughout the eastern us . additionally , morrell will identify new opportunities to expand the company ' s generation holdings , announced a press release . the alliance express is a free news service sponsored by the alliance of energy suppliers . this document can be redistributed . please send questions , comments , or requests to alliance @ eei . org , or telephone 202 / 508 - 5680 . * * * due to the holidays , the alliance express will not be published next tuesday , december 26 . = = recent ferc filings = = ( 1 ) rto developments * the following entities filed comments regarding the california wholesale electric market . elo 0 - 95 - 000 , et . al . filed december 13 , 2000 . - american public power assoc . : "" market power : will we know it when we see it ? the california experience "" - southern california edison co . : "" proof that soft price caps do not result in lawful rates "" and request for rehearing - southern california edison co . : request for immediate modification of the december 8 , 2000 order - san diego gas & electric : motion to clarify the record * the following entities filed motions for an immediate modification and to intervene regarding the commission ' s emergency order december 8 approving the ca iso ' s tariff amendments . erol - 607 - 000 , ero 0 - 95 - 000 et . al . filed december 13 , 2000 . - western power trading forum - reliant energy power generation - pacific gas and electric - ca iso - dynegy power marketing * southern energy companies filed a supplemental protest regarding pjm ' s order 2000 compliance filing . rtol - 2 - 000 . filed december 14 , 2000 . ( 2 ) oatt / transmission * ugi utilities filed an interconnection agreement with allegheny energy supply co . erol - 617 - 000 . comments due by december 28 , 2000 . * public service company of new mexico filed proposed revisions to its ferc electric tariff , a statement of policy and code of conduct governing the relationship between itself and wholesale power marketing affiliates and a notification of a change in status relating to its authorization to sell power at market - based rates . erol - 615 - 000 . comments due by december 28 , 2000 . * american electric power service corp . ( aep ) filed an executed interconnection agreement between indiana michigan power co . and duke energy berrien . the agreement is pursuant to aep companies ' oatt . erol - 626 - 000 . comments due by december 29 , 2000 . * commonwealth edison co . filed revisions to its oatt to reflect the creation of a new generation subsidiary of excelon corp . , comed ' s holding company . erol - 628 - 000 . comments due by december 29 , 2000 . * detroit edison company filed a service agreement for network integration transmission service under the joint oatt between itself and consumers energy . the service agreement is between itself and nordic marketing . erol - 622 - 000 . comments due by december 28 , 2000 . * detroit edison company filed service agreements for short - term firm and non - firm point - to - point transmission service under the joint oatt between itself and consumers energy . the service agreement is between itself and h . q . energy services . erol - 621 - 000 . comments due by december 28 , 2000 . * louisiana generating filed a motion to intervene and protest regarding southwestern electric power company ' s restated and amended electric system interconnection agreement between southwestern and louisiana generating . erol - 504 - 000 . filed december 13 , 2000 . * alliant energy corporate services filed a response to several protests regarding its proposed amended oatt . erol - 312 - 000 . filed december 14 , 2000 . * electricities of north carolina , piedmont municipal power agency and the cities of orangeburg and seneca , sc filed a motion to intervene and protest regarding duke energy , carolina power & light and south carolina electric & gas ' proposed accounting and rate treatment of start - up costs associated with establishing a new rto . elol - 13 - 000 . filed december 14 , 2000 . * southern company services filed a proposed amendment to its oatt in order to incorporate creditworthiness criteria , interconnection procedures and source and sink requirements . erol - 668 - 000 . filed december 14 , 2000 . * bonneville power administration filed a petition for declaratory order stating that its proposed oatt satisfies the commission ' s reciprocity compliance principles . njol - 1 - 000 . filed december 14 , 2000 . * american transmission co . filed proposed open access transmission rates and requested expedited consideration . erol - 677 - 000 . filed december 15 , 2000 . ( 3 ) market complaints * h . q . energy services filed for an order directing the ny iso to restore the original market clearing prices for energy on may 8 , 2000 . elol - 19 - 000 . comments due january 2 , 2001 . * new england power co . filed an answer to the rhode island attorney general ' s protest regarding the application of the joint owners of the undivided interest in the millstone 3 nuclear plant to transfer ownership to the dominion applicants . eco 0 - 137 - 000 and ero 0 - 3639 - 000 . filed december 13 , 2000 . ( 4 ) mergers / corporate restructuring ( 5 ) miscellaneous * ca iso filed an amendment to schedule 1 of the participating generator agreement between ca iso and sierra pacific industries . erol - 619 - 000 . comments due by december 28 , 2000 . * automated power exchange filed a new rate schedule under which it will provide its auction and scheduling service in its california market . erol - 658 - 000 . filed december 14 , 2000 . * automated power exchange filed a new rate schedule under which it will provide its auction and scheduling service in a new geographic market , known as the apx midwest market . erol - 659 - 000 . filed december 14 , 2000 . nancy tarr manager , business development ntarr @ eei . org 202 - 508 - 5680 - timeline . doc",0 +"Subject: draft from the editor with questions . i ' ll call vince , attached is the editor ' s latest edits on my draft . there are a couple of things i ' d like to discuss with you and will call right after lunch . john - 134 martin 2 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: fwd fwd volatility for metals var hi tanya , i think using the 60 business day fwd fwd vols based on historical data is reasonable , to ensure consistency with the amount of data we use to estimate the eigenvalues . i am just finishing the correlations study . regards , anjam x 35383 zinc : lead : aluminum h : aluminum s : tin : copper : nickel :",0 +"Subject: load forecasting project schedule based on the discussions we had on monday , august 14 th , the preliminary project timeline shown below , and your request that some gas supply planning personnel be available to review and assist with the work : data collection : august 15 to september 14 model design and building : september 15 to october 14 interface design and building : october 15 to november 15 gas supply planning proposes the following schedule for visits to houston : ketra schmitt : september 18 , 19 , 20 ( model structure ) john wirick : october 23 , 24 , 25 ( model test and interface basics ) jake norment : november 6 , 7 , 8 ( interface refinement ) we understand that we should fly into houston international and stay at either the hyatt downtown or the doubletree to be near the enron office at 1400 smith street . looking forward to an interesting and successful project . john p . wirick , jr . ext . 4910 the information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and / or privileged material . any review , retransmission , dissemination or other use of , or taking of any action in reliance upon , this information by persons or entities other than the intended recipient is prohibited . if you received this in error , please contact the sender and delete the material from any computer .",0 +"Subject: fyi : sycamore support on network planning fyi : note that the person mentioned in the text below ( ming lung lee ) is very experienced in traditional traffic engineering work . he comes from mci where he was responsible for modeling traffic etc . it appears that sycamore finally got him . one time they had lost him to corvis ( another optical equipment company ) , i guess sycamore went back to him with a better deal ! as soon as this guy is available , i ' ll set up an all day technical meeting to hash out what needs to be done as far as optimization algorithm development is concerned . i want to produce a technical requirement document to clearly outline what needs to be done to support dynamic , optical - switched - circuits based trading and streaming media applications , etc . having such an industry expert help us will help ' justify ' internally all the the effort on the traffic analysis side that john griebling has asked us to support . keep in mind that even though he is an expert in the field , the field that we need to play in has not develop yet . even the emerging data based traffic ( as opposed to voice where blocking of traffic is allowed ) analysis is an order of magnitude more difficult ( due to uncertain load ) , let alone trading such load ( which we are planning to do ! ) . ravi . . . . sycamore hired a guy per griebling ' s request , to work with you on the design / planning piece of the business . he will be contracted out to enron for a period of 6 months initially . he lives in sf but will be traveling to whereever you need him . jim , griebling wanted us to set up a meeting between you guys for wednesday morning , if you have time . his name is ming lung lee and he comes to us from mci . let me know what works . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 07 / 00 11 : 09 am - - - - - kristin . bethurem @ sycamorenet . com 03 / 07 / 00 09 : 44 am to : ravi thuraisingham / enron communications @ enron communications , kristin . bethurem @ sycamorenet . com cc : jim irvine / enron communications @ enron communications , barb . vanbeyerer @ sycamorenet . com , brett . leida @ sycamorenet . com subject : re : pooling point profiles hi ravi . fair enough , we will make sure we keep you guys in the loop . let barb / me know which items we can offload to you guys . first thing to be done is barb will schedule a call between us and you all to gain a better understanding of a number we are trying to back into with the metro solutions ( there are alot of options on our side and we need some guidelines ) . i already talked to john about this this morning so we need to make some headway on that number . also , we are scheduled for a conference call wednesday morning with griebling to discuss where we are at with initial solutions for metro . would you like to join us ? thursday night , we have a dinner tentatively planned ( talk with griebling about who , where , etc . ) . friday we will be meeting all day at the omni in interlocken . ravi and jim , per my conversations with john , he is going to run point on the metro solutions . dorn is swamped with other activities . as for the switching piece , we discussed our routing software on monday and i think that is all we are going to do until ahi is done then we will set up a meeting between our guys and the ahi folks . the expectation is that this meeting will occur in the next 30 days . also , sycamore hired a guy per griebling ' s request , to work with you on the design / planning piece of the business . he will be contracted out to enron for a period of 6 months initially . he lives in sf but will be traveling to whereever you need him . jim , griebling wanted us to set up a meeting between you guys for wednesday morning , if you have time . his name is ming lung lee and he comes to us from mci . let me know what works . the best ways to reach me are my cell phone or text pager . cell is 303 - 619 - 2485 and pager is 888 - 467 - 6167 - - you can send me a text message from either your pager ( if you have a 2 way ) or press 3 to get an operator . thanks , kristin - - - - - original message - - - - - from : ravi _ thuraisingham @ enron . net [ mailto : ravi _ thuraisingham @ enron . net ] sent : monday , march 06 , 2000 9 : 52 am to : kristin . bethurem @ sycamorenet . com cc : jim _ irvine @ enron . net ; barb . vanbeyerer @ sycamorenet . com ; brett . leida @ sycamorenet . com subject : re : pooling point profiles hi kristin , jim and i will be in broomfield , co from tueday late ~ 10 am until friday end of day . we would appriciate being in the loop of any discussion that you may have with john and dorn ( provided that they can be shared with us ) . both john and dorn are very busy and you can help alleviate some of the congestion by send information directly to jim barb . vanbeyerer @ sycamorenet . com subject : pooling point profiles kristin attached is the sanitized file promised . what is the status on next weeks meeting and more specifically , what is the location ? jim - - - - - forwarded by jim irvine / enron communications on 03 / 03 / 00 03 : 40 pm - - - - - | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | andre bourque | | | | | | 03 / 03 / 00 | | | 01 : 27 pm | | | | | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | | | to : jim irvine / enron communications @ enron communications | | cc : | | subject : pooling point profiles | | jim : as part of your vendor negotiation requirements . andre f . bourque enron broadband services - - - - - forwarded by andre bourque / enron communications on 03 / 03 / 00 01 : 28 pm - - - - - | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | andre bourque | | | | | | 03 / 02 / 00 | | | 05 : 42 pm | | | | | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | | | to : ravi thuraisingham / enron communications @ enron communications | | cc : rob kolosvary / enron communications @ enron communications , | | lisa rosenberg / enron communications @ enron communications , andre | | bourque / enron communications @ enron communications , john | | griebling / enron communications @ enron communications , laura | | beneville / enron communications @ enron communications | | subject : pooling point profiles | | ravi : as per your request , the attached profiles have been sanitized of their sources . regards , andre f . bourque enron broadband services ( see attached file : pooling point profiles . xls )",0 +"Subject: re : lunch john , thanks . see you on monday . vince enron north america corp . from : john goodpasture @ enron 03 / 31 / 2000 01 : 11 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : lunch we are confirmed for lunch this coming monday , april 3 . i ' ll meet you in the lobby at 11 : 15 and drive us to otto ' s barbecue on memorial . thanks , jng",0 +"Subject: power trading fyi . this could be quite important for us . through forming a tradinf co . we could be brokering deals on behalf of mseb , without letting them off the hook . in this manner we could be doing short term deals and increasing despatch from dabhol or other mseb marginal units . any money flowing from these sales should go into an escrow account that goes directly towards payment of dpc bills . in this manner we would be increasing the payment ability of mseb . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 29 / 2001 08 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - k seethayya 01 / 29 / 2001 03 : 49 pm to : wade cline / enron _ development @ enron _ development , neil cc : jane wilson / enron _ development @ enron _ development , sandeep kohli / enron _ development @ enron _ development , mohan gurunath / enron _ development @ enron _ development , ashok subject : power trading wade : the group of ministers on foreign investment had decided to recommend foreign equity participation upto 100 % for trading in power sector , subject to prevailing laws . however , they left the final decision to the union cabinet . it is understood that a note supporting the recommendation of gom is being put up for consideration of union cabinet . since power minister is willing to support the proposal and industry minister is already ok with such proposals , i don ' t anticipate any problem at the cabinet level . let us wait and watch the developments . seethayya",0 +"Subject: interview with the research group hi kathy and elizabeth : vince kaminski would like to bring chris kenyon in for a formal interview with the research group . we would like to bring him in on monday , may 15 th , or monday , wednesday , thursday , and friday of the week of may 22 - 26 th . if these dates do not work for chris , please let me know . . the interview participants would be : vince kaminski stinson gibner zimin lu vasant shanbhogue grant masson paul issler krishna krishnarao if you need any other information , please let me know . thanks and have a great day ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 05 / 08 / 2000 09 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 05 / 08 / 2000 09 : 25 am to : christopher m kenyon @ enron cc : stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : real options openings ? chris , we shall make arrangements to bring you over for an interview . our hr department will contact you later this week . vince christopher m kenyon on 05 / 05 / 2000 07 : 56 : 11 am to : vkamins @ enron . com cc : subject : real options openings ? dear vince kaminski , i was auditing prof dyer ' s real options class on thursday when you spoke on enron ' s activities in this area . i would be interested in exploring the possibility of joining the group that works on real options in response to and in anticipation of enron ' s business requirements . i ' m currently working in the development and application of real options methodology at schlumberger . in particular i ' ll be speaking at an industry real options valuation conference in london ( http : / / www . iqpc . co . uk / finance / rov / ) and i just had the paper accepted for publication in operations research . could you pass my resume on to the relevant people to have a look at ? thanks in advance , chris kenyon - cmkenyon _ cv _ mayo 0 . doc",0 +"Subject: accounting organizational changes in order to support enron  , s development of new business and desire to maximize its return on invested capital ; the following organizational changes are taking place . the current accounting groups supporting calme , apachi and south america activities will be consolidated into one accounting group at enron corp . this group will continue to provide accounting support to these international regions and related enron corp initiatives . jeff sommers , currently calme vice president and cao will head this accounting group . cassandra schultz , currently apachi vice president and cao will join rick buy  , s risk assessment and control organization as a vice president in market risk management . kent castleman , currently south america vice president and cao will become vice president and cao of enron industrial markets . please join us in congratulating everyone in their new assignments .",0 +"Subject: new website for an exciting conference applications of physics in financial analysis 2 liege , belgium 13 to 15 july 2000 the website for this conference is now available at www . eps . org / apfa for further details on all eps conferences contact : christine bastian , conferences , european physical society , 34 rue marc seguin , bp 2136 , f - 68060 mulhouse cedex , france tel + 33 389 32 94 42 fax + 33 389 32 94 49 email eps . conf @ univ - mulhouse . fr this conference is a europhysics conference . it is organised by the european physical society and its division of statistical and non - linear physics . - attl . htm",0 +"Subject: projects completed and work in progress dear vince , hi , i hope your having fun on you vacation ! i just want to drop you a line since we haven ' t talked in a while and give you a progress update . first , i feeling much better . eventhough i was out last week , i finished the following curves : canadian cpi phillippines fx and cpi mexican fx and cpi saudi arabian fx and cpi guatemalan fx we also helped london rac with finding information on the uk inflation model to backtest it . gwyn and yana kept me very busy last week . yana , who lives close by me was nice enough to drop off work at night . gywn and i worked on the curves over the phone . yesterday , i got a call from terry thorn , he needed economic information and a presentation to give to egm management . i gave him a copy of the conforming assets presentation , he was very pleased . this week , i ' m working on a urgent request from rac . the board has decided to resurrect dragon 2 , so we are preparing all the curves for the apachi region . i ' m also working on the metals presentation . see you thursday . regards , maureen",0 +"Subject: henwood & psim stinson / vince , the henwood runs for dabhol are , at least temporarily , over . however , the main modeller for henwood ( david yumigada ) works out of their california office . it maybe worth our while to have him come and demonstrate the runs , and explain the modelling algorithm to the larger group . in aparticular , now that i am going through some of the comments people have raised on the psim model , i think there is value in understanding the way henwood deals with hot and cold starts , ramp up costs , and with issues of cycling plants . i think understanding these will help in developing the next version of the psim , and will also give the group here ideas to build into existing models . this is a suggestion , and so please let me know if you see value in this . regards , sandeep .",0 +"Subject: re : summer van , thanks for your message . we are taking a number of interns this summer , but the a & a program has closed the books for this year . we were able to reopen the list to add one candidate a few weeks ago , but cannot do it again . we promised it would be the last addition . vince van ngo on 04 / 23 / 2000 11 : 42 : 54 am to : vince kaminski cc : subject : summer dear vince , i ' m writing to let you know that i have been in touch with christy young from the a & a program and will be finding out my assignment for this summer soon . ? i am very excited to be back at enron , and i hope to see the research team again . i ' d also like to inquire about summer positions within research . ? will the research group be taking on another intern this summer ? ? since i know there is no busier place at enron than the research group , if there is a position available for this summer that you are looking to fill or that may be open for consideration , i would love to connect you to another rice student . please let me know if the group is considering receiving a new intern this summer . ? if so , i would be thrilled to put you in touch with brad aimone , a senior chemical engineering student here at rice who will be graduating with both his b . s . and his masters in chemical engineering next may . ? brad has gained extensive laboratory research experience over the past two years . ? his academic focus gives him a strong mathematical , quantitative background and excellent computer skills . ? i believe his skills are transferable and relevant to the group , and he is a deeply dedicated individual . ? if the research group is looking for a summer intern , i hope it will continue enron ' s strong support and recruit of rice university students . please feel free to contact brad directly to pursue this discussion . ( as i realize the summer months are not far off , if it is easier , an arrangement through prostaff may be made similar to my work extension at the end of last summer ) . ? i have attached a copy of his resume for your review . ? brad will be in houston this summer . ? his contact information is given below . james bradley ( brad ) aimone 6320 main , houston , tx ? 77005 713 - 630 - 8035 imaknee @ rice . edu ? also , please feel free to contact me if you have any questions . ? i sincerely hope that you will have the opportunity to discover the contributions brad can make to the research group . ? i certainly know that he would gain tremendously from the experience as i did last summer . thank you very much for your consideration . sincerely , van ph : 713 - 630 - 8038 - brad _ resume . doc",0 +"Subject: dg energy software vince , here is my edited version of the software license agreement . can you read it once before i forward it for internal approval ? i specified that the $ 100 , 000 covers a single user perpetural license , access to source after one year , and covers maintenance and support for one year . any suggestions ? - - stinson",0 +"Subject: re : mathworks great , please keep us informed . louis casari vice president , mid office operations enron broadband services 713 - 853 - 4302 , room eb 4492 lou _ casari @ enron . net vince j kaminski @ ect 09 / 28 / 00 10 : 39 am to : lou casari / enron communications @ enron communications @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , lou casari / enron communications @ enron communications subject : re : mathworks molly , i met lou in the building lobby last wednesday and he suggested that he ( or his representatives ) join the mathworks presentation to my group ) . it ' s a good software package for mathematical modeling , but there is a limit to the number of different installations any group can productively use . i shall take a look at some new features they offer and decide whether it ' s worth the effort . vince kaminski lou casari @ enron communications 09 / 20 / 2000 02 : 10 pm sent by : molly carnes @ enron communications to : vince j kaminski / hou / ect @ ect cc : subject : mathworks do you know this person or this company ? they are want to set an appointment with ebs and i believe , are wanting to meet with you , also . any feedback ? thanks . molly carnes for lou casari enron broadband services 713 - 853 - 1467 , room eb 4486 a molly _ carnes @ enron . net - - - - - forwarded by molly carnes / enron communications on 09 / 20 / 00 02 : 09 pm - - - - - scottw @ mathworks . com 09 / 20 / 00 08 : 46 am to : lou casari / enron communications @ enron communications cc : subject : we ' ll be in houston hello mr . casari : myself and our energy trading financial team will be visiting with the r & d group at enron the week of 10 / 16 / 00 . they have several applications can be dramatically improved with our tools . we are very interested to understand the bandwidth trading market , to see if any additional challanges can be overcome with our tools . i would like to understand your challanges of modeling , simulating and deploying applications to control risk . are you available to discuss these items prior to our visit ? i look forward to hearing from you . thanks scott wakefield",0 +"Subject: re : tanya vacation vince , i just found out that none of my vacation days from the last year is in the computer system ( it says that i have 0 c / over days ) . it was november 3 , 1999 when i asked your approval to carry over 12 vacation days to the next year . i was thinking that if you ( or hr ) do not approve i could at least take these days in 1999 . i know that your tried to help me and sent to brad mcsherry the justification for me to carry over 10 days . i bothered you a few times in november and december 1999 and since your response was optimistic i did not take any of those 10 days in 1999 . but i never heard from hr . now i am not sure - may be these days are not in the system by mistake . i would like to take 5 of them in march ( from 3 / 13 / 00 to 3 / 17 / 00 ) . what is your advice ? should i contact brad mcsherry ? even negative response from hr in november or december last year would be better than loosing vacation days . i really appreciate your help , tanya . tanya tamarchenko 12 / 02 / 99 12 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : tanya vacation hi , vince , sorry to bother again with my question . i first e - mailed my question a month ago ( on nov . 3 ) . since we still have not heard from hr , is it fair to assume that i can carry over my 10 vacation days to the next year ? if not - i have to take 5 days before dec . 17 , because then i go on vacations anyhow . i would really prefer not to take off most of december , there are quite a lot of things going on . thank you for your help in resolving this question . tanya .",0 +"Subject: re : weather and energy price data mulong , we shall send you natural gas henry hub prices right away . please look at the last winter and the winter of 95 / 96 . we shall prepare for you the electricity price information ( cinergy , cobb and palo verde ) but you have to approach ft ( the publishers of megawatts daily , a newsletter that produces the price index we recommend using ) and request the permision to use the data . we are not allowed to distribute this information . please , explain that this is for academic research and that we can produce the time series for you , conditional on the permission from the publishers of megawatts daily . vince kaminski mulong wang on 04 / 15 / 2001 03 : 43 : 26 am to : vkamins @ ect . enron . com cc : richard macminn subject : weather and energy price data dear dr . kaminski : i am a phd candidate under the supervision of drs . richard macminn and patrick brockett . i am now working on my dissertation which is focused on the weather derivatives and credit derivatives . could you kindly please offer me some real weather data information about the price peak or plummet because of the weather conditions ? the past winter of 2000 was very cold nationwide , and there may be a significant price jump for natural gas or electricity . could you please offer me some energy price data during that time period ? your kind assistance will be highly appreciated and have a great day ! mulong",0 +"Subject: re : jinbaek kim molly , we can pay for the plane ticket . we have to make sure that we shall extend the same treatment to other summer interns to avoid bad feelings . vince from : molly magee / enron @ enronxgate on 04 / 25 / 2001 11 : 47 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : jinbaek kim we received some correspondence this morning from jinbaek in which he says he plans to start on june 4 , 2001 . since we are trying to offer a package comparable to that of an associate in the program , i assume we will also pay for his plane ticket here ? ? ? just wanted to check before i contacted him . . . . , so i ' ll wait to hear from you . thanks , molly x 34804",0 +"Subject: karthik rajan i spoke with karthik this morning about our offer , and answered some additional questions that he had . he has accepted our offer , but with one additional request . he would now like for us to ship his car . i asked him why he couldn ' t drive it down here , and he said that it was too old . i am going to check with relocation for an approximate cost and will get back to you . . . . thanks , molly x 34804",0 +"Subject: interview schedule for jinbaek kim please find the interview packet for the above - referenced candidate . the interview will occur on friday january 19 , 2001 . please print all documents for your reference . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . shawn grady 58701",0 +"Subject: re : energy derivatives conference - may 29 , toronto amy : attached please find a short "" bio "" for dr . kaminski . please let me know if i can help further . amy aldous on 03 / 30 / 2000 11 : 24 : 13 am to : vince . j . @ uwaterloo . ca . kaminski @ enron . com cc : shirley . crenshaw @ enron . com subject : energy derivatives conference - may 29 , toronto dear mr . kaminski , i have just spoken with phelim boyle , who was very pleased to report that you will be speaking at our energy derivatives conference in toronto on may 29 . i understand that the title of your presentation is "" current challenges in pricing and risk management of energy derivatives . "" would you also be available and willing to join a panel discussion / question and answer period at the end of the day ? speakers , with tentative titles , to follow you are : corwin joy ( positron , houston ) "" modeling physical assets : real option theory applied to generation assets "" david emanuel ( williams , tulsa ) "" modeling issues in power markets "" shijie deng ( georgia institute of technology , atlanta ) "" research on pricing electricity derivatives and the basic models "" melanie cao ( queen ' s university , kingston ontario ) "" equilibrium pricing of weather derivatives "" panel discussion perhaps ms . crenshaw could send me your short biographical sketch , by email or fax ( 519 ) 888 - 7562 so that i can proceed with promoting this event as soon as possible . many thanks , amy * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * amy aldous , conference co - ordinator centre for advanced studies in finance university of waterloo waterloo , on n 2 l 3 gl tel : ( 519 ) 888 - 4567 ext . 5728 fax : ( 519 ) 888 - 7562 email : aaldous @ uwaterloo . ca * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *",0 +"Subject: re : reminder - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 10 / 2001 05 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 08 / 2001 01 : 10 pm to : sandeep kohli / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect subject : re : reminder sandeep , i am meeting jeff on tuesday , 1 : 30 . the best number to reach me ( outside the office ) is my cell phone ( always on ) : 713 410 5396 . my home number is 281 367 5377 . vince sandeep kohli @ enron _ development 01 / 06 / 2001 08 : 30 pm to : vince j kaminski @ ect cc : subject : reminder vince , before leaving for india i just wanted to jot you this small reminder to talk to jeff shankman on monday . aside from myself , i wanted to remind you to talk about anshuman shrivastava , who is currently assistant manager in india , and has my recommendation for promotion to manager . he is our point person on many dpc matters , and is also the person i have used on most fuel related issues . he will be a real asset to jeff when located in houston . sinc he is single , and quite young , it will not be a problem to move him here at short notice . i will call you from india as soon as i get in . it will be monday evening in houston at that time , so could you please jot me a note telling me what would be a good number to call you on . i look forward to working with the team in research . thanks again , regards , sandeep .",0 +"Subject: re : reminder sandeep , i am meeting jeff on tuesday , 1 : 30 . the best number to reach me ( outside the office ) is my cell phone ( always on ) : 713 410 5396 . my home number is 281 367 5377 . vince sandeep kohli @ enron _ development 01 / 06 / 2001 08 : 30 pm to : vince j kaminski @ ect cc : subject : reminder vince , before leaving for india i just wanted to jot you this small reminder to talk to jeff shankman on monday . aside from myself , i wanted to remind you to talk about anshuman shrivastava , who is currently assistant manager in india , and has my recommendation for promotion to manager . he is our point person on many dpc matters , and is also the person i have used on most fuel related issues . he will be a real asset to jeff when located in houston . sinc he is single , and quite young , it will not be a problem to move him here at short notice . i will call you from india as soon as i get in . it will be monday evening in houston at that time , so could you please jot me a note telling me what would be a good number to call you on . i look forward to working with the team in research . thanks again , regards , sandeep .",0 +"Subject: re : 1 / 2 day seminar : the new texas electric market fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 24 / 2001 10 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 04 / 24 / 2001 10 : 19 am to : ron mcnamara / na / enron @ enron , jean ryall / na / enron @ enron cc : subject : re : 1 / 2 day seminar : the new texas electric market hello ron and jean : please furnish me your co # and cc # so that i can make a group reservation to the "" new texas electric market "" seminar in austin on may 2 nd . i will charge the entire amount to vince kaminski ' s credit card , but we will need to cross charge the charges when we submit his expense report . thanks ! shirley crenshaw 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 24 / 2001 10 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lance cunningham @ enron on 04 / 23 / 2001 11 : 10 : 33 am to : ron mcnamara / na / enron @ enron , jean ryall / na / enron @ enron cc : shirley crenshaw / hou / ect @ ect subject : re : 1 / 2 day seminar : the new texas electric market could i please get the following information from you , so that shirley can register us for the upcoming seminar . thanks , lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 23 / 2001 11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw @ ect 04 / 20 / 2001 01 : 34 pm to : lance cunningham / na / enron @ enron cc : subject : re : 1 / 2 day seminar : the new texas electric market do you have any information on them so i can make the reservations . name : ron mcnamara & jean ryall co . # cc # etc . lance cunningham @ enron on 04 / 20 / 2001 01 : 30 : 56 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : 1 / 2 day seminar : the new texas electric market shirley , i think that we will only have 1 or 2 people outside of research to attend . lance",0 +"Subject: re : garp frank , i have reviewed materials from garp but did not find any information about the speaker ' s perks ( like , for example , the right to invite another person , free of charge ) . i shall message garp with this question . please , give me a few more days to think about garp presentation . vince enron north america corp . from : frank hayden @ enron 11 / 27 / 2000 03 : 27 pm to : vince j kaminski / hou / ect @ ect cc : subject : garp vince , i just wanted to follow up and see if i can be your guest at the ny garp meeting . also , have you had any time to think of a topic for january . i would like to get an email out announcing the meeting . let me know your thoughts , thanks , frank",0 +"Subject: michael catanese vince , mr . catanese is not ready yet . his statistics is rusty , and he only finishes 11 chapters of john hull ( 18 chapters are minimal to be serious ) . zimin",0 +"Subject: fw : notes for var course > - - - - - original message - - - - - > from : mccarthy , jane j > sent : wednesday , 25 october 2000 16 : 55 > to : ' vkaminski @ aol . com ' > subject : notes for var course > > dr . kaminski , > > i attended your var course in sydney in july , but when i went back to look at the notes recently i found that i am missing some sections ( e . g . optimal techniques for measuring var , using monte carlo techniques to accurately calculate var , evaluating the impact of volatility and extreme values on var ) . would you be able to send me a copy of your notes , as i am about to embark on a var modelling exercise and i am sure they would be very useful . > > regards , > jane mccarthy > manager market risk > bhp co . pty ltd . > lvl . 45 , 600 bourke street > melbourne , vic 3000 > australia > > ph : 613 9 609 3860 > fax : 613 9 609 3861 > email : mccarthy . jane . j @ bhp . com . au > > > eom notice - this message contains information intended only for the use of the addressee named above . it may also be confidential and / or privileged . if you are not the intended recipient of this message you are hereby notified that you must not disseminate , copy or take any action in reliance on it . if you have received this message in error please notify postmaster @ bhp . com .",0 +"Subject: thank you ! fyi from valeria . - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 12 / 2000 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - valeria . i . stone @ exxon . sprint . com on 09 / 12 / 2000 09 : 59 : 37 am to : shirley . crenshaw @ enron . com cc : subject : thank you ! date : september 12 , 2000 from : stone , v . i . ( valeria ) vistone - americas to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail subject : thank you ! dear shirley , can you please forward this thank you note to kevin kindall , grant masson , tanya tamarchenko and vince kaminski for me . dear kevin , grant , tanya , and vince : i just wanted to thank you for the time you shared with me on friday , september 8 th , regarding employment opportunities with enron . i enjoyed meeting with you and discussing your company ' s structure and mission as well as the objectives of the research group . i was impressed by the fast - paced environment and dedication that were displayed by your group . it is apparent to me that your group greatly contributes to the overall success of enron . i am looking forward to hearing from you soon . sincerely , valeria stone - - - - - original message - - - - - from : ext - shirley . crenshaw ( a ) enron . co sent : thursday , september 07 , 2000 10 : 27 am to : stone , v . i . ( valeria ) subject : re : informal exploratory interview with enron research group valeria : 3 : 30 pm tomorrow the 9 th will be fine . we will have to change the schedule a little bit , but i believe it will work . kevin kindall 3 : 30 pm grant masson 4 : 00 pm tanya tamarchenko 4 : 30 pm vince kaminski 5 : 00 pm same scenario - upon arrival in the lobby go to the security desk and ask for me . i will meet you in the lobby of the 19 th floor . thanks so much for your flexibility ! shirley crenshaw valeria . i . stone @ exxon . sprint . com on 09 / 07 / 2000 08 : 56 : 24 am to : shirley . crenshaw @ enron . com cc : subject : re : informal exploratory interview with enron research group date : september 7 , 2000 from : stone , v . i . ( valeria ) vistone - americas to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail subject : re : informal exploratory interview with enron research group sure , tomorrow is fine with me . is it possible to schedule it at 3 : 30 pm ? and i am sure it is not an easy task to fit the schedule of several people to be available at the same time window . so please feel free to let me know if you will need to do another time adjustment . - - - - - original message - - - - - from : ext - shirley . crenshaw ( a ) enron . co sent : thursday , september 07 , 2000 9 : 47 am to : stone , v . i . ( valeria ) subject : re : informal exploratory interview with enron research group valeria : please do not think we are always this unorganized , but things just seem to be happening right now and it is disrupting everyone ' s schedule . would you possibly be able to come tomorrow the 8 th ? kevin kindall will not be here on the 15 th and he would definately like to interview you . then vince kaminski will be gone for two weeks after the 15 th . it seems like tomorrow might be the best time for everyone , if it is for you . we can begin the interviews at 3 : 00 pm and probably end them at 5 : 00 or 5 : 30 pm . please let me know . thanks so much for your understanding . [ stone , v . i . ( valeria ) ! : regards , shirley crenshaw valeria . i . stone @ exxon . sprint . com on 09 / 07 / 2000 07 : 46 : 13 am to : shirley . crenshaw @ enron . com cc : subject : re : informal exploratory interview with enron research group date : september 7 , 2000 from : stone , v . i . ( valeria ) vistone - americas to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail subject : re : informal exploratory interview with enron research group [ stone , v . i . ( valeria ) ! 0 definitely - any of these days sound good to me . the only concern that i have , is that i have my graduate class on thursday night at 6 pm which is september the 14 th . so if you will schedule the interview on the 14 th of september , i would need to leave around 5 : 15 pm so i could attend my class . it actually might be more convenient for me to meet with the interviewers on the 15 th of september . if this day does not fit the schedule of any of the interested in interviewing individuals , i surely will be able to meet with them on the 14 th . i will be looking forward to your reply . sincerely , valeria stone - - - - - original message - - - - - from : ext - shirley . crenshaw ( a ) enron . co sent : wednesday , september 06 , 2000 4 : 32 pm to : stone , v . i . ( valeria ) subject : re : informal exploratory interview with enron research group valeria : would you be able to do the interview on the 14 th or 15 th instead of the 13 th ? vince kaminski , who would really like to interview you , has been called out of town on the 13 th . he will be back on the 14 th . also grant masson is conducting an options seminar on the 13 th and would not be able to interview you until after 5 : 00 pm . please let me know if we can just push the interview to the same time frame only on the 14 th or 15 th . thanks ! shirley crenshaw 713 - 853 - 5290",0 +"Subject: re : visit to enron by professor nalin kulatilaka of boston university hi iris : may 17 th is fine . he will probably need to come in the night before ( the 16 th ) and he can make a hotel reservation at the doubletree or the hyatt and tell them he is a guest of enron and he will get a corporate rate . we will reimburse him for room expense only . he will need to pick up any miscellaneous room charges . we will also reimburse him for his flight expense and cab fare . the doubletree telephone # is : 713 - 759 - 0202 and the hyatt telephone is : 713 - 654 - 1234 . he can either leave his receipts with me when he is here or mail them to me and i will have a check cut . i will need his ss # . if you have any more questions , please let me know . thanks ! shirley from : iris mack / enron @ enronxgate on 04 / 20 / 2001 04 : 32 pm to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , shirley crenshaw / houston / eott @ eott cc : nalink @ bu . edu @ smtp @ enronxgate subject : re : visit to enron by professor nalin kulatilaka of boston university hi shirley , vince has requested that we invite professor nalin kulatilaka of boston university to speak at one of our thursday group luncheons / seminars . nalin says he is available to speak on may 17 th . can you let me know if this is okay , and what the procedure is for invited speakers . thanks and have a good weekend , iris",0 +"Subject: re : recent hardware repair joe , we are extremely pleased with the support we receive from your team . the problem was fixed very quickly . vince from : joe langston / enron @ enronxgate on 04 / 27 / 2001 11 : 31 am to : vince j kaminski / hou / ect @ ect cc : subject : recent hardware repair vince , recently the hardware services team performed work on a piece of equipment for you . the technician that performed the work was jd marter , and this is just a follow up to insure that your problem was resolved . it is our goal to provide you with the best service possible , so please feel free to respond to this email if you have any comments that may help us provide you better service in the future . attached you will find a work log detailing what was done to resolve your issue . if you have any questions , or if the problem is not completely resolved please feel free to contact me . thank you , joe langston team lead hardware services office : 713 - 345 - 8883 cell : 713 - 545 - 5912 pager : 877 - 239 - 2794",0 +"Subject: re : suggestion : implementing var based on non - normal log - returns simulations everybody , we were talking for a while about using non - normal distributions in the monte - carlo simulations in our var model . i put together some suggestion regarding this . the text is under o : \ _ dropbox \ tanya \ non _ normal _ logs . doc look through this 3 page document , and let me know what you think , please . tanya",0 +"Subject: re : lng "" book "" meeting doug , we were trying to get everybody together for today but with no luck . wednesday next week is the first feasible date . sorry for that . vince doug arnell @ enron _ development 08 / 29 / 2000 01 : 59 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski @ ect subject : re : lng "" book "" meeting i ' m assuming that this meeting is tomorrow ( wednesday the 30 th ) not next wednesday . shirley crenshaw @ ect 08 / 29 / 2000 09 : 06 am to : sally beck / hou / ect @ ect , eric groves / hou / ect @ ect , doug . arnell @ enron . com , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : lng "" book "" meeting hello everyone : the next lng "" book "" meeting has been scheduled for wednesday , september 6 at 2 : 00 pm in ebl 9 c 2 . thanks ! shirley crenshaw 3 - 5290",0 +"Subject: transport model andy , the scale effect in the transport model can be explained . i use a european option to do the illustration . i raise the underlying and strike price by the same amount , use the fuel percentage to adjust the strike . the net result is the intrinsic value decreases as the level goes up . if the fuel percentage is not very high , the option premium actually increases with the level , although the intrinsic value decreases . if the fuel percentage is very high ( > 8 % ) , then we see a decreasing option price . in the transport deal , fuel change is often below 5 % , so you will not see a decreasing spread option price when nymex moves up . so i think the transport model still does what it should do . zimin in the following exmaple , i used r = 6 % , vol = 20 % , t = 100 days , see spreadsheet for details . - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 10 / 20 / 2000 01 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 10 / 20 / 2000 10 : 45 am to : andrew h lewis / hou / ect @ ect cc : colleen sullivan / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : level effect in transport andy , the following spread sheet domenstrates the leve effect in transport valuation . i add an "" nymex add - on "" to both delivery and receipt price curve before fuel adjustment , keep everything else the same . the transport value ( pv of the spread options ) increases when nymex add - on increases . i can visit you at your desk if you have further question . zimin",0 +"Subject: re : project tracking database access hi sandy : yes he does . actually in our group meeting today , vince kaminski said that he wants most of his group to have access . i believe stinson gibner is working on the list . is there a way we could submit a request to incorporate a list of people to give them access ? they would need writing access also . thanks ! shirley from : enron messaging security @ enron 11 / 30 / 2000 03 : 26 pm to : shirley crenshaw / hou / ect @ ect cc : subject : project tracking database access shirley , the default access is read only . does this person need more rights , i . e . editor ? thanks , sandy - - - - - - - - - - - - - - - - - - - - - - forwarded by enron messaging security / corp / enron on 11 / 30 / 2000 03 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system application line item pending provider processing application name : unlisted lotus notes appliction how to process this request . . . for : kenneth parkhill / na / enron request type : grant comments : efc \ research \ projtrak . nsf - needs access to project tracking database click . if you wish to approve this request , select "" approve "" in the dialog box . otherwise , select "" reject "" . enter comments ( if any ) . provider approval section provider ( s ) : enron messaging security / corp / enron status : e - mail message : comments : sr general request : scrw - 4 rjl 94 requested by : shirley crenshaw / hou / ect phone : 3 - 5290 company : 0413 rc # : 107043 priority : normal application icons added : expiration date : unix db required : no network login id : kparkhil unix login id : required information : general comments kenneth parkhill is a new research employee that needs access to the project tracking database editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 1 2 information risk management enron messaging security 11 / 29 / 2000 02 : 47 : 37 pm 11 / 30 / 2000 10 : 00 : 43 am",0 +"Subject: operational risk iconference "" the person who goes farthest is generally the one who is willing to do and dare . the sure - thing boat never gets far from shore . "" - - dale carnegie erisk is pleased to announce an iconference on practical methodologies for operational risk management keynote speaker : tony peccia , vice president of operational risk at cibc followed by a panel discussion , which will include the following distinguished panelists : marcelo cruz , director of operational risk at ubs ag tony peccia , vice president of operational risk at cibc karim rajwani , senior manager of operational risk at royal bank of canada when : thursday , december 14 at 12 noon est / 5 p . m . london time . topics to be covered : the battle between "" quantitative "" and "" qualitative "" approaches , measuring the success of operational risk management , applying large institution methodologies to smaller institutions , and much more . recommended background reading : the operational risk piece in our risk jigsaw you will need to log in to be able to click through to this tutorial , which features insights from "" expert witnesses "" ( including panelist marcelo cruz ) , the 12 steps of the operational risk management process , and links to additional resources . registration : this conference is totally free , and you can participate by using any computer with internet access and a telephone . you will need to register for this conference in advance by clicking here if you have any questions regarding our iconferences , please send email to iconferences @ erisk . com see you at the iconference ! your friends at erisk . com ( formerly erisks . com ) p . s . the archived slides , polling results , and real - time replays of our previous iconferences , including our last iconference on compensation for risk managers , can be accessed here free of charge . your email : [ vkamins @ enron . com ] is in our erisks . com mailing list . if you wish to unsubscribe from future mailings , please forward this message to : unsub _ opriskl @ email . erisks . com to subscribe , please forward this message to sub _ opriskl @ email . erisks . com [ image ]",0 +"Subject: address for recommendations vince , please forward the recommendations to the following address : 2569 windbreak dr . alexandria , va 22306 don ' t forget to label each envelope , e . g . "" columbia "" , etc . , and to sign each envelope over the adhesive seal . i must receive the package before the new year in order to meet the submission deadline . thank you for your time , and happy holidays . - hector",0 +"Subject: course outlines jeff , i am sending you a draft of the outline of the course on energy derivatives . i would appreciate your comments before i finalize it . by the way , did we agree on the time schedule for the class ? tuesday or thursday evening would work for me . vince",0 +"Subject: approval is overdue : access request for mark . breese @ enron . com this request has been pending approval for 2 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000005820 approver : stinson . gibner @ enron . com request create date : 10 / 26 / 00 2 : 27 : 45 pm requested for : mark . breese @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: information you requested from economic capital iconference thank you for requesting information about our products during the registration for the recent erisk iconference on economic capital . please click on the link below to read an overview of our offerings in the areas of analytics , consulting , and risk transfer : note : if you can ' t open this pdf , you need to upgrade to the new version of adobe acrobat reader at additional materials : read a case study about implementation of our erisk analytics at cobank : read a case study about implementation of p & c raroc at the st . paul companies : if you would like to speak directly with an erisk representative , please contact angela isaac at aisaac @ erisk . com regarding consulting and risk transfer projects and murray nash at mnash @ erisk . com to learn more about our erisk analytics product . regards , erisk client services this is a one - time mailing only . to subscribe to our regular email newsletter , please register at if you received this mailing in error , please email info @ erisk . com with "" unsubscribe "" in the subject line .",0 +"Subject: re : jcc kevin , thanks for the heads - up . i ' m doing face - time with a customer on wednesday , but i ' m in all day tomorrow , thursday and friday ( i ' ve a got a deadline to meet this pm ) . when would it be convenient to meet , and could we do it early in the morning so as to be able to conference ansguman srivastav ( enron india ) into the meeting ? regards , marc kevin kindall @ enron 10 / 30 / 2000 10 : 55 am to : marc de la roche / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : jcc good morning . i apologize for the response delay . i ' ve gone back through the analysis that i did back in april , and have thrown around some ideas with vince and stinson . the issue may be summarized as follows . the hedge relationship was derived using jcc and prompt brent , and is valid for jcc and prompt brent . no problems here . however , it will not be valid for points far out on the forward curve . intuitively , this hedge relationship will approach one as we move far out on the curve , but since there is no data , i can not statistically determine this . one can imagine a term structure of heding ratios that start at 0 . 67 and move to 1 . 0 , so that the back end of the curves would move together , but how fast it converges to one is anyone ' s guess . if there is a way of determining the historical jcc forward curve , then the hedge relationships may be estimated . however , i have been unable to determine a rigorous approach to building the jcc curve . i can explain this far better in person , and would like to talk as soon as possible at your convenience . - kevin kindall",0 +"Subject: order confirmation thank you for your order . instructions regarding any electronic product purchases and a full order summary are listed below , beginning after the special announcement . special announcement introducing hbr onpoint , an indispensible new resource from "" harvard business review "" that makes it faster and easier to put important management thinking to work . hbr onpoint gives you : * a quick overview of critical management concepts * different experts ' views on a given topic * the context critical for sharing and applying the knowledge you ' ve acquired to learn more and pick up a free article overview , visit our web site : your order contains adobe acrobat files . you can download and print these files by using the temporary url listed below . the url will expire in 24 hours . feel free to use the url from your office or home computer . to go immediately to the temporary web page , click on the link below , or copy and paste the url in to your browser . below you will find your order information . if you have any questions concerning this order , please e - mail us at orderreceipt @ hbsp . harvard . edu ( or just reply to this message ) . for technical inquiries , email us at techhelp @ hbsp . harvard . edu your order reads as follows : - - - - - - - - - - - - - - - - - - - - - - - - - - - - customer ' s web id : 299070 sold - to no : a 49227 sold - to information : first name : wincenty last name : kaminski institution / company name : enron corp job title : managing director mail stop / dept . : ebl 962 address : 1400 smith address : city : houston state : tx zip / postal code : 77002 country : united states email address : vkamins @ enron . com phone number : 713 853 3848 fax number : 713 646 2503 attn : name of person who placed order : wincenty kaminski - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - bill - to information : first name : wincenty last name : kaminski institution / company name : enron corp job title : managing director mail stop / dept . : ebl 962 address : 1400 smith address : city : houston state : tx zip / postal code : 77002 country : united states email address : vkamins @ enron . com phone number : 713 853 3848 fax number : 713 646 2503 attn : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ship - to information : first name : wincenty last name : kaminski institution / company name : enron corp job title : managing director mail stop / dept . : ebl 962 address : 1400 smith address : city : houston state : tx zip / postal code : 77002 country : united states email address : vkamins @ enron . com phone number : 713 853 3848 fax number : 713 646 2503 attn : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - order prod . # product title quantity price total 98506 strategy as a portfo . . . 1 $ 5 . 50 $ 5 . 50 97305 what ' s it worth ? : a . . . 1 $ 5 . 50 $ 5 . 50 97306 using apv : a better . . . 1 $ 5 . 50 $ 5 . 50 sub - total : $ 16 . 50 surcharge : $ 0 . 00 shipping and handling : $ 0 . 00 gst : $ 0 . 00 tax : $ 0 . 00 grand total : $ 16 . 50 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - total due : $ 0 . 00 ( pre - paid by visa ) shipping method : non - shippable , pdfs * please note that there is applicable sales tax in ca , ct , il , ma , md , and tn for the products you have ordered . if you are ordering from one of these states , the amount shown on your invoice and / or credit card statement will be slightly higher than the total listed above , to reflect the applied sales tax . * listservs are a great way to keep up with what ' s going on at the harvard business publishing web site . right now , we offer 3 alerts : management alert , strategy alert , or hr / training alert . each of these e - mail combines a specially selected excerpt with announcements of new and bestselling products from ourextensive catalog . you can also find out what ' s coming up in both harvard business review and harvard managementupdate newsletter . to subscribe to one or more of these free services , follow the link below . and thank you for ordering from harvard business school publishing , the power of ideas at work . ",0 +"Subject: re : energy course julie , no objections . please , include our names . vince "" julie "" on 05 / 05 / 2000 04 : 22 : 29 am to : vince j kaminski / hou / ect @ ect cc : subject : energy course dear vince , thanks for attending the energy derivatives course , and i hope you found it valuable . there ' s been some interest from other course attendees to put together a contact list and distribute it to one another . i ' m contacting you to see if you or zimin lu have any objection to being included on the list . we will include only details that you approve , such as name , company name , address and email if you wish . we would like to send out the list early next week , so please let us know . thanks , julie ps - how ' s the chapter ? - attl . htm",0 +"Subject: rice course vince i am an adjunct professor at rice , working with wil uecker in executive education . with your concurence , i would like to sit in your energy derivatives course . i understand from wil that there are 38 students registered for the course . if you consent , would you let me know what material i need . thank you , dennis w . loughridge 713 - 348 - 2812",0 +"Subject: meeting at wharton i am out of the office next week . please send details on the meeting at wharton to my assistant , danielle dees . she will make my travel arrangements . i believe you were recommending a hotel as well .",0 +"Subject: luigi zingales seminar on april 27 rice / enron finance seminar participants : luigi zingales will present a paper co - authored with raghuram g . rajan , entitled "" the great reversals : the politics of financial development in the 20 th century . "" ? the full text of the paper is available in pdf form on the seminar website : http : / / www . ruf . rice . edu / ~ jgsfss the baton for organizing the seminar series has been passed from barbara ostdiek to myself . ? if you have questions regarding the series , please contact me ( wangfa @ rice . edu or 713 - 348 - 5404 ) . as we have done in the past , we will post the abstract and a downloadable version of the paper ( if available ) to the website a week or two before the seminar . ? the website will also provide a link to the speaker ' s homepage so you can access his or her biographical information . ? if the paper is not available at the website , i will send a hardcopy to interested jones school faculty , to felecia jones ( economics ) , sorin sorescu ( university of houston ) , and vince kaminski ( enron ) . i will e - mail an announcement before each seminar , reminding you of the seminar date , time , and location . ? the distribution list will include everyone that receives this e - mail . ? please let me know if you would like to be deleted from the mailing list or if you know of someone who should be added . albert fu - kuo albert wang assistant professor jones graduate school of management - - ms 531 ? rice university ? 6100 main street ? houston , tx 77005 ? phone : 713 - 348 - 5404 ? fax : ? ? ? ? 713 - 348 - 5251 email : wangfa @ rice . edu http : / / www . ruf . rice . edu / ~ wangfa /",0 +"Subject: last day , contact numbers , etc . hi guys ! as most of you know by now today is my last day at enron north america . it has been really great few months and maureen has most graciously put up with my school and exam schedule . as today is also my graduation from the university of houston , i don ' t have any formal reasons to remain in houston and will be heading to the misty albion to work for enron europe as soon as my work permit for the uk is ready . the latter is still a mystery but is anticipated some time in early february . right now i am planning to come back to houston middle of january to wait for the work permit and sell my car , some furniture , etc . ( stay tuned for great deals : - ) so , i will be back to see you guys . if you miss me too much try to find consolation in miss yana kristal , a u of h student of slavic origin , who will be taking over my responsibilities starting early january . i know i will miss you and am planning to sneak in the video conferencing room during the thursday meetings . i know it won ' t be the same , but it ' s better than nothing . or you can start planning that trip to london . . . below are the numbers where if you can ' t reach me there will be information where i might be . phone numbers : houston : 713 - 213 - 7733 - cell come back to houston january 15 ( depending on how the work permit is coming ) . have very , very happy holidays and a great millenium ! martina",0 +"Subject: interview with the enron research group hello mr . kudin : vince kaminski has asked me to schedule interviews for you with some of the research group . however , tuesday , the 8 th is not a good day for everyone as we will need approximately 3 hours . could you do it thursday afternoon may 10 th ? we could start at 1 : 00 pm and be through by 4 : 00 pm . the interviewers would be : vince kaminski managing director stinson gibner vice president krishna krishnarao vice president tanya tamarchenko director zimin lu director alex huang director please let me know if this will work for you . if so , i will need you to forward me a copy of your resume . regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: interesting article about enron in japan ' s electricity newspaper japan ' s electricity newspaper ( "" denki shimbun "" , the equivalent of megawatt daily ) has been running a series of articles about the new century . several of these have focused on the power industry in the u . s . a friend of mine ran across one on enron that was published on april 13 and sent it to me . i thought you would find it interesting . the article focuses on ees in particular and about how we try to succeed by being first to meet our clients ' changing needs . it also describes how we use derivatives and risk management to reduce costs and stay competitive . the article also briefly mentions the new office in japan . the most interesting thing about the article is how incredibly positive it is about enron . given what i have read and heard about how nervous the japanese are about deregulation of the industry , i really did not expect such praise . denki shimbun also has a web site at "" www . shimbun . denki . or . jp "" . they have small summaries of the important articles of the day ( the site , however , is completely in japanese ) . another interesting site is "" www . criepi . denken . or . jp "" , the english home site of japan ' s central research institute of electric power industry ( denryoku chuo kenkyuujou ) . the site has many links to other english - language sites related to the power industry in japan . regards , eugenio",0 +"Subject: job application dear dr . kaminski , i currently hold a post - doctorate position in the mathematics department at the university of texas at austin ( with a ph . d . in theoretical physics ) . although my position here is renewable until summer 2001 , i would like to move on to a more dynamic field where i can still use my analytical skills and mathematical knowledge . since attending a series of lectures on mathematical finance given by dr . marc potters last summer i started studying the subject on my own and found it intriguing and challenging . i am interested in a position in your group ( rac ) at enron . last fall in a career seminar at ut you mentioned that people who are interested can send you their resume . if this is still relevant , please find below my resume ( in word 97 and text formats ) . thank you for your time . yours , nurit krausz nurit krausz , ph . d . http : / / www . ma . utexas . edu / users / nurit / dept . of mathematics phone : ( 512 ) 471 - 7170 university of texas at austin office : rlm 11 . 170 hours : mwf 8 : 30 - 10 resume nurit krausz university of texas department of mathematics austin , tx 78712 phone : ( 512 ) 471 - 7170 e - mail : nurit @ math . utexas . edu http : / / rene . ma . utexas . edu / users / nurit / objective a position in the field of mathematical finance utilizing broad mathematical knowledge , innovative thinking and creativity . summary of qualifications with extensive academic background and research experience , combined with experience as an engineer in the israeli air force , i possess the following : * deep mathematical and scientific knowledge . * strong analytical and problem - solving skills . * proven ability to quickly become an expert in new subjects . * ability to present clearly and effectively complicated subjects . * ability to work productively both independently and in teams . academic positions 1998 - present : post - doctorate position at the university of texas at austin , department of mathematics . education 1994 - 1998 : d . sc . in physics at the technion - israel inst . of tech . research thesis : quantum dynamics on non - compact group manifolds . supervisor : prof . m . marinov . 1992 - 1994 : m . sc . in physics at the technion - israel inst . of tech . research thesis : a study of scintillation in doped silica glass for detection of neutrino oscillation . supervisor : prof . j . goldberg . the experiments were performed at cern during the summer of 1993 . * performed the design , testing , and installation of the experimental setup from remote - controlled mechanical equipment to sophisticated electronics . * performed statistical data analysis and critical interpretation of results using software developed at cern ( paw ) . * solved a complicated problem of track reconstruction through an unusually shaped magnet for the chorus collaboration at cern , and delivered a computer code ready for implementation , still in use today . 1985 - 1989 : b . sc . in aeronautical engineering cum laude at the technion - israel institute of technology . military service 1989 - 1992 : aeronautic design engineer in the israeli air force . rank : first lieutenant . * designed and supervised numerous prototype installations of electronic equipment and changes in combat planes . * wrote procedures for harsh environmental durability tests for cockpit and avionics bay - mounted equipment . * negotiated and supervised manufacturing of parts with contractors . * attended project management , engineering and product reliability and maintenance courses . * programmed simulations of ammunition trajectories from moving aircrafts . teaching experience : 1998 - present : lecturer at the university of texas undergraduate courses : precalculus , calculus , linear algebra graduate course : theory of lie groups 1992 - 1997 physics department , technion , teaching assistant undergraduate course : elementary lab in mechanics graduate courses : group theory for physics , introduction to particle physics , relativistic quantum mechanics . computer knowledge : unix and windows os , most common word processors , excel , maple , mathematica , fortran , html , latex . publications : 1 . j . goldberg and n . krausz , response of cerium - doped silica glass in a beam at cern , proceedings of the scifi conference , notre dame university , notre dame , indiana ( 1993 ) . 2 . n . krausz and m . s . marinov , quantal dynamics on non - compact groups , proceedings of the 5 th international wigner symposium , world scientific ( 1998 ) , 398 . 3 . n . krausz and m . s . marinov , exact evolution operator on non - compact group manifolds , quant - ph / 9709050 , submitted to j . of math . phys . 4 . n . krausz , spherical averages in minkowski space , in preparation . 5 . n . krausz , quantum field theory in minkowski space , in preparation . - resume . doc",0 +"Subject: slides for jeff ' s presentation all requested slides and updates , including raw data and calculations , are in the spreadsheet below volatility calculations are up to december 8 , 2000 . - hector",0 +"Subject: re : henwood contract vince / stinson , just fyi ! ! regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 03 / 08 / 2001 08 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - - paul kraske 03 / 07 / 2001 11 : 03 pm to : sandeep kohli / enron _ development @ enron _ development cc : anshuman srivastav / enron _ development @ enron _ development subject : re : henwood contract sandeep , just to let you know , i was at a couple of meetings in london with rebecca macdonald . she pretty much raved about your presentation . sounds like you guys impresed her a fair amount and that you guys did a great job . regards to the family . paul",0 +"Subject: re : ll visa - anshuman shrivastava molly : for your information , i received this reply from anshuman today . as i mentioned in my voicemail to you today after seeing the note from neil mcgregor , there is no possible way that anshuman could be in the us to work on february 5 th . until i receive all of his documents , and the necessary information from you regarding his position in the us , i do not have the information to send to the attorneys for the visa application . once they receive the paperwork , they will need to prepare the documents in triplicate , and send to me . at this stage , i will send the documents to anshuman in india and he will need to make an appointment at the us consulate in order to have the ll visa stamped into his passport . he will not be able to come to the states to work without this visa in his passport ! all of this could take approx . 3 - 4 weeks to accomplish . i think march would be a more realistic timeframe ! please let me have your thoughts . thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 25 / 2001 09 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anshuman srivastav @ enron _ development 01 / 25 / 2001 12 : 35 : 53 am to : margaret daffin / hou / ect @ ect cc : sandeep kohli / enron _ development @ enron _ development , harsimran subject : re : ll visa - anshuman shrivastava hi margaret , apologies for not getting in touch earlier . i am unfortunately out of mumbai and will be back only on sunday . will send you all the documents on monday morning . they will reach you by latest wednesday . appreciate the help ! ! thanks ! regards , anshuman margaret daffin @ ect 01 / 24 / 2001 10 : 57 pm to : anshuman . srivastav @ enron . com cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra sengupta / enron _ development @ enron _ development , wade cline / enron _ development @ enron _ development , neil mcgregor / enron _ development @ enron _ development @ ect , harsimran subject : ll visa - anshuman shrivastava anshuman : please go ahead and complete the visa questionnaire and send the required documents so that i can proceed with your working visa for the us . regardless of the length of time you will be in the us , you will still need the ll visa in order to work here . many thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001 11 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 01 / 23 / 2001 11 : 01 am to : anshuman . srivastav @ enron . com cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra sengupta / enron _ development @ enron _ development , wade cline / enron _ development @ enron _ development , neil mcgregor / enron _ development @ enron _ development @ ect , harsimran subject : ll visa - anshuman shrivastava anshuman : i have been asked to contact you regarding your possible move to houston , texas . in order that i may begin the process of getting you an ll immigration visa , i will need you to complete the attached visa questionnaire and return it to me with copies of the following documents : a copy of all pages of your passport , even if blank copies of all previous us visas issued an updated resume , showing months and years copies of all diplomas and transcripts received if you have dependent family members coming to the states with you , copies of their passports please send to my attention , via fedex to : enron corp . 3 allen center , 3 ac 2026 a 333 clay street houston , tx 77002 please call me with any questions you may have at 713 - 345 - 5083 .",0 +"Subject: seasonal greetings seasonal greetings and best wishes for a happy and prosperous new year ! les . dr . les clewlow visiting research fellow , school of finance and economics , university of technology , sydney , australia . associate research fellow , financial options research centre , warwick business school , coventry , uk , cv 4 7 al . director , lacima group ltd . 55 skylines village , limeharbour , london , el 4 9 ts , uk . phn : + 44 ( 0 ) 171 531 9628 , fax : + 44 ( 0 ) 171 538 5781 www : http : / / www . lacimagroup . com",0 +"Subject: outage pricing model revision : allowing for power price vs . outage correlation i have included provision for providing rank correlation between "" jump occurrence in daily average power price "" and "" outage occurrence "" . the model will provide the same claim distribution as before when pricevsoutage correlation = 0 is used . claim goes up as the correlation is increased . i have performed some sensitivity analysis and the results seem to make sense . the new model workbook is "" 40901 . xls "" and corresponding dll is "" outagepricingo 40901 . dll "" , both located in o : \ grm \ research \ outagerisk \ subdirectory . the price vs . outage rank correlation input will need to be provided in "" main "" spreadsheet . please call me if you have any questions . - amitava",0 +"Subject: welcome network world fusion focus : jason meserve on security and bug patch alert today ' s focus : bug alert : welcome 03 / 06 / 00 dear wincenty kaminski , today ' s focus : bug alert : welcome by jason meserve welcome to the security and bug patch alert newsletter ! given the recent spate of high - profile denial - of - service and hack attacks and the large number of people who have signed up for this newsletter before this first edition has been even published , it is clear that security is a major concern in the it community as it should be . with technology now being looked upon as a profit rather than cost center , it departments face more pressure to keep critical systems up and running as well as secure . no chief information officer or network manager wants to have to tell the ceo that their e - commerce site has been broken into and customer credit card data copied . stories like that tend to stick in a potential customer  , s mind more than an expensive super bowl ad . it  , s hard enough to keep up with the latest new technologies , never mind latest security patch for your operating system or e - commerce application . but we  , re here to help . once a week we  , ll publish a list of patches and alerts from all the major vendors and security organizations with links to the source . we  , ll also provide other ( hopefully ) useful resources for the security - conscious it manager . comments and suggestions are always welcome ! send mail to jmeserve @ nww . com . now on with the latest patches and alerts : security glitch hits foundry switches from this week  , s network world : a security problem has cropped up in foundry networks  , serveriron switches that make the devices susceptible to denial - of - service attacks . read the story : download the patch : http : / / www . foundrynet . com / bugtraq . html * * * * * * * * new version of apache web server released the apache server project released version 1 . 3 . 12 of the popular apache web server this week . the new release fixes what apache calls a cross - site scripting problem that could allow malicious html tags to be inserted into client - side scripts . download the new version at : http : / / www . apache . org / dist / * * * * * * * * problem with linux htdig package both freebsd and debian are reporting a problem with the htdig package that runs on their respective platforms . the problem is with the htsearch and could allow a user to read any file on the local machine accessible to the user id that the script is running under ( which in most cases is  + nobody  , ) . for more information from debian : http : / / www . debian . org / security / to download a patch from freebsd : http : / / www . freebsd . org / ports / * * * * * * * * nmh linux package patched versions of nmh prior to 1 . 0 . 3 have a vulnerability that could allow malicious users to modify the mime headers in a mail message that may cause nmh  , s mshow command to execute arbitrary commands . a patch is available at : * * * * * * * * zombie zapper 1 . 1 available zombie zapper 1 . 1 helps shut down the troj _ trinoo denial - of - service client on windows nt and unix machines . more information at : * * * * * * * * problem with mysql password authentication according to the makers of freebsd , a vulnerability in the mysql database server ( prior to version 3 . 22 . 32 ) could allow anyone that can connect to the database to access it without a password . more information at : * * * * * * * * to contact jason meserve : - - - - - - - - - - - - - - - - - - - - - - - - - jason meserve is a staff writer with network world , covering search engines , portals , videoconferencing , ip multicast and document management . he also oversees the "" security alerts "" page on fusion ( http : / / www 2 . nwfusion . com / security / bulletins . html ) . jason can be reached at mailto : jmeserve @ nww . com . subscription services to subscribe or unsubscribe to any network world e - mail newsletters , go to : to change your email address , go to : subscription questions ? contact customer service by replying to this message . other questions / comments have editorial comments ? write jeff caruso , newsletter editor , at : mailto : jcaruso @ nww . com for advertising information , write jamie kalbach , account executive , at : mailto : jkalbach @ nww . com network world fusion is part of idg . net , the idg online network . it all starts here : http : / / www . idg . com copyright network world , inc . , 2000",0 +"Subject: houston visit dear research and related group team members , i will be visiting the houston office from monday 10 th july and hope to have another very useful information exchange , including updating you all on the activities in the london office by means of a presentation . for those of you who are unfamiliar with me , i have been looking after quantitative analysis for the european markets for the last 3 + years , in particular focusing on derivatives pricing and risk management techniques ( e . g . load forecasting , inflation curve building , financial options on real power stations etc . ) - look forward to meeting you all again soon . best regards , anjam ahmad research group enron europe cellular : ( 07747 ) 868131",0 +"Subject: re : agenda for ny mg metals visit hi ted and vince , thank you for conveying our thoughts exactly - tanya and i hope to close the circle with you at 4 pm , ted . regards , anjam and tanya from : ted murphy 14 / 07 / 2000 16 : 02 to : vince j kaminski / hou / ect @ ect cc : richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect , steve w young / lon / ect @ ect , eric gadd / lon / ect @ ect , david port / market risk / corp / enron @ enron subject : re : agenda for ny mg metals visit i agree with vince . ideally , this visit would supplement rather than duplicate effort . however , on the front end , i would prefer a little overkill to underkill - especially with respect to the var process . i would defer to anjam / tanya ' s opinion as to what is necessary to get an initial comfort level . remember that this is the first cut , but it will need to be refined over time to the point where it is credible enough to force someone to take a position down based on the calculatiion . if this causes some heartburn please refer those people to me . ted vince j kaminski 07 / 14 / 2000 09 : 04 am to : lloyd fleming / lon / ect @ ect cc : richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect subject : re : agenda for ny mg metals visit lloyd , speaking from experience , i think that it ' s critical for tanya and anjam to visit mg in new york and establish direct relationship with technical people . merging two risk management systems requires handling many very technical issues and face to face discussions between it and quants will be very helpful . vince from : lloyd fleming 07 / 14 / 2000 03 : 42 am to : tanya tamarchenko / hou / ect @ ect cc : andreas . barschkis @ mgusa . com @ enron , richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect , dale surbey / lon / ect @ ect , stinson gibner / hou / ect @ ect subject : re : agenda for ny mg metals visit tanya , i think most of your queries can be dealt with on the phone - i ' ll be at mg with andreas today and we ' ll call you . most of these points have already been covered with anjam in any case . i ' m also attaching a file downloaded from mercur ( mg ' s risk aggregation system ) showing monthly total positions for each metal in each entity . you can fairly easily create tables and graph what you want to see . we can talk today about getting a full deal download . regards tanya tamarchenko 13 / 07 / 2000 22 : 45 to : andreas . barschkis @ mgusa . com @ enron cc : dale surbey / lon / ect @ ect , lloyd fleming / lon / ect @ ect , richard sage / lon / ect @ ect , vince j kaminski / hou / ect @ ect , anjam ahmad / lon / ect @ ect , stinson gibner / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect , ted murphy / hou / ect @ ect subject : agenda for ny mg metals visit hi andreas , here are the issues we would like to discuss on our thursday meeting in ny : 1 . inputs for options valuation , in particular the origins of volatility curves ; 2 . information on exotic options structures ( existing 3 . the data flow ( are we going to get data from london or ny ) . 4 a . storage of positions information at mg . how to extract the positions info from mg database into spreadsheets . 4 b . existing positions structure for each metal . 5 . introduction to concentrates trading business , key personnel . best regards , tanya & anjam 713 853 3997",0 +"Subject: contact info fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 21 / 2001 10 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin _ kindall @ fpl . com @ fpl . com on 03 / 21 / 2001 10 : 25 : 28 am to : shirley . crenshaw @ enron . com , anita . dupont @ enron . com cc : subject : contact info hi . i have email access ! ! my contact info . . . phone number : ( 561 ) 625 7525 fax : ( 561 ) 625 7519 feel free to forward this info to other members of the group . i ' m still in corporate housing , so no home address yet . the only loose end that i can think of pertains to an issue that came up in the exit interview . am i to be reimbursed for unused vacation ? norma villereal said something about this , but i ' m not certain about the details . stay in touch . kevin kindall",0 +"Subject: tiger team application forms vince : the application forms , as promised . good talking to you and christie this morning . the project sounds very exciting and we look forward to working with enron . let me know if there is further info we can provide . thanks , donna - 2001 field application form 1 . doc - 2001 field application form 2 . doc",0 +"Subject: department of energy is deploying a corporate portal at facilitie s across the country star information technology brings has the tools needed to help energy companies gain knowledge . if it ' s information from oasis to market prices . the events that change prices such as weather and more are always just one click away with star information technologys ' powerful portal tools . our portal products are the difference between seeing and doing . hosting dynamic applications such as on - line reports , calendars , e - mail , and commerce services create a one - stop shop for users to go about almost all of their daily tasks : analyzing customer trends , checking schedules , viewing revenue - or project - related performance metrics , and buying or selling products . combining all the information relevant to users ' work with the ability to act on that information enables organizations to get more done . five government agencies deploy plumtree corporate portal at hundreds of facilities - the naval air systems command ( navair ) , department of energy ( doe ) , department of defense , national institutes of health and army public affairs center are deploying a corporate portal at facilities across the country as part of ongoing governmental initiatives to maximize efficiency , develop more online content and provide private sector levels of customer service . the plumtree corporate portal integrates regulatory , enforcement and incident database reports , enterprise applications and internet services into the agencies ' portals as portal gadgets ( tm ) , plug - in modules that embed components of applications and interactive internet services in a personalized portal page . the portal growth in the public sector is driven by its success applying business technology to the specific challenges of government , empowering federal agencies to simplify access to their data , reduce paperwork , benefit from the resources on the internet and share information securely with their employees , contractors and constituencies . for more information on how star information technology can help your business turn knowledge into power contact us today at 508 - 359 - 6891 ext 115 . christopher k . heisler product manager 508 - 359 - 6892 ext 115 www . starit . com cheisler @ starit . com we make knowledge power",0 +"Subject: user id and password update dear subscriber , ? ? ? ? ? ? ? ? institutional investors newsletters is in the process of upgrading its web sites backend database . ? we have found that you have different user names and passwords for the following newsletters : derivatives week ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? http : / / www . derivativesweek . com power finance ( 212 ) 224 - 3491 fax nhumphrey @ iinews . com",0 +"Subject: re : energy book and articles vince , that ' s good news . anything you need from me please feel free to ask - if we can get the ball rolling soon we can time things well with the publication of the book ( my diary says that there are 2 weeks until the contract goes out on you and grant . . . ) . best regards . chris . - - - - - original message - - - - - from : vince j kaminski to : chris strickland cc : vince j kaminski ; sent : wednesday , may 17 , 2000 12 : 53 am subject : re : energy book and articles > > > chris , > > yes , i mentioned it to both the us - editor and robin . > they were very interested and i don ' t think there should be any problem > with this initiative . > > i shall follow up with another message to jane locke and robin lancaster . > > vince > > > > > "" chris strickland "" on 05 / 15 / 2000 06 : 00 : 00 pm > > please respond to "" chris strickland "" > > to : "" vince j kaminski "" > cc : > subject : re : energy book and articles > > > vince , > > thanks , i would be very interested to have a look . > > my question was a bit vague - i meant to ask if you had spoken to the editor > about the series of articles ? > > best regards . > > chris . > > > - - - - - original message - - - - - > from : vince j kaminski > to : chris strickland > cc : vince j kaminski > sent : tuesday , may 16 , 2000 8 : 15 am > subject : re : energy book and articles > > > > > > > > chris , > > > > yes , i was a keynote speaker . i shall send you my presentation . > > > > vince > > > > > > > > > > > > > > "" chris strickland "" on 05 / 15 / 2000 06 : 31 : 14 am > > > > please respond to "" chris strickland "" > > > > to : "" vincejkaminski "" > > cc : > > subject : energy book and articles > > > > > > > > dear vince > > > > thanks for your voice mail last week . did you get to talk to eprm in > houston > > last week ? > > > > best regards . > > > > chris . > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : resumes vince , see below for my picks based on the resumes . the others marked as "" no "" might be ok as well , but did not seem to have as much slant towards finance . - - stinson vince j kaminski 04 / 04 / 2001 03 : 45 pm to : stinson gibner / hou / ect @ ect cc : subject : resumes - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 04 / 2001 03 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - to : cc : subject : resumes here are some people you might want to speak with . ? siriam lives in houston . ? please see the attached resumes of the following : ? karim ashktorab yes ( might be expensive ? ) stephen liu no farshad ravanshad no matthew rusk no samir ranjan yes cedric chow no sriram vasudevan maybe ( already in houston ) ? regards , ? scott gerson focus capital markets 71 vanderbilt avenue suite 200 new york , ny 10017 ( 212 ) 986 - 3344 tele ( 212 ) 986 - 3370 fax - focus sriram vasudevan . doc - focus cedric chow . doc - focus samir ranjan . doc - focus matthew rusk . doc - focus farshad ravanshad . doc - focus stephen liu . doc - focus karim ashktorab . doc",0 +"Subject: re : confidential molly , we are in process of setting up an interview . vince enron north america corp . from : molly magee 10 / 18 / 2000 02 : 56 pm to : jlew @ kent . edu cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : confidential dr . lew : vince kaminski has asked me to contact you in connection with your interest in enron . he would like to schedule a mutually convenient time for you to visit houston and meet with his group . the dates that have been suggested are : wednesday , 10 / 25 / 2000 ; thursday , 10 / 26 / 2000 ; or friday , 10 / 27 / 2000 . i hope that one of these dates will be convenient for you to come in for interviews . you may either respond to me by email , or phone me at 713 853 - 4804 , whichever is easier for you . i am also leaving a voicemail message for you at your home phone number . we hope to hear from you soon . molly magee recruiting manager",0 +"Subject: re : garp credit derivatives discussion group vince first meeting will be dec 11 or 12 at west deutche landesbank , ny . look for phone - in details next week . - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , december 01 , 2000 10 : 24 am to : garpnyl @ home . com cc : vince . j . kaminski @ enron . com subject : re : garp credit derivatives discussion group philip , thanks for keeping me in mind . yes , i would be interested . vince "" philip merrill "" on 11 / 30 / 2000 04 : 47 : 20 pm please respond to to : cc : subject : garp credit derivatives discussion group vince we are starting a credit derivatives discussion group in new york . is this something you would be interested in ? like fas 133 an 800 - call - in number will be provided for houston participants . our first meeting will be in a week or so . regards , philip merrill garp regional director , new york 973 - 258 - 1540",0 +"Subject: university of texas conference on energy finance , february 2001 jeff , our friends at the university of texas are planning a conference on energy economics and finance in february of next year . they would like very much to have you as a keynote speaker . given our good , long - term relationship with ut , i would recommend that you speak at this conference . i talked to prof . ehud ronn a few times about the program and i think that this will be an excellent forum to present enron ' s accomplishments and agenda for the future . i am sure that rick causey will join me in making the same recommendation . vince",0 +"Subject: public affairs organizational announcement i am pleased to announce the following changes in the government and regulatory affairs organization : rick shapiro  ) managing director of government affairs for the americas . rick is currently leading the government and regulatory affairs teams for the us and canada . he will now assume responsibility for north and south america . ricardo charvel ( senior director of government affairs for mexico ) , jose bestard ( vice president of government affairs for south america ) , and joe hillings ( vice president of federal government affairs ) will now report to rick . rick and his team will support enron  , s north american business units as well as the caribbean and southern cone regions . mark schroeder  ) vice president government affairs for europe , asia and africa . mark is currently leading the government and regulatory affairs teams for enron europe . he will now assume the additional responsibility of supporting the apachi and india organizations . jane wilson will now focus her attention on enron india and will report to mark as will our government and regulatory affairs teams serving the apachi region . mike terraso  ) vice president environment , health & safety and chief environmental officer . mike is currently serving as vice president of environment , health and safety for the gas pipeline group . mike has increasingly become involved in environmental issues facing enron  , s businesses around the world . mike will retain his current responsibilities and will assume leadership of the environmental affairs team . john hardy  ) vice president global project finance . john will report directly to me and will continue his current responsibilities representing enron before us and multilateral project finance agencies . please join in me in congratulating these individuals on their responsibilities . attached is a revised organization chart reflecting these changes . attachment :",0 +"Subject: re : march real options conference vince . thanks for getting back to me . i will have my secretary try to set up something among the three of us . gary , as vince cannot make a call on wednesday , i will have my assistant call you to try to find a suitable time . rachel , gary jackson ' s phone number is 423 751 2593 and vince kaminski ' s secretary ' s number is given below . at 03 : 34 pm 2 / 21 / 00 - 0600 , you wrote : > > > peter , > > i am in london till wednesday afternoon . i shall be back at the office on > thursday . > > please , feel free to call my secretary , shirley crenshaw 713 853 5290 , to > schedule > a conference call . i cannot access my calendar from london and don ' t know my > commitments for this day . > > vince > > > > > > peter tufano on 02 / 18 / 2000 03 : 56 : 33 pm > > to : vince j kaminski / hou / ect @ ect , gljackson 2 @ tva . gov > cc : > subject : re : march real options conference > > > > dear vince and gary , > > we are all speaking at the march real options session in ny . my work in > real options in the energy field has come , to a large part , from my > casewriting in your two organizations , so i feel that we should probably > allocate more time toward your presentations and less to mine . while we > have a two hour block among the three of us , i think we can freely > re - arrange things to produce the best result . would you two like to > schedule a brief conference call to coordinate our talks ? i am free > virtually all of next wednesday 2 / 23 , perhaps we could talk at 10 am ( est ) > or 2 pm ( est ) ? i am happy to arrange the call , if you send me your phone > numbers . thanks . > > peter tufano > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - > prof . peter tufano > harvard business school > morgan hall 377 > soldiers field > boston , massachusetts 02163 > phone : ( 617 ) 495 - 6855 > fax : ( 617 ) 496 - 6592 > email : ptufano @ hbs . edu > http : / / www . people . hbs . edu / ptufano > professor peter tufano harvard business school morgan 377 soldiers field boston , ma 02163 phone ( 617 ) 495 - 6855 fax ( 617 ) 496 - 6592 email ptufano @ hbs . edu http : / / www . people . hbs . edu / ptufano",0 +"Subject: re : spreadsheet for george posey george , this is the first cut at the problem you gave us , done by my associate clayton vernon . please , feel free to call him with any question . your friend should check what were the sermons he gave on april 19 and april 25 , in 1998 and 1999 , respectively . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 20 / 2000 02 : 49 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - clayton vernon @ enron 01 / 20 / 2000 10 : 56 am to : vince j kaminski / hou / ect @ ect cc : subject : re : spreadsheet for george posey vince - here is an analysis of the fund giving at the church . first off , it appears from the data that a special "" appeal "" for fund giving was made ( from the pulpit ? ) on april 19 , 1998 and april 25 , 1999 , ( perhaps tied rhetorically into income taxes ? ) . then , by going back and incorporating obvious dates from the calendars for 1997 - 1999 , the following regression analysis is made , where each effect is added independently : giving this sunday = $ 4403 + a minor $ 3 weekly time trend ( i . e . , multiply by the number of weeks since jan . 5 , 1997 ) + no pure effect from last week ' s contributions ( i . e . , denies first - order autoregressive effects ) + $ 2426 if easter sunday or the sunday nearest christmas + $ 9695 if ( pastoral appeal ) april 19 , 1998 or april 25 , 1999 - $ 340 if the sunday falls on the weekend of a monday federal holiday - $ 50 if the sunday following thanksgiving - $ 73 if a summer weekend ( june 1 thru august 31 ) the pure time trend is very small , so an annual projection based on all 3 years data would be for giving to increase only a minor amount ( $ 150 ) for 2000 assuming a similar appeal for giving is made this april . clayton",0 +"Subject: candlestick charts fyi fallout - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 04 / 2001 02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : sue neville / enron @ enronxgate on 05 / 04 / 2001 02 : 02 pm to : mike a roberts / hou / ect @ ect cc : lee ferrell / enron @ enronxgate , kent miller / et & s / enron @ enron subject : candlestick charts mike , i work for enron transportation and storage in their storage marketing group . my group has been using technical analysis from your website to help make daily storage trading revenue decisions . on your web site , you indicated you would be discontinueing some of the information we use . we had interviewed external technical service profiders , and chose not to buy their service because we had your information available to us to help us make financial decisions . specifically , we need the candlestick charts and analysis on natural gas , and we also need the elliot wave analysis on natural gas . can you please reconsider your decision to discontinue the technical analysis data aforementioned ? sue neville director , storage marketing ets",0 +"Subject: tiger team info vince , here is the info re : tiger team . i haven ' t opened it yet , but i will have my group work on any of the general enron information requested . thanks for your time and input this morning ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 10 / 10 / 2000 03 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - piazze on 10 / 10 / 2000 10 : 49 : 35 am to : "" ' christie . patrick @ enron . com ' "" cc : subject : tiger team info christie : nice talking with you and vince this morning . the project sounds very exciting and we look forward to working with enron . attached is info for your review . let me know if there is further info i can provide to you . sincerely , donna piazze program director field application project the wharton school univ . of pennsylvania ( 215 ) 573 - 8394 ( 215 ) 573 - 5727 fax fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu - tiger team brochure 2000 - 2001 . doc - tiger host responsibilities . doc - non - disclosure - redraft 1 _ . doc - 2001 field application form 1 . doc - 2001 field application form 2 . doc",0 +"Subject: re : invitation to speak at infocast ' s upcoming "" market price volatility "" program ron , i am sorry to inform you that due to a scheduling conflict i cannot speak at this conference . i want to thank you for considering me as a speaker . vince kaminski "" ron henderson "" on 12 / 30 / 99 06 : 57 : 05 pm please respond to ronh @ . com to : vince j kaminski / hou / ect @ ect cc : subject : invitation to speak at infocast ' s upcoming "" market price volatility "" program hi vince , i would like to invite you , or one of your staff , to be a speaker at infocast ' s upcoming conference "" market price volatility : how to model , assess , and manage price volatility in today ' s power markets , "" scheduled for may 10 - 12 , 2000 , in chicago . i am attaching a copy of the draft program agenda for your review . as you may note , we wish to take our recent houston meeting a step farther by making this next session a more technically - oriented meeting . there are two spots you may wish to consider : 1 . the session entitled "" case study in modeling volatility , "" scheduled for wednesday , may 10 th , from 3 : 30 to 5 : 00 pm . you will note below , what we had in mind for the case study . 2 . the talk "" a real options approach to asset valuation , "" scheduled for thursday , may 11 th , from 10 : 30 am to 12 : 00 pm . i am running behind schedule in finalizing this program , so i will give you a call shortly to follow up with you . if you wish , please feel free to call me at 818 - 888 - 4445 ext . 28 . i hope you can join us . ron henderson infocast 818 - 888 - 4445 ext . 28 ronh @ . com case study guidelines 1 . model should be for a particular market . examples : pjm , chicago , ecar , southern california . lb ( optional ) . model should be for a particular purpose . examples : valuing a new combustion turbine at the florida / georgia border , bidding on a portfolio of power plants up for sale in nepool , valuing a retail portfolio in pennsylvania . 2 . model should be estimated on a particular data set . examples : daily nymex close prices for palo verde , pjm hourly spot prices for 1998 - 1999 . 3 . case study should describe several candidate models , for volatility and / or market price , that were considered . case study should discuss why these models were considered . candidate models should be described mathematically and verbally . 4 . evaluation criteria for choosing among the models should be explicitly identified , and quantified to the extent possible . examples of evaluation criteria : residuals that are not autorcorrelated , stationarity , r - squared , akaike information criterion . 5 . parameter estimates for each candidate model should be displayed . the estimation procedure employed should be briefly described . 6 . some diagnostics of model fit ( vis - a - vis data set ) should be presented . 7 . if possible , predictive power of model should be assessed . generally , the case study should include all of the items above . the case study may include other things . - draft agenda v . 2 . doc",0 +"Subject: re : phone interview there will be a telephone interview with jerzy jarosz ( resume attached below ) on wednesday , july 5 at 4 : 30 pm houston time . he would like you to call him at his home - telephone # : 416 / 237 - 0977 i have reserved ebl 938 for this interview . if you have any questions , please call me . thanks ! shirley crenshaw vince j kaminski 06 / 27 / 2000 10 : 11 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : phone interview shirley , please , set up a phone interview with this person . stinson , krishna , zimin . vince",0 +"Subject: no job you have probably heard that our group is being broken up . some people were put in other groups but i was not fortunate enough to be one of those people . hr will try for the month of march to find a position for me within enron but that is not likely to happen . tomorrow is my last full day here - i will be in and out for the month of march . i am informing nice people that i like and you are one of those .",0 +"Subject: re : spring 2001 energy finance conference participation ehud , i want to invite louise kitchen to this conference . she is the president of enrononline . greg whalley will be in london this day . vince "" ehud i . ronn "" on 11 / 02 / 2000 05 : 03 : 22 pm to : vince . j . kaminski @ enron . com cc : subject : spring 2001 energy finance conference participation vince , > given the energy - finance focus of the conference , do you believe the networks topics is sufficiently energy - related ? per my above concern , i ' d like to discuss the matter with you further . thanks , ehud ehud i . ronn jack s . josey professor in energy studies department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: abstract shmuel , this is the abstract for my presentation on the 23 rd of october . i am in london and paris this week . i can be reached at my private e - mail address vkaminski @ aol . com . please , feel free to suggest modifications to the abstract . vince > the last three years were characterized by exceptionally high volatility of > the power prices in the us markets . the market developments have created a > number of unique challenges for energy industry economists . one immediate > question we have to answer is how to measure volatility of energy prices . > although we can all agree that the prices in the power markets are > characterized by high variability , the traditional measures used in financial > economics ( annualized standard deviation of log price returns ) may not fit > well electricity prices . the second challenge is to explain the sources of > high price volatility and to answer the question to what extent it can be > attributed to problems that can be addressed in the long run . such problems > include flaws in market design that allow some market participants to abuse > market power , limited availability and / or unequal access to transmission , > temporary shortages of generation capacity . some factors underlying high > volatility of electricity prices may be of permanent nature and may be a > necessary price to pay for increased market efficiency and expanded customer > choice .",0 +"Subject: re : enron - nevrl - aa meeting on july 27 professor kothari : thank you for the communique . your recollection regarding a "" next step "" for enron is correct - we are currently working to define enron ' s key issues and research questions . the group will reconvene this week . following that meeting , i will provide an update to you regarding our progress . with regards , amy oberg "" s . p . kothari "" on 08 / 07 / 2000 07 : 43 : 41 am to : aoberg @ enron . com cc : subject : enron - nevrl - aa meeting on july 27 dear amy : thank you and your colleagues for taking the time to video - conference with us at mit and aa professionals associated with nevrl . i enjoyed the exchange and was left impressed by the technical savvy and keen interest in research on part of enron . i look forward to hearing from you sometime soon . as i recall , we agreed that enron would forward a few issues / questions that nevrl could potentially address . once we have a meeting of minds on the set of issues , we can discuss further how best to collaborate and accomplish our goals . i believe both sides would benefit immensely . mit faculty can research questions relevant to industry and you might receive some answers you are looking for ! with best regards , s . p . - - - - - - - - - - - - - - professor s . p . kothari phone : ( 617 ) 253 - 0994 gordon y billard professor fax : ( 617 ) 253 - 0603 of accounting e - mail : kothari @ mit . edu sloan school of management , e 52 - 325 web : http : / / web . mit . edu / kothari / www / massachusetts institute of technology 50 memorial drive cambridge , ma 02142 - 1347 - - - - - - - - - - - - - - -",0 +"Subject: class request : xl 97 range - 567 excel 97 , range names and database features , william smith your approval is required for william smith to attend the following class . to grant approval , send a reply to "" lpharr @ enron . com "" ( notesmail : lerea pharr / hou / ect @ ect ) . be sure to include employee ' s name and class number in reply . excel 97 , range names and database features session dates & times : 4 / 11 / 2000 8 : 30 : 00 am - 11 : 30 : 00 am location : eb 572 no show / participant fee : $ 110 . 00 if you have any questions , please call the technology training coordinator at 713 - 853 - 1816 .",0 +"Subject: re : follow - up interview on 8 / 21 / 00 rabi , thanks for your message . everybody who interviewed you was greatly impressed with your technical skills and professional attitude . we shall extend an offer to you within a day or two . vince rabi de on 08 / 22 / 2000 02 : 57 : 37 pm to : vince kaminsky cc : subject : follow - up interview on 8 / 21 / 00 dear dr . kaminsky : thank you very much for arranging the follow - up interview with your internal clients . i visited mr . ted murphy and his staff at rac and mr . dennis benevides at ees yesterday . i was impressed with level of risk technology employed by enron to achieve its business objectives . i want to reiterate my strong interest in joining your group , which is held in very high esteem both inside and outside of enron . ? i look forward to hearing from you . sincerely , rabi s . de do you yahoo ! ? yahoo ! mail - free email you can access from anywhere !",0 +"Subject: re : bullet points hi vince , thanks for the bullets . regarding power 2001 , it certainly does promise to be a very interesting event . have a great week , paul - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , april 09 , 2001 9 : 11 am to : pbristow @ riskwaters . com cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com subject : bullet points paul , i am sending you modified bullet points . the modifications are in red . apologies for a delay in responding to your messages . by the way , power 2001 gets only more and more interesting every day . vince ( see attached file : financial maths draft . doc )",0 +"Subject: re : attend pserc seminar on 11 / 30 and 12 / 1 lance . perfect . vince lance cunningham @ enron on 11 / 13 / 2000 10 : 06 : 26 am to : vince j kaminski / hou / ect @ ect cc : subject : attend pserc seminar on 11 / 30 and 12 / 1 vince , i will be able to attend the pserc seminar on nov . 30 and dec . 1 . i also picked up some additional information from ut concerning pserc this past weekend while i was in austin .",0 +"Subject: re : e - strategy for metals trading - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jeffrey a shankman @ ect on 10 / 25 / 2000 03 : 28 pm to : maureen raymond / hou / ect @ enron cc : subject : re : e - strategy for metals trading thanks fo rthe update . jeff maureen raymond @ enron 10 / 25 / 2000 02 : 58 pm sent by : gwyn koepke @ enron to : john sherriff / lon / ect @ ect , larry lawyer / enron communications @ enron communications , jeffrey a shankman / hou / ect @ ect , mike mccullough / et & s / enron @ enron cc : bob schorr / hou / ect @ ect subject : e - strategy for metals trading attached is an article from yesterday ' s ft regarding the efforts by a consortia of four major international metals and mining producers to develop an internet marketplace for producers and consumers . as we come across this type of information to keep you abreast of developments in the commodity markets , we will pass it along . maureen raymond - castaneda",0 +"Subject: re : brown bag tom : yes , we can arrange that . zimin tom halliburton @ enron 12 / 05 / 2000 01 : 52 pm to : alex huang / corp / enron @ enron , zimin lu / hou / ect @ ect cc : subject : brown bag alex , zimin , friday 19 th january i have asked leon lasdon from ut austin to talk on non - linear programming . let me know asap if you have something else planned . yo folks are co - ordinating these talks ? ? tom",0 +"Subject: termination payments - ees energy outsource agreements vince , attached is a very brief white paper on the issue of termination payments for facility closures and sales . i would like to discuss this concept with you and some of your people in the coming days to establish whether this has merit and how we might proceed . my assistant , cheryl brashier , will set up some time with you . thanks . richard",0 +"Subject: cinergy monthly prices 1998 to date margaret , please find attached file with cinergy prices ( last day of the month ) starting 1998 to date . i have also included daily price for the same period just in case you might need it . the source of the data is megawatt daily price survey . note that prices are given as common low and common high which means that data was gathered through representative sample survey . please let me know if you need any additional data . regards , elena vince j kaminski @ ect 02 / 27 / 2001 05 : 41 pm to : elena chilkina / corp / enron @ enron cc : kevin g moore / hou / ect @ ect , vince j kaminski / hou / ect @ ect , margaret carson / corp / enron @ enron subject : cinergy monthly prices 1998 to date elena , can you , please , help wiht this request ? kevin , please , call me if elena is not in the office on wednesday . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 27 / 2001 05 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret carson @ enron 02 / 27 / 2001 09 : 15 am to : vince j kaminski / hou / ect @ ect cc : kathryn corbally / corp / enron @ enron subject : cinergy monthly prices 1998 to date from your historical databases can you kindly have someone send me and kathleen corbally the 12 month ( either last day of month or monthly average , whichever you have available ) cinergy prices for 1998 to date . . . for an investor relations slide we are working on ? ? thanks a lot . . . margaret",0 +"Subject: re : your visit to enron joe , fyi . please plan on attending . we should schedule a meeting with mark and the rest of the weather team . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 06 / 2000 10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" francis x . diebold "" on 11 / 04 / 2000 08 : 47 : 41 am to : shirley . crenshaw @ enron . com cc : vince kaminski subject : re : your visit to enron shirley , the 21 st is perfect . i will go ahead and purchase my plane tickets . would you please make me a hotel reservation for the night of the 21 st ? many thanks , frank diebold shirley . crenshaw @ enron . com wrote : > good morning professor diebold : > > i am vince kaminski ' s assistant and he has forwarded your emails to me > for scheduling purpose . unfortunately , we have a conflict on december > 14 th . can you possibly come on the 21 st ? > > i hope you have not already made your reservations . if i can do anything > to assist you , please let me know . > > best regards , > > shirley crenshaw > administrative coordinator > enron research group > 713 - 853 - 5290 > > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 03 / 2000 > 09 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - - > > vince j kaminski > 11 / 02 / 2000 04 : 30 pm > > to : "" francis x . diebold "" @ enron > cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect > subject : re : visit ? ( document link : shirley crenshaw ) > > frank , > > dec 14 would be better for us . we have already scheduled > an internal presentation on december 7 . please , go ahead and make a > reservation . > the best place to stay is hyatt regency downtown or doubletree downtown > ( within a walking distance to enron ) . it is important to specify the > downtown > location for both hotels . > > vince > > "" francis x . diebold "" on 11 / 02 / 2000 03 : 00 : 49 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : visit ? > > sounds good , vince . how about dec 7 ? the roundtrip coach fare , regardless > of > airline , is about $ 1900 . i hope that won ' t break the bank . once i have > your > approval , i ' ll go ahead and book it . best , frank > > vince . j . kaminski @ enron . com wrote : > > > frank , > > > > yes , i would be very interested in meeting with you in houston in > december . > > the best day for visit would be thursday when my group has a lunch > meeting > > and you could meet the rest of the research unit . > > > > please , let me know what day would work for you . we shall be very glad to > > cover the cost of your trip . > > > > vince > > > > i > > > > "" francis x . diebold "" on 10 / 31 / 2000 01 : 01 : 11 pm > > > > to : vince kaminski > > cc : > > subject : visit ? > > > > hi vince , > > are you still interested in my visiting for a day , perhaps in dec or > > jan ? i have begun a project on unobserved - components modeling of > > weather patterns , so it would be productive and fun to compare notes . > > best , > > frank > > > > - - > > francis x . diebold > > wp carey professor > > > > department of economics > > university of pennsylvania > > 3718 locust walk > > philadelphia , pa 19104 - 6297 > > > > fdiebold @ sas . upenn . edu > > http : / / www . ssc . upenn . edu / ~ diebold > > > > ( 215 ) 898 - 1507 telephone > > ( 215 ) 573 - 4217 fax > > - - > francis x . diebold > wp carey professor > > department of economics > university of pennsylvania > 3718 locust walk > philadelphia , pa 19104 - 6297 > > fdiebold @ sas . upenn . edu > http : / / www . ssc . upenn . edu / ~ diebold > > ( 215 ) 898 - 1507 telephone > ( 215 ) 573 - 4217 fax - - francis x . diebold wp carey professor department of economics university of pennsylvania 3718 locust walk philadelphia , pa 19104 - 6297 fdiebold @ sas . upenn . edu http : / / www . ssc . upenn . edu / ~ diebold ( 215 ) 898 - 1507 telephone ( 215 ) 573 - 4217 fax",0 +"Subject: re : grades got them - thank you ! - pvc at 05 : 21 pm 5 / 2 / 01 - 0500 , you wrote : > pam , > > another team : > > elena chilkina > robert j . guadette > joseph helms > kenneth jett > todd litton > mark westmoreland > > > grade : a - > > > vince kaminski",0 +"Subject: allocations it is now official ! ! ! effective august 1 , 2000 , research is part of ena . can you review the attached file and let me know if we need to update the allocation ? also , can you tell me which commercial teams in ena does research support ? if you have any questions , please call me at 5 - 7094 . thanx . - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 08 / 17 / 2000 03 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 26 / 2000 01 : 12 pm to : becky pham / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : allocations becky , please , take a look at the allocations sheet . vince",0 +"Subject: re : mgmt 656 pam thanks yes , please , send me the e - mail addresses . vince pamela vande krol castro on 01 / 26 / 2001 10 : 40 : 17 am to : vince . j . kaminski @ enron . com cc : subject : mgmt 656 here are your latest rosters . let me know if you would like the spreadsheet with their e - mail addresses as well ! - pam ( 6223 ) - 656 . doc",0 +"Subject: credit reserve model meeting vince , the number you will need to call - in for the credit reserve model meeting on tuesday , february 13 at 4 : 00 is 713 . 345 . 3324 . if you have any questions , please do not hestitate to call me at x 33565 . thank you . terri greenlee",0 +"Subject: schedule for aram sogomonian following is the schedule for aram sogomonian : friday , april 28 - eb 2935 8 : 30 - 9 : 30 . - vince kaminski 9 : 30 - 10 : 30 - andrea reed 10 : 30 - 11 : 30 - carl tricoli 11 : 30 - 12 : 30 - jesus ' melendrez",0 +"Subject: re : enron - resume interview of james valverde johan my apologies for getting back to you with a delay . we shall be interested in talking to james . please , let me know if : 1 . you have an umbrella agreement with enron 2 . can we contact james directly , or should we work through you . vince johan dahl on 01 / 09 / 2001 12 : 33 : 08 pm to : vkamins @ enron . com cc : subject : enron - resume interview of james valverde",0 +"Subject: re : summer associate mentor ginger however , we encourage you to contact guiseppe prior to the reception if possible . please rsvp your attendance to cheryl kuehl at x 39804 or by email . thank you charlene jackson",0 +"Subject: re : nj alliance michael lassle is in charge of our lighting best - practices . he is the person mr . eaton should contact . michael is in houston and his number is ( 713 ) 853 - 5023 . osman vince j kaminski @ ect 02 / 17 / 2000 07 : 55 am to : "" william eaton "" cc : osman sezgen / hou / ees @ ees subject : re : nj alliance bill , i forwarded your message to my associate , osman sezgen , who supports our energy services group . he will e - mail you the name of a contact at enron . vince kaminski "" william eaton "" on 02 / 16 / 2000 08 : 25 : 02 pm to : shelm @ globalcloud . net cc : steing @ conedsolutions . com , robert . blake @ conectiv . com , marianne . abdul @ conectiv . com , bekmank @ conedenergy . com , david l fairley / hou / ect @ ect , robinsonm @ conedenergy . com , nwilson @ delmarva . com , hudsonw @ detroitedison . com , cndavis @ duke - energy . com , hbburnham @ duke - energy . com , jhickman @ duke - energy . com , paul . skurdahl @ engageenergy . com , james mackey / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mrollhei @ enron . com , hnmorris @ metromediaenergy . com , npalmer @ execpc . com , chibbard @ noresco . com , mhuang @ usgen . com , bshay @ powerdirect . com , cmidura @ pseg . com , ghallam @ energy . twc . com subject : nj alliance aesp members and utility affiliates , we are looking for a good fit with one of the utilities intent on doing business in the nj , ct , pa , ny territory . our qualifications and company profile may be previewed at our web site , www . lightsourceonline . com . email contact information in response to this message . thanks , bill eaton - attl . htm",0 +"Subject: contract summaries attached are the contract summaries for elba island term sheet , the heogh galleon and exmar charter parties and the option contract on the 3 rd and 4 th vessel . i hope to finish summaries on eco - electrica and jose soon .",0 +"Subject: re : working with enron on catastrophic risk howard , thanks for the message and the paper . we shall hold an internal follow - up meeting next monday to review potential projects on which we could cooperate in the future . vasant and i will contact you to discuss our recommendations regarding the future research agenda . vince "" kunreuther , howard "" on 12 / 14 / 2000 10 : 07 : 11 am to : "" bouillion ( e - mail ) "" , "" carrick ( e - mail ) "" , "" hoog ( e - mail ) "" , "" kaminski ( e - mail ) "" , "" vasant ( e - mail ) "" cc : "" doherty , neil a "" , "" kleindorfer , paul "" , "" thomas , louis a "" , "" weigelt , keith w "" subject : working with enron on catastrophic risk dear vince , jim , george , david and vasant : neil doherty , paul kleindorfer and i very much enjoyed our discussion last wednesday at wharton with you on future joint research with enron over the coming year . in particular , we see the whole area of capital management and catastrophic risk as a fruitful area for foint collaboration . i am sharing this message with louis thomas and keith weigelt who direct the fap mba program in the hopes that we can find a team to work with us on these issues next semester . attached is a revised version of our paper on "" evaluating risk bearing , mitigation and risk transfer using exceedance probability curves : project update "" . we would greatly appreciate you and your colleagues looking at the section on "" cat bonds covering multiple risks "" ( pp . 15 - 19 ) to see whether our example and conclusions make sense to you . we look forward to working with your team at enron regarding ways that we can build on these preliminary findings to make cat bonds for weather risks more attractive . best wishes for the holiday . regards , howard howard kunreuther cecilia yen koo professor of decisions sciences and public policy chairperson operations and information management department 1326 steinberg hall - dietrich hall wharton school university of pennsylvania philadelphia , pa 19104 - 6366 phone : 215 - 898 - 4589 fax : 215 - 573 - 2130 email : kunreuth @ wharton . upenn . edu - epcurvepaper - final - dl 0 . doc",0 +"Subject: re : desk move / computer stuff thanks karin . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 20 / 2001 08 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources canada corp . from : karin ahamer @ enron 04 / 20 / 2001 06 : 57 am to : kevin g moore / hou / ect @ ect cc : subject : re : desk move / computer stuff kevin don ' t worry i haven ' t forgotten about stephen . he will be moved and sit next to tony . don ' t know what they are talking about loan computers but i am on the case . regards karin avistar has been all set up as far as i know but someone has to come in again on monday to re - install it on tonys new computer . kevin g moore @ ect 20 / 04 / 2001 12 : 27 to : karin ahamer / eu / enron @ enron , stephen bennett / na / enron @ enron , mike a roberts / hou / ect @ ect , tony hamilton / eu / enron @ enron cc : subject : re : desk move / computer stuff hello karin , i noticed that tony is taken care of , but what about stephen . tony and stephen are a team , they work very closely together . stephen also needs to be aware of what is taking place as well . if there is a problem with cost centers please contact me , but please try and have both guys set up for monday morning . thanks so much . kevin moore by the way have the avistar set - up been completed . . . . . . . please inform . . . enron capital & trade resources canada corp . from : karin ahamer @ enron 04 / 20 / 2001 03 : 00 am to : stephen bennett / na / enron @ enron , graham aley / lon / ect cc : tony hamilton / eu / enron @ enron , kevin g moore / hou / ect @ ect subject : re : desk move / computer stuff steve i have ordered a computer for tony which it should know about . i believe the contact person is steve deakin . i am in a course all day today but will look into it at lunchtime . regards karin enron capital & trade resources corp . from : stephen bennett 19 / 04 / 2001 16 : 53 to : karin ahamer / eu / enron @ enron cc : tony hamilton / eu / enron @ enron , kevin g moore / hou / ect @ ect subject : desk move / computer stuff hi karin , i just wanted to check the status of our change in equipment for start of business monday . i ' ve been told that tony and i will be using loaner pc ' s . the folks in it are asking me where that loaner pc is so they can install all of the software that i need . slava has told me that you are the point of contact . i just wanted to check with you to see if you need any additional information from me - or if i can be of help in any way . thanks ! ! steve stephen bennett senior meteorologist enron research london temp ext : 34761 houston : 001 713 345 3661",0 +"Subject: maureen raymoin ' ds review norma , maureen raymond refuses to sign her review . can you , please , join us tomorrow to discuss it . i have a time slot available at 2 : 00 but i can reorganize my schedule to accommodate you . vince",0 +"Subject: john sherriff ' s copper position ted , bjorn , any info about this position ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 26 / 2000 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . - europe from : anjam ahmad 07 / 26 / 2000 03 : 55 am to : esther gerratt / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , andreas . barschkis @ mgusa . com @ enron , tanya tamarchenko / hou / ect @ ect subject : john sherriff ' s copper position hi esther , i just talked to john sherriff about his "" enron "" copper position . i suspect that this is not currently being captured within the mg mercur position database - he would like to have that included in the var spreadsheet and shown as a separate line . do you have any information regarding this deal ( i . e . position sizes , qualities etc . ) or be able to direct me to someone who may be able to assist in getting this information ? thanks , anjam x 35383",0 +"Subject: is the supply rebound beginning ? an update on cera ' s outlook for us gas productive capacity - cera conference call notification title : is the supply rebound beginning ? an update on cera ' s outlook for us gas productive capacity url : http : / / www 20 . cera . com / eprofile ? u = 35 netscape navigator 3 . 02 or higher ; or sun hot java ( tm ) close all desktop applications and disable your screen saver . to ensure computer compatibility , complete the internet instructions before the day of the call . a message will appear telling you that your meeting is not ready to start . however , it also informs you about any action that you may need to take to prepare your computer to participate . technical assistance if you experience difficulties during the call , you may signal for technical assistance by pressing * 0 ( star , zero ) on your telephone keypad , once connected to the audio portion of the conference . for more information , please contact katya ashe via e - mail at kashe @ cera . com or via telephone at ( 617 ) 441 - 2659 . a recording of this call will be available until may 10 , 2001 . to access this recording , please call + 1 888 - 203 - 1112 ( within the united states ) or + 1 719 - 457 - 0820 ( outside the united states ) . please use confirmation number 574828 to access the call . * * end * * e - mail category : conference call notification cera knowledge area ( s ) : north american gas , cera ' s spring 2001 roundtable event dates and agendas are now available at http : / / www 20 . cera . com / event to make changes to your cera . com profile go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2001 . cambridge energy research associates",0 +"Subject: re : resco database and customer capture steve , it makes sense to meet with abacus . retail marketing is very data intensive . if you set up a meeting with them , please , let me know . vince steven r meyers @ ees 04 / 11 / 2000 08 : 17 am to : timothy edward vail / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect subject : resco database and customer capture tim , i hope things are going well in resco . i think somebody from resco ( or research ) may be interested in the email i received below from brad davids . brad is now working at abacus who works with residential customer patterns as well as predictive modelling . he ' s going to be here the 25 and 26 of this month . i ' m not sure who is responsible for resco marketing , but i think they would find this interesting . who should i send this to ? please let me know if anybody in resco may have any interest . thanks , steve ps : vince , simply an fyi since they do focus on modelling and research . - - - - - - - - - - - - - - - - - - - - - - forwarded by steven r meyers / hou / ees on 04 / 11 / 2000 08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bradley davids on 04 / 10 / 2000 08 : 35 : 32 pm to : "" ' steven . r . meyers @ enron . com ' "" cc : subject : re : possible meeting ? steve : i ' ll see if i can get in on the 25 th . . . will let you know , but i think it ' ll work . just to give you a very brief overview so you can think about who might be interested , abacus has the largest transactional database of consumer buying behavior in the world ( 89 million us households , 3 billion + purchases ) , along with sophisticated modeling capabilities to help predict customer response to various offers at the household level . given the critical need to reduce customer acquisition costs in retail energy markets , we believe that our data and modeling can help energy retailers target their direct marketing efforts toward the residential customers most likely to respond to whatever the offer is - - improving the efficiency of mailings and other promotional campaigns ( so there is an efficiency angle , see ! ) because our data allow the modeling of future buying behavior based on actual purchases , our results tend to be significantly more predictive than demographic - based models . so far , the the response from utilities and "" new entrants "" i ' ve been talking to so far has been quite positive , and we have some tests of our data underway , but we ' re interested in talking to as many players in the market as possible as we develop specific products to meet utility needs . i can provide more background if desired to whoever might be interested , but i guess the key immediate question is whether it might be worthwhile to arrange a short meeting sometime on the 25 th of april with whoever at enron might have interest in hearing what we ' re up to , and ( most importantly ) listening to what your data needs might be as you enter new markets . thanks very much for any help . . . i look forward to catching up and hearing how things are going for you . regards , brad davids 303 - 410 - 5531 - - - - - original message - - - - - from : steven . r . meyers @ enron . com [ mailto : steven . r . meyers @ enron . com ] sent : monday , april 10 , 2000 12 : 13 pm to : brad . davids @ abacus - direct . com subject : re : possible meeting ? it ' d be great to meet on the 25 th in the afternoon . i have a flight in the evening . i ' m interested in hearing about life at abacus . i too have heard that enron is getting back into the residential market . what type of database do you have ? i might be able to find somebody for you to talk with here . - steve bradley davids on 04 / 10 / 2000 12 : 04 : 00 pm to : "" steve meyers ( e - mail ) "" cc : subject : possible meeting ? steve : sorry we ' ve been unable to hook up . . . i can probably get down there on the 25 th , if you ' re going to be in town that afternoon ? would love to catch up - - both on how things are going with ees and tell you about my new life . also , i ' m hearing rumors that enron is about to get back into the residential market in a big way - - you know anything about that ? anybody i should talk to there about my huge database of consumer buying behavior ? thanks - - looking forward to connecting . . . i ' ll be travelling most of this week , but you can leave a vm and let me know when i can call you , or try me on the cell at 303 - 886 - 3458 . best , brad davids bradley j . davids associate vice president , utilities abacus direct , a division of doubleclick , inc . 11101 west 120 th avenue broomfield , co 80021 usa e - mail brad . davids @ abacus - direct . com tel 303 . 410 . 5531 fax 303 . 410 . 5300 www . doubleclick . net www . abacus - direct . com ( see attached file : c . dtf )",0 +"Subject: team 3 ken , it seems that there may be an internet bias as well ( more affluent and educated households are on - line ) . one solution : develop a control group . arm - twist clerical employees of the school to fill out the questionnaire and also ask them to provide the questionnaire to their friends and families . vince",0 +"Subject: re : clustering for gas and power frank , following up on our discussions , can you please send us the list of enron ' s curves by geographical region separately for gas and power . appreciate it , tanya . tanya tamarchenko 04 / 16 / 2001 09 : 16 am to : jaesoo lew / na / enron @ enron cc : vladimir gorny / enron @ enronxgate , winston jia / enron @ enronxgate , vince j kaminski / hou / ect @ ect subject : re : clustering for power jaesoo , as we discussed last week on wednesday meeting can you , please , implement clustering for power curves by geographical region . this involves the following : 1 . deciding together with risk control how many geographical regions we want to use and which enron ' s curves belong to each region . 2 . deciding together with risk control how to choose core curves for each region . this decision can be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations . 3 . doing regression analysis for each curve versus the corresponding core curve . winston , can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ? should we wait for the stage re - fresh and what is the status on this ? tanya . ",0 +"Subject: apex conference 2000 update apex 2000 is an opportunity to join colleagues from around the globe for a conference on relevant , timely and strategic issues facing our industry . delegates and speakers from asia , australia , europe and north and south americas will be meeting in canada in october to discuss issues that will shape electrical deregulation in the foreseeable future . the conference is scheduled for october 25 and 26 , 2000 in kananaskis , near calgary , alberta . visit the apex 2000 conference web site at http : / / www . apex 2000 conf . com / update 4 . html for more details and an updated list of speakers and topics . registration space is limited ! don ' t miss out ! plan to be a part of this forum on significant issues and opportunities facing the electric industry as it moves through deregulation . any questions or inquiries should be forwarded to apex 2000 @ incentre . net or by phone at 1 - 403 - 244 - 4487 or by fax at 1 - 403 - 244 - 2340 .",0 +"Subject: interview thanks . . . vince and stinson , it seems we made a good impression to rodney . can we have him working for our sub - group ? zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 13 / 2000 08 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" rodney greene "" on 03 / 13 / 2000 12 : 05 : 57 am to : cc : subject : interview thanks . . . dear dr . lu : thank - you for meeting with me to discuss opportunities in your derivative pricing group . i very much enjoyed talking with you . the projects you are working on are quite interesting to me . it appears to me the resources and culture at enron are excellent for accomplishing quality value - adding work . i would very much like to be a part of your group . thank - you once again for meeting with me . and it goes without saying - lunch was great ! sincerely , rodney greene ?",0 +"Subject: confidential information and securities trading to : kaminski , wincenty email : vkamins @ enron . com - 7138533848 ? enron wholesale services - office of the chairman ? from : ? ? mark frevert , chairman & ceo ? ? ? ? ? ? greg whalley , president & coo ? ? ? ? ? ? mark haedicke , managing director & general counsel ? subject : ? ? confidential information and securities trading ? enron wholesale services ( ' ews ' ) maintains official policies and procedures regarding confidential information and securities trading ( ' policies and procedures ' ) , which have been revised as of november 15 , 2000 to reflect the new ews structure . these policies and procedures are intended to allow us simultaneously to pursue our diverse businesses and to protect confidential information , our reputation for integrity , and ews and its employees from legal liability . ? you are required to become familiar with , and to comply with , the policies and procedures . the newly revised policies and procedures are available for your review on legalonline , the new intranet website maintained by the enron wholesale services legal department . please click on the attached link to access legalonline : ? ? you must certify your compliance with the policies and procedures within two weeks of your receipt of this message . the legalonline site will allow you to quickly and conveniently certify your compliance on - line with your sap personal id number . if you have any questions concerning the policies or procedures , please call lance schuler at extension 3 - 5419 , mark haedicke at extension 3 - 6544 , alan aronowitz at extension 3 - 3214 , bob bruce at extension 5 - 7780 or donna lowry at extension 3 - 1939 .",0 +"Subject: internship opportunities dear mr . kaminski , i have found the enrononline project a very interesting one and have enjoyed working with everyone in the research department as well as those from other departments . i am keenly interested in this area and was wondering if there would be any summer internship opportunities . i have attached my resume to this mail for your review and look forward to hearing from you soon . thank you ivy ghose rice mba 2002 - resume . doc",0 +"Subject: color copier i ' m so sorry ! color printer . thanks - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 01 / 05 / 2000 01 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 01 / 05 / 2000 11 : 30 am to : lyn malina / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , william smith / corp / enron @ enron cc : subject : color copier hello lyn , how are you ? certainly hope you enjoyed the holidays . i have not received the color printer as of yet . could you please provide me with information concerning this . thanks kevin moore",0 +"Subject: fw : vince and ravi , attached below is the resume of a student graduating from the university of chicago with an ms in mathematics . his specialty is financial mathematics and his coursework seems to have covered a lot of the sorts of things that i understand your group to do , vince . he is extremely interested in enron and contacted me because i am an alum of the college at the u of c . i gather he didn ' t go through enron ' s typical recruiting process for analysts or associates because his background is more technical , than commercial . he acknowledged that his business experience is limited and from his resume you can tell that he is young . he would therefore be willing to start as an analyst or whatever the equivalent would be for a non - rotating position , but his interest is in doing the kind of work that you do , vince , and ravi , i know you have a similar background . please let me know if this candidate would be of interest to either of you . if so , feel free to contact him directly . he would like to start work this summer after graduating in june . thanks for your time and i hope this is useful to you . regards , laura laura howenstine manager , origination enron net works 713 - 853 - 0308 ( office ) laura . howenstine @ enron . com - - - - - original message - - - - - from : "" kodjo adovor "" @ enron + 40 enron @ enron . com ] sent : monday , february 26 , 2001 4 : 48 pm to : howenstine , laura cc : lhowenstine @ hotmail . com subject : dear laura , thanks for taking the time to talk to me about the opportunities available in financial derivatives at enron . i appreciate your help . my resume is attached to this email as resume . doc . i look forward to talking to you soon . regards , n . kodjo adovor the university of chicago financial mathematics - resume . doc",0 +"Subject: lunch dzien dobry , mam nadzieje , ze nic sie nie zmienilo i jestesmy umowieni na dziesiejszy lunch . proponuje sie spotkac o godzinie 12 . 00 na parterze obok biurka "" security ladies "" ( bo wiem gdzie to jest ) . ubrany jestem w czarne spodnie , bezowe buty i szara bluze . nie jestem pewien czy bede mogl przeczytac potwierdzenie , bo od 10 do 11 . 45 przeprowadzam szkolenie . juliusz",0 +"Subject: harvard business school pub order confirmation order confirmation notification thank you for ordering hbs materials . your order has been received and entered with the confirmation number 01928923 . the purchase order or reference number you provided is [ c ] kaminski , w . our projected ship date is 11 / 13 / 00 , your order will be shipping via ups . per your request , your order will be shipped to the following address : wincenty kaminski enron corp managing director ebl 962 1400 smith houston tx 77002 we appreciate your interest in harvard business school publishing . if we can be of further assistance , please contact our customer service department at ( 800 ) 988 - 0886 or ( 617 ) 783 - 7500 , by fax at ( 617 ) 783 - 7555 , or via email at corpcustserv @ hbsp . harvard . edu .",0 +"Subject: thomas knudsen hi vince i met with thomas this morning ( i gave you his cv before , though i don ' t know if you had time to read it ) . he ' s extremely interested in moving to enron , and accepts that our work is far less academic than his postdoc research , although far broader than his investment banking quant experience . he remains interested , and emphasised he wants to stay close to the traders , but wants to look at new markets and products . i think we should seriously consider hiring him . he is ( understandably ) reluctant to move to houston , but there ' s no doubt that there is plenty of ( unnmet ) demand for derivatives pricing ( and thinking ) here in london . would you be interested in my setting up a videoconference in the next couple of weeks so you have a chance to chat with him ? i ' m meeting with him again on tuesday at an academic quant finance seminar organised by lane at king ' s college . i ' ve attached his cv for your reference . all the best , steve",0 +"Subject: fwd : eprm article return - path : from : vkaminski @ aol . com full - name : vkaminski message - id : date : fri , 8 dec 2000 00 : 19 : 50 est subject : fwd : eprm article to : vkamins @ enron . com cc : vkaminski @ aol . com mime - version : 1 . 0 content - type : multipart / mixed ; boundary = "" part 2 _ 1 e . e 608831 . 2761 c 976 _ boundary "" x - mailer : unknown sub 171 return - path : received : from rly - xao 5 . mx . aol . com ( rly - xao 5 . mail . aol . com [ 172 . 20 . 105 . 74 ] ) by air - xaol . mail . aol . com ( v 77 . 14 ) with esmtp ; tue , 05 dec 2000 12 : 47 : 35 - 0500 received : from mailolb . rapidsite . net ( mailolb . rapidsite . net [ 207 . 158 . 192 . 229 ] ) by rly - xao 5 . mx . aol . com ( v 76 _ rl . 19 ) with esmtp ; tue , 05 dec 2000 12 : 47 : 00 - 0500 received : from www . lacima . co . uk ( 209 . 41 . 1 . 121 ) by mailolb . rapidsite . net ( rs ver 1 . 0 . 58 s ) with smtp id 0923182 for ; tue , 5 dec 2000 12 : 46 : 46 - 0500 ( est ) message - id : reply - to : "" chris strickland "" from : "" chris strickland "" to : references : subject : eprm article date : wed , 6 dec 2000 04 : 16 : 05 + 1100 organization : lacima consultants mime - version : 1 . 0 content - type : multipart / mixed ; x - priority : 3 x - msmail - priority : normal x - mailer : microsoft outlook express 5 . 00 . 2615 . 200 x - mimeole : produced by microsoft mimeole v 5 . 00 . 2615 . 200 x - loop - detect : 1 hi vince , hope things are fine with you . i ' m sorry that i only ever write to you when i ' m after something , but could you look at this simulation article - the next installment in the eprm articles . many thanks and best regards . chris . - - - - - original message - - - - - from : to : ; ; ; sent : friday , september 08 , 2000 4 : 23 am subject : re : var article > les , > > the revised version of the var article looks fine . > > vince > - eprm _ 04 _ sim _ mr . zip",0 +"Subject: re : factors for us power curves tanya , i have checked the factors for us power and all except the following are acceptable : rl 1 , rlc , rlf , rlj , rlk , rll , rlm , rln , rlz , r 4 a , r 4 b . for global liquids , the requisite curves have been submitted to the liquids team . i will review their results and confirm . naveen tanya tamarchenko @ ect 01 / 25 / 2001 12 : 52 pm to : naveen andrews / corp / enron @ enron , rabi de / na / enron @ enron , jaesoo lew / na / enron @ enron cc : oliver gaylard / lon / ect @ ect subject : re : factors for us power curves naveen , attached spreadsheet contains the factors for us power curves calculated based on 9 / 28 / 00 - 11 / 28 / 00 data in stage with the latest version of vatrfacs . by specifying integer number from 1 to 32 in cell jl you can see the factors for different regions . i suggest to consider the following sets of factors as acceptable : rla , rle , r 2 , r 2 a , r 2 b , r 3 , r 3 a , r 3 b , r 4 , r 4 c , r 5 , r 5 a , r 6 , r 7 , r 7 a , r 8 , r 9 . please review and confirm . tanya .",0 +"Subject: re : astros season tickets cathy , thanks . in order of priority : fridays ( 20 , 27 ) , apr 25 , 24 , 23 . vince from : cathy phillips on 04 / 03 / 2001 04 : 54 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : astros season tickets how about two games ? just select a couple of dates and i will have the tickets delivered to you . the dates that are still available are as follows : friday , april 20 st . louis monday , april 23 atlanta tuesday , april 24 atlanta wednesday , april 25 atlanta friday , april 27 florida thanks . cathy phillips x - 36898 vince j kaminski 04 / 02 / 2001 05 : 43 pm to : cathy phillips / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : astros season tickets cathy , yes , i shall be glad to use a few tickets for my group as a token of appreciation . how many can you spare ? vince from : cathy phillips on 04 / 02 / 2001 01 : 06 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : astros season tickets all of the tickets in the initial time frame have been taken . the next set of tickets i have available are for the series of april 20 th - 25 th . please let me know if you are interested in any of the tickets in this series . thanks . cathy phillips x - 36898 vince j kaminski 03 / 30 / 2001 11 : 25 am to : cathy phillips / hou / ect @ ect cc : subject : re : astros season tickets cathy , i shall appreciate 4 tickets , any day . i shall use them internally as a token of appreciation for the members of my group . vince from : cathy phillips on 03 / 30 / 2001 08 : 45 am to : jeffrey a shankman / hou / ect @ ect , doug arnell / enron _ development @ enron _ development , alan aronowitz / hou / ect @ ect , pierre aury / lon / ect @ ect , sally beck / hou / ect @ ect , rick bergsieker / enron _ development @ enron _ development , stephen h douglas / hou / ect @ ect , jennifer fraser / hou / ect @ ect , shanna funkhouser / corp / enron @ enron , eric gonzales / lon / ect @ ect , gary hickerson / hou / ect @ ect , vince j kaminski / hou / ect @ ect , larry lawyer / na / enron @ enron , chris mahoney / lon / ect @ ect , george mcclellan / hou / ect @ ect , thomas myers / hou / ect @ ect , john l nowlan / hou / ect @ ect , beth perlman / hou / ect @ ect , brent a price / hou / ect @ ect , daniel reck / hou / ect @ ect , cindy skinner / hou / ect @ ect , stuart staley / lon / ect @ ect , mark tawney / hou / ect @ ect , scott tholan / corp / enron @ enron , lisa yoho / na / enron @ enron , neil davies / corp / enron @ enron , per sekse / ny / ect @ ect , stephen h douglas / hou / ect @ ect , scott vonderheide / corp / enron @ enron cc : cathy phillips / hou / ect @ ect , jennifer burns / hou / ect @ ect , angie collins / hou / ect @ ect , donna baker / hou / ect @ ect , helen marie taylor / hou / ect @ ect , chantelle villanueva / hou / ect @ ect , betty j coneway / hou / ect @ ect , patti thompson / hou / ect @ ect , cherylene r westbrook / hou / ect @ ect , candace parker / lon / ect @ ect , sharon purswell / hou / ect @ ect , gloria solis / hou / ect @ ect , brenda j johnston / enron _ development @ enron _ development , kim hickok / enron _ development @ enron _ development , susan mccarthy / lon / ect @ ect , paula forsyth / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , jody underwood / na / enron @ enron , kathleen d hardeman / enron _ development @ enron _ development , judy zoch / na / enron @ enron , sunita katyal / enron _ development @ enron _ development , cherry mont / ny / ect @ ect , lydia reeves / hou / ect @ ect , kristy armstrong / enron @ enronxgate , nita garcia / na / enron @ enron , christina brandli / enron @ enronxgate subject : astros season tickets astros tickets available please note that the tickets for the astros games scheduled for saturday , march 31 st , through sunday , april 8 th , ( no game on monday , april 2 nd ) are still available . please let me know this morning if you are interested in any of the tickets . thank you . - - - - - - - - - - - - - - - - as mike mentioned at the staff meeting yesterday , enron global markets has season tickets for the houston astros for the 2001 season which begins this friday , march 30 th , with an exhibition game against boston . exhibition games are also scheduled for saturday , march 31 st , and sunday , april lst . the regular season opening game will be on tuesday , april 3 rd . we have four seats in section 116 , row 33 , seats 20 - 23 . the seats are located in the dugout section between home plate and the visitor ' s dugout . the tickets are available on a first come , first serve basis with preference given for customer entertainment if more than one request is received for the same game . please contact me at x - 36898 or via e - mail at cathy . phillips @ enron . com to request tickets . in addition , copies of the astros 2001 season schedule are available upon request . please let me know if you have any questions . thank you . cathy phillips x - 36898 eb 3327",0 +"Subject: request submitted : access request for mraymon @ enron . com you have received this email because the requester specified you as their manager . please click approval to review and act upon this request . request id : 000000000007494 request create date : 11 / 15 / 00 12 : 57 : 59 pm requested for : mraymon @ enron . com resource name : unlisted application / software resource type : applications",0 +"Subject: re : rabi de fyi , i do not send out a written offer package until the verbal offer issues are resolved and a final offer is made . so , i ' d like to put the details below in writing and send out to him for tuesday delivery . i ' m playing phone tag with him regarding the other details and will follow up with him again in the morning . thanks toni from : grant masson @ ect 09 / 15 / 2000 11 : 24 am to : toni graham / corp / enron @ enron cc : norma villarreal / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : rabi de toni : we talked to rabi . he ' s sitting on the fence for some good reasons , and he has to weigh what is fairly comfy job situation for one that starts out at a lower level but has more potential . wrt the green , vince verbally offered salary of $ 105 k plus a guarantee that his bonus at year end would be a minimum of $ 15 k cash . that ' s in addition to the $ 15 k sign on bonus . vince said that we would not bother working up a revised offer letter unless and until rabi came back with a verbal ok . he will ponder the offer ; probably for a few more days and get back with us . he may well call you to discuss the exact details of the benefits . esop , 401 ( k ) contributions , etc . regards , grant .",0 +"Subject: re : energy book chris , no problem . feel free to mention our names . vince chris strickland on 01 / 28 / 2000 03 : 54 : 17 am to : vince j kaminski / hou / ect @ ect , les , jules cc : subject : energy book hi vince , i have pulled a list of names together that i would like to send some samples of our chapters of the book too , in the next couple of days , in order to try and get one or two sentence "" reviews "" for the dust jacket of the book . i obviously won ' t say anything about enron ' s sponsorship until it is official sorted out , but is it ok if i indicate that yourself and grant are contributing material to the book ? i ' m proposing to send 5 or 6 chapters to the following - unless you have any objections or suggestions ? david shimko ehud ronn helyette geman mark garman dragana pilipovic corwin joy ilia bouchouev alexander edyleland steve thomas hope the writing is going ok , and regards to grant . best regards . chris",0 +"Subject: approval is overdue : access request for paul . d . thomas @ enron . com mike , following request has been made for a number of people . the access requested is : o : \ research \ power meteorology \ weather temperatures - read / write data approval grant this is what i wrote , denying the request : the reason for the rejection has been communicated several times . the person who requested the access does not want it any more . granting both read / write access could threaten the integrity of the data . any comments ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 29 / 2001 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - arsystem on 01 / 26 / 2001 07 : 16 : 10 pm to : "" vince . j . kaminski @ enron . com "" cc : subject : approval is overdue : access request for paul . d . thomas @ enron . com this request has been pending approval for 2 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000015384 approver : stinson . gibner @ enron . com request create date : 1 / 25 / 01 7 : 59 : 02 am requested for : paul . d . thomas @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: long - term volatility curves grant , can research in houston put together a comparison of the long - term volatility curves for gas and power in north america and europe ? based on where europe is marked ( especially for the uk ) , i think we ' ll find a significant difference out beyond 10 years . fundamentally , it seems like the long - term vol should be similar for a given commodity regardless of geographic location . has research done any work on this in the past ? if not , we should study this since long - term vol feeds into the var - based position limits . give me a call so we can discuss . thanks dale",0 +"Subject: re : model effort in houston mike pls discuss with mark tawney . under the revised egm structure for weather we need to revisit theintended arrangement . thnx paul from : mike a roberts @ ect 10 / 04 / 2001 04 : 59 am to : christian werner / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , paul quilkey / enron _ development @ enron _ development , mark tawney / enron @ enronxgate subject : model effort in houston christian , our spring / fall window of "" < nactivity "" is rapidly eluding us . . . we need to get our internal model operational without delay . along these lines , let ' s go ahead and plan your visit to houston as soon as possible , but by all means get you in at least 4 weeks before hurricane season . that would mean the month of may looks good . please inform me what duties you could not perform from here to support the sydney office , we ' ll figure out how to keep that office whole . ( it ' s working without a hitch to have steve bennett in london , but continuing his houston duties ) if the first week in may ( for the whole month ) will work , please respond asap and we ' ll get housing arrangements finalized . looking forward to your visit , - - - mike",0 +"Subject: re : fw : pserc nuggets related to market stem hello shmuel , thanks for your message . the end of 2000 and the beginning of 2001 were extremely busy and i could not focus on pserc issues . i shall consult a few people in enron on this subject and get in touch with you . our concern right now is that the results of research are widely shared with our competition . i am out on the 19 th , but the 20 th would work for me . i would be glad to cover the cost of your austin to houston trip . regarding your son . the analyst / associate program will interview again on the campus in the spring and they will be more than happy to interview him . "" shmuel oren "" on 12 / 19 / 2000 01 : 40 : 02 pm to : cc : "" dennis ray "" , , subject : fw : pserc nuggets related to market stem hello vince happy holidays . i wanted to connect with you regarding the possibility of enron joining pserc . as you might have heard from lance and alex we are going through a transition period having doubled the number of universities and industry members within the last year . consequently , our business processes are not well developed . one of the problems we are facing is the balance between the electrical engineering folks and industry members that are more interested in market related research . i hope to recruit more of the later so tat we have more of a constituency in the advisory board that sees the value of market related research . i already have a verbal commitment from people at electrabell that expressed interest in joining pserc . with members like electrabell and enron we will be able to support more market stem projects such as the one that shijie deng proposed ( not funded in this round ) . please let me know if i can do anything to facilitate the decision at enron . i am going to be in austin on january 19 to participate at a puct hearing and could come through huston for a visit . attached are some items that i shared with our pserc members and thought that you might be interested in them as well . regards , shmuel . - - - - - original message - - - - - from : "" shmuel oren "" to : "" power systems engineering research center "" sent : tuesday , december 19 , 2000 9 : 47 am subject : re : pserc nuggets related to market stem > the following are 3 items that demonstrate the impact of pserc research in > the market stem area . > > 1 . on december 12 , i ( shmuel oren ) testified at a hearing in san francisco > before the blue ribbon panel ( chaired by alfred kahn ) for the that is > investigating the implications of uniform price vs . pay as bid auctions in > the california px . as part of my testimony i presented a movie produced by > tim mount and bob thomas that show results of an experimental economic study > showing how bidders respond by raising their bids in a pay as bid auction . > following is an acknowledgement i received . > > dear shmuel : > > > thank you for attending the blue ribbon panel this past tuesday in san > francisco . your presentation was very informative and valuable to all the > panel members and other participants . the panel greatly appreciates your > involvement in this important project . > > > thanks again , > natalie efland > > > 2 . a recent e - mail from the texas puc > > professor oren , i hope you and your family are doing well . we are seriously > considering your help and advice to facilitate the commission ' s final > decision regarding retail competition in ercot . > > i wanted to let you know that ercot stakeholders filled an application for > approval of the ercot protocols in november . we received comments including > list of issues on november 22 and reply comments on december 1 . staff will > draft and submit a preliminary order to the commissioners for their > discussion on december 13 . there will be a pre - hearing on december 15 when > parties will be asked to brief the commission on list of issues by the end > of first week in january . there will be a hearing on january 16 followed > with another hearing if needed . parties have asked the commission to > finalize its decision by mid march . > > to give you some more background , i have to mention that almost most of your > suggestions were accepted and will be reflected in the final protocols , > except for problems with intra - zonal gaming regarding congestion management > and pay - as - bid compensation for selected ancillary services . a few > additional concerns are raised regarding ancillary services and congestion > management . stakeholders are still working toward more load participation > in ercot market . however , the main problem is the fact that market ( pilot > that covers 100 % of wholesale , but only 5 % of retail load ) will be open on > june 1 , 2001 based on a version of the protocols locked on august 1 , 2000 . > ( that was the deadline for ercot to give a final design to anderson > consulting . ) that version does not include some of your recommendations to > address market design flaws . the full version is highly possible to be > implemented by january 1 , 2002 when market for 100 % retail competition is > scheduled to open . given this gap , some parties have recommended not to > implement incomplete protocols and wait for full implementation by january > 2002 . in other words , they say let ' s go ahead with 5 % pilot retail load , > but wait for full design implementation before allowing 100 % wholesale load > ( and retail load ) be subject to the rules of the game described in the final > protocols . > > thanks . > > parviz adib , ph . d . > director of market oversight division > public utility commission of texas > 1701 n . congress avenue > p . o . box 13326 > austin , texas 78711 - 3326 > ph . no . : 512 - 936 - 7365 > > 3 . the following is a segment from a published summary of the dec 13 puct > hearing . this segment describes the commision ' s deliberation on an agenda > item addressing the possibility of instituting price caps as part of the > ercot protocols . ( see reference to my involvement in the next to last > paragraph ) > > docket no . 23220 - petition of the electric reliability council of texas > for approval of the ercot protocols . ( discussion and possible action ) > parviz adib , jess totten , keith rogas , and tammy cooper > chairman wood turned to page 2 item number 3 of the draft order identifying > issues , recommending that the word "" including "" be changed to "" other than "" in > the parentheses . he thinks they know the ups and downs of the two > mechanisms , which are bid caps and price caps , but would not mind having > parties focus on what other protections might be used . commissioner walsh > would say "" including , but not limited to "" because she does not think it is a > bad idea for ercot to at least consider in their protocols a fail - safe > mechanism . it ' s kind of like the stock market suspending trading when > something crazy happens . they could consider a maximum scenario , such as > "" we don ' t think this will ever happen but if it does we need to muffle it "" , > whether it is $ 1 , 000 or $ 99 or whatever it is . they could consider whether > to put into the protocols a self - enacting price cap . while not expecting it > to happen , if it did , you don ' t have to declare it an emergency and have the > commission have to act . chairman wood asked if they could leave the > question without the parenthetical at all and just say "" what protections > should be added to avoid extreme price spikes . "" commissioner walsh > reiterated that she wants ercot to think about the unlikely possibility of > unacceptable price spikes . she would like for them to have their own > fail - safe mechanism that is self - initiating as opposed to leaving that to > having someone have to come in and act . commissioner perlman stated that he > thinks the california - type price caps is what the concern is about . he > thinks everyone in this state is opposed to those , but he thinks the point > commissioner walsh is making is an interesting one . he had not thought > about the circuit breaker idea , and it might have some merit . he agreed > that it was worth considering something like that . then the question > becomes what the level is . chairman wood suggested the wording "" what > self - implementing protections should be added to avoid the price spikes . > commissioner perlman said he did not think anyone is talking about $ 250 > price caps . commissioner walsh agreed , but noted that if the unexpected > happens we should be prepared . commissioner perlman indicated that if > someone is making $ 10 , 000 in one particular hour that it probably does not b > enefit the market and is probably a windfall to them . it is not something > they would normally put in their business plan for determining whether they > are going to build a plant in texas . chairman wood stated that they want to > lean toward the market as heavily as they can on these issues . > > chairman wood noted that some of these issues date back to when dr . oren was > assisting the commission , and asked if he could be brought back again . > staffer dr . parviz adib said that staff had already talked to dr . oren and > that he is available to assist the commission further . chairman wood noted > that dr . oren had helped people think outside the box without just focusing > on california . > > the final wording was clarified to state "" self - implementing mechanisms "" and > to delete the parenthetical part of the sentence in question . the order was > approved as amended . > > > > > > > > > > >",0 +"Subject: magic 15 , 000 level on nikkei - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : darren delage @ enron on 10 / 16 / 2000 02 : 53 pm ze 9 to : maureen raymond / hou / ect @ ect cc : subject : magic 15 , 000 level on nikkei maureen , hope all is well . thank you for your coverage last week . i certainly appreciate the value - added that you provide in your research . i had a quick question for you regarding any anticipated japan central bank intervention at the 15 , 000 level in the nikkei . if i am understanding the mechanism correctly , bis reserve requirements fall below certain threshold and banks can no longer lend money and meet bis lending criteria due to improper reserve base . and this roughly happens at 15 , 000 level ? reason i ask is goldman sachs put out an article suggesting that break - evenpoint for bank holding of stocks is roughly 12 , 000 - 12 , 500 a different index level than the one you have mentioned . i can appreciate the difference between reserve liquidity and actual break - even on equity positions , but just wanted to clarify this point with you , as we are trying to gain a complete understanding of how a trigger would effect japanese capital markets . and so , as i currently understand it , there are ( 2 ) trigger levels to watch : 15 , 000 where banks fail bis criteria and hence cannot extend new loans with bis stamp of approval . clearly ctl bank would have incentive in restoring this or else financial system would be thrown into turmoil . 12500 where banks begin to take an actual loss on equity holdings is this right ? thanks maureen , take care , darren",0 +"Subject: re : cv of rodney greene re quantitative positions . amy , yes , i am interested . i am in london now , but i shall contact him on thuirsday . vince amy fitzpatrick 02 / 21 / 2000 03 : 34 am to : vince j kaminski / hou / ect @ ect cc : subject : re : cv of rodney greene re quantitative positions . vince - would you have any interest in this candidate ? kind regards - amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy fitzpatrick / lon / ect on 21 / 02 / 2000 09 : 34 - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 18 / 02 / 2000 19 : 50 to : amy fitzpatrick / lon / ect @ ect cc : subject : re : cv of rodney greene re quantitative positions . probably a bit to techy for me but maybe a good fit for vince kaminski in houston research . bs amy fitzpatrick 17 / 02 / 2000 12 : 52 to : david port / corp / enron @ enron , david weekes / lon / ect @ ect , steve w young / lon / ect @ ect , bryan seyfried / lon / ect @ ect cc : subject : cv of rodney greene re quantitative positions . any thoughts on this candidate ? kind regards - amy - - - - - - - - - - - - - - - - - - - - - - forwarded by amy fitzpatrick / lon / ect on 17 / 02 / 2000 12 : 52 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : simon bragg 17 / 02 / 2000 12 : 36 to : "" ' amy . fitzpatrick @ enron . com ' "" cc : subject : cv of rodney greene re quantitative positions . hi amy a colleague of mine interviewed someone last week who is a phd whose background is as a developer within catastrophe risk management . he is looking to move into more of a quantitative role which will utilise his developing skills and also his statistical and theoretical knowledge as well . the issue is that he is based in chicago and i wondered if there would be any interest from your headquarters there . please find attached his details . speak to you soon . regards simon - do 075530 . doc",0 +"Subject: re : o andrew , vince and grant from research would like to have risktrack on their pcs . can you install it for them ? appreciate it , tanya .",0 +"Subject: re : fw : mtg . scheduled frank , regarding simulating power prices in var we might discuss the following items and show some results : 1 . clustering for power : - clustering based on historical prices and correlations from them ; - geographical clustering ; - flexibility in choosing "" core curves "" ( based on position size ) ; 2 . jump - diffusion process for intramonth and prompt month : - parameter estimation from historical data ( do we want to use it ? ) - working out parameters ( jumps frequency , jump size ) as stress scenarios ; 3 . correlations within a cluster and across clusters . 4 . changing correlations estimations ( using fixed contact ' time series ) . 5 . joint estimation of factors for selected regions . let me know what you think should be in the agenda for this meeting . regards , tanya from : frank hayden / enron @ enronxgate on 04 / 18 / 2001 03 : 43 pm to : tanya tamarchenko / hou / ect @ ect cc : subject : fw : mtg . scheduled if you want , i welcome your help in putting together an agenda . frank - - - - - original message - - - - - from : black , tamara jae sent : wednesday , april 18 , 2001 3 : 32 pm to : presto , kevin ; davis , mark dana ; sturm , fletcher ; herndon , rogers ; gilbert - smith , doug ; white , stacey ; kaminski , vince ; andrews , naveen ; belden , tim ; gorny , vladimir ; davenport , lacrecia cc : hayden , frank subject : mtg . scheduled please mark your calendar for a meeting with : frank hayden reg . value @ risk april 26 th 3 - 4 pm rm 3125 b thanks tjae black x 35800",0 +"Subject: re : mutually agreed upon changes okay larry , i have your fax and the message . unfortunately the corporate policy is very clear and standard on these matters and we cannot make exceptions . it would appear impossible for us to proceed with the non - disclosure agreement if it is not consistent with the version suggested by our legal department . please let me know your thoughts . thanks . rakesh",0 +"Subject: brownsville peaker data hey guys , further to our meeting , here ( courtesy of john t ) are the addresses to view the peaker data for our upcoming testing : a . o : \ _ dropbox \ peakerdata \ peakersl 999 . htm b . o : \ _ dropbox \ peakerdata \ peakers 2000 . htm at the present time , these pages display on microsoft internet explorer only . type in the above urls in the address area of your ie . the pages refresh automatically once every minute . cheers , - - scott",0 +"Subject: fea announces the release of @ energy 2 . 0 january 26 , 2001 vince kaminski enron north america corp . 1400 smith street 30 th floor , rm . 3036 b houston , tx 77251 - 1188 1 713 - 853 - 3848 dear vince kaminski , this is to inform you of the release of @ energy 2 . 0 . ftp download instructions are available immediately . the download instructions are included at the end of this email . your cd ' s and manuals will be shipped to you within 2 weeks . please see below for more information regarding this new release . please confirm that you are the correct recipient for this shipment and your address above is correct by clicking reply and send . if any changes need to be made , please make the changes above and reply . * * warning : please note that if you did not received a license key for @ energy after june 2000 , you will need to contact support @ fea . com or call 510 . 548 . 6200 to obtain a new license key to enable the new version . * * * * swing users : @ energy / swing now replaces the "" swing "" product . see the @ energy user manual for a discussion of the changes . contact fea for the necessary license keys . you will be able to run both the new and old swing simultaneously . heres an overview of the new and changed features since version 1 . 6 : @ energy ( forward curve ) jump parameters are now calibrated for use in other @ energy functions . inputs and outputs to powercalib and comcalib have changed . see the corresponding function syntax in the user guide for additional information . 35 - 40 % speed improvement . the module is now out of beta . @ energy ( basics ) different interpolation schemes on forward prices are now supported . if you use indexswap , exoticswap , or optindexswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . a new utility function , pathutil , allows you to simulate and visualize price paths consistent with the models supported by @ energy . 25 - 30 % speed improvement . @ energy ( advanced ) different interpolation schemes on forward prices are now supported . if you use optdiffswap or diffswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . calspreadopt now allows for the specification of two different mean reversion rates . 30 - 35 % speed improvement . @ energy ( swing ) swingopt and stripswingopt now allow for valuation of swing straddle contracts with overall load constraints . 65 - 70 % speed improvement . the module is now out of beta . @ energy ( weather ) 30 - 35 % speed improvement . if you have any questions please feel free to contact us . we appreciate this opportunity to be of continuing service to enron north america corp . . regards , michelle mendoza support @ fea . com + 1 - 510 - 548 - 6200 financial engineering associates , inc . ( fea ) * * * * * * * * * * * * * * * * * * * * * * * * * * * * * to download @ energy 2 . 0 via ftp , follow the following instructions : note : using explorer leads to unpredictable results , so we suggest using netscape or a dos shell . using netscape : in the location box type : ftp : / / energy @ ftp . fea . com password : 2 rbzxgv 5 energy - 2 . 0 - win 32 . exe is for windows 95 / 98 / 2000 / nt . download and run on a local drive . using a dos shell : at a dos prompt type : ftp ftp . fea . com user : energy password : 2 rbzxgv 5 type "" binary "" and hit ' return ' . type "" ls "" for a list of available files . type "" get "" energy - 2 . 0 - win 32 . exe and and wait for the ftp > prompt . type "" quit "" . the file will be downloaded into the directory at which you entered the ftp site . double click on the exe and follow the instructions on the screen .",0 +"Subject: martin lin ' s rotation into jim ' s group hi paul and anad , please make the appropriate arrangements ( via enron corp . aa pool ) to "" rotate "" martin lin into my group . as you know , i am heading up the ebs research unit that is reporting to vince kaminski and stinson gibner ( md & vp of enron research group , respectively ) . martin will work for jim irvine and report to him on a day - to - day basis . martin will spend most of his time at jim ' s office location . this arrangement is very similar to samar khleif ' s role in portland with john mcclain ' s broadband delivery group . martin has already discussed his rotation with jim irvine and scheduled to start on march 1 , 00 . ebs research will be working very closely with jim irvine and john griebling in the area of network planning and model development ( traffic engineering in telecom - speak ) . martin has a ph . d . in electrical engineering and has been working within research supporting electricity transmission analysis and modeling . regards , ravi .",0 +"Subject: osman sezgen steve kromer is requesting that osman spend 1 day / week in san francisco . steve heads the risk analytics group for enery asset management under steve meyers . i will find from marty why they are setting up shop in sf . krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 08 / 04 / 2000 04 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - to : pinnamaneni krishnarao / hou / ect @ ect cc : dave roberts / hou / ees @ ees , osman sezgen / hou / ees @ ees subject : osman sezgen krishna , osman has informed me that he has been requested to provide research services to a larger number of clients in ees , leaving him less time to contribute to our work here at the eam desk . while i am happy for him and believe that the company will benefit from his services , i am concerned that he may not be available at a crucial time in the development of the eam option strategy . the eam desk is continuing to develop standard models for the bulk of our ecm projects . we have hired 4 people in the past month and all of them will be working by early september . osman provides an important link for our new staff to several core areas of our business . first , his experience with modeling and energy analysis are invaluable . second , as we move to treating our projects as options , and pricing them as such , osman will be needed to assist us in creating auditable methods to assess savings volatility . i am expecting two of the team members to start in san francisco in the near future . my request is for osman to be available to this team for one day a week for the next several months , preferably until christmas . thank you for your consideration of this matter . steve kromer",0 +"Subject: re : tanya ' s vacation shirley , i am going to take 5 vacation days in march , 3 / 13 / 00 - 3 / 17 / 00 . these are the days that i did not use in 1999 and vince approved that i take them this year . tanya .",0 +"Subject: congratulations on your promotion . lou ",0 +"Subject: re : f / u to dr . kaminski @ enron from iris mack hi , how are you ? seems like we have had a bit of difficulty contacting each other . sorry i missed your call . i am now in nyc - until december 2 nd . i will try to call you on tomorrow morning about 8 am houston time . take care , iris > from : vince . j . kaminski @ enron . com > to : irismmack @ hotmail . com > cc : vince . j . kaminski @ enron . com > subject : hello > date : tue , 21 nov 2000 15 : 14 : 31 - 0600 > > iris , > > we are trying to reach you but we are getting error messages . > please , call me 713 853 3848 . > > vince > > _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com",0 +"Subject: technical writer position just a note to confirm that we will cease recruiting for the new technical writer position that was being considered . i will notify the candidates who have been interviewed , but please let me know if you would like us to do anything else . molly",0 +"Subject: re : fw : wharton resume submission - summer intern let ' s make sure she gets an offer . thanks . jeff vince j kaminski 01 / 23 / 2001 01 : 23 pm to : kristin gandy / na / enron @ enron cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : fw : wharton resume submission - summer intern kristin . kim is a member of the tiger team . she is interested in a summer internship with enron and i shall be glad to take her . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001 01 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" kim whitsel "" on 01 / 22 / 2001 12 : 07 : 35 am to : , cc : subject : fw : wharton resume submission - - - - - original message - - - - - from : kim whitsel [ mailto : kimberly . whitsel . wgo 2 @ wharton . upenn . edu ] sent : friday , december 22 , 2000 6 : 51 pm to : kristin . gandy @ enron . com subject : wharton resume submission summer position under wharton schedule # 1823 - kim whitsel - enron cover letter . doc - kim whitsel - wharton 2 resume . doc",0 +"Subject: reminder stinson , fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 05 / 2001 11 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" john d . martin "" on 02 / 02 / 2001 01 : 39 : 17 pm to : timopler @ yahoo . com , raj _ srivastava @ bus . emory . edu , vaysman @ mail . utexas . edu , vkamins @ enron . com , cpaoli @ sternstewart . com , bill _ petty @ baylor . edu , michael . froehls @ citicorp . com , corey . carbonara @ systems . tstc . edu , michael _ korpi @ baylor . edu , klifford _ kuehl @ baylor . edu , terry _ maness @ baylor . edu , dpalumbo @ sapient . com , dchew @ sternstewart . com , j _ martin @ baylor . edu cc : subject : reminder good afternoon , i just want to give you a reminder about the one - page questionnaire regarding arrival and departure times for the workshop . your responses will make planning a bit easier on this end . also , please get me your "" one - page "" background statement as soon as possible . i am attaching michael froehl ' s to give you some guidance ( thanks michael , i thought i was going to have to prepare mine first ) . let me also tell you that the television producer has requested 15 minutes of each of your time either the morning of the 23 rd before the luncheon or after the workshops to do individual interviews . they will then work these individual shots into the final edited program ( bring your best tv smiles ) . by the way , i have been assured by the producer that we have final say over whether particular comments are edited in or out of the final product so we can all relax , this is not live tv . i ' ll be out of town the end of next week but hope to have all my plans put together the following week so please respond to both the questionnaire and the request for a one - page background / positions / ideas write - up . thanks guys and i ' m looking forward to seeing you all very soon . john p . s . in case you ' ve misplaced it i have appended a copy of the questionnaire . - waco _ background _ mf . doc - questionnaire . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: final dates for houston visits dear all , shirley has kindly arranged the accommodation for these new dates - i ' d be grateful if we could stick to the dates that you confirmed to me below as it will be next to impossible to change these again . of course , it should be fine for you to arrive a day early to lose your jet lag and depart a day late so that you get a full week in the office . matthew williams mon 31 st july through friday 18 th august steve leppard mon 21 st aug through fri 15 th sep kirstee hewitt mon 18 th sep through friday 13 th oct ben parsons mon 16 th oct through friday 10 th nov let me know if you have any more logistical questions - i might even be able to suggest some nice restaurants ! for cars , i think that is best arranged from london when the flight is booked . by the way , you will all need a full uk drivers licence to hire the car and a passport with more than a six ( ? ) months to go before expiry . shirley - would it be best to use the usual 3 coupons on the guest car park ticket method for parking ? regards , anjam x 35383",0 +"Subject: cmu students i have given your email to richard bryant , who is the director of the comp . fin . program at cmu . no doubt he will be in touch . here ' s a link : i feel that i should mention something : from my experience at cmu , there are three types of students . those that work very very hard and are basically ethical ; those that cheat their way through school , and the sharks . it is very difficult to distinguish between the groups when interviewing . in my class of about 30 students , there were three sharks , about six or seven hard workers , and then there was everyone else . anyway , for what its worth ! - kevin k .",0 +"Subject: fw : mckinsey partner specializing in agriculture hi vasant , as per our lunch conversation on yesterday , i mentioned that a friend of mine is a partner at mckinsey and he specializes in agriculture . attached is an email from him regarding meeting you and others here at enron . how do you wish to proceed ? thanks , iris - - - - - original message - - - - - from : @ enron sent : wednesday , march 07 , 2001 2 : 17 am to : mack , iris subject : re : iris mack at enron hey iris , great to hear from you and welcome back stateside ! i would be delighted to meet with you and your colleagues . bernard margot tyler 03 / 06 / 2001 to : bernard 02 : 41 pm loyd / chi / northamerica / mckinsey cc : subject : re : iris mack at enron - - - - - forwarded by margot tyler / chi / northamerica / mckinsey on 03 / 06 / 2001 02 : 41 pm - - - - - to : margot _ tyler @ mckinsey . com 03 / 06 / 2001 cc : 02 : 27 pm subject : re : message for bernard hi again , i had lunch today with some of the guys in my group who work on agriculture - related deals and on weather derivatives . i mentioned to them about bernard ' s working at mckinsey and specializing in the agriculture area . we thought it might be worthwhile if we all had a chat and / or met to discuss possible collaborative efforts . will you please forward this email on to bernard to see if this might be of interest to him ? thanks , iris | this message may contain confidential and / or privileged | | information . if you are not the addressee or authorized to | | receive this for the addressee , you must not use , copy , | | disclose or take any action based on this message or any | | information herein . if you have received this message in | | error , please advise the sender immediately by reply e - mail | | and delete this message . thank you for your cooperation . | ",0 +"Subject: enside good morning ! here is the latest draft of your article for the enside newsletter . i have forwarded it to the design team and expect them to send me a layout copy sometime next week . we will be able to make any additional changes then . talk to you next week - have a great weekend ! best regards , kathie",0 +"Subject: projects list stinson , just want to give you a quick update about the current projects on my plate , so that you can update your blackbroad 1 ) wti trading simulation v . 2 , ready for you to review 2 ) storage valuation for paul bieinawski ( new ) 3 ) product production margin modeling for doug friedman ( new ) need to model explicitly the jump piece . some new ideas for discussion . 4 ) espeed warrant valuation for randy petersen ( new ) 5 ) correlation skew for larry may 6 ) credit exposure model , alex finished the coding , testing next have you had a chance to review brad ' s back testing results for the storage model ? zimin",0 +"Subject: charlie weldon - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 02 / 11 / 2000 03 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - charlene jackson @ enron 02 / 11 / 2000 03 : 13 pm to : celeste roberts / hou / ect @ ect , ginger b gamble / hou / ect @ ect , jana giovannini / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : charlie weldon charlie weldon is a candidate who was a summer associate last year . i have made the one and only exception for him on the starting date . he works with mike roberts and they had prearranged for him to work on a special project during hurricane season . unfortunately , the project can ' t be delayed due to the timing of hurricane season . he will start in june to work on this project . it is not a project that a summer associate could work on so it is not taking a job from one of them . mike totally understands the rationale for the starting date , etc . and has promised in blood that charlie will start the orientation with his class and will not be pulled out to work on any projects during the 4 week orientation . he is also someone that they would take into their group after orientation . mike is drafting a letter that he will sign in blood indicating his promise re orientation . please keep an eye out for this individual when we send out the material regarding starting dates , etc . we need to also make sure charlie understands that he must attend the entire orientation . mike also promises to sing our praises about how great we are ( smile - this is my addition mike did not say that , but i am sure he will do it ) thanks",0 +"Subject: summer associate offers for full - time associate positions fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 09 / 21 / 2000 01 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - celeste roberts 09 / 20 / 2000 05 : 30 pm to : stephen r horn / hou / ect @ ect , tony mataya / hou / ees @ ees , kevin kuykendall / hou / ect @ ect , stan dowell / hou / ees @ ees , patrick hickey / enron communications @ enron communications , scott porter / hou / ees @ ees , stinson gibner / hou / ect @ ect , heather kroll / hou / ect @ ect , mark s palmer / enron communications @ enron communications , ermes melinchon / enron _ development @ enron _ development , rick sierra / enron _ development @ enron _ development , steve pearlman / enron communications @ enron communications , tammy l mulrooney / hou / ect @ ect , gustavo junqueira / hou / ect @ ect , catherine simoes / hou / ees @ ees , stephen thome / hou / ect @ ect , james w lewis / hou / ees @ ees , antonio jenkins lara / corp / enron @ enron , doug rotenberg / enron _ development @ enron _ development , samer takriti / enron communications @ enron communications , william keeney / hou / ect @ ect , david j botchlett / hou / ect @ ect , larry ciscon / enron communications @ enron communications , jeanette reese / hou / ees @ ees , lance mccarthy / epsc / hou / ect @ ect , rudi zipter / hou / ect @ ect , thomas suffield / na / enron @ enron , mark meier / corp / enron @ enron , bill w brown / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect cc : subject : summer associate offers for full - time associate positions listed below are the summer associates who will receive offers to join us full - time . offers were made verbally on friday , september 15 and the offer letters were mailed out on tuesday , september 19 . the associate offers by school are as follows : rice andrew adams shruti gandhi - gupta kenneth jett jason sokolov darren sanders nyu lucia barrantes chicago terrell benke texas a & m mike seely ucla vladimir blinov * * irina liskovets - visa issues , working with london to resolve and see if placement there is possible michigan luis bravo sherman "" alex "" james ut cantekin dincerler steven luong vanderbilt charles donovan chung taek oh maxim phillippov georgetown andrea gonzalez cornell miriam kaggwa mit sloan josef lieskovsky yale braden mcelroy stanford guiseppe paleologo darden ning pan thunderbird steve west lsu datren williams houston sevil yaman",0 +"Subject: re : clustering for power tanya , as we discussed in the last meeting , to simulate secondary power curve we need correlated jump sizes . this is totally different from the current secondary price curve simulation which assume the perfect correlation and also totally different from the secondary gas basis curve simulation which is based on the hedging ratio . there are two more issues on my side i need to resolve : 1 . i want resolve the power basis curve issue . currently all power position on these basis curve are actually price positions . we are hard coding this : if power basis we add basis to corresponding region curve . i am trying to remove this hard coding by asking loading the price curve for all these basis locations . 2 . same is true for all those power f curves . these curves looks similar to those basis curves . currently we just directly map these f curves to the corresponding region curves . i would also prefer to load the price curves instead of the price differences . from research , i need those jump size correlations . clearly , all these involve many new development , unless we want to use simpler way to simulate secondary power curves . regards , winston - - - - - original message - - - - - from : tamarchenko , tanya sent : monday , april 16 , 2001 9 : 17 am to : lew , jaesoo cc : gorny , vladimir ; jia , winston ; kaminski , vince subject : re : clustering for power jaesoo , as we discussed last week on wednesday meeting can you , please , implement clustering for power curves by geographical region . this involves the following : 1 . deciding together with risk control how many geographical regions we want to use and which enron ' s curves belong to each region . 2 . deciding together with risk control how to choose core curves for each region . this decision can be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations . 3 . doing regression analysis for each curve versus the corresponding core curve . winston , can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ? should we wait for the stage re - fresh and what is the status on this ? tanya .",0 +"Subject: re : chapter dear vince , that ' s fine - i didn ' t know if yours had changed as grant ' s did - i have your earlier part and that has already been type set . best regards . chris . - - - - - original message - - - - - from : "" vince j kaminski "" to : "" chris strickland "" cc : "" vince j kaminski "" sent : tuesday , august 29 , 2000 5 : 18 am subject : re : chapter > > > chris , > > my part has not changed for some time ( since early july ) . > > i sent the last vintage of corrections to you when i was in sydney . > you can send the version you consider final to us just to double check . > > i took the liberty of sending our chapter to darrell duffie and he liked it . > what is more important he did not find any error . > > > i shell send you my comments on the article for robin in a day or so . > > vince > > > > > > > "" chris strickland "" on 08 / 28 / 2000 02 : 55 : 31 pm > > please respond to "" chris strickland "" > > to : , > cc : > subject : chapter > > > > hi vince , > > how are things with you ? well i hope . do you have the latest version of your > part of chapter 3 ? ( i think grant has sent thru a seperate , updated version to > you , which has been typeset ) . everything else has been tied up and we will go > with the version we have , unless we hear otherwise . > > many thanks and best regards . > > chris . > > > > > > > >",0 +"Subject: re : f / u to dr . kaminski @ enron from iris mack hi , hope you had a happy thanksgiving . so what do you think of the way we select our president ? regarding the passwords , they are as follows : password # 1 : roviris password # 2 : hannah i will try to call you shortly . kind regards , iris > from : vince . j . kaminski @ enron . com > to : irismmack @ hotmail . com > subject : re : f / u to dr . kaminski @ enron from iris mack > date : mon , 27 nov 2000 08 : 19 : 52 - 0600 > > > hi iris , > > thanks for your messages . please , call me on my cell phone ( 713 ) 410 5396 > or at my office ( 713 ) 853 3848 . > > by the way , the 2 nd file you sent is password protected . > > vince > > _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com",0 +"Subject: re : fea announces the release of @ energy 2 . 0 vince and stinson , i have successfully downloaded the @ energy 2 . 0 . i am working with it to update the license before we can use the software . zimin vince j kaminski 01 / 31 / 2001 11 : 20 am to : zimin lu / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : fea announces the release of @ energy 2 . 0 zimin , please , take a look at it . i think we should download the update . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001 11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" michelle mendoza "" on 01 / 26 / 2001 02 : 33 : 14 pm to : cc : subject : fea announces the release of @ energy 2 . 0 january 26 , 2001 vince kaminski enron north america corp . 1400 smith street 30 th floor , rm . 3036 b houston , tx 77251 - 1188 1 713 - 853 - 3848 dear vince kaminski , this is to inform you of the release of @ energy 2 . 0 . ftp download instructions are available immediately . the download instructions are included at the end of this email . your cd ' s and manuals will be shipped to you within 2 weeks . please see below for more information regarding this new release . please confirm that you are the correct recipient for this shipment and your address above is correct by clicking reply and send . if any changes need to be made , please make the changes above and reply . * * warning : please note that if you did not received a license key for @ energy after june 2000 , you will need to contact support @ fea . com or call 510 . 548 . 6200 to obtain a new license key to enable the new version . * * * * swing users : @ energy / swing now replaces the "" swing "" product . see the @ energy user manual for a discussion of the changes . contact fea for the necessary license keys . you will be able to run both the new and old swing simultaneously . heres an overview of the new and changed features since version 1 . 6 : @ energy ( forward curve ) jump parameters are now calibrated for use in other @ energy functions . inputs and outputs to powercalib and comcalib have changed . see the corresponding function syntax in the user guide for additional information . 35 - 40 % speed improvement . the module is now out of beta . @ energy ( basics ) different interpolation schemes on forward prices are now supported . if you use indexswap , exoticswap , or optindexswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . a new utility function , pathutil , allows you to simulate and visualize price paths consistent with the models supported by @ energy . 25 - 30 % speed improvement . @ energy ( advanced ) different interpolation schemes on forward prices are now supported . if you use optdiffswap or diffswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . calspreadopt now allows for the specification of two different mean reversion rates . 30 - 35 % speed improvement . @ energy ( swing ) swingopt and stripswingopt now allow for valuation of swing straddle contracts with overall load constraints . 65 - 70 % speed improvement . the module is now out of beta . @ energy ( weather ) 30 - 35 % speed improvement . if you have any questions please feel free to contact us . we appreciate this opportunity to be of continuing service to enron north america corp . . regards , michelle mendoza support @ fea . com + 1 - 510 - 548 - 6200 financial engineering associates , inc . ( fea ) * * * * * * * * * * * * * * * * * * * * * * * * * * * * * to download @ energy 2 . 0 via ftp , follow the following instructions : note : using explorer leads to unpredictable results , so we suggest using netscape or a dos shell . using netscape : in the location box type : ftp : / / energy @ ftp . fea . com password : 2 rbzxgv 5 energy - 2 . 0 - win 32 . exe is for windows 95 / 98 / 2000 / nt . download and run on a local drive . using a dos shell : at a dos prompt type : ftp ftp . fea . com user : energy password : 2 rbzxgv 5 type "" binary "" and hit ' return ' . type "" ls "" for a list of available files . type "" get "" energy - 2 . 0 - win 32 . exe and and wait for the ftp > prompt . type "" quit "" . the file will be downloaded into the directory at which you entered the ftp site . double click on the exe and follow the instructions on the screen .",0 +"Subject: re : lost cell telephone chris : vince found his cell phone - can we have it reinstated ? hope you had wonderful holidays ! thanks ! shirley crenshaw 3 - 5290 chris samaniego on 12 / 18 / 2000 03 : 06 : 09 pm to : "" ' shirley . crenshaw @ enron . com ' "" , enron cc : subject : re : lost cell telephone request completed . chris samaniego account associate houston cellular corporate accounts petrochemical vertical ( 713 ) 562 - 2995 cellular ( 713 ) 345 - 7183 enron direct ( 713 ) 646 - 2415 fax enron @ houstoncellular . com e - mail samaniec @ houstoncellular . com e - mail samaniec @ bellsouthips . com interactive pager > - - - - - original message - - - - - > from : shirley . crenshaw @ enron . com [ smtp : shirley . crenshaw @ enron . com ] > sent : monday , december 18 , 2000 2 : 19 pm > to : enron > subject : lost cell telephone > > hello : > > vince kaminski left his cell phone on the bus last friday . he has > contacted > the bus line , but the person in charge of the lost and found is not in the > office today . > > if there any way that we can put a hold on this telephone until he can see > whether it has been turned in or not ? > > the cell # is : 713 / 410 - 5396 and the account # is : 88563580 . > > please let me know as soon as possible . > > thanks ! > > shirley crenshaw > 3 - 5290 > ebl 961 > shirley . crenshaw @ enron . com > >",0 +"Subject: research get - together at sandeep kohli ' s new home hello everyone : here is your invitation and a map to sandeep ' s home . see you saturday !",0 +"Subject: approval is overdue : access request for grace . kim @ enron . com this request has been pending approval for 2 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000006238 approver : stinson . gibner @ enron . com request create date : 10 / 31 / 00 5 : 03 : 29 pm requested for : grace . kim @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read ] resource type : directory",0 +"Subject: re : address confirmed - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 02 , 2000 03 : 21 pm to : deangelo , david j . cc : vince . j . kaminski @ enron . com subject : address vincent kaminski managing director enron corp . 1400 smith street , room 1962 houston , tx 77251 - 1188 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: new businesses in london : weather & insurance hi vince , talking to the staff in london , i heard that lynda clemmons and a few of the key weather desk members left to start their own business . i am hearing that london may gain more independence from houston and gain its own book and , interestingly , also having ideas about developing the insurance / insurance derivatives market . i therefore thought this might be a useful opportunity to formalise a gradual transfer of responsibility for weather deal pricing from joe to myself plus start talking to vasant about the new markets on the insurance side . i will call you later to discuss this with you . regards , anjam x 35383",0 +"Subject: re : london research prc dale , thanks for the update . i fully concur with all the rankings . it seems things are going well with the research group in london and this is , to a very large extent , your contribution . i think that anjam has improved a lot . i don ' t think , however , that he can run the group in the future . steve emerged as a natural leader and has overwhelming support in the organization . vince dale surbey 06 / 15 / 2000 02 : 28 am to : vince j kaminski / hou / ect @ ect cc : subject : london research prc vince , we had the prc preranking for rac and research in london yesterday . here ' s how everyone came out : steven - superior : no controversy here . steve received consistently strong feedback ( ranked as either superior or excellent in all categories ) . the only rough spot was teamwork , arising from the friction between anjam and himself . anjam - excellent : anjam received rankings of superiors or excellents in all categories . several reviewers commented that anjam ' s performance in the areas of producing results in a timely manner and communication have improved . i felt the overall ranking of excellent was justified based on this feedback , even though in terms of leadership i don ' t rate him high enough to run the group here . stinsen provided the most insightful comment on anjam ' s performance : "" technically superior but lets his quest for a leadership position detract from his overall performance "" . on a related topic , anjam has been taking random days off , typically on short notice , so i suspect he ' s interviewing for a new job . given his inability to work with steven ( especially in the future when stephen heads the group ) , this may be the best long - term solution . any thoughts ? ben - superior : another non - controversial ranking . ben received consistently high marks from all the groups he supports , especially in the area of non - technical skills . i nominated ben for promotion to senior specialist . even though he was promoted at year end , he ' s taken on a lot of responsibility training kirstee and helping manage the other quant resources in brian ' s group . also , since kirstee was hired in at the same level as ben , a mid - year promotion is appropriate since he ' s effectively her supervisor . kirstee - strong : only limited feedback in the 2 months she ' s been here . high marks for technical / quantitative , strong in the "" soft "" skills . i think the strong rating is the right message for early in the game - gives her a target for improvement for the rest of the year . - dale",0 +"Subject: re : prof . carmona vince , my apologies for the late response - and thank you for your input . yannis - - - - - original message - - - - - from : kaminski , vince sent : tuesday , march 06 , 2001 3 : 15 pm to : yannis tzamouranis / hou / ect @ enron cc : kaminski , vince ; mark tawney / hou / ect @ enron ; shanbhogue , vasant subject : prof . carmona yannis , i have looked at the outline of the proposed course and find that practically all the topics of the program are the staple of what we do every day . i don ' t think research should spend money for this class . if we want to establish a relationship , we can easily do it by asking him to work on a research project . vince",0 +"Subject: re : chicago partners david , i sent a message with information to several different units but no response so far . i think people need a specific need to focus and i shall keep the chicago partners in mind when a relevant project arrives . i shall resend the message with attachments on cp in a few weeks as a reminder . vince vince david _ barr @ enron . net on 03 / 01 / 2000 10 : 15 : 57 am to : vkamins @ enron . com cc : subject : chicago partners vince , hope this finds you well . i am sure you are more than busy but i wanted to see where we stand with feedback regarding me coordinating a potential presentation by chris culp at cp risk management . regards , david",0 +"Subject: exotica ( yet again ) hi guys i need some advice . sharad is in the process of finding differences between your and our versions of exotica . at some point we will need to migrate london office over to your more up - to - date version , and i ' m concerned that there may be rac - style implications . i ' m in favour of using the it testers to carry out formal regression testing , and they are apparently able to do this . do we need to get our heads together to "" form a view "" before we involve rac or the business groups ? anjam tells sharad that london exotica was built using excel 95 , and that neither he nor zimin knows how to build / compile the xla using later versions of excel . is this true ? if so , then we need to migrate to xlls sooner rather than later because of the maintenance implications . steve",0 +"Subject: re : willow and pathstar evaluations please respond to mike curran ok - thanks . - - - - - original message - - - - - from : to : "" mike curran "" cc : ; sent : monday , april 30 , 2001 11 : 34 pm subject : re : willow and pathstar evaluations > > mike , > > we are short manpower in london . we shall try to > evaluate the software in houston . > > vince > > > > > > "" mike curran "" on 04 / 24 / 2001 10 : 03 : 24 am > > please respond to "" mike curran "" > > to : > cc : > subject : willow and pathstar evaluations > > > > hi vince - > > hope all is well with you . > > sharad hasn ' t had time to evaluate our willow tree or monte carlo software > since the middle of last year . is there somebody else that could do it ? > > please let me know who i should send the evaluation to . > > best regards , > > michael curran > ceo > quantin ' leap limited > piercy house > 7 copthall avenue > london ec 2 r 7 nj > > tel : + 44 ( 0 ) 20 7562 3450 > fax : + 44 ( 0 ) 20 7562 3411 > > mailto : mcurran @ quantinleap . com > > http : / / www . quantinleap . com > > > > > > > > > > >",0 +"Subject: livelink access moyez , i could not access the system . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 06 / 2001 08 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 03 / 05 / 2001 03 : 37 pm to : kenneth parkhill / na / enron @ enron , jaesoo lew / na / enron @ enron , tom halliburton / corp / enron @ enron , kevin kindall / corp / enron @ enron , bob lee / na / enron @ enron , alex huang / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , joseph hrgovcic / enron @ enronxgate , gwyn koepke / na / enron @ enron , rakesh bharati / na / enron @ enron , martin lin / hou / ect @ ect , rabi de / na / enron @ enron , chonawee supatgiat / corp / enron @ enron , seksan kiatsupaibul / hou / ees @ ees , wichai narongwanich / hou / ees @ ees , sevil yaman / corp / enron @ enron , tom barkley / na / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect , osman sezgen / hou / ees @ ees , praveen mellacheruvu / hou / ees @ ees , sandeep kohli @ enron , vince j kaminski / hou / ect @ ect cc : subject : livelink access you have been added to the livelink test instance for research . see below for the link . - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 05 / 2001 03 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron technology from : moyez lallani @ enron 01 / 16 / 2001 10 : 46 am to : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : subject : livelink access gentlemen , i have created a folder called research projects folder in the livelink test instance . the url to the test instance is to log in , use your nt login id as your userid and password ( all lowercase ) . you will find the folder on the enterprise workspace . please call me should you require further assistance . moyez lallani x 5 - 3683",0 +"Subject: re : new color printer goodmorning lyn , please inform me on the status of the color printer for the 19 th floor . we need this printer a . s . a . p . this printer should be placed where the black and white printer is located on the same counter . co . 0011 r . c . 100038 let me know ! merry christmas kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 22 / 99 06 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 14 / 99 09 : 21 am to : lyn malina / hou / ect @ ect cc : subject : re : new color printer - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 09 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 14 / 99 08 : 13 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : re : new color printer yes ! right away , please also let me know the e . t . a . thanks , lyn kevin moore",0 +"Subject: re : presentation to faculty and students at berkeley charlene , i coordinate my schedule with ashley baxter from your organization , who is responsible for recruiting at berkeley . i have talked to her about this presentation a few times . as you can see , she is on the distribution list . the presentation is scheduled for the 23 rd of october . we have tried to combine the presentation with another recruiting trip , but we have to many conflicting schedules . vince charlene jackson @ enron 09 / 18 / 2000 02 : 34 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : presentation to faculty and students at berkeley vince when is your presentation scheduled ? i can get someone from my group but since the recruiters are all on the road i would need a date so that they or i could coordinate with you . thanks vince j kaminski @ ect 09 / 18 / 2000 01 : 26 pm to : steven j kean / na / enron @ enron cc : charlene jackson / corp / enron @ enron , celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron subject : presentation to faculty and students at berkeley steve , i am a lead recruiter at the university of california at berkeley for enron analyst / associate program . i contacted several friends who work at berkeley and received an invitation from one of them to make a presentation at the weekly faculty seminar of the dept . of industrial engineering and operations research . the students and faculty members from the business school will be also invited . berkeley in general , and department of industrial engineering and operations research in particular , are important centers of academic research on electricity markets ( s . oren works very closely with severin borenstein ) . my presentation will focus on the analyst / associate program . i shall also have an opportunity to discuss the power markets in california ( i expect many questions ) before many experts who are very important to shaping public opinion and regulatory agenda . please , let me know who in you group could help me in preparing this presentation and in presenting enron ' s point of view in a more effective way . vince fyi . the name of my friend who invited me : shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777",0 +"Subject: re : resume vasant , i agree . vince from : vasant shanbhogue / enron @ enronxgate on 05 / 01 / 2001 10 : 00 am to : vince j kaminski / hou / ect @ ect cc : subject : re : resume vince , he seems to have mostly equity and fixed income background ( and then some credit exposure calculation ) with not much credit data analysis experience . i do not think he would be appropriate for bryan ' s group - - he needs a person who tracks market developments and understands fundamental data , and although this guy may be good at modeling , we already have iris and amitava doing the modeling and looking at data . at this stage , i would prefer to hire somebody with direct experience in credit analysis ( banking , rating agency ) . i am worried that if we get another person without data analysis experience , then amitava will find himself with two people ( iris being the other one ) who are both inexperienced in this area , and he will find himself doing a lot of the work anyway . if you want to pursue him , we should probably do a phone interview first . vasant - - - - - original message - - - - - from : kaminski , vince sent : monday , april 30 , 2001 5 : 33 pm to : shanbhogue , vasant subject : re : resume vasant , what do you think ? he may be expensive . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 05 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - marshall brown on 04 / 25 / 2001 01 : 13 : 44 pm to : vince . j . kaminski @ enron . com cc : subject : re : resume vince , i apologize , i sent you the wrong resume ! here is the correct one . > marshall brown vice president robert walters associates phone # : 212 - 704 - 0596 fax # : 212 - 704 - 4312 marshall . brown @ robertwalters . com www . robertwalters . com > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : wednesday , april 25 , 2001 1 : 08 pm > to : marshall . brown @ robertwalters . com > subject : re : resume > > > marshall , > > he looks ok but below the level of quant skills i typically look for > > vince > > > > > > marshall brown on 04 / 23 / 2001 09 : 33 : 00 > am > > to : vince kaminski > cc : > subject : resume > > > vince , > i know this candidate is actively interviewing at el paso and i think > reliant . he has excellent quantitative background , but no real energy > experience . if you are interested in speaking with him let me know . > regards , > marshall brown > vice president > robert walters associates > phone # : 212 - 704 - 0596 > fax # : 212 - 704 - 4312 > marshall . brown @ robertwalters . com > www . robertwalters . com > > > > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . > > this email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed . if you have received this email in error please notify > the system manager . > > this footnote also confirms that this email message has been swept by > mimesweeper for the presence of computer viruses . > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > ( see attached file : litt _ har . doc ) > > > - litt _ tho . doc >",0 +"Subject: re : qian ( frank ) feng interview with the research group shirley : we ' ve also been in touch with frank . he wasn ' t going to receive his class schedule until yesterday , so we will follow up today and find a mutually convenient date . molly shirley crenshaw 01 / 16 / 2001 09 : 51 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kevin kindall / corp / enron @ enron , bob lee / na / enron @ enron subject : re : qian ( frank ) feng interview with the research group hi molly : i guess it is time to try and schedule frank ' s interview . we would like to bring him in sometime around the first of february ( when krishna returns ) . please contact him and see what a good time for him would be . attached is his resume and interview request form . - enron _ resume . doc - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 16 / 2001 09 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : molly magee 12 / 20 / 2000 05 : 35 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : qian ( frank ) feng interview with the research group you , too , shirley . we ' ll be back in touch . molly shirley crenshaw 12 / 20 / 2000 02 : 07 pm to : cheryl arguijo / enron _ development @ enron _ development , molly magee / hou / ect @ ect cc : subject : qian ( frank ) feng interview with the research group hello molly and cheryl : attached is frank ' s resume . we still have quite a bit of time as we want to schedule this for after krishna returns on the 25 th of january . this position would be for the research group directly , and would include all of vince ' s direct reports . thanks and merry christmas and happy new year ! !",0 +"Subject: re : yana kristal ' s rotation hi vince , i already spoke with maureen and we discussed timing . yana will stay until a replacement is found and trained . as for the permanent transfer , that is not a problem . thanks for getting back with me . avr vince j kaminski 12 / 05 / 2000 03 : 26 pm to : andrea v reed / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : yana kristal ' s rotation andrea , it ' s fine with me . few points : 1 . as a courtesy to maureen raymond , please , discuss the timing with her . 2 . yana is not a member of the analyst / associate pool . this is not a rotation . she was hired directly and this means that we transfer her permanently to your unit . vince andrea v reed 12 / 05 / 2000 01 : 14 pm to : vince j kaminski / hou / ect @ ect , maureen raymond / hou / ect @ ect cc : yana kristal / corp / enron @ enron subject : yana kristal ' s rotation i spoke to yana today and understand that you are supportive of yana rotating through our group , eim fundamental analysis . we are very pleased that yana will be joining us . her skill set will be particularly helpful as we build the steel business . i was hoping that yana could begin working with us mid december . does a start date in eim of dec . 18 work for you ? please let me know . once again , thank you for your support . andrea",0 +"Subject: enrondirectfinance . com usernames and passwords the enrondirectfinance website was launched this morning . for access , please use the following : url = www . enrondirectfinance . com username = enroninternal password = astros real player v 7 . 0 and adobe acrobat v 4 . 0 are required to view deal information . free downloads these programs are available on the enrondirectfinace website . if you have any technical difficulties , please contact the enrondirectfinance technical help desk at 3 - 9438 . please direct comments regarding the website to any of the following individuals : harry arora 3 - 6750 jeff bartlett 3 - 5629 suresh raghavan 3 - 4217",0 +"Subject: prc review stinson , i am going to do the prc review for bob and paulo . if your time permits , please join me for these two meetings . bob : 9 : 00 am paulo : 10 : 00 am i attended the prc training , they suggested letting employees read their review before the meeting . so i did that . here are the two files attached . zimin",0 +"Subject: re : windows 2000 - alcar brenda , what test are we supposed to carry out ? is monday next week ok ? vince from : brenda cassel @ enron on 07 / 05 / 2000 10 : 28 am to : dan feather / sa / enron @ enron , vince j kaminski / hou / ect @ ect , hector campos / hou / ect @ ect cc : subject : windows 2000 - alcar hello , i am on the qa team for the win 2 k roll - out . we need your help in testing "" alcar "" in a windows 2000 environment . this testing is crucial to the success of converting all pc ' s from nt 4 to windows 2000 . we ask that you make an appointment to come to our offices ( eb 2224 b ) to preform the test . it should not take more than 15 minutes . please e - mail me as soon as possible . thanks , brenda cassel qa - w 2 k x 36226",0 +"Subject: fx curve for rupee harry : i am krishna , just visiting our bombay office . can you send the rupee / us $ forward curve ( upto atleast 2005 ) to this address asap ? we are working on a deal for which we need this urgently . i will be back in houston next week and can talk to you in more detail then . if you need to call here the # is 91 - 022 - 8239856 ( ask for rajesh sivaraman ) . thanks , krishna .",0 +"Subject: iif / oxan - info sources vince , we would like to continue to receive the iif service for a cost to the research group of $ 15 , 000 per annum . can i ask you to approve this charge ? please let me know if you ' d like to discuss . we decided to cancel the oxford analytica service ( daily country briefs and access to the website ) as we are getting consensus forecasts for fx and inflation from another source , so we will not be subject to the $ 10 , 000 fee referenced below . thanks , gwyn - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 02 / 13 / 2001 01 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - robert johnston @ ect 02 / 13 / 2001 09 : 46 am to : maureen raymond / hou / ect @ ect , gwyn koepke / na / enron @ enron cc : scott tholan / corp / enron @ enron subject : iif / oxan hi maureen and gwyn - on the oxford analytica front , i ' m glad you have found the service useful . our contract with them has expired and we are currently negotiating for more users to have access . our current contract is for $ 50 k or $ 10 k per user per year . we can charge $ 10 k back to you . on the iif front , the invoice for $ 47 k is due at the end of the month . here i would propose that we pay two thirds ( to cover our costs and the costs of our competitive analysis colleagues in london ) , leaving $ 15 k for you to cover . since we took on these services last year , we have expanded our range of sources and projects and are consequently trying to do more with less . thus i need to allocate some of our costs from oxan and iif to other projects . let me know what you think about this proposal . maureen , congratulations on your secondment to enron metals ( gwyn mentioned it to me ) . fyi , our colleague jim roth is providing competitive analysis support to joe gold and john sherriff on that project from london . rj",0 +"Subject: re : rafal , dziekuje za odpowiedz . bede bardzo wdzieczny za ksiazke : wincenty kaminski 10 snowbird the woodlands , tx 77381 phone : ( 281 ) 367 5377 cell : ( 713 ) 898 9960 wicek rafal weron c - 11 on 01 / 29 / 2001 08 : 11 : 48 am to : vkamins @ enron . com cc : aleksander weron c - 11 subject : dear vince , bardzo dziekuje za podeslana literature , szczegolnie drugie wydanie ksiazki . bylismy w londynie w czerwcu zeszlego roku , ale w ksiegarni znalezlismy tylko piersze wydanie . obaj z alkiem ( ojcem ) wspolpracujemy z energetyka ( glownie polska ) od kilku lat . w zeszlym roku wydalismy ksiazke "" gielda energii : strategie zarzadzania ryzykiem "" , a obecnie pracujemy nad jej angielskim wydaniem . na jaki adres ci ja przyslac ? serdeczne pozdrowienia , rafal",0 +"Subject: evaluation form mike , please , sign and return to me . vince",0 +"Subject: re : visit ? frank , we shall be glad to meet you in houston . i am sure that we can find many interesting topics to discuss we can pay for your trip to houston . i shall call you next week to discuss the details . vince "" francis x . diebold "" on 04 / 11 / 2000 04 : 15 : 40 pm to : vince kaminski cc : subject : visit ? dear vince , i very much enjoyed speaking with you at lunch , if only briefly , at the  see http : / / www . stern . nyu . edu / ~ fdiebold . the upshot : it seems to me that we would both benefit from a more extensive conversation . i would be happy to visit you in houston to learn more about your operations , and to tell you more about mine . please do let me know if you are interested . best regards , frank diebold - - francis x . diebold armellino professor of finance stern school of business new york university 44 west 4 th street , k - mec , suite 9 - 190 new york , ny 10012 - 1126 fdiebold @ stern . nyu . edu http : / / www . stern . nyu . edu / ~ fdiebold ( 212 ) 998 - 0799 office telephone ( 610 ) 585 - 4057 voicemail ( 212 ) 998 - 0351 fax",0 +"Subject: re : henwood query hi karolina , yes , it might be more productive to talk on the phone . given our time difference , why don ' t we plan on tomorrow ( friday ) 8 : 00 am pdt , 4 : 00 pm bdt ? my number in the states is 503 - 464 - 8430 . give me your number , too , so that i can call back if i get hung up in a meeting or something . the situation is complicated by the fact that the marginal cost is set by the capacity increment of a plant that is on the margin in a particular hour , but in constructing the stack , increments of a plant may be scattered throughout the stack , based on their respective incremental heat rates . ( this is why increment heat rates must be strictly increasing in this model . ) results for the capacity increments , however , are not available as output ; only each plant ' s aggregate values are reported . i had to construct the stack for a particular hour to answer question about a homer city , ny plant we were studying a few years ago . attached is the sql query you can import into ms access to do the same thing for you ( making appropriate modifications to the year , hour , etc . ) unfortunately , no henwood documentation on the output variables existed when i created this query , so i can not really tell you what they represent anymore . an acquaintance of mine at entergy and i were lobbying to get henwood to provide some documentation , so it may be available now . let ' s talk and maybe we can help you out , michael > > > karolina potter / lon / ect @ enron 08 / 24 / 00 07 : 08 am > > > michael , i am an analyst in paul mead ' s continental power trading group in london . i am currently working on the project , which requires the use of emss , and experience some difficulties interpreting the output results . steven leppard from our research group gave me your name as an expert in this system and consequently the person to contact in case of problems . i have been running simulations for the dutch market and was asked to provide the traders with some front - end screen graphs in order to interpret the numerical results . one of the graphs is to show an hourly generation stack and system ' s marginal cost , as we only run cost based scenarios . to sort each station ' s hourly generation i need its marginal cost . to my knowledge though , marginal cost is only generated for a systems marginal unit ( transarea marginal units query , marg _ cost unit ) . therefore i was sorting the stations according to the cost which i calculated based on the outputs from station detail by hour query . the calculation was as follows : for each hour , for each generating station : "" marginal cost "" [ o / mwh ] = ( generation _ cost [ oo 00 ] * 1000 ) / generation [ mwh ] - vom _ cost [ o / mwh ] this i thought would include fuel cost and start up costs . however , a marginal station which i get on the stack as a result of the above calculation is not a station given in marginal station field in transarea marginal units query . i have also looked into transarea _ data _ hr table and transarea _ data table but non of the costs there match my results . do you happen to know what formula is used to determine marg _ cost and which outputs i should be using to obtain the right results ? it might be easier if we could discuss this issue on the phone . in this case could you please send me your direct telephone number . i am struggling understanding what is going on and would appreciate your help very much . regards karolina",0 +"Subject: class request : xl 97 - 564 excel 97 , introduction , william smith your approval is required for william smith to attend the following class . to grant approval , send a reply to "" lpharr @ enron . com "" ( notesmail : lerea pharr / hou / ect @ ect ) . be sure to include employee ' s name and class number in reply . excel 97 , introduction session dates & times : 3 / 23 / 2000 8 : 30 : 00 am - 3 : 00 : 00 pm location : eb 568 no show / participant fee : $ 150 . 00 if you have any questions , please call the technology training coordinator at 713 - 853 - 1816 .",0 +"Subject: dispatch within maharashtra jim , please find attached some slides that show the results of the henwood run giving dispatch for the dabhol plant within maharashtra . i have also sent the presentation we made to you to wade . he is to get back on when would be an appropriate time for him to go over the presentation with me . vince , stinson and i have placed ourselves on rebecca ' s calender for friday , and we will make the complete pitch to her . it would be great if you too could be present at the meeting . if it is possible , please do let me know . on the attached slides , please note that : the slides all assume that there is a 1 part power tariff , mseb liability for the entire capacity payment is not considered . the henwood model was with no power flowing out of maharashtra when variable o & m costs , fixed o though in some months ( jan ) it goes as high as $ 69 mm . hence , overall , mseb can pay for the dispatches as shown in the henwood run provided , they are not paying for the capacity payment for the whole 2184 mw plant . in conclusion , therefore , mseb has the need for between 1200 to 410 mw on a seasonal basis . this means that the power remaining to be sold to other states is the difference between that and 2184 mw . however , since the demand within maharashtra varies seasonally , it may mean that we need to market seasonal products to other states , not long term blocks . these are our conclusions . we may continue to work some more on the fuel and hedging side . if you have any more questions for me , please let me know , else for now there will not be any new henwood runs . regards , sandeep .",0 +"Subject: missing prc information vince , the following information is missing from your employee profile which will be used at the md prc meeting on 8 / 15 / 00 : current responsibilities previous experience at enron please go into your gis file and update by end of business day monday , july 31 st . if you have any questions or problems getting into your file , please call kathy schultea at ext 33841 . thank you .",0 +"Subject: adaptive trade vince , zimin , i participated in a telephone conference on this company this morning . there was a possibility enron would invest in it . their product appears to be a gui interface over the top of ilog solver ( and possibly ilog cplex ) which allows problems to be expressed in high level terms . i do not see any immediate application at enron , but i am interested in the concepts used so expressed an interest in a demo . maybe it would be useful for general modelling projects here . they do not even have a user manual for their software , so it will be difficult to figure out what it does unless a demo is arranged . the possibility for growth in the company seems small as the ilog software is a modest size market and their product is aimed at only a small part of that market . i think the scheduling tools in sap , i 2 , etc are more likely to succeed than this one as they are already integrated into an information system . because of the small market for this software , the many competitors , the absence of any clear use for it at enron and the early stage of development , there is very little prospect of us funding this company . tom",0 +"Subject: re : java training stinson - looks like we ' re in , to split the costs of the class with you . george will contact you soon . clayton - - - - - - - - - - - - - - - - - - - - - - forwarded by clayton vernon / corp / enron on 01 / 29 / 2001 08 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lloyd will @ ect 01 / 29 / 2001 08 : 38 am to : george hopley / hou / ect @ ect , clayton vernon / corp / enron @ enron cc : subject : re : java training sounds good . george please coordinate our attendance . thanks . george hopley 01 / 27 / 2001 01 : 29 pm to : lloyd will / hou / ect @ ect cc : subject : java training let ' s offer this to the analysts / specialists . george - - - - - - - - - - - - - - - - - - - - - - forwarded by george hopley / hou / ect on 01 / 27 / 2001 01 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - clayton vernon @ enron 01 / 27 / 2001 09 : 06 am to : george hopley / hou / ect @ ect cc : subject : java training george - here ' s the story . research forwarded to their personnel a solicitation they received for java training by an outside person , weeklong classes for true beginners and for those with decent programming experience in other languages ( esp c + + ) . vince had pre - agreed tlo pay for it for anyone who wanted it . but , the response they got was so "" overwhelming "" they reconsidered , for financial reasons , and decided it would be better to just hire a professor to teach a class for a week here . the costs would be around $ 15 , 000 , and there should be room for around 15 people in the class . they have 6 - 8 people , and wonder if we might have some people who would want to do it ( a no - brainer - java is a big - time resume pad these days ) and would be willing to share the costs with them . what is your opinion on this ? personally , i think it ' s a relatively inexpensive investment in our people , although , selfishly , it does increase their ' market value ' so to speak . ( of course , nothing keeps directors from going to the class as well : ) ) clayton",0 +"Subject: elements of power ( 4 ) dear colleagues : we are writing to remind you of an opportunity for in - depth education on electric power restructuring in texas through a training workshop offered by the university of houston . with the passage of senate bill 7 , texas is moving forward with electric power restructuring . what will the new marketplace look like ? how will it function ? how will existing business opportunities be affected , and what new ones are likely to emerge ? join us for a comprehensive two - day training workshop march 1 - 2 , 2000 that addresses these issues and accommodates both new and experienced professionals . hosted by the energy institute at the university of houston ' s college of business administration , the training workshop features an introductory day that will refresh participants on the basics of the electric power market and key aspects of the restructuring process in texas and the u . s . the second day targets advanced issues in the emerging marketplace and case studies for practicioners . the training workshop will be held at the center for executive development at the uh - cba . instructors are ms . dottie anderson and mr . jim stanton , each with extensive experience in the power industry and ercot implementation , and dr . michelle michot foss , director of the energy institute ( see biographies , following workshop details ) . to register , return the form below with your information . payment , or an indication of payment , must be received by monday , february 28 . for more information , contact energyinstitute @ uh . edu or telephone 713 - 743 - 4634 . this workshop is appropriate for new and / or advanced professionals in operations , trading , marketing , planning , public and regulatory affairs and in related fields such as law and accounting . new era in electric power value creation energy institute university of houston - - college of business administration center for executive development facilities melcher hall - - main campus registration ( return by february 28 , 2000 with payment or indication of payment ) workshop pricing : full course , march 1 and 2 - - $ 950 per person ( government agencies and nonprofits , $ 475 per person ) ; for groups of 3 or more from a single organization , $ 900 per person ( $ 425 for government agencies and nonprofits ) advanced audiences , march 2 only - - $ 700 ( government agencies and nonprofits , $ 350 ) ; for groups of 3 or more from a single organization , $ 650 per person ( $ 375 for government agencies and nonprofits ) fee includes all workshop materials , meals , refreshments and parking at uh - cba . sorry , we do not accept credit card payment . lodging for out - of - town participants is available at the university of houston hilton hotel at your own cost . you may contact the hilton at 713 - 741 - 2447 for reservation information . name ( s ) and title ( s ) : organization : address : telephone / fax / e - mail for contact : total payment and form of payment : ceu credit desired ( yes / no ) : training workshop details march 1 , 2000 - - principles 8 : 30 - 9 : 30 introduction and workshop overview 9 : 30 - 10 : 30 regulatory framework : national electricity reliability council ( nerc ) , federal energy regulatory commission ( ferc ) , and electric reliability council of texas ( ercot ) 10 : 30 - 10 : 45 break 10 : 45 - 12 : 00 operational , marketing and trading basics 12 : 00 - 1 : 00 lunch 1 : 00 - 1 : 30 texas senate bill 7 overview 1 : 30 - 2 : 00 public utility commission ( puc ) - texas basic rule making 2 : 00 - 3 : 00 ercot independent system operator ( iso ) functions and governance 3 : 00 - 3 : 15 break 3 : 15 - 5 : 00 ercot issues by committee * restructuring policy development * ancillary services * single control area * settlement / registration * congestion management * standard interconnection agreement 5 : 00 - 6 : 30 social march 2 - - advanced application 8 : 30 - 12 : 00 regional transmission organizations ( rtos ) and the ferc notice of proposed rulemaking ( nopr ) future of isos status of the nopr , public comments made isos under development : ercot , midwest , desert star 12 : 00 - 1 : 00 lunch 1 : 00 - case studies * changing electricity providers : town hall issues bringing together the elements of regulatory activity , market power and restructuring to the retail level , this exercise allows the participants to make active decisions as our experimental "" town "" weighs the option of separating from its traditional electricity provider and treading the waters of competition . our group will assume roles centered around "" regulators , "" "" power marketers , "" the present "" investor owned utility "" and the "" town "" itself . a town meeting will be convened in which each entity is allowed to present their issues in an effort to persuade municipal decision - makers that theirs is the best option . embedded in the exercise is the regulatory and operational framework that is built into the modules leading up to this participatory segment . frequent references to the basic materials provided to the workshop participants will be encouraged in the process of moderating discussions that the workshop facilitators will implement . * congestion management congestion management is one of the most critical components of ercot implementation . a number of approaches exist for pricing electricity during periods of high demand . each methodology bears important consequences for both providors and customers . workshop participants will participate in construction of a virtual transmission grid and experiment with different methods of managing congestion . 4 : 00 re - cap , q & a instructors ms . dottie anderson ms . anderson has over 19 years experience in the energy industry with extensive experience in federal and state regulatory policy analysis and advocacy on behalf of natural gas and electric companies . she is currently president and managing principal of consulting firm specializing in policy development and strategic analysis and planning for the electric and natural gas industries . ms . anderson served as member of steering committee responsible for coordinating the stakeholder process in the pjm restructuring meetings and also actively participated in developing the governance structure for pjm . she was a member of stakeholder group that designed wholesale market rules for texas in 1996 and currently serves as one of the power marketer segment representatives on the ercot technical advisory committee and chair of the congestion management working group developing a congestion management mechanism for use when texas begins its retail access pilot in june 2001 . she has participated in ercot technical advisory committees ad hoc committees on transmission adequacy and possible impacts of future electric market changes on the independent system operator and now involved in the broad - based stakeholder processes to restructure markets in texas in response to legislation passed in may 1999 . she also is chair of nerc market interface committee a standing committee addressing commercial business practices and standards in the electric industry and their interface with reliability . in collaboration with ercot iso staff , ms . anderson developed training seminar for conducting business in ercot under the puct ' s open access transmission rules and participated as a course instructor on the transition from nerc to naero . she also participated as a course instructor in the annual ercot iso operator training program . she participated as a member of government interface issues task force , a group participating in nerc restructuring process by addressing issues related to federal legislation and participation by canada in a north american self - regulation reliability organization . ms anderson is a certificated search conference manager by new mexico state university for completion of training in designing and managing search conferences and participative design workshops conducted by dr . merrelyn emery , australian national university . mr . jim stanton mr . stanton has 15 years in the electric power industry , divided between state agencies , investor owned utilities and power marketing . his background in generation , transmission and systems operations has proven valuable in the constantly changing world of power . combining a bs in management with a working knowledge of the commercial electric power business gives mr . stanton a unique view of the operational challenges of the industry , and most especially , the people who make it work on a daily basis . mr . stanton is a certified system operator in the southwest power pool and with the north american reliability council . he is currently involved with policy development in both ercot and the midwest independent system operator . dr . michelle michot foss dr . michot foss has been an analyst of u . s . and foreign energy and non - fuel resource development and environmental issues for nearly 21 years . she has a particular focus on policy and regulatory frameworks for energy commercialization and energy business enterprise strategy and firm / industry structure . dr . michot foss has been involved extensively in research and consulting on north american natural gas and electric power restructuring and convergence and development of continental cross - border trade and related issues . she is participating in ercot technical advisory committee workshops and committee processes for sb 7 implementation . dr . michot foss speaks and writes frequently on energy issues and energy sector restructuring in north and south america , western europe , japan and other world regions . about the energy institute the institute is engaged in business and public policy issues associated with commercial energy development worldwide . major portfolio areas for the institute are worldwide gas and power market development ( with emphasis on north america , the northern andes , western europe , the black sea / caucasus / caspian region and east asia ) , best practices in energy sector reform , special topics in energy technology and markets and energy commodity trading and marketing and the energy business enterprise of the future . in addition , the institute provides research and training initiatives in the u . s . , canada , mexico and latin america , china , the nis region , and other countries and is developing both a non - degree professional commercial practices program and an international training program on oil and gas sector reform and commercial development . faculty members are drawn from business administration , law , economics , geosciences and engineering . the institute is underwritten by leading oil , gas and electric power companies and consultancies . with the center for global studies at the houston advanced research center , the institute published the guide to electric power in texas as a public service for electric power restructuring . the guide is recognized as one of the most widely used resources by business and government participants . * * * * * * * * * * "" this e - mail contains information which is privileged , confidential and protected from disclosure . please do not disclose the contents or take copies without contacting us first . thank you . "" michelle michot foss , ph . d . director , energy institute college of business administration university of houston houston , tx 77204 - 6283 tel : 713 - 743 - 4634 fax : 713 - 743 - 4881 please note our new email addresses ! e - mail : mmfoss @ uh . edu web : http : / / www . uh . edu / energyinstitute / ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ cba energy institute university of houston 4800 calhoun , mh 320 houston , tx 77204 - 6283 ( 713 ) 743 - 4634 fx : ( 713 ) 743 - 4881 email : energyinstitute @ uh . edu web : www . uh . edu / energyinstitute",0 +"Subject: north atlantic forecasts update for fyi also , highly recommend adding tony hamilton to the research group , cross - train him one month in houston , per our teleconference this am . - - - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 01 / 26 / 2001 02 : 59 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : stephen bennett @ enron 01 / 26 / 2001 02 : 48 pm to : mike a roberts / hou / ect @ ect cc : subject : north atlantic forecasts mike . . . in response to phil clifford ' s request - i have constructed webpage that provides wind , wave , and storm information for the production and tranportation areas of the north atlantic . i ' ve linked the site from the research weather homepage to the european weather support page . here is the link : from here - follow the : "" north atlantic production / transport "" link . let ' s see what customer feedback we get - and i will continue to investigate further avenues of support . steve stephen bennett meteorologist - research enron americas ext . 5 - 3661",0 +"Subject: re : aiesec dear mr . kaminski , we will be glad to have you with us this saturday for the mock sales day . this event is part of our recruitment process . so far this semester the recruitment has been very successful - we have 16 new members , compared to 10 experienced ones . the next goal is to keep these people interested in what we do and build the aieseec spirit in them . i hope that this saturday will greatly contribute to that . here is the schedule so far : 9 : 00 - 10 : 00 breakfast 10 : 00 - 12 : 00 sales training session 12 : 00 - 1 : 00 lunch break ( board of advisors and alumni coming ) 1 : 00 - 3 : 30 practice sales calls some details : i don ' t have the training program finalized yet , but i ' m sure it will be good . i have a teacher from uh program for excellence in selling and the local committee president , tim , organizing it . it should be interactive and motivating : ) . if you are interested you are more than welcome to come in the morning and have fun with us . i ' m inviting the board of advisors members and some alumni to join us at noon . lunch will be provided . our members are cooking ! and it is a very international crowd ! so far we have german meatballs , some venesuelan soup ( don ' t remember the name , but it ' s supposed to be very good and a lot of it ) , spanish tortilla de patata and other international dishes . the part when you would help is the practise sales calls . this is a way to provide experience to our new members , we are inviting our board of advisors , alumni and everyone who is interested in aiesec to play as company representatives . i will give you case scenarios , everyone will have an office and the new members will have to "" sell "" aiesec to you . one of the goals of the organization is to create as many exchange opportunities as possible , so the new members will try to get you to sign a contract for taking an international intern into your imaginary company . i hope you find it interesting : ) . directions to uh , college of business : take i - 45 south , exit spur 5 , at the street light at the end of the freeway take a right , at calhoun street light take a right again , the college of business will be on your left hand side . park in the parking lot in front ( you don ' t need a permit on the weekends ) . please , let me know if you are coming and what time and i will make sure someone will meet you at the entrance of the building . thank you for your time , biliana at 04 : 01 pm 2 / 2 / 00 - 0600 , you wrote : > > > biliana , > > i have prior commitments on saturday , february the 5 th . please , send me more > information about the following saturday . there is a remote possibility i shall > have > to go to london that weekend . otherwise , i shall be glad to join you . > > vince > > > > > > > biliana pehlivanova on 01 / 28 / 2000 > 11 : 54 : 58 am > > to : vince j kaminski / hou / ect @ ect > cc : > subject : aiesec > > > > dear mr . kaminski , > > the following are the personal and work e - mail addresses of the polish > trainees in college station . > > sylwester rutkowski sylwesterr @ usa . net , sylwester . rutkowski @ destia . com > patricia dalecka pdalecka @ hotmail . com , patrycia . dalecka @ destia . com > danusia mas danusia . mas @ destia . com > lidia olczyk lolczyk @ usa . net , lidia . olczyk @ destia . com > robert lyczak rlyczak @ yahoo . com , robert . lyczak @ destia . com > > i would like to invite you to join us for a paintball game next saturday , > feb 5 th . the purpose of this event is to develop team building among our > student members , board of advisors , and corporate clients . > > in addition , i would like to invite you to participate in our mock > sales day on saturday , feb . 12 th . during this day , the new members will > first receive training on aiesec sales / knowledge and then role play with our > board of advisors and alumni acting as company > representatives . sharing your aiesec and work experience would be a > valuable contribution to our training program . > > i will get in touch with you regarding these events in the beginning of > next week , as soon as i have the time and place finalized . > > i appreciate your interest in working with us . > > best regards , > > biliana pehlivanova > vice president of incoming exchange > aiesec houston > > > > > > > >",0 +"Subject: re : charm conference call jim , i was on vacation last week . i shall be out tuesday and wednesday . what about a call next week ? vince james l bouillion 02 / 07 / 2001 09 : 32 am to : vince j kaminski / hou / ect @ ect , kevin kindall / corp / enron @ enron , jonathan davis / hou / ect @ ect , kate lucas / hou / ect @ ect cc : subject : charm conference call please let me know what works for you . i have a meeting monday from 10 : 00 a . m . through lunch . please advise . - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 02 / 07 / 2001 07 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" bertil olsson "" on 02 / 06 / 2001 10 : 37 : 21 am to : james . l . bouillion @ enron . com cc : subject : charm conference call carl and i are both available either monday 12 th or tuesday 13 th . we can do either am or pm but would prefer am if possible . please let me know your preference and i will set it up . regards , bertil the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person .",0 +"Subject: in confidence : prc summary hi vince following our prc meeting yesterday , here are the high - level facts as i presented them : ben parsons , overall : satisfactory . good interpersonal skills , we have questions on his quant abilities . reluctant to discuss / share his modelling work , and that which i have seen has too many hand fixes to give me confidence in his rigour . other enroncredit . com feedback indicates that he is sometimes prepared to compromise quant analysis to keep the traders happy . matthew williams , overall : excellent . superior quant skills , excellent everywhere else . recommended for promotion to senior specialist . kirstee hewitt , overall : excellent . a solid all - round performance , and a huge workload . in recognition of the level of responsibility kirstee is bearing i ' m recommending her for promotion to senior specialist . sharad agnihotri , overall : excellent . superior quant skills , excellent everywhere else . very self - directed and commercial - minded . already operating at manager level in my opinion . flagged for promotion next mid - year if performance continues at this level . slava danilov , overall : excellent . superior quant skills , excellent everywhere else . as a non - commercial - type quant he is hard to fault , but will probably never work on a trading desk . already operating at manager level in terms of his depth and rigour of analysis , and the extent to which he is contributing to the team . flagged for promotion next mid - year if performance continues at this level . steve",0 +"Subject: exmar credit john , bill bradford is on vacation . i passed your question regarding exmar credit rating to debbie brackett . vince",0 +"Subject: martin jermakyan hi there , i am favourably impressed by martin . i think he ' s an intelligent person and understands the power industry . he has good ideas about modeling various of things ( even though he thinks that technical constraints are just technicalities and are easy to deal with ) . please take note that he admitted he does not like to write code ( he has / had someone else doing it for him ) .",0 +"Subject: tips fyi - us inflation - linked bond i can not replicate the nominal yield and inflation adjected cash flow calculation from bloomberg . so i called the bond analytics group . i got to the point that they admit that they have made mistakes in their calculation , and promised to fix it . once i got the issues settled , there will be a better us inflation model . zimin",0 +"Subject: re : program attached ; march ny ro conference / participation confirmation lenos , thank you again for the invitation . i shall be glad to attend and speak on the topic indicated in the program . one correction : i am a vp . thanks vince lenos trigeorgis on 01 / 01 / 2000 01 : 17 : 11 pm to : gordon . sick @ rogroup . com cc : gordon . sick @ rogroup . com ( bcc : vince j kaminski / hou / ect ) subject : program attached ; march ny ro conference / participation confirmation the current version of the conference program is attached please confirm your participation as speaker ( and confirm your presentation title as listed on the attached conference program ) by next tuesday . the program is about to be sent to the printers next week please cc your reply also to gordon . sick @ rogroup . com lenos - nymarch 2000 conferencetimes . doc lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: approval is overdue : access request for tony . hamilton @ enron . com this request has been pending approval for 3 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000023619 approver : stinson . gibner @ enron . com request create date : 3 / 14 / 01 11 : 00 : 28 am requested for : tony . hamilton @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: dba administrator michelle , the name of the db administrator for enpower is charlene fricker , 5 - 3487 . alex will contact her regarding the access to the curve . i think it ' s a problem many layers below gary hickerson ' s level of responsibility and i hope we can handle it without using his valuable time . vince",0 +"Subject: re : enron opportunities thanks vince . we will follow up with this lsu graduate . hope you are doing well . regards , lynn dunphy vince j kaminski 02 / 15 / 2000 08 : 53 am to : lynn dunphy / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : enron opportunities lynn , i am forwarding you the resume of a very bright and motivated young man who attended a lecture i gave recently at lsu . i think we should consider him for an analyst position . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 15 / 2000 08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" richard c . iles "" on 09 / 14 / 2000 11 : 14 : 56 am please respond to "" richard c . iles "" to : cc : subject : enron opportunities dr . kaminski : ? here is my resume and cover letter . ? thanks , ? richard iles - enron cover and resume . doc",0 +"Subject: confirm participation at real options conference at cambridge u . - urgent the attached file contains the tentative program for two back - to - back real options conferences ( a professional one for july 5 - 6 , and the standard annual academic one for july 7 - 8 ) at cambridge u . your name has been provisionally included on the program . please check all the information relating to you and confirm your participation as listed ( or advice us of desired changes immediately ) . thank you . lenos - 4 thconfsessions . doc lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: proposal christie , thanks for helping out . attached is a one page "" intro "" to the project that vince and i are undertaking . please let me know how you would like it "" transformed "" before passing it along to the leadership at enron . you have the basic story - - enron ' s leadership purposefully and very successfully transformed the company . we plan to document in broad strokes the "" plan "" as it was set out , and trace its evolution through the history of enron ' s history . the final result will be a 20 - 40 page paper written in the style of a harvard business review piece . please let me know what else you may need . i ' ll put it together for you . thanks again , john - enronproposal . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: request submitted : access request for tom . barkley @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000012677 approver : stinson . gibner @ enron . com request create date : 1 / 8 / 01 2 : 30 : 03 pm requested for : tom . barkley @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: agenda & pre - work for valuation visioning session attached is a copy of the agenda for thursday ' s meeting . in preparation for the meeting , please think about and be prepared to discuss what "" valuation "" means to you in the systems you support or the job you do . if you have any questions , feel free to contact me at 5 - 9353 . thanks . chris",0 +"Subject: re : summer internship vince , i just wanted to tell you that i am looking forward to being there again and thank you for giving me this opportunity to contribute and learn . official starting dates ( as i was told by a vasant shanbhogue > subject : re : summer internship > > > > > cantekin , > > the summer associate program has closed but i shall check to see > if i can get one extra place . > > vince > > > > > > > "" cantekin dincerler "" on 03 / 28 / 2000 > 11 : 48 : 53 am > > please respond to cantekin @ mail . utexas . edu > > to : vkamins @ ect . enron . com > cc : ( bcc : vince j kaminski / hou / ect ) > subject : summer internship > > > > hi vince , > > i am writing you at this time to inquire as to the potential > of renewing my > internship at enron for the summer of 2000 . > > while the date of my request is later than i would have > wished , the reason > is that i had originally planned to go back to turkey this > summer and get > my mandatory military duty done . however , i now realize i can > put it off to > a further date . that left me wondering if you believe there > is a project > that i can get involved in this summer and be useful . if that were the > case , i would be more than happy to postpone my military duty > and spend the > summer with the research group . i discussed this with dr . > ronn , and he is > very supportive of this idea . > > i apologize again for bringing up this issue late , and look forward to > hearing from you . > > best regards , > > - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > cantekin dincerler > > doctoral candidate > the university of texas at austin > graduate school of business > department of finance > office : ( 512 ) 471 - 1676 > fax : ( 512 ) 471 - 5073 > home : ( 512 ) 472 - 5356 > http : / / uts . cc . utexas . edu / ~ cantekin > - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - > > > > > > >",0 +"Subject: model effort in houston christian , our spring / fall window of "" ? nactivity "" is rapidly eluding us . . . we need to get our internal model operational without delay . along these lines , let ' s go ahead and plan your visit to houston as soon as possible , but by all means get you in at least 4 weeks before hurricane season . that would mean the month of may looks good . please inform me what duties you could not perform from here to support the sydney office , we ' ll figure out how to keep that office whole . ( it ' s working without a hitch to have steve bennett in london , but continuing his houston duties ) if the first week in may ( for the whole month ) will work , please respond asap and we ' ll get housing arrangements finalized . looking forward to your visit , - - - mike",0 +"Subject: re : visit to houston and vince kaminski ' s research group vince - thanks for the note . i ' ll mention downtown for sure when making a reservation . shijie on fri , 30 jun 2000 , vince j kaminski wrote : > > > shijie , > > a note : in both cases makes a reservation explicitly at a downtown hotel . > there are hotels with the same names elsewhere in houston . > > vince > > > > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 30 / 2000 02 : 44 > pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > shirley crenshaw > 06 / 30 / 2000 02 : 25 pm > > to : shijie deng @ enron > cc : ( bcc : vince j kaminski / hou / ect ) > subject : re : visit to houston and vince kaminski ' s research group ( document > link : vince j kaminski ) > > shijie : > > i spoke with vince and he said friday the 28 th of july would be fine for > your visit to enron . > > please let me know your itinerary when you have it confirmed . there > are two hotels downtown houston , the doubletree and the hyatt regency > that are very close to the enron bldg . > > if you need help with anything , please let me know . > > look forward to having you at enron . > > regards , > > shirley crenshaw > > > > > > > > > shijie deng on 06 / 30 / 2000 10 : 15 : 43 am > > to : shirley crenshaw > cc : > subject : re : visit to houston and vince kaminski ' s research group > > > > shirley , > > thank you for your message . i ' m fine with 7 / 28 ( friday ) . i could fly in > to houston early evening on 7 / 27 . please let me know after you confirm > the date with vince . thanks ! > > shijie > > shi - jie deng > assistant professor > school of isye > georgia institute of technology > > office phone : ( 404 ) 894 - 6519 > e - mail : deng @ isye . gatech . edu > home page : http : / / www . isye . gatech . edu / ~ deng > > on fri , 30 jun 2000 , shirley crenshaw wrote : > > > > > > > good morning professor deng : > > > > i am vince kaminski ' s assistant and he has asked me to coordinate your > > visit to enron . the last week in july would be best for vince and his group . > > especially the 24 th , 26 th , 27 th , or 28 th . tuesday , the 25 th is already > filling > > up . please let me know which day would work for you . > > > > best regards , > > > > shirley crenshaw > > administrative coordinator > > enron corp . research group > > 713 / 853 - 5290 > > email : shirley . crenshaw . com > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : alex ' s article vince , did you make any more corrections after stinson ? he sent me the file , i removed the comments , and have put it on the page . sam vince j kaminski @ ect 06 / 26 / 2000 10 : 35 am to : william smith / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : alex ' s article sam , stinson ' s corrections are in red . mine are in magenta . remove all redundant comments . vince enron north america corp . from : william smith @ enron 06 / 26 / 2000 08 : 52 am to : vince j kaminski / hou / ect @ ect cc : subject : alex ' s article vince , was alex ' s article okay to include in the newsletter ? i ' d like to use it today unless you believe otherwise . sam",0 +"Subject: reactions log - in password http : / / www . reactionsnet . com dear reactions subscriber , you are entitled to free access to the reactions website . here is your username and password ( case sensitive ) to use this service . you can use them to access the latest issue of reactions on the web whenever you wish . you can also search the extensive archive of back issues and contact us via email . username = kaminski password = 105006 web address = http : / / www . reactionsnet . com please keep them in a safe place as you will need them every time you log on . if you have any problems in logging on or using this site please feel free to contact our dedicated help desk - telephone number + 44 ( 0 ) 20 7779 8006 or email web - help @ eurmoneyplc . com",0 +"Subject: cme and catex - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 04 / 05 / 2000 04 : 06 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - lucy ortiz 04 / 05 / 2000 04 : 02 pm to : joseph hrgovcic / hou / ect @ ect cc : subject : cme and catex spotlight report exchange products seeing slow trading gavin souter 03 / 20 / 2000 business insurance page 3 copyright ( c ) 2000 crain communications , inc . all rights reserved . exchange - based insurance products developed in recent years have been somewhat slow to get off the ground . although several exchanges have offered derivative contracts since the mid - 1990 s to cover insurance risks , none so far has posted a significant volume of trades . few insurers , reinsurers or policyholders have been drawn away from the traditional insurance markets , where capacity remains abundant and relatively cheap . as long as those traditional markets manage to weather major natural catastrophes , the allure of the exchange - based products will remain limited , observers say . also stifling the growth of the exchange - based contracts is the limited number of contracts available , one expert noted . dealers , he said , are unable to secure a suitable hedge by laying off one contract against another . although the various exchanges have had a good opportunity to establish a widely used set of new risk financing products , that has not been achieved , said morton lane , senior managing director , capital markets division at gerling global financial products in new york . the main problem with the existing exchanges is that they do not offer a sufficiently diverse array of products , he said . the only way to control the risks in the catastrophe options is to have a diversified portfolio of other contracts , and none of the exchanges currently offers a sufficiently broad range of options to provide for that hedge , he said . florida windstorm options , for example , cannot be bought and then hedged in the same way that international business machines corp . stock options contracts can be hedged with ibm stock , mr . lane explained . the exchanges might be more attractive to investors if , in addition to natural catastrophe options , they included options on other risks , he said . those might include , for example , satellite , aviation and crop indexes , mr . lane said . "" for the insurance buyer , such exchange instruments would not represent the perfect risk transfer vehicle , but as long as they are quantifiable and indexable , they may represent a good surrogate , "" he said . the exchanges could also be used to create a derivatives market for over - the - counter securitized deals , if there are regular issuers of catastrophe bonds , mr . lane said . the soft insurance market has also hindered the growth of exchange - based insurance products , said sean f . mooney , senior vp and chief economist at guy carpenter & co . , the reinsurance brokerage unit of marsh inc . in new york . "" the traditional market has been so competitive that people are not looking for other ways of doing business , "" he said . at least in concept , the exchange - based deals are generally similar to the mortgage - backed securities that have been a huge success since they were introduced in the 1970 s . "" there is a belief that alternative means of transferring risks will grow , but it is difficult to predict when , "" mr . mooney said . currently , the trading that is taking place typically involves established insurers and reinsurers , so the exchanges have not brought substantial new capacity to the marketplace , he said . guy carpenter provided the index for the bermuda commodities exchange reinsurance products . the bce did not take off , however , and was suspended last year after two years of little activity . the oldest of the insurance - related , exchange - based derivative products are the catastrophe options traded on the chicago board of trade , which began trading the options in 1996 . initially , there was substantial interest in the options , but the soft traditional market has hampered use of the contracts to hedge catastrophe exposures , said carlton purty , an independent broker at the cbot who trades in options . no catastrophe option trades have been completed at the cbot so far this year , he said . last year , there was increased interest in the contracts because of hurricane floyd , but few contracts were traded , mr . purty said . "" i think a major , major catastrophe will have to happen before they really take off , "" he said . the contracts offer real protection , and options dealers are keen to trade in a new niche , but the conventional insurance and reinsurance markets are so soft that few companies are turning to alternative coverage options , mr . purty said . the catastrophe risk exchange , located in princeton , n . j . , has radically changed its structure since it was originally announced in mid - 1996 , and it is well positioned to expand , said frank sweeney , chief operating officer . catex initially planned to be a computer - based facility for reinsurers that would enable them to exchange catastrophe risks and to build balanced portfolios . but by the time the exchange was operational in november 1996 , it was clear that most reinsurers and insurers interested in catex wanted only to buy and sell conventional reinsurance , mr . sweeney said . although there was some interest in risk swapping , only a handful of risks were posted on the system , and none was traded , mr . sweeney said . consequently , catex has become chiefly a "" cash for cover "" exchange , he said , noting that the risks reinsured on the exchange include property catastrophe coverage , aviation and liability coverages . catex also trades industry loss warranties , where coverage is triggered by an actual loss combined with an industry loss over an agreed threshold . other adjustments to the exchange included making it accessible through the internet in november 1998 . and late last year , catex offered users the ability to set up smaller networks , allowing them form groups whose members do business only with one another . since its inception , catex has completed about 450 trades , totaling $ 400 million in premium and more than $ 3 billion in limits , he said . catex ' s roughly 160 subscribers include reinsurers , insurers and corporate entities that purchase coverage through their captives , mr . sweeney said . "" we obviously have a long way to go , but we are pretty satisfied with what we have achieved so far , "" mr . sweeney said . the exchange sees increased activity after major losses , as cedents seek to buy replacement coverage to offset depletions in their existing cover , he said . for example , mr . sweeney said , there was a flurry of activity after the european windstorms in december last year . last september , the chicago mercantile exchange entered the field of insurance - related derivatives when it began offering weather derivatives . thus far , 420 futures contracts have been traded , said larry grannan , senior director in product marketing at the cme . such contracts are designed to allow businesses to hedge against weather - related losses . for example , a utility may sell less power in a mild winter , and it would be able to use the futures to hedge a resultant fall in revenues . the exchange first offered heat - based indexes for atlanta , chicago , cincinnati and new york . in january , it added philadelphia , dallas , des moines , las vegas , tucson and portland , and it began offering contracts based on cold weather . currently , most of the trades are between securities dealers themselves , but , eventually , the contracts will likely be used more extensively by utilities and insurers , mr . grannan said . in addition , the futures contracts could be used as hedges for over - the - counter securitized deals , he said . copyright , 2000 dow jones & company , inc . all rights reserved .",0 +"Subject: re : cusip vince , i am waiting to hear back from our compliance department on this . i will get you the info as soon as i rec . it . i mailed the receipt for the deposit today . david c . walkup sr . financial consultant 713 - 658 - 1685 800 - 456 - 9712 > - - - - - - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : tuesday , december 19 , 2000 11 : 09 am > to : david _ walkup @ ml . com > cc : vince . j . kaminski @ enron . com > subject : cusip > > david , > > the cusip of the bond i have is 694308 efo > pgc 8 . 375 % 5 / 1 / 25 lst & ref mortgage bond , ser 92 b . > > > vince > > caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . for your protection , avoid sending identifying information , such as account , social security or card numbers to us or others . further , do not send time - sensitive , action - oriented messages , such as transaction orders , fund transfer instructions , or check stop payments , as it is our policy not to accept such items electronicall",0 +"Subject: re : hotel for the wharton trip i ' m not sure i ' m going to make it to phila because of prc . i will advise next week . also , can you tell me paula ' s last name that we rode with the other day when you all took me to the airport ? thanks . vince j kaminski 11 / 20 / 2000 04 : 34 pm to : jennifer burns / hou / ect @ ect cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect , piazzet @ wharton . upenn . edu subject : hotel for the wharton trip jennifer , this is the address of the hotel within a walking distance to the wharton school . please , make the reservation for jeff shankman at this hotel for the december the 6 th meeting . vince kaminski http : / / www . innatpenn . com / contact . html the inn at penn sansom common , 3600 sansom street philadelphia , pa . 19104 phone : 1 - 800 - 809 - 7001 fax : 215 - 222 - 4600 please , mention that the stay is related to the university business when making the reservation . tom piazze at wharton can confirm it . tom piazze phone : ( 215 ) 898 1615 piazzet @ wharton . upenn . edu",0 +"Subject: confirmation of your order this is an automatic confirmation of the request you have placed using it central . request number : ecth - 4 usr 8 v order for : anita dupont 1 x ( standard desktop $ 905 ) enron it purchasing * please send all status inquiries regarding this request to : mailto : receiving & hardware @ enron . com",0 +"Subject: re : e - mail address chnage thanks for your message , your account has been updated . should you wish to make any changes to your personal account on www . cera . com , go to : http : / / www . cera . com / cfm / edit / account . cfm sincerely , cera webmaster - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : monday , march 27 , 2000 9 : 59 am to : webmaster @ cera . com cc : vince j kaminski subject : e - mail address chnage to all whom it may concern : please change my e - mail address from vkamins @ ect . enron . com to vkamins @ enron . com vincent kaminski",0 +"Subject: re : enron tiger kick off donna , jeff shankman will join me for the kickoff . we would like to invite the students and faculty members to dinner , following the presentation . any recommendations regarding the restaurant ? vince fap on 11 / 08 / 2000 12 : 15 : 10 pm to : cc : weigelt , "" ' kemallor @ wharton . upenn . edu ' "" , thomas , "" ' vkamins @ enron . com ' "" subject : enron tiger kick off tiger team hosts , faculty , students and teaching assistants : this is to confirm the date , time and location for the upcoming tiger team kick - off . the enron project date will be wed . , dec 6 at vh 210 from 3 : 00 - 5 : 00 pm . the purpose of the kick - off meeting is for the teams , faculty , ta ' s and hosts to meet , learn more about the hosting organization and to further discuss the project . for hosts who may need a campus map , please see http : / / www . upenn . edu / fm / map . html from the 30 th street train station , it is a quick taxi ride to spruce st and 37 th st . the inn at penn , a new hotel , is one block from campus , if lodging is necessary . the phone number there is 215 . 222 . 0200 . please mention you will be at penn for business . the address is : the inn at penn sansom common 3600 sansom street philadelphia , pa 19104 hosts , please let me know the names and titles of those representatives who will be attending the kick - off . also , let me know if you will need technology ( laptop for ppt or overhead for slides ) for presentation purposes . if you have any questions , please feel free to contact me . sincerely , donna piazze program director field application project the wharton school univ . of pennsylvania ( 215 ) 573 - 8394 ( 215 ) 573 - 5727 fax fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: re : lance cunningham discussions with lance during his hire were intended to have lance start prior to bonus and merit eligibility . therefore , lance accepted the position under the impression he would be eligible for both bonus and merit . kari oquinn 01 / 25 / 2001 10 : 45 pm to : norma villarreal / hou / ect @ ect cc : subject : lance cunningham lance cunningham , mgr , hired 10 / 2 / 00 , rated "" satisfactory "" has a $ 5 k ( 5 . 55 % ) equity inc indicated in gcs . please give more detail . i realize he was rated ; however , he was hired after 10 / 1 and his rating is sat .",0 +"Subject: re : prc meeting date anne , thanks . shirley is checking my calendar and will call you about the schedule . the entire week of the 11 th does not look good for me . vince from : anne labbe / enron @ enronxgate on 04 / 30 / 2001 11 : 17 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / houston / eott @ eott subject : prc meeting date vince , just wanted to check with you to see if you have a preference as to when you would like to have your mid - year prc meeting . if you and your team are available , i would prefer to have it on either june 12 th , 13 th or 14 th . i am very flexible though , so please just let me know so that i can start making the necessary accommodations . thanks , anne",0 +"Subject: e - mail addresses of nevrl video conference participants following are email addresses of all who participated in the video conference july 27 th for future reference . enron corp . arthur andersen steve kean - skean @ enron . com victor . a . burk @ us . arthurandersen . com vince kaminski - vkamins @ enron . com angela . a . minas @ us . arthurandersen . com amy oberg - aoberg @ enron . com marie hejka - mhejka @ enron . com edward . j . giniat @ us . arthurandersen . com barry . d . libert @ us . arthurandersen . com james . w . petrie . jr @ us . arthurandersen . com george . e . kronman @ us . arthurandersen . com allan . roberts @ arthurandersen . com * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: re : recommendation for john gordon vince , thanks for your quick action on this . i try to be selective about sending out recommendations proactively , but in john ' s case i am very confident that he will add a lot of value to whoever hires him . on a different topic i was pleased to see that you will also be on the eprm program again in the fall . duane - - on monday , may 15 , 2000 , 9 : 28 am - 0500 "" vince j kaminski "" wrote : > > > celeste , > > i am forwarding you a letter from prof . duane seppi from carnegie mellon > university . > i have known duane for many years and i know that he does not make his > recommendations without very good reasons . > > i would recommend looking at john gordon as a very strong candidate : > i think he will make a terrific contribution to enron . > > > vince > > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 15 / 2000 09 : 25 > am - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > ds 64 @ maill . andrew . cmu . edu on 05 / 12 / 2000 01 : 30 : 14 pm > > to : vince j kaminski / hou / ect @ ect > cc : > subject : recommendation for john gordon > > > > dear vince , > > i am writing to bring to your attention a gsia student , john gordon , who is > currently being considered for enron ' s associates program . my understanding > is that mark courtney and andrew miles at enron are championing john as a > late addition to the program . > > while i know enron doesn ' t routinely recruit at gsia , john would be an ideal > candidate if you are willing to make an exception . he is a terrific finance > student with a strong transcript ; including an a + in my options class . since > john has an engineering / energy background , he asked early on for additional > background reading about finance and energy . john is personable and > outgoing . normally the job market for someone of john ' s caliber would have > already cleared , but i have been told that there are dual career issues at > play here . > > i would be very appreciative if you would take a look at john . a copy of > his resume is attached to this email . > > best regards , > duane > > * * * * * * * * > duane seppi > > graduate school of industrial administration > carnegie mellon university > pittsburgh pa 15213 - 3890 > > tel . ( 412 ) 268 - 2298 > fax ( 412 ) 268 - 8896 > > email ds 64 @ andrew . cmu . edu > * * * * * * * * duane seppi graduate school of industrial administration carnegie mellon university pittsburgh pa 15213 - 3890 tel . ( 412 ) 268 - 2298 fax ( 412 ) 268 - 8896 email ds 64 + @ andrew . cmu . edu",0 +"Subject: interview with enron corp . research group good afternoon mr . ball : the enron corp . research group would like to conduct an informal interview with you at your convenience . please give me some dates and times within the next 2 weeks that you might be available and i will arrange the schedule . the people that will be interviewing you are : vince kaminski managing director stinson gibner vice president grant masson vice president vasant shanbhogue vice president krishna krishnarao director zimin lu director tanya tamarchenko manager alex huang manager each individual interview will last approximately 15 - 20 minutes , so we probably should allow at least 3 hours . if you would prefer to call me with some dates and times - i can check the calendars while we are talking . look forward to hearing from you . thank you . shirley crenshaw administrative coordinator research group 713 / 853 - 5290",0 +"Subject: term papers team , can you resend your text document to vince asap . we could open your spreadsheet ok , but not the document . vince ' s contact information is on the attached email below . thanks jason - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 05 / 04 / 2001 05 : 32 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 05 / 04 / 2001 05 : 29 pm to : monfan @ rice . edu cc : vkaminski @ aol . com , jason sokolov / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : term papers felix , please , resend me the term papers of your group , each as a separate file . please send it to my aol address as well as work address . my aol address is vkaminski @ aol . com my home phone number is 281 367 5377 . vince",0 +"Subject: re : interview steve , i submitted my evaluation . general impression was rather negative : he seems to be a consultant type person who speaks about everything with confidence but is short on depth and technical details . he is personable , outspoken , organized - on the positive side . also , the red flag is that he jumps from job to job : typical after 18 - 24 months when any organization can ascertain his usefulness . vince from : stephen stock / enron @ enronxgate on 04 / 17 / 2001 01 : 03 pm to : vince j kaminski / hou / ect @ ect cc : subject : interview hi vince , what did you think of david hsu ? my thoughts . overall a good guy . personable . intelligent . he could communicate reasonably well , but seemed to be capable of losing objectivity in favour of technical advancement . he didn ' t seem comfortable with taking a man - management role ( at least he didn ' t want to be an ' administrator ' ) he appeared to know a lot about risk . ( in fact jay web called me to say he felt david was one of the better risk guys he had seen but also commented that he needed to be coupled with a project manager to be successfull ) . regards steve",0 +"Subject: re : thanks ! karin , i talked to mike roberts ( the head of the whole weather team ) , and he is saying that all expenses for tony should be charged to global products team . this is agreed between vince and jeff shankman . mike and vince are negotiating with john to put stephen ( or somebody who will replace him ) to some other cost centres ( via research ) . it looks like kevin moore is happy if stephen is charged to the same cost centre as tony . let us right now charge tony and stephen to the cost centre below . please , could we charge them separately - when john and vince make their decision , we should be able to re - charge . many thanks , slava enron capital & trade resources canada corp . from : karin ahamer @ enron 18 / 04 / 2001 15 : 06 to : tani nath / lon / ect @ ect , viacheslav danilov / lon / ect @ ect cc : subject : re : thanks ! tani / slava could you please let me know which costcentre i can bill for any charges relating to tony and stephen . thx karin - - - - - - - - - - - - - - - - - - - - - - forwarded by karin ahamer / eu / enron on 18 / 04 / 2001 15 : 04 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : stephen bennett 18 / 04 / 2001 12 : 14 to : karin ahamer / eu / enron @ enron cc : subject : re : thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by stephen bennett / na / enron on 04 / 18 / 2001 06 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore @ ect 04 / 18 / 2001 06 : 11 am to : stephen bennett / na / enron @ enron cc : subject : re : thanks ! r . c . 107043 co . # 0413 stephen , all charges for soft ware that you use in london should be charged to the same cost center as tony hamilton , reason being , is that someone will replace you in that position . thanks kevin moore enron north america corp . from : stephen bennett @ enron 04 / 18 / 2001 05 : 08 am to : karin ahamer / eu / enron @ enron cc : kevin g moore / hou / ect @ ect subject : re : thanks ! you can cost it to my group in houston . kevin moore has the proper number enron capital & trade resources canada corp . from : karin ahamer 04 / 18 / 2001 05 : 06 am to : kevin g moore / hou / ect @ ect cc : tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect , stephen bennett / na / enron @ enron , tani nath / lon / ect @ ect subject : re : thanks ! kevin do you know whose costcentre the microsoft frontpage is supposed to go on ? thx karin enron capital & trade resources corp . from : stephen bennett 18 / 04 / 2001 10 : 10 to : karin ahamer / eu / enron @ enron cc : kevin g moore / hou / ect @ ect , tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect subject : thanks ! hi karin . . . i hope you had a splendid holiday ! i wanted to thank you for getting tony and i set up here last week . we seem to have established a steady daily routine and are supporting several different trading groups in london as well as continuing our daily support of traders in houston . we ' ve gotten far more requests for information than we expected , so as a result i will be remaining in london a little longer than originally expected . as of now - i ' m not sure exactly when i ' ll be going back to houston - but vince has let me know that i will remain here as long as necessary to ensure adequate daily weather support for the london traders . to that end - i think i will need one additional piece of software installed on the machine that i will be using on a regular basis . could i please get microsoft frontpage installed as soon as we can get it ? that leads to the second issue of desks . i know that space is a premium here - and i understand that i may need to move around some as a result . i certainly want keep things as simple as possible for everyone - but i also wanted to make sure that you know that there are certain applications that are essential for the daily trader support in london and houston . as such , if i move , we will need to make sure that these applications are available from the beginning of the day ( we start about 0600 ) . the applications are : 1 ) adobe acrobat - full version 2 ) accuweather for windows - ( this is something i will need to install ) 3 ) microsoft front page 4 ) terminal server 5 ) the full ms office software package one idea would be to have a pc move with me - that way we would not need to reinstall this software which could cause problems with the daily support routine . thanks again for all of your help . i will let you know - once i know - how long i will be here . i should hear something from vince over the next few days giving me an idea . cheers , steve stephen bennett senior meteorologist enron research temporarily in london : ext 3 - 4761 otherwise : ( 713 ) 345 - 3661",0 +"Subject: re : interview with the enron research group - reply mark : while we are anxious to fill this position , we certainly understand scheduling conflicts ! please let us know as soon as you have a definate time . dr . kaminski will be out of the office the next two weeks also . maybe the week of the 30 th or the 6 th of november ? look forward to hearing from you . sincerely , shirley crenshaw mark . giancola @ do . treas . gov on 10 / 13 / 2000 08 : 47 : 57 am to : shirley . crenshaw @ enron . com cc : subject : interview with the enron research group - reply date : 10 / 13 / 2000 09 : 42 am ( friday ) from : mark giancola to : ex . mail ( "" shirley . crenshaw @ enron . com "" ) subject : interview with the enron research group - reply thanks for your message . our e - mail system was down all day yesterday so i was not able to respond until today . i am very interested in coming in for an interview . unfortunately , my schedule will make traveling on a weekday difficult for at least the next two weeks . i am travelling as part of the us delegation to the g - 20 on the 24 th and 25 th and will be busy until then in preparation . immediately following that trip i will be moving to a new office here in treasury and am not sure about my schedule . i would like to wait until next week when i have a better idea of my schedule to propose times to come to houston . please let me know if there are time constraints on your side . thanks , mark giancola > > > ex . mail . "" shirley . crenshaw @ enron . com "" 10 / 12 / 00 09 : 06 am > > > good morning mr . giancola : your resume was forwarded to vince kaminski , managing director and head of research with enron . we would like to bring you in for an informal interview at your convenience . this would be for a position of "" economist "" or "" associate economist "" , reporting to maureen raymond castaneda . please give me some dates and times that would be convenient with you and i will have our hr rep contact you to schedule your coming to houston . i look forward to hearing from you . sincerely , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290",0 +"Subject: re : my son kristin , i think that we have done enough for this guy . all we can do is to give somebody a chance . the god helps those who help themselves . thanks for all your help and your efforts . vince kristin gandy @ enron 11 / 01 / 2000 03 : 19 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : my son vince , i left a message with one of yaron ' s roommates on thursday afternoon for him to call asap for an interview on sunday . i guess he took the wrong number down but i do not understand this because the roommate read the number back to me and it was correct . when i did not hear from yaron i called on friday and left a voice mail with my cell and office numbers . i still did not hear from him and called again yesterday morning . i finally received a call at 4 pm yesterday but by that time my team and myself were half way back to houston . sorry it did not work out . i have a call into charlene jackson as to how she wants me to proceed and i will get back with you . kristin vince j kaminski @ ect 11 / 01 / 2000 08 : 40 am to : john goodpasture / ots / enron @ enron , kristin gandy / na / enron @ enron cc : subject : my son fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 01 / 2000 08 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" shmuel oren "" on 10 / 31 / 2000 02 : 27 : 18 pm to : cc : subject : my son vince apparently the recruiter spoke to one of my son ' s roommates and left a phone number ( 713 ) 343 - 3214 which he tried several times and got busy signals . today she called just before you called me and left her cellphone number but he was in classes all morning and got the message in the afternoon . i really appreciate your going out of your ? way to help . perhaps there will be another opportunity . ? shmuel ?",0 +"Subject: "" help millions "" - pledge today ! thank you for attending one of the executive breakfasts held at depelchin children  , s center this week . seeing is believing . i hope you enjoyed seeing first hand how the dollars you give really do make a difference . as was mentioned in the breakfasts , it is very easy to make your contribution this year by simply clicking on the united way link , http : / / unitedway . enron . com or go directly to internet explorer or netscape and type in unitedway . enron . com in the address field . either option should take you directly to enron  , s united way 2000 campaign site . pledge cards will not be distributed this year , so please make your pledge electronically - it only takes minutes ! please call me at 713 / 853 - 3264 if you have questions or have any difficulties at all accessing the site . thanks again ! your participation is important to the success of the campaign .",0 +"Subject: message 4 dear dr . kaminski , this is a message of discussing the problem in lacima ' s paper . i think that glen dixon has told you there is a fault in the paper written by dr . clewlow and dr . strickland . it is understandable to have some errors in their work . people always make mistakes . actually , i found the problem in appendix a of their paper . they can ' t prove the eq . a 4 rigorously . there is something wrong in mathematical interpretation . if you like , i can give you a full analysis of this problem . ps : attached with their paper . best regard quentin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 622 tel : ( 07 ) 33461428 department of mathematics , the university of queensland - energy _ single _ factor . zip",0 +"Subject: sevil yamin vince , do you want me to do this , or vasant ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2001 02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : anne labbe / enron @ enronxgate on 04 / 06 / 2001 09 : 57 am to : stinson gibner / hou / ect @ ect cc : subject : sevil yamin stinson , i am the new hr generalist for the research group because norma villarreal is moving to business analysis and reporting . earlier this week , norma and i met with vince , and he said that he was going to talk to you about writing up a list of sevil ' s projects / accomplishments for last year and this year , so that we can give her a project bonus since she did not receive a bonus during the normal prc time . at your earliest convenience , will you please email me this list so that i can get started putting together all of the paperwork so that she can receive a check on april 16 th . if you have any questions , please feel free to contact me at 5 - 7809 . i look forward to meeting you , and the rest of the group next week at vince ' s staff meeting . thanks , anne labbe '",0 +"Subject: vince kaminski good morning mr . bandini : i am dr . kaminski ' s assistant and he has asked me to forward a copy of his "" bio "" and the following information to you . dr . kaminski ' s email address : vkamins @ enron . com telephone number : 713 / 853 - 3848 thank you for your interest . sincerely , shirley crenshaw administrative coordinator enron corp . research 713 / 853 - 5290 email : scrensh @ enron . com",0 +"Subject: re : bullet points please respond to hi vince , thanks for the bullets . regarding power 2001 , it certainly does promise to be a very interesting event . have a great week , paul - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , april 09 , 2001 9 : 11 am to : pbristow @ riskwaters . com cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com subject : bullet points paul , i am sending you modified bullet points . the modifications are in red . apologies for a delay in responding to your messages . by the way , power 2001 gets only more and more interesting every day . vince ( see attached file : financial maths draft . doc )",0 +"Subject: technical corner for when you return . . . sam - - - - - - - - - - - - - - - - - - - - - - forwarded by william smith / corp / enron on 09 / 11 / 2000 07 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - giuseppe _ paleologo @ enron . net on 09 / 08 / 2000 05 : 00 : 17 pm to : william . smith @ enron . com cc : subject : technical corner hi will ( or sam ) ! i hope you had a good weekend ! the probability of the car being blue should be . . . . hemmm . . . . let ' s see . . . . 41 . 38 % ? ? ? by the way , do you know of any book on the collapse of ltcm ? ciao , giuseppe",0 +"Subject: new volatility curve generator for uk power we have established a set of power volatility curves down to the efa / monthly level of detail that can be marked to market up to 6 years out . beyond this , the volatility decays to what we understand to be the long - term level for power volatility , given our understanding of the behaviour of forward prices over large time - scales . the swaption traders can now fit the first 5 - 6 years of the volatility curve to the market - observed baseload swaption implied volatilities ( typically 3 to 12 months duration for the underlying swap ) and then be in a good position to price other swaptions ( including swaptions on individual efa slots ) consistent with the curve . there may also be an impact on the daily var calculation . an illustration of the current volatility curves is pasted below : - these curves will be reset as the market moves , and allow a mark - to - market approach to be followed for our volatility book . the spreadsheet model is saved in t : \ readwrte \ elec _ uk \ models \ . xls and also attached below for houston staff to review . [ stinson - i ' d be grateful if you could offer an opinion / audit to ensure that i haven ' t missed anything , thanks . ] regards , anjam x 35383",0 +"Subject: interview with enron corp . good morning mr . parsons : the enron corp . research dept . would like to conduct a telephone interview with you at your convenience . the interviewers would be : vince kaminski managing director p . v . krishnarao director osman sezgen manager please give me some dates and times either this week or july 5 , 6 & 7 of next week that you would be available and i will coordinate the calendars . look forward to hearing from you . regards , shirley crenshaw administrative coordinator enron corp . research 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: re : resume from a neural networks zealot celeste , we can use this guy as a help for enron broad band svc ' s . we are getting many projects in this area . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 24 / 2000 07 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - - konstantin mardanov on 01 / 24 / 2000 12 : 06 : 42 am to : vince j kaminski / hou / ect @ ect cc : subject : re : resume from a neural networks zealot on wed , 20 oct 1999 , vince j kaminski wrote : > konstantin , > > i am sending your resume to the analyst / associate program > with the recommendation to accept you as an intern in my group . > > vince dear dr . kaminski , it has been a long time since i contacted you so i was wondering if my resume had been considered for an internship in your group . i will appreciate it very much if you let me know when i should expect to learn about a decision on the issue . thank you for you time . sincerely , konstantin . konstantin mardanov department of physics , | 5012 duval st , apt . 206 university of texas @ austin , | austin , tx 78751 , u . s . a . rlm 7 . 316 , austin , tx 78712 | u . s . a . | phone : 001 ( 512 ) 374 - 1097 e - mail : mardanov @ physics . utexas . edu url ( almost obsolete ) : http : / / www . niif . spb . su / ~ mardanov - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -",0 +"Subject: cameron payne vince , congratulations on your promotion . hope the litigation lawyers are leaving you alone . i ' m attaching a resume of a friend of mine , cameron payne . i don ' t know if you are looking for anyone but cameron is pretty special , as you ' ll see from his resume . call him or me if you ' re interested in talking to him . i ' m forwarding his resume to fastow and whalley , too , in case they see a fit . take care . bob",0 +"Subject: re : summer internship cantekin , the summer associate program has closed but i shall check to see if i can get one extra place . vince "" cantekin dincerler "" on 03 / 28 / 2000 11 : 48 : 53 am please respond to cantekin @ mail . utexas . edu to : vkamins @ ect . enron . com cc : ( bcc : vince j kaminski / hou / ect ) subject : summer internship hi vince , i am writing you at this time to inquire as to the potential of renewing my internship at enron for the summer of 2000 . while the date of my request is later than i would have wished , the reason is that i had originally planned to go back to turkey this summer and get my mandatory military duty done . however , i now realize i can put it off to a further date . that left me wondering if you believe there is a project that i can get involved in this summer and be useful . if that were the case , i would be more than happy to postpone my military duty and spend the summer with the research group . i discussed this with dr . ronn , and he is very supportive of this idea . i apologize again for bringing up this issue late , and look forward to hearing from you . best regards , - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 http : / / uts . cc . utexas . edu / ~ cantekin - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -",0 +"Subject: candidate evaluation , wendi germani please complete the attached form and also let me know if you have an interest in proceeding with wendi . thanks ! pam",0 +"Subject: copiers on 19 hi iain : got a questions for you ? we have a small copier in our research area ( a minolta cspro ) that stays on the blink somewhere , quite a bit of the time . the temporary copier in 19 kl is a kodak image source 50 . what is the difference in price of these two copiers ? is there any way we could exchange the minolta for the image source when you bring our permanent copier to 19 kl ? please let me know . we would like to do that if we can and it is not too much more money . thanks and have a great day ! shirley 3 - 5290",0 +"Subject: summer internship hi vince , i am writing you at this time to inquire as to the potential of renewing my internship at enron for the summer of 2000 . while the date of my request is later than i would have wished , the reason is that i had originally planned to go back to turkey this summer and get my mandatory military duty done . however , i now realize i can put it off to a further date . that left me wondering if you believe there is a project that i can get involved in this summer and be useful . if that were the case , i would be more than happy to postpone my military duty and spend the summer with the research group . i discussed this with dr . ronn , and he is very supportive of this idea . i apologize again for bringing up this issue late , and look forward to hearing from you . best regards , - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 http : / / uts . cc . utexas . edu / ~ cantekin - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -",0 +"Subject: energy : oil drilling : survey finds producers plan to spend more than originally planned in . . . survey finds producers plan to spend more than originally planned in 2000 06 / 19 / 2000 petroleum finance week ( c ) 2000 phillips business information , inc . oil and gas producers plan to increase their worldwide exploration and production expenditures by more than they anticipated at the beginning of the year , lehman brothers inc . found in a mid - year update of its annual e & p survey . "" the 326 companies we surveyed are planning on an 18 . 2 percent increase , versus a 10 . 2 percent rise budgeted in december , "" said james d . crandell , who follows oil services and drilling for the new york investment banker . he emphasized that the gain by the 326 producers in lehman ' s survey reflects increases in budgets for 2000 and not underspending of budgets during 1999 . "" among the companies that were included in our december 1999 and may 2000 surveys , global spending actually came in slightly above what was estimated to have been spent during 1999 in december . it also indicates that nearly $ 6 billion has been added to 2000 worldwide exploration budgets since december , "" crandell said . the survey ' s respondents said that they planned to increase u . s . e & p expenditures by 17 . 6 percent , up from 15 . 9 percent earlier in the year . crandell said that the greater increase was driven almost entirely by independent producers . "" in our survey , 227 independents indicated e & p spending growth in 2000 of 26 . 1 percent versus a 22 . 9 percent increase budgeted for the year in december , "" he indicated . "" some 40 percent of the independents we surveyed have increased their u . s . e & p budgets , while about 23 percent plan on spending less than what they indicated last december . higher natural gas prices and increased cash flow are the main drivers behind this . "" crandell said that anadarko petroleum corp . ( nyse : apc ) , apache corp . ( nyse : apa ) , bhp petroleum , h . s . resources inc . ( nyse : hse ) , mcmoran exploration co . ( nyse : ran ) , mdu resources group inc . ( nyse : mdu ) , mitchell energy and development corp . ( nyse : mnd . a and mnd . b ) , santa fe snyder corp . ( nyse : sfs ) , stone energy corp . ( nyse : sgy ) and titan exploration inc . - now pure resources inc . ( nyse : prs ) - were among the larger independents to make the most significant upward revisions . the ones that significantly reduced planned u . s . e & p outlays for the year included barrett resources corp . ( nyse : brr ) , belco oil and gas corp . ( nyse : bog ) , burlington resources inc . ( nyse : br ) , coastal corp . ( nyse : cgp ) , forcenergy inc . ( nyse : fen ) , houston exploration co . ( nyse : hex ) , kerr - mcgee corp . ( nyse : kmg ) , mariner energy corp . and williams production co . the survey found that major oil companies plan about the same percentage gain in their 2000 u . s . e & p expenditures ( 8 . 8 percent ) at midyear as they did at the beginning of the year ( 8 . 4 percent ) . among the 14 companies in this category , 31 percent made meaningful increases in their 2000 e & p spending estimates during the first six months , including amerada hess corp . ( nyse : ahc ) , conoco inc . ( nyse : coc . a and coc . b ) , occidental petroleum corp . ( nyse : oxy ) and total fina elf s . a . ( nyse : tot ) . another 19 percent - including eni spa ( nyse : e ) , royal dutch / shell ( nyse : rdp and stt ) and texaco inc . ( nyse : tx ) - scaled back their domestic spending estimates , while the remaining 50 percent of the majors in the survey remained the same . ' the increase in canada . . . is nothing short of staggering . . . ' "" the increase in canada indicated by the 85 companies in our survey is nothing short of staggering , "" crandell continued . of the 85 companies that he contacted , 44 . 7 percent budgeted higher expenditures for 2000 than for 1999 . "" compared with december , 41 percent of them have increased their estimated spending in 2000 by more than 10 percent , while 20 percent have reduced it by more than 10 percent . the remaining 39 percent have kept it within 10 percent of what was originally estimated , "" crandell said . talisman energy inc . ( nyse : tlm ) led the group with a huge increase , followed by anderson exploration ltd . ( tse : axl ) , gulf canada resources ltd . ( nyse : gou ) , murphy oil corp . ( nyse : mur ) , pan canadian petroleum ltd . ( tse : pcp ) and shell canada ltd . ( tse : shc ) . like their u . s . counterparts , producers above the border raised their 2000 e & p budgets in response to higher gas prices and increased cash flow , according to the lehman analyst . he said that foreign upstream budgets were an area of surprise : "" the 14 . 9 percent gain indicated by the 99 oil and gas companies that have operations outside the united states and canada was well above the 5 . 7 percent increase for 2000 estimated last december . as in other geographies , there were more companies that increased budgets than decreased them . "" overall , crandell said that 33 percent of the surveyed companies raised their 2000 e & p budgets by more than 10 percent , 43 estimated expenditures in roughly the same range and 24 percent indicated that they would spend less than originally planned . he said that the larger increases were driven by some big companies which materially increased their budgets , including texaco , petroleos brasileiros s . a . , petroleos mexicanos s . a . and repsol ypf s . a . ( nyse : rep ) among the multinationals and amerada hess , apache , premier oil plc . and woodside energy among mid - sized companies . crandell noted that while respondents ' average price assumptions rose during 2000 ' s first six months ( to $ 22 . 04 from $ 19 . 25 per barrel of crude oil and to $ 2 . 58 from $ 2 . 38 per thousand cubic feet of natural gas ) , they still trail current prices and what lehman brothers estimates for the year ( $ 28 per barrel of crude and $ 3 . 30 per mcf of gas ) . "" this suggests a stronger second half than expected , should companies raise budgets further to reflect the higher prices , "" he said . - nick snow in washington - - - - - - - - - - - - - - - - - - - - - - forwarded by john peyton / hou / ect on 06 / 19 / 2000 07 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - djcustomclips @ djinteractive . com on 06 / 19 / 2000 08 : 27 : 26 pm please respond to nobody @ maill . djnr . com to : 1346 @ wctopics . djnr . com cc : subject : energy : oil drilling : survey finds producers plan to spend more than originally planned in . . . survey finds producers plan to spend more than originally planned in 2000 oil and gas producers plan to increase their worldwide exploration and production expenditures by more than they anticipated at the beginning of the year , lehman brothers inc . found in a mid - year update of its annual e & p survey . "" the 326 companies we . . . published by : petroleum finance week date : 06 / 19 / 2000 word count : 894 relevance score on scale of 100 : 80 folder name : energy : oil drilling full - text article available at c = ptry articles are included at no charge for flat - fee corporate customers . ( under standard pricing , charges apply . for details , click the $ icon on the dow jones interactive home page , located at http : / / www . djinteractive . com . ) to review or revise your folder , visit http : / / www . djinteractive . com or contact dow jones customer service by e - mail at custom . news @ bis . dowjones . com or by phone at 800 - 369 - 7466 . ( outside the u . s . and canada , call 609 - 452 - 1511 or contact your local sales representative . ) copyright ( c ) 2000 dow jones & company , inc . all rights reserved",0 +"Subject: re : "" expected tail loss "" for equity portfolio everybody , i attached here the equity portfolio var spreadsheet model ( version x ) . the improvement over the previous version ( 1 x ) is that it calculates an additional measure of risk - expected tail loss . expected tail loss is the expectation of the loss under the condition that losses exceed var . as you know equity var model allows you to calculate var for the percentile specified in the input sheet . now you have to click 2 more buttons on the "" varinput "" sheet : "" calculate gamma and delta "" and "" fast var "" . isaac , please run the model to make sure it works for you . regards , tanya",0 +"Subject: re : visual numerics cnl licensing issues rakesh , to confirm our conversation : please , go ahead and buy a copy . vince rakesh bharati @ enron 03 / 29 / 2001 02 : 06 pm to : vince j kaminski / hou / ect @ ect cc : tanya tamarchenko / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : visual numerics cnl licensing issues vince , tanya and i feel that there is a need for a constrained optimization routine for our var related research . numerical recipes does not contain subroutines where equality and inequality contraints can be easily incorporated . also , the number of arguments that can be handled is also limited . imsl provides a comprehensive library of more than 300 c / c + + statistical and mathematical analysis functions . we think that it would be of great value to our efforts and to the efforts of our research group . presently the cost is aproximately around $ 1500 and mike bothwell ( visual numerics rep ) assures us as the version is not license protected , we all can use it as long as simultaneous usage is within the license . please let me know if you should need further information . thanks , rakesh - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 03 / 29 / 2001 01 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - mike bothwell on 03 / 29 / 2001 12 : 56 : 03 pm to : "" ' rakesh . bharati @ enron . com ' "" cc : subject : visual numerics cnl licensing issues rakesh , i ' m just following up to see how things looked on this . any change in status ? let me know i can furhter help you . best regards , mike bothwell account manager visual numerics inc . phone : 713 - 954 - 6423 fax : 713 - 781 - 9260 cell : 713 - 417 - 9069 mbothwell @ houston . vni . com visual numerics celebrates 30 years as an independent software vendor rakesh , as we discussed , the cnl 4 . 0 pc libraries are not license managed . version 5 will be . the pc version 4 . 0 can be installed on a network drive and called from networked pcs . as expected , we would ask that enron honor the license agreement by allowing only the number of simultaneous uses permitted by the license . version 5 . 0 will be license managed and can be licensed as node locked or floating . with regard to unix licensing , the current version of cnl for unix is license managed . it can be licensed as node locked or floating . if you install the libraries on a unix server as node locked , the number of simultaneous sessions on that server is not limited except by the capabilities of the machine . a floating unix license would be checked out by the individual user to be executed on a local machine . also as mentioned , your investment is protected by allowing you to upgrade in the future by paying only the price difference between your current and desired platforms . this upgrade option only applies to licenses covered under support . if you have any additional questions , please let me know . i look forward to providing you the best math and statistical libraries available today to help you solve your problems and understand your data . best regards , mike bothwell account manager visual numerics inc . phone : 713 - 954 - 6423 fax : 713 - 781 - 9260 cell : 713 - 417 - 9069 mbothwell @ houston . vni . com visual numerics celebrates 30 years as an independent software vendor",0 +"Subject: grant , would you take a look at the following correlation matrix ? does it make sense ? ps : this is an updated correlation matrix with gold and silver correlations . i used bloomberg ' s generic closest month gold and silver contract prices for the correlation analysis .",0 +"Subject: wti trading simulation model - presentation vince , since you are not here today , i just sent out the presentation of the model i prepared for john for his feedback . i would appreciate that you review it before we make the final version . obviously , this simulation model is going to make a big impact on our online trading . and i am happy that we have accomplished this task effciently and elegantly . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 12 / 06 / 2000 01 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 12 / 06 / 2000 01 : 21 pm to : john j lavorato / corp / enron @ enron cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : wti trading simulation model - presentation john , i put together a presentation of the simulation model for wti market maker for you . the p / l results are investigated by assuming different scenarios . the key variable is the number of trade per day , therefore is varied from 200 to 1000 trades . scenarios are generated by different spreads , net open position allowed , and time period . take a look what i have prepared , and let me know things you want to add or delete . if you have any questions , i will be happy to discuss with you . zimin ps : this presentation is only for the open - close trading . i will produce exact the same sequence for the continuous trading ( close - close ) once you approve the content .",0 +"Subject: renshi zhang ' s resume shirley and molly , vince is interested to set up an interview for renshi zhang . any day except thursday next week is good . interviewers : vince , stinson , vasant , tanya , alex , bob , krishna and myself . contact number for mr . zhang is 713 - 544 - 5989 . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 19 / 2001 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 04 / 05 / 2001 09 : 49 am - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 05 / 2001 09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 14 / 2001 10 : 06 am to : zimin lu / hou / ect @ ect cc : subject : resume - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 14 / 2001 10 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - marshall brown on 03 / 09 / 2001 07 : 46 : 22 am to : vince kaminski cc : subject : resume vince , how are you . this candidate would be interested in any positions in your group . regards , marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . if you have received this email in error please notify the system manager . this footnote also confirms that this email message has been swept by mimesweeper for the presence of computer viruses . - zhan _ ren . doc",0 +"Subject: re : meeting today and trip to houston omar , thanks for the presentation and the e - mail . as i tried to emphasize on the phone call , there will be short - term and long - term efforts to utilize opnet . often the short - term needs rules at ebs . we will sort out what they during our discussion in houston . i am confirming the meeting in houston 6 - 8 th . i shall ask shirely crenshaw to arrange for a conference room on the 19 th floor . the meeting will be held all day from april 6 th , 7 th and half day 8 th . the 8 th is a saturday and the meeting will be held to wrap things up if needed . ravi . background info . for enron research people . opnet is a simulation tool that many in the industry use to do capacity planning to ip based applications and services on a network . detail adenda will follow . i wanted to take the opportunity to thank you for the time we had this morning to discuss the performance engineering program at ebs . i think you ' ll find that the value to enron from the overall approach is quite high . i have a much better picture now of some of the short term drivers that need to be addressed as we move forward . as i work with you , i think we ' ll quickly emerge with a clear picture of what needs to be done and when . as soon as you confirm your schedule for april 6 - 8 , i ' ll book my travel to get to houston . i ' ve already put in a call to opnet technologies to have them get a resource out to houston on one of those days for a demonstration and q & a about the opnet toolset . i ' ll compose an agenda for us to use during that meeting in houston and get it out to you next week . if there are any questions , please email me at ozaidi @ lucent . com you can also call me at 503 778 0653 . i am also pageable at 1 800 467 1467 . have a great weekend and i look forward to hearing from you next week about the april 6 - 8 meeting . best wishes . . . .",0 +"Subject: latest revision vince , i have made bold face edits to the attached document . i still have two edits to make but am concerned that you were not reading the most recent version . sorry for any confusion but the editor doesn ' t use the edit function in word so i have ended up making edits on new versions of the paper . i still haven ' t made the change regarding the take - or - pay problem ( i left that paper at home in my briefcase and will make the change tomorrow morning ) . also , i haven ' t added anything regarding the conflict that arose over pay for new hires nor have i received the business week e - mail from you . however , if the paper looks ok to mark palmer we can make these minor edits on the galley pages of the article . thanks john p . s . i am very disappointed about the scheduling conflict you have on feb 23 rd . you will be greatly missed but i certainly understand . john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: enron year end 2000 performance management process enron ' s year - end 2000 performance management process opens on : wednesday , october 25 th . during this process , you will be able to suggest reviewers who can provide feedback on your performance . in addition , you may be requested to provide feedback on fellow employees . to participate in the feedback process , access the performance management system ( pep ) at http : / / pep . corp . enron . com . your userid and password are provided below . the system will be open for feedback from october 25 th - november 17 th , and help desk representatives will be available to answer questions throughout the process . you may contact the help desk at : houston : 1 - 713 - 853 - 4777 , option 4 london : 44 - 207 - 783 - 4040 , option 4 e - mail : perfmgmt @ enron . com during the year - end prc process , employee profiles will be made available at meetings . if you haven ' t already done so , we encourage you to update your personal information and current responsibilities before the meeting process begins on november 20 th . please access ehronline at http : / / ehronline . enron . com ( london users please go to http : / / home . enron . co . uk , click on quick links , and choose hr online ) . your user id & password are : user id : 90012910 password : welcome",0 +"Subject: coming back to london hi guys , it was nice to work with each of you for the last couple of weeks . it was great time and i enjoyed every single day here . i am very much impressed with research team in houston and looking forward to strengthen our co - operation even further . have all great time and not a very hot summer . hope to see all you soon . many thanks , slava",0 +"Subject: lng meeting bjorn : the lng meeting will be held tomorrow the 17 th of may at 11 : 00 pm houston time . the phone number for the conference room is : 713 / 853 - 3135 thanks ! shirley",0 +"Subject: re : lng may 19 decision john , yes . i have additional info about this transaction . vince john sherriff 05 / 16 / 2000 10 : 47 am to : vince j kaminski / hou / ect @ ect cc : subject : re : lng may 19 decision thanks vince - i understand we are on at lpm your time today to review this . john vince j kaminski 16 / 05 / 2000 14 : 48 to : john sherriff / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : lng may 19 decision john , sorry for the confusion . this is a second tanker on which very few details are available . the lng group is working as we speak to provide some information for joe sutton before his departure for paris this ( tuesday ) afternoon . there is no dash on this 2 nd tanker yet . i asked dave gorte on monday to send me one and was not told that he can provide me with the mystic lady dash as the closest substitute . vince john sherriff 05 / 16 / 2000 12 : 20 am to : vince j kaminski / hou / ect @ ect cc : subject : re : lng may 19 decision vince - thanks for the update . what i am not sure of is what if any decision has to be made on may 19 . it seems to me that the mystic lady and elba island deals have already been approved and executed - but it is quite likely i am missing a detail or two . john vince j kaminski 15 / 05 / 2000 17 : 14 to : john sherriff / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , david gorte / hou / ect @ ect , rick buy / hou / ect @ ect , ted murphy / hou / ect @ ect subject : re : lng may 19 decision john , this is the update on what i have done for the lng transactions . 1 . i was not involved in the lng ship project . i shall read the dash and give you my comments . without looking at the details , i think that the decision to charter a tanker removes one significant risk we have at the elba island project ( please , see point 2 ) . 2 . elba island . i am working with doug rotenberbg , brad hitch , scott earnest ( sally beck ' s organization ) and rac to set up the book for the elba island transaction . the next step will be to expand the book to capture all the enron ' s lng - related positions in one place and to look for natural risk offsets and possible hedges . a working group is meeting to close a few remaining gaps tomorrow ( tuesday ) at 8 : 30 . a few comments on the book design and my view of the project : a . the current thinking is that lng will be sourced for the elba island facility by buying marginal cargos on the fob basis . marginal cargos will represent supply from excess capacity that has not been committed under long - term contracts or became available due to some short - term frictions . the fob cargos are typically selling at a significant discount to the long - term contract prices . the economics of the deal , as represented by the book we are setting up , will reflect the assumption that not only we can locate marginal cargos but that we shall be able to do it on a regular basis , arranging shipping and coordinating the facility schedule and natural gas transactions in the us . in other words , we have a significant logistical and operational risk in this transaction . b . the transaction will cover the period of 17 years ( with an extension option of 5 years ) . even if we can lock - in the lng volumes over this time period , we have no ability to lock - in the other side of the spread ( us gas prices ) for such a long tenor . this is essentially a tolling transaction with exposure to the lng - nat gas spread and i would not recommend locking - in only one leg of the spread . one solution would be to cover , let ' s say , 50 % of he lng volumes for the first 5 years and lock - in the nat gas side on the us market side . c . the book we are setting up will be based on many managerial assumptions regarding sources of lng , shipping rates , schedules , etc . i would set up a big prudence reserve in case we mark it to market . d . my group will work on valuation of some options we have in the elba island deal ( that are good for enron ) and on the hedging strategy for the lng positions . long - term lng contracts are typically based on the japanese crude cocktail that correlates very well with brent . vince john sherriff 05 / 14 / 2000 01 : 40 am to : vince j kaminski / hou / ect @ ect cc : lauren urquhart / lon / ect @ ect subject : lng may 19 decision vince i haven ' t spoken to you for awhile but hope the world is treating you well . anyway with greg moving to his new role i have ( i hope only temporarily ) staff trading oversight for the eastern hemishere plus lng . i understand that your group is taking a first cut at developing curves for lng and lng ship values . i also understand that another lng ship decision is on the dockets for may 19 ( not very far away ) . anway i understand this is a big decision but i still have gotten very little info yet . can you please let me know where you stand now ? i will ask my assistant lauren to set up a time that i can speak with you in the next couple of days and if you have anything for me to review before then she can get it faxed to me as well . look forward to connecting with you vince . john",0 +"Subject: re : energy derivatives conference - may 29 , toronto hi amy : that is fine , vince was going to come on the 28 th anyway , but he will probably need to come earlier - please let me know what time you have scheduled the dinner so i can make his airline reservations . thanks ! shirley amy aldous on 04 / 06 / 2000 09 : 10 : 01 am to : "" shirley crenshaw "" cc : subject : re : energy derivatives conference - may 29 , toronto hi shirley , i just realized that i goofed on the dinner - it will be held on sunday , may 28 th instead of the 29 th . sorry about that ! i hope your day is going well so far . amy at 07 : 59 am 4 / 4 / 00 - 0500 , you wrote : > > > good morning amy : > > vince kaminski will need the following : > > an lcd projector to hook up to a lap tap for his presentation > he will have dinner with the conference organizers and speakers on the 29 th . > he will need 2 nights ( the 28 th and the 29 th ) hotel reservations . > > he will send you an abstract shortly . > > thanks and have a great day ! > > shirley crenshaw > 713 - 853 - 5290 > > > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * amy aldous , conference co - ordinator centre for advanced studies in finance university of waterloo waterloo , on n 2 l 3 gl tel : ( 519 ) 888 - 4567 ext . 5728 fax : ( 519 ) 888 - 7562 email : aaldous @ uwaterloo . ca * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *",0 +"Subject: petrochem desk i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group . from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research . nelson",0 +"Subject: re : arthur andersen model validation request yes , i sent a reply to gillian . - - stinson",0 +"Subject: thanks a lot . dr . kaminski , i appreciate you for giving me a good opportunity to have the interview . the visit to enron was very impressive . thanks for arranging interviews with people at research department and extra interview at the enron net work . it was good to have chance to meet such nice people , and have a talk with them . it was a good experience for me and i hope we have chance to see each other . jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on tue , 24 oct 2000 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > we shall invite you to an interview in houston . > > vince > > > > > > jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm > > to : vkamins @ enron . com > cc : > subject : resume , > > > dear mr . kaminski , > > hi , > i am a ph . d student at ieor department at u . c . berkeley . > thanks for your presentation today . > it gave me knowledge and interest in electricity markets , > and your company . > as you mentioned in the presentation , > i send a resume to give me opportunity to learn more > about your company . > i hope i can join the super saturday event . > > jinbaek > > > ( see attached file : resume . doc ) > > >",0 +"Subject: optical network engineering & enron research offsite meeting ravi , the proposed dates work for me . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 09 / 2000 05 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 03 / 09 / 2000 02 : 22 pm to : vince j kaminski / hou / ect @ ect cc : subject : optical network engineering & enron research offsite meeting vince , i will not be able to attend on this weekend ( april 15 ) , but i think the main point is for john ' s guys to meet the rest of our group . most of them know me already . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 09 / 2000 02 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - ravi thuraisingham @ enron communications on 03 / 06 / 2000 04 : 29 : 34 pm to : john _ griebling @ palm . net , dorn _ hetzel @ palm . net , vince kaminski cc : stinson gibner / hou / ect @ ect , kenny burroughs / enron communications @ enron communications , jim irvine / enron communications @ enron communications subject : optical network engineering & enron research offsite meeting hi john , as per our discussion and e - mails , i am suggesting the following dates for the subject offsite : april 14 & 15 th ( friday & sat ) . place and agenda to follow once this date is nailed up . the heads of each group will decide who will attend . we would also invite kevin hannon , scott yeager , tom gros , ted seitz and jean mrha once the dates and agenda are agreed upon by the technical folks . as before , the idea is to introduce the two of the most technical groups within enron and to exchange ideas and issues . the enron research team will provide trading and modeling presentations and the optical network engineering team will present networking and components related topics . take away from the two days will be to provide john griebling ' s group with better understanding about how the trading markets have developed in general and energy markets in particular via enron ( i . e . , how the sausage was made ! ) . likewise , john ' s group will provide us with better understanding of optical networking from a technical perspective . particularily , how ebs is planning to develop the puplic switched optical network ( pson ) that john has ' branded ' our pooling point based network ! please reply asap if these two days ( april 14 & 15 ) will work . additionally , john , is the original suggestion to hold it in scott yeager ' s cabin somewhere up in colorado mts . still holds ? if yes , i should probably let scott know ! if not , i ' ll try to find other places - - any suggestions , anyone ? regards , ravi .",0 +"Subject: fwd : credit applicatiions in grms return - path : received : from rly - yho 3 . mx . aol . com ( rly - yho 3 . mail . aol . com [ 172 . 18 . 147 . 35 ] ) by air - yho 3 . mail . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 17 : 34 : 19 - 0500 received : from mailman . enron . com ( mailman . enron . com [ 192 . 152 . 140 . 66 ] ) by rly - yho 3 . mx . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 17 : 34 : 06 - 0500 received : from dservl . ect . enron . com ( dservl . ect . enron . com [ 172 . 16 . 1 . 37 ] ) by mailman . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / corp - 1 . 03 ) with esmtp id waal 2938 for ; fri , 28 jan 2000 22 : 33 : 40 gmt received : from notes . ect . enron . com ( notes . ect . enron . com [ 172 . 16 . 4 . 33 ] ) by dservl . ect . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with smtp id qaa 21960 for ; fri , 28 jan 2000 16 : 34 : 05 - 0600 ( cst ) received : by notes . ect . enron . com ( lotus smtp mta v 4 . 6 . 5 ( 863 . 2 5 - 20 - 1999 ) ) id 86256874 . 007 bf 6 c 3 ; fri , 28 jan 2000 16 : 34 : 00 - 0600 x - lotus - fromdomain : ect from : "" vince j kaminski "" to : vkaminski @ aol . com message - id : date : fri , 28 jan 2000 16 : 33 : 56 - 0600 subject : credit applicatiions in grms mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii content - disposition : inline content - transfer - encoding : 7 bit - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 28 / 2000 04 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - bjorn hagelmann 01 / 28 / 2000 09 : 25 am to : william s bradford / hou / ect @ ect , jonathan le / hou / ect @ ect , gary hickerson / hou / ect @ ect , philippe a bibi / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : rick buy / hou / ect @ ect , mike mcconnell / hou / ect @ ect subject : credit applicatiions in grms this note is from ted murphy ( not bjorn hagelman ) my understanding is that yet another meeting has been scheduled with the intent of diverting resources from the grms project to some other project . while i am not privy to the urgency of this other project , i do know that we have a very large , multi - phase project going in grms . grms stands for the global risk monitoring system . it is not intended to be a commercial trading product not is its primary purpose for commercial decision - making . conceptually , it is a risk warehouse for the primary purpose of rac due to the deficiency of current front office trading systems and their inability to provide timely , aggregated information useful to rac . rac has spent over a year developing a business plan scope and detailed task list to accomplish its objectives . as a firm we are woefully behind our press clippings in our ability to aggregate and understand our risk profile . my most recent sojorn in europe is a classic example of the current systems inabilty to aggregate and meet the needs of rac having abetted poor decision making and causing cash losses in well in excess of the grms budget or that of the market risk group in rac . the grms project is a requirement that bill bradford and i have in order to do our jobs . we have delegated authority to debbie brackett and rudi zipter to make decisions regarding priorities and as such meet regularly with jonathon and his team as well as rick buy to provide updates . while progress is never as fast as we would like it , in every instance in which we have only to rely on rac , jonathon ' s team and research to make a deadline it haas been hit . the primary reason for any delays whatsoever has been the diversion of resources off the project or the reliance for cooperation from some other source - most recently the it staff in london was a tremendous impediment to deadlines . please excuse the frustration that is apparently coming through in this note , but i feel like the boy with his finger in the dyke and no one is listening . also , i have had several employees come to resignation over their frustration on the lack of management support for this project , usually manifesting itself in the lack of resources or the diversion of resources devoted to it . i think we have proven collectively that we can organize a modular multiphase project and provide tangible deliverables when not distracted . please let us do our jobs . i do not denigrate the efforts of others , but i believe that they must either submit their detailed requirements to us for our consideration of their worthiness to put in our que or develop their own project with their own resources . thank you for your consideration of this opinion . as it relates to things that will effect the ability of market risk to do its job , please consult me as i would you . ted",0 +"Subject: re : iif / oxan vince , per the dialogue below , there seems to be some agreement between our two groups that a subscription to the "" institute for international finance "" is worth receiving , but to do so in one central subscription and split the cost . is a $ 16 k share ok for your group ? we ' ll do $ 32 k on our end , and then try and sell some of our share to my european counterpart once he gets better established with a bigger budget . - - scott - - - - - - - - - - - - - - - - - - - - - - forwarded by scott tholan / corp / enron on 02 / 26 / 2001 06 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - robert johnston @ ect 02 / 26 / 2001 07 : 51 am to : scott tholan / corp / enron @ enron cc : subject : re : iif / oxan scott - could you give vince a call or an email to recommend that he kick in 16 k for the institute for international finance ? we would pay 32 k ( maybe get jim roth to pick up some down the road ) . rj - - - - - - - - - - - - - - - - - - - - - - forwarded by robert johnston / hou / ect on 02 / 26 / 2001 07 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - gwyn koepke @ enron 02 / 23 / 2001 06 : 18 pm to : robert johnston / hou / ect @ ect cc : subject : re : iif / oxan i haven ' t heard back from vince yet on the price , but we definitely need to continue our access to iif . can you count us in for a slice of the cost and advise me how many others depts you can recruit to help pay the annual fees . once you have a final count , it may reduce our costs in research . thanks , gek robert johnston @ ect 02 / 16 / 2001 04 : 31 pm to : gwyn koepke / na / enron @ enron cc : maureen raymond / hou / ect @ ect subject : re : iif / oxan if you need access to consensus data occasionally let me know and i can pull it for you . let me know when you get an answer on iif . i will also be looking for others to buy in . rj gwyn koepke @ enron 02 / 13 / 2001 01 : 55 pm to : robert johnston / hou / ect @ ect cc : maureen raymond / hou / ect @ ect , scott tholan / corp / enron @ enron subject : re : iif / oxan robert , thanks for itemizing the costs . we have decided to cancel the oxford analytica , as we receive a consensus forecast for currency and inflation from another source . regarding iif , it is an important source for us . i will discuss the costs within the research group and advise you of how we will proceed . gwyn robert johnston @ ect 02 / 13 / 2001 09 : 46 am to : maureen raymond / hou / ect @ ect , gwyn koepke / na / enron @ enron cc : scott tholan / corp / enron @ enron subject : iif / oxan hi maureen and gwyn - on the oxford analytica front , i ' m glad you have found the service useful . our contract with them has expired and we are currently negotiating for more users to have access . our current contract is for $ 50 k or $ 10 k per user per year . we can charge $ 10 k back to you . on the iif front , the invoice for $ 47 k is due at the end of the month . here i would propose that we pay two thirds ( to cover our costs and the costs of our competitive analysis colleagues in london ) , leaving $ 15 k for you to cover . since we took on these services last year , we have expanded our range of sources and projects and are consequently trying to do more with less . thus i need to allocate some of our costs from oxan and iif to other projects . let me know what you think about this proposal . maureen , congratulations on your secondment to enron metals ( gwyn mentioned it to me ) . fyi , our colleague jim roth is providing competitive analysis support to joe gold and john sherriff on that project from london . rj",0 +"Subject: promotion vince : just a short note to congratulate you on your well - deserved promotion . jordan",0 +"Subject: re : f / u to dr . kaminski @ enron from iris mack hi again , thank you for your email . sorry for the phone tag and email tag . i will try to call you again next week . in the mean time , i thought i would send you a couple of documents to give you an idea of some of the work that i have done that may be of interest to enron . 1 . the first word document is my london busines school executive mba thesis relating to weather derivatives . 2 . the second word document describes a hybrid derivatives structure i i workded on at bnp paribas . it has applications to the enerygy industry . because these documents are very large i will forward them in two separate emails . your comments on them would be appreciated . happy thanksgiving , iris > from : vince . j . kaminski @ enron . com > to : irismmack @ hotmail . com > cc : vkaminski @ aol . com > subject : contact # > date : wed , 22 nov 2000 08 : 10 : 12 - 0600 > > iris , > > yu can reach me on my cell phone during the coming holidays . > 713 410 5396 > > vince > _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com - lbs thesis - weather derivatives . doc",0 +"Subject: re : new copier information for 55 , 60 & 65 cpm digital machines iain : we went and looked at the toshiba copier on the 32 nd floor and while it does not appear to be extremely fast , i believe it will work for the 19 th floor . i spoke with vince kaminski and he agreed with our getting this copier . we noticed this copier has a button that says "" network connection "" and were wondering it this copier could be hooked up to the network and we could run copies from our computer ? please let us know . thanks for all your help and have a wonderful christmas and new year ! shirley co # 0011 rc # 100038 copier information including pictures & weblinks from : iain russell on 12 / 17 / 99 10 : 47 am to : shirley crenshaw / hou / ect @ ect cc : subject : new copier information for 55 , 60 & 65 cpm digital machines shirley , following up on the telephone conversation , please see the attached spreadsheet for pricing information plus important information about "" true world "" copy speeds . pricing was centered on the 42 . 315 k per month volume band so that you can get a good feel for copier expenditure based on average month volumes . i have left the spreadsheet "" unprotected "" so that you can play with the volume figures and see how this changes the price overall + how the "" cost per image "" is affected by volume changes . ? pricing spreadsheet : under "" notes "" towards under the pictures . the "" true world "" copy speed information has been supplied by buyers lab incorporated , which is an independent testing house that rates office equipment , including copiers and publishes their findings on a quarterly basis . unfortunately they have not released their findings on the canon ir 550 as testing is not yet complete . ? copier speeds : @ the end of the notes - mail { these include 1 - 1 , 1 - 2 and duplexing + detail on completion of "" sets "" } as you will see , duplexing speeds are widely different across the various manufacturers equipment & the "" true world "" copy speeds are a soft $ expense which impacts the true cost of running a copier . listed below are the url ' s for the different 55 , 60 & 65 cpm b / w copiers . a ) overview b ) specifications from lanier ricoh equipment 55 copies per minute a ) & b ) weblink for machine specifications - - > click here - - - > 65 copies per minute a ) & b ) weblink for machine specifications - - > click here - - - > from danka canon equipment { ir 550 } 55 copies per minute looks like : - - - > weblink for machine specifications - - > click below : a ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 550 / ir 550 fea . html b ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 550 / ir 550 spec . html canon equipment { ir 600 } > > currently on 45 day backorder weblink for machine specifications - - > click below : a ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 600 / ir 600 fea . html b ) http : / / www . usa . canon . com / corpoffice / netofficesys / ir 600 / ir 600 spec . html toshiba equipment 55 copies per minute weblink for machine specifications - - > click below : a ) http : / / www . toshiba . com / taiseid / copiers / 5570 / features . htm b ) http : / / www . toshiba . com / taiseid / copiers / 5570 / spec . htm 65 copies per minute weblink for machine specifications - - > click here - - > a ) http : / / www . toshiba . com / taiseid / copiers / 6570 / features . htm b ) http : / / www . toshiba . com / taiseid / copiers / 6570 / spec . htm notes here is the pricing spreadsheet for your records : - - > the highlighted rows on the spreadsheet reflect you current average monthly volume . fyi - - > target cpi or cost per image is in the region $ 0 . 017 up to and including $ 0 . 023 . copier model monthly volume capacities model manufacturer max rec / level realistic level { up to } toshiba 5570 340 k 115 k toshiba 6570 400 k 135 k lanier 5255 { per rep . } 200 k 100 k lanier 5265 { per rep . } 200 k 100 k canon ir 550 200 k 100 k canon ir 600 250 k 100 k fyi : we currently have a toshiba 6570 @ eb 32 kl that is averaging 69 , 332 images per month with the top month producing 86 , 673 images and a toshiba 5570 @ eb 3080 area that is averaging 39 , 309 per month . both of these machines are in the enron north america trading environment . the copiers quoted are all "" digital "" . digital : scan once print many = 99 copies of one sheet ? 1 scan ! analog : scan for every image made = 99 copies of 1 sheet ? 99 scans = possible noise issue . copier speeds = total print time this comparison gives the speed @ which the document set is printed { no staple , no 3 - hole punch } > > > > > 60 & 65 copy per minute machines > > > > 55 copy per minute machines < < < < < please call me with any questions . thanks , iain russell @ 713 - 853 - 6861 contracts supervisor administration enron property & services corp . privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message , and notify us immediately . if you or your employer does not consent to internet email messages of this kind , please advise us immediately . opinions , conclusions and other information expressed in this message are not given or endorsed by my department or employer unless otherwise indicated by an authorized representative independent of this message . ",0 +"Subject: management announcement we are pleased to announce that cliff baxter has been named vice chairman of enron corp . cliff joined enron in 1991 and has served in a variety of leadership positions in enron corp . as well as enron  , s wholesale business , including sr . vice president of corporate development for enron corp . , chairman and ceo of enron north america , and chief strategy officer for enron corp . in his new role , cliff will focus on the strategic repositioning of the company as we continue to increase our return on invested capital . initially , much of that activity will center on the disposition of certain assets . cliff  , s leadership and experience at both the corporate and operating company levels will enable him to lead the effort on this company - wide priority . please join us in congratulating and supporting cliff in his new role .",0 +"Subject: update on project x gentlemen , john norden will be in sydney on monday morning to evaluate the it process . he will coordinate with stinson . spoke to vince k today and asked if he would send stinson gibner to sidney to be available on monday to review the x system . paul , make sure our x friends are available and the confidentially agreement is signed . further , i spoke to phillip b . about a technical going too . g ' day mates , gary",0 +"Subject: a classic a classic i forgot to attach the resume ! ? ? pierre - philippe ste - marie http : / / pstemarie . homestead . com - ppl . doc",0 +"Subject: the national forum on corporate finance hello mr . fastow , sheridan titman from ut - austin and i are both delighted you will be able to participate in the conference we are organizing here at rice . attached is a revised overview of the organization - the second page contains an up - to - date list of the firms involved . also , i ' m attaching a draft of the actual program . after each presentation , i have a panel of three or four people who will can respond to some of the points or issues raised in each discussion . these remarks will be very informal and ad hoc and thus should require no preparation on your part . reaction to this format has been good and i think it will be a great way to stimulate discussion / debate . i have you penciled in to serve on one such panel on saturday morning , may 5 . the topic deals with handing the dilution arising from executive stock options and involves the top academic expert on executive stock options , david yermack from nyu . let me know if you have any concerns about this or if a conflict arises . also , i will be e - mailing some registration materials to you in the next week . i look forward to seeing you soon . dave ikenberry . at 11 : 20 am 2 / 26 / 2001 - 0600 , vince . j . kaminski @ enron . com wrote : > andy , > > thanks . i shall forward your message to > prof . ikenberry . > > vince > > > > > > from : andrew s fastow / enron @ enronxgate on 02 / 22 / 2001 01 : 45 pm > > to : vince j kaminski / hou / ect @ ect > cc : > subject : re : the national forum on corporate finance > > vince : > > i would be interested in participating . thanks . > > andy > > - - - - - original message - - - - - > from : kaminski , vince > sent : monday , february 05 , 2001 10 : 23 am > to : andrew s fastow / hou / ect @ enron > cc : kaminski , vince > subject : the national forum on corporate finance > > andy , > > i am sending you a draft oof a proposal regarding national forum for top > finance practitioners and > academics . the idea came from a professor at rice university who > has already received a commitment from a number > of most distinguished cfos . > > please , read the outline and see if you would be interested in joining > this forum . > i shall be glad to help to arrange a meeting with prof . ikenberry . > > vince > > > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on > 02 / 05 / 2001 10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - > > ( embedded image moved to file : pic 26299 . pcx ) > david ikenberry on 02 / 02 / 2001 06 : 10 : 02 pm > > to : "" vkamins @ ennron . com "" > cc : > subject : > > > it was great talking with you . > > dave > - brochure . doc > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > prof . david ikenberry > jones graduate school of management > rice university > 713 - 348 - 5385 > > > > > - brochure . doc - may 4 - 5 program _ nfcf . doc * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: resume greg mikkelson vince , i will contact you shortly to confirm that greg is able to make it in tomorrow . thanks . have a good day chris williams ena staffing x 39866 - - - - - - - - - - - - - - - - - - - - - - forwarded by chris williams / hou / ect on 07 / 10 / 2000 10 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : chris williams 07 / 10 / 2000 09 : 52 am to : kevin mcgowan / corp / enron @ enron cc : subject : resume greg mikkelson - - - - - - - - - - - - - - - - - - - - - - forwarded by chris williams / hou / ect on 07 / 10 / 2000 09 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : chris williams 06 / 26 / 2000 09 : 00 am to : kevin mcgowan / corp / enron @ enron cc : subject : resume greg mikkelson kevin , this is an internal referral from steve douglas . greg does have a good research background and a pretty impressive education , too . any interest in speaking with him regarding a research type position within your group ? chris x 39866 - - - - - - - - - - - - - - - - - - - - - - forwarded by chris williams / hou / ect on 06 / 26 / 2000 08 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : ted c bland 06 / 21 / 2000 06 : 51 am to : dave hill / corp / enron @ enron , chris williams / hou / ect @ ect , sheila walton / hou / ect @ ect , larry burton / hou / ees @ ees , daniel cc : subject : resume ( ms word ) please look over the attached resume . steve douglas referred mr . mikkelson to us . sheila , he may have a fit in kaminski ' s group . dave , ? . chris , maybe coal ' s emmissions group ? . dan , do you see a fit ? larry , an help ? thanks . ted - - - - - - - - - - - - - - - - - - - - - - forwarded by ted c bland / hou / ect on 06 / 21 / 2000 06 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : stephen h douglas 06 / 20 / 2000 05 : 39 pm to : ted c bland / hou / ect @ ect cc : subject : resume ( ms word ) as discussed . - - - - - - - - - - - - - - - - - - - - - - forwarded by stephen h douglas / hou / ect on 06 / 20 / 2000 06 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - gregory matthew mikkelson on 06 / 20 / 2000 12 : 35 : 40 pm to : sdougla @ enron . com cc : subject : resume ( ms word ) howdy steve . - r , sum ,",0 +"Subject: re : houston visit with vince kaminski good afternoon shirley , it is great that vince is available on 4 / 19 . w . r . t . the attached from vince , let ' s go for the afternoon slot on 4 / 19 . i look forward to seeing you both @ lpm on 4 / 19 . have a great w / e . many thanks , soussan ( 914 ) 253 4187 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , march 31 , 2000 12 : 53 pm to : faizs @ texaco . com cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com subject : re : houston visit soussan , my assistant , shirley crenshaw , will call you regarding the time of the meeting . right now the afternoon is open . i look forward to meeting you on the 19 th . vince - - - - - original message - - - - - from : shirley crenshaw [ mailto : shirley . crenshaw @ enron . com ] sent : friday , march 31 , 2000 1 : 00 pm to : faizs @ texaco . com subject : houston visit with vince kaminski good afternoon : vince kaminski is available on wednesday , april 19 th from 8 : 00 - 11 : 00 am and 1 : 00 - 4 : 00 pm . please let me know what time is more convenient for you . shirley crenshaw administrative coordinator 713 - 853 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 31 / 2000 11 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" faiz , soussan "" on 03 / 30 / 2000 02 : 31 : 18 pm to : "" ' vkamins @ enron . com ' "" cc : subject : houston visit dear vince , greetings from ny & hope all is well . as you may recall from the rog real options conference in ny , i ' d indicated the opportunity to visit with you next time i ' m in houston . i ' ll be there during 4 / 18 - 4 / 21 & wonder if we can pls meet on wed . 4 / 19 in your offices . would appreciate it if you can pls let me know whether you ' re available then ( i ' m flexible on the schedule particulars ) . if not , pls let me know whether 4 / 18 ( afternoon ) , 4 / 20 ( afternoon ) , or 4 / 21 ( morning ) will work for you . i really look forward to the opportunity & would appreciate to learn more about how you ' ve instigated the real options thinking in enron and especially its integration within the organizational & incentive matters . many thanks , soussan faiz mgr . of global valuation services texaco inc . ( 914 ) 253 - 4187",0 +"Subject: volatility curves - linked from reuters hi tanya , attached are the live reuters - linked volatility curves . please don ' t re - establish links , as i don ' t think that your telerate connection works in the same way as ours in london . i will get back to you on cleaning up the historical forward curve database as i complete each metal . we can talk at 5 pm as we agreed . regards , anjam p . s . i think the fast dial is : 830 5383 or 830 35383",0 +"Subject: request submitted : access request for anita . dupont @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000012738 approver : stinson . gibner @ enron . com request create date : 1 / 8 / 01 4 : 31 : 26 pm requested for : anita . dupont @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: re : li sun jeff , no problem . we shall invite her for an interview . a / a programs has real problems with logistics . vince from : jeffrey a shankman 08 / 22 / 2000 05 : 11 am to : vince j kaminski / hou / ect @ ect cc : subject : li sun hi vince , i ' m over in london so i ' m sorry for not calling this morning . i met li last year and at wharton . i ' m sorry the a / a program did not contact you earlier as they were supposed to . li is a great modeller and would love to work in your group . thanks for taking care of her . i ' ll be in touch later . jeff",0 +"Subject: presentation for cal berkeley hello vince and john , i wanted to forward to you both the current presentations for campus . we can tweak these however we feel appropriate to match cal berkeley on monday . i believe that we can probably expect about 30 - 50 students ( based on interest shown at the career fair ) . these tend to be fairly informal . i was thinking that we could present in this order : vince gives the enron overview presentation ( 30 minutes ) john gives the global technology specific presentation ( 20 minutes ) ashley goes over recruiting information at the end ( 10 minutes ) please take a look at each presentation and speaker notes to ensure that you feel comfortable with the layout and content . i am meeting with john today at 1 : 30 - vince if you would like to get together and discuss as well that would be great . if you have any questions , please don ' t hesitate to contact me . 3 - 3589 thanks , ashley vince , here is a copy of the current enron overview presentation . there are also speaker notes that go into great detail . john , here is a copy of the current technology presentation for carnegie mellon . the only changes will be to the recruiting dates at the end . there are also speaker notes that go into greater detail . - - - >",0 +"Subject: my resume vince : attached please find my resume . thanks , ding 6 - 7072",0 +"Subject: benchmarking questionnaires vince , attached are two sets of benchmarking questionnaires for your kind perusal . regards , khairuddin ( see attached file : q _ bench _ rms . doc ) ( see attached file : feb 5 - 17 , 2001 . doc ) disclaimer : this e - mail and any files transmitted with it ( "" message "" ) is intended only for the use of the recipient ( s ) named above and may contain confidential information . you are hereby notified that the taking of any action in reliance upon , or any review , retransmission , dissemination , distribution , printing or copying of this message or any part thereof by anyone other than the intended recipient ( s ) is strictly prohibited . if you have received this message in error , you should delete this message immediately and advise the sender by return e - mail . opinions , conclusions and other information in this message that do not relate to the official business of petronas or its group of companies shall be understood as neither given nor endorsed by petronas or any of the companies within the group . ( embedded image moved to file : pic 24962 . pcx ) - q _ bench _ rms . doc - feb 5 - 17 , 2001 . doc - pic 24962 . pcx",0 +"Subject: platts energy trader free trial please find today ' s complimentary issue of platts energy trader attached above . if you have any questions or would like to subscribe now , call 877 - 286 - 8897 or 212 - 904 - 2004 ; e - mail , info @ platts . com . meanwhile , we hope you enjoy today ' s issue of platts energy trader . if you need to download acrobat reader to read this file , go to www . adobe . com . to stop the free trial , hit reply and type "" stop trial . "" - eto 32301 . pdf",0 +"Subject: follow - up meeting on wharton good morning everyone : vince would like to schedule a follow - up meeting on wharton as soon as we can agree on a time . how does monday the 18 th look for you ? vince is free from 9 : 30 am - 11 : 30 am and from 1 : 00 pm - 4 : 00 pm . please let me know if you are available during any of these times . thanks ! shirley crenshaw 3 - 5290",0 +"Subject: trip to houston here is some information on one of the students invited to enron next week by tom gros . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 10 / 2000 05 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" juan - carlos o . ferrer "" on 02 / 10 / 2000 04 : 17 : 17 pm to : stinson . gibner @ enron . com cc : subject : trip to houston hi stinson , i am juan - carlos ferrer , also ph . d . student working with gabriel bitran and going to houston with amit and paulo on the 16 th . paulo told me that you are interested in some information of us before going to houston . well , i am form chile , married , and father of two girls ( 3 and 2 ) . i graduated from the engineering school at the catholic university of chile in 1995 having followed the track in computer science during the last 3 years of school . then , late in 1995 , i was hired by the industrial engineering department as a full - time assistant professor of management science , where i was teaching and doing research until june 1997 . in august 1997 i came to boston to join the operations management group in the sloan school of management here at mit . i already finished courses and qualifiers requirements of my program , so now i am trying to come up with an interesting research topic to develop my ph . d . thesis . i have been dealing with some interesting topics during the last months but since enron appears as an opportunity to find a more challenging and appealing problem to me i decided to explore it . my intention in going to visit enron is to have a better understanding of the bandwidth business in order to define a problem to work with . i would really like to do a thesis that involves internet issues and yield management models , in the line of amit ' s work . any other information or question you need , please feel free to contact me . looking forward to meeting you on the 16 th . juan carlos ferrer ? ? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ? ? ? ? ? ? ? ? ? juan - carlos o . ferrer ? ? ? ph . d . student , operations management ? ? ? ? sloan school of management - m . i . t . ? ? ? ? of : ( 617 ) 253 - 3597 fax : ( 617 ) 258 - 7579 ? ? ? ? ? ? http : / / web . mit . edu / jferrer / www / ? ? - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -",0 +"Subject: this summer ' s houston visits richard has agreed to pay for matt ' s visit , so here ' s the schedule so far : kirstee all of july , all of september . ( kirstee ' s personal commitments mean she needs to be in the uk for august . ) ben all of october . ( no crossover with kirstee , ensures var / credit cover in london office . ) steve 2 - 3 weeks in july , first 3 weeks of september . ( no crossover with matt , ensures power cover in london office . ) matt a couple of weeks in august . ( preferably the hottest ones . ) anjam to be arranged at anjam and houston ' s mutual convenience . - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 04 / 28 / 2000 04 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - steven leppard 04 / 28 / 2000 10 : 15 am to : vince j kaminski / hou / ect @ ect , dale surbey / lon / ect @ ect cc : anjam ahmad / lon / ect @ ect , benjamin parsons / lon / ect @ ect , kirstee hewitt / lon / ect @ ect , matthew d williams / lon / ect @ ect , steven leppard / lon / ect @ ect subject : this summer ' s houston visits vince , dale here are our proposals for houston visits from our group : kirstee all of july , all of september . ( kirstee ' s personal commitments mean she needs to be in the uk for august . ) ben all of october . ( no crossover with kirstee , ensures var / credit cover in london office . ) steve 2 - 3 weeks in july , first 3 weeks of september . anjam to be arranged at anjam and houston ' s mutual convenience . matt not a permanent research group member . i ' m asking richard ' s group to pay for his visit , probably in august . steve",0 +"Subject: re : wharton dinner 1 / 18 / 01 jennifer , thanks for your note ! as these trip details get more formalized , i ' ll keep yopu copied . for now , know that there are approximately 18 wharton students participating in 3 research projects - - enron proposed topics - - called the "" tiger program "" . they ' ll be visiting enron , arriving houston thursday the 18 th , dinner at churrasco ' s ( their choice ) on the 18 th , enron meetings on the 19 th . as the details unfold , i ' ll keep you and jeff copied . thanks ! - - christie .",0 +"Subject: re : action learning project information vince , thanks for the information . kathy at 01 : 03 pm 1 / 8 / 01 - 0600 , you wrote : > kathy , > > enron will be represented by myself ( vince kaminski ) and kenneth parkhill . > > vince > > > > > > kathy spradling on 01 / 05 / 2001 05 : 04 : 21 pm > > to : ( recipient list suppressed ) > cc : chamberl @ rice . edu , castro @ rice . edu , spradlin @ rice . edu > subject : action learning project information > > > dear company representative , > > we are pleased to announce that your company ' s proposal has been selected > as a potential project in the jones graduate school of management ' s action > learning project ( alp ) program . as indicated in the alp brochure , company > representatives are invited to attend the alp program introduction and > student networking session on wednesday , january 10 . please rsvp to kathy > spradling , mba program coordinator , at 713 - 348 - 3313 or e - mail her at > spradlin @ rice . edu by monday , january 8 to let her know if you plan to > attend the session . please provide your company name and the names of > representatives attending the session so nametags can be prepared . dress > is business casual . below is the schedule of events : > > 8 : 30 9 : 00 a . m . > ? continental breakfast and setup of your company table > ? farnsworth pavilion ( located in rice student center ) > > 9 : 00 9 : 45 a . m . > ? introduction and program overview with company representatives , alp > administration and faculty liaisons > ? farnsworth pavilion ( located in rice student center ) > > 10 : 00 12 : 00 p . m . > ? student networking session with company representatives and > first - year students > ? grand hall ( located in rice student center ) > > the alp program introduction and student networking session will be held in > the rice student center ( numbers 10 and 11 on the campus map sent with your > acceptance letter ) . please contact kathy spradling if you need an > additional map faxed to you . there is a large amount of construction taking > place on campus . once the visitor ' s lot near the rice memorial center is > full , we recommend you park in the stadium lot in the designated visitor > area and take the shuttle bus to the rice memorial center . make sure to > let the bus driver know your destination . > > > the mba program office has reserved the grand hall for the student > networking session . each company represented will have a table set up with > signage for your company . you may bring additional materials you feel > might be of interest to students such as company brochures , articles and > packets . due to the limited space , we are discouraging the use of display > boards in the networking session . unfortunately , no internet connections > will be available for use during the session . > > again , thank you for your interest in rice . we look forward to working > with you , and hope to see you on wednesday , january 10 . > > carrie miller > pam castro > kathy spradling > > > > kathy m . spradling > mba program coordinator > jesse h . jones graduate school of management > rice university > 6100 main street , ms 531 > houston , texas 77005 - 1892 > phone : ( 713 ) 348 - 3313 > fax : ( 713 ) 348 - 5251 > email : spradlin @ rice . edu > http : / / www . rice . edu / jgs > e - mail : spradlin @ rice . edu > http : / / www . ruf . rice . edu / ~ jgs / kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: re : ken lay ' s speech is there a difference though - - is the 460 part of the 1300 ? alhamd alkhayat enron corp . + 1 ( 713 ) 853 - 0315 this message ( including any attachments ) contains confidential information intended for a specific individual and purpose , and is protected by law . if you are not the intended recipient , you should delete this message and are hereby notified that any disclosure , copying , or distribution of this message , or the taking of any action based on it , is strictly prohibited . maureen raymond @ ect 01 / 02 / 2001 01 : 20 pm to : alhamd alkhayat / na / enron @ enron , steven j kean / na / enron @ enron , margaret carson / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : ken lay ' s speech the $ 1 . 3 trillion tax cut which is frequently quoted by the press is over 10 years , the $ 460 tax cut below is over five years . maureen raymond 01 / 02 / 2001 12 : 44 pm to : alhamd alkhayat / na / enron @ enron , steven j kean / na / enron @ enron , margaret carson / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : ken lay ' s speech i looked into the proposed tax cut by george w . bush . on his website he proposes a $ 460 billion tax cut over five years . the $ 213 billion "" energy tax "" imposed from 1999 to 2001 by higher energy prices , is roughly half of bush ' s proposed tax cut . maureen",0 +"Subject: re : vol rollup john , we can approach this problem this way . basically you are asking how the total variance ( 66 % ) 2 * 143 are distributed among 113 days and the last ? 30 days . assuming volatility for the first period is simgal and that in the ? last 30 ? days is sigma 2 , then ? ? ( 66 % ) 2 * 143 = sigmal 2 * 113 + sigma 22 * 30 futhermore , we can use nov - 00 implied volatility as a proxy to sigmal , then we can calculate sigma 2 which is the volatility for dec - 00 contract in the last 30 days . sigam 2 = sqrt ( ( 66 % ) 2 * 143 - sigmal 2 * 113 ) / 30 . make sense ? zimin john disturnal 07 / 09 / 2000 04 : 10 pm to : zimin lu / hou / ect @ ect cc : subject : vol rollup zimin , i am trying to understand what the near winter ng implied vols will look like as they approach expiration . for example , is it possible to infer what the implied volatility of the deco 0 ng contract will look like with 30 days to expiry given we know current vol ( 66 % ) and term to maturity ( 143 days ) ?",0 +"Subject: the solution presentation , text , & budget vincent : attached are the three documents i used in the presentation : the power point slides , the budget , and the written description . if you have any questions , you can e - mail me or call at 972 - 727 - 0999 , or my cell phone at 214 - 213 - 2205 . thanks for the support , and i look forward to working with you . mak - the text portion of the final solution presentation . zip",0 +"Subject: re : contact vince , david ' s parents are coming to visit the weekend of the 7 th . i will check with david , but i think the weekend of the 29 th is fine . i will get back to you as soon as i can . jana",0 +"Subject: candidate decisions vince : they are already asking for evaluations on the following individuals most of whom were just interviewed yesterday ! however , i do not know who bruce kamich is - i don ' t remember his interview at all . can you give me something to tell toni . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 07 / 28 / 2000 11 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : toni graham @ enron 07 / 28 / 2000 02 : 39 am to : shirley crenshaw / hou / ect @ ect cc : subject : candidate decisions shirley , could you please give me a yes , no , maybe decision on the following candidates interviewed : bruce kamich philip roan jerzy jarosz bruce james oleg bondar thanks toni",0 +"Subject: re : fw : possible visit to enron by professor nalin kulatilaka of boston university iris , please , check with shirley . she keeps my calendar up to date . also , we got a 2 nd desk for you with the credit group on the 23 rd floor . you can divide your time bet the 19 th floor and the 23 rd floor to stay in touch with the business unit . please , check with vasant and he will introduce you to the credit team here in houston ( jeff kinneman , craig chaney ) . also , please plan for a trip to london in 3 - 4 weeks . vince vince from : iris mack / enron @ enronxgate on 04 / 02 / 2001 09 : 57 am to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : re : fw : possible visit to enron by professor nalin kulatilaka of boston university hi , thanks for your prompt response . nalin kulatilaka wants to visit when you are in town . what are good thursdays for you ? thanks , iris - - - - - original message - - - - - from : kaminski , vince sent : monday , april 02 , 2001 8 : 14 am to : mack , iris cc : gibner , stinson ; kaminski , vince subject : re : fw : possible visit to enron by professor nalin kulatilaka of boston university iris , i wrote an endorsement for his book on real options ( it was on the cover under jeff skilling ' s name ) . let ' s invite him to the thursday lunch . vince from : iris mack / enron @ enronxgate on 03 / 29 / 2001 05 : 52 pm to : stinson gibner / hou / ect @ ect , stinson gibner / enron communications cc : vince j kaminski / hou / ect @ ect subject : fw : possible visit to enron by professor nalin kulatilaka of boston university hi stinson , a colleague of mine - professor nalin kulatilaka of boston university - is interested in visiting enron to give a talk on work he is doing in the broadband area . please see the forwarded emails for further information and available dates . can you let me know if we can give him a forum at one of our thursday research lunches or a friday brown bag lunch ? thanks , iris - - - - - original message - - - - - from : nalin kulatilaka @ enron com ] sent : thursday , march 29 , 2001 5 : 40 pm to : mack , iris cc : lin , martin subject : re : possible visit to enron by professor nalin kulatilaka of boston university hi iris i have two different hats to wear in talking to enron . one is as a financial economist . the other as the director of the newly formed "" global mobility innovation initiative ( gmii ) - - this is the research project funded by lucent , involving bu , lbs , and insead , to study various aspects of the mobile internet ( read 3 g ) . on the former i am working with a couple of ph . d . students in understanding ( a ) details of how having physical supply ( inventory ) can be used by a market maker . this is a problem that has been studies in the context of specialists inventory in the stock market but i think really interesting in the way enron does it in some of the newer markets like bandwidth . i think this is a big issue in lighting up all the dark fiber that is in the ground . ( b ) how enron is disciplining the internal decision making process with market . this is in many ways the critical aspect of real options that most finance people miss - - having options is one thing but exercising them and realizing their value is another . all of the incomplete contracting , asymmetric information , and incentive issues are ignored in real options valuation models . but they are real in practice . my impression is enron ' s real success is in putting place an organization that is able to mitigate these problems by imposing a market disciplining . ( c ) how enron manages the various books that involve physicals , financials , credit etc . this is specially important when many of the real assets have options features and therefore , include non - linear risk profiles . the story of gas is pretty well understood but not many of the others markets enron has been moving into over the last few years . on the gmii front , i think that some interesting opportunities arise when you think of the spectrum in a way similar to that of dark fiber . i am working with several people at lucent on this issue . i think it would be wonderful to engage in a conversation with enron and lucent folks in the room . i can do a lunch time talk on any of these issues . perhaps we can discuss some of these over a conference call . clearly , having vince kaminski in the room would be very important to me . as for schedules , the first 3 weeks of april are horrible . april 26 / 27 , may 3 / 4 are good for me . regards nalin at 06 : 56 pm 03 / 22 / 2001 , mack , iris wrote : > hi , > > as we briefly discussed , i spoke with one of my colleagues ( dr . > martin lin ) about your visiting enron to give a talk and to spend some > time with us to discuss you work in telecommunications , real options , > etc . > > martin and i are working on various broadband related problems . > > we thought it might be helpful if you let us know a bit more about > the following : > * when you want to come ( the research group has weekly > catered lunch on thursday and brown bag lunches on every other friday ) . > > * a description of what you want to talk about with respect > to telecoms , broadband , etc . > * who you would like to meet with me - vince kaminski ( our > boss ) , any other of our colleagues in research , broadband , etc . > . . . . . . . . . . . . . . . . . etc . > > > > > look forward to hearing from you . > > regards , > iris",0 +"Subject: jury duty shirley , i have been summoned for jury duty and plan to be out tomorrow , wednesday , may 2 . thanks , stinson",0 +"Subject: restricted list neither ena / rac / egf employees nor family members or others living in their household or financially dependent on the ena / rac / egf employee may purchase or sell securities of any entity ( or derivatives thereof ) listed on the restricted list for your or their personal or related accounts or recommend the purchase or sale of such securities to any person , except with the prior approval of the compliance department in consultation with the ena legal department . in addition to the trading restrictions above , should you at any time possess non - public material information about any public company , you , your family members and anybody that is financially dependent on you , are restricted from trading in that issue , and you may not disclose the non - public material information to anyone that does not have a business need to know . company name stock symbol 3 tec energy corp . tten adrian resources adrrf beau canada exploration ltd bau cn belco oil & gas corporation bog bonus resource services corp bou brigham exploration bexp canfibre group ltd . cfgl carrizo oil & gas inc . crzo costilla energy cose crown energy croe cynet , inc . cyne cypress energy cyz esenjay exploration esnj firstworld communications inc . fwis hanover compressor co . hc ice drilling enterprises inc . idf industrial holdings , inc . ihii inland resources , inc . inln kafus environmental industries , inc . ks nakornthai strip mill public co ltd nsm set paladin resources plc plr ld paradigm geophysical pgeof place resources , inc . plg cn quanta services inc . pwr queen sand resources , inc . qsri quicksilver resources inc . kwk saxon petroleum , inc . sxn cn startech seh cn syntroleum corp . synm tejon ranch corp . trc titan exploration texp transcoastal marine services , inc . tcms the restricted list is solely for the internal use of ena / rac / egf . no one may engage in discussions regarding whether a security is or is not on the restricted list with persons outside ena / rac / egf without specific clearance from the compliance department in consultation with the ena legal department . in addition to the above , you are reminded that pursuant to enron corp . ' s risk management policy ( "" policy "" ) , no ena / rac / egf employee may engage in the trading of any "" position "" ( "" position "" means any commodity , financial instrument , security , equity , financial asset or liability that are authorized for trading in the policy for the benefit of any party other than ena / rac / egf , whether for his / her own account or the account of any third party , where such position relates to ( i ) any commodity , financial instrument , security , equity , financial asset or liability which falls within such employee ' s responsibility at ena / rac / egf or ( ii ) any energy commodity . the prohibitions listed above do not replace or modify the policies set forth in ena ' s policies and procedures regarding confidential information and securities trading , enron corp . ' s risk management policy , or enron corp . ' s conduct of business affairs . should you have any questions regarding the above , please contact me at ext . 31939 .",0 +"Subject: re : dinner with your training colleague 11 / 15 ? ehud , november 15 is a bad day for me . i shall be in san antonio for our annual management conference . practically everybody who counts in enron will be there . still no response from louise . i shall catch her tomorrow in person . vince "" ehud i . ronn "" on 11 / 07 / 2000 09 : 04 : 36 am to : vince . j . kaminski @ enron . com cc : subject : dinner with your training colleague 11 / 15 ? vince , good morning . further to our conversation thereon during your austin visit 10 / 11 , i am writing at this time to inquire whether we might schedule a circa 7 p . m . dinner next wed . 11 / 15 , to include the participation of your enron training arm colleague . we could then discuss ut partcipation in enron training activities , as well as the forthcoming spring 2001 conference . best , ehud ehud i . ronn jack s . josey professor in energy studies department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: more details on karolyi visit vince : we will have cocktails with andrew at mi luna in the village ( on university , south side of the street between kirby and morningside ) at 5 : 30 monday evening . you can join in there or meet up with the dinner crew at the appointed place . we ' ll see you monday . bbo",0 +"Subject: re : telephone interview with the enron corp . research group dear : thank you for giving me an opportunity to have an interview with enron corp . i am looking forward to hearing the result from you . in case you are interested in reading some of my works , you can go to best regards , seksan . - - - - - original message - - - - - from : shirley . crenshaw @ enron . com [ mailto : shirley . crenshaw @ enron . com ] sent : tuesday , june 20 , 2000 4 : 45 pm to : centered @ engin . umich . edu cc : vince j kaminski ; pinnamaneni krishnarao ; osman sezgen subject : re : telephone interview with the enron corp . research group seksan : this friday , the 23 rd , at 2 : 30 pm eastern time ( 1 : 30 pm central ) would work fine . please let me have the telephone number you can be reached at . regards , shirley crenshaw seksan kiatsupaibul on 06 / 20 / 2000 03 : 19 : 37 pm to : shirley crenshaw cc : vince j kaminski , pinnamaneni krishnarao , osman sezgen subject : re : telephone interview with the enron corp . research group dear : thank you for giving an opportunity to have an interview with enron corp . this friday afternoon from lpm to 4 pm eastern time would be good for me . please let me know whether or not the time is also convenient for you . best regards , seksan . on tue , 20 jun 2000 , shirley crenshaw wrote : > > > good afternoon mr . kiatsupaibul : > > the enron corp . research group would like to conduct a telephone interview > with you at your convenience . > > please let me know your availability this friday , the 23 rd and during the week > of june 26 - 30 th and i will shedule the interview . > > the interviewers would be : > > vince kaminski managing director > p . v . krishnarao director > osman sezgen manager > > look forward to hearing from you . > > regards , > > shirley crenshaw > administrative coordinator > enron corp . research > 713 / 853 - 5290 > email : shirley . crenshaw @ enron . com > > > > > >",0 +"Subject: talk to us over the last several years , we ' ve received numerous questions and candid comments from many of you on a wide range of topics during our espeak sessions and through the office of the chairman online mailbox and voicemail . while espeak is an open , informal chat between employees and management , the office of the chairman online mailbox and voicemail box are designed as confidential upward feedback tools for employees who choose anonymity . we are pleased that many of you have openly expressed your thoughts and your identity , which made it possible for us to quickly respond to your questions and concerns . this is the kind of work environment we all must strive for at enron , and we encourage you to continue sending us comments about the things that are important to you . many times , however , we wanted to respond to those of you who contacted us anonymously with your good ideas , observations and questions . we now have a way to do this while maintaining your confidentiality . in the future , when we receive an anonymous question or comment from an employee , both the question and our response will be posted on emeet . this will allow us to answer all the questions that we receive , and it will give other employees an opportunity to provide their insight , if they choose to do so , since emeet is an open discussion board . remember : you can send your questions and comments to us in two ways : - email to office of the chairman , or - office of the chairman voicemail box at 713 - 853 - 7294 , which is a confidential call promoting open and honest communication is consistent with our vision and values and absolutely vital to our continued success as a company . so don ' t be hesitant or afraid to speak your mind . we want to hear from you .",0 +"Subject: bio ' s hi john ! so sorry for the delay in getting these to you this evening - - - "" connectivity "" issues . . . a few monks too few ! ! ( haha ) . here are the most current bio ' s for jeff and ken : . i thoroughly enjoyed our dinner this evening and look forward to seeing you tomorrow ! thanks ! - - christie .",0 +"Subject: re : fw : re : valuation . . . . see you there . . . steve - - - - - original message - - - - - from : kaminski , vince sent : tuesday , january 23 , 2001 5 : 28 pm to : stock , stephen subject : re : fw : re : valuation steve , around 6 : 00 p . m . vince from : stephen stock / enron @ enronxgate on 01 / 23 / 2001 05 : 26 pm to : vince j kaminski / hou / ect @ ect cc : subject : fw : re : valuation vince , i ' m in all this week . . . . . what time are you going for the bus tonight ? regards steve - - - - - original message - - - - - from : stevestock @ pagenetips . com @ enron sent : tuesday , january 23 , 2001 4 : 42 pm to : stock , stephen subject : fwd : re : valuation - - - - - - from : vince kaminski subject : re : valuation steve , please , let me know when you come back . i have detected a tendency to implement different approaches to valuation in the past . to some extent , it reflects the absence of formal rules for sign - off on the valuation techniques which , in turn , reflects , the turf wars and the desire by the originators to control the outcomes . vince stevestock @ pagenetips . com on 01 / 19 / 2001 06 : 53 : 14 pm to : vince . j . kaminski @ enron . com cc : subject : valuation vince , i ' d like an opportunity to talk to you about valuation . i ' m hearing confusing messages about the way that the uk it team and the uk traders get their valuation code aparently signed off by research , while here . . . you provide it for our guys to wrap up . we have now a situation where the uk team are using a home grown valuation piece called dove , where results differ from those of the equivalent usa portcalc . i need to break through the pride barriers and the "" not built here "" syndrome , and try to do the right thing , but i don ' t beleive i can do that without you guidance . i ' m scared that if we diverge too much we will never work globally on these systems . steve - - - - - - - - - - - - - - - - - - - - - - - - tel : 713 - 345 - 8980 cell : 281 - 541 - 1862 page : stevestock @ pagenetips . com steve - - - - - - - - - - - - - - - - - - - - - - - - tel : 713 - 345 - 8980 cell : 281 - 541 - 1862 page : stevestock @ pagenetips . com",0 +"Subject: re : australian energy risk 2000 lucie , yes , i have received the package . vince "" lucie deathridge "" on 05 / 24 / 2000 05 : 31 : 09 pm please respond to "" lucie deathridge "" to : cc : subject : australian energy risk 2000 thank you for agreeing to speak at the australian energy risk 2000 conference in sydney in july . last week i sent a speaker pack to you . i would be grateful if you would confirm receipt of this by return of email . in the event that you have not received it please let me know immediately and send me your full contact details . i am the co - ordinator of this conference and please do not hesitate to contact me if you have any queries . regards lucie deathridge conference co - ordinator risk publications ? tel : ( + 44 ) ( 0207 ) 484 9867",0 +"Subject: re : program attached ; march ny ro conference / participation confirmation vince . thanks very much at 07 : 24 d _ 01 / 04 / 00 - 0600 , you wrote : > > > lenos , > > thank you again for the invitation . i shall be glad > to attend and speak on the topic indicated in the program . > one correction : i am a vp . > > thanks > > vince > > > > > lenos trigeorgis on 01 / 01 / 2000 01 : 17 : 11 pm > > to : gordon . sick @ rogroup . com > cc : gordon . sick @ rogroup . com ( bcc : vince j kaminski / hou / ect ) > subject : program attached ; march ny ro conference / participation confirmation > > > > the current version of the conference program is attached > > please confirm your participation as speaker ( and confirm your presentation > title as listed on the attached conference program ) by next tuesday . the > program is about to be sent to the printers next week > > please cc your reply also to gordon . sick @ rogroup . com > > lenos > > > attachment converted : > > > > lenos trigeorgis > professor of finance > university of cyprus > dept of business > 75 kallipoleos , po box 20537 > cy 1678 nicosia cyprus > > tel : + 357 2 892261 > fax : 339063 > > > lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: issue 4 - http : / / www . financewise . com / risk riskbrief issue 4 from financewise : the only dedicated financial search engine 22 march 2000 dear riskbrief subscribers the fourth edition is here , and this month ' s theme is weather . weather derivatives is increasingly a hot topic on the web at the moment . four sites have been launched in the last three months , including tradeweather . com , weather - risk . com and . com . along with the weather trading site from liffe ( i - wex . com ) , launched in january , and the introduction last september of weather futures on the chicago mercantile exchange ( cme ) , there is something of a rush on . to provide you with an online resource to weather risk , we have an introductory guide , two site reviews , 22 articles and an exclusive book offer . http : / / www . tradeweather . com ( see site reviews ) http : / / www . weather - risk . com ( see site reviews ) http : / / www . . com http : / / www . i - wex . com http : / / www . cme . com / news / weather 921 . html how fast will the weather derivatives market grow ? will there be enough liquidity ? let us know what you think . in the meantime , please enjoy the rest of this month ' s issue , with 14 articles on currency trading , e - trading , and news of conferences , jobs and more . regards rob minto producer , financewise rminto @ risk . co . uk before you forget , why not forward this e - mail to a colleague / friend now , who might find our coverage of risk management on the web a useful resource ? contents : = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = > > weather risk guide > > site reviews > > articles and features : weather risk , e - trading , currency trading > > new # 1 site > > book special offer : insurance and weather risk > > conferences & training > > new jobs please view the newsletter online and get the full story : this month ' s sponsor : = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = credit : the new forum for international credit markets . with its mix of news , features , data and technical articles , credit magazine is a vital source of information for all investors , issuers and market professionals operating in the global credit markets . subscribe before april to claim a 40 % discount http : / / www . creditmag . com weather risk guides : = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = introduction to weather derivatives from the cme . a market history , plus a discussion of pricing and analyzing weather contracts . an overview article from james roemer of the weatherrisk institute . bob dischel ' s site on weather derivatives , with articles , links and seminar details . http : / / www . wxpx . com for further links to weather derivatives online see the html version : site reviews : = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = who is doing what on the web ? a double helping of site reviews this month : - new bond trading site from jp morgan bear stearns , chase manhattan and moneyline - weather derivatives trading & info : enron ' s weather - risk . com & tradeweather . com - foreign - exchange trading from financial market solutions - the french tr , sor site covering sovereign bond issues - algorithmic ' s risk management methodology - ' mark - to - future ' - rent applications and analytical tools from cygnifi , a new web offering from jp morgan , bridge & sybase - revamped inventure . com site - provider of data & analytics - keep up to date on new - issue markets with s & p ' s new site articles & features : = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 14 new articles and features have been added to the financewise risk management special report . the new supplements are : - electronic trading - currency risk continuing our theme of weather , we also have two editions of weather risk . these 22 articles include glossaries and technical articles on data and forecasting , options pricing , emissions trading and weather - linked bonds . # 1 site = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = the new # 1 site on financewise is the picture of risk site from risk metrics , displacing finmath . com ( triple # 1 award winner ) as the most visited site in february . click below to view the latest rankings http : / / www . financewise . com / rankings book special offer : exclusive = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = and completing our weather coverage for this month , there is a 10 % discount available exclusive to riskbrief subscribers on : "" insurance and weather derivatives from exotic options to exotic underlyings "" for further details and information see : there are other special offers available on the risk books site : http : / / www . riskbooks . com conferences & training = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = full details are now online for risk 2000 . risk ' s 6 th annual us derivatives and risk management congress will be held in boston on june 13 & 14 . keynote speakers : myron scholes and jeffrey skilling . jobs = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = this month , the search term "" jobs "" has moved up to 5 th position in the financewise rankings . http : / / www . financewise . com / rankings if you were one of those searching for "" jobs "" , don ' t forget our own job search section . it currently holds 46 treasury and risk management , a record 29 additions since the last brief . visit the job search and select the job category "" finance : treasury and risk mgmt "" . http : / / www . financewise . com / jobs * * * also : = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = please e - mail us if there is anything you would like to see in this newsletter , or any questions that you would like addressed . riskbrief now reaches over 1200 subscribers worldwide . so if you have something interesting to say , or an opinion to share with all your fellow subscribers send your comments to : rminto @ risk . co . uk p . s . also suggest sites for us to review / index if this has been forwarded to you , please subscribe to receive your own copy at : are you registered with financewise ? if not , please click : http : / / www . financewise . com you will then have the full functionality of the site . if you have any problems with this newsletter , please contact me : rminto @ risk . co . uk to unsubscribe , write to financewise - unsubscribe @ listbot . com to unsubscribe , write to financewise - unsubscribe @ listbot . com",0 +"Subject: announcing the third annual texas finance festival hello friends , attached is the program announcement for the third edition of the texas finance festival to be held in san antonio ( once again ) . you will note that we have some new and fun entertainment lined up to accompany the superb program put together by sheridan titman ( and company ) . you can help us by registering early so we have put a discount into the registration fee if you get your registration form and check in by january 15 , 2001 . however , we would really appreciate hearing from you asap if you do plan to come via return e - mail . looking forward to seeing you all again in the spring . john - announcerev . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: tropical cyclones dear all , yesterday , i mentioned to vince the inhouse modelling capabilities and the impact weather and the weather forecast can have on some of enron ' s operations and risk management positions . for this reason i have attached three files , two of those show to tropical cyclones off the coasts of australia , i . e . rachel and drena . tropical cyclones pose a significant risk , and an early warning system can be part of a better risk strategy . please , note that the modelling system has been further improved since the simulation was done . also , we can focus on another large problem and associated risk . dust storms can pose a significant risk to a number of industries , and the prediction of such events has been very difficult , if not impossible . for this reason a gis database has been developed and coupled to the nwp model , which allows prediction of such events in realtime . for the depicted event an estimated 6 million tonnes of top soil was lost , and with it $ $ . maybe we can set up a conference call to discuss * the above mentioned points * further improvments in forecasting based on the high resolution forecasts * weather and climate on a global perspective for enron * how to further improve the forecast for enron regards , christian ps : i tried to sent of this e - mail last night , but their appears to be a limit of 10 mb , so i will send off the individual files . . . .",0 +"Subject: re : invitation to speak at power 2000 emma , mergers and acquisitions are not my cup of tea . chairing stream 1 on day 1 seems to be a better match . vince "" emma wolfin "" on 12 / 15 / 99 10 : 51 : 34 am to : vince j kaminski / hou / ect @ ect cc : subject : re : invitation to speak at power 2000 hi vince thanks for getting back to me quickly ! as it happens , all of the sessions you suggested are already taken ! so , would you be interested in chairing either stream 1 on day 1 of the conference - "" pricing and trading in the us power market "" or stream 3 on day 2 of the conference - "" latest developments in the us energy industry "" . for your information , the people presenting on day 1 in stream 1 include : - spyros maragos , dynegy on volatility - sanjeev khanna , pg & e on correlation - gary morsches , southern on optimising information to accurately price and trade electricity - blake johnson , stanford university on modelling power prices - craig pirrong , olin school of business , washington university on building the optimal forward curve on day 2 , stream 3 , there are only 3 talks in that stream , as after lunch we will be breaking for plenary sessions and the industry briefing sessions too . but the people who will be speaking in that stream are : - venu nagali , stanford university on real options - ram challa , sithe energies ( he was formerly at bankers trust ) on generation assets i have the slot on mergers and acquisitions in stream 3 on day 2 as still available but i ' m not sure if that session is your area of speciality ? let me know . thanks vince and very much looking forward to working with you again . emma - - - - - original message - - - - - from : vince j kaminski to : emma wolfin cc : vince j kaminski date : wednesday , december 15 , 1999 11 : 36 am subject : re : invitation to speak at power 2000 > > > emma , > > it ' s your choice . i can chair the session of day 2 or speak on one of these > topics . > please , let me know what works for you . > > possible presentations : > > evaluating the effectiveness of insurance as a risk management tool > > or > > applying real option theory to value power plants > > or > > overcoming the difficulties of accurately estimating volatility > > > vince > > > > > > "" emma wolfin "" on 12 / 14 / 99 04 : 08 : 03 pm > > to : vince j kaminski / hou / ect @ ect > cc : > subject : invitation to speak at power 2000 > > > > > hi vince > > it is my great pleasure to invite you to speak at power 2000 which will be > in houston on 9 & 10 may 2000 . > > would you be interested in chairing one of the streams on day 2 of the > conference ? or making a full presentation on one of the days ? please let me > know which talks interest you . obviously , some of the talks are no longer > available but i would like to give you a choice as much as possible . please > could you get back to me asap on 212 925 1864 ext 151 or by return email . > > i very much hope you can make the dates as i ' m very keen to have you > participate at power . not to flatter you unnecessarily , but i know that a > lot of people come to our conferences to hear what you have to say . > > best regards > > emma > > > > >",0 +"Subject: re : informs national conference at san antonio hi , details of our session info . at the informs conference can be found at the following link . it ' ll be in the afternoon of 11 / 6 ( monday ) . since we have 5 speakers , i expect each of us will have no more than 20 minutes to present . please keep that in mind and e - mail me if you have any questions . please also inform me if there will be any changes . look forward to seeing you all in san antonio . best regards , shijie shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng",0 +"Subject: marketpoint gas model dear mr . braun : as i mentioned , i have recently been reassigned here at enron . although i am still in the enron transportation services group , i am no longer the most appropriate contact for consideration of the altos gas model . i would suggest you contact kim watson at 713 - 853 - 3098 or of course , vince kaminski , who will remain very much a part of the decision process . regards , john goodpasture",0 +"Subject: candidate vince : here is the resume of samer ' s friend in azurix . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 25 / 2000 10 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : chonawee supatgiat @ azurix on 01 / 11 / 2000 03 : 47 pm to : stinson gibner @ ect cc : subject : candidate hi dr . gibner , i just called you but you were not there . as you might remember , i am working with samer and you was the one who interviewed me for this position . samer and i now keep our eyes open for the other job possibilities . i would like to know if there is a position available in enron research group that i might fit in ? my updated resume and transcript are attached in hector ' s e - mail . i am looking forward to hearing from you . - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / hou / azurix on 01 / 11 / 2000 03 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - hector campos @ ect 01 / 11 / 2000 11 : 26 am to : stinson gibner / hou / ect @ ect cc : chonawee supatgiat / hou / azurix @ azurix , chonawee @ umich . edu subject : candidate stinson , here ' s my friend ' s information . he is looking for other opportunities within enron . i think he would be a good candidate for the research group . his extension at azurix is 6 - 9654 . - hector - - - - - - - - - - - - - - - - - - - - - - forwarded by hector campos / hou / ect on 01 / 11 / 2000 11 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" chonawee supatgiat "" on 01 / 10 / 2000 09 : 50 : 36 am to : hector campos / hou / ect @ ect cc : subject : here they are thank you , hector . attached are my resume and transcript . - chonawee - attl . htm - chonaweecv . doc - acadrep . txt",0 +"Subject: cell phone for the next two days , you can call me on the cell # 832 - 724 - 6346 . krishna .",0 +"Subject: moddeling support for dpc related issues a quick update on the status of sandeep kohli . he is working currently in my group . he is available on a very short notice to help you with any quantitative modeling that can be required in making decisions regarding our dpc strategy . in case you need his help , he can also rely on the support of other members of my group with skills in different areas . vince kaminski",0 +"Subject: names sheila , i am attaching the list of people who are top retention priority . the list is in the spreadsheet and the names are in the highlighted cell ( red background ) . i am also attaching the resume you asked for . vince",0 +"Subject: re : enron case study update fantastic . i look forward to receiving them . also , will you be keeping dec . 5 th open , in case there is a need for you to meet with additional executives ? regards , cindy "" john d . martin "" 11 / 06 / 2000 09 : 54 pm to : cindy . derecskey @ enron . com cc : vkamins @ enron . com subject : re : enron case study update wow ! all on the same day . that ' s super . thank you so very much . vince is coming up to baylor on monday of next week and we will hash out our question list then . thanks john at 04 : 54 pm 11 / 6 / 00 - 0600 , you wrote : > good afternoon john , > > i just want to drop you a line to update you re : andy fastow . i have > confirmed a one hour interview slot with mr . fastow in monday , december 4 th > from > 11 : 00 a . m . - noon . this is in addition to your schedule interviews with > mr . lay and mr . skilling - outline below . > > if you have any questions , please do not hesitate to contact me at > 713 - 853 - 5670 . > > regards , > > cindy > > > - - - - - forwarded by cindy derecskey / corp / enron on 11 / 06 / 2000 04 : 49 pm - - - - - > > cindy > derecskey to : "" john martin "" > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect > 10 / 31 / 2000 subject : re : enron case study ( document link : cindy derecskey ) > 01 : 44 pm > > > > > > good afternoon john , > > i hope things are well with you . i am writing to update you on the status > of your meetings with andy fastow , ken lay and jeff skilling . i have > arranged the following meeting dates and times with ken lay and jeff > skilling , ( i am still trying to work with andy fastow ' s schedule ) : > > jeff skilling > december 4 th > 2 : 00 - 3 : 00 p . m . > > ken lay > december 4 th > 3 : 30 - 4 : 30 p . m . > > also , i will attempt to schedule the meeting with andy fastow for december > 4 th for convenience - this will also allow us to possibly schedule > additional meetings for the 5 th ( as needed ) . i will let you know as soon > as i ' m successful . > > regards , > > cindy derecskey > university affairs > enron corp . > > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: enron case study good morning mr . martin , i would like to introduce myself . i currently work with christie patrick and michael b rosen in the enron university affairs department . in recent discussions with christie , she has suggested that i liaise with you and our management in preparation for your and vince kaminski ' s case study . christie has forwarded recent emails sent by you suggesting a few convenient times that work with your schedule . i will work with our management and do my best to schedule one hour time slots for interviews that fit with your outline . initially , i will schedule interviews with : ken lay - chairman and ceo , jeff skilling - president and coo , and andy fastow - cfo . if you feel that you may need to speak with additional management , we will definitely try to work something out the same day , so you don ' t have to travel back here . i will forward your project outline to the aforementioned participants once the interviews are scheduled . do you anticipate drafting specific questions ? if so , i would greatly appreciate a copy when convenient . i greatly look forward to working with you and i hope that we can touch base very soon . regards , cindy derecskey enron university affairs ( 713 ) 853 - 5670",0 +"Subject: london , new york , houston , financial mathematics june / july 2001 hello speakers ! my name is joanna vidal and i am the coordinator for the financial mathematics training course being in held on the following dates : london on june 28 & 29 new york on july 9 & 10 houston on july 16 & 17 i am in the process of preparing the speaker packs which will include an updated contact information sheet with all your details . you will receive this pack shortly after you confirm your addresses . i will list them below and i ask that you please look it over and make any necessary corrections . my contact details , for your information are : joanna vidal events coordinator risk waters group t : ( 212 ) 925 1864 ext . 197 f : ( 212 ) 925 7585 jvidal @ riskwaters . com www . riskwaters . com thank you and i look forward to working with you . duane seppi carnegie mellon university graduate school of industrial administrations pittsburgh , pa 15213 - 3890 t : 001 412 - 268 - 2298 f : 001 412 - 269 - 8896 helyette geman universite de paris dauphine finance department au de ka grand ecole corgy pontois , paris france 95021 t : 00 33 60 - 807 - 4200 vincent kaminski enron credit 1400 smith street room ebl 962 houston , tx 77002 - 7361 t : 001 713 - 853 - 3848 f : 001 713 - 646 - 2503 peter nance teknecon , inc . 1515 s . capital of texas highway suite 101 austin , tx 78746 t : 001 512 - 732 - 7084 f : 001 512 - 732 - 7099 chris harris innogy holdings place windmill hill business park whitehill way swindon , wiltshire uk , 5 n 5 6 pb t : 44 793 387 - 7777 f : 44 793 389 - 7811 spyros maragos dynergy , inc . 1000 louisiana street suite 5800 houston , tx 77002 t : 011 713 - 507 - 6589 f : 001 713 - 767 - 5958 ehud ronn university of texas at austin department of finance mccombs school of business austin , tx 78712 - 1179 t : 001 512 - 471 - 5853 f : 001 512 - 471 - 5073",0 +"Subject: california update 1 / 22 / 01 executive summary discussions continue today over bill ablx , focus will be on price and term . new legislation introduced today whereby the state will try to save the utilities from bankruptcy by taking ownership of utilities ' hydro assets in exchange for rate increases . wednesday , state receives bids from auction , rate ranges are expected to be between 5 . 5 and 8 . 0 cents per kilowatt hour . mid week , audit findings will be released ; audit expected to show pg & e ' s utility subsidiary handed over $ 5 b to the holding company . the holding company used $ 4 . 4 b to pay shareholder dividends and buyback stock . state commissioned study to see who would benefit more in a possible bankruptcy scenario . bankruptcy still very possible for both companies . davis concerned about possible ballot issues and how those may effect futue solutions or "" bail out "" . legislation there will be continued discussion regarding bill ablx in the senate today . the discussion will focus on the rate cap of 5 . 5 cents per kilowatt hour as well as the term . assemblyman keeley , the author , indicated that he believed 5 . 5 cents was "" a fantasy "" and impossible to obtain . today , assembly speaker bob hertzberg , d - sherman oaks and assemblyman fred keeley , d - boulder creek will introduce legislation whereby the state would temporary or permanently take both pg & e and edision ' s hydroelectric facilities or transmission lines ( or both ) in exchange for keeping the utilities out of bankruptcy . the state would allow pg & e and edison to impose rate increases , however , the rates would not rise beyond the hikes approved earlier this month by the cpuc as an emergency surcharge . the money collected from consumers would go toward paying off their current debt and the state would then enter into long - term contracts with power generators . under the bill , the state of california would control 10 % of all california ' s electricity . as you can imagine , this legislation has not received unanimous praise . according to recent corporate filings , pg & e ' s hydroelectric plants alone would be valued between $ 3 and $ 5 billion . this amount just happens to be what davis estimates to be the final amount of money the state will have to guarantee once the audit of the utility companies is released and the political pressure is escalated on the parent companies to absorb some of the $ 12 billion in debt . davis is telling people that he thinks the audit will show the state should help with about $ 4 billion in debt , while the utilities , of course , say the full $ 12 billion should be covered . on wednesday , state officials will see the results of sealed bids from energy suppliers for long term contracts and see how close to reality their effort to keep utility rates unchanged for consumers will come . davis insists there are already several bids for his 5 . 5 cents per kilowatt hour ceiling , though few agree with his opinion . a handful of smaller , independent electricity providers with about a 30 % share of california power market , indicated sunday night they would come down to "" less than eight cents "" or less than half of what they currently charge , in return for the stability of long term contracts . because consumers pay about 6 . 5 cents per kilowatt hour for electricity under current puc rules , any hope california has to "" work off "" the back debts for these utilities lies in hitting something very close to davis ' price cap , without falling back on higher prices for consumers . the level of bids will be particularly important since bond rating agencies moved to put the state of california on a credit watch on friday , worried that there was no obvious long - term repayment plan for the billions of dollars they are on the hook for spending to keep the lights on in the state . utility ' s audit by the middle of this week , california auditors will release their findings about how much money pg & e and socal edison actually owe to institutions outside their own holding company structure . this will define the limits of what the state will guarantee , if they guarantee any of the debt . the truly explosive part of the audit may be its findings that the two companies used billions of dollars from consumers to buy back their own stock in recent years . a source with knowledge of the audits said the audit is expected to show that in the last three years , pg & e ' s utility subsidiary handed over about $ 5 billion to the holding company . of that total , the holding company used $ 4 . 4 billion to pay shareholder dividends and buyback shares of its stock . another finding from the audit shows that state helped caused the current power crisis when regulators , at the time of deregulation ( under the direction of former r - gov . pete wilson ) , forced the two utilities to sell at least half of their power - generating plants . auditors are expected to say that if the utilities still owned all these plants , electricity would cost only 7 cents a kilowatt hour , compared with over 30 cents an hour on average in december and january . bankruptcy the threat of bankruptcy is still very real for both utilities . senior advisors said that these utilities were on the path often followed by utility companies that ended in bankruptcy . as all the parties involved hunker down for another intensely political week , they all remain determined to avoid bankruptcy , but to push this as close to the brink as possible in the hopes of squeezing out an advantage . under such conditions , the risks of one or more of the players fumbling and triggering the great unknowable outcome of bankruptcy , is still quite high . california ' s political leaders order a series of independent analyses to determine who would suffer most in a case of bankruptcy , the state or the two utilities . the short answer was that no one has any idea . below are the findings of the report and some of the possible scenarios that would face a bankruptcy judge : 1 ) would the companies be eligible for chapter 11 style temporary bankruptcy ? some of the advisors thought that pg & e and edison ' s finances were so bad that chapter 11 style temporary bankruptcy may not even be an option . advisors said that a bankruptcy judge might take a good look at the corporate debt load and decide that reorganization would do no good and order the companies into full liquidation . this would most certainly be guaranteed chaos . 2 ) could the bankruptcy court actually force the puc to raise the price of electricity to consumers ? the legal basis for passing on rate increases to consumers is a lot less solid than originally thought , particularly if there is widespread public outrage directed at the electricity companies . and there is still the question of the unilateral power of a bankruptcy judge . 3 ) if the bankruptcy judge takes his job of protecting corporate assets seriously and finds that pg & e and edison cannot afford to buy electricity , he could order them to stop buying it and thus lead to massive power outages . 4 ) if the utilities go into bankruptcy , the first creditors in line would be the lenders and bondholders with collateral pledges . the state could become almost the last creditor in line as it is just another electricity supplier ( one of the reasons why suppliers won ' t sell electricity on credit to these companies now ) . 5 ) if the two companies went bankrupt , it would be the largest bankruptcies in history , straining just about everyone involved in the process . 6 ) the corporate approval allowing the parent company to segregate assets from the utility by the ferc for pg & e and already in place for edison may be far less effective than the utilities or the ratings agencies currently think . this is particularly true if this week ' s audit shows the two corporations transferring billions of dollars in the last few years into stock buybacks and shareholder dividend payments . davis opinion polls show that governor gray davis is getting high marks for his job , and the utilities are increasingly viewed as the culprits . one of davis concern ' s is , according to a senior official in the governor ' s office , that a deal is carved out that triggers a popular ballot initiative which is so anti - utility and anti - business that it cripples future growth in the state . according to a senior official , "" no one thought howard jarvis and his property tax initiative would succeed in destroying our education system , but he did , with one just ballot line and a lot of popular revulsion . the threat of direct , popular action is at least as large now as then . "" consumer advocate harvey rosenfield is already threatening to draw up a ballot initiative at the first sign that individual electricity consumers are being asked to help the utility companies repay their debt through higher rate - payer bills . this official goes on to say , "" the anger at utility companies is so high here , that almost anything rosenfield could think of would pass and we couldn ' t do anything about it . "" this threat has begun to complicate the one escape route on the debt front that had always appeared wide open to political leaders - - floating a bond issue or a guarantee for the money owed to institutions outside the corporate holding structure , and then letting the companies work that off with profits over the next several years .",0 +"Subject: fyi : energy operations promotions hi vince , scott pleus ( listed below in the director promotion section ) is bandwidth - trading backoffice person we  , ve been working with . i have known scott from ebs since he and i started around the same time . in fact , i was one of the first people to talk to sally beck about booking some of our network positions  * at which time i met scott . i know we have discussed this matter many times before , but this is a specific example of how people at all functional areas are benefiting from ebs ' rapid ' growth . ' scott has been at enron for about the same time i have been . he came from another energy company ' s backoffice before that . as for my specific situation , after our discussion yesterday , i understand clearly what happened . it appears bad luck had a lot to do with it ! ! ! thanks for looking into the promotion in the first place and i am certain that you ' ll push the promotion through at the earliest convenience of the hr folks ! kind regards , ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 08 / 00 09 : 22 am - - - - - sally beck @ enron sent by : enron announcements @ enron 02 / 07 / 00 07 : 01 am to : all ena domestic employees cc : subject : energy operations promotions ena energy operations sally beck vice president of energy operations i am pleased to announce the following promotions effective february 1 within ena energy operations . these individuals have been promoted in recognition of their outstanding performance and their contributions to the continuing success of enron north america . please join me in congratulating these employees on their promotions . promotions to senior director kristin albrecht serves as business controller for ena  , s power business . along with leslie reeves , kristin ensures that power transactions are handled accurately and smoothly from beginning to end . kristin  , s primary focus is on risk controls and daily reporting of positions and p & l for east power trading , west power trading and genco operations . brenda herod serves as business controller for ena  , s assets business , working with the gas assets group and the texas trading desk . her responsibilities include global contracts and facilities , risk management , confirmations , gas scheduling , volume management , settlements and regulatory compliance for houston pipeline , lrc and enron midstream services . leslie reeves is a business controller for ena  , s power business , working closely with kristin albrecht in managing mid and back office support for the east , west and genco power trading groups . her primary responsibilities are documentation and settlements , with a focus on contract administration , cash forecasting and cash management . mary solmonson leads ena  , s global database management group , collecting and validating information on our customers , contracts , pipelines and facilities , as well as published prices . these activities support overall energy operations responsibilities from risk to logistics to settlement . in addition , mary has been instrumental in the promotion and implementation of the global systems across enron to provide control , consistency , and common data throughout the organization . promotions to director scott pleus serves as business controller for enron  , s emerging products . these businesses include bandwidth , pulp and paper , and weather . his primary responsibilities include day - to - day functions of risk management , confirmations , pulp and paper scheduling , and settlements as well as long term system development . sheri thomas led ena  , s natural gas off - system settlements function throughout 1999 . her responsibilities included cash forecasting , collections , and accountability for receivables and payables for ena  , s gas business in the east , west and central regions of the us . sheri accepted a new assignment in january 2000 and is now managing the enron online operations . promotions to manager bennett kaufman manages the risk management administration function for the equity trading and debt trading groups . he has also had experience in supporting the options book for natural gas derivatives trading . prior to joining enron in early 1998 , bennett worked in trading operations for investment banking firms in new york . richard mckeel is the systems integration analyst within global database management , overseeing the change management process and new software development needed to interface the global applications with strategic systems  ) sitara , unify , enpower , solarc , sap , and enrononline . other promotions specialist to senior specialist : analyst to specialist : sylvia campos  ) deal compliance contract records tara eslick  ) financial trading risk management kam keiser  ) gas risk management - central desk victoria versen  ) gas logistics - east desk phillip love  ) risk controls operational analysis jeff coats  ) gas risk management - central desk monica lande  ) west power risk management ( portland ) senior clerk to staff : trang le  ) strategic operations  ) project unify john postlewaite  ) east power risk management anthony campos  ) deal compliance contract records diane seib  ) documentation ( calgary ) kori loibl  ) gas risk management - financial books donnie vinson  ) west power risk management ( portland ) imelda frayre  ) strategic operations - project sitara clerk to senior clerk : staff to specialist : leslie smith  ) information & records management amy degeyter  ) power documentation melinda whalen  ) documentation ( calgary ) michael nguyen  ) emerging products risk management sherlyn schumack  ) logistics volume management karie hastings  ) strategic operations - project sitara in addition , peggy hedstrom and brent price were promoted to vice president , as announced in the memo issued by enron corp . office of the chairman . peggy leads energy operations for enron canada , with responsibility for risk management , documentation and gas logistics . peggy also serves as a key interface with canadian pipelines as a member of several industry committees . brent is the senior business controller for gas trading operations in the u . s . his responsibilities include risk management , confirmations , volume management and settlements for the east , west and central regions . he also provides operational expertise in the due diligence phase of the evaluations of joint ventures and acquisitions .",0 +"Subject: re : letter to nesbitt vince , your note looks good to me , short and to the point . i assume this will prompt further detailed discussions with dale . i would want to clarify that we are primarily interested in the long term gas model and database for north america . unless a familiarity with the short term model is a prerequisite , i doubt that we would want to spend a lot of time on it . depending upon how long it would take to become familiar with the long term model , it might be helpful to have access in both omaha and houston ? we would eventually need specifications for the computer system we would need for testing the model . steve hotte , cio for ets , would co - ordinate the in - house installation for us . at some point , it will be helpful to get steve in contact with the appropriate marketpoint it rep . assuming that you get acceptable clarification of these issues , dale should probably send to us a modified licensing agreement for review . let me know what i should do next . jng",0 +"Subject: my resume molly , we would like to bring this student as a summer intern ( the last one , we are running out of space ) . i shall send you another message regarding his proposed dates . thanks . i hope you have a very happy easter . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 13 / 2001 10 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zhendong xia on 04 / 12 / 2001 03 : 58 : 25 pm to : vince . j . kaminski @ enron . com cc : subject : my resume hi , dr . kaminski : glad to get your reply . here is my resueme . if you wanna know more about me , please feel free to contact me . thanks . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318 - cv . doc",0 +"Subject: powerisk 2000 - cocktail parties for your information thanks iona - - - - - - - - - - - - - - - - - - - - - - forwarded by iona maclean / lon / ect on 21 / 09 / 2000 15 : 00 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : tunuja tulsiani 21 / 09 / 2000 14 : 50 to : cc : rosemary fitzgerald , simon turner subject : powerisk 2000 - cocktail parties important announcement two key social functions at powerisk 2000 * your personal invitation powerisk 2000 has teamed up with three key industries partners to bring two important networking functions at this year ' s powerisk 2000 . a full invitation has been sent to you in the post but please print out and bring the two attached invitations with you in case your postal copy does not reach you for any reason . the first cocktail party will be held on tuesday 3 rd october between 6 pm and 9 pm and will be hosted by virtual credit services and true quote . com . this welcome cocktail party is open to all delegates and speakers whether or not you are attending the e - commerce day on the tuesday . running until 9 pm , it should allow you time to attend even if you have a late evening flight . the second cocktail party will be held on wednesday 4 th october at the palais brongniart , the home of parisbourse who will be hosting the function . transport to and from this event will be provided for all delegates . there is no need to reply * we look forward to seeing you at both events . regards rosemary fitzgerald powerisk 2000 director",0 +"Subject: summer rotation in rac vince , i had a lunch meeting with rudi and vladi from rac , and i also met with ted murphy . they are supposed to get back with me by friday to confirm the proposed summer rotation . so far i have a very positive impression of the group , and the projects that they are involved in . they also told me that rac and research people are often working on projects together , so i am sure that my ties with research are not going to go away with me rotating to rac . i will keep you posted on further developments . coordially , jason sokolov",0 +"Subject: re : congratulations thank you very much for the note . i am very happy that you have been promoted to managing director . it was long over due . sincerely , jean vince j kaminski @ ect 01 / 11 / 00 10 : 03 am to : jean mrha / enron communications @ enron communications cc : subject : congratulations jean , congratulations . well deserved . vince",0 +"Subject: thanks from charles dear vince : it was great talking to you on friday . thank you very much for the opportunity and your time . after having talked with you and other people in the group , i was very impressed by enron research group ' s deep insights , high professionalism , and the friendly attitude . i really wish that i could have the opportunity to join the group and contribute to the future success of the research group with my solid background in finance and econometrics . if you have any questions , please feel free to let me know . i look forward to hearing from you soon , thank you very much . sincerely , charles do you yahoo ! ? yahoo ! messenger - talk while you surf ! it ' s free . http : / / im . yahoo . com /",0 +"Subject: re : mscf speaker series pierre - philippe , the time of the presentation , 11 : 30 is fine with me . i shall arrive thu evening and i shall get to the hotel by cab . thanks for your kind offer to meet me at the airport but i shall be arriving at late hour and don ' t want to inconvenience you . kevin kindall from enron will come with me . i shall also need a projector for my m / s power point presentation on "" volatility in the us power markets "" . i shall be very glad to meet with duane . vince "" pierre - philippe ste - marie "" on 10 / 30 / 2000 08 : 47 : 17 pm to : cc : subject : re : mscf speaker series dear mr . kaminski , the presentation is scheduled on friday the 3 rd at 11 . 30 so that new york students can attend . would you like me to get you at the airport ? if you want i can also organize a short meeting with professor seppi which is very interested in energy derivatives . my goal is to make your trip to pittsburgh as pleasant as possible . therefore if there is anything i can do to help ( i am sounding a little repetitive . . . i know ) let me know . sincerely , pierre - philippe ste - marie http : / / pstemarie . homestead . com",0 +"Subject: wti simulation model 30 , 000 bbl / trade john , attached are updated results of zimin ' s model assuming each trade is on a total notional of 30 , 000 bbls . note that i have re - scaled the results to be in $ mm . - - stinson open - close prices continuous prices",0 +"Subject: re : hello from vince kaminski at enron shmuel , sorry for not getting back to you earlier . if the 23 rd of october is still open , i can make the presentation on this day . vince "" shmuel oren "" on 08 / 30 / 2000 08 : 18 : 15 am to : cc : subject : re : hello from vince kaminski at enron originally you mentioned october 23 so i reserved that week which is still open . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : cc : ; ; sent : wednesday , august 30 , 2000 9 : 03 am subject : re : hello from vince kaminski at enron > > shmuel , > > let ' s see if we can either rearrange the seminar speakers > or change the date of our visit to the campus . ashley baxter , our > coordinator is very efficient and > got a faculty room for a presentation on monday morning on the 16 th . > > vince > > > > > > > "" shmuel oren "" on 08 / 29 / 2000 05 : 37 : 33 pm > > to : > cc : > subject : re : hello from vince kaminski at enron > > > dear vince . i spoke too soon . apparently the seminar slot on the 16 was > already filled . i will see if i can switch the speaker for that week to the > following week . in any case we are on for dinner on the 16 . > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > shmuel s . oren , professor > dept . of industrial engineering > and operations research > 4117 etcheverry hall > university of california > berkeley , ca 94720 - 1777 > e - mail : oren @ ieor . berkeley . edu > phone : ( 510 ) 642 - 1836 or 5484 > fax : ( 510 ) 642 - 1403 > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > - - - - - original message - - - - - > from : > to : > cc : ; > sent : tuesday , august 29 , 2000 5 : 01 pm > subject : re : hello from vince kaminski at enron > > > > > > shmuel , > > > > the date of our trip to berkeley has been set . it will be october 16 th > and > > 17 th > > ( monday and tuesday ) . > > > > i shall be glad to make a presentation on energy derivatives markets > > ( development of the markets in the us and europe , valuation difficulties , > > enron ' s role > > in developing the forward markets for natural gas and electricity ) . > > > > please , let me know if this topic would be of interest to you . if this is > > the > > case , i shall follow with a title and an abstract . > > > > by the way , are you free for dinner on monday ? > > > > vince > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 24 / 2000 08 : 59 : 38 am > > > > to : "" vince j kaminski "" > > cc : > > subject : re : hello from vince kaminski at enron > > > > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a > > title and abstract . > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > shmuel s . oren , professor > > dept . of industrial engineering > > and operations research > > 4117 etcheverry hall > > university of california > > berkeley , ca 94720 - 1777 > > e - mail : oren @ ieor . berkeley . edu > > phone : ( 510 ) 642 - 1836 or 5484 > > fax : ( 510 ) 642 - 1403 > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > - - - - - original message - - - - - > > from : "" vince j kaminski "" > > to : "" shmuel oren "" > > cc : "" vince j kaminski "" ; "" ashley baxter "" > > > > sent : thursday , august 24 , 2000 9 : 58 am > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > > shmuel , > > > > > > thanks for the message . i am working with our recruiter , ashley baxter , > > > to finalize the date of the trip . i shall shoot for october the 23 rd > > > if this date works for the rest of our team . > > > > > > vince > > > > > > > > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am > > > > > > to : vince j kaminski / hou / ect @ ect > > > cc : > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > dear vince . > > > i sent you a reply earlier this month but i haven ' t heard from you > about > > the > > > date of your visit . our department has a seminar every monday . if you > can > > > schedule your visit on a monday i would like to invite you to give a > > seminar > > > which will be attended by many of our graduate students and faculty and > > will > > > give you an opportunity to tell them about your program . with > sufficient > > > lead - time i can advertise the seminar in the hass school to their > > financial > > > engineering students . > > > shmuel . > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > shmuel s . oren , professor > > > dept . of industrial engineering > > > and operations research > > > 4117 etcheverry hall > > > university of california > > > berkeley , ca 94720 - 1777 > > > e - mail : oren @ ieor . berkeley . edu > > > phone : ( 510 ) 642 - 1836 or 5484 > > > fax : ( 510 ) 642 - 1403 > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > > - - - - - original message - - - - - > > > from : > > > to : ; ; > > > > > > sent : tuesday , august 08 , 2000 10 : 59 am > > > subject : hello from vince kaminski at enron > > > > > > > > > > shmuel , > > > > > > > > i hope you remember me . i visited you together with aram sogomonian , > a > > > > good friend of mine , a few years ago . i am currently responsible , > among > > > > other things , for recruiting graduates with finance and / or technical > > > > backgrounds at the university of berkeley . i would be glad to give > you > > a > > > > call and talk more about the details of our program . my colleague , > > > > ashleybaxter , from the analyst / associate program at enron would join > me > > > > as well . > > > > > > > > i am sending you a copy of the brochure about the analyst / associate > > > > program . > > > > > > > > vince kaminski > > > > > > > > > > > > vincent kaminski > > > > managing director - research > > > > enron corp . > > > > 1400 smith street > > > > room ebl 962 > > > > houston , tx 77002 - 7361 > > > > > > > > phone : ( 713 ) 853 3848 > > > > fax : ( 713 ) 646 2503 > > > > e - mail : vkamins @ enron . com > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : datren williams acceptance you are right , vince . . . . celeste and i did discuss it , and she approved his feb . start date . datren does know about that , so it sounds like it is cleared up . thanks so much , and we are sorry for the confusion ! carol vince j kaminski 10 / 12 / 2000 03 : 58 pm to : stinson gibner / hou / ect @ ect cc : carol coats / hou / ect @ ect subject : re : datren williams acceptance stinson , i think it ' s a mistake . it should be february . vince stinson gibner 10 / 10 / 2000 08 : 11 pm to : vince j kaminski / hou / ect @ ect cc : subject : datren williams acceptance fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000 08 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - carol coats 09 / 29 / 2000 02 : 36 pm to : celeste roberts / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : datren williams acceptance celeste , i just received datren williams ' acceptance with the following note attached : "" my graduation date ( ph . d . candidate from lsu ) is dec . 2000 . celeste roberts has informed me that i would have the option of starting work feb . 2001 . i am under the impression that i will start in feb . 2001 . my offer letter has a start date of aug . 2001 . if this is a problem , please give me a call . looking forward to working at enron . thanks a million , datren w . "" please let me know if he may in fact start in feb . 2001 , and if so , do you have a specific date for him , or may he choose ? thanks , celeste , carol",0 +"Subject: re : looking for "" fat tails "" in time - series for ngi - socal vince , i quite agree , we have to separate out price and position , and that is what we have done with the historical simulations / evt ideas . we have taken today ' s delta - gamma , hold that frozen , and gone back historically and looked at price changes and see what happens to portfolio changes . garman and company have looked at gross historical portfolio changes , which i agree is not the best approach , due to the artificiality imposed by largest net open positions ( nop ) , such as we have seen recently . regards naveen vince j kaminski @ ect 11 / 13 / 2000 10 : 31 am to : tanya tamarchenko / hou / ect @ ect cc : naveen andrews / corp / enron @ enron , vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect subject : re : looking for "" fat tails "" in time - series for ngi - socal tanya , naveen , just a thought . changes in the portfolio values may combine both the changes of prices and positions . this happens if one tracks changes in the value of our historical gas portfolio . a big jump in the volumetric position from day to day , combined with a moderate price movement may produce an observation that looks artificially big . if the volumetric position was frozen , it ' s just a scaling factor and there should be no discrepancy between your numbers . of course , the correct approach is to separate the price process from the position changes . vince tanya tamarchenko 11 / 13 / 2000 08 : 38 am to : naveen andrews / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect subject : re : looking for "" fat tails "" in time - series for ngi - socal naveen , i am trying to answer the question : what is the appropriate stochastic process to model the behavior of commodities ' prices in our var model . so what i do care about is the behavior of log - returns . any help is appreciated . tanya . naveen andrews @ enron 11 / 10 / 2000 04 : 35 pm to : tanya tamarchenko / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect subject : re : looking for "" fat tails "" in time - series for ngi - socal tanya , we care about portfolio value changes , not log - returns of a single contract , which has extremes in the behavior and can be fit to a fat - tailed distribution . a 1 . 20 basis move , with 500 bcf position , is an extreme event , anyway you slice it . in the literature , as elsewhere , i agree for a single contract log - returns , they don ' t divide by vols . regards naveen tanya tamarchenko @ ect 11 / 10 / 2000 04 : 17 pm to : naveen andrews / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect subject : re : looking for "" fat tails "" in time - series for ngi - socal naveen , i got ngi - socal prices for prompt , prompt + 1 , . . . , prompt + 59 contracts . for each contract i calculated moving average based on 21 log - returns as well as moving volatility . then i calculated normalized log - returns : [ return ( t ) - ave ( t ) ] / vol ( t ) and compared the results to normal distribution . i could not find fat tails ! volatility changes a lot from day to day , so when people look at log - returns ( not normalized ) it seems that there fat tails ( big spikes , large returns more frequent than normal ) , which comes from the fact that volatility is not constant ( at all ) . see the spreadsheet is under o : \ _ dropbox \ tanya tanya",0 +"Subject: research meeting all john sherriff has suggested we all get together in the near future to discuss the demands being placed on the research group . i will be making a request for additional resources , and the aim of the meeting is to determine the most appropriate size for the team . assistants : can we aim for week commencing 6 th november ? vince : would you like to teleconference in ? many thanks steve",0 +"Subject: meeting with dale nesbitt - altos management partners the meeting with dale nesbitt has now been scheduled for 2 : 00 pm tuesday , november 7 , in eb 49 c 2 video conference room . your attendance is welcomed . jng",0 +"Subject: re : interviews vince , no problem , i know hr can slow the process down . marshall brown vice president robert walters associates phone # : 212 - 704 - 0596 fax # : 212 - 704 - 4312 marshall . brown @ robertwalters . com www . robertwalters . com > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : friday , april 06 , 2001 5 : 50 pm > to : marshall . brown @ robertwalters . com > cc : vince . j . kaminski @ enron . com > subject : re : interviews > > > marshall , > > sorry for a delay in responding to you . > my hr people were asked to get in touch with you re > the candidates . > > vince > > > > > > marshall brown on 03 / 27 / 2001 02 : 36 : 12 > pm > > to : "" ' vince kaminski ' "" > cc : > subject : interviews > > > vince , > i had two candidates speak with zamin lu on 3 / 14 / 01 and 3 / 16 / 01 . > ( renshi zhang and bill koures respectively ) . i know you were in london > last > week . if you could please give me some feedback ( either positive or > negative ) as soon as possible , i would appreciate it . > regards , > > marshall brown > vice president > robert walters associates > phone : 212 - 704 - 0596 > fax : 212 - 704 - 4312 > marshall . brown @ robertwalters . com > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . > > this email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed . if you have received this email in error please notify > the system manager . > > this footnote also confirms that this email message has been swept by > mimesweeper for the presence of computer viruses . > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > >",0 +"Subject: eprm understanding and applying fin math - houston please register me as vince kaminski ' s free guest at the houston session of the above conference on 31 / 8 and 1 / 9 . many thanks , steve leppard enron europe research group",0 +"Subject: backwardation hedge strategy i have completed an evaluation of a "" backwardation "" hedge strategy requested by wendy king . the stratregy is intended to hedge oil inventories and is based of trading nymex futures and options . wendy has suggested she wants to review this with jeff shankman . i would like to review my conclusions with you before i send it to wendy and will ask shirley to set up a meeting . a writeup is attached . bob",0 +"Subject: re : interview request kevin , yes , i am available . please send a resume to shirley crenshaw . shirley will call you to set up the time . vince from : kevin mcgowan @ enron 07 / 10 / 2000 09 : 28 am to : vince j kaminski / hou / ect @ ect , george hopley / hou / ect @ ect cc : subject : interview request i am trying to schedule an interview with a gentleman who is currently a professor at rice . we are interested in possibly hiring him in a research capacity in the coal and emissions group . would you have time to interview him tom ' w ? let me know if you can . thank you kevin mcgowan x - 3 - 7499",0 +"Subject: just fyi vince , please see below some of the ideas being bounced , fyi . please keep this confidential . the unused capacity in maharashtra should be dispatched on a merchant basis , on behalf of mseb to any customers outside mseb ' s current purview . i would like us to look at the whole issue as one of mseb ' s poor credit , and hence ( as jeff pointed out on the call ) , one where we need to identify all deep pockets in and out of maharashtra . secondly , there is ( as shubh and i had pointed out ) the ability to evacuate about 700 - 1000 mw to customers other than mseb . the challege is - at what price , and in coordination with which agencies . as always , in india your greatest challenge will be in dealing with govt . agencies . another point to consider is that in - all we have about 5 - 7 customers identified . will all the customers we have earmarked bite ? ? ? this is the reason why systems need to be set up with a bulletin board on pricing 10 - 15 day power on the screens of the different sebs we can connect up with . this also substantially gets around the credit quality issue , as this would be an arrangement akin to cash - and - carry . i see a lot of hope for such a strategy . i do not see much hope for a strategy of selling blocks of power to either ntpc or ptc . i would agree however , that we not put all our eggs in one basket , and hence you could designate a team to look into the ntpc sale issue inparallel . in order to set up the trading sytems , however , we need to start by the end of ql 2001 , and just start doing small deals where we break even , simply to test the waters and introduce liquidity into the market . hand - in - hand with this we need a fuel risk management strategy , as i have been pushing for . for this to happen , we need to get the special import licence reinstated . if that is not possible , we need to lobby with the highest authorities within govt . and rbi to allow for hedging , irrespective of whether we have an sil . the discussions being held with ioc are therefore very important in this regard , and i am going to get anshuman and mukesh involved with the same . finally , i do not see much hope for your strategy of asking ene management for $ 75 million to build transmission lines in a country where the regulatory framework on transmission access is even less defined and understood than the generation side of the equation . i would refrain from stating this in any senior management forum until we are able to clearly demonstrate the cost - benefit of this . i have some ideas on that side which i need to develop further . regards , sandeep .",0 +"Subject: many dear vince , 1 . i apologize for not having got back to karla earlier but dauphine is not properly equipped yet . 2 . the conference with samuelson , merton , heath , ross , mckean etc was spectacular . 512 academics and practitioners came to college de france and were very grateful . 3 . i was so worn out afterwards that i did not make it to houston . i just went to visit alex after a week conference on quantitative risk management where i was speaking at carnegie mellon 4 . another former phd student of mine has been testing and improving the software . he is great and modest ; giving the papers i referee and the conferences i go to , i do believe that we are still ahead ( or way ahead ) today . we also beautifully simplified the valuation of the hourly swings . obviously , in case of a problem , my reputation and your esteem would be more valuable than 30 % of 90 , 000 usd ( to be shared . . . ) 5 . i declined risk in houston and newyork and am not sure i will have the pleasure to see you in london . in all cases , we should coordinate for paris soon helyette",0 +"Subject: re : analyst candidate mitra mujica thank you so much for reserving an analyst for our group . tomorrow is my last day in houston until i return from london in 2 months . i won ' t forget something for your baby . i ' ve asked gwyn koepke and vince kaminski to interview mitra mujica in my absence . vince likes to interview all candidates prior to being employed in the research department . i can interview over the telephone . could you please send us mitra ' s resume . regards , maureen enron north america corp . from : andrea richards @ enron 02 / 16 / 2001 04 : 42 pm to : maureen raymond / hou / ect @ ect , gwyn koepke / na / enron @ enron cc : jana giovannini / hou / ect @ ect , shelly butler / hou / ect @ ect , althea gordon / na / enron @ enron , teresa bosien / hr / corp / enron @ enron subject : analyst candidate mitra mujica maureen , mitra mujica , an analyst candidate from super thursday 2 / 15 , has been reserved for your group . please note that this placement is contingent upon the candidate accepting the analyst program ' s offer . mitra will have two weeks to respond and we will contact you once her response is received . please contact me if you have any questions . thank you , andrea richards career development associate & analyst program x 3 - 6499",0 +"Subject: it ' s time for prc it ' s time once again to administer the research group ' s prc ! ! attached you will find a list of your ee ' s . pls take a moment to pre - rank your employees using the consolidated feedback from their mid - year performance reviews . on the spreadsheet below , there is a category titled "" ranking "" , please place your recommended ranking in this column and e - mail it back to me by noon this friday . vince will be meeting with you all on friday to discuss these pre - rankings . on wednesday , 7 / 5 at 9 a , pls join vince and i in room ebl 938 to formalize your employee rankings . the ranking categories are as follows : superior excellent strong satisfactory needs improvement issues additionally , i know that there have been many changes in staff and reportships over the last 6 months . if you see that you are missing someone or someone is reporting to the wrong person , just let me know and i ' ll get it corrected asap . call me with any questions or concerns !",0 +"Subject: dinner with vince kaminski good morning mr . saksena : reservations have been made for 6 : 00 pm , the evening of thursday , march 9 at latour d ' argent restaurant . the restaurant is located at 2011 ella blvd at t . c . jester blvd . men are required to wear a coat . directions to restaurant : coming from downtown houston : take i - 45 north to 610 west . take 610 west to ella blvd exit . go south ( back under the freeway ) on ella blvd to 2011 ella at t . c . jester . vince will meet you at the restaurant . if you have any questions , please call me . thanks . shirley crenshaw 713 - 853 - 5290",0 +"Subject: re : tradespark vince , thanks for the tradespark article . i very much appreciate being able to participate in the applied learning projects . it has been very stimulating for me . i ' ve really enjoyed all the projects i ' ve worked on with the research group , and ever since my interview i have had plenty of second thoughts about going back to graduate school . i ' m sure mit will be a good and unique experience , but i wonder if it can help me find a job and a community i enjoy as much as i already have here . if possible , i would like to talk with you and / or stinson about the possibility of my staying on the research team , or coming back after the fall . thanks for your time . ken",0 +"Subject: book vince , ? i have made contact with fiona grant , director public relations and communications enron europe limited , and she mentioned that there are some changes to your bios , which are located both on the cover and in the preliminary section in "" about the authors "" . ? we would appreciate it if you could help in ? collecting or passing along these edits ? since these ? are ? the only items delaying the printing of the book . ? thanks vince . ? regards , julie ? ?",0 +"Subject: rice / enron seminar series fyi ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 15 / 2000 02 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - barbara ostdiek on 09 / 15 / 2000 02 : 39 : 53 pm to : ostdiek @ rice . edu cc : subject : rice / enron seminar series jones graduate school research seminar series in finance sponsored by enron corp . jeff pontiff university of washington will give a seminar at the jones school on friday , september 22 , ?  & market valuation of tax - timing options : evidence from capital gains distributions .  8 the seminar will begin at 3 : 30 in room 115 . a word file with the paper is available through the seminar website http : / / www . ruf . rice . edu / ~ jgsfss / . there have also been several updates to the schedule in the last week or ten days .",0 +"Subject: re : fw : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford iris , we can mention to ben that the papers will be edited and combined into a coherent review . vince from : iris mack / enron @ enronxgate on 04 / 23 / 2001 01 : 49 pm to : vasant shanbhogue / enron @ enronxgate , vince j kaminski / hou / ect @ ect , amitava dhar / corp / enron @ enron cc : subject : fw : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford hi , attached is a bit of feedback from ben regarding the papers listed below . can you help me out here ? thanks , iris - - - - - original message - - - - - from : parsons , ben sent : monday , april 23 , 2001 3 : 05 am to : mack , iris subject : re : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford hi iris i would not include paper 8 , as paper 7 supersedes it . also how much rewriting of these papers do you envisage ? some of them are not up - to - date , or were written poorly and under time - pressure , so what do you envisage eventually sending to duffie ? thanks ben from : iris mack / enron @ enronxgate on 21 / 04 / 2001 22 : 30 cdt to : ben parsons / lon / ect @ ect cc : vasant 6525 - 68 daao @ ex @ enronxgate , vince j kaminski / hou / ect @ ect , scott salmon / eu / enron @ enron , bryan seyfried / lon / ect @ ect , nigel price / lon / ect @ ect , tomas valnek / lon / ect @ ect , george albanis / lon / ect @ ect , markus fiala / lon / ect @ ect , craig chaney / enron @ enronxgate , kim detiveaux / enron @ enronxgate , amitava dhar / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , mike mumford / lon / ect @ ect subject : re : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford hi ben , i think i have read all the papers that are to be used in the comparative model study to be sent to professor duffie at stanford . these documents are all listed below . please let me know if i have omitted any ( however , don ' t get the impression that i am begging for more papers to read ) . now i will try to transform my notes into a draft for professor duffie . thanks , iris list of papers for comparative model study 1 . actively managing corporate credit risk : new methodologies and instruments for non - financial firms by r . buy , v . kaminski , k . pinnamaneni & v . shanbhogue chapter in a risk book entitled credit derivatives : application for risk management , investment and portfolio optimisation 2 . neural network placement model by george albanis , enroncredit ( 12 / 22 / 00 ) 3 . pricing parent companies and their subsidiaries : model description and data requirements by ben parsons and tomas valnek , research group 4 . a survey of contingent - claims approaches to risky debt valuation by j . bohn www . kmv . com / products / privatefirm . html 5 . the kmv edf credit measure and probabilities of default by m . sellers , o . vasicek & a . levinson www . kmv . com / products / privatefirm . html 6 . riskcalc for private companies : moody ' s default model moody ' s investor service : global credit research 7 . discussion document : asset swap model by ben parsons , research group ( 4 / 20 / 01 ) 8 . asset swap calculator : detailed functional implementation specification ( version 1 . 0 ) by ben parsons , research group 9 . discussion document : live libor bootstrapping model by ben parsons , research group ( 4 / 20 / 01 ) 10 . the modelling behind the fair market curves : including country and industry offsets by nigel m . price , enron credit trading group 11 . pricing portfolios of default swaps : synthetic cbos - moody ' s versus the full monte ( carlo ) by nigel m . price , enron credit trading group 12 . placement model vl . 0 : discussion document by ben parsons , research group , 2000 13 . credit pricing methodology - enroncredit . com by ben parsons , research group 14 . correlation : critical measure for calculating profit and loss on synthetic credit portfolios by katherine siig , enron credit group 15 . discussion document : var model for enron credit by ben parsons , research group , ( 1 / 3 / 01 ) 16 . methodology to implement approximate var model for the credit trading portfolio by kirstee hewitt , research group",0 +"Subject: re : weather and energy price data mulong wang on 04 / 24 / 2001 10 : 58 : 43 am to : cc : subject : re : weather and energy price data hello , elena : thank you very much for your data . i sent an email to ft but had no response so far . as soon as i got their permission i will let you know . have a great day ! mulong on thu , 19 apr 2001 elena . chilkina @ enron . com wrote : > > mulong , > > please find attached a file with henry hub natural gas prices . the data > starts from 1995 and given on the daily basis , please let us know when we > can proceed with electricity prices . > > sincerely , > elena chilkina > > ( see attached file : henryhub . xls ) > > > > > > > vince j kaminski @ ect > 04 / 16 / 2001 08 : 19 am > > to : mulong wang @ enron > cc : vince j kaminski / hou / ect @ ect , elena chilkina / corp / enron @ enron , > macminnr @ uts . cc . utexas . edu > > subject : re : weather and energy price data ( document link : elena > chilkina ) > > mulong , > > we shall send you natural gas henry hub prices right away . > please look at the last winter and the winter of > 95 / 96 . > > we shall prepare for you the electricity price > information ( cinergy , cobb and palo verde ) but > you have to approach ft ( the publishers of > megawatts daily , a newsletter that produces the price > index we recommend using ) and request the permision > to use the data . we are not allowed to distribute > this information . > > please , explain that this is for academic research and that > we can produce the time series for you , > conditional on the permission from the publishers > of megawatts daily . > > vince kaminski > > > > mulong wang on 04 / 15 / 2001 03 : 43 : 26 am > > to : vkamins @ ect . enron . com > cc : richard macminn > subject : weather and energy price data > > > dear dr . kaminski : > > i am a phd candidate under the supervision of drs . richard macminn and > patrick brockett . i am now working on my dissertation which is focused on > the weather derivatives and credit derivatives . > > could you kindly please offer me some real weather data information about > the price peak or plummet because of the weather conditions ? > > the past winter of 2000 was very cold nationwide , and there may be a > significant price jump for natural gas or electricity . could you > please offer me some energy price data during that time period ? > > your kind assistance will be highly appreciated and have a great day ! > > mulong > > > > > > > > > > >",0 +"Subject: option pricing discrepancy for j . c . penny transaction amitava and seksan have identified the source of the discrepancy between the option prices calculated by the credit - reserve model and the stand - alone spreadsheet model used in deal pricing . the discrepancy can be traced to differences in input variables of the two models and not to any algorithmic differences . the options being priced are a strip of options on monthly instruments . the credit reserve simulation program calculates the time to expiration by assuming that the option expires on first day of the contract month of the underlying contract , which is a very reasonable assumption . the stand - alone option pricing spreadsheet allows specification of the option expiration date independent of the contract month of the underlying . in the jc penney transaction , the monthly options were assumed to expire in the middle of the contract month , when in reality the underlying monthly contracts expire before the start of their respective contract months . the stand - alone spreadsheet model allows such specifications and it is up to the user to ascertain that the expiration dates entered are legal . at present , seksan is ascertaining that the option contracts involved are in deed monthly options and not a strip of daily options , in which case we would require estimates of intramonth volatilities for both the spreadsheet model and the credit reserve model . regards , rabi de",0 +"Subject: re : interview with rabi s . de on friday , august 11 , 2000 anita : i believe that zimin was the one that asked me to bring him in . maybe you can check with him as to whether there is anyone else he wants you to include . thanks ! anita dupont @ enron 07 / 31 / 2000 10 : 26 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : interview with rabi s . de on friday , august 11 , 2000 vince : shawn grady from hr staffing called me and asked me to schedule interviews with the people in research . he also mentioned that i should email you to find out if you want anyone from any other department to interview rabi . i am currently scheduling interviews with you , krishna , grant , stinson , zimin and vasant . is their anyone else in research that you want to interview him ? please get back to me and i will set up the appts . thanks . anita",0 +"Subject: re : b 2 b at enron tom , greg ' s phone number is 713 853 5220 . he is very difficult to reach ( frequent trips ) . you may find this information useful : greg is a west point graduate and spent a few years in the military , before obtaining an mba from stanford . he is a very dynamic person and a very pragmatic thinker . i hope you have a great holiday weekend . vince "" piazze , thomas "" on 06 / 29 / 2000 08 : 51 : 48 am to : "" ' vince j kaminski ' "" cc : "" gerrity , thomas "" , "" lohse , gerald lee "" , "" wind , yoram "" , "" harker , patrick "" , "" amit , raffi "" , "" ' shankman , jeff ' "" , "" macmillan , ian "" subject : re : b 2 b at enron vince : thanks for this message and update on your recent actions to establish a closer research relationship between enron and wharton . we are anxious to work with your firm on many fronts and appreciate all that you and jeff shankman are doing to facilitate closure on a number of initiatives . the below article is very interesting and reinforces the entrepreneurial culture of enron ; it also points out one more reason why our faculty is so interested in collaborating with you and other executives as the company moves into this new space . i would like to call greg whalley after the 4 th of july weekend to establish contact and begin a dialogue regarding his interest in joining our efforts as a corporate partner . will you please provide me contact information ? please let me know if there is any additional information or material you will need prior to your meeting with jeff skilling . we are anxious to learn how he responds to your suggestions . thanks again for all that you are doing . hope you have a great 4 th of july ! ! tom > - - - - - original message - - - - - > from : vince j kaminski [ smtp : vince . j . kaminski @ enron . com ] > sent : wednesday , june 28 , 2000 9 : 53 am > to : piazzet @ wharton . upenn . edu > cc : vince j kaminski > subject : b 2 b at enron > > > > tom , > > i am sending you the information about our new b 2 b unit . > i have talked yesterday with greg whalley who is heading the new > unit about the e - commerce project at wharton and recommended that enron > join > this program . > > i have sent him this morning a copy of the materials you gave me . > > the meeting with jeff skilling has been pushed till the 2 nd half of july . > i talked to him briefly twice that jeff shankman and i want to discuss > with > him building a relationship with wharton . jeff shankman is , by the way , a > great > friend of > your institution . > > > vince > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > * * * * * * * * * * * * * * * * * * * * * * * * * * * > > companies & finance : the americas : enron sees bricks and > bytes mix reshaping energy market : purchase of mg > only a > start in > building b 2 b platforms , writes hillary durgin : > > > > > companies financial times ; 16 - jun - 2000 12 : 00 : 00 am ; > 604 > words > by hillary durgin > > if jeffrey skilling is right , > > enron ' s acquisition of mg is only the tip of the > iceberg . > enron ' s president and > chief operating officer is engineering a fundamental > strategy shift at the > houston energy company , aimed at making it a dominant > "" new > economy "" > player across various industrial markets . > > the dollars 446 m acquisition last month of mg , the > uk - based > metals trader , > is only the first of more than dollars lbn in > estimated new > investments the > company is targeting . it is seeking vehicles on which > to > build > business - to - business ( b 2 b ) platforms in sectors such > as > logistics , chemicals , > agricultural products and pulp & paper . > > mr skilling wants to take the business model the > company > developed in > natural gas and power and apply it to other wholesale > commodity markets . he > argues the electronic platforms it creates will not > only > become the principal > b 2 b sites for those sectors , but reshape those > industries . > > as an example , he points to enron ' s new e - commerce > platform , > enrononline , > which has changed the way the company does business > with its > customers > while significantly increasing sales . > > the company - the largest wholesale merchant of > natural gas > and power - saw > wholesale , physical deliveries of natural gas surge 53 > per > cent in the first > quarter . > > critics argue that enron ' s move away from its familiar > energy business into > new industries , where the learning curve is steep and > the > competition > entrenched , is risky . yet a number of industry > analysts > point out enron has > proved it understands markets and how to manage risks > while > becoming the > largest importer of coal in the uk , the largest trader > of > gas and power in the > us and grabbing an advantage in bandwidth . > > "" it ' s a prudent strategy , but it ' s got to be done in > an > orderly way , "" says ronald > barone , analyst with paine - webber in new york . "" what > they ' re > doing here is > what they ' ve been incredibly successful at doing , "" he > adds , > noting that enron > posted dollars 1 . 3 bn in earnings before interest and > taxes > ( ebit ) from its > wholesale energy and services business in 1999 , up 34 > per > cent from the > previous year . > > earnings from that division accounted for two - thirds > of the > company ' s overall > income before interest and taxes last year , and mr > barone > sees the unit ' s ebit > increasing 15 - 30 per cent annually over several years . > > as with gas and power and now broadband , where enron > is > standardising > contracts and creating a market in bandwidth , it wants > to > create markets by > entering as a physical player and providing merchant , > risk > management and > financial services over the internet . > > "" we will provide electronic commerce , but we will > provide > liquidity and we will > provide settlement , or fulfilment of that contract , "" > mr > skilling says . "" that is an > extremely powerful model . if you look at other b 2 b > sites , > they don ' t do that . "" > > mr skilling argues enron ' s e - commerce platform will > triumph > over the other , > bulletin board - type exchanges , where striking a deal > depends > on two parties > hooking up and working through uncertainties over > timing , > price , credit and > fulfilment . > > not everyone shares that view . some energy companies , > for > example , would > rather not do business with a competitor . bp amoco > recently > purchased a 3 > per cent stake in altra energy technologies , a > houston - > based , neutral > wholesale energy exchange . with koch industries and > american > electric > power , it also committed to carry out a fixed volume > of > transactions on the > site to lend it liquidity . > > just as in gas and power and now broadband and metals , > enron > believes it > needs networks of strategic physical assets . in > acquiring > mg , enron got a > stable of warehouses , lending it a strong physical > position . > > > "" it should provide ( mg ) with a more vibrant , more > active > physical spot market > in more markets in the world , "" says greg whalley , > chief > executive officer of > enron net works , the new division enron is launching > to > identify and enter > commodity markets . he argues that in metals and other > markets , enron will > deliver better pricing , price risk management > services , > cross - commodity > transactions and flexible transactions for a wider > range of > customers . > > mr skilling says there are significant rewards for > restructuring an industry . > > "" if you can take that platform , and you use the > capabilities > the bricks bring to > the table , e - commerce the industry and change the > structure , > you ' re selling for > more than a 50 multiple . "" > > copyright , the financial times limited >",0 +"Subject: a & a math majors vince , thank you so much for meeting with me friday morning about the research group . after leaving your office , i remembered an issue i have had with the analyst & associate program that might be of interest to you . during a texas a & m recruiting meeting , i learned that we have expanded our list of majors to include computer science . i wondered why math majors were not mentioned , and was told that there was not a business need for math majors . like liberal arts majors , they said math majors were only considered on a person by person basis . in my opinion , math majors have many of the same skills as finance majors , and can easily adjust to accounting rotations as well ( i did last summer , and finance majors in the program are forced to every year . ) i think that enron is missing out on many qualified candidates by limiting their recruitment effort . at texas a & m the career center asks companies for a list of majors they are targeting , and only allows those majors to sign up for interviews through the career center . i sent my resume to enron and asked to be included in the interview process on campus . however , many other math majors had not heard of enron or the other companies , and assumed that there was no place for a math major at a company like enron . many math majors want to continue their education , become teachers , or work for an actuarial firm . however , many are undecided . we are constantly told of the many business possibilities available to math majors by our teachers and staff , but many undergraduates are still not sure exactly what math majors can contribute in a business environment . by not mentioning math majors to the career center ( a very simple and inexpensive step ) , enron is losing out on a very talented pool of people . while it would be nice to get the math majors that knew about enron already , had thoroughly researched all companies and determined that math majors would fit perfectly , and went the extra step to send enron their resume outside the career center system , there are many qualified students who do not do this , and opt for other companies who did mention math majors . i called a manager in the a & a program to suggest that we consider at least mentioning math majors to the career centers . i realize that it may cost more to actively pursue them , talk to teachers , and attend math society events . however , i told her that including them at the career center would be very inexpensive for enron . she reiterated that they saw no business need for math majors , and that if more upper level people began requesting them , it would be considered . i searched for "" mathematics "" on the enron job website , and had a surprising number of results . i know that your group could use math majors as well . however , this still may be too small a number to merit a focus from the a & a recruiting department . i just wanted to bring it to your attention in case it was something that you felt should be changed . thanks , heather johnson x 53240",0 +"Subject: re : nikkei and pko - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : darren delage @ enron on 10 / 24 / 2000 02 : 30 pm ze 9 to : maureen raymond / hou / ect @ ect cc : subject : re : nikkei and pko this information has been most useful ! thank you maureen and please keep me informed of any changes in pko policy , as we are right at levels were everyone is watching for intervention .",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: weather and energy price data elena , please , prepare for mulong ng and power price series . we can use henry hub for ng , cinergy , cobb and pv for electricity . we can send him ng price right away . electricity prices are different : he has to obtain permission from ft ( megawatts daily ) . i shall cc you on my msg to him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 02 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - mulong wang on 04 / 15 / 2001 03 : 43 : 26 am to : vkamins @ ect . enron . com cc : richard macminn subject : weather and energy price data dear dr . kaminski : i am a phd candidate under the supervision of drs . richard macminn and patrick brockett . i am now working on my dissertation which is focused on the weather derivatives and credit derivatives . could you kindly please offer me some real weather data information about the price peak or plummet because of the weather conditions ? the past winter of 2000 was very cold nationwide , and there may be a significant price jump for natural gas or electricity . could you please offer me some energy price data during that time period ? your kind assistance will be highly appreciated and have a great day ! mulong",0 +"Subject: right of first refusal pricing lorrian and michel , the rofr option , which grants the shipper the right to lock in the transportation rate ( max rate ) for next a few years , is priced as a spread swaption . i priced two scenarios for you : the strip starts 1 ) nov . 1 - 00 and 2 ) nov . 1 - 01 . for the first one i assume that the shipper makes decision on oct . 31 , 00 ( 54 days to maturity ) and on oct . 31 , 01 ( 419 days to maturity ) for the second case . the second case has longer time to expiration , therefore larger option time value . see the attached spreadsheets for more detail . let me know if you have any questions . zimin",0 +"Subject: re : ebs var transaction policy i have two things biting me . first is time . i need to turn a draft for hannon and rice asap . so , the value of a deliberative approach to coming up with a v @ r policy will quickly evaporate if we take 2 weeks to study what the policy should say . second , i have a unique situation . our concept of v @ r is really unlike the rest of enron ' s today . what happens today is that network engineers unilaterally make decisions about deployment , configuration and other matters which effect the longs and shorts of our asset / contract portfolio that they view strictly from a network operating standpoint . a good example was a decision to move our primary terapop ( three large servers storing 165 gigabytes each ) from portland to la . the servers are already in place and purchased , so no capital was involved . but the decision has huge ramifications on the future la / new york and other bandwidth usage , and that cost money . now it could be that the la / new york cost is cheaper than the portland / new york cost , the whole point is no one knows . what our "" value - at - risk "" policy attempt to corral is these types of decisions and put them into the hands of the risk management group , where the decision will be made with at least some economic work behind it . i really see the ebs v @ r policy to be misnamed , since we don ' t really have the math done to calc v @ r . it really is a volumetric - based control policy that says you can ' t make network changes over xx amount of megabytes ( a storage measure ) or oc - 3 equivalents ( a bandwidth measure ) without risk management making or approving the decision . i do believe that with research ' s help , we can in time actually calculate the v @ r impact of such decisions . at that time , the policy should be modified to set metrics based on the v @ r calculations . so if you have an open enough mind to let us co - op your word for a minute , we need to start turning the minds of the network industry people into thinking about their decisions as having value effects . said directly , kevin hannon has given me authority to write a policy to move control over significant network changes from the field to the trading floor , and i am going to issue something now to effectuate that . . . . . . so . . . i really want your views on what we are doing , but thought you needed some flavor and an sense of the urgency . if you can weigh in , do so quickly . . . . . barry pearce 06 / 30 / 00 04 : 47 am to : john echols / enron communications @ enron communications , lou casari / enron communications @ enron communications cc : subject : re : ebs var transaction policy positive . . . . - - - - - forwarded by barry pearce / enron communications on 06 / 30 / 00 04 : 49 am - - - - - ted murphy @ ect 06 / 29 / 00 11 : 33 am to : barry pearce / enron communications @ enron communications @ enron cc : subject : re : ebs var transaction policy barry , conceptually , i see no reason that a process like this can not be implemented . in some way we have attempted to do so through the enron corp transaction approval process ( tap ) . i have forwarded to john a copy of this , along with the risk management policy . i ' ll let him share with you if ok ( i really don ' t want to act as the firm ' s in - house kinko ' s ! ! ) . we have taken the first step and done poorly on follow - up steps to create a very easy to follow process for anything other than direct funded capital . however , some process around a greater number of assets / deals is better than none . i agree that i have not seen a really good fully baked one implemented , but i think it is wrong not to try . the only concerns i have is that , given that we want to have "" standard "" metrics and approval processes around the firm , ebs creates a process / metric which is complementary to and integrates with processes / metrics that the other business units are subjected to . ted barry pearce @ enron communications 06 / 29 / 2000 09 : 09 am to : stinson gibner / hou / ect @ ect , dale surbey / lon / ect @ ect , ted murphy / hou / ect @ ect cc : lou casari / enron communications @ enron communications , john echols / enron communications @ enron communications , jim fallon / enron communications @ enron communications subject : ebs var transaction policy hey you guys , we are trying to implement a ' var transaction ' policy - and would like your opinion . this is going to be tough - because i ' m not sure we have implemented a similiar policy across any of our other ' books ' - that is - we looking to bring in all the accrual / operational assets as well as the mtm stuff ( lambdas ) . to have a real - live ' configuration ' of the system . if assets / routes / servers etc . . . are added - what is the impact on the ' value ' of the system and what it ' s worth . john has attached a draft below - for your review and thoughts . i can see how this works in a trading environment - when you actually know the var of your whole trading portfolio . however - i ' ve not seen this done with a mixture of mtm & accrual assets . add the spice of a ' operational system ' valuation - and this will be tough to quantify and model . step 1 - configure system and value it step 2 - calculate a var on this . we will need to do some work here ! step 3 - calculate the incremental var of new deals / amendements / reconfigs etc - tough . . . . see what you think ? b . john echols 06 / 28 / 00 05 : 41 pm to : jim fallon / enron communications @ enron communications , barry pearce / enron communications @ enron communications , lou casari / enron communications @ enron communications cc : subject : policies here is a first rough draft of a "" value @ risk "" transaction policy . i would like you to start looking at where we are going on the policy and get some early thinking going on limits for the v @ r . for example , should we effectively shut down all server relocations without approval , or allow some level of mb of storage to be moved around or reconfigured ? i need some commercial and industry realism for this . we may need rick paiste or your industry helpers ( marquardt , etc . to help us ) . barry , lou , i need your input .",0 +"Subject: research memo on mg var dear all : comments on this document should be directed to vince and / or me . regards , grant .",0 +"Subject: re : subscription renewal barbara , yes , i would like to renew the subscription . thanks for the reminder . vince barbara lee @ enron 08 / 04 / 2000 03 : 37 pm to : vince j kaminski / hou / ect @ ect cc : subject : subscription renewal esource august 4 , 2000 dear vince , this is to inform you that your subscription to operational risk is up for renewal . if you would like to renew please let me know and i will take care of it . the price for this publication . ? 1 year $ 795 . 00 ? 2 years ? 3 years if you should have any questions , please do not hesitate to call me at ext . 3 - 7928 . thank you for using esource . sincerely , barbara",0 +"Subject: confirmation of 3 / 20 9 a . m . meeting at kmv in san francisco dear mr . kaminski : thank you for your phone messages , confirming that you and mr . bill bradford will be meeting with mr . robert rudy ( managing director - head of client service ) this monday , march 20 th , from 9 a . m . - 12 p . m . we are looking forward to seeing you , and hopefully we ' ll even have some sunny weather for you . attached are the directions to our office . please be sure to note that our dress code is business casual , so please do not feel obligated to wear a suit and tie . > please let me know if you have any questions . sincerely , kristina j . wun marketing coordinator kmv llc 1620 montgomery street , suite 140 san francisco , california 94111 415 - 765 - 5988 ( direct line ) 415 - 296 - 9669 ( general line ) 415 - 296 - 9458 ( fax line ) wun @ kmv . com - directions to kmv . doc",0 +"Subject: re : wharton business plan competition christie , look fwd to the trip . shirley is sending you my itinerary . when are you flying back ? what about a dinner on tuesday ? vince from : christie patrick on 02 / 16 / 2001 10 : 10 am to : stamer @ wharton . upenn . edu , piazzet @ wharton . upenn . edu cc : vince j kaminski / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect subject : wharton business plan competition hi anne ! i ' ll be at wharton on tuesday the 20 th - - perhaps we can get together to discuss this sometime later in the afternoon . what does your schedule look like ? thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 16 / 2001 10 : 08 am - - - - - "" stamer , anne "" 01 / 26 / 2001 03 : 47 pm to : "" ' christie _ patrick @ enron . com ' "" cc : subject : wharton business plan competition dear christie : thank you for your voice mail . things are moving along nicely with the competition . phase ii deadline was today , so we hope to have some statistics in the next few weeks . i have attached the statistics from phase i , for your files . listed below are ways that enron could be involved , let me know in which ( or all ) of these enron would be interested in participating . * we want to start listing our sponsors , so it would be really good if we could get your logo . * also , does enron wish to be a judge in phase iii and the venture fair ( vf ) ? for phase iii , we would mail each judge about 3 full blown business plans to be ranked . we anticipate this taking no more than 1 afternoon * for the vf , we would need a judge to be present for the entire day . the vf is by invitation only and we anticipate about 350 students , venture capitalists , business entrepreneurs and faculty . the vf will be held in philadelphia on april 30 th . * at the vf we will provide an opportunity for our sponsors with a 6 foot table for exhibits or materials to hand out . we will need to know if you wish to use the exhibit space . * we plan on providing our 25 semi - finalist teams with one - on - one mentoring . if enron is interested , that would be about 1 / 2 or 1 day commitment . * there might be an opportunity for a workshop to the university community . would enron be interested in participating in something like this ? i look forward to working with you to make this year ' s bpc a success . thank you . sincerely , anne stamer > anne stamer wharton business plan competition wharton entrepreneurial programs the wharton school 419 vance hall , 3733 spruce street philadelphia , pa 19104 - 6374 215 - 746 - 6460 ( direct ) 215 - 898 - 4856 ( office ) 215 - 898 - 1299 ( fax ) stamer @ wharton . upenn . edu - phase ioverview . doc",0 +"Subject: prc review : list of key projects hi dale & vince , for your benefit i have compiled a shortlist of the main projects worked on over the past five months : 1 ) inflation curve modelling ( february and march ) 2 ) uk power monthly vol curve generator 3 ) nordic power monthly vol curve generator 4 ) energydesk . com models & support 5 ) compound options for uk power desk ( options to build power stations ) 6 ) continental power non - generic options ( using arbitrary trader - specified distributions ) 7 ) global products : non - generic options modelling and new commodity forward curve construction ( benzene fwd curve from naphtha ) 8 ) exotic options library upgrade / model test / bug fixes ( e . g . testing new / old asian models ) 9 ) continental gas volatility curve construction the best summary for this is in the attached presentation that i gave to the london and oslo staff recently . regards , anjam x 35383 presentation attached :",0 +"Subject: re : henwood query good talking with you this morning . by all means , talk to grant masson about who else is using the henwood model within enron . attached are the workbooks i mentioned . the "" details of jan and july . xls "" workbook contains the resulting listing from the query i gave you yesterday and you can see how the supply curve was created from that . the supply curve becomes nonsense at points for reasons i believe are related to reliability commitment constrants , instead of pure economic dispatch , and to the aggregate reporting problem i described in my note yesterday . the workbook "" supply curve . xls "" has the simplistic , average supply curve i mentioned , constructed from fuel and vom costs . depending on the question you are trying to answer , it may be an approach to consider . the henwood contacts i had in mind are : tao guo , phd , senior "" algorithmist "" ( 916 - 569 - 0985 ) * the one i was thinking of wenxiong huang , phd senior project consultant ( 916 - 569 - 0985 ) ajit kulkarni , phd , software product manager ( 916 - 569 - 0985 ) * more a trainer , but sharp cosimo coscia , senior consultant ( south australia ) 618 - 8357 - 1244 * very resourceful wade schauer , staff consultant , ( 916 - 569 - 0985 ) * best for questions about emss per se all have emails , of course . template : tguo @ hesinet . com also , if you can not get satisfaction , contact eric toolson , vp ( 916 - 569 - 0985 ) . he has a laconic style , but is very focused on customer satisfaction and retention . and he has the pull to make things happen . regards , michael > > > karolina potter / lon / ect @ enron 08 / 24 / 00 07 : 08 am > > > michael , i am an analyst in paul mead ' s continental power trading group in london . i am currently working on the project , which requires the use of emss , and experience some difficulties interpreting the output results . steven leppard from our research group gave me your name as an expert in this system and consequently the person to contact in case of problems . i have been running simulations for the dutch market and was asked to provide the traders with some front - end screen graphs in order to interpret the numerical results . one of the graphs is to show an hourly generation stack and system ' s marginal cost , as we only run cost based scenarios . to sort each station ' s hourly generation i need its marginal cost . to my knowledge though , marginal cost is only generated for a systems marginal unit ( transarea marginal units query , marg _ cost unit ) . therefore i was sorting the stations according to the cost which i calculated based on the outputs from station detail by hour query . the calculation was as follows : for each hour , for each generating station : "" marginal cost "" [ o / mwh ] = ( generation _ cost [ oo 00 ] * 1000 ) / generation [ mwh ] - vom _ cost [ o / mwh ] this i thought would include fuel cost and start up costs . however , a marginal station which i get on the stack as a result of the above calculation is not a station given in marginal station field in transarea marginal units query . i have also looked into transarea _ data _ hr table and transarea _ data table but non of the costs there match my results . do you happen to know what formula is used to determine marg _ cost and which outputs i should be using to obtain the right results ? it might be easier if we could discuss this issue on the phone . in this case could you please send me your direct telephone number . i am struggling understanding what is going on and would appreciate your help very much . regards karolina",0 +"Subject: re : background information vince : i will send to you later today the information you requested in electronic form ; in the meantime , please discuss with jeff shankman . he just alerted me that he has procured the required funding and that jeff skilling has agreed to enron joining the webi at the corporate partner level . i am to call jeff shankman later today to discuss . this is great news for the school and enron ! ! would not have been possible without your persistance and assistance and i thank you for it . we will discuss more later . tom - - - - - original message - - - - - from : vince . j . kaminski @ enron . com sent : tuesday , november 07 , 2000 6 : 23 pm to : piazzet @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com subject : re : background information tom , electronic version is ok . vince "" piazze , thomas "" on 11 / 07 / 2000 10 : 25 : 45 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : background information vince : i will be happy to do so . do you wish to have it in hard copy or electronically ? if in hard copy , how many copies ? tom - - - - - original message - - - - - from : vince . j . kaminski @ enron . com sent : monday , november 06 , 2000 6 : 00 pm to : piazzet @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com subject : background information tom , can you send me additional copies of the information about the webi program ? i want to distribute it internally . vince",0 +"Subject: re : new computer jarod : can you help her with the sun equipment ? shirley : what type equipment are you requesting for the other users thanks lyn shirley crenshaw 01 / 17 / 2000 03 : 43 pm to : lyn malina / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron subject : new computer hi lyn : i have not received an answer for the below request for another sun computer . did you get it ? we also need to order another regular computer like the others that have been supplied to the research group . it will be for tanya tamarchenko and her location on the 19 th floor is eb 1940 . tanya has two offices and does not have a computer in her office on the 19 th floor . co # 0011 - rc # 100038 thanks ! shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 17 / 2000 03 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 01 / 12 / 2000 11 : 14 am to : lyn malina / hou / ect @ ect cc : subject : sun computer hi lyn ; the research group is in need of another sun computer to be located at ebl 951 . please let me know that eta . co . # 0011 - rc # 100038 thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 12 / 2000 11 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 01 / 07 / 2000 01 : 49 pm to : lyn malina / hou / ect @ ect cc : william smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect , alex huang / corp / enron @ enron subject : new pc hi lyn : alex huang has requested a new pc and vince kaminski has ok ' d it . please order the computer as listed below in alex ' s request . thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000 01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 07 / 2000 12 : 12 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex huang / corp / enron @ enron subject : new pc shirley , ok . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000 12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - alex huang @ enron 01 / 07 / 2000 08 : 28 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : new pc hi shirley , i would like to request for a new pc . my current pc is quite old with not enough memory . twice i ran out of memory and had to have it people coming to clean it for me . their suggestion is to either get a new hard drive or a new pc . given that dell has pentiumc iii processor at 800 mhz on market , i would like to request a pc with process at 500 mhz or higher level . thank you very much . best , alex",0 +"Subject: reschedule - iv amit bartarya first floor sel 002 ( 21 feb 16 : 00 gmt ) interview schedule 16 . 00 - 16 . 30 vince kaminski & anjam ahmad 16 . 30 - 17 . 00 ben parsons 17 . 00 - 17 . 30 stephen leppard",0 +"Subject: hea sporting clays tourney - august 15 , 2000 this member favorite is just a few weeks away , and there ' s still time for you to register and be eligible for the private drawing for a remington 1187 ! just send in your form and payment by august 1 , and remember you must be present to win ! the sporting clays committee and hea want to thank this year ' s sponsors to date and encourage other companies to participate if possible . if you ' d like to join this elite list , contact jim cody ( 713 / 230 - 3550 ) , t . kemp jones ( 713 / 207 - 5189 ) or jeff eatherton ( 713 / 529 - 5247 ) . duke field services ; coral energy / tejas energy ; sanchez oil el paso field services ; reliant energy gas transmission ; reliant energy field services ; mitchell gas services ; coastal field services ; and reliant energy pipeline services . the continued success of this tournament through the enhanced quality of the prizes , dinner and services are made affordable only through your contributions and we appreciate your support ! other door prizes this year include a browning citori and several other guns ! all prizes will be awarded during dinner in the air conditioned pavilion . the two man flush will be shot from a newly covered deck , and other areas on the courses have been covered as well . so visit the website , www . houstonenergy . org , and fill out a registration form under "" next event "" . that ' s august 15 at the american shooting centers ( 16500 westheimer parkway ) , and choose between 50 and 100 targets . even non - shooters can come out , eat dinner , have some drinks and possibly win a door prize and have lots of fun . if you have other questions , contact eva pollard at 713 / 651 - 0551 . this message was sent by : teresa knight , executive director houston energy association ( hea ) phone : ( 713 ) 651 - 0551 fax : ( 713 ) 659 - 6424 tknight @ houstonenergy . org if you would like to have your email address removed from our mailing list , please click the link below to the hea home page , where you will find a mini - form to remove your name automatically . http : / / www . houstonenergy . org /",0 +"Subject: re : chase chris , we don ' t have yet any report on broadband that might help you , developed internally by my group . we are working on a tutorial and we shall send you a copy when it ' s ready . the person who can give you an introduction to this market is ravi thuraisingham . vince chris holmes @ ees 04 / 05 / 2000 09 : 55 pm sent by : chris holmes @ ees to : vince j kaminski / hou / ect @ ect cc : subject : chase vince : i am working now in ees as the chase national account manager and am developing new products to sell chase . one of the products i am working on integrates the provision of broad band with a package of computer hardware and software for a company ' s employees . i can explain more if you are interested . i understand you put together a report on broadband which has helped educate people as to the technology and economics . can i get a copy ? . also do you have any analyses on chase that might help me detect other opportunities ? is there anyone on your staff with whom i should talk ? thanks chris",0 +"Subject: re : interview schedule for punit rawal shirley : i have been in touch with punit over the past several week , and it appears that february 2 nd would suit his schedule best for the visit . how does that date look for vince and the others in the group who will be interviewing him ? stephanie cody , my new admin whom you met last week , will be contacting punit to make his travel arrangements . molly shirley crenshaw 01 / 16 / 2001 09 : 24 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kevin kindall / corp / enron @ enron , bob lee / na / enron @ enron subject : interview schedule for punit rawal hi molly : punit rawal is a carnegie mellon student that kevin kindall and bob lee interviewed back in december . we would like to bring him in for an interview . he is definately a "" trading support "" prospect . i forwarded his resume to john lavorato back in december and inquired as to whether he would be interested in interviewing him or not , but have had no response , except that he has not had a chance to look at his resume yet . vince originally said that either john or gary hickerson might be interested . i did not send his resume to gary , maybe you can check with him ? i am attaching the interview request form and his resume . thanks ! shirley - punit + rawal + newresume . doc",0 +"Subject: anshuman neil , i would like to apologize for the confusion regarding anshuman . we have floated a number of possible scenarios regarding his trip to houston and there was a lot of confusion regarding the terms ( given that i was talking to sandeep every few days ) . currently , we expect anshuman to come to houston for one month to work on the dpc project ( at jeff shankman ' s request ) . the lawyers advised me that we need an ll visa for him , irrespective of the duration of his stay . sorry for the confusion . vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: followup - - - - - - - - - - - - - - - - - - - - - - forwarded by patricia tlapek / hou / ect on 06 / 12 / 2000 03 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - barcharts @ aol . com on 06 / 09 / 2000 10 : 01 : 59 am to : patricia . tlapek @ enron . com , mike . roberts @ enron . com cc : subject : followup good morning , i enjoyed visiting you yesterday afternoon to discuss the opportunity at enron . sounds exciting , challenging and a good use of a lot of my skills and experience . i look forward to further talks , hopefully this coming week . i mentioned a couple web sites and don ' t know if they came through clearly on the phone with my sore throat . the neural network approach to timing can be found at http : / / www . pfr . com / ptonline / the introductory piece on technical analysis i wrote for forbes . com and the glossary can be found at htttp : / / www . forbes . com / tool / html / 00 / jun / 0603 / feat . htm i am also working with long time friend and neighbor steve nison with his site and you can see the first on line lesson for free at http : / / www . candlecharts . com / have a nice weekend . hope to hear from you next week . bruce m . kamich , cmt barcharts @ aol . com 732 - 463 - 8438",0 +"Subject: hello shirley , can you , please , call him and ask what would be best timing . the last week of july would be best . i would like grant , alex , zimin , krishna and stinson to meet him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 29 / 2000 08 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shijie deng on 06 / 29 / 2000 12 : 00 : 37 am to : vkamins @ enron . com cc : subject : hello hi vince , how are you . it was really a pleasure meeting you and talking to you at the toronto energy derivative conference . thank you for speaking with me about the possibility of visiting your research group . it will be great if i could have such opportunity whenever you see your schedule fits . i am very much open for the last week of july and early august . i ' m looking forward to hearing from you soon . best , shijie shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng",0 +"Subject: re : corporate allocation from enron research group i discussed the numbers with vince and we have the sign off from him . so , vera and shirley , you can go ahead to execute the adjustment . thanks , krishna . kimberly watson @ enron 12 / 06 / 2000 02 : 07 pm to : pinnamaneni krishnarao / hou / ect @ ect , vera apodaca / et & s / enron @ enron cc : subject : corporate allocation from enron research group krishna , attached is a spreadsheet with the figures we discussed earlier . for july - dec , ets will keep half of the amount allocated ( equivalent to 1 . 5 employees , $ 135 . 6 ) from the corporate allocations to ets . if this looks ok to you , i would like to have vera work with shirley to handle the accounting adjustment similar to mid year . many thanks , kim . vera , here is the year 2000 spreadsheet . as you will see , we will need to work with shirley crenshaw ( x 35290 ) with enron research group to coordinate a similar accounting adjustment to the one we made mid year . i will send the year 2001 budgeted spreadsheet to you in the next few days ( just in case it changes with the approval of the science workorder ) . please call me if you have any questions about this spreadsheet . thanks , kim .",0 +"Subject: west power model lance and i spoke with tim heizenrader regarding modeling work and needs for the west desk . the differences in the markets between east and west are , in tim ' s opinion , sufficient that he does not need an approach as sophisticated as the one we are pursuing for ercot . in particular , the termal limits for which load flows are so useful are not generally binding in the west . loop flows are also not considered a major issue at present . in summary , it seems that the west is an unlikely customer of any extension to an ercot / east transmission model for the time being . they have also done little in this area that would directly relate to our efforts here . martin",0 +"Subject: fw : memo : re : your work phone number hi , i am forwarding an email from a former bnp paribas colleague of mine who now works at hsbc . can you please advise ? thanks , iris - - - - - original message - - - - - from : antonella . saulle @ hsbcib . com @ enron [ mailto : imceanotes - antonella + 2 esaulle + 40 hsbcib + 2 ecom + 40 enron @ enron . com ] sent : tuesday , may 22 , 2001 1 : 30 am to : mack , iris subject : memo : re : your work phone number iris i would like you to put me in contact with s / one at enron here in london that deals with weather derivatives and would be in a position to sell us options on weather derivatives ( temperature , cat ) . let me know if you are able to do that or if i need to work internally here in order to find out whom we have contacts with at enron . if you want to call me my direct line is + 44 207 336 - 2836 . alternatively i could call you but do bear in mind that i leave the office around 6 : 30 - 7 pm london time . send me an email and let me know when is a good time to talk and i will call you back . thanks in advance . antonella this transmission has been issued by a member of the hsbc group ( "" hsbc "" ) for the information of the addressee only and should not be reproduced and / or distributed to any other person . each page attached hereto must be read in conjunction with any disclaimer which forms part of it . unless otherwise stated , this transmission is neither an offer nor the solicitation of an offer to sell or purchase any investment . its contents are based on information obtained from sources believed to be reliable but hsbc makes no representation and accepts no responsibility or liability as to its completeness or accuracy .",0 +"Subject: computer hello again , the computer i mentioned earlier will remain at the location eb 3239 d however , it belongs to us , i got with chris and it is not really in his way at this point . fyi - computer # 002813 monitor # 202803 kevin moore",0 +"Subject: re : dale nesbitt meeting tues margaret , i shall invite hunter shiveley . i think it will cover ena . vince margaret carson @ enron 11 / 02 / 2000 09 : 57 am to : vince j kaminski / hou / ect @ ect cc : james d steffes / na / enron @ enron subject : dale nesbitt meeting tues vince do you plan on inviting anyone from the power issues side - - perhaps ben jacoby , julie gomez , jean mrha , scott neal to this meeting ? thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 11 / 02 / 2000 09 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : john goodpasture 11 / 01 / 2000 05 : 53 pm to : vince j kaminski / hou / ect @ ect , margaret carson / corp / enron @ enron , mike mcgowan / et & s / enron @ enron , dave neubauer / et & s / enron @ enron , robert hill / npng / enron @ enron , shelley corman / et & s / enron @ enron cc : danny mccarty / lon / ect @ ect , bill cordes / et & s / enron @ enron , michael moran / et & s / enron @ enron , rod hayslett / fgt / enron @ enron subject : dale nesbitt meeting margaret carson is going to join us in the meeting next week with nesbitt . vince will check with ena to see if they also want to attend . i would also like to determine if ets and / or nbp would want to send a representative ( s ) , although margaret said she would take copious notes for distribution to other key players as necessary . we should ask nesbitt how he would structure a deal for multiple clients ( eg . ets , nbp , ena , and maybe el paso ) . [ we need to remain aware of any "" affiliate "" issues that may result , and make certain that we are in complete compliance with the regs . ] i will wait until after our meeting with nesbitt before deciding if / how to approach el paso . presumably , if asked to particpate , they would share the cost and have independent access to any working model that is developed . jng - - - - - - - - - - - - - - - - - - - - - - forwarded by john goodpasture / ots / enron on 11 / 01 / 2000 04 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 10 / 30 / 2000 04 : 42 pm to : john goodpasture / ots / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : dale nesbitt john , i talked to dale nesbitt . he suggested that the best way to evaluate his model is to go through a one week intensive project with assistance of somebody from his company . our cost is a flat fee of $ 12 , 500 that would be deducted from the purchase price of $ 55 , 000 , in case we buy the software package . the price of 55 k is indicative and will be adjusted based on the required level of support . dale will be in houston next week . i have tentatively invited him to visit with us on tuesday , november 7 , at 3 : 00 p . m . he will adjust if you are busy at this time . please , let me know what you think . vince",0 +"Subject: re : test vince : candice ' s contact information at mount holyoke is as follows : phone : ( 413 ) 493 - 5092 email : cgkao @ mtholyoke . edu address : 1453 blanchard campus center mount holyoke college south hadley , ma 01075 - 6002 ed ps : i hope ron singer has given you the needed info . please feel free to contact me if i can be of any help with regard to your colleague ' s inquiry about pursuing doctoral study at uh .",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 campos , hector o peyton s gibner nov 06 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 gandy , kristin h celeste c roberts nov 01 , 2000 gorny , vladimir theodore r murphy ii nov 02 , 2000 hewitt , kirstee l steven leppard nov 06 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 leppard , steven dale surbey nov 06 , 2000 patrick , christie a steven j kean nov 09 , 2000 pham , bich anh t sarah brown nov 06 , 2000 raymond , maureen j wincenty j kaminski nov 02 , 2000 rosen , michael b christie a patrick nov 06 , 2000 sun , li kevin kindall nov 09 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 tawney , mark r jeffrey a shankman oct 26 , 2000 thuraisingham , ravi paul h racicot jr nov 12 , 2000 williams , matthew steven leppard nov 08 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: re : vacation shirley , no problem . vince shirley crenshaw 03 / 08 / 2000 03 : 56 pm to : vince j kaminski / hou / ect @ ect cc : kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron subject : vacation vince : i would like to take the following days as vacation : wednesday , march 15 th friday , march 31 st . please let me know if this is ok with you . thanks ! shirley",0 +"Subject: vince kaminski vince : did you get the below email from jim garven ? would you be able to stay over and speak at the risk management fraternity and perhaps come in a day early and speak to his students ? shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 05 / 2000 02 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jim garven on 12 / 05 / 2000 02 : 09 : 27 pm to : "" shirley crenshaw "" cc : subject : vince kaminski dear ms . crenshaw , on november 28 , i sent vince kaminski an email inviting him to visit baylor university ( where i now hold an appointment as professor of finance having resigned from lsu this pas spring ) . ? i have yet to receive a reply from him . ? can you bring this email ( copied below ) to his attention ? thanks , jim garven = = = = = = = = = = = = = = = = = = = = = = = = = = = dear vince , since we last corresponded , i have left lsu and am now professor of finance & insurance at baylor university in waco , tx . my colleague at baylor , john martin , mentioned that you will be coming to campus for a conference on friday , february 23 that he is organizing . i am curious whether your schedule might permit staying over that evening so that we can feature you as our dinner speaker for the chartering ceremony of gamma iota sigma , a national risk management fraternity . for that matter , would you also possibly be available to make any presentations to undergraduate and graduate students on the previous day ( thursday , february 22 ) ? what i have in mind is a presentation similar to the presentations you made last spring to my lsu classes . thank you for your consideration of this request . i am looking forward to seeing you once again . sincerely , jim garven james r . garven , ph . d . professor of finance & insurance department of finance , insurance and real estate hankamer school of business hsb 336 baylor university box 98004 waco , tx ? 76798 voice : ( 254 ) 710 - 6207 fax : ( 603 ) 994 - 6680 e - mail : ? james _ garven @ baylor . edu home page : http : / / garven . baylor . edu vita : http : / / garven . baylor . edu / dossier . html research paper archive : http : / / garven . baylor . edu / research . html ",0 +"Subject: re : corn subsidy govt program analysis vasant , thanks . let ' s contact wharton next week . vince from : vasant shanbhogue / enron @ enronxgate on 04 / 25 / 2001 10 : 15 am to : vince j kaminski / hou / ect @ ect cc : nelson neale / na / enron @ enron subject : corn subsidy govt program analysis hi vince , nelson and i had a meeting yesterday with the ag desk folks on how to go forward on the analysis and presentation for this program . the consensus from the ag side was that the choice of university will be highly politically driven , ie preferably the university should be from a state that has close ties to sympathetic senators or other political figures . also it is preferable if the university faculty have worked on ag issues before , lending more credibility in the ag community . the names that came up were mississippi state and texas a & m . nelson knows of a person at mississippi state who worked with the usda on risk management issues . the needed analysis itself is not necessarily very deep , and the focus is primarily to get a non - quantitative presentation out that outlines how enron can take on the downside risk of local crop prices ( enron probably needs to cover actual local prices and not simply an index because i do not think the govt will want to worry about basis risk ) . the pilot program itself will be very small , and lends itself to continuing down the path of short term trading rather than long term origination . another thought on hedging our potential short positon ( on the origination side ) is that the govt program can only provide a partial hedge to the extent of the premium received - - we still have unlimited downside from the short . vasant p . s . i am writing up jim bouillion ' s project suggestion as a potential project for wharton . of course , we may still ask wharton for their insights on the corn price protection approach .",0 +"Subject: re : introduction meeting : rac london quants and houston research hi vince , thanks for organizing the meetings , and a special thanks for organizing the reservations for the dinner . i am looking forward the visit to houston . rodrigo vince j kaminski 24 / 08 / 2000 20 : 25 to : rodrigo lamas / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : introduction meeting : rac london quants and houston research rodrigo , i think it is churrasco ' s , a south american restaurant . i shall make reservations for the 12 th . i shall also arrange the meetings on tuesday with different units of the research group . vince rodrigo lamas 08 / 24 / 2000 01 : 59 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : introduction meeting : rac london quants and houston research vince , thank you very much . i would rather talk to your group on sep the 12 th ( tuesday ) . i hope i will be entitled to disturb them again during the rest of the week as well . we can certainly go out for dinner . steven mentioned a brazilian restaurant he went to and i am looking forward going there . this in case you are not vegetarian . thanks again , rodrigo vince j kaminski 24 / 08 / 2000 19 : 54 to : rodrigo lamas / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : introduction meeting : rac london quants and houston research rodrigo , we shall be very glad to meet you . if you can dedicate one day to meeting the members of the research group i could arrange a series of meetings with different units . what about sep the 11 th or sep the 12 th ( monday or tuesday ) ? if you are free one evening we can have dinner together . vince rodrigo lamas 08 / 24 / 2000 11 : 01 am to : vince j kaminski / hou / ect @ ect cc : subject : introduction meeting : rac london quants and houston research vince , i work for the market risk rac london group . i review the quantitative issues arising from enron europe models . i am in this function given my background ( phd from imperial college - london ) and also due to my past experience as risk manager for a brazilian investment bank and louis dreyfus . my agenda includes the review of a number of deals ( wessex , tpl , eastern , . . . ) , as well as the review of the construction of european gas and power price curves and their respective volatility curves . currently i am devoting most of my time to the analysis of the uk gas market , its respective price curve and term structure of volatility . bjorn and david suggested it could be very productive if i had the chance to meet you and your team to discuss issues related to modelling prices and risk measurement tools . i will be in houston from the 10 th to 15 th september . i wonder if you could book some time for me in your agenda and also ask some members of your team to do the same . thanks , rodrigo",0 +"Subject: reviewer approval please note that your employees have suggested the following people to complete a feedback form on their behalf . you will need to access the performance management system ( pep ) to either approve or decline these suggested reviewers . once you have approved the suggested reviewers they will be notified and can begin completing the feedback form . your list of employees that have suggested reviewers are listed below : date suggested : may 19 , 2000 feedback due date : jun 16 , 2000 employee name : kollaros , alexios",0 +"Subject: to basak vince , please find attached a small note i had prepared at wade ' s request . the note is to be used for a private meeting of the ex - chairman of mseb with the governor of maharashtra . in the indian system , the governor represents the federal government in the state . hence any information he gathers is for the central govt . this informal note is to be passed to him . the focus as you will see is to see if we can engage the central govt . through this route . krishna is here and sends his regards . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 16 / 2001 08 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli 01 / 16 / 2001 08 : 51 am to : wade cline / enron _ development @ enron _ development cc : subject : to basak wade , please find the note attached for mr . basak . the tariff data is all from the information sheet put out by mohan , so you should have no conflicts . i have tried to give it the appropriate spin . let me know if there is something you would like to do differently on this . regards , sandeep .",0 +"Subject: ferc ' s soft price caps : what do they mean ? - cera conference call notification * * * please accept our apologies if you have received this message already * * * we have been experiencing some technical difficulties , and you may have already received this message last week . ? we apologize for any inconvenience this may have caused . - cera webmaster title : ferc ' s soft price caps : what do they mean ? url : 0 . html or 0 . html topic : ferc ' s price caps : what do they mean ? * objectives and methodology outlined by ferc in these orders * implications of this form of price cap on competitive power markets * ferc ' s application of other price cap methodologies in other regions format our speakers will address this topic for 30 minutes , with accompanying graphics presented on the internet , followed by an open question and answer period . speakers john athas , cera associate director , north american electric power mike zenker , cera director , western energy time 4 : 00 p . m . eastern , tuesday , april 10 , 2001 eligibility clients eligible to participate in this conference call are those who subscribe to the cera north american electric power retainer advisory service or the western energy retainer advisory service . to enroll to enroll , please send a fax to kari paakaula at ( 617 ) 497 - 0423 or send an e - mail to kpaakaula @ cera . com before 4 : 00 p . m . , monday , april 9 , 2001 . please include your name , company , and telephone number with your correspondence . to participate to participate in the audio portion of the call , please call in on one of the following numbers approximately 10 - 15 minutes before the call : within the united states : 1 - 800 - 946 - 0713 outside the united states : ( 719 ) 457 - 2642 confirmation code : 713248 title of the call : cera power call to participate in the internet portion of the call ( audio is by telephone ) , log on to the internet approximately 15 - 30 minutes before the presentation to ensure technological compatibility . 1 . point your browser to http : / / www . placeware . com / cc / visioncastconferencing 2 . enter the following information , then click "" attend "" : * your name * meeting id : w 713248 * meeting key : 713838 3 . access audio for the meeting using the audio information above . system requirements and suggestions * internet connection not reliant on the phone line you will use for the call . * a java - enabled browser , such as microsoft internet explorer 3 . 02 or higher ; netscape navigator 3 . 02 or higher ; or sun hot java ( tm ) * close all desktop applications and disable your screen saver to ensure computer compatibility , complete the internet instructions before the day of the call . a message will appear telling you that your meeting is not ready to start . however , it also informs you about any action that you may need to take to prepare your computer to participate . technical assistance if you experience difficulties during the call , you may signal for technical assistance by pressing * 0 ( star , zero ) on your telephone keypad , once connected to the audio portion of the conference . for more information , please contact kari paakaula via e - mail at kpaakaula @ cera . com or via telephone at ( 617 ) 441 - 1362 . a recording of this call will be available until may 10 , 2001 . to access this recording , please call 1 - 888 - 203 - 1112 ( within the united states ) or 719 ) 457 - 0820 ( outside the united states ) . please use confirmation number 713248 to access the call . * * end * * e - mail category : conference call notification ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? cera knowledge area ( s ) : north american power , western energy , cera ' s spring 2001 roundtable event dates and agendas are now available at http : / / www 20 . cera . com / event to make changes to your cera . com profile go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2001 . cambridge energy research associates",0 +"Subject: carnegie mellon speech following are the reservations for the speech on friday november 3 : hotel : westin william penn hotel ( 412 ) 281 - 7100 conf . : kristin - 401220 vince - 401221 any questions , call me . alyse",0 +"Subject: re : test tom , the conference in new york is held on may 18 and may 19 . i can visit wharton the day before . vince kaminski "" piazze , thomas "" on 04 / 05 / 2000 08 : 40 : 55 am to : "" ' vince j kaminski ' "" cc : subject : re : test vince : i enjoyed talking with you yesterday and look forward to receiving information relative to your visit to campus . tom piazze > - - - - - original message - - - - - > from : vince j kaminski [ smtp : vince . j . kaminski @ enron . com ] > sent : tuesday , april 04 , 2000 4 : 52 pm > to : piazzet @ wharton . upenn . edu > subject : test > > > > test >",0 +"Subject: 3 - urgent - to prevent loss of information critical migration information : 1 . your scheduled outlook migration date is the evening of : may 7 th 2 . you need to press the "" save my data "" button ( only once ) to send us your pre - migration information . 3 . you must be connected to the network before you press the button . 4 . if a pop - up box appears , prompting you to "" abort , cancel or trust signer "" please select trust signer . 5 . any information you add to your personal address book , journal or calendar after you click on the button will need to be manually re - added into outlook after you have been migrated . 6 . clicking this button does not complete your migration to outlook . your migration will be completed the evening of your migration date . failure to click on the button means you will not get your calendar , contacts , journal and todo information imported into outlook the day of your migration and could result in up to a 2 week delay to restore this information . if you encounter any errors please contact the resolution center @ 713 - 853 - 1411",0 +"Subject: re : spring 2001 schematic kathy , what is embanet ? do i have access from the outside ? vince kaminski kathy spradling on 01 / 11 / 2001 11 : 01 : 48 am to : ( recipient list suppressed ) cc : cmiller @ rice . edu , castro @ rice . edu , spradlin @ rice . edu subject : spring 2001 schematic spring 2001 faculty , the spring 2001 schematic has been posted to embanet . to access the schematic please open the jgsm area icon on the embanet desktop . next please open the announcement jgsm icon . you will find the spring 2001 schematic located under the subject column . please open the document . if you do not have access to embanet you will need to speak with david kilgore at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 . thanks , kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: re : pricing credit on thousands of names we can continue the discussion in tuesday ' s conference call , but i discussed with ben about the issues below , and here are some thoughts . this is not a complete approach , but only a starting point for discussion . the main task is to build a pricing system for many names . this has two components - - - 1 ) how to price a single name ? 1 . 1 ) how to price a liquid single name ? 1 . 2 ) how to price an illiquid single name ? 2 ) how to efficiently apply the methodology to multiple names ? the approach i would take for 1 . 1 is a ) define a small set of liquid names b ) apply each of the different models we have , say , the six models ben has mentioned below , to these names c ) include market prices , if any , for these names d ) sit with traders , get trader ' s intuition on where each liquid name should price and note this on the spectrum of prices obtained in ( b ) and ( c ) e ) try to determine attributes of the names that may explain the dispersion of the trader prices across the models f ) quantify these attributes , if possible g ) try a different set of liquid names and repeat the process , and see if the decisions in the last round still make sense the approach for 1 . 2 may be a ) define a small set of illiquid names b ) apply each of the different models we have to these names c ) sit with traders , get trader ' s intuition on where each illiquid name should price and note this on the spectrum of prices obtained in ( b ) d ) try to determine attributes of the names that may explain the dispersion of the trader prices across the models e ) check if these are similar to the attributes identified for liquid names f ) define a master set of liquid names g ) look for relationships ( by analyzing cross - section of data ) between attributes or prices of illiquid names to those of liquid names once a mapping has been defined for an illiquid name to a set of liquid names and their attributes , then this mapping can be entered into a table , and the pricing can be automated for all names ( in theory ) ! the success will depend on the success of the round - table sessions for the approaches for 1 . 1 and 1 . 2 . building a new fundamental model is always a worthwhile task , but we can get going with the above approaches immediately in parallel with developing any new models that we may build . new models can be added to the suite of existing models . i do not believe there will ever be a single model that will answer all questions for all names , but rather we can refine the mappings and relative choices among models over time , which would mean continuing round - table sessions with traders . limited data makes calibration very hard , so i would continually ask the question "" what do we calibrate ? "" throughout the discussions for 1 . 1 and 1 . 2 , and this may help guide us to new models . vasant benjamin parsons 06 / 19 / 2000 04 : 11 am to : ect london credit trading cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , amitava dhar / corp / enron @ enron , steven leppard / lon / ect @ ect , grant masson / hou / ect @ ect , dale surbey / lon / ect @ ect , david a wall / risk mgmt / lon / ect @ ect , jitendra j patel / lon / ect @ ect , oliver gaylard / lon / ect @ ect subject : pricing credit on thousands of names all - our challenge for the next few months is to build an automated system to provide differential pricing on thousands of credits [ 5 , 000 by year - end ] . most of these credits will be illiquid in terms of market price information , making the challenge harder , and the end result more important in terms of competitive pricing advantage . what we need is an overall strategy for how we plan to achieve this from the quantitative perspective . currently we have several models for credit pricing either in use or under development : fmc model ( default probability approach ) . using bloomberg ' s fair market ( par yield ) curves , probabilities are generated from the risky - libor , then default / bankruptcy swap prices computed using expectation methodology . fmc model ( credit spread approach ) . using the fmcs , then directly taking the libor credit spread at each tenor , adjusting for basis and compounding differences . bond model ( fmc approach ) . taking the fmcs as benchmark curves , the model regresses the input bonds ( specific to a name ) on the two best fitting benchmarks . the result is a zero yield curve with the same shape as the fmcs , but with the level tweaked for the specific issuer . prices are then generated using both spread and probability approaches . under testing . bond model ( spline approach ) . taking only the bonds specific to an issuer , the model fits an exponential cubic spline to the zero - coupon price curve , then builds a zero yield curve from this . under testing . market prices . for certain liquid names , or sectors / ratings , cds market prices are used , then recovery and event discount used to get bankruptcy swap prices . kmv . using expected default frequencies ( edfs ) from the kmv model and database , we will build a model to price default swaps , making appropriate risk adjustments . kmv is being installed now , so model will be worked on next . each of these models returns a price ( credit default and bankruptcy ) , and the accuracy of the price depends on many factors - liquidity and regulatory differences between bond and cds markets , recovery assumptions , risk premia , capital charges , etc . the aim will be to accurately price as many liquid names as possible , based upon these models , then use these prices , alongside other financial information , as the backbone to a full automated pricing system . our inputs to the proposed pricing system for a specific name are model and market prices for all issuers , alongside name - specific ' soft ' data from credit reports and financial statements . if the credit is liquid enough , a price will be generated from their own information only . otherwise , the credit will be mapped onto a subset of liquid credits , with financial information and historical price movements providing the mapping and weights . the model price will then be periodically adjusted to align itself with market ( or trader ) prices , and this adjustment will feed back into the weighting and mapping composition . in loose terms , we could think of the system price for an illiquid credit as being a weighted average of liquid market prices ( bonds , equities , default swaps ) , where the weightings are calibrated using credit analysis , financial ratios , etc . the key steps to implementing such a system will be : establishing what exactly we want to ' predict ' - is it a price , a rating , a probability , or a score ? we will need a clean market history to calibrate to , which we only really have for ratings . we will then need to develop a mapping from rating / score to price . getting and cleaning the historical financial and credit data required to calibrate the model . building the mechanics of the model , ie , the calibration methodology . neural nets / fuzzy logic seem the obvious candidates , but which exact methods and software packages to use ? determining an automated methodology for mapping names with limited information into the model . getting the "" true "" market price , in order to feed back an error . at present such a price exists for very few credits . allocating resources to the development . mckinsey claimed such a system would take 6 - 10 man - months to develop . further ideas or comments are requested , as we need to develop our strategy asap . the model description above is fairly vague , as we don ' t yet have the knowledge needed to fill in the specific details . further help will be especially required on this if we are to continue to move at ' internet speed ' . regards ben",0 +"Subject: re : summer internship ezequiel , i have forwarded your resume to our analyst / associate program with a request to accept you as summer intern . if the summer program is full , my group will hire you directly for the summer . vince ezequiel luis on 11 / 13 / 2000 04 : 23 : 23 pm to : vkamins @ enron . com cc : subject : summer internship dear mr . kaminski i am currently pursuing the m . s . in ieor at uc berkeley . i attended the speech you gave some weeks ago . i am interested in summer internship positions available in enron . you will find enclosed my resume . sincerely , ezequiel luis este mensaje fue enviado desde http : / / commcenter . infosel . com internet gratis http : / / www . terra . com . mx / terralibre - resume elm . doc",0 +"Subject: re : chase vince : thanks very much . i will call ravi chris vince j kaminski @ ect 04 / 12 / 2000 10 : 36 am to : chris holmes @ enron cc : subject : re : chase - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 12 / 2000 10 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 12 / 2000 10 : 11 am to : chris holmes / hou / ect @ ees cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : chase chris , we don ' t have yet any report on broadband that might help you , developed internally by my group . we are working on a tutorial and we shall send you a copy when it ' s ready . the person who can give you an introduction to this market is ravi thuraisingham . vince chris holmes @ ees 04 / 05 / 2000 09 : 55 pm sent by : chris holmes @ ees to : vince j kaminski / hou / ect @ ect cc : subject : chase vince : i am working now in ees as the chase national account manager and am developing new products to sell chase . one of the products i am working on integrates the provision of broad band with a package of computer hardware and software for a company ' s employees . i can explain more if you are interested . i understand you put together a report on broadband which has helped educate people as to the technology and economics . can i get a copy ? . also do you have any analyses on chase that might help me detect other opportunities ? is there anyone on your staff with whom i should talk ? thanks chris",0 +"Subject: rw : howard confirmation for vince hi vince - please examine . i think it ' s going to happen and you have confirmation below - need sleep it ' s 3 : 30 pst - i ' ll need 7 hours sleep and then i ' ll be up . . . add 2 more for time difference and i ' ll be available for you , at your service ( your time around ( 1 : 30 afternoon ) . i called rachel @ enron london - she said it is set up too . i am confident . thank you for the opportunity . jeff wesley 949 813 2241 hi howard , > please find following confirmation as promised . > > > date of interview : tuesday 30 january 2001 > > time of interview : 2 . 30 pm > > interviewers : 2 . 30 pm nigel price - credittrading > 3 . 00 pm ben parsons - research & trading > controls - senior specialist > 3 . 30 pm vasant shanbhogue research > group houston > > > address : 40 grosvenor place > london > swlx 7 en > > switchboard : 020 7783 - 0000 > > closest tube / train station : victoria > > > location map attached > ( see attached file : location map . pdf ) > > manager > robert walters > manager > risk & quantitative analysis * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: java for managers ! ! ! vince , durasoft ( who just taught the java class for our group ) offers a 3 - day short course in java for managers . details are below , if you are interested . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 16 / 2001 12 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" siva thiagarajan "" on 04 / 16 / 2001 11 : 25 : 50 am please respond to "" siva thiagarajan "" to : cc : subject : java for managers ! ! ! hi stinson , ? thanks for meeting with us on thursday . ? we enjoyed talking with you . ? as per our discussion , i have attached the course outline of java for managers along with this email . after our conversation with you we think this course may be a little bit heavy for your group . ? but we can definetly take it down to concepts level and make it appropriate for our audience . ? please review and let me know , if this course would be of value to you . ? this is a 3 day course and costs $ 11 , 000 ( maximum of 15 students ) . ? regards , ? - siva - oojavaformanagers . doc",0 +"Subject: re : wednesday lunch - credit group hi , everybody , get ready for our lunch meeting : this wednesday , april 19 , the "" new credit model development and testing team "" is going to go to vincent ' s restaurant . the address is 2701 w . dallas , the reservation is made for 11 : 30 a . m . see you there , tanya .",0 +"Subject: update on spring conference hello everyone , i wanted to get a message out to each of you to update you on the february 23 conference plans . the conference promises to provide an exciting opportunity to share the ideas of a diverse group of academic and industry professionals on a topic that is dear to all our hearts , the future of business education in the new economy . i will be sharing updates and information with you over the weeks to come but thought it might be useful to start before the holidays . i am attaching the most recent "" description of the program of events "" which remains somewhat fluid as we develop it . however , there are some new developments that you will find interesting . first , i have arranged for "" filming "" of the event by our local public tv station and we will be working toward the development of the best product possible out of the sessions . second , david palumbo ( human code - - an internet content provider - http : / / www . humancode . com / index 2 . htm - now owned by sapient ) will join us . david is very knowledgable about both educational issues ( he served on the faculty of the university of houston for 10 years before joining human code ) . he has some very interesting insights to offer on the future of higher education having now worked from the industry side of the equation ) . finally , i am currently reading a couple of books that you may find interesting ( telecosm and the new barbarian manifesto ) . i ' m sure there are many more interesting sources of information that you are each aware of and it would be helpful if we all began sharing our notes . finally , let me suggest that each of you begin thinking about the issue ( s ) that you feel most comfortable commenting upon and phrasing "" lead in "" questions for me . i would like to build a list of such questions to circulate among all so that we begin to get a feel for the range of topics we will encounter in the discussion and begin to formulate our individual opinions . i hope that this note finds you all anticipating a wonderful holiday season and thank you for participating in this inaugural "" think tank "" conference on the future of business education . sincerely yours , john - revised workshop - planning . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: color copier hello lyn , how are you ? certainly hope you enjoyed the holidays . i have not received the color printer as of yet . could you please provide me with information concerning this . thanks kevin moore",0 +"Subject: alliance info alert dear generation / power marketing executive : the following is this week ' s alliance express newsletter , and a special announcement regarding a proposed action by the financial accounting standards board ( fasb ) . fasb 133 fasb is considering an exception to statement of financial accounting standards ( sfas ) no . 133 that will exempt energy companies from the requirement to account for capacity contracts as derivatives . a vote against the exception would result in a significant increase in earnings volatility , and raises other important concerns for energy suppliers . ( attached is a summary of this issue . ) the board is expected to vote on this issue during may 2001 . eei will be taking steps to appraise fasb of our concerns . if you , or company cfo would like more information about this effort , please contact richard mcmahon , executive director of the alliance of energy suppliers , at rmcmahon @ eei . org , or at 202 - 508 - 5571 . alliance of energy suppliers express   april 25 , 2001 inside washington federal affairs * * * bill repealing puhca is approved by senate committee * * * the senate banking committee today approved s 206 , a bill that repeals the public utility holding company act of 1935 . the bill would repeal puhca and transfer oversight of public utility holding companies from the securities and exchange commission to the federal energy regulatory commission and appropriate state agencies . s . 206 was approved with two amendments . offered by sen . mike enzi ( r - wy ) , the first amendment would establish the electric energy market competition task force to study competition in the wholesale and retail market for electric energy in the united states . the task force would be made up of representatives of ferc , the department of justice and the federal trade commission , as well as non - voting representatives from the department of agriculture and the securities and exchange commission . the amendment also contained a provision , co - sponsored by sen . paul sarbanes ( d - md ) , that would preserve ferc ' s authority to require that energy rates are reasonable and do not include the pass - through of holding company costs that are unrelated to energy . another amendment , offered by sen . jon corzine ( d - nj ) , initiated a study by the general accounting office of the success of federal and state governments in preventing anticompetitive practices by public utility holding companies and in promoting competition and efficient energy markets . * * * institute   s tax agreement with public power again introduced on hill * * * the tax agreement eei reached with the american public power association ( appa ) and the large public power council ( lppc ) again has been introduced in the house . the bill ( hr 1459 ) contains the same provisions as were in a measure ( hr 4971 ) , with technical corrections , introduced during the 106 th congress . hr 1459 was introduced by rep . j . d . hayworth ( r - az ) and nine original co - sponsors from the ways and means committee . hr 1459 contains four key provisions with tax code changes : 1 ) the tax - free sale or spin - off of transmission assets into an rto is allowed , 2 ) nuclear decommissioning laws are adapted to a competitive market by allowing deductions to a trust fund no longer subject to cost - of service ratemaking , 3 ) the contributions in aid of construction ( ciac ) tax on interconnections to transmission and distribution facilities is eliminated , and 4 ) private use tax rules are changed to permit open access to transmission and distribution facilities . the measure was referred to the house ways and means committee , and eei has urged congress to act without delay in moving it forward . enactment will help encourage a vigorous but fair competitive environment , the institute noted . the same legislation has been incorporated into s 389 , senate energy committee chairman frank murkowski ' s ( r - ak ) energy security bill , and stand - alone legislation could also be introduced . hearings are expected to be held in both the senate finance and house ways and means committees , probably after consideration of president bush ' s individual tax proposal . administration / ferc * * * white house seeks $ 2 trillion budget in fiscal year 2002 * * * president bush last week transmitted a $ 2 trillion fiscal year 2002 budget request to capitol hill . the administration noted that its proposal * moderates recent explosive growth in discretionary spending to four percent in 2002 , * an increase of $ 26 billion over the preceding fiscal year . the budget bid contains a $ 231 billion total surplus in 2002 , and projects a $ 5 . 6 trillion surplus over the next ten years . in the energy area , the administration noted the federal government   s * longstanding and evolving role * in the sector , pointing out that most federal energy programs and agencies have no state or private counterparts . it proposed about $ 2 . 8 billion in discretionary spending for energy programs , and about $ 2 . 1 billion in tax benefits , * mainly to encourage development of traditional and alternative energy sources . * doe   s budget request was $ 19 . 2 billion , including $ 2 . 3 billion for energy resources programs . this later figure represents a decrease of $ 196 million , or 7 . 9 percent , from fiscal year 2001 . in the environmental sector , the administration sought some $ 7 . 3 billion in discretionary funding for epa , including a $ 3 . 7 billion operating program focused on implementation of most federal pollution control laws . * * * success of restructuring tied to energy strategy , ferc   s massey asserts * * * electric restructuring may be in jeopardy , and its success * is in the hands of regulators and policymakers , * ferc commissioner william massey has asserted . speaking at a recent national governors association policy forum in philadelphia , commissioner massey urged officials to pay attention to the key elements of a national energy strategy . first , he specified , there is a need for an adequate supply of the energy commodity . turning to a second element , commissioner massey told forum attendees that * all the supply in the world won   t help unless it can be delivered over an adequate , efficient , non - discriminatory network . * commissioner massey identified market structure as the third essential element of a national energy strategy , while citing an inherent difficulty : that * good structure cannot be easily parsed between wholesale and retail jurisdictions . * accordingly , he said , ferc and the states must work together on market structure . the final element of a successful energy strategy , the commissioner specified , is the need for aggressive ferc intervention when markets fail to do their job . * if the states cannot depend on the wholesale market regulator to ensure reasonable prices for consumers , * he cautioned , they * will surely think twice before heading down the restructuring path . * new generation * * * dynegy to build second plant in kentucky * * * dynegy has announced plans to construct a new 330 megawatt plant adjacent to the riverside generating project in lawrence county , kentucky . dynegy will sell the power generated at the plant in the wholesale market . commercial operation is expected to begin first quarter of 2002 . * * * ppl to expand generation capacity * * * ppl corporation this week said it would build a 540 megawatt power plant near chicago and would increase the capacity of its susquehanna nuclear plant by 100 megawatts . ceo william hecht said the illinois plant is expected to be in service by the summer of 2002 . * * * constellation energy group announces eight new plants * * * constellation energy group this week announced that the company is scheduled to bring four peaking power plants on line this summer . additionally , four larger power plants are scheduled to enter service in the following two summers . the four peaking plants are located in illinois , pennsylvania , virginia and west virginia . the larger power plants are under construction in california , florida , illinois , and texas . * we   re building in these seven states because they serve regions where wholesale electricity is needed and where we can provide energy to support our national power marketing business , * said constellation energy group chairman and ceo christian poindexter . * * * california energy commission approves construction of otay mesa generating plant * * * pg & e corporation   s national energy group ( neg ) last week announced that the california energy commission ( cec ) has approved construction of the otay mesa generating plant in san diego county , which the neg has developed . the 500 megawatt project will produce enough electricity to power about 1 , 000 homes . after the development process is completed , calpine corporation will assume ownership of the project and will construct and operate the plant . neg will contract for up to half the plants output . energy data * * * weekly electric output ( week 15 ) * * * electric output reached 63 , 528 gwh for the week ending april 14 ( week 15 ) , with the highest increase over 2000 levels in the south central states , which both had a 12 . 6 percent increase over 2000 for week 15 . year - to - date , the rocky mountain region experienced the greatest increase in output ( 7 . 6 percent ) over 2000 . for more information , email alliance @ eei . org . the alliance express is a free news service sponsored by the alliance of energy suppliers . this document can be redistributed . please send questions , comments , or requests to alliance @ eei . org , or telephone 202 / 508 - 5680 . nancy tarr manager , business development eei alliance of energy suppliers 701 pennsylvania ave . , n . w . washington , d . c . 20004 telephone : 202 - 508 - 5680 fax : 202 - 508 - 5600 www . eei . org / alliance ntarr @ eei . org - text . htm - fasb - the impact on energy companies of treatment of capacity c",0 +"Subject: re : texas finance festival ( urgent request ) peggy , friday ( lunch , supper ) , sat ( breakfast , lunch ) . one person . vince kaminski peggy davies on 03 / 30 / 2000 04 : 21 : 36 pm please respond to peggy davies to : andres almazan , murray carlson , kent daniel , wayne ferson , denis gromb , john hund , narasimhan jegadeesh , cindy justice , matthias kahl , vince kaminski , anthony lynch , thomas noe , robert parrino , manju puri , ehud ronn , laura starks , andrew subra , steathis tompaidis cc : subject : texas finance festival ( urgent request ) texas finance festival attendee please respond to the below request asap in preparing for the texas finance festival , we are needing to finalize the meal counts . while we are excited about everyone coming , we do not want to pay for meals ( expensive ones by the way when on the riverwalk in san antonio ) if someone will not be in attendance . please indicate below the meals you will be inattendance . if you have family / significant others coming with you , please indicate the total number including yourself . thanks for your help . bill petty number to attend friday lunch friday supper saturday breakfast saturday lunch saturday supper rfc 822 header - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - return - path : received : from ccc _ petty ( ccc - petty . baylor . edu [ 129 . 62 . 162 . 79 ] ) by ccisol . baylor . edu ( 8 . 9 . 1 / 8 . 9 . 1 ) with smtp id oaa 21931 for ; thu , 30 mar 2000 14 : 35 : 32 - 0600 ( cst ) message - id : date : 30 mar 00 14 : 34 : 59 - 0600 from : bill petty subject : texas finacne festival ( urgent request ) to : peggy davies x - mailer : quickmail pro 1 . 5 . 4 ( windows 32 ) x - priority : 3 mime - version : 1 . 0 reply - to : bill petty content - type : text / plain ; charset = "" us - ascii "" content - transfer - encoding : 8 bit x - mime - autoconverted : from quoted - printable to 8 bit by ccisol . baylor . edu id oaa 21931 status : peggy davies administrative assistant department of finance , insurance , fax ( 254 ) 710 - 1092 peggy _ davies @ baylor . edu",0 +"Subject: fwd : our conversation today return - path : from : awenda 2000 @ cs . com full - name : awenda 2000 message - id : date : mon , 4 dec 2000 12 : 47 : 07 est subject : our conversation today to : wkamins @ enron . com mime - version : 1 . 0 content - type : multipart / mixed ; boundary = "" part 2 _ 12 . 59 ad 86 b . 275 d 329 b _ boundary "" x - mailer : unknown sub 111 hi wincenty , it was a pleasure talking to you today . i am enclosing my resume and look forward to talking to you again . best regards bibianna - bibianna res . # 2 . doc",0 +"Subject: steven roeder ( chemical engineer ) vince , i do not think that there is match with our group but i forwarded steve ' s resume to ford cooper and joe phalen of the water group . regards , osman",0 +"Subject: ljm pricing vince : here are the files for pricing the deal without and with credit risk : 1 ) without credit risk : 2 ) with credit risk : ( two factor model ) talk to you tomorrow 1 : 00 pm . thanks . paulo issler",0 +"Subject: organizational announcement fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by osman sezgen / hou / ees on 04 / 23 / 2001 02 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron energy services from : ees distribution 04 / 23 / 2001 01 : 29 pm sent by : kay chapman to : all ees cc : subject : organizational announcement consistent with the floor talks of a couple weeks ago , we are following up with an e - mail describing the latest changes in our risk and back - office functions that are now complete . ees  , s risk management and the vast majority of ees  , s risk controls and operations group will become a new group in enron wholesale services . this group  , s sole function will be to provide pricing , structuring , commodity risk management , logistics and back - office services for ees . both don black and wanda curry will report to the ews office of the chairman . this change was driven by the explosive growth of ees and the resulting need to tap the systems , resources and risk expertise of the wholesale groups in order to continue to grow and take advantage of current market opportunities . this change will allow us to more quickly capture the benefits of scale , process , and technology in risk , logistics and back - office functions from the larger enron capability . as discussed at the all employee meeting in march , these are important objectives , and this change allows us to reach those goals more quickly . specifically , the following groups within the former ees risk management group , will become a part of this new group reporting to don black : - the gas , power and tariff desks , - the options desk , - the site profiles and consumption desks , and - the matrix products / secondary products desks . the dsm group and iam , along with its execution capability , will remain in ees and report to the ees office of the chairman . we are pleased to announce that ozzie pagan has agreed to lead this function . ozzie is an established commercial dealmaker in ena . he has experience in power trading , origination and plant development . in addition , the services group , which will provide billing , information and other retail services , led by evan hughes , will remain in ees and report to the ees ooc . all support functions , within the former ees risk controls and operations group , that currently support the dsm and the services groups , will remain in ees . the remaining parts of the risk controls and operations group will become part of ews reporting to wanda curry . as part of this change , we are pleased to add evan hughes and ozzie pagan to the ees operating committee . in addition , the structuring group , led by sean holmes , will be re - named deal management . the vision for this group remains the same as that discussed at the all employee meeting ; however , it will also facilitate and ensure productive transaction interaction between ees and ews . we have asked , marty sunde , as part of his vice chairman role , to resource and lead a formal restructuring group to enhance or protect value in several key transactions in our portfolio primarily in california . the newly created it function , led by anthony dayao , will continue to report into the ees ooc but will support both ees and ews it requirements . other than these changes , the organizational structure , vision and objectives detailed out for ees at the all - employee meeting in march remain . we need to continue to understand and drive deeper into our markets , manage our client relationships , mine our portfolio , build new products and execute on our opportunities . thanks for all your hard work . with your help we will become the worlds leading energy retailer and enron  , s leading division . if you have any questions please do not hesitate to ask",0 +"Subject: enside draft good afternoon ! attached , please find the combined interview notes for the first draft of the article for the enside newsletter . read and review your sections - they are divided by color . vince , please check ' everything ' for content and accuracy . feel free to make corrections and delete anything as you see fit . please make changes and then send back to me . i need it by wednesday , april 4 , if possible . call me if you have any questions ! kathie grabstald ews public relations x 3 - 9610 p . s . i am looking forward to the photo shoot on friday , march 30 at 2 : 30 pm . i will meet you all in front of the building at the big e !",0 +"Subject: re : marketpoint license agreement dale , thanks for your message . in our phone conversation before the meeting you mentioned another contractual arrangement under which we could work with your company employees on a case - study . the cost of a weekly project would be $ 12 , 000 that would be applied to the purchase price should we go ahead and decide to acquire the software . this project would allow us to evaluate the model and come up with an estimate of the manpower necessary to support the model internally . please , let me know more about this option . we are primarily interested in a long - term natural gas model and the database for north america . unless a familiarity with the short term model is a prerequisite , we don ' t have resources to spend too much time on it . of course , a trading desk may be interested in the short term version of the model . i shall talk to them about it . vince "" dale m . nesbitt "" on 11 / 13 / 2000 06 : 00 : 05 pm to : , "" vince . j . kaminski "" cc : subject : marketpoint license agreement john / vince : i really enjoyed the meeting the other day with you and a broad cross section of your people . thank you very much for setting it up , and thank you for giving me the opportunity to speak with your people . as i mentioned to john , i am sending you the license paperwork for marketpoint . i have attached our standard license agreement for your consideration . as i mentioned , the license agreement covers the entire bundled product , which includes ? north american gas , short and long term ? north american electricity , short and long term ? world gas ? western european gas ? world oil we are just finishing porting the world oil , world gas , and western european gas models over from our old ( now obsolete ) software system into marketpoint , so they will not be fully tested and complete for a couple of months . however , the gas and electricity models for north america are presently complete and tested . that should allow us to give you an attractive price before the full worldwide toolkit is available throughout your worldwide business . as i understood it , you will want the gas modeling capability first and will want to defer decisions on electric or other capability . as i mentioned at the meeting , we are prepared to offer that for approximately the fully bundled price . as you read the license agreement , you will see that the software licenses for $ 100 , 000 annually , the gas data for $ 5 , 000 , and the electric data for $ 10 , 000 . marketpoint will agree to license you the gas model plus the data for the software license plus the data license for a total of $ 55 , 000 annually . this is just under the fully bundled price . i think that is consistent with the discussions at our meeting , and from marketpoint  , s perspective would provide a great basis to move forward together with enron . if or when enron ever desires to  & scale up  8 to another model or model ( s ) from the marketpoint portfolio , we will simply scale you up to the entire license agreement . this will allow you to decouple the gas decision from any other decisions you might make . ( i will be glad to put this additional pricing provision into the agreement if you decide to move forward . ) i felt i was able to communicate the philosophy , scope , and operation of our approach during the meeting and to deliver you much of the information you might need to evaluate whether marketpoint meets your needs . i thought you were able to see the depth and sophistication of the product yet at the same time its simplicity and effectiveness . i thought you were able to see the benefits of the marketpoint dimension of economic equilibrium as a complement and supplement to other approaches you will assuredly use . i would be interested in your impressions and those of your colleagues . i look forward to your response and to moving ahead together . we view you as a very important prospective customer and client and will work with you to earn and secure your business . if you decide to license marketpoint , we can arrange to transfer and mount marketpoint and the short term narg model ( which is the model we suggest you begin with ) and travel to houston to deliver our 1 day training seminar . our clients are usually very fluent after that 1 day training seminar . thereafter , we would want you to work with the short term narg model for a few weeks while you get up to speed , very fluent , and very comfortable before you take delivery of the longer term version of narg several weeks later . thanks again , and all the best . if there is some item from the meeting that i might have forgotten to send , please remind me . my notes don ' t show anything , but i was speaking a lot rather than writing notes during the meeting and might have overlooked something someone wanted . dale nesbitt president marketpoint inc . 27121 adonna ct . los altos hills , ca 94022 ( 650 ) 218 - 3069 dale . nesbitt @ marketpointinc . com - license . doc",0 +"Subject: re : gsia visit duane , sorry i will miss you . i have a meeting with chester already on my schedule . vince ds 64 @ cyrus . andrew . cmu . edu on 10 / 31 / 2000 03 : 40 : 40 pm to : "" vince j kaminski "" cc : "" chester s spatt "" , "" pierre - philippe ste - marie "" subject : gsia visit vince , this friday during your visit i will be in california for a cousin ' s wedding . i am having miserable luck connecting with you . however , while you are at gsia , chester spatt ( one of my co - authors ) would like to meet with you if your schedule permits . i am copying him on this email so you can contact him directly . please also let peirre ( who is also copied on this email ) know whatever you work out . see you next time i hope , duane * * * * * * * * duane seppi graduate school of industrial administration carnegie mellon university pittsburgh pa 15213 - 3890 tel . ( 412 ) 268 - 2298 fax ( 412 ) 268 - 8896 email ds 64 + @ andrew . cmu . edu",0 +"Subject: alliance info alert ferc acts to remove obstacles to address western energy crisis * * omnibus order mobilizes ferc ' s entire energy pricing and infrastructure authority * * to adopt financial incentives for capacity increases in transmission facilities * * streamlines regulation of wholesale market , energy facilities siting and licensing * * promotes conservation and wholesale side of demand - response bidding * * order doesn ' t address price caps * * meeting with western state regulators / officials set for april 6 , 2001 in boise , idaho ferc moves to bring more economic and reliable energy supplies to the stressed california and western energy markets . ferc proposes to increase bulk power supply in the west by removing barriers and providing incentives that are within its jurisdiction over facility certification , licensing , and the regulation of transmission and wholesale power sales in interstate commerce . ferc quickly wants to increase electric generation and transmission capacity , as well as to streamline the regulation of wholesale power transactions , as well as increase the capacity of the supporting infrastructure of natural gas and oil pipelines . the order , which sets new precedent in its broadness , also proposes actions to reduce electricity demand in the west as well as promoting the necessary wholesale - market portion of demand - response bidding where states wish to implement the retail side . ferc asks for comments on additional actions it may take in the future by march 30 , 2001 . effective immediately , ferc said in a statement , * the commission is streamlining regulatory procedures for wholesale electric power sales , expediting the certification of natural gas pipeline projects into california and the west , including the reallocation of staff resources to more quickly address pending pipeline applications , and urging all licensees to review their ferc - licensed hydroelectric projects in order to assess the potential for increased generating capacity . * among the actions ferc takes are to : 1 ) require the california iso and transmission owners within all 11 states of the western systems coordinating council ( wscc ) to prepare a list of grid enhancements that can be completed in the short term ; 2 ) waive prior notice requirements for any on - site or self - generators that sell at wholesale within the wscc area ; 3 ) grant blanket market - based rate authority for sales on the wholesale market of electric energy that becomes available as a result of demand - response reductions in retail and wholesale loads ; and 4 ) broadening and extending through december 31 , 2001 the temporary waivers of the operating and efficiency standards for qualifying facilities ( qfs ) to increase the availability of generating capacity . ferc seeks comments by march 30 on a series of economic incentives aimed at ensuring timely upgrades to the western transmission grid , including an increased rate of return on equity ( roe ) for projects that significantly increase transmission and can be in service by either june 1 , 2001 , or november 1 , 2001 . other areas that ferc requested comment on include the use of interconnection authority under the federal power act , and to raise the dollar limits on the issuance of blanket certificates authorizing gas pipeline construction . on hydro issues , ferc requested comment on ways to increase operating flexibility at ferc - licensed projects while protecting environmental resources . in its effort to encourage investment in transmission infrastructure , ferc asked for comments - again by march 30 - on a series of economic incentives aimed at ensuring upgrades to the western interconnection , including the increased roe for projects that significantly increase transmission on constrained paths and can be in service by the above dates in 2001 . increased roe , ferc said , will also be given to system upgrades over new transmission paths that can be in service by june 1 , 2002 , or november 1 , 2002 . ferc seeks comment on a proposed 10 - year depreciation period for projects that increase transmission capacity in the short - term and a 15 - year depreciation period for upgrades involving new rights - of - way that can be of service by november 1 , 2002 . in his dissent to the order , commissioner massey argued the order focuses on "" quick fixes , "" and that the measures will not close the gap between supply in demand in california . the order also "" fails to address price relief , "" noted massey . massey also called for a full federal power act ( fpa ) section 206 investigation of california issues , which would allow for the possibility of refunds . on transmission incentive provisions , massey lamented that the proposed roe increase to 14 percent appeared arbitrary and inconsistent with ferc policy under order no . 2000 . the financial provisions , he said , appeared to be "" just throwing money at the problem . "" while generally disappointed with the order , massey did express limited support for many parts of the order . many of the suggestions in the order are the "" same actions as authorized last may , "" said massey . "" they were good ideas then , and they are good ideas now , "" he concluded . for his part in comments at the open meeting when the order was adopted , chairman hebert said the order was designed to "" squeeze every additional mw of supply available "" and to encourage the conservation of mw , and stressed that ferc is "" doing all it can in its power to alleviate western problems . "" he said the order seeks to eradicate the projected supply shortfall in california , but noted that generation / transmission siting , and conservation are generally state issues . ferc ' s * removing obstacles * order is posted on its web site at : citation : ferc issued is order removing obstacles to increased electric generation and natural gas supply in the western united states and asking for comments was issued on march 14 , 2001 , docket no . elol - 47 - 000 . a detailed analysis and summary of the specific actions taken and proposals made follows : electric transmission infrastructure within 30 days , the california iso and transmission owners in wscc are to prepare and file for information purposes a list of grid enhancement projects that may be underway or may not require initial siting and acquisition of rights of way . ferc proposes a scaled transmission infrastructure incentive under which transmission owners of projects that increase transmission capacity at present constraints and can be in service by july 1 , 2001 would receive a cost - based rate reflecting a 300 basis point premium return on equity and a 10 - year depreciable life . projects in service by november 1 , 2001 , would get a 200 basis point premium and 10 - year depreciable life . ferc would use a uniform baseline return on equity for all jurisdictional transmission providers in wscc of 11 . 5 % , based on the roe ferc approved for southern california edison . system upgrades that involve new rights of way , add significant transfer capability and can be in service by november 1 , 2002 , would get a cost - based rate reflecting 12 . 5 % roe , or al 00 basis point premium , and 15 - year depreciable life . facilities needed to interconnect new supply to the grid , which go into service as required to accommodate the in - service date of the new plant would get a cost - based rate that reflected a 13 . 5 % roe , or a 200 basis point premium , if in service by november 1 , 2001 and 12 . 5 % roe if in service by november 1 , 2002 . for increases in transmission capacity on constrained interfaces that do not involve significant capital investments , for example , installing new technology , ferc proposes to allow transmission owners to increase the revenue requirement of their network service rates to ensure that each additional mw of capacity will generate revenues equal to their current firm point - to - point rate . ferc requests comment on whether to assign the cost of any interconnection or system upgrade to a particular load or supply , or alternatively , to roll these costs into the average system rate . extension of waivers for qfs ferc proposes to extend its temporary waivers of operating and efficiency standards for qfs - applicable throughout wscc - to allow increased generation through december 31 , 2001 . the waivers were to expire on april 30 , 2001 . the proposed waiver would allow qualifying cogenerators to sell their output above the level at which they have historically supplied this output to purchasing utility . the waiver for qualifying small power production facilities in wscc with respect to their fuel use requirements under ferc regulation section 292 . 204 ( b ) , would be extended to december 31 , 2001 . additional capacity from on - site generation ferc will adopt streamlined regulatory procedure to accommodate wholesale sales from such facilities that serve load within wscc . through december 31 , 2001 , owners of generating facilities located at business locations in wscc and used primarily for back - up or self - generation who would become subject to fpa by virtue of sales of such power will be permitted to sell power at wholesale without prior notice under fpa section 205 . ferc also authorizes such power to be sold at market - based rates . ferc waives its prior notice requirement for mutually agreed upon interconnection agreements for interconnections necessary to accomplish these sales . quarterly reporting is required . allows demand response bidding ferc will allow retail customers , as permitted by state law , and wholesale customers to reduce consumption for the purpose of reselling their load reduction at wholesale . ferc is granting blanket authorization , consistent with its prior discussion on sales from on - site generation and requires similar reporting . ferc ' s december 15 order on the california market directed , as a longer - term measure that the iso pursue establishing an integrated day - ahead market in which all demand and supply bids are addressed in one venue . ferc seeks comments on the desirability of accelerating action on this . ferc says it realizes that states play an important role in regulating retail electric service and that allowing retail load to reduce consumption for resale in wholesale markets raises legal , commercial , technical and regulatory issues . safeguards may be needed to protect and enhance retail demand - response bidding programs . intention is not to undermine state programs but to promote the necessary complementary wholesale programs . requests comments on how helpful this action is and how it can be accomplished consistent with state jurisdiction over retail sales . contract modifications for demand - response bidding there may be opportunities for public utilities to make other types of demand - response arrangements with their wholesale customers . as for mutually agreeable qf interconnections , ferc will waive prior notice requirement for any mutually agreeable demand - response related rate schedule amendments that may be required to effectuate these arrangements . clarifies that demand - response program costs should be treated consistently with all other types of incremental and out - of - pocket costs . interconnections fpa section 210 ( d ) allows ferc to issue an order requiring interconnection if it makes a finding that such an order : 1 ) is in the public interest ; 2 ) would encourage overall conservation of energy or capital , optimize the efficiency of use of facilities and resources , or improve the reliability of any electric utility system or federal power marketing agency to which the order applies ; and 3 ) meets the requirements of fpa section 212 . ferc requests comments on whether it can use this authority under fpa section 210 ( d ) to alleviate existing impediments to electricity reaching load . if the exercise of this authority may be warranted , ferc seeks comments on whether it could make some of the required findings generically for the wscc region in order to respond quickly should circumstances arise requiring immediate action . longer term regional solutions ferc believes an rto for the entire western region or the seamless integration of western rtos is the best vehicle for designing and implementing a long - term regional solution . natural gas pipeline capacity ferc has realigned its resources to respond to new applications for gas pipeline capacity and is soliciting comments on ways to expedite the approval of pipeline infrastructure needed to serve california and the west . requests comments on how it might further exercise its authority over new pipeline construction to alleviate the present crisis , including increasing the dollar limit thresholds for blanket certificates to $ 10 million , and for prior notice authorizations to $ 30 million in order to increase the facilities qualifying for automatic authorization ; offering blanket certificates for construction or acquisition of portable compressor stations to enhance pipeline capacity to california ; and offering rate incentives to expedite construction of projects that will make additional capacity available this summer on constrained pipeline systems . hydroelectric power ferc staff will hold a conference to discuss methods to address environmental protection at hydro projects while allowing increased generation . requests comments on ways to allow for greater operating flexibility at commission - licensed hydro projects while protecting environmental resources . comments should consider : 1 ) methods for agency involvement ; 2 ) ways to handle and expedite endangered species act consultations ; 3 ) criteria for modifying licenses ; and 4 ) identification of processes that could be implemented to provide efficiency upgrades . oil pipelines ferc will explore with oil pipelines innovative proposals that could lead to ensuring an adequate flow of petroleum product into the california market . conference with state commissioners ferc will hold a one - day conference with state commissioners and other state representatives from western states to discuss price volatility in the west as well as other ferc - related issues identified by the governors of western states . by notice issued march 16 , this meeting is scheduled for april 6 , 2001 in boise , idaho . [ source : ferc 03 / 14 / 01 order , docket elol - 47 - 000 , and news release . ] - text . htm",0 +"Subject: last minute things tff participants , we are looking forward to seeing everyone in san antonio this friday . attached is a welcome letter that indicates the meeting room and describes the two evenings ( friday dinner and tour of the alamo and saturday barbeque dinner at a ranch outside of san antonio ) . we have arranged for five horses for the brave at heart and a hayride for the interested so come with jeans and boots . see you friday john - welcomel . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : forward prices simulations in the credit reserve model bill and mark , the figure below shows you what happens when we simulate forward prices using current methodology of our credit reserve model . the time scale on this figure goes from 0 to 30 years . i started with $ 5 . 2 gas prices at time 0 and used the ng forward volatility curve which has 50 % volatilities in the front and 13 . 5 % vols for long - term contracts . you can see from the figure , that , for example , at 30 years horizon the price will be more than $ 13 . 4 with probability 5 % but less than $ 22 . 1 with probability 99 % . the corresponding lower bounds are $ 1 . 17 and $ 0 . 71 . tanya from : william s bradford / enron @ enronxgate on 03 / 26 / 2001 11 : 22 am to : mark ruane / enron @ enronxgate , naveen andrews / enron @ enronxgate , tanya rohauer / enron @ enronxgate , debbie r brackett / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , rabi de / na / enron @ enron , wenyao jia / enron @ enronxgate cc : subject : re : gbm vs reversion both seem to provide fairly unrealistic values . $ 50 gas over the term seems improbable , however , a $ 6 gas peak does not represent capture all potential price movement at 99 % confience interval . what were your assumptions on price curves , volatilty curves , and trend reversion ? bill - - - - - original message - - - - - from : ruane , mark sent : monday , march 26 , 2001 11 : 11 am to : bradford , william s . ; andrews , naveen ; rohauer , tanya ; brackett , debbie ; tamarchenko , tanya ; de , rabi ; jia , winston subject : gbm vs reversion a quick example of the impact of using gbm based simulation : based on a five year swap , the expected losses are 18 % higher as a result of gbm . attached chart shows the relative long - term gas prices under both processes . > mark",0 +"Subject: reply to your email / ignore my voicemail please respond to vince : thanks for that . i just wanted to get a sense from you who the right people are and how i can establish effective contact . when he went on to different responsibilities , john goodpasture suggested i get the dialog going with the right commercial people in enron . i will be in your neighborhood in the 200 pm time range and will give you a quick call . that will conserve your valuable time and hopefully get me in touch with the right people . i am reading this after your voicemail , so this supersedes that . dale - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , may 01 , 2001 6 : 03 am to : dale . nesbitt @ marketpointinc . com cc : vince . j . kaminski @ enron . com subject : re : get together this coming tuesday ? dale , i can reserve 2 to 2 : 30 time slot but there is really not much that i can tell you at this point . the commercial groups are still interested and are moving towards the test of the package . as soon as they will decide to move ahead , we ( research ) shall be involved , helping to evaluate the product . as i have said , we are not the decision makers in this case . i think that we should allow simply the process to run its course . vince "" dale m . nesbitt "" on 04 / 30 / 2001 05 : 59 : 30 pm please respond to to : cc : subject : re : get together this coming tuesday ? vince : i will call tomorrow in the morning . lunch or right after lunch would be great . how would 100 pm work for you ? dale - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , april 30 , 2001 3 : 07 pm to : dale . nesbitt @ marketpointinc . com cc : kimberly . watson @ enron . com ; vince . j . kaminski @ enron . com subject : re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: risk 2000 panel discussion hello everyone : vince kaminski would be available for a conference call on wednesday , may 31 at 10 : 00 or 11 : 00 am est . the rest of the day is rather full . please let me know if either time is convenient for you . if not , maybe we could do it on june 1 - he is free most of the day with the exception of 12 : 30 - 2 : 00 est . look forward to hearing from you . thanks ! shirley crenshaw administrative coordinator enron corp . research 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: re : eprm conferences hi paul , ? thanks for the e - mail . sorry i missed your calls this morning but i was at the dentist , where its difficult to speak at the best of times ! ? i ' m sorry but it doesn ' t look like we will be able to commit to ? the eprm var conference . we are still a small company and the trip would tie us up for over a week . i ' m sure you ' ll understand that internally we just can ' t justify ? the two senior members of the company ? to be away on eprm business and to have to pay money from our own pocket ? to run this course for you . it was a difficult decision originally to ? offer our services at expenses only with no fee , but we did so for the potential opportunity to work some more with vince . ? good luck in your search for alternative course leaders . ? best regards . ? chris . ? ? dr chris strickland ? director , lacima group ltd www . lacimagroup . com ? school of finance and economics , university of technology , sydney financial options research centre , university of warwick , uk ? ? ? - - - - - original message - - - - - from : paul bristow to : chris @ lacimagroup . com sent : thursday , february 22 , 2001 8 : 13 am subject : fw : eprm conferences hi chris , ? just an extra note regarding the course . if the reimbursements are suitable i would like to finalise the line - up asap ( vince and a european enron representative ) . if you were unable to participate i would need to offer alternative invitations by the end of this week . ? all the best , ? paul ? ? ? - - - - - original message - - - - - from : paul bristow [ mailto : pbristow @ riskwaters . com ] sent : wednesday , february 21 , 2001 9 : 13 am to : ' chris strickland ' subject : re : eprm conferences hi chris , ? i ' ve been looking at the forward plan and the total budget for speaker expenses is 5500 pounds ( us keyboard , no pound sign ) . at current exchange rates this comes to a little over 15 , 000 australian dollars . i would be happy to cover your expenses up to this figure . ? the course is scheduled to run in amsterdam ( not london as originally planned ) and houston . the dates are slightly flexible ? to ? work with your travel schedules . for instance , would you prefer to travel to sydney - houston - amsterdam - sydney , or in the opposite direction ? ? if you could contact me to ? let me know if this would ? enable you to commit to the course , i would be delighted to forward the notes from the research . i would plan to then work on the outline until march lst . i look forward to speaking with you soon . ? best wishes , ? paul bristow ? - - - - - original message - - - - - from : chris strickland [ mailto : chris @ lacimagroup . com ] sent : tuesday , february 06 , 2001 5 : 18 pm to : pbristow @ riskwaters . com subject : re : eprm conferences hi paul , ? bit of a busy morning here - i ' ll be out for about 1 . 5 hrs ( 9 . 15 sydney time ) . if we don ' t catch up today , i ' ll call tomorrow . ? chris . ? - - - - - original message - - - - - from : paul bristow to : ' chris strickland ' sent : tuesday , february 06 , 2001 1 : 33 am subject : re : eprm conferences hi chris , ? i would like to confirm the dates of some of the forthcoming eprm events : ? effective var and stress testing techniques for the us energy industry . this event will run on the 21 & 22 may in london and the 28 & 29 may in houston . michele du berry ( director of conferences ) and i are looking at how we have structured the training courses and are keen to present a different outline than on previous courses . i would like to run this event with 2 - 3 trainers per venue , rather than with 7 - 8 as we have done in the past . if you and les clewlow would be interested in leading this course ( possible with vince kaminski ) i would be delighted to discuss the event in greater detail . ? energy & power risk management , europe . our largest annual european event is scheduled to between september 19 - 21 . victoria kerridge will be producing this event from the london office and will be starting research in two weeks . i am going to be providing her with a brief and will ensure that she has your contact details . ? i have also been finalizing the details for the annual energy & power risk management event in houston . this will take place on may 14 th & 15 th and is close to completion . i would be happy to provide you with more details , without potentially running the risk of overloading your schedule with a number of events in a short space of time ( var and eprm , houston ) . my priority is to secure trainers for our var course . ? if you would be interested in any of the events listed , i would be happy to talk with you this week . my direct line is 212 925 6990 , extension 225 . ? best wishes , ? paul bristow ? ? - - - - - original message - - - - - from : chris strickland [ mailto : chris @ lacimagroup . com ] sent : sunday , january 28 , 2001 8 : 02 pm to : pbristow @ riskwaters . com subject : eprm conferences hi paul , ? just a note so that you have my address . do you have dates for the us and european conferences yet ? i ' m sure that we can arrange other work at the same time to offset the expenses of speaking at these events if you want us to participate . ? you also mentioned a training course on var and the energy area . we had an eprm article last year with vince on a comparison of the different techniques on a trial portfolio that might form the basis of something useful . anyway , let me know . ? best regards . ? chris . ? ? ? ?",0 +"Subject: re : i was very pleased to get your note and wish that i could be of help with respect to a phd program . unfortunately our only related program here is in statistics . i would suggest that you contact professor sheridan titman at the university of texas in austin . good luck , john at 05 : 31 pm 1 / 12 / 01 + 0600 , you wrote : > dear mr . martin , > having visited your web page http : / / hsb . baylor . edu / html / martinj / i have > found information about your research paper . i have a similar area of > interests and i am keen to pursue a degree in finance program . i am > especially interested in the following areas : > > 1 . valuation of the exotics style options > 2 . credit portfolio models - assessment of the value at risk of a > non - investment grade eurobonds portfolio and contributions of the > individual assets to portfolio risk > 3 . estimation of expected default frequency for individual default risk > > if you have any open ph . d . student positions for the fall 2001 , please do > not hesitate to get in touch with me . > > > i have the following background : > > i graduated ( m . s . ) from moscow institute of physics and technology in 1998 , > majoring in economics and applied mathematics , with a degree in applied > mathematics gpa 4 . 5 / ( 5 . 0 ) . diploma matter as "" mathematical methods in the > modern theory of oligopoly "" . i have three and a half years working > experience in bank and investment company in russia and kazakhstan . i had > been working on the following positions : > > 1 . trader - fixed income , equities , futures , forwards , swaps , options , money > market . > > 2 . analyst - estimation of the market value of illiquid equities , valuation > of principal protected notes and reverse convertible notes , valuation of > exotics options . > > 3 . risk manager - risk management in banking currency , margin and liquidity > risks . > > 4 . portfolio manager - management of the banking securities portfolio using > mathematical and statistical approach . > > articles : > > 1 . custodian ' s functions and its role in the management of securities > portfolios . "" securities market journal "" . june , 2000 > > 2 . options as an instrument for receiving guaranteed income . "" securities > market journal "" . december , 2000 > computer languages : visual basic , pascal , and fortran > > i have got the following scores : > > 1 . gre - 1810 ( v - 290 , q - 800 , a - 720 ) > > 2 . toefl 563 > > > > look forward to hearing from you . > > sincerely , > > yeremenko alexey > > e - mail : aeremenko @ turanalem . almaty . kz > > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: old and new extensions hello , may i please have several lines disconnected from my phone and several new lines added . you can delete 36336 and 33135 . you can delete 33376 and 39719 also 34768 . will you please add 36615 and 34305 will you add please jose marquez extension , a new hire . ( a new number ) also add 39737 and 36286 . r . c . 100038 co . # 0011 thanks kevin moore any questions please feel free to call . x 34710",0 +"Subject: re : rice / enron finance seminar series thank you , vince . we look forward to another successful seminar series . i will check into getting a mug design and get cost figures for you . we ' ll get something done this summer so that we are ready to go for the fall . bbo at 02 : 45 pm 5 / 25 / 00 - 0500 , you wrote : > barbara , > > we shall extend the funding for the seminar in the fall for the next > season . > > i shall be glad to cover the cost of a coffee mug with our logos . can you > identify a > producer who can come up with a design ? > i think that we may use the company that produces > rice memorabilia . > > i shall run the design through our pr department and then we can have it > produced . > > vince > > > > > > barbara ostdiek on 05 / 24 / 2000 01 : 15 : 12 pm > > to : vince . j . kaminski @ enron . com ( vince kaminski ) > cc : > subject : rice / enron finance seminar series > > > vince : > > i have checked with our accounting folks and it looks like the balance in > the seminar account is under $ 5000 . this will get us going in the fall so > we have some flexibility for the next enron funding - whatever works best > on your end . > > also , i am interested in pursuing the idea of designing some sort of a gift > - a coffee cup perhaps - to give to our seminar guests . i think we could > do something neat with the enron and rice / jgs logos that folks would be > happy to display on their shelf or desk top . what do you think ? > > as always , thank you so much for your support of our efforts over here . it > is truly appreciated . > > bbo > > > > barbara ostdiek 713 - 348 - 5384 ( voice ) > assistant professor of finance 713 - 348 - 5251 ( fax ) > jones graduate school of management ostdiek @ rice . edu > rice university www . ruf . rice . edu / ~ ostdiek / > 6100 main street - ms 531 > houston , tx 77005 - 1892 > > > > >",0 +"Subject: re : mscf speaker series / recruitment thanks for your message . a call sometimes between 7 : 00 and 8 : 00 is fine . i come to the office around 7 : 00 traffic permitting . vince pierre - philippe ste - marie on 08 / 02 / 2000 07 : 38 : 42 am to : vkamins @ enron . com cc : subject : mscf speaker series / recruitment dear mr . kaminsky , mr . bryant informed me of the possibility of having you as a guest speaker for our speaker series . it would be a great honor and a pleasure for me to help you organize a trip to pittsburgh . would it be possible to give you a call tomorrow ( thursday ) at 7 . 00 am central time ? sincerely , pierre - philippe ste - marie",0 +"Subject: super saturday participation and off - cycle interview request thank you for volunteering your time for this weekend ' s super saturday . we appreciate your commitment to enron ' s recruiting success . at this time we do have an adequate number of interviewers and will not need you to sacrifice your saturday . however , as last minute changes occur in the interview schedule we may have to contact you for back up . although we are in good shape so far for saturday , our off - cycle recruiting department is looking for interview volunteers for the following dates : thursday , november 9 th from 9 : 00 a . m - 12 : 00 p . m thursday , november 16 th from 9 : 00 a . m . - 12 : 00 p . m . thursday , december 7 th from 9 : 00 a . m . - 1 : 00 p . m . over 50 candidates will be interviewing over these 3 days . the candidates will be a combination of associates and analysts representing schools such as princeton , harvard , university of north carolina , notre dame , university of illinois , emory and many others . each candidate will have 4 interviews . pending the outcome of their interviews we will invite them to stay and attend super saturday that weekend . if for some reason we decide not to further pursue the candidate , we will fly them home that friday morning . we are asking enron employees manager level or higher to volunteer at least one hour to interview candidates ( you will see two candidates in that time ) . if you can volunteer for more than an hour or for more than just one of the stated dates , that would be great ! your help is needed ! please contact cathy lira , at cathy . lira @ enron . com or x 54049 as soon as possible , if you can volunteer any time for interviewing . thanks again for your participation in the associate & analyst programs .",0 +"Subject: re : thursday visit frank , we shall have about 30 people , highly technical ( ph . d . , m . s . level ) . a presentation of 45 minutes would be optimal , assuming you may arrive around 11 : 45 - 12 : 00 . we shall get the projector for you . please , keep all the receipts for refund . vince "" francis x . diebold "" on 12 / 18 / 2000 09 : 47 : 16 am to : vince . j . kaminski @ enron . com cc : shirley . crenshaw @ enron . com subject : re : thursday visit excellent , vince ! yes , i will be happy to make a presentation . do you have a projector to which i could simply hook up my laptop ? could we also have an overhead projector as a backup ? many thanks , frank p . s . how long is optimal ? how large an audience and what are the participants ' backgrounds ? vince . j . kaminski @ enron . com wrote : > frank , > > we are located at 1400 smith . any cab driver can identify the enron > building . when you arrive , > please , call me at 3 - 3848 from the reception to be admitted into the > building . > > alternative phone numbers : 3 - 5290 ( my assistant shirley crenshaw ) . you can > also try to call me on > my cell phone : 713 898 9960 . > > the research group meeting starts at 11 : 30 and lasts till 1 : 00 . can you > make a presentation > about your research projects ? what audio / video equipment do you need ? what > sandwich would > you like to have for lunch ? > > we shall make a hotel reservation for you thursday night . > > vince > > "" francis x . diebold "" on 12 / 18 / 2000 07 : 02 : 46 am > > to : vince kaminski > cc : bmierts @ enron . com > subject : thursday visit > > hi vince , looking forward to seeing you thursday . i arrive at houston - bush > on usair 1769 at 10 : 55 am . please let me know where to go . i also want to > verify that you have booked me a hotel for thurs night . many thanks , and > see you soon , frank > > - - > francis x . diebold > wp carey professor > > department of economics > university of pennsylvania > 3718 locust walk > philadelphia , pa 19104 - 6297 > > fdiebold @ sas . upenn . edu > http : / / www . ssc . upenn . edu / ~ diebold > > ( 215 ) 898 - 1507 telephone > ( 215 ) 573 - 4217 fax - - francis x . diebold wp carey professor department of economics university of pennsylvania 3718 locust walk philadelphia , pa 19104 - 6297 fdiebold @ sas . upenn . edu http : / / www . ssc . upenn . edu / ~ diebold ( 215 ) 898 - 1507 telephone ( 215 ) 573 - 4217 fax",0 +"Subject: re : test dear vince : the email address of candice is cgkao @ mtholyoke . edu i will email you her phone number at mount holyoke this evening . regards ed on wed , 18 apr 2001 vkamins @ ect . enron . com wrote : > test > > vince > >",0 +"Subject: re : powerisk 2001 - your invitation angelika , thanks for the invitation . yes , i shall be glad to attend and repeat the same presentation . vince angelika staude on 04 / 09 / 2001 04 : 19 : 08 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : powerisk 2001 - your invitation powerisk 2001 the global premier forumforenergy trading & risk management 6 th - 9 th november 2001 , paris dear mr kaminski , i am responsible for the programme of this year ' s powerisk conference in paris . helyette geman has informed me that she has contacted you concerning the workshop and that you are happy to do it with her again this year - brilliant ! i would like to know if you are also interested in delivering a paper again . the audience in previous years greatly appreciated your contribution , and i would me more than happy if you could join us again . to give you an idea of the programme so far , these are the ( "" technical "" ) topics that are already covered : chris strickland : forward curve models with jumps for the pricing of exotic energy contracts multi - factor forward curve models for the valuation of energy contracts adding jumps applying the models to exotic energy options extensions to multiple energy contracts les clewlow : valuation and risk management of virtual power stations and gas supply agreements structures of gas supply agreements ( gsa ) relationships between physical and virtual power stations ( pps / vps ) valuation methods for gsa ' s and vps ' s risk analysis of gsa ' s and vps ' s derek bunn , professor of decision sciences , london business school : analysing the impact of neta on market efficiency & volatility in the uk energy market chris harris , director of market development . operations and engineering , innogy : applying cutting - edge portfolio management theory in order to optimise your risk exposure establishing and valuing the key factors using a bottom up approach looking at the interconnection between key factors the treatment of the risk of infrequent but high impact events peter nance , principal , teknecon : combining power systems and monte carlo simulations for effective pricing dan mansfeld , head of risk control , vattenfall : assessing the benefits and risks of using derivatives as part of your risk management strategy spyros maragos : analysing new approaches to building forward curves from available market data tamara weinert , credit and contracts manager , mirant energy : successfully measuring limit setting ; risk reducing structures importance of credit in the organizational structure : reporting ; dependence ; structure of credit department brett humphreys : examining cutting - edge credit exposure mitigation tools : combining counterparty and portfolio credit var techniques helyette geman : pricing of exotic energy derivatives and structured contracts please let me know if you are interested in joining the powerisk 2001 speaker panel , and which topic you would like to cover . i think that something along the lines of last year ' s talk ( state - of - the - art volatility and correlation estimation techniques for multiple energy portfolios ) would be brilliant again , but please feel free to chose something else that has not been covered yet . i look forward to hearing from you , kind regards , angelika staude director powerisk 2001 tel : 0044 207 915 5675 fax : 0044 207 915 5101 ps : for your information , please find enclosed a list of confirmed speakers for powerisk 2001 . - confirmed speakers . doc",0 +"Subject: re : resume vince , could you give him ( bill ) a call at 1 or 2 on friday cst ? his cell phone is 918 - 625 - 6683 . marshall brown vice president robert walters associates tel : ( 212 ) 704 - 0596 fax : ( 212 ) 704 - 4312 mailto : marshall . brown @ robertwalters . com http : / / www . robertwalters . com > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : monday , march 12 , 2001 6 : 36 pm > to : marshall . brown @ robertwalters . com > cc : vince . j . kaminski @ enron . com > subject : re : resume > > > marshall , > > i am catching up with my mail . we would like to talk to this candidate as > well > ( phone interview ) . > > vince > > > > > > marshall brown on 02 / 21 / 2001 12 : 36 : 39 > pm > > to : vince kaminski > cc : > subject : resume > > > vince , > this candidate would be interested in speaking with you . > regards , > > marshall brown > vice president > robert walters associates > tel : ( 212 ) 704 - 0596 > fax : ( 212 ) 704 - 4312 > mailto : marshall . brown @ robertwalters . com > http : / / www . robertwalters . com > > > > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . > > this email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed . if you have received this email in error please notify > the system manager . > > this footnote also confirms that this email message has been swept by > mimesweeper for the presence of computer viruses . > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > ( see attached file : kour _ vas . doc ) > > >",0 +"Subject: nymex chris , the first file might have gone to a wrong chris long . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 27 / 2000 05 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : v charles weldon 09 / 27 / 2000 12 : 22 pm to : christopher . long @ enron . com cc : mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : nymex chris , here is the analysis you requested . let me know if i can be of any further assistance . charlie weldon",0 +"Subject: revised 10 cpm color copier information kevin , i revised the cost on the 10 cpm tab under cpi : - - > thanks , iain . . . . . . . . . . . . . . . . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by iain russell / epsc / hou / ect on 02 / 01 / 2000 10 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - color copier information from : iain russell on 01 / 31 / 2000 11 : 45 pm to : kevin g moore / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , carole rogers / epsc / hou / ect @ ect subject : color copier information",0 +"Subject: thank you dear dr . kaminsky : i want to thank you for interviewing me last friday and inviting me back for a follow - up interview . it was a pleasure to meet you and other members of your staff . my interest in working for enron research was strengthened as a result of the interview . i was most impressed by the quality and diversity of talents within your group . my proficiency in probabilistic analysis and experience in engineering and financial risk management fit nicely with the activities of your group . i have a demonstrated ability to adapt my skills with changing business needs . as a member of shell research , i supported internal clients from different business units . i am confident that i could make a significant contribution to your organization over time . i want to reiterate my strong interest in working with you and your staff . you provide the kind of opportunity i seek . i look forward to seeing you again on my follow - up interview next week . again , thank you for the interview and your consideration . sincerely , rabi s . de ? do you yahoo ! ? yahoo ! mail - free email you can access from anywhere !",0 +"Subject: re : a friend of mine vince , thank you very much for the follow up report . i am sure richard will be very enthusiastic about the opportunity to speak with you and your team . i appreciate your help , and please feel free to contact me if you or shirley need assistance with logistics . again , thank you and i look forward to working with you again this recruiting season . regards , kristin - - - - - original message - - - - - from : kaminski , vince sent : wednesday , may 02 , 2001 8 : 27 am to : gandy , kristin subject : re : a friend of mine kristin , thanks a lot for the resume . we shall arrange a phone interview with richard . this is out standard procedure . a phone interview is followed by the on - site interview , after we determine what is the best team to interview the candidate . vince from : kristin gandy / enron @ enronxgate on 05 / 01 / 2001 05 : 14 pm to : vince j kaminski / hou / ect @ ect cc : subject : a friend of mine vince , last week i was contacted by one of my friends who is very interested in becoming an enron employee . he has a phd and several years research and lab experience . richard is afraid that being a phd is a dying breed and may need to go back to school to obtain an mba . i was wondering if you would mind looking at the attached resume to assess if you have any interest in richard , or if you feel i should encourage him to go back to school . i am unclear as to the qualifications for your group so i apologize if this request is way off base . thank you for your help , kristin gandy associate recruiter enron corporation 1400 smith street eb 1163 houston , texas 77002 713 - 345 - 3214 kristin . gandy @ enron . com >",0 +"Subject: re : aiesec polska - eurolds 2000 czesc wicek , dzieki za notke . spotkalem sie z ta osoba w ubieglym tygodniu - niestety ale wczesniej bylem na urlopie i nikt mi nie sygnalizowal nic na ten temat . a . wodnicki niestety pomieszal fakty i moj numer kontaktowy dostal od ciebie a nie twoj ode mnie - tak jak pisze w swojej notatce . biorac pod uwage , ze pozostalo niecale 7 dni od dnia mojego z nim spotkania do dnia rozpoczecia - nie bylo fizycznej mozliwosci wprowadzenia enron formalnie jako sponsora - zwlaszcza biorac pod uwage , ze caly pr dept . jest zaangazowany w otwarcie siedziby w londynie jutro i pojutrze a aiesec potrzebowal ode mnie decyzje i pieniadze w piatek czyli dwa dni temu . jedyne co moglem zrobic ( i zrobilem ) to wprowadzilem ich do kilku innych instytucji ( czytaj kolegow z hz ) ktorzy mogli podjac decyzje szybciej . pan andrzej wodnicki niestety przyznal sie do organizacyjnego balaganu w wyniku ktorego zagubiono moje namiary telefoniczne i faksowe , a nikt nie pomyslal o zajzeniu do ksiazki telefonicznej po numer naszego biura w warszawie . drugi problem to to ze zabral sie on za organizacje dodatkowych srodkow na dwa tygodnie przed rozpoczeciem imprezy . niestety nic wiecej instytucjonalnie nie moglem dla nich zrobic . zasugerowalem tez , ze gdyby nie dopieli calego finansowania to jeszcze moge sprobowac zebrac mala grupe ludzi , ktorzy mogliby ew . dofinansowac brakujaca kwote jako darowizne indywidualna - ale biorac pod uwage kto jest w komitecie honorowym i ze kwasniewski jest glownym sponsorem - taka forma moze byc politycznie niewlasciwa . mam od nich dostac jakas informacje w przyszlym tygodniu czy dzieki moim dzialaniom cos im sie uda czy tez beda nadal potrzebowac pomocy . pech - ale niestety zawiedli organizacyjnie . pozdrowienia - jarek",0 +"Subject: re : one more thing clayton , i agree . this would happen when there is an insufficient pipeline capacity to move gas . the market developments you describe happen quite often and this is one of the reasons we want to have the model you are working on . vince vince clayton vernon @ enron 01 / 17 / 2000 09 : 30 am to : vince j kaminski / hou / ect @ ect cc : subject : one more thing vince - i forgot to mention to you one other development i propose , a theory i call "" uncoupling "" of basis . as an example , severe cold weather specific to the midwest can result in an elevation of spot market prices at henry hub , where prices elsewhere in the northeast are such that the basis appears to be less than the commodity charge to ship gas from louisiana to the northeast . this can happen when gas is not being moved in the spot market from louisiana to the northeast at that time . the notion of "" equilibrium "" cannot , in my view , always assume "" spot "" gas is flowing along all nodes of the network . clayton",0 +"Subject: re : [ fwd : new commodity marketplace opportunity ] mark lay : again , thank you for listening to my concept . in my search for co - foounder / collaborators and angel investors , disclosing the concept ( for lack of a better title now , i call the system "" lifetrak "" ) and formulating a simple , clear picture is not easy . the attached schematic depicts an overview of the effort . part of the diagram hopes to separate the special interests as participants and member organizations so as to be helpful in the public sector with social issues . the groups fall into two natural sectors ; ( 1 ) supply generators ; and ( 2 ) user / service organizations . in the middle is the system and its management that interconnects those benefiting groups and the donor / recipient lifetrak cardholders . i can embellish more on these later . the diagram gives us a place to begin discuss and talking points in order to try to simplify how the concept could be developed and supported and where the revenue model which creates dramatic efficiencies generates management and license fee . i hope we can get together soon . although vince kaminski cannot directly contribute due to his other commitments , i have copied him to keep him advised ( hoping that he might be able to do more at a later date . ) . best regards , al arfsten mark . lay @ enron . com wrote : > i did understand that you were still at the concept stage . it is a very > interesting proposal and i would like to think about it . > > thanks , > mark > > - - - - - original message - - - - - > from : al arfsten @ enron > enron . com ] > > sent : thursday , january 25 , 2001 10 : 45 am > to : lay , mark > subject : [ fwd : new commodity marketplace opportunity ] > > mark : per our brief conversation this morning , the attached email was > sent to you yesterday . i hope that you might understand that i am > conceptually looking for "" founders "" and at the "" pre "" business plan > stage . there is an enormous problem existing with a very attractive > economic reward and willing participants needing this solution . i need > help . al arfsten 713 965 2158 > > content - transfer - encoding : 7 bit > x - mozilla - status 2 : 00000000 > message - id : > date : wed , 24 jan 2001 15 : 49 : 37 - 0600 > from : al arfsten > organization : bfl associates , ltd . > x - mailer : mozilla 4 . 7 [ en ] c - cck - mcd nscpcd 47 ( win 98 ; i ) > x - accept - language : en > mime - version : 1 . 0 > to : mark . lay @ enron . com > subject : new commodity marketplace opportunity > content - type : text / plain ; charset = us - ascii > > mark lay : i shared confidentially with vince kaminski my developing > concept of a highly inefficient not - for - profit enterprise with > dramatically increasing costs . i believe that a for - profit economic > model is possible that should reverse these skyrocketing costs and > ultimately lower the commodity thereby having a national , if not , global > impact of health care costs . vince seems to also believe in the > concepts potential . the ceo of one of the biggest u . s . blood banks has > already asked to become involved . i would like involve more people > with vision , means and desire to help make this a reality . i would look > forward to meeting with you to talk further . al arfsten 713 965 2158 - lifetrak vision chart 012601 . doc",0 +"Subject: aram rick , aram is coming to houston , in my view , to explore the possibility of coming back to enron ( given uncertain situation under the scottish rule at the old pacificorp ) . i shall suggest that he meet with you and / or ted murphy as well . i can wait for karen to come back . it ' s not urgent . we are still working on the volumetric risk module and the team is making a very good progress . they gave a presentation today to rick carson and me . we have to decide what comes next ( asset / liability model or operational risk model ) . vince",0 +"Subject: re : publishing my real options work steve , we can accelerate the process . we need some internal approvals . please , talk to richard lewis and let him know i think it ' s ok to publish it because it is a very high level theoretical paper . vince steven leppard 02 / 01 / 2000 09 : 56 am to : vince j kaminski / hou / ect @ ect cc : subject : publishing my real options work vince what are the chances of , say , risk publishing my work before the june conference ? do they have peer review etc . ? steve",0 +"Subject: re : b . brandfass barbara , my apologies . i was traveling and then we had the usual end of the quarter pandemonium . i am sending you my presentations and would like to get back to you with some questions regarding your products . vince "" barbara e . brandfass "" on 07 / 10 / 2000 04 : 15 : 33 pm to : cc : "" amir sadr "" subject : b . brandfass hello vince , ? sorry to be a bother but do you have those materials from your talk in may ? ? i look forward to hearing from you . ? thank you , ? barbara e . brandfass , chief of business development panalytix , inc . , www . panalytix . com 212 974 1022 , b @ panalytix . com",0 +"Subject: re : university of texas conference on energy finance , february 2001 sherri , thanks . yes , it ' s february the 22 nd . vince enron north america corp . from : jeff skilling @ enron 09 / 20 / 2000 12 : 49 pm sent by : sherri sera @ enron to : vince j kaminski / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron subject : re : university of texas conference on energy finance , february 2001 vince , i am checking the date on jeff ' s calendar ( i ' m assuming the date is february 22 ? ) . i am holding that date whole week for a trip abroad , but i think we have some flexibility on that and am checking it out . i ' ll be back in touch as soon as i ' ve resolved that . srs vince j kaminski @ ect 09 / 20 / 2000 11 : 41 am to : jeff skilling / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron subject : university of texas conference on energy finance , february 2001 jeff , our friends at the university of texas are planning a conference on energy economics and finance in february of next year . they would like very much to have you as a keynote speaker . given our good , long - term relationship with ut , i would recommend that you speak at this conference . i talked to prof . ehud ronn a few times about the program and i think that this will be an excellent forum to present enron ' s accomplishments and agenda for the future . i am sure that rick causey will join me in making the same recommendation . vince",0 +"Subject: london research the enron europe research group has experienced rapid growth over the last year as it has become clear that there are tremendous opportunities to utilize their unique quantitative skills in supporting both new and ongoing business efforts in the london offices . because of this , we are appointing a group leader with the view to leveraging the group better across the many business areas in enron europe which are benefiting from research support . effective immediately , steven leppard will take responsibility for spearheading research efforts in london and managing the london based research team . steve joined enron in early 1999 and has distinguished himself through his many contributions including analysis of the "" supergoal "" scheduling system and development of a diagrammatic approach for real options analysis . he holds a phd . in mathematical physics from kings college london and an honours degree in mathematics from imperial college . steve is also a black - belt level instructor in kungfu . please join us in congratulating steve on his new responsibilities .",0 +"Subject: re : enron broadband services dear stinson , i apologize for the delay in responding . i was away wed - sun and just returned . thank you very much for your email . i plan to make a firm decision on my future plans sometime in the later half of april , and would be extremely interested in getting an offer from enron . i think the opportunities at enron are very exciting and there is room for some real contribution to the group . best wishes , salal | > | > | > salal , | > | > hope everything is going well with your thesis . we enjoyed hearing about | > your research topics during your visit to houston and feel that you could ad * d | > many new ideas to the innovative environment that we are cultivating at ebs . | > i regret being a bit slow to get back to you after your visit . please let * me | > know if you are still available and interested in coming to ebs . if so , i | > will work on getting a formal offer out to you asap . if not , we would sti * ll | > be interested in staying in touch in case you would be interested in working | > with us at some point in the future . | > | > best regards , | > | > - - stinson | > | > salal humair massachvsetts institvte of technology operations research center rooms e 40 - 130 , 5 - 332 a x 3 - 3014 , x 5 - 9727 ",0 +"Subject: maths course dear vince , ? i just wondered whether you have had chance to look at your bullet points and bio for the maths course . if so please could could email them to me as soon as possible . could you also let me know whether your company affiliation should now be enron north america . ? thanks vince and best regards , ? vicky",0 +"Subject: energycast dear vince , i hope your trip to australia was successful . it ' s one of my favorite places to go . i ' ve copied you on the email to mike initiating enron ' s trial service to energycast . thanks for helping to set this up . would you ask the authorities in enron to refresh my access to enrononline ? my guest user id as ena 61296 and my guest password was tr 84 byl 3 . they no longer work , probably because i haven ' t visited the site in months as we were in full development mode on energycast . vince , you will note in our website references to forward prices of power in nepool , nypp , and pjm . we use reuters as a reference - - not satisfactory . if your traders like energycast and enron became a client , would enron consider linking its prices to our site ? we have to improve over the reuters quotes and regard enrononline or bloomberg as the best candidates . over time , as our service spreads i believe this could help generate deal flow for your traders . let me know what you think . ed",0 +"Subject: re : lawyer sorry to hear this - i have generally shared my materials with colleagues - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , march 22 , 2001 6 : 21 am to : macmilli @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com subject : re : lawyer ian , sorry for a delay in responding to you . i am currently in london , flying back to houston tomorrow . the problem is not with the lawyers . we worked on our presentation materials together with a professor from another university and we agreed to use these materials only internally . we have to honor our commitment to him . i am sure that this is exactly what you would have expected from us if we had made a similar commitment to you . vince "" macmillan , ian "" on 03 / 21 / 2001 04 : 31 : 27 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : lawyer what do i need to do to move this thing forward ? i suspect that the problem is basically with the lawyers . they only know how to stop things , but in a way they play a role in global society . if it were not for the handicaps they lay on us the rest of the world would never have a chance . - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : macmilli @ wharton . upenn . edu cc : vince . j . kaminski @ enron . com sent : 3 / 8 / 01 12 : 12 pm subject : re : lawyer ian , sorry for a delay in getting back to you . i have one challenge i did not anticipate when i talked to you the first time about our real options internal seminar . the materials were prepared in collaboration with a professor from another school , and there is some sensitivity regarding the intellectual property rights and the ability to distribute the materials outside enron . please , give me some time to find out if i can work around this issue . vince "" macmillan , ian "" on 03 / 07 / 2001 06 : 46 : 28 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : lawyer i still have not heard from your lawyer . i would like to see whar materials you are using and assess how we could work on the topic of real options with enron",0 +"Subject: re : your visit to enron frank , thanks a lot . are you planning to make a general presentation on your work in the weather area ? if this is the case , i would invite to our lunch meeting the traders from the weather derivatives desk . vince "" francis x . diebold "" on 11 / 04 / 2000 08 : 47 : 41 am to : shirley . crenshaw @ enron . com cc : vince kaminski subject : re : your visit to enron shirley , the 21 st is perfect . i will go ahead and purchase my plane tickets . would you please make me a hotel reservation for the night of the 21 st ? many thanks , frank diebold shirley . crenshaw @ enron . com wrote : > good morning professor diebold : > > i am vince kaminski ' s assistant and he has forwarded your emails to me > for scheduling purpose . unfortunately , we have a conflict on december > 14 th . can you possibly come on the 21 st ? > > i hope you have not already made your reservations . if i can do anything > to assist you , please let me know . > > best regards , > > shirley crenshaw > administrative coordinator > enron research group > 713 - 853 - 5290 > > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 03 / 2000 > 09 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - - > > vince j kaminski > 11 / 02 / 2000 04 : 30 pm > > to : "" francis x . diebold "" @ enron > cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect > subject : re : visit ? ( document link : shirley crenshaw ) > > frank , > > dec 14 would be better for us . we have already scheduled > an internal presentation on december 7 . please , go ahead and make a > reservation . > the best place to stay is hyatt regency downtown or doubletree downtown > ( within a walking distance to enron ) . it is important to specify the > downtown > location for both hotels . > > vince > > "" francis x . diebold "" on 11 / 02 / 2000 03 : 00 : 49 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : visit ? > > sounds good , vince . how about dec 7 ? the roundtrip coach fare , regardless > of > airline , is about $ 1900 . i hope that won ' t break the bank . once i have > your > approval , i ' ll go ahead and book it . best , frank > > vince . j . kaminski @ enron . com wrote : > > > frank , > > > > yes , i would be very interested in meeting with you in houston in > december . > > the best day for visit would be thursday when my group has a lunch > meeting > > and you could meet the rest of the research unit . > > > > please , let me know what day would work for you . we shall be very glad to > > cover the cost of your trip . > > > > vince > > > > i > > > > "" francis x . diebold "" on 10 / 31 / 2000 01 : 01 : 11 pm > > > > to : vince kaminski > > cc : > > subject : visit ? > > > > hi vince , > > are you still interested in my visiting for a day , perhaps in dec or > > jan ? i have begun a project on unobserved - components modeling of > > weather patterns , so it would be productive and fun to compare notes . > > best , > > frank > > > > - - > > francis x . diebold > > wp carey professor > > > > department of economics > > university of pennsylvania > > 3718 locust walk > > philadelphia , pa 19104 - 6297 > > > > fdiebold @ sas . upenn . edu > > http : / / www . ssc . upenn . edu / ~ diebold > > > > ( 215 ) 898 - 1507 telephone > > ( 215 ) 573 - 4217 fax > > - - > francis x . diebold > wp carey professor > > department of economics > university of pennsylvania > 3718 locust walk > philadelphia , pa 19104 - 6297 > > fdiebold @ sas . upenn . edu > http : / / www . ssc . upenn . edu / ~ diebold > > ( 215 ) 898 - 1507 telephone > ( 215 ) 573 - 4217 fax - - francis x . diebold wp carey professor department of economics university of pennsylvania 3718 locust walk philadelphia , pa 19104 - 6297 fdiebold @ sas . upenn . edu http : / / www . ssc . upenn . edu / ~ diebold ( 215 ) 898 - 1507 telephone ( 215 ) 573 - 4217 fax",0 +"Subject: re : risk 2000 panel discussion my phone 816 - 467 - 3569 - - - - - original message - - - - - from : shirley crenshaw [ mailto : shirley . crenshaw @ enron . com ] sent : friday , may 26 , 2000 9 : 17 am to : oliver @ risk . co . uk ; jefferid @ kochind . com ; sbramlet @ utilicorp . com cc : vince j kaminski subject : risk 2000 panel discussion good morning gentlemen : i will go ahead and schedule the conference call for wednesday , may 31 st at 11 : 00 am est ( 10 : 00 cst ) . please let me know the telephone numbers you may be reached at and vince will call you . if you find you cannot do this , please let me know . thanks and have a wonderful weekend . shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 05 / 26 / 2000 08 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 05 / 25 / 2000 03 : 54 pm to : oliver @ risk . co . uk , jefferid @ kochind . com , sbramlet @ utilicorp . com cc : subject : risk 2000 panel discussion hello everyone : vince kaminski would be available for a conference call on wednesday , may 31 at 10 : 00 or 11 : 00 am est . the rest of the day is rather full . please let me know if either time is convenient for you . if not , maybe we could do it on june 1 - he is free most of the day with the exception of 12 : 30 - 2 : 00 est . look forward to hearing from you . thanks ! shirley crenshaw administrative coordinator enron corp . research 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: enron in europe : emerging europe : enron plugs on in poland - - - power market ' s vast . . . vicek - sadzilem , ze moze bedziesz chcial to przeczytac . pozdrowienia - jarek - - - - - - - - - - - - - - - - - - - - - - forwarded by jarek astramowicz / war / ect on 2000 - 04 - 17 17 : 15 - - - - - - - - - - - - - - - - - - - - - - - - - - - iona maclean 2000 - 04 - 13 08 : 23 to : jackie gentle / lon / ect @ ect , eric shaw / lon / ect @ ect , jarek astramowicz / war / ect @ ect , brian stanley / eu / enron @ enron , philip davies / lon / ect @ ect , ed cattigan / eu / enron @ enron , nigel beresford / eu / enron @ enron , andrew morrison / lon / ect @ ect cc : subject : enron in europe : emerging europe : enron plugs on in poland - - - power market ' s vast . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by iona maclean / lon / ect on 13 / 04 / 2000 07 : 23 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : djcustomclips @ djinteractive . com 13 / 04 / 2000 07 : 30 please respond to nobody @ maill . djnr . com to : 96939 @ mailman . enron . com cc : ( bcc : iona maclean / lon / ect ) subject : enron in europe : emerging europe : enron plugs on in poland - - - power market ' s vast . . . emerging europe : enron plugs on in poland - - - power market ' s vast potential holds allure , but an uncertain future - - - after six years , profit from company ' s power operations remains years away by elizabeth williamson 04 / 13 / 2000 the wall street journal europe 9 ( copyright ( c ) 2000 , dow jones & company , inc . ) nowa sarzyna , poland - - from a small power plant humming among the birches near the ukrainian border , enron corp . has staked its claim on the polish energy market . yet after six years , the company is still seeking a mother lode . the houston - based energy producer and trader entered poland in 1994 , nabbed one of the first power - trading licenses to go to a foreign company and began work on elektrocieplownie nowa sarzyna , poland ' s first new , foreign - operated heat - and - power plant . other companies followed , including electricite de france , rwe ag of germany , vattenfall ab of sweden and tractebel sa of belgium . the prize could be a rich one . all of these companies hope to profit as poland sells its state energy assets and frees prices before joining the european union . a wholesale power bourse is due to open in warsaw in july . and the country ' s transmission links to markets east and west could make poland the power - trading hub of central europe . but after six years in poland , enron has yet to earn a profit . net income from nowa sarzyna , which is to begin commercial production later this month , is at least five years away . power - trading operations might generate profits next year , if the new bourse gets moving . but that is "" one big question mark , "" says jarek astramowicz , enron poland ' s president . indeed , despite its promise , poland ' s energy sector remains a sizzling tangle of aging plants , archaic market agreements and complex , shifting regulations . enron , with $ 40 billion ( 41 . 69 billion euros ) in annual revenue , is an innovator and an investment bellwether for its peers . but in a power market as negatively charged as poland ' s , the company also is an example of how shaky market conditions can keep even the savviest competitors offline . "" these are very large operations and to some extent they can bear some risks , "" says pawel kaminski , energy - sector operations officer at the world bank in warsaw . "" but eventually they have to generate some return . "" enron pioneered wholesale gas and electricity trading in the u . s . it entered europe in 1989 , setting up in london as the u . k . ' s energy sector liberalized . it entered the nordic market in 1996 , and today is the nord pool ' s largest - volume trader . enron says it takes about two years to find a site and obtain permits for a power plant , and a further 29 months for construction . just four years after entering the u . k . , enron finished its 1 , 875 - megawatt teesside plant . teesside ' s capacity and cost , at gbp 795 million ( 1 . 32 billion euros ) , are many times larger than nowa sarzyna ' s . yet teesside was completed in only two - thirds the time . the company declines to compare development times in various countries . "" i wouldn ' t necessarily put poland into the same category as russia , "" says philip davies , regulatory and government - affairs manager at enron europe in london . "" but obviously , given poland ' s ( planned economy ) past , it probably takes a bit longer to work through the regulatory process and get to the starting point . "" at nowa sarzyna , it took enron nearly twice the usual time to reach the starting point , even though mr . astramowicz already knew the site , and the polish power industry ' s rules . the nowa sarzyna plant was mr . astramowicz ' s brainchild , and he burned out the engine in his first bmw as he traveled between warsaw and the town to craft the deal . a freelance energy - sector entrepreneur before joining enron , mr . astramowicz sold his interest in nowa sarzyna to enron in 1998 . enron has spent $ 132 million to build nowa sarzyna , a 116 - megawatt , gas - fired combined heat - and - power plant . quiet , clean and efficient , the plant stands in stark contrast to most of poland ' s belching , coal - fired behemoths . when it starts up this month , it will sell its electricity to the polish power grid , the country ' s high - voltage network , under a 20 - year power - purchase agreement , or ppa , that enron won in 1997 . steam output goes to organika , the chemical company next door , and helps heat the town of nowa sarzyna . the nowa sarzyna plant is more than 80 % financed by commercial - bank loans for which the only collateral is the plant ' s concluded contracts . "" they were betting on their good name , "" says michael davies , a partner with allen & overy , the warsaw law firm that advised enron poland ' s lenders . "" they are pushing envelopes all the time . "" that is especially true in a market with 30 % overcapacity , where an energy law didn ' t even exist until 1997 . says peter bisztyga , emerging europe utilities analyst at solomon smith barney in london : "" because enron signed a ppa , they are ok . . . ( but ) i ' m really not sure building nowa sarzyna was such a good idea . "" mr . bisztyga says enron could have generated a faster return by renovating an existing power plant . but , he acknowledges , nowa sarzyna "" allowed enron to get into the polish market early and stamp their name on it . "" in 1994 , polish power plants weren ' t for sale . energy asset privatization , discussed for years , began in earnest only this year . by 2002 , the polish government proposes to sell off stakes in dozens of power plants , 33 distribution companies and the polish power grid , a 12 , 000 - kilometer national transmission network of high - voltage lines . the assets have a total book value of 33 billion zlotys ( 8 . 4 billion euros ) , but murky regulations have driven prices down . "" the regulations don ' t promote competition and so you don ' t really know the price of electricity , "" says bengt wegemo , president of vattenfall poland . earlier this year , vattenfall paid $ 235 million for 55 % in warsaw - based elektrocieplownie warszawskie , promising $ 340 million in investment in the heat - and - power plant over the next 10 years . investors hope the new power market will bring clarity over pricing . ultimately , 170 licensed energy traders and 200 large power users will trade on the bourse , setting the wholesale price of electricity . the polish bourse will be modeled on its nordic counterpart . enron , the nord pool ' s largest trader , hopes to post polish trading profits by 2001 . but first , say market experts , poland ' s 1997 energy law must be amended to ease functioning of the bourse , and free up access to poland ' s distribution network . further , the government says it must solve the competition problem posed by the polish power grid ' s power - purchase agreements , which account for 70 % of energy sales in poland . some state - owned plants used the agreements as collateral to secure modernization financing . when prices are freed , these plants might go bankrupt if forced to compete with plants that didn ' t spend money to modernize . the government is contemplating a special fund to compensate the modernized plants for their extra costs . though nowa sarzyna is a private plant , the price enron must charge for its power is about twice what outmoded plants charge . "" we are hoping that continuous , efficient operation of the plant will generate us a ( bigger ) profit , "" mr . astramowicz says . another problem is cross - border power trading , where contradictory legislation essentially gives a monopoly to the polish power grid , also known as pse . enron and others protest that pse shouldn ' t compete with electricity - market participants who contract with it for transmission service . pse intends to stay in the trading business , says marek zerka , pse ' s vice president . in late march , pse and local company kulczyk holding signed an agreement with preussenelektra ag of germany to export electricity and coal to eu countries via germany . "" this is great news , "" mr . astramowicz says . "" if this joint venture gets access to pse ' s cross - border transmission capacity . . . i would expect pse to confirm open access to all market participants . "" enron and others are pushing hard for that access . "" as soon as the market becomes open , free and non - discriminatory , we will come out at a decent profit , "" mr . astramowicz says . folder name : enron in europe relevance score on scale of 100 : 78 to review or revise your folder , visit http : / / www . djinteractive . com or contact dow jones customer service by e - mail at custom . news @ bis . dowjones . com or by phone at 800 - 369 - 7466 . ( outside the u . s . and canada , call 609 - 452 - 1511 or contact your local sales representative . ) copyright ( c ) 2000 dow jones & company , inc . all rights reserved",0 +"Subject: re : stanford check paul , thanks a lot . vince from : paul racicot @ enron communications on 10 / 20 / 2000 06 : 03 am to : stinson gibner / enron communications cc : vince j kaminski / hou / ect @ ect subject : stanford check fyi - - - - - forwarded by paul racicot / enron communications on 10 / 20 / 00 06 : 06 am - - - - - steven batchelder 10 / 19 / 00 04 : 36 pm to : paul racicot / enron communications @ enron communications , sally slaughter / enron communications @ enron communications cc : subject : stanford check just wanted to let you know that the check went out fedex - priority overnight . they should have it tomorrow morning . the tracking number is 823038069157 and can be tracked at www . fedex . com sally ~ per our conversation i will interoffice you the airbill slip . if you need anything else , please let us know . thanks . steven batchelder accountant enron broadband services 713 - 345 - 9340 steven _ batchelder @ enron . net",0 +"Subject: off site with john griebling ' s optical network engineers hi shirley , please give me a few dates form end of march to first week in april to do an offsite for vince ' s direct reports ( including myself ) and selected ebs research people . this includes , vince direct report from our research group and the following people from ebs research : ravi , stinson , samer , chinowee . the agenda will include : research people giving several mini presentations on trading , market development ( history of nat gas , electricity , etc . ) , pricing , etc . . . john ' s people will do similar mini presentations on optical network engineering , optical components , provisioning , telecom markets , pricing , etc . . . . if scott yeager can make it , he will do his magic via quick motivational speech on the vision of ebs , etc . . it is will be strictly technical to technical professional meeting to get to know each others group . so , do not include others unles stinson or i look at the additions case - by - case . john suggested scott yeager ' s summar house in denver for this event . please follow this up with scott ' s assistant ( scott may not know about this if john has not told him so you should explain the intend , etc . ) to get in touch with scott . i ' ll cc this e - mail to give scott a heads up . we can do half day friday and all day saturday . or , we can do the whole weekend and people will have an option to bring family to nearby hotel ( family expense in not on ebs ) . we will have to sort all this out when we have a chance to talk to john & scott . i just wanted to get the ball rolling but getting dates and place first . thanks , ravi .",0 +"Subject: vince kaminski ' s itinerary - week of 9 / 30 - 10 / 7 / 00 professor martin : attached is vince ' s itinerary . let me know if you need anything else . - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 27 / 2000 11 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 09 / 27 / 2000 10 : 45 am to : "" john d . martin "" @ enron cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : hello vince john , i shall be in paris and london next week . we can schedule a call sometimes next week . i shall ask my assistant to send you my itinerary . a late call ( paris time ) would work for me . the time difference is 6 hours . this would mean a call sometimes around 3 - 4 p . m . our time . please , indicate which day works best for you . vince "" john d . martin "" on 09 / 27 / 2000 09 : 45 : 50 am to : vince . j . kaminski @ enron . com cc : subject : re : hello vince vince , good morning . unfortunately i ' ll be in milwaukee visiting harley - davidson about a book revision project both thursday and friday . how about early next week . i appreciate your patience with me . when you suggested a time last week i was "" unprepared "" and embarassed to call and expose my ignorance . since then i have re - read the enron gas services case and have a pretty good feel for how you guys have melded the physical and financial sides of the business . the other theme that i have heard many enron speakers use is the "" de - regulation "" of markets . this certainly played a factor in the power business and presumeably was behind the water business . if you ' ll let me know when it ' s convenient to call next week i ' ll have some notes put together . i ' m teaching a class for a colleague on monday so anytime after that is great . thanks and hope you had a pleasant trip . john p . s . i saw that the univ of new orleans has an energy finance endowed chair for a financial economist open . if you ever decide to move back to the life of poverty of an academic i would love to recommend you for such a post . at 08 : 26 am 9 / 27 / 00 - 0500 , you wrote : > > john , > > what about thursday , 10 : 30 a . m . ? i have just come back from europe > last night and i am trying to organize my schedule for the next few days . > > my phone number is 713 853 3848 . > > > vince > > > > > > > "" john d . martin "" on 09 / 22 / 2000 01 : 57 : 47 pm > > to : vkamins @ enron . com > cc : > subject : hello vince > > > vince , > > can i call you tuesday morning about our writing project ? i have to be in > austin for a dental appointment on monday at noon and that will probably > wipe out the day . give me a time and number where i can reach you . > > john > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : in confidence steve , rac will be a bit unhappy about it . i think that bjorn will object to it . let me talk to you tomorrow over the phone and discuss it . the question is how to present it to rac in a such a way that rodrigo will not be put in a bad light . vince steven leppard 11 / 06 / 2000 06 : 37 am to : vince j kaminski / hou / ect @ ect cc : subject : in confidence hi vince i ' ve had a chat with rodrigo lamas , who is a bit unhappy in his current role in rac ( he wants to be a bit more proactive , and finds the inertia frustrating ) . i would be very interested in bringing him into research with responsibility for var / risk mgt , which is where his professional experience lies . he also has a phd in optimization from imperial college london which i ' m sure we can make use of . there will obviously be some political issues involving such a move only 4 months into his career at enron , and if you ' re able then i ' m sure he ' d appreciate a chat with you . we ' re awaiting your response before rodrigo mentions this to anyone else . steve",0 +"Subject: carnegie mellon team meeting greetings , carnegie mellon recruiting team ! each of you has been chosen to represent enron for our fall 2000 recruiting efforts at carnegie mellon university . as part of the team , you will be challenged with choosing the best candidates from carnegie mellon ' s graduate school to join our associate program . our first campus event will be on september 15 and interviews will be held on campus december 11 and 12 . i hope you are all able to participate in the exciting process of recruiting young talent . we will be more formally organising ourselves in the next couple of weeks . currently , we are planning to have a brief team meeting in order to make introductions , inform you about the associate program , and discuss the fall recruiting calendar . to that end , please contact me with any questions or comments you may have . the team meeting date is set for august 31 st at 10 am in room 19 c 2 . please rsvp to me as soon as possible . i look forward to meeting you all soon . sincerely , kristin gandy associate recruiter x 53214",0 +"Subject: iris mack vince : i received a phone call yesterday afternoon from iris , with a special request of you . she says that she will have to break her lease when she comes to houston . she will have a three - month period during which she will have to pay rent ( march , april and may ) , at the monthly rate of $ 1 , 175 . she is asking if we would be willing to pay $ 3 , 525 to compensate her for this extra expense . i have a phone call in to the relocation department to find out how much cash iris will be receiving from us under the normal relocation benefits , and will let you know as soon as i hear from them . i would imagine that it is a fairly substantial amount , since she is moving from california and since our relocation benefit is very generous . molly",0 +"Subject: professor bambos ' visit shirley : professor bambos has the following appointments : jim fallon 9 : 00 am - 9 : 30 am per fallon ' s assistant lucy marshall - ext . 34525 john echols 2 : 00 pm - 2 : 30 pm per echols ' assistant jo olsovsky - ext . 58064 enron tour 2 : 30 pm - 3 : 30 pm per courtney votaw - ext . 39390 anita",0 +"Subject: re : introduction meeting : rac london quants and houston research rodrigo , i think it is churrasco ' s , a south american restaurant . i shall make reservations for the 12 th . i shall also arrange the meetings on tuesday with different units of the research group . vince rodrigo lamas 08 / 24 / 2000 01 : 59 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : introduction meeting : rac london quants and houston research vince , thank you very much . i would rather talk to your group on sep the 12 th ( tuesday ) . i hope i will be entitled to disturb them again during the rest of the week as well . we can certainly go out for dinner . steven mentioned a brazilian restaurant he went to and i am looking forward going there . this in case you are not vegetarian . thanks again , rodrigo vince j kaminski 24 / 08 / 2000 19 : 54 to : rodrigo lamas / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : introduction meeting : rac london quants and houston research rodrigo , we shall be very glad to meet you . if you can dedicate one day to meeting the members of the research group i could arrange a series of meetings with different units . what about sep the 11 th or sep the 12 th ( monday or tuesday ) ? if you are free one evening we can have dinner together . vince rodrigo lamas 08 / 24 / 2000 11 : 01 am to : vince j kaminski / hou / ect @ ect cc : subject : introduction meeting : rac london quants and houston research vince , i work for the market risk rac london group . i review the quantitative issues arising from enron europe models . i am in this function given my background ( phd from imperial college - london ) and also due to my past experience as risk manager for a brazilian investment bank and louis dreyfus . my agenda includes the review of a number of deals ( wessex , tpl , eastern , . . . ) , as well as the review of the construction of european gas and power price curves and their respective volatility curves . currently i am devoting most of my time to the analysis of the uk gas market , its respective price curve and term structure of volatility . bjorn and david suggested it could be very productive if i had the chance to meet you and your team to discuss issues related to modelling prices and risk measurement tools . i will be in houston from the 10 th to 15 th september . i wonder if you could book some time for me in your agenda and also ask some members of your team to do the same . thanks , rodrigo",0 +"Subject: 2000 expenses as you all know the deadline for 2000 invoices to ap was on friday , december 15 , 2000 . in order to get all 2000 expenses accounted for in 2000 , i need an e - mail from you with name of the vendor , amount , cost center to be billed to , contact person ( if any ) . some of the costs to consider : services provided to enron in 2000 but we have not receive the invoices , employee expense reports , and / or any purchases we made in 2000 , but have not submit the invoices to ap by the cutoff date . i need this information by noon friday , december 29 , 2000 . if you have any questions , call me at 5 - 7094 . thanx irma , kristi and ramona , will you make sure everyone in hr department know the deadline . thanx .",0 +"Subject: day rate hedge vince , included is the rest of the prices for 4 th and 5 th generation semi - submersibles in the gulf of mexico . the only additional data is from sept 99 through dec 99 . chris and i look forward to your analysis on tuesday .",0 +"Subject: re : greetings frank , thanks for your message . see you in houston and happy holidays . vince frank qian on 12 / 19 / 2000 11 : 56 : 14 pm to : vince . j . kaminski @ enron . com cc : subject : greetings dear mr . kaminski : i am very glad to be slected for the 2 nd round interview at enron . it will be at the end of january . i look forward to seeing you again and meeting other people of research group . have a happy holiday and new year ! frank",0 +"Subject: reviewer approval please note that your employees have suggested the following people to complete a feedback form on their behalf . you will need to access the performance management system ( pep ) to either approve or decline these suggested reviewers . once you have approved the suggested reviewers they will be notified and can begin completing the feedback form . your list of employees that have suggested reviewers are listed below : date suggested : jun 09 , 2000 feedback due date : jun 16 , 2000 employee name : roberts , michael a",0 +"Subject: fw : meeting follow - up dan sent this information as a follow up to our meeting this week . if there is any additional information you would like to see , please let me know . in the absense of any objections , i would like to begin having our analysts use the financial stress score to underwrite small exposures where financial statements are not received . in addtion to saving some expense , this will allow greater consistentency . and moving forward , i believe we can map expected defaults from fstress score ranges to those implied in credit spreads , and in doing so map to e - ratings for use in credit reserve analytics . i ' ve had prelimiary discussions with rabi and amititava regarding this . any additional insights would be helpful , and thanks for your help . - - - - - original message - - - - - from : "" barry , dan "" @ enron on . com ] sent : thursday , march 15 , 2001 10 : 26 am to : mark _ wilson @ enron . com cc : marcom , karen ; johnson , judy subject : meeting follow - up mark , attached are a presentation on the financial stress score and the countries that have risk scores available today . please let me know if you have any questions . in response vince ' s question regarding false positives from the model , that is a little difficult to answer . the model is predicting the likelihood of a company experiencing financial distress . we are not saying that all companies with a high risk score will experience financial distress . in other words , it is not really a yes or no proposition . it ' not like a drug test where the test either comes back positive or negative and ocassionally , you get a false positive test result . we are identifying companies that are at high risk for failure . some of those high risk companies will fail and some will not fail . how many in each classification that will ultimately fail is addressed in the performance charts attached below . please let me know if you have any other questions or need any additional information . dan barry dun & bradstreet analytical services barryd @ dnb . com phone ( 713 ) 953 - 5458 fax ( 713 ) 953 - 5454 > > > > - enron fss . ppt - globalfailure . ppt - fin stress understanding . doc - fss performance . doc",0 +"Subject: benefits - personal days good morning all : the question has arisen as to whether enron has "" personal days "" , that , you can take in case of repair problems at home ; car problems ; sick spouse , sick child , etc . i checked with hr and the policy manual and the answer is "" no "" , but they can be designated at the discretion of the supervisor . i talked this over with vince and he has decided that the research group will be allowed two ( 2 ) personal days per year to take care of personal business and not have to take a vacation day , discretionary day , or leave of absence . if you have advance notice ( such as an air conditioner repair scheduled ) , please let me know when you are going to take these days . if an emergency arises with no notice , please call in and let me know that you are taking a personal day . it will be coded on your time sheet . these two personal days will in no way cancel or take the place of , "" funeral leave "" , "" family leave "" , or "" civic duty leave "" . they are just a way of being able to take care of repair problems and other personal problems that arise . these should be very beneficial and i am sure very much appreciated by all of us . if you have any questions , please call me . shirley 3 - 5290",0 +"Subject: restructuring today - 6 / 23 mark , please , tale a look at the attached newsletter . an interesting story on gaming cal px . let me know if you have problems opening the document . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 23 / 2000 05 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - energy info source on 06 / 23 / 2000 07 : 24 : 22 am to : cc : subject : restructuring today - 6 / 23 energy info source - http : / / www . energyinfosource . com - is privileged to make available to you a free trial subscription to restructuring today until july 11 . restructuring today is the leading daily trade newsletter focused solely on the deregulation , restructuring and convergence of the electric , natural gas and telecommunications industries , with a special focus on emerging markets . you do not need to do anything to continue to receive this trial . however , if you do not want to receive any more trial issues , please reply to us and with the word "" cancel "" in the subject line . restructuring today has distinctive industry news and analysis which energy info source can ' t deliver from the wire services , and at only $ 487 ( regular price for an individual subscription ) for 250 issues each year , we consider it a bargain . as a special offer to energy info source users , restructuring today is offering $ 50 off the regular subscription price . act before july 14 to receive your $ 50 off ! check out the attached sample , and if you ' d like to order an annual subscription , choose your favorite way : - hit reply and fill out the subscriber information below . - for fastest service call 888 - 986 - 2250 today ! - there ' s a handy subscription coupon on the last page of each issue of restructuring today . for credit card orders , please use the subscription coupon in the back of the sample issue or call 888 - 986 - 2250 . for more information , feel free to email us at custsvc @ energyinfosource . com or call us at 888 - 986 - 2250 . requires acrobat reader 3 . 1 or higher . the latest version is available free at : - - - - - - - - - - - - - - - - - - - - - - please begin my subscription to restructuring today right away ! name : title : company : billing address : address cont . : city : st : zip : country : usa phone : fax : email address : [ ] bill me [ ] call me for my credit card information - rto 00623 - eis . pdf",0 +"Subject: enside draft here is the version with my modifications over mike ' s version . please feel free to make modifications / corrections . osman",0 +"Subject: default rates please see below for my note to jeremy at the bottom and his reponse . i have placed mark ruane ' s yields against a mid november default frequency table . note there may be a slight shearing in dates , but the concept is more important : market implied cumulative default rates ( % ) : 1 year 5 year 10 year aaa 0 . 51 5 . 74 14 . 54 aa 0 . 67 6 . 39 16 . 61 a 0 . 98 8 . 98 21 . 03 bbb 1 . 17 9 . 88 22 . 39 bb 3 . 27 18 . 62 37 . 51 b 4 . 65 24 . 21 46 . 27 s & p historical default rates ( % ) : 1 year 5 year 10 year aaa 0 . 00 0 . 13 0 . 67 aa 0 . 01 0 . 33 0 . 90 a 0 . 04 0 . 47 1 . 48 bbb 0 . 21 1 . 81 3 . 63 bb 0 . 91 8 . 82 14 . 42 b 5 . 16 20 . 95 27 . 13 in looking at the one - year transition rates as a very rough proxy for how many more defaults occur in a recession ( 1991 ) versus average ( 1981 - 1999 ) historical default rates ( % ) : investment grade non - investment grade avg . 1981 - 99 0 . 07 4 . 21 1991 0 . 12 10 . 40 multiple 1 . 7 x 2 . 5 x looking at where the market implied default rates divided by the historicals default rates to obtain a "" multiple "" ( how much more severe than historical ) : 1 year 5 year 10 year aaa infinite 44 . 2 x 21 . 7 x aa 67 . 0 x 19 . 4 x 18 . 5 x a 24 . 5 x 19 . 1 x 14 . 2 x bbb 5 . 6 x 5 . 5 x 6 . 2 x bb 3 . 6 x 2 . 1 x 2 . 6 x b 1 . 1 x 1 . 2 x 1 . 7 x on the 10 year historical figures , we need to be careful as the s & p static pool figures show a definite seasoning ( lower defaults in late years probably due to prepayment ) versus our contracts . secondly , the s & p figures have withdrawn ratings , which usually mean they are stale , but loosing some information content . i will ask emy to set up a meeting to discuss further . - - - - - - - - - - - - - - - - - - - - - - forwarded by michael tribolet / corp / enron on 12 / 11 / 2000 07 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jeremy blachman @ ees on 12 / 10 / 2000 07 : 21 am to : michael tribolet / corp / enron @ enron cc : subject : default rates thanks . i would strongly suggest an offsite sooner than later with a handful of the right people so that we can step back and design the right architecture for looking at credit in our deals . it is broken , not clear , killing our velocity and true capabilities . we also need to look at staffing , skills sets , the credit reserve model etc . perhaps you should take a crack at an agenda . - - - - - - - - - - - - - - - - - - - - - - forwarded by jeremy blachman / hou / ees on 12 / 10 / 2000 07 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - michael tribolet @ enron 12 / 09 / 2000 03 : 51 pm to : jeremy blachman / hou / ees @ ees cc : subject : default rates i visited with vince kaminski for about 20 minutes today regarding the market implied defaults rates and the disconnect in investment grade land . he is seeing the same anomaly and agreed that we as a company need to revisit the methodology employed in calculating the implied figures . i will follow through and report back .",0 +"Subject: re : resume , thanks a lot , and just let me know the schedule afterwards . . . jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on tue , 24 oct 2000 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > we shall invite you to an interview in houston . > > vince > > > > > > jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm > > to : vkamins @ enron . com > cc : > subject : resume , > > > dear mr . kaminski , > > hi , > i am a ph . d student at ieor department at u . c . berkeley . > thanks for your presentation today . > it gave me knowledge and interest in electricity markets , > and your company . > as you mentioned in the presentation , > i send a resume to give me opportunity to learn more > about your company . > i hope i can join the super saturday event . > > jinbaek > > > ( see attached file : resume . doc ) > > >",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 carson , margaret m james d steffes may 26 , 2000 crenshaw , shirley j wincenty j . kaminski may 24 , 2000 ghosh , soma timothy davies may 31 , 2000 vernon , clayton j vasant shanbhogue may 26 , 2000 yuan , ding richard l carson jun 02 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: re : pre - submitted question on espeak erin , a book by martha amram and nalin kulatilaka is an excellent non - technical introduction to real options and it contains all the most important references to more advanced books and papers . the book has an endorsement by jeff skilling on the cover page . the research group offered several one - day seminars on real options and applications to the energy industry . we still have a few binders with the presentation materials available if you are interested . we plan to repeat the seminar sometimes in the fall . the first part of the seminar ( about 4 hours in the morning ) covers general concept of real options and their applicability to the energy business . the second , more technical afternoon session , covers stochastic processes used to model price uncertainty in the energy markets and specific case studies ( valuation of natural gas storage facilities and of peaking gas - fired power plants ) . the real options approach has been developed specifically to address the problem of making investment decisions under uncertainty . nobody in this field claims that this is a perfect tool , but it represents a significant progress compared to other techniques developed earlier . discounted cash flow analysis that tries to incorporate uncertainty through analysis of several , in most cases , arbitrary scenarios ( most likely , optimistic , pessimistic ) . these scenarios don ' t identify explicitly the risk drivers and don ' t specify the future proactive management decisions . the real , option approach is very powerful because it allows to ( 1 ) capture uncertainty in an explicit way and ( 2 ) to design investment projects that allow to exploit future positive developments and reduce future exposures to downside risk . this approach allows also create a link between investment decisions and future operational decisions . forward - looking investment decisions create options that are exercised in the future through active management of a project . the real options technology relies heavily on advanced statistical tools to come up with the representation of future possible states of the world . the real challenge is to use these tools in a sensible way . i have seen in my career ( almost 30 years of applying mathematical tools to business and economic problems ) many quants armed with powerful computers who reminded me of monkeys armed with hammers . the challenge is not to run mechanically thousands of simulations based on arbitrary assumptions but to translate in a creative way the insights of people who understand specific businesses into parsimonious quantitative models . it is especially critical to stress - test the assumptions of any model and to ask the question if the outcome of a model depends critically on any set of assumptions . if this is the case one should use common sense to examine the underlying assumptions . i remember that in the early eighties quite a few models simulated the dynamics of oil prices , but all the stochastic scenarios represented fluctuations around a very optimistic upward trend . one would have been better off stepping back and asking a simple question what economics 101 teaches about cartels and the dynamics of supply and demand . enron north america corp . from : erin rice @ enron 06 / 27 / 2000 03 : 52 pm to : vince j kaminski / hou / ect @ ect cc : subject : pre - submitted question on espeak good news ! there is already a question waiting for your july 12 espeak session . i have pasted it below , although you don ' t have to respond until the actual event . don ' t forget to send a bulleted list of discussion topics if you would still like us to advertise the event on the elevator screens . thanks . - er submitted by breineck i was doing some reading about the application of real options in the evaluation of non - financial assets . would you recommend any texts or articles for a more in - depth study of this area ? is quantification of risk or uncertainty the major challenge in using this concept ? can statistical tools be used with this to do a sort of sensitivity analysis ?",0 +"Subject: move on may 30 th please note : the weather team will move on may 30 th . we will return to our location near the kitchen eb 3240 however , each person in the group will have a desk in the area . we will know longer be in separate locations . mike roberts eb 3240 a jose marquez eb 3240 b kevin moore eb 3240 c vince kaminski eb 3240 d patricia tlapek eb 3240 e sam smith eb 3240 f elena chilkina eb 3240 g please pack your desk on tuesday for the churn tuesday night . if you did not sit in this area listed above before , space is limited . please label all boxes , telephones , computers , etc . thanks kevin moore any questions please call kevin moore x 34710",0 +"Subject: title dear mr . kaminski , ? i hope i got your title right . i looked everywhere for it and i could not find it . in one of the numerous discussions i had with professor shreve about you i remember having heard "" head of research "" . . . probably energy , but that i could not recall . is this ok ? also i would like to have the title of the conference , it is useful ! ? finnally , there is a request for your e - mail by a phd student , do you allow me to provide this info ? ? ? sincerely , ? pierre - philippe ste - marie - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pstemarie . homestead . com",0 +"Subject: impending visit vince : i sent you an email a couple of days ago to inquire if we might get together at your offices on july 5 or july 7 in houston to follow up our earlier discussions . i notice i have two email addresses for you , so i am sending this to both . i am not sure the earlier transmission got to you . would you be available the afternoon of the 5 th or the morning of the 7 th to continue our earlier discussions ? give me an email or phone shout at 650 . 218 . 3069 . thanks dale nesbitt",0 +"Subject: larry thorpe hi vince , been meaning to ask for your input about larry thorpe ' s proprietary model for electricity returns . i have not been able to get much information about the parameters as larry says the nature is proprietary . it is hard to make a judgement about its usefulness without such information . larry ' s e - mails to me indicate that he is working on npl 5 real time prices and he promises to share the results with us . please advise on direction to take as i am not quite sure about the model without further information . separately , larry indicated that you had promised him some data and would like to know if you have forwarded it to him . i can convey your position to him . thanks .",0 +"Subject: financial maths course , part 2 vince , just in case , here is a draft copy of the event for you to refer to . paul - finmathmail . doc",0 +"Subject: re : uc - berkeley graduate student molly , i would like to invite this student for an interview , sometimes in late december when things slow down . interviews with all my direct reports and george hopley . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 09 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 10 / 24 / 2000 04 : 07 pm to : rajnish kamat @ enron cc : vince j kaminski / hou / ect @ ect subject : re : uc - berkeley graduate student rajnish , we shall invite you for an interview in houston . vince rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm to : vkamins @ enron . com cc : subject : uc - berkeley graduate student dr . vincent kaminski managing director and head of research enron corp . dear dr . kaminski , it was a pleasure talking with you and attending your talk today . i am a graduate student in industrial engg . and operations research working with prof . shmuel oren on topics in financial instrument pricing and design of contracts in deregulated electricity markets . i am also doing research in auction models and computable equilibrium models with applications in electricity market design . i am planning to graduate with a ph . d . in may 2001 and would appreciate hearing about any opportunities in your group at enron . i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal . thanking you , sincerely , rajnish kamat graduate student ieor , uc - berkeley 4135 , etcheverry hall dept . of industrial engineering and operations research university of california at berkeley berkeley , ca , 94710 - cvrkamat . doc",0 +"Subject: re : monday aug . 7 stinson , no problem . vince stinson gibner 08 / 02 / 2000 12 : 51 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : monday aug . 7 vince , may i take a vacation day next monday , aug . 7 th ? thanks , stinson",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 campos , hector o peyton s gibner nov 06 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 raymond , maureen j wincenty j kaminski nov 02 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: bollerslev seminar vince : i don ' t know if you noticed that we have tim bollerslev on the seminar schedule for december 8 . in order for tim to get back to north carolina on friday , we need to move the seminar time . i thought that the enron folks might be interested in his talk so i wanted to get you input on a new time . i know that 3 : 30 is best but would over the noon hour be second best or would 2 : 00 be better ? thanks . bbo",0 +"Subject: re : aiesec polska - eurolds 2000 drogi panie andrzeju , probuje skontaktowac sie z jarkiem astramowiczem , by znalezc sposob dofinansowania waszej imprezy . jedyna mozliwosc , by to zrobic jest poprzez enron poland . mnie byloby bardzo trudno usprawiedliwic to z mojego budzetu . w . kaminski "" andrzej wodnicki "" on 02 / 16 / 2000 02 : 50 : 05 am to : vince j kaminski / hou / ect @ ect cc : subject : aiesec polska - eurolds 2000 szanowny panie kaminski ! nazywam sie andrzej wodnicki i jestem czlonkiem stowarzysznia studentow aiesec przy szkole glownej handlowej ( dawnej sgpis ) . prosze o poswiecenie paru chwil na przeczytanie tego maila . ( kontakt do pana otrzymalem od kolegi , ktory organizowal prezentacje firmy enron na sgh , a posrednio od pana jarka astramowicza , przedstawiciela enron na polske . ) w imieniu aiesec polska chcialbym zwrocic sie do pana z wielka prosba pomocy przy wydarzeniu , ktore w tym roku organizujemy . aiesec polska , a w szczegolnosci aiesec przy szkole glownej handlowej ma zaszczyt organizowac w tym roku european leadership development seminar . jest to seminarium na temat przywodztwa skierowne do obecnych i przyszlych czlonkow rad wykonawczych komitetow lokalnych aiesec w calej europie . po raz pierwszy aiesec polska ma mozliwosc organizacji takiego wydarzenia i stanowi ono dla nas olbrzymie wyzwanie . przygotowywalismy sie do niego od kilku lat i obecnie jestesmy juz w koncowej fazie organizacji eurolds 2000 . projekt rozpoczyna sie 7 marca 2000 roku oficjalnym otwarciem przez pana prezydenta aleksandra kwasniewskiego w sali kongresowej . pozniej odbeda sie dyskusje panelowe ( udzial wielu znakomitych gosci - m . in jan krzysztof bielecki , jacek saryusz wolski , andrzej olechowski ) oraz wyklady i prezentacje regionow polski w auli spadochronowej szkoly glownej handlowej , a nastepnie delegaci udadza sie do hotelu mrongovia na szkolenia , casy i wyklady na temat przywodztwa . ( szczegolowy program eurolds 2000 przesylam w zalaczniku . ) jak do tej pory staralismy sie mozliwie najwiecej dokonac wlasnymi silami , jednak obecnie na 3 tygodnie przed tym wydarzeniem stoimy przed pewnym problemem i stad tez pojawil sie pomysl skontaktowania pana , jako osoby , ktora moglaby nam wydatnie pomoc . chcielibysmy poprosic pana o wsparcie finansowe . wspolpracujemy juz z wieloma firmami i instytucjami ( m . in . deloitte & touche , arthur andersen , fundusz phare , fundacja konrada adenauera oraz wieloma innymi ) , jednak na obecnym etapie organizacji projektu wciaz brakuje nam 12000 $ . poczatkowo chcielismy nawiazac kontakt z pania eileen price z londynu , jednak wydaje nam sie , ze pan jako zalozyciel aiesec w polsce powienien po pierwsze o takim wydarzeniu wiedziec , a po drugie mamy nadzieje , ze moze nam pan pomoc . bardzo prosze o odpowiedz , z powazaniem andrzej wodnicki prezydent eurolds 2000 aiesec szkola glowna handlowa - attl . htm - eurolds _ prezentacja . ppt",0 +"Subject: f / up sheila , i am forwarding you a message i received a few days ago . i want to ask you for advice how to handle this case . my first reaction was to ignore it . the longer i think about it , the more convinced i become that some action is required . let ' s try to reverse the situation and assume for the sake of argument that a female employee was harassed by a male colleague . an employee informs her boss a few months later about the alleged incident and the boss chooses to ignore it . in many similar cases , courts subsequently found against the companies that decided to turn a blind eye to such complaints . the fact that we are dealing with the case of reverse harassment is immaterial . if i ignore this complaint i may expose the company to charges of double standard in handling sexual harassment cases . my recommendation would be to ask maureen to attend sensitivity training and sexual harassment prevention class . please , let me know what you think . sorry to burden you with this case . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 29 / 2000 11 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - clayton vernon @ enron 12 / 21 / 2000 03 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : f / up vince - i got your message ( i was up on the roof of the building helping to fix the weather satellite dish - what a gorgeous view of houston ! ) . i appreciate your words . everything remains fine , vince . you are my "" father "" here at enron , and i admire and respect you greatly . i think i know the kind of person you are , in terms of your integrity , and i admire the high standards you set for all of us in your extended "" group . "" i want to let you know i am not the only one in the group who doesn ' t appreciate the way maureen disrespects you . you remain the key external factor in their success - it is not simply their own abilities that matter to their futures but your own - vince ' s - success with upper management that matters . we respect you , and we don ' t like it when you are disrespected . maureen didn ' t disrespect me today , vince , she disrespected you . it ' s time i told you something . last april , maureen , highly intoxicated following a work - related function at ninfa ' s , made an unsolicited predatory sexual advance on me at my desk on the 19 th floor . i was shocked and disgusted , but i didn ' t say one word about this , vince , because i played it out and didn ' t want to put you into the position of having a raving maureen in your midst as you perhaps had to fire her and then endure a litany of gender - bias crap lawsuits . i "" took one for the team , "" vince . i can ' rt say i would do it again - maureen is brazen to berate me after what she did , in public no less . i appreciate your bringing me into enron . i ' ve found a respectful and , indeed , a loving work environment . i remain willing to do whatever i can to help the group . clayton",0 +"Subject: transportation for m . gillis and g . whitaker for post presentation celebration at enron box at enron field hi judith ! i have a special parking ticket for malcolm and gil to use in dr . gillis ' s car . then , i ' ll have a car pick up gil when he ' s ready to leave the game - - we ' ll take care of everything ( thanks for offering ) - - we ' re really looking forward to the event ! best regards for a great weekend ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 05 / 04 / 2001 04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - judith duvall on 05 / 04 / 2001 02 : 09 : 26 pm to : christie . patrick @ enron . com cc : subject : re : rice alp final presentation and post presentation celebration at enron box at enron field christie : could you please fill me in on the logistics ? dr . gillis and gil whitaker will be at the apl project presentation at enron at 4 p . m . . further , they both plan to attend the dinner at enron field . however , dr . gillis must skip the game due to an early morning breakfast the next day . will you provide special parking at the dinner / game ? i think dr . g and gil will go together , then i will have dr . gillis picked up by limo , at approximately 8 : 00 p . m . does this sound feasible ? judith duvall at 10 : 00 am 5 / 4 / 01 - 0500 , you wrote : > hi friends ! > > the big rice - alp final presentation day is almost here : monday , may 7 th , > 4 pm , at enron , 1400 smith . please come to the enron lobby and ask for > me or my assistant , melinda mccarty . > > after the presentation , you are cordially invited to dinner and an astro ' s > game ( vs phillies ) at the enron box at enron field . as participation in > the enron box at enron field is limited to this special invitation list > only , please confirm your attendance via return email , or via voice mail to > me at 713 - 853 - 6117 asap . > > we ' re very excited about the work the rice alp team has done and we ' re all > greatly looking forward to the presentation . > > hope to see everyone monday ! ! > > best regards ! > > - - christie . > > > judith duvall secretary to the president rice university 6100 main street - - msl houston , tx 77005 713 / 348 - 4601 713 / 348 - 5271 ( fax )",0 +"Subject: re : liquids limits oct . 20 john : i will be here most of the week , and am looking forward to working with niamh c . i will also check the availability of people in vince k . group as well as naveen andrews in ours . regards bjorn h . john l nowlan 24 / 10 / 2000 10 : 32 to : bjorn hagelmann / hou / ect @ ect cc : ted murphy / hou / ect @ ect subject : re : liquids limits oct . 20 bjorn , niamh clarke is going to come to houston from mon afternoon to friday next week to work on nvar . she developed var models for mitsubishi and has lots of experience in this area . can you please provide her with the best people we can from research and rac so we can try and get a better understanding and more confidence in our model . i ' m sure you agree with me that if my group is going to make any progress we need to get this sorted . thanks in advance . - - - - - - - - - - - - - - - - - - - - - - forwarded by john l nowlan / hou / ect on 10 / 24 / 2000 09 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : bjorn hagelmann 10 / 24 / 2000 07 : 31 am to : john l nowlan / hou / ect @ ect cc : scott earnest / hou / ect @ ect subject : re : liquids limits oct . 20 i think we need to sit down and talk about developing reporting that will show the risk in the books . at this point and time it can be derived , but only if you know what to look for . i would appreciate if you had some time to do so . regards bjorn h john l nowlan 23 / 10 / 2000 13 : 10 to : christian lebroc / corp / enron @ enron , scott earnest / hou / ect @ ect , bjorn hagelmann / hou / ect @ ect cc : subject : re : liquids limits oct . 20 looking at these numbers i think the var model must be waaaaaaaaaay over calcing something , most likely the spreads . the net and outright product position are negligible . seems it would take one hell of a daily move to loose 12 . 7 on these positions .",0 +"Subject: re : rice course thank you , see you this evening . dennis loughridge > from : vince . j . kaminski @ enron . com > to : > subject : re : rice course > date : wed , 28 feb 2001 17 : 36 : 59 - 0600 > > > dennis , > > no problem . > > vince > > > > > > "" dennis w . loughridge "" on 02 / 28 / 2001 > 04 : 24 : 35 pm > > please respond to > > to : > cc : > subject : rice course > > > vince > i am an adjunct professor at rice , working with wil uecker in executive > education . with your concurence , i would like to sit in your energy > derivatives course . i understand from wil that there are 38 students > registered for the course . if you consent , would you let me know what > material i need . > thank you , > dennis w . loughridge > 713 - 348 - 2812 > > > > > > > > get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: re : kwi user group vince sorry to hear you cannot make it . . . you would obviously have been the big catch ! ! in terms of a london based replacement , who did you have in mind and what sort of subject could they cover ? david - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 24 april 2001 23 : 22 to : djw @ kwi . com cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com subject : re : kwi user group david , i regret to inform you i am unable to attend the conference due to previous commitments . would you consider a speakers form our london office ? vince david warwick on 04 / 24 / 2001 09 : 47 : 31 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : kwi user group vince any further thoughts on this ? david - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 13 april 2001 21 : 44 to : djw @ kwi . com cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com subject : re : kwi user group david , thanks for the invitation . i shall check my schedule on monday and will get back to you regarding the conference . i hope you will a very happy easter . vince david warwick on 04 / 12 / 2001 04 : 04 : 32 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : kwi user group dear vince please may i reintroduce myself . we met last year at the sydney eprm conference which my company kwi sponsored . i chaired the session at which you spoke . as you may remember , my company , kwi are one of the world ' s leading provider of systems ( kw 3000 ) and consultancy for energy , trading and risk management . we have over 60 clients worldwide including many of the world ' s leading energy companies ( not enron unfortunately ) : north america - tva - ontario power - cinergy - bonneville power europe - enel - atel - electrabel - edf nordic - vattenfall - fortum - sydkraft - statkraft - birka energi - norsk hydro each year we stage a "" kwi users forum "" - a 2 - day event attended by leading trading and risk staff from our clients . last year there were about 100 delegates . the agenda primarily focusses on issues surrounding risk management for the energy sector . the agenda comprises keynote presentations on burning risk issues from industry leading energy speakers and practical workshops focussed around using our software . this years event is at a luxury hotel in the wonderful spanish city of barcelona and runs from the evening of sunday september 9 th to tuesday september 11 th . the main conference dinner is on the monday evening and is always a memorable event . this year it is in a leading barcelona restaurant preceded by a bus tour of the city with a stop for pre - dinner drinks . i would like to invite you to make the opening keynote address , the highlight of the conference . the subject could be : * a general energy risk related topic * a general insight into the secret of enron ' s continued success in the energy markets * your thoughts on the future development on energy markets ( and other commodity related - bandwidth etc . ) worldwide obviously , we would cover all your delagate costs including accomodation , food and drink . what ' s in it for you ? many of our users are some the energy sectors leading risk thinkers and i ' m sure you would enjoy meeting them and exchanging views . please let me know if you are able to accept the invitation . best regards david warwick - marketing dierctor and co - founder",0 +"Subject: feedback from your espeak vince : i had a phone call from joe phelan late yesterday . he was thrilled that you had answered his question so thoroughly . i ' ve talked to a few other people who really got a lot out of your session , including someone who wants to come work for you ! thanks , again , for giving us some of your time . - er",0 +"Subject: re : time keeping please arrange for time - keeping training for kevin moore . thanks , mike roberts",0 +"Subject: updated presentation i added guadalupe ' s experience .",0 +"Subject: good news on endorsements vince & vasant , jeff skilling has said that enron would not make any endorsements of third - party services , so please disregard my previous e - mail regarding aer press releases . joe",0 +"Subject: christmas list hello vince and mike i want to keep you informed . this year all baskets will be done in a timely manner . on last year we were going through a major move therefore many people played key roles in keeping us together . this year however , is a little different , as it is always nice to give unfortunately we can not give to everyone . i am sending a lists of who we have so far . there are a few names on the list that i feel we should do something else for this year . under shirley ' s list of names . ( not so expensive ) they are : move team who ? mail room who ? facilities help desk who ? there are other tokens of appreciation that we can get for them . please note that you two are the only ones that have seen this e - mail so far i will need your approval for all baskets , however your input on the matter will be greatly appreciated . the list is not completed i am still waiting for additions . thanks kevin moore",0 +"Subject: re : invitation to speak at infocast ' s upcoming "" market price volatility "" program ron , we are really swamped and i would like to keep our involvement in conferences to a reasonable minimum . i can promise that we shall help you with a future conference if it happens to be in houston . vince "" ron henderson "" on 01 / 11 / 2000 03 : 13 : 56 pm please respond to ronh @ . com to : vince j kaminski / hou / ect @ ect cc : subject : re : invitation to speak at infocast ' s upcoming "" market price volatility "" program vince , i am sorry you can ' t join us . is there someone on your staff who might be able to do the presentation "" a real options approach to asset valuation , "" scheduled for thursday , may 11 th , from 10 : 30 am to 12 : 00 pm . ? ron - - - - - original message - - - - - from : vince j kaminski [ mailto : vkamins @ ect . enron . com ] sent : monday , january 10 , 2000 10 : 53 am to : ronh @ . com cc : vince j kaminski ; shirley crenshaw subject : re : invitation to speak at infocast ' s upcoming "" market price volatility "" program > ron , i am sorry to inform you that due to a scheduling conflict i cannot speak at this conference . i want to thank you for considering me as a speaker . vince kaminski "" ron henderson "" on 12 / 30 / 99 06 : 57 : 05 pm please respond to ronh @ . com to : vince j kaminski / hou / ect @ ect cc : subject : invitation to speak at infocast ' s upcoming "" market price volatility "" program hi vince , i would like to invite you , or one of your staff , to be a speaker at infocast ' s upcoming conference "" market price volatility : how to model , assess , and manage price volatility in today ' s power markets , "" scheduled for may 10 - 12 , 2000 , in chicago . i am attaching a copy of the draft program agenda for your review . as you may note , we wish to take our recent houston meeting a step farther by making this next session a more technically - oriented meeting . there are two spots you may wish to consider : 1 . the session entitled "" case study in modeling volatility , "" scheduled for wednesday , may 10 th , from 3 : 30 to 5 : 00 pm . you will note below , what we had in mind for the case study . 2 . the talk "" a real options approach to asset valuation , "" scheduled for thursday , may 11 th , from 10 : 30 am to 12 : 00 pm . i am running behind schedule in finalizing this program , so i will give you a call shortly to follow up with you . if you wish , please feel free to call me at 818 - 888 - 4445 ext . 28 . i hope you can join us . ron henderson infocast 818 - 888 - 4445 ext . 28 ronh @ . com case study guidelines 1 . model should be for a particular market . examples : pjm , chicago , ecar , southern california . lb ( optional ) . model should be for a particular purpose . examples : valuing a new combustion turbine at the florida / georgia border , bidding on a portfolio of power plants up for sale in nepool , valuing a retail portfolio in pennsylvania . 2 . model should be estimated on a particular data set . examples : daily nymex close prices for palo verde , pjm hourly spot prices for 1998 - 1999 . 3 . case study should describe several candidate models , for volatility and / or market price , that were considered . case study should discuss why these models were considered . candidate models should be described mathematically and verbally . 4 . evaluation criteria for choosing among the models should be explicitly identified , and quantified to the extent possible . examples of evaluation criteria : residuals that are not autorcorrelated , stationarity , r - squared , akaike information criterion . 5 . parameter estimates for each candidate model should be displayed . the estimation procedure employed should be briefly described . 6 . some diagnostics of model fit ( vis - a - vis data set ) should be presented . 7 . if possible , predictive power of model should be assessed . generally , the case study should include all of the items above . the case study may include other things .",0 +"Subject: re : thanks , please tell me if you need anything from ees . vince j kaminski @ ect 01 / 09 / 2001 02 : 30 pm to : denise furey / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : re : denise , no problem . we shall prepare a short presentation to address these issues . vince kaminski denise furey @ ees 01 / 09 / 2001 11 : 12 am to : vince j kaminski / hou / ect @ ect cc : subject : i hope you have seen the email below . do you have any problem with what jeremy has asked you or your group to address . is there anything that you want us to supply to you to assist you ? - - - - - - - - - - - - - - - - - - - - - - forwarded by denise furey / hou / ees on 01 / 09 / 2001 11 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - denise furey 01 / 08 / 2001 11 : 46 am to : gayle w muench / hou / ees @ ees , michael tribolet / corp / enron @ enron , william s bradford / hou / ect @ ect , vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : don black / hou / ees @ ees , tony spruiell / hou / ees @ ees subject : i believe all of you received a request from jeremy blachman to hold the afternoon of january 10 th open for an off - site to discuss the manner in which rac and research assess / test the credit quality of ees transactions . i realize that rac and ees have had many discussions as to the methodology , but it might be helpful for all of us to understand the actual derivation of some of analysis . please call me with any questions or comments at ext # 30349 . the agenda will be as follows : 12 : 00 - 1 : 00 lunch 1 : 00 - 3 : 30 presentations 3 : 30 - to close discussion rac / research presentations the following topics would be of interest to ees : 1 - the derivation of default probabilities including ( research ) - - a discussion of the actual mathematical process , - - the analytics behind why these computations are deemed the best for enron , - - a comparison to historic default rates and why they differ ( in respect to actual default rates , shape of the cumulative default curves etc . 2 - the volatilities which are used to determine possible loss scenarios for the commodity portion of ees deals including ( research ) - - the selection of curves - - the application of those curves to the actual credit reserve model and - - why these particular tests are applicable to our products . 3 - the recovery rates used in the credit reserve model . how are these figures derived ? ( rac ) 4 - how rac and research have adjusted the credit reserve model to accommodate unusual aspects of the deal including ( rac ) - - promotion payments , - - accounts receivable - - committed capital - - and other factors ees also understands that some of you may be familiar with our processes , however , there are perhaps areas that you would like to understand more fully . please tell us what you would like to hear from us . also , rac has sent us the credit reserve model and i have seen completed models . perhaps prior to our meeting on wednesday , someone from rac and / or research could sit with me and someone from phil layton ' s group and go through the process of how the various pieces are put together .",0 +"Subject: congratulations on your promotion congratulations on the much deserved recognition you have recently received from the enron executive committee . sue haynes enron staffing",0 +"Subject: re : greg spaniolo resume johnny , greg spaniolo seems to be better suited for work in liquid markets - - certainly not the situation with coal and emissions . brad romiane suggested that vince kaminski might be interested in this resume . as far as my search goes , keep an eye out for the bs and ms - level folks . thanks . jeff johnny palmer @ enron _ development 02 / 12 / 2001 10 : 15 am to : jeff andrews @ enron cc : subject : greg spaniolo resume jeff , please advise me of your interest in greg ' s experience . thanks , johnny - - - - - - - - - - - - - - - - - - - - - - forwarded by johnny palmer / enron _ development on 02 / 12 / 2001 10 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" gregory v . spaniolo "" on 02 / 12 / 2001 10 : 12 : 58 am to : johnny . palmer @ enron . com cc : subject : resume here is my resume . greg - resume . doc",0 +"Subject: initial collection of research material for your web sites dear sven the packets cover electricity and gas markets and modelling , deregulation & exchanges , weather derivatives and value - at - risk / risk management / case studies . this is by no means final , and i hope to supplement with some more ideas over the next few days . once you have considered the material , i can fine - tune the type of material that is relevant for you and then we can look at starting to put something together , after which we can pass on to mike roberts if you need some simple articles on pricing options or an explanation on how to calculate volatility , then i am sure we can put that together for you . regards , anjam x 35383",0 +"Subject: credit model vince and stinson , we met bill bradford yesterday , the credit model modification turns out to be three projects . 1 ) potential exposure calculator this requres forward curves simulation and revaluation of all deals over the tenor ( typically 20 years ) . it needs multi - factor hjm and gas - electricity joint factors of loading . output from this model is the maximal loss amount and its confidence interval . expected delivery time : 1 month 2 ) include asian option model into the current xll calculation engine . this is more concrete and simly to do . expected delivery time : 2 weeks . 3 ) incorporate krishna ' s "" eam "" option valuation into the credit model this one is not yet urgent . i may need more resources to accomplish these tasks . paulo has difficulty to commit himself to even to the second task , citing that he has other things to do . therefore i need your help in setting the prorities . thanks , zimin",0 +"Subject: re : alp presentation dennis , thanks for you message . i shall send you more information regarding the dinner later this week . christie patrick , who is in charge of our university liaison unit , is making arrangements for the evening at the enron field . hopefully , we shall be able to combine dinner with a game . vince "" dennis w . loughridge "" on 04 / 30 / 2001 10 : 49 : 10 am please respond to to : cc : subject : re : alp presentation vince i will be attending the alp presentation on may 7 and would be pleased to join the team for dinner if it is not too late . thank you dennis loughridge dennis w . loughridge director of energy consortium rice university 713 - 348 - 2812 - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , april 10 , 2001 8 : 16 am to : loughrid @ rice . edu cc : luigical @ rice . edu subject : alp presentation sorry , trying again . i probably got a wrong e - mail address and the original message was returned . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 10 / 2001 08 : 13 am to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: visit may 4 th vince : per susan ' s email below , do you want to go to the luncheon for john hennessey ? she doesn ' t say where the lunch is going to be , did you get an invite ? the only thing you have that day is 9 : 00 am larry thorne and the energy derivatives class at 11 : 30 . let me know . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 17 / 2001 11 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" susan c . hansen "" on 04 / 17 / 2001 10 : 47 : 38 am to : shirley . crenshaw @ enron . com cc : clovell @ stanford . edu , donna lawrence subject : visit may 4 th hi shirley , thanks for corresponding with carol during my absence , and confirming our meeting with vince kaminski at 1 : 30 on may 4 th . i have a question about the logistics . i believe dr . kaminski has received an invitation to an event in houston : new stanford president john hennessy is visiting a number of cities on a "" welcome tour , "" and it just so happens he is hosting a luncheon in houston on may 4 th . if dr . kaminski wants to attend the hennessy welcome tour luncheon , donna lawrence and i could meet with him at 1 : 30 somewhere in the hotel . if he ' s not attending the presidential event , please let me know where you are located , and we ' ll plan travel time accordingly . regards , susan susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: 9 inch t . v . goodmorning , we need another 9 inch t . v . i am sorry to say but we need it as quickly as possible . the location for the set is eb 31301 c . delores , you may have to install cable , i am not sure , so would you please check for me . company # 0011 r . c . # 100038 thanks kevin moore",0 +"Subject: working at home this afternoon i will be working from my home this afternoon after 1 : 30 pm . my extension will be forwarded to my home . if i happen to be away from the phone taking care of my mother , leave a message and i will return your call immediately . there is a generic message on my home phone , "" please leave message after tone "" , so don ' t worry that you have the wrong number . you may reach me by email at adupont @ pdq . net . in the next several days , i will be set up to dial in and you will be able to use my regualr enron email address . i will be at my desk most days , but until we have mother settled in the rehab facility there may be some days or afternoons that i will be working at home . please do not hesitate to contact me if you need meetings set up or any other thing that you would normally request of me . thanks . anita",0 +"Subject: re : video conference for interview : stig faltinsen anjam , sorry , i am busy on thursday . i shall ask shirley to contact you . friday 9 : 30 to 10 : 30 my time would work . vince vince anjam ahmad 04 / 25 / 2000 09 : 51 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : video conference for interview : stig faltinsen hi vince , this candidate was forwarded from the norway office . he is finishing his phd in cambridge but is available soon . if you are free on thursday before the regular weekly meeting that would be good - would 3 pm or 4 pm work for you ( 9 am or 10 am your time ) to set up the video interview ? regards , anjam x 35383 cv attached :",0 +"Subject: re : support on statistical modeling thanks for the quick response . i look forward to meeting martin . regards , rh randall hicks director - marketing enron broadband services 1400 smith street houston , tx 77002 work - 713 . 853 . 9970 randall _ hicks @ enron . net",0 +"Subject: bonds hello , vince . we still have the 2 other bonds in our inventory . are you interested ? david c . walkup financial consultant 713 - 658 - 1685 800 - 456 - 9712 caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . for your protection , avoid sending identifying information , such as account , social security or card numbers to us or others . further , do not send time - sensitive , action - oriented messages , such as transaction orders , fund transfer instructions , or check stop payments , as it is our policy not to accept such items electronicall",0 +"Subject: reply to your email / ignore my voicemail vince : thanks for that . i just wanted to get a sense from you who the right people are and how i can establish effective contact . when he went on to different responsibilities , john goodpasture suggested i get the dialog going with the right commercial people in enron . i will be in your neighborhood in the 200 pm time range and will give you a quick call . that will conserve your valuable time and hopefully get me in touch with the right people . i am reading this after your voicemail , so this supersedes that . dale - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , may 01 , 2001 6 : 03 am to : dale . nesbitt @ marketpointinc . com cc : vince . j . kaminski @ enron . com subject : re : get together this coming tuesday ? dale , i can reserve 2 to 2 : 30 time slot but there is really not much that i can tell you at this point . the commercial groups are still interested and are moving towards the test of the package . as soon as they will decide to move ahead , we ( research ) shall be involved , helping to evaluate the product . as i have said , we are not the decision makers in this case . i think that we should allow simply the process to run its course . vince "" dale m . nesbitt "" on 04 / 30 / 2001 05 : 59 : 30 pm please respond to to : cc : subject : re : get together this coming tuesday ? vince : i will call tomorrow in the morning . lunch or right after lunch would be great . how would 100 pm work for you ? dale - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , april 30 , 2001 3 : 07 pm to : dale . nesbitt @ marketpointinc . com cc : kimberly . watson @ enron . com ; vince . j . kaminski @ enron . com subject : re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: new computer hi lyn : i have not received an answer for the below request for another sun computer . did you get it ? we also need to order another regular computer like the others that have been supplied to the research group . it will be for tanya tamarchenko and her location on the 19 th floor is eb 1940 . tanya has two offices and does not have a computer in her office on the 19 th floor . co # 0011 - rc # 100038 thanks ! shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 17 / 2000 03 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 01 / 12 / 2000 11 : 14 am to : lyn malina / hou / ect @ ect cc : subject : sun computer hi lyn ; the research group is in need of another sun computer to be located at ebl 951 . please let me know that eta . co . # 0011 - rc # 100038 thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 12 / 2000 11 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 01 / 07 / 2000 01 : 49 pm to : lyn malina / hou / ect @ ect cc : william smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect , alex huang / corp / enron @ enron subject : new pc hi lyn : alex huang has requested a new pc and vince kaminski has ok ' d it . please order the computer as listed below in alex ' s request . thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000 01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 07 / 2000 12 : 12 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex huang / corp / enron @ enron subject : new pc shirley , ok . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000 12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - alex huang @ enron 01 / 07 / 2000 08 : 28 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : new pc hi shirley , i would like to request for a new pc . my current pc is quite old with not enough memory . twice i ran out of memory and had to have it people coming to clean it for me . their suggestion is to either get a new hard drive or a new pc . given that dell has pentiumc iii processor at 800 mhz on market , i would like to request a pc with process at 500 mhz or higher level . thank you very much . best , alex",0 +"Subject: dpc memo vince , i am in houston ( rrived satruday ) , and will be in office on monday ( though officially , i am on vacation ) . would like to catch up with you if possible . it looks like your team will be getting involved in some form on the dpc side . i have already made a recommendation to wade . i am attaching a small memo that i have addressed to wade on the dpc position and possible workout . this is still a draft and will likely get shared later with others . i would love to get your comments on the same . at the same time , this also will give you some idea of the problem , in conjunction with the other plan presentation i had sent you . look forward to touching base with you . regards , sandeep .",0 +"Subject: transmission roundtable everyone , several of us have talked about starting an ongoing meeting that we can use as a platform to discuss various transmission issues . i invite everyone to our first meeting , i have received names from several different sources for the invitation list . if any of you feel that others should be present please let me know . vince has agreed that the research group will sponsor this activity and our first meeting is scheduled for friday , december 8 th . , from 11 : 30 - 1 : 00 . please rsvp to anita dupont whether or not you will be able to attend and your lunch preference for sandwiches or salads . anita ' s extension is 30329 and her e - mail is adupont @ enron . com . regards , lance",0 +"Subject: california update 4 / 27 / 01 the following report contains confidential and sensitive information . please treat with discretion . executive summary : ? ferc price cap decision reflects bush political and economic objectives . politically , bush is determined to let the crisis blame fall on davis ; from an economic perspective , he is unwilling to create disincentives for new power generation ? davis finds four major flaws with ferc plan , most notably its exclusion of out - of - state generators ? june lst "" kill clause "" for ferc order could coincide with new bush regional plan ? california facing growing fiscal risk following bond downgrade , expected $ 20 billion power bill this summer - - economic crisis would force deeper administration involvement ? qf bid for advance payments from pg & e likely to fail in bankruptcy court ? new generation delays probable because of state / qf squabbling ? consumer groups are preparing a constitutional challenge to socal bailout deal 1 . ferc fallout the ferc decision is a holding move by the bush administration that looks like action , but is not . rather , it allows the situation in california to continue to develop virtually unabated . the political strategy appears to allow the situation to deteriorate to the point where davis cannot escape shouldering the blame . once they are politically inoculated , the administration can begin to look at regional solutions . moreover , the administration has already made explicit ( and will certainly restate in the forthcoming cheney commission report ) its opposition to stronger price caps on the grounds that they are unwilling to create disincentives to the construction of new generation . it is interesting and ironic to note that electricity generators were generally happy with the ferc order and that the only ferc commissioner who favors price caps actually voted against this plan . 2 . something less than effective price caps from davis ' s point of view , the ferc plan has four major flaws : ? the order applies only to california , not to the rest of the west . non - california generators are not required to sell at capped rates to california . ? as the order is written , it is more of a price floor for emergency power than a ceiling . ? state officials also believe that energy suppliers will continue to game the system , because the price mitigation scheme only kicks in after a stage 2 emergency and does not require any collusion . ? even when the price caps kick in , they are based on the cost - plus for the highest cost producer supplying power to california and do not require wholesalers to abide by the cap . the generators can also charge above the cap , provided they can subsequently justify the excess charge to ferc . 3 . proposal "" kill clause "" adds to the political dilemma for davis the ferc proposal includes a "" kill clause "" that says the caps will be withdrawn unless california ' s iso agrees by june lst to become part of the regional grid now under ferc control . if davis doesn ' t sign on to the regional grid by june lst , then he will have to live with june 2 nd headlines blaming him for letting the "" bush price caps plan "" collapse . 4 . growing fiscal risk in california sources speculate that california could therefore pay as much as $ 20 billion on power this summer - this is more than the combined enterprise value of pg & e and sce . these sources believe that , because of the severity of the situation , the ferc and / or the federal government will be forced to take further action to control prices for power . the consensus is that the state of california will run out of money in about 90 days . one of the first projects to be cancelled will be state plans to finance new power plant construction in exchange for long - term power deals . the bleak fiscal picture is also causing bank creditors to revisit the bridge loans they are providing to california . the bush administration and the fed are only now waking up to the seriousness of the fiscal picture . the country ' s largest and most prosperous state will have gone from large surpluses to serious debt downgrades and devastating deficits in a matter of months . 5 . qfs to seek advance payment from pg & e meanwhile , on the bankruptcy front , the qfs reportedly will ask the bankruptcy judge today to give them advance payment from pge ' s accounts , since their natural gas vendors have likewise demanded advance payment for gas . it appears very unlikely that the qfs ' request will be granted . if the qfs do not receive advance payment , it is likely that most of the 4 , 000 mw of gas - fired qf capacity will remain offline . 6 delays likely in new qf generation the qf deals made with the state for long - term contracts are being continually renegotiated , which is likely to mean that the new plants those contracts are supposed to finance will not be online as early as anticipated . 7 . consumer groups ready to challenge constitutionality of sce bailout plan harvey rosenfield and his colleagues reportedly have been reviewing an analysis of the mou for the sce bailout plan . the analysis was done by a utilities analyst , rather than a lawyer , though it appears to raise a number of good legal points . for example , one of the elements of the mou is a "" non - bypassable "" charge on ratepayers that would require them to pay even if they disconnect from the grid . this is effectively a tax , since there is no exchange of value for money , which under the ca constitution cannot be used to directly benefit a private entity . this makes the bonds that would be issued are general obligation bonds , rather than revenue bonds . according to the constitution , the state cannot be put into debt to benefit a private company . for this and other reasons , even if the republicans would vote for the sce bailout , which remains unlikely , the bailout probably would not stand a likely constitutional challenge . 8 . governor hurt by continued failure to disclose long - term power contracts the issue of the governor ' s failure to disclose the details of the long - term power contracts continues to distress the other players in the crisis . even if he were to disclose everything he and his staff have been negotiating , it is likely that their actions and negotiations will challenged , creating an even further delay .",0 +"Subject: congrats ! vince , congrats on your promotion ! well - done ! rob",0 +"Subject: cera conference call and web presentation : winter weather scenarios . . . - cera conference call cera conference call : sent fri , november 10 , 2000 title : cera conference call and web presentation : winter weather scenarios . . . author : n . american gas team e - mail category : conference call product line : north american gas , url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 netscape navigator 3 . 02 or higher ; or sun hot java ( tm ) * close all desktop applications and disable your screen saver technical assistance u . s . callers : if you are experiencing difficulties during the call , you may signal for technical assistance by pressing * 0 ( star , zero ) on your telephone keypad after you have connected to the audio portion of the conference . international callers : please re - dial and ask the operator for assistance before giving the confirmation code . a recording of this call ( audio only ) will be available until december 17 , 2000 . to access this recording , please call 1 - 888 - 203 - 1112 ( within the u . s . ) or ( 719 ) 457 - 0820 ( outside the u . s . ) . please use confirmation number 432374 to access the call . if you have any questions , please contact mary rice via e - mail at mrice @ cera . com , or via telephone at ( 617 ) 498 - 9123 . * * end * * follow url for html version of this message only . account changes to edit your personal account information , including your e - mail address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www . cera . com / tos . html questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: re : houston research opportunity : anjam ' s plight grant , i agree . we shall give him an offer of a job in houston ( on the terms we discussed with ) plus an option to stay in london , if he does not like houston . his choice . i think we extended a very generous offer to him and he may have an excessive perception of his contribution to enron . vince enron north america corp . from : grant masson 08 / 09 / 2000 02 : 41 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : houston research opportunity : anjam ' s plight vince : i got the following note from uk hr after had a call from them earlier today . i told them that the deal you and i communicated to anjam was firm and not negotiable ( with the exception of the issues regarding the flat rental ) . apparently , anjam is trying to play hard ball . what ' s your commitment to anjam ? should we explore a package deal ? my vote is no . grant . tara rozen 08 / 09 / 2000 12 : 17 pm to : grant masson / hou / ect @ ect cc : melanie doyle / lon / ect @ ect subject : houston research opportunity grant unfortunately , we were unsuccessful in our attempt to convince anjam that he should transfer on a local us package . the difficulty is not so much the compensation and benefits , it seems more to do with the actual job and long - term prospects . he will only , therefore , commit to 12 months and only on assignment terms . we explained to anjam the rationales for transferring locally , ie not just cost but equitability among his peers . he is convinced that his skills and enron knowledge are valueable enough to warrant an assignment rather than a local deal . also , he was apparently told by vince that it was impossible for you to find a local hire for this role as you were not paying the market rate . would you like to move further with this ? if so , we can put together costs for you for a 12 month assignment and see what you think . i am out tomorrow but back in on friday and could do it for you then . let us know ! regards tara - - - - - - - - - - - - - - - - - - - - - - forwarded by tara rozen / lon / ect on 09 / 08 / 2000 18 : 14 - - - - - - - - - - - - - - - - - - - - - - - - - - - melanie doyle 08 / 08 / 2000 13 : 07 to : tara rozen / lon / ect @ ect cc : madeline fox / lon / ect @ ect subject : houston research opportunity tara , can we discuss tomorrrow ? thanks mel - - - - - - - - - - - - - - - - - - - - - - forwarded by melanie doyle / lon / ect on 08 / 08 / 2000 13 : 04 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : anjam ahmad 08 / 08 / 2000 12 : 08 to : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect cc : melanie doyle / lon / ect @ ect subject : houston research opportunity dear vince i would like to make the suggestion that we make this opportunity a one - year assignment working with tanya , and then re - evaluate the situation at the end of the year in terms a new role for me in houston thereafter , subject to mutual agreement . the alternative situation of resigning from enron europe and re - joining enron corp is too dramatic and requires me to "" burn bridges "" and my return to enron europe would be difficult . also , i would lose the valuable support structures available to me in london . the amount of any fixed costs ( flights , modest cargo , a few months of mortgage carrying cost ) are entirely reasonable , not excessive given my single status and not so great that they justify making the contract a three year ( local ) one . i would expect that on the basis of almost 3 1 / 2 years solid experience & value - added at enron europe , the value of several million pounds i have identified & justified to external auditors for enron europe this year and an "" excellent "" rating ( my fourth making my 3 1 / 2 yr average rating also "" excellent "" ) , i could reasonably be expected to justify a fair deal ( i . e . my existing enron europe salary & benefits package plus a reasonable one - off allowance to cover unavoidable additional personal expenses ) . regards & thanks again for the opportunity , anjam x 35383",0 +"Subject: interview dear dr . kaminski i would like to thank for the interview opportunity at enron . it was very nice and pleasant to talk with very talented people . i wish this interview develop to the further stage of the opportunity . as matter of fact , i have started the current job at kansas city with an internship expiring november 3 rd . i got an permanent job offer from them and i think i should decide whether to accept the offer or not very soon . but after i visited enron , i feel that i want to pursue my career development at enron for many reasons . so if the decision process is made soon , i will appreciate it greatly . ( i apologize for the hurry . i already sent a message regarding my situation to molly a minute ago . ) thank you very much . sincerely , jaesoo",0 +"Subject: congratulations vince , congratulations ! i wish you the best of luck with your new responsibilities . shalesh ganjoo",0 +"Subject: re : move computer from the research group 19 th floor to the 44 th floor shirley - i spoke with janelle duree ( manager - move team ) , she is investigating the mystery of the missing phone and will call me back with status - if you can take care of the pc , i think we look good on the phone . i also spoke with paul racicot to make sure we are all of the same mind and he is set as well . p shirley crenshaw @ ect 06 / 15 / 00 02 : 06 pm to : emmanuel mangin / corp / enron @ enron cc : clayton vernon / corp / enron @ enron , paula corey / enron communications @ enron communications , vince j kaminski / hou / ect @ ect subject : move computer from the research group 19 th floor to the 44 th floor hi emmanuel : we need a computer installed on the 44 th floor tomorrow , if at all possible . we have a new summer intern coming on monday the 19 th and the computer and everything else has disappeared from his desk . the location is eb 4444 b . the computer we are moving is clayton vernon ' s old computer . he is finishing up moving his files to his new computer as i am writing this . please call me in the morning and we will talk further . thanks ! shirley crenshaw 3 - 5290",0 +"Subject: re : requests for help thanks vince .",0 +"Subject: re : eprm article chris , this is very well written and will serve the reader well . a few comments . 1 . when i think about the taxonomy of the var models , i typically use the classification based on 3 categories : a . variance / covariance method b . historical simulation c . monte carlo simulation . delta approach is the way of representing a position in a nonlinear instrument . 2 . i would define monte carlo as an approach based on statistical simulation of behavior of all the market prices / rates , etc . , and revaluation of the entire portfolio . the revaluation may be based on an approximation ( using taylor ' s expansion ) that may involve delta , delta / gamma , delta / gamma / omega or may be exact ( based on the same model that produces the mark - to - market portfolio valuations ) . the main benefit of using the mc simulation in the energy markets is the ability to capture the gapping behavior of the energy markets in a straightforward way . i would emphasize that there are attempts to incorporate jumps in the v / c model ( i shall send you the references from home ) . 3 . i would mention that historical simulation may break down in the markets that are evolving quickly ( new instruments for which we have no comparable prices , behavior of prices may change as markets mature or de - mature ) . 4 . for bigger portfolios , virtually all methods require some level of aggregation into atomic , elemental instruments to reduce the dimensionality of the problem . this process may be a source of a big error . 5 . the computational burden of mc can be reduced through clever preprocessing of a portfolio that introduces no error . many swaps with the same underlying can be aggregated into one positions ( they are portfolios of forwards and they are linear instruments ) . please , feel free to use any comment ( or none ) . vince "" chris strickland "" on 08 / 28 / 2000 02 : 58 : 56 pm please respond to "" chris strickland "" to : cc : subject : eprm article dear vince , ? d you think you might be able to look at this in the next day or so ? robin is after something by the end of this week . ? best regards . ? chris . ? - eprm _ 01 _ var . doc",0 +"Subject: energy book hi vince , i have pulled a list of names together that i would like to send some samples of our chapters of the book too , in the next couple of days , in order to try and get one or two sentence "" reviews "" for the dust jacket of the book . i obviously won ' t say anything about enron ' s sponsorship until it is official sorted out , but is it ok if i indicate that yourself and grant are contributing material to the book ? i ' m proposing to send 5 or 6 chapters to the following - unless you have any objections or suggestions ? david shimko ehud ronn helyette geman mark garman dragana pilipovic corwin joy ilia bouchouev alexander edyleland steve thomas hope the writing is going ok , and regards to grant . best regards . chris",0 +"Subject: masayuki fujita from the mitsubishi research institute i have been at enron for eight months and work under sally beck . in december i attended the exotic energy derivatives conference , where i met masayuki fujita from the mitsubishi research institute . he is doing research on the deregulation of the japanese power market . we had lunch together and chatted for some time about his work ( i worked in a japanese company for 8 1 / 2 years and speak fluent japanese , so we got along easily ) . he was in houston this week and came by to visit . on monday , we met with vince kaminski and grant masson and later had dinner with them . sally suggested that i introduce him to alan aronowitz and you . of course , you were out of town , but we did meet with alan who said you would probably want to meet him back in tokyo anyway . would you like for me to set something up ? regards , eugenio",0 +"Subject: re : forward oil prices jens , i think i have cc ' ed you on this . john nowlan approved and stinson gibner has the curves available for you . vince jens gobel @ enron 11 / 10 / 2000 04 : 44 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : forward oil prices hi vince , have you already heard back from john nowlan ? thanks a lot for your help again . have a great weekend . jens jens gobel 10 / 26 / 2000 12 : 06 pm to : vince j kaminski / hou / ect @ ect cc : subject : forward oil prices vince , as discussed on the phone , i am sending you the request that i have received from prof . buehler . prof . buehler is the head of the faculty of finance at mannheim university in germany . currently , he is writing a study about the hedging strategy that led to the metallgesellschaft debacle . for this study he would like to get forward oil prices form us . the forward oil prices should be for wti with cushing as the delivery point for the time period july 1986 and december 1996 with remaining contract durations between one and ten years . it would be ideal to get this data on a daily basis . weekly or monthly data is helpful as well , of course . since mannheim university is among enron ' s tier one recruiting universities in germany , it would be great if we could help him with some data . thanks a lot for your help . jens o . korn @ uni - mannheim . de on 10 / 10 / 2000 11 : 44 : 57 am to : jens . gobel @ enron . com cc : subject : daten sehr geehrter herr goebel , bezugnehmend auf ihr heutiges telefongespraech mit herrn prof . buehler hat mich prof . buehler gebeten , ihnen genauer darzustellen , welche daten idealerweise fuer unsere studie benoetigt wuerden . zunaechst zum hintergrund . wir sind auf enron gestossen , weil eduardo schwartz in einer seiner arbeiten die folgende datenquelle angibt : "" in addition to the publicly available futures data described above , for the purpose of this study enron capital and trade resources made available some proprietary historical forward price curves from 1 / 15 / 93 to 5 / 16 / 96 . from these data ten forward prices were used in estimation , ranging in maturities from two months to nine years "" dies laesst uns annehmen , dass enron bestimmte daten verfuegbar hat . nun zum idealen datensatz : forwardoelpreise ( am besten wti mit lieferung in cushing ) fuer restlaufzeiten zwischen einem und zehn jahren fuer den zeitraum juli 1986 bis dezember 1996 . dabei waere eine hohe datenfrequenz ideal ( taeglich , ansonsten woechentlich oder monatlich ) . zusaetzlich waeren auch spotpreise fuer wti mit lieferung in cushing nuetzlich . diese idealen datenanforderungen werden sich vermutlich nicht erfuellen lassen . jedoch waere uns auch schon geholfen , wenn ein kuerzerer zeitraum oder eine niedrigere datenfrequenz vorlaege . wir waernen ihnen sehr dankbar , wenn sie in erfahrung bringen koennten , inwiefern solche daten von enron zu erhalten sind . herzlichen dank fuer ihre muehe und beste gruesse olaf korn p . s . bei rueckfragen stehe ich ihnen jederzeit gern zur verfuegung dr . olaf korn university of mannheim chair of finance d - 68131 mannheim germany tel . : + + 49 / 621 / 181 - 1487 fax . : + + 49 / 621 / 181 - 1519 e - mail : o . korn @ uni - mannheim . de",0 +"Subject: re : forecasting project barbara , we are in touch with ketra and john and we shall work with them when they are here . vince barbara g dillard @ enron 08 / 29 / 2000 11 : 23 am to : mark mixon / hou / ees @ ees @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , laura luce / corp / enron @ enron , d . wear @ pecorp . com @ ees @ ect , k . schmitt @ pecorp . com @ ees @ ect , j . wirick @ pecorp . com @ ees @ ect subject : re : forecasting project mark : f . y . i . - i have been informed by ketra that she plans to be in the houston office on monday september 18 th through wednesday september 20 th to meet with vince and stinston . hopefully we will be ready to continue phase i of the forecasting project . can you make arrangements with vince and stinson ( hopefully they will be available to meet ! ) . thanks ! barbara ( 312 ) 541 - 1232",0 +"Subject: anjam vince , let me know when you ' ve talked to anjam about moving to houston . i need to do his performance review this week and it would be good to get this on the table with him before then . thanks - dale",0 +"Subject: global technology organization changes as the global technology group moves forward in accomplishing its goals of developing worldwide technology standards , ecommerce opportunities and global platforms , we continue to make changes in the organization to enhance communication and maximize our intellectual capital . with that in mind , we are pleased to announce the following organization changes within global technology : jay fitzgerald , md ecommerce , will be moving to enron north america and will have responsibility for all of ena  , s ecommerce initiatives . although this will be a big loss for global technology , jay will provide immediate benefits to the explosion of ebusiness opportunities that are developing in the ena lines of business . jay will report to greg whalley . steve horn , vp investments , will be moving into global technology to head the ecommerce ventures group responsible for ecommerce merchant investing . the scope of this new group will include investing in the following areas : strategic sourcing / procurement / demand aggregation / asset disposition businesses ecommerce enabling technologies global ecommerce opportunities outside of ebs / ena / ee . ebs , ee and ena will be evaluating and making equity investments within their specific business units . examining houston technology business opportunities not directly related to enron  , s business . steve will report directly to me in his new role . jenny rub has accepted the newly formed position of vp of infrastructure for enron corp . her responsibilities include managing all it infrastructure support activities . jenny will report to philippe bibi . jenny is currently vp and cio for the gas pipeline group and she will be transitioning out of that role as she completes several important initiatives . beth perlman has recently relocated to the united states as vp of ena  , s application development , rac and treasury applications . she was previously heading up application development for enron europe . she will report to philippe bibi . dan bruce , vp , is responsible for it support in the international regions , ee & cc and asset operations . he will report to philippe bibi . john pavetto , vp , will be responsible for all ecommerce initiatives outside of enrononline . john will report to philippe bibi . jay webb , sr . director , will continue to lead the enron online team reporting to philippe bibi . arshak sarkissian , sr . director , has accepted a position with ebs  , s strategic development group and will be transitioning his responsibilities over the course of the next few weeks . he will report to scott yeager . please join me in congratulating everyone on their new positions .",0 +"Subject: h - ib visa application chonawee : further to our telephone conversation this morning , i am attaching a visa questionnaire that i need you to complete and return to me immediately , together with the documents listed at the bottom of the form . as explained , i will send everything to our attorney ' s office in the hope that they can file for the h - ib prior to reaching the cap , but in the event this does not go through , your h - ib will not be available until october , 2000 . as your opt does not expire until november 1 , 2000 , we will still have the opportunity to get you an h - ib before your opt runs out . please bring these documents to me in eb 3694 . margaret daffin x 57843",0 +"Subject: christmas break fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 14 / 99 07 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" van t . ngo "" on 12 / 04 / 99 11 : 17 : 01 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : christmas break dear vince , as the holidays approach , i am excited by my coming break from classes but also about the opportunity to see everyone at enron again and to work with you and them soon . i am writing to let you know that i would be very happy to work at enron over my break and i would like to plan out a schedule . my semester officially ends dec . 20 th but i may be out of town the week before christmas . i will be available the following three weeks , from monday , dec . 27 to friday , jan . 14 . please let me know if during those three weeks , you would like me to work and for what dates you would need the most help so that we can arrange a schedule that would be most helpful to you and so that i can contact andrea at prostaff soon . please let me know if you have any concerns or questions about a possible work schedule for me . give my regards to everyone at the office and wishes for a very happy holiday season ! i look forward to seeing you soon . sincerely , van ngo ph : 713 - 630 - 8038 - attl . htm",0 +"Subject: vp & director count for the research group hello deborah : i would like to introduce myself and anita dupont to you as we will probably be working together quite a bit between now and our move . please feel free to contact either one of us regarding any questions or needs you may have . headcount the executive , vp and director headcount for the research group is : managing director 1 vice presidents 6 directors 5 also , anita and i would like to invite you to meet with us and go over our library space requirements . please let me know when you have some free time and we will be available . my number is : 3 - 5290 - ebl 961 anita ' s # is : 3 - 0329 - ebl 969 i look forward to meeting you , shirley crenshaw administrative coordinator enron research group 3 - 5290",0 +"Subject: metals cross correlations dear all , i have completed the cross - correlation study for the seven metals we have data for - will complete for gold , silver and cocoa . i have also attached the spreadsheet . correlations based on log - returns , 21 , 42 or 63 business days for either front month only or average of entire futures curve - please see data below or drill into spreadsheet . we can choose the most appropriate time - bucket and whether to use front month or "" average of curve "" data . regards , anjam x 35383 spreadsheet :",0 +"Subject: performance management process as our existing businesses grow and new businesses are created , ease of movement and development of our top talent becomes essential to our success . as you heard at the management conference all officers will be titled , reviewed , promoted , and compensated according to a more standard set of guidelines . the process recognizes the intrinsic value of each officer , rather than tying that individual to the value of their specific job or reporting relationship . officer titling has been standardized throughout enron . there are four levels of officers : members of the enron office of the chairman make up level 4 . level 3 includes all other members of the enron executive committee . level 2 is made up of managing directors , including company presidents and some senior vice presidents . level 1 are vice presidents and some senior vice presidents with grandfathered titles . this year a common evaluation process is being implemented for level 1 and level 2 officers . officers will be evaluated by a committee , through a process referred to as the performance review committee ( prc ) , utilizing a standard set of performance criteria and performance ratings . performance committee reviews will occur twice a year  ) in july for feedback purposes and at year - end for feedback as well as bonus and total compensation considerations . the executive committee will handle the prc for all level 2 officers . review of level 1 officers will occur at the business - unit level first with the results  & cross calibrated  8 by the executive committee and a group of approximately sixteen managing directors . the goals of the prc process is to insure a consistent standard for our overall pool of executive talent and to provide a tool to more effectively utilize talent throughout the organization . to further promote consistency the executive committee will consider all promotions in january of each year . exceptions , internally or externally , will be infrequent . the individual  , s performance evaluation will be the starting point for all compensation decisions . compensation includes base pay , bonus and long - term awards . a long - term program that replaces individual or business unit plans has been approved and will be communicated to individuals before bonus payments are made . in addition to the level 1 and level 2 reviews , business unit , global and corporate cross - functional prc reviews for directors , senior directors and general managers have started . this year - end process will be utilized as a benchmark to determine how we further refine the evaluation process at this level in the future . if you should have any questions about the process , please direct them to your human resources business unit leads per the following : mary ann long ( gpg ) x 36810 david oxley ( ena / eel / global trading ) x 33557 ray bennett ( ees ) x 37039 robert jones ( global technology / global finance / global gwen petteway ( corp ) x 37351 asset operations / global engineering & construction ) x 35810 janie bonnard ( caribbean / middle east / scott gilchrist ( asia pacific / africa / china ) x 67081 lng ) x 68202 gerry chatham ( egep ) x 35141 miguel padron ( esa ) x 66552 marla barnard ( eci ) x 58158 ranen sengupta ( india ) x 67967 cc : enron executive committee members 28599",0 +"Subject: reviewer approval please note that your employees have suggested the following people to complete a feedback form on their behalf . you will need to access the performance management system ( pep ) to either approve or decline these suggested reviewers . once you have approved the suggested reviewers they will be notified and can begin completing the feedback form . your list of employees that have suggested reviewers are listed below : date suggested : may 24 , 2000 feedback due date : jun 16 , 2000 employee name : crenshaw , shirley j date suggested : jun 01 , 2000 feedback due date : jun 16 , 2000 employee name : gibner , peyton s date suggested : may 19 , 2000 feedback due date : jun 16 , 2000 employee name : kollaros , alexios date suggested : may 22 , 2000 feedback due date : jun 16 , 2000 employee name : krishnarao , pinnamaneni v date suggested : may 22 , 2000 feedback due date : jun 16 , 2000 employee name : shanbhogue , vasant",0 +"Subject: ng prices margaret , please find attached texas and louisiana wellhead prices ( daily , monthly and quarterly ) . we had data available starting 1983 and the information source is natural gas intelligence . information on uk "" beach "" prices will be available for the following locations : teesside , bacton and st . fergus . would you like to have data on a specific one ? sincerely , elena elena chikina enron research group vince j kaminski @ ect 08 / 01 / 2000 07 : 52 am to : mike a roberts / hou / ect @ ect cc : elena chilkina / corp / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : vince does your group have a monthly or a quarterly price history in nominal terms for a us onshore louisiana natural gas price ( or a texas wellhead price ) and a uk landed beach price for the past 15 years ? i am gathering historical data for jim o hara for our colombia pipeline in south america and these are among the series of data they are seeking . they would like the data from a published source in an electronic file if possible . . their timetable is by cob weds this week . thank you for your help . margaret mike do you agree with me ? please , ask elena to check what price info is available at xmim . vince margaret , the prices going back 15 years are not too informative ( for the first 5 years ) , as he industry was still regulated . we shall try to get you the us series as soon as possible . vince margaret carson @ enron 07 / 31 / 2000 04 : 12 pm to : vince j kaminski / hou / ect @ ect cc : kyran hanks / lon / ect @ ect subject : vince does your group have a monthly or a quarterly price history in nominal terms for a us onshore louisiana natural gas price ( or a texas wellhead price ) and a uk landed beach price for the past 15 years ? i am gathering historical data for jim o hara for our colombia pipeline in south america and these are among the series of data they are seeking . they would like the data from a published source in an electronic file if possible . . their timetable is by cob weds this week . thank you for your help . margaret",0 +"Subject: power plant model jeff , a few comments on the model : 1 . we have a few reservations about some features of the model but would like to discuss it internally and make the improvements without giving the benefit of our insights to the consultant . in general , the model is not unreasonable but the devil is always in the details and in the inputs and calibration . the same model may produce drastically different results depending on the quality of inputs . 2 . we don ' t have a separate pool of programmers in the research group . we were told that you would provide an it resource . alex would supervise this person . vince",0 +"Subject: 3 hours vacation vince : if it is all right i would like to take a couple hours vacation in the morning . my grandson starts "" middle school "" ( 6 th grade ) and he wants me to take him . i should be in by 10 : 00 am . thanks ! shirley",0 +"Subject: re : trading ag prods . vince , just wanted to let you know that i have done some preliminary , high level , research into this commodity and would be glad to share it . please let me know if you would be interested in it . thank you . shalesh ganjoo vince j kaminski @ ect 05 / 01 / 01 10 : 20 am to : shalesh ganjoo / enron communications @ enron communications @ enron cc : elsa piekielniak / corp / enron @ enron subject : re : trading ag prods . shalesh , a good idea . i shall forward it to the ag traders . vince from : shalesh ganjoo @ enron communications on 05 / 01 / 2001 10 : 12 am to : nelson neale / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : trading ag prods . nelson , i know you are focusing on agricultural products for trading , so i just wanted to know if we are looking at wool . i know that it ' s traded in australia and new zealand , so we might be able to look into it as well . please let me know . thank you . shalesh ganjoo",0 +"Subject: enron cover letter & resume for dave gershenson celeste , i am sending you the resume of david gershenson , an mba student from wharton . he is interested in a summer internship with enron and i shall be glad to take him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2001 01 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" chen , vincent "" on 01 / 17 / 2001 02 : 35 : 00 am to : vince . j . kaminski @ enron . com cc : "" gershenson , david "" subject : enron cover letter & resume for dave gershenson vince , i am passing along a cover letter and resume for my classmate and friend , dave gershenson , who is very interested in working for enron this summer . he is working on reliant energy ' s tiger team this quarter . please let us know if you have any questions . thanks much and see you friday ! vincent vincent y chen mba candidate , class of 2002 the wharton school university of pennsylvania chenvinc @ wharton . upenn . edu > - - - - - original message - - - - - > from : gershenson , david > sent : tuesday , january 16 , 2001 6 : 24 am > to : chen , vincent > subject : enron cover letter & resume > > vincent , > > please find attached a cover letter and resume for the enron summer finance internship . as we discussed , i would appreciate it if you could pass these along to your tiger team contact , mr . kaminski . > > thanks , > dave > > > > > > > - enron letter . doc - dave gershenson . doc",0 +"Subject: re : potential prospect tom , we are currently space constrained but we shall always take a qualified candidate . please , ask george to send me a resume and we shall get in touch with him to arrange a phone / on - location interview . vince tom arnold on 04 / 25 / 2001 09 : 15 : 09 am to : vince . j . kaminski @ enron . com cc : subject : potential prospect hey vince , given that the eastern finance conference is already taking place , i think it is safe to assume that they did not desire an energy derivative round table discussion . however , i appreciate you volunteering to potentially having been on such a round table discussion . i ' ve been teaching a "" real options "" course that has the students performing monte carlo analysis , black - scholes pricing , and binomial pricing along with a heavy dosage of understanding risk neutral pricing . a few of your new hires from the undergraduate program will be coming from this course . however , i have a student who will be finishing his mba next spring that is particularly good . he is genuinely interested and curious about option pricing , trading , and hedging with excel / vba skills . in fact , he usually figures out when i make even very small mistakes in my calculations . this is not to say that some of my other students aren ' t very talented themselves , but that this person really stands out . do you think you and / or enron would be interested in such a person ? if so , what do you recommend that he do to get his foot in the door ? his intention is to finish the mba , but i do not know if this would preclude you from hiring or at least taking a look at him now . his name is george moss and i ordinarily would not bother you directly about a potential employee . i am making an exception in this case because he is a particularly good talent without being the slightest bit arrogant . otherwise , i hope this e - mail finds you doing well and not travelling too much . tom professor tom arnold e . j . ourso college of business administration department of finance 2155 ceba louisiana state university baton rouge , la 70803 o : 225 - 388 - 6369 f : 225 - 388 - 6366",0 +"Subject: re : congratulations thanks . congratulations to you . ray vince j kaminski 01 / 11 / 2000 09 : 49 am to : raymond bowen / hou / ect @ ect cc : subject : congratulations ray , congratulations . well deserved . vince",0 +"Subject: re : credit trading brought to you by bryan seyfried ted , i ' m happy to sign off on the basis discussed with bryan at the end of last week and outlined in the attached memo . regards fernley from : ted murphy 08 / 02 / 2000 22 : 16 to : steve w young / lon / ect @ ect , fernley dyson / lon / ect @ ect , michael r brown / lon / ect @ ect , william s bradford / hou / ect @ ect , john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect cc : rick buy subject : credit trading brought to you by bryan seyfried my understanding is that bryan will be in houston to present his strategy regarding credit trading for approval under an interim trading policy - signed off by jeff and rick . before making any recommendation to jeff , rick wants to be sure that the people on the list above are comfortable with the activity and will be willing to signoff on the approval . given that bryan will be physically here , i am requesting that you e - mail your concurrence to me no later than tommorrow . otherwise rac will not present to jeff for approval . thank you for your help in puttting this together and making it a success ! ted",0 +"Subject: subscribe this message has been automatically generated in response to your mckinseyquarterly . com registration . you requested notification about new articles in the categories listed below . to confirm your enrollment , please reply to this message and remove any / all characters that may preceed the word subscribe . subscribe economic - performance subscribe retail subscribe environment subscribe countries subscribe strategy subscribe interviews subscribe financial - institutions subscribe energy subscribe telecommunications subscribe corporate - finance subscribe electronic - commerce",0 +"Subject: wti models stinson and vince , i finalized the presentation for john lavorato , he said he is ready to present it to greg . he is happy with the work we provided . i will be on vocation starting next week . i attached the simulation models here in case that you need them . the oc version deals with open - close trading and cc version deals with continuous trading . should you have any questions , or need to run different scenarios , please call me at home . otherwise , i will see you next year . merry chrismas and happy new year ! zimin",0 +"Subject: new pc with two 128 mb of ram shirley , is this an upgrade for maureen ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 18 / 2000 03 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : felix buitron jr . / enron @ enronxgate on 12 / 18 / 2000 02 : 27 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : new pc with two 128 mb of ram vince , i have your new pc . i will get with you when i ' m done to schedule a delivery time . i will need your network and notes password to test your apps . thanks , felix",0 +"Subject: re : telephone interview with the enron research group mr . yaralov : i want to apologize to you , i have had the flu and have been out of the office . would you be able to receive the call in the morning ( thursday , september 28 th ) at 8 : 30 am california time ( 10 : 30 am houston time ) ? we will call you at your home , 213 / 250 - 5424 . please let me know as soon as possible and i will arrange the interview . sincerest apologies ! shirley crenshaw "" georgi yaralov "" on 09 / 25 / 2000 06 : 51 : 45 pm to : cc : subject : re : telephone interview with the enron research group dear shirley crenshaw . unfortunately i did not get any response on my previous e - mail . i would like to find out if you want me to set up new time frames for the interview . please let me know . sincerely , georgi yaralov - - - - - original message - - - - - from : to : sent : wednesday , september 20 , 2000 8 : 50 am subject : telephone interview with the enron research group > good morning mr . yaralov : > > your resume was forwarded to vince kaminski and the research group > with enron . they would like to schedule a telephone interview with you > at your convenience to see if there might be a fit somewhere within our > group . > > please let me know several time frames that might be acceptable to you > for this interview . > > the interviewers would be : > > stinson gibner ( before monday the 25 th ) vice president > grant masson ( after monday the 25 th ) vice president > zimin lu director > tanya tamarchenko director > vasant shanbhogue vice president > > > regards , > > shirley crenshaw > administrative coordinator > enron research group > 713 - 853 - 5290 > email : shirley . crenshaw @ enron . com > > >",0 +"Subject: re : letter larrissa , i spoke with joe pokalsky . he will be glad to help you . please , call him at the number 770 393 7411 . vince larrissa sharma 04 / 26 / 2000 08 : 20 am to : vince j kaminski / hou / ect @ ect cc : subject : re : letter vince , the letter was perfect . thanks for the trouble . my name however is spelt with a double "" r "" . = = > larrissa sharma . larrissa . vince j kaminski 04 / 25 / 2000 09 : 19 am to : larrissa sharma / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : letter larrissa , please , take a look at the letter . my assistant is on vacation , she will be back tomorrow . please , check the spelling of your first name . it was inconsistent in the original letter from the lawyer . vince",0 +"Subject: risk magazine - enron sponsored issue on energy derivatives i have recently come on board as treasurer , enron india . prior to joining , i was with reliance industries , a petrochemical conglomerate in india . the central banking authorities are now thinking of permitting corporates to hedge their oil and other related risks . i believe the literature published by risk in collaboration with enron has come to be considered as an industry standard . would it be possible to arrange for two copies to be sent across to us . thanx n regards g . subramaniam treasurer , enron india pvt . ltd . 36 , maker chambers vi , nariman point , mumbai 400 021",0 +"Subject: re : sorry see you at 11 : 30 in the hyatt lobby . vince j kaminski @ ect 04 / 05 / 2000 03 : 01 pm to : michael j popkin / enron _ development @ enron _ development cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : sorry monday 4 / 10 looks fine . vince michael j popkin @ enron _ development 04 / 05 / 2000 02 : 55 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : re : sorry vince , i am not totally clear from your note on your availability . are you free next monday ( 4 / 10 ) ? michael vince j kaminski @ ect 04 / 05 / 2000 02 : 45 pm to : michael j popkin / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : sorry michael , next week starting friday . outr on thu and fri . vince michael j popkin @ enron _ development 04 / 05 / 2000 12 : 54 pm to : vince j kaminski @ ect cc : subject : sorry vince , sorry about lunch yesterday . i hope you got the message in time that i was out sick . i ' d like to rescheduel . when are you free ? michael",0 +"Subject: re : enron contact info christie , thanks again for taking the time to visit wharton and share about enron and our upcoming project . i know each of us is excited about the opportunity to learn and contribute to enron . specifically , thank you for the awesome dinner at the palladium . it was a great way to get to know you , visant , and vince better . i look forward to visiting houston in january . please let me know if you need any additional information with regard to the trip . have a great holiday season , and i look forward to seeing each of you in january . sincerely , jason cummins - - - - - original message - - - - - from : christie . patrick @ enron . com to : fap @ management . wharton . upenn . edu cc : clayton . degiacinto . wgo 2 @ wharton . upenn . edu ; mallikd @ wharton . upenn . edu ; dennis . feerick . wgo 2 @ wharton . upenn . edu ; edsono @ wharton . upenn . edu ; gustavop @ wharton . upenn . edu ; hethorne @ wharton . upenn . edu ; jack . rejtman . wgo 2 @ wharton . upenn . edu ; singhjai @ wharton . upenn . edu ; marc . cummins . wgo 2 @ wharton . upenn . edu ; levent 86 @ wharton . upenn . edu ; whitselk @ wharton . upenn . edu ; thomas @ wharton . upenn . edu ; camoglum @ wharton . upenn . edu ; nicholas . levitt . wgo 2 @ wharton . upenn . edu ; bassalo @ wharton . upenn . edu ; mhenahan @ wharton . upenn . edu ; mvittal @ wharton . upenn . edu ; stephen . lessar . wgo 2 @ wharton . upenn . edu ; bhallat @ wharton . upenn . edu ; vincent . chen . wgo 2 @ wharton . upenn . edu ; weigelt @ wharton . upenn . edu ; fap @ management . wharton . upenn . edu ; christie . patrick @ enron . com ; vkamins @ enron . com ; jeffrey . a . shankman @ enron . com sent : 12 / 7 / 2000 7 : 33 pm subject : re : enron contact info hi evryone ! vince , vasant and i are very excited about the tiger project ! we all thoroughly enjoyed the opportunity to meet with such an incredibly interesting , enthusiastic and intelligent group . thank you for your time ! for those interested in the houston trip on january 18 - 19 th , please let me know by the 15 th of december so that i can get the best deal on air fare ( one - month in advance ) . also , i ' ll be forwarding the enron information packages to donna piazze for your receipt next week . i am including jeff shankman in this reply , as jeff is a wharton grad , leader of one of our enron business units , and one of the most enthusiastic enron / wharton cheerleaders . please feel free to individually contact me if there is anything i can do for any of you . thanks again for your enthusiastic interest in enron ! - - christie .",0 +"Subject: summary of dabhol lenders ' presentation vince / stinson , please find below a summary of the presenation given to lenders at the april 23 rd meeting in london . the key points that emerge are : phase ii will require commitments of about $ 700 mm to complete ( phase i + ii total $ 3 . 2 billion ) several commercial issues are getting severe in the current environment in india , could result in cost escalations makes the case that mseb does not have the financial strength to absorb phase ii power management to seek authority to serve preliminary termination notice ( ptn ) , triggering a 6 month cure period a copy of the full presenation is available . regards , sandeep .",0 +"Subject: james aimone james aimone is a canditate for a summer position supporting the ena option pricing and valuation team . he will be at enron , friday april 28 from 2 : 30 to 4 : 00 . schedule of interviews : stinson gibner 2 : 30 - 2 : 45 zimin lu 2 : 45 - 3 : 00 paulo issler 3 : 00 - 3 : 15 elizabeth grant 3 : 30 - 4 : 00 thanks , stinson",0 +"Subject: shalesh jim , clarification regarding shalesh ' transfer to ebs . the request to rotate shalesh out of research into ebs came from ravi thuraisingham . my understanding was that it was fully coordinated with you and i was more than happy to oblige . shalesh is concerned that his integrity is being questioned and i can assure you that he was not the instigator of the move . my impression is that shalesh is doing a very good job and ravi is very happy him . i shall be glad to keep him in the research group in his current role . have a good 4 th of july . vince",0 +"Subject: schedules , maps , etc . gentlemen : attached is a schedule of activities as well as maps and driving instructions for those who are driving to campus friday morning . the dress for friday is casual ( no ties , sport shirts and jackets if you wish ) . for those of you who have asked about thursday night ' s dinner please note that we have pushed it up to 6 - 8 pm at ninfa ' s mexican restaurant . at this point i plan to pick up bennett s . and don c . from the marriott before 6 and will do the same for anyone else ( let me know ) . the restaurant is in easy walking distance of the hilton and marriott . please note the times for your individual interviews / video taping on friday . some of you are leaving early so we are taping you from 11 - 12 friday morning while others are being taped after the program is over . i ' m sure i ' ve forgotten something so you ' ll probably get more e - mails . however , this should take care of the primary stuff . i ' m really looking forward to seeing all of you and to hearing your thoughts in the workshops . more later , john - schedule _ map . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : weekly report vasant , yes , it ' s perfect . please , indicate that the wording was unfortunate . vince vasant shanbhogue 03 / 08 / 2001 11 : 20 am to : vince j kaminski / hou / ect @ ect cc : subject : re : weekly report hi vince , regarding david port ' s response to kevin kindall ' s email , i feel that i should respond , at least to make our position clear . please indicate if the following response is appropriate - - - - - - - "" hi david , i understand that you were slightly upset over a comment kevin kindall made in one of his weekly reports . the intention was never to disparage anybody . it is just that since research gets data from a large number of sources , we feel obligated to the data donor to ask any requester for clarification of need . i completely understand that rac typically has access to much sensitive information and they have a right to know much information . we just want to make sure there is open flow of information ( it is in everybody ' s best interests and the company ' s best interests ) and that everybody is aware of how data is flowing . best wishes , vasant "" - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 03 / 08 / 2001 11 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : david port / enron @ enronxgate on 03 / 08 / 2001 08 : 46 am to : kevin kindall / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , rudi zipter / enron @ enronxgate subject : re : weekly report kevin - thanks for the update . on the stock option plans , if your angle is what i suspect , i suggest you get with rudi zipter , who has done a great deal of work on this exposure , including characterising and actually booking the short option positions in enron ' s equity system . we are already working with ben glisan ' s team firming up a hedging program . we are well advanced in this effort so if you get with my people it could save you a great deal of time . secondly , i am afraid i do take some exception to your references to naveen ' s team in your last point . generally in rac i don ' t believe we are obliged to explain why we need information , except as a courtesy - otherwise that would compromise our role somewhat . specifically , i am aware of the sensitivity of raptor , just as i am of the sensitivity of all the information my group is privvy to on a daily basis . again , we have done a good deal of work on these structures too ( i see a position report daily ) . as i have discussed with vince , naveen ' s request would have been derived from a discussion we all had with rick , concerning "" meltdown "" scenarios and their effect on , amongst other things , funding vehicles . but i would rather have had a conversation about this than see slightly disparaging remarks about my people in email traffic . rgds dp - - - - - original message - - - - - from : kindall , kevin sent : monday , march 05 , 2001 8 : 19 am to : kaminski , vince ; shanbhogue , vasant cc : port , david subject : weekly report >",0 +"Subject: wharton entrepreneurship conference info . this looks like a great opportunity for us . jeff - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 10 / 04 / 2000 05 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kristin gandy @ enron 10 / 04 / 2000 02 : 14 pm to : jeffrey a shankman / hou / ect @ ect cc : subject : wharton entrepreneurship conference info . do you want to participate in this event ? kristin - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 10 / 04 / 2000 02 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - cassandra santos on 09 / 29 / 2000 01 : 04 : 21 pm to : celeste . roberts @ enron . com cc : kristin . gandy @ enron . com subject : wharton entrepreneurship conference info . dear celeste and kristin : i am re - sending information regarding the wharton entrepreneurship conference and the opportunities to sponsor the conference as well as participate in the expo . we are expecting the conference to double in size with more than 1000 attendees . in addition , we would like to emphasize that the spirit of entrepreneurship is alive and well outside of the "" dot . com "" world including in large , innovative companies such as enron . we have already lined up some smash hit speakers including christy jones of trilogy and pcorder as well as anita roddick of the body shop . we would be very interested to have the participation of enron in the conferences as a sponsor or at the very least , a participant in our career expo . thank you very much for your time and consideration . sincerely , cassandra santos co - chair , wharton entrepreneurship conference 215 . 732 . 7940 h 215 . 498 . 3243 w - resend enron . doc - fundraising packet 2000 . doc",0 +"Subject: re : digitals many thanks . gillian .",0 +"Subject: re : power plant model hi vince : number one below is fine . . . the more accurate the ebitda model the better . your "" tweaking "" of the model at this point won ' t create any chinese wall problems . michelle and gary will talk about the programmer issue on monday , and get back to you . i apologize if there was any confusion . we ' re certainly grateful for alex ' s involvement . today is my last day of associate rotation within the financial trading group , and i start at ees on monday . i handed off the project as best i could , and of course will be available if you need me . my e - mail and phone number will be the same . have a nice weekend . jeff vince j kaminski @ ect 01 / 05 / 2001 03 : 26 pm to : jeff m gray / na / enron @ enron cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , alex huang / corp / enron @ enron , gary hickerson / hou / ect @ ect , michelle d cisneros / hou / ect @ ect subject : power plant model jeff , a few comments on the model : 1 . we have a few reservations about some features of the model but would like to discuss it internally and make the improvements without giving the benefit of our insights to the consultant . in general , the model is not unreasonable but the devil is always in the details and in the inputs and calibration . the same model may produce drastically different results depending on the quality of inputs . 2 . we don ' t have a separate pool of programmers in the research group . we were told that you would provide an it resource . alex would supervise this person . vince",0 +"Subject: re : congrats vince , thanks for the note - and congratulations on yours as well . i haven ' t had too much to do yet with the research guys here as they ' re pretty much self directed . once a week ( thursday am ) i ' ve started a joint project update meeting with structuring and research . i hope this way the structuring team can bounce quantitative issues off research and the research guys can stay closer to the commercial deals . - dale vince j kaminski 11 / 01 / 2000 16 : 08 to : dale surbey / lon / ect @ ect cc : subject : congrats dale , congratulations . well deserved . i am very happy your tremendous contribution to the company has been recognized . vince",0 +"Subject: 1997 risk paper on pricing of electricity derivatives hello vince , my name is bernard murphy - i received your e - mail address from les clewlow , who was my phd supervisor at the financia options research centre at warwick business school . i ' ve just finished my phd on electricity price jump diffusions : a theoretical and empirical study in incomplete markets - hence my interest in electricity price modelling and derivative pricing . i was looking to get hold of a copy of your 1997 paper , which has recently come to my attention : "" the challenge of pricing & risk - managing electricity derivatives "" , the us power market , risk publications , pp . 149 - 171 . and les suggested that i contact you directly ( les is travelling at present and doesn ' t have an electronic copy available ) to request an e - copy . incidentally , i am lecturer in finance / financial mathematics at university of limerick ( ireland ) and have taken a year out to work for caminus uk , where i am working on introducing and developing a markets - based approach ( spark - spread ) to real asset valuations in the uk power industry . thanks in advancve bernard murphy",0 +"Subject: news review update the news review site , http : / / www . news - review . co . uk home of weekend city press review , now offers registered users two new features : all registered users can now : - do a text search in addition to a company search on the full six - year archive - and set up favourite companies on their home page for easier and faster access to articles within the review and the archive which relate to those companies the best way to keep abreast of the weekend ' s financial news and views is to receive an email copy of weekend city press review , either via the full review , or the clippings relating to specific companies in which you are interested . registered users are invited to take up the free offer of a 4 week subscription to any of the services , including pdf delivery of the review , and the clippings service . to login please use this url : ype = login you can download this weekend ' s full review free of charge at http : / / www . news - review . co . uk / freepdf . pdf from 8 pm uk time this sunday your username for this service is vkaminski if you have forgotton your password you can retrieve it at to remove yourself from this service please login and use the ' my profile ' option . our ref wcprvl : vkaminski",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: summer internship dr . kaminski , sorry for the late response , it took me some time to coordinate things . finally , it ' s almost dont : - ) it turned out that from june to august will be best for me for work at enron ( say june . 4 to august . 4 ) but i still need to know several things from your side . could you answer following questions ? first : is my suggested working period is ok with you ? if so , let me know what to do for settlement during the period . second : i got a list of work , i might be able to do for dealbench team from ross and suresh . i ' d like to know it is still a valid work list : the list he sent is as following : > 1 . write a paper in layman ' s terms that answers > questions like the following : > benefits of auctioning online for both buyers and > sellers , particularly in reverse auctions > explanation how multi - variable auctions are not > as efficient as price - only auctions ( is this true ? ) > how many participants are recommended for a > successful live auction > what types of goods and services are best suited > for live auctions versus sealed bid quotes > opinions on lotting strategies > trends in online private auctions > 2 . identify appropriate recent auction research ( 3 > or 4 papers out of the 90 + you provided ) and obtain approvals from the > authors to post on our site > 3 . create a list / bibiliography of relevant auction > literature ( with hyperlinks ? ) > 4 . would you be willing to offer auction consulting > services to our customers ( if they are interested ) third : there is an e - procurement forum at haas school of business , in may 22 . the chair of the forum is my advisor prof . arie segev . a person from wells fargo bank will talk about wells fargo ' s role in e - marketplace payment initiative , where enron broadband services is also one of key players along with citibank . he asked me whether you can contact a person at enron broadband services , who ' s related to the initiative . he wants to know whether we will have a speaker from enron to see enron ' s perspective , in the forum . here is a link to news related to the initiative , fourth : my advisor wants to know whether there could be any opportunity to do a case study , regarding enron ' s business . he is interested in e - procurement and e - marketplaces . business model and system architecture . . . thanks for reading this long email . i ' ll look forward to your answer . . i am sorry for giving you so much burden to answer those questions possibly not easy to answer . warm regards , jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on mon , 5 mar 2001 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > this is fine though you are welcome to spend more > time with us this summer . > > vince > > > > > > jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : summer internship > > > dr . kaminski , > > thanks for your answer . > before i tell you the time frame , > i ' ll need to talk with my advisor , first . > because here is an on - going - project . > i need to coordinate the schedule . > > i ' ll appreciate it if you understand my situation , > and give me some time ( less than a week , of course ) . > > for your reference , > probably > the dates i ' d like to ask you will be > from mid - may to mid - july ( 2 months ) > > warm regards , > jinbaek > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > jinbaek kim > ph . d candidate > dept . of industrial engineering and operations research > u . c . berkeley > http : / / www . ieor . berkeley . edu / ~ jinbaek > > go bears ! > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > : a a : _ _ . . . . . _ > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > : . ' : ` . : ` , ` . > ` . : ' - - ' - - ' : . ' ; ; > : ` . _ ` - ' _ . ' ; . ' > ` . ' "" ' ; > ` . ' ; > ` . ` : ` ; > . ` . ; ; : ; > . ' ` - . ' ; : ; ` . > _ _ . ' . ' . ' : ; ` . > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > ` . . . . . . . - ' ` . . . . . . . . ' > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > jinbaek , > > > > you can coordinate the details with me . > > let me know what the time frame is for you > > and we shall send you an appropriate offer . > > > > vince > > > > > > > > > > > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm > > > > to : vince . j . kaminski @ enron . com > > cc : > > subject : re : summer internship > > > > > > dr . kaminski , > > > > thank you very much . > > of course , i ' ll be happy to have an opportunity > > to work at such a wonderful company . > > i was contacting with surech raghavan at deal bench team , > > and was going to express my appreciation to you again > > after settling down process with them . > > > > for the period of working , > > i still need to coordinate with my advisor and > > may need to adjust according to that . > > but anyway , i ' ll try to coordinate smoothly . > > > > please let me know whether i should keep contacting > > with deal bench team , > > for working period and > > for misc . living support such as finding a place , rent a car , etc . > > > > i appreciate you so much again , > > for arranging such meetings and giving me an opportunity . > > all this opportunity will not be available to me , > > without your kind help . > > > > warm regards , > > jinbaek > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > > jinbaek kim > > ph . d candidate > > dept . of industrial engineering and operations research > > u . c . berkeley > > http : / / www . ieor . berkeley . edu / ~ jinbaek > > > > go bears ! > > > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > > : a a : _ _ . . . . . _ > > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > > : . ' : ` . : ` , ` . > > ` . : ' - - ' - - ' : . ' ; ; > > : ` . _ ` - ' _ . ' ; . ' > > ` . ' "" ' ; > > ` . ' ; > > ` . ` : ` ; > > . ` . ; ; : ; > > . ' ` - . ' ; : ; ` . > > _ _ . ' . ' . ' : ; ` . > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > > ` . . . . . . . - ' ` . . . . . . . . ' > > > > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > hello , > > > > > > sorry for a delay in getting back to you . > > > we would like very much to offer you a summer internship . > > > > > > please , let me know if you are interested . > > > > > > vince kaminski > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : enron case studies eric , i have a number of case studies on enron but not the one on sutton bridge . i know that peter tufano was working on it but when i checked the hbs site and tried to purchase it , i could not locate it . when i talked to peter a few months ago , he told me that the case study was ready and he was going through enron ' s internal approvals . i cc mark palmer on it . maybe he knows about this specific case study . i wander if it was completed , given sutton bridge developments . vince eric gadd 11 / 10 / 2000 05 : 49 am to : vince j kaminski / hou / ect @ ect cc : subject : enron case studies vince - where might i find copies of the case studies enron has published ? i ' m particularly interested in the sutton bridge publication for havard but would like to know if there is a library of case studies .",0 +"Subject: earthsat summer seminar fyi - - - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 07 / 26 / 2000 05 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - todd decook 07 / 25 / 2000 01 : 07 pm to : mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron cc : subject : earthsat summer seminar - - - - - - - - - - - - - - - the earthsat summer seminar can be downloaded from the following site . . . ? ? just click on the above link to download the file , or copy the link and paste it for the url address in the browser of your choice . ? if you have any questions or problems downloading this file , please contact me ( scott gay ) or dave birmingham at ( 301 ) 231 - 0664 . ? - scott - - - scott gay ( sgay @ earthsat . com ) staff meteorologist / computer support cropcast services earth satellite corporation phone : ( 301 ) 231 - 0664 fax : ? ? ? ? ( 301 ) 231 - 5246 ? ? - imageo 01 . gif",0 +"Subject: re : willow and pathstar evaluations mike , we are short manpower in london . we shall try to evaluate the software in houston . vince "" mike curran "" on 04 / 24 / 2001 10 : 03 : 24 am please respond to "" mike curran "" to : cc : subject : willow and pathstar evaluations hi vince - hope all is well with you . sharad hasn ' t had time to evaluate our willow tree or monte carlo software since the middle of last year . is there somebody else that could do it ? please let me know who i should send the evaluation to . best regards , michael curran ceo quantin ' leap limited piercy house 7 copthall avenue london ec 2 r 7 nj tel : + 44 ( 0 ) 20 7562 3450 fax : + 44 ( 0 ) 20 7562 3411 mailto : mcurran @ quantinleap . com http : / / www . quantinleap . com",0 +"Subject: re : get together for dinner vasant , thanks for the invitation . it works for me . vince vasant shanbhogue 10 / 27 / 2000 01 : 49 pm to : massong @ epenergy . com , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect cc : subject : get together for dinner hi everyone , before grant leaves houston , i wanted to have a small get - together at my house for dinner . since everybody is very busy , i want to schedule a date well in advance , so i am suggesting saturday , dec 2 . this will be dinner with family . please let me know if this works for you . thanks , vasant",0 +"Subject: power 2001 paul , my apologies for a delay in getting back to you with my bullet points . the beginning of the year was quite hectic . i am working from home today , trying to catch up . the program for the 2001 conference looks great ; it ' s likely to be the most interesting and best attended eprm conference ( hopefully , some players will be still around ) . to answer some of your questions : 1 . i shall be glad to serve on the panel 2 . the title of the talk is fine ( american spelling of modelling is modeling ) 3 . bullet points will follow in the next message ( i shall send it in a few minutes ) 4 . vincent kaminski , managing director , enron corp . 5 . vincent kaminski ? ? ? enron corp . ? ? ? 1400 smith ? ? ? room ebl 962 ? ? ? houston , tx 77002 ? ? ? ? ? ? regards , vince",0 +"Subject: resume of mark giancola attached is the resume of mark giancola . mark is the husband of penny pan , a uva business school student for whom i was mentor last summer . penny has received a permanent offer and is inclined to accept if her husband can find suitable employment in houston . as you will see from his resume , mark has worked as an economist in the public and private sectors for the past 2 . 5 years . mark is interested in a role where he can use his abilities to analyze political , credit currency and related risks . please let me know if you have any interest . thanks , rich john : is there a place here in enroncredit . com ? _ _ _ _ _ _ _ _ _ penny mentioned that you might have some ideas about job opportunities in houston for someone with my background . as you know , penny was pleased to receive an offer from enron and i plan to earnestly look into the houston job market myself . the weeks leading up to the annual imf / world bank meetings are one of the busiest times of year for us , but now that they are over i have had a chance to update my resume ( attached ) . i would be grateful if you would take a look and pass it on to anyone you think might be interested . as you will see , most of my background is policy related , and most recently international economic policy . however the skills i have developed have applicability in the private sector as well . for example , a large part of my job at the treasury involves sovereign risk analysis . two possible avenues i see for building on this knowledge are : 1 ) applying my knowledge to decisions regarding allocation of global financial assets ; or 2 ) identifying risks facing a mutinational company and developing strategies to reduce that risk . i should mention that in addition to my economics training i do understand basic finance , and i am preparing to begin the cfa . i should also note that the work environment here at the treasury is quite fast paced , with constant deadlines and a great deal of pressure placed on economists . i tend to work 55 + hours per week so i do not expect i would need to adjust signifiantly if i were to move to the private sector . i greatly appreciate your taking the time to look at my resume and giving some thought to where i might look . i welcome any comments and ideas you might have . thanks , mark giancola p . s . the formatting on my resume seems to change whenever i e - mail it ; let me know if you prefer that i fax it to you . - resume 8 . doc",0 +"Subject: re : address i trust things are well in houston . the reason for contacting you is to inquire as to your schedule during the week commencing monday 18 th september . i and several of my colleagues would very much like to meet up with you , however , we are tied up at a large conference between tuesday through to friday of that week . is there any chance in meeting with you on monday 18 th ? if so , i will brief you more fully on our people and will contact you to discuss an agenda . regards , allan * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: re : pre - meeting weathereffects site cruise sold ! i ' ll initiate the call . - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 30 , 2000 3 : 44 pm to : ekrapels @ esaibos . com cc : vince j kaminski subject : re : pre - meeting weathereffects site cruise ed , thursday works for me . what about 10 : 30 my time ? vince "" edward krapels "" on 06 / 30 / 2000 02 : 43 : 00 pm please respond to to : "" ' vince j kaminski ' "" cc : subject : re : pre - meeting weathereffects site cruise how about thursday , july 6 ? - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 30 , 2000 3 : 29 pm to : ekrapels @ esaibos . com cc : vince j kaminski subject : re : pre - meeting weathereffects site cruise ed , a correction . i shall spend an entire day at prc ( performance review ) on friday , july 7 . can we do on another day vince "" edward krapels "" on 06 / 30 / 2000 12 : 40 : 59 pm please respond to to : "" ' vince j kaminski ' "" cc : subject : re : pre - meeting weathereffects site cruise i ' ll still be here in boston so we ' d do it over the phone . ok ? - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 30 , 2000 12 : 11 pm to : ekrapels @ esaibos . com cc : vince j kaminski subject : re : pre - meeting weathereffects site cruise ed , will you be in houston on that day or we shall do it over the phone ? vince "" edward krapels "" on 06 / 30 / 2000 09 : 13 : 04 am please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : pre - meeting weathereffects site cruise vince , how about a pre - meeting web site cruise on friday , july 7 at 11 am edt ? ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 30 , 2000 9 : 52 am to : ekrapels @ esaibos . com cc : vince j kaminski subject : re : next visit to houston ed , july 12 , 2 : 30 it is . i would like the pre - meeting site cruise . how can we arrange it ? vince "" edward krapels "" on 06 / 30 / 2000 04 : 00 : 53 am please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : re : next visit to houston vince , we ' re all set for 2 : 30 on july 12 . how about a pre - meeting web site cruise on friday , july 7 at 11 am edt ? ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , june 29 , 2000 5 : 04 pm to : ekrapels @ esaibos . com cc : vince j kaminski ; shirley crenshaw subject : re : next visit to houston ed , wednesday , july 12 , 2 : 300 will work for me . i shall be glad to review your website - - www . weathereffects . com . i shall invite some people who work on electricity in my group to join me . vince "" edward krapels "" on 06 / 29 / 2000 03 : 53 : 40 pm please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : re : next visit to houston vince , good to hear from you and i ' m glad you ' re available . how is wednesday at 2 : 30 ? i did look at eol and am not surprised to see its quality . i was unable to say much about it in my risk electricity hedging and trading report because of deadline pressures . how is the site doing ? i am intrigued by the competition for trading platforms and was astonished to hear that goldman , morgan , bp and shell were going to launch a site to compete with yours . talk about a shotgun marriage ! if we have time next week , i could step you through our website - - www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out a password yet but would be happy to walk through the site with you over the phone using my password . it ' s a very ambitious site - - with state - of - the - art wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for pjm and nepool . esai contributes oil and gas input price forecasts , capacity judgments , and "" herding "" ideas to develop power price forecasts for same time periods . after one month ' s full - bore effort , i ' m pleased with the results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) . have a great weekend . ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , june 28 , 2000 5 : 29 pm to : ekrapels @ esaibos . com cc : vince j kaminski ; shirley crenshaw subject : re : next visit to houston ed , i shall be available on both days . what about wednesday , july 12 , between 1 : 30 and 4 : 00 . please , let me know what time would work for you . it will be nice to see you again . vince p . s . by the way , did you have a chance to take a look at the eol ? "" edward krapels "" on 06 / 28 / 2000 02 : 49 : 41 pm please respond to ekrapels @ esaibos . com to : vince j kaminski / hou / ect @ ect cc : subject : next visit to houston dear vince , i will be returning to houston during the week of july 10 . esai and weather services international have launched - - after more than 18 months of r & d - - our service , called energycast power trader and energycast gas trader , for power traders in nepool and pjm . i would be happy to review the service with you as well as take you on a tour of our web site . are you available on july 12 - 13 ? sincerely , ed krapels",0 +"Subject: saturday on saturday i came to work and did some things that i needed to do . also , there were some things left undone that i felt i should do . mainly the conference room - we will schedule all birthday ' s and meetings in the large conference room therefore , i made the room look more spacious . also on monday - we need to check with the painters too see if they are going to repair our walls . we also need to get the additional pictures from the cage and get them placed on the wall whereby the move can be completed . if either of you have any questions or know of more things to do please let ' s get together and discuss . thanks kevin moore",0 +"Subject: re : enron default swaps darrell , i am sending you 2 technical notes on enron default swaps : i hope that they will be useful . i shall read the articles on weekend . i am curious if you find these explanations satisfactory . we are very slow in preparing a number of technical documents for you for model reviews . we still hope you will be able to find some time to review our credit models ( for our london credit trading ) and var and option pricing related models . also , please check your invoices . i still think we owe you money . vince darrell duffie on 03 / 28 / 2001 08 : 07 : 38 am to : vince j kaminski cc : subject : re : enron default swaps vince : according to a bank of america publication , your ( enron ) default swap spreads are consistently trading about 80 basis points wider than your asset swaps . any idea of what is going on here ? thanks for any guidance , darrell darrell duffie mail gsb stanford ca 94305 - 5015 usa phone 650 723 1976 fax 650 725 7979 email duffie @ stanford . edu web http : / / www . stanford . edu / ~ duffie / ",0 +"Subject: re : cantekin , can you figure out the reason for cocoa beans var fluctuations ? the same is true of aluminum . i assume this is the position change . vince cantekin dincerler 07 / 26 / 2000 09 : 28 am to : anjam ahmad / lon / ect @ ect , kirstee hewitt / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : anjam and kirstee , as i have suspected the position as of 6 / 30 vs 7 / 19 makes the difference . the first table first column is my var number with 6 / 30 position and gold & silver prices , the second column is your var with 7 / 19 position and dummy gold & silver prices . the second table first column is my var with 7 / 19 position and 6 / 30 gold & silver prices , the second column is as before . i would ask you to plug the gold and silver prices and see what kind of numbers you get in order to verify we are on the same page . please refer to modelvar 2000 . xls that i have sent you for gold & silver prices and volatilities . thank you , cantekin table 1 table 2",0 +"Subject: re : research sign off i totally agree . what you list is all we are after . steven leppard 29 / 01 / 2001 15 : 45 to : james new / lon / ect @ ect cc : tani nath / lon / ect @ ect , ted murphy / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : research sign off james i agree with what you say - my view is that research can : - assess a model ; - state what the model does ; - give a view of how closely the model achieves its objectives ; - assess what the risks of using the model are . it is for rac to determine whether enron is prepared to accept this risk . i discussed this issue with ted , and he seems to agree with this broad splitting of responsibilities . steve james new 29 / 01 / 2001 13 : 59 to : steven leppard / lon / ect @ ect cc : sharad agnihotri / lon / ect @ ect , tani nath / lon / ect @ ect , ted murphy / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : research sign off steve , i understand your comments but the ' sign off ' is a cross functional thing and research are effectively only being asked to sign off their part which is broadly as you describe below . if you have doubts as to the interpretation of a research sign off then it should be qualified to state what you are prepared to sign off on . other functions should be asked to do like wise for their area which will mean that when all areas have signed off their part the picture is complete . somebody needs to coordinate this and usually in london it is the risk management guy . does this make sense ? steven leppard 24 / 01 / 2001 09 : 42 to : sharad agnihotri / lon / ect @ ect cc : tani nath / lon / ect @ ect , ted murphy / lon / ect @ ect , james new / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : research sign off hi sharad i note from our discussion earlier this morning that you ' ve been asked to sign off a calculation from another group , which is something we ' re asked to do from time to time . i take the view that we in research can assess a computation in terms of what it achieves with respect to its requirements , what its shortfalls are , and therefore what the risks associated with using this method are . we cannot provide an opinion on whether these risks are acceptable to enron , which i feel falls firmly within rac territory . this then raises the question of can research sign off anything for other groups after all ? to "" sign off "" means to accept something , which our opinion in itself cannot do . it is most appropriate for us to provide a technical note outlining the methodology , risks and shortcomings of a method , leaving the formal "" sign off "" to those best placed to assess these risks for our company . the alternative is for multiple groups each to have their own view on what is acceptable risk for the company . steve",0 +"Subject: re : real options presentation thanks for the comments grant . the presentation is for a couple of external conferences that vince volunteered me for - vince has ok ' d the content , and stinson raised exactly the same issues as you . unfortunately i just don ' t seem to be getting any response from risk whatsoever on the publication of my article , so these conferences will be the public debut for my real options notation . of course the discounting / risk neutrality thing is where the real judgement sits . when questions arise i ' ll take the line that while research formulates the models using appropriate derivatives / market based valuation methods , we work with our rac group which considers the discounting to be associated with various risks , and chooses these rates appropriately . the notation makes clear which uncertainties we are exposed to at different stages of the deals , which assists in choosing the rates . in practice i ' m not yet at the stage where originators are using my notation yet - another reason i can ' t say too much about its actual use at the conference . i ' m producing various tools for deterministic hydro optimization , gbm swing option valuation , and deterministic dp optimization for genset dispatch which people want right now - i ' m working in the background on the kind of modelling my notation demands . people are getting to know me as a guy who can solve their immediate problems , and they ' ll be more likely to listen when i start rolling out the "" proper "" options - based models . my notation is currently used only in the specs i ' m writing for the tools i ' m producing . i ' ll be turning dale ' s spreadsheet - based power plant spread model into an american monte carlo tool , which will then be available for inclusion in other models . i think by the end of the summer the real options theoretical work will start to bear fruit , one year after i initially proposed the notation . with the quant it group i ' m co - creating in place , i may yet see the automated diagramming / pricing tool made real . thanks also for the pointer to tom halliburton . the use of the lingo lp / integer package is something i ' ve been presented with for the teesside plant operation optimizer , rather than something i chose . the perm ( physical energy risk mgt ) group just got a couple of analysts to hack it together ( including natasha danilochkina ) , then asked me to tidy it up when it didn ' t work . they are going to use their existing faulty model for now ( to meet their project deadlines ) , and i ' m sketching out a proper mathematical spec for the problem . i ' ve persuaded ( ! ) them that this sort of business - critical system should be developed properly by research , and they now seem happy to fall into line . their wilton plant optimizer was developed by one peter morawitz , the guy i hoped to recruit into research , and they obviously didn ' t realise he was better than average at quantitative modelling . anyway they now accept that doing it properly will take months rather than weeks , and i ' ll have a freer hand in my choice of modelling tool - so a chat with tom would be extremely valuable . cheers , steve enron capital is this an internal enron or external presentation ? if external , i would say it is just at the limit before sliding into proprietary stuff . perhaps that ' s why you ' ve neatly almost entirely avoided questions about discounting and risk - neutrality or lack of it ? regards , grant .",0 +"Subject: re : backtesting naveen , most of these tests have been already coded . the code and the associated spreadsheets may have been lost inn the sands of time . please , check with vasant : it may save you some time . vince naveen andrews @ enron 08 / 23 / 2000 05 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : backtesting vince , i am currently implementing the backtesting features into our risk management system . i distributed the following document at our research meeting today ; it outlines the conventional binomial test and some other tests , including the basle regulatory test . of course , no one test is powerful and the efficacy of these tests breakdown for low sample sizes , etc . if you can think of other tests to complement these , please let me know . regards naveen",0 +"Subject: invitation to sunday dinner with vince @ 6 . 45 pm dinner changed to 6 . 45 pm - 6 . 30 pm is too early for them . table for 4 booked under vince ' s name . regards , anjam x 35383 - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 17 / 02 / 2000 17 : 55 - - - - - - - - - - - - - - - - - - - - - - - - - - - anjam ahmad 14 / 02 / 2000 15 : 48 to : steven leppard / lon / ect @ ect , benjamin parsons / lon / ect @ ect cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : invitation to sunday dinner with vince @ 6 . 30 pm hi steve & ben , we are planning an early sunday dinner ( one of the few evening slots that are free in vince ' s schedule ) at : diverso restaurant 85 piccadilly london wlv 9 hd tel : 020 7491 2222 it ' s just a few yards to the left of park lane hotel on park lane , close to hyde park corner underground and we ' ve been there before . vince would like to discuss the latest developments and it seems like the best opportunity to do so . please let me know if you can make it and i can make sure the table is booked accordingly . regards , anjam x 35383 p . s . vince will be staying at the park lane hotel , telephone number 0171 499 6321",0 +"Subject: re : presentation dawn , i met david sobotka from koch this morning and we talked about coordinating our presentations . this means there will be changes intended to avoid overlaps . sorry for that . the portions of my presentation will survive ( those about valuation paradigms ) and i shall add a few more pages on accounting treatment of weather derivatives plus more specific examples . david will cover primarily market evolution + plus examples of some standard structures , and we shall both give more interesting examples of specific deals executed by our companies . i shall send you an updated version of my part next week . let me know what the deadline is . vince "" dawn scovill "" on 03 / 14 / 2000 07 : 53 : 47 am to : "" vince j kaminski "" cc : subject : re : presentation thanks - - would you like me to include these in the conference book ? or do you anticipate changes ? dawn from : dawn scovill , conference coordinator "" powerful new ideas 2000 "" dawn @ perfectmeeting . com - - - - - original message - - - - - from : vince j kaminski to : cc : shirley crenshaw ; vince j kaminski ; vince j kaminski sent : monday , march 13 , 2000 1 : 56 pm subject : presentation > > > dawn , > > i am sending you an electronic version of my presentation . > > vince kaminski > > ( see attached file : fplo 400 . ppt ) >",0 +"Subject: mark keeter presentation - proposal - solution the july 6 th meeting from 2 : 30 till 4 : 30 is being held in eb 45 cl",0 +"Subject: re : agenda for houston visit christian , good news vince has approved getting a corporate apartment for your stay please forward your finalized arrival date and extent of stay and i will coordinate - - - mike",0 +"Subject: re : recruiting at cmu computational finance program rick , thanks for your message . i am familiar with the computational finance program and value its high quality . please , call me next week . the best time is between 7 : 00 and 8 : 30 a . m . cst . vince "" rick bryant "" on 07 / 26 / 2000 01 : 27 : 23 pm to : vince j kaminski / hou / ect @ ect cc : "" kevin kindall "" , "" ken keeley "" , "" sanjay srivastava "" subject : recruiting at cmu computational finance program vince , greetings ! i am the director of the ms in computational finance program at carnegie mellon . i am following up on a conversation i had with kevin kindall , a graduate of our program , who gave me your e - mail address and suggested i contact you as the individual making the recruiting decisions for the research group at enron . in speaking with the director of the career opportunity center at the business school , i am told that although an alison bailey from enron ( mary . alison . bailey @ enron . com ) has arranged for a sizable block of rooms in which to conduct interviews on campus on december 11 th , there is as yet no indication of whether the comp finance students will have opportunity to compete for these spaces . we are regarded by many in the industry as the top quantitative finance program in the country . focused on derivative pricing , econometrics , var and portfolio management , our graduates should be an excellent fit for your business . i would be happy to talk with you further about our rogram ( http : / / student . gsia . cmu . edu / mscf / ) as well as our students ' interest in enron ( the name comes up a lot ! ) . also , if you are interested , we run a "" speaker series "" on most friday ' s during the fall and spring that would give you ( or another in your group ) the opportunity to address our students in an area of interest . such a meeting would , i think , help you better understand the careers our students are preparing to pursue as well as give our students first hand knowledge of enron and its future . when might be a good time to contact you by telephone ? thank you for your time . rick richard l . bryant director , computational finance program carnegie mellon university graduate school of industrial administration pittsburgh , pa 15213 phone / fax ( 412 ) 268 - 4592 / ( 412 ) 268 - 6837 http : / / fastweb . gsia . cmu . edu / mscf",0 +"Subject: henwood ' s ercot symposium - registration confirmation dear vince , thank you for registering for henwood ' s ercot symposium on january 23 , 2001 . we are pleased to confirm your attendance . attached is a copy of the program agenda . as indicated , registration will begin at 9 : 30 am . the program begins at 10 : 00 am and runs until 3 : 00 pm . lunch along with refreshments will be provided . demonstrations of henwood ' s software applications and ebusiness solutions will be available following the workshop for interested parties . directions to the hyatt regency houston are attached for your convenience . please do not hesitate to contact me with any questions or concerns that you may have . we look forward to seeing you in houston ! heather mason marketing assistant henwood energy services , inc . 2710 gateway oaks dr . suite 300 n sacramento , ca 95833 phone : ( 916 ) 569 - 0985 fax : ( 916 ) 569 - 0999 - agenda version b . doc - hyatt directions . doc",0 +"Subject: update on mg var model hi vince , thanks for the e - mail . we have included live links to price curves through reuters quotes via telerate bridge but we still have static curves for gold and cocoa . kirstee is talking to andreas in ny to obtain position files on a daily basis , addressing point 2 ) in your e - mail , as well as looking into longer term integration issues . cantekin and i have agreed the correct correlations for the metals between us , but cantekin is currently checking the correlations for silver and gold . preliminary results based on positions as of 19 th july are as follows : we noticed that position mapping at the front months can change var significantly . as you stated , kirstee hewitt will now be assuming responsibility for further modifications to the model on the london side and to this end i have ensured that kirstee is put in touch with key personnel like andreas ( andreas will be in the london office next week ) and has access to all the information she needs . regards , anjam ahmad research x 35383 spreadsheet :",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 r 5 mlm order for : vince j kaminski 1 x ( standard desktop $ 1262 ) 1 x ( standard 21 "" monitor $ 739 ) enron it purchasing",0 +"Subject: re : visit to enron by professor nalin kulatilaka of boston university hi iris : may 17 th is fine . he will probably need to come in the night before ( the 16 th ) and he can make a hotel reservation at the doubletree or the hyatt and tell them he is a guest of enron and he will get a corporate rate . we will reimburse him for room expense only . he will need to pick up any miscellaneous room charges . we will also reimburse him for his flight expense and cab fare . the doubletree telephone # is : 713 - 759 - 0202 and the hyatt telephone is : 713 - 654 - 1234 . he can either leave his receipts with me when he is here or mail them to me and i will have a check cut . i will need his ss # . if you have any more questions , please let me know . thanks ! shirley from : iris mack / enron @ enronxgate on 04 / 20 / 2001 04 : 32 pm to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , shirley crenshaw / houston / eott @ eott cc : nalink @ bu . edu @ smtp @ enronxgate subject : re : visit to enron by professor nalin kulatilaka of boston university hi shirley , vince has requested that we invite professor nalin kulatilaka of boston university to speak at one of our thursday group luncheons / seminars . nalin says he is available to speak on may 17 th . can you let me know if this is okay , and what the procedure is for invited speakers . thanks and have a good weekend , iris",0 +"Subject: re : hib visa application - sevil yaman margaret , thanks for reminding me this issue . i think i ' ll be fine until i start full time here in the research group . as you know right now i am using curricular practical training as work permission . and until i graduate i am allowed do as many as part time cpt i want to do . because of tax purposes i think i ' ll use this right given to me . in this case , what i need to do is that after i and vince make sure about my full time start date ( this may happen in the beginning of 2002 ) , i ' ll let you know and send you the necessary document you require to initiate my hlb visa application process . thanks again . sevil , margaret daffin @ ect 25 - 04 - 2001 12 : 04 to : sevil yaman / corp / enron @ enron cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate subject : hib visa application - sevil yaman sevil : please let me know when you will be sending me the information for your hib visa ? thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 04 / 25 / 2001 12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 04 / 10 / 2001 04 : 04 pm to : sevil yaman / corp / enron @ enron cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate subject : hib visa application - sevil yaman sevil : in order that we may proceed with your request for permanent residency , our immigration attorneys have advised us that we need to process the hib visa , prior to the permanent residency application . therefore , i am attaching an hib visa questionnaire that i would like you to complete and return to me , together with copies of all of the documents listed at the bottom of the form . please bring these to me in 3 ac 2026 a . please let me know if you have any questions at x 55083 . thank you margaret",0 +"Subject: re : enron / stanford program nick , i shall be in stanford oct 14 - 15 , visiting my family . i would be glad to meet you ( and possibly giuseppe - your call ) for lunch . please , let mer know if you are free on one of these days . saturday would work better for me . vince nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm to : stinson . gibner @ enron . com cc : vince . j . kaminski @ enron . com subject : re : enron / stanford program stinson , great ! i ' m looking forward to a very productive collaboration . i ' ll immediately start doing giuseppe ' s papers , for him to work on the enron / stanford program . many thanks to you and vince , and i hope to see you soon at stanford or enron . if i remember correctly , vince is visiting stanford in october . best regards , nick stinson . gibner @ enron . com wrote : > > nick , > > i spoke with paul racicot , head of trading for ebs , north america this > morning . he said that he is happy to send the $ 100 , 000 for your program > from his budget . i have forwarded to him the draft letter to accompany > the funds and will try to follow up to make sure that the money is sent > promptly . > > - - stinson",0 +"Subject: re : tony hamilton chris , e hired tony to support global markets but jeff shankman decided that , given highly specialized nature of his work it makes sense to put him in the research group , with a dotted line to mike roberts who is running our weather group . given that his work will directly and exclusively benefit gm , it makes sense for research to charge his expenses to global markets . we can adjust allocations to reflect his contributions to different sub - units of gm . tony spent the last few weeks in houston training for his position in london with mike roberts . we are very excited about the prospect of working with him . vince chris mahoney 04 / 05 / 2001 03 : 56 am to : tani nath / lon / ect @ ect , mark tawney / enron @ enronxgate , vince j kaminski / hou / ect @ ect cc : scott moncrieff / lon / ect @ ect , pierre aury / lon / ect @ ect , christie marshall / lon / ect @ ect , richard smith / lon / ect @ ect subject : re : tony hamilton tony was hired to work for global markets . think costs should be assigned to vince or mark but if you believe those costs should be for my group let me know . tani nath 05 / 04 / 2001 09 : 33 to : chris mahoney / lon / ect @ ect , scott moncrieff / lon / ect @ ect , pierre aury / lon / ect @ ect cc : christie marshall / lon / ect @ ect , richard smith / lon / ect @ ect subject : tony hamilton i now have tony on one of my rcs ( research ) . i understand he will be doing weather forecasts for some or all of you , and that he has a desk allocated in global . i need to recharge his costs - can someone please advise the right cost centre . many thanks , tani",0 +"Subject: timesheets hello all : i am afraid i did not allow enough time to do the time sheets by asking for them by the 15 th and 31 st . i really need these sheets by the 13 th and 28 th of each month as it takes a good half day to enter all the new times in the time sheets . i am resending this , because as of now i have received very few timesheets and i really need to start imputting the time . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 07 / 12 / 2000 11 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 07 / 11 / 2000 03 : 12 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , grant masson / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , alexios kollaros / hou / ees @ ees , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , patricia tlapek / hou / ect @ ect , farouk lalji / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william smith / corp / enron @ enron , yanna crystal / corp / enron @ enron , jose marquez / corp / enron @ enron , samer takriti / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , cantekin dincerler / hou / ect @ ect , brad aimone / na / enron @ enron , datren williams / na / enron @ enron , sevil yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , ainsley gaddis / na / enron @ enron , gwyn koepke / na / enron @ enron , guiseppe paleologo / na / enron @ enron , hector campos / hou / ect @ ect , anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles weldon / hou / ect @ ect cc : subject : timesheets hello everyone : well it is almost that time again ! i am going to try something different . i am forwarding you the time sheet by email . save the document to whatever drive you want to and then fill out any off duty time or overtime that you had and return to me by email . i will need this by the 15 and 30 ( or 31 st ) of each month . this may work better than hand delivering . let me know what you think .",0 +"Subject: re : 1 / 2 day kevin , i ' m scheduled to attend the quarterly new - hire orientation all day on 16 march . i had planned to work the morning rush and then go over there . can we cover the noon and 2 : 00 p . m . tasks ? sam kevin g moore @ ect 03 / 10 / 2000 07 : 51 am to : shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , william smith / corp / enron @ enron cc : subject : 1 / 2 day goodmorning shirley , reminder : i have a doctor ' s appointment on the 16 th of march . my appointment is for 11 : 30 am . i plan to leave around 11 : 00 a . m . thanks kevin moore",0 +"Subject: re : schedule for trip christie , john henderson committed in principle to speaking to the tigers . please , send him the location info and conform the time ( 2 : 00 p . m . ) . vince christie patrick @ ect 01 / 17 / 2001 07 : 46 am to : "" kim whitsel "" @ enron cc : @ enron , @ enron , "" chen , vincent "" @ enron , "" levitt , nicholas "" @ enron , "" bhalla , tulika "" @ enron , "" mallik , deepa "" @ enron , "" whitsel , kimberly "" @ enron , @ enron subject : re : schedule for trip hi kim , vince and i have received your questions , along with those of other tiger teams , and we are planning the agenda for the day accordingly . we look forward to seeing you tomorrow evening at churrasco ' s ! safe travel ! - - christie .",0 +"Subject: re : testing ir & fx var nick and winston , i understand that ir & fx var numbers are calculated every day in risktrac . this results are overwritten everyday in the database table by the official numbers calculated with the old version of the code . for the consistent testing we need historical results for each ir and fx sub - portfolio . can we store the numbers every day ? tanya",0 +"Subject: aga for 7 / 7 is forecasted at 68 the aga weekly change for the week ending on 7 / 7 is at 68 . the model predicted 66 for 6 / 30 , it came out at 69 . the following graph depicts the past performance . mike , where can i get the temperature data ? i believe the model can be further improved by incorporating some explanatory variables like temperature .",0 +"Subject: hotel for the wharton trip jennifer , this is the address of the hotel within a walking distance to the wharton school . please , make the reservation for jeff shankman at this hotel for the december the 6 th meeting . vince kaminski http : / / www . innatpenn . com / contact . html the inn at penn sansom common , 3600 sansom street philadelphia , pa . 19104 phone : 1 - 800 - 809 - 7001 fax : 215 - 222 - 4600 please , mention that the stay is related to the university business when making the reservation . tom piazze at wharton can confirm it . tom piazze phone : ( 215 ) 898 1615 piazzet @ wharton . upenn . edu",0 +"Subject: 2 - survey / information email 5 - 7 - 01 current notes user : to ensure that you experience a successful migration from notes to outlook , it is necessary to gather individual user information prior to your date of migration . please take a few minutes to completely fill out the following survey . when you finish , simply click on the ' reply ' button then hit ' send ' your survey will automatically be sent to the outlook 2000 migration mailbox . thank you . outlook 2000 migration team full name : login id : extension : office location : what type of computer do you have ? ( desktop , laptop , both ) do you have a pda ? if yes , what type do you have : ( none , ipaq , palm pilot , jornada ) do you have permission to access anyone ' s email / calendar ? if yes , who ? does anyone have permission to access your email / calendar ? if yes , who ? are you responsible for updating anyone else ' s address book ? if yes , who ? is anyone else responsible for updating your address book ? if yes , who ? do you have access to a shared calendar ? if yes , which shared calendar ? do you have any distribution groups that messaging maintains for you ( for mass mailings ) ? if yes , please list here : please list all notes databases applications that you currently use : in our efforts to plan the exact date / time of your migration , we also will need to know : what are your normal work hours ? from : to : will you be out of the office in the near future for vacation , leave , etc ? if so , when ? from ( mm / dd / yy ) : to ( mm / dd / yy ) :",0 +"Subject: your approval is requested please be informed that you have one or more srrs requests that are outstanding due to a pending action to approve or reject decision on your part . please go to the srrs ( lotus notes desktop icon ) and select the "" requests awaiting my approval "" option and complete the necessary action . more srrs request information can be seen within the request by clicking on "" resource display "" . your response will enable the srrs process to continue for eventual closure . thank you , information risk management",0 +"Subject: summer internship dear mr . kaminski i am currently pursuing the m . s . in ieor at uc berkeley . i attended the speech you gave some weeks ago . i am interested in summer internship positions available in enron . you will find enclosed my resume . sincerely , ezequiel luis este mensaje fue enviado desde http : / / commcenter . infosel . com internet gratis http : / / www . terra . com . mx / terralibre - resume elm . doc",0 +"Subject: met office presentation . . . vince - just fyi to keep you informed on our ews european effort . . . steve is doing a good job taking the bull by the horns , i asked him to rapidly build a client base and associated support system looking good ! - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 10 / 2001 08 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : stephen bennett @ enron 04 / 10 / 2001 08 : 10 am to : annette harris / lon / ect @ ect cc : tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron subject : met office presentation . . . annette . . . we just wanted to drop you a quick line to thank you for the invitation to the uk met presentation today ! tony and i are currently trying to get a grasp of what the traders here require in the way of weather information and are building a support structure for them . as such - we will need to have close ties with the uk met office as well as other data providers . the information presented today was very helpful . we ' d like to take a little time to sit down with you - and / or some of the other participants whose markets are weather driven . we ' d like to get a feel for what data is already streaming in - and then get an idea as to how we can utilize and supplement that data for the europe markets . we have a model created in houston to start from - but we want to make sure to tailor to the needs of the traders here . would you like to take some time to sit down and chat ? perhaps tony and i can take you and some others out to lunch - or for an afternoon coffee ? thanks for your help . . . stephen bennett senior meteorologist enron research in london : april 7 - 27 : ext - 34761 tony hamilton meteorology manager enron research ext . 3 - 2523",0 +"Subject: re : var and credit meeting on wednesday , april 11 at 11 : 30 am everybody , this week our regular meeting will be devoted primarily to 2 subjects : 1 . simulating power prices in var ; 2 . capturing correlations across commodities as well as across term structure of forward prices . research will present some suggestions based on data analysis . detailed agenda is enclosed . please , let shirley crenshaw know if you are not planning to attend . tanya .",0 +"Subject: re : enron cover letter & resume for dave gershenson vincent , i have forwarded the resume to our analysts / associate pool with a recommendation to accept david as a summer intern . i expressed interest in taking him into my group . he may , of course , work for a different unit of enron . it ' s up to him and i shall not be offended if he would like to go into trading or deal origination . vince",0 +"Subject: pr department vince , i received this inquiry about you . i am forwarding it to you so you can respond to it or politely tell them your not interested . - - - - - - - - - - - - - - - - - - - - - - forwarded by cindy derecskey / corp / enron on 07 / 18 / 2000 12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" alex . bandini "" on 07 / 18 / 2000 11 : 10 : 23 am please respond to to : cc : subject : dear sir / madam , i am writing on behalf of petroleum economics ltd , an energy consultancy firm based in london . we are currently updating our lists of contact addresses , and i would be most grateful if you could pass on contact details for mr vince kaminski , your head of quantitative research . yours faithfully alex bandini alex bandini petroleum economics limited tel : + 44 ( 0 ) 20 - 7553 - 2000 fax : + 44 ( 0 ) 20 - 7553 - 2001 e - mail : alex . bandini @ petroleum - economics . com http : / / www . petroleum - economics . com",0 +"Subject: hi hi shirley & vince : happy new year ! i am in our bombay offices for a couple of days , so am able to contact you . for some reason , the modem dialup from my computer hasn ' t been working . hope everything is going well in houston . anitha & i have good news . we are having our second baby . it was confirmed after we came to india . shirley , i have a favor to ask you on this matter . can you make an appointment for anitha with her doctor ? the details are as follows : dr . dolar patolia tel : 713 - 756 - 5500 name : anitha kakani dates : jan 29 th or 31 st . times : in order of preferance , after 3 pm , 12 - 3 pm , 10 am - 12 noon . reason : pregnant with due date of aug 8 th . needs a full checkup . anitha is having severe nausea , so she is taking rest most of the time . pallavi and i are enjoing our vacation thoroughly . thanks and best wishes , krishna . ph . 011 - 91 - 40 - 7114833 ps : please count jan 16 th & 17 th as working days for me .",0 +"Subject: re : f / u to dr . kaminski @ enron from iris mack molly , i would like to invite iris for an interview . you can contact her at the addresses she listed below or at her e - mail address . the following persons will participate at the interview : stinson gibner zimin lu tanya tamarchenko vasant shanbhogue myself stinson and i will take her out to lunch . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 27 / 2000 01 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" iris mack "" on 11 / 21 / 2000 04 : 12 : 43 pm to : irismmack @ hotmail . com , vince . j . kaminski @ enron . com cc : subject : re : f / u to dr . kaminski @ enron from iris mack hi again , i am visiting several family members and friends over the next few days . therefore it will be hard to contact me . however , next week i will be easier to reach . my contact details in nyc are as follows . i will be staying at the following hotels : washington square hotel from november 28 th for 3 nights ( tue , wed and thur ) 212 . 777 . 9515 marriott nyc financial december lst for 1 night ( fri ) 212 . 385 . 4900 at any rate , i will still try to reach you on tomorrow morning . if all fails , we will try to reach each other next week . happy thanksgiving , iris > from : "" iris mack "" > to : vince . j . kaminski @ enron . com > subject : re : f / u to dr . kaminski @ enron from iris mack > date : tue , 21 nov 2000 22 : 07 : 09 > > hi , > > how are you ? seems like we have had a bit of difficulty contacting each > other . sorry i missed your call . i am now in nyc - until december 2 nd . > > i will try to call you on tomorrow morning about 8 am houston time . > > take care , > iris > > > > > > from : vince . j . kaminski @ enron . com > > to : irismmack @ hotmail . com > > cc : vince . j . kaminski @ enron . com > > subject : hello > > date : tue , 21 nov 2000 15 : 14 : 31 - 0600 > > > > iris , > > > > we are trying to reach you but we are getting error messages . > > please , call me 713 853 3848 . > > > > vince > > > > > _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com",0 +"Subject: request submitted : access request for leann . walton @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000005168 approver : stinson . gibner @ enron . com request create date : 10 / 18 / 00 2 : 06 : 37 pm requested for : leann . walton @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: re : another stanford acceptance thanks so much vince ! vince j kaminski @ ect 04 / 23 / 2001 11 : 09 am to : althea gordon / na / enron @ enron cc : greg . whalley @ enron . com , traci . warner @ enron . com , patricia . payton @ enron . com subject : re : another stanford acceptance althea great news . it ' s all your hard work . vince althea gordon @ enron 04 / 20 / 2001 01 : 43 pm to : vince . kaminski @ enron . com , brad . romine @ enron . com , brad . alford @ enron . com , martin . lin @ enron . com , stephen . swain @ enron . com , matt _ harris @ enron . net , elliot . mainzer @ enron . com , mauricio . mora @ enron . com , victor . browner @ enron . com cc : greg . whalley @ enron . com , traci . warner @ enron . com , patricia . payton @ enron . com subject : another stanford acceptance stanford team , we have received yet another acceptance - noah jacobs has accepted our offer as a summer associate . we are now 4 of 6 for our summer offers . i have sent paul kasper , our one full time offer a cultivation gift and will be checking in on him next week . also eric cope , a stanford student that vince kaminski ' s group had interviewed here in houston for a summer associate position has also accepted . all in all our stanford numbers are looking great ! many thanks to everyone and keep up the great work ! althea",0 +"Subject: sheila , gran ' t number : ( 281 ) 381 9987 . this is his cell phone number . vince",0 +"Subject: re : japanese crude cocktail & prompt brent vince marc and i spoke about the jcc brent relationship . i don ' t know enough about jcc to have a view if putting jcc on eol is a good idea . would be interested to know the realtionship to brent and learn more about it . also spoke to john chismar about jcc . it sounds pretty non - liquid acc . to john . let me know if there is something we can do . regards chris glaas enron capital & trade resources corp . from : marc de la roche 13 / 10 / 2000 13 : 18 to : chris glaas / lon / ect @ ect cc : doug leach / hou / ect @ ect , kevin kindall / corp / enron @ enron subject : re : japanese crude cocktail & prompt brent chris , thanks for the response . the comment about hedgeing jcc with brent is right on if the exercise is to hedge our own lng positions that we have tieds to jcc . note that the high jcc correlation to prompt brent is not something that is obvious to non - enron lng - tied - to - jcc buyers . if you are an lng - tied - to - jcc buyer , and you wish to hedge your purchases , wouldn ' t you want to be able to transact ona a jcc contract ? my objective is to have a jcc contract on eol , whereby we , enron , take the jcc / brent risk ( which is why we asked vince kaminski ' s group to study the relationship and give us a hedge ratio to use ) . i ' m attaching a model used to calculate jcc for dabhol power co . ' s adgas and oman lng contracts . basically what happens is that all the "" raw oil "" volumes imported into japan and added up and the total price is divide by the total volume , and there is a yen / us $ foreighn exchange component as well . that is jcc . it was designed by the japanese so that they could tie their lng imports to their average price of crude imports whereby the lng would be cheaper on an mmbtu basis . comments ? brgds , marc chris glaas 10 / 13 / 2000 03 : 11 am to : marc de la roche / hou / ect @ ect cc : subject : re : japanese crude cocktail & prompt brent marc regarding putting jcc on eol i get a negative respons from our sing office . it is not a very liquid market . everyone is going the same way . i understand there is good correlation between brent and jcc . i know little about jcc , but if there is good correlation u should be able to hedge yourself with brent . i need to know more about how jcc works in order to help u , if u require any help at all ? let me know chris glaas enron capital & trade resources corp . from : marc de la roche 10 / 11 / 2000 03 : 16 pm to : chris glaas / lon / ect @ ect cc : doug leach / hou / ect @ ect , larry gagliardi / corp / enron @ enron subject : japanese crude cocktail & prompt brent chris , some of egm ' s lng group ' s lng is priced using a jcc - based formula . there ' s also a lot of other lng contracts that use jcc as the pricing basis . in june we obtained sign - off from vince kaminski ' s group to hedge jcc using prompt brent ( see the messages with the relevant hedge ratio below ) . can we set up a contract on eol , using the prompt brent - jcc hedge ratio , to hedge jcc ? fyi , on a btu conversion basis : therefore , to hedge 1000 mt of lng , a customer would need to transact on a hedge for 9000 bbl of jcc . can we list a jcc swap in 9000 bbl / month increments ? thanks in advance , marc - - - - - - - - - - - - - - - - - - - - - - forwarded by marc de la roche / hou / ect on 10 / 11 / 2000 08 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin kindall @ enron 06 / 06 / 2000 03 : 47 pm to : marc de la roche / hou / ect @ ect cc : subject : re : jcc & brent yes on both counts . - kevin k . from : marc de la roche @ ect 06 / 06 / 2000 02 : 50 pm to : kevin kindall / corp / enron @ enron cc : grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : jcc that this email constitutes your groups ( vince kaminski ' s ) sign - off on using this hedge ratio to hedge jcc and jcc - based products ? thanks in advance , marc de la roche kevin kindall @ enron 06 / 06 / 2000 02 : 18 pm to : marc de la roche / hou / ect @ ect cc : grant masson / hou / ect @ ect subject : re : jcc & brent good afternoon . i have performed a review of the jcc data that you sent some time ago . the study was done using several different excel workbooks , and are available upon request . relevant charts are embedded in the powerpoint attachment . questions / comments welcome . - kevin kindall",0 +"Subject: global risk management operations recognizing enron  , s increasing worldwide presence in the wholesale energy business and the need to insure outstanding internal controls for all of our risk management activities , regardless of location , a global risk management operations function has been created under the direction of sally w . beck , vice president . in this role , sally will report to rick causey , executive vice president and chief accounting officer . sally  , s responsibilities with regard to global risk management operations will mirror those of other recently created enron global functions . in this role , sally will work closely with all enron geographic regions and wholesale companies to insure that each entity receives individualized regional support while also focusing on the following global responsibilities : 1 . enhance communication among risk management operations professionals . 2 . assure the proliferation of best operational practices around the globe . 3 . facilitate the allocation of human resources . 4 . provide training for risk management operations personnel . 5 . coordinate user requirements for shared operational systems . 6 . oversee the creation of a global internal control audit plan for risk management activities . 7 . establish procedures for opening new risk management operations offices and create key benchmarks for measuring on - going risk controls . each regional operations team will continue its direct reporting relationship within its business unit , and will collaborate with sally in the delivery of these critical items . the houston - based risk management operations team under sue frusco  , s leadership , which currently supports risk management activities for south america and australia , will also report directly to sally . sally retains her role as vice president of energy operations for enron north america , reporting to the ena office of the chairman . she has been in her current role over energy operations since 1997 , where she manages risk consolidation and reporting , risk management administration , physical product delivery , confirmations and cash management for ena  , s physical commodity trading , energy derivatives trading and financial products trading . sally has been with enron since 1992 , when she joined the company as a manager in global credit . prior to joining enron , sally had four years experience as a commercial banker and spent seven years as a registered securities principal with a regional investment banking firm . she also owned and managed a retail business for several years . please join me in supporting sally in this additional coordination role for global risk management operations .",0 +"Subject: additional e - mail addresses vince , three new students gave me their e - mails : wooddy @ rice . edu , lamas @ rice . edu , tbalestrery @ houston . rr . com jason",0 +"Subject: re : meet during cmu visit ? aziz , please , contact me before or after the presentation and we can find a time slot to chat later on friday . vince al 3 v on 10 / 31 / 2000 01 : 59 : 11 pm to : vince . j . kaminski @ enron . com cc : subject : meet during cmu visit ? dr . kaminski : i am a ph . d . student here at carnegie mellon who has a long - standing interest in the energy industry . i have recently developed the framework of a simple model for electricity prices that i would like your opinion on . could you please chalk out some time for me during your cmu visit this friday ? unlike traditional electricty pricing models , which assume that the log - price is a sum of a couple of stochastic factors , i assume that some fundamentals of the electricity market are driven by stochastic factors . next , given the current values of these factors , price is determined by economic forces of profit maximization by price setting electricity generators . unlike typical factor models , the factors in my model are potentially observable . thank you , aziz a . lookman graduate school of industrial administration 5000 forbes avenue carnegie mellon university pittsburgh , pa 15213 tel : 412 - 268 - 3681 fax : 412 - 268 - 6837 ( pls . mark the fax c / o jackie cavendish )",0 +"Subject: re : monday night rodeo suite - the judds vince , you are welcome to the twenty tickets if you like . please advise me asap . many thanks , liz taylor x 31935 vince j kaminski 02 / 15 / 2000 05 : 30 pm to : liz m taylor / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : monday night rodeo suite - the judds liz , i would be glad to use some tickets for the group members . vince liz m taylor 02 / 15 / 2000 05 : 18 pm to : jeffrey a shankman / hou / ect @ ect , james b fallon / hou / ect @ ect , jere c overdyke / hou / ect @ ect , vince j kaminski / hou / ect @ ect , george mcclellan / hou / ect @ ect , lynda clemmons / hou / ect @ ect , gary hickerson / hou / ect @ ect , louise kitchen / lon / ect @ ect cc : subject : monday night rodeo suite - the judds i have twenty suite tickets available for monday night , february 21 rodeo activities featuring "" the judds . "" please let me know if you would like to utilize any of these tickets for your group and / or customers . many thanks , liz taylor",0 +"Subject: dave d . presentation vince , here it is . i did not include a slide about london . let me know if you think it is needed . stinson",0 +"Subject: for vince j kaminski ' s approval below you will find a copy of a request that is awaiting your approval . please advise us as to your approval or rejection of this request by way of email , since your system does not allow you to open the icon that was submitted by way of a doc link . i thank you in advance for your cooperation in this matter . leola barnett information risk management - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 04 / 05 / 2000 03 : 50 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system pending vp approval resource request how to find the status of this request . . . general information initials : requestor : jason sokolov / hou / ect phone : ( 713 ) 853 - 6286 requested for : jason sokolov / hou / ect request type : update access rc # : 100038 wo # : company # : 0011 priority : high manager : mike a roberts vp : vince j kaminski location : in the request processing section , see the status column for each requested resource . look at the overall status of the request in the title bar above . the status will display closed when your request is complete . click the "" status "" button below . comments : request # : jsov - 4 f 8 r 44 submitted : 01 / 04 / 2000 01 : 58 : 37 pm name cost status implementation comments application / database bloomberg $ 1 , 800 . 00 monthly not started request processing path processed by status when comments manager approved 01 / 20 12 : 57 pm vp security implementation editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 2 3 4 5 6 jason sokolov jason sokolov jason sokolov jason sokolov mike a roberts 01 / 04 / 2000 01 : 56 : 27 pm 01 / 04 / 2000 01 : 57 : 47 pm 01 / 04 / 2000 01 : 58 : 30 pm 01 / 04 / 2000 01 : 58 : 37 pm 01 / 20 / 2000 12 : 57 : 16 pm",0 +"Subject: power crisis in the west dear vince , i spoke with you briefly yesterday regarding grant masson . you informed me that he is no longer an enron employee . i have also been informed that grant has not yet been replaced . i am inquiring because infocast would like to have an enron representative speak at an upcoming conference entitled "" power crisis in the west : status it is certainly going to be an exciting conference due to all of the controversy surrounding the situation in san diego . kind regards , nia mansell infocast conference manager ( 818 ) 888 - 4445 ext . 45 ( 818 ) 888 - 4440 fax niam @ . com > - power crisis in the west invite . doc",0 +"Subject: energy derivatives conference - toronto , may 29 details of the upcoming energy derivatives conference are now posted at i look forward to receiving your papers by may 5 . thank you , amy ( for p . p . boyle ) * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * amy aldous , conference co - ordinator centre for advanced studies in finance university of waterloo waterloo , on n 2 l 3 gl tel : ( 519 ) 888 - 4567 ext . 5728 fax : ( 519 ) 888 - 7562 email : aaldous @ uwaterloo . ca * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *",0 +"Subject: re : visit to enron yes you did and my assistant felicia solis is working on the schedule . she will be contacting bob today to introduce herself and to let him know the arrangements she is making . - elizabeth vince j kaminski 01 / 17 / 2000 12 : 48 pm to : elizabeth grant / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : re : visit to enron elizabeth , we want to bring this guy for a formal interview on jan 24 . did i send you his resume ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2000 12 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - robert lee on 01 / 17 / 2000 09 : 36 : 01 am to : vince j kaminski / hou / ect @ ect cc : subject : re : visit to enron hi , vince i haven ' t yet heard from hr . is there someone i should contact so i can finalize my travel arrangements ? i ' m looking forward to the visit . thanks , bob lee vince j kaminski wrote : > bob , > > human resources should contact you regarding this trip . > see you in 2 weeks . > > vince > > robert lee on 01 / 10 / 2000 07 : 13 : 08 am > > to : vince j kaminski / hou / ect @ ect > cc : > subject : re : visit to enron > > hi , vince > > this is to confirm my visit on jan . 24 . i am arriving in houston on > sunday , so i can be there at your convenience on monday . let me know > the desired time . > > thanks , bob lee",0 +"Subject: prof . at rice here is this prof ' s home page at rice . his name is richard baraniuk . http : / / www - dsp . rice . edu / ~ richb / - - stinson",0 +"Subject: wharton fap 2001 webcafe access about a month , ago you should have received an invitation to your fap 2001 webcafe room ( s ) that contained log on information to access the room . if you have not received the email or are having difficulty logging into the webcafe , please contact the wharton webcafe team be sending email to webcafe @ wharton . upenn . edu and we will be happy to assist you . best regards , michele krull wcit webcafe team webcafe @ wharton . upenn . edu 215 - 573 - 4262",0 +"Subject: re : recommendation letter vincent , sorry for a delay in responding to your message . i shall be very glad to write a letter of recommendation . please , send me the forms . i hope you are doing ok . vince vincent tang on 02 / 28 / 2001 01 : 10 : 33 pm to : vkamins @ enron . com cc : subject : recommendation letter dear vince , how are you ? i am just wondering whether you have received the email i sent to you a couple of weeks back . in that email , i asked whether you would have time to write me a recommendation letter to support my application for a master program ( mathematical finance ) in columbia university this coming fall . if you will be able to write the letter , would you please let me know ? thanks a lot . best regards , vincent tang do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com /",0 +"Subject: re : airfaire for tony kevin / karin : my understanding from vince is that london is reponsible for the expenses incurred while their people are here for training , as well as for any of our people that go to london at their request . it should be easy for them to expense this airfare for steve from their office and charge it to whatever cost center tony is going to be under in london . shirley kevin g moore 04 / 03 / 2001 06 : 24 am to : mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : airfaire for tony please take a look at this e - mail . . . . . . . i am also in need of instruction . . . . thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 03 / 2001 06 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources canada corp . from : karin ahamer @ enron 04 / 03 / 2001 05 : 15 am to : kevin g moore / hou / ect @ ect cc : tony hamilton / eu / enron @ enron , mike a roberts / hou / ect @ ect , tani nath / lon / ect @ ect , steve leppard / lon / ect @ ect subject : airfaire for tony kevin with regards to tony ' s airfare ticket , which has been put onto steve leppards credit card as tony hasn ' t got an amex yet , could you please let me know who is responsible for payment ? i guess it is your costcentre , if so please supply me with the number . thanks karin",0 +"Subject: retail markets conference i would like to invite you to participate in a conference on "" retail participation in competitive power markets "" to be held at stanford university on june 21 - 22 , 2001 . although california and other regional markets will likely be introducing some demand - response programs by june , there is a clear need for continual evaluation of these nascent efforts to transform the market . the conference provides an opportunity to learn from different experiences . this policy research meeting will focus on establishing a foundation for understanding the key concepts and methods for demand response programs and to provide an opportunity for participants to raise questions and recommend directions for additional research and analysis . participants will come from companies , government , and universities . you can obtain more information about the conference by checking under "" meetings "" on our emf website listed below . please let me know if you plan on attending . also , if you would like to make a brief 15 - minute presentation , please let me know your topic and describe it in a few sentences . i will try to choose speakers that will cover the full range of interests represented by this group . researchers should focus on the implications of their analysis for designing demand response programs rather than on the technical details of their methodology . i would also encourage practitioners to discuss their experience in implementing demand response programs or in raising selected issues . thank you , hill huntington hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: special epri mtg on ancillary services dear dr . kaminski , thanks for your email address . would like to invite you or others from enron to our one - day planning meeting in houston , sept . 7 , to review state of the art assessment of ancillary services markets , hear preliminary research on related topics , and help define a course of research that epri could undertake . here is one of our announcements . pls feel free to call with any questions . - - jeremy platt > re . ancillary services markets and management - - > changing market structures , pricing , settlement , operational and > cost issues > > epri has organized a workshop on ancillary services markets and management > issues , to be held september 7 in houston . file attached . > > dr . rajat deb , pres . of lcg consulting , is our featured > speaker / investigator . additional experts contributing to this special > workshop are : > * andy van horn , van horn consulting > * phillip mcleod , mhb consultants > * jens kure - jensen , encotech , and > * carl pechman , power economics > > > > this workshop is part of a program of epri research on ancillary services > markets and management topics . * you or your colleagues are welcome to > attend and contribute to the discussions . the workshop is timely , offers > unique content , and will help shape future work of value . we encourage you > to register promptly . please call me if you have any questions . > > if you are unable to attend or feel someone else in the company may have a > more direct responsibilty , please forward this note . thanks , > > jeremy platt > manager , power and fuel markets > 650 / 855 - 2628 > > dale gray > manager , generation asset management > 704 - 547 - 6016 > > * background on epri research on ancillary services . epri , known formerly > as the electric power research institute , offers research on a wide range > of energy , technology , environmental and business / market topics . epri ' s > 2000 research on a / s is value package 64 . 3 , strategic value and > measurement of ancillary services . this value package is part of a larger > program of research ( a "" target "" ) , called understanding power and fuel > markets and generation response . other 2000 ancillary services projects > underway are : a report on markets and pricing ( now in preparation ) and a > demonstration this fall of measurement procedures at a generating site for > reactive supply and voltage control and for spinning and supplemental > reserves . > > > > - ancillary - wkshp . pdf",0 +"Subject: congratulations congratulations on your promotion to md ! alan",0 +"Subject: enron projects by team enron tiger team : thank you for your input on project requests . the breakout of projects is as follows : team 1 : wholesale trading team 2 : impact of e - commerce on energy markets team 3 : retail business applications any questions , please call the fap office . good luck with your finals . have a wonderful winter break . sincerely , donna piazze program director field application project the wharton school univ . of pennsylvania ( 215 ) 573 - 8394 ( 215 ) 573 - 5727 fax fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: promotion for martin lin sheila , a reminder about promoting martin lin from associate to manager . do we have any leeway on his salary adjustment ? he is currently at 81 k , and i understand that his new salary can be made retroactive to aug . 1 , 2000 . thanks , stinson",0 +"Subject: re : fw : gmm - 30 mar 2001 jeff , the newsletter is addressed to a wide audience in enron , not exclusively one group . we are providing forward interest rate foreign exchange curves to multiple units of enron to revalue our assets . maureen and gwen spend of lot of time answering questions regarding countries like argentina , korea , brazil , etc . the newsletter can be used as a reference in answering many of those questions . vince from : jeffrey a shankman / enron @ enronxgate on 04 / 02 / 2001 01 : 52 pm to : vince j kaminski / hou / ect @ ect cc : subject : fw : gmm - 30 mar 2001 this report is not great . i only like the g - 7 bank info and the weekly economic table . any thoughts ? jeff - - - - - original message - - - - - from : koepke , gwyn on behalf of maureen raymond / lon / ect @ enron sent : monday , april 02 , 2001 11 : 05 am to : hickerson , gary ; shahi , pushkar ; stuart , william ; delage , darren ; su , ellen ; martina angelova / lon / ect @ ect ; mcfarland , trena ; hess , jurgen ; kaminski , vince ; fraser , jennifer ; mehrer , anna ; sgibner @ enron . com ; gmcclel @ enron . com ; staley , stuart ; harora @ enron . com ; boyt , eric ; dallmann , shane ; armstrong , aaron ; allario , john ; reed , andrea v . ; joverdy @ enron . com ; mead , paul ; sherriff , john ; harper , richard ; mcgowan , kevin ; reck , daniel ; beyer , michael ; ruffcorn , kevin ; hudler , cindy ; ruane , mark ; heu , mog ; mcleish , alex ; mahoney , chris ; whalley , greg ; alkhayat , alhamd ; haggerty , john ; beck , sally ; profir , diana ; kristal , yana ; clara carrington / hou / ect @ enron ; jshankm @ enron . com ; foti , david ; ferlic , suzanne ; mckeever , tom ; thorn , terence ; dupre , david ; boettcher , thomas ; farmer , michael ; hutchinson , michael ; gold , joe ; fraser , bridget ; dwivedi , vikas ; raghavan , suresh ; bhavna pandya / hou / ect @ enron ; hill , andrew ; lawyer , larry ; egmcontent ; ibarra , felipe ; nordstrom , mary subject : gmm - 30 mar 2001 please find attached this week ' s global markets monitor , dated march 30 . maureen raymond - castaneda and gwyn koepke",0 +"Subject: interview candidate allen humbolt dear elizabeth : we interviewed allen last week for my group . the consensus is that there is not a sufficiently good match between his skills and our requirements , so we will not extend an offer to him . i would appreciate if you can send him a thank you note conveying our decision . thanks , krishna",0 +"Subject: yesterday ' s power outage as you are painfully aware , we had a power outage wednesday morning in the enron building . this outage was caused by localized structural failure of the raised floor in our 34 th floor data center . this resulted in disruption to the power distribution system servicing the phone switch and a number of ena servers . as a cautionary move , enron online was interrupted while the extent of the failure was assessed , resulting in the system being unavailable from 11 : 23 to 11 : 39 . all enron building telephones and voicemail were unavailable for approximately one hour and 20 minutes and certain ena trading systems were unavailable for over two hours . during this time the power was stabilized and systems were restored . immediate steps are being taken to correct this problem . we apologize for this inconvenience . if you have any questions in regard to this outage , please call philippe bibi at x 37698 or bill donovan at x 35459",0 +"Subject: re : turkey the group to whom this message was sent is rac in london , related to london ' s focus on enron ' s equity interest in opet ( $ 18 million exposure ) . gwyn - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 04 / 19 / 2001 06 : 59 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - gwyn koepke 04 / 19 / 2001 06 : 58 pm to : suryan wirya simunovic / lon / ect @ ect cc : gkoepke @ enron . com @ ect , jolyon manning / eu / enron @ enron , padmesh thuraisingham / lon / ect @ ect , maureen raymond / lon / ect @ ect , mitra mujica / enron @ enronxgate subject : re : turkey suryan , please find attached a brief on turkey , per your request . as stated in the brief , this is a preliminary forecast and is subject to change upon further government announcements related to external financing and monetary / fx policies . gwyn koepke suryan wirya simunovic @ ect 04 / 19 / 2001 10 : 48 am to : gkoepke @ enron . com cc : jolyon manning / eu / enron @ enron , padmesh thuraisingham / lon / ect @ ect subject : turkey gwyn , paddy and i spoke to you earlier today regarding eel ' s turkish investment . you mentioned that you could send us a brief report on what has been going on in turkey in the last couple of weeks . as we are having a meeting tomorrow am could you still send us this report before business closing houston to myself , paddy and jolyon manning . thank you suryan wirya simunovic ",0 +"Subject: re : lacima energy and weather derivatives courses by clewlow and strickland sure : i think that would be a great opportunity to get more insights on modeling forward curves . i would like to participate on both courses if possible . many thanks for remembering my name . paulo issler . vince j kaminski 11 / 13 / 2000 08 : 15 am to : paulo issler / hou / ect @ ect , alex huang / corp / enron @ enron cc : subject : lacima energy and weather derivatives courses by clewlow and strickland paulo , alex , any interest ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 13 / 2000 08 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" julie "" on 11 / 12 / 2000 02 : 05 : 40 pm to : cc : subject : lacima energy and weather derivatives courses by clewlow and strickland please find attached information ? for our next two courses and workshops : ? energy derivatives : ? pricing and risk management and weather derivatives , which will be conducted in houston and in london in feb / march 2001 . ? instructors will be dr les clewlow and dr chris strickland . ? because the course requires intense interaction , the courses will be ? limited to a maximum of 15 people , so early registration is encouraged . ? if you require further information , or would like to register for either or both ? courses , please contact me via this email or our web site , ? www . lacimagroup . com - energy . pdf - weather . pdf",0 +"Subject: hurricane warning derivatives folks , this note is intended to update all who may be concerned on our progress toward developing a commercial hurricane warning derivative product or line of products . it is clear that numerous entities have underlying exposures to hurricane warning frequency and / or duration . it is our objective to develop derivative products that will enable these entities to effectively hedge this exposure . we have generated a partial brainstorm - style list of whom natural counterparties might be according to their underlying exposure : pro - hurricane anti - hurricane the weather channel resorts home depot cruise ships lowes riverboat casinos cnn chemical plants and refineries local tv stations u . s armed forces dry ice manufacturers athletic teams chainsaw manufacturers city governments insect repellant manufacturers state governments it is obvious that there are numerous naturally offsetting parties but it is important to note that the pro - hurricane entities are more macro in nature while the anti - hurricane entities are typically more regional . thus , we have documented the frequency and duration data by regional location with the thought that the anti - hurricane entities would be interested in regional products and the pro - hurricane entities would likely be more interested in bundled regional products depending on their exposure . thus far , we have collected and documented all u . s hurricane warning data from 1980 - 2000 in the form of an excel database . the data can be sorted by year , storm , or location on the u . s coastline . total hurricane warning duration as well as number of discrete hurricane warnings are the primary data sets of interest for any given location ( or year or storm ) . the u . s coast has been divided into 11 different geographic regions of roughly similar size . these regions are : new england , mid - atlantic , virginia , north carolina , georgia / south carolina , east florida , west florida , florida panhandle , orleans / miss / bama , lousiana , and texas . while this data set may not yet be sufficient for price modeling purposes , it has confirmed our expectation that hurricane warning frequency and duration is quite volatile and unpredictable . it is believed that this volaility , when graphically depicted and mathematically represented , could be used to effectively demonstrate to would - be customers the impact of hurricane warning frequency on their business financials . in many cases , businesses may be well aware of their exposure but may not have quantified it and certainly probably felt as if this was a risk they would have to wear themselves . as we move forward on the modeling front , the data will certainly need to be scrutinized to correct for any skewing factors such as political trends , satellite availability , population trends , etc . additionally , we need to go further back in time so long as the accuracy doesn ' t decline . on the marketing front , i am certainly open to ideas . it is believed the weather channel would be the most natural party for such a product . given our positive relationship that we currently have with them , they might be the easiest sell . any and all ideas are welcome with regard to how and when we should approach customers . please respond with any questions , comments or concerns on this project . thanks , charlie",0 +"Subject: swaps monitor research . we have today published information about the global exchange - traded options and futures volume . this research is contained in the attached pdf file . through our web site , swapsmonitor . com , you can obtain additional information about otc derivatives dealers , including rankings and a database of outstandings going back to 1994 . as an e - mail subscriber to our research , you will automatically receive all free research at the same time it is placed on our web site . if you wish to remove your name from the e - mailing list , please use the reply feature of your e - mail application and type the word "" remove "" in the subject line . regards , - total _ et . pdf andrei osonenko research department",0 +"Subject: re : interviewing candidates for research steve , i am speaking at a conference either on monday or tuesday . i shall let you know tomorrow the details of my schedule . we can always invite them to visit with enron in the evening . steven leppard 02 / 10 / 2000 11 : 27 am to : vince j kaminski / hou / ect @ ect cc : dale surbey / lon / ect @ ect , shirley crenshaw / hou / ect @ ect subject : interviewing candidates for research hi vince do you think you will be able to find the time to carry out some interviewing on monday 21 st february ? are there any times you ' d particularly like me to avoid ? the first people i ' m inclined to invite in are the candidates whose cvs i ' ve attached below . i ' d like to hear what you think before i invite them along . steve",0 +"Subject: re : summer internships at enron thanks , vince . - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , march 02 , 2001 3 : 09 pm to : piazze @ wharton . upenn . edu subject : re : summer internships at enron donna , fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 02 / 2001 02 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - celeste roberts 03 / 02 / 2001 02 : 04 pm to : vince j kaminski / hou / ect @ ect cc : kristin gandy / na / enron @ enron , alyse herasimchuk / na / enron @ enron subject : re : summer internships at enron ( document link : vince j kaminski ) vince : thanks . yes it is unfortunate that we were not able to quickly identify who the interested tiger team students were . we will go ahead and process an offer letter for kim and get it to her immediately . also , thanks for agreeing to help out with stanford . hopefully we will get a few good ones ! regards , celeste vince j kaminski 03 / 01 / 2001 09 : 32 am to : celeste roberts / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : summer internships at enron celeste , i have just talked to kim . i told her she will receive one . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001 09 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 01 / 2001 09 : 25 am to : celeste roberts / hou / ect @ ect cc : kristin gandy / na / enron @ enron , christie patrick / hou / ect @ ect , vince j kaminski / hou / ect @ ect , piazze @ wharton . upenn . edu subject : summer internships at enron celeste , it seems that the process lasted too long for some students and only kim whitsel is interested in the internship at this point . her resume has been forwarded to you . i am enclosing it just in case . thanks for your help . vince ( see attached file : kim whitsel - wharton 2 resume . doc ) ( see attached file : kim whitsel - enron cover letter . doc ) - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001 09 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 02 / 23 / 2001 02 : 28 : 48 pm to : "" ' vkamins @ enron . com ' "" cc : "" ' piazze @ wharton . upenn . edu ' "" subject : summer internships at enron vince : thank you to you , ken and christie for coming to campus for the enron tiger team mid - project review . the students are working hard and appreciate your insight and suggestions to the project . thank you for your support of the wharton school . kim whitsel ( whitselk @ wharton . upenn . edu ) of tiger team 1 has informed me that she is very much interested in a summer internship at enron this year . i don ' t believe some of the students understood the process you had setup for them at enron as part of the tiger team . being concerned with having summer employment , they interviewed with other firms and ultimately accepted positions . the students asked that i express to you that this does not mean they are not interested in full time work at enron next year . i apologize and take responsibility for the lack of communication in this regard . i think it is a lesson learned and perhaps , in the future , we can make the agreement to students understood in advance of their "" dedicated interview week "" and eliminate their need to interview at all . this can also be an added advantage of applying to be a member of the tiger team . please let me know if you have any questions and exactly how kim whitsel should proceed . thank you , donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: re : shirley , i will take half day off tomorrow morning , on friday , in addition to today ' s afternoon . tanya",0 +"Subject: re : meetings with petronas on february 8 th eric : mr . nur azmin abu bakar of petronas , along with 4 of his corporate risk management team will visit enron on thursday , february 8 th . jeff shankman and vince kaminski would like to invite you to attend all or some of the presentations . a tentative agenda has the petronas team meeting with jeff and john nowlan at 10 : 00 am and then a presentation by david port and the rac group , followed by vince kaminski and the research group . vince will take the team to lunch and you are invited . please let me know if you plan to attend all or part of the presentations and if you would like to go to lunch . thanks eric . shirley crenshaw 3 - 5290",0 +"Subject: re : meeting re : wharton strategy i am sorry . . . . . . as per message below we are changing it to friday at 9 : 00 . vince j kaminski 10 / 24 / 2000 04 : 43 pm to : jennifer burns / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : meeting re : wharton strategy jennifer , i can rearrange some other meetings . thursday , oct 26 @ 3 : 00 works for me . vince jennifer burns 10 / 24 / 2000 04 : 14 pm to : michele nezi marvin / enron communications @ enron communications , mark palmer / corp / enron @ enron , cindy derecskey / corp / enron @ enron , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , beth miertschin / hou / ect @ ect , christie patrick / hou / ect @ ect , kristin gandy / na / enron @ enron cc : subject : meeting re : wharton strategy lets try for friday , october 27 @ 9 : 00 am , please let me know if you are available . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by jennifer burns / hou / ect on 10 / 24 / 2000 04 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jennifer burns 10 / 23 / 2000 11 : 08 am to : michele nezi marvin / enron communications @ enron communications , sarah mulholland / hou / ect @ ect , mark palmer / corp / enron @ enron , kristin gandy / na / enron @ enron , beth miertschin / hou / ect @ ect , christie patrick / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : meeting re : wharton strategy jeff shankman would like to have a meeting re : wharton strategy . please let me know if you would be available thursday , october 26 @ 3 : 00 . i will get back with everyone to confirm a location . thanks ! jennifer",0 +"Subject: henwood power market symposium - april 2001 * we apologize for the previous message , we experienced an error in our system henwood power market symposium , april 29 th - may lst we are excited to offer you an invitation to attend the henwood power market symposium . this annual three - day event will take place from april 29 to may 1 , 2001 in atlanta , ga at the evergreen mountain resort . the goal of the symposium is to provide our guests a forum to conduct business across all energy markets through the sharing of experiences and innovations , and through numerous networking opportunities . participants will also gain access to henwood ' s software products , consulting services and e - business products , as a means to develop competitive strategies and unequalled value in restructured markets . the focus of the symposium is to provide relevant discussion topics , technologies and competitive strategies . this year ' s featured speakers include senior representatives from enron , conoco , electric power research institute , ferc , new england iso , and more . please register early because space is limited ! if you register prior to april lst , the symposium cost is only $ 875 . after april lst , the registration fee will be increased to $ 975 . your registration is inclusive of the following : * complete hotel accommodations for sunday april 29 th and monday april 30 th , 2001 * all meals and refreshments for april 29 th through may lst . a welcome reception is planned for sunday , april 29 th . this reception is an excellent opportunity to network with market participants and decision - makers of the electric power industry . * a river boat dinner cruise scheduled for monday , april 30 th on board the henry w . grady paddlewheel riverboat . spouses are welcome to attend the evening reception and dinner cruise . a captain and crew golf tournament is also planned for sunday , april 29 th for an additional fee . we invite golfers of all levels to participate in this event . for more information contact heather mason ( e - mail : hmason @ hesinet . com ) at 916 569 - 0985 . you can also learn more about the symposium by visiting our web site at www . hesinet . com . * make sure to ask about our special 2001 henwood client discount .",0 +"Subject: energy derivative courses dear vince / grant , it was good to meet and talk with you both this morning - very interesting . here are the details of the course ( actually there are two seperate courses , one on var ) that i promised you . i hope to see you both again later in the month . best regards . chris . course 1 : energy derivatives : pricing and risk management - course leaders : dr les clewlow and dr chris strickland houston : 29 - 30 march 2000 london : 3 - 4 april 2000 fee : stg 1950 / usd 2950 this is an intermediate course aimed at the energy professional who is familiar with energy derivative products but who requires the mathematical foundations of derivative pricing and an understanding of the pricing and risk management of energy derivatives . this course assumes that participants are familiar with standard basic option pricing theory ( the black - scholes formula , monte carlo simulation , and the use of binomial trees for option pricing ) . the format for the course will follow our usual highly practical and successful style of alternate sessions of lectures and excel based computer workshops . to facilitate intensive interaction , the course will be limited to a maximum of 15 participants so early booking is advisable . the excel based computer workshops deal with oil and gas as well as electricity derivatives and contain detailed calculations for pricing and risk management . at the end of the 2 days , participants leave with a diskette containing answers to all the workshops as well as valuable code for pricing and simulation . registration fee includes : pre - course reading , course materials , copies of relevant research materials , diskette with fully worked solutions to computer workshops , lunch and refreshments . additionally , each attendee will receive a free copy of clewlow and strickland ' s forthcoming book "" energy derivatives : pricing and risk management "" which includes valuable contributions from enron ' s vince kaminski and grant masson . upon registration , participants will be sent a pack containing relevant pre - course reading . course outline day 1 , am : introduction to energy derivatives modelling energy derivatives - structures and applications fundamentals of modeling and pricing analysing energy data spot price behaviour building forward curves - assessing available models the relationship between the spot price and forward curve dynamics workshop : analysing the properties of energy data - mean reversion , volatility structures , jumps day 1 , pm : spot price models and pricing by simulation and trees review of spot price models the pros and cons of spot price models pricing standard options , swaptions , caps , floors , and collars simulation for spot price models pricing exotic options ( barriers , lookbacks , asians , etc . ) building and using trees for energy derivatives building trees consistent with the forward curve pricing options in trees workshop : using simulation and trinomial trees to price energy derivatives day 2 , am : forward curve based models forward curve dynamics and forward curve models the relationship to spot price dynamics multi - factor forward curve models volatility function interpretation and estimation pricing standard energy options pricing energy swaptions pricing energy exotics using simulation workshop : using simulation to implement multi - factor models and price energy options day 2 , pm : risk management of energy derivatives energy market risk and hedging computing hedge sensitivities determining the hedge instruments hedging a energy derivatives book value - at - risk in energy markets - the pros and cons of the approaches credit risk in energy markets - issues and models workshop : hedging an energy portfolio please feel free to e - mail us to register for this course and we will contact you regarding payment . course 2 : var for energy markets course leaders : dr les clewlow and dr chris strickland houston : 31 march 2000 london : 5 april 2000 fee : stg 950 / usd 1950 this is an intermediate course aimed at the energy professional who is familiar with energy derivative products but who requires an understanding of the theory and calculation of value at risk for energy derivative portfolios . the format for the course will follow our usual highly practical and successful style of alternate sessions of lectures and excel based computer workshops . to facilitate intensive interaction the course will be limited to a maximum of 15 participants so early booking is advisable . the excel based computer workshops deal with oil and gas as well as electricity derivatives . at the end of the course participants leave with a diskette containing answers to all the workshops as well as valuable code for pricing and var calculations . registration fee includes : pre - course reading , course materials , copies of relevant research materials , diskette with fully worked solutions to computer workshops , lunch and refreshments . additionally , each attendee will receive a free copy of clewlow and strickland ' s forthcoming book "" energy derivatives : pricing and risk management "" . upon registration , participants will be sent a pack containing relevant pre - course reading . course outline day 1 , am : understanding the var methodologies and issues what is var ? uses of var types of var methodologies implications of applying the riskmetrics assumptions in energy markets delta var , historical simulation linear and non linear instruments workshop : applying simple var methodologies in the energy market day 1 , pm : calculation of energy portfolio var using simulation modelling the energy forward curve - single and multi - factor modelling the joint behaviour of different energies simultaneously calculation of covariances and correlations incorporating jumps detailed example var calculation for an energy portfolio workshop : simulating energy forward curves and calculation of var for an energy portfolio . dr . les clewlow and dr chris strickland hold associate research positions at both the school of finance and economics , university of technology , sydney and the financial options research centre , university of warwick , uk . together they have over 20 years combined experience in the financial and energy derivative markets and have published many articles in academic and trade journals . they are the authors of the book "" implementing derivatives models "" ( wiley , 1998 ) and editors of "" exotic options : the state of the art "" ( itp , 1998 ) . their forthcoming book , "" energy derivatives : pricing and risk management , "" is due to be published during the second quarter 2000 . currently , their interests are concentrated in the energy derivatives area , where they have developed a wide range of pricing tools for electricity options and other energy derivatives .",0 +"Subject: entouch newsletter business highlights enron industrial markets enron industrial markets has recently completed the first transaction for a new 60 - day fixed price product for the lumber industry . available for delivery in houston and dallas , the product is offered by enron in the over - the - counter market and via clickpaper . com , enron  , s internet - based transaction system dedicated to the forest products industry . the first transaction was completed via clickpaper . com on march 14 with a major lumber buyer in the southern united states . this represents the first online fixed price transaction contract in the industry . with the growing volatility in the lumber industry , the availability of a long - term fixed price product provides companies with another opportunity to mitigate their exposure . additionally , this transaction represents the convergence of enron  , s increasing involvement in physical lumber transactions with our recognized expertise in financial risk management . in addition , eim has announced that it has completed its acquisition of the quebec city , canada newsprint mill and related assets from daishowa forest products ltd . in july 2000 , enron purchased garden state paper , a recycled newsprint mill located in garfield , nj . the acquisition of the daishowa mill now positions enron as the seventh largest producer of newsprint in north america . the daishowa mill in quebec city will now be called papiers stadacona . the new name has great historical significance to the local community in quebec city . when jacques cartier first explored the mouth of the st . charles river in 1535 , the aboriginal people living there referred to the village as stadacona . this is now the site of modern - day quebec city . enron freight markets in march , enron freight markets ( efm ) completed the acquisition of webmodal , inc to help launch the traditional intermediary transportation business . efm also started its spot trading business and completed 981 transactions in its first month . east power origination on tuesday , april 3 , the st . lucie county commission voted 3 - 2 to approve the midway energy center near fort pierce , florida , which is a 510 megawatt peaking power plant . next steps for this facility include receiving a water permit from the south florida water management district and an environmental resource permit ( erp ) from the florida department of environmental protection . enron canada ken lay addressed a breakfast meeting of the toronto board of trade on wednesday , april 4 , as part of the "" power breakfast series "" . his topic was "" moving forward with electricity deregulation . "" before his speech , the chairman of the board of trade commented that "" this was the best attendance ever "" at one of their breakfast meetings . after the meeting , mr . lay spoke with reporters from reuters , the globe and mail , the national post , and report on business tv emphasizing enron ' s commitment to deregulation of the ontario power market . in the news japan : enron presents power plant plan to japan government tokyo , u . s . - based enron corp on wednesday presented plans to build a liquefied natural gas ( lng ) fired power plant in northern japan , aiming to become the first foreign company to build such a plant in japan . the move brings enron one step closer to realizing its plan to build a power plant with an initial capacity of two million kilowatts in aomori prefecture . "" we submitted our basic plan to build the plant to the governor of aomori prefecture today in line with last november ' s announcement , "" tatsuro seguchi , president of enron corp ' s japanese affiliate encom corp , told a news conference . "" we are aiming to start construction of the plant in 2004 and start operations by 2007 since japan ' s power market is one of our highest priorities , "" he said . 03 / 28 / 2001 reuters english news service ( c ) reuters limited 2001 . welcome new hires egm - lyelle bellard , damian nelson , edward soo , jonathan whitehead eim - elsa aguilar , melia dickson , john hark , phaedra jones , maricar jose , ian mccrory , mirella bertrone , roland holub , arthur miller , miriam watson , richard albert , randy biagini , thomas duchnicki , diego tabbachino ena - mitra mujica , karen phillips , sarah domonoskie , kelly donlevy - lee transfers ( to or within ) ena - john moore , mitchell robinson , larry valderrama , holden salisbury , grace rodriguez , mary martinez , dominic carolan , kari oquinn , katherine kelly , david fuller , anguel grigorov , oren zimmerman , chuanli deng , glenn surowiec , tharsilla broussard , geynille dillingham , philip conn , lola weller , christina brandli , noemi camacho , randel young , ina rangel egm - shelia benke , homer lin , william mckone , william berkeland , valarie curry , tomas tellez eim - allen ueckert , john w . jennings , sarveen kohli nuggets & notes the next ews brown bag is scheduled for april 19 with tim battaglia discussing the steel industry . legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: data for moody ' s riskcalc craig and kim , as you know , i have obtained a 60 day trial subscription to moody ' s riskcalc . you wanted to know if it makes sense for enron to purchase riskcalc . well , after plowing through their 100 page manual and sitting through today ' s 2 - hour moody ' s presentation , it is necessary for us to have information about enron ' s counterparties to move to the next step with riskcalc . we have obtained some information on enron ' s european counterparties from our colleagues in the london office . we need for you and / or your colleagues in the houston office to supply us with a list of enron ' s north american counterparties . more specifically , to evaluate moody ' s riskcalc we will need the following financial inputs for enron ' s north american ( private firm ) counterparties : fiscal year the prior twelve months of financial data are represented . annual statements are usable as well as quarterly statements after summing the flow variables , such as cost of goods sold , net income , sales , and ebit . the value should be a four - digit integer year without mention of the day or month such as 1999 or 2000 . forecasts until the year 2009 can be made . a constant rate of inflation is applied to future years using last year ' s ( 1999 ) inflation level . in general this ' estimation error ' will not cause any great problems , as size affects default rates at very large scales ( e . g . , $ 10 , 000 , 000 vs . $ 1 , 000 , 000 makes a significant difference , $ 1 , 000 , 000 vs . $ 1 , 050 , 00 does not ) . cash & equivalents this measure of liquid assets includes cash and marketable securities . inventory inventories are taken directly from the balance sheet , in thousands dollars , without any alterations for accounting method ( e . g . , lifo , fifo , average cost ) . this item represents merchandise bought for resale and materials and supplies purchased for use in production of revenue . specifically this would include purchase cost , sales cost , sales taxes , transportation costs , insurance costs , and storage costs . current assets this item primarily represents cash , inventories , accounts receivables , marketable securities , and other current assets . total assets total assets and every other variable are entered in thousands of dollars . for example , $ 15 , 500 , 000 should be entered as 15500 . specifically , total assets are the sum of current assets plus net property , plant , and equipment plus other noncurrent assets ( including intangible assets , deferred items , and investments and advances ) . leave previous year ' s total assets blank for australian companies . current liabilities liabilities are positive values . included in current liabilities are short - term debt , accounts payable , and other current liabilities . total liabilities this balance sheet account , total liabilities , is a positive number representing the sum of current liabilities plus long - term debt plus other noncurrent liabilities ( including deferred taxes , investment tax credit , and minority interest ) . retained earnings retained earnings , a historical measure of performance , is the cumulative earnings of the company less total dividend distributions to shareholders . typically , it is the prior year ' s retained earnings plus net income less distributions . retained earnings are generally positive . some firms with low credit quality will have negative retained earnings . leave this field blank for australian companies . sales this item consists of the industry segment ' s gross sales ( the amount of actual billings to customers for regular sales completed during the period ) reduced by cash discounts , trade discounts , and returned sales and allowances for which credit is given to customers . cost of goods sold entered in thousands of dollars , this value is generally a positive number less than sales . it represents all costs directly allocated by the company to production , such as material , labor , and overhead . not fixed overhead or items that would be included in selling , general , and administrative expenses . leave this field blank for australian companies . ebit earning before interest expense is operating income after depreciation . it can be positive or negative but is usually greater then net income . interest expense this item represents the periodic expense to the company of securing short - and long - term debt . typically , we expect this charge to be approximately the prevailing interest rate times the total liabilities . one measure of computing this is : interest expense = 0 . 07 * total liabilities . net income this item represents the income ( or loss ) reported by a company after expenses and losses have been subtracted from all revenues and gains for the fiscal period including extraordinary items and discontinued operations . a loss is represented by a negative sign . for example , a $ 5 , 000 , 000 loss would be entered as - 5000 . leave previous year ' s net income blank for australian companies . extraordinary items positive or negative , this item represents unusual items that sometimes appear on the income statement . the items are designated by the company as extraordinary and presented after net income from continuing operations and discontinued operations . these items include extraordinary gains / losses , income ( loss ) from discontinued operations , and cumulative affect of accounting changes . expenses are entered as negative values , gains as positive values . leave previous year ' s extraordinary items blank for australian companies . country this model is calibrated for the united states , canada , and australia . we look forward to receiving this information for enron ' s private firm north american counterparties so that we can move on to the next step with the evaluation of riskcalc . thanks , iris",0 +"Subject: re : mscf speaker series pierre , i am working with kristin gandy on my trip . hopefully , she will be able to confirm the november date in a day or two . kristin is taking care of all the arrangements . vince pierre - philippe ste - marie on 08 / 28 / 2000 09 : 34 : 47 am to : vince . j . kaminski @ enron . com cc : subject : mscf speaker series dear mr . kaminski , any news yet about your trip to pittsburgh ? i would sure appreciate a message saying that everything is ok for early november ! ! pierre",0 +"Subject: houston visit with vince kaminski good afternoon : vince kaminski is available on wednesday , april 19 th from 8 : 00 - 11 : 00 am and 1 : 00 - 4 : 00 pm . please let me know what time is more convenient for you . shirley crenshaw administrative coordinator 713 - 853 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 31 / 2000 11 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" faiz , soussan "" on 03 / 30 / 2000 02 : 31 : 18 pm to : "" ' vkamins @ enron . com ' "" cc : subject : houston visit dear vince , greetings from ny & hope all is well . as you may recall from the rog real options conference in ny , i ' d indicated the opportunity to visit with you next time i ' m in houston . i ' ll be there during 4 / 18 - 4 / 21 & wonder if we can pls meet on wed . 4 / 19 in your offices . would appreciate it if you can pls let me know whether you ' re available then ( i ' m flexible on the schedule particulars ) . if not , pls let me know whether 4 / 18 ( afternoon ) , 4 / 20 ( afternoon ) , or 4 / 21 ( morning ) will work for you . i really look forward to the opportunity & would appreciate to learn more about how you ' ve instigated the real options thinking in enron and especially its integration within the organizational & incentive matters . many thanks , soussan faiz mgr . of global valuation services texaco inc . ( 914 ) 253 - 4187",0 +"Subject: re : vacation shirley , no problem . vince shirley crenshaw 11 / 29 / 2000 03 : 34 pm to : vince j kaminski / hou / ect @ ect cc : anita dupont / na / enron @ enron subject : vacation vince : i have 4 days vacation left . i would like to take friday , the 8 th and the 27 th , 28 th and 29 th . please let me know if this is ok . anita will be here . thanks ! shirley",0 +"Subject: hc costless collar andrea , we finished the the costless collar valuation . see the spreadsheets for details . we checked the bloomberg for volatility assumption . the 100 days volatility is around 50 % . since the option is for 3 years , the volatility should be somewhat smaller . so we put an array of calculations , with the volatility ranges from 20 % to 60 % . if you have any questions , please call me or bob lee . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 01 / 09 / 2001 09 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bob lee @ enron 01 / 09 / 2001 08 : 48 am to : zimin lu / hou / ect @ ect cc : subject : hc costless collar",0 +"Subject: re : ashley baxter - review neil , i shall do the review with pleasure . vince neil davies @ enron 11 / 07 / 2000 01 : 37 pm to : vince j kaminski / hou / ect @ ect cc : subject : ashley baxter - review vince sorry i missed you off the list neil - - - - - - - - - - - - - - - - - - - - - - forwarded by neil davies / corp / enron on 11 / 07 / 2000 01 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - neil davies 11 / 07 / 2000 01 : 36 pm to : lara marie berry / corp / enron @ enron , marty chrisman / corp / enron @ enron , shelly jones / hou / ect @ ect , simone lewis / na / enron @ enron , beth perlman / hou / ect @ ect cc : subject : ashley baxter - review you have all been selected from reviewers for ashley . our hr pre ranking will take place on 14 november therefore i ' d be grateful if you could complete her review by the close of business on 13 november thanks for your help with this . neil",0 +"Subject: baylor professors lunch i ' m sorry . . . try this . beth - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 07 / 07 / 2000 05 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : beth miertschin 07 / 07 / 2000 05 : 01 pm to : mitchell taylor / corp / enron @ enron , bill w brown / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : shelly jones / hou / ect @ ect , geynille dillingham / hou / ect @ ect subject : baylor professors lunch on wednesday , july 12 dr . john martin , chair of finance department , and dr . bill petty , chair of entrepreneurship department , of baylor university will be at the enron building to discuss future sponsorship of the texas finance festival and to talk about recruiting . they have asked me to invite all of you to lunch with us on that day so that they might have a chance to visit with you all as well . please let me know if you are available for lunch on july 12 at noon .",0 +"Subject: re : hello hi vince , thank you for your offer to bring jacob back for another interview . yes , if it is not too much trouble , i would like to talk with him . i was sorry i had to be out of town last week when he was in the office . thanks , just let me know when you would like me to be available . kim . - - - - - original message - - - - - from : kaminski , vince sent : monday , april 16 , 2001 1 : 21 pm to : watson , kimberly cc : krishnarao , pinnamaneni ; kaminski , vince subject : re : hello kim , this is a letter from one of the job applicants who works for pros . it seems that the system they develop for williams is more a scheduling system . would you like to ask him to come back for another interview , to get more information out of him ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jacob y . kang "" on 04 / 11 / 2001 11 : 18 : 44 pm to : vince . j . kaminski @ enron . com cc : subject : re : hello dear vince : it was so nice meeting and talking with you too . i did not take any pen back , i lost my pen too somewhere in enron . as i mentioned to you , after i got my ph . d in 1999 , i have been working two years as lead scientist and science manager in energy division at pros revenue management inc . in houston . i developed and implemented the mathematical models for trading optimization system and firm transportation optimization system . the trading optimization system becomes the most popular product in the industry this year . duke energy just signed the contract to buy this product yesterday . conoco and williams also signed the contracts for it . according to pros sales department , the potential marketer to buy this product exceeds 15 companies in one or two years . enron is the ideal place for me to continue my research and system developing efforts to combine revenue management with risk management . i am confident that i can make significant contributions to enron in this area . i would like to thank you again for giving me this opportunity to come to enron for this interview . i am looking forward to having the opportunity to work in enron . sincerely yours jacob - - - vince . j . kaminski @ enron . com wrote : > jacob , > > it was nice meeting you . did take by any chance > my pen ? if not , i apologize . > > vince > do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com / ",0 +"Subject: sat vince , i hope you are having a great trip . i look forward to hearing about it . let ' s aim for the 5 : 00 show , if that is ok with you . i always have so many errands to run , i don ' t want to run late for the movie . talk to you saturday a . m . - - 713 - 355 - 8311 jana",0 +"Subject: re : interview for the research group vince : i apologize - - i had emailed shirley to let her know that toni had forwarded your email to me and that i would be handling this for you , but i didn ' t copy you on the email . please call me with any questions , molly x 34804 vince j kaminski 10 / 18 / 2000 03 : 14 pm to : molly magee / hou / ect @ ect cc : subject : interview for the research group fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 18 / 2000 03 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 10 / 18 / 2000 12 : 58 pm to : toni graham / corp / enron @ enron , stephanie summers / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : interview for the research group hello everyone : vince would like to bring jaesoo lew in next week for an exploratory interview with the research group . the dates that would work best for us are : wednesday , the 25 th ( am ) , thursday , 26 th ( am ) and friday , 27 th ( am ) . please see if mr . lew is available for any of these times . thanks ! shirley 3 - 5290 - vitae 2 . doc - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 18 / 2000 12 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 10 / 18 / 2000 12 : 29 pm to : stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : position shirley , i would like to invite him to an interview next week . we should use his home phone number and / or private e - mail address . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 18 / 2000 12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jaesoo lew "" on 10 / 17 / 2000 09 : 59 : 01 pm to : vkamins @ enron . com cc : subject : position dear dr . kaminski my name is jaesoo lew and i am referred by dr . wayne lee . currently i ' ve been working at aquila energy in kansas city as an pricing analyst since july 2000 . since then , i have developed a natural gas storage valuation model applying the swing options ( forest method ) pricing approach . the price processes would be considered critical for the storage valuation since a trinomial forest is required to value storage . also the c + + programming using excel dll has been developed , too . i attached my resume to this message for your consideration and am looking forward to talking about an opportunity at enron . my home phone number is 913 - 649 - 0578 , dr . kaminski , i will wait your call in this week as dr . lee informed me . if possible , please let me know your expected calling day through the mail . i appreciate your consideration . thank you very much . sincerely , jaesoo lew get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com . - vitae 2 . doc",0 +"Subject: re : asset auctions stinson : i don ' t think chonawee can do much in this time frame . it ' s your call if you want to go through the motions . grant . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 07 / 26 / 2000 09 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - derek davies 07 / 25 / 2000 05 : 35 pm to : grant masson / hou / ect @ ect cc : subject : re : asset auctions ? grant , thanks for all your help . the auction is scheduled to commence a week wednesday ( aug 2 / 2000 ) . derek",0 +"Subject: re : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy finance conference feb . 22 - 23 , 2001 - the university of texas at austin thanks vince . if there are other members in your group that did not get this e - mail , please forward it to them . the school called yesterday and they said that no one from enron was taking advantage of the conference other than yourself . thanks again . karen",0 +"Subject: price caps - - - - - - - - - - - - - - - - - - - - - - forwarded by vladimir gorny / hou / ect on 11 / 01 / 2000 03 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : tim belden 10 / 27 / 2000 05 : 40 pm to : john j lavorato / corp / enron , dave delainey , mike swerzbin / hou / ect @ ect , robert badeer / hou / ect @ ect , sean crandall / pdx / ect @ ect , tim belden / hou / ect @ ect , jeff richter / hou / ect @ ect , diana scholtes / hou / ect @ ect , tom alonso / pdx / ect @ ect , mark fischer / pdx / ect @ ect , john m forney / hou / ect @ ect , paul choi / sf / ect @ ect , john malowney / hou / ect @ ect , holli krebs / hou / ect @ ect , greg wolfe / hou / ect @ ect , chris h foster / hou / ect @ ect , stewart rosman / hou / ect @ ect , kim ward / hou / ect @ ect , debra davidson / pdx / ect @ ect , tim belden / hou / ect @ ect , lester rawson / pdx / ect @ ect , john zufferli / cal / ect @ ect , james d steffes / na / enron @ enron , mary hain / hou / ect @ ect , christopher f calger / pdx / ect @ ect , dave parquet , phillip k allen / hou / ect @ ect , vladimir gorny / hou / ect @ ect , monica lande / pdx / ect @ ect , elliot mainzer / pdx / ect @ ect , tim heizenrader / pdx / ect @ ect , cooper richey , stephen swain / pdx / ect @ ect , susan j mara / sfo / ees @ ees , steven j kean / na / enron @ enron , mark palmer / corp / enron @ enron cc : debra davidson / pdx / ect @ ect subject : price caps the following summarizes recent price cap events in california . i think that i have most of it right . if there is anything wrong or missing please let me know . please don ' t share the attached spreadsheet with anyone outside of enron . regards , tim new cap specifics on 10 / 26 / 2000 the iso board passed a motion by a vote of 13 - 10 to implement a new price cap methodology . the new methodology will become effective 11 / 3 / 2000 or as soon thereafter as can be implemented . caiso staff has indicated that it will be difficult to achieve that start date . they have not yet indicated what an achievable date might be . the new price cap methodology will remain in place until : comprehensive market changes have been implemented and the market has proven to be workably competitive under a variety of load conditions . either ferc or the iso board orders its removal . cap prices will be based on the average nymex l 3 d settlement average and the following heat rate table : load level heat rate 4 . 00 gas example cap 40 gw $ 250 / mwh $ 250 / mwh caps will be rounded up to the nearest $ 5 / mwh increment . demand bids and demand responsiveness programs are exempt from these caps . the iso will post the price caps for each load level at least 48 hours prior to the beginning of each calendar month . based on the iso ' s two day - ahead system load forecast , the iso will post hourly caps at least 24 hours prior to the hour of delivery . ferc context ferc has delegated cap authority to the caiso until 11 / 15 / 2000 . the iso has asserted that they don ' t need ferc authority since it is a bid cap rather than a sales cap . ferc regulates sales , not purchases , of electricity and therefore can regulate sales prices but not purchase prices . the iso has filed with ferc for an extension of the price cap authority . ferc has to rule on the filing by 11 / 18 / 2000 . ( note that this is 3 days after their authority expires ) ferc will release its proposed order on 11 / 1 / 2000 based on the results of its 206 investigation of the california wholesale power markets . we don ' t know what they will find or what they will propose . the proposed order will have a 30 day comment period , after which ferc will likely issue a final order . ferc will be accepting oral comments on 11 / 9 / 2000 in washington . enron still has to determine who will provide oral comments . many companies have filed at ferc advocating or opposing a litany of price caps , cost based rates , and market redesign recommendations . it is likely that the price caps approved by the iso board will go into effect . how long they will remain in effect will depend on whether ferc extends the iso price cap authority and whether the final order stemming from the current 206 investigation stipulates a specific price cap policy . impact of price caps the attached spreadsheet contains a table of likely maximum monthly prices at different gas price levels . we think that this is the highest that markets would clear since it assumes that each hour clears at the cap . it is hard to say whether actual prices would clear significantly lower than the cap because we don ' t know whether sellers will offer below the cap or at the cap . the assumptions behind our analysis are detailed in the bullets below . take actual historical loads from 1999 and 2000 . calculate implied price cap for each hour using actual historical load , new price cap methodology , and a range of gas prices . divide historical hours into peak and off - peak buckets . calculate average price for each month for peak hours and off - peak hours . for example , we have two years worth of data for the months of january through september . each month has approximately 400 hours . for january through september , we took approximately 800 observations for each month ( 400 from each year ) and calculated a simple average of all of the individual observations . we created a peak table and an off - peak table . the table shows the calculated implied cap based off of the acutal loads at varying gas prices for each month . this value represents what the month would clear at if each hour cleared at the cap ( based on historic loads ) . while any given hour could be above this value , our calculation estimates the likely monthly average cap value ! the blue shading indicates what the caps would be given current ( 10 / 27 / 2000 nymex ) forward prices . the yellow shading indicates those forward power prices which are in excess of the proposed cap .",0 +"Subject: re : copper curve ted , i agree . curve review has always been rac responsibility . please , let me know if we can assist you in any way . vince from : ted murphy 10 / 29 / 2000 10 : 23 am to : vince j kaminski / hou / ect @ ect cc : subject : re : copper curve tani , please touch base with lloyd fleming as to whom from rac should review the methodology . i view that it is the commercial team ' s responsibility to post the curve , operations responsibility to gather objective information on the efficacy of the curve on a ( minimum ) monthly basis and report all highly sensitive curves , rac will not approve or disapprove a curve but question methodology / motivations and subsequent changes and do so in a senior management forum ( i . e . , we will tell on those who have suspect curves or curve movements ) . obviously , we are looking for the best estimate of the value of those products in those time buckets today , we also favor object , consistent application of methodoology intra and inter commodity . ted vince j kaminski 10 / 27 / 2000 04 : 18 pm to : tani nath / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim poullain - patterson / lon / ect @ ect , harry tefoglou / lon / ect @ ect , esther gerratt / lon / ect @ ect , maureen raymond / hou / ect @ ect , ted murphy / hou / ect @ ect subject : re : copper curve tani , no problem . we shall look at the curve on monday . i have organized a small team to examine the curve from different perspectives . curve validation is normally a rac prerogative and i shall get them involved on monday vince tani nath 10 / 27 / 2000 11 : 40 am to : maureen raymond / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim poullain - patterson , harry tefoglou / lon / ect @ ect , esther gerratt / lon / ect @ ect subject : copper curve following steve ' s note to you earlier today , i wanted to mention that we have a fairly urgent need for review of the copper curve in particular , as there is a deal due for final pricing in the next few days . i am not sure what data you have received from enron metals in london , so i am asking tim poullain - patterson to ensure that you have the curves and the economic justification proposed as soon as possible . please direct any questions to him or to harry tefoglou . i will be in the tokyo office next week , but available via e - mail . thanks in advance for your assistance , tani",0 +"Subject: re : summary spreadsheet for data vendor research and model development hi , fyi here is an updated spreadsheet summarizing the data vendor research and model development . please let me know if any thing is missing , wrong , should be deleted , etc . thanks , iris - - - - - original message - - - - - from : salmon , scott sent : monday , april 09 , 2001 2 : 15 pm to : dhar , amitava cc : mumford , mike ; kirkpatrick , eric ; mack , iris subject : re : data for private firm model great work iris ! this gets us heading down the right direction and we ' ll have some project scope documentation asap . cheers , scott amitava dhar 09 / 04 / 2001 19 : 25 to : scott salmon / eu / enron @ enron , mike mumford / lon / ect @ ect , eric kirkpatrick / eu / enron @ enron cc : iris mack / enron @ enronxgate subject : data for private firm model the enclosed spreadsheet contains a summary of preliminary data search plan prepared by iris . we will talk about further progress during our conf . call on wednesday . >",0 +"Subject: re : university of texas conference on energy finance , february 2001 vince , i am checking the date on jeff ' s calendar ( i ' m assuming the date is february 22 ? ) . i am holding that date whole week for a trip abroad , but i think we have some flexibility on that and am checking it out . i ' ll be back in touch as soon as i ' ve resolved that . srs vince j kaminski @ ect 09 / 20 / 2000 11 : 41 am to : jeff skilling / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron subject : university of texas conference on energy finance , february 2001 jeff , our friends at the university of texas are planning a conference on energy economics and finance in february of next year . they would like very much to have you as a keynote speaker . given our good , long - term relationship with ut , i would recommend that you speak at this conference . i talked to prof . ehud ronn a few times about the program and i think that this will be an excellent forum to present enron ' s accomplishments and agenda for the future . i am sure that rick causey will join me in making the same recommendation . vince",0 +"Subject: tage paul : just to let you know i have made reservations for thursday night , june 1 at latour d ' argent restaurant . it is located at 2011 ella blvd @ t . c . jester . please let mr . m aragos know that a coat is required for dinner . if you need directions , please let me know . thank you . regards , shirley crenshaw administrative coordinator research group enron corp . 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: re : d - g energy great . i still haven ' t heard back from them regarding our escrow agreement butn hope to soon . if not , i will call . laine",0 +"Subject: summer hire molly , we would like to hire mr bhalachandra mehendale for a summer position . he is currently working on his ms finance at u . of wisconsin and is scheduled to finish december 2001 . his resume is attached . he will be available from about may 28 until the end of august . please let me know what additional info you need research to provide . regards , stinson - bhala _ resume . doc",0 +"Subject: re : obrona - mba pani agato , dwa punkty : 1 . pytania 2 . dodatkowe komplikacje . i . pytania controlling wprzedsiebiorstwie 1 . prosze przedyskutowac podzial funkcji i rachunkowoscia . czym rozni sie controlling odwewnetrznego i zewnetrznego auditing . 2 . prosze omowic zalety ? oraz wady  & rachunku kosztow dzialan  8 ( abc ) . analiza wskaznikowa 1 . prosze przedyskutowac ograniczenia analizy wskaznikowej . 2 . prosze omowic istote analizy piramidalnej . jakie informacje o stanie finansowym przedsiebiorstwa mozna uzyskac stosujac te metode ? pezentacja instrumentow analizy finansowej 1 . prosze omowic metody przewidywania potencjalnego ? bankructwa firmy przy zastosowaniu analizy wskaznikiwej . 2 . prosze przedyskutowac klasyfikacje wskaznikow ekonomicznych wykorzystywanych do . ii . komplikacje . we wtorek , 3 kwietnia rano , wylatuje do filadelfii . powinienem dotrzec do hotelu okolo godziny 12 czasu lokalnego , czyli godziny 6 : 00 wieczorem czasu polskiego . roznica czasu w stosunku do houstonu jest 7 godzin , ? w stosunku do wybrzeza wschodniego jest 6 godzin . jutro przesle szczegolowy plan podrozy , ktory bedzie zawierac adres i numer hotelu . prosze przeslac mi numer , na ktory moge zadzwonic , by podac numer pokoju , lub zadzwonic z samolotu w przypadku opoznienia lotu . w . kaminski",0 +"Subject: concerning the move to the 32 nd floor goodmorning liz , hopefully your morning is going well . liz , we are currently moving up to the 32 nd floor as you are already aware of . i had been speaking with brenda concerning the move however , things has changed since then . liz , i need for you to understand the importance of me knowing exactly when and where we will move . first of all - the space , we have several machines that must move with us . secondly - we must make arrangements for our satellite , the cable may need adjusting . thirdly - i need to know where every copy machine is located on the floor and hopefully we are closest to the largest one . please liz , these are most important . we prepare for morning meetings daily and we are the first to get here to work , so if any problems occur we try and tackle them beforehand . please i know that you are very busy however , this will really be helpful in making our move a success . maybe we can meet and discuss ? thank you kevin moore",0 +"Subject: re : darrell , thanks a lot . a quick question : we haven ' t received your invoice for the last few model / paper reviews . please , make sure that we are billed . clewlow / strickland book is out . i shall send you a copy today . vince darrell duffie on 01 / 24 / 2001 03 : 17 : 01 pm please respond to darrell duffie to : vince . j . kaminski @ enron . com cc : hoshino @ stanford . edu subject : re : vince / taiichi in case you are interested , i attach this paper on gas storage value modeling . best , darrell darrell duffie mail gsb stanford ca 94305 - 5015 usa phone 650 723 1976 fax 650 725 7979 email duffie @ stanford . edu web http : / / www . stanford . edu / ~ duffie / - paper 4 . pdf",0 +"Subject: re : my involvement in leadership fort worth ken enron supports employees ' involvement in civic organization and i think you should continue tour involvement with lwf . it ' s important that we give something back to society . you don ' t have to take a day off to attend workshops . vince kenneth parkhill @ enron 12 / 04 / 2000 09 : 19 am to : vince . kaminski @ enron . com cc : subject : my involvement in leadership fort worth vince , i am currently a candidate member of leadership fort worth through august of 2001 . i don ' t know if you are familiar with leadership houston or any other leadership group , but it is basically a civic organization that provides a forum for leaders to learn more about their community and opportunities for civic leadership . for their first year , members are candidates and must attend about 1 full - day workshop a month in fw , normally on a thursday . after that , members can transfer to other leadership cities . i talked with stinson about the group and he thought i should talk with you about whether or not i should stay involved with lfw . the attached email describes the december meeting scheduled for 12 / 14 . thanks ken - - - - - - - - - - - - - - - - - - - - - - forwarded by kenneth parkhill / na / enron on 12 / 04 / 2000 09 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - ann @ abarr . net on 12 / 01 / 2000 11 : 35 : 42 am please respond to to : "" william jenkins , jr . "" , "" walter lincoln office "" , "" victor howell "" , "" vicki dickerson "" , "" vanessa boling "" , "" steve johnson "" , "" sandra short "" , "" rusty hodapp "" , "" ron stutes "" , "" rob sell "" , "" rita vinson "" , "" platt allen , iii "" , "" michelle peebles - trollope "" , "" melanie hoover "" , "" matt byars "" , "" mary jane ashmore "" , "" martha musgrove "" , "" marla sapp "" , "" lynn lester "" , "" lori smith "" , "" linda winkelman "" , "" liane janovsky "" , "" leslie pope "" , "" lauri newlin "" , "" kenneth parkhill "" , "" keith kline "" , "" julie johncox "" , "" john hallam "" , "" joe drago "" , "" jim rhodes "" , "" jeff conner "" , "" jeff cashman "" , "" janet pacatte "" , "" janet hahn "" , "" flavel chastain "" , "" duane paul "" , "" don allen "" , "" debbie liles "" , "" david wells "" , "" david duman "" , "" damon gaines "" , "" cynthia persons phillips "" , "" cynthia harnest "" , "" craig goldman "" , "" courtney jeans "" , "" cornell thomas "" , "" cathy coleman "" , "" cal martinez "" , "" bonita maurer "" , "" ardina washington "" cc : subject : economic and workforce development day attached is information about economic and workforce development day . ? this class day will be thursday , december 14 , 2000 - meme economic development day dec 2000 . doc - christmas invitation 2000 reata . doc",0 +"Subject: re : hi zeigham , we discussed two options ( not necessarily mutually exclusive ) : 1 . summer internship 2 . full employment . are you interested exclusively in full employment ? i need the answer asap , as we are going to discuss the additional summer intern positions this afternoon . vince zkhokher @ mail . utexas . edu on 04 / 11 / 2000 01 : 06 : 14 pm to : cc : subject : hi vince : it was very nice talking to you at the texas finance festival and i think the telecom market that enron is entering is very interesting and very lucrative . ? i would be very interested in working in that segment for enron . ? however , i talked to sheridan about this oppurtunity and he said that it is probably going to be another six months before i finish my dissertation . ? so while i am definitely interested , the start date will probably have to be around that time . ? ? at any rate , it was a pleasure meeting you again and hopefully once i have defended my dissertation ? we can discuss employment oppurtunities in greater detail . ? ? regards zeigham zkhokher @ mail . utexas . edu 512 - 471 - 1676",0 +"Subject: enron credit : more recent business plan - - - - - - - - - - - - - - - - - - - - - - forwarded by amitava dhar / corp / enron on 04 / 30 / 2001 11 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - scott salmon 04 / 27 / 2001 09 : 04 am to : iris mack / enron @ enronxgate , amitava dhar / corp / enron @ enron cc : subject : more recent business plan iris / amitava , here ' s something more recent to chew on . . . note : strictly confidential . cheers , scott",0 +"Subject: pserc iab meeting dear dennis , vince kaminski forwarded your invitation to attend the pserc iab meeting . i look forward to meeting you and attending the meeting . i am a manager in vince ' s research group and my background is in economics of power systems . sincerely , lance b . cunningham , p . e . manager enron north america",0 +"Subject: travel announcement enron global travel management ( a division of global strategic sourcing ) is pleased to announce that american express corporate cardholders can now view account details online . highlights of this service include : review previously billed , current , and unbilled charges review corporate direct payments and personal payments applied to your account dispute a charge online , if needed access customer service 24 hours a day , 7 days a week to log on to american express online services : gss has prepared a special registration / log on page for corporate cardmembers for your convenience . to access it , go to http : / / travel . enron . com and click on the corporate card button . cardmembers with cards issued within the last 45 days , need to call american express customer service to enroll . the number is 1 - 800 - 297 - 1234 . if you have already registered your personal american express card in the american express online services program : please click on the "" check your bill "" link and login using your existing user id and password . you will be able to add your american express corporate card to your existing registration by clicking on the "" update your online profile "" link which appears on the left hand menu bar once you are logged in . we hope you enjoy using american express online services . for questions or additional information , contact tracy ramsey ( director , global travel management ) at 713 / 853 - 6457 .",0 +"Subject: re : research group thanks vince , i will get on it right away ! / 28 / 2000 11 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 02 / 28 / 2000 11 : 05 am to : kevin g moore / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : research group kevin , i think it ' s very important . it is important that our work area looks neat . vince kevin g moore 02 / 28 / 2000 11 : 01 am to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : research group hello vince , vince , before i get with delores on the matter of the department i wanted to ask you how important it that we get the walls repaired ? is the research department satisfactory or is there anything else that i can do ? thanks kevin moore",0 +"Subject: re : network planning stinson , i had a discussion with jim and he said that the company ' s name is mill three . they provide modeling tools for tiered qos and the like for network planning . he said that the code is written in c and that we should be able to work with it . he will get us the contact name and we can get a presentation for us . jim said that he arranged for this before he met me and learned of our ( ebs research ) role in this matter . i made it clear to jim that john griebling had asked us to set up this group to do modeling and that we are in the process of arranging for 4 or modeling experts to reside in houston . from now on jim and i will work hand and hand on such issues along with you to make sure that we initiate development efforts as soon as possible to utilize krishna , samer and co . asap . . . i ' ll take care of arranging a meeting with these consultatants asap . my involvement in hamachi is through jim irvine . jim and i are working very well together due to our engineering background . jim has been a network ( communications ) engineer in the army for about 20 years . for hamachi , there were gap analysis that needed to be done w . r . t . network reach and when and where the network will be available ( ebs ' and hamachi ' s ) . additionally , we would look at when tom gros wanted pooling points up and running , we would then look at hamachi ' s pooling point sites and come up with requests to change dates or third party involvements . for the most part , our efforts has been to interview hamachi network developers about their plans and put the data together in a manner that we can summarize for john . additionally , we ' ve had two meetings with sycamore ( they have offices in denver ) on their products and brett gave a presentation on his effort to jim , etc . . . . more details later when we meet . ravi . stinson gibner @ ect 03 / 02 / 00 08 : 52 am to : ravi thuraisingham / enron communications @ enron communications @ enron cc : subject : network planning ravi : i was told by john bloomer that there is a group of consultants in the portland office from a company called ( i think ) m 3 i . they are doing network consumption and operations modelling . jim irvine or shawna meyer were given as enron contacts on this project . we need to find out what exactly this group is doing and see if we should get samer and either you or me to go , find out the details , and get a brain dump of what they have accomplished to see if it can be used in our modelling efforts . can you find out what jim knows about this project and get back to me ? thanks , - - stinson ps how is hamachi going , and what has been your role there ?",0 +"Subject: super saturday june 3 , 2000 gentlemen - thanks for your support of ena ' s super saturday next week . i have attached a preliminary schedule ( which will change i ' m surebut i will keep you updated ) for your review . thanks again . ted",0 +"Subject: re : thomas knudsen steve , i shall talk to anjam about it . our impression here in houston is that thomas is quite qualified and we are very interested in him . a few days will not make much difference in the hiring process . vince steven leppard 04 / 17 / 2000 03 : 50 am to : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : thomas knudsen dale , vince as you all know i have attempted to get thomas knudsen interviewed as a result of prof lane hughston ' s recommendation ( lane is an acquaintance of vince and me , and is a very senior figure in the world of quant finance ) . anjam vetoed the idea of interviewing thomas since he was "" too old and too experienced "" . since i felt that thomas has some merit , i asked houston to have an informal chat with thomas . houston wish to pursue the interview process further , and anjam has set about setting up the interviews . i ' m somewhat concerned about the way in which anjam is going about this , since it seems he ' s trying to put up barriers to these interviews . i received a concerned email from thomas knudsen this morning in which he recounts some strange conversations with anjam . he says he received a call from anjam on thursday ( 13 th april ) evening ( outside office hours ) , asking how he got his cv into enron ( i ' d shown anjam the email and cv back in early february ) , and how anjam could contact him ( despite the fact he was contacting him at that moment ) . anjam then called thomas on his work number ( bad form ) on friday 14 th asking thomas to come in for interviews on monday ( one working day ' s notice ) . thomas told anjam he was going on holiday on wednesday of this week , and that he ' d have to see if he could make time given the need to tidy up some things at work . he said he ' d contact anjam on monday ( today ) to confirm his availability . today ( 17 th april ) thomas called anjam to say he couldn ' t make it , and that he wouldn ' t be able to make it for two weeks ( not so serious , he thought , given that we ' re losing time to easter anyway ) . anjam told thomas that the position might be filled in two weeks ' time . thomas is concerned about missing the boat , and i for one didn ' t even realise it was leaving so soon ! can anyone shed any light on this ? steve",0 +"Subject: re : anshuman srivastava thanks margaret . will keep you in the loop if things change . i am attaching a job description for anshuman , as we had discussed , foir your files . regards , sandeep . margaret daffin @ ect 02 / 16 / 2001 09 : 41 am to : sandeep kohli / enron _ development @ enron _ development cc : molly magee @ ect , vince j kaminski / hou / ect @ ect , jane allen / hou / ect @ ect subject : re : anshuman srivastava sandeep : further to my voice mail to you today , i will meet with anshuman at 10 : 30 am and will keep his documents in a file . however , without some type of job offer in the us , we cannot move forward with an ll visa for him and if you believe he will not be returning to the us to work , then we really do not need to get him the ll at this time . if the circumstances change , please let me know . margaret sandeep kohli @ enron _ development 02 / 15 / 2001 02 : 05 pm to : margaret daffin @ ect cc : molly magee @ ect , anshuman srivastav / enron _ development @ enron _ development subject : anshuman srivastava margaret , please find attached the resume of anshuman , as well as the form needed for l - 1 visa , duly filled in . copies of all required material for the visa , has already been put into inter - office mail . please do call me at 713 - 857 - 6826 . i want to reschedule today ' s meeting for another time , since we are working on a deadline here . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 02 / 15 / 2001 01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli 02 / 15 / 2001 11 : 21 am to : anshuman srivastav / enron _ development @ enron _ development cc : subject :",0 +"Subject: internship opportunities please respond to dear mr . kaminski , i have found the enrononline project a very interesting one and have enjoyed working with everyone in the research department as well as those from other departments . i am keenly interested in this area and was wondering if there would be any summer internship opportunities . i have attached my resume to this mail for your review and look forward to hearing from you soon . thank you ivy ghose rice mba 2002 - resume . doc",0 +"Subject: rendez - vous reporter : tuesday 5 th september 2000 > tuesday 5 th september 2000 > > the monte carlo rendez - vous reporter from reactions , in association with > guy carpenter [ http : / / www . guycarp . com ] . simply click on the link next to > each headline to read the full story . > > top stories of the day : > > back to basics for employers re > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 675 > > deconstructing the nature of risk > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 680 > > also : > quackenbush report condemned > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 683 > fremont moves to stem loses > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 684 > independent toughs it out > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 677 > xl to grow reinsurance business > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 679 > taylor will stay in industry after leaving lloyd ' s > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 676 > st paul re restructures > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 678 > purkiss unveils alea > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 681 > wurtt uk goes digital > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 682 > unum boosts max re ' s premiums > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 685 > alexander forbes to acquire in uk > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 686 > > > > please visit http : / / www . reactionsnet . com for all the latest news from the > world ' s largest insurance and reinsurance conference . > > alternatively , you can read these stories on the official rendez - vous > website at http : / / www . rvs - monte - carlo . com > > > book of the industry : > > reinsurance > fourth edition of professor robert l carter ' s industry - standard textbook . > https : / / ecommerce . waterside . net / reactions / reins _ fourth . asp >",0 +"Subject: re : 1 . power 2000 ; 2 . my proposed 5 / 25 houston visit ehud , thanks fro your message . what about june 22 ? i have several trips in between may 25 and june 22 . vince "" ehud i . ronn "" on 05 / 16 / 2000 02 : 47 : 49 pm to : vince . j . kaminski @ enron . com cc : subject : 1 . power 2000 ; 2 . my proposed 5 / 25 houston visit vince , greetings . 1 . thanks again for hosting the dinner at power 2000 . congratulations also on a thoughtful keynote address , a copy of which i picked up on the way out of the conference . 2 . my family and i are leaving on a family trip 5 / 25 thru 6 / 4 . thus , i would like to reschedule my proposed houston visit , and presentation of the "" enterprise - wide risk management "" model to enron ' s research dept . , to the next mutually - convenient date . best , ehud ehud i . ronn department of finance college and graduate school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : many helyette , sorry for not getting back to you earlier . i took a few days off before my family goes back to california . i have arranged a replacement for you for the houston and new york risk courses . my colleagues , stinson gibner and steve leppard , gave two presentations . i shall be speaking in london on thursday only . steve leppard will make a presentation on friday in my place . i look forward to meeting you in london . i want to make sure that we can sit down for a few minutes and talk about the paris presentations . vince",0 +"Subject: re : backtesting for different percentiles vlady , i enclosed the file with 2 backtesting plots ( you saw them before ) . the following table shows what was the percentage of the days when pnl fell below var 95 , var 90 , var 85 . these results are based on the real ng forward prices from 1 / 1 / 99 to 6 / 7 / 00 for 2 different portfolios : - portfolio 1 contained the positions equal to ng - price - prc portfolio positions on 6 / 6 / 00 , - portfolio 2 consists of the positions equal to storage - prc positions on 5 / 25 / 00 . portfolio 1 var 95 var 90 var 85 implied vols 2 . 93 4 . 11 5 . 57 historical vols with decay = 1 7 . 62 12 . 02 15 . 54 historical vols withdecay = 0 . 97 6 . 75 12 . 02 15 . 54 historical vols withdecay = 0 . 94 6 . 45 12 . 02 15 . 54 portfolio 2 var 95 var 90 var 85 implied vols 4 . 1 6 . 74 9 . 97 historical vols with decay = 1 7 . 04 11 . 14 15 . 84 historical vols withdecay = 0 . 97 6 . 74 10 . 56 16 . 13 historical vols withdecay = 0 . 94 7 . 04 11 . 14 15 . 84 this shows that when we have more observations ( columns corresponding to var 90 and var 85 ) compared to the column corresponding to var 95 the frequency of curve shift being lower than var becomes closer to the theoretical value ( 5 % , 10 % and 15 % ) . the numbers in the column "" var 85 "" are very close to 15 % . this is the argument in favor of using historical vols . and also the results do not depend on the decay factor in this experiment . also notice : the numbers in column "" var 95 "" are higher than 5 % and this is an indication of fat tails . let me know if you have any questions . tanya .",0 +"Subject: ( no subject ) pierre - philippe , thanks for your message . i shall be glad to make a presentation in early november . i understand the presentation are on fridays and november the 3 rd would be the best date for me . if you prefer november the 10 th , we have to wait a few more days with the decision . we have a management conference every year in san antonio and it will be held either in the 2 nd or the 3 rd week of november . i shall know in a few days . the same goes for november 9 , assuming it was not a mistake ( it ' s thursday ) . i shall be free for dinner on the day of the conference . thanks for the invitation . vince",0 +"Subject: jaesoo lew vince : jaesoo lew has just returned my phone call . he is interested in meeting with you and your group , and would like to do so on wednesday , 10 / 25 / 2000 . he had already made travel arrangements to fly to a conference in seattle on 10 / 25 , but is willing to come here for the interviews first and then travel from houston to seattle for the seminar . he did ask if we would be willing to reimburse him for the additional cost of the ticket , and i told him i was sure that you would consider it . dr . lew asked that we schedule his flight into houston for some time after 6 : 00 pm on tuesday , 10 / 24 / 2000 . i will work on the travel arrangements tomorrow morning , and keep you advised . please call me with any questions , molly x 34804",0 +"Subject: re : research leads hello team 1 , i spoke with larry gagliardi on the crude / refinery products desk this morning and he agreed to talk with you after 12 : 30 today or after 2 : 30 any other weekday . he is very familiar with the other platforms and should be a great resource . larry suggested that you surf eol to find names of power and / or natural gas traders , and call them up . please let me know if you have difficulty finding / contacting folks this way and i will see if i can help . larry ' s office number is 713 - 853 - 0543 , and his email is larry . gagliardi @ enron . com . good luck ken",0 +"Subject: research support in london vince , steve leppard informed my today that he will be moving to enron metals . i think that leaves a leadership hole in research here . when that happens in a place like this , resources get diverted to the squeakiest wheel . do you have any advice ? i am concerned that london continues to lag behind in the implementation and analysis of var - most commodities are on spreadsheets and there is not a lot of attention on calibration , analyzing output , refining , improving etc . . pls advise ted",0 +"Subject: password login kkindal password marketcredit !",0 +"Subject: thank you for renewing your subscription to power finance & risk dear vince kaminski : thank you for renewing your subscription to power finance & risk - your exclusive source for power financing and trading news - http : / / www . iipower . com . remember , your subscription entitles you to breaking news emails , print issues and access to http : / / www . iipower . com . online , you can access breaking news and the current issue , as well as a searchable archive and special supplements . please continue to enjoy access to http : / / www . iipower . com , using the user id and password you provided : user id : vkaminski pass word : italia please note your account 00235424 - 0015 * please remember that your user name and password may be used only by you . violation of this rule will cause you to forfeit your complimentary access to the subscribers only area of the web site . why not bookmark http : / / www . iipower . com now , or make it your homepage for easy access in the future ? if you have any questions , please email us at mailto : customerservice @ iinews . com or call customer service at ( 212 ) 224 - 3800 between 8 a . m . and 6 p . m . eastern time . sincerely , nalini humphrey _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ nalini humphrey customer service ( 212 ) 224 - 3800 mailto : customerservice @ iinews . com",0 +"Subject: job well done / bob lee , kenneth parkhill - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 28 / 2001 03 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - mario de la ossa @ enron 02 / 28 / 2001 03 : 26 pm to : stinson gibner / hou / ect @ ect cc : subject : job well done / bob lee , kenneth parkhill just wanted to pass along my appreciation for the fine work these 2 gents are doing on the products model . their attention to detail and customer focus has greatly facilitated the performance of my job . thanks , mario .",0 +"Subject: executive solicitation - united way 2000  & who wants to help millions ?  8 is our theme for enron  , s 2000 houston united way campaign , which officially kicks off on august 9 , 2000 . last year , enron achieved a 17 percent increase overour 1998 campaign . this success would not have been possible without the support of all levels of management . enron  , s executive solicitation begins today , and we are counting on your leadership and strong support this year . your generous contribution will enable united way agencies in our community to continue providing quality programs and services . our goal this year is $ 2 , 310 , 000  ) a challenging goal , but we believe it is achievable with your help . including the dollar for dollar corporate match , enron  , s total pledge to united way in 2000 will be more than $ 4 . 5 million . to get there , we invite you to  & help millions  8 by making your pledge in one of the following way : ? alexis de tocqueville society ( gifts of $ 10 , 000 or more )  ) every member of enron  , s executive committee is a member of this elite group . last year , enron was houston  , s leader with 39 members and ranked in the top 25 nationally . members are recognized at a dinner hosted by the united way . ? chairman  , s club  ) the giving levels in this united way group are : ? diamond  ) $ 7 , 500 - $ 9 , 999 ? platinum  ) $ 5 , 000 - $ 7 , 499 ? gold  ) $ 2 , 500 - $ 4 , 999 ? silver  ) $ 1 , 500 - $ 2 , 499 ? bronze  ) $ 1 , 000 - $ 1 , 499 by pledging 1 . 2 percent or more of your annual base salary of $ 90 , 000 or more , you also will qualify as a member of enron  , s  & make a difference club .  8 an exciting edition to our campaign this year is that we have implemented an electronic pledging system . please click on the united way link , http : / / unitedway . enron . com to learn more about this year  , s campaign and make your contribution . you will find that it is a very easy process and only takes a few moments to complete . please make your electronic pledge no later than monday , august 7 . if you have any questions at all regarding the campaign or the new e - pledging , please contact kathy mayfield , campaign coordinator at 713 - 853 - 3264 . last year , enron  , s executive team pledged a total of $ 2 . 9 million , including the corporate match , which accounted for approximately 66 percent of the total enron dollars pledged . enron also ranked among the highest in per capita giving for large companies for the 10 th straight year . this is a tremendous achievement , and you played a significant role in making it a reality . let  , s continue the momentum in 2000 . together we will make a positive difference in the lives of many people in need in our community as we all join in  & who wants to help millions ?  8 .",0 +"Subject: contact information dear mr . kaminski , i sent my resume to your well respected company a few weeks ago in regards to establishing a long - lasting career with them . i never received a response and was wondering if you knew who was in charge of the electric power disbatching / scheduling department or know of who i may contact to inquire this information ? i know you are a very busy professional and i apologize for the inconvenience . thank you for your valuable time . warmest regards , eric hilton",0 +"Subject: re : india model vince , i forwarded this to sandeep so he could reply . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 12 / 28 / 2000 03 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" robert schenck "" on 12 / 27 / 2000 11 : 21 : 18 pm to : cc : subject : re : india model stinson , i am trying to contact our data base experts at the moment to clarify some issues with the region and may need another day to get something more concrete in front of you . what i would like to know is the extent of your company knowledge re the following generation units ' nameplate capacity , fuel type , efficiency , o vince . j . kaminski @ enron . com > subject : india model > > > robert , > > enron would like to do a study of power prices and dispatch for > india we > have spoken with david branchcomb to see if henwood can help with this > project in our time frame ( results needed by end of january ) , and he > suggested that we speak directly with you about the project . > > i will try and give you a call later today ( wednesday afternoon > in houston , > thurday morning , adelaide ) at around 9 : 00 a . m . your time to see we can > describe for you the project in more detail . > > regards , > > stinson gibner > enron research group > ( 713 ) 853 - 4748 >",0 +"Subject: brad romine celeste , i was under the impression i sent you a message regarding brad romine but i cannot find a copy in my msg folder . there might have been a glitch in the cc - mail and the message did not go through and wasn ' t stored . i wanted to make the following points : 1 . brad will not show up on march 15 . he is still working on his dot - com business and wants to pursue this opportunity . 2 . my recommendation is that we should draw a line in the sand . either brad or a stipend refund check should show up on march 15 . 3 . i told brad that a failure to show up on march 15 will not imperil his future employment opportunities with enron . we just need clarity and ability to plan our human resource needs . if he decides to re - apply at some point in the future , we shall not hold his decision to pursue him entrepreneurial plans against him . please , let me know what you think . vince",0 +"Subject: your confirmation is needed please respond to energy news live daily update confirmation from lyris listmanager please reply to this email message to confirm your subscription to enl - dailyupdate - txt . your email address has been entered for a subscription to the enl - dailyupdate - txt mailing list . however , your new subscription requires a confirmation that you received this email message and want to join this mailing list . if you do not want to join , do nothing . you will be automatically removed . to confirm that you do want to join , simply reply to this message . make sure that your message is addressed to to unsubscribe immediately , you send an email message to ",0 +"Subject: maureen raymond has completed derivatives i - applied energy derivatives thank you for supporting maureen raymond in attending derivatives i - applied energy derivatives on august 8 - 9 , 2000 . $ 800 has been charged to your company and rc . if you have any questions , please call the development center team at 713 - 853 - 0357 .",0 +"Subject: entouch newsletter business highlights enron freight markets enron freight markets ( efm ) launched its over - the - road trucking business this week . in addition , efm completed 199 intermodal transactions in the first week of april . ena west power ena west power recently closed the sale of two power projects . the 750 mw pastoria energy facility in kern county , california was sold to calpine and the 240 mw fountain valley power project in colorado was sold to black hills energy capital . given the power shortage in the west , ena is developing additional power generation in nevada , california and washington . enron industrial markets the newsprint group of eim is working to revolutionize the newsprint market and bring financial rigor and market efficiencies to a business that has remained relatively unchanged for more than a century . the global newsprint market is a 23 billion dollar a year business with the north american market comprising one third . the group ' s originators , mid - marketers , and financial and physical traders offer our customers numerous financial and physical products not previously available in the market . eim has made a substantial commitment to this business with the purchase of garden state paper company last year and the recent purchase of daishowa paper in quebec city . the number of transactions has grown exponentially with the physical trading alone reaching a nominal trading volume of more than $ 10 , 000 , 000 per month in little more than four months since opening . in addition to physical spot transactions , the desk offers our counterparties log - term fixed priced transactions , indexed based pricing , forward contracts , swaps , and derivative products . forest products forestweb inc . , an internet - based generator , aggregator and integrator of knowledge and information for the forest products industry , announced a new window to industry financial and risk management tools available from clickpaper . com . clickpaper allows the industry direct access to transactable prices for both physical and financial products , in an electronic format . paperloop . com , one of the leading online resources for the forest products industry , announced the addition of clickpaper . com in their emarketplace , which showcases various e - commerce companies and highlights their services . paperloop provides clickpaper . com exposure to its 250 , 000 + monthly users in the pulp , paper and converting industries . in the news ken lay was the cover story for the april 2001 issue of continental magazine . he had positive things to say about his employees . "" sitting in his 50 th floor mahogany - paneled office overlooking his much - beloved downtown houston , lay , with a self - conscious smile , bows his head slightly as he ' s described as an innovative market maker . ' i really can ' t take any credit , he says . my employees are responsible for what enron does . ' what he does best , the missouri - born corporate icon says , is ' to create an atmosphere of empowerment and creativity and hire bright , innovative people who aren ' t afraid to take risks and try new things . "" welcome new hires eim - craig rickard , lisa mcclendon ena - ben brasseaux , stephen swisher , tamera joyner , vanessa griffin , kathleen ashton weekly enrononline statistics below are the latest figures for enrononline as of april 6 , 2001 . * total life to date transactions > 845 , 000 * life to date notional value of transactions > $ 500 billion nuggets & notes mark your lunch calendars now ! the next ews brown bag is thursday , april 19 at 11 : 30 am . tim battaglia vp / eim will be discussing steel origination . congratulations to peter del vecchio , eim senior counsel , and his wife , nair . they are the proud parents of dante valentin del vecchio , born april 3 , weighing 4 pounds , 8 ounces . news from the global flash enron poland obtains gas trading license on 22 nd march 2001 enron poland received a 10 - year gas trading license , valid for both domestic gas trading within poland as well as for gas exports . the license is a key component to our entering the gas trading market in poland and , coupled with the power trading license we obtained in 1999 , will give enron poland a strong position in the developing wholesale energy market . in the next two to three weeks , we expect to receive a cross - border trading license covering gas imports that are further regulated under the polish energy law ordinance on gas import diversification . enron wind announces first uk off - shore wind farm on 5 th april 2001 , enron wind announced that it had been granted the right to initiate the planning process for its first uk offshore wind farm , located at gunfleet sands , 7 km from clacton - upon - sea in essex . construction is expected to start towards the end of 2002 , with the wind farm of 30 turbines being operational by q 4 2003 . enron wind is also actively involved in a number of on - shore projects in the uk , including the development of wind farms in wales and northern ireland . legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: [ amy @ sdsc . edu : re : caida ' metrics ' wg meeting , 2 mar 00 ( fwd ) ] vince , stinson , looks like just me and jim irvine attending this one may suffice since this is a working group meeting . as the note describes below , there will be a separate trip for you guys and me to determine long - term involvement , etc . . . let me now when to schedule . vince and stinson may want to wait until kc claffy or i can visit portland , or have several enron reps visit san diego for demos and related discussions . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 29 / 00 01 : 28 pm - - - - - tmonk @ caida . org 02 / 29 / 00 09 : 18 am to : ravi thuraisingham / enron communications @ enron communications cc : amy @ caida . org , tmonk @ caida . org subject : [ amy @ sdsc . edu : re : caida ' metrics ' wg meeting , 2 mar 00 ( fwd ) ] ravi , hi , amy forwarded me your note . since thursday is the kick off discussions for the new working group , it might not be the ideal venue for enron to get acquainted with caida . vince and stinson may want to wait until kc claffy or i can visit portland , or have several enron reps visit san diego for demos and related discussions . we have been talking to stan hanks for some time about enron ' s interests in passive measurement and are in the process of implementing some of the performance features in coralreef that he has described as relevant to enron . examples of existing coralreef analyses on oc 3 / 12 links can be found at : ( real - time ) https : / / anala . caida . org / aix / ( post - processed traces ) we are also working to better tune the skitter tool for reachability analysis and for use by providers , an example of some existing analyses can be found at for end - to - end measurements , including those relating to service level guarantees , we are working to make skping and sktrace more useful to providers and their noc personnel , see another tool of relevance to providers is our cflowd which analyzes flow export data from cisco routers , see http : / / www . caida . org / tools / cflowd / . we would appreciate the opportunity to talk with enron personnel about how to make these tools more relevant and useful to your needs , however , it is doubtful that we will have time to discuss specific tools on thursday . we look forward to meeting you soon ! take care , tracie monk director , caida 858 / 822 - 0943 - - - - - - - - - - forwarded message - - - - - - - - - - to : amy @ sdsc . edu cc : christine _ blair @ enron . net , kristy _ carnes @ enron . net date : thu , 24 feb 2000 19 : 52 : 00 - 0600 subject : re : caida ' metrics ' wg meeting , 2 mar 00 ( fwd ) hi amy , jim irvine ( ebs head of network planning ) and i ( team lead , ebs research ) will attend the meeting . we will have our assistances ( christine blair & kristy carnes , respectively ) arrange the trip . we will plan to come in the night before and return on march 2 , 00 . also , either vince kaminski ( md and head of enron research ) or stinson gibner ( vp , enron research ) may also attend . they will let me know shortly if they plan to attend . regards , ravi . p . s . our company name has been changed to enron broadband services kristy , christine please make the appropriate travel arrangements . the place , time , etc . are listed . | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | amy @ sdsc . edu | | | | | | 02 / 24 / 00 | | | 07 : 07 pm | | | | | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | | to : ravi thuraisingham / enron communications @ enron communications | | cc : | | subject : caida ' metrics ' wg meeting , 2 mar 00 ( fwd ) | hi ravi , i wanted to follow up directly with you and see if you or anyone at enron had any interest in participating in the proposed caida "" metrics "" working group meeting ? please let me know . amy e . blanchard caida % % % % % % % % % % % % % e - mail : amy @ caida . org phone : ( 858 ) 534 - 8338 fax : ( 858 ) 534 - 5117 b . wg charters , meeting on 2 mar 00 i believe that we should instead run a single caida working group on ' network metrics , ' rather than the two proposed earlier . my draft of its charter is appended below . it focuses on producing educational material about network measurement , and on developing new metrics - these were the two areas of greatest interest amongst the caida members . the wg co - chairs are sue moon ( sprintlabs ) and brett watson ( mfn / abovenet ) you are invited to attend the first wg meeting . the agenda is as follows . . agenda for caida wg meeting on : thursday 2 mar 00 - - - - - - - - - - - - - - - - - 10 am - 4 pm , abovenet , downtown sjc ( see below for details ) - - - - - - - - - - - - - - - - - - - - - - - - 1 . review wg charter - is it reasonable as set out in the draft ? - what should be removed or added ? 2 . work through revised charter in detail - identify the work required for each part - determine who ' s willing to work on it - attempt to determine delivery times 3 . discussion of new metrics - first attempt at making a list of metrics to be considered 4 . anything else ? location : abovenet is located in the knight - ridder building , attached to the fairmont hotel complex . the address is 50 w . san fernando st . san jose , ca 95113 rsvp : to help us with organising the meeting , please send email to nevil @ caida . org telling us how many will attend from your organisation . cheers , nevil nevil brownlee visiting researcher phone : ( 619 ) 822 0893 caida , san diego caida network metrics working group : draft charter , tue 23 feb 00 goals : 1 education + faq on what does ' measuring the internet actually mean ? ' - why measure anyway ? - what can be measured ? how ? where ? by whom ? - active vs passive , end - to - end vs provider network only , application vs transport layer - rating schemes : provider ' net performance ' pages , internet ' weather map ' s , keynote , etc . publish as caida web pages , or maybe as an info rfc + survey paper on metrics and internet measurement - current measurement efforts ( surveyor , ripe test traffic , amp , iperf , at & t , keynote , skitter , . . . ) - current tools publish as caida web pages 2 service metrics + define new metrics - taxonomy of current metrics ( ippm , rtfm , itu , . . ) - summary of metrics used for current services - gather information / ideas about new / emerging services , especially diffserv - based ones - make list of new metrics , either to improve measurement of existing services or to support new ones [ list of ' metrics ' questions ( appendix a ) goes here ] + organise experimental implementation / testing of tools for new metrics + make recommendations on implementation - define core set of ' really useful ' metrics - recommend that caida implement these as a ' service measurement toolkit ' + publish new metric definitions through ippm or rtfm + produce document "" measurement requirements for hardware / software vendors . "" publish on caida web pages appendix a : questions from the earlier draft caida wg charters a . what types of network - and transport - layer metrics are being used by isps in engineering and operating their networks ? by customers for verifying service guarantees ? b . what new services are being ( or are likely to be ) offered , e . g . diffserv ? is there a need for higher - layer metrics to better monitor and manage these services ? c . will these new differentiated transport - and application - layer services need new metrics ? d . how can the service metrics be measured in a multi - isp environment ? e . how can customers verify these measurements ? f . what requirements would service measurement introduce for equipment vendors ? g . how relevant are specific techniques ( e . g . which flow ) and points of measurement to specific users ( isp , customer , etc . ) requirements ? h . how do these metrics relate to network behavior as perceived by users ? how do they correlate with performance ? appendix b : background on the ietf working groups * rtfm wg : realtime traffic flow measurement rtfm is concerned with passive measurements of two - way traffic flows , specified in terms of their end - point attributes . its primary goal was to produce an improved traffic flow measurement model considering at least the following needs : a . wider range of measurable quantities , e . g . those relating to ipv 6 , and to class of service b . simpler ways to specify flows of interest c . better ways to control access to measured flow data d . strong focus on data reduction capabilities e . efficient hardware implementation * ippm wg : ip performance measurement the ippm wg charter is to develop a set of standard metrics that can be applied to the quality , performance , and reliability of internet data delivery services . these metrics will be designed such that they can be performed by network operators , end users , or independent testing groups . it is important that the metrics not represent a value judgement ( i . e . define "" good "" and "" bad "" ) , but rather provide unbiased quantitative measures of performance . rfcs framework for ip performance metrics ( rfc 2330 ) metrics : connectivity ( rfc 2678 ) , one - way delay ( rfc 2679 ) , one - way packet loss ( rfc 2680 ) round - trip delay ( rfc 2681 ) i - ds bulk transfer capacity ( 2 x ) instantaneous packet delay variation one - way loss patterns * other wgs the rmonmib wg is thinking about ' application performance measurement . ' this is clearly a hard problem ( e . g . does this just mean response - time measurement , can it be done by passive means , how should the measurements be presented , etc . ) . in short - rtfm provides a good distributed measuring system for traffic volumes - ippm has concentrated on transport - layer behaviour of the current , best - effort internet . - rmonmib is beginning to consider application - layer measurement - - - - - end of forwarded message - - - - -",0 +"Subject: re : 1 . your thur . / fri . austin trip ; 2 . presentation of my risk - management optimization model ; 3 . enron on - line vince , > i shall definitely attend you presentation at power 2000 . thanks , i appreciate it . > i shall ask about a guest accounton eol . typically , such an account allows > an outside user to take a look at the system , but i don ' t think the traders > will allow > systematic access to the price data over a long period of time by a third > party . i quite understand , and will appreciate the ability to use the system while the permission is applicable . > would you like to meet with me , alex , helyette for dinner tuesday ? i would be delighted to join you , alex and helyette for dinner tue . when that info is available , please advise when and where . look forward to seeing you tue . best , ehud ehud i . ronn department of finance college and graduate school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: do vidzenija ! vince , today is the last day of my internship here this summer . i have had a terrific summer . thank you so much for all of your support ! i have talked with my supervisor from this group and i am pleased that he feels strongly and positively about my performance . of course , my job decision is a very important one for me and as i consider job offers in the upcoming months , a variety of factors will be influencing my choice . certainly one of them will be the positive experiece i have had with enron . but regardless of my decision in future , i am so glad that i have had the opportunity to glimpse into enron ' s business and culture . i have met some amazing people here , and my experience with enron is something i will always take with me whereever i go . i hope to hear from you again . please feel free to contact me at any time . my email remains : vngo @ rice . edu and i will leave shirley my phone number as soon as i know it ! deepest regards , van",0 +"Subject: interview schedule for sanjeev khanna hello all : sanjeev khanna spoke with vince at the "" power 2000 "" conference and vince has invited him to come in for an informal interview . he will be in the office friday afternoon , may 12 th . with the exception of vince , each of you might spend at least 15 min with the individual . all interviews will be in ebl 938 the schedule is below and his resume is attached . vince 1 : 00 pm ( 5 min ) vasant 1 : 15 pm amitava 1 : 30 pm stinson 1 : 45 pm tanya 2 : 00 pm zimin 2 : 15 pm paulo 2 : 30 pm krishna 2 : 45 pm grant 3 : 00 pm pg & e energy trading and any other company referenced herein which uses the pg & e name or logo are not the same company as pacific gas and electric company , the california utility . these companies are not regulated by the california public utilities commission , and customers do not have to buy products from these companies in order to continue to receive quality regulated services from the utility . - . doc",0 +"Subject: re : martin lin support for jim hi stinson , i have sent an e - mail to martin to give him heads up on what to expect in terms of transition . i have talked to jim about this and we are in agreement on the following schedule for martin . first two week martin will just read up stuff and get up to speed . i have suggested some reading material . if you guys can do the same . i ' ll set up a meeting for all of us with jim . jim and i will draft a game plan document to outline major areas of work that we need to support from the traffic engineering perpective ( this will involve our or guys , stinson and i ) . martin will be on jim ' s team supporting general network planning ( through this work i am doing right now for project hamachi , i will support jim on other similar initiatives ) projects . martin will work with jim and me on this . stinson , i will e - mail a draft of our game plan once i have something on paper . after that we can distribute the document to tom gros / jean mrha ( trading ) and ted seitz for information . ravi . stinson gibner @ ect 02 / 29 / 00 01 : 57 pm to : ravi thuraisingham / enron communications @ enron communications @ enron cc : subject : martin lin support for jim ravi : since you are spending time with jim irvine , can you find out what martin lin needs to do to start coming up to speed in supporting jim ? martin is ready to transition , but needs to find out what he will be working on . will jim be in houston anytime soon or should martin go to portland to talk to him , etc . . . - - stinson",0 +"Subject: interview with ruewan jayasuriya good morning ruwan : the enron corp . research group would very much like to interview you on friday , april 28 . the following schedule has been set up . please let me know if it is not convenient for you . friday , april 28 th : 1 : 00 pm vasant shanbhogue 1 : 30 pm vince kaminski 2 : 00 pm stinson gibner 2 : 30 pm krishna krishnarao 3 : 00 pm zimin lu 3 : 30 pm tanya tamarchenko all interviews will be conducted in conference room eb 1938 . please come to the reception desk in the lobby of the enron bldg . and ask for me . they will call me and i will meet you in the 19 th floor elevator lobby . if you have any questions , please do not hesitate to call me . sincerely , shirley crenshaw administrative coordinator enron corp . research 713 / 853 - 5290 email : shirley . crenshaw @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2000 09 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 19 / 2000 08 : 56 am to : shirley crenshaw / hou / ect @ ect cc : pushkar shahi / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect subject : ruewan ' s resume shirley , please set up an informal interview : vk vs sg kp zl tt vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 19 / 2000 08 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - - pushkar shahi 04 / 18 / 2000 04 : 52 pm to : vince j kaminski / hou / ect @ ect cc : subject : ruewan ' s resume vince : as discussed , i am forwarding ruwan ' s resume to you . ruwan is very excited about meeting with you and elaborating on his qualifications . please let me know a convenient time for next friday ( 4 / 28 / 00 ) when he could visit with you ( or any other day next week at your convenience ) . i have briefly explained to him the nature of the job at enron research laying special stress on quantitative , programming and modelling experience . ruwans seems very interested in that kind of work . sincerely , pushkar shahi financial trading",0 +"Subject: british pound analysis vince , the attached report on the pound incorporates some minor edits from your version . we will be inserting graphics into the report tomorrow to show interest rate differentials , exchange rate movements , and growth rate differentials . maureen",0 +"Subject: pricing default and our may 22 conference call julia , i am sending you a copy of the nondisclosure agreement i received from a professor at ut austin . three ut academics developed a model that may be useful in our pricing applications . they envisage the possibility of either selling this model to enron or of joint research effort in this area . can you , please , take a look at the attached legal document . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 22 / 2000 08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sheridan titman on 05 / 17 / 2000 08 : 56 : 42 am to : sheridan titman , "" ' vince . j . kaminski @ enron . com ' "" cc : "" ' vkaminski @ aol . com ' "" , "" ' shirley crenshaw ' "" subject : pricing default and our may 22 conference call > dear vince : i spoke with ms crenshaw yesterday afternoon about a conference call about developing internet course material . if you have already discussed this with your colleagues , it might be helpful if you could very briefly outline the questions and issues they might raise in the conference call so that i can be a bit better prepared . ms crenshaw also mentioned that you never received my earlier email regarding the credit spread model i developed with stathis and sergey . my earlier email follows , and the nondisclosure agreement is attached . i look forward to talking with you next week . regards , sheridan sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu > - - - - - original message - - - - - > from : sheridan titman > sent : friday , may 05 , 2000 12 : 48 pm > to : ' vince . j . kaminski @ enron . com ' > cc : stathis tompaidis > subject : pricing default > > > dear vince : > > i really enjoyed meeting with you yesterday and learned a lot from our > discussions . > > the ut office of technology licensing and intellectual property has given > us the attached form which they would like you to sign before we send you > a copy of our paper on pricing default . please let me know if this is > agreeable to you . > > i hope we have the opportunity to work with you in the future , either on > the debt pricing models or on the other issues we discussed . > > i look forward to hearing from you . > > regards , > > sheridan > > > > sheridan titman > department of finance > college of business administration > university of texas > austin , texas 78712 - 1179 > > 512 - 232 - 2787 ( phone ) > 512 - 471 - 5073 ( fax ) > > titman @ mail . utexas . edu > - nondisclosure agreement . doc",0 +"Subject: request submitted : access request for praveen . mellacheruvu @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000012987 approver : stinson . gibner @ enron . com request create date : 1 / 9 / 01 3 : 03 : 48 pm requested for : praveen . mellacheruvu @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: re : insead high - tech acquisitions workshop ben thanks for attending . i was on "" vacation "" last week ( driving from ca to houston ) and could not answer your first message regardoing insead conference in time . the objective was to find out more about the he workshop on high - tech acquisitions and evaluate the usefulness of the program for enron . i shall be making a recommendation to jeff skilling that we should work with wharton as a partner in a number of different research projects . i shall try to catch you next week to find out what was said about valuation of small high - tech firms . vince benjamin parsons 06 / 12 / 2000 05 : 50 am to : vince j kaminski / hou / ect @ ect cc : bryan seyfried / lon / ect @ ect subject : insead high - tech acquisitions workshop vince i attended the workshop on high - tech acquisitions at insead on saturday alongside participants from cisco , eads , razorfish and cable + wireless , and academics from insead and wharton . the basic premise was to discuss and get feedback from practitioners about the research project , and a phd study which is currently underway at wharton . the discussions were very interesting - especially as this was my first exposure to this area . examples of the discussions raised include why firms acquire new businesses instead of developing them in - house what degree of post - acquisition integration was optimal difficulties of us firms acquiring euro / asian high - tech companies how to value small high - tech firms how to quantify the success / failure of an acquisition my feeling is that further work with them in this area would be beneficial to enron because it would help the development of the academic research and give us first - hand access to the results . plus it would enable us to learn from the mistakes of others , through meeting practitioners at such workshops and having greater access to the case studies . i guess it could also aid our realignment within the high - tech / communication industry to be seen in such studies . regards ben",0 +"Subject: re : grant / anjam per a converstion with vince kaminski , anjam provided his resignation this past wednesday . therefore , we are on longer requesting activity on anjam . thank you for your follow up and assistance with anjam . norma villarreal sr . hr represenative 713 / 853 - 1845 tara rozen 10 / 09 / 2000 11 : 42 am to : norma villarreal / hou / ect @ ect cc : melanie doyle / lon / ect @ ect subject : grant / anjam hi , norma what happened to grant ? did he leave enron for a competetor ? i assume vince is still interested in anjam even though anjam still hasn ' t agreed the offer . please confirm as i presume anjam is waiting until the last possible minute to accept . thanks tara",0 +"Subject: re : prc meeting date anne , thanks . shirley is checking my calendar and will call you about the schedule . the entire week of the 11 th does not look good for me . vince from : anne labbe / enron @ enronxgate on 04 / 30 / 2001 11 : 17 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / houston / eott @ eott subject : prc meeting date vince , just wanted to check with you to see if you have a preference as to when you would like to have your mid - year prc meeting . if you and your team are available , i would prefer to have it on either june 12 th , 13 th or 14 th . i am very flexible though , so please just let me know so that i can start making the necessary accommodations . thanks , anne",0 +"Subject: re : iris mack let me see what we can work out , vince , and we ' ll get back to you . molly vince j kaminski 12 / 18 / 2000 01 : 46 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : iris mack molly , this is the list of people we can ask to interview iris . i would include one ( or possibly more ) people from each group below , depending on availability . 1 . debbie brackett or bill bradford 2 . ted murphy , bjorn hagelman or david port 3 . mark tawney or joe hrgovcic 4 . greg whalley or louise kitchen i shall send a message to them explaining that we try to identify the best fit for a good candidate . vince enron north america corp . from : molly magee 12 / 18 / 2000 11 : 57 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : iris mack iris would like to come on thursday , 12 / 28 / 2000 , to visit with you and your group . she will be in new orleans , and will just fly in for the day . molly",0 +"Subject: re : credit . com cv ' s my feedback : philip has an excellent cv and background - - - phd coursework at university of chicago , and work experience at long term capital ( hopefully he learned something ) . his views are somewhat idealistic - - - his aim is to make bid - offers in any product , and he could not really address how he would handle illiquidity . nevertheless , if bryan needs traders , he can fit the role . zak seemed somewhat unfocused . he has worked on a variety of projects , but does not have any specific view in mind as to what he would like to do . he seemed very academically oriented , and might be hard to communicate and work with . i do not see him working in the trenches , and i do not see him leading the group either . he would be a good person to brainstorm ideas with . vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 05 / 22 / 2000 08 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 05 / 20 / 2000 09 : 35 am to : vince j kaminski / hou / ect @ ect cc : vasant shanbhogue / hou / ect @ ect subject : re : credit . com cv ' s could we talk on monday pls . obtain the feedback of your team . thanks for the assistance vince j kaminski 08 / 05 / 2000 22 : 46 to : rosalinda resendez / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , bryan seyfried / lon / ect @ ect subject : re : credit . com cv ' s rosie , we are making arrangements to bring them to houston for an interview . vince rosalinda resendez 05 / 08 / 2000 11 : 10 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : credit . com cv ' s vince , i ' ve been asked to forward these resumes to you . rosie - - - - - - - - - - - - - - - - - - - - - - forwarded by rosalinda resendez / hou / ect on 05 / 08 / 2000 11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - louise bratby 05 / 08 / 2000 10 : 11 am to : rosalinda resendez / hou / ect @ ect cc : subject : credit . com cv ' s rosalinda i work with melanie doyle in london hr . i have two candidates who i ' m trying to arrange ( for bryan seyfried ) to come in and see vince kaminski however i ' m finding it difficult to co - ordinate from this end . would it be possible for you to forward these cv ' s on to vince ' s assistant as i ' m not sure who the correct person is . thanks for your help and if you need more details my number is 44 20 7783 6945 . regards louise",0 +"Subject: 2001 research support for ebs barry , thanks for the timely email . i have your name on my list of people to contact this week as kevin hannon had mentioned to me just yesterday that our group might be able to help you in translating positions for the new risk system for ebs . you are right that i haven ' t been spending much time on 44 . martin lin has been taking the lead in day to day management of most of the current projects that we are supporting . we have been somewhat short handed since samer takriti left the group last fall and we were out - bid by mckinsey for cantekin dincerler who had helped us with ebs projects as an intern over the summer . however , we do have additional help coming . iris mack , a very bright new hire who comes with significant consulting and risk management experience , will be starting with the group next week . i am hoping that , together with martin , she will allow us to significantly increase the research group presence on 44 and address areas which are currently undersupported . can i get on your schedule some time next week in order to map out the areas where we could best contribute to the risk management projects and to introduce iris and martin to you ? almost any time would be fine , or you can have your assistant coordinate with shirley crenshaw x 35290 . regards , stinson x 34748",0 +"Subject: mit phone interview - zachary inman jim coffey , vince kaminski , mark palmer and james scribner , thank you all for taking time out of your busy schedules to conduct the following interviews . included is the itinerary for each of your phone interviews with zachary inman from mit . you may reach zach at 617 - 577 - 1565 . vince kaminski - please call zach at 7 : 30 am . this will be 8 : 30 am zach ' s time . mark palmer - please call zach at 10 : 30 am . this will be 11 : 30 am zach ' s time james scribner - please call zach at 11 : 30 am . this will be 12 : 30 pm zach ' s time . jim coffey - please call zach at 1 : 30 pm . this will be 2 : 30 pm zach ' s time . the four phone interviews will determine if we are going to invite zach to our december 8 th and 9 th analyst super saturday . i will send you a packet with all the pertinent details that you will need to conduct the 30 - minute phone interview . the packet will contain his resume and an evaluation form , which structures the format of your interview . if you have any questions please feel free to give me a call . please interoffice the evaluation form , once you have completed the interview , to ebl 167 . it is important that i receive this evaluation promptly . if there are any changes , due to the unforeseen , i will call you prior to the scheduled interviews . thanks so much for your help ! beth miertschin recruiter ext . 30322 shawna johnson recruiting coordinator ext . 58369",0 +"Subject: re : grades pam , another group : stuart hamel jed howard brian nelson b + vince pamela vande krol castro on 05 / 03 / 2001 08 : 58 : 24 am to : vince . j . kaminski @ enron . com cc : subject : re : grades got them - thank you ! - pvc at 05 : 21 pm 5 / 2 / 01 - 0500 , you wrote : > pam , > > another team : > > elena chilkina > robert j . guadette > joseph helms > kenneth jett > todd litton > mark westmoreland > > > grade : a - > > > vince kaminski",0 +"Subject: re : yaron ' s resume alison , thanks a lot . vince enron north america corp . from : mary alison bailey 10 / 25 / 2000 10 : 47 am to : vince j kaminski / hou / ect @ ect cc : subject : re : yaron ' s resume i promise we will do everything we can . right now kristin ' s assistant , alyse herasimchuk , has a call the cornell career office to put him on the schedule . if that doesn ' t work , kristin will ask for the interviewers to stay longer to interview him . will let you know as soon as we do . thanks for everything you do for us . alison vince j kaminski 10 / 25 / 2000 10 : 02 am to : mary alison bailey / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : yaron ' s resume alison , i appreciate it . i really need your help on this one . his father is very helpful in my recruiting efforts at berkeley . vince enron north america corp . from : mary alison bailey 10 / 25 / 2000 09 : 38 am to : vince j kaminski / hou / ect @ ect cc : subject : re : yaron ' s resume correction - i was going too fast last night ( you said cornell not carneige mellon ) . cornell interviews are monday , october 30 & tuesday , october 31 . we are faxing shmuel oren ' s resume to kristin and checking to see if there is any time on the closed schedule , or if the interviewers will stay longer to include him . i will let you know today if we can make it work . sorry my first e - mail was incorrect . vince j kaminski 10 / 24 / 2000 04 : 37 pm to : charlene jackson / corp / enron @ enron cc : mary alison bailey / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : yaron ' s resume charlene , please , help . this is a son of a professor at berkeley who helps me a lot in the recruiting process . his son goes to cornell . can we invite him ( the son , not the professor ) to a super saturday ? i really want to repay the debt to his father who is very instrumental in my recruiting efforts . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000 04 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" shmuel oren "" on 10 / 23 / 2000 04 : 37 : 25 pm to : cc : subject : yaron ' s resume ? - yaron - resume 3 . doc",0 +"Subject: re : message from bogdan thanks vince . we ' ll talk to him this week . - - dan vince j kaminski 02 / 02 / 2001 05 : 03 pm to : daniel reck / hou / ect @ ect cc : subject : message from bogdan dan , i am sending you a resume of one of my compatriots who lives in houston . i met him socially a few times . he graduated from the same university i did . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001 05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - awenda 2000 @ cs . com on 02 / 01 / 2001 09 : 57 : 42 am to : vince . j . kaminski @ enron . com cc : subject : message from bogdan hi vince , i am enclosing my resume , as per our most recent conversation . best regards , bogdan m . szopa - bogdan res . . doc",0 +"Subject: iafe update dear iafe member : i would like to take this opportunity to wish you a happy new year . 2001 marks the 10 anniversary of the iafe and we will be celebrating with a winter gala at the yale club ballroom on february 8 th . the black tie event will begin with cocktails at 6 : 00 and a sit down dinner at 7 : 30 . there will be dancing and festivities including war stories by iafe senior fellows , a silent auction , and a financial engineering retrospective , to name a few . a special award will be presented to myron scholes for his work on the black - scholes model . for more information and to register for the event please go to . we are pleased to report that we had a very exciting and productive year with dozens of activities around the world . as we enter our 10 th year of operations , the iafe has additional membership options available to you . please take a moment to renew your membership , if you have not done so : . based on member requests , a premium membership is now being offered that includes the annual conference at a 30 % discount , the financial engineer of the year dinner , plus a subscription to the journal of derivatives ( jod ) . the full membership remains as in previous years . the new regular membership includes all full membership benefits except jod . membership is based on the calendar year january 1 - december 31 , 2001 . our website was recently updated , when you get a moment , please visit our web site . make sure to check the calendar for upcoming events regularly since we add to it frequently . > i hope to see you at an iafe event in 2001 . donna jacobus iafe office manager main @ iafe . org",0 +"Subject: gpcm summary 1999 this has been a great year for rbac and gpcm . during the year we have doubled to 10 the number of gpcm licensees . this means we ' ve also doubled the number of wonderful people we ' ve trained and are supporting . and , i sincerely mean it when i say it has been a real pleasure working with you all . one of the things we stress when we are selling gpcm is that it takes a strong commitment on the part of the licensee , a commitment to find skilled and dedicated people to make optimal use of this sophisticated tool . and , i ' m happy to report that we have that quality in the gpcm teams we work with . next year we have some big challenges . we will be converting the system from office 97 to office 2000 and will also need to make sure it will run in the windows 2000 environment . we will be adding new flexibility in defining our transportation zone price curves to enable users , especially pipeline users , to test variations of pricing strategies for their impacts on basis and utilization . we will be adding a capability for modeling future ft contracting . we will upgrade our existing database comparison program to allow you to select those items you want to have automatically updated in your own databases . we will continue to work with rdi to improve pipeline and storage infrastructure representations , to provide interfaces between gasdat and gpcm , and to give you regular optional updates for your own databases . we are beginning to plan out a new website dedicated to gpcm licensees ( and possibly prospects ) . we have acquired gpcm . rbac . com and gpcm . net for this purpose . in making these various changes , we look also to you , our existing licensees , for enhancement and improvement ideas . we are planning to conduct interviews of our licensees during the next 30 - 60 days to find out what you like , but also what you would like to see improved , as well as some new ideas for gpcm . i would like to thank the following people for their contributions to gpcm during 1999 . o liam leahy for his excellent marketing , sales , and planning support o charles carr for his quality work on our website and support with subtle visual basic programming issues o richard berman for thorough research on design tools and skilled windows programming o richard mcbride for continuing support and development of his emnet optimization program o aaron and james brooks for design and production of the powerpoint pipeline maps now available in gpcm o mike farina and rdi for their continuing improvement of the gpcm data and gasdat database o gpcm users who have found data bugs and reported them to use so that we could get them corrected o gpcm users who have suggested new features which would make gpcm a better product o gpcm users who have given us sales leads during the year o gpcm users who have used gpcm to help their companies make better plans and decisions , which is , after all , the purpose for which it was designed we hope all of you have a wonderful holiday season and look forward to an even better year 2000 . bob brooks",0 +"Subject: lng models can you guys please take a look , and eric , please show to farzad . . . . jeff - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 07 / 07 / 2000 07 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - - merritt thomas 07 / 06 / 2000 12 : 00 pm to : jeffrey a shankman / hou / ect @ ect cc : subject : lng models jeff , here are some models which i received from rotenberg ' s lng group when i was in houston last month . i haven ' t had the opportunity to really take a look at them , but you will probably want to pass them along to your lng people . thanks , merritt",0 +"Subject: re : prospective 6 / 22 houston visit ehud , june 22 works for me . do you want to firm it up ? vince "" ehud i . ronn "" on 05 / 25 / 2000 06 : 45 : 49 pm to : vince . j . kaminski @ enron . com cc : subject : prospective 6 / 22 houston visit vince , many thanks for your e - mail . > what about june 22 ? i have several trips in between may 25 and june 22 . i thank you for the invitation . may i at this time acquire an "" option "" to visit on that date , with the finalization of the visit ' s timing to be completed early next month ? thanks and best regards , ehud ehud i . ronn department of finance college and graduate school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: erisks event information thank you for registering for the erisks iconference "" quantifying mid - market default risk : estimation & validation of internal grades for basle & securitization "" featuring eric falkenstein , vice president of moody ' s risk management services the iconference is scheduled for wednesday , october 18 , 2000 at 12 : 00 noon edt , 5 : 00 p . m . london . following are the details you will need to access the event . you may wish to save or print this page for future reference . 1 . dial 1 - 800 - 275 - 3210 ( u . s . ) or 973 - 628 - 6885 ( international ) to listen to the audio for this program . audio is available by telephone only . 2 . wait for an operator and give the following code : "" erisks iconference . "" music will play until the webconference begins . 3 . join the web - based portion of the program to see slides , participate in polls and ask questions . - open netscape or internet explorer 3 . 0 or higher . - enter the following web address : http : / / www . communicast . com / login 4 . fill out the form on this page and enter the following confirmation number : 10006 . 5 . click the "" communicast now "" button . in a few moments you will be placed in the erisks conference . communicast system requirements : - communicast requires the ability to run java applets . - netscape or internet explorer browsers 3 . 0 or higher . if this is your first communicast event , you may wish to test your computer . visit http : / / www . communicast . com / login at any time and click the "" test "" button at the bottom of the page . for this conference , you may skip the last three tests relating to streaming audio . you will not need realplayer to participate in this conference . if you require further assistance , contact support @ communicast . com .",0 +"Subject: here ' s your chance what do we need to know to make ebs a successful business ? we need to identify 5 to 10 critical issues in order to help m . i . t . professor gabriel bitran get his students focused on areas of interest to ebs . your suggestions for interesting and useful research topics are due by next wednesday morning , may 31 . tom gros will then forward the topics to professor bitran . stinson p . s . i really need your help on this .",0 +"Subject: re : fw : opportunities vince i went through my secretary ' s things and found the following number : 713 . 853 . 3848 is this the number to use ? thanks gerry - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , october 26 , 2000 5 : 48 pm to : gsheble @ iastate . edu cc : vince . j . kaminski @ enron . com subject : re : fw : opportunities gerry , the best time is morning , 7 : 30 to 8 : 30 central . vince "" sheble , g . b . "" on 10 / 26 / 2000 05 : 43 : 28 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : fw : opportunities dear sir : i have attached my resume for your review . i have meetings from 8 - 9 , and 10 - 2 tomorrow . when would it be best for me to call you ? cordially , gerry - - - - - original message - - - - - from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ] sent : wednesday , october 25 , 2000 12 : 12 pm to : vince . j . kaminski @ enron . com cc : gsheble @ iastate . edu subject : re : opportunities thanks vince . i have contacted him and have given him your phone number . he will attempt to contact you thursady or friday . good luck . vince j kaminski 10 / 24 / 2000 03 : 59 pm to : lloyd will / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : opportunities ( document link : lloyd will ) lloyd , yes , i would be very interested . vince lloyd will 10 / 24 / 2000 02 : 45 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : opportunities vince would you be interested in this professional . i would be glad to facilitate a conference call . thanks . - - - - - - - - - - - - - - - - - - - - - - forwarded by lloyd will / hou / ect on 10 / 24 / 2000 02 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" sheble , g . b . "" on 10 / 17 / 2000 04 : 52 : 57 pm to : "" ' lloyd . will @ enron . com ' "" cc : subject : re : opportunities loyd i tried to call yesterday , but you were out of the office . my schedule follows , would you want to pick a time for me to call you or send me a list of times to pick ? gerry fall 2000 teaching schedule ee 553 mtwr 10 - 11 am curtis hall 308 engr 161 mw 2 - 4 howe hall 2228 other commitments m 11 - 12 ep & es m 1 - 2 office hours t 12 - 2 ep & es seminar t 2 - 3 office hours t 3 - 4 pserc t 5 - 6 epri - dod w 11 - 12 office hours w 4 - 9 dsm r 11 - 12 office hours f 11 - 12 p & t f 1 - 3 cas f 3 - 4 departmental meeting - - - - - original message - - - - - from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ] sent : monday , october 16 , 2000 8 : 00 am to : sheble , g . b . subject : re : opportunities give me a call any time to discuss things . 713 - 853 - 3383 . thanks . "" sheble , g . b . "" on 10 / 15 / 2000 02 : 17 : 02 pm to : lloyd will / hou / ect @ ect cc : subject : re : opportunities lloyd i am attaching another resume for your review , please pass it along if there is any interest . i would also like to discuss opportunities with you as i expect to graduate with my mba summer 2001 . cordially , gerry = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = gerald b . shebl , professor , electrical and computer engineering director of complex adaptive systems program 1115 coover hall ames , iowa 50011 voice : 515 . 294 . 3046 fax : 515 . 294 . 4263 email : gsheble @ iastate . edu web : http : / / www . ee . iastate . edu / ~ sheble / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = ( see attached file : short _ resume . doc )",0 +"Subject: fw : having iris visit london anita , it seems that i am going to london next week . please see forwarded emails . can you please assist me with my travel arrangements . thanks , iris - - - - - original message - - - - - from : kaminski , vince sent : tuesday , april 24 , 2001 5 : 25 pm to : shanbhogue , vasant ; mack , iris ; dhar , amitava ; kaminski , vince subject : having iris visit london it ' s ok to delay the materials for duffie . he is very busy anyway and is not going to complain . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - scott salmon @ enron 04 / 24 / 2001 01 : 23 pm to : amitava dhar / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , ben parsons / lon / ect @ ect , george albanis / lon / ect @ ect , tomas valnek / lon / ect @ ect , bryan seyfried / lon / ect @ ect subject : having iris visit london hi amitava , we ' ve been doing some thinking and discussing here regarding the information on our modelling process we ' ll provide to darryl duffie . we think it would be extremely valuable for iris to come out to london for a couple weeks to gain a better understanding of the how the models integrate and are truly employed . i think this would greatly enhance the "" product "" we ' ll send to duffie as well as giving iris a firm view of enron credit . in addition , she could also explore some of the data sources such as amadeus and others that might be helpful in private firm modelling . if we ' re extremely efficient / lucky in receiving data from d & b or experian , she might be able to begin analysis on that for the private model efforts . i would recommend she plan on coming out for 2 weeks starting the week of 30 apr perhaps . depending on the progress with the private firm data sources , it probably makes sense to send her back to houston to work on calibration sets with a likely return visit to london as required . please let me know your thoughts . cheers , scott",0 +"Subject: re : invitation to speak at infocast ' s upcoming "" market price volatility "" program vince , ok . i appreciate your keeping us in mind . thanks , ron - - - - - original message - - - - - from : vince j kaminski [ mailto : vkamins @ ect . enron . com ] sent : wednesday , january 12 , 2000 8 : 27 am to : ronh @ . com cc : vince j kaminski subject : re : invitation to speak at infocast ' s upcoming "" market price volatility "" program ron , we are really swamped and i would like to keep our involvement in conferences to a reasonable minimum . i can promise that we shall help you with a future conference if it happens to be in houston . vince "" ron henderson "" on 01 / 11 / 2000 03 : 13 : 56 pm please respond to ronh @ . com to : vince j kaminski / hou / ect @ ect cc : subject : re : invitation to speak at infocast ' s upcoming "" market price volatility "" program vince , i am sorry you can ' t join us . is there someone on your staff who might be able to do the presentation "" a real options approach to asset valuation , "" scheduled for thursday , may 11 th , from 10 : 30 am to 12 : 00 pm . ? ron - - - - - original message - - - - - from : vince j kaminski [ mailto : vkamins @ ect . enron . com ] sent : monday , january 10 , 2000 10 : 53 am to : ronh @ . com cc : vince j kaminski ; shirley crenshaw subject : re : invitation to speak at infocast ' s upcoming "" market price volatility "" program > ron , i am sorry to inform you that due to a scheduling conflict i cannot speak at this conference . i want to thank you for considering me as a speaker . vince kaminski "" ron henderson "" on 12 / 30 / 99 06 : 57 : 05 pm please respond to ronh @ . com to : vince j kaminski / hou / ect @ ect cc : subject : invitation to speak at infocast ' s upcoming "" market price volatility "" program hi vince , i would like to invite you , or one of your staff , to be a speaker at infocast ' s upcoming conference "" market price volatility : how to model , assess , and manage price volatility in today ' s power markets , "" scheduled for may 10 - 12 , 2000 , in chicago . i am attaching a copy of the draft program agenda for your review . as you may note , we wish to take our recent houston meeting a step farther by making this next session a more technically - oriented meeting . there are two spots you may wish to consider : 1 . the session entitled "" case study in modeling volatility , "" scheduled for wednesday , may 10 th , from 3 : 30 to 5 : 00 pm . you will note below , what we had in mind for the case study . 2 . the talk "" a real options approach to asset valuation , "" scheduled for thursday , may 11 th , from 10 : 30 am to 12 : 00 pm . i am running behind schedule in finalizing this program , so i will give you a call shortly to follow up with you . if you wish , please feel free to call me at 818 - 888 - 4445 ext . 28 . i hope you can join us . ron henderson infocast 818 - 888 - 4445 ext . 28 ronh @ . com case study guidelines 1 . model should be for a particular market . examples : pjm , chicago , ecar , southern california . lb ( optional ) . model should be for a particular purpose . examples : valuing a new combustion turbine at the florida / georgia border , bidding on a portfolio of power plants up for sale in nepool , valuing a retail portfolio in pennsylvania . 2 . model should be estimated on a particular data set . examples : daily nymex close prices for palo verde , pjm hourly spot prices for 1998 - 1999 . 3 . case study should describe several candidate models , for volatility and / or market price , that were considered . case study should discuss why these models were considered . candidate models should be described mathematically and verbally . 4 . evaluation criteria for choosing among the models should be explicitly identified , and quantified to the extent possible . examples of evaluation criteria : residuals that are not autorcorrelated , stationarity , r - squared , akaike information criterion . 5 . parameter estimates for each candidate model should be displayed . the estimation procedure employed should be briefly described . 6 . some diagnostics of model fit ( vis - a - vis data set ) should be presented . 7 . if possible , predictive power of model should be assessed . generally , the case study should include all of the items above . the case study may include other things .",0 +"Subject: ps on the new xmim tool for excel when you install this , you need to change the xmim server from "" xmimhost "" to "" limbo "" ( port is still 0 )",0 +"Subject: re : real world option pricing tom , thanks . i shall try to pick up the paper tonight . the e - mail caught me in a better place than an air conditioned place . i am in australia and it ' s winter here . vince tom arnold on 07 / 20 / 2000 11 : 44 : 43 am to : vince . j . kaminski @ enron . com cc : subject : re : real world option pricing hey vince , since i saw you last , the "" real world option princing "" paper has taken on some more interesting results . tim crack and i would certainly like your comments on the previous version and current version because we feel there are still more areas to explore , such as , value at risk . here is where you can download the paper : i hope this e - mail finds you in air conditioned room away from the heat . tom",0 +"Subject: vacation carry - over report the vacation carry - over report is due to payroll by the end of this week . below are the days that the system shows for your carry over . please let me know if this is correct as soon as possible . vince kaminski 40 . 00 hours stephen bennett 30 . 00 hours anita dupont 14 . 00 hours seksan kiatsupaibul 20 . 00 hours sandeep kohli 40 . 00 hours kate lucas 40 . 00 hours youyi feng 36 . 00 hours shane green 40 . 00 hours jose marquez 40 . 00 hours kevin moore 13 . 00 hours mike roberts 40 . 00 hours sam smith 10 . 50 hours hector campos 40 . 00 hours rabi de 10 . 00 hours shalesh ganjoo 40 . 00 hours paulo issler 40 . 00 hours martin lin 40 . 00 hours zimin lu 40 . 00 hours kenneth parkhill 10 . 00 hours roman zadorozhny 40 . 00 hours joe hrgovcic 40 . 00 hours nelson neale 10 . 00 hours vasant shanbhogue 28 . 00 hours lance cunningham - 4 . 00 hours tom halliburton 14 . 00 hours alex huang 40 . 00 hours praveen mellacheruvu 14 . 00 hours jason sokolov 8 . 32 hours tanya tamarchenko 40 . 00 hours sevil yaman 13 . 32 hours thanks ! shirley",0 +"Subject: re : meeting tuesday dale , your memory did not fail you . we would like , however , to move the meeting to 2 p . m . tuesday . i left you a voice message about it . please call me s soon as possible to confirm . vince "" dale m . nesbitt "" on 11 / 02 / 2000 07 : 41 : 40 pm please respond to to : "" vincent kaminski \ ( e - mail \ ) "" cc : subject : meeting tuesday vince : i was writing to confirm the meeting you wanted to set up with me , yourself , and mr . goodpasture for next tuesday . i believe it was set for 300 pm this coming tuesday at your offices . ( i seem to have misplaced where i wrote the specific time , so i wanted to be sure to reconfirm . ) please confirm if you get a second so that i can finalize my travel schedule . you can email or phone 650 . 218 . 3069 . thanks . i look forward to meeting with you again and with mr . goodpasture . dale nesbitt",0 +"Subject: re : internship shane , monday would work for us . my assistant will contact you wednesday to arrange the interviews . vince "" shane green "" on 06 / 30 / 2000 11 : 33 : 53 am to : cc : subject : internship dr . kaminski : ? i just wanted to touch base and see if i needed to snail mail a copy of my resume or get in touch with anyone else over at enron . ? ? the finance department at lsu will be sending out financial award letters to new ph . d . students before long , and my interning at enron would free up some additional departmental funds . ? in addition , if i will be here in baton rouge during the fall , i will need to pay my tuition next month . ? i am able to pursue an internship in large part because of the department ' s cooperation and assurance that when i return i will still have a research and or teaching assistantship to help fund the completion of ph . d . ? i have been told that such cooperation and assurances are rare at lsu , so i am trying to rock the boat as little as possible . ? i realize until i receive an offer from enron my internship ( i say internship rather than sabbatical because lsu will not continue to pay me my stipend while i am away ) is not assured until an offer has been extended by enron . ? i understand that there are procedures ? and protocols that must be followed before this occurs , and i would be willing to do whatever is necessary to move to the next step in that process . ? i will be in houston on july 8 & 9 for my wife ' s grandmother ' s 80 th birthday . ? if it would be convenient , i could be in town ? on the preceding friday , or following monday for a visit and / or interview . ? if not , given the relatively close proximity between baton rouge and houston , i would be happy to come at another time . ? thanks again , shane green ?",0 +"Subject: re : ( no subject ) jana , "" cotton mary "" sounds good . it ' s a film by ismail merchant who collaborated on "" a room with a view "" , "" howard ' s view "" , and other well known movies . it ' s a story about two anglo - indian sisters . vince jlpnymex @ aol . com on 04 / 11 / 2000 08 : 02 : 45 am to : vince . j . kaminski @ enron . com cc : subject : re : ( no subject ) vince , the angelika has several movies that would be good . i am familiar with all but one - - "" cotton mary . "" do you know anything about it ? if you still haven ' t seen "" american beauty "" , that is fine with us . just let me know what sounds good to you . we are flexible when it comes to movies . jana",0 +"Subject: ethylene margin collar simulation model i set up the simulation model . the margin follows a mean - reverting process . i seperarted the data into two category , margin > 0 . 04 and margin < 0 . 04 . then i estimate the mean reverting speed seperately for these two data sets . i got higher mean reverting speed than that i estimated using the whole data set . the high mr speed surpresses the probability at high payout side . since the mr speed is sensitive to where i divide the data , so bob will run a few senarios . i put the overal settlement cap and floor into the montly premium calculation , so the the result in el 8 on the summary page is the ultimate answer to the deal pricing . i also calculate the undiscounted payout distribution and overall collar worth . relax the overall cap and floor will have a direct comparison with the spread option approach that bob and lee set up . look like we got a reasonable model . stinson : i ' d like to have you check my set up for the simulation model . lee and douglas : you can play with the model , and let me know what do you think . bob : we need run different price curve senarios using the simulation model . plus different mr speed . zimin",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 carson , margaret m james d steffes may 26 , 2000 ghosh , soma timothy davies may 31 , 2000 vernon , clayton j vasant shanbhogue may 26 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: request submitted : access request for anita . dupont @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000012735 approver : stinson . gibner @ enron . com request create date : 1 / 8 / 01 4 : 26 : 26 pm requested for : anita . dupont @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: message from anjam s ahmad dear all , on 25 th october i announced my resignation from enron europe to pursue other opportunities . i just wanted to say that the past 3 1 / 2 years has been a very interesting and positive experience for me , having been a key part of such a dynamic and fast - moving organisation . enron is by far the best organisation i have ever worked for , and i am proud to have had the opportunity to work here and become a shareholder . i have found it a real pleasure to have worked with such talented and interesting individuals as exist within enron europe and enron corp in houston & portland and i genuinely wish you the best of success going forward . i would also like to take this opportunity to thank vince kaminski , john sherriff and richard lewis for hiring me in april 97 and thereafter offering such interesting and challenging projects to work on . i have made some excellent friends at enron and hope to keep them - i have a base in london and will probably be visiting houston soon , so please feel free to stay in touch ! contact : e - mail : citywhizkid @ hotmail . com ( easy to remember ! ) mobile : 0961 111 192 home : 020 8877 9741 address : apt 213 , compass house , riverside west , smugglers way , wandsworth , london swl 8 i will be at the talbot pub tomorrow friday 27 th october from 6 pm where i hope to catch up with you as a final farewell ! best wishes for the future ! anjam x 35383",0 +"Subject: ena meeting and event expenditure approval process the approval process initiated in 1998 for all meeting and event expenditures in excess of $ 5 , 000 has enabled ena to better assess the business value of events , accurately track our activities and save money . these events include customer and employee meetings , and trade shows . ena has made some modifications to the process , which are described in this memo . the $ 5 , 000 threshold remains in effect for all customer events . however , the threshold for approval for employee meetings and events has been lowered to $ 2 , 000 , and some additional requirements must be met prior to approval . please be sure to follow the procedures described below for all meetings and events , so we can continue to successfully manage these events . 1 ) prior to making any commitments to customers or vendors , all customer events with anticipated costs in excess of $ 5 , 000 , and all employee events with anticipated costs in excess of $ 2 , 000 must be reviewed by the ena public relations ( pr ) department and approved by the ena office of the chairman 2 ) the pr department will handle the site search and hotel contract negotiations for all such events . once this is completed , the pr department will work with you to plan and produce your event in its entirety ; or they can provide as much or as little assistance as you require . the pr department will be responsible for helping you achieve the best value for your program and ena . 3 ) a completed expenditure request form ( see attached ) and supporting documentation is required for each event . employee meetings require a detailed agenda as part of the event documentation prior to approval . please submit the completed expenditure request form and documentation to the pr department at eb 3642 , or work with pr department employees to complete the form . 4 ) after pr review , the expenditure will be submitted to the ena office of the chairman for final approval . additionally , the pr department can assist in the procurement of tickets for various local sporting events and concerts . if you have any questions regarding this process , would like assistance planning an event , or need tickets for a houston event , please contact dorie hitchcock in the pr department at ( 713 ) 853 - 6978 . thank you for your cooperation .",0 +"Subject: re : possible rtp conference i look forward to seeing you at 10 am on thursday march 15 . my office is 408 terman center . you can find a searchable campus map under "" contact information "" on our homepage ( address below ) . at 05 : 24 pm 3 / 12 / 01 - 0600 , you wrote : > dear professor huntington , > > thursday 10 a . m . works for me . > please , let me know where i can meet you . > > i am attaching my itinerary , so that you can contact me > if necessary > . > my cell phone number is 713 410 5396 . > > vince kaminski > ( see attached file : vk - sf - stanford - 3 - 14 - 01 . doc ) hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: re : mutually agreed upon changes okay larry , i had a brief discussion with our lawyers . they are strongly advising us to keep the changes we earlier incorporated , but to which you have not assented . as this is a matter of company policy , unfortunately we do not have much room to maneuver . if it would help you to have a direct conversation with the lawyers to appreciate our company ' s perspective , i can arrange for a phone call . please advise . thanks . rakesh lawrencelrtnmt @ aol . com on 05 / 01 / 2001 08 : 06 : 47 am to : rakesh . bharati @ enron . com cc : subject : mutually agreed upon changes okay hi rakesh , thanks for your work on the non - disclosure agreement . your integration of our mutually agreed upon modifications looks good , rakesh . thanks ! i ' ll await your next version . larry",0 +"Subject: powerisk 2000 - more cocktail info - - - - - - - - - - - - - - - - - - - - - - forwarded by iona maclean / lon / ect on 22 / 09 / 2000 12 : 24 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : simon turner 22 / 09 / 2000 11 : 29 to : keiron . ferguson @ accessenergy . nl , mcrosno @ altra . com , ed @ apx . com , alaw @ avistaenergy . com , markw @ citizenspower . com , chris _ strickland @ compuserve . com , hbrett @ cyberbuilding . com , geman @ dauphine . fr , charles . heard @ dc . com , chris . miller @ dc . com , gilbert . toppin @ dc . com , pat . breen @ dc . com , stuart . beeston @ dc . com , klaus . petzel @ dowjones . com , sama @ dynegy . com , jdaly @ enermetrix . com , iona . maclean @ enron . com , vkaminski @ enron . com , mwalsh @ envifi . com , mark @ fea . com , bachar . samawi @ gen . pge . com , garman @ haas . berkeley . edu , fgetman @ houstonstreet . com , dave . gardner @ innogy . com , stepheng @ ipe . uk . com , lecoq _ sophie @ jpmorgan . com , ruckt @ kochind . com , les @ lacima . co . uk , simon @ localbloke . freeserve . co . uk , carlhans . uhle @ lpx . de , e . westre @ mvv . de , pwold @ . com , david . whitley @ nordpool . com , lburke @ nymex . com , xavier . bruckert @ omgroup . com , aram . sogomonian @ pacificorp . com , peter . haigh @ pgen . com , sven . otten @ preussenelektra . de , detlef _ r _ hallermann @ reliantenergy . com , phil . saunders @ southernenergy - europe . nl , alexander . eydeland @ southernenergy . com , juerg _ trueb @ swissre . com , alang @ tfs - ln . co . uk , annunziata @ tradecapture . com , martin . stanley @ txu - europe . com , simon . harrington @ txu - europe . com , rob @ weatherderivs . com cc : subject : powerisk 2000 - important invitation * * high priority * * dear colleague please find attached two invitations to cocktail parties to be held at powerisk 2000 . you will receive a formal invitation by post . however , just in case this does not reach you by any chance , please print off the attached copies and bring these with you . the cocktails will provide the opportunity to meet all other speakers and delegates . we look forward to seeing you next week . regards rosemary fitzgerald powerisk 2000 - cocktail - invite . doc",0 +"Subject: re : carnegie mellon kristin , the presentation went quite well . kevin and i would like to brief you about cmu in general . let ' s go out to lunch when you come back . vince kristin gandy @ enron 11 / 03 / 2000 03 : 55 pm to : vince j kaminski / hou / ect @ ect cc : subject : carnegie mellon vince , i wanted to email you and let you know how sorry i am that i was not able to make your presentation at carnegie mellon . i really was looking forward to the trip and the presentation but unfortunately since i have been on the road a lot lately things started backing up in the office . after my meeting on thursday there was no way i would make the 6 pm flight and my original flight would have put me in pittsburgh to late for the presentation . anyway , i hope you understand and i am looking forward to working with you in december for the interviews on campus . maybe once you return you can give me a recap of the days events . in the meantime if you need any assistance please do not hesitate to call . thank you , kristin gandy 713 - 345 - 3214",0 +"Subject: jason sokolov ' s removal from ted murphy ' s cost center norma : ted murphy would like to have jason removed from his cost center effective december 16 th . vince said that it would be ok to have him added to our cost center , effective that date . he is not supposed to start with the research group until the 28 th , but needs a home from the 16 th to the 28 th , so we will pick him up . can you take care of this ? thanks ! shirley 3 - 5290",0 +"Subject: re : greetings dear professor boyle , i shall be glad to speak at the conference on energy derivatives in may in toronto . i shall call you thursday morning ( houston time ) to discuss the details . vince phelim boyle on 03 / 28 / 2000 06 : 23 : 07 pm to : vkamins @ enron . com cc : subject : greetings i am sorry i missed your call today . i will be in london tomorrow night by around 11 . 30 ( uk time ) i will be teaching on a risk course and staying at the grosvenor house hotel ; phone 44 ( 0 ) 20 7499 6363 fax 44 ( 0 ) 20 7499 3341 it would be great if you can come to our conference i will be happy to discuss it with you best wishes phelim p boyle - - phelim p boyle director centre for advanced studies in finance , university of waterloo , waterloo , ontario canada n 2 l 3 gl tel 519 885 1211 ( 6513 ) fax 519 888 7562",0 +"Subject: congrats congratulations on your promotion ! that is really good .",0 +"Subject: re : grades mr . kaminsky , i still need grades for : israni , rakhi lu , feng planck , jeffrey so , winny taylor , orlando wankhade , sanjay zhang , ning i will be available by e - mail this evening or by phone ( 5 : 30 or so ) at 713 - 668 - 1704 . i just called the registrar ' s office and if i bring in the grades by 8 : 30 tomorrow morning we will be fine . please advise . thanks for your help . - pam at 08 : 23 am 5 / 4 / 01 - 0500 , vince . j . kaminski @ enron . com wrote : pam , the last group . please , let me know if any name is missing . ( embedded image moved to file : pic 25177 . pcx ) grade : a thanks a lot . it was a pleasure working with you . vince kaminski",0 +"Subject: re : private firm schedule thanks for the schedule update - - - - - original message - - - - - from : kirkpatrick , eric sent : monday , april 23 , 2001 10 : 52 am to : mack , iris ; dhar , amitava ; brent , richard ; salmon , scott ; chaney , craig ; mumford , mike ; detiveaux , kim ; cruver , brian subject : private firm schedule all : this is the rough schedule we came up with at today ' s video conference : submit rfp to d & b , experian , and amadeus 2 days 25 apr mumford receive back rfps 1 . 5 weeks 4 may mumford complete evaluation , selection & authorization 1 week 11 may mumford / mack contract complete and signed 2 weeks 25 may mumford data to iris & amitava 3 weeks 15 june mumford model development complete 4 weeks 15 july mack * integration of model and data feeds into cts 6 weeks 30 august kirkpatrick prior to integration into cts any prices would have to be manually uploaded into cts via spreadsheet . the rfp will include a request for a smaller data calibration set that we may select to purchase immediately . we can revisit this schedule at our wednesday video conference . eric kirkpatrick",0 +"Subject: reminder : cera executive roundtables in houston dear cera members and friends : we wanted to make sure you had seen our announcement regarding a series of executive roundtables in houston next week - on april 17 and 18 , 2001 . these meetings will feature presentations and interactive discussions with cera experts . for complete details on the events , please visit http : / / www 20 . cera . com / event . the events will feature speakers from the following cera teams : * north american electric power - april 17 * north american natural gas - april 17 & 18 ( two events ) * western energy - april 17 * latin america energy - april 18 * asia pacific energy - april 18 location and accommodations : the four seasons hotel 1300 lamar street houston , tx 77010 - 3098 tel . : + 1 713 650 1300 fax : + 1 713 650 1203 * please contact the hotel directly for room reservations . to enroll , please complete the form found on our website at http : / / www 20 . cera . com / event and return it by fax to cera registration : cera 20 university road cambridge , ma 02138 usa fax : + 1 617 498 9176 tel . : + 1 617 497 6446 x 800 e - mail : register @ cera . com sincerely , cera event registration please note : dates and locations of events are subject to change . participation at a roundtable is a function of the terms of the cera / client contract . for more information about eligibility , please contact cera registration . our relationship with you is very important to us . ? if you do not wish to receive future e - mail notifications , please send a reply to this message with "" donotemail "" as the subject of your message . ( mailto : info @ cera . com ? subject = donotemail ) ",0 +"Subject: re : seismic data via satellite bob , i ' ve just now had time to add some comments to your summary . my comments are in the attachment which encorporates your work . greg bob lee @ enron 16 / 10 / 2000 14 . 47 to : gregory p smith / hou / ect @ ect , richard reichardt / enron communications @ enron communications , vince j kaminski / hou / ect @ ect cc : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : seismic data via satellite i have attached a background piece to brief oil traders on this subject prior to a possible meeting with them . please give me any comments on 1 ) accuracy 2 ) completeness and 3 ) coverage of the areas we want to explore . as a side note , i found some info on the web stating current proven oil reserves are 1 , 000 billion bbls . discovery of a 1 billion bbl field would add only 0 . 1 % . while we will pursue the trading advantage option , it is not looking promising that it has great short term value , given the long time frame and high cost of bringing deep water reserves to market . bob lee",0 +"Subject: re : rice / enron speakers for fall 2001 and spring 2002 david kendrick from the university of texas may be good . martin vince j kaminski 04 / 24 / 2001 05 : 11 pm to : stinson gibner / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , rakesh bharati / na / enron @ enron , pinnamaneni krishnarao / hou / ect @ ect , zimin lu / hou / ect @ ect , iris mack / enron @ enronxgate , martin lin / hou / ect @ ect , lance cunningham / na / enron @ enron , vince j kaminski / hou / ect @ ect cc : wangfa @ rice . edu subject : rice / enron speakers for fall 2001 and spring 2002 any recommendations . please , let me know asap . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 09 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - albert wang on 04 / 23 / 2001 12 : 37 : 55 pm to : vince . j . kaminski @ enron . com cc : subject : rice / enron speakers for fall 2001 and spring 2002 hi , vince : we are considering a preliminary list of speakers for rice / enron seminar series in finance for fall 2001 and spring 2002 . do you have any persons in mind that you and your group want to include in the list ? finance faculty will meet to finalize the list later . thanks , albert p . s . : is ronnie chahal still around ? she is currently in my enron distribution list with email address : rchahal @ ess . enron . com . i have received an error message indicating a failure of delivering email to her address . fu - kuo albert wang assistant professor jones graduate school of management - - ms 531 rice university 6100 main street houston , tx 77005 phone : 713 - 348 - 5404 fax : 713 - 348 - 5251 email : wangfa @ rice . edu http : / / www . ruf . rice . edu / ~ wangfa /",0 +"Subject: avg . monthly electricity prices for the past 13 months margaret , please find attached file with average monthly prices for regions your requested . this file gives more information than the previous ( yesterday ) one . as the one before , source for this file is megawatt daily , it includes on - peak and off - peak prices and you can also see daily data that was converted to monthly average data . there are two types of averages prices : average and weighted average . weighted average takes into account number of transactions of certain price . for example : pjm had average price of $ 53 . 61 and weighted average price of $ 53 . 15 in august , it means that there were more transactions of lower price than higher . also , megawatt daily has its own methodology and i am attaching it with this message . if you have any questions regarding prices or methodology , please contact sevil yaman ( 5 - 8083 ) or me ( 3 - 4305 ) . sincerely , elena enron research group 3 - 4305",0 +"Subject: the 1999 form w - 2 and retiree tax form 1099 - r the 1999 form w - 2 and retiree tax form 1099 - r will be mailed to your address of record by january 31 , 2000 . if you have not received your form by february 16 th , you may request , in writing , for a duplicate copy to be sent to you . please note that a written request , including authorized signature is required . when requesting a duplicate form , please specify the year for which you need a copy , sign your request , and include the following information : name complete mailing address phone number social security number you may mail your request to : enron corp eb 1667 p o box 1188 houston tx 77002 or you may fax your request to 713 - 646 - 3755 . your request will be processed within one week of receipt . if you have a question regarding the information on your form w 2 , please contact ginger sinclair at 713 - 853 - 9567 . ginger will take a detailed message of your questions and someone from the payroll tax group will contact you as soon as possible . thank you",0 +"Subject: summer intern for the research group elizabeth , can you please direct me to someone to assist us in making an offer to a young lady we just interviewed ? we would like to bring her in as a summer intern the same way that we brought in james bradley aimone . she will be reporting to stinson gibner and i believe she is available right away . i am attaching her resume . thanks for your help .",0 +"Subject: vince , here is a rough schedule as we had discussed . we can work the details once i get there . thanks again for all your efforts . look forward to my stint in houston . regards , sandeep .",0 +"Subject: re : emission trading vince , i spoke with susan wood , who heads up our emissions marketing effort who says we don ' t really have any materials we send out . she did recommend the emissions trading handbook which can be purchased for $ 50 from in general , the site http : / / www . etei . org / is a great source of info , and the the parent site , http : / / www . emissions . org should be checked out as well . if you ' d like me to purchase the handbook ( it will take three weeks ) let me know . joe vince j kaminski 12 / 16 / 99 08 : 15 am to : joseph hrgovcic / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : emission trading joe , do we have any materials about it ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 16 / 99 08 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - adam brulinski 12 / 14 / 99 08 : 22 am to : vince j kaminski / hou / ect @ ect cc : subject : re : emission trading thank you in advance . let me just mention that the issue is quite urgent so i would appreciate if i could get sth asap . adam vince j kaminski 99 - 12 - 14 15 : 24 to : adam brulinski / war / ect @ ect cc : subject : re : emission trading adam , let me gather some information for you . vince adam brulinski 12 / 14 / 99 08 : 08 am to : vince j kaminski / hou / ect @ ect cc : subject : emission trading szanowny panie , chcielibysmy zaczac propagowac w polsce idee handlu prawami do emisji zanieczyszczen . dlatego tez prosilbym o przeslanie , najlepiej droga emailowa materialow dotyczacych tej koncepji - glownie chodzi mi o strone "" merytoryczna "" . z powazaniem , adam brulinski",0 +"Subject: short term private firm model : static historical snapshot + performance data for model development mike , scott , eric , after brainstorming and discussing further on data here , we think that our final specifications for modelling data requirement need to be as follows : we need bankrupt , default and nondefault ( which covers nonbankrupt ) accounts with 4 quarterly observation snapshots and 12 months performance following the latest snapshot . monthly performance indicator need to be available for the entire 12 months performance period . we will need all the bankrupt and default accounts and comparable sample of good accounts with weights . for the purpose of model validation , we will need data with above specs covering 16 months of performance . this means that we will need rolling ( 4 quarterly snapshots + 12 months performance ) data for 4 monthly shifts : input snapshots performance 1999 march end , 1999 june end , 1999 september end , 1999 december end 12 month end performance for jan 2000 through dec 2000 1999 feb end , 1999 may end , 1999 august end , 1999 november end 12 month end performance for dec 1999 through nov 2000 1999 jan end , 1999 apr end , 1999 july end , 1999 october end 12 month end performance for nov 1999 through oct 2000 1998 december end , 1999 mar end , 1999 june end , 1999 september end 12 month end performance for oct 1999 through sep 2000 we will need bankruptcy chapterwise indicator , if available during the performance period . our definition of default is either bankruptcy or 90 + days delinquency on any trade credit . we have also discussed the cost aspect and we think considering the big picture , it makes sense to spend the extra amount to get the right data for analysis . please let me know your thoughts . this will require d & b to give us a modified quote and we could possibly move forward quickly . regards , amitava",0 +"Subject: re : real options e & p course larry , i sent the information to mark ruane , 713 853 3569 . he is the best customer at enron for real options applications . vince larry chorn on 01 / 25 / 2000 12 : 30 : 17 pm to : vince j kaminski / hou / ect @ ect cc : subject : real options e & p course vince : as you requested , we mailed you a brochure about our upcoming course ( 2 / 22 - 4 / 4 ) in houston . we are now following up with that mailing to identify remaining attendees for the session . i wanted to make sure that we did not overlook anyone at enron , so i am dropping you this email to see if you have anyone there in mind as an attendee . best regards , larry chorn 972 . 814 . 5342 www . realoptions - software . com",0 +"Subject: re : approval for paulo issler anita , good decision . vince anita dupont @ enron 02 / 23 / 2001 12 : 13 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : approval for paulo issler fyi : carolyn needed approval today for charges relating to paulo ' s green card process . mike was the only vp here today so i asked him to approve them . hope that was alright . anita - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 02 / 23 / 2001 12 : 06 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - mike a roberts @ ect 02 / 23 / 2001 11 : 04 am to : carolyn wedel / enron @ enronxgate @ enron cc : anita dupont / na / enron @ enron subject : re : approval for paulo issler carolyn , approval to post the attached charges for paulo issler is granted . mike roberts v . p . research",0 +"Subject: request for training session folks , i am a vice president with enron , and have been with the company some 6 years now . i was hired through enron associate pool , and started off by marketing power on the east coast with jim fallon . currently i am working in the india region , looking into different ways to develop merchant type activities in india , anticipating the start of trading activities some time in the future . one of my challenges is to make the team in india aware of the type of sophisticated operations and processes that we have in place for trading activities , as well as the range of products we have to offer . i have been in conversation with mike mcconnell and jeff shankman on the global products side , and are planning a session to acquaint the team in india with activities in that group . similarly , on the power side , we have been interacting with john sherriff ' s team in london . i feel that it will be very beneficial for some of the team members to get acquainted with the processes on the power trading side in houston , and to get an idea of the rac process , the research side , the back - offices , as well as the trading operations here . similarly , the team there could present to you the state of the market in india , and give you an idea of the type of opportunities there . i am therefore eliciting your support to put together a session in houston where they can be acquainted with these functions , as well as the people responsible for them in the us . there are three people in the group who would benefit from this exposure . one of them is from the associate pool , while the other two are people hired locally in india . i have already spoken with our coo , wade cline in this regard , and seek your support in putting together an agenda for such a session . please let me know who i should contact within your groups to discuss this further . regards , sandeep .",0 +"Subject: re : eprm 2001 houston layla , my associate ' s name is tanya tamarchenko . the e - mail address is : tanya . tamarchenko @ enron . com . location is the same as mine , enron , 1400 smith , houston . thanks vince p . s . shirley , please send my bio to layla "" layla o ' leary "" on 05 / 02 / 2001 10 : 33 : 00 am please respond to to : cc : subject : re : eprm 2001 houston yes , that ' s fine . if you can please give me her full contact details including e - mail and address i will have her registered as a co - speaker . if you would like to bring your own copies to the event i would ask you to send 200 copies directly to the venue . although if you can get it to me on friday i can still insert it ! could i please trouble you for a short biography ? kind regards layla - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 02 may 2001 15 : 38 to : loleary @ riskwaters . com cc : vince . j . kaminski @ enron . com subject : re : eprm 2001 houston layla , a few points . i shall be glad to attend the reception . i am falling behind in getting my presentation ready . sorry for the delay . i can commit to delivering the required number of copies on the day of my presentation ( or a day before ) . i have done it on two occasions before ( power 2000 and power 1999 ) : the copies were produced by our company copy center at no cost to you . my associate , tanya tamarchenko , is helping me with one aspect of the presentation and i would like her to deliver part of my speach . it ' s only fair to give her the credit when the credit is due . is it ok to include her as an additional speaker ? vince "" layla o ' leary "" on 04 / 30 / 2001 09 : 04 : 52 am please respond to to : cc : subject : eprm 2001 houston dear speaker , pre - congress cocktail reception - sunday 13 th may @ 5 : 30 pm in the juniper room we would be delighted to have you attend our pre - congress cocktail reception . we will be extending this invitation to all our sponsors , exhibitors and eprm / risk waters group staff . we hope this will provide a perfect opportunity for you to meet all our staff and clients before the formal opening of eprm 2001 usa + rsvp i would also like to remind you that i need any missing presentations by thursday 3 rd may . it is essential that i get these in as the delegates rely on these to make notes and get very upset if they are not included in the packs . if you still haven ' t informed me of your av requirements , please do so as quickly as possible . i also require a short biography . i would like to point out that i will not be taking any presentations on disk to the event . if you are using a laptop , your presentation should be loaded onto the laptop that you bring with you . you must bring your own laptop and disc , with connecting cables . any questions , please do not hesitate to contact me . kind regards layla o ' leary event co - ordinator risk waters group haymarket house 28 - 29 haymarket london swly 4 rx tel : + 44 ( 0 ) 20 7484 9871 fax : + 44 ( 0 ) 20 7484 9800",0 +"Subject: research group move to the 19 th floor hello all : in case any of you feel energetic , "" the boxes are here "" . they are located at 2963 b ( michael sergeev ' s old desk ) . feel free to take as many as you will need . be sure to label everything with your new office location . if your file cabinets lock , you can just label them and lock them . again , listed below is your new office location : stinson gibner eb 1936 joseph hrgovcic eb 1947 paulo issler eb 1935 vince kaminski eb 1933 krishna krishnarao eb 1938 martin lin eb 1930 e grant masson eb 1941 kevin moore eb 1944 maureen raymond eb 1928 mike roberts eb 1945 vasant shanbhogue eb 1949 vincent tang eb 1934 ravi thuraisingham eb 1932 zimin lu eb 1942 if you have any questions , or need any assistance , please contact me , kevin , or sam . thanks and have a great day ! shirley 3 - 5290",0 +"Subject: research ' s summer outlook the research weather group has posted the 2001 summer outlook on research intranet page , under the afternoon video report . the links are : cussioncontent . asp ? item = afternoon and http : / / enaresearch . corp . enron . com / research / framework / default . asp",0 +"Subject: howard london hi vince - i just got off the phone with rw and enron london . alec told me that howard is idle and waiting for your command and the coordination of the directors . melanie is working with vuthy rw directly on this for you and rachel quirk said she will contact you to set the time up . . . "" unofficially "" they were trying to do something with howard tomorrow as i was told - not sure . i have a couple other candidates i would like to send you after i collect some sleep ( 3 ; 30 am now ) - i ' ll send them to you after i wake . one guy from oxford , worked citibank fixed income risk the other over at ford motor company who is looking to move to london ( highly recommended by the professor ) . i ' ll send them later as to let you be the judge . talk soon - thanks for the business ! jeff always held in strict confidence . jeff wesley 949 813 2241 hotline 347 487 8957 voice / fax us + 44 ( 845 ) 3341644 uk * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: vp & director count for the research group hello deborah : i would like to introduce myself and anita dupont to you as we will probably be working together quite a bit between now and our move . please feel free to contact either one of us regarding any questions or needs you may have . headcount the executive , vp and director headcount for the research group is : managing director 1 vice presidents 6 directors 5 also , anita and i would like to invite you to meet with us and go over our library space requirements . please let me know when you have some free time and we will be available . my number is : 3 - 5290 - ebl 961 anita ' s # is : 3 - 0329 - ebl 969 i look forward to meeting you , shirley crenshaw administrative coordinator enron research group 3 - 5290",0 +"Subject: cal berkeley presentation hello vince and shirley , thank you so much for your patience as i tried to shuffle dates and events around ! i have some great news . i was able to secure a room on campus at the faculty club for the presentation on monday october 16 th at 7 : 00 - 9 : 00 . that should work out perfectly as far as being about to present at the seminar from 3 : 30 - 5 : 00 . furthermore , i was able to adjust the resume drop dates so that we have through the week of the 16 th for students to submit their resumes . i will go into more detail about this tomorrow at the cal berkeley team meeting . i have put together some booklets to hand out to the team tomorrow . vince , i have put some time into the agenda for you to welcome the team and get everyone excited about cal recruiting this fall . thank you for all of your help ! please let me know if there is something that you would like me to add to the agenda for tomorrow . thanks ! ashley",0 +"Subject: miscellaneous items good morning tom : please furnish the following information to me for the research directory : name : tom halliburton title : location : ebl 957 phone # : 5 - 8539 home address : home telephone : wife ' s name : your birthday : also for your information , there will be a research group staff meeting every thursday from 11 : 30 am to 1 : 00 pm in eb 30 cl . lunch will be provided . please let me know what kind of sandwich or salad you would like and what you would like to drink . thanks ! shirley 3 - 5290",0 +"Subject: re : movie jana , we should have tomorrow the movie schedule for the weekend . saturday around 5 : 00 p . m . would work for me . vince jlpnymex @ aol . com on 04 / 13 / 2000 09 : 49 : 11 am to : vkamins @ enron . com cc : subject : movie vince let ' s talk tomorrow and see what time that movie starts and when we should meet , ok ? jana",0 +"Subject: re : rankings thank you .",0 +"Subject: request submitted : access request for anita . dupont @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000012741 approver : stinson . gibner @ enron . com request create date : 1 / 8 / 01 4 : 34 : 26 pm requested for : anita . dupont @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: 4 - urgent - owa please print this now . current notes user : reasons for using outlook web access ( owa ) 1 . once your mailbox has been migrated from notes to outlook , the outlook client will be configured on your computer . after migration of your mailbox , you will not be able to send or recieve mail via notes , and you will not be able to start using outlook until it is configured by the outlook migration team the morning after your mailbox is migrated . during this period , you can use outlook web access ( owa ) via your web browser ( internet explorer 5 . 0 ) to read and send mail . please note : your calendar entries , personal address book , journals , and to - do entries imported from notes will not be available until the outlook client is configured on your desktop . 2 . remote access to your mailbox . after your outlook client is configured , you can use outlook web access ( owa ) for remote access to your mailbox . please note : at this time , the owa client is only accessible while connecting to the enron network ( lan ) . there are future plans to make owa available from your home or when traveling abroad . how to access outlook web access ( owa ) launch internet explorer 5 . 0 , and in the address window type : http : / / nahou - msowaolp / exchange / john . doe substitute "" john . doe "" with your first and last name , then click enter . you will be prompted with a sign in box as shown below . type in "" corp / your user id "" for the user name and your nt password to logon to owa and click ok . you will now be able to view your mailbox . please note : there are some subtle differences in the functionality between the outlook and owa clients . you will not be able to do many of the things in owa that you can do in outlook . below is a brief list of * some * of the functions not available via owa : features not available using owa : - tasks - journal - spell checker - offline use - printing templates - reminders - timed delivery - expiration - outlook rules - voting , message flags and message recall - sharing contacts with others - task delegation - direct resource booking - personal distribution lists questions or concerns ? if you have questions or concerns using the owa client , please contact the outlook 2000 question and answer mailbox at : outlook . 2000 @ enron . com otherwise , you may contact the resolution center at : 713 - 853 - 1411 thank you , outlook 2000 migration team",0 +"Subject: request submitted : access request for amitava . dhar @ enron . com you have received this email because the requester specified you as their vp . please click approval to review and act upon this request . request id : 000000000011185 request create date : 12 / 21 / 00 4 : 20 : 10 pm requested for : amitava . dhar @ enron . com resource name : vpn resource type : applications",0 +"Subject: weijun decided not to interview i guess this means "" back to the drawing board "" . weijun has decided not to interview . lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 18 / 2001 09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ji , weijun "" on 04 / 18 / 2001 08 : 06 : 44 am to : "" ' lance . cunningham @ enron . com ' "" cc : subject : please call me dear lance , thank you very much for all of your help through this process . at present , i am really tied up with mock market activities in austin energy . it would be inappropriate for me to leave at this time since the whole project will be jeopardized . therefore , i decided not coming to houston for an interview . i sincerely apologize for any inconvenience this may cause you . i do appreciate what you did and hope we can keep in touch in the future . thank you again for your help and wish you best . sincerely , weijun ji",0 +"Subject: re : happy new year ! shannon , thanks . the same to you . sorry to have missed your class . i had a very bad case of flu with some additional complications . i shall be glad to make a presentation on the same topic on another occasion . vince "" shannon burchett "" on 12 / 28 / 99 12 : 15 : 59 pm please respond to "" shannon burchett "" to : vince j kaminski / hou / ect @ ect cc : subject : happy new year ! vince , wishing you a very happy and prosperous new millennium ! happy new year , shannon risk limited corporation box 612666 dallas , texas 75261 usa tel : 972 . 245 . 8300 fax : 972 . 245 . 8318 www . risklimited . com - attl . htm",0 +"Subject: re : confirmation of meeting i ' ll probably be in houston sometime in the next couple of months , otherwise if you let me know when you ' ll be in london we ' ll rearrange for then . . . hope to meet up eventually ! paul to : paul e . day cc : date : 02 / 10 / 2000 11 : 28 from : vince . j . kaminski @ enron . com subject : re : confirmation of meeting paul , sorry for the late notice . please , let me know when you are coming to houston . i shall be again in london sometimes in november . vince paul . e . day @ uk . arthurandersen . com on 10 / 02 / 2000 02 : 29 : 57 am to : shirley . crenshaw @ enron . com cc : vince . j . kaminski @ enron . com , wendy . dunford @ uk . arthurandersen . com subject : re : confirmation of meeting i would very much like to meet vince , unfortunately i am in back to back meetings all day today . maybe we could rearrange next time vince is in london or i am in houston . regards paul to : paul e . day cc : date : 29 / 09 / 2000 17 : 52 from : shirley . crenshaw @ enron . com subject : re : confirmation of meeting paul : fyi . regards , shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 29 / 2000 11 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 09 / 29 / 2000 11 : 51 am to : wendy . dunford @ arthurandersen . com @ enron cc : subject : re : confirmation of meeting ( document link : shirley crenshaw ) wendy : i am so sorry for the late notice , but vince will be in london for 1 day only , monday , october 2 nd . he has had some time freed up and if paul and julian could meet with him , they can call him at the grosvenor house , 870 - 400 - 8500 . his morning is already full , but lunch , dinner or afternoon would work . regards , shirley wendy . dunford @ arthurandersen . com on 09 / 18 / 2000 10 : 14 : 51 am to : shirley . crenshaw @ enron . com cc : subject : re : confirmation of meeting hi shirley thanks for getting back to me . regards wendy * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: jcc good morning . i apologize for the response delay . i ' ve gone back through the analysis that i did back in april , and have thrown around some ideas with vince and stinson . the issue may be summarized as follows . the hedge relationship was derived using jcc and prompt brent , and is valid for jcc and prompt brent . no problems here . however , it will not be valid for points far out on the forward curve . intuitively , this hedge relationship will approach one as we move far out on the curve , but since there is no data , i can not statistically determine this . one can imagine a term structure of heding ratios that start at 0 . 67 and move to 1 . 0 , so that the back end of the curves would move together , but how fast it converges to one is anyone ' s guess . if there is a way of determining the historical jcc forward curve , then the hedge relationships may be estimated . however , i have been unable to determine a rigorous approach to building the jcc curve . i can explain this far better in person , and would like to talk as soon as possible at your convenience . - kevin kindall",0 +"Subject: usaee conference update from louise burke content - transfer - encoding : binary date : thu , 29 jun 2000 16 : 38 : 24 edt subject : u : \ wp 60 \ usaeekaminska . doc mime - version : 1 . 0 content - type : application / vms - rms ; vms - fdl = "" system ; source vax / vms ; ; file ; allocation 54 ; best _ try _ contiguous no ; bucket _ size 0 ; contiguous no ; deferred _ write no ; extension 0 ; global _ buffer _ count 0 ; mt _ block _ size 0 ; max _ record _ number 0 ; maximize _ version no ; organization sequential ; read _ check no ; supersede no ; write _ check no ; ; record ; block _ span yes ; carriage _ control carriage _ return ; control _ field _ size 0 ; format stream ; size 0 ; ; area 0 ; allocation 54 ; best _ try _ contiguous no ; bucket _ size 0 ; contiguous no ; exact _ positioning no ; extension 0 ; position none ; volume 0 ; "" ; mr - type = msword ; name = msword content - disposition : attachment ; filename = msword importance : normal al - format : msword al - type : document - msword",0 +"Subject: re : invitation - whartonetevent - apr 20 / plsrsvp vince and chistie , sorry you won ' t be attending our april 20 et event , but of course we realize that many of our partners can ' t attend every event . with this in mind , we put conference reports online in a "" quick read "" format for busy executives . our site is located at : http : / / emertech . wharton . upenn . edu - we ' ll be adding new reports in the coming 2 weeks . i would also ask , is there anyone else at enron involved in mergers and acquisitions who would benefit from the april 20 event ? this will be one of our most "" content - rich "" events - reporting on surveys on high tech acquisitions as well as best practices in successful mergers and partnerships . please feel free to pass on the invitation to colleagues at enron who you feel might find this worthwhile , or you can give me email addresses if you ' d like me to extend the invitation with the most recent agenda . we very much appreciate enron ' s support of the et program and look forward to your participation in the future . best regards , michael hi michael ! sorry i will be unable to attend ! i believe both vince and i are previously committed . thanks ! - - christie . - - michael s . tomczyk managing director emerging technologies management research program 1400 sh - dh / 6371 the wharton school philadelphia , pa 19104 - 6371 tel 215 - 573 - 7722 fax 215 - 573 - 2129 website : http : / / emertech . wharton . upenn . edu",0 +"Subject: re : abstract thanks vince . this is good but i also need a title . it would be good if you can as part of the talk present an example of a technical problem addressed by your group describing the problem and the general methodology employed or developed . you can also start with an introduction about your organization and the program . shmuel shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : cc : ; sent : monday , october 02 , 2000 6 : 44 am subject : abstract > shmuel , > > this is the abstract for my presentation on the 23 rd of october . > i am in london and paris this week . i can be reached at my > private e - mail address vkaminski @ aol . com . > > please , feel free to suggest modifications to the abstract . > > > > vince > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > > the last three years were characterized by exceptionally high volatility > of > > the power prices in the us markets . the market developments have created > a > > number of unique challenges for energy industry economists . one immediate > > question we have to answer is how to measure volatility of energy prices . > > although we can all agree that the prices in the power markets are > > characterized by high variability , the traditional measures used in > financial > > economics ( annualized standard deviation of log price returns ) may not > fit > > well electricity prices . the second challenge is to explain the sources > of > > high price volatility and to answer the question to what extent it can be > > attributed to problems that can be addressed in the long run . such > problems > > include flaws in market design that allow some market participants to > abuse > > market power , limited availability and / or unequal access to transmission , > > temporary shortages of generation capacity . some factors underlying high > > volatility of electricity prices may be of permanent nature and may be a > > necessary price to pay for increased market efficiency and expanded > customer > > choice . > >",0 +"Subject: enron image 2000 video is here enron ' s image 2000 video is now available we think you will like enron ' s new corporate image video , which can be used for employees , customers , suppliers , government officials , and other audiences who want to know about enron . the video features ken lay , jeff skilling and joe sutton who discuss four key business initiatives : broadband ; wholesale energy ; energy outsourcing services and enrononline . the look and feel represents our people , culture and new branding . mooresource has a large supply of standard vhs ( also known as ntsc ) copies , which is the format used in the u . s . and some international locations , and copies in pal , which is the format used in the u . k . and in most european locations . there also are special pal formats ( pal - m and pal - n ) available for locations in south america . you may use the order form below or , for those of you who prefer to order electronically , you may do so from mooresource using the following item numbers . if you aren ' t familiar with mooresource , please go tohttp : / / home . enron . com : 84 / imgctr / and click on the mooresource button . instructions for ordering will be provided there . if you have questions about using mooresource , contact michael shea at 713 / 853 - 5418 . order a copy today . item # description price 43162 image video - vhs $ 4 . 25 43163 image video - pal $ 8 . 25 43164 image video - pal / m $ 15 . 00 43165 image video - pal / n $ 15 . 00",0 +"Subject: re : interview steve , i submitted my evaluation . general impression was rather negative : he seems to be a consultant type person who speaks about everything with confidence but is short on depth and technical details . he is personable , outspoken , organized - on the positive side . also , the red flag is that he jumps from job to job : typical after 18 - 24 months when any organization can ascertain his usefulness . vince from : stephen stock / enron @ enronxgate on 04 / 17 / 2001 01 : 03 pm to : vince j kaminski / hou / ect @ ect cc : subject : interview hi vince , what did you think of david hsu ? my thoughts . overall a good guy . personable . intelligent . he could communicate reasonably well , but seemed to be capable of losing objectivity in favour of technical advancement . he didn ' t seem comfortable with taking a man - management role ( at least he didn ' t want to be an ' administrator ' ) he appeared to know a lot about risk . ( in fact jay web called me to say he felt david was one of the better risk guys he had seen but also commented that he needed to be coupled with a project manager to be successfull ) . regards steve",0 +"Subject: you are now subscribed to the frbnyrmagl list mon , 18 sep 2000 18 : 42 : 47 your subscription to the frbnyrmagl list ( federal reserve bank of ny research publications ) has been accepted . please save this message for future reference , especially if this is the first time you are subscribing to an electronic mailing list . if you ever need to leave the list , you will find the necessary instructions below . perhaps more importantly , saving a copy of this message ( and of all future subscription notices from other mailing lists ) in a special mail folder will give you instant access to the list of mailing lists that you are subscribed to . this may prove very useful the next time you go on vacation and need to leave the lists temporarily so as not to fill up your mailbox while you are away ! you should also save the "" welcome messages "" from the list owners that you will occasionally receive after subscribing to a new list . to send a message to all the people currently subscribed to the list , just send mail to frbnyrmagl @ peach . ease . lsoft . com . this is called "" sending mail to the list , "" because you send mail to a single address and listserv makes copies for all the people who have subscribed . this address ( frbnyrmagl @ peach . ease . lsoft . com ) is also called the "" list address . "" you must never try to send any command to that address , as it would be distributed to all the people who have subscribed . all commands must be sent to the "" listserv address , "" listserv @ peach . ease . lsoft . com . it is very important to understand the difference between the two , but fortunately it is not complicated . the listserv address is like a fax number that connects you to a machine , whereas the list address is like a normal voice line connecting you to a person . if you make a mistake and dial the fax number when you wanted to talk to someone on the phone , you will quickly realize that you used the wrong number and call again . no harm will have been done . if on the other hand you accidentally make your fax call someone ' s voice line , the person receiving the call will be inconvenienced , especially if your fax then re - dials every 5 minutes . the fact that most people will eventually connect the fax machine to the voice line to allow the fax to go through and make the calls stop does not mean that you should continue to send faxes to the voice number . people would just get mad at you . it works pretty much the same way with mailing lists , with the difference that you are calling hundreds or thousands of people at the same time , and consequently you can expect a lot of people to get upset if you consistently send commands to the list address . you may leave the list at any time by sending a "" signoff frbnyrmagl "" command to listserv @ peach . ease . lsoft . com . you can also tell listserv how you want it to confirm the receipt of messages you send to the list . if you do not trust the system , send a "" set frbnyrmagl repro "" command and listserv will send you a copy of your own messages , so that you can see that the message was distributed and did not get damaged on the way . after a while you may find that this is getting annoying , especially if your mail program does not tell you that the message is from you when it informs you that new mail has arrived from frbnyrmagl . if you send a "" set frbnyrmagl ack norepro "" command , listserv will mail you a short acknowledgement instead , which will look different in your mailbox directory . with most mail programs you will know immediately that this is an acknowledgement you can read later . finally , you can turn off acknowledgements completely with "" set frbnyrmagl noack norepro "" . contributions sent to this list are automatically archived . you can get a list of the available archive files by sending an "" index frbnyrmagl "" command to listserv @ peach . ease . lsoft . com . you can then order these files with a "" get frbnyrmagl logxxxx "" command , or using listserv ' s database search facilities . send an "" info database "" command for more information on the latter . important : this list is confidential . you should not publicly mention its existence , or forward copies of information you have obtained from it to third parties . please note that the "" give "" command is automatically disabled for all archive files . more information on listserv commands can be found in the listserv reference card , which you can retrieve by sending an "" info refcard "" command to listserv @ peach . ease . lsoft . com .",0 +"Subject: look forward to hearning from you . vince , please let me know what day might be convenient for you this week for a quick lunch if possible . thank you . maruti - - - - - original message - - - - - from : more to : vince . j . kaminski @ enron . com date : monday , august 28 , 2000 2 : 31 pm subject : re : enron open positions > vince , > > just fine . i will be there at 11 : 30 am on friday , september 8 , 2000 . > > see you at the enron building . > > thank you . > > maruti > > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com > to : mmore @ houston . rr . com > cc : vince . j . kaminski @ enron . com > date : monday , august 28 , 2000 2 : 14 pm > subject : re : enron open positions > > > > maruti , > > does 11 : 30 enron building work for you ? > > vince > > > > > > "" more "" on 08 / 28 / 2000 01 : 25 : 54 pm > > to : "" vince j kaminski "" > cc : > subject : re : enron open positions > > > > hello vince , > > thank you very much for getting back to me . > > friday , september 8 is fine with me . please let me know what time would be > convenient for you and where we can meet . i can come any time anywhere . > > sincerely , > > maruti > 832 - 251 - 7267 > > > > > - - - - - original message - - - - - > from : vince j kaminski > to : more > cc : vince j kaminski > date : monday , august 28 , 2000 12 : 12 pm > subject : re : enron open positions > > > > maruti , > > what about september 8 , friday ? > > vince > > > > > > "" more "" on 08 / 25 / 2000 03 : 27 : 26 pm > > to : vince j kaminski / hou / ect @ ect > cc : > subject : enron open positions > > > > > > > >",0 +"Subject: re : job posting vince , thank you very much . i applied for the position yesterday ( via e - mail address ) and mentioned your name in the cover letter . i ' ll keep my fingers crossed . sincerely , helen - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 25 , 2001 9 : 42 am to : demianen @ ruf . rice . edu subject : re : job posting helen , fyi . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001 09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : lee ferrell / enron @ enronxgate on 04 / 24 / 2001 06 : 20 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : job posting hi vince , this posting is for my group . thanks for the referral . - - - - - original message - - - - - from : kaminski , vince sent : tuesday , april 24 , 2001 5 : 31 pm to : goodpasture , john ; watson , kimberly ; ferrell , lee ; kaminski , vince cc : krishnarao , pinnamaneni subject : job posting i am teaching a class at rice and one of my very bright students sent her resume in response to this posting . do you know who posted this job ? vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - ( embedded image moved to file : pico 5601 . pcx ) "" helen demianenko "" on 04 / 24 / 2001 02 : 11 : 05 pm please respond to to : cc : subject : job posting dear vince , thanks for talking to me this morning about the sr . risk analyst position . here is where you can find the job description for that position : also , i have cut and pasted it down below , just in case . i appreciate your assistance in this matter and will start working on my cover letter right away . i would also like to talk to somebody to get a better feel for the position ( is this really an mba level position and how much of the in - depth learning opportunities for the derivatives market does it entail ? ) sincerely , helen demianenko p . s . i have attached my resume ( one more time ) . sr risk analyst essential functions : primary accountability for managing the ets risk book structure and processes from a pipeline ( front office ) perspective . work within current nng and tw marketing organizations to effectively integrate risk books into daily marketing and structured product activities . provide feedback to management regarding overall and specific risk positions . provide support for consistent and accurate deals entry / reporting for stand alone risk management system . create ad - hoc reports to assist management in risk analysis . responsible for managing and providing enhancements to the capacity books : ? maintain functionality and provide leadership for new functionality from a users perspective . provide support and direction for integration of capacity books and revenue management project . support revenue management team essential requirements : ba / bs in finance or accounting ( mba preferred ) . minimum of two years financial instruments experience . excellent quantitative / analytic and systems skills . knowledge of commodity risk book concepts . understanding of physical natural gas market , interstate transportation and financial derivatives . ability to interface with structuring / marketing groups in order to define business requirements . ability to provide leadership for business and system processes . excellent communication skills with an ability to communicate across organization with varied skill sets and ideas . must be self - motivated with a high level of energy preferred skills : na . special characteristics : this job functions in a team - oriented , fast - paced environment with multiple concurrent assignments and constantly changing priorities . contact : responses will be accepted through may 3 , 2001 . respond to enron corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or e - mail : dea . crum @ enron . com as a . doc or . txt attachment . please include this requisition number . job id 0000108729 department risk management & reporti company enron transportation services enron transportation services location houston , tx type posting date 19 - apr - 01 - helen _ d _ resume . doc >",0 +"Subject: re : a request vince , i will supply a generic example . zimin vince j kaminski 03 / 06 / 2001 09 : 31 am to : zimin lu / hou / ect @ ect cc : subject : a request zimin , it seems that the academia is catching up . do you have a realistic case we can show them ? something generic . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 06 / 2001 09 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - - ds 64 @ cyrus . andrew . cmu . edu on 03 / 02 / 2001 09 : 39 : 43 am to : "" vince j kaminski "" cc : subject : a request vince , i am writing to ask for your help with some research i am doing with john lehoczky and a phd student . we trying to apply recent advances in monte carlo for american options to value swing and other options with multiple early exercise decisions that are important in energy markets . i know in general that early exercise shows up in a wide range of energy contracts , both real as welll as financial . would it be possible for you , either via email or on the phone , to give us some examples of typical terms for such instruments ? we would like our examples to look realistic . we also want to make sure we are focusing on the right sorts of optionality . thanks in advance , duane * * * * * * * * duane seppi graduate school of industrial administration carnegie mellon university pittsburgh pa 15213 - 3890 tel . ( 412 ) 268 - 2298 fax ( 412 ) 268 - 8896 email ds 64 + @ andrew . cmu . edu",0 +"Subject: interview with enron dear mr . kaminski , ? even though i cannot pass "" official "" interviews , i would like to discuss with enron . i was really impressed by your presentation and i think i would be a good fit for your firm . ? i know that you ? will be soon recruiting on campus , maybe we could set up an "" informal meeting "" . either give me a call at home ( 412 - 802 - 6429 ) or send me an email at this address . i would appreciate though not to appear on interview lists . ? pierre - philippe ste - marie http : / / pstemarie . homestead . com",0 +"Subject: jcc study here is the information produced in the study for marc de la roche . - kevin k . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 12 / 20 / 2000 05 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin kindall 11 / 28 / 2000 09 : 29 am to : russell dyk / corp / enron @ enron cc : subject : jcc study - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 28 / 2000 09 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin kindall 09 / 29 / 2000 05 : 11 pm to : james pyke / ap / enron @ enron cc : subject : jcc study hello . please read the jcc note . feedback welcome . - kevin k .",0 +"Subject: [ no subject ] thanks vince - i didn ' t know - i was worried for a while ; thanks for reducing me stress ! i ' ll let alec and vuthy know @ this . thank you very much - we ' ll get him ( howard ) in ! jeff i live in dana point , ca . ( known for it ' s harbor ) here are a few pictures for you on your coffee break : http : / / www . danapointharbor . com / tour / ptwend . htm bye jeff , we have video facilities both in houston and london . we shall invite howard to visit our office in london again . vince * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: re : message from ken rice dorothy , no problem . please , cc - mail me tom ' s number . one of the members of the group has a phd in computer science and he will join me for the call . vince from : dorothy dalton @ enron communications on 05 / 01 / 2001 08 : 53 am to : vince j kaminski / hou / ect @ ect cc : subject : message from ken rice vince : ken rice received a call through a friend ' s referral from dr . tom limperis ( a professor at the university of michigan ) . dr . limperis has developed a statistical database management system he would like to show enron . ken would like you to return this call on his behalf . he feels that you are probably the only person who will understand and be able to determine if enron should have an interest . do you mind returning this call ? please let me know . thanks ! dorothy dalton office of the chairman enron broadband services 1400 smith street , eb 4505 houston , tx 77002 713 - 853 - 6724 - direct 713 - 853 - 9469 - fax",0 +"Subject: resending paper - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 04 / 30 / 2001 08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" lynn nazareth "" on 04 / 27 / 2001 12 : 46 : 37 pm to : jason . sokolov @ enron . com cc : subject : resending paper jason : here is our team ' s assignment . please confirm receipt . i am also sending you the file via my outlook address in case this doesn ' t work . this is our team : helen demianenko javier lamas lynn nazareth shauywn smith carlos wheelock sarah wooddy thanks , jason ! see you at enron this fall ! lynn get your free download of msn explorer at http : / / explorer . msn . com - mg _ analysis _ final . doc",0 +"Subject: allocations becky , please , take a look at the allocations sheet . vince",0 +"Subject: new jcc stuff vince , i ' m gone through wednesday of next week . i plan to work more on this over the holiday . contact information is in the . doc in other news , i didn ' t get the total return swaps finished . i have been unable to nail down certain details . concepts are quite clear . - kevin k .",0 +"Subject: re : london research group richard , please , let me know what the timetable is . i would like to talk to anjam a few days before to break the news to him . i hope i can save him for the company and offer him a position in houston . we desperately need skills he has . vince richard lewis 07 / 27 / 2000 02 : 20 am to : dale surbey / lon / ect @ ect cc : john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect subject : re : london research group i agree with dale - no point in delaying . dale surbey 27 / 07 / 2000 08 : 13 to : john sherriff / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect subject : re : london research group john , i propose accelerating steve ' s move to head the research group here . it makes sense to include this as part of the mid - year prc process by giving him a tangible reward along with his performance feedback . thoughts ? - dale john sherriff 27 / 07 / 2000 06 : 44 to : vince j kaminski / hou / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect subject : re : london research group vince - i agree with your conclusion here . we are still trying to fill dale ' s structuring role as well so part of the question is how we announce steve ' s lead research role relative to when we know who will take dale ' s spot . perhaps we should just move forward with the steve announcement the day that dale moves full time to ebs . i will ask richard lewis to take the lead in working with you on finalizing the decision and communcicating the changes to the organization . but i do want to reinforce how pleased we are to have steve here . he is a wonderfull asset to our efforts . thanks ! john vince j kaminski 26 / 07 / 2000 22 : 18 to : john sherriff / lon / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : london research group john , i am writing to you regarding the management of the london research group . as you know , dale surbey , who was managing the london unit of the research group , is moving to ebs . dale did a terrific job helping me to develop the pool of talent we have currently in london . given that dale is likely to be transfered to houston , it ' s time to nominate one member of the research group for a management position . my recommendation is steve leppard . steve emerged not only as the most technically qualified member of the group but also as a natural leader , highly respected by his peers and internal customers . steve has a very high energy level and is very efficient as a manager and as coach of new talent . his promotion is likely to cause anjam ' s departure form enron . i value technical skills of anjam , but in spite of my loyalty to him , don ' t think he is the same caliber as steve . however , i would not like to lose him and think about moving him to houston for 2 years . i think that the opportunity to work in houston , would be a sufficient incentive to keep him in enron . by the way , his performance feedback has greatly improved . please , let me know what you think . vince",0 +"Subject: 2 missing from the mailing list hingoran @ rice . edu planck @ rice . edu",0 +"Subject: vacation carryover want to verify your vacation carryover ? beginning january 22 , 2001 , all eligible enron employees will be able to access the hours of vacation that were carried over from the previous year by going to the ehronline website . 1 . navigate to the ehronline website : http : / / ehronline . enron . com . 2 . read the disclaimer ; click accept . 3 . enter your user id and password ; click logon . 4 . select time management from the menu at the left . 5 . select vacation information from the drop - down menu . to see all types of vacation ( accrual , lump sum , vacation ) , click the radio button for "" all types . "" click display . to see specific types of vacation ( accrual , lump sum , vacation ) , click the radio button below "" all types "" and make your selection from the drop - down menu . click display . click exit to log off . the system will default to show all types of vacation , including ( if available ) vacation - ( accrual ) or vacation - ( lump sum ) or vacation . the carryover amount will be displayed next to the type : "" vacation "" under the "" entitlement "" column . enron policy states that employees are entitled to a maximum of 40 hours of vacation carryover without supervisor approval . hours in excess of 40 hours are subject to supervisor approval and will be updated once supervisor approval has been received if you have questions regarding your vacation , please call the payroll hotline at 713 . 345 . 5555 .",0 +"Subject: re : software hi helyette , congratulations on your papers . the purchase contract is in the last stage of approvals ( it ' s circulating through different parts of the company where it has to be signed ) . i think we should be able to execute the contract in the first few days of december . i shall let you know as soon as our internal process is completed . vince gemanix @ aol . com on 11 / 29 / 2000 02 : 26 : 12 pm to : vkaminski @ aol . com cc : vkamins @ enron . com subject : software dear vince , i guess time has been flying for you by since our brilliant show in paris . in my case , it is the same : i got 3 papers accepted in the 3 major journals in finance ( journal of business , journal of finance and journal of financial economics ) . we should write a piece ! our software seems to be quite satisfactory for the oil people . my lawyer had added a paragraph to karla ' s document : since she had mentioned the right for enron to check at any time the code source etc , he wanted to request enron to pay his fees in the case d - g disappeared . in any case , if you are still interested , we are ready to use your escrow account to make things simpler . moreover , i am striking an agreement with a software company , 13 years with people from polytechnique + finance , to be our hot line ( with us paying royalties , of course ) . this would complement my 2 associates . looking forward to hearing from you helyette",0 +"Subject: program posted hello all , the program for next week ' s conference is posted at the following address : we have lots of fun stuff planned to go with the serious so come prepared for a great weekend . john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : your encouragement would be appreciated to all a - team members : check out the nice recognition note below i also receive numerous verbal high fives from the other desk heads as well we had a great year kudos to all members of the team - - - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 12 / 21 / 2000 03 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 12 / 21 / 2000 03 : 00 pm to : jim schwieger / hou / ect @ ect cc : jeff skilling / corp / enron @ enron , greg whalley / hou / ect @ ect , david w delainey / hou / ect @ ect , john j lavorato / corp / enron @ enron ( bcc : mike a roberts / hou / ect ) subject : re : your encouragement would be appreciated jim , thanks a lot . it is difficult to find a better example example of commitment to enron and to professional excellence than our weather guys . vince jim schwieger 12 / 21 / 2000 10 : 32 am to : jeff skilling / corp / enron @ enron , greg whalley / hou / ect @ ect , david w delainey / hou / ect @ ect , john j lavorato / corp / enron @ enron cc : ( bcc : vince j kaminski / hou / ect ) subject : your encouragement would be appreciated the gas and power trading organizations have had a tremendous year . sometimes we as traders forget some of the crucial parts of the organization that significantly contributed to that success . i believe the weather group comprised of mike robert ' s , jose marquez , stephen bennett and dave ryan from power are one of those groups . these individuals have done a tremendous job of predicting summer weather along with the route hurricanes would take . the greatest achievement has been the november and december winter forecast . they held fast to their cold forecast even when outside services were moderating . on a score card with all other services they definitely deserve an "" a + "" . when you are down on the 32 nd floor it would be nice if you would stop and congratulate them on a tremendous job and their contribution to our success . thanks , jim schwieger",0 +"Subject: an interview shirley , please schedule an interview with konstantin on may 8 . stinson , zimin , alex , tanya , krishna , myself . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 03 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" konstantin n . kudin "" on 05 / 02 / 2001 01 : 39 : 15 pm to : cc : subject : an interview dear dr . kaminski we have talked earlier during your energy class at rice about career opportunities in risk management at enron . if it is possible , i would like to meet with you and people from your group next week , preferably tuesday ( may 8 ) . my time is flexible , i could come any time . other days are also fine . thank you very much in advance . sincerely , konstantin kudin",0 +"Subject: ceo meeting with governor johanns to margaret and beth , in order to ensure a comprehensive speech to goveror johanns , i am in the process of compiling some preliminary research on the impacts of energy prices on agri - business in nebraska . before i can make a decision of whether i can accept this offer to speak , i would like to finish this preliminary study . i need to know the deadline of your request . can you give me a better understanding as to the duration of the speech and the type of forum in which i will be speaking ? should i expect a q & a after the speech ? who will be in the audience ? what companies and ceo ' s will be attending the meeting ? who will be speaking on energy derivatives ? please let me know when you need my decision . regards , maureen raymond - castaneda",0 +"Subject: churn list vince , here is your new location on the 32 nd floor . have a wonderful morning ! - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 28 / 2000 07 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 04 / 28 / 2000 07 : 49 am to : lisa b cousino / hou / ect @ ect , heather choate / hou / ect @ ect cc : subject : churn list goodmorning , today is the day for the great move . well i certainly hope this is not a bother . i have a few changes since a few members has left our group . new locations sam smith - eb 3274 a elena chilkina - eb 3274 b ( michael sergeev ) patricia tlapek - eb 3273 a vince kaminski - eb 3273 b eb 7273 c - vacant ( roman zadorozhny ) if you are not able to make changes on the churn list , please be aware that we are going to label all items to the locations listed , whereby these items will be at the locations listed above . please if you need more information feel free to call x 34710 . hope this day be a good one for you ! thanks kevin moore",0 +"Subject: material for thu 2 mar wg meeting fyi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 29 / 00 01 : 15 pm - - - - - nevil @ ipn . caida . org 02 / 28 / 00 10 : 35 pm to : metrics @ caida . org cc : ( bcc : ravi thuraisingham / enron communications ) subject : material for thu 2 mar wg meeting hello all : appended below you ' ll find a summary of ideas that people have contributed since we at caida began to get the metrics wg started . some of this material has already appeared on the metrics mailing list , the older material comes from personal emails . i ' m posting it again to give us all some more ideas to think about . for those who are able to attend the wg meeting in san jose this thursday ( 2 mar ) , i ' d like to spend time in the morning getting to know about attendees interests and experience in making internet measurements . i suggest that a good way to do this would be to have each group give a short ( 10 minutes , response times , and this gets even more interesting . . . you only need > to be able to see traffic in one direction ( from client to server ) to > get a fairly accurate round - trip time from the client to the server > ( irrespective of how far away the client is from your measurement > host ) , because of tcps three - way handshake for connection > establishment ; when you see the opening syn , you wait for the client > to ack the server ' s syn ack and you have the client - > server round - trip > time . i think you ' ve actually already done some of this ? we could > also potentially try to correlate dns queries and tcp connections , > perhaps determining some probabilities in a given environment of a > host initiating a tcp connection to a host for which it just received > an a record , and track various application - level response times ( i ' d > personally love to have a lot of data on the ratio of dns response > time to tcp transfer time for http connections ) . even if the > measurement makes no attempt to discern what constitutes a web > transaction to the user ( a full page , usually many tcp connections ) . > > anyway , i think there are some fairly interesting things we can > measure with simple techniques , these are just some simple ones . > there may be some interesting things we could do by digging into > payloads of a few of the other highly - utilized applications , but doing > it for tcp is a nightmare perfomance - wise . but we now have the basic > infrastructure to do things with dns over udp . we can probably cover > any open udp protocol without incurring performance penalties that > would make it completely unusable . snmp , for example . . . while its > application is limited , network service providers would find > round - trip time information for snmp packets from their network > management stations to agents very useful . i think there are some > rudimentary things we can do with tcp as well , and i also think some > sites would be interested in having some rudimentary information . for > example , a weighted ( by traffic ) round - trip time distribution for tcp > traffic to / from all networks with which you communicated ( say at / 24 > granularity ) . this gives sites a notion of how close they are to > those they talk to most frequently . with a little more work , we could > probably make reasonable bandwidth estimates for every end network for > which we see tcp data ( we could certainly get a reasonable number for > the maximum observed bandwidth ) . > > these methods also decouple the measurement from the traffic . while we > all know the value of that , i think it ' s significant in that active > probers can be run on the same host , decoupled from the actual > measurement , and with timestamps coming from kernel space ( bpf ) . i ' ve > been thinking about this for a long time , because eventually i ' d like > skitter ( and other tools ) to be able to do use tcp packets for probing , > with no need for things like ip firewall code ; if i can just properly > time non - blocking connects , and count on the passive tool to see the syn > and syn ack , i can use any tcp port for round - trip time measurements and > not trick my kernel by sending tcp packets on a raw socket . i need > feedback from the passive tool for tracing like skitter ( it needs to > know when a reply has been seen from a hop and when the destination has > been reached ) , but it ' s not difficult ( simple bytestream - oriented ipc is > sufficient ) . > > going further , i like the idea proposed by some others ( maybe funded at > this point , i ' m not tracking it ) of instrumenting the freenix tcp / ip > stacks . a lot of useful information could be pulled from the stack . > but eventually someone ' s going to have to come up with what pieces of > information are desirable enough for someone to want their stack > instrumented ( and it ' ll have to be somewhere between what ' s currently > > implemented and a full - blown metering system like rtfm ) . and i think in > the interim , there are a lot of things we could do using libpcap on our > local machines , non - promiscuous and in user space ( safe , easy to > implement and test ) . to me the benefits here are : > > - a user is likely to have a tangible , well - understood relationship > with their workstation ( understood by them ) . this is particularly > true for those of us with network expertise . so it ' s at least > plausible that we can find correlations of measurements with > user experience in a fairly short period of time , helping us hone in > on what ' s useful . even if we only find weak correlations ( for > whatever reason ) , once a correlation exists , more people will be > interested in helping with development because it ' ll be something > they ' ll use personally . > - we ' re essentially guaranteed to see traffic in both directions . > > i ' d personally be interested in trying to find some small sets of > information that correlate to user experiences , so that it doesn ' t > take a terabyte of disk and 64 processors to deal with data from say > 10 , 000 desktops . : - ) > > anyway , just some random thoughts . the hard part for me at the moment > is thinking about useful generalizations and infrastructure to support > them . . . cindy bickerstaff responded . . > we ' re just starting to capture the mss and window size negotiations between > timeit and servers to get an idea of what is typical or usual . wonder if > daniel ' s code could do that too from the various traffic monitoring points > caida has out there ? the data could be used to fill in some parameters for > trying to model some of the passive data collected . since a typical web page > has many elements between a single client and server the first or base page > gives you a starting idea of what to expect and the subsequent elements are > like repeat measurements of the same path over a very short time interval . > since there is a strong time of day / week effect ( volumes and perf ) , the > short duration of the data collection from a single web page ( incl . > elements ) might give some options for modeling ( and maybe getting a better > estimate of packet loss ) . i ' ve really enjoyed joining the e 2 e - interest group > for the ideas on factors and the references to past modeling attempts ( e . g . > mathis , et . al . paper . . . ack its bulk transfer focus ) . paul krumviede highlighted the difficulty of agreeing on details of how to measure common metrics like availability , reliability , throughput and latency . > an example was throughput . since it was proposed > that this be measured using a tcp file transfer of > random data , one concern was what does this do > to latency ? and where does this get measured ? as > many customers of this service would not be large > businesses , measuring this from the customer end > of a 56 - or 64 - kbps circuit was almost certain to > drive end - to - end latency measurements beyond > defined bounds . measuring it from within points in > the provider ' s network ( s ) might show figures that the > customers could never see themselves . > > the compromise was to define the throughput metric > as ocurring at access link loads of no more than 50 % > of the bit rate . but how does one measure that ? and > so on . . . > > given that this discussion was recognized as being the > prelude to the imposition of minimal slas , as part of the > "" certification "" process for service providers , this may be > an illustration of the perils of discussing slas and metrics > in some interchangable form . but they may not be easy > to separate in the minds of some . carter bullard said > i ' m specifically interested in bridging > rtfm and ippm work , particularly to describe how an > rtfm can be a generic connectivity monitor . ippm > describes type - p - unidirection and bidirectional > connectivity , and a single point rtfm can detect > these conditions , but standard descriptions for how > this can be done would be very useful . > > personally , one of the things that i ' m interested > in is tcp based streaming services performance , such > as that seen in internet radio distribution , and of > course ip telephony wireline performance metrics would > be very good to describe . nevil brownlee comments that he ' s also very interested in developing the rtfm meter as a platform for more general measurements . two areas seem interesting ( apart from getting more information from tcp streams ) : ~ + qos / difserv performance ( what metrics do we need to characterise this ? ) + ipsec ( what metrics will still be useful when we can ' t look at port numbers ? what kinds of traffic can still be identified ? ) curtis villamizar said > i ' m particularly interested in the work on dos at > http : / / www . cs . washington . edu / homes / savage / traceback . html and would > like to see that on the agenda . this would provide a general way of determining where packets came from , not just a tool for tracing dos attacks . ",0 +"Subject: credit business plan hi jeff , my research colleagues and i are working on a document to lay out our credit derivatives modeling strategy . for lack of a better term , we refer to this as our credit business plan . it is my understanding that various business plans have been previously written for the credit group - one by gillian johnson and another by john bottomley . it would be very helpful to our efforts in the research group , it you would allow us to see these plans . thanks , iris",0 +"Subject: re : for vince j kaminski ' s approval approved vince kaminski information risk management 04 / 05 / 2000 03 : 50 pm to : vince j kaminski / hou / ect @ ect cc : subject : for vince j kaminski ' s approval below you will find a copy of a request that is awaiting your approval . please advise us as to your approval or rejection of this request by way of email , since your system does not allow you to open the icon that was submitted by way of a doc link . i thank you in advance for your cooperation in this matter . leola barnett information risk management - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 04 / 05 / 2000 03 : 50 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system pending vp approval resource request how to find the status of this request . . . general information initials : requestor : jason sokolov / hou / ect phone : ( 713 ) 853 - 6286 requested for : jason sokolov / hou / ect request type : update access rc # : 100038 wo # : company # : 0011 priority : high manager : mike a roberts vp : vince j kaminski location : in the request processing section , see the status column for each requested resource . look at the overall status of the request in the title bar above . the status will display closed when your request is complete . click the "" status "" button below . comments : request # : jsov - 4 f 8 r 44 submitted : 01 / 04 / 2000 01 : 58 : 37 pm name cost status implementation comments application / database bloomberg $ 1 , 800 . 00 monthly not started request processing path processed by status when comments manager approved 01 / 20 12 : 57 pm vp security implementation editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 2 3 4 5 6 jason sokolov jason sokolov jason sokolov jason sokolov mike a roberts 01 / 04 / 2000 01 : 56 : 27 pm 01 / 04 / 2000 01 : 57 : 47 pm 01 / 04 / 2000 01 : 58 : 30 pm 01 / 04 / 2000 01 : 58 : 37 pm 01 / 20 / 2000 12 : 57 : 16 pm",0 +"Subject: bad supervisor : me ! norma , i have attached an updated org chart for my team . i think the following changes need to be made 1 . paulo issler is reporting to zimin lu 2 . shalesh ganjoo is reporting to me ( who does the system show as his supervisor , zimin ? ) also , i just found out that chonawee did not get his mid - year review . i didn ' t realize that samer takriti never gave him a review . i have found all of the mid - year feedback for chonawee , but i don ' t have an official "" form "" to fill out for him to sign . can you send one to me , or what should i do ? thanks , stinson x 34748 norma villarreal 10 / 26 / 2000 08 : 30 am to : stinson gibner / hou / ect @ ect cc : subject : re : peoplefinder feedback please confrim that you are the supervisor for shalesh ganjoo . also , please send an updated organizational chart of your group so that i can verify the correct information . thank you for your assistance in this matter . norma villarreal x 31545 - - - - - - - - - - - - - - - - - - - - - - forwarded by norma villarreal / hou / ect on 10 / 26 / 2000 08 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : shalesh ganjoo 10 / 25 / 2000 09 : 29 pm to : norma villarreal / hou / ect @ ect cc : subject : re : peoplefinder feedback fyi . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by shalesh ganjoo / hou / ect on 10 / 25 / 2000 09 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - people . finder @ enron 10 / 23 / 2000 10 : 19 am sent by : curtis fincher @ enron to : shalesh . ganjoo @ enron . com cc : subject : re : peoplefinder feedback shalesh , sap is showing ms . norma villarreal as your hr rep . we don ' t have the authority to change supervisor names . please work with your hr rep to correct this information . regards , curtis fincher shalesh . ganjoo @ enron . com on 10 / 21 / 2000 03 : 25 : 29 pm to : people . finder @ enron . com cc : subject : peoplefinder feedback my chain of command is : stinson gibner vp ( supervisor ) vince kaminski md ( stinson ' s supervisor ) please correct this immediately . thank you .",0 +"Subject: re : henwood query hi karolina , yes , it might be more productive to talk on the phone . given our time difference , why don ' t we plan on tomorrow ( friday ) 8 : 00 am pdt , 4 : 00 pm bdt ? my number in the states is 503 - 464 - 8430 . give me your number , too , so that i can call back if i get hung up in a meeting or something . the situation is complicated by the fact that the marginal cost is set by the capacity increment of a plant that is on the margin in a particular hour , but in constructing the stack , increments of a plant may be scattered throughout the stack , based on their respective incremental heat rates . ( this is why increment heat rates must be strictly increasing in this model . ) results for the capacity increments , however , are not available as output ; only each plant ' s aggregate values are reported . i had to construct the stack for a particular hour to answer question about a homer city , ny plant we were studying a few years ago . attached is the sql query you can import into ms access to do the same thing for you ( making appropriate modifications to the year , hour , etc . ) unfortunately , no henwood documentation on the output variables existed when i created this query , so i can not really tell you what they represent anymore . an acquaintance of mine at entergy and i were lobbying to get henwood to provide some documentation , so it may be available now . let ' s talk and maybe we can help you out , michael > > > karolina potter / lon / ect @ enron 08 / 24 / 00 07 : 08 am > > > michael , i am an analyst in paul mead ' s continental power trading group in london . i am currently working on the project , which requires the use of emss , and experience some difficulties interpreting the output results . steven leppard from our research group gave me your name as an expert in this system and consequently the person to contact in case of problems . i have been running simulations for the dutch market and was asked to provide the traders with some front - end screen graphs in order to interpret the numerical results . one of the graphs is to show an hourly generation stack and system ' s marginal cost , as we only run cost based scenarios . to sort each station ' s hourly generation i need its marginal cost . to my knowledge though , marginal cost is only generated for a systems marginal unit ( transarea marginal units query , marg _ cost unit ) . therefore i was sorting the stations according to the cost which i calculated based on the outputs from station detail by hour query . the calculation was as follows : for each hour , for each generating station : "" marginal cost "" [ o / mwh ] = ( generation _ cost [ oo 00 ] * 1000 ) / generation [ mwh ] - vom _ cost [ o / mwh ] this i thought would include fuel cost and start up costs . however , a marginal station which i get on the stack as a result of the above calculation is not a station given in marginal station field in transarea marginal units query . i have also looked into transarea _ data _ hr table and transarea _ data table but non of the costs there match my results . do you happen to know what formula is used to determine marg _ cost and which outputs i should be using to obtain the right results ? it might be easier if we could discuss this issue on the phone . in this case could you please send me your direct telephone number . i am struggling understanding what is going on and would appreciate your help very much . regards karolina - text . htm - stack generator sql . txt",0 +"Subject: market opportunity from ut generators doug , fyi i ' m sure that baldick would just as soon sell us energy as ae . plus we have a better handle on market opportunites . see his e - mail below . lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 16 / 2001 10 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ross baldick "" on 04 / 15 / 2001 03 : 37 : 59 pm to : cc : subject : re : dissertation dear lance , the university is predicting a shortfall due to increased gas costs of between $ 30 and $ 40 million , over the next 1 to 2 years . for a long time , i have been wanting to explore opportunities for the campus to sell energy to austin energy when its load is below peak . this big shortfall provides an impetus for the university to want to maximize the value of its plant . ross",0 +"Subject: interview with the enron research group hello mr . kudin : vince kaminski has asked me to schedule interviews for you with some of the research group . however , tuesday , the 8 th is not a good day for everyone as we will need approximately 3 hours . could you do it thursday afternoon may 10 th ? we could start at 1 : 00 pm and be through by 4 : 00 pm . the interviewers would be : vince kaminski managing director stinson gibner vice president krishna krishnarao vice president tanya tamarchenko director zimin lu director alex huang director please let me know if this will work for you . if so , i will need you to forward me a copy of your resume . regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: re : returning you call celeste , we shall match the tuition cost . we are very anxious to have gappy here at enron supporting ebs . vince celeste roberts 03 / 08 / 2000 06 : 49 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : returning you call would you be willing to pay for this ? since he is a ph . d . and specifically for your group , this should be your call . let me know if your business unit agree to pick up this additional cost . celeste - - - - - - - - - - - - - - - - - - - - - - forwarded by celeste roberts / hou / ect on 03 / 08 / 2000 06 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - giuseppe andrea paleologo @ stanford . edu on 03 / 06 / 2000 03 : 23 : 24 pm please respond to gappy @ stanford . edu sent by : gappy @ stanford . edu to : celeste roberts cc : subject : re : returning you call ms . roberts , thanks for the quick reply ! i received the offer on thursday , and i am very excited about joining enron this summer . my research group is establishing a long term collaboration with dr . kaminski and dr . gibner , and i hope to help foster this relationship this summer . i would just like to discuss one issue that is very specific to my status of international student . as an international student , i am required to enroll part time at stanford university during the summer quarter in order to be considered eligible for a summer internship ( "" optional practical training "" ) . the cost of the part - time tuition will be approx . $ 2300 for this academic year . the past summer , my employer ( at it would be of course very much appreciated ( given the notoriously precarious financial condition of ph . d . students ) . yet , to make things clear , please rest assured that my acceptance of your offer is not conditioned on your reply regarding this issue , and that i intend to be at enron this summer . all the best , giuseppe - - : : giuseppe a paleologo : : http : / / www . stanford . edu / ~ gappy",0 +"Subject: institutional investor journals profile update confirmation thank you for updating your ii journals profile information . changes to your user id , password and e - mail address have been made . please allow 24 hours for any other changes you ' ve made to take effect in our system . here is the profile information we have for you : account number : 12973228 first name : vince last name : kaminski company name : enron corp position : managing director department : address 1 : 1400 smith st eb 1962 address 2 : city : houston state : tx zip code : 77002 - 7327 country : usa phone : ( 713 ) 853 - 3848 extension : fax : ( 713 ) 646 - 2503 foreign phone : foreign fax : email : vkamins @ enron . com user id : vkaminski password : italia",0 +"Subject: oral surgery vince , anita and kevin : i went to the dentist yesterday afternoon , and unfortunately , i am going to have to have some oral surgery . it is scheduled for 9 : 30 am on thursday the 21 st of september , so i will probably be out the rest of the day . hopefully , i will return on friday , the 22 nd if all goes well . just wanted to let you know . thanks ! shirley * * * * * * anita and kevin : i will also be on vacation next wednesday , the 13 th for one day . thanks ! shirley",0 +"Subject: re : shalesh jim , i agree with you . it just burns your time and mine . i shall take care of it when ravi comes back from vacation . vince from : jim fallon @ enron communications on 06 / 29 / 2000 06 : 38 pm to : vince j kaminski / hou / ect @ ect @ enron cc : subject : re : shalesh vince , ravi never said a word to me and should have closely coordinated with me - otherwise he should have used his own name . i have a problem with ravi acting in that manner . no one is questioning shalesh ' integrity but the associate analyst program called me and stated that shalesh told them that i had requested the move . if he did that he should not have used my name . i am very sensitive to analysts moving within a rotation . it has happened to me numerous times and i do not appreciate the disruption it can cause . if you need shalesh for any reason then he will not be moving . regards jim vince j kaminski @ ect 06 / 29 / 00 05 : 39 pm to : jim fallon / enron communications @ enron communications , celeste roberts / hou / ect @ ect , ravi thuraisingham / enron communications @ enron communications cc : vince j kaminski / hou / ect @ ect subject : shalesh jim , clarification regarding shalesh ' transfer to ebs . the request to rotate shalesh out of research into ebs came from ravi thuraisingham . my understanding was that it was fully coordinated with you and i was more than happy to oblige . shalesh is concerned that his integrity is being questioned and i can assure you that he was not the instigator of the move . my impression is that shalesh is doing a very good job and ravi is very happy him . i shall be glad to keep him in the research group in his current role . have a good 4 th of july . vince",0 +"Subject: new project vasant , vince and i spoke with gary hickerson and michelle cisneros about the consultant ' s power plant model this afternoon . we will take their model ' s interface and recode the calculation engine , incorporating useful insights from the consultant . it help will be available via gary ' s group . so i will spend the next 4 weeks working on this . alex",0 +"Subject: re : suggestion : implementing var based on non - normal log - returns simulations vince , sorry , the files from that directory get deleted periodically . i attached this file here . rabi did some analysis related to implementation of correlated non - normally ( rtdm - distributed ) variables . let ' s discuss later ? tanya . vince j kaminski 12 / 22 / 2000 05 : 58 pm to : tanya tamarchenko / hou / ect @ ect cc : subject : re : suggestion : implementing var based on non - normal log - returns simulations tanya , i could not locate the file . vince tanya tamarchenko 12 / 07 / 2000 01 : 17 pm to : vince j kaminski / hou / ect @ ect , rabi de / na / enron @ enron , jaesoo lew / na / enron @ enron cc : subject : re : suggestion : implementing var based on non - normal log - returns simulations everybody , we were talking for a while about using non - normal distributions in the monte - carlo simulations in our var model . i put together some suggestion regarding this . the text is under o : \ _ dropbox \ tanya \ non _ normal _ logs . doc look through this 3 page document , and let me know what you think , please . tanya",0 +"Subject: henwood stuff and thoughts about valuation did you guys get this ? i was too interested in the conversation to interrupt with comments about risk / return if the decision would be covered in rates , it is the customers ' curves or equivalently the puc ' s curve . i think if i were going to approach valuation in commodities where the assumptions of black / scholes do not apply , i would start with the capm for large industries in an area , use pro formas to translate this to utility curves for the input commodities , and add the utility curves . another issue : the factor that explains why enron is lowest bidder is its role in the market . in the 1930 s , keynes argued that if most market participants with long position were hedgers , futures prices would be higher than spot ; if they were speculators or traders , future prices would be lower than spot . traders must be compensated for holding the risk ; hedgers ( including utilities and consumers ) are willing to pay a premium for the certainty . consequently , enron traders have bigger bid / ask spreads and lower bid prices . just some random thoughts , michael - - - - - original message - - - - - date : 01 / 04 / 2001 10 : 41 am ( thursday ) from : "" heather mason "" to : hq 3 . em 5 ( michael schilmoeller ) mark your calendar - tuesday january 23 , 2001 downtown houston hyatt hotel henwood will be hosting a comprehensive ercot symposium on tuesday , january 23 , 2001 . a team of henwood regional power market specialists will be presenting the latest analysis and information to assist you in preparing for the new ercot restructured power market , in addition to an anlysis of the issues now playing out in the wscc markets . coffee and registration will begin at 9 : 30 am and the program will run until 3 : 00 pm . lunch and snacks will be provided . agenda topics include : * what will be the critical - success factors for qualified scheduling entities operating in ercot ' s new wholesale & retail markets ? * how will market restructuring impact mid to long - term wholesale prices ? * what is the outlook for new generation ? * what are the impacts of upcoming emission regulations on ercot ' s generation resources ? * what are the new analytical tools available to capture market uncertainty impacts to your supply contracts and generation assets ? * what are the restructuring lessons learned from the california experience and the implications to ercot ? in conjunction with this program , henwood will have a demonstration room available to present its latest software applications and e - business solutions . a nominal $ 75 registration fee is required to reserve a space in the workshop . for more information or to reserve your spot , please contact heather mason at henwood : hmason @ hesinet . com or 916 / 569 - 0985 . about henwood : henwood offers integrated business solutions , strategic consulting , and innovative e - business applications to meet the challenges of the restructured energy markets throughout north america , australia , and europe , serving clients that include eight of the ten top utilities in north america , in addition to energy services providers and power marketers .",0 +"Subject: re : energy derivatives conference - may 29 , toronto good morning amy : vince kaminski will need the following : an lcd projector to hook up to a lap tap for his presentation he will have dinner with the conference organizers and speakers on the 29 th . he will need 2 nights ( the 28 th and the 29 th ) hotel reservations . he will send you an abstract shortly . thanks and have a great day ! shirley crenshaw 713 - 853 - 5290 amy aldous on 03 / 31 / 2000 10 : 50 : 11 am to : shirley . crenshaw @ enron . com cc : subject : re : energy derivatives conference - may 29 , toronto ms . crenshaw , thank you for sending the bio so quickly . it ' s exactly what i was looking for . we are planning to compile the conference speakers ' papers for distribution to the participants . while i will not need dr . kaminski ' s contribution for several weeks , an abstract of his presentation as soon as possible would be very useful to the conference organizers . i will also need the following information : - dr . kaminski ' s audio / video equipment requirements for his presentation - will he be joining the conference organizers and speakers for dinner on may 29 ? - which nights will he be staying in toronto ? i will reserve a room at the conference hotel - any dietary restrictions or special requests your help is much appreciated . best wishes , amy at 11 : 50 am 3 / 30 / 00 - 0600 , you wrote : > > amy : > > attached please find a short "" bio "" for dr . kaminski . please let me know > if i can help further . > > > ( see attached file : vincent kaminski bio . doc ) * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * amy aldous , conference co - ordinator centre for advanced studies in finance university of waterloo waterloo , on n 2 l 3 gl tel : ( 519 ) 888 - 4567 ext . 5728 fax : ( 519 ) 888 - 7562 email : aaldous @ uwaterloo . ca * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *",0 +"Subject: re : resume , jinbaek , we shall invite you to an interview in houston . vince jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm to : vkamins @ enron . com cc : subject : resume , dear mr . kaminski , hi , i am a ph . d student at ieor department at u . c . berkeley . thanks for your presentation today . it gave me knowledge and interest in electricity markets , and your company . as you mentioned in the presentation , i send a resume to give me opportunity to learn more about your company . i hope i can join the super saturday event . jinbaek - resume . doc",0 +"Subject: reminder happy new year to all ! don ' t forget to get registered early for this year ' s conference . it promises to be the best yet . the fun stuff is already organized and the program looks to be the best that "" trail boss "" titman has yet produced . notice the "" friendly encouragement "" ( translation discount in the registration fee ) for early registration . the conference info and registration form can be found at happy new year and hope to see you in san antonio in april ! john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : oracle tables which contain the position and curves information for enron ' s var system andreas , as we discussed today , i am sending you some information on how the positions and curves are stored in our database . in the enclosed file you ' ll find the list of columns for 4 tables and 2 quarries as an example . 3 of these tables contain the positions information , 1 table has the curves information . ramesh ( who supports our var model from it side ) will send you the description of these tables . regards , tanya .",0 +"Subject: revised budget allocations please disregard the previous allocations , because i forgot enroncredit . com ! here goes : rac 20 % uk power 15 % uk gas 5 % continental power 15 % continental gas 3 % global products 7 % ebs 10 % ees 10 % enroncredit . com 15 % that should do it . - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 08 / 24 / 2000 10 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - steven leppard 08 / 24 / 2000 10 : 46 am to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , steven leppard / lon / ect @ ect subject : budget hi dale following discussions with vince , grant and stinson , we ' ve drawn up the proposed budget . we ' re working on the basis that research group headcount will grow to 8 in the near future . business trips us : 8 business trips europe : 10 computer software and licences : gbp 10 , 000 office postage : gbp 350 employee recruitment fees : gbp 30 , 000 ( = 3 x 20 % x gbp 50 , 000 ) professional subscriptions and memberships and books : gbp 15 , 000 training courses : gbp 16 , 000 ( = 8 x gbp 2 , 000 ) conferences : gbp 8 , 000 ( = 4 x gbp 2 , 000 ) mobile phones : gbp 1 , 500 ( = 3 x gbp 500 = me + 2 floaters ) hardware : gbp 10 , 000 ( = laptops , workstations ) suggested allocation as follows . . . rac 20 % uk power 20 % uk gas 5 % continental power 20 % continental gas 5 % global products 10 % ebs 10 % ees 10 % . . . unless you ' ve got any other views on this one ( i ' m happy to take advice here ) . vince has said you can give him a call if you want to discuss any of these points further , but i ' m happy to field initial queries ( i ' ll have to get used to it ! ) . cheers , steve",0 +"Subject: re : projects i will be working on or assisting in stinson , shalesh & martin will be on loan / attached to my group for the next few months . this similar to the arrangement that i had originally at ebs . ravi .",0 +"Subject: rtp project mr huntington we at the new power company are very interested in participating in this conference . we are going through a major initiative to shed light on the benefits of real - time pricing and determining the price elasticity of various components of retail demand . kindly include us as participants in this conference . sincerely , anoush farhangi vice president , load research new power company 713 . 853 . 9273",0 +"Subject: re : energy conference - sydney chris , thanks for the invitation . i shall be glad to meet you and your family in sydney at your home . i am enclosing the draft of my part of the chapter . it ' s more than preliminary but i hope to improve it greatly over the weekend . i shall forward you a new version on sunday evening my time . grant is moving along on his part . i hope it reduces the penalty to broken knee - caps . i shall send you a longer message from home to give you an update on my conversations with eprm regarding the articles . vince "" chris strickland "" on 06 / 01 / 2000 07 : 45 : 53 am please respond to "" chris strickland "" to : "" vincejkaminski "" cc : "" julie "" subject : energy conference - sydney hi vince , ? just a friendly reminder that the hired guns are making their way up to houston to visit with you and grant . ? i was reading the promotional material for the eprm conference here in july . i wanted to invite you to dinner at my apartment on the evening between the main conference and the post - conference seminars ( 18 th july ) . we have a pretty spectacular view of the harbour here that you might enjoy . ? best regards . ? chris . ? dr chris strickland ? school of finance and economics , university of technology , sydney financial options research centre , university of warwick , uk ? director , lacima consultants ltd www . lacima . co . uk",0 +"Subject: re : loan documents thanks for the kind words , vince . what a lovely way to start my monday ! molly - - - - - original message - - - - - from : kaminski , vince sent : monday , april 02 , 2001 7 : 40 am to : magee , molly subject : re : loan documents molly , thanks . you are the most dependable person in enron . vince from : molly magee / enron @ enronxgate on 03 / 31 / 2001 04 : 27 pm to : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron cc : subject : loan documents just wanted to reassure both of you that i had not forgotten to draft these documents . i hope to have them complete some time during this next week and will forward them for review . thanks , molly x 34804",0 +"Subject: fw : enron recruitment vince : i ' m sure that you are already aware of this , but i wanted to forward it to you since this didn ' t come up in our meeting the other morning . . . . molly - - - - - original message - - - - - from : koepke , gwyn sent : tuesday , april 10 , 2001 1 : 20 pm to : rtlambert @ mail . jhuwash . jhu . edu cc : molly magee / hou / ect @ enron subject : enron recruitment dear ron , my boss , enron ' s chief international economist , is interested in talking with sais grads who might want to come to houston and do economics work . same drill as last time , looking for someone whose done the quant track but with excellent writing skills . i think i sent you a job description a few months back . can you help identify some candidates , and send their resumes our way ? molly magee is our recruiting expert and she can help setup the interviews with maureen . maureen is still in london on secondment but is available to interview people of the phone . thanks for your help . gwyn",0 +"Subject: linux - - hit or miss ? network world fusion focus : phil hochmuth on linux today ' s focus : will linux be a hit or miss on the corporate desktop ? 03 / 15 / 00 dear wincenty kaminski , today ' s focus : will linux be a hit or miss on the corporate desktop ? by phil hochmuth so far this year , the buzz about linux in enterprise networks has focused on servers and embedded systems , with the growth of linux severs being most heralded . according to idc , a research firm based in framingham , mass . , linux was the fastest - growing server operating system last year , with a 93 % growth rate over the year before . linux was the second most - shipped operating system in 1999 after windows nt , capturing 24 % of new licenses shipped . as for the embedded market , linux has emerged as an ideal platform for network appliances , because the system can be modified to handle specialized , dedicated tasks very well . companies such as cobalt networks , picazo and progressive systems have announced linux - based appliances , ranging from web servers to pbxs to firewalls . but what of the open source hacker  , s dream of  & linux on every desktop ?  8 sure , linux on the desktop has become more accessible than ever , with colorful , shrink - wrapped boxes of caldera , red hat and corel linux now available at places like compusa . however , analysts have said that linux  , s growth in the enterprise will be limited to the macro and micro areas of network servers and embedded operating systems . according to idc , linux currently runs on only 4 % of u . s . desktops . the hold microsoft windows has on the desktop market will remain strong , analysts say , despite such factors as microsoft  , s antitrust problems and the surging popularity of linux . even some linux executives are skeptical of their product  , s desktop future . recently , suse ceo roland dyroff downplayed linux  , s future on desktops . dyroff said ,  & given the lack of applications available , we really can ' t claim it as being competitive on the desktop yet .  8 a recent survey by survey . com gives more hope for linux desktops . according to the survey of 1 , 640 enterprise network managers , open source operating systems are used on 10 % of desktops , with the number jumping to a surprising 23 % of enterprise desktops by 2002 . despite the mix of numbers being thrown around , two important factors that will determine the success of linux as an enterprise client desktop are : a standardized , easy - to - use graphical user interface ( gui ) and available applications . one company that is working to make linux more user friendly is palo alto - based eazel , which is designing a next - generation file management system and user interface to run on top of the linux kernel . according to eazel  , s web site , the company  , s goal is to bring linux to the masses and  & do it in a way that appeals to today ' s linux users and to mere mortals .  8 the company was founded by a group of former apple executives , and is allied with the gnome project , which has been doing extensive linux desktop environment development for several years . eazel is due to have a product out by the middle of this year . with an intuitive , icon - based file management environment , eazel is hoping its user interface will be an improvement over the two current linux guis , gnome and kde , and will help standardized the look and feel of linux for  & regular  8 users . for enterprise mangers who have already embraced linux on the server side , this development will be worth keeping an eye on . on the applications side , several office productivity suites have been available for some time , such as sun  , s staroffice suite and koffice for the kde desktop . corel has also ported its office products , such as wordperfect , over to linux to complement its own distribution of the operating system . while there have been recent rumors ( started by linux care vice president arthur tyde ) that microsoft is working on a port of ms office to linux , microsoft officials deny this . while linux may never supplant windows as the industry - standard desktop , there should be plenty of opportunity for linux pcs in enterprise nets in the future . to contact phil hochmuth : - - - - - - - - - - - - - - - - - - - - - - - - - phil hochmuth is a writer and researcher for network world , and a former systems integrator . you can reach him at mailto : phochmut @ nww . com . for related links - - click here for network world ' s home page : http : / / www . nwfusion . com staroffice software from sun http : / / www . sun . com / staroffice corel linux os http : / / www . corel . com / freedom / freedom . htm eazel http : / / www . eazel . com gnome - - the gnu network object model environment http : / / www . gnome . org koffice - - the integrated office suite for kde , the k desktop environment http : / / koffice . kde . org / cobalt networks , inc . http : / / www . cobaltnetworks . com progressive systems http : / / www . progressive - systems . com picazo http : / / www . picazo . com other linux - related articles from network world : active directory upgrade requires strong game plan , network world , 03 / 13 / 00 subscription services to subscribe or unsubscribe to any network world e - mail newsletters , go to : to change your email address , go to : subscription questions ? contact customer service by replying to this message . other questions / comments have editorial comments ? write jeff caruso , newsletter editor , at : mailto : jcaruso @ nww . com for advertising information , write jamie kalbach , account executive , at : mailto : jkalbach @ nww . com network world fusion is part of idg . net , the idg online network . it all starts here : http : / / www . idg . com copyright network world , inc . , 2000",0 +"Subject: security question dear guys having been out of the office for a couple of days , i ' ve found myself the victim of theft ( again ) . this time my desk drawer key has been stolen from its "" hiding place "" under my telephone . i * always * lock my drawers and keep the key in the same place , but on arriving in the office today i found the drawers unlocked , and the key missing . although there ' s nothing sensitive on or around my desk , i ' m concerned about the security implications of someone sniffing around the office in this manner . i also found the papers on my desk extensively reshuffled last week . last year , in our old office , i had my only two real options books stolen from among the many and varied books on my desk . that couldn ' t have been a random theft , and i fear this isn ' t either . i can ' t understand who ' d be so interested in a research guy ' s belongings ! can we ask security to check their surveillance footage for any suspicious activity around my desk ? cheers , steve",0 +"Subject: position dear dr . kaminski my name is jaesoo lew and i am referred by dr . wayne lee . currently i ' ve been working at aquila energy in kansas city as an pricing analyst since july 2000 . since then , i have developed a natural gas storage valuation model applying the swing options ( forest method ) pricing approach . the price processes would be considered critical for the storage valuation since a trinomial forest is required to value storage . also the c + + programming using excel dll has been developed , too . i attached my resume to this message for your consideration and am looking forward to talking about an opportunity at enron . my home phone number is 913 - 649 - 0578 , dr . kaminski , i will wait your call in this week as dr . lee informed me . if possible , please let me know your expected calling day through the mail . i appreciate your consideration . thank you very much . sincerely , jaesoo lew get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com . - vitae 2 . doc",0 +"Subject: internal guest access to enrononline vince , following is an internal guest id and password which will allow you view only access to enrononline . please note , the user id and password are case sensitive . user id : eol 59545 password : welcome ! if you have any difficulties logging in , please contact the enrononline helpdesk at 713 - 853 - help ( 4357 ) with any questions .",0 +"Subject: re : hello from vince kaminski at enron shmuel , let ' s see if we can either rearrange the seminar speakers or change the date of our visit to the campus . ashley baxter , our coordinator is very efficient and got a faculty room for a presentation on monday morning on the 16 th . vince "" shmuel oren "" on 08 / 29 / 2000 05 : 37 : 33 pm to : cc : subject : re : hello from vince kaminski at enron dear vince . i spoke too soon . apparently the seminar slot on the 16 was already filled . i will see if i can switch the speaker for that week to the following week . in any case we are on for dinner on the 16 . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : cc : ; sent : tuesday , august 29 , 2000 5 : 01 pm subject : re : hello from vince kaminski at enron > > shmuel , > > the date of our trip to berkeley has been set . it will be october 16 th and > 17 th > ( monday and tuesday ) . > > i shall be glad to make a presentation on energy derivatives markets > ( development of the markets in the us and europe , valuation difficulties , > enron ' s role > in developing the forward markets for natural gas and electricity ) . > > please , let me know if this topic would be of interest to you . if this is > the > case , i shall follow with a title and an abstract . > > by the way , are you free for dinner on monday ? > > vince > > > > > > > "" shmuel oren "" on 08 / 24 / 2000 08 : 59 : 38 am > > to : "" vince j kaminski "" > cc : > subject : re : hello from vince kaminski at enron > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me a > title and abstract . > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > shmuel s . oren , professor > dept . of industrial engineering > and operations research > 4117 etcheverry hall > university of california > berkeley , ca 94720 - 1777 > e - mail : oren @ ieor . berkeley . edu > phone : ( 510 ) 642 - 1836 or 5484 > fax : ( 510 ) 642 - 1403 > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > - - - - - original message - - - - - > from : "" vince j kaminski "" > to : "" shmuel oren "" > cc : "" vince j kaminski "" ; "" ashley baxter "" > > sent : thursday , august 24 , 2000 9 : 58 am > subject : re : hello from vince kaminski at enron > > > > > > > > shmuel , > > > > thanks for the message . i am working with our recruiter , ashley baxter , > > to finalize the date of the trip . i shall shoot for october the 23 rd > > if this date works for the rest of our team . > > > > vince > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am > > > > to : vince j kaminski / hou / ect @ ect > > cc : > > subject : re : hello from vince kaminski at enron > > > > > > > > dear vince . > > i sent you a reply earlier this month but i haven ' t heard from you about > the > > date of your visit . our department has a seminar every monday . if you can > > schedule your visit on a monday i would like to invite you to give a > seminar > > which will be attended by many of our graduate students and faculty and > will > > give you an opportunity to tell them about your program . with sufficient > > lead - time i can advertise the seminar in the hass school to their > financial > > engineering students . > > shmuel . > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > shmuel s . oren , professor > > dept . of industrial engineering > > and operations research > > 4117 etcheverry hall > > university of california > > berkeley , ca 94720 - 1777 > > e - mail : oren @ ieor . berkeley . edu > > phone : ( 510 ) 642 - 1836 or 5484 > > fax : ( 510 ) 642 - 1403 > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > - - - - - original message - - - - - > > from : > > to : ; ; > > > > sent : tuesday , august 08 , 2000 10 : 59 am > > subject : hello from vince kaminski at enron > > > > > > > shmuel , > > > > > > i hope you remember me . i visited you together with aram sogomonian , a > > > good friend of mine , a few years ago . i am currently responsible , among > > > other things , for recruiting graduates with finance and / or technical > > > backgrounds at the university of berkeley . i would be glad to give you > a > > > call and talk more about the details of our program . my colleague , > > > ashleybaxter , from the analyst / associate program at enron would join me > > > as well . > > > > > > i am sending you a copy of the brochure about the analyst / associate > > > program . > > > > > > vince kaminski > > > > > > > > > vincent kaminski > > > managing director - research > > > enron corp . > > > 1400 smith street > > > room ebl 962 > > > houston , tx 77002 - 7361 > > > > > > phone : ( 713 ) 853 3848 > > > fax : ( 713 ) 646 2503 > > > e - mail : vkamins @ enron . com > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: bogdan szopa - cv vince : can you give me some background on bogdan ? many thanks . shawn - - - - - - - - - - - - - - - - - - - - - - forwarded by shawn cumberland / enron _ development on 02 / 12 / 2001 08 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - - awenda 2000 @ cs . com on 02 / 11 / 2001 11 : 26 : 12 pm to : shawn . cumberland @ enron . com cc : subject : bogdan szopa - cv dear shawn , it was a pleasure talking to you today . i will call you upon my return from europe . in the meantime we will stay in touch via e - mail . enclosed is my curriculum vitae . best regards , bogdan m . szopa - bogdan res . . doc",0 +"Subject: re : carl tricoli carl , depends if it is more like financial or insurance type hedging . i shall leave it to vasant to decide . vince carl tricoli @ enron 04 / 05 / 2000 11 : 19 am to : vince j kaminski / hou / ect @ ect cc : zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , christopher a helfrich / hou / ect @ ect subject : re : carl tricoli vince , thank you for the response . in the interim , we met with vasant shanbhogue yesterday and explained the deal and what we needed . should vasant continue to work on it , or would you still like us to loop in zimin lu ? vince j kaminski @ ect 04 / 05 / 2000 10 : 11 am to : zimin lu / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , carl tricoli / corp / enron @ enron subject : carl tricoli zimin , carl tricoli ( 5 - 8958 ) will call you regarding help on ethanol ( hedging ) . vince",0 +"Subject: interview schedule good morning : i am attaching dr . valverde ' s interview schedule for thursday , february 1 . when he arrives at the enron bldg . ( 1400 smith street ) , go to the security desk and ask for me . they will call and i will meet dr . valverde at the elevator on our floor . we look forward to his visit on thursday . regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: re : super saturday , june 3 , 2000 dave , i will be glad to participate . vince enron north america corp . from : david w delainey 05 / 23 / 2000 02 : 11 pm sent by : kay chapman to : sally beck / hou / ect @ ect , raymond bowen / hou / ect @ ect , wes colwell / hou / ect @ ect , janet r dietrich / hou / ect @ ect , jeff donahue / hou / ect @ ect , w david duran / hou / ect @ ect , mark e haedicke / hou / ect @ ect , gary hickerson / hou / ect @ ect , mike jakubik / hou / ect @ ect , scott josey / corp / enron @ enron , john j lavorato / corp / enron @ enron , rodney malcolm / hou / ect @ ect , george mcclellan / hou / ect @ ect , julia murray / hou / ect @ ect , jere c overdyke / hou / ect @ ect , david oxley / hou / ect @ ect , kevin m presto / hou / ect @ ect , brian redmond / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , john thompson / lon / ect @ ect , james a ajello / hou / ect @ ect , edward ondarza / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : patti thompson / hou / ect @ ect , marsha schiller / hou / ect @ ect , shirley tijerina / corp / enron @ enron , christy chapman / hou / ect @ ect , tina rode / hou / ect @ ect , janette elbertson / hou / ect @ ect , stella l ely / hou / ect @ ect , nicole mayer / hou / ect @ ect , tonai lehr / corp / enron @ enron , kimberly hillis / hou / ect @ ect , ana alcantara / hou / ect @ ect , yolanda ford / hou / ect @ ect , carolyn george / corp / enron @ enron , donna baker / hou / ect @ ect , rhonna palmer / hou / ect @ ect , felicia doan / hou / ect @ ect , katherine benedict / hou / ect @ ect , barbara lewis / hou / ect @ ect , terrellyn parker / hou / ect @ ect , dusty warren paez / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , nicki daw / na / enron @ enron , kay chapman / hou / ect @ ect subject : super saturday , june 3 , 2000 during our off - site at columbia lakes recently , we identified areas in ena where significant gaps exist that need filling at the analyst and associate level . we have scheduled an off - cycle super saturday on june 3 , 2000 and i would like your participation as an interviewer . we will need approximately 25 - 30 interviewers to fill approximately 30 associate & analyst positions . i am counting on everyone making themselves available on the third to facilitate this priority action item . ted bland will be forwarding information concerning the event to each of you early next week . thank you for your participation . dave",0 +"Subject: alp presentation hi vince ! ! i ' ll take care of the invitations and i am planning to be at the concert on saturday ! thanks ! ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 05 / 01 / 2001 09 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 05 / 01 / 2001 04 : 55 pm to : christie patrick / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron , shirley crenshaw / hou / ect @ ect , melinda mccarty / corp / enron @ enron subject : alp presentation christie , shirley reserved room 49 cl for monday 4 : 00 p . m . presentation . can you issue the formal invitation to our guests with the game / dinner details ? i don ' t have all the details regarding the enron field box and time . i am out most of the day on wednesday but we can discuss the details on thursday . hope to see you on saturday at the concert . vince",0 +"Subject: re : tanya ' s vacation everybody , fyi : i will be out tomorrow 3 / 10 / 00 and all next week ( 3 / 13 - 3 / 17 ) on vacation . grant and vincent can handle urgent matters while i am away . tanya .",0 +"Subject: interviews for gary hickerson - wednesday , november 1 , 2000 mike / vince : your schedule to interview nancy beaty for gary hickerson ' s position is below : wednesday , november 1 mike roberts 4 : 30 pm ebl 938 vince kaminski 5 : 00 pm ebl 938 shirley",0 +"Subject: initial meeting of the ena analyst and associate roundtable august 18 , 2000 just a reminder we will have the initial meeting of the ena / aa roundtable on friday at 9 : 00 am in room eb 30 cl . again , the agenda is as follows : discussion of prc immediate and future aa needs by business unit skill shortages campus and off - cycle recruitment mottom 10 % management projecting aa needs from core schools for summer 2001 intake existing talent in specialist roles who should be in aa program ideas / suggestions on how we improve the program / ena retention your groups need to be represented and if you can ' t attend please send someone to represent you . those of you out of town need to call me if you have any input . thanks again for all your support . ted",0 +"Subject: re : hello guys john , thanks . i have reserved march the 2 nd for the meeting . vince "" john d . martin "" on 08 / 18 / 2000 02 : 02 : 31 pm to : vkamins @ enron . com , sgibner @ ect . enron . com cc : subject : hello guys vince and stinson , just got a copy of the attached paper and thought it may have some interest for you guys . on another note , i am putting together a workshop in the spring on the new economy and business education and will be seeking out some enron network people to join in the discussion ( 2 - hours on friday march 2 nd ) . i ' ll let you know more as we work through the details . the idea is to "" brainstorm "" about the new world you guys work in every day and its implications for what we should be doing . hope this is interesting to you and that you ' ll want to spend the day with us . take care and enjoy the weekend . john - risk . pdf john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : volume ii of the technical corner collection sam , yes , let ' s omit the guys who left the company , but we can include the summer interns . vince enron north america corp . from : william smith @ enron 01 / 09 / 2001 01 : 56 pm to : vince j kaminski / hou / ect @ ect cc : mike a roberts / hou / ect @ ect subject : re : volume ii of the technical corner collection vince , sounds good ! it will take two or three days for me to strip out , reformat , and assemble the kaminski columns ( since we didn ' t do this last year , i ' m guessing you mean all columns since the beginning ) , so i envision us being ready with the completed set the first part of next week . i assume that you would like me to omit those people who have moved on ? also , on page three of the first volume , you had written an introduction . i have updated the content for volume two , but would you perhaps like to do a new one ? sam vince j kaminski @ ect 01 / 09 / 2001 01 : 43 pm to : william smith / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect subject : re : volume ii of the technical corner collection sam , this is a partial list of people to whom i would like to send the volumes : volume 1 & 2 winokur ( enron board member , shirley has his address ) jeff skilling ken lay mark frevert greg whalley rick buy jeff shankman john lavorato dave delainey i shall write the cover letter . also , we can add additional volume for kaminski ' s columns ( just 10 copies ) , including bios and my contributions . i would like to show the depth of talent we have in the group . vince enron north america corp . from : william smith @ enron 01 / 09 / 2001 01 : 07 pm to : vince j kaminski / hou / ect @ ect cc : subject : volume ii of the technical corner collection vince , i have successfully integrated martin ' s article into volume ii and am following mike ' s instructions for reproduction . i ' m also having some additional volume i ' s printed , too . would you mind disposing of the other set i gave you ? i wouldn ' t want things to get confused . also , i ' m doing 20 volume i ' s and 60 volume ii ' s . please let me know how many you personally need and i will deliver them to your office . thank you , sam",0 +"Subject: re : real options vince , if you take a cab , ask them to take you to the college of business building at the corner of 21 st and speedway . the main entrance to the business school is on speedway , across from the old gymnasium . come in the main entrance , which has a large , glass structure , and you will be on the second floor . go to your left and ride up the first set of escalators to the third floor . when you step off of the escalators , you ' ll be facing north and continue in that direction through two sets of glass doors into the northern side of the building . this is where most faculty offices are found . my office is 3 . 218 , which is in the northwest corner of the building . if you have any problems , you should be able to ask directions from most anyone in the halls . i will look for you around 11 : 00 on thursday , and will be happy to provide any other transportation that you need . please let me know if you have any other questions . jim - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , may 02 , 2000 9 : 23 am to : jim . dyer @ bus . utexas . edu cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com ; shirley . crenshaw @ enron . com subject : re : real options jim , i can take a cab or get a rental car from the airport ( thanks for your kind offer ) . i shall appreciate , however , if you could drop me off at the hotel before dinner . the time allocation for my speech is about right . i think i shall need about 90 minutes . please let me know where we can meet on thursday . i shall be at an off - site on wednesday but you can reach me on my cell phone ( 713 410 5396 ) and by sending a cc message to my aol address : vkaminski @ aol . com . i look forward to meeting you . vince jim dyer on 05 / 01 / 2000 01 : 42 : 44 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : sheridan titman subject : re : real options vince , i could pick you up at the airport , or you could rent a car and come to campus . i have made tentative plans for us to go to lunch with some other faculty between 11 : 30 and 12 : 00 , and then you would have some time to visit with sheridan and perhaps with some other faculty members as well between lunch and my class . sheridan and a guest speaker from his class , suresh sundaresan from columbia , will be joining us for dinner . i could provide transportation to your hotel , and pick you up for dinner as well if you consider that to be the most convenient alternative . i will have a pc available in the classroom , with office 2000 and windows nt . you could use powerpoint with no difficulty from that machine , if that ' s most convenient . you could simply email the presentation , and i would have it for you if you prefer . how much time would you like ? i would like to reserve about 30 minutes at the end for a general discussion of issues related to real options , and about 30 minutes at the beginning of class for some remarks regarding the final assignment and a class evaluation by the students ( which is required for all classes ) . at some point , we should take a brief break , so that would leave approximately 1 . 5 to 2 hours for your presentation if you would like that flexibility . otherwise , i could take up the "" slack "" . i look forward to seeing you on thursday . jim - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , april 28 , 2000 11 : 21 am to : jim . dyer @ bus . utexas . edu cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com subject : re : real options jim , i am scheduled to arrive in austin on may 4 at 10 : 32 a . m . i shall be glad to join you and a group of your colleagues for lunch . i am flying back to houston friday morning and we can meet for dinner after the class . i shall have a power point presentation on my pc . i can also prepare a set of transparencies if this is more convenient for you . vince jim dyer on 04 / 27 / 2000 05 : 44 : 51 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : sheridan titman subject : real options vince , i am traveling at this time , attending a nsf meeting in washington . however , i wanted to touch base regarding plans for your presentation in my class on real options next thursday ( may 4 ) . as you recall , the class is from 3 : 30 to 6 : 30 , and you could plan to take a significant part of that time for your presentation . sheridan titman has agreed to join us after his class at about 6 : 00 for a 30 minute "" panel discussion "" with the students on issues related to real options in practice . l i am not sure about your travel plans , but we would be happy to plan lunch on thursday with several of my colleagues . i would also be delighted to be your host for dinner on thursday night if that is convenient for you . i ' ll be back in my office on monday , and will look forward to hearing from you . jim james s . dyer fondren centennial chair in business department of management science and information systems cba 5 . 202 the university of texas at austin austin , texas 78712 - 1175 email : j . dyer @ bus . utexas . edu telephone : 512 - 471 - 5278 fax : 512 - 471 - 0587",0 +"Subject: re : efa meetings tom , thanks for your message . i shall be glad to attend the meeting ( of course a lot may happen between now and then and we may have many unexpected developments in a company as dynamic as enron ) . i want to get back to you at some point with comments on your paper . vince tom arnold on 07 / 03 / 2000 05 : 19 : 48 pm to : vkamins @ enron . com cc : subject : efa meetings hello vince , a colleague and i are hoping to have a panel discussion on energy securities for the coming eastern finance association meetings ( april 25 - 28 , 2001 in charleston , south carolina ) . i was wondering if you or someone you know at enron would be interested in participating in such a meeting . i realize that you may not be able to plan this far in advance and would certainly not be offended in the least if you cannot participate . we already appreciate you taking time out of your schedule this past semester to visit lsu . i hope all is going well and wish you continued success in your ventures , tom arnold",0 +"Subject: sfa licenses iris : i forwarded the information to donna lowry in our compliance dept . however , i am afraid she had bad news . enron would sponsor the renewals , but the us securities group does not recognize uk securities exams without further testing here in the us . she said she would get back with you and explain it in greater detail . but , from what i understand , you will need to take some exam here before renewing . when you hear from her let me know . shirley",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 campos , hector o peyton s gibner nov 06 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 gorny , vladimir theodore r murphy ii nov 02 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 raymond , maureen j wincenty j kaminski nov 02 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 villarreal , norma e sheila h walton oct 26 , 2000 walton , sheila h david oxley oct 27 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: iv for rama gatiganti rm fifth floor se 5001 interview schedule 16 . 30 - 17 . 00 vince kaminski & anjam ahmad 17 . 00 - 17 . 30 ben parsons 17 . 30 - 18 . 00 stephen leppard",0 +"Subject: marketpoint business plan summary greg , e - commerce related proposal from dale nesbitt . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 16 / 2000 10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" dale nesbitt "" on 04 / 06 / 2000 01 : 47 : 15 am to : cc : subject : marketpoint business plan summary vince : thanks very much for your interest in our marketpoint product , and thanks for the hour you gave me this morning . as promised , i am enclosing our executive summary and first chapter from our business plan for you to take forward to your management as a prospective enron - marketpoint investment collaboration . i want to reiterate that should enron elect to be the lead investor here , you will be exclusive in your industry if you want . if enron wants to be the lead and ensure the entire second round of resources we need , we would not offer and investment opportunity to other trading companies , pipelines , or electrics until the third or subsequent rounds and then only with your participation as a marketpoint board member . i am aware you have coinvested with sap in the past and that you might want to coinvest with them again . i presume you would not have a problem with non - competitors such as epri , our management consulting service provider partner , or our vc partner ( but i would want guidance from you in this arena ) . i think you would find our vc partner very suitable and very attractive . they have done several interesting energy and trading plays , and they would provide good management skills i believe . i hope we can move forward together . i am looking forward to a positive response . thanks again and best regards . dale nesbitt ps : you might hear from drew ries of your investments group . i spoke with him after speaking with you about many of the same issues . - longexecsum . doc",0 +"Subject: re : invitation - whartonetevent - apr 20 / plsrsvp hi michael ! sorry i will be unable to attend ! i believe both vince and i are previously committed . thanks ! - - christie .",0 +"Subject: re : f / u to dr . kaminski @ enron from iris mack hi again , here is the second document : 2 . the second word document describes a hybrid derivatives structure i i workded on at bnp paribas . it has applications to the energy industry . regards , iris _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com - real options business specs , part i . doc",0 +"Subject: re : hi , jinbaek , great , i look forward to working with you . please , call me during the next few days ( 713 ) 853 3848 and we can chat about the projects . please , contact molly magee to talk about the first day orientation program . her e - mail address is molly . magee @ enron . com , and her phone number is ( 713 ) 853 - 4804 . vince - - - - - original message - - - - - from : jinbaek kim @ enron [ mailto : imceanotes - jinbaek + 20 kim + 20 + 3 cjinbaek + 40 ieor + 2 eberkeley + 2 eedu + 3 e + 40 enron @ enron . com ] sent : sunday , may 20 , 2001 8 : 07 pm to : kaminski , vince j subject : hi , dr . kaminski how are you ? the process for starting summer work is going well , and there will be no problem we start work on may 30 . i got a place to live , and reserved a flight . i ' m going to leave for houston on may 29 ( expected time to arrival is around noon ) i am very much excited to have opportunity to join the project making an exchange platform . i think it ' s time i ' d better remind you of scheduling a meeting with me , sometime on may 30 . i hope you let me know what to to after i arrive at houston . and please let me know if you have anything you think i prepare , to get better outcome from the summer work . if you give me a brief on the work , it would be a great help for me to decide which material i should carry from here to houston . i look forward to the date we meet , warm regards , jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . '",0 +"Subject: re : i am zhendong sure thing ! - - - - - original message - - - - - from : kaminski , vince sent : thursday , april 12 , 2001 3 : 21 pm to : molly magee / hou / ect @ enron cc : gibner , stinson ; crenshaw , shirley subject : i am zhendong molly , we would like to hire this person for the summer ( standard offer ) . thanks . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 12 / 2001 03 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zhendong xia on 04 / 11 / 2001 09 : 14 : 01 pm to : vince . j . kaminski @ enron . com cc : subject : i am zhendong hi , dr . kaminski : i am zhendong , the student of dr . deng . i think dr . deng has sent my resume to you . i am very happy to have an opportunity to work with you this summer . i am a student in both ms qcf and ph . d eda programs in georgia tech now . i plan to find a job in industry instead of academic after my graduation . so i intend to do internship during the process of prusuing my degree to acquire some experience for my future career . i hope to start on 5 / 14 / 2001 and end on 8 / 17 / 2001 . thanks a lot . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318",0 +"Subject: re : working gas price model vince - i have a simplified version of brad ' s model in mind . the "" no arbitrage "" condition equates trading margins across the country . costs of transmission rise with congestion on the network . wellhead supply is almost completely price - elastic , while burner - tip demand is almost completely price inelastic . storage is rationalized as a perpetual call option . the least time - variant parameters are the costs of injecting and withdrawing gas from storage to the pipeline , followed by the costs of delivering gas from the wellhead to the pipeline . the intermediate - variant parameters are the capacity - dependent costs paid to the pipeline ( above shrinkage ) for transmission . the most time - variant parameters are the trading margins and the valuations of the storage option . there are 8 parameters to be estimated at each major node of the betwork . they are identifiable in either of two straightforward ways : using a short time series of the last 3 days prices based on the assumed variability mentioned above , or point - estimates ( "" calibrations "" ) using only today ' s data based on a node - based model of competition between pipelines where pipes with the same region of origination , albeit markedly different terminus , price versus capacity similarly , "" competing "" for outflows . i will write this up for you in scientific word and present it to you at your earliest convenience . clayton",0 +"Subject: june 21 - 22 retail electricity conference dear workshop participant : i hope you will be able to join us for the conference on "" retail participation in competitive power markets "" to be held at the littlefield conference center , stanford university , on june 21 - 22 , 2001 . conference attire will be business casual . the meeting will begin on thursday morning , june 21 , at 9 : 00 a . m . and will conclude by 5 : 00 p . m . on friday , june 22 . a continental breakfast will be available in the meeting room each morning beginning at 8 : 30 a . m . please visit the "" june 21 - 22 "" meeting under for a description of the meeting and some information about hotels . please help us in our planning by using the form there to respond back to emf about your participation . we have listed potential participants and planned presentations based upon previous messages . please update me with any additional presentations or changes in existing presentations . i look forward to seeing you in june . in the interim , please do not hesitate to call me or email me if you have questions or suggestions regarding this workshop . hill huntington hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: re : var meetings in houston shirley , do you think we can get another room with better speaker phone ? or , may be we can get better speaker phone ? tanya viacheslav danilov 04 / 19 / 2001 12 : 58 pm to : tanya tamarchenko / hou / ect @ ect cc : stig faltinsen / eu / enron @ enron , kirstee hewitt / lon / ect @ ect subject : var meetings in houston hi tanya , in my view it is very good if stig and kirstee are involved in your var meetings . therefore , i think it is very useful for them to call houston . could we get a little bit better equipment to allow them to hear everything well ? many thanks , slava - - - - - - - - - - - - - - - - - - - - - - forwarded by viacheslav danilov / lon / ect on 19 / 04 / 2001 12 : 55 - - - - - - - - - - - - - - - - - - - - - - - - - - - stig faltinsen @ enron 19 / 04 / 2001 16 : 23 to : viacheslav danilov / lon / ect @ ect cc : kirstee hewitt / lon / ect @ ect subject : var meetings in houston hi slava , kirstee and i find it useful to listen in on the var meetings in houston on wednesdays . however , it is very difficult to follow the discussion due to a practical problem : we hear little or nothing at times . a possible solution to this problem might be to ask whether one could install a "" spider phone "" in the var meeting room . what i mean is a phone similar to the one in the rac morning meetings which have several remote speakers going out from the main phone ( do you understand what i mean ? ) . if this is done , we would hear everyone around the table , not just those seated close to the phone . what is you opinion on a . us in london calling in to these meetings b . getting some better equipment which would make it easier to follow the conversation ( "" spider phone "" or bigger speaker . . ) please let me know what your thoughts are , best regards , stig ",0 +"Subject: re : enron case studies eric , i have one on egs , one on dhabol and a recent one on entrepreneurship in enron . you can buy the case studies from the hbs web - site . vince eric gadd 11 / 13 / 2000 05 : 36 am to : vince j kaminski / hou / ect @ ect cc : subject : re : enron case studies vince , what case studies do you have on enron ? vince j kaminski 10 / 11 / 2000 16 : 15 to : eric gadd / lon / ect @ ect cc : mark palmer / corp / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : enron case studies eric , i have a number of case studies on enron but not the one on sutton bridge . i know that peter tufano was working on it but when i checked the hbs site and tried to purchase it , i could not locate it . when i talked to peter a few months ago , he told me that the case study was ready and he was going through enron ' s internal approvals . i cc mark palmer on it . maybe he knows about this specific case study . i wander if it was completed , given sutton bridge developments . vince eric gadd 11 / 10 / 2000 05 : 49 am to : vince j kaminski / hou / ect @ ect cc : subject : enron case studies vince - where might i find copies of the case studies enron has published ? i ' m particularly interested in the sutton bridge publication for havard but would like to know if there is a library of case studies .",0 +"Subject: meeting on feb 8 , 2001 dear sir , i would like to apologize for the delay in responding to your fax . i was on vacation for the last few days . i shall be honored to meet your delegation on thursday , february 8 at 10 : 00 a . m . please , let me know if you will be free for lunch after the meeting . vince kaminski",0 +"Subject: real options conference - speaker confirmation dear steven , further to our conversation i am delighted that you will be speaking at the forthcoming real options conference which will take place on monday 27 th & tuesday 28 th november in central london . i have attached the pdf of the conference vince spoke at in february and the draft programme of the november conference . as discussed could you please email me with a suggested talk title and between 5 and 8 bullet points to be included in the conference programme . it would be great if you could emphasise the practicality of your talk and that you will be using your own experience of working with real options at enron as part of the talk . if you do have the delegate list from the iqpc conference it would be useful to see who attended so that we can improve on our marketing for the conference in november . you can either email me or fax it to me on 020 7393 0313 . i look forward to receiving your talk in the next day or so . kind regards julia julia shaw senior conference producer tel : 020 7915 5650 fax : 020 7915 5001 email : jshaw @ iirltd . co . uk web address : www . iir - conferences . com - prog 3 . pdf - talktitles . rtf",0 +"Subject: re : d - g energy laine , i can initial it . please , contact beth perlman as an it officer . i shall explain the reason we are buying the software to her . i want the software to reside in our london office - the software is used primarily by european utilities and we shall use it as a pricing tool in negotiations with european clients . vince from : laine borgman @ enron on 11 / 29 / 2000 09 : 29 am to : vince j kaminski / hou / ect @ ect cc : subject : d - g energy vince , i am circulating the d - g energy software license agreement for signature . i need for you or your senior director to initial and i also need to know if you have identified an enron officer within it to execute on behalf of enron corp . please let me know . thanks , laine",0 +"Subject: re : weekly report vasant thanks for your clarification . i understand how this can happen and i feel better for having heard from you folks . rgds dp - - - - - original message - - - - - from : shanbhogue , vasant sent : thursday , march 08 , 2001 5 : 33 pm to : port , david cc : kaminski , vince ; kindall , kevin subject : weekly report hi david , i understand that you were slightly upset over a comment kevin kindall made in one of his weekly reports . the wording was unfortunate , but the intention was never to disparage anybody . it is just that since research gets data from a large number of sources , we feel obligated to the data donor to ask any requester for clarification of need . i completely understand that rac typically has access to much sensitive information and they have a right to know much information . we just want to make sure there is open flow of information ( it is in everybody ' s best interests and the company ' s best interests ) and that everybody is aware of how data is flowing . best wishes , vasant",0 +"Subject: ewrm update , july 7 th . rick attached please find the project update . thanks , ding .",0 +"Subject: resume forwarded at request of brian mihura vince - this is the resume i told you about p - - - - - forwarded by paula corey / enron communications on 01 / 29 / 01 03 : 37 pm - - - - - mateog @ gofree . indigo . ie 01 / 29 / 01 02 : 58 pm to : paula corey / enron communications @ enron communications cc : subject : resume forwarded at request of brian mihura dear paula : my name is matt gunning and i am a friend and former colleague of brian mihura . brian mentioned that you would be interested in seeing my resume , which i have attached . if you have questions or need more information , please contact me . thank you for your consideration . - attl . htm - resumel . wps",0 +"Subject: re : portcalc methodology keith , both power and emrs use a c library provided ( also implemented ) by research group . the methodology of greek calculations in power portcalc has not changed for more than 6 years since i joined enron 6 years ago . vince kaminski , stinson gibner or grant masson should be able to help you with both questions . zhiyong keith bowie 06 / 28 / 2000 04 : 22 am to : zhiyong wei / hou / ect @ ect cc : brian hudson / lon / ect @ ect subject : portcalc methodology zi i ' ve been asked by risk management : a ) who in research originally signed off the portcalc formulae b ) for a copy of the documentation of the methodology ( greek calculations , etc . ) hope you can help on both counts . thanks keith",0 +"Subject: re : reschedule clayton , no problem . i asked shirley to reschedule . vince clayton vernon @ enron 01 / 29 / 2001 12 : 38 am to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , tom barkley / na / enron @ enron subject : reschedule vince - i apologize , but something has come regarding this afternoon . my server ' s os is acting up , and is affecting all of my apps right now . can we think about later this week ? i promise it will be worth it to you . the eol stuff is nice . again , my apologies . clayton",0 +"Subject: thomas knudsen interview guys i ' m out of the office until wednesday next week . i ' ll chase you up for feedback on your video interview with thomas next week ( if i don ' t get any from grant before then ) . i thought i ' d better clear up the fact that you ' re the only research people ( except me ) to have spoken to thomas so far . although vince agrees that he ' s a strong candidate , anjam was strongly opposed to thomas ' s being brought in for interview . i thought last night ' s video interview was a reasonable way to get an objective view from other research guys . cheers , steve ( thomas ' s cv attached for dale ' s reference : )",0 +"Subject: new timesheet procedures hello everyone : just when you get used to something it changes ! as you may have heard , enron is implementing a new time entry system as part of the july 1 sap implementation . time entry for the june 16 th - 30 th period must be entered into sap by 3 : 00 pm cst on june 30 th . as your timekeeper , i will assist with this process and ensure that we meet this very important deadline . i will continue to do the time sheets for the 19 th floor and for osman and samer . sam smith and / or kevin moore will be responsible for the timesheets for the weather group on the 32 nd floor . time can be entered in sap in two ways : ? you can enter your time yourself using the new ehronline feature ; or , ? timekeepers can enter time on your behalf . if you are unsure as to which approach you should use , please call me . please remember that all time for this period must be submitted before 3 : 00 pm cst , on june 30 th . for those of you using ehronline : first of all , congratulations on taking this next step toward enron  , s vision of empowering the employee . by using the new ehronline feature , you are helping enron to realize the value in this sap implementation . hopefully , you too , will receive value from having instant access to your personal information . the new ehronline functionality is : ? easy to use ? accessible through the enron intranet at ehronline . enron . com using this feature , you can not only enter your own time , but also maintain : ? your profile information ( skills , education , and experience ) ? home address ? phone numbers ? w - 4 changes ? emergency contact information additionally , you will be able to view your individual pay advice and benefit elections . you will receive your personal id and password via e - mail from sap _ security by june 22 nd . because of the confidentiality of the information accessible using ehronline , it is important that you keep your id and password confidential . if you do not receive your information by the end of the day on june 22 nd , please call the coe at ( 713 ) 345 - 4 sap to obtain your id and password . the apollo & beyond team has teamed with ebs to deliver training on how to enter time using ehronline via ebs  , new product enroncast . this tool is available to you on your desktop . you can access enroncast at www . enroncast . com and follow the instructions . step by step guides - http : / / sap . enron . com / coe ? enter time via ehronline ( employee ) step by step procedure ? correct time via ehronline ( employee ) step by step procedure ? enter time via ehronline ( non - employee contractor ) step by step procedure ? correct time via ehronline ( non - employee contractor ) step by step procedure ] for those of you who need me to enter your time : attached is a manual time entry form that i must have completed and returned by june 28 th . please estimate the last two days of the period as accurately as possible . if necessary , i can make corrections on the next time entry period . if you do not want to use this form , i will have hard copies at my desk and will be glad to help you fill them out . i know this is creating more work for everyone , but what can i say ? where can you get help ? i am here to help you with the new coding necessary on your timesheet . also , if you do not know which absence or attendance type you should use , please come see me or give me a call . if you have other questions or are experiencing problems , you can also get help from any of the following places : center of expertise ( coe ) the center of expertise can help answer many of your questions and provide you with assistance if you are experiencing problems . the coe is available 24 hours a day from monday at 7 : 00 am cst through friday at 7 : 00 pm cst . you can contact the coe at ( 713 ) 345 - 4 sap . dedicated support personnel during the time period right after the initial  & go live  8 the project team has dedicated additional resources to help support you . these resources can be contacted at : marla hernandez at x 39763 for now and after 6 / 22 at x 31645 at workstation # eb 3661 b mark timmons at 57919 for now , pager number 888 - 620 - 3896 , at workstation # eb 3667 a regards , shirley 3 - 5290",0 +"Subject: edith terry scott , i spoke briefly with edith terry from our dc office . there is not a good fit for my group but she could be a great asset for you . i have her resume in case you are hiring and would like to take a look at her . vince",0 +"Subject: may 9 / 10 , 2000 seminar my name is guillermo c ? novas , and i am regulatory and government affairs director for enron am , rica del sur ( argentina ) . i understand you spoke in a seminar that took place on may 9 / 10 where it was discussed : 1 ) effective power price modelling ; 2 ) applying a real option approach for the valuation of power plants . one consultant and researcher , who shares enron ' s belief in open markets and competition ( and therefore is helping us to open argentine energy markets ) , asked me if we could send him a copy of the booklet or slides that you and other speakers presented during the seminar . if this is feasible , i would appreciate if you could send a copy of the material to me at enron am , rica del sur , located at : av . eduardo madero 900 - piso 17 ( 1106 ) - buenos aires - argentina please , do not hesitate to contact me should you have any questions or require further information . i can be reached at the following number : 5411 - 4891 - 3600 sincerely , guillermo .",0 +"Subject: risk desk , issue # 1 hello - - listen , wanted to make sure you received a copy of our newest publication last week , the risk desk . because of the size of the files we sent out , quite a few bounced back because some corp firewalls halt emails over a certain size . anyhow , if you didn ' t receive the issue , hit the reply button and type "" resend risk desk . "" responce so far has been great for those of you that received the free copy - - we think you ' ll agree that it ' s soon to become the leading "" must read "" publication on market , credit , price and operational risk management in the energy space . also , just a reminder , the charter price for a one year subscription ( $ 199 ) ends soon . let us know . john sodergreen editor - in - chief scudder publishing group , llc ph : 410 / 923 - 0688 fax : 410 / 923 - 0667 johns @ scudderpublishing . com the desk , the risk desk , power executive the bandwidth desk , energy ebusiness",0 +"Subject: today ' s idea dear mr . kaminski , attached , there are 2 new samples of our daily market research : today ' s issue of the morning faxes fixed income today and financial markets today . we also have intraday market coverage , on bloomberg : idea > go , reuters : idus , and bridge / telerate . if the info looks useful , we ' d like to arrange a free 30 - day trial for you and your colleagues . for your reference , please find our price list attached . i look forward to your reply . best regards , vadim pokhlebkin account manager vpokhlebkin @ ideaglobal . com tel . + 1 212 571 4332 fax + 1 212 571 4334 ideaglobal . com 140 broadway , 21 st floor new york , ny 10005 , usa any views expressed in this message are those of the individual sender , except where the sender specifically states them to be the views of ideaglobal . com . this email , its content and any files transmitted with it are intended solely for the addressee ( s ) and may be legally privileged and / or confidential . access by any other party is unauthorized without the express written permission of the sender . if you have received this email in error you may not copy or use the contents , attachments or information in any way . please destroy it and contact the sender via the ideaglobal . com switchboard in one of the following three offices : new york + 1 212 571 4332 ; london + 44 171 430 2888 ; singapore + 65 332 0700 - fito 317 a . pdf - fmto 317 n . pdf - onesheet . doc",0 +"Subject: re : credit reserve simulation for ees one the outputs would be expected loss for each of the trials ( flat file ) and a graph depicting the distribution ( example below from an early owens illinois model ) - - - - - original message - - - - - from : de , rabi sent : thursday , february 22 , 2001 3 : 20 pm to : o ' leary , martin ; tribolet , michael ; estrems , connie ; bradford , william cc : tamarchenko , tanya ; dhar , amitava ; kaminski , vince ; kiatsupaibul , seksan ; issler , paulo subject : credit reserve simulation for ees amitava and seksan have identified the source of the discrepancy between the option prices calculated by the credit - reserve model and the stand - alone spreadsheet model used in deal pricing . we expect to put a fix in place by tomorrow . in response to your desire to see more output from credit reserve simulation , i have identified a list of possible items that may be of interest to you for credit pricing . 1 . potential exposure across time 2 . for each simulated credit event , display : default time exposure - - is deal - by - deal breakdown of any interest ? commodity forward curves ( or spot price ? ) at default time i would appreciate it if you could let me know your wish list at your earliest . thanks , rabi de 5 - 4593",0 +"Subject: re : eol wti historical trade simulation stinson , thanks a lot for so much work you have done for the simulation model . it seems that our work will make an impact on eol trading , that is very exciting . could you e - mail me the spreadsheet model so that i can catch up with the changes you have made ? i read a few books during this vocation . especially a stochastic processes book , i finished the entire book . the queueing theory is very fascinating , and hopefully we can apply the theory to a real ebs project . i will take my family out to see the nature bridge caverns near san antonio tomorrow . see you on tuesday . happy new year ! zimin stinson gibner 12 / 27 / 2000 08 : 09 pm to : greg whalley / hou / ect @ ect , john j lavorato / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , zimin lu / hou / ect @ ect subject : eol wti historical trade simulation greg , here are results corrected for spread profit per round - trip transaction . prior results incorrectly counted a spread profit per trade . stinson",0 +"Subject: the latest ( last ? ) . . sorry . . . i found something else : p . 1 , footnote : the newspaper is the "" houston chronicle "" ( purchased the ' post ' several years ago ) . . : - ) - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 05 : 34 pm - - - - - christie patrick 02 / 07 / 2001 05 : 27 pm to : mark palmer / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , j _ martin @ baylor . edu subject : the latest ( last ? ) . . as columbo would say . . "" . . just one more thing "" p . 20 last bullet : enron focusing on recruiting and retaining talent thanks again ! christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 05 : 24 pm - - - - - christie patrick 02 / 07 / 2001 05 : 23 pm to : mark palmer / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , j _ martin @ baylor . edu subject : the latest ( last ? ) mark ! please review the attached article and forward your comments / authorization for its use to john martin at baylor , copying me and vince . john and vince , i have a few simple comments : 1 . please use "" enron corp . "" [ rather than "" enron corporation "" ] 2 . page 3 : as of yesterday , fortune magazine named enron "" most innovative "" for the sixth year in a row 3 . page 5 : 2 nd paragraph : regarding the "" gas bank "" concept - - i believe when jeff first introduced it , it fell flat . i think john pick ' s that up ( and enron ' s subsequent recovery of a version of the concept on p . 6 ) , but it ' s probably accurate to mention that at first , it didn ' t go over . 4 . page 13 : re : cindy olson ' s comment on a possible 5 x difference between a "" satisfactory "" and "" superior "" vp - - the difference referred to is probably the "" bonus "" rather than "" compensation "" ( which , to me , is generally means base salary ) ; also , it varies for each review period , as comparative performance might vary ; further , we might want to run that quote by cindy just to make sure she ' s ok with it ' s publication ( she might have no problem with it whatsoever , but i know for other articles , she ' s been more reluctant to provide that kind of statistic ) . 5 . page 17 ( after annual report quote ) : i suggest changing "" enron ' s wholesale business . . . provides "" to "" . . . businesses . . provide "" ; also , rather than "" enron wholesale "" we might want to define this by the term enron uses : "" enron wholesale services "" 6 . page 18 : 2 nd paragraph : the tense switching from past to present is technically correct if read carefully , but seems awkward when reading it 7 . page 19 : effective february , jeff skilling is "" ceo "" . . . . that ' s my 2 - cents worth ! ! i think the article is great . . . even interesting ( ha ! ) . . . even to non - mba ' s like me ! ! thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 04 : 41 pm - - - - - vince j kaminski 02 / 02 / 2001 08 : 45 am to : mark s palmer / na / enron @ enron cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect subject : the latest ( last ? ) mark , i am sending you the final ( ? ) draft of the paper by john martin on enron ' s transformation . john martin is a prof from baylor who visited us a few weeks ago . can you take a look at the paper and bless it . i haven ' t read this last version of the paper yet and i will go through it on weekend . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" john d . martin "" on 02 / 01 / 2001 04 : 15 : 36 pm to : vkamins @ enron . com cc : subject : the latest ( last ? ) vince , attached is my latest attempt to wrap everything together . our timetable is very short as we need an "" approved by enron "" version of the paper to don by next wednesday . don has already made editorial changes for us and may make some additional "" writing style "" changes but he doesn ' t change the content . i ' ll give you a call later today to alert you to the e - mail . take care , john p . s . i had a nice conversation with steve . sounds like he ' s landed a pretty good contract with wiley . - enron _ paper _ 2 _ 1 _ 01 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : telephone interview with the houston research group dear dr . kaminski i am sorry i missed your phone call today . i was waiting for your call until 7 : 50 am ( australia time ) this morning . my mother - in - law told me you ringed me at 8 : 05 . i guess we made a mistake at the time difference . i promise i won ' t leave home tomorrow until i receive your call . your faithfully quentin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 625 tel : ( 07 ) 33461428 department of mathematics , the university of queensland - - - - - original message - - - - - from : to : cc : ; ; sent : tuesday , 15 august 2000 2 : 09 subject : re : telephone interview with the houston research group > > hi quentin : > > i have scheduled the interview for 7 : 00 am , thursday , august 17 ( your time > 5 : 00 pm wednesday , august 16 , our time ) . they will call you at your home , > 011 - 61 - 7 - 38798780 . > > regards , > > shirley crenshaw > > > >",0 +"Subject: re : from today ' s paper clayton , it translates into a credit risk for those on the other side of the hedge . many producers have a long history of poor timing of hedges . i could give you quite a long list . they definitely need a bright adviser who will tell them the price of gas two years from now . vince clayton vernon @ enron 06 / 29 / 2000 01 : 02 am to : vince j kaminski / hou / ect @ ect cc : subject : from today ' s paper vince : here ' s an amazing factoid in today ' s paper related to the issue of how much money you can "" make "" ( sic ) by hedging : . . . other companies analysts say are saddled with hedges include el paso energy corp . and coastal corp . , which are merging . a coastal official declined to comment on the company ' s forward positions . although el paso is known for its pipeline business , it produces gas as result of its $ 6 . 2 billion acquisition last year of sonat . "" more than 90 percent "" of that gas is hedged through the rest of the year , said bruce connery , vice president of investor relations . the forward contracts are for $ 2 . 40 , he said . hedging in the current market plays to the company ' s primary aim of meeting investors ' expectations , connery said . "" our first goal is to deliver the earnings goal that we set out , and that dictates that we hedge out commodity volatility , "" he said . . . . $ 2 . 40 ? ? ? are you kidding ? ? ? ? clayton",0 +"Subject: re : current var issues here are the current issues related to var and credit models : 1 . factor loadings ( fl ) for all "" primary "" commodities : - the code is tested ; - factors loadings have been calculated for every primary curve and examined closely by research ; - using different number of maturities for fl calculations ( it ) ; - selecting "" good "" curves , setting mappings for the others ( rac ) ; 2 . reviewing power var model : - implementing term structure of correlations ( preliminary research is in progress by research , to be implemented by it ) ; - implementing caps in var model ( it ) ; - jumps for intramonth prices ( re - examine prices behavior , research ) ; 3 . historical ff vols ( research , rac ) ; 4 . interest rate and fx : - preliminary research is completed ( research ) ; - implementation in risktrack ( it ) ; 5 . credit model : - resolving the problem of identical runs giving different results ( it with research ' s help ) ; 6 . mg metals var model : - merging with risktrack ( rac , it , research ) ; - refining the model ( research ) ; 7 . var calculations for uk curves : - merging with risktrack , elimination spreadsheets ( rac , it , research ) ; - looking closely at var calculations for each commodity ; 8 . merchant portfolio var : - unification with equity var model ; 9 . fat tails modeling ( research ) ; let me know what i missed . thank you , tanya .",0 +"Subject: presentation to dave delainey good morning : vince ' s direct reports will give a presentation to dave delainey , monday , april 24 th at 3 : 00 pm in conference room eb 3321 . this presentation will be an update of the one that was given to greg whalley . if you have any questions , please call me . thanks ! shirley 3 - 5290",0 +"Subject: a message from ken lay and jeff skilling with deep regret we announce that joe sutton , vice chairman of enron , has decided to leave the company . joe has indicated his desire to pursue other opportunities in the energy asset development and operations business . joe has been instrumental in making enron a global company . we will miss his energy and enthusiasm . we wish joe the very best as he pursues new endeavors . ken and jeff",0 +"Subject: order confirmation thank you for your order . instructions regarding any electronic product purchases and a full order summary are listed below , beginning after the special announcement . special announcement introducing hbr onpoint , an indispensible new resource from "" harvard business review "" that makes it faster and easier to put important management thinking to work . hbr onpoint gives you : * a quick overview of critical management concepts * different experts ' views on a given topic * the context critical for sharing and applying the knowledge you ' ve acquired to learn more and pick up a free article overview , visit our web site : below you will find your order information . if you have any questions concerning this order , please e - mail us at orderreceipt @ hbsp . harvard . edu ( or just reply to this message ) . for technical inquiries , email us at techhelp @ hbsp . harvard . edu your order reads as follows : - - - - - - - - - - - - - - - - - - - - - - - - - - - - customer ' s web id : 431620 sold - to no : 148820 sold to information : first name : wincenty last name : kaminski institution / company name : enron corp job title : managing director mail stop / dept . : ebl 962 address : 1400 smith address : city : houston state : tx zip / postal code : 77002 country : united states email address : vkamins @ enron . com phone number : 713 853 3848 fax number : 713 646 2503 attn : name of person who placed order : wincenty kaminski - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - billing information : first name : wincenty last name : kaminski institution / company name : enron corp job title : managing director mail stop / dept . : ebl 962 address : 1400 smith address : city : houston state : tx zip / postal code : 77002 country : united states email address : vkamins @ enron . com phone number : 713 853 3848 fax number : 713 646 2503 attn : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - shipping information : first name : wincenty last name : kaminski institution / company name : enron corp job title : managing director mail stop / dept . : ebl 962 address : 1400 smith address : city : houston state : tx zip / postal code : 77002 country : united states email address : vkamins @ enron . com phone number : 713 853 3848 fax number : 713 646 2503 attn : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - order prod . # product title quantity price total 297055 copper and zinc mark . . . 1 $ 6 . 50 $ 6 . 50 293053 sally jameson : valui . . . 1 $ 6 . 50 $ 6 . 50 sub - total : $ 13 . 00 surcharge : $ 0 . 00 shipping and handling : $ 4 . 00 gst : $ 0 . 00 tax : $ 0 . 00 grand total : $ 17 . 00 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - total due : $ 0 . 00 ( pre - paid by visa ) shipping method : standard delivery u . s . , 48 states * please note that there is applicable sales tax in ca , ct , il , ma , md , and tn for the products you have ordered . if you are ordering from one of these states , the amount shown on your invoice and / or credit card statement will be slightly higher than the total listed above , to reflect the applied sales tax . * mailing lists are a great way to keep up with what ' s going on at the harvard business publishing web site . right now , we offer 3 alerts : management alert , strategy alert , or hr / training alert . each of these e - mail newsletters regularly combines a specially selected excerpt with announcements of new and bestselling products from our extensive catalog . you can also find out what ' s coming up in both harvard business review and harvard management update newsletter . to subscribe to one or more of these free services , follow the link below . and thank you for ordering from harvard business school publishing , the power of ideas at work . ",0 +"Subject: re : tage resume submittal vince , thanks for forwarding the resume . we have generally had great success with ex - koch people . he sounds might like he may be a good fit for michael l . miller in principal investments . at this point i have very recently inherited two other stron vps from ei and therefore will probably focus on a few manager and associates for the near term but i would like to keep james ' resume for further opportunities . he sounds like someone we should at least meet with and figure out a spot within wholesale services . what do you think ? regards , - larry -",0 +"Subject: re : visit vince , > please , give me a call when you land on my regular and cell phone . > i shall proceed to the restaurant ( about 10 minutes from the office ) . > please , keep the copies of all the receipts . 10 - 4 . see you approx . 7 p . m . this evening . ehud ehud i . ronn department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : energy derivatives hi vince , hope all is well with you . i ' m looking forward to seeing you again next week and meeting with grant . can you guys do me favour ? i ' m sending out some sample chapters to the people who responded positively ( all of them ! ) to my request for some feedback on the book . chapter 1 has an ' overview ' of the book with just a couple of sentences on each chapter . could you please write a sentence or two for your chapter ? i ' m including what i have already written so that you can see the style . many thanks and best regards . chris . 2 overview of this book this book aims to provide an in - depth understanding of the pricing and risk management of energy derivatives . in the remainder of this chapter we give an overview of the fundamental principals needed to model and price energy assets , and which underlie the rest of the book . as well as introducing the techniques that underlie the black - scholes modelling framework we discuss the numerical techniques of trinomial trees and monte carlo simulation for derivative pricing which are used extensively later in the book . in chapter 2 we analyse spot energy prices . apart from describing empirical prices we propose a number of processes that can be used to model the prices . we look at the well - know process of gbm as well as mean reversion , stochastic volatility and jump processes , discussing each , and showing how they can be simulated and their parameters estimated . chapter 3 , written by vince kaminski and grant masson of enron capital and trade . chapter 4 examines forward curves in the energy markets . although such curves are well understood and straight forward in the world debt markets the difficulty of storage in many energy markets leads to less well defined curves . what we do in this chapter chapter 5 presents an overview of the common and not - so - common derivative structures in the energy markets and discusses their uses . examples of products analysed in this chapter include a variety of swaps , caps , floors and collars , as well as energy swaptions , compound options , asian ( or average rate ) options , barriers , lookbacks , and ladder options . chapter 6 investigates single and multi - factor models of the energy spot price and the pricing of some standard energy derivatives . closed form solutions for forward prices , forward volatilities , and european option prices are derived and presented for all the models in this chapter including a three factor stochastic convenience yield and interest rate model with jumps . chapter 7 shows how the prices of path dependent and american style options can be evaluated for the models in chapter 6 . simulation schemes are developed for the evaluation of european style options and applied to a variety of path dependent options . in order to price options which incorporate early exercise opportunities , a trinomial tree scheme is developed . this tree is built to be consistent with the observed forward curve and can be used to price exotic as well as standard american style options . chapter 8 develops a new methodology for valuing energy options based on modelling the market observed forward curve . the approach results in a multi - factor model that is able to capture realistically the evolution of a wide range of energy forward curves and where the user defined volatility structures can be of an extremely general form . closed - form solutions are developed for pricing standard european options and efficient monte carlo schemes for exotic options . the chapter finishes with a discussion of the valuation of american style options . chapter 9 focuses on the risk management of energy derivative positions . in this chapter we discuss the management of price risk for institutions that sell options or other derivatives to a client and who is then faced with the problem of managing the risk through time . we begin with delta hedging a portfolio containing derivatives and look at extensions to gamma hedging - using the models from chapters 5 and 7 . the general model of chapter 7 ideally suited to multi - factor hedging and this is also discussed . chapter 10 looks at the key risk - management concept of value at risk applied to portfolios containing energy derivative portfolios . after discussing the concept of the measure , we look at how the key inputs ( volatilities , covariances , correlations , etc ) can be estimated . we then compare the fours major methodologies for computing var ; delta , delta - gamma , historical simulation and monte - carlo simulation . finally , we look at testing the var estimates for various underlying energy market variables . finally , we finish with credit risk in energy markets in chapter 11 .",0 +"Subject: interview - jaesoo lew 10 / 25 / 00 attached please find the resume , interview schedule , and evaluation form for jaesoo lew . jaesoo will be interviewing with vince kaminski ' s group on an exploratory basis on october 25 , 2000 . please contact me with any comments or concerns . thank you , cheryl arguijo ena recruiting 713 - 345 - 4016",0 +"Subject: re : re : conference volume hi vince , i am resending you this request by dr . jacque for a paper . they are expecting something by jan 22 . should we sit down and decide on what to put in a short paper ( i think their limit was 30 pages , but that is impossible - - i think a few pages should suffice ) . regards , and happy new year , vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 06 / 2000 08 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - - laurent jacque on 12 / 13 / 99 03 : 29 : 26 pm please respond to ljacque @ infonet . tufts . edu to : vasant shanbhogue / hou / ect @ ect cc : subject : re : re : conference volume dear dr . shanboghe : i certainly understand that it would be difficult for you to contribute a chapter . i thought of an alternative : would dr . kaminski be willing to allow us to reprint his article ( in an abridged form ) on "" energy exotic options "" published in his excellent book "" managing energy price risk "" as i would really like to have a contribution from enron on energy derivatives . would you be willing to talk to dr . kaminski about my proposal ? in any event i appreciate your interest in the conference and i only regret that hurricane floyd prevented us from meeting in person . with very best wishes in the new year / millenium laurent jacque _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ laurent l . jacque professor international finance & banking director international business studies program the fletcher school of law and diplomacy tufts university medford , ma 02155 ( 617 ) 627 - 5982 tel ( 617 ) 627 - 3712 fax ljacque @ infonet . tufts . edu",0 +"Subject: interview with the enron research group good morning mr . giancola : your resume was forwarded to vince kaminski , managing director and head of research with enron . we would like to bring you in for an informal interview at your convenience . this would be for a position of "" economist "" or "" associate economist "" , reporting to maureen raymond castaneda . please give me some dates and times that would be convenient with you and i will have our hr rep contact you to schedule your coming to houston . i look forward to hearing from you . sincerely , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290",0 +"Subject: strategic management society conference our proposal was accepted . dust off your san francisco shoes . rita mcgrath - the designer of our particular panel - will forward details when they are sent to her by sms",0 +"Subject: e - commerce conference at berkeley , may 22 any interest in this conference ? vince",0 +"Subject: additional attachments vince : i forgot to attach the final slam report , the file of the white paper , the white paper calculations . the final slam report discusses the availability of service level agreement monitoring , and nms generally that meet ebs ' s needs . i am convinced that at a minimum ebs would gain the foundation of a great nms that will be critical to the success of ebs , and that ebs could actually gain the distributed machine tool that could be the foundation of the internet of the 21 st century . i hope we get the chance to prove this . let me know if i can be of further assistance . mak - final s l a m report september 1999 . zip",0 +"Subject: contract for henwood engagement sandeep , bonnie nelson , who has drafted the attached contract for the henwood engagement , feels that we should make every attempt to put a written agreement in place immediately . otherwise , we may be in violation of enron policy regarding contract work . can you review the document prior to coming back to houston , so that it can be sent to henwood ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 19 / 2001 04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - bonnie nelson @ enron _ development 01 / 19 / 2001 11 : 54 am to : stinson gibner / hou / ect @ ect , bruce lundstrom / enron _ development @ enron _ development , lauren cc : vince j kaminski / hou / ect @ ect , sandeep subject : re : ca for henwood engagement stinson , please find attached a revised version of the draft consulting agreement with henwood . fyi , i am attaching both a clean version and one marked toshow changes from the last draft i sent you . please let me know if you have any questions or comments on the agreement or the most recent changes . what is the status of henwood ? do you still want to engage them and what is the timeframe for their work ( the dates in the draft may need to be corrected ) . bruce and lauren : please advise on which enron entity should be the party to this consulting agreement . thanks , bonnie",0 +"Subject: reviewer approval please note that your employees have suggested the following people to complete a feedback form on their behalf . you will need to access the performance management system ( pep ) to either approve or decline these suggested reviewers . once you have approved the suggested reviewers they will be notified and can begin completing the feedback form . your list of employees that have suggested reviewers are listed below : date suggested : may 19 , 2000 feedback due date : jun 16 , 2000 employee name : kollaros , alexios date suggested : may 22 , 2000 feedback due date : jun 16 , 2000 employee name : krishnarao , pinnamaneni v date suggested : may 22 , 2000 feedback due date : jun 16 , 2000 employee name : shanbhogue , vasant",0 +"Subject: rice cfos conference christie , this is one of the communications regarding rice cfos conference . andy requires some gentle persuasion . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - david ikenberry on 04 / 09 / 2001 01 : 27 : 24 pm to : vince . j . kaminski @ enron . com cc : subject : hi vince , i may have missed something , however don ' t believe i have received any communication recently from andy festow about this upcoming may 4 - 5 corp . fin . conference . i hope he is still planning to come , yet i don ' t know as of now . i have andy penciled in as a participant on a "" panel "" that is discussing equity dilution from stock option compensation ( the role of panelist should require little , if any , preparation time ) . of course , i want andy to come , however he is concerned about his ability to attend , i probably should identify another person or two to serve on the panel . dave . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: the garp 2001 convention dear garp 2001 speaker ? just a gentle reminder that the information i requested for your presentation at the garp 2001 convention , was due in today . can i please have this information by friday 8 th september so that i will have adequate time to include all the details in the brochure , which is due to go to press very shortly . the information that i require as soon as possible is as follows : 1 . confirmation of professional details ( including the speaker ' s name , job title , and organisation ) 2 . confirmation that the topic title is accurate and to your liking 3 . bullet points for your presentation ( up to 5 to 6 bullet points - please as technical and detailed as possible ) 4 . contact details ( including telephone numbers , fax no , colleague / pa , full address ) ? if you have any questions please do not hesitate to contact me , otherwise i look forward to receiving the above information by friday 8 th september . ? kind regards ? andreas _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900",0 +"Subject: re : cairn gas purchase bid vince - - shades of cuiba - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 08 / 15 / 2000 07 : 53 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : doug leach on 08 / 15 / 2000 07 : 52 am to : douglas s parsons / enron _ development @ enron _ development cc : marc de la roche / hou / ect @ ect , bobby subject : re : cairn gas purchase bid you spoke to me once and i gave you my opinions which were contrary to your resultant offer to cairn . currently , i have better things to do with my time . douglas s parsons @ enron _ development 08 / 15 / 2000 12 : 10 am to : doug leach / hou / ect @ ect cc : marc de la roche / hou / ect @ ect , bobby subject : re : cairn gas purchase bid i talked to vince after we hung up and his only suggestion was to call sandeep kohli . i spoke with marc and yourself four times on this matter over a 3 day period and given the timing , i put forth a non - binding offer , after discussing it further with bobby , based on the information i had that appears to position us close to our competitors offers . we haven ' t committed ourselves and should we be selected for negotiations there are numerous variables to affect the outcome . if you ' ve got any suggestions for a better deal , please advise . doug leach @ ect 08 / 14 / 2000 07 : 45 am to : douglas s parsons / enron _ development @ enron _ development cc : marc de la roche / hou / ect @ ect , bobby subject : re : cairn gas purchase bid i strongly disagree with the pricing and structure of your non - binding offer to cairn . this reminds me of the debacle in brazil . you should have contacted vince kaminski ' s research group as we talked about before an offer was made . this is a bad deal . douglas s parsons @ enron _ development 08 / 12 / 2000 01 : 51 am to : doug leach @ ect , marc de la roche @ ect cc : subject : cairn gas purchase bid doug & marc , fyi , please let me know if you think we ' re totally off base . i appreciate your help . regards , doug - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on 08 / 12 / 2000 01 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - douglas s parsons 08 / 11 / 2000 06 : 24 am to : bobby farris / enron _ development @ enron _ development cc : f b virani / enron _ development @ enron _ development , ujjwal dey / enron _ development @ enron _ development , nilesh subject : cairn gas purchase bid bobby , after meeting with cairn today in delhi , my perception is that our offer was received well . they were more open and relaxed then they were on wed . morning and made several encouraging comments about our price range , ( once we talked through the price movements ) , and the seriousness of our gas related activities on the west coast of india , in light of the ioc agreement . i think the overall package is attractive to them and no serious objections were raised . we did talk to some extent about the guarantees , but we didn ' t get too far and they ' re willing to accept at this point that what ' s acceptable to the lng suppliers , should be suitable for their needs . however , they would like to understand the corporate structure and assets of enron energy marketing a little better and i told them i would get back to them on that point . david and ajay were up in hazira yesterday looking at some property for their gas treatment facility , which apparently is across the road from pipeline access . while there they went and looked at shell ' s proposed lng site after walking the last 1 km , inaccessible to their 4 wd vehicle and not surprisingly found a beach . in summary , here is what we offered on a non - binding basis : six year production plateau 85 % top $ 3 . 67 / mmbtu net , at a base of $ 18 / bbl brent , with point of sale at the tail - end of the gas processing plant floor & cap of $ 15 . 50 - $ 27 . 00 / bbl price movement : + / - $ 1 . 00 / bbl from the $ 18 / bbl base price ( on a 3 mo . rolling average ) equals + / - $ 0 . 145 / mmbtu fixed on a quarterly basis guarantees : same protection we ' re providing the lng suppliers under the trust retention account i appreciate everyone ' s help in submitting this offer . thanks , doug",0 +"Subject: re : job posting hi vince , this posting is for my group . thanks for the referral . - - - - - original message - - - - - from : kaminski , vince sent : tuesday , april 24 , 2001 5 : 31 pm to : goodpasture , john ; watson , kimberly ; ferrell , lee ; kaminski , vince cc : krishnarao , pinnamaneni subject : job posting i am teaching a class at rice and one of my very bright students sent her resume in response to this posting . do you know who posted this job ? vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" helen demianenko "" on 04 / 24 / 2001 02 : 11 : 05 pm please respond to to : cc : subject : job posting dear vince , thanks for talking to me this morning about the sr . risk analyst position . here is where you can find the job description for that position : also , i have cut and pasted it down below , just in case . i appreciate your assistance in this matter and will start working on my cover letter right away . i would also like to talk to somebody to get a better feel for the position ( is this really an mba level position and how much of the in - depth learning opportunities for the derivatives market does it entail ? ) sincerely , helen demianenko p . s . i have attached my resume ( one more time ) . sr risk analyst essential functions : primary accountability for managing the ets risk book structure and processes from a pipeline ( front office ) perspective . work within current nng and tw marketing organizations to effectively integrate risk books into daily marketing and structured product activities . provide feedback to management regarding overall and specific risk positions . provide support for consistent and accurate deals entry / reporting for stand alone risk management system . create ad - hoc reports to assist management in risk analysis . responsible for managing and providing enhancements to the capacity books : ? maintain functionality and provide leadership for new functionality from a users perspective . provide support and direction for integration of capacity books and revenue management project . support revenue management team essential requirements : ba / bs in finance or accounting ( mba preferred ) . minimum of two years financial instruments experience . excellent quantitative / analytic and systems skills . knowledge of commodity risk book concepts . understanding of physical natural gas market , interstate transportation and financial derivatives . ability to interface with structuring / marketing groups in order to define business requirements . ability to provide leadership for business and system processes . excellent communication skills with an ability to communicate across organization with varied skill sets and ideas . must be self - motivated with a high level of energy preferred skills : na . special characteristics : this job functions in a team - oriented , fast - paced environment with multiple concurrent assignments and constantly changing priorities . contact : responses will be accepted through may 3 , 2001 . respond to enron corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or e - mail : dea . crum @ enron . com as a . doc or . txt attachment . please include this requisition number . job id 0000108729 department risk management & reporti company enron transportation services enron transportation services location houston , tx type posting date 19 - apr - 01 - helen _ d _ resume . doc > ",0 +"Subject: re : running credit model tanya , although i ' m quite comfortable with providing support for running the model , and assisting in providing the tools to enable easier analysis of the results , i ' m not entirely comfortable with supporting a java debug environment within your team ( including ad - hoc training ) , when we have facilities within the it development team to do it here . i ' d like to meet with you to discuss this , as this seems to be an ongoing issue , and would like to understand the ground rules by which your team operates in conjunction with it in general . regards steve tanya tamarchenko 23 / 06 / 2000 15 : 48 to : stephen stock / hou / ect @ ect cc : grant masson / hou / ect @ ect , vince j kaminski / hou / ect @ ect , debbie r brackett / hou / ect @ ect subject : re : running credit model steve , in order to be able to test the new credit model as well as to answer credit group ' s questions regarding the outputs from this model research needs to be able to do the following : 1 . run credit model independently of the other runs . it is quite ok for now to be able to run it just for small artificial portfolios . 2 . debug the code to see what actual values are used during the run time . please , let me know if your team can help us . tanya .",0 +"Subject: [ fwd : new commodity marketplace opportunity ] mark : per our brief conversation this morning , the attached email was sent to you yesterday . i hope that you might understand that i am conceptually looking for "" founders "" and at the "" pre "" business plan stage . there is an enormous problem existing with a very attractive economic reward and willing participants needing this solution . i need help . al arfsten 713 965 2158 content - transfer - encoding : 7 bit x - mozilla - status 2 : 00000000 message - id : date : wed , 24 jan 2001 15 : 49 : 37 - 0600 from : al arfsten organization : bfl associates , ltd . x - mailer : mozilla 4 . 7 [ en ] c - cck - mcd nscpcd 47 ( win 98 ; i ) x - accept - language : en mime - version : 1 . 0 to : mark . lay @ enron . com subject : new commodity marketplace opportunity content - type : text / plain ; charset = us - ascii mark lay : i shared confidentially with vince kaminski my developing concept of a highly inefficient not - for - profit enterprise with dramatically increasing costs . i believe that a for - profit economic model is possible that should reverse these skyrocketing costs and ultimately lower the commodity thereby having a national , if not , global impact of health care costs . vince seems to also believe in the concepts potential . the ceo of one of the biggest u . s . blood banks has already asked to become involved . i would like involve more people with vision , means and desire to help make this a reality . i would look forward to meeting with you to talk further . al arfsten 713 965 2158",0 +"Subject: fw : stanford or - summer intern stinson , should we get him as well ? it seems he has the right skills . we might have maxed out on the number of summer interns through the a / a program . we would have to hire him directly . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 29 / 2000 08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" shikhar ranjan "" on 02 / 28 / 2000 02 : 31 : 39 pm to : ravi _ thuraisingham @ enron . net cc : vince j kaminski / hou / ect @ ect subject : fw : stanford or - summer intern hi ravi : i had sent an email about a week back with my resume for the summer internship . i think the address i sent it to was not correct , so i am resending it . i will also tell the others in the group to send there resumes to you . thanks . regards , shikhar - - - - - - - - - - - - - - - - - - - - - - - - shikhar ranjan phd student management science & engineering stanford university ca ( 650 ) 497 5762 - - - - - original message - - - - - from : shikhar ranjan to : cc : sent : sunday , february 20 , 2000 5 : 24 pm subject : stanford or - summer interns > hi ravi : > > please find attached my resume for the summer internship program . i > apologize for the delay . we actually lost your contact info . please let me > know if you will need any additional information and / or a cover letter > besides the resume and i can send it right away . > > thanks > > regards , > shikhar > - - - - - - - - - - - - - - - - - - - - - - - - > shikhar ranjan > phd student > management science & engineering > stanford university ca > ( 650 ) 497 5762 > - resumeo 0 - ene . doc",0 +"Subject: merry xmas and a happy new year ! hi all merry xmas and a happy new year ! les .",0 +"Subject: re : resume vasant , i agree . vince from : vasant shanbhogue / enron @ enronxgate on 05 / 01 / 2001 10 : 00 am to : vince j kaminski / hou / ect @ ect cc : subject : re : resume vince , he seems to have mostly equity and fixed income background ( and then some credit exposure calculation ) with not much credit data analysis experience . i do not think he would be appropriate for bryan ' s group - - he needs a person who tracks market developments and understands fundamental data , and although this guy may be good at modeling , we already have iris and amitava doing the modeling and looking at data . at this stage , i would prefer to hire somebody with direct experience in credit analysis ( banking , rating agency ) . i am worried that if we get another person without data analysis experience , then amitava will find himself with two people ( iris being the other one ) who are both inexperienced in this area , and he will find himself doing a lot of the work anyway . if you want to pursue him , we should probably do a phone interview first . vasant - - - - - original message - - - - - from : kaminski , vince sent : monday , april 30 , 2001 5 : 33 pm to : shanbhogue , vasant subject : re : resume vasant , what do you think ? he may be expensive . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 05 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - marshall brown on 04 / 25 / 2001 01 : 13 : 44 pm to : vince . j . kaminski @ enron . com cc : subject : re : resume vince , i apologize , i sent you the wrong resume ! here is the correct one . > marshall brown vice president robert walters associates phone # : 212 - 704 - 0596 fax # : 212 - 704 - 4312 marshall . brown @ robertwalters . com www . robertwalters . com > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : wednesday , april 25 , 2001 1 : 08 pm > to : marshall . brown @ robertwalters . com > subject : re : resume > > > marshall , > > he looks ok but below the level of quant skills i typically look for > > vince > > > > > > marshall brown on 04 / 23 / 2001 09 : 33 : 00 > am > > to : vince kaminski > cc : > subject : resume > > > vince , > i know this candidate is actively interviewing at el paso and i think > reliant . he has excellent quantitative background , but no real energy > experience . if you are interested in speaking with him let me know . > regards , > marshall brown > vice president > robert walters associates > phone # : 212 - 704 - 0596 > fax # : 212 - 704 - 4312 > marshall . brown @ robertwalters . com > www . robertwalters . com > > > > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . > > this email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed . if you have received this email in error please notify > the system manager . > > this footnote also confirms that this email message has been swept by > mimesweeper for the presence of computer viruses . > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > ( see attached file : litt _ har . doc ) > > > - litt _ tho . doc > ",0 +"Subject: re : vandy student kristin , the problem with this guy is that we maxed out on the number of interns we can gainfully employ and provide adequate supervision . so , we have to pass on him . vince enron north america corp . from : kristin gandy @ enron 02 / 16 / 2001 07 : 54 am to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : vandy student i hear that you have been in contact with this student . do you have any interest in hiring him for a summer position ? if not please just let me know and i will call him to let him know . regards , kristin - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 02 / 16 / 2001 07 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - dmitri villevald on 02 / 15 / 2001 04 : 00 : 51 pm to : "" ' kristin . gandy @ enron . com ' "" cc : subject : dear ms . gandy : thank you for taking time out of your busy schedule to visit the owen graduate school of management at vanderbilt on january 23 - 24 for on - campus interviews for the summer associate positions at enron . it was a pleasure talking with you , and i hope i conveyed to you how excited i am about the prospect of applying my skills at enron . i realize that enron offers a limited number of positions and greatly respect your choice of summer associates . i would like to ask you if there is any opportunity for me to work at enron during this summer for free . i am confident that my sincere interest in derivatives will allow me to greatly contribute to enron during this summer . i am particularly interested in enron research group . ( i had a phone interview with mr . gibner on january 31 st , and i sent him email yesterday asking for the opportunity to work for free during this summer ) . i am looking forward to hearing from you . if i can provide more information or answer additional questions , please feel free to contact me either by telephone ( 615 - 496 - 1132 ) or via e - mail ( dmitri . villevald @ owen 2002 . vanderbilt . edu ) . also , i am always ready to fly to houston for additional interviews . again , thank you for your time and consideration . sincerely , dmitri villevald owen mba 2002",0 +"Subject: re : options model jeff , i got 20 cents for the swith option per dth . my assumptions are as follows : price curve assumption : waha - - - if - waha la plata pool and tw ( ignacio ) - - if - epso / sj california border - - ngi - socal correlation assumption : waha - sj 95 % socal - sj 90 % see the attached spreadsheet for more info . call me for questions . zimin jeffery fawcett @ enron 10 / 11 / 2000 02 : 56 pm to : zimin lu / hou / ect @ ect cc : subject : options model zimin , we ' re trying to price out a "" live "" options deal . here are the parameters : volume : 32 , 000 dth / d term : jan . 1 , 2002 through oct . 31 , 2006 ( 58 mos . ) price : one part rate , $ 0 . 2175 / dth , plus applicable fuel primary receipt / delivery points : ( east - to - east transport ) receipt : la plata pool ( use san juan , blanco price equivalent ) delivery : waha area option : alternate delivery pnt . : california border ( east - to - west transport ) price : floor - $ 0 . 2175 / dth , plus 4 . 75 % pipeline fuel , plus 50 % of the difference between the california border index price and the san juan basin index price . specifically , we ' ll use : ( socalgas large pkgs . minus tw ( ignacio , pts . south ) ) an important things to consider : this option is only for alternate firm deliveries . alternate firm is really just a glorified version of interruptible . can you run the option model and tell me what is the dollar value of this rather "" unpure "" option ? i appreciate it . give me a call at 3 - 1521 if you have any questions . also , can you get us an answer by friday , 10 / 13 / 00 ? we ' re looking to get the proposal out to the customer by the end of the week if possible . thanks .",0 +"Subject: earth day - trash bash i hardly know what to say ! ! ! what a great turnout from the research department . we had 15 including spouses and children who worked check - in and picked up trash . thanks so much . everyone from community relations was blown away by the turnout we had from research . i heard very nice comments about our effort and about the fact that vince came out and worked . thanks again for all your support . i personally appreciated it and i know everyone else from enron that was involved in this event appreciated it because i got so many comments about our participation . i don ' t know what else to say but that you are a great group . anita",0 +"Subject: hr deadlines and action items please forward to all your direct reports - - - - - - - - - - - - - - - - - - - - - - forwarded by norma villarreal / hou / ect on 11 / 16 / 2000 11 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - norma villarreal 11 / 16 / 2000 11 : 23 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , maureen raymond / hou / ect @ ect cc : sheila walton / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : hr deadlines and action items pep system for feedback action item employees need to provide feedback on requested employees supervisor ' s need to contact employee ' s requested reviewers ( via phone mail or email ) who have not submitted feedback . deadline for pep feedback : friday , november 17 , 2000 cst open enrollment for 20001 benefit election action item employees who want change their benefit election need to go to www . enron . benefitsnow . com or call 1 ( 800 ) 425 - 5864 . if you do not have your 2001 enrolment personal worksheet which contains your personal identification number please contact benefits at 1 ( 800 ) 3327373 option 1 . extended deadline : friday , november 17 , 2000 , 5 p . m . cst bonus defferal election action item employees wishing to receive stock options and phantom stock in lieu of all or a portion of the cash bonus received during 20001 can will need to access ehronline . enron . com . deadline : friday , december 8 , 2000 cst please let me know if you have any questions . norma villarreal hr generalist x 31545",0 +"Subject: spring 2001 conference participation by jeffrey k . skilling rick / vince , good morning . in my 9 / 14 e - mail , i advised you of the practitioner - industry cefer ( center for energy finance education and research ) conference we are planning for spring 2001 . as you know , we would like to invite jeff skilling to be the keynote speaker at the thur . evening dinner . the following day ' s four topics consist of risk management , deregulation , real options , and international / globalization . the majority of invitees would be ( predominantly u . s . - based ) energy - industry practitioners , as well as several academics . given lead time issues in these matters , we have reserved hotel rooms in austin for feb . 22 , 2001 . could i ask you to ascertain jeff skilling ' s availability for that evening ? thanks , ehud ronn ehud i . ronn professor of finance and jack s . josey professor in energy studies director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : summer internship jinbaek , the answer to the lst question is yes . the project list is fine with me and is still valid . we are an organization driven by the needs of our internal customers . i shall froward your message to the person in ebs . hopefully , we shall get a positive response . vince jinbaek kim on 03 / 15 / 2001 01 : 12 : 32 am to : vince . j . kaminski @ enron . com cc : subject : summer internship dr . kaminski , sorry for the late response , it took me some time to coordinate things . finally , it ' s almost dont : - ) it turned out that from june to august will be best for me for work at enron ( say june . 4 to august . 4 ) but i still need to know several things from your side . could you answer following questions ? first : is my suggested working period is ok with you ? if so , let me know what to do for settlement during the period . second : i got a list of work , i might be able to do for dealbench team from ross and suresh . i ' d like to know it is still a valid work list : the list he sent is as following : > 1 . write a paper in layman ' s terms that answers > questions like the following : > benefits of auctioning online for both buyers and > sellers , particularly in reverse auctions > explanation how multi - variable auctions are not > as efficient as price - only auctions ( is this true ? ) > how many participants are recommended for a > successful live auction > what types of goods and services are best suited > for live auctions versus sealed bid quotes > opinions on lotting strategies > trends in online private auctions > 2 . identify appropriate recent auction research ( 3 > or 4 papers out of the 90 + you provided ) and obtain approvals from the > authors to post on our site > 3 . create a list / bibiliography of relevant auction > literature ( with hyperlinks ? ) > 4 . would you be willing to offer auction consulting > services to our customers ( if they are interested ) third : there is an e - procurement forum at haas school of business , in may 22 . the chair of the forum is my advisor prof . arie segev . a person from wells fargo bank will talk about wells fargo ' s role in e - marketplace payment initiative , where enron broadband services is also one of key players along with citibank . he asked me whether you can contact a person at enron broadband services , who ' s related to the initiative . he wants to know whether we will have a speaker from enron to see enron ' s perspective , in the forum . here is a link to news related to the initiative , fourth : my advisor wants to know whether there could be any opportunity to do a case study , regarding enron ' s business . he is interested in e - procurement and e - marketplaces . business model and system architecture . . . thanks for reading this long email . i ' ll look forward to your answer . . i am sorry for giving you so much burden to answer those questions possibly not easy to answer . warm regards , jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on mon , 5 mar 2001 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > this is fine though you are welcome to spend more > time with us this summer . > > vince > > > > > > jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : summer internship > > > dr . kaminski , > > thanks for your answer . > before i tell you the time frame , > i ' ll need to talk with my advisor , first . > because here is an on - going - project . > i need to coordinate the schedule . > > i ' ll appreciate it if you understand my situation , > and give me some time ( less than a week , of course ) . > > for your reference , > probably > the dates i ' d like to ask you will be > from mid - may to mid - july ( 2 months ) > > warm regards , > jinbaek > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > jinbaek kim > ph . d candidate > dept . of industrial engineering and operations research > u . c . berkeley > http : / / www . ieor . berkeley . edu / ~ jinbaek > > go bears ! > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > : a a : _ _ . . . . . _ > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > : . ' : ` . : ` , ` . > ` . : ' - - ' - - ' : . ' ; ; > : ` . _ ` - ' _ . ' ; . ' > ` . ' "" ' ; > ` . ' ; > ` . ` : ` ; > . ` . ; ; : ; > . ' ` - . ' ; : ; ` . > _ _ . ' . ' . ' : ; ` . > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > ` . . . . . . . - ' ` . . . . . . . . ' > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > jinbaek , > > > > you can coordinate the details with me . > > let me know what the time frame is for you > > and we shall send you an appropriate offer . > > > > vince > > > > > > > > > > > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm > > > > to : vince . j . kaminski @ enron . com > > cc : > > subject : re : summer internship > > > > > > dr . kaminski , > > > > thank you very much . > > of course , i ' ll be happy to have an opportunity > > to work at such a wonderful company . > > i was contacting with surech raghavan at deal bench team , > > and was going to express my appreciation to you again > > after settling down process with them . > > > > for the period of working , > > i still need to coordinate with my advisor and > > may need to adjust according to that . > > but anyway , i ' ll try to coordinate smoothly . > > > > please let me know whether i should keep contacting > > with deal bench team , > > for working period and > > for misc . living support such as finding a place , rent a car , etc . > > > > i appreciate you so much again , > > for arranging such meetings and giving me an opportunity . > > all this opportunity will not be available to me , > > without your kind help . > > > > warm regards , > > jinbaek > > > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > > jinbaek kim > > ph . d candidate > > dept . of industrial engineering and operations research > > u . c . berkeley > > http : / / www . ieor . berkeley . edu / ~ jinbaek > > > > go bears ! > > > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > > : a a : _ _ . . . . . _ > > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > > : . ' : ` . : ` , ` . > > ` . : ' - - ' - - ' : . ' ; ; > > : ` . _ ` - ' _ . ' ; . ' > > ` . ' "" ' ; > > ` . ' ; > > ` . ` : ` ; > > . ` . ; ; : ; > > . ' ` - . ' ; : ; ` . > > _ _ . ' . ' . ' : ; ` . > > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > > ` . . . . . . . - ' ` . . . . . . . . ' > > > > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > > > hello , > > > > > > sorry for a delay in getting back to you . > > > we would like very much to offer you a summer internship . > > > > > > please , let me know if you are interested . > > > > > > vince kaminski > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: congratulations ! ! ! vince : congratulations on your promotion ! ! barbara",0 +"Subject: jacob feedback vince , chonawee and tom halliburton had feedback about jacob to me . tom ' s feedback is what he does for pros is actually too simple . their so - called trading system is actually a scheduling system . my impression is that jacob is good at selling himself , his knowledge of finance and derivatives is very limited . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 04 / 11 / 2001 03 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat @ enron 03 / 21 / 2001 07 : 28 pm to : zimin lu / hou / ect @ ect cc : tom halliburton / corp / enron @ enron subject : jacob feedback i asked jacob two questions to check his basic knowledge . he answered correctly in the optimization question so i believe that he has a good foundation on his optimization skill . i have a doubt about his stochastic skill because he took only one course in stochastic processes and his previous models are simple deterministic models . if we had more interview time i would be able to check his stochastic and modeling skills . he completely failed to answer the second question , which is to check his basic risk management skill . it is clear to me that he has a very weak background in finance and risk management . he does not understand the relationship between a discount rate and risk . he showed some weakness in annuity calculation . in conclusion , i feel that he has good basic in optimization but a very weak background in finance . based on his experiences , i have a doubt on his advance optimization skills , such as his stochastic skill and his ability to attack a complex optimization problem . i would recommend a second - round interview if he will be solving a complex - optimization problem . - chonawee",0 +"Subject: darden case study on "" the transformation of enron "" shirley , please , provide this info . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 30 / 2000 02 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : sherri sera @ enron 03 / 30 / 2000 12 : 47 pm to : lou l pai / hou / ees @ ees , gene humphrey / hou / ect @ ect , ken rice / enron communications @ enron communications , andrew s fastow / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : karen owens / hou / ees @ ees , bert frazier / hou / ect @ ect , mercedes estrada / enron communications @ enron communications , bridget maronge / hou / ect @ ect , mark palmer / corp / enron @ enron , katherine brown / corp / enron @ enron , fabricio soares / hou / ect @ ect subject : darden case study on "" the transformation of enron "" gentlemen , jeff has asked that each of you make time to meet with professors bruner and bodily regardig the above referenced case ( i have attached a project overview for your review ) . they are scheduled to be in houston on tuesday , april 18 , to begin conducting interviews ( some of which may be videotaped ) . please let me know your availablility on that date . thanks for your help , and please don ' t hesitate to call me ( x 3 - 5984 ) should you need additional information . srs",0 +"Subject: meeting tracy , confirming the meeting tomorrow , thursday , 1 : 30 p . m . vince kaminski",0 +"Subject: re : telephone interview with the enron research group hi ramaswamy : thank you for responding so promptly . i have scheduled the telephone interview for monday , march 19 th from 10 : 30 - 11 : 30 am ( central time ) . please let me know if this is not convenient . they will call you at ( 773 ) 324 - 5077 . sincerely , shirley crenshaw "" ramaswamy garimella "" on 03 / 05 / 2001 09 : 27 : 26 pm to : shirley . crenshaw @ enron . com cc : ramaswamy _ garimella @ hotmail . com subject : re : telephone interview with the enron research group hi shirley , thanks for providing me an opportunity to interview with enron research group . i have final exams in the next week till march 15 . so , any date from march 19 onwards will be convenient to me . my phone number is ( 773 ) 324 - 5077 . any time after 10 a . m will be fine with me . please let me know the date and time that will be convenient to vince kaminski ' s group . thank you very much . best regards , ramaswamy garimella . - - - - original message follows - - - - from : shirley . crenshaw @ enron . com to : ramaswamy _ garimella @ hotmail . com cc : vince . j . kaminski @ enron . com , stinson . gibner @ enron . com , vasant . shanbhogue @ enron . com , tanya . tamarchenko @ enron . com subject : telephone interview with the enron research group date : mon , 5 mar 2001 14 : 38 : 18 - 0600 mime - version : 1 . 0 received : from [ 192 . 152 . 140 . 9 ] by hotmail . com ( 3 . 2 ) with esmtp id mhotmailbc 6 d 45780030 d 82197 daco 988 co 99 a 960 ; mon mar 05 12 : 43 : 36 2001 received : from mailman . enron . com ( mailman . enron . com [ 192 . 168 . 189 . 66 ] ) by postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id uaal 0526 for ; mon , 5 mar 2001 20 : 43 : 35 gmt received : from nahou - msmswo 2 px . corp . enron . com ( [ 172 . 28 . 10 . 38 ] ) by mailman . enron . com ( 8 . 10 . 1 / 8 . 10 . 1 / corp - 1 . 05 ) with esmtp id f 25 khzal 4665 for ; mon , 5 mar 2001 14 : 43 : 35 - 0600 ( cst ) received : from ene - mtaol . enron . com ( unverified ) by nahou - msmswo 2 px . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp id for ; mon , 5 mar 2001 14 : 43 : 41 - 0600",0 +"Subject: enron in india mark , two points . 1 . you probably know about it already . abhay mehta , the author of "" power play "" , is on a tour of the united states . please , take a look at the information about a meeting last sunday at stanford university . the web site address is given below . my wife went to the presentation and told me it was quite critical about enron . about 40 people attended . 2 . i was approached by john martin , a professor of finance at baylor , to write jointly an academic paper on enron for a financial journal . he wanted to work on an article on ebs . i have suggested a different topic : enron - case study of a company reinventing itself . i made a few points to john : a . enron ' s evolution did not just happen by accident . it was a result of implementation of a far - reaching strategy developed by the management . b . in the process of its evolution enron changed its environment . i came up with a term "" proactive evolution "" , as opposed to "" reactive evolution . "" c . the strategy included many elements , including emphasis on the quality of human resources , changing corporate attitudes to risk taking and employee empowerment . d . there are very few companies that match enron ' s experience and accomplishemnts . the paper could become a standard reading at the mba courses on corporate strategy and would help greatly our recruiting efforts . writing the paper would require interviews with ken , jeff and a few other key players . let me know what you thing about it . john is really excited about this paper . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 09 / 2000 08 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 10 / 07 / 2000 05 : 29 : 41 pm to : vkamins @ enron . com cc : subject : enron http : / / www . stanford . edu / group / sia / stanford india association",0 +"Subject: re : european energy 2000 vince , i ' ve been invited to speak at the conference below in amsterdam in april . this is along with the monte carlo conference a week later which stinson has forwarded my name for . both are by eprm , and shouldn ' t take too much time to prepare as will be on similar topics to the previous conference at which i spoke . should i go to both , or start prioritising these events ? ben - - - - - - - - - - - - - - - - - - - - - - forwarded by benjamin parsons / lon / ect on 20 / 12 / 99 17 : 03 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : "" angela adedeji "" 20 / 12 / 99 11 : 57 please respond to "" angela adedeji "" to : benjamin parsons / lon / ect @ ect cc : subject : european energy 2000 dear ben re : european energy 2000 , 3 & 4 april , amsterdam it is with great pleasure that i enclose details of eprm ' s 3 rd annual congress . i would like to invite you to become involved as a speaker on the programme and / or on either of the two seminars on modelling power prices and var . the following sessions are currently available on the main programme : - trouble shooting roundtables - var forward curve electricity derivatives heding - developing and implementing enterprise wide risk management - quantifying and minimising operational risk unfortunately this project needs to be signed off before christmas . i would therefore appreciate receiving a response from at your earliest convenience . i hope we can work together on this event and i look forward to hearing from you soon . kind regards angela adedeji senior producer , energy conferences & courses tel - 0171 484 9886 fax - 0171 484 9888 email - aadedeji @ risk . co . uk - attl . htm - fgrid . doc - seminar . doc - seminar 2 . doc",0 +"Subject: re : grades mr . kaminsky , i still need grades for : israni , rakhi lu , feng planck , jeffrey so , winny taylor , orlando wankhade , sanjay zhang , ning i will be available by e - mail this evening or by phone ( 5 : 30 or so ) at 713 - 668 - 1704 . ? i just called the registrar ' s office and if i bring in the grades by 8 : 30 tomorrow morning we will be fine . ? please advise . thanks for your help . - pam at 08 : 23 am 5 / 4 / 01 - 0500 , vince . j . kaminski @ enron . com wrote : pam , the last group . please , let me know if any name is missing . ( embedded image moved to file : pic 25177 . pcx ) grade : a thanks a lot . it was a pleasure working with you . vince kaminski",0 +"Subject: organization announcement given the growth in ees it has become apparent that it is time to consolidate the risk functions between ees and ews . this will provide ees with the systems , resources and risk expertise of the wholesale energy groups necessary for it to continue to grow and take advantage of current market opportunities . with this in mind and in agreement with the management of ees , two new risk groups inside enron americas will be formed to provide ees with pricing , structuring , retail and wholesale commodity risk management , logistics and back - office services . these groups main function is to provide these services to ees . we have asked rogers herndon , currently vice president - trading in the eastern power group to manage this function in the eastern interconnect ( this includes both gas and power ) . rogers will continue to report to kevin presto . we have asked don black , formerly vice president - ees risk management and sourcing , to manage this function in the western u . s . don will manage this group from houston and will report to tim belden . these groups will work very closely with ees to pursue shared goals while ensuring close coordination with the wholesale gas and power trading organizations . these changes are effective immediately . please congratulate rogers and don on their new roles . john lavorato & louise kitchen",0 +"Subject: alp presentation this will be in eb 49 cl - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 10 / 2001 08 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 10 / 2001 08 : 13 am to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: re : invitation to speak at power 2000 hi vince that ' s great - delighted you ' ll be participating . i ' ve put you down as the chairman for stream 1 , day 1 on 9 may 2000 . by the way , is your job title still vp , head of research at enron north america ? i need to know for the brochure . if i don ' t speak to you before the new year , i wish you a very merry xmas and a happy new millennium ! emma - - - - - original message - - - - - from : vince j kaminski to : emma wolfin cc : vince j kaminski date : thursday , december 16 , 1999 9 : 02 am subject : re : invitation to speak at power 2000 > > > emma , > > mergers and acquisitions are not my cup of tea . > > chairing stream 1 on day 1 seems to be a better match . > > vince > > > > > > "" emma wolfin "" on 12 / 15 / 99 10 : 51 : 34 am > > to : vince j kaminski / hou / ect @ ect > cc : > subject : re : invitation to speak at power 2000 > > > > > hi vince > > thanks for getting back to me quickly ! as it happens , all of the sessions > you suggested are already taken ! > > so , would you be interested in chairing either stream 1 on day 1 of the > conference - "" pricing and trading in the us power market "" or stream 3 on > day 2 of the conference - "" latest developments in the us energy industry "" . > for your information , the people presenting on day 1 in stream 1 include : > > - spyros maragos , dynegy on volatility > - sanjeev khanna , pg & e on correlation > - gary morsches , southern on optimising information to accurately price and > trade electricity > - blake johnson , stanford university on modelling power prices > - craig pirrong , olin school of business , washington university on building > the optimal forward curve > > on day 2 , stream 3 , there are only 3 talks in that stream , as after lunch we > will be breaking for plenary sessions and the industry briefing sessions > too . but the people who will be speaking in that stream are : > > - venu nagali , stanford university on real options > - ram challa , sithe energies ( he was formerly at bankers trust ) on > generation assets > > i have the slot on mergers and acquisitions in stream 3 on day 2 as still > available but i ' m not sure if that session is your area of speciality ? let > me know . > > thanks vince and very much looking forward to working with you again . > > emma > > > - - - - - original message - - - - - > from : vince j kaminski > to : emma wolfin > cc : vince j kaminski > date : wednesday , december 15 , 1999 11 : 36 am > subject : re : invitation to speak at power 2000 > > > > > > > > emma , > > > > it ' s your choice . i can chair the session of day 2 or speak on one of these > > topics . > > please , let me know what works for you . > > > > possible presentations : > > > > evaluating the effectiveness of insurance as a risk management tool > > > > or > > > > applying real option theory to value power plants > > > > or > > > > overcoming the difficulties of accurately estimating volatility > > > > > > vince > > > > > > > > > > > > "" emma wolfin "" on 12 / 14 / 99 04 : 08 : 03 pm > > > > to : vince j kaminski / hou / ect @ ect > > cc : > > subject : invitation to speak at power 2000 > > > > > > > > > > hi vince > > > > it is my great pleasure to invite you to speak at power 2000 which will be > > in houston on 9 & 10 may 2000 . > > > > would you be interested in chairing one of the streams on day 2 of the > > conference ? or making a full presentation on one of the days ? please let me > > know which talks interest you . obviously , some of the talks are no longer > > available but i would like to give you a choice as much as possible . please > > could you get back to me asap on 212 925 1864 ext 151 or by return email . > > > > i very much hope you can make the dates as i ' m very keen to have you > > participate at power . not to flatter you unnecessarily , but i know that a > > lot of people come to our conferences to hear what you have to say . > > > > best regards > > > > emma > > > > > > > > > > > > > > > >",0 +"Subject: ben zhang : nuts ! i also heard from joe toussaint that ben ' s boss counter - offered with a bump in salary . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 09 / 18 / 2000 09 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" zhang , ben "" on 09 / 18 / 2000 07 : 58 : 58 am to : grant . masson @ enron . com cc : subject : thanks dear mr . masson : thank you very much for offering me an opportunity to work in your group . however because of family reasons , i have to regrettably inform you that i will not be able to make the move at this time . it has been a great experience working with you on this process , and i greatly appreciate your help . i realized that this would have been a great opportunity for me , and i thank you very much for everything . i hope you will still consider me for a position in the future . sincerely , ben",0 +"Subject: biliana ' s resume geynille , i understand you are in charge of recruiting at the uofh . i am forwarding to you the resume of one of the students of the university of houston . she is involved with the international organization called aiesec and i was most impressed by her organizational skills and professional attitude . i used to work as a volunteer for this organization many years ago and i am still helping their local chapter . as far as i know , she signed up for an interview with enron . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 29 / 2000 02 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - biliana pehlivanova on 09 / 28 / 2000 06 : 02 : 20 pm to : vkamins @ enron . com cc : subject : biliana ' s resume mr . kaminski , thank you for referring me to your recruitment representative . attached is my resume . i would appreciate you letting me know the name of the hr person whom i can folow up with . best regards , biliana = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = biliana pehlivanova vice president of incoming exchange aiesec houston 713 743 - 4927 = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = do you yahoo ! ? yahoo ! photos - 35 mm quality prints , now get 15 free ! http : / / photos . yahoo . com / - biliana ' s resume . doc",0 +"Subject: lng meeting hello all : the lng meeting that was to be held this morning has been changed to tomorrow , wednesday , the 17 th at 11 : 00 am in ebl 938 . thanks ! shirley 3 - 5290",0 +"Subject: re : vacation in march , april stinson , no problem . vince stinson gibner 02 / 15 / 2001 06 : 41 pm to : vince j kaminski / hou / ect @ ect cc : subject : vacation in march , april vince , if possible i would like to take some vacation time in march and april . specifically the week of hisd spring break , which is march 12 - 16 . also , i would like to take march 21 - 30 . please let me know if this is ok . regards , stinson",0 +"Subject: resume of a former fx trader i am forwarding the resume of wendell licon who works for enron in the hr department ( executive compensation ) . he used to be an fx trader . i am thinking about moving him to research when his current boss is ready to release him . i think , however , that you should take a look at him as well and see if he fits your needs . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 11 / 2000 04 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - wendell licon @ enron 07 / 11 / 2000 04 : 04 pm to : vince j kaminski / hou / ect @ ect cc : subject : resume vince , per your request , i ' ve attached a copy of my resume . please let me know if you have any questions . regards , wendell",0 +"Subject: re : fyi : uk var issues vince , uk var breached the limit last week . uk traders asked us to review the correlations across uk gas and power as well as the correlations across efa slots . we did part of the work last week . now we ' ll update the correlations based on historical prices . tanya . richard lewis 10 / 08 / 2000 07 : 31 am to : tanya tamarchenko / hou / ect @ ect cc : oliver gaylard / lon / ect @ ect , james new / lon / ect @ ect , steven leppard / lon / ect @ ect , rudy dautel / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , naveen andrews / corp / enron @ enron , david port / market risk / corp / enron @ enron , ted murphy / hou / ect @ ect , simon hastings / lon / ect @ ect , paul d ' arcy / lon / ect @ ect , amir ghodsian / lon / ect @ ect subject : re : var correlation scenarios thanks tanya , these are interesting results . i am on vacation next week , so here are my current thoughts . i am contactable on my mobile if necessary . gas to power correlations i see your point about gas to power correlation only affecting var for the combined gas and power portfolio , and this raises an interesting point : at a conservative 30 % long term correlation , combined var is olmm less than previously expected - so how does this affect the limit breach ? strictly speaking , we are still over our uk power limit , but the limit was set when we were assuming no gas power correlation and therefore a higher portfolio var . a suggested way forward given the importance of the spread options to the uk gas and power books - can we allocate to the gas and power books a share of the reduction in portfolio var - ie [ reduction = portfolio var - sum ( power var + gas var ) ] ? also , if i understand your mail correctly , matrix 1 implies 55 % gas power correlation is consistent with our correlation curves , and this reduces total var by ol . 8 mm . efa slot correlations the issue of whether our existing efa to efa correlation matrix is correct is a separate issue . i don ' t understand where the matrix 2 efa to efa correlations come from , but i am happy for you to run some historical correlations from the forward curves ( use the first 2 years , i would suggest ) . our original matrix was based on historicals , but the analysis is worth doing again . your matrix 2 results certainly indicate how important these correlations are . closing thoughts friday ' s trading left us longer so i would not expect a limit breach on monday . we are still reviewing the shape of the long term curve , and i ' d like to wait until both simon hastings and i are back in the office ( monday week ) before finalising this . regards richard tanya tamarchenko 06 / 10 / 2000 22 : 59 to : oliver gaylard / lon / ect @ ect , richard lewis / lon / ect @ ect , james new / lon / ect @ ect , steven leppard / lon / ect @ ect , rudy dautel / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , naveen andrews / corp / enron @ enron , david port / market risk / corp / enron @ enron , ted murphy / hou / ect @ ect cc : subject : re : var correlation scenarios everybody , oliver sent us the var number for different correlations for uk - power portfolio separately from uk - gas portfolio . first , if var is calculated accurately the correlation between power and gas curves should not affect var number for power and var number for gas , only the aggregate number will be affected . the changes you see are due to the fact that we use monte - carlo simulation method , which accuracy depends on the number of simulations . even if we don ' t change the correlations but use different realizations of random numbers , we get slightly different result from the model . so : to see the effect of using different correlations between gas and power we should look at the aggregate number . i calculated weighted correlations based on 2 curves i got from paul . as the weights along the term structure i used the product of price , position and volatility for each time bucket for gas and each of efa slots . the results are shown below : inserting these numbers into the original correlation matrix produced negatively definite correlation matrix , which brakes var engine . correlation matrix for any set of random variables is non - negative by definition , and remains non - negatively definite if calculated properly based on any historical data . here , according to our phone discussion , we started experimenting with correlations , assuming the same correlation for each efa slot and et elec versus gas . i am sending you the spreadsheet which summaries the results . in addition to the aggregate var numbers for the runs oliver did , you can see the var numbers based on correlation matrix 1 and matrix 2 . in matrix 1 the correlations across efa slots are identical to these in original matrix . i obtained this matrix by trial and error . matrix 2 is produces by naveen using finger ' s algorithm , it differs from original matrix across efa slots as well as in power versus gas correlations and gives higher var than matrix 1 does . concluding : we will look at the historical forward prices and try to calculate historical correlations from them . tanya . oliver gaylard 10 / 06 / 2000 01 : 50 pm to : richard lewis / lon / ect @ ect , james new / lon / ect @ ect , steven leppard / lon / ect @ ect , rudy dautel / hou / ect @ ect , kirstee hewitt / lon / ect @ ect , naveen andrews / corp / enron @ enron , tanya tamarchenko / hou / ect @ ect , david port / market risk / corp / enron @ enron cc : subject : var correlation scenarios the results were as follows when changing the gas / power correlations : correlation var - uk power book var - uk gas book 0 . 0 ol 0 . 405 mm o 3 . 180 mm 0 . 1 ol 0 . 134 mm o 3 . 197 mm 0 . 2 ol 0 . 270 mm o 3 . 185 mm 0 . 3 ol 0 . 030 mm o 3 . 245 mm 0 . 4 cholesky decomposition failed ( not positive definite ) 0 . 5 cholesky decomposition failed ( not positive definite ) 0 . 6 cholesky decomposition failed ( not positive definite ) 0 . 7 cholesky decomposition failed ( not positive definite ) 0 . 8 cholesky decomposition failed ( not positive definite ) 0 . 9 cholesky decomposition failed ( not positive definite ) 1 . 0 cholesky decomposition failed ( not positive definite ) peaks and off peaks were treated the same to avoid violating the matrix ' s integrity . interesting to note that for a higher correlation of 0 . 2 the power var increases which is counter to intuition . this implies that we need to look into how the correlations are being applied within the model . once we can derive single correlations from the term structure , is the next action to understand how they are being applied and whether the model captures the p + l volatility in the spread option deals . from 0 . 4 onwards the var calculation failed . oliver",0 +"Subject: addition to enron - summer internships kristin another tiger . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 05 / 2001 09 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 02 / 05 / 2001 08 : 34 : 26 am to : "" ' vkamins @ enron . com ' "" cc : fap , "" ' mvittal @ wharton . upenn . edu ' "" subject : addition to enron - summer internships vince : please include ram vittal to the summer internship list , if you have not already done so . according to my count , that make a total of 8 students from the enron tiger team who have a desire to work with enron . thanks , donna - - - - - original message - - - - - from : vittal , maheshram [ mailto : mvittal @ wharton . upenn . edu ] sent : friday , february 02 , 2001 10 : 17 pm to : ' fap ' subject : re : call from enron donna : i had submitted my resume directly to their recruiting office and haven ' t heard from them . i would be very willing to reforward my resume , if required . thanks , ram",0 +"Subject: alp presentation hi vince ! ! i ' ll take care of the invitations and i am planning to be at the concert on saturday ! thanks ! ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 05 / 01 / 2001 09 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 05 / 01 / 2001 04 : 55 pm to : christie patrick / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kenneth parkhill / na / enron @ enron , shirley crenshaw / hou / ect @ ect , melinda mccarty / corp / enron @ enron subject : alp presentation christie , shirley reserved room 49 cl for monday 4 : 00 p . m . presentation . can you issue the formal invitation to our guests with the game / dinner details ? i don ' t have all the details regarding the enron field box and time . i am out most of the day on wednesday but we can discuss the details on thursday . hope to see you on saturday at the concert . vince",0 +"Subject: marketing for your espeak session vince : thanks for your time earlier this week ; i ' m looking forward to your espeak event . sarah and i met with our etv contact yesterday , and we will be able to put a bulleted list on the elevator screens to advertise your espeak . please let me know what you would like us to post for you , and we will do the rest ! we also have plans to market specifically to the trader community here at enron , so you should get a high participation rate , especially from those groups . thanks , again . - er",0 +"Subject: lng hedging vince , fyi . this is something the team has been working on with krishna . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 12 / 21 / 2000 04 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli 12 / 21 / 2000 04 : 00 pm to : james a hughes / enron _ development @ enron _ development cc : subject : lng hedging jim , i am attaching below a small draft note prepared by anshuman on lng hedging . it talks of two products : ( 1 ) volumetric options ( where we buy a call on 100 % of the volumes and sell a put on 50 % of the volumes to finance the call ) , and ( 2 ) ratio derivative where we buy two calls at a higher price , and sell one at a lower price to finance it . this is not one that the traders agree to , since at the upper price , the calls bought are just at the money , while the sold call is in the money , and will cost the seller . hence , only option 1 is useful . it could provide risk mitigation in the high price scenario , while allowing some participation in low prices . to test it , we used march 2001 period . to have it cost neutral , we would buy a call at $ 26 , and sell the put at $ 25 . 15 . as we bounce these ideas , i think it is very important that we work closely with the global markets group . the team on the ground knows the contracts better , and maybe able to give you insights on what can be sold to mseb . would love to discuss the same with you . regards , sandeep .",0 +"Subject: cal berkeley general presentation confirmation - 10 / 16 / 00 we have been able to secure rooms at the claremont hotel in berkeley . please note the confirmation numbers listed below . thanks ! claremont resort and spa - berkeley 41 tunnel road berkeley , ca 94705 510 - 843 - 3000 from oakland airport : go straight out of the airport on airport blvd . turn right on hegenberger road . from hegenberger follow signs for 880 north . follow hwy 880 north and follow signs for hwy 24 to walnut creek . take the claremont avenue exit , turning left at the bottom of the exit onto claremont . turn right on ashby avenue ( 5 th stoplight ) and the hotel ' s entrance is two blocks ahead on the left . from san francisco airport : follow signs for hwy 101 north to san francisco , take hwy 80 east to the bay bridge to oakland . cross bay bridge on hwy 80 , follow to 580 east , and exit onto hwy 24 to berkeley / walnut creek . follow hwy 880 north and follow signs for hwy 24 to walnut creek . take the claremont avenue exit , turning left at the bottom of the exit onto claremont . turn right on ashby avenue ( 5 th stoplight ) and the hotel ' s entrance is two blocks ahead on the left . - - - - - - - - - - - - - - - - - - - - - - forwarded by ashley baxter / corp / enron on 10 / 12 / 2000 07 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - lara marie berry 10 / 10 / 2000 04 : 58 pm to : vince j kaminski / hou / ect @ ect , john pavetto / corp / enron @ enron , radu tutos / enron communications @ enron communications , denise rancour / corp / enron @ enron cc : ashley baxter / corp / enron @ enron , simone lewis / na / enron @ enron subject : cal berkeley general presentation confirmation - 10 / 16 / 00 cal berkeley general presentation monday , october 16 th this note is to confirm that you are scheduled to attend the cal berkeley general presentation on monday october 16 th . this e - mail should contain any information that you need to know pertaining to your trip . please print out a hard copy and bring with you in case of emergency . if you have any questions , there is a list of contacts listed below . once again , thank you for offering to help with technology recruiting at cal berkeley . see you on campus ! lara the general presentation will be held : monday , october 16 th the faculty club seaborg room - 2 nd floor 7 : 00 p . m . to 9 : 00 p . m . * * please plan on arriving at the general presentation by 6 : 00 p . m . the general presentation is designed to educate the students on enron and the global technology track . following the presentation we will invite the students to ask questions about enron and the global technology track . please plan to arrive at the general presentation by 6 : 00 p . m . it is business casual attire . flight arrangements : you are responsible for scheduling your own flight arrangements with your preferred airline provider . please schedule your flight to arrive to the san francisco airport on monday , october 16 th . please remember that there can be significant traffic over the bay bridge and to get into town at least an hour prior to the event . please make all flight arrangements through the travel agency in the park so that we are able to take advantage of discount fares . if you do not have a representative that you currently use at the travel agency in the park - feel free to contact liz mendiola at 713 - 860 - 1140 . rental car arrangements : once again , you are responsible for scheduling your own rental car arrangements with your preferred provider . your travel agency in the park representative should be able to assist you with rental car reservations . hotel arrangements : hotel reservations are currently being made by our representative at the travel agency in the park . as soon as we have confirmation numbers , i will let you know . san francisco airport to the faculty club take 101 northbound exit to san francisco / oakland bay bridge exit to 1 - 80 east exit on university ave . east on university avenue for 1 . 5 miles to oxford st . right on oxford st . , left on durant ave . , left on piedmont you will see parking on the right side once again , thank you so much for helping with the general presentation . below are some last minute tips to keep in mind : please remember to dress business casual . please remember to bring some business cards for students . i have attached a pdf version of the global technology track brochure . please forward all expense receipts to grace garcia . she will handle any expenses incurred for this recruiting trip including : flight costs , hotel , car , food , valet , etc . however , you must turn in some sort of receipt - so be sure and save them ! ashley baxter work : 713 - 853 - 3589 cell : 281 - 793 - 0567 lara berry work : 713 - 345 - 8320 cell : 713 - 857 - 1034 grace garcia work : 713 - 853 - 7252 simone lewis work : 713 - 853 - 1645",0 +"Subject: re : petronas benchmarking visit khairuddin , thanks for your message . the fax has been sent . vince khairuddinbmjaafar @ petronas . com . my on 01 / 17 / 2001 01 : 50 : 36 am please respond to khairuddin _ mjaafar @ petronas . com . my to : vkamins @ ect . enron . com cc : azminab @ petronas . com . my subject : petronas benchmarking visit dear mr . kaminski , pertaining to our visit to your kind company in february , we are required to obtain visas for the trip . to apply for the visas , the embassy requires a letter from the us company confirming our meeting or visit . we would really be grateful if you can fax us a confirmation letter so that we can proceed with our visa application . please fax the letter to : mr . nur azmin abu bakar head , risk assessment and control corporate risk management unit , corporate planning and development division level 71 , tower 1 , petronas twin towers , kuala lumpur city centre , 50088 kuala lumpur , malaysia fax : ( 603 ) 2051 - 3252 your speedy reply is greatly appreciated . thank you and regards , khairuddin . disclaimer : this e - mail and any files transmitted with it ( "" message "" ) is intended only for the use of the recipient ( s ) named above and may contain confidential information . you are hereby notified that the taking of any action in reliance upon , or any review , retransmission , dissemination , distribution , printing or copying of this message or any part thereof by anyone other than the intended recipient ( s ) is strictly prohibited . if you have received this message in error , you should delete this message immediately and advise the sender by return e - mail . opinions , conclusions and other information in this message that do not relate to the official business of petronas or its group of companies shall be understood as neither given nor endorsed by petronas or any of the companies within the group . ( embedded image moved to file : pico 5415 . pcx ) - pico 5415 . pcx",0 +"Subject: re : ( no subject ) thanks vince . vince j kaminski wrote : > blake , > > i forwarded the azure presentation to greg whalley recommending > that he takes a look at it . > > vince",0 +"Subject: jury duty shirley , i have been summoned for jury duty and plan to be out tomorrow , wednesday , may 2 . thanks , stinson",0 +"Subject: re : fw : fw : visit to enron by professor nalin kulatilaka of boston university hi nalin , martin lin asked if you have a paper "" or something "" related to the lecture you will be giving to us on may 17 th . ciao , iris - - - - - original message - - - - - from : lin , martin sent : monday , april 30 , 2001 8 : 52 am to : mack , iris subject : re : fw : fw : visit to enron by professor nalin kulatilaka of boston university is there a paper or something related to this topic that we can look over beforehand ? thanks , martin iris mack / enron @ enronxgate 04 / 27 / 01 05 : 42 pm to : chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / enron communications @ enron communications , martin lin / hou / ect @ ect , martin lin / contractor / enron communications @ enron communications cc : subject : fw : fw : visit to enron by professor nalin kulatilaka of boston university fyi - - - - - original message - - - - - from : mack , iris sent : monday , april 23 , 2001 2 : 45 pm to : crenshaw , shirley ; crenshaw , shirley ; dupont , anita cc : kaminski , vince ; ' nalink @ bu . edu ' subject : fw : fw : visit to enron by professor nalin kulatilaka of boston university hi , here is the title and abstract for professor kulatilaka ' s talk on may 17 th at our 11 : 30 am research group luncheon / seminar . iris title : "" using the mobile internet to make new markets "" abstract : professor kulatilaka will talk about some new ideas that he is working on which involve using the micro billing / payments capability of a packet - switched wireless network to create new markets . the potential markets range from spot markets for local spectrum to congestion - based pricing for highways .",0 +"Subject: re : real time var tanya , thank you for the information . i agree that we need to talk about more what and how global valuation can facilitate a more competitive var engine . winston and nilay are going to give my group a presentation regarding the current var system next tuesday . i am sure the presentation will help my team better understand the requirements of var engine on global valuation . please join us if you have the time . i would also appreciate your insight on this matter . thanks zhiyong tanya tamarchenko 01 / 08 / 2001 11 : 09 am to : zhiyong wei / hou / ect @ ect , nilay basu / hou / ect @ ect , wenyao jia / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : real time var ziyong , we met with nilay and winston last week regarding real time var calculation possibility . winston has an overview of var system which consists of : - main curves simulation ; - curve server ; - book server ; - id server - clients as a first step i want to see where the time is spent when var runs , which percentages of time are spent by each part . nilay is going to get this information for a few portfolios ( agg - ect , agg - gas and ng - price - prc ) . preliminary information : currently var run takes about 1 hour , half of this time taken by "" book server "" ( we have about 4500 lower level portfolios in the portfolio hierarchy , about 5500 portfolios all together ) , most of the rest is taken by "" clients "" , "" main curves simulation "" does not take much time . i am looking also at using alternative methods of faster var calculation , but having so many portfolios in the hierarchy will slow down even analytical var . we also have to think more about what "" real time "" calculation means and what it should produce . tanya",0 +"Subject: ftr team , the copy of the auction results that you got at yesterday ' s meeting is incorrect . what happened was when i tried to sort the entire page , i only highlighted the related column and expected excel 98 would sort the whole page . ( as steve told me before , i should highlight the whole thing if i try to do sorting in excel ) . i appolized for the misleading and have redone the whole thing . thanks for the patience . wish you all have a great weekend .",0 +"Subject: re : your questions and requests to judy schlesinger thanks susan : however , vince has not received his financial times at all this week . i have called everyday and they tell me they will send a recovery copy , but so far we have not received one . is there anyway we could get a copy for him today ? your help will be greatly appreciated . thanks ! enron north america corp . from : susan l kennedy 06 / 21 / 2000 05 : 12 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : your questions and requests to judy schlesinger shirley , please find the below answers to the questions you had sent to judy . financial times - vince ' s subscription does not exprire until january 4 , 2001 vince ' s subscription to power finance & risk - what you recieved was not a renewal , it was for a free trial that began on june 5 th and ends on june 26 . please disregard it . his subscription that we recently renewed does not expire until march 26 , 2001 . i have sent in payment for vince ' s renewal for oxford energy forum . if there is anything else that i can help you with , please do not hesitate to call me . susan",0 +"Subject: re : access to o ; . . . please , grant access as requested . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 19 / 2000 03 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - daniel muschar @ enron 09 / 19 / 2000 03 : 27 pm to : juan padron / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : access to o ; . . . vince has this under control . he will forward it to the security group . daniel a . muschar juan padron 09 / 19 / 2000 02 : 22 pm to : vince j kaminski / hou / ect @ ect cc : daniel muschar / aa / corp / enron @ enron subject : access to o ; . . . vince , this e - mail is to request access to the o : / research / power meteorlogy / weather temps / txtemps . xls file . . . i was told by tech - support to e - mail you with this request and everything would get squared away . daniel , could you please advise on what to do next . thank you . . . juan - - - - - - - - - - - - - - - - - - - - - - forwarded by juan padron / na / enron on 09 / 19 / 2000 02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - daniel muschar 09 / 19 / 2000 09 : 14 am to : juan padron / na / enron @ enron cc : subject : access to o ; . . . i called security again and here is what is happening : this request is waiting on the approver . stinson gibner : here is the info on the user we are waiting on . stinson ? ? gibner contact info company info phone : ( 713 ) 853 - 4748 employee type : enron employee email : sgibner @ enron . com job title : vp research location : eb 1963 supervisor : kaminski , wincenty j fax : ( 713 ) 646 - 2503 contract company : ect resources corp cellular : company number : 0413 pager : cost center : 0000107043 click here for others in cost center cost center name : na - research group ena city : houston bner or vince kaminski are the approvers for this directory",0 +"Subject: re : check and car hire - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 03 / 2001 06 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tony hamilton @ enron 04 / 03 / 2001 05 : 16 am to : kevin g moore / hou / ect @ ect cc : subject : re : check and car hire kevin my wife checked with our bank - it will take up to 10 days for the $ 2000 check to clear . i checked with enterprise ( the car hire people ) last night and the total bill will be about $ 1251 - i don ' t have this much left on my credit card , help ! i am really sorry about the hassle this is causing you , but i need some way for enron to pay directly for the car , that way i won ' t need the $ 2000 check . many thanks for your help tony",0 +"Subject: re : confirmation of meeting fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 28 / 2000 10 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - wendy . dunford @ arthurandersen . com on 09 / 20 / 2000 10 : 11 : 43 am to : shirley . crenshaw @ enron . com cc : subject : re : confirmation of meeting vince sounds very busy ! just let me know when he is free and i will sort something out . thanks wendy * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: re : hi ! please delete this soon as per jeff ' s request . krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 05 / 2001 03 : 06 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jeff fleming "" on 04 / 05 / 2001 01 : 46 : 26 pm please respond to to : cc : subject : re : hi ! good to hear from you . things are going pretty well hear , but busy with the end of the semester coming up . as for u of h , i guess there are several possibilities depending on what shane wants to do . the best researcher in their group by far , in my opinion , is bong - soo lee . but he does more general asset pricing stuff . minnesota econ phd , really smart . their main derivatives guy is rabon rabinovich . he ' s done some good work in the past but not very active in the last five or ten years . or , you could go with ron singer or art warga ( art ' s more respected and more active ) . these guys are more senior , more general , and do more research than ramon - - i would guess that they tend to be the workhorses in terms of advising phd students at u of h . in any case , please destroy this info as soon as you digest it . i would hate for my candidate assessments to ever get passed along to the good folks at u of h . jeff jeff fleming associate professor jones graduate school of management - - ms 531 rice university 6100 main street houston , tx 77005 713 / 348 - 4677 ( voice ) 713 / 348 - 5251 ( fax ) http : / / www . ruf . rice . edu / ~ jfleming",0 +"Subject: re : bfl - jim woods info al , thanks . confirmed for wednesday , next week , 7 : 00 a . m . vince al arfsten on 08 / 09 / 2000 01 : 41 : 59 pm please respond to arfsten @ bflassociates . com to : vince j kaminski cc : subject : re : bfl - jim woods info vince : jim is confirmed to meet you at 7 : 00 a . m . next wednesday . he will go to the hostess stand at the atrium restaurant and await you . he is about 5 ' 6 "" brownish hair , glasses , youthful appearance and will be in a sport jacket for casual attire . i look forward to tallking with you again soon . al arfsten vince j kaminski wrote : > al , > > wednesday next week is fine with me . i would prefer to meet earlier > rather than later . what about 6 : 45 or 7 : 00 ? > > vince > > al arfsten on 08 / 09 / 2000 11 : 38 : 46 am > > please respond to arfsten @ bflassociates . com > > to : vkamins @ enron . com > cc : > subject : bfl - jim woods info > > vince : pursuant to bjorn ' s suggestion and my voice mail message , > attached you will find the background information on jim woods . jim is > not a pure quant and enjoys much more the areas of strategic thinking > and related processes . from what i can tell , he enjoys the process of > creating an arguement for a client ' s position in some disputed matter . > he is looking forward to having an opportunity of meeting you . his > availability next week is only on wednesday . an early breakfast at the > hyatt would work great for him . please let me know if that might work . > if not , when ? al arfsten > > ( see attached file : wood jim . doc ) > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > name : wood jim . doc > wood jim . doc type : winword file ( application / msword ) > encoding : base 64 > description : mac word 3 . 0",0 +"Subject: re : mgmt 656 let me know if you need anything else . - pam at 11 : 00 am 1 / 26 / 01 - 0600 , you wrote : > pam > > thanks > > yes , please , send me the e - mail addresses . > > vince > > > > > > pamela vande krol castro on 01 / 26 / 2001 10 : 40 : 17 am > > to : vince . j . kaminski @ enron . com > cc : > subject : mgmt 656 > > > here are your latest rosters . let me know if you would like the spreadsheet > with their e - mail addresses as well ! - pam ( 6223 ) > ( see attached file : 656 . doc ) > > - 656 . xls",0 +"Subject: message 3 ps : attached with the flyer of the conference . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 622 tel : ( 07 ) 33461428 department of mathematics , the university of queensland - engy . pdf",0 +"Subject: elena chilkha please fill - out the evaluation sheets on elena chilkina . thanks sorry i didn ' t includ the evalutation form .",0 +"Subject: prof . carmona yannis , i have looked at the outline of the proposed course and find that practically all the topics of the program are the staple of what we do every day . i don ' t think research should spend money for this class . if we want to establish a relationship , we can easily do it by asking him to work on a research project . vince",0 +"Subject: my new email address hello - please note that i have a new email address : alamonsoff @ riskwaters . com ? also , if you have not already submitted a copy of your presentation for the financial mathematics training course , please let me know the status asap and if you are planning either to bring copies with you to the course or if you will be submitting a copy to me . if you plan on bringing copies , please note to bring 40 copies . ? ? regards , amy lamonsoff training course coordinator",0 +"Subject: re : fed ex from iris molly , yes , march 1 would work . vince enron north america corp . from : molly magee 01 / 16 / 2001 03 : 36 pm to : vince j kaminski / hou / ect @ ect cc : subject : fed ex from iris just checking to be sure you ' re okay with a march 1 start date for iris ? molly - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 16 / 2001 03 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : "" iris mack "" 01 / 16 / 2001 03 : 13 pm to : molly . magee @ enron . com , vince . j . kaminski @ enron . com cc : subject : fed ex from iris hi , thanks for the fed ex with the offer letter , and other pertinent information about enron . i have signed the letter and returned it to you , along with a couple of other forms . you should receive these documents via fed ex on tomorrow morning . because i have to tie up a few loose ends here in california , i won ' t be able to start until march lst . i hope that is okay . thanks so much . regards , iris get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: re : var model - some questions i know nothing about this . since neither research nor energydesk know about it , all we can do is collect their requirements and provide what they ' re looking for as a new project . this will require vince ' s input since we ' ll essentially be sending research models to the outside world . steve sharad agnihotri 27 / 02 / 2001 14 : 48 to : steven leppard / lon / ect @ ect cc : subject : var model - some questions steve , do you know anything about this ? sharad - - - - - - - - - - - - - - - - - - - - - - forwarded by sharad agnihotri / lon / ect on 27 / 02 / 2001 14 : 48 - - - - - - - - - - - - - - - - - - - - - - - - - - - andreas lorenz 27 / 02 / 2001 14 : 01 to : sharad agnihotri / lon / ect @ ect cc : subject : var model - some questions hi sharad , could you please have a look at below var model - the dll file should have been provided by research ( if some time back . . . ) can you provide any information re what and how it does it ? underlying assumptions ? shortfalls ? many thanks for your help ! cheers ,",0 +"Subject: ( no subject ) dear dr . kaminski : i am sending the attached letter and a copy of my resume for my application as a summer intern at enron at the suggestion of my father edward kao . if you need additional information , please feel free to contact me . sincerely , candice kao p . s . i am sending a hardcopy of my letter and resume to you today . thank you once again . - letter to kaminski . zip",0 +"Subject: meetings with petronas on february 8 th good morning all : the petronas meetings and presentations will be in eb 3321 on the 8 th . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 11 / 2001 09 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 08 / 2001 12 : 06 pm to : rick buy / hou / ect @ ect , david port / market risk / corp / enron @ enron , john l nowlan / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : meeting on feb 8 , 2001 fyi . this is the list of the petronas executives visiting enron on feb 8 . i have invited them to lunch . would you like to join me for lunch . i would like to propose a short courtesy meeting at 10 with jeff / john ( 5 - 10 minutes ) , followed by rac / research presentation till 11 : 30 . vince p . s . i shall reserve a conference room for this meeting - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 08 / 2001 10 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - azminab @ petronas . com . my on 01 / 07 / 2001 06 : 37 : 33 pm to : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com , khairuddinbmjaafar @ petronas . com . my cc : subject : re : meeting on feb 8 , 2001 dear kaminski 4 members from corporate risk management unit 1 . iqbal abdullah - general manager 2 . nur azmin abu bakar - head , risk assessment & controls 3 . zulkifli a rahim - head , risk measurement & systems 4 . adnan adams - head , special projects regards vince . j . kaminski @ enron . com on 03 / 01 / 2001 09 : 45 : 02 pm to : azminab @ petronas . com . my cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com subject : re : meeting on feb 8 , 2001 dear mr . nur azmin abu bakar , thanks for your prompt reply . please , let us know how many members of your team will visit enron . i look forward to our meeting on february 8 . vince kaminski azminab @ petronas . com . my on 01 / 02 / 2001 06 : 38 : 33 pm to : vince . j . kaminski @ enron . com , khairuddinbmjaafar @ petronas . com . my , shirley . crenshaw @ enron . com cc : subject : re : meeting on feb 8 , 2001 dear kaminski , happy new year and thank you for the reply . we are honored to have lunch with you and your team however we have another appointment at 2 . 30 p . m . regards vince . j . kaminski @ enron . com on 03 / 01 / 2001 07 : 38 : 19 am to : azminab @ petronas . com . my cc : vince . j . kaminski @ enron . com , shirley . crenshaw @ enron . com subject : meeting on feb 8 , 2001 dear sir , i would like to apologize for the delay in responding to your fax . i was on vacation for the last few days . i shall be honored to meet your delegation on thursday , february 8 at 10 : 00 a . m . please , let me know if you will be free for lunch after the meeting . vince kaminski",0 +"Subject: vlady gorny barbara , i called vlady gorny and explained that the presentation by jorion is not offered under the umbrella of the seminar sponsored by enron and that it is a closed meeting for the school faculty . i don ' t think that enron would open its job interviews to rice observers who expressed interest and i made this comment to vlady . he is ok with this . you can let his program director know that i have explained to vlady that it is a meeting for limited audience and that he does not expect to be invited . please , let me know the details of the dinners . vince",0 +"Subject: re : seminar on beyond ols clayton , we can offer the seminar / discussion session on monday , december 18 , at 3 : 30 . please , let me know if this would work . vince clayton vernon @ enron 12 / 07 / 2000 01 : 55 pm to : vince j kaminski / hou / ect @ ect cc : vasant shanbhogue / hou / ect @ ect subject : seminar on beyond ols vince - george is fully enthusiastic for a seminar by research on these ideas and resource tools . any afternoon is fine to him - we can probably push the time up to 3 : 00 or so so everyone who needs to cheat to get away from work early to go shopping can . clayton",0 +"Subject: re : financial engineering associates it is the special package for options with multiple assets and options on averages . - - stinson vince j kaminski 03 / 06 / 2000 03 : 31 pm to : stinson gibner / hou / ect @ ect cc : subject : financial engineering associates stinson , what is spav ? is it the basket option model ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 06 / 2000 03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : karla feldman 03 / 06 / 2000 01 : 50 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : financial engineering associates vince and stinson , i checked the file and the maintenance that automatically renews on 4 / 1 / 2000 is for the following products : all 4 of your @ global licenses spav swing i will go ahead and contact fea and see about getting the renewal invoice for these . i ' ll send it to shirley for payment once i have it . the products : @ interest , seapc , and seapp have not been on maintenance for a while . fea told us a couple of years ago i believe that they do not have maintenance available for these products any longer . so , you don ' t need to worry about cancelling @ interest . also , just fyi - your @ energy . 1 and @ energy . 2 licenses have maintenance through 10 / 20 / 2000 . if you have any questions , please let me know . otherwise , i will proceed with contacting fea about you renewal of the @ global , spav , and swing licenses . thanks , karla",0 +"Subject: re : completion of ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 vince , you have been approved for the technical view within ibuyit . changes will take effect on next login . thank you , sap security ( eva - from : raul davila / enron @ enronxgate on 04 / 19 / 2001 06 : 02 pm to : sap security @ enron cc : subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 approved - - - - - original message - - - - - from : tow , eva on behalf of sap security sent : thursday , april 19 , 2001 5 : 39 pm to : davila , raul cc : vkamins @ enron . com ; crenshaw , shirley subject : re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 raul , raul , vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security . thanks ! shirley crenshaw @ ect 04 / 19 / 2001 03 : 01 pm to : sapsecurity @ enron . com cc : vince j kaminski / hou / ect @ ect subject : ibuyit form attached please find the completed form for vince kaminski , managing director , research group . he will be approving all purchases for cost center 107043 . > - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect cc : subject : ibuyit form hi shirley there were two shirleys , so sending to both > isc help desk ",0 +"Subject: re : contract update vince , if there are some differences that we need to correct , you and i can meet tomorrow when you bring the contract in . i am available anytime after lunch . please call me at x 30649 . sheila - - - - - original message - - - - - from : kaminski , vince sent : tuesday , march 06 , 2001 3 : 10 pm to : sheila walton / hou / ect @ enron cc : kaminski , vince subject : contract update sheila , some minor differences between the draft and the final executed version . i have forgotten to bring the draft today , i shall send a copy to you tomorrow . there were some hand - written changes made by greg ijn the draft that were not transferred to the final version . vince",0 +"Subject: sas to the group : if you wish to use sas , there are a few simple things you need to do : 1 ) you need to get a unix password if you don ' t already have one ( your user id will be the same as on the nt network , but a different password is issued ) 2 ) you need a program called "" exceed "" on your pc . request it from it ( you already have this if you are already a user of lim on the unix platform ) 3 ) you need an "" ftp "" program on your pc . you can go to www . download . com and download one ( i like wsftp ) 4 ) exceed is funny in the way it runs . when you invoke exceed ( or lim advanced user ( under infobases ) if you already have this ) it will install itself the first time , and will then "" disappear "" to the taskbar . you need to * right * click on the taskbar on exceed , and then choose "" tools "" and "" client startup "" and then "" new . "" you will enter a box which should already be set for rexec and an xwindow emulation . you need to specify the host type as sun , enter your user name and password , set the host name to : capers . ect . enron . com and then , on the command line , type the following ( carefully ) : / usr / openwin / bin / xterm - display @ d then , use the file menu to save this as capers . xs and then click on the run ! menu . within a second or two , a window will open up with you logged into the serve capers . you are now on a unix server , and the directory is your home directory . from here , if you simply type "" sas "" the 3 windows for an interactive session with sas should open on your desktop . you are in business . 5 ) you also need to install your ftp . follow the procedures with the software , and then create a new session called "" enron "" where you choose as the server simply "" earth "" ( do not add any further descriptors such as . enron . com ) . supply your user name and * unix * password , check the "" remember password "" box , and the default communication setups should be correct ( eg , host type as "" automatic detect "" ) . when you invoke ftp and connect to enron , it will put you in your home directory on the unix system , the same directory your xwindow comes up in under exceed . if you have any problems , i ' ll be happy to help clayton ps i have a complete set of new sas manuals i am happy to loan out if you ' ll just write your name down when you take them .",0 +"Subject: new resume dear vince , i am so grateful for your efforts . i really appreciate you taking time from your busy schedule . if you have not contacted michael maddox , it ' s even better . i have updated and re - worded my resume to better reflect my accomplishments . would you please contact michael maddox of cera and forward my resume to him ? his contact information is ( 617 ) 497 6446 or email : mmaddox @ cera . com have you had a chance to talk to david port ? maybe there are other options . i am flexible and willing to do whatever it takes . sincerely , bessik matchavariani manager enron broadband services tel : 713 . 345 . 7230 fax : 713 . 646 . 8861 bessik _ matchavariani @ enron . net",0 +"Subject: re : enron / stanford program vince , are we on for dinner on sunday at 7 pm ? best regards , nick nick bambos wrote : > > vince , > > i have managed to change my ticket and we can meet for dinner on sunday 10 / 15 / 00 . > shall we say at 7 pm ? > > > > > > giuseppe : can you please join us for dinner on sunday 10 / 15 . we ' d like to briefly > discuss the project too . could i please ask you to make reservations for 3 at > il fornaio or some other nice place in palo alto ? preferably a quiet place where > we can talk . > thanks , > > nick > > vince . j . kaminski @ enron . com wrote : > > > > nick , > > > > dinner on sunday would work for me . i shall stay > > in the bay area till monday morning . > > > > vince > > > > nick bambos on 09 / 28 / 2000 08 : 33 : 38 pm > > > > to : vince . j . kaminski @ enron . com > > cc : > > subject : re : enron / stanford program > > > > hi vince , > > > > i am on the technical program committee of the infocom 2001 conference , > > and we are meeting in new york city on saturday , october 14 th , to select > > papers for the conference program . i ' m leaving stanford on friday and > > getting back on sunday . > > > > it might be a possibility to have dinner together on sunday , if that would > > work for you . in that case i would have to reschedule my flight to land > > in sfo earlier than i ' m currently scheduled to land . > > > > would dinner on sunday work for you ? any chance we can meet monday for > > lunch ? > > > > i look forward to seeing you . > > > > best regards , > > > > nick > > > > vince . j . kaminski @ enron . com wrote : > > > > > > nick , > > > > > > i shall be in stanford oct 14 - 15 , visiting my family . > > > i would be glad to meet you ( and possibly giuseppe - your call ) for > > lunch . > > > please , let mer know if you are free on one of these days . saturday would > > > work better for me . > > > > > > vince > > > > > > nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm > > > > > > to : stinson . gibner @ enron . com > > > cc : vince . j . kaminski @ enron . com > > > subject : re : enron / stanford program > > > > > > stinson , > > > > > > great ! i ' m looking forward to a very productive collaboration . > > > i ' ll immediately start doing giuseppe ' s papers , for him to work > > > on the enron / stanford program . > > > > > > many thanks to you and vince , and i hope to see you soon at stanford > > > or enron . if i remember correctly , vince is visiting stanford in > > > october . > > > > > > best regards , > > > > > > nick > > > > > > stinson . gibner @ enron . com wrote : > > > > > > > > nick , > > > > > > > > i spoke with paul racicot , head of trading for ebs , north america this > > > > morning . he said that he is happy to send the $ 100 , 000 for your > > program > > > > from his budget . i have forwarded to him the draft letter to > > accompany > > > > the funds and will try to follow up to make sure that the money is sent > > > > promptly . > > > > > > > > - - stinson",0 +"Subject: july conference on real options please find attached the programs for two back - two - back conferences on real options at cambridge university in uk . the two conferences are separate but complementary events . the first conference , co - sponsored with andersen consulting and morgan stanley dean witter , on july 5 - 6 , is a professional conference on real options valuation in the information economy : internet / high - tech / telecom , r & d / pharma , energy . for info . and online registration see www . rogroup . com . the second is the 4 th annual international conference on real options : theory meets practice ( the annual industry event where academics and practitioners get together to share the latest developments on theory and applications ) , co - organized with u . cambridge on july 7 - 8 . for info . and online registration see www . realoptions . org among the two events , we are pleased to present an extensive array of practitioner and academic presentations , sharing of experiences by corporate executives , and panel discussions by experts from leading organizations and universities . our keynote speaker this year will be myron s . scholes , co - developer of the black - scholes option valuation . interested participants must register for the conference ( preferably on line ) and indicate hotel preferences ( among 5 - 6 hotels ) by june 15 ( latest ) . we look forward to seeing you at this exciting event , and would appreciate if you share this with interested colleagues . - camjuly 2000 profconference . doc - conf 4 program . doc",0 +"Subject: capa 2000 conference vince and stinson , alex and i attended the international chinese petroleum and petrocehmical technology conference in houston . we presented two talks 1 ) risk management in petroleum industry and 2 ) real option valuation of oil field . the section chairman said our talks were the high moments in the business session . there were several interesting talks in the business section . i am going to get a copy of the presentation on internet opportunity in energy trading , where the author did a study about all energy trading sites including enrononline . a talk from a gentleman working for costal ( used to be pal of song yip ) on real assets management is also very informative . a talk about using real option theory for it managenet was also interesting . big players , exxonmobil , shell , taxco , and bp have strong presence in the conference . i made a copy for you of the keynote speech by bob gee , the assistant energy secretary under clinton administration about the energy outlook . zimin",0 +"Subject: proposal submission francois and kent , hope this proposal reaches you in time for consideration for the upcoming fma - european meeting . i normally don ' t like to commit myself to a proposal but in this case i ' m very comfortable doing so in light of the status of the project . as you will see this "" clinical "" paper is a study of strategy formulation in a very innovative company that uses financial derivatives in conjunction with real asset investments . the firm , enron , has been the most innovative company in america for more than five years now and has expanded its strategy abroad . we have the unique opportunity to document the firm ' s strategy from the inside with my co - authors being members of the corporate research staff that manage the pricing of the energy derivatives in which the firm makes a market , as well as provide the analysis upon which firm risk positions are managed . although , specific enron projects have been documented and published , noone has captured the story of the company visionaries that formulated and executed the firm ' s business strategy . of course , what makes the story of particular interest to finance scholars is the fact that the strategy hinges in very important ways on financial innovations . this is going to be a very informative and fun story to tell and i hope to bring along my colleagues from enron to paris for the meeting . thanks for asking me to join the program advisory board and i look forward to your comments on the attached proposal . sincerely yours , john - enron transformation paper . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : weatherdelta demonstration scheduling alex , i agree . let them make up the data . please , ask shirley to determine convenient date and time . vince alex huang @ enron 11 / 01 / 2000 03 : 59 pm to : vince j kaminski / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , lance cunningham / na / enron @ enron , sevil yaman / corp / enron @ enron , stinson gibner / hou / ect @ ect cc : subject : re : weatherdelta demonstration scheduling hi all , i got the following reply from mike denton . can you let me know what time is most convenient for you so i will arrange a time for the presentation ? i don ' t think we should provide them any data , unless you think otherwise . alex - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 11 / 01 / 2000 03 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - denton mike on 11 / 01 / 2000 03 : 05 : 48 pm to : alex . huang @ enron . com cc : subject : re : weatherdelta demonstration scheduling mr . huang , we would be happy to demonstrate the features and functionality of the weatherdelta tool set for your team at enron . early next week ( tuesday or wednesday ) are both possible , as well as early the following week . the demonstration can take 90 minutes or more , depending on the number of questions and the level of detail . ideally , you could provide us with some of your data and we could demonstrate how to value a full - requirements contract to service that particular load . to do this we will need one or more years of hourly consumption data , and the general location of the load . ideal data formats are csv files of either 365 rows x 25 columns ( date , hrl , hr 2 . . ) or 8760 rows x 3 columns ( date , hr , load ) . in lieu of using your data , we will provide sample load data . please feel free to call me and we can discuss schedules and the particulars of the product overview and demonstration . thank you for your interest , michael j . denton vp na strategic consulting caminus corporation 212 - 515 - 3667",0 +"Subject: re : time keeping what about me ! i may need this in the future . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 03 / 21 / 2000 08 : 12 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 03 / 21 / 2000 07 : 27 am to : brad mcsherry / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , william smith / corp / enron @ enron , kevin g moore / hou / ect @ ect subject : re : time keeping hi brad : i am it for our group ! however , it might be a good idea to train sam smith also . please let us know . thanks ! shirley 3 - 5290 from : brad mcsherry on 03 / 20 / 2000 05 : 38 pm to : lydia cannon / hou / ect @ ect , rosalinda resendez / hou / ect @ ect , donna baker / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : time keeping lydia / rosie / donna / shirley , we are looking to implement sap hr by 7 / 1 / 00 . there is a time keeping module in the program . please send me a list of the time keepers for your groups . do not forget to send your own name if you keep time . time keepers will be contacted in the near future for training on the new system . thank you for your help , brad",0 +"Subject: re : hi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 05 / 2001 03 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jeff fleming "" on 04 / 05 / 2001 03 : 24 : 25 pm please respond to to : cc : subject : re : hi ! one other person that i forgot to mention - - praveen kumar . i don ' t know exactly what he does , mostly theory stuff i guess . any way , he is also really good and highly respected in the profession ; probably ranks right up there with ( but second to ) bong - soo . jeff jeff fleming associate professor jones graduate school of management - - ms 531 rice university 6100 main street houston , tx 77005 713 / 348 - 4677 ( voice ) 713 / 348 - 5251 ( fax ) http : / / www . ruf . rice . edu / ~ jfleming",0 +"Subject: restricted list neither ena / rac / egf employees nor family members or others living in their household or financially dependent on the ena / rac / egf employee may purchase or sell securities of any entity ( or derivatives thereof ) listed on the restricted list for your or their personal or related accounts or recommend the purchase or sale of such securities to any person , except with the prior approval of the compliance department in consultation with the ena legal department . in addition to the trading restrictions above , should you at any time possess non - public material information about any public company , you , your family members and anybody that is financially dependent on you , are restricted from trading in that issue , and you may not disclose the non - public material information to anyone that does not have a business need to know . company name stock symbol 3 tec energy corp . tten active power acpw adrian resources adrrf beau canada exploration ltd bau cn belco oil & gas corporation bog bonus resource services corp bou brigham exploration bexp canfibre group ltd . cfgl carrizo oil & gas inc . crzo costilla energy cose crown energy croe cynet , inc . cyne cypress energy cyz esenjay exploration esnj firstworld communications inc . fwis hanover compressor co . hc ice drilling enterprises inc . idf industrial holdings , inc . ihii inland resources , inc . inln kafus environmental industries , inc . ks nakornthai strip mill public co ltd nsm set paladin resources plc plr ld paradigm geophysical pgeof place resources , inc . plg cn quanta services inc . pwr queen sand resources , inc . qsri quicksilver resources inc . kwk saxon petroleum , inc . sxn cn southwest royalties swroy startech seh cn syntroleum corp . synm tejon ranch corp . trc tetonka drilling tdi transcoastal marine services , inc . tcms the restricted list is solely for the internal use of ena / rac / egf . no one may engage in discussions regarding whether a security is or is not on the restricted list with persons outside ena / rac / egf without specific clearance from the compliance department in consultation with the ena legal department . in addition to the above , you are reminded that pursuant to enron corp . ' s risk management policy ( "" policy "" ) , no ena / rac / egf employee may engage in the trading of any "" position "" ( "" position "" means any commodity , financial instrument , security , equity , financial asset or liability that are authorized for trading in the policy for the benefit of any party other than ena / rac / egf , whether for his / her own account or the account of any third party , where such position relates to ( i ) any commodity , financial instrument , security , equity , financial asset or liability which falls within such employee ' s responsibility at ena / rac / egf or ( ii ) any energy commodity . the prohibitions listed above do not replace or modify the policies set forth in ena ' s policies and procedures regarding confidential information and securities trading , enron corp . ' s risk management policy , or enron corp . ' s conduct of business affairs . should you have any questions regarding the above , please contact me at ext . 31939 .",0 +"Subject: re : lloyd , i think that we can arrange a few video conference meetings instead . i don ' t see a justification for extending the stay over the weekend if we have an alternative solution . vince enron capital & trade resources corp . - europe from : lloyd fleming 07 / 06 / 2000 12 : 37 pm to : vince j kaminski / hou / ect @ ect cc : maureen raymond / hou / ect @ ect subject : vince i met maureen yesterday and had a useful discussion on her role within enron . i think it would be very helpful to promote the research group function of the company , particularly given maureen ' s background , if she could be introduced to some of the main traders down at mg . unfortunately she won ' t have time to meet with mg unless we can schedule some meetings on monday . would you be happy for her to extend her stay here till monday to allow the meetings to take place ? regards",0 +"Subject: re : grant masson fyi . i shall not be surprised if grant knock on our door again in a few weeks . i told him he could not count on the same generous treatment he got the first time . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 08 / 2001 08 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" grant masson "" on 01 / 07 / 2001 06 : 43 : 08 pm to : cc : subject : re : grant masson dear vince : ? after a very great deal of thought , i have decided to stick it out with el paso . ? please be assured that this exercise was not a "" fishing expedition "" to extract concessions from el paso . ? rather , it is simply that , although i continue to harbor doubts about some of el paso ' s methods and about the people running the business , i have concluded that two months is not enough time to fully judge the company . ? i feel that i have not yet given el paso ( or myself for that matter ) a fair chance . ? after all , if i disagree with the way the business is run , i should regard that as an opportunity to effect changes and not an excuse to run away . ? please extend my sincerest thanks and apologies to all those who worked so hard over the holidays to produce the offer : david oxley , sheila walton , and especially norma villarreal . ? and thanks also to you vince for your patience , humor , and good advice . ? as i ' ve said before , i consider it an honor to be able to call you a colleague and friend . ? with best regards , grant .",0 +"Subject: california update 5 / 22 / 01 please treat as confidential a source had a meeting today with california state treasurer phil angelides . here are the main points from their conversation 1 . anglelides certain that socal will go bankrupt corroborating our line over the past four months , anglelides stated with confidence that socal would go bankrupt and that "" he was surprised they hadn ' t already . "" he noted that the only reason they haven ' t yet is that "" they were too stupid to ring - fence the parent "" and that "" their two biggest equity holders were screaming not to do it . "" he added that the davis / socal mou is dead and that all the "" plan b ' s "" are "" speculative "" at best . he also thought that socal was being "" naive if they thought they would get a better deal from the legislature than from the bankruptcy court . "" 2 . bond issuance - $ 12 b not enough angelides conceded that a $ 12 b bond issue would not be enough to buy power for the summer and that the true costs would probably be $ 18 - 24 b . the only reason they didn ' t issue more is that angelides felt that "" $ 12 b was all the market could handle . "" the current game plan for bonds assumes an average peak price for power of $ 400 / mwh , which angelides said explains the difference between his estimates and the higher estimates from state comptroller ' s kathleen connell ' s office . 3 . new generator construction anglelides was explicit that the california public power authority ( authorized by the legislature last week ) will "" build plants and not stop until we [ california ] has a 10 - 15 % capacity cushion above expected demand . angelides expects the state to be "" 5 - 10 % short on power all summer . """,0 +"Subject: re : sddp tom , can you send the info regarding sddp to john ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 28 / 2000 10 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 07 / 19 / 2000 06 : 41 pm to : "" o ' brien john "" @ enron cc : vince j kaminski / hou / ect @ ect subject : re : sddp john , i shall e - mail the information about sddp from houston . vince "" o ' brien john "" on 07 / 18 / 2000 01 : 47 : 41 am to : vkamins @ enron . com cc : subject : sddp vincent , you kindly suggested that i email you with regard to some information you have on the sddp system ( i ' m not sure if i ' ve got the abbreviation correct , but it ' s something that is currently used in south america ) . your presentation was very interesting and informative . kind regards , john o ' brien manager , treasury & risk management snowy hydro trading pty ltd level 17 , bligh house 4 bligh street sydney nsw 2000",0 +"Subject: re : comments fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 03 / 27 / 2001 07 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sheridan titman on 03 / 27 / 2001 06 : 46 : 31 pm to : rakesh . bharati @ enron . com cc : subject : re : comments rakesh : thanks for your input . they are quite useful for helping me clarify my own thinking . the following are my responses to your comments and clarifications . the * * ed paragraphs are from me and the others are from you . 1 . the money is being set aside to avoid negative values . it is not clear if you mean the values of the cash flow or the pv at the node . anyhow , we shall be setting aside money not just for that specific node but all nodes at that cross - section of time as the risk - free asset pays in all states of nature . this will have to be done every time there is a negative realization . thus , for the typical project we have , the value of risk capital may be extremely high , as we are not following a tail - based norm anymore . * * i agree that this is confusing and needs further refinement . i do this because i have some concerns about discounting negative cash flows , ( this is discussed in my first memo ) . this clearly provides a conservative estimate of firm value , and a measure of risk capital that is too high . from the perspective of evaluating the appropriate level of risk capital , it is sufficient that enough capital be employed so that the pv at each node is positive . also , one might want to set the level so that the pv is positive in say 98 % of all nodes . 2 . your memo appears to suggest that debt capacity is contingent on all values being positive . if so , we are only issuing risk - free debt . also , a project with a single negative value at each cross - section of time will not have a positive debt capacity . * * again , this is a very conservative initial estimate . when the model is refined , you probably want to define debt capacity so that the project defaults a certain percent of the time . 3 . it seems that our optimization argument is the discount rate , which is obtained in each step from the comparison investment ( by equating the variances ) . it is not clear if changing the discount rate will have such an effect on the project variance so as to lead to a global convergence . * * i am not assuming that the change in the discount rate has a major effect on volatility . in fact , i think the process requires only one iteration when the volatility is independent of the discount rate . again , the idea is that we calculate the volatility of the project ' s value calculated with an initial discount rate . using the calculated volatility and the stock of a comparison firm , calculate a more appropriate discount rate . if the volatility of the project ' s value is not affected by the change in discount rates then we are done . if , however , the change in discount rates changes volatility , then we may have to iterate . let me know if this makes sense . * * also , our project has a finite life and the market - based assets will have infinite lives . in the light of this fact , how will we define the relevant variance ? is it the spot variance of the returns of the comparison investment ? * * this is a good point . i was thinking in terms of the average variance , but this may not be correct . actually , we know that this is just an approximation and we need to think about whether or not it is a good approximation . typically , firms tend to ignore issues relating to the duration of their project cash flows when they determine discount rate , which clearly does not make sense . this requires some additional thought . * * 4 . finally , our criterion is to subtract from the average pv the investment and also the risk capital . setting risk capital to zero , this model closely resembles the intuitive present value criterion and endogenously determines the discount rate . * * this is correct . my goal was to come up with something that was closely related to what you are already doing but which gives you some insight into how to define risk capital and the appropriate discount rate . there are a number of ways that we can refine and improve this procedure . what we need to first consider is whether or not the basic approach makes sense for the kind of projects that you are evaluating . * * gas field case to facilitate your thinking , we are providing a gas field example below . we invest x million dollars to buy and develop a gas field . a profile of expected production and variance of the production per year is available from the engineers at the beginning . production will be autocorrelated , as the profile will shift up or down based on the actual gas reserves being more or less than the estimated reserves . we assume the life of the field to be 10 years with no salvage value . there are fixed and variable operating costs . it might be useful for you to think about applying the framework to this problem . * * this problem is probably pretty straightforward because it is unlikely that the cash flows will be negative once the gas field is producing . hence , there is no need to be concerned about risk capital ( other than the x million dollars to buy and develop the property ) . to value the property assuming all - equity financing we calculate the value process of the developed project and compare its volatility to a comparison investment whose value process is observable ( e . g . , a traded mlp ) . the risk - adjusted return of the comparison investment would then be used to discount the cash flows of the gas field . please note that this procedure requires relatively strong assumptions and calculating the risk - adjusted return on the comparison investment is not necessarily straightforward . * * let me know when you would like to discuss this . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * on another topic , is it possible for you to give me information about one case where enron bought or sold a base load power plant , where the purchaser financed the transaction with non - recourse debt . we would like the following information : 1 . the value of the power plant ( or purchase price ) 2 . the amount of debt financing and the terms of the debt contract . 3 . some information about the pricing of gas - power swaps and options . about a year ago i gave vince a paper which develops a pricing model for project debt . i don ' t think he thought that it could be implemented on the type of projects that enron finances . however , my coauthors would like to try applying the model for one case study . let me know when you want to discuss these issues . thanks , sheridan sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu",0 +"Subject: garp fas 133 training garp philip merrill 973 - 258 - 1540 garpnyl @ home . com may 19 , 2000 for immediate release garp announces fas 133 training series garp , the global association of risk professionals , today announces that they will present a series of training sessions to educate the public about fas 133 accounting for derivative and hedging instruments . the standard has been changed and amended significantly in the last two years . this program is being offered because garp recognizes the need to educate the public as to the implications of this complex and significant financial reporting requirement . the series will consist of basic training sessions and an advanced seminar . garp members philip merrill and benton brown will present the basic training sessions . fasb staff members , legal , tax and technology specialists will join mr . merrill and mr . brown at an advanced seminar scheduled for july . the basic training sessions will update participants as to the definition of a derivative , cash flow hedging , fair value hedging , foreign exchange hedging , and elements of implementation . this course will cover the prerequisites for successful participation in the advanced seminar . the basic will also help facilitate participation in the garp fas 133 sessions . the first basic training seminar will be held june 28 , 2000 at the new york society of security analysts headquarters in the world trade center . registration and other detailed information are available from philip merrill at garpnyl @ home . com , or on www . garp . com . the advanced seminar will cover more complex issues relating to fasb staff accounting interpretations , tax , legal and technology implications and advanced risk management tools and techniques . participants in the advanced seminar should have mastered the content of the basic training session . the following people should attend : risk managers , accountants , auditors , lawyers , tax specialists , credit , compliance , technology and other risk professionals .",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 vernon , clayton j vasant shanbhogue may 26 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: re : new color printer this is the color printer that is being ordered . here is the info . that i needed . thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron technology from : lyn malina 12 / 14 / 99 08 : 09 am to : kevin g moore / hou / ect @ ect cc : subject : re : new color printer kevin : the color printer we currently order is the 4500 n for $ 2753 . 00 . please let me know if this is the one you would like to order . thanks lyn kevin g moore 12 / 14 / 99 06 : 29 am to : lyn malina / hou / ect @ ect cc : subject : new color printer - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 06 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 14 / 99 06 : 27 am to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : new color printer we are in need of a new color printer . we are also in the process of moving to the 19 th floor . we need the color printer a . s . a . p . if you would please , i need information concerning this matter whereby , we can get the printer ordered and delivered to our new location . thanks kevin moore",0 +"Subject: publishable research . . . . . . vince : the enclosed is from another of the people in the audience of my kao presentation . i talked to him , and he seemed slightly flaky . however , any research he does would be free . he ' s looking for direction . i doubt we would want to waste our time and effort on him , but i thought i should send this to you on the off chance that you might have a need for such a guy . ( maybe doing some research for trish ? ) grant . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 04 / 25 / 2000 05 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - steve j on 04 / 22 / 2000 10 : 02 : 11 pm to : grant masson cc : subject : publishable research . . . . . . hi grant , thanks for writing . i have attached my resume and transcripts for your perusal . as you can see , my background is not finance . i became interested in finance via trading the markets . so my research interests initially revolved around the central concept of trading . . . . pricing , technical type thinking , insider transactions , volume , and such . but with exposure , my interests have grown and i have discovered that i really enjoy economics . also there are many issues in finance that sound interesting as i am exposed to them . the point is , i am too early in my career to set strict limits on my interests . my goals are to get introduced to research and to new ideas , to associate with good people , and to work on strengthening my weaknesses . i am interested in starting to build a network within the field of finance and especially quantitative finance . ultimately , i have to prepare myself for independent research in order to succeed in my field . this brings me to my final point . publications are important for me . thus i would want to work on topics that enron would be willing to publish . i would be willing to work on proprietary models , as long as there was a portion of the research that could be written up for publication without jeapordizing the proprietary aspects of the model . just to let you know . i was not in dr . kao ' s energy class . i took his stochastic processes class . dr . kao just mentioned your talk to me as he thought i might be interested in meeting you and learning more about what is being done at enron . thanks again . if you need any more info or want anything clarified , just write me . steve - - - grant masson wrote : > > > steve : > > send me your resume and research interests , and i will > circulate them . > > regards , > grant . > > > = = = = = i believe in a free internet ! ! ! more importantly , i believe in a safe , secure and private internet ! ! do you yahoo ! ? send online invitations with yahoo ! invites . http : / / invites . yahoo . com - r _ t 2 . 1 . doc",0 +"Subject: overview of hr associates / analyst project per david ' s request , attached is an overview of the hr associates / analysts project - creating a human resource value index . this document will provide a brief , top - line overview of the following : description of the challenges people involved positive outcomes high - level description of the process we suggest if you have any questions before our tuesday meeting please contact either myself or dan brown . thanks ! tana cashion david oxley @ ect 10 / 05 / 2000 10 : 20 am to : gerry gibson / corp / enron @ enron cc : andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , tim o ' rourke / corp / enron @ enron , ted c bland / hou / ect @ ect , daniel brown / na / enron @ enron , tana cashion / na / enron @ enron , rhonna palmer / hou / ect @ ect , cindy olson / corp / enron @ enron , vince j kaminski / hou / ect @ ect , kay chapman / hou / ect @ ect , sarah a davis / hou / ect @ ect , marla barnard / enron communications @ enron communications , pam butler / hr / corp / enron @ enron , michelle cash / hou / ect @ ect , brian schaffer / corp / enron @ enron , suzanne brown / hou / ect @ ect , robert jones / corp / enron @ enron , neil davies / corp / enron @ enron subject : re : mission impossible - hr associate groups recommendation and next steps i notice my calender doesn ' t yet seem to have this meeting scheduled . i will ask kay chapman ( since rhonna has now deserted me ! ) to help put a time together . drew / mary , fyi sorry i didn ' t get a chance to send you this before . let me know if you want to attend , happy to have you there . gerry , can you help me put an agenda together so that everyone knows what we are looking to achieve here . in broad terms i am looking to do the following : update all on project we set hr associate group and their recommendations discuss their recommendations and look at any refinements or ideas we think we should also incorporate ( see my thumb nail sketch notes inspired by associate group below ) . reaffirm commitment to take this project forward and agree : team for doing so resources and timimg methodology for agreeing final version . my ambition is that we ( but in particular andrea , bob , gerry , tim , tana , dan , neil , myself and possibly suzanne if she can given the work she had already done in this area ) all agree to contribute to this and get it done without the need for a formation of a new team or group . obviously everyone welcome to participate . tana / dan , can you cicruclate a summary of your teams proposals to this group so we they can review before meeting . could you also agree within your team who you would like to attend this meeting ( i would suggest 2 or 3 of you attend rather than all ) . thanks david david oxley 09 / 26 / 2000 11 : 38 am to : andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , gerry gibson / corp / enron @ enron , tim o ' rourke / corp / enron @ enron , ted c bland / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : daniel brown / na / enron @ enron , tana cashion / na / enron @ enron , rhonna palmer / hou / ect @ ect , cindy olson / corp / enron @ enron subject : mission impossible - hr associate groups recommendation and next steps rhonna , please arrange a meeting later this week for all of those addressed by this message ( vince , it would great if one of your team could attend since we will need some heavy statistical and analytical help to complete this project ) . the prupose of the meeting will be to discuss and delegate next steps required to implement the hr associate groups recommendations for the development of an hr "" value index "" at enron . i would anticipate we will need approx 45 minutes . david",0 +"Subject: review and starting on october 2 vince , you mentioned yesterday to send you an e - mail reminder to speak with norma . i appreciate your support . just as a reminder , i started on october 2 , which was a monday . october 1 was a sunday . thanks for your support on this issue vince . sincerely , lance",0 +"Subject: fw : having iris visit london anita , it seems that i am going to london next week . please see forwarded emails . can you please assist me with my travel arrangements . thanks , iris - - - - - original message - - - - - from : kaminski , vince sent : tuesday , april 24 , 2001 5 : 25 pm to : shanbhogue , vasant ; mack , iris ; dhar , amitava ; kaminski , vince subject : having iris visit london it ' s ok to delay the materials for duffie . he is very busy anyway and is not going to complain . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - scott salmon @ enron 04 / 24 / 2001 01 : 23 pm to : amitava dhar / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate , ben parsons / lon / ect @ ect , george albanis / lon / ect @ ect , tomas valnek / lon / ect @ ect , bryan seyfried / lon / ect @ ect subject : having iris visit london hi amitava , we ' ve been doing some thinking and discussing here regarding the information on our modelling process we ' ll provide to darryl duffie . we think it would be extremely valuable for iris to come out to london for a couple weeks to gain a better understanding of the how the models integrate and are truly employed . i think this would greatly enhance the "" product "" we ' ll send to duffie as well as giving iris a firm view of enron credit . in addition , she could also explore some of the data sources such as amadeus and others that might be helpful in private firm modelling . if we ' re extremely efficient / lucky in receiving data from d & b or experian , she might be able to begin analysis on that for the private model efforts . i would recommend she plan on coming out for 2 weeks starting the week of 30 apr perhaps . depending on the progress with the private firm data sources , it probably makes sense to send her back to houston to work on calibration sets with a likely return visit to london as required . please let me know your thoughts . cheers , scott ",0 +"Subject: re : real world option pricing hey vince , since i saw you last , the "" real world option princing "" paper has taken on some more interesting results . tim crack and i would certainly like your comments on the previous version and current version because we feel there are still more areas to explore , such as , value at risk . here is where you can download the paper : i hope this e - mail finds you in air conditioned room away from the heat . tom",0 +"Subject: correlation matrix reduction zhiyang , got your message . as we discussed , the best way to breakdown the big correlation matrix between different location indices is through "" cluster analysis "" . the idea is to select major hubs and the "" satellite "" markets . by establish the correlation between the hubs and correlation between the satellites and the hubs , the big matrix can be significantly reduced . then the traders only need to input the correlations between the hubs . this technique has been applied in our value at risk system . you may talk to tanya to find out the details . zimin ps : the wsprd code you requested .",0 +"Subject: pricing default and our may 22 conference call > dear vince : i spoke with ms crenshaw yesterday afternoon about a conference call about developing internet course material . if you have already discussed this with your colleagues , it might be helpful if you could very briefly outline the questions and issues they might raise in the conference call so that i can be a bit better prepared . ms crenshaw also mentioned that you never received my earlier email regarding the credit spread model i developed with stathis and sergey . my earlier email follows , and the nondisclosure agreement is attached . i look forward to talking with you next week . regards , sheridan sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu > - - - - - original message - - - - - > from : sheridan titman > sent : friday , may 05 , 2000 12 : 48 pm > to : ' vince . j . kaminski @ enron . com ' > cc : stathis tompaidis > subject : pricing default > > > dear vince : > > i really enjoyed meeting with you yesterday and learned a lot from our > discussions . > > the ut office of technology licensing and intellectual property has given > us the attached form which they would like you to sign before we send you > a copy of our paper on pricing default . please let me know if this is > agreeable to you . > > i hope we have the opportunity to work with you in the future , either on > the debt pricing models or on the other issues we discussed . > > i look forward to hearing from you . > > regards , > > sheridan > > > > sheridan titman > department of finance > college of business administration > university of texas > austin , texas 78712 - 1179 > > 512 - 232 - 2787 ( phone ) > 512 - 471 - 5073 ( fax ) > > titman @ mail . utexas . edu > - nondisclosure agreement . doc",0 +"Subject: re : support for exotica i briefed vince this morning that we have supplied a fully functional exotica options library to london office ( executable and source codes ) . if you have any questions , my team is ready to help . zimin steven leppard 10 / 13 / 2000 03 : 50 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , dale surbey / lon / ect @ ect , tani nath / lon / ect @ ect cc : paulo issler / hou / ect @ ect , sharad agnihotri / lon / ect @ ect , zimin lu / hou / ect @ ect subject : support for exotica all sharad ' s investigations of exotica ' s status in london have turned up a very confused state of affairs . this isn ' t being helped by the fact that : 1 . anjam is rarely at his desk , and can ' t be found anywhere in the building . 2 . when he is around he isn ' t willing or able to provide all the information sharad might need to support exotica . this is worrying since much of our business depends on the validity of exotica ' s valuations . sharad will now request information from anjam via email to leave a trail , and i want to alert you to the fact that sharad will be cc ' ing you in on these emails . if things don ' t improve soon , i may need to request some assistance in extracting this information from anjam . many thanks , steve",0 +"Subject: greg ball interview shirley : could you please organize interviews for mr . ball with the usual research suspects , including alex huang and tanya tamerchenko ? mr . ball ' s phone numbers are on his enclosed resume . thanks . grant . = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = vince : i talked to this guy briefly . i think he is desparate to get out of unocal before they downsize him out of a job . he has a decent resume and the attached comment from don winslow is interesting . grant . = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = grant - here ' s the resume of the guy that called . sorry for the delay . here are don winslow ' s comments : "" greg was my predecessor in the risk mgt dept at unocal . he reminds me somewhat of remi ' s cousin - mild mannered , physics phd . he is brilliant and expresses himself well . i think he might fit in vince ' s group better than in your group . he has not had much exposure to commercial transactions . he was in bill bradford ' s mba class . he graduated # 1 . """,0 +"Subject: re : energy and e - business : a brief history of the future james , i hall appreciate a copy of "" a brief history of the future . "" vince kaminski enron "" j . p . rosenfield "" on 04 / 24 / 2000 12 : 16 : 25 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : energy and e - business : a brief history of the future mr . vincent j . kaminski managing director enron capital dan yergin , joe stanislaw and julian west of cera ; andy lippman of mit ' s media lab ; susan desanti of the ftc ; and others . ? participation is limited . for more details or to enroll in the summit and / or the e - squared retainer service , please visit http : / / www . cera . com / offerings / ret / e 2 / . please feel free to contact me , or my colleague tim fitzgerald at 617 - 441 - 2679 ; email to tfitzgerald @ cera . com if you have any questions or further considerations sincerely , james rosenfield executive vice president our relationship with you is very important to us . ? if you wish not to receive future e - mail notifications , please send a reply to this message with "" donotemail "" as the subject of your message . ( mailto : info @ cera . com ? subject = donotemail ) ",0 +"Subject: anonymous reporting facilities this is to remind you that various anonymous reporting facilities are available for you to report violations of company policy and suspected criminal conduct by any officer , employee , or agent of the company relating to the performance of his or her duties . these reporting facilities are also available for your questions , messages , comments , and suggestions . any policy violation or criminal conduct may be reported by letter , e - mail , or voice mail , as set forth below , describing the suspected violation or criminal conduct with as much detail as possible to allow the company to conduct an investigation of the reported matter . 1 . letters should be sent to the confidential post office box : enron compliance officer confidential - conduct of business affairs p . o . box 1188 houston , texas 77251 - 1188 2 . e - mails should be sent to the office of the chairman  , s e - mail box : employees with enron e - mail can access this box by sending an e - mail to the office of the chairman . simply type  & office of the chairman  8 in the address box , type your message , and send . your message will be completely anonymous . if , however , you copy your message and e - mail it to someone else , the copy will not be anonymous . 3 . voice mail messages should be left with the office of the chairman phonemail box . you can access the office of the chairman phonemail box by calling ( 713 ) 853 - 7294 . if you call from your extension or an outside line , your message will be completely anonymous . if , however , you access the phonemail box while you are in the phonemail system , your message will not be anonymous . you may , but are not required to , identify yourself . if you would like to identify yourself , please submit your name and phone number with your letter or message . all anonymously reported matters will be investigated and acted upon in the same manner as those that contain signatures . the company takes great pride in ensuring that enron is a great place to work . we encourage each employee to continue to conduct the business affairs of the company in accordance with all applicable laws and in a moral and honest manner .",0 +"Subject: the installation of the equipment you ordered is completed - - - automatic notification system ( request # : ebut - 4 kpqew ) requested for : vince j kaminski requested by : kevin g . moore the installation of the equipment ( see below ) has been completed . 18 in tft 8020 flatpanel opal",0 +"Subject: rooming list for enron offsite candice : listed below are the individuals that will be attending the offsite , august 18 - 20 , 2000 . vince kaminski stinson gibner p . v . krishnarao grant masson zimin lu vasant shanbhogue mike roberts maureen raymond castaneda tanya tamarchenko osman sezgen samer takriti shirley crenshaw regards , shirley crenshaw",0 +"Subject: enron cost of capital vince - tim despain asked me to forward this information to you as part of the effort to establish enron ' s cost of capital . if you need any additional information or clarification , feel free to give me a call at x 57538 . cf",0 +"Subject: tw capacity options we ' re at the point in the project where we are soliciting comments on a draft ferc filing we ' d like to file at the end of the month . if you would , please review our filing , with particular emphasis on product definition , position management and how we described in footnote [ generally ] how the marketplace would evaluate the option fees . you help in this project is greatly appreciated . - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffery fawcett / et & s / enron on 07 / 12 / 2000 03 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : susan scott 07 / 12 / 2000 03 : 19 pm to : steven harris / et & s / enron @ enron , jeffery fawcett / et & s / enron @ enron , kevin hyatt / et & s / enron @ enron , lorraine lindberg / et & s / enron @ enron , tk lohman / et & s / enron @ enron , michele lokay / et & s / enron @ enron , christine stokes / et & s / enron @ enron , bill cordes / et & s / enron @ enron , mary kay miller / et & s / enron @ enron , julia white / et & s / enron @ enron , shelley corman / et & s / enron @ enron , sstojic @ gbmdc . com , mary darveaux / et & s / enron @ enron , glen hass / et & s / enron @ enron , drew fossum @ enron , john buchanan / et & s / enron @ enron , ramona betancourt / et & s / enron @ enron cc : tony pryor / et & s / enron @ enron , brian hensley / et & s / enron @ enron subject : tw capacity options attached for your review is a draft of transport options filing that incorporates the comments and suggestions i ' ve received since last week . please provide any further suggestions / changes to me as soon as possible , but in no case later than close of business , friday , july 14 . the timeline i ' ve discussed with tw commercial for this project is as follows : final draft comments friday , july 14 circulate draft to customers , customer meetings , time for customers to respond , informal discussion with ferc mon . july 17 - wed . july 26 final internal review / edit of filing thursday , july 27 ferc filing monday , july 31 please let me know your comments on this proposed timeline as well . thank you .",0 +"Subject: risk assessment this is to confirm the meeting setup for november 22 nd at 9 : 00 am w / mechelle atwood and shawn kilchrist regarding risk assessment for 2001 . location is ebl 962 . if you have any questions , please call me at x 58174 . thanks",0 +"Subject: derivative classes i discovered that clewlow and strickland have at least two books , "" implementing derivative models , "" and "" exotic options . "" i gather that "" exotic options "" is the one you intend to use in your class , correct ? by the way , i queried participants in my class , and i heard that the case study approach we occaisionally used was appreciated by several . the var class i taught was from jorian ' s book , which has no exercises and which assumes a particular background in finance and statistics . i created a problem ( not exactly a case study ) that required participant to learn some statistics and try some different approaches . from this , participants got a better idea of why one bothers with certain issues . some liked the "" real world "" flavor of this kind of approach . ( without the case approach , you could provide good counterexampes as a partial remedy . ) best regards and season ' s greetings , michael",0 +"Subject: re : copper curve tani , please touch base with lloyd fleming as to whom from rac should review the methodology . i view that it is the commercial team ' s responsibility to post the curve , operations responsibility to gather objective information on the efficacy of the curve on a ( minimum ) monthly basis and report all highly sensitive curves , rac will not approve or disapprove a curve but question methodology / motivations and subsequent changes and do so in a senior management forum ( i . e . , we will tell on those who have suspect curves or curve movements ) . obviously , we are looking for the best estimate of the value of those products in those time buckets today , we also favor object , consistent application of methodoology intra and inter commodity . ted vince j kaminski 10 / 27 / 2000 04 : 18 pm to : tani nath / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim poullain - patterson / lon / ect @ ect , harry tefoglou / lon / ect @ ect , esther gerratt / lon / ect @ ect , maureen raymond / hou / ect @ ect , ted murphy / hou / ect @ ect subject : re : copper curve tani , no problem . we shall look at the curve on monday . i have organized a small team to examine the curve from different perspectives . curve validation is normally a rac prerogative and i shall get them involved on monday vince tani nath 10 / 27 / 2000 11 : 40 am to : maureen raymond / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim poullain - patterson , harry tefoglou / lon / ect @ ect , esther gerratt / lon / ect @ ect subject : copper curve following steve ' s note to you earlier today , i wanted to mention that we have a fairly urgent need for review of the copper curve in particular , as there is a deal due for final pricing in the next few days . i am not sure what data you have received from enron metals in london , so i am asking tim poullain - patterson to ensure that you have the curves and the economic justification proposed as soon as possible . please direct any questions to him or to harry tefoglou . i will be in the tokyo office next week , but available via e - mail . thanks in advance for your assistance , tani",0 +"Subject: risk management book order vince , fyi , i ordered the risk management book you requested . it will be published on june 2 nd , and we will receive it shortly thereafter . judy 3 - 9584",0 +"Subject: sevile vasant , i spoke with norma about getting a special reward for sevil , in lieu of bonus . please , send to norma the list of projects sevil worked on . vince",0 +"Subject: chairman ' s award - supervisor announcement hello to each of you . i would like to let you know that i will be facilitating the 2000 chairman ' s award program , a vision & values initiative designed to recognize those employees who daily embody enron ' s values of respect , integrity , communication and excellence . this is an annual , employee - driven award which encourages employees to nominate their everyday heroes . a critical component of the award process , and one in which ken lay has given his full support , is the employee selection committee . this year ' s selection committee is made up of a diverse representation from our workforce both in the us and around the world . these individuals were chosen as last year ' s chairman ' s roundtable and have been invited to be part of this year ' s employee selection committee . their infallible enthusiasm for enron ' s vision & values will support the seamless transition from recognized winners to award decision - makers which is necessary to sustain the spirit of the award . you are being notified because one of your employees is on this important committee . the time commitment will be primarily during the first two weeks of october when we will meet either in person or via video / phone conferencing to review the nominations and select the winners . i hope you will congratulate and support them as this is a special honor to be asked to serve on the employee selection committee . if you have any questions at any time , please feel free to contact me via email or phone . warm regards , charla reese 713 . 853 . 5202 members of the 2000 employee selection committee : billi aherns - omaha , ne bobbye brown - portland , or karen campos - houston , tx jaiprakash desai - mumbai , india gary douthwaite - teeside , england donna johnson - portland , or janis hansen - portland , or gene lauritsen - beatrice , ne doug mcneilly - houston , tx kevin moore - houston , tx mason morris - jenkintown , pa craig sutter - houston , tx sue tihista - mandan , nd",0 +"Subject: enronoptions - your stock option program it is amazing and yet not surprising how much enron has accomplished in the first six months of this year . you continue to make it happen . we recognize that you work hard every day to accomplish enron  , s business goals , and we are pleased that many of you have shared in the company  , s financial success through enron stock options . as you may know , the current employee stock option program ( also known as the all employee stock option program or aesop ) began in 1994 and provided value to participants through 2000 . employees who have participated in this program from its inception have realized a 1 , 119 % increase in the value of their stock options ( assuming a stock price of $ 70 ) over the life of the program . enron stock options are a valuable part of your total compensation package and a contributing factor to your performance and to enron  , s continued success . therefore , the enron executive committee and the compensation and management development committee of the enron board of directors have decided to continue to offer stock options as a part of your compensation package . on may 1 , 2000 , the committee approved an employee stock option program for calendar years 2001 - 2005 ( enronoptions  ) your stock option program ) . it is expected that enronoptions  ) your stock option program will be granted , effective on or about december 29 , 2000 , for those employees who are eligible on that date ( please see note below ) . the new program , which is subject to final approval by enron  , s board of directors , is as follows : ? enronoptions  ) your stock option program will give stock options to eligible full - time and part - time regular employees in domestic and international companies / locations . ? the grant of non - qualified stock options will equal 25 % of annual base salary ( 5 % of annual base salary for each year of a 5 - year period ) on december 29 , 2000 . ( salary calculation and value may vary in some international locations . ) ? the board will grant the stock options on december 29 , 2000 . ? eligible employees hired in subsequent years will receive a prorated grant of stock options . why commit your talent and energy to enron ? enronoptions  ) your stock option program , among other good reasons  ( that  , s why . in the coming weeks , you will be receiving more details about enronoptions  ) your stock option program . to provide information and answer your questions , we will introduce a special link on the human resources web - site , host several espeak sessions and continue to communicate with you on a regular basis . in the meantime , if you have immediate questions , please contact your human resources representative . note : in addition to final approval by enron  , s board of directors , granting of options will be subject to new york stock exchange and state and federal regulatory requirements . it is expected that enronoptions  ) your stock option program will be available to most enron employees ; however , some enron companies  , employees may not be eligible due to legal , accounting , tax , labor or business issues . as you know , enron changes to meet the needs of the marketplaces we serve . given that need to change , we will continue to refine the eligibility for enronoptions  ) your stock option program and will communicate more details throughout the year with final eligibility being determined on december 29 , 2000 .",0 +"Subject: re : jeff , the meeting is scheduled for wednesday afternoon . vince from : jeffrey a shankman 07 / 31 / 2000 12 : 56 pm to : vince j kaminski / hou / ect @ ect cc : barbara lewis / hou / ect @ ect subject : please make sure our meeting with skilling gets onto my calendar . thanks . jeff",0 +"Subject: re : video conference for interview : stig faltinsen hi shirley , i hope you had a pleasant easter break . . . . for the video interview for stig faltinsen , if we do friday 28 th april , the only slot available is from 5 pm onwards london time - can vince do from 5 pm to 5 . 30 pm ? regards , anjam x 35383 vince j kaminski 25 / 04 / 2000 16 : 25 to : anjam ahmad / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : video conference for interview : stig faltinsen anjam , sorry , i am busy on thursday . i shall ask shirley to contact you . friday 9 : 30 to 10 : 30 my time would work . vince vince anjam ahmad 04 / 25 / 2000 09 : 51 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : video conference for interview : stig faltinsen hi vince , this candidate was forwarded from the norway office . he is finishing his phd in cambridge but is available soon . if you are free on thursday before the regular weekly meeting that would be good - would 3 pm or 4 pm work for you ( 9 am or 10 am your time ) to set up the video interview ? regards , anjam x 35383 cv attached :",0 +"Subject: re : off site with john griebling ' s optical network engineers ravi , sounds good . vince ravi thuraisingham @ enron communications on 03 / 06 / 2000 12 : 44 : 08 pm to : shirley crenshaw / hou / ect @ ect , vince kaminski cc : subject : re : off site with john griebling ' s optical network engineers john can ' t do it till after april 10 th . so we will shoot for april 13 , etc . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 06 / 00 12 : 32 pm - - - - - john _ griebling @ palm . net 03 / 02 / 00 09 : 58 am please respond to john _ griebling to : ravi thuraisingham / enron communications @ enron communications cc : subject : re : off site with john griebling ' s optical network engineers i won ' t be available until after april 10 th . ravi _ thuraisingham @ enron . net wrote on 3 / 1 / 00 12 : 29 : hi shirley , please give me a few dates form end of march to first week in april to do an offsite for vince ' s direct reports ( including myself ) and selected ebs research people . this includes , vince direct report from our research group and the following people fr",0 +"Subject: fwd : follow - up call return - path : received : from rly - yho 3 . mx . aol . com ( rly - yho 3 . mail . aol . com [ 172 . 18 . 147 . 35 ] ) by air - yho 2 . mail . aol . com ( v 77 _ rl . 36 ) with esmtp ; mon , 21 may 2001 17 : 26 : 01 - 0400 received : from nx . numerix . com ( [ 63 . 71 . 167 . 197 ] ) by rly - yho 3 . mx . aol . com ( v 77 _ rl . 36 ) with esmtp ; mon , 21 may 2001 17 : 25 : 21 - 0400 received : from nx . numerix . com ( localhost [ 127 . 0 . 0 . 1 ] ) by nx . numerix . com ( 8 . 9 . 3 / 8 . 9 . 3 ) with esmtp id raao 5633 for ; mon , 21 may 2001 17 : 24 : 32 - 0400 received : from dtallam ( hercules . numerix . com [ 63 . 71 . 167 . 196 ] ) by nx . numerix . com ( 8 . 9 . 3 / 8 . 9 . 3 ) with smtp id raao 5628 ; mon , 21 may 2001 17 : 24 : 32 - 0400 from : "" dean tallam "" to : cc : subject : follow - up call date : mon , 21 may 2001 17 : 18 : 41 - 0400 message - id : mime - version : 1 . 0 content - type : multipart / alternative ; boundary = "" - - - - = _ nextpart _ 000 _ 0054 _ 01 coe 21 a . 15 b 849 co "" x - priority : 3 ( normal ) x - msmail - priority : normal x - mailer : microsoft outlook cws , build 9 . 0 . 2416 ( 9 . 0 . 2911 . 0 ) x - mimeole : produced by microsoft mimeole v 5 . 50 . 4133 . 2400 importance : normal vince , i hope all is well with you . dimitri raevsky , formerly the head of quantitative analysis and risk for global credit derivatives at jp morgan chase , has joined numerix as the product manager for credit products . at jp morgan chase , one of the leading players within the credit derivatives market , dimitri played an active role in the structuring , valuing and marketing of credit derivative products . dimitri provides numerix with strong expertise in credit - related analytics / valuation methodologies as well as market practices . dimitri will be responsible for developing state - of - the - art credit software solutions for numerix . one of the first credit software products he will be developing is a toolkit for credit derivatives that will provide end - users with all the analytical tools and modules necessary for building credit derivatives solutions . we would be pleased to have dimitri speak with you and your colleagues at enron to review our plans for credit derivatives . we are available any time on friday may 25 th . please advise as to whether this date would be convenient . dean",0 +"Subject: re : grades thank you ! - pam at 08 : 15 am 5 / 4 / 01 - 0500 , you wrote : > pam , > > another term paper : > > > john ganguzza > neeraj hingorani > grant johnson > duane maue > rishad patel > eric van stone > palo yoshiuro > > > grade : a > > please , confirm . > > > vince",0 +"Subject: re : tani , yes , i am aware of it . thanks for letting me know who is the hr rep in london . vince tani nath 05 / 02 / 2001 09 : 01 am to : vince j kaminski / hou / ect @ ect cc : tara rozen / lon / ect @ ect subject : vince , i don ' t know if you are already aware of this , but maureen raymond has been taken ill and i understand has received medical advice that she should not travel before the end of next week at the earliest . tara is the appropriate hr representative in london ; i will ask her to keep both you and houston hr informed of the situation . many thanks , tani",0 +"Subject: storage model change : commodity delta dear all , i change the storage model output to its total value versus the unit value before . the total value refers to the total present value of the storage capacity at given status ( initial conditions ) . the way i calculate the unit value is ( total pv - s * capacity taken ) / total capacity which could suffer some negative numbers since s , the spot price could be very high . the correct way is to define the s as the average injection gas price , but this would be troublesome to compute . by switching to total pv , the delta can be interpreted as total commodity delta for the hedge . actually , duffie also suggested using the total pv as the output in his audit review . i have attached the xll model below . zimin",0 +"Subject: forward oil prices john , i am forwarding to you the request by jens . we gave in the past our forward oil curves ( with approval of greg whalley ) to some academics . what is your position on this request ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 27 / 2000 04 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jens gobel @ enron 10 / 26 / 2000 12 : 06 pm to : vince j kaminski / hou / ect @ ect cc : subject : forward oil prices vince , as discussed on the phone , i am sending you the request that i have received from prof . buehler . prof . buehler is the head of the faculty of finance at mannheim university in germany . currently , he is writing a study about the hedging strategy that led to the metallgesellschaft debacle . for this study he would like to get forward oil prices form us . the forward oil prices should be for wti with cushing as the delivery point for the time period july 1986 and december 1996 with remaining contract durations between one and ten years . it would be ideal to get this data on a daily basis . weekly or monthly data is helpful as well , of course . since mannheim university is among enron ' s tier one recruiting universities in germany , it would be great if we could help him with some data . thanks a lot for your help . jens o . korn @ uni - mannheim . de on 10 / 10 / 2000 11 : 44 : 57 am to : jens . gobel @ enron . com cc : subject : daten sehr geehrter herr goebel , bezugnehmend auf ihr heutiges telefongespraech mit herrn prof . buehler hat mich prof . buehler gebeten , ihnen genauer darzustellen , welche daten idealerweise fuer unsere studie benoetigt wuerden . zunaechst zum hintergrund . wir sind auf enron gestossen , weil eduardo schwartz in einer seiner arbeiten die folgende datenquelle angibt : "" in addition to the publicly available futures data described above , for the purpose of this study enron capital and trade resources made available some proprietary historical forward price curves from 1 / 15 / 93 to 5 / 16 / 96 . from these data ten forward prices were used in estimation , ranging in maturities from two months to nine years "" dies laesst uns annehmen , dass enron bestimmte daten verfuegbar hat . nun zum idealen datensatz : forwardoelpreise ( am besten wti mit lieferung in cushing ) fuer restlaufzeiten zwischen einem und zehn jahren fuer den zeitraum juli 1986 bis dezember 1996 . dabei waere eine hohe datenfrequenz ideal ( taeglich , ansonsten woechentlich oder monatlich ) . zusaetzlich waeren auch spotpreise fuer wti mit lieferung in cushing nuetzlich . diese idealen datenanforderungen werden sich vermutlich nicht erfuellen lassen . jedoch waere uns auch schon geholfen , wenn ein kuerzerer zeitraum oder eine niedrigere datenfrequenz vorlaege . wir waernen ihnen sehr dankbar , wenn sie in erfahrung bringen koennten , inwiefern solche daten von enron zu erhalten sind . herzlichen dank fuer ihre muehe und beste gruesse olaf korn p . s . bei rueckfragen stehe ich ihnen jederzeit gern zur verfuegung dr . olaf korn university of mannheim chair of finance d - 68131 mannheim germany tel . : + + 49 / 621 / 181 - 1487 fax . : + + 49 / 621 / 181 - 1519 e - mail : o . korn @ uni - mannheim . de",0 +"Subject: institutional investor journals profile update confirmation thank you for updating your ii journals profile information . changes to your user id , password and e - mail address have been made . please allow 24 hours for any other changes you ' ve made to take effect in our system . here is the profile information we have for you : account number : 12973228 first name : vince last name : kaminski company name : enron corp position : managing director department : address 1 : 1400 smith st eb 1962 address 2 : city : houston state : tx zip code : 77002 - 7327 country : usa phone : ( 713 ) 853 - 3848 extension : fax : ( 713 ) 646 - 2503 foreign phone : foreign fax : email : vkamins @ enron . com user id : vkaminski password : italia",0 +"Subject: natural gas storage research i am working on a report aimed at energy marketers that will examine natural gas storage : effects on energy trading . i am looking for people who can talk about the importance of this subject to power marketers . please contact me if you can inform me on any of the following subjects . i am interested in exploring the following issues : 1 . storage process : transportation , injection , withdrawal 2 . are all storage facilities connected to pipelines ? 3 . description of types of storage facilities : salt caverns , above - ground tanks , inactive underground volcano , others 4 . problems that limit underground reservoir effectiveness 5 . historical storage data 6 . contributing factors to storage levels : weather , generation demand , reliability concerns 7 . national map of storage facilities and capacities 8 . terms definitions : base gas , working gas , underground storage , traditional storage , salt caverns , other relevant terms 9 . impact of storage fluctuations on prices and energy trading 10 . safety issues of natural gas storage 11 . seasonal storage trends 12 . total amount of national storage capacity 13 . future storage capacity needs 14 . lng as storage alternative 15 . technology improvements 16 . who regulated natural gas storage ? 17 . list of storage facility owners if you are involved with natural gas storage , or are an energy trader who is affected by natural gas storage , please contact me by november 13 th . thank you in advance for your help ! barbara drazga independent journalist denver , colo . tel : 303 - 369 - 3533 fax : 303 - 369 - 3510 energywriter @ aol . com",0 +"Subject: re : resume - norberto valdes elizabeth , yes , she referred norberto to us . we had an informal interview with him . we would like to invite him for a round of formal interviews later this week . please include me , tanya tamarchenko , ted murphy , krishnarao pinnamaneni , grant masson . i asked liza to talk to you to set up formal arrangements with enron hr ( a contract , fee schedule approval , etc . ) . i shall ask you for help next week when we have more information : several members of our group from london will rotate through our houston office this summer . we shall need help in making living arrangements , including apartments , car , etc . also , we have an employee from india rotating through our group this summer . please , let me know who is the best person in hr to ask for assistance . vince from : elizabeth grant 05 / 05 / 2000 08 : 10 am to : vince j kaminski / hou / ect @ ect cc : subject : resume - norberto valdes vince , lisa woods ford ( independent recruiter ) tells me that she has referred this resume to you . any interest in setting norberto up for interviews ? - elizabeth - - - - - - - - - - - - - - - - - - - - - - forwarded by elizabeth grant / hou / ect on 05 / 05 / 2000 08 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nvaldes @ txuenergy . com on 05 / 03 / 2000 09 : 32 : 29 am to : elizabeth . grant @ enron . com cc : subject : norberto ' s resume dear elizabeth per our conversation here is norberto ' s resume . thanks . lisa ford ( see attached file : resumen 4 . doc ) - resumen 4 . doc",0 +"Subject: dinner speaker - may 23 shirley , this is to follow up today ' s conversation with anita . as mentioned paul kleindorfer invited vince to be our dinner speaker on thursday , may 24 . on reflection given the strong line up for wednesday - fred kahn et al - we would very much like vince to be the speaker on wednesday . this will conclude the day very well giving participants a strong incentive to be there for the wednesday . i gather that this change should be acceptable to vince . we will show vince ' s name as follows : wincety j . kaminski managing director - research enron jeremy will be em ailing you the program with this information immediately . we would like to go to press today . failing that we can go to press tomorrow . we would very much appreciate your confirming this and making any corrections or changes . if you would respond to all of us it would be appreciated . michael michael a . crew professor ii director - center for research in regulated industries editor - journal of regulatory economics rutgers university , graduate school of management 180 university avenue newark , n . j . 07102 - 1897 phone : 973 353 5049 fax : 973 353 1348 http : / / www - rci . rutgers . edu / ~ crri",0 +"Subject: re : thank you dear vince , it was our privilege to have you here . paul ' s wife had a baby yesterday , and paul will be back on thursday . so maybe item 3 can wait until paul ' s return . as for ( 2 ) , yes - i will need a ps reader : o ) again , let us check paul ' s diary on his return before fixing a time for quentin kerr 1 1 . the resume you sent to me and grant looks quite good . i think it makes sense to interview this person and we can help you with a phone interview . is this simon ? ? ? thanks raymond vince j kaminski @ ect 08 / 08 / 2000 06 : 30 am to : paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : thank you paul & raymond , it took more than a few days to catch up after i came back from australia . there are few things i would like to bring up to your attention . first of all , i would like to thank you for your hospitality . i learned a lot about the australian markets and was greatly impressed with the quality of the people at the sydney office . 1 . the resume you sent to me and grant looks quite good . i think it makes sense to interview this person and we can help you with a phone interview . 2 . i have received another resume that looks very promising . i am very interested in this guy and would be ready to bring him over to the states where we lack desperately technical talent . can you help us by interviewing him in sydney ? the main determination i need from you is whether he can function in a company like enron . as any good academic he sent his resume in a ps format and i shall fax you a copy in case you don ' t have a postscript reader on your system . 3 . christian werner does some really neat things on the weather front . i would like to determine if he can help us to upgrade our systems . can we bring him to houston for a week to discuss the weather forecasting technology with mike roberts and joe hrgovcic ? i think that he could learn a lot from mike and other weather guys here how we translate weather info into business - related information . i shall be glad to underwrite the cost of this trip . vince",0 +"Subject: lng by rail vince , i was thinking about the type of things you could be talking to jeff shankman about , in the dabhol lng context . it occurred to me that one way to collect on regas charges , and still find alternate cutomers for gas is through the railways . some time back , i had looked into the possiblility of transporting lng by train . apparently , technology exists wherein lng can be put into cryogenic containers that can be trucked as well as the same containers being loaded from trucks to train bogies . i believe this maybe a way to earn some monies with lng by developing just such a market in india for commercial customers . it is pertinent to note that the konkan rail line is just about 1 hr . 45 minutes from the dabhol plant . trucks from dabhol could carry lng to the rail line at guhagar from where it could travel up and down the west coast of india . if we target end - consumers directly , we could easily sell at retail type prices , and build in a large margin , even if the volumes disposed are relatively smaller . ( the alternative fuel for most of these establishments is diesel or naphtha which is highly priced , and mostly trucked along roads , increasing costs ) . the end aim is to keep income targets in india , so that the analysts do not have a field day with the stock . hence keeping activity up in india , and showing that solutions exist , will keep stock price buoyed . we could explore this idea if it appeals ! regards , sandeep .",0 +"Subject: spring 2001 module and calendar schedule attached spring 2001 faculty , attached is the spring 2001 module and calendar schedules for your review . please note the jones graduate school is not following the traditional university calendar for spring break this year . if you have any questions please contact me . kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs / - spring module 2001 sch . doc - spring module 2001 cal . doc",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 carson , margaret m james d steffes may 26 , 2000 ghosh , soma timothy davies may 31 , 2000 vernon , clayton j vasant shanbhogue may 26 , 2000 yuan , ding richard l carson jun 02 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: re : sharad agnihotri kate , has the paperwork been finalized yet ? let me know if we ' ve agreed a start date yet . thanks , dale kate bruges 18 / 07 / 2000 12 : 52 to : dale surbey / lon / ect @ ect , anjam ahmad / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : sharad agnihotri i have just spoken to alex blair from alexander mann who met with sharad this morning . sharad has verbally accepted our revised offer and is expected to return the paperwork tomorrow . i will let you know as soon as i get a start date from him . regards kate",0 +"Subject: hickerson / egm knowledge management following our meeting with gary today , scott and i prepared the following work plan . hopefully , this reflects the conversation and planning in today ' s meetings . please send comments and revisions . cordially , robert johnston manager , political & sovereign risk enron north america 713 - 853 - 9934",0 +"Subject: grms access grant & vince , i have approved your request for risktrac ( formerly grms ) access . in about a week , contact your it help desk representative to verify the deployment onto your desktop . thanks , rudi",0 +"Subject: petrochem desk i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group . from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research . nelson",0 +"Subject: book order julie , we received the shipment of 50 books . thanks . the book was an instant hit . we need 50 more books . vince p . s . i understand paul sent you the check for the remaining 50 %",0 +"Subject: re : research and development charges to gpg vera , we shall talk to the accounting group about the correction . vince 08 / 09 / 2000 03 : 26 pm vera apodaca @ enron vera apodaca @ enron vera apodaca @ enron 08 / 09 / 2000 03 : 26 pm 08 / 09 / 2000 03 : 26 pm to : pinnamaneni krishnarao / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : research and development charges to gpg per mail dated june 15 from kim watson , there was supposed to have occurred a true - up of $ 274 . 7 in july for the fist six months of 2000 . reviewing july actuals , i was not able to locate this entry . would you pls let me know whether this entry was made , if not , when do you intend to process it . thanks .",0 +"Subject: re : tanya ' s vacation tanya , no problem . vince tanya tamarchenko 12 / 12 / 2000 01 : 28 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : re : tanya ' s vacation vince , i was going to take afternoon off this thursday . is it ok ? tanya",0 +"Subject: re : lsu seminar visit dear vince , i just left voice mail for you . we are interested in obtaining copies of the papers you ' ll be using as the basis for your presentations on thursday and friday so that we can get these materials distributed . can you call me at 225 - 388 - 0447 so we can discuss this ? i would also like to be able to go over the schedule with you just to make sure that we are on the same page . thanks for taking the time to visit us . we are looking forward to your visit . sincerely , jim garven james r . garven william h . wright , jr . endowed chair for financial services department of finance 2158 ceba e . j . ourso college of business administration louisiana state university baton rouge , la 70803 - 6308 voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361 e - mail : jgarven @ lsu . edu home page : http : / / garven . lsu . edu vita : http : / / garven . lsu . edu / dossier . html research paper archive : http : / / garven . lsu . edu / research . html - attl . htm",0 +"Subject: energy extravaganza - 2 weeks away ! energy extravaganza is just two weeks away - saturday , may 6 , 2000 ! if you haven ' t bought your ticket or asked your company to sponsor a table , do so and let us know . there are still spots available for both , and you won ' t want to miss this exciting evening ! there will be magic , dinner , dancing and some wonderful silent auction items for the taking ! bid on condos in maui , lake tahoe and a log home in angelfire ! there will be golf and hunting packages , sports memorabilia , and pamper packages for your significant other ! there are still a limited number of raffle tickets left for a chance at that new 2000 harley davidson 1200 custom sportster , so call the hea office if you would like to buy one or to purchase your gala tickets . don ' t delay - we want to see you there ! this message was sent by : teresa knight , executive director houston energy association ( hea ) phone : ( 713 ) 651 - 0551 fax : ( 713 ) 659 - 6424 tknight @ houstonenergy . org if you would like to have your email address removed from our mailing list , please click the link below to the hea home page , where you will find a mini - form to remove your name automatically . http : / / www . houstonenergy . org /",0 +"Subject: fw : final revised document . thanks . - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 08 / 04 / 2000 01 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" piazze , thomas "" on 08 / 04 / 2000 01 : 50 : 31 pm to : "" ' shankman , jeff ' "" cc : subject : fw : final revised document . thanks . jeff : good talking with you earlier this week and happy to hear that your conversation with jeff skilling was such a positive one . i am looking forward to working with you , vince and mark palmer in the near future to put in place a comprehensive plan to maximize the enron / wharton relationship in a number of different areas . i also know that a number of the faculty will be extremely pleased to learn of this news and will be quick to get the ball rolling . as promised , i am forwarding a document outlining all on campus sponsorship opportunities , minus the student business plan competition , for the upcoming school year . please review and pass it on the celeste roberts , for whom i do not have an accurate e - mail address . there are a number of student conferences that you may wish to consider participating in as a means for getting the enron name in front of them . please don ' t hesitate to contact me with any questions you may have or requests for additional information . i will also contact the career management office and ask that they call celeste to discuss career orientation panel sessions . i know that you must plan your schedule well in advance and will do my best to facilitate that process . thanks again for all you are doing to bring our two institutions together . it is important and makes a big difference . look forward to hearing from you soon . tom - - - - - original message - - - - - from : henley , nadina sent : friday , july 28 , 2000 9 : 54 am to : piazze , thomas subject : final revised document . thanks . > - opportunities . doc",0 +"Subject: re : i am zhendong sure thing ! - - - - - original message - - - - - from : kaminski , vince sent : thursday , april 12 , 2001 3 : 21 pm to : molly magee / hou / ect @ enron cc : gibner , stinson ; crenshaw , shirley subject : i am zhendong molly , we would like to hire this person for the summer ( standard offer ) . thanks . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 12 / 2001 03 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zhendong xia on 04 / 11 / 2001 09 : 14 : 01 pm to : vince . j . kaminski @ enron . com cc : subject : i am zhendong hi , dr . kaminski : i am zhendong , the student of dr . deng . i think dr . deng has sent my resume to you . i am very happy to have an opportunity to work with you this summer . i am a student in both ms qcf and ph . d eda programs in georgia tech now . i plan to find a job in industry instead of academic after my graduation . so i intend to do internship during the process of prusuing my degree to acquire some experience for my future career . i hope to start on 5 / 14 / 2001 and end on 8 / 17 / 2001 . thanks a lot . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318 ",0 +"Subject: subscription renewals vince : do you want to renew the below listed subscriptions ? please let me know . thanks shirley shirley , i hope you had a good weekend . the following subscriptions for vince are up for renewal . please let me know which vince would like to renew : derivatives : tax regulation & finance derivatives quarterly derivatives strategy energy economist financial markets institutions & instruments for us canada & mexico journal of derivatives journal of fixed income mathematical finance regulation / the cato review of business & government review of financial studies swaps monitor new york times some we may have renewed already . call me with any questions . thank you susan",0 +"Subject: message 2 i am sorry to send you the multi - email , because the mail server doesn ' t have enough memory . it always cause some troubles . ps : attached with my paper entitled "" multireset american - style put options valuation and optimal resetting "" . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 622 tel : ( 07 ) 33461428 department of mathematics , the university of queensland - multiresets . ps",0 +"Subject: re : information vince , i will look into this right away . i am sorry for the slow response . in the future please send me e - mails at shalesh _ ganjoo @ enron . net because i check that address more frequently than this one . thank you . shalesh ganjoo vince j kaminski 11 / 21 / 2000 09 : 15 am to : shalesh ganjoo / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : information shalesh , please , look into it . can we give them this information ? i see a remote possibility of a gain for enron : it ' s in our interest to support the growth of this market and part of the process is development of the infrastructure for this market and maintaining public interest . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000 09 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" yann d ' halluin "" on 11 / 16 / 2000 01 : 18 : 39 pm to : vince . j . kaminski @ enron . com cc : subject : information dear sir : the scientific computation group at the university of waterloo , ontario , canada , has recently started to be very interested in the recent developments of the bandwidth market . we find that the specifics of the bandwidth market offer challenges from the modelling point of view . however , we have encountered difficulties when looking for data , and we were wondering if you could help us . specifically we would like to know for a given city pair for the different existing type of lines ( e . g . oc 3 , ocl 2 , oc 48 . . . . ) 1 . what has been the spot lease prices ( e . g . $ / line - type / mile ) for the past 12 months ? 2 . what is the price of the dark fiber for a given type of line ? 3 . what is the maintenance cost $ / month ? ( for the same lines , e . g . oc 3 , ocl 2 , oc 48 , . . . ) 4 . what is the upgrading cost for the different lines ? ( e . g . how much does it cost to upgrade ) oc 3 - - > ocl 2 oc 3 - - > oc 48 ocl 2 - - > oc 48 5 . how long does it take to upgrade a line from a certain capacity to another ( e . g . 1 month , 2 month , . . . ) ? we realize that some of these questions may ask for confidential data , in that case we would really appreciate if an order of magnitude was provided . i look forward to hearing from you . sincerely , yann d ' halluin p . s : here is a link to our web page : http : / / www . scicom . uwaterloo . ca - - this email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed . any unauthorized review , use , disclosure or distribution is prohibited . if you are not the intended recipient , please contact the sender by reply e - mail and destroy all copies of the original message . ",0 +"Subject: computers from research group good morning all : this past weekend you moved two computers from ebl 972 b and 1972 g and were supposed to install them in ebl 941 and eb 1952 . what happened ? there is no computer in eb 1941 and only the monitor in eb 1952 . we need this equipment back . please install as soon as possible . thanks and have a great day ! shirley 3 - 5290",0 +"Subject: re : replied resume vince / sally it appears that the implied vol on this one is quite high . perhaps we can lower our var using historical vols . i would be happy to interview him . his resume does not appear to be research - worthy by any stretch so i guess rac or ops might be a fit should i forward his resume to tony vasut and bring him in to see a couple of racs and a couple of ops as sort of a first exploratory interview ? ? sally - pls advise your thoughts . vince - is this the price of being a risk management rock star ? ted vince j kaminski 06 / 23 / 2000 08 : 18 am to : sally beck / hou / ect @ ect , michael e moscoso / hou / ect @ ect , bob shults / hou / ect @ ect , ted murphy / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : replied resume i am forwarding a resume of one candidate who is very persistent and quite aggressive . please , take a look at him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 23 / 2000 08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - eric hilton on 06 / 22 / 2000 11 : 20 : 11 pm to : vince . j . kaminski @ enron . com cc : subject : replied resume mr . kaminski , ? ? ? ? ? ? ? i sent an actual resume via the postal service . i guess you never received it . thank you for your patience . a few features i possess that suggest that i may be a representative your well established company would value are : ? seven - plus years as a manager / junior executive of logistics in a fast - paced , demanding , and constantly evolving retail industry . experience in effectively developing and implementing policies and tasks under marketing , logistics , brand management , and best practices . ba degree in marketing with a 3 . 88 gpa from the university of san moritz , london england . extensive knowledge in management with the ability to effectively manage multiple tasks , as well as multiple associates , to achieve specific goals in research and brand management within the company ' s deadline . seven - plus years effectively implementing and teaching dynamic and successful customer service . with my current employer , i am in charge of logistics research and reports / data collection , as well as responsible for developing new and successful ideas and implementing them under constantly evolving brand management and best practices . traveling to london , england and extensively finishing my degree indicates that i am willing to go the  & extra mile  8 to achieve and obtain my goals . perhaps , mr . kaminiski , ? i am an associate you need at your well - respected company . i would be very happy to meet with you , at your convenience , to discuss the possibility of putting my education and experience to work for enron . thank you for your consideration . i look forward to hearing from you . i have attached my resume to this email formatted under microsoft word . warmest regards , eric hilton ? - my resume",0 +"Subject: mg memo i am sending you an updated version of the mg var memo , following the discussion grant and i had with bjorn thursday evening . please , let me know if you think more changes are required . vince",0 +"Subject: managing energy price risk - - second edition dear vince : i just wanted to thank you for supplying a copy of the book . the article on the natural gas market is just what i ' ve been looking for . the new addition , coupled with the first version ' s discussion of the volatility of the gas market in the mid 90 ' s should be very helpful in convincing these government watchdog types that basis adjustments in pricing formulas are not some sinister plot to deprive the feds of their royalties . or should if there is any rationality in government . thanks again for your help . best regards , steve williams eog resources",0 +"Subject: web based expense report implementation deadline xms communication the expense management system ( xms ) is a tool used to electronically submit your expense report for approval and payment through the enron intranet . it is user friendly , accurate and less labor intensive for you and our accounting staff . this product was initially made available october 15 , 2000 and approximately 50 % of the houston employees are currently using it to submit their expense reports . our goal is to have all enron employees using the xms system by april 15 ( income tax day  * easy to remember ) . there are some changes coming to the accounts payable ( ap ) department that are compelling us to fully utilize the xms system . in the near future paper and e - mail directed expense reports will not be accepted . if you are unsure of how to use the xms system there is training available through leap that will explain how to use the system . the following training information is from the december 14 th enron announcement about xms : training go to the it central web page . select services > training . click on "" schedules "" in the north america column , and go to the xms workshop schedule to choose your class . if no > classes are listed , call the training department and place your request at ( 713 ) 853 - 1816 . those in outlying locations and those who prefer on - line training can use leap by signing on to isc . enron . com and clicking on "" training and education , "" then leap ( shown as a link ) . use xms ( lower case ) as the user id and password . documentation step by step documentation is also available from it central web page . select services > training . click on "" documentation "" in the north america column and choose xms user ' s guide from the list . application support services call the isc help desk at ( 713 ) 345 - 4 sap ( 4727 ) . do not call accounts payable with questions about how to use the system or with issues regarding electronic pre - populated data .",0 +"Subject: re : visiting enron giuseppe , thanks a lot . i would appreciate if you could set up a meeting with prof . bambos . we talked to him during our last visit and we would like to follow up with some specific proposals regarding research projects enron could sponsor . vince giuseppe andrea paleologo on 02 / 14 / 2000 03 : 20 : 52 pm please respond to gappy @ stanford . edu to : vince j kaminski / hou / ect @ ect cc : subject : visiting enron dr . kaminski , i would like to thank you very much for taking care of amy and me during our trip to houston . what i saw at enron communication was nothing short of revolutionary . more than that , i was impressed with the drive of the people , their kindness , and their proficiency . i look forward to meeting you again in stanford during the last weekend of february . i will send you an email next week , so that we can arrange a meeting between you and prof . bambos . all the best wishes , giuseppe - - : : giuseppe a paleologo : : http : / / www . stanford . edu / ~ gappy "" what a waste it is to lose one ' s mind . or not to have a mind is being very wasteful . how true that is . "" - vice president dan quayle winning friends while speaking to the united negro college fund , 5 / 9 / 89 -",0 +"Subject: demand price elasticities here are excerpts from some work i recently did for epri . perhaps you will find it of some interest . i don ' t have the right to send you the whole article but i was allowed to send you some excerpts . naturally , this is intended for you alone . best regards , jhherbert - t 64 - 67 nletter 1 - 01 rev . doc",0 +"Subject: williams licenses prosrm capacity management system from pros revenue management since i left , i don ' t know where this project stands . however , thought you might want to see this . hope all is well . regards , stephanie - - - - - - - - - - - - - - - - - - - - - - forwarded by stephanie miller / corp / enron on 03 / 15 / 2000 10 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - trobison @ prosrm . com on 03 / 15 / 2000 10 : 38 : 31 am to : smiller @ enron . com cc : subject : williams licenses prosrm capacity management system from pros revenue management tina robison corporate communications pros revenue management 713 - 335 - 5397 - fax 713 - 335 - 5813 - phone trobison @ prosrm . com - williams . pros . pdf",0 +"Subject: re : next visit to houston ed , i shall be available on both days . what about wednesday , july 12 , between 1 : 30 and 4 : 00 . please , let me know what time would work for you . it will be nice to see you again . vince p . s . by the way , did you have a chance to take a look at the eol ? "" edward krapels "" on 06 / 28 / 2000 02 : 49 : 41 pm please respond to ekrapels @ esaibos . com to : vince j kaminski / hou / ect @ ect cc : subject : next visit to houston dear vince , i will be returning to houston during the week of july 10 . esai and weather services international have launched - - after more than 18 months of r & d - - our service , called energycast power trader and energycast gas trader , for power traders in nepool and pjm . i would be happy to review the service with you as well as take you on a tour of our web site . are you available on july 12 - 13 ? sincerely , ed krapels - 61900 _ wsiesai _ energycast . doc",0 +"Subject: re : rtp project please count the following 3 people from enron energy services to attend the conference : anoush farhangi osman sezgen p v krishnarao if there are additional people interested in attending the conference , i will let you know . best regards , krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 03 / 20 / 2001 03 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 19 / 2001 11 : 32 am to : pinnamaneni krishnarao / hou / ect @ ect cc : subject : re : rtp project krishna , please , confirm with hill huntington . vince pinnamaneni krishnarao 03 / 19 / 2001 09 : 28 am to : vince j kaminski / hou / ect @ ect cc : subject : re : rtp project yes , i would be definitely interested . count me and osman also to participate . i will forward your email to others in ees who might be interested also . krishna . vince j kaminski 03 / 19 / 2001 08 : 12 am to : john henderson / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : rtp project john and krishna , i am sending you an outline of a conference at stanford on topics related to demand - side pricing and management in the power markets . please , let me know if you are personally interested and who else in your respective organizations would like to attend . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 19 / 2001 08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - hill huntington on 03 / 15 / 2001 05 : 26 : 55 pm to : vkamins @ enron . com cc : subject : rtp project vince , targetted conference date is th - f june 21 - 22 at stanford . enclosed in the recent revision to what i sent before . great to meet you , hill - retail notes . rtf hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: capital book to further the process of reaching the stated objectives of increasing enron america ' s velocity of capital and associated return on invested capital , we have decided to create a capital book . the capital book will have no profit target associated with it and will be managed by joe deffner . the purpose of creating this book is to ensure that all transactions within enron americas , with any form of capital requirement , are structured correctly and are allocated the appropriate cost of capital charge . the previous numbers used in the business plans at the beginning of this year will remain for all transactions in place and where we hold assets . therefore , on any assets currently held within each business area , the capital charge will remain at 15 % . internal ownership of these assets will be maintained by the originating business unit subject to the internal ownership policy outlined below . the cost of capital associated with all transactions in enron americas will be set by joe . this process is separate and apart from the current rac process for transactions which will continue unchanged . capital investments on balance sheet will continue to accrue a capital charge at the previously established rate of 15 % . transactions which are structured off credit will receive a pure market pass through of the actually incurred cost of capital as opposed to the previous 15 % across the board charge . transactions which are structured off balance sheet , but on credit will be priced based upon the financial impact on enron america ' s overall credit capacity . on transactions that deploy capital through the trading books , the capital book will take a finance reserve on each transaction , similar to the way the credit group takes a credit reserve . this finance reserve will be used specifically to fund the capital required for the transaction . as noted above , the capital book will have no budget and will essentially charge out to the origination and trading groups at actual cost . by sending market - based capital pricing signals internally , enron america ' s sources of capital and liquidity should be better optimized across the organization . questions regarding the capital book can be addressed to : joe deffner 853 - 7117 alan quaintance 345 - 7731",0 +"Subject: re : manabu matsumoto hi lucy / natalie given that manabu is perceived as the "" specialist "" type , and probably shouldn ' t go straight into the gas trading group , this may have implications for research headcount if he ' s considered a good non - a & a hire . i ' ll be spending the next couple of weeks canvassing opinions from various vps and mds over their preferred size , role and style of research group for europe . i think we should delay manabu ' s second round interviews for a while . cheers , steve lucy page 07 / 20 / 2000 07 : 38 pm to : steven leppard / lon / ect @ ect cc : natalie cilliers / lon / ect @ ect subject : manabu matsumoto steve , i am out of the office tomorrow and was just wondering if you ' d had a chance to think about the interview list for manabu ? if you get a list together , natalie will be able start working on it - alternatively i will catch up with you on monday . natalie - just so you know manabu will be coming in for second round but not for the a & a programme - probably a specialist in steve ' s group ( we ' ll pass it over to commercial support next week ) cheers lucy",0 +"Subject: thank you . i would like to take this brief opportunity to thank you all for inviting me to visit enron . ? the day was extremely interesting and educational for me and i was extremely impressed by the people and environment enron had to offer . i look forward to speaking with you about this opportunity in the near future . sincerely , michael gorman michael f . gorman , ph . d . ( w ) 817 352 - 2396 ( c ) 817 296 - 3273 ( f ) ? 817 352 - 6300",0 +"Subject: follow - up on siam workshop i am forwarding for your attention the resume of peter percell who has an extensive experience in modeling physical flows of natural gas in pipeline systems . peter is looking currently for a job . i met him last week at the meeting of the science and industry advance with mathematics society at the university of houston . the application of recent developments in optimization theory and numerical methods can help enron to improve further efficiency of our pipeline system and reduce the consumption of compressor fuel . please , let me know if you interested in introducing peter to executives in your organization . i shall be glad to make arrangements for an interview . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - peter percell on 04 / 30 / 2001 11 : 16 : 58 am to : vincent kaminski cc : subject : follow - up on siam workshop i enjoyed your presentation , and meeting you briefly afterwards , at the siam workshop last friday . i have extensive experience as a technical leader in the design and development of modeling and simulation software products , mostly for the oil and gas pipeline industry . i am looking for a position that can utilize my software development and mathematical skills . getting out of the narrow confines of the pipeline simulation industry would be a plus . please consider whether i might fit in your group . your answer to a question indicated that i have several of the skills you look for . also , please let me know , by email , the names and contact information of other managers within enron who might benefit from having someone with my qualifications in their group . attached are my resume and an addendum covering academic & consulting experience . publications are available on request . i will call you in a couple of days to follow up on this email . thank you for your time . peter percell 10030 doliver drive percell @ swbell . net houston , tx 77042 - 2016 ( 713 ) 532 - 3836 voice & fax - percell , peter resume only . doc - percell , peter a & c exp . doc",0 +"Subject: forma platnosci z "" inzynierie finansowa "" uprzejmie informuje , ze przyjmujemy czeki , ale niechetnie . wysokie koszty przy realizacji czekow . gdyby rodziana sz . pana wplacila naleznosc w zlotowkach , to odpadna koszta bankowe - 5 $ . naleznosc w zl wynosi 81 zl lub 99 zl ( lot ) . w liscie pomylilam sie ? - zamiast 25 , 25 $ napisalam 15 , 25 $ . przepraszam . wplacenie pieniedzy w polsce znacznie przyspieszy wysylke . ewentualny czek prosze przyslac na sume 25 , 25 $ lub 29 , 75 $ pozdrawiam serdecznie grazyna piesniewska",0 +"Subject: evaluations - enron please pass this along to others who may have worked with the students . to : tiger hosts from : field application project office the wharton school university of pennsylvania re : tiger team evaluations thank you for hosting the tiger team project , field application project 2001 . this opportunity provided the student team a worthwhile experience to apply newly acquired skills to a real world issue facing your company . your dedication and support of the project contributed greatly to its success . hopefully , by now you have had the opportunity to review the final reports . please take a moment to complete the host evaluation form available at : ( use internet explorer ) username : tiger password : fap 2001 ( no space between ) ( note : case sensitive , please use lower case ) deadline for acceptance : wednesday , april 25 , 2001 your feedback is important to us . it is taken into consideration when calculating student grades and when implementing changes that will impact and enhance the program in the future . also , in an effort to insure the return of meaningful and contributing host companies , we ask that you indicate your interest in returning as a host next year and the fap office will contact you in september 2001 . thank you again for your support of the wharton school and participation in the field application project this year . we look forward to working with you in the future . if you have any questions , please contact the fap office at ( 215 ) 573 - 8394 or email : fap @ management . wharton . upenn . edu sincerely , donna piazze program director field application project",0 +"Subject: re : programming for rdi model michelle , i ' ve just met with cecil and christin . we have divided the code into 3 parts , and cecil ' s looking at the first part . cecil , helen and i will meet again tomorrow morning to go through the logic of the other two parts . since cecil is devoted completely to this project , once he starts coding , it should not take too long . best , alex",0 +"Subject: outsourcing communication access . benefits . 2001 benefits customer service and its administrative functions just got better ! starting 01 . 01 . 2001 , this service was outsourced to vendors offering the latest in technology and the best in customer service . keeping pace with your lifestyle , your benefits are now securely accessible on demand . check out our new web address http : / / benefits . enron . com to view or print your health & group elections , to request a pension estimate , or to view your savings plan elections . if you are not near your computer one number is all you need for benefit forms , questions and changes . 800 . 332 . 7979 . option 1 - enron group health plans option 2 - enron corp . cash balance plan option 3 - savings plan or esop check it out . it  , s easy ! enter your social security number and a 4 digit personal identification number ( pin ) . ? for health & group and pension , your initial pin is the last 4 digits of your ssn . ? your savings plan pin number does not change . no need for voice mail or e - mail addresses or long waits in the elevator banks to get to the 16 th floor in the enron building . for 2001 , if you need help , customer service reps are available to assist you m - f from 8 : 00 am cst - 5 : 00 pm cst . but wait , there  , s more . the hr info zone is located in the lobby of the enron building to help you navigate . and coming soon , when you are outside the houston area , the kiosk will be a phone call away 800 . 332 . 7979 , option 5 in addition , later this year , we will offer the ability to make family status changes online . note : your 2001 elections are no longer available through ehronline . make it a new year  , s resolution to get connected ! enron benefits  ( keeping pace with your lifestyle .",0 +"Subject: informal interview with the enron research group dr . neale : your resume was forwarded to vince kaminski and the research group with enron corp . they would like to conduct an informal interview with you at your convenience . on one of the following days : wednesday , sept 27 friday , sept 29 monday , oct 2 tuesday , oct 3 thursday , oct 12 friday , oct 13 please let me know what day and the time frame you are available . the interviewers would be : vince kaminski managing director and head of research stinson gibner vice president . research grant masson vice president , research vasant shanbhogue vice president , research zimin lu director , research paulo issler manager , research we look forward to hearing from you . sincerest regards , shirley crenshaw administrative coordinator enron research department",0 +"Subject: chapter hi vince , ? how are things with you ? well i hope . do you have the latest version of your part of chapter 3 ? ( i think grant has sent thru a seperate , updated version to you , which has been typeset ) . everything else has been tied up and we will go with the version we have , unless we hear otherwise . ? many thanks and best regards . ? chris . ?",0 +"Subject: vince kaminski ' s bio good morning jim : attached please find a short "" bio "" for vince kaminski . if you need anything else , please let me know . the presentations will be forthcoming . have a great day ! shirley 3 - 5290",0 +"Subject: re : cplex i agree . i ( or chonawee ) will go ahead and place the order for cplex . i think that this will provide us with a great set of tools . - samer pinnamaneni krishnarao @ ect 05 / 24 / 00 01 : 34 pm to : samer takriti / enron communications @ enron communications @ enron , tom halliburton / corp / enron @ enron cc : grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , chonawee supatgiat / corp / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : cplex i talked to vince about the optimization software issue . vince said that if there are technical reasons for having two different packages and the benefits outweigh the costs of maintaining two licenses , we can go ahead and buy both . in my view , it is a great advantage to have both , as each has its own strengths relative to the other . we have spent some time trying to come up with one package that solves all of our problmes without success . there is no point is wasting more time on this effort . let ' s go ahead and purchase both . krishna . from : samer takriti @ enron communications on 05 / 24 / 2000 10 : 22 am to : tom halliburton / corp / enron @ enron cc : grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , stinson gibner / hou / ect @ ect , chonawee supatgiat / corp / enron @ enron subject : re : cplex tom , vince prefers to have one software package ( if possible ) . it is my understanding that special ordered sets are recognized automatically ( internally ) by cplex . this seems to be the case for both cplex and osl according to ampl ' s web page and other references ( check lorderedsetsfeature ) . as a result , the cplex people feel that there is no need to provide the user with the tools to represent special - ordered sets in opl . as a matter of fact , the incapability of xpress to recognize them automatically concerns me . if you have special requirements , c code may be used to pass the information to the solver ( which is straight forward ; all of chonawee ' s testing was done this way ) . chonawee ' s benchmark shows a superior performance by cplex ( which you indicated yourself in an earlier message ) . if you feel that xpress is the only way to go , then feel free to purchase it ( the purchase order is on hold for the time being ) . however , we need to check with vince first . i strongly feel that we should have one solver in order to minimize cost and contractual headaches . let us try to get this issue resolved by this afternoon . thanks . - samer",0 +"Subject: super saturday iv interviews thank you for volunteering to participate in the interview process of the january 15 associate super saturday . our team is working on the weekend arrangements and will deliver your information packet to you thursday , january 15 . if you have any questions , please let elizabeth boudreaux know at x 3 - 6176 . thank you ! ginger gamble manager associate & analyst program",0 +"Subject: enterprise risk management dear vince , ? thanks for your call the other day regarding eprm ' s upcoming enterprise risk management conference . we seem to be making progress and are pulling together some interesting subjects for inclusion this year . i am currently at a stage where there are plenty of possible sessions and over the next week i will be able to decide of which will stay and which will go . ? i have attached a file that gives an indication of the topics that have been identified so far . although i have bullet points for the sessions i would first like to identify interested parties and then work with them to develop a session that reflects their particular expertise and experience . i also think that by continuously developing the points we can make greater allowances for continuity between each participant . ? based on our discussion i would be extremely interested in inviting you to lead a session on the main conference . you seemed to have an interesting view on operational risk and the particular challenges that are presented within the energy industry . this session will run on thursday , november 16 th . the title is reasonably broad at this stage and any suggestions are welcome . ? your overall views on the current conference content is also welcome and if you feel that another session is more suited to your work do not hesitate to contact me . i look forward to speaking with you soon . ? yours sincerely , ? paul bristow senior course and conference producer , energy & power risk management + 44 ( 0 ) 20 7484 9883 - maildoc . doc",0 +"Subject: re : default rates per our discussion , see attached for impact of assumed recovery rates : michael tribolet @ enron 12 / 11 / 2000 08 : 09 am to : william s bradford / hou / ect @ ect , david gorte / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mark ruane / hou / ect @ ect cc : subject : default rates please see below for my note to jeremy at the bottom and his reponse . i have placed mark ruane ' s yields against a mid november default frequency table . note there may be a slight shearing in dates , but the concept is more important : market implied cumulative default rates ( % ) : 1 year 5 year 10 year aaa 0 . 51 5 . 74 14 . 54 aa 0 . 67 6 . 39 16 . 61 a 0 . 98 8 . 98 21 . 03 bbb 1 . 17 9 . 88 22 . 39 bb 3 . 27 18 . 62 37 . 51 b 4 . 65 24 . 21 46 . 27 s & p historical default rates ( % ) : 1 year 5 year 10 year aaa 0 . 00 0 . 13 0 . 67 aa 0 . 01 0 . 33 0 . 90 a 0 . 04 0 . 47 1 . 48 bbb 0 . 21 1 . 81 3 . 63 bb 0 . 91 8 . 82 14 . 42 b 5 . 16 20 . 95 27 . 13 in looking at the one - year transition rates as a very rough proxy for how many more defaults occur in a recession ( 1991 ) versus average ( 1981 - 1999 ) historical default rates ( % ) : investment grade non - investment grade avg . 1981 - 99 0 . 07 4 . 21 1991 0 . 12 10 . 40 multiple 1 . 7 x 2 . 5 x looking at where the market implied default rates divided by the historicals default rates to obtain a "" multiple "" ( how much more severe than historical ) : 1 year 5 year 10 year aaa infinite 44 . 2 x 21 . 7 x aa 67 . 0 x 19 . 4 x 18 . 5 x a 24 . 5 x 19 . 1 x 14 . 2 x bbb 5 . 6 x 5 . 5 x 6 . 2 x bb 3 . 6 x 2 . 1 x 2 . 6 x b 1 . 1 x 1 . 2 x 1 . 7 x on the 10 year historical figures , we need to be careful as the s & p static pool figures show a definite seasoning ( lower defaults in late years probably due to prepayment ) versus our contracts . secondly , the s & p figures have withdrawn ratings , which usually mean they are stale , but loosing some information content . i will ask emy to set up a meeting to discuss further . - - - - - - - - - - - - - - - - - - - - - - forwarded by michael tribolet / corp / enron on 12 / 11 / 2000 07 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jeremy blachman @ ees on 12 / 10 / 2000 07 : 21 am to : michael tribolet / corp / enron @ enron cc : subject : default rates thanks . i would strongly suggest an offsite sooner than later with a handful of the right people so that we can step back and design the right architecture for looking at credit in our deals . it is broken , not clear , killing our velocity and true capabilities . we also need to look at staffing , skills sets , the credit reserve model etc . perhaps you should take a crack at an agenda . - - - - - - - - - - - - - - - - - - - - - - forwarded by jeremy blachman / hou / ees on 12 / 10 / 2000 07 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - michael tribolet @ enron 12 / 09 / 2000 03 : 51 pm to : jeremy blachman / hou / ees @ ees cc : subject : default rates i visited with vince kaminski for about 20 minutes today regarding the market implied defaults rates and the disconnect in investment grade land . he is seeing the same anomaly and agreed that we as a company need to revisit the methodology employed in calculating the implied figures . i will follow through and report back .",0 +"Subject: telephone interview with the research group tammy : please excuse the error on the email below . i misunderstood - the position will be a full - time position with the research group . look forward to hearing from you . thanks ! shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 27 / 2000 09 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 04 / 27 / 2000 09 : 41 am to : dasyuan @ yahoo . com cc : subject : telephone interview with the research group good morning tammy : the enron corp . research group would like to conduct a telephone interview with you at your convenience . this will be as a "" summer intern "" with the research group . please let me know your availability on monday , may lst or thursday ; may 4 th . the persons who will be interviewing you are : vince kaminski managing director stinson gibner vice president krishna krishnarao director osman sezgen manager i look forward to hearing from you . thank you and have a great day shirley crenshaw administrative coordinator 713 - 852 - 5290",0 +"Subject: re : spring 2001 conference participation by jeffrey k . skilling i think he can do it , vince , but ut has asked him to speak at a leadership conference also on 2 / 16 , which rick causey is encouraging him to do . he has all the information ( i just sent it home in his mail as he returned this afternoon from a week of travel ) , so will press him to make a decision tomorrow . he may decide to do both or one or the other . . . i ' ll let you know as soon as i do . srs vince j kaminski @ ect 10 / 12 / 2000 04 : 57 pm to : sherri sera / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , richard causey / corp / enron @ enron subject : re : spring 2001 conference participation by jeffrey k . skilling sherri , any resolution of the scheduling conflict jeff skilling had for february the 22 nd ? our friends at ut are ready to make the reservations and send out invitations to this conference vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000 05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ehud i . ronn "" on 10 / 12 / 2000 10 : 12 : 56 am to : richard . causey @ enron . com , vince . j . kaminski @ enron . com cc : subject : re : spring 2001 conference participation by jeffrey k . skilling rick / vince : good morning . further to my discussions with vince during his visit to the energy finance program yesterday , i write at this time to inquire whether mr . skilling ' s assistant has been able to confirm his participation as 2 / 22 / 2001 keynote speaker at our conference . with thanks for your intercession on our behalf , ehud ronn ehud i . ronn professor of finance and jack s . josey professor in energy studies director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: resignation effective june 5 vince , i am planning to make my resignation from enron so that june 5 th would be my last day at work . i am interested in the trading opportunity this fall and will talk again with andy about it . it will still make sense for me to resign in the mean time in order that i may start burning my non - compete period to open up my other options . in addition , it will allow me to be rehired without the burden of the noncompete should i come back in the fall . regards , stinson",0 +"Subject: re : confidential sophie - what do we need to do to implement this ? vince - do you want to go through this with steve while he ' s in houston ? - dale vince j kaminski 30 / 08 / 2000 23 : 43 to : sophie kingsley / lon / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect subject : re : confidential sophie , i think it ' s a fair deal . vince sophie kingsley 08 / 30 / 2000 11 : 49 am to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , michele small / lon / ect @ ect subject : re : confidential both , thanks for your comments and comparisons , it is good to get context . based on your comments here would be my proposal o 63 , 500 basic salary - ol 5 k kickers for each of the 2 years - these are paid as a lump sum on each anniversary guaranteed . therefore guaranteed salary is effectively o 78 , 500 - this is completely separate and in addition to any performance bonus increase the value of options to o 60 k to vest 1 / 3 as before - which leaves a 1 / 3 ( $ 20 , 000 ) hanging out there at the end of the contract . just fyi - anjam is currently on o 68 , 000 but does not have an agreement , so this would effectively put a 10 . 5 k gap between the two . let me know your thoughts . dale surbey 30 / 08 / 2000 16 : 09 to : sophie kingsley / lon / ect @ ect cc : subject : re : confidential sophie , here ' s vince ' s comments on your proposal for steve . also , what ' s a 2 - yr exec ? how do the kickers work - are they basically a guaranteed minimum bonus or incremental bonus ? - dale - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 16 : 10 - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 30 / 08 / 2000 14 : 21 to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : confidential dale , thanks for your message . i don ' t know the labor market in london that well but here the market for quants is very hot . steve is in my view an exceptionally talented person and i would go an extra mile to retain him long - term for the company . i would adjust the base salary or the kicker upward a bit . o 62 , 000 basic is what anjam is receiving currently ( if i remember correctly ) . steve has a much higher value to enron than anjam . vince dale surbey 08 / 30 / 2000 07 : 49 am to : vince j kaminski / hou / ect @ ect cc : subject : confidential vince , this is the package hr is proposing for steven . what do you think ? - dale - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 13 : 50 - - - - - - - - - - - - - - - - - - - - - - - - - - - sophie kingsley 29 / 08 / 2000 20 : 32 to : dale surbey / lon / ect @ ect cc : subject : confidential sorry dale , long day , here are the proposed numbers 2 year exec o 62 , 000 basic ( currently o 55 k ) ol 0 k each year kickers $ 50 , 000 worth of options to vest 1 / 3 1 / 3 1 / 3 let me know what you think . regards sophie",0 +"Subject: re : invitation . . . welcome new analyst reception ashley , thnaks . i shall attend the reception . i shall ask shirley to set up a meeting with you to discuss spring events on campus . vince ashley baxter @ enron on 01 / 04 / 2001 04 : 01 : 01 pm to : vince j kaminski / hou / ect @ ect cc : subject : invitation . . . welcome new analyst reception hello vince i wanted to forward the following invitation to you . we are putting the technologists through an orientation which includes a few days with the analyst program - and the following is one of the events that they have scheduled on jan . 16 th . i wanted to forward to you as more of an fyi since we do not have any cal berkeley candidates starting on jan . 8 th . also - we are starting to set some of the events on campus for the spring - so we should probably get together soon . please let me know what works best for you ! thanks , ashley",0 +"Subject: revenue management meeting please plan to attend a revenue management science kick - off meeting on wednesday , august 23 , from 10 : 30 - 5 : 00 p . m . located in the enron building conference room 49 cl . the purpose of this meeting will be to identify and prioritize our forecasting and optimization efforts for revenue management . your attendance in houston for this meeting is critical . we will send out an agenda prior to the meeting . please call kim watson at 713 - 853 - 3098 , by friday , august 18 , if you are unable to attend . lunch will be provided . we look forward to seeing you there .",0 +"Subject: re : enron offsite hi steve : listed below is the information you will need . if i have left out anything , please let me know . * * * * * * * * * * friday , august 18 th 2 : 00 - 4 : 00 pm arrival in denver ( two separate flights ) can you arrange for shuttle to pick up ? 6 : 30 - 8 : 00 pm dinner at the lodge saturday , august 19 th we will need a conference room that will hold 12 - 15 people . from 8 : 00 am until 4 : 00 pm . 8 : 00 am breakfast buffet set up in meeting room 10 : 00 am break - bring in fresh coffee and water 11 : 30 - 1 : 00 pm lunch ( lunch buffet in meeting room ? ) 1 : 00 pm meeting resumes 2 : 30 pm break - bring in coffee , juice , cokes and water 4 : 00 pm meeting ends . we will need an overhead projector and an lcd projector . we will have dinner somewhere in the village on saturday night , any suggestions ? sunday , august 20 th 8 : 00 - 11 : 00 check out and return to denver for flight to houston can you arrange shuttle to denver ? * * * * * * * * * * * steve : some of the guys may bring their family ( will share the same room ) and stay a couple of days after the meeting ends . is there a problem with them staying on at the lodge ? if not , please let me know how soon you need to know how long they plan on staying . this is all i can think of right now . if anything else comes up i will let you know . thanks and have a great day ! shirley crenshaw 713 / 853 - 5290 email : shirley . crenshaw @ enron . com "" steve collins "" on 06 / 27 / 2000 02 : 58 : 37 pm to : cc : subject : re : enron offsite rates are a little higher in august than they are in april ( august is high season for summer ) , but i can do those rooms at $ 125 ( your april rate was $ 105 ) . what kind of meeting space will you need ? if you can get me a tentative agenda , i will get the contract drawn up right away . thanks again ! steve > > > 06 / 27 / 00 01 : 28 pm > > > let ' s do it ! august 18 - 20 is our first choice ! please send me all the information and then we will discuss the particulars . i will get vince to sign it immediately . thanks steve ! shirley "" steve collins "" on 06 / 27 / 2000 02 : 22 : 27 pm to : cc : subject : re : enron offsite hello again ! i promise i am not running ! the deal that we worked out with the general manager ( tom pratt ) is that enron has a $ 6000 credit with the great divide lodge that will expire on 8 / 1 / 00 . you can either use that credit for individual rooms prior to 8 / 1 / 00 , or we have agreed that we can apply that amount to a meeting prior to the thanksgiving holiday in 2000 if the contract is signed before 8 / 1 / 00 . at this point , august 18 - 20 is available , but the 25 - 28 is not . if we can get this signed prior to 7 / 31 / 00 , your $ 6000 credit would be able to be applied to this event . please let me know if this will work for you . thanks ! steve steve collins national sales manager the village at breckenridge / great divide lodge ( 800 ) 332 - 0424 or ( 970 ) 453 - 3156 direct scollins @ vailresorts . com > > > "" shirley crenshaw "" 06 / 27 / 00 01 : 06 pm > > > hello steve : please don ' t run ! i know after the last fiasco with an enron offsite you are probably running for the hills ! i do want to apologize to you and thank you for all of your assistance even though we were unable to make the trip . however , i understand there has been an arrangement made with enron , that if we book a time and come before thanksgiving we can recoup the money that we forfeited ? please let me know if i am understanding this correctly . if so , we have been told that our group can use this for an offsite . we are looking at the weekends of august 18 , 19 and 20 or august 25 , 26 and 27 th . there will be approximately 12 people . please let me know your understanding of the arrangement and the availability of the dates mentioned . look forward to hearing from you . regards , shirley crenshaw administrative coordinator enron corp . research telephone : 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: interview with the enron corp . research group several of the enron corp . research team would like for you to come in for an interview . they are : vince kaminski managing director stinson gibner vice president maureen raymond - castaneda director please give me some dates and times of your availability during the rest of january and i will try to coordinate them with our schedule . looking forward to hearing from you soon . regards , shirley crenshaw adminsitrative coordinator enron research group 713 / 852 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: message from bogdan hi vince , i am enclosing my resume , as per our most recent conversation . best regards , bogdan m . szopa - bogdan res . . doc",0 +"Subject: as promised . . . 2 guys , vince hi vince , here are two guys : the first asked for you ( the guy from oxford ) . the second has a "" high profile "" name - brand risk job . candidate 1 : done at oxford in sept . math finance . will move anywhere necessary . citibank / andersen consulting background . well known candidate in london . fixed income / structured contol of 450 mil . i have direct ownership and contact with . this guy is really impressive by phone ! highly recommended by dr . donnelly oxford candidate 2 : no real investment banking / energy risk experiences . . . but , asked me to get him out in london as he and his wife lived / worked there for ford credit europe . has operational risk skills and experience ! can probably steal him away from ford ( ford has no agreement with me ) . . . he is fair game . thanks for the consideration ! jeff always held in strict confidence . jeff wesley 949 813 2241 hotline 347 487 8957 voice / fax us + 44 ( 845 ) 3341644 uk * get free , secure online email at http : / / www . ziplip . com / * - oxfordagent 9498132241 . doc - fordmattagent 9498132241 . doc",0 +"Subject: wharton tiger team agenda friends , attached below are please find : 1 . wharton tiger team agenda , friday , 19 january 2001 , 7 : 30 am - 4 : 30 pm ; 2 . wharton tiger team brochure ( explaining the program ) . thank you in advance for your participation . meeting room 32 c 2 will be equipped for computer presentations . the format of your presentation is entirely up to you - - formal , conversational , computerized , hard copy - - however you feel most comfortable . we ' re currently expecting a total of 18 in the group . everyone is invited to come to churrasco ' s this evening . the wharton group will be picked up from the warwick at 6 : 30 , so should arrive at the restaurant at about 6 : 45 - 7 p . please come if you can ! thanks again ! this is an enthusiastic , talented group of prospective enron recruits - - and their research efforts might also well prove interesting to our businesses . regards - - christie .",0 +"Subject: re : fwd : invitation to the 20 th annual rutgers conference vince , i am delighted that you accept our invitation . we hope it works out that you can attend the whole conference as we are confident that you will find the program stimulating and will enjoy getting to know our participants . the pleasure will certainly be mutual . you will bring a new and different perspective from which we can all benefit . michael at 05 : 54 pm 3 / 15 / 01 est , vkaminski @ aol . com wrote : > > > > paul , thank you for the invitation to speak at the eastern conferences on regulation and competition on may the 25 th . i shall be glad to attend and make an after dinner presentation . i hope to be able to attend the entire conference . sorry for a delay in responding to your message . i have been traveling extensively in the last few weeks . vince return - path : from : vkaminski @ aol . com full - name : vkaminski message - id : date : thu , 15 mar 2001 17 : 04 : 02 est subject : fwd : invitation to the 20 th annual rutgers conference to : vkaminski @ aol . com mime - version : 1 . 0 content - type : multipart / mixed ; boundary = "" part 2 _ 70 . 8 aeecl 9 . 27 e 29652 _ boundary "" x - mailer : aol 6 . 0 for windows us sub 10501 return - path : received : from rly - yho 3 . mx . aol . com ( rly - yho 3 . mail . aol . com [ 172 . 18 . 147 . 35 ] ) by air - yho 3 . mail . aol . com ( v 77 _ rl . 21 ) with esmtp ; fri , 09 mar 2001 18 : 01 : 27 - 0500 received : from postmaster . enron . com ( outbound 5 . enron . com [ 192 . 152 . 140 . 9 ] ) by rly - yho 3 . mx . aol . com ( v 77 _ rl . 21 ) with esmtp ; fri , 09 mar 2001 18 : 01 : 01 - 0500 received : from mailman . enron . com ( mailman . enron . com [ 192 . 168 . 189 . 66 ] ) by postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id xaao 2258 for ; fri , 9 mar 2001 23 : 00 : 59 gmt from : vince . j . kaminski @ enron . com received : from nahou - msmswo 3 px . corp . enron . com ( [ 172 . 28 . 10 . 39 ] ) by mailman . enron . com ( 8 . 10 . 1 / 8 . 10 . 1 / corp - 1 . 05 ) with esmtp id f 29 noxp 22494 for ; fri , 9 mar 2001 17 : 00 : 59 - 0600 ( cst ) received : from ene - mtaol . enron . com ( unverified ) by nahou - msmswo 3 px . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp id for ; fri , 9 mar 2001 17 : 01 : 07 - 0600 subject : invitation to the 20 th annual rutgers conference to : vkaminski @ aol . com date : fri , 9 mar 2001 17 : 00 : 58 - 0600 message - id : x - mimetrack : serialize by router on ene - mtaol / enron ( release 5 . 0 . 6 | december 14 , 2000 ) at 03 / 09 / 2001 04 : 58 : 03 pm mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii x - mailer : unknown ( no version ) - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 09 / 2001 05 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" kleindorfer , paul "" on 03 / 08 / 2001 03 : 41 : 21 pm to : "" ' vkamins @ enron . com ' "" cc : "" ' mcrew @ andromeda . rutgers . edu ' "" subject : invitation to the 20 th annual rutgers conference vince : for two decades now , i have been a member of the faculty helping to organize the eastern conferences on regulation and competition that michael crew of rutgers has chaired . this year will be , in fact , the 20 th anniversary conference and a number of notable personages will be joining us to celebrate what we have learned and what we haven ' t about the economics of network industries . fred kahn , al philipps , bill hogan and a number of other distinguished academics will be reviewing our progress and the prospects for the future . the conference will take place at a beautiful site in the poconos , about 90 minutes north of philadelphia , from wednesday afternoon may 24 th to friday afternoon may 26 th . you can check for yourself the nature of the program and the conference site / hotel at the following website url : http : / / www . rci . rutgers . edu / ~ crri / ws . htm michael crew and i would both be delighted if you would be willing to be an after dinner speaker on thursday evening ( may 25 th ) , just before the key research reviews of friday morning take place on the electricity , telephone and gas industries , and following a day of special topics on emerging power markets and other developments in network industries . naturally we would be pleased if you would be able to stay for the entire conference , but knowing your schedule , you may only have time for a part of it . that would not be a problem . the usual after - dinner address is for 30 minutes , followed by a short q & a period . your presentation would help to underline the tremendous importance of enron in driving the development of new risk instruments to assist in price discovery and efficient risk management for market participants , in energy markets and more generally . both michael and i feel that your perspectives on the "" new science of risk management "" and what can be expected from it could be a very important addition to this special anniversay event . please let me know ( and please do copy michael on your response ) whether your schedule will allow your participation in this very special event . michael and i would , of course , be very happy to follow up with you in discussing the nature of the presentation , participants and so forth , if this is a go . i look forward to hearing from you . regards , paul paul kleindorfer 215 898 - 5830 michael a . crew professor ii director - center for research in regulated industries editor - journal of regulatory economics rutgers university , graduate school of management 180 university avenue newark , n . j . 07102 - 1897 phone : 973 353 5049 fax : 973 353 1348 http : / / www - rci . rutgers . edu / ~ crri",0 +"Subject: site license for power world gentlemen , i recommend that we purchase this package and split the cost 3 ways between 3 power trading desks . i think that we should go for option 3 ( ~ $ 15 , 000 ) . lance cunningham in my group looked at this software package and found it very useful for modeling transmission problems . please , feel free to ask him for technical details in support of this recommendation . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000 09 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lance cunningham @ enron on 11 / 09 / 2000 06 : 15 : 14 pm to : vince j kaminski / hou / ect @ ect cc : vasant shanbhogue / hou / ect @ ect subject : site license for power world vince , we have three options to increase our availability across enron for the power world load flow software . option 1 , upgrade to a site license for the load flow software only . price $ 9 , 990 . 00 this would give all of enron the ability to perform load flows , but not determine marginal cost or available transfer capacity ( atc ) because only the optimal power flow ( opf ) version can perform that task . option 2 , site license for the load flow and purchase 1 opf package for walter coffer ' s group . price $ 11 , 240 . this would give all of enron the ability to perform load flows and one other group the ability to determine marginal cost and atc . option 3 , site license for load flows , opf and atc . price $ 14 , 990 . 00 this would give all of enron the ability to perform load flows , marginal cost , and atc . regards , lance",0 +"Subject: siam invitation dear dr . kaminski here is an email invitation for teh siam event . a hard copy will follow dr . v . kaminski enron p . o . box 1188 houston , texas 77251 - 1188 dear dr . kaminski march 12 , 2001 i am writing to formalize your invitation to attend , participate , and speak in the siam southwest regional mathematics in industry workshop . a time span of thirty minutes is being allotted to invited talks with an additional ten minutes or so for discussion . the workshop , funded under the auspices of a national science foundation grant to siam will not be a standard applied mathematics event with representatives from industry , academe , and governmental agencies presenting their latest research results . instead the meeting will emphasize the mathematics and technology currently applied to the projects of industry and governmental laboratories . additionally the event will focus upon the mechanisms facilitating interaction and collaboration between the academy , industry , and government laboratories . the workshop will be held at the university of houston hilton hotel , april 27 - 28 . funds will be available to support both travel expenses and the cost of food and lodging of invited speakers . we will be happy to make travel arrangements on this end if so desired . we hope that you can accept our invitation . if this is the case please furnish us with a title , a short abstract , and a list of the necessary equipment for your presentation . we look forward to seeing you at the university of houston . sincerely w . fitzgibbon",0 +"Subject: re : job posting please respond to vince , thank you very much . i applied for the position yesterday ( via e - mail address ) and mentioned your name in the cover letter . i ' ll keep my fingers crossed . sincerely , helen - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 25 , 2001 9 : 42 am to : demianen @ ruf . rice . edu subject : re : job posting helen , fyi . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001 09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : lee ferrell / enron @ enronxgate on 04 / 24 / 2001 06 : 20 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : job posting hi vince , this posting is for my group . thanks for the referral . - - - - - original message - - - - - from : kaminski , vince sent : tuesday , april 24 , 2001 5 : 31 pm to : goodpasture , john ; watson , kimberly ; ferrell , lee ; kaminski , vince cc : krishnarao , pinnamaneni subject : job posting i am teaching a class at rice and one of my very bright students sent her resume in response to this posting . do you know who posted this job ? vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - ( embedded image moved to file : pico 5601 . pcx ) "" helen demianenko "" on 04 / 24 / 2001 02 : 11 : 05 pm please respond to to : cc : subject : job posting dear vince , thanks for talking to me this morning about the sr . risk analyst position . here is where you can find the job description for that position : also , i have cut and pasted it down below , just in case . i appreciate your assistance in this matter and will start working on my cover letter right away . i would also like to talk to somebody to get a better feel for the position ( is this really an mba level position and how much of the in - depth learning opportunities for the derivatives market does it entail ? ) sincerely , helen demianenko p . s . i have attached my resume ( one more time ) . sr risk analyst essential functions : primary accountability for managing the ets risk book structure and processes from a pipeline ( front office ) perspective . work within current nng and tw marketing organizations to effectively integrate risk books into daily marketing and structured product activities . provide feedback to management regarding overall and specific risk positions . provide support for consistent and accurate deals entry / reporting for stand alone risk management system . create ad - hoc reports to assist management in risk analysis . responsible for managing and providing enhancements to the capacity books : ? maintain functionality and provide leadership for new functionality from a users perspective . provide support and direction for integration of capacity books and revenue management project . support revenue management team essential requirements : ba / bs in finance or accounting ( mba preferred ) . minimum of two years financial instruments experience . excellent quantitative / analytic and systems skills . knowledge of commodity risk book concepts . understanding of physical natural gas market , interstate transportation and financial derivatives . ability to interface with structuring / marketing groups in order to define business requirements . ability to provide leadership for business and system processes . excellent communication skills with an ability to communicate across organization with varied skill sets and ideas . must be self - motivated with a high level of energy preferred skills : na . special characteristics : this job functions in a team - oriented , fast - paced environment with multiple concurrent assignments and constantly changing priorities . contact : responses will be accepted through may 3 , 2001 . respond to enron corp . , human resources 235 , p o box 3330 , omaha , ne 68103 - 0330 or e - mail : dea . crum @ enron . com as a . doc or . txt attachment . please include this requisition number . job id 0000108729 department risk management & reporti company enron transportation services enron transportation services location houston , tx type posting date 19 - apr - 01 - helen _ d _ resume . doc >",0 +"Subject: re : running credit model steve , in order to be able to test the new credit model as well as to answer credit group ' s questions regarding the outputs from this model research needs to be able to do the following : 1 . run credit model independently of the other runs . it is quite ok for now to be able to run it just for small artificial portfolios . 2 . debug the code to see what actual values are used during the run time . please , let me know if your team can help us . tanya .",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 qhlkd order for : tom halliburton this computer is required to run a software licence manager only . it will be running continously , but will not be used by any individual . the smallest , cheapest machine suitable connecting to the enron network will be adequate . secondhand hardware will be suitable . enron it purchasing",0 +"Subject: re : hello hi vince , thank you for your offer to bring jacob back for another interview . yes , if it is not too much trouble , i would like to talk with him . i was sorry i had to be out of town last week when he was in the office . thanks , just let me know when you would like me to be available . kim . - - - - - original message - - - - - from : kaminski , vince sent : monday , april 16 , 2001 1 : 21 pm to : watson , kimberly cc : krishnarao , pinnamaneni ; kaminski , vince subject : re : hello kim , this is a letter from one of the job applicants who works for pros . it seems that the system they develop for williams is more a scheduling system . would you like to ask him to come back for another interview , to get more information out of him ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jacob y . kang "" on 04 / 11 / 2001 11 : 18 : 44 pm to : vince . j . kaminski @ enron . com cc : subject : re : hello dear vince : it was so nice meeting and talking with you too . i did not take any pen back , i lost my pen too somewhere in enron . as i mentioned to you , after i got my ph . d in 1999 , i have been working two years as lead scientist and science manager in energy division at pros revenue management inc . in houston . i developed and implemented the mathematical models for trading optimization system and firm transportation optimization system . the trading optimization system becomes the most popular product in the industry this year . duke energy just signed the contract to buy this product yesterday . conoco and williams also signed the contracts for it . according to pros sales department , the potential marketer to buy this product exceeds 15 companies in one or two years . enron is the ideal place for me to continue my research and system developing efforts to combine revenue management with risk management . i am confident that i can make significant contributions to enron in this area . i would like to thank you again for giving me this opportunity to come to enron for this interview . i am looking forward to having the opportunity to work in enron . sincerely yours jacob - - - vince . j . kaminski @ enron . com wrote : > jacob , > > it was nice meeting you . did take by any chance > my pen ? if not , i apologize . > > vince > do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com /",0 +"Subject: pr resume - - - - - - - - - - - - - - - - - - - - - - forwarded by bjorn hagelmann / hou / ect on 06 / 05 / 2000 06 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - proan @ mindspring . com on 06 / 02 / 2000 10 : 02 : 34 pm to : bjorn hagelmann / hou / ect @ ect cc : subject : pr resume bjorn , it was good to talk to you on yesterday . i was contacted by jason sokolov this morning and he advised me to forward my resume to you . the best day for me to interview would be friday , june 9 th . i hope to hear from you soon . phil roan ( 713 ) 759 - 1741 ( h ) ( 713 ) 544 - 7469 ( w ) proan @ mindspring . com roanp @ kochind . com - quant resume _ 4 . dot",0 +"Subject: status vasant - i hope you had a wonderful vacation back home , and are rested and recovered from the long flight back . i wanted to give you an update of the eol project , the gas model , and of my intentions here at enron . software ( in compiled c on the unix platform ) has been developed and debugged to listen to the eol trades , process them , book them , and file them away . in addition , software has been developed and debugged to mark these to market on a continual basis , and to store the entirety of open positions on eol in a dynamic matrix facilitating analysis . it has yet to get back with me on how the software can be informed of those trades ultimately rejected for credit purposes . these data files are stored in a format for reading by excel or by sas , for which i have written the data step program and basic tabulation routines elucidating the structure of the data . i am in the process of documenting all of this for you . with regards the gas model and its slow performance on the compaq , dell has agreed to loan me one of their competing machines to the compaq , to see if the performance issue of the lp is related to the compaq . i have been researching this issue with it here and with compaq and dell . the new machine will be here any day now ( no financial obligation to anyone ) , and i will be able to immediately ascertain whether the problem the model is having is compaq - specific . i am also in the process of documenting the gas model for you . i ' ve tried to do my best for you , vasant , but i have been frustrated by not only the death of my mother but some internal systems in it here . just the other day , sas could not open a full query of the eol database because there wasn ' t enough free space on the server ' s hard drive for the workfiles . in discussing some of these issues with some good friends of mine in power trading , people whom i have known for over 10 years , they indicated they were ubiquitous here . the power traders have similar pc ' s to my new one , and they have complained from day 1 that theirs are slower than their old ones . also , there remains a large frustration with the development of data warehouses ; during my brief tenure here it has gone through two differing proposals as to how to address this . when i have been told of tools available for real - time data harvesting , my requests for such have typically been met with "" well , we have it , but we haven ' t really tested it yet . "" an example is the weather : we still do not record to disk the hourly nws observations from the goes satellite . my interests here are to help enron to do well , because i will do well only if enron does well . these aren ' t empty words - my ira is 100 % invested in the enron stock fund . i believe my best contributions to enron will be in the areas of systems as well as modeling , and the difficulty working in the research group , in terms of systems development , is that , frankly , few people at enron seem to care what a researcher thinks about our systems . we aren ' t directly generating revenues for enron , and we aren ' t really their customers , except in our relatively small deparrtmental infrastructure expenses . as it happens , power trading posted an opening for a modeling and forecasting person , and i spoke with them and they asked me to take the job , reporting to george hopley . it is a wonderful opportunity for me , vasant , as they are interested in large system modelng of power grids as well as improving their traders ' access to real - time fundamentals data . i was completely candid with kevin presto regarding my shortcomings here in research - i told him you were disgusted with me because i repeatedly failed to meet time deadlines . they also understand i have yet to be at enron for 1 year , and thus may only bid on a job with your permission . we agree the move is good for enron ; we all work for enron , and your acquiescence to the move does not endorse it but merely permit it . they are comfortable with me - they have known me for years as a hard worker , honest and unpretensive . they have already ordered a state - of - the - art unix workstation and server for me , and they have told me they will commit whatever resources are necessary for me to be successful , including hiring an analyst to work for me . and , i have already been able to teach their analysts improved techniques for data harvesting and analysis i have learned here . so , i am requesting your permission to bid for this job opening . it would be a lateral move in position and salary , and i would commit to you to help you in any way possible in the future with regards the gas model or the eol database . i will continue to work on their improvement , and complete their documentation . as it happens , i am away on enron business in portland monday and tuesday , and will be back wednesday . i had wanted to talk face - to - face instead of by email , but enron business supercedes - i am on a team designing the data warehouse for floor trader support . clayton .",0 +"Subject: re : alberto jimenez ( analyst program ) alberto , we would definitely be interested in talking to you when you get to houston . i will have our assistant , shirley crenshaw , set up some time for you to meet with people in our group , which would include myself , zimin lu , and vince kaminski . best regards , - - stinson "" alberto jimenez crespo "" on 01 / 24 / 2000 11 : 43 : 53 am please respond to a _ jimenezcrespo @ mailcity . com to : stinson gibner / hou / ect @ ect cc : subject : alberto jimenez ( analyst program ) dear mr . gibner : it was very interesting talking to you during enron ' s recruiting weekend the first week of last december . i am starting as an analyst next february and i have alot of interest in real options . i have done much of my research in the application of real options in the valuation of oil and mining properties using black - scholes , merton , binomial lattices , etc . i have also done forecast of commodity prices such as copper and oil using both , a geometric brownian motion and a mean reverting process . i remember in our conversation you told me that your department is very involved with real options so i would like to know if there is an opportunity to talk either on the phone or once i am in houston the first week for the orientation . because i am very interested in working in your department . i won ' t be in houston until february 6 th , but you can reach me at 310 390 7817 or ajimenez @ mines . edu looking forward to hearing from you . sincerely , alberto jimenez lycoshop . thousands of products ! one location ! http : / / shop . lycos . com /",0 +"Subject: mentor / summer associate program as a reminder , the summer associate program is an integral and critical part of our recruiting efforts . you have been asked to act as mentors for summer associates who attend the schools for which you have recruiting responsibility . you were invited to meet the summer associates at a reception being held at the sierra grill , located at 4704 montrose , on thursday , june 22 nd from 6 : 00 p . m . to 7 : 30 p . m . to date several of you have not responded . please respond to cheryl kuehl ( ext . 3 - 9804 ) by tuesday , june 20 th . if you are unable to attend , please advise cheryl that you intend to make other arrangements to meet your summer associate so that she may advise the associate not to look for you at the reception . we thank you for your co - operation and your efforts to assist will not go unnoticed . jeff and joe",0 +"Subject: re : consulting arrangement thanks vince - - - i will be teaching this afternoon . if you can ' t reach me this morning , we can talk tomorrow . sheridan at 05 : 28 pm 1 / 24 / 01 - 0600 , you wrote : > > sheridan , > > i have just checked with rac ( david gorte ) and we have a green light > to go ahead with the project . i shall you tomorrow to discuss the details . > > vince > > > > > > sheridan titman on 01 / 24 / 2001 02 : 45 : 50 pm > > to : > cc : > subject : consulting arrangement > > > vince : > > i just wanted to check with you regarding the consulting arrangement we > discussed a couple of weeks ago . > > perhaps , we should start with just a 1 or 2 day contract where i give some > thoughts to the kind of issues that we discussed and come to houston to > present my preliminary thoughts and possible avenues for additional work . > > regards , > > sheridan > sheridan titman > department of finance > college of business administration > university of texas > austin , texas 78712 - 1179 > > 512 - 232 - 2787 ( phone ) > 512 - 471 - 5073 ( fax ) > > titman @ mail . utexas . edu > > > > > > sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu",0 +"Subject: stinson out on jan . 4 , 2000 shirley : i am planning to take a vacation day on jan . 4 . thanks , - - stinson",0 +"Subject: working paper list & etc dear vince : i have put together a list of finance working papers ( some of which i brought to the interview last wednesday ) which i have written since 1995 mostly in support of my work but also ( at least initially ) as a learning tool . several of them , however , do contain innovations . i have asked ms . de claris to forward a copy to you . as i expressed to you earlier i am particularly interested in enron credit swaps trading platform and the business opportunities that it will spawn . i also think that there are tremendous opportunities to be explored in the secondary mortgage maket in the us . i do not know if enron has considered or is active in this market . this would be an area that i am also very interested and in which i think much better can be done than most of the players in the street . the question in my mind ( hopefully not prematurely ) is : if there is interest here would enron consider letting me put together this business ? i look forward to hearing from you soon . best regards joao",0 +"Subject: california power 1 / 19 / 00 executive summary : sb - 7 x gives dept . of water and resources given legislative authority to undertake short - term power purchases with no price cap through feb . 2 nd new legislation ( ab - 1 x and sb - 6 x ) would seek ( 1 ) long - term contracts with 5 . 5 cent cap and ( 2 ) creation of california power and conservation financing authority the long - term contracts proposed in ab - 1 x are likely to be subject to significant amendment and renegotiation prior to the feb . 2 nd expiration of sb - 7 x . the authority proposed in sb - 6 x would have bond issuance powers to finance new generation capacity and conservation measures negotiations under way on using bond authority for a utility bailout - - utilities and state government split over debt obligations of utility parents state borrowing plans and power purchases create credit risks for state treasury ; socal edison misses more payments bush administration opposes price caps , but is supporting state efforts to split pg we believe he then could be willing to guarantee or issue bonds to deal with the rest . as one very senior california political leader explained , getting the utility holding companies to eat a substantial part of the debt they owe themselves is the key to solving the back debt problem without provoking widespread public outrage about a "" bailout "" of private price - gouging companies with taxpayer money . since 75 % of californians currently blame the utilities and the puc for this crisis ( and only 10 % blame davis ) , this is a crucial political stance for the governor . but , of course , absorbing anything like $ 6 billion in debt would be quite a shock to the seemingly healthy holding company and power - generating branches of the two utilities , and they began spreading the word that they were quite willing to accept bankruptcy . thus by mid - week , both sides had pushed themselves toward a resolution in federal bankruptcy court that would be a worst case solution for all sides : the country ' s economy would suffer from the resulting credit shock , the governor ' s political future would suffer from the electricity rate increases almost certain to be mandated by a bankruptcy judge , while most private sector legal authorities believe the utilities corporate holding structure would ultimately be breached during bankruptcy procedures and they would end up having to absorb some significant amount of the debt in the end . in addition , they would most likely face a state government determined to use state powers of condemnation to enter the power business in a major way . senator burton ' s sb 6 x legislation will strengthen those powers dramatically to make this point quite explicit . it would set up a "" california power and conservation financing authority , "" with the power to issue bonds and invoke eminent domain . it would finance new power plants , and "" consider the feasibility and public interest of the state acquiring , operating , and maintaining transmission facilities currently owned by investor - owned and municipal utilities . "" as we write this , all sides are trying to construct a path back down from the bankruptcy ledge to safe ground , and there is no question the tone has shifted in the last 24 hours from macho confrontation to "" maybe we ' ve run this thing out as far as we can . "" but as we have noted , the chance for miscalculation is still quite high . there is no solution agreed to at this time , the stand - off over how much debt the state government will absorb versus the utilities ' holding company is continuing , and the technical fact of default still makes it possible for some bank to trigger bankruptcy by demanding immediate accelerated payment . 5 . default update - thursday socal edison - $ 215 million default to california power exchange . after edison failed to make a $ 215 m electricity payment yesterday , the california power authority began seizing long - term contacts and reselling them to recoup some of the money owed to generators . pg & e said it expects its trading privileges at the cal . power authority to be suspended today , leaving them with only its generation from nuclear and hydroelectric sources . while the ongoing wave of defaults has severely restricted pg & e ' s and socal ' s ability to buy power , the department of water and resources will be able to pick up some of the slack , at least in the very short - term . the state itself may be getting into risky credit territory . the proposed california public power authority would borrow in the neighborhood of $ 1 . 3 billion from the state general fund in advance of this year ' s expected fiscal surplus , with the loan to be repaid by the authority from expected future revenues . with near - bankrupt utilities and a freeze on rate hikes , it is unclear where the revenues would come from . the amount borrowed and terms of repayment will be no doubt examined very carefully by the bond rating agencies . 5 . bush policies as we reported on wednesday , the bush administration continues to demonstrate little interest in getting involved in the california crisis . president - elect bush surprised state leaders yesterday with his comments , which essentially said that excessive environmental regulation was the root of the current supply shortage . bush and his top officials appear to be unanimously opposed to long - term price caps . however , there is one issue of considerable importance to the administration , according to a source close to a top bush economic advisor . there is significant concern that pg & e ' s credit problems could cause gas suppliers to stop shipments of gas through pg & e ' s pipeline . the risk would be that the pipeline could "" go dry "" , causing significant and possibly dangerous disruptions in california residences and businesses . to prevent this problem , bush is working with davis on a proposal to split pg & e into separate gas and electric companies . the gas company would be solvent , but the electric company would go immediately into ch . 11 following significant defaults .",0 +"Subject: vince ' s travel itinerary ludmilla : here is vince ' s travel itinerary for sunday to new york . date 06 septembero 0 booking ref ze 56 tx kaminski / wincenty soc 0011 rl 0 enron corp kaminski / wincenty eb 1962 e - tkt receipt * * review upgrade below * * service date from to depart arrive continental airlines 10 sep houston tx new york ny 539 p 1000 p co 1672 a sun g . bush interco la guardia terminal c terminal m dinner non stop reservation confirmed 3 : 21 duration aircraft : boeing 737 - 800 seat 01 f no smoking confirmed kaminski / wincen first class upgrade is confirmed hotel 10 sep hilton millenium 11 sep 55 church street new york , ny 10007 united states of america telephone : 212 - 693 - 2001 fax : 212 - 571 - 2316 telex : tlx none confirmation : 3110994415 single room queen size bed rate : ral usd 339 . 00 per night guarantee given nonsmoking king enron corp to avoid billing cancel 24 hours prior to arrival hotel time continental airlines 11 sep new york ny houston tx 745 p 1033 p co 1963 a mon la guardia g . bush interco terminal m terminal c snack non stop reservation confirmed 3 : 48 duration aircraft : boeing 737 - 300 seat 01 f no smoking confirmed kaminski / wincen first class upgrade is confirmed miscellaneous 10 nov houston tx fri * * thank you for using the tap * * kaminski / wincenty soc 0011 rl 000 co frequent flyer cowt 472179 shirley crenshaw : 853 - 5290 intl tvlrs : carry sos wallet card w / enronassistance info call sos : in u . s 800 523 - 6586 / intl 215 245 - 4707 ( collect ) this is the passenger receipt for your electronic ticket",0 +"Subject: interview schedule for alex tartakouski attached please find the interview packet for the above - referenced person . the interview will happen wednesday , november 29 , 2000 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . liz alvarado 58714",0 +"Subject: tiger team hi vince , re : my voice mail sent earlier today , i think this is the group requesting the telephone conference . they prefer a call tuesday , 16 jan , after 2 pm . let me know ! thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 01 / 12 / 2001 09 : 26 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" vittal , maheshram "" on 12 / 26 / 2000 10 : 59 : 38 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : "" ' christie . patrick @ enron . com ' "" subject : re : houston trip dear vince / christie , thanks for coming to philadelphia to present an overview of the projects . we enjoyed meeting you and your colleagues and look forward to working with enron . i would also like to pass on my team ' s appreciation for the dinner as well . we wanted to give you an update on our project and get some feedback and additional information prior to our upcoming visit to houston on january 19 th . our project is going to be geared to the 3 rd option you mentioned . we plan on addressing some part of the retail energy services business . we are considering two options regarding this topic and would like to pursue either ( i ) how customers are acquired and recommending new processes and ways to serve retail customers , or ( ii ) studying the supply chain and coming up with recommendations for areas for further investments . however , we would like to get some more information on the retail energy services before truly scoping the project . we are also very open to suggestions , especially if you had a much broader or different scope in mind ; so please let us know . we have not yet reviewed the introductory information received last week , but here are the questions we have specific to the retail energy services unit : can we look at its overall business plan or a more detailed summary than is in the annual report ? what is the pricing philosophy / overall structure ? who are the customers and how are they acquired ? what would the customers be doing if they did not work with enron ? what are the international expansion plans and capabilities ? is there any important regulatory summary information we can have ? if this information is not already covered in the review material you sent , will you be able recommend other sources where we may find such information ? after we have reviewed the material sent to us recently , we may want to schedule a phone call with you and / or one of your colleagues directly involved in the retail energy services business . i would like to call you in the new year to discuss this further . in the meantime , please feel free to call me at ( 215 ) 546 - 9416 if you need any information . regards , retail energy services tiger team ram dennis jason omar steve clay",0 +"Subject: re : a quant i did . . . trying to get him in next week so that vasant can see him as well . thanks vince j kaminski 24 / 01 / 2001 22 : 24 to : bryan seyfried / lon / ect @ ect cc : subject : a quant bryan , did you have a chance to take a look at the resume i sent you ? he looked like a great guy for your group . vince",0 +"Subject: propane prices vince , please find attached file with propane price statistics . there are two kinds of data : ( 1 ) prompt month futures prices , no location specified , starting from 1987 ; ( 2 ) index prices for different locations ( north sea , venezuela and saudi arabia ) , starting 1988 . source of both is platts publications . please notice that price of futures in given in us cents / gallon , and index prices in usd / mt . sincerely , elena",0 +"Subject: please add our contact information to your database . what follows are a couple of active searches , should you become aware of interested individuals . chief executive officer location : san diego , ca company : * * rates . com compensation : targeted compensation in the > $ 200 k base range plus extensive stock ownership and bonus . description : the board of directors of * * rates . com is seeking a dynamic and experienced executive for the position of ceo of this pre - ipo internet company . the ceo would play a key role in the business strategy of a highly entrepreneurial and fast - growing company and answer directly to the board of directors . this individual must be smart , highly motivated team leader able to offer strong business strategies , especially involving the rapid growth of operations and resulting financial challenges . the ceo must be expansion - capable and have experience with business start ups , growing businesses and the ability to get the company to a public offering the chief executive officer for this 1 - year start - up , b 2 b e - commerce , single location company must be able to commercially launch the company in the energy industry , and ultimately expanding into other market niches while making this company a market leader in the internet rate comparison market . * * rates . com is a california c corporation company with an industry leading board of directors and advisory board . the company in the process of assembling a management team , finalizing the business plan and taking the rate comparison service to market . the initially targeted electric and natural gas industries have over $ 200 billion in annual revenues . currently , the three largest internet rate comparison companies have little or no market share in the energy industry . possible candidates can come from a variety of experiences , but experience in starting up an energy company or leading - edge technology company is critical . requirements : the candidate must have 8 - 15 years of executive management experience ( i . e . , ceo , president , sr . vice - president , partner level consultancy ) in the private sector either with a deregulated energy company , a large consulting or a services oriented firm . extensive background in either the energy field , high technology , including telecommunications , systems software , e - commerce development or e - commerce . must have a strong background in business development and building relationships with large companies . strong visionary with proven leadership qualities and capable of building a company . degree essential . computer literate in word processing / budget formats / and e - mail necessary group and people skills essential organizational and planning skills a must over all must be a self - starter and a communicator must be willing to travel in states as necessary . position title : director of acquisitions department : corporate development location : dc reports to : vice president , acquisitions position summary : the person holding this position serves as a transaction team leader for large acquisition projects within the energy group , performing all activities and managing all resources necessary to successfully acquire operating power plants , or gas assets . working largely through self - direction , he or she manages the project team for an assigned project and establishes and adheres to budgets and schedules . due to high deal flow , the energy group needs two directors of acquisitions , and has one open position . principal duties and responsibilities : 1 . manages the project team for an assigned project . successfully manages the project through signing of an asset purchase agreement . 2 . manages development of and inputs to , project / proposal economic projections . obtains sign - off on pro forma inputs from appropriate company officers . 3 . identifies problems and solicits input from appropriate team members and / or senior management on project issues . develops alternative solutions and assesses the alternatives in the context of project and corporate objectives . chooses and implements the best solutions . 4 . establishes project budgets and schedules and manages expenditures to budgeted levels . 5 . plans and organizes tasks and short - term goals for the project team members to ensure the project stays on schedule . coordinates activities of team members ( including third parties ) from different disciplines to ensure activities with overlapping disciplinary impacts are performed efficiently . 6 . represents the project and the company in discussions with interested parties , at lender meetings , etc . , and develops appropriate relationships with individuals involved . 7 . identifies key issues associated with an acquisition and its potential  & fatal flaws .  8 8 . assists in maintaining relations with investment banks and legal firms to assure that company receives all appropriate  advanced degree in business or related field preferred . 2 . strong analytical skills , experience in building and managing pro formas . 3 . substantial record of successfully managing and participating in the development or acquisition and financial closing of independent power projects or merchant plants . 4 . excellent oral and written communication skills . 5 . ability to function in a team environment with multiple and changing priorities , as either leader or team member . interview with : chief financial officer vice president , acquisitions managing director , development director , acquisitions asian sales manager position . selling turbomachinery controls throughout asia . the best location for this position is in singapore . all candidates for this position should have a proven track record selling controls in the region . the asian sales manager will be responsible for growing i & c systems product line ( direct sales ) throughout asia . this will include sales of control systems through engine and turbine packagers and rebuilders . company will also pursue sales directly to end - users with the best candidates being the oil & gas producers and power companies . the company will emphasize gas turbine applications including compressor and generator drives . the company is interested in developing alliances with large users such as ongc , petronos , and caltex , as well as pursuing the individual retrofits with energy companies . retrofit opportunities will not be limited to this company ' s machines . the company will retrofit any gas turbine . we will also retrofit gas or diesel engines . the company expects sales results and then growth plans for leveraging these early successes . as they grow , additional sales personnel may be added and they will report to the asian sales manager . company hot buttons : 1 . familiar with asian oil & gas and power generation markets . 2 . strong technical understanding of control systems and turbomachinery applications . 3 . well organized , self - managed individual . 4 . ability to manage and direct other sales people . 5 . ability to work with key customers , to understand their turbomachinery requirements and communicate i & c solutions . 6 . ability to achieve early sales results and to develop sustained sales growth . 7 . ability to develop long - term alliances with key customers , as well as , sales opportunities on individual control retrofit projects . 8 . strong understanding of sales & marketing principles with the ability to implement these principles . 9 . ability to work well with people of various cultural backgrounds . 10 . the asian sales manager will be based in singapore and report to the director of sales and marketing , located in houston , texas . an undergraduate degree in electrical or mechanical engineering is required . a graduate degree is business is also desirable . regards , dave weir , sr . managing partner ieg , inc . 215 - 957 - 9012 fax . 215 - 957 - 1753 or 215 - 957 - 6090 website : www . iegsearch . com email : dgweir @ iegsearch . com or dgweir @ aol . com dave weir , sr . managing partner ieg , inc . 215 - 957 - 9012 fax . 215 - 957 - 1753 or 215 - 957 - 6090 website : www . iegsearch . com email : dgweir @ iegsearch . com or dgweir @ aol . comdave weir , sr . managing partner ieg , inc . 215 - 957 - 9012 fax . 215 - 957 - 1753 or 215 - 957 - 6090 website : www . iegsearch . com email : dgweir @ iegsearch . com or dgweir @ aol . com",0 +"Subject: research intelligence stinson , please , take a look at this memo and forward with changes , if any , to ross prevat . enron corp . research group publishes weekly newsletter , "" research intelligence , "" available to the internal users on the intranet , at the following location : xxx . xxx . xxx . this site contains not only the new issues of the newsletter as they become available , but also the archived copies of the previous editions . each issue of "" research intelligence "" contains a regular feature called technical corner which is devoted to discussion of various quantitative techniques that can be applied across different business units of enron . i am sending you a binder with the archive copies of the technical corner articles . please , review these articles and let us know whether some of the techniques discussed in them could find application in your area . we shall be glad to use our technical expertise to support your business . binders would go to skilling , sutton , hannon , baxter , delainey , bowen , w . curry , buy , bowen , overdyke , whalley , shankman , pai , etc . this is a partial list . i think we should ask the head of each unit to make recommendations . thanks . vince",0 +"Subject: re : tom halliburton dear all : a few words about tom . he is a power engineer type who has previously worked at northwestern us and new zealand utilities on various projects including asset planning and hydro scheduling . he was hired by ei structuring to oversee modeling efforts using sddp , henwood , etc . because of the recent implosion at ei apache , tom ' s group has effectively evaporated , and thus he is looking for a new home . he has some finance background from having to do asset evaluation for utility rate filings . he has almost no options experience . he seems to have quite a bit of experience in some classes of or problems . clearly the most obvious fit is with my group , but the idea is for you all to see if tom has a tool set that may be of use to other research projects . and , as usual , the personality fit is the other aspect to examine . this is meant to be casual . if the consensus is positive , then i will explore the formalities of such a transfer . thanks , grant .",0 +"Subject: possible summer internship with enron good morning ainsley : a copy of your resume was forwarded to vince kaminski and the research group of enron corp . they are very interested in talking with you about the possibility of a summer internship with the research group . please let us know if you would be interested and we will arrange either a telephone interview or bring you into the office for an interview . you may contact me at : shirley crenshaw administrative coordinator enron corp . research telephone : 713 / 853 - 5290 email : shirley . crenshaw @ enron . com look forward to hearing from you ainsley . sincerely , shirley crenshaw",0 +"Subject: re : enron / stanford program vince , i will call paul racicot tomorrow . can you try and do the same ? thanks , stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000 07 : 59 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 10 / 09 / 2000 12 : 04 : 19 am to : stinson . gibner @ enron . com cc : subject : re : enron / stanford program hi stinson , i am under pressure from the department to wrap up giuseppe ' s raship , and i am probing to see how things are going on this matter on your side . i ' m deep in the red in terms of the deadline - way beyond it ! would it be possible to wrap this up this week ? many thanks , nick stinson . gibner @ enron . com wrote : > > nick , > > i spoke with paul racicot , head of trading for ebs , north america this > morning . he said that he is happy to send the $ 100 , 000 for your program > from his budget . i have forwarded to him the draft letter to accompany > the funds and will try to follow up to make sure that the money is sent > promptly . > > - - stinson",0 +"Subject: re : tanya vacation brad , can we reverse this entry ? i shall call you later today regarding tanya . vine - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 17 / 2000 08 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tanya tamarchenko 02 / 16 / 2000 10 : 13 am to : vince j kaminski / hou / ect @ ect cc : subject : re : tanya vacation vince , i just found out that none of my vacation days from the last year is in the computer system ( it says that i have 0 c / over days ) . it was november 3 , 1999 when i asked your approval to carry over 12 vacation days to the next year . i was thinking that if you ( or hr ) do not approve i could at least take these days in 1999 . i know that your tried to help me and sent to brad mcsherry the justification for me to carry over 10 days . i bothered you a few times in november and december 1999 and since your response was optimistic i did not take any of those 10 days in 1999 . but i never heard from hr . now i am not sure - may be these days are not in the system by mistake . i would like to take 5 of them in march ( from 3 / 13 / 00 to 3 / 17 / 00 ) . what is your advice ? should i contact brad mcsherry ? even negative response from hr in november or december last year would be better than loosing vacation days . i really appreciate your help , tanya . tanya tamarchenko 12 / 02 / 99 12 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : tanya vacation hi , vince , sorry to bother again with my question . i first e - mailed my question a month ago ( on nov . 3 ) . since we still have not heard from hr , is it fair to assume that i can carry over my 10 vacation days to the next year ? if not - i have to take 5 days before dec . 17 , because then i go on vacations anyhow . i would really prefer not to take off most of december , there are quite a lot of things going on . thank you for your help in resolving this question . tanya .",0 +"Subject: agenda christian - i was thinking that your expertise in grads and grib formats will help enron to obtain a competitive edge over our competitors . development of the grads visualization tool will allow our international offices to obtain the mrf ( medium range forecast model ) data first , without being dependant of internet sources . additionally , i think that we could obtain mrf ensemble data via the same sources as well . can we include in the agenda the development of these tools ? jose marquez",0 +"Subject: re : vacation shirley , no problem . vince shirley crenshaw 05 / 16 / 2000 09 : 14 am to : vince j kaminski / hou / ect @ ect cc : kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron subject : vacation vince ; if it is allright , i would like to take a day of vacation , friday , may 19 th . thanks . shirley",0 +"Subject: re : contingencies steve , i shall call you tomorrow about it . my preference is to move anjam to houston for some time . anjam knows a lot about our business and specific positions and it ' s better to prevent a potential leak . i have discussed this issue with dale and richard and they concurred . i don ' t expect anjam to act irrationally but it ' s better to be safe than sorry . vince steven leppard 08 / 02 / 2000 03 : 08 pm to : vince j kaminski / hou / ect @ ect cc : subject : contingencies hi vince if you ' re currently engaged in drawing up contingency plans for the anjam situation , have you arranged for a "" snapshot "" of his computer directories to be taken ? we all tend to use our personal areas ( on our h : drives ) for development , and obviously there ' ll be a few years of work in anjam ' s directories . i wouldn ' t want him to wipe it all out in a fit of bad temper . although our it dept . obviously makes backups , i don ' t know how long they are kept for . cheers , steve",0 +"Subject: re : lost cell telephone chris , the phone has been found and has not been compromised in any way . can you , please , restore the service . thanks . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 29 / 2000 12 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 12 / 18 / 2000 03 : 13 pm to : chris samaniego @ enron cc : vince j kaminski / hou / ect @ ect subject : re : lost cell telephone thanks ! chris samaniego on 12 / 18 / 2000 03 : 06 : 09 pm to : "" ' shirley . crenshaw @ enron . com ' "" , enron cc : subject : re : lost cell telephone request completed . chris samaniego account associate houston cellular corporate accounts petrochemical vertical ( 713 ) 562 - 2995 cellular ( 713 ) 345 - 7183 enron direct ( 713 ) 646 - 2415 fax enron @ houstoncellular . com e - mail samaniec @ houstoncellular . com e - mail samaniec @ bellsouthips . com interactive pager > - - - - - original message - - - - - > from : shirley . crenshaw @ enron . com [ smtp : shirley . crenshaw @ enron . com ] > sent : monday , december 18 , 2000 2 : 19 pm > to : enron > subject : lost cell telephone > > hello : > > vince kaminski left his cell phone on the bus last friday . he has > contacted > the bus line , but the person in charge of the lost and found is not in the > office today . > > if there any way that we can put a hold on this telephone until he can see > whether it has been turned in or not ? > > the cell # is : 713 / 410 - 5396 and the account # is : 88563580 . > > please let me know as soon as possible . > > thanks ! > > shirley crenshaw > 3 - 5290 > ebl 961 > shirley . crenshaw @ enron . com > >",0 +"Subject: 21 st annual energy symposium - november 28 - 29 , 2000 , houston , texas dear vince , thank you for taking the time to dine with chris and me back on monday 2 october . further to our dinner , i would like to forward you information on three topics : the partners who lead arthur andersen ' s relationship with enron are david duncan , based in houston , and simon prew , based in london ; our country managing partner for russia and details of our 21 st energy symposium are attached below . if you are interested in registering for our symposium please contact david directly . should you require any further information on the topics we discussed over dinner ( strategy , value and risk ) please do not hesitate to contact us in houston or london . regards , allan ( embedded image moved to file : pic 20284 . pcx ) the energy symposium is one of the largest energy conferences in the world and we are successful in attracting senior energy executives as speakers to this 2 - day event . this year ' s event will be november 28 & 29 . the energy symposium is much more that just an "" accounting conference . "" industry leaders discuss a range of topics and share their perspectives on strategic , economic , political , financial and operating issues . participants find the networking aspect of the symposium to be especially valuable . there is ample time during the event for them to meet and talk with their counterparts and colleagues in the industry . and it is a premier marketing opportunity for arthur andersen , where more than 300 partners and managers get to spend two days with 700 executives from the energy and utilities industry in a forum . the symposium check - in begins monday , november 27 at 6 p . m . , with a cocktail reception in the galleria ballroom foyer . arthur andersen personnel are encouraged to attend for an opportunity to network with colleagues , clients and prospective clients in an informal setting . thank you in advance and i look forward to seeing you and your clients in houston . victor a . burk monday , november 27 , 2000 6 - 10 p . m . opening reception tuesday , november 28 , 2000 7 : 00 a . m . registration 8 : 15 a . m . symposium wide opening and welcome 8 : 30 a . m . opening plenary session global power companies : strategies for success 10 : 00 a . m . break 10 : 30 a . m . concurrent session i i - a the changing face of utilities : u . s . restructuring continues i - b bandwidth markets : opportunities & pitfalls noon lunch and keynote presentation 2 : 00 p . m . concurrent session ii ii - a retail energy services : the new game ii - b mergers & acquisitions : more to come ? ii - c new business models and technologies : changing the supply chain 3 : 30 p . m . break 4 : 00 p . m . concurrent session iii iii - a opportunities and risks in the emerging global emissions trading market iii - b oil field services : the new landscape iii - c accounting and reporting outlook 5 : 30 p . m . reception wednesday , november 29 , 2000 7 : 00 a . m . registration 8 : 00 a . m . breakfast roundtable discussions rt - 1 asia / pacific region rt - 2 caspian region rt - 3 bandwidth markets rt - 4 customer relationship management rt - 5 digital markets rt - 6 value creation in the e & p industry 9 : 45 a . m . break 10 : 15 a . m . concurrent session iv iv - a trading and marketing : new products and new players iv - b creating value in the e & p industry 11 : 45 a . m . lunch and keynote presentation 2 : 00 p . m . supply chain optimization workshop 4 : 00 p . m . symposium adjourns the printed program and registration materials will be mailed to more than 10 , 000 people on our us oil and gas and utility mailing lists on october 2 . a copy of the materials is attached below . in addition , you can always refer to our website , www . energysymposium . com , for any updates to the agenda . ( see attached file : es _ 2000 . pdf ) headquarters : octel & network : 713 - 237 - 5400 fax : 713 - 237 - 2214 lotus notes : energy symposium hq or energy . symposium @ arthurandersen . com symposium in - charge : melissa l . spradley octel & network : 713 - 237 - 2385 fax : 713 - 237 - 5673 symposium contact : mickey r . appel octel & network : 713 - 237 - 2472 fax : 713 - 237 - 5673 * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * the uk firm of arthur andersen is authorised by the institute of chartered accountants in england and wales to carry on investment business . a list of partners is available at 1 surrey street , london , wc 2 r 2 ps ( principal place of business ) . privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . - pic 20284 . pcx - es _ 2000 . pdf",0 +"Subject: gpcm modeler news : august 31 , 2000 new gpcm pipeline schematics available on the web you can now view gpcm pipeline schematics on the web by going to the gpcm website , clicking "" gpcm pipelines "" and then clicking the code for the pipeline you want . you can also go to that pipeline ' s website by clicking it ' s url . finally , by "" right - clicking "" the code you can copy the pipeline schematic ( a powerpoint file ) down to your local computer and use it there . once you copy it down , if you put it into your gpcm 8 \ maps sub - folder , you can view it directly from your user interface in the data / pipelines form ( click the has map box on ) . if you are a gpcm licensee and would like a zip file of the current set of maps , you can pick it up from the customer support area of the gpcm website ( http : / / gpcm . rbac . com ) . from http : / / www . enerfax . com : natural gas markets in mexico natural gas demand in mexico in the coming years could grow by up to 8 % annually . such demand could lead to natural gas imports approaching 2 bcf per day , according to government forecasts . in response , pemex proposes two actions : the first consists of measures to increase cross - border pipeline infrastructure and capacity such as a new pipeline being built by coral energy into pemex ' s supply hub at reynosa . the possibility of a new pipeline to monterrey is still an option . a second measure is to implement a gas - centric exploration and production program focused on five areas , two of which are dry natural gas basins , burgos and macuspana . this second measure is intended to reduce projected imports by up to 80 % . at present , pemex ' s 10 - year strategic plan does not contemplate a role for private production companies in capacities other than that of technical assistance . storage report week prev ending prev prev year | region | 8 / 25 / 00 | week | diff | % full | year | % full | prod | 529 | 517 | 12 | 55 % | 749 | 78 % | east | 1254 | 1209 | 45 | 68 % | 1382 | 75 % | west | 361 | 366 | - 5 | 71 % | 390 | 77 % | | | | | | | | total | 2144 | 2092 | 52 | 65 % | 2521 | 76 %",0 +"Subject: re : enroncredit . com vasant , tanya any interest ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 14 / 2000 03 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - melanie doyle 03 / 10 / 2000 04 : 33 am to : vince j kaminski / hou / ect @ ect cc : brad mcsherry / hou / ect @ ect subject : re : enroncredit . com hi this guy has applied to credit . com in houston , i spoke to him yesterday and then passed my comments to bryan seyfried . bryan suggested he may be of interest to you . i let this this guy know that he would hear from us either way and if we want to pursue the application we would invite him for interviews in houston . please give me a call if you need more information . melanie 00 44 171 783 7740 . - - - - - - - - - - - - - - - - - - - - - - forwarded by melanie doyle / lon / ect on 10 / 03 / 2000 10 : 26 - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 08 / 03 / 2000 07 : 51 to : brad mcsherry / hou / ect @ ect cc : melanie doyle / lon / ect @ ect subject : re : enroncredit . com let ' s start getting these guys in to interview . melanie can do initial telephone interviews and then coordinate with brad to ensure we are seeing the best people . i would like to move as quickly as practical . bs from : brad mcsherry on 07 / 03 / 2000 13 : 17 cst to : bryan seyfried / lon / ect @ ect cc : subject : enroncredit . com - - - - - - - - - - - - - - - - - - - - - - forwarded by brad mcsherry / hou / ect on 03 / 07 / 2000 01 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - alexander . c . davidson @ us . arthurandersen . com on 03 / 03 / 2000 01 : 55 : 23 pm to : brad . mcsherry @ enron . com cc : subject : enroncredit . com dear mr . mcsherry : i am responding to your search for credit risk professionals on the enroncredit . com website . after working for seven years on credit risk management in a research and consulting capacity , i would like to transfer my experience in assessing credit risk modeling , information technology and methodology in complex top - tier institutions to an active credit trading managerial environment . i am excited about being involved in trading , origination , risk management and r & d of credit derivatives . i have seven years of experience in credit risk measurement and management . i have helped design , test and implement credit value - at - risk systems with kmv corp and with a major japanese bank . i was a major contributor at kmv in designing the expected default frequency model and i am thoroughly familiar with its assumptions , strengths , weaknesses and applications . i did the empirical research that lies behind the kmv default correlation model , the private firm edf model and i interfaced with j . p . morgan ( now r . m . g . ) personnel during the creation of the creditmetrics documentation . i have excellent analytical , quantitative , statistical and programming skills . i studied finance extensively when i was a graduate student and i studied credit risk theory while i worked with kmv and arthur andersen . i am eager to join the credit derivative team at enroncredit . com where i am certain that my combination of quantitative research skills , credit risk consulting experience and technology expertise make me uniquely qualified to support the credit derivatives trading and risk management function . i have included my resume with this e - mail . please e - mail me or call me at 201 - 420 - 0191 ( home ) and 212 - 708 - 4027 ( work ) so that we can discuss this opportunity further . ( see attached file : alex . doc ) * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . - alex . doc",0 +"Subject: re : eott options tracy , attached is a spreadsheet model which contains both black - scholes and american option valuation models . these are the generally accepted methods for valuation of options on equity . the "" european "" option prices assume that the option holder can exercise his options only at maturity , while the "" american "" style options can be exercised at any time during their life . i have assumed in the examples that the underlying equity units have a market value of $ 13 . 00 and that the options are struck at this level . the volatility input is the other main assumption . eott has been trading recently with a volatility ranging between 30 % to 40 % although looking further back , the range is much wider . to run the model , you must be linked with the options library . i am not sure what lan you are connected with , but you can coordinate with zimin lu ( x 36388 ) for help with loading the option library add - in module . on the ena lan it is located under o : \ research \ exotica \ xll \ exotica . xll . this is loaded in excel using the tools / add - ins and browse to reach the add - in location . - - stinson x 34748 p . s . i will mail you a hard - copy of a plot showing recent eott volatility as well . if you would like us to help you in running specific examples , please let me , vince , or zimin know .",0 +"Subject: re : contract agreement habiba , looks good to me . pleasure to work with you . vince habiba bayi @ enron _ development 04 / 03 / 2000 06 : 23 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : contract agreement hi , attached is the draft copy of the agreement for your review . i will call lacima in london in the morning to fill in the gaps for the name of the book , the date they intend to publish it and the name of the person who will sign on their behalf . as soon as i get your comments back , i will send the copy to david , our attorney , and copy you as well . thank you . habiba",0 +"Subject: re : new invoice for energy and weather vince , thanks ! ? can you also let me know who my contact is for getting copy approved by enron so we can use it in our publications ? ? i will try fiona grant again , but i ' m not getting anywhere . ? thanks , julie - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie sent : tuesday , april 10 , 2001 9 : 16 pm subject : re : new invoice for energy and weather julie , i signed the request for a check today . vince "" julie "" on 05 / 09 / 2001 04 : 47 : 05 pm please respond to "" julie "" to : ? ? "" vincejkaminski "" cc : ? ? subject : ? new invoice for energy and weather vince , please find attached a replacement invoice for invoice number 215 . ? this invoice includes the correction in charges for the weather course , and for only one attendee for the energy derivatives course . if you should have any questions , please contact me . sincerely , julie ( see attached file : enron 283 _ 9 _ 04 _ 01 . doc )",0 +"Subject: petrochem desk vasant , it seems we have to help them . can kate help on this project ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 23 / 2001 09 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nelson neale @ enron 04 / 20 / 2001 10 : 29 am to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate cc : subject : petrochem desk i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group . from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research . nelson",0 +"Subject: re : enron credit model docs for the comparative model study - to be sent to professor duffie @ stanford hi ben , i think i have read all the papers that are to be used in the comparative model study to be sent to professor duffie at stanford . these documents are all listed below . please let me know if i have omitted any ( however , don ' t get the impression that i am begging for more papers to read ) . now i will try to transform my notes into a draft for professor duffie . thanks , iris list of papers for comparative model study 1 . actively managing corporate credit risk : new methodologies and instruments for non - financial firms by r . buy , v . kaminski , k . pinnamaneni & v . shanbhogue chapter in a risk book entitled credit derivatives : application for risk management , investment and portfolio optimisation 2 . neural network placement model by george albanis , enroncredit ( 12 / 22 / 00 ) 3 . pricing parent companies and their subsidiaries : model description and data requirements by ben parsons and tomas valnek , research group 4 . a survey of contingent - claims approaches to risky debt valuation by j . bohn www . kmv . com / products / privatefirm . html 5 . the kmv edf credit measure and probabilities of default by m . sellers , o . vasicek & a . levinson www . kmv . com / products / privatefirm . html 6 . riskcalc for private companies : moody ' s default model moody ' s investor service : global credit research 7 . discussion document : asset swap model by ben parsons , research group ( 4 / 20 / 01 ) 8 . asset swap calculator : detailed functional implementation specification ( version 1 . 0 ) by ben parsons , research group 9 . discussion document : live libor bootstrapping model by ben parsons , research group ( 4 / 20 / 01 ) 10 . the modelling behind the fair market curves : including country and industry offsets by nigel m . price , enron credit trading group 11 . pricing portfolios of default swaps : synthetic cbos - moody ' s versus the full monte ( carlo ) by nigel m . price , enron credit trading group 12 . placement model vl . 0 : discussion document by ben parsons , research group , 2000 13 . credit pricing methodology - enroncredit . com by ben parsons , research group 14 . correlation : critical measure for calculating profit and loss on synthetic credit portfolios by katherine siig , enron credit group 15 . discussion document : var model for enron credit by ben parsons , research group , ( 1 / 3 / 01 ) 16 . methodology to implement approximate var model for the credit trading portfolio by kirstee hewitt , research group",0 +"Subject: enron announcement car rental options for enron travelers rental car contracts for 2001 have been awarded to : national car rental ( primary ) and alamo rent - a - car ( secondary ) . the intent of these agreements is to consolidate and leverage enron ' s total car rental spend to achieve the most favorable rates and non - pricing provisions ( i . e . insurance ) . national car rental , due to its service levels , availability and total value proposition , has been awarded primary status and is recommended as the first choice for enron travelers ' needs . alamo rent - a - car , a sister company to national , has been awarded a contract reflecting a secondary status , due to its service levels , availability and low cost solutions . alamo is recommended as an alternative to national , where available . when you rent a vehicle in the united states , ( including puerto rico ) or canada , the following insurance provisions are included , regardless of rate selected : 1 . l / dw ( loss / damage waiver ) - this is what is called comprehensive or collision on your personal auto . it covers the rental vehicle and pays for any damage to it . 2 . liability - this covers people and property outside the rental vehicle . for both national and alamo , the coverage is $ 100 , 000 per person , $ 300 , 000 per occurrence and $ 50 , 000 for property damage . * * important * * * these coverages apply regardless of rate selected , as long as the following contract id is communicated at the time of reservation and rental is recorded on the transaction rental agreement . ( national - 5000838 alamo - # 143974 ) to enjoy the highest levels of service while renting a vehicle from enron ' s preferred suppliers , it is recommended that each traveler enroll in national ' s and alamo ' s preferred traveler programs . national ' s emerald club membership and alamo ' s quicksilver program are designed to speed the transaction time by providing services such as counter bypass and rapid return . the enrollment fees for these programs have been waived for enron travelers . enrollment packets will be mailed to the addresses of enron american express t & e cardholders . you may also find an enrollment form on the enron travel program intranet @ gss . enron . com . if you have any questions or comments , please contact jeff leath at 713 - 646 - 6165 .",0 +"Subject: spring 2001 schematic spring 2001 faculty , the spring 2001 schematic has been posted to embanet . to access the schematic please open the jgsm area icon on the embanet desktop . next please open the announcement jgsm icon . you will find the spring 2001 schematic located under the subject column . please open the document . if you do not have access to embanet you will need to speak with david kilgore at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 . thanks , kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: approval ( sent by nguyen griggs ) user requests acces to / research / erg / basis / basisnw . . . . . please indicate if you approve . thanks ngriggs irm o : / research / erg / basis / basisnw . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 05 / 02 / 2000 01 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system pending security processing resource request how to process a request . . . general information initials : requestor : kimberly brown / hou / ect phone : 713 - 853 - 5193 requested for : kimberly brown / hou / ect request type : update access rc # : 0765 wo # : company # : 413 priority : high location : houston 1 . click to see what is being requested or see the resource request ( s ) section below . 2 . click to process the request . comments : this is urgent request # : kbrn - 4 jxkk 6 submitted : 05 / 02 / 2000 09 : 59 : 11 am name cost status implementation comments directory / resource / other o : / research / erg / basis / basisnw . . . . not started request processing path processed by status when comments security implementation other security information req ' s location : network login id : unix login id : editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 1 2 kimberly brown kimberly brown 05 / 02 / 2000 09 : 59 : 08 am 05 / 02 / 2000 09 : 59 : 11 am",0 +"Subject: very rough draft of the "" enron strategic plan "" to be sent to professor duffie hi , as per your request , here is a very rough draft of the document you requested . it is far from being complete . hopefully while in london i will have time to work on it some more . your comments and feedback would be greatly appreciated . thanks , iris",0 +"Subject: re : pserc industrial advisory board meeting invitation vince , i agree with alex on this issue . as an alternative for sponsorship . the ut electrical engineering dept . is interested in sponsorship for research activities such as the one i just completed or as martin performed when he was at ut ( just thought that i would mention this as a possible alternative ) . would you be interested in a presentation or a "" brown bag lunch "" on this subject ? lance alex huang 04 / 02 / 2001 08 : 55 am to : vince j kaminski / hou / ect @ ect cc : lance cunningham / na / enron @ enron subject : re : pserc industrial advisory board meeting invitation vince , i think it is important to keep a good relationship with pserc , but as of now , it is not worth two days of your time to attend the board meeting . besides , since we are not a sponsor yet , we have virtually no voice in the meeting and our presence sometimes is awkward . again , even if we are one of the thirty or so sponsors , our voice is rather limited , for most of the other sponsors have different concerns from ours . one way to remedy this is to individually sponsor some research projects , via sumer intern or invited talks . alex",0 +"Subject: re : youyi vince , this will be perfect for us . we will work with shirley while keeping you and krishna informed of the timing and location of the move . i will also speak with youyi tomorrow about our plans . many thanks , kim . vince j kaminski @ ect 01 / 16 / 2001 01 : 39 pm to : kimberly watson / et & s / enron @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : youyi hi kim , i don ' t see any problem . for the time being , he can keep his desk on the 19 th floor as well ( and the same phone number ) . it will be helpful when he has to work closely with krishna under time constraint . at some point , as we hire more people and run out of space , we can move him completely to your floor . please , ask your assistant to call shirley and arrange the move . vince kimberly watson @ enron 01 / 12 / 2001 04 : 21 pm to : vince j kaminski / hou / ect @ ect cc : pinnamaneni krishnarao / hou / ect @ ect subject : youyi hi vince ! i hope you and a nice christmas and new year ! it ' s nice to be back and in the full swing of the new year . i have a question for you . i spoke with krishna prior to him leaving for india about the possibility of moving youyi up to our floor so that we can work closer with him . krishna thought that this would be a good idea . it would be great to have youyi with us soon so that he will be intimately involved with the whole approach of our prototype model . although krishna will be back at the end of the month , would you mind if i speak with youyi and begin the paperwork for moving him onto our floor ? i ' m not sure if krishna has mentioned this to youyi yet . i did not want to surprise anyone and wanted to run this by you or krishna for final approval . many thanks , kim .",0 +"Subject: re : fw : possible visit to enron by professor nalin kulatilaka of boston university iris , i wrote an endorsement for his book on real options ( it was on the cover under jeff skilling ' s name ) . let ' s invite him to the thursday lunch . vince from : iris mack / enron @ enronxgate on 03 / 29 / 2001 05 : 52 pm to : stinson gibner / hou / ect @ ect , stinson gibner / enron communications cc : vince j kaminski / hou / ect @ ect subject : fw : possible visit to enron by professor nalin kulatilaka of boston university hi stinson , a colleague of mine - professor nalin kulatilaka of boston university - is interested in visiting enron to give a talk on work he is doing in the broadband area . please see the forwarded emails for further information and available dates . can you let me know if we can give him a forum at one of our thursday research lunches or a friday brown bag lunch ? thanks , iris - - - - - original message - - - - - from : nalin kulatilaka @ enron com ] sent : thursday , march 29 , 2001 5 : 40 pm to : mack , iris cc : lin , martin subject : re : possible visit to enron by professor nalin kulatilaka of boston university hi iris i have two different hats to wear in talking to enron . one is as a financial economist . the other as the director of the newly formed "" global mobility innovation initiative ( gmii ) - - this is the research project funded by lucent , involving bu , lbs , and insead , to study various aspects of the mobile internet ( read 3 g ) . on the former i am working with a couple of ph . d . students in understanding ( a ) details of how having physical supply ( inventory ) can be used by a market maker . this is a problem that has been studies in the context of specialists inventory in the stock market but i think really interesting in the way enron does it in some of the newer markets like bandwidth . i think this is a big issue in lighting up all the dark fiber that is in the ground . ( b ) how enron is disciplining the internal decision making process with market . this is in many ways the critical aspect of real options that most finance people miss - - having options is one thing but exercising them and realizing their value is another . all of the incomplete contracting , asymmetric information , and incentive issues are ignored in real options valuation models . but they are real in practice . my impression is enron ' s real success is in putting place an organization that is able to mitigate these problems by imposing a market disciplining . ( c ) how enron manages the various books that involve physicals , financials , credit etc . this is specially important when many of the real assets have options features and therefore , include non - linear risk profiles . the story of gas is pretty well understood but not many of the others markets enron has been moving into over the last few years . on the gmii front , i think that some interesting opportunities arise when you think of the spectrum in a way similar to that of dark fiber . i am working with several people at lucent on this issue . i think it would be wonderful to engage in a conversation with enron and lucent folks in the room . i can do a lunch time talk on any of these issues . perhaps we can discuss some of these over a conference call . clearly , having vince kaminski in the room would be very important to me . as for schedules , the first 3 weeks of april are horrible . april 26 / 27 , may 3 / 4 are good for me . regards nalin at 06 : 56 pm 03 / 22 / 2001 , mack , iris wrote : > hi , > > as we briefly discussed , i spoke with one of my colleagues ( dr . > martin lin ) about your visiting enron to give a talk and to spend some > time with us to discuss you work in telecommunications , real options , > etc . > > martin and i are working on various broadband related problems . > > we thought it might be helpful if you let us know a bit more about > the following : > * when you want to come ( the research group has weekly > catered lunch on thursday and brown bag lunches on every other friday ) . > > * a description of what you want to talk about with respect > to telecoms , broadband , etc . > * who you would like to meet with me - vince kaminski ( our > boss ) , any other of our colleagues in research , broadband , etc . > . . . . . . . . . . . . . . . . . etc . > > > > > look forward to hearing from you . > > regards , > iris",0 +"Subject: re : full version darrell , thanks a lot . i really appreciate it . the text is below our usual standards but we are completely swamped with work here . vince darrell duffie on 08 / 15 / 2000 04 : 54 : 23 pm please respond to darrell duffie to : vince . j . kaminski @ enron . com cc : subject : re : full version i ' ll have a look ! i haven ' t much time , but can certainly get you a quick reaction , at least ! best , darrell > x - lotus - fromdomain : ect > from : "" vince j kaminski "" > to : duffie @ stanford . edu > date : thu , 10 aug 2000 14 : 04 : 47 - 0500 > subject : full version > mime - version : 1 . 0 > content - disposition : inline > x - uidl : 9 fef 7462 afa 5 d 4 ee 6 co 4 c 9 co 2 df 71 b 25 > x - keywords : > > > > darrell , > > grant just alerted me that i sent you only part of the text . > > here is the full chapter with an aged version of gran ' t part . > what i sent you represents an update of his contribution . > > sorry for that . > > vince > > ( see attached file : volo 720 . doc ) darrell duffie mail gsb stanford ca 94305 - 5015 usa phone 650 723 1976 fax 650 725 7979 email duffie @ stanford . edu web http : / / www . stanford . edu / ~ duffie / ",0 +"Subject: follow - up on siam workshop i am forwarding for your attention the resume of peter percell who has an extensive experience in modeling physical flows of natural gas in pipeline systems . peter is looking currently for a job . i met him last week at the meeting of the science and industry advance with mathematics society at the university of houston . the application of recent developments in optimization theory and numerical methods can help enron to improve further efficiency of our pipeline system and reduce the consumption of compressor fuel . please , let me know if you interested in introducing peter to executives in your organization . i shall be glad to make arrangements for an interview . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 30 / 2001 02 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - peter percell on 04 / 30 / 2001 11 : 16 : 58 am to : vincent kaminski cc : subject : follow - up on siam workshop i enjoyed your presentation , and meeting you briefly afterwards , at the siam workshop last friday . i have extensive experience as a technical leader in the design and development of modeling and simulation software products , mostly for the oil and gas pipeline industry . i am looking for a position that can utilize my software development and mathematical skills . getting out of the narrow confines of the pipeline simulation industry would be a plus . please consider whether i might fit in your group . your answer to a question indicated that i have several of the skills you look for . also , please let me know , by email , the names and contact information of other managers within enron who might benefit from having someone with my qualifications in their group . attached are my resume and an addendum covering academic & consulting experience . publications are available on request . i will call you in a couple of days to follow up on this email . thank you for your time . peter percell 10030 doliver drive percell @ swbell . net houston , tx 77042 - 2016 ( 713 ) 532 - 3836 voice & fax - percell , peter resume only . doc - percell , peter a & c exp . doc",0 +"Subject: hea ' s 34 th annual sports tournament vincent kaminski , you should have received a fax over the labor day weekend regarding our upcoming sports tournament . if you did not receive it , please visit our website at www . houstonenergy . org and go to the "" next scheduled event "" , or just go directly to http : / / www . houstonenergy . org / public / sportscover . doc . for all the information you need . hope to see you there and don ' t delay in sending in your registration ! this message was sent by : teresa knight , executive director houston energy association ( hea ) phone : ( 713 ) 651 - 0551 fax : ( 713 ) 659 - 6424 tknight @ houstoneneryg . org if you would like to have your email address removed from our mailing list , please click the link below to the hea home page , where you will find a mini - form to remove your name automatically . http : / / www . houstonenergy . org / if you did not receive the attached file or it was corrupted , you can find it at : http : / / www . houstonenergy . org / public /",0 +"Subject: re : datren williams acceptance what a kind and thoughtful man you always are , vince . . . . i have always appreciated that in you ! i just moved to another position this week - with sheila knudsen in ena compensation , but i will always remember how wonderful you are with the associates and analysts in the program , and will miss having the opportunity to touch base with you occasionally . thank you for being the special man you are ! carol p . s . i doubt that you know who i am , but i had worked with the program for two years , having been hired by mike smalling in october 1998 . when i first moved to houston ( from ohio ) and enron , i rode the # 35 bus for a short while . you helped me find enron the first day i rode it , but i didn ' t know who you were until i saw you at our super saturday activities . you will never know how much that assistance meant to me - a shy , street - dumb girl from toledo , ohio , in a city like houston , who didn ' t know how to ride a bus ! all of enron loves you , and i know why ! vince j kaminski 10 / 12 / 2000 04 : 32 pm to : carol coats / hou / ect @ ect cc : subject : re : datren williams acceptance carol , thanks . vince carol coats 10 / 12 / 2000 04 : 09 pm to : vince j kaminski / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : re : datren williams acceptance you are right , vince . . . . celeste and i did discuss it , and she approved his feb . start date . datren does know about that , so it sounds like it is cleared up . thanks so much , and we are sorry for the confusion ! carol vince j kaminski 10 / 12 / 2000 03 : 58 pm to : stinson gibner / hou / ect @ ect cc : carol coats / hou / ect @ ect subject : re : datren williams acceptance stinson , i think it ' s a mistake . it should be february . vince stinson gibner 10 / 10 / 2000 08 : 11 pm to : vince j kaminski / hou / ect @ ect cc : subject : datren williams acceptance fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000 08 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - carol coats 09 / 29 / 2000 02 : 36 pm to : celeste roberts / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : datren williams acceptance celeste , i just received datren williams ' acceptance with the following note attached : "" my graduation date ( ph . d . candidate from lsu ) is dec . 2000 . celeste roberts has informed me that i would have the option of starting work feb . 2001 . i am under the impression that i will start in feb . 2001 . my offer letter has a start date of aug . 2001 . if this is a problem , please give me a call . looking forward to working at enron . thanks a million , datren w . "" please let me know if he may in fact start in feb . 2001 , and if so , do you have a specific date for him , or may he choose ? thanks , celeste , carol",0 +"Subject: outage pricing model revision : allowing for power price vs . outage correlation i have included provision for providing rank correlation between "" jump occurrence in daily average power price "" and "" outage occurrence "" . the model will provide the same claim distribution as before when pricevsoutage correlation = 0 is used . claim goes up as the correlation is increased . i have performed some sensitivity analysis and the results seem to make sense . the new model workbook is "" 40901 . xls "" and corresponding dll is "" outagepricingo 40901 . dll "" , both located in o : \ grm \ research \ outagerisk \ subdirectory . the price vs . outage rank correlation input will need to be provided in "" main "" spreadsheet . please call me if you have any questions . - amitava",0 +"Subject: academic seeks job find below resume and email from someone who has built an electric generation commitment optimization model and is job - hunting . his skills look pretty good . should we bring him for an interview ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2000 10 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : samer takriti @ enron communications on 04 / 07 / 2000 03 : 32 pm to : stinson gibner / hou / ect @ ect cc : subject : fw : resume another one . - samer - - - - - forwarded by samer takriti / enron communications on 04 / 07 / 00 03 : 34 pm - - - - - "" stephen schwartz "" 02 / 02 / 00 10 : 14 am to : "" samer takriti "" cc : subject : fw : resume - - - - - original message - - - - - from : jorge f valenzuela [ mailto : "" jorgev + "" @ pitt . edu ] sent : monday , january 31 , 2000 9 : 46 pm to : stakrit @ ei . enron . com ; stakrit @ ei . enron . com subject : resume dear dr . takriti , my name is jorge valenzuela . we met last year in the workshop , "" the new generation of unit commitment models "" . after your presentation , we had a brief conversation . i defended my ph . d . dissertation in industrial engineering at the university of pittsburgh last december . currently , i am teaching at the business school of the university of pittsburgh , but my interest is to work for an electric power company such as enron . during the last three years , my work has revolved around modeling of electric power systems . my ph . d . dissertation deals with the scheduling of generating units under the new operating environment . i have proposed a formulation that includes the option of trading at market - clearing prices with a power pool . i model the market - clearing price by a stochastic process based on the stochastic processes of the generating unit availabilities and the aggregate load . i use probabilistic dynamic programming to obtain the schedule that maximizes the expected profit . in my resume , herewith attached , i have listed some other work that i have done in modeling electric power systems . i would like to add that i am a very versatile person with strong background in operations research , statistics , and information technology . please call or e - mail me if you think that your company could make use of a person as me . thank you very much for your kind consideration . best regards , jorge valenzuela 215 sandy dr . glenshaw , pa 15116 telephone : ( 412 ) 492 - 9886 email : jorgev @ pitt . edu enclosure - resume . doc",0 +"Subject: resumes karen , i have forwarded all the resumes to charlene jackson about 10 days ago . i am resending 4 resumes ( in the case of paolo it ' s a copy of his e - mail message ) i have in electronic format . the resume for gappy will be faxed to you . thanks for your help . vince",0 +"Subject: sas online tutorial hi - we have access to the sas online tutorial for the next 30 days . point your browser to and use the username "" enron "" and password "" enron "" to enter . the way this product works is designed for a single user ( it sets a "" cookie "" allowing you to "" resume "" your place in the tutorial when you re - enter . ) since several of us may use it , we ' ll need to work around this , each of us remembering where we were before and recreating any sample data sets , etc necessary for the lesson in progress . clayton ps the module eis / olap will be a part of our installation next month , but is not currently available pps please remember to use your local browser to browse the sas online documentation . invoking a browser on the unix server is inefficient .",0 +"Subject: re : loan recommendation form li , i shall take care of it thursday . please , call me at the end of the day . vince li xiao @ enron 06 / 27 / 2000 11 : 31 am to : vince j kaminski / hou / ect @ ect cc : subject : loan recommendation form hi , vince , i was told by molly that she hasn ' t received the recommendation form from you yet . since i got admission late from the school , now i am short of time of getting i - 20 which needs loan approval , and getting visa status transferred ( from h - 1 to f - 1 ) which requires i - 20 and loan approval and normally takes around 45 days through ins ( immigration naturalization service ) . now , i am trying to push every step to speed up the process in order to catch up the school opening at beginning of sept . i know i just told you this late last week . nevertheless , i am writing to see if you can squeeze some time to finish the recommendation form anytime soon . it will be a big help . thank you very much , vince . have a good day . sincerely , li x 39635",0 +"Subject: daily rates - jackups john : claudio put together a spreadsheet for cheking the change on a composed jackup index against the change on individual categories of jackups and semis . he did not weighted the index because we think we will benefit from a simpler index price calculation by taking the straight average . the results show a good r - square between the general index and individual jackup categories - on the range of 0 . 7 - 0 . 8 . only one category displayed a poor r - square - about 0 . 3 . for semis of 4 tht and 5 th generation , however , we noticed a degradation on the hedge effectiveness - r - squares about 0 . 2 - 0 . 3 . you may verify each regression by changing the choice cell ( ax 2 on analysis ) . claudio is also starting to analyze how gas and crude past moving averages , 12 month swaps on gas / crude , and rigs utilization explains the daily rates . we will forward the results as soon as we finish . please call me or claudio if you have questions . paulo issler",0 +"Subject: thanks for your help ! ! vince , my apologies for writing to you after such a long gap . i wanted to thank you for the book you sent , as well as al the help that is been rendered by krishna towards our efforts here our efforts here are becoming more intense and i will continue to need your group help as we proceed along the way . separately i have not yet forgotten about the training we had spoken about . however , give the intensity of our current effort we may need to hold on to that for some months . in the meantime we will continue to work together . once again i would like to thank you and krishna for all your help and support . thanks and best regards sandeep",0 +"Subject: re : implementation of smothing algorithm for forward forward volatilities calculation winston , i am sending you the documentation on the new methodology for creating ffvols from implied vols . this methodology requires some minimization procedure to fit the given vol curve with a smoothing function . i am sending you the code i wrote that performs minimization with simulated annealing method from numerical recipes . we might need to discuss some details . please , let me know if you have questions . tanya .",0 +"Subject: real options conference programs ( ucla , july 11 - 14 ) please find attached the programs for the two back - two - back conferences on real options at ucla ( you may also download them from www . realoptions . org and www . rogroup . com ) . the two conferences are separate but complementary events . the first conference , co - sponsored with accenture and morgan stanley dean witter , on july 11 - 12 , is a professional conference on real options valuation in the connected economy : high tech , pharma , energy , corporate valuation & strategic / portfolio management . for information and online registration see www . rogroup . com . the second is the 5 th annual international conference on real options : theory meets practice ( the annual industry event where academics and practitioners get together to share the latest developments on theory and applications ) , co - organized with the anderson school at ucla on july 13 - 14 . for information and online registration see www . realoptions . org between the two complementary events , we are pleased to present an extensive array of practitioner and cutting - edge academic presentations , sharing of experiences by corporate executives , and panel discussions by experts from leading organizations and universities . our keynote speaker this year will be eduardo s . schwartz of ucla . interested participants must register for the conference online www . realoptions . org ) and indicate hotel preferences by may 31 or asap . we look forward to seeing you at this exciting event , and would appreciate if you share this with interested colleagues . lenos trigeorgis - 5 2001 . doc - 5 2001 . doc",0 +"Subject: baxter 16 oct . please review the following ticketed itinerary vince , attached is a copy of my agenda for today ' s trip to berkeley . also , my cell phone number is 281 - 793 - 0567 . thanks , ashley - - - - - - - - - - - - - - - - - - - - - - forwarded by ashley baxter / corp / enron on 10 / 16 / 2000 08 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - diane fitzgerald on 10 / 13 / 2000 05 : 36 : 50 pm to : "" ' ashley baxter @ 7136463011 ' "" cc : "" ' ashley . baxter @ enron . com ' "" subject : baxter 16 oct . please review the following ticketed itinerary baxter / ashley eb 3614 etkt receipt enron broadband services date : oct 13 2000 service date from to depart arrive continental airlines 16 oct houston tx san f ca 1155 a 158 p co 1511 y mon g . bush interco san francisco terminal c terminal s snack non stop reservation confirmed 4 : 03 duration aircraft : mcdonnell douglas all md - 80 series seat 09 d no smoking confirmed baxter / ashley ( i continental airlines 17 oct oakland ca houston tx 630 a 1229 p co 1720 y tue international g . bush interco terminal 1 terminal c snack non stop reservation confirmed 3 : 59 duration aircraft : boeing 737 - 500 seat 07 a no smoking confirmed baxter / ashley ( i aisle seat unavailable . req again at ck in . window confirmed your etkt confirmation number is : m x n c v t miscellaneous 16 dec houston tx sat * * thank you for using the tap * * reservation number ( s ) co / mxncvt baxter / ashley soc 083 erl 028 co frequent flyer cofcl 37772 ashley baxter 713 853 - 3589 intl tvlrs : carry sos wallet card w / enronassistance info call sos : in u . s 800 523 - 6586 / intl 215 245 - 4707 ( collect ) this is the passenger receipt for your electronic ticket . please check - in with photo identification and with either ( 1 ) this receipt or ( 2 ) your confirmation number . your etkt confirmation number is : m x n c v t regards , diana fitzgerald ( 713 ) 650 - 8080 ext . 1152 ( 713 ) 860 - 1152 - direct line the travel agency in the park",0 +"Subject: vacation time available here is a list of vacation time that i have at available for the ( research ) weather team . mike roberts - 240 hours jose marquez - 54 hours william smith - 117 hours elena chilkina - 0 hours kevin moore - 53 hours charlie weldon - 20 hours joe hrgovcic - 136 hours please if you feel you are due more hours of vacation time , please inform me whereby , i can get your hours corrected . thanks kevin moore",0 +"Subject: re : consulting arrangement sheridan , i have just checked with rac ( david gorte ) and we have a green light to go ahead with the project . i shall you tomorrow to discuss the details . vince sheridan titman on 01 / 24 / 2001 02 : 45 : 50 pm to : cc : subject : consulting arrangement vince : i just wanted to check with you regarding the consulting arrangement we discussed a couple of weeks ago . perhaps , we should start with just a 1 or 2 day contract where i give some thoughts to the kind of issues that we discussed and come to houston to present my preliminary thoughts and possible avenues for additional work . regards , sheridan sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu",0 +"Subject: re : vacation shrley , no problem . vince shirley crenshaw 03 / 23 / 2001 02 : 02 pm to : vince j kaminski / hou / ect @ ect cc : anita dupont / na / enron @ enron , kevin g moore / hou / ect @ ect subject : vacation vince : i have already requested friday , april 6 th as a vacation day , and if it is ok , i would also like to take friday the 30 th as a vacation day . thanks ! shirley",0 +"Subject: re : kellogg class information on real options jodi , chris can set up a conference call with myself , stinson gibner and zimin lu to discuss the real option applications . my assistant shirley crenshaw , 3 - 5290 , will be glad to help him . vince enron capital management from : jodi coulter 02 / 01 / 2000 11 : 36 am to : vince j kaminski / hou / ect @ ect cc : subject : kellogg class information on real options vince - per my voicemail , the following is the message i received from chris swenson about the kellogg class he is trying to form . please let me know if you would be able to help him . thanks . jodi x 56318 - - - - - - - - - - - - - - - - - - - - - - forwarded by jodi coulter / hou / ect on 02 / 01 / 2000 11 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" christopher p . swenson "" on 01 / 25 / 2000 06 : 42 : 58 pm to : jodi coulter / hou / ect @ ect cc : subject : hello hi jodi , i have been remiss in keeping up with you and letting you know what is going on in my little world here at kellogg . in other matters , life at kellogg has me very busy at the moment . i am taking a full load , including fin decisions and am helping prof . petersen write a new class called advanced valuation , which will be offered in the spring . a big part of the focus of this class is going to be on real options , which is cool stuff . and as poor as my timing is , i would like to ask you a question / favor . for purposes of this class , do you think it would be possible to obtain some of enron ' s thoughts on real options ? i was thinking , for example , that a fuel - switching analysis would be neat to included in the case packet . of course , none of the numbers or names need be real - - only the concepts . well , let me know what you think of that - - who knows , enron might actually like the free exposure . all the best , chris",0 +"Subject: re : ca for henwood engagement stinson , please find attached a revised version of the draft consulting agreement with henwood . fyi , i am attaching both a clean version and one marked toshow changes from the last draft i sent you . please let me know if you have any questions or comments on the agreement or the most recent changes . what is the status of henwood ? do you still want to engage them and what is the timeframe for their work ( the dates in the draft may need to be corrected ) . bruce and lauren : please advise on which enron entity should be the party to this consulting agreement . thanks , bonnie",0 +"Subject: re : enron site / mepr 2 sorry vince one must have got away ! will contact dan shortly . conrad at 08 : 04 am 6 / 5 / 00 - 0500 , you wrote : > > conrad , > > thanks for your message . > > there are 3 papers enron contributed to the last mepr . > > there is also another paper on electricity i contributed to the "" red book "" > on us > power markets , as well as a paper or credit risk management , and a paper > on weather derivatives . all these papers included in other risk books were > written by enron > employees . > > we would like them included as well , if technically possible . > > > i think that offering other energy related books through our site , in > addition to mepr 2 , > is fine , but i would leave the decision to dan diamond , who is responsible > for the project . > > > vince > > > > > > conrad gardner on 06 / 05 / 2000 07 : 08 : 36 am > > to : vince . j . kaminski @ enron . com > cc : > subject : enron site / mepr 2 > > > > date : mon , 05 jun 2000 13 : 02 : 02 > > to : vince kaminski > > from : conrad gardner > > > > dear vince > > > > thanks for the call and email on friday . i will contact masuyuki and > follow > it from there . > > > > regarding the enron site , i think it is absolutely fine to put up the two > enron chapters ( i ' ll provide pdfs ) , and prevent any customer leakages from > your site by the use of "" submit "" buttons . as mentioned , i ' ll offer a 20 % > discount on mepr 2 to customers but would you be interested in some of other > energy titles ? - please let me know . > > > > many thanks > > > > conrad gardner > > > head of book publishing > risk books > haymarket house > 28 - 29 haymarket > london > swly 4 rx > direct tel : + 44 ( 020 ) 7 484 9750 > main tel : + 44 ( 020 ) 7 484 9700 > fax : + 44 ( 020 ) 7 484 9758 > e - mail : conrad @ risk . co . uk > www . riskpublications . com > > > > > > > head of book publishing risk books haymarket house 28 - 29 haymarket london swly 4 rx direct tel : + 44 ( 020 ) 7 484 9750 main tel : + 44 ( 020 ) 7 484 9700 fax : + 44 ( 020 ) 7 484 9758 e - mail : conrad @ risk . co . uk www . riskpublications . com",0 +"Subject: fw : afternoon tea with fea vince : thanks for surfacing . happy new year ! linda december 2000 financial engineering associates , berkeley , ca gentlepeople , as the end of the year rapidly approaches , it seems timely to thank you for your business this year . thank you for helping to make this the best year ever for fea ! and , wed also like to wish you happy holidays and a healthy and prosperous new year . earlier this year , fea initiated  3 virtual coffee break  4 , an emailed newsletter for fea alliance partners . it has proven to be a popular and useful media to share information . this is our first effort at an emailed newsletter to fea clients ,  3 afternoon tea with tracie ) . we hope you will take a few minutes to skim it for pertinent information and then move it to your fea file folder for future reference . * * * announcing fea product updates ! * * * fea has been extraordinarily busy running extensive testing on new releases . the following should be available to all clients , who are current on maintenance , in just a couple weeks . we will send an email notification of the availability of the release , and cds will be shipped . if you prefer , email support @ fea . com to request download instructions . @ energy . 2 . 0 will feature the release of the forward curve builder and the swing ( take or pay ) options valuation module . the forward curve builder , as its name suggests , calibrated the forward price curve for power ( electricity ) and other commodity markets . some additional new features in the 2 . 0 release include a jump diffusion model for european - style options , an option on a strip of options and an option on a strip of spread options . varworks 4 . 0 includes sophisticated stress testing , support for individual equities , and new easier to use templates . eagerly awaited by fea clients , the addition of stress testing capabilities has been a top priority for fea ' s engineering team . fund managers will be happy to hear that individual ( sectorial ) equities are now supported in varworks . 4 . 0 . if you do not own a license for @ energy or varworks , and want to evaluate them , email sales @ fea . com and request a 30 day demo . product demos are free to existing fea clients . curious about a product , but dont have time to install a demo , read the instructions and experiment ? visit www . fea . com / demos . htm and select alternative one . we can now demo fea software on your computer screen , via the internet . * * * list of current versions of fea products now posted on - line ! you may refer to www . fea . com / support . htm for details of the most current fea product releases . * * * fea newswire : fea and its chief scientistmark garman have been awarded a 4 th us patent ! patent 6 , 122 , 623 recognizes the "" watershed method "" as fea ' s second us patent defining cutting - edge methodologies for var . the importance of the recent invention is that it will allow market risk to be more accurately allocated into accounting periods . mark ' sprior patent in the var arena pertained to the calculation of "" marginal var "" or "" component var , "" which allowed risk managers to "" slice and dice , "" or dissect enterprise - wide var into its constituent components . ( see the pressrelease at www . fea . com / pdf / watershed _ pr . pdf ) . * * * first beta site for varworks se * * * www . fea . com / press _ rm . htm look for a press release announcing the first beta site for feas varworks . se ( server edition ) . varworks ses dynamic risk analysis and reporting environment will enable the delivery of customized risk profiles to dozens of exchange participants . ( see the product description at http : / / www . fea . com / p _ varse . htm . ) * * * did you hear ? ? ? ? ? riskmetrics , as of 1 / 15 / 2001 , will be charging for their previously free data sets . only outdated data sets will be available at no charge . feas makevc product allows you to build your own customized data sets utilizing historical time series data that you may already have available to you . you may request a free 30 day demo of makevc from www . fea . com / demos . htm . product demos are free to existing fea clients . * * * plan ahead the next var seminar will be late spring 2001 . see www . fea . com / seminars . htm for information as it becomes available , or browse the october 2000 seminar brochure . you may also contact sales @ fea . com to reserve your space . * * * the fea frequent flyers * * * december / january , madrid , spain , carlos january 15 + calgary and toronto , canada , tracie february 13 - 14 , new york , garp 2001 , laurent and christine february 13 - 15 , germany , e * trade chris and ursula february 19 , london , tracie contact sales @ fea . com to arrange a meeting . the fine print : we are interested in your feedback , and ideas for future topics . please send an email if you do not want to receive future fea newsletters . mailto : elena @ fea . com",0 +"Subject: re : holidays and vacations tanya , no problem . vince tanya tamarchenko 11 / 20 / 2000 02 : 52 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : holidays and vacations shirley , i am planning to take the following days off in december : 12 / 21 , 12 / 22 , 12 / 27 , 12 / 28 . i ' d like to take 12 / 21 as discretionary day , and 3 other days as vacation days . tanya",0 +"Subject: re : a request dr . lu , i would be grateful if i could talk with you some time about the typical terms one sees in swing , take or pay , virtual storage , etc . options . this is related to some research some colleagues and i are doing applying recent innovations in monte carlo valuation of options with early exercise . we would like to illustrate our techniques on some examples which look realistic . when would be convenient for you ? i look forward to talking with you . duane seppi - - on wednesday , march 14 , 2001 , 8 : 44 am - 0600 vince . j . kaminski @ enron . com wrote : > > duane , > > i shall be traveling for the rest of the week but my colleague > dr . zimin lu will call you to talk about different > structures . > > vince > > > > > > ds 64 @ cyrus . andrew . cmu . edu on 03 / 13 / 2001 09 : 54 : 24 am > > to : "" vince j kaminski "" > cc : > subject : re : a request > > > vince , > > sorry that i missed your call yesterday . i have a meeting from 2 - 3 today > ( tuesday ) , but otherwise any time in the afternoon works for me . let me > know what is convenient for you . thanks for your help . > > duane > > * * * * * * * * > duane seppi > > graduate school of industrial administration > carnegie mellon university > pittsburgh pa 15213 - 3890 > > tel . ( 412 ) 268 - 2298 > fax ( 412 ) 268 - 8896 > > email ds 64 + @ andrew . cmu . edu > > > > > * * * * * * * * duane seppi graduate school of industrial administration carnegie mellon university pittsburgh pa 15213 - 3890 tel . ( 412 ) 268 - 2298 fax ( 412 ) 268 - 8896 email ds 64 + @ andrew . cmu . edu",0 +"Subject: organizational announcement : industrial origination , ctg , and ena treasury effective immediately , ray bowen will take over leadership of the industrial origination group responsible for enron north america  , s origination activities in the industrial market including pulp & paper , metals , refining , and petrochemicals . as part of the industrial origination group , jim ajello , will continue to lead the origination effort in the metals , refining , and petrochemical sector . edward ondarza maintains oversight of origination in the pulp and paper sectors . rodney malcolm retains primary responsibility for leading the execution of transactions and delivery of the outsource solutions to industrial customers . when the commercial transactions group was created approximately a year ago , the objective was to create an internal emphasis on the development of transaction execution skills that are necessary to execute complex , structured transactions and to foster better deal quality . we believe that the primary objectives of the ctg have been achieved , and in order to better position the organization for the remainder of 2000 and in response to ray bowen  , s new position , the following changes will be made in the commercial transactions group organization . transaction development : transaction development , which was created to provide focused deal execution capability to the origination groups , will be merged into each respective origination group and report solely to the group leaders . portfolio management : all activities surrounding portfolio investments will report to jeff donahue . jeff will be responsible for ena  , s  & capital book  8 and will have a high level of involvement in existing portfolio investments and will work closely with ena treasury and the various origination groups to assure that new transactions ( a ) incorporate appropriate risk / return characteristics , ( b ) are evaluated in the context of market based pricing signals , and ( c ) incorporate a specific investment plan which includes syndication of the investment , if applicable , and a specific exit strategy . portfolio management includes restructuring / special assets ( randy maffett / dick lydecker ) and capital structuring ( andrea reed ) . steve pruett ( energy capital resources ) , chuck ward ( generation investments ) , don miller ( merchant generation ) , and chris helfrich ( coal and industrial ) will continue to be responsible for day to day asset management for performing investments and will report to their respective origination units with a dual report to jeff . jeff will retain his corporate development and principal investments activities . commodity structuring : commodity structuring including berney aucoin ( power ) and ed mcmichael ( gas ) will report to janet dietrich . janet will retain responsibility for east midstream origination . commodity structuring will continue to work to facilitate and structure the highest priority and highest value transactions across the entire ena organization . technical / oec : the technical group ( wayne mays / bob virgo ) , which provides technical support to industrial and power generation asset development activities , and oec ( lead by mark dobler ) will report directly to the ena office of the chairman . in addition to these changes , joe deffner has been named ena  , s chief financial officer and will head ena treasury . in this role he will be responsible for managing ena  , s balance sheet and the sourcing of capital in the bank and capital markets . joe will report jointly to the ena office of the chairman and to enron corp . global finance .",0 +"Subject: org announcement - enron global markets after having conducted our first of several business reviews , enron global markets - office of the chairman would like to outline the following organizational changes effective immediately . the global risk markets group under jere overdyke illustrates enormous opportunities given the size of those businesses . to better focus on the different commercial functions and to capture market share and value , the group is being realigned . jere will continue to manage global risk markets and build on our insurance capabilities . mark tawney is responsible for our weather business and will now report to the egm office of the chairman . brent price will be joining enron global markets as vice president of operations and chief accounting officer . he will report to the egm office of the chairman , and to sally beck , vice president of global risk management operations . in his role as chief accounting officer , brent will also report to rick causey , executive vice president and chief accounting officer for enron corp . reporting to brent in his new position will be sheila glover , business controller for financial products ; todd hall , business controller for weather ; and scott earnest , business controller for global products and coal . in addition , tom myers will join brent ' s management team as director of accounting . brent and his team are responsible for all accounting , risk reporting and trading operations for all the businesses within egm . cindy skinner will join the enron global markets team with responsibility for human resources . she will also report to david oxley and the hr organization . please join us in congratulating everyone in their assignments .",0 +"Subject: erisk iconference 4 / 11 / 2001 please save this e - mail . it contains important information about your event . thank you for registering for practical considerations in measuring economic capital , scheduled for wednesday , april 11 th , 2001 at 12 noon eastern / 5 p . m . london time . click this link to visit the erisk . com homepage : http : / / www . erisk . com erisk iconference instructions : 1 . dial 1 - 877 - 864 - 3651 ( u . s . ) or + 1 - 973 - 341 - 3037 ( international ) to listen to the audio for this program . audio is available by telephone only . 2 . when prompted , enter the confirmation code 105764 , followed by the "" # "" key . music will play until the conference begins . 3 . join the web - based portion of the program to see slides , participate in polls and ask questions . - open netscape or internet explorer 3 . 0 or higher . - enter the following web address : http : / / www . communicast . com / login 4 . fill out the form on this page and enter the following confirmation number : 105764 . 5 . click the "" communicast now "" button . in a few moments you will be placed in the erisk iconference . communicast system requirements : - communicast requires the ability to run java applets . - netscape or internet explorer browsers 3 . 0 or higher . if this is your first communicast event , you may wish to test your computer . visit http : / / www . communicast . com / login at any time and click the "" test "" button at the bottom of the page . for this conference , you may skip the last three tests relating to streaming audio . you will not need realplayer to participate in this conference . if you require further assistance , contact support @ communicast . com .",0 +"Subject: re : congratulations . congrats to you too ! i ' ll see you in february unless you ' re in london sooner . can ' t wait to start up the dinner club again ! see you soon . beth vince j kaminski 11 / 01 / 2000 00 : 01 to : beth perlman / lon / ect @ ect cc : subject : congratulations . beth , congratulations . well deserved . vince",0 +"Subject: re : fw : luncheon meeting : asap hello mr . kaminski , i am available to meet with you for lunch this week on tuesday ( 2 / 1 ) , wednesday ( 2 / 2 ) . or friday ( 2 / 4 ) . which day would be more convenient for you ? please let me know . i am planning to meet with mr . chris holmes ( introduced by a mutual family friend ) of enron ' s energy services next week . mr . holmes also suggested that i meet with you . looking forward to the meeting . i will call you to follow up . for convenience i am attaching my latest resume . thank you . maruti more 713 - 722 - 7199 - - - - - original message - - - - - from : vince j kaminski to : more date : tuesday , january 25 , 2000 12 : 39 pm subject : re : fw : luncheon meeting : asap hello , i shall be traveling this week . i shall be glad to meet you for lunch next week . please give me a call monday at 713 853 3848 . vince "" more "" on 01 / 25 / 2000 10 : 27 : 09 am to : vince j kaminski / hou / ect @ ect cc : subject : fw : luncheon meeting : asap dear mr . kaminski : just to bring you up to date . i am no longer with american general . i shall , therefore , appreciate an opportunity to meet with you for lunch at the earliest possible time . i can be reached at 713 - 722 - 7199 . thank you . maruti more 713 - 722 - 7199 - - - - - original message - - - - - from : more to : vince j kaminski date : friday , december 17 , 1999 8 : 55 pm subject : re : luncheon meeting thank you for your response . i was very happy to hear from you . i am also taking next week off and will be back to work on december 27 th . please do call me when you get back . would very much appreciate the opportunity to have a quick lunch with you , if possible . hope everything is going well . have wonderful christmas holidays . regards maruti more 713 - 831 - 6209 ( o ) - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski date : friday , december 17 , 1999 3 : 35 pm subject : re : luncheon meeting hello , i shall be taking a few days off around xmas . i shall call you at the end of december when i get back to the office . with best holiday wishes , vince "" more "" on 12 / 01 / 99 09 : 28 : 09 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : luncheon meeting dear mr . kaminski : how are you doing ? i want to find out if we can meet again for a quick lunch . you might know that in maharashtra , india there is now a new chief minister ( ceo of the state government ) . i am proud to say that he and i are from the same town , latur . i would really enjoy talking with you again , at your convenience . i will call you tomorrow to follow up . thank you . sincerely , maruti more - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski ; vkaminski @ aol . com date : thursday , july 01 , 1999 6 : 16 am subject : re : luncheon meeting dear mr . more , let ' s meet at 11 : 45 in the lobby of the enron building . we can walk to one of the restaurants in the downtown area . vince kaminski ( embedded enron capital & trade resources corp . image moved to file : from : "" more "" picl 7002 . pcx ) 06 / 30 / 99 10 : 38 pm to : vince j kaminski / hou / ect cc : subject : luncheon meeting dear mr . kaminski : i am looking forward to our luncheon meeting on this friday , july 2 , 1999 at 11 : 30 am . please let me know where we should meet . thank you for taking time out from your busy schedule . sincerely , maruti more tel . : 713 - 831 - 6209 - attl . htm - more @ home . doc - bio @ homel . doc",0 +"Subject: california power rick & ted , one more thing to watch . california power prices next summer . we see the possibility of higher prices and of spikes ( bad hydro conditions in california , growing demand for power ) . vince",0 +"Subject: re : zakup ksiazki w wnt - "" inzynieria finanasowa "" dziekuje za szybka odpowiedz . czy mozliwa jest platnosc czekiem ? jako alternatywne rozwiazanie prosze podac mi cene w zlotych i moja rodzina w kraju dokona przelewu . prosze o kopie odpowiedzi na adres : vkaminski @ aol . com . dziekuje . w . kaminski "" wydawnictwa naukowo - techniczne "" on 01 / 19 / 2001 10 : 09 : 27 am to : cc : subject : zakup ksiazki w wnt - "" inzynieria finanasowa "" uprzejmie informuje , ze ksiazke wyslemy po wplynieciu na nasze konto odpowiedniej kwoty . kwota ta zawiera wartosc ksiazki ( 13 , 75 $ ) , koszty bankowe ( 5 $ ) oraz koszty pocztowe ( 6 , 5 $ lub 11 $ ) . - przy przesylce droga morska prosze wplacic 15 , 25 $ - przy przesylce lotniczej prosze wplacic 29 , 75 $ nietety , nie mamy mozliwosci technicznych pobrania oplaty karta kredytowa . fakture wysylam poczta . nasze konto : pbk s . a . iii o / warszawa ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 11101024 - 401020003963 nazs adres : wydawnictwa naukowo - techniczne , mazowiecka 2 / 4 , 00 - 048 ? ? ? ? ? ? ? warszawa , polska serdecznie pozdrawiam grazyna piesniewska",0 +"Subject: here ' s a 4 th try ! ! ! - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 02 / 01 / 2001 10 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - richard b jones 01 / 31 / 2001 04 : 39 pm to : vince j kaminski / hou / ect @ ect cc : subject : here ' s a third try ! ! ! vince , while i was at hsb , i designed an insurance or reinsurance financial model that hsb uses for new product development , pricing different reinsurance strategies , computing stochastic earnings forecast , and estimating probabilistic maintenance & repair costs . the code , written in visual basic & ms access belongs to hsb , and i want to replicate it here for our use at enron . i would like to arrange a time to specifically talk to you and perhaps vasant who was briefed on the model , about how we can use your group for the analytical and programming support to get this model re - constructed . i have screen outputs from the code and vasant thought the re - design and construction here at enron is a problem that your group can do . could you let me know when we can setup an hour to discuss ? thanks , rick jones",0 +"Subject: re : mathworks molly , we have a reasonably big room . 2 - 5 people is ok . it ' s ebl 938 . vince molly carnes @ enron communications 09 / 28 / 2000 03 : 10 pm to : vince j kaminski / hou / ect @ ect @ enron cc : subject : re : mathworks i ' ve got in on the calendar for the 18 th at 2 : 00 . what ' s the location ? how many can we bring ? 2 or 3 ? thanks . molly carnes for louis casari vice president , mid office operations enron broadband services 713 - 853 - 4302 , room eb 4492 lou _ casari @ enron . net vince j kaminski @ ect 09 / 28 / 00 10 : 39 am to : lou casari / enron communications @ enron communications @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , lou casari / enron communications @ enron communications subject : re : mathworks molly , i met lou in the building lobby last wednesday and he suggested that he ( or his representatives ) join the mathworks presentation to my group ) . it ' s a good software package for mathematical modeling , but there is a limit to the number of different installations any group can productively use . i shall take a look at some new features they offer and decide whether it ' s worth the effort . vince kaminski lou casari @ enron communications 09 / 20 / 2000 02 : 10 pm sent by : molly carnes @ enron communications to : vince j kaminski / hou / ect @ ect cc : subject : mathworks do you know this person or this company ? they are want to set an appointment with ebs and i believe , are wanting to meet with you , also . any feedback ? thanks . molly carnes for lou casari enron broadband services 713 - 853 - 1467 , room eb 4486 a molly _ carnes @ enron . net - - - - - forwarded by molly carnes / enron communications on 09 / 20 / 00 02 : 09 pm - - - - - scottw @ mathworks . com 09 / 20 / 00 08 : 46 am to : lou casari / enron communications @ enron communications cc : subject : we ' ll be in houston hello mr . casari : myself and our energy trading financial team will be visiting with the r & d group at enron the week of 10 / 16 / 00 . they have several applications can be dramatically improved with our tools . we are very interested to understand the bandwidth trading market , to see if any additional challanges can be overcome with our tools . i would like to understand your challanges of modeling , simulating and deploying applications to control risk . are you available to discuss these items prior to our visit ? i look forward to hearing from you . thanks scott wakefield",0 +"Subject: re : enron case study outstanding , cindy . thank you so much . i will get you some questions after i talk with vince . john at 01 : 44 pm 10 / 31 / 00 - 0600 , you wrote : > > good afternoon john , > > i hope things are well with you . i am writing to update you on the status > of your meetings with andy fastow , ken lay and jeff skilling . i have > arranged the following meeting dates and times with ken lay and jeff > skilling , ( i am still trying to work with andy fastow ' s schedule ) : > > jeff skilling > december 4 th > 2 : 00 - 3 : 00 p . m . > > ken lay > december 4 th > 3 : 30 - 4 : 30 p . m . > > also , i will attempt to schedule the meeting with andy fastow for december > 4 th for convenience - this will also allow us to possibly schedule > additional meetings for the 5 th ( as needed ) . i will let you know as soon > as i ' m successful . > > regards , > > cindy derecskey > university affairs > enron corp . > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: mark lay vince : mark had not received my email so simply assumed that i had a business plan and he would help if he could . i explained that i was at the "" pre "" business plan stage . further , that i had hoped to discuss my search for collaborators to become co - founders . people with vision that might help develop and refine the concept , identify model components , isolate modules for the initial effort and build a business plan suitable for angel investors not vcs . i might need your help in conveying this to him . i have struggled to put on paper a very rough draft of how it might be best describe as to the direction it might go and what might conceptually be possible . please look at this and tell me if i am going too far at this point . i do not want to implant insurmountable obstacle in anyone ' s mind . i hope to hear from you . al arfsten 713 965 2158 - lifetrak concept 012501 . doc",0 +"Subject: re : financial engineering associates karla , thanks . here are helyette ' s coordinates : helyette geman universite de paris - dauphine place du marechal de lattre - de - tassigny 75775 paris cedex 16 phone : 33 1 44 054 943 ( o ) 33 1 46 040 110 ( h ) ( f ) fax : 33 1 44 054 937 geman @ cidmail . services . dauphine . fr helyette . geman @ dauphine . fr vince from : karla feldman 03 / 06 / 2000 01 : 50 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : financial engineering associates vince and stinson , i checked the file and the maintenance that automatically renews on 4 / 1 / 2000 is for the following products : all 4 of your @ global licenses spav swing i will go ahead and contact fea and see about getting the renewal invoice for these . i ' ll send it to shirley for payment once i have it . the products : @ interest , seapc , and seapp have not been on maintenance for a while . fea told us a couple of years ago i believe that they do not have maintenance available for these products any longer . so , you don ' t need to worry about cancelling @ interest . also , just fyi - your @ energy . 1 and @ energy . 2 licenses have maintenance through 10 / 20 / 2000 . if you have any questions , please let me know . otherwise , i will proceed with contacting fea about you renewal of the @ global , spav , and swing licenses . thanks , karla",0 +"Subject: re : follow - up on siam workshop vince , thanks for your quick response . if you feel it is appropriate , i would like to know who you sent my resume to , so that i will know that they have already been "" covered "" . peter - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , april 30 , 2001 2 : 17 pm to : percell @ swbell . net subject : re : follow - up on siam workshop peter , i forwarded your resume with my recommendation to two senior executives in our transportation and storage group . vince",0 +"Subject: congratulations congratulations on your official designation as a poohbah ! just goes to show you , smart guys can finish first also . mark",0 +"Subject: re : prospective 6 / 22 houston visit ehud , we shall make reservations for dinner at vincent ' s on west dallas ( 2701 west dallas , 713 528 4313 ) . we shall make reservations fro 7 : 00 p . m . you can call me on my cell phone ( 713 410 5396 ) if there is a problem . we shall have about 25 - 30 people at the meeting on thu at 11 : 30 . see you tomorrow . vince "" ehud i . ronn "" on 06 / 19 / 2000 02 : 32 : 36 pm to : vince . j . kaminski @ enron . com cc : shirley . crenshaw @ enron . com subject : re : prospective 6 / 22 houston visit vince , greetings , and thanks for your 6 / 12 e - mail . > we can meet for dinner on the 21 st . then you can visit with us on the 22 nd > in the morning and have individual meetings . at 11 : 30 you can meet the > entire > research group at our weekly lunch meeting . we can continue > individual meetings in the afternoon . i thank you once again for your invitation and look forward to my visit this wed . my current schedule calls for a hobby arrival on wed . at 6 : 23 p . m . , in time for the dinner scheduled for that evening . ( i can take a cab directly to the restaurant if you ' re scheduling a circa 6 : 45 - 7 p . m . dinner . ) further , i have tentatively set up the thur . return flight to austin at 3 : 38 p . m . , and that can be modified as desired . > please , make a reservation at hyatt regency downtown or double tree > downtown ( there are several hotels with the same names ) . when i made the room reservation last mon . 6 / 12 , it turned out that these hotels showed no vacancy ( is there a conference in town ? ) , so the nearest i could obtain is the hilton houston plaza ( 6633 travis ) some 3 . 5 miles away from enron . ( if it is important that i stay at the closer hotels , shirley might ascertain whether enron ' s travel agent can obtain a room there . ) i take this opportunity to request of shirley that , subject to your approval , an overhead projector , screen and small lectern be made available for the room where the 11 : 30 luncheon meeting takes place . also , since i would like each participant to have his / her own copy , i would ask her to advise me as to the number of participants expected to attend , or alternatively , shirley could make copies of the presentation handout when i bring the "" master "" copy in thur . morn . i look forward to seeing you wed . and thur . best regards , ehud ehud i . ronn department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : sharad update hi kate , firstly it was very useful to hold the informal discussion with him . sharad seemed hesitant due to the offer not being what he expected . he asked me some questions about the "" bonus culture "" at enron and suggested that it was not as good as at investment banks that he is interviewing with . i sold him on the value he can extract from the excellence within the research group and the ability to join a growing organisation at a critical point in , but he still seemed reticent saying that he "" needs time "" which i understood to mean that he was looking for a better offer elsewhere . he is a great candidate and it would be a real shame to lose him , given the difficulty of getting good candidates . i discussed this with vince and given how much we need him in research in london and vince agreed to discuss the possibility of an element of guarantee or sign on to help him make the right decision . i think vince will call you or dale to discuss this . regards , anjam tel : 713 345 9991 [ p . s . vince , kate bruges is on extension 37354 , dale is on 36726 ] kate bruges 13 / 07 / 2000 11 : 02 to : anjam ahmad / lon / ect @ ect cc : subject : sharad hi anjam how did your conversation go yesterday ? regards kate",0 +"Subject: re : weather and energy price data mulong wang on 04 / 24 / 2001 10 : 58 : 43 am to : cc : subject : re : weather and energy price data hello , elena : thank you very much for your data . i sent an email to ft but had no response so far . as soon as i got their permission i will let you know . have a great day ! mulong on thu , 19 apr 2001 elena . chilkina @ enron . com wrote : > > mulong , > > please find attached a file with henry hub natural gas prices . the data > starts from 1995 and given on the daily basis , please let us know when we > can proceed with electricity prices . > > sincerely , > elena chilkina > > ( see attached file : henryhub . xls ) > > > > > > > vince j kaminski @ ect > 04 / 16 / 2001 08 : 19 am > > to : mulong wang @ enron > cc : vince j kaminski / hou / ect @ ect , elena chilkina / corp / enron @ enron , > macminnr @ uts . cc . utexas . edu > > subject : re : weather and energy price data ( document link : elena > chilkina ) > > mulong , > > we shall send you natural gas henry hub prices right away . > please look at the last winter and the winter of > 95 / 96 . > > we shall prepare for you the electricity price > information ( cinergy , cobb and palo verde ) but > you have to approach ft ( the publishers of > megawatts daily , a newsletter that produces the price > index we recommend using ) and request the permision > to use the data . we are not allowed to distribute > this information . > > please , explain that this is for academic research and that > we can produce the time series for you , > conditional on the permission from the publishers > of megawatts daily . > > vince kaminski > > > > mulong wang on 04 / 15 / 2001 03 : 43 : 26 am > > to : vkamins @ ect . enron . com > cc : richard macminn > subject : weather and energy price data > > > dear dr . kaminski : > > i am a phd candidate under the supervision of drs . richard macminn and > patrick brockett . i am now working on my dissertation which is focused on > the weather derivatives and credit derivatives . > > could you kindly please offer me some real weather data information about > the price peak or plummet because of the weather conditions ? > > the past winter of 2000 was very cold nationwide , and there may be a > significant price jump for natural gas or electricity . could you > please offer me some energy price data during that time period ? > > your kind assistance will be highly appreciated and have a great day ! > > mulong > > > > > > > > > > >",0 +"Subject: stephen bennett norma , i fully concur . what can we do about it ? can we change the job classification retroactively ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 12 / 2000 02 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : mike a roberts 12 / 09 / 2000 10 : 33 am to : vince j kaminski / hou / ect @ ect cc : subject : stephen bennett stephen bennett , professional meteorologist , was hired into the research group in september of this year as a specialist based on salary alignment criteria . in retrospect , and upon review , he should have been hired on as a senior specialist . after coming on board . it rapidly became apparent that stephen was clearly an "" under hire . "" he is well - deserving of an immediate promotion ( really more of a correction ) and pay raise , to be made retroactive at least to the lst of this month . this memo outlines the circumstances surrounding this hiring error and provides detailed justifications for this retroactive "" promotion . "" at the time of the interview process , there was no position in enron designated as "" professional meteorologist . "" in fact , the most recent similar hire prior to that date was jose marquez , also a professional meteorologist , who was hired in , based on salary alignment criteria , as a manager . while functionally , both these men are meteorologists , enron has no such job classification . compounded by the urgency in bringing on additional professional expertise in short time order , it was difficult to peg the proper enron classification appropriate for this new position . this original uncertainty and resulting misplacement of stephen into the specialist category , rather than the senior specialist category , needs to be corrected at this time . although a "" new - hire "" to enron , stephen bennett has extensive work experience . he has worked as a professional meteorologist at both the weather services corporation in boston and at the weather channel in atlanta . he came to enron well - referenced by both those organizations , needing no further training and only minimal supervision . once aboard here in houston , stephen immediately demonstrated the core enron values with our unique sense of urgency . after only a week , he assumed responsibilities normally reserved for someone actually at even a manager level - he was assigned and fully took over the critical afternoon weather briefings to the gas traders . this includes analysis and report preparation as well as presentation . also in the presentation arena , he now regularly briefs various desks in the morning and throughout the day . stephen is a master of communication and particularly adept at conveying what through other messengers might otherwise seem confusing or ambiguous . stephen has also demonstrated an unusually high level of self - initiative . he designed , implemented , and now maintains several sub - sites on the research web page which he tailored to various customers - in specific : the weather derivatives team , the agricultural team , and most recently , the crude and liquids team . i have recently assigned stephen to spearhead our conversion and major upgrade of this web page . these above described accomplishments are above and beyond stephen  , s regular duties which include starting work at 5 am daily , reliably and without fail , to assemble and prepare our trader  , s weather report . recently , with the advent of extended hours for both nymex and enrononline , stephen voluntarily on his own accord , assists in our new sunday weather support effort . as his supervisor , fully cognizant of his already standard 50 + hour work week , i do not solicit , but readily accept , this above and beyond expectations assistance . in review , the circumstance which resulted in this under hire condition was enron  , s immediate need for a non - standard , fairly unique professional - a meteorologist , coupled with stephen  , s desire to work for our company in spite of the absence of a hierarchy which included the exact entitled professional title reflecting his chosen career path . . once hired , stephen has clearly demonstrated through contribution and performance that he is well - deserving of this immediate and retroactive promotion .",0 +"Subject: fw : enron recruitment vince : i ' m sure that you are already aware of this , but i wanted to forward it to you since this didn ' t come up in our meeting the other morning . . . . molly - - - - - original message - - - - - from : koepke , gwyn sent : tuesday , april 10 , 2001 1 : 20 pm to : rtlambert @ mail . jhuwash . jhu . edu cc : molly magee / hou / ect @ enron subject : enron recruitment dear ron , my boss , enron ' s chief international economist , is interested in talking with sais grads who might want to come to houston and do economics work . same drill as last time , looking for someone whose done the quant track but with excellent writing skills . i think i sent you a job description a few months back . can you help identify some candidates , and send their resumes our way ? molly magee is our recruiting expert and she can help setup the interviews with maureen . maureen is still in london on secondment but is available to interview people of the phone . thanks for your help . gwyn",0 +"Subject: re : cairn gas purchase bid vince , i ' m following up on our conversation late last week and i ' m interested to see what your group can advise , per doug leach ' s recommendation . as you can see he is raising a major red flag in regards to our non - binding offer to cairn . since , it was late the other night i didn ' t touch base with sandeep kohli , but bobby and i are probably the most knowledgeable in regards to the indian gas market . please let me know what information you may need from us to provide some guidance . regards , doug - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on 08 / 15 / 2000 07 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bobby farris 08 / 14 / 2000 10 : 19 pm to : douglas s parsons / enron _ development @ enron _ development cc : subject : re : cairn gas purchase bid there is no harm in seeing what kaminski ' s group will advise . do you have any problem in contacting them ? bobby doug leach @ ect 08 / 14 / 2000 07 : 45 am to : douglas s parsons / enron _ development @ enron _ development cc : marc de la roche / hou / ect @ ect , bobby subject : re : cairn gas purchase bid i strongly disagree with the pricing and structure of your non - binding offer to cairn . this reminds me of the debacle in brazil . you should have contacted vince kaminski ' s research group as we talked about before an offer was made . this is a bad deal . douglas s parsons @ enron _ development 08 / 12 / 2000 01 : 51 am to : doug leach @ ect , marc de la roche @ ect cc : subject : cairn gas purchase bid doug & marc , fyi , please let me know if you think we ' re totally off base . i appreciate your help . regards , doug - - - - - - - - - - - - - - - - - - - - - - forwarded by douglas s parsons / enron _ development on 08 / 12 / 2000 01 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - douglas s parsons 08 / 11 / 2000 06 : 24 am to : bobby farris / enron _ development @ enron _ development cc : f b virani / enron _ development @ enron _ development , ujjwal dey / enron _ development @ enron _ development , nilesh subject : cairn gas purchase bid bobby , after meeting with cairn today in delhi , my perception is that our offer was received well . they were more open and relaxed then they were on wed . morning and made several encouraging comments about our price range , ( once we talked through the price movements ) , and the seriousness of our gas related activities on the west coast of india , in light of the ioc agreement . i think the overall package is attractive to them and no serious objections were raised . we did talk to some extent about the guarantees , but we didn ' t get too far and they ' re willing to accept at this point that what ' s acceptable to the lng suppliers , should be suitable for their needs . however , they would like to understand the corporate structure and assets of enron energy marketing a little better and i told them i would get back to them on that point . david and ajay were up in hazira yesterday looking at some property for their gas treatment facility , which apparently is across the road from pipeline access . while there they went and looked at shell ' s proposed lng site after walking the last 1 km , inaccessible to their 4 wd vehicle and not surprisingly found a beach . in summary , here is what we offered on a non - binding basis : six year production plateau 85 % top $ 3 . 67 / mmbtu net , at a base of $ 18 / bbl brent , with point of sale at the tail - end of the gas processing plant floor & cap of $ 15 . 50 - $ 27 . 00 / bbl price movement : + / - $ 1 . 00 / bbl from the $ 18 / bbl base price ( on a 3 mo . rolling average ) equals + / - $ 0 . 145 / mmbtu fixed on a quarterly basis guarantees : same protection we ' re providing the lng suppliers under the trust retention account i appreciate everyone ' s help in submitting this offer . thanks , doug",0 +"Subject: offer to rakish ( sp ? ) vince , norma called and said that rakish had requested stock options instead of a signing bonus . she suggested giving $ 30 k worth of options which would vest over a 3 year period , and i told her that i am sure this would be fine with you . it should cost us less than the offered cash bonus of $ 20 k . - - stinson",0 +"Subject: re : saturday jana , saturday looks good . i shall be involved in job interviews at enron all saturday and should be done by 5 p . m . we can go the angelica movie center . i shall check the program tonight and call you tomorrow to review the options . vince jlpnymex @ aol . com on 06 / 01 / 2000 10 : 56 : 38 am to : vkamins @ enron . com cc : subject : saturday vince , how are you ? are we still on for saturday ? let me know what movie looks good . we saw "" mi 2 "" and really liked it . we also saw "" small time crooks "" and it was slow . jana",0 +"Subject: request submitted : access request for stewart . range @ enron . com stinson , he is looking for blanket approach to our disk , both read and write . is it legitimate ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 20 / 2000 03 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - arsystem @ mailman . enron . com on 11 / 20 / 2000 02 : 37 : 25 pm to : vince . j . kaminski @ enron . com cc : subject : request submitted : access request for stewart . range @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000007876 approver : stinson . gibner @ enron . com request create date : 11 / 20 / 00 2 : 36 : 29 pm requested for : stewart . range @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: more hedge effectiveness testing vince , have you seen the latest version of our article ? in a nutshell , it establishes both what ' s right and what ' s wrong with r - squared / regression . essentially , r - squared is fine provided that the amount of the derivative optimal , but otherwise it makes little sense . please let me know what you think about this . regards , andy andrew kalotay associates , inc . ( 212 ) 482 - 0900 andy @ kalotay . com visit our web - site http : / / www . kalotay . com - fasl 33 article . pdf",0 +"Subject: vacation day feb . 16 shirley , please put me down for a vacation day of feb . 16 . thanks , stinson",0 +"Subject: california power 1 / 19 / 00 1 . legislation passes - short - term measures , very long - term measures as we said yesterday , sb - 7 x passed the california state senate easily . the bill gives the state the immediate authority to purchase power via the department of water and resources until february 2 nd . the department will have $ 400 million available to finance power purchases , but there expectations that these costs could easily rise to $ 1 billion by next week . ab - 1 x has evolved into a longer - term solution and in its current form , would authorize the department of water and resources to enter into long - term contracts ( as opposed to the 15 day contracts in sb - 7 x ) to buy power at a price cap of 5 . 5 cents per kw / h . this legislation is not expected to pass today and will likely be changed considerably during the upcoming two week period covered by sb - 7 x , when negotiations between generators , the utilities , and the state are likely to resume . a second piece of legislation under - - sb 6 x - - has created uncertainty in the markets . this legislation will create a california public power authority with bond issuance authority . the uncertainty concerns whether the new authority will address the problem of the $ 12 billion in outstanding debt owed by the utilities . the current text of the legislation focuses only on longer term measures such as expanding generation capacity and improving efficiency . yet the legislation also says "" the authority may issue bonds , exercise power of eminent domain , and enter into joint power agreements and buy , own , and sell land and facilities necessary for the financing of a project . "" the general nature of this language leaves open the possibility of either issuing bonds to finance past debts , or using eminent domain or the bond authority to finance the utilities as they enter into a ch . 11 proceeding . 2 . default update 3 . bush as we reported on wednesday , the bush administration continues to demonstrate little interest in getting involved",0 +"Subject: re : joint probabilities bob - thanks for your help on this - it is exactly what we were looking for . i also wanted to let you know that i will be revising some of these numbers and asking you to rerun the probability table . i hope that this is not a problem . thanks again bob lee @ enron 08 / 31 / 00 11 : 00 am to : michael anderson / hou / azurix @ azurix cc : zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : re : joint probabilities the attached spreadsheet has been updated to include probabilities for exceeding stated stock prices in each year . these numbers represent the probability for all combinations of rab ratio and exchange rate . for example , 2003 shows a stock value of 7 . 38 for a rab = 1 . 1 and fx = 1 . 5 . we previously showed the prob of exceeding a stock price of 7 . 38 , and rab > 1 . 1 , fx > 1 . 5 as 14 % . the probability of exceeding 7 . 38 for all possible values of rab and fx is 35 % ( interpolating between 40 % and 27 % in the price table ) . bob",0 +"Subject: agenda for mission possible meeting our agenda for the october 16 meeting starting at 10 : 00 a . m . has been attached for your review along with david ' s draft . as you will see , there is a great deal to cover in a very limited amount of time . cheers , tana / daniel",0 +"Subject: followup patricia , i have forwarded your resume along with an introductory note to kerry cooper , don fraser , and malcom richards of the a & m finance department . please give them a phone call and tell them that i suggested you call . they are all very nice folks and would be happy to help you i am sure . good luck , john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : tom costantino i ' ll set him up on an interview schedule . thanks . jeff vince j kaminski 01 / 29 / 2001 04 : 01 pm to : jeffrey a shankman / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : tom costantino jeff , it seems that nymex will not make a decision any time soon or they rejected tom . i think the latter is the case . tom is looking for a trading or origination job with enron . i think that we can use his expertise here . vince from : jeffrey a shankman on 01 / 29 / 2001 03 : 50 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : tom costantino i thought he was in the running for the president position , after pat died . he phoned me today - - did he indicate to you in what he is interested ? jeff vince j kaminski 01 / 29 / 2001 02 : 12 pm to : jeffrey a shankman / hou / ect @ ect , greg whalley / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , john j lavorato / corp / enron subject : tom costantino jeff , greg and john , our old friend tom costantino is interested in coming back to enron . it seems that his move to nymex either will not happen or will not happen for some time . you can contact him at home : phone : ( 713 ) 860 8687 ( h ) vince",0 +"Subject: re : interviews vince , no problem , i know hr can slow the process down . marshall brown vice president robert walters associates phone # : 212 - 704 - 0596 fax # : 212 - 704 - 4312 marshall . brown @ robertwalters . com www . robertwalters . com > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : friday , april 06 , 2001 5 : 50 pm > to : marshall . brown @ robertwalters . com > cc : vince . j . kaminski @ enron . com > subject : re : interviews > > > marshall , > > sorry for a delay in responding to you . > my hr people were asked to get in touch with you re > the candidates . > > vince > > > > > > marshall brown on 03 / 27 / 2001 02 : 36 : 12 > pm > > to : "" ' vince kaminski ' "" > cc : > subject : interviews > > > vince , > i had two candidates speak with zamin lu on 3 / 14 / 01 and 3 / 16 / 01 . > ( renshi zhang and bill koures respectively ) . i know you were in london > last > week . if you could please give me some feedback ( either positive or > negative ) as soon as possible , i would appreciate it . > regards , > > marshall brown > vice president > robert walters associates > phone : 212 - 704 - 0596 > fax : 212 - 704 - 4312 > marshall . brown @ robertwalters . com > > > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > caution : electronic mail sent through the internet is not secure and could > be intercepted by a third party . > > this email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed . if you have received this email in error please notify > the system manager . > > this footnote also confirms that this email message has been swept by > mimesweeper for the presence of computer viruses . > > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > > >",0 +"Subject: real options 2000 ? please find enclosed the complete conference agenda for real options 2000 : capitializing on uncertainty and volatility in the new millennium , scheduled in chicago , il on september 25 - 26 , 2000 ( interactive workshops available the 24 th , 26 th ( evening ) & 27 th ) . please review this information and feel free to forward to any colleagues or associates that would have an interest in this topic with my contact information . if you have questions , or wish to register yourself or any colleagues , ( three or more receive a discount ) , do not hesitate to call me directly @ 212 . 885 . 2695 . otherwise , i will be in contact in a couple of days to follow - up . best regards , neda zoko - real options sept . pdf",0 +"Subject: one page background and position statement guys , attached are the "" one - page "" background / position statements that i have received to date ( with the exception of mike korpi ' s which i left at home ) . if you haven ' t provided me with this material please do so asap and if you did please give my any edits you might like to make to the attached pages . thanks john p . s . its rainey and 60 ' s this week but we ' ve put in an order for 70 ' s and sunshine for next week ' s conference . - bennett _ stewart . doc - david palumbo current bio . doc - g _ ferrell . doc - jmartinbiosketch . doc - m _ froehls . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: bonds the difference is $ 4 , 391 . you can send more if you would like to add to the tax - free money fund . thank you keith hazlewood edward jones p . o . box 9479 the woodlands , tx 77387",0 +"Subject: correction : interim report to gary hickerson for ag trading apologies . please note that i pasted the wrong graph in the previous version i sent . this is the correct version . thanks , kate - - - - - - - - - - - - - - - - - - - - - - forwarded by kate lucas / hou / ect on 12 / 22 / 2000 02 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kate lucas 12 / 22 / 2000 02 : 27 pm to : vince j kaminski / hou / ect @ ect cc : vasant shanbhogue / hou / ect @ ect , nelson neale / na / enron @ enron , mauricio mora / na / enron @ enron subject : interim report to gary hickerson for ag trading vince , please find attached the interim report on agricultural commodity trading for gary hickerson . your comments are welcome as we would like to send this to gary as soon as possible . regards , kate ext 3 - 9401",0 +"Subject: re : the garp 2001 convention andreas : here it is : vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com vince "" andreas simou "" on 09 / 15 / 2000 09 : 11 : 00 am to : cc : subject : the garp 2001 convention dear garp speak ? i am writing to request some information regarding the garp 2001 convention . ? can you please furnish me with your full postal address so that i can send you a copy of the garp brochure in the near future . ? i look forward to your response in due course . ? kind regards ? andreas ? _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900",0 +"Subject: re : address shirley , they are from the uk , arthur andersen . i could meet with them on monday . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 31 / 2000 02 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - allan . roberts @ uk . arthurandersen . com on 08 / 31 / 2000 12 : 08 : 25 pm to : vince . j . kaminski @ enron . com cc : subject : re : address i trust things are well in houston . the reason for contacting you is to inquire as to your schedule during the week commencing monday 18 th september . i and several of my colleagues would very much like to meet up with you , however , we are tied up at a large conference between tuesday through to friday of that week . is there any chance in meeting with you on monday 18 th ? if so , i will brief you more fully on our people and will contact you to discuss an agenda . regards , allan * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: gene humphrey / mark palmer vince : do you have email addresses for gene and mark palmer ? i look forward to seeing you next week . regards ,",0 +"Subject: re : your guest for financial mathematics amy , thanks . steve will contact you directly to give you all the details . vince "" amy lamonsoff "" on 06 / 22 / 2000 05 : 32 : 49 am to : cc : subject : your guest for financial mathematics hello - i hope you are well today . i understand that you would like to bring steve leppard as your guest for financial mathematics . could you please provide me with his complete contact details and which training course he will be attending . ? ? many thanks - amy ? ps - hope you enjoyed risk 2000 in boston and it was nice to see you again .",0 +"Subject: re : fw : fw : get together this coming tuesday ? kim , i talked to dale early this morning and suggested that we meet during his next trip to houston when we decide on timing of our project . vince from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 08 : 41 am to : vince j kaminski / hou / ect @ ect , eric gadd / et & s / enron @ enron cc : subject : fw : fw : get together this coming tuesday ? vince , if dale comes in to see you , it looks like eric might be available to meet with you as well . it would be a good opportunity for eric to meet dale and get a little more information on his model . eric ' s phone number is x 54713 . thanks , kim . - - - - - original message - - - - - from : gadd , eric sent : monday , april 30 , 2001 8 : 12 pm to : watson , kimberly subject : re : fw : get together this coming tuesday ? works for me . give me a call at 9 : 30 . from : kimberly watson / enron @ enronxgate on 04 / 30 / 2001 05 : 09 pm to : eric gadd / et kaminski , vince subject : re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: enron recruiting / mscf speaker series vince , pierre has informed me that ( if you can so co - ordinate with alison bailey ) you would like to move the recruiting event on campus for comp finance to nov 3 in order to co - ordinate with pierre ' s invitation to speak in the mscf speaker series the same day . i contacted our recruiting center about availability on that date and have forwarded below his response . let me know how else i can help and , again , thanks for your kind words about the program and you obvious interest in meeting with us . rick richard l . bryant director , computational finance program carnegie mellon university graduate school of industrial administration pittsburgh , pa 15213 phone / fax ( 412 ) 268 - 4592 / ( 412 ) 268 - 6837 http : / / fastweb . gsia . cmu . edu / mscf - - - - - original message - - - - - from : "" ken keeley "" to : "" rick bryant "" cc : "" sally e gould "" sent : thursday , august 03 , 2000 1 : 32 pm subject : re : fw : mscf speaker series enron currently has 8 interview rooms scheduled on december 11 , 2000 . . . as we have 10 interview rooms available to us and as on 11 / 3 we currently have nine rooms booked , if enron wants to move all 8 schedules to 11 / 3 , we probably will not be able to host them on - campus unless [ the firm currently holding the rooms ] moves off ( and there is a possibility of that - this is like a game of dominos ) . however , enron could interview off campus , but that is not as convenient for the students and it increases the cost for the employer . if enron wants to move only one or two schedules to 11 / 3 for just comp finance , we would find a way to accomodate them . our recruiting coordinator , sally gould , will do everything she can to make this work for enron . please suggest that enron re - contact her as soon as they know what their preferences are . alison knows how to reach her . > ken keeley , ph . d . > director , career opportunities center > graduate school of industrial administration > carnegie mellon university > tel : 412 - 268 - 3092 > fax : 412 - 268 - 4146 >",0 +"Subject: re : livelink test for research moyez lallani has agreed to give a presentation on livelink , the application which will replace the research projects tracking database at next thursday ' s group meeting . let me know if there is any problem with this . thanks , stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 02 / 2001 07 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : moyez lallani / enron @ enronxgate on 03 / 02 / 2001 07 : 32 am to : stinson gibner / hou / ect @ ect cc : vasant shanbhogue / hou / ect @ ect subject : re : livelink test for research room 30 cl on thursday 3 / 8 / 2001 at 11 : 30 . i have it recorded in my calendar . i  , ll bring a laptop . please let me know if there is a change of plans . thanks . moyez lallani enron networks 713 - 345 - 3683 moyez . lallani @ enron . com - - - - - original message - - - - - from : gibner , stinson sent : friday , march 02 , 2001 7 : 07 am to : lallani , moyez cc : shanbhogue , vasant subject : re : livelink test for research moyez , thanks , i will try and collect the information today . vasant and i were thinking that it would make sense to let people try the application under the test environment for a few weeks . then we can incorporate any additional suggestions and move to production around the first week in april . our meeting room does have a screen and network connection , and we can profide an lcd projector as well . how about thursday of next week ? thanks , stinson from : moyez lallani / enron @ enronxgate on 03 / 01 / 2001 04 : 35 pm to : stinson gibner / hou / ect @ ect cc : subject : re : liveline test for research stinson , sorry to have to do this to you but i need some additional information in order to add these users to the research projects group . please use the attached template to capture the information needed and forward to me at your convenience . also , the group has only been set up in the test environment . do you want to add the users to the test environment or are you ready to migrate to production ? as far as the demo is concerned , i  , ll be happy to accommodate your group . how many people do you expect at the demo and does the room have a display screen and network connection ? let me know which thursday you would like me to conduct the demo and i  , ll be there . > moyez lallani enron networks 713 - 345 - 3683 moyez . lallani @ enron . com - - - - - original message - - - - - from : gibner , stinson sent : thursday , march 01 , 2001 4 : 24 pm to : lallani , moyez subject : liveline test for research moyez , can you add access to the following users for the livelink research projects database ? also , would you be available to give a short demonstration and tutorial on how to use livelink for our group ? we hold a lunch meeting each thursday from 11 : 30 - 1 : 00 in 30 cl at which there is usually a short presentation on a topic of interest . i think it would be very useful for the group to have an overview of how to use the tool before everyone jumps into it . the presentation can be quite informal . let me know if you would be available in the next couple of weeks . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 01 / 2001 04 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - s @ _ -  g _ , x ?  ~ o ? ' ] s ? _ _ _ _ s ?   _ ? * ? ? ? j ? ?  _ "" ? zn _ ? ? _ y _ 7 d ? [ t ? ? _ yn ? [ . _ _ _ "" ? * ? ? _ b ? ; _ _ _ y _ ?  _ , ? _ ?",0 +"Subject: re : workshop helyette , i shall be glad to join you . vince gemanix @ aol . com on 02 / 12 / 2000 11 : 27 : 56 am to : vkamins @ enron . com cc : subject : workshop dear vince , i would be delighted if you agreed to share with me a one - day workshop before a major icbi conference in berlin , on june 19 . the topics would be similar ; we may add real options . could you answer me before tuesday ? kind regards helyette",0 +"Subject: weather person for london egm we need to set a further round of inteviews for tony hamilton . can everyone let gloria solis know their availability over the next 2 weeks . below are the results from our initial interviews and the candidate ' s resume thanks jen - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 12 / 15 / 2000 10 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - - tony hamilton on 12 / 15 / 2000 02 : 11 : 58 am please respond to tony hamilton to : mike . a . roberts @ enron . com cc : subject : meteorologist / forecaster dear mike i would like to apply for the above position as advertised in "" earthworks "" and enclose my full cv ( in word 97 / 00 format ) in support . i am currently a research fellow with ucl conducting research , and building forecasting models for the statistical prediction of north atlantic sea surface temperatures and other climatic parameters at long leads ( 1 - 12 months ahead of forecast period ) . i have recently applied this model to the north sea in order to aid long - lead forecasts of fish stocks ( see sap - symposium , 4 - 6 december , bergen , norway ) , and have recently been applying similar models to the north atlantic oscillation , an atmospheric phenomena which is strongly correlated with winter climate over uk / norway and nw europe , particularly temperatures , rainfall and windspeeds ( see enclosed poster which was presented recently at an international conference on the nao in vigo , spain ) as you will see from my cv , i have 2 + years experience consulting in several areas of geoscience to the oil , gas and minerals industries and have good programming skills , both on unix machines and on pcs . i am particularly keen to apply my skills in the commercial sector and initiate a permanent career path . i look forward to the opportunity of hopefully discussing my skills further with you in the near future . yours sincerely tony hamilton * dr . tony hamilton * * research fellow * * benfield greig hazard research centre * * department of space and climate physics * * university college london * * holmbury st mary * * dorking * * surrey rh 5 6 nt * * * * e - mail : th @ mssl . ucl . ac . uk * * telephone : + 44 ( 0 ) 1483 560107 * * fax : + 44 ( 0 ) 1483 278312 * * web - site : http : / / forecast . mssl . ucl . ac . uk / * - th _ cv . doc - nao _ posterv 2 . gif - - - - - - - - - - - - - - - - - - - - - - forwarded by jennifer fraser / hou / ect on 08 / 01 / 2001 13 : 11 - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jennifer fraser 21 / 12 / 2000 07 : 32 to : jeffrey a shankman / hou / ect @ ect , chris mahoney / lon / ect @ ect , mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : stewart peter / lon / ect @ ect , niamh clarke / lon / ect @ ect subject : weather person for london egm folks : we interviewed three candidates . one of the three ( tony hamilton ) seems to be a very good fit within the enron culture and values . recommended next steps vince , mike and jeff interview tony via video conference or avistar tony hamilton key strengths quick thinker good teams skills driven - will be able to get the project off the ground quickly has a commercial attitude sees "" the big picture "" tony hamilton is available for follow up interviews the first week of january . thanks jen",0 +"Subject: wharton program for business journalists hi greg ! here is the information regarding the dec 13 th event at wharton . wharton is beside itself with excitement at your acceptance , and communicated that with jeff skilling at his visit there this past thursday . they ' re also very interested in discussing their webi program with you and would like to arrange to do that the day of your evening presentation , or perhaps the following day , whichever suits your schedule . this was also discussed with jeff skilling - - he is clearly interested in the program , but will be especially looking to your input , along with that of vince kaminski , jeff shankman and me , in determining enron ' s decision to participate . as i mentioned previously , vince , jeff and i think enron ' s involcvement with webi holds very positive potential . financially , it involves a contribution of $ 250 , 000 for 4 years . please see the request for your "" bio "" and desired inclusion of program materials , as well as the contact at wharton , toward the end of the message below . let me know by email or voice mail ( 3 - 6117 ) how university affairs can further these efforts . thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 11 / 04 / 2000 10 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" baltes , michael "" on 11 / 02 / 2000 12 : 29 : 05 pm to : "" ' christie _ patrick @ enron . com ' "" cc : "" piazze , thomas "" , "" spigonardo , joanne "" subject : wharton program for business journalists christie , we are delighted that greg whalley , ceo of enron bandwidth business , has agreed to be our featured dinner speaker at the upcoming wharton seminars for business journalists on wednesday , december 13 , 2000 . per instructions from tom piazze , i ' ve attached some information regarding our seminars for business journalists , now in its 32 nd year http : / / www . wharton . upenn . edu / media / journalists / . as i ' d mentioned in our conversation a few weeks ago , we have a leader from business or government speak each year at our sponsor ' s dinner , which is attended by all of the business journalists ( about 50 ) and representatives from our corporate sponsors ( lists attached below ) . our last 3 speakers were mark walsh , chairman of vertical net ; jason olim , ceo of cdnow ; and tom siebel , ceo of siebel systems . about 80 - 90 people are expected to attend this year ' s event . cocktails , dinner and mr . whalley ' s presentation will be held on wednesday , dec . 13 , from 6 : 00 to 9 p . m . in wharton ' s steinberg conference center , 38 th & spruce streets , on the university of pennsylvania campus . as tom may have mentioned , this audience likes to hear about interesting industry trends , or something companies are doing that is leading edge , and hasn ' t really hit the mainstream . past experience has shown that "" canned "" corporate presentations do not go over so well with this group . however , you are certainly welcome to provide literature to the audience or other materials that may be appropriate . i would like to have a conversation with you about your thoughts on a specific topic as we get closer to the event . in the meantime , we would like to have mr . whalley ' s bio and any other information you ' d like us to include in the course materials for the journalists . please try to keep this to about 2 - 3 pages , given all of the other material they ' ll have in their binders . you may contact me or my colleague , joanne spigonardo , with any questions . joanne is handling the logistics for the event , so please direct those types of questions directly to her . she ' s at 215573 - 8599 . thanks again , and i hope you can join us on the 13 th . best regards , mike > > - pub & namelistbjs 200 . doc - final sponsor list . doc",0 +"Subject: re : current address for brad romine vince : i have left brad two messages at this cell phone # - he has not responded . any suggestions ? vince j kaminski 03 / 16 / 2000 08 : 58 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : current address for brad romine shirley , i have his cell phone : 650 814 9966 . vince shirley crenshaw 03 / 13 / 2000 02 : 15 pm to : vince j kaminski / hou / ect @ ect cc : subject : current address for brad romine vince : do you have a current address for brad ? - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 13 / 2000 02 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - carol coats 03 / 13 / 2000 01 : 59 pm to : shirley crenshaw / hou / ect @ ect cc : subject : current address for brad romine shirley , is there any possibility that you might have an updated current address for brad ? if not , would vince know ? thanks much , carol",0 +"Subject: cost sharing of subscription to poten ' s fuel oil report all : ideally we will split this cost evenly among as many p & l ' s as need the report , minimizing everyone ' s cost by sharing a single subscription . please tell me whether you can justify sharing the cost and if so , the rc code & co # for me to allocate your cost share . please indicate your choice of the three cost choices . attached note below clarifies poten ' s proposal on the $ 10 , 000 / yr subscription . essentially we have three choices : 1 . for $ 2700 / yr , the standard edition ( 11 issues , excluding the monthly "" special feature "" article ) 2 . for $ 3800 / yr the premium edition , ( standard edition plus the monthly "" special feature "" article , as in three attached examples ) 3 . for $ 10 , 000 / yr the premium edition plus quarterly forward price view for 36 months . poten explains that 85 % of their subscribers take the premium service . no one has ever asked for the $ 10 , 000 / yr long - term price forecast . i have an interest in a longer term price forecast and hope that it may be useful to others in the corporation . the example copies attached include the following special feature articles : 99 feb - analysis of resid trades in the eastern mediterranean 99 sep - patterns of fuel oil trade in the western hemisphere 99 dec - analysis of the resid market in chile one either takes all or none of them for the incremental $ 1100 / yr . some may be useless , others perhaps quite valuable . your call . regards guy "" axelrod , larry "" on 02 / 03 / 2000 02 : 43 : 59 pm to : guy dayvault / corp / enron @ enron cc : fuel share group subject : enron / fuel oil service dear guy , it was a pleasure speaking to you today . as discussed , poten is pleased to offer enron the following two - part fuel - oil related service : ( 1 ) a one - year subscription to poten ' s fuel oil in world markets ( premium edition ) , and ( 2 ) a forecast of delivered crude prices and fuel oil prices in northwest europe ( brent and 1 % s fob fuel oil ) , the mediterranean ( bonny light and 1 % s fob fuel oil ) , and singapore ( dubai and hsfo - 380 cst ) . the forecasts would be provided four times a year and provide average quarterly price projections over the forward 36 - month period . the forecast prices would be accompanied by brief textual commentary . the forecasts would be issued over the course of the one - year fuel oil in world markets subscription period . the fee for the two - part service is us $ 10 , 000 , payable in two equal installments i look forward to hearing from you . best regards , larry l . axelrod phone 212 - 230 - 2038 fax 212 - 355 - 0295 doug leach @ ect 02 / 03 / 2000 01 : 52 pm to : guy dayvault / corp / enron @ enron cc : subject : re : poten ' s fuel oil report - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 02 / 03 / 2000 01 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - dale snyder 02 / 03 / 2000 01 : 44 pm to : doug leach / hou / ect @ ect cc : david j botchlett / hou / ect @ ect , ron irvine / lon / ect @ ect , niamh clarke / lon / ect @ ect subject : re : poten ' s fuel oil report we have an interest in sharing in the expenses of this information the only question being which information and at what cost . can see what the monthly newsletter describes which is relatively cheap but what considerable information does one get for the usd 10 k yr report ? how many ways will we split the costs ? psl advise and thx doug leach 02 / 03 / 2000 07 : 08 am to : dale snyder / hou / ect @ ect cc : subject : poten ' s fuel oil report i have no interest . do you ? - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 02 / 03 / 2000 07 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - guy dayvault @ enron 02 / 02 / 2000 03 : 35 pm to : niamh clarke / lon / ect @ ect , doug leach / hou / ect @ ect , margaret carson / corp / enron @ enron cc : subject : poten ' s fuel oil report niamh & doug & margaret : i want to chat about this and will call you , but the essence is : can you justify sharing the cost of subscribing to poten ' s monthly fuel oil report ? attached below are 3 example copies that include their standard 12 month price forecasts . the cost is $ 3800 / yr . as an added service for a total of $ 10 , 000 / yr , poten will include a quarterly update of their 36 month forward view on crude oil and fo prices with a brief justification for their view . this would include the standard monthly price forecast for the prompt 12 months and quarterly prices for the following 24 months for far east , med and nwe . ( i expect a more descriptive email from poten , but i think this is the essence of their "" custom "" offer . ) the example copies attached include the following special features : 99 feb - analysis of resid trades in the eastern mediterranean 99 sep - patterns of fuel oil trade in the western hemisphere 99 dec - analysis of the resid market in chile these type of features are produced monthly and run a spectrum of subjects related to fuel oil . i have a hard time justifying the cost of the newsletter and the price forecast without the considered recommendation of colleagues such as yourself regarding the utility of such a report . the best way to show your recommendation is with money . if it is not worth any money to anyone else in ene , then i have to question its validity and utility to me as well . doug , would this perhaps be useful to any other business units that have exposure to fo prices ? best regards guy - - - - - - - - - - - - - - - - - - - - - - forwarded by guy dayvault / corp / enron on 02 / 02 / 2000 03 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" axelrod , larry "" on 01 / 24 / 2000 03 : 38 : 53 pm to : guy dayvault / corp / enron @ enron cc : fuel share group subject : poten ' s fuel oil report guy , it was a pleasure speaking to you today . three samples of fuel oil in world markets are attached . let me know if you think the report could be useful to you . regards , larry phone 212 - 230 - 2038 > > > - 99 dec . doc - 99 sep . doc - 99 feb . doc",0 +"Subject: new information about transfers hi , vince , i had a chance to talk to my direct boss tom moore ( director ) about the possibility of transfers to research group . he had a positive reaction , he thinks me is a good fit for the research . hope this is useful information . regards ningya ( 3 - 5248 )",0 +"Subject: enside newsletter good afternoon , mr . kaminski ! thank you for agreeing to an interview for a business unit article for the next enside . molly magee spoke very enthusiastically about you and your group . i am on your calendar for thursday , march 1 at 10 am . i will bring a tape recorder and plan to finish in 30 - 45 minutes . attached , please find some possible questions / topics for us to discuss . please call me if you have any questions . thanks again . kathie grabstald ews public relations x 3 - 9610",0 +"Subject: reporting lines vince i ' ve just had a chat with richard , who feels strongly that the natural synergies between , and independence of , research and structuring will be best served if i report to tani . i expressed my concerns that i want to keep a strong link with : 1 . accountability to the trader sense of urgency , and 2 . traders ' willingness to spend money where necessary . richard suggested that we have a strong "" dotted line "" of reporting in to him , and that he will be available to support these areas . we ' ll meet regularly to keep richard in the loop . i filled richard in on the fact that i wish to change the nature , not just the size , of the research group , which will involve significant changes in headcount and investment in hardware / software . i ' ve no doubt that my main concerns of accountability and budget support will be met whether i report to richard formally or informally . tani has indicated that she ' d be prepared to have research report to her if required . all the best , steve",0 +"Subject: re : support for exotica steve , i am calling anjam to give him a deadline regarding move to houston . if he decides to stay in houston , you should meet with him to convey the concerns regarding his performance . vince steven leppard 10 / 13 / 2000 03 : 50 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , dale surbey / lon / ect @ ect , tani nath / lon / ect @ ect cc : paulo issler / hou / ect @ ect , sharad agnihotri / lon / ect @ ect , zimin lu / hou / ect @ ect subject : support for exotica all sharad ' s investigations of exotica ' s status in london have turned up a very confused state of affairs . this isn ' t being helped by the fact that : 1 . anjam is rarely at his desk , and can ' t be found anywhere in the building . 2 . when he is around he isn ' t willing or able to provide all the information sharad might need to support exotica . this is worrying since much of our business depends on the validity of exotica ' s valuations . sharad will now request information from anjam via email to leave a trail , and i want to alert you to the fact that sharad will be cc ' ing you in on these emails . if things don ' t improve soon , i may need to request some assistance in extracting this information from anjam . many thanks , steve",0 +"Subject: cal berkeley vince and john , i wanted to send you a quick note and once again say thank you for attending the cal berkeley presentation last week . i am sorry for the low attendance on campus , however i did want to send some refreshing news . i just received the resumes of students who would like to interview with enron . there were 43 resumes submitted for the technologist position and 46 resumes submitted for the analyst position . please let me know if you have any questions . thanks , ashley",0 +"Subject: credit reserve vince , i ' d like to get someone to sit with one of team for a couple of days . . . . to help with reviewing code . there seems to be two view of how this is currently working . your team seems to think winston group is not being co - operative enough . winston ' s team seems to think they are co - operating . . . i ' d like to resolve this . if my suggestion above doesn ' t work ( putting some in your team for a couple of days ) , i would like for us to sit down with winston , nilay and tanya and try to work out what ' s happening . regards steve - - - - - - - - - - - - - - - - - - - - - - - - tel : 713 - 345 - 8980 cell : 281 - 541 - 1862 page : stevestock @ pagenetips . com",0 +"Subject: pac reminder last month you received an email about enrolling in the enron pac . the response has been positive . thank you to those of you that have already enrolled or made a change to your current contribution ! if you have not had an opportunity to visit the enrollment site , please consider taking a moment to do so . the link to the website is at the end of this message . some of you may have experienced problems launching the site or enrolling . we apologize for any trouble that you may have had . the enrollment works best in either internet explorer or netscape . the most frequent problems were a result of the lotus notes web browser that many employees have installed as a default browser . if this is your case , please copy and paste the link at the end of this message into either internet explorer or netscape . as a reminder - following is the original message regarding the pac enrollment : last year the enron political action committee ( pac ) launched a campaign to become a "" million dollar pac "" . enron employees , who provide all of the funding for the pac , responded and the enron pac reached its objective , becoming one of the largest corporate pacs . this year we face a new challenge . with the sale of eog , the announced sale of pge and normal employee turnover , we have lost a significant number of consistent contributors . we are seeking your support . if you are not a member , please join . if you are a member , we hope you will consider increasing your contribution . the enron pac is an essential tool in our effort to promote sound public policy . our pac funds support local , state and federal candidates , of both parties , who support open markets , deregulation and customer choice . amounts contributed may be used to make political contributions in connection with federal and state elections and are subject to the limits of the federal election campaign act . while our pac has grown thanks to our employee contributions , it still generates just a fraction of the expenditures of those who oppose these ideals . this year , as always , we face challenges and opportunities for every one of our businesses , including such issues as taxation and regulation of e - commerce , electric industry restructuring , regulation of derivatives , international trade and investment legislation , pipeline safety , local and state decisions affecting the siting and interconnection of power plants and a variety of environmental and tax issues . enron has a long and successful track record of supporting and advancing good public policy . that track record depends on access to and regular communication with , decision makers . the pac provides that access - - it shows policy makers that real voters care about what they are doing . one of the best things about enron is that we don  , t just take things as they are . we challenge the status quo . we ask why . we change things . the pac helps us do that . we need you to help the pac . sign up today  ) and please consider the following contribution guidelines : manager $ 500 / year director $ 750 / year sr . director / general manager $ 1 , 000 / year vice president $ 2 , 500 / year sr . vp / managing director $ 3 , 500 / year executive committee $ 5 , 000 / year all contributions are voluntary and these guidelines are merely suggestions . you are free to contribute more or less than the guidelines suggested and enron will not favor or disadvantage anyone by reason of the amount of their contribution or their decision not to contribute . you may refuse to contribute without fear of reprisal . only u . s . citizens and resident - aliens living in the u . s . can contribute to the enron pac . amounts contributed may be used to make contributions in connection with federal and state elections and are subject to the limitations of the federal election campaign act . the maximum contribution is $ 5 , 000 per year per individual . an individual may not contribute more than $ 25 , 000 to all federal candidates and committees within a calendar year . the law requires that enron report name , address , employer and occupation for every person who contributes over $ 200 / year . no portion of any contribution is deductible as a charitable contribution for federal income tax purposes . thanks for your support ! sign up now , or revise your current contribution level by connecting with the pac intranet site : http : / / pacmembers . enron . com",0 +"Subject: re : telephone interview with enron corp . research dept . dear shirley : confirming that i will be waiting for the telephone interview at 1 pm tomorrow . ? i would like to give you my cell phone number , 713 / 907 - 6717 , as a back - up measure . ? please note that my first preference is to receive the call at my home number , 713 / 669 - 0923 . sincerely , rabi de ? ? shirley . crenshaw @ enron . com wrote : dear rabi : i have scheduled the telephone interview for 1 : 00 pm on friday , july 7 th . we will call you at 713 / 669 - 0923 . if there are any changes , please let me know . sincerely , shirley crenshaw 713 - 853 - 5290 rabi deon 06 / 26 / 2000 10 : 37 : 24 pm to : shirley crenshaw cc : subject : re : telephone interview with enron corp . research dept . dear ms . crenshaw : thanks for your prompt response . ? july 6 or 7 th will work best for me . . ? i would prefer to be called at my home number . ? please let me know the schedule and other details , if any . sincerely , rabi de ? shirley crenshawwrote : good afternoon mr . de : your resume has been forwarded to the enron corp . re ! search dept . and they would like to conduct a telephone interview with you at your convenience . the interviewers would be : vince kaminski managing director stinson gibner vice president grant masson vice president p . v . krishnarao director paulo issler manager please give me some dates and times this week or july 5 , 6 , and 7 th when you might be available and i will coordinate with the other calendars . i look forward to hearing from you . sincerely , shirley crenshaw administrative coordinator enron corp . research 713 / 853 - 5290 email : shirley . crenshaw @ enron . com do you yahoo ! ? get yahoo ! mail - free email you can access from anywhere ! do you yahoo ! ? send instant messages & get email alerts with yahoo ! messenger .",0 +"Subject: video conference with the mars corp . "" cds "" group - avi hauser good morning : there will be a video conference this friday , june 30 at 11 : 30 am with avi hauser of the cds group of mars corp . the subject will be : commodity development services opportunity in the emerging energy markets . the video conference will be in eb 2802 a thanks ! shirley crenshaw",0 +"Subject: re : follow - up eric , mandeep chahal , ainsley gaddis , sofya tamarchenko , elena chilkina , james aimone should not count . m . chahal was transferred to the new company , the rest are summer interns ( gone back to school ) , or part - time high school or college kids . i shall walk around and remind the rest of the crowd about the deadline . vince eric thode @ enron 08 / 25 / 2000 02 : 31 pm to : vince j kaminski / hou / ect @ ect cc : subject : follow - up vince - - we have been working the last few days to get ena ' s united way participation rate up as high as possible . i called earlier about your cost center because the following 16 employees were listed in power trading , but i believe are part of the research organization . if you have a chance , could you encourage them to log onto http : / / unitedway . enron . com on the intranet and make a contribution to the united way . the deadline is today . thanks . eric employees in your cost center : ainsley gaddis elena chilkina james aimone jose marquez kevin moore mandeep chahal maureen raymond osman sezgen paulo issler peyton gibner pinnamaneni krishnarao samer takriti sofya tamarchenko thomas halliburton william smith yana kristal",0 +"Subject: re : programming for rdi model michelle , the project is progressing . helen has done a great job , finding various flaws in the initial design ( ken ' s design ) of the access table , and has been going back and forth with ken to modify the table . since helen can ' t devote full time to this project , chris has hired a contractor , cecil stradford , to do the coding . i have spoken with cecil just now and he says no coding has been done yet . i am trying to arrange a meeting today with cecil , helen , christin ( the one who ' s overseeing coding process in cecil ' s company ) and myself . will report back to you on what is discussed in the meeting . best , alex",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000",0 +"Subject: cal berkeley career fair recruiting season is quickly approaching and i wanted to go ahead and make everyone aware of the first event at cal berkely this fall . the cal berkeley career fair will take place on friday , september 8 th . we would like to take three representatives on campus to discuss the analyst program as well as the global technology track . travel arrangements would involve leaving on thursday evening , september 7 th , to recruit on campus all day friday . if you think that you may be available to help with this event , please click on the button below . we will discuss this and other events / dates on campus this fall during the team meeting on tuesday , august 29 th at 2 : 00 in 49 c 4 . at that time we will have sign - up sheets so that you can attend events that best fit in your schedule . i will also follow up with an e - mail similar to this so that everyone is able to express their date / event preferences . thanks so much for helping recruit at cal berkeley this fall . if you have any questions , please feel free to contact me at 3 - 3589 . ashley",0 +"Subject: pjm publishes list of 1000 contingencies message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : to meet customer requests , pjm has published the pjm contingency list on the web site at www . pjm . com . the file can be found under pjm markets , market and system data , under lmp model information . the list contains the approximately 1000 contingencies existing in the pjm energy management system . the contingencies are the possible occurrences against which pjm system operators must protect the transmission system . please do not reply to this message . if you have a question for pjm customer relations and training , please send an e - mail to custsvc @ pjm . com . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: long sleeve denim shirts with the enron research logo hello everyone : i believe all of you are new employees since we last ordered the research shirts . they are a blue denim ( tencel ) , button down , long sleeve , shirt with a logo over the left pocket . several of you have been asking for them so i will place an order . please let me know the size shirt you would like . they come in ladies , or mens in small , medium , large , and extra - large . please circle the size you would like . name size tom barkley s m l exl stephen bennett s m l exl rakesh bharati s m l exl lance cunningham s m l exl rabi de s m l exl anita dupont s m l exl shane green s m l exl anguel grigorov s m l exl seksan kiatsupaibul s m l exl sandeep kohli s m l exl jaesoo lew s m l exl martin lin s m l exl kate lucas s m l exl iris mack s m l exl praveen mellacheruvu s m l exl mitra mujica s m l exl wichai narongwanich s m l exl nelson neale s m l exl kenneth parkhill s m l exl chris pernoud s m l exl leann walton s m l exl",0 +"Subject: meeting at 2 : 00 pm friday kevin , can you join us ? i may be 5 minutes late , coming from another meeting . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 15 / 2000 07 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - wenyao jia 12 / 14 / 2000 06 : 24 pm to : debbie r brackett / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : meeting at 2 : 00 pm friday we will meet at debbie ' s office at 2 : 00 pm tomorrow afternoon . we will talk about asset liability project from treasury dept . see you there . winston",0 +"Subject: year end 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the year end 2000 performance management process by providing meaningful feedback on specific employee ( s ) . your feedback plays an important role in the process , and your participation is critical to the success of enron ' s performance management goals . to complete requests for feedback , access pep at http : / / pep . corp . enron . com and select perform review under performance review services . you may begin providing feedback immediately and are requested to have all feedback forms completed by friday , november 17 , 2000 . if you have any questions regarding pep or your responsibility in the process , please contact the pep help desk at : houston : 1 . 713 . 853 . 4777 , option 4 london : 44 . 207 . 783 . 4040 , option 4 email : perfmgmt @ enron . com thank you for your participation in this important process . the following is a cumulative list of employee feedback requests with a status of "" open . "" once you have submitted or declined an employee ' s request for feedback , their name will no longer appear on this list . review group : enron feedback due date : nov 17 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - andrews , naveen c rudi c zipter oct 31 , 2000 baxter , ashley david davies nov 02 , 2000 campos , hector o peyton s gibner nov 06 , 2000 carson , richard l richard b buy oct 30 , 2000 crenshaw , shirley j wincenty j kaminski oct 26 , 2000 gandy , kristin h celeste c roberts nov 01 , 2000 gorny , vladimir theodore r murphy ii nov 02 , 2000 hewitt , kirstee l steven leppard nov 06 , 2000 kindall , kevin vasant shanbhogue oct 30 , 2000 lamas vieira pinto , rodrigo david port oct 31 , 2000 patrick , christie a steven j kean nov 09 , 2000 pham , bich anh t sarah brown nov 06 , 2000 raymond , maureen j wincenty j kaminski nov 02 , 2000 rosen , michael b christie a patrick nov 06 , 2000 sun , li kevin kindall nov 09 , 2000 supatgiat , chonawee peyton s gibner oct 27 , 2000 tamarchenko , tanya v vasant shanbhogue oct 26 , 2000 tawney , mark r jeffrey a shankman oct 26 , 2000 thuraisingham , ravi paul h racicot jr nov 12 , 2000 williams , matthew steven leppard nov 08 , 2000 yaman , sevil vasant shanbhogue oct 27 , 2000 yuan , ding richard l carson oct 31 , 2000",0 +"Subject: re : thank you for the e - mail . joe , he is a research assistant of prof . darrell duffie from stanford and i met him in this capacity . a very bright fellow . i could not assess his commercial skills but he has enough common sense to identify the winner ( as his interest in enron demonstrates ) . vince joseph p hirl @ enron _ development 12 / 17 / 99 08 : 05 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : thank you for the e - mail . vince , thanks for the note and the voice mail this morning . do you have any thoughts / comments on this person ' s abilities ? joe vince j kaminski @ ect 12 / 18 / 99 07 : 25 am to : joseph p hirl / enron _ development @ enron _ development cc : subject : re : thank you for the e - mail . joe , i am forwarding you the information about the student from stanford of japanese ancestry interested in enron . he lives currently in california . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 17 / 99 03 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 10 / 20 / 99 07 : 07 am to : hoshino @ leland . stanford . edu cc : celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , greg whalley / hou / ect @ ect subject : re : thank you for the e - mail . taiichi , thank you for your messsage . i shall forward to our analyst / associate program and a few other units of enron . vince kaminski hoshino @ leland . stanford . edu on 10 / 19 / 99 09 : 14 : 05 am please respond to hoshino @ leland . stanford . edu to : vince j kaminski / hou / ect @ ect , vkaminski @ aol . com cc : subject : thank you for the e - mail . dear vince kaminski thank you so much for the kind invitation for the meeting . i have been always inspired by and having respect for the recent revolutionary achievements of enron in the energy markets my former employer mckinsey tokyo in fact featured your company * s success in the last quarterly , and it clearly states ( in japanese though ) that the quantitative research capability at enron is now at the world * s top level , which has been always behind the scene . i am extremely honored to receive the email from you and in fact interested in knowing the opportunity of working in the energy field ; however , very unfortunately i will have to come back to japan , or at least to the east asian region , upon graduation due to an inevitable family reason . my wife * s father passed away recently and an old mother - in - law is now left alone without relatives . i understand that enron has not yet embarked on the next big project of freeing the outdated japanese energy market , ( which by the way i strongly hope ) so i may not have a very good chance of making contribution at your company right now . lastly , if you need a staff in tokyo in some future who understands both the risk management analytics at the f 622 level and the local language and business custome better than average , please contact me any time . i will be happy to assist as much as possible . yours sincerely , / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ taiichi hoshino ph . d . candidate engineering economic systems & operations research graduate school of engineering stanford university the shadows apt # 171 750 north shoreline blvd . mountain view ca 94043 tel / fax ) 650 - 960 - 1993 / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~ / ~",0 +"Subject: our meeting vince : i enjoyed meeting you last week to discuss my application to join your group . please keep my inquiry confidential for now . if selected , i think your group would greatly benefit from my diverse skill - set including modeling skills utilizing excel , access , and bloomberg as well as graphing , statistical , and other quantitative abilities , especially in the meteorology field . i am particularly interested in being able to discover vital information which may affect the markets ( e . g . pulp / paper , interest rates , weather ) as well as arriving at a new variable which captures all market variables into one which may be followed and forecasted for each of the groups . furthermore , i am truly committed to adding value to your group , including making significant contributions , and am sanguine about my ability to ensure that these achievements are well - received . i have met many people at enron thus far and am able to utilize these strategic alliances by knowing who may be able to assist your group in the quest for information on different projects . by accessing information quickly , both internal and external to the firm , the group would be able to extraordinarily benefit from this diligence in addition , by seeking greater efficiencies in my work , i have been able to be instrumental in accumulating additional responsibilities . most importantly , i have the mathematical acumen and insight to ensure the continued growth and prosperity of your group . as a research - oriented individual , i am clearly interested in pursuing a position in your group . if selected , i would be able to bring my diverse experience , including financial modeling and derivatives , from my tenure at enron and cibc world markets . i look forward to meeting with select members of your group . thanks , david 3 - 3528",0 +"Subject: energy finance conference presentations available fyi : you can now retrieve most all the speaker presentations of the 2001 energy finance conference ( feb 22 - 23 ) from our website at http : / / cefer . bus . utexas . edu , with the exception of presentations made by john mccormack , peter nance , sailesh ramamurtie , and ehud ronn / anoop kapoor , which i hope to still receive . sincerely , angela * * * * * * * * * * * * * * angela dorsey assistant director center for energy finance education & research the university of texas at austin department of finance , cba 6 . 222 austin , tx 78712 angela . dorsey @ bus . utexas . edu * * * * * * * * * * * * * *",0 +"Subject: re : thanks vince . dinner on sunday ok all round . do you want anjam along too ? i can ' t really ask him , given our current relationship . one other thing , have you had thoughts on reporting lines , who signs expenses , etc . etc . , or are these issues to be resolved when you come over ? cheers , steve vince j kaminski 09 / 20 / 2000 04 : 14 pm to : steven leppard / lon / ect @ ect cc : subject : steve , steve , this is the spreadsheet . also , please , let shirley know if the dinner on sun is ok . vince",0 +"Subject: wallet size telephone cards for the research group hi dee : per our conversation , i am attaching the listing of the research group . we would like 50 sets of the wallet size telephone cards made up . our co . # is 0011 and our rc # is 100038 . if you have any questions , please call me at 3 - 5290 . thanks and have a great day ! shirley",0 +"Subject: presentation to faculty and students at berkeley vince - attached are the documents that steve references below . we ' ll keep you on the distribution list for further documents as they ' re created . elizabeth - - - - - forwarded by elizabeth linnell / na / enron on 09 / 20 / 2000 09 : 40 am - - - - - steven j kean sent by : steven j kean 09 / 20 / 2000 09 : 21 am to : maureen mcvicker / na / enron @ enron , james d steffes / hou / ees @ ees , elizabeth linnell / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : presentation to faculty and students at berkeley maureen - - please send vince my california testimony and the talking point presentation for jeff skilling at the national press club . eliz - - keep vince on the distribution list for the documents we are generating now to repond to the california situation . - - - - - forwarded by steven j kean / na / enron on 09 / 20 / 2000 09 : 18 am - - - - - vince j kaminski @ ect 09 / 18 / 2000 01 : 26 pm to : steven j kean / na / enron @ enron cc : charlene jackson / corp / enron @ enron , celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , ashley baxter / corp / enron @ enron subject : presentation to faculty and students at berkeley steve , i am a lead recruiter at the university of california at berkeley for enron analyst / associate program . i contacted several friends who work at berkeley and received an invitation from one of them to make a presentation at the weekly faculty seminar of the dept . of industrial engineering and operations research . the students and faculty members from the business school will be also invited . berkeley in general , and department of industrial engineering and operations research in particular , are important centers of academic research on electricity markets ( s . oren works very closely with severin borenstein ) . my presentation will focus on the analyst / associate program . i shall also have an opportunity to discuss the power markets in california ( i expect many questions ) before many experts who are very important to shaping public opinion and regulatory agenda . please , let me know who in you group could help me in preparing this presentation and in presenting enron ' s point of view in a more effective way . vince fyi . the name of my friend who invited me : shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777",0 +"Subject: re : check julie , a clarification . we had an agreement with chris and les to contribute aus 10 , 000 as a part of the cost . vince "" julie "" on 10 / 30 / 2000 12 : 32 : 14 pm to : cc : subject : re : check vince , ? thank you for your email . ? ? we will send you a copy of the book as soon as it is available , which we are now estimating to be around ? 21 november ( no need to send us a cheque ; you deserve it ) . ? just let us ? know if we should use a different address than your office in houston . ? thanks again for all of your help . ? julie ? - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : monday , october 30 , 2000 2 : 16 pm subject : check julie , this message was returned to me a few times when i sent it from my home address . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 30 / 2000 08 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 10 / 28 / 2000 12 : 12 : 57 pm to : ? ? julie @ lacima . co . uk cc : ? ? vkaminski @ aol . com , vkamins @ enron . com subject : ? check julie , as the book is about to be released to the market , i would like to start the process to issue the check to lacima . who will be the payee ( lacima ) and what is the address ? vince",0 +"Subject: hello all , the program for the 2000 texas finance festival has been formalized and can be found on our web site at i do need to remind you of a few things before we converge on san antonio . first , be sure to contact the convention hotel and make your reservations . at last count there were only 6 rooms left . second , i need a completed application form from everyone so that we can get an accurate meal count . i am attaching the program announcement so you can fill out the appropriate boxes for meals and numbers of guests in the event you have not sent in a form . remember that we are starting the conference off with a luncheon on friday so plan on arriving early friday or coming in on thursday evening if you can . our hotel is right on the river and there are lots of restaurants and interesting things to visit in the immediate area ( the alamo is across the plaza from the hotel ) . we are making plans for spouses and children to attend both the dinner on friday and saturday evenings . the friday evening dinner begins at 6 p . m . so that we can be done in plenty of time for our private guided tour of the alamo at 8 : 00 p . m . for saturday we are still working out plans for the evening so stay tuned . there will be more information later as the conference nears . looking forward to seeing you all and in beautiful , sunny san antonio . john - announcerev . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : hello from vince kaminski at enron - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 08 / 2000 11 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" shmuel oren "" on 08 / 08 / 2000 08 : 14 : 59 am to : vince j kaminski / hou / ect @ ect cc : subject : re : hello from vince kaminski at enron dear vince i will be happy to meet with you . please let me know when you will be here . i will check among our students who may be interested . i have a ph . d . student that is very good but he is still in the pipeline . shmuel . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : ; ; sent : tuesday , august 08 , 2000 10 : 59 am subject : hello from vince kaminski at enron > shmuel , > > i hope you remember me . i visited you together with aram sogomonian , a > good friend of mine , a few years ago . i am currently responsible , among > other things , for recruiting graduates with finance and / or technical > backgrounds at the university of berkeley . i would be glad to give you a > call and talk more about the details of our program . my colleague , > ashleybaxter , from the analyst / associate program at enron would join me > as well . > > i am sending you a copy of the brochure about the analyst / associate > program . > > vince kaminski > > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com >",0 +"Subject: re : kmi end - user license agreement ( enron ' s agreement for project services hi gene , looks like you are dealing with the subject . thanks for moving this forward . kmi is dancing around relatively minor issues that i think we should be able to overcome . essentially , the issue is that we will not resell their database or misrepresent it . they want to put in all this restriction about not using it for trading , exchange , etc . stretches our possible usage of this database . it appears from your e - mail that the attament therein is our standard agreement that we get our vendors to sign . at this point , i am happy with whatever it takes to get those guys to close the deal . thank you very much for the prompt service , regards , ravi .",0 +"Subject: ms 150 dear friends and family , on april 15 and 16 i will be joining thousands of riders and volunteers on the ms 150 which is a two day bike tour from houston to austin covering 182 miles dedicated to end the devastating effects of multiple sclerosis . multiple sclerosis is a disease that is total unpredictable . symptoms may be mild such as numbness in the limbs , or severe paralysis or loss of vision . most people with ms are diagnosed between the ages of 20 and 40 but the unpredictable physical and emotional effects can be lifelong my wife , ilene was diagnosed with ms almost three years ago ; at first i was at a loss of how i could support her . that was until i heard of the ms 150 , which is one of the greatest challenges of my life . it is my choice to participate in the ms 150 , ilene does not have a choice , as she has to live with ms every day . this will be my third year riding in the ms 150 raising money for the national ms society to fight multiple sclerosis . in 1998 my goal was simple . it was to raise money and ride the 182 miles on my own . i succeeded in my endeavor by completing the ride on my own steam and raising $ 6 , 000 . in 1999 i raised my goal to $ 10 , 000 and finished the tour . not only did i meet my goal , but surpassed it by raising $ 15 , 000 to fight this devastating disease with the help of my friends and family . this year my goal is even greater ! my wife and i are once again asking for your help . this year on the 2000 ms 150 bike tour , my goal is to raise $ 20 , 000 . enron is a big supporter of the ms 150 . for the past two years we were the largest bike team and biggest fundraiser of any corporate team nationally . last year we raised $ 310 , 000 with 300 riders . enron will match dollar for dollar on all contributions donated in my name . using this secure , fast and easy web page you can make a tax - deductible donation ( if clicking on the link below does not work you can cut and paste the link to your browser ) . mail = jnorden % 40 enron % 2 ecom if you would prefer to send a check it should be made out to the national ms society and sent to the address below . i appreciate your continued support of the ms society and the isuzu ms 150 bike tour . the funds raised on the isuzu ms 150 bike tour provides equipment , financial assistance , self - help groups , counseling , information and resources , as well as education for people with ms and their families . your support truly makes a difference in the lives of people with multiple sclerosis . for additional information on ms http : / / www . nmss . org for additional information the ms 150 http : / / www . msl 50 . org thank you for your support , john norden john norden director technology enron 1400 smith st houston tx 77002 713 / 853 - 3240",0 +"Subject: request submitted : access request ( scrw - 4 n 9 s 2 f ) fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 21 / 2000 01 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - information risk management 08 / 16 / 2000 03 : 34 pm sent by : shirley crenshaw to : shirley crenshaw / hou / ect @ ect cc : subject : request submitted : access request ( scrw - 4 n 9 s 2 f ) thank you for your request . you will be notified via email when your request has been processed . you can check the progress of your request by doing one of the following : in the srrs application , click on requests i have made . a listing of recent requests will be appear sorted by resource name . click on the request link below . this is a link to information regarding your request . below is a summary of your request . requested for : vince j kaminski / hou / ect request date : 8 / 16 / 2000 3 : 32 : 19 pm request type : update access request link : requested resources comet grms ( global risk management system ) unlisted application / software if you have any questions , please contact information risk management at 35536",0 +"Subject: address - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 23 / 2000 06 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - keith alan baggerly @ stat . rice . edu on 05 / 23 / 2000 09 : 46 : 41 am sent by : kabagg @ stat . rice . edu to : vince . j . kaminski @ enron . com cc : subject : address vince , thanks for chatting with me yesterday ! just a brief note about info we talked about that i would find useful : a ) your papers b ) the latest version of managing energy price risk c ) data thanks ! keith my address is : keith baggerly 4038 drummond houston , tx 77025",0 +"Subject: re : your visit to carnegie mellon kent , thanks a lot . look forward to meeting you on campus . vince "" kent garrett "" on 11 / 05 / 2000 01 : 06 : 21 pm to : cc : subject : your visit to carnegie mellon vince : i would like to personally thank you for spending the day with us at the mscf program at carnegie mellon . the time you spent talking to us about enron , and the energy industry in general , was very much appreciated . in fact , i believe some students who were not previously interested in energy are now interested because of the things about which you spoke . i have signed up for an interview for the associate program at enron , and i hope to speak to you again through involvement in the associate program . thanks again . sincerely , kent garrett kent garrett m . s . in computational finance carnegie mellon university ( 412 ) 362 - 7443",0 +"Subject: re : managing energy price risk - 2 nd edition janette , thanks . vince kaminski enron corp . 1400 smith street , room 1962 houston , tx 77251 - 1188 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2599 e - mail : vkamins @ enron . com vince "" janette jagernauth "" on 01 / 06 / 2000 05 : 49 : 27 am please respond to "" janette jagernauth "" to : vince j kaminski / hou / ect @ ect cc : subject : managing energy price risk - 2 nd edition dear mr kaminski , i do hope that you had a pleasant christmas and new year , like ourselves at risk . i am currently producing the author cards which you discussed with my manager , paula soutinho , and would like to know where you would like them delivered to . i have ordered a quantity of 200 which i hope is to your satisfaction . if you have any queries please do not hesitate in contacting either myself or paula , kind regards janette jagernauth marketing assistant - risk books - attl . htm",0 +"Subject: re : ll visa - anshuman shrivastava molly , thanks for the update . two points . please , let neil mcgregor know that many possible proposals were floated with regard to anshuman and there was some noise in the system . we need ll visa anyway and we decided to go ahead an arrange it . i shall also write to him and explain the confusion . also , if i have the choice between upsetting neil or jeffs ( shankman and skilling ) , i shall choose neil . vince enron north america corp . from : molly magee 01 / 24 / 2001 10 : 13 am to : vince j kaminski / hou / ect @ ect cc : subject : re : ll visa - anshuman shrivastava vince : apparently neil mcgregor became upset when he received margaret daffin ' s email . he is saying , however , that anshuman will only be in houston for one month , and you had mentioned six months when we spoke earlier . it really doesn ' t make any difference since he will need to get an ll visa under either circumstance , but i thought you might want to see his email . molly - - - - - - - - - - - - - - - - - - - - - - forwarded by molly magee / hou / ect on 01 / 24 / 2001 10 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 01 / 24 / 2001 09 : 57 am to : molly magee / hou / ect @ ect cc : subject : re : ll visa - anshuman shrivastava molly : per our conversation today . please let me know the status so that i can proceed with the visa process . thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 01 / 24 / 2001 09 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - neil mcgregor @ enron _ development 01 / 24 / 2001 05 : 18 am to : margaret daffin / hou / ect @ ect cc : wade cline / enron _ development @ enron _ development subject : re : ll visa - anshuman shrivastava anshuman is not moving or immigrating to the us . we are allowing him to work for a lmonth assignment in the us with enron . please carry out the necessary approvals and visa ' s on this basis . neil mcgregor ceo dabhol power margaret daffin @ ect 01 / 23 / 2001 10 : 31 pm to : anshuman . srivastav @ enron . com cc : molly magee / hou / ect @ ect , vince j kaminski / hou / ect @ ect , jane allen / hou / ect @ ect , timothy callahan / na / enron @ enron , ranendra sengupta / enron _ development @ enron _ development , wade cline / enron _ development @ enron _ development , neil mcgregor / enron _ development @ enron _ development @ ect , harsimran subject : ll visa - anshuman shrivastava anshuman : i have been asked to contact you regarding your possible move to houston , texas . in order that i may begin the process of getting you an ll immigration visa , i will need you to complete the attached visa questionnaire and return it to me with copies of the following documents : a copy of all pages of your passport , even if blank copies of all previous us visas issued an updated resume , showing months and years copies of all diplomas and transcripts received if you have dependent family members coming to the states with you , copies of their passports please send to my attention , via fedex to : enron corp . 3 allen center , 3 ac 2026 a 333 clay street houston , tx 77002 please call me with any questions you may have at 713 - 345 - 5083 .",0 +"Subject: rick jones ' address 18 pale dawn pl 936 271 3283 look for capstone - off of research . there are other turns but that will get you in the ball park on the map . see you monday !",0 +"Subject: storage model audit vince , enclosed please find the storage model documentation , the c - code and front - end spread sheet . after your inputs and comments we can send it out . zimin",0 +"Subject: presentation on equilibrium modeling for gas market hi kim : you and your associates are invited to attend this meeting . if you have any questions , please call me . thanks ! shirley * * * * * * * * * * * * * the following presentation will be this friday , the 18 th of february from 1 : 00 pm to 3 : 00 pm in eb 19 c 2 ( our large conference room ) . please plan to attend this presentation by icf consulting . agenda for presentation by icf consulting 1 . qualifications for icf consulting ( 6 slides ) a . energy consulting background ( 2 slides ) b . experience with computational market equilibrium modeling methodolgies ( 2 slides ) c . experience of key icf individuals ( 2 slides ) 2 . description of enron  , s modeling interests ( to be discussed with enron ) 3 . icf  , s intertemporal , interregional equilibrium model of the north american natural gas analysis system ( nangas ) ( 14 slides ) a . overview of nangas ( 2 slides ) b . upstream components ( 3 slides ) c . downstream components ( 4 slides ) d . computation of market equilibrium prices , quantities , and flows ( 5 slides ) 4 . potential modeling consulting ( 9 slides ) a . assistance in developing market equilibrium models for the energy sector ( 1 slide ) b . investigate alternative market equilibrium models for energy applications i . models of imperfect competition ( e . g . , nash - cournot , etc . ) ( 3 slides ) ii . models of auctions in market forecasting ( 1 slide ) ii . models that incorporate stochastic inputs ( e . g . , stochastic programming ) to take into account risk ( 2 slides ) c . actions items ( to be completed in consultation with enron ) ( 2 slides )",0 +"Subject: updated message - preliminary rankings norma , i am sending you preliminary rankings for my entire group , based on the results of a meeting we held on tuesday . we have ranked shalesh ganjoo and clayton , in case it ' s still our responsibility . vince permanent goup members , manager and below : superior : 1 . martin lin 2 . joe hrgovcic 3 . tom haliburton 4 . jose marquez excellent 1 . paulo issler 2 . robert lee 3 . chonawee supatgiat 4 . amitava dhar 5 . alex huang 6 . kevin kindall 7 . praveen mellacheruvu 8 . shanhe green 9 . stephen bennett strong 1 . lance cunningham 2 . clayton vernon 3 . youyi feng 4 . yana kristal 5 . sevil yaman permanent goup members , directors : superior 1 . krishnarao pinnamaneni excellent 1 . osman sezgen 2 . tanya tamarchenko 3 . zimin lu satisfactory 1 . maureen raymond associates , analysts superior 1 . shalesh ganjoo 2 . gwyn koepke excellent 1 . hector campos 2 . kate lucas 3 . sun li 4 . roman zadorozhny 5 . charles weldon",0 +"Subject: re : credit article dear vince thank you very much for the information . i will get in touch with them today and will keep you informed as to the outcome . regards , katja vince j kaminski 06 / 01 / 2000 19 : 52 to : katja schilling / lon / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : credit article katja , risk magazine has the copyright . you have to contact them to get the permission to use this for external users . you can contact : sh ? n millie risk books 28 - 29 haymarket london swly 4 rx pone : 44 ( 0 ) 171 484 9740 fax : 44 ( 0 ) 171 484 9758 e - mail : shan @ risk . co . uk www . riskpublications . com and discuss the legal aspects with her . vince vasant shanbhogue 01 / 06 / 2000 08 : 28 am to : katja schilling / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : credit article i do not think minor changes would allow you to just use the same file . you will have to check with risk . this is risk books , a specialist division of risk publications in london . address : haymarket house , 28 - 29 haymarket , london swly 4 rx . the publication was in a book , entitled "" credit derivatives : applications for risk management , investment and portfolio optimisation , "" publishd in 1998 . i am not sure if a lawyer was involved , maybe vince will know . vasant katja schilling 01 / 05 / 2000 05 : 47 am to : vasant shanbhogue / hou / ect @ ect cc : bijoya banerjea / lon / ect @ ect subject : credit article hello vasant ! bijoya has updated me on the discussion you have been having on the article from risk magazine about credit . we have found that the attachments you sent her are actually not word - for - word the same as the published version we have - the changes are only minor , wever , and have not altered the article in any way . my question now concerns the copyrights . since the version you sent is slightly different , do you think this gives us the freedom to publish it without the consent of risk ? and if not - can you tell me if it was published by risk uk or risk in the states ? and which issue was it ? i just want to have all of the details if i need to call someone at the magazine . . . also - was there a lawyer involved in the publication procedure , or was this handled by london / houston pr ? or by vince himself ? sorry about all of the questions . . . i just want to avoid problems well in advance . thank you ! regards , katja",0 +"Subject: re : panel session at 2001 pes summer meeting that should be fine , as long as you keep to a general overview and dissertation work . you can talk about different modeling approaches in the industry , and indicate , if asked , that enron looks at all approaches but not be specific about which particular one we believe in . can you give me more details on the meeting ? i may like to attend as well . thanks , vasant lance cunningham @ enron on 03 / 27 / 2001 10 : 37 : 02 am to : vkaminski @ aol . com , vasant shanbhogue / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : panel session at 2001 pes summer meeting vince and vasant , i was asked by one of my advisors to be on a panel for the summer power engineering society . i stated that i couldn ' t divulge any information on modeling efforts at enron but could give a general overview and cover my dissertation work . he stated that he understood and other companies had expressed similar concerns . i guess that i need your ok to attend this presentation and present . thanks , lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 03 / 27 / 2001 10 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" martin l . baughman "" on 03 / 27 / 2001 08 : 59 : 35 am to : shams . siddiqi @ lcra . org , harry . singh @ neg . pge . com , lance . cunningham @ enron . com , rosenberg @ hotmail . com , "" camporeale , robert "" cc : baran @ eos . ncsu . edu , liu @ ee . washington . edu subject : panel session at 2001 pes summer meeting gentlemen : thank you for agreeing to participate on the panel . to comply with the quality control requirements of the society i must request from each of you the following : 1 . name , affiliation , and title of presentation as you want it listed in program . 2 . a 2 - 6 summary of the presentation . these summaries will appear in the proceedings . many speakers simply provide a few powerpoint slides that contain this information , or alternatively , a few paragraphs of text summarizing the points they intend to make in their presentations . please provide this information to me by april 2 . here is the status of the panel so far . title : power trading and asset management : tools of the trade requested day and time : wed july 18 morning session summary a number of sophisticated anlytical tools are used in support power trading and asset management activities . these include various time - series , stochastic , and physical models of quantities and prices , portfolio and risk analysis tools , and other risk management tools . in this panel , the analytical approaches are surveyed and discussed . panelists : lance cunningham / confirmed manager , research enron north america micahel rosenberg / confirmed txu shams siddiqi / confirmed lcra harry singh / confirmed director , market economics pg & e national energy group robert camporeale coned energy panel organizer and chair : martin l . baughman ece department the university of texas at austin remember , by april 2 . marty martin l . baughman ece dept . ens 348 the university of texas at austin austin , tx 78712 ph . ( 512 ) 471 - 5376 fax ( 512 ) 471 - 5532",0 +"Subject: network design optimization . fyi , attached document is a specification of the network design optimization program . just in case you want to see how it looks like . - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 06 / 19 / 2000 02 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 06 / 19 / 2000 02 : 34 pm to : phil markwart / enron communications @ enron communications cc : samer _ takriti @ enron . net subject : network design optimization . phil , the optimization engine is ready and the graphical user interface is almost done . attached please find the updated network design optimization specification . it contains some additions and modifications to the old specification i sent you a while ago . the major changes are : 1 . the program now also supports ring design . and it can solve to optimality 2 . the graphical user interface is handled by visual basic on a pc . ( not on the web browser as in the previous spec . ) . please take a look at the specification document and let me know if there is anything you want to add / change / remove . . . etc . moreover , please do not forget to send us a test example . we are buying cplex and will install it on our network . hopefully our it teams can configure your machine to run it in a few weeks . - chonawee",0 +"Subject: dinner for summer interns vince , thursday , july 27 , seems to work for everyone for our summer intern dinner . i have also told this date to datren ainsley cantekin brad giuseppe and seville and asked mike roberts to tell his two summer interns . please let me know if we are overlooking anyone . stinson",0 +"Subject: re : london research group i ' d do it as soon as possible . your call on exactly when . regards richard vince j kaminski 27 / 07 / 2000 17 : 11 to : richard lewis / lon / ect @ ect cc : john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect , dale surbey / lon / ect @ ect subject : re : london research group richard , please , let me know what the timetable is . i would like to talk to anjam a few days before to break the news to him . i hope i can save him for the company and offer him a position in houston . we desperately need skills he has . vince richard lewis 07 / 27 / 2000 02 : 20 am to : dale surbey / lon / ect @ ect cc : john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect subject : re : london research group i agree with dale - no point in delaying . dale surbey 27 / 07 / 2000 08 : 13 to : john sherriff / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect subject : re : london research group john , i propose accelerating steve ' s move to head the research group here . it makes sense to include this as part of the mid - year prc process by giving him a tangible reward along with his performance feedback . thoughts ? - dale john sherriff 27 / 07 / 2000 06 : 44 to : vince j kaminski / hou / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect subject : re : london research group vince - i agree with your conclusion here . we are still trying to fill dale ' s structuring role as well so part of the question is how we announce steve ' s lead research role relative to when we know who will take dale ' s spot . perhaps we should just move forward with the steve announcement the day that dale moves full time to ebs . i will ask richard lewis to take the lead in working with you on finalizing the decision and communcicating the changes to the organization . but i do want to reinforce how pleased we are to have steve here . he is a wonderfull asset to our efforts . thanks ! john vince j kaminski 26 / 07 / 2000 22 : 18 to : john sherriff / lon / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , grant masson / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : london research group john , i am writing to you regarding the management of the london research group . as you know , dale surbey , who was managing the london unit of the research group , is moving to ebs . dale did a terrific job helping me to develop the pool of talent we have currently in london . given that dale is likely to be transfered to houston , it ' s time to nominate one member of the research group for a management position . my recommendation is steve leppard . steve emerged not only as the most technically qualified member of the group but also as a natural leader , highly respected by his peers and internal customers . steve has a very high energy level and is very efficient as a manager and as coach of new talent . his promotion is likely to cause anjam ' s departure form enron . i value technical skills of anjam , but in spite of my loyalty to him , don ' t think he is the same caliber as steve . however , i would not like to lose him and think about moving him to houston for 2 years . i think that the opportunity to work in houston , would be a sufficient incentive to keep him in enron . by the way , his performance feedback has greatly improved . please , let me know what you think . vince",0 +"Subject: re : thank you ! ! ! vince j kaminski @ ect 08 / 08 / 2000 09 : 56 am to : ashley baxter / corp / enron @ enron cc : subject : ashley , the web site address of the prof at berkeley i contacted . http : / / www . ieor . berkeley . edu : 80 / ~ oren / vince",0 +"Subject: reminder : all - employee meeting this is a reminder to join ken lay , jeff skilling and joe sutton for an all - employee meeting hosted in the london office on monday , feb . 28 , 2000 . the meeting will begin at 4 p . m . london time ( 10 a . m . houston time ) . ken , jeff and joe will discuss enron ' s year - end financial and operating results and the company ' s outlook for 2000 and beyond . using enron broadband services ' video streaming capabilities , the meeting will be streamed live to the desktop for employees in houston , omaha , portland , calgary , new york , stockholm , amsterdam and frankfurt . to view the meeting , you must have ip - tv and a sound card installed on your computer . if you are not able to view the meeting live using ip - tv , a videotape will be available after the meeting . u . k . and european employees may contact mary gopalan for a copy of the video . u . s . and other international employees may contact mary clark by email to reserve a copy . if you plan to watch the meeting using ip - tv , you can test your ip - tv prior to the meeting using the instructions below . if you experience technical difficulties , please contact your pc help desk . following are instructions for launching ip - tv by company lan and / or location : ei employees in three allen center - start menu . . . . programs . . . general information . . . iptv icon ees and omaha employees - start menu . . . . programs . . . cisco iptv viewer . . . iptv icon ena houston , corp houston , new york , calgary and portland ( does not include ebs and pge in portland ) start menu . . . programs . . . . iptv viewer icon london - menu option : start . . . programs . . . utilities . . . iptv viewer / frankfurt / stockholm / amsterdam - start menu . . . programs . . . cisco iptv viewer . . . cisco iptv viewer for the first time , the question and answer session will be open to all employees worldwide using espeak . you can submit your questions in advance on the espeak web site at ethink . enron . com or during the meeting from 4 to 6 p . m . london time ( 10 a . m . to noon houston time ) . ken , jeff and joe will attempt to answer as many questions as possible in the time available . all espeak questions and those submitted by london employees during the meeting will be included in an espeak transcript following the meeting . mark your calendar for this global employee communications event . see you there .",0 +"Subject: my model for spikes dear dr . kaminski , i was recently allowed to release into the public domain on the limited basis the first of the preprints that i recently authored on my model for spikes in power prices and for the valuation of the contingent claims on power . in this regard , i have just given a talk on this model at the joint seminar of the center for energy finance education and research and the institute for computational finance at the ut austin . right now i am also in the process of forming a list of specialists both in the industry and academia who might be interested in receiving this preprint . please let me know if you might be interested in receiving this preprint . i look forward to hearing from you . sincerely yours , valery kholodnyi manager of quantitative analysis research and analytics group txu energy trading ps . here are the main preprints that i have recently authored on my model for spikes in power prices and valuation of contingent claims on power : 1 . valery a . kholodnyi , the stochastic process for power prices with spikes and valuation of european contingent claims on power , preprint , txu - rag - 01 / 00 , july 2000 . 2 . valery a . khlolodnyi , valuation of a swing option on power with spikes , preprint txu - rag - 05 / 00 , august , 2000 . 3 . valery a . kholodnyi , valuation of a spark spread option on power with spikes , preprint txu - rag - 21 / 00 , november 2000 . 4 . valery a . kholodnyi , valuation of european contingent claims on power at two distinct points on the grid with spikes in both power prices , preprint txu - rag - 24 / 00 , november 2000 . 5 . valery a . kholodnyi , valuation of a transmission option on power with spikes , preprint txu - rag - 25 / 00 , november 2000 . as i have indicated to you in my previous e - mail , contrary to the standard approaches , i model spikes directly , as self - reversing jumps on top of a stochastic process for the regular dynamics of power prices in the absence of spikes . in this way the dynamics of power prices is modeled as a non - markovian process , even if the process for the regular dynamics of power prices is markovian . among other things my model for spikes allows for the explicit valuation and hedging of contingent claims on power with spikes , provided that the corresponding contingent claims on power can be valued and hedged in the absence of spikes .",0 +"Subject: fw : more energy amends fiona , ? please find attached a brochure for the advertisement of the book . ? it ' s similar to the other material we sent , so i ' m assuming it will need the same modifications . ? please pass along all the modifications as soon as possible . ? receiving the changes from enron is the ? only thing holding up the printing of the book . ? please let us know if there is anything that you need from us . ? sincerely , ? julie ? lacima group - lres energ der a 4 flyer 2 . pdf",0 +"Subject: james valverde - interview schedule attached you will find the interview packet for the above - referenced person . the interview will happen thursday , february 1 , 2001 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sasha divelbiss 58714",0 +"Subject: welcome to - energy news live dear vincent kaminski , welcome to energy news live - http : / / www . energynewslive . com ! you are receiving this email as a result of your recent registration . free energy news live membership we ' re glad you ' ve joined us ; we think you ' ll find enl an amazing business tool , with live , up - to the - minute news every hour on the hour of every business day . insight from actual traders . exotic and proprietary weather modeling . a new cross - commodity index . we ' ll break every energy headline around the world , and bring them right to your desktop . so sign on , leave it on , stay on top . and enjoy your membership to energynewslive . com , the first real - time energy network . also , thank you for your request to receive more information from energynewslive . com . keep checking your email for updates and special offers . if you did not request to receive special offers from enl please click here to de - activate : you have also indicated that you would like to receive a daily video wrap - up from energynewslive . com . if you did not request to receive a daily video wrap - up from enl please click here to de - activate : sincerely , the energy news live team",0 +"Subject: re : uc - berkeley graduate student thank you for your email . i look forward to hearing from you . sincerely , rajnish on tue , 24 oct 2000 vince . j . kaminski @ enron . com wrote : > > rajnish , > > we shall invite you for an interview in houston . > > vince > > > > > > > rajnish kamat on 10 / 23 / 2000 07 : 55 : 31 pm > > to : vkamins @ enron . com > cc : > subject : uc - berkeley graduate student > > > dr . vincent kaminski > managing director and head of research > enron corp . > > dear dr . kaminski , > it was a pleasure talking with you and attending your talk today . > i am a graduate student in industrial engg . and operations > research working with prof . shmuel oren > on topics in financial instrument pricing and design of > contracts in deregulated electricity markets . i am also > doing research in auction models and computable equilibrium > models with applications in electricity market design . > > i am planning to graduate with a ph . d . in may 2001 and would > appreciate hearing about any opportunities in your group at enron . > i am attaching at copy of my resume ( file : cvrkamat . doc ) for your perusal . > > thanking you , > sincerely , > > rajnish kamat > graduate student > ieor , uc - berkeley > > 4135 , etcheverry hall > dept . of industrial engineering and operations research > university of california at berkeley > berkeley , ca , 94710 > > ( see attached file : cvrkamat . doc ) > > >",0 +"Subject: interviewing for the associate and analyst programs the off - cycle department of the associate and analyst program is looking for volunteer interviewers for the following dates : thursday , november 9 th from 9 : 00 a . m - 12 : 00 p . m thursday , november 16 th from 9 : 00 a . m . - 12 : 00 p . m . thursday , december 7 th from 9 : 00 a . m . - 1 : 00 p . m . over 50 candidates will be interviewing over these 3 days . the candidates will be a combination of associates and analysts representing schools such as princeton , harvard , university of north carolina , notre dame , university of illinois , emory and many others . each candidate will have 4 interviews . pending the outcome of their interviews we will invite them to stay and attend super saturday that weekend . if for some reason we decide not to further pursue the candidate , we will fly them home that friday morning . also there will be continental breakfast at from 7 : 45 a . m . to 8 : 45 a . m . ( for all three dates ) and a luncheon from 12 : 30 p . m . - 2 : 00 p . m . ( on nov . 9 and nov . 16 th ) , the lunch will be at 1 : 30 for the dec . 7 th . interviewers are welcome to attend both the breakfast and the lunch on their interviewing date . the interviewing , breakfast and lunch will take place at the doubletree hotel downtown . we are asking enron employees associate ( associates who have been with the program for at least one year ) level or higher to volunteer at least one hour to interview candidates ( this will be 2 interviews ) . if you can volunteer for more than an hour or for more than just one of the stated dates , that would be great ! your help is needed ! please contact my assistant , cathy lira , at cathy . lira @ enron . com or x 54049 as soon as possible , if you can volunteer any time for interviewing . if you have any questions please do not hesitate to contact me . once again , thanks , althea althea p . gordon , jd recruiter associate & analyst programs",0 +"Subject: re : request for two powerpoint presentations from risk 2000 confe renc e i did not get the attachments . it may be better to send to my home email - - firewall issues . my home email is brysonpa @ hal - pc . org thanks allen > - - - - - original message - - - - - > from : vince . j . kaminski @ enron . com [ smtp : vince . j . kaminski @ enron . com ] > sent : tuesday , june 27 , 2000 7 : 56 am > to : r - allen . bryson @ usa . conoco . com > cc : vince . j . kaminski @ enron . com > subject : re : request for two powerpoint presentations from risk 2000 > conferenc e > > > allen , > > i responded to your message from home . > > please , let me know if you did not receive the attachments . > aol malfunctions sometimes . > > vince > > > > > > "" bryson , allen "" on 06 / 26 / 2000 09 : 17 : 07 am > > to : "" ' vkamins @ enron . com ' "" > cc : > subject : request for two powerpoint presentations from risk 2000 > conferenc > e > > > vince , > > i would like to receive copies of both your energy risk and weather > presentations from the risk 2000 conference in boston . > > thanks , > > allen bryson > conoco > > > >",0 +"Subject: re : enroncredit . com alex worked with jitendra on var review in the past . he did not strike me as a dynamic person . i cannot use him for my group , and i am lukewarm about getting him for research group . if bryan wants to hire him directly for his kmv experience , then we can work with him . vasant vince j kaminski 04 / 14 / 2000 03 : 55 pm to : vasant shanbhogue / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : enroncredit . com vasant , tanya any interest ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 14 / 2000 03 : 56 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - melanie doyle 03 / 10 / 2000 04 : 33 am to : vince j kaminski / hou / ect @ ect cc : brad mcsherry / hou / ect @ ect subject : re : enroncredit . com hi this guy has applied to credit . com in houston , i spoke to him yesterday and then passed my comments to bryan seyfried . bryan suggested he may be of interest to you . i let this this guy know that he would hear from us either way and if we want to pursue the application we would invite him for interviews in houston . please give me a call if you need more information . melanie 00 44 171 783 7740 . - - - - - - - - - - - - - - - - - - - - - - forwarded by melanie doyle / lon / ect on 10 / 03 / 2000 10 : 26 - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 08 / 03 / 2000 07 : 51 to : brad mcsherry / hou / ect @ ect cc : melanie doyle / lon / ect @ ect subject : re : enroncredit . com let ' s start getting these guys in to interview . melanie can do initial telephone interviews and then coordinate with brad to ensure we are seeing the best people . i would like to move as quickly as practical . bs from : brad mcsherry on 07 / 03 / 2000 13 : 17 cst to : bryan seyfried / lon / ect @ ect cc : subject : enroncredit . com - - - - - - - - - - - - - - - - - - - - - - forwarded by brad mcsherry / hou / ect on 03 / 07 / 2000 01 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - alexander . c . davidson @ us . arthurandersen . com on 03 / 03 / 2000 01 : 55 : 23 pm to : brad . mcsherry @ enron . com cc : subject : enroncredit . com dear mr . mcsherry : i am responding to your search for credit risk professionals on the enroncredit . com website . after working for seven years on credit risk management in a research and consulting capacity , i would like to transfer my experience in assessing credit risk modeling , information technology and methodology in complex top - tier institutions to an active credit trading managerial environment . i am excited about being involved in trading , origination , risk management and r & d of credit derivatives . i have seven years of experience in credit risk measurement and management . i have helped design , test and implement credit value - at - risk systems with kmv corp and with a major japanese bank . i was a major contributor at kmv in designing the expected default frequency model and i am thoroughly familiar with its assumptions , strengths , weaknesses and applications . i did the empirical research that lies behind the kmv default correlation model , the private firm edf model and i interfaced with j . p . morgan ( now r . m . g . ) personnel during the creation of the creditmetrics documentation . i have excellent analytical , quantitative , statistical and programming skills . i studied finance extensively when i was a graduate student and i studied credit risk theory while i worked with kmv and arthur andersen . i am eager to join the credit derivative team at enroncredit . com where i am certain that my combination of quantitative research skills , credit risk consulting experience and technology expertise make me uniquely qualified to support the credit derivatives trading and risk management function . i have included my resume with this e - mail . please e - mail me or call me at 201 - 420 - 0191 ( home ) and 212 - 708 - 4027 ( work ) so that we can discuss this opportunity further . ( see attached file : alex . doc ) * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it . - alex . doc",0 +"Subject: re : seeking opportunity in computational finance dear vince : thanks for your response . i am not a programmer , nor a "" quant "" . i am an expert in excel and otherwise have advanced skills in the remaining msoffice suite . beyond that i have extensive experience working with research and computer progamming personnel on projects from networks to databases , and in particular , automation . for instance , the first generation of the risk analytics system that i designed for quantlab was done in excel . in subsequent generations of the system , excel served only as the gui - given its extreme flexibility - and a sql database operated underneath ( compaq servers , raid array ) , integrating real - time operations for all components of the system . the research team at quantlab used many leading edge modelling methodologies , such as genetic algorithms , neural networks , principal component analysis , kernel density estimation , fast kernel regression , hidden markov modelling and many other pattern recognition , walk - forward back testing , and other simulation techniques . i was the sole individual on a team of 17 that had any practical trading experience , and therefore , felt that i played a critical role in the application and implementation of each of the system components from data mining to research to signal generation to execution . beyond that , i was uniquely qualified to articulate the project ' s mission to investors , and therefore , was highly successful in spearheading support - financial and otherwise - from our network . althought i did not ask specifically , i surmise from your question that you are leading a research effort . i believe that my skill set is best served as a liaison between research and trading , since i speak both languages . i believe that i possess great vision and enthusiasim that could be leveraged in a group , project or product management role to integrate and streamline diverse systems and processes ; a common scenario in most proprietary development settings today . in closing , i would like to learn more about enron and the financial technology effort therein through further discussion with you , or if that is not appropriate , someone to whom you would be comfortable referring me . i look forward to your thoughts . best regards , paul - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : tuesday , november 14 , 2000 4 : 30 pm to : epr @ pipeline . com subject : re : seeking opportunity in computational finance paul , can you give me more information about your computer skills ? my group is very hands - on oriented and computer programming is a critical skill . vince "" paul rowady "" on 11 / 14 / 2000 04 : 09 : 43 pm to : "" vince kaminski "" cc : subject : seeking opportunity in computational finance dear vince : in following up on my voicemail message today , i attach my resume below for your review and consideration . it ' s ironic that you called while i was putting the message together . i will keep it short and look forward to speaking to you at your convenience . best regards , paul e . paul rowady , jr . 2300 west alabama , suite 69 houston , texas 77098 713 - 807 - 8624 home / fax 713 - 539 - 4541 mobile epr @ pipeline . com ( see attached file : paul rowady 2 . doc )",0 +"Subject: re : interview with the enron research group you are quite welcome kin . we wish you the best in reaching your career goals and we look forward to hearing from you in the future . regards , shirley crenshaw administrative coordinator enron research group "" kin tso "" on 11 / 01 / 2000 12 : 52 : 02 pm to : cc : subject : re : interview with the enron research group dear shirley , thank you so much for your email . after carefully considering my career goals , i feel the associate program with a rotation in the enron research group is a better fit . i am really interested in enron and i would try to contact your colleagues in the associate program about this issue before i schedule an interview with the enron research group . i truly apologize for the inconvenience caused and i want to thank you again for your kind assistance . regards , kin tso 512 - 619 - 5323 - - - - - original message - - - - - from : shirley . crenshaw @ enron . com sent : tue 10 / 31 / 2000 12 : 16 pm to : kin tso cc : vince . j . kaminski @ enron . com ; stinson . gibner @ enron . com ; zimin . lu @ enron . com ; tanya . tamarchenko @ enron . com ; molly . magee @ enron . com subject : interview with the enron research group good morning kin : your resume was forwarded to the research group with enron north america and they would like you to come in for an informal interview sometime next week . the following dates and times are available within our group . please let us know if either of these two dates fit your schedule . monday , november 6 th : 8 : 00 am to 11 : 30 am friday , november 10 th : 8 : 00 am to 11 : 30 am since we prefer these interviews to begin at 8 : 00 am , it would probably be best if you came the night before , spent the night at a hotel downtown and then were able to be at the enron bldg by 8 : 00 am . please let me know if this is what you would like to do and we will make the hotel reservation . i look forward to hearing from you . best regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 - winmail . dat",0 +"Subject: letter to academics vince , ? hi , sorry to bother you , but was wondering if you ' ve heard anything about seeking approval to use the text in the letter i sent last week ? ? we would like to send this out early next week so if you know of someone who i should contact within corporate communications , please let me know . ? thanks , and hope all is well . ? julie",0 +"Subject: re : update - meteorologist search great work mike ! i will arrange interviews with the london folks while i ' m there . jen from : mike a roberts 12 / 14 / 2000 09 : 54 am to : jennifer fraser / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , jose marquez / corp / enron @ enron , stephen w bennett / hou / ect @ ect subject : update - meteorologist search we have identified two good candatites who would be available for a london interview the week of the 18 th : 1 . kerryn hawke 2 . stephen cusack also strong but not available for that week is 3 . piero chessa ( working for ecmwf in italy ) we have a couple others here in the states if the london interviews don ' t work out . i am forwarding under separate cover kerryn and stephen ' s cv ' s with telephone numbers to jen - - - mike",0 +"Subject: re : introduction i would be very happy to participate . thank you for thinking of us .",0 +"Subject: re : grades thank you ! ? you have been wonderful to work with this semester . stay in touch and we ' ll see you next year . - pam ( 713 - 348 - 6223 ) at 10 : 33 pm 5 / 4 / 01 - 0400 , vkaminski @ aol . com wrote : pam , the students resent the documents . the group members : rakhi israni felix feng lu winny so orlandotaylor sanjay wankhade ning zhang grade : a separately , i think i have sent you already : jeffrey planck grade : a please , confirm this message . vince kaminski",0 +"Subject: re : request for payroll reclassification - approved joann , yes , sorry . 413 was the number on the form i received . vince enron property & services corp . from : joann holloway 01 / 11 / 2000 02 : 01 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : request for payroll reclassification - approved vince , on your reclass information , the company number indicated should be 0011 not 413 . jo ann holloway x 35957 vince j kaminski 01 / 11 / 2000 01 : 33 pm to : stella l ely / hou / ect @ ect cc : jeff kinneman / hou / ect @ ect , carmen chavira / hou / ect @ ect , michelle hargrave / hou / ect @ ect , stephen wolfe / hou / ect @ ect , michael s galvan / hou / ect @ ect , gary mccumber / hou / ect @ ect , billie akhave / epsc / hou / ect @ ect , joann holloway / epsc / hou / ect @ ect , louis allen / epsc / hou / ect @ ect , bradley stewart / hou / ect @ ect , carol coats / hou / ect @ ect subject : request for payroll reclassification - approved the following payroll reclassification request has been approved . click on this link to view document - - >",0 +"Subject: following our stanford relationship hi vince , i talked to tom gros today and metioned our desire to estabilish a strategic relationship with nick bambos and his research effort . tom is very excited about the idea and was willing to cut the check . i suggested that we have more of a strategic relationship in mine ( enron / stanford ) and he agreed to that as well . tom mentioned that greg whalley was interested in estabilishing such a relationship . vince , could you follow this up and ground this ? if you need any help in doing the leg work , i ' ll happy to do that . tom is excited about ebs research ' s role to support all of ebs including bandwidth trading . he seems very interested in being our sponsor on the ebs side . that would be very beneficial to us since he is involved in all senior management decision through kevin hannon . vince , i would suggest that you try to setup a meeting with kevin hannon and tom to discuss this further . tom is also very interested in the new product development effort that larry and i have been kicking around for some time . he wanted us to sit back and think of structured products with better margins that blend & extend that they are selling . he wanted to know now much more resource that we need in that front . for this , i would like to get someone like meera natarajan . she is an originator currently working in ees and have talked to zimin and stinson . she is sufficiently analytical with commercial mind set to help with new product ideas and to ground them . regards , ravi .",0 +"Subject: fyi due to the out of town deliveries , our cost for christmas baskets will be over somewhat from the total estimated . thanks kevin moore",0 +"Subject: enron / stanford program hello vince , stinson , thank you very much for hosting my visit at enron . i had a very pleasant time there , and i found the meetings very informative . as discussed during my visit at enron , i am sending you below a draft of the letter that would be needed to get the program in place and rolling , and start the students working on it . it took a while to find out what the appropriate process was and how the letter should be structured . sorry for the delay . if i may , i ' d like to visit enron again , sometime in august , to define the research agenda more precisely and prioritize the problems to look at . i ' m in frequent contact with giuseppe , who is impressed by the environment there . we are trying to formulate the research issues and problems to study , that would be of interest to enron . the plan is this : 1 ) by august , giuseppe will have been there for almost 2 months and will probably have a relatively good understanding of the enron problem space . 2 ) i will work together with giuseppe till august to formulate a set of good problems of : a ) high practical importance b ) high innovation potential c ) serious scope . 3 ) i could visit in august ( say mid - august or so ) to : a ) discuss these problems with you and get your feedback b ) prioritize the problems and evaluate their impact c ) make sure we ' re on the same page regarding research strategy and execution path . i hope we can fully set up the program at stanford before then , so that i can bring on board one more ph . d . student to start his doctoral work in this area . i ' m all excited about our collaboration . i am even thinking of starting a research seminar at stanford , specifically on these research issues ! talk to you soon . best regards , nick draft of letter to be sent from enron to stanford . prof . nicholas bambos 420 terman engineering center management science & eng . dept . and electrical engineering department stanford university stanford , ca 94305 dear nick , we are happy to provide gift funds of $ 100 , 000 per year , over three years , to support a program in your research group , related to bandwidth markets / trading and networking technologies . enron would like to support research activities in the above mentioned area , including pd . d . student work , research seminars etc . there may also be opportunities to have the supported ph . d . students do summer internships at enron , related to their research interests . please find enclosed a check of $ 100 , 000 payable to stanford university for supporting this research effort in your group during the first year . best regards , name and title",0 +"Subject: enron global finance org changes recently , jeff mcmahon , executive vice president and treasurer of enron corp . , accepted the position of chief commercial officer of enron net works . jeff ' s many accomplishments at enron global finance ( "" egf "" ) include over $ 30 billion of closed financings and an upgrade of enron ' s credit rating by moody ' s to baal . we wish jeff well in his new endeavor . ben glisan , vice president and head of egf ' s structured finance business , will assume jeff ' s responsibilities as vice president and treasurer of enron corp . ben joined enron in 1996 from arthur andersen where he was responsible for managing structured transactions with enron . prior to arthur andersen , ben worked at coopers & lybrand providing accounting and finance services principally to financial institutions . ben will be a member of the enron corp . executive committee . for additional details regarding egf ' s organizational changes , please see the attached memo .",0 +"Subject: re : ewrm outline vince thanks - based on a "" speed read "" it would appear that srm sits neatly in the volumetric part of your framework . regarding systems i am keen to preserve the work kevin has already done and i suspect we can eventually use the visualization tools in the risktrac front end to display the results should we require . to be honest , i feel a good deal more comfortable that there is already a framework and initiative in place - its very easy to feel like the "" angry lone voice "" in an effort like this - fortunately the practitioners of the art of risk management generally travel in a similar direction ! i shall make sure our efforts remain in congruence . rgds dp vince j kaminski @ ect 10 / 27 / 2000 04 : 21 pm to : david port / market risk / corp / enron @ enron cc : subject : ewrm outline david , this is the outline of the ewrm project . vince",0 +"Subject: enron research and ebs engineering and operations group technical forum joe , i would like to invite you to an off - site meeting of john griebling ' s organization and the research group . date : april 27 - april 29 location : breckenridge , colorado as you know , john griebling is managing the network design and construction project currently under way in ebs . the research group is actively involved in this effort which requires advanced quantitative skills in the area of stochastic optimization and stochastic processes ( for modeling and forecasting internet traffic flows ) . the objective of this meeting is to develop common language and accomplish transfer of skills between the two groups , to facilitate cooperation on this project in the future . we are inviting ken rice and kevin hannon to this meeting . we would appreciate if you could speak , together with kevin and ken , on strategic directions of ebs . it is important for a group of technical people , with relatively specialized technical skills , to understand the big picture . i am attaching the preliminary agenda for this meeting . vince kaminski",0 +"Subject: pac enrollment last year the enron political action committee ( pac ) launched a campaign to become a "" million dollar pac "" . enron employees , who provide all of the funding for the pac , responded and the enron pac reached its objective , becoming one of the largest corporate pacs . this year we face a new challenge . with the sale of eog , the announced sale of pge and normal employee turnover , we have lost a significant number of consistent contributors . we are seeking your support . if you are not a member , please join . if you are a member , we hope you will consider increasing your contribution . the enron pac is an essential tool in our effort to promote sound public policy . our pac funds support local , state and federal candidates , of both parties , who support open markets , deregulation and customer choice . amounts contributed may be used to make political contributions in connection with federal and state elections and are subject to the limits of the federal election campaign act . while our pac has grown thanks to our employee contributions , it still generates just a fraction of the expenditures of those who oppose these ideals . this year , as always , we face challenges and opportunities for every one of our businesses , including such issues as taxation and regulation of e - commerce , electric industry restructuring , regulation of derivatives , international trade and investment legislation , pipeline safety , local and state decisions affecting the siting and interconnection of power plants and a variety of environmental and tax issues . enron has a long and successful track record of supporting and advancing good public policy . that track record depends on access to and regular communication with , decision makers . the pac provides that access - - it shows policy makers that real voters care about what they are doing . one of the best things about enron is that we don  , t just take things as they are . we challenge the status quo . we ask why . we change things . the pac helps us do that . we need you to help the pac . sign up today - and please consider the following contribution guidelines : manager $ 500 / year director $ 750 / year sr . director / general manager $ 1 , 000 / year vice president $ 2 , 500 / year sr . vp / managing director $ 3 , 500 / year executive committee $ 5 , 000 / year all contributions are voluntary and these guidelines are merely suggestions . you are free to contribute more or less than the guidelines suggested and enron will not favor or disadvantage anyone by reason of the amount of their contribution or their decision not to contribute . you may refuse to contribute without fear of reprisal . only u . s . citizens and resident - aliens living in the u . s . can contribute to the enron pac . the maximum contribution is $ 5 , 000 per year per individual . an individual may not contribute more than $ 25 , 000 to all federal candidates and committees within a calendar year . the law requires that enron report name , address , employer and occupation for every person who contributes over $ 200 / year . no portion of any contribution is deductible as a charitable contribution for federal income tax purposes . thanks for your support ! sign up now , or revise your current contribution level by connecting with the pac intranet site : http : / / pacmembers . enron . com",0 +"Subject: precious metals var jason , after our brief discussion last night i think i should discuss a few of the issues i have with respect to calculating a var on the deal that you are proposing . the var model , as i illustrated , is set up to accept a term structure of delta positions , prices and vols and it may be difficult to translate the ' silver mine ' position into these inputs . i do not think that we can simply take the net silver content of the mine and then make some assumptions about vol and price . the var model also assumes a certain amount of liquidity in the market and a 1 day holding period . to do this properly i would need to understand fully how the deal is priced as these sensitivities are ultimately what will effect the change in mtm in the future and that is essentially what var is supposed to predict . if you need me to work on this then you need to contact steve who will help to prioritise my time . i will also need to consult with vince kaminski and tanya tamarachenko in houston for advice . rac will also assist in the process . please contact me if you have any further questions , kirstee x 34529",0 +"Subject: re : stanford mba - interview hi vince , unfortunately , i have not heard from him . he also forwarded his resume to mauricio mora , who asked if we could interview him . when i asked celeste about it back then she decided against it . if you need some help tracking him down , let me know . thanks , althea vince j kaminski @ ect 04 / 16 / 2001 01 : 53 pm to : althea gordon / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : stanford mba - interview althea , i was trying to get in touch with this guy . did he contact you by any chance ? he missed the interviews on the campus . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" seade , juan j . "" on 03 / 19 / 2001 01 : 15 : 56 am to : "" ' vkamins @ enron . com ' "" cc : subject : stanford mba - interview dear vincent , as i told you on the phone on friday , i am very interested in a summer internship at enron . i would like to point out that i want to pursue a career in trading , and i am especially interested in derivatives . given that enron is a pioneer in the market making of energy , broadband and weather derivatives , i find it a company i would be most interested in working for . i believe that you will find my background of interest to your firm , and i hope to be interviewed by yourself and other colleagues of yours . i have final exams from march 19 - 22 , but would be most willing to travel to houston for interviews any time from friday march 23 rd onwards . i hope to hear from you soon . best regards , juan seade mba class of 2002 stanford business school 796 escondido road apt . 29 c stanford , ca 94305 tel : ( 650 ) 497 - 3705 email : jseade @ stanford . edu > - resume juan seade . doc",0 +"Subject: credit risk update vince , per bill ' s request , attached is the credit supplement from the board meeting . stephanie 3 - 9283",0 +"Subject: re : e - commerce & continental europe anjam , this would be a good opportunity to update the content on the intranet site and expand the coverage into new areas . can you arrange some it resources for us ? if everyone in research works on developing the content , we just need it to publish it out to the intranet . thoughts ? ? - dale enron europe from : anjam ahmad 15 / 06 / 2000 10 : 01 to : sven becker / fra / ect @ ect cc : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , joe gold / lon / ect @ ect subject : e - commerce & continental europe hi sven , thanks a lot for your note - i think it would be great to see what we can do to help you & joe ' s business units . plenty of our knowledge is no longer proprietary in that quite a lot of this information is now in the public domain - we can sit down and discuss this on thursday afternoon if that works for you . regards , anjam x 35383 sven becker 14 / 06 / 2000 19 : 10 to : anjam ahmad / lon / ect @ ect cc : clemens mueller / lon / ect @ ect subject : re : research group intranet site anjam , congratulations on your initiative . i appreciate that you share this information throughout enron . as you may know , my group is working with joe ' s business units to create so - called market hubs . i see great potential in sharing some of the information that you have acucmulated and that is not proprietary to enron . i would appreciate if we could sit down tomorrow and talk about the possibility to leverage on the existing know - how . regards sven please respond to anjam ahmad / lon / ect to : ect europe cc : subject : research group intranet site research group intranet site following the recent lunch presentations , there has been considerable interest from enron europe staff in improving their quantitative skills , helping to maintain our competitive advantage over competitors . we have recently created the research group ' s intranet site which you can find on the enron europe home page under london research group . the site contains an introduction to the group and also information on : derivatives pricing risk management weather derivatives extensive links weather derivatives credit risk extensive links database if you have any questions or issues on quantitative analysis ( including hedging and risk management of derivatives ) please don ' t hesitate to get in touch . regards , anjam ahmad research group first floor enron house x 35383",0 +"Subject: march ny real options conference please find attached the final program for an exciting conference on "" real options valuation in the new economy : internet / e - commerce , r & d / pharmaceuticals , energy . "" the conference , organised in new york city march 13 - 15 by the real options group and co - sponsored by ernst & young llp , is addressed to a corporate audience . the chairman of the conference is prof . michael j . brennan of ucla who will deliver the opening address , and the keynote speaker is prof . stewart c . myers of mit . many of the world / s thought leaders in real options analysis , along with prominent experts from many leading corporations will also share their ideas and experiences . please note that the deadline for hotel registration is february 21 ( see the attached brochure for hotel details ) and conference fees increase by 20 % for those registering after march 1 . the ( full ) conference brochure and on - line conference registration are available at our website www . rogroup . com we hope that you will be able to participate and would appreciate it if you could also communicate this announcement among other interested colleagues . in fact , it would be most helpful to us and would be greatly appreciated , if you could send me ( also cc . to amicaliz @ sda . uni - bocconi . it ) a list of 5 - 10 colleagues to whom we can send the electronic version of the brochure . best wishes , lenos trigeorgis president , real options group - rognyconference . pdf lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: contacts at uh for "" econo - physics "" vince , these are the contacts from uh . i would recommend that for a first contact the following people be involved : larry pinsky ( physicschair ) joe mccauley ( professor ) george reiter ( professor ) their coordinates and some schedules are below . if larry is out of town , prof . gunaratne would be a good alternative . please let me know how i can help further . yannis - - - - - - - - - - - - - - - - - - - - - - forwarded by yannis tzamouranis / hou / ect on 05 / 08 / 2000 03 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" prof . lawrence pinsky "" on 05 / 08 / 2000 09 : 10 : 54 am to : yannis . tzamouranis @ enron . com cc : jenni @ mailman . enron . com , jmccauley @ uh . edu , greiter @ uh . edu , gemunu @ uh . edu subject : contacts at uh for "" econo - physics "" yannis : let me give you the names and contact information regarding the appropriate personnel here to include in an initial discussion regarding the prospects for developing a program here in ( we have to find a better name ) "" econo - physics . "" for an initial meeting it is reasonable to include professores mccauley and reiter as well as myself , if i am available . if i am not available you should consider including professor gemunu gunaratne , our current associate chair and a theoreticial with an interest in this area in his own right . professor joseph mccauley phone : 713 743 3528 fax : 713 743 5389 email : jmccauley @ uh . edu professor george reiter phone : 713 743 3527 fax : 713 743 3589 email : greiter @ uh . edu professor & chair lawrence pinsky phone : 713 743 3552 fax : 713 743 3589 email : pinsky @ uh . edu or an alternate for me : associate professor and associate chair gemunu gunaratne phone : 713 743 3534 fax : 713 743 3589 email : gemunu @ uh . edu also , fyi , one other new faculty member with a potential interest in this field is : assistant professor ( effective 6 / 1 / 2000 ) kevin bassler phone : 713 743 3568 fax : 713 743 3589 email : bassler @ uh . edu general administrative contact : ms . jennifer chin - davis , department business administrator phone : 713 743 3524 fax : 713 743 3589 email : jenni @ shasta . phys . uh . edu fyi , i will be in houston may 17 - 24 , june 9 , 19 - 23 . if the meeting is held on another date , please include prof . gunaratne in my place . . . larry",0 +"Subject: re : hari , i shall send you a reprint of the article . i had to cancel my presentation at san antonio . vince shirley , please , send a copy of the article to hari . hari natrajan on 02 / 28 / 2001 06 : 45 : 29 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : dear mr . kaminski , i am a doctoral student at the indian institute of management bangalore , india . my area of interest is the energy sector , especially electricity derivatives . i am interested in obtaining a copy of the following items : 1 ) your presentation "" current challenges in modeling power price volatility "" at the session on price volatility & probabilistic methods in the energy markets . ( http : / / www . informs . org / conf / sanantonio 2000 / / talks / md 29 . html ) 2 ) your chapter "" the challenge of pricing and risk managing electricity derivatives "" in the book ' the us power market ' , risk publications . i would appreciate it if you could send me a soft / hard copy of the same . thank you , yours sincerely , hari natarajan fellowship student indian institute of management bangalore bannerghatta road bangalore 560076 india tel : 91 - 80 - 6993056 fax : 91 - 80 - 6584050 e - mail : hnatraj @ iimb . ernet . in",0 +"Subject: fw : london work hi , how are you ? london seems to be the same as when i left in august - no sun , cold , serious looking people , expensive , etc . in addition , we have had may day riots , a post office bombing , train strike , etc . not to mention all the excitement in enron credit . it would be nice to know who i am supposed to be reporting to . i am getting loads of conflicting messages - as illustrated in the forwarded email from vasant . according to you and slava , the strategy paper / duffie report seems to be a higher priority . however , vasant seems to indicate ( in his forwarded email ) that this is not the priority at the moment . in addition , there seems to be lots of chaos in enron credit - not only in the houston office , but even more so in the london office . this brings to mind a russian proverb i learned from slava when he expressed his views on the current state of enron credit - "" a fish rots from the head . "" finally , i would like to know exactly what you want me to write in this duffie report : do you want to hear what enron credit would like to hear - that all they need is for us to develop a private firm model for their exisiting "" infrastructure "" ? or do you want to hear what i really see , hear , read , etc . ? if the latter is true , then i may need to write two reports , because what i am learning does not look too good and would probably not make the enron credit personnel too happy . well , i think i have said enough for now . look forward to your feedback . thanks , iris - - - - - original message - - - - - from : shanbhogue , vasant sent : friday , may 04 , 2001 3 : 39 pm to : mack , iris cc : dhar , amitava subject : london work hi iris , amitava must have told you that both he and i are getting swamped with work here . as a result , we expect you to take the lead in scoping the enron credit project and making sure the infrastructure is readied . you should also make sure to understand the econometric / data analysis software side of the project - - this is probably more important than preparing a document for duffie right now . you should definitely sit with ben / george and actually run the software with them to get a feel for how it is to be used . but we also need to be able to try out potential other ways of analyzing data . both amitava and i will help as best as we can , and answer any direct questions , but we will have limited time to review documents , etc . i expect amitava to get heavily involved once data starts coming , but we expect you to have already set up the infrastructure etc for the data . hope the trip is going well . would you be extending the trip for some more time ? vasant",0 +"Subject: re : energy conference mark , we are really swamped and i would like to keep our involvement in conferences to a reasonable minimum . i can promise that we shall help you with a future conference if it happens to be in houston . vince mark thabet on 01 / 10 / 2000 12 : 58 : 56 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : energy conference vince : i am sorry to hear about your scheduling conflict . your expertise would have been a great value to our conference . is there anyone else at your company whom you could recommend as a speaker ? thanks again for your time . mark thabet vp , energy shirley crenshaw subject : re : energy conference mark , i am sorry to inform you that due to a scheduling conflict i cannot speak at this conference . i want to thank you for considering me as a speaker . vince kaminski mark thabet on 01 / 06 / 2000 09 : 36 : 23 am to : vince j kaminski / hou / ect @ ect cc : subject : energy conference vince : i have attached a rough draft of the agenda with the topics being considered for the conference . it is being held in washington , dc on june 19 - 20 , 2000 . if your schedule allows , please join our speaking faculty . you will notice that the topic on "" forecasting and measuring your exposures to energy price risk "" is not currently on the agenda . we can add it once you have a chance to check your schedule . i also ask that you make recommendations of any colleagues or industry professionals who can add expertise to the conference as well . if you have any questions or concerns , please do not hesitate to contact me at 212 - 661 - 3500 x 3181 . i look forward to hearing from you . thank you once again for your time and assistance . > mark thabet vp , energy & utilities division institute for international research 708 third avenue , 4 th floor new york , ny 10017 t : 212 - 661 - 3500 x 3181 f : 212 - 599 - 2192 >",0 +"Subject: organization announcement enron purchases billions of dollars of products through its wholly owned subsidiaries and venture companies worldwide . historically , the company has conducted these purchases in a highly fragmented , decentralized manner allowing each of the operating units the discretion to source their requirements in a manner that optimizes unit performance . today , however , with the implementation of sap and the profound explosion in internet / intranet - based technologies , we believe the company should change its direction and focus on aggregating its demand for goods and strategically sourcing these requirements on a global basis . we believe that there are significant cash savings to be extracted by the company and also commercial potential for the formation of a highly profitable , business - to - business e - commerce venture . effective february 1 , 2000 , enron will form a new global strategic sourcing unit . this new unit will consolidate the current successful strategic sourcing initiatives underway in the gas pipeline group , global asset operations and enron corp . initially , global strategic sourcing will focus on aggregating enron  , s internal , joint venture and business partner demand for products and services with the objective of creating a future business - to - business e - commerce venture . it gives us great pleasure to announce that george wasaff , managing director , will lead this new global initiative . george will report directly to mike mcconnell , chief executive officer for global technology . george has been with enron for fourteen years and has held many senior executive positions , the most recent of which was managing director of enron south america ' s wholesale operations . george was also the interim chief executive officer of elektro from july 1998 through june 1999 and chief executive officer of transportadora de gas del sur s . a . ( "" tgs "" ) from june 1995 through february 1998 . george has also held numerous commercial positions including vice president and country manager , mexico for enron international and vice president of marketing for transwestern pipeline company . please join us in supporting this new global initiative and congratulating george in his new role with the company .",0 +"Subject: eol wti historical trade simulation - more profitable trading strategy please ignor my previous mail regarding the same issue , which contains some typos . greg and john , i found that by reducing the volume per trade and increasing daily number of trades ( keeping the total volume per day constant ) , we can be more profitable . this is partially because in a trending market we lose less money by following the market more closely . for example , suppose market move from $ 30 to $ 35 . if per trade volume is 10 , 000 bbl and the half bid - offer spread is $ 1 for simplicity , we take 5 trades of short positions , the total mtm for that day is ( - 5 - 4 - 3 - 2 - 1 ) * 10 , 000 = - $ 150 , 000 and total trading volume is 50 , 000 bbl short . if per trade volume is 50 , 000 bbl , we take one trade , the total mtm is - 5 * 50 , 000 = - $ 250 , 000 . thus the net difference between the two trading strategies is $ 10 , 000 for that particular day . therefore it seems that by reducing per trade volume and increasing the number of trades , we can be more profitable as a market maker . i rerun a scenario that stinson sent to you on dec . 27 where he used per trade volume of 30 , 000 bbl . i reduce the number of trade to 10 , 000 while increasing the number of trades by factor of 3 . almost in all cases , i saw increased profitability . see the colume marked "" change "" for dollar amount change in millions . please let stinson or me know your thoughts on this . regards , zimin lu x 36388 as compared to",0 +"Subject: an apology kevin - i need to apologize to you for speaking out - of - turn yesterday about work - in - progress . any model our group has of the natural gas system remains completely untested and unvalidated . i have not been asked by any one of my superiors , vasant or wince , to give advice to anyone at enron concerning natural gas ; i am not an expert in trading natural gas . my work exists within a large and professional group , and , to the point , vince alone will decide when , and if , any gas model is suitable for dissemination within enron . sincerely , clayton vernon manager , research",0 +"Subject: friday off - - - - - - - - - - - - - - - - - - - - - - forwarded by maureen raymond / hou / ect on 05 / 31 / 2000 02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - leandro ibasco @ enron 05 / 31 / 2000 09 : 59 am to : shirley crenshaw / hou / ect @ ect , vanessa carranza / corp / enron @ enron cc : vasant shanbhogue / hou / ect @ ect , harry arora / hou / ect @ ect , suresh raghavan / corp / enron @ enron , jeff bartlett / hou / ect @ ect , maureen raymond / hou / ect @ ect subject : friday off hi , please note that i will be taking a vacation day on friday , june 2 to study for the cfa exams . regards , roy",0 +"Subject: lng "" book "" meeting hello bjorn : vince wanted me to include you in this meeting also . hope you can come . shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 30 / 2000 07 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 08 / 29 / 2000 09 : 06 am to : sally beck / hou / ect @ ect , eric groves / hou / ect @ ect , doug . arnell @ enron . com , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : lng "" book "" meeting hello everyone : the next lng "" book "" meeting has been scheduled for wednesday , september 6 at 2 : 00 pm in ebl 9 c 2 . thanks ! shirley crenshaw 3 - 5290",0 +"Subject: var david , during today ' s var coordination meeting we had a discussion of issues related to mapping of the forward price curves into core locations . mapping is a necessity dictated by the limitations of the computer system : we have to reduce the dimensionality of the problem to stay within the bounds of available cpu memory . also , in some cases the quality of price discovery is poor and it ' s difficult to model the price curves independently : we solve the problem by mapping them into more liquid and better behaved core locations curves . we have agreed on the following : 1 . winston will investigate the it side and determine to what extent we can increase the number of forward price curves that are simulated as basic ( core ) curves . he will investigate the impact of a larger number of the core curves on the time required to complete the var run . 2 . the curves associated with the biggest 10 - 20 positions in each commodity should be modeled as core curves ( i . e . no mapping into other locations ) . it makes sense to monitor the biggest risks separately and avoid aggregating them into less transparent aggregates . 3 . the results of an automated clustering ( mapping ) procedures should be systematically monitored by a human and corrected if they misrepresent the risks of the trading positions . this responsibility should be vested with one person ( right now the responsibility is dispersed through the organization and this means in practice that nobody is responsible ) . research can allocate one person to this task ; cooperation of trading and rac will be critical . vince",0 +"Subject: re : action learning project and enron tour hi vince ! i ' ll call you monday to further discuss this ! i ' ll be heading to atlanta for a forbes conference and meeting at emory , but will call you at my first opportunity ! thanks for the information about the meeting with bob ! thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 11 / 04 / 2000 11 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 11 / 02 / 2000 01 : 55 pm to : christie patrick / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , vkaminski @ aol . com subject : re : action learning project and enron tour christie , let ' s meet to discuss this project . i need more information from you about it . by the way , i shall meet bob westbrook on wednesday to discuss unrelated issues . vince christie patrick 11 / 02 / 2000 12 : 33 am to : cmiller @ rice . edu , cindy derecskey / corp / enron @ enron , michael b rosen / hou / ect @ ect , steven j kean / na / enron @ enron , vince j kaminski / hou / ect @ ect , grwhit @ rice . edu , westbro @ rice . edu , mark palmer / corp / enron @ enron cc : subject : action learning project and enron tour hi carrie , it was great meeting with you and dean whitaker again last friday , as well as mr . westbrook . as we discussed , i have submitted the action learning program materials to vince kaminski , our managing director of risk analysis and corporate research . i ' ll be following up with him , and his recommendations for project proposals next week . also , i ' ve discussed with our university affairs team setting up the faculty tours - - we ' re ready when you are ! ! the sooner the better - - i ' d love to get these in pretty immediately , and in any event , before the reception at the end of the month . i "" ll have cindy derecskey in my group email you - - she is prepared to set these tours up . i look forward to continuing to develop the multiple potential dynamics of the enron - rice relationship ! thanks ! - - christie . ps : thanks so much for the crystal rice owl - - my participation as a judge in the rice invitational case competition was my pleasure indeed ! - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 11 / 02 / 2000 12 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - carrie miller on 11 / 01 / 2000 12 : 47 : 17 pm to : christie _ patrick @ enron . com cc : grwhit @ rice . edu , westbro @ rice . edu subject : action learning project and enron tour christie , i enjoyed visiting with you last week at the jones school . thanks for taking time to come see us . i wanted to follow up with you regarding the action learning project program and enron tour . we hope to have enron as part of the program in 2001 . please let me know how i can help make this happen . i look for the program to be full before the deadline of december lst . also , i am happy to help organize a group to tour enron . if you were to participate in the alp program , january / february might be a good time to put something together with key faculty and the alp team . let me know your thoughts . again , many thanks for your continued support of the jones school . i look forward to hearing from you soon . carrie = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = carrie chamberlin miller director of mba program jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 5260 fax : ( 713 ) 348 - 5251 e - mail : cmiller @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: re : corporate allocation from enron research group vera : vince wants to talk to becky pham before we do this - i have a call in to her for a short meeting . i will let you know as soon as possible . thanks ! shirley 12 / 07 / 2000 11 : 21 am vera apodaca @ enron vera apodaca @ enron vera apodaca @ enron 12 / 07 / 2000 11 : 21 am 12 / 07 / 2000 11 : 21 am to : shirley crenshaw / hou / ect @ ect cc : subject : corporate allocation from enron research group shirley , i just talked to you over the phone and here is the information : the adjustment total is $ 135 . 6 . nng receives a credit of $ 109 and tw $ ( 26 . 6 ) . pls make sure it gets into the december business . thanks . - - - - - - - - - - - - - - - - - - - - - - forwarded by vera apodaca / et & s / enron on 12 / 07 / 2000 11 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kimberly watson 12 / 06 / 2000 02 : 07 pm to : pinnamaneni krishnarao / hou / ect @ ect , vera apodaca / et & s / enron @ enron cc : subject : corporate allocation from enron research group krishna , attached is a spreadsheet with the figures we discussed earlier . for july - dec , ets will keep half of the amount allocated ( equivalent to 1 . 5 employees , $ 135 . 6 ) from the corporate allocations to ets . if this looks ok to you , i would like to have vera work with shirley to handle the accounting adjustment similar to mid year . many thanks , kim . vera , here is the year 2000 spreadsheet . as you will see , we will need to work with shirley crenshaw ( x 35290 ) with enron research group to coordinate a similar accounting adjustment to the one we made mid year . i will send the year 2001 budgeted spreadsheet to you in the next few days ( just in case it changes with the approval of the science workorder ) . please call me if you have any questions about this spreadsheet . thanks , kim .",0 +"Subject: times 2 filing units pat : recently , i talked with you about ordering another filing unit . it turns out that we need 2 more filing units . please order them the same size as the floor to ceiling cabinet we have . have the inside of the cabinets configured as follows : 1 cabinet should have 5 shelves 1 cabinet should have 6 shelves when interstore was here today reconfiguing 2 of our existing cabinets , they removed 8 shelves that they are going to use on these new units . please price these 2 new units and charge them to co . # 0413 , rc # 107043 . please let me the prices and approximate delivery date . also , let me know if you need anything else . thanks . anita",0 +"Subject: london exotica library migration fyi - exotic library : issue : the london version is different from the houston version . the problem is that some bugs in the london version were found . temporary solution : bugs were immediately fixed at a local level . permanent solution : the london exotic version will be replaced by the houston exotic version . the houston version is expected to be robust . sharad ( london research ) is spending this coming week in houston . when sharad is back to london , the houston version will replace the london version . approach : steven leppard is designing a regression testing procedure that will involve it to fully test the similarity of the two versions . the procedure is expected to take at least one month from commencement . hopefully , no discrepancies will be found . in the adverse case it happens , it will be necessary to conduct an analysis to decide what is wrong . if necessary further testing and development has to take place . rodrigo",0 +"Subject: java for managers ! ! ! vince , durasoft ( who just taught the java class for our group ) offers a 3 - day short course in java for managers . details are below , if you are interested . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 16 / 2001 12 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" siva thiagarajan "" on 04 / 16 / 2001 11 : 25 : 50 am please respond to "" siva thiagarajan "" to : cc : subject : java for managers ! ! ! hi stinson , thanks for meeting with us on thursday . we enjoyed talking with you . as per our discussion , i have attached the course outline of java for managers along with this email . after our conversation with you we think this course may be a little bit heavy for your group . but we can definetly take it down to concepts level and make it appropriate for our audience . please review and let me know , if this course would be of value to you . this is a 3 day course and costs $ 11 , 000 ( maximum of 15 students ) . regards , - siva - oojavaformanagers . doc",0 +"Subject: tuesday interview rachel , i would like very much to interview howard but i am in philadelphia on tuesday . vince",0 +"Subject: re : backwardation hedge strategy wendy , i did not . i shall send somebody to your location to pick it up . vince wendy king @ enron 08 / 03 / 2000 01 : 12 pm to : vince j kaminski / hou / ect @ ect cc : subject : backwardation hedge strategy hi vince , just curious if you had a chance to review the docs i sent yet ? thx wendy x 35814",0 +"Subject: kirstee ' s role in london vince : this is precisely the concern i have for kirstee . steve tells me that she is very imaginative and eager to try to add value , but she has no local supervisor to help push some of her ideas . i will give you an update of our discussion later and solicit your suggestions . grant . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 07 / 25 / 2000 09 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kirstee hewitt 07 / 25 / 2000 08 : 48 am to : grant masson / hou / ect @ ect cc : subject : meeting today hi grant - as anjam has set up a meeting for 9 : 30 your time how about we try and talk afterwards . originally we said 10 : 00 your time but i guess that the mg meeting will take longer than half an hour . are you free around 10 : 30 your time ? i think some of the communication problems i originally had with anjam have been resolved ( although it was a difficult situation to interpret ) however , i would very much like to discuss the situation that i am in concerning my immediate management . i have felt that over the last month i have been floundering a little and have not really been able to turn to anyone in london for direction concerning var ( although as expected steve has been very helpful to give me an idea on how to proceed theoretically ) . i do have many of my own ideas although i think i need to obtain some kind of authority to start any substantial work . at the moment i feel like i am doing a lot of small things and am worried that at some stage someone is going to ask the question - what exactly does she do over there in research ? ? ? i have talked to rodrigo lamas ( rac model validation new hire ) and he has helped me to focus on some points i had already made . as a quick summary i have drawn up a memo which outlines some of the points i think need to be addressed as far as the var model is concerned ( i could do a similar memo for the credit reserve model but to start have focused my comments on market risk ) . it is a bit rough and ready ( pls excuse any appalling spelling mistakes ! ) but i think it will help you to see what i have been thinking about since i have been here . i do think that the most important issue is that concerning the origin of the vol / price curves and how they are constructed . cheers kirstee",0 +"Subject: free two week ft - online trial - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 04 / 12 / 2000 12 : 34 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - rita hartfield @ enron 04 / 12 / 2000 10 : 32 am to : mike a roberts / hou / ect @ ect , mary solmonson / hou / ect @ ect , amy oberg / hou / ees @ ees , john a cote / hou / ect @ ect , elizabeth linnell / hou / ees @ ees , lynnette barnes / hou / ees @ ees , bruce ferrell / hou / ect @ ect , amr ibrahim / enron _ development @ enron _ development , fiona grant / lon / ect @ ect , michael grimes / enron _ development @ enron _ development , kyran hanks / lon / ect @ ect , julia kazibwe / enron _ development @ enron _ development , patrick keene / hou / ees @ ees , harry kingerski / hou / ees @ ees , valeria lima / enron _ development @ enron _ development , robert neustaedter / enron _ development @ enron _ development , carol north / enron _ development @ enron _ development , mike g cc : subject : free two week ft - online trial enron has been given a two week free trail [ until 4 / 25 / 00 ] for ft online . the free trial has unlimited users so please feel free to pass this along to anyone who may be interested . various persons within enron currently purchase selected hard copies of ft ' s newsletters for 18 , 331 british pounds . it would be much more efficient and cheaper if all eleven newsletters [ 13 , 617 british pounds for 2 users plus incremental costs for each additional user ] were purchased on - line and the cost shared amoung the users . - - - - - - - - - - - - - - - - - - - - - - forwarded by rita hartfield / corp / enron on 04 / 12 / 2000 11 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vanessa . norton @ ft . com ( vanessa norton ) on 04 / 12 / 2000 03 : 54 : 04 am to : rhartfi @ enron . com cc : subject : dear rita following our conversation yesterday , i am pleased to offer you two weeks trial access to our 22 online energy newsletters . the prices for a years subscription to our online newsletters are as follows : product number of users price ( for all eleven newsletters together ) oil market report 2 o 9 , 530 . 00 aisa gas report 3 ol 1 , 120 . 00 uk gas report 4 ol 2 , 180 . 00 power in aisa 5 ol 3 , 240 . 00 ( o 900 . 00 per extra user ) international coal report 10 ol 7 , 740 . 00 ( o 734 . 00 per extra user ) power in latin america 25 o 28 , 750 . 00 ( o 544 . 00 per extra user ) middle east energy european energy report african energy global private power global water report the prices include a multiple product discount ( for example , 2 users for all eleven newsletters would normally be ol 3 , 617 . 00 ) and as you will see the price for extra users decreases by quantity of users to the publications . your trial will last until 25 / 4 / 00 . please find enclosed the access codes to ft energy online . go to www . online . ftenergy . com click on login and type in the following : iu enront password : enront the current functionality of the service includes a fully searchable archive that goes back to the first issue , an advanced full text search , acrobat pdf files of the printed newsletter that can be downloaded for personal use in its original printed version and the ability to download tables in csv format into excel files . please do not hesitate to contact me if you have any further questions about the service or wish to have prices for individual publications sent . i look forward to your comments . yours sincerely vanessa norton ( + 44 207 896 2282 ) ft energy online * please visit the web site of the financial times at : * * http : / / www . ft . com * * * * this e - mail is intended for the use of the addressee only and may * * contain confidential information . if you are not the intended * * recipient , you are hereby notified that any use or dissemination * * of this communication is strictly prohibited . * * if you receive this transmission in error , please notify us * * immediately then delete this e - mail . * * * * * postmaster @ ft . com * ",0 +"Subject: my accomplishment attached please find a brief description of my accomplishment during 7 / 1 / 00 to 11 / 14 / 00 , which might be useful for the pep system . - chonawee",0 +"Subject: re : enron / stanford program nick , sorry for the delay in my reply . august the 21 st will work the best , since jim fallon ( head trader for bandwidth ) will be out the following week . we will set up a meeting with him . kevin hannon is out , however , and there is no need for you to stay for dinner if you prefer to head back earlier in the afternoon . should you want help in making any travel arrangements , our assistant shirley crenshaw ( 713 853 5290 ) would be happy to help you . thanks and look forward to your visit , stinson",0 +"Subject: re : congratulations thanks vince . it was good to learn of your promotion as well . cheers .",0 +"Subject: re : aiesec polska - eurolds 2000 drogi panie andrzeju , prosze powolac sie na mnie . w . kaminski andrzej wodnicki on 02 / 22 / 2000 04 : 02 : 42 pm to : vince . j . kaminski @ enron . com cc : subject : re : aiesec polska - eurolds 2000 drogi panie kaminski ! bardzo przepraszam za klopot . wiem , ze jest pan niezmiernie zajetym czlowiekiem . jednak chcialem zapytac sie pana o jeszcze jedna kluczowa dla nas sprawe , ze wzgledy na termin naszego wydarzenia - 7 marzec 2000 . mianowicie , czy byloby mozliwe , aby w rozmowie z panem astramowiczem powolac sie na pana . wydaje mi sie , ze bardzo by nam pana nazwisko pomoglo . bardzo liczymy na pana pomoc , pozdrawiam andrzej wodnicki",0 +"Subject: re : chapter chris , my part has not changed for some time ( since early july ) . i sent the last vintage of corrections to you when i was in sydney . you can send the version you consider final to us just to double check . i took the liberty of sending our chapter to darrell duffie and he liked it . what is more important he did not find any error . i shell send you my comments on the article for robin in a day or so . vince "" chris strickland "" on 08 / 28 / 2000 02 : 55 : 31 pm please respond to "" chris strickland "" to : , cc : subject : chapter hi vince , ? how are things with you ? well i hope . do you have the latest version of your part of chapter 3 ? ( i think grant has sent thru a seperate , updated version to you , which has been typeset ) . everything else has been tied up and we will go with the version we have , unless we hear otherwise . ? many thanks and best regards . ? chris . ?",0 +"Subject: organizational changes to : enron north america corp . from : cliff baxter and kevin hannon in july , as part of the enron north america ( ena ) reorganization , the implementation of several objectives were highlighted as critical to the continued growth of ena including : 1 ) accelerate the development of our people , 2 ) significantly expand our customer network and associated markets , and 3 ) accelerate and enhance the information flow between groups , both within ena and across enron . consistent with these objectives and with the corporate goal of fostering  b ) the downstream coverage / origination groups which focus on delivering a broad range of products and services to the heavy industrial customers including pulp and paper , chemicals , plastics , refined products , metals and mining , heavy manufacturing , industrial gases , fertilizers , transportation , textiles and glass manufacturing the eastern and western u . s . midstream coverage / origination groups which focus on energy , finance and industries . downstream coverage / origination as energy deregulation continues in north america , it is becoming clear that the heavy industrial segment will be an important customer market for both ena and enron corp . further , it is clear that ena can significantly expand its industrial customer network and create more innovative industrial solutions by having a group that can deploy all the capabilities of enron corp . against this backdrop , the downstream coverage / origination function will expand its product offering to include not only ena  , s existing energy commodities , energy services , finance , assets and pulp and paper capabilities but also ees  , s energy outsourcing capability and global fuel  , s chemicals , plastics and refined products risk management capability . these additional capabilities will be offered in conjunction with ees and the global fuels groups . given the size and importance of this enron initiative , greg piper will be returning from portland to manage this business . under greg  , s leadership , the downstream origination effort will be segmented into three sub - groups given the nature of these industries and our product offering : a ) pulp and paper  ) edward ondarza will continue to manage the coverage activities in the pulp and paper business . this group will be responsible for the provision of innovative products and services in the pulp and paper industry including the provision of paper risk management products ; b ) chemicals , plastics and refined products  ) we have asked jim ajello to lead the coverage activities in this business . this group will be responsible for the provision of innovative products and services in the chemicals and refined products industries ; c ) non - integrated industrials  ) bruce garner , formerly leader of bankers trust  , s global metals and mining group in london , has joined ena to lead the coverage activities in this business . this group will be responsible for the provision of innovative products and services for the metals and mining , heavy manufacturing , industrial gases , fertilizers , transportation , textiles and glass manufacturing industries . midstream coverage / origination a ) eastern coverage / origination  ) this group  , activities will focus on energy , finance and power development solutions for electric and gas utilities , municipals , co - ops and energy service companies in the eastern interconnect . we have asked janet dietrich to assume the leadership of this group ; b ) western coverage / origination  ) this group  , s activities will focus on energy , finance and power development solutions for electric and gas utilities , municipals , co - ops and energy service companies in the wscc . they will also continue to manage all qualified facilities ( qf ) restructuring opportunities in the western u . s . we have asked chris calger to assume the leadership of this coverage group . chris will relocate to portland from calgary where he currently leads the canadian downstream origination efforts ; c ) ipp merchant coverage / origination  ) this group  , s activities will focus on the provision of structured energy , finance and asset solutions for the emerging merchant power generators who control large portfolio  , s of merchant power generation either through development or acquisition . we have asked mike miller to assume the leadership of this group . in addition , mike will continue to manage the power development activities in the eastern interconnect ; d ) eastern qf restructuring  ) this group will focus on the qf restructuring opportunities in the eastern interconnect including the existing restructuring and re - capitalization of the east coast power assets . we have asked dave duran to assume the leadership of this business . greg blair , formerly of enron asia  , s development group , doug clifford , formerly of citizens power , and dick lydecker , formerly of cogen technology , will join this newly formed business . 2 ) commercial transactions : the commercial transactions group ( ctg ) , co - headed by ray bowen and jeff donahue , was formed to provide a centralized resource for the execution of transactions within ena  ) and thereby , improve ena  , s efficiency in executing transactions and free - up the origination groups to increase their intensity of client coverage . ctg consists of six primary functions : transaction development , capital structuring and portfolio management , commodity structuring and transportation , transactional support / accounting , technical analysis and upstream asset management . the transaction development group will be responsible for deal leadership , execution and optimization of all aspects of a transaction in conjunction with the originator . the function will be divided into four teams , each of which will be dedicated to between two and four origination groups . this dedication to specific groups should provide a closer link , better service and greater accountability with the origination groups ; however , the ctg resources are designed to be a fungible and flexible resource allocated to the highest value transactions across the coverage functions : a ) midstream transaction development will be dedicated to the eastern and western coverage / origination groups . the senior members of this group include billy lemmons , george mccormick , erin norris and russ porter . billy lemmons joined enron in 1992 . most recently , he was the vice - president of capital structuring and risk management for ees . russ porter joins us today from dynegy where he was a manager with responsibilities for power origination . b ) downstream transaction development will be dedicated to ena  , s industrial origination efforts in pulp and paper , petrochemicals and refining , environmental energy , metals and mining and other industries as coverage is established . the senior members of this team include rodney malcolm , jay boudreaux , finley biggerstaff and chris helfrich . we anticipate announcing two to four more additions to this team within the next few weeks . c ) generation transaction development will be dedicated to the ipp merchant services and power plant development and qf restructuring groups . the senior members of this team include thomas suffield , andy kelemen , kelly mahmoud and john house . thomas suffield joined enron in 1996 . most recently , he was the vice - president of origination for the latin american group in azurix . we anticipate announcing two more additions to this team within the next few weeks . d ) upstream transaction development will be dedicated to the producer finance , coal and gas assets groups . the senior members of this team include brad dunn , john curtin and chris hilgert . we hope to announce the addition of at least one vp to this group prior to yearend . ray bowen will have primary oversight responsibilities for the upstream and downstream transaction development teams with jeff donahue having primary responsibilities for the midstream and generation teams . andrea reed will continue to head capital structuring and portfolio management : all junior commercial resources within the transaction development teams will have dual responsibilities to both their transaction development teams and to the capital structuring group . the remaining four groups within ctg will remain largely unchanged . in addition , the origination and the transaction development teams and their respective origination groups will be located together . we believe that these changes will significantly enhance our market coverage and industry knowledge in all ena  , s markets particularly in the industrial markets . it will also provide a closer partnership and accountability between the coverage / origination groups and the ctg groups . please help us in continuing to build on the success we have enjoyed in north america by working with us to implement these changes .",0 +"Subject: metals curves hi maureen i hope you ' re keeping well . london research has been asked to validate the long - term copper ( and other ) forward curves being used by mg . clearly this lies outside our domain of expertise ( being economics ) , so i ' ve referred tani to you . speak to you soon , steve",0 +"Subject: daily natural gas price outlook vince . . . can you believe it ? - - - mike - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 07 / 31 / 2000 10 : 13 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" edward krapels "" on 07 / 31 / 2000 08 : 57 : 56 am please respond to to : cc : subject : daily natural gas price outlook today  , s esai daily natural gas price outlook will be delayed due to unexpected illness of the weather forecaster . we will post our analysis as soon as we gather all the necessary information .",0 +"Subject: credit business plan hi jeff , my research colleagues and i are working on a document to lay out our credit derivatives modeling strategy . for lack of a better term , we refer to this as our credit business plan . it is my understanding that various business plans have been previously written for the credit group - one by gillian johnson and another by john bottomley . it would be very helpful to our efforts in the research group , it you would allow us to see these plans . thanks , iris",0 +"Subject: re : development of a program in "" econo - physics "" hello shirley , i ' d understood from yannis that he ' d proposed a brown bag lunch where i ' d give a talk and then the discussion about various possibilities would follow . i ' m here until about mid - may and then will go on leave in europe for a year . i could be available to make trips back and forth from time to time to get things started . best regards , joe mccauley",0 +"Subject: final details for energy course hi , just wanted to let you know some final details about the course : course titles : "" energy derivatives : pricing and risk management "" and / or "" var for energy markets "" venue details : dates : 29 - 31 march location : hyatt regency downtown houston , 1200 louisiana street , houston phone : 713 - 654 - 1234 schedule : continental breakfast : 8 . 30 am start : 9 am beverage break : 10 . 30 - 11 . 00 buffet lunch served in course room : 12 . 30 - 1 . 30 pm snack break : 3 . 30 - 4 . 00 pm end : approx . 5 . 30 pm course leaders : dr les clewlow and dr chris strickland , lacima consultants please let me know if you need anything further . thanks and enjoy the course ! sincerely , julie lacima consultants",0 +"Subject: re : stanford project - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 03 / 2001 08 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 12 / 27 / 2000 05 : 04 pm to : nick bambos @ enron cc : subject : re : stanford project nick , hope you had a nice christmas . best wishes for the new year . it would certainly be great to see you and to meet eric some time in the next few months . everyone here was very impressed with giuseppe and we are eager to have another of your students come to enron . enron broadband is continuing to evolve and the current vision is to rely on enron ' s trading expertise while trying to minimize our role as an engineering company and innovator of technology . i spoke recently with jim fallon , the current head trader in ebs , and we put together a short list of topics of interest where you might be able to help educate us . i put these in the order of interest ( to mr . fallon ) . 1 . where will bandwidth prices go ? the direction of prices , obviously is the concern of any trader . we realize that technological innovation will continue to drive down prices , but are still interested in trying to quantify how fast prices will fall , if there are likely to be certain bottlenecks in the fiber network where you could see prices stable or rising for some length of time , if there are applications on the horizon which would use such prodigious amounts of bandwidth as to have some effect on pricing , and if there is a rational way of trying to quantify the timing and effect on prices of new technologies . the term "" bandwidth "" might primarily mean lit fiberoptic capacity , but could also incompass dark fiber , or ip transit and transport pricing . 2 . during the last year , enron purchased a company known as "" warpspeed "" in order to acquire their metarouter technology . to quote from the enron press release : "" metarouter sends signals throughout distributed networks to determine the optimal connectivity paths for any size bandwidth capacity from anywhere in the world . capable of processing thousands of connections per second , metarouter significantly enhances enron  , s ability to automate circuit provisioning . "" there may be two separate questions to ask here . first , in the context of the current market ( or the market which may develop in the next 1 - 2 years ) , will the metarouter be a commercially viable product ? that is , will it address an actual need in the market , or would it be more cost effective just to use technicians with jumper cables to provision circuits ? the second question ( our first real technical question ) : is the metarouter technology scalable ? before starting on this project , vince and i will need to make the proper introductions with the principles who are implementing this technology . 3 . aggregation of loads . a recurring question comes from a number of areas such as ip , network storage , and streaming media transport sales : what value can i get form aggregating customers , each of which has some type of stochastic load profile ? giuseppe touched on this problem as it relates to ip transport , but it may be interesting to try and look in more detail . the main stumbling block may be that we currently have basically no actual customer data . i am told that in a few months we will have some more useful history . my understanding is that what will be available will be 5 - minute averages of usage , so we still will not know on a short time scale what the distribution of load looks like . i hope that this gives you enough information to get some idea of what our concerns are at this point . please let me know your thoughts about these topics . i would expect , for instance that question number 1 may not be reasonable as a research project , but might be a question which you would feel comfortable in addressing by giving us your qualitative opinions , maybe in the form of a talk here at enron . again , let me know your thoughts , and i look forward to seeing you again soon . stinson nick bambos on 12 / 20 / 2000 12 : 14 : 40 pm to : vince . j . kaminski @ enron . com cc : stinson . gibner @ enron . com subject : stanford project hello vince and stinson , first of all , best wishes for happy holidays ! ! ! ! if you are in the stanford area during the holidays , let ' s get together some time to have dinner . i have formally established the project - thanks again for funding it - and i have also recruited the second phd student . his name is eric cope , and he is a top - notch student , very mature , and entrepreneurial ! we have started working on some interesting problems in this area . i would hope that eric could spend the coming summer at enron to get immersed into the "" problem / opportunity generation environment . "" that really helps the student to develop a realistic vision about their research . perhaps , our whole team could visit enron again some time in the next quarter , say in march or so , to discuss the research issues we are pursuing . and of course you could visit us before that too . with my warmest wishes , nick",0 +"Subject: update : ffvols ted , an update on the implementation for ffvols : ( 1 ) in comparing 6 days of historical var calculations ( with that of the implied ) for agg - gas , we have found that the historical var calculations are consistently lower over this period , by roughly 17 mm . the implied volatilities are much higher at this period , anticipating strong winter prices . ( 2 ) at this time , the consensus is not to relase the historical implementation into production , and the official line to traders will be that the method is still in testing . the historical var is 19 . 2 mm and the implied is 37 mm for effective date of 09 / 25 . ( 3 ) further testing is in progress on a hybrid methodology ( which i mentioned last week , whereby historical vols are scaled by the ratio of prompt to historical - prompt volatilities ) , to atleast capture some implied / forward effects . tanya ' s analysis on a fictitious portfolio indicates higher var numbers , but poorer backtesting in comparison to the historical approach . this approach serves as an intermediate , and seems appropriate in periods such as the current one , wherein the historical numbers might be considerably lower than those of the implied . ( 4 ) winston will start testing using these hybrid vols , and if the results are deemed satisfactory , that will be the production methodology . of course , we will obtain all var numbers concurrently to serve as different indicators and beacons of risk . the production number will hopefully be a sensible compromise of the different methods . regards naveen",0 +"Subject: re : stinson gibner paula : he should access eci on our equipment , and the work that he is doing for ena should be provided by them . lyn : can he bring his current pc with him , or can you provide him with another system ? thanks richard weeks enron communications inc . purchasing manager 713 - 853 - 6995 paula corey 01 / 10 / 00 08 : 44 am to : richard weeks / enron communications @ enron communications , culley harrelson / enron @ gateway cc : vince j kaminski / hou / ect @ ect , richard weeks / enron communications @ enron communications subject : stinson gibner gentlemen : stinson gibner will be joining us at desk location 4415 c . i have spoken with it re : a new laptop for him on the eci lan . he will also need access to his ect ( ena ) system . how should we proceed with duplicating his workstation from 19 ? thank you paula",0 +"Subject: fw : enron contact info vince and jeff . . . the following is "" fyi "" . . . my assistant is working on the flight arrangements . also , "" fyi "" , the doubletree and other downtown hotels were entirely , or mostly , sold out , but my assistant found a good rate at the warwick [ $ 115 ] by herman park , where everyone will be ' housed ' in the same location for one night - - i also think this location is a good ' houston - sell ' . dinner is scheduled for 7 thursday evening at churrasco ' s , and my group is arranging the "" tourenron "" - - breaking this group into 2 . [ fyi : the energy club from smu ( another skilling alma mater ) had long ago also schedule a tour that day , so we ' ll have 19 from smu and 18 from wharton on the same day . . . but so far , all seems manageable . ] as "" tour times "" are set , and business unit interview requests are received from the students , i ' ll keep you posted . thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 12 / 19 / 2000 05 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 12 / 19 / 2000 01 : 49 : 52 pm to : "" ' christie . patrick @ enron . com ' "" , "" ' melinda . mccarthy @ enron . com ' "" cc : fap subject : fw : enron contact info christie ( melinda and / or marie ) all contact info is listed below by team and project , as well as faculty , ta and others . those with ( * ) will be traveling to houston . i have a total of 18 attending . according to my records , the following will stay beyond the friday departure ( at their own expense ) and leave houston on sunday , 21 jan : heather thorne , jack rejtman , deepa mallik , donna piazze . dennis feerick would like to depart on sat am , if possible . he sent a separate email addressing this . enron 1 * vincent chen vincent . chen . wgo 2 @ wharton . upenn . edu enron 1 * nick levitt nicholas . levitt . wgo 2 @ wharton . upenn . edu ( wholesale project ) enron 1 * deepa mallik mallikd @ wharton . upenn . edu enron 1 * jack rejtman jack . rejtman . wgo 2 @ wharton . upenn . edu enron 1 * kim whitsel whitselk @ wharton . upenn . edu * * * team contact enron 1 * tulika bhalla bhallat @ wharton . upenn . edu enron 2 * jaideep singh singhjai @ wharton . upenn . edu enron 2 * edson otani edsono @ wharton . upenn . edu enron 2 * joshua leventhal levent 86 @ wharton . upenn . edu * * * team contact enron 2 * pat henahan mhenahan @ wharton . upenn . edu ( future shape of energy markets project ) enron 2 murat camoglu camoglum @ wharton . upenn . edu enron 2 * gustavo palazzi gustavop @ wharton . upenn . edu enron 3 * clay degiacinto enron 3 * steve lessar stephen . lessar . wgo 2 @ wharton . upenn . edu enron 3 * ram vittal mvittal @ wharton . upenn . edu * * * team contact enron 3 jason cummins marc . cummins . wgo 2 @ wharton . upenn . edu ( retail project ) enron 3 * omar bassel bassalo @ wharton . upenn . edu enron 3 * dennis feerick dennis . feerick . wgo 2 @ wharton . upenn . edu professors : louis thomas thomas @ wharton . upenn . edu keith weigelt weigelt @ wharton . upenn . edu ta : heather thorne hethorne @ wharton . upenn . edu * fap : donna piazze piazze @ wharton . upenn . edu *",0 +"Subject: re : lloyd , yes , this would be very useful . i was told that we should not do any official business with mg until july 15 . i don ' t want to violate those rules of engagement and go beyond casual contacts . after the 15 th all the stops are off . vince from : lloyd fleming 07 / 07 / 2000 01 : 51 am to : vince j kaminski / hou / ect @ ect cc : subject : re : no problem - i do think this could wait until mg are more closely integrated in any case . a useful first step might be an email to relevant trading staff at mg outlining briefly what maureen does and how she can provide a service to them . would you like me to send her a list of potential people to email ? regards lloyd vince j kaminski 06 / 07 / 2000 23 : 39 to : lloyd fleming / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , maureen raymond / hou / ect @ ect subject : re : lloyd , i think that we can arrange a few video conference meetings instead . i don ' t see a justification for extending the stay over the weekend if we have an alternative solution . vince enron capital & trade resources corp . - europe from : lloyd fleming 07 / 06 / 2000 12 : 37 pm to : vince j kaminski / hou / ect @ ect cc : maureen raymond / hou / ect @ ect subject : vince i met maureen yesterday and had a useful discussion on her role within enron . i think it would be very helpful to promote the research group function of the company , particularly given maureen ' s background , if she could be introduced to some of the main traders down at mg . unfortunately she won ' t have time to meet with mg unless we can schedule some meetings on monday . would you be happy for her to extend her stay here till monday to allow the meetings to take place ? regards",0 +"Subject: mg var hi - i just wanted to thank cantekin for his help this week to get me up to speed with the project he has been extremely helpful and more importantly patient ! ! cheers kirstee",0 +"Subject: re : czesc wicku , oczywiscie , ze sie spotkam z radoscia i przyjemnoscia . sporo czasu minelo od czsu , gdy sie ostatni raz widzielismy . w gre wchodzi praktycznie czwartek wieczorem . w srode sie przeprowadzam , a w piatek lece do nj o 21 : 30 . moj telefon : 408 - 855 - 0263 . na razie , grzegorz - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , february 05 , 2001 10 : 29 am to : gnapi @ intertrust . com cc : vince . j . kaminski @ enron . com ; vkaminski @ aol . com subject : czesc grzegorz , ludmila doniosla mi , ze pracujesz w kalifornii . bede w berkeley w srode i w palo alto w czwartek i piatek . czy masz czas , by spotakc sie na obiad / lunch / kawe ? pozdrowienia wicek",0 +"Subject: high frequency market data analysis stinson , we are going to update you and vince the progress of the eol george project . friday , 9 : 30 am - 10 : 00 am in eb 1938 . bob , we may get some other ideas from the following book , take a look to see if it is worth to buy one . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - risk executive reports high - frequency financial market data sources , applications and market microstructure by dr owain ap gwilym and professor charles sutcliffe , school of management , university of southampton , uk a high - quality , non - technical resource on an increasingly invaluable topic for all users of high - frequency data . 10 sections cover the many aspects of high - frequency data by covering a broad set of information ranging from data suppliers to detailed research angles topics covered include : managing hfd ; arbitrage opportunities ; intra - day seasonalities ; regulation ; market efficiency and market making . format price report ? 175 / us $ 280 a 4 , 162 pp published : august 1999 review | table of contents | order now in ? | order now in $ for other titles of interest please click here : risk executive reports send this page to a colleaguehigh - frequency financial market datacontentsl . introduction and overview overview and background the motivation and demand for high - frequency data the uses of high - frequency data structure of this report 2 . sources and types of high - frequency data types of data data supplied by exchanges panel 2 . 1 ( by paul macgregor , liffe ) - the sourcing and preparation of liffe tick data specialist data providers real - time data providers summary 3 . managing and exploiting high - frequency data panel 3 . 1 - illustrative high - frequency data data storage , filtering and cleaning the treatment of time panel 3 . 2 - olsen filtering system constructing continuous series key considerations in manipulating high - frequency data modelling issues summary of chapter 4 . arbitrage opportunities in equity markets what is arbitrage ? empirical studies of arbitrage opportunities arbitrage in equity markets individual arbitrage trades 5 . intra - day seasonalities intra - day patterns in returns intra - day patterns in volume intra - day patterns in volatility intra - day patterns in the bid - ask spread intra - day patterns in the autocorrelation of returns intra - day patterns in hedge ratios other intra - day patterns effects of news announcements on intra - day patterns the turn - of - the - year effect and high - frequency data conclusions 6 . links between markets leads and lags in prices between different types of market based on the same asset the 1987 stock market crash leads and lags in price volatility links between geographically separated markets rival markets 7 . destabilisation of markets relative volatility programme trading and volatility price movements at expiration conclusions 8 . regulations governing the markets regulation of dual capacity circuit breakers restrictions on short selling taxes on transactions tick size and price clustering delayed publication of trades conclusions 9 . market efficiency weak - form efficiency semi - strong - form efficiency conclusionsl 0 . market makingrevision of prices other aspects of financial markets determinants of the bid - ask spread block trades conclusionsl 1 . conclusion and future developments references",0 +"Subject: merry christmas dear mr . kaminski , in the name of all the mscf students i would like to wish you and your family a merry christmas and a happy new year . thank you very much for taking the time to come here and talk with us . it was greatly appreciated . best regards , pierre",0 +"Subject: re : thursday visit frank , we are located at 1400 smith . any cab driver can identify the enron building . when you arrive , please , call me at 3 - 3848 from the reception to be admitted into the building . alternative phone numbers : 3 - 5290 ( my assistant shirley crenshaw ) . you can also try to call me on my cell phone : 713 898 9960 . the research group meeting starts at 11 : 30 and lasts till 1 : 00 . can you make a presentation about your research projects ? what audio / video equipment do you need ? what sandwich would you like to have for lunch ? we shall make a hotel reservation for you thursday night . vince "" francis x . diebold "" on 12 / 18 / 2000 07 : 02 : 46 am to : vince kaminski cc : bmierts @ enron . com subject : thursday visit hi vince , looking forward to seeing you thursday . ? i arrive at houston - bush on usair 1769 at 10 : 55 am . ? please let me know where to go . ? i also want to verify that you have booked me a hotel ? for thurs night . ? many thanks , and see you soon , frank - - francis x . diebold wp carey professor department of economics university of pennsylvania 3718 locust walk philadelphia , pa 19104 - 6297 fdiebold @ sas . upenn . edu http : / / www . ssc . upenn . edu / ~ diebold ( 215 ) 898 - 1507 ? telephone ( 215 ) 573 - 4217 ? fax ?",0 +"Subject: marketing ideas for power 2000 dear vince i am delighted that you have agreed to take part in the energy and power risk management 4 th annual congress ? power 2000 ? which will be taking place on 9 & 10 may 2000 in houston , tx at the houstonian . as you know energy and power risk management magazine has an excellent reputation in the energy community and we want to make this event as successful as possible . we are currently in the process of launching the event and researching the publications and associations mentioned during the research for the conference to make sure that we are getting the best coverage . before we complete the marketing plan for the conference we want to be sure that we are reaching all the people who may be interested . we constantly strive to improve the marketing of our events and therefore we ask our speakers for further ideas and contacts . therefore please could you let me know whether you could help with any of the following . are there any particular people that you need to send brochures to ? - we can carry out any mailing on your behalf if you supply us with contact names and addresses , alternatively i can send you a quantity of brochures do you have any in - house publications or a newsletter that we should insert the course brochure into - or a diary date page that we could be included on ? would you like to write to your clients to invite them to attend ? we can offer them a 10 % discount and can send them a letter or if you prefer to write on your own letterhead we will organise the copying and distribution for you . have you any delegate lists from events you have spoken at or attended with a similar target audience to whom we should be sending information about the course ? do you have an internet site on which the course could be mentioned ? do you have any other ideas ? any suggestions would be welcome . our marketing manager , caroline hyndman will contact you in the near future to discuss any ideas you may have . alternatively please give me a call on 212 925 1864 ext 151 . thanks very much for your help in this matter . best regards , emma",0 +"Subject: hi vince , after we hung up the phone yesterday , i sent you an email as we agreed . however today i looked in my "" outbox "" and see that nothing was sent to you . thus , i ' m trying again . if this is redundant , sorry . attached is a copy of the corporate finance forum i am trying to organize . any comments or suggestions you might have would be appreciated . i look forward to enron getting involved in this project if at all possible . secondly , i am confirming the dates for the two visitors for the risk management chair . philippe jorion , seminar on 2 / 15 and dinner on 2 / 14 andrew karolyi , seminar on 2 / 23 and dinner on 2 / 23 . lets try to go flying sometime soon thanks for your help and support , dave - nfcfproposal . doc * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: the delivery of the equipment you ordered is scheduled . - - - automatic notification system ( request # : ecth - 4 r 5 mlm ) requested for : vince j kaminski requested by : shirley crenshaw your order ( see below ) has been assigned to ron cooper . technician will contact you for information and delivery time . please contact the technician if you have any question . en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0 en 6600 128 mb installed in desktop 21 "" vl 100 monitor",0 +"Subject: entouch newsletter business highlights east power group enron power marketing , inc . ( epmi ) and enron wind corporation ( ewc ) have joined forces in a deal that combines the expertise of both enron subsidiaries . ewc is developing the indian mesa wind farm in pecos county , tx . epmi has agreed to purchase 135 mw of bundled capacity , energy and renewable energy credits (  firm dates will be announced soon . if you have customers in the area interested in attending , please contact lucy ortiz at 713 . 853 . 3238 . in the news what do enron , compaq , continental airlines and jpmorgan / chase bank know that the city of houston doesn ' t ? they know that in order to attract top talent , they must stay competitive and current in the employment market . domestic - partner benefits are a reality for those companies looking up toward the future and down at the bottom line . does anyone really think these companies would be offering these benefits if they weren ' t cost effective and in the companies ' best interests ? - - houston chronicle ( 02 / 11 / 2001 ) . welcome new hires egm - kyle berryman / weather trading , carla murphy / operational accounting eim - elizabeth hutchinson / fundamental analysis ena - bryant frihart / origination enovate , lea sooter / public relations enrononline statistics below are figures for enrononline as of february 9 , 2001 . * total life to date transactions > 670 , 000 * life to date notional value of transactions > $ 410 billion nuggets & notes  & who took the last twix out of the candy jar ?  8 - andrea reed , vice president / fundamental analysis - eim "" i ' m having an out of body experience . . . "" - scott josey , vice president & co - manager / energy capital resources - ea news from the global flash uk origination team closes first deal under neta congratulations to the uk origination team for closing their first transaction under neta and the first long - term customer contract to be signed under neta terms . on 7 th february , the team signed a 10 - year electricity supply contract with the manx electricity authority , making enron the sole supplier of the isle of man ' s ( iom ) electricity requirements over the next decade . in addition to providing power to the inhabitants of the iom , enron will contractually manage the iom interconnector and all generation to the iom . enron direct expanding customer service operations enron direct continues to go from strength to strength , and as a result of continued growth , is expanding its customer operations to teesside , creating 46 new jobs . enron direct will be setting up a new customer service center at the etol administration building on the wilton international site . the new center is scheduled to open in april and will support enron direct ' s existing call center and customer service operations in oxford . the 46 new employees will be recruited locally . enron credit enron credit announces the closure of its largest european digital bankruptcy swap ( dbs ) transaction to date with a new counterparty . in addition to detailed information on the dbs , registration on the web site ( https : / / www . enroncredit . com / members / join . asp ) provides access to weekly bankruptcy blasts covering current credit risk topics . register today on www . enroncredit . com and take a look at how some of your own counterparties may be performing ! legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: fwd : mark - to - market return - path : received : from rly - ygol . mx . aol . com ( rly - ygol . mail . aol . com [ 172 . 18 . 147 . 1 ] ) by air - ygo 5 . mail . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 18 : 00 : 52 - 0500 received : from mailman . enron . com ( mailman . enron . com [ 192 . 152 . 140 . 66 ] ) by rly - ygol . mx . aol . com ( v 67 _ bl . 21 ) with esmtp ; fri , 28 jan 2000 18 : 00 : 36 - 0500 received : from dservl . ect . enron . com ( dservl . ect . enron . com [ 172 . 16 . 1 . 37 ] ) by mailman . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / corp - 1 . 03 ) with esmtp id xaal 9726 for ; fri , 28 jan 2000 23 : 00 : 07 gmt received : from notes . ect . enron . com ( notes . ect . enron . com [ 172 . 16 . 4 . 33 ] ) by dservl . ect . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 ) with smtp id raa 24406 for ; fri , 28 jan 2000 17 : 00 : 32 - 0600 ( cst ) received : by notes . ect . enron . com ( lotus smtp mta v 4 . 6 . 5 ( 863 . 2 5 - 20 - 1999 ) ) id 86256874 . 007 e 6242 ; fri , 28 jan 2000 17 : 00 : 26 - 0600 x - lotus - fromdomain : ect from : "" vince j kaminski "" to : vkaminski @ aol . com message - id : date : fri , 28 jan 2000 17 : 00 : 29 - 0600 subject : re : mark - to - market mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii content - disposition : inline content - transfer - encoding : 7 bit - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 28 / 2000 05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : wade cline @ enron _ development on 01 / 28 / 2000 07 : 17 am ze 5 b to : pinnamaneni krishnarao / hou / ect @ ect cc : sandeep kohli / enron _ development @ enron _ development , vince j kaminski / hou / ect @ ect subject : re : mark - to - market ( document link : vince j kaminski ) sandeep , can dpc sell to mseb and have eipl buy an equivalent amount of power from mseb at another spot on their grid , and then eipl sell to the 3 rd party state ? pinnamaneni krishnarao @ ect 01 / 27 / 2000 04 : 00 pm to : sandeep kohli / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , wade subject : re : mark - to - market ( document link : wade cline ) sandeep : i met with bob today and discussed the deal structure we put together . on the mark - to - market issue , bob and his colleague wess told me that as long as payments are tied to one particular plant , we cannot m - t - m them . they had same problem with plants here in the us ( like the peaking plants ) and they had to separate the plant from power sales to be able to m - t - m the assocated cashflows . what they did is : they sold power from the plant to an outside party and bought it back from them at completely different ( multiple ) locations . the buyback is not tied to any specific plant and is marked to maket . even if enron can somehow mark - to - market a deal with dpc , it can do so for only 50 % of the cashflows because only 50 % of dpc is owned by outsiders . and a simple loan to an affiliate cannot also be marked to market . bob was suggesting that if eipl buys options from dpc and from some other plants and in turn sells power to ap or karnataka then we could have a case for m - t - m . politically dpc selling power to eipl may not be the best solution , to put it rather mildly ! our alternatives , as i see them , are 1 . do the deal as we structured it . the only difference is that enron doesn ' t mark it to market and income is earned only in 2002 - 03 . 2 . do the deal as we structured it . eipl / enron then sells the contract to another party at a profit . the problem , of course , is finding this party and forking part of the profit to them . 3 . same deal , except revenue securitization is done through an outside party in india ( not eipl ) . bob said he will think about the issues some more this week . let me know when you will be here next week so we can meet with bob together . i will be going to boston for tuesday and / or wednesday ( feb . 1 - 2 ) . i can book an appt . with bob for us . sandeep kohli @ enron _ development 01 / 23 / 2000 09 : 45 pm to : robert butts , pinnamaneni krishnarao @ ect cc : vince kaminski , wade cline / enron _ development @ enron _ development , ananda mukerji , jaiprakash desai / enron _ development @ enron _ development subject : mark - to - market bob , i wanted to continue the analysis on mark - to - market that i had spoken to you about on the phone . i thought that it was getting very difficult explaining the whole transaction by phone , so i am having krishnarao who is in vince ' s group explain the transaction to you . krishna has been helping us structure the deal here in india , and he has just returned to houston from india after working with the team here . he will seek an appointment with you to explain the transaction . i would like you to please spend some time with him , and then based on the discussion please send us a note detailing how sucha a transaction would be marked to market . please cosider the fact that currently there are no such transactions from the indian side . this is a very important transaction for us , and we may need to repeat this in coming months , hence setting up the system to account for these maybe well worth it . also , what i am concerned about is that there will be an enron india ( eipl ) account in india based on indian gaap , and upon consolidation there will be a us gaap accounting in the us . it is here that we would like to have mark - to - market accounting . eipl is structured through mauritius , and then caymen islands . another key question to consider is that when we m - t - m the transaction in the us there will be a tax accruing in the year of m - t - m ( say 2000 ) . however , in india , as a result of the accrual accounting , there will not be any income showing till the year 2002 or 2003 . we will need to know how that would get treated , and whether there is a way to get credit for the tax payable in the us . i am also confused about whether us tax would be levied , since none of the income is being brought back into the us ( remains overseas - subpart - f and other concerns ) . finally , we have been working hard in structuring a fixed price contract and getting a fixed for floating swap in the us ( this is still not allowed to indian corporates ) . i need you to think about this too , and see if some type of accounting will solve this issue . krishna knows what i am talking about , and will brief you on the same . krishna - please walk bob through the three structures we had worked here . look forward to your help and comments . this is going to be an exciting project for us all . regards , sandeep .",0 +"Subject: rabi de shirley , vince decided to have rabi de for a formal interview . could you co - ordinate with hr to arrange this ? thanks . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 07 / 26 / 2000 11 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 07 / 07 / 2000 05 : 03 pm to : shirley crenshaw / hou / ect @ ect cc : zimin lu / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : rabi de phone interview shirley , let ' s act on it . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 07 / 2000 05 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 07 / 07 / 2000 01 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : rabi de phone interview vince , we had phone interview with rabi de . my impression is good . we should invite him for a formal interview . he is a hands on person with wide range of experience ( energy financing , derivatives trading , hedging , etc ) . he communicates very well and expressed interest in financial engineering & modeling . zimin",0 +"Subject: re : fw : energy book promotion julie , i shall track down fiona . she may be on vacation . vince "" julie "" on 03 / 22 / 2001 03 : 28 : 34 pm please respond to "" julie "" to : "" vincejkaminski "" cc : subject : fw : energy book promotion hi vince , ? i sent the attached for enron ' s approval to fiona grant , but haven ' t heard back . ? in the contract that we signed it states that we need to seek approval from enron if we want to use the company name . ? is there someone else we should direct these requests ? ? hope you are well . ? julie ? ? ? - - - - - original message - - - - - from : julie to : fiona . grant @ enron . com sent : thursday , march 15 , 2001 5 : 20 pm subject : energy book promotion fiona , ? i ' ve attached a letter that is going to be ? sent out to some universities , promoting the energy derivative book . ? are we allowed to mention , "" . . . in association with enron corp . "" ? ? please see attached . ? should we check with you every time we would like to use "" enron corp . "" when advertising the book ? ? it will usually follow similar format . ? thanks , julie ? lacima group - covering letter for book brochures . doc",0 +"Subject: re : vince ' s london visit hi wendy : we have finally made arrangements for vince ' s trip in september . he will be arriving in london monday the 18 th at 9 : 55 am . he would like to set up a meeting with paul and julian sometime on tuesday , the 19 th . just let me know when it is convenient . thanks ! shirley wendy . dunford @ arthurandersen . com on 08 / 29 / 2000 11 : 44 : 14 am to : shirley . crenshaw @ enron . com cc : subject : vince ' s london visit hi shirley i would be grateful if you could give me some dates and times when vince will be free to meet with paul day and julian leake , tom leuthwaite is not available to meet unfortunately during the week that vince is here . kind regards wendy * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: pjm customer load reduction pilot program approved message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : august 4 , 2000 norristown , pa : the members committee of pjm interconnection , llc approved a customer load reduction pilot program following approval last week by the federal energy regulatory commission ( ferc ) . the program targets existing on - site generation and load management programs at facilities such as hospitals , hotels , factories , and stores during emergency conditions . after september 30 th , the end of the trial period for the program , the program will be evaluated to determine its success . the evaluation will explore program improvements in order to enhance the program as a way to address potential capacity shortfalls next summer . related procedures for interconnecting generation under 10 mw will be discussed through pjm ' s committee process for additional advisory input and will be refiled for further consideration by the ferc after the stakeholder process . the pilot program was designed through a collaborative fast - track effort of the pjm distributed generation user group . currently , there are 35 participants registered for the program representing a total of 61 . 5 mw . the smallest of these generators represents 200 kw and the largest represents 15 mw . this user group ' s efforts are consistent with the federal energy regulatory commission ' s recent initiative to support interim procedures to assist with the on - going efforts to maintain a reliable electric power system during the summer months . distributed generation benefits the system by either reducing demand or providing additional generating resources . the pilot program is designed to provide additional flexibility during times of peak demand . it is not meant to replace pjm ' s successful generation interconnection process which deals with generation projects applying to become part of regional capacity or to interfere with the active load management ( "" alm "" ) programs that are in operation . please do not reply to this message . if you have a question for pjm customer relations and training , please send an e - mail to custsvc @ pjm . com . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: 1 candidate and 2 interns bryan please , take a look at the resume of howard haughton . he looks like an answer to your prayers . it ' s the first attachment . vince p . s . jeff , the headhunter , can be reached at ( 949 ) 813 2241 . please , set up the interview , if interested , through him . - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 18 / 2001 01 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" on 01 / 12 / 2001 12 : 51 : 59 pm please respond to "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" to : vince . j . kaminski @ enron . com cc : molly . magee @ enron . com subject : 1 candidate and 2 interns hi vince and molly . here attached is one candidate who is particularly interested in having his profile sent to vince . . . he is going to be traveling to ny from the uk soon for 2 wks . he specifically asked my partner at robertwalters in the uk to investigate enron through my new relationship with you guys . he would be howard haughton , attached below ( cv ) . the other 2 resumes are my students at the university of michigan . howard lin received a 4 . 0 / 4 . 0 for his last term and will be willing to do whatever it takes to intern at enron for june - aug . i have his picture included as well . the second is sung , they are friends . howy will be done expected in may 2001 and sung in may 2002 . they are my favorite interns and i expect they can be cultivated to the enron culture with no real cost to you ( a "" test drive before committal . i have agreed to represent them and shall take ownership , as they become graduate candidates upon their degree completion . i hope these attachment can represent my value and commitment to quality of talent to enron . thank you for your acceptance . best wishes for the weekend . jeff * get free , secure online email at http : / / www . ziplip . com / * - 00343938 alec . doc - sungvince . doc - howardagent 9498132241 . doc - howardlin . gif",0 +"Subject: directions to the tamiment resort and conference center , location of the 20 th annual conference dear participants : here are the directions to the tamiment : from new york fax : 973 - 353 - 1348 http : / / www . rci . rutgers . edu / ~ crri crri @ andromeda . rutgers . edu center for research in regulated industries rutgers university - graduate school of management 180 university avenue , room 200 p newark , nj 07102 - 1897 phone : 973 - 353 - 5761 ; fax : 973 - 353 - 1348 http : / / www . rci . rutgers . edu / ~ crri crri @ andromeda . rutgers . edu ",0 +"Subject: presentation slides good morning vince : this is a reminder for you to send me the slides of yesterday ' s presentation at your earliest convenience . as far as lunch is concerned , right now i am totally free for next week . spyros",0 +"Subject: a colossal and dangerous failure - cera alert title : a colossal and dangerous failure url : http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2185 overview : western energy  * california governor stays the course california governor gray davis provided his strongest public statements to date regarding the state  , s power crisis in his annual state of the state address on january 8 , 2001 . echoing many of his previous positions on what he perceives as a flawed and unfair california market structure , the governor labeled the state  , s electricity market system a colossal and dangerous failure . among other actions , he launched new initiatives valued at $ 1 billion to encourage conservation , provide financing and land to new generators , grant authority to utilities to engage in a portfolio of transactions to manage electricity costs , and increase regulatory scrutiny of existing market suppliers . the governor also called for a greater role for the state in overseeing and constructing new power plants . the governor acknowledged that the actions proposed are only some of the steps necessary to put california on the road to recovery . details regarding sources of funding for the initiative are still forthcoming . although he stated that california  , s investor - owned utilities must not be allowed to go bankrupt , no formal plan for ensuring their solvency was given . the financial community continues to lack the assurance it requires to continue to provide financial backing for pacific gas and electric and southern california edison . at this time the state legislature remains the body most likely to guarantee their solvency . the governor again criticized the federal energy regulatory commission for what he believes has been its failure to manage and restrain properly the wholesale market . merchant plant generators were accused of gouging the state , and it was suggested that these generators acted illegally in their operations , jeopardizing the reliability of the power grid . new , more severe sanctions were promised for those caught withholding power or extracting what investigators find as unreasonable profits . a los angeles times poll released the morning before the governor  , s address indicated that the majority of californians still do not believe there is an energy crisis . although the 33 percent growth in the state  , s economy over the past ten years has nearly outstripped the state  , s and surrounding region  , s supplies of power , the bulk of the governor  , s statements continue to focus on the culpability of power producers , rather than the serious supply shortfall . though the governor introduced steps to fund and facilitate the construction of new generating plants , increased regulatory scrutiny and the threat of sanctions will exacerbate the concern already expressed by plant developers and the financial community that the investment climate in california is excessively risky . * * end * * follow above url for complete report . come shoot the rapids with us at ceraweek 2001 , "" shooting the rapids : strategies and risks for the energy future "" in houston , february 12 - 16 , 2001 ! for more information and to register , please visit http : / / www 20 . cera . com / ceraweek / e - mail category : alert cera knowledge area ( s ) : western energy , to make changes to your cera . com account go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: ( no subject ) dear professor shreve , thank you for your message . i shall be glad to make a presentation at carnegie mellon . i am discussing with pierre ste - marie possible dates and it seems at this point that november the 3 rd would be the most convenient day . november the 10 th is an alternative date , but i need a few more days to make a commitment . look forward to meeting you . vince kaminski",0 +"Subject: re : howard haughton : no can do for wed / thurs . jeff , my associates are leaving for london tonight ( monday ) . they can still interview howard on tuesday afternoon . vince "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" on 01 / 29 / 2001 02 : 23 : 12 pm please respond to "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" to : rachel . quirke @ enron . com , vince . j . kaminski @ enron . com cc : subject : howard haughton : no can do for wed / thurs . hi rachel . please read the following email from my collegue in the uk who spoke directly to howard a bit ago by tele about wed / thurs interview . can we do this alternative he suggested ? we will have to reschedule - maybe ny ? or after howards trip in houston ? thanks , jeff hi jeff , i ' ve bad news . howard is off to new york on wednesday for 10 days until the 10 th of feb . either enron could fly him to houston after his holiday or maybe vince ' s team could get out to new york . let me know . regards vuthy * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: changes in option valuation in enpower - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 03 / 21 / 2001 08 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : harry arora / enron @ enronxgate on 03 / 21 / 2001 07 : 26 am to : sanjay gupta / enron @ enronxgate , steve nat / enron @ enronxgate cc : zimin lu / hou / ect @ ect subject : changes in option valuation in enpower sanjay wanted to confirm the changes to the option valuations in the enpower we discussed yesterday evening . 1 . currently the trader volatility inputs are the daily vol curve and the intra - monthly vol curve . the monthly options get marked directly to the monthly curve ( plus the smile ) and the monthlies get marked to a time blend of monthly and intra - month vol ( plus the skew ) . we want to change the valuation ( for the eastern books ) so that the dailies get marked to the intramonth curve ( which we want to call the daily curve ) and the monthly gets marked to the monthly curved . there will be not vol blending done by the enpower system for the daily and monthly option valuations . we want to make this change very soon ( by early next week ) 2 . currently there exists one smile for every region , which is specified in terms of volatility additive for specified dollar difference from the underlying . since different months in a region can trade in a large range ( $ 35 - $ 150 ) - this cannot result in accurate skew for all terms . what we need is a system which has skew per month . we suggest , for the short term , the skew should apply only to the summer daily expiration options . we need to make this change by early next week . however , we need to start modifing the system so that for every region we can enter a grid which has a percentage scale and specifies the skew differently for each month . research , has implemented this in our pricing model , and we would like this grid to be input into the valuation system . i am enclosing the pricing model ( which we both discussed yesterday ) for reference . this model is however , work under construction , so pls call alex huang for clarifications . 3 . the vol input system is complex and confusing . i would very much be interested in moving to a direct database interface , which accomodates the skew inputs per region as in . we should implement a ui which can input the dailies and monthlies at the moneys and the skew grid directly - so that we do not need to go through multiple iterations . i am very much interested in what we currently are releasing in delphi and would love an early implementation for options . on all these issues , i am speaking for the east desk . i am going to touch base with west guys and see if they are on board with these changes . thanks harry",0 +"Subject: re : storage book / luken ' s storage model just a reminder about the storage meeting today , april 27 . it is still scheduled for 3 : 00 pm in 30 cl . thank you . geraldine irvine 04 / 24 / 2000 11 : 44 am to : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , hunter s shively / hou / ect @ ect , colleen sullivan / hou / ect @ ect , scott neal / hou / ect @ ect , phillip k allen / hou / ect @ ect , thomas a martin / hou / ect @ ect , jim schwieger / hou / ect @ ect , chris gaskill / corp / enron @ enron , bhavna pandya / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , sean boyle / corp / enron @ enron , ed mcmichael / hou / ect @ ect cc : mark breese / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , airam arteaga / hou / ect @ ect , kimberly brown / hou / ect @ ect , laura harder / corp / enron @ enron , barbara lewis / hou / ect @ ect subject : storage book / luken ' s storage model please plan to attend a meeting on thursday , april 27 , from 3 : 00 - 5 : 00 p . m . to discuss luken ' s storage model and , more importantly , where we want to go with a storage book . this meeting will be in eb - 30 cl . any questions , contact mark breese ( ext . 3 - 6751 ) or gerri irvine ( ext . 3 - 6145 ) .",0 +"Subject: monte - carlo library stinson , i have created a directory ( o : \ research \ common \ projects \ options \ mclib ) to hold our monte - carlo models we developed in the past . i have the following mc models : 1 . asian option with two - point vol structure 2 . asian barrier option 3 . asian spread option 4 . time spread option 5 . asian digital option do we want to include models using american monte - carlo ? i have 1 . american spread option 2 . option on min or max of n assets with n as an input 3 . omicron option model with 3 price processes i suggest that all of us save a copy of monte - carlo models in this directory , from these , we can build a general monte - carlo library . we can also calculate the mc greeks more efficiently now . zimin",0 +"Subject: interview schedule - iris mack attached please find the interview schedule , resume , and evaluation form for iris mack . iris will be interviewing on december 28 , 2000 . please contact me with any comments or concerns . thank you , cheryl arguijo ews staffing 713 - 345 - 4016",0 +"Subject: re : dinner julie , thanks for the invitation . tuesday would work better for me . i came back from california this morning and i am quite exhausted . what is the number at which i can reach you ? vince "" julie "" on 02 / 26 / 2001 11 : 00 : 46 am please respond to "" julie "" to : "" vincejkaminski "" cc : subject : dinner would you like to get together for dinner with us tonight ( monday ) or tomorrow night ? ? julie",0 +"Subject: nytimes . com article : the real wolf this article from nytimes . com has been sent to you by vkaminski @ aol . com . / - - - - - - - - - - - - - - - - - - - - advertisement - - - - - - - - - - - - - - - - - - - - - - - \ looking for better it solutions ? toshiba is uniting digital , mobile and network innovations in a bold new vision of information technology for today and tomorrow . take a closer look at life in the new digital age . and imagine how good it can be . visit toshiba . com for more details . the real wolf reckonings by paul krugman ecently i received a letter from an economist i respect , chiding me for my "" naderite "" columns on the california energy crisis . he just didn ' t believe that market manipulation by power companies could possibly be an important issue ; it sounded too much to him like the sort of thing one hears from knee - jerk leftists , who blame greedy capitalists for every problem , be it third - world poverty or high apartment rents . the left has cried "" wolf ! "" so many times that sensible people have learned to discount such claims . but now a bona fide wolf has arrived , whose predatory behavior is doing terrible damage to our most populous state  * and nobody will believe it . true , california would be heading for a summer of power shortages even if it had never deregulated . and even if there was workable competition in the wholesale electricity market , prices in that market would spike during periods of peak demand , transferring billions of dollars from either taxpayers or consumers to the generators . but the evidence is now overwhelming that there isn ' t workable competition in california ' s power market , and that the actions of generators "" gaming the system "" have greatly magnified the crisis . the key fact is that california has somehow remained in a state of more or less continuous power shortage and very high wholesale prices regardless of the level of demand . a rash of outages has kept the electricity market conveniently  * and very profitably  * short of supply even during periods of low demand , when there ought to be lots of excess capacity . as frank wolak , the stanford economist who also advises the state ' s power grid , has pointed out , an outage at a power plant is a lot like an employee calling in sick . you can ' t tell directly whether he is really sick or has chosen to take the day off for other reasons , but you can look for circumstantial evidence . and such evidence has convinced mr . wolak that "" generators use forced outages strategically to withhold capacity from the market ""  * a view shared by a growing number of other researchers . which brings us to the latest move by the federal energy regulatory commission . on wednesday , the commission apparently decided to offer california some relief , and put new price caps in place on the california electricity market . i say "" apparently "" because the more you look at the plan the less likely it seems to be any help at all . indeed , the measure was passed on a 2 - to - 1 vote , with william massey  * the one commissioner who has been sympathetic to calls for price controls  * voting against it on the grounds that it would be ineffectual . what ' s wrong with ferc ' s plan ? first , it caps prices only in emergency conditions  * ignoring the fact that electricity prices have stayed at hard - to - explain levels even when there is no emergency . in effect , the plan is laid out as if the electricity market were really competitive , in spite of all the evidence that it is not . second , even those emergency price caps are full of loopholes , offering extensive opportunities for what mr . wolak calls "" megawatt laundering ""  * selling power to affiliated companies that for one reason or another are exempted from the price controls ( for example , the controls do not apply to "" imports "" from neighboring states ) , then selling it back into the california market . severin borenstein of the university of california energy institute adds that because the allowed price depends on the cost of generation at the least efficient plant , generators will have a clear incentive to produce inefficiently : "" i predict we will find some plants we never heard of before that are suddenly operating again , and they will be pretty inefficient . "" the general verdict seems to be that this is not a serious plan . there are serious proposals to mitigate the crisis out there  * indeed , last fall mr . wolak submitted a proposal that was well received by other experts  * but ferc has ignored all of them . the charitable interpretation is that ferc still doesn ' t get it , that it just can ' t bring itself to believe that this time the wolf is real . the uncharitable interpretation is that last week ' s action was meant to fail . the medley report , an online newsletter , calls the ferc plan "" a grand exercise in posturing without substance . . . a very clever temporary move by the bush administration to deflect any political fallout "" from the looming disaster . whatever the explanation , the plain fact is that ferc and the administration have yet to offer california any significant relief . 00 fo 04 b 3 blabf visit nytimes . com for complete access to the most authoritative news coverage on the web , updated throughout the day . become a member today ! it ' s free ! http : / / www . nytimes . com ? eta how to advertise - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - for information on advertising in e - mail newsletters or other creative advertising opportunities with the new york times on the web , please contact alyson racer at alyson @ nytimes . com or visit our online media kit at http : / / www . nytimes . com / adinfo for general information about nytimes . com , write to help @ nytimes . com . copyright 2001 the new york times company",0 +"Subject: thanks hi keith ! thanks so much for your additional thoughts , which i will definitely pass on to our business units . as for your nephew , please have him send his resume to me . i ' ll be happy to see what i can do . again , on behalf of enron and everyone involved in the project , especially vince and i and ken parkhill , we had a great and informative experience with the entire tiger project . best regards ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 09 / 2001 07 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - weigelt on 04 / 06 / 2001 04 : 40 : 10 pm to : "" ' christie . patrick @ enron . com ' "" cc : subject : thanks christie ; i wanted to send a short note to express my thanks to enron , and give some additional thoughts about the enron presentation . both students and staff enjoyed our interaction with enron . we hope enron got as much from the project as we did . i also had some additional thoughts about enrononline . - during the presentation , the students referred to a market ' s "" critical mass "" . however , we never defined what we meant by that . we had several discussions on this topic . i think the best way for enron to think about this is in terms of the psychology of traders . critical mass gives a market liquidity . traders seem to think about liquidity in terms of breadth ( how many products are being traded ) and depth ( the number of bids and offers ) . our thoughts were that when a trader pulls up a screen , he ( or she ) wants to see bids , offers , and trades occurring . so a simple ( and cheap ) metric that enron could use to determine whether rivals are approaching critical mass is simply to pull up screens and see if trades are occurring , and how quickly . traders will generally not use a trading platform that lacks "" action "" . - in terms of new power , i feel it is extremely important that your managers create an identity for the company . luckily no rival has done this ( though green energy is closer than most ) . the company that can communicate a simple and powerful message will create a competitive advantage for itself . i believe you can differentiate yourself in this market ( though you are selling a commodity ) . since you are essentially selling service , differentiation is always possible . on a final note , i wanted to ask a favor . my nephew recently graduate from michigan state university with a degree in business . i brought him to wharton to work on the tiger projects . this was because i knew he could add value , and because i thought he needed more experience in some strategy areas . he served as project coordinator and worked on several projects ( including enron ) . i was hoping i could get him an interview at enron since he expressed interest in your company . any help you could offer is appreciated . thanks again for making the experience memorable to the students . keith",0 +"Subject: re : var for metals ted , anjam ' s and myself ' s meeting at mg in ny office on 7 / 20 / 00 was productive . i am working on a summary of this discussions ( 1 a version layout ) and will send it to you after consulting with anjam . regards , tanya .",0 +"Subject: reuters : ecommerce mr kaminski , the 4 reports that you ordered : european gas market , european electricity market , uk gas market and uk electricity market has now been processed . you should get the 4 reports in the next week or so . also , just to let you know we have just produced 23 ecommerce reports covering all aspects of ecommerce . these reports are very extensive and have all the latest data on ecommerce which is available exclusively within these reports . i have also enclosed a brochure with the title of all the ecommerce reports . if you have any queries of if i can be of further assistance to you in the future , please do not hesitate to contact me directly . regards , miss . mychau phan energy account manager reuters business insight 85 fleet street london ec 4 p 4 al . tel : ( + 44 ) 20 675 7288 / 0990 fax : ( + 44 ) 20 7675 0991 mphan @ rbi - reports . com website : http : / / www . . com / energy - ecommerce cat . . pdf",0 +"Subject: re : costless collar for hanover bob , good job . zimin bob lee @ enron 01 / 11 / 2001 08 : 10 am to : zimin lu / hou / ect @ ect cc : subject : costless collar for hanover fyi - looks like we ' ve converged . bob - - - - - - - - - - - - - - - - - - - - - - forwarded by bob lee / na / enron on 01 / 11 / 2001 07 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : chris loehr @ ect on 01 / 10 / 2001 04 : 50 pm to : ron baker / corp / enron @ enron cc : anne yaeger / hou / ect @ ect , ryan siurek / corp / enron @ enron , wes colwell / hou / ect @ ect , bob lee / na / enron @ enron subject : costless collar for hanover ryan and i have looked at the research model and made some adjustments . the treasury rate at 12 / 28 / 00 was 5 . 127 % ( research uses 4 . 6 % which probably takes into account the recent fed 50 bp cut ) the maturity is 6 / 30 / 03 or 2 . 5 years ( research uses 3 years ) using these assumptions and a 47 . 2 % volatility in the bloomberg collar function results in a ceiling of 92 103 / 256 and a floor of 34 7 / 8 . after adjusting the research model for the changes above , ryan and i got a similar range from the research model so we are comfortable with these numbers . let me know if there are any questions . chris x 33092 ron baker @ enron 01 / 10 / 2001 10 : 52 am to : wes colwell / hou / ect @ ect , ryan siurek / corp / enron @ enron , chris loehr / hou / ect @ ect , anne yaeger / hou / ect @ ect cc : subject : costless collar attached is the updated valuation from bob lee in research using the actual 3 - year historical vol . of 47 . 2 which results in a call strike of 97 . 978 . also , he has confirmed that the presence of the swap has no impact on the value of the collar . let me know if you have questions . thanks , ron - - - - - forwarded by ron baker / corp / enron on 01 / 10 / 2001 10 : 28 am - - - - - bob lee 01 / 10 / 2001 08 : 44 am to : andrea v reed / hou / ect @ ect , ron baker / corp / enron @ enron cc : zimin lu / hou / ect @ ect subject : costless collar here ' s the calculation using the historical volatility . the strike drops slightly . the volatility in the calculation is the expected future vol ; atility - looking at traded options for hc and an expected fall off in vol for long dated options , one could justify a vol estimate in the range 40 - 50 % for the collar . the presence of the swap makes no difference on the collar valuation . bob",0 +"Subject: re : giuseppe cell phone stinson , no problem . vince stinson gibner 07 / 12 / 2000 11 : 26 am to : vince j kaminski / hou / ect @ ect cc : subject : giuseppe cell phone vince , can i loan to giuseppe my cell phone for the summer ? stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 07 / 12 / 2000 11 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : samer takriti @ enron communications on 06 / 28 / 2000 10 : 49 am to : stinson gibner / hou / ect @ ect @ enron cc : subject : re : bandwidth trading feature set i will be on the call . i may disconnect around 4 : 00 to attend the traders ' daily meeting . a couple of issues : 1 . would it be possible to get gappy a cell phone for the summer ? he does not have a phone at home . i think the reason for avoiding installing a phone in his apartment is the increasing cost of his houston stay . 2 . it is getting noisier here . gappy and i are wandering if we could get office space downstairs ( that we share ) . we will maintain presence on 44 , but we will be able to discuss when needed . - samer",0 +"Subject: re : var vince thanks for the update - especially your point 3 which echoes our own discussion yesterday : i want to clarify responsibilities for maintenance and administration of var . we need transparency around the process so that mapping decisions , for example , are easily made , supported and reviewed . it became clear after last friday ' s events , that we are in an awkward paradigm with respect to how we handle var here , particularly at "" pressure points "" . i am putting together the scope of a "" general overhaul "" of the var process , including method and administration , to which i hope we would all buy in , so be assured of our co - operation . dp - - - - - original message - - - - - from : kaminski , vince sent : wednesday , april 11 , 2001 2 : 49 pm to : port , david cc : lavorato , john ; kaminski , vince ; tamarchenko , tanya subject : var david , during today ' s var coordination meeting we had a discussion of issues related to mapping of the forward price curves into core locations . mapping is a necessity dictated by the limitations of the computer system : we have to reduce the dimensionality of the problem to stay within the bounds of available cpu memory . also , in some cases the quality of price discovery is poor and it ' s difficult to model the price curves independently : we solve the problem by mapping them into more liquid and better behaved core locations curves . we have agreed on the following : 1 . winston will investigate the it side and determine to what extent we can increase the number of forward price curves that are simulated as basic ( core ) curves . he will investigate the impact of a larger number of the core curves on the time required to complete the var run . 2 . the curves associated with the biggest 10 - 20 positions in each commodity should be modeled as core curves ( i . e . no mapping into other locations ) . it makes sense to monitor the biggest risks separately and avoid aggregating them into less transparent aggregates . 3 . the results of an automated clustering ( mapping ) procedures should be systematically monitored by a human and corrected if they misrepresent the risks of the trading positions . this responsibility should be vested with one person ( right now the responsibility is dispersed through the organization and this means in practice that nobody is responsible ) . research can allocate one person to this task ; cooperation of trading and rac will be critical . vince",0 +"Subject: re : video conference with ross mcintyre nick , we may have problems getting the vc location in houston on short notice . we are currently on stand - by . we shall default , if we have no other choice , to a phone interview . vince enron capital & trade resources corp . - europe from : nick mooney 04 / 18 / 2000 09 : 09 am to : vince j kaminski / hou / ect @ ect cc : mark tawney / hou / ect @ ect subject : video conference with ross mcintyre vince , you should have received an invitation through lotus notes which outlines the vc location for the conference call tomorrow . it is schedule for 4 : 30 pm uk time ( 10 : 30 am houston time ) ross ' s background is from investment banking ex dresner bank , he has a phd in mathematical and is currently with speedwell weather derivatives where he has been developing weather derivative pricing and portfolio optimisation tools which they have been marketing to end - users with weather risks . the attached word documents are articles that he has written for publication . regards nick mooney - mcs . doc - analytic . doc - par . doc",0 +"Subject: the national forum on corporate finance andrew fastow enron co . hi andy i don ' t recall sending the above attachment . if so , please pardon my redundancy . attached is some registration details for the upcoming corporate finance conference here at rice . when you get a moment , if you could have someone on your staff return it that would be great . each topic is followed by "" panel "" discussion . we have you slated to serve on the panel dealing with "" equity dilution from option compensation "" and will feature work by david yermack from nyu . stu gillan from tiaa / cref will be serving on the panel with you along with john blahnik from delphi automotive . please call me direct if i can be of any help or assistance . dave ikenberry - registation details regarding . doc * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: us gas storage growth huge growth in natural gas storage tracked as the natural gas market approaches 30 tcf per year , demand for natural gas storage capacity will rise exponentially . although the snowball has just started rolling , current plans by natural storage operators will boost working capacity by 430 bcf , or 10 % , and will raise peak - day deliverability 11 . 8 bcf per day , or 13 . 8 % , according to a new survey by intelligence press . intelligence press ' new multimedia research package provides a comprehensive look at all current activity on 458 storage fields with additional key information on 101 lng facilities . among them are 38 proposed natural gas storage fields and 15 storage expansion projects . depleted fields capture the largest share of the proposed fields with 24 , followed by aquifers with six , and salt domes and salt beds with four each . altogether the proposed new fields account for about 329 bcf in working capacity and 9 . 7 bcf per day in deliverability . proposed and potential expansions represent an increase of about 100 . 5 bcf of working capacity and 2 . 1 bcf per day in deliverability . but these projects are just the tip of the iceberg . regulatory changes , shifting natural gas flows and increases in demand due to growth in the economy and particularly in natural gas fired power generation are expected to cause significant additional storage growth in the next decade . for more information go to : www . intelligencepress . com rbac gpcm natural gas market forecasting system - - - - - original message - - - - - from : enerfax daily [ smtp : enerfax @ fastband . com ] sent : friday , march 31 , 2000 1 : 52 am to : * * aaaenerfax subject : enerfax daily ( http : / / www . enerfax . com / ) - atto 0002 . htm",0 +"Subject: re : clewlow and strickland book steve , i can order the books at 15 % discount . i am sending you 4 copies today and will be glad to order more on your behalf . vince steven leppard 01 / 23 / 2001 04 : 22 am to : vince j kaminski / hou / ect @ ect cc : sharad agnihotri / lon / ect @ ect subject : clewlow and strickland book hi vince is there any way we can lay our hands on clewlow and strickland ' s new book at a preferential price ? steve",0 +"Subject: re : my model for spikes valery , i am interested in receiving the preprint . on another note , i would be glad to meet you for lunch / dinner sometimes during the next few weeks . please , let me know what would be the best time to meet . vince vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com "" valery kholodnyi "" on 12 / 20 / 2000 03 : 13 : 09 pm to : vkamins @ enron . com cc : subject : my model for spikes dear dr . kaminski , i was recently allowed to release into the public domain on the limited basis the first of the preprints that i recently authored on my model for spikes in power prices and for the valuation of the contingent claims on power . in this regard , i have just given a talk on this model at the joint seminar of the center for energy finance education and research and the institute for computational finance at the ut austin . right now i am also in the process of forming a list of specialists both in the industry and academia who might be interested in receiving this preprint . please let me know if you might be interested in receiving this preprint . i look forward to hearing from you . sincerely yours , valery kholodnyi manager of quantitative analysis research and analytics group txu energy trading ps . here are the main preprints that i have recently authored on my model for spikes in power prices and valuation of contingent claims on power : 1 . valery a . kholodnyi , the stochastic process for power prices with spikes and valuation of european contingent claims on power , preprint , txu - rag - 01 / 00 , july 2000 . 2 . valery a . khlolodnyi , valuation of a swing option on power with spikes , preprint txu - rag - 05 / 00 , august , 2000 . 3 . valery a . kholodnyi , valuation of a spark spread option on power with spikes , preprint txu - rag - 21 / 00 , november 2000 . 4 . valery a . kholodnyi , valuation of european contingent claims on power at two distinct points on the grid with spikes in both power prices , preprint txu - rag - 24 / 00 , november 2000 . 5 . valery a . kholodnyi , valuation of a transmission option on power with spikes , preprint txu - rag - 25 / 00 , november 2000 . as i have indicated to you in my previous e - mail , contrary to the standard approaches , i model spikes directly , as self - reversing jumps on top of a stochastic process for the regular dynamics of power prices in the absence of spikes . in this way the dynamics of power prices is modeled as a non - markovian process , even if the process for the regular dynamics of power prices is markovian . among other things my model for spikes allows for the explicit valuation and hedging of contingent claims on power with spikes , provided that the corresponding contingent claims on power can be valued and hedged in the absence of spikes .",0 +"Subject: visit to enron tom , i am forwarding to you a copy of the message from nick bambos . i shall try to catch you for a few minutes today ( monday ) to close the loop on this effort . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 13 / 2000 11 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 03 / 12 / 2000 05 : 32 : 35 pm to : vince . j . kaminski @ enron . com , bambos @ stanford . stanford . edu cc : subject : visit to enron hello vince , it was nice seeing you at stanford and many thanks for the lunch we had together . i really enjoyed our discussions , both at the technical level and otherwise . i promised to send you an e - mail regarding possible dates for a visit to enron . i delayed it for a week till my schedule was clearer . let ' s see if we can get a match with your schedule - mine is rather terrible : friday , 21 st of april looks good . but april 23 rd is easter sunday , so that may make it difficult for some people at enron to be around . let me know if that is the case . i am willing to visit then , because the week after that i am scheduled to be in japan and in the previous weeks i am all committed on fridays . friday , 19 th of may is the next possibility , but this probably is too far out . the main problem is that i am operating within a window of opportunity for attracting top students for this research . this window closes by the end of april , and it would be important for the student support funds to be in place then , so that i can make hard commitments to students and attract top talent . i am already reviewing files of students who have approached me for phd advising , and i am in a mode of doing "" soft commitments to star - level students "" to get this research and its potential on their radar screen . top students are highly sought after by advisors and i want to be an early player in this competition . does my visit to enron have to happen before we can set up the project and student support at stanford ? if so , doing it before the end of april is important for getting top people . if the visit can happen after we get the ball rolling , then we can schedule it in may . i assume there will be multiple visits both ways when the project gets going . please let me know what you think . best regards , nick",0 +"Subject: re : part - time work cantekin we shall get back to you when i return from europe in a week . vince "" cantekin dincerler "" on 09 / 25 / 2000 12 : 46 : 51 pm please respond to to : cc : subject : re : part - time work vince , i have received the full - time offer package from associate & analyst program last week . apparently they have pretty tight deadlines . because of a certain clause in the contract , i may have to give them an answer by october 16 th . since we discussed this before i left enron , i felt it would be a good idea to inform you of the recent developments . i am looking forward to hearing from you soon regarding both part - time and full - time employment opportunities with the research group . best , - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 cell : ( 512 ) 680 - 5355 http : / / uts . cc . utexas . edu / ~ cantekin - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -",0 +"Subject: re : dinner speaker - may 23 dear mr . kaminski , ? attached ? is the brochure of the eastern conference . ? i have listed you as the dinner speaker for the evening of wednesday , may 23 , 2001 . ? please ensure that your name and title is correct . ? if you have any questions or concerns please feel free to contact me . ? sincerely , ? jeremy t . guenter administrative assistant center for research in regulated industries rutgers university - graduate school of management 180 university avenue , room 200 p newark , nj 07102 - 1897 phone : 973 - 353 - 5761 ; fax : 973 - 353 - 1348 http : / / www . rci . rutgers . edu / ~ crri crri @ andromeda . rutgers . edu ? - - - - - original message - - - - - from : michael a . crew [ mailto : mcrew @ andromeda . rutgers . edu ] sent : wednesday , march 21 , 2001 11 : 08 am to : shirley . crenshaw @ enron . com cc : vkamins @ enron . com ; crri @ andromeda . rutgers . edu ; kleindorfer @ wharton . upenn . edu subject : dinner speaker - may 23 shirley , this is to follow up today ' s conversation with anita . as mentioned paul kleindorfer invited vince to be our dinner speaker on thursday , may 24 . on reflection given the strong line up for wednesday - fred kahn et al - we would very much like vince to be the speaker on wednesday . this will conclude the day very well giving participants a strong incentive to be there for the wednesday . i gather that this change should be acceptable to vince . we will show vince ' s name as follows : wincety j . kaminski managing director - research enron jeremy will be em ailing you the program with this information immediately . we would like to go to press today . failing that we can go to press tomorrow . we would very much appreciate your confirming this and making any corrections or changes . if you would respond to all of us it would be appreciated . michael michael a . crew professor ii director - center for research in regulated industries editor - journal of regulatory economics rutgers university , graduate school of management 180 university avenue newark , n . j . 07102 - 1897 phone : 973 353 5049 fax : 973 353 1348 http : / / www - rci . rutgers . edu / ~ crri - ecol . pdf",0 +"Subject: re : pre - meeting weathereffects site cruise vince , you ' re right . it is wednesday ! see you then . ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , july 06 , 2000 12 : 14 pm to : ekrapels @ esaibos . com cc : vince j kaminski ; mike a roberts subject : re : pre - meeting weathereffects site cruise ed , this is a terrific site . i look forward to another presentation . one question . you mentioned tuesday in our phone conversation . i have the presentation scheduled for wednesday next week . please , double check the time and date . vince "" edward krapels "" on 06 / 30 / 2000 03 : 15 : 43 pm please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : re : pre - meeting weathereffects site cruise sold ! i ' ll initiate the call . - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 30 , 2000 3 : 44 pm to : ekrapels @ esaibos . com cc : vince j kaminski subject : re : pre - meeting weathereffects site cruise ed , thursday works for me . what about 10 : 30 my time ? vince "" edward krapels "" on 06 / 30 / 2000 02 : 43 : 00 pm please respond to to : "" ' vince j kaminski ' "" cc : subject : re : pre - meeting weathereffects site cruise how about thursday , july 6 ? - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 30 , 2000 3 : 29 pm to : ekrapels @ esaibos . com cc : vince j kaminski subject : re : pre - meeting weathereffects site cruise ed , a correction . i shall spend an entire day at prc ( performance review ) on friday , july 7 . can we do on another day vince "" edward krapels "" on 06 / 30 / 2000 12 : 40 : 59 pm please respond to to : "" ' vince j kaminski ' "" cc : subject : re : pre - meeting weathereffects site cruise i ' ll still be here in boston so we ' d do it over the phone . ok ? - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 30 , 2000 12 : 11 pm to : ekrapels @ esaibos . com cc : vince j kaminski subject : re : pre - meeting weathereffects site cruise ed , will you be in houston on that day or we shall do it over the phone ? vince "" edward krapels "" on 06 / 30 / 2000 09 : 13 : 04 am please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : pre - meeting weathereffects site cruise vince , how about a pre - meeting web site cruise on friday , july 7 at 11 am edt ? ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : friday , june 30 , 2000 9 : 52 am to : ekrapels @ esaibos . com cc : vince j kaminski subject : re : next visit to houston ed , july 12 , 2 : 30 it is . i would like the pre - meeting site cruise . how can we arrange it ? vince "" edward krapels "" on 06 / 30 / 2000 04 : 00 : 53 am please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : re : next visit to houston vince , we ' re all set for 2 : 30 on july 12 . how about a pre - meeting web site cruise on friday , july 7 at 11 am edt ? ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , june 29 , 2000 5 : 04 pm to : ekrapels @ esaibos . com cc : vince j kaminski ; shirley crenshaw subject : re : next visit to houston ed , wednesday , july 12 , 2 : 300 will work for me . i shall be glad to review your website - - www . weathereffects . com . i shall invite some people who work on electricity in my group to join me . vince "" edward krapels "" on 06 / 29 / 2000 03 : 53 : 40 pm please respond to to : "" ' vince j kaminski ' "" cc : "" jeffrey shorter \ ( e - mail \ ) "" subject : re : next visit to houston vince , good to hear from you and i ' m glad you ' re available . how is wednesday at 2 : 30 ? i did look at eol and am not surprised to see its quality . i was unable to say much about it in my risk electricity hedging and trading report because of deadline pressures . how is the site doing ? i am intrigued by the competition for trading platforms and was astonished to hear that goldman , morgan , bp and shell were going to launch a site to compete with yours . talk about a shotgun marriage ! if we have time next week , i could step you through our website - - www . weathereffects . com . i ' m very proud of what we ' ve done . i can ' t give out a password yet but would be happy to walk through the site with you over the phone using my password . it ' s a very ambitious site - - with state - of - the - art wsi weather ( seasonal , 6 - 10 , and day to day ) driving a good load model for pjm and nepool . esai contributes oil and gas input price forecasts , capacity judgments , and "" herding "" ideas to develop power price forecasts for same time periods . after one month ' s full - bore effort , i ' m pleased with the results ( e . g . , we forecast nepool onpeak to be $ 43 and it turned out $ 46 ) . have a great weekend . ed - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , june 28 , 2000 5 : 29 pm to : ekrapels @ esaibos . com cc : vince j kaminski ; shirley crenshaw subject : re : next visit to houston ed , i shall be available on both days . what about wednesday , july 12 , between 1 : 30 and 4 : 00 . please , let me know what time would work for you . it will be nice to see you again . vince p . s . by the way , did you have a chance to take a look at the eol ? "" edward krapels "" on 06 / 28 / 2000 02 : 49 : 41 pm please respond to ekrapels @ esaibos . com to : vince j kaminski / hou / ect @ ect cc : subject : next visit to houston dear vince , i will be returning to houston during the week of july 10 . esai and weather services international have launched - - after more than 18 months of r & d - - our service , called energycast power trader and energycast gas trader , for power traders in nepool and pjm . i would be happy to review the service with you as well as take you on a tour of our web site . are you available on july 12 - 13 ? sincerely , ed krapels",0 +"Subject: re : monday presentation corrected i made a few changes to make ebs projects slide more uniform and fixed spelling of one name for ena projects slide . - - stinson",0 +"Subject: re : henwood query good talking with you this morning . by all means , talk to grant masson about who else is using the henwood model within enron . attached are the workbooks i mentioned . the "" details of jan and july . xls "" workbook contains the resulting listing from the query i gave you yesterday and you can see how the supply curve was created from that . the supply curve becomes nonsense at points for reasons i believe are related to reliability commitment constrants , instead of pure economic dispatch , and to the aggregate reporting problem i described in my note yesterday . the workbook "" supply curve . xls "" has the simplistic , average supply curve i mentioned , constructed from fuel and vom costs . depending on the question you are trying to answer , it may be an approach to consider . the henwood contacts i had in mind are : tao guo , phd , senior "" algorithmist "" ( 916 - 569 - 0985 )   the one i was thinking of wenxiong huang , phd senior project consultant ( 916 - 569 - 0985 ) ajit kulkarni , phd , software product manager ( 916 - 569 - 0985 )   more a trainer , but sharp cosimo coscia , senior consultant ( south australia ) 618 - 8357 - 1244   very resourceful wade schauer , staff consultant , ( 916 - 569 - 0985 )   best for questions about emss per se all have emails , of course . template : tguo @ hesinet . com also , if you can not get satisfaction , contact eric toolson , vp ( 916 - 569 - 0985 ) . he has a laconic style , but is very focused on customer satisfaction and retention . and he has the pull to make things happen . regards , michael > > > karolina potter / lon / ect @ enron 08 / 24 / 00 07 : 08 am > > > michael , i am an analyst in paul mead ' s continental power trading group in london . i am currently working on the project , which requires the use of emss , and experience some difficulties interpreting the output results . steven leppard from our research group gave me your name as an expert in this system and consequently the person to contact in case of problems . i have been running simulations for the dutch market and was asked to provide the traders with some front - end screen graphs in order to interpret the numerical results . one of the graphs is to show an hourly generation stack and system ' s marginal cost , as we only run cost based scenarios . to sort each station ' s hourly generation i need its marginal cost . to my knowledge though , marginal cost is only generated for a systems marginal unit ( transarea marginal units query , marg _ cost unit ) . therefore i was sorting the stations according to the cost which i calculated based on the outputs from station detail by hour query . the calculation was as follows : for each hour , for each generating station : "" marginal cost "" [ o / mwh ] = ( generation _ cost [ oo 00 ] * 1000 ) / generation [ mwh ] - vom _ cost [ o / mwh ] this i thought would include fuel cost and start up costs . however , a marginal station which i get on the stack as a result of the above calculation is not a station given in marginal station field in transarea marginal units query . i have also looked into transarea _ data _ hr table and transarea _ data table but non of the costs there match my results . do you happen to know what formula is used to determine marg _ cost and which outputs i should be using to obtain the right results ? it might be easier if we could discuss this issue on the phone . in this case could you please send me your direct telephone number . i am struggling understanding what is going on and would appreciate your help very much . regards karolina - text . htm - details of jan and july . xls - supply curve . xls",0 +"Subject: re : fea announces the release of @ energy 2 . 0 thanks a lot , chris . yes , we only have one shared network license . zimin from : chris jeska / enron @ enronxgate on 02 / 15 / 2001 04 : 34 pm to : zimin lu / hou / ect @ ect cc : subject : re : fea announces the release of @ energy 2 . 0 zmin , i spoke with the provider of this software . am i to understand that there is only one concurrent user server licence for this software ? i am almost completed and would like to test this out . let me know , thanks . chris 57004 - - - - - original message - - - - - from : lu , zimin sent : tuesday , february 06 , 2001 10 : 27 am to : jeska , chris subject : fea announces the release of @ energy 2 . 0 here we go again . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 02 / 06 / 2001 10 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 02 / 06 / 2001 08 : 51 am to : chris jeska / na / enron cc : subject : fea announces the release of @ energy 2 . 0 - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 02 / 06 / 2001 08 : 49 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 31 / 2001 11 : 20 am to : zimin lu / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : fea announces the release of @ energy 2 . 0 zimin , please , take a look at it . i think we should download the update . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2001 11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" michelle mendoza "" on 01 / 26 / 2001 02 : 33 : 14 pm to : cc : subject : fea announces the release of @ energy 2 . 0 january 26 , 2001 vince kaminski enron north america corp . 1400 smith street 30 th floor , rm . 3036 b houston , tx 77251 - 1188 1 713 - 853 - 3848 dear vince kaminski , this is to inform you of the release of @ energy 2 . 0 . ftp download instructions are available immediately . the download instructions are included at the end of this email . your cd ' s and manuals will be shipped to you within 2 weeks . please see below for more information regarding this new release . please confirm that you are the correct recipient for this shipment and your address above is correct by clicking reply and send . if any changes need to be made , please make the changes above and reply . * * warning : please note that if you did not received a license key for @ energy after june 2000 , you will need to contact support @ fea . com or call 510 . 548 . 6200 to obtain a new license key to enable the new version . * * * * swing users : @ energy / swing now replaces the "" swing "" product . see the @ energy user manual for a discussion of the changes . contact fea for the necessary license keys . you will be able to run both the new and old swing simultaneously . heres an overview of the new and changed features since version 1 . 6 : @ energy ( forward curve ) jump parameters are now calibrated for use in other @ energy functions . inputs and outputs to powercalib and comcalib have changed . see the corresponding function syntax in the user guide for additional information . 35 - 40 % speed improvement . the module is now out of beta . @ energy ( basics ) different interpolation schemes on forward prices are now supported . if you use indexswap , exoticswap , or optindexswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . a new utility function , pathutil , allows you to simulate and visualize price paths consistent with the models supported by @ energy . 25 - 30 % speed improvement . @ energy ( advanced ) different interpolation schemes on forward prices are now supported . if you use optdiffswap or diffswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . calspreadopt now allows for the specification of two different mean reversion rates . 30 - 35 % speed improvement . @ energy ( swing ) swingopt and stripswingopt now allow for valuation of swing straddle contracts with overall load constraints . 65 - 70 % speed improvement . the module is now out of beta . @ energy ( weather ) 30 - 35 % speed improvement . if you have any questions please feel free to contact us . we appreciate this opportunity to be of continuing service to enron north america corp . . regards , michelle mendoza support @ fea . com + 1 - 510 - 548 - 6200 financial engineering associates , inc . ( fea ) * * * * * * * * * * * * * * * * * * * * * * * * * * * * * to download @ energy 2 . 0 via ftp , follow the following instructions : note : using explorer leads to unpredictable results , so we suggest using netscape or a dos shell . using netscape : in the location box type : ftp : / / energy @ ftp . fea . com password : 2 rbzxgv 5 energy - 2 . 0 - win 32 . exe is for windows 95 / 98 / 2000 / nt . download and run on a local drive . using a dos shell : at a dos prompt type : ftp ftp . fea . com user : energy password : 2 rbzxgv 5 type "" binary "" and hit ' return ' . type "" ls "" for a list of available files . type "" get "" energy - 2 . 0 - win 32 . exe and and wait for the ftp > prompt . type "" quit "" . the file will be downloaded into the directory at which you entered the ftp site . double click on the exe and follow the instructions on the screen .",0 +"Subject: re : check vince , ? please find attached an invoice that was sent to habiba back in september . ? thanks , julie - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : wednesday , november 01 , 2000 2 : 43 pm subject : re : check julie , yes , ? this is how we split this expense internally . please , send it to me . vince "" julie "" on 10 / 31 / 2000 01 : 57 : 55 am to : ? ? cc : subject : ? re : check vince , oh . i sent an invoice to habiba for aus 5 k a while back , and she ? informed me that she passed it along to the people who are handling the ? agreement now ( i take that as fiona grant in london ? ) . i will then send ? out another invoice of aus 5 k in the next week or so for the remaining ? balance . should i have sent the invoice to you ? thanks , julie - - - - - original message - - - - - from : ? vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : monday , october 30 , 2000 9 : 12 ? pm subject : re : check julie , a clarification . we had an agreement with ? chris and les to contribute aus 10 , 000 as a part of the ? cost . vince "" julie "" on 10 / 30 / 2000 ? 12 : 32 : 14 pm to : cc : subject : ? re : check vince , thank you for your email . we ? will send you a copy of the book as soon as it is available , which we are ? now estimating to be around 21 november ( no need to send us a cheque ; you ? deserve it ) . just let us know if we should use a different address than ? your office in houston . thanks again for all of your ? help . julie - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : ? julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : ? monday , october 30 , 2000 2 : 16 pm subject : ? check julie , this message was returned to me a few times ? when i sent it from my ? home address . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by ? vince j kaminski / hou / ect on 10 / 30 / 2000 08 : 00 am ? - - - - - - - - - - - - - - - - - - - - - - - - - - - vkaminski @ aol . com on 10 / 28 / 2000 ? 12 : 12 : 57 pm to : julie @ lacima . co . uk cc : vkaminski @ aol . com , vkamins @ enron . com subject : ? check julie , as the book is about to be released to ? the market , i would like to start the process to issue the check ? to lacima . who will be the payee ( lacima ) and what is the ? address ? vince - enron 202 _ 18 _ 09 _ 00 . doc",0 +"Subject: calculating bid - ask prices this is about enron movie trading business where we are a market maker for trading future of a movie ' s gross box office receipt . rich sent to many people a writing explaining his movie trading idea and asked us to provide some feedback . i think the idea ( see below ) might be applicable to other parts of enron . we can call it "" dynamic bid - ask price process "" . in fact , we can set that the bidding period is closed when no new bid is submitted to the system within a specified amount of time . the final ( clearing ) bid and ask prices are just the last "" tentative "" price shown to the public before the bidding period ends . ( so the customers can see the final price before the market close and can revise their bids if they wish . ) i think this method is suitable for illiquid products to be traded via enrononline . com . - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 04 / 24 / 2001 07 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 04 / 24 / 2001 07 : 40 pm to : richard dimichele / enron communications @ enron communications cc : chonawee supatgiat / corp / enron @ enron , cynthia harkness / enron communications @ enron communications , greg wolfe / hou / ect @ ect , james ginty / enron communications @ enron communications , jim fallon / enron communications @ enron communications , kelly kimberly / enron communications @ enron communications , kevin howard / enron communications @ enron communications , key kasravi / enron communications @ enron communications , kristin albrecht / enron communications @ enron communications , kristina mordaunt / enron communications @ enron communications , martin lin / contractor / enron communications @ enron communications , paul racicot / enron communications @ enron communications , zachary mccarroll / enron communications @ enron communications , martin lin / contractor / enron communications @ enron communications subject : calculating bid - ask prices i think we should let the price float with the market instead of trying to forecast it . otherwise , if our forecast is not consistence with the market , we may have an imbalance in the bid - ask orders and we may end up taking some positions . you know , as russ and martin pointed out , we cannot fight with the studio and exhibitors because they have inside information and can game the price easily . one way to ensure the balance of the bid - ask orders is to embed an exchange system inside our bid - ask prices front end . each week , we have a trading period . during the period , instead of posting bid - ask prices , we post "" tentative "" bid - ask prices , then we ask our customers to submit their acceptable buying or selling price . these "" tentative "" bid - ask prices get updated and are shown to the public . of course , customers can revise / withdraw their bids anytime during the trading period . at the end of the period , we calculate and post the final bid and ask prices . the seller who submits lower selling price than our final bid price gets paid at the bid price . the buyer who submits higher buying price than our final ask price pays at the ask price . next week , we repeat the same process . this way , we can manage our positions easily and we can also behave like a broker where we don ' t take any position at all . we make profit from those bid - ask spread . we don ' t have to worry about forecasting accuracy and insiders ' trading because we don ' t have to take any position . let the market be the one who decides the price . if we maintain our net position as zero , at the end , when all the actual gross box office numbers are reported in those publications , our customers with open long / short positions are perfectly matched . using the mark - to - market charge can reduce credit risk . thanks , - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 04 / 24 / 2001 07 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 04 / 20 / 2001 04 : 31 pm to : richard dimichele / enron communications @ enron communications , key kasravi / enron communications @ enron communications cc : martin lin / contractor / enron communications @ enron communications subject : some more input hi rich and key , again i think your idea is very good . i think that we , as a market maker , can reduce our credit risk ( risk of default ) if we do the "" mark - to - market "" charging . that is , each week when we release a new expected value of the gross box office receipt , we balance all the opening positions the same way as in a regular future market . this way , we can give margin calls to the couterparties who are expected to owe us a lots of money . in the last paragraph , i think the gross box office can also be determined from the market itself ( i . e . , if there are lots of buyers , our offer price should go up . ) we can offer other derivative products such as options as well . - chonawee",0 +"Subject: re : alpbacher finanzsymposium 2000 - invitation for a speech on "" weatherderivatives "" dear mr . enthofer , i regret to decline your kind invitation to speak at the alpbacher finanzsymposium . i have another engagement in the beginning of october in paris . vince kaminski finance trainer on 05 / 30 / 2000 08 : 02 : 42 am to : "" ' vkamins @ enron . com ' "" cc : subject : alpbacher finanzsymposium 2000 - invitation for a speech on "" weatherderivatives "" dear mr . kaminski ! we are the organizer of the alpbacher finanzsymposium which is a top event for austrian corporate and banking executives every year and takes place in the mountains of tirol from 4 th to 6 th of october 2000 . it hosts approximately 500 participants . this year ` s topic is "" balance sheet protection "" . we kindly ask you , if you are interested in presenting "" your latest research into the application of weather risk management techniques "" at the symposium . date and location : friday , october 6 th 2000 , 9 . 30 a . m . alpbach - tirol , congress centrum . we would highly appreciate to welcome you in alpbach in october - please give us notice as soon as possible . we will come back to you with organizational details . yours sincerely hannes enthofer hannes enthofer finance trainer international gmbh am hundsturm 11 a - 1050 wien tel : + 431 5455277 - 0 fax : + 431 5455277 - 20 e - mail : enthofer @ financetrainer . com web : www . financetrainer . com",0 +"Subject: visiting enron may 4 th vince ( and shirley and melinda ) , thanks so much for including me in this meeting with stanford engineering - - - unfortunately , i ' m committed to participate in the enron law conference in san antonio that entire day . thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 09 / 2001 03 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 04 / 09 / 2001 01 : 21 pm to : christie patrick / hou / ect @ ect cc : melinda mccarty / corp / enron @ enron subject : visiting enron may 4 th christie / melinda : can christie meet with susan and vince on friday , may 4 th from 1 : 30 - 3 : 00 ? please let me know . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 09 / 2001 01 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 09 / 2001 01 : 18 pm to : shirley crenshaw / hou / ect @ ect cc : subject : visiting enron may 4 th shirley , fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 09 / 2001 01 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" susan c . hansen "" on 04 / 06 / 2001 06 : 14 : 10 pm to : vince . j . kaminski @ enron . com cc : clovell @ stanford . edu , donna lawrence , hillh @ stanford . edu , bambos @ stanford . edu subject : visiting enron may 4 th dear vince , this is great news ! donna and i are delighted that you have time to see us on may 4 th . i ' ll be out of the office next week . by copy of this email to my assistant , carol lovell , i will ask her to get in touch with shirley for scheduling as well as directions on where to meet you . we ' ll be glad to meet with christie patrick as well . looking forward to meeting you , susan at 05 : 36 pm 4 / 6 / 01 - 0500 , you wrote : > susan , > > thank you for your message . i shall be glad to meet with you on may the > 4 th . > i shall ask my assistant , shirley crenshaw ( 713 ) 853 5290 , to call you to > set up the meeting . > > also , for your information , we have recently set up a special unit to > coordinate enron ' s > relationships with the universities . the person running this unit is > christie patrick . > please , feel free to contact her and give my name as a reference . i shall > coordinate the meeting > on may the 4 th with her . > > vince > > > additional information re christie : > > phone : ( 713 ) 853 - 6117 > > email : christie _ patrick @ enron . com > > > > > > "" susan c . hansen "" on 04 / 03 / 2001 04 : 33 : 54 pm > > to : vkamins @ enron . com > cc : > subject : visit from stanford ? > > > dear dr . kaminski , > > let me briefly introduce myself , i am the director of corporate relations > for the school of engineering at stanford university . in this role , i am > always on the watch for ways to bring our faculty together with companies > that have an appetite for engagement with top tier research institutions . > > i believe you know hill huntington , who is a senior researcher with > stanford ' s energy modeling forum . he suggested i get in touch with you for > some ideas about contacts at enron . i ' m in the process of planning a trip > to texas in early may along with my colleague donna lawrence , the > university ' s director of corporate relations . we were hoping to be able to > include a stop at enron on our itinerary . right now it appears that friday , > may 4 th would work best for us but we ' re at the very beginning of our trip > planning . > > the purpose of our visit would be to review the current relationship > between enron and stanford , to give you an overview of current priorities > in the school of engineering , and ask for your help in identifying the best > points of contact . > > i look forward to hearing from you about your availability , > > sincerely , > susan hansen > > > > > susan c . hansen > director , corporate relations > school of engineering > stanford university > stanford , ca 94305 - 4027 > ( 650 ) 725 - 4219 susan c . hansen director , corporate relations school of engineering stanford university stanford , ca 94305 - 4027 ( 650 ) 725 - 4219",0 +"Subject: re : martin lin stinson , thank you for following up promptly with support on martin lin . i spoke with vince regarding a conversation i had with compenstation yesterday . compensation has recently comleted an analysis for vince ' s group and determined that the appropriate salary for managers in research should be 90 , 000 . the following will be his pay structure : effective august 1 , 2000 job title manager base salary $ 90 , 000 retention bonus $ 10 , 000 ( ending 8 / 1 / 2001 ) please provide a job title that you would feel appropriate for this positon . if you would like to discuss please let me know . norma x 31545 stinson gibner 08 / 23 / 2000 08 : 46 am to : norma villarreal / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : martin lin norma , thanks for your excellent suggestion of using a retention bonus for martin lin in order to address both the issues of compensation and retention for him . as i mentioned during our meeting , just my small team within research has lost 3 people over about the last 2 years , and we have had a hard time recruiting good candidates . last year we made an offer to a person graduating from ut ( ms in computational finance ) of 75 k plus 25 k signing bonus . he replied that he would like to work at enron but was already in the position of turning down an offer with a base salary above $ 100 k . martin is a very skilled individual with a ph . d . in electrical engineering and almost two years experience at enron . he would be very difficult ( and expensive ) to replace . for this reason i feel it necessary to be proactive in finding ways of retaining him as an employee . please let me know if we have a green light to go forward with a 1 - year retention bonus of 10 k and a raise to 87 k base salary for mr . lin . i would plan to then give martin an additional raise at his next review period . regards , stinson x 34748",0 +"Subject: rice / enron finance seminar series enron seminar series in finance jones graduate school of management , rice university paul schultz university of notre dame will give a seminar at the jones school on friday , march 30 , ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  & who makes markets  8 the seminar will begin at 3 : 30 in room 115 . the paper will be made available shortly .",0 +"Subject: tage resume submittal i have no need at this time for external people . thanks for thinking of berney and me . regards , ed - - - - - - - - - - - - - - - - - - - - - - forwarded by ed mcmichael / hou / ect on 11 / 25 / 2000 08 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : berney c aucoin 11 / 21 / 2000 01 : 15 pm to : ed mcmichael / hou / ect @ ect cc : subject : tage resume submittal let vince know if you ' re interested in this person . bern - - - - - - - - - - - - - - - - - - - - - - forwarded by berney c aucoin / hou / ect on 11 / 21 / 2000 01 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 11 / 21 / 2000 11 : 43 am to : berney c aucoin / hou / ect @ ect , wanda curry / hou / ees @ ees cc : subject : tage resume submittal please , take a look at the lst resume and let me know what you think ( shelly wood ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 21 / 2000 11 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" pj "" on 11 / 15 / 2000 01 : 58 : 46 pm to : "" vince j kaminski "" cc : subject : tage resume submittal vince , two candidates for your review . please call me . ? paul johnson , cpc president ( 281 ) 497 - 8595 ? please visit our website ? www . austingrp . com - wood , shelly . doc - jpbresume 2 . doc",0 +"Subject: computerworld article fyi : several errors like ' brokering ' in the report but given the fact that the guy had no clue what enron does or companies like it do , this came out okay . in all of the pr group ' s marketing effort , enron as a market - maker is the message . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 05 / 01 10 : 54 am - - - - - shelly mansfield 02 / 05 / 01 10 : 49 am to : ravi thuraisingham / enron communications @ enron communications cc : subject : computerworld article shelly mansfield enron broadband services 713 - 853 - 4589 office 713 - 646 - 8887 fax 877 - 929 - 7889 pager 713 - 303 - 4720 cellular - - - - - forwarded by shelly mansfield / enron communications on 02 / 05 / 01 10 : 51 am - - - - - norman levine 02 / 05 / 01 10 : 08 am to : shelly mansfield / enron communications @ enron communications cc : subject : computerworld article following is the computerworld article : link : enron seeks to broker storage deals between users , ssps by lucas mearian while technology service providers have long been talking about data storage as a utility that should be sold in the open marketplace like electricity or natural gas , little has been done to pool market resources in order to hawk surplus disk - array capacity . but that ' s exactly what a subsidiary of houston - based energy and communications conglomerate enron corp . is doing by launching a business - to - business exchange that it said will seek to match spare capacity owned by storage service providers ( ssp ) with corporate users who want to be able to quickly scale up and down the amounts of storage they have available . enron broadband services this week announced that it has already signed a deal with waltham , mass . - based storagenetworks inc . and is negotiating similar agreements with at least six other ssps . if successful , analysts said , enron ' s business proposition could go far toward generating a set of operating standards for the emerging ssp business . "" it ' s a market with mix of small and large players and companies that define their roles differently , "" said ken weilerstein , an analyst at gartner group inc . in stamford , conn . enron ' s plan also could help enterprise - level users get additional benefits along with the storage capacity they ' re renting , such as security and disaster recovery support , he added . ravi thuraisingham , director of global bandwidth risk management at enron broadband services , said the new offering won ' t include additional security features . but enron does plan to standardize on a set of ssp services and bundle them with disaster recovery and communications bandwidth capabilities , he said . initially , enron - - which had total revenue of $ 101 billion last year - - expects to charge users monthly fees of $ 25 to $ 55 per gigabyte of managed storage , depending on market conditions and the length of time a company expects to need the capacity . "" we ' re there to try to discover a market clearing price , "" said thuraisingham , adding that the service is tentatively due to go online in the third quarter . enron said it has already signed best buy co . , one of the leading retailers of consumer electronics , computers and software in the u . s . , to buy the storage capacity it needs to support a customer relationship management application through storagenetworks . connecting users such as best buy to available storage could take anywhere from three days to three months , according to thuraisingham . under enron ' s plan , storage capacity owned by participating ssps will be connected to an existing network of switching hubs through which the company currently trades telecommunications bandwidth . enron said it has 18 switching centers , or "" pooling points , "" in the u . s . , and another seven overseas . at first , the company plans to focus its attention on ssps in boston and other metropitan areas where the necessary networking plumbing can be easily installed . but even there , thuraisingham said , enron is "" pretty much in the initial stages of getting ssps up to speed on what the market is about . "" enron has been managing online trades of telecommunications bandwidth since the spring of 1999 . later that year , it also launched a web site called enrononline that oversees the trading of natural gas , electricity and other commodities . that quickly became the world ' s largest e - commerce site and is now said to be processing more than $ 1 billion worth of transactions daily . norman levine enron broadband services 713 - 853 - 5010 norman _ levine @ enron . net",0 +"Subject: contact details dear mr . kaminski it was good talking to you and i would like to thank you for your interest in riskcare and willow . as discussed , i will contact you feb 1 to arrange a meeting . in the meantime please don ' t hesitate to contact me if you have any further questions . regards manuel manuel rensink riskcare limited piercy house 7 copthall avenue london ec 2 r 7 nj tel : + 44 ( 0 ) 207 562 3414 email : mrensink @ riskcare . com http : / / www . riskcare . com",0 +"Subject: @ ect . enron . com email notification ! we are one @ enron . com ! please be aware of the following senders were automatically notified to ( a ) . stop sending internet mail to your @ ect . enron . com address and to ( b ) . send future internet communications to vince . j . kaminski @ enron . com : jim . dyer @ bus . utexas . edu , john @ sava . com reminder : your @ ect . enron . com address should not be used any longer and will be deactivated soon . so please make sure these contacts switch to your new @ enron . com address . if you have subscribed to mailing lists , please make sure to update your addresses there as well . and your shortname @ enron . com address ( i . e . jsmith @ enron . com ) will continue to work , even though your formal address is longname @ enron . com ( i . e . john . smith @ enron . com ) please do not reply to this message as it was automatically generated .",0 +"Subject: new frbny research : 5 / 3 now available at the new york fed ' s research site : "" stocks in the household portfolio : a look back at the 1990 s , "" by tracy and schneider ( current issues 7 , no . 4 ) "" currency orders and exchange - rate dynamics : explaining the success of technical analysis , "" by osler ( staff report 125 ) "" recent changes in the u . s . business cycle , "" by chauvet and potter ( staff report 126 ) u . s . and global economies charts , updated every wednesday in addition , the foreign exchange committee ' s 2000 annual report is now available research home page http : / / www . newyorkfed . org / rmaghome feel free to forward these messages . to unsubscribe , contact listserv @ peach . ease . lsoft . com . in the e - mail , type : signoff frbnyrmagl . for more details : http : / / www . newyorkfed . org / rmaghome / subscribe / subscribe . html . ? this notification service is provided to you free of charge . by subscribing to the service and providing your e - mail address , you agree to waive any claim against the federal reserve bank of new york for any messages that you may receive by reason of your subscription to this service and / or any resultant harm to you and / or your computer from receipt of such messages . ? the federal reserve bank of new york assumes no responsibility for any inaccuracies in any messages you may receive as a result of your subscription to this service .",0 +"Subject: request submitted : access request for maureen . raymond @ enron . com vince : maureen needed this access for her new lap top so she can take it with her on vacation . there was no one here to approve it , so i approved it for you . hope that was ok . have a great time ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 15 / 2000 01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - arsystem @ mailman . enron . com on 11 / 15 / 2000 01 : 18 : 27 pm to : shirley . crenshaw @ enron . com cc : subject : request submitted : access request for maureen . raymond @ enron . com you have received this email because the requester specified you as their vp . please click approval to review and act upon this request . request id : 000000000007498 request create date : 11 / 15 / 00 1 : 14 : 32 pm requested for : maureen . raymond @ enron . com resource name : vpn resource type : applications",0 +"Subject: ena analyst and associate "" brownbag "" presentations it is the intent of the office of the chairman to maintain a high quality flow of analysts and associates rotating through enron north america as well as provide them with up to date information on all the potential rotations in ena . additionally , we would like to provide the ena aa ' s a forum for your respective groups to promote your business unit as a viable alternative in the rotation process . i need your assistance for this endeavor and want your respective business unit to participate in the process by delivering an informal presentation to the aa group which should include the following : your business unit ' s current activities , purpose and interfaces with other departments recent successes and current projects ideas on the horizon opportunities in your business unit for aa ' s the benifits of rotation in your business unit an open q & a session these presentations should be informal and it is not necessary to have handouts . the goal is to provide an open forum for the aa ' s and to have them ask questions about each business unit . also , bringing one of your current aa ' s with you to provide their insight might help stimulate discussion . ted bland will be contacting you to schedule your business unit for a presentation . the first "" brownbag "" will take place september 8 between 12 : 00 pm and 1 : 00 pm in room 30 cl . dave",0 +"Subject: electricity prices vince , please find attached electricity prices file , let me know if you need any additional information . sincerely , elena",0 +"Subject: latest update on bp margin collar deal - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 11 / 10 / 2000 11 : 56 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : lee jackson 11 / 10 / 2000 10 : 40 am to : bob lee / na / enron @ enron , zimin lu / hou / ect @ ect cc : douglas s friedman / hou / ect @ ect subject : margin collar i wanted to give you the status on the bp margin collar deal . we submitted a bid to bp yesterday where bp would pay enron just under $ 5 mm to assume the contract . we have yet to have further discussions , so there ' s not much more to report than that . we greatly appreciate your help on this project . i feel like we put together a very good bid , and measured the risks appropriately with limited time . i will keep you informed of how the negotiations proceed . thanks again , lee jackson",0 +"Subject: update on ut - enron activities : my conversation with rick causey vince , good morning . as you may know , last thur . enron honored this year ' s recipients of the enron mba excellence fund scholars at a dinner in austin . in addition to the three recipients , business school dean may and several of my colleagues , enron attendees included sally beck , cindy justice , karen marshall ( newly - appointed coordinator of higher education initiatives for enron community relations dept . ) and rick causey . i write you at this time to advise you i had occasion to discuss two current enron / ut issues with rick : i . spring 2001 conference participation by jeffrey k . skilling ii . ut participation in enrontraining activities per my conversation with rick last thur . , i followed up on that discussion with an e - mail this morn that touched on those two topics . i . with respect to the first , i wrote rick this morning that : 1 . we at the ut center for energy finance education and research ( cefer ) are planning a practitioner - industry conference in spring 2001 ( late feb . or early march ) to discuss four topics : risk management , deregulation , real options , and international / globalization . 2 . the conference will kick off with a dinner / keynote address thur . evening , then continue all day fri . 3 . i have had several discussions with you regarding conference timing , structure , participation and content . 4 . further to rick ' s agreement to do so during our discussion last thur . , in today ' s e - mail i asked rick to extend an invitation to jeff skilling to be the keynote speaker at the thur . evening dinner . ii . with respect to the second topic , rick and i also discussed ut partcipation in enron corp . internal training for incoming enron corp . analysts and associates . consequently , i e - mailed rick this morning a specific set of issues - - "" valuation and risk management in energy markets "" - - which my ut colleagues and i have covered in public as well as customized exec ed settings , and which we would be pleased to customize for presentation at enron . fyi , i am enclosing a copy of said topics at the end of this e - mail . i look forward to seeing you again soon , and to your ut visit on 10 / 11 . best , ehud training program : "" valuation and risk management in energy markets "" target audience : associates , analysts , traders , marketing / sales , risk managers , financial analysts program objectives : 1 . understanding the physical and financial u . s . markets for electricity and natural gas 2 . understanding the structuring , reverse engineering and valuation of exchange - traded and otc energy derivatives , including "" exotic "" options , structured products , and spread and basis products 3 . promoting a common language between trading and marketing personnel regarding valuation and hedging of structured products 4 . risk - management program contents : i . "" electricity 101 "" - - problems in pricing - - spot markets - - forward markets - - trading : basis , fixed - price , volatility - - markets : characteristics and participants ii . valuation / structuring / hedging 1 . fundamentals of forwards and futures contracts : - - forward contracts : definition , payoff diagram , pricing by arbitrage - - futures vs . forwards - - commodity futures - - swaps - - constructing forward curves : contrast with price forecast ; using the spark spread ; incorporating regional bases 2 . introduction to option pricing : - - payoffs - - put - call parity - - binomial model - - black - scholes formula - - option "" sensitivities "" ( the "" greeks "" ) ; delta and gamma 3 . uniqueness of energy derivatives : - - "" term structure "" of volatility - - convenience yield / seasonality - - basis 4 . estimating volatility in energy markets : - - estimating volatility in financial markets - - hourly vs . daily vols - - historical or implied vols ? - - characterizing the volatility "" surface "" across time and strike 5 . design and valuation of structured products in commodity markets : - - valuation of european call options in energy markets - - average options on oil futures contracts - - spread and basis products - - "" swing "" options in power markets - - weather derivatives 6 . risk - management - - motivation for structured trades - - valuation of real options ( e . g . , valuation of power plant or gas field ) - - value - at - risk ( one - and multi - factor models ) - - repowering option 7 . advanced topics ( for qualified audiences ) - - relationship between forward prices and expected spot prices - - the importance of hedging volatility changes - - consistent method for estimating hourly , daily and monthly term structures of volatility - - practical alternatives to vega - hedging - - applying options theory to the valuation of power plants - - valuation of "" swing "" options under ruthless and non - ruthless exercise ehud i . ronn professor of finance and jack s . josey professor in energy studies director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : trading ag prods . vince , just wanted to let you know that i have done some preliminary , high level , research into this commodity and would be glad to share it . please let me know if you would be interested in it . thank you . shalesh ganjoo vince j kaminski @ ect 05 / 01 / 01 10 : 20 am to : shalesh ganjoo / enron communications @ enron communications @ enron cc : elsa piekielniak / corp / enron @ enron subject : re : trading ag prods . shalesh , a good idea . i shall forward it to the ag traders . vince from : shalesh ganjoo @ enron communications on 05 / 01 / 2001 10 : 12 am to : nelson neale / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : trading ag prods . nelson , i know you are focusing on agricultural products for trading , so i just wanted to know if we are looking at wool . i know that it ' s traded in australia and new zealand , so we might be able to look into it as well . please let me know . thank you . shalesh ganjoo ",0 +"Subject: program donna , i am sending you , as promised , the outline of the project . in case you have a difficulty opening the attachment , i cc my assistant . she will be able to fax it to you on monday . vince - 2001 field application form 2 . doc",0 +"Subject: fw : fea announces the release of @ energy 2 . 1 . chris , fea just released a new version of @ energy 2 . 1 . could you update it with the new version ? hopefully it will not take you too much time . as always , i value your work and appreciate your help . zimin - - - - - original message - - - - - from : kaminski , vince j sent : tuesday , may 15 , 2001 8 : 37 am to : lu , zimin subject : fw : fea announces the release of @ energy 2 . 1 . - - - - - original message - - - - - from : "" erin hopkins "" @ enron [ mailto : imceanotes - + 22 erin + 20 hopkins + 22 + 20 + 3 cerin + 40 fea + 2 ecom + 3 e + 40 enron @ enron . com ] sent : monday , may 14 , 2001 5 : 47 pm to : kaminski , vince j subject : fea announces the release of @ energy 2 . 1 . 05 / 14 / 2001 enron north america corp . vince kaminski 1400 smith street 30 th floor , rm . 3036 b houston , tx 77251 - 1188 1 713 - 853 - 3848 dear vince kaminski , this is to inform you of the release of @ energy 2 . 1 . ftp download instructions are available immediately . the download instructions are included at the end of this email . please see below for more information regarding this new release . . fea is pleased to enclose your new version of @ energy / erglib . the accompanying documentation contains installation and other information . here is an overview of the new and changed features since version 2 . 0 . @ energy ( forward curve ) no change . @ energy ( basics ) a control variate methodology hull ( 1997 ) has been implemented for valuation of american options ( opt ) , black and mean - reverting models . it greatly improves accuracy at minimal cost in speed . all models now supports new scalar risk measures corresponding to parallel displacement delta , hedge , and gamma . average price / strike options now support an alternative way of computing theta . the definition of gamma curves has been modified for all models . @ energy ( advanced ) a faster and more accurate methodology is used to value spread options . models affected are spreadopt , stripspreadopt , optspreadopt , optstripspreadopt . the new methodology dramatically improves speed . all models now supports new scalar risk measures corresponding to parallel displacement delta , hedge , and gamma . average price / strike options now support an alternative way of computing theta . the definition of gamma curves has been modified for all models . @ energy ( swing ) the definition of gamma curves has been modified for all models . @ energy ( weather ) no change . see the file fea \ energy \ ergnote . txt in your distribution for a list of bug fixes . here is an overview of the new and changed features since version 1 . 6 . @ energy ( forward curve ) jump parameters are now calibrated for use in other @ energy functions . inputs and outputs to powercalib and comcalib have changed . see the corresponding function syntax in the user guide for additional information . 35 - 40 % speed improvement . the module is now out of beta . @ energy ( basics ) different interpolation schemes on forward prices are now supported . if you use indexswap , exoticswap , or optindexswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . a new utility function , pathutil , allows you to simulate and visualize price paths consistent with the models supported by @ energy . 25 - 30 % speed improvement . @ energy ( advanced ) different interpolation schemes on forward prices are now supported . if you use optdiffswap or diffswap with floating price linked to a series of futures dates , such futures dates need not be close to dates specified in the forward curve input . calspreadopt now allows for the specification of two different mean reversion rates . 30 - 35 % speed improvement . @ energy ( swing ) swingopt and stripswingopt now allow for valuation of swing straddle contracts with overall load constraints . 65 - 70 % speed improvement . the module is now out of beta . @ energy ( weather ) 30 - 35 % speed improvement . see the file fea \ energy \ ergnote . txt in your distribution for a list of bug fixes . if you are a user of the erglib library , please be aware of possible backward compatibility issues in calls to eapo , easo , espreadapo , espreadaso , and ecrackapo . see fea \ energy \ ergnote . txt for additional details . here is an overview of the new and changed features since version 1 . 5 . @ energy ( basics ) european options and strips of european options now support valuation via a jump diffusion model ( see opt and stripopt functions ) . average price options ( see the apo , spreadapo , crackapo functions ) , and average strike options ( see the aso , spreadaso functions ) now allow for a direct input of the fixing dates . @ energy ( advanced ) includes two new functions , optstripopt and optstripspreadopt for valuation of complex compound options . if you are a user of the erglib library , please be aware of backward compatibility issues in calls to eapo , easo , espreadapo , espreadaso , and ecrackapo . see fea \ energy \ ergnote . txt for additional details . here is an overview of the new and changed features since version 1 . 4 . @ energy ( forward curve ) @ energy ( forward curve ) is the new module which includes functions designed to generate forward curves , volatility curves and mean reversion rates used in many other @ energy functions . module in beta release . @ energy ( basics ) apo ' s and aso ' s : bug fixed when avg _ starts prompt . type "" quit "" . the file will be downloaded into the directory at which you entered the ftp site . double click on the exe and follow the instructions on the screen . there is also a readme file which contains installation instructions . you may wish to print this out for easy reference . n . b . : the password is only valid until the first friday of next month . if you have any questions please feel free to contact us . we appreciate this opportunity to be of continuing service to enron north america corp . . regards , erin hopkins administrative assistant financial engineering associtates , inc . tel : + 1 . 510 . 548 . 6200 mailto : info @ fea . com or mailto : support @ fea . com",0 +"Subject: re : resume i appreciate your recommendation of van for a summer internship with enron . i have communicated with van and let her know that she will have a place on our interview schedule at rice . i will keep you updated regarding the status of van ' s application . thank you , christy young recruiter enron vince j kaminski 01 / 17 / 2000 07 : 39 am to : christy young / hou / ect @ ect , beth miertschin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect subject : resume christy and beth , van worked with us during the summer and over the winter break . she did an outstanding job . i would like to recommend her for another summer internship and also keep her in mind for the future employment . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2000 07 : 38 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" van t . ngo "" on 01 / 16 / 2000 06 : 00 : 57 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : resume dear vince , please find attached a copy of my resume . i have talked with christy young and beth miertschin , the college recruiters for the a of those , i would be most interested in one of the "" finance rotations . "" i would be happy to explore one of the number of groups within this area . ( please let me know if this is sufficient or if you will need me to give more specific indication of which department i would like to be considered for an internship . ) i greatly appreciate your consideration regarding my job opportunities with enron . please let me know if there is anything else i can do to facilitate this process . i look forward to our meeting again . sincerely , van ngo p . s . shirley , i have mailed to you my parking permit . please contact me if you had any problems with it . - myresume . doc",0 +"Subject: tage resume submittal vince , two candidates for your review . please call me . ? paul johnson , cpc president ( 281 ) 497 - 8595 ? please visit our website ? www . austingrp . com - wood , shelly . doc - jpbresume 2 . doc",0 +"Subject: re : real options conference in cambridge steve given the practitioner audience , i would prefer a less technical presentation . perhaps if you can talk about use of real options at enron in general , and then give some examples ( graphically - - no notation ) of diagrammatic representation might be good . remember there are many talks and the capacity of the audience to absorb notation , grammar , and technical detail is limited . how about a more generic title "" real options at enron ? "" please give me your title within enron please at 11 : 07 d _ 04 / 25 / 00 + 0100 , steven . leppard @ enron . com wrote : > > > lenos > > i ' d like to give a talk entitled "" diagrammatic representation of real > options in enron "" , in which i will give a brief run - down of a diagrammatic > technique i have developed for representing real option deals . my notation > allows originators , managers and quants to communicate unambiguously , while > still appreciating the complexity and subtlety of real optionality . i have > defined a "" diagrammatic grammar "" which guarantees that the pricing of the > deal follows immediately and automatically from the diagram . > > i propose to introduce the symbols and grammar , then go on to present some > suitable examples of diagrams . if appropriate i ' ll talk about the links > with dynamic programming . ( i will need some guidance as to how much > technical detail i can go into based on the audience . ) > > all the best , > steve > > > > > ( embedded enron capital & trade resources corp . > image moved > to file : from : lenos trigeorgis > pic 29415 . pcx ) > 04 / 20 / 2000 08 : 45 pm > > > > > > > to : "" steven leppard "" > cc : "" vince j kaminski "" > > subject : re : real options conference in cambridge > > > steve > > thanks for agreeing to talk . i attach the program to see the other speakers > and style ( it is addressed to a professional autience ) > > please give me a suitable title for the talk ( replacing kaminski  % s slot on > july 6 / energy session ) and the details of your position > > thanks > > lenos > > at 05 : 01 _ _ 04 / 20 / 00 + 0100 , steven leppard wrote : > > > > > > dear prof trigeorgis > > > > vince kaminski has suggested that i would be a suitable speaker at your > july > > conference in cambridge , and i ' d be happy to come along if required . > please > > could you send me appropriate details , and the audience type expected . > > > > many thanks . > > > > yours sincerely , > > steve leppard > > > > > > > > > ( see attached file : 4 thconfsessions . doc ) > > lenos trigeorgis > professor of finance > university of cyprus > dept of business > 75 kallipoleos , po box 20537 > cy 1678 nicosia cyprus > > tel : + 357 2 892261 > fax : 339063 > > > > attachment converted : "" c : \ drive _ e \ eudora \ attach \ pic 29415 . pcx "" > > attachment converted : "" c : \ drive _ e \ eudora \ attach \ 4 thconfsessionsl 7 . doc "" > lenos trigeorgis professor of finance university of cyprus dept of business 75 kallipoleos , po box 20537 cy 1678 nicosia cyprus tel : + 357 2 892261 fax : 339063",0 +"Subject: re : template for a proposal mark & todd vince and i have been working along those lines and have narrowed the search to ( 1 ) scripps institution of oceanography , ( 2 ) lamont - daugherty earth observatory , and ( 3 ) cola - center for ocean , land and atmosphere . we have contacted the principles at each of these institutions , made on - site visits to the facilities , and verbaly explored preliminary research program proposals . perhaps we could meet next week to coordinate this effort . - - - mike",0 +"Subject: rollover of my vacation days to 2001 vince & shirley : here are the details about my remaining 2000 vacation and their use : vacation currently available now : 136 next week 3 days ( dec 27 - 29 ) 24 - - - - - - - - - - - - - - - - - - - - - - - - - - - vacation remaining on 31 - dec : 112 officially rolled over to 2001 : 40 - - - - - - - - - - - - - - - - - - - - - - - - - - - unused 2000 vacation : 72 thanks , krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 12 / 18 / 2000 02 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - pinnamaneni krishnarao 12 / 11 / 2000 06 : 28 pm to : vince j kaminski / hou / ect @ ect cc : subject : rollover of my vacation days to 2001 vince : i would like to rollover my vacation days for 2000 remaining at the end of this year to 2001 . i could not use us all of my available vacation this year because of the following reasons : 1 . as you know , i have been supporting three business units ( ees , epg & enron india ) this year . all these units had difficult and relatively long projects that required experience in energy markets , derivatives pricing and business knowledge that i had gained over the last few years at enron . 2 . there has been a significant change in the team members reporting to me . i now have six people under me compared to only three at the begin of the year . of the current six members , five joined us only this year and most of them didn ' t have any prior work experience , thus requiring a lot of my time in recruiting , training and mentoring . 3 . given that i had to visit our bombay office in january , 2000 for a business trip ( 10 days ) and will need to go there again in january , 2001 , i could not take leave from my work for the other two units ( ees & epg ) for an extended period of time . so , in summary , this year has been a long and challenging one , and as a result , i could not take vacation for more than a few days . i request you to grant the rollover of my remaining vacation to next year . currently i have 136 hours of vacation available and , of these , i expect to have 112 hours unused at the end of this year . thank you , krishna .",0 +"Subject: finance club : e - trading and fixed income markets workshop as faculty advisor to the finance club , prof . barb ostdeik is encouraging all members to take advantage of a great opportunity to learn more about trading operations from two very respected individuals in the industry . keith anderson of blackrock , inc ( jgsm 1983 ) and dexter senft of lehman brothers & tradeweb llc ( rice 1974 ) have visited the jones school to give this lecture and students have raved about them . albert wang ' s fixed income and advanced investments classes are required to attend , and james weston recommends for his applied finance students and any first years taking investments next year to be there . when : 9 : 45 a . m . - 11 : 15 a . m . wednesday april 18 where : room 117 herring hall presentation / discussion topics : trading tactics - phone trades vs . electronic trading evolution of e - trading in fixed income markets the future of the trading desk buy - side vs . sell - side issues speaker profiles : keith anderson , managing director and chief investment officer , fixed income of blackrock , inc . , is co - head of the fixed income operating committee , chairman of the investment strategy group and a member of blackrock ' s management committee . mr . anderson is responsible for global fixed income strategy , asset allocation and the overall management of client portfolios . he coordinates a team of thirty - two portfolio managers and more than twenty - five credit and quantitative analysts . mr . anderson is a member of the treasury borrowing advisory committee , which meets quarterly in washington , d . c . with the secretary and staff of the u . s . treasury to advise them on the financing and management of the federal debt . prior to founding blackrock in 1988 , mr . anderson was a vice president in fixed income research at the first boston corporation , working in mortgage securities and derivative products strategies . mr . anderson with criterion investment management company where he had primary responsibility for a $ 2 . 8 billion fixed income portfolio . mr . anderson has authored numerous articles on fixed income strategies , including two articles in the handbook of fixed income options : "" scenario analysis and the use of options in total return portfolio management "" and "" measuring , interpreting , and applying volatility within the fixed income market "" . dexter senft is a managing director with global responsibility for fixed income electronic commerce for lehman brothers . during his eight years at the firm , he has also managed or co - managed lehman ' s fixed income research , quantitative research , counterparty credit and global economics departments . mr . senft is the former chairman of tradeweb llc , a consortium - owned electronic bond trading system whose volume currently averages over $ 10 billion per day , and of which lehman brothers is a founding shareholder . he remains on tradeweb ' s board , and chairs tradeweb ' s trading protocol committee , which oversees the rules that govern the electronic flow of information within the system . mr . senft also serves on the bond market association ' s committee for alternative trading systems , as well as its online bond steering committee and he chairs the subcommittee on e - commerce protocols and standards . prior to ejv , mr . senft spent 17 years at the first boston corporation ( now part of cs first boston ) , where he was a managing director and head of fixed income research and product development . he is a widely published author of articles on mortgage securities , fixed income derivatives , and quantitative portfolio management , and his work continues to be among the readings for cfa applicants . in 1983 , mr . senft led the product team that created the first cmo for freddie mac . this is regarding the e - trading / bond market session arranged for april 18 . as part of the lst year finance elective , you may have already been informed by james weston ( were you ? ) but i need to get the info out to more 2 nd years as well . do you usually send out your speaker announcements to all faculty , students , and staff ? albert wang ' s fixed income and advanced investments classes are required to come and james weston will be encouraging lst years that took the finance elective to come . these guys are pretty good - they came a few years back . thanks . bbo",0 +"Subject: good morning vince , two items . unless you have an objection , i plan to ship the paper on to don chew at the journal this morning . we can still work on the article but he needs something to begin the editing process . second , in the same issue as our paper will appear the transcript of a roundtable discussion involving sheridan titman , john mccormack ( stern stewart ) , ron erd ( southern energy ) , jeff sandifer ( president of sandifer capital - - $ 700 million undermanagement ) , and gene humphries . attached you will find a section that will not be in the final document , but that i thought you might like to read in light of our own discussions over the course of writing this paper . have a great day . john - interview _ outtakes . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: interview schedule for aram sogomonian please find the interview packet for the above - referenced person . the interview will occur on wednesday october 25 , 2000 . please print both documents for your reference . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . resume will be delivered via runner . stephanie 58701",0 +"Subject: the latest ( last ? ) . . as columbo would say . . "" . . just one more thing "" p . 20 last bullet : enron focusing on recruiting and retaining talent thanks again ! christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 05 : 24 pm - - - - - christie patrick 02 / 07 / 2001 05 : 23 pm to : mark palmer / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , j _ martin @ baylor . edu subject : the latest ( last ? ) mark ! please review the attached article and forward your comments / authorization for its use to john martin at baylor , copying me and vince . john and vince , i have a few simple comments : 1 . please use "" enron corp . "" [ rather than "" enron corporation "" ] 2 . page 3 : as of yesterday , fortune magazine named enron "" most innovative "" for the sixth year in a row 3 . page 5 : 2 nd paragraph : regarding the "" gas bank "" concept - - i believe when jeff first introduced it , it fell flat . i think john pick ' s that up ( and enron ' s subsequent recovery of a version of the concept on p . 6 ) , but it ' s probably accurate to mention that at first , it didn ' t go over . 4 . page 13 : re : cindy olson ' s comment on a possible 5 x difference between a "" satisfactory "" and "" superior "" vp - - the difference referred to is probably the "" bonus "" rather than "" compensation "" ( which , to me , is generally means base salary ) ; also , it varies for each review period , as comparative performance might vary ; further , we might want to run that quote by cindy just to make sure she ' s ok with it ' s publication ( she might have no problem with it whatsoever , but i know for other articles , she ' s been more reluctant to provide that kind of statistic ) . 5 . page 17 ( after annual report quote ) : i suggest changing "" enron ' s wholesale business . . . provides "" to "" . . . businesses . . provide "" ; also , rather than "" enron wholesale "" we might want to define this by the term enron uses : "" enron wholesale services "" 6 . page 18 : 2 nd paragraph : the tense switching from past to present is technically correct if read carefully , but seems awkward when reading it 7 . page 19 : effective february , jeff skilling is "" ceo "" . . . . that ' s my 2 - cents worth ! ! i think the article is great . . . even interesting ( ha ! ) . . . even to non - mba ' s like me ! ! thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 02 / 07 / 2001 04 : 41 pm - - - - - vince j kaminski 02 / 02 / 2001 08 : 45 am to : mark s palmer / na / enron @ enron cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect subject : the latest ( last ? ) mark , i am sending you the final ( ? ) draft of the paper by john martin on enron ' s transformation . john martin is a prof from baylor who visited us a few weeks ago . can you take a look at the paper and bless it . i haven ' t read this last version of the paper yet and i will go through it on weekend . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 02 / 2001 08 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" john d . martin "" on 02 / 01 / 2001 04 : 15 : 36 pm to : vkamins @ enron . com cc : subject : the latest ( last ? ) vince , attached is my latest attempt to wrap everything together . our timetable is very short as we need an "" approved by enron "" version of the paper to don by next wednesday . don has already made editorial changes for us and may make some additional "" writing style "" changes but he doesn ' t change the content . i ' ll give you a call later today to alert you to the e - mail . take care , john p . s . i had a nice conversation with steve . sounds like he ' s landed a pretty good contract with wiley . - enron _ paper _ 2 _ 1 _ 01 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : enron offsite let ' s do it ! august 18 - 20 is our first choice ! please send me all the information and then we will discuss the particulars . i will get vince to sign it immediately . thanks steve ! shirley "" steve collins "" on 06 / 27 / 2000 02 : 22 : 27 pm to : cc : subject : re : enron offsite hello again ! i promise i am not running ! the deal that we worked out with the general manager ( tom pratt ) is that enron has a $ 6000 credit with the great divide lodge that will expire on 8 / 1 / 00 . you can either use that credit for individual rooms prior to 8 / 1 / 00 , or we have agreed that we can apply that amount to a meeting prior to the thanksgiving holiday in 2000 if the contract is signed before 8 / 1 / 00 . at this point , august 18 - 20 is available , but the 25 - 28 is not . if we can get this signed prior to 7 / 31 / 00 , your $ 6000 credit would be able to be applied to this event . please let me know if this will work for you . thanks ! steve steve collins national sales manager the village at breckenridge / great divide lodge ( 800 ) 332 - 0424 or ( 970 ) 453 - 3156 direct scollins @ vailresorts . com > > > "" shirley crenshaw "" 06 / 27 / 00 01 : 06 pm > > > hello steve : please don ' t run ! i know after the last fiasco with an enron offsite you are probably running for the hills ! i do want to apologize to you and thank you for all of your assistance even though we were unable to make the trip . however , i understand there has been an arrangement made with enron , that if we book a time and come before thanksgiving we can recoup the money that we forfeited ? please let me know if i am understanding this correctly . if so , we have been told that our group can use this for an offsite . we are looking at the weekends of august 18 , 19 and 20 or august 25 , 26 and 27 th . there will be approximately 12 people . please let me know your understanding of the arrangement and the availability of the dates mentioned . look forward to hearing from you . regards , shirley crenshaw administrative coordinator enron corp . research telephone : 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: enron credit modeling discussions hi , this email is in reference to our plan for detailed discussions about enron credit ' s modeling strategy . several meetings have already been scheduled . please refer to the attached excel spreadsheet for further details . also , if you like , we can have more informal discussions over lunch , dinner , drinks , etc . thanks in advance for your time . regards , iris",0 +"Subject: invitation - whartonetevent - apr 20 / plsrsvp vice and christie hello , this is a followup to our previous invitation to attend our next wharton / et event . ? you can rsvp by replying to this email - or - if you cannot attent , you ' re always welcome to designate someone else . ? there is no limit on the number of attendees from your company . _ _ _ yes i plan to attend _ _ _ no , i cannot attend _ _ _ someone else from our organization will attend ( name : _ _ _ _ ) best regards , michael tomczyk managing strategic partnerships ? friday april 20 , 2001 - - 8 : 30 am to 400 pm location - room 1206 steinberg - dietrich hall - wharton school - philadelphia we have designed this conference as an insight - building event , to present current industry experience from best practice firms , as well as our most recent research findings on best practices and strategies for developing and managing alliances , mergers and high tech acquisitions . ? we will include research in progress from our ongoing long term studies on alliances and acquisitions . this is part of our research activity and there is no conference fee . the emerging technologies management research program / mack center is working to identify and develop best practices , competitive strategies and management approaches for industry decision makers in industries that are being created or transformed by emerging technologies . our industry partners include : bank of montreal , charles schwab , dupont , enron , general motors , glaxosmithkline , hewlett - packard , ibm , independence / blue cross , mckinsey , nsa , procter & gamble , sprint , 3 m and xerox . the agenda is included below and more information can also be found on our website : ? http : / / emertech . wharton . upenn . edu . please call or email if you have any questions or comments about any aspect of this event ? - 215 - 573 - 7722 . agenda managing strategic partnerships an insight - building conference including new wharton research on best practices and successful strategies for achieving corporate growth through alliances , mergers and acquisitions . friday , april 20 , 2001 - 8 : 30 to 4 : 30 1206 steinberg - dietrich hall , wharton school presented for our industry partners and guests by the emerging technologies management research program , mack center on managing technological innovation faculty research presentations by : ? harbir singh , paul schoemaker , lori rosenkopf , phanish puranam and prashant kale industry best practice presentations by : sun microsystems , cybersource , broadview and pfizer . agenda & conference topics 8 : 00 - 8 : 30 ? - ? continental breakfast and informal networking 8 : 30 - 8 : 45 introduction : strategic partnering for growth and innovation 8 : 45 - 10 : 00 managing strategic networking 10 : 00 - 10 : 30 - break 10 : 30 - 11 : 30 building partnering skills and capabilities 11 : 30 - 12 : 00 success and failure factors in strategic partnering 12 : 00 - 1 : 30 working lunch - strategies 1 : 30 - 2 : 30 small group reports 2 : 30 - 2 : 45 - break 2 : 45 - 3 : 40 managing high technology acquisitions 3 : 40 - 4 : 00 summary of key insights and future research goals 4 : 00 - adjourn directions : ? take a taxi to the corner of 37 th and walnut . ? at that intersection , turn left and take the broad walkway onto campus . ? turn left at the first intersection ( you will see a lifesize statue of ben franklin sitting on a park bench ) . ? this is locust walk . ? the steinberg - dietrich hall is the large brick building immediately behind "" ben "" - if you turn left and proceed down the walk you will come to the large entrance with cantilevered steps on the right side of the walk . ? the room iw room 1206 and there is an information desk straight back from the entrance , to guide you to the room . if you are staying at the inn at penn , which is directly across the street from campus on walnut ( between 36 th and 37 th ) - take the walnut street exit from the hotel ( where the restaurant is ) , turn right from the entrance and walk to 37 th street , cross the street and continue onto campus following the directions ( above paragraph ) . wharton is 30 - 40 minutes from the airport , 10 - 15 minutes from the 30 th st . train station and about 15 - 20 minutes from most hotels in center city . - - michael s . tomczyk managing director emerging technologies management research program 1400 sh - dh / 6371 the wharton school philadelphia , pa 19104 - 6371 tel 215 - 573 - 7722 fax 215 - 573 - 2129 website : ? http : / / emertech . wharton . upenn . edu",0 +"Subject: a few times still available we still have a few time slots available for appointments with bob brooks while he is in houston next week . there are open slots on tuesday ( morning and afternoon ) and wednesday morning . please reply to this e - mail with preferred date and time or call bob at 323 - 663 - 4831 to schedule .",0 +"Subject: re : book order julie , there are many employees in london who would be interested . you can send an inquiry to steve leppard . i had a presentation last night to garp in houston and did a commercial for the book . you should put me on commission . vince "" julie "" on 01 / 31 / 2001 06 : 31 : 39 am please respond to "" julie "" to : cc : subject : re : book order vince , ? i wasn ' t sure if i responded to your email , so apologise either for my delayed response or repeating myself . ? thanks for the 2 nd order ! ? i believe they have already been dispatched . ? yes , i believe we received payment ; thank you very much for following up with paul . ? glad the book was a hit ! ? on another subject , are there any enron ? employees in europe who may be interested in attending either the energy or the weather course ? ? or , are the quants and risk management mostly handled out of houston ? ? thanks again , and i ' ll forward an invoice on to shirley . ? julie ? - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie @ lacima . co . uk cc : vince . j . kaminski @ enron . com sent : friday , january 26 , 2001 11 : 29 pm subject : book order julie , we received the shipment of 50 books . thanks . the book was an instant hit . we need 50 more books . vince p . s . i understand paul sent you the check for the remaining 50 %",0 +"Subject: research seminar vince has asked that i forward the following : we will begin a seminar devoted to the book on "" energy derivatives "" , written by clewlow and strickland , every first and third friday of each month , beginning january 19 th . stinson gibner has volunteered to act as the seminar coordinator . on january 19 th only , the seminar will be held in eb 30 cl . every session thereafter will be in eb 49 cl . the seminar will be conducted like a "" brown bag "" ( everyone bring their own lunch ) . the seminar is mandatory for every member of the group who started after january 1 , 2000 . however , all other members of the group are invited to participate . the books have been ordered and hopefully will arrive by the day of the first meeting . vince kaminski ",0 +"Subject: re : real options article steve , the journal of risk is a more technical and serious publication than risk magazine . if the article is published it will give you more exposure in the academic circles . i think it will be a significant accomplishment . on the downside , it does not receive the same wide circulation as risk among the practitioners . i can also see the reason behind the recommendation given by navroz : the article is fairly long for risk . steven leppard 05 / 23 / 2000 05 : 39 am to : vince j kaminski / hou / ect @ ect cc : subject : real options article vince any thoughts on this proposal ? steve - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 05 / 23 / 2000 11 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : "" navroz patel "" 05 / 23 / 2000 11 : 37 am please respond to "" navroz patel "" to : cc : subject : real options steven , after further consultation with the technical editor , we feel that your work would find a more suitable environment for exposure in the journal of risk . ? if you email a copy of your work ( to the editor - in - chief , philippe jorion ) and outline what has happened to : ? ? pjorion @ uci . edu ? then i am sure that they will be keen to give due consideration . ? thank you for your interest and sorry for the delay in coming to this decision . ? best wishes , ? navroz patel , technical assistant , risk magazine . ?",0 +"Subject: re : conference room kevin yes , it ' s a good idea . vince kevin g moore 02 / 18 / 2000 06 : 56 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : conference room goodmorning vince , we added a bookcase to the conference room on the 19 th floor however , due to the departments growth i think we could use another one . vince , in the long run it would save us some time . please let me know if this is okay ! thanks kevin moore",0 +"Subject: presentation - integrating market risk and credit risk all , i will be giving a 40 min presentation on the above topic at the eprm energy 2000 conference in april . the bulletpoints are : balancing market risk and credit risk to achieve a reliable estimation of total risk incorporating market risk into a credit risk model calculating probability of default using credit risk and market risk refining business practice to reflect credit risk and market risk evaluations my proposed approach is to quickly step through the practical process of modelling credit risk , resulting in measures for expected loss and credit - var ; then show how default probs can be calculated using bond and equity data . finally i ' ll describe how credit risk can be mitigated using credit derivatives - plugging enroncredit . com of course . any other ideas for broad topics and / or specific points to mention will be appreciated . the presentation has to be submitted next week . many thanks , ben",0 +"Subject: re : subscriptions stephanie , please , discontinue credit and renew the two other publications : energy & power risk management and the journal of computational finance . enron north america corp . from : stephanie e taylor 12 / 12 / 2000 01 : 43 pm to : vince j kaminski / hou / ect @ ect cc : subject : subscriptions dear vince , we will be happy to renew your subscription to risk . in addition , the following publications are up for renewal : reg . subscription cost with corp . discount credit $ 1145 . 00 $ 973 . 25 energy & power risk management $ 375 . 00 $ 318 . 75 the journal of computational finance $ 291 . 75 $ 247 . 99 if you wish to renew these , we will also take care of this for you . i would appreciate your responding by december 18 th . please include your company and cost center numbers with your renewal . thank you , stephanie e . taylor esource 713 - 345 - 7928",0 +"Subject: re : baylor - enron case study cindy , yes , i shall co - author this paper and i have planted the idea in john martin ' s head . vince from : cindy derecskey @ enron on 10 / 25 / 2000 11 : 38 am to : vince j kaminski / hou / ect @ ect cc : subject : baylor - enron case study vince , i forgot to inquire whether you would also like to be present during the interview process with john martin and ken , jeff and andy ? let me know . . . . thanks , cindy",0 +"Subject: 7 - 1 - 00 to 7 - 15 - 00 off duty and overtime report oops ! forgot to attach ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 07 / 14 / 2000 11 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 07 / 14 / 2000 11 : 53 am to : vasant shanbhogue / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect , amitava dhar / corp / enron @ enron , maureen raymond / hou / ect @ ect , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , osman sezgen / hou / ees @ ees , elena chilkina / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : 7 - 1 - 00 to 7 - 15 - 00 off duty and overtime report attached is the off duty and overtime that was reported to me for the above pay period . you are the only ones in our group that had these reported . please review and if there is an error , please let me know by next monday the 17 th and i can correct it . otherwise , we cannot correct it until the next pay period . thanks ! shirley",0 +"Subject: operating & strategic plan 2001 - 2003 one more update . i think we finally have the file where we want it . please use the file attached . thanks again . dawn - - - - - - - - - - - - - - - - - - - - - - forwarded by dawn derr / corp / enron on 07 / 20 / 2000 11 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - dawn derr 07 / 17 / 2000 11 : 02 am to : rob walls / na / enron @ enron , monica reasoner / hou / ect @ ect , greek rice / corp / enron @ enron , larry dallman / gpgfin / enron @ enron , christine schlaudraff / corp / enron @ enron , rodney faldyn / corp / enron @ enron , sally beck / hou / ect @ ect , suzanne brown / hou / ect @ ect , mark koenig / corp / enron @ enron , elizabeth linnell / hou / ees @ ees , j mark metts / na / enron @ enron , charlene jackson / corp / enron @ enron , gary mccumber / hou / ect @ ect , robert johansen / corp / enron @ enron , paul clayton / hou / ect @ ect , vince j kaminski / hou / ect @ ect , billie akhave / epsc / hou / ect @ ect , cynthia barrow / hr / corp / enron @ enron , sharon aulds / hr / corp / enron @ enro cc : subject : operating & strategic plan 2001 - 2003 please use the budget format sheet attached below . there is an error in the executive summary sheet of the original file . hope this does not cause anyone undue problems . thanks . dawn - - - - - - - - - - - - - - - - - - - - - - forwarded by dawn derr / corp / enron on 07 / 17 / 2000 12 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - dawn derr 07 / 14 / 2000 03 : 17 pm to : rob walls / na / enron @ enron , monica reasoner / hou / ect @ ect , greek rice / corp / enron @ enron , larry dallman / gpgfin / enron @ enron , christine schlaudraff / corp / enron @ enron , rodney faldyn / corp / enron @ enron , sally beck / hou / ect @ ect , suzanne brown / hou / ect @ ect , mark koenig / corp / enron @ enron , elizabeth linnell / hou / ees @ ees , j mark metts / na / enron @ enron , charlene jackson / corp / enron @ enron , gary mccumber / hou / ect @ ect , robert johansen / corp / enron @ enron , paul clayton / hou / ect @ ect , vince j kaminski / hou / ect @ ect , billie akhave / epsc / hou / ect @ ect , cynthia barrow / hr / corp / enron @ enron , sharon aulds / hr / corp / enron @ enron cc : elaine schield / corp / enron @ enron , terry west / corp / enron @ enron subject : operating & strategic plan 2001 - 2003 attached are the guidelines and the budget template for the 2001 - 2003 operating & strategic plan . a budget template should be completed for each cost center in your area / group that will be utilized for 2001 . all budgets are due to corp . financial planning no later than close of business august 14 , 2000 . while corporate financial planning has attempted to make the process as easy as possible , we know questions will arise . please feel free to contact me at x 37775 with any questions or problems . thanks in advance . dawn",0 +"Subject: budget hi dale following discussions with vince , grant and stinson , we ' ve drawn up the proposed budget . we ' re working on the basis that research group headcount will grow to 8 in the near future . business trips us : 8 business trips europe : 10 computer software and licences : gbp 10 , 000 office postage : gbp 350 employee recruitment fees : gbp 30 , 000 ( = 3 x 20 % x gbp 50 , 000 ) professional subscriptions and memberships and books : gbp 15 , 000 training courses : gbp 16 , 000 ( = 8 x gbp 2 , 000 ) conferences : gbp 8 , 000 ( = 4 x gbp 2 , 000 ) mobile phones : gbp 1 , 500 ( = 3 x gbp 500 = me + 2 floaters ) hardware : gbp 10 , 000 ( = laptops , workstations ) suggested allocation as follows . . . rac 20 % uk power 20 % uk gas 5 % continental power 20 % continental gas 5 % global products 10 % ebs 10 % ees 10 % . . . unless you ' ve got any other views on this one ( i ' m happy to take advice here ) . vince has said you can give him a call if you want to discuss any of these points further , but i ' m happy to field initial queries ( i ' ll have to get used to it ! ) . cheers , steve",0 +"Subject: v @ r methodology for metal positions vince - it seems like we should be able use mg ' s v @ r methodology as version 1 . a if the credit component is eliminated and the hold period is conformed to our one day interval . could we do this and achieve an approximation of where you want to be with the completion of anjam and tamara ' s work ? when submitting a request for interim metals trading policy to rick buy and jeff skilling , i ' d very much like to represent that , while our methodology may be imperfect , we have ways + means of tracking v @ r right now that will be upgraded to enron standards in very short order . thoughts ?",0 +"Subject: re : mountaintop meetings next week ravi , it ' s fine with me . i think the expense is justified ( as it ' s equal to the cost of the alternative ) . vince ravi thuraisingham @ enron communications on 03 / 09 / 2000 12 : 44 : 01 pm to : stinson gibner / hou / ect @ ect , vince kaminski cc : subject : mountaintop meetings next week fyi , i may have to stay over weekend . vince , if that is the case , i may have to bring my wife or allow her to go to her sister for a week etc . i may ask john to cover some of that cost as ( i think ) he is done with other people . i ' ve seen other guys family members showup . this cost would equal what ebs would have spend to send me home and bring me back again , etc . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 09 / 00 12 : 36 pm - - - - - jeanette busse 03 / 09 / 00 10 : 16 am to : dayne relihan / enron communications @ enron communications , dorn hetzel / enron communications @ enron communications , jeanette busse / enron communications @ enron communications , jim irvine / enron communications @ enron communications , john bloomer / enron communications @ enron communications , john griebling / enron communications @ enron communications , kelly williams / enron communications @ enron communications , kenny burroughs / enron communications @ enron communications , kevin kohnstamm / enron communications @ enron communications , laura beneville / enron communications @ enron communications , phil sisneros / enron communications @ enron communications , ravi thuraisingham / enron communications @ enron communications , rob kolosvary / enron communications @ enron communications , scott smith / enron communications @ enron communications , steve elliott / enron communications @ enron communications , steve mcnear / enron communications @ enron communications , tom huntington / enron communications @ enron communications , kenton erwin / enron communications @ enron communications , rebecca lynch / enron communications @ enron communications , stewart seeligson / enron communications @ enron communications cc : sheryl lara / enron communications @ enron communications , judy timson / enron communications @ enron communications , cheryl kondo / enron communications @ enron communications subject : mountaintop meetings next week team , all meetings with hamachi during march 14 - 17 are located at the hamachi campus . negotiations - - the negotiation meeting room is 21 - 10 . this is in building 2000 ( main building with circular drive ) , the conference room is on the ground floor , right hand side . - - all morning drinks , lunches and afternoon refreshments are scheduled ( 20 people ) - - the schedule is as follows : tue 3 / 14 1 : 00 pm - until both parties agree to end . wed 3 / 15 9 : 00 am - until both parties agree to end . thu 3 / 16 9 : 00 am - until both parties agree to end . fri 3 / 17 9 : 00 am - 3 : 00 pm the negotiation team includes : john griebling steve elliott stewart seeligson tom huntington kenton erwin breakout meetings the following rooms reserved for full days , tuesday through friday in building 3000 . 34 a - 302 34 a - 702 34 a - 703 34 a - 705 - - coffee , lunch and afternoon drinks for 25 people , starting tuesday @ lpm is also scheduled for delivery in 34 a - 302 as well . the breakout team participants include : laura beneville jeanette busse kenny burroughs jim irvine rebecca lynch dayne relihan scott smith ravi thuraisingham rob kolosvary kelly williams please let me know if you have any questions . jeanette",0 +"Subject: hedge effectiveness test for fair value hedges gentlemen : we have had favorable responses regarding the use of our volatility reduction method ( roger , i ' ve attached a copy of our article in case you hadn ' t seen it ) . however , there continued to be a quibble about how to create the set of data points that would be inputs into the testing process . last week the consulting arm of a "" big five "" accounting firm indicated that the following method proposed by us would be acceptable . we believe this method overcomes the statistical problems that arise from using interest rate differences from overlapping ( "" rolling "" ) quarters . method : 1 ) calculate daily yield curve changes expressed as ratios , using historical rates from the most recent , say , two years . ( note : no overlap ) . this results in a set of around 494 vectors of ratios ( approximately 247 trading days per year ) . example : if the first three yield curves in the historical set look like this : 19980801 6 . 5 6 . 6 6 . 7 . . . . . . . . . 7 . 2 19980802 6 . 3 6 . 3 6 . 6 . . . . . . . . . 6 . 9 19980803 6 . 6 6 . 8 6 . 9 . . . . . . . . . 7 . 1 then the change from 8 / 1 / 98 to 8 / 2 / 98 is : 6 . 3 / 6 . 5 6 . 3 / 6 . 6 6 . 6 / 6 . 7 . . . . . . . . . . 6 . 9 / 7 . 1 and the change from 8 / 2 / 98 to 8 / 3 / 98 is : 6 . 6 / 6 . 3 6 . 8 / 6 . 3 6 . 9 / 6 . 6 . . . . . . . . . 7 . 1 / 6 . 9 2 ) randomly select 62 of these "" ratio "" vectors ( approx . 62 trading days in a quarter ) . 3 ) multiply these ratio vectors together to get a single vector ( ie , the 62 6 mo ratios are multiplied together , the 62 lyr ratios are multiplied togeter , etc . ) . the result represents a single quarterly yield curve transformation . apply it to "" today ' s "" yield curve . the resulting yield curve represents one simulated quarterly change in interest rates 4 ) repeat steps 2 and 3 until an adequate number of yield curves are generated , say 100 . 5 ) proceed with testing process . i would be interested in your comments . leslie abreo andrew kalotay associates , inc . 61 broadway , ste 3025 new york ny 10006 phone : ( 212 ) 482 0900 fax : ( 212 ) 482 0529 email : leslie . abreo @ kalotay . com visit aka ' s website at http : / / www . kalotay . com - fasl 33 article . pdf",0 +"Subject: your job application to enron research group dear mr . palmer : thank you for your interest in the research group at enron . we recieved your resume and discussed your qualifications within the research group . unfortunately , there is not a good match between our job requirements and your skills . once again , thank you for your interest in our company and best wishes for your future . regards , p . v . krishnarao .",0 +"Subject: 1 / 2 day seminar : the new texas electric market fyi , i thought some of you might be interested in this half day seminar at ut . bill hogan , as well as speakers from the iso and puc are scheduled to speak . i plan to attend . if we have more than 3 , we can register as a group for $ 145 / person - if more than 10 attend , the price is $ 100 / person . ross baldick , one of martin lin ' s and my advisor is the moderator . it may prove both interesting and contentious will hogan being there . lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 16 / 2001 09 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" lance b . cunningham "" on 04 / 15 / 2001 05 : 06 : 06 pm to : lance . cunningham @ enron . com cc : subject : fwd : the new texas electric market > delivered - to : lbcunningham @ mail . utexas . edu > date : tuesday , 10 apr 2001 23 : 30 : 14 cst > to : lbcunningham @ mail . utexas . edu > from : engineering foundation > subject : the new texas electric market > > dear mr . cunningham , > > > "" the new texas electric market and how it > compares to the california market "" > > may 2 , 2001 - 1 : 00 to 5 : 00 p . m . > > seminar presented by the college of engineering , > the university of texas at austin . > > electric reliability council of texas ( ercot ) > plans to open a pilot retail market in most areas > of the texas region on june 1 , 2001 . this > presentation will address aspects of the ercot > market and how texas will avoid experiencing the > same problems as california . ut austin ' s center > for lifelong engineering is introducing a 1 / 2 day > seminar to provide an overview of how this market > will be structured . > > presenters will include officials from harvard , > university of california energy institute , ercot , > and the public utility commission of texas . > > for more information or to register , please visit > our website at www . lifelong . engr . utexas . edu , or > contact sharon campos at 512 - 471 - 3506 , or > scampos @ mail . utexas . edu . > > ( this announcement was sent as a courtesy > from ut - austin college of engineering to > ut engineering alumni . it was e - mailed > from the college ' s general e - mail address , > which is flagged as ' engineering > foundation . ' if you wish to discontinue > further email messages from the college of > engineering , please reply to this message > with your full name , degree information > and "" unsubscribe . "" thank you ! )",0 +"Subject: transport fuel p / l - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 08 / 30 / 2000 11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 08 / 30 / 2000 11 : 07 am to : colleen sullivan / hou / ect @ ect cc : andrew h lewis / hou / ect @ ect , greg couch / hou / ect @ ect subject : transport fuel p / l colleen , after looking into the transport deals for nbpl ( long term deal 1 , 2 , 25 , 26 ) , i think i figured it out why we see positive fuel p / l for deal 1 , 25 , and 26 and negative fuel p / l for deal 2 . the following plot shows nymex curve as of 8 / 23 / 00 : for short term , nymex moved up compared to that of 8 / 22 / 00 , while the long term nymex moved down . here are the tenor for each deal : deal 1 : start 01 - sep - 00 , end 22 - may - 09 , the above graph suggested a positve fuel p / l deal 2 : start 01 - sep - 00 , end 28 - feb - 02 , the above graph suggested a small negative p / l deal 25 : start 01 - may - 02 , end 28 - feb - 09 , the above graph suggested a positve fuel p / l deal 26 : start 01 - mar - 09 , end 31 - may - 09 , the above graph suggested a positve fuel p / l the transport book seems to be correct on these fuel p / ls . another point worth to mention is that the fuel cost is related to index price ( nymex + basis + index premium ) , to correctly interpret fuel p / l , we need to look at the index curve change . let me know your thoughts on this . zimin",0 +"Subject: options library links elena , the new research web page looks very nice . recently i have a few users who called me about the links to exotica options library . i checked , both links to exotica . doc and example spreadsheets do not work . i appreciate that if you could re - establish the links as soon as possible . thanks . zimin",0 +"Subject: worth a careful reading best regards , jhherbert - gdol 0314 abr . pdf",0 +"Subject: re : stinson vacation in feb . stinson , n o problem . vince stinson gibner 01 / 07 / 2000 10 : 51 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , melissa jones / enron communications @ enron communications , zimin lu / hou / ect @ ect , jean mrha / enron communications @ enron communications subject : stinson vacation in feb . vince : i would like to take four days of vacation time in february , from feb . 22 through 25 th . thanks , - - stinson",0 +"Subject: re : corporate card yes tony , mike authorized you for a corp . card , however that ' s something your asst . can do in london for you . if you need further asst . please inform . . . . . . . kevin moore tony hamilton @ enron 04 / 30 / 2001 07 : 28 am to : mike . a . roberts @ enron . com , tani . nath @ enron . com , kevin . g . moore @ enron . com cc : subject : corporate card is it possible for me to get a corporate card , and if so , who do i need to contact regarding this ? thanks tony",0 +"Subject: dba administrator cecil , i ' ve spoken with charlene just now and she sounds very helpful . can you give her a call tomorrow morning to iron out exactly how you want to access the enpower data base ? i ' ve left your name with her so she ' s expecting your call . best , alex - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 05 / 01 / 2001 05 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 05 / 01 / 2001 05 : 13 pm to : michelle d cisneros / hou / ect @ ect cc : alex huang / corp / enron @ enron , vince j kaminski / hou / ect @ ect subject : dba administrator michelle , the name of the db administrator for enpower is charlene fricker , 5 - 3487 . alex will contact her regarding the access to the curve . i think it ' s a problem many layers below gary hickerson ' s level of responsibility and i hope we can handle it without using his valuable time . vince",0 +"Subject: energy & power risk management 2001 , houston dear vince , it is my great pleasure to confirm your participation at energy & power risk management 2001 on may 14 th . please take a moment to look at the current line - up on the attached draft program . i have held a position on the panel discussion if you wish to take part . the current talk titles are based upon our telephone conversations and i am happy to discuss any potential changes . i would like to confirm the following details by thursday , january 18 th : final talk title bullet points ( 5 - 6 ) full name , job title , company title postal address i am sure that you will agree that this year , energy & power risk management  , s annual event provides a wide range of highly topical sessions . i look forward to receiving your full presentation details and meeting you in may . yours sincerely , paul bristow conferences manager , us risk waters group 270 lafayette street suite 7 new york 10012 212 925 6990 ext 225 pbristow @ riskwaters . com - revspktemp 2 . doc",0 +"Subject: fwd : fw : will you be the difference ? fyi jana return - path : received : from rly - yhol . mx . aol . com ( rly - yhol . mail . aol . com [ 172 . 18 . 147 . 33 ] ) by air - yhol . mail . aol . com ( v 76 _ rl . 8 ) with esmtp ; wed , 18 oct 2000 18 : 57 : 48 - 0400 received : from texasmonthly . emmis . com ( texasmonthly . emmis . com [ 208 . 139 . 95 . 3 ] ) by rly - yhol . mx . aol . com ( v 76 _ rl . 19 ) with esmtp ; wed , 18 oct 2000 18 : 56 : 49 - 0400 subject : fw : will you be the difference ? to : alexana @ wellsfargo . com , jlpnymex @ aol . com , kingair 500 @ aol . com , mdesanto @ minddata . com , kwgre @ aol . com , pmarb @ yahoo . com x - mailer : lotus notes release 5 . 0 . 3 march 21 , 2000 message - id : from : nalexander @ texasmonthly . emmis . com date : wed , 18 oct 2000 18 : 15 : 34 - 0500 x - mimetrack : serialize by router on tmnto 2 / aus / txmo ( release 5 . 0 . 4 a | july 24 , 2000 ) at 10 / 18 / 2000 05 : 54 : 02 pm mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii texas monthly : if you want to be big in texas . nancy alexander account executive 214 . 871 . 7704 - - - - - forwarded by nancy alexander / aus / txmo on 10 / 18 / 00 06 : 14 pm - - - - - karen burke to : sloansimmo @ yahoo . com , ccgarcia @ prodigy . net , cbsbcol @ aol . com , 10 / 18 / 00 sschrump @ ziplink . net , "" hosty , maria "" , 02 : 10 pm yvonne anguiano , tanya . davis @ us . pwcglobal . com , 2 onza @ pdq . net , "" lisa elledge "" , proyecto 4 @ yahoo . com , "" hughes , jennifer "" , anita zmolek / aus / txmo @ txmo , nancy alexander / aus / txmo @ txmo cc : subject : fw : will you be the difference ? texas monthly : if you want to be big in texas . karen burke 713 . 871 . 1643 phone 713 . 871 . 0335 fax - - - - - forwarded by karen burke / aus / txmo on 10 / 18 / 2000 02 : 08 pm - - - - - jacquelyne o ' keefe to : bassw @ swbell . net , karen burke / aus / txmo @ txmo , elizabeth wallace fulghum / aus / txmo @ txmo , lanette varnadoe / aus / txmo @ txmo , simmonds @ pdq . net 10 / 18 / 2000 cc : 11 : 15 am subject : fw : will you be the difference ? texas monthly : if you want to be big in texas . jackie o ' keefe wallace retail advertising director phone 713 . 871 . 1762 fax 713 . 871 . 0335 - - - - - forwarded by jacquelyne o ' keefe wallace / aus / txmo on 10 / 18 / 00 11 : 14 am - - - - - "" karen thompson "" to : "" tim marron "" , "" suzanne waller "" , "" shelley smelley marron "" , . net > "" pammy poindexter "" , "" molly vaughan "" , "" melissa garlington "" 10 / 17 / 00 , "" mary marron "" 09 : 07 pm , "" margie \ "" aunt boggie \ "" marron "" , "" liz rotan "" , "" julia "" , "" joanie seay "" , "" jenny clark brown "" , "" jackie wallace "" , "" gmommy clark "" , "" george kkempl 65 @ aol . com ; jflesher @ kprc . com ; akdwyer @ yahoo . com ; cara _ clement @ yahoo . com ; merrie @ mail . evl . net ; krichardson @ texasnf . org ; kprice @ texasnf . org ; ddeleon @ texasnf . org ; rfreeman @ texasnf . org ; dbadura @ texasnf . org ; karen thompson ; cmlucas @ swbell . net ; annie 319 @ aol . com ; bmratch @ yahoo . com ; sarah @ thedykes . com ; laura @ thebairds . com ; mtucker @ datamate . com ; colecaroline @ hotmail . com ; mark . m . meador @ us . arthurandersen . com ; robert muse ; dmoriniere @ swbank . tx . com ; joanna latham ; merritt pappas ; chip rives ; reagan rives ; angela hilary and corey pond ; jeffrey smith ; kent winfield date : tuesday , october 17 , 2000 3 : 37 pm subject : fw : will you be the difference ? > > > - - - - - original message - - - - - > from : jennifer . p . toomey @ us . arthurandersen . com > sent : tuesday , october 17 , 2000 3 : 53 pm > to : aford @ bpl . com ; birdsbecca @ aol . com ; bwilliamsl 236 @ austin . rr . com ; > ckmattingly @ hotmail . com ; cshirley @ ccj - law . com ; cwilliams @ texasnf . org ; > ewells @ nrsc . org ; jill . goldstein @ mbao 2 . bus . utexas . edu ; halejulie @ yahoo . com ; > hollyk 8 @ aol . com ; lsm 34 @ columbia . edu ; mtucker @ dpj . com ; sew 7 @ flash . net ; > elizabeth . reid @ turner . com ; rskappraiser @ email . msn . com ; tehunt @ aol . com ; > wdtiidd @ aol . com > subject : fw : will you be the difference ? > > > > > > - - - - - - - - - - - - - - - - - - - - - - forwarded by jennifer p . toomey on 10 / 17 / 2000 03 : 55 > pm > - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > to : brian _ seiler @ aimfunds . com , fritz _ weiss @ aimfunds . com , > jean _ miller @ aimfunds . com , charles _ hebert @ aimfunds . com , > sue _ hendrickson @ aimfunds . com , ralph _ terry @ aimfunds . com , > gormanab @ mindspring . com , alysonfisher @ yahoo . com , amandam @ microsoft . com , > adjohnso @ students . uiuc . edu , knocks @ ecsis . net , cbidding @ post . cis . smu . edu , > mpblalock @ aol . com , gmbl @ compassbnk . com , bcahal @ acxiom . com , carle @ wt . net , > cmiller @ rice . edu , connelly . mcgreevy @ gs . com , gnconnelly @ aol . com , > dawn . beach @ bowne . com , aimeedodson @ aol . com , ddominic @ temmc . com , > heather . k . doyle @ ac . com , aeasterby @ lrmm . com , ferikson @ mdanderson . org , > rtfass @ fcflaw . com , fguinn @ flash . net , tina . hoffman @ petrocosm . com , > rhurt @ lctn . com , wingram @ ddsep . com , jrcoastal @ aol . com , jennyv @ dpwpr . com , > jbandctaylor @ mindspring . com , keasterby @ aglife . com , jkiani @ coair . com , > kianim @ epenergy . com , kristen . kors @ weil . com , brittonk @ perryhomes . net , > katek @ . com , clipscomb @ kma . com , > kaymassmanlobb @ yahoo . com , mm 52 @ lucent . com , cjmandola @ aol . com , > mikebid @ earthlink . net , nataliebiddinger @ yahoo . com , steven . w . murray @ ac . com , > jpecher @ ect . enron . com , receskim @ perryhomes . net , jennifer p . toomey , > cvanos @ texas . net , jennyv @ dpwpr . com , kwehner @ brobeck . com , > elizabeth @ keen . com , david . d . wolf @ chase . com > cc : > date : 10 / 16 / 2000 09 : 00 am > from : jackie _ mcgreevy @ aimfunds . com > subject : fw : will you be the difference ? > > > > > > > the year is 1960 . > > > > jfk wins the election because he receives > > > > 1 more vote per precinct in illinois ( 8 , 858 votes ) > > 3 more votes per precinct in missouri ( 9 , 880 votes ) > > 3 more votes per precinct in new jersey ( 22 , 091 votes ) > > > > without those 40 , 829 votes , the election goes to nixon . > > > > your vote does matter . > > > > experts say this will be the closest election since 1960 . > > we agree . > > > > what can you do about it ? join the bush e - train ! > > ( 1 ) forward this e - mail to your friends and colleagues > > ( 2 ) then click on the link below and enter your e - mail : > > http : / / www . georgewbush . com / bn . asp ? pagemode = frontpagesignup > > > > our goal : > > 2 , 000 , 000 e - mail addresses to spread the word > > and get out the vote . > > > > be a part of history , get on the bush e - train and join > > what will become one of the largest grassroots > > movements ever . > > > > make the difference ! and receive the e - mail on > > nov . 8 that says , "" president - elect george w . bush > > thanks you . "" > > > > > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > > > paid for by bush - cheney 2000 , inc . > > http : / / www . georgewbush . com > > > > > = > = = > > > > to unsubscribe , please go here : > > http : / / www . georgewbush . com / unsubscribe . asp ? email = yolaa @ earthlink . net > > > > to change your e - mail address or any other subscription information , > please go here : > > http : / / www . georgewbush . com / mygeorgew . asp > > > > > > > > > > > > > > > * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * > > privileged / confidential information may be contained in this message . if > you > are not the addressee indicated in this message ( or responsible for delivery > of > the message to such person ) , you may not copy or deliver this message to > anyone . > in such case , you should destroy this message and kindly notify the sender > by > reply email . please advise immediately if you or your employer do not > consent to > internet email for messages of this kind . opinions , conclusions and other > information in this message that do not relate to the official business of > my > firm shall be understood as neither given nor endorsed by it . > > >",0 +"Subject: re : jcc that this email constitutes your groups ( vince kaminski ' s ) sign - off on using this hedge ratio to hedge jcc and jcc - based products ? thanks in advance , marc de la roche kevin kindall @ enron 06 / 06 / 2000 02 : 18 pm to : marc de la roche / hou / ect @ ect cc : grant masson / hou / ect @ ect subject : re : jcc & brent good afternoon . i have performed a review of the jcc data that you sent some time ago . the study was done using several different excel workbooks , and are available upon request . relevant charts are embedded in the powerpoint attachment . questions / comments welcome . - kevin kindall",0 +"Subject: re : trip to houston another student invited by tom gros to come next wednesday . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 10 / 2000 05 : 25 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - paulo rocha e oliveira on 02 / 10 / 2000 12 : 04 : 56 pm to : "" stinson gibner "" cc : subject : re : trip to houston stinson , thank you for your e - mail . my phone number is ( 617 ) 492 - 9551 . i don ' t have a currect resume , but if i did it would say that i graduated from princeton university in 1996 ( mathematics ) , and came straight to mit for a phd in operations management at the sloan schoolof management . in my first three years i took all the required coursework in mathematics , optimization , stochastic processes , etc . , as well as a number of courses in psychology ( at mit and harvard ) . i am working with prof . gabriel bitran , and i am interested in the mathematical modeling of service operations . in particular , i am interested in the interaction between customers and companies ( hence the interest in psychology ) . the ( tentative ) title of my phd thesis is "" pricing substitute products on the internet "" , and i am sending you the summary which i sent to tom gros a few weeks ago that will give you an idea of what this research is about . thanks again , and i ' m looking forward to meeting you and your research group next week . paulo pricing substitute products on the internet objective : to develop new tools to decide pricing policies for goods and services sold on the internet . motivation : this reseach is motivated by the fact that traditional choice and optimization models are not appropriate for internet - related businesses . the technological innovations associated with the internet brought about an overload of information which inevitably affects the ways in which consumers make choices . furthermore , companies have a great deal of influence on how much information consumers can have access to . the problem of pricing substitute products is an important strategic issue faced by internet companies . consumers usually search for generic products ( e . g , vcrs or computers ) without knowing exactly what they will buy . companies can show different products and different prices to each consumer . this type of flexibility was not available until the internet came about . the problem of pricing substitute products is not unique to the internet . the methodology developed by this research should be transferrable to a number of other settings , such as pricing services . services are unique , and there are many cases where customers will only buy one of many services offered by a given company . our model will help companies decide which services to offer to which customers and how much to charge for these services . research strategy : our research strategy is to divide the pricing problem into two components which can be combined to generate optimal pricing strategies . these components are choice models and optimization models . choice models : choice models describe how customers make choices . the management literature draws on two main sources for these models : psychology and economics . the common approach in psychology models is to use what are called heuristic elimination methods . these methods consist of the elimination of options based on the sequential eliminations of features until only one choice remains . these methods tend to be very context - specific and do not lend themselves very easily to mathematical analysis . economists focus on utility - maximing models that are significantly more mathematically tractable than psychological models . the most common economic model of choice is the logit model . the problem with these types of models is that they are not very accurate reflections of how consumer make choices on the internet . the first step in our research will be to develop choice models that capture the interactions going on between customers and companies on the internet . optimization : traditionally , the optimization problem consists of maximizing revenue over a certain planning horizon . on the internet , the problem of maximizing revenue still exists , but there is also a need to learn about customers . short term profit is based on sales , but long term profit is based on how well you know your customers and are able to retain them . the optimization problem must therefore include a short term component ( sales ) and a long term component ( learning ) .",0 +"Subject: re : vince kaminski ' s oct . 11 presentation - - "" enron day at the energy finance program "" cindy , october 11 would work for me . this is the date of my visit to austin to make a presentation ehud ' s mba class . if you need me to go to austin an a different day , please , let me know . i shall be glad to help you , my schedule permitting . vince cindy justice 07 / 05 / 2000 03 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : vince kaminski ' s oct . 11 presentation - - "" enron day at the energy finance program "" vince - christy young is the ut mba recruiter . she is taking a couple of weeks off to get married and will return on july 19 th as christy meador . in her absence , i wanted to make sure we coordianted our efforts with you . below are a few key ut recruiting dates . ideally , we would like for your presentation to occur a week or so before our interview list is due to the career services office . this will allow for additional candidates to submit their resumes for our review before we turn in the interview list . wed . , sept . 13 - corporate presentation & reception - alumni center fri . , sept . 22 - eye ' s of texas career fair - campus thurs . , sept . 28 - enron interview list due to career services office wed . , oct . 11 - pre - interview reception - selected candidates only thurs . , oct . 12 - first round interviews fri . , oct . 13 - second round interviews sat . , oct . 28 - super saturday for ut candidates please let me know what works best with your schedule . note that october 11 is the same date as our pre - interview reception . we look forward to working with you on this . thanks , cindy justice x 57339 - - - - - - - - - - - - - - - - - - - - - - forwarded by cindy justice / hou / ect on 07 / 05 / 2000 03 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - celeste roberts 07 / 05 / 2000 11 : 57 am to : cindy justice / hou / ect @ ect , shelly jones / hou / ect @ ect cc : subject : vince kaminski ' s oct . 11 presentation - - "" enron day at the energy finance program "" can you guys followup with him to coordinate an enron reception following a presentation that vince kaminiski will give during their annual ut foundations of energy finance class . we do want to do this , and of course need to coordinate with vince and your dates on campus to ensure that we have no conflicts . i am not sure if this falls into the associate or analyst camp . you can best determine who the appropriate contact should be . leave me an e - mail to confirm . celeste - - - - - - - - - - - - - - - - - - - - - - forwarded by celeste roberts / hou / ect on 07 / 05 / 2000 11 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ehud i . ronn "" on 07 / 05 / 2000 10 : 35 : 57 am to : celeste roberts / hou / ect @ ect , celeste roberts / hou / ect @ ect cc : subject : vince kaminski ' s oct . 11 presentation - - "" enron day at the energy finance program "" celeste , greetings . as you may recall , i am the director of the univ . of texas center for energy finance ( cefer ) . i would like at this time to initiate planning for your colleague vince kaminski ' s annual presentation to the ut foundations of energy finance class which i will be presenting as usual the first half of the fall semester . thus , to begin , i wonder whether either the above is your current e - mail account , and , with the departure of meryl barnett ( with whom i believe we coordinated this in the past ) , whether this is an issue within your scope . with respect to this reception , i appreciate that there may be other enron receptions scheduled for this fall . however , if you so choose , i would like to afford you the opportunity of scheduling an enron reception following vince ' s presentation . if you would indeed like to do so , i suggest we coordinate with vince the date for the presentation / reception . sincerely , ehud ehud i . ronn professor of finance director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: new computers hi lyn : hope things are going better for you ! the research group is getting one new employee beginning february 21 , 2000 , that needs a computer . we also have an employee that needs a new computer because the one she has does not have enough memory . we need at least 64 meg memory with a large screen ( 17 "" ) . names and locations : yana kristal ebl 947 ( replace computer she now has ) shalesh ganjoo ebl 951 ( new analyst rotating - 2 / 21 / 00 ) co . # : 0011 rc # : 100038 approver : vince kaminski , managing director , research if you need anything else , please let me know . thanks and have a great day ! shirley 3 - 5290",0 +"Subject: re : eprm article julie / vince ? i worked on both the last couple of nights and made quite a few small "" improvements "" . ? vince - if the 2 nd article ( eprm _ 02 _ mr . doc ) is ok with you then that is ready . ? the 3 rd article needs fig 1 updating still will hopefully do that this w / e . ? les . ? - eprm _ 02 _ 03 . zip",0 +"Subject: uk inflation and storage model hi zimin , inflation : i am also spending a lot of time looking at short - term auto - regressive models for ppi and long - term , more fundamentally - based models . this work is important because we have potentially a large positive p & l that may be unlocked by moving to our new indicative uk ppi curves . john sherriff and trena are keen that any models i produce are vetted / approved in houston , so i will forward to stinson or yourself initially for review once ready and documented . storage : thanks for the current storage model . due to the complexity of the modelling issues involved , i would strongly support a visit by you to help me meet the needs of the london customers in this matter , and am happy to act as the anchor for information flow in the mean time . regards , anjam x 35383 zimin lu 21 / 03 / 2000 19 : 31 to : anjam ahmad / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : us inflation and storage model anjam , thanks a lot . after getting that book i will redo the us inflation model . our exposure to cpi inflation risk is huge ( think about how many contracts signed by ees ) , so the us model is very important . the storage model is going through aduit by prof . d . duffie . we are adding features to it . i can send you the current version . maybe it is worthwhile for me to go to london to discuss with the users about the valuation . zimin anjam ahmad 03 / 21 / 2000 11 : 31 am to : zimin lu / hou / ect @ ect cc : subject : book hi zimin , you ' re book has arrived and i posted it today . also , wanted to ask what you could give me and natasha regarding the new storage model ? thanks , anjam x 35383",0 +"Subject: re : credit . com cv ' s could we talk on monday pls . obtain the feedback of your team . thanks for the assistance vince j kaminski 08 / 05 / 2000 22 : 46 to : rosalinda resendez / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , bryan seyfried / lon / ect @ ect subject : re : credit . com cv ' s rosie , we are making arrangements to bring them to houston for an interview . vince rosalinda resendez 05 / 08 / 2000 11 : 10 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : credit . com cv ' s vince , i ' ve been asked to forward these resumes to you . rosie - - - - - - - - - - - - - - - - - - - - - - forwarded by rosalinda resendez / hou / ect on 05 / 08 / 2000 11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - louise bratby 05 / 08 / 2000 10 : 11 am to : rosalinda resendez / hou / ect @ ect cc : subject : credit . com cv ' s rosalinda i work with melanie doyle in london hr . i have two candidates who i ' m trying to arrange ( for bryan seyfried ) to come in and see vince kaminski however i ' m finding it difficult to co - ordinate from this end . would it be possible for you to forward these cv ' s on to vince ' s assistant as i ' m not sure who the correct person is . thanks for your help and if you need more details my number is 44 20 7783 6945 . regards louise",0 +"Subject: hiring at a vp level jeff , i want to bring aram sogomonian back to enron at a vp level . according to new human resources procedures this decision requires a support of three senior executives . i want to ask you to express your opinion on aram ( based on a phone interview or just on your past interactions with him ) . you can send a reply to norma villarreal at h / r . thanks . vince",0 +"Subject: re : recruiting vince , thank you so much for forwarding this information to me as well as making some initial contacts on campus ! i was wondering if you could provide a two hour time slot in the next two weeks for the cal berkeley planning session with the entire campus team here in the office ? i would like to get the entire team together prior to the career fair on the 8 th so that we can go over the strategy , dates on campus , and roles / responsibilities . also , i know that you mentioned that the first couple of weeks in october would be the best to target for the general information session . how does the week of october 9 th look for you ? is there a certain day that works the best ? i would like to work with your schedule to see if we can come up with a date in that timeframe . thanks again for your help ! ashley vince j kaminski @ ect 08 / 11 / 2000 01 : 42 pm to : ashley baxter / corp / enron @ enron cc : subject : recruiting ashley , another professor i contacted . his web page is http : / / are . berkeley . edu / ~ rausser / can we firm up the trip date ? i shall be able to line up some meetings vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 11 / 2000 01 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vkamins @ ect . enron . com on 08 / 11 / 2000 01 : 44 : 52 pm to : rausser @ are . berkeley . edu , vkamins @ enron . com cc : subject : recruiting gordon , this is the information about our recruiting program . vince - enronl . pdf",0 +"Subject: gaming of neta prices - constraints on the mccoy strategy fyi ( bm = balancing market in his email ) . i ' m still on eklavya ' s back to produce a white paper analysis of possible trading stretagies under neta and their likely implications for prices and volatilities . i ' ll forward it on as soon as ( if ever ) i receive it . steve - - - - - - - - - - - - - - - - - - - - - - forwarded by steven leppard / lon / ect on 02 / 09 / 2000 03 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - eklavya sareen 09 / 02 / 2000 14 : 43 to : ect london uk power trading , enron london power analytics , ect london uk gas and power origination , paul dawson / lon / ect @ ect cc : subject : gaming of neta prices - constraints on the mccoy strategy i believe most people are now familiar with the mccoy strategy for manipulating imbalance prices in a favourable direction : 1 ) take a massive long or short position in forward trading 2 ) choose physical production decisions to drive system i ) long if forward market postion is long ii ) short if forward market postion is short 3 ) if system is long it needs to accept bids , if system is short it needs to accept offers 4 ) if forward market postion is long submit very large postive bids to the bm to drive ssp high - ssp is price received for spilling power to the bm ( going into bm long ) 5 ) if forward market postion is short submit very small ( even negative ) offers to the bm to drive sbp low - sbp is price paid for purchasing power from bm ( going into bm short ) the neta programme intends to tag transmission cosntraint related trades in the bm . according to disg 24 "" tagging constraint trades "" ( 21 dec 99 ) option 3 ( a ) [ the option that is proposed to be adopted ] , paragraph 2 . 3 ( p . 4 ) : "" in the relevant settlement period , all accepted offers and bids volumes that can be arbitraged , i . e . where a volume has been bid higher than the price at which a volume has been offered , are eliminated ; "" one of the implications of the above procedure is that the highest bids ( the mccoy bids ) and the lowest offers ( the mccoy offers ) are likely to be eliminated from the calculation of imbalance prices . this will make it harder to pursue the mccoy strategy successfully . thoughts and comments welcome . thanks , eklavya .",0 +"Subject: re : var vince thanks for the update - especially your point 3 which echoes our own discussion yesterday : i want to clarify responsibilities for maintenance and administration of var . we need transparency around the process so that mapping decisions , for example , are easily made , supported and reviewed . it became clear after last friday ' s events , that we are in an awkward paradigm with respect to how we handle var here , particularly at "" pressure points "" . i am putting together the scope of a "" general overhaul "" of the var process , including method and administration , to which i hope we would all buy in , so be assured of our co - operation . dp - - - - - original message - - - - - from : kaminski , vince sent : wednesday , april 11 , 2001 2 : 49 pm to : port , david cc : lavorato , john ; kaminski , vince ; tamarchenko , tanya subject : var david , during today ' s var coordination meeting we had a discussion of issues related to mapping of the forward price curves into core locations . mapping is a necessity dictated by the limitations of the computer system : we have to reduce the dimensionality of the problem to stay within the bounds of available cpu memory . also , in some cases the quality of price discovery is poor and it ' s difficult to model the price curves independently : we solve the problem by mapping them into more liquid and better behaved core locations curves . we have agreed on the following : 1 . winston will investigate the it side and determine to what extent we can increase the number of forward price curves that are simulated as basic ( core ) curves . he will investigate the impact of a larger number of the core curves on the time required to complete the var run . 2 . the curves associated with the biggest 10 - 20 positions in each commodity should be modeled as core curves ( i . e . no mapping into other locations ) . it makes sense to monitor the biggest risks separately and avoid aggregating them into less transparent aggregates . 3 . the results of an automated clustering ( mapping ) procedures should be systematically monitored by a human and corrected if they misrepresent the risks of the trading positions . this responsibility should be vested with one person ( right now the responsibility is dispersed through the organization and this means in practice that nobody is responsible ) . research can allocate one person to this task ; cooperation of trading and rac will be critical . vince",0 +"Subject: december 15 th super saturday friday interview confirmation please see the attached regarding interview confirmation and information for friday , december 15 th . thanks shelly",0 +"Subject: promotion vince , congrats on your promotion to md . doug",0 +"Subject: re : lsu seminar visit jim , i can send you copies of the reprints of some papers i wrote or co - authored . please , let me know how many copies do you need . i shall prepare power point presentations for the student meeting and for the faculty meeting . for the students : review of my group ( things we work on ) with an intention of generating some interest among the students and soliciting resumes . for the faculty meeting : challenges that energy markets pose to financial modeling . i shall be able to e - mail the power point presentations later this month . vince jim garven on 01 / 17 / 2000 04 : 00 : 25 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : lsu seminar visit dear vince , would you mind emailing to me a short biography / vita sometime when you get a chance ? also , if you have a paper to circulate or any powerpoint slides that you ' ll want to use either in your presentations to my students thursday afternoon , 2 / 3 , or to the faculty seminar on friday morning , 2 / 4 , please email these to me . this would be greatly appreciated . my colleagues and i are looking forward to your visit on feb . 3 - 4 to lsu . sincerely , jim garven james r . garven william h . wright , jr . endowed chair for financial services department of finance 2158 ceba e . j . ourso college of business administration louisiana state university baton rouge , la 70803 - 6308 voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361 e - mail : jgarven @ lsu . edu home page : http : / / garven . lsu . edu vita : http : / / garven . lsu . edu / dossier . html research paper archive : http : / / garven . lsu . edu / research . html - attl . htm",0 +"Subject: re : possible hire ? kathy , thanks for your message . we are very interested in talking to keith . please , give him my phone number / e - mail address and he can contact me directly . vince "" kathy ensor "" on 04 / 18 / 2000 11 : 32 : 27 am to : cc : subject : possible hire ? dear vince , a faculty member in our department , namely dr . keith baggerly , is interested in pursuing other employment . he is currently an assistant professor in our program and a highly valued member of our department . we hate to lose him , however his interest has shifted from the academic arena to one of high level but practical application and development of statistical methodologies including stochastic modeling . keith is actually a graduate of our ph . d . program ; he was in the same group of students as martin lawera . keith spent several years at los alamos national lab before we recruited him back to rice . he has been on our faculty now for three years and it is my expectation ( and that of my colleagues ) that if he remained he would receive tenure . keith has a strong interest in financial models and the background to support his interest . he is also a leading expert in statistical computing , empirical likelihood , categorical models and areas of statistics falling under the general bailiwick of "" data mining "" . he is a creative thinker . i do not know if there are possibilities for keith within your group , however i believe it is an excellent match of talent and objectives . would you have an interest in speaking with keith ? if so , i will suggest that he contact you . best regards , kathy ensor katherine bennett ensor e - mail : ensor @ rice . edu professor and chair or : kathy @ stat . rice . edu department of statistics , ms 138 phone # : ( 713 ) 348 4687 rice university dept . # : ( 713 ) 348 6032 houston , tx 77251 - 1892 fax # : ( 713 ) 348 5476",0 +"Subject: fw : application for open positions within enron dear mr . kaminski : just wanted to let you know that i have submitted my slightly revised resume ( attached ) for the following open positions within enron . i am seeking an opportunity to have a job interview with the right individuals . i know you have been trying to help me . this is a good time for a meeting with someone within these departments . 1 . . credit analyst , spec sr , job # 000010220 , dept : trade credit : tony vasut 2 . . manager , job # 0000102374 , dept : ena consolidated reporting : tony vasut 3 . . director , b 8828 , dept : investments / ventures - broadband services 4 . . compliance manager , job # 0000102317 , dept : due diligence / asset management i shall , therefore , appreciate your guidance on how i can come in for a job interview . as you know , i am really interested in working for enron , hence request for your help . thank you . sincerely , maruti d . more , cfa 1 . . - - - - - original message - - - - - from : more to : vince j kaminski date : monday , february 07 , 2000 10 : 18 pm subject : re : personal dear mr . kaminski : thank you very much for meeting with me again today over lunch . i appreciated the opportunity to catch up with you . please find attached my current resume ( both a short and a long version ) . i have worked as a trader , portfolio risk manager , and a stock analyst . i have traded derivatives , bonds , and stocks , and managed insurance and pension investment portfolios to maximize risk - adjusted returns . let me highlight some of my work experiences . trading and risk management a . . structured , negotiated , and traded otc interests rate swaps , cross - currency swaps , swaptions , and exchange - traded equity index futures and options . made powerpoint presentations to garp and the uoh on credit derivatives . b . . developed investment hedging program utilizing exchanged - traded bond futures and interest rate swaps . c . . traded and managed pension and insurance fixed income portfolios to maximize total return and funding ratios . bonds traded : treasuries , agencies , mbs / cmos , abs , corporate , yankees , and foreign . d . . traded and managed stock mutual portfolios for total return . e . . created a computer program to quantify the attribution of total return for fixed income portfolios relative to market returns . f . . programmed investment compliance rules to monitor the management of domestic and global stock , bond and money market mutual funds . g . . supervised market risks , credit risks , legal risks , and operations risks of derivatives , bonds , money market securities , and equities . policy , reporting and projects a . . developed investment policy guidelines to manage fixed income portfolios . b . . rewrote derivatives policy manual . c . . prepared a 20 - page powerpoint slide presentation on india for the senior management . d . . prepared and presented investment reports to cios , investment committees , and boards of trustees i shall , therefore , appreciate your help in connecting me with the right individual within enron for a job interview to work as a financial trader / risk manager . i can provide excellent references upon request . thank you for the lunch . sincerely , maruti d . more , cfa 713 - 722 - 7199 more @ insync . net - - - - - original message - - - - - from : vince j kaminski to : more date : tuesday , january 25 , 2000 12 : 39 pm subject : re : fw : luncheon meeting : asap hello , i shall be traveling this week . i shall be glad to meet you for lunch next week . please give me a call monday at 713 853 3848 . vince "" more "" on 01 / 25 / 2000 10 : 27 : 09 am to : vince j kaminski / hou / ect @ ect cc : subject : fw : luncheon meeting : asap dear mr . kaminski : just to bring you up to date . i am no longer with american general . i shall , therefore , appreciate an opportunity to meet with you for lunch at the earliest possible time . i can be reached at 713 - 722 - 7199 . thank you . maruti more 713 - 722 - 7199 - - - - - original message - - - - - from : more to : vince j kaminski date : friday , december 17 , 1999 8 : 55 pm subject : re : luncheon meeting thank you for your response . i was very happy to hear from you . i am also taking next week off and will be back to work on december 27 th . please do call me when you get back . would very much appreciate the opportunity to have a quick lunch with you , if possible . hope everything is going well . have wonderful christmas holidays . regards maruti more 713 - 831 - 6209 ( o ) - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski date : friday , december 17 , 1999 3 : 35 pm subject : re : luncheon meeting hello , i shall be taking a few days off around xmas . i shall call you at the end of december when i get back to the office . with best holiday wishes , vince "" more "" on 12 / 01 / 99 09 : 28 : 09 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : luncheon meeting dear mr . kaminski : how are you doing ? i want to find out if we can meet again for a quick lunch . you might know that in maharashtra , india there is now a new chief minister ( ceo of the state government ) . i am proud to say that he and i are from the same town , latur . i would really enjoy talking with you again , at your convenience . i will call you tomorrow to follow up . thank you . sincerely , maruti more - - - - - original message - - - - - from : vince j kaminski to : more cc : vince j kaminski ; vkaminski @ aol . com date : thursday , july 01 , 1999 6 : 16 am subject : re : luncheon meeting dear mr . more , let ' s meet at 11 : 45 in the lobby of the enron building . we can walk to one of the restaurants in the downtown area . vince kaminski ( embedded enron capital & trade resources corp . image moved to file : from : "" more "" picl 7002 . pcx ) 06 / 30 / 99 10 : 38 pm to : vince j kaminski / hou / ect cc : subject : luncheon meeting dear mr . kaminski : i am looking forward to our luncheon meeting on this friday , july 2 , 1999 at 11 : 30 am . please let me know where we should meet . thank you for taking time out from your busy schedule . sincerely , maruti more tel . : 713 - 831 - 6209 - attl . htm - bio @ home . doc - more @ home . doc - consultant . doc",0 +"Subject: webi proposal vince : per your request , i am forwarding the electronic version of the webi proposal . as i mentioned to you yesterday , jeff shankman has procured funding for enron to join at the corporate partner level , so you may wish to discuss the matter with him prior to circulating this document . this funding is in addition to that which you and christie have already committed to other research and sponsorship activities at the school . please let me know if i can be of any further help . i look forward to seeing you again soon . by the way , i cast my vote on time and with no confusion ; let ' s hope the outcome is as we hoped it would be . tom > - webi proposal complete 5 - 26 . doc",0 +"Subject: re : hello gerry , let me review my calendar in the beginning of the next year and i shall e - mail you with a suggested date . my assistant will update my schedule for 2001 in the first week of january and i shall be able to select a date for ypur presentaton . vince kaminski "" sheble , g . b . "" on 12 / 21 / 2000 10 : 43 : 50 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : hello dear mr . kaminski please excuse the cancellation due to illness . the students do not care who they infect near the end of the semester , they just want to get done ! here is my available schedule for next year . i am now overloaded next week with tasks to complete the semester . i do hope that we can reschedule during the first quarter next year . i would note that my schedule is most free for thursday or friday . i could fly out late wednesday night . cordially , gerry teaching schedule m 11 - 12 t and r 10 - 12 and 2 - 4 t 12 - 2 ep & es seminar m 6 - 8 t 6 - 8 w 6 - 8 ( r = thursday ) workshops : jan 12 - 13 des moines jan 26 - 27 des moines feb 9 - 10 des moines ieee wpm conference feb 28 - 31 columbus , ohio",0 +"Subject: re : mba polish speakers does he know any of the names identified by sophie ? sidney cox 2000 - 02 - 23 19 : 31 to : jarek astramowicz / war / ect @ ect , jarek dybowski / war / ect @ ect , krzysztof forycki / war / ect @ ect , sophie kingsley / lon / ect @ ect , sophie kingsley / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : mba polish speakers vince was in the office today and i mentioned to him the difficulties we are having in finding good quality polish mbas . vince has kindly agreed to make contacts and forward some names to us . sid",0 +"Subject: todd kimberlain vince / vasant : do you know who todd kimberlain is ? is he supposed to be in the research group and charged to our cost center ? he is . i have never heard of him , but when you pull his name up , it shows that he is reporting to mark tawny , but is in the research group and being charged to our cost center . he is also on our time site , but i have not been doing his time . i hope somebody has ! let me know , thanks ! shirley",0 +"Subject: re : agenda for thursday ' s meeting hello all , i look forward to this meeting . since the time vince and i last spoke , we have really gained some traction in this area of improving our relationships with universities . i am going to take the liberty of inviting mike rosen to the meeting . mike has done a great job on several relationship - based special projects , and i ' d like to hear his thoughts as we develop the angles of this initiative . see you tomorrow , mark",0 +"Subject: interview thanks dear dr . kaminski : thank - you once again for inviting me to interview for a position in your corporate research group . i very much enjoyed meeting you and your colleagues . i was quite ? impressed by the excellent quality of the people and the entrepreneurial spirit at enron . the ongoing projects in support of energy and broadband ? marketing as well as insurance ? are very interesting to me . i definitely would like to be a part of these efforts . thank - you again for the opportunity to interview with your group . ? sincerely , rodney greene",0 +"Subject: dr . kaminski , on wednesday , june 14 th i attended your presentation entitled "" the challenge of valuation of energy related derivatives "" at the risk 2000 conference in boston . can you please e - mail me the slides you presented . also , you mentioned that the method you used to calculate volatility for energy prices was not the "" normal "" method . can you please tell me , or give me a reference to the method that you did use . thank you , aaron gould senior risk management analyst pseg services corporation aaron . gould @ pseg . com 1 - 973 - 456 - 3527",0 +"Subject: bios of mit participants vince : bios from mit participants did arrive - - - see below . amy donald r . lessard deputy dean ; epoch foundation professor of international management office e 52 - 474 tel 617 - 253 - 6688 ? ? ? ? ? ? ? ? ? ? ? lessard ' s current research is focused on the shaping and managing of risks in large engineering projects , the globalization of financial services , and knowledge development within multinational firms . as deputy dean , lessard coordinates sloan ' s research centers and provides faculty leadership for its international initiatives , institutional partnerships and executive education . the international initiatives include joint programs with tsinghua and fudan universities and lingnan ( university ) college in china , as well as programs in taiwan and singapore . lessard is also the faculty director for the mit - wide partnership between merrill lynch and mit . general expertise international corporate strategy and finance s . p . kothari gordon y billard professor of accounting and finance office e 52 - 325 tel 617 - 253 - 0994 ? ? ? ? ? ? ? ? ? ? ? ? kothari is an editor of the journal of accounting & economics , and his research work has been widely published in leading accounting and finance journals . past research has focused on the relation between financial information and security prices , accounting for executive stock options , tests of security - price performance and market efficiency , corporate uses of derivatives for hedging and speculation , and issues surrounding executive compensation . recent published research includes : "" the relation between earnings and cash flows "" ( with patty dechow and ross watts ) , journal of accounting "" a market - based evaluation of discretionaryaccrual models "" ( with wayne guay and ross l . watts ) , journal of accounting research , 1996 ; "" another look at the cross - section of expected returns "" ( with jay shanken and richard sloan ) , journal of finance , 1995 ; and "" measuring long - horizon security price performance "" ( with jerold b . warner ) , journal of financial economics , 1997 . general expertise accounting , india , stock trading",0 +"Subject: technical corner article a proposed technical corner article on the work we did fitting the new york area gas load data is attached for comment . bob lee",0 +"Subject: re : pserc iab - who we are i have completed the requested questionaire . lance sjdemarco @ nyseg . com on 11 / 20 / 2000 12 : 56 : 14 pm to : james . stoupis @ us . abb . com , arun . arora @ tdb . alstrom . com , dakrummen @ aep . com , bajarang . agrawal @ aps . com , mwtwominer @ bpa . gov , ctwedick @ bpa . gov , phsiang @ caiso . com , james . crane @ exeloncorp . com , mwagee @ duke - energy . com , alex . huang @ enron . com , lance . cunningham @ enron . com , ttayyib @ epri . com , hamid . elahi @ ps . ge . com , huneault @ ireq . ca , mpotishnak @ iso - ne . com , wong @ merl . com , rbs 2 @ pge . com , kip . morison @ powertechlabs . com , don - sevcik @ reliantenergy . com , dspelley @ srpnet . com , sti @ apk . net , marty . brett @ wheatland . com , dtbradshaw @ tva . gov , kwmorris @ tva . gov , amander @ tristategt . org , bill . muston @ txu . com , w . b . dietzman @ txu . com , pmccrory @ txu . com , philip . overholt @ ee . doe . gov , quintana @ wapa . gov , torgersn @ wapa . gov , paul . walter @ wepco . com , louis . p . matis @ xcelenergy . com cc : djray @ engr . wisc . edu subject : pserc iab - who we are one of the things i would like to accomplish over the next few weeks is for we iab members to build a better working relationship . there have been many changes to pserc over the past year , as well as many new iab members joining with their universities . i ' ve felt that i don ' t know most of the iab members and that makes it difficult for me to feel like i ' m adequately representing your needs to the pserc executive committee . i hope to meet many of you in denver and get to know you better , but i think we all need to know each other better . i have an idea that might help us and it will only take five minutes of your time . if you could take the time to fill out the following short questionnaire and email it back to me then i ' ll compile a list and distribute it to you . depending upon when you respond i might be able to hand it out in denver , but i ' ll be sure to email you a copy later if i have to . this is , of course , perfectly voluntary , so if you ' re not interested its okay . if you want to respond via a telephone call , i ' m at 607 - 762 - 8825 . email this back to me at sjdemarco @ nyseg . com and copy dennis ray at djray @ engr . wisc . edu . thank you very much , steve de marco ( iab chair ) _ _ _ _ your name : lance b . cunningham , p . e . your title : manager your department or division : research , enron north america main r & d related responsibilities of your department or division : market modeling and options pricing the stem area you ' re most interested in ( x one ) : markets ( xx ) t & d technology systems what do you hope to gain from attending the iab meeting : evaluation of pserc for potential membership would you like to add any specific agenda item to the closed iab meeting on thursday ? no are there any specific agenda items that you would like covered in the open feedback session with both the university and industrial pserc members on friday ? future research plans , applicability of research to industry ( perhaps a list of previous research projects )",0 +"Subject: re : mid - project review dates - enron hi donna ! ! please sign the enron team up for feb . 20 th . thanks ! ! ! . . . and thanks for all your help last week ! everyone at enron is enthusiastic about the project , and the students have been very gracious in their "" thank you "" notes . we ' re looking forward to the video conference thursday . my assistant , melinda mccarty , will contact you to make sure we ' re "" reciprocally "" in sinc for the broadcast . thanks ! - - christie .",0 +"Subject: fall 2001 module schedule and fall 2001 calendar schedule in your mailboxes students , faculty , and staff , i have placed a hard copy of the fall 2001 module schedule and fall 2001 calendar schedule in your mailboxes this afternoon for your review . i have also posted a copy of the fall 2001 module schedule and fall 2001 calendar schedule onto embanet . to access the fall 2001 module schedule and calendar schedule please open the jgsm area icon on the embanet desktop . next please open the announcement jgsm icon . you will find the fall 2001 module schedule and the fall 2001 calendar schedule located under the subject column . please open the documents . if you have any trouble accessing the schedule or calendar please contact david kilgore at : kilgore @ rice . edu thanks , kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: matlab at enron hello vince : i ' m the territory manager for the mathworks , we develop matlab technical software . we ' ve recently developed tools well suited for energy trading industry . enron has used our products in the past , but all of those end - users have left enron . risk management and research groups at southern energy , txu , dynegy , el paso energy , koch , calpine , reliant and others have recently started using our products in the following ways . 1 . create sophisticated option pricing models , risk analysis models , and stress analysis models . creating gui front ends for the end - users . 2 . pull in data from odbc , corba , and sas databases to evaluate . 3 . visualize the results and quantify the solution . 4 . compile these models and distribute these applications to their traders , analysists and managers with no distribution costs . who should i contact at your company to discuss enron ' s situation to see if our can help enron as it has with our other energy customers ? thank you for your time and help . = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = scott wakefield the mathworks , inc . phone : ( 508 ) 647 - 7282 fax : ( 508 ) 647 - 4275 e - mail : swakefield @ mathworks . com http : / / www . mathworks . com = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = matlab news group : news : comp . soft - sys . matlab = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = visit the new mathworks store and buy matlab , simulink and all of our products online http : / / www . mathworks . com / store /",0 +"Subject: proj . x analytics diligence paul , vince and i spent some time thinking about the diligence process for the trading analytics . there is a limited amount that can be accomplished in a two day time period . i think a reasonable start would be the following : 1 . obtain an audited history of the trading strategies which have been implemented in order to verify profitability , and p / l volatility of each . 2 . review needed working capital and risk capital requirements and compare these to projections for trading income . 3 . review current level of access to electronic markets and verify that a change of ownership would not have adverse consequences , i . e . are there guarantees of continued access using the current systems ? 4 . review feasibility of entry into proposed new markets ? it is far from clear that there will be any synergy with most commodity markets given the current limited "" electronic "" liquidity . 5 . review , at least qualitatively , the current trading strategies being used . try to develop some estimate of how fast the profitability of these strategies will disappear as other ' s implement similar trading models . what is the trade off between trade quantity and slippage . 6 . review the methodology used to generate new trading strategies which will be needed to replace the current models as they become unprofitable and outdated . 7 . try to determine if there will be any value in transfer of trading technology to enron ' s other markets , given the illiquidity of these markets as compared to the financial equity markets . if there were a sufficiently long time horizon for our analysis , we would probably want to run their system on a test set of data . let me know if you have other suggestions . - - stinson",0 +"Subject: re : tanya ' s vacation this is just to let you know that i am going to go on vacation from 7 / 26 / 00 to 8 / 8 / 00 . tanya .",0 +"Subject: re : matthew williams i ' m entirely ok with this . . . . matt sophie kingsley 11 / 10 / 2000 19 : 04 to : dale surbey / lon / ect @ ect cc : steven leppard / lon / ect @ ect , melanie doyle / lon / ect @ ect , tani nath / lon / ect @ ect , matthew d williams / lon / ect @ ect , vince j kaminski / hou / ect @ ect , lucy page / lon / ect @ ect subject : re : matthew williams let ' s agree the switch happens november lst and we will change sap to reflect specialist status and matthew will be send a letter . matt , can you just send me a note confirming you are ok with this and cc . karen tamlyn who will make the change . regards sk dale surbey 11 / 10 / 2000 18 : 21 to : steven leppard / lon / ect @ ect cc : melanie doyle / lon / ect @ ect , sophie kingsley / lon / ect @ ect , tani nath / lon / ect @ ect , matthew d williams / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : matthew williams i agree - sounds like a good idea . - dale steven leppard 11 / 10 / 2000 18 : 05 to : melanie doyle / lon / ect @ ect , sophie kingsley / lon / ect @ ect cc : tani nath / lon / ect @ ect , dale surbey / lon / ect @ ect , matthew d williams / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : matthew williams all following discussions between matt , vince kaminski , and me , matt has decided he ' d like to make a longer - term commitment to research . with this in mind we ' d like to request that matt is switched from a & a to the specialist track . vince and i feel this is clearly in the best interests of enron given matt ' s proven strengths in quant analysis . how do we proceed ? all the best , steve",0 +"Subject: re : letter thanks a lot for the letter . appreciate your help . thanks , larrissa . vince j kaminski 04 / 25 / 2000 09 : 19 am to : larrissa sharma / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : letter larrissa , please , take a look at the letter . my assistant is on vacation , she will be back tomorrow . please , check the spelling of your first name . it was inconsistent in the original letter from the lawyer . vince",0 +"Subject: organization announcement we are pleased to announce the following organization changes within enron global markets ( egm ) . larry lawyer will be joining egm effective immediately to lead our new finance activities . in this role , he will work with all commodity products , assets , and teams worldwide to lever our existing businesses with this new focus . larry has worked as treasurer and was responsible for 3 rd party financing for ebs for the last year . he has worked for enron for 4 1 / 2 years in various positions in the finance area . he will be reporting to the office of the chairman . eric gonzales will be joining the lng team and will co - head this effort with rick bergsieker . we believe there is significant opportunity in the worldwide lng markets , and eric will direct all merchant activity and focus on the atlantic regions of the world . he will also manage the lng shipping book . eric is located in the london office and also has responsibility for leading the newly formed pool markets origination group reporting to joe gold . rick bergsieker has relocated to dubai , in the uae . he is responsible for all middle east activities and projects , managing the puerto rico assets and will co - head the worldwide lng efforts . rick has over 20 years of lng experience and together , he and eric will form an outstanding leadership team as we expand enron  , s lng activities around the world . they both will report to the office of the chairman . jennifer fraser will come over and develop our market fundamentals group for all products in egm , much like ena natural gas and power fundamentals and intranet pages existing today . previously , jennifer was working in the mid market origination group . heather purcell will be joining this group developing the commercial interface for our intranet page . heather was with azurix , where she worked on the platform interface for their ebusiness initiatives . gary hickerson will be chairing our traders  , roundtable . this new group will be comprised of traders across enron ' s wholesale trading and risk management businesses . this forum will give traders the opportunity to discuss topics important to their individual markets , and to learn and explore other markets in a macro sense . also , we will be forming a cross - commodity trading group . traders who have shown extremely strong and consistent profitability will have the opportunity to join this group and to exploit cross - commodity opportunities with a bias toward structural shifts in markets . this group will not be involved in customer activity and will execute through our principal desks . gary will manage this new group , as well as continuing with his current f / x , rates , equity , and agriculture initiatives . please join us in congratulating everyone on their new positions . organization charts outlining the entire egm organization are available upon request from cathy phillips .",0 +"Subject: re : re [ 4 ] : greetings from london ( to enron ) iris , we can invite you for an interview to houston . what would be a the time for you ? vince iris . mack @ bnpparibas . com on 05 / 25 / 2000 11 : 32 : 04 am to : vince . j . kaminski @ enron . com cc : subject : re [ 4 ] : greetings from london ( to enron ) hi , thank you for your prompt response . i am interested in any contacts you may have in your rolodex . also , i would be opened to talk to enron as well . please let me know more details . kind regards , iris internet from : vince . j . kaminski @ enron . com on 25 / 05 / 2000 16 : 19 gmt to : iris mack cc : vince . j . kaminski , stinson . gibner , grant . masson , pinnamaneni . krishnarao , vasant . shanbhogue bcc : subject : re : re [ 2 ] : greetings from london ( to enron ) iris , i shall go through my rolodex and try to find some good leads for you . i left investment banking 8 years ago and this field changes very fast . alternatively , would you be interested in a company like enron or another energy company in houston ? please , let me know . vince iris . mack @ bnpparibas . com on 05 / 25 / 2000 09 : 20 : 01 am to : vince . j . kaminski @ enron . com cc : subject : re [ 2 ] : greetings from london ( to enron ) hi , how are you ? thank you kindly for your email . sorry i have not responded sooner . currently i am working in derivatives structured products and risk management at bnp paribas in london . although i currently enjoy living and working in london , i may need to return to the states - because of my mother ' s failing health . do you know of any good contacts at investment banks that i may forward my details to ? for your information , i have attached my cv . ( please see attached file : iris marie mack . doc ) . thank you in advance for your time and consideration . kind regards , iris mack 44 ( 0 ) 20 7595 8665 ( work ) 44 ( 0 ) 20 7229 9986 ( home ) ( see attached file : iris marie mack . doc ) internet from : vince . j . kaminski @ enron . com on 04 / 04 / 2000 15 : 03 gmt to : iris mack cc : vince . j . kaminski bcc : subject : re : greetings from london ( to enron ) iris , please , feel free to give me a call when you have a few minutes . i shall be glad to chat with you . vince iris . mack @ paribas . com on 03 / 30 / 2000 02 : 24 : 27 am to : vkamins @ enron . com cc : denis . autier @ paribas . com subject : greetings from london ( to enron ) dear dr . kaminski , how are you ? it was nice to meet you at the real options conference in nyc . i was intrigued by some of the comments in your conference talk . in particular , by your use of real options to hedge financial options . this is something i am interested in as well . when you have some time , could we chat about this topic in a bit more detail ? thanks for your time and consideration . hope to hear from you soon . regards , iris mack - - - - - - - - - - - - - - - - this message is confidential ; its contents do not constitute a commitment by bnp paribas group * except where provided for in a written agreement between you and bnp paribas group * . any unauthorised disclosure , use or dissemination , either whole or partial , is prohibited . if you are not the intended recipient of the message , please notify the sender immediately . * bnp paribas group is a trading name of bnp sa and paribas sa ce message est confidentiel ; son contenu ne represente en aucun cas un engagement de la part du groupe bnp paribas * sous reserve de tout accord conclu par ecrit entre vous et le groupe bnp paribas * . toute publication , utilisation ou diffusion , meme partielle , doit etre autorisee prealablement . si vous n ' etes pas destinataire de ce message , merci d ' en avertir immediatement l ' expediteur . * le groupe bnp paribas est le nom commercial utilise par bnp sa et paribas sa ( see attached file : iris marie mack . doc ) - iris marie mack . doc",0 +"Subject: swaps monitor research . we have today published information about the global exchange - traded options and futures volume . this research is contained in the attached pdf file . through our web site , swapsmonitor . com , you can obtain additional information about otc derivatives dealers , including rankings and a database of outstandings going back to 1994 . as an e - mail subscriber to our research , you will automatically receive all free research at the same time it is placed on our web site . if you wish to remove your name from the e - mailing list , please use the reply feature of your e - mail application and type the word "" remove "" in the subject line . regards , - total _ et . pdf andrei osonenko research department",0 +"Subject: re : 2001 fma european conference thanks vince . looking forward to dinner on sunday with you and stinson . john at 11 : 52 am 11 / 29 / 00 - 0600 , you wrote : > > john , > > the books have arrived and i shall fedex them tonight to your university > address ( shown at the bottom of your messages ) . > still fishing for the paper on network economy . > > vince > > p . s . shirley , the address is at the bottom . > > > > > > "" john d . martin "" on 11 / 28 / 2000 11 : 27 : 35 am > > to : vince . j . kaminski @ enron . com > cc : > subject : re : 2001 fma european conference > > > that ' s fine . i didn ' t want to change anything until i heard from you guys . > > see ya ! > > john > > at 11 : 06 am 11 / 28 / 00 - 0600 , you wrote : > > > > john , > > > > thanks . stinson will be able to join us for dinner . he is opting out of > > the paper due to his big workload but we can get his perspective on > > the last 8 years he spent at enron . > > > > vince > > > > > > > > > > > > "" john d . martin "" on 11 / 28 / 2000 09 : 44 : 17 am > > > > to : vkamins @ enron . com > > cc : > > subject : 2001 fma european conference > > > > > > here ' s the info on the european conference . just for your files . > > > > john > > > > > date : tue , 28 nov 2000 08 : 40 : 39 - 0500 > > > from : karen wright > > > subject : 2001 fma european conference > > > to : kwright @ fma . org > > > x - mailer : mozilla 4 . 5 [ en ] ( win 98 ; i ) > > > x - accept - language : en , pdf > > > > > > 2001 fma european conference > > > > > > the fifth annual european meeting of the financial management > > > association international ( fma ) will be held may 31 and june 1 , 2001 at > > > the hotel sofitel ( rive gauche ) in paris , france . fma ' s european > > > meeting brings together academicians and practitioners with interests in > > > financial decision - making . the meeting provides a forum for presenting > > > new research and discussing current issues in financial management , > > > investments , financial markets and institutions , and related topics . > > > keynote addresses and other special presentations will be held in > > > addition to research paper presentations . > > > > > > paper submissions > > > research papers . the program includes traditional research paper > > > presentations . criteria used to determine the suitability of these > > > papers for the program include the nature of the research problem , > > > implications of the proposed research , the quality of the research > > > design , and the expected contribution of the research to the > > > literature . please note that the purpose of these sessions is to > > > present new and unpublished research . > > > > > > submission fee . there is no submission fee for the fma european > > > conference . > > > > > > submissions . please follow these steps : > > > complete the presentation form that can be downloaded at > > > www . fma . org / paris . htm . carefully select the subject code on the > > > presentation form that most closely describes your research . the code > > > number you select will be used to select reviewers for your proposal . > > > > > > send six ( 6 ) copies of your completed paper , along with the completed > > > presentation form , to the fma office ( financial management association , > > > university of south florida , college of business administration , tampa > > > fl 33620 - 5500 , usa ) . > > > please note that only completed papers will be accepted for the fma > > > european conference review process . > > > > > > the paper submission deadline is friday , december 1 , 2000 . > > > > > > you will receive an electronic confirmation of your submission within > > > six weeks of its receipt by the fma office , and you will be notified of > > > the results of the reviewing process by the middle of february , 2001 . > > > > > > competitive paper awards > > > the financial management association international is pleased to > > > announce that four ( 4 ) $ 1 , 500 awards will be presented in conjunction > > > with the 2001 fma european conference . the "" young scholars "" award will > > > be presented to the best paper authored by a ph . d . student ( or > > > equivalent ) or recent ph . d . ( or equivalent ) graduate . three additional > > > $ 1 , 500 awards will be presented to the papers deemed "" best of the best "" > > > by the members of the 2001 fma european conference competitive paper > > > awards committee . please note that these awards will be made only if , in > > > the opinion of the fma awards committee , a paper warrants such a > > > decision . the decisions of the fma awards committee are final . > > > > > > accepted papers . if your proposal is accepted , the version of the paper > > > you submit will be sent to its discussant as soon as he / she is > > > identified . you are obligated to send the final version of your paper to > > > the discussant and session chair by april 27 , 2001 . you also are > > > obligated to present your paper in a professional manner at the assigned > > > fma program session . > > > > > > the collegiality of the meeting provides a very special opportunity for > > > participants to share their work and to hear about the work others are > > > doing . thus , individuals whose papers are accepted for presentation at > > > the 2001 fma european conference will be expected to either chair a > > > session or discuss a paper . > > > > > > program co - chairs > > > > > > francois degeorge > > > hec paris > > > 1 rue de la lib , ration > > > 78351 jouy en josas cedex > > > france > > > 33 - 1 - 39 - 67 - 72 - 34 ( ph ) > > > 33 - 1 - 39 - 67 - 94 - 34 ( fax ) > > > degeorge @ hec . fr > > > > > > kent womack > > > dartmouth college > > > amos tuck school > > > hanover , nh 03755 > > > 1 603 646 2806 ( ph ) > > > 1 603 646 1308 ( fax ) > > > kent . womack @ dartmouth . edu > > > > > > additional opportunities for participation > > > > > > session chairperson or discussant . if you wish to serve as the > > > chairperson of a session or paper discussant , but are not submitting a > > > paper , please complete the participation form which can be downloaded > > > from www . fma . org / paris . htm . submit the completed form to the fma office > > > by december 1 , 2000 . session organization will take place in march , > > > 2001 . > > > > > > deadline summary > > > > > > completed papers : december 1 , 2000 > > > chairperson / discussant requests : december 1 , 2000 > > > > > > > > > > > john d . martin > > carr p . collins chair in finance > > finance department > > baylor university > > po box 98004 > > waco , tx 76798 > > 254 - 710 - 4473 ( office ) > > 254 - 710 - 1092 ( fax ) > > j _ martin @ baylor . edu > > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > > > > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : firm power sale from phase i - issues vince / vasant , it has been some time since we spoke at the san antonio conference . unfortunately , as soon as i got to india i was diagnosed wih a slip disc and had to be in bed for a long time . in the mean time the team continued to work on the concept of a sale to another state out of the dabhol plant . i have developed the concept whereby we are now looking at a firm component ( over peak period ) , and an infirm power sale during the monsoon . the series of quesions and comments from my team in te attachment below should help you a bit to get a feel for the proposal . i am currently in houston and reachable at 281 - 345 - 9870 . i maybe needing a surgery for the slip disc but am currently on medication hoping that surgery won ' t be needed . i would like to wis you all a very happy x ' mas and a great new year , and will catch you in the new year in houston to discuss this wit you further . i can see that soem structuring help will be needed on this , and would like to get some help from your end . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 12 / 25 / 99 10 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli 12 / 25 / 99 10 : 06 pm to : rajesh sivaraman / enron _ development cc : vivek kejriwal / enron _ development @ enron _ development , shubh shrivastava / enron _ development @ enron _ development , anshuman subject : re : firm power sale from phase i - issues team , please find my comments in the word document attached . please go through this and run the sensitivities and get a good idea of way to structure thsi . having gone through the comments , i feel that it maybe necessary to get some help on the structuring side . i will try to get you some structuring expertise asap . in the mean time , i would like you all to focus on getting resources together and working this to the next pass . lets see where we can get with this . regards , sandeep . rajesh sivaraman 12 / 24 / 99 10 : 06 pm to : sandeep kohli / enron _ development @ enron _ development cc : vivek kejriwal / enron _ development @ enron _ development , shubh shrivastava / enron _ development @ enron _ development , anshuman subject : firm power sale from phase i - issues as discussed , please find enclosed a word document which essentially discusses most of the issues involved with a firm power sale of 50 mw from phase i , which would have to be sorted out with mseb . vivek will put the tariff formula in the next mail ) the tariff structure & the issue list obviously need further refinement , before we discuss it with mseb . looking forward to your comments on both the issue list as well as the tariff computation . regards , rajesh s",0 +"Subject: re : weatherdelta demonstration scheduling hi all , the scheduled wednesday ( nov . 8 ) presentation has to be cancelled . even though in his earlier message mike said wednesday is ok , now they will have problem sending people . i will try to reschedule the presentation to a later date . best , alex - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 11 / 07 / 2000 07 : 54 am - - - - - - - - - - - - - - - - - - - - - - - - - - - denton mike on 11 / 06 / 2000 04 : 31 : 19 pm to : alex . huang @ enron . com cc : "" scanlan , brian "" , "" rookley , cameron "" subject : re : weatherdelta demonstration scheduling alex , i ' m glad that we had a chance to talk today about a weatherdelta overview . the 8 th is not really going to work well for us , due to recent reschedulings . several members of the weatherdelta team will be in or near houston on the 14 th and 15 th of november ( i know that you said that week was tight ) , and could arrange to be in the several weeks following those dates . i have attached our standard non - disclosure agreement , which we will need to execute prior to the product demonstration . i have also attached a reprint of a recent article , describing weatherdelta ' s approach and functionality . as soon as a meeting can be scheduled , a list of attendees would be very helpful to us in preparing the appropriate materials . thank you again , michael denton caminus 212 - 515 - 3600 - caminus nda - unilat . doc - weatherdelta - wp . pdf",0 +"Subject: re : the package dear vince , thank you very much for your e - mail and for acknowledging receipt of my package . i am really excited about the opportunity to see you soon . i am available every day at the first half of february , except for february 8 after 2 pm . ( i will give a presentation at the southern methodist university ) . please let me know if it is more convenient for you to see me in houston and i will be happy to fly there . i look forward to hearing from you . sincerely , valery",0 +"Subject: re : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy financeconference feb . 22 - 23 , 2001 - the university of texas at austin fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by karen marshall / hou / ect on 01 / 18 / 2001 03 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" angela dorsey "" on 01 / 18 / 2001 02 : 53 : 59 pm to : cc : subject : re : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy financeconference feb . 22 - 23 , 2001 - the university of texas at austin karen , thanks for the extra support in getting the word out . i ' ve had a couple rsvp ' s from enron . sincerely , angela - - - - - original message - - - - - from : karen . marshall @ enron . com [ mailto : karen . marshall @ enron . com ] sent : wednesday , january 17 , 2001 7 : 59 pm to : david . haug @ enron . com ; gary . hickerson @ enron . com ; cchilde @ enron . com ; thomas . suffield @ enron . com ; ben . f . glisan @ enron . com ; ermes . melinchon @ enron . com ; hal . elrod @ enron . com ; clay . spears @ enron . com ; kelly . mahmoud @ enron . com ; ellen . fowler @ enron . com ; kevin . kuykendall @ enron . com ; fred . mitro @ enron . com ; kyle . kettler @ enron . com ; jeff . bartlett @ enron . com ; paul . j . broderick @ enron . com ; john . house @ enron . com ; george . mccormick @ enron . com ; guido . caranti @ enron . com ; ken . sissingh @ enron . com ; gwynn . gorsuch @ enron . com ; mark . gandy @ enron . com ; shawn . cumberland @ enron . com ; jennifer . martinez @ enron . com ; sean . keenan @ enron . com ; webb . jennings @ enron . com ; brian . hendon @ enron . com ; billy . braddock @ enron . com ; paul . burkhart @ enron . com ; garrett . tripp @ enron . com ; john . massey @ enron . com ; v . charles . weldon @ enron . com ; phayes @ enron . com ; ross . mesquita @ enron . com ; david . mitchell @ enron . com ; brian . kerrigan @ enron . com ; mark . gandy @ enron . com ; jennifer . martinez @ enron . com ; sean . keenan @ enron . com ; webb . jennings @ enron . com ; brian . hendon @ enron . com ; billy . braddock @ enron . com ; garrett . tripp @ enron . com ; john . massey @ enron . com ; v . charles . weldon @ enron . com ; phayes @ enron . com ; ross . mesquita @ enron . com ; david . mitchell @ enron . com ; christie . patrick @ enron . com ; michael . b . rosen @ enron . com ; cindy . derecskey @ enron . com cc : elyse . kalmans @ enron . com ; richard . causey @ enron . com ; sally . beck @ enron . com ; vince . j . kaminski @ enron . com ; jeffrey . a . shankman @ enron . com ; angela dorsey subject : urgent deadline : rsvp by jan 22 nd : invitation to 2001 energy financeconference feb . 22 - 23 , 2001 - the university of texas at austin the $ 500 registration fee is waived for any enron employee who wishes to attend this conference because of our relationship with the school . please forward this information to your managers and staff members who would benefit from participating in this important conference . ( note : vince kaminski is a panellist for the risk management session 3 . ) please note : the deadline for rsvp & hotel reservations is monday , january 22 nd don ' t miss this opportunity ! should you have any questions , please feel free to contact me at ext . 37632 . karen - - - - - - - - - - - - - - - - - - - - - - forwarded by karen marshall / hou / ect on 01 / 11 / 2001 07 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" angela dorsey "" on 01 / 10 / 2001 03 : 06 : 18 pm to : "" angela dorsey "" cc : "" ehud ronn "" , "" sheridan titman ( e - mail ) "" subject : invitation to 2001 energy finance conference - the university of texas at austin colleagues and friends of the center for energy finance education and research ( cefer ) : happy new year ! hope you all had a wonderful holiday season . on behalf of the university of texas finance department and cefer , we would like to cordially invite you to attend our : 2001 energy finance conference austin , texas february 22 - 23 , 2001 hosted by the university of texas finance department center for energy finance education and research dr . ehud i . ronn and dr . sheridan titman are currently in the process of finalizing the details of the conference agenda . we have listed the agenda outline below to assist you in your travel planning . each conference session will be composed of a panel discussion between 3 - 4 guest speakers on the designated topic . as supporters of the center for energy finance education and research , representatives of our trustee corporations ( enron , el paso , reliant , conoco , and southern ) will have the $ 500 conference fee waived . the conference package includes thursday evening ' s cocktails & dinner and hotel / ut shuttle service , as well as friday ' s conference meals , session materials and shuttle service . travel to austin and hotel reservations are each participant ' s responsibility . a limited number of hotel rooms are being tentatively held at the radisson hotel on town lake under the group name "" university of texas finance department "" for the nights of thursday , 2 / 22 / 01 and friday , 2 / 23 / 01 ( the latter evening for those who choose to stay in austin after the conference ' s conclusion ) . to guarantee room reservations , you will need to contact the radisson hotel at ( 512 ) 478 - 9611 no later than monday , january 22 nd , and make your reservations with a credit card . please let me know when you have made those arrangements so that i can make sure the radisson gives you the special room rate of $ 129 / night . please rsvp your interest in attending this conference no later than january 22 nd to angela . dorsey @ bus . utexas . edu , or ( 512 ) 232 - 7386 , as seating availability is limited . please feel free to extend this invitation to your colleagues who might be interested in attending this conference . center for energy finance education and research program of the 2001 energy finance conference february 22 - 23 , 2001 thursday , feb 22 : 3 : 00 p . m . reserved rooms at the radisson hotel available for check - in 5 : 30 p . m . bus will pick up guests at the radisson for transport to ut club * 6 : 00 p . m . cocktails , ut club 9 th floor 7 : 00 p . m . dinner , ut club 8 : 00 p . m . keynote speaker 9 : 00 p . m . bus will transport guests back to hotel friday , feb 23 : 7 : 45 a . m . bus will pick up at the radisson for transport to ut 8 : 30 a . m . session 1 - real options panelists : jim dyer , ut ( chair ) sheridan titman , ut john mccormack , stern stewart & co . 10 : 00 a . m . coffee break 10 : 15 a . m . session 2 - deregulation panelists : david eaton , ut ( chair ) david spence , ut jeff sandefer , sandefer capital partners / ut peter nance , teknecon energy risk advisors 11 : 45 a . m . catered lunch & keynote speaker 1 : 30 p . m . guest tour - eds financial trading & technology center 2 : 00 p . m . session 3 - risk management panelists : keith brown , ut ( chair ) vince kaminski , enron alexander eydeland , southern co . ehud i . ronn , ut 3 : 30 p . m . snack break 3 : 45 p . m . session 4 - globalization of the energy business panelists : laura starks , ut ( chair ) bob goldman , conoco ray hill , southern co . 5 : 15 p . m . wrap - up 5 : 30 p . m . bus picks up for transport to airport / dinner 6 : 30 p . m . working dinner for senior officers of energy finance center trustees * we have made arrangements to provide shuttle service between the radisson hotel and ut during the conference . however , if you choose to stay at an alternative hotel , then transportation to conference events will become your responsibility . * * * * * * * * * * * * * * angela dorsey assistant director center for energy finance education & research the university of texas at austin department of finance , cba 6 . 222 austin , tx 78712 angela . dorsey @ bus . utexas . edu * * * * * * * * * * * * * *",0 +"Subject: free latex go to http : / / www . winedt . com / , select downloads , and download winedt 5 to your c drive . on bottom of the same page ( download ) , click on miktex ' s home page , click on miktex 2 . 0 , and download all the highlighted zip files . you may also want to download miktex - 2 . 0 - manual . pdf . you can then unzip all the files and follow the steps outlined in miktex - 2 . 0 - manual . pdf to install winedt and miktex . however , the procedure to "" add miktex bin directory to path "" may not work . it ' s best to manually add the following to your path : c : \ texmf \ miktex \ bin ; this software is quite easy to use and very versatile . you can even include colored picture in your tex document . best , alex",0 +"Subject: request for visit and meeting these guys are looking to come in the first few weeks of august . what is your availability ? grant . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 07 / 20 / 2000 08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - carlos eduardo machado @ enron _ development 07 / 18 / 2000 06 : 28 pm to : grant masson @ ect cc : gabriel sanchez - sierra / enron _ development @ enron _ development subject : request for visit and meeting hi grant , we met briefly a couple of months ago . i work with pedro in the colombia office . we are working closely with ecopetrol ( colombia ' s state - owned oil company ) on a very important deal , and some of their highest ranking officials ( 3 of them ) will like to visit our head quarters in early august , to share some ideas on risk management tools ( very general concepts that can obviously be disclosed ) . my assumption is that vince and your - self are the perfect people to have the meeting with . several consulting firms have advice ecopetrol to get in touch with enron when referring to advance risk management techniques . do you think this is possible ? please let me know , this means a great deal for this office , but i also know you guys are extremely busy . thanks , carlos e",0 +"Subject: re : seismic data via satellite fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by bob lee / na / enron on 10 / 16 / 2000 11 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - gregory p smith @ ect 10 / 16 / 2000 10 : 06 am to : bob lee / na / enron @ enron cc : subject : re : seismic data via satellite bob , here are a few comments on this note : 1 . deal with seismic company was done by a mark peterson who is still with enron . i haven ' t caught up with him for details but it had to do with underwriting ( risk of no sales ) seismic survey . timing is important . interest may have picked up in new surveys and the survey company decided that they didn ' t need enron anymore because they no longer saw a risk of no sales . 2 . 3 - d surveys will happen where there is an abundance of e & p activity or be spurred on by successes in a given basin . while activity continues in the gulf of mexico on the shelf , the major discoveries are being found in the deep water . worldwide , the shallow water plays have been looked at and worked for years - they were accessible with the extraction technology of the time . i don ' t think that deep water sedimentation / depositional systems were completely understood to even begin to try to justify looking in deep water . concepts have evolved quite quickly . the point is that many deep water accumulations are incredibly large - billion barrel accumulations . these sizes are like those accumulations that were found decades ago when companies were drilling surface structures . the large reserves are needed to pay for the corresponding incredibly expensive costs of deepwater field development . i believe that finding and development costs ( $ / barrel ) are at least two to three times shelf f & d costs in the gulf of mexico . this differential is probably large with international projects ( and that doesn ' t take into account political risk ) . i ' ll look forward to more involvement if and when this project / concept goes forward . feel free to forward this to all participants . greg bob lee @ enron 13 / 10 / 2000 08 . 30 to : gregory p smith / hou / ect @ ect , richard reichardt / enron communications @ enron communications cc : vince j kaminski / hou / ect @ ect subject : seismic data via satellite i am preparing a summary or our thursday discussions to be used as a background piece for discussion / brainstorming with oil traders . i will circulate this for review / correction later today , or , at the latest , monday . greg , you mentioned that enron had participated in a speculative survey in the gulf of mexico that was successful . it might be useful to get more info on this . terms , return realized ( over what time frame ) , why we have not continued to do this , etc . also , from your comments , many , if not most of the 3 - d surveys are in deep water . i read recently that shell , i believe , is participating in a deep sea drilling / extraction project in the gulf . what oil price is required to make these kinds of projects viable financially ? bob lee",0 +"Subject: re : trying to find fat tails naveen , i was trying to find "" fat tails "" . i looked at ng prompt month prices ' log - returns for 5 years 9 months . on the figure below you can see the comparison of empirical cumulative probability function with normal cumulative for this time series ( standardized : mean subtracted , divided by stdev ) . the effect of fat tails is not pronounced so much . the "" fat tails "" effect was much more visible on your plot when you looked at the oct - 00 prices log - returns versus my time series of prompt month ' s prices . the shape of the distribution is different from normal , though , and fits well with the volatility switching model . tanya .",0 +"Subject: congratulations ! congratulations ! on your promotion !",0 +"Subject: fw : understanding & applying financial mathematics to energy derivatives dear all , thanks for your responses regarding availability and thoughts for the 2001 financial maths course . attached is a word version of the previous outline . i have also included some comments from previous delegates on what they would like to see this year . most points address the level we should aim for and the balance of theory and practical applications . i hope these points help you to improve on what is already our premier eprm training course . i would like to confirm the final points and any new biographical details by thursday , march 22 nd in order to allow us a strong lead time to market the event . if you have any questions , please call me on 212 925 6990 extension 225 or send me an email . as a checklist these are the points i would like to clarify : 1 . confirmed availability for venues outlined in the draft programme . london , 28 & 29 june new york , 9 & 10 july houston , 16 ' chris . harris @ innogy . com ' ; ' eronn @ mail . utexas . edu ' ; ' vince . j . kaminski @ eron . com ' ; ' vkaminski @ aol . com ' ; ' spyros . maragos @ dynegy . com ' ; ' ds 64 @ cyrus . andrew . cmu . edu ' ; ' geman @ math . umass . edu ' subject : understanding & applying financial mathematics to energy derivatives dear all , firstly , i would like to thank you for all your help on the energy & power risk management 2001 event . the line - up is exceptional and i am extremely excited about this event . as the course leaders of our annual financial mathematics training course , i would like to notify you of the dates for the event this year . we plan to hold the courses at the following venues on the following dates : houston - june 21 & 22 london - june 28 & 29 new york - july 9 & 10 i would like to confirm availability for these events and to take on board any update suggestions for the 2001 course . i do hope that these dates enable you to participate in this event and i look forward to speaking with each of you soon . best wishes , paul bristow - financial maths draft . doc",0 +"Subject: my resume hi , dr . kaminski : glad to get your reply . here is my resueme . if you wanna know more about me , please feel free to contact me . thanks . zhendong xia georgia institute of technology school of industrial and systems engineering email : dengie @ isye . gatech . edu dengie @ sina . com tel : ( h ) 404 - 8975103 ( o ) 404 - 8944318 - cv . doc",0 +"Subject: fyi = re : color copier kevin , update : one vendor has not provided enough information for me to give you an "" apples to apples "" comparison , so i have sent him an urgent e - mail message for him to provide clarification on some points . all being well , we will have the info . to you sometime on monday = if the vendor i mentioned above does not get back to me on monday , i will send you the quote i have on file from danka . thanks for your patience , iain . . . . . . . . . . . . . . . . . iain russell 01 / 19 / 2000 02 : 10 pm to : kevin g moore / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , carole rogers / epsc / hou / ect @ ect subject : re : color copier kevin , i have sent a request to our vendors to provide us with quotes on the color copier equipment available and will contact you as soon as i receive the bids . thanks , iain . . . . . . . . . . . . . . . . . kevin g moore 01 / 19 / 2000 07 : 23 am to : iain russell / epsc / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : color copier hello iain , i need your expertise again . our department is in need of a color copier . we need a color copier that can handle our daily work - load . this printer will be for the use of research and the trading floors . as you may already know we use a lot of maps , charts , graphs etc . . please inform me as soon as possible . thanks kevin moore what i need is cost .",0 +"Subject: re : from vicky windsor dear vince , i ' ve attached my resume . thank you so much for your help . i really appreciate it . best regards , vicky > from : vince . j . kaminski @ enron . com > to : vjwindsor @ hotmail . com > cc : vince . j . kaminski @ enron . com > subject : re : from vicky windsor > date : thu , 12 oct 2000 15 : 55 : 57 - 0500 > > > vicky , > > please , send me your resume . > > i shall forward it to a number of employees of enron in london > with my strongest recommendation . i shall send you the list > of names . the resume will make it easier for me to > identify good targets . > > please , make sure you will contact me if there is no reaction . > people here are very busy and , as you know , things fall through the cracks . > > vince > > > > vince > > > > > "" vicky windsor "" on 10 / 11 / 2000 04 : 49 : 56 am > > to : vkamins @ enron . com > cc : > subject : from vicky windsor > > > dear vince , > > how are you ? well i hope . > > i hope you don ' t mind me writing to you . you may remember that 5 months ago > i left risk publications and moved to a charity . having been here for only > a > few months , i have decided that this job is not for me ( i miss the buzz of > a > corporate office ) and i have decided to move back into the corporate > sector . > > because of my previous experience and knowledge of the energy sector , i am > very interested in moving into this area . i have always thought that it > would be great to work for enron because it is such a dynamic company and i > am planning to approach the london office to discuss any opportunities , > which might be available . i am particularly interested in product marketing > and research , although i am very open - minded at the moment . i wondered > whether you could recommend the right person to speak to in london . > > i know that you are incredibly busy , but any help you can give me would be > fantastic vince . > > thanks and best regards , > > > vicky windsor > > get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . > > share information about yourself , create your own public profile at > http : / / profiles . msn . com . > > > > > get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com . - cv to vince kaminski 13 oct . doc",0 +"Subject: re : class request : xl 97 chart - 574 excel 97 , charting , william smith approved vince kaminski "" ecthou - domwebl "" on 03 / 31 / 2000 09 : 38 : 08 am to : vkamins @ enron . com cc : subject : class request : xl 97 chart - 574 excel 97 , charting , william smith your approval is required for william smith to attend the following class . to grant approval , send a reply to "" lpharr @ enron . com "" ( notesmail : lerea pharr / hou / ect @ ect ) . be sure to include employee ' s name and class number in reply . excel 97 , charting session dates & times : 4 / 21 / 2000 8 : 30 : 00 am - 11 : 30 : 00 am location : eb 572 no show / participant fee : $ 110 . 00 if you have any questions , please call the technology training coordinator at 713 - 853 - 1816 .",0 +"Subject: re : associate / analyst super saturday participation please read the following message regarding the associate and analyst super saturday program . the message containing the details for each date and the link to sign - up follows at the bottom of the message . jeff and mike would appreciate 100 % participation . thank you . - - - - - - - - - - - - - - - - - - - - - - forwarded by jeffrey a shankman / hou / ect on 10 / 23 / 2000 02 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : jana giovannini 10 / 23 / 2000 11 : 54 am to : jeffrey a shankman / hou / ect @ ect , larry lawyer / enron communications @ enron communications cc : charlene jackson / corp / enron @ enron , julie braly / na / enron @ enron subject : super saturday interviewers jeff / larry , to follow up on my voicemail , the associate and analyst program is in great need of interviewers for october 28 th and november 4 th super saturdays . these weekends are the most critical at this time . to date , we are in need of an additional 38 interviewers for october 28 th and 67 for november 4 th . in order to have a successful recruiting season , we would greatly appreciate your assistance in getting more egm executives to participate in this effort . please contact me at x 39233 with any questions . thanks for your continued support . enron north america corp . from : shelly jones , recruiting manager @ enron 10 / 10 / 2000 06 : 03 pm sent by : enron announcements @ enron to : all enron employees north america cc : subject : associate / analyst super saturday participation enron managing directors , vice presidents , directors , and managers who utilize the associate / analyst pool as a follow up from a "" save the date "" email regarding your participation in the associate and analyst super saturday process , now is the time to select your dates to attend and participate . below are the dates for super saturday weekends during the upcoming recruiting season . if you are houston - based or if you know you will be in houston on business at the appropriate times please click the link below to volunteer . ( when selecting dates please avoid selecting to interview candidates who attend the schools for which you are a team member . ) associates analysts october 27 - 28 , 2000 november 3 - 4 thunderbird , ut , georgetown , rice rice , ut , baylor , a & m , ou , florida , lsu , uhcl november 10 - 11 , 2000 november , 17 - 18 , 2000 columbia , stern nyu , ucla , darden , cornell penn , uva , vanderbilt , michigan , howard , auc , vanderbilt , michigan uhmain december , 1 - 2 , 2000 december 8 - 9 , 20000 chicago , kellogg , harvard , wharton , mit wellesley , overflow and re - schedules from previous s / s friday , december 15 , 2000 carnegie mellon thank you for your support of the associate and analyst programs . shelly jones recruiting manager",0 +"Subject: message from s . leppard hello vince , steve leppard sends his apologies as he will be unable to call into the project update meeting today . steve will be at the enron direct office in oxford today and tomorrow and said he will send you the summary spreadsheet at the end of this week . regards , mary ward tel : + 44 ( 0 ) 20 778 34346 fax : + 44 ( 0 ) 20 778 39062 enroncredit . com",0 +"Subject: enron and the new economy value research lab gentlemen : enron is exploring the possibility of becoming involved in a research endeavor called the new economy value research lab . the lab is the result of a joint effort between mit ' s sloan school of management and arthur andersen ( aa ) . its purpose is to develop "" quantitative valuations of the intangible assets wall street finds increasingly important in the new economy "" ( business week , 2 / 7 / 00 ) . clearly , as enron continues to shift from a hard asset to intangible asset based organization , the question of "" how to "" accurately and appropriate measure and value our intangible assets is becoming increasingly important . last week , steve kean , vince kaminski , marie hejka , and myself met with a team from aa , the deputy dean of the sloan school , and mit ' s lead accounting / finance professor to discuss the intent of the lab , expected outcomes , and how enron may be involved . post that meeting , the decision was made to continue to explore participation in the lab . enron now needs to 1 ) define our corporate measurement and valuation process needs , and 2 ) identify value attributes important to enron and the industries in which we operate . once defined , a follow up meeting will be held with mit and next steps will be determined . your expertise and assistance could significantly impact the inputs and outcomes of these next steps . please schedule time on tuesday august 1 from 2 : 00 to 3 : 30 to attend the next meeting , during which we will begin to identify needs and define value attributes . location will be eb 49 c 4 . please notify me if you are unable to attend . lastly , to assist with preparation for this meeting , i am attaching notes from a recently published book entitled cracking the value code : how businesses are creating wealth in the new economy ( may 2000 , boulton , libert , samek - arthur andersen ) . should you like more information on the lab , previous meeting , book or other , please feel free to contact me . i look forward to meeting you . regards , amy oberg",0 +"Subject: forwarded email - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 20 / 2000 04 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin kindall 11 / 07 / 2000 03 : 12 pm to : jean eisel cc : subject : re : recruiting good afternoon . packing emails - - its just my style : ) currently , it is my understanding that we would like to interview the comp . fin . students during the same period that we interview the mba ' s . tentatively speaking , one schedule should be sufficient . i will attempt to produce an official job description shortly . kristen is out of town for the remainder of the week , so her response to any inquiries may be delayed . her contact info : kristin . gandy @ enron . com 713 345 3214 regarding the satellite program , vince is interested in the ecommerce program . we think that it would be easier to keep the program full as compared to the comp . fin . program . it was a pleasure to be back in pittsburgh and i enjoyed meeting all the students from this year ' s comp . fin . class . i look forward to seeing you in a few weeks . - kevin kindall jean eisel on 11 / 06 / 2000 03 : 34 : 05 pm to : kevin . kindall @ enron . com cc : sgould @ andrew . cmu . edu subject : re : recruiting hi kevin wow you sure do pack one e - mail . i will try to answer questions . . . after each of you . . . look in the email for answers . - - on monday , november 06 , 2000 , 2 : 39 pm - 0600 kevin . kindall @ enron . com wrote : > hello . it was a pleasure to come back to cmu , and i enjoyed > interacting with the students . vince k . has expressed interest in > interviewing the computational finance students . enron will conduct first > round interviews with the mba students in december , and would like to set > up seperate interviews for the comp . fin . students . enron would like to > interview all the pittsburgh based comp . fin students , and we need to > select a date and a time . we are excited that you want to interview the comp finance students . do you want to do it in dec . or before ? let me know what best suits you . since there are only 16 individuals in the pittsburgh area . . . we should be able to accomodate you . . . would you want one or two schedules . . ? what is the formal protocol in such matters ? > all you need to do is let me know some ideal dates . . . and you send a job description and names of the students you want to interview . we will try to be as accomodating as possible . > enron is also interested in the ecommerce students as we have > ecommerce initiatives underway . it is my understanding that kristen > gandy will be the contact for such activities . if you can send me an e - mail address for kristen , i can get this strating asap . > > regarding a houston based satellite program , vince needs a proposal > in writing . would you be so kind as to send one ? what program is vince interested in having a satellite program ? when he was here he seemed less intererted in comp finance and more interested in e - commerce . i sent a note to michael shamos and tridas discussing this . let me know which program and i will see if we can work anything out ? > thanks so much , and i look forward to seeing you again in a few > weeks . > thanks kevin for you speedy response . > > > > jean e . eisel , ph . d . associate dean , admissions , coc and alumni relations gsia carnegie mellon university pittsburgh , pa 15213 412 - 268 - 2277 412 - 268 - 4146 ( fax ) currently in the news : carnegie mellon university mba program ranked 14 th in business week ' s list of the best graduate schools of business in the united states . ",0 +"Subject: re : waco visit great . why don ' t you plan on getting here by 3 : 00 p . m . ( or sooner ) . we ' ll do a little seminar at 4 for the faculty ( perhaps outlining your thoughts on the paper we are preparing ) . we ' ll do the class 6 - 7 : 30 or so ( i ' ll get you to your hotel for i teach until 10 pm ) . then we ' ll put in time tue working on the paper . john at 03 : 22 pm 10 / 10 / 00 - 0500 , you wrote : > > john , > > per our discussion , nov 13 is fine . > > vince > > > > > > > "" john d . martin "" on 10 / 09 / 2000 05 : 27 : 30 pm > > to : vkamins @ enron . com > cc : > subject : waco visit > > > vince , > > i have penciled you in for nov 13 th for my class . does this work for you ? > this is a monday and i would suggest you come up monday afternoon , you can > give a brief talk to our department late in the afternoon , and then you can > talk to my ex mbas at 6 p . m . for an hour or so . i ' ll get you to the hotel > for the evening and we can work on the paper tuesday morning . i recommend > this mon noon through tue noon arrangement since i will be out of town the > weekend before the 13 th . if this needs reshuffling let me know . we ' ll > make it work . > > i look forward to talking with you later this week along with mark palmer . > > john > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: summer intern we can hire the person as a summer intern directly ( outside the a & a pool ) . shirley , please arrange a phone interview as in the case of other candidates osman found . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 26 / 2000 09 : 09 am - - - - - - - - - - - - - - - - - - - - - - - - - - - osman sezgen @ ees 04 / 25 / 2000 05 : 41 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : summer intern fyi . osman - - - - - - - - - - - - - - - - - - - - - - forwarded by osman sezgen / hou / ees on 04 / 25 / 2000 05 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - amyn saleh on 04 / 10 / 2000 06 : 11 : 50 pm to : "" osman sezgen "" cc : subject : re : job opportunities at enron hi osman , hope you are doing well . thank you for replying to my phone call . i have attached my resume to this email and would be extremely grateful if you could pass it around to hiring managers . thank you and i look forward to hearing from you . regards , amyn saleh - amyn saleh ' s resume . doc - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - amyn saleh ( 510 ) 644 - 9642 amyn @ uclink 4 . berkeley . edu icq : 51792087",0 +"Subject: re : congratulations thanks vince . congrats also , - it seems overdue in your case ! r vince j kaminski 11 / 01 / 2000 15 : 54 to : richard lewis / lon / ect @ ect cc : subject : congratulations richard , congratulations . well deserved . i am very happy your contribution to the company has been recognized . vince",0 +"Subject: re : exmar deal dear vince , this is the final version of the dash that was presented to jeff and joe on friday . please let me know if i can be of more help . best regards , farhad ahad vince j kaminski @ ect 05 / 16 / 2000 01 : 34 pm to : farhad ahad / corp / enron @ enron cc : john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , david gorte / hou / ect @ ect subject : exmar deal farhad , please , cc - mail to john sherriff in london the dash of the exmar transaction when it becomes official . vince",0 +"Subject: re : 2 - survey / information email 5 - 7 - 01 outlook migration team @ enron 05 / 04 / 2001 03 : 26 pm to : alex huang / corp / enron @ enron , amitava dhar / corp / enron @ enron , anita dupont / na / enron @ enron , bob lee / na / enron @ enron , chonawee supatgiat / corp / enron @ enron , elena chilkina / corp / enron @ enron , gwyn koepke / na / enron @ enron , jaesoo lew / na / enron @ enron , jason sokolov / hou / ect @ ect , jose marquez / corp / enron @ enron , kate lucas / hou / ect @ ect , kenneth parkhill / na / enron @ enron , kevin g moore / hou / ect @ ect , lance cunningham / na / enron @ enron , leann walton / na / enron @ enron , martin lin / hou / ect @ ect , maureen raymond / lon / ect @ ect , mike a roberts / hou / ect @ ect , nelson neale / na / enron @ enron , paulo issler / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , rabi de / na / enron @ enron , rakesh bharati / na / enron @ enron , sandeep kohli / enron _ development @ enron _ development , sevil yaman / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , sofya tamarchenko / na / enron @ enron , stinson gibner / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , tom barkley / na / enron @ enron , tom halliburton / corp / enron @ enron , vince j kaminski / hou / ect @ ect , william smith / corp / enron @ enron , youyi feng / na / enron @ enron , zimin lu / hou / ect @ ect , alan muntz / npng / enron @ enron , anita swanson / npng / enron @ enron , bambi heckerman / npng / enron @ enron , christopher burns / npng / enron @ enron , darla steffes / npng / enron @ enron , geneva patterson / npng / enron @ enron , jerry boston / npng / enron @ enron , jody warner / npng / enron @ enron , john freeman / npng / enron @ enron , judith weakly / npng / enron @ enron , laurie willemyns / npng / enron @ enron , leon schneider / npng / enron @ enron , loren charbonneau / npng / enron @ enron , ray neppl / npng / enron @ enron , scott coburn / npng / enron @ enron , alliece morris / ots / enron @ enron , etsweb @ enron , joe zhou / fgt / enron @ enron , ladonna dervin / ots / enron @ enron , larry hill / fgt / enron @ enron , max brown / ots / enron @ enron , patty hermanek / fgt / enron @ enron , peter lu / et & s / enron @ enron , randy cantrell / gco / enron @ enron , richard abramowicz / et & s / enron @ enron , rick craig / ots / enron @ enron , robert fugel / et & s / enron @ enron , tina dunnaway / fgt / enron @ enron , wendy koh / et & s / enron @ enron , anne bike / corp / enron @ enron , barry tycholiz / na / enron @ enron , carli smith / na / enron @ enron , doug fletcher / enron _ development @ enron _ development , jacquelyn matthews / na / enron @ enron , janelle russell / enron _ development @ enron _ development , joanne smith / corp / enron @ enron , kayla bruzzese / na / enron @ enron , michael j beyer / hou / ect @ ect , michael j miller / enron communications @ enron communications , michelle lincoln / enron _ development @ enron _ development , shelly jones / hou / ect @ ect , susan huston / hr / corp / enron @ enron , zachary sampson / na / enron @ enron , alison smith / nyc / mgusa @ mgusa , bernie penner / nyc / mgusa @ mgusa , janet vala - terry / nyc / mgusa @ mgusa , lilia penagos / nyc / mgusa @ mgusa , patricia benington / nyc / mgusa @ mgusa , jack netek / enron communications @ enron communications cc : subject : 2 - survey / information email 5 - 7 - 01 current notes user : to ensure that you experience a successful migration from notes to outlook , it is necessary to gather individual user information prior to your date of migration . please take a few minutes to completely fill out the following survey . when you finish , simply click on the ' reply ' button then hit ' send ' your survey will automatically be sent to the outlook 2000 migration mailbox . thank you . outlook 2000 migration team full name : vince j kaminski login id : vkamins extension : 3 - 3848 office location : ebl 962 what type of computer do you have ? ( desktop , laptop , both ) desktop , laptop do you have a pda ? if yes , what type do you have : ( none , ipaq , palm pilot , jornada ) palm pilot do you have permission to access anyone ' s email / calendar ? no if yes , who ? does anyone have permission to access your email / calendar ? shirley crenshaw , anita dupont if yes , who ? are you responsible for updating anyone else ' s address book ? no if yes , who ? is anyone else responsible for updating your address book ? no if yes , who ? do you have access to a shared calendar ? no if yes , which shared calendar ? do you have any distribution groups that messaging maintains for you ( for mass mailings ) ? no if yes , please list here : please list all notes databases applications that you currently use : in our efforts to plan the exact date / time of your migration , we also will need to know : what are your normal work hours ? from : 7 : 30 to : 6 : 30 will you be out of the office in the near future for vacation , leave , etc ? no if so , when ? from ( mm / dd / yy ) : to ( mm / dd / yy ) :",0 +"Subject: see page 1 best regards , jhherbert - gd . pdf",0 +"Subject: enron : wefa luncheon may 1 lloyd : vince asked me to forward this to you and invite you to the wefa presentation on may lst at 11 : 00 am and then go to lunch with the group . the presentation will be in 49 cl . please let me know if you will be able to attend . thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 24 / 2001 03 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vasant shanbhogue 04 / 11 / 2001 01 : 41 pm to : shirley crenshaw / hou / ect @ ect cc : subject : enron : wefa luncheon may 1 shirley , i would like to attend this presentation and go to the luncheon . thanks , vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 04 / 11 / 2001 01 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 11 / 2001 12 : 36 pm to : lance cunningham / na / enron @ enron , vasant shanbhogue / hou / ect @ ect , alex huang / corp / enron @ enron , sevil yaman / corp / enron @ enron cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : enron : wefa luncheon may 1 would you like to attend the presentation and join me for lunch with wefa . any other suggestions re attendance . please , let shirley know . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2001 12 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" peter mcnabb "" on 04 / 11 / 2001 11 : 52 : 47 am to : cc : "" kemm farney "" subject : enron : wefa luncheon may 1 dear vince thanks for your voicemail and delighted to have you confirm lunch on may 1 . kemm farney the head of wefa ' s electric power services will be travelling with me this time . i expect there may be other enron colleagues that may care to join us for lunch so don ' t hesitate to invite as you see fit . for reservations purposes , perhaps you arrange to let me know numbers . kemm would also be prepared to informally present our current power outlook to a larger group at 11 : 00 , if this would be of interest . as you know , these types of presentations are part of all your wefa energy retainer package . i will also plan to update you with respect to our current multi client study schedule for the remainder of the year . regards , peter peter a . mcnabb vice president energy , north america wefa inc . 2 bloor st . w . toronto , canada m 4 w 3 rl 416 - 513 - 0061 ex 227 - 2001 energy brochure . doc - wefaenergy _ factsheet for energy scenarios 2001 . doc",0 +"Subject: re : clayton vernon i have some concerns regarding vernon being able to transfer even if he is temporarily successful with deliverables defined for him . according to enron policy , an employee can only transfer if he is in satisfactory standing or better . this is to prevent problem employees being moved from one organization to the another . this sounds like a "" work ethic "" issue to me and the chances that it would continue in another department are great even if he is temporarily successful . but if kevin presto knows the situation and he still wants vernon in the end , i will push for an exception as this satisfies our obligation to be forthright . please keep me informed of clayton ' s progress as time goes on so we do not get criticized for passing on a problem employee . thanks . sheila vince j kaminski 07 / 28 / 2000 08 : 35 am to : kevin m presto / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , sheila walton / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : clayton vernon kevin , vasant and i talked to clayton about his request for transfer . clayton received a conditional approval contingent upon completion of the current project he works on . vasant will formulate exact definition of the deliverables and we will hold clayton to it . if he fails to deliver the request for transfer will be rejected . anything else would be highly demoralizing to everybody . clayton has so far produced exactly zero ( no single output was delivered ) though he was advertising the projects inside and outside the group as completed . i want you to be aware of it , because i have serious doubts regarding clayton ' s integrity . vince",0 +"Subject: re : tony hamilton tony has already done this . . . . . . . . . . desleigh langfield 04 / 04 / 2001 09 : 46 am to : kevin g moore / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : tony hamilton thanks , can you tell tony to come to hr reception on monday morning at 8 . 30 am for induction which will last until midday kevin g moore 04 / 04 / 2001 15 : 41 to : desleigh langfield / lon / ect @ ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : re : tony hamilton tony hamilton reports to mike roberts in the houston office . vince kaminski will answer these questions for you at any given time . tony ' s start date in london will be april 9 th thanks kevin moore desleigh langfield 04 / 04 / 2001 08 : 29 am to : kevin g moore / hou / ect @ ect cc : subject : tony hamilton kevin tani nath who heads up the structuring and research teams rang this morning to get more information on tony . can you tell me who he reports to in houston and whether that person will continue to manage him remotely ? what cost centre he should be charged to ? whose headcount he appears on , and for what group he will be providing services for , tani was unsure on all of the above and wants clarification . also can you confirm his start date in london thanks desleigh - - - - - - - - - - - - - - - - - - - - - - forwarded by desleigh langfield / lon / ect on 04 / 04 / 2001 14 : 27 - - - - - - - - - - - - - - - - - - - - - - - - - - - desleigh langfield 06 / 03 / 2001 13 : 40 to : steven leppard / lon / ect @ ect cc : subject : tony hamilton steve all sorted and we will check later in the week with it that all is okay . can you please tell your assistant to organise a desk for tony , no rush obviously thanks desleigh - - - - - - - - - - - - - - - - - - - - - - forwarded by desleigh langfield / lon / ect on 06 / 03 / 2001 13 : 38 - - - - - - - - - - - - - - - - - - - - - - - - - - - desleigh langfield 06 / 03 / 2001 13 : 38 to : european resolution center / lon / ect @ ect cc : kevin g moore / hou / ect @ ect , steven leppard / lon / ect @ ect , anna seymour / lon / ect @ ect subject : tony hamilton hi tony is a uk employee who starts next monday 12 th march 2001 , we have done a quick start in nest today for him . tony will be working his first month in the houston office , however we still need to set up a log on and notes account here . can you please send the log on and password for both accounts to kevin as he will be meeting with tony on monday morning in the houston office . tony will not have a desk arranged for him until he comes back in approximately a month so no actual pc is necessary until then . one question - with a uk log on and notes account , will tony be able to access these from houston ? if it ' s complicated can you please let kevin know how to do this . any problems let me know thanks desleigh",0 +"Subject: re : site license for power world richard et al under the new electricity trading arrangments ( neta ) in the uk and looking forward i think it will be increasingly important in modelling market behaviour and transmission related costs to have some form of system model incorporating opf and atc . therefore , in principle i am happy to support option 3 and to pay a 1 / 3 share of the cost . however , before i commit to this particular package , i would like to be comfortable that the generic powerworld software could be suitably customised to capture the special features of neta . i understand marco verreschi who initiated interest from our end is pursuing this with martin lin ( research , houston ) . however , due to commitments next week , and my desire to see powerworld in action etc it is likely to be the following week before he and i can say "" lets do it "" . michael wilks manager , uk power analytics enron europe ltd tel : ( 44 ) 207 783 2405 richard lewis @ ect 05 / 01 / 2001 15 : 10 to : michael wilks / eu / enron @ enron cc : subject : site license for power world can you recommend or otherwise this software and whether we should pay a third share of the cost ? r - - - - - - - - - - - - - - - - - - - - - - forwarded by richard lewis / lon / ect on 05 / 01 / 2001 15 : 12 - - - - - - - - - - - - - - - - - - - - - - - - - - - lance cunningham @ enron on 20 / 11 / 2000 20 : 02 : 22 to : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , tim belden / hou / ect @ ect , tim . heizenrader @ enron . com , kevin m presto / hou / ect @ ect , george hopley / hou / ect @ ect cc : subject : site license for power world gentleman , kevin presto concurred on the purchase of a site license as recommended by vince . what are the thoughts of others ? i am available to demo the package if others would like to see it . thanks , lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 11 / 20 / 2000 01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 11 / 10 / 2000 09 : 16 am to : vince j kaminski / hou / ect @ ect , richard lewis / lon / ect @ ect , tim belden / hou / ect @ ect , tim . heizenrader @ enron . com , kevin m presto / hou / ect @ ect , george hopley / hou / ect @ ect cc : lance cunningham / na / enron @ enron subject : site license for power world gentlemen , i recommend that we purchase this package and split the cost 3 ways between 3 power trading desks . i think that we should go for option 3 ( ~ $ 15 , 000 ) . lance cunningham in my group looked at this software package and found it very useful for modeling transmission problems . please , feel free to ask him for technical details in support of this recommendation . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 10 / 2000 09 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lance cunningham @ enron on 11 / 09 / 2000 06 : 15 : 14 pm to : vince j kaminski / hou / ect @ ect cc : vasant shanbhogue / hou / ect @ ect subject : site license for power world vince , we have three options to increase our availability across enron for the power world load flow software . option 1 , upgrade to a site license for the load flow software only . price $ 9 , 990 . 00 this would give all of enron the ability to perform load flows , but not determine marginal cost or available transfer capacity ( atc ) because only the optimal power flow ( opf ) version can perform that task . option 2 , site license for the load flow and purchase 1 opf package for walter coffer ' s group . price $ 11 , 240 . this would give all of enron the ability to perform load flows and one other group the ability to determine marginal cost and atc . option 3 , site license for load flows , opf and atc . price $ 14 , 990 . 00 this would give all of enron the ability to perform load flows , marginal cost , and atc . regards , lance",0 +"Subject: re : raptors no - - - - - original message - - - - - from : bharati , rakesh sent : thursday , march 15 , 2001 4 : 42 pm to : port , david cc : kaminski , vince subject : raptors hi david , i would like to check with you just to be on the safe side . i left our last meeting with the impression that only naveen and i would be working together on the raptors . however , i heard from naveen earlier today and he wanted to include thomas ( mark , i presume ) in the meeting as well . i would like to ensure if that is indeed your intention . please advise . thanks . rakesh",0 +"Subject: re : grades pam , another group : stuart hamel jed howard brian nelson b + vince pamela vande krol castro on 05 / 03 / 2001 08 : 58 : 24 am to : vince . j . kaminski @ enron . com cc : subject : re : grades got them - thank you ! - pvc at 05 : 21 pm 5 / 2 / 01 - 0500 , you wrote : > pam , > > another team : > > elena chilkina > robert j . guadette > joseph helms > kenneth jett > todd litton > mark westmoreland > > > grade : a - > > > vince kaminski",0 +"Subject: re : mg metals : summary of var methodology and current status dear all , anjam and myself had a highly productive and informative set of meetings with andreas barkchis of mg metals ny on thursday 20 th july in the ny office . firstly we should say "" thanks "" to andreas for being so helpful in addressing out numerous requests for information - we look forward to establishing a solid working relationship with him going forward . find below a summary of version _ 1 a for initial rough calculation of mg metal ' s var . also anjam , kirstee ( from london side ) and cantekin , grant , vince and myself ( houston side ) have been working for last 2 days on the spreadsheet var model . the current status of this effort and a plan for future progress is summarized in the enclosed document : v @ r methodology for mg metals positions version _ 1 a introduction this document describes the initial rough model for calculations value - at - risk for mg metals . this model will be implemented in a spreadsheet , which will serve as a prototype for the risktrac implementation . risk factors the following positions represent most of mg metal  , s risk and will be covered by version _ 1 a : - base metals  , positions including : - aluminium ; - copper ; - gold ; - lead ; - nickel ; - silver ; - tin ; - zinc ; risk related to these positions will be quantified by simulating forward prices for each metal . - copper concentrate ; risk related to these positions will be quantified by simulating tc charges . - cocoa beans ; risk related to these positions will be quantified by simulating forward prices for cocoa beans . therefore these 10 curves will drive the risk : price curves for aluminium , copper , gold , lead , nickel , silver , tin , zinc and cocoa beans plus tc curve for copper concentrate . assumptions and simplifications : - for each metal we are going to use a single price curve or all types of products ( physical , financial , lme traded , comex traded , scrap , alloy , stock , etc . ) ; - delta , gamma approach for risk on options  , positions ; components required to implement v @ r model : - current forward prices available from mercur ; - current implied volatilities available through reuters ; - current positions from mercur ; - history of prices required to calculate factor loadings and correlations across commodities ; methodology version _ 1 a will be based on risk matrix approach . we will calculate principal components for each metal and cocoa beans to take in account the correlations along the term structure . we will also calculate the correlations across commodities based on prompt month prices history for last 3 months . portfolio hierarchy each position will be assigned to one of the following portfolios under the whole portfolio agg - metals : - mg metal - mg metal - mg metall recycling gmbh , ffm ; under each of these sub - portfolio there will be the following sub - portfolios : - comex ; - frame contract ; - lme ; - lme alloy ; - lme metal index ; - option call ; - option put ; - physical ; - physical alloy ; - physical real ; - physical scrap ; - price part . ; - prov . billing ; - stock ; - stock alloy ; - stock comex ; - stock physical ; - stock scrap ;",0 +"Subject: replied resume i am forwarding a resume of one candidate who is very persistent and quite aggressive . please , take a look at him . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 23 / 2000 08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - eric hilton on 06 / 22 / 2000 11 : 20 : 11 pm to : vince . j . kaminski @ enron . com cc : subject : replied resume mr . kaminski , ? ? ? ? ? ? ? i sent an actual resume via the postal service . i guess you never received it . thank you for your patience . a few features i possess that suggest that i may be a representative your well established company would value are : ? seven - plus years as a manager / junior executive of logistics in a fast - paced , demanding , and constantly evolving retail industry . experience in effectively developing and implementing policies and tasks under marketing , logistics , brand management , and best practices . ba degree in marketing with a 3 . 88 gpa from the university of san moritz , london england . extensive knowledge in management with the ability to effectively manage multiple tasks , as well as multiple associates , to achieve specific goals in research and brand management within the company ' s deadline . seven - plus years effectively implementing and teaching dynamic and successful customer service . with my current employer , i am in charge of logistics research and reports / data collection , as well as responsible for developing new and successful ideas and implementing them under constantly evolving brand management and best practices . traveling to london , england and extensively finishing my degree indicates that i am willing to go the  & extra mile  8 to achieve and obtain my goals . perhaps , mr . kaminiski , ? i am an associate you need at your well - respected company . i would be very happy to meet with you , at your convenience , to discuss the possibility of putting my education and experience to work for enron . thank you for your consideration . i look forward to hearing from you . i have attached my resume to this email formatted under microsoft word . warmest regards , eric hilton ? - my resume",0 +"Subject: iafe membership shirley , please , renew my membership . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 07 / 2000 10 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - main @ iafe . org on 12 / 05 / 2000 03 : 47 : 45 pm to : cc : subject : iafe membership dear colleague : we are pleased to report that we had a very exciting and productive year with dozens of activities around the world . as we enter our 10 th year of operations , the iafe has additional membership options available to you . please take a moment to look at the attached membership form with the 2001 rate schedule . based on member requests , a premium membership is now being offered that includes the annual conference at a 30 % discount , the financial engineer of the year dinner , plus a subscription to the journal of derivatives ( jod ) . the full membership remains as in previous years . the new regular membership includes all membership benefits except jod . membership is based on the calendar year january 1 - december 31 , 2001 . membership is also available on our secured membership registration form at our website http : / / www . iafe . org / about / join . ihtml . while on our website , please take a moment to visit our calendar listing upcoming events for the new year . if you have any questions please don ' t hesitate to contact me at main @ iafe . org . regards , donna jacobus iafe office manager - 2001 membership application . pdf",0 +"Subject: re : trip to san francisco 3 / 19 - 3 / 20 / 00 bryan , i talked to vasant about the model review in london . he thought that he could accomplish this from houston , but i think direct communication makes things much easier . i think his trip to london makes a lot of sense . kmv confirmed the meeting on the 20 th . we hope to get more information about the scope of their model and assess its the applicability to your business . vasant , after a few days of immersion in your operations , will be able to assess better the usefulness of the model . vince bryan seyfried 02 / 29 / 2000 03 : 35 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : trip to san francisco 3 / 19 - 3 / 20 / 00 vince - it is highly unlikely that i can make the trip but i spoke with vasant today and he will try to get to london beforehand and will have good idea of our needs . hopefully this will not cause too many problems . bs shirley crenshaw 29 / 02 / 2000 15 : 57 to : william s bradford / hou / ect @ ect , bryan seyfried / lon / ect @ ect , vasant shanbhogue / hou / ect @ ect , robert . rudy @ kmv . com cc : subject : trip to san francisco 3 / 19 - 3 / 20 / 00 hello all : attached is a copy of vince kaminski ' s itinerary for the trip to san francisco on march 20 , 2000 . please make your plans accordingly . if you need anything else , please let me know thanks ! shirley adm . coord . 713 / 853 - 5290",0 +"Subject: black table for conference room and file cabinet hi reggie : conference room eb 19 c 2 is in need of a round black table to hold the telephone . is there one available ? also we would like a two - drawer lateral file cabinet for eb 19 c 2 . co . # 0011 , rc # 100038 . thanks and have a great day ! shirley 3 - 5290",0 +"Subject: hello from charles shen at williams co . dear vince : how are you ? i am not sure whether you still remember me , we met in a conference last year in houston . after having been working for williams for about two years , now i am ready to make a move . i have heard enron is a great company , i am wondering whether there is any opportunity for me , either in research group or in structure group here is brief description about myself : right after i got my ph . d . on finance and econometrics from duke university in 1998 , i joined williams energy trading company as a quantitative analyst . now i am lead quant and in charge of the quantitative research group with 7 highly talented people . i have done extensive research and modeling about electricity , load - following deal and tolling deals . if you need any additional information , please feel free to call me at 918 - 409 - 4308 . i look forward to hearing from you soon , thank you . sincerely , charles do you yahoo ! ? yahoo ! photos - 35 mm quality prints , now get 15 free ! http : / / photos . yahoo . com /",0 +"Subject: re : turkey the group to whom this message was sent is rac in london , related to london ' s focus on enron ' s equity interest in opet ( $ 18 million exposure ) . gwyn - - - - - - - - - - - - - - - - - - - - - - forwarded by gwyn koepke / na / enron on 04 / 19 / 2001 06 : 59 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - gwyn koepke 04 / 19 / 2001 06 : 58 pm to : suryan wirya simunovic / lon / ect @ ect cc : gkoepke @ enron . com @ ect , jolyon manning / eu / enron @ enron , padmesh thuraisingham / lon / ect @ ect , maureen raymond / lon / ect @ ect , mitra mujica / enron @ enronxgate subject : re : turkey suryan , please find attached a brief on turkey , per your request . as stated in the brief , this is a preliminary forecast and is subject to change upon further government announcements related to external financing and monetary / fx policies . gwyn koepke suryan wirya simunovic @ ect 04 / 19 / 2001 10 : 48 am to : gkoepke @ enron . com cc : jolyon manning / eu / enron @ enron , padmesh thuraisingham / lon / ect @ ect subject : turkey gwyn , paddy and i spoke to you earlier today regarding eel ' s turkish investment . you mentioned that you could send us a brief report on what has been going on in turkey in the last couple of weeks . as we are having a meeting tomorrow am could you still send us this report before business closing houston to myself , paddy and jolyon manning . thank you suryan wirya simunovic",0 +"Subject: career opportunity dear mr . kaminski , ? i will forward my resume . i am looking for a trading position . i have three years of market - making experience in illiquid markets , which i beleive is highly relevant . but it seems now that getting out of my contract is not an alternative anymore . ? i learned yesterday that my firm finally decided to grant me what i wanted . . . a new desk . sometimes i feel that when you become a trader you come to trade everything , including your career . ? ? i thank you for your time and consideration . ? pierre ? ?",0 +"Subject: resume for insurance candidate hi vince , ` this person was recommended by prof . macminn , and he is interested . he seems to have the quantitative and insurance background . i am going to call him again . would you like to talk with him on the phone ? vasant - - - - - - - - - - - - - - - - - - - - - - forwarded by vasant shanbhogue / hou / ect on 01 / 06 / 2000 08 : 42 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" spudeck , ray e . ms - res "" on 12 / 29 / 99 02 : 24 : 09 pm to : vasant shanbhogue / hou / ect @ ect cc : subject : my resume vasant , i enjoyed our telephone conversation this morning . from our conversation , it sounds like enron is moving out on the cutting edge of risk transfer and insurance finance . in my mind , there seem to be a myriad number of interesting opportunities moving forward . as well , i see a number of issues that would need to be resolved . frankly , i find that quite exciting . i left academics largely because i wanted to move into a more "" front line "" career . while i ' ve enjoyed my work here at the naic , it is still not where i ultimately see myself . i gathered from your comments some concern about my being too senior in the organization . if i am interpreting you correctly , you are concerned about hands on technical work . i enjoy that immensely and some of the strengths i bring to the table are the ability to think creatively about solving financial problems and the the ability to make data tell the underlying story . i look forward to talking to you next week . i just found out that our office building will be closed monday , so i will not be in until tuesday a . m . ray spudeck sr . research associate ( 816 ) 889 - 4417 rspudeck @ naic . org > - resumeres . doc",0 +"Subject: re : probation period - matthew williams hi karen i ' m happy for matt to be made permanent - all relevant feedback is contained in his prc . cheers , steve karen tamlyn 07 / 26 / 2000 10 : 50 am to : steven leppard / lon / ect @ ect cc : subject : probation period - matthew williams notice of end of probationary period i am writing to inform you that the six month probationary period for matthew williams is due to end on the on the 21 st august 2000 . if you are happy to pass their probationary period please reply confirming this giving any feedback you deem necessary . however , if you are unsure and wish to either extend or fail the probationary period please contact sophie kingsley immediately to discuss further . many thanks karen tamlyn hr ext . 34310",0 +"Subject: update / event time change shirley , this is the committee that i discussed with you this morning . the below email outlines the time required . thanks for your consideration . anita - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 11 / 29 / 2000 04 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - 11 / 29 / 2000 04 : 46 pm charla reese @ enron _ development charla reese @ enron _ development charla reese @ enron _ development 11 / 29 / 2000 04 : 46 pm 11 / 29 / 2000 04 : 46 pm to : daryl kitchen @ enron communications , missy stevens @ enron , misha siegel @ ect , zulie flores / corp / enron @ enron , maggie valles / enron _ development @ enron _ development , rose rivera / enron _ development @ enron _ development , donnis traylor / hou / ees @ ees , raquel guerrero @ enron communications , elsie lew @ ect , mary ellenberger / corp / enron @ enron , rebecca longoria @ enron , joy werner @ enron , david tagliarino @ ect , janie bonnard , sylvia thomas @ enron , lillian villarreal @ enron , valerie villareal / hou / ees @ ees , stephanie baker / hou / ees @ ees , dianne langeland / enron _ development , laura schwartz @ enron , deb gebhardt @ enron , heather alon @ ect , michael cuccia / corp / enron @ enron , bert frazier @ ect , susan rouse @ ees , sandy lewelling @ enron communications , sonia garcia / hou / ees @ ees , dolores escamilla @ ect , anita dupont / na / enron @ enron cc : elyse kalmans @ enron , greg grissom @ enron subject : update / event time change thanks to everyone for attending the meeting today ! event time change ! ! ! i just spoke with the office of the chairman and have learned that ken and jeff are actually available during the morning of december 19 th from 8 : 00 am until 11 : 00 am . as a result , our plans have changed just a little and i have requested whether or not they are willing to pose for polaroid pictures with employees - i ' ll let you know what i find out ! we will still have the jazz duet and informational poster displays in the lobby throughout the day and instead of dessert items , we ' ll order breakfast stuff . assignments / budget ! ! ! ! please note assignments below ; for each team , collaborate between now and our next meeting to determine what purchases need to be made - budgets will be discussed at that meeting . again , it will be on wednesday , december 6 th from 9 : 30 am until 10 : 30 am with the location tbd . kwanzaa - daryl kitchen * / liz taylor chinese new year - elsie lew * / anita dupont las posadas - zulie flores * / maggie valles / lillian villeral christmas - donnis traylor * / missy stevens / michael cuccia chanukah - laura schwartz * / heather alon ramadan - sylvia thomas * / janie bonnard / dianne langeland st . lucia - joy werner * / stephanie baker devali - sonia garcia * / sophie patel / rebecca longoria greeters / traffic control / corsages - sandy lewelling executive floor - deb gebhardt logistics - charla reese ( communication , entertainment , food , picture holders ) photographer - laura schwartz houston children ' s choir - misha siegel * indicates holiday team leader responsibilities attend planning committee meetings and work with other volunteers assigned to your holiday . research meaning of holiday and determine appropriate decorations , symbols , & food items - purchase after budget approval . create information sheet for employee hand - out . decorate between 7 : 00 am and 8 : 00 am on 12 / 19 . be creative ! ( play appropriate recorded music , dress up in related clothing , etc . ) ensure office is manned during open house ( 8 : 00 am - 11 : 00 am ) - answer any questions , pass out materials , etc . recruit additional volunteers ! additional volunteers delores escamilla val villeral raquel guerrero bert frazier david tagliarino rose riveria thank you ! charla x 35202",0 +"Subject: re : informal exploratory interview with enron research group valeria : 3 : 30 pm tomorrow the 9 th will be fine . we will have to change the schedule a little bit , but i believe it will work . kevin kindall 3 : 30 pm grant masson 4 : 00 pm tanya tamarchenko 4 : 30 pm vince kaminski 5 : 00 pm same scenario - upon arrival in the lobby go to the security desk and ask for me . i will meet you in the lobby of the 19 th floor . thanks so much for your flexibility ! shirley crenshaw valeria . i . stone @ exxon . sprint . com on 09 / 07 / 2000 08 : 56 : 24 am to : shirley . crenshaw @ enron . com cc : subject : re : informal exploratory interview with enron research group date : september 7 , 2000 from : stone , v . i . ( valeria ) vistone - americas to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail subject : re : informal exploratory interview with enron research group sure , tomorrow is fine with me . is it possible to schedule it at 3 : 30 pm ? and i am sure it is not an easy task to fit the schedule of several people to be available at the same time window . so please feel free to let me know if you will need to do another time adjustment . - - - - - original message - - - - - from : ext - shirley . crenshaw ( a ) enron . co sent : thursday , september 07 , 2000 9 : 47 am to : stone , v . i . ( valeria ) subject : re : informal exploratory interview with enron research group valeria : please do not think we are always this unorganized , but things just seem to be happening right now and it is disrupting everyone ' s schedule . would you possibly be able to come tomorrow the 8 th ? kevin kindall will not be here on the 15 th and he would definately like to interview you . then vince kaminski will be gone for two weeks after the 15 th . it seems like tomorrow might be the best time for everyone , if it is for you . we can begin the interviews at 3 : 00 pm and probably end them at 5 : 00 or 5 : 30 pm . please let me know . thanks so much for your understanding . [ stone , v . i . ( valeria ) ] : regards , shirley crenshaw valeria . i . stone @ exxon . sprint . com on 09 / 07 / 2000 07 : 46 : 13 am to : shirley . crenshaw @ enron . com cc : subject : re : informal exploratory interview with enron research group date : september 7 , 2000 from : stone , v . i . ( valeria ) vistone - americas to : ext - shirley . crenshaw ( a ) enron . co shirlecl - fpexmail subject : re : informal exploratory interview with enron research group [ stone , v . i . ( valeria ) ] 0 definitely - any of these days sound good to me . the only concern that i have , is that i have my graduate class on thursday night at 6 pm which is september the 14 th . so if you will schedule the interview on the 14 th of september , i would need to leave around 5 : 15 pm so i could attend my class . it actually might be more convenient for me to meet with the interviewers on the 15 th of september . if this day does not fit the schedule of any of the interested in interviewing individuals , i surely will be able to meet with them on the 14 th . i will be looking forward to your reply . sincerely , valeria stone - - - - - original message - - - - - from : ext - shirley . crenshaw ( a ) enron . co sent : wednesday , september 06 , 2000 4 : 32 pm to : stone , v . i . ( valeria ) subject : re : informal exploratory interview with enron research group valeria : would you be able to do the interview on the 14 th or 15 th instead of the 13 th ? vince kaminski , who would really like to interview you , has been called out of town on the 13 th . he will be back on the 14 th . also grant masson is conducting an options seminar on the 13 th and would not be able to interview you until after 5 : 00 pm . please let me know if we can just push the interview to the same time frame only on the 14 th or 15 th . thanks ! shirley crenshaw 713 - 853 - 5290",0 +"Subject: wti crude price and ny harbor resid prices vs henry hub and new york city gate gas by month michael , can you , please , provide this information . let me take a look at it before it ' s released . thanks . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2000 08 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret carson @ enron 04 / 06 / 2000 04 : 15 pm to : vince j kaminski / hou / ect @ ect cc : subject : wti crude price and ny harbor resid prices vs henry hub and new york city gate gas by month vince i am doing some advocacy for ena to refute a law suit about changes in gas prices spiking in new york in dec 1999 - jan / mar 2000 compared to dec 1998 - jan / mar 1999 . for the december 1998 through march 2000 16 month period can you please have someone in your group provide me with a set of avg monthly prices for wti oil and ny harbor resid vs henry hub and ny city gate avg monthly prices during this period ? thanks for helping us out on this . margaret",0 +"Subject: re : weather course vince , i ' ve distributed the info on the course . gary taylor , the head of marketing said that there were perhaps two people he ' d like to send , and he thought that the teachers would be able to benefit from having people from the weather derivatives desk in attendance , but that the price of $ 1100 a person was too steep . gary ( being the head of marketing that he is ) would like to see if there would be some special deal that could be arranged for people from the weather desk , but he doesn ' t want to cross the line . joe - - - - - original message - - - - - from : kaminski , vince - 86256517 - 749759 @ enron . com ] sent : monday , february 19 , 2001 7 : 17 pm to : joseph hrgovcic / hou / ect @ enron cc : kaminski , vince subject : re : weather course joe , this is the most recent offer from lacima ( weather derivatives course ) . what do you think ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 19 / 2001 07 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" julie "" on 02 / 19 / 2001 03 : 19 : 45 pm please respond to "" julie "" to : "" vincejkaminski "" cc : subject : re : weather course vince , enron is fine ( although i think we have to pay for the hyatt anyway ) . good discount ( i have a feeling that my idea of a good discount and the weather desk ' s idea is probably different ? ) : for the one day , $ 1100 per person . if you think that there will be around 10 people or more , then we can offer a day rate , regardless of the number of people . thanks vince julie ps - of course when i announced that we were cancelling , people started responding that they wished to attend . ugh ! - - - - - original message - - - - - from : vince . j . kaminski @ enron . com > to : julie > cc : vince . j . kaminski @ enron . com > sent : friday , february 16 , 2001 4 : 05 pm subject : re : weather course julie , enron location makes more sense . no reason to pay for the hotel . also , i think that one day makes more sense . i contacted the weather desk about including other people at the training course . i think that they would be interested if they got a good discount . vince "" julie "" > > on 02 / 16 / 2001 09 : 39 : 37 am please respond to "" julie "" > > to : > > cc : subject : re : weather course vince , great . just to let you know , we decided not to wait on the indecisive ones , and postponed the open course . it ' s yours , whatever you want : 1 day ( specific to what you feel will be of the most benefit ) , 2 days , hyatt or enron , or not at all . i hope this doesn ' t cause problems for you . special deal , for sure . i owe my godfather . julie - - - - - original message - - - - - from : vince . j . kaminski @ enron . com > to : julie cc : joseph . hrgovcic @ enron . com > sent : thursday , february 15 , 2001 3 : 16 pm subject : re : weather course julie , that ' s definitely an option . we can provide the room . maybe we can cut with you a special deal for enron and increase the # of people attending . i am forwarding your message to our weather desk . vince joe , what do you think about it ? vince "" julie "" > > on 02 / 15 / 2001 08 : 20 : 24 am please respond to "" julie "" > > to : "" vincejkaminski "" > > cc : subject : weather course vince , we just wanted to let you know that we only have 3 people signed up for the weather derivatives course ( all from enron ) so far . we have a couple more that have expressed strong interest , but we are awaiting their final decision . if no one else signs up , chris and les thought that you guys could probably get through the first day pretty easily , and thus thought it may be an option to teach just the 2 nd day material ( pricing ) only at enron ( doing it at the hyatt is an option as well but the room might be on the large side ) ? we would obviously reimburse you for the day not taught . we can teach both days as well , but thought you may want to save some time . i just wanted to give you some time to think about it . we will know where we stand on final numbers by next wednesday . julie",0 +"Subject: enroncredit . com - credit pricing methodology dear all , attached is a paper describing the proposed methodology for pricing the "" bankruptcy swaps "" the credit markets group is launching next week . the methodology is intentionally simplistic - the emphasis has been on providing transparent models to give prices in a quick , easy - to - understand manner , rather than create any new "" rocket science "" . could one or all of you please review the paper , and give feedback on the approach and advice on the areas still under development . this will give us peace - of - mind before the big launch . bryan - could you reread this and outline the sections that need omitting or expanding for publication on the website . many thanks , ben",0 +"Subject: re : powerisk 2001 - your invitation angelika . yes . vince angelika staude on 04 / 12 / 2001 03 : 01 : 25 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : powerisk 2001 - your invitation vince , brilliant , thanks . same sub points , same bio ? best regards , angelika staude director gas & powerisk 2001 tel : 0044 207 915 5675 fax : 0044 207 915 5101 www . icbi - uk . com / powerisk - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 11 , 2001 6 : 59 pm to : astaude @ iirltd . co . uk cc : vince . j . kaminski @ enron . com subject : re : powerisk 2001 - your invitation angelika , thanks for the invitation . yes , i shall be glad to attend and repeat the same presentation . vince angelika staude on 04 / 09 / 2001 04 : 19 : 08 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : powerisk 2001 - your invitation powerisk 2001 the global premier forumforenergy trading & risk management ? 6 th - 9 th november 2001 , paris dear mr kaminski , i am responsible for the programme of this year ' s powerisk conference in paris . helyette geman has informed me that she has contacted you concerning the workshop and that you are happy to do it with her again this year - brilliant ! i would like to know if you are also interested in delivering a paper again . the audience in previous years greatly appreciated your contribution , and i would me more than happy if you could join us again . to give you an idea of the programme so far , these are the ( "" technical "" ) topics that are already covered : chris strickland : forward curve models with jumps for the pricing of exotic energy contracts multi - factor forward curve models for the valuation of energy contracts adding jumps applying the models to exotic energy options extensions to multiple energy contracts les clewlow : valuation and risk management of virtual power stations and gas supply agreements structures of gas supply agreements ( gsa ) relationships between physical and virtual power stations ( pps / vps ) valuation methods for gsa ' s and vps ' s risk analysis of gsa ' s and vps ' s derek bunn , professor of decision sciences , london business school : analysing the impact of neta on market efficiency & volatility in the uk energy market chris harris , director of market development . operations and engineering , innogy : applying cutting - edge portfolio management theory in order to optimise your risk exposure establishing and valuing the key factors using a bottom up approach looking at the interconnection between key factors the treatment of the risk of infrequent but high impact events peter nance , principal , teknecon : combining power systems and monte carlo simulations for effective pricing dan mansfeld , head of risk control , vattenfall : assessing the benefits and risks of using derivatives as part of your risk management strategy spyros maragos : analysing new approaches to building forward curves from available market data tamara weinert , credit and contracts manager , mirant energy : successfully measuring limit setting ; risk reducing structures importance of credit in the organizational structure : reporting ; dependence ; structure of credit department brett humphreys : examining cutting - edge credit exposure mitigation tools : combining counterparty and portfolio credit var techniques helyette geman : pricing of exotic energy derivatives and structured contracts please let me know if you are interested in joining the powerisk 2001 speaker panel , and which topic you would like to cover . i think that something along the lines of last year ' s talk ( state - of - the - art volatility and correlation estimation techniques for multiple energy portfolios ) would be brilliant again , but please feel free to chose something else that has not been covered yet . i look forward to hearing from you , kind regards , angelika staude director ? powerisk 2001 tel : 0044 207 915 5675 fax : 0044 207 915 5101 ps : for your information , please find enclosed a list of confirmed speakers for powerisk 2001 . ( see attached file : confirmed speakers . doc )",0 +"Subject: re : wharton business plan competition hi vince ! please see the wharton information below , as well as jeff ' s comments . do you want to be the judge ? please let me know asap . thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 03 / 19 / 2001 01 : 53 pm - - - - - jeffrey a shankman / enron @ enronxgate 03 / 19 / 2001 11 : 18 am to : christie patrick / hou / ect @ ect cc : subject : re : wharton business plan competition i ' ll be in new york that week . ask vince . jeff - - - - - original message - - - - - from : patrick , christie sent : monday , march 19 , 2001 9 : 43 am to : shankman , jeffrey a . subject : fw : wharton business plan competition importance : high jeff , please see wharton business plan information below . do you want to be the judge ? thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 03 / 19 / 2001 09 : 40 am - - - - - "" stamer , anne "" 03 / 19 / 2001 08 : 42 am to : "" ' christie . patrick @ enron . com ' "" cc : subject : fw : wharton business plan competition hi christie : i hope this email finds you well . the wharton business plan competition is going really well . we would really like to enron participate . is someone from your company available to be a be a judge for our phase iii ? attached is some information . anne - - - - - original message - - - - - from : andrew gaffney [ mailto : gaffneya @ wharton . upenn . edu ] sent : thursday , march 08 , 2001 9 : 47 am to : christie . patrick @ enron . com cc : stamer , anne subject : wharton business plan competition dear ms . patrick , anne stamer asked me to contact you regarding enron providing a judge for phase iii of the business plan competition . phase iii judges are generally partner - level individuals at venture capital firms , managing directors from investment banks , or other senior individuals who have extensive experience assessing and working with early stage ventures . a phase iii judge will receive five business plans , with the entire judging process requiring 4 - 5 hours during the weeks of april 2 and april 9 . i am attaching a document that describes the competition and judging procedures for phase iii in more detail . we are looking to finalize the list of phase iii judges by march 23 , so if you could please forward either anne or i the name of the appropriate individual , we can contact them directly with more details . please let me know if you have further questions and we appreciate your support of the competition . sincerely , andrew gaffney - phase iii judge info 00 - 01 . doc >",0 +"Subject: riskcenter . com / flatiron group alliance announce garp risk review magazine for immediate release contact : tom groenfeld the flatiron group corp . 973 - 925 - 9748 973 - 925 - 9681 fax groenfeldt @ aol . com garp leverages riskcenter . com / flatiron group corp . alliance to produce garp risk review and daily online risk news new york , new york  ) january 17 th , 2001  ) after a competitive bidding process , the global association of risk professionals ( garp ) has chosen an alliance formed by riskcenter . com and the flatiron group corp . to produce and manage garp  , s ( www . garp . com ) new proprietary online and print magazine publishing efforts . garp is the industry association that represents risk managers in the securities industry . to serve these professionals , garp has publications , events , advocacy and 35 regional chapters worldwide . garp risk review will serve as the flagship communication piece that unites all of these elements . in the alliance , riskcenter . com will provide the daily risk management news coverage on the garp web site . the flatiron group corp . will produce and publish the hard copy magazine called garp risk review . "" we are very excited about the publication of the online risk management news and the garp risk review , "" says adam davids , ceo garp . "" both the daily news and the garp risk review will provide our members with the information they need to stay current on both a periodical and real - time basis . with information delivered in print and online , readers will be able get the information that they need in the method that works best for that information . garp represents a community of risk managers that are changing the definition of their roles and developing their profession rapidly . we are extremely pleased to advance the growth of our profession with this excellent marriage of content and medium through the combined efforts of riskcenter . com and the flatiron group . "" riskcenter . com , a financial risk management content media company , syndicates financial risk management news stories ( www . riskcenter . com ) focused on six risk categories - - credit , market , operational , ecommerce , energy and commodity  * that help financial executives make better decisions . the flatiron group corp . ( www . windowsfs . com ) publishes windows in financial services , a quarterly magazine covering the expanding use of microsoft technologies in the financial enterprise , and an accompanying newsletter for developers working in financial services . "" i think our combination of news delivered over the internet in conjunction with the garp risk review publication will play an important role in educating and informing risk professionals around the world ,  8 says joseph viviani , president and publisher , the flatiron group . "" with our garp affiliation , we will have an unparalleled understanding of what our readers need to know , and we will have access to the leading experts to impart the best thinking in the field . this will be a must - read magazine in risk management .  8 about garp the global association of risk professionals ( garp ) is an independent organization of 15 , 000 financial risk management practitioners and researchers . garp is a diverse international association of professionals from a variety of backgrounds and organizations who share a common interest in the field . garp ' s mission is to serve its members by facilitating the exchange of information , developing educational programs , and promoting standards in the area of financial risk management . garp members discuss current practices and regulation , and help bring forth potential risks in the financial markets to the attention of other members and the public . about riskcenter . com riskcenter . com is a media company that provides a daily web - based news service that delivers original stories on six financial risk management categories : market , credit , operational , ecommerce , commodity and energy . the stories explain risk measurement and management issues , as well as the use of risk information in capital allocation strategies . about the flatiron group corporation the flatiron group is a publishing company that currently produces a portfolio of products , including a magazine and a newsletter . its windows in financial services magazine focuses exclusively on the rapidly expanding use of microsoft technologies in financial services , from front office applications to back office processing . it provides real - world case studies showing how firms are implementing new solutions built on the microsoft platform . erik helland phone : 212 - 825 - 1525 riskcenter , llc fax : 212 - 825 - 1530 80 wall street mobile : 917 - 544 - 7676 suite 417 helland @ riskcenter . com new york , ny 10005 www . riskcenter . com "" a financial risk management media company "" - garp alliance pr . doc",0 +"Subject: re : my model for spikes valery , i may be in dallas in the next few weeks . i shall probably come to dallas one friday . i shall let you know well in advance . vince "" valery kholodnyi "" on 01 / 04 / 2001 08 : 29 : 37 am to : vince . j . kaminski @ enron . com cc : subject : re : my model for spikes dear dr . kaminski , i would like to apologize for the delay responding , i was on vocation . thank you very much for your interest in my work and for your suggestion to meet for lunch / dinner . i will be truly happy to do so . in this regard could you please let me know what day might be convenient for you . since i am going to fly from dallas , i would like , if possible , to plan it in advance . i look forward to hearing from you and to seeing you soon . sincerely , valery kholodnyi",0 +"Subject: papers vince , did you receive this paper ? jason - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 05 / 01 / 2001 03 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" stuart russell hamel "" on 04 / 30 / 2001 04 : 52 : 12 pm please respond to to : cc : subject : dr . kaminski : please see our attached paper . thank you , jed howard , brian nelson , and stuart hamel ( 713 ) 218 - 8903 - winmail . dat",0 +"Subject: fw : aram g . sogomonian norma , this is the resume of aram sogomonian i mentioned to you . i would like to bring him over to talk to kevin presto , george hopley alex huan , seville yaman , tom haliburton , myself . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000 11 : 02 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" sogomonian , aram "" on 10 / 11 / 2000 12 : 03 : 16 pm to : "" ' vkamins @ enron . com ' "" cc : subject : fw : aram g . sogomonian - aram g 2 . doc",0 +"Subject: re : stanford mba - interview hi vince , unfortunately , i have not heard from him . he also forwarded his resume to mauricio mora , who asked if we could interview him . when i asked celeste about it back then she decided against it . if you need some help tracking him down , let me know . thanks , althea vince j kaminski @ ect 04 / 16 / 2001 01 : 53 pm to : althea gordon / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : stanford mba - interview althea , i was trying to get in touch with this guy . did he contact you by any chance ? he missed the interviews on the campus . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" seade , juan j . "" on 03 / 19 / 2001 01 : 15 : 56 am to : "" ' vkamins @ enron . com ' "" cc : subject : stanford mba - interview dear vincent , as i told you on the phone on friday , i am very interested in a summer internship at enron . i would like to point out that i want to pursue a career in trading , and i am especially interested in derivatives . given that enron is a pioneer in the market making of energy , broadband and weather derivatives , i find it a company i would be most interested in working for . i believe that you will find my background of interest to your firm , and i hope to be interviewed by yourself and other colleagues of yours . i have final exams from march 19 - 22 , but would be most willing to travel to houston for interviews any time from friday march 23 rd onwards . i hope to hear from you soon . best regards , juan seade mba class of 2002 stanford business school 796 escondido road apt . 29 c stanford , ca 94305 tel : ( 650 ) 497 - 3705 email : jseade @ stanford . edu > - resume juan seade . doc",0 +"Subject: 2001 budget for research sir , i just got word that your bottom line needs to be 2 , 200 k . this is net of corp charges and intercompany billings . in order to get to this number , we have to reduce your budget by 83 k . do you have any suggestions in which category ( ies ) we need to reduce ? budget 10 , 521 , 000 i / c billings 8 , 238 , 000 subtotal 2 , 283 , 000 per delainey 2 , 200 , 000 need to dec by 83 , 000 here are my suggestions based on oct expenses : category oct expense budget decrease yearly amount periodical / subscription 5 , 200 10 , 000 3 , 000 36 , 000 tuition and reimbursement 11 , 000 21 , 000 4 , 000 48 , 000 this will bring you to the bottom line suggested by delainey . please let me know your decision by november 21 . if you have any questions , call me at 5 - 7094 . thanx .",0 +"Subject: re : argentina power & gas market modelling okay julian poole 17 / 03 / 2000 10 : 35 am to : michael guerriero / enron _ development @ enron _ development cc : vince j kaminski @ ect , grant masson @ ect , jeff kabel / enron _ development @ enron _ development , rodolfo freyre / enron _ development @ enron _ development , diego hollweck / enron _ development @ enron _ development , bernardo andrews / enron _ development @ enron _ development , mario aguilar benitez / enron _ development @ enron _ development , santiago subject : re : argentina power & gas market modelling all , let ' s arrange a conference call next week to discuss the process . how does tuesday afternoon fit everyone ' s schedule ? julian enron international from : michael guerriero 03 / 17 / 2000 03 : 49 pm to : vince j kaminski @ ect , grant masson @ ect , jeff kabel / enron _ development @ enron _ development , julian poole / enron _ development @ enron _ development , rodolfo freyre / enron _ development @ enron _ development , diego hollweck / enron _ development @ enron _ development , bernardo andrews / enron _ development @ enron _ development , mario aguilar benitez / enron _ development @ enron _ development , santiago cc : subject : argentina power & gas market modelling i would like to initiate a team to address the continued improvement of the argentine power & gas market models . i spoke with vince this morning and we reviewed that history of work to date and what we will need to do from here . a summary is as follows : team : ba members : julian poole lead mario benitez associate ba associates : diego hollweck associate bernardo andrews associate santiago porta associate houston members : to be named . time schedule : as soon as possible . completed before june 1 , 2000 winter in argentina . scope of work : power model : advance the current model from basic load forecasting to incorporate weather , hydrology , improved short term and long term forecasting . natural gas model : build a supply and demand load forecasting model incorporating weather , thermal demand , pipeline flow rates , well head supply , improved short term and long term forecasting . phase i - data request power historic weather : temperature - daily , hourly , min , max , average humidity precipitation cloud cover regionally forward weather : temperature - daily , hourly , min , max , average humidity precipitation cloud cover regionally historic hydrology : reservoir levels reservoir capacity current hydrology : reservoir levels remote monitoring : aireal , pressure device , laser snow pack : density volume and mass power supply : current and future capacity transmission capacity : current and future capacity natural gas data list to be developed phase ii - power model development phase iii - natural gas model development we will take advantage of the fact that the associates are in houston for the next two weeks . vince is out next week but we can start with a process discussion with grant masson next week . julian please get a meeting scheduled as soon as possible . we should immediately start collecting data . thanks mfg",0 +"Subject: tim hiezenrader stinson gibner wanted me to pass along the name of the individual who worked with me on the west desk : tim heizenrader 503 - 464 - 7462 i believe he is now in charge of fundamentals and research ( no relation to vince ' s research ) for tim beldin , vp , westdesk . michael schilmoeller",0 +"Subject: approval for reviewer gibner , peyton s has suggested reviewers and submitted them for your approval . you may review / modify this list of reviewers by logging on to pep at http : / / pep . corp . enron . com and going to supervisor services . please remember , no feedback can be completed on gibner , peyton s until you have approved the list .",0 +"Subject: timesheets hello everyone : well it is almost that time again ! i am going to try something different . i am forwarding you the time sheet by email . save the document to whatever drive you want to and then fill out any off duty time or overtime that you had and return to me by email . i will need this by the 15 and 30 ( or 31 st ) of each month . this may work better than hand delivering . let me know what you think .",0 +"Subject: fwd : summer internship - - ph . d . in chicago celeste , i am a very good customer of your group . this is another student ( this time from chicago ) i would be glad to take into the group as an intern . the resume is attached at the bottom of this message . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 17 / 2001 03 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - li xiao on 01 / 13 / 2001 01 : 41 : 29 pm to : vkamins @ ect . enron . com cc : subject : fwd : summer internship - - ph . d . in chicago hi , vince , this is li , writing from u . of chicago . i am in the second quarter here . the study and social life is extremely busy at the school . but i enjoy connecting the knowledge i learn everyday here with the experience i had with enron . a schoolmate of mine , a chicago ph . d . candidate in finance , is looking for an internship for the coming summer . i recommend him to write to you to see if you are interested in or if there is a need . if so , you can contact with him directly . he is a really bright guy . if not , hope you don ' t mind that i sell enron at school so hard . again , thanks for all the help you gave me . have a good new year . li p . s . : cover letter below and resume attached . li xiao university of chicago graduate school of business , class of 2002 ( 773 ) 955 - 0710 dear dr . vince kaminski , i am a ph . d . student in finance at the university of chicago gsb who = hopes to find a summer internship at enron of 2001 ( between june and = september ) . i heard your group from my friend li , who worked at enron = for 3 year . she spoke highly of you . if it ' s okay , i am primarily = interested in risk management . at the university of chicago , i will have completed all the ph . d . = courses in the area of finance by the end of the first year . as normally = it takes two years to finish the required finance courses , i decided to = take all the finance courses in the first year . in the fall quarter , i = already took empirical asset pricing and theoretical asset pricing and = did very well . in the winter quarter , i will be taking corporate = finance , continuous time finance and behavioral finance . i am exposed to = all fields of finance . prior to coming to chicago , i received a master ' s = degree in economics at washington university in saint louis where i = acquired skills in economic analysis . i also have a strong background in = statistics and mathematics . this makes me believe that i have acquired = the ability to do financial research . prior to coming to the united state , i was an outstanding graduate from = beijing university , china . i was the founder and president of beijng = univeristy society of oceanology . i also organized a research jouney in = the round - the - bo - sea economic region . these experience helped to hone my = communication and interpersonal skills . as illustrated above , my skills and expertise are ideally suited for = financial research . my resume is enclosed . in the event that you think = an interview is in need , my time is very flexible . your assistance is = appreciated . sincerely yours , jason chen ( huafeng ) 6022 s . drexel ave , apt 612 chicago , il 60637 ( 773 ) 955 - 0348 - resume . doc",0 +"Subject: zimin ' s father vince and stinson , i have to go back to china to attend my father ' s funeral on saterday jan . 20 . my father passed away last sunday . my schedule is : leave houston : jan 18 ( thursday ) arrive houston : jan 27 ( saterday ) i will take care of a few things before i go 1 ) review for paulo and bob 2 ) talk to alex on the compound option on a power plant 3 ) talk to bob on volatility and correlation skews , to finish up this project for john arnold 4 ) telephone interview for japan office . zimin",0 +"Subject: introduction mark , mike , i have scheduled a video conference with this gentleman on thursday this week at 3 : 30 p . m . can you join me for this conversation ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 20 / 2000 04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - on 06 / 20 / 2000 03 : 12 : 53 pm to : "" vince j kaminski "" cc : richard . larsen @ effem . com subject : introduction vince : as way of introduction , i wanted to write a bit about mars inc . and then about cds , the unit i head . mars is a private company , considered to be the largest privately owned manufacturing company in the world . mars is not in the habit of disclosing its finances , so the best i could do is refer to forbes ' estimate of $ 15 billion annual revenue and to the profit margins of similar companies between 5 - 12 % . mars is in the business of manufacturing confectionery ( m & m , dove bar , skittles , twix , - all ( r ) ) food ( uncle ben rice ( r ) ) pet food ( pedigree , whiskas waltham ( r ) ) and other products . mars has prospered during the years because of a unique philosophy that emphasizes the long term goals of the company . part of the philosophy is to look for win - win solutions with its suppliers , customers and partners . as can be understood from the nature of the company , a large chunk of its expenses goes towards purchasing commodity like products , and hence the history of researching those commodities and the weather that influences their supply and the demand ( people eat less ice cream in the winter and less chocolate in the summer ) . cds has a history of few decades in forecasting weather and has been very successful , with an envious track record , in helping mars get a competitive advantage in these arenas . cds is a global group ( in 4 countries across two continents ) which supports the purchasing function and the corporate at large in these and other arenas . it is a multidiscipline and multinational team with a lot to offer . not having a ready access to the energy markets , and with a risk profile based on manufacturing expertise , mars has decided to look for potential partners in this area . enron presence in the market place certainly makes it an interesting party to talk to . in talking to enron , we are careful to suggest that mars is not committing to anything at this point , and all we are after is to find out if there is an interest to pursue the opportunity we discussed in the future . i am looking forward to our video conference call . kind regards , avi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - avi i . hauser phd mba cds director 100 international drive mt olive nj 07828 - 1383 + 1 973 691 3664 ( office ) + 1 973 347 8189 ( fax ) + 1 973 727 3622 ( car + slow paging ) hauser @ cdsusa . com",0 +"Subject: non - firm power curve building hi vince , amitava and i have received a request to build a non - firm power curve for each region from david hoog ' s double trigger folks . the objective , as they explain it , is to allow the desk to buy non - firm from the market , buy david ' s outage product , and sell firm to the market . accountants would like a curve to mark the non - firm position . my initial thought is that the desk should provide this non - firm curve , but it seems that this market is very illiquid and they are reluctant so they have put the ball in david hoog ' s court to build the curve if david wants to sell his product internally to the desk . assuming we build the curve , the next issue is how to define "" non - firm "" ? the only way i can think of is to tie the non - firmness to a specific generation unit or group of units . this will allow the purchase of david ' s outage product to cover the non - firmness risk . tying the definition of non - firmness to a whole region seems implausible - - - what does it mean to give a marketer the option to not deliver power if there is any problem anywhere in the region ? consequently , the non - firm curve takes on a unit - level interpretation , and not a region - level interpretation . consequently , i do not see how we can talk about the "" non - firm curve for the region "" ? we will need to build a non - firm curve for each generation unit or group of units . maybe i could get your thoughts later today . thanks , vasant",0 +"Subject: gas model sorry so much time has passed since we last discussed your north american gas model . i am however still interested in setting up a test process to familiarize some of our key people with the model and the database , etc . i am now reviewing the licensing agreement that you submitted in december and will be back in touch soon . i need to discuss this further with the business segments , but i suspect that our interest will be focused more on the long term gas model . another member of your firm had called last week , but i somehow misplaced his name and number . i thought that an e - mail response would suffice for now . my apologies . regards , john goodpasture",0 +"Subject: re : ut conference trustees ' meeting vince , there was a trustees ' meeting ( during dinner ) which i attended . here are a few things that were discussed there : 1 . april 4 th is the date when different companies representatives will come on ut campus to tell mba students about their companies and job opportunities . the companies will have to pay a small fee ( about $ 200 ) to be able to participate . 2 . trustees ' continued support for in - class presentations , finance challenge program and practicums . i understand that ut wants you to give some classes in the autumn semester for mba students . 3 . some companies ( like reliant ) select some well defined projects and give them to ut students to work on for a few months . students work in teams and discuss their progress with ihud ron and then report results to the company . regards , tanya .",0 +"Subject: re : creditmanager net meeting aidan , yes , this will work for us . vince "" aidan mc nulty "" on 12 / 16 / 99 08 : 36 : 14 am to : vince j kaminski / hou / ect @ ect cc : subject : creditmanager net meeting vincent , i cannot rearrange my schedule for tomorrow so i would like to confirm that we will have a net - meeting of creditmanager on friday 7 th of january at 9 . 30 your time . regards aidan mc nulty 212 981 7422",0 +"Subject: var , reporting and resources meeting the below meeting is going to take place today in eb 32 c 2 . thanks , rain - - - - - - - - - - - - - - - - - - - - - - forwarded by rita hennessy / na / enron on 08 / 08 / 2000 09 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - barbara lewis @ ect 06 / 19 / 2000 10 : 25 am to : sally beck / hou / ect @ ect , vladimir gorny / hou / ect @ ect , grant masson / hou / ect @ ect , michael e moscoso / hou / ect @ ect , ted murphy / hou / ect @ ect , beth perlman / hou / ect @ ect , stephen stock / hou / ect @ ect cc : patti thompson / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , maria sandoval / hou / ect @ ect , rita hennessy / na / enron @ enron , cherylene r westbrook / hou / ect @ ect , giselle james / corp / enron @ enron subject : reoccurring meeting the meeting to discuss "" var , reporting and resources ii "" will take place every tuesday at 3 : 00 p . m . beginning june 27 , 2000 . please adjust your schedule to reflect this weekly reoccurring meeting . many thanks , barbara lewis",0 +"Subject: re : corporate card yes tony , mike authorized you for a corp . card , however that ' s something your asst . can do in london for you . if you need further asst . please inform . . . . . . . kevin moore tony hamilton @ enron 04 / 30 / 2001 07 : 28 am to : mike . a . roberts @ enron . com , tani . nath @ enron . com , kevin . g . moore @ enron . com cc : subject : corporate card is it possible for me to get a corporate card , and if so , who do i need to contact regarding this ? thanks tony",0 +"Subject: launch issue / the risk desk dear trading and risk exec : i ' ve attached the premier issue of our newest publication covering the traded energy markets - - the risk desk - - sister publication to our leading weekly , the desk . the attached issue ( a pdf file ) is of course free and has zero obligation . the publication was created in response from readers like you , who requested a less dense , more upbeat and generally more readable publication dedicated to original news , analysis , and commentary on price , credit , operational and market risk management in the evolving energy trading space . and , because you ' re either a current or recent subscriber to one of our other publications , we ' re offering you a very special charter rate to our new publication - - that is if you contact us before may 27 th . contact us in the next 30 days and subscribe to a full year of the risk desk for only $ 199 ! ! after may 27 , we will of course ratchet up the price , good capitalists that we are . but for now , enjoy your free , no - obligation issue to the risk desk . we look forward to hearing from you , soon . regards , john sodergreen john sodergreen editor - in - chief scudder publishing group , llc ph : 410 / 923 - 0688 fax : 410 / 923 - 0667 johns @ scudderpublishing . com the desk , the risk desk , power executive the bandwidth desk , energy ebusiness - april 27 . 01 risk . pdf",0 +"Subject: re : var priorities vince thanks for the quick response . agree on # 5 just bear in mind it says scope not implement so it is more of a development of a project . re ; mg i will keep tanya apprised of travel plans and give her the option to be in or out as you two see fit . ted vince j kaminski 07 / 11 / 2000 03 : 57 pm to : ted murphy / hou / ect @ ect cc : tanya tamarchenko / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : var priorities ted , item # 5 will require help from it . my understanding is that currently we are receiving the positions aggregated to a daily level . also , i talked to tanya about visiting mg in new york . she is leaving for vacation on the 26 th of july and can go for a day to nyc prior to this date . i think that it makes a lot of sense for her to visit mg and to kick the tires . i asked her to coordinate the trip with you : it makes sense for both of you to go together . i may join you depending on my availability . vince from : ted murphy 07 / 11 / 2000 03 : 20 pm to : vince j kaminski / hou / ect @ ect , john sherriff / lon / ect @ ect cc : subject : var priorities vince / john , below is a brief summary of near - term projects for the enhancement of var and the use of var . as you can tell some are not directly research issues ( some require the guidance but not direct work product ) , and are very north american wholesale - centric . vince , i think that the only one in which progress requires your input to get kick started is # 5 . all others are in progress with tanya / grant involved through jeff shankman ' s regular meeting . we would like to get your input as to your priorities ( we were thinking top 5 ? ) and then start knocking some of them out . it is not meant to be exhaustive and is focused on fixes as opposed to overhauls . thanks ted - - - - - - - - - - - - - - - - - - - - - - forwarded by ted murphy / hou / ect on 07 / 11 / 2000 03 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : ted murphy 06 / 28 / 2000 07 : 45 am to : rick buy cc : subject : var priorities rick , this is my initial attempt to summarize our meeting with john . the next steps would be to solicit feedback from other interested parties and scope the resources and responsibilities . ted rick buy , john lavorato and i met to discuss priorities as it relates to the calculation of var . we are making the following recommendations 1 ) inclusion of monthly index positions into var calculations as the indicies set in north american natural gas 2 ) development of a methodology to re - run correlations ( factor loadings ) including criteria , responsibilities and acceptance / rejection criteria 3 ) development of process by which to analyze the output of factor loading process . database to store output and management reports . 4 ) finalize debate on the calculation of forward / forward volatility 5 ) scope a project to analyze the possibility of calculating hourly volatility for power . it was further recommended that we continue to not include unpriced index positions in var calculation .",0 +"Subject: requests for help krishna , i have received two additional requests for help from ees . 1 . jeremy blachman called and asked us to increase very significantly the level of our support of ees . it probably makes sense to set up a meeting with jeremy asap and discuss specifics ( you , me , and it probably makes sense to invite marty sunde as well ) . 2 . george posey called and asked fro help with statistical sampling of dublin customers . please , give him a call to set up a meeting . i shall call you tomorrow to discuss both requests . vince",0 +"Subject: joe h . vince , mark tawney called and said that he needs to make a salary adjustment for joe hrgovcic . it appears that he has an outside offer . i told him that we would support this , within reason , and that you would be the person to ultimately o . k . this request on the research side . he is also interested in moving joe out of research and formally onto the weather desk . again , i told him that it would have to be discussed with you on your return next week . stinson",0 +"Subject: alp presentation this will be in eb 49 cl - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 10 / 2001 08 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 10 / 2001 08 : 13 am to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: grades pam , another team : elena chilkina robert j . guadette joseph helms kenneth jett todd litton mark westmoreland grade : a - vince kaminski",0 +"Subject: p + option valuation model mark , after recently reviewing the booking of the p + options , it is my understanding that these options are being valued using a standard spread option model where the price evolution of the two legs of the spread are assumed to be correlated geometric brownian motion processes ( i . e . the price process assumptions are consistent with standard black - 76 model assumptions extended to two commodities ) . the payoff for a call option is : payoff = max ( 0 , a - b - k ) . where : a = nxwti ( delivery price for nymex ) b = posting price = ( wti swap ) - ( posting basis ) k = posting bonus ( fixed ) . the only complication of this option as compared to most other spread options is that leg "" b "" of the spread is a combination of three prices , the two futures prices which make up the wti swap for the given month , and the average posting basis during the delivery month . combination of these prices is easily addressed by simply setting the volatility of leg "" b "" and the correlation to correctly account for the volatility of this basket of prices and its correlation with the nxwti price . i believe that this approach is more straightforward than the alternative , which would be to use a three or four - commodity model with its associated volatility and correlation matrices . in summary , i believe that this is an appropriate model for valuation of these types of options , assuming that the inputs are set correctly . regards , stinson gibner v . p . research",0 +"Subject: re : hello from vince kaminski at enron vince the audience consist of mostly first year graduate students in industrial engineering and operations research some doctoral students and faculty . a short introduction about opportunities for quantitative minded people at enron would be good . it would also be good if in your talk you can give some technical examples for people with a good analytic background but no much of a financial engineering background . many of the first year graduate students go for a masters degree and wonder what they can do with an or masters degree . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : cc : sent : monday , september 18 , 2000 2 : 20 pm subject : re : hello from vince kaminski at enron > > shmuel , > > thanks for the invitation to speak on october 23 rd . > > would you like me to split my presentation and devote > some time to the enron analyst / associate program ? > > i plan to make presentation on energy derivatives markets > ( development of the markets in the us and europe , valuation > challenges , enron ' s role in developing the forward markets for natural gas > and electricity ) . > i shall send you the bullet points in a few days . > > vince > > > > > > > > "" shmuel oren "" on 09 / 18 / 2000 09 : 51 : 29 pm > > to : > cc : > subject : re : hello from vince kaminski at enron > > > vince > please send me a title for the talk with your job title etc . and an > abstract > for your talk . you will have about an hour . > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > shmuel s . oren , professor > dept . of industrial engineering > and operations research > 4117 etcheverry hall > university of california > berkeley , ca 94720 - 1777 > e - mail : oren @ ieor . berkeley . edu > phone : ( 510 ) 642 - 1836 or 5484 > fax : ( 510 ) 642 - 1403 > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > - - - - - original message - - - - - > from : > to : > cc : > sent : friday , september 15 , 2000 6 : 04 pm > subject : re : hello from vince kaminski at enron > > > > > > shmuel , > > > > sorry for not getting back to you earlier . > > if the 23 rd of october is still open , i can make the presentation on this > > day . > > > > vince > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 30 / 2000 08 : 18 : 15 am > > > > to : > > cc : > > subject : re : hello from vince kaminski at enron > > > > > > originally you mentioned october 23 so i reserved that week which is > still > > open . > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > shmuel s . oren , professor > > dept . of industrial engineering > > and operations research > > 4117 etcheverry hall > > university of california > > berkeley , ca 94720 - 1777 > > e - mail : oren @ ieor . berkeley . edu > > phone : ( 510 ) 642 - 1836 or 5484 > > fax : ( 510 ) 642 - 1403 > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > - - - - - original message - - - - - > > from : > > to : > > cc : ; ; > > > > sent : wednesday , august 30 , 2000 9 : 03 am > > subject : re : hello from vince kaminski at enron > > > > > > > > > > shmuel , > > > > > > let ' s see if we can either rearrange the seminar speakers > > > or change the date of our visit to the campus . ashley baxter , our > > > coordinator is very efficient and > > > got a faculty room for a presentation on monday morning on the 16 th . > > > > > > vince > > > > > > > > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 29 / 2000 05 : 37 : 33 pm > > > > > > to : > > > cc : > > > subject : re : hello from vince kaminski at enron > > > > > > > > > dear vince . i spoke too soon . apparently the seminar slot on the 16 was > > > already filled . i will see if i can switch the speaker for that week to > > the > > > following week . in any case we are on for dinner on the 16 . > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > shmuel s . oren , professor > > > dept . of industrial engineering > > > and operations research > > > 4117 etcheverry hall > > > university of california > > > berkeley , ca 94720 - 1777 > > > e - mail : oren @ ieor . berkeley . edu > > > phone : ( 510 ) 642 - 1836 or 5484 > > > fax : ( 510 ) 642 - 1403 > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > > - - - - - original message - - - - - > > > from : > > > to : > > > cc : ; > > > sent : tuesday , august 29 , 2000 5 : 01 pm > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > > > shmuel , > > > > > > > > the date of our trip to berkeley has been set . it will be october > 16 th > > > and > > > > 17 th > > > > ( monday and tuesday ) . > > > > > > > > i shall be glad to make a presentation on energy derivatives markets > > > > ( development of the markets in the us and europe , valuation > > difficulties , > > > > enron ' s role > > > > in developing the forward markets for natural gas and electricity ) . > > > > > > > > please , let me know if this topic would be of interest to you . if > this > > is > > > > the > > > > case , i shall follow with a title and an abstract . > > > > > > > > by the way , are you free for dinner on monday ? > > > > > > > > vince > > > > > > > > > > > > > > > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 24 / 2000 08 : 59 : 38 am > > > > > > > > to : "" vince j kaminski "" > > > > cc : > > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send > me > > a > > > > title and abstract . > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > shmuel s . oren , professor > > > > dept . of industrial engineering > > > > and operations research > > > > 4117 etcheverry hall > > > > university of california > > > > berkeley , ca 94720 - 1777 > > > > e - mail : oren @ ieor . berkeley . edu > > > > phone : ( 510 ) 642 - 1836 or 5484 > > > > fax : ( 510 ) 642 - 1403 > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > > > > - - - - - original message - - - - - > > > > from : "" vince j kaminski "" > > > > to : "" shmuel oren "" > > > > cc : "" vince j kaminski "" ; "" ashley baxter "" > > > > > > > > sent : thursday , august 24 , 2000 9 : 58 am > > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > > > > > > > > > > > > shmuel , > > > > > > > > > > thanks for the message . i am working with our recruiter , ashley > > baxter , > > > > > to finalize the date of the trip . i shall shoot for october the > 23 rd > > > > > if this date works for the rest of our team . > > > > > > > > > > vince > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am > > > > > > > > > > to : vince j kaminski / hou / ect @ ect > > > > > cc : > > > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > > > > > > > > > dear vince . > > > > > i sent you a reply earlier this month but i haven ' t heard from you > > > about > > > > the > > > > > date of your visit . our department has a seminar every monday . if > you > > > can > > > > > schedule your visit on a monday i would like to invite you to give > a > > > > seminar > > > > > which will be attended by many of our graduate students and faculty > > and > > > > will > > > > > give you an opportunity to tell them about your program . with > > > sufficient > > > > > lead - time i can advertise the seminar in the hass school to their > > > > financial > > > > > engineering students . > > > > > shmuel . > > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > shmuel s . oren , professor > > > > > dept . of industrial engineering > > > > > and operations research > > > > > 4117 etcheverry hall > > > > > university of california > > > > > berkeley , ca 94720 - 1777 > > > > > e - mail : oren @ ieor . berkeley . edu > > > > > phone : ( 510 ) 642 - 1836 or 5484 > > > > > fax : ( 510 ) 642 - 1403 > > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > > > > > > - - - - - original message - - - - - > > > > > from : > > > > > to : ; ; > > > > > > > > > > sent : tuesday , august 08 , 2000 10 : 59 am > > > > > subject : hello from vince kaminski at enron > > > > > > > > > > > > > > > > shmuel , > > > > > > > > > > > > i hope you remember me . i visited you together with aram > > sogomonian , > > > a > > > > > > good friend of mine , a few years ago . i am currently responsible , > > > among > > > > > > other things , for recruiting graduates with finance and / or > > technical > > > > > > backgrounds at the university of berkeley . i would be glad to > give > > > you > > > > a > > > > > > call and talk more about the details of our program . my > colleague , > > > > > > ashleybaxter , from the analyst / associate program at enron would > > join > > > me > > > > > > as well . > > > > > > > > > > > > i am sending you a copy of the brochure about the analyst / > > associate > > > > > > program . > > > > > > > > > > > > vince kaminski > > > > > > > > > > > > > > > > > > vincent kaminski > > > > > > managing director - research > > > > > > enron corp . > > > > > > 1400 smith street > > > > > > room ebl 962 > > > > > > houston , tx 77002 - 7361 > > > > > > > > > > > > phone : ( 713 ) 853 3848 > > > > > > fax : ( 713 ) 646 2503 > > > > > > e - mail : vkamins @ enron . com > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: re : request for historical curve information sure : i am already taking care of that . thanks . paulo issler vince j kaminski 11 / 15 / 2000 09 : 59 am to : paulo issler / hou / ect @ ect cc : subject : request for historical curve information paulo , can you please , help him with this ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 15 / 2000 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : mike barry @ enron 11 / 15 / 2000 07 : 55 am to : vince j kaminski / hou / ect @ ect cc : subject : request for historical curve information vince , per our conversation this morning , i would appreciate the following historical curve information as soon as possible : 1 . on february 17 , 2000 , what was the summer ' 00 strip for vent to ml 7 , demarc to ml 7 , and vent to chicago 2 . on july 27 , 2000 , what was the august ' 00 strip for vent to chicago 3 . on may 9 , 2000 , what was the may ' 00 strip for vent to chicago 4 . on may 30 , 2000 , what was the june strip for vent to chicago 5 . on june 29 , 2000 , what was july strip for vent to chicago 6 . on sep . 29 , 2000 , what was the october strip for vent to ml 7 thank you in advance for your prompt attention to this matter . please call me if you have any questions . thanks again ! mike barry 402 / 398 - 7105",0 +"Subject: fwd : hello from charles shen at williams co . mr . shen : vince kaminski and the research group would like to bring you in for an interview this friday , if possible . please forward me a copy of your resume , as soon as possible , and i will have our hr dept . contact you . thank you . shirley crenshaw administrative coordinator enron research dept . 713 / 853 - 5290",0 +"Subject: chicago partners i have received an inquiry through one of our employees ( david barr ) from chicago partners , a consulting firm in chicago . they specialize , among other things , in regulatory economics and could be useful as experts in our discussions with the government and regulatory agencies . one of the partners , christopher culp , is a well known commodity markets expert . please , let me know if you are interested . vince kaminski",0 +"Subject: re : james "" brad "" aimone shirley , please , send a message to norma to finalize it . vince shirley crenshaw 12 / 14 / 2000 10 : 32 am to : norma villarreal / hou / ect @ ect cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : james "" brad "" aimone hi norma : fyi in case you do not know , today ( 12 / 14 / 00 ) is brad aimone ' s last day with enron . i don ' t know what else i need to do as he was not a full time employee . thanks ! shirley",0 +"Subject: thanks again vince and stinson , i would like to thank you for helping me trying to find an internship . i really appreciate the attention you gave to me . i am happy to tell you that i found an internship in my area of interest with mfrgroup . it is a consulting company that provides management consulting , advisory , finance , operations management and information technology services . i will be helping them to develop a new business related with e - commerce b - to - b . from now on , i will be concentrating my efforts in finding a full time position , because i will graduate at the end of the year . i do not want to miss enron ' s deadline , and i am still very interested in enrononline business . please keep me updated if any opportunity arises . thanks again carla di castro ps : vince , i tried to call you today , but it looks like you will be out of the office until monday . i just wanted to say thank you .",0 +"Subject: amit , paulo , and juan carlos , feb . 16 all : the meeting on wednesday , feb . 16 th , with the students from m . i . t . is scheduled to be held in 19 c 2 . please let me know if you are planning to attend all or part of the day so i will know a rough headcount to expect . ( samer and chonawee : please plan to come . ) as i understand it , there are two goals for the day : 1 . transfer any useful tools or knowledge from amit . 2 . evaluate the other two students to see if there is value in establishing an ongoing relationship with them . agenda 9 : 00 a . m . - 9 : 45 a . m . overview of ebs ( for paulo and juan carlos ) 10 : 00 - 10 : 30 review background and research interests of paulo and juan carlos 10 : 30 - 11 : 30 roundtable discussion of possible common areas of interest . lunch 12 : 30 - 2 : 00 amit dhadwal - review of model for pricing spot bandwidth 2 : 00 - 3 : 30 roundtable discussion of current model an possible future areas of research",0 +"Subject: organizational announcement enron global markets ended the year with a great deal of momentum and with very high expectations for 2001 . in order to better focus and expand the various businesses within global markets , we are pleased to announce the following organizational changes . crude and products this group is being re - organized into product lines in order to better focus and maximize coverage and increase our market - making abilities . the following individuals leading these groups report directly to john nowlan . global crude oil don schroeder and bill white will manage our global crude oil books . don  , s emphasis will be on the development and expansion of our physical crude positions both domestically and abroad . bill will manage the various financial crude positions globally and will focus on developing these books . distillate chris mahoney will have responsibility of all distillate positions . chris will focus on developing our global distillate strategy , building the business both physically and financially . global fuel oil niamh clarke will expand her role managing our global fuel oil and resid positions . emphasis will be placed on re - establishing enron in the financial fuel market in the us and developing a physical fuel strategy . global gasoline and components jim goughary will assume responsibility for our global gasoline and components business . following up on our expansion into the european market in 2000 , we look forward to jim expanding our presence in the us as well as asian markets . global lpg erik hansen and adam gross will be responsible for the development and execution of our global lpg trading and strategy . under their guidance we look to expand our presence into the asian pacific markets , as well as continuing to grow our us and european operations . petrochemical and plastics stuart bland and douglas friedman will be responsible for the continued development and growth of our petrochemical and plastics business . they will work to further expand both our physical and financial presence in these markets . fuel management doug leach will continue in his role developing our fuel management business as well as other long - term structural transactions . global origination randy maffett has joined the group to lead , develop and grow all global origination activities for the group . randy  , s most recent assignment was in restructuring several equity investments for ena . enron freight this new group under the leadership of dan reck is developing a business in the inter - modal transportation area in the united states . shawn cumberland has joined this group to lead and expand the origination opportunities in this business . shawn  , s most recent assignment was as coo of the calme region . global risk management jere overdyke has elected to leave enron after almost 10 years of service . per sekse will take over the leadership of this very exciting and growing business . per is located in enron  , s new york office but will be spending a significant amount of his time in houston . we look forward to this year and feel the above changes will provide the focus and momentum we need to deliver a record performance in 2001 . please congratulate everyone on their new assignments .",0 +"Subject: re : the next newsletter dear vince , thank you ! i feel much better now . sam vince j kaminski @ ect 11 / 15 / 2000 07 : 31 am to : william smith / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : the next newsletter sam , good thinking . i shall also write an article over the weekend so we shall have one in reserve . vince enron north america corp . from : william smith @ enron 11 / 15 / 2000 07 : 17 am to : vince j kaminski / hou / ect @ ect cc : elena chilkina / corp / enron @ enron subject : the next newsletter good morning , vince ! as i will be on vacation ( tomorrow until monday the 27 th ) , i ' m enlisting elena chilkina ' s help in producing this monday ' s ( 20 nov . ) newsletter . here ' s how i hope it will work : i ' ve asked alex huang to try to get his article to you by friday for your review . i ' m attempting to get with sharad today to get his photo and remind him about the bio piece for page one . he should be the feature for monday . i will also schedule a person and an article ( probably from charlie weldon ) for the 27 th . if alex ' s article is a two - parter , we ' ll just do part 2 that day instead . for all submissions for this coming monday ' s issue , i would ask that they be e - mailed to elena chilkina if you notice something i may have missed , would you please let me know ? thank you ! sam",0 +"Subject: re : the spreadsheet for talon deal rakesh , thanks . i took a quick look at the spreadsheet and i agree with your approach . i shall spend more time looking at it over the weekend and if i see a problem i shall call you on monday . vince rakesh bharati @ enron 03 / 23 / 2001 06 : 44 pm to : vkaminski @ aol . com cc : vince j kaminski / hou / ect @ ect , paulo issler / hou / ect @ ect subject : the spreadsheet for talon deal vince , here is the spreadsheet for your review . thanks . rakesh",0 +"Subject: re : visual numerics cnl licensing issues anita , could you please arrange for the purchase of the following software by coordinating with mike ? thanks . rakesh - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 03 / 30 / 2001 10 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - mike bothwell on 03 / 30 / 2001 08 : 58 : 20 am to : rakesh . bharati @ enron . com cc : subject : re : visual numerics cnl licensing issues rakesh , thank you very much for selecting visual numeric ' s imsl cnl . attached is a revision of the quote i previously sent , reflecting a change in the quantity . if you have any quesitons , please contact me . thank you , mike bothwell account manager visual numerics inc . phone : 713 - 954 - 6423 fax : 713 - 781 - 9260 cell : 713 - 417 - 9069 mbothwell @ houston . vni . com visual numerics celebrates 30 years as an independent software vendor - - - - - original message - - - - - from : rakesh . bharati @ enron . com [ mailto : rakesh . bharati @ enron . com ] sent : thursday , march 29 , 2001 6 : 05 pm to : mike bothwell subject : re : visual numerics cnl licensing issues mike , we have decided to go ahead with the purchase of a single license of imsl libraries ( c / c + + ) for pc . i believe that would be cnl 4 . 0 forpc . let me check the cost for the license before we finalize it as i have mislaid your previous e - mail about the cost . it is my recollection that it is less than $ 1500 . please e - mail to confirm with the precise number so we can proceed wih that . thanks , rakesh mike bothwell on 03 / 29 / 2001 12 : 56 : 03 pm to : "" ' rakesh . bharati @ enron . com ' "" cc : subject : visual numerics cnl licensing issues rakesh , i ' m just following up to see how things looked on this . any change in status ? let me know i can furhter help you . best regards , mike bothwell account manager visual numerics inc . phone : 713 - 954 - 6423 fax : 713 - 781 - 9260 cell : 713 - 417 - 9069 mbothwell @ houston . vni . com visual numerics celebrates 30 years as an independent software vendor rakesh , as we discussed , the cnl 4 . 0 pc libraries are not license managed . version 5 will be . the pc version 4 . 0 can be installed on a network drive and called from networked pcs . as expected , we would ask that enron honor the license agreement by allowing only the number of simultaneous uses permitted by the license . version 5 . 0 will be license managed and can be licensed as node locked or floating . with regard to unix licensing , the current version of cnl for unix is license managed . it can be licensed as node locked or floating . if you install the libraries on a unix server as node locked , the number of simultaneous sessions on that server is not limited except by the capabilities of the machine . a floating unix license would be checked out by the individual user to be executed on a local machine . also as mentioned , your investment is protected by allowing you to upgrade in the future by paying only the price difference between your current and desired platforms . this upgrade option only applies to licenses covered under support . if you have any additional questions , please let me know . i look forward to providing you the best math and statistical libraries available today to help you solve your problems and understand your data . best regards , mike bothwell account manager visual numerics inc . phone : 713 - 954 - 6423 fax : 713 - 781 - 9260 cell : 713 - 417 - 9069 mbothwell @ houston . vni . com visual numerics celebrates 30 years as an independent software vendor - vni - mb - enro - 014 - 1 03 - 30 - 2001 . doc",0 +"Subject: fw : london work hi , how are you ? london seems to be the same as when i left in august - no sun , cold , serious looking people , expensive , etc . in addition , we have had may day riots , a post office bombing , train strike , etc . not to mention all the excitement in enron credit . it would be nice to know who i am supposed to be reporting to . i am getting loads of conflicting messages - as illustrated in the forwarded email from vasant . according to you and slava , the strategy paper / duffie report seems to be a higher priority . however , vasant seems to indicate ( in his forwarded email ) that this is not the priority at the moment . in addition , there seems to be lots of chaos in enron credit - not only in the houston office , but even more so in the london office . this brings to mind a russian proverb i learned from slava when he expressed his views on the current state of enron credit - "" a fish rots from the head . "" finally , i would like to know exactly what you want me to write in this duffie report : do you want to hear what enron credit would like to hear - that all they need is for us to develop a private firm model for their exisiting "" infrastructure "" ? or do you want to hear what i really see , hear , read , etc . ? if the latter is true , then i may need to write two reports , because what i am learning does not look too good and would probably not make the enron credit personnel too happy . well , i think i have said enough for now . look forward to your feedback . thanks , iris - - - - - original message - - - - - from : shanbhogue , vasant sent : friday , may 04 , 2001 3 : 39 pm to : mack , iris cc : dhar , amitava subject : london work hi iris , amitava must have told you that both he and i are getting swamped with work here . as a result , we expect you to take the lead in scoping the enron credit project and making sure the infrastructure is readied . you should also make sure to understand the econometric / data analysis software side of the project - - this is probably more important than preparing a document for duffie right now . you should definitely sit with ben / george and actually run the software with them to get a feel for how it is to be used . but we also need to be able to try out potential other ways of analyzing data . both amitava and i will help as best as we can , and answer any direct questions , but we will have limited time to review documents , etc . i expect amitava to get heavily involved once data starts coming , but we expect you to have already set up the infrastructure etc for the data . hope the trip is going well . would you be extending the trip for some more time ? vasant",0 +"Subject: re : high - end desktop computing ? hi mark : please order an 800 mhz machine with 512 mb of ram , and a large ( 17 "" + ) flat - screen monitor for clayton vernon . our co . # is 0011 and our rc # is 100038 . ( is the large screen a 17 "" or a 20 "" ? ) if you need anything else , please let me know . thanks mark and have a great day ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 20 / 2000 07 : 27 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 17 / 2000 04 : 25 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , clayton vernon / corp / enron @ enron , vasant shanbhogue / hou / ect @ ect subject : re : high - end desktop computing ? shirley , yes , it will be a swap of one machine for another . vince shirley crenshaw 03 / 17 / 2000 12 : 17 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : high - end desktop computing ? vince : is this ok to order ? - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 17 / 2000 12 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - clayton vernon @ enron 03 / 17 / 2000 09 : 34 am to : mark davidson / corp / enron @ enron , shirley crenshaw / hou / ect @ ect cc : subject : re : high - end desktop computing ? mark - shirley will order an 800 mhz machine with 512 mb of ram , and a large ( 17 "" + ) flat - screen monitor for me . clayton mark davidson 03 / 17 / 2000 08 : 52 am to : clayton vernon / corp / enron @ enron cc : shirley crenshaw / hou / ect @ ect subject : re : high - end desktop computing ? clayton - sorry it took so long to get back to you . there are a couple of things to keep in mind : - enron it supports enron equipment . - all equipment must be purchased through "" enron it purchasing "" our current high end desktop is a 800 mhz pentium iii machine with 128 m of ram . you can bump up the ram to whatever you feel is appropriate . when the lghz processors come out ( in the very near future ) that will become our standard . what we want to avoid is getting equipment that we do not have a image for . the "" image "" is the complete package of software that we put on a machine when it is deployed . if you go out and buy a machine that we do not have a image for , we can ' t support it for a multitude of reasons . hopefully this answered your questions / concerns . if not , please call me so that we can discuss this further . thanks mark davidson x 39038 clayton vernon 03 / 14 / 2000 03 : 39 pm to : mark davidson / corp / enron @ enron cc : subject : high - end desktop computing ? mark - i have developed a model for enron that requires ultra - high - end pc performance ( it does many calculations in excel ) , and my boss has authorized me to buy whatever pc i need . i ' m looking at the compaq 850 , but richard ( our floor rep ) says no pc ' s over the 600 series will be supported by it . i need to resolve this issue ; we are sophisticated buyers , we know the type of machine we want , and we have the money to pay for it . sincerely , clayton vernon manager , research",0 +"Subject: re : corrections to chap . 3 from grant masson grant , thanks for that . i hope you had a good holiday - we were all very jealous of you at dinner the other evening . i made some changes for it to fit in with our notation , etc , but apart from that its a fin piece of work . if you could just answer the questions posed by vince , and send me the final figure then we are a go ( all of ours are now finished ) . would you be happy with the following ? 3 . 5 summary in this chapter we have discussed volatility modelling and estimation in the energy commodity markets , emphasising the difference between this market and financial markets . we discuss the estimation of volatility from both historical and implied data , again from the perspective of the energy user . we further discussed a number of stochastic volatility models and have shown how to estimate the models via ordinary least squares and maximum likelihood . we have tested our estimation techniques on a number of examples drawn from energy markets including electricity , gas and crude oil . best regards . chris . - - - - - original message - - - - - from : grant masson to : chris strickland sent : tuesday , july 25 , 2000 9 : 08 am subject : re : corrections to chap . 3 from grant masson > > > chris : > > i understand from vince that ronnie did not send you anything . apologies for > that . i will get the last section rewritten quickly and off to you within the > next couple of days . sorry that this has taken so long , and frankly , apologies > for the poor quality of my bit . if you have any suggestions on how to improve > it , please let me . likewise , i hope that you will make changes as you see fit > to improve and clarify things . > > regards , > grant . > > >",0 +"Subject: frank qian - cancelled interview schedule frank qian ' s interview scheduled for friday , february 9 , 2001 has been cancelled . i ' m sorry about the inconvience . if you have any questions please let me know . thanks sasha divelbiss 58714",0 +"Subject: european power trading dear mr kaminski , ? i thought you might be interested in a new study we have just published on european power trading . ? the executive summary of the study is attached here for your reference . ? best regards , ? benjamin tait prospex research ltd . london , england tel : + 44 ( 0 ) 20 7460 3897 fax : + 44 ( 0 ) 20 7385 7538 e - mail : ben @ prospex . co . uk web : www . prospex . co . uk ? prospex research is an independent research company based in london . we analyse strategic and financial issues for the european power business . our work includes reporting , consulting , power trading recruitment and conference development . to find out more about us , please visit our internet site at www . prospex . co . uk - executive summary ept . pdf",0 +"Subject: analyst candidate mitra mujica if mitra mujica accepts the offer from the aa program , i would like you to interview her at your earliest convience . thanks for your help . regards , maureen - - - - - - - - - - - - - - - - - - - - - - forwarded by maureen raymond / hou / ect on 02 / 16 / 2001 05 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : andrea richards @ enron 02 / 16 / 2001 04 : 42 pm to : maureen raymond / hou / ect @ ect , gwyn koepke / na / enron @ enron cc : jana giovannini / hou / ect @ ect , shelly butler / hou / ect @ ect , althea gordon / na / enron @ enron , teresa bosien / hr / corp / enron @ enron subject : analyst candidate mitra mujica maureen , mitra mujica , an analyst candidate from super thursday 2 / 15 , has been reserved for your group . please note that this placement is contingent upon the candidate accepting the analyst program ' s offer . mitra will have two weeks to respond and we will contact you once her response is received . please contact me if you have any questions . thank you , andrea richards career development associate & analyst program x 3 - 6499",0 +"Subject: re : prc feedback forms gina , i shall be glad to speak with you . shirley crenshaw will call you to set up a meeting . vince from : gina corteselli / enron @ enronxgate on 04 / 16 / 2001 01 : 12 pm to : vince j kaminski / hou / ect @ ect cc : subject : prc feedback forms mr . kaminski : i would like to try to get on your schedule for a few moments this week to discuss the draft prc 360 evaluation forms ( provided below for your info ) to ensure that the criteria and skills and behaviors we have used are adequate for your employee population . the generic forms that were presented at the prc committee meeting a week ago may best reflect commercial employees , and to some extent commercial support employees , and may not be entirely appropriate for employees in some of the specialized technical and technical areas . i would appreciate your input on this so that , if possible and time permitting , we can try to tailor the form to suit needs across the organization . one simple solution may be to add a skills / behaviors block requesting evaluation and feedback on the employees specific job and performance , another solution would be to add job specific behaviors and descriptors to the list of those already developed ( second attachment below ) . i would welcome your thoughts and a few moments of your time to chat with you about this . many thanks , gina corteselli global performance management 713 853 - 3377 713 569 - 5589 ( mobile )",0 +"Subject: the light at the end of tunnel ! hi all , after all the hard work , we are at time of harvesting ! but as we all know that there still a few more hurdles ahead of us in order to release credit reserve model at end of march , but on the bright side , vince kaminski has promised us a big feast after we push the product out of door . so let commit our self to do one last dash to the finish line ! here i composed a list of task that we need to accomplish for the release , let hit the items on the list and get it over with continue the comparison test between old and new model winston testing of theoretical deals ! finish the comparison between the theoretical value and model valuation ! tanya t . winston j . making the default probability table a configurable component and runtime parameter . winston j . , ramesh g . simulation dimension change for different analysis requirement , default path 5000 max and price path 1000 max . winston interface to run the credit reserve in grms system ( for now ) ramesh run time option , applying stress scenario on input curves for any or all curves ( sensitivity analysis ) winston runtime option , curve replacement for any or all curves ( attribution analysis ) winston validation of different insurance plan tanya , winston intra - month position validation to see the impact of excluding of intra - manoth position on credit reserve vicent tang , ramesh exchange deals handling ( are they using the highest e - rating ? ) ramesh saving credit reserve result , please grant winston and xiaojun the privilege to save the result into production database , ramesh , winston , xiaojun credit reserve on legal id , based on the data clean up of all spreadsheets ( not scheduled ) ! deployment plan . one credit instance at any time until we get out new computing server ( probably in april time frame ) this list may be an ever changing list and may also incomplete , please let me know if i missed anything or any deletions and additions ! please let me know if anything i can clarify . thanks ! jonathan",0 +"Subject: summary of last 6 months projects dear dale , stinson & vince , i would like to take this opportunity to communicate some information to summarise the projects of the past six months . firstly , by all accounts it has been an amazing few months for me - i believe that i have kept a large number of commercial group heads very happy . however , not all are aware of my activities , so , many people ( e . g . john sherriff , richard lewis , steve young etc . ) will not know of everything i have done . for example the amount of work that i put into the inflation models and the extent to which i was critical for the successful building of those curves and the consequent impact ( o 7 + million for ql ) and similar large p & l swings for eastern contract optionality ( short virtual power station ) based upon my uk power vol curve generator . for your benefit , i have compiled a shortlist of the main projects worked on over the past five / six months : 1 ) inflation curve modelling ( february and march + april internal audit + june external audit ) 2 ) uk power monthly vol curve generator & ideas for half - hourly vol curve 3 ) nordic power monthly vol curve generator 4 ) energydesk . com models & support 5 ) real options : options to build / extend power stations ( e . g . wessex deal , anti - freeze project ) 6 ) continental power non - generic options ( using arbitrary trader - specified distributions ) 7 ) global products : non - generic options modelling and new commodity forward curve construction ( benzene fwd curve from naphtha ) 8 ) exotic options library upgrade / model test / bug fixes ( e . g . testing new / old asian models ) 9 ) continental gas volatility curve construction 10 ) communication objective i : two presentations to enron europe staff , one to oslo office 11 ) communication objective ii : meetings to gather information and present results 12 ) fas 133 : working with internal and external auditors on matching financial and physical ( accrual ) hedges - hedge effectiveness 13 ) oslo trip : bringing oslo up to speed on exotica and option valuation 14 ) houston research staff : co - ordinating communication / meetings to maximise productivity 15 ) valuation / marketing of power put options for banks that hold senior and sub debt in merchant power plant meeting breakdown : initiated by me it is clear that i have been critical to large p & l sensitive projects and hope that i can continue to help enhance earnings going forward . regards , anjam x 35383",0 +"Subject: meeting with vince dear shirley , as you may know , i am taking the research over from steve ( i have always thought that steve ' s movement from the research is a big loss for all us ) . please , could you help us arrange the meeting with vince when he is here in london . thank you very much for your future help . slava",0 +"Subject: re : pserc industrial advisory board meeting invitation mr . kaminski , thank you for responding . i ' m sorry you won ' t be able to attend , but very much appreciate your willingness to reconsider your decision about participating in pserc . we will certainly keep you informed about on - going and new pserc activities that may be of interest to enron . best regards , dennis ray - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , april 16 , 2001 2 : 02 pm to : djray @ engr . wisc . edu cc : vince . j . kaminski @ enron . com subject : re : pserc industrial advisory board meeting invitation dear mr . ray , i regret to inform you that due to very heavy workload we cannot attend the power systems engineering research center ' s upcoming industrial advisory board meeting in oak brook . our work load does not leave us much time to get involved with pserc at this moment . we would very much like to stay in touch and plan to reconsider our decision in the second half of this year . vince kaminski "" dennis ray "" on 03 / 27 / 2001 04 : 46 : 44 pm to : "" vince kaminski "" cc : subject : pserc industrial advisory board meeting invitation mr . kaminski , greetings . bob thomas , shmuel oren and i invite you to attend the power systems engineering research center ' s upcoming industrial advisory board meeting in oak brook , il . it will be held on may 31 - june 1 . as you know from lance and alex , this is an opportunity to meet university researchers and industrial members of pserc . the meeting also has presentations on pserc activities and research projects , pserc business discussions , current topic discussions , and a tutorial . our current topics discussion will be on iso / rto issues , and will involve executives from several isos in dialog with university researchers . please let me know if you have any questions . we hope to see you there so that we can talk about any questions you might have about pserc . dennis ray , ph . d . executive director power systems engineering research center 608 - 265 - 3808 ( see attached file : directions . doc ) ( see attached file : iab _ meeting _ may 2001 . doc ) ( see attached file : iab _ registration _ form . doc ) ( see attached file : pserc members . doc )",0 +"Subject: re : summer dear vince , thank you for your prompt response . i do realize that the a i was inquiring about the possibility of hiring on an individual basis . again , i greatly appreciate your time . i look forward to seeing you soon ! regards , van",0 +"Subject: hello from vince kaminski at enron shmuel , i hope you remember me . i visited you together with aram sogomonian , a good friend of mine , a few years ago . i am currently responsible , among other things , for recruiting graduates with finance and / or technical backgrounds at the university of berkeley . i would be glad to give you a call and talk more about the details of our program . my colleague , ashleybaxter , from the analyst / associate program at enron would join me as well . i am sending you a copy of the brochure about the analyst / associate program . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com - enronl . pdf",0 +"Subject: virus update : please read there are many different variations of the "" iloveyou "" computer virus still being reported . the it infrastructure team is continually updating our virus software as new versions become available , but it is extremely important that you do not open any attachments that you do not regularly receive from business associates . even business associates you are very familiar with could be sending you the virus without knowing it , so unless you are expecting an email from them with an specified attachment please do not open it . if you are unsure whether to open an attachment please do not open it . call your helpdesk to ask any questions and to get verification if required . we may need you to log out and log back in during the day as new anti virus updates become available . we appreciate your cooperation while we all work to keep enron ' s computing environment secure . please note the following enron policies regarding viruses : email malicious code ( virus ) screening in addition to the enron requirement for email attachments ( received and sent ) to be screened for malicious code ( viruses , trojan horses , etc . ) , users of enron information resources are required to detach email attachments that are received on to their hard drive for local virus screening purposes . all executables ( * . bat , * exe , * . com , * . vbs ) files should never be launched from email without first consulting with it . virus alerts the internet is constantly being flooded with information about computer viruses and trojan horses . however , within among real virus notices are computer virus hoaxes . while these hoaxes do not infect systems , they are still time consuming and costly to handle . it only wastes bandwidth and unnecessarily alarms other computer users . please , do not perpetuate unconfirmed warnings about viruses and trojan horses . if you receive an invalidated warning , don ' t pass it to all your friends , pass it to your it computer security manager to validate first . enron information risk management 713 - 853 - 5536",0 +"Subject: hib visa application - sevil yaman sevil , please , make sure you provide this information asap . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 25 / 2001 12 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 04 / 25 / 2001 12 : 04 pm to : sevil yaman / corp / enron @ enron cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate subject : hib visa application - sevil yaman sevil : please let me know when you will be sending me the information for your hib visa ? thanks margaret - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret daffin / hou / ect on 04 / 25 / 2001 12 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - margaret daffin 04 / 10 / 2001 04 : 04 pm to : sevil yaman / corp / enron @ enron cc : norma villarreal / enron @ enronxgate , vince j kaminski / hou / ect @ ect , ramona perkins / enron @ enronxgate subject : hib visa application - sevil yaman sevil : in order that we may proceed with your request for permanent residency , our immigration attorneys have advised us that we need to process the hib visa , prior to the permanent residency application . therefore , i am attaching an hib visa questionnaire that i would like you to complete and return to me , together with copies of all of the documents listed at the bottom of the form . please bring these to me in 3 ac 2026 a . please let me know if you have any questions at x 55083 . thank you margaret",0 +"Subject: revised aga forecast for 6 / 23 is 65 mike , i refit the molecular model incorporated last week ' s data , the revised number for this week is 65 , ( dropped 3 bcf compared to last fit ) , see graph . let us see what is the real number today . zimin",0 +"Subject: re : roman , i shall be traveling next week ( europe again ) , mon thru fri . it ' s power 2000 conference in paris . i have many trips to different places later during october ( berkeley , philadelphia , etc . ) . these are shorter , 1 - 2 day trips . please , let me know when you come to houston . i shall keep you posted about my itinerary as it becomes more certain . vince roman kosecki on 09 / 27 / 2000 09 : 08 : 39 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : that is so much easier , isnt it ( i mean english ) my office number inb nj is ( 973 ) 733 - 2771 in cal ( 562 ) 951 - 1790 my home number is ( 201 ) 222 - 0435 i will be in ny till friday , and then will stay in long beach for a few weeks . hope you had a great time in poland . it would be really nice to have some italian pastry and a double espresso : ) let me know when you are in town . roman - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , september 27 , 2000 9 : 07 am to : roman kosecki cc : vkaminski @ aol . com subject : re : roman , i shall type in english ( faster ) . i was trying to locate you for some time after you left scem . i shall be glad to meet for dinner / coffee and chat . please , send me your phone number . i have just come back from poland and go through my mail . i shall try to reach you later this week . vince roman kosecki on 09 / 25 / 2000 12 : 06 : 12 pm to : vince j kaminski / hou / ect @ ect cc : subject : hello vince , nie bardzo wiem czy pisac po polsku czy po angielsku : ) co u ciebie slychac ? u mnie troche zmian jak ze juz nie pracuje w scem , a przenioslem sie do mieco ( a small marubeni backed energy - america trading company ) . bardzo rozne od scem . najbardzij przypomina mi scem na poczatku z joe , jak bylo 20 - 30 osob . sa i minusy i plusy . troche structure i research ale przede wszystkim weather . trrovhe latam miedzy east i west bo sa officy w obydwu miejscach . california jest ok w zimie : ) . na bardziej personalnym froncie ; pamietasz dinner na ktory poszlismy kiedys na conferencji w ny z catherine ( she used to work for williams - works for morgan stanley now ) , we are dating ( for a while ) . it is a good story how we met . so we owe you dinner : ) jak bylem w atlancie to pracowala dla mnie christa grey . bedzie teraz konczyla grad school in international relations ( with eastern european slant ) , i zastanawia sie czy sa jakies mozliwosci polaczenia tego co robila ze "" wschodem "" . co robila to bylo przede wszystkim vb implementations modeli , ( roznego rodzaju ) , web based data collections , basic research , teraz jest w gas structuring etc . she speaks russian and was in ukraine / poland few times on peace corp assingments . she is very bright and dedicated . myslalem zeby ja zwabic do californii ale ten eastern european pociag jest u niej silniejszy niz u mnie : ) . i have here resume , wiec jak bys myslal ze jest jakis fit i will foreward it to you . troche tak mieszanka pisze , przepraszam bede chyba w houston w pazdzierniku to moze bysmy sie mogli spotkac . latwiej pewnie by bylo w ny ( mieszkam po nj stronie ( rent jest inny niz w atlancie : ) ( 201 ) 222 - 0435 ) , wiec daj mi znac jakbys mial czas i ochote . thanks roman",0 +"Subject: john d . martin - chair of finance at baylor university good afternoon ladies , i am working with vince kaminski , director of research , enron corp . and john martin , chair of finance at baylor university to schedule one hour time slots with ken lay , jeff skilling and andy fastow . vince and john martin are jointly authoring a 20 - 40 page paper , written in the style of a harvard business review piece , about ' transforming enron corporation as an act of managerial will - the value of active management ' . attached below you will find a brief outline of the proposed case study , although i have requested john martin to provide us with the specific questions he will be asking all three participants . we would like to schedule the one hour interviews on the following dates : monday , december 4 th tuesday , december 5 th week of december 11 th please let me know at your earliest convenience which of the above - mentioned dates / times works best with everyone ' s calendar . thanks a million .",0 +"Subject: wharton business plan competition vince and jeff , who should we list as a judge ? i could list myself to act as the point of contact and i ' ll also give my comments on the plans , but i think enron ' s "" judge "" should be someone in the capacity of evaluating enron ' s early stage ventures . please let me know as soon as possible . thanks ! - - christie . - - - - - forwarded by christie patrick / hou / ect on 03 / 15 / 2001 07 : 40 am - - - - - "" andrew gaffney "" 03 / 08 / 2001 08 : 47 am to : cc : "" stamer , anne "" subject : wharton business plan competition dear ms . patrick , ? anne stamer asked me to contact you regarding ? enron providing a judge for phase iii of the business plan competition . ? phase iii judges are generally partner - level individuals at venture capital firms , ? managing directors from investment banks , or other senior individuals ? who have extensive experience assessing and working with early stage ventures . ? a phase iii judge will receive five business plans , with the entire judging process requiring 4 - 5 hours during the weeks of april 2 and april 9 . ? i am attaching a document that describes the competition and judging procedures for phase iii in more detail . ? we are looking to finalize the list of phase iii judges by march 23 , so if you could please forward either anne or i the name of the appropriate individual , we can contact them directly with more details . ? please let me know if you have further questions and we appreciate your support of the competition . ? sincerely , ? andrew gaffney - phase iii judge info 00 - 01 . doc",0 +"Subject: great thanks so much re : avg . monthly electricity prices i appreciate all your great help . . . merci beaucoup margaret carson",0 +"Subject: newsletter , monday 23 oct . vince , i see that you are flying around a lot this week , but i wanted to let you know how it ' s going with the newsletter . i ' ve scheduled steve bigelow as the "" person of the week . "" regarding technical corner , i sent you a copy of maureen ' s article for your review . bob lee told me he has also sent you something . i ' d appreciate your guidance on which one to use . i believe maureen ' s is time - sensitive , so i ' d vote for that one if you ' ve had a chance to look it over . i ' m going to be out of town the rest of today and thursday - friday to attend my uncle ' s funeral in illinois . if you fly over illinois , please wave ! : - ) have a safe trip ( s ) , sam",0 +"Subject: new gas models preliminary schedule for next week vince , here are the topics that our london folks are interested in . have a good weekend . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 05 / 26 / 2000 02 : 41 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . - europe from : anjam ahmad 05 / 26 / 2000 08 : 12 am to : natasha danilochkina / lon / ect @ ect , haakon olafsson / lon / ect @ ect , mark jones / lon / ect @ ect cc : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect subject : new gas models preliminary schedule for next week dear all , please could you confirm your availability for meetings next week as follows : - wednesday 31 st may overview of uk gas products to be revalued a ) wet gas swing deals ( teeside delivery ) b ) liquids extraction options time : 9 . 30 am to 11 . 30 am ( 1 1 / 2 hrs ) , swl 001 zimin , anjam , natasha wednesday 31 st may overview of uk gas products to be revalued c ) virtual storage ( enbank ) d ) dry gas swing deals time : 3 pm to 4 . 30 pm ( 1 1 / 2 hrs ) , nel 002 zimin , anjam , natasha wednesday 31 st may simulation of uk gas forward curve time : 5 pm to 6 pm ( 1 hr ) , nel 002 zimin , anjam , natasha , haakon thursday lst june model modifications to accomodate uk products time : 9 . 30 am to 11 . 00 am , nwl 003 zimin , natasha , anjam friday 2 nd june it requirements for trading / rm model a ) booking / mtm b ) exposures and hedge ratios calculation time : 9 . 30 am to 11 am , nwl 003 zimin , mark jones , natasha invitations to follow . . . thanks , anjam x 35383",0 +"Subject: re : credit trading brought to you by bryan seyfried i am happy that the legal issues have been addressed and discussed with bryan and john and i will sign off on the approval . michael from : ted murphy 08 / 02 / 2000 22 : 16 to : steve w young / lon / ect @ ect , fernley dyson / lon / ect @ ect , michael r brown / lon / ect @ ect , william s bradford / hou / ect @ ect , john sherriff / lon / ect @ ect , vince j kaminski / hou / ect @ ect cc : rick buy subject : credit trading brought to you by bryan seyfried my understanding is that bryan will be in houston to present his strategy regarding credit trading for approval under an interim trading policy - signed off by jeff and rick . before making any recommendation to jeff , rick wants to be sure that the people on the list above are comfortable with the activity and will be willing to signoff on the approval . given that bryan will be physically here , i am requesting that you e - mail your concurrence to me no later than tommorrow . otherwise rac will not present to jeff for approval . thank you for your help in puttting this together and making it a success ! ted",0 +"Subject: vince , my rice e - mail address is sokolov @ rice . edu i will be checking it regularly during the next month . my schedule for decmber / january is as follows : last day of finals : december 18 first day in the office : december 29 vacation days : december 30 - january 15 second day in the office : january 16 jason sokolov",0 +"Subject: re : livelink moyez , we are very anxious to get set up and start using livelink for tracking and documenting our projects , so thanks for the reminder . i have put together an initial list of attributes for our research projects . the list in in the attached spreadsheet . it would be great if you can set up these attributes for us in the test environment . this would allow us to make any obvious changes before moving to production . let me know what your schedule would be in rolling this out . my brief comments in the spreadsheet may not be clear , so feel free to give me a call at x 34748 to clarify anything . again , thanks for your help . stinson enron technology from : moyez lallani @ enron 01 / 31 / 2001 07 : 15 am to : vasant shanbhogue / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : n jessie wang / enron _ development @ enron _ development subject : livelink vasant / stinson just following up to check on your progress / evaluation of livelink as your document repositiry . please let me know if i can be of further assistance . moyez lallani x 5 - 3683",0 +"Subject: seismic data via satellite i am preparing a summary or our thursday discussions to be used as a background piece for discussion / brainstorming with oil traders . i will circulate this for review / correction later today , or , at the latest , monday . greg , you mentioned that enron had participated in a speculative survey in the gulf of mexico that was successful . it might be useful to get more info on this . terms , return realized ( over what time frame ) , why we have not continued to do this , etc . also , from your comments , many , if not most of the 3 - d surveys are in deep water . i read recently that shell , i believe , is participating in a deep sea drilling / extraction project in the gulf . what oil price is required to make these kinds of projects viable financially ? bob lee",0 +"Subject: impending visit july 5 - 7 vince : i plan to be in houston on july 5 - 7 . i would like very much to get together with you and perhaps your investment guy on friday morning on the 7 th if you and / or he have the time or perhaps on the 5 th in the afternoon . i would like to continue the discussions about your using marketpoint and about your investment guy considering marketpoint if he is interested . when you see the progress we have made , i think you will agree that it merits consideration as a part of enrononline . com as well as a profitable investment in its own right . it is still in the situation where it can be provided exclusively to whomever i choose ; i have been very , very careful how i have promoted it so that i do not get committed to a second - rate partner . i also have what i think is a fundamentally new , general markovian forward optionality evaluator . i wrote my ph . d . dissertation at stanford in the 1970 s ( defended with honors ) in semi - markovian decision processes during the heyday of that research , and i have seen direct applications in optionality evaluation . i think you will be fascinated to see and review it . it is presently implemented in prototype form and it could be made available to the first large retainer client on an exclusive basis who is sufficiently interested . if you want to be that retainer client , that would be of interest to me . give me a shout via return email or by my cell phone at 650 . 218 . 3069 regarding schedule . i am out of town this week but available via email or phone at the above addresses . i really hope we can get together that week if we possibly can . thanks very much for considering my request , and thanks very much for being the go between with your investment guy . i deeply appreciate it . i hope to see you on the 5 th or 7 th . dale nesbitt",0 +"Subject: re : good news - cabinet approval for power trading seethayya , this is great news . credit goes to all those who worked towards making this possible , especially ramu , mr . mehta , jane , heidi and yourself who went through draft after draft of the note to chidambaram . this is good news for us ! ! regards , sandeep . k seethayya 02 / 06 / 2001 08 : 35 am to : neil mcgregor / enron _ development @ enron _ development , jane wilson / enron _ development @ enron _ development , sandeep kohli / enron _ development @ enron _ development , jimmy cc : wade cline / enron _ development @ enron _ development , ashok mehta / enron _ development @ enron _ development , mohan gurunath / enron _ development @ enron _ development , shubh shrivastava / enron _ development @ enron _ development , heidi hellmann / enron _ development @ enron _ development , rajesh sivaraman / enron _ development @ enron _ development , pancharatnam ramaswamy / enron _ development @ enron _ development , arvind rawat / enron _ development @ enron _ development , ritu subject : good news - cabinet approval for power trading team : today union cabinet has approved the proposal of ministry of industry to allow foreign equity participation in power trading . this was conveyed by secretary ( power ) during his meeting with wade . in normal course , the proposal was slated to be coming up for cabinet in next few weeks . keeping in view the developments of dpc invoking state guarantee , perhaps cabinet has hurried it up . the exact proposal approved was - "" to allow foreign equity participation through automatic route upto 100 % for trading in power sector , subject to prevailing laws . "" irrespective of urgency of this approval to us , the best thing is that we are getting the approval without draft electricity bill , 2001 being finalised . as most of you are aware , initially the proposal was stalled at fipb level pending finalisation of electricity bill . then it has gone to group of ministers who had taken a positive approach and now the cabinet has cleared it . now fipb either issue an approval to enron llc or advise us to avail automatic route . we will have one of it , culminating great team work . seethayya",0 +"Subject: seeking intelligent insight it looks to me like the market for distributed computing will displace heavy iron within the next several years . the structure is still very early in its development , but i think there will be commercial opportunities for enron in bandwidth and electricity . i would be interested to know what issues you two would see as the greatest hinderences and possibilities for these markets . if you would like , please feel free to comment on the attached documents . thanks , mark",0 +"Subject: visit ? dear vince , i very much enjoyed speaking with you at lunch , if only briefly , at the  see http : / / www . stern . nyu . edu / ~ fdiebold . the upshot : it seems to me that we would both benefit from a more extensive conversation . i would be happy to visit you in houston to learn more about your operations , and to tell you more about mine . please do let me know if you are interested . best regards , frank diebold - - francis x . diebold armellino professor of finance stern school of business new york university 44 west 4 th street , k - mec , suite 9 - 190 new york , ny 10012 - 1126 fdiebold @ stern . nyu . edu http : / / www . stern . nyu . edu / ~ fdiebold ( 212 ) 998 - 0799 office telephone ( 610 ) 585 - 4057 voicemail ( 212 ) 998 - 0351 fax",0 +"Subject: fortnightly on - line dear mr . kaminski , this is to inform you that your "" public utilities fortnightly "" on - line subscription is now ready for your use . this on - line service is good for 30 days . user name - 2000208 password - quality thank you . janet clark customer service rep",0 +"Subject: listo 319 isranir @ rice . edu , demianen @ rice . edu , tbal 93 @ yahoo . com , maue @ rice . edu , loughrid @ rice . edu , jblantonjr @ yahoo . com , gjohnson @ rice . edu , emchombo @ rice . edu , nazareth @ rice . edu , vanstone @ rice . edu , ganguzza @ rice . edu , nelsonb @ rice . edu , sssmith @ rice . edu , wheelock @ rice . edu , westmore @ rice . edu , gaudette @ rice . edu , otaylor @ rice . edu , dikeman @ rice . edu , jettke @ rice . edu , litton @ rice . edu , chilkina @ rice . edu , helms @ rice . edu , wankhade @ rice . edu , monfan @ rice . edu , kostya @ rice . edu , pcp @ rice . edu , yueguo @ rice . edu , nlwbio @ rice . edu , zhangn @ rice . edu , rishad @ rice . edu , yoshiura @ rice . edu , howard @ rice . edu , dayangd @ rice . edu , wuwei @ rice . edu , so @ rice . edu , wooddy @ rice . edu , lamas @ rice . edu , tbalestrery @ houston . rr . com , hingoran @ rice . edu , planck @ rice . edu",0 +"Subject: delainey presentation g . masson vince : here is tanya ' s and my presentation . it is a bit long and deliberately a bit bombastic . this is deliberate to hammer home the fact that my group provides power trading support for 5 continents as well as support for corporate level risk control . if i have over done it , please let me know or else feel free to make modificaitons . grant .",0 +"Subject: enron europe organisational changes once the arcos plant in spain is financially closed ( expected in q 2 of this year ) eric gonzales will be moving back to houston to work exclusively on co - managing enron ' s lng markets . we are very appreciative of eric ' s efforts in europe since early 1998 and look forward to continuing to work very closely with his lng team in the coming years . from this point forward eric will focus his remaining time in europe exclusively on financially closing arcos . we are therefore making the following changes immediately . the origination responsibility for italy will be moved under eric shaw . ricardo bortolloti will continue in the role as italian country manager and will report to eric shaw . mariano gentilini will become our country manager for spain and portugal and will report directly to the enron europe office of the chairman . the arcos power project is likely to create a large gas to power spread position and so we have asked paul mead to assume the added responsibility for our natural gas risk positions in spain . this position is much more likely to be supplied and influenced by lng rather than continental gas markets and paul will work quite closely with both enron global markets and the continental gas team . ross sankey who has been managing our marketing efforts in holland will also head a new organization that will focus on subsea interconnector and power transmission opportunities across europe . among the prospects his team will pursue include projects from norway to the uk , sweden to the continent , and bidding on existing french interconnector capacity . he will report to eric shaw for the holland markets and to richard lewis for the transmission responsibilities . finally the continental gas team is interacting far more with our uk gas team than our power teams on the continent . therefore david galagher who manages our continental gas team will now report directly to richard lewis . we have aggressive income targets for this year and anticipate that these changes will create the right links to optimize our performance . please help make these changes as smooth as possible . john sherriff michael brown",0 +"Subject: pjm adds ny prices to edata message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : pjm has launched a pilot version of edata which includes data from the new york independent system operator . the beta - test period for the pilot is expected to last approximately 90 days as pjm evaluates the success of using cross - iso data in edata . if the pilot proves successful , pjm may add data from other isos in the future . this pilot version of edata is a result of the collaboration among the isos created by the memorandum of understanding signed last year . through the iso mou process , stakeholders have asked the isos to improve seams issues , create like user interfaces , and make it easier to do business between the isos . the addition of other iso data to edata has several benefits to users including consolidated information , ease of use , less technical support required , and improved customer service . real - time prices , forecasted / actual loads , tie line schedules , and transmission limits are all possible types of information that may be included in the future . edata was implemented in october 1998 . there are currently more that 1700 registered users representing over 200 companies . users include marketers , utilities , control areas , state and federal regulators , educational organizations , financial institutions and others . the tool continues to attract 30 to 40 new registered users each week . normally , 100 - 300 users are simultaneously logged onto the system . to become an edata user , submit new user information from the edata log in screen from the pjm web site at www . pjm . com . please do not reply to this message . if you have a question for pjm customer relations and training , please send an e - mail to custsvc @ pjm . com . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: sap timesheets hello everyone : thanks to krishna we have come up with a plan that i believe is going to save everyone some time . we have created an excel spreadsheet , with the time sheet form , and there is a tab for each of you , in alphabetical order by first name across the bottom of the spreadsheet . the spreadsheet is saved in o : \ research \ common \ sap timesheets \ mmm - dd . ( mmm = month and dd = 15 th or end of the month time period - i . e . , this time period is 7 / 16 - 7 / 31 / 00 ) . the regular 8 hour days have already been entered for each of you . therefore , if you have no exceptions you just need to type in your name in the bottom right corner by the place marked ( emp sign ) , and save it . if you do have exception time , simply open that particular pay period and show the exception time ( off - duty , vacation , overtime , sick time , jury time , family time , etc . ) that you may have had during that pay period . some of the codes have already been entered for you , the rest are listed at the bottom of the spreadsheet and just change the ones that are already there for whatever applies . if you are an exempt employee you need only show your off - duty time or exception time . if you are non - exempt you must show all hours worked and if you have overtime , you must add that to the 8 hours regular time . there is no code for non - exempt overtime . this should make it much easier for everyone . however , i will need you to fill out this timesheet form by the 13 th and 29 th of each month . i will try and remind you by email the day before . i would still appreciate your emailing me of any vacation , hod day , or any other off - duty that you know about before hand , that way if you are out of pocket for any reason and cannot fill in one of the forms , i will be able to fill in your timesheet for you . if you have any questions or suggestions , please let me know . thanks ! shirley",0 +"Subject: mark - to - market bob , i wanted to continue the analysis on mark - to - market that i had spoken to you about on the phone . i thought that it was getting very difficult explaining the whole transaction by phone , so i am having krishnarao who is in vince ' s group explain the transaction to you . krishna has been helping us structure the deal here in india , and he has just returned to houston from india after working with the team here . he will seek an appointment with you to explain the transaction . i would like you to please spend some time with him , and then based on the discussion please send us a note detailing how sucha a transaction would be marked to market . please cosider the fact that currently there are no such transactions from the indian side . this is a very important transaction for us , and we may need to repeat this in coming months , hence setting up the system to account for these maybe well worth it . also , what i am concerned about is that there will be an enron india ( eipl ) account in india based on indian gaap , and upon consolidation there will be a us gaap accounting in the us . it is here that we would like to have mark - to - market accounting . eipl is structured through mauritius , and then caymen islands . another key question to consider is that when we m - t - m the transaction in the us there will be a tax accruing in the year of m - t - m ( say 2000 ) . however , in india , as a result of the accrual accounting , there will not be any income showing till the year 2002 or 2003 . we will need to know how that would get treated , and whether there is a way to get credit for the tax payable in the us . i am also confused about whether us tax would be levied , since none of the income is being brought back into the us ( remains overseas - subpart - f and other concerns ) . finally , we have been working hard in structuring a fixed price contract and getting a fixed for floating swap in the us ( this is still not allowed to indian corporates ) . i need you to think about this too , and see if some type of accounting will solve this issue . krishna knows what i am talking about , and will brief you on the same . krishna - please walk bob through the three structures we had worked here . look forward to your help and comments . this is going to be an exciting project for us all . regards , sandeep .",0 +"Subject: xms memo over the next several months enron will be phasing in a new expense - reporting product , concur technologies  , expense management system ( xms ) . you will be able to prepare your expense report , send it for approval , and transmit it for payment using the intranet . it will be far more user - friendly than the excel - based form currently in use and will provide a truly paperless process . in addition , the system efficiently integrates with the sap accounting system . on october 16 , employees who used a prior version of the product upgraded to the most current release . on october 30 , it will be available to enron corp employees , company 0011 . the rollout to other groups will continue through january 2001 . rollout announcements will be made to each business unit . in houston , it central will provide four training sessions per week . to enroll in a class go to itcentral . enron . com and click on services > training > schedules . those in outlying locations and those who prefer on - line training can use leap by signing on to sap . enron . com and clicking on training , then leap . use xms ( lower case ) as the user id and password . we are excited about this new system and hope you will find it useful . if you have questions regarding its use contact it central at ( 713 ) 345 - 4727 or visit their website .",0 +"Subject: carnegie mellon resume pre - select list hello everyone . it is time for the spring recruiting season to begin and select the candidates we would like to have on our pre - select list . my coordinator will be handing out the resume books this morning . please call alyse at extension 57339 with your eb locations so we can be sure to get the resume books to you . please email me your top 10 picks by noon , friday , january 26 th . thank you for your continued support and i look forward to working with you all this season . kristin gandy associate recruiter associate / analyst program amh",0 +"Subject: remaining work vince , i shipped you the paper along with my note to don . however , i wanted to share with you what i feel are the remaining "" to dos "" . specifically , 1 . we need to document carefully the forces that were behind the original transformation of enron . specifically , the fallout from deregulation ( take or pay contract defaults , etc . ) , the impact of the losses from the oil trading operation , the nationalization of the peruvian pipeline , and the leveraging up to fend off the carl ichan takeover attempt . 2 . we need to complete / beef up the network strategy section . 3 . finally , the concluding section needs to be carefully crafted to "" hammer home "" the basic principles underlying the transformation . what do you think ? hope you have a great weekend . john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : lst chapter of training book george , we shall be able to accommodate one or two extra people in the first round . we shall be glad to repeat the seminars starting soon for a bigger group . we would like to learn form experience how to run it . by the way , we had an option training for ees ( roughly 150 people , over a few weeks ) . i can give you the materials and we can repeat it if you think it ' s useful . vince george hopley 01 / 05 / 2001 09 : 01 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : re : lst chapter of training book vince - i had heard about this derivatives class from clayton and i am inquiring about the possibility of someone outside of the research group being able to attend . if so , i would like the opportunity . let me know if it is possible . thanks , george shirley crenshaw @ ect 01 / 05 / 2001 07 : 58 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect , anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles weldon / hou / ect @ ect , praveen mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane green / hou / ees @ ees , seksan kiatsupaibul / hou / ees @ ees , kate lucas / hou / ect @ ect , nelson neale / na / enron @ enron , rabi de / na / enron @ enron , kenneth parkhill / na / enron @ enron , jaesoo lew / na / enron @ enron , jason sokolov / hou / ect @ ect , steve bigalow / na / enron @ enron , tom barkley / na / enron @ enron , rakesh bharati / na / enron @ enron cc : subject : re : lst chapter of training book good morning everyone : here is the much anticipated copy of the lst chapter of the training book "" energy derivatives "" . as previously stated the training will begin on friday , january 19 th from 11 : 30 - 1 : 00 in 30 cland every first and third friday thereafter in 49 cl . if you have any questions , please let me know . thanks and have a great day ! shirley",0 +"Subject: rtp project vince , targetted conference date is th - f june 21 - 22 at stanford . enclosed in the recent revision to what i sent before . great to meet you , hill - retail notes . rtf hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: var numbers for the 26 th hi vince , i apologise that i did not send you the following mail . . . kirsteee - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 28 / 07 / 2000 20 : 21 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : kirstee hewitt 27 / 07 / 2000 20 : 33 to : andreas . barschkis @ mgusa . com cc : bjorn hagelmann / hou / ect @ ect , grant masson / hou / ect @ ect subject : var numbers for the 26 th hi andreas , i have run the var model for the 26 th july and have attached a zip file of the results : the total var is $ 4 , 170 , 653 and the cu position is $ 1 , 852 , 876 . i have had trouble getting hold of you so i thought i would summarised what i wanted to talk about ( also i thought i would give your ears a rest ! ) basically it is wrt the second point in your mail yesterday ( we briefly discussed it earlier ) . the fax you sent me to explain the risk calculation suggested that you use a 5 day period of adjustment to calculate the risk ( in this case it is called capital at risk ) . the var calculation for our model is for a one day holding period which means that your risk factor will be reduced by a factor equal the sqrt ( 5 ) or 2 . 24 . since : old risk factor ( % ) = 1 . 65 * ( std of the price movement ) = 3 . 99 % new daily risk factor = 3 . 99 / 2 . 24 = 1 . 78 % which actually equates to std of approx 1 . 1 % a day . i am happy with this as a estimate of the vol as the annualized spot vol we are showing for cu is approx 19 % which equates to approx 1 . 2 % daily . using this new risk factor for the daily var the cu positions would give a var ( for the 19 th ) of approx $ 2 m which is less that the figure we estimated ( $ 3 , 100 , 568 ) . the other thing is that by taking net numbers we are disregarding the term structure of the price curve / vol curve and position curve and are hence collapsing everything into a one factor model which means that it is difficult to compare the numbers . i hope that this helps to explain our number . hopefully we can talk tomorrow , cheers kirstee",0 +"Subject: the garp 2001 convention : gentle reminder the garp 2001 convention ohp ; lcd projection ) . ? also , if required , please do not forget to book your hotel accommodation , as rooms will not be reserved for garp speakers and delegates after the middle of january . attached is a hotel booking form for your convenience . ? if you have any questions or queries please do not hesitate to contact me , though i will be out of the office until 2 nd january , 2001 . ? finally , i would like to wish you a wonderful festive season and a happy & prosperous new year . looking forward to meeting you in new york in february . ? kind regards ? andreas ? _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp , conference director tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900 andreas . simou @ garp . com ? don ' t miss the garp 2001 convention , program details via our web site www . garp . com - hotel form . doc",0 +"Subject: d - g energy systems vince & stinson , just wanted to keep you informed of the status . helyette has said that she will send a proposal by saturday . karla - - - - - - - - - - - - - - - - - - - - - - forwarded by karla feldman / hou / ect on 03 / 08 / 2000 01 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - geman on 03 / 08 / 2000 12 : 27 : 06 pm to : "" karla feldman "" cc : subject : re : enron - contract dear ms feldman , thank you for your email . vince kaminski had mentioned your name to me and i am pleased to get in contact with you . i am making slight adjustments in the license to make it as admissible to you as possible ( it has been sold so far to major utilities in europe ) . my husband and second passport are us and i am using the help of a lawyer in my family . i will email you a license proposal by saturday . sincerely at 15 : 57 06 / 03 / 00 - 0600 , you wrote : > > > dear ms . geman , > > hello . my name is karla feldman . i work at enron corp . as a contract > administrator . vince kaminski and stinson gibner have asked me to contact you > to obtain additional information pertaining to the purchase of the d - g energy > systems application . they are interested in purchasing one ( 1 ) license . > > could you please send me , or have your attorney here in the states send me the > pricing and your software license agreement for our review ? > > my address is : > > karla feldman > enron corp . > 1400 smith street , room 2262 > houston , texas 77002 > > my phone number is ( 713 ) 853 - 6754 > my fax number is ( 713 ) 646 - 8545 > my e - mail address is : karla . feldman @ enron . com > > thank you very much . i look forward to hearing from you or your attorney . > > karla feldman > enron corp . > contract administration > h , lyette geman professor of finance university paris ix dauphine and essec",0 +"Subject: re : factor loadings for primary curves tanya , i went through the comparisons for the liquids curves and the appearance of clear parallel shifts , etc , do begin to emerge when fewer forward prices are used . it looks sensible . i have passed the graphs over to the liquids people , and i have asked them to identify rough term structure months when illiquidity begins for these curves . it might coincide with your assumptions . i am surprised by brent and dubai , which should be wti - clones . naveen tanya tamarchenko @ ect 10 / 04 / 2000 04 : 35 pm to : naveen andrews / corp / enron @ enron , vladimir gorny / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , kirstee hewitt / lon / ect @ ect subject : re : factor loadings for primary curves naveen & vlady , jin yu finished debugging the vatrfacs code and now it calculates factor loadings for every "" primary "" curve ( except power curves ) . i am sending you the calculated factors : most of them don ' t look good . 60 forward prices were used in calculations for each commodity . i reran the code using fewer forward prices depending on the commodity ( 12 prices for c 3 gc , mtbe , nc 4 , so 2 , 17 prices for nxho , 18 - for sa , 24 for c 2 gc , lax _ jfk , , 30 - for condensate , dubaicrude , brent , , 48 for nsw , semichem - risi ) these results are in most of them look much better . please , review . we will have to add a column in rms _ main _ curve _ list to specify how many forward prices we want to use for each commodity , and then use the new factors in the var model . tanya .",0 +"Subject: restricted list neither ena / rac / egf employees nor family members or others living in their household or financially dependent on the ena / rac / egf employee may purchase or sell securities of any entity ( or derivatives thereof ) listed on the restricted list for your or their personal or related accounts or recommend the purchase or sale of such securities to any person , except with the prior approval of the compliance department in consultation with the ena legal department . in addition to the trading restrictions above , should you at any time possess non - public material information about any public company , you , your family members and anybody that is financially dependent on you , are restricted from trading in that issue , and you may not disclose the non - public material information to anyone that does not have a business need to know . company name stock symbol 3 tec energy corp . tten active power acpw adrian resources adrrf beau canada exploration ltd bau cn belco oil & gas corporation bog bonus resource services corp bou brigham exploration bexp canfibre group ltd . cfgl carrizo oil & gas inc . crzo crown energy croe cynet , inc . cyne cypress energy cyz firstworld communications inc . fwis fuelcell energy , inc . fcel hanover compressor co . hc ice drilling enterprises inc . idf industrial holdings , inc . ihii inland resources , inc . inln kafus environmental industries , inc . ks nakornthai strip mill public co ltd nsm set paladin resources plc plr ld paradigm geophysical pgeof place resources , inc . plg cn queen sand resources , inc . qsri quicksilver resources inc . kwk saxon petroleum , inc . sxn cn southwest royalties swroy startech seh cn syntroleum corp . synm tejon ranch corp . trc tetonka drilling tdi transcoastal marine services , inc . tcms the restricted list is solely for the internal use of ena / rac / egf . no one may engage in discussions regarding whether a security is or is not on the restricted list with persons outside ena / rac / egf without specific clearance from the compliance department in consultation with the ena legal department . in addition to the above , you are reminded that pursuant to enron corp . ' s risk management policy ( "" policy "" ) , no ena / rac / egf employee may engage in the trading of any "" position "" ( "" position "" means any commodity , financial instrument , security , equity , financial asset or liability that are authorized for trading in the policy for the benefit of any party other than ena / rac / egf , whether for his / her own account or the account of any third party , where such position relates to ( i ) any commodity , financial instrument , security , equity , financial asset or liability which falls within such employee ' s responsibility at ena / rac / egf or ( ii ) any energy commodity . the prohibitions listed above do not replace or modify the policies set forth in ena ' s policies and procedures regarding confidential information and securities trading , enron corp . ' s risk management policy , or enron corp . ' s conduct of business affairs . should you have any questions regarding the above , please contact me at ext . 31939 .",0 +"Subject: re : wti crude price and ny harbor resid prices vs henry hub and new york city gate gas by month michael . thanks a lot for a very quick response . it looks fine . please , forward it to margaret carson . please , explain the data source . she may expect nymex as the data source for natgas and wti . vince michael sergeev 04 / 11 / 2000 09 : 41 am to : vince j kaminski / hou / ect @ ect cc : subject : re : wti crude price and ny harbor resid prices vs henry hub and new york city gate gas by month vince , here ' s the numbers and two charts . the charts represent the same information but have different styles . one has all of the prices on the same scale , and the other has crude and resid on one scale and natural gas on another . ms",0 +"Subject: option visualization vince and stinson , i did some reserach on the option visualization . here is one of the findings . check this web site , the image looks impressive : this is done through a free software livegraphics 3 d and mathematica . take a look of the demo on the web site mentioned above to see if it is good enough for our purpose . zimin ps : - - - - - - - - - - - - - - what is livegraphics 3 d ? livegraphics 3 d is a non - commercial java 1 . 1 applet to display and rotate three - dimensional graphics produced by mathematica in html pages . it may be used without charge for any non - commercial purposes . mathematica is a program for symbolic and numeric mathematics by wolfram research , inc . . wolfram research is also responsible for licensing livegraphics 3 d for commercial purposes . livegraphics 3 d enables all mathematica users to put almost any three - dimensional graphics computed by mathematica directly onto a html page , such that everyone with a web browser supporting java 1 . 1 ( e . g . communicator 4 . 0 or internet explorer 4 . 0 or higher ) can view and interactively rotate the graphics without any additional software . additionally livegraphics 3 d is able to show animations , calculate stereo graphics , integrate hyperlinks , and display bitmap backgrounds .  %",0 +"Subject: here ' s the typeset version vince , attached is a copy of the typeset version that i will be reading today . i will check to make sure that all the changes you gave me this weekend are incorporated . i will also be writing a 200 word summary for the paper today and will pass that by you as well . have a great day . john p . s . i ' ll call shirley about the revenue question i sent you yesterday . - 134 martin - cxl . pdf john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : meeting with mark schroeder - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 02 / 18 / 2000 08 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - - ajay . khandelwal . ftmba 99 - 00 @ cranfield . ac . uk on 02 / 18 / 2000 06 : 07 : 50 am to : "" pinnamaneni krishnarao "" cc : subject : re : meeting with mark schroeder hi mr . rao ! thanks a lot for your mail . i would be meeting mark and mr . paul dawson on lst march and would let you know the outcome of the meeting . in the mean time i am enjoying my mba program and hope that the outcome of the meeting would be positive . best regards ajay | | "" pinnamaneni krishnarao "" | | | | | | | | | 17 / 02 / 00 08 : 20 am | | | | | | | to : ajay . khandelwal . ftmba 99 - 00 @ cranfield . ac . uk | | cc : ( bcc : ajay khandelwal / cusom ) | | subject : meeting with mark schroeder | hi ajay ! hope you are doing well . i was wondering if you met with mark and what you guys decided . let me know either way . if it doesn ' t work out with mark , i will arrange something else through our research group . krishna .",0 +"Subject: re : mscf speaker series thx , we are very anxious to hear her answer pierre - philippe ste - marie - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - pstemarie . homestead . com - - - - - original message - - - - - from : to : cc : ; sent : friday , august 11 , 2000 10 : 55 am subject : re : mscf speaker series > > pierre - philippe , > > i have contacted allison bailey to ask her to move her visit > to the campus to coincide with my presentation . > i hope to hear from her soon . > > vince kaminski > > p . s . nice web site > > > > > > > > "" pierre - philippe ste - marie "" on 08 / 10 / 2000 05 : 13 : 53 pm > > to : > cc : > subject : mscf speaker series > > > > dear mr . kaminsky , > > just checking if there was any progress . . . or anything i could do to help > you . > > sincerely , > > pierre - philippe ste - marie > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > pstemarie . homestead . com > > > > >",0 +"Subject: phone time dear dr . kaminski thanks for your arrangement . i have received email from shirley . either wednesday or thursday will be fine to me . i am looking forward to talking to you at that time . it is always my pleasure to work with you . best wishes quentin kerr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 625 tel : ( 07 ) 33461428 department of mathematics , the university of queensland",0 +"Subject: re : good morning john , it does not sound silly to me . i don ' t get that many opportunities to sit down with those guys in a relaxed atmosphere and chat . i shall read the notes and get back to you . i have just come back from philadelphia and have to catch up with a few things . vince "" john d . martin "" on 12 / 06 / 2000 09 : 39 : 50 am to : vkamins @ enron . com cc : subject : good morning vince , i know that you are in philadelphia today but wanted to ship you my "" first pass notes "" before i leave town in the morning . please edit / add to or delete anything you think is appropriate . my objective in the notes is just to get things down on paper before too much time has passed . when i place something in quotes this indicates a direct quote . i ' ll give you a call next week when i get back to town . thanks again for a truly memorable experience . i plan to frame jeff ' s enron model . it may sound silly to you guys but we academics really appreciate opportunities like the one i got on monday . what a truly spectacular day . take care , john p . s . andy gave me his note care describing the demand for a peaking plant but i wasn ' t able to get him to sign it . i hope i did not offend him by asking for his signature on that silly graph . after i left his office it occured to me that he might think i was making light of him . please explain to him that i was not and will treasure his simple model as capturing the essence of optionality in a real asset . - . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : enron / stanford program nick , dinner on sunday would work for me . i shall stay in the bay area till monday morning . vince nick bambos on 09 / 28 / 2000 08 : 33 : 38 pm to : vince . j . kaminski @ enron . com cc : subject : re : enron / stanford program hi vince , i am on the technical program committee of the infocom 2001 conference , and we are meeting in new york city on saturday , october 14 th , to select papers for the conference program . i ' m leaving stanford on friday and getting back on sunday . it might be a possibility to have dinner together on sunday , if that would work for you . in that case i would have to reschedule my flight to land in sfo earlier than i ' m currently scheduled to land . would dinner on sunday work for you ? any chance we can meet monday for lunch ? i look forward to seeing you . best regards , nick vince . j . kaminski @ enron . com wrote : > > nick , > > i shall be in stanford oct 14 - 15 , visiting my family . > i would be glad to meet you ( and possibly giuseppe - your call ) for lunch . > please , let mer know if you are free on one of these days . saturday would > work better for me . > > vince > > nick bambos on 09 / 21 / 2000 02 : 09 : 46 pm > > to : stinson . gibner @ enron . com > cc : vince . j . kaminski @ enron . com > subject : re : enron / stanford program > > stinson , > > great ! i ' m looking forward to a very productive collaboration . > i ' ll immediately start doing giuseppe ' s papers , for him to work > on the enron / stanford program . > > many thanks to you and vince , and i hope to see you soon at stanford > or enron . if i remember correctly , vince is visiting stanford in > october . > > best regards , > > nick > > stinson . gibner @ enron . com wrote : > > > > nick , > > > > i spoke with paul racicot , head of trading for ebs , north america this > > morning . he said that he is happy to send the $ 100 , 000 for your program > > from his budget . i have forwarded to him the draft letter to accompany > > the funds and will try to follow up to make sure that the money is sent > > promptly . > > > > - - stinson",0 +"Subject: re : summer internship jinbaek , this is fine though you are welcome to spend more time with us this summer . vince jinbaek kim on 03 / 04 / 2001 03 : 45 : 40 pm to : vince . j . kaminski @ enron . com cc : subject : re : summer internship dr . kaminski , thanks for your answer . before i tell you the time frame , i ' ll need to talk with my advisor , first . because here is an on - going - project . i need to coordinate the schedule . i ' ll appreciate it if you understand my situation , and give me some time ( less than a week , of course ) . for your reference , probably the dates i ' d like to ask you will be from mid - may to mid - july ( 2 months ) warm regards , jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > jinbaek , > > you can coordinate the details with me . > let me know what the time frame is for you > and we shall send you an appropriate offer . > > vince > > > > > > jinbaek kim on 03 / 02 / 2001 04 : 43 : 06 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : re : summer internship > > > dr . kaminski , > > thank you very much . > of course , i ' ll be happy to have an opportunity > to work at such a wonderful company . > i was contacting with surech raghavan at deal bench team , > and was going to express my appreciation to you again > after settling down process with them . > > for the period of working , > i still need to coordinate with my advisor and > may need to adjust according to that . > but anyway , i ' ll try to coordinate smoothly . > > please let me know whether i should keep contacting > with deal bench team , > for working period and > for misc . living support such as finding a place , rent a car , etc . > > i appreciate you so much again , > for arranging such meetings and giving me an opportunity . > all this opportunity will not be available to me , > without your kind help . > > warm regards , > jinbaek > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > jinbaek kim > ph . d candidate > dept . of industrial engineering and operations research > u . c . berkeley > http : / / www . ieor . berkeley . edu / ~ jinbaek > > go bears ! > > : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . > : a a : _ _ . . . . . _ > : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . > : . ' : ` . : ` , ` . > ` . : ' - - ' - - ' : . ' ; ; > : ` . _ ` - ' _ . ' ; . ' > ` . ' "" ' ; > ` . ' ; > ` . ` : ` ; > . ` . ; ; : ; > . ' ` - . ' ; : ; ` . > _ _ . ' . ' . ' : ; ` . > . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; > ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' > ` . . . . . . . - ' ` . . . . . . . . ' > > > on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > > > hello , > > > > sorry for a delay in getting back to you . > > we would like very much to offer you a summer internship . > > > > please , let me know if you are interested . > > > > vince kaminski > > > > > > > > > >",0 +"Subject: re : frank , i am definitely interested in the resume . i can meet the candidate on campus when i visit my son . i am planning to come to palo alto around thanksgiving . also , energy and power risk management ( an english publication ) organizes every year in houston a power risk conference ( typically in may ) . they ask me for recommendations regarding speakers . would you be interested in participating ? vince "" frank a . wolak "" on 11 / 13 / 2000 08 : 44 : 57 am to : vkamins @ enron . com cc : subject : vince , i am writing about a student of mine who is on the job market this year . when you stopped by my office , about 18 months ago you asked if i had any students that might be appropriate for your group . although i didn ' t at the time , now i do . this student has excellent technical skills , including an m . s . in statistics and a ph . d . in economics by the end of the current academic year . his dissertation research is on the investment behavior of independent power producers in the us . as a result of research assistance he has done for me , he knows the california market very well and is familiar with the other isos . i think he would be an excellent match for you . the only problem is that he will probably have many other options available . however , i definitely think he ' s worth a look . if you ' d like him to send you a cv , please let me know . thanks . frank wolak professor frank a . wolak email : wolak @ zia . stanford . edu department of economics phone : 650 - 723 - 3944 ( office ) stanford university fax : 650 - 725 - 5702 stanford , ca 94305 - 6072 phone : 650 - 856 - 0109 ( home ) world - wide web page : http : / / www . stanford . edu / ~ wolak cell phone : 650 - 814 - 0107",0 +"Subject: re : vacation shirley , no problem . vince shirley crenshaw 01 / 07 / 2000 03 : 56 pm to : vince j kaminski / hou / ect @ ect cc : subject : vacation vince : if it is alright , i would like to take vacation on friday , january 14 th and friday , february 4 . thanks ! shirley",0 +"Subject: re : wednesday vince , thanks for letting me know . i will see you on wednesday . regards , giuseppe on mon , 12 mar 2001 vince . j . kaminski @ enron . com wrote : > giuseppe > > the dinner is scheduled , as i have mentioned , to you at 7 : 00 p . m . > wednesday at il fornaio , canaletto room . > > both you and eric are welcome to join us . > > vince > > giuseppe a paleologo : : gappy @ stanford . edu : : : : http : / / www . gappy . org : :",0 +"Subject: entouch newsletter business highlights egm fundamentals lowell bezanis joins us from eig ( energy intelligence group ) . lowell will be a great resource for the group as he has had substantial experience covering middle east issues , as well having great contacts with the trade press . the egm fundamentals site has moved into production . our new address is http : / / egmfundy . corp . enron . com comments and suggestion should be directed to heather purcell at 54057 . heather is also managing our enterprise - wide contract with pira for oil , electricity , natural gas and natural gas liquids . eim finance the primary focus for the eim finance group is to assist transaction teams in the execution of complicated transactions in which enron capital is being deployed . this may consist of executing the funding of specific transactions in either the bank or capital markets . currently the team is focusing on the creation of several off - balance sheet funding vehicles that can be drawn upon to fund multiple transactions , as well as the financing of the recently announced daishowa acquisition . in addition , the group is focusing on the creation of an inventory finance vehicle that can be utilized to fund multiple steel ( or other commodity ) inventory financings . bill brown leads the group and notes , "" this is a very exciting time at enron . eim is a great example of utilizing the enron wholesale business model in commodities other than gas and power . the ability to finance complicated transactions by using financial engineering skills developed around enron creates a competitive advantage to transaction teams and will allow us to develop new products and fund those products competitively without using large amounts of enron capital . "" in the news  & vision is dandy , but sustainable company excellence comes from a huge stable of able managers . if you don ' t believe me , then go read first , break all the rules : what the world ' s greatest managers do differently ( simon & schuster , 1999 ) , by gallup execs marcus buckingham and curt coffman . here ' s a boiled - down version of what they found : great managers are an organization ' s glue . they create and hold together the scores of folks who power high - performing companies .  8  ) tom peters , fast company , a subsidiary of u . s . news & world report ( 2 / 20 / 01 ) . revised presentation library link : you can access the analyst slides at the url below . simply go to this url , click on the enter button , and you have access to all the presentations made at this meeting . http : / / 172 . 28 . 92 . 190 / bowne / welcome new hires egm - leticia mcashan / financial operations ena - leann walton / research transfers ena  ) joseph wagner , marcus edmonds , santiago garcia , stacy dunegan , shane green , roman zadorozhny , praveen mellacheruvu , seksan kiatsupaibul , charles ward , victor munoz paulette roberts egm  ) steven jacobellis , margaret cowan , alisa green eim  ) deborah chance , eugenio perez nuggets & notes  & our vision for 2001 is to go from  & the world  , s leading energy company  8 to  ( .  & the world  , s leading company  8 - - jeff skilling at the all - employee meeting . "" can someone tell me which bank is dying to lend to the steel industry ? "" - - bill brown , vice president / finance eim  & there  , s no such thing as a comp emergency .  8  ) sheila knudsen , vice president / human resources ena news from the global flash weather deal enron has traded a weather derivative deal with the rock garden restaurant in london ' s covent garden . based on a ' cold day ' index , the deal protects the rock garden from a summer that has too many days below a certain temperature between march and june . once a number of days has been reached , the rock garden will receive a payout for each further day below that reference temperature . the payouts have been weighted to reflect the greater earning potential in some months compared to others . in a blind auction , enron beat six other risk takers to price the deal . legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: december 11 , 2000 ews prc meeting attached is an agenda and attendee list for the december 11 enron wholesale services group prc meeting . the first part of this meeting will involve a review of the prc results below vp in ena , eim , egm and enw , in addition to a discussion and approval of promotion nominations . the vp preranking will begin at 9 : 30 am and will include preranking of vp ' s in ena , eim , egm , enw , calme , esa and apachi . please note on the attendee list which part of the meeting you need to attend . the meeting is at the st . regis hotel ; however , please note a change to the colonnade room . should you have any questions regarding this meeting , please contact sheila knudsen at x 36628 in houston .",0 +"Subject: power 2000 / eprm 2001 as a speaker at eprm ' s highly successful power 2000 event in houston , i am writing to inform you of our 2001 annual congress and to introduce myself . i will be responsible for the production of all north american eprm events having moved from our banking conference and training course division in july . just to update you on the whereabouts of the eprm team , emma wolfin is developing our technology events for waters conferences and joel hanley will be starting his new role as an eprm journalist from november lst . eprm 2001 will be held in houston on the 14 th , 15 th & 16 th of may and i am keen to start the initial research as soon as possible . i intend to call each power 2000 speaker within the next two weeks . initially , i would like to provide you with advanced notice of the event and wish to clarify some issues . what current industry developments merit streams or pre / post conference seminars at eprm 2001 ? what research are you or your company involved in that would justify inclusion in eprm 2001 ? aside from your own work , what subjects are currently at the cutting - edge of energy risk management ? who else would you recommend as a potential speaker ? ( regulatory bodies , academics , practitioners ) any assistance at this initial stage of research is appreciated . you can email me or call on + 44 20 7484 9883 . i look forward to working with you on this event . paul bristow senior conference producer , eprm conferences",0 +"Subject: re : tony hamilton thanks for clarifying that vince . vince j kaminski 05 / 04 / 2001 15 : 00 to : chris mahoney / lon / ect @ ect cc : tani nath / lon / ect @ ect , mark tawney / hou / ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , scott moncrieff / lon / ect @ ect , christie marshall / lon / ect @ ect , richard smith / lon / ect @ ect , norma villarreal / hou / ect subject : re : tony hamilton chris , e hired tony to support global markets but jeff shankman decided that , given highly specialized nature of his work it makes sense to put him in the research group , with a dotted line to mike roberts who is running our weather group . given that his work will directly and exclusively benefit gm , it makes sense for research to charge his expenses to global markets . we can adjust allocations to reflect his contributions to different sub - units of gm . tony spent the last few weeks in houston training for his position in london with mike roberts . we are very excited about the prospect of working with him . vince chris mahoney 04 / 05 / 2001 03 : 56 am to : tani nath / lon / ect @ ect , mark tawney / enron @ enronxgate , vince j kaminski / hou / ect @ ect cc : scott moncrieff / lon / ect @ ect , pierre aury / lon / ect @ ect , christie marshall / lon / ect @ ect , richard smith / lon / ect @ ect subject : re : tony hamilton tony was hired to work for global markets . think costs should be assigned to vince or mark but if you believe those costs should be for my group let me know . tani nath 05 / 04 / 2001 09 : 33 to : chris mahoney / lon / ect @ ect , scott moncrieff / lon / ect @ ect , pierre aury / lon / ect @ ect cc : christie marshall / lon / ect @ ect , richard smith / lon / ect @ ect subject : tony hamilton i now have tony on one of my rcs ( research ) . i understand he will be doing weather forecasts for some or all of you , and that he has a desk allocated in global . i need to recharge his costs - can someone please advise the right cost centre . many thanks , tani",0 +"Subject: the national forum on corporate finance mr . fastow , i ' m writing all of our participants and confirming plans for the upcoming corporate finance meetings on may 4 - 5 here . as a reminder , you are slated to sit on the executive option / equity dilution panel on saturday morning . dave yermack from nyu , the number one expert on this issue , is presenting at that session . ( again , serving as a panelist should require little preparation on your behalf . ) also , you and your wife are welcome to attend the dinner on friday evening , may 4 . it will be held in the baker institute across from the business school . tom copeland is our speaker - ( i think he plans to focus his remarks on real options ) . vince kaminski has told me he will be at the dinner , however his wife is out of town and will not be . please call me direct if i can be of any help or assistance . i look forward to seeing you soon . i ' ve attached a copy of the program along with a name rooster of those planning to attend . dave ikenberry * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: re : video conference scheduling hello all : the enron corp . research group has a standing reservation on thursdays from 11 : 30 - 1 : 00 pm in conference room eb 30 cl . we understand the agreement to be that unless top management requests this conference room we will have it . if for some reason you do need to move us , we would appreciate it if you would find us a substitute room . the following information is per your request . requesters name : shirley crenshaw , sam smith , kevin moore sites to be included : london and portland site contact names : london : ben parsons - 207 - 783 - 7041 portland : michael schilmoeller - 3 - 3135 date , time & length : every thursday , from 11 : 30 - 1 : 00 pm co . name : enron corp . research group co . # : 0011 co . rc # : 100038 conference room : we have a standing reservations for eb 30 cl no . of people : 30 - 35 if you need anything else , please let me know thanks and have a great day ! shirley crenshaw 3 - 5290 enron north america corp . from : videoconference . @ enron 03 / 15 / 2000 06 : 13 pm sent by : enron announcements @ enron to : all enron downtown cc : subject : video conference scheduling in order to improve the video conferencing services offered to the enron community , the video conference group will be implementing the following procedural changes . these changes will be effective immediately . conference scheduling : please route all video conference requests via email to ' videoconference ' ( one word ) or by phone to 713 - 345 - 8500 ( x 5 - 8500 ) . once room reservations are complete , conferences will be scheduled and confirmation notices sent to the requestor via email . each requestor will receive a confirmation notice the business day preceding scheduled conferences . the following information will be required for all conference requests : requestor name and contact number sites to be included in the conference site contact names along with associated phone numbers date , time and duration of conference company number / rc or cost center of requestor preferred conference rooms ( near - end and far - end ) technical problems : should problems arise during a video conference , call 713 - 345 - 8555 and a technician will be immediately dispatched thanks in advance for your cooperation , video conferencing support",0 +"Subject: invitations to presentation only hi christie , when do you sleep ? 2 am , ugh ! ok , you were correct , my invitation was to those people within enron that the students talked with before interviewing competitors , and it was an invitation to the presentation only . i didn ' t think any of them would be invited to the dinner , and probably none will even come to the presentation . the invitation did elicit one request for the final report though , so maybe it wasn ' t a complete waste . i didn ' t realize that the dinner had turned into a box visit . that sounds great . i wish the group could have made it to dinner before the first game , that would have made the whole slumming experience better . now they ' ll get the royal treatment at enron field . it ' ll be great . vince invited 4 people from rice : dennis w . loughridge , director of energy consortium ; lounghrid @ rice . edu carrie miller , director of mba program ; cmiller @ rice . edu deborah barrett , inst . communications , barrett @ rice . edu dr . wil uecker , associate dean for executive education , uecker @ rice . edu loughridge wrote back saying he ' ll come , i don ' t know about the others here are the 6 students emails : "" ritwik \ ( ronnie \ ) ghosh "" , "" ivy ghose "" , "" luigi calabrese "" , "" pravas sud "" , "" syed \ ( farhan \ ) iqbal "" your 2 from rice makes a total of 12 from rice , i guess let me know if you would like me to do anything else related to monday look forward to seeing you then ken",0 +"Subject: re : eol competitors - - - - - - - - - - - - - - - - - - - - - - forwarded by li sun / na / enron on 01 / 29 / 2001 11 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : drew ries / enron @ enronxgate on 01 / 29 / 2001 11 : 15 am to : li sun / na / enron @ enron cc : subject : re : eol competitors li , globally there are probably over 80 "" competitors "" to eol . none of these competitors have a meaningful market share . some of the names that jump to mind are the following , but it should be easy to find others by surfing the web . good luck . drew dynergy direct houston street altra true quote intercontinental exchange enymex coral connect koch energy epetroleum . com red meteor trade spark american petroleum exchange fuel spot",0 +"Subject: interview with the enron research group good morning frank : vince kaminski and the enron research group would like to bring you to houston for an interview , sometime around the last of januray or the first of february . our human resources rep will be contacting you as to the best day and time for you . could you please furnish me an electronic version of your resume ? i will need this to pass to the hr dept . the people in the research group that will be interviewing you are : vince kaminski managing director and head of research stinson gibner vice president krishna krishnarao director ( will be out of the office until the end of january - thus the time frame ) vasant shanbhogue vice president tanya tamarchenko director zimin lu director thank you very much and we look forward to seeing you soon . sincerely , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: cplex - - - - - - - - - - - - - - - - - - - - - - forwarded by tom halliburton / corp / enron on 05 / 25 / 2000 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 05 / 22 / 2000 11 : 56 am to : grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , tom halliburton / corp / enron @ enron cc : subject : cplex - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 05 / 22 / 2000 11 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : samer takriti @ enron communications on 05 / 22 / 2000 11 : 46 am to : stinson gibner / hou / ect @ ect cc : chonawee supatgiat / corp / enron @ enron , ravi thuraisingham / enron communications @ enron communications subject : cplex stinson , krishna mentioned that tom wants to buy ( may have bought ) xpress . tom ' s argument is that xpress ' s language allows the user to express special ordered sets ( certain types of constraints ) in a convenient fashion . chonawee and i just talked to two of cplex ' s consultants ( whom i know personally ) . they both mentioned that these sets are recognized and handled implicitly within cplex . as a result , there is no need for their modeling language to express these constraints explicitly . as a result , i feel that we should go with cplex . both chonawee and krishna seem to have the same impression . i need to get a final vote on this one so that we can order the licenses . this has been dragging on for too long . - samer [ chonawee , my address book does not recognize ena users . please forward to grant , krishna , and tom ]",0 +"Subject: schedule hi vince thanks for the chat earlier today . slava is out this coming week ( 5 th - 9 th march ) , then i ' ll be out for the next two weeks ( 12 th - 23 rd march ) . i expect we ' ll both be around from 26 th march onwards , though i will be away again at paris risk 10 th - 11 th april . cheers , steve",0 +"Subject: confirmation of your order this is an automatic confirmation of the request you have placed using it central . request number : ecth - 4 v 9 my 9 order for : kenneth parkhill user has a en 600 with 64 mb of memory and needs upgrade to 256 mb . enron it purchasing * please send all status inquiries regarding this request to : mailto : receiving & hardware @ enron . com",0 +"Subject: ethylene margin collar model dear all : let us meet early this afternoon . here is the overview of the model : 1 ) the ethylene margin collars are priced using asian spread option . the forward curve and volatility curve are provided by the desk . the correlation between the ethylene and ethylene cost starts from the historical spot correlation 50 % and grows with the maturity . 2 ) the overall 40 mm payout cap is modeled sepereately . i fitted the historical spread ( 10 years data ) to a mean reverting model with stronger mean reverting strength on the floor side . the model produces trajectories that are statistically simular to the historical data . then the expected payoff is computed through simulation . at the meeting we will discuss the assumptions and present the results . zimin",0 +"Subject: accounting adjustment kim , fyi . i checked on the progress of the accounting adjustment and was told it would happen this month . vince",0 +"Subject: re : wednesday ronnie , regarding the parking situation downtown the closest parking garage with visitor parking is the one at allens center . your agenda , to define - what the scope of the project is - what do you expect of the project - - in other words what are you trying to find out from the study , this will help define the scope - discuss a timeline - tools that we can use at enron - are there any projects at enron ( past or present ) that we can draw on or build on sounds good . do you all have the original scope vince wrote up ? although it is broad , its a good beginning for your scope . once you flesh - out the scope , we ' ll see if any existing reports can be found that may be helpful . regarding industry research check out red herring and other online resources . see you later ken",0 +"Subject: re : credit rating contact ? kim , i spoke with bill bradford , vp in enron ' s credit department , and he offered to field your questions regarding credit . he will be in the office this week . you can call him at 713 - 853 - 3831 . regarding nymex traders , what kind of trader are you interested in ? larry gagliardi trades nymex crude products . let me know if you need his number again , or if you think someone else would be more helpful . good luck ken _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ we are still interested in talking to someone in the risk assessment group about credit rating systems . could you get us the name of the contact who trades directly with nymex ?",0 +"Subject: hello team we are very excited to be able to welcome your alp team to enron . we are looking to working with you this semester . to kick things off , we would like to invite you to cacciatore ' s this thursday for dinner ( 1 / 25 / 01 , 7 pm ) . if you can ' t stand italian cuisine , or would like to try a different day or time , please feel free to make a suggestion . we look forward to meeting you . ken 713 / 345 - 4638",0 +"Subject: 2001 research allocation to ebs vince , i hope you are well . a question if i may . i noticed that ebs ' s allocation for 2001 from the corporate research group ' s budget was $ 1 . 44 m . could you please give me an ' heads - up ' on what i can expect for the dollars - in terms of people , on - going projects , anticipated work - program . i ' m aware that stinson in our point person , but i ' ve seen him for a long while . a breakdown / schedule would be great . i appreciate your help . thanks . barry .",0 +"Subject: credit risk model comments - at this point . comments from rick jones on the credit reserve model . anita dupont is setting up a meet with rick jones to discuss these . vince & bill - if you want to join the meeting , please let me or anita know . regards , krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 11 / 2001 09 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - - richard b jones @ ees 04 / 10 / 2001 04 : 16 pm to : pinnamaneni krishnarao / hou / ect @ ect cc : subject : credit risk model comments - at this point . - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 04 / 10 / 2001 04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - richard b jones 03 / 23 / 2001 05 : 53 pm to : cheryl lipshutz / hou / ees @ ees , trushar patel / corp / enron @ enron , michelle . wenz @ enron . com , gayle muench / enron @ enronxgate , jeremy blachman / hou / ees @ ees cc : subject : credit risk model comments - at this point . hi everyone , i have run the model and , along with the contract briefs i have some questions the number of trials , numerical roundoff , and random number generator randomness statistical properties . the first two are not a problem in this application but the last one could be . has anyone examined the effect of using different random number generators on enron ' s aggregate credit risk ? 7 ) there is one last point here . for most of the above points , the "" improved "" analysis could make the credit risk be higher . rick",0 +"Subject: re : thesis on electricity price jump - diffusions bernard , my coordinates : vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com yes , we are going into a very interesting summer both here and in the uk . vince "" murphy , bernard "" on 03 / 27 / 2001 01 : 23 : 04 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : thesis on electricity price jump - diffusions hi vince , can you e - mail me your mailing address in houston and i will send you a hard copy of the above today . apologies for delay , but i wanted to ensure that les clewlow had received his copy in sydney before distributing any other copies . incidentally , today ( march 27 th ) is a red letter day in the uk as the neta / new electricity trading arrangements have gone ' live ' . should be interesting to observe the development of the paper market in the coming months - you ' re no doubt aware that ipe have just launched an electricity futures contract . regards bernard - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 01 march 2001 15 : 37 to : murphy , bernard cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com subject : re : 1997 risk paper on pricing of electricity derivatives bernard , yes , i can read a dvi file . you can also cc my home address : vkaminski @ aol . com . i shall try to send you an answer to your question on weekend . vince "" murphy , bernard "" on 03 / 01 / 2001 09 : 18 : 58 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : 1997 risk paper on pricing of electricity derivatives vince , i can send you a scientific word dvi file ( at the weekend ) if you can read scientific word files ? the dissertation hasn ' t been reviewed by les or the external yet - although its been at forc for 2 months . i think that the empirical chapter is probably the one which would be of most relevance to both our company ' s businesses - although i ultimately didn ' t have the time to ' explicitly ' price the jump risk - premium which i conjectured is possibly implicit in the prices of exchange - traded electricity futures - options - rather i developed an implicit estimation procedure which will enable a rough assessment ( with a little bit of further work , but not too much ) be made of the price of jump risk in wholesale power markets . in other words , i assumed spot jump - risk to be undiversifiable , and essentially devoted 2 theoretical chapters to : 1 ) proving that a jump - diffusion trading model is "" incomplete "" ( synthesising the securities markets framework with martingale representation theory ) - note that i did not assume that markets could be dynamically completed with ' term structure ' securities as in the hjm w / jumps papers of shirakawa and das and ; 2 ) deriving an explicit risk - adjustment process for ' implementing ' the price of jump - risk using a jump - diffusion marginal indirect utility of wealth process ( ie . a jump - augmented production economy approach in the spirit of cir , bates , ahn whereas in the latter the driftless forward supposition means that i have to capture mean - reversion via the futures volatility function , and jumps are less easy to calibrate . any suggestions ? regards bernard - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : 01 march 2001 14 : 54 to : murphy , bernard cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com subject : re : 1997 risk paper on pricing of electricity derivatives bernard , i am forwarding your message to my assistant and she will mail you a reprint . i would be glad to take a look at your dissertation . is it available as a publication , working paper ? vince "" murphy , bernard "" on 03 / 01 / 2001 02 : 17 : 39 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : 1997 risk paper on pricing of electricity derivatives hello vince , my name is bernard murphy - i received your e - mail address from les clewlow , who was my phd supervisor at the financia options research centre at warwick business school . i ' ve just finished my phd on electricity price jump diffusions : a theoretical and empirical study in incomplete markets - hence my interest in electricity price modelling and derivative pricing . i was looking to get hold of a copy of your 1997 paper , which has recently come to my attention : "" the challenge of pricing & risk - managing electricity derivatives "" , the us power market , risk publications , pp . 149 - 171 . and les suggested that i contact you directly ( les is travelling at present and doesn ' t have an electronic copy available ) to request an e - copy . incidentally , i am lecturer in finance / financial mathematics at university of limerick ( ireland ) and have taken a year out to work for caminus uk , where i am working on introducing and developing a markets - based approach ( spark - spread ) to real asset valuations in the uk power industry . thanks in advancve bernard murphy",0 +"Subject: re : installation of new programs i gave you local admin rights on your laptop yesterday . what you have to do is to log into the laptop using the local machine account . the id and the password is the same as your corp login now . the password on the local account will never change . if you have a minute today i will show you how . let me know a time . phillip randle desktop support specialist x 39665 - - - - - original message - - - - - from : kaminski , vince sent : tuesday , may 01 , 2001 5 : 17 pm to : randle , phillip c . cc : kaminski , vince subject : installation of new programs phillip , how can i install new programs on my laptop , without the administrator ' s privileges ? one example : when i travel i use aol to get access to my mail and to communicate with the office . windows 2000 does not allow me to install it . also , i have my private statistical software i often use when i work at night during business trips . i would like to load it as well . vince",0 +"Subject: re : memory hello andy , i received your e - mail . i would like to request memory for the printer on the 19 th floor . the printer name is bandit . company number - 0011 r . c . number - 100038 thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 02 / 2000 09 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 05 / 02 / 2000 08 : 55 am to : kevin g moore / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : memory kevin , makes sense vince kevin g moore 05 / 02 / 2000 08 : 10 am to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : memory goodmorning , shirley , we are in need of a printer that will allow us to print several pages , none of the printers on this floor will permit us to do that without adding memory . i even sent the print - out to bandit and it also needs more memory to print these pages . what we are printing is 189 pages . mike would like to print these pages , so instead of paying for memory on someone else ' s printer could we add memory to one of our own . please inform . . . . . . . . . . thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 05 / 02 / 2000 08 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - andy sikes @ enron 05 / 01 / 2000 02 : 41 pm to : kevin g moore / hou / ect @ ect cc : subject : memory kevin - please reply with a company numbern and rc number to charge the cost of the order to . it ' s about $ 100 . thanks , andy enron it purchasing - - - - - - - - - - - - - - - - - - - - - - forwarded by andy sikes / corp / enron on 05 / 01 / 2000 02 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - andy sikes 05 / 01 / 2000 02 : 40 pm to : andy sikes / corp / enron @ enron cc : subject : memory - - - - - - - - - - - - - - - - - - - - - - forwarded by andy sikes / corp / enron on 05 / 01 / 2000 02 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore @ ect 05 / 01 / 2000 11 : 04 am to : enron it purchasing @ enron cc : subject : memory i would like to request more memory for the printer blue - sky on the 32 nd floor . the printer is a laser jet 8100 n . the printer is located in front of eb 3240 b . we need more memory a . s . a . p thanks kevin moore .",0 +"Subject: re : durasoft - - java class rabi , you and tanya should go ahead with the course you have already registered for . i have just mentioned it fyi . i don ' t see too many problems with the course stinson may help to arrange . the alternative course can be scheduled on premises , late in the day and distributed over longer time period . vince rabi de @ enron 01 / 26 / 2001 02 : 15 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : durasoft - - java class vince , tanya and i are registered for the offsite ( productivity point ) java class ( febl 2 - 16 ) . before i go ahead and try to cancel the reservation , i need some guidance from you ( and / or tanya ) in light of the following issues : 1 . do you really want 15 people from the same group be unavailable at the same time ? 2 . enron gets 30 % discount from the list price ( $ 2125 ) of the productivity point java class . hence cost difference is $ 500 per person and not $ 1100 as originally thought . 3 . contents of the in - house class can be be tailored to match the skill level of a more homegenous group . plese advise . thanks , rabi",0 +"Subject: risk bucketing for p / l ken and greg , what we have been doing is absoutely fine under the assumption that the market conditions move relatively small ( where taylor series has fast convergence ) . however , we could run into troubles when the market has a big move . in order to have a error proof bucketing , we can use the following method ( finite - difference ) , let me know what you guys think how to implement it to the transport book . sensitivity to risk parameters , or p / l attribution by risk bucket : today ' s premium = premium based on today ' s curves last day ' s premium = premium based on last day ' s curves change due to deliverycurveshift = [ premium based on today ' s delivery price and last day ' s receipt price , volatilities , interest rate , last ' s time to expiration etc ] - last day ' s premium - today ' s change due to gammal receiptcurveshift = [ premium based on today ' s receipt price and last day ' s everything else ] - last day ' s premium - today ' s change due to gamma 2 vegal = [ premium based on today ' s delivery volatility and last day ' s everything else ] - last day ' s premium vega 2 = as above for gas volatility rho = as above for interest rate eta = as above for correlation theta = { [ premium based on today ' s days to expiration and last day ' s everything else ] - drift - last day ' s premium } / 365 . 25 [ this is a daily theta . the sprdopt function returns an annualised theta . ] gammal = 0 . 5 last day ' s gammal ' * priceshiftl 2 ? ? gamma 2 = 0 . 5 last day ' s gamma 2 ' * priceshift 2 2 drift = [ ( exp ( last day ' s interest rate * ( today - last days ) / 365 . 25 ) ) - 1 ] * last day ' s premium priceshiftl = today ' s delivery price - last day ' s delivery price priceshift 2 = today ' s receipt price - last day ' s receipt price gammal ' = theoretical gammal , i . e . gamma from spread option gamma 2 ' = theoretical gamma 2 , i . e . gamma from spread option calculation liquidation = premium of option which expired the day before , i . e . intrinsic value .",0 +"Subject: term paper please respond to vince , attached is our team ' s term paper in pdf format . please let us know if you still problem opening the file . thank you very much . best regards , winny so rice university jesse h . jones graduate school of management mba candidate , class of 2001 2018 richland court sugar land , tx 77478 home : ( 281 ) 265 - 3522 mobile : ( 281 ) 989 - 8417 e - mail : so @ rice . edu > http : / / www . ruf . rice . edu / ~ so / - modeling project . pdf",0 +"Subject: sevil yamin vince , do you want me to do this , or vasant ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2001 02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : anne labbe / enron @ enronxgate on 04 / 06 / 2001 09 : 57 am to : stinson gibner / hou / ect @ ect cc : subject : sevil yamin stinson , i am the new hr generalist for the research group because norma villarreal is moving to business analysis and reporting . earlier this week , norma and i met with vince , and he said that he was going to talk to you about writing up a list of sevil ' s projects / accomplishments for last year and this year , so that we can give her a project bonus since she did not receive a bonus during the normal prc time . at your earliest convenience , will you please email me this list so that i can get started putting together all of the paperwork so that she can receive a check on april 16 th . if you have any questions , please feel free to contact me at 5 - 7809 . i look forward to meeting you , and the rest of the group next week at vince ' s staff meeting . thanks , anne labbe '",0 +"Subject: re : transition to research group - an update molly : just to be sure that everyone understands , anshuman cannot work in the us on a bl visa - he can only come here for business meetings and training . we will have to get him the ll visa in order for him to work in the us . margaret enron north america corp . from : molly magee 01 / 19 / 2001 02 : 53 pm to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update thank you so much for the information , vince . i hope that you have a great weekend ! molly vince j kaminski 01 / 19 / 2001 02 : 39 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly , i shall ask sandeep to do it when he comes back from india next week . i have just learned that anshuman has bl visa and he can start on a project as a person delegated by dhabol power company to houston . to be absolutely above the line , i would still arrange the ll visa . vince enron north america corp . from : molly magee 01 / 19 / 2001 10 : 44 am to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update i agree that it makes sense to put the ll in place . there are several things we will need from you in order to start the visa process . the first is a fairly detailed job description for anshuman . secondly , we also need to know whether or not he will be in a managerial position here and / or managing a project . if there is someone else in your group who can furnish this job description , just let me know and i will be happy to contact him / her . as for sandeep , i have been told that he is a u . s . resident so there should be no problems with him . margaret daffin will be contacting him to be absolutely sure . thanks , molly vince j kaminski 01 / 19 / 2001 10 : 21 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : transition to research group - an update molly , let ' s get ll for anshuman , just in case . i am sure he will stay here for a while once he comes . it is quite obvious jeff shankman will have to keep him longer , given the priority of the project . i assume there are no problems with sandeep . thanks . vince enron north america corp . from : molly magee 01 / 19 / 2001 09 : 54 am to : vince j kaminski / hou / ect @ ect cc : margaret daffin / hou / ect @ ect subject : re : transition to research group - an update thank you for the update , vince . i have been working with margaret daffin with regard to anshuman ' s visa status . we will have to get an ll visa in place before he can come to the united states , even in a temporary capacity . do you want to move forward with that effort at this time , or is the possibility of him coming to the u . s . so remote that it wouldn ' t be worth the time and money right now ? molly vince j kaminski 01 / 19 / 2001 09 : 42 am to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : transition to research group - an update molly , this is an update on anshuman . please , see below . it seems that his transfer is not an issue for the time being . we can put it on a back - burner till he gets here . vince p . s . the relevant section . i also spoke about anshuman , and there was resistance to his leaing for such a long time . however , i have agreement from folks here to send him to houston for a shorter stint on dpc budget . i will try to finalize that before i leave . i will call you in the evening to just chat . - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 19 / 2001 09 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - sandeep kohli @ enron _ development 01 / 19 / 2001 04 : 32 am to : vince j kaminski @ ect cc : subject : transition to research group - an update vince , just wanted to let you know that i had a meeting with wade cline ( coo , enron india ) , neil mcgregor ( president , dpc ) , and mohan gurunath ( cfo , dpc ) today . though i had already spoken to all of them earlier about my joining your group , today it became official , and all of them supported the move . i explained to them what we would be doing , and the results expected from the henwood study . dpc would like to pay the costs for the study , and that was mentioned . there maybe some tax issues etc . that need to be cleared , and other related issues that i would like to discuss with you , so i will leave them till i get to houston . i also spoke about anshuman , and there was resistance to his leaing for such a long time . however , i have agreement from folks here to send him to houston for a shorter stint on dpc budget . i will try to finalize that before i leave . i will call you in the evening to just chat . i am very thankful to you for giving the opportunity you have . things here have deteriorated dramatically over the last few weeks . morale is quite down due to many lay - offs . i am really looking forward to returning to houston , and the family ! ! regards , sandeep .",0 +"Subject: arthur andersen 21 st annual energy symposium shirley , please , register me for this conference . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 17 / 2000 04 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - sabrina whaley @ enron 10 / 17 / 2000 10 : 09 am to : rick baltz / hou / ees @ ees , misty barrett / hou / ees @ ees , dennis benevides / hou / ees @ ees , jeremy blachman / hou / ees @ ees , jim brown / hou / ees @ ees , brian keith butler / gco / enron @ enron , ford cooper / hou / ees @ ees , cory crofton / hou / ees @ ees , wanda curry / enron @ gateway , meredith m eggleston / hou / ees @ ees , mike harris / hou / ees @ ees , neil hong / hou / ees @ ees , kevin hughes / hou / ees @ ees , shawn kilchrist / na / enron @ enron , dana lee / hou / ees @ ees , gayle w muench / hou / ees @ ees , mark s muller / hou / ees @ ees , nina nguyen / hou / ees @ ees , lou pai and tom white / hou / ees @ ees , lisa polk / hou / ees @ ees , george w posey / hou / ees @ ees , david saindon / corp / enron @ enron , scott stoness / hou / ees @ ees , wade stubblefield / hou / ees @ ees , marty sunde / hou / ees @ ees , thomas e white / hou / ees @ ees , jim badum / hou / ees @ ees , ronnie shields / hou / ees @ ees , kristin albrecht / enron communications @ enron communications , cliff baxter / hou / ect @ ect , sally beck / hou / ect @ ect , lynn bellinghausen / enron _ development @ enron _ development , john berggren / enron _ development @ enron _ development , philippe a bibi / hou / ect @ ect , kenny bickett / hou / azurix @ azurix , jeremy blachman / hou / ees @ ees , dan boyle / corp / enron @ enron , eric boyt / corp / enron @ enron , bob butts / gpgfin / enron @ enron , rick buy / hou / ect @ ect , rick l carson / hou / ect @ ect , rebecca carter / corp / enron @ enron , lou casari / enron communications @ enron communications , kent castleman / na / enron @ enron , becky caudle / hou / ect @ ect , craig childers / hou / ees @ ees , mary cilia / na / enron @ enron , wes colwell / hou / ect @ ect , diane h cook / hou / ect @ ect , kathryn cordes / hou / ect @ ect , lisa b cousino / hou / ect @ ect , wanda curry / enron @ gateway , glenn darrah / corp / enron @ enron , lori denison / hou / azurix @ azurix , timothy j detmering / hou / ect @ ect , jeff donahue / hou / ect @ ect , janell dye / corp / enron @ enron , scott earnest / hou / ect @ ect , john echols / enron communications @ enron communications , meredith m eggleston / hou / ees @ ees , sharon e sullo / hou / ect @ ect , jill erwin / hou / ect @ ect , archie n eubanks / enron _ development @ enron _ development , rodney faldyn / corp / enron @ enron , jim fallon / enron communications @ enron communications , stanley farmer / corp / enron @ enron , ellen fowler / enron communications @ enron communications , mark frevert / na / enron @ enron , mark friedman / hou / ect @ ect , sonya m gasdia / hou / ect @ ect , stinson gibner / hou / ect @ ect , george n gilbert / hou / ect @ ect , david glassford / hou / azurix @ azurix , monte l gleason / hou / ect @ ect , ben f glisan / hou / ect @ ect , sheila glover / hou / ect @ ect , eric gonzales / lon / ect @ ect , vladimir gorny / hou / ect @ ect , david gorte / hou / ect @ ect , eve grauer / hou / ees @ ees , paige b grumulaitis / hou / ect @ ect , bill gulyassy / na / enron @ enron , dave gunther / na / enron @ enron , mark e haedicke / hou / ect @ ect , kevin hannon / enron communications @ enron communications , stephen harper / corp / enron @ enron , susan harrison / hou / ect @ ect , john henderson / hou / ees @ ees , brenda f herod / hou / ect @ ect , patrick hickey / enron communications @ enron communications , georgeanne hodges / hou / ect @ ect , sean a holmes / hou / ees @ ees , shirley a hudler / hou / ect @ ect , cindy hudler / hou / ect @ ect , gene humphrey / hou / ect @ ect , steve jernigan / enron _ development @ enron _ development , sheila kahanek / enron communications @ enron communications , vince j kaminski / hou / ect @ ect , steven j kean / na / enron @ enron , shawn kilchrist / na / enron @ enron , faith killen / hou / ect @ ect , jeff kinneman / hou / ect @ ect , joe kishkill / sa / enron @ enron , troy klussmann / hou / ect @ ect , john j lavorato / corp / enron @ enron , david leboe / hou / ect @ ect , sara ledbetter / enron communications @ enron communications , connie lee / enron communications @ enron communications , billy lemmons / corp / enron @ enron , tod a lindholm / na / enron @ enron , mark e lindsey / gpgfin / enron @ enron , phillip d lord / lon / ect @ ect , drew c lynch / lon / ect @ ect , herman manis / corp / enron @ enron , keith marlow / enron _ development @ enron _ development , arvel martin / hou / ect @ ect , michelle mayo / enron _ development @ enron _ development , mike mcconnell / hou / ect @ ect , stephanie mcginnis / hou / ect @ ect , monty mcmahen / enron communications @ enron communications , kellie metcalf / enron communications @ enron communications , trevor mihalik / na / enron @ enron , gayle w muench / hou / ees @ ees , mark s muller / hou / ees @ ees , ted murphy / hou / ect @ ect , nina nguyen / hou / ees @ ees , roger ondreko / hou / ect @ ect , jere c overdyke / hou / ect @ ect , beth perlman / hou / ect @ ect , randy petersen / hou / ect @ ect , mark peterson / hou / ees @ ees , lisa polk / hou / ees @ ees , george w posey / hou / ees @ ees , brent a price / hou / ect @ ect , alan quaintance / corp / enron @ enron , monica reasoner / hou / ect @ ect , andrea v reed / hou / ect @ ect , stuart g rexrode / lon / ect @ ect , ken rice / enron communications @ enron communications , mark ruane / hou / ect @ ect , jenny rub / corp / enron @ enron , mary lynne ruffer / hou / ect @ ect , elaine schield / corp / enron @ enron , steven ( pge ) schneider / enron @ gateway , cassandra schultz / na / enron @ enron , howard selzer / corp / enron @ enron , jeffrey a shankman / hou / ect @ ect , cris sherman / hou / ect @ ect , david shields / enron _ development @ enron _ development , ryan siurek / corp / enron @ enron , jeff skilling / corp / enron @ enron , dave sorenson / enron @ gateway , wade stubblefield / hou / ees @ ees , kevin sweeney / hou / ect @ ect , ken tate / enron communications @ enron communications , gail tholen / hou / ect @ ect , sheri thomas / hou / ect @ ect , carl tricoli / corp / enron @ enron , mark warner / hou / ect @ ect , todd warwick / hou / ect @ ect , greg whalley / hou / ect @ ect , stacey w white / hou / ect @ ect , jimmie williams / hou / ees @ ees , shona wilson / na / enron @ enron , mark p wilson / lon / ect @ ect , steve w young / lon / ect @ ect cc : jennifer stevenson / aa / corp / enron @ enron , jane champion / aa / corp / enron @ enron subject : arthur andersen 21 st annual energy symposium it is with great pleasure that i invite you to arthur andersen ' s 21 st annual energy symposium . this year ' s conference will be held december 7 th and 8 th at the westin galleria hotel in houston . arthur andersen is offering a valuable program with many of the industries top executives speaking on industry wide applications . a few weeks ago some of you may have received information regarding the registration process . however , due to the level of enron ' s attendance , we have arranged to facilitate your group ' s registration . if you would like to register or would like more information about the symposium , please contact sabrina whaley at 853 - 7696 by october 31 , 2000 or forward your completed registration form to her at eb 2355 . a copy of the symposium agenda has been attached for your information . the registration fee is $ 950 per person ; however , in the past we have given enron personnel interested in attending a 50 % discount . we are excited about the upcoming symposium and hope that you will be able to attend .",0 +"Subject: re : risk european energy 2000 steve , no problem . grant will speak in place , but risk may not be aware of it yet . you can just register as my guest . vince steven leppard 03 / 03 / 2000 06 : 03 am to : vince j kaminski / hou / ect @ ect cc : subject : risk european energy 2000 hi vince do you get your regular freebie "" ticket "" for the risk conference in amsterdam ? ( you know what i ' m going to ask next . . . ) it looks like there ' s some interesting stuff , and attending would certainly broaden my horizons . would you kindly consider bringing me along ? cheers , steve",0 +"Subject: re : term project : brian , no problem . vince "" brian corbett nelson "" on 04 / 26 / 2001 08 : 15 : 14 pm please respond to to : cc : subject : re : term project : vince , i finally joined a team that only had two members . it looks like our paper will only be about 13 to 15 pages . we were wondering that since our team is less than half the size of some of the other teams , if you could possible relax the length requirement ? thanks , brian nelson - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 11 , 2001 3 : 54 pm to : nelsonb @ rice . edu subject : re : term project : brian , the last class + plus a few days ( depending on when i have to submit the grades ) . vince "" brian corbett nelson "" on 04 / 11 / 2001 03 : 35 : 14 pm please respond to to : cc : subject : re : term project : mr . kaminski , i had an interview last thusday in dallas and could not attend class . did you set a project deadline ? thanks , brian nelson - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , april 11 , 2001 3 : 22 pm to : isranir @ rice . edu ; demianen @ rice . edu ; tbal 93 @ yahoo . com ; maue @ rice . edu ; loughrid @ rice . edu ; jblantonjr @ yahoo . com ; gjohnson @ rice . edu ; emchombo @ rice . edu ; nazareth @ rice . edu ; vanstone @ rice . edu ; ganguzza @ rice . edu ; nelsonb @ rice . edu ; sssmith @ rice . edu ; wheelock @ rice . edu ; westmore @ rice . edu ; gaudette @ rice . edu ; otaylor @ rice . edu ; dikeman @ rice . edu ; jettke @ rice . edu ; litton @ rice . edu ; chilkina @ rice . edu ; helms @ rice . edu ; wankhade @ rice . edu ; monfan @ rice . edu ; kostya @ rice . edu ; pcp @ rice . edu ; yueguo @ rice . edu ; nlwbio @ rice . edu ; zhangn @ rice . edu ; rishad @ rice . edu ; yoshiura @ rice . edu ; howard @ rice . edu ; dayangd @ rice . edu ; wuwei @ rice . edu ; so @ rice . edu ; wooddy @ rice . edu ; lamas @ rice . edu ; tbalestrery @ houston . rr . com ; hingoran @ rice . edu ; planck @ rice . edu cc : vkaminski @ aol . com ; vince . j . kaminski @ enron . com ; jason . sokolov @ enron . com subject : term project : this is the list of projects for the members of the "" quant "" team . if you are working on different project , please , ignore this message . please , develop in a spreadsheet solutions / examples for the following : 1 . black - scholes formula 2 . black ' s formula 3 . develop a spreadsheet to simulate price trajectory using : a . gbm b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 ) c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 ) 4 . schwartz single factor model ( formula 6 . 12 ) 5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8 vince",0 +"Subject: program mike , here is third version of the program . it gives better results than the previous versions you have . sorry for the delay , these past 2 days i have been busy meeting with people on the new ebs project . i think the result looks reasonably good . you can try it . ( to run , type cow filename . jpg m ) smallcow . jpg : hand count 165 , program reports 140 cow 2 . jpg : hand count 1 , program reports 1 cow 3 . jpg : hand count 273 , program reports 244 cow 4 . jpg : hand count 7 , program reports 7 cow 5 . jpg : hand count 160 - 180 , program reports 165 - chonawee you can show it to the others by yourself or i can go with you . i will have to go to german consulate tomorrow morning and will be in the office around 10 : 30 - 11 am . - chonawee",0 +"Subject: re : gwen koepke anne , thanks for contacting me about this . as a matter of fact , i wanted to talk to you about it today as this matter was outstanding for a long time . i think we should go ahead and adjust gwen to manager , effective march 1 . the compensation would be her current base plus 10 k . this is what we typically do when we promote an associate to a manager . such promotions take place in march and i think gwen should not be penalized for the inefficiency of her management ( i . e . my and maureen ' s procrastination ) . on unrelated and more serious matter . gary hickerson is the primary client for maureen ' s services . he communicated to me a few weeks ago that he is unwilling to underwrite maureen ' s position ( he is in general unhappy with her contribution ) . this means that maureen will have to find another sponsor or leave enron . given her abrasive and aggressive personality finding another internal customer will be quite a challenge . gary volunteered to pay a very generous severance to maureen from his budget . i would like to talk to you about it when you have a few minutes . vince from : anne labbe / enron @ enronxgate on 05 / 02 / 2001 10 : 34 am to : vince j kaminski / hou / ect @ ect cc : subject : gwen koepke vince , just wanted to touch base with you . i have tried to contact maureen so that gwen ' s title and salary can be adjusted to manager just as you requested , but have not heard any response from her . would you like for me to wait until i hear from maureen or should i go ahead and proceed in changing her title ? i just want to make sure that gwen is in the right peer group during prc . also , i am going to try and set up a meeting with you next week through shirley to discuss any buring issues that you are experiencing , and your expectations during prc . thanks , anne",0 +"Subject: re : hello from vince kaminski at enron shmuel , thanks for the invitation to speak on october 23 rd . would you like me to split my presentation and devote some time to the enron analyst / associate program ? i plan to make presentation on energy derivatives markets ( development of the markets in the us and europe , valuation challenges , enron ' s role in developing the forward markets for natural gas and electricity ) . i shall send you the bullet points in a few days . vince "" shmuel oren "" on 09 / 18 / 2000 09 : 51 : 29 pm to : cc : subject : re : hello from vince kaminski at enron vince please send me a title for the talk with your job title etc . and an abstract for your talk . you will have about an hour . shmuel s . oren , professor dept . of industrial engineering and operations research 4117 etcheverry hall university of california berkeley , ca 94720 - 1777 e - mail : oren @ ieor . berkeley . edu phone : ( 510 ) 642 - 1836 or 5484 fax : ( 510 ) 642 - 1403 - - - - - original message - - - - - from : to : cc : sent : friday , september 15 , 2000 6 : 04 pm subject : re : hello from vince kaminski at enron > > shmuel , > > sorry for not getting back to you earlier . > if the 23 rd of october is still open , i can make the presentation on this > day . > > vince > > > > > > > "" shmuel oren "" on 08 / 30 / 2000 08 : 18 : 15 am > > to : > cc : > subject : re : hello from vince kaminski at enron > > > originally you mentioned october 23 so i reserved that week which is still > open . > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > shmuel s . oren , professor > dept . of industrial engineering > and operations research > 4117 etcheverry hall > university of california > berkeley , ca 94720 - 1777 > e - mail : oren @ ieor . berkeley . edu > phone : ( 510 ) 642 - 1836 or 5484 > fax : ( 510 ) 642 - 1403 > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > - - - - - original message - - - - - > from : > to : > cc : ; ; > > sent : wednesday , august 30 , 2000 9 : 03 am > subject : re : hello from vince kaminski at enron > > > > > > shmuel , > > > > let ' s see if we can either rearrange the seminar speakers > > or change the date of our visit to the campus . ashley baxter , our > > coordinator is very efficient and > > got a faculty room for a presentation on monday morning on the 16 th . > > > > vince > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 29 / 2000 05 : 37 : 33 pm > > > > to : > > cc : > > subject : re : hello from vince kaminski at enron > > > > > > dear vince . i spoke too soon . apparently the seminar slot on the 16 was > > already filled . i will see if i can switch the speaker for that week to > the > > following week . in any case we are on for dinner on the 16 . > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > shmuel s . oren , professor > > dept . of industrial engineering > > and operations research > > 4117 etcheverry hall > > university of california > > berkeley , ca 94720 - 1777 > > e - mail : oren @ ieor . berkeley . edu > > phone : ( 510 ) 642 - 1836 or 5484 > > fax : ( 510 ) 642 - 1403 > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > - - - - - original message - - - - - > > from : > > to : > > cc : ; > > sent : tuesday , august 29 , 2000 5 : 01 pm > > subject : re : hello from vince kaminski at enron > > > > > > > > > > shmuel , > > > > > > the date of our trip to berkeley has been set . it will be october 16 th > > and > > > 17 th > > > ( monday and tuesday ) . > > > > > > i shall be glad to make a presentation on energy derivatives markets > > > ( development of the markets in the us and europe , valuation > difficulties , > > > enron ' s role > > > in developing the forward markets for natural gas and electricity ) . > > > > > > please , let me know if this topic would be of interest to you . if this > is > > > the > > > case , i shall follow with a title and an abstract . > > > > > > by the way , are you free for dinner on monday ? > > > > > > vince > > > > > > > > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 24 / 2000 08 : 59 : 38 am > > > > > > to : "" vince j kaminski "" > > > cc : > > > subject : re : hello from vince kaminski at enron > > > > > > > > > great . our seminars are 3 : 30 to 5 pm . if it works for you please send me > a > > > title and abstract . > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > shmuel s . oren , professor > > > dept . of industrial engineering > > > and operations research > > > 4117 etcheverry hall > > > university of california > > > berkeley , ca 94720 - 1777 > > > e - mail : oren @ ieor . berkeley . edu > > > phone : ( 510 ) 642 - 1836 or 5484 > > > fax : ( 510 ) 642 - 1403 > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > > - - - - - original message - - - - - > > > from : "" vince j kaminski "" > > > to : "" shmuel oren "" > > > cc : "" vince j kaminski "" ; "" ashley baxter "" > > > > > > sent : thursday , august 24 , 2000 9 : 58 am > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > > > > > > > shmuel , > > > > > > > > thanks for the message . i am working with our recruiter , ashley > baxter , > > > > to finalize the date of the trip . i shall shoot for october the 23 rd > > > > if this date works for the rest of our team . > > > > > > > > vince > > > > > > > > > > > > > > > > > > > > > > > > > > > > "" shmuel oren "" on 08 / 23 / 2000 11 : 46 : 19 am > > > > > > > > to : vince j kaminski / hou / ect @ ect > > > > cc : > > > > subject : re : hello from vince kaminski at enron > > > > > > > > > > > > > > > > dear vince . > > > > i sent you a reply earlier this month but i haven ' t heard from you > > about > > > the > > > > date of your visit . our department has a seminar every monday . if you > > can > > > > schedule your visit on a monday i would like to invite you to give a > > > seminar > > > > which will be attended by many of our graduate students and faculty > and > > > will > > > > give you an opportunity to tell them about your program . with > > sufficient > > > > lead - time i can advertise the seminar in the hass school to their > > > financial > > > > engineering students . > > > > shmuel . > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > shmuel s . oren , professor > > > > dept . of industrial engineering > > > > and operations research > > > > 4117 etcheverry hall > > > > university of california > > > > berkeley , ca 94720 - 1777 > > > > e - mail : oren @ ieor . berkeley . edu > > > > phone : ( 510 ) 642 - 1836 or 5484 > > > > fax : ( 510 ) 642 - 1403 > > > > / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / > > > > > > > > - - - - - original message - - - - - > > > > from : > > > > to : ; ; > > > > > > > > sent : tuesday , august 08 , 2000 10 : 59 am > > > > subject : hello from vince kaminski at enron > > > > > > > > > > > > > shmuel , > > > > > > > > > > i hope you remember me . i visited you together with aram > sogomonian , > > a > > > > > good friend of mine , a few years ago . i am currently responsible , > > among > > > > > other things , for recruiting graduates with finance and / or > technical > > > > > backgrounds at the university of berkeley . i would be glad to give > > you > > > a > > > > > call and talk more about the details of our program . my colleague , > > > > > ashleybaxter , from the analyst / associate program at enron would > join > > me > > > > > as well . > > > > > > > > > > i am sending you a copy of the brochure about the analyst / > associate > > > > > program . > > > > > > > > > > vince kaminski > > > > > > > > > > > > > > > vincent kaminski > > > > > managing director - research > > > > > enron corp . > > > > > 1400 smith street > > > > > room ebl 962 > > > > > houston , tx 77002 - 7361 > > > > > > > > > > phone : ( 713 ) 853 3848 > > > > > fax : ( 713 ) 646 2503 > > > > > e - mail : vkamins @ enron . com > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >",0 +"Subject: stanford summer associate and full - time associate recruiting greg : just an update on the stanford summer associate and full - time associate recruiting efforts : we have pre - selected 19 summer associate candidates and 7 full - time associate candidates . the schedule of interviewers for round 1 and round 2 is listed below . i was able to get elliot mainzer and steve swain on the round 1 interview schedule . they were tim belden ' s picks for interviewers from his group . i have left a message for chris calger to see if he might be available for round 2 interviews and am waiting to hear back from him . listed below are logistics . let me know if you are available for friday interviews . regards , celeste roberts wednesday , march 14 , 7 : 00 p . m . to 9 : 00 p . m . dinner with students selected to interview il fornaio , the sala del canaletto room 520 cowper street , palo alto ( 650 ) 853 - 3888 attire : business casual enron attendees : vince kaminski - md brad alford - vp matt harris - vp brad romine - mgr theresa riedman - mgr steve swain - mgr elliot mainzer - mgr martin lin - mgr mauricio mora - associate celeste roberts - director althea gordon - recruiter thursday , march 15 , 8 : 30 a . m . to 4 : 45 p . m . round 1 interviews for both summer and full time associates stanford gsb career services center interviewers : theresa riedman brad romine brad alford martin lin elliot mainzer steve swain mauricio mora - greeter / alternate interviewer thursday , march 15 , 12 : 15 p . m . to 1 : 30 p . m . lunch with dean george parker ( associate dean of academics ) and sherrie taguchi ( director of career services ) . stanford gsb career services center we will be ordering lunch in . friday , march 16 , 8 : 00 a . m . to 12 : 00 p . m . * round 2 interviews for both summer and full time associates stanford gsb career services center interviewers : vince kaminski matthew harris * please note that this is an approximate time that will be based on the number of candidates who successfully pass round 1 interviews on thursday . your hotel information is as follows : stanford park hotel 100 el camino real menlo park ( 650 ) 322 - 1234 upon confirmation of your participation you will receive your hotel confirmation number . in the event that you have not received your hotel confirmation number please contact cathy lira , at x 54049 .",0 +"Subject: celebration i am so excited for my boss , mike robert ' s . i was wondering : can we do something special for him celebrating his promotion ? kevin moore",0 +"Subject: re : carnegie mellon recruiting good afternoon . i have forwarded your email to kristin gandy . she is heading up our cmu recruiting effort . some contact info : ( 713 ) 345 3214 , kristin . gandy @ enron . com we are very interested in the comp . fin . students , and would tentatively like to interview them in december , probably the week of the 11 th , and around the same time that we come to interview the mba ' s . i ' m uncertain as to the proper path forward . could you provide some details ? regards , kevin kindall sallygould on 11 / 16 / 2000 03 : 38 : 44 pm to : kevin . kindall @ enron . com cc : subject : carnegie mellon recruiting kevin , jean eisel asked that i connect with you about recruiting comp . finance students . please contact me with questions you might have about the recruiting process or if you have some dates in mind for coming to campus . i look forward to hearing from you . regards , sally gould recruiting coordinator gsia - carnegie mellon university 412 - 268 - 1311 412 - 268 - 4146 ( fx )",0 +"Subject: re : request for suggestions : vince ' s visit to sydney in july dear vince , after getting our heads together here , we would much apprecaite if you could share the research group ' s latest on - - - - var ie "" . . . repeat my workshop presentation on value - at - risk . . . "" as well as cover additional topics viz . - discuss , with application , enrons internal v @ r model , and how this is used internally . - discuss volatility modelling , and whether it is possible to maintain and trade a term structure of volatility in electricity - modelling forward curves with reference to associated markets ( eg oil ) . can we gain some insights through spreads to related market curves ( spark ) . i assume your hotel is booked already . catching the taxi is the best way to get to your hotel . since you are arriving on the weekend , if you need to contact me - my mobile is 0417 - 692295 , home tel / fax is 9232 - 8892 rgds raymond - - - - - - - - - - - - - - - - - - - - - - forwarded by raymond yeow / enron _ development on 07 / 07 / 2000 04 : 45 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 07 / 06 / 2000 09 : 20 am to : paul quilkey / enron _ development @ enron _ development cc : raymond yeow / enron _ development @ enron _ development , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : your visit to sydney in july paul , raymond , thanks for your message . sorry i did not get in touch with you earlier . the last few weeks were very hectic . i am starting right now my preparations for the presentation i am going to give at the conference . here are the details of my itinerary ( i shall send you a copy tomorrow ) . i arrive sunday morning and leave saturday morning . the conference takes place on monday and tuesday . on wednesday , i am making a presentation at the workshop on value - at - risk . i would like to stay at the conference for the duration : it ' s a great learning opportunity for me . on thursday and friday , as well as in the evenings ( except for the evening of july 18 ) , i am at you disposal . i would like to take advantage of this trip and learn as much as i can about the australian markets and discuss with you the research agenda . i shall be glad to make several presentation . i can repeat my workshop presentation on value - at - risk as well as cover additional topics . vince paul quilkey @ enron _ development 07 / 04 / 2000 05 : 23 am to : vince j kaminski @ ect cc : subject : your visit to sydney in july vince i support raymond ' s email and would welcome the opportunity to have you give a presentation ( formal or informal ) to the trading group on latest research initiatives in houston . please let us know your schedule so that we do not overly burden you during your visit . look forward to seeing you and catching up over a beer . thnx paul - - - - - - - - - - - - - - - - - - - - - - forwarded by paul quilkey / enron _ development on 07 / 05 / 2000 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - raymond yeow 07 / 04 / 2000 08 : 21 pm to : vince j kaminski @ ect cc : paul quilkey / enron _ development , kirsty hogarth / enron _ development , elliott katz / enron _ development , david gray / enron _ development subject : your visit to sydney in july dear vince , hi ! , it ' s only two weeks until the aust energy risk ( 17 - 19 july ) seminar in sydney . is risk organising your hotel ? otherwise , kirsty can organise for you , eg harbour view at the regent or convenience to the seminar location at the sheraton ? we would like to make sure that you have all the necessary "" comforts "" of home when you are with us , elliott & david can set up a desk for you in the office / trading room with phone etc so you can use one of our pc to access email or plug in your laptop . please let elliott or david kmow your requirements . how long will you be with us ? is this your first trip to sydney ? there are several of us in the office who would like to take you for a meal ( s ) / show you the sights etc and discuss the latest research findings with you whilst you are in sydney eg var . hear from you soon . raymond 725 pm 4 july",0 +"Subject: recruiting i received this email some time ago , and may not have forward it to you . i apologize for any oversight on my part . i ' ll also forward the email that i sent as a response . this , coupled with the information from sally gould , should get the comp . fin . interview process started . - kevin k . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 20 / 2000 04 : 44 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jean eisel on 11 / 06 / 2000 03 : 34 : 05 pm to : kevin . kindall @ enron . com cc : sgould @ andrew . cmu . edu subject : re : recruiting hi kevin wow you sure do pack one e - mail . i will try to answer questions . . . after each of you . . . look in the email for answers . - - on monday , november 06 , 2000 , 2 : 39 pm - 0600 kevin . kindall @ enron . com wrote : > hello . it was a pleasure to come back to cmu , and i enjoyed > interacting with the students . vince k . has expressed interest in > interviewing the computational finance students . enron will conduct first > round interviews with the mba students in december , and would like to set > up seperate interviews for the comp . fin . students . enron would like to > interview all the pittsburgh based comp . fin students , and we need to > select a date and a time . we are excited that you want to interview the comp finance students . do you want to do it in dec . or before ? let me know what best suits you . since there are only 16 individuals in the pittsburgh area . . . we should be able to accomodate you . . . would you want one or two schedules . . ? what is the formal protocol in such matters ? > all you need to do is let me know some ideal dates . . . and you send a job description and names of the students you want to interview . we will try to be as accomodating as possible . > enron is also interested in the ecommerce students as we have > ecommerce initiatives underway . it is my understanding that kristen > gandy will be the contact for such activities . if you can send me an e - mail address for kristen , i can get this strating asap . > > regarding a houston based satellite program , vince needs a proposal > in writing . would you be so kind as to send one ? what program is vince interested in having a satellite program ? when he was here he seemed less intererted in comp finance and more interested in e - commerce . i sent a note to michael shamos and tridas discussing this . let me know which program and i will see if we can work anything out ? > thanks so much , and i look forward to seeing you again in a few > weeks . > thanks kevin for you speedy response . > > > > jean e . eisel , ph . d . associate dean , admissions , coc and alumni relations gsia carnegie mellon university pittsburgh , pa 15213 412 - 268 - 2277 412 - 268 - 4146 ( fax ) currently in the news : carnegie mellon university mba program ranked 14 th in business week ' s list of the best graduate schools of business in the united states . ",0 +"Subject: re : the newvatrfacs program and testing data jin & winston , i will look at the results of 2 runs , but i will not look at the code unless it is in our version control system sccs . please , put all your version under this system , as we used to do , and as we discussed with you . thank you , tanya from : jin yu 10 / 24 / 2000 12 : 31 am to : tanya tamarchenko / hou / ect @ ect cc : wenyao jia / hou / ect @ ect subject : the newvatrfacs program and testing data hi , tanya : two versions of the newvatrfacs program : with ( v 2 ) and without ( vl ) weight are listed in the location : / rms / prod / bin / tmp / vl and / rms / prod / bin / tmp / v 2 along with testing result for the effdate = ' 20 - oct - 2000 ' . the testing results of the factors for a given ng - cluster ( a constant list : clust . dat ) are listed in / rms / prod / bin / tmp . ( the files with name like s * are the results of a test run without "" weight "" , while the files with name like t * are the results of a test run with "" weight "" ) . all source codes are listed there , including the makefile and the excuteables . should you find any problem with the program , please let me know . jin",0 +"Subject: re : my first draft quentin , i forwarded your resume to our sydney office with a request to invite you for an introductory interview . i would also like to arrange a phone interview with you sometimes next week . my assistant will call you regarding the timing . vince",0 +"Subject: thank you bill / mitch / vince , i just wanted to personally thank you all for joining us today for lunch . we have much to look forward to at baylor and with the dedication i ' ve already witnessed , it looks like we are headed in the right direction . thank you again for your support shelly jones associate & analyst program",0 +"Subject: managing director and vice president elections the managing director prc committee met this week to elect individuals to managing director and vice president positions . these employees are recognized as outstanding contributors to the organization , whose individual efforts have been instrumental in the continued success and growth of the company . we are pleased to announce the election of the following new managing directors and vice presidents . please join us in congratulating these individuals on their new appointments . managing director  ) commercial phillip k . allen , ena ( ews ) west gas trading - houston franklin r . bay , ebs entertainment on demand - houston timothy n . belden , ena ( ews )  ) west power trading - portland michael r . brown , eel  ) executive - london christopher f . calger , ena ( ews ) west power origination - portland joseph m . deffner , ena ( ews ) treasury & funding - houston timothy j . detmering , ena ( ews ) corporate development - houston william d . duran , ena ( ews ) generation investments - houston robert s . gahn , ees commodity structuring - houston kevin c . garland , ebs broadband ventures - houston ben f . glisan , jr . , corporate  ) global equity markets - houston robert e . hayes , ets comm marketing - houston phillip r . milnthorp , ena ( ews ) canada origination & trading - calgary managing director  ) commercial support sally w . beck , enw ( ews ) energy operations management - houston fernley dyson , eel finance & support services - london vice president  ) commercial gregory adams , ees mmc management - houston robert bayley , eel - uk origination  ) london jack d . boatman , ets market development  ) houston rhenn cherry , ees assets / labor  ) houston niamh clarke , egm ( ews ) liquids trading  ) london peter crilly , eel - uk origination  ) london derek j . davies , ena ( ews ) canada origination  ) calgary mark d . davis , jr . , ena ( ews ) east power trading  ) houston charles delacey , corporate finance  ) houston paul devries , ena ( ews ) canada origination  ) toronto christopher h . foster , ena ( ews ) west power trading  ) portland jeffrey f . golden , ees corporate development  ) houston michael d . grigsby , ena west gas trading group - houston troy a . henry , ees bundled sales - heavy industrial  ) houston rogers herndon , ena ( ews ) east power trading  ) houston james w . lewis , ees underwriting  ) houston christopher mahoney , egm ( ews ) liquids trading  ) london andrew marsden , ebs broadband ventures  ) london john mcclain , ebs broadband wholesale origination  ) houston kevin j . mcgowan , egm ( ews ) american coal  ) houston albert e . mcmichael , jr . , ena ( ews ) gas commodity structuring  ) houston ermes i . melinchon , central america origination  ) houston steven r . meyers , ees consumption  ) houston lloyd d . miller , ena ( ews ) portfolio management  ) houston michael a . miller , wind development / execution - general administration  ) houston marcello romano , ebs eel - broadband trading  ) london david a . samuels , enw ( ews ) enrononline - houston per a . sekse , egm ( ews ) global risk markets  ) new york edward s . smida , ebs video on demand  ) houston mark tawney , egm ( ews ) weather trading  ) houston jon thomsen , ebs business development  ) latin america / canada  ) portland barry l . tycholiz , ena ( ews ) west gas origination - houston frank w . vickers , ena ( ews ) east gas origination  ) houston amit walia , corporate , corporate development  ) houston william white , ebs global bandwidth risk mgmt  ) houston jonathan whitehead , eel ea trading  ) japan mark whitt , ena ( ews ) west gas origination  ) denver john a . zufferli , ena ( ews ) canada power trading - calgary vice president  ) commercial support beth apollo , eel financial operations executive  ) london marla barnard , ebs human resources  ) houston karen l . denne , corporate , public relations  ) houston georganne m . hodges , ena ( ews ) trading , origination & power plant accounting  ) houston phillip lord , eel transaction support  ) london peggy mahoney , ees marketing  ) communication  ) houston steven montovano , corporate , government & regulatory affairs  ) dublin laura scott , ena ( ews ) canada accounting  ) calgary richard c . sherman , ena ( ews ) transaction support  ) houston gregory w . stubblefield , ees financial planning & reporting  ) houston dennis d . vegas , calme international public relations  ) houston vice president  ) specialized technical sami arap sobrinho , esa ( ews ) legal  ) houston merat bagha , ebs sales engineering  ) houston justin boyd , eel legal  ) london mary nell browning , ebs legal  ) london jonathan chapman , eel legal  ) london robert d . eickenroht , corporate , legal  ) houston mark evans , eel legal  ) london david forster , enw ( ews ) enrononline  ) houston janine juggins , eel tax  ) london peter c . keohane , ena ( ews ) canada legal  ) calgary pinnamaneni v . krishnarao , ena ( ews ) research group  ) houston travis c . mccullough , ena ( ews ) finance origination , mergers / acquisitions  ) houston michael popkin , esa ( ews ) sa - risk management / network integration  ) houston elizabeth a . sager , ena ( ews ) physical trading  ) houston richard b . sanders , ena ( ews ) litigation  ) houston john w . schwartzenburg , eecc legal  ) houston michael d . smith , ees legal  ) houston marcus vonbock und polach , eel legal  ) london jay c . webb , enw ( ews ) enrononline systems  ) houston vice president  ) technical donald r . hawkins , ets quality management  ) houston john r . keller , ets engineering & construction  ) houston",0 +"Subject: re : blood bank vince , i must apologize . i have not had time to look over the proposal in any detail . when i first spoke with your friend , it was apparent that he was still pre - business plan stage . he has since sent me some ideas and information . i think the concept has merit , but there are so many political issues that i am concerned about the ultimate business viability . give me the weekend to look over the information . thanks , mark - - - - - original message - - - - - from : kaminski , vince sent : friday , february 16 , 2001 10 : 00 am to : mark lay / hou / ect @ enron subject : blood bank mark , any further thoughts on the blood bank concept ? please , let me know if i can be helpful ? vince",0 +"Subject: erisk interview vince : you may inteersted in the following interview which appeared on erisk . com last friday . were rick buy ' s comments about real options taken out of context ? yann bonduelle leads a 25 - person team for in london that applies decision analytics and real options theory to dilemmas ranging from valuing a biotechnology product to deciding whether to kill off an internet financial services business . here he talks to rob jameson about whether this "" theoretical "" approach to risky decision - making really helps businesses in their day - to - day balancing of risk and reward . yann holds a ph . d degree from the engineering - economic systems department at stanford university , where he studied how to apply engineering decision and design analysis to wider economic , social and business issues . he then worked as a consultant applying his decision analysis methodologies to problems that included consumer decision making about innovative products such as electrical vehicles , before joining the team in 1998 where he is now a partner . he has written widely on the application of real options , particularly in fields of life sciences , technology , and e - business , and has a special interest in the relationship between risk assessment , validation of risk data and financial valuation . how would you sum up your approach to business decision analytics ? most of our projects are set up to help businesses that face massive uncertainties of some kind . decision analysis helps people explore problems , and redesign their decision - making process to increase the chance of them making the right choices . for example , imagine a biotechnology company that has to decide whether to put itself up for sale , enter a strategic relationship , or continue to go it alone . each of those options will lead on to other value - enhancing or value - destroying scenarios . we work with the client firstly to understand and challenge the assumptions associated with their most likely business development scenarios , and secondly to help them identify decisions that would help protect or increase the value of their technology or company . quantifying technical , regulatory or commercial risks can sometimes be a challenge . in technology - intensive fields , however , we have found that managers ( often scientists ) are quite willing to describe the main sources of risk and to assess the probability that a risky event may or may not occur . how does this kind of risky decision - making relate to real options valuation ? you can ' t say what the value of an asset is until you decide what you might use it for . this means that , to form an opinion about the value of an asset , you must explore the most important decisions that you are likely to face and that will have a significant impact on the value of the asset . so decision analysis helps to define the business problem and to uncover a stream of inter - related choices that are , in effect , "" real options "" . for example , if a company is trying to decide whether to invest in a risky project , does it have the option to pull the plug on the investment at an early stage if a pilot project gives a poor showing ? that "" real "" option reduces the riskiness , and increases the potential value , of the original business plan . so real options and decision analysis are really very close to one another . but you don ' t have to believe in real options valuations to find decision analysis useful . what do you mean ? often decision analysis can help managers to identify the key risks in a strategic decision , attach weights to these , and show clearly how they interact . for many companies this "" risk discovery "" is the most valuable part of the exercise . real options theory has been criticised recently for being , well , not very realistic . is it a practical approach to valuation ? it ' s important not to hold out unrealistic hopes for the real options approach to valuation . but it ' s an exciting methodology , and it ' s also sometimes the only reasonable way of tackling a very practical problem . for example , when a firm sells an asset , the firm might have to make an independent valuation of the asset for legal or corporate governance reasons . but in many businesses today there are assets that simply cannot be valued in traditional ways because they are difficult to link to cashflows . the cashflows might not exist because the business is so novel , or they might be hidden . in some respects , a real options analysis is much closer to reality than a traditional valuation . how , exactly ? the classic way of valuing a future business is to base the calculation on a single discounted cashflow that is projected from the activity . but this doesn ' t really take account of the way that scenarios can change , or the fact that managers can react to situations as they unfold . i mentioned earlier the option to kill a project or business at an early point . but the upside is that if a pilot project yields exciting results , it might allow you to invest more quickly and reach a revenue - generating position in a much shorter time than the original business plan allows . so to value a future business we really need to look at the cashflows that might arise in a number of scenarios . this is "" realistic "" in that , if the project gets the green light , you can bet that its managers will be taking that kind of decision on the ground all of the time . what ' s the most challenging part of mapping out a decision analysis tree ? modelling the links between the variables in the decision tree - - it ' s something we have particular strengths in . but it ' s also tricky to know when it ' s worthwhile to add on more detail , and when it ' s better to draw back . in a recent erisk interview , rick buy , chief risk officer of enron , said that over the two years that enron had experimented with the real options concept , it had found it of "" limited , but not zero , use "" . why is there a slight air of cynicism about real options in some businesses today ? it ' s strange that enron would profess this attitude . a few years ago , it was widely reported to have used real option valuation to support a very profitable purchase decision . they had apparently bought cheaply some older generators in the us that generated electricity at a very high cost . they knew that they could mothball them for most of the year , and switch them on only when the electricity prices were sufficiently high . nevertheless , from a customer ' s point of view , there might have been too much hype about the methodology . one problem in the application of real options technology is that there are , perhaps , too many people trying to tweak reality to conform to their "" perfect "" model . it ' s better to aim for something pragmatic that clearly improves decisions over time . in one pharmaceutical company we worked with recently , we worked together to improve their valuation analyses by moving from a single discounted cash - flow methodology to one that took into account a rather small set of business scenarios . it would have shocked some academics and consultants , but it was an undeniable improvement on the original approach . why do you think financial institutions are only just picking up on your field , when it ' s been applied in the energy industry for 15 years or more ? it might have something to do with the relative stability of the banking world until recently , and the relatively high margins that banking lines have enjoyed . also , industries such as energy and pharmaceuticals tend to have more people with an engineering and science background . the dynamic modelling of decisions is based on methodologies originally dreamed up to help engineers design electrical and electronic systems . this approach is quite distinct from the black - scholes options analyses that the banking world is familiar with : the black - scholes approach is difficult to apply in a real options context , because everything depends on the assumptions that you put into the black - scholes model . the real options approach , on the other hand , is in a sense a way of modelling those assumptions more explicitly . but banks are now adopting some of the thinking , particularly in terms of using decision analysis to pinpoint risks and identify value - enhancing decisions , and in using real options methodologies to sort the wheat from the chaff in their more speculative investments . you mean their internet investments ? we have recently worked with a major dutch bank that had arrived late in the internet game , and then made a considerable number of investments . now that even b 2 b business models have questions marks hanging over them , and many b 2 c businesses are already under water , they wanted to work out which investments might contain real value . in this situation , it ' s a case of ranking priorities and helping the bank make sense of what could turn into a decision - making chaos , rather than sophisticated valuation . it ' s not just a case of whether an internet investment should be killed off , but the problem of whether continued funding for it should take priority over budget demands for major it upgrades in existing businesses , and so on . these are very practical questions and they have to be answered somehow . are there other areas in financial institutions that seem accessible to this approach ? yes , for example , we think it can help work out the value associated with various approaches to marketing a new bank business line . at the moment , many banks are chasing high - net - worth individuals , but it ' s not always clear which kind of individual a particular bank should decide to pursue . the bank might have a regional or industry advantage already in one particular area , for example , music business people . but what is the churn rate associated with this kind of customer ? what is the profitability associated with the customer segment ? will the time and cost benefits of the advantages the bank has in the sector outweigh any disadvantages ? weighing up this kind of complex problem , where one thing leads to and depends on another , is what decision and real options analysis is good at . is there any way of rigorously backtesting or validating real options valuations ? in all honesty , not really . the problem is that by the time the option is exercised , many of the variables surrounding it will have changed , so it ' s difficult to compare our original analysis with how things turn out . however , the value of the analysis comes not only from the final number ( "" the value of this asset is x "" ) but also from providing a thorough process , an outsider ' s point of view , an understanding of the sources of value and , in short , a bit of clearer thinking . if real options are so important , why are they so rarely cited in communications to shareholders and equity analysts ? the battle is still to convince companies to use real option valuations as a significant part of their internal analysis . even in major companies in the oil & gas , and pharmaceutical sectors , where the ideas have taken some root internally , there seems to be a lot of reluctance to use them in external communication . we are working with analysts to understand better what they need to if we are to move things on to the next step . how does the riskiness of a business , in terms of the major strategic dilemmas it faces , relate to its share value , and its capital structure ? that ' s a big question . it ' s related to work my colleagues do on the optimal debt - to - equity capital structure and gearing of a corporation , which in turn arises out of the likely revenue and cost volatilities of the business . the more volatile the business , the less gearing it can sustain , and the higher the cost of capital . our work touches on this in the sense that exercising ( many ) specific real options can allow a firm to change its nature , and thus also its risk profile . one classic example is the pharmaceutical industry . a host of different kinds of companies service that industry from "" big pharma "" companies through to smaller biotechnology startups and run - of - the - mill contract research organisations . a contract research organisation is often operating within a very competitive environment with relatively few risks - - it does not invest in drug development itself - - but also very thin margins . but in fact , a few of these companies have used the skills and knowledge they have developed to become much more substantial and profitable healthcare companies of various kinds . it ' s an example of a company exercising the real options that lie within its skills and assets to transform its own identity . rob jameson , erisk",0 +"Subject: more dalton baby info final update . . . . . i went to see dorothy , tim and the new baby on sunday . he is absolutely beautiful and dorothy and tim couldn ' t be prouder parents . his name is . . . . . drake andrew dalton and that name suits him just fine ! thanks .",0 +"Subject: re : boss ' s day kevin , no problem , a very good idea . please , submit expenses to em for signature . vince kevin g moore 10 / 10 / 2000 09 : 10 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , jose marquez / corp / enron @ enron cc : subject : boss ' s day well vince , the group has responded and ready for action . vince , we would like to take mike to happy hour for boss ' s day on the 16 th of oct . so if it is okay with you may we do so ? i am aware that you will be out on this particular day however , i would also like to ask anyone in the research group to please join us as we celebrate with mike . fyi : nothing fancy just a few drinks , laugher and conversation . thanks kevin moore p . s . please inform . . . . . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 10 / 10 / 2000 09 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 10 / 09 / 2000 02 : 35 pm to : jose marquez / corp / enron @ enron , william smith / corp / enron @ enron , elena chilkina / corp / enron @ enron , v charles weldon / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect cc : subject : boss ' s day hey everyone , i know you may not be aware that boss ' s day oct . 16 , 2000 we will celebrate as a group in the staff meeting on oct . 19 th , with the big boss vince kaminski and all the others , however , if you would like to do something special for our boss , please inform me whereby i can make arrangements . thanks kevin moore",0 +"Subject: entouch newsletter business highlights ena principal investments : three transactions to date in lq 2001 : $ 2 . 5 million investment in series c convertible preferred stock of silicon power corporation ( "" spc "" ) , a leading designer , developer and manufacturer of a wide range of power semiconductor devices and systems . spc operates through three divisions : the power components division manufactures large area semiconductors up to 125 mm which are used in high - power diodes , thyristors , gto thyristors and custom high pulse power rated devices . these components are sold directly to oem ' s in the heavy industrial , electric utility , transportation , military and medical industries . the industrial power division specializes in systems level products providing utility and power quality protection . the commercial power division designs and manufactures semiconductors made by a planar process used to make discrete power semiconductor devices and associates subsystems . more information can be obtained from kevin kuykendall ( 33995 ) , jennifer adams ( 33919 ) or from the company ' s web page at : www . siliconpower . com $ 2 . 25 million convertible bridge loan to solo energy corporation , an existing ena principal investments portfolio company . the funds are part of a $ 7 . 0 million bridge facility needed to fund overhead while negotiations continue regarding a potential acquisition opportunity . in addition to the conversion feature , ena principal investments also received warrants to purchase 2 . 75 million additional shares in solo energy . the company is developing a 100 kw microturbine , which utilizes a proprietary catalytic combustion process and turbines , sourced from the automotive and marine sectors . placement of 50 beta units is planned at test sites selected by scana ( a co - investor in solo energy ) in the 2 q and 3 q , 2001 . once the acquisition is completed , the company plans to complete an additional $ 30 to $ 50 million funding round . more information can be obtained from charlie vetters ( 39435 ) , kyle kettler ( 30423 ) or from the company ' s web page : www . soloenergy . com $ 5 . 0 million series d convertible preferred stock of encorp , inc . , an existing ena principal investments portfolio company . the funds are part of a total of $ 38 million raised in the series d round that should provide funding for the company through mid - 2002 . encorp is among the worlds leading providers of products , services and solutions addressing the growing demand for clean , reliable on - site power systems . the company  , s power technology products include grid - interconnection switchgear and energy - automation software . encorp  , s products , in combination with the company  , s engineering - services team , create dependable , on - site power solutions that can reduce the overall cost of energy for commercial and industrial customers operating in the digital economy . more information can be obtained from charlie vetters ( 39435 ) , kyle kettler ( 30423 ) or from the company ' s web page : www . encorp . com enron credit feeling exposed ? if you are looking for ways to trade some credit exposure out of your portfolio , visit enrononlinetm . enron credit now offers 3 - year and 5 - year credit default swaps for a number of companies every day on the system . industrial markets enron industrial markets has established its key goals and objectives for 2001 for the forest products and steel groups : _ firmly establish eim as a significant physical merchant by moving 3 million tons of product in each of the forest products and steel industries . _ expand international business by generating at least $ 10 million of gross margin . _ create a vehicle to gain access to 500 , 000 tons / year of market pulp . in addition , both forest products and steel are focused on creating greater physical and financial liquidity in each of their respective industries , as well as developing world class logistics and operations capabilities . eim organizational announcement forest products group the following changes are being implemented in the commercial organization in order to better focus on the group  , s mission : to be the premier market maker in physical products and financial risk management products in the forest products sector . rodney malcolm will assume responsibility for the new sales and marketing group . rob saltiel will create a new forests products origination group . bob crane will continue to be responsible for trading and risk management in all forest products markets . andy keleman will take the leadership of the transaction development group . in the news "" energy and trading giant enron corp . ( nyse : ene - news ) wants a piece of madison avenue . the houston - based company ' s latest venture is enron media services , a seven - month old outfit that aims to bring enron ' s expertise in trading natural gas and electricity to buyers and sellers of advertising space . in the process , enron wants to tap into a $ 500 billion - a - year global advertising arena . ` ` what we ' ve identified is that this business is very analogous to what we do in gas and power , ' ' enron media services vice president edward ondarza . "" - - - reuters , march 14 , 2001 welcome new hires egm - sherman franzen eim - jennifer vanlandingham ena - kim detiveaux , diane fellers , esemeralda gonzalez , eric linder , michael lorenz , noel ryan , melissa prihoda , steve mcdonnell transfers eim - lisa csikos , john jacobsen ena - robin rodrigue , maria lopez , roseann engeldorf if you love golf . .  ( would you like to experience the premier golf event , the masters ? this is your golden opportunity to see augusta and the practice rounds . there are 17 spaces now available for trip # 1 - sunday , april 1 through wednesday , april 4 . the package includes accommodations at six private homes in augusta , food and beverage , ground transportation , access to the enron tent , passes to the practice rounds and par 3 tournament , and one round of golf at jones creek . cost is $ 4975 per person ; additional cost for use of charter aircraft between houston and augusta is $ 1740 per person . this is a high - level customer - driven business opportunity . if you are interested , call dorie hitchcock at x 3 - 6978 . enrononline statistics below are the figures for enrononline as of march 14 , 2001 . ? total life to date transactions > 750 , 000 ? life to date notional value of transactions > $ 450 billion news from the global flash enpipe services the continental gas team is launching the first virtual gas transportation product in europe , enpipe services . enpipe will offer customers the ability to swap gas between the nbp in the uk and the zeebrugge hub in belgium . customers will be able to nominate volumes on a day - ahead basis , and will pay for the service by an up - front premium . this new service should encourage more participants at the zeebrugge hub , which will lead into more liquidity at other trading locations developing on the continent . similar to the virtual storage service , enbank , enpipe demonstrates enron ' s ability to offer valuable services to the market through smart risk management rather than capital - intensive infrastructure . the first enpipe auction will close on 15 march , and customers may submit their bids on enrononline . teesside gas processing plant on thursday , lst march , the teesside gas processing plant achieved iso 9001 : 2001 quality management system accreditation . this achievement is the result of 12 months hard work , enthusiasm and commitment by all plant staff and has also been a great team effort with the enron global asset organisation providing technical and moral support . an iso team was formed in february 2000 led by iris thomas ( qa coordinator ) and supported by members from all site disciplines including operations , maintenance , accounts and it . a program was implemented to prepare , write , issue and control , detailed procedures to ensure the plant was operated and maintained to the quality standards required by iso 9001 : 2001 . customer satisfaction and focus is an integral part of the standard and a great deal of effort has been put into this area . following a pre - audit in january the final accreditation audit commenced on wednesday , 28 th february , with accreditation being confirmed on thursday , lst march . legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: super saturday shelly , these are the super saturdays i can help you with : nov 10 dec 1 dec 8 dec 15 i shall be traveling on two other days . one of these trips is related to recruiting at cmu . vince",0 +"Subject: re : invitation . . . welcome new analyst reception thanks , i shall attend . vince kaminski tracy l arthur 12 / 20 / 2000 04 : 20 : 35 pm to : tracy l arthur / hou / ect @ ect cc : ( bcc : vince j kaminski / hou / ect ) subject : invitation . . . welcome new analyst reception",0 +"Subject: summer offer bhala , i double checked with hr , and the offer you received is in line with what we are offering to other graduate level summer interns . if you have better offers , i certainly wouldn ' t hold it against you for taking them over what we are offering , but we can ' t really justify raising the offer at this time . we can re - imburse you for shipping expenses up to a reasonable amount , say $ 500 , if you need to ship things down . you can just save the receipts for these expenses and shirley can fill out the necessary expense forms . best regards , stinson",0 +"Subject: interview schedule for japan office tanya , you and i will interview yumi , a candidate for darren delage in tokyo office . the time is scheduled at 4 : 50 pm next tuesday in my office . i will get the resume before the interview . please mark the interview time on your schedule . thanks . zimin - - - - - - - - - - - - - - - - - - - - - - forwarded by zimin lu / hou / ect on 01 / 12 / 2001 09 : 00 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : darren delage @ enron on 01 / 12 / 2001 11 : 59 am ze 9 to : "" mm 21 yumi "" cc : zimin lu / hou / ect @ ect subject : re : next tuesday good afternoon imokawa - san , we would like to invite you to have a brief dialogue with some members of our research team . they would like to ask you to briefly expound on your mathematical studies . if you could please contact them next wednesday at 7 : 50 am ( it should be 4 : 50 pm houston time , tuesday ) . the conversation should take no more than 20 minutes of your time , and will enable us to get a more enhanced understanding of your quantitative abilities . zimin lu , director of research , can be reached at 713 - 853 - 6388 to dial from japan , 0061 - 1 - 713 - 853 - 6388 if you could please send zimin a copy of your resume before the interview , that would be much appreciated . you can call the above number to obtain the appropriate fax number . i will be in touch with you shortly thereafter . sincerely , darren "" mm 21 yumi "" 01 / 11 / 2001 08 : 35 pm to : cc : subject : thank you darren , thank you for cordinating everything . i understand it takes time , this is only the first week of the year in japan , and i do not like to push you much . normally , i have long meetings every thursday . for other dates , i make best effort to fit the schedule for your convenience , including early morning or late evening . i am looking forward to seeing you sometime soon . sincerely , yumi imokawa",0 +"Subject: re : "" white paper "" vince & vasant , the enclosed document discusses the incorporation of detailed ensemble outputs into our mark - to - marketing routines . in the next few days i will schedule an update on smud and perhaps we could spend a few minutes discussing how to proceed with this . joe - - - - - - - - - - - - - - - - - - - - - - forwarded by joseph hrgovcic / hou / ect on 10 / 26 / 2000 12 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - please respond to dchang @ aer . com to : joseph . hrgovcic @ enron . com cc : subject : re : "" white paper "" dr . hrgovcic , we look forward to your comments . d . chang joseph . hrgovcic @ enron . com wrote : > > dr chang , > > thank you for the white paper . i have distributed > it to most of the parties concerned ( the head of our research department is > away this week ) and am gathering feedback on how to proceed . i will be at a > conference next week , but i hope to get back to you on the week of the > 30 th . > > yours truly , > > joseph hrgovcic",0 +"Subject: re : rtp project yes , i would be definitely interested . count me and osman also to participate . i will forward your email to others in ees who might be interested also . krishna . vince j kaminski 03 / 19 / 2001 08 : 12 am to : john henderson / hou / ees @ ees , pinnamaneni krishnarao / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : rtp project john and krishna , i am sending you an outline of a conference at stanford on topics related to demand - side pricing and management in the power markets . please , let me know if you are personally interested and who else in your respective organizations would like to attend . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 19 / 2001 08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - hill huntington on 03 / 15 / 2001 05 : 26 : 55 pm to : vkamins @ enron . com cc : subject : rtp project vince , targetted conference date is th - f june 21 - 22 at stanford . enclosed in the recent revision to what i sent before . great to meet you , hill - retail notes . rtf hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: meeting while in houston - - - - - - - - - - - - - - - - - - - - - - forwarded by leann walton / na / enron on 10 / 26 / 2000 10 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - pedro fernando manrique @ enron _ development 09 / 26 / 2000 12 : 26 pm to : maureen raymond @ ect cc : subject : meeting while in houston maureen , i just wanted to thank you for all your time and your great advice and support . i enjoyed talking to you and learning from your experience and also meeting all these people involved in f / x trading activities . i just want to ask you if you could send me over the mail the latest forward curves so that we use them to update our long - term plan . for the short term i will contact pushkar going forward . thanks again and i look forward to talk to you again . regards , pedro fernando",0 +"Subject: risk 2000 panel discussion dear all , ? would like to set a conference call to discuss content for the panel discussion at risk 2000 in boston on 14 june . perhaps i can suggest wednesday 31 may at noon est . i ' m on london time and am quite flexible if you would like to do earlier or indeed on another day . ? the panellists are - ? vince kaminski , enron corp richard jefferis , koch energy trading steven bramlet , aquila ? the discussion topic is ' effectively applying weather derivatives ' ? i think we need to establish a series of questions around which to facilitate discussion . we currently don ' t have a moderator and perhaps one of you could take this role on . ? i look forward to hearing from you . ? thanks , oliver ? ? ? direct : + 44 ( 0 ) 20 7484 9880 ? risk publications , 28 - 29 haymarket , london swly 4 rx fax : + 44 ( 0 ) 20 7484 9800 ? email : oliver @ risk . co . uk www . riskpublications . com",0 +"Subject: tff 2001 meeting date question hello from texas , we are trying to set up our meeting date for the 2001 conference and have run into a snag . we cannot get our san antonio hotel on the first weekend in april ( as last year ) . however , we can get the hotel and make all our "" fun "" arrangements for the second weekend in april . however , this is easter weekend . the good news is that the room rates are substantially lower because it ' s a holiday . however , we are concerned that holding the meeting on this particular friday - saturday will interfere with family plans such that some or many of you may not be able to attend . my related question to you is this : does holding the meeting on the second weekend in april ( easter weekend ) pose a problem for you ? please give us your thoughts asap even if you think you may not be able to attend this year ' s conference . we need your opinion to guide our decision . thanks and i hope to see you all again next april ( sometime ) ! john p . s . we are very fortunate to have enron return as our corporate sponsor again this year . john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: karthik rajan shirley , we interviewed by phone karthik and would now like to bring him for a visit to enron . can you either arrange it or forward to hr for them to arrange , whichever is best . while here karthik should probably talk with zimin , paulo , bob , vasant , krishna , vince and anyone else vince wants to add to the list . thanks , stinson his resume is attached below . his phone # is 765 494 2181 . - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 03 / 08 / 2001 03 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat @ enron 03 / 08 / 2001 03 : 39 pm to : stinson gibner / hou / ect @ ect cc : subject : phone interview with karthik attached is karthik resume . his transcript is in http : / / atom . ecn . purdue . edu / ~ krajan / friends / login is : k _ rajan password is : donl 23 - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 03 / 08 / 2001 03 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 02 / 28 / 2001 07 : 09 pm to : stinson gibner / hou / ect @ ect , zimin lu / hou / ect @ ect cc : subject : phone interview with karthik please let me know if you guys available sometimes next tuesday or wednesday late afternoon or evening . zimin , karthik is a chem eng student at purdue . he found me from www and contacted me for job opportunities . attached is his resume . - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 02 / 28 / 2001 07 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" karthik rajan "" on 02 / 28 / 2001 09 : 41 : 56 pm to : cc : subject : re : opportunities in enron hi chonawee supatgiat , nice to hear from you . next week would be ideal for me too . tuesday or wednesday late afternoons / evenings would be ideal for me . my number is 765 532 3182 . looking forward to talking to you , stinson and zimin . thanks , karthik . - - - - - original message - - - - - from : to : "" karthik rajan "" sent : wednesday , february 28 , 2001 3 : 48 pm subject : re : opportunities in enron > > hi karthik , > stinson , zimin , and i would like to speak with you over the phone . when > will be a good time ? we are thinking about sometimes next week . stinson > and zimin are also in the research group . > - chonawee >",0 +"Subject: extending eu gas guidelines to central and eastern europe - cera insight title : extending eu gas guidelines to central and eastern europe url : http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2184 overview : a comprehensive reform of gas legislation in central and eastern europe is bringing the region in line with the european union  , s gas directive . this is true both for the countries expected to enter the union by 2004  ) 05  * czech republic , estonia , hungary , poland , and slovenia - - and for candidates whose entry is not scheduled before the end of the decade - - bulgaria , latvia , lithuania , romania , and slovakia . in cera  , s view current developments regarding the establishment of a legal framework for the internal gas market in eastern and central europe look promising from an investor  , s point of view . the candidate countries presented a review of progress made in the implementation of the eu gas directive during a two - day workshop held by the european commission and the world bank in paris in november . many of these countries have been reforming their energy industries throughout the 1990 s as part of their transition to a market economy . the results have been mixed , particularly in the utility industries . the 1998 gas directive ( adopted in august 2000 ) now offers a compelling incentive for eu candidate countries to transform their gas industries , while providing a road map to guide them . the critical points relevant to harmonization between the european union and candidate countries include the following : * legal framework and regulation . the legal framework is the cornerstone of enlargement and the yardstick of harmonization in europe . as a result , in all candidate countries in 1999  ) 2000 energy laws were either updated or newly established along the principles spelled out in the gas directive . regulatory bodies have been created by law and are operating in every country , although issues of staffing , financial autonomy , and independence from political influence are not uniformly resolved . * third - party access ( tpa ) and long - term take - or - pay contracts . all candidate countries agree that tpa is a key to market competition . therefore , all have adopted it or intend to do so in their new legislation . although the commission favors regulated tpa , the specific approaches to tpa enforcement in the candidate countries remain unclear in some cases . in particular , the implementation of tpa will have to address the issue of long - term take - or - pay contracts with russia that were signed by all major domestic gas companies and somewhat preempt competition . russian gas is for the most part sold to single , traditional state - owned operators that dominate their internal markets . a balance will need to be struck between these incumbent dominant players and the competitive environment . this is made more complicated by their ownership of large volumes of russian gas supplied in kind in exchange for transit rights to west european customers . article 25 of the directive provides for ! a derogation to companies experiencing difficulties stemming from take - or - pay obligations . this derogation would apply to the companies of candidate countries with historical and commercial links with the russian gas industry . furthermore , article 26 allows derogations to those member states with only one major gas supplier , to those with an  +  + emerging gas market status ,  ,  , or to those without a direct gas connection to the grid of another member state . most of the candidate countries would in principle be able to call on one or more of these grounds for derogation when they join the european union . * price cross - subsidies . residential gas tariffs are artificially low and are financed partially through higher rates applied to industrial consumers . in various countries , tariff increases and the phasing out of subsidies have been scheduled , but such decisions remain politically sensitive to enforce . this has recently been emphasized by high gas prices owing to the linkage of imported gas to oil prices . all candidate countries have set legal frameworks that include the phasing out of cross - subsidies as part of sector reform , but the actual implementation will remain politically difficult . as table 1 indicates , price rebalancing is already under way in most countries expected to enter the european union by mid - decade , but the legal framework itself cannot guarantee the pace of reform . the same goes for candidate countries that have only recently introduced eu - complying energy laws and whose entry to the european union is likely to happen in a longer time frame . * unbundling . most countries understand that the unbundling of transmission companies from their supply businesses is the second critical element of liberalization . to date , unbundling the accounts of these two businesses is all that has been adopted by the member states or in the candidate countries . in the future , the commission is likely to press all eu countries for legal separation (  & structural unbundling  8 ) of the businesses , and candidate countries will have to pursue their reform of the gas sector accordingly . table 1 gives an overview of the state of play in candidate countries . as the table shows , the countries belonging to the second group have only very recently undertaken the reform of the gas sector in accordance with the directive , whereas change had been introduced earlier in the countries scheduled for the first wave . * * end * * follow above url for full report . come shoot the rapids with us at ceraweek 2001 , "" shooting the rapids : strategies and risks for the energy future "" in houston , february 12 - 16 , 2001 ! for more information and to register , please visit http : / / www 20 . cera . com / ceraweek / e - mail category : insight cera knowledge area ( s ) : european gas , to make changes to your cera . com account go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: re : vol model from : pavel zadorozhny on 08 / 31 / 2000 06 : 45 pm to : grant masson / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , naveen andrews / corp / enron @ enron cc : subject : vol model it ' s been a while since i put this together . some assumptions , such as those about the current var methodology may not be correct . but my ideas and the math involved are hopefully reasonable . let me know if you have any questions . pavel , x 34778",0 +"Subject: fw : mark boland - cv vince : tony vasut , another recruiter , is bringing mark boland in for a series of interviews on 3 / 20 and 3 / 21 , and asked if there was any chance that you or someone in your group would be able to interview him . his resume is attached , and i will also send you a list of his deals under separate cover . shirley has told me that you will be in and out for the next several weeks , so if you are unavailable would you please suggest someone else in your group who might be able to interview mark ? thanks , as always , molly - - - - - original message - - - - - from : vasut , tony sent : tuesday , march 13 , 2001 9 : 59 am to : magee , molly subject : fw : mark boland - cv molly : here is mark ' s resume as discussed . please let me know if anyone in research ( preferably vince ) is available to meet w / him on either 3 / 20 or 3 / 21 . thanks , tony - - - - - original message - - - - - from : port , david sent : monday , march 12 , 2001 10 : 46 am to : vasut , tony subject : fw : mark boland - cv - - - - - original message - - - - - from : mark . boland @ seb . se @ enron sent : monday , march 12 , 2001 8 : 10 am to : port , david subject : mark boland - cv > to summarize my situation : i ' m in charge of structuring equity linked , ir , > fx , commodity and other > linked bonds and investments for one of northern europe s leading banks . > i ' m 34 years old and married to lisa who is swedish . i have over 7 years > in the structured derivatives business in capital > markets , with a solid wall street foundation at bankers trust and overseas > at a more senior level > of sales , structuring and managing deals from conception to completion . > > > > > thanks and regards , > mark > > mark m . boland > seb merchant banking > 10640 stockholm , sweden > > telephone + 46 8 5062 3224 > cell + 46 70 772 3224 > > this e - mail is from seb , skandinaviska enskilda banken . it may contain > privileged and confidential information and is intended for the named > recipient ( s ) only . if you are not an intended recipient , please notify us > immediately by reply e - mail , delete this e - mail from your system and > destroy any copy hereof . > - boland . doc",0 +"Subject: re : london visit paul , thanks for your message . i am in process of finalizing my plans for the trip to london in the end of september . i delayed responding to you message till i had more specific information . unless there a major change in my schedule , i shall arrive in london on monday morning ( september 18 ) and leave on thursday in the evening . please , let me know what would be convenient time to meet . you can send me an e - mail message and my secretary will contact to confirm the date and place of the meeting . my assistant ' s name is shirley crenshaw and her phone number is 713 853 5290 . i look forward to meeting you , tom and julian . vince kaminski paul . e . day @ uk . arthurandersen . com on 08 / 25 / 2000 11 : 53 : 02 am to : vince j kaminski / hou / ect @ ect cc : tom . o . lewthwaite @ uk . arthurandersen . com , julian . leake @ uk . arthurandersen . com subject : london visit i understand that you will be in london around 20 september . tom lewthwaite has asked me to arrange a meeting between you , tom and julian leake . i understand that you have met tom and julian before . i would also like to attend - i am a manager in our uk financial services practice with responsibilty for enron from a uk financial services perspective . we would like to discuss any risk management concerns that you may have and any internal initiatives with which we could assist . if you are happy to meet on this basis , i would be grateful if you could let me know how you to proceed ( whether i should arrange timings with you , your secretary , someone in london etc ) . you can contact me on + 44 20 7783 7446 ( at enron ' s london offices ) or on this e - mail address . kind regards paul day * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: re : a request zimin , i also enjoyed our talk . thanks very much . i ' ll send you the paper as soon as its done . duane - - on thursday , march 15 , 2001 , 1 : 58 pm - 0600 zimin . lu @ enron . com wrote : > > > dr . seppi , > > nice talking to you about swing contracts and your recent work on > american - monte > carlo approach . i am interested to read your preprint papers . > > my address is > > zimin lu > enron corp , eb 1967 > 1400 smith street > houston , tx 77002 - 7361 > > > zimin > > > > > > > > > > > > ds 64 @ cyrus . andrew . cmu . edu on 03 / 15 / 2001 11 : 59 : 59 am > > to : zimin . lu @ enron . com > cc : > subject : re : a request > > > great . i ' ll be in my office . my number is 412 - 268 - 2298 . > > duane > > > - - on wednesday , march 14 , 2001 , 3 : 57 pm - 0600 zimin . lu @ enron . com wrote : > > > > > > > dr . seppi , > > > > my phone number is 713 - 853 - 6388 . i will call you > > tomorrow afternoon around 1 : 30 pm houston time . > > > > zimin > > > > > > > > > > > > > > > > > > > > ds 64 @ cyrus . andrew . cmu . edu on 03 / 14 / 2001 03 : 15 : 02 pm > > > > to : zimin . lu @ enron . com > > cc : vince . j . kaminski @ enron . com > > subject : re : a request > > > > > > dr . lu , > > > > i would be grateful if i could talk with you some time about the typical > > terms one sees in swing , take or pay , virtual storage , etc . options . > this > > is related to some research some colleagues and i are doing applying > recent > > innovations in monte carlo valuation of options with early exercise . we > > would like to illustrate our techniques on some examples which look > > realistic . when would be convenient for you ? > > > > i look forward to talking with you . > > duane seppi > > > > - - on wednesday , march 14 , 2001 , 8 : 44 am - 0600 vince . j . kaminski @ enron . com > > wrote : > > > > > > > > duane , > > > > > > i shall be traveling for the rest of the week but my colleague > > > dr . zimin lu will call you to talk about different > > > structures . > > > > > > vince > > > > > > > > > > > > > > > > > > ds 64 @ cyrus . andrew . cmu . edu on 03 / 13 / 2001 09 : 54 : 24 am > > > > > > to : "" vince j kaminski "" > > > cc : > > > subject : re : a request > > > > > > > > > vince , > > > > > > sorry that i missed your call yesterday . i have a meeting from 2 - 3 > today > > > ( tuesday ) , but otherwise any time in the afternoon works for me . let me > > > know what is convenient for you . thanks for your help . > > > > > > duane > > > > > > * * * * * * * * > > > duane seppi > > > > > > graduate school of industrial administration > > > carnegie mellon university > > > pittsburgh pa 15213 - 3890 > > > > > > tel . ( 412 ) 268 - 2298 > > > fax ( 412 ) 268 - 8896 > > > > > > email ds 64 + @ andrew . cmu . edu > > > > > > > > > > > > > > > > > > > > > > > * * * * * * * * > > duane seppi > > > > graduate school of industrial administration > > carnegie mellon university > > pittsburgh pa 15213 - 3890 > > > > tel . ( 412 ) 268 - 2298 > > fax ( 412 ) 268 - 8896 > > > > email ds 64 + @ andrew . cmu . edu > > > > > > > > > > > > > > * * * * * * * * > duane seppi > > graduate school of industrial administration > carnegie mellon university > pittsburgh pa 15213 - 3890 > > tel . ( 412 ) 268 - 2298 > fax ( 412 ) 268 - 8896 > > email ds 64 + @ andrew . cmu . edu > > > > > * * * * * * * * duane seppi graduate school of industrial administration carnegie mellon university pittsburgh pa 15213 - 3890 tel . ( 412 ) 268 - 2298 fax ( 412 ) 268 - 8896 email ds 64 + @ andrew . cmu . edu",0 +"Subject: ebs ' s approach to storage trading hi ravi - - thanks for you note . i would be very interested in a meeting to establish an ebs - wide approach to storage . it ' s a huge opportunity . we could expand the 2 : 30 pm friday meeting to include all interested ebs people and discuss the topics below . could shalesh coordinate this meeting and also coordinate the ongoing effort firm - wide ? have i omitted anything below ? as i see it , here are the key storage initiatives that ebs should undertake , and who is involved up to this point . 1 . - establish storage contract terms and pricing who ' s involved : virawan , jean mrha beach a . define terms for storage needed for ebs products ( mediacast , mediatransport , and new products ) b . define general terms for other storage contracts 2 . - establish storage pooling points ( spp ) who ' s involved : shalesh , richard reichardt , mark palmer , kara knop who ' s needed : other designated people from bloomer and griebling groups , jim crowder ' s group input on alliances a . define technology needed servers , storage devices control software for physical delivery b . decide optimal spp locations at / near existing bandwidth trading pooling points at / near existing ebs city pops at a hosting partner location c . engage optimal partners to create spp ibm ibm global services tivioli ( storage management software ) emc sun compaq existing storage portal vendors ( e . g . storage networks ) 3 . - establish storage trading benchmark who ' s involved : unknown who ' s needed : research group a . define unit of measure for trading contract ( e . g . , terabyte - month ) b . establish pricing mechanisms 4 . - identify ( and monetize ) storage market opportunites who ' s involved : unknown who ' s needed : cox ' s group , bloomer ' s group a . storage intermediation opportunities b . establish virtual storage portal service for ebs ravi thuraisingham 03 / 08 / 00 11 : 00 am to : mark s palmer / enron communications @ enron communications , jean mrha / enron communications @ enron communications , john bloomer / enron communications @ enron communications , richard reichardt / enron communications @ enron communications cc : kara knop , stinson gibner / hou / ect @ ect , vince kaminski , david cox / enron communications @ enron communications , shalesh . ganjoo @ enron . com subject : meeting for friday on storage hi mark , i have not met you yet but heard a lot of good things about you . i would like to discuss with you and possibly with john bloomer and richard reichardt about the ebs research ' s role in supporting the storage market development from the origination and trading perspective . there are several people in various groups that are talking about storage but here is what ' s my take on our involvement - - please correct me or suggest otherwise . shalesh ganjoo is our lead analyst on this effort . in addition to his effort with your group , he is presently supporting jean mrha with pricing and standardization for a traded storage maret - - stinson gibner is directly supervising him in this effort . shalesh came to us through referal from david cox - - david discovered him at one of his speaking engagements . shalesh had talked to david about traded storage market development some time last october and david refered shalesh to enron research group . we hired shalesh for general analyst position and now he is pulled into all aspect of this storage effort . currently , he is our point person ( with stinson or i supervising his effort ) who is supporting jean mrha and you on the subject . kara knop has aproached shalesh with request for some support and shalesh and she are sorting out each other  , s role in this regard . as per my discussion today with david , we need to coordinate this storage effort from the perspective of modeling market assessment etc . for this i suggest shalesh and his effort so that all parties involved can benefit from collective effort within one central source . based on david ' s and my assessment of shalesh ' s capabilities , i would like to suggest that the commercial heads use shalesh for his creative thinking , understanding of the market and analytical capabilities and not just for data gathering and simple research effort . we can add other staff as we see the need and as you request them . please respond this e - mail with your comments if this sounds like aplan , so that we can support this effort efficiently and in a scalable manner . kind regards , ravi . a bit about ebs research group john bloomer and richard reichardt have met me and are aware of my role and stinston gibner ' s role in ebs . i lead a team of quantitative professionals via a group we are calling ebs research . this group reports to stinson gibner ( vp ) and vince kaminski ( md and head of enron research ) . stinson and vince are the original founders of enron corp research that has been charged with model development efforts to support enron energy trading and other enron business . enron research is involved in all aspects of enron buinesses ( ees , international , corporate affairs such as fas 133 and other accounting and new product ( derivatives ) development , etc . ) . within ebs research , there serveral professionals supporting kevin howard ( cfo office ) , john griebling , tom gros and jean mrha , david cox ( via boris ) , and the war room . our main area of focus is with jean mrha ( trading ) and john griebling ( optical network design and optimization , etc . ) . we play a key role with john griebling ' s go forward network design and implementation through our responsiblity to provide traffic engineering analysis and modeling effort . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 08 / 00 09 : 31 am - - - - - shalesh ganjoo @ ect 03 / 07 / 00 08 : 01 pm to : mark s palmer / enron communications @ enron communications cc : ravi thuraisingham / enron communications @ enron communications @ enron subject : meeting for friday on storage dear mark , i am looking forward to presenting my competitive analysis on the storage market on friday to you and others . ravi thurasingham will be calling you to find out if we ( research group ) can assist your group in any other way . please let me know if you need any information before we meet . thank you . sincerely , shalesh ganjoo",0 +"Subject: enron earth day "" trash bash "" enron is hosting a special event on saturday , march 31 st . the first annual enron "" trash bash "" to clean up the banks of buffalo bayou between shepherd drive and sam houston park . i am chairing the check - in team which consists of : registering all of the volunteers handing out enron t - shirts and caps passing out gloves and garbage bags making clean up section assignments for anyone who might be interested in helping me , please call me at ext . 30329 . also , we need a lot of volunteers to walk along buffalo bayou and pick up trash . this would be a great family project , a good project for your childs youth group or boy scout or girl scout troop . it will also be fun . they will have live bands , lyou get an enron t - shirt and enron baseball cap , lunch will be served at sam houston park and there are a lot of good door prizes . if you want to volunteer for the "" trash bash "" clean up , just show up at sam houston park on saturday , march 31 , 2001 , at 8 am to register . clean up starts at 9 am and lunch will be served at 11 : 00 am and after lunch door prizes will be drawn and then you can go home feeling like you have done your part for houston ' s waterway environment . i hope you will think about it and bring your friends , family , ect . and help enron clean up the environment . thanks , anita",0 +"Subject: re : f / u to dr . kaminski @ enron from iris mack happy to do so , vince . hope your holidays were wonderful ! molly vince j kaminski 11 / 27 / 2000 01 : 39 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : f / u to dr . kaminski @ enron from iris mack molly , i would like to invite iris for an interview . you can contact her at the addresses she listed below or at her e - mail address . the following persons will participate at the interview : stinson gibner zimin lu tanya tamarchenko vasant shanbhogue myself stinson and i will take her out to lunch . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 27 / 2000 01 : 35 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" iris mack "" on 11 / 21 / 2000 04 : 12 : 43 pm to : irismmack @ hotmail . com , vince . j . kaminski @ enron . com cc : subject : re : f / u to dr . kaminski @ enron from iris mack hi again , i am visiting several family members and friends over the next few days . therefore it will be hard to contact me . however , next week i will be easier to reach . my contact details in nyc are as follows . i will be staying at the following hotels : washington square hotel from november 28 th for 3 nights ( tue , wed and thur ) 212 . 777 . 9515 marriott nyc financial december lst for 1 night ( fri ) 212 . 385 . 4900 at any rate , i will still try to reach you on tomorrow morning . if all fails , we will try to reach each other next week . happy thanksgiving , iris > from : "" iris mack "" > to : vince . j . kaminski @ enron . com > subject : re : f / u to dr . kaminski @ enron from iris mack > date : tue , 21 nov 2000 22 : 07 : 09 > > hi , > > how are you ? seems like we have had a bit of difficulty contacting each > other . sorry i missed your call . i am now in nyc - until december 2 nd . > > i will try to call you on tomorrow morning about 8 am houston time . > > take care , > iris > > > > > > from : vince . j . kaminski @ enron . com > > to : irismmack @ hotmail . com > > cc : vince . j . kaminski @ enron . com > > subject : hello > > date : tue , 21 nov 2000 15 : 14 : 31 - 0600 > > > > iris , > > > > we are trying to reach you but we are getting error messages . > > please , call me 713 853 3848 . > > > > vince > > > > > _ _ _ _ _ _ _ get more from the web . free msn explorer download : http : / / explorer . msn . com",0 +"Subject: steve leppard hi vince , hr is working on a mid - year salary review for london people that have a noticeable gap between their compensation at enron and what we would have to pay in the market for a replacement . they highlighted steve as someone with a potential gap - particularly in light of what we ' re seeing in our quant recruiting effort for credit trading and research . i ' d like your opinion on the best way to make sure we keep steve happy and keep him at enron . there are several things i see we can do : 1 ) give him a mid - year pay increase to move him closer to market . i ' m not sure this is the best way to go , especially if we only offer him a token salary increase . 2 ) offer him more responsibility : what are your thoughts on timing for making steve the official head of the london research team ? with my move to ebs , should we accelerate this ? i think this is good way to keep him happy and motivated , and then follow up with a more meaningful salary review at year - end ( as part of the regular process ) that takes into account his greater responsibility . 3 ) we have some people that we ' re trying to get under long - term ( 3 - yr ) contract with a 12 - month notice clause . obviously anyone signing one of these will want significant up - front compensation for being handcuffed . we ' ve not had a lot of success with these here in london , and i would prefer to keep steve happy so he wants to stay with enron rather than contractually binding him to the job . i ' d value your thoughts on this . thanks , dale",0 +"Subject: anshuman shrivastava - visa application ranendra : i have been asked to begin the visa process for the above individual , located in india . i believe mr . shrivastava has been working as assistant manager with enron since may 10 , 1998 . if this is correct , we will be able to bring him into the us on an ll intracompany visa under the blanklet l for enron . can you please let me have an email address for him so that i can send him the required visa questionnaire to begin the process . many thanks margaret 713 - 345 - 5083",0 +"Subject: referral vince - i work in the caribbean structuring group and previously worked at entergy power marketing on the structuring desk with gary zhu . i am attaching the resume of a friend from entergy who holds a phd in operations research . he is considering a move from entergy and from speaking with li xiao i thought that your group might be a good fit for him . please call with any questions ( x 67446 ) .",0 +"Subject: extreme value theory applied to weathet - - - - - - - - - - - - - - - - - - - - - - forwarded by christian werner / enron _ development on 19 / 08 / 2000 10 : 06 - - - - - - - - - - - - - - - - - - - - - - - - - - - christian werner on 19 / 08 / 2000 02 : 08 : 56 to : vince . kaminski @ enron . com cc : subject : extreme value theory applied to weather - - - - - - - - - - - - - - - - - - - - - - forwarded by christian werner / enron _ development on 19 / 08 / 2000 01 : 15 - - - - - - - - - - - - - - - - - - - - - - - - - - - christian werner on 19 / 08 / 2000 01 : 55 : 56 to : vkamins @ enron . com cc : subject : extreme value theory applied to weather dear vince , back in july , when you visited our sydney office you mentioned extreme value theory . i am wondering whether research is looking into the application of extreme value theory to power and esp . to weather . in a recent news article it was highlighted that a trend in the industry towards t _ max , t _ min , etc . i am in particular referring to the news article below : in the past we have observed a similar trend where customers are asking for t _ max , t _ min , or below or above precipitation structures . the choice in the past has been the burn analysis on historical data . however , we are in particular interested in the extreme events , and the application of evt could provide a meaningful tool for the analysis . has the research group looked into the application of evt to weather ? evt has a long history of application in hydrology ( which would cover parts of the precipitation structures . . . ) . also , research ( esp . at eth in zuerich ) is indicating the application of evt to v @ r . . . . thank you ! regards , christian",0 +"Subject: re : dave , thanks for the invitation . i shall be glad to join you at the dinner and on saturday . i shall come alone : my wife will stay with my son in california till june ( my son graduates this spring from college ) . i shall remind andy fastow about nfcf . vince david ikenberry on 03 / 30 / 2001 06 : 57 : 57 pm to : "" vkamins @ ennron . com "" cc : subject : vince , it was good seeing you again today . i want to make sure the nfcf is on your calendar for may 4 - 5 . you should be receiving some registration materials shortly . please plan on coming if you can . also , please attend the dinner on friday evening along with your wife if possible . regards , dave * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: jones graduate school course descriptions list for 2000 - 2001 spring 2001 faculty and students , jones graduate school course descriptions list for 2000 - 2001 has been posted to embanet . to access the course descriptions please open the jgsm area icon on the embanet desktop . next please open the announcement jgsm icon . you will find the course descriptions located under the subject column . please open the document . if you do not have access to embanet you will need to speak with david kilgore at kilgore @ rice . edu or by calling david at 713 - 348 - 5378 . thanks , kathy kathy m . spradling mba program coordinator jesse h . jones graduate school of management rice university 6100 main street , ms 531 houston , texas 77005 - 1892 phone : ( 713 ) 348 - 3313 fax : ( 713 ) 348 - 5251 email : spradlin @ rice . edu http : / / www . rice . edu / jgs e - mail : spradlin @ rice . edu http : / / www . ruf . rice . edu / ~ jgs /",0 +"Subject: re : visit to houston and vince kaminski ' s research group shijie : i spoke with vince and he said friday the 28 th of july would be fine for your visit to enron . please let me know your itinerary when you have it confirmed . there are two hotels downtown houston , the doubletree and the hyatt regency that are very close to the enron bldg . if you need help with anything , please let me know . look forward to having you at enron . regards , shirley crenshaw shijie deng on 06 / 30 / 2000 10 : 15 : 43 am to : shirley crenshaw cc : subject : re : visit to houston and vince kaminski ' s research group shirley , thank you for your message . i ' m fine with 7 / 28 ( friday ) . i could fly in to houston early evening on 7 / 27 . please let me know after you confirm the date with vince . thanks ! shijie shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng on fri , 30 jun 2000 , shirley crenshaw wrote : > > > good morning professor deng : > > i am vince kaminski ' s assistant and he has asked me to coordinate your > visit to enron . the last week in july would be best for vince and his group . > especially the 24 th , 26 th , 27 th , or 28 th . tuesday , the 25 th is already filling > up . please let me know which day would work for you . > > best regards , > > shirley crenshaw > administrative coordinator > enron corp . research group > 713 / 853 - 5290 > email : shirley . crenshaw . com > > > > > > >",0 +"Subject: the mathworks visit on 10 / 18 shirley , please , confirm and put on my calendar . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 09 / 20 / 2000 01 : 39 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - scott wakefield on 09 / 20 / 2000 11 : 58 : 02 am to : vkamins @ enron . com cc : emcgoldrick @ mathworks . com , rbaker @ mathworks . com subject : the mathworks visit on 10 / 18 hello vince : myself , eugene mcgoldrick , and rick baker are looking forward to meet with you and your group on 10 / 18 at 2 : 00 pm . eugene is the financial products program manager and rick is a financial engineer and author of several of toolboxes . we want to understand the needs of your group to better demonstrate the proper tools . do you or members of your group have specific applications that we can address ? please email me those items and i will coordinate the presentation with our group . we would like to demonstrate how our tools can be used to rapidly develop applications , be integrated with databases and other applications ( olf , odbc databases , excel , vb , etc . ) and then deploy those applications at no cost to your traders and analysts . i look forward to meeting you , please do not hesitate to contact me . thanks scott scott wakefield the mathworks , inc . phone : ( 508 ) 647 - 7282 e - mail : swakefield @ mathworks . com",0 +"Subject: latest draft vince , i have added a lot of material to "" fill in the wholes "" and would like your reaction to the current draft . i am still not very happy with the risk management segment ( primarily as a result of my own lack of knowledge ) so please read it carefully and get me your comments . i plan to let don chew ( the editor ) take a look at it to give us his guidance toward a successful draft . hope you are having a great day and tremendous start to the new year . your friend john p . s . i really enjoyed your papers . those should definitely be part of a class on risk management . - enron _ paper _ 1 _ 11 _ 01 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : one last reminder and then i will be quiet e - mail is perfect . it allows me to just dump your grades directly into our database . i do then sign a hard copy ( indicating that i am signing in proxy for you ) to hand over to the registrar . if you prefer , you could fax the information as well ( 713 - 348 - 5251 ) . thank you for your help ! - pam ( 713 - 348 - 6223 ) at 05 : 39 pm 4 / 24 / 01 - 0500 , you wrote : > pam , > > please , let me know how i can submit the grades . > i gave my students april the 30 th as a deadline to submit > their reports and i shall be able to send you the grades by may the 4 th . > > is e - mail ok ? > > vince > > > > > > pamela vande krol castro on 04 / 19 / 2001 10 : 11 : 23 am > > to : ( recipient list suppressed ) > cc : werckle @ ruf . rice . edu , spradlin @ ruf . rice . edu > subject : one last reminder and then i will be quiet > > > one last reminder . . > today is really your last day for scheduling final exams with linda werckle > ( 3463 ) . she will be out of town after today until exams begin . > > also , please remember to turn in your grades for all of your graduating > seniors by friday , may 4 th . this is the university deadline so we cannot > miss this date . the registrar needs final information on each student in > order to verify their graduating status . > > as always - thank you for your help ! > > pamela castro > mba program associate > rice university > 713 - 348 - 6223",0 +"Subject: karthik rajan - interview schedule attached you will find the interview packet for the above - referenced person . the interview will happen friday , march 30 , 2001 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sasha divelbiss 58714",0 +"Subject: re : congrats vince , you beat me to the congrats . the surprise was that i already believed you were a managing director , so a long overdue congratulations to you . laura vince j kaminski @ ect 01 / 11 / 2000 10 : 13 am to : laura luce / hou / ect @ ect cc : subject : congrats laura , congratulations . well deserved . vince",0 +"Subject: requirements for clayton hi vince , i have communicated the following requirements to clayton . please give me your thoughts on additions / modifications . for eol model , 1 . working program , with easily usable interface 2 . user docs , for new user to easily start using system plus includes details about program structure and modules 3 . reports for tabulation of data by commodity , counterparty , period , etc . should be easy to run daily . 4 . time series description , including graphs , plus some time series analysis ( say , relationship of volume to time of day , day of week ) 5 . cross commodity trading relationships ( identify potential arbitrage ) for gas model , 1 . calibrate model 2 . user docs , with complete description of data",0 +"Subject: re : message from grant grant , i shall be in the office for a few hours today ( looks like food poisoning ) . i shall try to call you from home . i don ' t see any major problem . i shall call david oxley and ask how we could structure the rehire so that you are not hosed this year . vince "" grant masson "" on 12 / 13 / 2000 11 : 07 : 12 pm to : cc : subject : message from grant vince : ? having now the benefit of some experience with el paso , i conclude that enron would offer more for me in the long term . ? if you have an interest in discussing the matter further , please give me a call . i would appreciate your comments . ? ? best regards , grant . ? ( mobile ) 281 381 9983 ( home ) 713 664 7260",0 +"Subject: reply from charles at williams vince : thank you very much for your e - mail , i look forward to talking to you very soon . sincerely , charles - - - vkaminski @ aol . com wrote : > charles , > > thanks for your message . i have just come back from > europe and i am going > through my mail . i shall call you either on sunday > or monday after i recover > a bit . > > > vince do you yahoo ! ? yahoo ! photos - 35 mm quality prints , now get 15 free ! http : / / photos . yahoo . com /",0 +"Subject: entouch newsletter business highlights east power midwest origination beginning late 2000 , east power marketing implemented a complete market coverage strategy . since then , epmi has begun to develop relationships with hundreds of small  & mom & pop  8 municipalities . many of these munis had no prior contact with enron . as a result , east power has executed a valuable 30 mw energy call option term purchase from the municipal energy agency of nebraska ( mean ) at a congested location . enron industrial markets eim has renamed pulp , paper the state power exchange effectively replaced three monopoly buyers with one monopoly buyer . deregulation does not mean buying all of your commodity at the last minute , on the spot market , rather than planning ahead and purchasing most of the power under long - term contracts that lock in prices . the situation in california is the result of continued regulation , complicated by a series of natural and man - made factors . welcome new hires egm - lowell bezanis , owen zidar eim - eric holzer , john ovanessian ena - mecole brown , nita garcia , ambroshia hunter , nikole jackson , junichi sugiura , theresa zucha , cynthia gonzalez , scott wilson , kenton schaefer , emily butler transfers ena - joseph hardy , nancy vu , lloyd miller , jinsung myung , patrick johnson , jason wolfe , andrew miles , sara shackleton eim - sherri baldwin , debbie chance , rob saltiel egm - jody crook , neithard foley , juan paysse , bhavna pandya , courtney campbell , terri denning nuggets & notes "" it is on the high side of medium to high . "" - - tim battaglia , vice president / steel origination eim ( discussing the probability of a transaction closing ) .  & i wanna see the phone glued to your ear !  8 - - ed baughman , vice president / east power mid market ena  & referrals , referrals , referrals ! it pays to know good people . ""  ) ambroshia hunter perry / hr ena you requested more info  ( . proud parents michelle vitrella , pr coordinator , and husband david vitrella , manager of trading , have named their baby girl lily ann . she was born on february 27 , 2001 . learning at the speed of enron if you haven ' t had a chance to log on to www . investinme . enron . com , you ' re missing a fast and easy way to gain the information you need to get ahead and stay ahead . this new ews training site combines everything you loved about ernie with much , much more . enron employees now have the ability to register for hundreds of classes on industry - related topics anywhere in the world . don ' t have time to attend a classroom training ? no problem , you can now use the web site to search for books , videos , cd rom , and web - based training . all the learning you want , anytime , anywhere . just go to www . investinme . enron . com and start building your future today ! news from the global flash enron wind enron wind has purchased the factory facilities of the dutch company , aerpac , europe ' s second largest producer of wind turbine rotor blades . this move represents a significant step towards fulfilling enron wind ' s strategic objective of manufacturing high - quality and technically sophisticated rotor blades in - house . enron wind will be using its own moulds to produce the rotor blades . the acquisition of the almelo - based factory facilities , which are only 60 kilometres from enron wind ' s facilities in salzbergen , germany , gives the company a convenient base for european wide distribution . enron applies for greek electricity trading license enron , through its subsidiary enron power mepe , has applied for an electricity supply license for greece , for the 34 % market opening on feb 19 th 2001 . if the license application is successful , enron will be allowed to approach customers consuming more than 100 gwh up to a combined total peak capacity of 350 mw . in total , 4 companies have applied for power trading licenses ( enel , atel and cinergy also applied ) . legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: charm conference call please let me know what works for you . i have a meeting monday from 10 : 00 a . m . through lunch . please advise . - - - - - - - - - - - - - - - - - - - - - - forwarded by james l bouillion / hou / ect on 02 / 07 / 2001 07 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" bertil olsson "" on 02 / 06 / 2001 10 : 37 : 21 am to : james . l . bouillion @ enron . com cc : subject : charm conference call carl and i are both available either monday 12 th or tuesday 13 th . we can do either am or pm but would prefer am if possible . please let me know your preference and i will set it up . regards , bertil the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person .",0 +"Subject: re : fas 133 paper vince , it ' s a pdf file . you can access it on our home page . sorry for your trouble ; please let me know if this method doesn ' t work . regards , andy kalotay andrew kalotay associates , inc . 61 broadway , suite 3025 new york ny 10006 ( 212 ) 482 - 0900 visit our website www . kalotay . com - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , february 26 , 2001 12 : 03 pm to : andy @ kalotay . com subject : re : fas 133 paper > andy , thanks . i cannot open the file . is it a word document ? vince "" andrew kalotay "" on 02 / 23 / 2001 02 : 26 : 39 pm to : "" vincent kaminski "" cc : subject : fas 133 paper vince , here ' s the final version . it will appear in the next issue of the journal of applied corporate finance . we ' re getting some very positive response to the vrm approach . regards , andy ( see attached file : winmail . dat )",0 +"Subject: re : joe , i have written to pal quilkey to invite christian werner to houston for a week to discuss how much of his research we can use . vince joseph hrgovcic 08 / 01 / 2000 06 : 51 pm to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : vince , i have inquired into christian ' s climate models . it seems to me like a long term project . chiristian says that his model might be able to do better than the australian met given that they ignore some of the variables he uses and that they are an "" old boy ' s network "" resistant to new developments , but i don ' t think the same can be said of most other weather services . as far as the nws goes , they run their model on a cray , they have several very talented phd ' s working on it full - time , and even then , they can only get a dozen or so runs per night . in other words , it ' s a huge system . replicating something even close to that will not be an easy task . that being said , i think there are related applications that we could look into . since i ' ve already promised the rac group and the weather desk ' s pjm traders to put together a vector autoregressive model of daily temperatures , i think it makes sense to see if something better than a var model can be put together , perhaps a very stripped down version of the kind of model christian has . what i have in mind is something that would give us say , up to several dozens of "" possible "" temperature forecasts every morning , which would be calculated using actual climate models ( as opposed to time series models ) . i would not use this as a forecasting tool ( the nws model results would make a far better "" best guess "" ) , but our ensemble could still be used to provide a distribution of temperature scenarios . this ensemble would have several uses : 1 ) we could price the book for the ensemble of runs and thereby obtain a more realistic daily v @ r for the weather book ( and eventually interface that with the power desk ' s v @ r calculations ) 2 ) we could use the ensemble of forecasts to relate temperature forecasts to week - ahead cdd and hdd distributions ( for use in our demand swaps ) 3 ) if freese - notis were to give us one of their qualitative forecasts , e . g . , "" expect the trough to recede "" we could sort through the different monte carlo scenarions , find one in which the trough in question is receding , and use corresponding output statistics to download the actual temperatures corresponding to that scenario . up till now , we haven ' t found a good way of getting a numerical fix on what different forecasts actually mean temperature - wise 4 ) we could use the associated visualization routines that come with such models to get animations of the evolution of historical weather patterns . the traders could use these in order to look for historical periods which roughly match current weather conditions and get an idea of what could happen ; although these meteorological models would not be good for simulating month - ahead or season - ahead weather ( trust me on this ) we could still use the visualization technology to do to analogous seasonal animations . just today , i ' ve spoken with dr . jacobsen of stanford university , who has written one of the more recent textbooks on climate forecasting , and who worked with ucla ' s general circulation model . he says that getting a simplified version of mm 5 ( which is itself a simplified , limited - area version of the gcm models that nws , cola , and ucla use ) would take several months to implement , assuming the people involved are already well versed in the technology . also , i have contacted aer , a massachusetts - based weather consulting firm , and they tell me that they have a mm 5 model running daily ( only one run per night ) , and also some smaller pc models up and running . they are of course willing to work with us for a fee . their mm 5 version runs on a $ 200 , 000 parallel processor . i am open to your suggestions ( or objections as the case may be ) . i ' m not sure how the costs would be apportioned given that this would benefit all of enron , and not just the weather desk . i am scheduled to go to boston next week anyway , and would like to use the opportunity to visit with aer . i will of course coordinate any projects with christian ( if we get something like this up and running it will be more likely that he can get the computing power he needs to run his own australian model ) . joe",0 +"Subject: re : charm you are welcome to have soneone on the charm team contact vince kaminski at 713 - 853 - 3848 . thanks again . "" bertil olsson "" on 04 / 24 / 2001 01 : 40 : 06 pm to : james . l . bouillion @ enron . com cc : "" carl groth "" , "" kenneth risko "" subject : re : charm jim , thanks for the feed - back . to assist in the further development of the product , are there any specific areas your group would like to see improved ? based on comments made during our meeting , it sounded like your main concern was whether or not charm would have the capacity to cover the very different and complex risk areas that your company is involved in . would you mind if someone from our charm group called you or mr . kaminski for some specific comments ? regards , bertil james . l . bouillion @ enron . com on 04 / 24 / 2001 01 : 35 : 09 pm to : bertil olsson / hou / us / wcg @ wcg cc : bcc : subject : re : charm bertil , i again wish to thank you for the presentation on the charm product . the response from the group is that the model requires more work before enron could consider it as a commercial product . please keep me advised as i assume that you will continue to develop the model . james l bouillion 04 / 11 / 2001 06 : 50 am to : "" bertil olsson "" @ enron cc : subject : re : charm ( document link : james l bouillion ) no word yet . i will follow up with the attendees . thanks for taking thje time to make the presentation . "" bertil olsson "" on 04 / 10 / 2001 04 : 07 : 11 pm to : james . l . bouillion @ enron . com cc : subject : re : charm jim , any feed - back on our meeting ? we certainly appreciated the opportunity and the fact that the meeting was very interactive . regards , bertil the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person . the information in this email and in any attachments is confidential and may be privileged . if you are not the intended recipient , please destroy this message , delete any copies held on your systems and notify the sender immediately . you should not retain , copy or use this email for any purpose , nor disclose all or any part of its content to any other person .",0 +"Subject: re : uk portfolios and books setup in risktrac david and vince , in my e - mail below i pointed out to a inconsistency in the portfolio hierarchy for uk positions in risktrac that i found out , namely : some books ( for example elsb 1 and elsb 2 ) belong to uk - gas portfolio and to uk - power portfolio . i wanted to clarify this in order to reconcile positions in risktrac and in the spreadsheet . tanya . tanya tamarchenko 01 / 03 / 2001 02 : 09 pm to : naveen andrews / corp / enron @ enron , matthew adams / corp / enron @ enron cc : rabi de / na / enron @ enron , jaesoo lew / na / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : uk portfolios and books setup in risktrac naveen and matthew , i started looking systematically through uk positions and corresponding var numbers in the risckrac . i found a few inconsistencies so far . 1 . the portfolio elsb 1 - nbp has a book elsb 1 under it . the sum of delta positions for this book is 239 , 021 , 655 , the sum of gamma positions is - 211 , 031 , 450 . var for the portfolio elsb 1 - nbp is zero . the same refers to a few other portfolios , for example elsb 2 - nbp , elsb 3 - nbp , e 2 xxl - nbp . 2 . the portfolio elsbp 1 - ppp also has the book elsb 1 under it . this book contains the positions on pppwdl through pppwd 6 and pppwel through pppwe 4 . the same refers to the other books , for example elsb 2 . this looks messy . can someone in rac go over all the portfolios , all the corresponding books and curves in risktrac and make sure they are set up properly ? thank you , tanya .",0 +"Subject: fyi : ferc staff report on investigation of bulk power markets message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : the ferc staff recently released a report discussing markets in each of the regions titled "" investigation of bulk power markets "" . the report is not a ferc order . the northeast region is discussed in a section of 100 pages in length . pjm is discussed in detail beginning on page 1 - 59 . there are some minor inaccuracies in the report with respect to pjm , such as the 1999 peak load . the report is a good first step in understanding the complex markets in the northeast and their relationships among each other . the report also contains recommendations and options for resolution of issues . the complete report can be found at www . ferc . fed . us / newsl / staffreports . htm please do not reply to this message . if you have a question for pjm customer relations and training , please send an e - mail to custsvc @ pjm . com . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: sap time sheets on the o : \ research \ common drive hello everyone : if you were not able to access the spreadsheet we created for your time , on the o : \ research \ common \ sap timesheets site , please let me know . if a box came up with "" read only "" on it , you may not have access to the o : \ drive . let me know and i will issue an srrs request for access . thanks . shirley",0 +"Subject: softs information attached is the ubs summary . the ubs deal is confidential due to its large size and the summary is an informal overview . the deal structure has not been defined ; this sheet provides only rough details . call if you have any questions . erin ext 3 - 9677",0 +"Subject: re : institute of international finance - annual subscription shirley yes . vince shirley crenshaw 03 / 05 / 2001 02 : 25 pm to : vince j kaminski / hou / ect @ ect cc : subject : institute of international finance - annual subscription vince : is this ok to pay ? - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 05 / 2001 02 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : sharon purswell / enron @ enronxgate on 03 / 05 / 2001 12 : 53 pm to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : institute of international finance - annual subscription robert johnston has asked me to charge vince ' s department for 1 / 3 of the cost of the annual subscription to iif . the annual cost is $ 47 k . therefore the cost for 1 / 3 is $ 15 , 666 . 67 . this information is for maureen raymond ' s use . i will be happy to process the invoice for payment but in order for me to do so , i will need the proper coding for vince ' s department . please let me know if you are agreeable to this . if you have questions , you may wish to contact robert johnston directly at 3 - 9934 . thanks , sharon 5 - 7212",0 +"Subject: interview for the research group hello everyone : vince would like to bring jaesoo lew in next week for an exploratory interview with the research group . the dates that would work best for us are : wednesday , the 25 th ( am ) , thursday , 26 th ( am ) and friday , 27 th ( am ) . please see if mr . lew is available for any of these times . thanks ! shirley 3 - 5290 - vitae 2 . doc - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 10 / 18 / 2000 12 : 51 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 10 / 18 / 2000 12 : 29 pm to : stinson gibner / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : position shirley , i would like to invite him to an interview next week . we should use his home phone number and / or private e - mail address . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 18 / 2000 12 : 33 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jaesoo lew "" on 10 / 17 / 2000 09 : 59 : 01 pm to : vkamins @ enron . com cc : subject : position dear dr . kaminski my name is jaesoo lew and i am referred by dr . wayne lee . currently i ' ve been working at aquila energy in kansas city as an pricing analyst since july 2000 . since then , i have developed a natural gas storage valuation model applying the swing options ( forest method ) pricing approach . the price processes would be considered critical for the storage valuation since a trinomial forest is required to value storage . also the c + + programming using excel dll has been developed , too . i attached my resume to this message for your consideration and am looking forward to talking about an opportunity at enron . my home phone number is 913 - 649 - 0578 , dr . kaminski , i will wait your call in this week as dr . lee informed me . if possible , please let me know your expected calling day through the mail . i appreciate your consideration . thank you very much . sincerely , jaesoo lew get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com . - vitae 2 . doc",0 +"Subject: wharton tm # 3 presentation vince , scanned through . looks like a good start . thanks john henderson - - - - - forwarded by john henderson / hou / newpower on 02 / 16 / 2001 03 : 32 pm - - - - - vince j kaminski @ ect 02 / 16 / 2001 09 : 56 am to : john henderson / hou / ees @ ees cc : subject : wharton tm # 3 presentation john , did you have a chance to take a look at his presentation ? any comments ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001 09 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" cummins , marc "" on 02 / 15 / 2001 01 : 36 : 16 pm to : "" ' christie . patrick @ enron . com ' "" , vince . j . kaminski @ enron . com , melinda . mccarty @ enron . com , "" ' li . sun @ enron . com ' "" , "" ' john . henderson @ newpower . com ' "" cc : "" thorne , heather "" , "" degiacinto , clayton "" , "" lessar , stephen "" , "" vittal , maheshram "" , "" bassal , omar "" , "" feerick , dennis "" , "" cummins , marc "" , "" ' thomas @ wharton . upenn . edu ' "" subject : wharton tm # 3 presentation vince and christie , here are the read ahead slides for today ' s teleconference . also attached is the first draft of our conjoint analysis survey . we ' ll see you this afternoon . > > sincerely , team 3 - enron pres # 3 . ppt - newpower conjoint . doc",0 +"Subject: re : copper curve tani , no problem . we shall look at the curve on monday . i have organized a small team to examine the curve from different perspectives . curve validation is normally a rac prerogative and i shall get them involved on monday vince tani nath 10 / 27 / 2000 11 : 40 am to : maureen raymond / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect , tim poullain - patterson , harry tefoglou / lon / ect @ ect , esther gerratt / lon / ect @ ect subject : copper curve following steve ' s note to you earlier today , i wanted to mention that we have a fairly urgent need for review of the copper curve in particular , as there is a deal due for final pricing in the next few days . i am not sure what data you have received from enron metals in london , so i am asking tim poullain - patterson to ensure that you have the curves and the economic justification proposed as soon as possible . please direct any questions to him or to harry tefoglou . i will be in the tokyo office next week , but available via e - mail . thanks in advance for your assistance , tani",0 +"Subject: re : enron default swaps hi vince ! i got those notes . they should indeed be useful . the one from deutsche bank is especially helpful ! i am suppose to know this stuff , as i teach it ! sorry about the delayed billing . i have had trouble getting a bill from my excellent asistant , taichi hoshino , who has returned to goldman tokyo , and has not been able to get anything else done lately . i will try to get something out soon ! we had several energy people , from several companies , at our credit risk exec ed course last month . seems that credit risk and power risk go together these days ! warm regards , darrell on fri , 30 mar 2001 vince . j . kaminski @ enron . com wrote : > > darrell , > > i am sending you 2 technical notes on enron default swaps : i hope that they > will > be useful . i shall read the articles on weekend . i am curious if you > find these explanations satisfactory . > > we are very slow in preparing a number of technical documents > for you for model reviews . we still hope you will be able > to find some time to review our credit models ( for our london > credit trading ) and var and option pricing related models . > > also , please check your invoices . i still think we owe you money . > > > vince > ( see attached file : cds vs as . pdf ) ( see attached file : cdsstrat . pdf ) > > > > > darrell duffie on 03 / 28 / 2001 08 : 07 : 38 am > > to : vince j kaminski > cc : > subject : re : enron default swaps > > > > > vince : according to a bank of america > publication , your ( enron ) default swap spreads > are consistently trading about 80 > basis points wider than your asset swaps . > any idea of what is going on here ? > > thanks for any guidance , darrell > > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > darrell duffie > mail gsb stanford ca 94305 - 5015 usa > phone 650 723 1976 > fax 650 725 7979 > email duffie @ stanford . edu > web http : / / www . stanford . edu / ~ duffie / > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > > > darrell duffie mail gsb stanford ca 94305 - 5015 usa phone 650 723 1976 fax 650 725 7979 email duffie @ stanford . edu web http : / / www . stanford . edu / ~ duffie / ",0 +"Subject: letter to nesbitt john , the outline of a message to nesbitt . dale , thanks for your message . in our phone conversation before the meeting you mentioned another contractual arrangement under which we could work with your company employees on a case - study . the cost of a weekly project would be $ 12 , 000 that would be applied to the purchase price should we go ahead and decide to acquire the software . this project would allow us to evaluate the model and come up with an estimate of the manpower necessary to support the model internally . please , let me know more about this option . vince",0 +"Subject: value lab meeting on the lst of august amy : below are the individuals vince wants to include in this meeting . do you want me to send the email out or is it better coming from you ? i have reserved ebl 9 cl , however , since most of the guys are located on an upper floor we may want to see if we can get something up there . let me know . attendees amy oberg vince kaminski rick causey rick buy mark koenig",0 +"Subject: re : redployment vince , i highly appreciate your consideration . best regards , rehman vince j kaminski @ ect 03 / 06 / 2001 11 : 41 am to : rehman sharif / enron _ development @ enron _ development cc : subject : re : redployment rehman , thanks for you message . my group hires almost exclusively people with background in quantitative disciplines ( math , physics ) or computer programming . i shall send your resume to some other units in the company that are looking for people with good skills and experience . vince rehman sharif @ enron _ development 02 / 27 / 2001 11 : 17 am to : vince j kaminski @ ect cc : subject : redployment vince , i am a redeployment candidate out of calme region and in the process of exploring opportunities within enron . i have very extensive background in financial analysis and economic structuring . i am interested learning more about your group to find out if my skills and abilities could serve the present and future needs of your group . attached is my resume for your review , any guidance you could provide would be greatly appreciated . regards , rehman sharif",0 +"Subject: meeting to discuss research support to ees sharon / carol : jeremy blachman called vince kaminski and requested a meeting to discuss additional research support for ees , as soon as possible . the participants in this meeting would be : jeremy blachman marty sunde vince kaminski krishna krishnarao the soonest vince and krishna are available would be thursday , october 26 at the following times : 9 : 00 - 10 : 00 am 1 : 00 - 3 : 00 pm and friday , october 27 th : 8 : 30 - 10 : 30 am 1 : 00 - 2 : 30 pm please let me know what time would be best for marty and jeremy . thanks ! shirley crenshaw 3 - 5290",0 +"Subject: re : notice of end probation i would like to pass sharad ' s probationary period . steve london hrservice centre 25 / 01 / 2001 10 : 49 sent by : zoe michael to : steven leppard / lon / ect @ ect cc : subject : notice of end probation notice of end of probation i am writing to inform you that the six month probationary period for sharad agnihotri is due to end on the 21 / 02 / 2001 . please can you let me know as soon as possible if you want to : * pass the probationary period * fail the probationary period * * * * in this case you will need to discuss with human resources if the probationary period is passed i will send out a letter to this effect for you to sign and pass to your employee . thank you zoe",0 +"Subject: grades pam , the term papers arrived at my internet mailbox . i shall be sending you the information as i make progress reading the papers . first group of students : helen demianenko javier lamas lynn nazareth shauywn smith carlos wheelock sarah woody grade : a please , confirm receipt of this message and please double check that all registered students have been graded ( to make sure no student falls through the cracks ) . vince",0 +"Subject: resending paper - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 04 / 30 / 2001 08 : 18 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" lynn nazareth "" on 04 / 27 / 2001 12 : 46 : 37 pm to : jason . sokolov @ enron . com cc : subject : resending paper jason : here is our team ' s assignment . please confirm receipt . i am also sending you the file via my outlook address in case this doesn ' t work . this is our team : helen demianenko javier lamas lynn nazareth shauywn smith carlos wheelock sarah wooddy thanks , jason ! see you at enron this fall ! lynn get your free download of msn explorer at http : / / explorer . msn . com - mg _ analysis _ final . doc",0 +"Subject: the answer ! ! ! - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 08 / 09 / 2000 03 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - nathan mantua on 08 / 09 / 2000 03 : 21 : 37 pm to : mike a roberts / hou / ect @ ect cc : subject : re : pdo i ' m not sure what to think , other than we really don ' t have a credible way to determine what will happen with the pdo . one factor that provides insight into the climate outlook for the next few months and next few seasons is the expected changes with enso ( for which there is some demonstrated skill in forecasting ) . the latest observations show trends to near - normal enso conditions , with some indication that ocean temperatures will likely be a bit warmer than normal in the tropics . if this is true , i ' d expect a slight bias toward el nino - like climate over north america , which would tend to go against the continuation of cold phase pdo conditions . best wishes , nate mantua mrobert @ ect . enron . com wrote : > hi > > are you thinking we are moving into a cold phase pdo now ? ? > > thanks > > mike roberts - - ~ ~ ~ ~ ~ ~ ~ ~ ~ ? nathan mantua email : mantua @ atmos . washington . edu ? ( 206 ) 616 - 5347 fax : ( 206 ) 616 - 5775 ? ? dept of atmospheric sciences , jisao ? university of washington ? box 354235 ? seattle wa 98195 - 4235 ? ? http : / / www . atmos . washington . edu / ~ mantua ? ~ ~ ~ ~ ~ ~ ~ ~ ~ - attl . htm",0 +"Subject: historical curve databases & historical ff vols dear all , as promised , i cleaned up the data and put it into 6 spreadsheet files ( we will do gold and cocoa separately ) . i also ran 10 , 20 , 30 and 60 day fwd fwd volatility calculations based on historical log return data - you can see the results at the bottom of the sheet called "" log returns "" for each of the six spreadsheets attached below . the data in the files is ready for pca analysis . we can use either the fwd fwd vols from recent history or implied option quotes to complete the analysis . regards , anjam p . s . we have already done the pca on aluminum h ( high grade , so please don ' t repeat the analysis for that one ) final files : al _ h :",0 +"Subject: vince , congratulations on your promotion ! regards , nh",0 +"Subject: erisk essentials ? www . erisk . com what ' s new at erisk . com - 06 april 2001 weekly review this week ' s economic , banking and p _ insurance news , from an enterprise risk management perspective . read it here . . . analysis ? how the new economy aided and abetted the economic downturn ? state or federal regulation ? banks and insurers slug it out ? credit risk concentration hits the interest - rate swaps market feature why do some art products fare better than others ? credit insurance , for example , has taken off while the securitisation of catastrophe risk has struggled . in this feature , sanford bernstein analysts todd bault and timothy connor suggest that the secret of success lies in matching different kinds of risk to their appropriate owners - and that insurers ' expertise in handling basis risk makes this a potentially lucrative market . also still available : penny cagan on basle ' s treatment of operational risk . iconference looking for an overview of economic capital ? attend our iconference "" practical considerations in measuring economic capital "" on april 11 . read more about it and register for the iconference . still available : slides and a summary of the credit derivatives iconference . links need to find educational material on the web ? looking for a software vendor , a regulator or an exchange ? find hundreds of links to other risk management sites and resources in our links section the erisk essentials is published every friday by erisk . com . to subscribe to this newsletter , please register on our website . to unsubscribe , access your account . your username is the email address where you received this message . to be reminded of your password , or to reset it , follow this link .",0 +"Subject: re : var for enroncredit . com bryan , we shall be glad to take a look at the system . to sign - off on the vendor provided system we have to look under the hood and review the algorithms . i hope the vendor will have no objections to it . another critical issue we have to solve on a short notice is to integrate the system you want to buy with the rest of var / credit systems . we shall stand by to help in this endeavor . an alternative approach is to evaluate to what extent your positions can be rolled into the existing risk systems . vince bryan seyfried 11 / 10 / 2000 03 : 20 am to : vince j kaminski / hou / ect @ ect , steven leppard / lon / ect @ ect cc : ted murphy / hou / ect @ ect subject : var for enroncredit . com vince / steve - - we are going to the board in december to ask for formal limits . as you know one of the key limits at the board level is value at risk . to that end , it is imperative that you are comfortable with our approach for calculating var . we have implemented a third party risk system which holds all of our positions and are in the process of putting the debt positions in . the system has a var engine which is being demo ' d by the vendor today . ben and kirstee are attending the demo and if they find the technology acceptable , i propose moving forward with implemantion of the module . pls . let me know if this sounds reasonable and how you would envision implementing . thanks",0 +"Subject: rice cfos conference christie , this is one of the communications regarding rice cfos conference . andy requires some gentle persuasion . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - david ikenberry on 04 / 09 / 2001 01 : 27 : 24 pm to : vince . j . kaminski @ enron . com cc : subject : hi vince , i may have missed something , however don ' t believe i have received any communication recently from andy festow about this upcoming may 4 - 5 corp . fin . conference . i hope he is still planning to come , yet i don ' t know as of now . i have andy penciled in as a participant on a "" panel "" that is discussing equity dilution from stock option compensation ( the role of panelist should require little , if any , preparation time ) . of course , i want andy to come , however he is concerned about his ability to attend , i probably should identify another person or two to serve on the panel . dave . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: re : pserc industrial advisory board meeting invitation dear mr . ray , i regret to inform you that due to very heavy workload we cannot attend the power systems engineering research center ' s upcoming industrial advisory board meeting in oak brook . our work load does not leave us much time to get involved with pserc at this moment . we would very much like to stay in touch and plan to reconsider our decision in the second half of this year . vince kaminski "" dennis ray "" on 03 / 27 / 2001 04 : 46 : 44 pm to : "" vince kaminski "" cc : subject : pserc industrial advisory board meeting invitation mr . kaminski , greetings . bob thomas , shmuel oren and i invite you to attend the power systems engineering research center ' s upcoming industrial advisory board meeting in oak brook , il . it will be held on may 31 - june 1 . as you know from lance and alex , this is an opportunity to meet university researchers and industrial members of pserc . the meeting also has presentations on pserc activities and research projects , pserc business discussions , current topic discussions , and a tutorial . our current topics discussion will be on iso / rto issues , and will involve executives from several isos in dialog with university researchers . please let me know if you have any questions . we hope to see you there so that we can talk about any questions you might have about pserc . dennis ray , ph . d . executive director power systems engineering research center 608 - 265 - 3808 - directions . doc - iab _ meeting _ may 2001 . doc - iab _ registration _ form . doc - pserc members . doc",0 +"Subject: transmission roundtable meeting the meeting will be held on december 8 , 2000 from 11 : 30 am to 1 : 00 pm in conference room eb 19 cl . box lunches will be served . your choices are listed below : salads : roasted chicken cobb salad , grilled chicken caesar salad , classic chef salad sandwiches : turkey , roast beef , ham , chicken salad , tuna salad or club sandwich . served on homemade white or wheat bread please email your lunch choice to me by monday , december 4 , 2000 . thanks and regards , anita dupont",0 +"Subject: voila hey guys , the model just converged , beautifully . thanks for having the guts to try something big . clayton",0 +"Subject: summer internships at enron celeste , i have just talked to kim . i told her she will receive one . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001 09 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 03 / 01 / 2001 09 : 25 am to : celeste roberts / hou / ect @ ect cc : kristin gandy / na / enron @ enron , christie patrick / hou / ect @ ect , vince j kaminski / hou / ect @ ect , piazze @ wharton . upenn . edu subject : summer internships at enron celeste , it seems that the process lasted too long for some students and only kim whitsel is interested in the internship at this point . her resume has been forwarded to you . i am enclosing it just in case . thanks for your help . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 01 / 2001 09 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - fap on 02 / 23 / 2001 02 : 28 : 48 pm to : "" ' vkamins @ enron . com ' "" cc : "" ' piazze @ wharton . upenn . edu ' "" subject : summer internships at enron vince : thank you to you , ken and christie for coming to campus for the enron tiger team mid - project review . the students are working hard and appreciate your insight and suggestions to the project . thank you for your support of the wharton school . kim whitsel ( whitselk @ wharton . upenn . edu ) of tiger team 1 has informed me that she is very much interested in a summer internship at enron this year . i don ' t believe some of the students understood the process you had setup for them at enron as part of the tiger team . being concerned with having summer employment , they interviewed with other firms and ultimately accepted positions . the students asked that i express to you that this does not mean they are not interested in full time work at enron next year . i apologize and take responsibility for the lack of communication in this regard . i think it is a lesson learned and perhaps , in the future , we can make the agreement to students understood in advance of their "" dedicated interview week "" and eliminate their need to interview at all . this can also be an added advantage of applying to be a member of the tiger team . please let me know if you have any questions and exactly how kim whitsel should proceed . thank you , donna piazze program director field application project the wharton school univ . of pennsylvania 215 . 573 . 8394 fax 215 . 573 . 5727 fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: re : meeting with you last week ? scott , not at all . i left to make a quick call and it required a number of follow - up calls . the presentation was very interesting and professional . one of the guidelines we have in my group is to avoid using too many software packages . otherwise , everybody will have his own pet package and we shall lose economies of scale . i shall talk to my associates about your product and get back to you . vince scott wakefield on 10 / 23 / 2000 12 : 09 : 46 pm to : vkamins @ enron . com cc : subject : meeting with you last week ? hello vince , i ' m writing to follow up with you regarding our meeting last week . did we do something wrong in our presentation or in the set up of this presentation ? for a group of 50 researchers we were expecting a larger crowd and also some peole perhaps from your it department . also when you left i was wondering if we had offended you . the ability to use our products to create open models , integrate databases , c , vb , etc . and then quickly deploy them to others has been embraced by the risk management world . we met the following day with a large group from ees and they seemed quite enthusiastic about the innovation possible with our tools . i realize you are quite busy , but could you please let me know what happened and how we can prevent this in the future ? thanks scott wakefield",0 +"Subject: re : informal interview with the enron research group fyi : i have arranged the following interview schedule and marked your calendars . ( except paulo - i do not have access to his calendar ) . i have reserved eb 1938 . a copy of his resume will be forthcoming . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 20 / 2000 03 : 42 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 09 / 20 / 2000 03 : 37 pm to : "" nelson neale "" @ enron cc : subject : re : informal interview with the enron research group mr . neale : thank you for responding so quickly . i have scheduled the following date and times . please let me know if they are convenient for you . friday , september 29 th : vince kaminski 8 : 30 am grant masson 9 : 00 am vasant shanbhogue 9 : 30 am zimin lu 10 : 00 am paulo issler 10 : 30 am stinson gibner will be out of the office for 3 weeks beginning monday , the 25 th so he will be unable to interview you . we should be through between 11 : 00 - 11 : 30 am . if you have any questions please feel free to call me . when you come into the enron bldg . go to the security console and ask for me . we are located on the 19 th floor and i will meet you at the elevator lobby on the 19 th floor . look forward to hearing from you soon . regards , shirley crenshaw 713 - 853 - 5290 "" nelson neale "" on 09 / 20 / 2000 03 : 18 : 45 pm to : shirley . crenshaw @ enron . com cc : subject : re : informal interview with the enron research group ms . crenshaw : nice to hear from you ! i will be available on the following dates : friday september 29 ( am or pm ) monday october 2 ( am ) thursday october 12 ( am or pm ) friday october 13 ( am or pm ) let me know which of the above dates and times works best for the group . i look forward to hearing from you . regards , nelson neale _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ c . nelson neale , ph . d . 2990 bissonnet , # 9106 houston , tx 77005 ph : 713 - 303 - 5973 neneale @ hotmail . com _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com .",0 +"Subject: european power web call replay mr . vincent j . kaminski managing director enron capital & trade resources corp . dear mr . kaminski : on june 8 last , we held a special web - based conference call pertaining to a new cera multiclient study , "" the future of european power : electricity without borders "" . ? participants in this complimentary call learned first - hand some of the initial results of the study , and how the study provides a framework for evaluating current and future company strategies . we are pleased to announce the availability of the recorded presentation on our website . ? to view the presentation , please visit our website at : ? the presentation focused on the study scope and approach , and its underlying analysis . ? in addition , the link above will also provide access to the prospectus for the study , including the deliverables and enrollment information . ? if your organization has not yet enrolled in the study , we urge you to consider doing so at this time . should you have any questions either about this study , or about any aspect of cera ' s european power services then please contact me by reply email or directly by phone in paris at + 33 1 42 44 10 18 . sincerely , david callanan dcallanan @ cera . com should you have trouble reaching the website using the link above , please go to ? http : / / www . cera . com / offerings / mcs / eurpow 99 / ? our relationship with you is very important to us . ? if you wish not to receive e - mail notifications from cera , please send a reply to this message with "" donotemail "" as the subject of your message . ( mailto : info @ cera . com ? subject = donotemail ) ",0 +"Subject: upcoming energy conference - kaminski requirements vince : i sent you itinerary to her , but did not send a photo or the handouts . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 09 / 2000 01 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" dawn scovill "" on 02 / 29 / 2000 09 : 20 : 48 am to : shirley crenshaw / hou / ect @ ect cc : subject : upcoming energy conference - kaminski requirements good morning , shirley ! i ' m missing some things from mr . kaminski w / regard to his presentation in miami in a few weeks . at your earliest convenience , could you please forward the following : * pr photo - either electronic or i ' ll scan & return * handouts - either electronic or mail clean copy to the address below * copy of his flight itinerary , so we know when to expect him all the contact info you need is as follows : dawn scovill , conference coordinator "" powerful new ideas 2000 "" pmb # 216 , 2480 s . congress avenue west palm beach , fl 33406 phone ( 561 ) 439 - 7682 - fax ( 561 ) 439 - 7055 - email dawn @ perfectmeeting . com i would really appreciate your prompt attention - i ' m working toward getting the room set - ups & conference book finalized . thanks for your help . look forward to a great conference ! ! dawn from : dawn scovill , event coordinator designs event consulting dawn @ perfectmeeting . com",0 +"Subject: alp presentation vince and ken , dean gil whittaker of the rice business school has also confirmed ! ! pass the word on to the students ( no pressure ! ! ha ! ! ) - i think i ' ll go ahead and put the word out to some of the active rice alums here at enron - - it ' ll be a great event ! thanks ! - - christie . - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 11 / 2001 03 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" gilbert r . whitaker , jr . "" on 04 / 11 / 2001 03 : 15 : 28 pm to : christie . patrick @ enron . com cc : subject : re : alp presentation christie - i have rearranged my schedule and will be very pleased to attend the alp presentation and dinner at enron . thanks . gil at 06 : 01 pm 4 / 10 / 01 - 0500 , you wrote : > president gillis and dean whitaker , > > enron would be honored with your presense at the presentation set forth > below . > > under the guidance of vince kaminski and his team here at enron , we are > thoroughly enjoying working with this group of bright and enthusiastic rice > students . we hope you can join us for the culmination of their significant > efforts . > > please let me know - - thanks ! ! > > - - christie . > - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001 > 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > vince j kaminski > 04 / 10 / 2001 08 : 13 am > > to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , > lounghrid @ rice . edu , luigical @ rice . edu > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley > crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron > > subject : alp presentation > > on behalf of enron corp . i would like to invite you to an alp project > presentation by a group of students > of jesse h . jones graduate school of management , rice university . > > the students will present the results of a research project regarding > electronic trading > platforms in the energy industry . > > the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . > > we would also like to invite you to dinner , following the presentation . > > > vince kaminski > > vincent kaminski > managing director - research > enron corp . > 1400 smith street > room ebl 962 > houston , tx 77002 - 7361 > > phone : ( 713 ) 853 3848 > ( 713 ) 410 5396 ( cell ) > fax : ( 713 ) 646 2503 > e - mail : vkamins @ enron . com",0 +"Subject: mg var results for the 27 th july hi , i have run the var with updated factor loadings for the gold , silver and cocoa bean positions . the biggest change in var from adding this information has been to the cocoa bean position which has increased from approx $ 45 , 900 to $ 506 , 553 . the overal var has not changed by very much as the position file i was sent from andreas had not changed from the 26 th - i have queried this and it will not be a problem to re - run the numbers on monday if i recieve a further file . the var summary for all the metals is as follows : also , after having a conversation with bjorn about stress / scenario analysis i thought i might quickly try to set up a few scenarios to see how sensitive the var is to a position change in aluminium , nickel and copper . i have only applied position increases ( thge direction of the shifts are dependent on the monthly outright position direction ) up until dec 2000 . the shifts and results are given in the following attached spreadsheet . it is interesting that the individual var ' s are particuarly sensitive to increasing the position for nickel . i would like to discuss these results on monday and any further suggestions for senarios would also be gratefully recieved . have a good weekend , kirstee .",0 +"Subject: entouch newsletter business highlights enron industrial markets metal bulletin - iron and steel awards for 2000 pushiest entrant : enron , the us commodity trading company , which promised it would revolutionize the steel business by offering futures in hot rolled coil via its online market place . the eim fundamentals analysis group is excited to announce that dave allan has joined as a director , responsible for all forest products lines . he comes to eim with 20 years of experience in the forest products industry , of which 14 were spent at abitibi and 6 with pulp and paper week . please join us in welcoming dave . the siebel team (  & the force  8 ) continues to work towards program implementation of its customer management system in early may , with training to begin at the end of april . stay tuned for updates . enron global lng enron global lng is positioning itself to be a creator and leader of a global wholesale lng market . the rising prices of natural gas in the united states and concerns over future energy supplies have created a bullish outlook for lng in the u . s . and around the globe . lng has played a major role in serving energy needs in many parts of the world , but its place in the u . s . energy picture has been limited . an lng market that spans the globe can supply vast amounts of otherwise stranded gas to the world  , s growing appetite for cleaner burning fuels . enron global lng sees great opportunity for enron  , s wholesale energy business model to help shape yet another energy market . in the news enron corp . says first - quarter profit rose 20 percent houston , april 17 ( bloomberg ) - - enron corp . , the largest energy trader , said first - quarter profit rose 20 percent as sales almost quadrupled . profit from operations rose to $ 406 million , or 47 cents , from $ 338 million , or 40 cents , in the year - earlier period . enron raised its 2001 profit forecast to $ 1 . 75 to $ 1 . 80 a share , from its january projection of $ 1 . 70 to $ 1 . 75 . first - quarter revenue surged to $ 50 . 1 billion from $ 13 . 1 billion as enron boosted the volume of power sold in north america by 90 percent . enron had a first - quarter gain of $ 19 million , or 2 cents a share , for an accounting change , making net income $ 425 million , or 49 cents a share . there were no charges or gains in the year - earlier period . welcome new hires egm - janelle russell , eim - david allan , sylvia carter ena - sasha divelbiss , amy quirsfeld , judy zhang , annette thompson , kelly donlevy - lee , grant patterson transfers ( to or within ) ena  ) william abler , magdalena cruz , barbara taylor , james reyes , marvin carter , angel tamariz , jesse bryson eim  ) cassandra dutton , christine sullivan , camille gerard , sherri kathol , jennifer watson egm  ) steven batchelder legal stuff the information contained in this newsletter is confidential and proprietary to enron corp . and its subsidiaries . it is intended for internal use only and should not be disclosed .",0 +"Subject: re : telephone interview with the research group hi mike : thanks for responding so quickly . i have scheduled the telephone interview for thursday , july 6 at 10 : 00 am houston time ( 8 : 00 az time ) they interviews usually last from 45 minutes to an hour . we will call you at 520 / 325 - 9730 . thanks and have a great 4 th of july shirley crenshaw administrative coordinator enron corp . research 713 / 853 - 5290 email : shirley . crenshaw @ enron . com",0 +"Subject: the lure of the san network world fusion focus : amy larsen decarlo on storage in the enterprise today ' s focus : the lure of the san 03 / 14 / 00 dear wincenty kaminski , today ' s focus : the lure of the san by amy larsen decarlo e - business is changing how businesses value information . information has become a strategic asset that gives companies an edge over their market rivals . companies use intelligence to identify new markets and make contact with prospective customers . in this media - saturated era , information itself is packaged and sold as a product . this makes the ability to supply users with fast access to stored information on a continuous basis absolutely crucial . companies are clearly coming to a crossroads in their storage implementations . with estimates for internet storage capacity needs doubling every three months , it professionals are hungry for a scalable solution to help them consolidate control of stored information . they often look to storage - area networks ( san ) as a better option to manage their information storage systems than distributed models . today , most organizations rely on a distributed storage model that uses file servers to process i / o requests from end users and other application servers . in this model , all requests for data go through the file server that owns the attached storage disks , and only one file server can tap data on a particular disk via a scsi bus . this model has several shortcomings . first , the amount of data a server can access is restricted to the number of disks supported by the bus , which limits the capacity of a single file server . second , because the server processes each i / o request , it risks becoming a bottleneck . third , this server model carries some daunting availability limitations , because only one file server is allowed to access a set of disks . if that file server or any of its scsi connections fails , then users and other application servers lose access to the stored files . this model carries other major disadvantages . distributed file servers rely on the data transport network to run backup and recovery operations which can eat up bandwidth and slow normal network transmissions to a crawl . finally , this decentralized setup is difficult to manage from both a logical and a physical perspective . file server based storage systems are distributed throughout the enterprise , so it is often difficult to assess current and future capacity needs . and because these servers use a parallel cabling scheme to link the file server to the disk array , they can also be cumbersome to set up and manage . sans promise to mitigate the problems that plague conventional file servers , largely through consolidation of control . these specialized storage networks claim higher availability , faster performance , centralized management , and by their architecture , the capability to remove bandwidth - intensive data backup and recovery operations from the lan . this frees up the lan for normal data communications and ensures smoother back - up operations . using high - speed transports like fibre channel , sans offer a high - performance network optimized for moving storage data . sans also make way for new storage implementations like lan - free backup . and , because fibre channel can support distances of up to 10 kilometers , san devices can be widely distributed , but also centrally managed as one network . yet , as was the case with lans in their younger years , sans are still developing . vendors are still working out major product interoperability issues , while companies deploying san technology struggle with how to merge the very different worlds of storage and networks and manage both together . ultimately the hope is that , like lans , sans will develop into a mature and highly manageable solution that supplies substantial benefits at lower costs . given that storage deployment and ongoing support costs can total 10 times the acquisition price for the equipment , the consolidated management capabilities of a san may deliver the biggest benefit to business . to contact amy larsen decarlo : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - amy larsen decarlo is an analyst with enterprise management associates in boulder , colo . , ( http : / / www . . com ) , a leading analyst and market research firm focusing exclusively on all aspects of enterprise management . she focuses on storage management , application management , and security . in her position , she oversees market research and contributes to custom project work in her focal coverage areas . prior to joining ema , amy spent five years covering enterprise management for industry trade magazines , including informationweek and data communications . she can be reached at mailto : decarlo @ . com for related links - - click here for network world ' s home page : http : / / www . nwfusion . com storage networking industry association ( snia ) : http : / / www . snia . org fibre channel industry association ( fcia ) : http : / / www . fibrechannel . com scsi trade association ( sta ) http : / / www . scsita . org other storage - related articles from network world : legato primes storage resource mgmt , network world , 03 / 13 / 00 subscription services to subscribe or unsubscribe to any network world e - mail newsletters , go to : to change your email address , go to : subscription questions ? contact customer service by replying to this message . other questions / comments have editorial comments ? write jeff caruso , newsletter editor , at : mailto : jcaruso @ nww . com for advertising information , write jamie kalbach , account executive , at : mailto : jkalbach @ nww . com network world fusion is part of idg . net , the idg online network . it all starts here : http : / / www . idg . com copyright network world , inc . , 2000",0 +"Subject: re : opportunities thanks vince . i have contacted him and have given him your phone number . he will attempt to contact you thursady or friday . good luck . vince j kaminski 10 / 24 / 2000 03 : 59 pm to : lloyd will / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : opportunities lloyd , yes , i would be very interested . vince lloyd will 10 / 24 / 2000 02 : 45 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : opportunities vince would you be interested in this professional . i would be glad to facilitate a conference call . thanks . - - - - - - - - - - - - - - - - - - - - - - forwarded by lloyd will / hou / ect on 10 / 24 / 2000 02 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" sheble , g . b . "" on 10 / 17 / 2000 04 : 52 : 57 pm to : "" ' lloyd . will @ enron . com ' "" cc : subject : re : opportunities loyd i tried to call yesterday , but you were out of the office . my schedule follows , would you want to pick a time for me to call you or send me a list of times to pick ? gerry fall 2000 teaching schedule ee 553 mtwr 10 - 11 am curtis hall 308 engr 161 mw 2 - 4 howe hall 2228 other commitments m 11 - 12 ep & es m 1 - 2 office hours t 12 - 2 ep & es seminar t 2 - 3 office hours t 3 - 4 pserc t 5 - 6 epri - dod w 11 - 12 office hours w 4 - 9 dsm r 11 - 12 office hours f 11 - 12 p & t f 1 - 3 cas f 3 - 4 departmental meeting - - - - - original message - - - - - from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ] sent : monday , october 16 , 2000 8 : 00 am to : sheble , g . b . subject : re : opportunities give me a call any time to discuss things . 713 - 853 - 3383 . thanks . "" sheble , g . b . "" on 10 / 15 / 2000 02 : 17 : 02 pm to : lloyd will / hou / ect @ ect cc : subject : re : opportunities lloyd i am attaching another resume for your review , please pass it along if there is any interest . i would also like to discuss opportunities with you as i expect to graduate with my mba summer 2001 . cordially , gerry = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = gerald b . shebl , professor , electrical and computer engineering director of complex adaptive systems program 1115 coover hall ames , iowa 50011 voice : 515 . 294 . 3046 fax : 515 . 294 . 4263 email : gsheble @ iastate . edu web : http : / / www . ee . iastate . edu / ~ sheble / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =",0 +"Subject: enterprise wide risk management meeting , january 21 this is to confirm the meeting will take place on friday , january 21 at 12 : 00 - 5 : 00 p , at the doubletree hotel , 400 dallas street . the meeting room is suite 407 . those in attendance : rick buy ted murphy rick carson vince kaminski dave gorte kevin kindall grant masson lunch will begin at 12 : 00 noon and a snack will be served at 2 : 30 p . please give me a call with questions at x 31881 .",0 +"Subject: re : molecular electronics corp . working lunch ken , i shall be glad to join you for lunch with mec . vince kaminski kenneth lay @ enron on 06 / 20 / 2000 04 : 23 : 31 pm sent by : rosalee fleming @ enron to : philippe a bibi / hou / ect @ ect , jay fitzgerald / corp / enron @ enron , steven j kean / hou / ees @ ees , joe hirko / enron communications @ enron communications , david berberian / enron communications @ enron communications , rex shelby / enron communications @ enron communications , mike mcconnell / hou / ect @ ect , greg whalley / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mark lay / hou / ect @ ect cc : vanessa groscrand / corp / enron @ enron subject : molecular electronics corp . working lunch on tuesday , july 25 , i am meeting with molecular electronics corp . ( mec ) to discuss the opportunity for establishing this newly formed company in houston . for those of you that are not familiar with mec , they are considered one of the premier companies in the area of molecular computing . mec has approached enron to discuss a possible alliance that would facilitate their development and , in particular , location in the houston area . mec represents the frontier of computing technology . i would like to invite you to participate in a working lunch discussion of the opportunities and obstacles facing a company that is seeking to change an industry . i would appreciate it if you could join us on july 25 from 11 : 30 to 1 : 30 in eb 49 cl for this informal roundtable with the ceo of mec , harvey plotnick and one of the founders , jim tour . will you please let vanessa groscrand know if you can attend at 713 - 853 - 1769 or please reply by e - mail to me . ken lay",0 +"Subject: re : thursday visit good morning frank : reservations have been made for you at the doubletree hotel , downtown houston ( allen center ) . the confirmation # is : 87948774 . the hotel telephone no . is : 713 / 759 - 0202 . see you on thursday and have a safe trip . regards , shirley crenshaw administrative coordinator enron research 713 / 853 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 18 / 2000 08 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 12 / 18 / 2000 08 : 27 am to : "" francis x . diebold "" @ enron cc : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : thursday visit frank , we are located at 1400 smith . any cab driver can identify the enron building . when you arrive , please , call me at 3 - 3848 from the reception to be admitted into the building . alternative phone numbers : 3 - 5290 ( my assistant shirley crenshaw ) . you can also try to call me on my cell phone : 713 898 9960 . the research group meeting starts at 11 : 30 and lasts till 1 : 00 . can you make a presentation about your research projects ? what audio / video equipment do you need ? what sandwich would you like to have for lunch ? we shall make a hotel reservation for you thursday night . vince "" francis x . diebold "" on 12 / 18 / 2000 07 : 02 : 46 am to : vince kaminski cc : bmierts @ enron . com subject : thursday visit hi vince , looking forward to seeing you thursday . ? i arrive at houston - bush on usair 1769 at 10 : 55 am . ? please let me know where to go . ? i also want to verify that you have booked me a hotel ? for thurs night . ? many thanks , and see you soon , frank - - francis x . diebold wp carey professor department of economics university of pennsylvania 3718 locust walk philadelphia , pa 19104 - 6297 fdiebold @ sas . upenn . edu http : / / www . ssc . upenn . edu / ~ diebold ( 215 ) 898 - 1507 ? telephone ( 215 ) 573 - 4217 ? fax ?",0 +"Subject: our meeting next week vince and grant , first let me apologize for cancelling our meeting with you this friday . i hope we can reschedule next week as i ' ll arrive in houston monday mid - day . i ' d love to talk to you as i know the knowledge base in your group related to my new responsibilities is huge . will you be able to free up some time of some of your team members to help us ? as an example , i ' d like to show you our position book ( cash ) . it ' s far from being perfect . i ' d like to know whether we should persevere and improve it or whether there are some models in ena that we could copycat . . . . i look forward to seeing you next week , remi",0 +"Subject: happy new year , and some new year ' s resolutions with the new year , we would like to institute some rules within the research group . this applies to everybody in research and is at the express request of vince , but i am just sending it to my reports ( and their reports ) as of now . people are expected to report to work in the morning around 8 : 00 am to 8 : 30 am but no later than 8 : 30 am . this is primarily because our clients from other groups typically start calling around 8 : 00 am and we need to be responsive . of course , once in a while if something urgent comes up then this may be relaxed but you are responsible for letting both your supervisor and your assistant ( anita and / or shirley ) know in advance . i am trying to come up with a schedule that will allow me to get updated on all the work that you guys are doing , and i will probably set this up next week after vince finishes drawing up the overall directions for the group for 2001 . thanks , vasant",0 +"Subject: re : proposed darden interview schedule - april 18 sherri : 2 : 00 pm on the 18 th of april is fine for vince kaminski . his "" bio "" is attached . if you need anything else , please let me know . shirley enron north america corp . from : sherri sera @ enron 04 / 11 / 2000 03 : 42 pm to : bert frazier / hou / ect @ ect , karen owens / hou / ees @ ees , jewel meeks / enron communications @ enron communications , mercedes estrada / enron communications @ enron communications , bridget maronge / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : proposed darden interview schedule - april 18 ladies , i ' m trying to finalize this schedule prior to my vacation 4 / 13 - 14 . please confirm that the time proposed below will work for your executive . additionally , would you please e - mail me a bio for your executive ; the professors have requested it . thanks for your help . srs - - - - - - - - - - - - - - - - - - - - - - forwarded by sherri sera / corp / enron on 04 / 11 / 2000 03 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : sherri sera 03 / 31 / 2000 05 : 15 pm to : gene humphrey / hou / ect @ ect , lou l pai / hou / ees @ ees , ken rice / enron communications @ enron communications , andrew s fastow / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : bert frazier / hou / ect @ ect , karen owens / hou / ees @ ees , jewel meeks / enron communications @ enron communications , mercedes estrada / enron communications @ enron communications , bridget maronge / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : proposed darden interview schedule - april 18 below is proposed schedule for the darden case video - taped interviews ; an hour has been scheduled for each of you ( except vince , for whom 1 - 1 / 2 hours has been requested ) , however , you may be finished in less time . the location is yet to be determined , but will most likely take place in a vacant office of 50 m . please let me know of any conflicts with this proposed schedule . i ' ll send along additional information as it becomes available . thank you and have a nice weekend . srs 8 : 00 a gene humphrey 9 : 00 a lou pai 10 : 00 a ken rice 11 : 00 a andy fastow 12 : 00 p break 2 : 00 p vince kaminski 3 : 30 p jeff skilling",0 +"Subject: re : grades thank you ! you have been wonderful to work with this semester . stay in touch and we ' ll see you next year . - pam ( 713 - 348 - 6223 ) at 10 : 33 pm 5 / 4 / 01 - 0400 , vkaminski @ aol . com wrote : pam , the students resent the documents . the group members : rakhi israni felix feng lu winny so orlandotaylor sanjay wankhade ning zhang grade : a separately , i think i have sent you already : jeffrey planck grade : a please , confirm this message . vince kaminski",0 +"Subject: mscf speaker series mscf speaker series official invitation ? ? it is with great pride that i announce the next event in the speaker series . next friday we will have the honor to host a conference given by mr . vince kaminski ? managing director research at enron corp . ? the next event in the student speaker series is : friday , november 3 , 2000 11 : 30 a . m . to 12 : 30 p . m . fast lab [ image ] vince kaminski managing director , research . enron corp . tentative student speaker series schedule 2000 - 2001 the following is a tentative schedule of the mscf student speaker series for the 2000 - 2001 academic year . all events take place from 11 : 30 a . m . to 12 : 30 p . m . in the fast lab ( gsia 229 ) unless otherwise noted . updates are soon to follow . volatility curve and bond basis august 11 , 2000 david hartney & jerry hanweck vice president , futures and option sales j . p . morgan price and hedging volatility contracts september 1 , 2000 dmitry pugachevsky deutsche bank dmitry pugachesky is a director with otc derivatives research of deutsche bank , where his research is primarily focussed on credit derivatives . prior to joining deutsche bank , dmitry worked for six years with global analytics group of bankers trust . there he developed models for emerging markets , interest rates , and equity derivatives and also participated in actual trading and structuring of interest rate options . he received his phd in applied mathematics from carnegie mellon university specializing in control theory for stochastic processes . he has published several papers on modelling in emerging markets and on valuation for passport options . a measurement framework for bank liquidity risk september 15 , 2000 raymond cote vice president , finrad inc . raymond cote is vice president , financial engineering at finrad inc . , a montreal - based consulting firm offering financial management solutions that combine advisory and systems development services to & corporations and financial institutions . abstract : liquidity risk , as opposed to credit and market risks , has received little attention in professional or academic journals . we argue that analyzing bank liquidity risk can be viewed as a variation of credit risk analysis . after introducing some concepts and definitions , the presentation defines a framework allowing to measure a bank ' s structural liquidity risk . it then shows that combining the framework with modern credit risk measurement tools leads to a liquidity risk var measure . the presentation then offers concluding comments on the integration of the liquidity risk measurement framework within enterprise - wide risk management . the impact of electronic trading on the uses of quantitative research in equity options september 22 , 2000 scott morris hull group , quantitative research department quantitative research in investment management october 6 , 2000 raman srivastava & anna bulkovshteyn assistant vice president , & fixed income , quantitative analysts , putman investments [ image ] tba november 3 , 2000 vince kaminski managing director , research . enron corp . fund management and market efficiency november 10 , 2000 andrea dalton researcher , friess associates ( advisor to the brandywine funds ) . tba november 17 , 2000 jeff keifer & deb aep tutorial on bridge november 24 , 2000 pierre ste - marie & punit rawal mscf students a corporate risk management framework december 8 , 2000 darin aprati & brian moore mcdonald ' s [ image ] math speaker series schedule 2000 - 2001 [ image ] speaker series student committee [ image ] previous speakers ? pierre - philippe ste - marie - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ image ] http : / / pstemarie . homestead . com",0 +"Subject: re : frank , yes . vince from : frank hayden / enron @ enronxgate on 05 / 01 / 2001 07 : 51 am to : vince j kaminski / hou / ect @ ect cc : subject : vince , are you going to be able to make the power var meeting on thursday ? frank",0 +"Subject: re : confidential dale , thanks for your message . i don ' t know the labor market in london that well but here the market for quants is very hot . steve is in my view an exceptionally talented person and i would go an extra mile to retain him long - term for the company . i would adjust the base salary or the kicker upward a bit . o 62 , 000 basic is what anjam is receiving currently ( if i remember correctly ) . steve has a much higher value to enron than anjam . vince dale surbey 08 / 30 / 2000 07 : 49 am to : vince j kaminski / hou / ect @ ect cc : subject : confidential vince , this is the package hr is proposing for steven . what do you think ? - dale - - - - - - - - - - - - - - - - - - - - - - forwarded by dale surbey / lon / ect on 30 / 08 / 2000 13 : 50 - - - - - - - - - - - - - - - - - - - - - - - - - - - sophie kingsley 29 / 08 / 2000 20 : 32 to : dale surbey / lon / ect @ ect cc : subject : confidential sorry dale , long day , here are the proposed numbers 2 year exec o 62 , 000 basic ( currently o 55 k ) ol 0 k each year kickers $ 50 , 000 worth of options to vest 1 / 3 1 / 3 1 / 3 let me know what you think . regards sophie",0 +"Subject: pd : praca dyplomowa v edycja mba ? - - - - - original message - - - - - from : jerzy seremak to : vkaminski @ aol . com sent : tuesday , november 28 , 2000 7 : 49 pm subject : praca dyplpmowa v edycja mba dzie  ? dobry panie doktorze ! ? przesy  am panu ca   ? prac  c dyplomow  ? z finans ? w . cz  c  ~  + pracy zosta  a panu przes  ana w pa  dzierniku . wykresy b  cd  ? kolorowe i uj  cte w pracy . obrona pracy jest zaplanowana w luty br . je  _ eli jest to mo  _ liwe to prosz  c o recenzj  c ? ? z powa  _ aniem ? jerzy seremak v edycja mba wy  _ sza szko  a handlu i finans ? w mi  cdzynarodowych ? w warszawie ? a _ j _ seremak @ pro . onet . pl ? - i - iv rozdzia  pracy - mba . doc - iv - rozdzia  pracy - schemat - mba . doc ? - rozdzia  5 . 1 . tabele . doc - rozdzia  v 5 . 1 . opis . doc ? - rozdzia  v 5 . 2 . , podsumowanie , biografia i spisy . doc - strona tytuowa i spis tre  ~ ci . doc - wstep . doc",0 +"Subject: pjm announces basic training program over the internet message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : pjm will again offer a one - day course , pjm 101 : the basics , on february 27 , 2001 as a virtual workshop over the internet . pjm 101 : the basics will introduce participants to the pjm market and operations model . it will include presentations on pjm market settlements , capacity assurance and markets , transmission expansion and the status of pjm ancillary services markets and other initiatives . the coups is designed for those new to pjm . a limited number of participants will be registered since this is a pilot program to determine if such a format is effective . the course times are 9 : 00 a . m . to 12 noon and 1 : 00 p . m . to 4 : 00 p . m . participants should plan to log in a half hour before the scheduled start time . further details and registration information can be found on the pjm web site at please do not reply to this message . if you have a question for pjm customer relations and training , please complete and submit this form : to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: guiseppe paleologo / ext 39189 / eb 4444 b vince and shirley - i have verified that his phone is in and working at stinson ' s former desk . please let me know if i may be of further assistance thank you paula - - - - - forwarded by paula corey / enron communications on 06 / 19 / 00 07 : 25 am - - - - - janelle duree @ ect 06 / 19 / 00 06 : 59 am to : paula corey / enron communications @ enron communications , martha reyna / enron communications @ enron communications , guiseppe paleologo / na / enron @ enron cc : subject : guiseppe paleologo / ext 39189 / eb 4444 b sorry for the inconvenience , please advise if we can be of further assistance . thank you for your patience . - - - - - - - - - - - - - - - - - - - - - - forwarded by janelle duree / hou / ect on 06 / 19 / 2000 06 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - linda richard 06 / 15 / 2000 04 : 49 pm to : janelle duree / hou / ect @ ect cc : kathy brooks / na / enron @ enron subject : guiseppe paleologo / ext 39189 / eb 4444 b janelle , fms records show that ext . 39189 was installed on 6 / 1 for mr . paleologo , there is no record to indicate the phone was ever puded . i have requested to kathy brooks to re - install the phone . kathy says that she will reseach to find out why the phone was picked up and she will let me know . thanks linda",0 +"Subject: re : summer internship dr . kaminski , thank you very much . of course , i ' ll be happy to have an opportunity to work at such a wonderful company . i was contacting with surech raghavan at deal bench team , and was going to express my appreciation to you again after settling down process with them . for the period of working , i still need to coordinate with my advisor and may need to adjust according to that . but anyway , i ' ll try to coordinate smoothly . please let me know whether i should keep contacting with deal bench team , for working period and for misc . living support such as finding a place , rent a car , etc . i appreciate you so much again , for arranging such meetings and giving me an opportunity . all this opportunity will not be available to me , without your kind help . warm regards , jinbaek jinbaek kim ph . d candidate dept . of industrial engineering and operations research u . c . berkeley http : / / www . ieor . berkeley . edu / ~ jinbaek go bears ! : "" ' . _ . . - - - . . _ . ' "" ; ` . . ' . ' ` . : a a : _ _ . . . . . _ : _ . - 0 - . _ : - - - ' "" "" ' "" - . . . . - - ' "" ' . : . ' : ` . : ` , ` . ` . : ' - - ' - - ' : . ' ; ; : ` . _ ` - ' _ . ' ; . ' ` . ' "" ' ; ` . ' ; ` . ` : ` ; . ` . ; ; : ; . ' ` - . ' ; : ; ` . _ _ . ' . ' . ' : ; ` . . ' _ _ . ' . ' ` - - . . _ _ _ . _ . ' ; ; ` . . . . . . ' . ' ` ' "" "" ' ` . ' ; . . . . . . - ' ` . . . . . . . - ' ` . . . . . . . . ' on fri , 2 mar 2001 vince . j . kaminski @ enron . com wrote : > hello , > > sorry for a delay in getting back to you . > we would like very much to offer you a summer internship . > > please , let me know if you are interested . > > vince kaminski > >",0 +"Subject: re : india model stinson and vince , please see wade ' s comments below . it is critical that we start the exercise quickly , and as metioned , it should be structured so that dpc foot the bill . also , as mentioned , please have them desist from using the word viability with reference to dabhol . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 02 / 2001 10 : 35 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron india from : wade cline 01 / 01 / 2001 10 : 26 pm to : sandeep kohli / enron _ development @ enron _ development cc : neil mcgregor / enron _ development @ enron _ development , mohan subject : re : india model thanks sandeep . engagement needs to be structured so that dpc will pay for this key study . have them address the study to dpc and invoice dpc . second , on the cover , the reference is to "" . . . . . . and dabhol plant viability . "" please instruct them to immediately cease discussions about and use of term dabhol viability . they can use the term they use later on , which is dabhol plant operations . sandeep kohli 01 / 01 / 2001 08 : 56 am to : wade cline / enron _ development @ enron _ development cc : subject : re : india model wade , this is fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 01 / 01 / 2001 08 : 55 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" robert schenck "" on 12 / 29 / 2000 11 : 57 : 16 am to : , cc : subject : re : india model gentlemen , i have attached a proposal for your consideration please review this and give me a call on my cell phone + 61 412 234 366 tomorrow morning ( 9 am my time saturday ) i have organised access to a substantial level of detail re the generation and transmission systems and can commence work on building the data base next week there may be some residual typing errors in the proposal , please forgive me as i have no staff to review regards robert schenck > - - - - - original message - - - - - > from : sandeep . kohli @ enron . com [ mailto : sandeep . kohli @ enron . com ] > sent : thursday , 28 december 2000 10 : 09 pm > to : stinson . gibner @ enron . com ; schenck @ hesinet . com > subject : re : india model > > > > robert , > > i had a conversation with stinsen regarding this earlier today . > we do have > some information about the interconnects as well as information on the > plant capacities and locations within the state of maharashtra . however , > our information on other states and on a national basis maybe > less detailed > and accurate . > > what i suggested was that we have a meeting with your representative in > india once the study is a "" go . "" we probably need to do this with our team > in india in the first week of the new year . in that manner , we > will have a > much clearer idea of what is needed and what we have . we will then take a > week filling in the gaps , and so by mid - january we should have the > information you need , or alternately , we will know that the level > of detail > you ideally want is not available . then we will have to make assumptions . > > i believe that the level of detail we have on maharashtra will be > good , but > the type of information on o & m costs , generations costs , etc . > that you want > will likely not be easily available for other states . we need to work > closely , however , to do the best we can as regards this information . > > please get back to stinson with the estimates of time and cost , and let us > also know whether mid - january for the full information will work for you . > > regards , > sandeep . > > ps : stinson , please let me know if there is something i have missed in my > response . > robert - if you need something answered urgently , please feel free to > call me on my mobile in the us : 713 - 857 - 6826 . > > > > > stinson gibner @ ect > 12 / 28 / 2000 09 : 38 pm > > to : sandeep kohli @ enron > cc : > subject : re : india model > > > - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 12 / 28 / 2000 > 10 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > "" robert schenck "" on 12 / 27 / 2000 11 : 21 : 18 pm > > to : > cc : > subject : re : india model > > > stinson , > > i am trying to contact our data base experts at the moment to clarify some > issues with the region and may need another day to get something more > concrete in front of you . > > what i would like to know is the extent of your company knowledge re the > following > > generation units ' nameplate capacity , fuel type , efficiency , o vince . j . kaminski @ enron . com > > subject : india model > > > > > > robert , > > > > enron would like to do a study of power prices and dispatch for > > india we > > have spoken with david branchcomb to see if henwood can help with this > > project in our time frame ( results needed by end of january ) , and he > > suggested that we speak directly with you about the project . > > > > i will try and give you a call later today ( wednesday afternoon > > in houston , > > thurday morning , adelaide ) at around 9 : 00 a . m . your time to see we can > > describe for you the project in more detail . > > > > regards , > > > > stinson gibner > > enron research group > > ( 713 ) 853 - 4748 > > > > > > > > - penron . doc",0 +"Subject: yen outlook vince , as a followup to our meeting with david port and rudi zipter re enron ' s investment in sk - enron , maureen and i wrote the attached position paper on the japanese yen . as we have discussed , the volatility of the won closely tracks fluctuation in the yen , and this yen position paper is intended to complement the won outlook piece for a broader perspective on currencies that takes into account the yen ' s influence on asian currencies . . we would like to distribute this outlook to david and rudi , but wanted to send it to you for initial reaction prior to internal distribution . thank you , and let me know if you have any questions or comments re the attached . gwyn",0 +"Subject: credit model paulo , i have talked to vince and stinson about the credit model enhancement and extension . we will pull other reseource for the potential exposure model , so you will be relieved from this more challenging part of the project . due to our limited manpower , everyone is overloaded with multiple tasks . so we still think you are the best person for the short term project which is adding the asian option to the existing model ( ask amitava for help if needed ) . i do not mind if you want to re - negotiate with the customer about the delivery date , but keep in mind that ees has done deals requiring the asian option valuation in the credit model . zimin",0 +"Subject: alliance info alert : richardson and ferc orders dear generation / power marketing executive : the following are summaries of two significant activities that occurred friday , december 15 1 . energy secretary richardson issuance of an emergency order . ( richardson ' s statement and fpa section 202 ( c ) order is posted on doe ' s web site at : http : / / www . energy . gov / hqpress / releaseso 0 / decpr / pro 0309 . html ) 2 . ferc ' s 12 / 15 / 00 final order to fix california wholesale markets ( ferc ' s order can be viewed at california supplies ordered by richardson o richardson orders listed entities to supply excess power to california iso o order is effective as soon as iso certifies shortage , but ends 12 / 21 / 00 , unless extended o prices to be agreed to by supplier and iso , or ferc will set rate later o fpa emergency power authority transferred to doe in 1977 as he said he would on december 13 , u . s . department of energy secretary bill richardson found "" an emergency exists in california by reason of the shortage of electric energy "" and issued an emergency order under section 202 ( c ) of the federal power act ( fpa ) requiring listed generators and marketers to provide any power in excess of the needs of their firm customers to the california iso . in a statement , richardson said the threat to the reliability of the california grid requires a long - term solution , but that in the short - term power must keep flowing to the state to avert blackouts . the 76 listed suppliers have 12 hours after the iso certifies to doe that it has been unable to acquire adequate supplies in the market to begin providing requested service to the iso . the iso must inform each supplier subject to the order of the amount and type of energy or services required by 9 : 00 pm , eastern standard time , the day before the services are needed . the order directs the iso to allocate , to the extent feasible , requested services among subject entities in proportion to each supplier ' s available excess power . the order is effective immediately and will terminate at 3 : 00 am , eastern time , december 21 , 2000 , unless extended . to continue to obtain supplies under this emergency authority , the iso must re - certify the shortage to doe headquarters every 24 hours . the terms of the provision of electric energy and other services by suppliers to the iso "" are to be agreed to by the parties . "" if no agreement is reached , then under the fpa ' s emergency authority secretary richardson "" will immediately prescribe the conditions of service and refer the rate issue to the federal energy regulatory commission for a determination at a later date by that agency in accordance with its standards and procedures , and will prescribe by supplemental order such rates as it finds to be just and reasonable . "" the authority of ferc to set rates for power supplied under emergency order at just and reasonable levels where the parties themselves do not agree to a rate is explicitly included in fpa section 202 ( c ) . the doe organization act of 1997 transferred the emergency powers of this section from ferc to doe . the 76 entities identified in the order ' s attachment are all the entities that have provided power to the iso over the last 30 days . those entities are ordered "" to make arrangements to generate , deliver , interchange , and transmit electric energy when , as , and in such amounts as may be requested by the "" iso , "" acting as agent for and on behalf of scheduling coordinators . "" [ source : doe secretary richardson ' s december 14 , 2000 statement and order ; electric power daily , december 15 , 2000 ] ferc de - federalizes california markets , adopts other structural reforms a summary of the december 15 order and commission discussion at its special meeting today , ferc unanimously approved its eagerly awaited final order reforming the california wholesale markets , adopting the major outlines of its november 1 proposed order and sending back to california the responsibility for addressing state - related matters , as discussed below . at the same time , ferc deferred consideration of retroactive refund issues as well as the imposition of region - wide price caps . ferc reiterated the november 1 conclusions that under certain circumstances , california ratepayers were subjected to unjust and unreasonable power rates due to california ' s "" seriously flawed "" market structure and rules in conjunction with tight demand and supply conditions throughout the west . while all four commissioners supported the order as a consensus - based outcome that appropriately balanced all competing interests , each commissioner expressed reservations with particular aspects of the order . chairman hoecker and comm . breathitt expressed the strongest endorsement , while comms . hebert and massey laid out their positions where they believed the commission had either "" over - reached "" or not gone far enough , just as they did on november 1 , as discussed below . highlights of key actions : ( 1 ) ferc adopted the november 1 proposal to eliminate , effective immediately , the state ' s mandatory requirement that the state ' s investor - owned utilities buy and sell electricity through the px , and allow these utilities to purchase electricity through forward contracts and other alternative mechanisms to manage supply risks . ferc terminated the px ' s rate schedules effective at the close of business on april 30 , 2001 . in effect , as chairman hoecker stated , the order de - federalizes 60 percent of the california wholesale market established under the state ' s restructuring law , returning ratemaking authority over company - owned generation to the california public utilities commission ( cpuc ) . ( 2 ) ferc modified the effective period of the november 1 $ 150 / mwh "" soft cap "" proposal , limiting its application through april 2001 , whereupon a "" comprehensive and systematic monitoring and mitigation program which incorporates appropriate thresholds , screen and mitigation measures "" must be in place . in a related move , ferc ordered a technical conference early next year to develop such a program by march 1 , 2001 , so that these measures can be place by the may 1 , deadline . in a major modification , ferc revised the refund conditions to clarify that while certain refund conditions will continue to apply , unless ferc issues written notification to the seller that its transaction is still under review , refund potential on a transaction will close after 60 days . as proposed , however , supply bids in excess of $ 150 will be prohibited from setting the market - clearing price for all bidders and sellers bidding above $ 150 / mwh will be required to report their bids to ferc on a confidential , weekly basis and provide certain cost support . ( 3 ) ferc adopted the november 1 proposal to require the establishment of independent , non - stakeholder governing board for the iso . the iso governing board must relinquish their decision - making power and operating control to the iso management on january 29 , 2001 . a future order will set procedures for discussion with state representatives on the board selection process . ( 4 ) in a major modification , ferc adopted a $ 74 / mwh "" price benchmark "" for assessing prices of five - year energy supply contracts . this benchmark will be used in assessing any complaints regarding justness and reasonableness of pricing long - term contracts . to facilitate prompt negotiation of longer term power contracts at reasonable rates , ferc announced that it will hold a settlement conference with market participants . ( 5 ) ferc adopted the november 1 proposal to require market participants to schedule 95 percent of their transactions in the day - ahead market and instituting a penalty charge for under - scheduling ( in excess of five percent of hourly load requirements ) , in order to discourage over - reliance on the real - time spot market . ( 6 ) ferc directed the iso and the three investor - owned utilities to file generation interconnection standards . ( 7 ) ferc affirmed the longer - term measures proposed in the november 1 order , including submission of a congestion management design proposal by april 2 , 2001 . ( 8 ) ferc deferred resolving key issues , including establishing new iso board selection procedures , developing appropriate market monitoring measures and negotiating protective orders associated with data collection . ( 9 ) ferc reiterated its november 1 call to california policy makers there to resolve state issues , such as : ( 1 ) immediately implementing the availability of day ahead markets for power purchases ; ( 2 ) development of demand responses ; ( 3 ) siting of generation and transmission ; and ( 4 ) assurance of sufficient reserve requirements . commissioner responses comm . hebert reluctantly concurred , calling the final order a "" missed opportunity "" to , among other things , send appropriate signals for new generation siting and conservation . reiterating his november 1 concerns , hebert recounted the remedial remedies that he maintained the commission should and should not have adopted . while expressing pleasure at the tone of the order ( "" balanced and considerate "" ) , the bid certainly reversal , and the role reserved for the state in the selection of the new iso board , hebert nonetheless objected to the benchmark prices established in the order , which he maintained appeared to be unreasonably low . hebert faulted the commission for not attempting to reconcile the instant order with the november 8 order approving the ca iso ' s emergency $ 250 / mwh "" soft cap "" proposal . hebert ended by challenging the cpuc to do what it can to encourage utilities there to forward contract , including easing the existing prudence review requirements . comm . breathitt endorsed the order , reiterating her support for progress towards open and competitive markets . she noted that the order properly "" walked the line "" by taking all of the competing interests into account , calling it less than ideal , but a step in the right direction . she also concentrated her remarks on the importance of creating stability which will be accomplished by encouraging long term contracts and the implementation of the $ 150 / mwh breakpoint . additionally she mentioned that any price below the $ 74 / mwh benchmark will be presumed just and reasonable . comm . massey concurred , but prefaced his remarks by expressing sympathy for california ratepayers , stating that he felt that market power had been exercised , that prices were not just and reasonable and that the marketers had profited too much at the expense of others in the market . he warned that , as he understood the legal precedents , the federal courts were poised to grant cost recovery relief to the retailers which would then be passed on to consumers . on the positive side , he approved of the de - federalization of 60 % of the market and the creation of long term contracts . however , he emphasized that california regulators must now take the responsibility of creating more generation and transmission . in the long term , comm . massey hoped that solutions could be reached starting with a technical conference and that the market would have rules more like pjm . finally , comm . massey articulated what he would have liked to have done differently . he stated that he disagreed with the fact that there is not enough evidence to show that market power existed and he pointed to the on - going investigation . he also disagreed with the $ 150 / mwh breakpoint , preferring instead a hard price per generator . the commissioner said he would have set the long term benchmark for only two years instead of five and that he would have opened a section 206 investigation in the west . finally , he stated that he would have liked to address the issue of refunds . chairman hoecker began his comments by saying that the commission was forced to act and act quickly because the stakes are so high . he feels that it is now time for the state regulators and markets to act . he noted that by shrinking the cal px , the responsibility is now with the cpuc to fashion the long term contracts and that hopefully we will exit this situation with the least amount of damage to the utilities . in regards to suggestions for a regional price cap , the chairman stated that this would not work due to the fact that the commission has no jurisdiction over bonneville , wapa and the public power producers and that there is no spot market in the northwest . however , he did urge secretary richardson to convene a conference in order to address regional issues . finally , in conceptually addressing the california situation , the chairman stated that competition or "" deregulation "" did not fail in california , but that there never was competition in california .",0 +"Subject: alex tartakovski as you may know , we are trying to schedule an interview for alex tartakovski in houston this week . i am copying everyone involved because i wont be able to coordinate this tomorrow . we just brought our new daughter home today and my wife is yelling at me to get out of my office . i just found out that thursday & friday are bad days for him , so wednesday is the only day to do it this week . he would come down tuesday night and fly out wednesday evening . it ' s probably easiest for him to arrange his flight , but he will need a hotel and transportation from the airport . i gave him donna ' s phone number for help . i assume the hyatt would be best . his home number is 215 - 702 - 3705 and during the day his cellular is 267 - 981 - 5425 . by way of background , i plan to bring in 3 people from outside the company to fill in some of the "" vacants "" in my group ' s org chart . the 3 areas of specialization that are needed to execute the business plan are ( 1 ) coordination of origination , ( 2 ) deal pricing and underwriting , and ( 3 ) modeling and portfolio management . alex is the perfect person for # 3 . he has the deepest knowledge of probability of anyone i know and is efficient at building analysis models , which will be a big job in this business because portfolio management needs to be redefined in real time due to the lumpiness of insurance contracts and the lack of any historical methods for evaluating these risks . development of pricing models will be a joint effort between "" my "" group and the research dept because this will need to draw on the expertise in research as well as being a realtime activity as new deals are being structured . i want to encourage joint work between vasant / amitava and alex because his background and expertise is compatible with research . over the past 2 years , alex and i spent a lot of time developing new electricity spot pricing methodology and this is one area where he excels . i would expect that he would be a valuable resource in research as well , and so i would like for him to be able to meet with vince is possible . ( this could possibly be done when vince is in philadelphia next week if there is time - ( ? ) ) depending on what work needs to be done in the future , i could see him working both on pricing research and this specific business unit . i have attached alex ' s resume . i assume he would be manager level , but i ' m not sure of this . this doesnt necessarily come across in the resume , but the skills that are useful to us are : probability / statistical model development development of theoretical pricing methodology excellent computer programming skills database development and data analysis he has the best understanding of the nerc reliability data format outside of mike curley , the nerc data manager . designed and wrote the code for the pricing model used by ace power products for deal pricing and porfolio mgmt . excellent understanding of options pricing methodology and its application to hedging insurance portfolios . if you want to get into superconductor trading , he can design the standards . can beat me at atari battlezone ( as well as being able to navigate a real tank through a minefield ) . one objective of this meeting in houston is to make him feel comfortable with the organization ( with which you did such a good job for me ) and to give him confidence that he will be able to do state - of - the - art pricing research in the most innovative company in the world . he is also interviewing for a job in morgan stanley ' s equity dept . we will also arrange a meeting with per in ny , but i would like to be in the office for that , so we can do that next week . please call me @ 610 - 996 - 2522 if there are any questions . i may not pick up but i will reply to voicemail promptly . i ' m up 24 hours this week anyway . thanks , - - dave",0 +"Subject: re : best wishes for the holiday period ehud , best holiday wishes to you and your family . i owe you an apology for dropping the ball on the conference i have approached a number of executives at enron . greg whalley speaks in london a day before . louise kitchen , the mother of enrononline will ski ( this is the week of school holidays in england and her family will come here ) . one suggestion i want to make is rick causey . i talked to him and he is willing to be a speaker . he is a very senior and important executive of enron and a ut grad . any thoughts ? vince "" ehud i . ronn "" on 12 / 19 / 2000 02 : 09 : 41 pm to : vince . j . kaminski @ enron . com cc : subject : best wishes for the holiday period vince , at the conclusion of another year , and prior to my departure tomorrow with my family for our annual florida vacation , best wishes for the holiday period to you and your family . regarding the spring 2001 energy finance conference participation , we still lack that all - important 2 / 22 enron energy - related high - level keynote speaker . let me know if you think we should look elsewhere . best regards , ehud ehud i . ronn jack s . josey professor in energy studies department of finance mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : security - after hours access tony , no problem . vince anthony _ mends @ enron . net on 04 / 24 / 2000 09 : 54 : 49 am to : vince . j . kaminski @ enron . com cc : subject : security - after hours access vince , thank you for honoring us at our home on saturday . it was a real pleasure to share an evening with you . we hope we shall be able to do it again with your family when the opportunity arises . i am forwarding to you a request from john young who works in my group as a documentation specialist . kindly review his request and let me know if you are able to grant it . tony enron broadband services 713 - 853 - 3939 - - - - - forwarded by anthony mends / enron communications on 04 / 24 / 00 08 : 37 am - - - - - | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | john young | | | | | | 04 / 21 / 00 | | | 11 : 28 am | | | | | - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - > | | | to : anthony mends / enron communications @ enron communications | | cc : shirley crenshaw / hou / ect @ ect , krista reed / contractor / enron | | communications @ enron communications | | subject : security - after hours access | tony , earl harvey and i are located on the 19 th floor inside the corporate research group ' s area , which is in a secured area . they are a very supportive and cooperative group , and conditions here are ideal for research , analysis , and writing . i don ' t want to jeopardize their security in any way , but , if possible , i would like to be added to the after hours and weekend access list for situations such as meeting deadlines and research and that if you did not concur with my request , then there would be no reason to copy him at all . thanks , jay 713 - 853 - 5941",0 +"Subject: re : real options paul , we have done a lot of work in this area . i shall call you later today ( monday my time ) , tuesday morning your time with some recommendations . vince p . s . shirley , please send a real options binder to paul . vince from : paul smith @ enron _ development on 03 / 30 / 2001 08 : 42 am zel 0 to : vince j kaminski @ ect cc : paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development subject : real options vince , the sydney office is currently evaluating a proposal that involves an option to participate in building a wind farm . should this proceed , we would like to mark this option "" to market "" . have the research group completed any work on methods for booking and remarking real options ? alternatively , do you have any suggestions as to the best way to value , and book , real options fairly ? regards paul smith",0 +"Subject: request submitted : access request for mraymon @ enron . com you have received this email because the requester specified you as their manager . please click approval to review and act upon this request . request id : 000000000007494 request create date : 11 / 15 / 00 12 : 57 : 59 pm requested for : mraymon @ enron . com resource name : vpn resource type : applications",0 +"Subject: re : rotational opportunities within your group kate , my assistant , shirley crenshaw , will schedule a meeting . vince kate lucas 10 / 17 / 2000 11 : 57 am to : vince j kaminski / hou / ect @ ect cc : subject : rotational opportunities within your group dear vince , i am a rotating associate and would like to learn more about opportunities within your group . i have worked in rac and am currently in financial trading . i believe the associate / analyst program may forward you my cv , but i thought it good to get in touch personally . please let me know if there is someone with whom i could speak about the group and its needs for associates . with best regards , kate",0 +"Subject: re : digitals pavel , many thanks for your note . i understand that digitals are not core enron business but as you know , i ' m trying to explore digitals to give , for example , a company a guaranteed income in year one ( to mop up expiring tax losses ) . this is offset by a guaranteed expense in year two . see attached hypothetical example . the digital will reflect an underlying commodity to which a company is exposed to and would be part of a price risk management strategy , thereby giving it ' commercial purpose ' . i would be interested in hearing from you generally on the subject - - the rational for using digitals and your knowledge of its use in other markets ( electricity or other commoodity or in the banking sector ) . it seems to me that setting the srike is key and a ' value judgement ' or am i wrong , and are there curves and models which could help you substantiate this ? in any event , do you have a feel for what an acceptable % of chance or likelihood that a commodity price hits the strike on a digital before it becomes non arm ' s length and does not pass the smell test ? vince , jarek suggested that you may be able to assist . your views would also be appreciated . gillian . from : pavel zadorozhny on 02 / 11 / 2000 15 : 15 cst to : gillian lockwood / lon / ect @ ect cc : subject : digitals digital options are extremely uncommon in the crude oil market . nobody ever asked me to show quotes in the otc market . the only time we encountered them was when producers , brought by our marketing team , wanted to sell a knock - outable swap , whereby they would get a higher swap price in exchange for cancelling the swap if the price settled below a certain level . this structure had a digital put embedded in it , although the customers didn ' t necessarilly know that . the companies were us oil and gas producers : venoco , titan , magnum hunter , patiena oil & gas , belco , central resources . it was about 1 year ago . in the otc market , at about the same time , i asked for quotes to hedge these transactions and sold a digital cal 00 $ 16 swaption to elf and strips of digital puts to somebody else that i cannot recall . i hope this helps . pavel",0 +"Subject: network engineering and operations organizational chart shirely , please print this out for vice before the meeting . thanks , ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 01 / 18 / 00 02 : 00 pm - - - - - john griebling sent by : michol boyd 01 / 18 / 00 01 : 41 pm to : ec employees - - all cc : subject : network engineering and operations organizational chart the network engineering and operations organization is taking shape . the attached organization chart reflects my direct reports and the major disciplines within the engineering organization . please support this leadership team in executing our mission to support our current network as well as deploy the gfn infrastructure and support systems . you will notice that there are many leadership openings in the organization , please direct any input regarding external candidates for these positions to patty pennington . the network engineering team is also attempting to recruit between 30 to 50 people ( as dictated by budget availability ) across the indicated disciplines by mid - year .",0 +"Subject: re : meeting on the 20 th of march fyi . shirley ( 3 - 5290 ) is making travel arrangements for me . it makes sense for all of us to stay in the same hotel , irrespective of individual travel arrangements vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 29 / 2000 07 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" rudy , robert "" on 02 / 28 / 2000 08 : 20 : 10 pm to : "" ' vince j kaminski ' "" cc : subject : re : meeting on the 20 th of march dear vince , thanks for your note . i look forward to seeing you on the 20 th . we usually recommend our visitors to stay at the park hyatt on battery street . it ' s a 5 minute cab ride ( or an easy 15 minute walk ) to our offices . should you decide to walk , it is important that you take sansome street rather than montgomery . they are one block apart , but one goes up to the top of telegraph hill and ends before continuing at the bottom of a cliff and the other is relatively flat and is continuous . there are detailed directions on our website ( www . kmv . com ) . see you on the 20 th . regards , rob - - - - - original message - - - - - from : vince j kaminski [ mailto : vince . j . kaminski @ enron . com ] sent : monday , february 28 , 2000 9 : 35 am to : robert . rudy @ kmv . com cc : vince j kaminski ; shirley crenshaw subject : meeting on the 20 th of march robert , this is to confirm the meeting on march the 20 th at 9 : 00 a . m . enron will be represented by bill bradford , bryan seyfried , , vasant shanbhogue and myself . could you , please , advise me what is the best hotel where we could stay overnight , close to your location ? vince kaminski enron corp . 1400 smith street , room 1962 houston , tx 77251 - 1188 phone : ( 713 ) 853 3848 fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: re : lsu seminar visit vince , please send a package of article reprints to the attention of joan payne at the following address : joan payne department of finance e . j . ourso college of business administration louisiana state university 2163 ceba baton rouge , la 70803 in your package , please indicate which presentation each reprint is intended for ; i . e . , whether it is for student consumption on thursday afternoon or finance faculty / doctoral student consumption on friday morning . joan can make sure that we get the right number of copies produced for the respective audiences . concerning powerpoints - - just email these files to me and if it is all right with you i will make them available for download by the faculty and students on the class and research seminar webpages . thanks again for being willing to visit lsu and present your knowledge to our faculty and students . sincerely , jim garven at 01 : 39 pm 1 / 18 / 2000 + 0000 , you wrote : > jim , > > i can send you copies of the reprints of some papers i wrote > or co - authored . please , let me know how many copies do you need . > > i shall prepare power point presentations for the student meeting > and for the faculty meeting . > > for the students : review of my group ( things we work on ) with an intention > of generating some interest among the students and soliciting resumes . > > for the faculty meeting : challenges that energy markets pose to financial > modeling . > i shall be able to e - mail the power point presentations later this month . > > vince > > > > > > jim garven on 01 / 17 / 2000 04 : 00 : 25 pm > > to : vince j kaminski / hou / ect @ ect > cc : > subject : re : lsu seminar visit > > > > dear vince , > > would you mind emailing to me a short biography / vita sometime when you get > a chance ? also , if you have a paper to circulate or any powerpoint slides > that you ' ll want to use either in your presentations to my students > thursday afternoon , 2 / 3 , or to the faculty seminar on friday morning , 2 / 4 , > please email these to me . this would be greatly appreciated . > > my colleagues and i are looking forward to your visit on feb . 3 - 4 to lsu . > > sincerely , > > jim garven > > > james r . garven > william h . wright , jr . endowed chair for financial services > department of finance > 2158 ceba > e . j . ourso college of business administration > louisiana state university > baton rouge , la 70803 - 6308 > > voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361 > > e - mail : jgarven @ lsu . edu > home page : http : / / garven . lsu . edu > vita : http : / / garven . lsu . edu / dossier . html > research paper archive : http : / / garven . lsu . edu / research . html james r . garven william h . wright , jr . endowed chair for financial services department of finance 2158 ceba e . j . ourso college of business administration louisiana state university baton rouge , la 70803 - 6308 voice ( 225 ) 388 - 0477 | fax : ( 800 ) 859 - 6361 e - mail : jgarven @ lsu . edu home page : http : / / garven . lsu . edu vita : http : / / garven . lsu . edu / dossier . html research paper archive : http : / / garven . lsu . edu / research . html - attl . htm",0 +"Subject: out of the office i will be out of the office september 18 - 19 , 2000 and will return wednesday september 20 , 2000 . if you should need anything in the mean time please call sheila walton at x 30649 or the hr assistant ramona perkins at x 58165 .",0 +"Subject: maac executive board files restructuring agreement message sent from the pjm - customer - info mailing list at pjm - customer - info @ majordomo . pjm . com : maac executive board files restructuring agreement september 27 , 2000 norristown , pa : the mid - atlantic area council ( maac ) , one of the ten regional reliability councils of the north american electric reliability councils ( nerc ) , filed a new agreement on september 22 regarding the governance of maac with the federal energy regulatory commission ( ferc ) . maac ' s basic purpose is to ensure the reliability of the interconnected bulk power system in the region . maac ' s area of responsibility covers the same geographical region as the control area operated by the pjm independent system operator ( pjm iso ) , consisting of all or parts of the states of pennsylvania , new jersey , maryland , delaware , virginia , and the district of columbia . the maac restructuring process began years ago and is expected , with ferc approval , to be implemented on january 1 , 2001 . "" we are excited to be positioning the maac organization to address the needs of the new competitive era , thanks to the interest and participation of the stakeholders for over two years . "" stated pete landrieu , maac executive board chair . phillip g . harris , regional manager of maac , commented "" the relationship between reliability and markets will be enhanced and strengthened by the maac restructuring . we are also pleased to be making this change as effectively as possible through the use of existing pjm organizational and other resources . "" under the filed agreement , a new maac members committee is chartered with the creation of the approval process of the maac reliability principles and standards . other new maac committees are chartered , most notably , a maac energy market committee to serve as a forum for the discussion of the impact of reliability on the commercial market place , and the marketplace on reliability . the agreement also provides for stakeholder representation on the maac board . appropriate amendments to existing pjm agreements will be discussed with the pjm members and filed with the ferc . the mid - atlantic area council was established in december 1967 to augment the reliability of the bulk electric supply systems of its members through coordinated planning of generation and transmission facilities . the maac region encompasses nearly 50 , 000 square miles from virginia to new york and from the atlantic ocean to the great lakes . under the existing maac agreement and the operating agreement of pjm interconnection , l . l . c . , maac and pjm members are obligated to comply with maac and nerc operating and planning principles and standards . please do not reply to this message . if you have a question for pjm customer relations and training , please send an e - mail to custsvc @ pjm . com . to unsubscribe from this list , send an e - mail to majordomo @ majordomo . pjm . com containing only the following line in the body of the e - mail : unsubscribe pjm - customer - info",0 +"Subject: thanks again vince , i thank you again for all your help . ? i will continue to search for job opportunities at enron , and hopefully be able to find a match for me . how is your son doing ? is he still interested in computers ? there is a promising future for high - tech guys . regards ? carla di castro marketing mfr group , inc . one riverway , ste 1900 houston , tx 77056 - 1951 phone ( 713 ) 353 - 8180 office ( 713 ) 622 - 1120",0 +"Subject: re : presentation in seoul anthony duenner @ enron _ development on 12 / 15 / 99 01 : 46 : 35 pm to : mark ruane @ ect , zimin lu @ ect cc : subject : presentation in seoul better late than never - - i again wanted to thank both of you for taking the time and making the effort to make the raroc and real options presentations in seoul earlier this month . both presentations were well received and i had a number of favorable comments and expressions of thanks form our hosts after the presentations . i know you both have very busy schedules - - especially around this time of year - - and very much appreciate your help . regards . anthony duenner",0 +"Subject: re : enron visit - - thanks larry , i was thinking about the potential applications over the weekend and i think i shall have a proposal for you in a few days . vince p . s . i want to remind you about the favor i asked you about . we would like to talk ( no commitments ) to the prediction company . can you refer me to your friend . vince lawrencelrtnmt @ aol . com on 05 / 06 / 2001 12 : 07 : 18 am to : vkamins @ enron . com cc : subject : enron visit - - thanks dear vince , i just wanted to thank you for inviting me to visit enron last friday and for the generous amount of time you spent with me personally while i was there . i found our discussions both informative and stimulating . vince , i was genuinely impressed by the caliber of the group you have assembled at enron . their individual and collective expertise is obvious ; and they were most generous in exchanging ideas and sharing opinions with me . if you or any of your people have , over the weekend , developed further questions or thought of additional information that might be helpful , i ' m standing by . i ' m eager to continue our dialogue . sincerely , larry thorne",0 +"Subject: re : seminar on beyond ols i have reserved eb 30 cl from 3 : 30 pm - 5 : 30 pm . just a reminder that the 19 th is the research christmas party at damians from 5 : 30 - 7 : 30 pm . shirley vince j kaminski 12 / 08 / 2000 08 : 33 am to : clayton vernon / corp / enron @ enron , shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : seminar on beyond ols shirley , can you reserve the room for tue , dec 19 , 3 : 30 ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 08 / 2000 08 : 33 am - - - - - - - - - - - - - - - - - - - - - - - - - - - clayton vernon @ enron 12 / 07 / 2000 05 : 38 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : seminar on beyond ols vince - george just "" remembered "" the traders ' meetings monday and wednesday afternoons at 3 : 30 . he ' s going to email you - i think tuesday would ensure a turnout of traders as well as analysts . we could easily have 20 people there from power alone , and there ' s always gas . . . . when you decide the time , can you ask shirley to reserve a conference room along the size of 30 cl ? clayton",0 +"Subject: software license dear ms . feldman , please receive all my apologies for not having answered earlier your 2 emails , but i was in the states for 6 weeks and could not access my dauphine email . in any case , the time was fruitfully used by my associates and myself to improve the "" robustness "" of the product , from a computer and mathematical standpoint . regarding your 3 points 1 . we agree on the price of 90 , 000 usd 2 . d - g will provide system support : we can do so by emailing anther version of the software , being available on the phone and by email but we cannot promise unlimited support of all kinds without risking bankruptcy right away . moreover , the $ 90 , 000 may be paid in 3 fractions and your risk would be quite minimal 3 . regarding the escrow , we have been using so far a small law firm with 5 partners ( none of my family ) in amherst : hart , reed , brown , golowich and kaplan . but we are not closed to anther solution you would strongly prefer . best regards helyette geman , phd , phd d - g energy systems",0 +"Subject: idea : please take a look dear mr . kaminski , thank you for calling . briefly , about ideaglobal . com : we ' ve been providing unbiased market analysis since 1989 , and today our customers include the fed , the us treasury , the imf , 25 foreign central banks , and over 1 , 700 dealing rooms worldwide . we emphasize sales and trading strategies rather than just provide market news . attached , please find 2 samples of our daily research : today ' s issue of our morning faxes financial markets today and fixed income today . we also have intraday market coverage on bloomberg : idea > go , reuters , and bridge / telerate . if the info looks interesting , we would be glad to arrange a 30 - day free trial for you ? for your reference , please see our price list . i look forward to your reply . best regards , vadim pokhlebkin account manager vpokhlebkin @ ideaglobal . com tel . + 1 212 571 4332 fax + 1 212 571 4334 ideaglobal . com 140 broadway , 21 st floor new york , ny 10005 , usa any views expressed in this message are those of the individual sender , except where the sender specifically states them to be the views of ideaglobal . com . this email , its content and any files transmitted with it are intended solely for the addressee ( s ) and may be legally privileged and / or confidential . access by any other party is unauthorized without the express written permission of the sender . if you have received this email in error you may not copy or use the contents , attachments or information in any way . please destroy it and contact the sender via the ideaglobal . com switchboard in one of the following three offices : new york + 1 212 571 4332 ; london + 44 171 430 2888 ; singapore + 65 332 0700 - fmto 316 a . pdf - fito 316 a . pdf - onesheet . doc",0 +"Subject: dear mr . kaminski , it was really a pleasure to meet you during the risk event . i hope we ' ll have more chances to talk in the future . i will be glad to invite you when you will visit california . my home number is ( 408 ) - 996 - 2631 . sincerely , alex ulitsky . = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = alex ulitsky , ph . d . alex @ eplanning . com = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =",0 +"Subject: orillion and ebs visit * * * * * confirmation of meeting with orillion * * * * * gentlemen : i have spoken with jerry sellers of orillion and he will be visiting with ebs on tuesday , april 25 , 2000 for about half a day . orillion is scheduled to be at ebs from 1 : 00 - 4 : 00 p . m . in conference room 45 cl . the following individuals will participate on behalf of orillion . they are as follows : jerry sellers , chairman terry lindsey , president professor ken dick , technical advisory board at university of nebraska orillion would like to propose the following discussion topics : 1 . introduce orillion to ebs 2 . engage in technical discussions 3 . discussions on how orillion can help ebs participants from ebs : arshak sarkissian for scott yeager vince kaminski john griebling james reece david reece everette plante diane hetzel dorn hetzel ravi thuraisingham",0 +"Subject: re : pro opticus i was not aware of the demo . - - stinson vince j kaminski 11 / 06 / 2000 01 : 58 pm to : stinson gibner / hou / ect @ ect cc : subject : pro opticus stinson , any insights ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 06 / 2000 02 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin sweeney 10 / 23 / 2000 06 : 53 am to : vince j kaminski / hou / ect @ ect cc : kara maloney / na / enron @ enron , mario de la ossa / na / enron @ enron , matt a brown / hou / ect @ ect subject : pro opticus vince , i understand that you or someone in your group had a demo from the above group last friday . i was wondering if this was part of a push to bring more options ' analytics to the traders ' desks , and if so , if you could explain what that effort looks like ? one of the global markets traders , mario de la ossa also had a look at the software as he has used it in the past . thanks , kevin",0 +"Subject: re : joint probabilities michael a table ( table 2 ) has been added with probabilities for rab > x , fx > y . at the current currency level , approx 1 . 5 , all the numbers are multiplied by 1 / 2 because the currency is equally likely to rise or fall . this may give a pessimetic view of achieving a given stock price . let me know when you want to get togetrher . bob",0 +"Subject: wichai narongwanich dear toni : please arrange a payment of $ 10 , 000 to wichai as a sigining bonus as agreed upon with him at the time of his offer . thanks , krishna .",0 +"Subject: re : invitation to speak at infocast ' s managing summer price volatilit y conference in houston thanks , vince - - it sounds like a good opportunity . if you ' d like i can call him directly . joe vince j kaminski 10 / 17 / 2000 03 : 55 pm to : joseph hrgovcic / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : invitation to speak at infocast ' s managing summer price volatilit y conference in houston joe , any interest in speaking ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 17 / 2000 04 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - britta bothe on 10 / 17 / 2000 12 : 38 : 33 pm to : vkamins @ enron . com cc : subject : invitation to speak at infocast ' s managing summer price volatilit y conference in houston dear ms . kaminsky : as i just mentioned on your voicemail , infocast is going to host a managing summer price volatility course , january 30 - february 1 , 2001 in houston . the course will focus on the various tools at hand to manage summer price and load volatility . our target audience for this event will primarily be risk managers and managers in bulk power sales & purchase ( our secondary target audience is energy traders ) . attached you will find a draft program agenda for your review . please let me know if you or someone else at enron is interested in presenting at this event . in particular , we are looking for someone to talk about weather derivatives . i appreciate you taking the time to review the conference schedule and i hope that i will have an opportunity to talk to you . unfortunately , i am running behind schedule in finalizing this program . i will call tomorrow to see what your feedback is . if you have any questions or suggestions , please do not hesitate to contact me at ( 818 ) 888 - 4445 ext . 30 . sincerely , britta bothe infocast conference manager ( 818 ) 888 - 4445 ext . 30 > - agenda 5 . doc",0 +"Subject: re : fwd : latest roster - rice no problem - pam at 05 : 42 pm 3 / 7 / 01 - 0600 , you wrote : > pam , > > thanks , > > yes , i need the e - mail addresses as well . > > vince > > > > > > pamela vande krol castro on 03 / 07 / 2001 04 : 19 : 01 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : fwd : latest roster - rice > > > let ' s try this again ! - pam > > > > date : wed , 07 mar 2001 16 : 13 : 42 - 0600 > > to : vince . j . kaminski @ enron . com > > from : pamela vande krol castro > > subject : latest roster - rice > > > > here is your latest roster for mgmt 656 . let me know if you need the list > > of e - mail addresses or if there are any discrepancies that i should > > address . thanks for your help ! - pam ( 713 - 348 - 6223 ) > > ( see attached file : 656 . doc ) > > - 656 . xls",0 +"Subject: re : option p & l brad , i was extreamly busy yesterday . sorry for answing your question till now . although i am not exactly sure how the system handle gamma , this is what i think the system is doing : curve shift = today ' s price - yesterady ' s price p / l due to curve shift = today ' s market value using today ' s price curve ( with everything esle the same as yesterday ' s ) - yesterday ' s market value using yesterday ' s price curve . so p / l due to curve shift contains both delta and gamma and higher order terms . we then use theoretical gamma ( meaning option model gamma : 0 . 5 * gamma * ( price change ) 2 ) for gamma contribution and ? define delta = curve shift - theoretical gamma . ? ? therefore , the gamma may not be very accurate to explain the delta change , ? especially when you have big price change due to higher order contribution . ? ? let me know your thoughts on this . ? ? ? best wishes , ? ? zimin ? ? ? ? ? ? ? ? ? brad horn 10 / 12 / 2000 07 : 11 am ? ? to : zimin lu / hou / ect @ ect , stinson gibner / hou / ect @ ect ? cc : vince j kaminski / hou / ect @ ect , vladimir gorny / hou / ect @ ect , robert ? shiring / hou / ect @ ect , jay knoblauh / hou / ect @ ect ? subject : option p & l ? ? gentleman : ? the erms system , as you know , has an excellent capability for ? decomposing option p & l into the following components : ? ? new deals ? curve shift ? gamma ? vega ? theta ? rho ? drift ? 2 nd order adjustments ? ? what i dont understand is the gamma component which is reported in dollars . ? the unit of measure suggests that incremental changes in a contract position ? is being associated with specific prices . these prices are the effective buy ? or sell prices associated with the dynamic delta position . ? ? stated differently , the standard taylor expansion has incorporated a price ? variable in such a way as to convert the unit of measure from gamma ' s ? standard contract count to total gamma dolalrs . this is something i dont ? understand . to date , inquiries to the risk management accounting group has ? further revealed that the gamma component of p & l is not well understood . ? ? this is what concerns me : bridgeline has 2 books with option exposures ( nymex ? and gas daily ) . both books dynamically hedged its positions during ? yesterdays large price move and , through anticipitory hedging in advance or ? during the large price move , secured sufficient coverage to neutralize ? expected changes in delta . however , our p & l from our underlying position did ? not offset our gamma p & l . consequently , i have to ask why ? im hoping that a ? brief look at the why gamma dollars are calculated may reveal something which ? will better guide our hedging decisions . ? ? any help is appreciated ? ?",0 +"Subject: re : var calibration issues we are proposing the following changes to the calculation of ng correlations : 1 . weight the data set ( 3 calendar months ) used in calculating correlations ( most recent data weighed heavier ) 2 . use respective contract prices , instead of prompt month prices ( i . e . for nov - 00 correlations use nov contract prices for the last 3 months , as opposed to prompt month prices for the last three months . tanya , i have confirmed with ted and he gave us green light to make both changes . did we get an opinion from vince ? winston , it is my understanding , that this changes apply to ng correlations only , not the correlations between commodities . we will test the changes in gas and then decide on world - wide implementation . any estimate on timing of this implementation ? cassandra , ted suggested that you and veronica should document this as a change in var parameters and inform all commercial desk heads of these changes . we intend to make them for na gas first , but ultimately make these changes consistent across all commodity groups . let me know if you have questions . thanks , vlady . wenyao jia 10 / 13 / 2000 03 : 43 pm to : vladimir gorny / hou / ect @ ect cc : tanya tamarchenko / hou / ect @ ect , jin yu / hou / ect @ ect subject : re : var calibration issues vlady , also in the meeting , we identified that there are still some issures regarding to the correlation matrix calculations . since different commodity has different expiration dates . when calculate correlation between two commodities , the two may have different prompt months . are we going to use prices on two different prompt months or are we going to use the prices on the same month disregarding prompt months . because above issues , jin is not going do any changes on the correlation matrix calculation until above issures can be solved . thanks ! winston tanya tamarchenko 10 / 13 / 2000 03 : 16 pm to : vladimir gorny / hou / ect @ ect cc : wenyao jia / hou / ect @ ect , jin yu / hou / ect @ ect , jin yu / hou / ect @ ect subject : re : var calibration issues vlady , we met with winston and jin today regarding var calibration issues . the outcome on this discussion is : 1 . jin will put weights into calculation of factor loadings ; 2 . jin will change the way factor loading are calculated . for each commodity the prompt month contract will be selected for the effective date of vatrfacs run . then the historical prices will be collected for 3 month for all forward contracts starting from selected prompt month contract . the variance - covariance matrix will be calculated based on these data , it will be converted into correlation matrix , then factor loadings analysis will be performed on the correlation matrix . tanya .",0 +"Subject: re : carnegie mellon team meeting unfortunately i do not have a phone right now so i will have to call as soon as they get me up and running . i went ahead and sent out the dates we have on schedule currently with the intention that if we get new dates they will be announced in the team meeting on thursday . hope that is okay . i needed to get a message out to participant soon so we don ' t get in a bind in a couple of weeks . kristin vince j kaminski @ ect 08 / 28 / 2000 11 : 02 am to : kristin gandy / na / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : carnegie mellon team meeting kristin , what about the visit to the campus on nov . 3 ? any resolution ? vince kristin gandy @ enron 08 / 28 / 2000 10 : 03 am to : vince j kaminski / hou / ect @ ect , kent densley / corp / enron @ enron , dorothy mccoppin / fgt / enron @ enron , kevin kindall / corp / enron @ enron , andre beskrowni / enron communications @ enron communications , gaurav babbar / hou / ect @ ect , john walt / corp / enron @ enron , john b gordon / na / enron @ enron , dave cummings / enron @ gateway cc : judy nyegaard / hou / ect @ ect subject : carnegie mellon team meeting greetings , carnegie mellon recruiting team ! each of you has been chosen to represent enron for our fall 2000 recruiting efforts at carnegie mellon university . as part of the team , you will be challenged with choosing the best candidates from carnegie mellon ' s graduate school to join our associate program . our first campus event will be on september 15 and interviews will be held on campus december 11 and 12 . i hope you are all able to participate in the exciting process of recruiting young talent . we will be more formally organising ourselves in the next couple of weeks . currently , we are planning to have a brief team meeting in order to make introductions , inform you about the associate program , and discuss the fall recruiting calendar . to that end , please contact me with any questions or comments you may have . the team meeting date is set for august 31 st at 10 am in room 19 c 2 . please rsvp to me as soon as possible . i look forward to meeting you all soon . sincerely , kristin gandy associate recruiter x 53214",0 +"Subject: patricia tlapek brad , as per our previous discussions , vince wanted me to give you the background on our request to bring patricia tlapek into the research group at the very top end of the manager group . the justification for this was not only her extraordinary performance in setting up our technical analysis section but also our reliance on her to build this group and expand its scope . this memo is in response to your request today to document our reasoning . this past year patricia was extremely successful in building internal clientele for her products and recommendations - she is now widely relied on by gas , power , crude and equity marketers , as well as traders from the calgary office . in addition , she developed and presented seminars to bring traders up to speed on techniques in technical analysis . also this last year patricia built and populates daily the research group ' s intranet site on technical analysis . as a crowning achievement ( but just the beginning ) , patricia was given the authority to actually trade natural gas as jeff shankman , managing director , authorized her book for technical analysis trading . currently , we are proceeding with the expansion of her group personnel - wise and she is agressively working to gain authority from other groups to trade live books on other energy commodities and energy - related equities . for these reasons , we want to peg patricia ' s salary at the top of the pay scale . thanks for expediting this effort . - - - mike",0 +"Subject: re : statistica & lunch rick , we are using sas . i am glad you can speak at our lunch meeting on feb 15 . vince richard b jones @ ees 02 / 05 / 2001 11 : 26 am to : vince j kaminski / hou / ect @ ect cc : subject : statistica & lunch vince , do we have a site license for statistica ? what stat software do you use ? i am prepared to talk at your lunch . i think we said thurs feb 15 th 11 : 30 - 1 : 00 . i would liie to have a computer display if possible . i ' ll bring my pc . what ' s the room # again ? rick jones",0 +"Subject: update - rofr per our meeting , i added a switch so that the pipeline can accept or reject the best bid if the best bid is not the cap rate . zimin",0 +"Subject: re : interview with research dept . candidate rabi s . de on august 11 , 2000 please note that dennis benevides has been added to the interview schedule for rabi de on august 11 , 2000 . 9 : 00 - 9 : 30 am vince kaminiski 9 : 30 - 10 : 00 am stinson gibner 10 : 00 - 10 : 30 am grant masson 10 : 30 - 11 : 00 am krishna krishnarao 11 : 00 - 11 : 30 am tanya tamarchenko 11 : 30 - 1 : 00 pm lunch with tanya tamarchenko and zimin lu 1 : 00 - 1 : 30 pm zimin lu 1 : 30 - 2 : 00 pm vasant shanbhogue 2 : 00 - 2 : 30 pm paulo issler 2 : 45 - 3 : 15 pm dennis benevides the following interview schedule has been set up for rabi s . de by sean grady , hr staffing : 9 : 00 - 9 : 30 am vince kaminiski 9 : 30 - 10 : 00 am stinson gibner 10 : 00 - 10 : 30 am grant masson 10 : 30 - 11 : 00 am krishna krishnarao 11 : 00 - 11 : 30 am tanya tamarchenko 11 : 30 - 1 : 00 pm lunch with tanya tamarchenko and zimin lu 1 : 00 - 1 : 30 pm zimin lu 1 : 30 - 2 : 00 pm vasant shanbhogue 2 : 00 - 2 : 30 pm paulo issler please call me if you have any questions or if a conflict develops and you need to change your interview time . thanks . anita - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 08 / 01 / 2000 02 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - pinnamaneni krishnarao @ ect 07 / 31 / 2000 05 : 30 pm to : anita dupont / na / enron @ enron cc : subject : re : interview with research dept . candidate rabi s . de anita : can you add dennis benevides ( assistant kathy bass ) to interview rabi de ? sorry for the late request . thanks , krishna anita dupont @ enron 07 / 31 / 2000 03 : 49 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , grant masson / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , paulo issler / hou / ect @ ect cc : subject : interview with research dept . candidate rabi s . de the following interview schedule has been set up for rabi s . de by sean grady , hr staffing : 9 : 00 - 9 : 30 am vince kaminiski 9 : 30 - 10 : 00 am stinson gibner 10 : 00 - 10 : 30 am grant masson 10 : 30 - 11 : 00 am krishna krishnarao 11 : 00 - 11 : 30 am tanya tamarchenko 11 : 30 - 1 : 00 pm lunch with tanya tamarchenko and zimin lu 1 : 00 - 1 : 30 pm zimin lu 1 : 30 - 2 : 00 pm vasant shanbhogue 2 : 00 - 2 : 30 pm paulo issler please call me if you have any questions or if a conflict develops and you need to change your interview time . thanks . anita",0 +"Subject: re : natural gas storage item vince - something very interesting about natural gas storage ( from the class ) . the industry is rapidly adopting what are called "" operational balancing agreements , "" where the pipeline contracts with the producers and ldc ' s ( public utilities ) to handle all "" imbalances "" in shipping , namely all production shortfalls or overages or consumption likewise . shippers then always "" book "" what is scheduled to happen , and not what actually happens . the end result is that storage facillities associated with production regions are used to smooth out not only weekday - weekend seasonal patterns ( the well - known "" parking "" ) but to insure issues of wellhead output as well . cutting to the chase , storage facilities in producing regions are operated to insure the integrity of the pipeline system , and estimated marketed production is likely to be a better estimate of actual flow at the pipeline ' s receipt meter than is production less local storage . clayton",0 +"Subject: revised : organizational changes to : enron north america corp . from : cliff baxter and kevin hannon in july , as part of the enron north america ( ena ) reorganization , the implementation of several objectives were highlighted as critical to the continued growth of ena including : 1 ) accelerate the development of our people , 2 ) significantly expand our customer network and associated markets , and 3 ) accelerate and enhance the information flow between groups , both within ena and across enron . consistent with these objectives and with the corporate goal of fostering  b ) the downstream coverage / origination groups which focus on delivering a broad range of products and services to the heavy industrial customers including pulp and paper , chemicals , plastics , refined products , metals and mining , heavy manufacturing , industrial gases , fertilizers , transportation , textiles and glass manufacturing the eastern and western u . s . midstream coverage / origination groups which focus on energy , finance and industries . downstream coverage / origination as energy deregulation continues in north america , it is becoming clear that the heavy industrial segment will be an important customer market for both ena and enron corp . further , it is clear that ena can significantly expand its industrial customer network and create more innovative industrial solutions by having a group that can deploy all the capabilities of enron corp . against this backdrop , the downstream coverage / origination function will expand its product offering to include not only ena  , s existing energy commodities , energy services , finance , assets and pulp and paper capabilities but also ees  , s energy outsourcing capability and global fuel  , s chemicals , plastics and refined products risk management capability . these additional capabilities will be offered in conjunction with ees and the global fuels groups . given the size and importance of this enron initiative , greg piper will be returning from portland to manage this business . under greg  , s leadership , the downstream origination effort will be segmented into three sub - groups given the nature of these industries and our product offering : a ) pulp and paper  ) edward ondarza will continue to manage the coverage activities in the pulp and paper business . this group will be responsible for the provision of innovative products and services in the pulp and paper industry including the provision of paper risk management products ; b ) chemicals , plastics and refined products  ) we have asked jim ajello to lead the coverage activities in this business . this group will be responsible for the provision of innovative products and services in the chemicals and refined products industries ; c ) non - integrated industrials  ) bruce garner , formerly leader of bankers trust  , s global metals and mining group in london , has joined ena to lead the coverage activities in this business . this group will be responsible for the provision of innovative products and services for the metals and mining , heavy manufacturing , industrial gases , fertilizers , transportation , textiles and glass manufacturing industries . midstream coverage / origination a ) eastern coverage / origination  ) this group  , activities will focus on energy , finance and power development solutions for electric and gas utilities , municipals , co - ops and energy service companies in the eastern interconnect . we have asked janet dietrich to assume the leadership of this group ; b ) western coverage / origination  ) this group  , s activities will focus on energy , finance and power development solutions for electric and gas utilities , municipals , co - ops and energy service companies in the wscc . they will also continue to manage all qualified facilities ( qf ) restructuring opportunities in the western u . s . we have asked chris calger to assume the leadership of this coverage group . chris will relocate to portland from calgary where he currently leads the canadian downstream origination efforts ; c ) ipp merchant coverage / origination  ) this group  , s activities will focus on the provision of structured energy , finance and asset solutions for the emerging merchant power generators who control large portfolio  , s of merchant power generation either through development or acquisition . we have asked mike miller to assume the leadership of this group . in addition , mike will continue to manage the power development activities in the eastern interconnect ; d ) eastern qf restructuring  ) this group will focus on the qf restructuring opportunities in the eastern interconnect including the existing restructuring and re - capitalization of the east coast power assets . we have asked dave duran to assume the leadership of this business . greg blair , formerly of enron asia  , s development group , doug clifford , formerly of citizens power , and dick lydecker , formerly of cogen technology , will join this newly formed business . 2 ) commercial transactions : the commercial transactions group ( ctg ) , co - headed by ray bowen and jeff donahue , was formed to provide a centralized resource for the execution of transactions within ena  ) and thereby , improve ena  , s efficiency in executing transactions and free - up the origination groups to increase their intensity of client coverage . ctg consists of six primary functions : transaction development , capital structuring and portfolio management , commodity structuring and transportation , transactional support / accounting , technical analysis and upstream asset management . the transaction development group will be responsible for deal leadership , execution and optimization of all aspects of a transaction in conjunction with the originator . the function will be divided into four teams , each of which will be dedicated to between two and four origination groups . this dedication to specific groups should provide a closer link , better service and greater accountability with the origination groups ; however , the ctg resources are designed to be a fungible and flexible resource allocated to the highest value transactions across the coverage functions : a ) midstream transaction development will be dedicated to the eastern and western coverage / origination groups . the senior members of this group include billy lemmons , george mccormick , erin norris and russ porter . billy lemmons joined enron in 1992 . most recently , he was the vice - president of capital structuring and risk management for ees . russ porter joins us today from dynegy where he was a manager with responsibilities for power origination . b ) downstream transaction development will be dedicated to ena  , s industrial origination efforts in pulp and paper , petrochemicals and refining , environmental energy , metals and mining and other industries as coverage is established . the senior members of this team include rodney malcolm , jay boudreaux , finley biggerstaff and chris helfrich . we anticipate announcing two to four more additions to this team within the next few weeks . c ) generation transaction development will be dedicated to the ipp merchant services and power plant development and qf restructuring groups . the senior members of this team include thomas suffield , andy kelemen , kelly mahmoud and john house . thomas suffield joined enron in 1996 . most recently , he was the vice - president of origination for the latin american group in azurix . we anticipate announcing two more additions to this team within the next few weeks . d ) upstream transaction development will be dedicated to the producer finance , coal and gas assets groups . the senior members of this team include brad dunn , john curtin and chris hilgert . we hope to announce the addition of at least one vp to this group prior to yearend . ray bowen will have primary oversight responsibilities for the upstream and downstream transaction development teams with jeff donahue having primary responsibilities for the midstream and generation teams . andrea reed will continue to head capital structuring and portfolio management : all junior commercial resources within the transaction development teams will have dual responsibilities to both their transaction development teams and to the capital structuring group . the remaining four groups within ctg will remain largely unchanged . in addition , the origination and the transaction development teams and their respective origination groups will be located together . we believe that these changes will significantly enhance our market coverage and industry knowledge in all ena  , s markets particularly in the industrial markets . it will also provide a closer partnership and accountability between the coverage / origination groups and the ctg groups . please help us in continuing to build on the success we have enjoyed in north america by working with us to implement these changes .",0 +"Subject: valuation methodology we ' ve had a request from aa to provide them with some sort of write - up or documentation from our research group on the valuation methodology used on the contingent issuance instrument for 18 million shares that was a part of the raptor transaction completed at the end of march . apparently , this request has come from aa ' s expert in this area ( i believe that his name is dechundra , or something like that . i ' ve probably destroyed the spelling on that . you guys are probably very familiar with him . ) anyway , is there such documentation that we can provide them easily ? if so , let me know so that we can try to get aa finished with their review of the transaction . in talking to our contacts at aa , i believe that their expert will be wanting to talk to you after he reviews the methodology documentation . thanks , ron",0 +"Subject: again , i should have also sent the following mail yesterday . . . . i guess now i should also apologise for filling up your mail box ! have a good weekend , kirstee - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 28 / 07 / 2000 20 : 22 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : kirstee hewitt 27 / 07 / 2000 18 : 10 to : cantekin dincerler / hou / ect @ ect cc : grant masson / hou / ect @ ect subject : hi - i have run the model for the 26 th and have the following results : i have also updated the correlations to include silver and the gold . the tc delta ( treatment charges ) are positions only for copper conentrate and do not contain any positions due to zinc or lead . could you take a look at the figues as this is the first time i have done a full run and would like to make sure that i have done things correctly . i will definitely call to discuss the prices for gold and cocoa beans - the tc price curve is another issue however , at the moment we do not have anything other than a spot price and a 1 year price so i think we will probably have to set it as a constant . i have to talk to andreas soon as he is awaiting my comments on point ( 2 ) of his email that i forwarded in my last mail . also , you will can see that i have subtracted any positions that are from r wolf in the mercur download - this was point ( 1 ) of his note . as a quick question ? do you think it is worth including zinc concentrate ( 18400 dmt ) and lead concentrate ( 920 dmt ) ? i think we may need to check the tc price for these and the conversion for the one given in the model for copper as i think that the original historical price file ( tchistory ) is quoted in c / lb - i guess this is cents / pound ? rather than $ / dmt which is the units that position is quoted in . speak to you soon kirstee",0 +"Subject: registration materials for nfcf to : andres almazan don chew john freeman geoge gau vince kaminski bob marchesi john martin vojislav maksimovic laura starks art warga michael weisbach dear friends attached is some registration and logistical information relating to the upcoming corporate finance conference on may 4 - 5 in houston . if you have any questions , please don ' t hesitate to contact sheridan , bob or myself . the program is shaping up nicely , however one of us may draft to serve in some small , but helpful capacity . sheridan titman , 512 . 232 . 2787 , titman @ mail . utexas . edu , bob parrino at parrino @ mail . utexas . edu dave ikenberry , 713 . 348 . 5385 , daveike @ rice . edu as of today , the list of firms sending a representative include : pfizer pacificare cooper industries radioshack pepsi delphi automotive microsoft whirlpool enron johnson controls airgas sara lee dell conoco - particpate registation details . doc * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * prof . david ikenberry jones graduate school of management rice university 713 - 348 - 5385",0 +"Subject: ibuyit approvers ah , these wonderful new systems ! i submitted an order on the "" new "" ibuyit site and sent it for approval and it went to every manager in our group ! i called them and told them that only you were the approver and they do not even have a user id set up for you . please fill out the below security document and i will forward it on to them . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 16 / 2001 03 : 26 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : michael loft / enron @ enronxgate on 04 / 16 / 2001 03 : 18 pm to : shirley crenshaw / hou / ect @ ect cc : subject : ibuyit approvers hi shirley in processing your ibuyit approval change request , i discovered that vince kaminski has not been set up with a user id in the eprocurement system . please have him fill out the attached security form and send it to - - sap security @ enron . com i have already selected the approver role on the second page . we just need the personal information on page one filled out for security purposes . once this is done we can get vince assigned as the approver for cost center 107043 . thanks , michael",0 +"Subject: latest vince , i appologize for shipping another version of the paper so soon after the last . however , my wife picked me up for some last minute shopping at noon and i wasn ' t sure i would get back to this before leaving tomorrow . the only changes in the two documents related to a sentence or two in the intro plus the addition of "" unused information "" at the end of the document . the unused stuff is made up of notes i made from hamel , some news stories , press releases , and random thoughts . we probably won ' t use any of this stuff but i wanted you to have it just in case it might prove useful . the challenge we face at this stage ( and where i can most use your help ) is in documenting enron ' s risk management functions in a meaningful way . this may be best done through examples or in some other way . i think that our audience would appreciate our including some numerical and detailed examples ( even if they are to be placed in boxes or sidebars that don ' t interrupt the flow of the article . if you ' ll make a pass at what you feel is appropriate i ' ll gladly polish on the words as i try to learn about what you are doing myself . vince , i really am enjoying this learning experience . you guys make a wonderful "" lab "" . sally and i are driving to louisiana to pick up her mom tomorrow and then driving to new orleans and back to waco by saturday . however , i will check in my e - mail regularly . your friend , john - enron transformation paperl 2 _ 19 _ 00 . doc john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: rdi conference - may 17 - 19 , 2000 hi , i ' d like to make a personal invitation to you to attend rdi ' s annual user conference at torrey pines in la jolla , just north of san diego . we are planning two sessions for gpcm users ( and prospective users ) which i think you will find very interesting and useful . plus we are also going to schedule individual sessions for those that would like them , as was quite successful last year . the details are included in the attached word file below . i ' ve also included the program in pdf format . the last page is a signup form you can fill out and fax in to rdi if you haven ' t already done so . please let me and mike know how many are coming from your team . you can reply to this e - mail to let us know . looking forward to seeing you there . i think it ' s going to be fun . bob brooks mike farina - rdi _ conference _ gpcm _ breakout . doc - rdi user conf . pdf",0 +"Subject: visit to enron grant and vince , thanks for arranging my visit to enron . i was impressed by the nature and scope of work in the group and the people i met . i look forward to hearing from you later in the week . a few peple asked me the method i used to value asian options . it is an approximate method based on geometrical averaging with an adjusted exercise price , as described by gordon gemmill in option pricing : an international perspective , mcgraw - hill , london , 1993 , pages 242 - 248 . regards , greg get your private , free e - mail from msn hotmail at http : / / www . hotmail . com",0 +"Subject: re : chapter 3 gentlemen , thankyou for your fine effort . i ' ll e - mail thru thurs eve ( sydney time ) what we have done to incorporate it into our material ( which wasn ' t toooo painful ) to see if it is ok with you . a couple of quick questions though . vince - your section had a number of footnote numbers , but no actual footnotes - can you please resend them ? grant - i agree it would be good to have the final figure . what happens if you plot the historical data and the simulations on the same graph - but with different axis ? many thanks and best regards . chris .",0 +"Subject: new invoice for energy and weather vince , ? please find attached a replacement invoice for invoice number 215 . ? this invoice includes the correction in charges for the weather course , and for only one attendee for the energy derivatives course . ? if you should have any questions , please contact me . ? sincerely , julie - enron 283 _ 9 _ 04 _ 01 . doc",0 +"Subject: re : eprm 2001 houston layla , a few points . i shall be glad to attend the reception . i am falling behind in getting my presentation ready . sorry for the delay . i can commit to delivering the required number of copies on the day of my presentation ( or a day before ) . i have done it on two occasions before ( power 2000 and power 1999 ) : the copies were produced by our company copy center at no cost to you . my associate , tanya tamarchenko , is helping me with one aspect of the presentation and i would like her to deliver part of my speach . it ' s only fair to give her the credit when the credit is due . is it ok to include her as an additional speaker ? vince "" layla o ' leary "" on 04 / 30 / 2001 09 : 04 : 52 am please respond to to : cc : subject : eprm 2001 houston dear speaker , pre - congress cocktail reception - sunday 13 th may @ 5 : 30 pm in the juniper room we would be delighted to have you attend our pre - congress cocktail reception . we will be extending this invitation to all our sponsors , exhibitors and eprm / risk waters group staff . we hope this will provide a perfect opportunity for you to meet all our staff and clients before the formal opening of eprm 2001 usa + rsvp i would also like to remind you that i need any missing presentations by thursday 3 rd may . it is essential that i get these in as the delegates rely on these to make notes and get very upset if they are not included in the packs . if you still haven ' t informed me of your av requirements , please do so as quickly as possible . i also require a short biography . i would like to point out that i will not be taking any presentations on disk to the event . if you are using a laptop , your presentation should be loaded onto the laptop that you bring with you . you must bring your own laptop and disc , with connecting cables . any questions , please do not hesitate to contact me . kind regards layla o ' leary event co - ordinator risk waters group haymarket house 28 - 29 haymarket london swly 4 rx tel : + 44 ( 0 ) 20 7484 9871 fax : + 44 ( 0 ) 20 7484 9800",0 +"Subject: re : copier on 32 nd floor kevin , please let me know when your move date has been "" firmed up "" . can you let me know the location that you want to install the new copier at { i will need to check for the necessary power outlet } ? listed below are some of the latest generation "" heavy duty "" copiers that enron has been installing as replacement for older equipment such as the xerox 5388 etc . feel free to try them out for the specific task that you have on a daily basis and let me know what you think { we can discuss relevant speeds & associated $ costs after you have tested these copiers } : fyi : there are 2 other models from lanier : the 5355 and the 5365 . both of these are the "" toshiba 70 series "" digital copier rebranded as "" lanier "" . if the one of the toshiba 70 series listed above meets your criteria , the 5300 series from lanier is a better cost option between the two different brands . if possible , would you be available to meet next week to discuss further ? i would like to invite a member of the ena finance group to go over cost allocations for the new copier , regardless of which copier selected . thanks , iain . . . . . . . . . . . . . . . . . . . . kevin g moore 03 / 08 / 2000 11 : 22 am to : iain russell / epsc / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , liz m taylor / hou / ect @ ect cc : subject : copier on 32 nd floor hello iain , well time is drawing near for another move for us . the problem is we do not have a heavy duty copier for the floor . we do need a copier . please inform me as how we can work through this , maybe we can split the cost with others on the floor . the move is schedule sometime at the end of the month . i will keep you informed . . . . . . . . thanks kevin moore",0 +"Subject: fw : garp ny - minutes of the credit derivatives meeting - december 13 , 2000 vince i will make sure you get on this distribution list . credit is going to be a big issue for energy companies and banks . we may need to form additional discussion groups . volatility in energy prices and a general economic slowdown may cause an increase in defaults . banks are primarily interested in regulatory impact on loan portfolio and credit derivatives as a an alternative to raising capital or selling assets . energy companies could use credit derivatives to hedge or price credit exposure . don mumma ( ex csfb , md axiom software ) is organizing a survey of energy credit practices . you can reach don at 212 - 248 - 4188 ext 22 . regards , philip merrill garp regional director for new york 973 - 258 - 1540 - - - - - original message - - - - - from : gerber , jeannette [ mailto : jeannette . gerber @ csfb . com ] sent : thursday , december 21 , 2000 7 : 34 pm to : ' garpnyl @ home . com ' ; alev a suer ; amit srivastav ; andrew ulmer ; cfa john p . felletter ; claudia cappelli ; francis owusu ; gerber , jeannette ; joe pimbley ; joseph c carrozzo jr ; lingja zhang ; marian trano - lepisto ; markus buri ; maurizio mondello ; nawal roy ; sarnj . dhanda ; yicheng zhong ; ' john . tierney @ db . com ' ; ' tom _ mansley @ westlb . com ' subject : garp ny - minutes of the credit derivatives meeting - december 13 , 2000 dear members of the credit derivatives group . you ' ve probably been wondering if i would ever get the minutes of last weeks meeting out . well , here they are and i sincerely apologize for the delay . i always thought this time of year is supposed to be slow , but unfortunately , the opposite has been the case . please pay particular attention to the action points . we can only handle these meetings successfully if each and everyone of you actively participates and plays a role ! the next meeting can only be scheduled if there is enough feedback available . wishing you happy holidays , regards , jeannette credit | first suisse | boston crm credit exposure management ( new york ) > * : + 1 ( 212 ) 325 9361 fax : + 1 ( 212 ) 743 2562 minutes of the garp ny credit derivatives meeting - december 13 , 2000 the meeting was generously hosted by westlb attendees : matthew bianco claudia cappelli joe carrozzo jeannette gerber tom mansley philip merrill joe pimbley marian trano - lepisto ( due to some technical problems , not all attendees received the invitations on time . ) summary the aim of this first meeting was to decide on topics , people involvement and the format of future meetings . topics the following topics were discussed for discussion in future meetings : * new models and structures available * practical work issues * credit risk policy * isda issues / documentation * regulatory issues / bis capital * hedging issues ( e . g . embedded options , rollover , funded vs unfunded , etc . ) * electronic trading issues * general technology issues and information on new systems available * pricing differentials * pricing sources * current models used for pricing , var * credit event monitoring * counterparty suitability action : all members to check with credit derivatives colleagues within their organization to go over the list and complete . action : all members to pick topics they could lead through ( or they could organize someone to lead through ) . people involved the involvement will depend on the topic . a member of the group will lead through a meeting , or organize a credit derivative professional to lead through the meeting , depending on the topic . meeting format we expect a series of evening workshops to take place about every 6 weeks . in order to get active discussions going , all participants are expected to inquire within their own institutions as to how the particular subject under discussion is being treated in - house . we feel that the meetings will only be successful if all participants are actively involved in the process . we expect most members to be able to host the meeting once a year . please let me know if and when you could host a meeting . action : all members to check if and when they can host a meeting . the date and venue for the next meeting will be announced in early january , depending on your feedback on the topics . this message is for the named person ' s use only . it may contain confidential , proprietary or legally privileged information . no confidentiality or privilege is waived or lost by any mistransmission . if you receive this message in error , please immediately delete it and all copies of it from your system , destroy any hard copies of it and notify the sender . you must not , directly or indirectly , use , disclose , distribute , print , or copy any part of this message if you are not the intended recipient . credit suisse group and each of its subsidiaries each reserve the right to monitor all e - mail communications through its networks . any views expressed in this message are those of the individual sender , except where the message states otherwise and the sender is authorised to state them to be the views of any such entity . unless otherwise stated , any pricing information given in this message is indicative only , is subject to change and does not constitute an offer to deal at any price quoted . any reference to the terms of executed transactions should be treated as preliminary only and subject to our formal written confirmation .",0 +"Subject: benzene forward curve & hedge calculator new market we are trying to develop in benzene swaps - possibly hedging with financial naphtha and physical toluene . rgds , anjam - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 14 / 03 / 2000 10 : 35 - - - - - - - - - - - - - - - - - - - - - - - - - - - anjam ahmad 14 / 03 / 2000 10 : 34 to : robert brewis / lon / ect @ ect , stuart bland / lon / ect @ ect cc : dale surbey / lon / ect @ ect , hrvoje paver / lon / ect @ ect , stinson gibner / hou / ect @ ect , tracy wallace / lon / ect @ ect subject : benzene forward curve & hedge calculator dear all , attached is the spreadsheet "" benzenecurves . xls "" ( also available in s : \ research \ globalproducts ) that will hopefully allow you to derive a mid - curve for benzene based upon our existing naphtha curve produced by tracy . the previous hedge ratio analysis is still part of the new spreadsheet . for clarity a graph of the curve based on 1996 through 2000 data is depicted below : i can also provide confidence bands on the regression model , if this can assist in deciding the bid - offer spread for the forward curve , but this is slightly more involved - let me know you ' d like this . regards , anjam x 35383 attachment :",0 +"Subject: position report for dual trigger product vince , i have enclosed a summary of our proposed approach on calculation of notional and the greeks for dual trigger option portfolio . please let us know your thoughts / comments . amitava",0 +"Subject: membership in the nsf vince : karen marshall from community relations called and said that you are the one that needs to call the nsf and register yourself and enron with the foundation . they will give you a password and you can pass it on to youyi . the number below is the one that you call . thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 09 / 14 / 2000 03 : 11 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - youyi feng @ enron 09 / 07 / 2000 02 : 09 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : your mail dear shirley , i appreciate you for forwarding this info further . best regards , youyi - - - - - - - - - - - - - - - - - - - - - - forwarded by youyi feng / na / enron on 09 / 07 / 2000 02 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - to : youyi . feng @ enron . com cc : subject : re : your mail dear youyi : the person in charge of external grants in your company needs to contact nsf by calling the following numbers for institution registration . fastlane user support : 1 - 800 - 673 - 6188 . fastlane availability ( recording ) : 1 - 800 - 437 - 7408 . after enron is registered ( i think it ' s a free registration ) , you provide the following information to the enron official so he / she will send it to nsf . nsf will assign you a password for future access to electronic submission ( called fastlane ) . since all proposals have to be submitted through fastlane after oct . 1 , 2000 , this is the must . name highest degree year conferred present institution department street address city state zip code social security number ( ssn ) email address business phone number business fax number for more information , you may go to www . fastlane . nsf . gov / fastlane . htm baichun at 05 : 14 pm 9 / 6 / 00 - 0500 , you wrote : > > dear baichun , > > i am having no idea about contacting nsf while the > managing director of this research group has kindly agreed > on doing anything he can to help us pursue fund rising . > please let me know how enron can put my profile into nsf ' s > database officially . > > the first four pages of the project application have been revised by > me . i do not > really know if you like the revision . appended is the primary > and description of the project document files . > > best regards , > > > youyi > > ( see attached file : project summary . doc ) ( see attached file : project > description . doc ) > attachment converted : "" c : \ bcx \ res \ eudora \ attach \ project summary . doc "" > > attachment converted : "" c : \ bcx \ res \ eudora \ attach \ project description . doc "" >",0 +"Subject: re : spring 2001 conference participation by jeffrey k . skilling rick , i asked greg whalley and he declined ( he has a speaking engagement in london a day before ) . i have sent an invitation to louise kitchen and she has not replied yet . i shall catch her at the management conference in san antonio and ask for a commitment . it would help if you could mention this to her as well . vince richard causey @ enron 11 / 14 / 2000 09 : 30 am to : vince j kaminski / hou / ect @ ect cc : subject : re : spring 2001 conference participation by jeffrey k . skilling where do we stand on this ? is someone else going to do it ? - - - - - - - - - - - - - - - - - - - - - - forwarded by richard causey / corp / enron on 11 / 14 / 2000 09 : 24 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ehud i . ronn "" on 10 / 24 / 2000 04 : 29 : 05 pm to : richard . causey @ enron . com cc : subject : re : spring 2001 conference participation by jeffrey k . skilling at 12 : 10 pm 10 / 13 / 00 - 0500 , you wrote : > in checking with jeff ' s assistant this morning , we hope to get clarity on > the schedule later today or monday ( at the latest , hopefully ! ) . to paraphrase daneil webster ' s famous quote , "" how stands our conference ? "" best , ehud ehud i . ronn professor of finance and jack s . josey professor in energy studies director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: re : tanya ' s vacation shirley , i will be on vacation starting tomorrow 12 / 20 / 00 until 12 / 28 / 00 . i will be in the office on 12 / 29 / 00 tanya",0 +"Subject: discount rates and risk capital dear vince : i spent a little bit longer putting together my initial thoughts on determining discount rates than i originally anticipated . it is somewhat surprising , but there really isn ' t much academic work that i am aware of that addresses these issues . very briefly , 1 . i think we need to come up with a way to define the concept of risk capital simultaneously with the appropriate discount rate . 2 . i think it is important to model enron ' s opportunity cost of capital and how that changes over time . the liquidity of a project will affect its value in a very significant way when the opportunity cost of capital changes over time . there is also likely to be a relation between duration and discount rates that depends on the factors generating enron ' s opportunity cost of capital . 3 . i have vague ideas about possible simulations that may help us quantify some of the issues that i have raised . please take a look at the attached document . you might find this somewhat confusing , so i will give you a call later in the week to discuss this . please let me know when you will be free . i look forward to hearing from you . regards , sheridan - determining discount rates for risky projects . doc sheridan titman department of finance college of business administration university of texas austin , texas 78712 - 1179 512 - 232 - 2787 ( phone ) 512 - 471 - 5073 ( fax ) titman @ mail . utexas . edu",0 +"Subject: re : thanksgiving staff meeting hi clayton , i went to vince and asked him about you attending the staff meeting and he said it was okay . see you there ! kevin g moore 11 / 28 / 2000 10 : 30 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect , anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles weldon / hou / ect @ ect , yana kristal / corp / enron @ enron , praveen mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane green / hou / ees @ ees , shirley crenshaw / hou / ect @ ect cc : subject : re : thanksgiving staff meeting hello everyone , thursday is just two days away . the staff meeting begins at the regular time , 11 : 30 a . m . we will have a hot traditional thanksgiving lunch with all the trimmings . everyone please be present . . . . . . . thanks see you in the meeting kevin moore kevin g moore 11 / 21 / 2000 06 : 09 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect , anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles weldon / hou / ect @ ect , yana kristal / corp / enron @ enron , praveen mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane green / hou / ees @ ees , shirley crenshaw / hou / ect @ ect cc : subject : re : thanksgiving staff meeting we are approaching the holidays , remember , to be very careful during this time . i look forward to seeing everyone at the staff meeting on thursday 11 / 30 / 00 . to enjoy yet another meal of thanksgiving with co - workers . enjoy the holiday ! see you when you return . . . . . . . . . . . . . . . . . . . . . . thanks kevin moore kevin g moore 11 / 01 / 2000 02 : 33 pm to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william smith / corp / enron @ enron , jose marquez / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , sevil yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , gwyn koepke / na / enron @ enron , hector campos / hou / ect @ ect , anita dupont / na / enron @ enron , youyi feng / na / enron @ enron , v charles weldon / hou / ect @ ect , yana kristal / corp / enron @ enron , praveen mellacheruvu / hou / ees @ ees , li sun / na / enron @ enron , stephen bennett / na / enron @ enron , roman zadorozhny / hou / ees @ ees , lance cunningham / na / enron @ enron , leann walton / na / enron @ enron , shane green / hou / ees @ ees cc : subject : thanksgiving staff meeting dear research group , as you are aware thanksgiving is thursday , nov . 23 rd and is a holiday . we as enron employee ' s will be off both the 23 rd and 24 th . thanksgiving is a day appointed for giving thanks for divine goodness . after returning to work we will keep the tradition of giving thanks right here in the work place by celebrating thanksgiving in the thursday ' s staff meeting 11 - 30 - 00 . we will celebrate a act of giving thanks to one another as co - workers and member of the same research group . please look forward to hearing more regarding the staff meeting 11 - 30 - 00 thanks kevin moore",0 +"Subject: re : seeking intelligent insight please . my only risk is potnetial embarrassment . thanks , mark vince j kaminski 08 / 22 / 2000 02 : 47 pm to : mark lay / hou / ect @ ect cc : subject : re : seeking intelligent insight mark , i fully agree with you regarding general trends . i see great progress in software applications that facilitate the process and make it almost painless to the end - user . with you permission , i can show the material you sent me to my son , who studies computer science , and ask him for his view . vince",0 +"Subject: ok - ok vince - i will stay up tonight and call vuthy in london with this news . i ' ll be right back to you ( probably tomarrow - or send you an email tonight ) . thanks vince , jeff jeff , my associates are leaving for london tonight ( monday ) . they can still interview howard on tuesday afternoon . vince * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: re : hotel for the wharton trip hi vince - jeff wanted me to let you know that he will not be able to go w / you on dec . 6 th to wharton . a meeting has come up that he must attend . sorry for the short notice . thanks ! jennifer vince j kaminski 11 / 20 / 2000 04 : 34 pm to : jennifer burns / hou / ect @ ect cc : jeffrey a shankman / hou / ect @ ect , vince j kaminski / hou / ect @ ect , piazzet @ wharton . upenn . edu subject : hotel for the wharton trip jennifer , this is the address of the hotel within a walking distance to the wharton school . please , make the reservation for jeff shankman at this hotel for the december the 6 th meeting . vince kaminski http : / / www . innatpenn . com / contact . html the inn at penn sansom common , 3600 sansom street philadelphia , pa . 19104 phone : 1 - 800 - 809 - 7001 fax : 215 - 222 - 4600 please , mention that the stay is related to the university business when making the reservation . tom piazze at wharton can confirm it . tom piazze phone : ( 215 ) 898 1615 piazzet @ wharton . upenn . edu",0 +"Subject: re : christmas basket list here is the completed list for the year 2000 total $ 1470 . 00 thanks kevin moore kevin g moore 12 / 05 / 2000 10 : 56 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron cc : subject : re : christmas basket list here is the updated list that we have for christmas . the orders will be placed on dec . 12 th . the orders will arrive at the enron building dec . 19 th . and all outside orders will arrive before dec . 22 nd . please inform , if this is okay . thanks kevin moore i will discuss cost with vince after meeting with bill on friday . kevin g moore 12 / 01 / 2000 09 : 26 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron cc : subject : christmas basket list hello everyone , we are nearing the time to get the baskets and other christmas tokens sent out . as in every year , we do take the time to send tokens of appreciation for services rendered , or share the christmas sprit with those we feel worthty . here is the list that i have already , approved by vince . if there are any additions please inform me a . s . a . p . the deadline is december 12 th , as i will be meeting with the owner of floral events to confirm the order and treat him to lunch for all the great work he has provided for me . thanks kevin moore please note : i will be out on vacation and all orders will already have been placed with the delivery date on december 19 th . the day of my return , therefore if any problems occur i will have enough time to solve them .",0 +"Subject: re : recommendation of an outstanding baylor mba student for summer internship at 10 : 17 am 3 / 31 / 2001 - 0600 , vince . j . kaminski @ enron . com wrote : jim , i shall contact althea and make sure rusty meets with the research group members . vince vince , i am quite grateful . thanks for arranging this . by the way , is there any chance that i might be able to attract you to campus this spring before school lets out ? ? if not , let ' s definitely plan on scheduling a time during the coming fall 2001 semester when you can visit campus and present a lecture to my risk management students . sincerely , jim garven james r . garven , ph . d . professor of finance & insurance department of finance , insurance and real estate hankamer school of business hsb 336 baylor university box 98004 waco , tx ? 76798 voice : ( 254 ) 710 - 6207 fax : ( 320 ) 213 - 5580 e - mail : james _ garven @ baylor . edu home page : http : / / garven . baylor . edu vita : http : / / garven . baylor . edu / dossier . html research paper archive : http : / / garven . baylor . edu / research . html ",0 +"Subject: re : many hello helyette , i am in california this week , vacationing with my family . it is a spring break week at stanford and we shall spend a few days in calistoga , north of napa valley , a place famous for mineral water and geysers . i shall talk to karla when i come back to houston about the speeding up the process on our side . our lawyers typically sit on a contract for a few weeks unless we put a lot of pressure on them . american lawyers tend to be very meticulous : this is why the city of los angeles alone has more lawyers than entire japan . i think about two sites for your software : houston and europe ( most likely london ) . i shall be honored to chair a session during the bachelier world congress at college de france . please , let me know which session you have in mind for me . the repeat the francfort presentation in paris on october 4 & 5 is fine with me . i think the frankfurt presentation went quite well and it will be nice to work wih you and alex again . regards vince p . s . i shall keep my office cell phone on all the time , in case you need to call me : 713 410 5396",0 +"Subject: mid - year 2000 performance feedback note : you will receive this message each time you are selected as a reviewer . you have been selected to participate in the mid - year 2000 performance management process by providing meaningful feedback on specific employee ( s ) that have been identified for you . your feedback plays an important role in the performance management process , and your participation is very critical to the success of enron ' s performance management goals . please provide feedback on the employee ( s ) listed below by accessing the performance management system ( pep ) and completing an online feedback form as described in the "" performance management quick reference guide "" . you may begin your feedback input immediately . please have all feedback forms completed by the date noted below . if you have any questions regarding pep or your responsibility in the process , please call the pep help desk at the following numbers : in the u . s . : 1 - 713 - 853 - 4777 , option 4 in europe : 44 - 207 - 783 - 4040 , option 4 in canada : 1 - 403 - 974 - 6724 ( canada employees only ) or e - mail your questions to : perfmgmt @ enron . com thank you for your participation in this important process . the following list of employees is a cumulative list of all feedback requests , by operating company , that have an "" open "" feedback status . an employee ' s name will no longer appear once you have completed the feedback form and select the "" submit "" button in pep . review group : enron feedback due date : jun 16 , 2000 employee name supervisor name date selected - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ahmad , anjam dale surbey may 22 , 2000 carson , margaret m james d steffes may 26 , 2000 carson , richard l richard b buy may 22 , 2000 crenshaw , shirley j wincenty j . kaminski may 24 , 2000 ghosh , soma timothy davies may 31 , 2000 kaminski , wincenty j . john j lavorato jun 05 , 2000 thuraisingham , ravi vasant shanbhogue may 30 , 2000 vernon , clayton j vasant shanbhogue may 26 , 2000 yuan , ding richard l carson jun 02 , 2000 zipter , rudi c theodore r murphy may 25 , 2000",0 +"Subject: re : spring 2001 conference participation by jeffrey k . skilling sherri , any resolution of the scheduling conflict jeff skilling had for february the 22 nd ? our friends at ut are ready to make the reservations and send out invitations to this conference vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000 05 : 00 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ehud i . ronn "" on 10 / 12 / 2000 10 : 12 : 56 am to : richard . causey @ enron . com , vince . j . kaminski @ enron . com cc : subject : re : spring 2001 conference participation by jeffrey k . skilling rick / vince : good morning . further to my discussions with vince during his visit to the energy finance program yesterday , i write at this time to inquire whether mr . skilling ' s assistant has been able to confirm his participation as 2 / 22 / 2001 keynote speaker at our conference . with thanks for your intercession on our behalf , ehud ronn ehud i . ronn professor of finance and jack s . josey professor in energy studies director , center for energy finance education and research mccombs school of business university of texas at austin austin , tx . 78712 - 1179 voice : ( 512 ) 471 - 5853 fax : ( 512 ) 471 - 5073 internet : eronn @ mail . utexas . edu ",0 +"Subject: telephone interview with the research group good morning mr . catanese : your resume was forwarded to the research group and they would like to conduct a telephone interview with you at your convenience . we would prefer the week of july 5 - 7 ( monday and tuesday , the 3 rd and 4 th are holidays ) , if at all possible . please let me know your availability and where you may be reached by phone and i will coordinate the calendars . the interviewers would be : vince kaminski managing director stinson gibner vice president p . v . krishnarao director osman sezgen manager i look forward to hearing from you . sincerely , shirley crenshaw administrative coordinate enron corp . research group 713 / 853 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 06 / 29 / 2000 08 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 06 / 28 / 2000 05 : 19 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : mike catanese ' s resume shirley , please , arrange a phone interview . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 28 / 2000 05 : 23 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 06 / 12 / 2000 07 : 28 am to : vince j kaminski / hou / ect @ ect cc : subject : mike catanese ' s resume vince : this is from ronnie chahal - does he fit anywhere ? - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 06 / 12 / 2000 07 : 22 am - - - - - - - - - - - - - - - - - - - - - - - - - - - laura r arnold @ ees 06 / 09 / 2000 04 : 40 pm to : shirley crenshaw / hou / ect @ ect cc : subject : mike catanese ' s resume shirley , ronnie chahal suggested i forward this resume to you so that you could forward it to the appropriate person within research . please let me know if you need any additional information . thanks , laura arnold x 39540 - - - - - - - - - - - - - - - - - - - - - - forwarded by laura r arnold / hou / ees on 06 / 09 / 2000 04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - junel 789 @ aol . com on 05 / 08 / 2000 12 : 00 : 30 am to : larnold @ enron . com cc : subject : mike catanese ' s resume i am a ph . d . physicist and have worked for the last five years in post - doctoral researcher positions in astrophysics . a few months ago , i realized that i had reached the limit of my academic career options , at least for the near future . after reading about careers in the private sector and discussing possibilities with some family members and friends , it became apparent that my technical and mathematical skills could be transferred to the private sector , with better long - term career options and a more dynamic workplace environment than in academic research . the energy industry is particularly attractive as it begins to deregulate . i have been directed to enron by several different people as a very forward - thinking and growing company and one which values its employees . because of my statistical and mathematical skills , i am interested in a position as a quantitative analyst . however , if there are other areas where the people at enron think i could contribute , i am open to other options . my other experience , such as project management , is outlined in my resume . i have worked in a collaboration of 30 astrophysicists from the us , ireland , and england and i am a capable independent worker as well . i have excellent written and oral communication skills and have made presentations to audiences ranging from technical experts to school - aged children . thank you again for your time and effort in passing this resume on . i look forward to talking with you . sincerely , mike catanese - mike ' s short resume . doc",0 +"Subject: re : credit . com cv ' s shirley , how are we doing on bringibg these people to houston for an interview ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 11 / 2000 08 : 20 am - - - - - - - - - - - - - - - - - - - - - - - - - - - bryan seyfried 05 / 10 / 2000 04 : 51 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : credit . com cv ' s vince thanks for helping out . . . . . we really need more dedicated assistance . zak is probably more pure research and his son phil would possibly be on the desk . . . . . let ' s discuss after you have met them . . vince j kaminski 05 / 08 / 2000 10 : 46 pm to : rosalinda resendez / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , bryan seyfried / lon / ect @ ect subject : re : credit . com cv ' s rosie , we are making arrangements to bring them to houston for an interview . vince rosalinda resendez 05 / 08 / 2000 11 : 10 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : credit . com cv ' s vince , i ' ve been asked to forward these resumes to you . rosie - - - - - - - - - - - - - - - - - - - - - - forwarded by rosalinda resendez / hou / ect on 05 / 08 / 2000 11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - louise bratby 05 / 08 / 2000 10 : 11 am to : rosalinda resendez / hou / ect @ ect cc : subject : credit . com cv ' s rosalinda i work with melanie doyle in london hr . i have two candidates who i ' m trying to arrange ( for bryan seyfried ) to come in and see vince kaminski however i ' m finding it difficult to co - ordinate from this end . would it be possible for you to forward these cv ' s on to vince ' s assistant as i ' m not sure who the correct person is . thanks for your help and if you need more details my number is 44 20 7783 6945 . regards louise",0 +"Subject: re : time keeping hi brad : i am it for our group ! however , it might be a good idea to train sam smith also . please let us know . thanks ! shirley 3 - 5290 from : brad mcsherry on 03 / 20 / 2000 05 : 38 pm to : lydia cannon / hou / ect @ ect , rosalinda resendez / hou / ect @ ect , donna baker / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : time keeping lydia / rosie / donna / shirley , we are looking to implement sap hr by 7 / 1 / 00 . there is a time keeping module in the program . please send me a list of the time keepers for your groups . do not forget to send your own name if you keep time . time keepers will be contacted in the near future for training on the new system . thank you for your help , brad",0 +"Subject: why johan dahl and the mri energy staffing group ? vince , it was a pleasure talking with you earlier today . please read the documents i have attached with this email . let ' s talk in the near future to continue our conversation . i am very confident that my team and i can be successful regarding any staffing need you have . ? i will give sheila in hr a call and see if we can work out a contract . please visit our web site for up - to - date information at http : / / www . mrportland . com thank you for your time and have a nice day . sincerely , johan dahl director energy staffing group phone : 1 - 503 - 287 - 8701 ext . 1153 email : jdahl @ mrportland . com - jcd - client broch - energy # 2 . doc - charter of ethical practice . doc",0 +"Subject: fasbl 33 presentation hello all : paige grumulaitis will give an fasbl 33 training session on tuesday , march 7 , 2000 from 1 : 30 - 5 : 30 pm in eb 46 cl . please mark your calendars . thanks ! shirley",0 +"Subject: new consultants added to enron tiger enron tiger team : we are pleased to tell you that professors howard kunreuther and paul kleindorfer , opim dept , university of penn , will be consultants for the enron tiger project 2001 . please feel free to contact them with any questions or concerns : kunreuth @ wharton . upenn . edu and kleindorfer @ wharton . upenn . edu sincerely , donna piazze program director field application project the wharton school univ . of pennsylvania ( 215 ) 573 - 8394 ( 215 ) 573 - 5727 fax fap @ management . wharton . upenn . edu piazze @ wharton . upenn . edu",0 +"Subject: re : sddp vince many thanks for you help with this - look forward to receiving the info on sddp . kind regards , john",0 +"Subject: re : thank you vince , you were a most gracious guest , and we were honored to have you in our home . i am happy that you are tony ' s friend , and it was a great pleasure for me to get to know you also . and again , thank you very much for the lovely bouquet of roses . elisabeth .",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 r 3 sv 4 order for : kate lucas 1 x ( standard desktop $ 1262 ) enron it purchasing",0 +"Subject: sevil yamin anne , vasant sent this information to norma . i shall fwd his message to you . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 10 / 2001 03 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - stinson gibner 04 / 10 / 2001 02 : 57 pm to : vince j kaminski / hou / ect @ ect cc : subject : sevil yamin vince , do you want me to do this , or vasant ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 10 / 2001 02 : 57 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : anne labbe / enron @ enronxgate on 04 / 06 / 2001 09 : 57 am to : stinson gibner / hou / ect @ ect cc : subject : sevil yamin stinson , i am the new hr generalist for the research group because norma villarreal is moving to business analysis and reporting . earlier this week , norma and i met with vince , and he said that he was going to talk to you about writing up a list of sevil ' s projects / accomplishments for last year and this year , so that we can give her a project bonus since she did not receive a bonus during the normal prc time . at your earliest convenience , will you please email me this list so that i can get started putting together all of the paperwork so that she can receive a check on april 16 th . if you have any questions , please feel free to contact me at 5 - 7809 . i look forward to meeting you , and the rest of the group next week at vince ' s staff meeting . thanks , anne labbe '",0 +"Subject: eol guest account access attention : esai ed krapels thank you for your interest in enrononline . the following is a guest password that will allow you temporary view only access to enrononline . please note , the user id and password are case sensitive . guest user id : ena 61296 guest password : welcome ! in order to apply for transaction status with enrononline , your company needs to complete a password application and registration form for a master user account . each master user will be able to grant various levels of access for additional users . to obtain a password application and registration form , you can visit our website at www . enrononline . com and select the  & how to register  8 link , or call our helpdesk at 713 / 853 - help ( 4357 ) . alternatively , you may click on the attached documents , complete the forms , and fax to 713 - 646 - 8511 . just a reminder , in order to access enrononline , shockwave needs to be installed . the shockwave installer can be found within "" about enrononline "" on the home page . after opening "" about enrononline "" , using right scroll bar , go to the bottom . click on "" download shockwave "" and follow the directions . after loading shockwave , shut down and reopen browser ( i . e . microsoft internet explorer / netscape ) . we hope you will find that enrononline provides an easy and more efficient way to do business with enron . we look forward to transacting with you online . sincerely , danny lee enrononline helpdesk 713 / 853 - help ( 4357 )",0 +"Subject: var for cob 28 th july 2000 hi all , i have run the var model for the positions at close fo business 28 th of july . the model is attached below . as a summary the results are as follows : and as a comparison the previous days figures were : this shows some increase in var for aluminium , copper and lead . the prices for gold and cocoa beans have not been updated as we still do not have a live feed to bloomberg / reuters . i will be working on this with cantekin and andreas should also be able to provide some more historical data . also , after having a discussion with andreas here in london we should probably reduce the vol we are using for tc - we are taking the cu price vol as a proxy which is a too high . however , assuming the the other assumptions we have made around the tc ( ie simulating a parallel shift in the curve and including no term structure to the price curve ) the vol estimate is a conservative one . cheers kirstee",0 +"Subject: re : video conference jeff , we have video facilities both in houston and london . we shall invite howard to visit our office in london again . vince "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" on 02 / 06 / 2001 01 : 44 : 27 pm please respond to "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" to : vince . j . kaminski @ enron . com cc : subject : video conference hi vince , the following ( below ) is what london rw wrote back - is it true enron can do it inhouse between houston and london ? . . . if so , i will get alec to have howard available for you upon arrive back from his holiday for the video conference . let me know if this is what you want and ment . mri has video conferencing but , not in uk . . . so i can ' t provide the service , either . i don ' t want to let you down . thanks , jeff jeff , not available at rw - will be done between enron london and houston . alec * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: re : message 1 quentin , thanks for your message . we are always looking for new employees with the right skills . please , send me your resume and i shall determine what is the best way to arrange an interview . we can interview you in sydney and then bring you to houston for another round of interviews . vince "" qkerr "" on 07 / 30 / 2000 07 : 20 : 28 pm to : "" vincent kaminski "" cc : subject : message 1 dear dr . kaminski this is quentin kerr from australia , i just came back from the sydney ' s conference . glen dixon has told me that you are interested in my work . it is always my honor to work with you . i am currently a phd student at the mathsmatics department of the university of queensland ( aiming to finish my thesis at the end of this year ) . my research interest is financial mathematics , in particular , energy market modeling and derivatives pricing . now i send you copies of my first paper ( submitted to the applied mathematical finance ) and my talk ( the full version of the academic paper will be available in 2 weeks ) . any comment will be appreciated . ps : attached with the talk at the conference . best regard quentin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - quentin kerr , email : qkerr @ maths . uq . edu . au room : 67 - 622 tel : ( 07 ) 33461428 department of mathematics , the university of queensland - conl . ppt",0 +"Subject: re : possible summer internship with enron vince and datren : i have scheduled a telephone interview with ainsley this afternoon ( thursday ) at 2 : 00 pm . her telephone no . is 281 - 852 - 9116 . you can use conference room ebl 938 . thanks ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 05 / 25 / 2000 07 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ainsley gaddis "" on 05 / 24 / 2000 04 : 09 : 07 pm to : cc : subject : re : possible summer internship with enron hi ms . crenshaw ! the best time for the interview would be tomorrow , thursday , around 2 : 00 . you can reach me at 281 - 852 - 9116 . talk to you then ! sincerely , ainsley gaddis",0 +"Subject: australian energy risk 2000 as australian energy risk 2000 is approaching . i am emailing you with regards to your presentation . the deadline date is monday 12 june . if this is going to be a problem please let me know i will be out of the office from monday 12 , until monday 19 june , on which date i will be putting the presentation pack together to send to the printers . if your presentation is complete could you please email it to ldeathridge @ risk . co . uk as a powerpoint file asap . if you have any problems in doing this please do not hesitate to contact me by email or on ( 020 ) 7484 9867 . i will reply to any queries when i return . regards lucie deathridge conference co - ordinator risk publications ? tel : ( + 44 ) ( 020 ) 7484 9867 http : / / www . riskpublications . com",0 +"Subject: zingales seminar enron seminar series in financejones graduate school of management , rice universityluigi zingalesuniversity of chicagowill give a seminar at the jones school on friday , april 27 , "" the great reversals : the politics of financial development in the 20 th century . "" the seminar will begin at 3 : 30 in room 105 . a pdf of the paper is available through the seminar website : http : / / www . ruf . rice . edu / ~ jgsfss / . fu - kuo albert wangassistant professorjones graduate school of management - - ms 531 rice university 6100 main street houston , tx 77005 phone : 713 - 348 - 5404 fax : 713 - 348 - 5251 email : wangfa @ rice . eduhttp : / / www . ruf . rice . edu / ~ wangfa /",0 +"Subject: dba administrator cecil , i ' ve spoken with charlene just now and she sounds very helpful . can you give her a call tomorrow morning to iron out exactly how you want to access the enpower data base ? i ' ve left your name with her so she ' s expecting your call . best , alex - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 05 / 01 / 2001 05 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 05 / 01 / 2001 05 : 13 pm to : michelle d cisneros / hou / ect @ ect cc : alex huang / corp / enron @ enron , vince j kaminski / hou / ect @ ect subject : dba administrator michelle , the name of the db administrator for enpower is charlene fricker , 5 - 3487 . alex will contact her regarding the access to the curve . i think it ' s a problem many layers below gary hickerson ' s level of responsibility and i hope we can handle it without using his valuable time . vince",0 +"Subject: proposal - kevin kindall",0 +"Subject: re : wayne tow ' s resume we are supposed to get back to the headhunter . you can send her an e - mail ( please see the first message at the bottom of the page for the address ) . vince greg nikkel @ enron 02 / 02 / 2000 11 : 39 am to : kathy kokas / corp / enron @ enron cc : melissa becker / corp / enron @ enron , john gillespie / corp / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : wayne tow ' s resume i will set - up a phone interview with him to assess his qualifications and interest in the hr application support lead position . vince , how was it left with the headhunter on how to contact him ? greg from : kathy kokas 02 / 02 / 2000 09 : 16 am to : melissa becker / corp / enron @ enron cc : greg nikkel / corp / enron @ enron , john gillespie / corp / enron @ enron , vince j kaminski / hou / ect @ ect subject : re : wayne tow ' s resume since i only talk to a very few headhunters that we ' ve already done business with and who have provided good people , i ' ll say "" no , i have no current needs "" which is what i tell every headhunter that calls ( at least one a day ) . kk melissa becker 02 / 01 / 2000 02 : 01 pm to : kathy kokas / corp / enron @ enron , greg nikkel / corp / enron @ enron , john gillespie / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : wayne tow ' s resume kathy / greg / john - do we need the skills described in the attached resume on the project team or in the permanent support group or in the esupply group ? there are no personal recommendations associated this resume . vince - thanks for keeping us in mind ! - - - - - - - - - - - - - - - - - - - - - - forwarded by melissa becker / corp / enron on 02 / 01 / 2000 01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 01 / 31 / 2000 09 : 04 am to : melissa becker / corp / enron @ enron cc : subject : wayne tow ' s resume melissa , please , take a look at this resume . any interest ? i got it from a headhunter ( i don ' t know her , it was a cold call on her part and she did not make a good impression ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2000 09 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - leewells @ swbell . net on 01 / 25 / 2000 05 : 34 : 57 pm please respond to leewells @ swbell . net to : vince j kaminski / hou / ect @ ect cc : subject : wayne tow ' s resume hi there mr . kaminski ! it was a pleasure to speak with you today . i look forward to lunch one day soon at brennans . wayne tow is a brilliant man , he worked for many years for a man i know well . this man says , wayne is as good as it get , and he could do anything that is assigned to him , and do it at a level in which he was always amazed . he loves the e - commerce area , and this is what he wants to do thank you , vince . lee wells - wayne 2 . doc",0 +"Subject: re : follow - up interview on 8 / 21 / 00 dear vince , thank you very much for updating me on the status of my job application . ? i got another good news last week . ? i am happy to inform you i passed the 2000 cfa level i examination . the pass rate for level i examination this year is 52 % . i look forward to hearing from you . sincerely , rabi de ? ? ? vince . j . kaminski @ enron . com wrote : rabi , thanks for your message . everybody who interviewed you was greatly impressed with your technical skills and professional attitude . we shall extend an offer to you within a day or two . vince rabi deon 08 / 22 / 2000 02 : 57 : 37 pm to : vince kaminsky cc : subject : follow - up interview on 8 / 21 / 00 dear dr . kaminsky : thank you very much for arranging the follow - up interview with your internal clients . i visited mr . ted murphy and his staff at rac and mr . dennis benevides at ees yesterday . i was impressed with level of risk technology employed by enron to achieve its business objectives . i want to reiterate my strong interest in joining your group , which is held in very high esteem both inside and outside of enron . ? i look forward to h ! earing from you . sincerely , rabi s . de do you yahoo ! ? yahoo ! mail - free email you can access from anywhere ! do you yahoo ! ? yahoo ! mail - free email you can access from anywhere !",0 +"Subject: pre - ranking below is your spreadsheet . this one has your direct reports on it . . . . . . . . . . . the other spreadsheet i sent to your vp / directors didn ' t show this . fyi thx",0 +"Subject: jedi shares vince , attached is a description of the deal involving jedi shares . the structure is a two - year forward followed by another two years of restriction . the pricing is consistent with our previous approach . i have given a copy to stinson as well . as ryan would like a reply in the am hours , i would like to let him know by 11 am . please take a look and let me know what your thoughts are , time permitting . otherwise , i shall check with stinson and proceed . thanks . rakesh - - - - - - - - - - - - - - - - - - - - - - forwarded by rakesh bharati / na / enron on 04 / 06 / 2001 09 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : ryan siurek on 04 / 06 / 2001 08 : 17 am to : rakesh bharati / na / enron @ enron cc : george mckean / na / enron @ enron , gordon mckillop / na / enron @ enron , ron baker / enron @ enronxgate subject : rakesh , can you please take a look at this write up that i put together last night . i would like to get your comments this morning if possible . i am trying to see if we can use this as a discussion tool with some investment banks to get their comments as to the reasonableness of the restriction calculated . also , thanks for your assistance with andersen yesterday . they should be directing all of their questions / comments to me so i can intermediate with you and the rest of the research group . please let me know if they start calling you with questions or want to set up any meetings . regards , ryan",0 +"Subject: home page - new - risk solutions ( http : / / www . marshweb . com / home / ho mepg . nsf / alldo > dear vincent , hope all is well across the atlantic . you may have seen this already but thought i would pass it on just in case . also socgen just pulled off a weather deal for a japanease company looking to protect against wind damage on their flower crop . weather is definatly picking up on this side too with more interest every day . hope all is well , damian goodburn office - 44 20 7847 1829 mobile - 07971 825 309 - home page - new - risk solutions . htm",0 +"Subject: meeting follow - up dear vince , i enjoyed very much meeting you at the eprm conference . as agreed , i am attaching both my resume and the paper on my dissertation work , which i will be presenting at the real options conference in ucla next month . i would be delighted to have your comments and impressions on it . if it is of interest to you , i would also be very enthusiastic about exploring together different powerful ways of applying these concepts at enron . early congratulations on your son ' s graduation ; let me know if you come to the bay area soon . best regards , maria ines de miranda phd . candidate management science and engineering stanford university - resume maria i . de miranda . doc - rool - demiranda . pdf",0 +"Subject: re : calpx prices jason , i think what you may be asking for are caliso power prices . the calpx is a scheduling coordinator and they submit balanced schedules and bid curves to the caliso . the iso combines the curves from participating scs ( of which i believe enron is one ) and calculates the uncongested and congested prices . the caliso prices are available from rdi powerdat , the enron lim database , and a number of other sources . recent historical prices are available from the caliso web site . i am copying your mail to tim hiezenrader , who runs the westdesk fundamentals group . i believe he would know how you might be able to access the more real - time caliso data that enron collects . tim , can you help jason out ? he is a manager in the ena research group . thanks , michael > > > sokolov , jason 01 / 26 / 01 02 : 01 pm > > > michael , i an trying to locate some historical real - time ( spot ) power prices for calpx . do you know who may have them ? jason sokolov",0 +"Subject: thanks paige , thanks a lot for your presentation . it was an eye - opener in many cases . i shall schedule a meeting with you next week to discuss how we can help you in this project . i have some ideas i would like to run by you . vince p . s . shirley , please see if monday is ok for 30 mins ?",0 +"Subject: 6 / 30 aga forecast at 66 mike , my number for next week is 66 ( from seasonal holt - winter model , shw ) . i am also fitting aga to an arimax model . as discussed , i need weighted temperature data for east , west and production areas . i would appreciate if you could provide that data . after that , i could add forward price curve as explainatory variables . since aga is a market mover , it is important to have an accurate model . zimin to : zimin lu / hou / ect @ ect cc : subject : re : revised aga forecast for 6 / 23 is 65 came in at 73 what do have for next week ?",0 +"Subject: re : mscf speaker series pierre - philippe ste - marie thanks . kevin kindall and , possibly , kristin gandy from enron will come with me . vince "" pierre - philippe ste - marie "" on 11 / 01 / 2000 09 : 37 : 13 pm to : cc : "" rick bryant "" subject : re : mscf speaker series dear mr . kaminski , thank you very much for changing your plane ticket , it was unhoped for . everyhting is now ready for your arrival . we will be at 10 . 30 am on friday at your hotel . if you have not received your schedule yet here is the outline : 10 . 30 on board for school 11 . 00 - 11 . 30 presentation set up . brief brush up with students . 11 . 30 - 14 . 00 presentation and lunch with students 14 . 00 - 14 . 30 meeting with professor chester spatt 15 . 00 - 15 . 30 meeting with coc officer 15 . 30 - 16 . 00 brief tour of the school . ( the four department that sponsor the mscf program ) 16 . 00 back at the hotel to relax . 18 . 30 the group will come at your hotel to go to the restaurant . here is the roster for the evening . - kent garrett : one of the top seed of this year ' s class , versed in mathematic and computer science . will guide and drive you through the day . - ignacio delgado : another top student , master from yale . versed in finance , economics and computer science . - punit rawal : seasonned professional , worked in the financial industry for many years prior to joining the program . - hisamitsu tanaka : another seasonned professional , worked in a major japanese bank for many years as a fx option trader / risk manager . - teresa holden : bright computer scientist , worked in an it group for many years prior to joining the program . - frank quian : brilliant programmer , phd in microbiology form columbia . - rick bryant : director of the mscf program - pierre - philippe ste - marie : president of the speaker series ( that would be me ! ) if there is anything else i can do , please tell me . pierre - philippe ste - marie http : / / pstemarie . homestead . com",0 +"Subject: re : greetings van , it ' s nice to hear from you . i am sure that you can always come back to enron if you don ' t like living in new york . i used to work for salomon and chances are you will be working in the same building in lower manhattan where i spent 7 years of my life . i hope you have a great holiday season . vicne van ngo on 11 / 29 / 2000 10 : 52 : 35 pm to : vince . j . kaminski @ enron . com cc : subject : greetings dear vince : i just wanted to get in touch with you , as my last fall semester here draws to a close and this is something of a transition point for me . to update you on my job search , i have been extended an offer for a position within enron ' s analyst program . the offer was very attractive and i had numerous things to consider in reaching my decision . unfortunately , i will be declining enron ' s offer of employment to take a position in the investment banking division of salomon smith barney in new york . my preference at this point is to live outside of houston , and although my hope is also to return to houston in future , new york offers some exciting options for me now . i will be starting there in july of this summer . i hope that i will have future opportunities to be an advocate of enron and look forward to keeping in touch with you and the research group . please give my regards to everyone at the office and wishes for a very happy holiday season ! also please feel free to contact me at any time . i can give you my future contact information when i have it . thank you and i hope i ' ll see you again . sincerely , van p . s . feel free to forward my news onto mike roberts if that would appropriate . i didn ' t have his email with me .",0 +"Subject: benchmarking study sally , i gave you some time ago a brochure on this benchmarking study request . they renewed their request for enron ' s participation . what is your view on this ? do you think the benefits of knowing what ' s going on offset the loss due information released and time spent on the project . my recommendation is to forget it . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 03 / 2001 03 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" theresa sanders "" on 12 / 27 / 2000 01 : 32 : 18 pm to : cc : subject : benchmarking study dear vince , peter nance and i wanted to follow - up our discussion of enron ' s participation in our benchmarking study . have you discussed enron ' s participation in the project with your colleagues ? here is a small sample set of metrics that were taken from a comprehensive list of over 700 metrics . the study group will decide which metrics to use . with eei ' s credibility and teknecon ' s technical expertise , we intend to become the industry standard in benchmarking . we would very much like to have enron participate in the study . i would be happy to set up another meeting with you and your colleagues with peter nance if you think that would be helpful . best regards , theresa sanders director of business development alliance of energy suppliers edison electric institute tel : 202 - 508 - 5183 - eei metrics - short list . xls - ebrochure . doc - riskbenc . ppt",0 +"Subject: calculating bid - ask prices this is about enron movie trading business where we are a market maker for trading future of a movie ' s gross box office receipt . rich sent to many people a writing explaining his movie trading idea and asked us to provide some feedback . i think the idea ( see below ) might be applicable to other parts of enron . we can call it "" dynamic bid - ask price process "" . in fact , we can set that the bidding period is closed when no new bid is submitted to the system within a specified amount of time . the final ( clearing ) bid and ask prices are just the last "" tentative "" price shown to the public before the bidding period ends . ( so the customers can see the final price before the market close and can revise their bids if they wish . ) i think this method is suitable for illiquid products to be traded via enrononline . com . - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 04 / 24 / 2001 07 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 04 / 24 / 2001 07 : 40 pm to : richard dimichele / enron communications @ enron communications cc : chonawee supatgiat / corp / enron @ enron , cynthia harkness / enron communications @ enron communications , greg wolfe / hou / ect @ ect , james ginty / enron communications @ enron communications , jim fallon / enron communications @ enron communications , kelly kimberly / enron communications @ enron communications , kevin howard / enron communications @ enron communications , key kasravi / enron communications @ enron communications , kristin albrecht / enron communications @ enron communications , kristina mordaunt / enron communications @ enron communications , martin lin / contractor / enron communications @ enron communications , paul racicot / enron communications @ enron communications , zachary mccarroll / enron communications @ enron communications , martin lin / contractor / enron communications @ enron communications subject : calculating bid - ask prices i think we should let the price float with the market instead of trying to forecast it . otherwise , if our forecast is not consistence with the market , we may have an imbalance in the bid - ask orders and we may end up taking some positions . you know , as russ and martin pointed out , we cannot fight with the studio and exhibitors because they have inside information and can game the price easily . one way to ensure the balance of the bid - ask orders is to embed an exchange system inside our bid - ask prices front end . each week , we have a trading period . during the period , instead of posting bid - ask prices , we post "" tentative "" bid - ask prices , then we ask our customers to submit their acceptable buying or selling price . these "" tentative "" bid - ask prices get updated and are shown to the public . of course , customers can revise / withdraw their bids anytime during the trading period . at the end of the period , we calculate and post the final bid and ask prices . the seller who submits lower selling price than our final bid price gets paid at the bid price . the buyer who submits higher buying price than our final ask price pays at the ask price . next week , we repeat the same process . this way , we can manage our positions easily and we can also behave like a broker where we don ' t take any position at all . we make profit from those bid - ask spread . we don ' t have to worry about forecasting accuracy and insiders ' trading because we don ' t have to take any position . let the market be the one who decides the price . if we maintain our net position as zero , at the end , when all the actual gross box office numbers are reported in those publications , our customers with open long / short positions are perfectly matched . using the mark - to - market charge can reduce credit risk . thanks , - chonawee - - - - - - - - - - - - - - - - - - - - - - forwarded by chonawee supatgiat / corp / enron on 04 / 24 / 2001 07 : 24 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - chonawee supatgiat 04 / 20 / 2001 04 : 31 pm to : richard dimichele / enron communications @ enron communications , key kasravi / enron communications @ enron communications cc : martin lin / contractor / enron communications @ enron communications subject : some more input hi rich and key , again i think your idea is very good . i think that we , as a market maker , can reduce our credit risk ( risk of default ) if we do the "" mark - to - market "" charging . that is , each week when we release a new expected value of the gross box office receipt , we balance all the opening positions the same way as in a regular future market . this way , we can give margin calls to the couterparties who are expected to owe us a lots of money . in the last paragraph , i think the gross box office can also be determined from the market itself ( i . e . , if there are lots of buyers , our offer price should go up . ) we can offer other derivative products such as options as well . - chonawee",0 +"Subject: re : volatility conference todd , thanks for the invitation to speak on the panel . it was a real pleasure to join you and other leading professionals in the energy area in the discussion on the state of the electricity markets in the us . i want to wish you a very happy and successful new year . vince kaminski "" strauss , todd "" on 12 / 20 / 99 03 : 41 : 27 pm to : vince j kaminski / hou / ect @ ect cc : subject : volatility conference vince - - thanks for participating in the infocast volatility conference in houston 10 days ago . your penetrating analysis of the current state of electricity markets , and what the trends may be , was a very useful contribution to the conference . happy holidays , and wishing you a healthy and prosperous new year / century / millenium . todd strauss principal phb hagler bailly , inc . _ _ _ _ _ _ _ management and economic consultants 1776 eye street , n . w . washington , dc 20006 - 3700 ( 202 ) 828 - 3964 ( 202 ) 296 - 3858 ( facsimile ) this electronic message transmission , including any attachments , is intended only for the use of the individual or entity to which it is addressed and may contain information that is privileged , confidential and exempt from disclosure under applicable law . if you are not the intended recipient or the employee or agent responsible for delivering this transmission to the intended recipient , you are hereby notified that any review , copying , dissemination , distribution or the taking of any action in reliance on the contents of this transmission is strictly prohibited . if you have received this transmission in error please notify me by telephone or by electronic mail immediately - - thank you .",0 +"Subject: houston research opportunity dear vince i would like to make the suggestion that we make this opportunity a one - year assignment working with tanya , and then re - evaluate the situation at the end of the year in terms a new role for me in houston thereafter , subject to mutual agreement . the alternative situation of resigning from enron europe and re - joining enron corp is too dramatic and requires me to "" burn bridges "" and my return to enron europe would be difficult . also , i would lose the valuable support structures available to me in london . the amount of any fixed costs ( flights , modest cargo , a few months of mortgage carrying cost ) are entirely reasonable , not excessive given my single status and not so great that they justify making the contract a three year ( local ) one . i would expect that on the basis of almost 3 1 / 2 years solid experience & value - added at enron europe , the value of several million pounds i have identified & justified to external auditors for enron europe this year and an "" excellent "" rating ( my fourth making my 3 1 / 2 yr average rating also "" excellent "" ) , i could reasonably be expected to justify a fair deal ( i . e . my existing enron europe salary & benefits package plus a reasonable one - off allowance to cover unavoidable additional personal expenses ) . regards & thanks again for the opportunity , anjam x 35383",0 +"Subject: ethink about it : july 31 , 2000 vince this correspondence is sent to you in response to the below question pertaining to the type of research that should be introduced to enron . on tuesday , april 4 th , 2000 , a local newspaper in my area , "" the bakersfield california "" ran an article pertaining to the 50 million dollars of funding from the u . s . congress set aside to study deep sea floor extraction of methane hydrate . this study will focus on methane hydrates as an energy source and the technologies needed for safe , efficient development . according to this article , the ice - like deposits of frozen methane have an energy potential equal to more than twice that of all other fossil fuels combined . i can fax you a copy of this newspaper article if you would like to read it . send me you fax number or call me at enron wind corp . 661 - 823 - 6433 . also when i was in engineering student back in 1985 , i did an independent senior level study on a proposed method which possibly could be used to extract hydrate from the sea floor . if you are interested , i could e - mail you a copy of my thesis explaining this proposed method . carl colditz test engineer enron wind corp . 13681 chantico road tehachapi , ca 93561 661 - 823 - 6433 661 - 823 - 6804 ( fax ) carl . colditz @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by carl colditz / ewc / enron on 07 / 31 / 2000 11 : 48 am - - - - - - - - - - - - - - - - - - - - - - - - - - - the ethink team from : ethink on 07 / 28 / 2000 05 : 58 pm cdt sent by : enron announcements to : all enron worldwide cc : subject : ethink about it : july 31 , 2000 here  , s what you  , ve been missing on ethink : for the answers , consult the archives for the referenced espeak session . "" ene ' s market capitalization is currently around $ 50 b . what do you expect the market cap to be in five years ? what needs to happen to get there ? "" - thomas myers ken lay , office of the chairman , 7 / 14 / 00 "" given appropriate latitude and funding , what is the one kind of research that you would like to introduce to enron - - and what kind of talent would you need ? "" - yannis tzamouranis vince kaminski , enron research , 7 / 12 / 00 do you still believe that nothing can travel faster than light ? a recent experiment conducted in princeton , nj has proved this wrong . reliant says it will file a plan with the texas puc to break into two publicly traded companies . want to learn more ? get the rest of these stories at the enron edge .",0 +"Subject: total return swap hi , vince , please see attached the updated total return swap deals . all the best ! li",0 +"Subject: organizational changes changes in enron ' s business require us to reevaluate how we approach the engineering and construction function within enron . specifically , enron energy services ' ( ees ) business has grown dramatically and that requires considerable additional engineering and construction resources both to develop solutions for customers and to deliver those solutions to customers . additionally , in light of enron ' s continued emphasis on increasing our return on invested capital , we have been engaged in fewer large scale construction projects around the world . historically , these projects have been a primary focus of eecc ' s activities . consequently we are making the following organizational changes concerning eecc : eecc ' s pipeline construction group , led by jerry martin , will become part of enron transportation services . nepco will continue to operate as a stand alone entity focused on power plant construction services to enron entities and third parties . the remainder of eecc will become part of ees . larry izzo will report to the ees office of the chairman . these changes will better align our intellectual capital with the growth opportunities within enron and provide new and exciting opportunities for our employees . please join us in supporting and implementing these changes .",0 +"Subject: re : info about enron ' s bandwidth market dear dr . kaminski , thank you for the follow up . i will keep you posted when i hear from ebs . jun at 05 : 41 pm 10 / 25 / 00 - 0500 , you wrote : > martin , > > can you , please , call shu and provide him with information about ebs ? > > vince > > - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 25 / 2000 > 05 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > > > jun shu on 10 / 23 / 2000 07 : 27 : 49 pm > > to : vkamins @ enron . com > cc : > subject : info about enron ' s bandwidth market > > > dear dr . kaminski , > > i enjoyed your talk this afternoon at ieor very much . > i wonder if you could point me to some information > resource on enron ' s bandwidth market . > > i am a ph . d student at ieor . i work with professor > oren and professor varaiya from eecs department on > the topic of pricing the internet . in particular , i am designing > pricing mechanism in the framework of the diffserv > architecture which is the latest proposal made by > ietf to provide scalable service differentiation . > i would very much like to get in touch with people > in enron working on the similar topics . > > thank you very much . > > jun shu > http : / / www . ieor . berkeley . edu / ~ jshu > > > >",0 +"Subject: london visit i understand that you will be in london around 20 september . tom lewthwaite has asked me to arrange a meeting between you , tom and julian leake . i understand that you have met tom and julian before . i would also like to attend - i am a manager in our uk financial services practice with responsibilty for enron from a uk financial services perspective . we would like to discuss any risk management concerns that you may have and any internal initiatives with which we could assist . if you are happy to meet , i would be grateful if you could let me know how you to proceed ( whether i should arrange timings with you , your secretary , someone in london etc ) . you can contact me on + 44 20 7783 7446 ( at enron ' s london offices ) or on this e - mail address . kind regards paul day * * * * * * * * * * * * * * * * * * * internet email confidentiality footer * * * * * * * * * * * * * * * * * * * privileged / confidential information may be contained in this message . if you are not the addressee indicated in this message ( or responsible for delivery of the message to such person ) , you may not copy or deliver this message to anyone . in such case , you should destroy this message and kindly notify the sender by reply email . please advise immediately if you or your employer do not consent to internet email for messages of this kind . opinions , conclusions and other information in this message that do not relate to the official business of my firm shall be understood as neither given nor endorsed by it .",0 +"Subject: today ' s discussion anjam , thanks for organising this - and vince thanks for making yourself available for the discussion . i am working for joe gold and my group is concerned with adding the web as an additional sales and communication channel for our european business units . through the web we are also able to convey a more local image , rather than presenting ourselves as a texan company through enron . com . to set you into perspective about what we have in mind i have attached a brief presentation which has been the basis for the sign off of the project . we intend to display a wide training section for the following reasons : document our know - how base educate the market participants generate great stickiness ( participants should know that if they need to know s . th . on energy risk mgt . they should go to enron ) later on : have the option to commercialise this area . i look forward to our discussion . kind regards sven becker",0 +"Subject: hello from chicago i wanted to pass this on to you as a group . richard is taking responsibility to ensure we have the appropriate resources to support our transaction business . if you have questions or comments , or need further information regarding the attached , please contact me @ ( 312 ) 357 - 8869 . thanx ! laura - - - - - - - - - - - - - - - - - - - - - - forwarded by laura luce / corp / enron on 01 / 14 / 2000 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - richard tomaski 01 / 13 / 2000 07 : 59 pm to : ed mcmichael / hou / ect @ ect , deirdre mccaffrey / hou / ect @ ect , steve jackson / hou / ect @ ect , berney c aucoin / hou / ect @ ect cc : laura luce / corp / enron @ enron , barbara g dillard / corp / enron @ enron , gregg penman / corp / enron @ enron , kevin p radous / corp / enron @ enron , russell e murrell / corp / enron @ enron subject : hello from chicago hey guys , i just wanted to update everybody on what ' s going on up here in chicago . we ' ve finally got our computers hooked up , so we are off and running now . actually , we got quite of few projects going on up here ( yes , these are real projects ) and we are going to need the houston structuring group for support . i don ' t know if you guys are still short - handed and what kind of projects you may already have lined - up , but i wanted list out some of the projects that we are currently working on . gas lrg project - deirde is currently working on this with russell nss storage - sean boyle helped value both their current and new nss . we are currently working on negotiating with people ' s for these , and i expect that there may be additional requests in the future . manlove summer withdraw program - yes this is not a typo . surprise , surprise . . . manlove can do a lot more than we thought . i ' ve talked to deirdre about it and created a simple model , but i would like to better analyze this with your help . capital improvements - we ' ve got people ' s christmas list of capital projects that we are going to help them analyze and seek if any of these make sense . sendout model - we would like to help them better optimize their morning sendout taking into account current market pricing and the enron supply deal . pbr - we are not sure when or if people ' s will file a pbr , but i think that there are a lot of things that we learned during our previous experience that we can do to help them prepare for a competitive marketplace ( ie transport customers tariff restructuring ) pesc - people ' s is looking for assistance in understanding load following and helping them build models to optimize their retail gas effort san juan pricing - evan has been working with the desk to provide indicative pricing with regard to pec hedging out some of their san juan production reserves power power project development - we have several power projects underway and the ctg group ( billy lemmons ) is helping us create necessary models pesc - the retail power stuff lives . i ' ve think that fallon has a new attitude on these deals and enron has committed to help them figure out this market . power plant balancing model - we have in our portfolio and will be offering balancing / storage services for chicago area power projects . we would like to have a model or at least a better understanding to help us with this endeavor . we have resources in chicago dedicated to these projects , as well as the other stuff we ' re trying to do like negotiate contracts and set up the chicago back office function . we plan on adding our own structuring resources ( in chicago or houston ) , but we felt that we ought to start by figuring out what support the houston office will be able to provide . i will be in the office this monday ( jan 17 ) , so i hope to be able to catch up with you and discuss some of these items then . feel free to contact me if you need to before then at 312 . 357 . 8876 or pager 800 . 778 . 0291 . thanks richard",0 +"Subject: re : mid year prc soma , yes , no problem . vince soma ghosh 05 / 26 / 2000 08 : 43 am to : vince j kaminski / hou / ect @ ect cc : subject : mid year prc vince , may i put you down as one of my reviewers for my final prc within rac ? soma",0 +"Subject: ameriflash newsletter note from mark frevert with the wide and varied activities of our three organizations , we created this e - mail newsletter to keep everyone better informed about our various businesses . i hope you find it informative and more importantly , that you will use this newsletter to help spread the word about the successes in your group . to provide content for future e - mails , contact michelle vitrella in our public relations group via e - mail or call her at ext . 3 - 9767 . communication is one of the core enron values and i believe this is a great way to improve communication across our wholesale businesses . additionally , i would like to again encourage everyone to take a few minutes to complete  & the pulse  8 survey . this annual survey regarding the work experience at enron and how we can make it better is an important part of the two - way communication process at enron . please go to the enron intranet and type survey . enron . com . it only takes a few minutes , it  , s confidential and your comments will help make enron a better place to work . business highlights natural gas middle marketing  , s biggest trade of the year so far occurred this month . the significant transaction was a five year , multimillion dollar restructuring with a subsidiary of formosa plastics , one of the world  , s largest producers of polyvinyl chloride . additionally , continental airlines , the fifth largest us carrier , has hedged a considerable amount ( 1 . 2 million barrels / month ) of crude oil . winter nymex hedges were put in place for the undisputed heavyweight chip champ of the world , frito lay . pulp & paper with the acquisition of garden state paper and launch of clickpaper . com , enron is creating an efficient spot physical market for pulp and paper commodities . buyers and sellers will benefit from improved price transparency and reliability and access to enron  , s online financial markets . improved price transparency and the ability to imbed financial derivatives into physical trading flows will facilitate the growth of enron  , s trading business . to date , clickpaper . com has traded over 1 millions tons of pulp and paper product with a notional value of over $ 675 million . upstream origination upstream origination , headed by julie gomez and jean mrha , focuses on natural gas products to optimize commercial value associated with the natural gas grid on the continent and in the gulf of mexico ( gom ) . through products such as storage , electric compression and producer services & outsourcing , ena creates value for its customers and reconfigures the natural gas infrastructure to be more efficient . in addition , upstream origination transactions exploit the unique relationship between development of strategic assets through sophisticated financing structures and the utilization of the market information created by those assets .  & the pulse  8 survey results as of wednesday , october 18 , the total responses to  & the pulse  8 from ena / egm / eim are 689 . this is approximately 30 % of all employees . since our goal is a 100 % response rate , we have a long way to go ! please take a few minutes to log on and give enron your thoughts . the pulse is located at survey . enron . com on the enron intranet page . if you like competition , here are the results by group : commercial - origination 131 energy operations 126 risk management and trading 106 other / none of the above 91 bus . analysis & rep . / fin . ops . 90 legal 46 gas assets 37 human resources 30 tax 18 technology / it 14 welcome transferred into ena / eim / egm ena - kathleen neal / hr , suzanne kelly / infocentral , tobias monk / finance direct eim - eric connor / industrial energy group egm - eric calub / global product mgmt new hires ena / eim / egm ena - lance cunningham / cts research , anita dupont / cts research , yvette hales / gas logistics  ) east , angela howell / equity trading , farid mithani / power risk - credit egm - heather purcell / enron global markets in the news  & no company illustrates the transformative power of innovation more dramatically than enron . over the past decade enron  , s commitment to the invention  * and later domination  * of new business categories has taken it from a $ 200 million old - economy pipeline operator to a $ 40 billion new - economy trading powerhouse .  8 from  & the world  , s most admired companies ,  8 fortune , monday , october 2 nuggets & notes  & what  , s the message we  , re trying to get across ?  8  ) ray bowen , coo eim  & i  , m not a micro - manager  8 - john lavorato , coo ena  & make it so , number one  8  ) jeff shankman , coo egm contest enron is  & the most innovative company  8 based on fortune magazine  , s most admired survey . ena public relations is ready to put enron north america , industrial markets and global markets to the test . we need your creative minds to help name the new electronic newsletter we now call ameriflash . put on your thinking caps and submit your ideas for a new name to michelle . vitrella @ enron . com . the ena public relations team will narrow the list to the top ten and then send it to our official judge , mark frevert , to make the final decision . the winner will receive a gift certificate to any pappas restaurant . good luck !",0 +"Subject: re : bandwidth writing y ' all , stinson forwarded a copy to me last week . part 1 . 1 was published in this past monday ' s edition as is . i would suggest that unless you see some major error , don ' t suggest changes to samer that would delay the publication of part 2 , scheduled for this coming monday . sam shirley crenshaw @ ect 06 / 07 / 2000 10 : 14 am to : vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , mike a roberts / hou / ect @ ect , joseph hrgovcic / hou / ect @ ect , grant masson / hou / ect @ ect , tanya tamarchenko / hou / ect @ ect , zimin lu / hou / ect @ ect , vincent tang / hou / ect @ ect , alexios kollaros / hou / ees @ ees , martin lin / hou / ect @ ect , maureen raymond / hou / ect @ ect , osman sezgen / hou / ees @ ees , paulo issler / hou / ect @ ect , patricia tlapek / hou / ect @ ect , farouk lalji / hou / ect @ ect , amitava dhar / corp / enron @ enron , alex huang / corp / enron @ enron , ronnie chahal / hou / ees @ ees , kevin kindall / corp / enron @ enron , kevin g moore / hou / ect @ ect , clayton vernon / corp / enron @ enron , william smith / corp / enron @ enron , leandro ibasco / corp / enron @ enron , yanna crystal / corp / enron @ enron , jose marquez / corp / enron @ enron , samer takriti / corp / enron @ enron , chonawee supatgiat / corp / enron @ enron , shalesh ganjoo / hou / ect @ ect , tom halliburton / corp / enron @ enron , elena chilkina / corp / enron @ enron , cantekin dincerler / hou / ect @ ect , brad aimone / na / enron @ enron , datren williams / na / enron @ enron , eloise meza / na / enron @ enron , sevil yaman / corp / enron @ enron , sofya tamarchenko / na / enron @ enron , bob lee / na / enron @ enron , ainsley gaddis / na / enron @ enron cc : subject : bandwidth writing hello all : samer takriti has requested that the attached document be forwarded to you for your feedback . vince would like to put this in the research newsletter . if you feel changes need to be made , please feel free to do so . thanks ! - fiber . pdf",0 +"Subject: re : reminder thanks . i downloaded a lot of stuff from the hbs site including cases , etc . looking forward to working with you . at 03 : 15 pm 7 / 31 / 00 - 0500 , you wrote : > > > john , > > my new e - mail address is vkamins @ enron . com . > > i am compiling the information for you . i should be able to send it in a few > days . > > vince > > > > > > "" john d . martin "" on 07 / 28 / 2000 02 : 41 : 42 pm > > to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect > cc : > subject : reminder > > > > stinson ( and vince - - don ' t think your e - mail address is correct ) > > this is just a reminder about the "" care package "" of enron cases and > materials that you guys were going to send to me . > > stinson , please convey this request on to vince because i think the e - mail > address i have is an old one . > > thanks and have a great weekend . > > john > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : 2001 preliminary i / c billing becky , the charges to corp . go to rac and are based on my projections of expected expenses . the charges are based on the following assumptions ( percentages in the parenthesis show amount of time allocated by each person ( group ) ) to rac : 1 . value - at - risk group ( var ) md ( 25 % ) vp ( 60 % ) director ( 100 % ) 5 managers ( 100 % ) 2 . enterprise wide risk management manager ( 100 % ) associate ( 100 % ) currently we hired ( or will shortly hire ) 4 managers for the var group . the expansion of the var group was planned based on the requests from rac for more support . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 12 / 19 / 2000 01 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 12 / 19 / 2000 11 : 30 am to : vince j kaminski / hou / ect @ ect cc : subject : re : 2001 preliminary i / c billing - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 12 / 19 / 2000 11 : 25 am - - - - - - - - - - - - - - - - - - - - - - - - - - - becky pham 12 / 19 / 2000 11 : 13 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : 2001 preliminary i / c billing madam , i have a meeting with corp tomorrow in reference to the intercompany billing to corp . they are concerned about research allocation . i need some back up to this billing . can you help me ? can i get it by the end of the day to have it reviewed and ready for tomorrow ? please let me know . . . . thanx - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 12 / 19 / 2000 11 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stephen schwarzbach @ enron 12 / 18 / 2000 08 : 55 am to : becky pham / hou / ect @ ect cc : subject : re : 2001 preliminary i / c billing becky , i am discussing these allocations with the appropriate groups within corporate , as they will be the ones accepting / rejecting these charges . i am forwarding this to the appropriate individuals within the corp . departments for their review . so , do not consider corp as "" in agreement "" until you hear back from me . i also reviewed what we are receiving in 2000 and i have a few questions relating to both 2000 and 2001 : 1 . what is esource ? 2 . what is ena ops direct ? 3 . what is ena occ direct ? 4 . what is ena co 021 ? is this vince kaminsky ' s group ? the charges for 2000 have been about $ 16 k and $ 20 k to the rac group , so at that rate , i would expect 2001 to be no more than $ 250 k - $ 300 k , but the plan amount you sent is $ 1 . 9 mm . i will need some detail on this . thanks , steve becky pham @ ect 12 / 14 / 2000 05 : 15 pm to : stephen schwarzbach / corp / enron @ enron , regina hawley / gpgfin / enron @ enron cc : subject : 2001 preliminary i / c billing attached is the 2001 preliminary inter - company billing . ena will be billing plan numbers for all departments except for external legal and external tax , which will be billed base on actual . a quarterly review will be done to determine the variance between plan vs . actual amounts . if the variance amount is material , we will adjust the billing to your business unit accordingly . if you have any questions , call me at 5 - 7094 . please review this billing , and notify me with any questions by wednesday , december 20 , 2000 ; otherwise , it is assumed that you agree to the intercompany billing from ena . you are the only person in your business unit receiving this invoice . if this invoice needs to go to someone else in your business unit , please forward to the correct person and can i be included in the forward e - mail ?",0 +"Subject: re : cost sharing of subscription to poten ' s fuel oil report we have an interest in sharing some of the cost of choice 2 and have zero interest in choice 3 . pls advise in advance what you think this will amount to . thanks , d guy dayvault @ enron 02 / 03 / 2000 03 : 15 pm to : doug leach / hou / ect @ ect , david j botchlett / hou / ect @ ect , ron irvine / lon / ect @ ect , niamh clarke / lon / ect @ ect , dale snyder / hou / ect @ ect cc : margaret carson / corp / enron @ enron , vince j kaminski / hou / ect @ ect , david a subject : cost sharing of subscription to poten ' s fuel oil report all : ideally we will split this cost evenly among as many p & l ' s as need the report , minimizing everyone ' s cost by sharing a single subscription . please tell me whether you can justify sharing the cost and if so , the rc code & co # for me to allocate your cost share . please indicate your choice of the three cost choices . attached note below clarifies poten ' s proposal on the $ 10 , 000 / yr subscription . essentially we have three choices : 1 . for $ 2700 / yr , the standard edition ( 11 issues , excluding the monthly "" special feature "" article ) 2 . for $ 3800 / yr the premium edition , ( standard edition plus the monthly "" special feature "" article , as in three attached examples ) 3 . for $ 10 , 000 / yr the premium edition plus quarterly forward price view for 36 months . poten explains that 85 % of their subscribers take the premium service . no one has ever asked for the $ 10 , 000 / yr long - term price forecast . i have an interest in a longer term price forecast and hope that it may be useful to others in the corporation . the example copies attached include the following special feature articles : 99 feb - analysis of resid trades in the eastern mediterranean 99 sep - patterns of fuel oil trade in the western hemisphere 99 dec - analysis of the resid market in chile one either takes all or none of them for the incremental $ 1100 / yr . some may be useless , others perhaps quite valuable . your call . regards guy "" axelrod , larry "" on 02 / 03 / 2000 02 : 43 : 59 pm to : guy dayvault / corp / enron @ enron cc : fuel share group subject : enron / fuel oil service dear guy , it was a pleasure speaking to you today . as discussed , poten is pleased to offer enron the following two - part fuel - oil related service : ( 1 ) a one - year subscription to poten ' s fuel oil in world markets ( premium edition ) , and ( 2 ) a forecast of delivered crude prices and fuel oil prices in northwest europe ( brent and 1 % s fob fuel oil ) , the mediterranean ( bonny light and 1 % s fob fuel oil ) , and singapore ( dubai and hsfo - 380 cst ) . the forecasts would be provided four times a year and provide average quarterly price projections over the forward 36 - month period . the forecast prices would be accompanied by brief textual commentary . the forecasts would be issued over the course of the one - year fuel oil in world markets subscription period . the fee for the two - part service is us $ 10 , 000 , payable in two equal installments i look forward to hearing from you . best regards , larry l . axelrod phone 212 - 230 - 2038 fax 212 - 355 - 0295 doug leach @ ect 02 / 03 / 2000 01 : 52 pm to : guy dayvault / corp / enron @ enron cc : subject : re : poten ' s fuel oil report - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 02 / 03 / 2000 01 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - dale snyder 02 / 03 / 2000 01 : 44 pm to : doug leach / hou / ect @ ect cc : david j botchlett / hou / ect @ ect , ron irvine / lon / ect @ ect , niamh clarke / lon / ect @ ect subject : re : poten ' s fuel oil report we have an interest in sharing in the expenses of this information the only question being which information and at what cost . can see what the monthly newsletter describes which is relatively cheap but what considerable information does one get for the usd 10 k yr report ? how many ways will we split the costs ? psl advise and thx doug leach 02 / 03 / 2000 07 : 08 am to : dale snyder / hou / ect @ ect cc : subject : poten ' s fuel oil report i have no interest . do you ? - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 02 / 03 / 2000 07 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - guy dayvault @ enron 02 / 02 / 2000 03 : 35 pm to : niamh clarke / lon / ect @ ect , doug leach / hou / ect @ ect , margaret carson / corp / enron @ enron cc : subject : poten ' s fuel oil report niamh & doug & margaret : i want to chat about this and will call you , but the essence is : can you justify sharing the cost of subscribing to poten ' s monthly fuel oil report ? attached below are 3 example copies that include their standard 12 month price forecasts . the cost is $ 3800 / yr . as an added service for a total of $ 10 , 000 / yr , poten will include a quarterly update of their 36 month forward view on crude oil and fo prices with a brief justification for their view . this would include the standard monthly price forecast for the prompt 12 months and quarterly prices for the following 24 months for far east , med and nwe . ( i expect a more descriptive email from poten , but i think this is the essence of their "" custom "" offer . ) the example copies attached include the following special features : 99 feb - analysis of resid trades in the eastern mediterranean 99 sep - patterns of fuel oil trade in the western hemisphere 99 dec - analysis of the resid market in chile these type of features are produced monthly and run a spectrum of subjects related to fuel oil . i have a hard time justifying the cost of the newsletter and the price forecast without the considered recommendation of colleagues such as yourself regarding the utility of such a report . the best way to show your recommendation is with money . if it is not worth any money to anyone else in ene , then i have to question its validity and utility to me as well . doug , would this perhaps be useful to any other business units that have exposure to fo prices ? best regards guy - - - - - - - - - - - - - - - - - - - - - - forwarded by guy dayvault / corp / enron on 02 / 02 / 2000 03 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" axelrod , larry "" on 01 / 24 / 2000 03 : 38 : 53 pm to : guy dayvault / corp / enron @ enron cc : fuel share group subject : poten ' s fuel oil report guy , it was a pleasure speaking to you today . three samples of fuel oil in world markets are attached . let me know if you think the report could be useful to you . regards , larry phone 212 - 230 - 2038 > > > - 99 dec . doc - 99 sep . doc - 99 feb . doc",0 +"Subject: resume and available dates for amy ward vince : here is an electronic version of amy ward ' s resume . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 18 / 2000 01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - amy ruth ward on 02 / 18 / 2000 12 : 02 : 22 pm to : stinson gibner cc : subject : re : thanks for coming to houston stinson , i am pleased to hear your hr department is putting together an offer for summer employment . i enjoyed everyone i interviewed with while in houston and appreciated you taking the time to put together this day . as requested , i am attaching an electronic version of my resume . ( note it is a slightly more updated one then the one i gave you earlier . ) it is in microsoft word format . my dates of availability are wed . , july 5 through fri . , september 15 ( 10 1 / 2 weeks ) . sincerely , amy ward - resume . doc",0 +"Subject: re : worldpower mark , i have an inquiry from a publishing house who are preparing a book on the world power markets . they wanted us to sponsor it ( at the cost of 19 , 000 pounds ) but the reaction from our power desks was lukewarm . they are offering us an opportunity to advertise in this publocatio . i am attaching the message with the terms . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 21 / 2000 12 : 28 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" isherwood production "" on 01 / 21 / 2000 06 : 40 : 08 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : worldpower dear mr , kaminski , i have two advertising positions to offer you as follows : 1 . outside back cover ( plus 200 personalised books ) o 6 , 950 . 00 2 . inside front cover spread ( plus 200 personalised books ) o 7 , 950 . 00 please let me know which ( if any ) options you prefer . kind regards , anna liza sales director * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * worldpower suite 16 , imperial studios london , sw 6 2 ag united kingdom info @ commodities - now . com www . commodities - now . com tel : + 44 ( 0 ) 171 736 0774 fax : + 44 ( 0 ) 171 736 1196 - attl . htm",0 +"Subject: re : tiger team - wharton participants are these students first or second years ? if they are first years , we did not have a single one submit a resume for the summer associate position . michele nezi marvin manager enron broadband services ( 713 ) 853 - 6848 kristin gandy @ enron 01 / 03 / 01 10 : 17 am to : jeffrey a shankman / hou / ect @ ect , william keeney / hou / ect @ ect , catherine clark / hou / ect @ ect , rajesh chettiar / enron _ development @ enron _ development , tom dutta / hou / ect @ ect , jayshree desai / hou / ect @ ect , colin jackson / enron communications @ enron communications , laura howenstine / enron communications @ enron communications , michele nezi marvin / enron communications @ enron communications , jennifer fraser / hou / ect @ ect , natalie halich / enron communications @ enron communications , ranabir dutt / corp / enron @ enron , teresa dyar / na / enron @ enron , jeff golden / hou / ees @ ees , charles ward / corp / enron @ enron , sarah wesner / corp / enron @ enron , li sun / na / enron @ enron , gillian johnson / na / enron @ enron , lisa connolly / na / enron @ enron , michael j popkin / na / enron @ enron , kevin mcgowan / corp / enron @ enron , evan betzer / enron communications @ enron communications , jebong lee / enron communications @ enron communications , chu chu wang / corp / enron @ enron , brad hitch / eu / enron @ enron , betsy bassis / enron communications @ enron communications , matthew goering / hou / ect @ ect , claude tellis / enron @ enronxgate cc : subject : tiger team - wharton participants attached below is a list of individuals that will be participating in the tiger team event at enron in houston on the 18 th of january . keep these people in mind when it comes time to pick candidates to interview for the spring . call if you have any questions and i am still looking for wharton alum who would like to attend the dinner at churrasco ' s that same evening . thank you , kristin - - - - - - - - - - - - - - - - - - - - - - forwarded by kristin gandy / na / enron on 01 / 03 / 2001 10 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - melinda mccarty 01 / 03 / 2001 09 : 43 am to : kristin gandy / na / enron @ enron cc : subject : tiger team - wharton participants vincent chen nicholas levitt deepa mallik jack rejtman heather thorne donna piazze kim whitsel tulika bhalla jaideep singh edson otani joshua leventhal pat henahan gustavo palazzi clay degiacinto steve lessar ram vittal omar bassel jason cummins dennis feerick",0 +"Subject: re : enron / stanford program paul , is there anything i can do to help get the $ 100 k that enron promised to dr . bambos ? - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000 07 : 55 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 10 / 09 / 2000 12 : 04 : 19 am to : stinson . gibner @ enron . com cc : subject : re : enron / stanford program hi stinson , i am under pressure from the department to wrap up giuseppe ' s raship , and i am probing to see how things are going on this matter on your side . i ' m deep in the red in terms of the deadline - way beyond it ! would it be possible to wrap this up this week ? many thanks , nick stinson . gibner @ enron . com wrote : > > nick , > > i spoke with paul racicot , head of trading for ebs , north america this > morning . he said that he is happy to send the $ 100 , 000 for your program > from his budget . i have forwarded to him the draft letter to accompany > the funds and will try to follow up to make sure that the money is sent > promptly . > > - - stinson",0 +"Subject: greetings from garp greetings from garp ! we are having the next meeting january 30 th at enron . time 6 : 30 pm until 8 : 30 pm you are invited to bring a friend with you , however you will need to rsvp . vince kaminski will lead a discussion regarding volatility in the energy markets . refreshments provided . in order to provide easy access to enron ' s facilities and due to security concerns , garp and enron request that everyone rsvp . a guest list will be given to security . rsvp to rita hennessy . her email address is : rita . hennessy @ enron . com i would like to express my thanks , in advance , to mr . kaminski for leading our group in this informative discussion . as many of you are aware , energy markets present some unique challenges to risk managers , and volatility is certainly one of them ! look forward to seeing you on tuesday night . regards , frank hayden regional director - garp",0 +"Subject: re : telephone interview with the research group fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 27 / 2000 01 : 05 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - tammy ting - yuan wang on 04 / 27 / 2000 12 : 36 : 13 pm to : shirley crenshaw cc : subject : re : telephone interview with the research group dear ms . crenshaw , thank you for giving me a chance to talk to you . however , i have already got an offer from another company . i will start working as a full time after i graduate in may . thank you for taking time reviewing my resume . have a nice day . sincerely , tammy wang - - - shirley crenshaw wrote : > > > good morning tammy : > > the enron corp . research group would like to conduct > a telephone > interview with you at your convenience . this will > be as a "" summer > intern "" with the research group . > > please let me know your availability on monday , may > lst or thursday ; > may 4 th . > > the persons who will be interviewing you are : > > vince kaminski managing director > stinson gibner vice president > krishna krishnarao director > osman sezgen manager > > i look forward to hearing from you . > > thank you and have a great day > > shirley crenshaw > administrative coordinator > 713 - 852 - 5290 > > > > do you yahoo ! ? talk to your friends online and get email alerts with yahoo ! messenger . http : / / im . yahoo . com /",0 +"Subject: nelson nele interview vice : i interviewed nelson last week . here is my feedback : 1 ) very communicative 2 ) good professional experience - works as a consultant 3 ) good quantitative background he lacks a background in finance , which may be a minus for a position in the group . i beleive he may be valuable for other areas that deal with emissions and pollutants . paulo issler",0 +"Subject: please note that the date for the lst meeting is january 16 shirley , please put it on my calendar . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 12 / 2001 02 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jennifer burns 01 / 12 / 2001 12 : 46 pm to : phillip k allen / hou / ect @ ect , john arnold / hou / ect @ ect , michael w bradley / hou / ect @ ect , jennifer fraser / hou / ect @ ect , mike grigsby / hou / ect @ ect , adam gross / hou / ect @ ect , rogers herndon / hou / ect @ ect , john j lavorato / corp / enron @ enron , kevin mcgowan / corp / enron @ enron , vince j kaminski / hou / ect @ ect , john l nowlan / hou / ect @ ect , kevin m presto / hou / ect @ ect , fletcher j sturm / hou / ect @ ect , hunter s shively / hou / ect @ ect , bill white / na / enron @ enron cc : jeffrey a shankman / hou / ect @ ect , gary hickerson / hou / ect @ ect subject : please note that the date for the lst meeting is january 16 as mentioned during the fourth quarter , gary and i would like to begin regular meetings of our trader ' s roundtable . the ideas generated from this group should be longer term trading opportunities for enron covering the markets we manage . in addition , this forum will provide for cross commodity education , insight into many areas of enron ' s businesses , and promote aggressive ideas . each week , we ' ll summarize commodity trading activity , and provide an open forum for discussion . your input is valuable , and we ' ve limited this group to our most experienced traders , and would appreciate regular participation . our first meeting will be tuesday , january 16 at 4 : 00 pm in eb 3321 .",0 +"Subject: day rates forward market enclosed for your review is a draft copy of the four examples that i am considering showing to aa as we request that they consider the chances of our trading partners / customers receiving hedge treatment from trades such as these . please review this writing , make suggestions and comments and either email those changes back to me or fax them to me at 713 - 646 - 8416 . if you would rather send your recommendations via courier , send them to eb 3585 b . martin , please suggest wording for insurance products that meet the same needs of the customer as the derivative examples . outline any significant issues and send me those recommendations by thursday at noon if possible . john",0 +"Subject: churn list here is the requested churn list . any questions please call kevin moore @ 34710 thanks kevin moore",0 +"Subject: agenda for transmission roundtable on wednesday , january 24 , 2001 sorry everyone , i guess i am having my monday morning today . here are the attachments . - - - - - - - - - - - - - - - - - - - - - - forwarded by anita dupont / na / enron on 01 / 23 / 2001 09 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anita dupont 01 / 23 / 2001 09 : 56 am to : robin . kittel @ enron . com , bill . rust @ enron . com , steve . walton @ enron . com , ron . tapscott @ enron . com , jeffrey . wilson . enron . communications @ enron . com , sevil . yaman @ enron . com , vasant . shanbhogue @ enron . com , tom . dutta @ enron . com , walter . coffer @ enron . com , vkamins @ enron . com , lloyd . will @ enron . com , martin . lin @ enron . com , christi . l . nicolay @ enron . com , george . hopley @ enron . com , fred . mitro @ enron . com , debbie . chance @ enron . com , patrick . hansen @ enron . com , steve . olinde @ enron . com , madhup . kumar @ enron . com , robert . kraszewski @ corp . enron . com cc : lance . cunningham @ enron . com , shirley crenshaw / hou / ect @ ect subject : agenda for transmission roundtable on wednesday , january 24 , 2001 please review the attached agenda for tomorrow ' s transmission roundtable and let me know if you have any additions or changes . also , please bring to the meeting a hard copy of the attached december 8 meeting notes . thanks . regards , anita",0 +"Subject: godbole report vince / stinson , this is a summary fo the report submitted by the godbole committee appointed by the state government to review the dabhol project . the report clearly suggests renegotiation on the tariff . a lot of what they mention is something we won ' t agree to . however , to me it seems apparent that this can be worked out . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 04 / 16 / 2001 09 : 05 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anshuman srivastav 04 / 16 / 2001 08 : 40 : 04 am to : sandeep kohli / enron _ development @ enron _ development cc : subject : godbole report attached is a small summary that gaurav and rajesh put together on the godbole report . this is confidential . - - - - - - - - - - - - - - - - - - - - - - forwarded by anshuman srivastav / enron _ development on 04 / 16 / 2001 07 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - gaurav varshney 04 / 16 / 2001 07 : 04 pm to : anshuman srivastav / enron _ development @ enron _ development cc : subject :",0 +"Subject: avistar users and allocated charges i have several queries re the avister charges for london , primarily because the spreadsheet is based on a total of 24 london users . we have a total of 14 avistar users installed in london . i believe the following london departments may have been charged for the incorrect number of users : fin  , l trading - $ 74 , 418 . 83 based on 4 units but have 5 users rate & currency ( john greene not listed ? ) 342 - 100467 softs mg - $ 42 , 857 . 23 based on 4 units but have only 1 user 1105 - 120415 ( nigel majury ) credit derivitives - $ 16 , 168 . 42 based on 2 units but none installed 0342 - 102843 ( 3 users on via video pilot ) liquids - $ 56 , 589 . 46 based on 7 units but only 6 installed 872 c - 104546 ( niamh clarke no longer based in london ) shankman london - $ 16 , 168 . 42 based on 2 units but none installed 0342 - 103058 ( brad hitch / merrill thomas no longer in dept . ) eel - exec - $ 8 , 084 . 21 based on 1 unit for john sherriff who is 0342 - 100309 on via video pilot - avistar not installed legal london - $ 8 , 084 . 21 based on 1 unit for michael brown - avistar 0342 - 100348 not installed london it - $ 16 , 168 . 42 based on two units but only one required 0342 - 100348 to administer system the above figures are based on an original average $ 10 , 276 per seat . however , a base change from 24 to 14 seats would increase the per seat charge to $ 17 , 616 . we also ought to look at charging out the isdn calls charges for the avistar system ( in the region of $ 187 , 000 for 4 months ) . regards , wilma x 37275 mobile + 44 7771 887413 - - - - - - - - - - - - - - - - - - - - - - forwarded by sheila glover / hou / ect on 02 / 13 / 2001 02 : 07 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : sheila glover 02 / 13 / 2001 02 : 08 pm to : mike mcconnell / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , gary hickerson / hou / ect @ ect , per sekse / ny / ect @ ect , john l nowlan / hou / ect @ ect , jeff kinneman / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mark tawney / hou / ect , john sherriff / lon / ect @ ect , michael r brown / lon / ect @ ect , nigel majury / lon / ect @ ect , markus fiala / lon / ect @ ect , joseph p hirl / ap / enron @ enron , morten e pettersen / ap / enron @ enron , paul quilkey / enron _ development @ enron _ development cc : paige cox / corp / enron , michael s galvan / hou / ect @ ect , wilma low / lon / ect @ ect , hasan imam / corp / enron , brad lawson / na / enron subject : avistar users and allocated charges avistar has been installed globally to provide desktop conferencing . hardware and installation charges have been allocated by invoice to the relevant location . the schedule below lists by business unit and rc the number of units and charges allocated . it will assume the monthly charge - out process . the allocated dollars will be depreciated over a three year period to your respective cost center beginning february 2001 . if you have any questions please feel free to call or e - mail , sheila glover , 3 - 3210 , or paige cox , 3 - 5428 . thanks . sheila",0 +"Subject: chicago partners davis , i sent out the memo . no reaction yet . vince",0 +"Subject: engineering meetings in broomfield co on march 9 and 10 hi stinson , as per our discussion , which we will expand upon when we meet later today , my currently role in hamachi is better characterize as combination of deal support ( from the engineering perpsective ) , facilitating my work with jean mrha ( via erik simpson ) on the initial load forecast and general requirements document development . none of this is technical by any means . if anything , it is more like engineering consulting ( from deal perspective ) by ebs research to john ' s group . i will bring it up with john tomorrow night about bringing our technical guys on such road trips so that they can get involved with his group even though no optimization modeling work may need to be done . for this i will use samer and / or chonawee but we need to be certain that they are available on such on - call basis as stated below . john is very clear and specific about who he ask to be at such meeting and when , etc . normally he does not want any deviations . so if we put someone on such jobs , they have to be able to travel on - call anywhere , any place . that is the time pressure he is working with . he want me to be the primary contact for such deal support effort . but i will ask to bring along our technical guys on such trips so that they are plugged in etc . . . i will recommend this to john for the next deal that he is planning . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 08 / 00 10 : 57 am - - - - - jeanette busse 03 / 08 / 00 10 : 52 am to : ravi thuraisingham / enron communications @ enron communications , jim irvine / enron communications @ enron communications , dayne relihan / enron communications @ enron communications , tom huntington / enron communications @ enron communications cc : john griebling / enron communications @ enron communications subject : engineering meetings in broomfield co on march 9 and 10 hello all , john griebling has requested your attendance at engineering meetings at the omni hotel in the colorado boardroom on thursday and friday , march 9 & 10 , 8 am - 6 pm both days . the engineering work could possibly overflow into the weekend . you will need to fly out the evening of wednesday march 8 th . please let me know if you have any questions . jeanette jeanette a . busse project manager , strategic alliances enron broadband services , inc . ( formerly enron communications ) 2100 sw river parkway , suite 600 portland , or 97201 office : 503 . 886 . 0214 fax : 503 . 886 . 0434 email : jeanette _ busse @ enron . net",0 +"Subject: re : greetings from baylor university jim , sorry for the delay in responding to your message . i was traveling extensively and was overwhelmed with many different projects . i shall be glad to speak at the gamma iota sigma dinner . unfortunately , i cannot make a presentation to your class ( it would require leaving the office for two days in a row ) . i can , however , promise to come on another day and speak to your students . i hope everything is going well for you . by the way , your former student , shane green , has joined us for 12 month and is doing exceptionally well . vince jim garven on 11 / 28 / 2000 05 : 10 : 55 pm to : "" vince j kaminski "" cc : subject : greetings from baylor university dear vince , since we last corresponded , i have left lsu and am now professor of finance & insurance at baylor university in waco , tx . ? my colleague at baylor , john martin , mentioned that you will be coming to campus for a conference on friday , february 23 that he is organizing . ? ? i am curious whether your schedule might permit staying over that evening so that we can feature you as our dinner speaker for the chartering ceremony of gamma iota sigma , a national risk management fraternity . ? for that matter , would you also possibly be available to make any presentations to undergraduate and graduate students on the previous day ( thursday , february 22 ) ? ? what i have in mind is a presentation similar to the presentations you made last spring to my lsu classes . ? thank you for your consideration of this request . ? i am looking forward to seeing you once again . sincerely , jim garven james r . garven , ph . d . professor of finance & insurance department of finance , insurance and real estate hankamer school of business hsb 336 baylor university box 98004 waco , tx ? 76798 voice : ( 254 ) 710 - 6207 fax : ( 603 ) 994 - 6680 e - mail : ? james _ garven @ baylor . edu home page : http : / / garven . baylor . edu vita : http : / / garven . baylor . edu / dossier . html research paper archive : http : / / garven . baylor . edu / research . html ",0 +"Subject: wharton tiger team according to the information that christie patrick emailed me the following people are assigned to wharton ' s tiger teams 1 and 3 . these candidates per vince kaminski ' s request should receive offers for summer associate positions located in his research group . tiger team # 1 1 . vincent chen 2 . mallik deepa 3 . jack rejtman 4 . kim whitsel 5 . tulika bhalia 6 . nicholas levitt - i am uncertain based on the emailed information from christie if this is a student or a ta ? can either vince or christie verify this information please . tiger team # 3 1 . clay degiacinto 2 . steve lessar 3 . vittal maheshram 4 . omar bassel 5 . dennis feerick 6 . marc "" jason "" cummins the following candidates interviewed with the regular on campus wharton team on 2 / 5 / 01 and were not passed onto the second round interviews . with that information i am not sure if we will offer those candidates positions for the summer program ? 1 . kim whitsel - team # 1 2 . clay degiacinto - team # 3 3 . gustavo pallazzi - team # 2 4 . edson otani - team # 2 i also have that heather thorne is the teaching assistant and donna piazze is the professor for the project . can you also verify that information ? vince if you would please verify and give me the okay via email then i will contact these candidates by phone to inform them they will be receiving an offer from enron . but before i do anything i want to make sure this information is correct and i am not excluding or adding any members that should receive an offer . thank you , kristin gandy",0 +"Subject: 2001 group expenses guys , attached you will find a final cut on the ena 2001 expense budget . please review and make any adjustments to your existing plan that are appropriate to hit the net ena target . in order to stay flat year on year , i split the remaining positive variance equally across the groups . as we had discussed earlier , these costs will not be allocated to the business units and will be tracked on the ena income statement below the line and the accountability managed by each of you . all outside variable costs , specifically related to specific deals , will be charged to the business units eg ) outside legal and tax , outside technical expertise , facility costs , outside research support , incremental back and mid office support for specific asset management deals , specific entertainment , etc . i look at this cost structure as the minimum capacity charge we need to operate our business and evaluate / manage our risks . wes , can you please finalize the one page plan ( expenses and headcount ) for each group with these changes . regards delainey",0 +"Subject: names bryan , the person from citibank : alla gil , ( 212 ) 723 6275 alla . gil @ ssmb . com i am attaching the resume of iris mack . vince",0 +"Subject: storage story see my storage story that begins on 1 . plus you might find the issue to be of interest . i will be doing little occasionally fee pieces for the transportation & storage report and will be having lunch with them tomorrow so any thoughts you have on my piece or the report would be appreciated . best regards , jhherbert - tso 6 - 29 . pdf",0 +"Subject: re : dr . michelle foss - energy institute thanks vince - - am tied up with chairing the iaee conference this week . appreciate your fielding my request via aisha . hope you ' re doing well ! m * * * * * all information in this mail is to be treated confidentially . * * * * * michelle michot foss , ph . d . director , energy institute c . t . bauer college of business 334 melcher hall , room 320 university of houston houston , tx 77204 - 6011 tel . 713 - 743 - 4634 fax 713 - 743 - 4881 www . uh . edu / energyinstitute > , , on 04 / 23 / 2001 03 : 15 : 29 pm please respond to aisha @ uh . edu to : vkamins @ ect . enron . com cc : mmfoss @ uh . edu subject : dr . michelle foss - energy institute dear mr . kaminski , i am writing to ask a favor for dr . michelle foss . as you know we will be running our "" new era "" program from may 14 - may 25 th . dr . foss was wondering if on may 22 nd ( between 1 : 30 pm and 4 : 00 pm ) , we would be able to bring our participants for a tour of your trading floor . at this time we will have 30 - 40 people , and since only 10 people maximum should really be on a trading floor we need to have 4 companies among which to divide our participants . at this time , we have a floor from coral energy , and are working with duke , and i will be contacting mr . paul roberts to arrange for the reliant energy trading floor . i was hoping very much that you would be able to direct me to the right person to contact to arrange this tour . will this be a possiblity ? i really appreciate your help very much . thank you ! best regards , aisha jamal energy institute 713 - 743 - 4634",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 tfn 5 w order for : jason sokolov 1 x ( standard eol desktop $ 1210 ) enron it purchasing",0 +"Subject: "" henwood ' s rationalizing midwest power markets for the future "" workshops henwood announces a major new release and functional realignment of its trading solutions software henwood energy services , inc . ( henwood ) recently announced a major new release of its trading and scheduling software , and the overall realignment of its energy trading and risk management functions into a new , strategic lineup of products . henwood  , s established etrm and webscheduler enerprise software products have been re - launched into physical trading ( webscheduler ) , trade capture and settlements ( trademanager ) , and risk management functions ( riskreporter ) , with greatly expanded capabilities to more strategically meet the needs of the rapidly changing energy markets throughout north america . the release of the new webscheduler ( version 5 . 0 ) , combines a new henwood scheduling version with henwood  , s nerc tagging and iso communication functions to create a comprehensive physical management system . "" the release of the version 5 webscheduler marks an exciting day , both for henwood and for energy companies responsible for managing financial and physical energy transactions across north america , "" explained derek porter , vice president - software products . "" our new product version release and overall product realignment clearly shows henwood  , s dedication to meet the trading needs of today and anticipate the challenges of tomorrow . "" the new webscheduler is a comprehensive physical management product that allows energy organizations to manage physical trading issues from creation through delivery . the software enables traders , schedulers and other energy professionals to conduct their business of physical scheduling , iso coordination , and settlement in one seamless operation . some of the new features include : - real - time price and volume change log - standard ramp assignments - dynamic view and form configuration for commodity volume management - enhancements to scheduling view management - new commodity volume management system - show prices - on - peak / off - peak definition - running totals - enhanced back - to - back / bookout function - enhanced sub - hour function - schedule summary page with copy function - quicktrade capability - grid copy / paste and export functions henwood is offering training courses for the rollout of the physical trading application , scheduled throughout may in both sacramento and atlanta . dates are currently scheduled for may 2 - 3 , 2001 in atlanta , and may 23 - 24 , 2001 in sacramento . space is limited , so please sign up early . henwood offers integrated business solutions , strategic consulting , and innovative ebusiness applications to meet the challenges of the restructured energy markets throughout north america , australasia , and europe , serving clients that include eight of the ten top utilities in north america , in addition to energy services providers and power marketers . for more information about henwood  , s trading and risk management applications , please contact derek porter at 916 - 569 - 0985 ( email : dporter @ hesinet . com ) . additional information about henwood can be obtained by visiting www . hesinet . com .",0 +"Subject: sap ids - coming soon ! ! ! your sap id and password will be communicated to you on june 22 . this id / password combination will enable you to . . . access ehronline to modify your personal information , view your pay advice , access your individual time sheet , and view your benefit elections . enter financial , procurement , project management , and / or human resources information based on the system security you have been assigned . current sap users receiving this e - mail will be receiving a new id to replace their current one as part of the 7 - 1 - 00 implementation - - the new id will be a "" p # "" ( personnel number ) generated from sap hr . if you have questions or comments , please call the coe sap hotline at 713 - 345 - 4 sap ( 4727 ) or visit our web site at http : / / sap . enron . com / coe . thank you .",0 +"Subject: re : 2001 budget for research becky , becky , i have called you this morning about it . it makes perfect sense . vince becky pham 11 / 21 / 2000 10 : 09 am to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : 2001 budget for research can i reduce your budget based on the suggestion below ? please let me know because our deadline is wednesday , november 22 . thanx . - - - - - - - - - - - - - - - - - - - - - - forwarded by becky pham / hou / ect on 11 / 21 / 2000 10 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - becky pham 11 / 15 / 2000 02 : 58 pm to : vince j kaminski / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect subject : 2001 budget for research sir , i just got word that your bottom line needs to be 2 , 200 k . this is net of corp charges and intercompany billings . in order to get to this number , we have to reduce your budget by 83 k . do you have any suggestions in which category ( ies ) we need to reduce ? budget 10 , 521 , 000 i / c billings 8 , 238 , 000 subtotal 2 , 283 , 000 per delainey 2 , 200 , 000 need to dec by 83 , 000 here are my suggestions based on oct expenses : category oct expense budget decrease yearly amount periodical / subscription 5 , 200 10 , 000 3 , 000 36 , 000 tuition and reimbursement 11 , 000 21 , 000 4 , 000 48 , 000 this will bring you to the bottom line suggested by delainey . please let me know your decision by november 21 . if you have any questions , call me at 5 - 7094 . thanx .",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 pqqca order for : vince j kaminski mpl 600 microportable projector - $ 3910 - enron it purchasing",0 +"Subject: var for cob 2 nd aug 2000 hi vince , i was waiting for a comment about the email below before sending it to the full mailing list . basically it suggests that the copper option position may well have increased the var by more than $ 500 , 000 . however , given that the portfoilo has also changed from the lst of august it is difficult to asses the actual change due to the option only . regards kirstee - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 03 / 08 / 2000 17 : 29 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : kirstee hewitt 03 / 08 / 2000 16 : 29 to : cantekin dincerler / hou / ect @ ect , grant masson / hou / ect @ ect cc : subject : var for cob 2 nd aug 2000 hi all , the cu option position has entered the mg books for the 2 nd aug . the delta is 35299 $ / mt for dec 2000 . the cu var has gone up from $ 2 , 245 , 000 to $ 3 , 306 , 000 . i estimated that the portfolio for the lst would increase to approx $ 3 , 039 , 000 so this seems sensible . the overall var change is from $ 4 , 780 , 796 to $ 5 , 991 , 569 . again , the estimate for the lst aug was for an increase in var to ~ $ 5 , 476 , 000 . all estimates were based on a delta of 32 , 0004 / dmt . there has also been some increase in the var for aluminium which will effect the overall total . a summary is as follows : regards , kirstee",0 +"Subject: re : agenda for houston visit hi mike , thanks for the message . here is one more reason why we should have our own in - house modelling : the pcmdi nwp weather maps have been discontinued the pcmdi wxmap web has been discontinued starting 20 december , 2000 please see the u . s . navy wxmaps at . . . i will shortly forward a set of minimum requirements ( hardware . . . ) , softare has been written by me , with some public domain software . i am thinking of setting up an internal website with model output data , and verification info . cheers , christian mike a roberts @ ect 21 / 12 / 2000 09 : 26 am to : christian werner / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , paul quilkey / enron _ development @ enron _ development , mark tawney / hou / ect @ ect subject : re : agenda for houston visit christian , just finished meeting with pual , vince & mark new plan : let ' s plan on your coming to houston march 12 th - april 2 nd ( after our summer / winters respectively but . . let ' s proceed with the project without pause : 1 . please send up the software that needs to be installed along with operating system requirements 2 . please copy me on forecasting provided to sydney office on a daily basis if we work on these two fronts , it will optimize your time here and permit transotion to cover your forecasting there thanks - - - mike",0 +"Subject: re : var meetings in houston shirley , do you think we can get another room with better speaker phone ? or , may be we can get better speaker phone ? tanya viacheslav danilov 04 / 19 / 2001 12 : 58 pm to : tanya tamarchenko / hou / ect @ ect cc : stig faltinsen / eu / enron @ enron , kirstee hewitt / lon / ect @ ect subject : var meetings in houston hi tanya , in my view it is very good if stig and kirstee are involved in your var meetings . therefore , i think it is very useful for them to call houston . could we get a little bit better equipment to allow them to hear everything well ? many thanks , slava - - - - - - - - - - - - - - - - - - - - - - forwarded by viacheslav danilov / lon / ect on 19 / 04 / 2001 12 : 55 - - - - - - - - - - - - - - - - - - - - - - - - - - - stig faltinsen @ enron 19 / 04 / 2001 16 : 23 to : viacheslav danilov / lon / ect @ ect cc : kirstee hewitt / lon / ect @ ect subject : var meetings in houston hi slava , kirstee and i find it useful to listen in on the var meetings in houston on wednesdays . however , it is very difficult to follow the discussion due to a practical problem : we hear little or nothing at times . a possible solution to this problem might be to ask whether one could install a "" spider phone "" in the var meeting room . what i mean is a phone similar to the one in the rac morning meetings which have several remote speakers going out from the main phone ( do you understand what i mean ? ) . if this is done , we would hear everyone around the table , not just those seated close to the phone . what is you opinion on a . us in london calling in to these meetings b . getting some better equipment which would make it easier to follow the conversation ( "" spider phone "" or bigger speaker . . ) please let me know what your thoughts are , best regards , stig",0 +"Subject: re : swaps monitor research . vince , i reviewed all information available on the web site . there is a template that shows what kind of data swapsmonitor provides on commodities , but unfortunately this template is a blank one and no example of the table given . to receive any actual data we have to subscribe to their service ( $ 200 - single delivery , $ 300 - annual subscription ) . below is the template that given for commodity derivatives : the data in this database is derived from audited financial statements , regulatory filings , reports to shareholders . i will be glad to write a summary report . sincerely , elena vince j kaminski @ ect 10 / 12 / 2000 03 : 47 pm to : elena chilkina / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect subject : swaps monitor research . elena , please , review the energy related info in this database ( if any ) and talk to me about it . i would like to do some research in this area and ask you to write a summary report . nothing urgent . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 12 / 2000 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - andrei osonenko on 10 / 11 / 2000 04 : 26 : 38 pm to : ( recipient list suppressed ) cc : subject : swaps monitor research . we have today published information about the otc derivative activities of the largest dutch dealers . this research is contained in the attached pdf file . through our web site , swapsmonitor . com , you can obtain additional information about otc derivatives dealers , including rankings and a database of outstandings going back to 1994 . as an e - mail subscriber to our research , you will automatically receive all free research at the same time it is placed on our web site . if you wish to remove your name from the e - mailing list , please use the reply feature of your e - mail application and type the word "" remove "" in the subject line . regards , - dutch _ dealers . pdf andrei osonenko research department",0 +"Subject: new pc hi lyn : alex huang has requested a new pc and vince kaminski has ok ' d it . please order the computer as listed below in alex ' s request . thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000 01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 07 / 2000 12 : 12 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex huang / corp / enron @ enron subject : new pc shirley , ok . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000 12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - alex huang @ enron 01 / 07 / 2000 08 : 28 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : new pc hi shirley , i would like to request for a new pc . my current pc is quite old with not enough memory . twice i ran out of memory and had to have it people coming to clean it for me . their suggestion is to either get a new hard drive or a new pc . given that dell has pentiumc iii processor at 800 mhz on market , i would like to request a pc with process at 500 mhz or higher level . thank you very much . best , alex",0 +"Subject: re : your approval is overdue : access request for tom . halliburton @ enron . com authorization granted . the system is not accepting my id and password . vince kaminski arsystem @ ect . enron . com on 09 / 28 / 2000 07 : 05 : 09 pm to : vince . j . kaminski @ enron . com cc : subject : your approval is overdue : access request for tom . halliburton @ enron . com this request has been pending your approval for 2 days . please click approval to review and act upon this request . request id : 000000000003619 request create date : 9 / 27 / 00 9 : 18 : 21 am requested for : tom . halliburton @ enron . com resource name : unlisted application / software resource type : applications",0 +"Subject: alliance info alert = = special announcements = = on january 2 , ferc filed a response in opposition to the emergency petition southern california edison filed december 26 for a writ of mandamus against ferc in the u . s . court of appeals for the district of columbia . edison has asked the court to direct ferc to fix by order just and reasonable cost - based rates for the ca iso and cal px markets . on december 22 , ferc issued an order regarding remedies for the california wholesale market that included the requirement of a technical conference on the development of market monitoring procedures . this conference has been scheduled for january 23 , 2001 at ferc . elo 0 - 95 - 000 et . al . = = recent ferc filings = = ( 1 ) rto developments * central illinois light co . , cinergy corp . , hoosier energy r . e . c . , southern illinois power coop . , southern indiana gas and ( 2 ) a request that the commission authorize a designated transmission owner having commission jurisdictional rates and charges to recover , through its commission jurisdictional transmission service rates and charges , the costs incurred by the designated transmission owner as a result of its withdrawal from the midwest iso . erol - 731 - 000 . comments due by january 11 , 2001 . * nyiso filed a status report on governance issues in compliance with docket nos . er 97 - 1523 - 005 , er 97 - 1523 - 006 , oa 97 - 470 - 006 , er 97 - 4234 - 004 and ec 99 - 31 - 001 . comments due by january 10 , 2001 . * after a request filed by numerous entities , an extension of time to file comments and protests to grid florida ' s december 15 , 2000 supplemental order no . 2000 compliance filing has been granted . comments will be due by january 30 , 2001 . rtol - 67 - 000 . * cal px filed its tariff amendment no . 21 regarding the tracking of changes in the method proposed by the ca iso for allocating its grid management charge . erol - 719 - 000 . comments due by january 9 , 2001 . * nyiso filed for a waiver for certain oasis requirements . elol - 24 - 000 . filed december 22 , 2000 . * oklahoma municipal power authority filed an answer to american electric power co . ' s request to defer its application to transfer operational control of its transmission facilities located in the spp . ec 98 - 40 - 000 . filed december 26 , 2000 . * nepool participants committee filed an answer and iso ne filed a supplement to its motion to intervene regarding protests to nepool ' s revised market rules regarding support implementation of electronic dispatch ( rule 3 ) , uplift payments at low operating limits ( rule 5 ) , and installed capacity responsibility ( rule 11 ) as well as a revised implementation date for electronic dispatch . erol - 493 - 000 . filed december 27 , 2000 . * keyspan - ravenswood filed comments in support of nyiso ' s request to moot its compliance filing . ero 0 - 3591 - 000 , 001 and 004 and ero 0 - 1969 - 005 . filed december 22 , 2000 . * maine public utilities commission , the maine public advocate and the industrial energy consumers group filed a request for rehearing or an emergency stay of the commission ' s december 15 , 2000 order directing iso ne to implement an icap deficiency charge of $ 8 . 75 / kw / m retroactive to august 1 , 2000 . elo 0 - 62 - 015 . filed december 22 , 2000 . * miso filed an answer to several protests regarding its oatt in dockets erol - 479 - 000 and er 97 - 1438 - 007 . filed december 27 , 2000 . * pjm filed changes to its oatt to limit the amount of transmission congestion credits an entity that acquires a fixed transmission right ( ftr ) through the ftr auction may receive if it enters increment bids or decrement bids in the day - ahead market that result in an increase of transmission congestion charges at or near the receipt or delivery point of the ftr . erol - 773 - 000 . filed december 22 , 2000 . ( 2 ) oatt / transmission * commonwealth edison filed a revised attachment k to its oatt in compliance with the commission ' s december 8 , 2000 order . erol - 99 - 001 . comments due by january 10 , 2001 . * american transmission company filed their standards of conduct to be effective january 1 , 2001 . erol - 702 - 000 . comments due by january 9 , 2001 . * indianapolis power & light filed its first amendment to the interconnection , operation and maintenance agreement between itself and dte georgetown . erol - 718 - 000 . comments due by january 9 , 2001 . * pjm filed an executed interconnection agreement between itself and bethlehem steel corp . erol - 756 - 000 . comments due by january 12 , 2001 . * arizona electric power coop . filed a request for rehearing regarding the commission ' s order determining that standard offer scheduling coordinators should be subject to the same energy imbalance charges as competitive offer scheduling coordinators . ero 0 - 3583 - 001 , erol - 173 - 001 and erol - 208 - 001 . filed december 26 , 2000 . * american electric power service filed an executed interconnection and operation agreement between indiana michigan power company and duke energy desoto . erol - 720 - 000 . comments due january 11 , 2001 . * illinois power co . filed an interconnection agreement between itself and dynegy midwest generation . erol - 712 - 000 . comments due january 11 , 2001 . * american electric power service corp . filed an executed interconnection and operation agreement between indiana michigan power co . and pseg lawrenceburg energy co . erol - 721 - 000 . comments due by january 11 , 2001 . * utilicorp filed amendments to the oatts for its missouri public service , westplains energy - kansas , westplains energy - colorado and st . joseph power & light operating divisions in order to avoid customers from having to pay multiple transmission charges . erol - 723 - 000 . comments due by january 12 , 2001 . * the american electric power service corp . filed an interconnection and operation agreement between kentucky power co . and riverside generating co . erol - 741 - 000 . comments due january 12 , 2001 . * the cleveland electric illuminating co . , ohio edison co . , pennsylvania power co . and the toledo edison co . ( first energy ) filed a modified proposal to offer ancillary services and interconnected operations services on a non - discriminatory basis . ero 0 - 3771 - 002 . filed december 21 , 2000 . ( 3 ) market complaints * dynegy power marketing , el segundo power , long beach generation and cabrillo i and ii filed a complaint against the ca iso requesting that the commission direct the iso to cease making out - of - market ( oom ) dispatch orders on its units in non - emergency situations , require the iso to negotiate compensatory rates for oom dispatch orders , file for third payment options that generators subject to a participating generator agreement could elect as compensation for oom dispatch orders and other relief . elol - 23 - 000 . comments due january 11 , 2001 . * southern california water co . d / b / a bear valley electric service filed a complaint against southern california edison ( edison ) alleging that edison as seeking to unlawfully terminate the added facilities agreement between the two . elol - 25 - 000 . comments due january 18 , 2001 . * cheyenne light , fuel & power co . filed a complaint against pacificorp regarding a notice of termination filed on december 26 , 2000 of a power sales agreement under which pacificorp provides cheyenne full capacity and energy requirements . elol - 21 - 000 . filed on december 27 , 2000 . ( 4 ) mergers / corporate restructuring * the montana power co . and northwestern corp . filed an application for authorization of the disposition of certain jurisdictional assets whereby northwestern will purchase montana ' s utility business . ecol - 47 - 000 . comments due january 11 , 2001 . * the montana power co . filed a notice of change of status and a revised statement of policy and standards of conduct to reflect a planned transaction pursuant to which northwestern corp . will purchase the utility business of montana power . er 97 - 449 - 001 . comments due january 11 , 2001 . * mississippi valley gas co . submitted a request for rehearing regarding the commission ' s november 24 , 2000 order authorizing the disposition of jurisdictional facilities involved in the joint application filed by entergy power marketing and koch energy trading . eco 0 - 106 - 001 . filed december 26 , 2000 . ( 5 ) miscellaneous * midwest iso submitted an application seeking authorization to issue long - term senior notes in an amount not to exceed $ 100 million . esol - 13 - 000 . comments due january 12 , 2001 . = = other news = = * atc hits the ground running on jan . 1 * utilicorp completes $ 190 million merger with st . joseph light & power - fercfilingsol 0102 . pdf",0 +"Subject: re : greetings carlos , please , forward their resumes to us and we shall set up an interview for them . vince carlos ordonez on 11 / 21 / 2000 09 : 30 : 08 am to : stinson . gibner @ enron . com cc : vkamins @ enron . com subject : re : greetings dear vincent and stinson , both my students would love to come visit you guys for an informal visit in the near future . please let me know well ahead of time when they can come . if possible , see to it that their parking expenses be paid when they do come . i ' ll be in touch with you all over the next months about this and a possible postdoctoral / trainee agreement ( world lab . ) . cheers , carlos",0 +"Subject: technical analysis more fallout - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 05 / 04 / 2001 03 : 03 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : lee ferrell / enron @ enronxgate on 05 / 04 / 2001 02 : 26 pm to : mike a roberts / hou / ect @ ect cc : subject : technical analysis mike , our department has been using your technical analysis to support commercial decisions . you stated that these services would be discontinued . we opted to use your technical analysis in lieu of outside services . please continue to provide technical analysis data with regard to natural gas ( candlestick and elliot wave ) . lee ferrell director , risk management and reporting ets",0 +"Subject: re : gas model chaim , i received a number of phone messages from you . the project is now in the hands of john and i shall be very happy to assist him when he is ready to move . he is looking at the licensing agreement right now . till then , i have to wait for him to make a decision . my role in this project is one of a facilitator , technical consultant . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 16 / 2001 05 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : john goodpasture @ enron 02 / 13 / 2001 10 : 47 am to : vince j kaminski / hou / ect @ ect cc : subject : re : gas model fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by john goodpasture / ots / enron on 02 / 13 / 2001 10 : 34 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" dale m . nesbitt "" on 02 / 13 / 2001 08 : 25 : 12 am please respond to to : cc : subject : re : gas model john : thanks so much for getting back to me . we remain keenly interested in doing the preliminary project for you so that you can know how marketpoint works and how it might help you . we are ready to go on the test process as soon as you and your people are ready . you heard from dr . chaim braun , altos vice president , who called you at my request to inquire about your demonstration project . i will mention to chaim that you expressed your interest via email to me . there is no need to phone him back until you are ready to go . chaim ' s email address is chaim . braun @ altosmgmt . com and he can be reached at the main altos number 650 . 949 . 3541 . my personal phone number is 650 . 218 . 3069 . i look forward to working together . dale - - - - - original message - - - - - from : john . goodpasture @ enron . com [ mailto : john . goodpasture @ enron . com ] sent : monday , february 12 , 2001 3 : 04 pm to : dale m . nesbitt cc : vince . j . kaminski @ enron . com subject : gas model sorry so much time has passed since we last discussed your north american gas model . i am however still interested in setting up a test process to familiarize some of our key people with the model and the database , etc . i am now reviewing the licensing agreement that you submitted in december and will be back in touch soon . i need to discuss this further with the business segments , but i suspect that our interest will be focused more on the long term gas model . another member of your firm had called last week , but i somehow misplaced his name and number . i thought that an e - mail response would suffice for now . my apologies . regards , john goodpasture",0 +"Subject: re : research group kevin , i think it ' s very important . it is important that our work area looks neat . vince kevin g moore 02 / 28 / 2000 11 : 01 am to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : research group hello vince , vince , before i get with delores on the matter of the department i wanted to ask you how important it that we get the walls repaired ? is the research department satisfactory or is there anything else that i can do ? thanks kevin moore",0 +"Subject: revised announcement for real options conference at ucla please find attached a revised announcement and call for papers for the 5 th annual international conference on real options : theory meets practice . the conference is co - organized by the real options group and the andersen school , at ucla , los angeles on july 11 - 14 , 2001 . the submission deadline is march 2 ( and registration is by april 20 ) . travel allowances are provided for all academic presenters ( and fees are waived for all presenters ) . we are proud that eduardo schwartz will be our keynote speaker . we hope that you will be able to participate and would appreciate it if you could also post the announcement or circulate it among other interested colleagues . best wishes lenos - confannjuly 2001 . doc",0 +"Subject: weather delta demonstration meeting the weather delta demonstration will be held wednesday , november 8 th from 10 : 00 - 11 : 30 am in ebl 9 c 2 . please let me know if this is ok with everyone . shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 03 / 2000 10 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - alex huang @ enron 11 / 02 / 2000 01 : 06 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : weatherdelta demonstration scheduling shirley , can you schedule a meeting for the following people ? vince j kaminski , joseph hrgovcic , vasant shanbhogue , lance cunningham , sevil yaman , stinson gibner and i . the preferred time is the week after next week . thanks a lot . alex - - - - - - - - - - - - - - - - - - - - - - forwarded by alex huang / corp / enron on 11 / 02 / 2000 01 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 11 / 01 / 2000 05 : 27 pm to : alex huang / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : re : weatherdelta demonstration scheduling alex , i agree . let them make up the data . please , ask shirley to determine convenient date and time . vince",0 +"Subject: re : pserc industrial advisory board meeting invitation dear mr . ray , i regret to inform you that due to very heavy workload we cannot attend the power systems engineering research center ' s upcoming industrial advisory board meeting in oak brook . our work load does not leave us much time to get involved with pserc at this moment . we would very much like to stay in touch and plan to reconsider our decision in the second half of this year . vince kaminski "" dennis ray "" on 03 / 27 / 2001 04 : 46 : 44 pm to : "" vince kaminski "" cc : subject : pserc industrial advisory board meeting invitation mr . kaminski , greetings . bob thomas , shmuel oren and i invite you to attend the power systems engineering research center ' s upcoming industrial advisory board meeting in oak brook , il . it will be held on may 31 - june 1 . as you know from lance and alex , this is an opportunity to meet university researchers and industrial members of pserc . the meeting also has presentations on pserc activities and research projects , pserc business discussions , current topic discussions , and a tutorial . our current topics discussion will be on iso / rto issues , and will involve executives from several isos in dialog with university researchers . please let me know if you have any questions . we hope to see you there so that we can talk about any questions you might have about pserc . dennis ray , ph . d . executive director power systems engineering research center 608 - 265 - 3808 - directions . doc - iab _ meeting _ may 2001 . doc - iab _ registration _ form . doc - pserc members . doc",0 +"Subject: updated - restricted list neither ena / rac / egf employees nor family members or others living in their household or financially dependent on the ena / rac / egf employee may purchase or sell securities of any entity ( or derivatives thereof ) listed on the restricted list for your or their personal or related accounts or recommend the purchase or sale of such securities to any person , except with the prior approval of the compliance department in consultation with the ena legal department . in addition to the trading restrictions above , should you at any time possess non - public material information about any public company , you , your family members and anybody that is financially dependent on you , are restricted from trading in that issue , and you may not disclose the non - public material information to anyone that does not have a business need to know . company name stock symbol 3 tec energy corp . tten adrian resources beau canada exploration ltd bau cn belco oil & gas corporation bog bonus resource services corp bou brigham exploration bexp canfibre group ltd . cfgl carrizo oil & gas inc . crzo costilla energy cose crown energy croe cynet , inc . cyne cypress energy cyz esenjay exploration esnj hanover compressor co . hc ice drilling enterprises inc . idf industrial holdings , inc . ihii inland resources , inc . inln kafus environmental industries , inc . ks nakornthai strip mill public co ltd nsm set paladin resources plc plr ld paradigm geophysical pgeof place resources , inc . plg cn quanta services inc . pwr queen sand resources , inc . qsri quicksilver resources inc . kwk rhythms netconnection inc . rthm saxon petroleum , inc . sxn cn startech seh cn syntroleum corp . synm tejon ranch corp . trc titan exploration texp transcoastal marine services , inc . tcms zargon oil & gas zar cn the restricted list is solely for the internal use of ena / rac / egf . no one may engage in discussions regarding whether a security is or is not on the restricted list with persons outside ena / rac / egf without specific clearance from the compliance department in consultation with the ena legal department . in addition to the above , you are reminded that pursuant to enron corp . ' s risk management policy ( "" policy "" ) , no ena / rac / egf employee may engage in the trading of any "" position "" ( "" position "" means any commodity , financial instrument , security , equity , financial asset or liability that are authorized for trading in the policy for the benefit of any party other than ena / rac / egf , whether for his / her own account or the account of any third party , where such position relates to ( i ) any commodity , financial instrument , security , equity , financial asset or liability which falls within such employee ' s responsibility at ena / rac / egf or ( ii ) any energy commodity . the prohibitions listed above do not replace or modify the policies set forth in ena ' s policies and procedures regarding confidential information and securities trading , enron corp . ' s risk management policy , or enron corp . ' s conduct of business affairs . should you have any questions regarding the above , please contact me at ext . 31939 .",0 +"Subject: speech by chairman pat wood of puct - ctaee meeting - nov . 29 , 2000 dear colleague : we are honored to have chairman pat wood of the public utility commission of texas as the distinguish speaker for the meeting of the central texas chapter of the united states association for energy economics . chairman wood is the main architect of electric industry restructuring in texas and this meeting offers a unique opportunity to hear his speech entitled : "" texas ' future competitive electric industry "" please mark your calendars and join us on wednesday , november 29 at 5 : 00 pm at the lower colorado river authority ' s board room , located at 3700 lake austin blvd ( hancock building ) , austin , texas . the meeting will open with refreshments and chairman wood ' s presentation will begin at 5 : 30 pm . the meeting is open to the public and is free . we extend a special invitation to all members of the usaee that reside in the central texas area . please plan to meet david deangelo , president of usaee , who we are fortunate to have as our special guest . david will be happy to answer any questions you have about the iaee and usaee . about the ctaee the central texas association for energy economics ( ctaee ) focuses on current energy events and research at the state , national , and international level . it is an excellent forum to meet , network , and exchange ideas in the regional energy community . local programs will be held six to eight times a year . the ctaee is a local chapter of an international association known as the international association for energy economics ( iaee ) . ctaee is a non - profit organization and is a totally non - partisan forum for stimulating discussion and dialogue on major energy policy and analysis issues . to provide exceptional meeting topics and dialogue we need your local membership . your participation in ctaee can bring new ideas to help promote effective energy policy . about the iaee and usaee the international association for energy economics ( iaee ) , founded in 1977 , provides a forum for the exchange of ideas , experience and issues among professionals interested in energy economics . its scope is worldwide , as are its members , who come from diverse backgrounds - - corporate , academic , scientific , and government . the united states association for energy economics ( usaee ) is an affiliate of the international association for energy economics . as a member of iaee you will gain a broader understanding of energy economics , policymaking and theory . members are kept well informed by iaee and usaee publications and conferences on events within the energy industry and energy challenges that lie ahead . furthermore , membership provides you with the opportunity to network within the largest association of energy professionals in the world . mina m . dioun , ph . d . neil mcandrews karl j . nalepa ctaee president ctaee vice president ctaee treasurer ( 512 ) 473 - 3333 x - 2549 ( 512 ) 415 - 3227 ( 512 ) 463 - 8574 mdioun @ lcra . org nmcandrew @ austin . rr . com karl . nalepa @ rrc . state . tx . us - ctaee - meeting . doc",0 +"Subject: re : implementing clustering and jumps for power frank , our var team has been looking at different ways to implement clustering and jumps for power prices simulation in var . i attached the suggestion we came up with and the results of clustering and jump parameters estimation . would you like to discuss this methodology ? we need your input . please , let me know , thank you , tanya .",0 +"Subject: weather course vince , ? we just wanted to let you know that we only have 3 people signed up for the weather derivatives course ( all from enron ) so far . ? we have a couple more that have expressed strong interest , but we are awaiting their final decision . ? if no one else signs up , chris and les thought that you guys could probably get through the first day pretty easily , ? and thus thought it may be an option to teach just the 2 nd day material ( pricing ) only at enron ( doing it at the hyatt is an option as well but the room might be on the large side ) ? ? we would obviously reimburse you for the day not taught . ? we can teach both days as well , but thought you may want to save some time . ? ? i just wanted to give you some time to think about it . ? we will know where we stand on final numbers by next wednesday . ? julie ? ?",0 +"Subject: re : ed krapels absolutely - i can ' t find the previous email but it may have been lost during the few days they moved my email box from london to houston - i know i had a lot of lost emails - do you have his phone number and email and we can sort out a password for a few days for him too . louise vince j kaminski 10 / 02 / 2000 22 : 15 to : louise kitchen / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : ed krapels louise , some time ago i sent you a message regarding ed krapels . he is writing a book on energy commodity markets and would like to learn more about eol . can you give him a call and chat with him for 10 minutes . he is a good friend of enron and it would be free ad for us . vince",0 +"Subject: schedule interview for stephen bennett friday , august 4 , 2000 interview begins at 9 : 00 a . m . 9 : 00 a . m . vince kaminski - ebl 962 10 : 00 a . m . john lavarato - no interview 11 : 15 a . m . mike roberts / jose marquez ( luncheon interview ) 3 : 00 p . m . hunter shively - eb 32 c 2 3 : 15 p . m . jeff shankman - eb 32 c 2 3 : 30 p . m . john arnold - eb 32 c 2 3 : 45 p . m . toni graham - itinerary and resume will follow . . . . . . thanks kevin moore please note : do not offer mr . bennett a position without john lavarato approval",0 +"Subject: file cabinet for mike roberts vince : since we have to clear kevin ' s office for the new employee jaesoo lew , can kevin order a tall file cabinet to put the material in ? thanks ! shirley vince j kaminski 11 / 20 / 2000 10 : 55 am to : shirley crenshaw / hou / ect @ ect cc : subject : re : "" skunkworks "" meeting with scott tholan shirley , no , that ' s it . vince shirley crenshaw 11 / 20 / 2000 10 : 06 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : kevin g moore / hou / ect @ ect subject : "" skunkworks "" meeting with scott tholan the "" skunkworks "" meeting with scott tholan scheduled for this wednesday , the 22 nd has been cancelled , per scott tholan . mike / vince : is there anyone else , that needs to be notified ? thanks ! shirley",0 +"Subject: in confidence / project status hi vince i ' d originally been told you wouldn ' t be back until wednesday , and so have another meeting booked for 4 : 30 pm ( london time ) today . i really need to speak with you about the situation here in london re anjam . to be blunt , sharad , kirstee and i have all been tempted to just walk out of the office until anjam is removed . the major problems are : 1 . i have no authority to demand anjam should cooperate with sharad , kirstee etc . on their work . he does his best to impede their work , and i have no ability to access his drives for data / spreadsheets . 2 . anjam removes me from the cc lists in reply to all emails received by him , in an attempt to remove me from the loop . 3 . anjam continues to "" do business "" , and people in london still think he ' s head of research . 4 . pending your "" announcement "" , people will continue to go to anjam , and the business will remain dependent on him . 5 . we ' re severely under - resourced . i ' m still awaiting your review of the email i drafted for john s , requesting additional resource . i can ' t make a big recruitment drive until i have the authority to hire more . i honestly feel i can ' t do my job , and i ' m currently asking myself what i ' m even doing here . notwithstanding the above , here is the current picture with our projects : steve 1 . initiated new pre - trade system for oil trading desk . hooked up relevant it resource with business people , keeping an overall eye on making sure the business reqts get translated into it - speak . 2 . enron direct demand forecasting system review . 3 . initiated global supply / demand database with coal group . 4 . constant firefighting across all desks . ben 1 . work on regression - based placement model . 2 . general review of enroncredit . com ' s quant models . matthew 1 . ongoing work with engoal . 2 . produced first prototype of gas capacity charge optimisation tool for continental gas desk . need to purchase local copy of cplex . kirstee 1 . diverted from richard lewis ' s request for the uk gas / power vol curves to be sorted out , onto eastern virtual power station restructuring project . involves extension runs of credit reserve model , and now it seems the model needs to be extended . 2 . constant var firefighting . slava 1 . finished all regressions and model identification for uk gas and power demand forecasting . we are now ready to start it implementation . 2 . enron direct demand forecasting system review . sharad 1 . exotica support / firefighting , made nearly impossible by anjam . 2 . option on strip of metals futures for enron metal . i do hope we get a chance to speak and resolve some of these issues . i ' m really not happy at present . best regards , steve",0 +"Subject: re : calpx power prices ? ? ? - - - - - - - - - - - - - - - - - - - - - - forwarded by jason sokolov / hou / ect on 01 / 29 / 2001 03 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : maria van houten 01 / 29 / 2001 11 : 35 am to : jason sokolov / hou / ect @ ect cc : subject : re : calpx power prices jason , are you looking for calpx hour ahead umcp or calpx hour ahead zone prices ? we have hour ahead zone price data from 10 / 1 / 98 - current and hour ahead umcp from 11 / 6 / 2000 onward . maria v . h . from : jason sokolov 01 / 26 / 2001 09 : 17 am to : maria van houten / pdx / ect @ ect cc : subject : calpx power prices maria , i am looking for historical hourly real - time ( spot ) power prices for calpx . can you help me to locate them ? jason sokolov",0 +"Subject: complexity science and the energy industry brown bag update , apri l 18 th , 2001 nesa / hea members : a couple changes have been made to the april 18 th brown bag . attached is an update with the brown bag details . > > > we look forward to see you there . please contact me with any questions ( 713 ) 856 - 6525 . thanks , lana moore - nesa brownbag flyer . doc",0 +"Subject: re : ca for henwood stinson - we will get something to you tomorrow . bruce stinson gibner @ ect 01 / 04 / 2001 05 : 18 pm to : bruce lundstrom / enron _ development @ enron _ development cc : vince j kaminski / hou / ect @ ect , sandeep subject : ca for henwood bruce , evidently your assistant was unsuccessul in finding the ca ' s used in either the of the previous henwood projects for japan and korea . we are working on a project to model the economic viability of dabhol under economic dispatch and are faced with a very tight deadline in february . can you help us put together a confidentiality agreement for henwood energy services , inc . who will be performing the model calculations ? any help would be appreciated . regards , stinson gibner v . p . enron research x 34748",0 +"Subject: livelink access - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 11 / 2001 01 : 13 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - enron technology from : moyez lallani @ enron 01 / 16 / 2001 10 : 46 am to : stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : subject : livelink access gentlemen , i have created a folder called research projects folder in the livelink test instance . the url to the test instance is to log in , use your nt login id as your userid and password ( all lowercase ) . you will find the folder on the enterprise workspace . please call me should you require further assistance . moyez lallani x 5 - 3683",0 +"Subject: organizational changes we are making a number of significant organizational changes . these changes are intended to accomplish four key objectives : first , we need to realign all our wholesale businesses around the successful business model developed over the last decade in north america and europe . this model relies on extensive physical and transactional networks built around a relatively small strategic asset position . second , we need to significantly streamline corporate reporting relationships . particularly with joe sutton  , s departure , the ability to directly manage the day - to - day activities of 15 independent business units has become increasingly difficult . third , we need to accomplish these changes without , in any way , compromising the ongoing profitability of all our businesses and without delaying or hindering our effort to monetize a significant portion of our lower - yielding asset positions . and fourth , as always , we need to take advantage of the reorganization to redeploy our talent into our highest value opportunities . enron wholesale services today , we are forming enron wholesale services ( ews ) which will consolidate our global wholesale businesses . the closer alignment of our wholesale businesses will accomplish the following : ( 1 ) enhanced communication and coordination across business units , ( 2 ) more rapid deployment of people to higher valued opportunities , ( 3 ) more effective prioritization of opportunities across the wholesale business , and ( 4 ) more rapid extension of enron  , s wholesale business model and capabilities into new industries and markets . enron wholesale services will include our current north american , european ( including japan and australia ) , global markets , and industrial markets operations , and will be expanded to include enron  , s net works business unit as well as a new unit  ) enron global assets . in addition , enron  , s merchant businesses outside of north america and europe will be integrated into this new structure as described below . mark frevert , currently chairman of each of our wholesale units , will assume the role of chairman and ceo of enron wholesale services . greg whalley , currently chairman and ceo of enron net works , will join mark in the office of the chairman as president and chief operating officer . providing further impetus for these organizational changes , several of our international business unit leaders have elected to move into new leadership positions : rebecca mcdonald , currently ceo of enron apachi , will join ews as president and ceo of enron global assets . enron global assets will have responsibility for managing all of enron  , s existing energy asset portfolio outside of north america and europe . joining rebecca in the office of the chairman as coo will be jim hughes , currently coo of enron apachi . rebecca and jim will report to the ews office of the chairman . sanjay bhatnagar , currently ceo of enron india , has joined ebs as ceo for the middle east and asia region . sanjay will be responsible for building our broadband business in this region and the current ebs team in this region will report to sanjay . in this role , sanjay will report to the ebs office of the chairman . in addition , sanjay will continue to remain responsible for enron  , s wholesale energy business in india and will transition this business into enron global assets in the near future . diomedes christodoulou , currently co - ceo of enron south america , has joined ebs as chief commercial officer . diomedes will be located in london and will focus his origination activities on global opportunities , with near term attention to the wholesale and enterprise sectors . diomedes will report to the ebs office of the chairman . jim bannantine , currently co - ceo of enron south america , will be joining ees to lead ees  , commercial efforts outside north america and europe . in order to ensure a smooth transition for our south american businesses and to facilitate our asset sales activities , jim will remain in south america for at least the next several months and continue to serve as ceo of enron south america . throughout the transition , jim will report to cliff baxter and to the office of the chairman of enron wholesale services . following the transition , jim will join ees . in addition to these changes in our international asset operations activities , we are making the following changes in our merchant wholesale businesses and the commercial support functions : enron net works louise kitchen will assume greg  , s previous responsibilities as president and ceo of enron net works , reporting into mark and greg . enron americas concurrent with the transfer to enron global assets of responsibility for operating enron  , s south and central america asset base , all trading , marketing , and new asset development activities in these regions will report into a new entity , enron americas . enron americas will have responsibility for all wholesale merchant businesses across north , central and south america . dave delainey , president and ceo , and john lavorato , chief operating officer will comprise the office of the chairman for enron americas . enron europe the enron europe organization , which includes enron  , s businesses in australia and japan , and enron metals , remains unchanged under the leadership of john sherriff , president and ceo , and michael brown , chief operating officer . enron global markets enron global markets , under the leadership of mike mcconnell , president and ceo , and jeff shankman , chief operating officer , will continue to have responsibility for enron  , s middle east and lng operations . with the exception of ecoelectrica in puerto rico , all operating power plants and associated personnel in the caribbean and central america will transfer to enron global assets . enron global markets will also continue to manage the commodity businesses in crude and products , coal , weather , insurance , equities , interest rates , foreign exchange , and agricultural products . enron industrial markets enron industrial markets  , organization , under the leadership of jeff mcmahon , president & ceo , and ray bowen , chief operating officer , remains unchanged . commercial support for ews the commercial support functions for ews will remain with , and be managed by , the individual business units . we are creating no incremental overhead in the creation of ews , and in fact hope to reduce our operating costs by more efficient utilization and sharing of resources across ews . to this end we have asked several people to take on an expanded role across ews in addition to their ongoing roles within their business units . these newly defined roles are as follows : mid and back office operations  ) sally beck will lead mid and back office operations across ews . these services will become part of enron net works , with sally reporting to louise kitchen and rick causey , executive vice president and chief accounting officer . this alignment creates a coordinated services organization with it and e - commerce platforms to support the wholesale businesses and to maximize opportunities to commercialize these services . mid and back office services for all commercial activities will continue to be organized with dedicated operations controllers responsible for specific commodities and / or geographic locations . legal  ) mark haedicke will serve in the role of general counsel for ews . regulatory and government affairs  ) this function will remain organized on a regional basis . rick shapiro will support all ews businesses operating in the americas , and mark schroeder , who is based in london , will support all european and eastern hemisphere operations . rick and mark will also continue to support all other enron businesses operating in their respective regions and will continue to report to steve kean , executive vice president and chief of staff . public relations  ) this function is also organized primarily on a regional basis . eric thode will have responsibility for north american activity , enron net works , and enron industrial markets . jackie gentle will continue in her role for enron europe ( including japan and australia ) and john ambler will have responsibility for activity outside north america and europe as well as providing support for enron global markets and enron global assets . these individuals will also continue to have a split reporting relationship to mark palmer , vice president of communications . business analysis and reporting  ) wes colwell will expand his role to cover ews reporting in addition to his current role in north america . attached for your review is an organization chart for enron wholesale services which summarizes the changes described here . as this organization continues to evolve we will keep you informed of any additional changes . enron global exploration and production and enron wind as part of our company - wide initiative to examine our assets and investments around the world , we are considering a variety of options with respect to egep and ewc . as a consequence , we are putting these businesses under cliff baxter  , s direction . jeff sherrick , ceo of egep , and jim noles , ceo of enron wind , will report to cliff . corporate staff we are consolidating the corporate staff functions : human resources , government affairs , public relations / communications and administration . in that regard , cindy olson , executive vice president of human resources and community relations , will report to steve kean , executive vice president and chief of staff . committee structure in light of the increased leadership opportunities created by enron  , s growth , the executive committee will be expanded to include more of our business unit leaders . the primary role of this committee will continue to be the communication of relevant information across enron  , s businesses and the coordination of activities across those businesses . we will also be drawing on this group to lead company - wide initiatives such as the performance review process and evaluation and creation of new businesses . the executive committee membership is shown on the attached list . we are also forming a new committee  ) the enron corporate policy committee . this group will be responsible for overall corporate policy , personnel management policy and corporate strategy . the enron corporate policy committee membership is also shown on the attached list . we are confident that these changes will align our talent and our capital to our highest return opportunities . please join us in congratulating and supporting all of these individuals in their new roles .",0 +"Subject: news review update please respond to news review the news review site , http : / / www . news - review . co . uk home of weekend city press review , now offers registered users two new features : all registered users can now : - do a text search in addition to a company search on the full six - year archive - and set up favourite companies on their home page for easier and faster access to articles within the review and the archive which relate to those companies the best way to keep abreast of the weekend ' s financial news and views is to receive an email copy of weekend city press review , either via the full review , or the clippings relating to specific companies in which you are interested . registered users are invited to take up the free offer of a 4 week subscription to any of the services , including pdf delivery of the review , and the clippings service . to login please use this url : you can download this weekend ' s full review free of charge at http : / / www . news - review . co . uk / freepdf . pdf from 8 pm uk time this sunday your username for this service is vkaminski if you have forgotton your password you can retrieve it at to remove yourself from this service please login and use the ' my profile ' option . our ref wcprvl : vkaminski",0 +"Subject: harvard research visit harvard business school is doing a 5 - year business case study on enron . below is the information that i have regarding their visit . the name of the case study is modern giants ( attached below ) ( they are interested in developing a clearer picture of the architecture and design of enron  , s organization , products , and services - - how the company and its key businesses have been put together and how they work on a daily , quarterly , and annual basis . ) mm x 31641 - - - - - forwarded by melinda mccarty / corp / enron on 01 / 26 / 2001 01 : 40 pm - - - - - 1 . an overview of the modern giants research project 2 . descriptions of three broad areas of research interest ( business and organizational design , new business creation , and capital investment decision making ) together with the associated interview questions . we fully understand that these interview questions are far too encompassing , and that there ' s no way we could get through all of them in a single , one - hour meeting . what we plan to do is "" specialize "" the interviews by the background and expertise of participants . in some cases , we will focus only on new business creation ; in others , we will focus primarily on the allocation of capital ; in others we will focus on the basic economic model that underlies the trading or energy services business . future visits may focus on the remaining , unanswered questions , or on other areas of interest of our faculty colleagues . these questions should therefore be regarded more as a set of interests , rather than a strict protocol that we will strive to complete from beginning to end . hope this provides the necessary background for the trip . - research initiative on modern giants . doc - bower . doc - levesque . doc - roberto . doc - busorgdes . doc - newbuscrea . doc - capital investment . doc - garvin 4 . doc",0 +"Subject: ebs research office space on 45 th or 43 rd floor hi stinson , as per my discussion , here is e - mail to let vince know about the subject . we have requested the following office spaces for network planning ( jim irvine ) - - optimization work , etc . and other ebs support personnel . for network planning and traffic engineering : - 1 director level space ( to be used by jim and other ebs research people as needed when jim is not there ) and four other cube space ( chonowee , martin lin , and two students . for other ebs activities : - 3 or 4 summer interns and analysts level space for other ebs people ( roman and other students ) . this is what kristy is going to request and get it into the office space request loop . we should be able to get into most of the space that i have requested . ravi .",0 +"Subject: telephone interview with the enron corp . research group good morning yongcho : the enron corp . research group would like to conduct a telephone interview with you at your convenience . this would be for a full - time position with the research group . please let me know your availability monday , may 1 or thursday , may 4 . the persons who will be interviewing you are : vince kaminski managing director stinson gibner vice president krishna krishnarao director osman sezgen manager i look forward to hearing from you . thank you shirley crenshaw administrative coordinator 713 - 853 - 5290",0 +"Subject: friday brown bag for options pricing hello everyone , today we have grant masson spreaking in our options pricing seminar series . grant ' s topic is "" marginal value at risk "" . it will be held at 12 noon at 19 c 2 . we thank you for your participation . zimin lu alex huang",0 +"Subject: enron media / advertising simon , please forward a copy of my ken rice presentation to vince kaminski . send him the version with the white background . vince : thanks again for meeting with me today and i am pleased that you are interested in discussing this opportunity in more detail . feel free to contact me should you have any questions . as discussed , the enron media / advertising idea is being developed under ebs , but should develop into its own business unit . enron media / advertising : - advertising risk book - physical trades , supported by excess inventory from cable networks , radio , network tv , etc . - media buying service - alliances with advertising agencies to sell enron ' s "" eyeballs "" from our customer / server - isp relationships i . e . , us west - agencies could endorse ebs to their customers ( ford gm , procter & gamble , etc . ) and become an extended enterprise for ebs and our ein applications - enron ' s capital , to fund content development for the networks and hollywood , which in turn would provide content for our pipes with licensing and syndication rights . - an enron on line b to b opportunity ( you may want to review the following sites : doubleclick . com , agency . com , adauction . com ) mark and kal : vince and i are meeting on tuesday , march 28 th @ 3 : 00 pm to further discuss the development of the enron media / advertising concept . can you join us to provide a customer and agency perspective ? regards , michael p . horning",0 +"Subject: re : ed krapels just thought you ' d like to know we are not having a grat deal of success with contacting ed - let us know if there is anything else i can do ? - - - - - - - - - - - - - - - - - - - - - - forwarded by louise kitchen / hou / ect on 27 / 03 / 2000 13 : 42 - - - - - - - - - - - - - - - - - - - - - - - - - - - from : rahil jafry on 27 / 03 / 2000 13 : 40 to : louise kitchen / hou / ect @ ect cc : david forster / hou / ect @ ect subject : re : ed krapels both dave and i have left messages for this guy ( e - mail as well as voice mail ) on 4 different occassions - without any response . louise kitchen 03 / 27 / 2000 01 : 21 pm to : rahil jafry / hou / ect @ ect cc : subject : re : ed krapels have you managed to get hold of him yet ? vince j kaminski 11 / 02 / 2000 17 : 23 to : louise kitchen / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : ed krapels louise , thanks . his e - mail address is ekrapels @ esaibos . com . the company coordinates are as follows : esai 301 edgewater place , suite 108 wakefield , ma 01880 ( 781 ) 245 - 2036 ( 781 ) 245 - 8706 vince louise kitchen 02 / 11 / 2000 05 : 13 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : ed krapels absolutely - i can ' t find the previous email but it may have been lost during the few days they moved my email box from london to houston - i know i had a lot of lost emails - do you have his phone number and email and we can sort out a password for a few days for him too . louise vince j kaminski 10 / 02 / 2000 22 : 15 to : louise kitchen / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : ed krapels louise , some time ago i sent you a message regarding ed krapels . he is writing a book on energy commodity markets and would like to learn more about eol . can you give him a call and chat with him for 10 minutes . he is a good friend of enron and it would be free ad for us . vince",0 +"Subject: re : hdaf seminar topics folks : i have tentatively set the date for our first round - table discussion for wednesday , december 20 th at 3 : 00 pm - 4 : 30 pm . the room , eb 3268 , will be available from 3 : 00 to 5 : 00 pm . if any of you have an issue with the date , please let me know by day ' s end . professor don kouri of the physics department of the university of houston will start with an informal 30 - 45 minute presentation ( see appended abstract below ) of his work and will then lead a discussion as well answer questions that we may have . professor kouri , please let me know if you have any requirements for audiovisual or other equipment . this excerpt from a previous correspondence provides an insight to the subject of our meeting : [ . . . ] topics to be discussed at a small ` ` roundtable ' ' format meeting , are : 1 . hdafs for data analysis , including ` ` gap - filling ' ' , data extrapolation , denoising , mathematical manipulations of digital data ( e . g . , taking derivatives , applying functions of differential operators to digital data , etc . ) 2 . hdafs as the basis of numerical algorithms for solving nonlinear partial differential equations , particularly for equations for which existing methods encounter stability problems . there are certainly other areas of interest and applications of the hdafs but i think that even trying to do both of the above in a single meeting would be difficult . of course , in this first meeting we would focus on general aspects of the hdafs that make them robust for such applications . if , however , you have other topics in which you are interested , i am willing to focus on them . [ . . . ] "" yannis tzamouranis yannis tzamouranis on 12 / 11 / 2000 03 : 56 : 49 pm to : mark tawney / hou / ect @ ect , claudio ribeiro / corp / enron @ enron , joseph hrgovcic / hou / ect @ ect , vince j kaminski / hou / ect @ ect , todd kimberlain / na / enron @ enron , vasant shanbhogue / hou / ect @ ect cc : subject : hdaf seminar topics folks : i am trying to set up a meeting with professor don kouri of the university of houston and i believe you may have an interest in the topic of discussion . if you know of other interested parties , or want to substitute a proxy for yourselves , please let me know . this first meeting with dr . kouri will introduce the participants to his area of research ( hdafs for data analysis ) and allow us to define the contents and attendants of a seminar ( to come up soon ) . we are looking to hold this discussion this week ( hopefully ) and to have the seminar happen before christmas ( given that this is the in - between semester season for schools ) . a couple of other similar meetings will follow up : dr kevin bassler will be talking about microscopic simulation of economic markets and dr . pinsky about the effect of solar phenomena on the earth ' s atmosphere . yannis - - - - - forwarded by yannis tzamouranis / hou / ect on 12 / 11 / 2000 03 : 36 pm - - - - - kouri @ kitten . chem . uh . edu 12 / 11 / 2000 02 : 32 pm to : yannis . tzamouranis @ enron . com cc : subject : hdaf seminar topics hi yannis , i got your email without any problem . regarding timing of a meeting , i am free from teaching duties now so i am flexible . i will be in houston all of december . i look forward to hearing more from you . with best wishes , don kouri",0 +"Subject: possible rtp conference dear mr . kaminski : thank you for talking with me about a possible rtp conference . i would like to include some discussions of what has been learned in other industries . as i indicated , frank wolak suggested that i contact you . in discussing power markets with frank and other colleagues at stanford and epri , it seems quite evident that real - time pricing for retail customers is the "" forgotten resource "" in more efficient power markets . there seems to be a lot of confusion about what rtp means and it also seems that many researchers need to address some practical but important problems . i was asked whether a group like stanford ' s emf might explore this topic and give it the visibility that would have it considered more seriously by policymakers . frank thought that you might be someone who could help me structure a useful approach and who might also see whether enron could become a major sponsor . i was hoping that this issue was sufficiently important to enron that the company might consider providing $ 25 , 000 . as you may appreciate , it requires some thought and effort to make sure that the product of the conference is widely circulated among key government groups . i would be very interested in hearing from you if you can provide ideas and recommendations for people ( perhaps yourself or a colleague ) to participate . i would also appreciate any consideration by enron of providing funding for this effort . thank you , hill huntington - retail notes . rtf hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: re : forecast rates ! hi vince , thank you for sending me the email from don reid regarding the turkey fx and cpi curve . i received the same email last week and the request has been taken care of . in fact , he had a very short time line for the request and had subsequently used outside forecasts for the bid . if the deal goes through rac , i ' m sure we ' ll get another request for the curve , but for now , don said that he doesn ' t need a forecast from us . regards , farouk z . lalji",0 +"Subject: hiring aram at a vp level rick , i want to bring aram sogomonian back to enron at s vp level . according to new human resources procedures this decision requires a support of three senior executives . i want to ask you to express your opinion on aram ( based on a phone interview or just on your past interactions with him ) . you can send a reply to norma villarreal at h / r . thanks . vince",0 +"Subject: re : pending approval for ibuyit request for wincenty ( vince ) kaminski : eva : remedy 412144 raul , raul , vince kaminiski is requesting acces to the technical view for catalog along with the ibuyit approval role . this is pending your approval . please send your response to sap security . thanks ! shirley crenshaw @ ect 04 / 19 / 2001 03 : 01 pm to : sapsecurity @ enron . com cc : vince j kaminski / hou / ect @ ect subject : ibuyit form attached please find the completed form for vince kaminski , managing director , research group . he will be approving all purchases for cost center 107043 . - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 19 / 2001 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : debbie skinner / enron @ enronxgate on 04 / 19 / 2001 02 : 52 pm to : shirley crenshaw / houston / eott @ eott , shirley crenshaw / hou / ect @ ect cc : subject : ibuyit form hi shirley there were two shirleys , so sending to both isc help desk",0 +"Subject: follow up mark , over the past several months vince and paul have had some contact with the authors of this upcoming risk management book . vince and his group are writing a chapter and the forward , and enron australia will contribute aus $ 10 , 000 in support of the book . there are a number of apparent legal issues associated with completing / publicizing this book and marge suggested that this is an area of interest to you . i handle public relations for apachi and will try to contact you within the next couple of days to seek your guidance . thanks , john - - - - - - - - - - - - - - - - - - - - - - forwarded by john ambler / enron _ development on 02 / 23 / 2000 08 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - lacima on 02 / 21 / 2000 12 : 29 : 28 pm to : john ambler / enron _ development @ enron _ development cc : subject : follow up hi john , nice talking with you last week . the following are some of the items that we discussed during own phone call : - attached is a copy of the introduction of the book . section 1 . 2 provides a content overview - we are planning to market the book globally , and feel the market size is around 3000 - the authors names are dr chris stickland and dr les clewlow - mini bio of authors : dr . les clewlow and dr chris strickland hold associate research positions at both the school of finance and economics , university of technology , sydney and the financial options research centre , university of warwick , uk . together , they have over 20 years combined experience in the financial and energy derivative markets and have published many articles in academic and trade journals . they are the authors of the book "" implementing derivatives models "" ( wiley , 1998 ) and editors of "" exotic options : the state of the art "" ( itp , 1998 ) . their forthcoming book "" energy derivatives : pricing and risk management "" is due to be published during the second quarter 2000 . currently , their interests are concentrated in the energy derivatives area , where they have developed a wide range of pricing tools for electricity options and other energy derivatives . could you please provide responses to the following : - would it be ok if we use the logo for enron , the global company ? - what will you need from us before printing ? if you need to review the book jacket or the manuscript , please let us know . - if enron needs to review anything , how long will it take for enron to turn it around ? - we are putting together a leaflet advertising our energy course . we would like to mention the forthcoming book and that it is being sponsored by enron . . . is this ok with you ? no logo will be used . - we would like to produce a leaflet / brochure advertising the book as well , but this will follow after we have the book cover designed . should i work with andrew at stokes account ex . on this ? - how do we handle the money side of things ? the manuscript is not fully completed , but we may begin typesetting any day now . i think it will take about 3 - 4 weeks to typeset and then another 3 weeks to print and bind . sometime in late april ? it looks like we will be in houston around the 7 th of march . . . will you be around either the 7 th or 8 th ? i hope you are enjoying your time at home . let me know if you need anything further . take care , julie - intro . zip",0 +"Subject: re : summer associate mentor hello , this is regarding my mentee . i talked to him today . giuseppe did not receive the invitation to the thursday reception . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 06 / 20 / 2000 02 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 06 / 12 / 2000 08 : 29 am to : ginger b gamble / hou / ect @ ect cc : cheryl kuehl / corp / enron @ enron , vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : summer associate mentor ginger however , we encourage you to contact guiseppe prior to the reception if possible . please rsvp your attendance to cheryl kuehl at x 39804 or by email . thank you charlene jackson",0 +"Subject: re : 2001 fma european conference john , the books have arrived and i shall fedex them tonight to your university address ( shown at the bottom of your messages ) . still fishing for the paper on network economy . vince p . s . shirley , the address is at the bottom . "" john d . martin "" on 11 / 28 / 2000 11 : 27 : 35 am to : vince . j . kaminski @ enron . com cc : subject : re : 2001 fma european conference that ' s fine . i didn ' t want to change anything until i heard from you guys . see ya ! john at 11 : 06 am 11 / 28 / 00 - 0600 , you wrote : > > john , > > thanks . stinson will be able to join us for dinner . he is opting out of > the paper due to his big workload but we can get his perspective on > the last 8 years he spent at enron . > > vince > > > > > > "" john d . martin "" on 11 / 28 / 2000 09 : 44 : 17 am > > to : vkamins @ enron . com > cc : > subject : 2001 fma european conference > > > here ' s the info on the european conference . just for your files . > > john > > > date : tue , 28 nov 2000 08 : 40 : 39 - 0500 > > from : karen wright > > subject : 2001 fma european conference > > to : kwright @ fma . org > > x - mailer : mozilla 4 . 5 [ en ] ( win 98 ; i ) > > x - accept - language : en , pdf > > > > 2001 fma european conference > > > > the fifth annual european meeting of the financial management > > association international ( fma ) will be held may 31 and june 1 , 2001 at > > the hotel sofitel ( rive gauche ) in paris , france . fma ' s european > > meeting brings together academicians and practitioners with interests in > > financial decision - making . the meeting provides a forum for presenting > > new research and discussing current issues in financial management , > > investments , financial markets and institutions , and related topics . > > keynote addresses and other special presentations will be held in > > addition to research paper presentations . > > > > paper submissions > > research papers . the program includes traditional research paper > > presentations . criteria used to determine the suitability of these > > papers for the program include the nature of the research problem , > > implications of the proposed research , the quality of the research > > design , and the expected contribution of the research to the > > literature . please note that the purpose of these sessions is to > > present new and unpublished research . > > > > submission fee . there is no submission fee for the fma european > > conference . > > > > submissions . please follow these steps : > > complete the presentation form that can be downloaded at > > www . fma . org / paris . htm . carefully select the subject code on the > > presentation form that most closely describes your research . the code > > number you select will be used to select reviewers for your proposal . > > > > send six ( 6 ) copies of your completed paper , along with the completed > > presentation form , to the fma office ( financial management association , > > university of south florida , college of business administration , tampa > > fl 33620 - 5500 , usa ) . > > please note that only completed papers will be accepted for the fma > > european conference review process . > > > > the paper submission deadline is friday , december 1 , 2000 . > > > > you will receive an electronic confirmation of your submission within > > six weeks of its receipt by the fma office , and you will be notified of > > the results of the reviewing process by the middle of february , 2001 . > > > > competitive paper awards > > the financial management association international is pleased to > > announce that four ( 4 ) $ 1 , 500 awards will be presented in conjunction > > with the 2001 fma european conference . the "" young scholars "" award will > > be presented to the best paper authored by a ph . d . student ( or > > equivalent ) or recent ph . d . ( or equivalent ) graduate . three additional > > $ 1 , 500 awards will be presented to the papers deemed "" best of the best "" > > by the members of the 2001 fma european conference competitive paper > > awards committee . please note that these awards will be made only if , in > > the opinion of the fma awards committee , a paper warrants such a > > decision . the decisions of the fma awards committee are final . > > > > accepted papers . if your proposal is accepted , the version of the paper > > you submit will be sent to its discussant as soon as he / she is > > identified . you are obligated to send the final version of your paper to > > the discussant and session chair by april 27 , 2001 . you also are > > obligated to present your paper in a professional manner at the assigned > > fma program session . > > > > the collegiality of the meeting provides a very special opportunity for > > participants to share their work and to hear about the work others are > > doing . thus , individuals whose papers are accepted for presentation at > > the 2001 fma european conference will be expected to either chair a > > session or discuss a paper . > > > > program co - chairs > > > > francois degeorge > > hec paris > > 1 rue de la lib , ration > > 78351 jouy en josas cedex > > france > > 33 - 1 - 39 - 67 - 72 - 34 ( ph ) > > 33 - 1 - 39 - 67 - 94 - 34 ( fax ) > > degeorge @ hec . fr > > > > kent womack > > dartmouth college > > amos tuck school > > hanover , nh 03755 > > 1 603 646 2806 ( ph ) > > 1 603 646 1308 ( fax ) > > kent . womack @ dartmouth . edu > > > > additional opportunities for participation > > > > session chairperson or discussant . if you wish to serve as the > > chairperson of a session or paper discussant , but are not submitting a > > paper , please complete the participation form which can be downloaded > > from www . fma . org / paris . htm . submit the completed form to the fma office > > by december 1 , 2000 . session organization will take place in march , > > 2001 . > > > > deadline summary > > > > completed papers : december 1 , 2000 > > chairperson / discussant requests : december 1 , 2000 > > > > > > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: mg metals : additional areas to look at dear lloyd & richard , i have been discussing with eric gadd about two particular areas of concern that will affect the london research group . i believe there are a number of issues to address to ensure that the integration goes smoothly from a risk management and quantitative analysis perspective , and i have put together a ( by no means exhaustive ) list : - i ) seamless transfer of front and middle office systems from an exotic options linking perspective ( e . g . their spreadsheets link to different option pricing add - ins ) ii ) development of volatility curves and factor analysis to ensure that we can capture metals risk in our var system ( we will require historical data for this ) . i am sure bjorn will be looking to the research group to assist in this matter . iii ) ensure that mg staff on quant and risk side become familiar with our methods and systems and vice versa these tasks will involve a significant degree of cross - communication with relevant contacts within mg metals , and so i look forward to starting on the process as soon as possible - i hope to play a full part from a quantitative research and risk management perspective to ensure that everything goes smoothly in this exciting new development , so please do not hesitate to involve me . best regards , anjam ahmad research x 35383",0 +"Subject: message from charles shen at williams dear vince : how are you ? thanks for coordinating an offer for me . as i told stinson early this week , i understand that it is a little bit tricky for enron in term of my starting date . to be honest , i am very flexible myself , it really depends on enron . if you want me to start right now , then i would expect enron to compensate for my this year ' s bonus . in this case , it is not quite fair for enron , since now we are already at the end of october . another option is that we can work out an offer right now , and i can start my new job right after i get my bonus from williams , which should be in the very beginning of february . this choice is perfectly fine with me . actually it might be even a little better for me since williams has had very good year this year . vince , i just want to tell you that i am very interested in your group , and very excited about this opportunity . if you have any questions , please feel free to call me at 918 - 409 - 4308 . sincerely , charles do you yahoo ! ? yahoo ! messenger - talk while you surf ! it ' s free . http : / / im . yahoo . com /",0 +"Subject: imperial capital - thursday schedule the following is the schedule for thursday ' s meeting with imperial capital . currently all meetings are scheduled in eb 2868 . we are trying to arrange a different conference room and will let you know if we obtain one . 9 : 00 am - jim fallon - electricity 9 : 30 am - fred lagrasta - gas 10 : 00 am - lynda clemmons and david kistler - weather 10 : 30 am - ed ondarza - pulp and paper 11 : 00 am - stinson gibner - research 12 noon - lunch 1 : 00 pm - 5 : 00 pm - discussion thanks in advance to all who will come to speak in the morning .",0 +"Subject: eprm training course dear vince , ? i hope you are well . i am leaving risk at the end of next week and before i leave i am producing the mathematics for energy derivatives training course . i have written a programme and attached it to this email and i wondered whether you could have a look at it and let me know what you think . i also wondered whether you would be interested in speaking at the course . ? i will give you a call on monday to it . ? best regards , ? vicky - mthsprg . doc",0 +"Subject: alp proposal carrie , i am sending you , as promised , the draft of my proposal . please , let me know if it meets your requirements . i shall be glad to revise it and send you the final version . vince kaminski * * * * * * * * * * one of the most important trends in the energy industry during the last year was proliferation of electronic , internet based , trading platforms for wholesale markets and for retail operations . websites such as www . houstonstreet . com and www . altranet . com provide facilities for matching buyers and sellers . the website operated by enron corp . ( enrononline ) represents an alternative solution under which enron acts as a principal in every transaction . on the retail ? side , many retail e - commerce companies offering auctions , reverse auctions and platforms for creation of buyers  , clubs challenge incumbent utilities . the objective of this project is to evaluate the impact of e - commerce ( both at the wholesale and retail levels ) on the energy industry . the study will start with comparative analysis of different wholesale trading and retail e - commerce business models and evaluation of their long - term viability . the next step will be assessment of the impact of e - commerce on price dynamics , profit margins and the level of competition in different energy markets . a separate section will be devoted to analysis of reaction of companies and organizations affected by e - commerce ( incumbent utilities , organized exchanges , energy brokers ) to the new competitive threat , and different strategies they implement to meet the challenge . organized exchanges have accelerated in many cases the transition to screen - based trading that has been already replacing open outcry technology . power and natural gas marketers have created alliances ( with other industry players , software companies and electronic exchanges ) to create their own trading platforms . gas and electric utilities embarked on development of vertical and horizontal e - commerce platforms , offering services to households and other companies in the energy industry . the critical question is how quickly different companies should react to the competitive threats and how fast they should exploit opportunities created by the internet based economy . it ' s quite obvious that the internet revolution will change the energy industry ' s landscape during the next few years . the objective of the project is to provide answers to the questions posed above , based on the currently available information . additionally , the participants should come up with fallback strategies the energy companies should implement in case the currently ? expected trends fail to materialize .  _",0 +"Subject: aram ' s visit jesus , friday , april 28 , works for me . i am free between 8 : 00 - 10 : 30 to meet with aram . would you like to meet him for lunch or dinner ? vince",0 +"Subject: re : dragon curves ( thai baht forecast ) we have prepared the attached two reports to accompany the thai baht forecast we produced on 13 september 2000 ( the previous curve was dated 15 may 2000 ) . the first report provides specific economic factors that formed the basis for our baht forecast decisions in september . the second report is an analysis of ppp theory and foreign exchange forecasting with a detailed discussion of its propriety to the economic outlook and exchange rate forecast for thailand . regards , maureen raymond - castaneda and gwyn koepke",0 +"Subject: interview schedule for ben zhang attached please find the interview packet for the above - referenced person . the interview will happen thursday august 17 , 2000 . please print all three documents for your hard copies . if you have any questions , or conflicts of schedule , please do not hesitate to contact me . sean grady 58701",0 +"Subject: re : your visit with vince kaminski - enron corp . research dear mr . fujita : i will be glad to make the dinner arrangements . i will make reservations at the "" latour d ' argent "" restaurant located at 2011 ella blvd at t . c . jester . for 6 : 30 pm on the 17 th . they do require a coat . i believe most of the cabs will know where it is - but just in case : "" take i - 45 north to 610 east , go to the ella blvd exit and turn left ( back under the freeway ) on ella blvd . go to 2011 ella blvd . ( on the right ) . "" look forward to having you at enron . thank you . sincerely , shirley crenshaw 713 - 853 - 5290 masayuki fujita on 04 / 05 / 2000 11 : 44 : 48 am to : shirley . crenshaw @ enron . com cc : subject : re : your visit with vince kaminski - enron corp . research dear ms . crenshaw : we are very glad to see professor kaminski has taken our proposal to have a dinner on 17 th . i would like to take your very kind offer to arrange the place to have dinner . we are now arranging to stay four seasons hotel . it is just a second time to visit houston and we will not have a car , but may use a taxi between hotel and restaurant . please give us a recommendations . i wonder if four seasons have a good one . best regards , masayuki fujita principal financial engineer financial technologies section mitsubishi research institute , inc . 3 - 6 otemachi 2 - chome , chiyoda - ku tokyo 100 - 8141 japan tel + 81 - 3 - 3277 - 0582 fax + 81 - 3 - 3277 - 0521 > dear mr . fujita : > > professor kaminski will be delighted to have dinner with you and your > colleague mr . yamada . i have put you on his calendar at 3 : 00 pm . with > dinner to follow in early evening . > > please let me know if you would like me to make dinner reservations > for you . > > sincerely , > > shirley crenshaw > administrative coordinator > enron corp . research group > 713 / 853 - 5290",0 +"Subject: re : greeting from charles happy new year to you as well , charles . i have not heard anything from vince ; let me check with him , and i will be back in touch with you . molly enron capital & trade resources corp . from : charles shen 01 / 07 / 2001 10 : 41 am to : molly . magee @ enron . com cc : vince . j . kaminski @ enron . com subject : greeting from charles dear molly : happy new year ! haven  , t talked to you for a while , hope you and your family had a great holiday . i can  , t believe we are already in 2001 ! i remember we had talk last december , and you were basically waiting for the response from vince , have you heard anything back from vince yet ? since we are already in january , i really hope we can move forward . if you have any questions , please feel free to call me at 918 - 409 - 4308 . thank you . sincerely , charles do you yahoo ! ? yahoo ! photos - share your holiday photos online ! http : / / photos . yahoo . com /",0 +"Subject: re : purchase david , can you use my mm funds to cover thislast purchase ? i need to request another check from pwj and it takes always time . vince "" walkup , david c ( houstonas as 582 ) "" on 06 / 29 / 2000 10 : 52 : 54 am to : "" ' vincent kaminski ' "" cc : subject : purchase we made the cd purchase for you today . don ' t forget to mail the check . i mailed you the receipt from the deposit . i will call you towards the end of july and we can discuss your stock option exercise on 8 / 12 . thanks for coming by the office yesterday and have a great trip to australia . david c . walkup senior financial consultant 713 - 658 - 1685 800 - 456 - 9712 caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . for your protection , avoid sending identifying information , such as account , social security or card numbers to us or others . further , do not send time - sensitive , action - oriented messages , such as transaction orders , fund transfer instructions , or check stop payments , as it is our policy not to accept such items electronicall",0 +"Subject: reminder - enronanywhere portal project meeting you are scheduled to attend the enronanywhere portal project meeting . when : wednesday , april 18 , 2001 where : eb 50 m dining room time : 12 : 00 - 4 : 00 lunch will be served . thank you in advance for helping us to create one enron . your attendance and participation is certain to make this project a huge success . call me if you have any questions . thanks , marie hejka enronanywhere 3 9698 p . s . note , we decided not to send a pre - workshop assignment . see you there .",0 +"Subject: new analyst joining research group all on monday 21 st february a new analyst will be joining enron europe , and will have his first rotation in the london research group . matthew williams has a phd in high energy physics , having carried out his research at imperial college london and cern . his academic experience includes extensive monte carlo simulation as part of his research on the phenomenology of supersymmetry theories . matthew will be working with me on issues arising from the optimisation and control of dynamic systems , which we expect to include power generation scheduling and gas flow . steve",0 +"Subject: meeting to be rescheduled all : the meeting scheduled for tomorrow from 11 - 12 : 00 to discuss enron ' s needs from the mit / aa new value research lab has been postponed to allow for additional time to confer with aa . new date / time will be set once add ' l information is gathered . thanks . amy",0 +"Subject: re : conference phelim , thanks again for the invitation to speak at the conference . the program was very interesting and i learned a lot . i hope you can visit us in houston sometimes in the next few months . vince phelim boyle on 05 / 30 / 2000 10 : 11 : 26 am to : vince . j . kaminski @ enron . com cc : subject : conference vince thank you very much for coming to the conference and for your excellent overview it was a pleasure meeting you i hope we can stay in touch phelim - - phelim p boyle director centre for advanced studies in finance , university of waterloo , waterloo , ontario canada n 2 l 3 gl tel 519 885 1211 ( 6513 ) fax 519 888 7562",0 +"Subject: re : enron credit modeling discussions hi again , some of you have been kind enough to supply me with information that can be used for the strategic plan ( i am writing for duffie ) . to assist you in gathering further information , it was suggested that i forward a preliminary outline of this strategic plan to your attention . thanks in advance for your assistance , iris table of contents executive summary highlights introduction what is enron credit ? what is the business plan ? what are the products planned ? current status : what we currently trade , how we price . what new models we need to achieve goals . what attempts are being made internally and what external commercial sources are available . swot analysis strengths weakness opportunities threats pricing approach a diagram illustrating how various models are tied together for the overall objective of coming up with final cds and dbs pricing . brief description of each model shown in the diagram . public firm versus private firm what we have as first cut for modeling primarily public firms . our understanding on public versus private firms  , credit risk characteristics , data availability and possible modeling approaches . our proposed approach / plan towards development of private firm model , including comparative analysis , model development , etc . . portfolio level business feasibility analysis accounting breakeven analysis portfolio theory alternative ( short term ) measures kmv  , private firm model moody  , s riskcalc model for private firms comparison of kmv vs moody  , s private firm model future strategy development of private firm pricing models ( short - and long - tenor modelso completion of parent / subsidiary model risk management model for ect business references",0 +"Subject: e & p model vince - attached is the most recent e & p version of the old corporate cash flow model that i could find . note that "" most recent "" still dates it back a few years . a couple caveats : i did try to clean it up somewhat from old macros , but no guarntees offered . also , some of the underlying methodology is not what we would probably currently use , such as for pricing , stochastic processes , and perhaps decline rates . please let me know if i can provide any additional help . mark",0 +"Subject: enron research and ebs engineering and operations group technical forum ken , i would like to invite you to an off - site meeting of john griebling ' s organization and the research group . date : april 27 - april 29 location : breckenridge , colorado as you know , john griebling is managing the network design and construction project currently under way in ebs . the research group is actively involved in this effort which requires advanced quantitative skills in the area of stochastic optimization and stochastic processes ( for modeling and forecasting internet traffic flows ) . the objective of this meeting is to develop common language and accomplish transfer of skills between the two groups , to facilitate cooperation on this project in the future . we are inviting joe hirko and kevin hannon to this meeting . we would appreciate if you could speak , together with joe and kevin , on strategic directions of ebs . it is important for a group of technical people , with relatively specialized technical skills , to understand the big picture . i am attaching the preliminary agenda for this meeting . vince",0 +"Subject: re : for your approval approved information risk management 12 / 01 / 2000 09 : 50 am to : gary taylor / hou / ect @ ect , vince j kaminski / hou / ect @ ect , stinson gibner / hou / ect @ ect cc : subject : for your approval please let me know if he is approved . thanks , erica garcia - - - - - - - - - - - - - - - - - - - - - - forwarded by information risk management / hou / ect on 12 / 01 / 2000 09 : 39 am - - - - - - - - - - - - - - - - - - - - - - - - - - - security resource request system directory line item pending access processing directory name : o : \ weather derivatives \ , o : \ research \ common service type : grant expiration date : comments : security processing processing status : e - mail message : comments / justification : general information request : jhrc - 4 rkjjz requested by : joseph hrgovcic / hou / ect phone : 33914 requested for : joseph hrgovcic / hou / ect employee type : company : 0011 rc # : 100038 priority : high comments / justification : i have a test windows 2000 machine running ( with userid t _ weatherol , for which i need access to o : \ research \ common and o : \ weather derivatives \ editing history ( only the last five ( 5 ) are shown ) edit # past authors edit dates 1 information risk management 11 / 30 / 2000 12 : 30 : 19 pm",0 +"Subject: re : get together this coming tuesday ? dale , i can reserve 2 to 2 : 30 time slot but there is really not much that i can tell you at this point . the commercial groups are still interested and are moving towards the test of the package . as soon as they will decide to move ahead , we ( research ) shall be involved , helping to evaluate the product . as i have said , we are not the decision makers in this case . i think that we should allow simply the process to run its course . vince "" dale m . nesbitt "" on 04 / 30 / 2001 05 : 59 : 30 pm please respond to to : cc : subject : re : get together this coming tuesday ? vince : i will call tomorrow in the morning . lunch or right after lunch would be great . how would 100 pm work for you ? dale - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : monday , april 30 , 2001 3 : 07 pm to : dale . nesbitt @ marketpointinc . com cc : kimberly . watson @ enron . com ; vince . j . kaminski @ enron . com subject : re : get together this coming tuesday ? dale , please , call me on tuesday . my morning schedule is full but i am open in the afternoon . vince "" dale m . nesbitt "" on 04 / 30 / 2001 01 : 51 : 21 am please respond to to : "" vincent kaminski "" , "" kimberly s . watson "" cc : subject : get together this coming tuesday ? vince / kim : i am flying to houston tonight and wondered if it would fit one or both of your schedules to get together this coming tuesday sometime for 1 / 2 hour or so . i really want to reinitiate the conversations marketpoint was having with john goodpasture and you , and he said either or both of you were the right people to continue after his responsibility shift . john was quite positive about the idea of enron acquiring marketpoint narg through license , and he implied that one or both of you would be carrying the ball in that direction after he handed it to you . would this coming tuesday morning at 930 am be a good time for you guys ? if so , please give me an email shout at the above address or leave a message on my voicemail at ( 650 ) 218 - 3069 . i think you will be truly impressed with the scope and progress we have been able to make with both the short run narg and the long run narg in which you were interested ( not to mention our power model ) . the progress is noticeable since you saw it . both long and short term narg are having quite an impact on a number of gas decisions at the moment ranging from venezuelan lng , north american lng import terminals and term , gas basis calculations , trading support , power plant development , gas - to - power price spreads in key markets , veracity of heat rate trades , bank financings , storage field evaluation , and which new pipelines we can expect to see enter and which are dogs . i really hope we can fit it in and get our discussions moving in a mutually productive direction again . i think narg can help you become even more successful , and i look forward to working with you . we have a new office address and new phone number as well . ( we move in may 1 . ) altos management partners 95 main street , suite 10 los altos , ca 94022 ( 650 ) 948 - 8830 voice ( 650 ) 948 - 8850 fax ( 650 ) 218 - 3069 cellular give the phones a week or so to get "" debugged "" and then switch over . dale",0 +"Subject: ne gov . johanns mtg vince , fyi on nebraska , this note i recently sent to maureen . - - - - - - - - - - - - - - - - - - - - - - forwarded by rob wilson / et & s / enron on 03 / 16 / 2000 02 : 31 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : rob wilson 03 / 07 / 2000 03 : 19 pm to : maureen raymond / hou / ect @ ect cc : beth jensen / npng / enron @ enron , mike mcgowan / et & s / enron @ enron , dee svatos / npng / enron @ enron , julie mccoy / et & s / enron @ enron , virginia o ' neill / et & s / enron @ enron subject : ne gov . johanns mtg maureen , the energy ceo roundtable hosted by gov . johanns has been scheduled for april 20 th 10 a . m . - 2 p . m . does this date work for you ? as we have discussed , your presentation would provide the governor and his guests with a national / global perspective on pricing trends for natural gas , electricity and oil and their impact on agricultural production costs . we may also include a hedging presentation , but have not committed to do so yet . your presentation would be scheduled at the start of the meeting , w / an anticipated length of twenty minutes . a university of ne ag economist will provide a state perspective for the group . following the conclusion of both presentations time would be allotted for questions . we expect approximately 20 people to attend the roundtable .",0 +"Subject: the delivery of the equipment you ordered is scheduled . - - - automatic notification system ( request # : ecth - 4 rstt 6 ) requested for : vince j kaminski requested by : shirley crenshaw your order ( see below ) has been assigned to felix buitron . technician will contact you for information and delivery time . please contact the technician if you have any question . en 6600 128 mb installed in desktop en 6600 desktop p 3 - 600 10 gb 64 mb 32 x nt 4 . 0 en 6600 128 mb installed in desktop",0 +"Subject: hello hello , vince . i haven ' t heard from you in a while . we have a new issue monthly pay agency this morning . here it is : issuer : fed . national mortg . assoc . term : 5 yr final , non call 1 year coupon : 7 . 26 % maturity : 3 / 14 / 2005 callable : 3 / 14 / 2001 @ par interest : monthly starting on 4 / 14 / 2000 rating : aaa ( moodys ) this new issue won ' t be in long . no cost or commission to buy . give me a call . david c . walkup financial consultant 713 - 658 - 1685 800 - 456 - 9712 caution : electronic mail sent through the internet is not secure and could be intercepted by a third party . for your protection , avoid sending identifying information , such as account , social security or card numbers to us or others . further , do not send time - sensitive , action - oriented messages , such as transaction orders , fund transfer instructions , or check stop payments , as it is our policy not to accept such items electronicall",0 +"Subject: re : managing energy price risk articles ross , i shall call risk on thursday . vince shirley , please , remind me about it . from : ross prevatt 05 / 23 / 2000 12 : 19 pm to : vince j kaminski / hou / ect @ ect cc : subject : managing energy price risk articles hi vince , i have a quick question for you . the eol folks want to put a couple of articles from the risk book ( managing energy price risk ) on the internet . i told them that would be a copywrite violation . is there someone at risk they could call to get permission for this , or is it even worth calling ? thanks ross",0 +"Subject: re : times 2 filing units pat : out co # is 0413 , rc # is 107043 . please deliver them to eb 19 c 2 . also , please let me know when they are going to be delivered as we have to unload the lateral file cabinets that are currently in that room . will the men who deliver the times 2 units remove the lateral files ? thanks . anita",0 +"Subject: re : howard confirmation jeff , i cannot interview howard on tue ( business trip ) . i think the organization is very interested in him . i don ' t know what "" illicts your attention "" means . vince "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" on 02 / 16 / 2001 03 : 02 : 36 pm please respond to "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" to : vince . j . kaminski @ enron . com cc : subject : howard confirmation hi vince , i ' m on vacation from friday ( today ) until tuesday . rachel / london sent me this confirmation last night and think it illicts your attention - did they get it right to meet you satisfaction ? i hope your interview goes well with howard too . it ' s all set . any feedback on the guys from ford credit and citigroup / oxford university ? i own them outright - no other firms involved ! fyi : my fees are always much less on these candidates ( exclusive ownership by myself ) as there are no middlemen involved from these "" other firms "" . i luckily have been attracting very talented candidates with just doing business "" as myself "" rather than mri . i am very encouraged . please check them out , vince . . . as you know - i always send you them first then on to my other clients - if you reject them . bye vince , thank you for the business ! jeff ps - use my cellphone if you want me ( the next 4 days ) for anything ; i ' m here for you - 949 813 2241 candidate ' s name : howard haughton date of interview : tuesday 20 february 2001 time of interview : 2 . 00 pm interviewers : david weekes enron credit sales & marketing mark leahy enron credit sales & marketing bryan seyfried enron credit executive markus fiala enron credit trading robina barker - bennett enron credit syndication ted murphy executive rac each interview will be approximately 45 minutes . address : 40 grosvenor place london swlx 7 en switchboard : 020 7783 - 0000 closest tube / train station : victoria to ask for : david weekes at main reception location map attached ( see attached file : location map . pdf ) i will take this as confirmed unless i hear otherwise from you . if you would like to discuss this please contact me on 020 7783 5677 . regards rachel quirke human resources * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: re : hello sounds great - - i ' ll coordinate with shirley . jacob was very excited about his prior meeting with you and the group . molly - - - - - original message - - - - - from : kaminski , vince sent : tuesday , may 01 , 2001 4 : 42 pm to : magee , molly cc : kaminski , vince ; krishnarao , pinnamaneni ; watson , kimberly subject : re : hello molly , kim watson would like us to bring jacob for another interview . we can do it later this week . vince vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 09 : 17 am to : vince j kaminski / hou / ect @ ect cc : subject : re : hello hi vince , if you are still interested in bringing back this gentleman back for another interview , i would very much like to meet with him . sean talked with him when you brought him in a few weeks ago and he thought it would be a good idea for me to meet with him so we can compare thoughts . thanks , kim . - - - - - original message - - - - - from : kaminski , vince sent : monday , april 16 , 2001 1 : 21 pm to : watson , kimberly cc : krishnarao , pinnamaneni ; kaminski , vince subject : re : hello kim , this is a letter from one of the job applicants who works for pros . it seems that the system they develop for williams is more a scheduling system . would you like to ask him to come back for another interview , to get more information out of him ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - > "" jacob y . kang "" on 04 / 11 / 2001 11 : 18 : 44 pm to : vince . j . kaminski @ enron . com cc : subject : re : hello dear vince : it was so nice meeting and talking with you too . i did not take any pen back , i lost my pen too somewhere in enron . as i mentioned to you , after i got my ph . d in 1999 , i have been working two years as lead scientist and science manager in energy division at pros revenue management inc . in houston . i developed and implemented the mathematical models for trading optimization system and firm transportation optimization system . the trading optimization system becomes the most popular product in the industry this year . duke energy just signed the contract to buy this product yesterday . conoco and williams also signed the contracts for it . according to pros sales department , the potential marketer to buy this product exceeds 15 companies in one or two years . enron is the ideal place for me to continue my research and system developing efforts to combine revenue management with risk management . i am confident that i can make significant contributions to enron in this area . i would like to thank you again for giving me this opportunity to come to enron for this interview . i am looking forward to having the opportunity to work in enron . sincerely yours jacob - - - vince . j . kaminski @ enron . com wrote : > jacob , > > it was nice meeting you . did take by any chance > my pen ? if not , i apologize . > > vince > do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com /",0 +"Subject: thanks dear mr . kaminski : thank you very much for the interview today . it was a great opportunity for me to learn more about your company , and my pleasure to speak with you . i feel that the position is very interesting and challenging . i am confident that i can make solid contributions to the company with my background and the training received from the mscf program . thanks again , and i am looking forward to hearing from you soon . sincerely , hao peng",0 +"Subject: re : new color printer monday will be perfect ! location - ebl 944 b r . c . 0011 co . # 100038 thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 10 : 44 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron technology from : lyn malina 12 / 14 / 99 09 : 22 am to : kevin g moore / hou / ect @ ect cc : subject : re : new color printer i will order today for delivery on monday , unless you need faster delivery . please advise co / rd to charge against . thanks lyn kevin g moore 12 / 14 / 99 09 : 21 am to : lyn malina / hou / ect @ ect cc : subject : re : new color printer - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 14 / 99 09 : 17 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 14 / 99 08 : 13 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : re : new color printer yes ! right away , please also let me know the e . t . a . thanks , lyn kevin moore",0 +"Subject: power 2000 to all whom it may concern : i would like to register my associate zimin lu as my guest at power 2000 conference in houston in may . thanks . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 17 / 2000 08 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 02 / 16 / 2000 12 : 58 pm to : vince j kaminski / hou / ect @ ect cc : zimin lu / hou / ect @ ect subject : power 2000 vince : i tried to register zimin and they said that you would have to do it - since you are the speaker and the spot is your free spot . you can email them the information . they will need : name : zimin lu title : director company : enron corp . address : 1400 smith street ebl 967 phone : 713 - 853 - 6388 conference name : power 2000 - houston , tx - may 9 & 10 , 2000 email the information to : conf @ risk . co . uk thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 02 / 16 / 2000 12 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 02 / 15 / 2000 02 : 22 pm to : shirley crenshaw / hou / ect @ ect cc : subject : power 2000 shirely , could you register me for the power 2000 conference in houston as vince ' s guest ? since vince is a speaker , i can attend for free . zimin to : zimin lu / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : power 2000 zimin , you are the lst . feel free to register as my guest . vince zimin lu 02 / 14 / 2000 02 : 59 pm to : vince j kaminski / hou / ect @ ect cc : subject : power 2000 vince , could you take me as your guest for the power 2000 conference if no one has asked already ? there are a few interesting topics i would like to hear . zimin",0 +"Subject: re : new lacima publication fiona , yes , this is correct . please , use vincent rather than vince . i used my full name on other publications . vince "" fiona j sperryn "" on 10 / 12 / 2000 10 : 34 : 42 am to : cc : subject : new lacima publication ? dear vince ? lacima are pleased to announce the publication in october of their new book ' energy derivatives - pricing and risk management ' by les clewlow and chris strickland . please could you confirm that the address below is correct ? so that we can send out a copy to you . ? vince kaminski enron corp 1400 smith street  ) ebl 962 houston , tx 77002",0 +"Subject: fw : opportunities dear sir : i have attached my resume for your review . i have meetings from 8 - 9 , and 10 - 2 tomorrow . when would it be best for me to call you ? cordially , gerry - - - - - original message - - - - - from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ] sent : wednesday , october 25 , 2000 12 : 12 pm to : vince . j . kaminski @ enron . com cc : gsheble @ iastate . edu subject : re : opportunities thanks vince . i have contacted him and have given him your phone number . he will attempt to contact you thursady or friday . good luck . vince j kaminski 10 / 24 / 2000 03 : 59 pm to : lloyd will / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : opportunities ( document link : lloyd will ) lloyd , yes , i would be very interested . vince lloyd will 10 / 24 / 2000 02 : 45 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : opportunities vince would you be interested in this professional . i would be glad to facilitate a conference call . thanks . - - - - - - - - - - - - - - - - - - - - - - forwarded by lloyd will / hou / ect on 10 / 24 / 2000 02 : 43 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" sheble , g . b . "" on 10 / 17 / 2000 04 : 52 : 57 pm to : "" ' lloyd . will @ enron . com ' "" cc : subject : re : opportunities loyd i tried to call yesterday , but you were out of the office . my schedule follows , would you want to pick a time for me to call you or send me a list of times to pick ? gerry fall 2000 teaching schedule ee 553 mtwr 10 - 11 am curtis hall 308 engr 161 mw 2 - 4 howe hall 2228 other commitments m 11 - 12 ep & es m 1 - 2 office hours t 12 - 2 ep & es seminar t 2 - 3 office hours t 3 - 4 pserc t 5 - 6 epri - dod w 11 - 12 office hours w 4 - 9 dsm r 11 - 12 office hours f 11 - 12 p & t f 1 - 3 cas f 3 - 4 departmental meeting - - - - - original message - - - - - from : lloyd . will @ enron . com [ mailto : lloyd . will @ enron . com ] sent : monday , october 16 , 2000 8 : 00 am to : sheble , g . b . subject : re : opportunities give me a call any time to discuss things . 713 - 853 - 3383 . thanks . "" sheble , g . b . "" on 10 / 15 / 2000 02 : 17 : 02 pm to : lloyd will / hou / ect @ ect cc : subject : re : opportunities lloyd i am attaching another resume for your review , please pass it along if there is any interest . i would also like to discuss opportunities with you as i expect to graduate with my mba summer 2001 . cordially , gerry = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = gerald b . shebl , professor , electrical and computer engineering director of complex adaptive systems program 1115 coover hall ames , iowa 50011 voice : 515 . 294 . 3046 fax : 515 . 294 . 4263 email : gsheble @ iastate . edu web : http : / / www . ee . iastate . edu / ~ sheble / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = - short _ resume . doc",0 +"Subject: re : summer internship position ravi , charlene wants the entire batch of potential summer intern resumes sent to her in one step . i want to complete this by friday . catch me after lunch to talk about it . vince ravi thuraisingham @ enron communications on 02 / 17 / 2000 10 : 11 : 36 am to : vince kaminski cc : april hodgson / enron communications @ enron communications , matt harris / enron communications @ enron communications , stinson gibner / hou / ect @ ect , charlene jackson @ enron , celeste roberts / hou / ect @ ect subject : re : summer internship position hi vince , paulo oleira ( one of the m . i . t attending our meeting on wed ) ' s research interest turned out to be a match for april hodgeson ( vp of content origination ) . i had him talk to april ( stinson was on the call as well ) to discuss his research interest and what he would likely to do for april . i suggested ( and april agrees ) that paulo would intern with her and matt and perform research on how end users ( consumers and business ) improved experience with epowered content can be quantified . this may include performing control experiments at m . i . t . we decided not to over specify what he would do since it is likely to change as soon as he arrives . i suggested once he starts , he will work with april and matt harris ( vp enterprise origination ) and they will define what the student needs to complete for the internship . addiontionally , tom gros agrees that this type of research are needed and this is a great way to start . i will proceed to have recruiting contact the student with an offer to start around may 22 , 2000 unless someone tells me otherwise . regards , ravi . p . s . charlene , please include paulo in your may 22 , 2000 start group . paulo will report to me within ebs research group but will work on a day - to - day basis with april and matt . as you ' ve mentioned that compensation is somewhat fixed but please keep in mind that this person is a phd candidate with very specialized skill set . please contact vince before extending an offer that may be too low , etc . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 09 : 27 am - - - - - charlene jackson @ enron 02 / 17 / 00 08 : 25 am to : vince j kaminski / hou / ect @ ect cc : celeste roberts / hou / ect @ ect , vince j kaminski / hou / ect @ ect , ravi thuraisingham / enron communications @ enron communications @ ect subject : re : summer internship position celeste , we need to make sure that the interns in vince ' s group are coordinated and incorporated with the rest of the summer associates . they should be offered the same starting dates , i believe they are may 22 , 2000 june 5 , 2000 . i am not sure about the june date . would you check and let vince know . they should also be offered the same starting salary package as the others . they will be included in training ( a few days ) and any other events we host . thanks",0 +"Subject: the impact of ecuador ' s heavy crude pipeline : prospects for capacity - cera conference call & web presentation title : the impact of ecuador ' s heavy crude pipeline : prospects for capacity url : http : / / www 20 . cera . com / eprofile ? u = 35 & m = 2293 now available : a prerecorded cera conference call me & event = w 520557 hosted by premiere conferencing presented by dr . rene ortiz , lisa pearl , alberto bullrich * * end * * follow above url to gain access to the recording of the conference call and web presentation . e - mail category : conference call & web presentation cera knowledge area ( s ) : latin american energy , to make changes to your cera . com account go to : forgot your username and password ? go to : http : / / www 20 . cera . com / client / forgot this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www 20 . cera . com / tos questions / comments : webmaster @ cera . com copyright 2001 . cambridge energy research associates",0 +"Subject: anshuman shrivastava sandeep : vince has asked me to coordinate with margaret daffin in our international group to ensure that we acquire an ll visa for anshuman . this visa has to be in place before he will be able to work in the united states in any capacity . ( anshuman cannot work in the us on a b - 1 visa - - he can only come here for business meetings or training . ) there are still several items remaining to be completed for the l - 1 process . the first is a fairly detailed job description for anshuman . secondly , we will need to know whether or not he will either be in a managerial position or whether he will be managing a project while he is here in houston . vince thought that you would be best able to provide this information to us , and we would really appreciate anything you can do to help us expedite this process . if you have any questions , please give me a call at x 34804 . thank you for your help . molly magee",0 +"Subject: re : recruiting good afternoon . packing emails - - its just my style : ) currently , it is my understanding that we would like to interview the comp . fin . students during the same period that we interview the mba ' s . tentatively speaking , one schedule should be sufficient . i will attempt to produce an official job description shortly . kristen is out of town for the remainder of the week , so her response to any inquiries may be delayed . her contact info : kristin . gandy @ enron . com 713 345 3214 regarding the satellite program , vince is interested in the ecommerce program . we think that it would be easier to keep the program full as compared to the comp . fin . program . it was a pleasure to be back in pittsburgh and i enjoyed meeting all the students from this year ' s comp . fin . class . i look forward to seeing you in a few weeks . - kevin kindall jean eisel on 11 / 06 / 2000 03 : 34 : 05 pm to : kevin . kindall @ enron . com cc : sgould @ andrew . cmu . edu subject : re : recruiting hi kevin wow you sure do pack one e - mail . i will try to answer questions . . . after each of you . . . look in the email for answers . - - on monday , november 06 , 2000 , 2 : 39 pm - 0600 kevin . kindall @ enron . com wrote : > hello . it was a pleasure to come back to cmu , and i enjoyed > interacting with the students . vince k . has expressed interest in > interviewing the computational finance students . enron will conduct first > round interviews with the mba students in december , and would like to set > up seperate interviews for the comp . fin . students . enron would like to > interview all the pittsburgh based comp . fin students , and we need to > select a date and a time . we are excited that you want to interview the comp finance students . do you want to do it in dec . or before ? let me know what best suits you . since there are only 16 individuals in the pittsburgh area . . . we should be able to accomodate you . . . would you want one or two schedules . . ? what is the formal protocol in such matters ? > all you need to do is let me know some ideal dates . . . and you send a job description and names of the students you want to interview . we will try to be as accomodating as possible . > enron is also interested in the ecommerce students as we have > ecommerce initiatives underway . it is my understanding that kristen > gandy will be the contact for such activities . if you can send me an e - mail address for kristen , i can get this strating asap . > > regarding a houston based satellite program , vince needs a proposal > in writing . would you be so kind as to send one ? what program is vince interested in having a satellite program ? when he was here he seemed less intererted in comp finance and more interested in e - commerce . i sent a note to michael shamos and tridas discussing this . let me know which program and i will see if we can work anything out ? > thanks so much , and i look forward to seeing you again in a few > weeks . > thanks kevin for you speedy response . > > > > jean e . eisel , ph . d . associate dean , admissions , coc and alumni relations gsia carnegie mellon university pittsburgh , pa 15213 412 - 268 - 2277 412 - 268 - 4146 ( fax ) currently in the news : carnegie mellon university mba program ranked 14 th in business week ' s list of the best graduate schools of business in the united states . ",0 +"Subject: re : real options openings ? vince , thanks very much - i ' m looking forward to it , chris at 09 : 25 am 5 / 8 / 00 - 0500 , you wrote : > > chris , > > we shall make arrangements to bring you over for an interview . > our hr department will contact you later this week . > > > vince > > > > > > christopher m kenyon on 05 / 05 / 2000 07 : 56 : 11 am > > to : vkamins @ enron . com > cc : > subject : real options openings ? > > > dear vince kaminski , > i was auditing prof dyer ' s real options class on thursday when you > spoke > on enron ' s activities in this area . i would be interested in exploring the > possibility of joining the group that works on real options in response to > and in anticipation of enron ' s business requirements . i ' m currently > working in the development and application of real options methodology at > schlumberger . in particular i ' ll be speaking at an industry real options > valuation conference in london ( http : / / www . iqpc . co . uk / finance / rov / ) and i > just had the paper accepted for publication in operations research . could > you pass my resume on to the relevant people to have a look at ? > > thanks in advance , > > chris kenyon > > ( see attached file : cmkenyon _ cv _ mayo 0 . doc ) > > > > > > attachment converted : "" c : \ eudora \ attach \ cmkenyon _ cv _ mayo 01 . doc "" >",0 +"Subject: internship opportunity dear mr . kaminski , it was very nice to talk with you saturday morning during the "" voleyball event "" . thanks a lot for offering your help in passing my resume to the enrononline business people . i am very excited about the possibility of being part of the team involved with e - commerce at enron . please find my resume and cover letter attached . hope you have a good trip to california next week ! thanks a lot carla di castro ( paulo issler ' s spouse ) - cover letter - enron . doc - resumenovo . doc carla di castro phone ( 281 ) 565 - 4283 pager ( 281 ) 527 - 6073",0 +"Subject: note from maureen vince , maureen asked me to pass along her message that the meeting with brook / hunt went very well today . she said this firm is top - notch and very thorough . she will contact you tomorrow after her speech on metals is over ( planned for the lunch hour ) . gwyn",0 +"Subject: re : clustering for gas and power frank , following up on our discussions , can you please send us the list of enron ' s curves by geographical region separately for gas and power . appreciate it , tanya . tanya tamarchenko 04 / 16 / 2001 09 : 16 am to : jaesoo lew / na / enron @ enron cc : vladimir gorny / enron @ enronxgate , winston jia / enron @ enronxgate , vince j kaminski / hou / ect @ ect subject : re : clustering for power jaesoo , as we discussed last week on wednesday meeting can you , please , implement clustering for power curves by geographical region . this involves the following : 1 . deciding together with risk control how many geographical regions we want to use and which enron ' s curves belong to each region . 2 . deciding together with risk control how to choose core curves for each region . this decision can be maid based on the a ) position size ; b ) statistical analysis . there might be other considerations . 3 . doing regression analysis for each curve versus the corresponding core curve . winston , can is it possible to run var for the clustering results obtained by jaesoo with clustering done by sas ? should we wait for the stage re - fresh and what is the status on this ? tanya .",0 +"Subject: re : contact info glenn , please , contact rudi zipter to set up an interview with him and david port . vince "" glenn darrah "" on 04 / 25 / 2001 04 : 27 : 03 pm please respond to gdarrah @ bigfoot . com to : vince . j . kaminski @ enron . com cc : subject : contact info vincent , congratulations on spearheading the mind ' s eye madness event - it looks like quite a success . my biggest disappointment is that i am leaving enron this week and have been too busy to participate as much as i would like . i have had continued interest in the work and presentations that amy oberg has done , so would have really enjoyed the workshop yesterday . i am still considering doing some or all of the motorcade friday , however that may work . separately , thanks for the update in the lobby today on the enterprise risk project . please keep in touch with me . as i mentioned , my redeployment period ends tomorrow ( april 26 ) , but i currently do not have an outside job lined up and still have a lot of interest in the project if something can be worked out over the next few weeks . although he is not in the same group as david port , i have worked a lot with brad larson in the rac underwriting group - he may be a good source of information on me also . contact information : e - mail : gdarrah @ bigfoot . com phone : 713 . 668 . 4277 cell : 713 . 320 . 5615 thanks , glenn darrah get your free download of msn explorer at http : / / explorer . msn . com",0 +"Subject: weijun decided not to interview i guess this means "" back to the drawing board "" . weijun has decided not to interview . lance - - - - - - - - - - - - - - - - - - - - - - forwarded by lance cunningham / na / enron on 04 / 18 / 2001 09 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" ji , weijun "" on 04 / 18 / 2001 08 : 06 : 44 am to : "" ' lance . cunningham @ enron . com ' "" cc : subject : please call me dear lance , thank you very much for all of your help through this process . at present , i am really tied up with mock market activities in austin energy . it would be inappropriate for me to leave at this time since the whole project will be jeopardized . therefore , i decided not coming to houston for an interview . i sincerely apologize for any inconvenience this may cause you . i do appreciate what you did and hope we can keep in touch in the future . thank you again for your help and wish you best . sincerely , weijun ji",0 +"Subject: improving option valuation precision in erms allan , paulo issler in our group , working with eric moon in structuring , recently tracked down the reason for a slight mis - match in option pricing in erms vs . the structuring spreadsheets . it is due to the fact that the option valuation functions in erms use a slightly less accurate approximation for the cumulative normal distribution . we would be happy to work with the right person to update the erms code in order to close this discrepancy . please let me know how you would like to proceed . if you are not the correct person to address the mainenance of erms , please let me know who to contact . thank you , stinson gibner x 34748",0 +"Subject: re : telephone interview with the enron corp . research group martin : lance will be out of town on the 6 th of december and he suggested that you interview jingming ( marshall ) in his place ( it is a telephone interview ) . can you do that ? thanks ! shirley - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 11 / 29 / 2000 01 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 11 / 28 / 2000 01 : 32 pm to : "" jingming ' marshall ' yan "" @ enron cc : lance cunningham / na / enron @ enron , alex huang / corp / enron @ enron , vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect subject : re : telephone interview with the enron corp . research group marshall : thanks for responding so quickly . i have scheduled the following interview : wednesday , december 6 - 1 : 00 pm houston time . it will last approximately 1 hour . we will call you at ( 605 ) 497 - 4045 unless otherwise instructed . if you have any questions , please feel free to contact me at 713 / 853 - 5290 . best regards , shirley crenshaw "" jingming ' marshall ' yan "" on 11 / 28 / 2000 12 : 59 : 55 pm to : shirley . crenshaw @ enron . com cc : vince . j . kaminski @ enron . com subject : re : telephone interview with the enron corp . research group ms . crenshaw , thank you very much for the message . i am very interested in the opportunity to talk to personnel from the research group at enron . between the two days you suggest , i prefer wednesday 12 / 6 . considering the two - hour time difference between california and texas , 11 : 00 am pacific time ( 1 : 00 pm your time ) seems to be a good slot . however , i am open most of the day on 12 / 6 so if some other time slot is prefered on your end , please let me know . thanks again . i look forward to talking to you and your colleagues . jingming on tue , 28 nov 2000 shirley . crenshaw @ enron . com wrote : > good afternoon jingming : > > professor wolak forwarded your resume to the research group , and > they would like to conduct a telephone interview with you , sometime next > week , at your convenience . the best days would be tuesday , 12 / 5 or > wednesday , 12 / 6 . > > please let me know which day and what time would be best for you and > they will call you . let me know the telephone number that you wish to be > contacted at . > > the interviewers would be : > > vince kaminski managing director and head of research > vasant shanbhogue vice president , research > lance cunningham manager , research > alex huang manager , research > > look forward to hearing from you . > > best regards , > > shirley crenshaw > administrative coordinator > enron research group . > 713 - 853 - 5290 > > > jingming "" marshall "" yan jmyan @ leland . stanford . edu department of economics ( 650 ) 497 - 4045 ( h ) stanford university ( 650 ) 725 - 8914 ( o ) stanford , ca 94305 358 c , economics bldg if one seeks to act virtuously and attain it , then what is there to repine about ? - - confucius _ ? oo ? ? ooo ? ? t  xo - ? ? - -  ? ?",0 +"Subject: lance cunningham this offer has been extended . lance want to take a few days to make his decision . he will have a decision by 7 / 6 at 5 p . he ' s going to call me . . . . and i ' ll let you know . thx - - - - - - - - - - - - - - - - - - - - - - forwarded by teresa bien / corp / enron on 06 / 30 / 2000 04 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : grant masson @ ect 06 / 30 / 2000 11 : 26 am to : vince j kaminski / hou / ect @ ect cc : teresa bien / corp / enron @ enron subject : lance cunningham vince : i have left a message with teresa and have sent the following terse note to lance to let him know that we are moving . as we discussed , i asked teresa to offer 90 k + 10 k signing bonus . regards , grant - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 06 / 30 / 2000 11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : grant masson 06 / 30 / 2000 11 : 21 am to : lbcunningham @ mail . utexas . edu cc : subject : enron lance : i am going on vacation tomorrow , but i wanted to get in touch with you before i left . i have asked hr to extend an offer to you . teresa bien should be sending you an offer letter via fedex . of course , with the july 4 th weekend , i ' m not sure when you will get it . if you have questions , i suggest that you call vince kaminski at 713 853 3848 . regards , grant masson .",0 +"Subject: re : paula corey ' s birthday richard , thanks for the invitation . i have already made another commitment but it ' s conditional on a few related events ( friends of friends coming to town ) . if the other event is canceled , i shall be glad to join you . i shall let you know in a few days . vince richard weeks @ enron communications 01 / 16 / 2001 02 : 20 pm to : alaina . metz @ marchfirst . com , anthony mends / enron communications @ enron communications , beth perlman / enron @ enronxgate , elisabeth mends / enron communications @ enron communications , karla feldman / enron communications @ enron communications , marie thibaut / enron communications @ enron communications , renee smith / enron communications @ enron communications , tom sinclair / enron communications @ enron communications , vince j kaminski / hou / ect @ ect cc : subject : paula corey ' s birthday you only thought the festive days were over what a better way to start off the new year than to celebrate our good friend paula corey  , s birthday we will have a little soiree at my house on saturday january 27 th , dinner will be served at 7 : 00 , please feel free to come out as early as you wish ; however if you arrive too early you may be requested to perform some ranch chores . please feel free to bring a spouse or friend if you choose . if you could rsvp by jan 23 rd that would be great . directions to my house are as follows : take i 45 north past the woodlands towards conroe take exit 83 crighton road exit stay on feeder road through stop sign until you get to traffic light ( crighton road ) turn right onto crighton road cross railroad tracks go to 3 rd street , about 1 miles , and turn right , which is the only way you can turn . this is kidd road ; however most of the time the street sign is knocked down . stay on kidd road until it dead ends at stidham and turn left . go to first street ( finnley ) and turn left . go about 1 mile and finnley will dead end . turn left onto deer trail and i will be the first house on the right the address is 13710 deer trail and my house is about 1 / 10 mile off the road . my home number is 936 273 3466 thanks richard weeks richard weeks enron broadband services purchasing processing manager office : 713 - 853 - 6995 cell : 713 - 516 - 2581 email : richard _ weeks @ enron . net",0 +"Subject: re : hari , thanks . please , keep me posted about your progress . any published papers ? we shall send you the printout . vince hari natrajan on 03 / 06 / 2001 08 : 47 : 34 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : dear mr . kaminski , thank you very much for your prompt response . i look forward to receiving a copy of your article . i would also appreciate it if you could let me know whether enron provides research grants to individuals who are working in the area of energy risk management . towards my research , i am trying to develop a model to estimate electricity spot price . in any case , i will be getting in touch with you again a year or so down the line when i am nearing completion of my dissertation because enron is my dream job . i look forward to hearing from you . thank you , yours sincerely , hari natarajan fellowship student indian institute of management bangalore bannerghatta road bangalore 560076 india tel : 91 - 80 - 6993056 fax : 91 - 80 - 6584050 e - mail : hnatraj @ iimb . ernet . in - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : hnatraj @ iimb . ernet . in cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com sent : 3 / 6 / 01 8 : 34 pm subject : re : hari , i shall send you a reprint of the article . i had to cancel my presentation at san antonio . vince shirley , please , send a copy of the article to hari . hari natrajan on 02 / 28 / 2001 06 : 45 : 29 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : dear mr . kaminski , i am a doctoral student at the indian institute of management bangalore , india . my area of interest is the energy sector , especially electricity derivatives . i am interested in obtaining a copy of the following items : 1 ) your presentation "" current challenges in modeling power price volatility "" at the session on price volatility & probabilistic methods in the energy markets . ( http : / / www . informs . org / conf / sanantonio 2000 / / talks / md 29 . html ) 2 ) your chapter "" the challenge of pricing and risk managing electricity derivatives "" in the book ' the us power market ' , risk publications . i would appreciate it if you could send me a soft / hard copy of the same . thank you , yours sincerely , hari natarajan fellowship student indian institute of management bangalore bannerghatta road bangalore 560076 india tel : 91 - 80 - 6993056 fax : 91 - 80 - 6584050 e - mail : hnatraj @ iimb . ernet . in",0 +"Subject: april lst party ! this is primarily for enron researchers , psuedo - researchers ( spouses ) , and quasi - researchers ( kids ) . wannabe - researchers will be strictly bounded in number ! hope you can come with your family . please reply asap so we can plan . krishna .",0 +"Subject: your encouragement would be appreciated the gas and power trading organizations have had a tremendous year . sometimes we as traders forget some of the crucial parts of the organization that significantly contributed to that success . i believe the weather group comprised of mike robert ' s , jose marquez , stephen bennett and dave ryan from power are one of those groups . these individuals have done a tremendous job of predicting summer weather along with the route hurricanes would take . the greatest achievement has been the november and december winter forecast . they held fast to their cold forecast even when outside services were moderating . on a score card with all other services they definitely deserve an "" a + "" . when you are down on the 32 nd floor it would be nice if you would stop and congratulate them on a tremendous job and their contribution to our success . thanks , jim schwieger",0 +"Subject: 1 - urgent - outlook email notification ( new ) outlook email notification your date of migration is : may 7 th you will be unable to send e - mail unless you take the following action : please go through your notes email and clean out as many old / un - needed email items as possible before your date of migration . ? after you are migrated to outlook you will only be allocated 100 mb of total mailbox space . ? ? if more than this amount of data is migrated to outlook you will not be able to send e - mail until it is below the 100 mb limit . ? cleaning up your notes email now will prevent this from happening to you . enron  , s messaging platform is migrating from lotus notes to microsoft outlook 2000 worldwide . you will be accessing outlook for all of your email functions . why is enron migrating to outlook 2000 ? many factors contributed to the decision to migrate from lotus notes to microsoft exchange / outlook . the most prominent factors were : ? significant advantages to moving to a product that is more integrated with current enron apps ( windows 2000 , office and internet explorer ) ? more efficient shared pc and roaming user features ? improved support and integration for palm / ce devices ? instant messaging capabilities what is being migrated to outlook 2000 ? ? email messages . from the date of your scheduled migration , the last ( 30 ) thirty days of your email will be converted for use in outlook . ? all your folders in notes you use to store email messages in . ? to do items ? journal items ? calendar entries dating from ( 1 ) one year in the past to ( 10 ) ten years in the future will be converted . ? address books , but not your distribution lists that you created . you will need to re - create these in outlook . thank you , outlook 2000 migration team",0 +"Subject: re : looking for "" fat tails "" in time - series for ngi - socal naveen , i got ngi - socal prices for prompt , prompt + 1 , . . . , prompt + 59 contracts . for each contract i calculated moving average based on 21 log - returns as well as moving volatility . then i calculated normalized log - returns : [ return ( t ) - ave ( t ) ] / vol ( t ) and compared the results to normal distribution . i could not find fat tails ! volatility changes a lot from day to day , so when people look at log - returns ( not normalized ) it seems that there fat tails ( big spikes , large returns more frequent than normal ) , which comes from the fact that volatility is not constant ( at all ) . see the spreadsheet is under o : \ _ dropbox \ tanya tanya",0 +"Subject: re : hi : thanks vince : could you give me mike roberts contact information . zeigham zeigham khokher doctoral candidate finance university of texas at austin zkhokher @ mail . utexas . edu 512 - 695 - 7164 ( cell ) - - - - - original message - - - - - from : to : cc : sent : friday , september 29 , 2000 3 : 33 pm subject : re : hi : zeigham , mike roberts from my group will help you . vince on 09 / 22 / 2000 07 : 14 : 37 pm to : cc : subject : hi : hi vince : this zeigham khokher at the university of texas at austin , finance department . i need some publicly available data that unfortunately is not available here . it is basically the historical prices for price of oil , gas and gold futures contracts and options . again the data is strictly public info and not proprietary at all . let me know if there is a central data person at enron who would be able to help . all help will be of course gratefully acknowledged . hope all is well , i hear you will be giving a talk at ut this fall and look forward to seeing you then . regards zeigham",0 +"Subject: re : please find home for brainful candidate shirley , please , arrange a phone interview . zimin , stinson , and myself . he may be a good candidate for tanya . vince stinson gibner 07 / 20 / 2000 11 : 16 am to : pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : please find home for brainful candidate any interest ? - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 07 / 20 / 2000 11 : 15 am - - - - - - - - - - - - - - - - - - - - - - - - - - - stephanie miller @ enron 07 / 20 / 2000 10 : 49 am to : stinson gibner / hou / ect @ ect , joe williamson / gco / enron @ enron cc : subject : please find home for brainful candidate attached for your review is a resume a friend of mine came across . thought you might want to review . regards , stephanie - - - - - - - - - - - - - - - - - - - - - - forwarded by stephanie miller / corp / enron on 07 / 20 / 2000 11 : 40 am - - - - - - - - - - - - - - - - - - - - - - - - - - - debbie chance 07 / 20 / 2000 09 : 42 am to : stephanie miller / corp / enron @ enron cc : subject : please find home for brainful candidate stephanie , came by way of friend of a friend - looks very good on paper . he has identified an interest in the following jobs that were posted in the net . you know everyone here - could you identifiy the appropriate people to call attention to this candidate ? resume attached below . thanks , dc 1 . economic advisor contact : respond to enron corp , human resources 235 , p . o . box 3330 , omaha , ne 68103 - 0330 or e - mail : dea . crum @ enron . com as a . doc or . txt attachment . please include this requisition number : 104776 | | | | job id | 0000104776 | | | | | | | | department | systems optimization team | | | | | | | | company | gas pipeline group | | | gas pipeline group | | | | 2 . manager contact : please do not contact the hiring manager . no faxes please . send resumes via e - mail to tony . vasut @ enron . com or mail to enron , attn : tvasut - eb 3628 , 1400 smith st . , houston , tx 77002 . please refer to job # 104486 ( embedded image moved to file : pico 4224 . pcx ) | | | | job id | 0000104486 | | | | | | | | department | trade credit | | | | | | | | company | corporate staff | | | risk assessment and control | | | | 3 . manager contact : to submit resume for consideration , please e - mail it to bholcomb @ enron . com if possible . plain text in the message or an attached word . doc are acceptable . please use no columns , italics or underlines . if unable to email , bholcomb @ enron . com , fax it to ( 713 ) 646 - 2169 , attn : ebl 013 a or mail it to b . holcomb , ebl 013 a , p . o . box 1188 , houston , tx . 77251 - 1188 | | | | job id | 0000104778 | | | | | | | | department | asset operations & svcs | | | | | | | | company | wholesale , retail & comm | | | enron energy services | | | | 4 . gas trading support generalist contact : please email resume to mark . broadfoot @ enron . com or if email is unavailable , respond to mark broadfoot eb 3617 a . reference job id # 0000104730 in email subject . resumes not accepted from agents . global technology hot job ( embedded image moved to file : picl 9645 . pcx ) | | | | job id | 0000104730 | | | | | | | | department | infrastructure & integrat | | | | | | | | company | global functions | | | technology | | | | 5 . risk management analyst contact : to be considered for this position , please e - mail your resume as a . doc or . txt attachment with your salary history to enajobs 4 @ enron . com . ( please eliminates italics , underlining , multiple margins or side - by - side columns . ) please indicate on the email subject line your name and the job id # . resumes with salary history will receive priority review . | | | | job id | 0000104631 | | | | | | | | department | global facilities | | | | | | | | company | wholesale , retail & comm | | | north america | | | | ",0 +"Subject: an interesting resume i shall interview this candidate next week ( a very preliminary interview ) to evaluate his potential and determine if he fits enron ' s culture . do you see a need for a person with his skills in your area ( litigation support ) ? vince",0 +"Subject: re : i ' ll be gone for a month sofya : sounds like fun - be careful and have a great time . we will see you when you return on the 31 st . shirley sofya tamarchenko @ enron 06 / 27 / 2000 11 : 23 am to : shirley crenshaw / hou / ect @ ect , grant masson / hou / ect @ ect , maureen raymond / hou / ect @ ect cc : subject : i ' ll be gone for a month good morning : i am leaving houston this weekend to go to camp , so friday june 30 will be my last day . i will be at camp for a month , but i can be back at work on monday july 31 .",0 +"Subject: re : generation earnings model michelle , i agree with you that we need to run at least 500 iterations . but i did not realize that it took 16 hours to run 100 iterations . helen and i talked earlier about using parallel computing technique to split the algorithm into smaller parts and run the parts separately on different processors , then aggregate the results . this procedure makes better use of computer power and saves time . looks like we have to do it this way now . buying a more powerful computer helps but does not solve the problem . in addition , we might want to re - consider if writing the code in vb is optimal . i was assured at the very beginning that vb runs as fast ( if not faster ) as c , but some re - assurance from it group on this issue is helpful . best , alex from : michelle d cisneros @ ect 04 / 09 / 2001 02 : 52 pm to : alex huang / corp / enron @ enron cc : gary hickerson , danielle romain subject : generation earnings model hi alex - danielle and i were talking to david m . today regarding running the model for purposes of back testing the results . last week we ran calpine using 46 days of historical forward price data at 10 and 100 iterations . the 100 iteration run took 16 hours to run . to run all 20 companies with the 46 days worth of data and at 100 iterations is estimated to take about 28 days . we are concerned that 100 iterations will not be sufficient and will need to be increased to at least 500 iterations . we are thinking that we need to use a server or something much more powerful than the test computer we have been using . do you have any suggestions as to how we can improve the process ? thanks , michelle x 35435 hi alex - danielle and i were talking to david m . today regarding running the model for purposes of back testing the results . last week we ran calpine using 46 days of historical forward price data at 10 and 100 iterations . the 100 iteration run took 16 hours to run . to run all 20 companies with the 46 days worth of data and at 100 iterations is estimated to take about 28 days . we are concerned that 100 iterations will not be sufficient and will need to be increased to at least 500 iterations . we are thinking that we need to use a server or something much more powerful than the test computer we have been using . do you have any suggestions as to how we can improve the process ? thanks , michelle x 35435",0 +"Subject: re : willow and pathstar evaluations ok - thanks . - - - - - original message - - - - - from : to : "" mike curran "" cc : ; sent : monday , april 30 , 2001 11 : 34 pm subject : re : willow and pathstar evaluations > > mike , > > we are short manpower in london . we shall try to > evaluate the software in houston . > > vince > > > > > > "" mike curran "" on 04 / 24 / 2001 10 : 03 : 24 am > > please respond to "" mike curran "" > > to : > cc : > subject : willow and pathstar evaluations > > > > hi vince - > > hope all is well with you . > > sharad hasn ' t had time to evaluate our willow tree or monte carlo software > since the middle of last year . is there somebody else that could do it ? > > please let me know who i should send the evaluation to . > > best regards , > > michael curran > ceo > quantin ' leap limited > piercy house > 7 copthall avenue > london ec 2 r 7 nj > > tel : + 44 ( 0 ) 20 7562 3450 > fax : + 44 ( 0 ) 20 7562 3411 > > mailto : mcurran @ quantinleap . com > > http : / / www . quantinleap . com > > > > > > > > > > >",0 +"Subject: re : short - sell vs exercise chonawee , as i have pointed out , short - selling the stock may be a bad decision because of tax implications ( ignoring the legal aspects ) . suppose the strike is $ 70 and you were granted an atm option . you sell short at $ 70 ten lots ( one lot = 100 shares ) . the price goes to $ 100 . you lose $ 30 x 1000 = $ 30 , 000 on your short position . option exercise gives you $ 30 , 000 . this is before taxes . you pay taxes on your option income ( it ' s treated as ordinary income ) . the tax is 28 % x $ 30 , 000 = $ 8 , 400 . you can use only $ 3 , 000 of your loss against ordinary income . this saves you only $ 840 in taxes . of course , if you have capital gains , you can use losses on your option position as an offset . the remaining part of your capital loss is carried forward and you get the tax benefits over time ( less the time value of money ) , assuming you have income in the future ( or capital gains ) . not so good . by the way , valuation and optimal exercise of employee stock options is a very interesting and difficult problem . vince chonawee supatgiat @ enron 07 / 10 / 2000 11 : 40 am to : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect cc : subject : short - sell vs exercise below is my writing that was originally planned to post somewhere . it explains how to handle a special type of call options which can be exercised but cannot be sold . ( as we know that it is never optimal to exercise a call option before its maturity ) . however , after taking vince ' s comments on the ordinary income / capital loss tax offsetting issue , i think this is not a good article anymore . i guess i could just throw this article away . : - ) - chonawee short - selling is better than exercising your employee stock options in general , the sensible time to exercise your employee stock option is when you speculate that ene is going down or its growth rate is extremely low . in fact , when exercising the options , you are speculating that ene would never reach this point ( plus interest ) again during the 10 years maturity date or until you leave the company . if you do not anticipate that , you should hold on to your options because you can gain higher profit by delaying your exercise . however , if you believe that ene is reaching its peak . then , instead of exercising the options , you should short - sell ( or sell ) the stocks in that amount . after short - selling , when you feel that the stock starts to go up , you can buy them back ( to cover ) , make profit , and still keep the options . on the other hand , if the stock does not go down as expect , you can exercise the options to cover your short position anytime . let us take a look at a simple case where there are no taxes , no dividends , and zero risk - free rate . suppose that ene follows a simple sample path as follow if you exercise 100 ene options with a grant price of 45 when ene reaches 70 , you would earn ( 70 - 45 ) * 100 = $ 2 , 500 . but if you short sell 100 ene at 70 , no matter how much ene is in the future , you can exercise the options to cover the short position and still earn ( 70 - 45 ) * 100 = $ 2 , 500 . the advantage of short - selling comes when ene at the period 2 is 60 . at this point , you can cover your short position , get ( 70 - 60 ) * 100 = $ 1 , 000 , and still keep your options or you can exercise the options and gain $ 2 , 500 . that is , you still keep the flexibility of your options when you short - sell . in conclusion , the only sensible time to exercise your employee stock options is to cover your short position .",0 +"Subject: us news archive @ ft . com reliable country intelligence for a challenging world with country reports supporting your decisions , you  ' re working with the best source of country intelligence available . turn to the economist intelligence unit at : http : / / store . eiu . com dear ft . com user ft . com  ' s global archive can provide the answer to a multitude of business queries : * access information from more than 1 , 200 us business news publications * simultaneously search multiple sources e . g . business and industry papers , business wire , and the pr newswire - usa . * obtain a global view by searching across more than 6 million articles worldwide . with a variety of search options and powerful software , you will be able to find the information you need in no time at all . for the definitive answer to your business - related query , visit and bookmark this page : rch . jsp regards , ft . com why not forward this e - mail to a friend or colleague who may find this information useful ? if you no longer wish to receive further e - mails from us please send an e - mail to ft . com . unsubscribe @ newsbyemail . ft . com with the single word "" unsubscribe "" as the subject of the message . your name will then be removed from our mailing list . if you have forgotten your password for ft . com simply visit ",0 +"Subject: re : durasoft - - java class siva , i will have to check and see if we can accomodate a 5 day 8 to 5 class . also , president ' s day is a holiday for us , so we may have to look at a later date . - - stinson "" siva thiagarajan "" on 01 / 29 / 2001 08 : 51 : 02 am to : cc : subject : re : durasoft - - java class stinson , i have attached a file along with this email that lists the software needed for our java class . we would like to do the class from monday thru friday , 8 am to 5 pm . that way we can complete the class within a week . we are unable to offer classes in the evenings or for few hours a week . we usually teach week long courses for our other clients and because of that we won ' t be available . currently , we can do the class from feb . 19 th through feb . 23 ( that is if you are working on feb 19 th , president ' s day ) . i will call you sometime this afternoon to talk further . please feel free to reach me if you have any further questions in the mean time . regards , - siva - - - - - original message - - - - - from : stinson . gibner @ enron . com to : siva @ durasoftcorp . com date : friday , january 26 , 2001 5 : 52 pm subject : re : durasoft - - java class > > siva , > > a few additional questions . can you tell me what software would be > required for the students ? also , when would venkat be available to start > the class and what type of schedule would you recommend ? would having two > hour classes twice a week from , say , 4 - 6 pm work ? we have a high level of > interest and just need to iron out the details . feel free to call me > ( late afternoon on monday might be best ) at 713 853 4748 or email . > > - - stinson > > > - javasoftwareneeds . htm",0 +"Subject: re : asian option for pavel stinson , let ' s talk about it . it seems like an open personality clash developing for the first time in the history of the group . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 02 / 2001 03 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - zimin lu 05 / 02 / 2001 01 : 41 pm to : paulo issler / hou / ect @ ect cc : ( bcc : vince j kaminski / hou / ect ) subject : re : asian option for pavel our convention is whoever finalizes the model should write the documentation . it does not make sense to write one when changes are anticipated . you have been working on this almost a year , it never strikes you that we need a documentation ? i created exotica . xll , does that also give you an excuse not working on exotica documentation ? zimin paulo issler 05 / 02 / 2001 11 : 52 am to : zimin lu / hou / ect @ ect cc : tai woo / enron @ enronxgate @ enron , pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel i am surprised that we do not have the documentation ready . i can make that for you . it is not there because you did not put that together by the time it was created and all the changes i have made did not required changes on the functionality . paulo issler zimin lu 05 / 02 / 2001 11 : 29 am to : tai woo / enron @ enronxgate @ enron , paulo issler / hou / ect @ ect cc : pavel zadorozhny / enron @ enronxgate subject : re : asian option for pavel tai woo , here are the c - codes for the crudeapo . ' sig ' is the spot volatility meaning the price volatility within the delivery period . you should consult with pavel for the definition of this "" extra "" parameters . we would like to see the position monitor once you get it running . we might have some additional suggestions . paulo , why don ' t we have a documentation on crudeapo you worked on ? i can not find it in exotica help file . please supply that to tai , thanks . - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - from : tai woo / enron @ enronxgate on 05 / 02 / 2001 09 : 55 am to : paulo issler / hou / ect @ ect cc : kara maloney / enron @ enronxgate , zimin lu / hou / ect @ ect subject : asian option for pavel this morning , zimin told me that pavel is using a special model in evaluating his asian option portfolio . he asked me to talk to you in order to access to the code so that i can see the difference made to the model . as i cannot find the doc . describing this model , please tell me what that new input parameter ' sig ' is . thanks , ",0 +"Subject: rice / enron finance seminar series jones graduate school research seminar series in finance sponsored by enron capital and trade resources paolo fulghieri insead will give a seminar at the jones school on monday , january 31 , "" information production , dilution costs , and optimal security design "" the seminar will begin at 4 : 00 in room 115 . please e - mail me if you would like an advance copy of the paper . stay tuned for an update of the spring seminar series schedule . bbo",0 +"Subject: re : mgmt 656 ( rice university ) this list is just a basic excel document with names , id ' s and e - mail addresses . - pam ( 713 - 348 - 6223 ) at 03 : 36 pm 1 / 17 / 01 - 0600 , you wrote : > pam , > > thanks . the list of e - mail addresses would be useful as well . > > vince > > > > > > pamela vande krol castro on 01 / 17 / 2001 03 : 05 : 01 pm > > to : vince . j . kaminski @ enron . com > cc : > subject : mgmt 656 ( rice university ) > > > here are your rosters for mgmt 656 . let me know if you need a list of > e - mail addresses as well . i will update you as student schedules change . > - pam > ( 713 - 348 - 6223 ) > ( see attached file : 656 . doc ) > > - 656 . xls",0 +"Subject: japanese power market another article i thought you might find interesting . regards , eugenio review of energy policies kicks off asahi shimbun april 25 , 2000 a government advisory panel on monday embarked on a comprehensive review of energy - related policies . ` ` we want to come up with feasible policies and at the same time clearly present reasons for those policies , ' ' yoichi kaya , a professor emeritus at the university of tokyo , told a meeting of the coordination subcommittee under the advisory committee for energy , an advisory panel to minister of international trade and industry takashi fukaya . kaya chairs the subcommittee . the nuclear development policy , including the government ' s goal for building new nuclear power plants , is expected to be a focus of the discussions . a spate of nuclear accidents have made construction of plants increasingly difficult , and the nation ' s power suppliers have reduced the number of new nuclear power plants expected to be in operation by fiscal 2010 from 20 to 13 . the subcommittee , set up for the first time in about 10 years , is made up of about 30 members , and members of anti - nuclear nongovernmental organizations have been included for the first time . some members told monday ' s meeting that the government must stop taking the nuclear development policy for granted and seriously look into the possibility of introducing renewable energy , such as wind and solar power . also on the agenda will be energy saving measures . energy consumption in the residential and commercial sector , made up of homes and offices , and in the transportation sector , which includes cars and trucks , has almost doubled over the past 25 years . at monday ' s meeting , many members stressed the need to change public consciousness toward the use of energy . miti plans to present studies on how life would be affected by compulsory energy saving measures such as automatically turning off air conditioners at certain temperatures or vehicle engines when they are idle .",0 +"Subject: re : joao neves kate , i was traveling recently . i shall evaluate the resume together with my associates and will get back to you thursday . i shall be glad to meet you on the 13 th . vince "" kate szablya "" on 04 / 02 / 2001 04 : 37 : 18 pm to : "" vince kaminsky "" cc : subject : joao neves vince , i wanted to follow up with you to see if you had an opportunity to review joao neves ' resume , which i sent ? you last wednesday , and to get your feedback on him . ? please ? let me know if you are interested in ? setting up an interview . ? also , i will be in houston the afternoon of ? friday , 4 / 13 , and would welcome the opportunity to meet with you in person , if your schedule allows . ? ? i look forward to hearing from you . ? regards , ? kate szablya power brokers , llc energy search and recruitment 303 - 716 - 2987 303 - 619 - 7589 cell 303 - 716 - 3426 fax kate @ powerbrokersllc . com www . powerbrokersllc . com ? ?",0 +"Subject: request submitted : access request for anita . dupont @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000012734 approver : stinson . gibner @ enron . com request create date : 1 / 8 / 01 4 : 24 : 06 pm requested for : anita . dupont @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: re : var for cob 2 nd aug 2000 hi kirstee , thanks again for all your work on mg . one think to double check is units . please , make sure that the prices are quoted in the same units our positions come in . one potential source of confusion arises from the fact that we are dealing with different cultures ( metric system vs . english measures ) . vince enron capital & trade resources corp . - europe from : kirstee hewitt 08 / 03 / 2000 11 : 31 am to : vince j kaminski / hou / ect @ ect cc : subject : var for cob 2 nd aug 2000 hi vince , i was waiting for a comment about the email below before sending it to the full mailing list . basically it suggests that the copper option position may well have increased the var by more than $ 500 , 000 . however , given that the portfoilo has also changed from the lst of august it is difficult to asses the actual change due to the option only . regards kirstee - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 03 / 08 / 2000 17 : 29 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : kirstee hewitt 03 / 08 / 2000 16 : 29 to : cantekin dincerler / hou / ect @ ect , grant masson / hou / ect @ ect cc : subject : var for cob 2 nd aug 2000 hi all , the cu option position has entered the mg books for the 2 nd aug . the delta is 35299 $ / mt for dec 2000 . the cu var has gone up from $ 2 , 245 , 000 to $ 3 , 306 , 000 . i estimated that the portfolio for the lst would increase to approx $ 3 , 039 , 000 so this seems sensible . the overall var change is from $ 4 , 780 , 796 to $ 5 , 991 , 569 . again , the estimate for the lst aug was for an increase in var to ~ $ 5 , 476 , 000 . all estimates were based on a delta of 32 , 0004 / dmt . there has also been some increase in the var for aluminium which will effect the overall total . a summary is as follows : regards , kirstee",0 +"Subject: re : possible summer internship with enron hello ainsley : we are so glad you are interested ! i spoke with vince kaminski and the procedure is to usually conduct a telephone interview first . this will let us know exactly where your interests are and establish where you might fit within our organization . please let me know your availability and the best time to reach you on thursday ( the 25 th ) or friday ( the 26 th ) afternoon from 1 : 00 pm to 5 : 00 pm . also please let me have the telephone number where you may reached and we will call you . it is easier that way since there will be several of us involved in the interview . the interview will usually last an hour or an hour and a half . thank you ainsley ! sincerely , shirley crenshaw 713 - 853 - 5290 "" ainsley gaddis "" on 05 / 23 / 2000 07 : 21 : 43 pm to : "" shirley crenshaw "" cc : subject : re : possible summer internship with enron hello ms . crenshaw , thank you so much for getting back to me so quickly . i am very interested in meeting with mr . kaminski and the research group . i am available to come into the office any time wednesday , thursday or friday . please let me know what time is most convenient for you . i look forward to hearing from you soon ! sincerely , ainsley gaddis",0 +"Subject: re : eol pricing algorithm hi bob , some comments : 1 . you request enron position after successful market order , but not after limit order - - you may want it after limit order as well to be consistent . i am not clear on how you would use enron position . it is possible that the trading desk will have a target position in mind and they will set bids and offers in such a way as to try to achieve that target position , but this target position probably changes continuously and is not stored anywhere , and without this target position there is nothing to compare actual enron position to . of course , enron position may still provide some insights . 2 . you request bid - mid - ask prices for each trade - - - given that a successful trade may execute later than time of order ( especially for limit orders ) , would you need the evolution or range of bid - mid - ask over this time interval ( time of order to time of execution ) ? also , for failed trades , you may need the evolution or range of bid - mid - ask over the time interval from time of order to time of rejection . this again mainly applies to limit orders , as the time intervals may not be significant for market orders given the speed of execution ( something to check ) . - - - - - original message - - - - - from : lee , bob sent : monday , april 23 , 2001 8 : 33 am to : kaminski , vince ; shanbhogue , vasant ; barkley , tom cc : lu , zimin ; huang , alex ; gibner , stinson subject : eol pricing algorithm a draft data request for eol data we would use to study p & l patterns for the "" george "" pricing algorithm is attached for your review . i would like to send this to andy zipper and jay webb this afternoon . bob >",0 +"Subject: re : mscf speaker series pierre - philippe , i was under the impression the presentation will be at 3 : 30 . 11 : 30 is fine with me but want to confirm it . vince "" pierre - philippe ste - marie "" on 10 / 28 / 2000 12 : 22 : 36 am to : , , , , , , "" pierre - philippe ste - marie "" , , "" punit rawal "" , , , , , , , , , , , , , , cc : subject : mscf speaker series mscf speaker series official invitation ? ? it is with great pleasure and some amount of pride that i announce the next event in the speaker series . next friday we will have the honor to host a conference given by mr . vince kaminski head of research at enron corp . ? ? the ? sixth event is ? next friday ( nov 3 rd ) ! ? from : 11 . 30 - 13 . 30 please attend ! ! ! the next event in the student speaker series is : friday , november 3 , 2000 11 : 30 a . m . to 12 : 30 p . m . fast lab [ image ] vince kaminski enron corp . tentative student speaker series schedule 2000 - 2001 the following is a tentative schedule of the mscf student speaker series for the 2000 - 2001 academic year . all events take place from 11 : 30 a . m . to 12 : 30 p . m . in the fast lab ( gsia 229 ) unless otherwise noted . updates are soon to follow . volatility curve and bond basis august 11 , 2000 david hartney & jerry hanweck vice president , futures and option sales j . p . morgan price and hedging volatility contracts september 1 , 2000 dmitry pugachevsky deutsche bank dmitry pugachesky is a director with otc derivatives research of deutsche bank , where his research is primarily focussed on credit derivatives . prior to joining deutsche bank , dmitry worked for six years with global analytics group of bankers trust . there he developed models for emerging markets , interest rates , and equity derivatives and also participated in actual trading and structuring of interest rate options . he received his phd in applied mathematics from carnegie mellon university specializing in control theory for stochastic processes . he has published several papers on modelling in emerging markets and on valuation for passport options . a measurement framework for bank liquidity risk september 15 , 2000 raymond cote vice president , finrad inc . raymond cote is vice president , financial engineering at finrad inc . , a montreal - based consulting firm offering financial management solutions that combine advisory and systems development services to & corporations and financial institutions . abstract : liquidity risk , as opposed to credit and market risks , has received little attention in professional or academic journals . we argue that analyzing bank liquidity risk can be viewed as a variation of credit risk analysis . after introducing some concepts and definitions , the presentation defines a framework allowing to measure a bank ' s structural liquidity risk . it then shows that combining the framework with modern credit risk measurement tools leads to a liquidity risk var measure . the presentation then offers concluding comments on the integration of the liquidity risk measurement framework within enterprise - wide risk management . the impact of electronic trading on the uses of quantitative research in equity options september 22 , 2000 scott morris hull group , quantitative research department quantitative research in investment management october 6 , 2000 raman srivastava & anna bulkovshteyn assistant vice president , & fixed income , quantitative analysts , putman investments [ image ] tba november 3 , 2000 vince kaminski enron corp . fund management and market efficiency november 10 , 2000 andrea dalton researcher , friess associates ( advisor to the brandywine funds ) . tba november 17 , 2000 jeff keifer & deb aep tutorial on bridge november 24 , 2000 pierre ste - marie & punit rawal mscf students a corporate risk management framework december 8 , 2000 darin aprati & brian moore mcdonald ' s [ image ] math speaker series schedule 2000 - 2001 [ image ] speaker series student committee [ image ] previous speakers ? pierre - philippe ste - marie - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [ image ] http : / / pstemarie . homestead . com",0 +"Subject: re : life . . . : ) maybe next time . roman - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : rkosecki @ mieco . com sent : 10 / 18 / 00 1 : 14 pm subject : re : roman , sorry . i am leaving for philadelphia this evening . leaving office around 5 p . m . let ' s get together on another occasion . vince roman kosecki on 10 / 18 / 2000 02 : 09 : 28 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : hi vince , i am in houston now . will have to work late . but how about drinks / food some time around 7 - 8 or later ? i am staying at wyndham greenplace ( ? ) and will use taxi to get around . thanks roman - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : rkosecki @ mieco . com sent : 10 / 13 / 00 7 : 55 am subject : re : roman thanks . my home number is 281 367 5377 vince roman kosecki on 10 / 13 / 2000 09 : 38 : 39 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : i will be in houston on wed . willl give you a call roman - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : thursday , october 12 , 2000 2 : 43 pm to : rkosecki @ mieco . com subject : re : roman , drinks after work would be better . i am flying back from ca on tue morning . please , call me at 713 853 3848 or 713 410 5396 ( cell ) in the afternoon . vince roman kosecki on 10 / 12 / 2000 12 : 21 : 50 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : hi vince i will be in houston for a few days next week ( like mon - wed ) . if you are back from your european trips maybe we can "" do "" lunch ? roman",0 +"Subject: merit increases norma , it seems that there is a bug in the system . i made an error mixing equity and merit raises in one column . the system does not allow me to correct the mistake by moving the entries from one column to another . i can enter the changes , but after i save them the system reverts to original designations . as a result , the columns contain mixed entries related to merit and equity raises . the column totals are misleading . i am taking a csv version home to continue making adjustments . i shall work at home monday ( 281 367 5377 ) . vince",0 +"Subject: enron opportunities lynn , i am forwarding you the resume of a very bright and motivated young man who attended a lecture i gave recently at lsu . i think we should consider him for an analyst position . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 15 / 2000 08 : 52 am - - - - - - - - - - - - - - - - - - - - - - - - - - - "" richard c . iles "" on 09 / 14 / 2000 11 : 14 : 56 am please respond to "" richard c . iles "" to : cc : subject : enron opportunities dr . kaminski : ? here is my resume and cover letter . ? thanks , ? richard iles - enron cover and resume . doc",0 +"Subject: enside newsletter good morning ! thank you for taking time out of a busy friday to allow our photographer to shoot some pictures for the enside . i will contact you when the proofs are ready . i have attached the article draft with revisions by mike , osman and iris . please peruse this draft and make any changes or corrections . i need it back for the layout team by wednesday evening , april 4 , if possible . regards , kathie grabstald ews public relations",0 +"Subject: stephen bennett stephen bennett , professional meteorologist , was hired into the research group in september of this year as a specialist based on salary alignment criteria . in retrospect , and upon review , he should have been hired on as a senior specialist . after coming on board . it rapidly became apparent that stephen was clearly an "" under hire . "" he is well - deserving of an immediate promotion ( really more of a correction ) and pay raise , to be made retroactive at least to the lst of this month . this memo outlines the circumstances surrounding this hiring error and provides detailed justifications for this retroactive "" promotion . "" at the time of the interview process , there was no position in enron designated as "" professional meteorologist . "" in fact , the most recent similar hire prior to that date was jose marquez , also a professional meteorologist , who was hired in , based on salary alignment criteria , as a manager . while functionally , both these men are meteorologists , enron has no such job classification . compounded by the urgency in bringing on additional professional expertise in short time order , it was difficult to peg the proper enron classification appropriate for this new position . this original uncertainty and resulting misplacement of stephen into the specialist category , rather than the senior specialist category , needs to be corrected at this time . although a "" new - hire "" to enron , stephen bennett has extensive work experience . he has worked as a professional meteorologist at both the weather services corporation in boston and at the weather channel in atlanta . he came to enron well - referenced by both those organizations , needing no further training and only minimal supervision . once aboard here in houston , stephen immediately demonstrated the core enron values with our unique sense of urgency . after only a week , he assumed responsibilities normally reserved for someone actually at even a manager level - he was assigned and fully took over the critical afternoon weather briefings to the gas traders . this includes analysis and report preparation as well as presentation . also in the presentation arena , he now regularly briefs various desks in the morning and throughout the day . stephen is a master of communication and particularly adept at conveying what through other messengers might otherwise seem confusing or ambiguous . stephen has also demonstrated an unusually high level of self - initiative . he designed , implemented , and now maintains several sub - sites on the research web page which he tailored to various customers - in specific : the weather derivatives team , the agricultural team , and most recently , the crude and liquids team . i have recently assigned stephen to spearhead our conversion and major upgrade of this web page . these above described accomplishments are above and beyond stephen  , s regular duties which include starting work at 5 am daily , reliably and without fail , to assemble and prepare our trader  , s weather report . recently , with the advent of extended hours for both nymex and enrononline , stephen voluntarily on his own accord , assists in our new sunday weather support effort . as his supervisor , fully cognizant of his already standard 50 + hour work week , i do not solicit , but readily accept , this above and beyond expectations assistance . in review , the circumstance which resulted in this under hire condition was enron  , s immediate need for a non - standard , fairly unique professional - a meteorologist , coupled with stephen  , s desire to work for our company in spite of the absence of a hierarchy which included the exact entitled professional title reflecting his chosen career path . . once hired , stephen has clearly demonstrated through contribution and performance that he is well - deserving of this immediate and retroactive promotion .",0 +"Subject: re : alp presentation christie , what about the invitation to dinner for gillis and whitaker ? vince christie patrick 04 / 10 / 2001 06 : 01 pm to : mgillis @ rice . edu , grwhit @ rice . edu cc : vince j kaminski / hou / ect @ ect , steven j kean / na / enron @ enron subject : alp presentation president gillis and dean whitaker , enron would be honored with your presense at the presentation set forth below . under the guidance of vince kaminski and his team here at enron , we are thoroughly enjoying working with this group of bright and enthusiastic rice students . we hope you can join us for the culmination of their significant efforts . please let me know - - thanks ! ! - - christie . - - - - - - - - - - - - - - - - - - - - - - forwarded by christie patrick / hou / ect on 04 / 10 / 2001 05 : 52 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 10 / 2001 08 : 13 am to : barrett @ rice . edu , uecker @ rice . edu , cmiller @ rice . edu , lounghrid @ rice . edu , luigical @ rice . edu cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , kenneth parkhill / na / enron @ enron subject : alp presentation on behalf of enron corp . i would like to invite you to an alp project presentation by a group of students of jesse h . jones graduate school of management , rice university . the students will present the results of a research project regarding electronic trading platforms in the energy industry . the presentation will be held on may 7 , at 4 : 00 p . m . at enron , 1400 smith . we would also like to invite you to dinner , following the presentation . vince kaminski vincent kaminski managing director - research enron corp . 1400 smith street room ebl 962 houston , tx 77002 - 7361 phone : ( 713 ) 853 3848 ( 713 ) 410 5396 ( cell ) fax : ( 713 ) 646 2503 e - mail : vkamins @ enron . com",0 +"Subject: vince kaminski ' s "" bio "" and requirements for the siam invitation hello professor fitzgibbon : attached please find a "" bio "" for vince kaminski . he will require an lcd projector for his presentation . if you need anything else , please let me know . regards , shirley crenshaw administrative coordinator enron research group 713 - 853 - 5290 email : shirley . crenshaw @ enron . com - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 04 / 12 / 2001 03 : 30 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 11 / 2001 02 : 17 pm to : shirley crenshaw / hou / ect @ ect cc : subject : siam invitation fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 11 / 2001 02 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" william fitzgibbon "" on 03 / 13 / 2001 02 : 45 : 57 pm to : cc : subject : siam invitation dear dr . kaminski here is an email invitation for teh siam event . a hard copy will follow dr . v . kaminski enron p . o . box 1188 houston , texas 77251 - 1188 dear dr . kaminski march 12 , 2001 i am writing to formalize your invitation to attend , participate , and speak in the siam southwest regional mathematics in industry workshop . a time span of thirty minutes is being allotted to invited talks with an additional ten minutes or so for discussion . the workshop , funded under the auspices of a national science foundation grant to siam will not be a standard applied mathematics event with representatives from industry , academe , and governmental agencies presenting their latest research results . instead the meeting will emphasize the mathematics and technology currently applied to the projects of industry and governmental laboratories . additionally the event will focus upon the mechanisms facilitating interaction and collaboration between the academy , industry , and government laboratories . the workshop will be held at the university of houston hilton hotel , april 27 - 28 . funds will be available to support both travel expenses and the cost of food and lodging of invited speakers . we will be happy to make travel arrangements on this end if so desired . we hope that you can accept our invitation . if this is the case please furnish us with a title , a short abstract , and a list of the necessary equipment for your presentation . we look forward to seeing you at the university of houston . sincerely w . fitzgibbon",0 +"Subject: maureen norma , i talked to g . koepke , an associate reporting to maureen she told me that things have significantly improved in recent weeks . vince",0 +"Subject: re : recruiting for weather risk management group hello vince , thank you very much for forwarding the message . i hope all is well with you ! regards , heather on fri , 27 apr 2001 vince . j . kaminski @ enron . com wrote : > > heather , > > i am forwarding this message to 2 groups in enron that may be interested . > > vince > > > > > > "" heather thorne "" on 04 / 26 / 2001 08 : 55 : 56 pm > > to : "" christie patrick "" , "" vince kaminsky "" > > cc : "" greg hunt home "" > subject : recruiting for weather risk management group > > > > > dear vince and christie , > > > > i hope that you are both well , and are ready for the onset of summer in > houston ! i was disappointed that i was not able to see you at the final > tiger team presentations last month due to a family emergency . i hope that > the teams ' analyses will be helpful to your work , and echo their > appreciation of your involvement and support . > > > > i am writing with a question regarding recruiting for enron ' s weather risk > management group . my boyfriend , greg hunt , is currently seeking > opportunities to combine his background in meteorology ( ms and 2 years of > research at lawrence livermore nat ' l lab ) and an mba in finance and > information technology . i began thinking about enron ' s work in weather > derivatives , and realized that there could possibly be a great fit there . > > > > i have copied greg on this message , and would appreciate any suggestions > you can offer regarding opportunities in this group . thank you very much ! > > > > best regards , > > > > heather > > > > > > > > > > heather n . thorne > > mba candidate , 2001 > > the wharton school at university of pennsylvania > > 2516 pine street > > philadelphia , pa 19103 > > ( 215 ) 545 - 3022 > > > > > >",0 +"Subject: foreign language lessons fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 27 / 2000 01 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - leandro ibasco @ enron 01 / 27 / 2000 01 : 07 pm to : shirley crenshaw / hou / ect @ ect cc : subject : please distribute this message to the entire research group shirley , kindly forward to the entire research group . hi , vince has requested me to inform you that foreign language lessons are available . among the languages offered are spanish , portugese , french , german , mandarin , and japanese . other languages are possible . the lessons can be done in a small class or through a private tutor . the schedule is quite flexible with the latest class being at 5 : 00 to 6 : 30 p . m . to arrange classes , please contact meilli sanford at ( 713 ) 464 - 8474 . they would need an e - mail approval from vince to enroll . if you have any questions , please feel free to contact me . regards , roy",0 +"Subject: erisk essentials ? www . erisk . com what ' s new at erisk . com - 23 march 2001 weekly review this week ' s economic , banking and p _ insurance news , from an enterprise risk management perspective . read it here . . . analysis in this week ' s analysis :   taking the long view on credit risk management   the risks of cracking down on insurance fraud and   fannie mae controversy puts debt benchmark in jeopardy feature the treatment of operational risk is one of the more controversial , and poorly understood , elements of basle ' s proposed revisions to the capital accord . in this exclusive article , penny cagan of zurich financial services explains what the basle accord proposals mean for most banks , where there ' s room for improvement and how to get started on building an operational risk framework iconference archive couldn ' t make it to our iconference on risk transfer , featuring martin nance of aig structured products and barry finkelstein , joe parsons and chris crevier of merrill lynch ? check out the iconference archive later this week to find out what you missed . still available : the proceedings of our two recent basle iconferences , featuring bill treacy of the federal reserve board , ashish dev of key bank and andy hickman of erisk events calendar feeling the need to network ? check out our comprehensive listing of risk management events around the world in the events calendar the erisk essentials is published every friday by erisk . com . to subscribe to this newsletter , please register on our website . to unsubscribe , access your account . your username is the email address where you received this message . to be reminded of your password , or to reset it , follow this link .",0 +"Subject: parking at 777 clay hi louis : we will have several employees from the london office coming to houston this summer ( they will be rotating ) beginning 7 / 31 / 00 . can we get a parking space at 777 clay for them ? we only need one for 7 / 31 / 00 - 11 / 30 / 00 ( 4 months ) . the other alternative would be the stickers for allen center . do you still have them ? please let me know . thanks ! shirley crenshaw",0 +"Subject: garp 2001 convention dear garp 2001 speaker ? the program for the garp 2001 convention is nearly printed and i will be sending you a few copies of the program in the next few days . in the meantime , you can find the program on our web site at www . garp . com ? in addition , i am writing to inquire whether your organisation can establish a web link to our program through your organisations ' web site . below is the information that is of most importance and that i would like included : ? garp 2001 - 2 nd annual risk ? management convention & exhibition , february 12 th to 15 th february , 2001 , ? new york . for full program details please visit www . garp . com or contact garp on tel . + 44 ( 0 ) 20 ? 7626 9300 . of course , you could highlight your participation at this event , which will include a two - day convention with pre and post convention workshops and an asset management forum that will include over 80 senior financial and risk management professionals . i have also attached a small logo that could be used as a link to the garp web site . can i please have the web address should you , or your colleagues manage to establish a web link to the convention . if you also feel that there are any important web sites that this convention should be posted on , then i would appreciate it if you could pass on this information . ? just to keep you informed , already , within a week of the web site going ' live ' , there have been about a dozen bookings and numerous inquiries . this is a very good sign that garp 2001 will be a great success and will out - do garp 2000 . ? of course , if you have any questions or queries , please do not hesitate to contact me . i thank you in advance for your co - operation and i look forward to meeting you in new york in february . ? kind regards ? andreas _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ andreas simou garp 2001 - conference producer tel ? + 44 ( 0 ) 20 7626 9301 fax + 44 ( 0 ) 20 7626 9900 - garp 2001 . gif",0 +"Subject: good afternoon christie , i wanted to update you on my schedule for december as you are working to arrange some time for vince and i to visit with the enron leadership group . we had talked about the first week in december and that is good for me through wednesday dec 6 th . i will be at a conference at harvard on the 7 th and 8 th . however , the next couple of weeks are also possibilities if we can squeeze in some time . thanks john john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: russian investment climate : multimedia playback - cera multimedia cera multimedia : sent thu , august 17 , 2000 title : russian investment climate : multimedia playback author : eurasia energy e - mail category : multimedia product line : eurasia energy , url : http : / / www . cera . com / cfm / track / eprofile . cfm ? u = 5166 & m = 1317 , alternate url : in an august 10 , 2000 , cera multimedia conference call and web presentation , thane gustafson , cera director , eurasia energy , john webb , cera associate , and carolyn miles , cera associate , discuss : russian investment climate : toward stability or fresh turmoil ? implications for the energy sector * the russian investment climate under putin : where is it headed ? * the booming russian economy : how much energy and energy investment will it need ? * the russian oil industry awash in profits : what is it doing with them ? to view and listen to a replay of this presentation , please click on the link above . account changes to edit your personal account information , including your e - mail address , etc . go to : http : / / eprofile . cera . com / cfm / edit / account . cfm this electronic message and attachments , if any , contain information from cambridge energy research associates , inc . ( cera ) which is confidential and may be privileged . unauthorized disclosure , copying , distribution or use of the contents of this message or any attachments , in whole or in part , is strictly prohibited . terms of use : http : / / www . cera . com / tos . html questions / comments : webmaster @ cera . com copyright 2000 . cambridge energy research associates",0 +"Subject: re : denise , no problem . we shall prepare a short presentation to address these issues . vince kaminski denise furey @ ees 01 / 09 / 2001 11 : 12 am to : vince j kaminski / hou / ect @ ect cc : subject : i hope you have seen the email below . do you have any problem with what jeremy has asked you or your group to address . is there anything that you want us to supply to you to assist you ? - - - - - - - - - - - - - - - - - - - - - - forwarded by denise furey / hou / ees on 01 / 09 / 2001 11 : 11 am - - - - - - - - - - - - - - - - - - - - - - - - - - - denise furey 01 / 08 / 2001 11 : 46 am to : gayle w muench / hou / ees @ ees , michael tribolet / corp / enron @ enron , william s bradford / hou / ect @ ect , vince j kaminski / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect cc : don black / hou / ees @ ees , tony spruiell / hou / ees @ ees subject : i believe all of you received a request from jeremy blachman to hold the afternoon of january 10 th open for an off - site to discuss the manner in which rac and research assess / test the credit quality of ees transactions . i realize that rac and ees have had many discussions as to the methodology , but it might be helpful for all of us to understand the actual derivation of some of analysis . please call me with any questions or comments at ext # 30349 . the agenda will be as follows : 12 : 00 - 1 : 00 lunch 1 : 00 - 3 : 30 presentations 3 : 30 - to close discussion rac / research presentations the following topics would be of interest to ees : 1 - the derivation of default probabilities including ( research ) - - a discussion of the actual mathematical process , - - the analytics behind why these computations are deemed the best for enron , - - a comparison to historic default rates and why they differ ( in respect to actual default rates , shape of the cumulative default curves etc . 2 - the volatilities which are used to determine possible loss scenarios for the commodity portion of ees deals including ( research ) - - the selection of curves - - the application of those curves to the actual credit reserve model and - - why these particular tests are applicable to our products . 3 - the recovery rates used in the credit reserve model . how are these figures derived ? ( rac ) 4 - how rac and research have adjusted the credit reserve model to accommodate unusual aspects of the deal including ( rac ) - - promotion payments , - - accounts receivable - - committed capital - - and other factors ees also understands that some of you may be familiar with our processes , however , there are perhaps areas that you would like to understand more fully . please tell us what you would like to hear from us . also , rac has sent us the credit reserve model and i have seen completed models . perhaps prior to our meeting on wednesday , someone from rac and / or research could sit with me and someone from phil layton ' s group and go through the process of how the various pieces are put together .",0 +"Subject: short term private firm model : static historical snapshot + performance data for model development mike , scott , eric , after brainstorming and discussing further on data here , we think that our final specifications for modelling data requirement need to be as follows : we need bankrupt , default and nondefault ( which covers nonbankrupt ) accounts with 4 quarterly observation snapshots and 12 months performance following the latest snapshot . monthly performance indicator need to be available for the entire 12 months performance period . we will need all the bankrupt and default accounts and comparable sample of good accounts with weights . for the purpose of model validation , we will need data with above specs covering 16 months of performance . this means that we will need rolling ( 4 quarterly snapshots + 12 months performance ) data for 4 monthly shifts : input snapshots performance 1999 march end , 1999 june end , 1999 september end , 1999 december end 12 month end performance for jan 2000 through dec 2000 1999 feb end , 1999 may end , 1999 august end , 1999 november end 12 month end performance for dec 1999 through nov 2000 1999 jan end , 1999 apr end , 1999 july end , 1999 october end 12 month end performance for nov 1999 through oct 2000 1998 december end , 1999 mar end , 1999 june end , 1999 september end 12 month end performance for oct 1999 through sep 2000 we will need bankruptcy chapterwise indicator , if available during the performance period . our definition of default is either bankruptcy or 90 + days delinquency on any trade credit . we have also discussed the cost aspect and we think considering the big picture , it makes sense to spend the extra amount to get the right data for analysis . please let me know your thoughts . this will require d & b to give us a modified quote and we could possibly move forward quickly . regards , amitava",0 +"Subject: re : christmas basket list here is the updated list that we have for christmas . the orders will be placed on dec . 12 th . the orders will arrive at the enron building dec . 19 th . and all outside orders will arrive before dec . 22 nd . please inform , if this is okay . thanks kevin moore i will discuss cost with vince after meeting with bill on friday . kevin g moore 12 / 01 / 2000 09 : 26 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron cc : subject : christmas basket list hello everyone , we are nearing the time to get the baskets and other christmas tokens sent out . as in every year , we do take the time to send tokens of appreciation for services rendered , or share the christmas sprit with those we feel worthty . here is the list that i have already , approved by vince . if there are any additions please inform me a . s . a . p . the deadline is december 12 th , as i will be meeting with the owner of floral events to confirm the order and treat him to lunch for all the great work he has provided for me . thanks kevin moore please note : i will be out on vacation and all orders will already have been placed with the delivery date on december 19 th . the day of my return , therefore if any problems occur i will have enough time to solve them .",0 +"Subject: stanford mba recruiting greg , this is the agenda for the recruiting trip to stanford next week . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 08 / 2001 11 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - althea gordon @ enron 03 / 07 / 2001 04 : 30 pm to : vince . kaminski @ enron . com , brad . romine @ enron . com , brad . alford @ enron . com , martin . lin @ enron . com , theresa _ riedman @ enron . net , matt _ harris @ enron . net , michael . smythe @ enron . net , benjamin . bell @ enron . com , mauricio . mora @ enron . com , celeste . roberts @ enron . com cc : shirley . crenshaw @ enron . com , paula . austin @ enron . com , dolores . muzzy @ enron . com , cathy . lira @ enron . com , patricia . payton @ enron . com subject : stanford mba recruiting thank you for agreeing to participate in the associate program ' s recruiting efforts at stanford graduate school of business . the itinerary for the trip is as follows : wednesday , march 14 , 7 : 00 p . m . to 9 : 00 p . m . dinner with students selected to interview il fornaio , the sala del canaletto room 520 cowper street , palo alto ( 650 ) 853 - 3888 thursday , march 15 , 8 : 30 a . m . to 4 : 45 p . m . round 1 interviews for both summer and full time associates stanford gsb career services center interviewers : theresa riedman brad romine brad alford martin lin michael smythe - to be confirmed benjamin bell - to be confirmed mauricio mora - greeter / alternate interviewer thursday , march 15 , 12 : 15 p . m . to 1 : 30 p . m . lunch with dean george parker ( associate dean of academics ) and sherrie taguchi ( director of career services ) . stanford gsb career services center we will be ordering lunch in . friday , march 16 , 8 : 00 a . m . to 12 : 00 p . m . * round 2 interviews for both summer and full time associates stanford gsb career services center interviewers : vince kaminski matthew harris * please note that this is an approximate time that will be based on the number of candidates who successfully pass round 1 interviews on thursday . your hotel information is as follows : stanford park hotel 100 el camino real menlo park ( 650 ) 322 - 1234 upon confirmation of your participation you will receive your hotel confirmation number . in the event that you have not received your hotel confirmation number please contact my assistant , cathy lira , at x 54049 . attire for the trip will be business casual . if you have any questions please feel free to give me a call at x 53860 . in case of emergency ( and during the trip itself ) i can be reached at ( 713 ) 416 - 6250 . thank you for your support of the program .",0 +"Subject: video conference scheduling in order to improve the video conferencing services offered to the enron community , the video conference group will be implementing the following procedural changes . these changes will be effective immediately . conference scheduling : please route all video conference requests via email to ' videoconference ' ( one word ) or by phone to 713 - 345 - 8500 ( x 5 - 8500 ) . once room reservations are complete , conferences will be scheduled and confirmation notices sent to the requestor via email . each requestor will receive a confirmation notice the business day preceding scheduled conferences . the following information will be required for all conference requests : requestor name and contact number sites to be included in the conference site contact names along with associated phone numbers date , time and duration of conference company number / rc or cost center of requestor preferred conference rooms ( near - end and far - end ) technical problems : should problems arise during a video conference , call 713 - 345 - 8555 and a technician will be immediately dispatched thanks in advance for your cooperation , video conferencing support",0 +"Subject: re : monte carlo techniques zimin , this is the course description i got from hal . can you follow up with him to schedule a date for a high level presentation ? i think we should keep it to only 90 minutes or so . maybe you and kevin kindall can be the presenters . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 11 / 2000 04 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - harold bertram 04 / 11 / 2000 08 : 38 am to : stinson gibner / hou / ect @ ect cc : subject : re : monte carlo techniques stinson , i feel i would benefit from understanding the monte carlo techniques and what it applies to , as well as when it is used these mc techniques . i think i could get several people interested . thanks , hal stinson gibner 04 / 10 / 2000 09 : 40 am to : harold bertram / hou / ect @ ect cc : subject : monte carlo techniques hal , actually , i am no longer scheduled to speak at the risk conference on m - c techniques . we could probably put together an internal training for you if you want . i ' ll bring this up with vince at our staff meeting tomorrow . it would be helpful if you can describe for me the intended audience and the types of applications that would interest them . thanks , - - stinson",0 +"Subject: new retail electricity provider survey as a result of recent deregulation in states such as pennsylvania and california , many new companies are entering the retail energy market . today , consumers in several states are able to choose their energy provider in much the same way they choose their long - distance phone company . a survey has been commissioned by the research group to better understand which factors are most important to consumers considering switching energy providers . the survey consists of 28 question , and can be found on the following website : if you , your spouse , or someone else in your family has time to take this survey , we would appreciate your input . feel free to forward this email to others . thanks for your time and consideration .",0 +"Subject: re : signature ' s kevin , i would like to see the expense reports to monitor the rate at which we approach our group budget limits . thanks . vince kevin g moore 02 / 22 / 2000 08 : 48 am to : vince j kaminski / hou / ect @ ect , mike a roberts / hou / ect @ ect , shirley crenshaw / hou / ect @ ect cc : subject : signature ' s hello everyone , starting today , 2 / 22 / 00 mike roberts signed a expense report . vince , i need to know from you if this is okay and do you want to see them ? also shirley , if mike signs for anything else other than a expense report , i will pass it by your desk whereby you can know exactly what it is . thanks kevin moore please inform . . . . . . . .",0 +"Subject: re : "" energy derivatives "" frank : i discussed this with vince kaminski and he said that , while we would be glad to assist you , the time involved in ordering and collecting the money ( they are pretty expensive ) , distributing the books , etc . would be too time consuming for us at this time . you can go to www . lacimagroup . com and order the books directly . tell them you are ordering the books for use at enron and they should give you a 15 % discount . i am sorry that we cannot do this at this time . regards , shirley crenshaw administrative assistant enron research group 713 / 853 - 5290 "" frank ribeiro "" on 01 / 28 / 2001 09 : 50 : 44 am to : cc : subject : "" energy derivatives "" as we had discussed in our phone conversation friday , i would ask you to order six copies of the newly enron - published "" energy derivatives "" for paradigm strategy group . we do the various derivatives training courses for enron , and this book will be required reading for all our instructors . please advise as to the total cost of the books . if payment by check is ok , please let me know to whom the check should be made payable . you can reach me by e - mail , or phone at 281 - 360 - 7822 . thanks for your help . frank ribeiro paradigm",0 +"Subject: re : ming sit vince , thanks for the update . if there is anything i can facilitate or bring more info about ming , please let me know . zimin vince j kaminski 05 / 22 / 2000 01 : 15 pm to : zimin lu / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : ming sit zimin , some feedback i have received on ming . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 22 / 2000 01 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - pinnamaneni krishnarao 05 / 22 / 2000 12 : 35 pm to : dennis benevides / hou / ees @ ees cc : vince j kaminski / hou / ect @ ect , ronnie chahal / hou / ees @ ees subject : re : ming sit dennis : i talked to ming for only short time and am concerned about the cons scott mentioned . i would like to know what your assessment is like . also , i would like vince , ronnie & myself to talk to ming over the phone . can we call him directly and talk to him ? please let me know how strongly you feel about having him as a support person . thanks , krishna . x 35485 to : pinnamaneni krishnarao / hou / ect @ ect cc : subject : re : ming sit krisna : are you still interested in hiring ming sit , through the research group . if so , please proceed and assign him to support ees . please let me know if i need to provide any information . thanks dennis - - - - - - - - - - - - - - - - - - - - - - forwarded by dennis benevides / hou / ees on 05 / 22 / 2000 09 : 43 am - - - - - - - - - - - - - - - - - - - - - - - - - - - james w lewis 05 / 21 / 2000 11 : 44 am to : dennis benevides / hou / ees @ ees cc : scott stoness / hou / ees @ ees subject : re : ming sit i like db ' s suggestion . let ' s do it . enron energy services from : dennis benevides 05 / 19 / 2000 03 : 31 pm phone no : 713 853 - 9609 to : scott stoness / hou / ees @ ees cc : james w lewis / hou / ees @ ees subject : re : ming sit got a little scared at your first sentence i read "" he is no replacement for jay but he could be for dennis b . . "" ? ? . anyway : i think he would be a good fit withing the group . krisna has offered to hire him in the research group , he has good programing background and is excited about working for enron instead of a utility such as pacificcorp . he expressed interest in applying his skill to make $ $ $ $ . i suggest bringing him in in research as a first alternative . i see three potential applications where we can use his skills to evaluate best longer term fit : continuing ronnie ' s model building role , but with a focus within neil ' s group to tie rm systems together bridge the lack of phd econometrics expertise we have as are result of the departure of anoush . risk management systems infrastructure development . scott stoness 05 / 19 / 2000 02 : 02 pm to : james w lewis / hou / ees @ ees cc : dennis benevides / hou / ees @ ees subject : ming sit he is no replacement for jay but he could be a dennis b employee . pros : engineer so would be good at math his boss hired him a 2 nd time ( 1 at txu and again at pacificor again ) so he must be reliable phd in economics and engineering ( good ) from stanford ( ugh : ) : ) : ) ) cons : does not understand tariffs . i asked him and he said he is not experienced . i probed too and he does not understand regulatory that well . does not understand ancillary services ( which is surprising to me since he started out as an plant operation side of hk power ) has limited people management skills ( he described 1 analyst he works with that is not capable that he has to jump into the excel spreadsheet and fix it for him and he cannot give him feedback because it is a utility mentality ) he is not a good communicator ( i asked him to describe what he did in hk power and it took him forever to explain because he expected me to know that plant operations meant planning the start up of oil plants ) . overall : i suspect that he is a very solid guy when it comes to analysis but not particularly creative or good at communication and leadership . he would be a great support person . i would hire for analysis but not as a potential leader . go",0 +"Subject: re : hello shijie , thanks for your message . my assistant will call you to discuss the timing of the visit . vince shijie deng on 06 / 29 / 2000 12 : 00 : 37 am to : vkamins @ enron . com cc : subject : hello hi vince , how are you . it was really a pleasure meeting you and talking to you at the toronto energy derivative conference . thank you for speaking with me about the possibility of visiting your research group . it will be great if i could have such opportunity whenever you see your schedule fits . i am very much open for the last week of july and early august . i ' m looking forward to hearing from you soon . best , shijie shi - jie deng assistant professor school of isye georgia institute of technology office phone : ( 404 ) 894 - 6519 e - mail : deng @ isye . gatech . edu home page : http : / / www . isye . gatech . edu / ~ deng",0 +"Subject: re : order for book julie , the discount is fine . look fwd to receiving the books . vince "" julie "" on 01 / 08 / 2001 09 : 30 : 53 pm please respond to "" julie "" to : "" vincejkaminski "" cc : subject : order for book vince , ? i can offer you 12 . 5 % off of your order for 50 books ( we originally spoke to habiba about setting up a 50 % discount ? but enron would have to order a minimum of 200 books . ? ? since the ? change over , nothing has been set up on this ) . ? ? let me know if i should go ahead with the invoice . ? thanks , julie",0 +"Subject: re : thanks thanks for the update , vince . i have been trying to discuss this with you for several days , but i know that you have been very busy . jaesoo told me that he wanted a base of $ 90 k rather than the $ 85 k which you had authorized me to offer him , and i told him that i would have to discuss it with you and get back to him . i am glad that he has seen his way a little more clearly , and i will call him tomorrow to finalize the offer . vince j kaminski 11 / 07 / 2000 05 : 29 pm to : molly magee / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : thanks fyi vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 11 / 07 / 2000 05 : 36 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jlew @ kent . edu > on 11 / 07 / 2000 07 : 19 : 20 am to : vince . j . kaminski @ enron . com cc : jlew @ kent . edu subject : thanks dear dr . kaminski first of all , i would like to thank you for the offer from the enron . i really appreciate it . molly and i talked about the salary the other day , but to be honest with you , i ' m pleased with the possibility that i can work there where i want to work and the salary is the next . if this matter bothers you , please ignore it . i can accept the original offer . i ' m looking forward to seeing you soon . sincerely , jaesoo",0 +"Subject: pdo index update - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 08 / 09 / 2000 03 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - nathan mantua on 08 / 09 / 2000 03 : 10 : 00 pm to : undisclosed - recipients : ; cc : ( bcc : mike a roberts / hou / ect ) subject : pdo index update pdo index values are now updated through july 2000 . note that the january and february 2000 values have changed a bit from the last update , and this is due to changes in the reynolds optimally interpolated sst data from which this pdo index is calculated . my next update will be in november . year jan feb mar apr may jun jul 2000 - 1 . 99 - 0 . 82 0 . 29 0 . 35 - 0 . 05 - 0 . 43 - 0 . 66 the full data series is available via the web at url : best wishes , nate mantua pdo index updated standardized values for the pdo index , derived as the leading pc of monthly sst anomalies in the north pacific ocean , poleward of 20 n . the monthly mean global average sst anomalies are removed to separate this pattern of variability from any "" global warming "" signal that may be present in the data . for more details , see : zhang , y . , j . m . wallace , d . s . battisti , 1997 : enso - like interdecadal variability : 1900 - 93 . j . climate , 10 , 1004 - 1020 . mantua , n . j . and s . r . hare , y . zhang , j . m . wallace , and r . c . francis , 1997 : a pacific interdecadal climate oscillation with impacts on salmon production . bulletin of the american meteorological society , 78 , pp . 1069 - 1079 . ( available via the internet at url : data sources for this index are : ukmo historical sst data set for 1900 - 81 ; reynold ' s optimally interpolated sst for january 1982 - latest missing value flag is - 9999 year jan feb mar apr may jun jul aug sep oct nov dec 1900 0 . 04 1 . 32 0 . 49 0 . 35 0 . 77 0 . 65 0 . 95 0 . 14 - 0 . 24 0 . 23 - 0 . 44 1 . 19 1901 0 . 79 - 0 . 12 0 . 35 0 . 61 - 0 . 42 - 0 . 05 - 0 . 60 - 1 . 20 - 0 . 33 0 . 16 - 0 . 60 - 0 . 14 1902 0 . 82 1 . 58 0 . 48 1 . 37 1 . 09 0 . 52 1 . 58 1 . 57 0 . 44 0 . 70 0 . 16 - 1 . 10 1903 0 . 86 - 0 . 24 - 0 . 22 - 0 . 50 0 . 43 0 . 23 0 . 40 1 . 01 - 0 . 24 0 . 18 0 . 08 - 0 . 03 1904 0 . 63 - 0 . 91 - 0 . 71 - 0 . 07 - 0 . 22 - 1 . 53 - 1 . 58 - 0 . 64 0 . 06 0 . 43 1 . 45 0 . 06 1905 0 . 73 0 . 91 1 . 31 1 . 59 - 0 . 07 0 . 69 0 . 85 1 . 26 - 0 . 03 - 0 . 15 1 . 11 - 0 . 50 1906 0 . 92 1 . 18 0 . 83 0 . 74 0 . 44 1 . 24 0 . 09 - 0 . 53 - 0 . 31 0 . 08 1 . 69 - 0 . 54 1907 - 0 . 30 - 0 . 32 - 0 . 19 - 0 . 16 0 . 16 0 . 57 0 . 63 - 0 . 96 - 0 . 23 0 . 84 0 . 66 0 . 72 1908 1 . 36 1 . 02 0 . 67 0 . 23 0 . 23 0 . 41 0 . 60 - 1 . 04 - 0 . 16 - 0 . 41 0 . 47 1 . 16 1909 0 . 23 1 . 01 0 . 54 0 . 24 - 0 . 39 - 0 . 64 - 0 . 39 - 0 . 68 - 0 . 89 - 0 . 02 - 0 . 40 - 0 . 01 1910 - 0 . 25 - 0 . 70 0 . 18 - 0 . 37 - 0 . 06 - 0 . 28 0 . 03 - 0 . 06 0 . 40 - 0 . 66 0 . 02 0 . 84 1911 - 1 . 11 0 . 00 - 0 . 78 - 0 . 73 0 . 17 0 . 02 0 . 48 0 . 43 0 . 29 0 . 20 - 0 . 86 0 . 01 1912 - 1 . 72 - 0 . 23 - 0 . 04 - 0 . 38 - 0 . 02 0 . 77 1 . 07 - 0 . 84 0 . 94 0 . 56 0 . 74 0 . 98 1913 - 0 . 03 0 . 34 0 . 06 - 0 . 92 0 . 66 1 . 43 1 . 06 1 . 29 0 . 73 0 . 62 0 . 75 0 . 90 1914 0 . 34 - 0 . 29 0 . 08 1 . 20 0 . 11 0 . 11 - 0 . 21 0 . 11 - 0 . 34 - 0 . 11 0 . 03 0 . 89 1915 - 0 . 41 0 . 14 - 1 . 22 1 . 40 0 . 32 0 . 99 1 . 07 0 . 27 - 0 . 05 - 0 . 43 - 0 . 12 0 . 17 1916 - 0 . 64 - 0 . 19 - 0 . 11 0 . 35 0 . 42 - 0 . 82 - 0 . 78 - 0 . 73 - 0 . 77 - 0 . 22 - 0 . 68 - 1 . 94 1917 - 0 . 79 - 0 . 84 - 0 . 71 - 0 . 34 0 . 82 - 0 . 03 0 . 10 - 0 . 22 - 0 . 40 - 1 . 75 - 0 . 34 - 0 . 60 1918 - 1 . 13 - 0 . 66 - 1 . 15 - 0 . 32 - 0 . 33 0 . 07 0 . 98 - 0 . 31 - 0 . 59 0 . 61 0 . 34 0 . 86 1919 - 1 . 07 1 . 31 - 0 . 50 0 . 08 0 . 17 - 0 . 71 - 0 . 47 0 . 38 0 . 06 - 0 . 42 - 0 . 80 0 . 76 1920 - 1 . 18 0 . 06 - 0 . 78 - 1 . 29 - 0 . 97 - 1 . 30 - 0 . 90 - 2 . 21 - 1 . 28 - 1 . 06 - 0 . 26 0 . 29 1921 - 0 . 66 - 0 . 61 - 0 . 01 - 0 . 93 - 0 . 42 0 . 40 - 0 . 58 - 0 . 69 - 0 . 78 - 0 . 23 1 . 92 1 . 42 1922 1 . 05 - 0 . 85 0 . 08 0 . 43 - 0 . 19 - 1 . 04 - 0 . 82 - 0 . 93 - 0 . 81 0 . 84 - 0 . 60 0 . 48 1923 0 . 75 - 0 . 04 0 . 49 0 . 99 - 0 . 20 0 . 68 1 . 16 0 . 84 - 0 . 24 1 . 10 0 . 62 - 0 . 36 1924 1 . 29 0 . 73 1 . 13 - 0 . 02 0 . 36 0 . 75 - 0 . 55 - 0 . 67 - 0 . 48 - 1 . 25 0 . 24 0 . 11 1925 - 0 . 05 - 0 . 14 0 . 20 0 . 86 0 . 79 - 1 . 08 - 0 . 06 - 0 . 86 0 . 52 0 . 04 0 . 88 1 . 19 1926 0 . 30 0 . 98 - 0 . 50 2 . 10 1 . 43 2 . 03 1 . 05 1 . 64 1 . 18 1 . 65 1 . 00 1 . 06 1927 1 . 07 1 . 73 0 . 15 - 0 . 18 0 . 30 0 . 69 - 0 . 31 - 0 . 73 - 0 . 41 - 0 . 62 - 0 . 07 0 . 07 1928 0 . 96 0 . 79 0 . 52 0 . 81 0 . 66 0 . 15 0 . 30 - 0 . 72 - 1 . 41 - 1 . 31 0 . 14 0 . 98 1929 0 . 97 0 . 52 0 . 50 0 . 55 1 . 07 0 . 50 - 0 . 06 - 0 . 69 0 . 45 - 0 . 21 1 . 24 - 0 . 03 1930 0 . 97 - 1 . 06 - 0 . 43 - 0 . 70 0 . 06 0 . 58 - 0 . 45 - 0 . 53 - 0 . 20 - 0 . 38 - 0 . 31 1 . 20 1931 0 . 08 1 . 56 1 . 13 1 . 28 1 . 66 0 . 39 1 . 49 0 . 02 - 0 . 01 - 0 . 17 0 . 34 1 . 09 1932 - 0 . 26 - 0 . 58 0 . 51 1 . 15 0 . 64 0 . 10 - 0 . 12 - 0 . 14 - 0 . 40 - 0 . 29 - 0 . 88 0 . 02 1933 0 . 29 0 . 02 0 . 15 - 0 . 05 - 0 . 50 - 0 . 68 - 1 . 81 - 1 . 56 - 2 . 28 - 1 . 19 0 . 55 - 1 . 10 1934 0 . 17 0 . 68 1 . 34 1 . 63 1 . 23 0 . 51 0 . 44 1 . 54 1 . 25 2 . 10 1 . 63 1 . 67 1935 1 . 01 0 . 79 - 0 . 11 1 . 10 0 . 99 1 . 39 0 . 68 0 . 63 0 . 98 0 . 21 0 . 13 1 . 78 1936 1 . 79 1 . 75 1 . 36 1 . 32 1 . 83 2 . 37 2 . 57 1 . 71 0 . 04 2 . 10 2 . 65 1 . 28 1937 0 . 00 - 0 . 49 0 . 38 0 . 20 0 . 53 1 . 75 0 . 11 - 0 . 35 0 . 63 0 . 76 - 0 . 18 0 . 55 1938 0 . 50 0 . 02 0 . 24 0 . 27 - 0 . 25 - 0 . 20 - 0 . 21 - 0 . 45 - 0 . 01 0 . 07 0 . 48 1 . 40 1939 1 . 36 0 . 07 - 0 . 39 0 . 45 0 . 98 1 . 04 - 0 . 21 - 0 . 74 - 1 . 10 - 1 . 31 - 0 . 88 1 . 51 1940 2 . 03 1 . 74 1 . 89 2 . 37 2 . 32 2 . 43 2 . 12 1 . 40 1 . 10 1 . 19 0 . 68 1 . 96 1941 2 . 14 2 . 07 2 . 41 1 . 89 2 . 25 3 . 01 2 . 33 3 . 31 1 . 99 1 . 22 0 . 40 0 . 91 1942 1 . 01 0 . 79 0 . 29 0 . 79 0 . 84 1 . 19 0 . 12 0 . 44 0 . 68 0 . 54 - 0 . 10 - 1 . 00 1943 - 0 . 18 0 . 02 0 . 26 1 . 08 0 . 43 0 . 68 - 0 . 36 - 0 . 90 - 0 . 49 - 0 . 04 0 . 29 0 . 58 1944 0 . 18 0 . 17 0 . 08 0 . 72 - 0 . 35 - 0 . 98 - 0 . 40 - 0 . 51 - 0 . 56 - 0 . 40 0 . 33 0 . 20 1945 - 1 . 02 0 . 72 - 0 . 42 - 0 . 40 - 0 . 07 0 . 56 1 . 02 0 . 18 - 0 . 27 0 . 10 - 1 . 94 - 0 . 74 1946 - 0 . 91 - 0 . 32 - 0 . 41 - 0 . 78 0 . 50 - 0 . 86 - 0 . 84 - 0 . 36 - 0 . 22 - 0 . 36 - 1 . 48 - 0 . 96 1947 - 0 . 73 - 0 . 29 1 . 17 0 . 70 0 . 37 1 . 36 0 . 16 0 . 30 0 . 58 0 . 85 - 0 . 14 1 . 67 1948 - 0 . 11 - 0 . 74 - 0 . 03 - 1 . 33 - 0 . 23 0 . 08 - 0 . 92 - 1 . 56 - 1 . 74 - 1 . 32 - 0 . 89 - 1 . 70 1949 - 2 . 01 - 3 . 60 - 1 . 00 - 0 . 53 - 1 . 07 - 0 . 70 - 0 . 56 - 1 . 30 - 0 . 93 - 1 . 41 - 0 . 83 - 0 . 80 1950 - 2 . 13 - 2 . 91 - 1 . 13 - 1 . 20 - 2 . 23 - 1 . 77 - 2 . 93 - 0 . 70 - 2 . 14 - 1 . 36 - 2 . 46 - 0 . 76 1951 - 1 . 54 - 1 . 06 - 1 . 90 - 0 . 36 - 0 . 25 - 1 . 09 0 . 70 - 1 . 37 - 0 . 08 - 0 . 32 - 0 . 28 - 1 . 68 1952 - 2 . 01 - 0 . 46 - 0 . 63 - 1 . 05 - 1 . 00 - 1 . 43 - 1 . 25 - 0 . 60 - 0 . 89 - 0 . 35 - 0 . 76 0 . 04 1953 - 0 . 57 - 0 . 07 - 1 . 12 0 . 05 0 . 43 0 . 29 0 . 74 0 . 05 - 0 . 63 - 1 . 09 - 0 . 03 0 . 07 1954 - 1 . 32 - 1 . 61 - 0 . 52 - 1 . 33 0 . 01 0 . 97 0 . 43 0 . 08 - 0 . 94 0 . 52 0 . 72 - 0 . 50 1955 0 . 20 - 1 . 52 - 1 . 26 - 1 . 97 - 1 . 21 - 2 . 44 - 2 . 35 - 2 . 25 - 1 . 95 - 2 . 80 - 3 . 08 - 2 . 75 1956 - 2 . 48 - 2 . 74 - 2 . 56 - 2 . 17 - 1 . 41 - 1 . 70 - 1 . 03 - 1 . 16 - 0 . 71 - 2 . 30 - 2 . 11 - 1 . 28 1957 - 1 . 82 - 0 . 68 0 . 03 - 0 . 58 0 . 57 1 . 76 0 . 72 0 . 51 1 . 59 1 . 50 - 0 . 32 - 0 . 55 1958 0 . 25 0 . 62 0 . 25 1 . 06 1 . 28 1 . 33 0 . 89 1 . 06 0 . 29 0 . 01 - 0 . 18 0 . 86 1959 0 . 69 - 0 . 43 - 0 . 95 - 0 . 02 0 . 23 0 . 44 - 0 . 50 - 0 . 62 - 0 . 85 0 . 52 1 . 11 0 . 06 1960 0 . 30 0 . 52 - 0 . 21 0 . 09 0 . 91 0 . 64 - 0 . 27 - 0 . 38 - 0 . 94 0 . 09 - 0 . 23 0 . 17 1961 1 . 18 0 . 43 0 . 09 0 . 34 - 0 . 06 - 0 . 61 - 1 . 22 - 1 . 13 - 2 . 01 - 2 . 28 - 1 . 85 - 2 . 69 1962 - 1 . 29 - 1 . 15 - 1 . 42 - 0 . 80 - 1 . 22 - 1 . 62 - 1 . 46 - 0 . 48 - 1 . 58 - 1 . 55 - 0 . 37 - 0 . 96 1963 - 0 . 33 - 0 . 16 - 0 . 54 - 0 . 41 - 0 . 65 - 0 . 88 - 1 . 00 - 1 . 03 0 . 45 - 0 . 52 - 2 . 08 - 1 . 08 1964 0 . 01 - 0 . 21 - 0 . 87 - 1 . 03 - 1 . 91 - 0 . 32 - 0 . 51 - 1 . 03 - 0 . 68 - 0 . 37 - 0 . 80 - 1 . 52 1965 - 1 . 24 - 1 . 16 0 . 04 0 . 62 - 0 . 66 - 0 . 80 - 0 . 47 0 . 20 0 . 59 - 0 . 36 - 0 . 59 0 . 06 1966 - 0 . 82 - 0 . 03 - 1 . 29 0 . 06 - 0 . 53 0 . 16 0 . 26 - 0 . 35 - 0 . 33 - 1 . 17 - 1 . 15 - 0 . 32 1967 - 0 . 20 - 0 . 18 - 1 . 20 - 0 . 89 - 1 . 24 - 1 . 16 - 0 . 89 - 1 . 24 - 0 . 72 - 0 . 64 - 0 . 05 - 0 . 40 1968 - 0 . 95 - 0 . 40 - 0 . 31 - 1 . 03 - 0 . 53 - 0 . 35 0 . 53 0 . 19 0 . 06 - 0 . 34 - 0 . 44 - 1 . 27 1969 - 1 . 26 - 0 . 95 - 0 . 50 - 0 . 44 - 0 . 20 0 . 89 0 . 10 - 0 . 81 - 0 . 66 1 . 12 0 . 15 1 . 38 1970 0 . 61 0 . 43 1 . 33 0 . 43 - 0 . 49 0 . 06 - 0 . 68 - 1 . 63 - 1 . 67 - 1 . 39 - 0 . 80 - 0 . 97 1971 - 1 . 90 - 1 . 74 - 1 . 68 - 1 . 59 - 1 . 55 - 1 . 55 - 2 . 20 - 0 . 15 0 . 21 - 0 . 22 - 1 . 25 - 1 . 87 1972 - 1 . 99 - 1 . 83 - 2 . 09 - 1 . 65 - 1 . 57 - 1 . 87 - 0 . 83 0 . 25 0 . 17 0 . 11 0 . 57 - 0 . 33 1973 - 0 . 46 - 0 . 61 - 0 . 50 - 0 . 69 - 0 . 76 - 0 . 97 - 0 . 57 - 1 . 14 - 0 . 51 - 0 . 87 - 1 . 81 - 0 . 76 1974 - 1 . 22 - 1 . 65 - 0 . 90 - 0 . 52 - 0 . 28 - 0 . 31 - 0 . 08 0 . 27 0 . 44 - 0 . 10 0 . 43 - 0 . 12 1975 - 0 . 84 - 0 . 71 - 0 . 51 - 1 . 30 - 1 . 02 - 1 . 16 - 0 . 40 - 1 . 07 - 1 . 23 - 1 . 29 - 2 . 08 - 1 . 61 1976 - 1 . 14 - 1 . 85 - 0 . 96 - 0 . 89 - 0 . 68 - 0 . 67 0 . 61 1 . 28 0 . 82 1 . 11 1 . 25 1 . 22 1977 1 . 65 1 . 11 0 . 72 0 . 30 0 . 31 0 . 42 0 . 19 0 . 64 - 0 . 55 - 0 . 61 - 0 . 72 - 0 . 69 1978 0 . 34 1 . 45 1 . 34 1 . 29 0 . 90 0 . 15 - 1 . 24 - 0 . 56 - 0 . 44 0 . 10 - 0 . 07 - 0 . 43 1979 - 0 . 58 - 1 . 33 0 . 30 0 . 89 1 . 09 0 . 17 0 . 84 0 . 52 1 . 00 1 . 06 0 . 48 - 0 . 42 1980 - 0 . 11 1 . 32 1 . 09 1 . 49 1 . 20 - 0 . 22 0 . 23 0 . 51 0 . 10 1 . 35 0 . 37 - 0 . 10 1981 0 . 59 1 . 46 0 . 99 1 . 45 1 . 75 1 . 69 0 . 84 0 . 18 0 . 42 0 . 18 0 . 80 0 . 67 1982 0 . 34 0 . 20 0 . 19 - 0 . 19 - 0 . 58 - 0 . 78 0 . 58 0 . 39 0 . 84 0 . 37 - 0 . 25 0 . 26 1983 0 . 56 1 . 14 2 . 11 1 . 87 1 . 80 2 . 36 3 . 51 1 . 85 0 . 91 0 . 96 1 . 02 1 . 69 1984 1 . 50 1 . 21 1 . 77 1 . 52 1 . 30 0 . 18 - 0 . 18 - 0 . 03 0 . 67 0 . 58 0 . 71 0 . 82 1985 1 . 27 0 . 94 0 . 57 0 . 19 0 . 00 0 . 18 1 . 07 0 . 81 0 . 44 0 . 29 - 0 . 75 0 . 38 1986 1 . 12 1 . 61 2 . 18 1 . 55 1 . 16 0 . 89 1 . 38 0 . 22 0 . 22 1 . 00 1 . 77 1 . 77 1987 1 . 88 1 . 75 2 . 10 2 . 16 1 . 85 0 . 73 2 . 01 2 . 83 2 . 44 1 . 36 1 . 47 1 . 27 1988 0 . 93 1 . 24 1 . 42 0 . 94 1 . 20 0 . 74 0 . 64 0 . 19 - 0 . 37 - 0 . 10 - 0 . 02 - 0 . 43 1989 - 0 . 95 - 1 . 02 - 0 . 83 - 0 . 32 0 . 47 0 . 36 0 . 83 0 . 09 0 . 05 - 0 . 12 - 0 . 50 - 0 . 21 1990 - 0 . 30 - 0 . 65 - 0 . 62 0 . 27 0 . 44 0 . 44 0 . 27 0 . 11 0 . 38 - 0 . 69 - 1 . 69 - 2 . 23 1991 - 2 . 02 - 1 . 19 - 0 . 74 - 1 . 01 - 0 . 51 - 1 . 47 - 0 . 10 0 . 36 0 . 65 0 . 49 0 . 42 0 . 09 1992 0 . 05 0 . 31 0 . 67 0 . 75 1 . 54 1 . 26 1 . 90 1 . 44 0 . 83 0 . 93 0 . 93 0 . 53 1993 0 . 05 0 . 19 0 . 76 1 . 21 2 . 13 2 . 34 2 . 35 2 . 69 1 . 56 1 . 41 1 . 24 1 . 07 1994 1 . 21 0 . 59 0 . 80 1 . 05 1 . 23 0 . 46 0 . 06 - 0 . 79 - 1 . 36 - 1 . 32 - 1 . 96 - 1 . 79 1995 - 0 . 49 0 . 46 0 . 75 0 . 83 1 . 46 1 . 27 1 . 71 0 . 21 1 . 16 0 . 47 - 0 . 28 0 . 16 1996 0 . 59 0 . 75 1 . 01 1 . 46 2 . 18 1 . 10 0 . 77 - 0 . 14 0 . 24 - 0 . 33 0 . 09 - 0 . 03 1997 0 . 23 0 . 28 0 . 65 1 . 05 1 . 83 2 . 76 2 . 35 2 . 79 2 . 19 1 . 61 1 . 12 0 . 67 1998 0 . 83 1 . 56 2 . 01 1 . 27 0 . 70 0 . 40 - 0 . 04 - 0 . 22 - 1 . 21 - 1 . 39 - 0 . 52 - 0 . 44 1999 - 0 . 32 - 0 . 66 - 0 . 33 - 0 . 41 - 0 . 68 - 1 . 30 - 0 . 66 - 0 . 96 - 1 . 53 - 2 . 23 - 2 . 05 - 1 . 63 2000 * - 1 . 99 - 0 . 82 0 . 29 0 . 35 - 0 . 05 - 0 . 43 - 0 . 66 - 999 - 999 - 999 - 999 - 999 * note that monthly values in the last year of the data set are subject to minor changes due to updated values in the reynold ' s optimally interpolated sst data used in creating this index . url : ftp : / / ftp . atmos . washington . edu / mantua / pnw _ impacts / indices / pdo . latest if you have any questions about this time series , contact nathan mantua at : mantua @ atmos . washington . edu - pdo _ latest . gif",0 +"Subject: re : enron exotica options library patrick , please , contact zimin lu , 713 853 6388 . vince patrick markey 11 / 21 / 2000 05 : 15 am to : vince j kaminski / hou / ect @ ect cc : patrick markey / hou / ect @ ect subject : enron exotica options library vince , i am trying to price a crack spread option utilizing either of the following models in the exotica library : 1 . spread options by 1 - d integration - sprdopt 2 . spread options on asian spreads - asnsprd how do i get access to these options models ? who can i visit with in the houston group if i have any questions regarding the models . your help would be greatly appreciated . i am located in singapore , so i would probably be visiting with the houston personnel via e - mail . thanks , pat markey p . s . - i have access to the o : \ research \ exotica \ xll \ xll _ templates \ directory ; however , there are no macros associated with the programs that i can find . also , i don ' t have access to the m : drive . please let me know where to find these options models .",0 +"Subject: sr . director position vince : as you requested , i have obtained some information from norma relating to the salary parameters of the sr . director position . the minimum salary is $ 83 , 800 , and the maximum is $ 168 , 000 ( huge range , isn ' t it ? ) . however , norma did ask me to bring a couple of things to your attention : the lowest salary of a vp in your group is currently $ 140 , 000 , and the average director ' s salary in your group is $ 120 , 000 . those numbers narrow the range considerably . of course , there is no equity issue since there is no other senior director in your group . hope this information helps , molly",0 +"Subject: re : power question steve , elena chilkina can give you historical data . historical fwd curves can be obtained from paulo or alex , among others . of course , our internal forward curves represent a very sensitive information . vince steven leppard 10 / 13 / 2000 10 : 34 am to : vince j kaminski / hou / ect @ ect cc : didier magne / lon / ect @ ect subject : power question hi vince who should i contact for power queries now grant has gone ? a colleague here in london ( didier magne ) is giving a talk on power / gas arbitrage , and the consequent convergence of these markets . do you have any presentations on this area , or illustrative figures on the increase in power / gas correlation ? many thanks , steve",0 +"Subject: presentation george , this is the presentation i promised . vince",0 +"Subject: re : numbers for sharad agnihotri dale , to follow up on my earlier message . anjam expressed his concern that sharad is holding off on our offer . i would consider bumping it up to 55 , 000 with a sign - on bonus . we badly need fresh talent . i shall be in australia next week . if you need any additional intervention from us , please , call stinson . vince vince j kaminski 07 / 06 / 2000 08 : 56 am to : dale surbey / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : numbers for sharad agnihotri dale , i was very impressed with sharad and i think that we should consider paying offering him o 50 , 000 . i am not sure about guaranteed bonus . what do you think ? - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 07 / 06 / 2000 08 : 59 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . - europe from : anjam ahmad 07 / 05 / 2000 10 : 56 am to : dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect cc : kate bruges / lon / ect @ ect subject : numbers for sharad agnihotri hi dale ( i would also like to arrange for a direct reporting line to me for sharad . regards , anjam x 35383 p . s . kate : i have attached the agencies terms and conditions below : - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 05 / 07 / 2000 16 : 21 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : alex blair 05 / 07 / 2000 15 : 29 to : "" ' anjam ahmad ' "" cc : subject : numbers anjam , ? ? ? ? ? ? ? as requested please find enclosed details on sharad ' s numbers : ? ? ? ? ? ? ? basic salary : o 40 , 000 ? ? ? ? ? ? ? car allowance : o 3 , 500 ? ? ? ? ? ? ? ( paid in cash ) ? ? ? ? ? ? ? annual bonus : ol 3 , 000 ( this bonus was paid for ? ? ? ? ? ? ? 99 - 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 8 mths work april - dec ) total o 56 , 500 sharad has been informed that his bonus payments for year 00 - 01 will be floored at o 25 , 000 . ? sharad ' s expectations therefore are to receive a base salary of between o 57 . 5 - o 60 k plus bonus . i hope this is of use and ask that if you have any questions that you do not hesitate to call . alex blair senior consultant alex . blair @ alexmann . com tel : 0207 891 6671 fax : 0207 905 1313 web : "" the alexander mann group has a stated policy for the use of electronic mail which is rigorously enforced throughout the group . the contents of this e mail should meet the requirements of the policy - if you would like further details please forward this message to info @ alexmann . com or call 0207 242 9000 . the information contained in this electronic mail message is confidential . it is intended solely for the use of the individual or entity to whom it is addressed and others authorised to receive it . if the reader of this message is not the intended recipient , you are hereby notified that any use , copying , dissemination or disclosure of this information is strictly prohibited . """,0 +"Subject: re : replacement of stolen chairs fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 18 / 2000 01 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - reggie wilson 04 / 18 / 2000 12 : 57 pm to : kevin g moore / hou / ect @ ect cc : william smith / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect subject : re : replacement of stolen chairs kevin , if you guys had aerons ( mesh ) and / or vecta ( leather ) chairs , my group typically will not be responsible for the replacement of those chairs as i ' m not aware of who has taken the chairs or where they may have gone . my group does not stock these chairs , therefore we order as requested by business units and charge your co / rc . there will be two chairs delivered to the locations mentioned below , however , they will not be the vecta or aeron chairs . you may want to contact enron security and maybe they can investigate further . thanks , reggie kevin g moore 04 / 18 / 2000 10 : 54 am to : reggie wilson / epsc / hou / ect @ ect , william smith / corp / enron @ enron , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : replacement of stolen chairs hi reggie , we spoke regarding the chairs on monday . please , we need these chairs as soon as possible , without being charged . we paid for all new chairs each time we moved and it ' s not fair we pay again . thanks kevin moore p . s . these chairs were taken . . . . . . . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 04 / 18 / 2000 10 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : william smith @ enron 04 / 18 / 2000 10 : 00 am to : reggie wilson / epsc / hou / ect @ ect cc : shirley crenshaw / hou / ect @ ect , kevin g moore / hou / ect @ ect subject : replacement of stolen chairs reggie , there may already be a request floating around for a standard black office chair for ebl 972 d . it was stolen over a weekend several weeks ago . in addition to that one , my own chair at eb 3132 a was stolen this past weekend . could you come up with a couple of decent ones for us ? if you need to charge them to us , our numbers are 0011 and 100038 . as always , call me if you need to at x 58322 . thanks ! sam smith",0 +"Subject: the rising crisis in brazil ' s power sector - a cera conference ca ll cambridge energy research associates ( cera ) invites you to participate in a special conference call and web presentation to discuss "" the rising crisis in brazil ' s power sector "" on may 3 , 2001 at 9 : 30 am eastern time . this call will feature jed bailey , an associate director and specialist on latin america power issues and barbara l . mattos , cera associate director specializing in the industrial and energy markets of brazil . topics for this conference call and web presentation include : * could the short rain season result in shortage and rationing ? * what is the potential impact on the energy reform process ? * what is the potential impact on the economy ? format our speakers will address this topic for approximately 30 minutes , with accompanying graphics presented on the internet , followed by an open question and answer period . to enroll to enroll , please contact ms . donna masulla via e - mail at dmasulla @ cera . com before 4 : 00 p . m . , wednesday , may 2 , 2001 . please include your name , company , and telephone number with your correspondence . how to participate via audio netscape navigator 3 . 02 or higher ; or sun hot java ( tm ) * close all desktop applications and disable your screen saver to ensure computer compatibility , complete the internet instructions before the day of the call . a message will appear telling you that your meeting is not ready to start . however , it also informs you about any action that you may need to take to prepare your computer to participate . technical assistance u . s . callers : ? if you are experiencing difficulties during the call , you may signal for technical assistance by pressing * 0 ( star , zero ) on your telephone keypad after you have connected to the audio portion of the conference . international callers : ? please re - dial and ask the operator for assistance before giving the confirmation code . cera ' s spring 2001 roundtable event dates and agendas are now available at http : / / www 20 . cera . com / event our relationship with you is very important to us . ? if you wish not to receive e - mail notifications from cera , please send a reply to this message with "" donotemail "" as the subject of your message . ( mailto : info @ cera . com ? subject = donotemail ) ",0 +"Subject: term paper vince , ? attached is our team ' s term paper in pdf format . ? please let us know if you still problem opening the file . thank you very much . ? best regards , winny so ? rice university jesse h . jones graduate school of management mba candidate , class of 2001 ? 2018 richland court sugar land , tx 77478 home : ? ? ( 281 ) 265 - 3522 mobile : ? ( 281 ) 989 - 8417 e - mail : ? so @ rice . edu > http : / / www . ruf . rice . edu / ~ so / ? - modeling project . pdf",0 +"Subject: candidate : howard information vince - i spoke with london just now . here is what i gather vuthy said about howard haughton . 1 . he wants a second - round ( another interview with enron ) - but , with high officials ( senior management , this time ) . 2 . he didn ' t think the interviewers were understanding his technical abilities and language . good news : he ( howard ) wants to come back for another interview . i was lead to believe it went well although , howard believes in protocol . bad news : howard in on vacation now for 10 days . sounds fairly good on the candidate debrief . thanks , vince . jeff 949 813 2241 * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: re : mission impossible - hr associate groups recommendation and next steps kay - friday is ok up to 4 : 00 pm for me . ted from : kay chapman 10 / 13 / 2000 12 : 52 pm to : tana cashion / na / enron @ enron cc : daniel brown / na / enron @ enron , gerry gibson / corp / enron @ enron , andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , tim o ' rourke / corp / enron @ enron , ted c bland / hou / ect @ ect , tana cashion / na / enron @ enron , cindy olson / corp / enron @ enron , vince j kaminski / hou / ect @ ect , kay chapman / hou / ect @ ect , sarah a davis / hou / ect @ ect , marla barnard / enron communications @ enron communications , pam butler / hr / corp / enron @ enron , michelle cash / hou / ect @ ect , brian schaffer / corp / enron @ enron , suzanne brown / hou / ect @ ect , robert jones / corp / enron @ enron , neil davies / corp / enron @ enron subject : re : mission impossible - hr associate groups recommendation and next steps how does next friday october 20 , 2000 , look for everyone ? ? ? i have morning and afternoon available . i even have a 10 : 00 am if you just want to move the date and not the time . kay tana cashion @ enron 10 / 12 / 2000 02 : 28 pm to : kay chapman / hou / ect @ ect cc : daniel brown / na / enron @ enron , gerry gibson / corp / enron @ enron subject : re : mission impossible - hr associate groups recommendation and next steps what is the first availbale day that david can be at the meeting ? let ' s try to schedule a time that day . thanks - tana enron north america corp . from : kay chapman @ ect 10 / 12 / 2000 02 : 24 pm to : andrea yowman / corp / enron @ enron , bob sparger / corp / enron @ enron , tim o ' rourke / corp / enron @ enron , ted c bland / hou / ect @ ect , daniel brown / na / enron @ enron , tana cashion / na / enron @ enron , rhonna palmer / hou / ect @ ect , cindy olson / corp / enron @ enron , vince j kaminski / hou / ect @ ect , kay chapman / hou / ect @ ect , sarah a davis / hou / ect @ ect , marla barnard / enron communications @ enron communications , pam butler / hr / corp / enron @ enron , michelle cash / hou / ect @ ect , brian schaffer / corp / enron @ enron , suzanne brown / hou / ect @ ect , robert jones / corp / enron @ enron , neil davies / corp / enron @ enron , gerry gibson / corp / enron @ enron cc : subject : mission impossible - hr associate groups recommendation and next steps the monday october 16 , 2000 meeting at 10 : 00 am needs to be moved again . sorry for the inconvenience , but david oxley is going to be traveling . . thanks , kay",0 +"Subject: fund raising for mit sloan school dear vince , please find the following description of the program that i would like to raise additional funding for . i will follow up today with a phone call to answer any questions you may have . as always we appreciate your time and support . thanks , jozef the eastern european students at mit sloan school of management are preparing an eastern european week to be held in march 2001 . the one - week long program will familiarize our classmates with many of the countries that are going through the post communist transformation . as you well know , eastern europe has a great deal of opportunities for many companies . unfortunately , it also presents many obstacles that make most of the opportunities difficult to capture . because we believe that we can help to eliminate some of these obstacles , we want to bring the eastern european experience to mit sloan school of management . familiarizing the future business leaders with the countries is only one step toward reforming eastern europe , but we believe it is worth our time and effort . during the week , we plan to bring series of lectures addressing the business environment in eastern europe . we want to emphasize especially the success stories from eastern europe . such companies as enron , volkswagen , exxonmobil , gm , and ge have entered the eastern european market and show commitment to stay in it . in at least one panel discussion with academic experts and industry participants we hope to let everyone know that eastern europe is a real place for business . in addition to the educational activities , we are preparing number of cultural events that will introduce the culture of this area . the scope of our program depends greatly on the funds we will be able to raise from our sponsors . in return , we plan to advertise our sponsors in every activity we will do . we will make banners and any other appropriate advertising as desired by the sponsor . should a sponsor be willing to send a speaker for the panel discussion or to give a speech / lecture we would appreciate the enrichment to our program . the advertising will reach nearly 700 sloan students and faculty . in addition , the advertising will reach all newly admitted students , as they will visit our campus for the admit day ( an official program to sell our school to the admitted students ) .",0 +"Subject: enron trial of energycast service mike , here are the particulars of the trial run of our service , including the times for the telephone contact from wsi . remember this will be a bilateral , not a conference , call . on the esai side , while i will be out of town , peter ingraham ( 781 245 2036 ) is available to answer questions or take suggestions . we look forward to working with you next week . ed - - - - - original message - - - - - from : shorter , jeffrey [ mailto : jshorter @ wsicorp . com ] sent : tuesday , july 25 , 2000 11 : 36 am to : bosse , john ; ed krapels ( e - mail ) ; peter ingraham ( e - mail ) cc : weather effects subject : ed , we are set with a evaluation of the service covering the period from monday to thursday july 31 to aug 3 . we will activate the web access on friday afternoon and initiate calls monday morning . the call schedule is : short range : 8 : 40 east coast time mid range : 9 : 20 east coast time if there is a conflict with these times , please notify me . we will need a number to call into , typically we call directly onto the trading floor . the username and password are the same as the initial viewing : username : enron password : stroso 0 ( zero zero ) it is important to make the point this is for evaluation purposes since we are not under a contract with liability issues addressed . i am sure enron will love it like the rest of our clients ! ! jeff _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ jeffrey a . shorter , ph . d . vice president wsi - weathereffects 55 walkers brook road reading , ma 01867 jshorter @ wsicorp . com 781 - 205 - 7385 ( direct voice ) 781 - 942 - 2000 ( switchboard ) 781 - 942 - 2571 ( fax ) 617 - 320 - 4653 ( cell )",0 +"Subject: re : full version i read the chapter . generally , i like it , and find it non - controversial and well written . of course , this is a huge topic and there are things that you haven ' t discussed . i thought the amount of attention paid to ols and mle estimation was a bit overboard , given that you didn ' t really exploit it in your results . if you were to state the likelihood function for the garch model , it might justify the amount of attention to gave to estimation for simple iid processes , which could then be thought of as a simple lead - in and intuition builder to the more interesting models that you do actually use . by the way , in your discussion of smiles , you discuss fat tails extensively . at least for equity markets , while fat tails contribute , they don ' t do very much at all compared to the effect of risk premia , which you allude to briefly , using supply - demand language , at the end of that section . for the impact of risk premia , see jun pan ' s paper , which is available from her web page . but she covers only sp 500 , ( as do most studies ) , and your markets are obviously much different . the chapter will be a good service to your readers ! best , darrell > x - lotus - fromdomain : ect > from : "" vince j kaminski "" > to : darrell duffie > cc : "" grant masson "" , "" vince j kaminski "" > date : wed , 16 aug 2000 16 : 37 : 53 - 0500 > subject : re : full version > mime - version : 1 . 0 > content - disposition : inline > x - uidl : 00453 eda 98 c 82 d 709 e 6123 af 537 e 4 f 63 > x - keywords : > > > > darrell , > > thanks a lot . i really appreciate it . the text is below our usual > standards but we are completely swamped with work here . > > vince > > > > > > > > darrell duffie on 08 / 15 / 2000 04 : 54 : 23 pm > > please respond to darrell duffie > > to : vince . j . kaminski @ enron . com > cc : > subject : re : full version > > > i ' ll have a look ! > > i haven ' t much time , but can certainly > get you a quick reaction , at least ! > > best , darrell > > > > x - lotus - fromdomain : ect > > from : "" vince j kaminski "" > > to : duffie @ stanford . edu > > date : thu , 10 aug 2000 14 : 04 : 47 - 0500 > > subject : full version > > mime - version : 1 . 0 > > content - disposition : inline > > x - uidl : 9 fef 7462 afa 5 d 4 ee 6 co 4 c 9 co 2 df 71 b 25 > > x - keywords : > > > > > > > > darrell , > > > > grant just alerted me that i sent you only part of the text . > > > > here is the full chapter with an aged version of gran ' t part . > > what i sent you represents an update of his contribution . > > > > sorry for that . > > > > vince > > > > ( see attached file : volo 720 . doc ) > > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > darrell duffie > mail gsb stanford ca 94305 - 5015 usa > phone 650 723 1976 > fax 650 725 7979 > email duffie @ stanford . edu > web http : / / www . stanford . edu / ~ duffie / > _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > > > > > > > darrell duffie mail gsb stanford ca 94305 - 5015 usa phone 650 723 1976 fax 650 725 7979 email duffie @ stanford . edu web http : / / www . stanford . edu / ~ duffie / ",0 +"Subject: option visualization vince and stinson , i did some reserach on the option visualization . here is one of the findings . check this web site , the image looks impressive : http : / / home . online . no / ~ espehaug / virtualworld / virtualoptionworld . html this is done through a free software livegraphics 3 d and mathematica . take a look of the demo on the web site mentioned above to see if it is good enough for our purpose . zimin ps : - - - - - - - - - - - - - - what is livegraphics 3 d ? livegraphics 3 d is a non - commercial java 1 . 1 applet to display and rotate three - dimensional graphics produced by mathematica in html pages . it may be used without charge for any non - commercial purposes . mathematica is a program for symbolic and numeric mathematics by wolfram research , inc . . wolfram research is also responsible for licensing livegraphics 3 d for commercial purposes . livegraphics 3 d enables all mathematica users to put almost any three - dimensional graphics computed by mathematica directly onto a html page , such that everyone with a web browser supporting java 1 . 1 ( e . g . communicator 4 . 0 or internet explorer 4 . 0 or higher ) can view and interactively rotate the graphics without any additional software . additionally livegraphics 3 d is able to show animations , calculate stereo graphics , integrate hyperlinks , and display bitmap backgrounds . ",0 +"Subject: important : mountain top meetings scheduled for next week fyi . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 03 / 06 / 00 12 : 46 pm - - - - - jeanette busse 03 / 01 / 00 03 : 02 pm to : dayne relihan / enron communications @ enron communications , dorn hetzel / enron communications @ enron communications , jeanette busse / enron communications @ enron communications , jim irvine / enron communications @ enron communications , john bloomer / enron communications @ enron communications , john griebling / enron communications @ enron communications , kelly williams / enron communications @ enron communications , kenny burroughs / enron communications @ enron communications , kevin kohnstamm / enron communications @ enron communications , laura beneville / enron communications @ enron communications , phil sisneros / enron communications @ enron communications , ravi thuraisingham / enron communications @ enron communications , rob kolosvary / enron communications @ enron communications , scott smith / enron communications @ enron communications , steve elliott / enron communications @ enron communications , steve mcnear / enron communications @ enron communications , tom huntington / enron communications @ enron communications , rebecca lynch / enron communications @ enron communications , david cox / enron communications @ enron communications , kenton erwin / enron communications @ enron communications cc : john griebling / enron communications @ enron communications , sheryl lara / enron communications @ enron communications , nicole gilson / enron communications @ enron communications , jennifer adams / enron communications @ enron communications subject : important : mountain top meetings scheduled for next week team , john griebling requests the following individuals return to the omni hotel at interlocken in broomfield , co for mountain top meetings to begin at 12 : 00 pm ( noon ) on march 7 th in the mountain top suite # 1139 . . please be prepared to stay in broomfield co at the omni hotel through march 10 th , 3 : 00 pm . the mountain top teams are assembled as follows : required technical team attendance required contract negotiation team laura beneville steve elliott kenny burroughs john griebling jim irvine tom huntington dayne relihan kenton erwin phil sisneros rebecca lynch ( new team member ) contract negotiation team ( attendance requested ) jeanette busse david cox scott smith dorn hetzel ravi thuraisingham rob kolosvary kelly williams ( approved by kenny burroughs ) please let me know if you have any questions , i can be reached on my cell phone at 503 - 887 - 6397 . best regards , jeanette jeanette a . busse project manager , strategic alliances enron broadband services , inc . ( formerly enron communications ) 2100 sw river parkway , suite 600 portland , or 97201 office : 503 . 886 . 0214 fax : 503 . 886 . 0434 email : jeanette _ busse @ enron . net",0 +"Subject: re : presentation if you would like a hard copy of the presentation to be included in the conference book , i ' ll need it before friday , march 24 . thank you both for all your time sent : thursday , march 16 , 2000 9 : 02 am subject : re : presentation > > dawn , > > i met david sobotka from koch this morning and we talked about > coordinating our presentations . > this means there will be changes intended to avoid overlaps . sorry for > that . the portions of my presentation > will survive ( those about valuation paradigms ) and i shall add a few more > pages on accounting treatment of weather derivatives > plus more specific examples . david will cover primarily market evolution + > plus examples of some > standard structures , and we shall both give more interesting examples of > specific deals executed by our companies . > > i shall send you an updated version of my part next week . let me know what > the deadline is . > > vince > > > > > "" dawn scovill "" on 03 / 14 / 2000 07 : 53 : 47 am > > to : "" vince j kaminski "" > cc : > subject : re : presentation > > > thanks - - would you like me to include these in the conference book ? or do > you anticipate changes ? > > dawn > * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * > from : dawn scovill , conference coordinator > "" powerful new ideas 2000 "" > dawn @ perfectmeeting . com > > > - - - - - original message - - - - - > from : vince j kaminski > to : > cc : shirley crenshaw ; vince j kaminski > ; vince j kaminski > sent : monday , march 13 , 2000 1 : 56 pm > subject : presentation > > > > > > > > dawn , > > > > i am sending you an electronic version of my presentation . > > > > vince kaminski > > > > ( see attached file : fplo 400 . ppt ) > > > > > > > >",0 +"Subject: re : weather course joe , this is the most recent offer from lacima ( weather derivatives course ) . what do you think ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 02 / 19 / 2001 07 : 15 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" julie "" on 02 / 19 / 2001 03 : 19 : 45 pm please respond to "" julie "" to : "" vincejkaminski "" cc : subject : re : weather course vince , enron is fine ( although i think we have to pay for the hyatt anyway ) . ? good discount ( i have a feeling that my idea of a good discount and the weather desk ' s idea is probably different ? ) : ? for the one day , $ 1100 per person . ? if you think that there will be ? around 10 people or more , then we can offer a day rate , regardless of the number of people . ? ? thanks vince ? julie ? ps - of course when i announced that we were cancelling , people started responding that they wished to attend . ? ugh ! ? - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : julie cc : vince . j . kaminski @ enron . com sent : friday , february 16 , 2001 4 : 05 pm subject : re : weather course julie , enron location makes more sense . no reason to pay for the hotel . also , i think that one day makes more sense . i contacted the weather desk about including other people at the training course . i think that they would be interested if they got a good discount . vince "" julie "" on 02 / 16 / 2001 09 : 39 : 37 am please respond to "" julie "" to : ? ? cc : subject : ? re : weather course vince , great . just to let you know , we decided not to wait on the indecisive ones , and postponed the open course . it ' s yours , whatever you want : ? 1 day ( specific to what you feel will be of the most benefit ) , 2 days , hyatt or ? enron , or not at all . i hope this doesn ' t cause problems for you . special deal , for sure . i owe my godfather . julie - - - - - original message - - - - - from : ? vince . j . kaminski @ enron . com to : julie cc : joseph . hrgovcic @ enron . com sent : thursday , february 15 , 2001 3 : 16 ? pm subject : re : weather course julie , that ' s definitely an option . we can ? provide the room . maybe we can cut with you a special deal for enron and ? increase the # of people attending . i am forwarding your message to our ? weather desk . vince joe , what do you think about ? it ? vince "" julie "" on ? 02 / 15 / 2001 08 : 20 : 24 am please respond to "" julie "" to : ? "" vincejkaminski "" cc : subject : ? weather course vince , we just wanted to let you know ? that we only have 3 people signed up for the weather derivatives course ? ( all from enron ) so far . we have a couple more that have expressed strong ? interest , but we are awaiting their final decision . if no one else signs ? up , chris and les thought that you guys could probably get through the ? first day pretty easily , and thus thought it may be an option to teach just ? the 2 nd day material ( pricing ) only at enron ( doing it at the hyatt is an ? option as well but the room might be on the large side ) ? we would ? obviously reimburse you for the day not taught . we can teach both days as ? well , but thought you may want to save some time . i just wanted to give ? you some time to think about it . we will know where we stand on final ? numbers by next ? wednesday . julie",0 +"Subject: ees organizational announcement - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 12 / 2000 12 : 01 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - osman sezgen @ ees 04 / 12 / 2000 11 : 58 am to : pinnamaneni krishnarao / hou / ect @ ect cc : subject : ees organizational announcement - - - - - - - - - - - - - - - - - - - - - - forwarded by osman sezgen / hou / ees on 04 / 12 / 2000 11 : 57 am - - - - - - - - - - - - - - - - - - - - - - - - - - - lou pai and tom white 04 / 12 / 2000 11 : 40 am sent by : karen owens to : all ees employees cc : subject : ees organizational announcement at the core of ees  , s success has been our willingness to adapt to and embrace change . tom and i are reminded of this again as we announce the departure of john echols , whose extraordinary capabilities have been instrumental to the successful launch of ees , and to our tremendous growth in the two - and - a - half years since then . john is continuing his career at enron . marty sunde , currently managing director of sales joe earle , president and ceo of enron facility services ; kevin hughes , vice president and chief accounting officer ; dan leff , managing director of account and delivery management ; danny mccarty , managing director of ees - europe ; mark muller , managing director of corporate development ; vicki sharp , managing director and general counsel ; and beth tilney , managing director of marketing , communications and human resources . thank you for your continued commitment to ees . we  , ve just completed a great quarter and are well positioned to meet or exceed our targets this year ! in fact , this is the seventh consecutive quarter for record levels of new contracting activity and we  , ve more than doubled our first quarter sales of 1999 . keep up the great work !",0 +"Subject: willow tree hi vince - this is so you can respond to my email . please let me know if you have any further questions or comments regarding willow or if you would like to proceed in discussing a purchase . regards , michael curran head of research riskcare - financial technology services piercy house 7 copthall avenue london ec 2 r 7 nj tel : + 44 ( 0 ) 20 7562 3419 fax : + 44 ( 0 ) 20 7562 3401 mailto : mcurran @ riskcare . com",0 +"Subject: wti - new eol product ted , enclosed is a corrected version of the historical simulation of wti trading . the earlier results were double counting the spread profit on trades closed intra - day . the spread was counted on each trade rather than per round - trip transaction , so the new results show lower profitability . - - stinson",0 +"Subject: new pc lyn : can you tell me the status on this order ? alex is really feeling the pinch for this new computer . thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 12 / 2000 08 : 32 am - - - - - - - - - - - - - - - - - - - - - - - - - - - shirley crenshaw 01 / 07 / 2000 01 : 49 pm to : lyn malina / hou / ect @ ect cc : william smith / corp / enron @ enron , vince j kaminski / hou / ect @ ect , alex huang / corp / enron @ enron subject : new pc hi lyn : alex huang has requested a new pc and vince kaminski has ok ' d it . please order the computer as listed below in alex ' s request . thanks ! shirley 3 - 5290 - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000 01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 01 / 07 / 2000 12 : 12 pm to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex huang / corp / enron @ enron subject : new pc shirley , ok . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000 12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - alex huang @ enron 01 / 07 / 2000 08 : 28 am to : shirley crenshaw / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect subject : new pc hi shirley , i would like to request for a new pc . my current pc is quite old with not enough memory . twice i ran out of memory and had to have it people coming to clean it for me . their suggestion is to either get a new hard drive or a new pc . given that dell has pentiumc iii processor at 800 mhz on market , i would like to request a pc with process at 500 mhz or higher level . thank you very much . best , alex",0 +"Subject: confirmation of your order this is an automatic confirmation of the order you have placed using it central . request number : ecth - 4 rstt 6 order for : vince j kaminski 1 x ( option : 128 mb upgrade for deskpro en 6600 $ 129 ) 1 x ( standard desktop $ 1262 ) enron it purchasing",0 +"Subject: credit risk model comments - at this point . comments from rick jones on the credit reserve model . anita dupont is setting up a meet with rick jones to discuss these . vince & bill - if you want to join the meeting , please let me or anita know . regards , krishna . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 04 / 11 / 2001 09 : 04 am - - - - - - - - - - - - - - - - - - - - - - - - - - - richard b jones @ ees 04 / 10 / 2001 04 : 16 pm to : pinnamaneni krishnarao / hou / ect @ ect cc : subject : credit risk model comments - at this point . - - - - - - - - - - - - - - - - - - - - - - forwarded by richard b jones / hou / ees on 04 / 10 / 2001 04 : 16 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - richard b jones 03 / 23 / 2001 05 : 53 pm to : cheryl lipshutz / hou / ees @ ees , trushar patel / corp / enron @ enron , michelle . wenz @ enron . com , gayle muench / enron @ enronxgate , jeremy blachman / hou / ees @ ees cc : subject : credit risk model comments - at this point . hi everyone , i have run the model and , along with the contract briefs i have some questions the number of trials , numerical roundoff , and random number generator randomness statistical properties . the first two are not a problem in this application but the last one could be . has anyone examined the effect of using different random number generators on enron  , s aggregate credit risk ? 7 ) there is one last point here . for most of the above points , the "" improved "" analysis could make the credit risk be higher . rick",0 +"Subject: caida ' metrics ' wg meeting , 2 mar 00 hi vince , i ( and possibly stinson as well ) will be attending this initial meeting looks like kick - off type of meeting . i will try to attend to drill into what they can offer and what we have committed . make sure that we get from the arrangement n john griebling & jim irvine ' s perspective and ours . i ' ll fire off additional information as i get them . ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 23 / 00 10 : 51 am - - - - - nevil @ ipn . caida . org 02 / 22 / 00 12 : 16 pm to : members @ caida . org cc : nevil @ caida . org , ( bcc : ravi thuraisingham / enron communications ) subject : caida ' metrics ' wg meeting , 2 mar 00 hello caida members : update on the caida working groups . . a . ' metrics @ caida . org ' mailing list b . wg charters , meeting on 2 mar 00 a . ' metrics @ caida . oeg ' mailing list i ' ve set up a single mailing list with this name , for discussions on wg topics , passive measurements , etc . to start with it ' s a moderated list ( i . e . you have to be a member of the list to post to it , you join by sending email to nevil @ caida . org asking to be added to the ' metrics ' list ) , with the following initial set of members : sue moon , brett watson , hans - werner braun , matt mathis , ian graham , tony mcgregor , john cleary , joerg micheel , kevin thompson , jambi gambar , daniel mcrobb , david moore , sean mccreary rene hatem , shankar rao , cindy bickerstaff , jeff sedayao , steve feldman , bill woodcock two questions for caida members : i . who else would you suggest be invited to join the list ? ii . should the list continue to be moderated , or should it be changed into an open list ? b . ' working group ' developments following the caida members ' meeting on 8 feb 00 i ' ve attempted to define exactly what problem we could consider getting an ietf working group started on . my summary of the existing ietf wgs with interests in metrics is given below ( appendix b ) , but it seems unlikely that we could get a new ietf wg started . i believe that we should instead run a single caida working group on ' network metrics , ' rather than the two proposed earlier . my draft of its charter is appended below . it focuses on producing educational material about network measurement , and on developing new metrics - these were the two areas of greatest interest amongst the caida members . the wg co - chairs are sue moon ( sprintlabs ) and brett watson ( mfn / abovenet ) you are invited to attend the first wg meeting . the agenda is as follows . . agenda for caida wg meeting on : thursday 2 mar 00 - - - - - - - - - - - - - - - - - 10 am - 4 pm , abovenet , downtown sjc ( see below for details ) - - - - - - - - - - - - - - - - - - - - - - - - 1 . review wg charter - is it reasonable as set out in the draft ? - what should be removed or added ? 2 . work through revised charter in detail - identify the work required for each part - determine who ' s willing to work on it - attempt to determine delivery times 3 . discussion of new metrics - first attempt at making a list of metrics to be considered 4 . anything else ? location : abovenet is located in the knight - ridder building , attached to the fairmont hotel complex . the address is 50 w . san fernando st . san jose , ca 95113 rsvp : to help us with organising the meeting , please send email to nevil @ caida . org telling us how many will attend from your organisation . cheers , nevil nevil brownlee visiting researcher phone : ( 619 ) 822 0893 caida , san diego caida network metrics working group : draft charter , tue 23 feb 00 goals : 1 education + faq on what does ' measuring the internet actually mean ? ' - why measure anyway ? - what can be measured ? how ? where ? by whom ? - active vs passive , end - to - end vs provider network only , application vs transport layer - rating schemes : provider ' net performance ' pages , internet ' weather map ' s , keynote , etc . publish as caida web pages , or maybe as an info rfc + survey paper on metrics and internet measurement - current measurement efforts ( surveyor , ripe test traffic , amp , iperf , at & t , keynote , skitter , . . . ) - current tools publish as caida web pages 2 service metrics + define new metrics - taxonomy of current metrics ( ippm , rtfm , itu , . . ) - summary of metrics used for current services - gather information / ideas about new / emerging services , especially diffserv - based ones - make list of new metrics , either to improve measurement of existing services or to support new ones [ list of ' metrics ' questions ( appendix a ) goes here ] + organise experimental implementation / testing of tools for new metrics + make recommendations on implementation - define core set of ' really useful ' metrics - recommend that caida implement these as a ' service measurement toolkit ' + publish new metric definitions through ippm or rtfm + produce document "" measurement requirements for hardware / software vendors . "" publish on caida web pages appendix a : questions from the earlier draft caida wg charters a . what types of network - and transport - layer metrics are being used by isps in engineering and operating their networks ? by customers for verifying service guarantees ? b . what new services are being ( or are likely to be ) offered , e . g . diffserv ? is there a need for higher - layer metrics to better monitor and manage these services ? c . will these new differentiated transport - and application - layer services need new metrics ? d . how can the service metrics be measured in a multi - isp environment ? e . how can customers verify these measurements ? f . what requirements would service measurement introduce for equipment vendors ? g . how relevant are specific techniques ( e . g . which flow ) and points of measurement to specific users ( isp , customer , etc . ) requirements ? h . how do these metrics relate to network behavior as perceived by users ? how do they correlate with performance ? appendix b : background on the ietf working groups * rtfm wg : realtime traffic flow measurement rtfm is concerned with passive measurements of two - way traffic flows , specified in terms of their end - point attributes . its primary goal was to produce an improved traffic flow measurement model considering at least the following needs : a . wider range of measurable quantities , e . g . those relating to ipv 6 , and to class of service b . simpler ways to specify flows of interest c . better ways to control access to measured flow data d . strong focus on data reduction capabilities e . efficient hardware implementation * ippm wg : ip performance measurement the ippm wg charter is to develop a set of standard metrics that can be applied to the quality , performance , and reliability of internet data delivery services . these metrics will be designed such that they can be performed by network operators , end users , or independent testing groups . it is important that the metrics not represent a value judgement ( i . e . define "" good "" and "" bad "" ) , but rather provide unbiased quantitative measures of performance . rfcs framework for ip performance metrics ( rfc 2330 ) metrics : connectivity ( rfc 2678 ) , one - way delay ( rfc 2679 ) , one - way packet loss ( rfc 2680 ) round - trip delay ( rfc 2681 ) i - ds bulk transfer capacity ( 2 x ) instantaneous packet delay variation one - way loss patterns * other wgs the rmonmib wg is thinking about ' application performance measurement . ' this is clearly a hard problem ( e . g . does this just mean response - time measurement , can it be done by passive means , how should the measurements be presented , etc . ) . in short - rtfm provides a good distributed measuring system for traffic volumes - ippm has concentrated on transport - layer behaviour of the current , best - effort internet . - rmonmib is beginning to consider application - layer measurement ",0 +"Subject: re : message from charles shen at williams charles , i am coordinating an offer fro you . i shall call you with the details later this week . vince charles shen on 10 / 18 / 2000 10 : 59 : 16 am to : vkamins @ enron . com cc : vkaminski @ aol . com subject : message from charles shen at williams dear vince : how are you ? it was very nice talking to you last friday , i was very impressed by your group , and very interested in this opportunity . if you need any additional information , please feel free to call me at 918 - 409 - 4308 , i look forward to hearing from you very soon . thank you . sincerely , charles do you yahoo ! ? yahoo ! messenger - talk while you surf ! it ' s free . http : / / im . yahoo . com /",0 +"Subject: interviews for a new candidate elizabeth : we have yet another candidate allen humbolt who we want to interview . his skills seem to match our requirements very well . we appreciate your help in setting up interviews for him with the following people : vince kaminski stinson gibner grant masson vasant shanbhogue ronnie chahal osman sezgen john henderson ( ees ) anoush farhangi and myself . thanks , krishna .",0 +"Subject: re : dear mr . kaminski , since i am just about starting off on my research , i do not have any papers published in this area . but i do plan to address this shortcoming pretty soon . i have a couple of other papers against my name , but they are not worth any serious mention . i thank you for taking time off your busy schedule to write to me . i will keep you posted about my progress . thank you , yours sincerely , hari natarajan fellowship student indian institute of management bangalore bannerghatta road bangalore 560076 india tel : 91 - 80 - 6993056 fax : 91 - 80 - 6584050 e - mail : hnatraj @ iimb . ernet . in - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : hnatraj @ iimb . ernet . in cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com sent : 3 / 8 / 01 10 : 45 pm subject : re : hari , thanks . please , keep me posted about your progress . any published papers ? we shall send you the printout . vince hari natrajan on 03 / 06 / 2001 08 : 47 : 34 pm to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : dear mr . kaminski , thank you very much for your prompt response . i look forward to receiving a copy of your article . i would also appreciate it if you could let me know whether enron provides research grants to individuals who are working in the area of energy risk management . towards my research , i am trying to develop a model to estimate electricity spot price . in any case , i will be getting in touch with you again a year or so down the line when i am nearing completion of my dissertation because enron is my dream job . i look forward to hearing from you . thank you , yours sincerely , hari natarajan fellowship student indian institute of management bangalore bannerghatta road bangalore 560076 india tel : 91 - 80 - 6993056 fax : 91 - 80 - 6584050 e - mail : hnatraj @ iimb . ernet . in - - - - - original message - - - - - from : vince . j . kaminski @ enron . com to : hnatraj @ iimb . ernet . in cc : shirley . crenshaw @ enron . com ; vince . j . kaminski @ enron . com sent : 3 / 6 / 01 8 : 34 pm subject : re : hari , i shall send you a reprint of the article . i had to cancel my presentation at san antonio . vince shirley , please , send a copy of the article to hari . hari natrajan on 02 / 28 / 2001 06 : 45 : 29 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : dear mr . kaminski , i am a doctoral student at the indian institute of management bangalore , india . my area of interest is the energy sector , especially electricity derivatives . i am interested in obtaining a copy of the following items : 1 ) your presentation "" current challenges in modeling power price volatility "" at the session on price volatility & probabilistic methods in the energy markets . ( http : / / www . informs . org / conf / sanantonio 2000 / / talks / md 29 . html ) 2 ) your chapter "" the challenge of pricing and risk managing electricity derivatives "" in the book ' the us power market ' , risk publications . i would appreciate it if you could send me a soft / hard copy of the same . thank you , yours sincerely , hari natarajan fellowship student indian institute of management bangalore bannerghatta road bangalore 560076 india tel : 91 - 80 - 6993056 fax : 91 - 80 - 6584050 e - mail : hnatraj @ iimb . ernet . in",0 +"Subject: retail markets conference i would like to invite you to participate in a conference on "" retail participation in competitive power markets "" to be held at stanford university on june 21 - 22 , 2001 . although california and other regional markets will likely be introducing some demand - response programs by june , there is a clear need for continual evaluation of these nascent efforts to transform the market . the conference provides an opportunity to learn from different experiences . this policy research meeting will focus on establishing a foundation for understanding the key concepts and methods for demand response programs and to provide an opportunity for participants to raise questions and recommend directions for additional research and analysis . participants will come from companies , government , and universities . you can obtain more information about the conference by checking under "" meetings "" on our emf website listed below . please let me know if you plan on attending . also , if you would like to make a brief 15 - minute presentation , please let me know your topic and describe it in a few sentences . i will try to choose speakers that will cover the full range of interests represented by this group . researchers should focus on the implications of their analysis for designing demand response programs rather than on the technical details of their methodology . i would also encourage practitioners to discuss their experience in implementing demand response programs or in raising selected issues . thank you , hill huntington hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: re : friday morning meeting ? vince : 7 am at hyatt regency downtown would be perfect . i will see you in the lobby at 7 am . best regards , dale - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : wednesday , july 05 , 2000 3 : 23 pm to : dale . nesbitt @ marketpointinc . com cc : vince . j . kaminski @ enron . com ; shirley . crenshaw @ enron . com subject : re : friday morning meeting ? dale , friday is a bad day ( performance review committee all day ) . what about 7 : 00 at the office or breakfast meeting at 7 : 00 ? we can meet at hyatt regency downtown ( smith street ) . vince "" dale nesbitt "" on 07 / 05 / 2000 12 : 13 : 59 am to : "" vince . j . kaminski "" cc : subject : friday morning meeting ? vince : can we get together friday morning july 7 at 800 am at your office ? that would be particularly convenient for me . i will have to leave downtown at about 945 to catch a plane . that will ensure that i wont take up too much of your time ! ! thanks for your efforts here , and thanks for being patient with me . dale nesbitt",0 +"Subject: membership mixer tomorrow - paesanos lounge ! nesa / hea members ~ don ' t forget to join us tomorrow ( thursday , january 18 th ) for our first membership mixer of 2001 at paesanos lounge located at 213 milam between franklin and congress streets in the downtown market district . sponsored by national energy & trade , llc , the fun begins at 5 : 00 p . m . and your first drink is free when you mention you ' re with nesa / hea at the door . there will be a buffet available for our group as well as valet parking . remember that paesanos also offers a great selection of fine cigars for your enjoyment while you network with other industry colleagues , and special guest artist , yvonne washington , performs at 8 : 00 p . m . we ' re expecting a great turnout , so don ' t be left out ! as part of our membership drive , bring a new member with you and become eligible for a great door prize , graciously donated by kay atchison ( nesa / hea co - chair ) from duke energy . it ' s a great opportunity to renew your dues as well . again , if you didn ' t receive your renewal in the mail , i ' m attaching a pdf file that can be opened in adobe acrobat . if you don ' t have that application , download it free from our website at www . nesanet . org . hope to see you there ! you can ' t afford to miss this event ! > - nesaneamembership . pdf",0 +"Subject: re : your comments on metals var model dear andreas , thanks for the very useful response and information on positions . i have handed over primary responsibility for metals var to kirstee hewitt ( at least as far as london is concerned ) and she will follow up on the points you kindly reported , although i am of course available to assist where necessary . tanya will remain the point of contact for var modelling in houston , and of course kirstee and tanya will work together on this to resolve these and further issues . i would be happy to help set up meetings for you in the london office when you visit next week , with kirstee , myself and anyone else that you would like to meet with and we very much look forward to your visit - please let me know if you need any help with the arrangements . regards , anjam 0207 783 5383 - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 27 / 07 / 2000 08 : 40 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : andreas . barschkis @ mgusa . com 27 / 07 / 2000 00 : 36 to : anjam . ahmad @ enron . com , kirstee . hewitt @ enron . com cc : bjorn _ hagelmann @ mgusa . com subject : re : varmodel _ live . xls anjam , thanks for your var model . i would like to point out the following : 1 ) position data : i noted that the outright ( longs + shorts ) for copper include positions which we should not use , i . e . r . wolff quantities . this positions are imputed into the system at their integrity ( some legs / hedges are missing ) this affects copper and lead position for now . the issues should be have been sorted out by the end of this month , ie next week . so in copper you have 25 , 487 mt to much and with lead you have 13 , 579 mt to much . ( as of june 19 ) 2 ) looking at copper position you calculate a var of - 3 , 100 , 568 with a total outright of 63 . 765 mt . this seams too low . if i calculate 63765 x 1807 x 3 . 99 % = 4 . 218 mil . us $ . var ( outright qty x price levelx risk factor , riskfactr as per mercur ) . in my view we have been understating var in mercur because we do not consider the spread position correctly ( i . e . in detail ) . on a position like that i would expect a figure of around 6 mil us $ . i guess the issue is in the volatility and in the holding period . 3 ) your correlation matrix for the commodities is not final i assume as many fields are blank . lets talk tomorrow on the phone . attached please find the position summary for the last week # 30 ( since june 19 ) as requested by kirstee . ( see attached file : mgposw 30 . xls ) andreas barschkis mg metal & commodity corp . 520 madison avenue , 28 th floor new york , ny 10022 tel : + 1 . 212 . 715 . 5628 cel : + 1 . 917 . 679 . 8287 fax : + 1 . 212 . 715 . 5608 e - mail : andreas . barschkis @ mgusa . com anjam . ahmad @ e nron . com to : andreas . barschkis @ mgusa . com cc : kirstee . hewitt @ enron . com 07 / 26 / 2000 subject : zipped varmodel _ live . xls 11 : 37 am hi andreas , this is the semi - final spreadsheet - have only to include price curves for gold and cocoa . kirstee and i would welcome your comments . regards , anjam - mgposw 30 . xls",0 +"Subject: term project : this is the list of projects for the members of the "" quant "" team . if you are working on different project , please , ignore this message . please , develop in a spreadsheet solutions / examples for the following : 1 . black - scholes formula 2 . black ' s formula 3 . develop a spreadsheet to simulate price trajectory using : a . gbm b . gbm + jump ( formula 2 . 16 in the book , figure 2 . 7 ) c . mean reversion + jump ( formula 2 . 17 , figure 2 . 8 ) 4 . schwartz single factor model ( formula 6 . 12 ) 5 . develop models corresponding to the figures 7 . 1 , 7 . 3 , 7 . 5 , 7 . 6 , 7 . 8 vince",0 +"Subject: organizational changes enron is forming a new organization - - the enron xcelerator - - to drive the formation and development of new businesses at enron . enron ' s unique ability to start and develop new businesses has driven most of our growth over the years . lou l . pai , currently chairman and ceo of enron energy services , will lead the xcelerator . over his years at enron , lou has been key to the creation and rapid growth of our wholesale gas , wholesale power and energy service businesses . the existing business units will continue their development of core businesses , while the xcelerator will be responsible for developing new business opportunities that are natural extensions of enron ' s business model and core skills , but not currently under development elsewhere in enron . dave delainey , currently president and ceo of enron americas , will become chairman and ceo of enron energy services . dave brings a wealth of experience and accomplishment from enron wholesale services ' businesses where he led the growth of our canadian business and our north american origination activity and , most recently , had a great year in enron americas . dave is forming an office of the chairman in ees . joining dave in the office of the chairman are dan leff , president of ees , global energy services , and marty sunde , president of ees , global marketing and services . dan and marty have been instrumental in the development and execution of the successful ees business model . also joining the office of the chairman of ees is janet dietrich as chief operating officer . janet , currently is managing director in enron americas , where she has been successful in many of enron wholesale ' s core businesses , including gas trading , risk management and structural origination . tom white will continue as vice chairman of ees and will focus on the development and expansion of ees ' customer relationships . lou , tom , dan , marty and the entire ees organization have developed a great business model with great growth prospects . ees has become an essential part of enron ' s market valuation and growth story . this new leadership structure will enable ees to continue on its path of sustained growth and increasing profitability . john lavorato will succeed dave as president and ceo of enron americas . john has been an essential part of enron ' s energy trading success over the years and is a key part of enron wholesale services ' continuing success story . joining john is louise kitchen , currently president and ceo of enron networks . louise , who accelerated enron ' s outstanding growth with the deployment of enrononline , will take over as chief operating officer of enron americas . philippe bibi , currently chief operating officer of enron networks will take over as president and ceo of enron networks . under philippe ' s leadership , enron has become a technology leader and the leading e - commerce company . joining philippe as chief operating officer is greg piper , currently managing director of enron networks . greg currently leads enron network ' s origination activity and was responsible for the creation and deployment of clickpaper , enron ' s successful online pulp and paper marketplace . please join us in congratulating all of these individuals on their achievements and their new responsibilities .",0 +"Subject: summer part time employee add her to the distribution list for associate social functions . - - - - - - - - - - - - - - - - - - - - - - forwarded by celeste roberts / hou / ect on 06 / 23 / 2000 05 : 06 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 06 / 23 / 2000 09 : 56 am to : celeste roberts / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , elena chilkina / corp / enron @ enron , mike a roberts / hou / ect @ ect subject : summer part time employee celeste , i have talked to you last evening about elena chilkina , an mba rice student who works for us part - time during the academic year , and full time this summer . she asked if she could participate in the program for summer associates . ( presentations , social meetings ) , i would appreciate if you could help her . vince",0 +"Subject: re : electricity summit at u . c . berkeley sevil , yes , please , go ahead . we shall pay for the trip . vince sevil yaman @ enron 10 / 24 / 2000 02 : 24 pm to : vince j kaminski / hou / ect @ ect cc : subject : electricity summit at u . c . berkeley vince , i just received this message . what do you think ? should i register to attend it ? sevil , - - - - - - - - - - - - - - - - - - - - - - forwarded by sevil yaman / corp / enron on 10 / 24 / 2000 02 : 20 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - pwpens on 10 / 24 / 2000 12 : 16 : 14 pm to : ( recipient list suppressed ) cc : subject : electricity summit at u . c . berkeley register now to attend the electricity summit at u . c . berkeley , november 13 , 2000 u . c . berkeley ' s goldman school of public policy , with additional support from the u . c . berkeley ' s competition policy center and the u . c . energy institute , will host a meeting of industry representatives , policy makers , consumers representatives , legislators and researchers to discuss the electricity restructuring experience and potential solutions to the difficulties that california and other governments have encountered . the summit will run from 12 : 30 - 6 pm with two roundtable discussions that will include a wide variety of viewpoints . for registration information and further details , go to ",0 +"Subject: fortune most admired ranking congratulations ! for an unprecedented five years in a row , enron has been ranked the "" most innovative company in america "" by fortune magazine . in addition , for the first time , enron has also been ranked # 1 in "" quality of management , "" topping general electric and omnicom group , and our "" employee talent "" has been ranked # 2 , behind goldman sachs and ahead of cisco systems . america ' s most admired management team is paired with the best and brightest employee talent . that winning combination has led to enron ' s five - year "" most innovative "" sweep . the "" most admired "" list will appear in fortune ' s feb . 21 issue , available on newsstands feb . 8 . you are the reason we have achieved such consistent recognition . you bring the innovative ideas to enron and create new business opportunities . you contribute to our quality management team . and you are the outstanding employee talent that makes enron such an exciting and successful company . keep up your outstanding work , and we look forward to even greater achievements in 2000 !",0 +"Subject: wayne tow ' s resume kathy / greg / john - do we need the skills described in the attached resume on the project team or in the permanent support group or in the esupply group ? there are no personal recommendations associated this resume . vince - thanks for keeping us in mind ! - - - - - - - - - - - - - - - - - - - - - - forwarded by melissa becker / corp / enron on 02 / 01 / 2000 01 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski @ ect 01 / 31 / 2000 09 : 04 am to : melissa becker / corp / enron @ enron cc : subject : wayne tow ' s resume melissa , please , take a look at this resume . any interest ? i got it from a headhunter ( i don ' t know her , it was a cold call on her part and she did not make a good impression ) . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 31 / 2000 09 : 01 am - - - - - - - - - - - - - - - - - - - - - - - - - - - leewells @ swbell . net on 01 / 25 / 2000 05 : 34 : 57 pm please respond to leewells @ swbell . net to : vince j kaminski / hou / ect @ ect cc : subject : wayne tow ' s resume hi there mr . kaminski ! it was a pleasure to speak with you today . i look forward to lunch one day soon at brennans . wayne tow is a brilliant man , he worked for many years for a man i know well . this man says , wayne is as good as it get , and he could do anything that is assigned to him , and do it at a level in which he was always amazed . he loves the e - commerce area , and this is what he wants to do thank you , vince . lee wells - wayne 2 . doc",0 +"Subject: interview - numerical methods & finance ? ? ? ? ? ? dear tanya : ? ? ? ? ? ? ? ? ? ? it was a great pleasure to have met you . i very much enjoyed the interview and your insightfull questions . ? ? ? ? ? ? ? i am keenly aware that many of the methods that i discussed with you yesterday are unique , new ? and not reported elsewhere . this is true both about the work i did in whole yield curve interest rate pricing ? as well as garch . the innovations stem from the extensive numerical analysis experience that i have both in turbulence physics as well as finance . they entailed considering the problem from its raw formulation , mathematical analysis , physical interpretation , taylored numerical method development , software writting and develoment and data management . ? ? ? ? ? ? ? as to why i have not yet published anything the answer is that the driver in my work has been adding value to the business not publishing . publishing is however an option that has always been open with my former supervisor who is aware of the work that i did . ? ? ? ? ? ? ? i not however that these results were possible only by exploring to the utmost extent the mathematics , finance , software design and data managemnet aspects of the problem . absence of any of these aspects is likely to cripple performance and execution . ? ? ? ? ? ? ? please recall that as good as they were the performance measures that i mentioned to you were for a single processor machine . vastly better can be achieved with both soft parallelism ( multithreading ) as well as hard parallelism ( heterogenous network ) . this fo course allows us to step up the reach of the models used . ? ? ? ? ? ? ? in fact i know for a fact that better can be done than what i mentioned in the interview . from work that i have been doing on the integration of the swaption volatility surface on the whole yield curve interest rate model itm and otm instruments can be included in both the callibration , pricing and hedging . ? ? ? ? ? ? ? i look forward hearing back from you soon and particularly to the opportunity of us cooperating . ? ? ? ? ? ? ? best regards ? ? ? ? ? ? ? joao",0 +"Subject: re : storm dale , omer muften ( with the structuring group ) asked us to help in evaluating the different options embedded in the storm contract . however , he promised to provide us with the forward curves regarding the dark fiber ( in europe ) . we are still waiting to receive those . in addition , it seems that the deal structure has "" just "" changed . i will give you a call to discuss . - samer stinson gibner @ ect 06 / 01 / 00 04 : 33 pm to : samer takriti / enron communications @ enron communications cc : cantekin dincerler / hou / ect @ ect , dale surbey / lon / ect @ ect , vince j kaminski / hou / ect @ ect subject : storm samer : can you please contact dale surbey in london and let him know what you and cantekin doing for the storm transaction . he can be reached by london tie line by dialing 830 3 6726 . thanks , stinson dale : i will be on travel for the next 2 weeks . samer should be able to help you . his extension is 34791 .",0 +"Subject: re : 7 / 14 - - crude oil and nat gas fyi 1 . george hopefully will get us some peaking data soon 2 . george likes tricia ' s new format ( based on meeting with arnold yesterday afternoon which went well ) - - - - - - - - - - - - - - - - - - - - - - forwarded by mike a roberts / hou / ect on 07 / 14 / 2000 07 : 03 am - - - - - - - - - - - - - - - - - - - - - - - - - - - george hopley 07 / 13 / 2000 09 : 07 pm to : mike a roberts / hou / ect @ ect cc : subject : re : 7 / 14 - - crude oil and nat gas i thought today ' s analysis was good perspective . i found some records of peaking production which will forward over tomorrow . george - - - - - - - - - - - - - - - - - - - - - - forwarded by george hopley / hou / ect on 07 / 13 / 2000 08 : 54 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - george hopley 07 / 13 / 2000 08 : 52 pm to : patricia tlapek / hou / ect @ ect cc : subject : re : 7 / 14 - - crude oil and nat gas nice commentary on gas from : patricia tlapek 07 / 13 / 2000 08 : 49 pm to : patricia tlapek / hou / ect @ ect cc : ( bcc : george hopley / hou / ect ) subject : 7 / 14 - - crude oil and nat gas",0 +"Subject: re : research and development charges to gpg vera : in studying the below information , if i am understanding it correctly , only $ 199 . 7 was to be reversed back to the research group and it should have occurred in july . do you not notice this entry either ? please let me know . thanks ! shirley crenshaw - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 11 / 2000 10 : 08 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 08 / 10 / 2000 02 : 25 pm to : vera apodaca / et & s / enron @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect subject : re : research and development charges to gpg vera , we shall talk to the accounting group about the correction . vince 08 / 09 / 2000 03 : 26 pm vera apodaca @ enron vera apodaca @ enron vera apodaca @ enron 08 / 09 / 2000 03 : 26 pm 08 / 09 / 2000 03 : 26 pm to : pinnamaneni krishnarao / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : research and development charges to gpg per mail dated june 15 from kim watson , there was supposed to have occurred a true - up of $ 274 . 7 in july for the fist six months of 2000 . reviewing july actuals , i was not able to locate this entry . would you pls let me know whether this entry was made , if not , when do you intend to process it . thanks .",0 +"Subject: re : summer intern : paulo oliveira vince , both matt and april think that this type of research would be value - additive to ebs . i will be out all next week in a meeting with john griebling and other on a deal that is being worked out . i understand that you are following up with hr on all of our summer intern offers . please make sure palo is given an offer and that he will work with april and matt ( he did talk to matt ) on the topics that april and i suggested . regards , ravi . - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 20 / 00 12 : 41 am - - - - - matt harris 02 / 17 / 00 08 : 08 pm to : ravi thuraisingham / enron communications @ enron communications cc : april hodgson / enron communications @ enron communications subject : re : summer intern : paulo oliveira looks interesting . i would guess that there is a ton of research available ( from @ home , aol , roadrunner , real , microsoft , etc . ) on broadband ' s impact on the strategic value of web properties . compiling this would be very helpful . mh ravi thuraisingham 02 / 17 / 00 12 : 15 pm to : april hodgson / enron communications @ enron communications , matt harris / enron communications @ enron communications cc : subject : summer intern : paulo oliveira hi april & matt , here is additional information on the summer intern that i ' ve mentioned . matt , i know you know nothing about this ! my discussion with april on the possible research topic let me ( & april ) to believe that you would provide great input on what the student can work on while he is here . regards , ravi . ebs research - - - - - forwarded by ravi thuraisingham / enron communications on 02 / 17 / 00 02 : 09 pm - - - - - stinson gibner @ ect 02 / 17 / 00 11 : 23 am to : vince j kaminski / hou / ect @ ect cc : ravi thuraisingham / enron communications @ enron communications , thomas d gros / hou / ect @ ect subject : summer intern : paulo oliveira vince : here is the information that i have on paulo . he would be slated to work for the summer with april hodgeson and matt harris on how streaming media products may add value to advertising or some related area . actually , he would also be a good fit for helping to think ways to analyze our enron on - line data . i have asked if he can send a resume . in the mean time , most of his relevant information is attached below . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 02 / 17 / 2000 11 : 14 am - - - - - - - - - - - - - - - - - - - - - - - - - - - paulo rocha e oliveira on 02 / 10 / 2000 12 : 04 : 56 pm to : "" stinson gibner "" cc : subject : re : trip to houston stinson , thank you for your e - mail . my phone number is ( 617 ) 492 - 9551 . i graduated from princeton university in 1996 ( mathematics ) , and came straight to mit for a ph . d . in operations management at the sloan schoolof management . in my first three years i took all the required coursework in mathematics , optimization , stochastic processes , etc . , as well as a number of courses in psychology ( at mit and harvard ) . i am working with prof . gabriel bitran , and i am interested in the mathematical modeling of service operations . in particular , i am interested in the interaction between customers and companies ( hence the interest in psychology ) . the ( tentative ) title of my phd thesis is "" pricing substitute products on the internet "" , and i am sending you the summary which i sent to tom gros a few weeks ago that will give you an idea of what this research is about . thanks again , and i ' m looking forward to meeting you and your research group next week . paulo pricing substitute products on the internet objective : to develop new tools to decide pricing policies for goods and services sold on the internet . motivation : this research is motivated by the fact that traditional choice and optimization models are not appropriate for internet - related businesses . the technological innovations associated with the internet brought about an overload of information which inevitably affects the ways in which consumers make choices . furthermore , companies have a great deal of influence on how much information consumers can have access to . the problem of pricing substitute products is an important strategic issue faced by internet companies . consumers usually search for generic products ( e . g . vcrs or computers ) without knowing exactly what they will buy . companies can show different products and different prices to each consumer . this type of flexibility was not available until the internet came about . the problem of pricing substitute products is not unique to the internet . the methodology developed by this research should be transferable to a number of other settings , such as pricing services . services are unique , and there are many cases where customers will only buy one of many services offered by a given company . our model will help companies decide which services to offer to which customers and how much to charge for these services . research strategy : our research strategy is to divide the pricing problem into two components which can be combined to generate optimal pricing strategies . these components are choice models and optimization models . choice models : choice models describe how customers make choices . the management literature draws on two main sources for these models : psychology and economics . the common approach in psychology models is to use what are called heuristic elimination methods . these methods consist of the elimination of options based on the sequential elimination of features until only one choice remains . these methods tend to be very context - specific and do not lend themselves very easily to mathematical analysis . economists focus on utility - maximing models that are significantly more mathematically tractable than psychological models . the most common economic model of choice is the logit model . the problem with these types of models is that they are not very accurate reflections of how consumer make choices on the internet . the first step in our research will be to develop choice models that capture the interactions going on between customers and companies on the internet . optimization : traditionally , the optimization problem consists of maximizing revenue over a certain planning horizon . on the internet , the problem of maximizing revenue still exists , but there is also a need to learn about customers . short term profit is based on sales , but long term profit is based on how well you know your customers and are able to retain them . the optimization problem must therefore include a short term component ( sales ) and a long term component ( learning ) .",0 +"Subject: re : real options stinson / krishna , paul q , raymond y and i will call 5 . 30 pm houston time thursday afternoon to discuss . that is 8 . 30 am sydney time . if that is not convenient , i will call krishna to arrange another time . regards , paul stinson gibner @ ect 05 / 04 / 2001 07 : 29 am to : paul smith / enron _ development @ enron _ development cc : pinnamaneni krishnarao / hou / ect @ ect , vince j kaminski / hou / ect @ ect subject : re : real options paul , krishna and i are thinking that you may be able to book this type of option as a call swaption on power . if you would like to discuss further , let ' s set up a time when we can call you . - - stinson - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 04 / 04 / 2001 04 : 27 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 04 / 02 / 2001 08 : 16 am to : paul smith / enron _ development @ enron _ development cc : stinson gibner / hou / ect @ ect , vince j kaminski / hou / ect @ ect , paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development subject : re : real options paul , we have done a lot of work in this area . i shall call you later today ( monday my time ) , tuesday morning your time with some recommendations . vince p . s . shirley , please send a real options binder to paul . vince from : paul smith @ enron _ development on 03 / 30 / 2001 08 : 42 am zel 0 to : vince j kaminski @ ect cc : paul quilkey / enron _ development @ enron _ development , raymond yeow / enron _ development @ enron _ development subject : real options vince , the sydney office is currently evaluating a proposal that involves an option to participate in building a wind farm . should this proceed , we would like to mark this option "" to market "" . have the research group completed any work on methods for booking and remarking real options ? alternatively , do you have any suggestions as to the best way to value , and book , real options fairly ? regards paul smith",0 +"Subject: risk management meeting at georgia tech you are welcome to attend the following meeting in the area of quantitative and computational finance and risk management in the mrc auditorium on the georgia tech campus from 1 pm to 6 pm on friday , march 30 th . there will be five speakers that will give presentations on a variety of topics . dr . curt hunter , research director , federal reserve bank of chicago dr . mary mathewes kassis , associate director , georgia state university economic forecasting center dr . alan white , professor of finance , university of toronto , and mr . pete van amson , cfa , cpa , vice president , product management , sungard trading and risk systems dr . dennis wong , vice president , quantitative finance , bank of america securities there is no charge for the event . this will be the inaugural meeting of the atlanta chapter of the global association of risk professionals ( garp ) . you need not be a member of garp to attend the meeting . information about garp can be found at http : / / www . garp . com . we are asking that attendees rsvp so that plans can be made for refreshments . we only ask that you reply to this email or to atlanta @ garp . com before march 21 if you plan to attend . in addition to a break half - way through the afternoon , there will be refreshments immediately following the presentations . this event is sponsored by the master of science in quantitative and computational finance program at georgia tech , sungard trading and risk systems , and suntrust banks , inc . please pass along this announcement to your associates . information about the talks and the speakers dr . curt hunter research director , federal reserve bank of chicago dr . hunter ' s discussion is entitled "" lessons learned from recent global financial crises . "" since 1990 , major banking and currency crises have occurred in many countries around the world - including mexico and latin america in 1994 , east asia in 1997 - 98 , and russia and brazil in 1998 , among others - with large costs both to the individual countries experiencing the crises and to other nations . as a result , considerable effort has been expended by economists and policymakers to identify the causes of these crises and to design programs with the aim of preventing , if possible , similar crises from occurring in the future , and minimizing the costs when they do occur . this talk reviews the key lessons policymakers have learned from these recent episodes and highlights the role that risk management plays in crisis prevention . dr . william c . ( curt ) hunter is senior vice president and director of research at the federal reserve bank of chicago . he is a member of the bank ' s management committee and serves as the bank ' s chief economist . he is responsible for a staff of 115 professionals and oversees the bank ' s research activities in the areas of monetary policy , banking and financial markets , and regional economics programs . he is also responsible for the bank ' s statistical and financial reports function . dr . hunter is an associate economist on the federal open market committee , the federal reserve system ' s primary monetary policy group . previously , he was a vice president at the federal reserve bank of atlanta and has served on the faculties of the university of georgia , emory university , chicago state university , and northwestern university . he has consulted with numerous foreign central banks , official agencies , and private corporations and serves on the boards of several research and nonprofit organizations . he is co - editor of research in banking and finance and serves on the editorial boards of several academic journals . dr . hunter earned a b . s . degree in 1970 from hampton institute ( now hampton university ) , an mba in finance in 1972 and a ph . d . in finance and environment in 1978 from northwestern university . dr . mary mathewes kassis associate director , georgia state university economic forecasting center dr . kassis will provide her outlook for the georgia and atlanta economies over the next two years . she will focus on economic risks specific to atlanta , including its exposure to the contraction of the it sector , potential over development of office space , and a declining rate of job growth . regardless of your field , this should be a very informative discussion . dr . kassis has been analyzing the southeast economy for over five years . she writes a quarterly report that examines the current economic conditions in 13 southeastern states as well as an outlook for the next couple of years . she also prepares an in - depth quarterly analysis of the outlook for the georgia and atlanta economies . she is regularly quoted in publications such as the wall street journal , the atlanta journal - constitution , and the atlanta business chronicle . dr . kassis received a b . a . in economics and political science from agnes scott college and a ph . d . in economics from georgia state university . dr . alan white professor of finance , university of toronto mr . pete van amson , cfa , cpa vice president , product management , sungard trading and risk systems dr . alan white and mr . peter van amson will discuss applied term structure modeling . sungard has implemented a version of the hull - white term structure model that banks use in measuring and managing the market value sensitivity of various balance sheet components . peter will touch on some of the complexities involved in modeling non - maturity deposits ; with regard to the term structure of interest rates , alan will discuss some of the problems and possible solutions in bridging the divide between what is required from a theoretical standpoint and what is feasible in a production process . dr . alan white is a professor of finance in the joseph l . rotman school of management at the university of toronto . his research is principally in the area of derivative securities , their pricing and their use by financial institutions for risk management . he is most noted for his work on modeling the term structure of interest rates in a way that is consistent with observed market data . recently his research has been focused on the pricing and management of credit risk . professor white has published many scholarly articles , but is perhaps best recognized for providing lucid insights into the practical application and implementation of this research . much of his material is included in the best - selling book hull - white on derivatives , co - authored with john hull . mr . peter van amson is the vice president of product management at sungard trading and risk systems where he is responsible for the development of all functional specifications for the bancware product suite . in this capacity , he frequently interacts with sungard user - committees , leading academics , and other leading industry practitioners . he frequently makes presentations at conferences and seminars sponsored by bai , amifs , the occ , as well as other organizations . prior to working with bancware , peter headed the strategic planning function for the plymouth rock company , one of america ' s most profitable insurance holding companies . in this role , he helped define the company ' s strategic vision as well as being involved in investment analysis , asset / liability management and quantitative profitability aanalysis . peter has a b . s . and m . s . in accounting from the state university of new york at binghamton . he is currently a ph . d . candidate at the university of michigan . peter has received numerous academic awards and honors including the william andrew paton fellowship at the university of michigan and the new york state society of certified public accountants award for academic excellence . dr . dennis wong vice president , quantitative finance , bank of america securities dr . wong will discuss competing vendor approaches to credit risk modeling , including creditmetrics , kmv , creditrisk + and creditportfolio view . these models are viewed in a theoretical framework that identifies migration probabilities , credit exposure and loss aggregation . dr . wong has a ph . d . in mathematical finance from carnegie mellon university . he has given talks and seminars for the american mathematical society , the society for industrial and applied mathematics , the university of toronto , and georgia tech . he is the author of "" generalized optimal stopping and financial markets "" , published in pitman research notes in mathematics series .",0 +"Subject: re : recovery plan it would be funny if it were not quite so close to the truth !",0 +"Subject: hc collar valuation - update andrea , we computed the hc historical volatility for last 3 years , it is 47 . 2 % . using this volatility , the costless collar call strike is at 83 . 32 . zimin",0 +"Subject: re : houston visit soussan , my assistant , shirley crenshaw , will call you regarding the time of the meeting . right now the afternoon is open . i look forward to meeting you on the 19 th . vince "" faiz , soussan "" on 03 / 30 / 2000 02 : 31 : 18 pm to : "" ' vkamins @ enron . com ' "" cc : subject : houston visit dear vince , greetings from ny & hope all is well . as you may recall from the rog real options conference in ny , i ' d indicated the opportunity to visit with you next time i ' m in houston . i ' ll be there during 4 / 18 - 4 / 21 & wonder if we can pls meet on wed . 4 / 19 in your offices . would appreciate it if you can pls let me know whether you ' re available then ( i ' m flexible on the schedule particulars ) . if not , pls let me know whether 4 / 18 ( afternoon ) , 4 / 20 ( afternoon ) , or 4 / 21 ( morning ) will work for you . i really look forward to the opportunity & would appreciate to learn more about how you ' ve instigated the real options thinking in enron and especially its integration within the organizational & incentive matters . many thanks , soussan faiz mgr . of global valuation services texaco inc . ( 914 ) 253 - 4187",0 +"Subject: california update 5 / 4 / 01 if you have any questions , please contact kristin walsh at ( 713 ) 853 - 9510 . bridge loan financing bills may not meet their may 8 th deadline due to lack of support sources report there will not be a vote regarding the authorization for the bond issuance / bridge loan by the may 8 th deadline . any possibility for a deal has reportedly fallen apart . according to sources , both the republicans and democratic caucuses are turning against davis . the democratic caucus is reportedly "" unwilling to fight "" for davis . many legislative republicans and democrats reportedly do not trust davis and express concern that , once the bonds are issued to replenish the general fund , davis would "" double dip "" into the fund . clearly there is a lack of good faith between the legislature and the governor . however , it is believed once davis discloses the details of the power contracts negotiated , a bond issuance will take place . additionally , some generator sources have reported that some of the long - term power contracts ( as opposed to those still in development ) require that the bond issuance happen by july 1 , 2001 . if not , the state may be in breach of contract . sources state that if the legislature does not pass the bridge loan legislation by may 8 th , having a bond issuance by july lst will be very difficult . the republicans were planning to offer an alternative plan whereby the state would "" eat "" the $ 5 billion cost of power spent to date out of the general fund , thereby decreasing the amount of the bond issuance to approximately $ 8 billion . however , the reportedly now are not going to offer even this concession . sources report that the republicans intend to hold out for full disclosure of the governor ' s plan for handling the crisis , including the details and terms of all long - term contracts he has negotiated , before they will support the bond issuance to go forward . currently there are two bills dealing with the bridge loan ; ab 8 x and ab 31 x . ab 8 x authorizes the dwr to sell up to $ 10 billion in bonds . this bill passed the senate in march , but has stalled in the assembly due to a lack of republican support . ab 31 x deals with energy conservation programs for community college districts . however , sources report this bill may be amended to include language relevant to the bond sale by senator bowen , currently in ab 8 x . senator bowen ' s language states that the state should get paid before the utilities from rate payments ( which , if passed , would be likely to cause a socal bankruptcy ) . according to sources close to the republicans in the legislature , republicans do not believe there should be a bridge loan due to money available in the general fund . for instance , tony strickland has stated that only 1 / 2 of the bonds ( or approximately $ 5 billion ) should be issued . other republicans reportedly do not support issuing any bonds . the republicans intend to bring this up in debate on monday . additionally , lehman brothers reportedly also feels that a bridge loan is unnecessary and there are some indications that lehman may back out of the bridge loan . key points of the bridge financing initial loan amount : $ 4 . 125 b lenders : jp morgan $ 2 . 5 b lehman brothers $ 1 . 0 b bear stearns $ 625 m tax exempt portion : of the $ 4 . 125 b ; $ 1 . 6 b is expected to be tax - exempt projected interest rate : taxable rate 5 . 77 % tax - exempt rate 4 . 77 % current projected blended ir : 5 . 38 % maturity date : august 29 , 2001 for more details please contact me at ( 713 ) 853 - 9510 bill sb 6 x passed the senate yesterday , but little can be done at this time the senate passed sb 6 x yesterday , which authorizes $ 5 billion to create the california consumer power and conservation authority . the $ 5 billion authorized under sb 6 x is not the same as the $ 5 billion that must be authorized by the legislature to pay for power already purchased , or the additional amount of bonds that must be authorized to pay for purchasing power going forward . again , the republicans are not in support of these authorizations . without the details of the long - term power contracts the governor has negotiated , the republicans do not know what the final bond amount is that must be issued and that taxpayers will have to pay to support . no further action can be taken regarding the implementation of sb 6 x until it is clarified how and when the state and the utilities get paid for purchasing power . also , there is no staff , defined purpose , etc . for the california public power and conservation authority . however , this can be considered a victory for consumer advocates , who began promoting this idea earlier in the crisis . socal edison and bankruptcy at this point , two events would be likely to trigger a socal bankruptcy . the first would be a legislative rejection of the mou between socal and the governor . the specified deadline for legislative approval of the mou is august 15 th , however , some decision will likely be made earlier . according to sources , the state has yet to sign the mou with socal , though socal has signed it . the republicans are against the mou in its current form and davis and the senate lack the votes needed to pass . if the legislature indicates that it will not pas the mou , socal would likely file for voluntary bankruptcy ( or its creditor - involuntary ) due to the lack operating cash . the second likely triggering event , which is linked directly to the bond issuance , would be an effort by senator bowen to amend sb 31 x ( bridge loan ) stating that the dwr would received 100 % of its payments from ratepayers , then the utilities would receive the residual amount . in other words , the state will get paid before the utilities . if this language is included and passed by the legislature , it appears likely that socal will likely file for bankruptcy . socal is urging the legislature to pay both the utilities and the dwr proportionately from rate payments .",0 +"Subject: re : request thanks vince . this is great . by the way , did you get copies of the journal with our paper ? john at 04 : 59 pm 3 / 23 / 01 - 0600 , you wrote : > > john , > > no problem . > i look forward to it . > > vince > > > > > > "" john d . martin "" on 03 / 23 / 2001 09 : 04 : 44 am > > to : vkamins @ enron . com > cc : > subject : request > > > vince , > > would you mind making a few luncheon comments to the texas finance festival > group at our sat luncheon ? i struck out with andy and sheridan thought > that you could relate very well to the group . how about it ? > > john > > john d . martin > carr p . collins chair in finance > finance department > baylor university > po box 98004 > waco , tx 76798 > 254 - 710 - 4473 ( office ) > 254 - 710 - 1092 ( fax ) > j _ martin @ baylor . edu > web : http : / / hsb . baylor . edu / html / martinj / home . html > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: ben zhang timeframe hi , can and should we organize a tag - team baby sitting detail ? aghh ! another weekend that is not my own ! grant . - - - - - - - - - - - - - - - - - - - - - - forwarded by grant masson / hou / ect on 09 / 14 / 2000 08 : 51 am - - - - - - - - - - - - - - - - - - - - - - - - - - - enron north america corp . from : toni graham @ enron 09 / 13 / 2000 05 : 08 pm to : grant masson / hou / ect @ ect cc : subject : ben zhang timeframe grant , what do you think ? if you really want this guy , you may suggest someone in your group to "" entertain "" them while they are here . what do you think ? - - - - - - - - - - - - - - - - - - - - - - forwarded by toni graham / corp / enron on 09 / 13 / 2000 04 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - meastman @ qualitec . com on 09 / 13 / 2000 02 : 05 : 53 pm to : cc : subject : ben zhang timeframe toni , i spoke with ben today and he is planning to pay for a trip to bring his wife to houston this weekend and show her around in hopes of overcoming her hesitiation on moving . his question is whether enron will give him the time to bring her down here and then give an answer next week ? if you will let me know how you , grant , and vince feel about that . thanks , mike qualitec professional services , lp accounting - financial - energy risk - tax search consultants mike eastman , cpc president 281 - 647 - 9300 fax 281 - 647 - 0933 email - meastman @ qualitec . com",0 +"Subject: re : from vicky windsor vicky , please , send me your resume . i shall forward it to a number of employees of enron in london with my strongest recommendation . i shall send you the list of names . the resume will make it easier for me to identify good targets . please , make sure you will contact me if there is no reaction . people here are very busy and , as you know , things fall through the cracks . vince vince "" vicky windsor "" on 10 / 11 / 2000 04 : 49 : 56 am to : vkamins @ enron . com cc : subject : from vicky windsor dear vince , how are you ? well i hope . i hope you don  , t mind me writing to you . you may remember that 5 months ago i left risk publications and moved to a charity . having been here for only a few months , i have decided that this job is not for me ( i miss the buzz of a corporate office ) and i have decided to move back into the corporate sector . because of my previous experience and knowledge of the energy sector , i am very interested in moving into this area . i have always thought that it would be great to work for enron because it is such a dynamic company and i am planning to approach the london office to discuss any opportunities , which might be available . i am particularly interested in product marketing and research , although i am very open - minded at the moment . i wondered whether you could recommend the right person to speak to in london . i know that you are incredibly busy , but any help you can give me would be fantastic vince . thanks and best regards , vicky windsor get your private , free e - mail from msn hotmail at http : / / www . hotmail . com . share information about yourself , create your own public profile at http : / / profiles . msn . com .",0 +"Subject: re : resume , vince , if you are interested in this candidate i would suggest that you talk to him directly . he probably is not a "" fit "" for the global technology track . thanks , ashley vince j kaminski @ ect 10 / 24 / 2000 04 : 31 pm to : ashley baxter / corp / enron @ enron cc : vince j kaminski / hou / ect @ ect subject : resume , ashley , another student who responded after my presentation . what do you think ? should we talk to him ( research ) directly ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 10 / 24 / 2000 04 : 37 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jinbaek kim on 10 / 23 / 2000 07 : 25 : 36 pm to : vkamins @ enron . com cc : subject : resume , dear mr . kaminski , hi , i am a ph . d student at ieor department at u . c . berkeley . thanks for your presentation today . it gave me knowledge and interest in electricity markets , and your company . as you mentioned in the presentation , i send a resume to give me opportunity to learn more about your company . i hope i can join the super saturday event . jinbaek - resume . doc",0 +"Subject: freese notis mike : we are currently being billed for freese notis weather . i will need to allocate these charges to the appropriate cost center . if you would like to continue this service i could allocate it directly to your cost center or send you the bill directly . if you know of anyone else who uses this application please let me know and i will split the cost among the departments . thank you , danielle marcinkowski",0 +"Subject: yvan chaxel your name was listed by yvan as a reference on his application for a graduate school tuition loan . your assistance in this process is greatly appreciated .",0 +"Subject: project hi michelle , chris , helen and i met this afternoon and discussed about the project . we think the following course of action is appropriate . the model interface will be in excel spreadsheet , with most of the inputs ( from enron as well as from the consultant ) hiding in an access data base . the access data base can be update when needed . the engine will be written in visual basis code and be linked to excel through xll ( or dll ) . helen has been discussing with ken about various aspects of the model and will finalize the access data table form with ken . in the mean time , helen and i will start working on code this thursday ( she will be in training wednesday ) . best , alex",0 +"Subject: new eprm speakers vince , thanks very much for your help helen - - - - - original message - - - - - from : vince j kaminski to : helen evans cc : stinson gibner date : 10 december 1999 19 : 14 subject : re : new eprm speakers helen , i forwarded your message to my associate stinson gibner whom i can wholeheartedly recommend . vince "" helen evans "" on 12 / 06 / 99 10 : 29 : 39 am please respond to "" helen evans "" to : vince j kaminski / hou / ect @ ect cc : subject : new eprm speakers vince , i ' m currently looking to broaden eprm ' s speaker base and would like to find a speaker for a training course i am producing on the monte carlo technique . i was wondering if you might be able to recommend somebody new from enron who might like to speak on this subject . i ' d really appreciate any help you could give me . many thanks helen evans producer , eprm conferences & courses - attl . htm",0 +"Subject: re : recruiting a response from jean . . . - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin kindall / corp / enron on 11 / 06 / 2000 03 : 50 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - jean eisel on 11 / 06 / 2000 03 : 34 : 05 pm to : kevin . kindall @ enron . com cc : sgould @ andrew . cmu . edu subject : re : recruiting hi kevin wow you sure do pack one e - mail . i will try to answer questions . . . after each of you . . . look in the email for answers . - - on monday , november 06 , 2000 , 2 : 39 pm - 0600 kevin . kindall @ enron . com wrote : > hello . it was a pleasure to come back to cmu , and i enjoyed > interacting with the students . vince k . has expressed interest in > interviewing the computational finance students . enron will conduct first > round interviews with the mba students in december , and would like to set > up seperate interviews for the comp . fin . students . enron would like to > interview all the pittsburgh based comp . fin students , and we need to > select a date and a time . we are excited that you want to interview the comp finance students . do you want to do it in dec . or before ? let me know what best suits you . since there are only 16 individuals in the pittsburgh area . . . we should be able to accomodate you . . . would you want one or two schedules . . ? what is the formal protocol in such matters ? > all you need to do is let me know some ideal dates . . . and you send a job description and names of the students you want to interview . we will try to be as accomodating as possible . > enron is also interested in the ecommerce students as we have > ecommerce initiatives underway . it is my understanding that kristen > gandy will be the contact for such activities . if you can send me an e - mail address for kristen , i can get this strating asap . > > regarding a houston based satellite program , vince needs a proposal > in writing . would you be so kind as to send one ? what program is vince interested in having a satellite program ? when he was here he seemed less intererted in comp finance and more interested in e - commerce . i sent a note to michael shamos and tridas discussing this . let me know which program and i will see if we can work anything out ? > thanks so much , and i look forward to seeing you again in a few > weeks . > thanks kevin for you speedy response . > > > > jean e . eisel , ph . d . associate dean , admissions , coc and alumni relations gsia carnegie mellon university pittsburgh , pa 15213 412 - 268 - 2277 412 - 268 - 4146 ( fax ) currently in the news : carnegie mellon university mba program ranked 14 th in business week ' s list of the best graduate schools of business in the united states . ",0 +"Subject: re : important - prc mtg hi dorn & john , as you discovered recently , i am still ' officially ' in vince kaminski ' s group ( my original enron corp . group ) . this holds true for shalesh ganjoo as well . i did not explicitly pick dorn or john as reviewers thinking that they will show up automatically as a result of my assumed reporting structure . so , vince has agreed to ' host ' the review in his group and proceed to transfer me over to ebs officially when this quarter is overs ( apprently that was scheduled to be automatic ) . in the mean time , vasant , stinson or vince would like to get a e - mail from either dorn or john regarding my performance from their perspective for consideration as soon as possible . i had plan on being on vacation starting tomorrow and have made arrangement with my family already . since i am not reviewing shalesh directly ( since he is in research under stionson ) , i am assuming i don ' t have to attend the review meetin tommorrow . i ' ll be on the road starting in the morning . if i change this , i am told at home , that i will be in the market for another family ! i can phone in if that is okay . kayla , could you page me with the details ? regards , ravi .",0 +"Subject: rtp project john and krishna , i am sending you an outline of a conference at stanford on topics related to demand - side pricing and management in the power markets . please , let me know if you are personally interested and who else in your respective organizations would like to attend . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 03 / 19 / 2001 08 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - hill huntington on 03 / 15 / 2001 05 : 26 : 55 pm to : vkamins @ enron . com cc : subject : rtp project vince , targetted conference date is th - f june 21 - 22 at stanford . enclosed in the recent revision to what i sent before . great to meet you , hill - retail notes . rtf hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: btu ' s daily power report - eastern edition attached is the latest issue of btu ' s daily power report : eastern edition e - mail : info @ btu . net phone : 732 - 758 - 8222 fax : 732 - 758 - 8286 - peo 71100 . pdf",0 +"Subject: clayton vernon kevin , vasant and i talked to clayton about his request for transfer . clayton received a conditional approval contingent upon completion of the current project he works on . vasant will formulate exact definition of the deliverables and we will hold clayton to it . if he fails to deliver the request for transfer will be rejected . anything else would be highly demoralizing to everybody . clayton has so far produced exactly zero ( no single output was delivered ) though he was advertising the projects inside and outside the group as completed . i want you to be aware of it , because i have serious doubts regarding clayton ' s integrity . vince",0 +"Subject: referral mr . kaminski , i have attached a resume below i thought you might find of interest , it is from a business school acquaintance of mine , denis suvorov . denis is a highly intelligent ph . d . candidate at my former school and is currently looking for opportunities within a research / modelling framework . he has significant academic experience working on asset pricing models and after speaking with pavel zadorozhny about his background and objectives , he recommended i forward a copy of his credentials to you . i hope this is suitable and would be of interest to you . thanks , matthew frank",0 +"Subject: 2001 budget i need your help . . . i did a quick comparison for the 2000 and 2001 budget and i am showing a significant increase from last year . did we have an increase in headcount ? i do not know your actual budget for 2000 . i used the information for the last 5 months of 2000 budget to estimate for the year ( see 2000 budget tab in the attached file ) . the attached file contains the following tabs : budget vs budget comparison of 2000 vs 2001 allocation allocation - please allocate the rest of the 21 . 7 % to ena 2000 budget estimated 2000 budget based on the last 5 months information research 2001 budget the calculation for taxes and benefits does not equal to the calculation in your template ( corp ) . plus , i have to add a & a overhead cost that corp will bill us for a & a program ( line 78 ) . can we meet to discuss the allocation to ena and the increase in plan ? i am open all week except for wednesday between 10 and 11 . thank you .",0 +"Subject: june 21 - 22 retail electricity conference dear workshop participant : i hope you will be able to join us for the conference on "" retail participation in competitive power markets "" to be held at the littlefield conference center , stanford university , on june 21 - 22 , 2001 . conference attire will be business casual . the meeting will begin on thursday morning , june 21 , at 9 : 00 a . m . and will conclude by 5 : 00 p . m . on friday , june 22 . a continental breakfast will be available in the meeting room each morning beginning at 8 : 30 a . m . please visit the "" june 21 - 22 "" meeting under for a description of the meeting and some information about hotels . please help us in our planning by using the form there to respond back to emf about your participation . we have listed potential participants and planned presentations based upon previous messages . please update me with any additional presentations or changes in existing presentations . i look forward to seeing you in june . in the interim , please do not hesitate to call me or email me if you have questions or suggestions regarding this workshop . hill huntington hillard g . huntington emf - an international forum on energy and environmental markets voice : ( 650 ) 723 - 1050 408 terman center fax : ( 650 ) 725 - 5362 stanford university email : hillh @ stanford . edu stanford , ca 94305 - 4026 emf website : http : / / www . stanford . edu / group / emf /",0 +"Subject: uk inflation presentation deal all , please find attached a copy from a presentation on uk inflation we gave this morning to john sherriff , president & coo enron europe . it summarizes the results of our work on inflation so far . as you know the long term models still remain to be approved . as today is quarter end and there is a significant p & l effect on a mtm basis john sherriff would like to proceed as soon as possible with the new curves . thank you all for all your help ! best regards , martina x 34327",0 +"Subject: re : rollover of my vacation days to 2001 krishna , no problem . approved . vince pinnamaneni krishnarao 12 / 11 / 2000 06 : 28 pm to : vince j kaminski / hou / ect @ ect cc : subject : rollover of my vacation days to 2001 vince : i would like to rollover my vacation days for 2000 remaining at the end of this year to 2001 . i could not use us all of my available vacation this year because of the following reasons : 1 . as you know , i have been supporting three business units ( ees , epg & enron india ) this year . all these units had difficult and relatively long projects that required experience in energy markets , derivatives pricing and business knowledge that i had gained over the last few years at enron . 2 . there has been a significant change in the team members reporting to me . i now have six people under me compared to only three at the begin of the year . of the current six members , five joined us only this year and most of them didn ' t have any prior work experience , thus requiring a lot of my time in recruiting , training and mentoring . 3 . given that i had to visit our bombay office in january , 2000 for a business trip ( 10 days ) and will need to go there again in january , 2001 , i could not take leave from my work for the other two units ( ees & epg ) for an extended period of time . so , in summary , this year has been a long and challenging one , and as a result , i could not take vacation for more than a few days . i request you to grant the rollover of my remaining vacation to next year . currently i have 136 hours of vacation available and , of these , i expect to have 112 hours unused at the end of this year . thank you , krishna .",0 +"Subject: re : info help . krishna , niclas introduces himself as an associate in the research group . i think we should clarify his status . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 08 / 15 / 2000 05 : 53 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" michael schilmoeller "" on 08 / 15 / 2000 11 : 08 : 06 am to : notes : niclas . egmar @ enron cc : vkamins @ enron . com , grant _ masson @ pgn . com , stinson _ gibner @ pgn . com subject : re : info help . hi niclas , i am in the middle of preparing some presentations right now , so it might be more productive to speak by phone ( 503 - 464 - 8430 ) . please leave your number , if you get my voicemail . to get you started , you might see if you can get access to the ferc gads database of plant forced and planned availability . it seems others in research have asked about this , so you may already have this at your disposal . the eia has a good electronic database of plant for and por available for free ( http : / / www . nerc . com / ~ esd / ) . i know alexios in re / ees has this . if you wanted to do it the hard way , you can also ask jaison to access the epa ' s cems data he has summarized on a machine there in research . it contains hourly plant operation for every unit over about 50 mw , which you could aggregate up . the wscc 10 - year forecast of new plant construction and loads is a good place to start for plant construction information , but suffers from some notorious "" self - reporting "" error . it is available in pdf form from the web site http : / / www . wscc . com / . other sources that should be more near - term , but more accurate are the cec inventory of plants ( http : / / www . energy . ca . gov / ) and the bpa whitebook ( http : / / www . transmission . bpa . gov ) . as far as basic economic data is concerned , you can either rely on the reported utility forecasts for loads , or you can go to fundamental data . the ultimate source of the census data collected by the us dept of commerce , which you can buy on cdrom for cheap . it would have this kind of information by sic code , by zip code . you may also have access to one of the economic forecasting businesses ( wharton ' s wefa , dri , etc . ) they have this in highly digested and complete form . btw , tim heizenrader , who runs fundamental analysis and research on the west desk , is a sharp cookie and should have all this under control . is your client aware of this resource ? give me a buzz and we can talk more , michael > > > niclas egmar / hou / ees @ enron 08 / 14 / 00 12 : 49 pm > > > michael , i ' m an analyst in the research group . i would like your help with finding some information specific for the west coast . a new analyst on the west power desk needs information on planned outages and planned new generation . he is studying the long - term fundamentals of electricity volatility on the west coastso so he also needs info on housing starts , computer sales or industrial production figures for computer manufacturing , growth of start - up companies , and population stats . any help in finding the needed info would be greatly appreciated . contact me or daniel kang ( new analyst ) . niclas - text . htm",0 +"Subject: poten & partners forecasts fyi marg . - - - - - - - - - - - - - - - - - - - - - - forwarded by margaret carson / corp / enron on 01 / 21 / 2000 07 : 31 am - - - - - - - - - - - - - - - - - - - - - - - - - - - doug leach @ ect 01 / 21 / 2000 07 : 00 am to : guy dayvault / corp / enron @ enron cc : margaret carson / corp / enron @ enron , rob bradley / corp / enron @ enron , jim goughary / hou / ect @ ect , ted robinson / hou / ect @ ect , wade doshier / hou / ect @ ect , david j botchlett / hou / ect @ ect , john l nowlan / hou / ect @ ect subject : poten & partners fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by doug leach / hou / ect on 01 / 21 / 2000 06 : 58 am - - - - - - - - - - - - - - - - - - - - - - - - - - - doug leach 01 / 20 / 2000 03 : 47 pm to : michael l brown / enron _ development @ enron _ development cc : david a terlip / enron _ development @ enron _ development , kevin beasley / lon / ect @ ect , john chismar / sin / ect @ ect , michel decnop / sin / ect @ ect , maurizio la noce / enron _ development @ enron _ development , marc de la roche / hou / ect @ ect subject : poten & partners just some of george gail ' s observations : he expects wti crude prices to return to a range of $ 19 - $ 22 / barrel by 2 q 2000 ( brent $ 18 - $ 20 ) although emotions rather than fundamentals will continue to drive the market . saudi ' s sold cal 00 naphtha at $ 8 m / t over the platt ' s ag mean and the kuwaiti ' s are offer their naphtha at $ 11 m / t over the mean . enoc offered 700 , 000 tons of term naphtha and only sold 200 , 000 tons . adnoc ' s splitters should add even more naphtha supplies to the market . koch has closed their rotterdam splitter due to poor economics . not necessarily a permanent shutdown . he expects the brent / dubai spread to return to more normal $ 1 - $ 1 . 25 / barrel . regarding condensate he predicts that actual demand will drive the market and there will be less bottomfeeding by the japanese and other refiners . he does feel the new splitters will reduce the worldwide volumes available , but that there will still be adequate supplies . he thinks crack spreads for refiners will still be weak during cal 00 . although some resid demand will be displaced by natural gas or lng , he expects fairly stable differentials to crude . he expects strong us gasoline demand , but limits his demand growth projection to 1 % for the year .",0 +"Subject: introduction vince : as way of introduction , i wanted to write a bit about mars inc . and then about cds , the unit i head . mars is a private company , considered to be the largest privately owned manufacturing company in the world . mars is not in the habit of disclosing its finances , so the best i could do is refer to forbes ' estimate of $ 15 billion annual revenue and to the profit margins of similar companies between 5 - 12 % . mars is in the business of manufacturing confectionery ( m & m , dove bar , skittles , twix , - all ( r ) ) food ( uncle ben rice ( r ) ) pet food ( pedigree , whiskas waltham ( r ) ) and other products . mars has prospered during the years because of a unique philosophy that emphasizes the long term goals of the company . part of the philosophy is to look for win - win solutions with its suppliers , customers and partners . as can be understood from the nature of the company , a large chunk of its expenses goes towards purchasing commodity like products , and hence the history of researching those commodities and the weather that influences their supply and the demand ( people eat less ice cream in the winter and less chocolate in the summer ) . cds has a history of few decades in forecasting weather and has been very successful , with an envious track record , in helping mars get a competitive advantage in these arenas . cds is a global group ( in 4 countries across two continents ) which supports the purchasing function and the corporate at large in these and other arenas . it is a multidiscipline and multinational team with a lot to offer . not having a ready access to the energy markets , and with a risk profile based on manufacturing expertise , mars has decided to look for potential partners in this area . enron presence in the market place certainly makes it an interesting party to talk to . in talking to enron , we are careful to suggest that mars is not committing to anything at this point , and all we are after is to find out if there is an interest to pursue the opportunity we discussed in the future . i am looking forward to our video conference call . kind regards , avi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - avi i . hauser phd mba cds director 100 international drive mt olive nj 07828 - 1383 + 1 973 691 3664 ( office ) + 1 973 347 8189 ( fax ) + 1 973 727 3622 ( car + slow paging ) hauser @ cdsusa . com",0 +"Subject: datren williams acceptance fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 10 / 10 / 2000 08 : 10 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - carol coats 09 / 29 / 2000 02 : 36 pm to : celeste roberts / hou / ect @ ect cc : stinson gibner / hou / ect @ ect subject : datren williams acceptance celeste , i just received datren williams ' acceptance with the following note attached : "" my graduation date ( ph . d . candidate from lsu ) is dec . 2000 . celeste roberts has informed me that i would have the option of starting work feb . 2001 . i am under the impression that i will start in feb . 2001 . my offer letter has a start date of aug . 2001 . if this is a problem , please give me a call . looking forward to working at enron . thanks a million , datren w . "" please let me know if he may in fact start in feb . 2001 , and if so , do you have a specific date for him , or may he choose ? thanks , celeste , carol",0 +"Subject: meeting confirmation / discussion points fyi . - - - - - - - - - - - - - - - - - - - - - - forwarded by pinnamaneni krishnarao / hou / ect on 08 / 03 / 2000 08 : 16 am - - - - - - - - - - - - - - - - - - - - - - - - - - - david foti @ ees 08 / 02 / 2000 05 : 06 pm to : pinnamaneni krishnarao / hou / ect @ ect , minal dalia / hou / ees @ ees , sanjay agarwal / hou / ees @ ees , naveen andrews / corp / enron @ enron cc : scott stoness / hou / ees @ ees subject : meeting confirmation / discussion points tariff var project kick - off meeting time : 8 / 3 ; 2 - 3 pm location : eb 612 = = = = = = = = = = = = = per the 8 / 2 lunch meeting between research , rac , and the tariff group , there developed a consensus to : develop a high level value - at - risk model within a 4 - 8 week time frame to use for initial risk measurement and hedging purposes accommodate links for critical variables such as interest rates , load growth , and inflation provide "" knobs "" for less quantifiable factors such as rate case frequency , rate methodology , etc . collaborate with the tariff forecasting team , to have consistent assumptions and logic . proposed agenda for our meeting : discuss the relationship of this project to other ongoing projects review existing t & d forecast model ( decide whether it ' s a starting point or not - attached for your review ) discuss approach ( methodology and technology ) assign responsibilities develop project guidelines and timeline see worksheets , "" diagram "" , "" graph "" , "" exposure """,0 +"Subject: skunkworks meeting - bi - weekly shirley and i have scheduled the skunkworks ' meetings with scott tholan beginning wednesday , july 5 from 2 : 00 to 3 : 30 . this meeting will take place every other wednesday ( same time and place ) for the next few months . these meetings will be held in ebl 938 . please mark your calendar , and if you have any serious conflicts , please let either shirley or me know . thanks , sharon 5 - 7212",0 +"Subject: re : part - time work cantekin , i shall call you tomorrow to discuss the details . vince "" cantekin dincerler "" on 09 / 18 / 2000 02 : 59 : 41 pm please respond to to : cc : subject : part - time work hi vince , i promised to get back to you on the part - time work issue . sorry for the delay , i got back to austin only last week . i talked to ehud about this and he is ok with it . just wanted to let you know . best , - - - - - - - - - oooo - - - - - oooo - - - - - - - - - - cantekin dincerler doctoral candidate the university of texas at austin graduate school of business department of finance office : ( 512 ) 471 - 1676 fax : ( 512 ) 471 - 5073 home : ( 512 ) 472 - 5356 cell : ( 512 ) 680 - 5355 http : / / uts . cc . utexas . edu / ~ cantekin - - - - - - - - - - - - - oooo - - - - - oooo - - - - - - - - - -",0 +"Subject: re : enron weather research good afternoon mike : i certainly am interested in determining if there may be a potential fit there at enron . i am very enthusiastic to apply my finance and meteorology backgrounds in a market - based environment that is driven to achieve unprecedented efficiencies . attached are two documents : 1 ) a business - focused resume , and 2 ) an abbreviated meteorology cv . graduate meteorology coursework included advanced atmospheric dynamics i and ii , advanced physical meteorology , boundary layer modeling , numerical modeling , research methods in meteorology , and turbulence . i will look forward to hearing from you . sincerely , greg hunt - - - - - original message - - - - - from : to : cc : ; ; sent : friday , april 27 , 2001 9 : 12 am subject : enron weather research > > greg , > > hello , and by way of introduction , we were forwarded your e - mail address by > heather thorne . > > i understand you have an m . s . in meteorology as well as an m . b . a . in > finance , and have done some research at livermore . > > i ' d be happy to learn more about your activities , and , if you are > interested , to see if there may be a potential fit here at enron . > > can you e - mail your resume with a description of your coursework and > research activities ? > > looking forward to hearing from you , > > mike roberts > vice president - research > - greg hunt _ resume _ 4 - 27 - 01 . doc - greg hunt _ cv _ meteorology _ 4 - 27 - 01 . doc",0 +"Subject: re : super saturday interviews vince - that is not a problem . we will not schedule you for a dinner . thanks for your help with interviews ! beth vince j kaminski 05 / 31 / 2000 06 : 04 pm to : beth miertschin / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect subject : re : super saturday interviews beth , please , let me know about friday night . i want to know if i should dress up for dinner . i am very busy and i would be glad to skip dinner if you have enough people to cover it . vince from : beth miertschin 05 / 31 / 2000 05 : 19 pm to : vince j kaminski / hou / ect @ ect cc : subject : super saturday interviews - - - - - - - - - - - - - - - - - - - - - - forwarded by beth miertschin / hou / ect on 05 / 31 / 2000 05 : 19 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : beth miertschin 05 / 31 / 2000 01 : 51 pm to : kevin ruscitti / hou / ect @ ect , tom adams / hou / ees @ ees , harold bertram / hou / ect @ ect , ted c bland / hou / ect @ ect , w tom byargeon / hou / ect @ ect , rogers herndon / hou / ect @ ect , kevin mcgowan / corp / enron @ enron , cindy skinner / hou / ect @ ect , mark tawney / hou / ect @ ect , greg woulfe / hou / ect @ ect , matthew arnold / hou / ect @ ect , keith holst / hou / ect @ ect , elspeth inglis / corp / enron @ enron , kim melodick / hou / ect @ ect , sheila walton / hou / ect @ ect , janet r dietrich / hou / ect @ ect , gary hickerson / hou / ect @ ect , vince j kaminski / hou / ect @ ect , george mcclellan / hou / ect @ ect , julia murray / hou / ect @ ect , jere c overdyke / hou / ect @ ect , jeffrey a shankman / hou / ect @ ect , fran l mayes / hou / ect @ ect , dave hill / corp / enron @ enron , brad mcsherry / hou / ect @ ect , toni graham / corp / enron @ enron , james a ajello / hou / ect @ ect , phillip k allen / hou / ect @ ect , edward d baughman / hou / ect @ ect , sally beck / hou / ect @ ect , bob crane / hou / ect @ ect , david oxley / hou / ect @ ect , kevin m presto / hou / ect @ ect , daniel reck / hou / ect @ ect , hunter s shively / hou / ect @ ect , cedric burgher / corp / enron @ enron cc : ginger b gamble / hou / ect @ ect , shelly jones / hou / ect @ ect subject : super saturday interviews thank you for volunteering to interview this super saturday , june 3 rd . we are working on the interview schedule and you will be receiving an interview packet no later than friday morning . please let us know as soon as possible if you have any conflicts and will not be able to participate . we appreciate your support of the associate / analyst program . beth miertschin",0 +"Subject: december 22 - srrs decommissioning notification srrs decommissioning notification we are one @ enron effective friday december 22 , 2000 , you will have a new security request database : in the past , enron corporate / north american users have used the security resource request system ( srrs ) lotus notes database for their security request needs including new hire / contractor / temporary access and terminations . in response to the business reorganization , the it security and controls group is working to streamline enron  , s security request structure and create one single request database for all groups to use , erequest , located at http : / / itcentral . enron . com / please click on the following link to retrieve the erequest training guide : a great deal of effort has been put into this project to eliminate any duplicate security requests in enron ' s global enterprise . when you attempt to access the srrs through lotus notes on dec . 22 , you will find a link to the new erequest system . if you have additional questions regarding your new security request or if you have any problems with the erequest system , please contact information risk management at 713 . 853 - 5536 . thank you information risk management",0 +"Subject: re : fw : opportunities vince i will call you on monday . i understand that unexpected meetings are a matter of life in today ' s world . gerry - - - - - original message - - - - - from : vince . j . kaminski @ enron . com [ mailto : vince . j . kaminski @ enron . com ] sent : friday , october 27 , 2000 3 : 12 pm to : gsheble @ iastate . edu cc : vince . j . kaminski @ enron . com subject : re : fw : opportunities gerry , i may have unexpected meeting ( s ) in the morning . please , keep trying and i shall try to call you as well . vince "" sheble , g . b . "" on 10 / 27 / 2000 09 : 09 : 16 am to : "" ' vince . j . kaminski @ enron . com ' "" cc : subject : re : fw : opportunities vince since we were not able to connect this morning , would you identify any other time as convenient for you ? should i try monday morning ? thank you gerry = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = gerald b . shebl , professor , electrical and computer engineering director of complex adaptive systems program 1115 coover hall ames , iowa 50011 voice : 515 . 294 . 3046 fax : 515 . 294 . 4263 email : gsheble @ iastate . edu web : http : / / www . ee . iastate . edu / ~ sheble / = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =",0 +"Subject: change of coordinates dear friends and colleagues , effective immediately , i have returned to the university of pennsylvania . the usual automatically - generated contact info should appear below ; please update your files . best regards , frank - - francis x . diebold department of economics university of pennsylvania 3718 locust walk philadelphia , pa 19104 - 6297 fdiebold @ mail . sas . upenn . edu http : / / www . ssc . upenn . edu / ~ diebold ( 215 ) 898 - 1507 telephone ( 215 ) 573 - 4217 fax",0 +"Subject: invitations to presentation only hi christie , when do you sleep ? 2 am , ugh ! ok , you were correct , my invitation was to those people within enron that the students talked with before interviewing competitors , and it was an invitation to the presentation only . i didn ' t think any of them would be invited to the dinner , and probably none will even come to the presentation . the invitation did elicit one request for the final report though , so maybe it wasn ' t a complete waste . i didn ' t realize that the dinner had turned into a box visit . that sounds great . i wish the group could have made it to dinner before the first game , that would have made the whole slumming experience better . now they ' ll get the royal treatment at enron field . it ' ll be great . vince invited 4 people from rice : dennis w . loughridge , director of energy consortium ; lounghrid @ rice . edu carrie miller , director of mba program ; cmiller @ rice . edu deborah barrett , inst . communications , barrett @ rice . edu dr . wil uecker , associate dean for executive education , uecker @ rice . edu loughridge wrote back saying he ' ll come , i don ' t know about the others here are the 6 students emails : "" ritwik \ ( ronnie \ ) ghosh "" , "" ivy ghose "" , "" luigi calabrese "" , "" pravas sud "" , "" syed \ ( farhan \ ) iqbal "" your 2 from rice makes a total of 12 from rice , i guess let me know if you would like me to do anything else related to monday look forward to seeing you then ken",0 +"Subject: re : rabi de ' s sign on bonus sorry vince i have been out of town . please give me a call tomorrow .",0 +"Subject: interview - thomas barkley 11 / 9 / 00 attached please find the resume , interview schedule , and evaluation form for thomas barkley . thomas is interviewing on thursday , november 9 , 2000 beginning at 8 : 00 a . m . please contact me with any comments or concerns . thank you , cheryl arguijo staffing coordinator 713 - 345 - 4016 - thomasbarkley . pdf ,",0 +"Subject: re : summer work . . jinbaek , thanks for your message . we have a number of additional fascinating projects that you can work on . as a matter of fact , it would be great to have you here earlier . vince "" jinbaek kim "" on 05 / 02 / 2001 05 : 18 : 32 am to : , "" raghavan , suresh "" , "" mesquita , ross "" cc : subject : summer work . . long time no see , how have you been . . . must be busy and living a challenging life ? i have been pretty busy too , to finish a project and write a paper , these days . everything looks going ok for my summer internship . i took necessary steps to work out of campus , and sent signed contract to molly a week ago . . here is what i am expecting to do in the summer . please let me know if you have any change in mind . actually , i wonder a little bit if dealbench changed its business model . . . and maybe you got priority in something different because it has been quite a while since we talked . i ' d like to what ' s going on in dealbench team . . . raghavan and ross , if we talk over phone it will be great ! dr . kaminski , if you think there is something else interesting to work with during the summer , to both you and i , please let me know . my interest is auction , market design , and simulation . i am taking a financial engineering class , ( mostly on option pricing ) and working on electricity generator valuation problem based on spark spread option . all of you , let ' s keep in touch until we meet in june ! ! best regards , jinbaek tentative work period : 6 / 4 - 8 / 4 1 . tasks : 1 ) survey on auctions : the state of art single - item auction , multi - unit auction , sequential auction , multi - attribute auction , combinatorial auction - theoretical - experimental - algorithmical 2 ) deal bench ' s auction model analysis 2 . deliverables : 1 ) 3 presentations : - lst presentation : around 6 / 30 : on different auction types and researches - 2 nd presentation : around 7 / 15 : the state of art in auction studies - 3 rd presentation : around 8 / 1 : deal bench ' s model analysis 2 ) report : summary of auction study in laymen ' s term deal bench ' s model analysis",0 +"Subject: hedging lng volumes stinson / vince , i think this is important to know . regards , sandeep . - - - - - - - - - - - - - - - - - - - - - - forwarded by sandeep kohli / enron _ development on 03 / 28 / 2001 08 : 23 am - - - - - - - - - - - - - - - - - - - - - - - - - - - anshuman srivastav 03 / 28 / 2001 06 : 32 : 20 am to : marc de la roche @ ect cc : tushar dhruv @ enron , doug leach @ ect , mohan gurunath / enron _ development @ enron _ development , rajesh sivaraman / enron _ development @ enron _ development , shubh shrivastava / enron _ development @ enron _ development , mukesh tyagi / enron _ development @ enron _ development ( bcc : sandeep kohli / enron _ development ) subject : hedging lng volumes hi marc , dpc would like a swap to hedge its price expsoure on lng . we do understand that there exists a basis risk between jcc ( the lng spa index ) and brent ( the market index for the product ) and will bear such risk . we also appreciate the fact that this is a financial product and irrespective of actual consumption , we will still have to bear the burden ( if any ) of the swap . fuel - lng indexed to jcc ( closely correlated to brent futures ) period volumes ( tbtu ) volumes ( mt ) volumes ( jcc bbls ) january 2002 to december 2002 33 . 61 650 , 000 9 , 127 , 049 january 2003 to december 2003 48 . 63 940 , 000 13 , 207 , 496 january 2004 to december 2004 48 . 63 940 , 000 13 , 207 , 496 crude swap price : can we look at a ' dirty ' hedge and get a crude ( $ / bbl ) swap price . like any other regular swap , this will be a monthly settle product . the above conversions from mt to bbls are based on lng conversion factors . ( 14 . 04 bbls / mt ) . we also would like to understand the requirements of the credit group to put this hedge in place . please indicate the process as well as the security mechanisms to provide adequate credit support for the swap . please call me ( 98210 38711 ) or rajesh ( 98201 88310 ) for any additional info . regards , anshuman",0 +"Subject: re : hello molly , kim watson would like us to bring jacob for another interview . we can do it later this week . vince vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 05 / 01 / 2001 02 : 22 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - from : kimberly watson / enron @ enronxgate on 05 / 01 / 2001 09 : 17 am to : vince j kaminski / hou / ect @ ect cc : subject : re : hello hi vince , if you are still interested in bringing back this gentleman back for another interview , i would very much like to meet with him . sean talked with him when you brought him in a few weeks ago and he thought it would be a good idea for me to meet with him so we can compare thoughts . thanks , kim . - - - - - original message - - - - - from : kaminski , vince sent : monday , april 16 , 2001 1 : 21 pm to : watson , kimberly cc : krishnarao , pinnamaneni ; kaminski , vince subject : re : hello kim , this is a letter from one of the job applicants who works for pros . it seems that the system they develop for williams is more a scheduling system . would you like to ask him to come back for another interview , to get more information out of him ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 16 / 2001 01 : 18 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - "" jacob y . kang "" on 04 / 11 / 2001 11 : 18 : 44 pm to : vince . j . kaminski @ enron . com cc : subject : re : hello dear vince : it was so nice meeting and talking with you too . i did not take any pen back , i lost my pen too somewhere in enron . as i mentioned to you , after i got my ph . d in 1999 , i have been working two years as lead scientist and science manager in energy division at pros revenue management inc . in houston . i developed and implemented the mathematical models for trading optimization system and firm transportation optimization system . the trading optimization system becomes the most popular product in the industry this year . duke energy just signed the contract to buy this product yesterday . conoco and williams also signed the contracts for it . according to pros sales department , the potential marketer to buy this product exceeds 15 companies in one or two years . enron is the ideal place for me to continue my research and system developing efforts to combine revenue management with risk management . i am confident that i can make significant contributions to enron in this area . i would like to thank you again for giving me this opportunity to come to enron for this interview . i am looking forward to having the opportunity to work in enron . sincerely yours jacob - - - vince . j . kaminski @ enron . com wrote : > jacob , > > it was nice meeting you . did take by any chance > my pen ? if not , i apologize . > > vince > do you yahoo ! ? get email at your own domain with yahoo ! mail . http : / / personal . mail . yahoo . com /",0 +"Subject: pozdrowienia piotr , dziekuje za wiadomosc . bede prawdopodobnie w londynie w koncu wrzesnia . ciesze sie , ze wszystko idzie pomyslnie . odezwij sie , jesli bedziesz przyjezdzal do stanow . rozmawialem ostatnio z twoim kolega , avi hauser . wicek wincenty kaminski 10 snowbird the woodlands , tx 77381 phone : ( 281 ) 367 5377 ( h ) ( 713 ) 853 3848 ( o ) cell : ( 713 ) 898 9960 ( 713 ) 410 5396 ( office mobile phone )",0 +"Subject: professor bambos ' visit to enron on monday , august 21 st vince / stinson : i have made the following appointments for professor bambos : monday , august 21 st 9 : 00 am jim fallon 2 : 00 pm john echols john echols ' assistant would like me to send her an email concerning the subject / reason for the visit with john . please let me know . thanks ! shirley",0 +"Subject: flat screens hello , we are still in need of flat screens . we need two for trisha tlapek and two for michael sergeev . their locations are eb 3132 b and eb 3131 b . we have been waiting for these screens for some time now . will you please provide me with the e . t . a . thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 01 / 05 / 2000 01 : 08 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 15 / 99 10 : 38 am to : lyn malina / hou / ect @ ect cc : subject : flat screens e . t . a . thanks kevin moore",0 +"Subject: re : christmas basket list goodmorning , this is the last e - mail regarding christmas baskets . here is a detailed disussion for the baskets . thanks kevin moore - - - - - - - - - - - - - - - - - - - - - - forwarded by kevin g moore / hou / ect on 12 / 08 / 2000 10 : 41 am - - - - - - - - - - - - - - - - - - - - - - - - - - - kevin g moore 12 / 07 / 2000 01 : 55 pm to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect cc : subject : re : christmas basket list here is the completed list for the year 2000 total $ 1470 . 00 thanks kevin moore kevin g moore 12 / 05 / 2000 10 : 56 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron cc : subject : re : christmas basket list here is the updated list that we have for christmas . the orders will be placed on dec . 12 th . the orders will arrive at the enron building dec . 19 th . and all outside orders will arrive before dec . 22 nd . please inform , if this is okay . thanks kevin moore i will discuss cost with vince after meeting with bill on friday . kevin g moore 12 / 01 / 2000 09 : 26 am to : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , mike a roberts / hou / ect @ ect , jose marquez / corp / enron @ enron , stinson gibner / hou / ect @ ect , vasant shanbhogue / hou / ect @ ect , anita dupont / na / enron @ enron cc : subject : christmas basket list hello everyone , we are nearing the time to get the baskets and other christmas tokens sent out . as in every year , we do take the time to send tokens of appreciation for services rendered , or share the christmas sprit with those we feel worthty . here is the list that i have already , approved by vince . if there are any additions please inform me a . s . a . p . the deadline is december 12 th , as i will be meeting with the owner of floral events to confirm the order and treat him to lunch for all the great work he has provided for me . thanks kevin moore please note : i will be out on vacation and all orders will already have been placed with the delivery date on december 19 th . the day of my return , therefore if any problems occur i will have enough time to solve them .",0 +"Subject: tanya ' s trip to stanford shirley , i will be out of the office 10 / 16 / 00 - 10 / 23 / 00 . i will attend credit modeling classes at stanford on 10 / 16 trough 10 / 20 . 10 / 23 / 00 i ' take as a vacation day . tanya .",0 +"Subject: re : var for cob 2 nd aug 2000 hi vince , i have sent a mail to andreas with a full list of all the assumed units within our model . he has sent some historical data for cocoa beans and noticed that they were being quoted in gbp / mt so even currency units seem to be important . thank you for pointing this out , kirstee vince j kaminski 04 / 08 / 2000 15 : 45 to : kirstee hewitt / lon / ect @ ect cc : vince j kaminski / hou / ect @ ect , cantekin dincerler / hou / ect @ ect , grant masson / hou / ect @ ect subject : re : var for cob 2 nd aug 2000 hi kirstee , thanks again for all your work on mg . one think to double check is units . please , make sure that the prices are quoted in the same units our positions come in . one potential source of confusion arises from the fact that we are dealing with different cultures ( metric system vs . english measures ) . vince enron capital & trade resources corp . - europe from : kirstee hewitt 08 / 03 / 2000 11 : 31 am to : vince j kaminski / hou / ect @ ect cc : subject : var for cob 2 nd aug 2000 hi vince , i was waiting for a comment about the email below before sending it to the full mailing list . basically it suggests that the copper option position may well have increased the var by more than $ 500 , 000 . however , given that the portfoilo has also changed from the lst of august it is difficult to asses the actual change due to the option only . regards kirstee - - - - - - - - - - - - - - - - - - - - - - forwarded by kirstee hewitt / lon / ect on 03 / 08 / 2000 17 : 29 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron europe from : kirstee hewitt 03 / 08 / 2000 16 : 29 to : cantekin dincerler / hou / ect @ ect , grant masson / hou / ect @ ect cc : subject : var for cob 2 nd aug 2000 hi all , the cu option position has entered the mg books for the 2 nd aug . the delta is 35299 $ / mt for dec 2000 . the cu var has gone up from $ 2 , 245 , 000 to $ 3 , 306 , 000 . i estimated that the portfolio for the lst would increase to approx $ 3 , 039 , 000 so this seems sensible . the overall var change is from $ 4 , 780 , 796 to $ 5 , 991 , 569 . again , the estimate for the lst aug was for an increase in var to ~ $ 5 , 476 , 000 . all estimates were based on a delta of 32 , 0004 / dmt . there has also been some increase in the var for aluminium which will effect the overall total . a summary is as follows : regards , kirstee",0 +"Subject: numbers for sharad agnihotri hi dale ( i would also like to arrange for a direct reporting line to me for sharad . regards , anjam x 35383 p . s . kate : i have attached the agencies terms and conditions below : - - - - - - - - - - - - - - - - - - - - - - forwarded by anjam ahmad / lon / ect on 05 / 07 / 2000 16 : 21 - - - - - - - - - - - - - - - - - - - - - - - - - - - enron capital & trade resources corp . from : alex blair 05 / 07 / 2000 15 : 29 to : "" ' anjam ahmad ' "" cc : subject : numbers anjam , ? ? ? ? ? ? ? as requested please find enclosed details on sharad ' s numbers : ? ? ? ? ? ? ? basic salary : o 40 , 000 ? ? ? ? ? ? ? car allowance : o 3 , 500 ? ? ? ? ? ? ? ( paid in cash ) ? ? ? ? ? ? ? annual bonus : ol 3 , 000 ( this bonus was paid for ? ? ? ? ? ? ? 99 - 00 ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 8 mths work april - dec ) total o 56 , 500 sharad has been informed that his bonus payments for year 00 - 01 will be floored at o 25 , 000 . ? sharad ' s expectations therefore are to receive a base salary of between o 57 . 5 - o 60 k plus bonus . i hope this is of use and ask that if you have any questions that you do not hesitate to call . alex blair senior consultant alex . blair @ alexmann . com tel : 0207 891 6671 fax : 0207 905 1313 web : "" the alexander mann group has a stated policy for the use of electronic mail which is rigorously enforced throughout the group . the contents of this e mail should meet the requirements of the policy - if you would like further details please forward this message to info @ alexmann . com or call 0207 242 9000 . the information contained in this electronic mail message is confidential . it is intended solely for the use of the individual or entity to whom it is addressed and others authorised to receive it . if the reader of this message is not the intended recipient , you are hereby notified that any use , copying , dissemination or disclosure of this information is strictly prohibited . """,0 +"Subject: new employee shirley : don ' t panic , but we have a new employee , chonawee supatgiat , who is starting on feb . 8 th ( yes , today ) . sorry about the short notice , but he just accepted on the 7 th at 5 p . m . he will be primarily supporting ebs ( enron broadband services ) and reporting to ravi , but we will need to find a spot for him on the 19 th floor . he can even use my office temporarily if needed since i have a desk on 44 as well . i ' ll talk to you about the specifics in the morning . thanks , - - stinson",0 +"Subject: re : petrochem desk yes , i will have kate get involved and talk to christian to get details . vasant - - - - - original message - - - - - from : kaminski , vince sent : monday , april 23 , 2001 9 : 29 am to : shanbhogue , vasant cc : kaminski , vince subject : petrochem desk vasant , it seems we have to help them . can kate help on this project ? vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 23 / 2001 09 : 28 am - - - - - - - - - - - - - - - - - - - - - - - - - - - nelson neale @ enron 04 / 20 / 2001 10 : 29 am to : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate cc : subject : petrochem desk i had a chance to speak with christian lebroc this morning with regard to curve building for petrochemicals . as it turns out , christian left rac in april and joined the petrochem desk as a trader . previous efforts at construction of a forward curve by the group have focused on intuition or swags . unfortunately , the group had a rough p & l year with at least some of the blame directed toward the forward curve or lack thereof . when asked about the fundamentals group , christian indicated that they ' d only been around about 3 - 4 months and are not yet well - suited to curve building . john nowlan is indeed the head of the group . from a timing perspective , i told christian that it would probably take at least 6 - 8 weeks to develop a curve , especially considering the need to understand the key market drivers / fundamentals . as was suggested yesterday during our meeting , a strong relationship between petrochemicals and a nymex component ( e . g . , crude oil ) would provide a great beginning point - - we could then potentially strengthen / augment this relationship with other key factors ( e . g . , supply and demand terms ) borne out of our market research . nelson ",0 +"Subject: ljm model ryan : this is the updated spreadsheet for pricing the ljm options disregarding any credit issues . it produces exactly the same results as before . the only difference tis the place it gets the model ' s c code . i am placing all the code related to this deal on a specific directory on the "" o "" drive now . please use this version on future pricing . i will delete the old code . thanks paulo issler",0 +"Subject: re : probability question from vince ' s article thank you , michael ! i ' m forwarding your answer to vince kaminski , and thank you for reading ! sam smith 5 - 8322 enron energy services from : michael kim @ ees 08 / 28 / 2000 02 : 50 pm to : william . smith @ enron . com cc : subject : probability question from vince ' s article answer is 0 . 2344 it ' s been awhile since i studied probability . i think this is a conditional probability problem . thank you . mike kim",0 +"Subject: re : lunch super . jestesmy umowieni . juliusz vince j kaminski 12 / 14 / 2000 11 : 06 am to : julius zajda / lon / ect @ ect cc : subject : re : lunch juliusz , wtorek jest najlepszym dniem . vince julius zajda 12 / 14 / 2000 10 : 18 am to : vince j kaminski / hou / ect @ ect cc : subject : lunch przepraszam , ze sie tak dlugo nie odzywalem , ale musialem znalezc sobie mieszkanie , przeprowadzic sie i kupic jakies meble . czy lunch w przyszlym tygodniu odpowiadalby panu ? mi pasuje kazdy dzien oprocz czwartku . juliusz",0 +"Subject: research group , recruiting celeste , i attach some brief job candidate descriptions for the types of people we are looking for at the bs / ms level . osman sezgen ( supporting ees ) and p . v . krishnarao ( supporting ees , ebs , and gpg ) both said that they are willing to help in interviewing , recruiting , or reviewing resumes . i also would make myself available ( ebs , ena ) and would be especially willing to help at the schools i attended , caltech and rice ( both on your target list ) . let us know what we can do to help . best regards , - - stinson",0 +"Subject: schedule and more . . dr . kaminski , i think i ' ll be able to start work from the last week of may , but not from monday , probably , i ' ll be able to work from 5 / 30 ( wed ) . will it be good ? i know it is not that much earlier than i mentioned . . 6 / 4 i am sorry . and actually , there is an e - business conference at haas school of business , organized by my advisor could you distribute the link and the attached invitation letter to groups interested in e - business and especially procurement ? the link is as following . i am afraid you might forgot this i told you in the last email . . . my advisor ( arie segev at haas school of business ; segev @ haas . berkeley . edu ) wants me to ask whether you have any idea on joint research with him during the summer , while i am staying there . his interest is in e - business . . ( what else . . ? ) and has expertise in e - procurement system and marketplace . . . xml based standard such as obi , cxml , xcbl , rosettanet , biztalk . . system interoperability study , auction and negotiation , workflow system , e - catalog management , digital signature , edi , etc etc . . . many technical aspects of e - business . . . he wants to do some kind of technical case study that is beneficial for both enron and him . he may travel one or two times to houston to have a meeting during the summer . ( and to be frankly , this will be good for me too , because i can have a meeting for my dissertation while he is in houston . . ) could you think about the possibility of joint research , with him ? thank you . . sincerely , jinbaek - fcp - invite . pdf",0 +"Subject: re : message from ken rice vince : thanks for returning this call . i guess it helps if i provide the contact information ! tom limperis 517 - 423 - 5617 thanks ! dorothy dalton office of the chairman enron broadband services 1400 smith street , eb 4505 houston , tx 77002 713 - 853 - 6724 - direct 713 - 853 - 9469 - fax vince j kaminski @ ect 05 / 02 / 01 09 : 42 am to : dorothy dalton / enron communications @ enron communications @ enron cc : vince j kaminski / hou / ect @ ect , vasant shanbhogue / enron @ enronxgate subject : re : message from ken rice dorothy , no problem . please , cc - mail me tom ' s number . one of the members of the group has a phd in computer science and he will join me for the call . vince from : dorothy dalton @ enron communications on 05 / 01 / 2001 08 : 53 am to : vince j kaminski / hou / ect @ ect cc : subject : message from ken rice vince : ken rice received a call through a friend ' s referral from dr . tom limperis ( a professor at the university of michigan ) . dr . limperis has developed a statistical database management system he would like to show enron . ken would like you to return this call on his behalf . he feels that you are probably the only person who will understand and be able to determine if enron should have an interest . do you mind returning this call ? please let me know . thanks ! dorothy dalton office of the chairman enron broadband services 1400 smith street , eb 4505 houston , tx 77002 713 - 853 - 6724 - direct 713 - 853 - 9469 - fax",0 +"Subject: re : exploration data as the root of the energy ( oil ) supply chain and consulting john , congratulations on a career move . yes , we were contacted regarding geophysical data gathering / transmission project . we asked our geophysicists for help and are shooting for a meeting on thursday to run our ideas by them . vince from : john bloomer @ enron communications on 10 / 10 / 2000 10 : 20 am to : vince j kaminski / hou / ect @ ect cc : subject : exploration data as the root of the energy ( oil ) supply chain and consulting good morning vince : 1 ) we met with some geophysical data gathering / transmission people last week . i observed that there is an opportunity to get in the early steps of the ( oil exploration ) energy supply chain - we can get at the key data driving oil drilling earlier than anyone else by extending into this area of broadband networking - to build a way to hedge oil and other energy trades . i asked adler or reichardt to present the idea to your team for validation . have they contacted you yet ? 2 ) i ' m converting to consultant - i ' ve had a great year here but need to get back north more often ( family ) . i will be converting to consultant status starting next week . do not hesitate to call me if there is anything i can do for you or your team to help out . john bloomer cell 610 574 3945",0 +"Subject: rendez - vous reporter : sunday 3 rd september 2000 > sunday 3 rd september 2000 > > the monte carlo rendez - vous reporter from reactions , in association with > guy carpenter [ http : / / www . guycarp . com ] . simply click on the link next to > each headline to read the full story . > > top stories of the day : > > the only way is up for rates > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 659 > > vox pops : testing the renewals air > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 660 > > the view of the middleman > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 661 > > new look rendez - vous > http : / / www . reactionsnet . com / conferences / viewstory . asp ? id = 657 > > please visit http : / / www . reactionsnet . com for all the latest news from the > world ' s largest insurance and reinsurance conference . > > alternatively , you can read these stories on the official rendez - vous > website at http : / / www . rvs - monte - carlo . com > > > book of the industry : > > reinsurance > fourth edition of professor robert l carter ' s industry - standard textbook . > https : / / ecommerce . waterside . net / reactions / reins _ fourth . asp >",0 +"Subject: dr . michelle foss - energy institute christie , i am forwarding you a message i have received from the university of houston . can you help them ? we have a very good relationship with the uoh . vince - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 04 / 24 / 2001 05 : 14 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - aisha jamal on 04 / 23 / 2001 03 : 15 : 29 pm please respond to aisha @ uh . edu to : vkamins @ ect . enron . com cc : mmfoss @ uh . edu subject : dr . michelle foss - energy institute dear mr . kaminski , i am writing to ask a favor for dr . michelle foss . as you know we will be running our "" new era "" program from may 14 - may 25 th . dr . foss was wondering if on may 22 nd ( between 1 : 30 pm and 4 : 00 pm ) , we would be able to bring our participants for a tour of your trading floor . at this time we will have 30 - 40 people , and since only 10 people maximum should really be on a trading floor we need to have 4 companies among which to divide our participants . at this time , we have a floor from coral energy , and are working with duke , and i will be contacting mr . paul roberts to arrange for the reliant energy trading floor . i was hoping very much that you would be able to direct me to the right person to contact to arrange this tour . will this be a possiblity ? i really appreciate your help very much . thank you ! best regards , aisha jamal energy institute 713 - 743 - 4634",0 +"Subject: rice / enron finance seminar series fyi ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 03 / 19 / 2001 08 : 07 am - - - - - - - - - - - - - - - - - - - - - - - - - - - barbara ostdiek on 03 / 16 / 2001 03 : 33 : 59 pm to : ostdiek @ rice . edu cc : subject : rice / enron finance seminar series enron seminar series in finance jones graduate school of management , rice university paul schultz university of notre dame will give a seminar at the jones school on friday , march 30 , ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?  & who makes markets  8 the seminar will begin at 3 : 30 in room 115 . the paper will be made available shortly .",0 +"Subject: storage model security stinson , i have added a time bomb and security file check to the model . we are ready to release it to brad , and improve the model from his feed back . zimin",0 +"Subject: re : meeting w kevin hannon vince and stinson : carol brown called and we have scheduled the meeting for 4 : 00 pm on thursday , may 11 . it will be in kevin ' s office at eb 4508 . thanks ! shirley stinson gibner 05 / 08 / 2000 04 : 42 pm to : shirley crenshaw / hou / ect @ ect cc : subject : meeting w kevin hannon shirley , could you call carol brown and set up a time for vince and i to meet with kevin hannon later this week ? thanks , stinson",0 +"Subject: e - mail and voicemail retention policy as a reminder , ena  , s policy regarding retention of electronic mail , including lotus notes mail , internet e - mail , cc : mail and voicemail is as follows : message location maximum retention inbox 30 days message log / sent mail 30 days trash rollover from inbox for 15 days bulletin boards 30 days folders / archives e - mails placed in folders or archives  ) one year voicemail 90 days e - mail and voicemail older than the maximum retention will be purged automatically by it , which is responsible for monitoring compliance with this policy . any exception to this policy requires approval by mark haedicke or richard sanders . mark frevert and mark haedicke",0 +"Subject: approval is overdue : access request for stephen . bennett @ enron . com this request has been pending approval for 5 days and you are the alternate . please click approval to review and act upon this request . request id : 000000000003991 approver : stinson . gibner @ enron . com request create date : 10 / 3 / 00 12 : 31 : 22 pm requested for : stephen . bennett @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: re : hi vince hi jeff , no problem . as soon as we have an agreement in place , i shall start working with you . vince "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" on 01 / 10 / 2001 12 : 59 : 36 pm please respond to "" $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ "" to : vince . j . kaminski @ enron . com cc : subject : hi vince hi vince . here is my contact info : jeff wesley 949 813 2241 jjw @ ziplip . com jjw @ lokmail . net i work with mri usa and robertwalters uk i also underwrite my own deals . example of current accounts : painewebber merrill lynch crowell weedon current companies i work with include : conedison energy smud ( sacramento energy ) calpine energy morgan stanley dean whitter job orders sent : chicago mercantile exchange alcoa cournerstone energy i hope this makes it through the firewall ! my partner in london at robertwalters sent me a guy for you to browse . . . i ' ll pop him over later . thanks vince ! jeff * get free , secure online email at http : / / www . ziplip . com / *",0 +"Subject: agenda for larry thorne ' s presentation and meetings , friday , may 4 th attached is the agenda for larry thorne ' s presentation , friday , may 4 th . i have scheduled vasant and krishna to take him to lunch . please let me know where you would like to go and i will make reservations . thanks ! shirley",0 +"Subject: raptors here is the most recent version of the spreadsheet and the accompanying assumptions .",0 +"Subject: re : faculty lunch alison , i recommended inviting duane seppi and steven shreve . i would also invite brian routledge . i don ' t know him but heard many good things about him . kevin kindall may have other recommendations . vince enron north america corp . from : mary alison bailey 09 / 08 / 2000 05 : 04 pm to : shirley crenshaw / hou / ect @ ect , vince j kaminski / hou / ect @ ect , kevin kuykendall / hou / ect @ ect , kevin kuykendall / hou / ect @ ect cc : kristin gandy / na / enron @ enron subject : faculty lunch kristin had said she was interested in a faculty lunch , and kevin said he would host it . are there any professors you would recommend be invited ? here is a list of finance faculty : robert dammon rdl 9 @ andrew . cmu . edu 412 . 268 . 3696 richard green rgob @ andrew . cmu . edu 412 . 268 . 2302 david heath heath @ andrew . cmu . edu 412 . 268 . 2545 christine parlour parlourc @ andrew . cmu . edu 412 . 268 . 5806 brian routledge rout @ andrew . cmu . edu 412 . 268 . 7588 duane seppi ds 64 @ andrew . cmu . edu 412 . 268 . 2298 steven shreve shreve @ andrew . cmu . edu 412 . 268 . 8484 chester spatt cs 9 z @ andrew . cmu . edu 412 . 268 . 8834 christopher telmer telmerc @ andrew . cmu . edu 412 . 268 . 8838 stanley zin szoh @ andrew . cmu . edu 412 . 268 . 3700 *",0 +"Subject: 2 - survey / information email 5 - 7 - 01 current notes user : to ensure that you experience a successful migration from notes to outlook , it is necessary to gather individual user information prior to your date of migration . please take a few minutes to completely fill out the following survey . when you finish , simply click on the ' reply ' button then hit ' send ' your survey will automatically be sent to the outlook 2000 migration mailbox . thank you . outlook 2000 migration team full name : login id : extension : office location : what type of computer do you have ? ( desktop , laptop , both ) do you have a pda ? if yes , what type do you have : ( none , ipaq , palm pilot , jornada ) do you have permission to access anyone ' s email / calendar ? if yes , who ? does anyone have permission to access your email / calendar ? if yes , who ? are you responsible for updating anyone else ' s address book ? if yes , who ? is anyone else responsible for updating your address book ? if yes , who ? do you have access to a shared calendar ? if yes , which shared calendar ? do you have any distribution groups that messaging maintains for you ( for mass mailings ) ? if yes , please list here : please list all notes databases applications that you currently use : in our efforts to plan the exact date / time of your migration , we also will need to know : what are your normal work hours ? from : to : will you be out of the office in the near future for vacation , leave , etc ? if so , when ? from ( mm / dd / yy ) : to ( mm / dd / yy ) :",0 +"Subject: promotion vince , i want to congratulate you on your promotion to managing director ! as i scanned the list of people who were promoted , i was so pleased to see your name on the list . as large as enron is , it is refreshing to see people like you with incredible skill and talent receive deserving promotions . i have certainly enjoyed working with you and the r & d team over the past year and look forward to a successful 2000 as we break new ground for et & s . kim .",0 +"Subject: re : petronas benchmarking visit fyi the list of the delegates from petronas . vince kaminski - - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 23 / 2001 01 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - khairuddinbmjaafar @ petronas . com . my on 01 / 22 / 2001 03 : 13 : 35 am please respond to khairuddin _ mjaafar @ petronas . com . my to : vince . j . kaminski @ enron . com cc : subject : re : petronas benchmarking visit vince , here is the list of our delegates for your kind perusal : 1 . iqbal abdullah ( general manager ) , 2 . nur azmin abu bakar ( head , risk assessment & controls ) , 3 . zulkifli a rahim ( head , risk , measurement & systems ) 4 . adnan adams ( head , special projects ) . thanks . regards , khairuddin",0 +"Subject: request submitted : access request for jeremy . waggenspack @ enron . com you have received this email because you are listed as an alternate data approver . please click approval to review and act upon this request . request id : 000000000005411 approver : stinson . gibner @ enron . com request create date : 10 / 23 / 00 8 : 48 : 43 am requested for : jeremy . waggenspack @ enron . com resource name : \ \ enehou \ houston \ common \ research - [ read / write ] resource type : directory",0 +"Subject: * special notification * aurora version 5 . 5 release , what ' s new ? iv friends : i spoken with most of you over the last few weeks regarding the new version of aurora due to be released tomorrow . we ' ve broken a lot of new ground with this version , and this version will serve as our official launch into the eastern u . s . we ' ve worked closely with our eastern customers , and responded to the needs of the market . some of the enhancements : aurora software modeling enhancements : * energy storage - resources ( pumped hydro ) * market areas : no limit on number of areas * transmission : congestion pricing . * price caps * risk analysis * modeling enhancements via vb scripting : "" update data "" capability general capabilities * aurora ' s run time speed improved again . * file transfers to epis * interface enhancements reporting enhancements * marginal resource reporting * resource operations reporting * resource stacks detail consolidated aurora databases * east - central aurora database - - 25 market areas modeled with 11 market areas in new york iso . * wscc aurora database - - updated ipp resources * ercot aurora database - updated resources * all databases updated to use the new modeling capabilities as aurora continues to grow , and we meet the needs of the market , we have made several procedural changes . we continue to offer free 7 - day demos to those companies that want to take a look at the model , and get a brief idea of how it thinks and feels . after that 7 - day demo period we now offer either a discount for moving into a full license , or we offer a 60 - day trial for $ 10 , 000 . 00 - - we also now offer more options for the licensing of the model . annual licenses are priced as follows : single user ( 1 user / 1 pc ) $ 33 , 000 . 00 limited - use ( 1 user / multiple pcs or multiple users / 1 pc ) $ 45 , 000 . 00 two - user ( 2 users / 2 pcs ) $ 55 , 000 . 00 site license ( unlimited users / pcs excluding affiliates ) $ 79 , 000 . 00 affiliate - site ( unlimited users / pcs including affiliates ) $ 99 , 000 . 00 for additional information , please contact me , and i ' ll speak with you about how aurora can help you in your specific operations and projects . v . todd wheeler sales manager epis , inc . ( 503 ) 722 - 2023 tel . x 210 ( 503 ) 722 - 7130 fax www . epis . com todd @ epis . com > - what ' s new - version 5 . 5 information . doc",0 +"Subject: fwd : update return - path : received : from rly - yeo 2 . mx . aol . com ( rly - yeo 2 . mail . aol . com [ 172 . 18 . 151 . 199 ] ) by air - yeo 4 . mail . aol . com ( v 76 _ rl . 19 ) with esmtp ; fri , 20 oct 2000 14 : 52 : 34 - 0400 received : from postmaster . enron . com ( outbound 5 . enron . com [ 192 . 152 . 140 . 9 ] ) by rly - yeo 2 . mx . aol . com ( v 76 _ rl . 19 ) with esmtp ; fri , 20 oct 2000 14 : 52 : 16 - 0400 received : from nahou - msmswolpx . corp . enron . com ( [ 172 . 28 . 10 . 37 ] ) by postmaster . enron . com ( 8 . 8 . 8 / 8 . 8 . 8 / postmaster - 1 . 00 ) with esmtp id naao 9683 for ; fri , 20 oct 2000 13 : 52 : 16 - 0500 ( cdt ) from : stinson . gibner @ enron . com received : from ene - mtaol . enron . com ( unverified ) by nahou - msmswolpx . corp . enron . com ( content technologies smtprs 4 . 1 . 5 ) with esmtp id for ; fri , 20 oct 2000 13 : 52 : 16 - 0500 subject : update to : vkaminski @ aol . com cc : vince . j . kaminski @ enron . com x - mailer : lotus notes release 5 . 0 . 3 march 21 , 2000 message - id : date : fri , 20 oct 2000 13 : 52 : 12 - 0500 x - mimetrack : serialize by router on ene - mtaol / enron ( release 5 . 0 . 3 ( intl ) | 21 march 2000 ) at 10 / 20 / 2000 01 : 48 : 43 pm mime - version : 1 . 0 content - type : text / plain ; charset = us - ascii vince , a quick update on job candidates : 1 ) nelson neale : relayed your request to norman , and told nelson that an offer is in progress . did not mention specific numbers to him . 2 ) charles shen : left a message for him that we would get back to him next week with details of an offer . 3 ) interviewed by phone tom barkley at thunderbird ( brought to our attention by enron recruiters there ) . he looks very interesting so i am trying to schedule a visit to enron for him . he will finish t - bird in december ( mba ) and has a bachelors with honours in mathematics . have a great weekend . stinson",0 +"Subject: altos na gas model kim , i know you have been interested in the development of a long term natural gas model for use in the ets revenue management effort . i agree that the ability to model various supply / demand scenarios for north america should prove useful in ets business development efforts , and in particular , in predicting the impact of the new , large alaskan gas supplies on the n . a . pipeline grid . as you know , vince kaminski feels that a software product developed by dale nesbitt ( marketpoint , inc . ) of los altos hills , ca . may be a good choice , and one readily available in a relatively short time . marketpoint has proposed that they work with us in our offices for a week of intensive training and testing , so we can make a more informed decision before ordering the software . they have proposed a charge of $ 12 , 000 , plus expenses , for the one - week session , with that cost applied to the first year ' s subscription price ( approx . $ 55 - 60 m / yr ) should we decide to go forward . the other details ( timing , ene resources required , necessary it interface , etc ) still need to be worked out , but i believe there is generally a consensus to proceed with the test . with my recent relocation to the clean fuels group , i will no longer be responsible for the alaskan pipeline development . however , danny mccarty is pulling together a team consisting of people from nng , nbp and elsewhere in ets to push the project forward . i believe eric gadd will be playing a key role as well . the decision on the long term gas model should appropriately be made by the new project team . i have attached a draft of the proposed marketpoint license agreement . it has not yet been fully reviewed by legal ( or by shelley c . for the "" affiliate "" issues ) . let me know if i can provide any other background or assistance . jng",0 +"Subject: power market research i came across the attached report which margaret carson thought would be of interest to you . jennifer - - - - - - - - - - - - - - - - - - - - - - forwarded by stephen thome / hou / ect on 04 / 03 / 2001 11 : 36 am - - - - - - - - - - - - - - - - - - - - - - - - - - - jessica burry 04 / 03 / 2001 10 : 29 am to : theresa villeggiante / pdx / ect @ ect , mollie gustafson / pdx / ect @ ect , fredrik eriksson / pdx / ect @ ect , crystal hyde / pdx / ect @ ect , angela cadena / pdx / ect @ ect , andy chen / pdx / ect @ ect , jim gilbert / pdx / ect @ ect , ed clark / pdx / ect @ ect , jeff shields / pdx / ect @ ect , jim buerkle / pdx / ect @ ect , dave fuller / pdx / ect @ ect , laura wente / hou / ect @ ect , jake thomas / hou / ect @ ect , christopher f calger / pdx / ect @ ect , michael etringer / hou / ect @ ect , chris lackey / pdx / ect @ ect , todd perry / pdx / ect @ ect , jeffrey oh / pdx / ect @ ect , elliot mainzer / pdx / ect @ ect , jeff g slaughter / pdx / ect @ ect , jonalan page / pdx / ect @ ect , stephen thome / hou / ect @ ect , terry w donovan / hou / ect @ ect , glenn surowiec / enron communications @ enron communications , michael danielson / sf / ect @ ect , laird dyer / sf / ect @ ect , april hrach / sf / ect @ ect , michael mcdonald / sf / ect @ ect cc : subject : power market research - - - - - - - - - - - - - - - - - - - - - - forwarded by jessica burry / pdx / ect on 04 / 03 / 2001 08 : 37 am - - - - - - - - - - - - - - - - - - - - - - - - - - - christopher f calger 04 / 03 / 2001 08 : 11 am to : jessica burry / pdx / ect @ ect cc : subject : power market research pls send to my group - - - - - - - - - - - - - - - - - - - - - - forwarded by christopher f calger / pdx / ect on 04 / 03 / 2001 08 : 19 am - - - - - - - - - - - - - - - - - - - - - - - - - - - from : chip schneider / enron @ enronxgate on 04 / 03 / 2001 10 : 02 am cdt to : louise kitchen / hou / ect @ ect , christopher f calger / pdx / ect @ ect , w david duran / hou / ect @ ect cc : subject : power market research this piece from deutsche bank is good macro overview of electricity supply / demand fundamentals . a little on the long side - 78 pages , but has some good discussion on nerc ( north american electric reliability council regions ) , beginning on page 15 .",0 +"Subject: re : visit to houston fyi - - - - - - - - - - - - - - - - - - - - - - forwarded by stinson gibner / hou / ect on 01 / 29 / 2001 02 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - nick bambos on 01 / 29 / 2001 10 : 54 : 27 am to : stinson . gibner @ enron . com cc : subject : re : visit to houston stinson , just a quick note to let you know that i am looking into it , trying to rearrange a couple of things . i ' d like giuseppe and possibly eric to come with me , so i need to coordinate with them too . we ' ve made some nice progress that i ' d like to present and also integrate eric in the system . i am targeting a friday around the end of february or begining of march . i ' ll let you know soon of a few possibilities as they stabilize here . best , nick stinson . gibner @ enron . com wrote : > > nick , > > i hope things are going well and you are not staying too busy . we should > start planning for your next trip to houston , as i ' m sure your schedule > will be getting full very soon . perhaps you could give the people in > enron broadband an overview of the areas of interest within your research > group . i ' m sure we could also benefit from you views of how the current > technology is evolving . > > are there certain dates which would potentially work for you ? please let > me know by email or give me a call at 713 853 4748 . > > looking forward to talking with you . > > - - stinson",0 +"Subject: ees risk management presentations for october 25 . please have your presentations to me by 10 am friday , october 20 , 2000 . it takes a couple of days to get the materials back from the copy center . the presentations have to be put in new binders this time and it takes most of a day to put everything together in the binders . therefore , i have to have the materials to the copy center by friday afternoon in order to get them back by monday afternoon or tuesday morning . i will need most of tuesday to get everything assembled in the binders . thus the necessity of having your completed presentations by friday morning . vince : basket options binary ( digital ) options krishna : barrier options other complex structures thanks for your help on this . regards , anita",0 +"Subject: re : vacation vince : i just found out that it is friday , april 7 and not friday , march 31 st that i want to take for vacation . is this alright ? thanks ! shirley vince j kaminski 03 / 08 / 2000 06 : 18 pm to : shirley crenshaw / hou / ect @ ect cc : subject : re : vacation shirley , no problem . vince shirley crenshaw 03 / 08 / 2000 03 : 56 pm to : vince j kaminski / hou / ect @ ect cc : kevin g moore / hou / ect @ ect , william smith / corp / enron @ enron subject : vacation vince : i would like to take the following days as vacation : wednesday , march 15 th friday , march 31 st . please let me know if this is ok with you . thanks ! shirley",0 +"Subject: re : research and development charges to gpg here it is ! - - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 08 / 14 / 2000 07 : 47 am - - - - - - - - - - - - - - - - - - - - - - - - - - - vince j kaminski 08 / 10 / 2000 02 : 25 pm to : vera apodaca / et & s / enron @ enron cc : vince j kaminski / hou / ect @ ect , shirley crenshaw / hou / ect @ ect , pinnamaneni krishnarao / hou / ect @ ect subject : re : research and development charges to gpg vera , we shall talk to the accounting group about the correction . vince 08 / 09 / 2000 03 : 26 pm vera apodaca @ enron vera apodaca @ enron vera apodaca @ enron 08 / 09 / 2000 03 : 26 pm 08 / 09 / 2000 03 : 26 pm to : pinnamaneni krishnarao / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : research and development charges to gpg per mail dated june 15 from kim watson , there was supposed to have occurred a true - up of $ 274 . 7 in july for the fist six months of 2000 . reviewing july actuals , i was not able to locate this entry . would you pls let me know whether this entry was made , if not , when do you intend to process it . thanks .",0 +"Subject: re : receipts from visit jim , thanks again for the invitation to visit lsu . shirley will fedex the receipts tomorrow . vince "" james r . garven "" on 02 / 08 / 2000 07 : 00 : 50 pm to : vince j kaminski cc : subject : receipts from visit dear vince , thanks again for taking the time to visit . ? both faculty and students got a lot out of your presentations . i have a favor to ask concerning the expense reimbursement process . ? can you mail all travel and lodging receipts to my secretary joan payne at the following address : joan payne department of finance 2163 ceba louisiana state university baton rouge , la ? 70803 thanks , jim garven james r . garven william h . wright , jr . endowed chair for financial services department of finance 2158 ceba e . j . ourso college of business administration louisiana state university baton rouge , la ? 70803 - 6308 voice ( 225 ) 388 - 0477 ? | ? fax : ( 800 ) 859 - 6361 e - mail : ? jgarven @ lsu . edu home page : http : / / garven . lsu . edu vita : http : / / garven . lsu . edu / dossier . html research paper archive : http : / / garven . lsu . edu / research . html ",0 +"Subject: re : enron case study update wow ! all on the same day . that ' s super . thank you so very much . vince is coming up to baylor on monday of next week and we will hash out our question list then . thanks john at 04 : 54 pm 11 / 6 / 00 - 0600 , you wrote : > good afternoon john , > > i just want to drop you a line to update you re : andy fastow . i have > confirmed a one hour interview slot with mr . fastow in monday , december 4 th > from > 11 : 00 a . m . - noon . this is in addition to your schedule interviews with > mr . lay and mr . skilling - outline below . > > if you have any questions , please do not hesitate to contact me at > 713 - 853 - 5670 . > > regards , > > cindy > > > - - - - - forwarded by cindy derecskey / corp / enron on 11 / 06 / 2000 04 : 49 pm - - - - - > > cindy > derecskey to : "" john martin "" > cc : vince j kaminski / hou / ect @ ect , christie patrick / hou / ect @ ect > 10 / 31 / 2000 subject : re : enron case study ( document link : cindy derecskey ) > 01 : 44 pm > > > > > > good afternoon john , > > i hope things are well with you . i am writing to update you on the status > of your meetings with andy fastow , ken lay and jeff skilling . i have > arranged the following meeting dates and times with ken lay and jeff > skilling , ( i am still trying to work with andy fastow ' s schedule ) : > > jeff skilling > december 4 th > 2 : 00 - 3 : 00 p . m . > > ken lay > december 4 th > 3 : 30 - 4 : 30 p . m . > > also , i will attempt to schedule the meeting with andy fastow for december > 4 th for convenience - this will also allow us to possibly schedule > additional meetings for the 5 th ( as needed ) . i will let you know as soon > as i ' m successful . > > regards , > > cindy derecskey > university affairs > enron corp . > > > > > john d . martin carr p . collins chair in finance finance department baylor university po box 98004 waco , tx 76798 254 - 710 - 4473 ( office ) 254 - 710 - 1092 ( fax ) j _ martin @ baylor . edu web : http : / / hsb . baylor . edu / html / martinj / home . html",0 +"Subject: re : interest david , please , call shirley crenshaw ( my assistant ) , extension 5 - 5290 to set it up . vince david p dupre 06 / 15 / 2000 05 : 18 pm to : vince j kaminski / hou / ect @ ect cc : subject : re : interest what time ( s ) are you available over the next few days ? thanks david 3 - 3528 vince j kaminski 06 / 15 / 2000 05 : 16 pm to : david p dupre / hou / ect @ ect cc : vince j kaminski / hou / ect @ ect subject : re : interest david , please , stop by to chat about it for a few minutes . vince david p dupre 06 / 15 / 2000 11 : 57 am to : vince j kaminski / hou / ect @ ect cc : subject : re : interest may we meet to discuss my interest in joining your group ? i have a strong quantitative discipline and am highly numerate . thanks david 3 - 3528 - - - - - - - - - - - - - - - - - - - - - - forwarded by david p dupre / hou / ect on 06 / 15 / 2000 11 : 53 am - - - - - - - - - - - - - - - - - - - - - - - - - - - to : david p dupre / hou / ect @ ect cc : subject : re : interest vince kaminski",0 +"Subject: news : aurora 5 . 2 update aurora version 5 . 2 - the fastest model just got faster - epis announces the release of aurora , version 5 . 2 aurora the electric market price forecasting tool is already legendary for power and speed . we ' ve combined a powerful chronological dispatch model with the capability to simulate the market from 1 day to 25 + years . add to that a risk analysis section , powered by user selectable monte carlo & / or latin hypercube modeling , enough portfolio analysis power to please the toughest critic , & inputs and outputs from standard excel & access tables and you ' ve got one of most powerful tools in the market . just a few months ago we expanded our emissions modeling capabilities , added our quarterly database update , increased the speed of the entire model , and made but that wasn ' t enough . we ' ve done it again . some of the operations that we ' ve included . . . two new reporting enhancements . the first is marginal reporting for fuels , resources and groups of resources . the second is the ability to display resource stack information in graphical and dispatch order form . other enhancements include dual fuel modeling , improved transmission modeling , greater access to hourly results , and the ability to model monthly emission rates . moreover , the databases for central and eastern , texas , and western markets have been updated to use the new modeling capabilities . we continue to make aurora easier to use . this version enhances user control over modeling , editing inputs , and viewing of aurora output . clients desiring to exploit the power of aurora now have greater control over the inputs and outputs through vb scripting in aurora . the new "" update data "" capability provides a means to universally change any data element . attached is more information on the fastest and most flexible tool of its kind . for additional information , please visit our website ( www . epis . com ) or contact our sales department at ( 503 ) 722 - 2023 . ask about our special 7 - day demo ! v . todd wheeler sales manager epis , inc . ( 503 ) 722 - 2023 tel . ( 503 ) 722 - 7130 fax www . epis . com todd @ epis . com > > - what ' s new - version 5 . 2 information . doc - technical information aurora v 5 - 2 . doc",0 diff --git a/ML/Projects/spam_classifier_naive_bayes/naivebayes.py b/ML/Projects/spam_classifier_naive_bayes/naivebayes.py new file mode 100644 index 0000000..f42f769 --- /dev/null +++ b/ML/Projects/spam_classifier_naive_bayes/naivebayes.py @@ -0,0 +1,68 @@ +""" +Naive Bayes Classifier Implementation from scratch + +To run the code structure the code in the following way: + X be size: (num_training_examples, num_features) + y be size: (num_classes, ) + +Where the classes are 0, 1, 2, etc. Then an example run looks like: + NB = NaiveBayes(X, y) + NB.fit(X) + predictions = NB.predict(X) + +Programmed by Aladdin Persson +* 2020-04-21 Initial coding + +""" +import numpy as np + + +class NaiveBayes: + def __init__(self, X, y): + self.num_examples, self.num_features = X.shape + self.num_classes = len(np.unique(y)) + self.eps = 1e-6 + + def fit(self, X): + self.classes_mean = {} + self.classes_variance = {} + self.classes_prior = {} + + for c in range(self.num_classes): + X_c = X[y == c] + + self.classes_mean[str(c)] = np.mean(X_c, axis=0) + self.classes_variance[str(c)] = np.var(X_c, axis=0) + self.classes_prior[str(c)] = X_c.shape[0] / X.shape[0] + + def predict(self, X): + probs = np.zeros((self.num_examples, self.num_classes)) + + for c in range(self.num_classes): + prior = self.classes_prior[str(c)] + probs_c = self.density_function( + X, self.classes_mean[str(c)], self.classes_variance[str(c)] + ) + probs[:, c] = probs_c + np.log(prior) + + return np.argmax(probs, 1) + + def density_function(self, x, mean, sigma): + # Calculate probability from Gaussian density function + const = -self.num_features / 2 * np.log(2 * np.pi) - 0.5 * np.sum( + np.log(sigma + self.eps) + ) + probs = 0.5 * np.sum(np.power(x - mean, 2) / (sigma + self.eps), 1) + return const - probs + + +if __name__ == "__main__": + # For spam emails (Make sure to run build_vocab etc. to have .npy files) + X = np.load("data/X.npy") + y = np.load("data/y.npy") + + NB = NaiveBayes(X, y) + NB.fit(X) + y_pred = NB.predict(X) + + print(f"Accuracy: {sum(y_pred==y)/X.shape[0]}") diff --git a/ML/Projects/text_generation_babynames/data/example_names.txt b/ML/Projects/text_generation_babynames/data/example_names.txt new file mode 100644 index 0000000..405b21a --- /dev/null +++ b/ML/Projects/text_generation_babynames/data/example_names.txt @@ -0,0 +1,19 @@ +Niela +Elia +Leneth +Ley +Ira +Bernandel +Gelico +Marti +Ednie +Ozel +Marin +Elithon +Mirce +Elie +Elvar +Domarine +Artha +Audrey +Davyd \ No newline at end of file diff --git a/ML/Projects/text_generation_babynames/data/names.txt b/ML/Projects/text_generation_babynames/data/names.txt new file mode 100644 index 0000000..312025a --- /dev/null +++ b/ML/Projects/text_generation_babynames/data/names.txt @@ -0,0 +1,1055767 @@ +Mary +Annie +Anna +Margaret +Helen +Elsie +Lucy +Dorothy +Mary +Margaret +Ruth +Annie +Elizabeth +Helen +Mary +Elsie +Agnes +Anna +Helen +Louise +Jean +Ruth +Alice +Esther +Ethel +Margaret +Marie +Mary +Elizabeth +Margaret +Helen +Alice +Annie +Louise +Mary +Margaret +Alice +Annie +Elizabeth +Helen +Clara +Dorothy +Martha +Agnes +Esther +Frances +Julia +Lillian +Mildred +Pauline +Mary +Alice +Helen +Anna +Dorothy +Margaret +Ruth +Elizabeth +Frances +Katherine +Martha +Annie +Clara +Emma +Hazel +Julia +Marie +Minnie +Pauline +Mary +Helen +Dorothy +Frances +Ruth +Alice +Anna +Agnes +Annie +Julia +Lillian +Margaret +Daisy +Edna +Esther +Evelyn +Florence +Katherine +Louise +Lucy +Marie +Sally +Mary +Margaret +Helen +Frances +Alice +Olga +Ruth +Clara +Dorothy +Anna +Edith +Florence +Maggie +Rose +Sophie +Mary +Margaret +Helen +Marie +Martha +Ruth +Anna +Gertrude +Julia +Virginia +Alice +Elizabeth +Annie +Clara +Elsie +Emma +Sarah +Stella +Vera +Mary +Margaret +Dorothy +Betty +Helen +Martha +Virginia +Irene +Elizabeth +Emma +Marie +Agnes +Annie +Barbara +Frances +Gladys +Jean +Louise +Ann +Anna +Evelyn +Josephine +Katherine +Kathryn +Minnie +Ruth +Vera +Mary +Margaret +Helen +Ruth +Martha +Elizabeth +Virginia +Florence +Agnes +Dorothy +Alice +Anna +Edith +Annie +Betty +Elsie +Ethel +Irene +Katie +Rose +Frances +Hazel +Katherine +Lorraine +Patricia +Mary +Dorothy +Alice +Margaret +Annie +Helen +Elizabeth +Virginia +Katherine +Mildred +Anna +Agnes +Bessie +Betty +Elsie +Emma +Esther +Jean +Joan +Lillian +Ruth +Thelma +Mary +Helen +Alice +Anna +Margaret +Martha +Louise +Katherine +Annie +Dorothy +Elizabeth +Emma +Esther +Marie +Ruth +Betty +Clara +Evelyn +Frances +Sarah +Mary +Elizabeth +Anna +Dorothy +Helen +Ruth +Annie +Margaret +Frances +Marie +Florence +Agnes +Alice +Betty +Edna +Elsie +Ethel +Virginia +Jean +Jessie +Julia +Nellie +Olga +Pauline +Sarah +Mary +Elizabeth +Margaret +Betty +Anna +Dorothy +Marie +Ruth +Alice +Patricia +Irene +Mildred +Esther +Ida +Olga +Annie +Clara +Marjorie +Pauline +Vera +Mary +Margaret +Agnes +Betty +Lillian +Mildred +Esther +Helen +Ruth +Anna +Dorothy +Emma +Evelyn +Norma +Sarah +Florence +Louise +Marie +Pauline +Alice +Annie +Beatrice +Elena +Elsie +Irene +Jean +Katherine +Virginia +Mary +Margaret +Alice +Anna +Lucy +Martha +Esther +Helen +Elizabeth +Florence +Gladys +Irene +Ruth +Grace +Hazel +Jessie +Julia +Mildred +Patricia +Pauline +Clara +Laura +Marian +Marie +Sophie +Mary +Dorothy +Helen +Alice +Betty +Elizabeth +Florence +Barbara +Anna +Annie +Margaret +Ruth +Agnes +Elsie +Emma +June +Katherine +Lena +Esther +Evelyn +Irene +Laura +Lillian +Louise +Olga +Sophie +Mary +Margaret +Annie +Dorothy +Alice +Anna +Helen +Elizabeth +Irene +Marie +Betty +Emma +Elsie +Shirley +Sophie +Agnes +Barbara +Clara +Edna +Florence +Frances +Julia +Katherine +Lillian +Mabel +Martha +Ruth +Mary +Margaret +Betty +Dorothy +Agnes +Eva +Julia +Elizabeth +Helen +Martha +Alice +Esther +Frances +Irene +Mabel +Nancy +Pauline +Bertha +Evelyn +Florence +Josephine +Ruth +Virginia +Mary +Alice +Helen +Anna +Marie +Doris +Elizabeth +Martha +Esther +Agnes +Barbara +Betty +Dolly +Evelyn +Jean +Katherine +Margaret +Nancy +Pauline +Virginia +Carrie +Clara +Dorothy +Florence +Jane +Joan +Lillian +Patricia +Sophie +Mary +Alice +Annie +Ruth +Dorothy +Elizabeth +Agnes +Helen +Betty +Christine +Evelyn +Grace +Margaret +Anna +Clara +Irene +Lena +Martha +Mary +Margaret +Alice +Martha +Anna +Clara +Elizabeth +Louise +Annie +Dorothy +Frances +Nancy +Ruth +Carrie +Eleanor +Helen +Marjorie +Cecelia +Katherine +Marie +Virginia +Elena +Esther +Ethel +Evelyn +Jean +Laura +Shirley +Mary +Martha +Agnes +Margaret +Betty +Elizabeth +Marie +Alice +Helen +Louise +Lucy +Patricia +Shirley +Irene +Lillian +Barbara +Dorothy +Evelyn +Frances +Ruth +Thelma +Ann +Anna +Bertha +Clara +Joan +Lena +Lois +Mildred +Pauline +Rose +Sally +Virginia +Mary +Helen +Elizabeth +Irene +Betty +Margaret +Martha +Pauline +Josephine +Marie +Agnes +Janet +Joan +Louise +Lucy +Alice +Lillian +Mildred +Bertha +Edith +Esther +Evelyn +Florence +Maria +Ruth +Mary +Elizabeth +Margaret +Anna +Shirley +Alice +Barbara +Betty +Helen +Irene +Nancy +Martha +Virginia +Dorothy +Lillian +Patricia +Agnes +Arlene +Carol +Charlotte +Edith +Evelyn +Flora +Marie +Rose +Ruth +Sally +Wilma +Mary +Elizabeth +Anna +Dorothy +Patricia +Agnes +Alice +Margaret +Nancy +Shirley +Virginia +Carol +Evelyn +Joan +Katherine +Marjorie +Nellie +Helen +Jacqueline +Julia +Lucy +Martha +Nora +Ruth +Theresa +Amelia +Christine +Dolores +Elsie +Esther +Geraldine +Lydia +Marie +Mary +Margaret +Carol +Barbara +Virginia +Betty +Anna +Donna +Pauline +Shirley +Annie +Edith +Irene +Lucy +Marie +Martha +Patricia +Sophie +Elizabeth +Gladys +Lois +Nancy +Agnes +Ann +Christine +Doris +Florence +Grace +Helen +Joan +June +Sally +Sylvia +Mary +Alice +Carol +Marie +Patricia +Betty +Barbara +Shirley +Annie +Evelyn +Nancy +Ruth +Virginia +Beverly +Florence +Katherine +Marjorie +Rose +Agnes +Dorothy +Elizabeth +Gertrude +Helen +Jean +Lillian +Louise +Margaret +Bernice +Grace +Josephine +Joyce +Rosemary +Sandra +Sylvia +Mary +Elizabeth +Martha +Alice +Carol +Helen +Jean +Ruth +Virginia +Patricia +Barbara +Karen +Margaret +Phyllis +Anna +Dorothy +Frances +Josephine +Sally +Elsie +Emily +Lorraine +Marilyn +Natalia +Sarah +Bertha +Betty +Grace +Irene +Janet +Judith +Marjorie +Nancy +Pauline +Mary +Barbara +Patricia +Alice +Annie +Helen +Margaret +Dorothy +Marie +Sharon +Agnes +Betty +Carol +Clara +Julia +Sally +Anna +Carolyn +Elizabeth +Irene +Judith +Lucy +Martha +Susan +Donna +Evelyn +Florence +Frances +Judy +Karen +Nancy +Rose +Virginia +Diane +Gloria +Janice +Joanne +Katherine +Lillian +Marilyn +Pauline +Sandra +Shirley +Theresa +Mary +Barbara +Patricia +Judy +Margaret +Nancy +Alice +Carol +Helen +Karen +Martha +Dorothy +Julia +Sharon +Ann +Elizabeth +Pauline +Marie +Agnes +Annie +Evelyn +Florence +Judith +Lucy +Marilyn +Rita +Sally +Anna +Ethel +Frances +Janet +Lois +Lydia +Sarah +Audrey +Betty +Ella +Esther +Joanne +Katherine +Linda +Mabel +Rose +Ruth +Virginia +Mary +Patricia +Judy +Margaret +Sharon +Barbara +Judith +Carol +Martha +Donna +Elizabeth +Anna +Virginia +Helen +Janet +Joan +Karen +Rose +Sandra +Christine +Dorothy +Jane +Lois +Sally +Alice +Bertha +Betty +Catherine +Florence +Frances +Marie +Nancy +Rosemary +Sophie +Annie +Arlene +Bonnie +Carolyn +Jean +Katherine +Lillian +Lorraine +Lucy +Molly +Roberta +Shirley +Susan +Mary +Patricia +Carol +Sharon +Donna +Dorothy +Karen +Margaret +Nancy +Helen +Linda +Virginia +Irene +Martha +Marie +Barbara +Bonnie +Elizabeth +Jane +Judith +Katherine +Susan +Alice +Anna +Kathleen +Kathryn +Lois +Marilyn +Roberta +Ann +Betty +Clara +Lucy +Ruth +Sally +Shirley +Caroline +Diane +Edith +Jean +Kathy +Loretta +Maria +Myra +Pauline +Mary +Linda +Barbara +Sharon +Martha +Susan +Patricia +Betty +Elizabeth +Kathleen +Marie +Janet +Judith +Ruth +Nancy +Pauline +Clara +Jean +Judy +Margaret +Virginia +Annie +Carol +Edna +Helen +Joyce +Karen +Katherine +Lorraine +Alice +Ann +Bonnie +Carolyn +Christine +Diane +Donna +Grace +Marilyn +Rose +Sarah +Shirley +Anna +Beverly +Darlene +Dorothy +Irene +Joan +Lucy +Mattie +Sophie +Mary +Patricia +Alice +Barbara +Susan +Carol +Linda +Shirley +Elizabeth +Janet +Marie +Helen +Margaret +Nancy +Phyllis +Dorothy +Marilyn +Sandra +Annie +Ellen +Grace +Judy +Lucy +Ruth +Agnes +Diane +Donna +Katherine +Anna +Darlene +Evelyn +June +Kathryn +Lorraine +Martha +Virginia +Bonnie +Carrie +Elena +Francine +Ida +Janice +Judith +Karen +Kathleen +Louise +Pamela +Pauline +Rose +Sharon +Mary +Patricia +Margaret +Susan +Linda +Barbara +Karen +Carol +Betty +Helen +Sharon +Jean +Kathleen +Martha +Nancy +Alice +Judy +Marie +Sandra +Ann +Bonnie +Cheryl +Donna +Evelyn +Gloria +Virginia +Elizabeth +Frances +Judith +Shirley +Bernice +Dorothy +Janet +Janice +Anna +Esther +Irene +Joan +Lillian +Rita +Roberta +Rose +Ruth +Annie +Carolyn +Carrie +Catherine +Charlotte +Darlene +Edna +Elaine +Florence +Ida +Jessie +Lena +Lois +Lucy +Marilyn +Nellie +Pamela +Mary +Linda +Helen +Susan +Patricia +Kathleen +Carol +Shirley +Barbara +Virginia +Margaret +Donna +Nancy +Sandra +Karen +Pamela +Judy +Marie +Marilyn +Sharon +Ann +Evelyn +Judith +Carolyn +Diane +Katherine +Bonnie +Jean +Joanne +Christine +Dorothy +Elizabeth +Sarah +Theresa +Annie +Edith +Gail +Irene +Janet +Janice +Kathy +Lorraine +Louise +Marian +Peggy +Suzanne +Alice +Anne +Arlene +Clara +Cynthia +Doris +Florence +Frances +Lucy +Martha +Anna +Betty +Beverly +Carla +Deborah +Diana +Gloria +Jeanne +Jo +Josephine +Julia +June +Laura +Lynda +Margie +Pauline +Ruth +Sally +Teresa +Vivian +Mary +Linda +Patricia +Susan +Barbara +Carol +Kathleen +Sandra +Margaret +Karen +Elizabeth +Sharon +Judith +Betty +Martha +Nancy +Cynthia +Dorothy +Pamela +Annie +Donna +Helen +Janet +Janice +Anna +Carolyn +Cheryl +Irene +Jean +Alice +Ann +Beverly +Christine +Diane +Marilyn +Shirley +Arlene +Katherine +Marie +Rita +Sophie +Virginia +Bonnie +Christina +Ellen +Judy +Julie +Laura +Lillian +Lucy +Colleen +Doris +Ethel +Evelyn +Geraldine +Lorraine +Lydia +Paula +Roberta +Rose +Sarah +Bernice +Catherine +Delores +Edith +Ella +Gail +Gloria +Joan +Julia +June +Kathryn +Lois +Maria +Phyllis +Ruth +Vera +Mary +Linda +Susan +Kathleen +Barbara +Nancy +Patricia +Karen +Elizabeth +Margaret +Sharon +Donna +Judith +Sandra +Alice +Virginia +Helen +Marie +Annie +Christine +Carol +Janice +Joyce +Judy +Ruth +Agnes +Diana +Janet +Deborah +Diane +Katherine +Sally +Betty +Catherine +Cheryl +Dorothy +Jean +Kathy +Lucy +Martha +Pamela +Anna +Cynthia +Lynda +Rose +Sarah +Theresa +Vera +Carolyn +Kathryn +Laura +Rita +Shirley +Sophie +Vicki +Beverly +Brenda +Charlene +Elaine +Frances +Jacqueline +Jeanne +Jo +Lois +Phyllis +Robin +Ann +Anne +Bonnie +Caroline +Charlotte +Eleanor +Elsie +Esther +Eva +Florence +Irene +Julie +Loretta +Louise +Lucille +Lynne +Marilyn +Norma +Rebecca +Teresa +Terry +Toni +Mary +Linda +Barbara +Patricia +Susan +Margaret +Kathleen +Donna +Karen +Sharon +Carol +Elizabeth +Nancy +Cynthia +Janet +Cheryl +Sandra +Pamela +Dorothy +Frances +Judy +Ruth +Judith +Marie +Shirley +Theresa +Betty +Catherine +Diane +Gloria +Marilyn +Virginia +Deborah +Janice +Kathryn +Martha +Alice +Bonnie +Carolyn +Christine +Jo +Katherine +Ellen +Paula +Rebecca +Rita +Vicki +Anna +Arlene +Brenda +Charlotte +Evelyn +Jane +Jeanne +Julia +Laura +Lucy +Pauline +Peggy +Sally +Ann +Bernice +Grace +Jean +Joan +Maureen +Rose +Sherry +Teresa +Edith +Eileen +Jacqueline +Josephine +Joyce +Lynn +Sarah +Sophie +Colleen +Constance +Darlene +Elsie +Emily +Gail +Geraldine +Helen +Jennifer +June +Kathy +Laurie +Lillian +Lois +Marcia +Rachel +Regina +Roberta +Rosemary +Sheila +Linda +Mary +Susan +Patricia +Barbara +Kathleen +Sandra +Margaret +Carol +Elizabeth +Nancy +Debra +Deborah +Martha +Pamela +Catherine +Ruth +Cynthia +Janice +Sharon +Janet +Cheryl +Karen +Diane +Alice +Betty +Christine +Judy +Katherine +Shirley +Donna +Helen +Marilyn +Jane +Virginia +Doris +Gail +Judith +Kathy +Marie +Rebecca +Carolyn +Esther +Frances +Jean +Joyce +Julia +Ann +Beverly +Dorothy +Laura +Lynn +Roberta +Teresa +Theresa +Darlene +Evelyn +Joan +Karla +Pauline +Vicki +Anna +Brenda +Denise +Diana +Kathryn +Peggy +Rita +Sally +Valerie +Agnes +Arlene +Carrie +Ellen +Gloria +Joanne +Marlene +Rose +Sheila +Sophie +Victoria +Andrea +Becky +Belinda +Claudia +Colleen +Constance +Elaine +Grace +Julie +Loretta +Lorraine +Louise +Lucy +Lydia +Marjorie +Maryann +Sarah +Terry +Linda +Mary +Patricia +Debra +Kathleen +Susan +Deborah +Barbara +Carol +Cynthia +Karen +Sandra +Sharon +Margaret +Pamela +Donna +Nancy +Christine +Martha +Elizabeth +Katherine +Kathy +Judy +Helen +Rebecca +Alice +Bonnie +Dorothy +Laura +Cheryl +Shirley +Denise +Ann +Diane +Frances +Janet +Janice +Judith +Teresa +Theresa +Brenda +Anna +Diana +Paula +Virginia +Jacqueline +Joyce +Kathryn +Ruth +Carolyn +Agnes +Jo +Lynn +Marilyn +Sally +Beverly +Charlene +Christina +Connie +Ellen +Gloria +Nora +Roberta +Stephanie +Vicki +Annie +Betty +Charlotte +Evelyn +Jean +Jeanne +Joanne +Marie +Peggy +April +Catherine +Cathy +Darlene +Eileen +Esther +Jennifer +Joan +Leslie +Lois +Lynda +Marsha +Patti +Rose +Sheila +Suzanne +Terry +Valerie +Yvonne +Eleanor +Florence +Jane +Julie +Marcia +Penny +Rita +Sherry +Sylvia +Vickie +Angela +Anne +Arlene +Colleen +Dianne +Elsie +Gail +Grace +Ingrid +Irene +Janis +Juanita +Julia +Kristine +Laurie +Lena +Lynne +Marianne +Michele +Michelle +Pauline +Rhonda +Robin +Sheryl +Terri +Victoria +Linda +Susan +Debra +Mary +Patricia +Deborah +Barbara +Karen +Kathleen +Nancy +Sandra +Cynthia +Elizabeth +Donna +Sharon +Diane +Pamela +Janet +Catherine +Christine +Margaret +Martha +Carol +Carolyn +Marilyn +Brenda +Teresa +Betty +Judith +Julie +Cheryl +Janice +Judy +Julia +Katherine +Laura +Shirley +Dorothy +Peggy +Rebecca +Beverly +Gloria +Joan +Leslie +Virginia +Denise +Gail +Helen +Kathryn +Laurie +Ruth +Sherry +Vicki +Alice +Darlene +Joyce +Kathy +Michelle +Bonnie +Diana +Frances +Jean +Jill +Terry +Theresa +Anita +Cathy +Elaine +Evelyn +Irene +Lynn +Marie +Paula +Rhonda +Roberta +Robin +Rose +Connie +Doris +Jacqueline +Jane +Jo +Joanne +Suzanne +Wendy +Ann +Kimberly +Maureen +Stella +Sylvia +Terri +Valerie +Amy +Anna +Carla +Charlene +Clara +Eileen +Ellen +Geraldine +Jeanne +Joann +Lillian +Rachel +Vera +Angela +Candace +Colleen +Debbie +Elena +Esther +Jan +Josephine +Lori +Lorraine +Lucy +Maggie +Marcia +Marlene +Minnie +Norma +Patti +Rosemary +Victoria +Wanda +Billie +Cecilia +Charmaine +Cheri +Christy +Cindy +Constance +Dawn +Delores +Emma +Ethel +June +Lois +Michele +Mildred +Myra +Patrice +Pauline +Rita +Sarah +Tracy +Vickie +Vicky +Yvonne +Debra +Mary +Deborah +Linda +Karen +Susan +Patricia +Cynthia +Barbara +Pamela +Nancy +Donna +Elizabeth +Kathleen +Margaret +Sandra +Diane +Katherine +Laura +Rebecca +Marilyn +Sharon +Carol +Catherine +Cheryl +Virginia +Kathy +Theresa +Beverly +Christine +Gloria +Kathryn +Martha +Shirley +Vicki +Dorothy +Betty +Laurie +Lucy +Rose +Anna +Janet +Ann +Bonnie +Janice +Jean +Judith +Julie +Marie +Peggy +Teresa +Brenda +Carolyn +Denise +Helen +Joan +Michelle +Roberta +Sheila +Terry +Lori +Sherry +Alice +Cathy +Cindy +Connie +Debbie +Jane +Joyce +Lois +Ruth +Darlene +Emma +Jeanne +Jennie +Leslie +Lisa +Paula +Robin +Sally +Sarah +Valerie +Charlene +Jacqueline +Jeanette +Jennifer +Judy +Julia +Rhonda +Rita +Colleen +Diana +Ellen +Gail +Glenda +Joanne +Joy +Nellie +Roxanne +Sophie +Stephanie +Vickie +Wanda +Yvonne +Agnes +Charlotte +Grace +Ida +Jo +Lee +Lorraine +Lynn +Marjorie +Anne +Becky +Carmen +Cheri +Dianne +Evelyn +Joni +Josephine +June +Kim +Kimberly +Marcia +Maria +Marlene +Martina +Michele +Mildred +Ramona +Suzanne +Anita +Annette +Annie +Beth +Carla +Carrie +Constance +Dawn +Eleanor +Frances +Geraldine +Irene +Jenny +Loretta +Melinda +Pauline +Renee +Sherri +Sheryl +Victoria +Debra +Mary +Linda +Susan +Karen +Deborah +Patricia +Cynthia +Barbara +Kathleen +Sandra +Donna +Nancy +Pamela +Elizabeth +Margaret +Cheryl +Laura +Rebecca +Katherine +Carol +Sharon +Catherine +Diane +Teresa +Theresa +Janice +Ruth +Diana +Kathy +Lisa +Janet +Marilyn +Vicki +Beverly +Julie +Judith +Kathryn +Denise +Carolyn +Robin +Terry +Bonnie +Dawn +Debbie +Doris +Ellen +Jacqueline +Kim +Leslie +Paula +Peggy +Cathy +Helen +Jean +Joan +Shirley +Alice +Brenda +Joyce +Michelle +Rose +Sarah +Ann +Anne +Betty +Christine +Connie +Judy +Lynn +Marie +Martha +Vicky +Cindy +Darlene +Dorothy +Frances +Holly +Lois +Lorraine +Mildred +Sheila +Tina +Anna +Gail +Jennifer +Kimberly +Laurie +Loretta +Lori +Renee +Roberta +Sherry +Valerie +Virginia +Amy +Beth +Carla +Gayle +Joanne +Margie +Marlene +Melody +Michele +Monica +Norma +Angela +Arlene +Bessie +Carrie +Christina +Colleen +Emily +Grace +Jeanette +Joni +Maureen +Melissa +Myra +Ramona +Rhonda +Andrea +Bernice +Charlene +Dianne +Elena +Elsie +Ethel +Gloria +Jane +Kay +Lorna +Lucy +Lydia +Melinda +Molly +Phyllis +Sally +Sheryl +Stella +Stephanie +Vickie +Victoria +Wendy +Yvonne +April +Candace +Cheri +Constance +Edna +Elaine +Eleanor +Emma +Eva +Evelyn +Geraldine +Jacquelyn +Jill +Jo +Julia +June +Louise +Maria +Marla +Marsha +Minnie +Nina +Pauline +Sara +Shannon +Shelley +Sue +Terri +Debra +Mary +Linda +Susan +Patricia +Barbara +Karen +Deborah +Elizabeth +Sharon +Cynthia +Pamela +Sandra +Cheryl +Donna +Nancy +Rebecca +Janet +Teresa +Carol +Margaret +Kathleen +Theresa +Catherine +Diane +Laura +Brenda +Judy +Kathryn +Martha +Christine +Betty +Cindy +Julie +Kim +Anna +Carolyn +Colleen +Lynn +Rose +Janice +Laurie +Lisa +Paula +Connie +Diana +Jean +Judith +Robin +Tina +Vicki +Ann +Darlene +Katherine +Kathy +Alice +Denise +Doris +Ellen +Gloria +Marilyn +Ruth +Vickie +Beverly +Bonnie +Cathy +Debbie +Michelle +Rhonda +Arlene +Joanne +Lori +Terri +Elaine +Helen +Julia +Kimberly +Marie +Roberta +Sheila +Wanda +Dawn +Dorothy +Evelyn +Gail +Joyce +Louise +Peggy +Phyllis +Sheryl +Susie +Toni +Angela +Charlotte +Sally +Wendy +Bertha +Grace +Jill +Karla +Leslie +Marjorie +Sophie +Stephanie +Vicky +Vivian +Agnes +Anita +Edna +Glenda +Gwendolyn +Jeanne +Joan +Joann +June +Lucy +Marlene +Maureen +Pauline +Ramona +Rosemary +Sarah +Sherry +Shirley +Suzanne +Sylvia +Terry +Valerie +Verna +Billie +Christina +Debora +Dolores +Eva +Florence +Geraldine +Jacqueline +Jennifer +Jo +Kerry +Lillian +Loretta +Lorraine +Maxine +Michele +Mildred +Norma +Renee +Sheri +Victoria +Yvonne +Becky +Cathleen +Claudia +Eleanor +Emily +Flora +Ida +Irene +Jan +Joni +Joy +Juanita +Kelly +Lydia +Melinda +Melody +Minnie +Rosalie +Shannon +Sheree +Sherri +Violet +Mary +Susan +Cynthia +Debra +Linda +Karen +Patricia +Deborah +Cheryl +Sharon +Pamela +Barbara +Carol +Diane +Sandra +Cindy +Elizabeth +Kathleen +Nancy +Donna +Janet +Kathy +Laura +Denise +Katherine +Margaret +Teresa +Brenda +Theresa +Anna +Julie +Kimberly +Debbie +Lisa +Rebecca +Robin +Rose +Sherry +Judy +Ruth +Sheila +Shirley +Kim +Paula +Catherine +Cathy +Elaine +Laurie +Tina +Vicki +Ellen +Janice +Julia +Kathryn +Marie +Marilyn +Roberta +Connie +Darlene +Lucy +Michelle +Alice +Ann +Arlene +Bonnie +Christine +Colleen +Loretta +Martha +Rhonda +Terri +Esther +Evelyn +Joan +Joyce +Lynn +Marsha +Maureen +Tammy +Vickie +Wanda +Bertha +Betty +Beverly +Carolyn +Diana +Glenda +Jacqueline +Jane +Jean +Leslie +Marlene +Virginia +Anita +Carrie +Doris +Helen +Jeanne +Maria +Ramona +Sarah +Stephanie +Valerie +Victoria +Agnes +Christina +Clara +Delores +Dorothy +Eileen +Flora +Gail +Lori +Lynda +Melody +Patti +Pauline +Sally +Sue +Terry +Yvonne +Angela +Audrey +Charlene +Dianna +Florence +Frances +Irene +Joann +Lorna +Marcella +Nora +Norma +Peggy +Rita +Sheri +Cecelia +Elena +Emma +Eva +Georgia +Gloria +Ida +Jeanette +Judith +Laurel +Louise +Lydia +Marian +Nellie +Nina +Rachel +Sherrie +Sheryl +Suzanne +Sylvia +Toni +Alberta +Amy +April +Bessie +Beth +Carla +Charlotte +Dawn +Gina +Holly +Jackie +Jody +Kelly +Leona +Lorraine +Maggie +Marjorie +Michele +Penny +Priscilla +Renee +Robyn +Roxanne +Stella +Susie +Tanya +Teri +Thelma +Mary +Susan +Karen +Debra +Linda +Donna +Elizabeth +Patricia +Deborah +Cheryl +Barbara +Cynthia +Sharon +Pamela +Debbie +Diane +Kathleen +Sandra +Kathy +Katherine +Lori +Brenda +Theresa +Carol +Cindy +Janet +Julie +Margaret +Martha +Laura +Nancy +Dorothy +Janice +Judy +Teresa +Tina +Kathryn +Kim +Diana +Lisa +Kimberly +Rebecca +Shirley +Ellen +Helen +Julia +Ruth +Betty +Lucy +Peggy +Vicki +Anita +Christine +Joanne +Laurie +Pauline +Valerie +Beverly +Carolyn +Denise +Sally +Sherry +Alice +Ann +Kelly +Robin +Rose +Terri +Angela +Darlene +Esther +Glenda +Gloria +Rhonda +Tammy +Charlotte +Elaine +Jean +Jennifer +Jo +Michelle +Phyllis +Roberta +Terry +Victoria +Anna +Catherine +Doris +Evelyn +Joyce +Judith +Maria +Melanie +Paula +Shelley +Veronica +Agnes +Cathy +Clara +Connie +Dawn +Jane +June +Leslie +Nora +Sheila +Susie +Virginia +Anne +Beth +Carla +Darla +Debora +Emma +Florence +Jacqueline +Lillian +Lois +Lydia +Marie +Marlene +Michele +Pam +Renee +Rhoda +Sarah +Shawn +Wanda +Yvonne +Andrea +Annie +Becky +Bonnie +Colleen +Eileen +Gail +Geraldine +Grace +Heather +Jeanette +Joann +Loretta +Lorraine +Marilyn +Melody +Shannon +Stella +Stephanie +Sue +Vicky +Annette +Audrey +Carrie +Cecilia +Charlene +Delores +Dianne +Dora +Eva +Flora +Frances +Gayle +Holly +Jenny +Josephine +Leona +Lou +Mildred +Molly +Priscilla +Rita +Sherri +Sheryl +Suzanne +Sylvia +Tamara +Tami +Mary +Karen +Debra +Linda +Donna +Patricia +Susan +Pamela +Lisa +Sharon +Cynthia +Nancy +Cheryl +Kathy +Barbara +Deborah +Kathleen +Margaret +Elizabeth +Julie +Teresa +Laura +Sandra +Carol +Cindy +Kimberly +Theresa +Lori +Diane +Michelle +Debbie +Helen +Connie +Diana +Tina +Virginia +Brenda +Janice +Rebecca +Tammy +Dorothy +Judy +Kelly +Kim +Denise +Catherine +Darlene +Laurie +Leslie +Valerie +Ruth +Shirley +Vicki +Dawn +Ellen +Janet +Robin +Arlene +Marie +Renee +Angela +Anna +Carolyn +Evelyn +Katherine +Kathryn +Rose +Sarah +Terry +Christine +Joyce +Julia +Rita +Sally +Sherry +Ann +Bonnie +Cathy +Jean +Joanne +Judith +Martha +Norma +Penny +Terri +Paula +Ramona +Wanda +Annette +Bernice +Betty +Jennifer +Lillian +Lorraine +Maria +Marilyn +Patti +Rhonda +Alice +Audrey +Becky +Beverly +Colleen +Elaine +Grace +Irene +Jane +Joan +Regina +Tamara +Victoria +Carrie +Christina +Emily +Emma +Geraldine +Heidi +Holly +Jeanne +Josephine +Marcia +Marlene +Pauline +Peggy +Sheryl +Tracy +Veronica +Vivian +Amy +Charlene +Doris +Eileen +Esther +Flora +Gail +Gina +Jackie +Jacqueline +Loretta +Marjorie +Melody +Natalie +Roberta +Shannon +Shelly +Suzanne +Toni +Agnes +Anita +Anne +April +Bertha +Candy +Carla +Chris +Crystal +Dana +Debora +Elena +Eva +Florence +Joni +Kelli +Kristen +Laurel +Margie +Minnie +Nina +Patty +Rachel +Shawn +Sheila +Shelley +Sheri +Sherrie +Stephanie +Teri +Wendy +Yvonne +Mary +Linda +Karen +Debra +Susan +Elizabeth +Sandra +Patricia +Donna +Cindy +Cheryl +Teresa +Cynthia +Nancy +Laura +Deborah +Lisa +Barbara +Kelly +Theresa +Brenda +Sharon +Julie +Lori +Carol +Margaret +Debbie +Kathleen +Rebecca +Janet +Diane +Kimberly +Pamela +Dorothy +Kathy +Alice +Robin +Katherine +Leslie +Connie +Kim +Janice +Laurie +Rhonda +Ruth +Terri +Cathy +Tammy +Wendy +Catherine +Darlene +Diana +Rose +Vicki +Bonnie +Carolyn +Denise +Marie +Terry +Anna +Michelle +Roberta +Sarah +Sheryl +Shirley +Anita +Ann +Judith +Pauline +Angela +Carrie +Joyce +Martha +Pam +Paula +Peggy +Beverly +Ellen +Gail +Helen +Jacqueline +Jean +Jennifer +Joanne +Marilyn +Melanie +Sheila +Sherry +Tina +Tracy +Virginia +Yvonne +Annette +Beth +Cheri +Christina +Colleen +Dawn +Emily +Eva +Josephine +Loretta +Lucy +Phyllis +Stephanie +Tamara +Amy +Bernadette +Carla +Eileen +Frances +Grace +Kathryn +Marlene +Penny +Suzanne +Becky +Betty +Charlene +Christine +Crystal +Elaine +Elena +Emma +Heidi +Holly +Monica +Rita +Sally +Tami +Andrea +Dana +Deanna +Esther +Florence +Harriet +Irene +Jeanette +Lillian +Louise +Margie +Maria +Marjorie +Matilda +Melinda +Melody +Michele +Patty +Ramona +Renee +Vivian +April +Bertha +Dora +Doris +Eleanor +Evelyn +Fannie +Geraldine +Heather +Jeannie +Jo +Jody +Johanna +Judy +Julia +Kirsten +Maureen +Mona +Myrna +Nellie +Nora +Rosemary +Ruby +Sandy +Shelly +Stella +Teri +Valerie +Vera +Vicky +Victoria +Wanda +Mary +Lisa +Karen +Linda +Susan +Donna +Patricia +Cynthia +Debra +Theresa +Lori +Barbara +Sandra +Cheryl +Teresa +Brenda +Kelly +Sharon +Nancy +Laura +Deborah +Kimberly +Carol +Elizabeth +Cindy +Denise +Janet +Robin +Pamela +Angela +Diane +Margaret +Debbie +Kathleen +Catherine +Christine +Julie +Kim +Michelle +Rebecca +Katherine +Dawn +Kathy +Marie +Colleen +Janice +Sherry +Tammy +Shirley +Diana +Jacqueline +Jennifer +Martha +Terri +Tina +Anna +Darlene +Dorothy +Lucy +Ruth +Wendy +Alice +Carolyn +Connie +Laurie +Renee +Tamara +Valerie +Wanda +Beth +Carla +Doris +Grace +Judy +Rhonda +Roberta +Tracy +Vicki +Virginia +Ann +Carrie +Elaine +Helen +Jill +Judith +Michele +Anita +Anne +Betty +Bonnie +Cathy +Julia +Maria +Sarah +Vera +Becky +Clara +Evelyn +Gloria +Joan +Joyce +Lynn +Marilyn +Melissa +Pauline +Rose +Toni +Agnes +Beverly +Holly +Kathryn +Leslie +Marlene +Maureen +Melody +Monica +Peggy +Sheila +Shelley +Tami +Terry +Veronica +Victoria +Bertha +Ella +Ellen +Eva +Geraldine +Jean +Nora +Paula +Sheri +Sheryl +Stephanie +Suzanne +Teri +Amy +Annette +April +Arlene +Audrey +Charlene +Chris +Christina +Gail +Gladys +Joanne +Juanita +Lynda +Melanie +Minnie +Molly +Olga +Sara +Shannon +Stella +Sylvia +Verna +Yvonne +Annie +Cheri +Christy +Cora +Edna +Eleanor +Esther +Frances +Heidi +Jackie +Jana +Jane +Jeanette +Joann +Joni +Joy +Laurel +Lorraine +Melinda +Patti +Penny +Ramona +Rita +Rosemary +Roxanne +Ruby +Sally +Sue +Vanessa +Mary +Karen +Susan +Cynthia +Brenda +Lisa +Elizabeth +Linda +Deborah +Carol +Kimberly +Lori +Patricia +Donna +Kelly +Laura +Barbara +Teresa +Theresa +Debra +Sandra +Cheryl +Michelle +Diane +Pamela +Sharon +Julie +Tammy +Denise +Janet +Darlene +Kathy +Margaret +Anna +Kim +Laurie +Nancy +Rebecca +Tina +Catherine +Cindy +Judy +Katherine +Rhonda +Christine +Dawn +Kathleen +Terri +Angela +Colleen +Debbie +Janice +Martha +Michele +Christina +Robin +Valerie +Alice +Beverly +Bonnie +Carolyn +Jennifer +Lynn +Marie +Roberta +Ruth +Wendy +Yvonne +Connie +Paula +Peggy +Renee +Sarah +Sherri +Suzanne +Ann +Jill +Kathryn +Rose +Tamara +Victoria +Cora +Irene +Rita +Sally +Shannon +Sheryl +Stephanie +Vicki +Virginia +Wanda +Agnes +Carla +Cathy +Darla +Heidi +Jacqueline +Jamie +Jean +Julia +Marlene +Sheila +Sherry +Shirley +Toni +Tracy +Anne +Beth +Charlotte +Cheri +Elaine +Elsie +Evelyn +Jeanette +Joyce +Leslie +Pam +Pauline +Rachel +Vickie +Anita +Annette +Annie +Carrie +Diana +Doris +Esther +Eva +Gail +Gina +Gladys +Helen +Jane +Joann +Lorraine +Molly +Nora +Veronica +Caroline +Dora +Dorothy +Holly +Ida +Jeannine +Joanne +Joy +Karla +Loretta +Maria +Melody +Natalie +Ronda +Ruby +Sandy +Susie +Tanya +Vivian +Amy +Audrey +Bernadette +Bertha +Charlene +Deanna +Dianna +Dianne +Frances +Glenda +Hannah +Jackie +Jo +Kristin +Lillian +Lorena +Lucy +Maggie +Marcella +Marilyn +Maureen +Melissa +Monica +Nellie +Nina +Phyllis +Polly +Sheri +Sophie +Tammie +Terry +Tracey +Vera +Verna +Vicky +Mary +Lisa +Linda +Sandra +Karen +Donna +Susan +Teresa +Barbara +Deborah +Sharon +Lori +Patricia +Brenda +Kimberly +Pamela +Cynthia +Carol +Denise +Kelly +Julie +Debra +Elizabeth +Cheryl +Kathleen +Laura +Kathy +Tina +Angela +Robin +Christine +Leslie +Margaret +Martha +Michelle +Nancy +Rebecca +Theresa +Diane +Jennifer +Catherine +Janet +Valerie +Diana +Alice +Debbie +Sheila +Darlene +Kim +Tracy +Katherine +Michele +Ruth +Anna +Carolyn +Connie +Dawn +Joan +Tammy +Annette +Carla +Cindy +Heidi +Janice +Rhonda +Rose +Sherry +Judy +Laurie +Terri +Wendy +Ann +Becky +Charlene +Colleen +Deanna +Dorothy +Evelyn +Gina +Maria +Monica +Sherri +Shirley +Suzanne +Beverly +Bonnie +Carrie +Gail +Helen +Jacqueline +Kathryn +Lucy +Shannon +Tamara +Andrea +Betty +Holly +Jackie +Marlene +Phyllis +Sarah +Stacey +Yvonne +Anita +Audrey +Della +Eileen +Eva +Florence +Jane +Jean +Joann +Julia +Lena +Lynn +Marilyn +Melissa +Molly +Peggy +Renee +Stephanie +Veronica +Vicki +Wanda +Amy +Arlene +Charlotte +Christina +Dianna +Doris +Elena +Esther +Marie +Melanie +Nora +Paula +Robyn +Sally +Stacy +Trudy +Cecelia +Dana +Grace +Jennie +Jill +Joy +Juanita +June +Kay +Lucille +Melody +Pam +Roberta +Ronda +Sandy +Sheri +Terry +Vera +Virginia +Wilma +Anne +Annie +April +Bertha +Bessie +Cathy +Doreen +Ellen +Ethel +Geraldine +Gertrude +Glenda +Heather +Jessica +Jodi +Jody +Joni +Judith +Kelley +Kristine +Loretta +Lorraine +Lorrie +Marcia +Margie +Melinda +Minnie +Norma +Patty +Pauline +Rita +Sara +Shelley +Shelly +Sylvia +Tanya +Vickie +Mary +Lisa +Susan +Karen +Patricia +Brenda +Donna +Kimberly +Sandra +Elizabeth +Linda +Cynthia +Teresa +Deborah +Sharon +Cheryl +Michelle +Laura +Lori +Denise +Kelly +Theresa +Barbara +Cindy +Pamela +Carol +Julie +Angela +Christine +Kathleen +Margaret +Rebecca +Tina +Dawn +Diane +Katherine +Nancy +Martha +Rhonda +Diana +Janet +Jennifer +Kathy +Kim +Paula +Tammy +Darlene +Debra +Leslie +Robin +Catherine +Debbie +Amy +Anna +Carolyn +Kathryn +Tracy +Joann +Judy +Sherry +Terri +Valerie +Wendy +Helen +Jacqueline +Laurie +Shelley +Ann +Beverly +Bonnie +Connie +Jill +Roberta +Rose +Ruth +Sarah +Shannon +Anne +Annie +Dana +Deanna +Gail +Grace +Loretta +Renee +Veronica +Anita +Annette +Colleen +Eileen +Evelyn +Heidi +Holly +Sally +Sheila +Stephanie +Betty +Carrie +Cathy +Christina +Frances +Gina +Joan +Joyce +Lucy +Lynda +Marie +Melinda +Monica +Sandy +Sherri +Andrea +April +Carla +Charlene +Dorothy +Elena +Emma +Geraldine +Janice +Jeanette +Joanne +Julia +Lorraine +Lynn +Marlene +Melody +Michele +Mona +Suzanne +Victoria +Alice +Audrey +Bernice +Dora +Esther +Eva +Heather +Jackie +Joy +Juanita +Judith +June +Karla +Kristi +Kristina +Lillian +Marcia +Maria +Marilyn +Melissa +Rachel +Rita +Ronda +Sabrina +Shelly +Sheri +Sheryl +Shirley +Vera +Vivian +Amelia +Bessie +Beth +Caroline +Delores +Elaine +Gloria +Hannah +Irene +Jo +Jodi +Kara +Kristin +Lorri +Lydia +Maxine +Natalia +Natalie +Nina +Peggy +Penny +Roxanne +Sherrie +Stacey +Susie +Tamara +Venus +Vickie +Lisa +Mary +Karen +Kimberly +Deborah +Michelle +Elizabeth +Cynthia +Robin +Angela +Dawn +Patricia +Carol +Jennifer +Linda +Pamela +Sandra +Susan +Laura +Teresa +Tina +Martha +Sharon +Brenda +Christine +Donna +Kathleen +Tammy +Rhonda +Barbara +Cheryl +Amy +Nancy +Diane +Debra +Janet +Julie +Katherine +Lori +Melissa +Kelly +Rebecca +Sarah +Denise +Kathy +Theresa +Anne +Sherry +Terri +Anna +Catherine +Colleen +Jacqueline +Kim +Darlene +Joyce +Laurie +Lynn +Margaret +Paula +Roberta +Tracy +Alice +Andrea +Cindy +Marie +Valerie +Betty +Debbie +Heather +Heidi +Kathryn +Maria +Ruth +Sheila +Shirley +Wendy +Bonnie +Carla +Carrie +Cathy +Diana +Julia +Shannon +Bertha +Connie +Dorothy +Gail +Janice +Jill +Judith +Karin +Peggy +Rose +Stephanie +Anita +Annette +Caroline +Carolyn +Charlotte +Christina +Crystal +Karla +Natalie +Pauline +Sylvia +Teri +Victoria +Virginia +Beverly +Elaine +Ellen +Frances +Gina +Kristina +Leslie +Lucy +Penny +Phyllis +Shelly +Tracey +Wanda +Allison +Beatrice +Doreen +Edith +Eileen +Judy +Kristine +Melinda +Monica +Ronda +Shari +Sherri +Tanya +Vera +Vicki +Annie +Audrey +Bernice +Beth +Charlene +Deanna +Deanne +Dianne +Dolly +Dora +Edna +Eleanor +Eva +Holly +Jackie +Jeanne +Joann +Joni +Lora +Loretta +Lorraine +Lynne +Marianne +Marilyn +Michele +Molly +Ramona +Renee +Roxanne +Shelley +Sheryl +Sophie +Stacy +Suzanne +Toni +Veronica +Mary +Lisa +Michelle +Karen +Elizabeth +Susan +Kimberly +Patricia +Cynthia +Laura +Teresa +Julie +Sandra +Sharon +Wendy +Brenda +Linda +Pamela +Rhonda +Jennifer +Rebecca +Tina +Christine +Dawn +Donna +Kelly +Barbara +Theresa +Amy +Angela +Kim +Tammy +Carol +Debra +Andrea +Kathleen +Margaret +Michele +Denise +Katherine +Tracy +Cheryl +Cindy +Deborah +Diane +Heidi +Helen +Stephanie +Anna +Kathryn +Martha +Bonnie +Catherine +Colleen +Diana +Janice +Maria +Nancy +Ruth +Sarah +Sherry +Darlene +Jacqueline +Kristine +Melinda +Melissa +Paula +Robin +Rose +Gloria +Julia +Lori +Marie +Roberta +Tamara +Anita +Anne +Christina +Kathy +Leslie +Lucy +Monica +Suzanne +Tanya +Virginia +Arlene +Dana +Janet +Lorraine +Lynn +Sheila +Shelley +Tonya +Alice +Ann +Annette +Carla +Carmen +Carolyn +Deanna +Esther +Gail +Jeanette +Judy +Kari +Karla +Leona +Natalie +Pauline +Peggy +Shannon +Shelly +Sherri +Sherrie +Stacey +Vickie +April +Audrey +Beth +Beverly +Candace +Debbie +Della +Dorothy +Ellen +Erin +Frances +Heather +Holly +Joan +Joann +Judith +Kristin +Kristina +Lynda +Sheri +Sonya +Tami +Agnes +Angelina +Carrie +Charlene +Clara +Connie +Emily +Emma +Evelyn +Florence +Geraldine +Gina +Grace +Hannah +Jill +Joelle +Joyce +June +Kimberley +Kirsten +Laurie +Leann +Loretta +Melody +Nicole +Renee +Stacy +Sue +Terri +Valerie +Veronica +Vicki +Victoria +Yvonne +Lisa +Kimberly +Michelle +Mary +Karen +Elizabeth +Susan +Cynthia +Sandra +Jennifer +Deborah +Laura +Angela +Rebecca +Kelly +Brenda +Katherine +Teresa +Tammy +Tina +Christine +Julie +Barbara +Dawn +Donna +Patricia +Tracy +Kathleen +Linda +Lori +Cheryl +Janet +Michele +Sharon +Stephanie +Theresa +Diane +Wendy +Carol +Denise +Pamela +Shannon +Tonya +Carrie +Cindy +Debra +Andrea +Kathryn +Stacey +Beverly +Debbie +Janice +Laurie +Margaret +Melissa +Nancy +Sheila +Sherri +April +Catherine +Heather +Kim +Tamara +Beth +Darlene +Heidi +Helen +Julia +Kathy +Monica +Paula +Rhonda +Ruth +Wanda +Amy +Annette +Carla +Charlene +Connie +Jacqueline +Marie +Robin +Shelly +Alice +Caroline +Cathy +Dorothy +Jill +Martha +Molly +Roberta +Rose +Sherry +Suzanne +Tanya +Terri +Anna +Christina +Maria +Natalie +Stacy +Tiffany +Amanda +Ann +Anne +Diana +Evelyn +Joan +Leah +Marjorie +Rene +Renee +Sarah +Victoria +Bonnie +Colleen +Crystal +Danielle +Geraldine +Gina +Holly +Jean +Kerry +Kirsten +Kristen +Kristina +Leslie +Melinda +Melody +Nicole +Samantha +Sophie +Virginia +Becky +Bertha +Dana +Deanna +Delores +Esther +Gail +Ginger +Kara +Karla +Katie +Kristin +Kristine +Lucy +Marcia +Marilyn +Myra +Sabrina +Shirley +Tara +Trina +Valerie +Vicki +Yvonne +Michelle +Lisa +Kimberly +Laura +Jennifer +Tina +Mary +Christine +Karen +Tracy +Angela +Julie +Susan +Michele +Rebecca +Cynthia +Deborah +Tammy +Dawn +Heather +Sharon +Stephanie +Donna +Pamela +Cheryl +Melissa +Shannon +Wendy +Anna +Amy +Lori +Elizabeth +Katherine +Kelly +Teresa +Linda +Margaret +Nancy +Patricia +Sandra +Tanya +Brenda +Carrie +Kathleen +Sarah +Tamara +Victoria +Rhonda +Andrea +Barbara +Paula +Renee +April +Denise +Melinda +Roberta +Theresa +Carol +Christina +Debra +Diana +Helen +Kristin +Robin +Sherry +Tonya +Ann +Catherine +Cindy +Gina +Jacqueline +Jill +Laurie +Ruth +Terri +Dana +Deanna +Janet +Lillian +Sherri +Valerie +Bonnie +Heidi +Holly +Kathryn +Kim +Kristina +Melanie +Sheila +Sonya +Suzanne +Virginia +Yvonne +Colleen +Diane +Jeanne +Kristen +Molly +Monica +Shelly +Cassandra +Danielle +Darlene +Eileen +Janice +Julia +Kristi +Leslie +Lorraine +Regina +Sabrina +Stacey +Tara +Agnes +Alice +Anita +Annette +Carla +Dorothy +Gail +Jody +Kari +Lara +Marie +Maureen +Samantha +Sara +Shawna +Sheri +Tami +Toni +Amanda +Amber +Becky +Carolyn +Charlene +Darcy +Debbie +Dianna +Erin +Evelyn +Ginger +Ingrid +Jeanette +Jo +Jodi +Josephine +Joyce +Judy +Karla +Kendra +Kirsten +Kristie +Kristine +Maria +Martha +Natalie +Penny +Sally +Stacy +Tiffany +Traci +Michelle +Kimberly +Jennifer +Lisa +Mary +Julie +Laura +Angela +Karen +Rebecca +Christine +Tina +Tammy +Elizabeth +Patricia +Dawn +Donna +Deborah +Shannon +Sandra +Brenda +Kelly +Melissa +Stephanie +Rhonda +Susan +Teresa +Barbara +Heather +Katherine +Tracy +Amy +Cynthia +Wendy +Denise +Michele +Margaret +Pamela +Christina +Sharon +Catherine +Cheryl +Cindy +Lori +Deanna +Diane +Kathleen +Robin +Sherri +Tamara +Valerie +Victoria +Ann +Heidi +Renee +Gina +Kristen +Linda +Sarah +Suzanne +Tanya +Theresa +Andrea +Darlene +Debra +Jacqueline +Rachel +Rose +Shawn +Sheila +Tara +Tonya +April +Jill +Julia +Kim +Melinda +Nicole +Sara +Sheri +Sonya +Anna +Carla +Helen +Kristine +Roberta +Tami +Vicki +Beth +Carol +Kristin +Nancy +Shawna +Sherry +Alicia +Anita +Anne +Carolyn +Charlotte +Connie +Erika +Janet +Judy +Lara +Stacey +Tracey +Belinda +Beverly +Carrie +Crystal +Dana +Josephine +Kathryn +Kathy +Kristina +Laurie +Melanie +Paula +Shelley +Stacy +Terri +Virginia +Adrienne +Amanda +Annie +Bonnie +Carmen +Charlene +Colleen +Diana +Dorothy +Edith +Holly +Jamie +Jeanette +Kirsten +Kristi +Lynn +Marie +Martha +Molly +Monica +Ruth +Shirley +Stacie +Tiffany +Trina +Alice +Alisa +Bridget +Caroline +Christy +Debbie +Evelyn +Gail +Jennie +Jo +Joanna +Judith +Leann +Leigh +Maria +Marla +Natalie +Norma +Ramona +Robyn +Shelly +Sonja +Tonia +Traci +Vanessa +Vera +Wanda +Yolanda +Jennifer +Michelle +Kimberly +Lisa +Mary +Shannon +Julie +Angela +Heather +Dawn +Elizabeth +Wendy +Cynthia +Karen +Christine +Rebecca +Deborah +Denise +Patricia +Tina +Amy +Melissa +Rachel +Stephanie +Tammy +Teresa +Laura +Lori +Pamela +Susan +Katherine +Brenda +Carrie +Cheryl +Donna +Kelly +Tonya +Tracy +Sandra +Rhonda +Anna +Barbara +Carolyn +Robin +Stacey +Holly +Tamara +Tanya +Catherine +Margaret +Michele +Renee +Tara +Tiffany +Christina +Diane +Kathleen +Linda +Monica +Nancy +Sharon +Theresa +Bonnie +Heidi +Jacqueline +Laurie +Nicole +Sarah +Sheila +Ann +April +Crystal +Debra +Julia +Valerie +Andrea +Charlene +Danielle +Kristin +Martha +Melinda +Stacy +Carla +Cindy +Dana +Jodi +Kathy +Leah +Lena +Lynn +Maria +Samantha +Tracey +Alicia +Anne +Carol +Christy +Dora +Kristine +Paula +Ruth +Sherry +Suzanne +Terri +Victoria +Alice +Amber +Deanna +Diana +Helen +Jamie +Janet +Kristen +Kristina +Leslie +Melanie +Regina +Shawna +Shelley +Yvonne +Bobbi +Candace +Carmen +Charlotte +Colleen +Dena +Erika +Erin +Jessica +Jill +Katrina +Lara +Marie +Roberta +Sabrina +Shawn +Traci +Trina +Annette +Bobbie +Cara +Darlene +Janice +Jeanette +Joanne +Joyce +June +Kathryn +Kellie +Kerry +Kim +Krista +Lucy +Marlene +Meredith +Natalie +Peggy +Rachael +Shelly +Sherri +Tracie +Vanessa +Veronica +Vicki +Audrey +Becky +Beverly +Cheri +Darcy +Desiree +Edna +Elena +Ellen +Emma +Gina +Gretchen +Jacquelyn +Jean +Jody +Kerri +Kimberley +Kristy +Laurel +Lynne +Marilyn +Misty +Robyn +Rose +Sara +Terra +Tricia +Vera +Jennifer +Michelle +Lisa +Heather +Mary +Angela +Kimberly +Melissa +Dawn +Tammy +Rebecca +Julie +Stephanie +Tracy +Cynthia +Laura +Elizabeth +Shannon +Christina +Kelly +Tara +Wendy +Amy +Christine +Karen +Katherine +Patricia +Sarah +Sharon +Lori +Heidi +Catherine +Andrea +Brenda +Denise +Linda +Nancy +Cheryl +Kathleen +Melanie +Pamela +Susan +Teresa +Carrie +Erin +Theresa +Tina +Tonya +Crystal +Deborah +Nicole +Anna +Jessica +Margaret +Sandra +Tanya +Barbara +Robin +Sherry +Tamara +April +Charlene +Holly +Julia +Kristin +Rachel +Rhonda +Stacey +Tiffany +Christy +Donna +Janice +Monica +Paula +Stacy +Amanda +Becky +Carol +Dana +Gina +Janet +Kristen +Marie +Martha +Michele +Shawna +Suzanne +Colleen +Debra +Erica +Jill +Kristina +Ruth +Shelly +Virginia +Anita +Ann +Anne +Bonnie +Carla +Cindy +Connie +Darlene +Erika +Katrina +Kerry +Melinda +Renee +Alice +Alison +Bobbie +Cassandra +Danielle +Deanna +Diane +Dora +Dorothy +Jackie +Jenny +Joann +Joy +Kara +Kristi +Leslie +Misty +Natasha +Samantha +Shirley +Stella +Alicia +Allison +Amber +Emily +Geraldine +Gretchen +Gwendolyn +Helen +Jacqueline +Joanne +Jodi +Kari +Kathryn +Kristine +Laurie +Maria +Ramona +Roberta +Ronda +Sonya +Valerie +Aimee +Belinda +Beth +Betty +Beverly +Carolyn +Clara +Diana +Dianna +Irene +Jolene +Kelli +Kim +Loretta +Maggie +Marilyn +Molly +Natalia +Robyn +Rose +Sara +Shanna +Shelley +Tami +Tracey +Victoria +Jennifer +Michelle +Lisa +Kimberly +Heather +Amy +Christine +Angela +Melissa +Mary +Elizabeth +Karen +Shannon +Christina +Rebecca +Julie +Stephanie +Brenda +Dawn +Laura +Sarah +Tammy +Tina +Crystal +Tracy +Katherine +Nicole +Sharon +Lori +Melanie +April +Heidi +Holly +Pamela +Tanya +Teresa +Cynthia +Patricia +Susan +Carrie +Deborah +Erin +Kelly +Renee +Andrea +Cheryl +Kathleen +Nancy +Sara +Sheila +Danielle +Katrina +Margaret +Monica +Tamara +Brandy +Melinda +Sandra +Stacy +Wendy +Amber +Barbara +Donna +Kim +Kristine +Paula +Tonya +Alice +Allison +Anna +Diana +Dorothy +Jacqueline +Jessica +Michele +Rachel +Robin +Shelly +Stacey +Theresa +Valerie +Anita +Carla +Catherine +Christy +Kristen +Kristina +Suzanne +Tara +Terri +Amanda +Emily +Janet +Jeanne +Jenny +Jodi +Kathryn +Leah +Linda +Lora +Marie +Marsha +Natalie +Roberta +Samantha +Sherry +Stella +Tiffany +Victoria +Beverly +Brandi +Carmen +Cindy +Dana +Debra +Desiree +Eva +Jeanette +Julia +Krista +Laurie +Lynn +Maria +Marilyn +Martha +Rena +Rhonda +Robyn +Shirley +Sonya +Traci +Tracie +Trina +Alexandra +Ann +Anne +Autumn +Bonnie +Carolyn +Charlene +Debbie +Denise +Elaine +Gina +Grace +Gretchen +Gwen +Helen +Jill +Joanne +Jodie +Juanita +Judy +Kathy +Kerri +Kerry +Kristie +Misty +Peggy +Priscilla +Rita +Rose +Ruth +Sabrina +Shana +Shelley +Sonja +Sophie +Teri +Tracey +Jennifer +Michelle +Stephanie +Amy +Heather +Lisa +Angela +Kimberly +Mary +Elizabeth +Christine +Julie +Melissa +Shannon +Rebecca +Christina +Tammy +Tina +Laura +Cynthia +Teresa +Dawn +Patricia +Margaret +Sarah +Wendy +Amanda +Catherine +April +Barbara +Crystal +Karen +Katherine +Nicole +Tanya +Cheryl +Kelly +Lori +Suzanne +Jessica +Stacy +Theresa +Traci +Tracy +Brandy +Deborah +Heidi +Kathryn +Michele +Molly +Susan +Tamara +Danielle +Denise +Kathleen +Maria +Melanie +Nancy +Rachel +Sandra +Amber +Ann +Carrie +Deanna +Erica +Erin +Jamie +Katrina +Linda +Sharon +Tara +Tonya +Andrea +Cindy +Jodi +Leslie +Pamela +Paula +Robin +Sheila +Valerie +Vanessa +Alice +Brenda +Donna +Holly +Jill +Kristina +Monica +Shawna +Sherry +Aimee +Christy +Debra +Diana +Diane +Jacqueline +Kim +Krista +Kristine +Laurie +Martha +Misty +Natalie +Rhonda +Tiffany +Victoria +Allison +Anna +Anne +Charity +Emily +Erika +Ginger +Josephine +Joy +Julia +Kara +Kerry +Kristi +Marie +Marilyn +Megan +Renee +Roberta +Shelly +Audrey +Betty +Bonnie +Brandi +Carmen +Carolyn +Cheri +Dana +Darlene +Dena +Evelyn +Gina +Jenifer +Joann +Jody +Joyce +Judy +Kari +Kellie +Kimberley +Kristen +Kristin +Kristy +Leah +Lillian +Lora +Melinda +Priscilla +Regina +Shawn +Stacey +Tracey +Trina +Vera +Jennifer +Heather +Michelle +Rebecca +Amy +Melissa +Elizabeth +Angela +Kimberly +Lisa +Mary +Sarah +Stephanie +Christina +Laura +Tracy +Shannon +Christine +Nicole +Jessica +Julie +Melanie +Tammy +Tanya +Crystal +Kelly +Robin +Anna +Brandi +Carrie +Dawn +Heidi +Sandra +Teresa +Andrea +Cynthia +Holly +Katherine +Rachel +Amanda +April +Brenda +Christy +Danielle +Erin +Karen +Amber +Deborah +Donna +Kristin +Margaret +Pamela +Suzanne +Tamara +Tara +Theresa +Wendy +Jenny +Sara +Tonya +Barbara +Jolene +Joy +Linda +Molly +Paula +Rita +Samantha +Sharon +Tina +Brandy +Jamie +Leslie +Michele +Ann +Anne +Diana +Gina +Joyce +Maria +Marie +Melinda +Monica +Natasha +Patricia +Renee +Sherry +Valerie +Alicia +Anita +Carol +Catherine +Charlene +Darlene +Jill +Kathy +Kelley +Kristina +Lori +Melody +Shelly +Adrienne +Agnes +Bertha +Cindy +Janet +Kathleen +Krista +Misty +Nancy +Rhonda +Roberta +Sally +Stacey +Stacy +Susan +Tiffany +Traci +Victoria +Autumn +Beth +Cara +Carla +Caroline +Christie +Dana +Deanna +Debra +Diane +Dorothy +Erica +Ginger +Jane +Jean +Jodi +Judith +Julia +Kathryn +Lynette +Martha +Megan +Shanna +Shauna +Sheila +Sherri +Sonya +Vanessa +Jennifer +Amy +Heather +Angela +Michelle +Rebecca +Melissa +Jessica +Kimberly +Amanda +Stephanie +Christina +Rachel +April +Lisa +Mary +Sarah +Nicole +Patricia +Carrie +Julie +Kelly +Amber +Dawn +Shannon +Christine +Laura +Tracy +Elizabeth +Heidi +Karen +Melanie +Tara +Katherine +Tanya +Andrea +Crystal +Misty +Stacy +Tammy +Brandy +Catherine +Donna +Kristin +Sandra +Susan +Tamara +Teresa +Danielle +Diane +Kathleen +Leah +Monica +Pamela +Robin +Wendy +Brenda +Cheryl +Christy +Cynthia +Melinda +Renee +Samantha +Sharon +Stacey +Theresa +Alicia +Anna +Denise +Jill +Lori +Sara +Valerie +Ann +Barbara +Bonnie +Dana +Deanna +Deborah +Erin +Hannah +Holly +Jolene +Natalie +Ruth +Tonya +Bertha +Charlene +Erica +Jamie +Kari +Katie +Kristen +Kristina +Linda +Margaret +Melody +Suzanne +Tiffany +Carol +Carolyn +Charity +Christie +Emily +Erika +Jean +Karla +Kathryn +Katrina +Molly +Rachael +Ruby +Virginia +Yolanda +Aimee +Angie +Billie +Colleen +Diana +Janet +Jenny +Josephine +Olivia +Rhonda +Roberta +Robyn +Shana +Shauna +Shawna +Sheila +Tina +Tracey +Trina +Vanessa +Allison +Anne +Brandi +Carmen +Clara +Courtney +Frances +Gina +Ginger +Gloria +Helen +Jackie +Jacqueline +Jeannie +Jodi +Joy +Kristine +Leslie +Mandy +Martha +Naomi +Rebekah +Shelley +Stacie +Terri +Trisha +Victoria +Jennifer +Heather +Angela +Amy +Michelle +Christina +Jessica +Sarah +Jamie +Shannon +Stephanie +Melissa +Elizabeth +Rachel +Rebecca +Kimberly +Julie +Lisa +Sara +Amanda +Dawn +Kelly +Mary +Amber +Nicole +Holly +Anna +Laura +Brandy +Crystal +Heidi +Wendy +Andrea +April +Danielle +Erin +Jaime +Karen +Kathleen +Monica +Erica +Tanya +Alice +Cynthia +Katherine +Misty +Samantha +Stacey +Alicia +Christine +Denise +Jolene +Megan +Melinda +Tara +Tina +Carolyn +Jill +Jody +Lindsay +Patricia +Tammy +Teresa +Allison +Carrie +Cheryl +Dana +Jenny +Julia +Kathryn +Lori +Melanie +Michele +Deborah +Emily +Kari +Kristin +Sheila +Tracy +Ashley +Autumn +Barbara +Brenda +Carmen +Courtney +Erika +Joy +Kendra +Krista +Kristi +Mandy +Margaret +Renee +Sharon +Shirley +Tiffany +Trina +Brandi +Carla +Christy +Janet +Leah +Marie +Rhonda +Ruth +Sabrina +Stacy +Tamara +Tonya +Victoria +Aimee +Catherine +Charlene +Charlotte +Gloria +Katrina +Lena +Nancy +Natalie +Pamela +Sandra +Shanna +Shawna +Sherry +Susan +Tania +Theresa +Trisha +Alyssa +Anita +Carol +Cindy +Darlene +Deanna +Donna +Dora +Eva +Evelyn +Felicia +Jacqueline +Janice +Jeanette +Joni +Kara +Kathy +Kelli +Kristie +Kristina +Leslie +Linda +Marcia +Natasha +Nina +Paula +Robin +Stacie +Tasha +Valerie +Vanessa +Veronica +Virginia +Whitney +Jennifer +Jessica +Sarah +Amy +Angela +Heather +Melissa +Shannon +Kimberly +Amanda +Christina +Jamie +Amber +Michelle +Carrie +Lisa +Sara +Erin +Rebecca +Nicole +Kelly +Elizabeth +Mary +Andrea +Stephanie +Christine +Crystal +Laura +Misty +Rachel +Cynthia +Dawn +Tara +Brandy +Julie +Melanie +Tiffany +Emily +Katherine +Wendy +Anna +Tracy +Danielle +Kathryn +Kristen +Sabrina +Susan +Theresa +Valerie +Carolyn +Tammy +Tanya +Tina +Christy +Megan +Melinda +Patricia +April +Erica +Sandra +Stacey +Teresa +Victoria +Alicia +Donna +Heidi +Holly +Katie +Kristina +Monica +Shawna +Stacy +Helen +Jaime +Kendra +Kristy +Marie +Robin +Samantha +Ann +Cheryl +Dana +Denise +Janet +Jill +Karen +Kathleen +Leah +Natasha +Summer +Tamara +Vanessa +Candice +Colleen +Erika +Jodi +Jody +Julia +Katrina +Kelli +Kristin +Maria +Natalie +Rhonda +Adrienne +Alice +Allison +Brandi +Catherine +Farrah +Krista +Leslie +Linda +Mandy +Naomi +Rachael +Tabitha +Tricia +Trina +Aimee +Alison +Anne +Beth +Bethany +Cassandra +Deborah +Helena +Jenny +Jolene +Kara +Keri +Margaret +Michele +Molly +Olivia +Paula +Rebekah +Serena +Sharon +Sheila +Shelly +Suzanne +Toni +Tonya +Amie +Angel +Autumn +Bobbie +Brenda +Candace +Carmen +Carol +Charlene +Charlotte +Courtney +Daisy +Darlene +Deanna +Desiree +Elisabeth +Emma +Esther +Gwendolyn +Jacqueline +Kari +Kerry +Kristi +Lindsay +Lori +Marisa +Melody +Rachelle +Renee +Sasha +Shanna +Sherry +Tonia +Traci +Veronica +Jennifer +Heather +Jessica +Sarah +Melissa +Michelle +Amanda +Amber +Angela +Christina +Amy +Elizabeth +Crystal +Lisa +Shannon +Jamie +Rebecca +Stephanie +Kimberly +Mary +Katherine +Rachel +Tiffany +Kelly +Megan +Nicole +Sara +Christine +Kristina +Laura +April +Carrie +Julie +Misty +Erin +Andrea +Cheryl +Dawn +Emily +Holly +Sabrina +Erica +Melanie +Denise +Margaret +Monica +Wendy +Brooke +Danielle +Ann +Brandy +Desiree +Karen +Kristi +Tanya +Brenda +Cynthia +Katrina +Patricia +Stacy +Tara +Tina +Carolyn +Deanna +Donna +Heidi +Lori +Meghan +Samantha +Tammy +Theresa +Vanessa +Alicia +Allison +Anna +Catherine +Kara +Kathleen +Kathryn +Lindsey +Maria +Melinda +Naomi +Rebekah +Sharon +Stacey +Amelia +Ashley +Autumn +Bobbi +Jaime +Jill +Katie +Kristin +Kristine +Kristy +Leah +Leslie +Mandy +Marie +Molly +Pamela +Teresa +Virginia +Adrienne +Annie +Barbara +Bethany +Brandi +Candace +Christy +Gretchen +Jaclyn +Josephine +Mariah +Marilyn +Natalie +Natasha +Rachael +Ruth +Sandra +Summer +Susan +Tamara +Tami +Tracy +Valerie +Aimee +Alice +Anne +Aubrey +Candice +Cara +Carla +Deborah +Erika +Evelyn +Ginger +Grace +Helen +Jacqueline +Jessie +Joanna +Kari +Melody +Olivia +Shauna +Tonya +Veronica +Alexis +Alison +Audrey +Caroline +Casey +Charlotte +Cindy +Frances +Hannah +Janet +Jasmine +Jayme +Jenny +Jodie +Joy +Kristen +Marissa +Meagan +Monique +Nancy +Rachelle +Renee +Roberta +Shanna +Shawna +Sondra +Suzanne +Tabitha +Tessa +Tia +Yolanda +Jennifer +Amanda +Melissa +Sarah +Jessica +Heather +Amy +Kimberly +Angela +Elizabeth +Rebecca +Christina +Michelle +Amber +Crystal +Nicole +Jamie +Lisa +Stephanie +Kelly +Megan +Shannon +Rachel +Mary +Andrea +Christine +Julie +Katherine +Anna +April +Sara +Erin +Tamara +Tara +Danielle +Emily +Laura +Teresa +Samantha +Jacqueline +Kara +Melanie +Vanessa +Kathleen +Brooke +Heidi +Kristina +Patricia +Robin +Alicia +Carrie +Misty +Tanya +Tiffany +Catherine +Colleen +Karen +Leslie +Summer +Tammy +Holly +Katrina +Stacy +Virginia +Brandy +Erica +Kristy +Maria +Marie +Melinda +Susan +Tracy +Autumn +Dana +Dawn +Jill +Kristin +Lindsey +Michele +Monica +Naomi +Paula +Renee +Suzanne +Trisha +Brandi +Cheryl +Erika +Jenny +Katie +Nancy +Natalie +Natasha +Rebekah +Shanna +Barbara +Cynthia +Denise +Desiree +Diana +Donna +Gretchen +Kari +Sonya +Theresa +Victoria +Abigail +Ann +Anne +Ashley +Brianne +Candice +Caroline +Charlene +Jolene +Kathryn +Kristen +Kristine +Krystal +Mandy +Meghan +Sheila +Tasha +Annie +Audrey +Aurora +Bethany +Bonnie +Bridget +Carolyn +Chelsea +Christy +Courtney +Grace +Jaclyn +Janelle +Julia +Kate +Leah +Lori +Marsha +Mindy +Miranda +Morgan +Nichole +Ruth +Sabrina +Sharon +Sheri +Tina +Toni +Wendy +Alice +Alison +Allison +Angel +Brenda +Carmen +Cassie +Charlotte +Cindy +Connie +Deanna +Diane +Felicia +Gail +Hilary +Irene +Jaime +Jessie +Joanna +Joy +Marcie +Marissa +Martha +Molly +Nora +Rachael +Rose +Rosemary +Sandra +Shauna +Shawna +Shelley +Shelly +Sonja +Stacey +Traci +Trina +Valerie +Jessica +Jennifer +Sarah +Amanda +Melissa +Michelle +Heather +Amber +Rebecca +Erin +Christina +Amy +Elizabeth +Angela +Mary +Lisa +Kimberly +Jamie +Nicole +Stephanie +Andrea +Crystal +Kelly +Rachel +Shannon +Tiffany +Katherine +Samantha +Megan +Sara +Katie +Kristin +Laura +April +Brandy +Holly +Julie +Dawn +Kathleen +Leah +Tamara +Christine +Miranda +Karen +Krista +Kristina +Alicia +Anna +Danielle +Kristen +Bonnie +Dana +Erica +Kathryn +Mandy +Melinda +Natasha +Sabrina +Tara +Carrie +Courtney +Cynthia +Erika +Heidi +Katrina +Maria +Marie +Melanie +Monica +Tracy +Wendy +Brandi +Brooke +Cassandra +Michele +Natalie +Shawna +Alison +Audrey +Charlene +Kara +Leslie +Margaret +Nichole +Robyn +Vanessa +Alisha +Emily +Julia +Melody +Misty +Patricia +Tasha +Theresa +Tina +Allison +Alyssa +Ashley +Autumn +Barbara +Bethany +Denise +Frances +Kelli +Lindsay +Lindsey +Rachael +Ruth +Sandra +Summer +Susan +Victoria +Virginia +Abigail +Candace +Carolyn +Catherine +Christy +Dora +Elena +Jenny +Kristine +Laurie +Lori +Molly +Roberta +Sherry +Stacy +Whitney +Adrienne +Angel +Brook +Camille +Carmen +Casey +Colleen +Desiree +Eliza +Hannah +Kendra +Krystal +Linda +Louise +Lydia +Lynette +Naomi +Rebekah +Robin +Rosemary +Stacey +Tammy +Teresa +Valerie +Aimee +Alexis +Amelia +Amie +Ann +Aurora +Briana +Brianna +Bridget +Candice +Carla +Charlotte +Daisy +Deborah +Diana +Esther +Grace +Helen +Jacqueline +Jaime +Jana +Janelle +Jasmine +Jolene +Kari +Kirsten +Kristi +Lacy +Morgan +Nancy +Rhonda +Serena +Shanna +Sheila +Terra +Veronica +Willow +Jennifer +Jessica +Sarah +Amanda +Amber +Michelle +Rebecca +Amy +Elizabeth +Stephanie +Heather +Melissa +Angela +Christina +Nicole +Crystal +Erin +Rachel +Kimberly +Laura +Lisa +Jamie +Mary +Megan +Shannon +Tiffany +Anna +Danielle +Sara +Kelly +Tara +Katherine +Andrea +Emily +Heidi +Julie +Kristin +Vanessa +Alicia +Leah +April +Carrie +Kathryn +Brandy +Brooke +Misty +Samantha +Katie +Kristina +Tamara +Holly +Kristen +Rebekah +Cynthia +Kathleen +Ashley +Erica +Esther +Melanie +Naomi +Rachael +Renee +Tanya +Teresa +Brandi +Brittany +Christine +Jacqueline +Jenny +Jolene +Karen +Lindsey +Stacy +Theresa +Barbara +Brenda +Carolyn +Cassandra +Cheryl +Courtney +Dana +Erika +Hannah +Julia +Kara +Margaret +Natasha +Sandra +Shawna +Tammy +Victoria +Bonnie +Catherine +Diana +Lauren +Lindsay +Monica +Pamela +Patricia +Robin +Sabrina +Wendy +Annie +Autumn +Dawn +Desiree +Leslie +Natalie +Nichole +Robyn +Stacey +Susan +Tina +Allison +Anne +Beth +Bethany +Candice +Caroline +Claire +Cristina +Darlene +Eva +Jana +Jasmine +Katrina +Kristy +Latoya +Maggie +Mandy +Maria +Rachelle +Shanna +Tracy +Valerie +Aimee +Alexandra +Alexis +Alison +Bobbie +Brianna +Caitlin +Candace +Cara +Chandra +Debra +Denise +Donna +Gabrielle +Grace +Jill +Kelsey +Kendra +Krystal +Linda +Lydia +Marisa +Meghan +Nina +Rita +Ruth +Sheila +Sophia +Summer +Tasha +Tatiana +Veronica +Virginia +Alaina +Alissa +Amie +Beverly +Bridget +Carol +Charity +Charlene +Charlotte +Colleen +Diane +Dorothy +Jeanette +Krista +Kristine +Leann +Marilyn +Maya +Melinda +Melody +Michele +Miranda +Molly +Nancy +Ryan +Stella +Tessa +Yvonne +Jennifer +Jessica +Sarah +Amanda +Crystal +Nicole +Melissa +Rebecca +Amber +Stephanie +Heather +Rachel +Elizabeth +Christina +Laura +Andrea +Michelle +Amy +Jamie +Megan +Sara +Tiffany +Kimberly +Angela +Katherine +Erin +Kristina +Ashley +Danielle +Lindsay +Mary +Kristin +Emily +Kelly +Lisa +Anna +Katie +Kristen +Samantha +Tara +Christine +Heidi +Julie +Leah +Shannon +Courtney +Erica +Kathleen +Monica +Lauren +Lindsey +Morgan +Rachael +Allison +April +Jacqueline +Melinda +Molly +Vanessa +Cassandra +Holly +Natasha +Barbara +Karen +Margaret +Miranda +Natalie +Patricia +Robin +Tanya +Alicia +Bonnie +Brittany +Catherine +Cynthia +Deanna +Sandra +Tina +Tracy +Valerie +Carrie +Diana +Jessie +Kathryn +Lacey +Leslie +Maria +Meghan +Shawna +Tamara +Alexis +Chelsea +Dawn +Erika +Katrina +Kristy +Melanie +Nichole +Stacy +Susan +Teresa +Alison +Audrey +Bethany +Desiree +Hannah +Julia +Kelli +Krystal +Tasha +Alisha +Anne +Brandy +Denise +Grace +Helen +Jill +Jillian +Kelsey +Michele +Sharon +Sheena +Stacey +Theresa +Brandi +Brooke +Candice +Carol +Casey +Cheryl +Dana +Esther +Gretchen +Jana +Janet +Jasmine +Jenny +Josephine +Kari +Kristine +Mariah +Martha +Naomi +Regina +Rose +Sonya +Tia +Whitney +Willow +Annie +Audra +Autumn +Beverly +Caitlin +Candace +Cassie +Charlene +Chrystal +Deborah +Diane +Dorothy +Evelyn +Genevieve +Johanna +Jolene +Kathy +Kendra +Krista +Kristi +Lacy +Laurie +Lydia +Olivia +Pamela +Renee +Tabitha +Tammy +Tessa +Virginia +Wendy +Alaina +Alexandra +Alice +Ann +Aurora +Beth +Breanna +Brianna +Carly +Charlotte +Christy +Claire +Colleen +Connie +Donna +Elisha +Faith +Jackie +Jocelyn +Jody +Kasey +Kate +Laurel +Linda +Lori +Mandy +Marie +Misty +Nikki +Paula +Robyn +Rochelle +Ruth +Shana +Suzanne +Talia +Tonya +Victoria +Jennifer +Jessica +Sarah +Amanda +Michelle +Nicole +Elizabeth +Ashley +Christina +Heather +Rachel +Stephanie +Amber +Crystal +Rebecca +Melissa +Erin +Megan +Tiffany +Amy +Laura +Emily +Kimberly +Danielle +Jamie +Lisa +Angela +Katherine +Mary +Sara +Tara +Samantha +Shannon +Kelly +Anna +Chelsea +Katie +April +Holly +Kristen +Lauren +Kathleen +Kathryn +Kristina +Lindsey +Andrea +Brittany +Hannah +Maria +Erica +Heidi +Jacqueline +Julia +Krystal +Margaret +Valerie +Christine +Courtney +Desiree +Sabrina +Vanessa +Alicia +Cassandra +Leah +Allison +Denise +Julie +Katrina +Melinda +Natasha +Theresa +Bonnie +Brandi +Carolyn +Carrie +Cynthia +Deanna +Kelsey +Robin +Teresa +Catherine +Kayla +Lindsay +Molly +Shawna +Sheena +Stefanie +Tracy +Brandy +Casey +Dana +Dawn +Diana +Karen +Marie +Meagan +Patricia +Sandra +Stacy +Tamara +Candice +Lori +Tabitha +Victoria +Audrey +Candace +Janice +Joanna +Jolene +Josephine +Kristine +Meghan +Monica +Pamela +Abby +Aimee +Alexandra +Anne +Annie +Evelyn +Jeanette +Katy +Kristy +Larissa +Leslie +Nancy +Nichole +Nina +Paula +Rachael +Rebekah +Renee +Tia +Trisha +Abigail +Alexis +Alice +Amelia +Ann +Brittney +Brooke +Carmen +Charlene +Darlene +Donna +Grace +Janet +Jasmine +Jillian +Kara +Kari +Krista +Kristin +Mariah +Michele +Miranda +Morgan +Richelle +Sasha +Stacey +Tanya +Tina +Tonya +Alisha +Alison +Ashlee +Barbara +Brenda +Brenna +Briana +Brianna +Cheryl +Christy +Colleen +Cori +Eileen +Jaime +Janelle +Jayme +Jenna +Lacey +Lacy +Melanie +Natalie +Nikki +Sharon +Tessa +Virginia +Wendy +Whitney +Angel +Angelina +Aubrey +Autumn +Bethany +Billie +Caitlin +Caroline +Chelsey +Clara +Elaine +Elena +Haley +Hillary +Hollie +Jill +Johanna +Justina +Kerry +Lena +Linda +Lydia +Marilyn +Marissa +Naomi +Robyn +Rochelle +Ruth +Sherri +Sonya +Sophia +Susan +Tasha +Veronica +Jessica +Jennifer +Sarah +Amanda +Nicole +Ashley +Stephanie +Heather +Melissa +Rachel +Emily +Megan +Elizabeth +Michelle +Amber +Rebecca +Christina +Crystal +Tiffany +Amy +Danielle +Andrea +Jamie +Erin +Laura +Angela +Kimberly +Katherine +Brittany +Samantha +Lauren +Lindsey +Mary +Sara +Shannon +Alicia +Anna +Courtney +Katie +Jenna +Kristen +Lisa +April +Holly +Kristin +Lindsay +Chelsea +Erica +Kathryn +Kelly +Christine +Hannah +Vanessa +Kristina +Heidi +Sheena +Julie +Brandy +Catherine +Maria +Meghan +Miranda +Tamara +Whitney +Morgan +Natasha +Rachael +Victoria +Cassandra +Cynthia +Dana +Karen +Krystal +Patricia +Valerie +Jacqueline +Kelsey +Leslie +Marissa +Melanie +Tanya +Alexis +Brandi +Erika +Jenny +Joanna +Kristine +Marie +Monica +Shawna +Theresa +Alexandra +Alison +Amelia +Bonnie +Brenda +Caitlin +Carrie +Charlene +Claire +Denise +Desiree +Kendra +Kira +Lacey +Leah +Misty +Sabrina +Stacy +Teresa +Ann +Cheryl +Deborah +Janelle +Jasmine +Julia +Kara +Kate +Kathleen +Katrina +Kirsten +Martha +Melinda +Renee +Sharon +Tasha +Tina +Veronica +Wendy +Alisha +Breanna +Brianna +Cara +Dawn +Jessie +Krista +Margaret +Natalie +Nichole +Paula +Rose +Stacey +Tara +Allison +Anne +Audrey +Candace +Casey +Colleen +Deanna +Elisabeth +Eva +Kari +Kayla +Lori +Louise +Mariah +Molly +Naomi +Rebekah +Sasha +Savannah +Sonya +Susan +Tracy +Abigail +Alana +Angel +Athena +Barbara +Bethany +Brittney +Candice +Carolyn +Cassie +Chelsey +Daisy +Elise +Gabrielle +Gina +Hillary +Jaime +Janell +Jill +Jolene +Josephine +Kasey +Mandy +Mindy +Rhonda +Robin +Ruth +Shauna +Sophia +Tessa +Virginia +Adrianne +Alexandria +Alice +Alyssa +Ana +Annette +Annie +Aurora +Brenna +Brooke +Carly +Caroline +Celeste +Chanel +Charity +Charlotte +Chelsie +Cindy +Darlene +Gloria +Grace +Helen +Hollie +Iris +Jacquelyn +Jesse +Johanna +Joy +Joyce +Kristy +Lillian +Mackenzie +Michele +Pauline +Rachelle +Randi +Rhiannon +Shana +Stefanie +Tabatha +Tammy +Jessica +Jennifer +Amanda +Sarah +Ashley +Stephanie +Nicole +Elizabeth +Heather +Megan +Melissa +Rachel +Danielle +Brittany +Amber +Christina +Amy +Emily +Erin +Jamie +Rebecca +Crystal +Laura +Mary +Michelle +Samantha +Tiffany +Kimberly +Christine +Angela +Katherine +Sara +Jenna +Kelly +Andrea +Lindsey +Anna +Chelsea +Lisa +Alicia +Kristen +Lauren +Tara +Lindsay +April +Katie +Krystal +Katrina +Kelsey +Allison +Erica +Holly +Kristin +Courtney +Kathleen +Kristina +Miranda +Valerie +Cassandra +Kathryn +Patricia +Vanessa +Natasha +Whitney +Alexandra +Catherine +Alexis +Julia +Molly +Shannon +Cynthia +Desiree +Lacey +Leah +Meghan +Bethany +Maria +Caitlin +Cheryl +Diana +Jacqueline +Julie +Karen +Sheena +Brandy +Breanna +Carolyn +Dawn +Heidi +Kara +Katelyn +Kendra +Veronica +Victoria +Autumn +Brittney +Carly +Colleen +Dana +Grace +Meredith +Monica +Morgan +Nichole +Rachael +Sabrina +Shawna +Sylvia +Tanya +Theresa +Abigail +Alexandria +Ann +Anne +Annie +Hannah +Janelle +Jasmine +Natalie +Randi +Roxanne +Sierra +Alyssa +Ariel +Bonnie +Brooke +Carmen +Carol +Caroline +Carrie +Charlene +Deborah +Emma +Kayla +Kirsten +Krista +Kristine +Ruth +Sharon +Sonya +Terra +Adrienne +Aimee +Alice +Audrey +Bridget +Cherilyn +Erika +Esther +Jennie +Jordan +Josephine +Kari +Lacy +Larissa +Lydia +Maggie +Margaret +Marie +Martha +Rebekah +Savannah +Stacey +Tamara +Tammy +Teresa +Tonya +Tracy +Virginia +Alisha +Ashlee +Aurora +Brianna +Brianne +Candice +Casey +Haley +Jenny +Jill +Jolene +Kristi +Krystle +Linda +Mara +Marilyn +Meagan +Melinda +Misty +Naomi +Nikki +Pamela +Renee +Rochelle +Stacy +Stefanie +Susan +Tasha +Tina +Trisha +Yvonne +Ashleigh +Breanne +Candace +Chelsey +Clara +Denise +Diane +Dominique +Eva +Evelyn +Gina +Iris +Jayme +Jeanette +Jessie +Kate +Kristie +Krysta +Leslie +Lorena +Mallory +Mandy +Melanie +Nora +Olivia +Paula +Raquel +Roberta +Robin +Sandra +Sasha +Savanna +Shauna +Susanna +Suzanne +Tatiana +Jessica +Amanda +Sarah +Ashley +Jennifer +Stephanie +Nicole +Melissa +Danielle +Elizabeth +Heather +Samantha +Brittany +Jamie +Rachel +Megan +Amber +Crystal +Laura +Michelle +Emily +Katherine +Amy +Tiffany +Christina +Whitney +Erin +Kimberly +Rebecca +Chelsea +Sara +Courtney +Mary +Andrea +Anna +Vanessa +Erica +Angela +Kelly +Allison +Kathryn +Katie +Katrina +Lindsey +Christine +Kristin +Lauren +Hannah +Jenna +Krista +Shannon +Alicia +Desiree +Kathleen +Lindsay +Lisa +Holly +Kristen +Leah +Patricia +Brittney +Victoria +Alexis +Brianna +Cassandra +Julie +Kristina +Caitlin +Catherine +Heidi +Jordan +Julia +Krystal +Meghan +Molly +Natasha +Robin +Cynthia +Erika +Maria +Morgan +Nichole +Tara +Kelsey +Monica +Rebekah +Savannah +Shawna +Bethany +Casey +Felicia +Kayla +Rachael +April +Brandy +Brenda +Denise +Jacqueline +Jasmine +Jenny +Kaitlin +Kristi +Kristine +Mallory +Renee +Tanya +Alexandra +Carly +Carolyn +Cassie +Colleen +Diana +Jolene +Karen +Naomi +Natalie +Sharon +Stacey +Deborah +Ellen +Emma +Janelle +Jessie +Kendra +Larissa +Lena +Linda +Nancy +Sabrina +Stacy +Susan +Tabitha +Tracy +Veronica +Virginia +Audrey +Autumn +Bridget +Candace +Candice +Dawn +Deanna +Eva +Gabrielle +Hilary +Irene +Jillian +Kayleigh +Lillian +Margaret +Marissa +Melanie +Miranda +Randi +Robyn +Tamara +Teresa +Theresa +Trisha +Valerie +Alison +Alyssa +Anastasia +Annette +Ashlee +Bonnie +Brandi +Brandie +Carrie +Casandra +Chelsey +Cheryl +Clara +Diane +Hailey +Helen +Jaclyn +Jaime +Jane +Jeanette +Katelyn +Katharine +Lacey +Lucy +Marie +Martha +Misty +Rochelle +Sasha +Sheena +Sophie +Sydney +Traci +Alisha +Allyson +Angelina +Anne +Breanna +Briana +Callie +Camille +Carissa +Carmen +Charlotte +Christa +Christy +Dana +Dominique +Elena +Gina +Hayley +Jackie +Jade +Jesse +Joanna +Justina +Justine +Kara +Kari +Kasey +Kate +Kelley +Krystle +Leslie +Lori +Lydia +Madeline +Meagan +Melinda +Meredith +Nikki +Ruby +Sally +Sheila +Tammy +Tia +Tina +Jessica +Amanda +Ashley +Sarah +Jennifer +Megan +Heather +Samantha +Brittany +Elizabeth +Nicole +Danielle +Emily +Rachel +Stephanie +Amber +Kimberly +Michelle +Crystal +Amy +Rebecca +Sara +Tiffany +Christina +Melissa +Whitney +Mary +Katherine +Katie +Kelly +Shannon +Chelsea +Kayla +Kristina +Lauren +Angela +Erica +Andrea +Christine +Hannah +Jamie +Laura +Courtney +Kelsey +Kendra +Erin +Holly +Kristen +Lindsay +Lisa +Kathryn +Cassandra +Kristin +Lindsey +Alicia +Natasha +Anna +Molly +Rachael +Heidi +Kathleen +Vanessa +Audrey +Brianna +Julia +Katrina +Patricia +Alyssa +April +Brittney +Victoria +Caitlin +Allison +Ashlee +Barbara +Carrie +Kristine +Sandra +Abigail +Bethany +Desiree +Jacqueline +Jasmine +Karen +Katelyn +Krystal +Margaret +Meghan +Natalie +Rebekah +Renee +Robin +Valerie +Alison +Anastasia +Candace +Cassie +Dana +Dawn +Denise +Julie +Kara +Kate +Leah +Martha +Monica +Sophie +Tara +Tracy +Adrienne +Alexandra +Angelina +Bonnie +Casey +Charity +Charlene +Cynthia +Elena +Erika +Helen +Jaime +Jenna +Kristy +Sasha +Sharon +Stacy +Susan +Tanya +Virginia +Alexandria +Ariel +Breanna +Briana +Carol +Catherine +Elise +Eva +Grace +Jaclyn +Jessie +Kristi +Marie +Marlene +Morgan +Nikki +Olivia +Ruth +Sabrina +Savannah +Sierra +Stacey +Teresa +Veronica +Alexis +Ashleigh +Brandy +Brooke +Charlotte +Claire +Diana +Elisabeth +Emma +Felicia +Gabrielle +Haley +Joanna +Justine +Kaitlin +Kasey +Laurel +Maggie +Mallory +Meagan +Miranda +Naomi +Pamela +Rachelle +Rochelle +Rose +Shawna +Sophia +Theresa +Aimee +Alisha +Anne +Ashlea +Aubrey +Aurora +Autumn +Brandi +Brenna +Brianne +Carly +Caroline +Carolyn +Cheryl +Ciara +Cora +Darlene +Deanna +Deborah +Greta +Jade +Janelle +Jena +Jillian +Jodi +Katy +Kelli +Keri +Krista +Larissa +Leslie +Lillian +Mandy +Mara +Maria +Marissa +Melinda +Melody +Misty +Nina +Rhonda +Robyn +Roxanne +Sally +Sheena +Tamara +Tammy +Jessica +Amanda +Ashley +Jennifer +Sarah +Elizabeth +Samantha +Stephanie +Megan +Rebecca +Brittany +Heather +Nicole +Michelle +Amber +Danielle +Rachel +Melissa +Emily +Kayla +Tiffany +Christina +Kimberly +Chelsea +Crystal +Kelsey +Lauren +Sara +Amy +Anna +Erin +Mary +Shannon +Katherine +Lisa +Caitlin +Laura +Andrea +Courtney +Jamie +Alicia +Alyssa +Christine +Hannah +Katie +Kristen +Kristina +Lindsay +Molly +Allison +Angela +Kathryn +Alexandra +Jasmine +Kendra +Vanessa +Erica +Katelyn +Kelly +Natasha +Whitney +Katrina +Margaret +Alexandria +Chelsey +Melanie +Brittney +Heidi +Kara +Morgan +Bethany +Cynthia +Kathleen +Krystal +Rachael +Victoria +Barbara +Cassandra +Catherine +Emma +Jenna +Leah +Nichole +Robin +Sasha +Holly +Jacqueline +Lacey +Monica +Tara +Tessa +April +Carolyn +Carrie +Casey +Charlene +Colleen +Dana +Grace +Jordan +Julie +Kaitlyn +Kristin +Kristine +Lindsey +Maria +Miranda +Patricia +Sabrina +Abigail +Breanna +Erika +Eva +Felicia +Janelle +Jessie +Kari +Marie +Marissa +Sharon +Shauna +Alexis +Autumn +Brandi +Brandy +Brianna +Brooke +Carla +Chantel +Cheryl +Claire +Deanna +Jenny +Julia +Martha +Olivia +Roberta +Shaina +Susan +Teresa +Trisha +Valerie +Aimee +Angel +Ashlee +Ashleigh +Briana +Carissa +Desiree +Hilary +Ida +Jacquelyn +Jill +Karen +Kate +Kyla +Lori +Madison +Meghan +Misty +Nancy +Rebekah +Renee +Robyn +Rose +Ruth +Savannah +Sierra +Sophia +Tabitha +Taylor +Alice +Alisha +Angelica +Angelina +Aubrey +Audrey +Bonnie +Cara +Charlotte +Christy +Diana +Esther +Gabrielle +Hayley +Irene +Isabel +Janet +Janice +Jillian +Jocelyn +Jolene +Kaitlin +Kayleigh +Kelli +Kirsten +Laurel +Leslie +Lucy +Natalia +Natalie +Nellie +Nina +Pamela +Regina +Sally +Stacey +Tanya +Theresa +Tia +Virginia +Jessica +Ashley +Amanda +Sarah +Samantha +Jennifer +Danielle +Stephanie +Emily +Brittany +Amber +Megan +Kayla +Heather +Rebecca +Chelsea +Nicole +Rachel +Elizabeth +Kelsey +Michelle +Erin +Katherine +Courtney +Melissa +Tiffany +Jamie +Christina +Kimberly +Mary +Lauren +Anna +Kelly +Sara +Hannah +Lisa +Caitlin +Cassandra +Allison +Alyssa +Amy +Andrea +Angela +Alicia +Lindsey +Shannon +Alexandra +Crystal +Jordan +Kristen +Whitney +Brittney +Laura +Holly +Katelyn +Katie +Leah +Sierra +Victoria +Heidi +Jacqueline +Kristina +Brianna +Catherine +Erica +Julia +Kathleen +Katrina +Miranda +Morgan +Taylor +Jasmine +Lindsay +Christine +Jenna +Karen +Krystal +Natasha +Paige +Tara +Alexandria +April +Emma +Kendra +Krista +Melanie +Melinda +Molly +Natalie +Robin +Casey +Grace +Kara +Maria +Nichole +Sasha +Sydney +Valerie +Vanessa +Veronica +Autumn +Brianne +Desiree +Felicia +Gabrielle +Haley +Janelle +Kaitlin +Kirsten +Kylie +Madison +Marie +Marissa +Meagan +Meghan +Patricia +Stacey +Tracy +Alexis +Bethany +Bonnie +Cheryl +Dana +Gloria +Hayley +Helen +Hilary +Kaitlyn +Kari +Kristin +Margaret +Mariah +Michaela +Rachael +Roberta +Ruth +Sophia +Susan +Angelica +Ariel +Ashton +Brandi +Briana +Brooke +Carly +Chelsey +Jenny +Justine +Kathryn +Lydia +Mercedes +Monica +Rachelle +Rebekah +Sabrina +Sharon +Sheila +Sonja +Tamara +Tessa +Theresa +Aimee +Alice +Alison +Annie +Ashlee +Barbara +Brenda +Caroline +Carolyn +Carrie +Genevieve +Joanna +Kate +Kristy +Leona +Naomi +Rochelle +Sandra +Tanya +Tina +Adrienne +Alaina +Alina +Alisha +Amelia +Anne +Arianna +Aubrey +Audra +Audrey +Brandy +Caitlyn +Camille +Carol +Charlene +Charlotte +Chelsie +Chloe +Christie +Claire +Colleen +Dawn +Denise +Elena +Erika +Jane +Joanne +Julie +Kaylee +Kelli +Kyla +Lacy +Linda +Lori +Mackenzie +Marisa +Martha +Melody +Moriah +Olivia +Savannah +Serena +Summer +Teresa +Tia +Traci +Trista +Yvonne +Jessica +Ashley +Amanda +Brittany +Samantha +Sarah +Megan +Rachel +Jennifer +Elizabeth +Heather +Stephanie +Nicole +Emily +Chelsea +Michelle +Amber +Danielle +Kayla +Kelsey +Hannah +Melissa +Rebecca +Katherine +Lauren +Tiffany +Amy +Laura +Anna +Courtney +Mary +Alyssa +Christina +Jamie +Jordan +Kathryn +Erin +Kristina +Andrea +Sara +Victoria +Kelly +Kathleen +Shannon +Angela +Katelyn +Kimberly +Crystal +Katie +Ariel +Lindsey +Miranda +April +Caitlin +Erica +Kristen +Shelby +Alexandra +Alicia +Allison +Brianna +Cassandra +Jasmine +Katrina +Molly +Natasha +Brittney +Brooke +Holly +Sierra +Grace +Jacqueline +Kendra +Kristin +Paige +Breanna +Leah +Morgan +Sabrina +Vanessa +Christine +Heidi +Jenna +Kirsten +Lindsay +Lisa +Melanie +Monica +Olivia +Rebekah +Whitney +Alexis +Alisha +Casey +Cynthia +Desiree +Haley +Karen +Maria +Naomi +Natalie +Patricia +Anne +Autumn +Bethany +Gabrielle +Kaitlin +Kara +Kristy +Taylor +Catherine +Chloe +Erika +Joanna +Kate +Lacey +Marissa +Martha +Nichole +Tara +Carolyn +Chelsey +Denise +Emma +Kaitlyn +Krista +Krystal +Leslie +Michaela +Renee +Rose +Tabitha +Veronica +Ashlee +Brandi +Briana +Colleen +Frances +Hilary +Jessie +Josephine +Julia +Lydia +Margaret +Melinda +Sydney +Tasha +Theresa +Tracy +Trisha +Adrienne +Alison +Audrey +Bridget +Candace +Carissa +Diana +Donna +Esther +Gloria +Hanna +Hayley +Janet +Lillian +Mallory +Meagan +Meghan +Misty +Nikki +Nina +Rachael +Rachelle +Sandra +Shawna +Sophia +Aimee +Alexa +Alice +Anastasia +Angelica +Ariana +Bailey +Britney +Callie +Carmen +Carrie +Chantel +Charity +Charlene +Charlotte +Claire +Clarissa +Dana +Deanna +Destiny +Ellen +Helen +Hillary +Jayme +Jillian +Julie +Kari +Kassandra +Kylee +Larissa +Lena +Marie +Randi +Robin +Robyn +Sadie +Savannah +Shaina +Tia +Zoe +Jessica +Ashley +Amanda +Sarah +Samantha +Brittany +Stephanie +Elizabeth +Jennifer +Kayla +Chelsea +Shelby +Kelsey +Megan +Danielle +Emily +Rachel +Katherine +Amber +Rebecca +Melissa +Hannah +Nicole +Alyssa +Christina +Heather +Michelle +Mary +Lauren +Anna +Alexandra +Amy +Taylor +Ariel +Kimberly +Courtney +Miranda +Victoria +Andrea +Tiffany +Mariah +Jamie +Julia +Lindsey +Erin +Kelly +Molly +Caitlin +Sara +Shannon +Alicia +Holly +Jenna +Katrina +Cassandra +Crystal +Laura +Natasha +Whitney +Jordan +Kathleen +Katelyn +Kathryn +Katie +Kristen +Kristina +Madison +Brianna +Kaitlyn +Allison +Catherine +Haley +Sierra +Alexis +Ashlee +Jasmine +Karen +Melanie +Olivia +Rebekah +Vanessa +Alexandria +Briana +Brittney +Margaret +Valerie +Christine +Erica +Hanna +Jacqueline +Kirsten +Lindsay +Morgan +Paige +Patricia +Abigail +Angela +April +Barbara +Breanna +Deanna +Jolene +Lisa +Maria +Meghan +Bethany +Bianca +Brandi +Brooke +Carmen +Desiree +Destiny +Emma +Gabrielle +Grace +Jillian +Kate +Misty +Tammy +Wendy +Alysha +Amelia +Bailey +Cynthia +Erika +Esther +Hayley +Helen +Joanne +Kaitlin +Kaylee +Kendra +Krista +Kristi +Krystal +Lacey +Mackenzie +Melinda +Monica +Rachael +Renee +Rose +Savannah +Sharon +Shawna +Stacey +Sydney +Tabitha +Tara +Tatiana +Tessa +Virginia +Adrienne +Alexa +Anne +Ashleigh +Bertha +Bobbi +Brandy +Carol +Carolyn +Chelsie +Cheryl +Cheyenne +Chloe +Dana +Ellen +Frances +Heidi +Hillary +Irene +Jaclyn +Julie +Kiana +Kristin +Leslie +Marie +Marissa +Nichole +Rachelle +Roberta +Sabrina +Tanya +Tasha +Alison +Anastasia +Autumn +Ayla +Brittni +Candace +Carly +Casandra +Charlene +Chelsey +Christa +Darlene +Desirae +Diana +Donna +Elaine +Eva +Felicia +Hilary +Janet +Jenny +Jocelyn +Josephine +Kara +Kiersten +Kristy +Laurel +Leanne +Lydia +Madeline +Marina +Melody +Meranda +Mercedes +Noelle +Pamela +Rochelle +Shayna +Sophie +Tess +Theresa +Tia +Veronica +Jessica +Ashley +Amanda +Sarah +Emily +Samantha +Elizabeth +Brittany +Stephanie +Chelsea +Kayla +Nicole +Megan +Hannah +Rachel +Victoria +Danielle +Courtney +Rebecca +Alyssa +Alexandra +Taylor +Amber +Heather +Melissa +Kelsey +Jennifer +Shelby +Christina +Kimberly +Mariah +Jamie +Anna +Jordan +Kristen +Lauren +Michelle +Sierra +Erin +Katherine +Kathryn +Kaitlyn +Lindsey +Mary +Caitlin +Laura +Brianna +Katelyn +Sara +Shannon +Jasmine +Margaret +Morgan +Tiffany +Kathleen +Molly +Savannah +Cassandra +Holly +Katie +Katrina +Krystal +Andrea +Catherine +Kaylee +Olivia +Bethany +Breanna +Felicia +Jenna +Miranda +Paige +Alicia +Angela +Maria +Whitney +Alexandria +Allison +Ariel +Haley +Leah +Madison +Natasha +Rachael +Sydney +Tara +Zoe +Amy +April +Audrey +Brooke +Crystal +Erika +Hayley +Kendra +Kristina +Madeline +Marissa +Nikki +Vanessa +Alexis +Brandi +Cynthia +Emma +Grace +Hilary +Julia +Mackenzie +Melanie +Monica +Tyler +Briana +Christine +Clara +Hailey +Jacqueline +Julie +Kaitlin +Kelly +Kylie +Lisa +Nichole +Patricia +Raven +Shawna +Amelia +Barbara +Brittney +Caitlyn +Claire +Dana +Esther +Heidi +Hillary +Jade +Kristin +Meghan +Mercedes +Natalie +Rebekah +Robin +Robyn +Sabrina +Tessa +Tiana +Anastasia +Casey +Christa +Elena +Ellen +Erica +Jessie +Kate +Kira +Krista +Misty +Renee +Sasha +Tasha +Abigail +Ashleigh +Autumn +Carissa +Chelsey +Cheyenne +Deborah +Denise +Desiree +Jaclyn +Jennie +Jillian +Joanna +Justine +Kara +Karina +Kiana +Larissa +Maggie +Marie +Marina +Naomi +Sadie +Tanya +Veronica +Angelica +Anne +Annie +Brandy +Brenda +Camille +Carly +Carmen +Charlene +Denali +Devon +Gabrielle +Hanna +Jaime +Janelle +Jordyn +Karissa +Karlie +Kasey +Lindsay +Mckenzie +Minnie +Priscilla +Rachelle +Savanna +Shelly +Tracy +Valerie +Jessica +Ashley +Sarah +Samantha +Amanda +Taylor +Stephanie +Rachel +Emily +Hannah +Kelsey +Rebecca +Elizabeth +Kayla +Brittany +Nicole +Chelsea +Jennifer +Amber +Danielle +Megan +Jasmine +Courtney +Katherine +Melissa +Andrea +Alexandra +Mary +Victoria +Anna +Heather +Lauren +Michelle +Olivia +Shelby +Tiffany +Haley +Jordan +Jamie +Miranda +Alyssa +Christina +Mariah +Shannon +Brianna +Allison +Angela +Caitlin +Cassandra +Laura +Morgan +Lindsey +Sierra +Cheyenne +Katelyn +Kathryn +Emma +Kaitlyn +Katie +Kelly +Kristina +Mackenzie +Marissa +Savannah +Alexis +Gabrielle +Hailey +Holly +Madison +Monica +Rebekah +Sara +Briana +Brittney +Erin +Kimberly +Kristen +Alexandria +Alicia +Bethany +Brooke +Christine +Erica +Erika +Julia +Marina +Vanessa +Crystal +Leah +Margaret +Maria +Naomi +Rochelle +Abigail +Amy +Ariel +Autumn +Breanna +Chelsey +Kaylee +Krystal +Molly +Sydney +Brandi +Caitlyn +Catherine +Desiree +Grace +Kathleen +Kendra +Lindsay +Natalie +Rachael +Anne +April +Dakota +Gabriella +Jenna +Jillian +Katrina +Lacey +Madeline +Makayla +Meghan +Michaela +Natasha +Nichole +Patricia +Robin +Sabrina +Tiana +Alisha +Aurora +Bailey +Caroline +Carolyn +Casey +Chloe +Destiny +Hayley +Jacqueline +Janelle +Jessie +Josephine +Kaitlin +Krista +Kylie +Marie +Rose +Shayla +Susan +Tamara +Tessa +Tyler +Veronica +Whitney +Aimee +Alice +Alison +Chelsie +Cynthia +Dawn +Dominique +Haylee +Heidi +Hillary +Kyla +Kylee +Kyra +Mckenzie +Micaela +Paige +Sadie +Sophie +Tara +Taryn +Tori +Alexa +Alyson +Angel +Ashlee +Audrey +Candice +Charlene +Claire +Clarissa +Deanna +Donna +Eleanor +Eunice +Jazmine +Jocelyn +Katelynn +Kaylyn +Kiana +Kirsten +Lisa +Lydia +Meagan +Melody +Randi +Sharon +Sophia +Tia +Tonya +Valerie +Yvonne +Jessica +Ashley +Sarah +Samantha +Taylor +Emily +Elizabeth +Brittany +Amanda +Hannah +Rebecca +Kayla +Megan +Nicole +Rachel +Kelsey +Amber +Chelsea +Melissa +Danielle +Lauren +Victoria +Sierra +Michelle +Miranda +Morgan +Courtney +Shelby +Stephanie +Jasmine +Mary +Olivia +Alexandra +Jordan +Madison +Shannon +Anna +Cheyenne +Heather +Katherine +Kimberly +Lindsey +Alyssa +Brandi +Caitlin +Haley +Jamie +Jennifer +Marissa +Michaela +Alexis +Brianna +Christina +Emma +Hailey +Allison +Brittney +Katie +Mariah +Amy +Catherine +Erin +Julia +Paige +Savannah +Sydney +Angela +Autumn +Chloe +Katelyn +Kathleen +Kathryn +Kendra +Kristen +Sara +Abigail +Cassandra +Crystal +Holly +Jessie +Leah +Mckenzie +Alexandria +Alicia +Breanna +Briana +Grace +Jenna +Kaitlyn +Katrina +Kristina +Mikayla +Natalie +Rachael +Tiffany +Vanessa +Andrea +Brandy +Brenna +Brooke +Faith +Gabrielle +Kirsten +Laura +Molly +Natasha +Sabrina +Alexa +Bailey +Bethany +Casey +Destiny +Erica +Erika +Heidi +Kaitlin +Krystal +Madeline +Maria +Meghan +Patricia +Rebekah +Ariel +Cassidy +Chelsey +Desiree +Hayley +Johanna +Josephine +Kaylee +Kelly +Shawna +Theresa +Valerie +Audrey +Carolyn +Darian +Deanna +Elena +Jacqueline +Jade +Kara +Kassandra +Lydia +Mackenzie +Marina +Marisa +Tatiana +Amelia +Angelina +Ashleigh +Caitlyn +Claire +Cynthia +Denali +Helen +Jasmin +Jillian +Julie +Kari +Kiera +Kylie +Maggie +Margaret +Melanie +Monica +Nichole +Nina +Rachelle +Savanna +Tabitha +Tara +Tyler +Whitney +Agnes +Alayna +Anastasia +Carly +Cassie +Cecilia +Chantel +Christine +Colleen +Deborah +Ellen +Evelyn +Jaime +Janelle +Karen +Kasandra +Lillian +Linda +Lindsay +Makayla +Mercedes +Pamela +Shayla +Stacey +Tessa +Veronica +Samantha +Jessica +Sarah +Ashley +Hannah +Emily +Amanda +Kayla +Megan +Jordan +Taylor +Brittany +Elizabeth +Katherine +Mariah +Mary +Nicole +Rachel +Rebecca +Victoria +Chelsea +Alyssa +Madison +Sierra +Danielle +Kelsey +Brianna +Cheyenne +Courtney +Miranda +Shelby +Alexandra +Anna +Heather +Morgan +Alexandria +Haley +Kaitlyn +Sara +Abigail +Amber +Caitlin +Melissa +Sydney +Autumn +Jasmine +Lauren +Olivia +Stephanie +Allison +Andrea +Angela +Christina +Katrina +Marissa +Shannon +Alicia +Jennifer +Leah +Madeline +Molly +Tiffany +Breanna +Emma +Erin +Kathryn +Kaylee +Lindsey +Natasha +Alexis +Brooke +Chloe +Jamie +Katelyn +Mikayla +Paige +Sabrina +Zoe +Gabrielle +Katie +Amy +Briana +Destiny +Julia +Kendra +Meghan +Natalie +Savannah +Caroline +Cassandra +Catherine +Kaitlin +Kimberly +Mackenzie +Maria +Naomi +Aurora +Bailey +Dakota +Esther +Hayley +Jade +Makayla +Melanie +Michaela +Michelle +Ruth +Tabitha +Angel +Ariana +Audrey +Crystal +Faith +Holly +Kassandra +Margaret +Mckenzie +Rachael +Serena +Summer +Alison +Angelica +Ariel +Ashlee +Christine +Claire +Denali +Jenna +Jessie +Kathleen +Kylie +Larissa +Laura +Mikaela +Patricia +Rebekah +April +Carissa +Dallas +Deanna +Elena +Erica +Joanna +Kelly +Kennedy +Kiana +Monica +Shayla +Tamara +Tara +Tessa +Alice +Angelina +Annie +Aubrey +Barbara +Bethany +Brandy +Brenna +Brittney +Camille +Casey +Colleen +Cynthia +Dawn +Delaney +Desiree +Eliza +Emilee +Hailey +Hanna +Haylee +Jacqueline +Jazmine +Jordyn +Kaitlynn +Kate +Krista +Kristina +Lisa +Logan +Lydia +Marie +Marina +Maya +Nina +Sage +Savanna +Shyla +Tatiana +Tiana +Vanessa +Veronica +Whitney +Ashley +Jessica +Emily +Sarah +Samantha +Megan +Hannah +Madison +Amanda +Elizabeth +Taylor +Rachel +Kayla +Victoria +Alexis +Brittany +Courtney +Rebecca +Savannah +Olivia +Amber +Cheyenne +Haley +Mariah +Abigail +Nicole +Anna +Sierra +Stephanie +Alyssa +Heather +Katherine +Laura +Maria +Melissa +Allison +Emma +Sara +Sydney +Brianna +Erin +Alexandra +Grace +Jennifer +Shelby +Caitlin +Kimberly +Lauren +Miranda +Sabrina +Alicia +Cassandra +Christina +Danielle +Kelsey +Madeline +Morgan +Tiffany +Katie +Mary +Andrea +Breanna +Julia +Kiana +Mackenzie +Michelle +Paige +Catherine +Chelsea +Crystal +Destiny +Gabrielle +Jasmine +Jordan +Kaitlin +Kaitlyn +Alexandria +Erica +Hailey +Kathleen +Makayla +Mikayla +Naomi +Claire +Jamie +Jenna +Josephine +Katelyn +Kathryn +Katrina +Kelly +Natalie +Rachael +Autumn +Brenna +Brooke +Christine +Holly +Kristin +Kyla +Lillian +Lydia +Margaret +Rebekah +Alexa +Amy +Aurora +Bailey +Denali +Karen +Marissa +Michaela +Sadie +Bethany +Brandi +Brittney +Casey +Erika +Faith +Kaylee +Kirsten +Kristina +Leah +Lindsay +Lisa +Marina +Melanie +Shania +Sharon +Whitney +Alison +Annie +Aubrey +Caroline +Cassidy +Charlene +Chloe +Cynthia +Dana +Desiree +Elaina +Elena +Ellen +Hailee +Justine +Kendra +Kylee +Kylie +Kyra +Lindsey +Marie +Mckenna +Mercedes +Molly +Monica +Rhiannon +Sophie +Taryn +Angela +Angelica +Ashlee +Brandy +Caitlyn +Cierra +Cydney +Deanna +Delaney +Esther +Gabriella +Genevieve +Heidi +Jade +Jessie +Julie +Katelynn +Kiara +Kristen +Lily +Maggie +Natalia +Patricia +Peyton +Raven +Rose +Summer +Tabitha +Teresa +Tiana +Hannah +Emily +Sarah +Megan +Jessica +Taylor +Ashley +Samantha +Madison +Abigail +Alyssa +Rachel +Emma +Amanda +Elizabeth +Katherine +Shelby +Amber +Morgan +Alexis +Mary +Sydney +Victoria +Haley +Kaitlyn +Sierra +Jasmine +Rebecca +Alexandra +Anna +Kayla +Savannah +Allison +Brittany +Hailey +Lauren +Melissa +Molly +Courtney +Madeline +Olivia +Erin +Grace +Gabrielle +Jordan +Sabrina +Bailey +Danielle +Jamie +Jennifer +Julia +Laura +Mariah +Breanna +Cheyenne +Jenna +Sara +Catherine +Destiny +Kimberly +Kylie +Miranda +Natalie +Nicole +Zoe +Alicia +Angela +Brianna +Brooke +Heather +Katrina +Kiana +Mackenzie +Naomi +Stephanie +Kelsey +Kendra +Marissa +Mikayla +Sophia +Caitlin +Christina +Faith +Helen +Holly +Jacqueline +Jada +Lindsey +Lydia +Makayla +Michelle +Shannon +Angel +Ariel +Ashlyn +Cassandra +Claire +Kirsten +Kristen +Mia +Michaela +Chloe +Clarissa +Cynthia +Diana +Hayley +Jade +Karina +Maya +Adriana +Alexandria +Anastasia +Andrea +Angelica +April +Arianna +Aurora +Autumn +Brenna +Christine +Erica +Erika +Evelyn +Hope +Isabella +Josephine +Kaitlin +Katelyn +Katie +Kaylee +Kira +Krista +Kristina +Monica +Natasha +Rachael +Rebekah +Theresa +Vanessa +Veronica +Alice +Amelia +Amy +Ashleigh +Bethany +Brenda +Briana +Brittney +Cheyanne +Crystal +Deanna +Delaney +Denali +Felicia +Gabriella +Gloria +Hanna +Jillian +Kaitlynn +Kathleen +Kelly +Maria +Mckenna +Mckenzie +Meghan +Mikaela +Paige +Tia +Adrianna +Alexa +Alissa +Annie +Carrie +Cassidy +Darian +Desiree +Elise +Irene +Jenny +Justice +Kari +Kathryn +Katlyn +Kaylynn +Kristin +Kyla +Kylee +Makenzie +Margaret +Marina +Peyton +Riley +Robin +Rylee +Shania +Shayla +Summer +Tiffany +Valerie +Emily +Sarah +Hannah +Megan +Alyssa +Ashley +Samantha +Madison +Jessica +Kayla +Taylor +Alexis +Amber +Victoria +Brittany +Elizabeth +Haley +Brianna +Emma +Olivia +Amanda +Jordan +Lauren +Rachel +Danielle +Katherine +Mariah +Rebecca +Savannah +Sierra +Sydney +Morgan +Abigail +Autumn +Jasmine +Mary +Kaitlyn +Alexandra +Amy +Anna +Chloe +Grace +Kaylee +Kimberly +Mackenzie +Miranda +Naomi +Nicole +Shelby +Brooke +Paige +Stephanie +Cassidy +Courtney +Kelsey +Molly +Sara +Chelsea +Cheyenne +Hailey +Madeline +Alicia +Andrea +Erica +Erin +Kendra +Laura +Makayla +Alexandria +Breanna +Caitlin +Gabrielle +Heather +Jennifer +Julia +Kaitlin +Kiana +Mckenzie +Melissa +Rebekah +Zoe +Alexa +Allison +Amelia +Bethany +Clara +Isabelle +Kathryn +Katrina +Leah +Mia +Sabrina +Vanessa +Angela +Aurora +Bailey +Cassandra +Heidi +Holly +Isabel +Jade +Kelly +Kylee +Kylie +Lindsey +Natalie +Tessa +Annie +Ariel +Cora +Faith +Gabriella +Jenna +Jordyn +Katie +Kiara +Melinda +Michaela +Mikayla +Savanna +Shania +Sophia +Tia +Audrey +Brittney +Carrie +Christine +Cierra +Desiree +Destiny +Diana +Esther +Isabella +Jacqueline +Katelyn +Margaret +Maria +Maya +Mckenna +Michelle +Summer +Theresa +Anastasia +Ariana +Arianna +Catherine +Christina +Crystal +Dakota +Elena +Erika +Evelyn +Hayley +Jamie +Jessie +Josephine +Kathleen +Kayleigh +Lillian +Lindsay +Marina +Mercedes +Monica +Patricia +Raven +Selena +Shannon +Tiana +Alanna +Angelica +Aubrey +Ava +Camryn +Carina +Carly +Caroline +Chantel +Claire +Colleen +Daisy +Deanna +Denali +Eva +Genevieve +Hanna +Helen +Hope +Hunter +Jada +Josie +Kailey +Kate +Kendall +Kristina +Krystal +Kyla +Lily +Lydia +Madelyn +Makenna +Martha +Meagan +Meghan +Natasha +Serena +Taryn +Tatiana +Tiffany +Tyra +Zoey +Emily +Hannah +Ashley +Sarah +Elizabeth +Jessica +Taylor +Alexis +Madison +Emma +Samantha +Sierra +Grace +Brianna +Victoria +Megan +Lauren +Amber +Haley +Kaitlyn +Rachel +Katherine +Nicole +Savannah +Sydney +Amanda +Anna +Kayla +Alexandra +Mackenzie +Abigail +Isabella +Mary +Brittany +Courtney +Jasmine +Kimberly +Sophia +Alyssa +Cheyenne +Katelyn +Rebecca +Brooke +Gabrielle +Audrey +Christina +Kylie +Morgan +Natalie +Olivia +Trinity +Autumn +Jordan +Alexandria +Allison +Aurora +Chloe +Claire +Madeline +Makayla +Shannon +Breanna +Caitlin +Danielle +Destiny +Kaylee +Kiara +Lydia +Mariah +Paige +Shelby +Ariel +Erin +Hailey +Isabel +Julia +Kendra +Laura +Mikayla +Bailey +Brittney +Cassidy +Catherine +Jamie +Katie +Leah +Lillian +Molly +Naomi +Sabrina +Serena +Arianna +Jennifer +Kate +Kathleen +Kelsey +Kiana +Lindsey +Margaret +Melissa +Rebekah +Sara +Tatiana +Tiffany +Andrea +April +Jade +Josephine +Kathryn +Marissa +Miranda +Payton +Zoe +Amy +Angel +Ashlyn +Bethany +Camryn +Dakota +Elena +Halle +Heather +Jenna +Kailey +Katelynn +Kendall +Kennedy +Kylee +Lily +Maria +Marie +Maya +Michaela +Michelle +Mya +Riley +Sadie +Stephanie +Vanessa +Veronica +Alicia +Amelia +Angelica +Ariana +Cassandra +Charlotte +Cynthia +Erica +Juliana +Kaitlin +Kali +Kara +Kristen +Marina +Mckenzie +Rose +Ruby +Ruth +Sage +Shania +Skylar +Summer +Aaliyah +Alison +Angela +Avery +Chelsea +Christine +Daisy +Dana +Denise +Desiree +Diana +Erika +Esther +Faith +Gabriella +Hanna +Haylee +Hayley +Hope +Jacqueline +Jazmine +Julianne +Julie +Kyla +Leann +Mallory +Nina +Robin +Sasha +Savanna +Selena +Tia +Tiana +Tori +Hannah +Madison +Emily +Sarah +Ashley +Anna +Elizabeth +Emma +Alyssa +Jessica +Abigail +Haley +Victoria +Grace +Sierra +Katherine +Kayla +Samantha +Taylor +Megan +Olivia +Sydney +Alexis +Amber +Lauren +Savannah +Gabrielle +Kaitlyn +Hailey +Rachel +Rebecca +Trinity +Brianna +Erin +Mary +Courtney +Faith +Jennifer +Julia +Nicole +Sophia +Alexandra +Amanda +Audrey +Danielle +Katie +Kaylee +Leah +Morgan +Allison +Bethany +Brittany +Jenna +Mackenzie +Brooke +Caitlin +Chloe +Christina +Laura +Madeline +Marissa +Cheyenne +Kylie +Shelby +Zoe +Andrea +Ariana +Aurora +Isabella +Jasmine +Katelyn +Kimberly +Maria +Melissa +Autumn +Jamie +Jordan +Makayla +Mikayla +Naomi +Natalie +Paige +Shannon +Skylar +Alexandria +Angel +Angela +Cassandra +Claire +Destiny +Hayley +Isabel +Josephine +Margaret +Michelle +Sara +Amy +Angelina +Caitlyn +Esther +Jade +Kristen +Lily +Mariah +Maya +Meghan +Miranda +Molly +Natasha +Tiana +Catherine +Erica +Heather +Jessie +Kathleen +Kathryn +Katrina +Kendra +Kianna +Malia +Mckenzie +Mia +Nina +Peyton +Sabrina +Selena +Bianca +Breanna +Camille +Daisy +Denali +Holly +Isabelle +Jillian +Jordyn +Katelynn +Kelly +Kendall +Kirsten +Lillian +Lydia +Monica +Nadia +Nikki +Patricia +Rebekah +Theresa +Tia +Adrianna +Alicia +Alison +Alissa +Ariel +Ashleigh +Ashlyn +Briana +Brittney +Chelsea +Ciara +Cora +Crystal +Deanna +Delaney +Eden +Ella +Erika +Hope +Jada +Jewel +Kaitlin +Karen +Kelsey +Kennedy +Kiara +Kristin +Kristina +Lisa +Lucy +Madelyn +Makenna +Melanie +Riley +Rose +Ruth +Rylee +Sadie +Serena +Skye +Skyler +Summer +Susan +Tara +Vanessa +Madison +Emily +Hannah +Ashley +Abigail +Elizabeth +Emma +Grace +Victoria +Haley +Alexis +Alyssa +Megan +Taylor +Samantha +Jessica +Olivia +Sarah +Anna +Morgan +Amber +Kayla +Kaitlyn +Sierra +Chloe +Jasmine +Sydney +Brianna +Hailey +Gabrielle +Shelby +Sophia +Autumn +Makayla +Savannah +Trinity +Amanda +Destiny +Julia +Mariah +Mary +Rebecca +Sara +Brooke +Danielle +Faith +Isabella +Naomi +Rachel +Claire +Katherine +Kylie +Mackenzie +Maria +Nicole +Audrey +Jade +Lillian +Lily +Mia +Natalie +Vanessa +Alexandra +Alexia +Aurora +Breanna +Jordan +Kiara +Laura +Zoe +Amy +Chelsea +Cheyenne +Elena +Kennedy +Madeline +Adriana +Allison +Andrea +Angela +Arianna +Bethany +Caitlyn +Courtney +Denali +Gabriella +Hope +Jenna +Jillian +Julianna +Kaylee +Lauren +Lydia +Maya +Miranda +Sadie +Stephanie +Alexandria +Bailey +Caitlin +Christina +Ella +Gillian +Hanna +Katelyn +Kendra +Kiana +Leah +Mckenzie +Nina +Paige +Summer +Angel +Ariana +Ashlyn +Cassandra +Cassidy +Daisy +Erin +Kathryn +Katie +Kira +Kristen +Kyla +Lindsey +Margaret +Michaela +Molly +Natasha +Rachael +Rebekah +Riley +Rylee +Serena +Sofia +Tara +Abby +Adeline +Alicia +Angelina +Annie +Ariel +Ashlee +Aubrey +Babygirl +Bridget +Brittany +Caroline +Catherine +Cierra +Clara +Dakota +Evelyn +Heather +Holly +Isabel +Jazmine +Jennifer +Kelsey +Kimberly +Kylee +Lilly +Marissa +Michelle +Nevaeh +Payton +Sabrina +Sandra +Sophie +Talia +Tia +Aaliyah +Alanna +Alisha +Alissa +Brenna +Casey +Cheyanne +Crystal +Desiree +Ellen +Erica +Isabelle +Jadyn +Kailey +Kaitlin +Katelynn +Kaylie +Kirsten +Kristina +Kyleigh +Kyra +Leilani +Madelyn +Makenna +Makenzie +Mckenna +Meghan +Mercedes +Piper +Rachelle +Renee +Serenity +Shayla +Skye +Valerie +Violet +Willow +Madison +Elizabeth +Emily +Emma +Hannah +Alexis +Ashley +Olivia +Jasmine +Samantha +Sarah +Abigail +Grace +Trinity +Anna +Sydney +Chloe +Katelyn +Kayla +Savannah +Alyssa +Faith +Megan +Sophia +Taylor +Lauren +Kylie +Victoria +Hailey +Isabella +Kaylee +Sierra +Zoe +Amanda +Aurora +Danielle +Katherine +Makayla +Mary +Brianna +Destiny +Ella +Haley +Isabelle +Jessica +Allison +Autumn +Jade +Kaitlyn +Lillian +Mackenzie +Rachel +Amber +Audrey +Gabrielle +Julia +Morgan +Naomi +Shelby +Vanessa +Andrea +Angel +Leah +Maya +Riley +Alexia +Catherine +Erin +Jordan +Lindsey +Madeline +Natalie +Nicole +Paige +Rebecca +Sara +Angelina +Jillian +Jordyn +Lydia +Melissa +Natasha +Alexa +Alexandra +Alicia +Caitlin +Clara +Heather +Jamie +Kiara +Kira +Molly +Rebekah +Shannon +Ayla +Briana +Cassidy +Cheyenne +Christina +Erica +Mariah +Mikayla +Sadie +Aaliyah +Ariana +Ashlyn +Aubrey +Ava +Bailey +Breanna +Brooke +Brooklyn +Chelsea +Claire +Courtney +Denali +Gillian +Isabel +Jada +Jennifer +Jessie +Josephine +Katie +Kelsey +Kendra +Madelyn +Margaret +Rose +Stephanie +Alana +Alexandria +Alice +Alison +Angela +Annika +Ariel +Cheyanne +Delaney +Eva +Evelyn +Gabriella +Haylee +Jenna +Jocelyn +Kathryn +Kiana +Kimberly +Laura +Leilani +Leslie +Liberty +Mckenna +Mia +Michaela +Michelle +Monica +Monique +Renee +Sophie +Tiana +Veronica +Amelia +Anya +Bethany +Caitlyn +Charity +Crystal +Cynthia +Dakota +Elsie +Emilee +Gracie +Hazel +Heidi +Helen +Hope +Justice +Kaitlynn +Kara +Katrina +Kristina +Kylee +Kyra +Lily +Lisa +Makenzie +Mckayla +Mckenzie +Meadow +Meghan +Miranda +Nevaeh +Patricia +Payton +Reagan +Rhiannon +Ruth +Sage +Shania +Tatum +Tiffany +Tori +Valerie +Willow +Zoey +Hannah +Emma +Emily +Madison +Alexis +Hailey +Isabella +Abigail +Olivia +Alyssa +Elizabeth +Trinity +Sarah +Ashley +Grace +Anna +Chloe +Kaitlyn +Kayla +Sophia +Taylor +Mackenzie +Nicole +Savannah +Faith +Haley +Kaylee +Samantha +Angelina +Jordan +Kylie +Paige +Brianna +Jasmine +Lauren +Makayla +Natalie +Alexandra +Brooke +Ella +Megan +Rachel +Victoria +Allison +Ava +Erin +Morgan +Sierra +Amanda +Audrey +Aurora +Destiny +Jessica +Lily +Lydia +Sydney +Amber +Ariana +Autumn +Kelsey +Madeline +Madelyn +Maya +Miranda +Zoe +Annika +Cheyenne +Courtney +Elena +Julia +Katherine +Laura +Molly +Rebecca +Shelby +Aaliyah +Andrea +Angela +Breanna +Jade +Mya +Sara +Amelia +Arianna +Brooklyn +Catherine +Katelyn +Leah +Lillian +Mary +Melanie +Mia +Nevaeh +Avery +Claire +Danielle +Delaney +Eleanor +Elise +Hanna +Isabel +Isabelle +Kiana +Margaret +Mariah +Naomi +Shayla +Summer +Tiffany +Vanessa +Alana +Alexandria +Angel +Ashlynn +Bethany +Camille +Evelyn +Fiona +Gabriella +Gracie +Jaden +Jenna +Josephine +Katie +Kira +Kyla +Maria +Mckenna +Michelle +Piper +Rebekah +Sabrina +Skyler +Tia +Alexia +Alicia +Amara +Amy +Caitlin +Callie +Cassandra +Cassidy +Gabrielle +Hailee +Heidi +Jamie +Jazmine +Jordyn +Kennedy +Kiara +Lucy +Malia +Melissa +Mikayla +Natasha +Riley +Ruby +Selena +Stephanie +Addison +Aiyana +Alexandrea +Alice +Aliyah +Amaya +Ana +Anika +Ashlyn +Aubrey +Briana +Cadence +Cameron +Carlie +Christina +Cynthia +Dakota +Eden +Erika +Esther +Jada +Jillian +Katelynn +Kathryn +Kaya +Kimberly +Kylee +Makena +Makenzie +Marissa +Mckenzie +Meghan +Noelle +Phoebe +Samara +Serena +Skye +Stella +Taryn +Tatiana +Zoey +Emma +Madison +Hannah +Grace +Emily +Abigail +Olivia +Isabella +Alyssa +Sophia +Alexis +Elizabeth +Hailey +Anna +Natalie +Sarah +Sydney +Ava +Trinity +Haley +Kaylee +Taylor +Chloe +Ella +Mackenzie +Sierra +Kayla +Samantha +Zoe +Jessica +Leah +Lily +Rachel +Riley +Savannah +Victoria +Ashley +Cadence +Megan +Aurora +Jasmine +Jordan +Julia +Kylie +Angel +Jade +Nicole +Rebecca +Alexandra +Allison +Audrey +Brianna +Danielle +Destiny +Faith +Isabelle +Jamie +Lauren +Lillian +Mia +Naomi +Nevaeh +Shelby +Arianna +Avery +Brooke +Katelyn +Kylee +Lydia +Malia +Maya +Makayla +Maria +Mary +Michelle +Aaliyah +Amber +Angelina +Jenna +Katrina +Molly +Morgan +Amanda +Amelia +Catherine +Claire +Ellie +Erin +Eva +Katie +Kiara +Kyla +Lindsey +Aubrey +Charlotte +Christina +Clara +Delaney +Gabrielle +Heather +Isabel +Jennifer +Jillian +Kate +Kira +Marissa +Natasha +Paris +Peyton +Sara +Tabitha +Tessa +Alexandria +Angela +Annika +Ashlyn +Autumn +Ayla +Breanna +Erica +Evelyn +Gabriella +Haylee +Janessa +Josephine +Kelsey +Kristen +Lucy +Makenzie +Margaret +Mariah +Natalia +Rebekah +Rhiannon +Sadie +Sage +Selena +Serena +Shannon +Vanessa +Allie +Anika +Ariana +Athena +Caitlyn +Carmen +Courtney +Daisy +Ellen +Gwendolyn +Hope +Jocelyn +Jordyn +Katelynn +Laura +Leilani +Madeline +Madelyn +Mckenna +Melanie +Mercedes +Mya +Paige +Summer +Tiana +Zoey +Adrianna +Alice +Aliyah +Amaya +Anastasia +Angelica +Ashlee +Bailey +Brenna +Camryn +Chelsea +Ciara +Cynthia +Denali +Eileen +Emilia +Fiona +Frances +Gianna +Gracie +Jacqueline +Jadyn +Karina +Katherine +Kiana +Kyra +Layla +Marina +Mckenzie +Melody +Miranda +Nora +Reagan +Sabrina +Shania +Skye +Tatiana +Veronica +Madison +Emma +Emily +Isabella +Samantha +Hannah +Abigail +Olivia +Elizabeth +Grace +Alexis +Anna +Jessica +Sophia +Ava +Lillian +Sierra +Trinity +Lily +Taylor +Hailey +Kaitlyn +Savannah +Alyssa +Lauren +Ella +Mary +Sarah +Ashley +Chloe +Faith +Isabelle +Jasmine +Katherine +Kylie +Morgan +Rebecca +Nevaeh +Paige +Zoe +Brianna +Brooke +Kayla +Mia +Ariana +Arianna +Haley +Jenna +Katelyn +Naomi +Natalie +Riley +Ashlyn +Destiny +Leah +Alexandra +Andrea +Aubrey +Aurora +Autumn +Bethany +Jillian +Julia +Leilani +Lydia +Rylee +Sara +Serenity +Vanessa +Allison +Caitlyn +Dakota +Jordan +Katie +Mackenzie +Megan +Savanna +Sydney +Victoria +Aaliyah +Alicia +Amanda +Angelina +Audrey +Avery +Desiree +Evelyn +Jade +Margaret +Maria +Mariah +Mya +Rachel +Shelby +Sofia +Alana +Alexandria +Amelia +Anastasia +Breanna +Cadence +Cassidy +Claire +Ellie +Gabrielle +Jada +Kelly +Kira +Lena +Madeline +Madelyn +Makenna +Maya +Miranda +Nora +Amber +Angel +Angela +Charlotte +Cheyenne +Christina +Cora +Delaney +Elena +Elise +Erica +Erin +Iris +Josephine +Layla +Lucy +Makayla +Marina +Mckenna +Molly +Payton +Sadie +Sophie +Summer +Zoey +Abby +Addison +Alexa +Alexia +Ariel +Brooklyn +Caroline +Cassandra +Gabriella +Gracie +Heather +Isabel +Jadyn +Janessa +Kailey +Kathryn +Katrina +Kaylee +Kelsey +Kendra +Kennedy +Kiara +Kyra +Marissa +Piper +Sage +Shania +Violet +Willow +Adrianna +Alaina +Aleah +Alison +Amaya +Annie +Brenna +Caitlin +Camryn +Catherine +Courtney +Denali +Elaina +Esther +Eva +Gwendolyn +Harmony +Hayden +Heidi +Holly +Hope +Isis +Jamie +Jocelyn +Kaila +Katelynn +Kaydence +Kendall +Kiley +Kimberly +Kirsten +Kristen +Kylee +Liberty +Lindsey +Malia +Mckenzie +Melanie +Michaela +Nicole +Rose +Rylie +Shannon +Sienna +Tessa +Emma +Emily +Madison +Isabella +Ava +Elizabeth +Hannah +Olivia +Sophia +Abigail +Alyssa +Kaylee +Lily +Jasmine +Kayla +Samantha +Hailey +Natalie +Chloe +Ella +Grace +Alexis +Isabel +Mia +Addison +Kaitlyn +Katie +Sarah +Allison +Makayla +Savannah +Brooke +Faith +Keira +Lauren +Taylor +Anna +Katherine +Lillian +Ariana +Gabriella +Kylie +Mackenzie +Victoria +Arianna +Brooklyn +Cadence +Jessica +Rachel +Sierra +Ashley +Audrey +Brianna +Eva +Isabelle +Jordan +Mckenzie +Mya +Nevaeh +Amelia +Angel +Bethany +Destiny +Julia +Katelyn +Lydia +Serenity +Zoe +Aurora +Jenna +Layla +Naomi +Rebecca +Vanessa +Alexandra +Anya +Aubrey +Bailey +Clara +Evelyn +Gabrielle +Haley +Hazel +Kennedy +Megan +Trinity +Angelina +Claire +Dakota +Jade +Kyra +Lilly +Madeline +Mary +Natalia +Rylee +Violet +Zoey +Alana +Amy +Angela +Ashlyn +Autumn +Danielle +Heidi +Hope +Jennifer +Jillian +Kathryn +Marissa +Maya +Paige +Riley +Shelby +Adrianna +Alexandria +Amaya +Ashlynn +Aspen +Ayla +Delaney +Elena +Erin +Josephine +Julie +Katelynn +Kelly +Kelsey +Kiana +Kira +Laura +Leilani +Maggie +Margaret +Maria +Mariah +Melissa +Morgan +Nicole +Peyton +Sienna +Sydney +Aaliyah +Adeline +Adriana +Alexa +Allie +Anastasia +Brenna +Caitlin +Cassandra +Cassidy +Chelsea +Cheyenne +Diamond +Eleanor +Erica +Esther +Hailee +Jaylynn +Kara +Kayleigh +Kimberly +Kyla +Kylee +Lindsey +Makenna +Molly +Monica +Nora +Rowan +Sara +Shannon +Tatum +Tiffany +Willow +Avery +Breanna +Camryn +Carly +Caroline +Cecelia +Celeste +Charlotte +Daisy +Danika +Eliza +Genevieve +Gracie +Holly +Jada +Jocelyn +Kailey +Kamryn +Katrina +Kendall +Leah +Liberty +Lucy +Maddison +Madeleine +Marina +Nadine +Noelle +Patricia +Phoebe +Rachael +Rayna +Reagan +Rebekah +Sabrina +Sage +Sasha +Scarlett +Selah +Serena +Skye +Skylar +Sofia +Stella +Summer +Isabella +Emily +Madison +Ava +Abigail +Emma +Sophia +Olivia +Alyssa +Natalie +Hannah +Hailey +Lillian +Lily +Elizabeth +Grace +Sarah +Chloe +Ella +Mia +Addison +Alexis +Anna +Ashley +Taylor +Aurora +Samantha +Trinity +Faith +Sierra +Riley +Savannah +Zoe +Charlotte +Adriana +Brooke +Brooklyn +Jasmine +Jessica +Katelyn +Layla +Mackenzie +Nevaeh +Paige +Rachel +Aaliyah +Audrey +Evelyn +Kaylee +Kylie +Mya +Allison +Autumn +Julia +Makayla +Sienna +Aubrey +Brianna +Claire +Gabriella +Kaitlyn +Lauren +Naomi +Rebecca +Sadie +Sydney +Alana +Ashlyn +Cadence +Jada +Jocelyn +Josephine +Katie +Keira +Mary +Maya +Amelia +Angelina +Bailey +Cheyenne +Destiny +Hayden +Jenna +Jordan +Kayla +Leah +Lydia +Morgan +Violet +Adrianna +Aliyah +Ariana +Arianna +Danielle +Isabel +Katherine +Madeline +Mariah +Molly +Serenity +Zoey +Alexa +Avery +Caitlyn +Elise +Hope +Isabelle +Jamie +Kyla +Lila +Madelyn +Makenna +Megan +Nicole +Peyton +Ruby +Shelby +Summer +Tessa +Victoria +Alayna +Alexandra +Alexandria +Amber +Anastasia +Andrea +Angel +Daisy +Esther +Hazel +Heidi +Iris +Jade +Jennifer +Jillian +Jordyn +Kali +Kendra +Kiana +Kristina +Lucy +Makenzie +Malia +Maria +Mckenzie +Michelle +Sophie +Willow +Amanda +Ashlynn +Bethany +Cassidy +Chelsea +Ellie +Eva +Genevieve +Gracie +Haley +Kadence +Kailey +Kaydence +Kennedy +Kira +Kyra +Lacey +Madisyn +Mckenna +Melissa +Natasha +Reagan +Rhiannon +Sara +Savanna +Sofia +Talia +Vanessa +Alaina +Alice +Alisa +Amara +Ariel +Athena +Ayla +Danika +Jayden +Julianna +Kaelyn +Katelynn +Kathryn +Kayleigh +Kelsey +Kylee +Lindsey +Maggie +Melody +Mikayla +Natalia +Reese +Sarina +Emma +Ava +Abigail +Sophia +Isabella +Olivia +Emily +Elizabeth +Madison +Alyssa +Chloe +Hailey +Lily +Taylor +Aurora +Lillian +Autumn +Hannah +Grace +Alexis +Natalie +Sarah +Anna +Nevaeh +Savannah +Trinity +Faith +Samantha +Addison +Amelia +Ella +Jasmine +Makayla +Riley +Destiny +Serenity +Zoe +Allison +Mia +Rachel +Sierra +Victoria +Audrey +Avery +Brooklyn +Jade +Kylie +Peyton +Piper +Julia +Katherine +Kayla +Aubrey +Bella +Brooke +Catherine +Gabriella +Keira +Mary +Angelina +Arianna +Ashley +Erin +Gracie +Isabelle +Kaylee +Lilly +Mariah +Molly +Aaliyah +Amber +Claire +Delilah +Eva +Isabel +Kaitlyn +Katelyn +Kylee +Lauren +Morgan +Nicole +Shelby +Sydney +Alexandra +Andrea +Ariana +Ayla +Bailey +Brianna +Gabrielle +Jada +Leila +Lucy +Megan +Melody +Miley +Paige +Rylee +Alivia +Amanda +Ashlyn +Brooklynn +Cassidy +Charlotte +Haley +Harmony +Hazel +Jessica +Jillian +Jocelyn +Josephine +Kelsey +Kiara +Marley +Mya +Sadie +Scarlett +Sienna +Valerie +Veronica +Vivian +Alexa +Alexia +Alicia +Angel +Cora +Denali +Hayden +Izabella +Kayleigh +Kaylynn +Kira +Laila +Layla +Leah +Lena +Lydia +Mackenzie +Madeline +Maya +Michelle +Naomi +Natasha +Payton +Rebecca +Ruby +Willow +Alice +Aliyah +Alora +Annabelle +Aryanna +Bethany +Bristol +Caroline +Christina +Clara +Delaney +Eleanor +Elena +Elise +Evelyn +Heidi +Holly +Isla +Jordan +Kailey +Katie +Khloe +Kiana +Liberty +Lyla +Macy +Madelyn +Mckenzie +Nadia +Rebekah +Sara +Sasha +Shyla +Sofia +Tessa +Vanessa +Zoey +Alaina +Alissa +Anastasia +Angelica +Cadence +Cassandra +Cheyenne +Claudia +Courtney +Danielle +Eden +Felicity +Genevieve +Helena +Jenna +Jennifer +Jessie +Julie +Kaia +Karina +Kennedy +Kenzie +Lauryn +Lila +Lilah +Liliana +London +Madilyn +Makenna +Makenzie +Marissa +Melanie +Penelope +Reagan +Rowan +Sabrina +Sophie +Stella +Tatum +Violet +Winter +Isabella +Sophia +Olivia +Abigail +Ava +Emma +Madison +Chloe +Emily +Elizabeth +Lily +Alexis +Brooklyn +Lillian +Riley +Sarah +Aurora +Lucy +Alyssa +Anna +Hailey +Kaylee +Ella +Grace +Savannah +Taylor +Trinity +Avery +Bella +Destiny +Mia +Samantha +Addison +Autumn +Claire +Hannah +Natalie +Peyton +Victoria +Aubrey +Keira +Madelyn +Gabriella +Kylie +Maya +Amelia +Eva +Faith +Jocelyn +Kaitlyn +Nevaeh +Aaliyah +Allison +Lauren +Charlotte +Gracie +Isabelle +Jordan +Layla +Payton +Ruby +Rylee +Sydney +Zoey +Alexandria +Ariana +Arianna +Audrey +Clara +Jade +Jenna +Lilly +Molly +Zoe +Brooke +Danielle +Evelyn +Gabrielle +Haley +Jordyn +Makayla +Sierra +Summer +Alexandra +Angela +Athena +Brooklynn +Isabel +Jasmine +Josephine +Leah +Lydia +Madeline +Naomi +Serenity +Teagan +Violet +Adeline +Alana +Brianna +Cadence +Harmony +Hayden +Kathryn +Kendra +Kylee +Madilyn +Megan +Morgan +Rachel +Sadie +Shelby +Stephanie +Willow +Alivia +Amy +Andrea +Annabelle +Ashley +Ashlynn +Caroline +Cheyenne +Erin +Fiona +Harper +Jamie +Jessica +Katelyn +Katelynn +Katie +Kaydence +Kennedy +Mariah +Mckinley +Natasha +Piper +Rebecca +Vivian +Alaina +Anastasia +Anya +Cassidy +Chelsea +Cora +Ember +Haylee +Hayley +Helen +Iris +Izabella +Jennifer +Kiana +Kiera +Macy +Mary +Mckenzie +Michelle +Rachael +Reese +Scarlett +Adrianna +Alexia +Aliyah +Amaya +Aniya +Aria +Ashlyn +Bailey +Caitlin +Carmen +Cassandra +Dakota +Eden +Eliana +Heather +Hope +Jacqueline +Jayden +Jazmine +Juliana +Kaelyn +Kailyn +Kara +Kate +Katherine +Kayla +Kelsey +Kendall +Khloe +Kira +Kyla +Kyra +Lena +Lila +Mackenzie +Madalyn +Makenzie +Margaret +Marin +Mckenna +Mikayla +Mya +Nicole +Nina +Paige +Reagan +Sage +Serena +Sofia +Stella +Tessa +Vanessa +Sophia +Emma +Isabella +Olivia +Ava +Abigail +Hannah +Madison +Elizabeth +Grace +Lily +Chloe +Alyssa +Amelia +Emily +Arianna +Ella +Natalie +Anna +Lillian +Peyton +Kaylee +Avery +Zoe +Zoey +Hailey +Nevaeh +Addison +Aurora +Brooklyn +Isabelle +Kylie +Riley +Alexis +Audrey +Autumn +Jocelyn +Sarah +Savannah +Aubrey +Gabriella +Khloe +Mary +Samantha +Violet +Faith +Lucy +Mikayla +Rebecca +Sydney +Taylor +Trinity +Ariana +Eva +Evelyn +Kinley +Kira +Leah +Mackenzie +Allison +Bella +Claire +Gabrielle +Gianna +Kaitlyn +Layla +Mariah +Ruby +Sophie +Ashley +Brooke +Ellie +Lilly +Lydia +Mia +Serenity +Victoria +Willow +Adrianna +Charlotte +Izabella +Jordyn +Kayla +Lyla +Molly +Payton +Scarlett +Angelina +Ashlyn +Ashlynn +Brianna +Cadence +Clara +Delaney +Julia +Naomi +Rylee +Sabrina +Sadie +Aaliyah +Ayla +Brooklynn +Caroline +Eleanor +Hazel +Isabel +Katelyn +Kaydence +Kyla +Lauren +Madeline +Makayla +Makenna +Mckinley +Paige +Shelby +Sofia +Stella +Teagan +Vanessa +Alexandra +Alice +Amy +Anastasia +Esther +Evangeline +Haley +Harper +Ivy +Jade +Kara +Katie +Lexi +Liliana +Madilyn +Maya +Nora +Reagan +Sienna +Alana +Alexandria +Annabella +Aria +Bailey +Breanna +Chelsea +Daisy +Fiona +Gracie +Haylee +Hope +Jasmine +Jenna +Kate +Kendall +Kiana +Leilani +Liberty +Lila +Lilah +Lilliana +Madelyn +Mckenna +Melissa +Miriam +Morgan +Mya +Natalia +Nicole +Rachel +Summer +Thea +Tiffany +Alayna +Alicia +Aliyah +Amber +Andrea +Annabelle +Annie +Annika +Audrina +Bethany +Bristol +Cassandra +Cecilia +Cheyenne +Christine +Courtney +Danielle +Delilah +Emery +Harmony +Heidi +Iris +Jayla +Jessica +Jillian +Josephine +Kaia +Kamryn +Katelynn +Keira +Kelsey +Kendra +Kimberly +Lindsey +Lucia +Lyric +Maddison +Margaret +Maria +Marin +Marley +Mika +Miranda +Piper +Ruth +Sierra +Talia +Tatum +Tessa +Olivia +Emma +Isabella +Madison +Sophia +Ava +Emily +Chloe +Abigail +Amelia +Zoey +Grace +Lily +Aurora +Evelyn +Elizabeth +Natalie +Anna +Hailey +Lillian +Riley +Alyssa +Audrey +Ella +Mia +Nevaeh +Samantha +Zoe +Aubrey +Charlotte +Claire +Hannah +Addison +Brooklyn +Savannah +Jasmine +Kylie +Lydia +Makayla +Lucy +Mary +Trinity +Alice +Autumn +Kaylee +Layla +Peyton +Sarah +Avery +Ellie +Gabriella +Isabelle +Kinley +Scarlett +Sophie +Sydney +Aaliyah +Alexis +Arianna +Cora +Hazel +Mackenzie +Madelyn +Morgan +Payton +Taylor +Violet +Willow +Alaina +Aliyah +Destiny +Isla +Julia +Maya +Mckenzie +Victoria +Aria +Ariana +Gabrielle +Kayla +Naomi +Bella +Brielle +Brooke +Evangeline +Jade +Kaitlyn +Katherine +Mckinley +Molly +Serenity +Alexandria +Allison +Annabelle +Ashlynn +Aubree +Ayla +Eden +Eva +Faith +Harper +Jocelyn +Jordyn +Kaydence +Keira +Khloe +Lauren +Makenna +Melanie +Melody +Michelle +Mya +Rosemary +Rylee +Sadie +Shelby +Sofia +Alina +Alivia +Ashlyn +Bailey +Caroline +Eleanor +Holly +Hope +Iris +Josephine +Katelyn +Kimberly +Leah +Lyla +Madalyn +Mikayla +Penelope +Rachel +Ruby +Teagan +Tiana +Vivian +Abby +Adalyn +Anastasia +Angelina +Ashley +Braelyn +Brianna +Camille +Carly +Carmen +Catherine +Dakota +Eliana +Elise +Genevieve +Giana +Harmony +Hayden +Haylee +Jenna +Jordan +Juliet +Katie +Kelsey +Kennedy +Kiana +Kyla +Kylee +Kyra +Laila +Leilani +Lexi +Lilly +Maggie +Makenzie +Maria +Melissa +Noelle +Paige +Rebecca +Ruth +Sierra +Adrianna +Andrea +Anya +Arabella +Athena +Bethany +Brooklynn +Brynn +Cadence +Cherish +Clara +Elena +Ember +Emery +Fiona +Gracelyn +Gracie +Helena +Isabel +Jada +Jemma +Jillian +Journey +Julie +Kaia +Karina +Kendall +Kourtney +Liliana +Lucia +Lyric +Malia +Margaret +Mckenna +Millie +Miranda +Nora +Paisley +Parker +Phoebe +Piper +Reagan +Rebekah +Rose +Sage +Sasha +Selah +Shayla +Skyla +Sonja +Stella +Summer +Vanessa +Virginia +Emma +Sophia +Olivia +Abigail +Ava +Chloe +Elizabeth +Isabella +Lillian +Emily +Grace +Madison +Ella +Harper +Hannah +Evelyn +Layla +Lily +Amelia +Kaylee +Mia +Addison +Hailey +Aurora +Avery +Zoey +Audrey +Scarlett +Aria +Aubree +Autumn +Samantha +Violet +Mary +Savannah +Brooklyn +Eva +Natalie +Victoria +Alyssa +Faith +Khloe +Kylee +Payton +Piper +Riley +Taylor +Aaliyah +Aubrey +Brooke +Claire +Naomi +Serenity +Alexis +Allison +Ariana +Cora +Isabelle +Kayla +Kylie +Lyla +Madelyn +Maria +Maya +Penelope +Reagan +Stella +Anna +Bailey +Brooklynn +Cadence +Eden +Harmony +Leah +Nora +Paige +Peyton +Trinity +Zoe +Adalyn +Alice +Annabelle +Ariel +Bella +Brielle +Charlie +Clara +Jessica +Lydia +Madeline +Molly +Morgan +Nevaeh +Ruby +Sadie +Sophie +Sydney +Adrianna +Angel +Ashley +Ashlynn +Ayla +Charlotte +Eleanor +Ellie +Evangeline +Genevieve +Hadley +Hazel +Jade +Julia +Katherine +Keira +Kinley +Lexi +Lucy +Megan +Willow +Adeline +Alaina +Annika +Arianna +Bethany +Bristol +Caitlyn +Cassidy +Delilah +Fiona +Isabel +Isla +Josephine +Katelyn +Kennedy +Kenzie +Kiara +Lauren +Maddison +Makenna +Melody +Rylee +Selena +Serena +Sienna +Vivian +Adelaide +Alana +Alexandra +Amber +Amy +Aspen +Brianna +Camille +Catherine +Christina +Danielle +Elsie +Ember +Gabriella +Hanna +Hayden +Izabella +Juliana +Juliet +Kaitlyn +Kristen +Lilly +London +Luna +Mackenzie +Mariah +Mckenna +Mila +Noelle +River +Sarah +Scarlet +Alexandria +Alivia +Allie +Angela +Arabella +Ariella +Cali +Camila +Carly +Delaney +Esther +Eve +Gabrielle +Gracie +Iris +Isis +Ivy +Jazmine +Jennifer +Joanna +Kathryn +Kaydence +Kayleigh +Keely +Kira +Kyra +Lindsey +Lola +Makayla +Marie +Monica +Nicole +Parker +Rose +Ruth +Shelby +Sierra +Sofia +Summer +Tatum +Emma +Sophia +Abigail +Isabella +Olivia +Charlotte +Harper +Emily +Ava +Avery +Amelia +Elizabeth +Evelyn +Aurora +Addison +Hannah +Lily +Aria +Audrey +Mia +Aubrey +Lillian +Brooklyn +Chloe +Victoria +Scarlett +Hailey +Jade +Madison +Natalie +Alexis +Gabriella +Violet +Allison +Ella +Piper +Sofia +Alice +Autumn +Jasmine +Kaylee +Savannah +Zoey +Anna +Grace +Mary +Peyton +Sophie +Bailey +Lydia +Naomi +Samantha +Skylar +Brooke +Eleanor +Kaitlyn +Melody +Nevaeh +Penelope +Sadie +Serenity +Stella +Taylor +Aaliyah +Arianna +Claire +Ellie +Kendall +Mckenzie +Molly +Paige +Quinn +Trinity +Adalyn +Angel +Annabelle +Bella +Faith +Julia +Leah +Paisley +Reagan +Ruby +Rylee +Alyssa +Ariana +Clara +Cora +Lucy +Makayla +Maya +Mckinley +Sarah +Zoe +Aliyah +Ariel +Athena +Aubree +Ayla +Brynn +Christina +Emery +Eva +Holly +Isla +Jane +Jordyn +Kinley +Kylie +Layla +Lilly +Lola +Mackenzie +Madeline +Maria +Mariah +Nora +Payton +Riley +Rose +Sierra +Alexandra +Alexandria +Andrea +Brooklynn +Catherine +Cheyenne +Denali +Eden +Elise +Eliza +Genevieve +Hazel +Heidi +Isabel +Isabelle +Izabella +Jocelyn +Katie +Kenzie +Khloe +Kira +London +Margaret +Mya +Sydney +Tiana +Vanessa +Willow +Aliya +Anastasia +Annie +Arya +Ashley +Ashlynn +Brianna +Brielle +Caroline +Cassidy +Cynthia +Danica +Delilah +Hadley +Harmony +Haven +Hope +Jamie +Jennifer +Josephine +June +Kaydence +Kayla +Lauren +Luna +Lyric +Maggie +Mckenna +Mila +Noelle +Olive +Parker +Stephanie +Sylvia +Talia +Adelynn +Alexa +Allie +Ally +Amber +April +Ariah +Brylee +Cadence +Cali +Camryn +Dahlia +Danielle +Daphne +Delaney +Elena +Eve +Finley +Gabrielle +Ivy +Josie +Kamryn +Keira +Kennedy +Kylee +Liberty +Lilyana +Lucia +Lyla +Macy +Madeleine +Madilyn +Marina +Morgan +Nadia +Norah +Rachel +Rosalie +Ruth +Teagan +Valentina +Emma +Olivia +Sophia +Aurora +Isabella +Abigail +Avery +Evelyn +Hannah +Amelia +Grace +Harper +Charlotte +Ella +Ava +Emily +Aria +Penelope +Annabelle +Lily +Zoey +Chloe +Aubrey +Elizabeth +Hailey +Kaylee +Lillian +Natalie +Peyton +Piper +Eleanor +Hazel +Sadie +Violet +Anna +Brooklyn +Kinley +Madison +Paisley +Addison +Claire +Layla +Audrey +Ellie +Faith +Scarlett +Bella +Elena +Riley +Samantha +Athena +Mackenzie +Nevaeh +Gabriella +Naomi +Ruby +Savannah +Zoe +Aaliyah +Alyssa +Ariana +Autumn +Isabel +Isabelle +Leah +Lucy +Mia +Nora +Rose +Serenity +Victoria +Alice +Arianna +Aubree +Brooke +Kennedy +River +Sarah +Sofia +Stella +Taylor +Trinity +Alexis +Allison +Cora +Ember +Gwendolyn +Maria +Willow +Amara +Andrea +Clara +Eliana +Elsa +Everly +Julia +Kira +Kyra +Madeline +Makayla +Payton +Skylar +Sophie +Tessa +Vivian +Ashley +Caroline +Daisy +Elise +Elliana +Harmony +Henley +Iris +Ivy +Jade +Jasmine +Juliana +Juliet +Laura +Lydia +Mckinley +Rory +Winter +Aliyah +Danielle +Eden +Evangeline +Hayden +Hope +Isla +Juniper +Kenzie +Kyla +Kylie +Luna +Margaret +Marley +Mckenna +Nova +Paige +Quinn +Ruth +Rylee +Ryleigh +Summer +Vivienne +Adalyn +Adelaide +Alayna +Alivia +Ana +Ariel +Bailey +Bristol +Catherine +Charlie +Christina +Delilah +Elisabeth +Eliza +Emilia +Felicity +Finley +Gemma +Genevieve +Heidi +Izabella +Josephine +Joy +Katelyn +Katherine +Khloe +Lauren +Lila +Lilliana +Maci +Madilyn +Mariah +Mary +Melody +Molly +Presley +Rachel +Raegan +Reagan +Teagan +Ada +Adalynn +Alana +Alexandria +Alina +Amia +Arabella +Arya +Ayla +Bethany +Braelyn +Delaney +Destiny +Dylan +Emery +Emmalyn +Esther +Eva +Gracie +Hadley +Jayla +Jennifer +Josie +June +Kali +Kallie +Kayla +Lexie +Lilah +Lyla +Macy +Maggie +Makenna +Maya +Mckenzie +Meadow +Mila +Natasha +Olive +Rosalie +Sage +Shelby +Shiloh +Sydney +Veronica +John +James +Paul +Robert +Carl +Edward +George +William +John +James +Peter +William +George +John +William +George +Charles +Nick +Frank +James +John +William +George +James +Richard +John +James +Joseph +Henry +William +David +Robert +Arthur +Charles +George +Peter +Albert +Frank +Jack +Walter +Andrew +John +William +Robert +Charles +Albert +James +Edward +Peter +George +Walter +Daniel +Harry +Joseph +Paul +Richard +David +Frank +Fred +Frederick +Nick +Roy +John +William +James +George +Andrew +Edward +Robert +Carl +Fred +Henry +Frank +Jack +Walter +Billy +Charles +Ernest +Harry +Joseph +John +Robert +William +George +James +Paul +Charles +Edward +Fred +Joseph +Ralph +Thomas +Arthur +David +Donald +Jack +Jacob +Mike +John +William +Joseph +Charles +Robert +Alfred +George +Harry +Edward +James +Peter +Albert +Andrew +Roy +Walter +Daniel +Jack +Joe +Paul +Simon +Thomas +John +George +James +Robert +Charles +David +William +Jack +Henry +Walter +Edward +Fred +Thomas +Carl +Harry +Joseph +Nick +Albert +Andrew +Donald +Ralph +John +William +Paul +George +James +Robert +Joseph +Thomas +Andrew +Henry +Charles +David +Walter +Harry +Louis +Richard +Albert +Arthur +Donald +Eugene +Frank +Harold +Lawrence +John +William +George +Joseph +Charles +Donald +Frank +Henry +Robert +Daniel +Lawrence +Alfred +Edward +James +Richard +Thomas +Patrick +Andrew +Carl +Kenneth +Leonard +Paul +Phillip +Walter +Robert +William +John +James +David +George +Richard +Edward +Walter +Charles +Frank +Peter +Carl +Joseph +Thomas +Albert +Fred +Harry +Paul +Donald +Frederick +Harold +Jack +Kenneth +Raymond +Samuel +Tom +Willie +John +James +Robert +William +George +Edward +David +Joseph +Frank +Jack +Nick +Peter +Arthur +Charles +Fred +Paul +Richard +Thomas +Andrew +Donald +Harry +Lawrence +Roy +Billy +Daniel +Mike +Warren +John +William +James +Paul +Robert +Fred +George +Henry +Joseph +Frank +Nick +Walter +Peter +Thomas +Alfred +Carl +Albert +Alex +Edward +Evan +Harry +Jack +Jacob +Joe +Roy +Sam +John +George +Robert +Richard +Harry +James +Charles +Edward +Joseph +Charlie +Henry +William +David +Peter +Andrew +Fred +Harold +Nick +Raymond +Walter +John +Robert +James +Paul +George +William +Andrew +Charles +Harry +Joseph +Thomas +Fred +Henry +Peter +Roy +Bernard +Ernest +Gregory +Lawrence +John +Robert +William +George +James +Andrew +Charles +David +Joseph +Paul +Richard +Edward +Frank +Arthur +Daniel +Donald +Fred +Harold +Harry +Samuel +Thomas +Carl +Henry +Johnny +Nick +Norman +Peter +Raymond +John +James +Robert +William +George +Joseph +Donald +Sam +Arthur +Harry +Henry +Nick +Paul +Walter +Billy +Charles +David +Richard +Roy +Andrew +Frank +Fred +Clarence +Jack +Kenneth +Peter +Ralph +Raymond +John +Robert +James +William +David +Charles +George +Nick +Harry +Andrew +Carl +Herman +Peter +Richard +Albert +Donald +Paul +Willie +Frank +Harold +Henry +Jack +Joe +Joseph +Mike +John +Peter +Robert +William +George +Henry +Donald +James +Paul +Jack +Carl +David +Edward +Harry +Joseph +Richard +Arthur +Fred +Harold +Albert +Frank +Lawrence +Michael +Raymond +Thomas +Alfred +Ernest +Gerald +Johnnie +Sam +Tom +Walter +John +William +Robert +George +James +Charles +Edward +Peter +Richard +Donald +Henry +David +Frank +Harold +Harry +Jack +Joseph +Herbert +Thomas +Victor +Bill +Carl +Jerry +Kenneth +Paul +Ralph +John +William +James +Charles +George +Paul +David +Donald +Joseph +Robert +Henry +Frank +Nick +Richard +Carl +Harold +Lawrence +Charlie +Edward +Peter +Ralph +Raymond +Walter +Albert +Andrew +Arthur +Daniel +Gary +Simeon +John +William +Robert +James +George +Frank +Edward +Paul +Arthur +Charles +David +Henry +Richard +Joseph +Peter +Alfred +Jack +Benjamin +Donald +Gilbert +Harry +Nick +Fredrick +Ralph +Walter +John +Robert +William +David +James +Peter +Raymond +Albert +Andrew +Thomas +Frank +Harry +Henry +Paul +Richard +Donald +Harold +Joseph +Charles +Jack +Herbert +Clarence +Edward +George +Gerald +Gilbert +Larry +Lawrence +Mike +Patrick +Roy +Stanley +Walter +John +Richard +Robert +George +James +William +Donald +Edward +Paul +David +Kenneth +Frank +Joseph +Raymond +Harold +Jack +Walter +Alfred +Allen +Dennis +Henry +Howard +Jacob +Leonard +Peter +Ronald +Robert +John +James +George +Richard +Donald +William +David +Thomas +Frank +Henry +Paul +Charles +Daniel +Albert +Jerry +Billy +Joseph +Kenneth +Lawrence +Nick +Ralph +Carl +Edward +Fred +Harry +Joe +Ray +Alexie +Gerald +Herbert +Jacob +Peter +Raymond +Ronald +Robert +William +George +John +David +James +Paul +Charles +Joseph +Peter +Richard +Walter +Clarence +Donald +Frank +Roy +Norman +Ralph +Raymond +Carl +Edward +Henry +Jerry +Michael +Thomas +Tommy +Arnold +Arthur +Harold +Larry +Patrick +Victor +Robert +John +William +Edward +Richard +Albert +James +Peter +Charles +David +George +Thomas +Walter +Carl +Joe +Joseph +Raymond +Donald +Frank +Jack +Kenneth +Paul +Arnold +Billy +Daniel +Fred +Gerald +Harold +Henry +Martin +Mike +Patrick +Philip +Ralph +Bill +Franklin +Frederick +Gabriel +Gary +Glenn +Herman +Victor +John +William +George +David +James +Richard +Robert +Michael +Peter +Arthur +Paul +Thomas +Edward +Raymond +Clarence +Ronald +Daniel +Donald +Jack +Kenneth +Alfred +Charles +Frank +Harold +Jim +Norman +Walter +Albert +Andrew +Carl +Henry +Howard +Moses +Steven +John +James +William +Robert +David +George +Richard +Frank +Joseph +Thomas +Charles +Paul +Gerald +Henry +Raymond +Arthur +Michael +Walter +Albert +Daniel +Edward +Peter +Clifford +Jerry +Lawrence +Donald +Fred +Herman +Kenneth +Mike +Nicholas +Roger +Ronald +Ernest +Harold +Harry +Jack +Joe +Leonard +Martin +Moses +Patrick +Stanley +Robert +John +William +David +James +Richard +Charles +Michael +George +Paul +Gary +Peter +Frank +Joseph +Ronald +Roy +Donald +Edward +Fred +Kenneth +Raymond +Albert +Jerry +Larry +Thomas +Walter +Dennis +Harold +Lawrence +Bill +Charlie +Daniel +Harry +Henry +Jimmy +Nick +Tommy +Carl +Jack +Melvin +Patrick +Philip +John +Robert +James +William +David +Peter +Thomas +Charles +Richard +Joseph +Michael +Ronald +Daniel +Frank +Donald +Harold +Jerry +George +Larry +Albert +Edward +Gerald +Lawrence +Paul +Andrew +Dennis +Kenneth +Nick +Norman +Roy +Gary +Walter +Carl +Douglas +Henry +Jack +Mike +Raymond +John +James +David +William +Robert +Charles +George +Richard +Gary +Joseph +Donald +Douglas +Michael +Frank +Thomas +Ronald +Andrew +Charlie +Paul +Raymond +Johnny +Larry +Albert +Edward +Fred +Jack +Jim +Joe +Kenneth +Nick +Norman +Peter +Alvin +Dennis +Ernest +Jerry +Moses +Roy +Chris +Clifford +Daniel +Walter +Robert +John +James +William +Richard +David +Michael +Charles +Peter +Paul +Ronald +Donald +Fred +Thomas +Gary +Henry +Joseph +Larry +Walter +George +Carl +Kenneth +Dennis +Douglas +Francis +Frank +Harold +Ralph +Alfred +Bob +Edward +Eugene +Frederick +Martin +Melvin +Patrick +Roger +Stanley +Wayne +Andrew +Bruce +Eric +Gabriel +Herbert +Isaac +Jack +Johnny +Lawrence +Mark +Steve +Robert +John +Richard +James +William +David +Michael +Joseph +Charles +George +Frank +Kenneth +Paul +Donald +Edward +Thomas +Patrick +Clifford +Gary +Peter +Steven +Arthur +Gerald +Jack +Leonard +Mike +Allen +Arnold +Carl +Douglas +Fred +Roger +Alfred +Earl +Johnny +Leslie +Ronald +Roy +Stanley +Steve +Terry +John +James +Robert +David +Richard +Michael +William +Larry +George +Peter +Jerry +Ronald +Daniel +Joseph +Patrick +Thomas +Edward +Gary +Harold +Donald +Kenneth +Norman +Fred +Mike +Timothy +Dennis +Gerald +Jack +Mark +Ralph +Roy +Stanley +Stephen +Steven +Andrew +Carl +Charles +Frank +Louis +Marvin +Paul +Victor +Allen +Arthur +Bernard +Douglas +Harry +Johnny +Steve +Tom +Walter +Wayne +Alfred +Bill +Bruce +Ernest +Eugene +Joe +Rodney +Terry +John +James +William +Richard +Robert +Michael +David +Thomas +Charles +George +Peter +Dennis +Larry +Paul +Donald +Ronald +Daniel +Edward +Frank +Gary +Joseph +Jack +Patrick +Dale +Douglas +Harold +Jerry +Bill +Bruce +Fred +Mike +Raymond +Victor +Kenneth +Norman +Wayne +Don +Gerald +Lawrence +Steven +Andrew +Roger +Stephen +Theodore +Walter +Arthur +Brian +Carl +Clifford +Gregory +Lee +Martin +Ronnie +Allen +Dan +Evan +Francis +Henry +Howard +Jim +Joe +Randall +Wilfred +John +James +David +Robert +Michael +Richard +William +Charles +Thomas +Paul +Daniel +Donald +Joseph +Kenneth +Ronald +Frank +Larry +Gary +Patrick +Peter +Roger +George +Carl +Edward +Jack +Jerry +Raymond +Henry +Roy +Andrew +Bruce +Joe +Stephen +Walter +Arthur +Fred +Gerald +Albert +Alfred +Allen +Bill +Brian +Terry +Anthony +Dale +Dennis +Lawrence +Leonard +Mark +Mike +Philip +Wayne +Darryl +Don +Douglas +Frederick +Gilbert +Gregory +Harold +Herman +Howard +Johnny +Lloyd +Martin +Russell +Scott +Steve +Steven +Allan +Bob +Clarence +Earl +Ernest +Eugene +Franklin +Fredrick +Glenn +Guy +Harry +Melvin +Micheal +Ralph +Theodore +John +Robert +James +Michael +William +David +Richard +Charles +George +Thomas +Joseph +Daniel +Peter +Ronald +Stephen +Steven +Donald +Edward +Kenneth +Paul +Fred +Dennis +Gary +Gregory +Larry +Douglas +Walter +Jerry +Norman +Patrick +Alfred +Harold +Mark +Albert +Andrew +Frank +Jack +Raymond +Roger +Allen +Billy +Bruce +Harry +Joe +Roy +Russell +Theodore +Lawrence +Ralph +Terry +Arnold +Arthur +Calvin +Carl +Dale +Eugene +Jeffrey +Lee +Steve +Anthony +Brian +Christopher +Earl +Frederick +Gene +Gerald +Herbert +Martin +Samuel +Alan +Bob +Clyde +Eric +Glenn +Harvey +Jim +Jon +Stanley +Tony +Wassillie +Wayne +Robert +John +James +David +William +Michael +Richard +Thomas +Steven +Gary +George +Donald +Joseph +Ronald +Daniel +Peter +Charles +Mark +Bruce +Edward +Paul +Dennis +Kenneth +Walter +Andrew +Gregory +Larry +Timothy +Arthur +Frank +Stephen +Henry +Terry +Raymond +Allen +Dale +Lawrence +Ralph +Stanley +Anthony +Carl +Jerry +Scott +Norman +Phillip +Steve +Wayne +Willie +Benjamin +Christopher +Eric +Ernest +Fred +Frederick +Jack +Matthew +Patrick +Roger +Albert +Danny +Francis +Franklin +Glen +Harold +Harvey +Johnny +Leonard +Randall +Roy +Victor +Alan +Alfred +Allan +Alvin +Bill +Craig +Douglas +Guy +Harry +Jeffrey +Lee +Maurice +Moses +Philip +Rick +Rodney +Russell +Samuel +Theodore +John +Robert +James +David +Michael +Richard +William +Thomas +Steven +Charles +Daniel +Paul +Gary +George +Kenneth +Larry +Ronald +Joseph +Raymond +Douglas +Timothy +Donald +Stephen +Frank +Gregory +Dennis +Mark +Harold +Peter +Bruce +Edward +Roy +Arthur +Carl +Wayne +Christopher +Jack +Patrick +Eric +Howard +Johnny +Lawrence +Walter +Eugene +Gerald +Henry +Jerry +Martin +Norman +Glenn +Mike +Rick +Roger +Anthony +Brian +Don +Ernest +Frederick +Glen +Melvin +Micheal +Philip +Alan +Alfred +Dean +Gene +Gordon +Harry +Russell +Samuel +Terry +Albert +Charlie +Dale +Earl +Phillip +Ralph +Andrew +Barry +Chester +Chris +Clifford +Dan +Danny +Franklin +Harvey +Herbert +Jeffrey +Joe +Kent +Leonard +Lloyd +Louis +Nicholas +Randy +Tommy +Warren +James +John +Robert +Michael +David +William +Richard +Thomas +Steven +Charles +Gary +Kenneth +George +Mark +Joseph +Donald +Paul +Patrick +Ronald +Daniel +Gregory +Bruce +Edward +Stephen +Douglas +Larry +Dennis +Frank +Raymond +Walter +Jack +Jerry +Harold +Henry +Peter +Timothy +Andrew +Glenn +Terry +Scott +Anthony +Wayne +Harry +Christopher +Fred +Gerald +Lawrence +Micheal +Russell +Ernest +Frederick +Phillip +Arnold +Arthur +Carl +Charlie +Randall +Roger +Roy +Alan +Eric +Jeffrey +Jimmy +Samuel +Dale +Danny +Earl +Gene +Guy +Lee +Marvin +Mike +Ralph +Stanley +Steve +Alfred +Dean +Eugene +Johnny +Leroy +Matthew +Norman +Albert +Chris +Craig +Dan +Gilbert +Herbert +Howard +Jay +Jerome +Joe +Karl +Melvin +Philip +Randolph +Randy +Ricky +Sam +Theodore +Tommy +Allen +Brian +Clifford +Clyde +Glen +Jesse +Jim +Kent +Kim +Kirk +Leo +Leonard +Leslie +Louis +Mitchell +Moses +Oscar +Reginald +Rick +David +Michael +John +Robert +James +Richard +William +Steven +Thomas +Charles +Gary +Joseph +Daniel +Mark +Ronald +Stephen +Donald +Kenneth +Timothy +George +Patrick +Paul +Douglas +Gregory +Edward +Larry +Peter +Bruce +Jack +Raymond +Dennis +Frank +Jerry +Lawrence +Roger +Terry +Frederick +Harry +Jeffrey +Ralph +Walter +Andrew +Arthur +Carl +Randall +Stanley +Wayne +Martin +Micheal +Randy +Albert +Christopher +Danny +Gerald +Glenn +Kevin +Eric +Henry +Keith +Phillip +Rodney +Tommy +Craig +Norman +Scott +Billy +Darrell +Eugene +Gordon +Harold +Howard +Karl +Roy +Victor +Alan +Anthony +Arnold +Brian +Dan +Fred +Johnny +Kurt +Leonard +Lloyd +Philip +Steve +Allen +Charlie +Dale +Herman +Jimmy +Tony +Warren +Delbert +Duane +Edwin +Francis +Franklin +Gene +Glen +Joe +Joel +Jonathan +Kent +Leslie +Louis +Lynn +Marcus +Marvin +Matthew +Rick +Russell +Samuel +Alexander +Clyde +Curtis +Dana +Ernest +Gilbert +Herbert +Jay +Jon +Kelly +Nick +Perry +Robin +Roland +Wilfred +Willie +Michael +John +David +James +Robert +William +Richard +Mark +Steven +Gary +Thomas +Daniel +Charles +Donald +George +Paul +Ronald +Kenneth +Joseph +Timothy +Edward +Bruce +Larry +Jeffrey +Stephen +Douglas +Raymond +Patrick +Frank +Dennis +Dale +Terry +Peter +Scott +Gerald +Gregory +Randy +Anthony +Henry +Eric +Harry +Kevin +Andrew +Jerry +Phillip +Roy +Samuel +Walter +Arthur +Carl +Frederick +Keith +Ralph +Alan +Allen +Danny +Roger +Albert +Christopher +Herbert +Jack +Leonard +Stanley +Wayne +Billy +Brian +Craig +Ernest +Fred +Jay +Jimmy +Johnny +Jon +Lawrence +Mike +Rodney +Harold +Kurt +Lee +Matthew +Randall +Russell +Darrell +Gilbert +Glenn +Howard +Isaac +Martin +Marvin +Philip +Calvin +Chris +Don +Eddie +Glen +Gordon +Harvey +Lloyd +Marc +Micheal +Norman +Rick +Victor +Wallace +Alvin +Benjamin +Bill +Brent +Dean +Jeffery +Jim +Louis +Nick +Oscar +Ricky +Tony +August +Barry +Ben +Bernard +Bert +Bobby +Bradley +Christophe +Clarence +Curtis +Dick +Francis +Guy +Karl +Kim +Leslie +Randolph +Rex +Sidney +Terrence +Tom +Warren +David +Michael +Robert +John +James +William +Richard +Mark +Thomas +Steven +Charles +Donald +Kenneth +Ronald +Daniel +Joseph +Gregory +George +Gary +Paul +Timothy +Dennis +Patrick +Stephen +Edward +Larry +Bruce +Jeffrey +Douglas +Kevin +Peter +Raymond +Scott +Terry +Frank +Brian +Gerald +Walter +Wayne +Arthur +Christopher +Randy +Roger +Jack +Jeffery +Jerry +Keith +Russell +Andrew +Dale +Glenn +Roy +Albert +Allen +Craig +Eric +Gordon +Matthew +Philip +Randall +Victor +Carl +Howard +Lawrence +Leonard +Mike +Ralph +Randolph +Chris +Frederick +Harold +Harry +Henry +Kim +Micheal +Phillip +Rodney +Steve +Billy +Marc +Martin +Marvin +Nick +Norman +Stanley +Alan +Arnold +Benjamin +Dan +Floyd +Jimmy +Leslie +Samuel +Anthony +Barry +Bobby +Calvin +Charlie +Dana +Dean +Ernest +Eugene +Glen +Herman +Jay +Jon +Jonathan +Kent +Rick +Ronnie +Vincent +Alfred +Bradley +Brent +Clifford +Curtis +Danny +Gene +Gilbert +Kurt +Louis +Reginald +Ricky +Theodore +Tony +Bill +Darrell +Dave +Don +Dwight +Earl +Edwin +Fred +Jim +Karl +Marcus +Melvin +Milton +Ray +Vernon +Michael +James +Robert +David +John +William +Richard +Mark +Steven +Thomas +Daniel +Donald +Paul +Charles +George +Kenneth +Timothy +Gregory +Joseph +Ronald +Jeffrey +Stephen +Gary +Dennis +Douglas +Scott +Bruce +Edward +Frank +Gerald +Larry +Patrick +Randy +Anthony +Lawrence +Christopher +Kevin +Peter +Brian +Jerry +Raymond +Terry +Frederick +Keith +Phillip +Andrew +Arthur +Howard +Wayne +Micheal +Roger +Glenn +Martin +Russell +Albert +Dale +Danny +Gordon +Ralph +Walter +Carl +Chris +Clifford +Duane +Jack +Philip +Steve +Craig +Edwin +Eric +Jay +Leonard +Mike +Ray +Harold +Harry +Henry +Leo +Ricky +Samuel +Bryan +Ernest +Leslie +Norman +Rodney +Stanley +Theodore +Alvin +Billy +Curtis +Dean +Fred +Fredrick +Jeffery +Johnny +Jon +Melvin +Robin +Alfred +Bobby +Eugene +Franklin +Jimmy +Joel +Lloyd +Nick +Randall +Randolph +Tom +Wesley +Aaron +Benjamin +Dana +Earl +Francis +Glen +Herbert +Lonnie +Mitchell +Nathan +Sam +Tony +Victor +Alan +Allen +Brad +Cecil +Clyde +Don +Gabriel +Gilbert +Jacob +Jim +Kurt +Lee +Louis +Marc +Nicholas +Ronnie +Roy +Tommy +Vernon +John +David +Michael +James +Robert +William +Richard +Mark +Steven +Thomas +Daniel +Gregory +Paul +Ronald +Charles +Donald +Kenneth +Gary +George +Joseph +Jeffrey +Patrick +Peter +Timothy +Stephen +Edward +Kevin +Larry +Dennis +Douglas +Raymond +Terry +Frank +Randy +Roger +Scott +Bruce +Carl +Christopher +Anthony +Brian +Lawrence +Samuel +Walter +Henry +Martin +Gerald +Jerry +Mike +Allen +Andrew +Arthur +Eric +Harry +Roy +Russell +Steve +Bill +Harold +Johnny +Keith +Rodney +Wayne +Dale +Danny +Fred +Gordon +Jack +Phillip +Randall +Glenn +Jay +Theodore +Billy +Howard +Leroy +Matthew +Alan +Albert +Curtis +Jeffery +Philip +Ray +Rick +Frederick +Jim +Joe +Lee +Marvin +Mitchell +Norman +Barry +Bobby +Craig +Eddie +Greg +Jonathan +Nick +Ralph +Stanley +Bryan +Leo +Nathan +Bradley +Chris +Darrell +Dean +Don +Ernest +Franklin +Leonard +Leslie +Lloyd +Melvin +Micheal +Perry +Vernon +Wade +Warren +Willie +Alfred +Bernard +Calvin +Darryl +Duane +Floyd +Guy +Herbert +Karl +Ken +Kirk +Kurt +Todd +Tommy +Tony +Vincent +Wesley +Alexander +Benjamin +Benny +Bob +Charlie +Dave +Earl +Edwin +Elmer +Glen +Harvey +Herman +Jimmy +Kent +Lester +Marc +Ricky +Rudolph +Ted +Tom +Victor +Michael +James +David +John +Robert +William +Richard +Mark +Charles +Kenneth +Thomas +Ronald +Joseph +Gary +Steven +Paul +Timothy +George +Daniel +Douglas +Larry +Donald +Edward +Scott +Gregory +Jeffrey +Stephen +Terry +Brian +Kevin +Christopher +Carl +Gerald +Dennis +Frank +Mike +Patrick +Ricky +Dale +Peter +Raymond +Eric +Roy +Anthony +Bruce +Jerry +Joe +Wayne +Henry +Jay +Allen +Stanley +Albert +Samuel +Andrew +Craig +Danny +Harold +Jack +Barry +Johnny +Keith +Lawrence +Russell +Bill +Darrell +Fred +Jim +Kurt +Matthew +Nick +Phillip +Randy +Walter +Benjamin +Curtis +Floyd +Glenn +Harry +Howard +Jeffery +Karl +Arthur +Clarence +Dan +Gordon +Jimmy +Joel +Lee +Melvin +Nicholas +Randall +Steve +Tony +Vernon +Alan +Bobby +Charlie +Chris +Dean +Duane +Ernest +Frederick +Fredrick +Leonard +Martin +Micheal +Norman +Ray +Rick +Rodney +Todd +Tommy +Warren +Andy +Billy +Bryan +Clifford +Dave +Don +Glen +Ralph +Roger +Ronnie +Vincent +Alfred +Bob +Earl +Francis +Kelly +Mitchell +Robin +Theodore +Tom +Byron +Calvin +Carlie +Dana +Darrel +Edwin +Eugene +Franklin +Gilbert +Greg +Gregg +Guy +Harvey +Herbert +Kirk +Leo +Lewis +Louis +Morris +Philip +Randolph +Rickey +Roland +Ron +Sam +Tim +Victor +Wallace +Willie +John +James +Robert +Michael +David +William +Richard +Mark +Steven +Donald +Daniel +Kenneth +Thomas +Gary +Charles +Paul +Brian +Kevin +George +Peter +Joseph +Ronald +Dennis +Patrick +Timothy +Edward +Larry +Jeffrey +Gerald +Scott +Mike +Anthony +Raymond +Carl +Steve +Tim +Douglas +Gregory +Harold +Jerry +Joe +Roger +Andrew +Bruce +Christopher +Dale +Bill +Philip +Ralph +Randy +Alan +Frank +Jeffery +Stephen +Albert +Craig +Martin +Ricky +Roy +Fred +Lawrence +Matthew +Rodney +Terry +Walter +Eric +Henry +Allen +Arthur +Billy +Danny +Frederick +Jack +Micheal +Phillip +Samuel +Wayne +Dan +Duane +Ernest +Eugene +Glenn +Keith +Randall +Alfred +Bradley +Curtis +Darrell +Dean +Don +Gordon +Harry +Jim +Jimmy +Jon +Russell +Stanley +Bryan +Earl +Howard +Lee +Tom +Tommy +Warren +Willie +Arnold +Benjamin +Benny +Bobby +Chris +Herbert +Jeff +Leonard +Ray +Rick +Vernon +Allan +Alvin +Brett +Clifford +Franklin +Glen +Jackie +Jay +Kelly +Kurt +Leslie +Mitchell +Neil +Tony +Wallace +Aaron +Barry +Bernard +Brent +Clarence +Erik +Floyd +Jeffry +Kim +Lance +Norman +Ronnie +Theodore +Victor +Wesley +David +Michael +Robert +John +James +Mark +Richard +William +Steven +Thomas +Daniel +Kenneth +Scott +Charles +Edward +Kevin +Paul +Donald +Timothy +Brian +Ronald +Gary +George +Joseph +Jeffrey +Peter +Gregory +Bruce +Douglas +Patrick +Larry +Anthony +Andrew +Mike +Dennis +Eric +Walter +Wayne +Lawrence +Christopher +Matthew +Raymond +Terry +Frank +Jerry +Randy +Harry +Russell +Dale +Norman +Randall +Stephen +Carl +Howard +Jay +Keith +Roger +Tom +Albert +Jack +Stanley +Steve +Alan +Bill +Danny +Joe +Roy +Arthur +Henry +Jeffery +Victor +Chris +Clifford +Eugene +Jeff +Jim +Kirk +Lee +Lloyd +Marvin +Warren +Billy +Dean +Don +Glenn +Jon +Karl +Nick +Tim +Bryan +Curtis +Jimmy +Kurt +Phillip +Rodney +Shawn +Alfred +Bob +Craig +Fred +Frederick +Gene +Gerald +Glen +Harold +Martin +Micheal +Ralph +Ricky +Samuel +Todd +Vincent +Aaron +Barry +Bernard +Duane +Jonathan +Kelly +Leroy +Melvin +Mitchell +Philip +Ross +Sam +Tracy +Willie +Allen +Arnold +Ben +Bradley +Clayton +Dan +Earl +Edgar +Gordon +Guy +Jesse +Johnny +Leonard +Louis +Marc +Rick +Tommy +Tony +Alvin +Benjamin +Clinton +Darryl +Greg +Jacob +Leslie +Lewis +Nathan +Nicholas +Ray +Rocky +Roland +Ronnie +Stuart +Ted +Terrance +Theodore +Troy +Wesley +David +John +Michael +Robert +James +William +Mark +Thomas +Richard +Steven +Timothy +Paul +Daniel +Kenneth +Charles +Jeffrey +Joseph +Kevin +Donald +Gregory +Peter +Raymond +Gary +Scott +Ronald +Christopher +Edward +Jerry +Douglas +Brian +Dennis +Eric +Larry +Jim +Patrick +Mike +Andrew +Bruce +Steve +Frank +Joe +Roger +Roy +Jeff +Carl +George +Leonard +Randy +Stephen +Gerald +Norman +Wayne +Chris +Glenn +Harry +Keith +Lawrence +Terry +Anthony +Alfred +Harold +Ray +Alan +Allen +Billy +Martin +Matthew +Rodney +Tom +Dean +Earl +Gordon +Henry +Joel +Jonathan +Ricky +Samuel +Stanley +Troy +Walter +Bobby +Curtis +Dale +Danny +Fred +Frederick +Jack +Marvin +Phillip +Ralph +Randall +Russell +Victor +Arthur +Jay +Jeffery +Jon +Todd +Albert +Bill +Glen +Jimmy +Nicholas +Nick +Philip +Charlie +Chuck +Clarence +Clifford +Dana +Duane +Edwin +Erik +Floyd +Forrest +Francis +Howard +Jacob +Kelly +Roland +Warren +Benjamin +Bernard +Bob +Ernest +Herbert +Jackie +Kirk +Matt +Mitchell +Moses +Rex +Sam +Stuart +Vernon +Willie +Allan +Arnold +Barry +Bradley +Clark +Craig +Dan +Darryl +Dave +Don +Dwayne +Greg +Harvey +Johnny +Lance +Leslie +Luke +Marc +Micheal +Oscar +Pat +Rick +Shawn +Theodore +Tim +Tony +Vincent +John +Michael +David +Robert +James +William +Richard +Mark +Joseph +Thomas +Steven +Timothy +Charles +Paul +Kevin +Brian +Daniel +Kenneth +Donald +George +Gary +Jeffrey +Gregory +Scott +Douglas +Carl +Anthony +Steve +Mike +Patrick +Raymond +Ronald +Jerry +Peter +Andrew +Edward +Todd +Keith +Larry +Stephen +Christopher +Wayne +Eric +Alan +Allen +Gerald +Jeffery +Roger +Dale +Dennis +Frank +Glenn +Bruce +Craig +Henry +Jack +Terry +Walter +Barry +Howard +Jay +Jimmy +Ralph +Troy +Randall +Samuel +Bryan +Chris +Darrell +Johnny +Karl +Norman +Randy +Shawn +Charlie +Dean +Louis +Ricky +Russell +Stanley +Tim +Victor +Albert +Benjamin +Curtis +Danny +Dwayne +Jon +Lawrence +Tom +Vernon +Arthur +Bill +Billy +Bobby +Clifford +Duane +Fred +Gordon +Harry +Martin +Marty +Philip +Phillip +Alfred +Darryl +Gilbert +Greg +Harold +Jeff +Kelly +Marvin +Nicholas +Nick +Rick +Roy +Arnold +Franklin +Joe +Lance +Lee +Tommy +Tony +Bob +Bradley +Brent +Dan +Don +Frederick +Guy +Joel +Leonard +Leslie +Matthew +Melvin +Ray +Rodney +Tracy +Wade +Allan +Bert +Brad +Cary +Chuck +Darren +Earl +Eugene +Francis +Freddie +Glen +Jesse +Joey +Jonathan +Kent +Matt +Nathan +Rex +Ross +Sean +Wesley +Willie +Wilson +David +Michael +Robert +James +John +William +Richard +Mark +Daniel +Thomas +Ronald +Charles +Kenneth +Donald +Joseph +Kevin +Scott +Steven +Edward +Jeffrey +Brian +Paul +Gary +Timothy +Raymond +Carl +Todd +Eric +Dale +Douglas +Gregory +George +Larry +Andrew +Keith +Patrick +Matthew +Peter +Jim +Stephen +Wayne +Mike +Randy +Frank +Glenn +Jerry +Christopher +Alfred +Dennis +Lawrence +Roy +Anthony +Danny +Henry +Walter +Norman +Samuel +Tom +Allen +Curtis +Harry +Joe +Russell +Vincent +Billy +Martin +Roger +Terry +Tony +Craig +Eugene +Jeff +Kurt +Phillip +Rodney +Bruce +Kelly +Nick +Shawn +Benjamin +Clifford +Duane +Gerald +Jimmy +Marvin +Tim +Troy +Warren +Alan +Brent +Chris +Franklin +Fred +Frederick +Glen +Herbert +Howard +Nicholas +Ray +Steve +Bradley +Daryl +Ernest +Harold +Jack +Jay +Jeffery +Johnny +Jon +Melvin +Perry +Randall +Ricky +Stanley +Stuart +Vernon +Victor +Arthur +Casey +Dan +Darrell +Earl +Gordon +Guy +Jonathan +Lloyd +Oscar +Philip +Ralph +Tracy +Albert +Bill +Bobby +Brad +Charlie +Chester +Dean +Don +Floyd +Fredrick +Gene +Kirk +Leonard +Louis +Willie +Adam +Alvin +Brett +Clyde +Dana +Darryl +Dwayne +Edwin +Evan +Jimmie +Karl +Kent +Leo +Leroy +Micheal +Mitchell +Sammy +Sidney +Tommy +John +Michael +David +Robert +James +William +Richard +Kenneth +Mark +Thomas +Daniel +Kevin +Joseph +Scott +Timothy +Charles +Brian +Ronald +Donald +Paul +Jeffrey +Steven +Christopher +Gary +Patrick +Douglas +Edward +Todd +Eric +George +Andrew +Frank +Anthony +Bruce +Jerry +Peter +Stephen +Gregory +Raymond +Dennis +Keith +Carl +Henry +Jeffery +Larry +Terry +Jack +Martin +Phillip +Russell +Alan +Mike +Randy +Walter +Fred +Frederick +Matthew +Albert +Craig +Dale +Duane +Harold +Lawrence +Roger +Shawn +Eugene +Roy +Samuel +Troy +Vincent +Billy +Chris +Dean +Norman +Randall +Rodney +Danny +Jim +Joe +Johnny +Jonathan +Leonard +Micheal +Perry +Rick +Victor +Arthur +Benjamin +Dwayne +Gerald +Glen +Glenn +Harry +Jay +Wayne +Barry +Clifford +Joel +Ralph +Ricky +Stanley +Alfred +Bill +Bryan +Byron +Curtis +Darrell +Darryl +Evan +Gordon +Greg +Herbert +Jeff +Ken +Lance +Tony +Wesley +Brad +Bradley +Darren +Don +Howard +Karl +Philip +Ronnie +Vernon +Allan +Allen +Andre +Andy +Arnold +Bobby +Dan +Derek +Edwin +Elia +Francis +Franklin +Gabriel +Harvey +Herman +Jason +Jesse +Jimmy +Kent +Lee +Lester +Lloyd +Lyle +Mitchell +Sean +Shannon +Stuart +Theodore +Tim +Tom +Tracy +Warren +John +Michael +Robert +James +David +William +Richard +Mark +Daniel +Timothy +Steven +Thomas +Brian +Charles +Gary +Kevin +Eric +Jeffrey +Kenneth +Joseph +Christopher +Paul +Scott +Douglas +Edward +Anthony +Patrick +Donald +George +Frank +Matthew +Peter +Raymond +Gerald +Gregory +Ronald +Andrew +Carl +Randy +Todd +Jerry +Larry +Rodney +Mike +Terry +Walter +Bryan +Craig +Jack +Randall +Wayne +Curtis +Dan +Glenn +Lawrence +Tim +Bruce +Dennis +Jeffery +Albert +Arthur +Barry +Chris +Dale +Danny +Henry +Keith +Martin +Russell +Sean +Alan +Erik +Harold +Harry +Jason +Jon +Alvin +Dwayne +Jay +Melvin +Samuel +Shawn +Stephen +Darren +Johnny +Lance +Norman +Phillip +Steve +Tracy +Troy +Allen +Bobby +Darrell +Eddie +Fred +Gordon +Herbert +Howard +Karl +Kent +Leonard +Lloyd +Ralph +Roy +Theodore +Alexander +Benjamin +Bernard +Brent +Dean +Gabriel +Gene +Marvin +Stanley +Tony +Wesley +Aaron +Clarence +Don +Frederick +Gilbert +Ivan +Jeff +Jimmy +Joe +Joel +Kurt +Leroy +Max +Micheal +Nathan +Nicholas +Philip +Roger +Vernon +Vincent +Ben +Billy +Bob +Chad +Duane +Earl +Ernest +Francis +Franklin +Guy +Jonathan +Kelly +Lee +Lonnie +Loren +Louis +Moses +Ray +Ricardo +Sidney +Willie +Michael +David +John +Robert +James +Richard +William +Mark +Scott +Steven +Brian +Kevin +Daniel +Thomas +Joseph +Paul +Charles +Christopher +Eric +Jeffrey +Kenneth +Edward +Gary +Timothy +Patrick +Ronald +Gregory +Anthony +Andrew +George +Donald +Keith +Matthew +Stephen +Douglas +Frank +Larry +Todd +Billy +Samuel +Sean +Darren +Jerry +Martin +Peter +Bruce +Raymond +Roger +Russell +Shawn +Terry +Vincent +Wayne +Gerald +Carl +Eugene +Jack +Dale +Dennis +Rodney +Tony +Benjamin +Harold +Henry +Jon +Jonathan +Micheal +Randy +Steve +Alan +Darryl +Ernest +Jeffery +Joel +Norman +Phillip +Roy +Craig +Danny +Duane +Howard +Jason +Karl +Mike +Randall +Troy +Victor +Walter +Curtis +Darrell +Frederick +Glenn +Kurt +Lawrence +Nick +Tim +Vernon +Wassillie +Albert +Brett +Chad +Clifford +Clinton +Earl +Gordon +Jay +Jesse +Ralph +Stanley +Teddy +Theodore +Tracy +Warren +Aaron +Alexander +Allen +Charlie +Christian +Darin +Erik +Evan +Franklin +Fredrick +Harry +Jeff +Jim +Joe +Johnny +Kyle +Lance +Lee +Nicholas +Wade +Alfred +Arnold +Arthur +Bill +Bradley +Chris +Clayton +Glen +Grant +Johnnie +Kelly +Lyle +Moses +Philip +Ray +Ricky +Tommy +Virgil +David +Michael +James +John +Robert +William +Richard +Mark +Thomas +Charles +Daniel +Jeffrey +Brian +Timothy +Kevin +Steven +Joseph +Kenneth +Patrick +Scott +Christopher +Paul +Anthony +Donald +Ronald +Eric +Peter +Gregory +Andrew +Douglas +Shawn +Gary +George +Matthew +Roger +Edward +Frank +Gerald +Larry +Todd +Jerry +Walter +Bruce +Sean +Bryan +Philip +Lawrence +Ralph +Stephen +Terry +Phillip +Carl +Jack +Jason +Jeffery +Benjamin +Craig +Harry +Jonathan +Mike +Norman +Rodney +Samuel +Alfred +Arthur +Curtis +Martin +Aaron +Dale +Darren +Dean +Dennis +Fred +Glenn +Jay +Jeff +Joel +Kelly +Micheal +Nathan +Raymond +Stanley +Tony +Troy +Wayne +Albert +Barry +Eugene +Glen +Harold +Henry +Jon +Keith +Lance +Theodore +Tommy +Warren +Allen +Billy +Brad +Calvin +Erik +Herbert +Jimmy +Kirk +Lee +Leonard +Leslie +Marvin +Nicholas +Russell +Steve +Tracy +Wesley +Allan +Brett +Danny +Darin +Darrell +Ernest +Frederick +Jesse +Lloyd +Mitchell +Nick +Randy +Roy +Tom +Vincent +Alvin +Bobby +Clarence +Clifford +Earl +Edwin +Franklin +Gordon +Grant +Isaac +Jacob +Karl +Leo +Leon +Marc +Stuart +Tim +Victor +John +David +Michael +Robert +James +Richard +William +Mark +Brian +Joseph +Daniel +Christopher +Timothy +Scott +Thomas +Kevin +Matthew +Patrick +Ronald +Steven +Charles +Edward +Eric +Jeffrey +Paul +Kenneth +Gregory +Donald +Todd +Anthony +Shawn +Peter +Stephen +Gary +Andrew +George +Frank +Carl +Douglas +Raymond +Sean +Wayne +Jonathan +Larry +Mike +Allen +Curtis +Jason +Rodney +Roy +Russell +Walter +Lawrence +Bryan +Dale +Jeffery +Nick +Alan +Bradley +Darren +Glenn +Jack +Karl +Martin +Roger +Troy +Vincent +Brett +Craig +Dennis +Eugene +Francis +Jerry +Lee +Benjamin +Chad +Dean +Fred +Jim +Keith +Kurt +Randall +Aaron +Albert +Bruce +Harold +Marc +Melvin +Micheal +Bill +Brent +Byron +Clifford +Duane +Erik +Franklin +Gerald +Harry +Henry +Johnny +Randy +Ryan +Samuel +Shane +Tony +Warren +Alex +Arthur +Brad +Darrell +Earl +Edwin +Ernest +Frederick +Gordon +Herbert +Howard +Jay +Jimmy +Leslie +Norman +Roderick +Sam +Terry +Victor +Adam +Billy +Bobby +Chris +Jeff +Joe +Joel +Kelly +Nicholas +Noel +Phillip +Ray +Ricky +Stacey +Travis +Vernon +Michael +Robert +David +John +James +William +Mark +Christopher +Richard +Brian +Daniel +Charles +Thomas +Joseph +Paul +Kenneth +Steven +Eric +Ronald +Jeffrey +Timothy +Anthony +Douglas +Matthew +Scott +Patrick +Gregory +Jason +Andrew +Donald +Kevin +George +Shawn +Todd +Sean +Stephen +Dennis +Edward +Troy +Aaron +Shane +Raymond +Carl +Larry +Peter +Wayne +Alan +Frederick +Gary +Jon +Harold +Samuel +Travis +Brett +Frank +Randy +Russell +Bruce +Bryan +Curtis +Jack +Joel +Keith +Lance +Micheal +Brent +Danny +Dean +Gerald +Glen +Jeffery +Jesse +Mitchell +Phillip +Arthur +Benjamin +Chris +Craig +Damon +Darin +Darren +Daryl +Jerry +Jonathan +Kurt +Marc +Martin +Rodney +Theodore +Clifford +Dale +Glenn +Guy +Howard +Karl +Mike +Ralph +Roger +Tony +Victor +Vincent +Walter +Bradley +Chad +Christian +Corey +Duane +Erik +Harry +Henry +Jim +Lawrence +Norman +Shannon +Steve +Vernon +Alvin +Clarence +Clinton +Clyde +Earl +Edwin +Gordon +Jeff +Jeremy +Joe +Kelly +Marvin +Nicholas +Ryan +Ted +Warren +Adam +Albert +Allen +Arnold +Bobby +Brad +Darrell +Dwayne +Ernest +Eugene +Gabriel +Grant +Johnny +Leif +Leo +Luke +Mathew +Nathan +Nick +Philip +Roy +Terry +Tim +Wesley +Michael +John +David +James +Robert +Christopher +William +Richard +Thomas +Eric +Kevin +Joseph +Brian +Jason +Mark +Daniel +Steven +Charles +Jeffrey +Matthew +Scott +Paul +Andrew +Timothy +Donald +Gary +Gregory +Ronald +Shawn +Anthony +Edward +Sean +Kenneth +Patrick +Aaron +George +Stephen +Douglas +Frank +Todd +Gerald +Peter +Troy +Shane +Craig +Dennis +Jeffery +Keith +Carl +Dale +Chad +Jon +Travis +Albert +Allen +Jerry +Jonathan +Walter +Brent +Micheal +Rodney +Russell +Samuel +Wayne +Brett +Derek +Erik +Jeremy +Vincent +Benjamin +Bryan +Chris +Clifford +Kurt +Larry +Martin +Philip +Alan +Bruce +Darrell +Darren +Glenn +Kyle +Lance +Leonard +Phillip +Randall +Raymond +Ryan +Theodore +Frederick +Harold +Jack +Jesse +Joel +Johnny +Lawrence +Marc +Mike +Nicholas +Terry +Adam +Arthur +Billy +Brad +Bradley +Clinton +Curtis +Duane +Earl +Franklin +Fred +Jay +Jimmy +Robin +Shannon +Trenton +Brandon +Christian +Cory +Danny +Dustin +Howard +Jim +Karl +Lyle +Mathew +Melvin +Nathan +Neil +Roger +Victor +Wade +Warren +Andy +Bobby +Byron +Clint +Darrin +Dean +Dwayne +Ernest +Francis +Guy +Harry +Joshua +Kent +Lee +Lonnie +Louis +Mitchell +Nick +Norman +Rick +Stewart +Terrence +Toby +Wesley +John +Robert +Michael +David +James +William +Christopher +Jason +Brian +Scott +Daniel +Paul +Thomas +Steven +Kevin +Eric +Richard +Jeffrey +Matthew +Joseph +Charles +Anthony +Mark +Aaron +Kenneth +Timothy +Patrick +Chad +Todd +Donald +Gregory +Shawn +Ronald +Sean +Andrew +Dennis +Douglas +Stephen +Edward +Jack +Shane +Jonathan +Bryan +Derek +Jeffery +Samuel +Wayne +Curtis +Keith +Troy +Erik +Gary +George +Jeremy +Peter +Raymond +Jerry +Lawrence +Frederick +Joshua +Tony +Walter +Adam +Allen +Benjamin +Carl +Duane +Nathan +Nicholas +Bruce +Clinton +Jon +Lance +Larry +Micheal +Russell +Albert +Arthur +Howard +Justin +Ralph +Randall +Clifford +Craig +Darren +Frank +Gerald +Jacob +Jay +Kyle +Randy +Alan +Chris +Franklin +Harold +Henry +Martin +Phillip +Rodney +Roy +Theodore +Dale +Darryl +Gordon +Joe +Luke +Marvin +Norman +Ricky +Ryan +Tracy +Travis +Alfred +Alvin +Bobby +Brett +Darrell +Dwayne +Garrett +Glenn +Herbert +Ian +Jamie +Joel +Marc +Mathew +Mike +Nathaniel +Nelson +Steve +Terrance +Terry +Vernon +Victor +Arnold +Barry +Billy +Casey +Christian +Clint +Cory +Danny +Dean +Derrick +Eugene +Evan +Jesse +Jim +Jimmy +Johnny +Jonathon +Kelly +Kurt +Lee +Leo +Leonard +Leslie +Loren +Marcus +Neil +Robin +Roger +Tommy +Vincent +Wesley +Willie +Michael +John +David +James +Christopher +Robert +Jason +William +Brian +Matthew +Thomas +Richard +Daniel +Joseph +Paul +Kenneth +Scott +Eric +Gregory +Kevin +Mark +Charles +Timothy +Jeffrey +Steven +Shawn +Anthony +Chad +Andrew +Ronald +Aaron +Donald +Peter +Stephen +Edward +Keith +Ryan +Patrick +Sean +Travis +Benjamin +Bryan +Jonathan +Joshua +Todd +Craig +Justin +Derek +Douglas +Raymond +Shane +Frank +Jesse +Lawrence +George +Jeffery +Nathan +Samuel +Adam +Arthur +Erik +Frederick +Joel +Walter +Brett +Carl +Curtis +Dennis +Gary +Harold +Ian +Larry +Russell +Darren +Jared +Jimmy +Roy +Allen +Brandon +Brent +Clifford +Corey +Dustin +Gabriel +Jack +Jerry +Lance +Nick +Phillip +Shaun +Troy +Vincent +Clint +Danny +Jay +Jeremy +Jon +Kyle +Lloyd +Marvin +Philip +Terry +Wade +Bruce +Duane +Earl +Gerald +Jacob +Johnny +Lee +Marcus +Norman +Ricky +Rodney +Shannon +Warren +Wayne +Alan +Arnold +Casey +Christian +Christophe +Damon +Darin +Dean +Don +Dwayne +Eddie +Emil +Ernest +Forrest +Fred +Glenn +Henry +Howard +Karl +Leroy +Marc +Marty +Ralph +Ray +Ross +Stanley +Tom +Tommy +Tony +Wesley +Zachary +Michael +Jason +Christopher +James +David +William +Robert +Matthew +Brian +John +Daniel +Joseph +Richard +Eric +Thomas +Ryan +Steven +Aaron +Scott +Kevin +Paul +Timothy +Chad +Jeremy +Charles +Jeffrey +Benjamin +Joshua +Sean +Shawn +Nathan +Jonathan +Shane +Mark +Edward +Peter +Kenneth +Travis +Anthony +Gary +Justin +Andrew +George +Troy +Donald +Patrick +Dennis +Todd +Craig +Erik +Gregory +Jerry +Ronald +Samuel +Brandon +Stephen +Carl +Douglas +Ernest +Gabriel +Jeffery +Keith +Bryan +Jacob +Jimmy +Larry +Adam +Alan +Chris +Edwin +Frank +Jay +Joel +Lee +Nicholas +Ralph +Russell +Wayne +Arthur +Brett +Charlie +Christian +Danny +Derek +Jack +Karl +Kyle +Raymond +Tony +Earl +Kelly +Lance +Marcus +Stanley +Walter +Allen +Brent +Calvin +Dean +Ian +Jared +Jesse +Mathew +Ray +Roger +Zachary +Albert +Alexander +Bruce +Byron +Carlos +Dale +Darrell +Duane +Eugene +Evan +Gerald +Harold +Hugh +Jamie +Jeff +Marvin +Philip +Phillip +Randy +Roy +Terry +Wade +Wilson +Michael +Jason +John +Robert +David +James +Christopher +William +Brian +Matthew +Daniel +Joshua +Joseph +Aaron +Steven +Mark +Richard +Charles +Kenneth +Ryan +Scott +Timothy +Jeffrey +Kevin +Sean +Thomas +Eric +Shawn +Anthony +Gregory +Jonathan +Justin +Patrick +Paul +Adam +Andrew +Benjamin +Jeremy +Travis +Edward +Jacob +Nathan +Shane +Samuel +Chad +Douglas +Peter +Stephen +George +Jeremiah +Donald +Erik +Bryan +Frank +Keith +Brandon +Larry +Clinton +Gabriel +Gary +Jared +Raymond +Russell +Todd +Jesse +Ronald +Wesley +Isaac +Lawrence +Roy +Alfred +Carl +Curtis +Ernest +Henry +Jerry +Seth +Troy +Bradley +Darren +Derek +Harry +Jack +Joel +Lance +Micheal +Nicholas +Randy +Terry +Victor +Alan +Alexander +Billy +Brent +Clifford +Corey +Dennis +Dustin +Eugene +Franklin +Frederick +Jeffery +Kyle +Mathew +Philip +Randall +Ross +Vernon +Warren +Allen +Arthur +Brett +Bruce +Casey +Craig +Damon +Earl +Eli +Fred +Gerald +Glenn +Harold +Ian +Jon +Kristopher +Leon +Louis +Luke +Micah +Mitchell +Norman +Phillip +Ralph +Roger +Shannon +Steve +Wade +Walter +Michael +Jason +Robert +Christopher +David +James +John +Matthew +Brian +William +Daniel +Eric +Jeremy +Joseph +Scott +Aaron +Thomas +Richard +Timothy +Joshua +Shawn +Benjamin +Kevin +Travis +Shane +Anthony +Chad +Jeffrey +Mark +Ryan +Steven +Charles +Gregory +Justin +Andrew +Nathan +Ronald +Sean +Kenneth +Paul +Stephen +George +Russell +Peter +Jonathan +Carl +Jacob +Adam +Edward +Bryan +Donald +Douglas +Gary +Phillip +Brandon +Jack +Seth +Dale +Erik +Frank +Jesse +Patrick +Jon +Kyle +Bradley +Clifford +Dustin +Eugene +Gerald +Ian +Jamie +Jared +Jeremiah +Raymond +Samuel +Troy +Christian +Darren +Henry +Jay +Lance +Martin +Roy +Todd +Walter +Zachary +Adrian +Arthur +Chris +Corey +Gabriel +Kristopher +Nicholas +Steve +Terry +Tony +Bruce +Caleb +Clinton +Jeffery +Jimmy +Micah +Roger +Vincent +Wade +Bobby +Calvin +Casey +Ernest +Frederick +Heath +Jose +Karl +Kelly +Lee +Randy +Shannon +Tyler +Wayne +Alan +Alexander +Alfred +Ben +Clayton +Darrell +Dennis +Duane +Edwin +Evan +Glenn +Harold +Isaac +Joel +Kris +Larry +Lawrence +Lloyd +Marc +Micheal +Norman +Oliver +Philip +Ralph +Theodore +Jason +Michael +Christopher +David +James +John +Brian +Daniel +Robert +Matthew +Joseph +Joshua +Jeremy +Ryan +William +Eric +Richard +Kevin +Andrew +Nathan +Scott +Aaron +Travis +Anthony +Mark +Patrick +Sean +Thomas +Adam +Shawn +Timothy +Jacob +Jesse +Steven +Jeffrey +Jonathan +Shane +Benjamin +Chad +Justin +Paul +Charles +Gregory +Kenneth +Dennis +Jeremiah +Peter +Edward +Zachary +Keith +Nicholas +Alexander +Brandon +Joel +Stephen +Brent +Bryan +Donald +Douglas +Erik +Frank +Jay +Nathaniel +Samuel +Craig +Derek +George +Ian +Jack +Seth +Curtis +Frederick +Jamie +Jared +Lawrence +Randy +Raymond +Todd +Gabriel +Gary +Harold +Theodore +Walter +Jerry +Mathew +Phillip +Ronald +Russell +Troy +Alan +Karl +Kyle +Philip +Roy +Terry +Tommy +Tyler +Wesley +Willie +Clint +Clinton +Dale +Dustin +Gerald +Henry +Mitchell +Trevor +Victor +Alfred +Billy +Brad +Bruce +Casey +Corey +Damon +Glenn +Grant +Kirk +Lee +Luke +Moses +Vernon +Warren +Albert +Arthur +Cameron +Charlie +Colin +Cory +Ernest +Garrett +Jarrod +Jeffery +Jimmy +Lance +Leonard +Lucas +Rodney +Roger +Toby +Jason +Michael +Christopher +David +James +Robert +John +Daniel +Brian +Jeremy +William +Matthew +Joshua +Joseph +Aaron +Ryan +Thomas +Justin +Nathan +Timothy +Andrew +Eric +Mark +Kevin +Paul +Scott +Anthony +Benjamin +Jeffrey +Jesse +Sean +Travis +Jeremiah +Jonathan +Richard +Steven +Charles +Kenneth +Shawn +Patrick +Adam +Chad +Jacob +Shane +Brandon +Nicholas +Corey +Donald +George +Gregory +Peter +Troy +Douglas +Stephen +Jared +Bryan +Ian +Samuel +Erik +Ronald +Todd +Alexander +Edward +Kristopher +Raymond +Brent +Dale +Gary +Wesley +Clinton +Cory +Dennis +Frank +Nathaniel +Philip +Gabriel +Luke +Martin +Zachary +Billy +Casey +Duane +Dustin +Joel +Kyle +Lawrence +Randy +Carl +Craig +Curtis +Jeffery +Keith +Micah +Phillip +Rodney +Seth +Theodore +Walter +Wayne +Arthur +Damon +Darren +Eugene +Fred +Henry +Randall +Shaun +Adrian +Allen +Bradley +Brett +Byron +Calvin +Christian +Earl +Harry +Jamie +Jay +Jon +Larry +Marvin +Neil +Roy +Russell +Wade +Alan +Cameron +Clifford +Dallas +Damien +Dana +Derek +Derrick +Dominic +Floyd +Francis +Frederick +Garrett +Harold +Isaac +Jerry +Jimmie +Leonard +Leroy +Lloyd +Lucas +Melvin +Moses +Sam +Tyler +Michael +Christopher +Jason +David +John +James +Robert +Joshua +Daniel +Joseph +Matthew +Brian +Ryan +Aaron +Eric +Jeremy +Justin +William +Timothy +Benjamin +Andrew +Kevin +Nicholas +Sean +Richard +Nathan +Travis +Mark +Anthony +Charles +Thomas +Jesse +Jonathan +Patrick +Steven +Paul +Adam +Gregory +Kenneth +Jacob +Jeffrey +Peter +Shawn +Brandon +Scott +Jeremiah +Edward +Ronald +Samuel +Chad +Donald +Bryan +Carl +Derek +Jared +Shaun +Stephen +Corey +Dustin +Frank +Phillip +Troy +Darren +George +Kyle +Tyler +Douglas +Raymond +Seth +Billy +Cory +Erik +Joel +Kristopher +Shane +Zachary +Bradley +Derrick +Gary +Ian +Jack +Jerry +Todd +Wesley +Albert +Danny +Gabriel +Harry +Luke +Martin +Walter +Alan +Brent +Casey +Clinton +Jon +Lucas +Mathew +Philip +Russell +Trevor +Vincent +Bruce +Dylan +Ethan +Frederick +Isaac +Lance +Micah +Nathaniel +Nick +Norman +Randy +Roger +Terry +Alexander +Arthur +Cameron +Clifford +Damien +Jeffery +Keith +Leon +Rodney +Rory +Roy +Theodore +Brett +Byron +Caleb +Clint +Dennis +Don +Jay +Jimmy +Johnathan +Leif +Leo +Marcus +Marshall +Marvin +Owen +Warren +Willie +Christopher +Michael +Jason +David +Robert +James +Matthew +Joshua +Daniel +John +Ryan +Brian +Joseph +Justin +William +Jeremy +Nicholas +Kevin +Aaron +Richard +Timothy +Andrew +Benjamin +Thomas +Paul +Travis +Eric +Jeffrey +Jonathan +Mark +Jeremiah +Adam +Anthony +Scott +Nathan +Steven +Brandon +Charles +Jacob +Patrick +Sean +Jesse +Jared +Shawn +Kenneth +Peter +Bryan +Zachary +Chad +Dustin +Gregory +Kyle +Shane +Gabriel +George +Erik +Samuel +Ian +Phillip +Stephen +Donald +Gary +Brent +Edward +Casey +Jon +Ronald +Derek +Douglas +Harry +Isaac +Roy +Bradley +Carl +Corey +Joel +Kristopher +Shaun +Tyler +Clinton +Curtis +Garrett +Jack +Keith +Lucas +Luke +Marcus +Mathew +Raymond +Todd +Cory +Darren +Dennis +Frank +Lee +Micheal +Nathaniel +Trevor +Troy +Walter +Arthur +Brett +Colin +Forrest +Henry +Randall +Theodore +Wesley +Caleb +Jessie +Johnny +Karl +Kelly +Leonard +Levi +Randy +Reuben +Terry +Vincent +Alan +Bobby +Clifford +Cody +Craig +Frederick +Grant +Harold +Jay +Russell +Shannon +Tony +Adrian +Alexander +Allan +Austin +Bernard +Billy +Bruce +Cameron +Chris +Christian +Danny +Darrell +Elijah +Erick +Fred +Gerald +Glen +Jeffery +Jimmy +Joe +Lars +Loren +Louis +Miles +Nicolas +Noah +Owen +Philip +Ricky +Rodney +Stanley +Victor +Warren +Michael +Christopher +James +Joshua +John +Robert +David +Matthew +Jason +Justin +Ryan +William +Joseph +Daniel +Brian +Aaron +Eric +Benjamin +Jeremy +Nicholas +Thomas +Charles +Travis +Jesse +Timothy +Andrew +Paul +Adam +Jacob +Jonathan +Stephen +Patrick +Nathan +Scott +Sean +Anthony +Richard +Brandon +Jeffrey +Peter +Chad +Derek +Jeremiah +Kevin +Steven +Jared +Kyle +Mark +Shane +Bryan +Samuel +Ian +Kenneth +Dustin +George +Luke +Casey +Gregory +Keith +Zachary +Donald +Russell +Lucas +Shawn +Douglas +Edward +Erik +Gabriel +Isaac +Joel +Phillip +Allen +Seth +Shaun +Carl +Curtis +Jeffery +Larry +Philip +Raymond +Ronald +Trevor +Dennis +Frank +Gary +Walter +Brent +Cody +Jack +Caleb +Clinton +Colin +Craig +Karl +Kristopher +Lee +Levi +Nathaniel +Neil +Roger +Tyler +Vernon +Vincent +Alexander +Billy +Bradley +Jerry +Norman +Todd +Wesley +Adrian +Alan +Charlie +Dale +Evan +Johnny +Leonard +Marcus +Roy +Theodore +Troy +Cameron +Clayton +Clifford +Corey +Cory +Darren +Dean +Elijah +Harry +Jamie +Jonathon +Loren +Martin +Micah +Noah +Randy +Rodney +Tyson +Wayne +Abraham +Albert +Arthur +Bobby +Brad +Christian +Darrell +Derrick +Dominic +Duane +Dwayne +Edwin +Erich +Ethan +Eugene +Garrett +Gordon +Howard +Jay +Johnathan +Jon +Kurt +Lawrence +Micheal +Morgan +Nick +Oscar +Owen +Randall +Terry +Wade +Michael +Christopher +David +Joshua +Matthew +James +Robert +Daniel +John +Ryan +Jason +Brian +Justin +Joseph +Nicholas +Aaron +William +Jonathan +Jeremy +Timothy +Brandon +Eric +Jesse +Adam +Jeffrey +Benjamin +Thomas +Andrew +Travis +Charles +Jacob +Patrick +Richard +Anthony +Shawn +Dustin +Peter +Scott +Zachary +Steven +Sean +Nathan +Paul +Kyle +Mark +Kenneth +Donald +Kevin +George +Samuel +Jared +Jeremiah +Raymond +Edward +Luke +Seth +Shane +Bryan +Russell +Stephen +Bradley +Douglas +Joel +Alexander +Erik +Gary +Derek +Gabriel +Gregory +Jordan +Levi +Phillip +Tyler +Ian +Jack +Keith +Nathaniel +Trevor +Wesley +Chad +Craig +Carl +Casey +Cody +Curtis +Garrett +Jon +Neil +Brett +Corey +Frank +Randall +Ronald +Shaun +Wayne +Dale +Dennis +Harold +Isaac +Jay +Jeffery +Jerry +Marcus +Morgan +Alan +Cameron +Christian +Darren +Evan +Henry +Jamie +Kelly +Larry +Lee +Philip +Randy +Todd +Victor +Adrian +Albert +Allen +Brent +Caleb +Clinton +Cory +Dominic +Glenn +Karl +Kristopher +Leonard +Lucas +Micah +Ralph +Roger +Roy +Tristan +Alex +Billy +Bobby +Colin +Gerald +Logan +Mario +Micheal +Noah +Norman +Rodney +Terry +Walter +Andre +Beau +Ben +Brady +Branden +Bruce +Charlie +Clayton +Clifford +Cole +Darrell +Davin +Eli +Eugene +Glen +Jake +Jerome +Jonathon +Lance +Landon +Louis +Martin +Mathew +Nicolas +Reginald +Sam +Simon +Spencer +Stephan +Theodore +Troy +Zachariah +Michael +Christopher +Daniel +David +Joshua +Matthew +John +James +Jason +Robert +Justin +Ryan +Joseph +William +Brian +Brandon +Andrew +Jacob +Benjamin +Adam +Jeremy +Aaron +Travis +Nicholas +Timothy +Jonathan +Anthony +Charles +Thomas +Kevin +Nathan +Derek +Richard +Jeffrey +Jesse +Eric +Patrick +Scott +Steven +Paul +Sean +Mark +Zachary +Dustin +Kenneth +Chad +Kyle +Shawn +Donald +Gregory +Jeremiah +George +Jared +Edward +Peter +Ian +Tyler +Douglas +Bryan +Samuel +Luke +Seth +Stephen +Wesley +Erik +Keith +Joel +Nathaniel +Troy +Alexander +Brett +Noah +Raymond +Carl +Casey +Cory +Gabriel +Lucas +Martin +Walter +Clayton +Clinton +Curtis +Dennis +Evan +Jordan +Marcus +Micah +Trevor +Billy +Colin +Ronald +Shane +Victor +Allen +Blake +Bradley +Caleb +Corey +Jack +Larry +Lee +Levi +Randy +Shaun +Terry +Todd +Brent +Cody +Frank +Garrett +Gary +Harold +Henry +Isaac +Jamie +Philip +Phillip +Rodney +Taylor +Adrian +Alex +Cameron +Craig +Frederick +Jerry +Mathew +Morgan +Ralph +Roger +Roy +Theodore +Tony +Wayne +Arthur +Bobby +Darren +Jeffery +Johnathan +Jon +Kelly +Kristopher +Marvin +Norman +Stanley +Tyson +Vincent +Zachariah +Allan +Byron +Chase +Collin +Derrick +Dominic +Ethan +Harry +Hunter +Jake +Lance +Lawrence +Leonard +Marc +Robin +Russell +Tommy +Abraham +Alan +Albert +Alec +Andy +Austin +Barry +Brendan +Christian +Cole +Dale +Dana +Darryl +Drew +Dylan +Geoffrey +Gerald +Isaiah +Jimmy +Jose +Karl +Kurt +Leo +Louis +Micheal +Nicolas +Ray +Ross +Wade +Christopher +Michael +Joshua +Matthew +David +Ryan +John +Robert +Daniel +William +Joseph +James +Jason +Brandon +Andrew +Justin +Adam +Thomas +Kyle +Brian +Nicholas +Jacob +Jesse +Timothy +Aaron +Steven +Benjamin +Jonathan +Eric +Travis +Anthony +Richard +Zachary +Charles +Jeffrey +Kevin +Dustin +Nathan +Sean +Jeremy +Paul +Patrick +Scott +Samuel +Mark +Stephen +Derek +Kenneth +Jared +Tyler +Gregory +Ian +Peter +Bryan +Chad +George +Shawn +Shane +Alexander +Donald +Raymond +Evan +Jeremiah +Edward +Keith +Luke +Allen +Bradley +Cody +Curtis +Douglas +Jeffery +Joel +Marcus +Nathaniel +Russell +Carl +Erik +Gary +Jordan +Lance +Noah +Theodore +Jonathon +Kristopher +Alan +Brett +Corey +Grant +Isaac +Jon +Larry +Phillip +Ronald +Seth +Tristan +Troy +Cory +Levi +Micah +Trevor +Victor +Blake +Casey +Craig +Dennis +Devin +Joe +Randy +Vincent +Wayne +Wesley +Arthur +Brent +Byron +Clayton +Darren +Jack +Logan +Lucas +Mitchell +Norman +Philip +Shaun +Todd +Warren +Austin +Billy +Brendan +Christian +Clinton +Ernest +Geoffrey +Harold +Ivan +Johnathan +Karl +Lawrence +Marshall +Owen +Roger +Tony +Alex +Alfred +Calvin +Cameron +Dane +Dylan +Frank +Gabriel +Gerald +Glen +Jake +Jamie +Kelly +Lloyd +Mathew +Micheal +Morgan +Randall +Ross +Terry +Adrian +Arnold +Brad +Cole +Collin +Dale +Elijah +Forrest +Garret +Glenn +Henry +Isaiah +Jay +Jerry +Jonas +Juan +Kent +Kristofer +Louis +Martin +Max +Neil +Nicholai +Nicolas +Spencer +Stephan +Toby +Tommy +Ty +Walter +Christopher +Michael +Matthew +Joshua +David +Daniel +Robert +Ryan +John +James +Brandon +Joseph +Justin +Jason +Benjamin +Steven +William +Brian +Andrew +Nicholas +Jacob +Aaron +Jonathan +Thomas +Dustin +Adam +Kyle +Richard +Jeremy +Eric +Patrick +Zachary +Nathan +Travis +Kevin +Timothy +Cody +Jesse +Jeffrey +Charles +Anthony +Paul +Tyler +Ian +Kenneth +Samuel +Sean +Bryan +Peter +Scott +Gregory +Jared +Mark +Stephen +Casey +Alexander +Chad +Shawn +Edward +Shane +Troy +Corey +Craig +Derek +Jeremiah +Russell +Douglas +Erik +Raymond +Brett +Luke +Seth +Cory +Gabriel +Joel +Ronald +Trevor +Bradley +Colin +Frank +Nathaniel +Phillip +Curtis +Alan +Dennis +Donald +Gary +Jack +Walter +Clinton +George +Jordan +Logan +Victor +Abraham +Austin +Carl +Evan +Jake +Keith +Kristopher +Lucas +Philip +Alex +Arthur +Cameron +Derrick +Levi +Randy +Allen +Blake +Brent +Christian +Darren +Hans +Isaac +Jeffery +Leonard +Todd +Tristan +Vincent +Wesley +Calvin +Devin +Dylan +Ivan +Jamie +Karl +Kelly +Larry +Marcus +Martin +Mathew +Micheal +Bruce +Byron +Caleb +Carlos +Clayton +Cole +Dale +Darrell +Grant +Johnathan +Jon +Lance +Nick +Roland +Sam +Simon +Taylor +Tyson +Warren +Albert +Andre +Bobby +Chance +Eli +Erick +Geoffrey +Jay +Jonathon +Lawrence +Loren +Louis +Mitchell +Neal +Noah +Nolan +Rodney +Roy +Shaun +Tommy +Brenton +Clifford +Edwin +Ernest +Ethan +Everett +Gavin +Gerald +Henry +Hunter +Jerome +Joe +Kirk +Marshall +Max +Morgan +Owen +Ricky +Ross +Spencer +Tony +Wade +Willis +Michael +Christopher +Joshua +Matthew +Daniel +Ryan +David +John +James +Robert +Andrew +Jason +Joseph +Brandon +Kyle +William +Justin +Brian +Steven +Nicholas +Jacob +Aaron +Zachary +Thomas +Anthony +Benjamin +Richard +Travis +Eric +Jesse +Sean +Jonathan +Adam +Tyler +Nathan +Timothy +Paul +Dustin +Alexander +Jeremy +Kevin +Charles +Jeffrey +Patrick +Cody +Peter +Stephen +Samuel +Scott +Gregory +Chad +Derek +Bradley +Shane +Jared +Kenneth +Shawn +Mark +Nathaniel +Bryan +Jeremiah +Jordan +Garrett +Ian +Caleb +Carl +Edward +Marcus +Trevor +Cory +Cameron +Keith +Billy +Devin +Erik +Casey +Dylan +Gabriel +Joel +Phillip +Brett +Corey +Seth +Wesley +Austin +Craig +Donald +Douglas +George +Levi +Louis +Luke +Mathew +Vincent +Allen +Brent +Jake +Norman +Randy +Raymond +Arthur +Dennis +Frank +Gary +Jack +Ronald +Russell +Theodore +Abraham +Darren +Derrick +Frederick +Grant +Isaac +Kristopher +Micheal +Roy +Tristan +Chase +Christian +Clinton +Curtis +Gavin +Gordon +Henry +Lance +Lucas +Micah +Shaun +Clayton +Devon +Jon +Lawrence +Philip +Spencer +Victor +Walter +Adrian +Carlos +Dale +Drew +Evan +Forrest +Gerald +Karl +Keegan +Kirk +Logan +Morgan +Neil +Noah +Owen +Ross +Todd +Alex +Beau +Dane +Danny +Geoffrey +Glenn +Ivan +Jay +Jessie +Johnathan +Jonathon +Kelly +Larry +Leonard +Marshall +Stanley +Troy +Tyrone +Arnold +Brendan +Brenton +Charlie +Clifford +Cyrus +Dean +Donovan +Erick +Franklin +Graham +Harry +Johnny +Kory +Leon +Martin +Mitchell +Preston +Randall +Simeon +Stephan +Taylor +Terrence +Tony +Wayne +Michael +Christopher +Matthew +Joshua +Ryan +David +Robert +James +Daniel +William +John +Andrew +Nicholas +Justin +Brian +Joseph +Brandon +Kyle +Jesse +Jason +Benjamin +Aaron +Timothy +Anthony +Jonathan +Tyler +Eric +Thomas +Jacob +Richard +Sean +Alexander +Steven +Kevin +Zachary +Samuel +Jeremy +Patrick +Dustin +Nathan +Travis +Cody +Jeffrey +Paul +Scott +Jordan +Kenneth +Adam +Mark +Shane +Stephen +Charles +Derek +Peter +Gregory +Shawn +Casey +Jared +Chad +Alex +Garrett +Luke +Bryan +Donald +Edward +George +Cory +Ian +Brett +Corey +Frank +Nathaniel +Curtis +Erik +Joel +Phillip +Ronald +Cameron +Douglas +Kristopher +Theodore +Dennis +Keith +Seth +Carl +Lucas +Bradley +Clayton +Craig +Gary +Jeremiah +Jerry +Raymond +Taylor +Trevor +Troy +Marcus +Dylan +Gabriel +Noah +Russell +Shaun +Adrian +Brent +Caleb +Jeffery +Johnathan +Max +Philip +Spencer +Gerald +Lawrence +Lee +Randy +Victor +Wesley +Alan +Billy +Chase +Drew +Jake +Julian +Lance +Micah +Vincent +Zachariah +Albert +Austin +Blake +Bryce +Darren +Derrick +Evan +Jay +Jessie +Jonathon +Logan +Louis +Preston +Ross +Roy +Skyler +Antonio +Beau +Brendan +Byron +Clinton +Cole +Colin +Dale +Dane +Forrest +Geoffrey +Isaac +Jack +Jamie +Lloyd +Martin +Mathew +Morgan +Nickolas +Walter +Andre +Arthur +Branden +Christian +Dean +Devin +Devon +Eli +Eugene +Francis +Franklin +Frederick +Fredrick +Gordon +Ivan +Jon +Juan +Kelly +Levi +Mitchell +Randall +Rocky +Rory +Todd +Tony +Willie +Christopher +Michael +Matthew +Ryan +Joshua +Robert +Justin +David +James +Andrew +Daniel +Kyle +Brandon +Joseph +John +William +Nicholas +Aaron +Benjamin +Thomas +Eric +Jacob +Steven +Jonathan +Sean +Kevin +Travis +Brian +Zachary +Jason +Timothy +Anthony +Jeremy +Adam +Paul +Charles +Richard +Scott +Tyler +Patrick +Samuel +Cody +Jesse +Derek +Kenneth +Jordan +Nathan +Bryan +Peter +Alexander +Gregory +Mark +Raymond +Jared +Jeffrey +Bradley +Erik +Stephen +Edward +Alex +Cameron +Dustin +Joel +Corey +Ian +Logan +Donald +Dylan +George +Levi +Luke +Caleb +Curtis +Douglas +Shane +Trevor +Austin +Brett +Cory +Devin +Garrett +Jeremiah +Lucas +Shawn +Carl +Frank +Seth +Casey +Isaac +Jeffery +Russell +Darren +Dennis +Jon +Theodore +Arthur +Clayton +Colin +Evan +Henry +Marcus +Max +Nathaniel +Neil +Ronald +Taylor +Wesley +Wyatt +Bruce +Byron +Calvin +Chad +Jake +Johnathan +Lance +Lawrence +Martin +Allen +Chase +Clinton +Gabriel +Gary +Lee +Mitchell +Troy +Vincent +Wade +Wayne +Bryant +Bryce +Craig +Drew +Gerald +Glen +Grant +Jimmy +Jonathon +Kristopher +Leonard +Morgan +Philip +Phillip +Spencer +Tyson +Adrian +Alan +Albert +Billy +Dale +Elijah +Eugene +Harold +Hunter +Jack +Jose +Josiah +Keith +Louis +Mathew +Micah +Nickolas +Randall +Randy +Rick +Roy +Tristan +Antonio +Blake +Brady +Brendan +Collin +Derrick +Dwayne +Edwin +Ernest +Forrest +Gavin +Geoffrey +Glenn +Isaiah +Jerry +Juan +Kelly +Larry +Marshall +Noah +Nolan +Preston +Rodney +Roger +Terrance +Walter +Warren +Zachariah +Michael +Christopher +Joshua +James +David +Matthew +Joseph +Andrew +Kyle +Justin +Robert +Daniel +John +William +Ryan +Thomas +Nicholas +Benjamin +Brandon +Eric +Jason +Kevin +Jacob +Steven +Zachary +Brian +Charles +Aaron +Tyler +Alexander +Anthony +Jonathan +Sean +Timothy +Jesse +Adam +Jeremy +Nathan +Richard +Derek +Samuel +Cody +Patrick +Stephen +Jordan +Kenneth +Travis +Jeffrey +Bryan +Dustin +Mark +Paul +Scott +Ian +Peter +Shawn +Cory +Edward +Gregory +Shane +Corey +Jared +Nathaniel +Trevor +Luke +Casey +Garrett +George +Austin +Carl +Donald +Douglas +Dylan +Logan +Jonathon +Levi +Raymond +Bradley +Brett +Isaac +Joel +Lucas +Alex +Evan +Russell +Chad +Johnathan +Ronald +Seth +Wesley +Cameron +Curtis +Devin +Erik +Frederick +Keith +Alan +Jack +Jake +Kristopher +Marcus +Phillip +Spencer +Adrian +Allen +Arnold +Christian +Craig +Gabriel +Jerry +Taylor +Theodore +Vincent +Charlie +Chase +Clayton +Frank +Franklin +Gerald +Jeremiah +Martin +Mathew +Max +Mitchell +Randall +Ross +Stanley +Troy +Walter +Arthur +Billy +Bobby +Caleb +Calvin +Colin +Darren +Darryl +Dean +Dennis +Gary +Henry +Jeffery +Kirk +Lawrence +Lee +Micah +Noah +Nolan +Norman +Roy +Todd +Trenton +Willie +Brent +Bryce +Dillon +Gilbert +Grant +Karl +Landon +Larry +Louis +Marvin +Robin +Wyatt +Xavier +Zachariah +Albert +Baby +Byron +Clinton +Connor +Damon +Eli +Ezra +Francis +Harold +Harry +Hunter +Johnny +Josiah +Julian +Kurtis +Lance +Maxwell +Micheal +Morgan +Randy +Terrance +Terry +Michael +Christopher +Joshua +Matthew +David +James +John +Andrew +Daniel +Robert +William +Ryan +Joseph +Nicholas +Zachary +Kyle +Thomas +Anthony +Steven +Justin +Aaron +Jonathan +Kevin +Alexander +Benjamin +Travis +Brandon +Jacob +Brian +Eric +Adam +Richard +Derek +Patrick +Tyler +Cody +Jordan +Jeremy +Samuel +Timothy +Jesse +Nathan +Charles +Ian +Sean +Stephen +Jason +Paul +Peter +Jeffrey +Scott +Dustin +Jared +Caleb +Logan +Alex +Bryan +Cameron +Corey +Levi +Bradley +Casey +Chad +Cory +Garrett +Gregory +Kenneth +Shawn +Edward +George +Austin +Trevor +Mark +Phillip +Seth +Craig +Erik +Ethan +Joel +Raymond +Taylor +Bryce +Colin +Curtis +Luke +Shane +Chase +Donald +Marcus +Nathaniel +Brett +Darren +Douglas +Dylan +Lucas +Spencer +Alan +Albert +Dennis +Isaac +Jay +Jeremiah +Keith +Martin +Ronald +Carl +Clayton +Devin +Henry +Jonathon +Mitchell +Wayne +Wesley +Brent +Calvin +Gabriel +Mathew +Philip +Russell +Vincent +Adrian +Arthur +Clinton +Derrick +Dillon +Isaiah +Jack +Mason +Wade +Zachery +Allen +Christian +Gary +Harold +Hunter +Johnathan +Jose +Kelly +Lance +Marvin +Max +Micheal +Miles +Randy +Ross +Terry +Theodore +Walter +Zackery +Allan +Blake +Bruce +Carlos +Cole +Daryl +Evan +Gavin +Geoffrey +Gerald +Herbert +Jeffery +Jerry +Julian +Kristopher +Larry +Micah +Randall +Rodney +Wyatt +Alfred +Arnold +Ben +Byron +Charlie +Clifford +Colton +Darrell +Duane +Edmond +Forrest +Frank +Frederick +Galen +Glenn +Grant +Harry +Jaron +Karl +Noah +Ralph +Ricky +Shaun +Stephan +Sterling +Terrence +Todd +Tony +Vernon +Victor +Willie +Xavier +Michael +Christopher +Joshua +Matthew +David +Andrew +James +Jacob +Daniel +Ryan +Nicholas +Kyle +William +Robert +Joseph +Justin +John +Aaron +Anthony +Tyler +Jesse +Travis +Kevin +Brandon +Alexander +Samuel +Jonathan +Thomas +Zachary +Eric +Timothy +Brian +Steven +Benjamin +Richard +Cody +Jordan +Patrick +Charles +Derek +Jeremy +Stephen +Kenneth +Paul +Adam +Nathan +Trevor +Jeffrey +Scott +Logan +Sean +Cameron +Ian +Seth +Ethan +Mark +Taylor +Christian +Jason +Peter +Shane +Casey +Caleb +Chad +Dustin +Dylan +Erik +Austin +Cory +Gregory +Levi +Alex +Evan +Mitchell +Nathaniel +Phillip +Bradley +Corey +Edward +Garrett +Jared +Wesley +Bryce +Carl +Gabriel +Douglas +George +Raymond +Ross +Vincent +Bryan +Curtis +Dennis +Jeremiah +Adrian +Donald +Jake +Keith +Marcus +Spencer +Tanner +Wayne +Cole +Colton +Connor +Dalton +Devin +Lance +Lawrence +Lucas +Max +Randall +Allen +Blake +Chase +Gary +Henry +Isaac +Kristopher +Luke +Mathew +Russell +Shawn +Billy +Brendan +Darren +Forrest +Johnathan +Philip +Amos +Bryant +Dean +Elias +Gerald +Jack +Kurt +Larry +Maxwell +Miles +Norman +Quinton +Terry +Victor +Willie +Alan +Andre +Arnold +Arthur +Brett +Clifford +Colin +Colten +Craig +Eugene +Garret +Gavin +Harry +Howard +Isaiah +Jerry +Jon +Karl +Kelly +Leo +Louis +Marc +Mario +Morgan +Randy +Riley +Todd +Trent +Trenton +Walter +Beau +Carlos +Clayton +Colby +Collin +Dillon +Donovan +Ernest +Geoffrey +Hunter +Jay +Kristofer +Nicolas +Nolan +Reuben +Sebastian +Stephan +Michael +Christopher +James +Joshua +Matthew +John +Daniel +David +Ryan +Kyle +Jacob +Robert +William +Brandon +Tyler +Andrew +Joseph +Cody +Justin +Aaron +Timothy +Benjamin +Jordan +Thomas +Eric +Zachary +Alexander +Kevin +Nicholas +Patrick +Sean +Brian +Anthony +Steven +Travis +Dylan +Jonathan +Richard +Taylor +Nathan +Samuel +Charles +Jeremy +Logan +Paul +Cameron +Gregory +Jesse +Adam +Kenneth +Nathaniel +Derek +Ethan +Garrett +Mark +Dustin +Jason +Jeffrey +Stephen +Austin +Bryan +Corey +Dalton +Keith +Caleb +Ian +Shawn +Christian +Jeremiah +Scott +Trevor +Evan +Jared +Peter +Casey +Chad +Cory +Raymond +Alex +Gabriel +Dillon +Erik +Shane +Donald +Luke +Bradley +Dakota +Devon +Jack +Kody +Levi +Marcus +Seth +Albert +Blake +Chase +Connor +George +Isaac +Jonathon +Phillip +Ronald +Colton +Devin +Donovan +Douglas +Frank +Jerry +Vincent +Zachariah +Bryce +Curtis +Edward +Grant +Hayden +Hunter +Mitchell +Philip +Skyler +Wesley +Adrian +Alec +Colin +Craig +Forrest +Gordon +Henry +Joel +Jon +Kaleb +Karl +Kristopher +Miles +Randy +Troy +Willie +Alan +Brendan +Brent +Byron +Calvin +Cole +Darren +Jake +Julian +Larry +Lawrence +Lucas +Mason +Max +Nolan +Shaun +Spencer +Tanner +Warren +Allen +Arthur +Billy +Branden +Brett +Carl +Dean +Derrick +Dominic +Eli +Franklin +Gage +Gavin +Jamie +Johnathan +Kelly +Marc +Maxwell +Neil +Roy +Tom +Walter +Alfred +Antonio +Arnold +Beau +Brendon +Brennan +Bruce +Colby +Drew +Duane +Geoffrey +Jackson +Jeffery +Jose +Josiah +Keenan +Leo +Leon +Loren +Louis +Martin +Mathew +Maurice +Moses +Noah +Parker +Randall +Riley +Robin +Russell +Sidney +Trenton +Wayne +Zackary +Michael +Christopher +Joshua +Matthew +Tyler +Daniel +Jacob +James +Andrew +Robert +John +Kyle +David +Joseph +Zachary +Justin +Alexander +William +Nicholas +Ryan +Brandon +Cody +Benjamin +Anthony +Dylan +Thomas +Timothy +Jesse +Jonathan +Kevin +Steven +Nathan +Sean +Aaron +Eric +Jordan +Samuel +Taylor +Patrick +Kenneth +Brian +Jason +Richard +Cameron +Austin +Charles +Jared +Scott +Christian +Stephen +Trevor +Adam +Derek +Caleb +Connor +Jeremy +Corey +Garrett +Logan +Luke +Travis +Ethan +Jeffrey +Gregory +Paul +Shawn +Nathaniel +Peter +Alex +Evan +Mark +Tanner +Dakota +Devin +Isaac +Shane +Blake +Dustin +Ian +Seth +Brett +Edward +Keith +Spencer +Casey +Chase +Cole +Curtis +Dillon +Adrian +Bradley +Carl +Cory +Forrest +George +Joel +Kristopher +Bryan +Chad +Colton +Donald +Jeremiah +Johnathan +Marcus +Bryce +Dennis +Gabriel +Gary +Lucas +Noah +Phillip +Troy +Vincent +Devon +Erik +Lance +Levi +Raymond +Walter +Wesley +Wyatt +Zackery +Allen +Dalton +Douglas +Frank +Gordon +Harry +Jack +Johnny +Lawrence +Morgan +Riley +Ross +Brent +Clinton +Colin +Donovan +Grant +Hunter +Jake +Keenan +Max +Nickolas +Randall +Ronald +Russell +Wayne +Zachariah +Andre +Carlos +Craig +Darren +Devante +Dominic +Gavin +Jonathon +Larry +Lee +Leonard +Marshall +Parker +Zachery +Alan +Allan +Blaine +Brady +Clayton +Collin +Damian +Damien +Darius +Darrell +Drake +Dwayne +Dylon +Elijah +Francis +Glenn +Isaiah +Jakob +Joe +Keegan +Mackenzie +Mathew +Maxwell +Mitchell +Randy +Skyler +Theodore +Todd +Trever +Victor +Wade +Warren +Weston +Wilson +Michael +Tyler +Joshua +Jacob +Matthew +David +James +Christopher +John +Ryan +William +Daniel +Brandon +Zachary +Alexander +Andrew +Robert +Cody +Joseph +Kyle +Nicholas +Jordan +Jonathan +Anthony +Benjamin +Kevin +Aaron +Thomas +Justin +Sean +Steven +Austin +Christian +Nathan +Patrick +Timothy +Jesse +Dylan +Samuel +Taylor +Connor +Adam +Jared +Logan +Cameron +Richard +Stephen +Trevor +Jason +Jeffrey +Brian +Eric +Garrett +Ian +Kenneth +Travis +Shawn +Derek +Jeremy +Mark +Charles +Cory +Dakota +Luke +Seth +Bryan +Chad +Paul +Wesley +Alex +Cole +Corey +Dillon +Edward +Gabriel +George +Isaac +Jake +Nathaniel +Raymond +Jeremiah +Mitchell +Shane +Caleb +Curtis +Dustin +Evan +Hunter +Tanner +Casey +Colton +Dalton +Devin +Ethan +Jack +Keith +Spencer +Erik +Peter +Scott +Zachery +Alan +Bradley +Carl +Devon +Donald +Douglas +Elijah +Forrest +Henry +Ronald +Russell +Walter +Adrian +Conner +Craig +Dallas +Kody +Larry +Marcus +Mason +Nicolas +Nolan +Theodore +Blake +Brendan +Clayton +Grant +Joel +Levi +Martin +Max +Micah +Quinn +Vincent +Andre +Arthur +Brent +Bryce +Colin +Demetrius +Dominic +Donovan +Gregory +Jerry +Jonathon +Lucas +Phillip +Riley +Tristan +Troy +Xavier +Zachariah +Zane +Alec +Antonio +Chase +Drew +Francis +Gerald +Harry +Jeffery +Johnathan +Nickolas +Roy +Skyler +Todd +Trenton +Wade +Zackery +Albert +Alfred +Allen +Brett +Byron +Calvin +Darrell +Darren +Dominique +Edwin +Elliot +Elliott +Frank +Gage +Harold +Jose +Julian +Karl +Kristopher +Mathew +Maxwell +Miles +Parker +Randy +Sheldon +Victor +Warren +Willie +Zackary +Michael +Jacob +Tyler +Christopher +Daniel +Matthew +James +Joshua +Brandon +John +Joseph +Nicholas +David +Zachary +Kyle +Ryan +Robert +Alexander +Cody +Justin +Austin +Andrew +Anthony +William +Benjamin +Kevin +Thomas +Dylan +Samuel +Sean +Patrick +Jonathan +Nathan +Christian +Aaron +Jordan +Steven +Brian +Trevor +Adam +Jesse +Connor +Taylor +Gabriel +Travis +Jared +Caleb +Eric +Kenneth +Charles +Hunter +Timothy +Alex +Logan +Dalton +Erik +Ian +Isaac +Jack +Scott +Devin +Garrett +Nathaniel +Richard +Stephen +Dakota +Mark +Cameron +Derek +Ethan +Jeremiah +Jeremy +Seth +Blake +Carl +Cole +Douglas +Dustin +Gregory +Luke +Shane +Alec +Bradley +Evan +Jason +Levi +Chase +Colton +Curtis +Donald +Edward +Mason +Shawn +Bryan +Cory +Elijah +Forrest +Joel +Troy +Corey +Johnathan +Tanner +Brett +Chad +Colin +Dillon +Donovan +Gavin +George +Grant +Jeffrey +Kody +Mitchell +Paul +Peter +Skyler +Vincent +Allen +Andre +Bryce +Carson +Chance +Clayton +Dawson +Dominic +Henry +Lawrence +Noah +Spencer +Brendan +Devan +Frederick +Hayden +Johnny +Lucas +Mathew +Nolan +Raymond +Wesley +Alan +Avery +Calvin +Casey +Drew +Gerald +Jackson +Jake +Jalen +Jamie +Jeffery +Julian +Keith +Marshall +Martin +Maxwell +Morgan +Quinn +Riley +Sheldon +Sterling +Stuart +Trenton +Wyatt +Adrian +Antonio +Billy +Brady +Collin +Damian +Damon +Darren +Darryl +Deandre +Everett +Frank +Harley +Harold +Harrison +Isaiah +Jon +Josiah +Kameron +Karl +Keenan +Kristopher +Lee +Leonard +Liam +Louis +Marcus +Nickolas +Nicolas +Parker +Phillip +Ronald +Simon +Willie +Zachery +Michael +Jacob +Brandon +Tyler +Matthew +Daniel +John +Joshua +Austin +Christopher +James +Ryan +Andrew +Kyle +William +Nicholas +Joseph +Alexander +Justin +Zachary +Robert +Cody +Thomas +Anthony +David +Benjamin +Jonathan +Samuel +Aaron +Dylan +Timothy +Charles +Jordan +Nathan +Steven +Kevin +Christian +Caleb +Jeremiah +Kenneth +Richard +Sean +Wyatt +Connor +Jesse +Dakota +Eric +Jason +Paul +Adam +Brian +Hunter +Seth +Cameron +Colton +Dalton +Ian +Logan +Lucas +Taylor +Trevor +Tristan +Devin +Luke +Travis +Troy +Gabriel +Alex +Blake +Nathaniel +Patrick +Peter +Shane +Bradley +Douglas +Evan +Jared +Jeffrey +Cole +Dustin +Edward +Isaac +Mark +Riley +Spencer +Stephen +Elijah +Ethan +Jack +Jeremy +Carl +Cory +Derek +Garrett +Isaiah +Mitchell +Morgan +Scott +Noah +Tanner +Brett +Chase +Dillon +George +Jake +Joel +Josiah +Marcus +Wesley +Zachery +Corey +Craig +Devon +Dominic +Grant +Jonah +Levi +Shawn +Skyler +Brent +Chance +Clayton +Colin +Curtis +Gage +Hayden +Henry +Mason +Max +Maxwell +Aidan +Allen +Arthur +Bryan +Eli +Elias +Erik +Gregory +Ivan +Johnathan +Keenan +Micah +Nolan +Randy +Theodore +Tristen +Andre +Branden +Brendan +Bryce +Calvin +Collin +Darren +Kaleb +Liam +Nickolas +Orion +Phillip +Raymond +Russell +Sheldon +Walter +Zackary +Zane +Alec +Antonio +Avery +Chad +Chaz +Colby +Conner +Damon +Darius +Dennis +Devan +Dorian +Drake +Frank +Jackson +Jeffery +Jimmy +Jonathon +Karl +Keith +Korey +Lance +Lane +Mathew +Miles +Moses +Oliver +Ronald +Tucker +Vincent +Xavier +Michael +Jacob +John +David +James +Matthew +Christopher +William +Tyler +Daniel +Joshua +Ryan +Zachary +Brandon +Joseph +Robert +Austin +Cody +Kyle +Thomas +Jonathan +Nathan +Andrew +Alexander +Benjamin +Anthony +Nicholas +Samuel +Aaron +Timothy +Hunter +Jesse +Dylan +Jordan +Christian +Justin +Ethan +Logan +Sean +Caleb +Tristan +Kevin +Trevor +Charles +Connor +Garrett +Steven +Brian +Jared +Wyatt +Adam +Dakota +Ian +Travis +Isaiah +Nathaniel +Patrick +Richard +Colton +Devin +Elijah +Jason +Luke +Eric +Gabriel +Isaac +Stephen +Taylor +Bradley +Evan +Jeremy +Scott +Cameron +Chase +Kenneth +Alex +Devon +Dustin +Jeremiah +Joel +Levi +Lucas +Marcus +Mason +Calvin +Cole +Hayden +Henry +Jack +Noah +Blake +Erik +George +Liam +Mark +Riley +Tanner +Chance +Collin +Dalton +Antonio +Brett +Darren +Dennis +Jonah +Paul +Shane +Shawn +Trenton +Allen +Bryce +Dillon +Donald +Douglas +Gage +Jeffrey +Jon +Kaleb +Kody +Kristopher +Mitchell +Nolan +Seth +Spencer +Wesley +Craig +Curtis +Derek +Donovan +Frank +Johnathan +Josiah +Julian +Keith +Mathew +Micah +Nickolas +Parker +Ralph +Raymond +Theodore +Tristen +Victor +Vincent +Walter +Xavier +Aidan +Alec +Brady +Bryan +Carl +Chad +Charlie +Colin +Derrick +Edward +Grant +Gunnar +Jake +Jerry +Jose +Keenan +Lawrence +Mackenzie +Orion +Phillip +Skyler +Troy +Wade +Zachery +Bailey +Brayden +Brendan +Casey +Conner +Cooper +Corey +Cory +Duncan +Gary +Gavin +Gregory +Harley +Harrison +Jaden +Keegan +Kyler +Lee +Lukas +Marshall +Maxwell +Randy +Roy +Tristin +Ty +Tylor +Wayne +Jacob +James +Michael +Joshua +Brandon +Joseph +John +Tyler +Zachary +Christopher +David +Ryan +William +Matthew +Austin +Andrew +Daniel +Samuel +Nicholas +Justin +Alexander +Kyle +Robert +Anthony +Christian +Cody +Jordan +Logan +Dylan +Benjamin +Hunter +Aaron +Jonathan +Elijah +Patrick +Thomas +Tristan +Jason +Caleb +Cole +Isaiah +Trevor +Nathan +Ethan +Jesse +Connor +Steven +Timothy +Charles +Dakota +Gabriel +Jared +Kevin +Richard +Paul +Brian +Eric +Ian +Kenneth +Wyatt +Garrett +Isaac +Jack +Jeremy +Noah +Peter +Edward +Chase +Dustin +Gavin +George +Nathaniel +Raymond +Sean +Adam +Bryce +Devin +Seth +Taylor +Bradley +Colton +Dawson +Mason +Wesley +Calvin +Derek +Evan +Gage +Liam +Preston +Spencer +Tanner +Travis +Alec +Cameron +Dalton +Riley +Shane +Skyler +Stephen +Casey +Chance +Grant +Jeremiah +Alex +Blake +Jeffrey +Jon +Levi +Luke +Mark +Max +Mitchell +Ronald +Shawn +Walter +Brett +Bryan +Dillon +Douglas +Frederick +Henry +Lucas +Marcus +Russell +Antonio +Brady +Dominic +Donovan +Erik +Francis +Frank +Gregory +Jake +Jeffery +Joel +Johnathan +Jose +Keenan +Kyler +Nickolas +Scott +Xavier +Zane +Alonzo +Arthur +Brendan +Carl +Dennis +Donald +Harrison +Josiah +Keegan +Louis +Melvin +Nicolas +Philip +Simon +Tristen +Ty +Vincent +Aidan +Bailey +Chandler +Colin +Conner +Corey +Cory +Curtis +Deshawn +Devon +Dominick +Drew +Ezra +Hayden +Herbert +Jackson +Jerry +Julian +Kristopher +Lawrence +Luis +Morgan +Nick +Owen +Phillip +Quinn +Randall +Tucker +Victor +Warren +Zachery +Michael +Jacob +Joshua +Brandon +David +Joseph +Matthew +Andrew +James +Austin +Daniel +Alexander +Robert +William +Christopher +Tyler +John +Noah +Samuel +Justin +Kyle +Anthony +Hunter +Ryan +Ethan +Logan +Thomas +Christian +Cody +Nicholas +Zachary +Benjamin +Dylan +Tristan +Jonathan +Kevin +Connor +Jared +Cameron +Caleb +Patrick +Aaron +Colton +Nathan +Elijah +Jordan +Jason +Sean +Eric +Ian +Isaac +Travis +Chase +Nathaniel +Timothy +Trevor +Brian +Cole +Jeremiah +Seth +Spencer +Gabriel +Garrett +Adam +Charles +Dakota +Isaiah +Jesse +Shawn +Bradley +Derek +Jack +Jeremy +Mitchell +Dawson +Steven +Mark +Mason +Paul +Peter +Richard +Bryce +Dalton +Devon +Hayden +Wyatt +Alex +Douglas +Kenneth +Lucas +Luke +Shane +Stephen +Alec +Antonio +Brendan +Devin +Evan +Bailey +Gavin +Keegan +Levi +Liam +Riley +Tanner +Adrian +Blake +Chad +Conner +Erik +George +Gregory +Joel +Jonah +Kobe +Max +Phillip +Raymond +Troy +Walter +Zachariah +Alfred +Bryan +Casey +Clayton +Collin +Darren +Drew +Dustin +Gage +Grant +Henry +Johnny +Keith +Nolan +Ronald +Scott +Skyler +Taylor +Trenton +Victor +Vincent +Abraham +Carl +Carlos +Carter +Chance +Corey +Curtis +Dominic +Edward +Harrison +Jake +Karl +Kyler +Marcus +Nicolas +Nikolas +Russell +Tristen +Tucker +Ty +Wesley +Zane +Aidan +Albert +Allen +Braden +Brennan +Byron +Charlie +Colin +Cooper +Damon +Desmond +Donovan +Frank +Harry +Jackson +Jakob +Jayden +Jeffrey +Jesus +Josiah +Justice +Keaton +Kristopher +Larry +Martin +Mathew +Maxwell +Micah +Miles +Morgan +Philip +Quincy +River +Jacob +Joshua +Michael +Tyler +Dylan +Joseph +Matthew +Alexander +Christopher +John +Ryan +David +Andrew +Austin +Daniel +Brandon +William +Anthony +Isaiah +Justin +Kyle +James +Zachary +Hunter +Noah +Robert +Christian +Ethan +Jonathan +Samuel +Benjamin +Cody +Nicholas +Sean +Thomas +Eric +Caleb +Steven +Aaron +Cameron +Nathan +Trevor +Connor +Jared +Isaac +Nathaniel +Seth +Jordan +Tristan +Chase +Jason +Jesse +Luke +Timothy +Charles +Dawson +Kevin +Paul +Jack +Brian +Gabriel +Ian +Richard +Blake +Cole +Colton +Elijah +Logan +Garrett +Wesley +Gavin +Jackson +Levi +Peter +Riley +Bradley +Jeremy +Adam +Bryce +Dakota +Devin +Evan +Patrick +Spencer +Aidan +Edward +Josiah +Mason +Scott +Tanner +Alex +Keegan +Kenneth +Wyatt +Zane +Collin +Derek +Elias +Liam +Mitchell +Preston +Shane +Brendan +Carson +Curtis +Dalton +Dominic +Jake +Jeremiah +Max +Micah +Owen +Skyler +Travis +Tristen +Casey +Conner +Corbin +Hayden +Jaden +Joel +Lucas +Marcus +Mark +Nolan +Quinn +Ronald +Shawn +Stephen +Taylor +Tristin +Xavier +Allen +Antonio +Brady +Bryan +Caden +Calvin +Chad +Chance +Dillon +Donovan +Dustin +Gage +George +Jakob +Jayden +Jonah +Kobe +Randy +Roman +Walter +Zachery +Alec +Arthur +Braden +Brett +Chandler +Corey +Dale +Dennis +Erik +Everett +Gregory +Lars +Mathew +Morgan +Nelson +Orion +Rodney +Trenton +Adrian +Avery +Bailey +Branden +Brennan +Carl +Carter +Colin +Cooper +Damian +Deven +Drake +Eli +Elliot +Frank +Harley +Harry +Jesus +Johnathan +Jonathon +Justice +Kaleb +Kalen +Lawrence +Louis +Maxwell +Miles +Nicolas +Nikolas +Philip +Phillip +Reece +Reed +Simon +Stanley +Theodore +Tucker +Vincent +Michael +Jacob +William +Joshua +James +Andrew +Brandon +Matthew +Zachary +Daniel +Joseph +John +Christopher +David +Tyler +Hunter +Nathan +Austin +Ethan +Christian +Kyle +Alexander +Dylan +Justin +Nicholas +Nathaniel +Robert +Ryan +Samuel +Noah +Elijah +Ian +Isaiah +Benjamin +Thomas +Cameron +Anthony +Gabriel +Jonathan +Caleb +Jordan +Logan +Connor +Isaac +Steven +Aaron +Trevor +Charles +Devin +Kevin +Cody +Jesse +Taylor +Jason +Kenneth +Patrick +Adam +Jaden +Luke +Timothy +Blake +Dawson +Eric +Garrett +Jared +Jeremy +Liam +Seth +Colton +Jack +Paul +Tristan +Wyatt +Bryce +Chase +Cole +Dakota +Gavin +Riley +Sean +Travis +Devon +Julian +Kaleb +Levi +Lucas +Mason +Stephen +Aidan +Colin +Derek +Richard +George +Hayden +Jalen +Jeremiah +Mark +Peter +Antonio +Bryan +Dalton +Frank +Henry +Jackson +Jayden +Joel +Bradley +Brian +Chad +Dominic +Donald +Dustin +Edward +Jake +Skyler +Tanner +Troy +Aiden +Alex +Dillon +Evan +Grant +Josiah +Micah +Ronald +Shane +Tristin +Vincent +Adrian +Avery +Braden +Brendan +Caden +Camden +Carl +Carson +Casey +Jeffrey +Kaden +Kobe +Marcus +Maxwell +Owen +Preston +Xavier +Calvin +Carter +Clayton +Dante +Darian +Darius +Darren +Donovan +Edgar +Eli +Forrest +Gage +Gregory +Kody +Moses +Peyton +Philip +Raymond +Scott +Spencer +Theodore +Trace +Trenton +Walter +Wesley +Alfred +Bailey +Brayden +Brody +Cade +Chance +Collin +Conner +Corbin +Corey +Damian +Damien +Drew +Earl +Elias +Ivan +Jaylen +Jerry +Jonah +Juan +Keith +Kristopher +Lance +Landon +Mitchell +Nicolas +Nolan +Orion +Parker +Sage +Silas +Tristen +Victor +Zane +Michael +Jacob +Tyler +Ethan +Joseph +William +Dylan +David +Joshua +Matthew +James +Daniel +Nicholas +Christopher +Thomas +Alexander +John +Gabriel +Justin +Zachary +Brandon +Logan +Robert +Benjamin +Cameron +Nathaniel +Andrew +Noah +Christian +Connor +Kyle +Ryan +Austin +Caleb +Hunter +Samuel +Aaron +Anthony +Elijah +Jaden +Jonathan +Isaac +Seth +Jackson +Luke +Ian +Kenneth +Tristan +Kevin +Trevor +Isaiah +Jordan +Kaleb +Nathan +Adam +Cody +Blake +Devin +Sean +Charles +Evan +Jason +Jeremiah +Riley +Timothy +Wyatt +Aidan +Alex +Jack +Jared +Jesse +Hayden +Patrick +Travis +Brian +Edward +Levi +Carter +Cole +Gavin +Jeremy +Liam +Richard +Brayden +Chase +Eric +Mason +Owen +Shawn +Tanner +Dakota +Garrett +Henry +Lucas +Mark +Skyler +Spencer +Stephen +Brendan +Bryce +Dustin +Elias +Jayden +Micah +Peter +Ronald +Shane +Steven +Taylor +Trenton +Aiden +Carson +Colton +Conner +Darius +Dawson +Devon +Jon +Josiah +Vincent +Adrian +Bradley +Derek +Dominic +Gage +George +Keegan +Kobe +Kyler +Maximus +Preston +Raymond +Simon +Theodore +Caden +Collin +Damian +Drew +Gregory +Jake +Jalen +Joel +Jonah +Julian +Kaden +Nolan +Paul +Payton +Sebastian +Troy +Xavier +Ashton +Casey +Corbin +Dalton +Damien +Donovan +Eli +Jeffrey +Justice +Leon +Malachi +Malik +Max +Mitchell +Morgan +Quentin +Scott +Tristen +Walter +Alec +Antonio +Arthur +Avery +Blaine +Brady +Brendon +Brett +Bryan +Bryant +Calvin +Carlos +Chance +Colin +Cooper +Curtis +Darian +Dillon +Everett +Hudson +Jay +Jett +Kai +Kameron +Kristian +Mackenzie +Miles +Parker +Ray +Sawyer +Sterling +Talon +Tyson +Wesley +Zion +Jacob +Joshua +Michael +Ethan +Tyler +Joseph +Dylan +James +Matthew +William +Benjamin +Alexander +Andrew +John +Nicholas +Anthony +Hunter +Logan +Ryan +Jonathan +Daniel +Gabriel +Robert +Caleb +Samuel +Zachary +Noah +Austin +David +Isaac +Justin +Christopher +Christian +Mason +Isaiah +Thomas +Elijah +Seth +Brandon +Jordan +Kyle +Nathaniel +Nathan +Gavin +Jaden +Cody +Jack +Luke +Aaron +Jayden +Tristan +Timothy +Trevor +Connor +Kevin +Richard +Aidan +Ian +Jared +Jesse +Josiah +Mark +Eric +Jeremiah +Cameron +Charles +Chase +Devin +Malachi +Patrick +Riley +Sean +Cole +Dawson +Jackson +Kenneth +Liam +Steven +Evan +Hayden +Henry +Jason +Julian +Kaden +Kaleb +Aiden +Elias +Garrett +George +Levi +Lucas +Shawn +Wyatt +Alex +Blake +Carson +Jalen +Payton +Skyler +Brayden +Bryce +Devon +Dominic +Donovan +Nolan +Orion +Paul +Peter +Vincent +Wesley +Adam +Brendan +Brian +Carl +Chance +Clayton +Dalton +Derrick +Dominick +Dustin +Preston +Spencer +Bradley +Caden +Colin +Conner +Jeremy +Justice +Marcus +Micah +Sebastian +Stephen +Travis +Trey +Avery +Brenden +Bryan +Chad +Darren +Edward +Frank +Gage +Ivan +Jonah +Keegan +Lance +Landon +Owen +Raymond +Taylor +Xavier +Adrian +Colton +Corbin +Dennis +Derek +Douglas +Elliot +Gregory +Joel +Kobe +Max +Oscar +Parker +Scott +Simon +Trenton +Tucker +Walter +Zackary +Zane +Arthur +Ashton +Braden +Carter +Collin +Cooper +Curtis +Dakota +Damian +Eli +Emmanuel +Grayson +Griffin +Jeffrey +Kaiden +Keaton +Keith +Lawrence +Louis +Nelson +Quinn +Randy +Shaun +Tristen +Jacob +Joseph +Joshua +James +Ethan +Michael +Daniel +Dylan +Logan +Alexander +Tyler +William +Nicholas +Caleb +John +Benjamin +Matthew +Andrew +David +Ryan +Samuel +Aidan +Christopher +Thomas +Zachary +Gavin +Noah +Connor +Hunter +Elijah +Isaiah +Austin +Brandon +Robert +Aiden +Isaac +Gabriel +Nathaniel +Cody +Jonathan +Anthony +Wyatt +Jordan +Nathan +Cameron +Seth +Timothy +Ian +Jackson +Justin +Owen +Sean +Trevor +Jack +Jayden +Steven +Brayden +Charles +Hayden +Jaden +Jason +Kaden +Kevin +Liam +Luke +Adam +Christian +Evan +Jeremiah +Kyle +Bradley +Dawson +Kenneth +Brian +Caden +Chase +Colton +Devin +Eric +Kaleb +Preston +Tristan +Vincent +Ashton +Lucas +Mark +Riley +Shane +Travis +Blake +Cooper +Dakota +Dominic +Gage +Jake +Landon +Mason +Patrick +Richard +Alex +Bryan +Chance +Derek +Edward +Henry +Keegan +Aaron +Dustin +Garrett +Josiah +Micah +Taylor +Antonio +Ayden +Carter +Cole +Jesse +Marcus +Phillip +Victor +Adrian +Brock +Colin +Dalton +Dennis +Jalen +Jonah +Julian +Landen +Levi +Oliver +Peter +Shawn +Spencer +Tanner +Xander +Braeden +Brenden +Brett +Bryce +Corey +Devon +Dominick +Ezekiel +George +Jadon +Jaxon +Johnny +Kai +Miles +Nolan +Ronald +Sebastian +Trenton +Tyson +Xavier +Andre +Cade +Carlos +Carson +Collin +Conner +Damon +Dante +Eli +Erik +Grant +Harley +Jaiden +Jared +Jeremy +Joel +Johnathan +Louis +Malachi +Morgan +Paul +Rylan +Skylar +Skyler +Wesley +Alejandro +Allen +Angel +Arthur +Brennan +Bryson +Casey +Clayton +Diego +Dillon +Donald +Elisha +Finn +Forrest +Jerry +Kadin +Kael +Keith +Lawrence +Maxwell +Orion +Oscar +Quinn +Raymond +Reece +Reese +River +Roman +Rowan +Russell +Solomon +Tate +Theodore +Toby +Tristen +Troy +Ethan +Joseph +James +Jacob +Samuel +Tyler +Alexander +Joshua +Michael +Benjamin +David +Dylan +Gabriel +Connor +Daniel +Matthew +William +Anthony +John +Logan +Ryan +Andrew +Caleb +Robert +Aidan +Elijah +Isaac +Aiden +Christopher +Ashton +Hunter +Aaron +Nathan +Brandon +Ian +Zachary +Austin +Charles +Luke +Mason +Nicholas +Noah +Kaden +Sean +Gavin +Justin +Jaden +Jonathan +Thomas +Isaiah +Blake +Lucas +Wyatt +Hayden +Jack +Jayden +Adam +Cody +Evan +Josiah +Kyle +Cameron +Jackson +Jesse +Kaleb +Kevin +Owen +Timothy +Alex +Garrett +Jason +Landon +Nathaniel +Riley +Caden +Carson +Levi +Micah +Seth +Carter +Cole +Dawson +Jordan +Christian +Colton +Dakota +Dustin +Elias +Jeremiah +Trevor +Tristan +Xander +Bryce +Colin +Devin +Liam +Paul +Richard +Trenton +Adrian +Brayden +Gage +Kai +Lance +Mark +Nolan +Shane +Spencer +Steven +Ayden +Edward +Eric +George +Keith +Patrick +Peter +Rylan +Chase +Damien +Grant +Henry +Julian +Kenneth +Malachi +Maxwell +Shawn +Tanner +Zane +Andre +Brian +Brock +Brody +Bryson +Conner +Cooper +Dennis +Dominic +Eli +Ezekiel +Jake +Jeremy +Joel +Jonah +Keegan +Preston +Raymond +Bradley +Clayton +Devon +Donovan +Frank +Jalen +Johnathan +Peyton +Russell +Scott +Vincent +Antonio +Cyrus +Derek +Diego +Donald +Gary +Jared +Jonathon +Marcus +Max +Miles +Payton +Phillip +Roman +Sebastian +Stephen +Taylor +Travis +Xavier +Brent +Calvin +Camden +Carl +Cayden +Collin +Corey +Dallas +Darius +Griffin +Kaiden +Kody +Kyler +Leif +Mathias +Mitchell +Myles +Orion +Parker +Porter +Quinn +Reuben +River +Simon +Skyler +Troy +Walter +Warren +Wesley +Zander +Ethan +Jacob +Joshua +Michael +Joseph +William +Benjamin +John +Logan +Elijah +Matthew +Ryan +Aiden +Andrew +Daniel +David +Tyler +Zachary +Alexander +Samuel +Hunter +James +Dylan +Gabriel +Aidan +Anthony +Caleb +Mason +Noah +Isaiah +Luke +Owen +Robert +Christopher +Nathan +Hayden +Isaac +Thomas +Austin +Connor +Cody +Ian +Nicholas +Aaron +Brayden +Gavin +Jack +Josiah +Liam +Timothy +Brandon +Justin +Evan +Jason +Landon +Lucas +Devin +Jeremiah +Jordan +Kaleb +Cole +Jackson +Jonathan +Riley +Vincent +Jayden +Kaden +Peter +Seth +Tristan +Charles +Elias +Paul +Adam +Aden +Caden +Kyle +Marcus +Nathaniel +Richard +Sean +Ashton +Cameron +Christian +Jesse +Trevor +Wyatt +Blake +Carter +Dawson +Jaden +Kevin +Malachi +Shane +Eric +Kenneth +Avery +Carson +Devon +Dominic +Henry +Nolan +Patrick +Preston +Ryder +Scott +Steven +Trenton +Eli +Gage +Jeremy +Julian +Levi +Spencer +Alex +Antonio +Chase +Jake +Jared +Joel +Johnathan +Keith +Micah +Quinn +Tanner +Clayton +Colton +Cooper +Dalton +Deven +Donovan +Edward +Elliot +Garrett +Kai +Kayden +Kyler +Mark +Peyton +Raymond +Russell +Skyler +Stephen +Taylor +Travis +Troy +Tyson +Adrian +Alan +Arthur +Braden +Brian +Bryce +Curtis +Damien +Dustin +Parker +River +Sebastian +Shawn +Simon +Theodore +Wesley +Asher +Ayden +Brock +Bryson +Colin +Corbin +Dillon +Elliott +George +Hudson +Jakob +Justice +Keegan +Max +Maxwell +Miles +Phillip +Roman +Sage +Tristen +Zane +Abraham +Bradley +Brady +Brendan +Bryan +Camden +Carl +Casey +Chad +Charlie +Dennis +Dominick +Drake +Drew +Erik +Grady +Grant +Gregory +Harry +Jace +Jerry +Jonah +Jonathon +Lance +Leo +Maddox +Oliver +Rowan +Soren +Trent +Xander +Xavier +James +Jacob +Michael +Andrew +Ethan +Logan +Benjamin +William +Alexander +Aiden +John +Joshua +Gabriel +Samuel +David +Isaiah +Matthew +Tyler +Gavin +Noah +Mason +Joseph +Aidan +Caleb +Christopher +Dylan +Jack +Daniel +Elijah +Robert +Nathan +Hunter +Hayden +Connor +Luke +Ryan +Austin +Kaden +Landon +Owen +Anthony +Justin +Riley +Thomas +Wyatt +Zachary +Cody +Devin +Jayden +Jeremiah +Nicholas +Tristan +Carson +Charles +Jonathan +Jordan +Kyle +Lucas +Evan +Ian +Isaac +Nathaniel +Trevor +Sean +Christian +Elias +Kaleb +Liam +Vincent +Adam +Chase +Dominic +Jackson +Jason +Brandon +Cameron +Jesse +Josiah +Richard +Aaron +Timothy +Caden +Henry +Malachi +Seth +Spencer +Alex +Cole +Cooper +Eric +Gage +Jace +Jake +Jonah +Kenneth +Kevin +Kyler +Levi +Paul +Steven +Taylor +Xavier +Ashton +Bryce +Garrett +Jaden +Shane +Wesley +Brayden +Brody +Carter +Conner +Donovan +Jeremy +Kayden +Keegan +Marcus +Miles +Peyton +Preston +Tyson +Blake +Brian +Jaiden +Mark +Patrick +Scott +Silas +Simon +Stephen +Tristen +Victor +Zane +Adrian +Asher +Braden +Colin +Colton +Dawson +Derek +Devon +Erik +Gregory +Oliver +Peter +Raymond +Sebastian +Trenton +Aden +Antonio +Corbin +Dalton +Ezekiel +George +Julian +Landen +Nolan +Parker +Ryder +Travis +Trent +Troy +Bryson +Cayden +Damien +Dane +Frank +Gunnar +Jared +Johnathan +Kai +Keenan +Keith +Leo +Lewis +Micheal +Payton +Rylan +Sage +Skyler +Tanner +Tucker +Ty +Zackary +Bradley +Brendan +Brennan +Brock +Caiden +Calvin +Chance +Colby +Collin +Colten +Drake +Edward +Elliott +Emmanuel +Everett +Glenn +Grayson +Jonathon +Judah +Kaiden +Martin +Mathew +Max +Micah +Morgan +Myles +Orion +Philip +Phillip +Sawyer +Shawn +Wade +Walter +Aiden +Ethan +Logan +Alexander +Michael +Jacob +William +Tyler +Noah +James +Daniel +Joseph +John +Samuel +Gabriel +Mason +Benjamin +David +Dylan +Elijah +Gavin +Thomas +Andrew +Isaiah +Caleb +Christian +Joshua +Zachary +Christopher +Matthew +Nicholas +Landon +Nathan +Anthony +Ryan +Tristan +Charles +Isaac +Jayden +Robert +Wyatt +Jack +Connor +Hunter +Riley +Brayden +Jackson +Luke +Evan +Jason +Liam +Owen +Austin +Blake +Cameron +Jeremiah +Jonathan +Lucas +Chase +Julian +Justin +Levi +Richard +Caden +Cole +Kenneth +Sean +Aidan +Ayden +Elias +Eric +Jaden +Xavier +Adam +Brian +Carson +Colton +Eli +Jesse +Sebastian +Timothy +Travis +Aaron +Carter +Cody +Hayden +Henry +Jordan +Kaden +Kaleb +Marcus +Nathaniel +Paul +Seth +Trevor +Ian +Jeremy +Josiah +Ashton +Brandon +Brody +Damien +Jace +Jonah +Kevin +Kyle +Trenton +Bryce +Keegan +Nolan +Patrick +Ryder +Brady +Conner +Corbin +Ezekiel +Jared +Micah +Peter +Peyton +Silas +Spencer +Steven +Tanner +Xander +Adrian +Dane +Devin +Devon +Drake +Kaiden +Oliver +Scott +Shawn +Troy +Ty +Vincent +Braeden +Donovan +Edward +Jake +Joel +Jonas +Kayden +Preston +Quinton +Roman +Antonio +Braden +Bruce +Calvin +Chad +Collin +Dakota +Donald +George +Jaxon +Jude +Kai +Malachi +Miles +River +Sage +Sawyer +Tucker +Wesley +Asher +Caiden +Cooper +Craig +Deegan +Ezra +Finn +Frank +Gage +Gunnar +Harrison +Jaxson +Jeffrey +Johnathan +Lance +Lane +Martin +Mitchell +Payton +Quinn +Trey +Alex +Avery +Blaze +Braxton +Bryson +Cash +Cayden +Dallas +Dalton +Dillon +Easton +Elliot +Erik +Everett +Gideon +Grant +Grayson +Harry +Israel +Jakob +Johnny +Julius +Keith +Kyler +Larry +Lincoln +Lukas +Miguel +Myles +Nickolas +Odin +Oscar +Parker +Quentin +Reid +Rowan +Simon +Taylor +Titus +Tristen +James +Jacob +Michael +Ethan +Tyler +Aiden +Joshua +Matthew +Noah +Joseph +Gabriel +William +Alexander +David +John +Jayden +Dylan +Andrew +Daniel +Logan +Wyatt +Benjamin +Anthony +Isaiah +Ryan +Landon +Owen +Caleb +Christopher +Hunter +Mason +Isaac +Samuel +Tristan +Gavin +Luke +Nathan +Aaron +Elijah +Jackson +Liam +Lucas +Robert +Brayden +Jack +Thomas +Charles +Kaden +Riley +Evan +Austin +Jonathan +Christian +Zachary +Adam +Aidan +Connor +Cooper +Nathaniel +Nicholas +Jason +Timothy +Ashton +Brandon +Cameron +Chase +Jeremiah +Levi +Micah +Blake +Henry +Ian +Oliver +Ayden +Hayden +Brody +Caden +Justin +Xavier +Carter +Cole +Conner +Jordan +Kenneth +Kyle +Colton +Jace +Josiah +Kevin +Ryder +Bryce +Carson +Cody +Dominic +Elias +Gage +Jeremy +Richard +Sean +Seth +Shane +Adrian +Brian +Ezekiel +Jaden +Jesse +Jonah +Kaleb +Landen +Max +Sawyer +Shawn +Tristen +Devin +Julian +Lincoln +Marcus +Peter +Steven +Trevor +Vincent +Walter +Dawson +Eli +Erik +Jude +Julius +Kaiden +Kayden +Kyler +Preston +Raymond +Rylan +Simon +Brady +Calvin +Charlie +Ezra +Garrett +Hudson +Ivan +Joel +Malachi +Mark +Nolan +Silas +Skyler +Trenton +Troy +Wesley +Alex +Antonio +Brendan +Colin +Corbin +Dallas +Devon +Donald +Donovan +Drake +Frank +Franklin +George +Jake +Jared +Jayson +Keagan +Leland +Miles +Parker +Peyton +Scott +Skylar +Taylor +Theodore +Tyson +Zachariah +Zander +Alden +Bradley +Brett +Camden +Clayton +Curtis +Dakota +Dayton +Edward +Elliot +Gideon +Grayson +Jaxon +Johnathan +Jonas +Justice +Lance +Leif +Quincy +Roman +Seamus +Talon +Tanner +Travis +Trey +Tucker +Albert +Allen +Braedon +Brodie +Bryan +Casey +Chance +Collin +Dalton +Damian +Damien +Darius +Declan +Derek +Finn +Giovanni +Glenn +Harley +Jakob +Jimmy +Juan +Kade +Kai +Moses +Odin +Patrick +Paul +Ronan +Rowan +Sebastian +Soren +Titus +Zane +Michael +Ethan +James +Logan +Samuel +Elijah +Joseph +William +David +Gabriel +Daniel +Jacob +Aiden +Matthew +Noah +Liam +Andrew +Joshua +Caleb +Wyatt +Benjamin +Isaiah +Mason +Gavin +Jackson +Robert +Jayden +Tristan +Anthony +Alexander +Charles +Christopher +Jack +Dylan +Hunter +Lucas +Christian +Nicholas +Zachary +Evan +John +Jordan +Brayden +Chase +Isaac +Owen +Thomas +Tyler +Connor +Riley +Ryan +Aaron +Levi +Trevor +Jeremiah +Jonathan +Adam +Cole +Josiah +Landon +Luke +Aidan +Kyle +Ryder +Eli +Elias +Nathan +Ashton +Austin +Brandon +Carter +Colton +Cooper +Jason +Oliver +Blake +Hayden +Kaden +Quinn +Seth +Vincent +Alex +Brody +Cody +Henry +Justin +Ayden +Dominic +Ezra +Jesse +Julian +Micah +Silas +Gage +Kevin +Nathaniel +Patrick +Paul +Sean +Skyler +Colin +Eric +Jeremy +Kayden +Landen +Leo +Richard +Rylan +Shane +Xavier +Asher +Avery +Caden +George +Gunnar +Jace +Jaden +Jonah +Kaleb +Marcus +Rowan +Sawyer +Tanner +Timothy +Travis +Tucker +Adrian +Bradley +Bryson +Carson +Devin +Edward +Jaxon +Jude +Kaiden +Kenneth +Lincoln +Parker +Preston +Troy +Braden +Collin +Curtis +Drake +Finn +Kai +Max +Miles +Paxton +Peter +Peyton +Scott +Steven +Titus +August +Brennan +Brian +Calvin +Camden +Chance +Dakota +Garrett +Gideon +Ian +Joel +Orion +Sebastian +Stephen +Trent +Ty +Warren +Weston +Xander +Brenden +Bryce +Cameron +Conner +Dennis +Donald +Donovan +Easton +Everett +Giovanni +Grant +Gregory +Hudson +Jasper +Jerome +Kale +Keegan +Kyler +Lukas +Malachi +Morgan +Raymond +Skylar +Spencer +Torin +Walter +Wesley +Axel +Cannon +Charlie +Clayton +Colby +Colt +Corbin +Cornelius +Cyrus +Dane +Darius +Dawson +Dax +Ezekiel +Ivan +Jake +Jameson +Jeffrey +Kael +Kingston +Lance +Louis +Marc +Oscar +Philip +Roman +Ronald +Shaun +Simon +Tommy +Trenton +Tyson +Urijah +Victor +Zackary +Zander +Zion +William +James +Michael +Logan +Jacob +Ethan +Alexander +Joshua +Elijah +Liam +Daniel +Hunter +Joseph +Mason +Lucas +Connor +Wyatt +Caleb +Aiden +Carter +Isaac +Noah +Gabriel +Landon +Matthew +Christopher +Thomas +Benjamin +David +Andrew +Isaiah +John +Tyler +Levi +Charles +Ryan +Gavin +Jackson +Owen +Brayden +Jonathan +Samuel +Anthony +Jack +Jordan +Tristan +Evan +Luke +Nathan +Nicholas +Zachary +Dylan +Jayden +Riley +Eli +Elias +Austin +Cooper +Hayden +Jaxon +Christian +Parker +Robert +Brody +Carson +Josiah +Kevin +Oliver +Blake +Cameron +Chase +Cole +Henry +Timothy +Xavier +Asher +Ashton +Colton +Jason +Jonah +Justin +Micah +Ryder +Seth +Aaron +Ian +Jace +Jake +Jeremiah +Cody +Kai +Leo +Richard +Steven +Trevor +Adam +Ezekiel +Ezra +Max +Paul +Sean +Silas +Ayden +Bentley +Bradley +Gage +Johnathan +Julian +Kaiden +Lincoln +Nathaniel +River +Sawyer +Skyler +Spencer +Travis +Vincent +Aidan +Brandon +Bryce +Kaden +Kayden +Kyler +Roman +Rylan +Adrian +Axel +Bryson +Dominic +Drake +Easton +Garrett +Jaxson +Keegan +Malachi +Maximus +Orion +Tanner +Arthur +Chance +Dalton +Damian +Dawson +Derek +Edward +Jesse +Jude +Kaleb +Marcus +Peter +Shane +Trent +Wesley +Brian +Calvin +Charlie +Clayton +Collin +Eric +Grayson +Hudson +Jaden +Jakob +Landen +Mark +Miles +Paxton +Preston +Walter +Allen +Andre +Caden +Camden +Cayden +Colin +Conner +Cruz +Cyrus +Damien +Donovan +Elliot +Emmett +Everett +George +Grant +Holden +Jeffrey +Joaquin +Joel +Judah +Kenneth +Kyle +Lance +Leon +Maddox +Maxwell +Nikolai +Sebastian +Simon +Sterling +Theodore +Trenton +Xander +Zane +Aden +Antonio +Archer +Brett +Brock +Brooks +Colt +Dane +Derrick +Desmond +Dustin +Finn +Jameson +Jasper +Kade +Kian +Kristopher +Landyn +Lane +Marshall +Nehemiah +Nolan +Porter +Raymond +Rhys +Roland +Ronan +Rowan +Ryker +Stephen +Sylas +Taylor +Titus +Tristen +Tyson +Zander +Mason +James +William +Liam +Ethan +Logan +Wyatt +Michael +Daniel +Elijah +Hunter +Landon +Samuel +Caleb +David +Jayden +Lucas +Aiden +Gabriel +Jacob +Matthew +Noah +Joseph +Jack +Joshua +Owen +Isaiah +Brayden +Tristan +Carter +Jonathan +Oliver +Andrew +Jackson +Tyler +Carson +Ryan +Blake +Jaxon +Aaron +Benjamin +Charles +Christopher +Eli +John +Alexander +Gavin +Isaac +Levi +Ryder +Connor +Evan +Henry +Robert +Ian +Thomas +Jeremiah +Nathan +Anthony +Brody +Cameron +Chase +Dylan +Drake +Max +Silas +Zachary +Micah +Nathaniel +Adam +Brandon +Christian +Declan +Elias +Eric +Josiah +Nicholas +Austin +Cole +Corbin +Jason +Orion +Paul +Rylan +Conner +Dominic +Jace +Jonah +Marcus +Parker +Riley +Avery +Ayden +Bentley +Colton +Cooper +Emmett +Everett +Ezra +Justin +Kayden +Kyle +Lincoln +Tanner +Asher +Edward +Jake +Kaiden +Kaleb +Sawyer +Shane +Trevor +Brady +Bryson +Cody +Ezekiel +Jordan +Jude +Malachi +Nolan +Rowan +Ryker +Troy +Ashton +Camden +Charlie +Hayden +Jaden +Jaxson +Jesse +Joel +Sebastian +Seth +Skyler +Steven +Tucker +Vincent +Xavier +Caden +Cash +Dane +Easton +Gage +Garrett +Grayson +Judah +Kaden +Killian +Kingston +Landen +Leo +Luke +Maximus +Patrick +Paxson +Preston +Roman +Sean +Timothy +Trenton +Tyson +Wesley +Aidan +Dalton +Dawson +Devin +Frank +Gideon +Grant +Holden +Julian +Kenneth +Kyler +Phoenix +Talon +Titus +Travis +Victor +Adrian +Archer +Atticus +Braxton +Brett +Calvin +Chance +Cyrus +Damien +Dexter +Gregory +Gunnar +Jayce +Jett +Jose +Julius +Keagan +Keith +Kody +Miles +Oscar +Peyton +Raymond +Trapper +Tristen +Andre +Brendan +Bryan +Bryce +Cade +Cayden +Clayton +Collin +Damian +Dante +Darren +Derek +Diego +Gary +Griffin +Gunner +Jameson +Jared +Justice +Kasen +Kevin +Lance +Leland +Louis +Mark +Nikolai +Paxton +Pierce +Porter +Quinn +Richard +Russell +Theodore +Theron +Uriah +Walter +Xander +James +Ethan +Liam +Gabriel +Jacob +William +Mason +Noah +Michael +Elijah +Robert +Joseph +Caleb +Tyler +Jack +Alexander +David +Benjamin +Carter +Joshua +Aiden +Logan +Matthew +Daniel +Gavin +Jayden +Lucas +Samuel +Christopher +Connor +Wyatt +Isaiah +Oliver +Andrew +Henry +Hunter +Landon +Silas +Grayson +Jackson +Levi +Nicholas +Thomas +Charles +Parker +Zachary +Brayden +Brody +Carson +Chase +Eli +Isaac +Jordan +Nathan +Sawyer +Christian +Colton +Owen +Ryan +Tristan +Anthony +Evan +Jason +Jeremiah +John +Justin +Nathaniel +Paul +Dominic +Jaxon +Riley +Timothy +Aaron +Blake +Dylan +Easton +Luke +Asher +Cooper +Jace +Brandon +Cameron +Ezra +Jesse +Jonathan +Ryder +Josiah +Max +Ryker +Sebastian +Adam +Ashton +Cody +Dalton +Declan +Hayden +Ian +Julian +Nolan +Alex +Bryce +Camden +Cole +Everett +Kevin +Maxwell +Miles +Adrian +Austin +Bradley +Elias +Eric +Ezekiel +Kyler +Preston +Trevor +Weston +Bentley +Edward +Emmett +Jasper +Jaxson +Jeremy +Kyle +Malachi +Marcus +Patrick +Paxson +Quinn +Richard +Rylan +Seth +Shane +Theodore +Xavier +Brady +Calvin +Charlie +Colin +Dawson +Drake +Elliott +Gage +George +Gideon +Joel +Kayden +Roman +Rowan +Sean +Shawn +Skyler +Solomon +Tanner +Tristen +Wesley +Xander +Zane +Andre +Ari +Bryson +Conner +Corbin +Damien +Elliot +Greyson +Gunnar +Kenneth +Landen +Leo +Leon +Lincoln +Peter +Aden +Aidan +Apollo +Avery +Ayden +Brantley +Brent +Byron +Caden +Cohen +Cruz +Dane +Derek +Devin +Emery +Finn +Hezekiah +Jameson +Jared +Jase +Jude +Julius +Kade +Kai +Kaiden +Louis +Maddox +Maxim +Micheal +Orion +Oscar +Paxton +Phillip +Porter +Talon +Torin +Trenton +Tyson +Victor +Vincent +Abel +Abraham +Axel +Braxton +Cayden +Clayton +Collin +Corey +Dallas +Dante +Dean +Dominick +Emmanuel +Gregory +Ivan +Jaden +Jake +Johnny +Judah +Kaden +Kaleb +Keegan +Killian +Kingston +Lawrence +Luis +Lukas +Marshall +Maximus +Micah +Milo +River +Rylee +Simon +Spencer +Troy +Ty +Zackary +Zion +Liam +William +Mason +Noah +Wyatt +Ethan +Jacob +Elijah +Logan +Alexander +Gabriel +Hunter +Joseph +James +John +Michael +Benjamin +Samuel +David +Jackson +Lucas +Aiden +Matthew +Jack +Anthony +Carter +Daniel +Brayden +Caleb +Christopher +Dylan +Evan +Landon +Luke +Nathan +Andrew +Jayden +Josiah +Oliver +Thomas +Isaac +Owen +Sawyer +Eli +Henry +Jonathan +Blake +Jordan +Ian +Jaxon +Joshua +Ryan +Tristan +Tyler +Zachary +Brandon +Isaiah +Jace +Justin +Leo +Nicholas +Robert +Christian +Elias +Connor +Ezekiel +Hudson +Lincoln +Nathaniel +Charles +Colton +Parker +Ryder +Rylan +Aaron +Austin +Chase +Cooper +Dominic +Grayson +Levi +Cameron +Carson +Gavin +Weston +Adrian +Camden +Easton +Miles +Preston +Ryker +Asher +Avery +Ayden +George +Jameson +Jase +Jason +Kayden +Simon +Skyler +Adam +Cayden +Eric +Ezra +Malachi +Marcus +Maxwell +Patrick +Riley +Sean +Silas +Vincent +Bentley +Charlie +Declan +Everett +Gideon +Hayden +Jaxson +Jonah +Leon +Marshall +Nolan +Paul +Peter +Rowan +Sebastian +Tanner +Archer +Brody +Cody +Corbin +Dalton +Jesse +Kaiden +Kevin +Kyle +Maximus +Paxton +Peyton +Tyson +Wesley +Xavier +Zane +Bennett +Brian +Bryson +Emmett +Finley +Gage +Jax +Jayce +Jeremiah +Kaden +Paxson +Reed +Roman +Seth +Theodore +Titus +Trevor +Troy +Ashton +Blaine +Bradley +Brady +Bryce +Calvin +Colin +Collin +Cruz +Edward +Graham +Jaden +Maddox +Maverick +Quinn +Richard +Ronald +Shane +Stephen +Travis +Trenton +Waylon +Zander +Zayden +Abel +Andre +Caden +Chance +Cole +Dawson +Dean +Finn +Frank +Greyson +Harrison +Ivan +Jake +Jasper +Jaxton +Jeremy +Johnny +Kade +Keith +Kenneth +Louis +Micah +River +Sterling +Steven +Tucker +Alex +Arthur +Atticus +Axel +Beau +Braden +Brock +Cash +Clayton +Cohen +Dallas +Dante +Darius +Daxton +Elliot +Garrett +Gerald +Grady +Gregory +Gunnar +Gunner +Holden +Jaiden +Kael +Keegan +Kellen +Killian +Kingston +Landen +Lawrence +Lee +Luca +Milo +Odin +Orion +Oscar +Raymond +Shawn +Taylor +Titan +Xander +Zackary +Liam +James +Noah +Wyatt +Gabriel +Lucas +Ethan +Alexander +Joseph +Benjamin +William +Logan +Mason +Jack +John +Asher +Elijah +Daniel +Henry +Jacob +Jaxon +Michael +Oliver +Hunter +David +Levi +Matthew +Landon +Aiden +Isaac +Jackson +Caleb +Ryan +Elias +Connor +Evan +Joshua +Samuel +Christian +Jayden +Jeremiah +Cooper +Eli +Robert +Ryder +Christopher +Colton +Josiah +Andrew +Austin +Carson +Jaxson +Jonathan +Luke +Malachi +Nathan +Owen +Blake +Lincoln +Ezra +Gavin +Thomas +Dylan +Grayson +Kai +Ryker +Zachary +Anthony +Isaiah +Jase +Jason +Micah +Sebastian +Silas +Titus +Bentley +Brody +Cameron +Carter +Chase +Gideon +Jace +Sawyer +Tristan +Tyler +Weston +Adam +Charles +Everett +Wesley +Xander +Brandon +Brayden +Nathaniel +Theodore +Xavier +Ashton +Avery +Dominic +Easton +Finn +George +Hudson +Ian +Jasper +Kayden +Marshall +Max +Maxwell +Miles +Orion +Richard +Timothy +Abel +Drake +Garrett +Jameson +Jayce +Joel +Kenneth +Maximus +Nicholas +Parker +Travis +Cody +Dean +Declan +Elliot +Ezekiel +Karter +Nolan +Patrick +Riley +Seth +Solomon +Steven +Victor +Waylon +Aaron +August +Bradley +Braxton +Bryce +Calvin +Camden +Cayden +Charlie +Cole +Damian +Dawson +Eric +Greyson +Jake +Jeffrey +Jesse +Jonah +Julian +Kaiden +Killian +Kingston +Maddox +Matthias +Maverick +Odin +Paul +Peter +Roman +Trevor +Zane +Alex +Archer +Caden +Collin +Colt +Edward +Gage +Gunner +Harrison +Ivan +Jax +Leo +Lukas +Marcus +Paxton +Soren +Sullivan +Tanner +Trenton +Troy +Tucker +Vincent +Walter +Warren +Adrian +Augustus +Axel +Beckett +Cade +Clayton +Dante +Emmett +Felix +Grant +Hatcher +Jordan +Jude +Julius +Kaleb +Kevin +Remington +Rowan +Russell +Simon +Skyler +Stephen +Sterling +Talon +Westin +Aidan +Alden +Angelo +Arthur +Atticus +Barrett +Brantley +Brooks +Bruce +Cash +Cyrus +Derek +Desmond +Erik +Griffin +Hayden +Jeremy +Justice +Kaden +Kane +Kyle +Leif +Mark +Mateo +Miguel +Myles +Nikolai +Paxson +Peyton +Raymond +Reid +River +Rodney +Roland +Ronin +Rylan +Shawn +Spencer +Thaddeus +Tobias +Tyson +Walker +Mary +Annie +Willie +Mattie +Ruby +Ethel +Lillie +Ruth +Bessie +Elizabeth +Emma +Minnie +Louise +Bertha +Hattie +Gladys +Carrie +Fannie +Martha +Rosa +Alice +Lucille +Jessie +Sarah +Margaret +Pearl +Marie +Myrtle +Rosie +Lillian +Clara +Gertrude +Nellie +Ida +Ella +Eva +Maggie +Mildred +Mamie +Edna +Lois +Susie +Katie +Beatrice +Evelyn +Alma +Lula +Frances +Irene +Velma +Viola +Julia +Essie +Helen +Lucy +Lucile +Anna +Vera +Laura +Inez +Thelma +Eula +Virginia +Alberta +Daisy +Flora +Cora +Lena +Josephine +Grace +Georgia +Nancy +Lizzie +Pauline +Sallie +Johnnie +Mae +Bernice +Dorothy +Florence +Ada +Hazel +Addie +Rose +Elsie +Agnes +Leola +Estelle +Effie +Eunice +Ola +Ollie +Ora +Sadie +Nora +Ellen +Esther +Jennie +Catherine +Mabel +Sara +Katherine +Mable +Josie +Rebecca +Dora +Lela +Jewell +Leona +Nettie +Jewel +Lola +Roberta +Beulah +Edith +Geneva +Janie +Lorene +Callie +Etta +Jimmie +Pearlie +Betty +Flossie +Ann +Eliza +Rachel +Lessie +Nell +Era +Gussie +Ila +Maude +Della +Stella +Winnie +Eddie +Elnora +Lottie +Opal +Vivian +Estella +Maudie +Mittie +Mollie +Birdie +Dollie +Doris +Juanita +Kate +Sally +Amanda +Cleo +Hester +Rena +Allie +Blanche +Corine +Estell +Margie +Bettie +Bonnie +Carolyn +Eloise +Irma +Jean +Tommie +Adell +Christine +Claudie +Cornelia +Gracie +Marguerite +Millie +Naomi +Verna +Wilma +Earline +Erma +Henrietta +Iva +Jannie +Kathleen +Roxie +Susan +Anne +Audrey +Leila +May +Rosia +Amelia +Augusta +Emmie +Ina +Lee +Lila +Lou +Ophelia +Rosetta +Bertie +Lora +Lucinda +Lydia +Mozelle +Myrtice +Nina +Tessie +Billie +Dessie +Emily +Iola +Jane +Kathryn +Lilly +Linnie +Louella +Mandy +Marion +Myrtis +Nona +Odessa +Olive +Pinkie +Polly +Queen +Rubye +Savannah +Willa +Amy +Bama +Charlotte +Clarice +Claudia +Delia +Dovie +Ellie +Evie +Ira +Lelia +Luella +Lyda +Magnolia +Marjorie +Matilda +Mozell +Myra +Myrtie +Nannie +Olivia +Oma +Ossie +Vada +Violet +Virgie +Abbie +Cassie +Clyde +Connie +Eleanor +Elma +Elva +Ernestine +Gertie +Hannah +Harriet +Jeanette +Lettie +Melissa +Ocie +Patsy +Peggy +Queenie +Rosalie +Rubie +Sue +Adele +Alpha +Arrie +Belle +Charity +Charlie +Ester +Frankie +Goldie +Hilda +Icie +Idell +Lenora +Letha +Lily +Lorena +Ludie +Lura +Madge +Maud +Maxine +Odell +Patricia +Reba +Sophie +Sybil +Trudie +Una +Victoria +Zelma +Aline +Allene +Arlene +Artie +Barbara +Bennie +Camilla +Ceola +Corinne +Dixie +Dolly +Easter +Florine +Francis +Gennie +Georgie +Glennie +Isabella +Isabelle +Lassie +Liza +Louisa +Lue +Macie +Madie +Mammie +Melba +Minerva +Osie +Pearline +Ruthie +Sylvia +Theresa +Vergie +Vida +Vinnie +Zadie +Zora +Berta +Blanch +Caroline +Cecil +Charlsie +Clemmie +Corene +Donnie +Elvira +Exie +Faye +Floy +Genevieve +Hettie +Iona +Ivey +Johnie +Jonnie +Lera +Leslie +Lorraine +Lovie +Maurine +Mazie +Nan +Nola +Odie +Pearly +Prince +Robbie +Tressie +Vernie +Mary +Annie +Willie +Ruby +Mattie +Bessie +Ethel +Lillie +Minnie +Elizabeth +Ruth +Louise +Emma +Fannie +Margaret +Marie +Lucille +Mildred +Gladys +Sarah +Clara +Mamie +Carrie +Lula +Alice +Jessie +Lillian +Hattie +Susie +Bertha +Edna +Ella +Frances +Myrtle +Rosie +Cora +Beatrice +Evelyn +Rosa +Thelma +Gertrude +Martha +Irene +Julia +Maggie +Ida +Dorothy +Lois +Vera +Anna +Grace +Helen +Katie +Velma +Laura +Nellie +Alma +Eula +Pearl +Essie +Inez +Eva +Daisy +Virginia +Lucile +Mabel +Pauline +Flora +Hazel +Viola +Lola +Eunice +Lucy +Florence +Mae +Beulah +Lena +Georgia +Estelle +Josephine +Rose +Ollie +Sadie +Alberta +Bernice +Dora +Johnnie +Catherine +Lizzie +Addie +Ada +Esther +Ora +Elsie +Nettie +Agnes +Della +Ola +Sallie +Lela +Rebecca +Effie +Nancy +Nora +Maude +Ellen +Janie +Mable +Betty +Christine +Jewell +Leola +Nell +Pearlie +Sara +Stella +Vivian +Callie +Leona +Roberta +Amanda +Blanche +Jewel +Bonnie +Henrietta +Lottie +Wilma +Katherine +Lorene +Lessie +Edith +Geneva +Kate +Kathleen +Audrey +Estella +Jennie +Opal +Rachel +Allie +Anne +Dollie +Eloise +Etta +Flossie +Virgie +Emily +Jimmie +Marguerite +Mollie +Claudia +Juanita +Lila +Maudie +Verna +Corine +Cornelia +Ernestine +Letha +Pinkie +Bertie +Doris +Eliza +Estell +Evie +Ila +Irma +Lora +Myrtice +Reba +Winnie +Eleanor +Gracie +Gussie +Ina +Josie +Leila +Mittie +Tommie +Clyde +Erma +Hettie +Johnie +Kathryn +Margie +May +Myrtie +Queen +Sue +Ann +Audie +Augusta +Celia +Eddie +Ellie +Elma +Elnora +Iva +Rubye +Sylvia +Charlotte +Dovie +Lue +Luella +Marjorie +Myra +Olivia +Willa +Bettie +Bobbie +Cleo +Corrine +Dessie +Era +Eugenia +Georgie +Geraldine +Hester +Jannie +Linnie +Marion +Matilda +Nannie +Naomi +Rena +Roxie +Ruthie +Sally +Savannah +Violet +Amelia +Birdie +Easter +Ester +Francis +Hilda +Idell +Jean +Lelia +Lenora +Lucinda +Lydia +Nina +Odell +Odessa +Rosia +Amy +Caroline +Ethelyn +Floy +Frankie +Iris +Lettie +Louella +Maud +Mayme +Millie +Ophelia +Rosalie +Rosetta +Susan +Zora +Adell +Bennie +Billie +Bulah +Clarice +Exie +Faye +Florine +Gertie +Goldie +Julie +Kattie +Lennie +Lera +Lily +Lou +Ludie +Lura +Mariah +Miriam +Polly +Robbie +Zelma +Aileen +Alpha +Alta +Arline +Artie +Carolyn +Cassie +Cecil +Charlie +Clemmie +Delia +Elvira +Emmie +Genevieve +Glennie +Ira +Janet +Jeanette +Lilly +Madge +Marian +Nola +Olive +Ossie +Tessie +Tressie +Victoria +Adelaide +Adele +Adella +Allene +Amie +Anita +Anniemae +Bama +Barbara +Bell +Connie +Gertha +Harriet +Iola +Izola +James +Leatha +Lee +Liddie +Lorena +Louie +Love +Luvenia +Magnolia +Malinda +Mozell +Mozelle +Novella +Ocie +Patricia +Patsy +Rilla +Rochelle +Theresa +Vada +Veola +Vergie +Verla +Williemae +Zola +Mary +Annie +Willie +Ruby +Mattie +Ethel +Ruth +Lillie +Louise +Minnie +Bessie +Elizabeth +Gladys +Emma +Sarah +Margaret +Alice +Jessie +Lucille +Lillian +Fannie +Bertha +Mildred +Edna +Carrie +Helen +Ida +Martha +Hattie +Grace +Clara +Rosie +Mamie +Beatrice +Myrtle +Frances +Hazel +Lula +Vera +Marie +Thelma +Ella +Susie +Rosa +Nellie +Eva +Evelyn +Laura +Dorothy +Inez +Julia +Irene +Alma +Pauline +Lois +Lucile +Gertrude +Viola +Virginia +Maggie +Essie +Anna +Cora +Pearl +Velma +Daisy +Katie +Lena +Lizzie +Eula +Flora +Lucy +Mae +Sallie +Eunice +Bernice +Nancy +Mabel +Ada +Johnnie +Estelle +Mable +Elsie +Alberta +Ola +Lela +Nettie +Ollie +Sadie +Esther +Josephine +Lola +Georgia +Rose +Edith +Florence +Addie +Catherine +Jewel +Ora +Sara +Nora +Rebecca +Beulah +Katherine +Agnes +Jewell +Gussie +Lottie +Effie +Leola +Janie +Betty +Leona +Christine +Dora +Ellen +Geneva +Doris +Kathleen +Lorene +Allie +Audrey +Stella +Juanita +Roberta +Etta +Nell +Opal +Verna +Henrietta +Lessie +Vivian +Eleanor +Ila +Jennie +Winnie +Blanche +Charlotte +Dollie +Flossie +Virgie +Eddie +Eliza +Estella +Jimmie +Kathryn +Margie +Marjorie +Sue +Ann +Corine +Josie +Odessa +Bonnie +Callie +Cleo +Della +Gracie +Pearlie +Eloise +Kate +Maudie +Ophelia +Sally +Wilma +Bertie +Bettie +Irma +Robbie +Amanda +Anne +Emily +Marguerite +Polly +Claudie +Elnora +Era +Jean +Lou +Naomi +Claudia +Dessie +Francis +Frankie +Jannie +Millie +Nannie +Odell +Pinkie +Queen +Rubye +Tommie +Billie +Celia +Dovie +Elma +Ester +Lora +Ludie +Marion +Maude +May +Nina +Rena +Rosetta +Zelma +Adell +Hannah +Lelia +Lila +Mittie +Rachel +Ruthie +Aline +Avis +Delia +Hester +Lee +Lydia +Barbara +Connie +Ernestine +Geraldine +Jane +Lilly +Reba +Amelia +Augusta +Carolyn +Charity +Cornelia +Earline +Hettie +Leila +Letha +Lura +Mollie +Nona +Olivia +Rosalie +Willa +Adele +Birdie +Clarice +Clyde +Dolly +Erma +Georgie +Ina +Iva +Lily +Luella +Magnolia +Matilda +Myrtice +Roxie +Tressie +Victoria +Violet +Zora +Abbie +Audie +Berta +Caroline +Charlie +Dannie +Estell +Evie +Faye +Harriet +Iola +Johnie +Lenora +Lettie +Lona +Lonie +Lucinda +Lue +Maxine +Mozell +Rosia +Savannah +Theresa +Allene +Artie +Belle +Cassie +Cecil +Claire +Clemmie +Dixie +Easter +Ellie +Gertha +Idell +Isabell +Jeannette +Lovie +Madeline +Mozelle +Myra +Myrtie +Myrtis +Norma +Ossie +Paralee +Susan +Tessie +Vada +Amy +Bobbie +Bulah +Cecile +Erie +Floy +Goldie +Gwendolyn +Hilda +Idella +Jeanette +Joe +Leatha +Lennie +Lilie +Oma +Ozell +Rosalee +Sylvia +Versie +Alpha +Alta +Bennie +Corinne +Corrine +Donnie +Edwina +Emmie +Eugenia +Exa +Fay +Florene +Fronie +Hortense +Isabelle +Izola +Jettie +Leslie +Linnie +Lonnie +Loraine +Lorena +Lorine +Madge +Malinda +Maria +Mavis +Miriam +Ocie +Olive +Patricia +Queenie +Ressie +Rhoda +Rossie +Una +Zula +Adelaide +Aileen +Alene +Amie +Angeline +Annette +Bama +Blanch +Burma +Carol +Chloe +Christina +Classie +Claudine +Corrie +Cynthia +Dolores +Donna +Dorthy +Elmira +Gertie +Ima +Iris +John +Juliette +Lera +Lilla +Louella +Luvenia +Lyda +Macie +Madie +Mammie +Marcella +Maud +Maurine +Maybelle +Merle +Missouri +Muriel +Nadine +Octavia +Omie +Patsy +Regina +Robert +Shirley +Sudie +Valeria +Vallie +Vassie +Vernie +Vicie +Mary +Annie +Willie +Ruby +Mattie +Louise +Ruth +Margaret +Mildred +Lillie +Elizabeth +Ethel +Bessie +Gladys +Minnie +Alice +Emma +Carrie +Sarah +Clara +Rosa +Edna +Lucille +Jessie +Lillian +Evelyn +Frances +Bertha +Hattie +Helen +Martha +Marie +Ida +Myrtle +Nellie +Fannie +Dorothy +Ella +Lula +Thelma +Grace +Irene +Beatrice +Hazel +Mamie +Eva +Anna +Velma +Rosie +Lois +Julia +Laura +Susie +Pearl +Lucile +Flora +Florence +Pauline +Maggie +Alma +Essie +Virginia +Lucy +Vera +Gertrude +Daisy +Bernice +Cora +Eunice +Sallie +Edith +Johnnie +Viola +Mae +Eula +Inez +Katie +Sadie +Ollie +Georgia +Ora +Elsie +Estelle +Ola +Agnes +Effie +Lola +Rose +Ada +Lena +Lizzie +Catherine +Dora +Mabel +Addie +Alberta +Katherine +Mable +Josephine +Sara +Ellen +Nora +Opal +Esther +Jewell +Leola +Christine +Geneva +Nancy +Vivian +Janie +Betty +Juanita +Leona +Lottie +Beulah +Callie +Jimmie +Lela +Nell +Nettie +Rebecca +Lessie +Jewel +Marjorie +Della +Doris +Flossie +Marguerite +Ann +Winnie +Eliza +Estella +Pearlie +Rachel +Jennie +Lorene +Stella +Amanda +Gracie +Gussie +Emily +Lila +Verna +Wilma +Bonnie +Eddie +Etta +Henrietta +Nina +Odessa +Audrey +Leila +Blanche +Eleanor +Kathleen +Kathryn +Violet +Carolyn +Ila +Naomi +Allie +Anne +Dovie +Nannie +Maudie +Myra +Roberta +Cleo +Dollie +Earline +Eloise +Evie +Frankie +Josie +Margie +Adell +Bertie +Geraldine +Jane +Kate +Maude +May +Mollie +Rubye +Sally +Tommie +Bettie +Billie +Era +Iva +Ludie +Olivia +Rena +Victoria +Virgie +Barbara +Claudia +Dessie +Erma +Jean +Lettie +Lucinda +Pinkie +Rosalie +Sue +Charlotte +Corine +Iola +Jannie +Linnie +Lou +Luella +Merle +Queen +Birdie +Elma +Lily +Lue +Rosetta +Claudie +Elnora +Ernestine +Hester +Lee +Savannah +Dixie +Francis +Idella +Madge +Millie +Mittie +Norma +Reba +Sylvia +Augusta +Avis +Connie +Eugenia +Irma +Johnie +Lelia +Letha +Lona +Lydia +Nona +Odell +Polly +Shirley +Zeola +Zula +Audie +Lilla +Lora +Luvenia +Ruthie +Zelma +Zora +Abbie +Adele +Alta +Amelia +Annette +Buna +Charlie +Clyde +Corinne +Delia +Ellie +Estell +Idell +Ina +Jeanette +Lilly +Louisa +Mandy +Marion +Mavis +Maxine +Miriam +Mozell +Mozelle +Myrtis +Nadine +Robbie +Roxie +Theresa +Aline +Alpha +Artie +Bennie +Charity +Cornelia +Corrie +Creola +Elmira +Goldie +Icie +Lenora +Linda +Lorine +Louella +Lura +Magnolia +Mallie +Nelle +Nola +Ophelia +Ossie +Peggy +Sudie +Tessie +Aileen +Amy +Bobbie +Cassie +Cecil +Celia +Dolly +Easter +Elvira +Erin +Exie +Hannah +Hettie +Ira +Isabel +Isabelle +Ivy +Jeannette +Lorena +Madeline +Maud +Mayme +Myrtice +Octavia +Oma +Rosia +Sammie +Sybil +Tressie +Vada +Vida +Willa +Adeline +Adelle +Ava +Bama +Caroline +Charlsie +Clemmie +Corene +Cynthia +Dannie +Dorsey +Elaine +Elisabeth +Elva +Emmie +Ester +Florene +Floy +Henretta +Hilda +Imogene +Izola +Joyce +June +Lovie +Marian +Maurine +Mazie +Mellie +Muriel +Oleta +Olive +Patricia +Rita +Selma +Susan +Vennie +Verda +Verla +Vernice +Virgia +Adelaide +Alene +Allene +Annice +Arlene +Christina +Clarice +Classie +Claudine +Donnie +Earlean +Florine +Freda +George +Gertie +Gwendolyn +Harriette +Hortense +Ione +Irean +Isabell +James +Jettie +Kattie +Leslie +Lonnie +Louvenia +Madie +Mariah +Matilda +Maybelle +Melba +Myrtie +Nan +Novella +Ocie +Pansy +Rosemary +Sophia +Sophie +Tempie +Una +Verdie +Verlie +Versa +Voncile +Winifred +Zadie +Mary +Annie +Willie +Ruby +Mattie +Ruth +Louise +Elizabeth +Ethel +Mildred +Lillie +Margaret +Sarah +Gladys +Frances +Minnie +Emma +Lucille +Bessie +Helen +Lillian +Dorothy +Evelyn +Jessie +Bertha +Martha +Alice +Beatrice +Myrtle +Lois +Clara +Edna +Marie +Carrie +Ida +Rosa +Gertrude +Mamie +Virginia +Hattie +Lula +Fannie +Julia +Lucile +Irene +Thelma +Nellie +Grace +Ella +Rosie +Pauline +Inez +Vera +Alma +Susie +Laura +Eva +Hazel +Maggie +Bernice +Velma +Catherine +Cora +Pearl +Daisy +Sallie +Lucy +Katie +Anna +Florence +Mae +Viola +Eula +Eunice +Essie +Edith +Sara +Elsie +Johnnie +Josephine +Ora +Flora +Lena +Nancy +Ola +Estelle +Ada +Addie +Nettie +Sadie +Rose +Lola +Mabel +Rebecca +Katherine +Ollie +Georgia +Jewel +Opal +Doris +Lela +Lizzie +Mable +Agnes +Alberta +Dora +Christine +Effie +Esther +Leola +Betty +Nell +Jewell +Lorene +Nora +Eleanor +Lottie +Vivian +Beulah +Kathryn +Marjorie +Ann +Geneva +Callie +Ellen +Eloise +Anne +Margie +Stella +Della +Gussie +Juanita +Leona +Lessie +Kathleen +Roberta +Blanche +Bonnie +Carolyn +Eliza +Pearlie +Audrey +Eddie +Janie +Rachel +Wilma +Gracie +Nannie +Estella +Etta +Evie +Flossie +Jane +Marguerite +Marion +Jennie +Earline +Ila +Jimmie +Iva +Sally +Odell +Sue +Maudie +Francis +Henrietta +Jean +Josie +Kate +Millie +Mittie +Odessa +Olivia +Winnie +Cornelia +Queen +Verna +Willa +Allie +Cleo +Lydia +Rosetta +Amanda +Charlotte +Corine +Emily +Era +Irma +Lou +Ludie +Tommie +Adell +Estell +Frankie +Ina +Leila +Lucinda +Luella +Maude +Naomi +Norma +Virgie +Amelia +Charlie +Elma +Ernestine +Hilda +Jeanette +Nina +Rena +Robbie +Dessie +Elnora +Hettie +Lila +Lora +Ophelia +Victoria +Clyde +Dollie +Dovie +Jannie +Joyce +Lue +Madeline +Mollie +Rubye +Shirley +Sylvia +Amy +Avis +Belle +Claudia +Elva +Hannah +Lee +Lona +Matilda +May +Myrtice +Myrtie +Selma +Violet +Zelma +Aline +Barbara +Bertie +Ester +Geraldine +Gertie +Iola +Lennie +Linnie +Lorine +Maxine +Pinkie +Rosia +Rubie +Bettie +Cecil +Corinne +Genevieve +Gwendolyn +Iris +Johnie +Magnolia +Roxie +Ruthie +Theresa +Versie +Cassie +Charity +Hester +Lenora +Letha +Lily +Marian +Miriam +Myrtis +Patricia +Reba +Rosalee +Una +Adeline +Celia +Clarice +Claudie +Earnestine +Isabell +Lovie +Lurline +Mandy +Olean +Peggy +Rosalie +Susan +Voncile +Adele +Alta +Annabelle +Annette +Augusta +Bennie +Billie +Bulah +Connie +Elaine +Emmie +Eugenia +Isabelle +Jettie +Mammie +Mavis +Mazie +Myra +Olive +Polly +Savannah +Tessie +Vergie +Vernice +Artie +Birdie +Bobbie +Ceola +Earlene +Ellie +Elvie +Erin +Erlene +Erma +Florine +Harriet +Idell +Idella +James +Katheryn +Lettie +Lorena +Loretta +Lura +Maud +Mozelle +Nadine +Nola +Nona +Olga +Oma +Sudie +Verla +Alene +Corene +Creola +Cumi +Cynthia +Dannie +Delia +Dorthy +Easter +Eileen +Euna +Floy +Freda +Freddie +Georgie +Ima +Imogene +Inell +June +Laverne +Lelia +Leslie +Liza +Lonnie +Lorraine +Luciel +Luna +Lyda +Madge +Margarette +Marietta +Melba +Paralee +Pearline +Ressie +Rhoda +Rossie +Verdie +Vesta +Vida +Alva +Avie +Buna +Charles +Corrine +Elinor +Elise +Elouise +Emmer +Evangeline +Exie +Fay +Gertha +Glennie +Ira +Jeanne +Jonnie +Lacy +Louella +Mariah +Merle +Mozell +Ocie +Olar +Ouida +Rilla +Sammie +Sybil +Vassie +Velva +Williemae +Wilmer +Zella +Zola +Zora +Zula +Adelle +Amie +Annis +Arlean +Audie +Beaulah +Berta +Caroline +Cathrine +Charlsie +Clemmie +Clora +Corrie +Dellie +Delma +Dixie +Equilla +Erline +Ether +Ettie +Everlena +Fanny +Faye +Gennie +Harriett +Hellen +Henretta +Henry +Janet +Jaunita +Juliette +Kathlyn +Lavada +Liddie +Lilla +Lilly +Lonie +Malissa +Muriel +Nella +Neva +Ozella +Pansy +Prince +Rochelle +Rowena +Shellie +Tennie +Tillie +Valeria +Vela +Vennie +Verda +Vester +Walter +Willene +Zelda +Mary +Annie +Ruby +Willie +Ruth +Margaret +Mattie +Louise +Mildred +Elizabeth +Lillie +Ethel +Frances +Gladys +Dorothy +Minnie +Bessie +Edna +Lillian +Martha +Evelyn +Sarah +Emma +Helen +Lois +Jessie +Lucille +Clara +Alice +Virginia +Hazel +Thelma +Carrie +Fannie +Eva +Bertha +Hattie +Marie +Irene +Myrtle +Lula +Nellie +Pauline +Ella +Ida +Julia +Rosa +Beatrice +Alma +Susie +Grace +Vera +Inez +Mamie +Gertrude +Lucy +Laura +Anna +Lucile +Maggie +Rosie +Essie +Eunice +Bernice +Edith +Eula +Katie +Velma +Cora +Johnnie +Catherine +Daisy +Esther +Pearl +Florence +Flora +Lena +Alberta +Katherine +Lola +Addie +Sallie +Viola +Agnes +Mae +Ollie +Sara +Ada +Josephine +Elsie +Sadie +Vivian +Doris +Jewell +Mable +Ora +Jewel +Opal +Juanita +Rebecca +Estelle +Georgia +Rose +Lizzie +Eleanor +Nettie +Betty +Beulah +Dora +Leola +Ola +Nancy +Marjorie +Wilma +Christine +Ellen +Ann +Callie +Lorene +Mabel +Nell +Janie +Kathryn +Audrey +Geneva +Lottie +Effie +Anne +Lessie +Eddie +Lela +Leona +Nora +Stella +Carolyn +Eloise +Etta +Bonnie +Cleo +Pearlie +Roberta +Marguerite +Odessa +Mollie +Nina +Barbara +Gussie +Irma +Jean +Kathleen +Sue +Bertie +Estella +Ila +Jane +Jimmie +Claudia +Maudie +Nannie +Naomi +Dollie +Erma +Gracie +Kate +Tommie +Allie +Corine +Della +Margie +Maude +Jennie +Reba +Blanche +Lila +Emily +Henrietta +Marion +Eliza +Flossie +Imogene +Sylvia +Geraldine +Robbie +Billie +Elaine +Evie +Iva +Maxine +Millie +Myrtice +Rachel +Rena +Violet +Amanda +Dessie +Josie +Lou +Queen +Rosetta +Ruthie +Zelma +Adell +Birdie +Francis +Jeanette +Lydia +Selma +Willa +Charlie +Ernestine +Leila +Olivia +Sally +Virgie +Amy +Claudie +Frankie +Letha +Matilda +Norma +Caroline +Charlotte +Elnora +Florine +Idell +Jannie +Roxie +Bettie +Cassie +Cornelia +Elma +Era +Ina +Lilly +Luella +Mozell +Myrtis +Ocie +Ophelia +Rosalie +Shirley +Verna +Avis +Dovie +Hilda +Iris +Lettie +Mittie +Myra +Odell +Rubye +Belle +Clarice +Estell +Hester +Johnie +Linnie +Lorraine +Maurine +May +Peggy +Bennie +Earline +Hannah +Lennie +Lovie +Mavis +Polly +Victoria +Winnie +Augusta +Cecil +Connie +Earnestine +Edwina +Ellie +Harriet +Lora +Lorena +Lue +Susan +Alta +Artie +Bobbie +Celia +Clyde +Earlene +Freddie +Gwendolyn +Jettie +Lelia +Lenora +Lorine +Lucinda +Magnolia +Melba +Myrtie +Nola +Pinkie +Versie +Aileen +Aline +Corrine +Floy +Gertie +Idella +Luvenia +Madge +Miriam +Oma +Rosia +Vida +Voncile +Zora +Amie +Corene +Easter +Ester +Eugenia +Hettie +Joe +Lee +Madeline +Marian +Merle +Muriel +Ouida +Theresa +Una +Vernice +Vesta +Abbie +Amelia +Annette +Audie +Buna +Ceola +Dorthy +Iola +Juliette +Laverne +Lera +Lilla +Lily +Lona +Madie +Malinda +Margret +Mozelle +Pearline +Sybil +Winifred +Alene +Altha +Bethel +Cecile +Clemmie +Dannie +Dixie +Elvie +Fay +Freda +Genevieve +Georgie +Hassie +Icie +Ima +Iona +Ira +John +Lexie +Lonie +Loretta +Ludie +Mandy +Maria +Olive +Pernie +Rubie +Vernie +Wilda +Zella +Adelaide +Adele +Ava +Berta +Carmen +Dona +Ether +Euna +Fanny +Faye +Florene +Goldie +Jesse +Kattie +Lavada +Leatha +Linda +Loraine +Louisa +Lurline +Mayme +Mazie +Nadine +Patricia +Ressie +Rhoda +Rilla +Savannah +Sophie +Tessie +Verla +Zula +Arcola +Arie +Arlene +Berniece +Bulah +Cathrine +Cordelia +Delia +Delphia +Dolores +Eileen +Elmira +Elva +Emmie +Exie +Gay +Gene +Glennie +Harriett +Henretta +Hortense +Idelle +Inell +Isabell +Jack +Joan +Joyce +Leslie +Louvenia +Magdalene +Mammie +Mellie +Neva +Nona +Olean +Pansy +Priscilla +Queenie +Rita +Sophia +Tiny +Trannie +Tressie +Trixie +Trudie +Veola +Vernell +Wanda +Willard +Willia +Alyce +Ara +Bama +Birtie +Buena +Charity +Cleola +Corinne +Dellar +Dena +Dicie +Dolly +Eldora +Elouise +Ethelyn +Florida +Genie +Gennie +Gertha +Ilene +Jacqueline +Jeanne +Joanna +June +Katheryn +Kathrine +Leo +Liddie +Louella +Louie +Loyce +Macie +Maybelle +Mertie +Montez +Nelle +Odie +Paralee +Pecola +Pollie +Retha +Rosella +Rowena +Sammie +Sudie +Tennie +Valeria +Vassie +Veda +Verdie +Verlie +Vernon +Virgil +Winona +Zadie +Mary +Annie +Ruby +Willie +Ruth +Mattie +Louise +Margaret +Mildred +Elizabeth +Lillie +Edna +Bessie +Frances +Gladys +Sarah +Ethel +Dorothy +Minnie +Emma +Helen +Lois +Jessie +Evelyn +Clara +Martha +Lillian +Bertha +Lucille +Alice +Hazel +Thelma +Myrtle +Carrie +Marie +Virginia +Ida +Beatrice +Fannie +Hattie +Pauline +Lula +Vera +Irene +Ella +Grace +Eva +Laura +Nellie +Mamie +Lucile +Anna +Julia +Rosa +Flora +Bernice +Alma +Edith +Daisy +Inez +Rosie +Susie +Eunice +Maggie +Sara +Eula +Cora +Elsie +Essie +Sallie +Gertrude +Velma +Mae +Katherine +Katie +Florence +Lucy +Pearl +Agnes +Estelle +Johnnie +Lena +Doris +Josephine +Catherine +Ollie +Nettie +Opal +Lorene +Ola +Dora +Lizzie +Lola +Christine +Addie +Georgia +Mabel +Eloise +Sadie +Jewel +Nell +Viola +Nancy +Alberta +Vivian +Ora +Nora +Rose +Marjorie +Wilma +Leola +Lottie +Mable +Geneva +Ada +Betty +Beulah +Ellen +Jewell +Audrey +Juanita +Janie +Lela +Lessie +Stella +Marguerite +Ann +Eleanor +Esther +Verna +Rebecca +Bonnie +Effie +Gussie +Jimmie +Kathryn +Leona +Pearlie +Emily +Naomi +Gracie +Roberta +Jean +Rachel +Carolyn +Anne +Jane +Kathleen +Margie +Callie +Eddie +Virgie +Nannie +Odell +Blanche +Flossie +Bertie +Sally +Ila +Rosetta +Violet +Allie +Corine +Ernestine +Irma +Jennie +Cleo +Lila +Della +Francis +Frankie +Rena +Era +Millie +Dollie +Iva +Marion +Mavis +Odessa +Queen +Sue +Tommie +Estella +Etta +Geraldine +Josie +Kate +Lee +Nina +Adell +Amanda +Barbara +Bobbie +Charlotte +Hilda +Maudie +Myra +Ophelia +Reba +Robbie +Johnie +Linnie +Dessie +Earline +Henrietta +Jeanette +May +Bettie +Eliza +Idell +Jannie +Lily +Dixie +Elnora +Lorine +Mittie +Mollie +Mozelle +Myrtice +Winnie +Hannah +Leila +Lydia +Maude +Polly +Roxie +Ruthie +Amy +Billie +Cornelia +Erma +Maxine +Willa +Artie +Augusta +Clarice +Elma +Eugenia +Sybil +Aline +Claudia +Florine +Magnolia +Norma +Olivia +Rubye +Sylvia +Amelia +Birdie +Charlie +Dovie +Harriet +Lora +Lucinda +Ludie +Mandy +Miriam +Pinkie +Savannah +Una +Zelma +Zula +Abbie +Ceola +Claudie +Estell +Iola +Lou +Luella +Melba +Voncile +Bennie +Easter +Elva +Ester +Euna +Hester +Iris +Loretta +Muriel +Myrtis +Nadine +Ozella +Selma +Susan +Victoria +Audie +Avis +Connie +Delia +Faye +Gwendolyn +Imogene +Ina +Lettie +Lura +Merle +Mozell +Dolores +Elaine +Evie +Gertie +Janet +Lelia +Marian +Ouida +Pearline +Sophia +Goldie +James +Janice +Juliette +Lennie +Letha +Lonie +Luvenia +Madie +Nola +Oma +Peggy +Rosalie +Shirley +Theresa +Zora +Aileen +Alta +Anita +Arlene +Dorthy +Earnestine +Emmie +Exie +Florene +Hettie +Jeannette +Lorena +Madge +Molly +Ocie +Octavia +Olene +Ossie +Priscilla +Rhoda +Vesta +Ava +Berta +Caroline +Cassie +Clemmie +Clyde +Earlene +Ellie +Erline +Fay +Ira +Judy +June +Lenora +Lilly +Linda +Lorraine +Lovie +Lue +Myrtie +Neva +Olive +Rita +Rubie +Shellie +Tennie +Winifred +Adele +Alene +Alva +Bulah +Cecil +Celia +Charity +Corinne +Elvira +Erin +Fern +Floy +Freddie +Genevieve +Georgie +Glennie +Henry +Iona +Jettie +Joe +Joyce +Kitty +Lassie +Laverne +Leatha +Lera +Lona +Loraine +Louisa +Mammie +Maud +Maurice +Nona +Novella +Odie +Patricia +Phyllis +Sweetie +Tessie +Tiny +Willia +Zella +Adelle +Allene +Almeda +Alpha +Althea +Annette +Beverly +Claire +Edwina +Fanny +Florrie +Idella +Inell +Jo +Jonnie +Kathrine +Louella +Louvenia +Luna +Margret +Maye +Minerva +Missouri +Nella +Nobie +Oleta +Ona +Pansy +Rutha +Sibyl +Sudie +Veola +Viva +Zola +Arline +Audry +Belle +Bobby +Bula +Burma +Christeen +Claudine +Cordie +Corene +Corrie +Dannie +Delma +Earlean +Eileen +Eldora +Elizebeth +Elvie +Ever +Exa +Foye +Gennie +Gertha +Hellen +Henretta +Ilene +Isabell +Jackie +Jaunita +Joan +Lacy +Liza +Lurline +Lyda +Margurite +Matilda +Maurine +Maxie +Mazie +Nealie +Omie +Orene +Ozell +Ozie +Pernie +Pluma +Queenie +Ressie +Rilla +Tula +Vallie +Vernice +Vertie +Vida +Wanda +Wilhelmina +Willodean +Zera +Altha +Alvis +Angie +Arlie +Arrie +Autie +Bettye +Buelah +Carmen +Carol +Cecile +Cherry +Classie +Constance +Coy +Creola +Dimple +Dolly +Dona +Donnie +Dorcas +Earlie +Elois +Eulalia +Francies +Gaynelle +Gladis +Harriett +Harry +Icie +Ines +Isabelle +Ivy +Jeffie +Juliet +Kittie +Leta +Lexie +Lilie +Littie +Lonnie +Loy +Luciel +Lurlene +Luverne +Macie +Madeline +Mallie +Margarett +Mennie +Mertie +Myrle +Nelle +Onie +Patsy +Retha +Rochelle +Rosemary +Theo +Tillie +Trannie +Veda +Vergie +Vernell +Vernia +Vernie +Vinnie +Wilda +William +Winnifred +Zadie +Mary +Annie +Ruby +Willie +Ruth +Margaret +Mildred +Louise +Mattie +Elizabeth +Lillie +Dorothy +Gladys +Frances +Ethel +Sarah +Helen +Bessie +Edna +Evelyn +Martha +Clara +Minnie +Jessie +Emma +Marie +Virginia +Lucille +Lillian +Fannie +Lois +Nellie +Pauline +Carrie +Bertha +Thelma +Hazel +Alice +Ida +Grace +Irene +Beatrice +Alma +Ella +Myrtle +Lula +Hattie +Mamie +Gertrude +Inez +Rosa +Susie +Eva +Cora +Vera +Lucile +Sara +Rosie +Julia +Edith +Anna +Lucy +Flora +Daisy +Bernice +Eunice +Doris +Laura +Maggie +Velma +Catherine +Johnnie +Pearl +Essie +Katie +Katherine +Mae +Elsie +Lena +Eula +Sallie +Juanita +Viola +Kathleen +Addie +Josephine +Nell +Ada +Estelle +Georgia +Florence +Geneva +Esther +Lizzie +Nancy +Sadie +Ola +Opal +Christine +Jewell +Lola +Agnes +Lorene +Ora +Alberta +Eleanor +Nettie +Lela +Rebecca +Rose +Vivian +Wilma +Dora +Jewel +Leola +Beulah +Eloise +Ollie +Betty +Lottie +Mable +Audrey +Ellen +Marjorie +Stella +Effie +Leona +Ann +Anne +Janie +Kathryn +Bonnie +Callie +Jane +Jennie +Mabel +Margie +Rachel +Nora +Roberta +Jimmie +Carolyn +Verna +Eddie +Gracie +Gussie +Ila +Jeanette +Pearlie +Sue +Winnie +Francis +Marguerite +Marion +Allie +Blanche +Cleo +Erma +Lessie +Nannie +Olivia +Estella +Etta +Jannie +Josie +Naomi +Bettie +Corine +Della +Emily +Reba +Hilda +Rubye +Era +Jean +Lora +Charlie +Maude +Ophelia +Virgie +Barbara +Dollie +Flossie +Geraldine +Lila +Tommie +Bertie +Odessa +Sally +Billie +Eliza +Elnora +Ernestine +Iva +Myra +Amanda +Dovie +Maudie +May +Claudia +Elma +Evie +Henrietta +Lydia +Mollie +Zelma +Estell +Ester +Kate +Leila +Lou +Nina +Odell +Robbie +Frankie +Harriet +Imogene +Maxine +Millie +Myrtice +Ruthie +Willa +Anita +Earline +Florine +Johnie +Madge +Aline +Augusta +Hester +Irma +Lenora +Miriam +Queen +Roxie +Violet +Adell +Artie +Charlotte +Ina +Mavis +Bobbie +Corene +Gertie +Kattie +Lee +Maurine +Mittie +Rena +Theresa +Birdie +Dessie +Hannah +June +Linnie +Lovie +Mozell +Norma +Peggy +Aileen +Claudie +Cornelia +Earnestine +Eugenia +Lettie +Merle +Rosetta +Sybil +Voncile +Clarice +Elouise +Gertha +Iola +Lorraine +Luella +Lura +Madeline +Mandy +Ocie +Polly +Rosalie +Savannah +Una +Annette +Belle +Celia +Freda +Gwendolyn +Inell +Iris +Jettie +Lera +Lue +Margret +Marian +Muriel +Myrtis +Neva +Rubie +Abbie +Alta +Audie +Bennie +Elaine +Joyce +Laverne +Letha +Lorena +Lorine +Madgie +Olive +Pearline +Pinkie +Shirley +Sylvia +Vada +Verlie +Victoria +Amy +Clyde +Corinne +Dixie +Elvie +Emmie +Exie +Fay +Genevieve +Lilly +Lily +Selma +Sophia +Alva +Arline +Avis +Berniece +Berta +Bulah +Caroline +Cassie +Donnie +Ellie +Elva +Euna +Faye +Isabelle +Jo +Lelia +Lonnie +Ludie +Maebell +Magdalene +Magnolia +Matilda +Maud +Mazie +Melba +Myrtie +Olene +Ozell +Rosia +Susan +Amelia +Annabelle +Arlene +Cecil +Claudine +Clemmie +Delia +Dorris +Earlean +Easter +Ezell +Idell +Idella +Jamie +Janet +Lucinda +Lurline +Mayme +Nola +Nona +Ona +Ozella +Pansy +Tessie +Veda +Vergie +Vida +Zola +Arlena +Arvie +Cecile +Clayton +Clois +Dona +Edwina +Elise +Elvira +Goldie +Hassie +Hettie +Iona +Ira +Isabell +John +Juliette +Lennie +Loretta +Louie +Louisa +Lulu +Luvenia +Malinda +Mammie +Maybell +Mozelle +Nelle +Oma +Ouida +Patricia +Phyllis +Sammie +Tennie +Tina +Tressie +Vernice +Vesta +Zora +Adele +Allene +Angie +Ara +Ardell +Carol +Charity +Charles +Connie +Corrie +Dannie +Delores +Dimple +Earlene +Edythe +Elmira +Emogene +Florene +Floy +Freddie +Georgie +Ione +Isabella +James +Jeannette +Jenny +Joan +Lavada +Lilla +Linda +Madie +Marcella +Maria +Mariah +Nadine +Novella +Ozie +Paralee +Rachael +Ressie +Retha +Robert +Sibyl +Trudie +Vassie +Vernon +Versie +Willia +Zada +Zula +Adeline +Adelle +Agatha +Alene +Alpha +Althea +Alyce +Annis +Arnie +Arrie +Blanch +Brooksie +Cathrine +Clora +Constance +Dolly +Dolores +Eileen +Elna +Eulalia +Gennie +Glennie +Hellen +Ima +Izola +Jeffie +Jeraldine +Joanna +Jonnie +Judy +Levis +Louella +Louvenia +Luevenia +Lurlene +Macie +Maebelle +Maedell +Maxie +Mennie +Missouri +Molly +Mona +Noma +Octavia +Oleta +Olga +Ossie +Ottie +Pattie +Pluma +Queenie +Regina +Rosalee +Rowena +Sidney +Syble +Tinnie +Valerie +Vennie +Verlon +Vester +Wilda +Winifred +Mary +Annie +Willie +Margaret +Ruby +Mildred +Ruth +Mattie +Louise +Frances +Elizabeth +Dorothy +Helen +Ethel +Gladys +Lillie +Edna +Evelyn +Bessie +Martha +Jessie +Minnie +Sarah +Bertha +Virginia +Alice +Clara +Hazel +Thelma +Lucille +Lillian +Lois +Marie +Emma +Nellie +Myrtle +Carrie +Irene +Ida +Pauline +Julia +Mamie +Lula +Fannie +Rosa +Ella +Edith +Hattie +Grace +Eva +Vera +Bernice +Catherine +Beatrice +Laura +Inez +Rosie +Alma +Susie +Sara +Flora +Josephine +Gertrude +Doris +Essie +Anna +Johnnie +Lucy +Maggie +Cora +Katie +Lucile +Georgia +Eunice +Elsie +Florence +Mae +Ada +Daisy +Eula +Velma +Viola +Katherine +Sallie +Christine +Lorene +Pearl +Opal +Mable +Juanita +Lena +Sadie +Geneva +Alberta +Nora +Addie +Jewell +Nancy +Nettie +Ora +Agnes +Ola +Vivian +Ollie +Jewel +Mabel +Lela +Lizzie +Eloise +Estelle +Esther +Marjorie +Ann +Rose +Gussie +Lottie +Rebecca +Betty +Janie +Rachel +Wilma +Effie +Lola +Nell +Eleanor +Margie +Marguerite +Stella +Leola +Beulah +Kathleen +Bonnie +Ellen +Dora +Roberta +Jane +Callie +Jimmie +Kathryn +Leona +Audrey +Cleo +Henrietta +Lessie +Winnie +Ernestine +Hilda +Pearlie +Sue +Eddie +Emily +Jeanette +Allie +Anne +Geraldine +Marion +Tommie +Francis +Lee +Blanche +Flossie +Jean +Robbie +Carolyn +Gracie +Violet +Corine +Ila +May +Verna +Della +Elnora +Mollie +Naomi +Sylvia +Irma +Lila +Merle +Queen +Etta +Odessa +Sybil +Willa +Bobbie +Erma +Iva +Josie +Lou +Mavis +Maxine +Nina +Odell +Augusta +Bertie +Era +Kate +Maudie +Reba +Rubye +Eliza +Ina +Jennie +Lydia +Norma +Amanda +Billie +Charlotte +Earline +Estell +Estella +Frankie +Leila +Lue +Rosetta +Sally +Claudia +Evie +Jannie +Maude +Rena +Sibyl +Lora +Myra +Nannie +Ruthie +Barbara +Bettie +Dovie +Hester +Johnie +Mittie +Adell +Dollie +Ellie +Ester +Linnie +Olivia +Patricia +Aline +Bennie +Birdie +Cornelia +Jettie +Joyce +Susan +Syble +Voncile +Charlie +Dixie +Easter +Elma +Harriet +Letha +Lorraine +Mandy +Melba +Ophelia +Theresa +Dessie +Iola +June +Millie +Miriam +Myrtice +Roxie +Annette +Elouise +Faye +Idell +Ludie +Polly +Rosalie +Virgie +Amy +Avis +Cassie +Clemmie +Elaine +Lenora +Lorine +Luella +Marian +Olene +Victoria +Claudie +Florine +Idella +Inell +Laverne +Louella +Lovie +Madeline +Mayme +Mozelle +Nola +Zelma +Amelia +Cecil +Eugenia +Euna +Fay +Floy +Freda +Genevieve +Georgie +Gertha +Goldie +John +Magnolia +Pinkie +Regina +Shirley +Tressie +Adele +Alta +Ceola +Clarice +Connie +Dolly +Dorthy +Gwendolyn +Isabelle +Jeannette +Lelia +Lennie +Lily +Madge +Mazie +Patsy +Rosia +Selma +Vernie +Winifred +Aileen +Anita +Audie +Caroline +Claudine +Corene +Delia +Emmie +Freddie +Hannah +Hettie +Jonnie +Margret +Myrtis +Oma +Pearline +Peggy +Theola +Trudie +Vida +Zora +Alva +Cynthia +Earlene +Earnestine +Edythe +Exa +Imogene +Iris +Lera +Leslie +Linda +Lonnie +Loretta +Macie +Muriel +Rubie +Versie +Adelle +Belle +Celia +Corean +Creola +Gertie +Iona +Ira +Jeanne +Kattie +Lettie +Lorena +Marietta +Matilda +Maurine +Mozell +Myrtie +Nona +Paralee +Phyllis +Sammie +Savannah +Sophia +Zella +Abbie +Alpha +Arthur +Bama +Berniece +Blanch +Bulah +Cecile +Celestine +Charity +Clyde +Earlie +Edwina +Elva +Gennie +Gloria +Henry +Isabel +Jaunita +Lilly +Lucinda +Margueritte +Maxie +Nadine +Nan +Ocie +Octavia +Olga +Olive +Ozella +Sophie +Tessie +Una +Verda +Verla +Alene +Altha +Ara +Ardell +Artie +Ava +Berta +Birda +Blondell +Buena +Burma +Carol +Cathryn +Clora +Delma +Donnie +Eldora +Elise +Elmira +Exie +Florene +Harriett +Hellen +Ima +Isabell +James +Janet +Joan +Kay +Leatha +Lona +Lular +Luna +Lura +Maud +Maybelle +Melvina +Molly +Myrl +Nella +Nelle +Olevia +Pansy +Priscilla +Queenie +Rilla +Robert +Theo +Tiny +Vergie +Walter +Willia +Zola +Althea +Arcola +Ardella +Azzie +Brooksie +Charline +Cleola +Climmie +Conola +Constance +Corinne +Corrine +Dannie +Dimple +Dolores +Donie +Drucilla +Earlean +Elna +Elvie +Ennis +Erin +Etha +Foy +Glennie +Ivey +Joy +Julie +Juliette +Lallie +Lassie +Lilie +Lina +Lonie +Loraine +Loree +Louisa +Lurlene +Luvenia +Magdalene +Maple +Marilyn +Maurice +Maybell +Mayola +Mona +Novella +Omie +Ona +Ozell +Ozelle +Pattie +Pluma +Ressie +Rhoda +Rosalee +Tennie +Trixie +Trudy +Valeria +Velva +Venice +Veola +Vernell +Vertie +Vinnie +Vonceil +Willene +Zettie +Mary +Annie +Willie +Mildred +Ruby +Louise +Margaret +Ruth +Dorothy +Mattie +Elizabeth +Helen +Frances +Lillie +Ethel +Sarah +Gladys +Minnie +Edna +Martha +Evelyn +Emma +Bessie +Marie +Lois +Jessie +Alice +Lucille +Clara +Hazel +Bertha +Virginia +Carrie +Thelma +Lillian +Myrtle +Edith +Nellie +Fannie +Ida +Ella +Pauline +Eva +Irene +Julia +Hattie +Rosa +Rosie +Doris +Vera +Mamie +Alma +Grace +Inez +Lula +Susie +Anna +Katie +Beatrice +Catherine +Sara +Bernice +Eunice +Lucile +Johnnie +Eula +Maggie +Velma +Cora +Josephine +Essie +Lucy +Laura +Gertrude +Flora +Juanita +Christine +Lizzie +Florence +Viola +Elsie +Mae +Nancy +Ada +Daisy +Georgia +Pearl +Agnes +Jewel +Lorene +Sadie +Janie +Lena +Mable +Opal +Katherine +Alberta +Vivian +Betty +Ollie +Sallie +Ora +Mabel +Lola +Eloise +Nettie +Ola +Geneva +Nell +Marjorie +Estelle +Rebecca +Rose +Eleanor +Wilma +Addie +Dora +Lottie +Ellen +Esther +Jewell +Effie +Ann +Audrey +Margie +Pearlie +Kathleen +Nora +Gussie +Eddie +Leola +Tommie +Kathryn +Lela +Marguerite +Stella +Leona +Jimmie +Cleo +Bonnie +Geraldine +Naomi +Rachel +Della +Jane +Gracie +Beulah +Marion +Odessa +Etta +Nannie +Roberta +Sybil +Hilda +Winnie +Carolyn +Corine +Lessie +Erma +Jean +Jeanette +Jennie +Anne +Ernestine +Reba +Claudia +Imogene +Mavis +Norma +Violet +Allie +Francis +Ina +Ophelia +Dollie +Irma +Kate +Sylvia +Willa +Callie +Era +Flossie +Ila +Verna +Earline +Elnora +Melba +Mollie +Barbara +Bertie +Blanche +Evie +Maudie +Rosetta +Charlotte +Cornelia +Frankie +Iva +Maude +Robbie +Eliza +Emily +Estella +Johnie +Lee +Mittie +Myra +Sue +Amanda +Bobbie +Henrietta +Olivia +Sibyl +Virgie +Jannie +Joyce +Sally +Adell +Claudie +Josie +June +Lila +Rena +Bettie +Clarice +Lue +Maxine +Mazie +Myrtice +Odell +Gwendolyn +Lorine +Miriam +Rubye +Victoria +Luella +Millie +Amy +Billie +Eugenia +Hester +Lora +Lydia +Nina +Olive +Queen +Zelma +Iris +Leila +Ruthie +Dessie +Dovie +Faye +Florine +Georgie +Lonnie +Mozell +Shirley +Syble +Augusta +Earnestine +Elva +Ester +Lorraine +May +Pinkie +Roxie +Dorthy +Madge +Marian +Nadine +Aileen +Caroline +Cassie +Ceola +Delia +Florene +Lennie +Lera +Linnie +Loraine +Loretta +Merle +Nola +Peggy +Vida +Anita +Easter +Elaine +Freddie +Louisa +Mozelle +Polly +Rosalie +Voncile +Winifred +Abbie +Alene +Alta +Arlene +Birdie +Charlie +Connie +Elouise +Floy +Freda +Gertie +Lelia +Lettie +Lucinda +Matilda +Rubie +Susan +Tressie +Aline +Alline +Annette +Avis +Dixie +Dolly +Edythe +Ellie +Elvie +Gertha +Hannah +Idell +Idella +Lenora +Letha +Lou +Ludie +Luvenia +Margarette +Ozell +Priscilla +Verla +Agatha +Alva +Claudine +Corrine +Cynthia +Dannie +Goldie +Inell +Ira +Jeannette +Lily +Myrtis +Ocie +Patricia +Pearline +Alyce +Bennie +Cecil +Clyde +Eldora +Elmer +Estell +Exie +Hettie +Janet +Jeanne +Laverne +Madeline +Madie +Magnolia +Novella +Orene +Ouida +Paralee +Rosia +Savannah +Selma +Vesta +Wilda +Artie +Charlene +Creola +Donnie +Elna +Elzie +Genevieve +Hazle +Henry +Isabell +James +John +Louella +Lovie +Magdalene +Malinda +Mammie +Mandy +Margret +Maureen +Odie +Oma +Ossie +Rossie +Sammie +Tempie +Tessie +Verbie +Verda +Vernice +Zella +Zula +Althea +Amelia +Audie +Bama +Birtha +Bulah +Celia +Charity +Clora +Corene +Elisabeth +Elma +Elvira +Erie +Fay +Harriet +Hellen +Helon +Jettie +Kitty +Lilly +Lona +Lyda +Maurine +Nelle +Octavia +Oda +Olene +Ozella +Rhoda +Rita +Vernell +Vinnie +Vonnie +Amie +Arlean +Arrie +Bell +Berniece +Buna +Cathryn +Cecelia +Constance +Elise +Emmer +Gennie +Hassie +Hildred +Hortense +Isabel +Isabelle +Janice +Jo +Joe +Joy +Kathrine +Lavada +Leatha +Lida +Linda +Lorena +Louie +Maebell +Mariah +Marietta +Marylou +Maybell +Myrtie +Omie +Pansy +Patsy +Phyllis +Queenie +Retha +Rosemary +Sophia +Vassie +Vernie +Willodean +Alean +Allene +Alpha +Angie +Annabelle +Arline +Berta +Blanch +Bula +Burma +Carlean +Christene +Classie +Clemmie +Cordie +Daisey +Delma +Delphine +Earlene +Edwina +Elmira +Emmie +Evlyn +Florida +Gaynell +Girlie +Harriett +Ima +Iola +Jamie +Jesse +Kattie +Lonie +Louvenia +Loyce +Lura +Marcella +Margarett +Maybelle +Melva +Minerva +Muriel +Olar +Olean +Oneida +Ottie +Pearlena +Prince +Ressie +Rilla +Robert +Rowena +Sophie +Theresa +Tillie +Trudie +Vada +Vernon +Willene +Zora +Adele +Allean +Annice +Arlina +Arthur +Belle +Beverly +Burnice +Carlie +Carol +Cecile +Celestine +Charley +Charlsie +Cordelia +Dellar +Delora +Dorris +Earlean +Eather +Eileen +Elease +Elizebeth +Erin +Ether +Ethyl +Eudora +Euna +Evelene +Floyce +Foy +Frieda +Gearldine +George +Girtha +Henretta +Hulda +Izora +Jaunita +Jeffie +Jerry +Joan +Jonnie +Judy +Julie +Juliet +Laurine +Lella +Leora +Lilla +Liza +Loree +Lovella +Luna +Macie +Maria +Mayme +Mennie +Missouri +Nealie +Neva +Ona +Ova +Ozelle +Pat +Pernie +Pluma +Rochelle +Rutha +Theda +Trudy +Una +Veola +Verlie +Verlon +Wanda +Westonia +Wilhelmina +Willia +William +Woodie +Zola +Mary +Annie +Margaret +Willie +Mildred +Ruby +Ruth +Dorothy +Louise +Helen +Mattie +Frances +Gladys +Elizabeth +Sarah +Ethel +Evelyn +Lillie +Virginia +Edna +Martha +Clara +Lillian +Bessie +Minnie +Emma +Lois +Lucille +Hazel +Bertha +Jessie +Myrtle +Pauline +Marie +Doris +Fannie +Alice +Thelma +Irene +Nellie +Lula +Beatrice +Ella +Carrie +Edith +Rosa +Vera +Mamie +Ida +Katherine +Rosie +Eva +Hattie +Inez +Sara +Laura +Catherine +Anna +Bernice +Johnnie +Julia +Gertrude +Juanita +Eunice +Velma +Alma +Grace +Lucile +Lucy +Katie +Susie +Flora +Mae +Cora +Essie +Georgia +Maggie +Kathleen +Florence +Daisy +Josephine +Mable +Lorene +Opal +Elsie +Sallie +Agnes +Viola +Christine +Lena +Addie +Marjorie +Nettie +Sadie +Vivian +Pearl +Ann +Eloise +Rebecca +Ora +Ada +Lola +Eula +Jewel +Nancy +Betty +Geneva +Mabel +Ollie +Ola +Alberta +Audrey +Janie +Nell +Wilma +Kathryn +Rose +Eleanor +Lizzie +Dora +Jimmie +Margie +Lottie +Nora +Beulah +Bonnie +Leola +Violet +Ellen +Estelle +Jewell +Rachel +Della +Jean +Jennie +Anne +Marguerite +Jeanette +Eddie +Esther +Jane +Lela +Roberta +Stella +Pearlie +Verna +Carolyn +Effie +Geraldine +Nina +Blanche +Gracie +Gussie +Leona +Cleo +Francis +Mollie +Naomi +Reba +Flossie +Maxine +Melba +Callie +Earline +Ernestine +Lessie +Lila +Winnie +Hilda +Ophelia +Imogene +Nannie +Norma +Odessa +Sybil +Irma +Ruthie +Corine +Sue +Etta +Maudie +Mavis +Queen +Bettie +Charlotte +Elnora +Ila +Lue +Marion +Millie +Theresa +Era +Adell +Barbara +Bertie +Estella +Lou +Mittie +Robbie +Sally +Tommie +Billie +Clarice +Emily +Frankie +Iola +Iva +June +Myra +Allie +Charlie +Cornelia +Dessie +Jannie +Rubye +Estell +Myrtice +Anita +Ellie +Ina +Johnie +Kate +Miriam +Earnestine +Eliza +Josie +Henrietta +Lydia +Maude +Sibyl +Virgie +Aline +Claudia +Elaine +Elma +Evie +Leila +Lenora +Linnie +Rosetta +Dollie +Florine +Gwendolyn +May +Myrtis +Olivia +Rena +Shirley +Dorthy +Erma +Ester +Lee +Lonnie +Lora +Margret +Merle +Mozelle +Artie +Bennie +Claudie +Eugenia +Joyce +Lettie +Luella +Madge +Odell +Polly +Syble +Sylvia +Willa +Amanda +Elouise +Mazie +Rosalie +Rosemary +Aileen +Annette +Augusta +Connie +Dovie +Exie +Hannah +Oma +Peggy +Zelma +Avis +Bobbie +Cassie +Celia +Elva +Genevieve +Jettie +Lelia +Linda +Lorena +Ludie +Lura +Matilda +Pinkie +Rita +Rubie +Savannah +Victoria +Willene +Abbie +Amy +Fay +Gertha +Inell +Isabelle +Janice +Lennie +Letha +Lilly +Lorine +Lovie +Lucinda +Nadine +Neva +Selma +Amelia +Earlene +Easter +Harriet +Idell +Jeanne +Luvenia +Sammie +Adelaide +Alene +Audie +Caroline +Florene +Georgie +Gertie +Janet +Lera +Lily +Madeline +Magdalene +Mandy +Marian +Myrtie +Olene +Patricia +Roxie +Theo +Tressie +Voncile +Clemmie +Corene +Corrie +Donnie +Freddie +Iona +James +Laverne +Loraine +Lorraine +Madie +Magnolia +Ouida +Ozell +Queenie +Rossie +Susan +Trudie +Vergie +Verla +Vernell +Willodean +Allene +Birdie +Clyde +Corinne +Dixie +Donna +Dorothea +Elvie +Elvira +Emmer +Erline +Ether +Floy +Freda +Goldie +Hester +Idella +Iris +Jaunita +Jonnie +Juliette +Mammie +Ossie +Patsy +Priscilla +Rilla +Sudie +Vida +Vinnie +Zella +Aggie +Alta +Arlene +Birtha +Bula +Bulah +Carol +Creola +Delois +Dimple +Emmie +Gaynell +George +Joe +Lavada +Lida +Lona +Louella +Lyda +Macie +Maebell +Mozell +Nola +Ozella +Pearline +Retha +Rosia +Tessie +Una +Vada +Wanda +Adele +Arie +Aurelia +Cathrine +Cecil +Ceola +Claudine +Constance +Cynthia +Dorris +Edwina +Elisabeth +Euna +Faye +Joan +Kathrine +Lavinia +Loree +Louvenia +Malinda +Marilyn +Maud +Mayme +Muriel +Novella +Olga +Pluma +Ressie +Rosalee +Sophia +Theda +Tiny +Vertie +Vicie +Yvonne +Zelda +Almeda +Almeta +Angie +Annabelle +Brownie +Buna +Cecile +Christeen +Christina +Clementine +Dannie +Delia +Delores +Dona +Edythe +Elna +Erin +Etha +Francies +Gloria +Harriett +Hellen +Hilma +Ira +Isabel +Izora +Jamie +Jo +Julie +Kattie +Kitty +Leo +Leslie +Leta +Liza +Loretta +Lossie +Loyce +Luciel +Margarette +Maurine +Nan +Nila +Ocie +Olive +Omie +Phoebe +Regina +Rochelle +Tempie +Vassie +Veola +Vernie +Wilda +William +Zora +Adelle +Alpha +Alvie +Amie +Ammie +Anice +Ara +Arline +Arnell +Arrie +Audra +Augustine +Belle +Beryl +Bettye +Capitola +Charity +Chloe +Claire +Clora +Delphia +Dera +Dolly +Dolores +Dortha +Eather +Elene +Elinor +Ethelene +Ever +Exa +Ezell +Ezelle +Georgena +Georgiana +Gladis +Hassie +Helon +Irine +Janette +Jeanie +Jeannette +John +Johnny +Jossie +Joy +Kay +Leora +Lilie +Lilla +Lorean +Louisa +Lucie +Madgie +Mallie +Marget +Maria +Melissa +Melva +Melvina +Mertice +Mertie +Missouri +Montez +Nona +Odie +Orene +Orlean +Pansy +Phyllis +Robert +Rubbie +Selena +Tennie +Vennie +Verdell +Vernice +Vesta +Vina +Willard +Wilmer +Wynelle +Zettie +Mary +Annie +Dorothy +Willie +Margaret +Mildred +Ruby +Louise +Ruth +Frances +Helen +Gladys +Sarah +Mattie +Elizabeth +Martha +Lillie +Virginia +Evelyn +Edna +Ethel +Doris +Minnie +Hazel +Bessie +Alice +Marie +Lois +Emma +Jessie +Bertha +Pauline +Thelma +Clara +Lillian +Lucille +Carrie +Ida +Nellie +Bernice +Irene +Julia +Catherine +Myrtle +Edith +Fannie +Ella +Lula +Essie +Eva +Laura +Mamie +Beatrice +Vera +Sara +Alma +Grace +Johnnie +Lucile +Christine +Hattie +Inez +Rosa +Geneva +Marjorie +Anna +Cora +Katherine +Susie +Velma +Lucy +Rosie +Eunice +Eula +Josephine +Katie +Mable +Juanita +Betty +Florence +Audrey +Flora +Eloise +Georgia +Gertrude +Mae +Maggie +Margie +Opal +Lena +Lorene +Vivian +Alberta +Nancy +Nell +Agnes +Daisy +Elsie +Ola +Jewell +Pearl +Sallie +Lola +Nettie +Addie +Jewel +Lizzie +Ollie +Viola +Jean +Esther +Geraldine +Kathleen +Mabel +Estelle +Ora +Dora +Kathryn +Rose +Sadie +Ada +Lela +Bonnie +Ellen +Wilma +Carolyn +Eleanor +Rebecca +Jimmie +Leola +Lottie +Ann +Stella +Janie +Ernestine +Jane +Marion +Nora +Roberta +Marguerite +Gussie +Pearlie +Rachel +Norma +Beulah +Gracie +Lessie +Violet +Jeanette +Callie +Mavis +Cleo +Sybil +Winnie +Earline +Jennie +Leona +Nina +Anne +Blanche +Effie +Ila +Melba +Eddie +Emily +Irma +Maxine +Billie +Flossie +Hilda +Naomi +Tommie +Reba +Verna +Nannie +Robbie +Allie +Barbara +Estella +Francis +Ina +May +Mollie +Myrtice +Etta +Imogene +Myra +Odessa +Rosetta +Sally +Corine +Lila +Ruthie +Frankie +Olivia +Bobbie +Josie +Kate +Dessie +Faye +Henrietta +Odell +Elaine +Erma +Ophelia +Aline +Bettie +Gwendolyn +Lou +Millie +Miriam +Sue +Virgie +Dollie +Lorine +Sylvia +Voncile +Dorthy +Earnestine +Era +June +Lelia +Lora +Rubye +Syble +Tressie +Della +Freddie +Gertha +Joyce +Maudie +Mozell +Theresa +Victoria +Amanda +Claudia +Cornelia +Elnora +Evie +Gloria +Lydia +Mittie +Augusta +Charlie +Connie +Jannie +Linnie +Queen +Shirley +Adell +Amy +Cassie +Dovie +Estell +Iva +Lee +Merle +Bertie +Charlotte +Eliza +Eugenia +Hannah +Lorraine +Muriel +Nadine +Peggy +Rena +Rosalie +Iona +Myrtis +Rubie +Willodean +Alta +Anita +Emmie +Johnie +Leila +Letha +Lily +Lucinda +Madeline +Maude +Mozelle +Patricia +Polly +Roxie +Susan +Una +Amelia +Fay +Florene +Gertie +Idell +Iola +Ludie +Rita +Sibyl +Wanda +Zora +Birdie +Clarice +Corene +Elma +Ester +Florine +Harriet +Joe +Lettie +Magnolia +Mandy +Margarette +Marian +Oma +Ouida +Dixie +Edwina +Georgie +Hester +Iris +Lenora +Lera +Lue +Madge +Myrtie +Retha +Tessie +Trudie +Willa +Bennie +Bettye +Celia +Claudie +Constance +Earlene +Earlie +Easter +George +Jeanne +Lavada +Lonnie +Maurine +Melva +Nola +Nona +Pearline +Pinkie +Verla +Yvonne +Aileen +Alyce +Arrie +Berniece +Berta +Caroline +Claire +Clemmie +Clyde +Dorris +Gaynell +Glennie +Idella +Ira +James +Lilly +Loretta +Luella +Lurline +Margret +Ozella +Ozie +Rosia +Wilda +Willene +Alpha +Alva +Corinne +Elise +Genevieve +Hellen +Hellon +Janet +Jo +Judy +Juliette +Lennie +Loraine +Louella +Lovie +Luverne +Madie +Mazie +Molly +Olene +Queenie +Ressie +Rhoda +Rosalee +Rosemary +Rossie +Vada +Vernell +Winifred +Altha +Annette +Carol +Delia +Dessa +Eileen +Ellie +Elna +Elouise +Elva +Florida +Floy +Gennie +Hettie +Inell +Janice +Jaunita +Kathrine +Kattie +Lona +Lorena +Luna +Magdalene +Missouri +Nelle +Octavia +Olive +Omie +Ossie +Phyllis +Selma +Vernie +Winona +Zelma +Abbie +Adelle +Alene +Allene +Audie +Audra +Bama +Cathrine +Cecile +Ceola +Dolores +Edythe +Elinor +Elmira +Elois +Erin +Goldie +Harriett +Helon +Irine +Jackie +John +Jonnie +Justine +Laurie +Leora +Louisa +Louvenia +Lura +Mariah +Nita +Novella +Olean +Oleta +Ozell +Patsy +Regina +Savannah +Venice +Viva +Willodene +Zadie +Zola +Adeline +Alean +Alfreda +Angeline +Annabelle +Artie +Blondell +Charlsie +Clifford +Corrie +Creola +Dimple +Dortha +Ethelyn +Exie +Freida +Hazle +Isabel +Isabelle +Jacqueline +Lady +Lassie +Laverne +Leatha +Leslie +Linda +Malissa +Matilda +Ottie +Pansy +Princess +Robert +Sophia +Theo +Verbie +Vergie +Vida +Zera +Zettie +Zula +Adelaide +Adele +Althea +Arie +Arlene +Arline +Augustine +Aurelia +Avis +Blanch +Buna +Cathryn +Chaney +Clarine +Cleola +Cordelia +Corrine +Dean +Delilah +Dellar +Delma +Delores +Dolly +Dona +Dorothea +Earlean +Eldora +Elvie +Emogene +Erline +Esta +Florrie +Francine +Freda +Helene +Hortense +Ilene +Ima +Ivy +Jettie +Joanna +Loree +Lucretia +Luvenia +Macie +Malinda +Mammie +Marcella +Margarett +Margrette +Marilyn +Marylou +Maxie +Mozella +Myrle +Nelda +Neva +Ocie +Oda +Priscilla +Rosebud +Sammie +Sula +Tennie +Tina +Trannie +Valeria +Vassie +Veda +Venie +Verlie +Verma +Vernice +Vesta +Vina +Vona +Zella +Mary +Annie +Dorothy +Willie +Margaret +Ruby +Mildred +Louise +Helen +Frances +Ruth +Mattie +Elizabeth +Sarah +Lillie +Martha +Evelyn +Edna +Virginia +Gladys +Minnie +Ethel +Emma +Doris +Bessie +Hazel +Lois +Marie +Alice +Jessie +Ella +Bertha +Lillian +Lucille +Fannie +Irene +Carrie +Clara +Thelma +Pauline +Hattie +Rosie +Rosa +Sara +Nellie +Ida +Edith +Lula +Catherine +Myrtle +Inez +Juanita +Bernice +Beatrice +Julia +Johnnie +Florence +Eva +Vera +Betty +Mamie +Anna +Susie +Flora +Alma +Marjorie +Laura +Josephine +Eunice +Grace +Katherine +Lucile +Katie +Eula +Margie +Velma +Cora +Essie +Lucy +Maggie +Gertrude +Agnes +Vivian +Christine +Mae +Geneva +Mable +Georgia +Lorene +Elsie +Opal +Daisy +Lena +Ola +Jewel +Eloise +Ollie +Ora +Kathleen +Nettie +Addie +Viola +Pearl +Ada +Sallie +Jewell +Rose +Wilma +Lola +Lizzie +Nancy +Mabel +Audrey +Esther +Sadie +Nell +Estelle +Jimmie +Eleanor +Alberta +Rebecca +Geraldine +Leola +Ellen +Carolyn +Nora +Dora +Stella +Jean +Marguerite +Janie +Lottie +Marion +Bonnie +Eddie +Effie +Emily +Imogene +Ernestine +Lela +Nannie +Jeanette +Kathryn +Rachel +Ann +Blanche +Maxine +Pearlie +Earline +Gussie +Lessie +Callie +Allie +Myra +Norma +Odessa +Roberta +Billie +Naomi +Beulah +Francis +Hilda +Jane +Anne +Barbara +Cleo +Flossie +Iva +Verna +Bettie +Estella +Sue +Winnie +Gracie +Robbie +Charlotte +Melba +Olivia +Reba +Era +Ophelia +Queen +Frankie +Jennie +Leona +Sybil +Della +Jannie +Maudie +Mavis +Nina +Gloria +Lila +Odell +Ruthie +Peggy +Tommie +Corine +Eliza +Elnora +Erma +Rosetta +Etta +Ila +Johnie +Lorine +Millie +Myrtice +Claudia +Irma +Lou +Merle +Violet +Amanda +Faye +Henrietta +Miriam +Dorthy +Estell +Hester +Joyce +Lorraine +Lydia +Voncile +Bennie +Dollie +Freddie +Lee +Lelia +Sylvia +Augusta +Celia +Elma +Eugenia +June +Rena +Sally +Dessie +Elaine +Elouise +Fay +Florine +Josie +May +Mittie +Mozell +Patricia +Rubye +Theresa +Wanda +Cornelia +Gwendolyn +Hannah +Leila +Marian +Syble +Willa +Zelma +Adell +Bobbie +Dixie +Ina +Mollie +Nola +Polly +Virgie +Annette +Bertie +Birdie +Claudie +Harriet +Iola +Lenora +Linnie +Myrtis +Anita +Earnestine +Evie +Jettie +Lue +Maude +Mozelle +Rosalie +Charlie +Clarice +Earlene +Gertha +Inell +Iris +Dovie +Easter +Georgie +Idell +Kate +Kattie +Lora +Lucinda +Luella +Matilda +Mazie +Rubie +Susan +Amy +Cassie +Clyde +Ellie +Ester +Genevieve +Jacqueline +Mandy +Muriel +Nadine +Winifred +Artie +Avis +Emmie +Laverne +Nona +Ouida +Sibyl +Vernell +Aileen +Aline +Alta +Charles +Connie +Donnie +Florene +Jo +John +Lennie +Madeline +Margret +Marilyn +Olene +Wilda +Alva +Audie +Corene +Delia +Janet +Lovie +Madie +Oma +Patsy +Pearline +Pinkie +Roxie +Zula +Arlene +Carol +Creola +Cynthia +Edwina +Gertie +Glennie +Hallie +James +Jonnie +Linda +Louella +Luvenia +Madge +Magnolia +Mayme +Myrl +Ozell +Rosia +Sammie +Selma +Theo +Willene +Willodean +Zora +Adelle +Alpha +Arrie +Caroline +Corrine +Dorris +Elva +Floy +George +Idella +Ira +Joan +Juliette +Lilly +Louisa +Ludie +Lura +Marcella +Maudine +Maurine +Nan +Olean +Phyllis +Tessie +Vesta +Abbie +Alene +Allene +Amelia +Bettye +Claudine +Dolly +Elise +Fanny +Ilean +Janice +Judy +Lera +Letha +Lurline +Mariah +Marietta +Myrtie +Ocie +Olga +Shirley +Tennie +Versie +Victoria +Vida +Arvie +Ceola +Classie +Corrie +Delilah +Edythe +Elvie +Emogene +Hettie +Ilene +Ima +Iona +Jaunita +Jinnie +Joe +Katheryn +Lily +Lonnie +Lorena +Loretta +Macie +Maebell +Mallie +Mammie +Margarett +Natalie +Neva +Novella +Olive +Ovell +Ozella +Paralee +Retha +Tula +Una +Vernice +Vernie +Yvonne +Adele +Alvie +Annis +Ara +Ava +Blanchie +Camilla +Cecelia +Claire +Clora +Cordie +Donna +Earlie +Elinor +Elisabeth +Elvira +Erline +Eudora +Eulean +Euna +Ezell +Gaynell +Gene +Hazle +Henry +Isabell +Isabelle +Jeanne +Johnny +Kathrine +Kathryne +Lavada +Lettie +Malinda +Margarette +Marveline +Octavia +Omie +Orene +Ozelle +Ozie +Pearlean +Pluma +Priscilla +Ressie +Rita +Rosalee +Rosemary +Rossie +Sophia +Tressie +Trudie +Vinnie +Wynell +Zola +Adelaide +Adelia +Alyce +Angeline +Angie +Arcola +Arline +Arnell +Arthur +Audry +Bama +Berniece +Berta +Birtha +Cathryn +Charlene +Corinne +Cumi +Delma +Delphine +Dimple +Dolores +Dorotha +Dorothea +Dura +Elois +Eria +Erin +Ethelene +Etter +Fairy +Freda +Girtha +Harriett +Hellen +Helon +Henretta +Hildred +Irine +Jamie +Jossie +Juliet +Lavern +Lavonia +Leslie +Lonie +Louvenia +Loyce +Luetta +Lurlene +Maple +Marylou +Maud +Melissa +Molly +Montez +Nelda +Nelma +Neoma +Nita +Odelle +Ossie +Peggie +Rheba +Theda +Vada +Veola +Vermell +Vonceil +Walter +Wenona +Willia +Zella +Mary +Annie +Dorothy +Willie +Margaret +Mildred +Ruby +Louise +Ruth +Helen +Frances +Mattie +Martha +Evelyn +Sarah +Elizabeth +Lillie +Doris +Gladys +Virginia +Emma +Edna +Ethel +Lois +Minnie +Clara +Lillian +Hazel +Marie +Bessie +Thelma +Lucille +Juanita +Alice +Lula +Catherine +Nellie +Jessie +Pauline +Fannie +Bertha +Carrie +Bernice +Sara +Ida +Irene +Betty +Ella +Hattie +Myrtle +Vera +Edith +Johnnie +Alma +Rosie +Eva +Susie +Beatrice +Laura +Marjorie +Julia +Rosa +Mae +Maggie +Christine +Mamie +Cora +Josephine +Anna +Inez +Lucile +Katherine +Essie +Elsie +Eula +Grace +Margie +Opal +Flora +Daisy +Eloise +Gertrude +Lorene +Velma +Georgia +Lucy +Florence +Eunice +Mable +Wilma +Kathleen +Vivian +Katie +Geneva +Jean +Lena +Geraldine +Agnes +Jewel +Nell +Rebecca +Sallie +Nettie +Sadie +Mabel +Alberta +Ollie +Viola +Lizzie +Ora +Carolyn +Lola +Nancy +Ola +Addie +Jewell +Ann +Bonnie +Kathryn +Lela +Stella +Ada +Audrey +Dora +Jane +Pearl +Beulah +Esther +Estelle +Lottie +Rose +Janie +Nora +Ellen +Anne +Leola +Eddie +Gloria +Jimmie +Rachel +Eleanor +Emily +Melba +Earline +Marguerite +Mavis +Della +Reba +Norma +Pearlie +Lila +Cleo +Jeanette +Sybil +Callie +Hilda +Imogene +Marion +Ernestine +Barbara +Ila +Miriam +Maxine +Naomi +Billie +Gussie +Josie +Leona +Nannie +Gracie +Eliza +Irma +June +Odessa +Peggy +Roberta +Ruthie +Verna +Corine +Bettie +Effie +Jennie +May +Winnie +Allie +Claudia +Olivia +Ophelia +Erma +Gwendolyn +Lessie +Nina +Odell +Robbie +Adell +Francis +Frankie +Henrietta +Myra +Violet +Iva +Jannie +Rosetta +Charlotte +Earnestine +Estella +Queen +Amanda +Clarice +Elnora +Faye +Flossie +Ina +Rubye +Sylvia +Willa +Dessie +Joyce +Merle +Myrtice +Blanche +Maudie +Syble +Dollie +Elouise +Millie +Myrtis +Virgie +Bobbie +Etta +Johnie +Lue +Polly +Sue +Ester +Lee +Lou +Rena +Wanda +Alta +Dixie +Mollie +Dorthy +Earlene +Evie +Mozell +Shirley +Tommie +Zelma +Elma +Era +Florine +Idella +Iola +Iris +James +Loretta +Maude +Mittie +Patricia +Abbie +Anita +Augusta +Eugenia +Jacqueline +Linnie +Lora +Lovie +Lydia +Pinkie +Rita +Sally +Willodean +Bennie +Celia +Connie +Ludie +Muriel +Nadine +Novella +Rubie +Amy +Birdie +Charlie +Elva +Fay +Freddie +Georgie +Gertie +Lelia +Lera +Lily +Lorine +Winifred +Annette +Bertie +Carol +Dovie +Hannah +Kate +Kattie +Lenora +Marilyn +Rosemary +Voncile +Avis +Bettye +Cassie +Elaine +Eris +Harriet +Inell +Joy +Leila +Luella +Madeline +Pearline +Rosalie +Selma +Aline +Corrine +Dorris +Ellie +Elvira +Floy +Gennie +Goldie +Ilene +Jo +Laverne +Leslie +Lorraine +Luvenia +Margret +Marian +Matilda +Nola +Rosia +Roxie +Tessie +Aileen +Corene +Cornelia +Estell +Freda +Hettie +Janet +Jaunita +Madge +Malinda +Myrtie +Olene +Olive +Susan +Theresa +Allene +Arline +Audie +Ceola +Delia +Florene +Ima +Ira +Isabelle +Jeannette +Lilla +Linda +Lucinda +Luna +Mandy +Margarett +Maria +Nona +Ouida +Ozell +Patsy +Ressie +Vernice +Wilda +Wynell +Zella +Zula +Adelle +Alene +Ava +Bama +Constance +Cordelia +Dolly +Eldora +Elmira +Ethelene +Eulene +Genevieve +Isabell +Janice +Jeanne +Jettie +Joe +John +Jonnie +Letha +Lettie +Magdalene +Maurine +Mazie +Octavia +Oma +Rowena +Tennie +Amelia +Arlene +Berniece +Caroline +Claudie +Clemmie +Delois +Glennie +Harriett +Hellen +Hester +Isabella +Kathrine +Levonia +Lorena +Madie +Magnolia +Mozelle +Ossie +Phyllis +Rachael +Tressie +Tula +Yvonne +Angie +Beverly +Burma +Cathrine +Cathryn +Cecil +Christeen +Claire +Dean +Delma +Dolores +Earlean +Edwina +Elease +Evelyne +Hildred +Idell +Jackie +Jamie +Loraine +Louella +Lura +Maple +Marcella +Margarette +Mariah +Maud +Maudine +Myrl +Nelda +Robert +Rosebud +Theda +Verdell +Vergie +Victoria +Vinnie +Viva +Wilhelmina +Willene +Winona +Adelaide +Alpha +Alva +Alyce +Amie +Artie +Audra +Cecile +Celestine +Charline +Clary +Clyde +Creola +Cynthia +Delores +Donnie +Elinor +Emmer +Emmie +Emogene +Erin +Gaynell +George +Gladis +Jacquelyn +Juliette +Leatha +Lennie +Lilly +Littie +Liza +Lonie +Lurline +Macie +Mammie +Margrett +Maxie +Mayme +Melva +Mertie +Minerva +Orlean +Ottie +Ozella +Pearlene +Prince +Regina +Sammie +Vella +Verdie +Verla +Vernell +Vesta +Vida +William +Zora +Alfreda +Althea +Angeline +Ara +Ardell +Arrie +Azzie +Bess +Bette +Birtha +Blanch +Bobby +Buelah +Buna +Burnice +Catharine +Cecelia +Classie +Colleen +Deloris +Donna +Dorothea +Edythe +Eileen +Elizebeth +Elmer +Ether +Eulalia +Everlean +Exie +Georgette +Gertha +Henretta +Icie +Izola +Jeane +Jerry +Judy +Kitty +Lavada +Lelar +Lexie +Lona +Lonnie +Louie +Louvenia +Luecile +Madelyn +Marietta +Marlene +Marry +Mazell +Melinda +Melvina +Missie +Nelle +Nova +Odean +Paralee +Pat +Peggie +Priscilla +Queenie +Retha +Rosalee +Roy +Rubbie +Savannah +Sophia +Sydney +Theo +Verlon +Versie +Vester +Vicie +Vina +Walter +Zenobia +Mary +Annie +Dorothy +Margaret +Mildred +Ruby +Willie +Ruth +Helen +Louise +Frances +Doris +Sarah +Mattie +Elizabeth +Martha +Virginia +Edna +Evelyn +Lillie +Gladys +Lois +Ethel +Bessie +Hazel +Emma +Minnie +Bernice +Betty +Jessie +Alice +Clara +Thelma +Marie +Lillian +Juanita +Sara +Catherine +Nellie +Pauline +Edith +Ella +Ida +Bertha +Fannie +Lula +Rosie +Carrie +Irene +Julia +Lucille +Eva +Beatrice +Johnnie +Hattie +Mamie +Vera +Grace +Myrtle +Velma +Inez +Katie +Margie +Christine +Josephine +Eunice +Maggie +Susie +Laura +Elsie +Rosa +Marjorie +Georgia +Flora +Alma +Mae +Anna +Katherine +Essie +Eloise +Eula +Lucile +Jean +Cora +Opal +Ann +Lucy +Vivian +Kathleen +Agnes +Daisy +Gertrude +Mable +Jewel +Lorene +Geneva +Florence +Viola +Lola +Ora +Wilma +Sallie +Alberta +Geraldine +Eleanor +Lena +Nancy +Rebecca +Mabel +Barbara +Nell +Jewell +Kathryn +Ola +Lizzie +Addie +Carolyn +Imogene +Jane +Lela +Rose +Ada +Bonnie +Pearl +Stella +Audrey +Janie +Nettie +Ollie +Rachel +Ellen +Sadie +Billie +Norma +Earline +Esther +Dora +Marion +Eddie +Gloria +Hilda +Beulah +Ernestine +Maxine +Jimmie +Estelle +Gracie +Peggy +Roberta +Anne +Cleo +Nora +Joyce +Leola +Reba +Elnora +Mavis +Melba +Effie +Lottie +Naomi +Nina +Jeanette +Pearlie +Francis +Leona +Marguerite +Tommie +Violet +Emily +Estella +Flossie +Ruthie +June +Lessie +Queen +Sue +Winnie +Callie +Odessa +Robbie +Corine +Gussie +Jennie +Ophelia +Bettie +Della +Frankie +Virgie +Lila +Bobbie +Patricia +Wanda +Charlotte +Henrietta +Miriam +Blanche +Dollie +Mollie +Shirley +Sybil +Erma +Ila +Jannie +Josie +Myra +Irma +May +Myrtice +Myrtis +Verna +Augusta +Claudia +Dorthy +Era +Lelia +Maudie +Nannie +Allie +Earnestine +Eliza +Etta +Lue +Dessie +Elouise +Lydia +Millie +Sally +Theresa +Willodean +Bertie +Jeanne +Johnie +Muriel +Odell +Olivia +Rubye +Adell +Charlie +Elaine +Gwendolyn +Iva +Lee +Leila +Lou +Mittie +Syble +Sylvia +Voncile +Amanda +Clarice +Faye +Hannah +James +Lora +Matilda +Rosetta +Willa +Aline +Elma +Jacqueline +Luella +Mozell +Amy +Dixie +Lorine +Roxie +Zelma +Corene +Earlene +Estell +Ester +Evie +Inell +Madie +Maude +Maurine +Nadine +Beverly +Cornelia +Freddie +Jaunita +Loretta +Lorraine +Marilyn +Phyllis +Pinkie +Annette +Bennie +Ceola +Connie +Eugenia +Fay +Georgie +Hester +Iris +John +Merle +Mozelle +Vernell +Victoria +Avis +Birdie +Ellie +Florine +Jo +Loraine +Ouida +Rena +Selma +Alta +Anita +Carol +Cassie +Delores +Dorris +Dovie +Emogene +Hellen +Idell +Ima +Ina +Iola +Kate +Lettie +Lonnie +Ludie +Madeline +Margarette +Marian +Nona +Claudine +Creola +Earlean +Easter +Emmie +Erline +Janice +Lenora +Madge +Margret +Mazie +Oma +Rosia +Aileen +Berniece +Bettye +Caroline +Cathrine +Cecil +Claudie +Delia +Joan +Joy +Kattie +Laverne +Lily +Lorena +Lovie +Nelda +Nola +Polly +Retha +Rubie +Sammie +Savannah +Abbie +Amelia +Amie +Artie +Bette +Celia +Dorothea +Goldie +Harriet +Harriett +Janet +Lilly +Linnie +Louella +Lucinda +Lura +Mandy +Maudine +Otha +Tressie +Vesta +Winifred +Alva +Cherry +Constance +Dolly +Edwina +Elise +Evelyne +Isabell +Jerry +Jettie +Mammie +Maureen +Rosalie +Willia +Willow +Zettie +Zola +Arvie +Bulah +Charlene +Corrine +Cynthia +Donnie +Emmer +Florene +Gay +Gennie +Glenda +Joe +Lera +Linda +Lona +Loree +Loyce +Marcella +Margarett +Margrett +Maxie +Montez +Ocie +Ozell +Patsy +Priscilla +Ressie +Rita +Tempie +Una +Vida +Willadean +Yvonne +Zella +Almeda +Alyce +Blanch +Claire +Corinne +Elinor +Elva +Elvira +Freida +Gertha +Gertie +Helon +Idella +Ivy +Jonnie +Kathrine +Lennie +Letha +Louvenia +Luvenia +Magnolia +Myrl +Myrle +Myrtie +Novella +Odie +Olga +Ozella +Ozie +Pansy +Queenie +Rosemary +Sophia +Susan +Tiny +Valeria +Vernice +Verta +Winona +Adele +Alene +Allene +Ara +Ardella +Arlene +Arnell +Avie +Azzie +Bobby +Celestine +Charles +Charlsie +Christeen +Christene +Clyde +Colleen +Dannie +Dimple +Donna +Dortha +Dura +Edythe +Elmira +Elois +Euna +Eura +Exie +Genevieve +Glennie +Hazle +Henry +Ilene +Isabelle +Jacquelyn +Joann +Judith +Juliette +Lavada +Lilla +Lyda +Maebell +Mariah +Missouri +Molly +Olive +Omie +Patty +Pearline +Pennie +Rutha +Vassie +Veda +Vergie +Verma +Vonceil +Wilda +Willodene +Wilmer +Allean +Alpha +Anice +Annabelle +Arie +Audie +Audry +Ava +Bama +Belle +Bernell +Billy +Carlene +Cecelia +Cecile +Christina +Clemmie +Cleola +Corrie +Dean +Delois +Earlie +Elisabeth +Elmer +Elna +Eulene +Floretta +Floy +Gearldine +George +Hallie +Hassie +Helene +Hessie +Hettie +Hildred +Icie +Iona +Irean +Janett +Jeannette +Jeffie +Judy +Katharine +Lealer +Leatha +Lelar +Leo +Leslie +Madgie +Magdalene +Malinda +Margene +Margery +Maria +Maud +Maurice +Mayme +Melva +Mertie +Mozella +Neva +Orene +Ovella +Pecola +Rossie +Ruther +Teresa +Vada +Veola +Verner +Vester +Vinnie +Viva +William +Wynell +Zelda +Zora +Mary +Annie +Dorothy +Willie +Mildred +Margaret +Ruby +Louise +Helen +Ruth +Frances +Doris +Martha +Evelyn +Mattie +Sarah +Elizabeth +Lillie +Virginia +Edna +Betty +Ethel +Gladys +Lois +Hazel +Bessie +Emma +Alice +Minnie +Lillian +Carrie +Bertha +Juanita +Pauline +Marie +Jessie +Thelma +Clara +Fannie +Nellie +Johnnie +Bernice +Lula +Catherine +Ida +Ella +Lucille +Sara +Hattie +Myrtle +Julia +Edith +Inez +Rosie +Rosa +Vera +Eva +Irene +Laura +Mamie +Susie +Christine +Anna +Beatrice +Marjorie +Margie +Eunice +Lucile +Katherine +Josephine +Katie +Opal +Maggie +Georgia +Grace +Lucy +Mae +Alma +Florence +Jean +Alberta +Eloise +Mable +Velma +Vivian +Wilma +Essie +Cora +Gloria +Jewel +Geneva +Gertrude +Ann +Flora +Agnes +Imogene +Sallie +Rose +Ola +Geraldine +Lorene +Lena +Eula +Viola +Elsie +Kathleen +Nettie +Daisy +Dora +Lizzie +Jimmie +Sadie +Bonnie +Lola +Carolyn +Nancy +Addie +Barbara +Kathryn +Nell +Rebecca +Pearl +Billie +Eleanor +Estelle +Mavis +Ora +Audrey +Effie +Leola +Ellen +Ollie +Mabel +Marion +Norma +Jane +Rachel +Joyce +Earline +Ernestine +Esther +Lottie +Ada +Pearlie +Stella +Nora +Lela +Peggy +Callie +Gracie +Anne +Bobbie +Della +Hilda +Naomi +Roberta +Eddie +Bettie +Elnora +Jewell +Tommie +Lessie +Maxine +Beulah +Irma +Jennie +Reba +Sybil +Verna +Janie +Corine +Ila +Melba +Ruthie +Jeanette +Queen +Emily +June +Leona +Nina +Robbie +Sue +Eliza +Francis +Odessa +Dorthy +Odell +Violet +Claudia +Gussie +Gwendolyn +Iva +Rosetta +Allie +Elouise +Lila +Mollie +Charlotte +Henrietta +Winnie +Etta +Faye +Sally +Erma +Millie +Pearline +Syble +Dollie +Frankie +Lee +Lorine +Nannie +Estella +Flossie +Willodean +Earnestine +Fay +James +Marguerite +Myra +Patricia +Sylvia +Bettye +Era +Ester +Johnie +Miriam +Ophelia +Amanda +Blanche +Josie +Myrtice +Willa +Earlene +Lou +Olivia +Rena +Wanda +Clarice +Easter +Ina +Jeanne +Merle +Mittie +Myrtis +Nadine +Shirley +Adell +Bertie +Cleo +Jannie +Lona +Lora +Maudie +Virgie +Aline +Augusta +Claudie +Jacqueline +Marian +Anita +Bennie +Caroline +Cornelia +Idell +Margret +May +Rubye +Theresa +Celia +Emogene +Florine +Joy +Loretta +Lue +Madge +Maude +Amelia +Amy +Freddie +Iola +Iris +Lelia +Rosia +Tressie +Voncile +Alene +Connie +Hannah +Leila +Lenora +Ludie +Oma +Polly +Rita +Carol +Cassie +Charlie +Dessie +Donnie +Elaine +Georgie +Linnie +Lydia +Mozell +Muriel +Abbie +Charles +Dixie +Dolores +Dorothea +Evie +Jettie +Lettie +Lovie +Roxie +Yvonne +Zelma +Alta +Avis +Birdie +Claudine +Estell +Eugenia +Jo +Nona +Phyllis +Rosalie +Vernell +Victoria +William +Zula +Clyde +Dean +Delia +Dolly +Edwina +Elma +Florene +Gertha +John +Kate +Lexie +Luella +Luvenia +Marilyn +Maurine +Mozelle +Retha +Rutha +Alva +Annette +Celestine +Corene +Creola +Delores +Dovie +Ever +Henry +Hester +Hortense +Inell +Judy +Julie +Kathrine +Laverne +Lennie +Letha +Lilly +Lorraine +Lurline +Mazie +Myrtie +Ocie +Olene +Ouida +Robert +Rubie +Sammie +Selma +Willene +Aileen +Berta +Cecil +Corinne +Dortha +Ellie +Emmie +Exie +Gene +Harriet +Ilene +Ima +Janice +Jeannette +Jerry +Kattie +Leslie +Lorena +Magdalene +Matilda +Olga +Olive +Ozell +Patsy +Pinkie +Beverly +Cathrine +Ceola +Christeen +Colleen +Deloris +Elva +Florida +Genevieve +George +Hettie +Ira +Irine +Jackie +Janet +Joan +Joanna +Jossie +Juliette +Kitty +Lera +Lonnie +Lucinda +Margarett +Nelda +Nola +Ossie +Ozie +Pansy +Queenie +Ressie +Verla +Versie +Willadean +Willia +Alpha +Alyce +Arlena +Arlene +Audie +Berniece +Birtha +Blanch +Charlene +Cherry +Constance +Cynthia +Dannie +Delma +Elvira +Ethelyn +Floy +Gertie +Hildred +Jaunita +Jonnie +Juliet +Laurine +Linda +Louella +Louvenia +Magnolia +Malinda +Maria +Maurice +Molly +Onnie +Phoebe +Priscilla +Regina +Rosalee +Rosebud +Savannah +Theo +Tiny +Trudie +Una +Vada +Vida +Wilda +Willard +Alline +Carmen +Christene +Cliffie +Corean +Corrie +Creasie +Dimple +Dorotha +Earleen +Edythe +Elinor +Elmira +Elna +Elois +Emmer +Erie +Erline +Ethelene +Exa +Genell +Harriette +Idella +Ivory +Janette +Joann +Larue +Leanna +Lily +Lonie +Louisa +Macie +Maple +Maud +Maudine +Myrl +Nella +Novella +Olean +Pearlene +Susan +Tessie +Vergie +Vernice +Winifred +Winona +Wynell +Zella +Agatha +Allean +Allene +Althea +Angeline +Angie +Ardelia +Arlean +Audry +Bama +Bebe +Burma +Cecile +Charity +Charlsie +China +Classie +Clementine +Corrine +Delene +Delphia +Donna +Dorris +Dorthey +Eartha +Evelyne +Goldie +Iona +Isabel +Jesse +Leatrice +Loraine +Louie +Madeline +Madelyn +Mammie +Mandy +Margarette +Marget +Mayme +Mazell +Mozella +Murline +Myrle +Nan +Natalie +Neva +Octavia +Odie +Omega +Ona +Ova +Ozella +Patty +Paula +Pernie +Rosalyn +Rosemary +Sible +Sibyl +Simmie +Vela +Vertis +Vina +Willow +Zola +Mary +Annie +Dorothy +Margaret +Willie +Mildred +Ruby +Frances +Louise +Helen +Betty +Doris +Ruth +Martha +Mattie +Elizabeth +Evelyn +Sarah +Lillie +Edna +Ethel +Virginia +Gladys +Emma +Minnie +Clara +Hazel +Bessie +Marie +Catherine +Bernice +Juanita +Alice +Lois +Jessie +Thelma +Bertha +Sara +Nellie +Johnnie +Lillian +Ella +Rosa +Ida +Lucille +Pauline +Rosie +Lula +Carrie +Edith +Margie +Fannie +Irene +Christine +Myrtle +Julia +Beatrice +Mamie +Hattie +Eva +Jean +Alma +Laura +Mae +Eunice +Essie +Eula +Geneva +Inez +Vera +Susie +Katie +Grace +Georgia +Opal +Anna +Lucile +Marjorie +Agnes +Vivian +Eloise +Mable +Cora +Gertrude +Geraldine +Velma +Daisy +Flora +Gloria +Josephine +Lucy +Wilma +Imogene +Pearl +Florence +Katherine +Elsie +Barbara +Jewel +Ada +Carolyn +Lena +Sallie +Audrey +Nancy +Sadie +Alberta +Joyce +Maggie +Viola +Kathleen +Jewell +Ora +Bonnie +Eleanor +Rose +Lola +Rebecca +Lizzie +Norma +Nettie +Addie +Kathryn +Ann +Dora +Jimmie +Billie +Earline +Lorene +Marion +Ola +Nell +Peggy +Esther +Jane +Rachel +Eddie +Mabel +Lottie +Ollie +Ernestine +Roberta +Stella +Sylvia +Beulah +Jeanette +Hilda +Lela +Bobbie +Bettie +Bettye +Faye +Janie +Maxine +Nora +Callie +Leona +Mavis +Ellen +Gracie +Melba +Leola +Pearlie +Tommie +Marguerite +Francis +Estelle +June +Nina +Rosetta +Violet +Etta +Iva +Effie +Myra +Naomi +Queen +Willodean +Dorthy +Earnestine +Fay +Gussie +Johnie +Lessie +Patricia +Ruthie +Della +Jannie +Sybil +Amanda +Flossie +Jennie +Claudia +Erma +Lorine +Lou +Miriam +Reba +Robbie +Rubye +Estella +Henrietta +Sally +Frankie +Odessa +Charlie +Eliza +Emily +Gwendolyn +Lila +Marilyn +May +Verna +Blanche +Irma +Jacqueline +Josie +Shirley +Sue +Wanda +Willa +Anne +Charlotte +Corine +Lee +Merle +Mollie +Odell +Ophelia +Era +Nadine +Augusta +Claudie +Myrtis +Anita +Cornelia +Dollie +Elma +Polly +Winnie +Allie +Bennie +Cleo +Elouise +Marian +Aline +Millie +Syble +Amy +Annette +Beverly +Birdie +Cassie +Estell +Ester +Ila +Jaunita +Lenora +Patsy +Elaine +James +Maude +Myrtice +Olivia +Pearline +Adell +Easter +Janice +Joe +Lelia +Louvenia +Mittie +Rosia +Avis +Clarice +Dixie +Elnora +Freddie +Ina +Laverne +Lue +Luella +Maudie +Rena +Alene +Bertie +Connie +Dessie +Elvie +Eugenia +Kattie +Linnie +Lonnie +Lorena +Maurine +Mozell +Nannie +Vernell +Winifred +Earlene +Evie +Lora +Loretta +Margret +Muriel +Ouida +Susan +Virgie +Voncile +Willene +Charlene +Dorris +Edwina +Iola +Jackie +Madeline +Madge +Ocie +Vernice +Arlene +Artie +Carol +Cecil +Celestine +Celia +Delia +Delores +Florine +Harriet +Hester +Iris +Kate +Letha +Lilly +Ludie +Luvenia +Margarette +Nelda +Olene +Olga +Robert +Theresa +Tressie +Zula +Alta +Classie +Constance +Corene +Exie +Florene +Freda +Georgie +Goldie +Jeannette +Leila +Lera +Lettie +Linda +Loraine +Louella +Lovie +Lydia +Magdalene +Malinda +Mozelle +Pinkie +Berta +Charles +Christeen +Dolores +Donnie +Dovie +Emmer +Hettie +Idell +Ima +Inell +Joy +Judy +Lorraine +Mandy +Mazie +Nona +Phyllis +Rosemary +Una +Valeria +Abbie +Allene +Amelia +Bette +Birtha +Colleen +Corinne +Dean +Deloris +Florida +Glennie +Hannah +Hellen +Idella +Ira +John +Katheryn +Lucinda +Mammie +Margarett +Myrtie +Ozell +Ressie +Rita +Rosalie +Rubie +Versie +Wilda +Willia +William +Zettie +Alfreda +Ceola +Dolly +Ellie +Elna +Elva +Emogene +Gertie +Jeanne +Jettie +Judith +Julie +Matilda +Melvina +Minerva +Mona +Nelle +Retha +Sammie +Savannah +Selma +Tempie +Tessie +Vallie +Verdell +Zelma +Amie +Audie +Berniece +Betsy +Cara +Caroline +Claudine +Clyde +Corrie +Corrine +Creola +Delma +Dot +Ethelene +George +Gertha +Iona +Isabell +Janet +Janette +Jerry +Kathrine +Lexie +Lilla +Lily +Mariah +Maxie +Mayme +Mellie +Olean +Olive +Peggie +Verlie +Viva +Willow +Yvonne +Zola +Aileen +Allean +Alpha +Alva +Alyce +Angeline +Annis +Ara +Baby +Belle +Blondell +Charlsie +Christene +Clementine +Clemmie +Cynthia +Dimple +Dortha +Eldora +Elinor +Elizebeth +Elois +Elvira +Ether +Euna +Henretta +Ivy +Jeraldine +Joan +Johnny +Jonnie +Juliette +Leah +Madgie +Magnolia +Maria +Maud +Maurice +Melva +Nola +Omie +Pernie +Priscilla +Queenie +Rossie +Verla +Vernon +Victoria +Vida +Will +Willadean +Wynell +Adelaide +Agatha +Althea +Arizona +Augustine +Billy +Burma +Carmen +Cathrine +Charlena +Clydie +Corean +Cumi +Dell +Delois +Dera +Donna +Edward +Esta +Ethelyn +Eudora +Ever +Ezell +Fanny +Floyce +Frieda +Harriett +Helon +Irine +Isabel +Jeannie +Jo +Joann +Jossie +Kathryne +Laurine +Leatha +Leatrice +Lennie +Leslie +Liza +Lona +Loree +Louie +Lovell +Lyda +Madelyn +Maebell +Marcella +Margery +Maureen +Mennie +Mickey +Octavia +Onie +Ossie +Pearlene +Rosalee +Roxie +Ruther +Sophie +Tula +Veda +Veola +Vernie +Vonda +Willine +Willodene +Winona +Wylodene +Wynelle +Zadie +Zella +Mary +Annie +Dorothy +Willie +Betty +Mildred +Margaret +Helen +Ruby +Frances +Louise +Ruth +Sarah +Doris +Martha +Mattie +Elizabeth +Virginia +Lillie +Edna +Evelyn +Gladys +Minnie +Ethel +Emma +Hazel +Clara +Juanita +Alice +Thelma +Bessie +Bernice +Marie +Lois +Catherine +Jessie +Nellie +Bertha +Sara +Lillian +Ella +Fannie +Pauline +Johnnie +Rosie +Ida +Lucille +Lula +Carrie +Margie +Edith +Julia +Myrtle +Christine +Jean +Hattie +Eva +Rosa +Laura +Irene +Vera +Joyce +Susie +Alma +Barbara +Billie +Mae +Mamie +Maggie +Vivian +Beatrice +Katherine +Inez +Josephine +Lucile +Marjorie +Opal +Wilma +Anna +Eloise +Imogene +Katie +Velma +Agnes +Eunice +Grace +Essie +Eula +Flora +Georgia +Carolyn +Geneva +Cora +Lorene +Lucy +Daisy +Florence +Peggy +Mable +Ann +Rose +Jimmie +Gertrude +Lola +Geraldine +Nancy +Pearl +Kathleen +Ellen +Elsie +Nell +Ada +Audrey +Marion +Jane +Jewel +Gloria +Sallie +Earline +Lena +Sadie +Eleanor +Ollie +Dora +Kathryn +Viola +Addie +Bonnie +Lizzie +Rebecca +Alberta +Leola +Ola +Ora +Jeanette +Bobbie +Ernestine +Jewell +Janie +Melba +Beulah +Maxine +Norma +Pearlie +Stella +Lela +Esther +Lottie +Estelle +Mavis +Nettie +Effie +Bettye +Roberta +June +Nora +Mabel +Rachel +Robbie +Bettie +Callie +Dorthy +Reba +Sylvia +Tommie +Eddie +Sue +Anne +Patricia +Rosetta +Violet +Gussie +Wanda +Della +Erma +Gwendolyn +Naomi +Ruthie +Emily +Eliza +Nina +Winnie +Corine +Earnestine +Faye +Charlotte +Gracie +Jennie +Lila +Queen +Miriam +Nannie +Sally +Virgie +Willodean +Dollie +Frankie +Hilda +Leona +Shirley +Verna +Era +Myra +Cleo +Sybil +Charlie +Emogene +Francis +Odessa +Lessie +Marian +Patsy +Claudia +Elnora +Jannie +Joy +Mollie +Bennie +Fay +Flossie +Marguerite +Earlene +Elouise +Ila +Lettie +Lorine +Ophelia +Blanche +Ina +Nelda +Adell +Johnie +Maudie +Nadine +Olivia +Allie +Connie +Dessie +Inell +Jeanne +Joan +Lee +Lora +Lou +Syble +Willa +Cornelia +Dolores +Iva +Jacqueline +Lelia +Lenora +Marilyn +Theresa +Alene +Eugenia +Irma +Janice +Josie +Lue +Mittie +Clarice +Estell +Estella +Freddie +James +Pearline +Rena +Voncile +Anita +Celia +Claudie +Elma +Florine +Henrietta +Iris +Magnolia +May +Rubye +Amanda +Ester +Jo +Joe +John +Merle +Ouida +Robert +Annette +Bertie +Elaine +Etta +Evie +Freda +Ima +Laverne +Leila +Linnie +Maurine +Myrtis +Odell +Rutha +Aline +Beverly +Earlean +Janet +Jaunita +Lydia +Margret +Millie +Mozelle +Myrtice +Pinkie +Rosia +Wilda +Allene +Alta +Claudine +Colleen +Delores +Donnie +Dorris +Emmie +Hester +Kate +Luella +Olive +Rosemary +Vernell +Artie +Iona +Jerry +Lera +Lorraine +Lucinda +Mozell +Paula +Phyllis +Polly +Sammie +Susan +Zella +Zelma +Amy +Augusta +Avis +Birdie +Charles +Dixie +Edwina +Harriet +Hettie +Letha +Lily +Linda +Madeline +Novella +Rita +Willene +Amelia +Annis +Arlene +Berta +Carol +Cassie +Christeen +Corinne +Dovie +Elinor +Genevieve +Idell +Jonnie +Julie +Lona +Loretta +Louvenia +Ludie +Maria +Maude +Olene +Oma +Tressie +William +Wynell +Adelle +Charlene +Clyde +Creola +Euna +Gene +Glennie +Hannah +Isabell +Jackie +Katheryn +Lilla +Lilly +Lura +Muriel +Ocie +Olga +Veola +Willia +Alpha +Bobby +Corene +Cynthia +Deloris +Ellie +Elmira +Erline +Gearldine +Harriett +Iola +Jacquelyn +Jeannette +Jettie +Josiephine +Judith +Juliette +Loraine +Margarett +Margrette +Mazie +Myrtie +Nona +Olean +Onnie +Ozell +Paralee +Pearlene +Ressie +Rilla +Savannah +Vernice +Victoria +Winifred +Adella +Aileen +Alyce +Ardella +Audie +Audrie +Aurelia +Ava +Betsy +Billy +Charity +Charlsie +Christene +Dean +Delia +Doshie +Elna +Elvie +Elvira +Ethelene +Ezell +George +Georgie +Glenda +Goldie +Hellen +Idella +Ira +Jack +Joanne +Kathrine +Lorena +Louella +Luvenia +Madelyn +Madge +Magdalene +Malinda +Maxie +Melva +Missouri +Nola +Octavia +Olivette +Onzell +Pansy +Pecola +Priscilla +Rubie +Vida +Voncille +Zeola +Abbie +Arrie +Bette +Bulah +Burnice +Camilla +Caroline +Cecelia +Clora +Corrine +Dannie +Dolly +Easter +Elise +Ether +Eulene +Florida +Floy +Foy +France +Gaynell +Icie +Icy +Isabelle +Judy +Katharine +Kattie +Louie +Louisa +Lovie +Lurlene +Maud +Mona +Nan +Nella +Orlean +Rhoda +Rossie +Roxie +Ruther +Theodora +Theola +Vergie +Verla +Versie +Wilhelmina +Willo +Willodene +Willow +Yvonne +Ailene +Albertha +Angie +Arcola +Augustine +Berniece +Birtha +Buelah +Caldonia +Carleen +Cathryn +Claire +Clemmie +Cleopatra +David +Dortha +Dottie +Drucilla +Earlie +Elisabeth +Elizebeth +Exie +Florene +Frieda +Gennie +Gertha +Imagene +Janette +Jeanie +Joann +Justine +Kitty +Lavada +Leatha +Lennie +Leoma +Leslie +Lexie +Libby +Lonnie +Lorean +Macie +Madie +Marcella +Marcia +Margarette +Maureen +Maurice +Melvin +Mennie +Meriam +Montez +Nena +Odie +Osie +Ozie +Pearlean +Pearly +Prince +Queenie +Rowena +Ruthey +Selma +Sophia +Sylvester +Tessie +Una +Vennie +Verda +Verdell +Vernon +Vonciel +Walter +Mary +Annie +Dorothy +Betty +Willie +Mildred +Margaret +Doris +Ruby +Helen +Louise +Frances +Martha +Ruth +Sarah +Mattie +Virginia +Elizabeth +Evelyn +Lillie +Edna +Ethel +Gladys +Emma +Lois +Minnie +Alice +Clara +Hazel +Thelma +Marie +Bessie +Sara +Bernice +Catherine +Bertha +Carrie +Juanita +Jean +Lillian +Fannie +Jessie +Julia +Nellie +Lula +Ella +Johnnie +Ida +Lucille +Pauline +Rosie +Edith +Christine +Joyce +Hattie +Vera +Laura +Eva +Barbara +Billie +Maggie +Inez +Irene +Mamie +Margie +Rosa +Beatrice +Marjorie +Essie +Peggy +Mae +Myrtle +Katie +Eloise +Katherine +Velma +Georgia +Susie +Daisy +Florence +Anna +Agnes +Alma +Geneva +Josephine +Vivian +Ann +Cora +Gloria +Eunice +Grace +Norma +Lucy +Opal +Bobbie +Imogene +Carolyn +Elsie +Lucile +Wilma +Geraldine +Eula +Flora +Audrey +Lorene +Lola +Sallie +Kathleen +Maxine +Rebecca +Marion +Bettye +Jane +Viola +Addie +Gertrude +Mable +Rose +Sadie +Eleanor +Jimmie +Alberta +Eddie +Bettie +Jewel +Jeanette +Kathryn +Pearlie +Dora +Lizzie +Bonnie +Nettie +Ola +Lena +Nancy +Ellen +Ernestine +Jewell +Ada +Nell +Esther +Rachel +Jacqueline +Stella +Earline +Reba +Beulah +Estelle +Mabel +Gracie +Ollie +Ora +Janie +Lela +Faye +Leola +Mavis +Naomi +Anne +Emily +Pearl +Robbie +Iva +Francis +Hilda +Ruthie +Sue +Nora +Patricia +Sybil +Callie +Earnestine +Erma +Jennie +Lottie +Shirley +Tommie +Willodean +Della +Ila +Charlotte +Gwendolyn +Marian +Myra +Nina +Lorine +Queen +Irma +Lessie +Melba +Olivia +Sylvia +Claudia +Joan +Lila +Syble +Dolores +Dorthy +Etta +Verna +Effie +Fay +Frankie +Jannie +Leona +Marguerite +Ramona +Rosetta +Wanda +Winnie +Dollie +Ina +June +Earlene +Josie +Merle +Patsy +Sally +Bertie +Flossie +Odessa +Violet +Charlie +Elouise +Myrtice +Roberta +Allie +Bennie +Gussie +Mollie +Blanche +Elaine +Elnora +Estella +Ester +Joy +Willa +Emogene +Freddie +Jeanne +Millie +Miriam +Odell +Rena +Zelma +Corine +Jackie +Lenora +Ophelia +Amanda +Clarice +Elma +Era +Jo +Polly +Annette +Cleo +Eliza +Iris +James +Janice +Lora +Nannie +Rubye +Sammie +Voncile +Dovie +Hellen +Henrietta +Jaunita +Lou +Marilyn +Maudie +Theresa +Virgie +Anita +Augusta +Caroline +Delores +Eugenia +John +Lee +Mittie +Nelda +Carol +Florine +Johnie +Nadine +Edwina +Lorraine +Lue +Lydia +Muriel +Phyllis +Adell +Georgie +Janet +Jonnie +Kate +Leila +Lily +Maude +Robert +Rosemary +Aline +Beverly +Cassie +Dean +Dessie +Freda +Linda +May +Wilda +Wynell +Ceola +Constance +Elmira +Gaynell +Gertie +Ima +Juliette +Kattie +Lettie +Margret +Ouida +Aileen +Arlene +Charlene +Charles +Deloris +Dixie +Dolly +Dortha +Estell +Goldie +Ira +Lelia +Lera +Louella +Lura +Mozell +Olive +Pearline +Rita +Susan +Abbie +Amy +Cornelia +Dannie +Dot +Elvie +Gennie +George +Inell +Judy +Linnie +Loretta +Louvenia +Mammie +Margarette +Maria +Myrtis +Nona +Priscilla +Rosia +Vernell +Alta +Amelia +Birdie +Bobbye +Christeen +Colleen +Connie +Corene +Delia +Dorris +Elna +Elva +Glennie +Hannah +Harriet +Hester +Idell +Iola +Jeanie +Katheryn +Laverne +Lucinda +Magnolia +Mona +Novella +Roxie +Savannah +Tressie +Vernice +Vernie +Zora +Alva +Arrie +Avis +Bette +Billy +Bobby +Burnice +Cathrine +Corrine +Creola +Donna +Earlean +Elease +Eulene +Lilly +Lovie +Ludie +Luella +Madeline +Magdalene +Nelma +Neva +Ocie +Paula +Pinkie +Rubie +Selma +Willene +William +Yvonne +Altha +Birtha +Blanch +Claire +Claudie +Dorothea +Earlie +Easter +Eldora +Ethelyn +Evie +Florene +Floy +Gene +Genevieve +Ilean +Janette +Joann +Johnny +Lonnie +Louie +Malinda +Marianne +Maxie +Nelle +Octavia +Oma +Queenie +Rosalie +Valeria +Verdell +Victoria +Vida +Walter +Winifred +Wynelle +Zula +Alene +Artelia +Beaulah +Bulah +Celestine +Celia +Cherry +Delma +Delois +Dimple +Edwena +Elinor +Elisabeth +Ellie +Erlene +Etha +Ether +Gertha +Glenda +Harriett +Henry +Isabell +Jeannette +Kathrine +Loraine +Loyce +Luvenia +Madge +Margery +Marietta +Matilda +Maurine +Mazie +Mickey +Molly +Nella +Nola +Olean +Otha +Ozell +Pansy +Regina +Reta +Tessie +Trudie +Zola +Adelaide +Albertha +Allene +Arlean +Artie +Audie +Avery +Bama +Berta +Blondell +Carline +Cecelia +Cecile +Charity +Claudine +Cleopatra +Cynthia +Dorotha +Eartha +Elmer +Elois +Emmie +Ethelene +Freida +Hazle +Helene +Helon +Henretta +Ilene +Isabella +Ivy +Jacquelyn +Jerry +Joanna +Joanne +Joe +Joseph +Lavonia +Leanna +Leatha +Lennie +Lilla +Lorena +Lurline +Luverne +Madie +Mallie +Mandy +Marcelle +Marry +Maureen +Maybelle +Mennie +Merlene +Murdis +Olene +Rae +Ray +Ressie +Retha +Rilla +Rutha +Sophia +Tempie +Teresa +Vallie +Vinnie +Voncille +Willadean +Willo +Mary +Betty +Annie +Dorothy +Margaret +Willie +Helen +Doris +Mildred +Ruby +Martha +Frances +Louise +Ruth +Sarah +Virginia +Elizabeth +Edna +Evelyn +Mattie +Lillie +Ethel +Gladys +Minnie +Emma +Lois +Clara +Hazel +Juanita +Alice +Joyce +Bernice +Bessie +Marie +Lula +Jessie +Barbara +Catherine +Bertha +Sara +Thelma +Rosie +Lillian +Jean +Nellie +Christine +Vera +Johnnie +Julia +Carrie +Peggy +Mamie +Ida +Billie +Edith +Eva +Pauline +Rosa +Fannie +Ella +Inez +Margie +Myrtle +Lucille +Laura +Carolyn +Beatrice +Bobbie +Irene +Katie +Anna +Maggie +Ann +Mae +Hattie +Alma +Lucy +Grace +Josephine +Georgia +Bonnie +Eunice +Opal +Eloise +Katherine +Marjorie +Nancy +Agnes +Imogene +Velma +Cora +Eula +Susie +Vivian +Essie +Geneva +Wilma +Geraldine +Jewel +Audrey +Daisy +Addie +Gloria +Lucile +Kathleen +Lola +Elsie +Rose +Bettie +Lorene +Maxine +Eleanor +Florence +Gertrude +Lena +Ellen +Marion +Ollie +Sallie +Flora +Jane +Mable +Dora +Jimmie +Janie +Nell +Norma +Viola +Bettye +Esther +Lizzie +Pearl +Rachel +Ernestine +Mavis +Faye +Alberta +Eddie +Nettie +Ora +Roberta +Sadie +Pearlie +Patricia +Earline +Jeanette +Ola +Rebecca +Jewell +Kathryn +Lela +Reba +Leola +Mabel +Melba +Ada +Leona +Lottie +Tommie +Anne +June +Dolores +Nora +Ruthie +Beulah +Queen +Dorthy +Stella +Jannie +Callie +Sue +Sylvia +Willodean +Emily +Gwendolyn +Jacqueline +Ramona +Robbie +Claudia +Effie +Jo +Verna +Corine +Delores +Estelle +Gracie +Jennie +Joan +Wanda +Frankie +Bennie +Etta +Hilda +Joy +Lila +Naomi +Odessa +Elnora +Erma +Marguerite +Marilyn +Charlie +Charlotte +Earnestine +Henrietta +Ila +Mollie +Elouise +Myra +Winnie +Della +Lessie +Sally +Sybil +Willa +Anita +Dessie +Fay +Flossie +Miriam +Theresa +Allie +Dollie +Earlene +Ina +Estella +Irma +John +Nadine +Nelda +Violet +Adell +Charles +Era +Jackie +Lou +Ophelia +Shirley +Blanche +Florine +Iris +Johnie +Millie +Nina +Rosetta +Cleo +Francis +James +Jeanne +Marian +Nannie +Phyllis +Rena +Virgie +Yvonne +Bertie +Cornelia +Eliza +Gussie +Iva +Lee +Lelia +Lorine +Lue +May +Myrtice +Olivia +Pearline +Carol +Colleen +Elaine +Laverne +Maude +Polly +Vernell +Amy +Cassie +Celia +Charlene +Estell +Josie +Kate +Patsy +Clarice +Evie +Freddie +Alene +Elma +Hortense +Janice +Jaunita +Lonnie +Loretta +Molly +Odell +Rosemary +Syble +Willene +Aline +Amanda +Annette +Deloris +Emogene +Genevieve +Gertie +Hannah +Joann +Joe +Lily +Linda +Lora +Maudie +Mozell +Voncile +Augusta +Avis +Beverly +Bobby +Donnie +Eugenia +Freda +Hester +Ima +Lucinda +Madge +Margret +Merle +Mittie +Ouida +Pinkie +Rita +Rubie +Claudine +Dean +Donna +Dorris +Easter +Ester +Florene +Harriet +Jeannette +Jeannine +Myrtis +Rosia +Birdie +Elva +Georgie +Jacquelyn +Janet +Jerry +Leila +Lenora +Letha +Lettie +Lorraine +Matilda +Merlene +Oma +Pansy +Queenie +Roxie +Rubye +Susan +Wilda +Angie +Bette +Connie +Delia +Dolly +Ellie +Ethelene +Idell +Iola +Iona +Ira +Isabell +Janette +Jettie +Jonnie +Juliette +Kattie +Lorena +Luella +Lurline +Lydia +Mammie +Margrette +Ocie +Olene +Ozell +Ozella +Retha +Robert +Rosalie +Aileen +Alta +Bulah +Clyde +Corene +Cynthia +Edwina +Floy +George +Hellen +Inell +Lavada +Linnie +Lura +Macie +Magnolia +Mandy +Mazie +Muriel +Olive +Rilla +Savannah +Vinnie +Willadean +Zola +Angeline +Arlene +Caroline +Classie +Creola +Dixie +Dovie +Elna +Gene +Goldie +Hettie +Icie +Ilene +Isabella +Joanna +Lera +Lilly +Loraine +Louvenia +Lovie +Luna +Madeline +Margarett +Maxie +Nola +Nona +Paula +Priscilla +Vannie +Versie +Vida +Winifred +Aurelia +Berta +Birtha +Camilla +Carlene +Cherry +Claudie +Constance +Corinne +Dortha +Dot +Elinor +Elise +Elvie +Evelyne +Gennie +Glennie +Hazle +Henry +Judy +Katheryn +Lennie +Lilie +Madeleine +Marcella +Margarette +Margrett +Maurine +Mozelle +Novella +Ona +Orene +Pattie +Rutha +Sammie +Vester +William +Willodene +Wilmer +Wylene +Wynell +Zelda +Alean +Alline +Altha +Amie +Anner +Ara +Artie +Bama +Billy +Blanch +Blondell +Cara +Cathrine +Cecelia +Ceola +Charlsie +Clydie +Delois +Dorotha +Dorothea +Earlie +Elmira +Emmer +Eulene +Euna +Ezell +Gay +Girtha +Glenda +Helon +Idella +Jeraldine +Joanne +Johnny +Judith +Junie +Leslie +Lucretia +Lurene +Luvenia +Madie +Maple +Maria +Marietta +Marzell +Maudine +Mona +Montez +Myrl +Myrle +Myrtie +Nan +Olga +Ossie +Pearlene +Peggie +Phoebe +Theda +Trudie +Vada +Vallie +Vergie +Victoria +Zelma +Zeola +Mary +Betty +Dorothy +Annie +Doris +Willie +Mildred +Margaret +Helen +Ruby +Martha +Louise +Sarah +Frances +Elizabeth +Mattie +Ruth +Evelyn +Virginia +Edna +Lillie +Gladys +Ethel +Clara +Emma +Juanita +Bessie +Alice +Minnie +Joyce +Marie +Catherine +Carrie +Bernice +Lois +Jessie +Rosie +Barbara +Billie +Fannie +Hazel +Nellie +Sara +Peggy +Thelma +Jean +Ella +Hattie +Lula +Johnnie +Rosa +Bertha +Ida +Lillian +Laura +Christine +Julia +Lucille +Bobbie +Wilma +Eva +Carolyn +Edith +Georgia +Ann +Myrtle +Margie +Vera +Beatrice +Pauline +Geraldine +Irene +Susie +Anna +Katherine +Marjorie +Mae +Nancy +Alma +Vivian +Mamie +Bonnie +Gloria +Opal +Geneva +Cora +Jimmie +Bettye +Daisy +Grace +Inez +Eloise +Eunice +Katie +Josephine +Lucy +Flora +Jewel +Maggie +Viola +Nell +Lorene +Mable +Rose +Norma +Jeanette +Imogene +Eula +Gertrude +Lena +Elsie +Lucile +Jane +Nettie +Addie +Kathleen +Rachel +Florence +Joan +Rebecca +Bettie +Faye +Sadie +Agnes +Essie +Lizzie +Lola +Velma +Ollie +Ellen +Ola +Earline +Audrey +Eleanor +Sue +Marion +Patricia +Ada +Ora +Pearl +Jo +Lottie +Naomi +Alberta +Kathryn +Maxine +Ernestine +Jacqueline +Shirley +Beulah +Esther +June +Marilyn +Janie +Mavis +Robbie +Dolores +Mabel +Dora +Jewell +Violet +Wanda +Anne +Nora +Delores +Eddie +Stella +Tommie +Hilda +Melba +Charlotte +Gracie +Roberta +Pearlie +Reba +Della +Sallie +Sybil +Ruthie +Dorthy +Gwendolyn +Myra +Callie +Irma +Leola +Leona +Marian +Erma +Francis +Lela +Patsy +Verna +Etta +Frankie +Janice +Joy +Earnestine +Estella +Ina +Sally +Claudia +Cornelia +Fay +Willodean +Bennie +Charlie +Effie +Gussie +Lila +Zelma +Emily +Estelle +Jennie +Nina +Theresa +Elouise +Miriam +Nadine +Anita +Clarice +Odessa +Willa +Carol +Dollie +Mollie +Rosetta +Beverly +Elaine +Flossie +Sylvia +Iris +Lorine +Rena +Rita +Winnie +Adell +Earlene +Eliza +James +Jannie +Joanne +Nannie +Annette +Corine +Dixie +Ila +Josie +Lee +Lelia +Lessie +Olivia +Ophelia +Joann +Millie +Phyllis +Rosemary +Syble +Bertie +Elma +Elnora +Iva +Janet +Lora +Lou +Louella +Lue +Maudie +Myrtice +Myrtis +Nelda +Robert +Rubye +Vernell +Henrietta +John +Margret +Odell +Roxie +Alene +Blanche +Bobby +Emogene +Lenora +Maude +Polly +Queen +Ramona +Voncile +Aline +Allie +Augusta +Deloris +Era +Jeanne +Loretta +Lydia +Rosia +Amanda +Amy +Celia +Cleo +Connie +Hester +Inell +Jackie +Jerry +Kate +Laverne +Linnie +Virgie +Yvonne +Ava +Avis +Birdie +Colleen +Dean +Dessie +Dolly +Edwina +Estell +Ester +Evie +Exie +Gertha +Hellen +Lera +Maurine +Mazie +Wilda +Wynell +Ellie +Florene +Florine +George +Henry +Lovie +Lucinda +Mittie +Ouida +Pearline +Pinkie +Audie +Charlene +Georgie +Hannah +Harriet +Johnny +Jonnie +Lonnie +Loraine +Louvenia +Madeline +Marguerite +Mona +Muriel +Susan +Voncille +Willene +Aileen +Bette +Bulah +Cassie +Claudine +Dortha +Dovie +Freddie +Gaynell +Ira +Jacquelyn +Jeane +Judy +Letha +Lettie +Lily +Linda +Luverne +Madge +Magdalene +Magnolia +Mozelle +Olive +Ozella +Sammie +Vernice +Alean +Allene +Artie +Bama +Constance +Corene +Cynthia +Donnie +Dorris +Earl +Earlean +Easter +Elinor +Eugenia +Freida +Gertie +Idella +Iola +Jeannine +Joe +Johnie +Julie +Leila +Lorraine +Ludie +Matilda +Maudine +May +Mozell +Myrna +Nella +Pansy +Patty +Paula +Rutha +Verdell +William +Zora +Adeline +Arthur +Berta +Birtha +Carlie +Cathrine +Ceola +Claire +Classie +Claudie +Delois +Dottie +Erie +Erlene +Ethelene +Eulene +Gearldine +Gene +Ima +Jaunita +Jeanie +Jeannette +Jettie +Lurline +Luvenia +Mellie +Merle +Molly +Nan +Nona +Priscilla +Rosalee +Veda +Walter +Zola +Adele +Alva +Amelia +Ammie +Belle +Creola +Dannie +Eileen +Emmie +Euna +Fanny +Goldie +Idell +Isabell +Jeannie +Jenny +Joanna +Kathrine +Kattie +Lona +Lura +Malinda +Mammie +Marcella +Margarette +Marianne +Marietta +Maxie +Octavia +Pearlean +Pearlene +Rubie +Una +Victoria +Vida +Viva +Wilhelmina +Willia +Adelaide +Agatha +Alta +Alvis +Amie +Angeline +Arlene +Aubrey +Bebe +Berniece +Billy +Burma +Caroline +Celestine +Chloe +Clementine +Corinne +Deborah +Dimple +Earlie +Ellene +Elmira +Elna +Elvira +Evangeline +Evelyne +Gail +Gay +Helon +Hortense +Icie +Iona +Jamie +Jeffie +Jeraldine +Junita +Lavada +Lavern +Loree +Lorena +Louisa +Madie +Margene +Margrette +Mazell +Rosalie +Rowena +Savannah +Selena +Texanna +Tressie +Vonda +Zella +Zula +Mary +Betty +Dorothy +Annie +Doris +Martha +Willie +Margaret +Helen +Ruby +Mildred +Frances +Elizabeth +Sarah +Louise +Ruth +Virginia +Mattie +Evelyn +Barbara +Lillie +Joyce +Clara +Emma +Edna +Peggy +Alice +Hazel +Sara +Lois +Ethel +Marie +Juanita +Gladys +Minnie +Jean +Nellie +Bessie +Billie +Bernice +Bobbie +Jessie +Thelma +Ella +Catherine +Bertha +Carolyn +Christine +Fannie +Johnnie +Carrie +Rosie +Ida +Julia +Lula +Lillian +Ann +Hattie +Edith +Eva +Bonnie +Myrtle +Georgia +Nancy +Beatrice +Laura +Rosa +Pauline +Wilma +Geraldine +Margie +Gloria +Alma +Katie +Vera +Mamie +Anna +Lucille +Susie +Velma +Geneva +Mae +Eloise +Inez +Joan +Bettye +Cora +Eunice +Jimmie +Daisy +Irene +Marjorie +Faye +Patricia +Jo +Josephine +Katherine +Norma +Agnes +Eula +Mable +Lucy +Eleanor +Maxine +Rose +Shirley +Essie +Jeanette +Maggie +Jane +June +Vivian +Grace +Janie +Florence +Marion +Bettie +Lorene +Opal +Elsie +Flora +Rebecca +Sue +Sadie +Jewel +Lola +Ora +Alberta +Ollie +Wanda +Nettie +Ola +Imogene +Ada +Kathryn +Lena +Melba +Viola +Ellen +Ernestine +Jacqueline +Lucile +Addie +Kathleen +Nell +Rachel +Charlotte +Audrey +Earline +Gertrude +Pearlie +Sallie +Reba +Anne +Patsy +Beulah +Nina +Eddie +Esther +Gracie +Janice +Dora +Lizzie +Gwendolyn +Lela +Leola +Mavis +Myra +Earnestine +Erma +Willodean +Naomi +Della +Joanne +Roberta +Tommie +Emily +Jewell +Lila +Robbie +Sybil +Fay +Joann +Lottie +Sylvia +Callie +Delores +Irma +Jennie +Marilyn +Nora +Ruthie +Sally +Willa +Winnie +Beverly +Charlie +Effie +Odessa +Claudia +Earlene +Hilda +Marian +Stella +Elnora +Etta +Joy +Mollie +Pearl +Dolores +Dorthy +Iris +Josie +Anita +Iva +Mabel +Nadine +Frankie +Leona +Olivia +Bennie +Estella +Henrietta +Corine +Estelle +Ina +Janet +Miriam +Violet +Virgie +Allie +Nannie +Queen +Voncile +Yvonne +Blanche +Eliza +Rosetta +Syble +Bertie +Carol +Ester +Francis +Freddie +Ila +Jannie +Lessie +Lorine +Pearline +Theresa +Annette +Connie +Era +Lee +Loretta +Marguerite +Adell +Avis +Clarice +Dollie +Elaine +Eugenia +Flossie +Joe +Lou +Lue +Lydia +May +Nelda +Polly +Ramona +Rubye +Amanda +Harriet +Merle +Phyllis +Allene +Cleo +Deloris +Elouise +Jeannette +Jerry +Lelia +Maudie +Myrtice +Myrtis +Ophelia +Rita +Bette +Bobby +Charlene +Emogene +Gussie +Inell +Jackie +James +Leila +Millie +Verna +Wilda +Arlene +Cynthia +Dessie +Dixie +Dortha +Earlean +Georgie +Jacquelyn +Kattie +Laverne +Linnie +Lora +Louvenia +Marlene +Olene +Rubie +Wynell +Constance +Cornelia +Creola +Dovie +Elna +Evie +Iola +John +Lera +Linda +Lorraine +Mammie +Mittie +Mozell +Odell +Rosia +Roxie +Cassie +Christene +Dolly +Dorris +Freda +Gertha +Ima +Jeanne +Ludie +Lura +Madge +Mozelle +Regina +Susan +Vernice +Arlean +Ceola +Charles +Corene +Dean +Delois +Edwina +Estell +Gay +Hannah +Ira +Judy +Luvenia +Magdalene +Margarett +Mona +Myrtie +Octavia +Rena +Vernell +Alene +Aline +Claudie +Elma +Florene +Floy +Gaynell +Hester +Hortense +Johnie +Judith +Julie +Juliette +Kate +Lucinda +Luella +Marianne +Maude +Molly +Nona +Ouida +Ozell +Paula +Peggie +Rosemary +Tempie +Verla +Victoria +Zella +Zeola +Berneice +Bobbye +Camilla +Celia +Clair +Clemmie +Delma +Dot +Easter +Ellie +Elva +Emmie +Gearldine +Glenda +Hellen +Janette +Jettie +Kathrine +Louella +Madie +Magnolia +Maudine +Merlene +Ocie +Oma +Ossie +Pattie +Retha +Walter +Willo +Winona +Aileen +Althea +Amelia +Amy +Annis +Artie +Augusta +Billy +Birdie +Birtha +Celestine +Cherry +Claire +Claudette +Claudine +Clementine +Dartha +Donna +Donnie +Elise +Eulene +Fairy +Florine +Henry +Hettie +Iona +Katheryn +Kay +Lennie +Letha +Lettie +Lona +Lonnie +Mandy +Margret +Maurine +Mazie +Nita +Nola +Olga +Pinkie +Ressie +Reva +Robert +Sammie +Sandra +Sherry +Sibyl +Sophia +Vesta +Willene +Winifred +Zelma +Audie +Ava +Bama +Blondell +Burma +Charity +Clarence +Cleola +Clovis +Corinne +Delia +Dona +Dorcas +Eileen +Elmira +Elois +Elvie +Erlene +Freida +Gene +George +Gertie +Idell +Jaunita +Jeffie +Jonnie +Jossie +Lenora +Leslie +Lilla +Loraine +Lovie +Madeline +Marcella +Margarette +Marveline +Maureen +Mennie +Mitzi +Olean +Ozella +Rhoda +Rochelle +Roma +Rosalie +Rutha +Teresa +Tessie +Vada +Veola +Voncille +William +Willodene +Wylodean +Zula +Mary +Betty +Annie +Dorothy +Margaret +Martha +Helen +Willie +Doris +Barbara +Ruby +Frances +Mildred +Sarah +Elizabeth +Louise +Mattie +Ruth +Joyce +Lillie +Evelyn +Virginia +Emma +Peggy +Edna +Juanita +Clara +Alice +Hazel +Nellie +Bernice +Bobbie +Ethel +Minnie +Carrie +Catherine +Sara +Gladys +Lois +Jean +Rosie +Billie +Bertha +Bessie +Marie +Thelma +Carolyn +Jessie +Ann +Lillian +Johnnie +Ella +Ida +Lula +Margie +Fannie +Eva +Julia +Gloria +Vera +Christine +Patricia +Katie +Rosa +Geraldine +Bonnie +Myrtle +Nancy +Hattie +Laura +Anna +Cora +Pauline +Georgia +Lucille +Mamie +Irene +Shirley +Wilma +Edith +Joan +Alma +Eloise +Essie +Susie +Beatrice +Daisy +Norma +Jimmie +Jo +Josephine +Katherine +Velma +Vivian +Geneva +Jane +Lucy +Mae +Marjorie +Sue +Eunice +Faye +Jeanette +Rose +Sadie +Flora +Imogene +Elsie +Eula +Opal +June +Bettie +Inez +Janie +Ollie +Bettye +Kathleen +Lola +Mable +Lorene +Alberta +Kathryn +Maggie +Agnes +Florence +Maxine +Sallie +Gertrude +Grace +Marion +Nell +Nettie +Rebecca +Robbie +Dora +Earline +Ellen +Esther +Ola +Jewel +Patsy +Eleanor +Ada +Audrey +Lizzie +Anne +Lena +Viola +Wanda +Sylvia +Mavis +Melba +Pearl +Reba +Della +Jacqueline +Addie +Carol +Jewell +Myra +Rachel +Delores +Ernestine +Joann +Lucile +Naomi +Charlotte +Ora +Emily +Jennie +Pearlie +Gracie +Frankie +Hilda +Dolores +Dorthy +Earnestine +Erma +Janice +Lila +Mabel +Roberta +Marilyn +Ruthie +Willodean +Leola +Callie +Odessa +Joanne +Sally +Eddie +Gwendolyn +Joy +Lottie +Nora +Stella +Tommie +Lela +Earlene +Fay +Iva +Lessie +Phyllis +Etta +Violet +Effie +Beulah +Leona +Delois +Estelle +Nannie +Nelda +Ramona +Willa +Charlie +Corine +Eliza +Elouise +Ila +Irma +Janet +Loretta +Lou +Syble +Jannie +Maudie +Nina +Odell +Polly +Beverly +Connie +Elnora +Linda +Marian +Nadine +Rosetta +Verna +Winnie +Allie +Elaine +Estella +Ima +Myrtis +Bennie +Blanche +Bobby +Flossie +Francis +Freddie +Iris +Marguerite +Mollie +Myrtice +Olivia +Sybil +Yvonne +Anita +Annette +Claudia +Elma +James +Judy +Millie +Mittie +Rita +Susan +Cleo +Cornelia +Dollie +Dovie +Emogene +Ina +Queen +Theresa +Jackie +Ophelia +Virgie +Amanda +Deloris +Era +Gussie +Henrietta +Jeannette +Josie +Lenora +Rena +Voncile +Donna +Jeanne +Laverne +Lorine +Marlene +Rosemary +Rosia +Augusta +Iola +Jerry +Mandy +May +Ouida +Pearline +Adell +Arlene +Bertie +Bette +Constance +Cynthia +Leila +Lelia +Letha +Margret +Merle +Miriam +Nona +Amy +Birdie +Ceola +Charles +Clarice +Claudie +Dessie +Dixie +Dolly +Easter +Eugenia +Hannah +Inell +Lue +Lydia +Margarett +Pinkie +Retha +Robert +Rubye +Bobbye +Celia +Elna +Evie +Freda +Gay +Gaynell +Gearldine +Harriet +Jacquelyn +Lee +Luella +Roxie +Vernell +William +Zora +Alene +Caroline +Cherry +Colleen +Dean +Edwina +Ester +Exie +Jaunita +Louella +Marcella +Maxie +Nan +Ocie +Octavia +Sammie +Willene +Wynell +Allene +Celestine +Clarine +Donnie +Elvira +Florine +Georgie +Hazle +Ira +Jettie +Johnie +Linnie +Lorraine +Molly +Mona +Muriel +Nola +Oma +Verdell +Walter +Wilda +Willia +Willodene +Zelma +Aline +Amelia +Aurelia +Avis +Betsy +Cassie +Charlene +Dorris +Emmie +Estell +Gene +Hellon +Henry +Hester +John +Jonnie +Joseph +Judith +Juliette +Lonnie +Louisa +Louvenia +Lucinda +Madie +Magnolia +Matilda +Olive +Rosalie +Arie +Audry +Christene +Creola +Emmer +Erline +Eulene +Harriett +Hellen +Idella +Janette +Lavada +Lettie +Liza +Lovie +Maudine +Maurine +Montez +Nila +Pattie +Patty +Peggie +Pollie +Rubie +Verla +Vinnie +Winona +Aileen +Allean +Bulah +Cathryn +Clementine +Corene +Corrine +Delia +Dortha +Ethelene +Genell +Genevieve +George +Irine +Isabella +Joanna +Kate +Kattie +Leah +Lily +Loraine +Lorean +Lorena +Lura +Magdalene +Maud +Mozell +Mozelle +Nella +Olean +Ozell +Ozella +Regina +Reva +Rutha +Tessie +Trudie +Verdie +Vernice +Vida +Willadean +Willow +Winifred +Wynelle +Abbie +Adele +Arlee +Azzie +Berniece +Burma +Carmen +Carole +Charity +Charlsie +Clarence +Claudine +Corrie +Dannie +Delma +Diana +Dorothey +Dottie +Earlean +Earlie +Eldora +Elmer +Elva +Floy +Floyd +Gail +Gayle +Gertie +Glenda +Goldie +Greta +Hettie +Imo +Jeannine +Johnny +Kathy +Leatrice +Lennie +Leta +Lina +Lona +Lora +Madge +Marcia +Mariah +Maude +Maureen +Maurice +Mazie +Mennie +Mitzi +Myrtie +Nedra +Ossie +Parthenia +Pat +Pearlene +Priscilla +Queenie +Richie +Sophia +Sophie +Una +Vergie +Verlie +Versie +Vesta +Willo +Zella +Zola +Mary +Betty +Annie +Dorothy +Barbara +Margaret +Doris +Martha +Helen +Willie +Ruby +Mildred +Sarah +Elizabeth +Frances +Louise +Ruth +Joyce +Virginia +Mattie +Lillie +Evelyn +Peggy +Edna +Bobbie +Clara +Emma +Minnie +Ethel +Carolyn +Alice +Juanita +Catherine +Nellie +Hazel +Jean +Lois +Marie +Bessie +Sara +Jessie +Bernice +Billie +Ann +Bertha +Johnnie +Ella +Gladys +Thelma +Julia +Fannie +Gloria +Carrie +Jo +Lillian +Rosie +Margie +Rosa +Nancy +Patricia +Lula +Ida +Laura +Geraldine +Wilma +Christine +Lucille +Hattie +Pauline +Vera +Daisy +Eva +Jimmie +Mamie +Anna +Cora +Jane +Joan +Bonnie +Norma +Sue +Jeanette +Faye +Shirley +Bettye +Georgia +Lucy +Irene +Edith +Eloise +Josephine +Katie +Ollie +Vivian +Essie +Rebecca +Elsie +Maggie +Myrtle +Geneva +Beatrice +Eula +Katherine +Alma +Eleanor +Marjorie +Susie +Inez +Maxine +Nell +June +Opal +Velma +Mae +Sylvia +Alberta +Sallie +Dora +Jewel +Sadie +Lizzie +Nettie +Mable +Ada +Bettie +Eunice +Audrey +Flora +Imogene +Lola +Florence +Grace +Ola +Pearlie +Charlotte +Earline +Patsy +Reba +Ernestine +Janie +Carol +Earnestine +Janice +Rachel +Rose +Wanda +Marion +Joann +Gertrude +Mavis +Agnes +Kathryn +Melba +Robbie +Tommie +Ellen +Jewell +Lena +Addie +Jacqueline +Anne +Dorthy +Gwendolyn +Lorene +Ora +Delores +Loretta +Lucile +Sally +Stella +Callie +Kathleen +Nina +Willa +Joy +Viola +Claudia +Della +Dollie +Eddie +Emily +Esther +Myra +Nora +Charlie +Gussie +Miriam +Anita +Beulah +Erma +Janet +Naomi +Ruthie +Annette +Frankie +Hilda +Irma +Jennie +Lottie +Lou +Elnora +Lila +Pearl +Roberta +Corine +Dolores +Etta +Fay +Leola +Marilyn +Rosetta +Sybil +Winnie +Earlene +Gracie +Marlene +Bennie +Effie +Linda +Mollie +Ouida +Beverly +Elouise +Mabel +Nadine +Olivia +Theresa +Willodean +Yvonne +Deloris +Flossie +Jannie +Joanne +Lenora +Violet +Allie +Freddie +Ila +James +Lela +Odessa +Elaine +Eliza +Estella +Francis +Jackie +Leona +Lessie +Queen +Verna +Cleo +Estelle +Inell +Marian +Constance +Glenda +Ina +Marguerite +Blanche +Bobby +Nelda +Nira +Ophelia +Rita +Syble +Voncile +Bertie +Iris +May +Millie +Phyllis +Rosia +Amanda +Clarice +Connie +Cynthia +Gail +Henrietta +Iola +Josie +Laverne +Mona +Myrtice +Dovie +Ima +Jacquelyn +Judy +Nannie +Rena +Willene +Adell +Bette +Emogene +Era +Gaynell +Jerry +Leila +Mittie +Pearline +Polly +Aline +Corene +Donna +Edwina +Harriet +Idell +Lee +Lelia +Lora +Lorine +Magnolia +Maudie +Muriel +Nona +Pat +Rubie +Rubye +Selma +Wilda +Allene +Birdie +Cassie +Charlene +Delois +Dixie +Donnie +Earlean +Ellie +Elma +Florine +Freda +Gay +Genevieve +Harriett +Idella +Janette +Johnie +Kattie +Lue +Nan +Rosemary +Amelia +Bobbye +Cornelia +Corrine +Eartha +Easter +Ester +Gayle +Gertie +Hellen +Ira +Iva +Janis +Kay +Lennie +Letha +Mandy +Merle +Pinkie +Ramona +Susan +Virgie +Zelma +Zola +Alta +Alva +Annice +Audie +Augusta +Claudine +Dessie +Dolly +Dorris +Eugenia +Evie +Hester +Janett +Jeanne +Jettie +Joe +John +Jonnie +Judith +Lily +Linnie +Luella +Luvenia +Lydia +Madie +Marcia +Mazie +Mozelle +Novella +Odell +Olive +Paula +Priscilla +Rheta +Roxie +Savannah +Selena +Willow +Winifred +Aileen +Altha +Annis +Cathryn +Charles +Cordelia +Dot +Dottie +Earlie +Elvira +Ethelene +Gearldine +Greta +Gwen +Ivy +Louvenia +Lovie +Ludie +Madge +Magdalene +Maria +Maude +Nella +Retha +Sammie +Sandra +Verla +Vernell +Vernie +Angie +Arlena +Arlene +Aurelia +Ava +Berta +Bulah +Carole +Cathrine +Cecelia +Claudie +Colleen +Dean +Dortha +Exie +Fanny +Florene +Florida +Gennie +George +Gertha +Goldie +Hannah +Leslie +Loraine +Lorena +Lorraine +Louella +Lura +Madeline +Margrett +Marianne +Matilda +Montez +Myrtie +Myrtis +Nita +Olean +Olene +Patty +Reather +Rhoda +Sonya +Teresa +Tressie +Verdell +Vergie +Victoria +Vida +Willadean +Arthur +Avis +Bernell +Blondell +Burnice +Carlene +Cecilia +Celia +Charline +Charlsie +Cherry +Clementine +Clemmie +Diane +Eileen +Elmira +Elva +Floria +Geraldean +Hallie +Hildred +Hortense +Jeannie +Johnny +Kate +Lavada +Lilly +Luevenia +Lynn +Mammie +Margret +Marietta +Maudine +Maureen +Melva +Merlene +Osie +Pattie +Pearlean +Peggie +Queenie +Reva +Robert +Sharlene +Una +Veola +Wilhelmina +Willia +William +Wilodean +Mary +Betty +Dorothy +Annie +Barbara +Martha +Doris +Margaret +Willie +Ruby +Helen +Sarah +Frances +Peggy +Mildred +Mattie +Joyce +Elizabeth +Louise +Virginia +Edna +Shirley +Carolyn +Ruth +Emma +Lillie +Bobbie +Minnie +Sara +Evelyn +Alice +Nellie +Billie +Gladys +Ethel +Bernice +Jean +Marie +Patricia +Lois +Catherine +Juanita +Ann +Hazel +Carrie +Jessie +Clara +Ella +Bessie +Bertha +Julia +Johnnie +Nancy +Lillian +Lula +Jo +Christine +Norma +Rosie +Margie +Gloria +Fannie +Laura +Ida +Thelma +Josephine +Geraldine +Rosa +Eva +Joan +Katie +Bonnie +Jimmie +Hattie +Georgia +Vera +Pauline +Vivian +Lucille +Wilma +Mae +Anna +Faye +Jeanette +Sue +Bettye +Lucy +Beatrice +Irene +Edith +Mamie +Alma +Cora +Katherine +Rebecca +Eunice +Geneva +Marjorie +Myrtle +Velma +Daisy +Susie +Eleanor +Janice +Maggie +Bettie +Eula +Elsie +Gwendolyn +Essie +June +Eloise +Jane +Joann +Mable +Earline +Lola +Patsy +Nettie +Sylvia +Audrey +Sallie +Dora +Inez +Kathryn +Rose +Lena +Lorene +Wanda +Ellen +Maxine +Ola +Flora +Jewel +Alberta +Carol +Grace +Myra +Nell +Agnes +Charlotte +Ernestine +Lizzie +Pearlie +Viola +Imogene +Addie +Delores +Jacqueline +Kathleen +Opal +Sadie +Ollie +Rachel +Reba +Tommie +Ada +Earnestine +Janie +Marion +Nina +Florence +Gracie +Hilda +Anne +Beverly +Ruthie +Melba +Pearl +Queen +Sally +Dorthy +Mavis +Eddie +Esther +Ora +Annette +Gertrude +Marian +Glenda +Naomi +Loretta +Lucile +Rosetta +Jewell +Roberta +Yvonne +Nelda +Odessa +Robbie +Callie +Dolores +Erma +Marilyn +Nora +Joy +Rita +Corine +Elnora +Estelle +Fay +Janet +Jennie +Leola +Polly +Stella +Willa +Emily +Frankie +Ila +Iris +Lela +Beulah +Della +Gussie +Lila +Lou +Mabel +Marlene +Phyllis +Anita +Effie +Elouise +Etta +Lottie +Millie +Freddie +Jackie +Linda +Sybil +Henrietta +Joanne +Josie +Miriam +Ouida +Merle +Amanda +Bertie +Kay +Leona +Jannie +Jerry +Syble +Bennie +Bobby +Dollie +Earlene +Evie +Gail +Irma +Judy +Lenora +Maudie +Theresa +Amelia +Carole +Delois +Elaine +Ima +Joe +Lee +Lorine +Marguerite +Virgie +Willodean +Winnie +Celia +Claudia +Connie +Donna +Francis +Lessie +Lydia +Mollie +Myrtice +Olivia +Paula +Pinkie +Birdie +Clarice +Deloris +Georgie +Harriet +Myrtis +Nadine +Susan +Vernell +Charlene +Claudette +Cornelia +Dessie +Judith +Ophelia +Pearline +Rosia +Rubye +Augusta +Avis +Charlie +Cynthia +Flossie +Freda +Jacquelyn +Lora +Odell +Ramona +Rena +Sandra +Violet +Allie +Bette +Blanche +Cleo +Gay +Iola +Lorraine +Louella +Lovie +Mittie +Peggie +Verna +Voncile +Corene +Edwina +Ester +Florine +Hannah +Iva +James +Janette +Juliette +Luella +Margret +Nona +Amy +Arlene +Cassie +Constance +Easter +Eliza +Era +Greta +Ina +Janis +Jeanne +Jettie +Lucinda +Madie +Maude +Molly +Mona +Myrna +Olean +Sharon +Willene +Zelma +Adell +Carlene +Charlsie +Colleen +Dimple +Donnie +Emmie +Estella +Florene +Gaynell +Idella +Inell +Jeannette +Kate +Lelia +Lue +Muriel +Nella +Retha +Rubie +Saddie +Sammie +Victoria +Wilda +Winifred +Wynell +Ara +Celestine +Claire +Claudie +Claudine +Diane +Elva +Goldie +Harriett +Hester +Jaunita +Luvenia +May +Roxie +Tiny +Una +Verdell +Vernice +Zora +Alfreda +Allene +Alta +Angela +Artie +Betsy +Caroline +Ceola +Charles +Delia +Dixie +Dolly +Dovie +Earlean +Eartha +Elma +Elmira +Estell +Eugenia +Freida +Genevieve +Gertie +Glennie +Imogean +Jonnie +Katheryn +Kattie +Laverne +Letha +Lettie +Lilly +Lily +Lona +Margarette +Maria +Mariah +Maudine +Mozell +Nannie +Olene +Olive +Priscilla +Rosemary +Rossie +Tressie +Veola +Vonnie +Walter +Zola +Abbie +Adella +Aline +Alyce +Augustine +Berta +Camilla +Cathrine +Cherry +Christene +Daphine +Dean +Deborah +Dot +Elna +Eulene +Florida +Gayle +Gaynelle +Hellen +Isabell +Jamie +Johnie +Julie +Kitty +Lennie +Louie +Marcella +Margarett +Marzell +Maureen +Nan +Nita +Nola +Ocie +Olga +Ozell +Ozzie +Regina +Trudie +William +Zelda +Albert +Allean +Beth +Bobbye +Bulah +Burnice +Cathryn +Christeen +Creola +Debra +Earlie +Elease +Etha +Eugene +Everline +Gene +Gennie +George +Helon +Janell +Jill +Jimmy +Jossie +Leatha +Leila +Lera +Libby +Lorena +Louvenia +Lura +Lynn +Madge +Magnolia +Mammie +Maple +Marietta +Maxie +Mozelle +Neva +Pansy +Pat +Patty +Raynell +Rochelle +Savannah +Suzanne +Sweetie +Toni +Valeria +Wilmer +Mary +Betty +Annie +Dorothy +Shirley +Barbara +Martha +Doris +Margaret +Willie +Ruby +Sarah +Helen +Frances +Peggy +Joyce +Elizabeth +Mildred +Louise +Virginia +Mattie +Carolyn +Bobbie +Lillie +Evelyn +Edna +Ruth +Patricia +Alice +Clara +Minnie +Nellie +Ethel +Sara +Bernice +Carrie +Emma +Gladys +Jo +Juanita +Jean +Catherine +Ann +Bessie +Bertha +Lois +Ella +Billie +Gloria +Hazel +Nancy +Johnnie +Julia +Marie +Lula +Jessie +Rosie +Hattie +Fannie +Bonnie +Thelma +Rosa +Margie +Bettye +Norma +Laura +Faye +Susie +Ida +Joan +Lillian +Geraldine +Josephine +Sylvia +Katie +Vera +Jimmie +Christine +Patsy +Eva +Jeanette +Daisy +Lucille +Rebecca +Anna +Jane +Georgia +Mae +Maggie +Wilma +Mamie +Vivian +Carol +Charlotte +Pauline +Eloise +Annette +Sue +Janice +Myrtle +Irene +Eleanor +Cora +Edith +Geneva +Marjorie +Ernestine +Rose +Katherine +Mable +Marion +Beatrice +Alma +Eunice +Velma +June +Lucy +Ollie +Yvonne +Bettie +Delores +Maxine +Myra +Florence +Lola +Wanda +Ellen +Flora +Gwendolyn +Sadie +Eula +Marilyn +Dora +Jewel +Nettie +Sallie +Audrey +Essie +Glenda +Pearlie +Alberta +Grace +Jacqueline +Lizzie +Elsie +Lena +Ola +Ora +Inez +Leola +Addie +Lela +Loretta +Nell +Janie +Melba +Reba +Robbie +Tommie +Gail +Joann +Rachel +Roberta +Anne +Dolores +Viola +Callie +Kathleen +Sally +Dorthy +Earline +Ruthie +Gertrude +Kathryn +Lucile +Agnes +Eddie +Ada +Beverly +Earnestine +Esther +Gracie +Lorene +Naomi +Nina +Frankie +Joy +Nora +Imogene +Opal +Corine +Emily +Pearl +Rosetta +Sandra +Stella +Elaine +Erma +Fay +Anita +Della +Dollie +Etta +Jewell +Judy +Lottie +Marian +Queen +Claudia +Deloris +Henrietta +Jackie +Mabel +Phyllis +Beulah +Janet +Mavis +Nadine +Rita +Willa +Hilda +Ina +Jerry +Polly +Winnie +Allie +Earlene +Estella +Odell +Pearline +Charlie +Freda +Freddie +Jennie +Joanne +Lorine +Bennie +Elma +Francis +Josie +Lila +Susan +Verna +Violet +Claudette +Elnora +Jannie +Mollie +Rena +Syble +Willodean +Amanda +Bobby +Iris +Irma +Lee +Linda +Odessa +Dixie +Inell +Kay +Nelda +Olivia +Sybil +Adell +Amy +Carole +Charlene +Cornelia +Estelle +Ila +Lelia +Marlene +Millie +Miriam +Arlene +Effie +Eugenia +Leila +Lue +Rosemary +Connie +Delois +Eliza +Gay +Mona +Ramona +Rosia +Voncile +Blanche +Donna +Elouise +Jacquelyn +Lucinda +May +Nannie +Ophelia +Virgie +Augusta +Cleo +Flossie +Gussie +Avis +Bette +Dolly +Evie +Florine +Gayle +Gaynell +Ima +Iva +Jaunita +Jeannette +Joe +Judith +Kattie +Leona +Lydia +Maudie +Molly +Patty +Sharon +Verdell +Allene +Alyce +Cassie +Clarice +Cynthia +Freida +Greta +Johnie +Lou +Luvenia +Pat +Rubye +Theresa +Willene +Zelma +Alta +Christeen +Dot +Elna +Era +Iola +James +Lenora +Lessie +Lora +Madge +Mozell +Myrna +Ossie +Peggie +Priscilla +Victoria +Bertie +Bobbye +Cherry +Creola +Dorris +Ester +Gearldine +George +Ira +Jeanne +Jettie +Jonnie +Kate +Laverne +Marguerite +Sammie +Aline +Caroline +Celestine +Constance +Corene +Dessie +Donnie +Easter +Edwina +Ellie +Emmie +Hannah +Jan +Jeanie +Jerrie +Lettie +Maude +Myrtis +Nella +Nola +Nona +Ouida +Ozella +Paula +Pinkie +Retha +Sherry +Willia +Wynell +Amelia +Angie +Artie +Berta +Camilla +Cathryn +Celia +Charles +Christene +Classie +Corrine +Dale +Delia +Dovie +Elois +Eulene +Florene +Georgie +Glennie +Goldie +Janette +Jeraldine +Johnnye +Julie +Leatrice +Lilly +Madeline +Marianne +Matilda +Maurine +Mazie +Mennie +Mittie +Myrtice +Nila +Pattie +Reola +Rosalie +Selma +Tressie +Valeria +Vernell +Alene +Alva +Angela +Benetta +Cecelia +Ceola +Claudie +Clemmie +Dean +Dona +Doyce +Emogene +Genevieve +Gennie +Gertha +Gwen +Harriet +Hellen +Idella +Iona +Janis +John +Lera +Lonnie +Louvenia +Marcia +Margarett +Margarette +Margret +Mariah +Marry +Merle +Muriel +Neva +Octavia +Pecola +Queenie +Regina +Robert +Savannah +Veola +Vonnie +Wilhelmina +Zella +Adele +Alfreda +Alpha +Audie +Barbra +Burnice +Cathrine +Claudine +Clovis +Corinne +Dimple +Dorotha +Dorothea +Dortha +Earlean +Elva +Ethelrine +Franklin +Ginger +Harriett +Henry +Hester +Hettie +Katheryn +Kitty +Letha +Linnie +Lorena +Lorraine +Louisa +Lovie +Luella +Mammie +Marcella +Margene +Maureen +Mellie +Melva +Mozelle +Murlene +Nan +Nita +Novella +Ocie +Olean +Pearlean +Ressie +Rossie +Samantha +Sheila +Sula +Tempie +Teresa +Tinnie +Voncille +Willadean +Willo +Winifred +Mary +Betty +Shirley +Annie +Dorothy +Barbara +Martha +Margaret +Doris +Willie +Frances +Peggy +Sarah +Helen +Ruby +Elizabeth +Carolyn +Joyce +Virginia +Mattie +Patricia +Mildred +Bobbie +Lillie +Evelyn +Louise +Alice +Edna +Clara +Emma +Nancy +Ruth +Ann +Juanita +Minnie +Sara +Ethel +Jessie +Nellie +Jo +Rosie +Catherine +Ella +Bertha +Bessie +Johnnie +Billie +Gladys +Hazel +Lois +Norma +Jean +Marie +Bernice +Julia +Carrie +Sylvia +Ida +Joan +Hattie +Margie +Geraldine +Gloria +Jane +Thelma +Patsy +Fannie +Lula +Wilma +Rosa +Eva +Laura +Christine +Katie +Susie +Jeanette +Anna +Sue +Vera +Mamie +Faye +Josephine +Janice +Bettye +Eloise +Mae +Yvonne +Shelby +Vivian +Bonnie +Rebecca +Eleanor +Wanda +Cora +Edith +Georgia +Jimmie +Lillian +Alma +Annette +Beatrice +Lucy +Irene +Maggie +Glenda +Rose +Marjorie +Pauline +Charlotte +Katherine +Myrtle +Joann +Jacqueline +Lucille +Bettie +Daisy +Essie +Eunice +Carol +Geneva +June +Marilyn +Elsie +Gwendolyn +Marion +Delores +Janie +Eula +Ola +Robbie +Jewel +Rachel +Velma +Inez +Lena +Lola +Ollie +Sallie +Sandra +Flora +Florence +Maxine +Myra +Nina +Kathryn +Loretta +Sadie +Mable +Anne +Nettie +Ada +Dora +Ernestine +Imogene +Lizzie +Addie +Earnestine +Linda +Reba +Alberta +Audrey +Beverly +Ellen +Emily +Nell +Roberta +Grace +Lorene +Nelda +Melba +Esther +Lela +Opal +Pearlie +Ruthie +Gail +Kathleen +Ora +Tommie +Agnes +Judith +Naomi +Nora +Gertrude +Joy +Irma +Jackie +Lottie +Frankie +Stella +Anita +Deloris +Erma +Lucile +Bennie +Kay +Eddie +Gracie +Mavis +Estella +Janet +Phyllis +Sally +Della +Dolores +Leola +Marian +Olivia +Sybil +Viola +Beulah +Earline +Willa +Jewell +Pearl +Rosetta +Verna +Charlie +Effie +Hilda +Judy +Lou +Miriam +Corine +Jennie +Lee +Rita +Claudia +Dollie +Etta +Iris +Jerry +Joanne +Lue +Ophelia +Queen +Syble +Claudette +Dixie +Dorthy +Josie +Marlene +Bobby +Cornelia +Elnora +Estelle +Henrietta +Leona +Nannie +Willodean +Callie +Iva +Jannie +Lessie +Shelba +Voncile +Earlene +Nadine +Pearline +Virgie +Winnie +Bertie +Elaine +Fay +Gaynell +Ila +Ina +Celia +Flossie +Francis +Freddie +Joe +Millie +Mollie +Polly +Ramona +Charlene +Cleo +Elouise +Marguerite +Mona +Myrna +Rubye +Violet +Allie +Amanda +Clarice +Donna +Elma +Freda +Harriet +Lenora +Lila +Lora +Myrtis +Odessa +Pinkie +Rosemary +Sharon +Willia +Connie +Cynthia +Jaunita +Retha +Rosia +Theresa +Adell +Blanche +Carole +Colleen +Delois +Elna +Gayle +Gearldine +Gussie +Jeannette +Mabel +Maureen +Paula +Sherry +Vernell +Amelia +Bette +Caroline +Ceola +Donnie +Georgie +Idella +Inell +Lorine +Margarett +Maude +May +Merle +Myrtice +Nella +Ouida +Peggie +Willene +Wynell +Amy +Arlene +Darlene +Dean +Dolly +Earlean +Easter +Eliza +Era +Estell +Ira +Jacquelyn +Janis +Kathrine +Leila +Lovie +Ocie +Rena +Wilda +Alene +Edwina +Exie +Harriett +Jeannie +Juliette +Linnie +Lydia +Marva +Matilda +Mittie +Mozell +Nan +Odell +Susan +Vida +Bobbye +Constance +Delia +Earlie +Emogene +Ester +Eugenia +Florine +Gay +Hellen +Henry +Iola +James +Lelia +Lorean +Lorraine +Louvenia +Luella +Pecola +Sammie +Winifred +Aline +Augusta +Aurelia +Cecile +Charlsie +Cherry +Classie +Claudine +Dorris +Dottie +Dovie +Ethelene +Evie +Genevieve +George +Gertha +Hester +Janette +Jettie +Jonnie +Laverne +Leanna +Lilly +Lucinda +Maudie +Mazie +Muriel +Nona +Olean +Patty +Rochelle +Sidney +Terry +Verdell +Voncille +Zella +Zora +Alyce +Arlean +Birdie +Camilla +Carlene +Celestine +Charles +Claire +Clyde +Corene +Creola +Dessie +Dorcas +Dot +Ellie +Frank +Gennie +Hannah +Ima +Janelle +Jeanne +Kattie +Kitty +Lauretta +Lavern +Lonnie +Loraine +Madge +Mammie +Margret +Maria +Maurine +Mickey +Minerva +Mozelle +Rutha +Savannah +Sheila +Tessie +Vernice +Alean +Annetta +Arthur +Audie +Becky +Betsy +Beverley +Bulah +Cammie +Clemmie +Corrie +Elois +Elva +Erlene +Faith +Florida +Gene +Geraldean +Gerry +Ginger +Glennie +Goldie +Isabella +Jeanie +Joanna +John +Johnny +Karen +Laurie +Lavada +Leatha +Lennie +Leslie +Letha +Lettie +Louella +Lura +Mackie +Magdalene +Malinda +Mandy +Maple +Margene +Merlene +Molly +Neta +Nila +Octavia +Omie +Otha +Pearlean +Regina +Ressie +Robert +Rosalyn +Selma +Suzanne +Tinnie +Vernon +Vonda +Vonnie +Willadean +Mary +Betty +Barbara +Shirley +Annie +Dorothy +Martha +Margaret +Doris +Peggy +Willie +Sarah +Carolyn +Helen +Ruby +Patricia +Frances +Elizabeth +Joyce +Virginia +Louise +Mattie +Mildred +Evelyn +Emma +Ruth +Bobbie +Lillie +Edna +Nancy +Sara +Alice +Jean +Shelby +Ann +Jo +Juanita +Marie +Minnie +Clara +Ethel +Jessie +Nellie +Catherine +Gladys +Johnnie +Gloria +Bernice +Patsy +Carrie +Bessie +Hattie +Sylvia +Ella +Geraldine +Hazel +Bertha +Fannie +Rosie +Carol +Norma +Bonnie +Lula +Ida +Margie +Lois +Thelma +Joan +Laura +Billie +Jimmie +Julia +Annette +Janice +Edith +Jane +Eva +Josephine +Jeanette +Susie +Bettye +Christine +Cora +Wanda +Mamie +Sue +Charlotte +Rosa +Eleanor +Lucy +Wilma +Geneva +Katie +Lillian +Faye +Georgia +Mae +Anna +Vera +Yvonne +Daisy +Rebecca +Irene +Myrtle +Marjorie +Pauline +Rose +Glenda +Sandra +Alma +Joann +Lucille +Marilyn +Linda +Melba +June +Myra +Beatrice +Eloise +Katherine +Vivian +Eula +Maggie +Delores +Bettie +Beverly +Grace +Velma +Alberta +Ernestine +Lizzie +Nettie +Ola +Sadie +Essie +Ollie +Audrey +Gwendolyn +Mable +Ada +Elsie +Maxine +Janie +Pearlie +Viola +Ellen +Kay +Robbie +Eunice +Lola +Gail +Rachel +Addie +Dora +Jacqueline +Loretta +Sallie +Della +Florence +Kathleen +Nina +Anne +Emily +Marion +Anita +Earnestine +Flora +Inez +Esther +Lottie +Ora +Tommie +Agnes +Imogene +Jewel +Lucile +Reba +Nell +Ruthie +Eddie +Frankie +Gertrude +Judith +Lela +Lena +Beulah +Dorthy +Elaine +Mavis +Naomi +Sally +Gracie +Jackie +Kathryn +Queen +Lorene +Opal +Erma +Shelba +Nelda +Nora +Roberta +Sherry +Gussie +Iris +Phyllis +Deloris +Elnora +Rosetta +Stella +Sybil +Winnie +Effie +Etta +Jennie +Joy +Leola +Theresa +Josie +Charlie +Donna +Judy +Olivia +Bennie +Jannie +Odessa +Willa +Connie +Dolores +Earlene +Henrietta +Hilda +Irma +Janet +Lou +Pearl +Earline +Estella +Fay +Freddie +Miriam +Rita +Claudia +Elouise +Jerry +Jewell +Rosemary +Syble +Corine +Dollie +Iva +Myrna +Charlene +Nadine +Polly +Susan +Celia +Estelle +Ina +Joe +Voncile +Amelia +Delois +Dixie +Lee +Leona +Lessie +Millie +Nella +Violet +Harriett +Ila +Joanne +Lila +Mabel +Marian +Marlene +Marva +Verna +Willodean +Allie +Callie +Francis +Ramona +Amy +Bobby +Carole +Cynthia +Edwina +Evie +Flossie +Mollie +Ophelia +Pat +Priscilla +Virgie +Adell +Cleo +Donnie +Inell +Iola +Jaunita +Myrtice +Paula +Peggie +Regina +Rosia +William +Clarice +Era +Eugenia +Florine +Lelia +Lora +Lydia +Melva +Rubye +Verdell +Dovie +James +Janette +Linnie +Marcia +Margret +Marguerite +Merle +Molly +Rena +Alfreda +Amanda +Bertie +Bette +Claudette +Constance +Creola +Dean +Ellie +Gaynell +Ima +Jacquelyn +Johnie +Lenora +Luella +Myrtis +Nona +Ouida +Pearline +Pinkie +Arthur +Billy +Cecile +Charles +Dessie +Dolly +Easter +Emmie +Ester +Gay +Gayle +Harriet +Hellen +Jeanne +Karen +Lily +Lonnie +Lorena +Lorraine +Lue +Lynda +Maude +May +Mazie +Mittie +Mona +Nan +Nannie +Ocie +Patty +Sammie +Sharon +Vernell +Wynell +Zettie +Caroline +Cornelia +Dottie +Earlean +Hettie +Ira +Isabell +Jeanie +Julie +Kattie +Lorine +Lovie +Maurine +Muriel +Nola +Odell +Pearlean +Robert +Shelva +Suzanne +Wilda +Zelma +Zola +Alyce +Arlene +Artie +Augusta +Blanche +Cassie +Charlsie +Claudie +Claudine +Clemmie +Colleen +Dannie +Dorris +Eliza +Emogene +Freda +Gaynelle +George +Georgie +Gwen +Jan +Jeannette +Jeraldine +Jerrie +John +Leslie +Lettie +Lucinda +Luvenia +Malinda +Marianne +Savannah +Victoria +Vonda +Amie +Annetta +Annice +Arie +Avis +Billye +Birdie +Camilla +Ceola +Cherry +Christeen +Claire +Clementine +Corene +Dianne +Elmira +Elois +Elva +Gennie +Geraldean +Hannah +Idell +Janis +Jettie +Jonnie +Leah +Leila +Lilly +Lona +Louella +Madge +Magdalene +Maudie +Mozell +Nannette +Nedra +Oma +Ozella +Richard +Rosalie +Rutha +Terry +Tiny +Toni +Veola +Zona +Allene +Alta +Althea +Angie +Beth +Bobbye +Carlene +Cathryn +Celeste +Celestine +Charity +Deanna +Delia +Delma +Deloise +Diane +Dorothea +Dortha +Dorthey +Elease +Elinor +Elvira +Emmer +Ethelene +Eulene +Harriette +Henry +Joanna +Lavada +Lavonia +Lorean +Mammie +Marsha +Maudine +Mozelle +Nita +Ossie +Otis +Pattie +Pecola +Retha +Rowena +Roxie +Teresa +Tina +Willene +Zella +Mary +Betty +Barbara +Annie +Dorothy +Shirley +Martha +Margaret +Doris +Carolyn +Patricia +Sarah +Peggy +Frances +Willie +Helen +Ruby +Joyce +Elizabeth +Virginia +Alice +Bobbie +Mattie +Mildred +Nancy +Emma +Louise +Ann +Lillie +Ruth +Edna +Evelyn +Juanita +Sara +Ethel +Rosie +Clara +Jo +Gloria +Janice +Minnie +Bernice +Nellie +Bertha +Carrie +Patsy +Sylvia +Julia +Marie +Linda +Shelby +Carol +Jean +Catherine +Jessie +Ella +Geraldine +Gladys +Christine +Bessie +Billie +Hazel +Margie +Thelma +Johnnie +Sandra +Norma +Bonnie +Rosa +Laura +Glenda +Hattie +Ida +Jeanette +Lula +Wanda +Annette +Jane +Lois +Joan +Faye +Rebecca +Eva +Charlotte +Fannie +Anna +Georgia +Alma +Jimmie +Wilma +Eleanor +Susie +Bettye +June +Myra +Sue +Gwendolyn +Edith +Katie +Irene +Joann +Josephine +Bettie +Vera +Essie +Cora +Lillian +Lucille +Lucy +Beatrice +Geneva +Judy +Katherine +Mamie +Marjorie +Daisy +Jacqueline +Judith +Mae +Melba +Rose +Loretta +Eloise +Yvonne +Marilyn +Pauline +Emily +Robbie +Velma +Pearlie +Maggie +Maxine +Nettie +Gail +Janie +Vivian +Eula +Flora +Eunice +Earnestine +Florence +Lorene +Mable +Ora +Elsie +Nina +Anne +Delores +Grace +Kathryn +Ola +Sadie +Beverly +Dora +Jackie +Myrtle +Addie +Alberta +Sallie +Viola +Anita +Audrey +Nelda +Frankie +Inez +Ada +Ellen +Lola +Rachel +Sally +Reba +Esther +Hilda +Marion +Earline +Lela +Roberta +Agnes +Kay +Lena +Mavis +Nora +Pearl +Ruthie +Jewell +Opal +Deloris +Gertrude +Kathleen +Lizzie +Beulah +Donna +Jewel +Rosetta +Sharon +Dolores +Imogene +Leola +Phyllis +Sherry +Theresa +Tommie +Ernestine +Jannie +Naomi +Nell +Stella +Sybil +Eddie +Janet +Josie +Irma +Ollie +Willa +Amanda +Claudia +Della +Gracie +Queen +Effie +Joy +Marian +Bennie +Connie +Dorthy +Erma +Henrietta +Jennie +Jerry +Pat +Earlene +Claudette +Elnora +Joanne +Leona +Lottie +Myrna +Odessa +Paula +Rita +Delois +Dixie +Elouise +Fay +Lucile +Rosemary +Lee +Lou +Carole +Charlene +Dollie +Etta +Francis +Lila +Polly +Susan +Violet +Willodean +Amelia +Cynthia +Elaine +James +Lelia +Lenora +Syble +Cornelia +Estelle +Gayle +Harriet +Ila +Jacquelyn +Millie +Olivia +Verna +Charlie +Laverne +Lynda +Marlene +Marva +Mollie +Mona +Ophelia +Sammie +Bette +Blanche +Callie +Gaynell +Janette +Joe +Lessie +Mabel +May +Nadine +Shelba +Bertie +Celia +Ceola +Era +Eugenia +Freddie +Ina +Iris +Jeannette +Lue +Nannie +Peggie +Priscilla +Ramona +Adell +Cleo +Corine +Freda +Mittie +Rena +Voncile +Wilda +Allie +Betsy +Claudine +Dottie +Dovie +Elma +Estella +Gay +Gussie +Gwen +Iola +Maudie +Miriam +Ouida +Sonja +Winnie +Diane +Donnie +Freida +Inell +Iva +Marguerite +Molly +Patty +Vernell +Angela +Cecilia +Constance +Dessie +Dorris +Gearldine +Harriett +Jan +Janis +John +Lucinda +Melva +Oma +Una +Vesta +Willene +Annice +Becky +Bobby +Corene +Dean +Dolly +Earlean +Edwina +Eliza +Elois +Idell +Jeraldine +Julie +Juliette +Lilly +Lovie +Margarette +Marianne +Merle +Muriel +Nola +Odell +Prince +Rosalie +Sondra +Suzanne +Victoria +Virgie +Winifred +Avis +Cecelia +Cecile +Celestine +Dortha +Hannah +Johnie +Lonnie +Lorine +Lydia +Marcia +Margret +Myrtice +Myrtis +Pattie +Rubye +Terry +Wynell +Arie +Arlene +Aurelia +Billy +Claudie +Clyde +Ellie +Elna +Estell +Ester +Florine +George +Georgie +Hellen +Letha +Lettie +Linnie +Lora +Madeline +Margarett +Pearline +Pinkie +Regina +Retha +Robert +Sonya +Alfreda +Aline +Alta +Alyce +Amy +Arthur +Augusta +Bama +Berniece +Berta +Bobbye +Charity +Christene +Claire +Clarice +Darlene +Eartha +Easter +Evie +Flossie +Geraldean +Gertie +Glennie +Hester +Ima +Ira +Jenny +Jettie +Joanna +Leila +Libby +Louella +Magnolia +Mandy +Matilda +Maude +Melissa +Mozell +Nan +Nella +Neva +Octavia +Rosia +Shirlene +Sidney +Vennie +Vonnie +Zenobia +Zeola +Alene +Alva +Annell +Annis +Arcola +Arlean +Beryl +Bonita +Carlene +Caroline +Charles +Charline +Charlsie +Clemmie +Clovis +Creola +Daris +Deanna +Delma +Diana +Dona +Dot +Drucilla +Earlie +Eileen +Emmie +Ernest +Faynell +Florene +Gayla +Genevieve +Gertha +Jeanne +Jimmy +Kattie +Kaye +Loraine +Lorraine +Luberta +Luevenia +Margia +Marsha +Marvelene +Mazie +Nita +Nona +Olene +Olive +Ozell +Ozella +Patti +Penny +Queenie +Rhoda +Roma +Rosalyn +Roxie +Rubie +Rutha +Sheila +Shelbie +Shelva +Sydney +Teresa +Vaudine +Verdell +Willo +Zelda +Zora +Mary +Betty +Barbara +Annie +Dorothy +Shirley +Martha +Patricia +Carolyn +Margaret +Peggy +Sarah +Doris +Willie +Helen +Elizabeth +Frances +Joyce +Ruby +Virginia +Alice +Nancy +Linda +Mattie +Edna +Emma +Evelyn +Jo +Louise +Juanita +Lillie +Ann +Mildred +Carol +Bobbie +Clara +Sara +Gloria +Wanda +Ruth +Ethel +Minnie +Ella +Norma +Janice +Marie +Geraldine +Julia +Rosie +Sandra +Jeanette +Glenda +Sylvia +Johnnie +Judy +Bertha +Jean +Patsy +Bernice +Bessie +Catherine +Jessie +Laura +Joan +Rebecca +Hattie +Margie +Nellie +Hazel +Annette +Bonnie +Jane +Lula +Carrie +Charlotte +Lois +Shelby +Faye +Bettye +Georgia +Ida +Judith +Fannie +Rosa +Sue +Christine +Gladys +Thelma +Eva +Anna +Billie +Lillian +Josephine +Vera +Edith +Jimmie +Irene +Katie +Myra +Lucille +Susie +Yvonne +Eleanor +Gwendolyn +Mae +Mamie +Vivian +Katherine +Rose +June +Cora +Gail +Daisy +Melba +Marjorie +Eloise +Joann +Alma +Lucy +Wilma +Geneva +Maggie +Marilyn +Essie +Eula +Kay +Eunice +Janie +Inez +Jacqueline +Myrtle +Velma +Ellen +Marion +Rachel +Anita +Bettie +Beverly +Jackie +Nettie +Beatrice +Delores +Earnestine +Lena +Robbie +Flora +Ernestine +Sadie +Loretta +Ollie +Sally +Alberta +Florence +Mable +Maxine +Pauline +Donna +Gertrude +Grace +Frankie +Elsie +Audrey +Emily +Ruthie +Anne +Brenda +Jewel +Phyllis +Sallie +Agnes +Claudia +Hilda +Nina +Lola +Lorene +Pearlie +Eddie +Esther +Naomi +Sharon +Sybil +Ada +Gracie +Ola +Ora +Queen +Tommie +Dora +Imogene +Lizzie +Opal +Viola +Della +Janet +Erma +Nora +Rosetta +Theresa +Dorthy +Joy +Kathleen +Nell +Sherry +Stella +Dollie +Kathryn +Lottie +Mavis +Susan +Henrietta +Dolores +Jennie +Lela +Priscilla +Corine +Elaine +Joanne +Leola +Deloris +Fay +Harriet +Roberta +Jerry +Jewell +Marian +Nelda +Polly +Reba +Willa +Addie +Carole +Charlene +Freddie +Rosemary +Charlie +Connie +Lucile +Callie +Cynthia +Lila +Lynda +Pearl +Sonja +Iris +Lue +Olivia +Syble +Claudette +Earlene +Earline +Elouise +Estella +Irma +Lenora +Marlene +Beulah +Elnora +Gayle +Gussie +Joe +Josie +Leona +Rita +Amelia +Gay +Jannie +Paula +Ramona +Roxie +Bennie +Dixie +Eliza +Estelle +Francis +Ina +Jeannette +Lou +Millie +Miriam +Ophelia +Peggie +Verna +Violet +Voncile +Amanda +Celia +Etta +Iva +Janette +Jerrie +Marcia +Marguerite +Molly +Mona +Myrna +Ouida +Pat +Aline +Allie +Bobby +Cornelia +Delois +Diane +Effie +Freda +Jacquelyn +Lee +Lonnie +Odessa +Rena +Willodean +Clarice +Earlean +Ila +James +Lelia +Lessie +Lettie +Lorine +Lynn +Mabel +Maudie +Regina +Willia +Winnie +Adell +Arlene +Constance +Gaynell +Myrtis +Nella +Shelba +Vinnie +Amy +Blanche +Cleo +Dovie +Elma +Gertha +Inell +Jeanne +Juliette +Lorraine +Louella +Melva +Mollie +Myrtice +Nadine +Patty +Pearline +Rubye +Terry +Victoria +Virgie +Cassie +Dolly +Donnie +Eugenia +Hannah +Hester +Kate +Leila +Madeline +May +Mozell +Nila +Rosia +Angela +Angie +Dessie +Dianne +Dorris +Era +Ester +Freida +Frieda +Gearldine +George +Hellen +Jeraldine +Jettie +Johnie +Margret +Merle +Nannie +Pearlean +Pinkie +Rosalyn +Rutha +Savannah +Sondra +Suzanne +Zelma +Augusta +Becky +Beth +Betsy +Billy +Celestine +Charity +Claire +Corene +Deanna +Dortha +Easter +Edwina +Elva +Elvira +Emogene +Evie +Flossie +Georgie +Ginger +Gwen +Ima +Janis +Lora +Lucinda +Madelyn +Marva +Maude +Mayme +Odell +Sonya +Wilda +Willene +Wynell +Alene +Alta +Andrea +Angeline +Bertie +Carlene +Charles +Christeen +Claudie +Dawn +Harriett +Idella +Iola +Julie +Karen +Lauretta +Lennie +Letha +Lily +Malinda +Maple +Marcella +Margarett +Margarette +Maureen +Melinda +Mozelle +Nan +Nona +Olga +Retha +Rochelle +Rosalind +Sheila +Shirlene +Sophia +Tessie +Veola +Verdell +Winifred +Zula +Abbie +Alva +Annis +Bebe +Belinda +Cecelia +Cecil +Charlsie +Cherrie +Clementine +Cornelius +Deborah +Delma +Dorothea +Dottie +Ellie +Emmie +Ethelene +Francine +Fredia +Gene +Gennie +Geraldean +Glenna +Hallie +Henry +Idell +Isabell +Jamie +Jan +John +Jonnie +Kaye +Lavada +Lavonia +Linnie +Lona +Luella +Lydia +Maurine +Olive +Ona +Ozell +Patti +Pecola +Pollie +Robert +Sabra +Saundra +Tula +Walter +Wynona +Zoe +Zola +Mary +Betty +Barbara +Dorothy +Annie +Shirley +Martha +Patricia +Margaret +Carolyn +Doris +Linda +Peggy +Sarah +Joyce +Virginia +Elizabeth +Willie +Helen +Ruby +Frances +Alice +Mildred +Mattie +Nancy +Evelyn +Emma +Sandra +Gloria +Lillie +Louise +Juanita +Janice +Geraldine +Ruth +Bobbie +Glenda +Ann +Edna +Brenda +Carol +Ethel +Judy +Rebecca +Patsy +Charlotte +Sara +Bonnie +Wanda +Jean +Julia +Bernice +Judith +Johnnie +Minnie +Clara +Sylvia +Jo +Marie +Ella +Rosie +Bertha +Catherine +Joan +Nellie +Faye +Jessie +Fannie +Hazel +Carrie +Shelby +Christine +Bessie +Lois +Annette +Norma +Sue +Jane +Eva +Hattie +Laura +Josephine +Rosa +Thelma +Bettye +Billie +Georgia +Eleanor +Jeanette +Gladys +Gwendolyn +Ida +Margie +Wilma +Rose +Lillian +Alma +Mamie +Jimmie +Bettie +Susie +Vera +Edith +Katie +Lucy +Gail +Lula +Vivian +Cora +Jacqueline +Lucille +Mable +Anna +Melba +Rachel +Irene +Myra +Eloise +Beatrice +Mae +Ernestine +Essie +Daisy +Joann +Maggie +Yvonne +Ellen +Eula +Katherine +Sadie +Viola +Audrey +Beverly +Reba +Velma +Delores +Earnestine +Lola +Loretta +Marjorie +Geneva +Myrtle +Eunice +June +Grace +Nettie +Inez +Jackie +Maxine +Pauline +Lena +Marilyn +Phyllis +Elaine +Flora +Nell +Ola +Roberta +Elsie +Robbie +Addie +Janie +Marion +Anita +Anne +Donna +Emily +Ada +Priscilla +Sally +Dora +Kay +Kathryn +Lizzie +Sallie +Hilda +Nina +Pearlie +Ruthie +Frankie +Ora +Gertrude +Jewel +Lynda +Ollie +Carole +Nora +Olivia +Connie +Harriet +Jennie +Lela +Naomi +Irma +Janet +Leola +Callie +Erma +Esther +Mavis +Sybil +Alberta +Diane +Earline +Gussie +Joanne +Nelda +Queen +Theresa +Della +Gracie +Lorene +Sharon +Susan +Deloris +Dorthy +Eddie +Etta +Kathleen +Violet +Agnes +Cynthia +Lottie +Stella +Beulah +Charlie +Claudette +Gayle +Marian +Rosetta +Lucile +Ramona +Rita +Sherry +Tommie +Charlene +Fay +Florence +Lorine +Pat +Amelia +Effie +Freddie +Millie +Opal +Corine +Henrietta +Jacquelyn +Jerry +Leona +Myrna +Peggie +Rosemary +Willodean +Amanda +Cecelia +Imogene +Odessa +Ophelia +Dolores +Jeannette +Syble +Winnie +Bennie +Dixie +Iva +Jannie +Lenora +Lila +Marcella +Miriam +Nadine +Pearl +Cherry +Francis +Janette +Josie +Lessie +Marguerite +Pearline +Virgie +Willa +Claudia +Constance +Dianne +Dollie +Earlene +Edwina +Estella +Freda +Jewell +Joe +Lou +Paula +Rosia +Sammie +Verna +Dean +Delois +Elma +Elnora +Iris +Joy +Lydia +Marcia +Sheila +Cleo +Cornelia +Donnie +Eliza +Ester +Florine +Gaynell +Margarett +Ouida +Pinkie +Polly +Rena +Shelba +Voncile +Allie +Arlene +Bobby +Dolly +Dovie +Gwen +Iola +Jan +Julie +Juliette +Kathy +Lee +Lucinda +Marva +Matilda +Molly +Nona +Sonja +Zelma +Estelle +Evie +James +Jerrie +Karen +Mona +Myrtis +Nan +Queenie +Winifred +Alene +Betsy +Clarice +Claudine +Delia +Dottie +Easter +Elouise +Flossie +Idella +Ila +Ima +Jeanne +Jeannie +Kitty +Laverne +Lelia +Lynn +Madeline +Merle +Mittie +Mollie +Regina +Rosalyn +Sondra +Suzanne +Vernell +Amy +Bette +Cassie +Dessie +Gay +Gearldine +Gertie +Harriett +Hellen +Jeraldine +Lettie +Lilly +Lora +Louella +Lue +Luella +Mabel +Madge +Retha +Roma +Roxie +Savannah +Teresa +Victoria +Wilda +William +Wynell +Zora +Adell +Alfreda +Alva +Becky +Bertie +Carlene +Celia +Charles +Deloise +Diana +Dortha +Earlean +Emogene +George +Hannah +Inell +Janis +Jaunita +Jenny +Katy +Leila +Lennie +Leslie +Lonnie +Lorraine +Louisa +Louvenia +Lucretia +Luvenia +Magnolia +Margret +Melanie +Melinda +Myrtice +Neva +Ocie +Rhonda +Robert +Sidney +Angela +Angie +Annetta +Antoinette +Augusta +Blanche +Bobbi +Camilla +Carla +Caroline +Carroll +Celestine +Ceola +Charlsie +Christene +Claudie +Corene +Deanna +Dorotha +Dorothea +Earlie +Elois +Elva +Eugenia +Eulene +Faith +Genevieve +Gerald +Gertha +Glennie +Ina +Jayne +John +Kattie +Lina +Lovie +Lura +Malinda +Mammie +May +Melvin +Mozell +Nila +Oma +Rhoda +Scarlett +Willene +Willia +Wynelle +Adella +Albert +Alpha +Alta +Alyce +Angeline +Audery +Augustine +Belle +Blanchie +Carlean +Cathryn +Creola +Daphne +Delilah +Dot +Drucilla +Era +Fayrene +Gale +Hester +Jennette +Jettie +Jill +Joanna +Jonnie +Kathrine +Kaye +Leatha +Letha +Linnie +Lisa +Lurlene +Madelyn +Magdalene +Mandy +Maurine +Melva +Ossie +Pamela +Patty +Pearlene +Rochelle +Rubye +Saundra +Shannon +Sherrie +Sonia +Terry +Tressie +Una +Vergie +Verla +Verlon +Voncille +Mary +Betty +Barbara +Dorothy +Linda +Annie +Patricia +Martha +Shirley +Carolyn +Margaret +Peggy +Joyce +Doris +Elizabeth +Sarah +Helen +Sandra +Frances +Nancy +Willie +Virginia +Ruby +Brenda +Gloria +Judy +Alice +Patsy +Glenda +Janice +Emma +Mattie +Jo +Geraldine +Wanda +Louise +Edna +Carol +Lillie +Bonnie +Evelyn +Charlotte +Rebecca +Judith +Bobbie +Mildred +Minnie +Sara +Johnnie +Juanita +Jean +Ann +Ethel +Catherine +Julia +Clara +Ella +Joan +Lois +Norma +Sylvia +Jane +Bertha +Faye +Jessie +Carrie +Marie +Rosie +Bernice +Bessie +Nellie +Laura +Christine +Sue +Ruth +Gladys +Thelma +Margie +Billie +Bettye +Fannie +Shelby +Annette +Ida +Eva +Jeanette +Lillian +Lula +Rosa +Hazel +Edith +Hattie +Katie +Wilma +Beverly +Georgia +Yvonne +Rose +Delores +Vera +Gwendolyn +Joann +Katherine +Josephine +Vivian +Eloise +Jacqueline +Lucy +Bettie +Marilyn +Susie +Alma +Eleanor +Jimmie +Lucille +Mamie +Anna +Irene +Rachel +Daisy +Flora +Maxine +Myra +Cora +Myrtle +Loretta +Melba +Phyllis +Maggie +Kay +Beatrice +Ellen +Geneva +Marjorie +Nettie +Pauline +Sally +Donna +Earline +Emily +Janie +Mae +Anne +Kathryn +Ollie +Anita +Ola +Pearlie +Audrey +Dora +Gail +Hilda +Jewel +June +Robbie +Elaine +Roberta +Sadie +Sallie +Susan +Stella +Velma +Ernestine +Eula +Janet +Joy +Lynda +Elsie +Lena +Lizzie +Nora +Sherry +Viola +Alberta +Eddie +Frankie +Lola +Reba +Ruthie +Connie +Florence +Jackie +Mable +Nina +Deloris +Earnestine +Henrietta +Inez +Kathleen +Naomi +Esther +Grace +Dolores +Nelda +Pat +Rita +Carole +Diane +Lela +Rosemary +Sharon +Dorthy +Essie +Joanne +Tommie +Marian +Mavis +Eunice +Jannie +Jewell +Lottie +Olivia +Rosetta +Addie +Beulah +Ora +Willa +Jennie +Nell +Theresa +Agnes +Erma +Irma +Lee +Marion +Amanda +Jerry +Julie +Leola +Priscilla +Claudia +Gayle +Jacquelyn +Ada +Delois +Elouise +Voncile +Cynthia +Dollie +Fay +Gertrude +Lorene +Pearl +Polly +Francis +Lucile +Opal +Paula +Eliza +Gracie +Myrna +Odessa +Sybil +Callie +Charlene +Charlie +Della +Dianne +Elnora +Miriam +Nadine +Peggie +Suzanne +Bennie +Dixie +Joe +Josie +Mabel +Patty +Sonja +Constance +Gay +Imogene +Lou +Queen +Violet +Winnie +Bobby +Claudette +Corine +Estelle +Etta +Freda +Harriet +James +Leona +Lucinda +Syble +Amelia +Estella +Freddie +Janis +Lila +Lydia +Marcia +Mona +Sheila +Amy +Arlene +Jeannie +Millie +Mollie +Rubye +Bertie +Caroline +Earlean +Earlene +Evie +Harriett +Iris +Karen +Kathy +Lenora +Lovie +May +Ouida +Shelba +Willodean +Darlene +Effie +Gussie +Ila +Inell +Iola +Jeanne +Jerrie +Kitty +Madeline +Marva +Melanie +Allie +Augusta +Cornelia +Dolly +Lessie +Lora +Lorine +Lue +Mittie +Nannie +Pinkie +Terry +Verna +Wilda +Adell +Blanche +Camilla +Charles +Creola +Donnie +Dorris +Gaynell +Idella +Ina +Joanna +Louella +Lynn +Margret +Molly +Ozella +Ramona +Rena +Sondra +Willene +Betsy +Bonita +Cassie +Cecelia +Dean +Dessie +Eugenia +Fredia +Ima +Jan +Jeanie +Jeannette +Jeraldine +John +Lelia +Luella +Mandy +Margarett +Marguerite +Merle +Myrtice +Myrtis +Nan +Nola +Odell +Ophelia +Sammie +Saundra +Becky +Bette +Charline +Christene +Claudie +Cordelia +Corene +Diana +Elma +Emmie +Florine +Freida +Gene +Hannah +Jamie +Jeffie +Laverne +Lily +Magnolia +Malinda +Nita +Teresa +Victoria +Virgie +Zelma +Alta +Angela +Annetta +Barbra +Bobbye +Clarice +Dale +Dannie +Daphne +Deanna +Easter +Edwina +Elna +Era +Flossie +Geraldean +Gertha +Ginger +Glynda +Hellen +Iva +Jayne +Jeanetta +Jenny +Kate +Kaye +Lavonia +Leatha +Lonnie +Lucretia +Lynette +Marlene +Marsha +Maureen +Mozell +Nedra +Nona +Ocie +Ozell +Patrica +Portia +Regina +Robert +Rosalyn +Rosia +Tina +Voncille +Willia +Winifred +Abbie +Alene +Alfreda +Aline +Arlean +Berniece +Beth +Carlene +Celia +Ceola +Charity +Clementine +Cleo +Corrie +Corrine +Deborah +Dorothea +Dot +Earlie +Emilie +Ester +Ethelene +Faith +Gayla +Gearldine +George +Gwen +Harriette +Hettie +Janell +Jaunita +Johnie +Katheryn +Kattie +Lana +Lettie +Lilly +Lorena +Loretha +Lorraine +Loyce +Madelyn +Mammie +Marcella +Mickey +Mozella +Nella +Ovetta +Pamela +Retha +Rhonda +Robin +Roxie +Sabra +Samella +Sonia +Tempie +Toni +Versie +Vesta +William +Zola +Zora +Mary +Betty +Barbara +Dorothy +Linda +Patricia +Martha +Carolyn +Shirley +Annie +Margaret +Joyce +Sandra +Elizabeth +Doris +Peggy +Sarah +Willie +Brenda +Helen +Nancy +Frances +Judy +Ruby +Virginia +Alice +Gloria +Glenda +Carol +Janice +Patsy +Lillie +Emma +Jo +Wanda +Minnie +Mattie +Mildred +Evelyn +Judith +Ann +Charlotte +Louise +Johnnie +Julia +Geraldine +Juanita +Sara +Bobbie +Catherine +Clara +Ruth +Joan +Ethel +Marie +Rebecca +Bonnie +Edna +Margie +Bertha +Jean +Jessie +Bessie +Bernice +Sylvia +Rosie +Thelma +Carrie +Bettye +Ella +Ida +Nellie +Laura +Sue +Jane +Fannie +Lula +Gladys +Norma +Georgia +Jeanette +Annette +Josephine +Rosa +Hazel +Christine +Billie +Wilma +Jimmie +Lois +Faye +Gwendolyn +Eva +Myra +Anna +Eleanor +Katie +Vera +Beverly +Delores +Ellen +Edith +Hattie +Cora +Donna +Janet +Susie +Maggie +Rose +Sharon +Mae +Marilyn +Lillian +Vivian +Audrey +June +Katherine +Carole +Velma +Daisy +Marjorie +Lucille +Mamie +Phyllis +Shelby +Anne +Earnestine +Jacqueline +Maxine +Bettie +Lynda +Anita +Joann +Lola +Rachel +Marion +Loretta +Nettie +Lucy +Melba +Susan +Viola +Janie +Myrtle +Elsie +Eula +Gail +Irene +Alma +Beatrice +Hilda +Pauline +Yvonne +Eloise +Flora +Essie +Pearlie +Stella +Emily +Geneva +Rita +Sherry +Kathryn +Reba +Deloris +Elaine +Frankie +Jackie +Jewell +Joy +Sally +Florence +Lena +Tommie +Eunice +Kay +Marian +Robbie +Jewel +Diane +Dora +Priscilla +Roberta +Sadie +Claudia +Connie +Eddie +Ernestine +Ollie +Mable +Ora +Addie +Agnes +Callie +Lizzie +Nelda +Nell +Ruthie +Alberta +Erma +Etta +Gayle +Ola +Ada +Esther +Grace +Gracie +Kathleen +Olivia +Rosetta +Sallie +Imogene +Irma +Lela +Queen +Delois +Dianne +Inez +Nina +Odessa +Jennie +Jerry +Karen +Nora +Willa +Dolores +Fay +Paula +Theresa +Dorthy +Harriet +Cynthia +Earline +Paulette +Pearl +Syble +Della +Dollie +Iris +Joanne +Lou +Sheila +Freddie +Jannie +Charlie +Jacquelyn +Julie +Lila +Opal +Sybil +Amelia +Elouise +Gertrude +Pat +Beulah +Charlene +Dixie +Lottie +Rosemary +Amy +Caroline +Estelle +Ina +Josie +Kathy +Lorene +Becky +Donnie +Lee +Leola +Naomi +Polly +Violet +Amanda +Bennie +Cecelia +Clarice +Diana +Estella +Gaynell +Jerrie +Leona +Mavis +Millie +Celestine +Effie +Elnora +James +Lessie +Mollie +Claudette +Constance +Cornelia +Gearldine +Harriett +Ila +Jeanne +Maudie +Ramona +Saundra +Teresa +Willodean +Adell +Angela +Arlene +Freida +Gussie +Henrietta +Iva +Jeannette +Lue +Marcia +Miriam +Pamela +Wilda +Edwina +Eliza +Francis +Freda +Gay +Juliette +Lenora +Lorine +Lucile +Mabel +Ophelia +Patty +Sammie +Suzanne +Winnie +Blanche +Bobby +Celia +Corine +Ester +Inell +Laverne +Luvenia +Marsha +Molly +Myrna +Nadine +Sondra +Terry +Vicki +Victoria +Betsy +Cecilia +Charles +Gwen +Janis +Jenny +Jeraldine +Joe +Kaye +Lana +Leslie +Lonnie +Lucretia +Lydia +Lynn +May +Retha +Roxie +Sharron +Toni +Verna +Zelma +Alyce +Angie +Bette +Cleo +Dean +Delia +Delilah +Earlene +Era +Eugenia +Florine +Gertie +Hannah +Jan +Leila +Louella +Madeline +Margarett +Marianne +Marva +Myrtice +Penelope +Virgie +Voncile +Willia +Augusta +Bertie +Beth +Claudie +Dolly +Emogene +Evie +Flossie +Gerry +Gertha +Hellen +Janette +Jessica +Jill +Joanna +Lelia +Letha +Loraine +Lucinda +Magnolia +Margarette +Merle +Mickey +Nannie +Olive +Rena +Rosalyn +Sonja +Arthur +Claire +Deloise +Dorthey +Dottie +Earlean +Ira +Jeanie +Jeannie +Jolene +Lettie +Louvenia +Matilda +Maureen +Melva +Mona +Nola +Nona +Odell +Peggie +Regina +Robert +Rosalie +Rosalind +Rosia +Rubye +Verdell +Veronica +Willene +Alicia +Audry +Aurelia +Bonita +Camilla +Carolyne +Cathryn +Cecile +Ceola +Cherie +Cindy +Costella +Darlene +Dessie +Dinah +Dorothea +Eartha +Eileen +Elma +Everlean +Floretta +Fredia +Glennie +Hester +Jaunita +Judie +Kattie +Kitty +Lavern +Lorraine +Ludie +Luella +Lynne +Madelyn +Maude +Mittie +Myrtie +Nan +Ossie +Pansy +Rhonda +Samuel +Selena +Sidney +Vernell +William +Alfreda +Alfredia +Aretha +Ava +Berniece +Beverley +Birdie +Birtha +Bobbye +Carlena +Carroll +Celeste +Charlsie +Cheryl +Classie +Corene +Corrie +Dana +Dot +Earlie +Gaye +Gearldean +Gennie +Georgiana +Glinda +Glynda +Greta +Idella +Ilene +Iola +Isabella +Isabelle +Jannette +Jettie +Johnny +Katheryn +Katy +Laurie +Lavada +Lilla +Lilly +Lily +Linnie +Lora +Louisa +Luverne +Malinda +Maple +Margret +Margrett +Marguerite +Maxie +Melanie +Merlene +Mina +Ouida +Patti +Pearlean +Penny +Rutha +Treva +Trudy +Viva +Wilhelmina +Wynell +Zadie +Mary +Betty +Barbara +Linda +Patricia +Dorothy +Carolyn +Shirley +Martha +Annie +Sandra +Margaret +Brenda +Joyce +Elizabeth +Doris +Peggy +Nancy +Judy +Sarah +Helen +Willie +Carol +Virginia +Glenda +Frances +Ruby +Gloria +Alice +Janice +Charlotte +Wanda +Rebecca +Mildred +Judith +Patsy +Ann +Jo +Lillie +Emma +Mattie +Evelyn +Bobbie +Edna +Bonnie +Geraldine +Sara +Catherine +Minnie +Joan +Ruth +Ethel +Julia +Juanita +Johnnie +Jean +Louise +Clara +Bertha +Marie +Margie +Rosie +Jessie +Sharon +Jeanette +Georgia +Jane +Bernice +Laura +Bessie +Sylvia +Donna +Gladys +Sue +Norma +Bettye +Christine +Ella +Faye +Nellie +Thelma +Lois +Carrie +Gwendolyn +Fannie +Lula +Beverly +Billie +Hattie +Hazel +Jimmie +Ida +Lillian +Rita +Jacqueline +Marilyn +Mamie +Phyllis +Rose +Josephine +Rosa +Wilma +Susan +Eva +Janet +Katherine +Annette +Eleanor +Sherry +Katie +Cora +Lynda +Vivian +Vera +Edith +Joann +Beatrice +Bettie +Myra +Gail +Maxine +Earnestine +Myrtle +Delores +Janie +Anita +Ernestine +Geneva +Daisy +Irene +Rachel +Dianne +Lucille +Mae +Alma +Eloise +Susie +Anna +Anne +Paulette +Stella +Connie +Ellen +Frankie +Jackie +Lucy +Marjorie +Carole +Flora +Pauline +Sally +Elaine +Velma +Maggie +Reba +Diane +Lola +Loretta +Pearlie +Kathryn +Lena +Hilda +Jewel +Marion +Melba +Nettie +Viola +Claudia +Deloris +Elsie +Eunice +Shelby +Tommie +Alberta +Audrey +Nina +Ola +Ada +Dora +Eula +Yvonne +Agnes +Florence +Lizzie +Mable +Sadie +Cynthia +Eddie +Grace +Gracie +Kay +Priscilla +Kathleen +Robbie +Emily +Essie +June +Roberta +Ruthie +Sallie +Ollie +Paula +Henrietta +Inez +Jacquelyn +Della +Karen +Sheila +Theresa +Addie +Leola +Marian +Gertrude +Jennie +Lorene +Nelda +Pat +Charlene +Jannie +Joy +Nora +Opal +Pearl +Rosetta +Esther +Joanne +Pamela +Rosemary +Diana +Dorthy +Jewell +Olivia +Polly +Mavis +Queen +Charlie +Earline +Erma +Gayle +Jerry +Lucile +Lynn +Willa +Eugenia +Imogene +Iris +Ora +Cheryl +Elouise +Harriet +Marsha +Sybil +Bennie +Jeannette +Kathy +Nell +Beulah +Callie +Dolores +Freddie +Irma +Lela +Odessa +Suzanne +Delois +Iva +Lila +Teresa +Becky +Constance +Cornelia +Elnora +Freda +James +Joe +Lottie +Mabel +Marguerite +Ramona +Regina +Terry +Verna +Edwina +Estelle +Fay +Gearldine +Josie +Julie +Marcia +Mollie +Nadine +Naomi +Peggie +Syble +Cecilia +Dottie +Estella +Etta +Francis +Lana +Augusta +Cecelia +Corine +Darlene +Donnie +Ina +Leona +Lou +Miriam +Rosia +Veronica +Victoria +Arlene +Beth +Caroline +Dixie +Earlene +Eliza +Jenny +Leila +Lessie +Lorraine +Patty +Rena +Allie +Betsy +Blanche +Celia +Dollie +Lydia +May +Millie +Sammie +Vicki +Violet +Voncile +Willodean +Amy +Andrea +Cathy +Clarice +Claudette +Cleo +Gaynell +Harriett +Ila +Jan +Jeanne +Jeraldine +Juliette +Lelia +Lue +Melanie +Vickie +Adell +Amanda +Bette +Claudie +Deanna +Dessie +Effie +Freida +Gussie +Janis +Jerrie +Jettie +Lee +Lora +Lucinda +Pearline +Shelia +Sondra +Virgie +Winnie +Amelia +Angela +Clementine +Flossie +Glinda +Ima +Ira +Jaunita +Laverne +Lenora +Malinda +Molly +Mona +Nannie +Ophelia +Patrica +Retha +Reva +Robert +Rosalyn +Roxie +Sonja +Allene +Dale +Florine +Gay +Gertha +Ginger +Jeanie +Kaye +Linnie +Louisa +Luvenia +Marcella +Margarette +Mittie +Mozell +Myrtis +Ocie +Pinkie +Verdell +Wynell +Alene +Aloma +Alva +Alyce +Ceola +Dannie +Earlean +Eileen +Elma +Elmira +Elvira +Era +Ester +Faith +Gwen +Henry +Hester +Inell +Janette +Jeannie +Johnny +Kattie +Lorine +Louvenia +Madeline +Marcell +Margarett +Nona +Ouida +Penelope +Saundra +Savannah +Scarlett +Sherron +Vernell +Willia +Abbie +Antoinette +Barbra +Bernadine +Camilla +Carla +Carmen +Charles +Claire +Corrine +Deloise +Dorris +Dortha +Earlie +Easter +Evon +Gennie +Girtha +Glennie +Goldie +Joanna +John +Jonnie +Judie +Kathrine +Lettie +Lilly +Lily +Lonnie +Lynne +Magdalene +Marianne +Marlene +Marva +Maudie +Maureen +Merle +Michael +Mickey +Myrna +Nita +Regenia +Sharron +Tessie +Tressie +Unknown +Wilda +William +Alpha +Alta +Angie +Annell +Annice +Arcola +Aurelia +Bertie +Bobby +Carlene +Cassie +Charlena +Charline +Charlsie +Cherry +Claudine +Corene +Dean +Dona +Dovie +Elinor +Elna +Elva +Evie +Fayrene +Gaye +Geraldean +Glenna +Greta +Helene +Idell +Ilene +Iola +Isabella +Jamie +Jimmy +Jolene +Judi +Kitty +Louella +Mandy +Margret +Maria +Mariah +Matilda +Maurine +Melinda +Melva +Myrtie +Nan +Nyoka +Pearlene +Penny +Portia +Roma +Rosalind +Roy +Rubye +Sandy +Shelba +Sherrie +Sophia +Toni +Vallie +Vernice +Mary +Linda +Barbara +Betty +Patricia +Carolyn +Dorothy +Shirley +Martha +Annie +Sandra +Brenda +Judy +Margaret +Elizabeth +Peggy +Nancy +Doris +Joyce +Sarah +Willie +Carol +Glenda +Gloria +Janice +Helen +Frances +Virginia +Alice +Ruby +Charlotte +Judith +Rebecca +Mildred +Wanda +Ann +Evelyn +Emma +Mattie +Patsy +Jo +Lillie +Geraldine +Johnnie +Juanita +Bobbie +Louise +Edna +Bertha +Joan +Catherine +Julia +Bessie +Minnie +Bonnie +Jean +Sara +Jane +Sharon +Ethel +Ruth +Donna +Bettye +Clara +Marie +Bernice +Lois +Marilyn +Sue +Beverly +Georgia +Jeanette +Rosie +Carrie +Gwendolyn +Christine +Sylvia +Ella +Gladys +Jacqueline +Rosa +Margie +Nellie +Cheryl +Ida +Janet +Phyllis +Diane +Lynda +Laura +Susan +Hazel +Norma +Billie +Fannie +Faye +Jessie +Sherry +Lula +Josephine +Edith +Thelma +Lillian +Eva +Hattie +Bettie +Susie +Katie +Rose +Katherine +Annette +Elaine +Wilma +Dianne +Delores +Lucy +Carole +Connie +Joann +Mae +Anna +Myra +Velma +Daisy +Geneva +Earnestine +Vera +Vivian +Jackie +Jimmie +Loretta +Eloise +Marjorie +Paula +Anne +Kathleen +Beatrice +Maggie +Irene +Kathryn +Alma +Jewel +Eleanor +Emily +Gail +Janie +Kay +Essie +Reba +Shelby +Ellen +Melba +Ernestine +Karen +Maxine +Pamela +Pauline +Anita +Dora +Nettie +Ollie +Flora +Marion +Paulette +Ora +Sadie +Yvonne +Claudia +Frankie +Roberta +Sally +Nina +Ola +Cora +Eddie +Hilda +June +Pearlie +Priscilla +Eunice +Florence +Grace +Joy +Lucille +Mamie +Rachel +Rosetta +Sallie +Sheila +Cynthia +Esther +Gertrude +Lena +Tommie +Eula +Joanne +Marian +Rita +Viola +Deloris +Jerry +Myrtle +Ruthie +Stella +Theresa +Elsie +Erma +Diana +Agnes +Dorthy +Lela +Robbie +Alberta +Lorene +Mable +Ada +Jannie +Lola +Delois +Polly +Callie +Earline +Gayle +Irma +Kathy +Nelda +Nora +Olivia +Francis +Mavis +Audrey +Henrietta +Pearl +Willa +Amanda +Elouise +Freddie +Inez +Jacquelyn +Jeannette +Lizzie +Marcia +Queen +Rosemary +Addie +Jennie +Leola +Marsha +Nadine +Naomi +Suzanne +Charlene +Gracie +Harriet +Josie +Lou +Angela +Becky +Claudette +Lee +Lottie +Sharron +Amelia +Andrea +Bennie +Deborah +Edwina +Etta +Eugenia +Jewell +Pat +Imogene +Lenora +Lynn +Syble +Veronica +Dottie +Joe +Lana +Lucile +Opal +Beulah +Dollie +Effie +Elnora +Jan +Julie +Miriam +Nell +Rubye +Sybil +Vicki +Cecelia +Celia +Cherry +Della +Estella +Gearldine +Teresa +Victoria +Wilda +Charlie +Cleo +Corine +Cornelia +Eliza +Iris +Janis +Jeanne +Jeannie +Marguerite +Melinda +Odessa +Peggie +Penny +Ramona +Saundra +Betsy +Caroline +Cecilia +Constance +Dixie +Dolores +Earlene +Harriett +James +Lelia +Lila +Lydia +Regina +Sammie +Amy +Arlene +Augusta +Donnie +Gay +Gussie +Jenny +Leona +Lessie +May +Winnie +Bette +Camilla +Dinah +Estelle +Freda +Gaynell +Hellen +Mabel +Marcella +Roxie +Trudy +Verdell +Voncile +Zola +Bernadette +Beth +Bobby +Bonita +Dianna +Dolly +Eileen +Ester +Gertha +Ina +Janette +Jill +Lettie +Lorine +Marva +Melanie +Melva +Mollie +Myrtis +Nona +Patty +Pinkie +Sondra +Unknown +Verna +Vernell +Violet +Willodean +Blanche +Cathy +Darlene +Deanna +Dorris +Fay +Ira +Iva +Jennifer +Johnie +Juliette +Kaye +Leila +Lorraine +Margarette +Maria +Mazie +Myrna +Nan +Odell +Rosalind +Rosalyn +Rosia +William +Alfreda +Bertie +Camille +Celestine +Claire +Clarice +Claudie +Corrine +Elma +Elva +Evangeline +Florine +Flossie +Freida +Ginger +Glynda +Ila +Ima +Jamie +Jettie +Joanna +Kattie +Kitty +Letha +Lilly +Lue +Madeline +Margarett +Marlene +Matilda +Millie +Muriel +Myrtice +Novella +Ophelia +Retha +Rhonda +Shelia +Sonja +Zella +Adell +Allene +Alta +Annice +Bernadine +Carmen +Clementine +Corene +Dana +Delia +Elvira +Gaynelle +Glinda +Isabella +John +Jonnie +Judi +Judie +Kathrine +Laverne +Leslie +Linnie +Lora +Louella +Lucinda +Magdalene +Mandy +Marianne +Maureen +Nannie +Nella +Pearlene +Pearline +Phillis +Robert +Savannah +Sophia +Stephanie +Terry +Vernice +Vickie +Willia +Zelma +Adele +Aileen +Alene +Allie +Angeline +Aretha +Barbra +Berta +Beverley +Bobbye +Cecile +Christene +Cindy +Dannie +Dell +Delora +Earlie +Easter +Era +Ethelene +Gaye +Genevia +Gennie +Gwen +Inell +Iola +Iona +Ivory +Jacquline +Janett +Jayne +Jerri +Jerrie +Kate +Laurie +Lily +Lovie +Lucretia +Luella +Malinda +Nola +Ocie +Ozella +Penelope +Rena +Renee +Rutha +Selena +Shannon +Sherrell +Sherrie +Susanne +Thomas +Thomasine +Zelda +Zeola +Mary +Linda +Barbara +Betty +Patricia +Shirley +Carolyn +Dorothy +Annie +Martha +Sandra +Judy +Brenda +Margaret +Gloria +Joyce +Elizabeth +Peggy +Doris +Janice +Carol +Sarah +Nancy +Willie +Helen +Frances +Virginia +Alice +Glenda +Ruby +Judith +Charlotte +Rebecca +Wanda +Jo +Mattie +Mildred +Evelyn +Lillie +Geraldine +Sharon +Ann +Catherine +Julia +Patsy +Emma +Johnnie +Donna +Edna +Bobbie +Susan +Juanita +Sara +Marie +Joan +Marilyn +Jean +Bonnie +Laura +Jane +Minnie +Rosie +Ruth +Clara +Louise +Bessie +Beverly +Bernice +Jacqueline +Janet +Norma +Ethel +Gwendolyn +Sylvia +Jessie +Bettye +Lois +Margie +Thelma +Bertha +Ella +Nellie +Sue +Lynda +Christine +Lula +Rose +Carrie +Diane +Vivian +Georgia +Josephine +Cheryl +Hazel +Ida +Jeanette +Wilma +Gladys +Anna +Faye +Sherry +Susie +Annette +Dianne +Ellen +Gail +Fannie +Vera +Paula +Bettie +Connie +Delores +Hattie +Eva +Phyllis +Rita +Rosa +Elaine +Deloris +Katherine +Myra +Billie +Lillian +Anne +Cora +Emily +Maxine +Alma +Katie +Loretta +Mae +Mamie +Daisy +Diana +Ernestine +Geneva +Joann +Karen +Rachel +Edith +Eleanor +Jackie +Janie +Kathryn +Kay +Lucy +Paulette +Anita +Irene +Sally +Carole +Jimmie +Sheila +Earnestine +Eloise +Maggie +Marjorie +Alberta +Grace +Lola +Kathleen +Beatrice +Lizzie +Essie +Pamela +Yvonne +Jewel +Melba +Pauline +Henrietta +Hilda +Marion +Pearlie +Theresa +Velma +Myrtle +Stella +Dora +Cynthia +Sadie +Rosemary +Audrey +Eddie +Flora +Frankie +Joanne +Lena +Tommie +Elsie +Florence +Gayle +June +Lucille +Ollie +Roberta +Suzanne +Willa +Callie +Claudia +Joy +Lynn +Rosetta +Ruthie +Eula +Eunice +Marcia +Ora +Sallie +Viola +Irma +Kathy +Nelda +Nina +Nora +Ola +Olivia +Reba +Robbie +Ada +Agnes +Della +Nell +Shelby +Jennie +Lela +Nettie +Gracie +Lucile +Mable +Victoria +Earline +Marian +Pat +Teresa +Addie +Angela +Esther +Jennifer +Marsha +Dorthy +Freda +Inez +Lorene +Naomi +Amanda +Constance +Delois +Dianna +Jannie +Pearl +Priscilla +Beulah +Etta +Janis +Jerry +Leola +Lydia +Corine +Elnora +Erma +Freddie +Gertrude +Jacquelyn +Miriam +Sybil +Verna +Veronica +Amelia +Charlene +Ina +Opal +Peggie +Bennie +Charlie +Dana +Dolores +Iris +Josie +Julie +Lana +Malinda +Marcella +Odessa +Polly +Sharron +Shelia +Vicki +Violet +Arlene +Deborah +Earlene +Fay +Jewell +Mavis +Queen +Vickie +Winnie +Caroline +Cecelia +Eliza +Estella +Francis +Ginger +Jeanne +Lee +Lelia +Lenora +Leona +Lila +Lorraine +Lou +Lucinda +Margarett +Tina +Celia +Effie +Harriet +Iva +Jan +Jeannette +Lottie +Marianne +Voncile +Amy +Andrea +Augusta +Cornelia +Dixie +Eartha +Elma +Elouise +Gay +Imogene +Jeannie +Leslie +Myrtis +Rosalyn +Syble +Toni +Becky +Bobby +Claudette +Dannie +Darlene +Deanna +Diann +Dinah +Dollie +Donnie +Easter +Edwina +Glynda +Jeanie +Lessie +Lonnie +Lue +Marguerite +Maria +Millie +Mollie +Regina +Rosia +Terry +Blanche +Charles +Cherry +Dottie +Dovie +Earlean +Ila +Inell +James +Janette +Jeraldine +John +Lettie +Marva +Melanie +Molly +Nona +Pearline +Retha +Roxie +Sheryl +Willodean +Alfreda +Annice +Antoinette +Bernadette +Beth +Betsy +Ellie +Isabella +Jerrie +Joanna +Juliette +Laverne +Lily +Louella +Lynne +Madeline +Marlene +May +Melinda +Melva +Nadine +Penny +Ramona +Robert +Rosalind +Saundra +Sophia +Trudy +Unknown +Arthur +Birdie +Camilla +Carlene +Clarice +Era +Estelle +Gaynell +Gertha +Gertie +Harriett +Iola +Jamie +Jimmy +Joe +Judie +Kattie +Kaye +Linnie +Loraine +Lovie +Mona +Pattie +Queenie +Robin +Rubye +Sammie +Sandy +Sonja +Vicky +Virgie +Wilda +Willia +Zelma +Angeline +Carroll +Cecilia +Cindy +Clementine +Cleo +Dian +Florine +Freida +Gennie +Gwen +Hannah +Hellen +Hester +Ima +Ira +Kitty +Laurie +Leatha +Lora +Louvenia +Mittie +Ocie +Ossie +Ouida +Patty +Savannah +Sharlene +Valerie +Verdell +Vesta +Vickey +Vonnie +Adell +Alicia +Alta +Belinda +Bobbye +Celestine +Christeen +Christina +Claire +Dale +Delia +Doretha +Elois +Ester +Gary +Gearldine +Gussie +Jaunita +Jill +Johnny +Leila +Loise +Lorine +Lyndia +Madie +Margret +Maudie +Myrna +Nannie +Pinkie +Rena +Richard +Sheron +Susanne +Tiny +Vernell +Willow +Yvette +Mary +Linda +Barbara +Betty +Patricia +Carolyn +Shirley +Brenda +Sandra +Dorothy +Judy +Martha +Annie +Margaret +Janice +Peggy +Joyce +Carol +Nancy +Elizabeth +Glenda +Gloria +Sarah +Helen +Doris +Wanda +Frances +Virginia +Willie +Sharon +Alice +Ruby +Charlotte +Patsy +Jo +Donna +Susan +Rebecca +Judith +Geraldine +Mattie +Joan +Juanita +Catherine +Julia +Beverly +Evelyn +Ann +Ethel +Jane +Emma +Rosie +Sherry +Laura +Jacqueline +Marilyn +Gwendolyn +Lillie +Bobbie +Edna +Mildred +Louise +Sylvia +Marie +Johnnie +Lynda +Sara +Cheryl +Bonnie +Bertha +Lula +Jean +Ruth +Diane +Bettye +Phyllis +Norma +Carrie +Clara +Sue +Jessie +Connie +Georgia +Minnie +Christine +Sheila +Bessie +Ella +Lois +Ida +Janet +Anita +Anna +Elaine +Jeanette +Vivian +Cynthia +Dianne +Eva +Katherine +Thelma +Janie +Faye +Hazel +Rita +Gladys +Rose +Bernice +Fannie +Karen +Margie +Nellie +Vera +Delores +Josephine +Gail +Loretta +Lucy +Annette +Hattie +Kathryn +Rosa +Susie +Ellen +Pamela +Anne +Cora +Wilma +Deloris +Jimmie +Katie +Diana +Bettie +Jackie +Myra +Paula +Geneva +Earnestine +Edith +Lillian +Paulette +Emily +June +Marjorie +Yvonne +Billie +Nina +Mamie +Kathleen +Mae +Theresa +Eloise +Pearlie +Rosemary +Sally +Eula +Joann +Irene +Lola +Maggie +Rachel +Eleanor +Janis +Kay +Maxine +Melba +Pauline +Ernestine +Joy +Lucille +Charlene +Daisy +Shelby +Stella +Essie +Robbie +Suzanne +Audrey +Beatrice +Claudia +Ada +Carole +Hilda +Ollie +Priscilla +Alberta +Alma +Constance +Delois +Jennifer +Reba +Esther +Jewel +Lizzie +Eunice +Florence +Grace +Marsha +Ora +Ruthie +Viola +Marion +Deborah +Gayle +Jacquelyn +Lena +Marcia +Nora +Sadie +Dorthy +Frankie +Lynn +Roberta +Rosetta +Sallie +Eddie +Kathy +Mable +Shelia +Terry +Velma +Angela +Gracie +Myrtle +Nelda +Pat +Teresa +Vicki +Henrietta +Nettie +Tommie +Becky +Dora +Earline +Flora +Marian +Freda +Jerry +Miriam +Ola +Sybil +Voncile +Jennie +Joanne +Olivia +Queen +Bennie +Elsie +Harriet +Inez +Jan +Lana +Regina +Willa +Erma +Gertrude +Lou +Naomi +Sheryl +Beulah +Della +Etta +Josie +Addie +Callie +Cherry +Darlene +Irma +Jannie +Leola +Mavis +Polly +Victoria +Amelia +Edwina +Francis +Freddie +Ginger +Jenny +Lee +Lucile +Lydia +Maria +Arlene +Belinda +Charlie +Dale +Dixie +Freida +Lorraine +Lottie +Opal +Pearl +Ramona +Sonja +Agnes +Caroline +Estella +Jeanne +Jeannette +Lorene +Madeline +Saundra +Sharron +Violet +Andrea +Cornelia +Dolores +Earlene +Janette +Jeannie +Jewell +Laverne +Leona +Nell +Penny +Verna +Vickie +Bobby +Cathy +Effie +Gearldine +James +Julie +Mabel +Sondra +Amanda +Claudette +Elouise +Gaynell +Lynne +Dana +Diann +Ester +Gay +Glinda +Harriett +Hellen +Imogene +Iris +Marlene +Millie +Mollie +Nadine +Syble +Toni +Wilda +Willodean +Blanche +Celia +Dianna +Dinah +Jamie +Joe +Katrina +Kaye +Lela +Lila +Lilly +Maureen +Mona +Peggie +Penelope +Trudy +Unknown +Amy +Betsy +Bonita +Dollie +Eliza +Elnora +Eugenia +Gale +Gwen +Jayne +Jeraldine +Lelia +Leslie +Lessie +Letha +Marcella +Matilda +Patrica +Patty +Rubye +Winnie +Yolanda +Bernadette +Carmen +Cindy +Deanna +Francine +Gussie +Jeanie +Juliette +Lora +Marva +Nona +Ophelia +Reva +Rosia +Sammie +Tina +Virgie +Walter +Angeline +Arthur +Augusta +Carla +Carrol +Celestine +Corine +Dannie +Dean +Dian +Donnie +Florine +Gayla +Jerrie +Octavia +Odessa +Pam +Pinkie +Rosalyn +Roxie +Sherrie +Stephanie +Valeria +Vicky +Alyce +Claire +Dortha +Elois +Estelle +Gilda +Inell +Ira +Jill +Joanna +Jonnie +Judie +Kathrine +Lenora +Libby +Loraine +Magnolia +Margarett +Margarette +May +Melanie +Mittie +Nita +Rena +Rhoda +Rhonda +Robert +Sandy +Sherron +Sibyl +Voncille +Candace +Cassie +Cecelia +Cecilia +Cheri +Clarice +Delorise +Dottie +Earlean +Easter +Eileen +Fay +Flossie +Gertha +Ilean +Iva +Jeannine +Jettie +John +Judi +Kattie +Kitty +Lera +Lovie +Luella +Maude +Melinda +Meredith +Merry +Michele +Molly +Nan +Ouida +Pearlene +Pearline +Roslyn +Sharyn +Sherri +Suzan +Verdell +Veronica +Zenobia +Allie +Ava +Berniece +Bette +Bobbye +Camellia +Camilla +Cassandra +Charity +Charles +Cherrie +Colleen +Costella +Delia +Dessie +Dovie +Elma +Floretta +Gary +Genevieve +Gennie +Hester +Hettie +Hope +Ila +Ina +Ingrid +Ivory +Jacqulyn +Janett +Jaunita +Lauretta +Leigh +Lily +Linnie +Lorine +Ludie +Madelyn +Malinda +Mandy +Marianne +Maudie +Mazie +Merilyn +Michael +Myrna +Myrtie +Neva +Nila +Ocie +Ossie +Rosalind +Roy +Sherrill +Terri +Tommye +Trisha +Vonnie +William +Winifred +Wynona +Zelda +Zelma +Mary +Linda +Patricia +Barbara +Betty +Brenda +Carolyn +Sandra +Shirley +Judy +Dorothy +Martha +Annie +Janice +Margaret +Peggy +Gloria +Elizabeth +Nancy +Glenda +Joyce +Doris +Carol +Sarah +Wanda +Helen +Rebecca +Virginia +Frances +Alice +Sharon +Ruby +Willie +Jo +Judith +Patsy +Donna +Charlotte +Susan +Evelyn +Catherine +Ethel +Diane +Beverly +Marilyn +Jacqueline +Joan +Geraldine +Sherry +Cynthia +Julia +Mattie +Ann +Mildred +Gwendolyn +Emma +Jane +Johnnie +Edna +Juanita +Connie +Lillie +Laura +Sylvia +Phyllis +Minnie +Cheryl +Sara +Norma +Sheila +Rita +Bobbie +Janet +Ruth +Dianne +Lynda +Louise +Clara +Rosie +Lois +Bettye +Christine +Bernice +Bertha +Marie +Ella +Jean +Jeanette +Carrie +Margie +Sue +Bonnie +Bessie +Gail +Hazel +Katherine +Eva +Rosa +Myra +Rose +Anita +Vivian +Georgia +Lula +Thelma +Alma +Elaine +Jessie +Gladys +Fannie +Janie +Karen +Anna +Edith +Paula +Ida +Deborah +Earnestine +Faye +Annette +Ellen +Josephine +Marsha +Stella +Pamela +Billie +Delores +Yvonne +Deloris +Loretta +Diana +Hattie +Lillian +Bettie +Teresa +Jackie +Kathleen +Marion +Vera +Irene +June +Kathryn +Mamie +Geneva +Nellie +Kay +Mae +Marjorie +Susie +Joann +Rosetta +Janis +Lucy +Paulette +Ernestine +Sally +Wilma +Emily +Kathy +Jennifer +Maggie +Shelia +Suzanne +Theresa +Maxine +Rachel +Claudia +Anne +Cora +Daisy +Eleanor +Katie +Lucille +Velma +Beatrice +Dora +Nina +Charlene +Constance +Audrey +Mable +Priscilla +Eula +Hilda +Melba +Sharron +Essie +Rosemary +Flora +Jimmie +Lynn +Delois +Reba +Lizzie +Marcia +Alberta +Gayle +Ollie +Regina +Eloise +Myrtle +Roberta +Carole +Lena +Vicki +Joy +Ola +Pauline +Joanne +Nelda +Frankie +Freddie +Nora +Robbie +Sallie +Cathy +Darlene +Jewel +Esther +Lola +Queen +Sadie +Tommie +Angela +Erma +Addie +Becky +Eunice +Gracie +Harriet +Jannie +Lela +Della +Eddie +Florence +Irma +Jacquelyn +Jeanne +Pearlie +Amelia +Arlene +Dolores +Nettie +Olivia +Pat +Ruthie +Shelby +Gertrude +Jennie +Lana +Viola +Ada +Jan +Amanda +Estella +Henrietta +Inez +Josie +Sheryl +Syble +Charlie +Earlene +Ginger +Grace +Marian +Pearl +Veronica +Vickie +Andrea +Belinda +Dianna +Dixie +Elsie +Julie +Ramona +Terry +Earline +Elouise +Lorraine +Lydia +Maria +Mavis +Unknown +Victoria +Agnes +Corine +Dorthy +Jeannie +Jerry +Lou +Voncile +Debra +Leona +Miriam +Ora +Willa +Cecelia +Dana +Fay +Freda +Juliette +Melissa +Sybil +Bobby +Caroline +Cecilia +Cornelia +Dale +Eileen +Eugenia +Freida +Harriett +Lessie +Lorene +Toni +Betsy +Cherry +Claudette +Diann +Dinah +Effie +Elnora +Etta +Francis +Jamie +Jeannette +Leola +Marguerite +Marva +Odessa +Rhonda +Alicia +Clemmie +Dollie +Gay +Laverne +Lee +Lenora +Lynne +Melinda +Mollie +Patty +Sondra +Verna +Violet +Bennie +Bernadette +Beth +Callie +Celia +James +Janette +Jessica +Lila +Lora +Lorine +Mona +Nadine +Naomi +Opal +Sherrie +Sherron +Sonja +Stephanie +Vonda +Antoinette +Beulah +Carla +Gayla +Gwen +Inell +Jeanie +Jenny +Joanna +Kaye +Leslie +Lottie +Lucile +Margarett +Maureen +Millie +Nita +Peggie +Penny +Polly +Rosalyn +Saundra +Tina +Wilda +William +Alfreda +Clarice +Dottie +Edwina +Glinda +Joe +Judie +Kitty +Lucinda +Mabel +Rena +Rosalind +Vernell +Winnie +Yolanda +Alyce +Angeline +Augusta +Carmen +Charles +Dannie +Deloise +Denise +Donnie +Eliza +Ester +Gaynell +Gearldine +Gussie +Jeanetta +Jerrie +Laurie +Lovie +Meredith +Nan +Nell +Ophelia +Rubye +Adell +Bernadine +Candace +Carlene +Cathrine +Celestine +Dawn +Dian +Dorris +Florine +Flossie +Harriette +Jeraldine +Jimmy +Johnny +Kathrine +Libby +Linnie +Louvenia +Melanie +Molly +Nona +Trudy +Alexis +Allie +Cassie +Claire +Clementine +Corene +Deanna +Delia +Dolly +Earlie +Era +Evie +Gertha +Gilda +Hannah +Hettie +Imogene +Jettie +Jewell +Jonnie +Judi +Katrina +Lelia +Lettie +Lue +Margo +Marlene +Mickey +Muriel +Patrica +Phoebe +Regenia +Sandy +Savannah +Sharyn +Sherrell +Sherri +Sonya +Willodean +Wynell +Abbie +Alta +Alva +April +Blanch +Blanche +Bonita +Ceola +Cheri +Cindy +Cleo +Corean +Debbie +Doretha +Dovie +Faith +Frieda +Gale +Gary +Gennie +Gertie +Glynda +Greta +Gretchen +Gwenda +Ila +Ima +Ina +Ira +Iris +Iva +Janett +Jerri +Katharine +Leatha +Leatrice +Letha +Magnolia +Mandy +Marcella +Matilda +May +Nannie +Ocie +Odell +Olean +Ouida +Pam +Retha +Rhoda +Richard +Rutha +Sherrill +Sherryl +Terri +Verdell +Vicky +Virgie +Barbra +Bertie +Beryl +Bette +Billy +Carnell +Charity +Charlsie +Cheryle +Daphne +Delories +Delorise +Dessie +Dona +Estelle +Eve +Francine +Gene +Isabella +Jacquelyne +Jacquline +Jannette +Jeannine +Lily +Lonnie +Lorean +Marianne +Maudie +Melvia +Mitzi +Myrtis +Nella +Nola +Pinkie +Prince +Queenie +Robert +Robyn +Romona +Ronda +Roxie +Sammie +Susanne +Valerie +Veda +Vernice +Vida +Voncille +Wilhelmina +Willene +Winifred +Zelma +Mary +Linda +Barbara +Patricia +Brenda +Betty +Shirley +Carolyn +Sandra +Judy +Dorothy +Martha +Annie +Janice +Margaret +Gloria +Peggy +Elizabeth +Nancy +Joyce +Carol +Glenda +Doris +Wanda +Sarah +Donna +Susan +Rebecca +Sharon +Frances +Virginia +Ruby +Alice +Charlotte +Willie +Jo +Deborah +Patsy +Beverly +Helen +Sherry +Emma +Geraldine +Catherine +Cynthia +Gwendolyn +Judith +Mildred +Cheryl +Ann +Ethel +Mattie +Lillie +Connie +Evelyn +Juanita +Julia +Bobbie +Bonnie +Diane +Joan +Phyllis +Janet +Jacqueline +Jane +Marilyn +Edna +Lynda +Sheila +Sara +Rosie +Karen +Johnnie +Bessie +Carrie +Pamela +Rita +Bertha +Jean +Paula +Rose +Christine +Louise +Dianne +Laura +Marie +Ruth +Ella +Hattie +Minnie +Myra +Sue +Georgia +Sylvia +Bernice +Clara +Bettye +Lois +Margie +Thelma +Fannie +Rosa +Jessie +Josephine +Norma +Delores +Susie +Anita +Nellie +Yvonne +Gladys +Edith +Elaine +Anna +Janie +Katherine +Ida +Paulette +Alma +Deloris +Kathryn +Shelia +Jeanette +Kathy +Theresa +Teresa +Vivian +Annette +Faye +Lillian +Eva +Loretta +Bettie +Billie +Gail +Hazel +Irene +Jackie +Lucy +Regina +Earnestine +Katie +Marsha +Kay +Anne +Claudia +Joann +Sally +Kathleen +Stella +Lula +Mae +Ellen +Emily +Priscilla +Rachel +Wilma +Vera +Beatrice +Dora +Geneva +Mamie +Marion +Audrey +Gayle +Janis +Marcia +Marjorie +Jimmie +Rosetta +Angela +Nelda +Cathy +Charlene +Constance +Jennifer +Delois +Eleanor +June +Nora +Pearlie +Rhonda +Diana +Flora +Suzanne +Vicki +Daisy +Essie +Reba +Rosemary +Lola +Robbie +Alberta +Eula +Pauline +Frankie +Lena +Lucille +Vickie +Cora +Lorene +Maxine +Ola +Olivia +Velma +Eloise +Erma +Maggie +Marian +Unknown +Eddie +Hilda +Jacquelyn +Lizzie +Nettie +Ruthie +Sallie +Esther +Ollie +Ada +Ernestine +Joy +Melba +Roberta +Amelia +Earline +Elsie +Henrietta +Jannie +Nina +Veronica +Jerry +Joanne +Becky +Eunice +Freda +Grace +Harriet +Tommie +Viola +Carole +Gracie +Irma +Jeannie +Lana +Myrtle +Naomi +Sharron +Sybil +Gertrude +Sadie +Dorthy +Jennie +Jewel +Lee +Lynn +Mable +Cecelia +Inez +Jeannette +Ora +Pat +Terry +Victoria +Agnes +Lela +Lenora +Melanie +Shelby +Toni +Cecilia +Dolores +Melissa +Pearl +Queen +Sheryl +Debra +Florence +Freddie +Joe +Julie +Lou +Polly +Saundra +Cornelia +Della +Elnora +Janette +Jessica +Maria +Nadine +Nell +Amanda +Andrea +Dana +Darlene +Earlene +Elouise +Etta +Lydia +Mollie +Peggie +Willa +Addie +Callie +Diann +Estella +Iris +Josie +Lila +Lottie +Melinda +Miriam +Odessa +Arlene +Celia +Cherry +Debbie +Dianna +Jamie +Jan +Lorine +Maureen +Molly +Bennie +Claudette +Francis +Ginger +Leslie +Marva +Mavis +Sherrie +Syble +Bernadette +Charlie +Earlean +Freida +Gaynell +Gearldine +James +Jenny +Joanna +Leola +Lessie +Willia +Amy +Belinda +Beulah +Clarice +Corine +Dixie +Edwina +Eugenia +Glinda +Lelia +Leona +Lorraine +Lucinda +Monica +Penny +Rena +Retha +Violet +Voncile +Beth +Carla +Caroline +Dale +Dollie +Effie +Elois +Marcella +Marguerite +Mittie +Roxie +Wilda +Bonita +Cherie +Colleen +Corene +Denise +Eliza +Estelle +Fay +Gussie +Hellen +Jeanne +Lucile +Mabel +Margarett +Millie +Nona +Opal +Pamelia +Rosalyn +Sammie +Sonja +Winnie +Allie +Bobby +Celestine +Cheri +Cindy +Evie +Gay +Harriett +Jeanie +Kaye +Louvenia +Luvenia +Lynne +May +Mickey +Ocie +Patrica +Ramona +Sherryl +Sondra +Stephanie +Verna +Vernell +Vicky +Antoinette +Brinda +Candace +Dannie +Dawn +Delilah +Dinah +Donnis +Dorris +Inell +Iola +Ivory +Judie +Katrina +Malinda +Marlene +Maudie +Nan +Ophelia +Patti +Patty +Penelope +Rosia +Sheron +Sherri +Tina +Abbie +Alicia +Betsy +Carmen +Christina +Clemmie +Deloise +Dovie +Eartha +Ester +Francine +Frieda +George +Gwen +Harriette +Imogene +Iva +Jacquline +Jeraldine +Jewell +John +Leila +Lue +Margret +Merle +Mozell +Nikki +Nita +Regenia +Trudy +Verdell +Willodean +Aletha +Angelyn +Angie +Augusta +Bette +Cassandra +Charity +Chris +Claudine +Cleo +Donnie +Elise +Fredia +Gilda +Glynda +Greta +Hannah +Ila +Jacqulyn +Jettie +Jill +Kate +Kathie +Lilly +Lora +Louisa +Matilda +Mickie +Regena +Renee +Robert +Robin +Ronnie +Rosalind +Sandy +Shelley +Sherron +Sophia +Terri +Thomas +Valencia +Adele +Adrienne +Alexis +Alta +Alyce +Angel +Ava +Barbra +Benita +Billye +Carroll +Cassie +Cheryle +Clementine +Deanna +Dell +Delories +Dessie +Dona +Eileen +Elma +Elvira +Florine +Flossie +Gale +Genevieve +Gennie +Geraldean +Gertha +Gertie +Gwenda +Hester +Hettie +Holly +Idella +Ira +Isabelle +Jenifer +Jerrie +Johnny +Joye +Juliet +Juliette +Karon +Kimberly +Lanell +Lauren +Laverne +Lawanda +Leigh +Lonnie +Loraine +Lyndia +Lynette +Madeline +Madelyn +Magnolia +Marianne +Marietta +Maude +Melva +Mona +Nola +Novella +Octavia +Ouida +Pam +Pansy +Pearline +Phillis +Phoebe +Pinkie +Portia +Ronda +Shannon +Sharyn +Shelba +Shirlene +Sidney +Sonya +Susanne +Suzette +Thomasine +Valeria +Virgie +Vonda +Winifred +Yolanda +Zola +Mary +Linda +Patricia +Brenda +Barbara +Shirley +Betty +Sandra +Carolyn +Judy +Martha +Dorothy +Janice +Annie +Gloria +Margaret +Elizabeth +Peggy +Nancy +Rebecca +Deborah +Sharon +Susan +Joyce +Wanda +Carol +Doris +Glenda +Donna +Sarah +Charlotte +Alice +Helen +Patsy +Willie +Virginia +Frances +Jo +Cynthia +Gwendolyn +Kathy +Diane +Beverly +Catherine +Sherry +Judith +Ruby +Evelyn +Emma +Jacqueline +Connie +Julia +Bonnie +Joan +Phyllis +Pamela +Marilyn +Mattie +Janet +Rita +Sheila +Jane +Juanita +Mildred +Ethel +Lillie +Ann +Laura +Geraldine +Paula +Bobbie +Edna +Karen +Minnie +Rosie +Cheryl +Dianne +Sara +Teresa +Cathy +Johnnie +Sylvia +Bessie +Ella +Clara +Ruth +Christine +Marie +Katherine +Bertha +Georgia +Myra +Ida +Lois +Bernice +Elaine +Lynda +Rose +Jean +Louise +Kathryn +Theresa +Bettye +Carrie +Jessie +Unknown +Shelia +Thelma +Rosa +Janie +Yvonne +Lula +Margie +Anita +Anna +Edith +Gladys +Sue +Belinda +Lillian +Fannie +Hazel +Kathleen +Eva +Paulette +Vivian +Delores +Jennifer +Susie +Jeanette +Nellie +Norma +Regina +Gail +Hattie +June +Mae +Vera +Lynn +Katie +Wilma +Deloris +Earnestine +Rhonda +Cora +Emily +Loretta +Rachel +Stella +Vicki +Annette +Ellen +Faye +Joann +Kay +Marsha +Maxine +Josephine +Sally +Bettie +Billie +Jackie +Angela +Anne +Daisy +Diana +Flora +Lucille +Lucy +Marcia +Pauline +Claudia +Marion +Marjorie +Priscilla +Rosetta +Vickie +Alma +Ernestine +Jacquelyn +Essie +Mamie +Suzanne +Pearlie +Audrey +Charlene +Irene +Beatrice +Carole +Constance +Eloise +Frankie +Jimmie +Alberta +Geneva +Velma +Debra +Nelda +Ola +Sallie +Tommie +Lola +Sadie +Janis +Nina +Roberta +Delois +Eleanor +Joy +Olivia +Florence +Maggie +Marian +Myrtle +Reba +Robbie +Victoria +Grace +Henrietta +Leola +Viola +Eunice +Jan +Amanda +Hilda +Lela +Nettie +Rosemary +Dorthy +Eula +Mable +Melinda +Ora +Veronica +Esther +Joanne +Lana +Nora +Dora +Sharron +Cecelia +Eddie +Jennie +Sybil +Becky +Darlene +Gertrude +Iris +Lizzie +Melba +Polly +Sheryl +Agnes +Amy +Claudette +Elnora +Joe +Julie +Miriam +Nadine +Naomi +Ollie +Addie +Della +Elsie +Etta +Jeannie +Jewel +Inez +Irma +Lottie +Melanie +Ruthie +Dana +Diann +Erma +Gracie +Jeanne +Lorene +Millie +Shelby +Terry +Vicky +Angie +Arlene +Callie +Dolores +Gayle +Harriet +Jerry +Lenora +Lorraine +Lou +Melissa +Nita +Renee +Voncile +Ada +Carla +Claire +Eugenia +Freda +Freida +Ginger +Lena +Lorine +Lucinda +Odessa +Peggie +Queen +Verna +Bonita +Dianna +Eliza +Jenny +Lessie +Malinda +Pearl +Saundra +Stephanie +Andrea +Bennie +Beulah +Celia +Cindy +Cornelia +Debbie +Denise +Dixie +Earlene +Edwina +Jannie +Marcella +Mollie +Pinkie +Sonja +Syble +Amelia +Bobby +Cherry +Corine +Jewell +Josie +Lee +Lydia +Lynne +Marva +Molly +Mona +Robert +Beth +Blanche +Caroline +Cassandra +Dolly +Earline +Gaynell +Gearldine +James +Jamie +Jeannette +Lisa +Octavia +Opal +Ramona +Rena +Rosalyn +Rosia +Toni +Violet +Willa +Antoinette +Aurelia +Cecilia +Dale +Elouise +Imogene +Ina +Jeanie +Jerrie +Kaye +Lelia +Mickey +Ophelia +Penny +Betsy +Carlotta +Charlie +Claudine +Effie +Fay +Francis +Freddie +Gussie +Harriett +Janette +Leslie +Mabel +Nan +Regenia +Terri +Trudy +Valerie +Alta +Cheri +Clarice +Deloise +Dinah +Donnie +Earlean +Estella +Ester +Florine +Glinda +Gwen +Hellen +Iola +Leona +Lila +Lucile +Luella +Madeline +Margarett +Maria +Mavis +Myrtis +Nell +Pamelia +Patty +Regena +Retha +Robin +Rosalind +Sheron +Tina +Wilda +Alicia +Cassie +Dian +Easter +Francine +Gay +Gayla +Johnny +Lue +Marguerite +Michelle +Ouida +Pat +Sherron +Vernell +Vonnie +Winnie +Allison +Althea +Bernadette +Bernadine +Clementine +Deanna +Delilah +Dollie +Dottie +Earlie +Elmira +Ivy +Katharine +Laurie +Leila +Louvenia +Madelyn +Margarette +Marietta +Maudie +Maureen +Michele +Ocie +Patrica +Patti +Pearline +Phillis +Portia +Roxie +Sammie +Shannon +Sherrie +Sherrill +Sondra +Valeria +Velinda +Angelia +Augusta +Candace +Carroll +Cathie +Cathryn +Celestine +Clarissa +Colleen +Dawn +Delia +Dessie +Estelle +Flossie +Fredia +Genevieve +George +Glenna +Idell +Ila +Jaunita +Jonnie +Leatha +Lizabeth +Lucretia +Matilda +Melva +Mittie +Myrna +Myrtice +Rebekah +Reta +Rubie +Sophia +Verdell +Vonda +William +Willodean +Alfreda +Angeline +April +Arthurine +Berniece +Carolyne +Ceola +Clarence +Daphne +David +Dean +Debby +Delories +Gale +Gilda +Harriette +Inell +Jacqulyn +Janetta +Jayne +Jeanine +Jeraldine +Jill +Karon +Kattie +Kitty +Laverne +Leigh +Lindy +Louella +Lovie +Lyndia +Marlene +Maurice +Monica +Mozell +Nannie +Odell +Ovetta +Penelope +Princess +Sandy +Savannah +Scarlett +Selena +Sharlene +Shelley +Shirlene +Sonia +Vinnie +Winifred +Mary +Linda +Brenda +Patricia +Barbara +Sandra +Betty +Shirley +Carolyn +Deborah +Judy +Annie +Martha +Dorothy +Janice +Gloria +Wanda +Margaret +Nancy +Elizabeth +Joyce +Sharon +Susan +Rebecca +Carol +Peggy +Glenda +Donna +Sarah +Cynthia +Doris +Charlotte +Diane +Helen +Virginia +Kathy +Beverly +Frances +Janet +Jo +Sheila +Sherry +Alice +Gwendolyn +Willie +Karen +Pamela +Patsy +Phyllis +Judith +Ruby +Jacqueline +Evelyn +Rita +Connie +Geraldine +Marilyn +Catherine +Bonnie +Lillie +Joan +Emma +Mattie +Ann +Juanita +Laura +Cheryl +Cathy +Julia +Christine +Debra +Ethel +Jane +Rosie +Edna +Paula +Sara +Bobbie +Teresa +Anita +Mildred +Johnnie +Rose +Minnie +Dianne +Ruth +Bertha +Yvonne +Vivian +Clara +Bernice +Carrie +Shelia +Sylvia +Georgia +Rhonda +Ella +Marie +Elaine +Lynda +Unknown +Jean +Theresa +Louise +Bessie +Katherine +Jeanette +Jennifer +Belinda +Norma +Kathryn +Sue +Myra +Rosa +Gail +Loretta +Gladys +Anna +Hazel +Marsha +Vicki +Ellen +Jessie +Regina +Bettye +Ida +Fannie +Thelma +Susie +Vickie +Jacquelyn +Delores +Vera +Hattie +Lois +Mae +Eva +Kathleen +Margie +Josephine +Mamie +Alma +Emily +Irene +Lucy +Annette +Edith +Lula +Maxine +Sally +Diana +Stella +Constance +Jackie +June +Lillian +Priscilla +Wilma +Audrey +Cora +Janie +Janis +Katie +Maggie +Geneva +Lucille +Paulette +Sallie +Charlene +Joann +Anne +Jimmie +Deloris +Delois +Nellie +Bettie +Billie +Daisy +Ernestine +Claudia +Flora +Hilda +Marion +Rachel +Suzanne +Earnestine +Olivia +Faye +Sadie +Iris +Eloise +Kay +Marcia +Rosemary +Sharron +Eula +Rosetta +Victoria +Jennie +Lynn +Marjorie +Mona +Velma +Angela +Beatrice +Joy +Robbie +Henrietta +Joanne +Lola +Mable +Pauline +Roberta +Alberta +Frankie +Marian +Darlene +Essie +Esther +Melinda +Melissa +Nelda +Ola +Viola +Dora +Elsie +Grace +Julie +Pearlie +Ruthie +Lana +Nettie +Nina +Addie +Gayle +Melba +Nora +Della +Eleanor +Florence +Ginger +Jan +Myrtle +Terry +Agnes +Carole +Eunice +Jenny +Lee +Ora +Queen +Tommie +Ada +Amanda +Bonita +Carla +Gracie +Harriet +Becky +Charlie +Jewel +Marguerite +Reba +Dianna +Eddie +Francis +Freda +Jannie +Lena +Lizzie +Ollie +Polly +Ramona +Andrea +Cassandra +Cecelia +Dale +Debbie +Francine +Irma +Jeanne +Leola +Naomi +Veronica +Yolanda +Erma +Lottie +Alfreda +Amy +Elnora +Gaynell +Melanie +Nell +Penny +Sybil +Verna +Amelia +Angie +Diann +Earline +Etta +Freddie +Gertrude +Lela +Lora +Lou +Odessa +Rosalind +Shelby +Beulah +Estella +Jerry +Lenora +Lila +Lucile +Patty +Toni +Betsy +Cecilia +Dorthy +Earlene +Gay +Glinda +Jeannie +Laverne +Lucinda +Molly +Nadine +Willa +Alicia +Callie +Caroline +Cassie +Eugenia +Inez +James +Jeannette +Jewell +Joe +Leona +Lorene +Lorraine +Maria +Virgie +Arlene +Bennie +Celia +Cornelia +Dollie +Elouise +Josie +Katrina +Leslie +Lydia +Rena +Sheryl +Stephanie +Beth +Celestine +Edwina +Flossie +Freida +Gearldine +Harriett +Jeraldine +Jessica +Joanna +Kathie +Lisa +Maureen +Michele +Nita +Peggie +Reta +Rosalyn +Roxie +Sonja +Valeria +Ava +Blanche +Ceola +Cherry +Christy +Clarice +Claudette +Denise +Donnie +Effie +Eliza +Elma +Ester +Gayla +Juliette +Kaye +Miriam +Nan +Roslyn +Terri +Valerie +Vicky +Beryl +Carolyne +Cathryn +Debora +Dinah +Dolores +Gwen +Inell +Jamie +Jeanetta +Karon +Lorine +Lue +Lynne +Madeline +Malinda +Marlene +Nona +Ophelia +Patrica +Patti +Rosia +Sondra +Voncile +Wendy +William +Willodean +Adell +Cherryl +Clementine +Crystal +Earlean +Gussie +Ira +Libby +Margarett +Marva +Nedra +Pat +Reda +Regenia +Renee +Violet +Angeline +Candace +Charles +Cindy +Corine +Danna +Dannie +Daphne +David +Deloise +Deloria +Dolly +Evon +Florida +Frieda +Hope +Ina +Jannette +Jayne +Jerri +John +Kathey +Kitty +Leah +Lily +Lonnie +Luella +Margarette +Margret +Marianne +Marietta +Marla +Matilda +Maude +Mavis +Millie +Myrtis +Pamelia +Pinkie +Robin +Sheron +Sherrill +Sophia +Syble +Trudy +Yolande +Adrienne +Alexis +Angelia +Aurelia +Benita +Bernadette +Bobby +Carmen +Cecile +Claire +Cleo +Dana +Delia +Dixie +Dona +Doretha +Easter +Elois +Evie +Fay +Gilda +Glynda +Greta +Gwenda +Hannah +Hellen +Hester +Imogene +Ingrid +Jacklyn +Janette +Jerrie +Jettie +Johnny +Laurie +Lessie +Louvenia +Lynette +Mabel +Mickey +Ouida +Pearl +Phillis +Retha +Ronda +Rubye +Saundra +Shelley +Sherri +Sherrie +Sherron +Tina +Verdell +Vernice +Winnie +Alfredia +Allie +Alyce +Annice +Annye +Antoinette +Arthur +Belva +Bette +Brinda +Bulah +Burma +Camellia +Carlene +Corrine +Creola +Deanna +Deborrah +Dee +Delilah +Dessie +Dortha +Dottie +Elise +Gale +Glenna +Glory +Helene +Iva +Ivy +Jacquelyne +Jaunita +Jeannine +Joette +Johnie +Joseph +Judie +Karla +Kate +Katharine +Ladonna +Lea +Liza +Loretha +Mammie +Melody +Merry +Michelle +Mickie +Mittie +Mitzi +Nannie +Opal +Patrice +Robert +Roxanne +Saratha +Shannon +Shirlene +Silvia +Sonya +Vernell +Wilda +Willia +Zelma +Mary +Linda +Patricia +Brenda +Deborah +Barbara +Betty +Sandra +Carolyn +Judy +Shirley +Janice +Donna +Dorothy +Martha +Annie +Wanda +Gloria +Margaret +Elizabeth +Carol +Nancy +Rebecca +Sharon +Susan +Joyce +Peggy +Kathy +Glenda +Cynthia +Debra +Beverly +Pamela +Charlotte +Diane +Karen +Doris +Virginia +Sarah +Helen +Jo +Sheila +Willie +Alice +Catherine +Connie +Sherry +Gwendolyn +Frances +Phyllis +Jacqueline +Rita +Patsy +Cathy +Dianne +Marilyn +Ruby +Evelyn +Janet +Judith +Bonnie +Joan +Teresa +Sylvia +Rosie +Anita +Ann +Rose +Sara +Edna +Cheryl +Geraldine +Katherine +Mildred +Rhonda +Shelia +Emma +Mattie +Jane +Julia +Theresa +Yvonne +Ethel +Unknown +Christine +Laura +Lillie +Bobbie +Paula +Juanita +Marsha +Johnnie +Minnie +Vicki +Clara +Elaine +Gail +Kathryn +Vivian +Belinda +Ruth +Bettye +Annette +Bernice +Carrie +Ella +Bertha +Jean +Thelma +Rosa +Ellen +Jeanette +Marie +Louise +Myra +Jennifer +Bessie +Lois +Regina +Josephine +Jessie +Norma +Georgia +Lynda +Delores +Fannie +Sue +Kathleen +Marcia +Margie +Anna +Vickie +Eva +Loretta +Angela +Kay +Susie +Hazel +Jackie +Anne +Edith +Wilma +Diana +June +Gladys +Katie +Lula +Jacquelyn +Audrey +Constance +Emily +Mae +Vera +Janie +Lucy +Sally +Billie +Lynn +Daisy +Dora +Hattie +Ida +Paulette +Joann +Stella +Geneva +Lillian +Earnestine +Maxine +Reba +Veronica +Cora +Velma +Delois +Ginger +Priscilla +Victoria +Alma +Bettie +Debbie +Deloris +Irene +Melinda +Nellie +Nina +Alberta +Faye +Flora +Nora +Sharron +Claudia +Gayle +Lola +Marjorie +Rachel +Beatrice +Joy +Mamie +Jan +Marion +Melissa +Mona +Roberta +Charlene +Essie +Maggie +Sadie +Sallie +Terry +Ada +Darlene +Eleanor +Eloise +Melba +Denise +Frankie +Carla +Hilda +Janis +Leola +Lucille +Ollie +Pauline +Tommie +Della +Ernestine +Jimmie +Miriam +Suzanne +Diann +Jannie +Lena +Mable +Robbie +Shelby +Amanda +Esther +Ola +Rosetta +Andrea +Cecelia +Grace +Harriet +Henrietta +Jewel +Sybil +Vicky +Viola +Myrtle +Olivia +Ramona +Rosemary +Cassandra +Iris +Jeannie +Jennie +Jenny +Lana +Marian +Nettie +Pearlie +Becky +Cecilia +Eunice +Gertrude +Polly +Bonita +Dorthy +Florence +Jeanne +Jessica +Lorene +Ora +Valerie +Agnes +Amy +Celia +Charlie +Elsie +Julie +Lee +Lizzie +Naomi +Ruthie +Amelia +Carole +Earline +Harriett +Lila +Lynne +Yolanda +Bennie +Beth +Cornelia +Dinah +Eddie +Eula +Freda +Freida +Leslie +Penny +Rosalind +Sheryl +Addie +Callie +Claudette +Fay +Inez +Irma +Lela +Tina +Toni +Cindy +Earlene +Estella +Francis +Freddie +Jerry +Joanne +Lydia +Nelda +Stephanie +Verna +Alfreda +Candace +Dolores +Jeannette +Juliette +Katrina +Patti +Peggie +Robin +Dianna +Lisa +Malinda +Maria +Monica +Renee +Saundra +Terri +Angie +Blanche +Dian +Edwina +Etta +Jamie +Jill +Joe +Marianne +Marlene +Marva +Nadine +Patrica +Rosalyn +Trudy +Willa +Dana +Effie +Eliza +Frieda +Glinda +Gracie +Janette +Jewell +Josie +Kaye +Lorraine +Lou +Lucile +Madeline +Marcella +Melanie +Millie +Mollie +Nona +Odessa +Rena +Ava +Beverley +Clementine +Deloise +Donnie +Eugenia +Florine +Gay +Jerri +Lenora +Mavis +Molly +Nita +Regenia +Sherrie +Sondra +Sonja +Valeria +Voncile +Alicia +Arlene +Beulah +Carmen +Caroline +Celeste +Celestine +Dale +Debora +Elouise +Erma +Ester +Gayla +Laurie +Leona +Lorine +Lottie +Mabel +Madelyn +Nell +Pat +Patrice +Pearl +Portia +Queen +Rubye +Sherrill +Vernell +Antoinette +Betsy +Bobby +Cassie +Cathrine +Cheri +Christina +Elnora +Estelle +Francine +Gearldine +Iva +James +Kathie +Lucinda +Marguerite +Melody +Michelle +Nan +Pamelia +Regena +Rosia +Shannon +Shelley +Shelly +Sonia +Violet +Wendy +Winnie +Adell +Althea +Augusta +Barbra +Bernadette +Cathleen +Claire +Clarice +Doretha +Gaynell +Jeanetta +Jeanie +Jerrie +Judi +Karon +Katheryn +Kitty +Laverne +Lelia +Lora +Lue +Luvenia +Myrtice +Opal +Patty +Retha +Roxie +Sherri +Valencia +Wilda +Willene +Wonda +Yvette +Adrienne +Angelia +Annice +Avis +Candice +Cara +Carlotta +Cathie +Cathryn +Ceola +Charlette +Cherry +Corine +Crystal +Dannie +Delilah +Dona +Easter +Elois +Evon +Fredia +Gertha +Gilda +Hannah +Harriette +Helene +Imogene +Ina +Jaunita +Jeraldine +Joanna +Jocelyn +John +Kathrine +Leigh +Margret +Maudie +Mickey +Mittie +Myrna +Phillis +Rebekah +Retta +Ronda +Sandy +Susanne +Teresia +Valarie +Verdell +Vickey +Alfredia +Allison +Angeline +Arlinda +Camilla +Charles +Cherie +Cheryle +Classie +Colleen +Corene +Creola +David +Dawn +Delbra +Delia +Dovie +Emmie +Evie +Floria +George +Georgie +Gwen +Gwenda +Hellen +Inell +Ira +Jacqulyn +Jana +Jolene +Jonnie +Joycelyn +Kathey +Kattie +Kerry +Laurel +Lauretta +Lavonne +Leatha +Lettie +Lily +Louvenia +Luella +Lynette +Magnolia +Melonie +Michele +Muriel +Nannie +Natalie +Octavia +Pearlean +Penelope +Pinkie +Ray +Reta +Reva +Rochelle +Ronnie +Rosanna +Roxann +Sammie +Sherron +Syble +Teri +Terrie +Tessie +Veda +Willia +Mary +Linda +Patricia +Deborah +Brenda +Barbara +Shirley +Sandra +Betty +Carolyn +Janice +Debra +Donna +Judy +Martha +Nancy +Dorothy +Susan +Wanda +Annie +Gloria +Kathy +Rebecca +Margaret +Elizabeth +Sharon +Cynthia +Pamela +Joyce +Carol +Peggy +Karen +Doris +Charlotte +Diane +Glenda +Beverly +Jo +Janet +Sarah +Sherry +Cathy +Virginia +Sheila +Marilyn +Alice +Connie +Catherine +Teresa +Gwendolyn +Helen +Frances +Phyllis +Ruby +Willie +Paula +Rita +Jacqueline +Laura +Rhonda +Patsy +Evelyn +Vickie +Cheryl +Judith +Bonnie +Christine +Dianne +Jane +Joan +Ann +Marsha +Shelia +Anita +Ethel +Julia +Rose +Emma +Mattie +Sylvia +Bobbie +Marie +Lillie +Unknown +Geraldine +Juanita +Vicki +Kathryn +Ella +Yvonne +Edna +Katherine +Rosie +Vivian +Jean +Ruth +Theresa +Sara +Gail +Johnnie +Belinda +Minnie +Bernice +Clara +Jennifer +Lois +Mildred +Regina +Kathleen +Eva +Marcia +Elaine +Georgia +Norma +Loretta +Bessie +Myra +Angela +Ida +Bertha +Lynda +Carrie +Rosa +Lula +Bettye +Jeanette +Delores +Gladys +Rachel +Thelma +Jackie +Margie +Nina +Annette +Lucy +Victoria +Ellen +Debbie +Denise +Janie +Louise +Melissa +Susie +Jessie +Sue +Edith +Katie +Vera +Anna +Kay +Diana +Maxine +Wilma +Earnestine +Hattie +Hazel +Suzanne +Deloris +Jacquelyn +June +Valerie +Emily +Mae +Anne +Fannie +Lillian +Lynn +Billie +Faye +Josephine +Joy +Mamie +Paulette +Diann +Jan +Charlene +Irene +Priscilla +Sally +Audrey +Beatrice +Cora +Ernestine +Nellie +Claudia +Darlene +Julie +Alma +Constance +Delois +Marion +Pauline +Reba +Sadie +Veronica +Geneva +Ginger +Jenny +Eleanor +Lucille +Eula +Flora +Stella +Vicky +Jeanne +Roberta +Velma +Daisy +Frankie +Maggie +Essie +Terry +Harriet +Jewel +Lola +Melanie +Dora +Lorraine +Robbie +Rosetta +Sallie +Sharron +Eloise +Esther +Joann +Pearlie +Sheryl +Amanda +Bonita +Eddie +Gertrude +Jennie +Marjorie +Mona +Ola +Ada +Alberta +Bettie +Carla +Joanne +Lena +Leslie +Lisa +Mable +Melba +Nora +Ollie +Ruthie +Della +Gayle +Hilda +Iris +Janis +Jimmie +Lou +Melinda +Cassandra +Gracie +Jannie +Malinda +Nadine +Nelda +Patty +Peggie +Rosemary +Yolanda +Cecilia +Eunice +Grace +Irma +Naomi +Viola +Cherry +Erma +Henrietta +Jeannette +Lee +Lynne +Myrtle +Ora +Queen +Ramona +Amelia +Cecelia +Freda +Joe +Marian +Olivia +Sherrie +Tina +Amy +Bridget +Earline +Florence +Inez +Lana +Lydia +Maria +Mollie +Monica +Rosalind +Sonja +Stephanie +Vanessa +Alicia +Andrea +Beulah +Carole +Cindy +Dana +Delilah +Dolores +Donnie +Elsie +Jamie +Katrina +Lizzie +Lorene +Marianne +Patti +Penny +Polly +Robin +Trudy +Agnes +Angie +Ava +Becky +Callie +Earlene +Lela +Lenora +Lucile +Marcella +Marlene +Alfreda +Althea +Caroline +Dale +Etta +James +Jerry +Leola +Nita +Toni +Wendy +Beth +Celia +Dianna +Dolly +Edwina +Freida +Jeanetta +Mavis +Nettie +Retha +Sybil +Candace +Dollie +Elnora +Jessica +Kathie +Miriam +Nell +Rosalyn +Terri +Tommie +Arlene +Charlie +Debora +Francis +Freddie +Gaynell +Jewell +Kaye +Lottie +Michele +Odessa +Rosia +Willa +Blanche +Bobby +Christina +Cornelia +Dixie +Earlean +Gwen +Ira +Jeannie +Josie +Marilynn +Michelle +Neva +Pinkie +Regenia +Shannon +Sondra +Sonia +Verna +Addie +Adrienne +Bernadette +Betsy +Beverley +Claudette +Clementine +Deanna +Doretha +Eileen +Elouise +Gay +Jeanie +Jeri +Laurie +Lelia +Lila +Lora +Marguerite +Patrica +Shelby +Valeria +Violet +Yolande +Angelia +Carmen +Celestine +Deloise +Estella +Gale +Idella +Jacquline +Jeraldine +Jerri +Jettie +Karon +Lorine +Lucinda +Mabel +Maureen +Melody +Molly +Nona +Pearl +Penelope +Renee +Sherri +Virgie +Willia +Bennie +Bernadine +Cassie +Cheri +Christy +Delphine +Dorthy +Estelle +Ester +Eugenia +Fay +Francine +Gearldine +Harriette +Henry +Imogene +Ina +Juliette +Laverne +Leona +Letha +Lucretia +Marva +Melva +Opal +Ophelia +Portia +Robert +Saundra +Shelley +Shelly +Sherron +Sophia +Venita +Wonda +Abbie +Adell +Avis +Billy +Claire +Corliss +Dawn +Debroah +Delbra +Delia +Donald +Dovie +Eliza +Elma +Fredia +Hannah +Harriett +Inell +Jayne +Joanna +John +Katharine +Landis +Lauren +Lessie +Lonnie +Lutricia +Lynette +Magnolia +Margo +Mitzi +Myrtis +Nan +Neta +Pansy +Phillis +Rena +Rubye +Sammie +Sonya +Tamara +Voncile +Vonda +Adele +Annice +Antoinette +Benita +Blenda +Camilla +Candice +Candy +Cathie +Charity +Charlsie +Charolette +Cherie +Clarice +Clarissa +Corine +Danna +Dannie +Darline +Debby +Dessie +Dinah +Donnis +Dorothea +Dortha +Dottie +Elois +Evangeline +Eve +Flossie +Fran +Gayla +Georgie +Gretchen +Gwenda +Holly +Ila +Iva +Ivory +Janelle +Jill +Jocelyn +Johnny +Karol +Katheryn +Kenneth +Kim +Kitty +Libby +Lily +Lue +Luvenia +Margarett +Marolyn +Merle +Mickie +Odell +Pam +Pattie +Pearline +Pricilla +Rhoda +Selena +Sheri +Suzan +Sydney +Synthia +Tanya +Valarie +Veda +Mary +Linda +Deborah +Patricia +Brenda +Barbara +Shirley +Debra +Sandra +Betty +Donna +Janice +Carolyn +Susan +Cynthia +Judy +Kathy +Martha +Wanda +Sharon +Dorothy +Gloria +Pamela +Nancy +Annie +Rebecca +Elizabeth +Margaret +Joyce +Karen +Beverly +Peggy +Carol +Doris +Cathy +Glenda +Teresa +Janet +Jo +Sheila +Diane +Sarah +Marilyn +Sherry +Phyllis +Alice +Virginia +Gwendolyn +Rita +Connie +Catherine +Charlotte +Helen +Jacqueline +Rhonda +Patsy +Frances +Ruby +Anita +Paula +Laura +Willie +Rose +Evelyn +Shelia +Christine +Theresa +Vicki +Bonnie +Yvonne +Jane +Dianne +Joan +Julia +Katherine +Angela +Cheryl +Vickie +Elaine +Kathryn +Marsha +Unknown +Mattie +Emma +Lillie +Juanita +Ethel +Belinda +Edna +Geraldine +Sylvia +Mildred +Ann +Judith +Bobbie +Ruth +Rosie +Gail +Kathleen +Marcia +Jennifer +Vivian +Ella +Sara +Denise +Marie +Carrie +Clara +Jean +Regina +Thelma +Johnnie +Annette +Gladys +Lois +Louise +Myra +Jackie +Minnie +Jessie +Norma +Sally +Bertha +Delores +Eva +Rosa +Jacquelyn +Vanessa +Georgia +Margie +Debbie +Vera +Diana +Jeanette +Bessie +Sue +Loretta +Maxine +Constance +Josephine +Joy +Terry +Ida +Lucy +Anna +Bernice +Darlene +Edith +Janie +Ellen +Jan +Anne +Lynn +Rachel +Alma +Earnestine +Hazel +Kay +Melissa +Bettye +Claudia +Emily +Susie +Suzanne +Lillian +Robin +Billie +Deloris +June +Lynda +Patti +Reba +Roberta +Faye +Geneva +Mamie +Nellie +Robbie +Wilma +Fannie +Veronica +Delois +Ginger +Rosetta +Beatrice +Daisy +Irene +Maggie +Carla +Charlene +Melinda +Audrey +Flora +Hattie +Katie +Melba +Harriet +Julie +Ramona +Valerie +Amy +Eunice +Florence +Nina +Cora +Gayle +Victoria +Eloise +Mae +Hilda +Iris +Leslie +Lula +Marion +Sharron +Lisa +Mona +Ora +Dora +Janis +Lena +Olivia +Stella +Becky +Bettie +Cindy +Eddie +Marian +Paulette +Yolanda +Eleanor +Jimmie +Melanie +Ruthie +Sheryl +Esther +Frankie +Freda +Irma +Ola +Pearlie +Priscilla +Eula +Lou +Miriam +Myrtle +Sadie +Stephanie +Terri +Tommie +Cassandra +Diann +Essie +Lydia +Marjorie +Monica +Nettie +Pauline +Sallie +Toni +Ada +Velma +Amelia +Andrea +Arlene +Bonita +Della +Grace +Jeannie +Jennie +Joann +Lucille +Vicky +Celia +Ernestine +Henrietta +Jeanne +Marlene +Penny +Queen +Renee +Viola +Dianna +Jamie +Jewel +Lela +Lizzie +Malinda +Nelda +Nora +Shelley +Agnes +Beth +Cecelia +Freida +Jerry +Lenora +Lessie +Michelle +Rena +Sherrie +Amanda +Cherry +Dolores +Francis +Gay +Gertrude +Jannie +Lola +Nadine +Patty +Rosemary +Sherri +Alicia +Elsie +Estella +Lee +Lila +Nell +Ollie +Candace +Dana +Debora +Etta +Gracie +Jeannette +Joanne +Kathie +Leola +Mitzi +Naomi +Robert +Rosalind +Alberta +Carmen +Charlie +Dale +Elnora +Freddie +Lottie +Shelby +Voncile +Wendy +Addie +Angelia +Antoinette +Carole +Caroline +Cecilia +Erma +Jeanie +Jenny +Lue +Lynne +Marcella +Marilynn +Millie +Ophelia +Peggie +Rosalyn +Alfreda +Clarice +Corine +Dawn +Greta +Jessica +Jill +Joe +Leila +Mable +Marguerite +Maria +Marla +Nita +Opal +Pearl +Sonya +Sybil +Terrie +Ava +Callie +Claire +Delilah +Dinah +Earlene +Edwina +Ester +Imogene +Inez +James +Katrina +Kaye +Kimberly +Laurie +Lawanda +Lorene +Lucile +Lucinda +Marianne +Mollie +Polly +Roxie +Tina +Angie +Celestine +Clementine +Deloise +Doretha +Effie +Eugenia +Francine +Gayla +Jeanetta +Ladonna +Lana +Lelia +Pinkie +Tamara +Verna +Benita +Betsy +Beulah +Blanche +Bobby +Cornelia +Daphne +Deanna +Eileen +Florine +Harriett +Juliette +Kim +Leona +Melva +Molly +Neva +Odell +Ouida +Pat +Rosia +Shannon +Sonja +Starla +Trudy +Wilda +April +Bennie +Bridget +Celeste +Clarissa +Delbra +Delia +Dollie +Donnie +Dovie +Gearldine +Jacquline +Jana +Jerrie +Jewell +Josie +Leigh +Lynette +Maple +Margarett +Marva +Mavis +May +Michele +Myrtis +Nola +Patrica +Rebekah +Reva +Rhoda +Roslyn +Sondra +Tracy +Valeria +Vernice +Willa +Alta +Althea +Aurelia +Bernadette +Beverley +Cherie +Claudette +Colleen +Deborrah +Debrah +Dolly +Dona +Earline +Elois +Evon +Gale +Gaynell +Holly +Iva +Janette +Jaunita +Laurel +Leah +Lolita +Loraine +Louvenia +Mabel +Marietta +Maureen +Nedra +Odessa +Patrice +Pearline +Penelope +Reita +Robyn +Sandy +Sophia +Teressa +Tommy +Verdell +Violet +Vonda +Winifred +Abbie +Alesia +Arlean +Arma +Arnita +Carlene +Charles +Christie +Christina +Christy +Delorise +Denice +Dian +Doretta +Dottie +Easter +Elma +Faith +Fay +Felecia +Felicia +Frieda +Gennie +Gwen +Ila +Inell +Janetta +Jeanine +Jeraldine +Jerri +Jocelyn +Johnetta +Joni +Kathey +Landis +Libby +Lindy +Luann +Luanne +Lucretia +Madonna +Margery +Margo +Maxcine +Merry +Nan +Nannette +Ovetta +Pam +Pattie +Phoebe +Portia +Rene +Robbin +Rowena +Rubye +Sammie +Sharlene +Sherron +Suzan +Vernell +Zelda +Mary +Linda +Deborah +Patricia +Brenda +Debra +Barbara +Sandra +Donna +Shirley +Susan +Kathy +Pamela +Carolyn +Janice +Cynthia +Betty +Wanda +Judy +Sharon +Dorothy +Martha +Rebecca +Elizabeth +Karen +Gloria +Beverly +Nancy +Annie +Teresa +Janet +Margaret +Marilyn +Carol +Joyce +Rita +Sheila +Sherry +Connie +Glenda +Doris +Diane +Peggy +Cathy +Jo +Rhonda +Virginia +Catherine +Sarah +Charlotte +Gwendolyn +Jacqueline +Laura +Phyllis +Alice +Helen +Rose +Vicki +Paula +Patsy +Shelia +Willie +Vickie +Evelyn +Frances +Theresa +Vanessa +Anita +Angela +Cheryl +Denise +Ruby +Bonnie +Ann +Joan +Marsha +Unknown +Christine +Rosie +Edna +Julia +Jennifer +Dianne +Geraldine +Jane +Kathryn +Regina +Sylvia +Juanita +Katherine +Elaine +Sara +Debbie +Gail +Marie +Judith +Lillie +Yvonne +Emma +Vivian +Loretta +Bobbie +Mattie +Ethel +Johnnie +Kathleen +Myra +Annette +Belinda +Jean +Bertha +Jeanette +Jan +Mildred +Bessie +Terry +Marcia +Bernice +Carrie +Melissa +Lisa +Norma +Jacquelyn +Ruth +Emily +Georgia +Sally +Gladys +Louise +Robin +Sue +Clara +Constance +Suzanne +Anna +Minnie +Rosa +Vera +Darlene +Jackie +Lois +Susie +Thelma +Diana +Faye +Margie +Vicky +Ellen +Ida +Kay +Valerie +Ella +Melinda +Delores +Lynn +Rachel +Edith +Eva +Jessie +Bettye +Charlene +Lula +Velma +Veronica +Deloris +Janie +Katie +Reba +Alma +Billie +Audrey +Hattie +Melba +Anne +Hazel +Marian +Lynda +Mamie +Ramona +Earnestine +Joy +Lucy +Nina +Fannie +Ginger +Lillian +Patti +Robbie +Roberta +Julie +June +Marion +Michelle +Terri +Cindy +Claudia +Cora +Dora +Jeanne +Mona +Wilma +Mae +Maxine +Josephine +Stephanie +Daisy +Paulette +Pauline +Eleanor +Janis +Priscilla +Renee +Victoria +Delois +Flora +Jeannie +Jennie +Lydia +Marjorie +Sharron +Bettie +Cassandra +Diann +Irene +Toni +Amy +Beatrice +Carla +Frankie +Geneva +Jenny +Maggie +Nelda +Andrea +Lee +Melanie +Naomi +Becky +Ernestine +Eunice +Jimmie +Sheryl +Amanda +Debora +Mable +Olivia +Patty +Yolanda +Beth +Essie +Iris +Jerry +Joann +Pearlie +Edwina +Florence +Lena +Leslie +Lola +Maria +Rosetta +Ruthie +Celia +Dale +Eloise +Eula +Gayle +Hilda +Lana +Lou +Nora +Sallie +Tommie +Arlene +Esther +Freda +Jill +Lizzie +Lucille +Mitzi +Monica +Nellie +Ollie +Bonita +Freida +Grace +Irma +Joe +Ora +Sherrie +Stella +Addie +Alicia +Amelia +Cherry +Gertrude +Jeannette +Lela +Lynne +Marla +Ola +Rosalyn +Sonja +Alfreda +Carole +Kathie +Kim +Laurie +Leola +Lorene +Rosemary +Shelby +Tina +Verna +Agnes +Alberta +Althea +Callie +Harriet +Holly +Inez +Lenora +Sadie +Sherri +Angelia +Benita +Cecelia +Della +Dianna +Eddie +Elnora +Molly +Nadine +Ada +Dana +Harriett +Henrietta +Kaye +Kimberly +Malinda +Nettie +Penny +Polly +Rosalind +Shannon +Vickey +Dawn +Debrah +Delilah +Donnie +Dorthy +Erma +Etta +Francis +Gay +Gracie +James +Jeanie +Jessica +Lucinda +Miriam +Nita +Queen +Roxanne +Sybil +Teri +Valeria +Viola +Willa +Ava +Carmen +Jamie +Jannie +Jewel +Joni +Karon +Katrina +Leah +Marguerite +Neva +Nona +Pam +Rena +Shelly +Bennie +Candace +Cecilia +Cornelia +Dona +Felecia +Francine +Jayne +Lori +Marlene +Michele +Myrtle +Regenia +Shelley +Teressa +Angie +Caroline +Claire +Colleen +Deloise +Earlene +Elsie +Eugenia +Jana +Janette +Joanne +Josie +Kitty +Laverne +Leigh +Lessie +Lorraine +Lottie +Lynette +Maureen +Opal +Ophelia +Pattie +Penelope +Retha +Rochelle +Ronda +Sheree +Terrie +Trudy +Venita +Wendy +April +Bernita +Betsy +Beulah +Celeste +Cheri +Christy +Claudette +Dollie +Doretha +Evangeline +Gwen +Janell +Lelia +Marcella +Margo +Mavis +May +Nell +Octavia +Odessa +Rhoda +Robbin +Sherrill +Sherron +Tamara +Vernice +Wonda +Augusta +Brinda +Cathrine +Corliss +Daphne +Delphine +Dinah +Dixie +Dottie +Eileen +Eliza +Henry +Imogene +Ivy +Joanie +Joycelyn +Juliette +Karla +Kathey +Lila +Lora +Lucile +Mabel +Madeline +Margret +Marilynn +Marva +Melody +Mollie +Portia +Reta +Robyn +Sandy +Sheri +Sonya +Tanya +Tonya +Violet +Voncile +Vonda +Winnie +Aurelia +Avis +Bette +Brunetta +Candy +Cathie +Celestine +Charlie +Charolette +Clarice +Clementine +Dannie +Debby +Dena +Dolores +Donita +Effie +Elouise +Estella +Evie +Fay +Floretta +Flossie +Gale +Gayla +Gaynell +Gilda +Glinda +Ina +Ingrid +Iva +Jacquline +Jeanetta +Jerri +Joanna +Kathi +Kelly +Kyle +Leona +Letha +Lorine +Louvenia +Luann +Luanne +Lucretia +Marianne +Melva +Pat +Patrice +Pearl +Pinkie +Robert +Rosia +Vernita +Vinnie +Wilda +William +Yvette +Alfredia +Alison +Allie +Arnita +Bernadine +Blanche +Bobby +Bridget +Camilla +Cassie +Cathryn +Charleen +Christie +Christina +Cinda +Cordelia +Corlis +Delia +Delinda +Donald +Earline +Easter +Elois +Faith +Floria +Freddie +Goldie +Gwenda +Hannah +Heather +Hope +Iola +Isabella +Jamelle +Janetta +Jeri +Jewell +John +Lettie +Magnolia +Margarett +Marietta +Maude +Millie +Miranda +Mittie +Myrtis +Nedra +Nila +Pamelia +Peggie +Rachael +Rene +Roxie +Sammie +Sharlene +Sidney +Sondra +Suzan +Syble +Tara +Valarie +Valinda +Vannessa +Vida +Virgie +Mary +Linda +Deborah +Patricia +Debra +Brenda +Barbara +Sandra +Donna +Susan +Cynthia +Pamela +Kathy +Sharon +Shirley +Wanda +Janice +Teresa +Carolyn +Karen +Betty +Martha +Judy +Rebecca +Elizabeth +Dorothy +Gloria +Nancy +Janet +Beverly +Joyce +Carol +Margaret +Annie +Connie +Sheila +Cathy +Marilyn +Jo +Diane +Sherry +Rhonda +Cheryl +Peggy +Rita +Gwendolyn +Anita +Jacqueline +Doris +Shelia +Vickie +Glenda +Phyllis +Charlotte +Sarah +Vicki +Debbie +Catherine +Paula +Virginia +Alice +Theresa +Angela +Helen +Laura +Rose +Belinda +Willie +Regina +Patsy +Ann +Evelyn +Lisa +Ruby +Bonnie +Dianne +Denise +Julia +Unknown +Frances +Jane +Katherine +Yvonne +Marsha +Loretta +Rosie +Vivian +Christine +Sylvia +Jennifer +Emma +Annette +Bobbie +Elaine +Vanessa +Juanita +Edna +Ethel +Joan +Lillie +Jeanette +Kathryn +Mildred +Robin +Judith +Mattie +Melissa +Terry +Jean +Marie +Ruth +Gail +Geraldine +Marcia +Ella +Jackie +Bernice +Bertha +Johnnie +Sara +Constance +Lois +Carrie +Georgia +Susie +Louise +Melinda +Myra +Rosa +Minnie +Audrey +Charlene +Margie +Vera +Anna +Darlene +Diana +Lucy +Thelma +Clara +Sally +Veronica +Jessie +Sue +Lynn +Melanie +Jacquelyn +Priscilla +Cassandra +Hattie +Kathleen +Ramona +Gladys +Delores +Terri +Tina +Bessie +Jan +Joy +Julie +Patti +Valerie +Edith +Vicky +Leslie +Mae +Norma +Amy +Anne +Ellen +June +Kay +Cindy +Delois +Emily +Faye +Katie +Lula +Rachel +Victoria +Alma +Bonita +Claudia +Sheryl +Billie +Deloris +Eva +Janie +Wilma +Reba +Carla +Debora +Hilda +Janis +Lillian +Robbie +Bettye +Earnestine +Fannie +Josephine +Lynda +Nellie +Sharron +Becky +Daisy +Frankie +Geneva +Kim +Roberta +Shelby +Ida +Lee +Amanda +Andrea +Beatrice +Cora +Flora +Suzanne +Toni +Gina +Marian +Marion +Olivia +Paulette +Sabrina +Stephanie +Ginger +Mable +Sadie +Sheree +Celia +Freda +Hazel +Maxine +Patty +Essie +Esther +Lydia +Renee +Stella +Alberta +Gayle +Lucille +Melba +Nina +Yolanda +Irene +Marjorie +Mona +Rosetta +Dawn +Diann +Henrietta +Jeannie +Jennie +Michelle +Nadine +Ora +Pearlie +Polly +Sherrie +Amelia +Cecelia +Eleanor +Maggie +Dora +Jeanne +Jimmie +Laurie +Lizzie +Lorraine +Miriam +Sallie +Dale +Eloise +Grace +Lena +Lola +Mamie +Monica +Rena +Velma +Bettie +Elsie +Eugenia +Irma +Leigh +Sonja +Vickey +Alicia +Dana +Florence +Jenny +Kimberly +Lynne +Rosalind +Roxanne +Ruthie +Sherri +Angie +Callie +Eula +Holly +Iris +James +Jamie +Jannie +Joann +Lou +Nita +Rosalyn +Angelia +Beth +Harriet +Jill +Malinda +Nelda +Queen +Ada +Carmen +Cecilia +Cherry +Dianna +Ernestine +Freida +Inez +Jerri +Lorene +Marcella +Maria +Pauline +Rosemary +Tommie +Arlene +Dolores +Eunice +Gracie +Jessica +Joni +Laverne +Mitzi +Nora +Ollie +Terrie +Viola +Dixie +Earlene +Freddie +Jeannette +Kathie +Tanya +Yvette +Alfreda +Althea +Benita +Bennie +Caroline +Debby +Donnie +Elnora +Gertrude +Joanne +Jocelyn +Lana +Lenora +Marlene +Maureen +Melody +Millie +Ola +Penny +Ronda +Sybil +Verna +Bernadette +Clarice +Daphne +Della +Dinah +Etta +Gayla +Gwen +Jacquline +Jeri +Jerrie +Jewel +Karla +Kaye +Lucile +Marla +Michele +Myrtle +Sandy +Sheri +Voncile +Addie +Ava +Blanche +Bridget +Delilah +Deloise +Dorthy +Eartha +Eddie +Erma +Felicia +Francis +Glinda +Joanna +Juliette +Katrina +Leah +Lori +Regenia +Roxie +Shannon +Sonya +Wendy +Candace +Cathey +Claire +Claudette +Dona +Dorothea +Effie +Estella +Gay +Greta +Jayne +Jerry +Joe +Joycelyn +Karon +Kitty +Lela +Lilly +Lucinda +Lue +Mickey +Naomi +Pam +Patrice +Teri +Alfredia +Angeline +April +Beulah +Cathie +Christie +Christina +Colleen +Cornelia +Darla +Edwina +Imogene +Jeanie +Jewell +Lauren +Lora +Lorine +Lottie +Nettie +Odessa +Opal +Rebekah +Renita +Robert +Sheilah +Shelly +Teressa +Valencia +Willa +Abbie +Adell +Agnes +Carole +Celeste +Celestine +Charles +Christy +Danita +Dee +Earline +Eliza +Floria +Francine +Fredia +Frieda +Gussie +Jana +Joanie +Kerry +Leila +Leona +Libby +Lucretia +Mabel +Merita +Portia +Robbin +Saundra +Sophia +Tonia +Valarie +Verdell +Winifred +Adrienne +Alecia +Aletha +Angelyn +Annetta +Charlie +Clarissa +Clementine +Crystal +Debrah +Delbra +Dina +Dollie +Donald +Doretha +Dorris +Dottie +Eileen +Elise +Elois +Elvira +Eve +Faith +Felecia +Florine +Iva +Ivy +John +Kathi +Lea +Lessie +Letha +Lynette +Margo +Marguerite +Marva +Mavis +Ophelia +Pat +Patrica +Pearl +Peggie +Penelope +Princess +Retha +Roslyn +Scarlett +Selena +Sheliah +Shelley +Sondra +Tamara +Tracy +Valeria +Vanassa +Vernell +Vernita +Zelda +Arlinda +Arnetta +Augustine +Avis +Barbra +Belva +Bethany +Betsy +Camilla +Carlene +Cheri +Cheryll +Corliss +Debroah +Earlean +Elna +Elouise +Gale +Harriett +Harriette +Hellen +Hope +Idella +Ina +Ira +Janelle +Janette +Janna +Jaunita +Johnny +Kathey +Kattie +Lanita +Larry +Laurel +Leanne +Lelia +Lesa +Lettie +Lonnie +Loraine +Lorena +Madeline +Malia +Maple +Marianne +Marietta +Marilynn +Matilda +Melva +Merle +Michael +Mickie +Mittie +Mollie +Molly +Nanci +Nedra +Nell +Odell +Phillis +Phoebe +Pinkie +Rachael +Randy +Reta +Rhoda +Richard +Robyn +Ronald +Ronnie +Rosia +Sheron +Shirlene +Suzette +Tonya +Trudy +Twyla +Valorie +Vikki +Vonda +Winnie +Yolande +Zenobia +Mary +Deborah +Linda +Debra +Patricia +Brenda +Sharon +Barbara +Donna +Cynthia +Pamela +Kathy +Sandra +Karen +Susan +Teresa +Shirley +Janice +Wanda +Carolyn +Betty +Gloria +Rebecca +Dorothy +Carol +Martha +Nancy +Elizabeth +Janet +Cathy +Judy +Rhonda +Beverly +Margaret +Sherry +Sheila +Annie +Cheryl +Joyce +Connie +Diane +Shelia +Debbie +Marilyn +Peggy +Rita +Jacqueline +Catherine +Vickie +Angela +Jo +Vicki +Doris +Glenda +Anita +Phyllis +Sarah +Virginia +Gwendolyn +Theresa +Charlotte +Lisa +Laura +Paula +Helen +Jennifer +Denise +Alice +Ruby +Rose +Frances +Robin +Ann +Evelyn +Katherine +Willie +Bonnie +Patsy +Belinda +Juanita +Kathryn +Christine +Cindy +Regina +Sylvia +Julia +Annette +Rosie +Vanessa +Jane +Emma +Loretta +Vivian +Darlene +Mattie +Tina +Dianne +Edna +Geraldine +Yvonne +Joan +Terri +Unknown +Mildred +Melissa +Bobbie +Terry +Ethel +Marsha +Ruth +Judith +Elaine +Gail +Jean +Jeanette +Lynn +Sara +Lillie +Melanie +Julie +Kim +Marie +Jackie +Carrie +Ellen +Audrey +Kathleen +Melinda +Marcia +Margie +Yolanda +Myra +Bernice +Diana +Johnnie +Veronica +Clara +Jan +Sheryl +Anna +Becky +Delores +Valerie +Norma +Amy +Bertha +Jessie +Lois +Rosa +Susie +Vicky +Victoria +Patti +Stephanie +Vera +Wilma +Ella +Eva +Jacquelyn +Janis +Kay +Sally +Charlene +Hazel +Ida +Joy +Katie +Rachel +Thelma +Constance +Georgia +Minnie +Nina +Reba +Sue +Carla +Louise +Ramona +Toni +Cassandra +Fannie +Janie +Dana +Emily +Gina +Ginger +June +Lillian +Lucy +Paulette +Anne +Faye +Kimberly +Lee +Renee +Sharron +Sherri +Suzanne +Amanda +Leslie +Marion +Sherrie +Edith +Frankie +Priscilla +Billie +Gladys +Hattie +Alma +Sheree +Henrietta +Patty +Diann +Jeannie +Laurie +Bessie +Bettye +Cora +Deloris +Dora +Earnestine +Jeanne +Joann +Robbie +Eunice +Leigh +Maxine +Mona +Velma +Carmen +Iris +Lula +Maggie +Mamie +Beatrice +Beth +Debora +Eleanor +Josephine +Lynne +Stella +Cecelia +Freda +Geneva +Arlene +Bonita +Cecilia +Leah +Lou +Lydia +Michelle +Sabrina +Andrea +Claudia +Ernestine +Grace +Hilda +Lucille +Monica +Nellie +Pearlie +Roberta +Teri +Amelia +Daisy +Dianna +Flora +Katrina +Lena +Penny +Queen +Sheri +Sonya +Vickey +Esther +Freddie +Mae +Marian +Pauline +Terrie +Tommie +Wendy +Alfreda +Althea +Angie +Bettie +Dawn +Delois +Eloise +Freida +Lynda +Melody +Ollie +Pam +Rosemary +Rosetta +Viola +Alberta +Dale +Essie +Gayle +Harriet +Jenny +Lola +Nita +Nora +Roxanne +Cornelia +Maria +Marla +Melba +Shelby +Cherry +Della +Felicia +Irma +Jannie +Joanne +Kathie +Lorene +Nelda +Ola +Olivia +Rosalyn +Sonja +Tanya +Agnes +Angelia +Benita +Celia +Debrah +Eula +Irene +Jamie +Jill +Lizzie +Mable +Malinda +Mitzi +Phillis +Addie +Dollie +Eddie +Erma +Holly +Jimmie +Joni +Karon +Lenora +Miriam +Robyn +Sallie +Sandy +Shannon +Alicia +Antoinette +Avis +Carole +Dinah +Earlene +Elsie +Florence +Jeanie +Jeannette +Lela +Lori +Ora +Pearl +Peggie +Polly +Sadie +Winifred +Yvette +Charlie +Christy +Corliss +Deloise +Gayla +Gracie +Gwen +Ivy +Jennie +Jewel +Joe +Joycelyn +Kathrine +Leona +Marjorie +Molly +Nadine +Naomi +Regenia +Rena +Valeria +Violet +Bernadette +Candace +Caroline +Dottie +Jana +Jerri +Karla +Kelly +Lana +Leesa +Lorraine +Ruthie +Valarie +Voncile +Allison +Blanche +Celestine +Charles +Cherrie +Claudette +Desiree +Doreen +Fay +Felecia +Gertrude +Jeri +Lelia +Lucinda +Myrtle +Odessa +Ronda +Rosalind +Shelley +Sonia +Sybil +Teressa +Tracy +Vernita +Ada +Adrienne +Callie +Claire +Debby +Delphine +Dixie +Earline +Edwina +Elise +Elouise +Fredia +James +Josie +Leola +Letha +Madeline +Millie +Natalie +Nettie +Reta +Roslyn +Sondra +Starla +Teena +Trudy +Alisa +Autherine +Ava +Bethany +Beulah +Bridget +Cherie +Clarissa +Darla +Deanna +Dena +Dessie +Eugenia +Faith +Francine +Gale +Imogene +Jeanetta +Kaye +Kitty +Lavern +Lynette +Marcella +Marlene +Michael +Michele +Penelope +Portia +Rosia +Teresia +Verna +Vikki +Wilda +Zelda +Christina +Dolores +Donnie +Eartha +Gay +Gearldine +Glinda +Greta +Janette +Jessica +Jewell +Karan +Laurel +Laverne +Lea +Lessie +Lila +Lucile +Nona +Ophelia +Pat +Patrica +Patrice +Robbin +Scarlett +Shawn +Valencia +April +Arthurine +Bennie +Betsy +Bobby +Brinda +Carlene +Cathryn +Chandra +Colleen +Corine +Crystal +Deirdre +Denice +Dennis +Dolly +Dona +Dorthy +Elois +Estella +Glynis +Gwenda +Harriett +Hope +Inez +Iva +Jacquline +Jayne +Jerrie +Jerry +Jocelyn +Juliette +Katharine +Kerry +Ladonna +Lesa +Libby +Lorna +Luanne +Margret +Marilynn +Mavis +Merita +Merry +Mollie +Nan +Pinkie +Rebekah +Robert +Selina +Sheron +Suzette +Tena +Tonya +Trina +Vanda +Virgie +Wonda +Abbie +Alesia +Arnita +Beverley +Brenetta +Bridgett +Candy +Cassie +Charletta +Cheri +Chris +Danette +Daphne +David +Deana +Debbra +Debroah +Delane +Donita +Doretha +Dorinda +Dorris +Drucilla +Eileen +Ester +Etta +Francis +Gaynell +George +Gilda +Glenna +Ivory +Jacqulyn +Jannette +Jeana +Jeannine +Joanie +Joanna +Jody +John +Katheryn +Kristi +Larry +Latanya +Lauren +Lawana +Lawanda +Leila +Letitia +Lora +Luann +Lue +Luvenia +Lyn +Madelyn +Marva +Matilda +Melisa +Melvin +Mickie +Muriel +Myrna +Nell +Opal +Pamelia +Reita +Renita +Richard +Saundra +Sharion +Sheilah +Sherree +Sherrell +Sherrill +Sherron +Sophia +Suzan +Tara +Valorie +Velda +Venita +Vernell +Mary +Linda +Debra +Deborah +Brenda +Cynthia +Patricia +Donna +Sharon +Kathy +Susan +Sandra +Karen +Pamela +Barbara +Teresa +Wanda +Janice +Shirley +Carolyn +Cathy +Betty +Gloria +Sheila +Rebecca +Cheryl +Carol +Debbie +Dorothy +Nancy +Judy +Rhonda +Elizabeth +Martha +Beverly +Sherry +Connie +Janet +Vickie +Annie +Lisa +Shelia +Cindy +Margaret +Rita +Angela +Diane +Vicki +Anita +Virginia +Phyllis +Gwendolyn +Glenda +Joyce +Paula +Jo +Theresa +Charlotte +Marilyn +Jacqueline +Laura +Peggy +Catherine +Robin +Doris +Darlene +Denise +Regina +Jennifer +Julia +Belinda +Annette +Terri +Kathryn +Rose +Sarah +Christine +Alice +Frances +Sylvia +Evelyn +Katherine +Bonnie +Vanessa +Ann +Helen +Loretta +Patsy +Jane +Melissa +Tina +Willie +Dianne +Julie +Ruby +Emma +Kim +Vivian +Becky +Bobbie +Valerie +Jackie +Juanita +Yvonne +Gail +Sara +Myra +Terry +Jan +Geraldine +Marie +Rosie +Leslie +Lillie +Joan +Ruth +Tammy +Elaine +Melinda +Pam +Melanie +Mattie +Veronica +Kimberly +Vera +Audrey +Diana +Carla +Cassandra +Lynn +Stephanie +Marcia +Joy +Mildred +Anna +Jean +Yolanda +Bernice +Edna +Bertha +Ethel +Kay +Norma +Susie +Clara +Jeanette +Johnnie +Patti +Vicky +Carrie +Ellen +Kathleen +Rosa +Lois +Louise +Georgia +Judith +Marsha +Ramona +Sheryl +Amy +Gladys +Josephine +Lee +Margie +Sally +Ginger +Victoria +Bessie +Priscilla +Dana +Jessie +Joann +Sherri +Edith +Ella +Rachel +Wilma +Faye +Ida +Sue +Charlene +Mona +Delores +Jacquelyn +Lynda +Toni +Constance +Deloris +Earnestine +Emily +Eva +Lillian +Lucy +Robbie +Rosemary +Amanda +Andrea +Anne +Billie +Monica +Reba +Debora +Gina +Hattie +Janie +Jeannie +Lenora +Thelma +Carmen +Patty +Bonita +Delois +Fannie +Hazel +Marjorie +Sherrie +Suzanne +Geneva +Marion +Minnie +Sharron +Unknown +Wendy +Alma +Cora +June +Marian +Sabrina +Amelia +Michelle +Beth +Felecia +Felicia +Grace +Melody +Nina +Penny +Renee +Daisy +Diann +Jeanne +Leigh +Nellie +Sallie +Sonya +Angie +Dawn +Esther +Frankie +Jamie +Lorraine +Malinda +Paulette +Tanya +Velma +Angelia +Eleanor +Flora +Natalie +Roberta +Terrie +Cherry +Irene +Iris +Kelly +Mae +Pearlie +Sandy +Dora +Jenny +Katie +Maria +Maxine +Melba +Rosalyn +Dianna +Gayle +Lucille +Maggie +Pauline +Arlene +Bettye +Cecilia +Gracie +Harriet +Lou +Ollie +Queen +Tommie +Alberta +Della +Erma +Eunice +Jennie +Jerri +Joanne +Katrina +Laverne +Lynne +Mamie +Marianne +Nelda +Bettie +Celia +Freda +Janis +Jill +Laurie +Lola +Tracy +Verna +Alicia +Carole +Eloise +Ernestine +Eula +Gwen +Henrietta +Hilda +Janette +Lula +Lydia +Mitzi +Nettie +Robyn +Rosetta +Sonja +Agnes +Alfreda +Dale +Freida +Jannie +Jerry +Joni +Karla +Leah +Lena +Lori +Lucinda +Naomi +Rena +Tammie +Tonya +Vickey +Viola +Delilah +Jayne +Lila +Marilynn +Ora +Pat +Sheri +Ada +Beatrice +Betsy +Blanche +Claudia +Eddie +Etta +Gale +Ivy +Lesa +Lorene +Nita +Sadie +Shelby +Caroline +Christy +Crystal +Denice +Dinah +Dolores +Florence +Holly +Joanie +Lizzie +Myrtle +Olivia +Pearl +Polly +Ruthie +Shannon +Stella +Tena +Teri +Willa +Addie +Avis +Cecelia +Christina +Corine +Cornelia +Dixie +Elsie +Eugenia +Gertrude +Glinda +James +Jewel +John +Kathie +Leona +Michele +Miriam +Nora +Renita +Rosalind +Sheree +Sonia +Callie +Cherie +Debby +Dollie +Dorthy +Earlene +Francine +Gayla +Joe +Josie +Lela +Leola +Marcella +Marlene +Mollie +Molly +Nadine +Ophelia +Portia +Robbin +Ronda +Sybil +Teresia +Yvette +Alisa +Ava +Bennie +Bernadine +Bobby +Danita +Darla +Evonne +Ina +Jeannette +Jimmie +Karon +Kathi +Ladonna +Leisa +Lelia +Libby +Maureen +Millie +Nan +Rene +Saundra +Shelly +Sheron +Violet +Adrienne +Antoinette +Benita +Candy +Cassie +Chris +Christie +Clarice +Debrah +Donnie +Doretha +Eliza +Essie +Francis +Freddie +George +Glendora +Harriett +Jacquline +Jerrie +Jessica +Joycelyn +Juliet +Larry +Latanya +Lora +Lorna +Lucile +Marla +May +Nanette +Peggie +Penelope +Regenia +Rhoda +Roslyn +Roxanne +Shelley +Stacy +Tamara +Tara +Teressa +Trudy +Valencia +Althea +April +Bernadette +Bethany +Beverley +Candace +Caren +Celeste +Chandra +Charlie +Clarissa +Clementine +Colleen +Darleen +Deloise +Delphine +Dena +Earline +Edwina +Eileen +Estella +Faith +Fran +Irma +Jody +Juliette +Kaye +Lana +Larita +Lawanda +Lesia +Letha +Letitia +Louella +Muriel +Octavia +Ola +Patrice +Robert +Rosia +Tami +Tracie +Valarie +Valeria +Abbie +Annetta +Arnetta +Camille +Cheri +Cherri +Chiquita +Cindi +Daphne +Dee +Delinda +Delorise +Desiree +Dona +Donald +Dorothea +Dottie +Elois +Harriette +Inez +Iola +Jana +Janelle +Jeanie +Jeri +Jocelyn +Katheryn +Lea +Leila +Loretha +Lorine +Mandy +Margo +Marietta +Marva +Mavis +Meredith +Myrna +Nena +Ouida +Pamala +Rebekah +Reta +Shawn +Sherree +Starla +Voncile +Abigail +Aletha +Alyce +Angelyn +Beryl +Bridget +Camellia +Cathrine +Celestine +Christa +Chrystal +Claire +Claudette +Cordelia +Curtis +Danna +Darnell +Deanna +Debroah +Deena +Delane +Dell +Denese +Dina +Doreen +Drusilla +Eartha +Elnora +Gary +Gay +Gussie +Gwenevere +Irish +Jeanna +Joanna +Johnetta +Karan +Karol +Laurel +Lauren +Leanne +Leesa +Lottie +Lovetta +Lue +Lyn +Mabel +Madelyn +Marisa +Miranda +Nannette +Neva +Odessa +Pauletta +Phillis +Phoebe +Regena +Retha +Rochelle +Roxie +Shari +Susanne +Suzan +Traci +Trina +Vinnie +Wilhelmina +William +Winona +Zelma +Mary +Linda +Debra +Cynthia +Patricia +Deborah +Brenda +Donna +Susan +Kathy +Pamela +Barbara +Sandra +Sharon +Karen +Teresa +Janice +Wanda +Lisa +Cheryl +Carolyn +Shirley +Debbie +Cathy +Judy +Elizabeth +Betty +Carol +Nancy +Rebecca +Sheila +Rhonda +Martha +Angela +Gloria +Janet +Sherry +Cindy +Peggy +Vickie +Beverly +Anita +Dorothy +Shelia +Connie +Joyce +Laura +Margaret +Annie +Vicki +Phyllis +Tammy +Rita +Theresa +Denise +Diane +Belinda +Regina +Julie +Glenda +Annette +Terri +Darlene +Vanessa +Paula +Charlotte +Doris +Jacqueline +Virginia +Catherine +Rose +Marilyn +Robin +Gwendolyn +Jo +Jennifer +Sarah +Tina +Melissa +Alice +Myra +Loretta +Valerie +Frances +Julia +Sylvia +Bonnie +Helen +Kathryn +Ruby +Katherine +Willie +Becky +Christine +Kim +Jackie +Evelyn +Patsy +Vivian +Ann +Kimberly +Yvonne +Melinda +Rosie +Anna +Dianne +Kay +Terry +Bobbie +Pam +Stephanie +Yolanda +Emma +Jane +Vicky +Melanie +Amy +Clara +Juanita +Lynn +Marie +Veronica +Elaine +Gail +Joan +Leslie +Mattie +Cassandra +Jan +Judith +Edna +Bertha +Gina +Ethel +Kelly +Marsha +Beth +Carla +Lillie +Patti +Ginger +Victoria +Diana +Kathleen +Sally +Suzanne +Carrie +Margie +Ruth +Mildred +Sara +Toni +Bernice +Eva +Norma +Vera +Hazel +Marcia +Penny +Priscilla +Robbie +Thelma +Anne +Audrey +Emily +Jacquelyn +Sherri +Sheryl +Delores +Jeanette +Marion +Ramona +Debora +Ella +Geraldine +Joann +Lori +Constance +Joy +Michelle +Minnie +Dawn +Georgia +Johnnie +Josephine +Susie +Charlene +Edith +Rosa +Jean +Ellen +Lillian +Monica +Sabrina +Rachel +Amanda +Andrea +Alfreda +Ida +Jessie +Jill +Mona +Reba +Bessie +Janie +Maxine +Renee +Billie +Lee +Lois +Bonita +Dana +Laurie +Lynda +Nina +Deloris +Gladys +Jeannie +Louise +Sue +Irene +Lula +Patty +Sherrie +Wendy +Angie +Fannie +Katrina +Melody +Olivia +Tanya +Jenny +Leigh +Michele +Tammie +Terrie +Angelia +Daisy +Dianna +Dora +Flora +Lorraine +Lucy +Marian +Sandy +Tamara +Jamie +Lucille +Earnestine +Hattie +Joanne +Lydia +Rosemary +Beatrice +Frankie +Benita +Carmen +Claudia +Freda +Iris +Janis +Jeanne +Katie +Mitzi +Natalie +Renita +Sharron +Unknown +Velma +Felecia +Holly +Lola +Lynne +Malinda +Mamie +Maria +Paulette +Sonya +Wilma +Alisa +Celia +Crystal +Diann +Essie +Faye +Henrietta +Jennie +Jessica +Leah +Leisa +Naomi +Nita +Pearlie +Teri +Alma +Arlene +Betsy +Bettie +Cora +Della +Gayle +Joni +Kelley +Maggie +Marjorie +Pauline +Robyn +Stella +Agnes +Amelia +Cecilia +Delois +Delphine +Felicia +Jimmie +Mae +Nelda +Roberta +Roxanne +Shannon +Vickey +Addie +Allison +Bridget +Cheri +Christy +Daphne +Geneva +Grace +Joanna +June +Lela +Lenora +Lou +Miriam +Patrice +Rosalyn +Sondra +Tonya +Verna +Candace +Carole +Caroline +Cecelia +Dixie +Lana +Lesa +Nora +Rosetta +Sallie +Sheree +Alicia +Cherry +Claudette +Eddie +Jeannette +Karla +Lena +Melba +Rosalind +Shelby +Tami +Tommie +Valarie +Viola +Alberta +Althea +Bettye +Ernestine +Eula +Eunice +Freddie +Jana +Jannie +Kitty +Marlene +Nellie +Nettie +Pat +Rena +Selena +Sonja +April +Chandra +Dinah +Dorthy +Earline +Florence +Gale +Harriet +Jerry +Karon +Laverne +Marcella +Polly +Sybil +Valencia +Winifred +Bernadette +Celeste +Eleanor +Eloise +Freida +Glinda +Hilda +Ivy +Jerri +Jewel +Kathi +Leesa +Lucinda +Lynette +Marianne +Ollie +Portia +Starla +Tamela +Teressa +Alison +Avis +Bobby +Charles +Debrah +Donnie +Esther +Eugenia +Frieda +Gracie +Harriett +Irma +Jacquline +Jerrie +Joe +Lelia +Lucretia +Myrtle +Odessa +Ophelia +Queen +Sadie +Saundra +Teresia +Tracy +Vikki +Ada +Bernadine +Callie +Charlie +Cherie +Chris +Claire +Colleen +Danita +Debby +Earlene +Elisabeth +Elsie +Greta +Gwen +James +Jeanie +Kathie +Lea +Leona +Mable +Marla +Miranda +Molly +Ora +Renae +Retha +Stacy +Suzan +Tena +Valeria +Vernell +Violet +Yvette +Antoinette +Corine +Dale +Deanna +Deloise +Dena +Dolores +Elnora +Fay +Gay +Gertrude +Joycelyn +Kellie +Lawanda +Letha +Libby +Lora +Lorine +Nadine +Pattie +Regenia +Roslyn +Ruthie +Sheena +Shelley +Shelly +Sheri +Sonia +Sophia +Tonia +Voncile +Alfredia +Andretta +Bennie +Beverley +Camellia +Camille +Cathryn +Christina +Delia +Denice +Edwina +Effie +Eliza +Erma +Estella +Heidi +Inez +Ingrid +Janette +Jeri +Kerry +Ladonna +Lesia +Lessie +Lizzie +Lucile +Madeline +Maureen +Michael +Mollie +Pamelia +Rene +Rhoda +Rochelle +Sheron +Teena +Tonie +Tracey +Venita +Alyce +Bettina +Candy +Cathleen +Cindi +Clarissa +Cornelia +Deana +Easter +Elisa +Erin +Etta +Fran +George +Gertha +Ina +Iva +Jayne +Jeanetta +Jeanine +Jolene +Karin +Kaye +Leola +Lila +Liz +Lorene +Margo +Marilynn +Mavis +Mickey +Micki +Millie +Mittie +Nanette +Neva +Nona +Ouida +Ovetta +Paige +Peggie +Penelope +Ronda +Sherron +Stacey +Suzette +Tamra +Tommy +Trina +Trudy +Valorie +Zelda +Adrienne +Alecia +Aletha +Allie +Annetta +Ava +Bambi +Barbra +Bernita +Bethany +Bobbi +Bridgett +Bridgette +Caron +Christie +Clarice +Danette +Darleen +Debroah +Dewanda +Dian +Dona +Donald +Doreen +Dorene +Drucilla +Edward +Elouise +Era +Evangeline +Eve +Faith +Gena +Gerri +Glory +Jodi +Josie +Karan +Kelli +Kristi +Kristina +Larry +Leila +Lenita +Lottie +Luanne +Mabel +Malissa +Marva +Melisa +Merry +Myrna +Nannette +Nena +Patrica +Princess +Rebekah +Reva +Robbin +Roselyn +Rosemarie +Roxie +Sammie +Sheilah +Sherlene +Sherree +Suzy +Tamera +Therese +Tricia +Twila +Wendolyn +Willa +Winnie +Wonda +Mary +Donna +Linda +Cynthia +Debra +Patricia +Brenda +Deborah +Sandra +Pamela +Teresa +Kathy +Sharon +Susan +Karen +Lisa +Barbara +Wanda +Debbie +Janice +Carolyn +Tammy +Cheryl +Elizabeth +Betty +Angela +Beverly +Shirley +Nancy +Carol +Sheila +Cindy +Rhonda +Janet +Rebecca +Judy +Martha +Cathy +Dorothy +Gloria +Connie +Margaret +Sherry +Shelia +Diane +Annie +Vickie +Laura +Anita +Joyce +Glenda +Phyllis +Terri +Peggy +Vanessa +Charlotte +Catherine +Robin +Denise +Gwendolyn +Theresa +Jacqueline +Rita +Doris +Tina +Annette +Kimberly +Sarah +Vicki +Paula +Julie +Kim +Melissa +Regina +Valerie +Belinda +Jennifer +Virginia +Alice +Jo +Darlene +Loretta +Marilyn +Julia +Helen +Frances +Sylvia +Evelyn +Katherine +Rose +Stephanie +Ruby +Becky +Kathryn +Vivian +Ann +Jackie +Christine +Melanie +Patsy +Dianne +Pam +Terry +Amy +Kelly +Bonnie +Yolanda +Anna +Carrie +Myra +Jane +Rosie +Veronica +Elaine +Juanita +Cassandra +Melinda +Lynn +Joy +Beth +Jeanette +Marie +Audrey +Yvonne +Ellen +Edna +Vicky +Bobbie +Carla +Jan +Lillie +Sara +Gina +Marcia +Emma +Lori +Willie +Ruth +Diana +Joan +Marsha +Judith +Mattie +Mildred +Gail +Kathleen +Leslie +Ramona +Jean +Minnie +Patti +Toni +Ella +Rosa +Andrea +Clara +Monica +Suzanne +Charlene +Sherri +Sonya +Wendy +Dawn +Victoria +Georgia +Johnnie +Lois +Louise +Michelle +Penny +Renee +Susie +Dana +Edith +Eva +Kay +Sally +Sandy +Tammie +Anne +Ida +Joann +Lee +Norma +Thelma +Vera +Emily +Geraldine +Jacquelyn +Jessie +Lillian +Lynda +Mona +Amanda +Leigh +Sheryl +Bertha +Ethel +Priscilla +Laurie +Angelia +Bernice +Felicia +Jenny +Sharron +Tracy +Benita +Debora +Ginger +Hazel +Jamie +Nina +Bessie +Cecilia +Rachel +Bonita +Gladys +Lula +Robbie +Sabrina +Wilma +Delores +Janie +Jeannie +Leisa +Maria +Patty +Tanya +Carmen +Constance +Tamara +Tami +Vickey +Daisy +Earnestine +Hattie +Josephine +Alicia +Delois +Deloris +Dora +June +Karla +Sonja +Sue +Angie +Katie +Katrina +Lucille +Lydia +Maxine +Rosemary +Alfreda +Dianna +Geneva +Jeanne +Jeannette +Lorraine +Lucy +Melody +Amelia +Billie +Cheri +Gayle +Jerri +Michele +Reba +Tonya +Allison +Bernadette +Bettie +Caroline +Esther +Faye +Gwen +Jill +Joanne +Leah +Lena +Marian +Marion +Sherrie +Tracey +Yvette +Alma +Eunice +Francine +Mamie +Marjorie +Natalie +Olivia +Rosalind +Velma +Cora +Deanna +Eloise +Freda +Lola +Nora +Sheree +Teri +Terrie +Viola +Eleanor +Irene +Iris +Margie +Stella +Valeria +Arlene +Flora +Harriet +Lenora +Maggie +Mitzi +Shelby +Beatrice +Cherry +Deloise +Diann +Freida +Holly +Joni +Kelley +Lana +Malinda +Melba +Cecelia +Dena +Grace +James +Jennie +Lynne +Pearlie +Roberta +Rosetta +Sallie +Shannon +Sheri +Valarie +Alberta +Bettye +Crystal +Della +Fannie +Felecia +Henrietta +Lela +Lou +Nettie +Pat +Paulette +Shari +Ada +Antoinette +Bridget +Christy +Claudia +Elisa +Eula +Gay +Jannie +Jerry +Jimmie +Ladonna +Lila +Lizzie +Ora +Pauline +Polly +Betsy +Carole +Darla +Dinah +Essie +Hilda +Joanna +Leila +Lynette +Mavis +Nita +Queen +Robyn +Sonia +Suzan +Vernell +Alisa +April +Candace +Dale +Doretha +Eileen +Ernestine +Frankie +Irma +Janette +Janis +Jeanie +Kellie +Kitty +Lea +Mae +Marianne +Ola +Rena +Rosalyn +Ruthie +Selena +Stacy +Suzette +Trina +Unknown +Valencia +Alison +Charlie +Clarissa +Claudette +Colleen +Danita +Debby +Debrah +Dixie +Dolores +Dorthy +Earlene +Eddie +Florence +Gracie +Jeri +Jewel +Karan +Katharine +Lesa +Lorrie +Marcella +Miriam +Mollie +Myrtle +Nanette +Naomi +Nellie +Patrice +Rene +Ronda +Teressa +Tommie +Abigail +Addie +Allyson +Althea +Brigitte +Celia +Charles +Christina +Daphne +Earline +Edwina +Estella +Faith +Gena +Gertrude +Glinda +Jeanine +Jerrie +Lauren +Leesa +Lessie +Lora +Lucinda +Lucretia +Mable +Marlene +Mittie +Pattie +Regenia +Reta +Shelley +Sondra +Tamela +Tena +Violet +Winifred +Alesia +Annetta +Arleen +Ava +Blanche +Bobby +Callie +Camille +Candy +Christi +Delphine +Gale +Gussie +Ivy +Jana +Jody +Joe +Leola +Libby +Lorene +Madeline +Marguerite +Marla +Marva +Melisa +Merry +Nelda +Penelope +Regena +Renita +Roslyn +Tara +Tawana +Verna +Vonda +Alfredia +Bridgette +Casandra +Deana +Elnora +Erin +Evonne +Francis +Freddie +Gigi +Greta +Gwenda +Imogene +Inez +Jacquline +Jayne +Jeanetta +Jessica +Kathi +Kerry +Kimberley +Larry +Lauri +Laverne +Leanne +Letha +Marietta +Millie +Nadine +Nannette +Octavia +Pamala +Renae +Rhoda +Robert +Rochelle +Sheena +Sheron +Teena +Thresa +Adrienne +Barbra +Bernadine +Celeste +Celestine +Chandra +Chris +Christie +Claire +Cornelia +Denice +Desiree +Donald +Donita +Erma +Etta +Eugenia +Fran +Gayla +Glory +Gretchen +Harriett +Heidi +Iva +Jacquelin +Jodi +Juliette +Kathie +Lauretta +Lesia +Luann +Madelyn +Margarette +Maureen +May +Miranda +Nena +Odessa +Ollie +Patrica +Pearl +Phillis +Remona +Robbin +Ronnie +Roxanne +Roxie +Sadie +Saundra +Sheilah +Sherryl +Sophia +Sydney +Tamie +Trudy +Voncile +Willa +Abbie +Agatha +Agnes +Andra +Angeline +Beulah +Beverley +Bridgett +Carroll +Cathrine +Charolette +Clarice +Coleen +Corine +Debi +Delinda +Dian +Donnie +Doreen +Dorothea +Dottie +Effie +Elsie +Evie +Gilda +Gretta +Ilene +Ina +Ira +Jewell +Johnetta +Judi +Karon +Katheryn +Kendra +Lawana +Lelia +Loraine +Luanne +Lucile +Mechelle +Michael +Molly +Myrtis +Nell +Phoebe +Pinkie +Rebekah +Renea +Selina +Shellie +Sybil +Tammi +Tamra +Therese +Theresia +Tressa +Venessa +Vernita +Yolande +Mary +Donna +Linda +Cynthia +Brenda +Patricia +Lisa +Debra +Teresa +Pamela +Sandra +Sharon +Deborah +Susan +Karen +Barbara +Kathy +Angela +Wanda +Elizabeth +Debbie +Carolyn +Janice +Rhonda +Tammy +Cheryl +Carol +Sheila +Sherry +Gloria +Janet +Cindy +Shirley +Nancy +Betty +Rebecca +Beverly +Cathy +Laura +Martha +Regina +Anita +Shelia +Margaret +Dorothy +Annie +Kimberly +Terri +Judy +Tina +Vanessa +Vickie +Phyllis +Charlotte +Connie +Joyce +Jacqueline +Melissa +Rita +Diane +Sarah +Vicki +Glenda +Robin +Denise +Annette +Kim +Paula +Jennifer +Belinda +Theresa +Peggy +Julie +Catherine +Gwendolyn +Valerie +Loretta +Doris +Virginia +Darlene +Alice +Melanie +Stephanie +Marilyn +Helen +Becky +Frances +Tracy +Anna +Julia +Katherine +Kelly +Willie +Lori +Ruby +Bonnie +Jo +Pam +Christine +Rose +Amy +Vivian +Cassandra +Jackie +Myra +Melinda +Sonya +Yolanda +Kathryn +Evelyn +Ann +Juanita +Wendy +Sylvia +Yvonne +Veronica +Gail +Gina +Leslie +Penny +Dana +Felicia +Terry +Vicky +Dianne +Carla +Elaine +Laurie +Ruth +Jan +Jane +Lynn +Michelle +Patsy +Renee +Toni +Ellen +Monica +Rosie +Ethel +Jeanette +Joy +Patti +Rosa +Suzanne +Beth +Diana +Judith +Mattie +Tammie +Audrey +Edna +Marie +Marsha +Clara +Dawn +Emma +Kathleen +Lillie +Susie +Victoria +Amanda +Andrea +Charlene +Melody +Mildred +Angelia +Bobbie +Marcia +Constance +Ginger +Joan +Sherri +Carrie +Jamie +Anne +Sara +Bertha +Eva +Gladys +Johnnie +Lydia +Bernice +Edith +Emily +Lillian +Norma +Rachel +Geraldine +Ramona +Bonita +Jenny +Priscilla +Joann +Leigh +Lynda +Margie +Angie +Janie +Amelia +Ida +Katrina +Sally +Georgia +Lee +Sandy +Vera +Delores +Ella +Kay +Lois +Maria +Robbie +Sheryl +Tonya +Louise +Lucy +Mona +Nina +Sharron +Tracey +Alesia +Alicia +Bessie +Carmen +Jacquelyn +Sabrina +Tami +Thelma +Dora +Jean +Marian +Sherrie +Cora +Jill +Joni +Lora +Rosemary +Sonja +Tanya +Benita +Cheri +Felecia +Hazel +Katie +Reba +Rosetta +Alfreda +Crystal +Debora +Jeanne +Jessie +Lesa +Michele +Minnie +Patty +Sue +Beatrice +Cecelia +Frankie +Josephine +June +Marjorie +Natalie +Teri +Alma +Deloris +Esther +Freda +Lola +Rosalind +Wilma +Alisa +Delois +Dinah +Melba +Sheri +Terrie +April +Deanna +Della +Essie +Faye +Hattie +Jerri +Lucille +Lynne +Marion +Ruthie +Bernadette +Bridget +Fannie +Iris +Jeannie +Lana +Lula +Mae +Paulette +Pauline +Caroline +Cherry +Daisy +Earnestine +Grace +Jana +Leah +Miriam +Rene +Starla +Betsy +Billie +Carole +Eleanor +Eunice +Jacquline +Jimmie +Joanna +Lena +Lesia +Lou +Maggie +Malinda +Naomi +Olivia +Polly +Roberta +Sondra +Valarie +Velma +Daphne +Ivy +Lorraine +Mollie +Nettie +Rena +Tamara +Traci +Unknown +Verna +Arlene +Ava +Candy +Cecilia +Christy +Geneva +Gertrude +Gwen +Jeannette +Karla +Lauren +Leisa +Lenora +Mamie +Maxine +Mitzi +Nadine +Ophelia +Patrice +Ronda +Sonia +Valeria +Allison +Claudette +Dena +Dianna +Heidi +James +Joanne +Kimberley +Nelda +Nita +Stacy +Stella +Tamela +Yvette +Agnes +Danita +Darla +Earline +Ernestine +Flora +Gayle +Gracie +Harriet +Harriett +Inez +Jerrie +Karon +Kaye +Laverne +Libby +Lisha +Marlene +Nellie +Pat +Tena +Valencia +Venita +Bettie +Celia +Christie +Eileen +Elisa +Gay +Henrietta +Irene +Jennie +Jessica +Kelley +Letha +Lucinda +Mable +Marcella +Marla +Myrtle +Nora +Ola +Pearlie +Renita +Robyn +Rosalyn +Shannon +Shelley +Venessa +Viola +Alison +Camilla +Christina +Claudia +Corine +Faith +Francine +Freida +Holly +Irma +Janis +Jeri +Joe +Lorrie +Lucretia +Marianne +Maureen +Queen +Rochelle +Sadie +Shari +Shelly +Stacey +Tammi +Althea +Annetta +Antionette +Avis +Bettye +Bridgette +Brigitte +Claire +Clarice +Colleen +Deana +Debby +Deirdre +Dixie +Dorthy +Eddie +Erma +Francis +Jeanie +Jewel +Josie +Ladonna +Lila +Marguerite +Molly +Nanette +Ollie +Penelope +Roslyn +Shelby +Tara +Tonia +Willa +Alberta +Antoinette +Christi +Cornelia +Dale +Debrah +Deidre +Deloise +Edwina +Florence +Gretchen +Iva +Janine +Jannie +Jody +Kathie +Kellie +Kenneth +Lizzie +Lorie +Lorri +Marietta +Odessa +Queenie +Sybil +Tamra +Teena +Teressa +Trina +Twyla +Vickey +Abby +Adrienne +Bernadine +Candace +Cassie +Celeste +Celestine +Delilah +Dina +Elnora +Elsie +Eula +Floretta +Fran +Freddie +Gigi +Hilda +Jeanetta +Kathey +Kathi +Kelli +Kerry +Leann +Leisha +Leona +Lesha +Lorna +Nona +Pamelia +Patrica +Phoebe +Phylis +Retha +Robbin +Roxanne +Saundra +Selina +Shawn +Tommie +Tracie +Treasa +Vernita +Violet +Vonda +William +Abbie +Abigail +Allyson +Alyce +Angeline +Anitra +Annice +Bridgett +Carlene +Cherie +Chris +Cindi +Danette +Delia +Diann +Dolores +Dona +Donnie +Doreen +Doretha +Dorothea +Effie +Etta +Eugenia +Frieda +Ginny +Glinda +Greta +Imogene +Jenifer +Jerry +Judi +Kerri +Lajuana +Lea +Lela +Leshia +Letitia +Loraine +Lottie +Lynette +Mavis +Merry +Missy +Nan +Ora +Paige +Pattie +Pearl +Reda +Regena +Renae +Renea +Rhoda +Roxie +Sallie +Sheree +Sophia +Synthia +Thomas +Vernessa +Vernice +Vikki +Wonda +Zelda +Addie +Alecia +Angel +Arnita +Blanche +Bobby +Camelia +Cassaundra +Cheryle +Clarissa +David +Deedee +Deidra +Delisa +Dollie +Eloise +Elouise +Fredia +Gayla +Heather +Ingrid +Jannette +Jeanine +Jocelyn +Johanna +John +Johnetta +Johnny +Kendra +Krista +Lanita +Larry +Latanya +Lavonda +Lawanda +Lecia +Leesa +Leila +Leola +Lily +Liz +Lorene +Louisa +Madeline +Melodie +Melonie +Michael +Mimi +Misty +Monique +Nell +Octavia +Opal +Pamala +Pennie +Phillis +Regenia +Remona +Sebrena +Sharion +Sherre +Sherrell +Sherrill +Sherryl +Terrye +Therese +Trena +Velda +Venetia +Verdell +Voncile +Yolonda +Mary +Lisa +Donna +Cynthia +Linda +Brenda +Teresa +Patricia +Sandra +Pamela +Sharon +Deborah +Susan +Debra +Karen +Angela +Kathy +Barbara +Tammy +Wanda +Rhonda +Sherry +Janice +Elizabeth +Jacqueline +Carolyn +Carol +Beverly +Rebecca +Cindy +Debbie +Janet +Cheryl +Shirley +Gloria +Nancy +Sheila +Connie +Laura +Tina +Betty +Margaret +Kimberly +Martha +Regina +Anita +Robin +Terri +Judy +Cathy +Lori +Dorothy +Jennifer +Melissa +Vicki +Shelia +Phyllis +Vickie +Annie +Rita +Belinda +Charlotte +Kim +Julie +Theresa +Gwendolyn +Vanessa +Catherine +Paula +Valerie +Marilyn +Joyce +Sarah +Glenda +Denise +Diane +Melanie +Virginia +Doris +Jackie +Stephanie +Annette +Michelle +Peggy +Katherine +Cassandra +Carla +Sonya +Veronica +Felicia +Becky +Darlene +Kelly +Melinda +Rose +Loretta +Jo +Suzanne +Julia +Sylvia +Amy +Pam +Wendy +Evelyn +Alice +Bonnie +Ann +Frances +Christine +Gina +Anna +Yolanda +Beth +Myra +Leslie +Tracy +Yvonne +Laurie +Lynn +Vicky +Helen +Juanita +Sherri +Renee +Dana +Jane +Judith +Leigh +Kathryn +Ruby +Willie +Terry +Vivian +Joy +Marie +Penny +Carrie +Rosie +Andrea +Gail +Marsha +Patsy +Tammie +Sonja +Elaine +Audrey +Dawn +Sara +Tonya +Charlene +Diana +Jan +Monica +Angelia +Ginger +Norma +Felecia +Jeanette +Emma +Geraldine +Jamie +Marcia +Susie +Angie +Joan +Joann +Toni +Anne +Lee +Ramona +Bonita +Ellen +Lydia +Lynda +Vera +Amanda +Jean +Rachel +Ruth +Constance +Katrina +Melody +Nina +Alesia +Jacquelyn +Patti +Shari +Jessie +Michele +Delores +Josephine +Kathleen +Lillie +Priscilla +Sandy +Bobbie +Dianne +Mattie +Reba +Robbie +Tracey +Wilma +Alicia +Deanna +Georgia +Johnnie +Victoria +Ethel +Natalie +Lesia +Lois +Rosa +Sherrie +Sheryl +Terrie +Bernice +Edna +Lillian +Lora +Mildred +Minnie +Teri +Bertha +Ella +Margie +Sharron +Benita +Jill +Clara +Jeannie +Lucy +Maria +Sally +Tanya +Edith +Janie +Sheri +Sue +Tamara +Tami +Beatrice +Eva +Geneva +Ida +Joanne +Patty +Paulette +Bessie +Faye +Jenny +Lesa +Louise +Maxine +Mona +Ronda +Yvette +Daphne +Emily +Freda +Kay +Lorraine +Mitzi +Alisa +Allison +Carole +Gladys +Marion +Alfreda +Daisy +Harriet +Jana +Lana +Leah +Arlene +Cecelia +Cheri +Christina +Crystal +Dora +Gwen +Iris +Lynne +Alison +Amelia +Lena +Lola +Velma +Alma +Carmen +Caroline +Celeste +Della +Earnestine +Ernestine +Joni +Karla +Mae +Nellie +Rosemary +Stella +Thelma +Traci +Vickey +Billie +Deloris +Elisa +Shelby +Betsy +Candace +Cecilia +Cora +Fannie +Frankie +Hazel +Jerri +Joanna +Kelley +Marjorie +Pauline +Sonia +Stacey +Tara +Valarie +Valeria +April +Dianna +Eunice +Flora +Jacquline +Jeanne +Jennie +Jimmie +Karon +Ladonna +Letitia +Nanette +Pat +Rosalind +Bridget +Celia +Cherry +Claudia +Debora +Delois +Dena +Francine +Gretchen +Henrietta +Holly +June +Katie +Leisa +Lenora +Rena +Rosetta +Ruthie +Shannon +Shawn +Angel +Ashley +Christy +Colleen +Lou +Lucinda +Ola +Roxanne +Sabrina +Selena +Shelly +Sondra +Alberta +Bridgett +Chris +Delphine +Eileen +Essie +Faith +Florence +Gayle +Irene +Johanna +Kellie +Lisha +Lorie +Lynette +Maggie +Marcella +Miriam +Naomi +Ora +Roberta +Suzette +Tena +Ada +Antoinette +Bernadette +Deidre +Deloise +Eleanor +Irma +Jeanie +Lula +Marian +Marla +Miranda +Nadine +Polly +Venita +Winifred +Agnes +Bettye +Bobby +Bridgette +Deirdre +Gayla +Hattie +James +Kristi +Lawanda +Lizzie +Loria +Lorrie +Lucille +Lucretia +Mamie +Marlene +Melba +Missy +Nora +Olivia +Penelope +Tamela +Viola +Ava +Bettie +Brigitte +Cherie +Christie +Dale +Deana +Dee +Delisa +Denita +Esther +Fran +Genia +Glinda +Jessica +Kerry +Kimberley +Kristy +Lauren +Leshia +Lessie +Nelda +Pattie +Rosalyn +Sabra +Sallie +Sophia +Unknown +Valencia +Velvet +Violet +William +Aretha +Chandra +Cherrie +Cornelia +Dinah +Dorothea +Dorthy +Dottie +Erma +Freida +Gay +Genice +Grace +Greta +Janis +Jeannette +Jerry +Jewel +Joe +Kathie +Kaye +Kelli +Leisha +Libby +Lorene +Mable +Marianne +Marisa +Odessa +Patrice +Queen +Rachael +Renita +Robyn +Starla +Tawana +Tonia +Trina +Althea +Brinda +Candy +Charlie +Christi +Clarissa +Danita +Darla +Deidra +Diann +Dolores +Earline +Edwina +Elisabeth +Fredia +Gena +Gerri +Gertrude +Heidi +Ingrid +Jacquelin +Jeanetta +Juliette +Lela +Leticia +Lorri +Malinda +Myrtle +Nettie +Nikki +Nita +Pamala +Rene +Sherrill +Stacy +Teressa +Tommie +Tonja +Tracie +Trenia +Tresa +Vernita +Winnie +Abby +Adrienne +Bernadine +Bethany +Beverley +Brunetta +Callie +Charity +Charles +Chiquita +Cindi +Claudette +Cordelia +David +Dina +Eliza +Elnora +Eloise +Erin +Eugenia +Eula +Francis +Gracie +Gwenda +Harriett +Ivy +Jeri +Johnna +Kathrine +Laverne +Lea +Leesa +Letha +Liz +Lorine +Luanne +Marnita +Mechelle +Melony +Merry +Millie +Molly +Nannette +Paige +Pamelia +Pearlie +Portia +Renae +Robert +Rochelle +Sadie +Selina +Sheree +Sheron +Tamera +Teena +Vernessa +Willa +Yolonda +Abbie +Alecia +Alethea +Allyson +Angelyn +Antionette +Bettina +Bobbi +Camilla +Celestine +Charlean +Cherri +Christa +Claudine +Corine +Danielle +Danna +Deedee +Deena +Delaine +Delia +Dixie +Dorinda +Eddie +Elouise +Elsie +Estelle +Etta +Evangeline +Fonda +Frieda +Gale +Georgette +Gregory +Jami +Janette +Jannie +Jeraldine +Jerolyn +Jerrie +Jewell +Jimmy +Johnetta +Kellye +Lanita +Latonia +Laurel +Lavern +Lecia +Leila +Leona +Lissa +Lorna +Madelyn +Malissa +Margarett +Marguerite +Melonie +Merri +Mickie +Mindy +Misty +Mollie +Monique +Nedra +Ollie +Ophelia +Patrica +Phillis +Phyliss +Princess +Richard +Ronna +Roxie +Saundra +Scarlett +Shelley +Sherita +Shiela +Suellen +Susanne +Sybil +Tamra +Tenna +Teresia +Theressa +Trudy +Ursula +Venessa +Vernice +Yvetta +Zelda +Mary +Lisa +Cynthia +Donna +Linda +Teresa +Brenda +Sandra +Sharon +Pamela +Karen +Susan +Debra +Patricia +Angela +Deborah +Barbara +Tammy +Kathy +Tina +Wanda +Jacqueline +Rhonda +Sherry +Elizabeth +Kimberly +Janice +Sheila +Carol +Janet +Carolyn +Melissa +Shirley +Beverly +Robin +Cheryl +Connie +Laura +Jennifer +Anita +Rebecca +Debbie +Cindy +Cathy +Betty +Regina +Nancy +Terri +Shelia +Gloria +Margaret +Judy +Vickie +Melanie +Lori +Phyllis +Kim +Tracy +Paula +Theresa +Valerie +Gwendolyn +Marilyn +Dorothy +Martha +Sarah +Julie +Kelly +Belinda +Denise +Rita +Melinda +Vicki +Charlotte +Carla +Michelle +Catherine +Joyce +Sherri +Diane +Vanessa +Glenda +Annie +Annette +Cassandra +Stephanie +Virginia +Doris +Amy +Jackie +Alice +Julia +Sonya +Peggy +Felicia +Penny +Leslie +Veronica +Darlene +Dana +Gina +Rose +Suzanne +Monica +Wendy +Sylvia +Laurie +Yolanda +Anna +Katherine +Frances +Bonnie +Evelyn +Helen +Juanita +Loretta +Lynn +Christine +Ann +Daphne +Myra +Pam +Jo +Willie +Beth +Vicky +Vivian +Renee +Diana +Leigh +Rosie +Gail +Angelia +Andrea +Felecia +Tammie +Marsha +Sara +Becky +Norma +Tracey +Marie +Ruth +Alicia +Jan +Terry +Joy +Ruby +Bobbie +Audrey +Ginger +Sandy +Jill +Lee +Tonya +Jane +Judith +Priscilla +Ramona +Thelma +Dawn +Kathryn +Mildred +Amanda +Edna +Rachel +Toni +Yvonne +Patsy +Patti +Sherrie +Ellen +Ethel +Jamie +Kathleen +Sonja +Susie +Elaine +Joann +Anne +Constance +Sheryl +Bonita +Charlene +Benita +Carrie +Emma +Geraldine +Jeanette +Margie +Michele +Robbie +Rosa +Bessie +Carmen +Eva +Ella +Mattie +Tanya +Bernice +Bertha +Dianne +Joan +Lillie +Marcia +Maria +Alfreda +Bridget +Georgia +Katrina +Delores +Edith +Jacquelyn +Jenny +Lois +Stacey +Tamara +Victoria +Crystal +Deanna +Emily +Johnnie +Lucy +Melody +Mitzi +Nina +Sally +Allison +Natalie +Rosemary +Shannon +Angie +Sheri +Caroline +Lillian +Marian +Tami +Vera +Alison +Josephine +June +Kelley +Lesa +Louise +Maxine +Minnie +Alma +Cora +Gladys +Ida +Mona +Valarie +Wilma +Alesia +Jeanne +Jessie +Karla +Kay +Patty +Reba +Shari +Sharron +Yvette +Billie +Clara +Dianna +Earnestine +Lora +Lynda +Paige +Frankie +Holly +Irene +Jana +Jerri +Lydia +Rosalind +Sophia +Terrie +Traci +Alisa +Christy +Geneva +Jean +Joanne +Nadine +Robbin +Roberta +Sondra +Sue +Cecilia +Lana +Laverne +Lesia +Lorie +Marion +Marla +Shelly +Tracie +Amelia +April +Freda +Paulette +Ronda +Stacy +Stella +Tara +Teri +Velma +Bettie +Daisy +Debora +Flora +Jeannie +Jessica +Joanna +Lula +Rena +Rosetta +Sabrina +Arlene +Deirdre +Gwen +Hattie +Katie +Lorraine +Lynne +Mamie +Sallie +Shelley +Valeria +Bridgette +Darla +Deana +Dina +Fannie +Faye +Florence +Kelli +Kellie +Malinda +Pauline +Vickey +Adrienne +Alberta +Cecelia +Christina +Dena +Eleanor +Elisa +Jacquline +Janie +Leah +Lucinda +Mae +Marcella +Nelda +Patrice +Verna +Allyson +Celia +Cheri +Della +Delois +Deloris +Dora +Edwina +Iris +Lenora +Miriam +Nora +Olivia +Robyn +Tamela +Tommie +Avis +Beatrice +Bernadette +Candace +Clarissa +Claudia +Gena +Greta +Gretchen +Harriet +Hazel +Henrietta +Jennie +Kaye +Leisa +Lizzie +Lorrie +Nicole +Roxanne +Tonja +Bettye +Bridgett +Candy +Cherry +Deidre +Eloise +Esther +Karon +Lucretia +Maggie +Queen +Renita +Sonia +Tena +Agnes +Dale +Ivy +Jacquelin +Jeannette +Jeri +Jewel +Jimmie +Kimberley +Marjorie +Merry +Myrtle +Nanette +Nellie +Portia +Roslyn +Antionette +Antoinette +Carole +Celeste +Christi +Dedra +Dee +Erica +Ernestine +Freida +Gayle +Grace +Heidi +James +Jeanie +Jerrie +Jerry +Joe +Kerry +Kitty +Ladonna +Lena +Lola +Melba +Melonie +Nettie +Ora +Renae +Robert +Rosalyn +Scarlett +Selina +Sybil +Tammi +Valencia +Winifred +Ada +Arleen +Ashley +Betsy +Chandra +Cherie +Colleen +Danna +Delisa +Diann +Dorothea +Earline +Essie +Eula +Jannie +Joanie +Lorri +Luanne +Lucille +Lynette +Marianne +Marietta +Melisa +Molly +Pamelia +Patrica +Penelope +Pinkie +Polly +Saundra +Shelby +Tricia +Trina +Violet +Alecia +Amber +Aretha +Bobby +Callie +Chris +Claire +Claudette +Deena +Deidra +Dona +Doretha +Ester +Eugenia +Eunice +Francis +Gay +Gayla +Gracie +Hannah +Hope +Ingrid +Joycelyn +Juliet +Kerri +Kristi +Lauren +Lawanda +Letitia +Lou +Mable +Madelyn +Mandy +Marguerite +Mavis +Naomi +Nedra +Ollie +Rene +Ruthie +Selena +Shawn +Teressa +Venita +Vonda +Willa +Addie +Alethea +Angeline +Camilla +Cara +Cherrie +Christie +Cornelia +Courtney +Debby +Denita +Dolores +Dorthy +Eartha +Elsie +Estella +Etta +Eve +Francine +Gertrude +Harriett +Heather +Janis +Jayne +John +Joni +Juliette +Karan +Kristy +Laquita +Lavonda +Lela +Leola +Leshia +Letha +Lorna +Madeline +Margo +Marlene +Marva +Maureen +May +Mellissa +Millie +Mindy +Miranda +Ola +Opal +Ophelia +Pearlie +Regena +Renea +Rochelle +Sadie +Sheron +Sherrill +Starla +Tamera +Tana +Tresa +Treva +Unknown +Vanda +Alisha +Augusta +Beulah +Casandra +Cathleen +Celestine +Corine +Curtis +Cyndi +Danita +Delia +Dinah +Eddie +Erin +Faith +Fay +Fran +Freddie +Gaynell +Gigi +Ginny +Gretta +Hilda +Janette +Janna +Jody +Kathi +Kellye +Kendra +Lajuana +Lanita +Latanya +Leesa +Leila +Lelia +Libby +Lila +Liz +Lottie +Luann +Meta +Michael +Mikki +Missy +Muriel +Natasha +Nita +Nona +Octavia +Pennie +Rebekah +Rhoda +Sheree +Sherrell +Sherron +Stephaine +Susanne +Suzette +Tawana +Teresia +Theodora +Tonda +Yolonda +Zina +Lisa +Mary +Cynthia +Donna +Tammy +Teresa +Sandra +Pamela +Angela +Sharon +Linda +Karen +Susan +Brenda +Patricia +Deborah +Barbara +Debra +Kimberly +Jacqueline +Wanda +Rhonda +Sherry +Kathy +Elizabeth +Janice +Melissa +Tina +Lori +Carolyn +Laura +Sheila +Janet +Rebecca +Anita +Cheryl +Jennifer +Beverly +Robin +Paula +Connie +Carol +Regina +Cathy +Nancy +Cindy +Shirley +Terri +Gloria +Shelia +Martha +Margaret +Betty +Debbie +Tracy +Phyllis +Vickie +Sarah +Judy +Kim +Melanie +Dorothy +Stephanie +Dana +Charlotte +Denise +Kelly +Belinda +Marilyn +Rita +Darlene +Carla +Julie +Annette +Annie +Gwendolyn +Joyce +Theresa +Valerie +Sonya +Glenda +Michelle +Catherine +Melinda +Cassandra +Amy +Vicki +Monica +Diane +Felicia +Penny +Veronica +Doris +Sherri +Suzanne +Tammie +Vanessa +Peggy +Virginia +Julia +Christine +Yolanda +Alice +Katherine +Marsha +Loretta +Vivian +Leslie +Laurie +Helen +Jackie +Sylvia +Frances +Gina +Leigh +Andrea +Rose +Wendy +Yvonne +Ruby +Jo +Vicky +Becky +Tonya +Angelia +Myra +Sandy +Amanda +Ginger +Ann +Pam +Tracey +Dawn +Diana +Evelyn +Jeanette +Rachel +Bonnie +Jane +Daphne +Stacy +Juanita +Renee +Terry +Ramona +Angie +Beth +Deanna +Tamara +Marie +Jamie +Kathleen +Katrina +Ruth +Charlene +Joy +Toni +Lee +Melody +Patsy +Sherrie +Constance +Elaine +Jean +Joan +Lynn +Norma +Willie +Ellen +Kathryn +Rosie +Stacey +Anna +Felecia +Crystal +Mildred +Natalie +Sonja +Judith +Robbie +Shannon +Traci +Emily +Emma +Kelley +Priscilla +Sheryl +Tanya +Bonita +Sara +Alicia +Carrie +Ella +Gail +Jill +Anne +Joann +Kay +Michele +Bobbie +Bridget +Karla +Maria +Rosa +Carmen +Dianne +Johnnie +Patty +Alesia +Christy +Gladys +Jacquelyn +Jan +Marcia +Vera +Edna +Susie +Tami +Allison +Audrey +Eleanor +Jenny +Lynda +Mona +Patti +Sheri +Bernice +Georgia +Holly +Jana +Lolita +Mattie +Sabrina +Victoria +Yvette +April +Clara +Janie +Rosemary +Tara +Cecilia +Christina +Cora +Lois +Lora +Alison +Amelia +Bessie +Edith +Ethel +Eva +Geraldine +Marjorie +Nora +Sally +Teri +Thelma +Delores +Katie +Lillie +Nina +Pauline +Terrie +Lenora +Robyn +Sharron +Tracie +Alfreda +Alisa +Candace +Jeannie +Kellie +Lillian +Lydia +Sondra +Sophia +Darla +Fannie +Geneva +Hattie +Hazel +Jacquline +Lucy +Marion +Minnie +Reba +Sue +Christie +Daisy +Dena +Gena +Jessica +Joanna +Kelli +Leah +Lesia +Lorraine +Louise +Margie +Shari +Valarie +Bertha +Jeanne +Jerri +Jessie +Lorie +Maxine +Mitzi +Polly +Shelly +Sonia +Caroline +Dianna +Iris +Joanne +Molly +Adrienne +Beatrice +Benita +Billie +Flora +Freda +Harriet +Ida +Josephine +Kristi +Lena +Lesa +Marla +Renita +Tamela +Valeria +Wilma +Alecia +Bernadette +Elisa +Grace +James +Jannie +Naomi +Rosalind +Rosetta +Roxanne +Tammi +Vickey +Betsy +Bridgette +Delois +Deloris +Erica +Faye +Francine +Janis +Jennie +Maggie +Malinda +Marian +Melisa +Paige +Ronda +Ruthie +Sallie +Selina +Shawn +Tiwanna +Velma +Alma +Arlene +Cheri +Christi +Colleen +Earnestine +Eugenia +Gwen +Johnna +Karon +Kimberley +Lucille +Lucinda +Mae +Mamie +Michael +Rena +Shelley +Antoinette +Bethany +Carole +Claudia +Debora +Elisabeth +Eloise +Gayle +Inez +Irene +Janette +Jimmie +Leanne +Libby +Lynne +Marcella +Melba +Nicole +Paulette +Renae +Roberta +Tommie +Ada +Casandra +Dora +Etta +Eunice +Gerri +Greta +Ladonna +Lana +Letitia +Lola +Marianne +Olivia +Rene +Rhoda +Stella +Teressa +Tonja +Zelda +Annetta +Ava +Bettye +Celia +Dedra +Deidre +Deirdre +Della +Eddie +Essie +Frankie +Henrietta +Hope +Jeanie +John +Joni +Jonna +Kaye +Kerri +Kristy +Lawanda +Leona +Lizzie +Lorene +Lou +Lucretia +Maureen +Mavis +Melonie +Merry +Miriam +Nellie +Patrice +Pearlie +Penelope +Robbin +Romona +Rosalyn +Roslyn +Sadie +Shelby +Suzette +Viola +Winifred +Zina +Addie +Allyson +Bettie +Blanche +Candy +Cara +Cecelia +Celeste +Chris +Cornelia +Denice +Diann +Doretha +Edwina +Erma +Estella +Florence +Freida +Gretchen +Ingrid +Jewel +Lauren +Laverne +Lavonda +Lorri +Lula +Matilda +Portia +Queen +Renea +Renetta +Saundra +Sybil +Valencia +Vernita +Alberta +Antionette +Ashley +Bridgett +Dale +Delinda +Delisa +Desiree +Dolores +Dorcas +Earline +Ernestine +Evon +Fonda +Gayla +Glynis +Heather +Jeannette +Jerry +Kerry +Laurel +Lea +Leisa +Leola +Letha +Lorrie +Madeline +Marlene +Millie +Misty +Muriel +Myrtle +Nena +Nita +Ola +Pamala +Rochelle +Tanja +Venessa +Violet +Aletha +Alfredia +Bernita +Bobby +Carlene +Chandra +Cherry +Chiquita +Christa +Dara +Darlean +Deidra +Dixie +Dolly +Elise +Eula +Faith +Genice +Glinda +Gwenevere +Harriett +Irma +Ivy +Jacquelin +Jena +Juliet +June +Kristie +Lauri +Leann +Leila +Leisha +Lorna +Lynette +Mable +Madelyn +Marquetta +Merri +Mimi +Miranda +Monique +Nadine +Nanette +Octavia +Pamelia +Patrica +Pattie +Rae +Regenia +Robert +Scarlett +Selena +Shawna +Starla +Suzan +Tena +Therese +Tonia +Twanda +Valorie +Vonda +William +Alethea +Alisia +Allie +Angel +Aretha +Bette +Callie +Camille +Cathey +Cheryle +Courtney +Damita +Daniel +Danna +Daphine +Deana +Debby +Deloise +Dina +Dinah +Dona +Dorothea +Eileen +Elsie +Esther +Gidget +Gracie +Janett +Janna +Jayne +Jeanetta +Jerrie +Jody +Juliette +Kitty +Kristin +Kristina +Laquita +Leanna +Leatha +Lela +Leonard +Lesley +Lila +Loria +Maranda +Melony +Melva +Mindy +Nettie +Pearline +Pennie +Phaedra +Phillis +Retha +Roxanna +Samantha +Scarlet +Sherrell +Suzy +Tamera +Tawana +Tawanda +Tawanna +Terra +Trisha +Trudy +Unknown +Ursula +Veda +Velda +Vida +Zena +Lisa +Mary +Cynthia +Angela +Donna +Pamela +Tammy +Sharon +Teresa +Karen +Patricia +Susan +Sandra +Kimberly +Linda +Brenda +Jacqueline +Deborah +Elizabeth +Barbara +Debra +Melissa +Sherry +Rhonda +Tina +Kathy +Wanda +Sheila +Jennifer +Rebecca +Carolyn +Regina +Robin +Laura +Paula +Janice +Janet +Connie +Carol +Cindy +Shirley +Tracy +Cheryl +Valerie +Anita +Lori +Terri +Stephanie +Beverly +Nancy +Shelia +Kim +Betty +Cathy +Dana +Gloria +Margaret +Denise +Melanie +Vickie +Judy +Debbie +Julie +Carla +Amy +Kelly +Michelle +Gwendolyn +Belinda +Dorothy +Martha +Theresa +Glenda +Sarah +Rita +Sonya +Annette +Cassandra +Charlotte +Melinda +Catherine +Phyllis +Annie +Darlene +Joyce +Vanessa +Wendy +Leslie +Monica +Veronica +Marilyn +Sherri +Doris +Vicki +Virginia +Leigh +Yolanda +Diane +Penny +Angelia +Julia +Felicia +Tracey +Andrea +Jackie +Alice +Bonnie +Kathryn +Gina +Suzanne +Allison +Peggy +Laurie +Vivian +Dawn +Katherine +Frances +Loretta +Sylvia +Helen +Christine +Jo +Tammie +Anna +Evelyn +Ann +Juanita +Rose +Patty +Tonya +Lynn +Traci +Angie +Ruby +Vicky +Alicia +Diana +Jill +Pam +Amanda +Maria +Constance +Sheryl +Sonja +Daphne +Deanna +Michele +April +Audrey +Ginger +Joy +Myra +Yvonne +Beth +Marie +Norma +Toni +Jane +Marsha +Becky +Judith +Priscilla +Renee +Terry +Bobbie +Bonita +Charlene +Kathleen +Rachel +Carrie +Sandy +Sara +Felecia +Jeanette +Emily +Jacquelyn +Kelli +Lee +Melody +Robbie +Jamie +Katrina +Victoria +Joan +Patti +Shannon +Emma +Kristi +Rosie +Stacey +Anne +Edna +Patsy +Sherrie +Stacy +Tanya +Crystal +Ethel +Ramona +Christy +Elaine +Georgia +Lillie +Nina +Ellen +Jean +Joann +Benita +Ella +Holly +Leah +Lynda +Susie +Vera +Willie +Bertha +Carmen +Eva +Lora +Margie +Rosa +Sabrina +Vonda +Billie +Edith +Jenny +Sue +Tara +Bridget +Jeanne +Jessie +Ronda +Rosemary +Ruth +Caroline +Clara +Jacquline +Mildred +Tamara +Bernice +Dianne +Karla +Kelley +Marjorie +Mattie +Alesia +Darla +Geraldine +Marcia +Natalie +Sally +Sheri +Tracie +Jan +Janie +Minnie +Valeria +Gail +Gladys +Jana +Jessica +Shelly +Valarie +Alison +Bessie +Carole +Kimberley +Kristy +Samantha +Yvette +Christina +Dianna +Johnnie +Lana +Maxine +Sharron +Wilma +Deneen +Dora +Jennie +Lesa +Lillian +Lois +Lula +Lydia +Marion +Rosalind +Sonia +Alisa +Candace +Cora +Delois +Delores +Grace +Hattie +Ida +Joanna +Joanne +June +Lesia +Marian +Tami +Trina +Faye +Gayle +Hope +Irene +Melisa +Mona +Robyn +Shelley +Sondra +Sophia +Tammi +Terrie +Valencia +Cecilia +Deloris +Dena +Eleanor +Kay +Lynne +Mitzi +Olivia +Paige +Rosetta +Aretha +Ashley +Cheri +Della +Heather +Jerri +Jimmie +Joni +Kecia +Kellie +Letitia +Lucy +Marla +Nora +Rena +Amelia +Antoinette +Josephine +Lawanda +Louise +Lucretia +Naomi +Roberta +Alfreda +Allyson +Chris +Christi +Earnestine +Frankie +Gena +Ingrid +Jeannie +Jodi +Lola +Lucille +Mae +Marcella +Molly +Nanette +Pearlie +Reba +Selina +Tonja +Bettie +Bridgett +Bridgette +Cecelia +Debora +Deirdre +Dixie +Djuana +Fannie +Geneva +Iris +James +Katie +Kris +Ladonna +Lena +Lorraine +Malinda +Miriam +Nellie +Shari +Tamela +Teressa +Teri +Alma +Betsy +Chandra +Desiree +Edwina +Eugenia +Faith +Flora +Henrietta +Johnna +Lauren +Letha +Lolita +Nita +Ora +Queen +Rosalyn +Shawn +Teena +Thelma +Velma +Zina +Alecia +Camilla +Celia +Claudia +Deana +Deidra +Elisa +Ernestine +Florence +Francine +Harriet +Janette +Kristin +Leisa +Lorie +Lou +Marlene +Missy +Nadine +Nelda +Patrica +Patrice +Paulette +Rene +Roxanne +Ruthie +Selena +Vickey +Ada +Annetta +Bernadette +Christie +Clarissa +Colleen +Daisy +Delisa +Eloise +Esther +Eunice +Gayla +Hazel +Heidi +Janis +Jayne +Jenifer +Jewel +Lea +Lenora +Leona +Lizzie +Loria +Mamie +Marguerite +Mia +Michell +Monique +Myrtle +Pamala +Regenia +Renae +Starla +Stella +Tawana +Tena +Tonda +Valorie +Adrienne +Angel +Antionette +Arlene +Barbie +Beatrice +Cara +Cathleen +Danette +Deena +Essie +Etta +Fonda +Inger +Janna +Jeanetta +John +Kerry +Laverne +Leanne +Lucinda +Maggie +Mandy +Misty +Penelope +Pennie +Portia +Roslyn +Sadie +Scarlett +Sharlene +Shelby +Suzette +Tawanna +Abigail +Bethany +Brigitte +Celeste +Cherry +Dale +Dedra +Deidre +Denice +Denita +Djuna +Dolores +Earline +Eliza +Francis +Freda +Harriett +Irma +Jannie +Kellye +Kerri +Kimberlee +Kristie +Lorri +Marianne +Melba +Melonie +Mindy +Nannette +Pauline +Rachael +Robbin +Susanne +Suzy +Tangela +Tonia +Trudy +Venessa +Viola +Whitney +Agnes +Aletha +Alisha +Althea +Angelina +Angeline +Bettye +Bobbi +Candy +Casandra +Charles +Chiquita +Claire +Danna +Deann +Dee +Demetra +Demetria +Diann +Dina +Dinah +Dolly +Dona +Elise +Erma +Evangeline +Felisha +Freida +Gay +Gerri +Glynis +Jacquelin +Jeanie +Jeri +Juliette +Karin +Karyn +Laquita +Lauri +Lawana +Lawanna +Leatha +Lela +Libby +Lorrie +Luann +Marcy +Marolyn +Matilda +Mitzie +Muriel +Nettie +Nicole +Pamelia +Polly +Regena +Rochelle +Sallie +Saundra +Sheena +Sheree +Sidney +Tiwanna +Treva +Tricia +Trisha +Unknown +Abby +Addie +Alana +Andra +Angelyn +Anglia +Arleen +Ava +Avis +Bernita +Beryl +Caron +Claudette +Darline +Deanne +Deedra +Delphine +Diedra +Diedre +Doretha +Dorothea +Drenda +Elisabeth +Erica +Fredia +Gigi +Gregory +Gretchen +Hayley +Hilda +Jacklyn +Jeana +Jeanna +Jena +Jerrie +Jerry +Jody +Joe +Johna +Judi +Karan +Kattie +Kenneth +Kristina +Lasonya +Lavonda +Lelia +Lorene +Lottie +Mari +Merri +Natasha +Ola +Ophelia +Pandora +Pat +Princess +Renea +Renita +Sarita +Shana +Shawna +Sundra +Terresa +Therese +Thomas +Twanda +Veda +Violet +Zenovia +Lisa +Mary +Angela +Cynthia +Kimberly +Donna +Tammy +Karen +Pamela +Sharon +Teresa +Patricia +Linda +Sandra +Susan +Brenda +Rhonda +Deborah +Tina +Melissa +Barbara +Jacqueline +Tracy +Jennifer +Rebecca +Sherry +Elizabeth +Wanda +Debra +Laura +Kathy +Stephanie +Carolyn +Sheila +Carol +Robin +Regina +Janet +Cheryl +Janice +Connie +Paula +Valerie +Wendy +Amy +Kim +Anita +Betty +Kelly +Nancy +Shirley +Beverly +Cindy +Shelia +Carla +Lori +Michelle +Sonya +Melinda +Margaret +Theresa +Felicia +Vickie +Julie +Dana +Debbie +Phyllis +Gloria +Martha +Cathy +Rita +Terri +Charlotte +Melanie +Belinda +Cassandra +Dorothy +Veronica +Joyce +Judy +Monica +Annie +Denise +Glenda +Allison +Samantha +Catherine +Yolanda +Angelia +Gwendolyn +Christine +Gina +Tonya +Sarah +Tracey +Marilyn +Leslie +Darlene +Vanessa +Andrea +Annette +Amanda +Helen +Katherine +Penny +Sherri +Doris +Julia +Peggy +Alice +Alicia +Suzanne +Vicki +Virginia +Diane +Frances +Leigh +Angie +Shannon +Sonja +Katrina +Evelyn +Traci +Jo +Loretta +Dawn +Jackie +Jamie +Stacey +Vivian +Norma +Beth +Laurie +Sylvia +Bobbie +Deanna +Ginger +Ruby +Constance +Victoria +Anna +Tammie +Bonnie +Charlene +Diana +Renee +Rose +Ann +Becky +Kathryn +Melody +Joy +Marsha +Anne +April +Jill +Maria +Stacy +Audrey +Jacquelyn +Sara +Vicky +Juanita +Michele +Patty +Rosie +Yvonne +Carrie +Lee +Emily +Felecia +Holly +Jane +Kathleen +Elaine +Jeanette +Joan +Bridget +Judith +Myra +Patsy +Ramona +Ronda +Bernice +Daphne +Karla +Leah +Lynda +Lynn +Tanya +Toni +Kimberley +Pam +Sandy +Yvette +Ellen +Lillie +Willie +Mia +Natalie +Nina +Patti +Priscilla +Sheryl +Terry +Alisa +Bonita +Carmen +Christy +Kristi +Mattie +Ruth +Valeria +Crystal +Rachel +Sherrie +Tamara +Tracie +Alesia +Ella +Emma +Jana +Jenny +Jessica +Bertha +Dianne +Jessie +Joann +Mona +Tami +Cecilia +Christina +Edna +Johnnie +Robbie +Tara +Thelma +Alison +Ethel +Jan +Jean +Kelli +Mildred +Minnie +Reba +Rosemary +Caroline +Gail +Lois +Louise +Marie +Melisa +Sabrina +Sharron +Eva +Ida +Kelley +Kristy +Lillian +Lora +Lucy +Terrie +Valencia +Darla +Olivia +Rosa +Candace +Gayle +Geraldine +Lesa +Lesia +Mitzi +Rosalind +Sheri +Sondra +Sonia +Vonda +Bessie +Billie +Clara +Geneva +Josephine +Kellie +Ladonna +Marcia +Margie +Paige +Shelly +Benita +Bernadette +Bridgett +Gladys +Janie +Joanna +Velma +Delois +Delores +Dianna +Eleanor +Lea +Marjorie +Molly +Susie +Betsy +Frankie +Gayla +Georgia +Jennie +Lana +Lorie +Lorraine +Lydia +Lynne +Mamie +Aretha +Arlene +Ashley +Christie +Clarissa +Eunice +Jeanne +Kay +Kristin +Lena +Lucille +Maxine +Miriam +Nora +Paulette +Robyn +Sally +Sue +Tonja +Vera +Allyson +Candy +Chris +Debora +Edith +Faye +Hope +Jacquline +Katie +Marion +Nena +Tangela +Tena +Cara +Cora +Deana +Dora +Gwen +Harriet +Hattie +Irene +Jimmie +Joanne +Letha +Lula +Naomi +Sarita +Shelley +Tamela +Teri +Trina +Alfreda +Amelia +Beatrice +Bridgette +Celia +Dena +Freda +Hazel +Jeri +Jerri +June +Karan +Karon +Kecia +Kristie +Kristina +Latonya +Latrenda +Leanne +Lenora +Marla +Michael +Miranda +Monique +Nicole +Rochelle +Rosetta +Shari +Sophia +Adrienne +Carole +Cheri +Claudia +Daisy +Danita +Della +Eloise +Francine +Heidi +Joni +Leisa +Lorrie +Lou +Marian +Nita +Pauline +Penelope +Rosalyn +Sheree +Tammi +Teressa +Valarie +Alma +Cherry +Christi +Colleen +Deloris +Desiree +Earnestine +Esther +Faith +Heather +Iris +Jada +Jeanna +Lawanda +Mae +Maggie +Mandy +Marianne +Nellie +Portia +Rena +Robbin +Roslyn +Roxanne +Selina +Starla +Stefanie +Tommie +Trisha +Vickey +Agnes +Alecia +Aletha +Althea +Angelina +Barbie +Camilla +Cherie +Dedra +Dee +Denita +Dorothea +Eddie +Erin +Essie +Eugenia +Grace +Henrietta +Ingrid +Janna +Jodi +Kendra +Kris +Krista +Kristen +Krystal +Lauren +Leann +Lela +Lola +Lolita +Lynette +Malinda +Mechelle +Meredith +Patrica +Pattie +Polly +Renae +Rene +Roberta +Selena +Staci +Tonia +Twanda +Ursula +Alberta +Angel +Antoinette +Brigitte +Casandra +Catrina +Deanne +Deena +Edwina +Erica +Ernestine +Gala +Greta +Harriett +Jacquelin +James +Joycelyn +Karyn +Kerri +Kerry +Kristine +Latricia +Laurel +Lesley +Libby +Lorri +Lucinda +Maureen +Misty +Regena +Regenia +Renita +Roxie +Saundra +Scarlet +Shanda +Shawn +Teena +Wonda +Ada +Bobby +Celeste +Charla +Claudette +Cleo +Dale +Danna +Deidra +Delisa +Demetra +Diann +Dina +Elisa +Elisabeth +Elsie +Eula +Felisa +Freida +Glynis +Gretchen +Inger +Jannie +Jeannie +Johanna +Juliet +Kala +Kandy +Kara +Kathi +Lita +Madeline +Melba +Pennie +Phillis +Rebekah +Robert +Ruthie +Shana +Sheron +Susanne +Suzette +Tessa +Twana +Venessa +Viola +Windy +Alana +Aleta +Alisha +Anglea +Arnita +Aundrea +Ava +Bethany +Bettie +Candice +Caren +Caryn +Cassaundra +Cecile +Chandra +Charleen +Cindi +Colette +Darline +Deirdre +Delinda +Dionne +Dixie +Dona +Dorthy +Eliza +Erma +Etta +Fannie +Flora +Fontella +Francis +Gay +Gena +Hilda +Janine +Jayne +Jocelyn +Joe +John +Kari +Kelle +Kellye +Lara +Larry +Lizzie +Lorene +Loretha +Lorna +Lottie +Lucretia +Marcella +Marcy +Marguerite +Marisa +Marlene +Melonie +Muriel +Myrna +Nanette +Nettie +Ora +Pamala +Pat +Patrice +Pearl +Pearlie +Phoebe +Rachael +Renea +Retha +Rhoda +Sadie +Sallie +Samatha +Shawna +Shonda +Stacie +Stella +Suzan +Tana +Tawanna +Tiffany +Tonita +Towanna +Trudy +Verna +Vernessa +Violet +Wilma +Yolonda +Zina +Lisa +Mary +Angela +Kimberly +Tammy +Cynthia +Pamela +Donna +Sharon +Karen +Patricia +Teresa +Melissa +Sandra +Linda +Susan +Brenda +Jennifer +Tina +Deborah +Rhonda +Elizabeth +Tracy +Barbara +Debra +Stephanie +Paula +Wanda +Sherry +Rebecca +Cheryl +Jacqueline +Michelle +Amy +Carol +Laura +Sonya +Wendy +Connie +Carolyn +Regina +Sheila +Kathy +Kelly +Nancy +Shelia +Anita +Robin +Beverly +Dana +Lori +Margaret +Shirley +Janice +Janet +Cindy +Julie +Terri +Vickie +Carla +Betty +Valerie +Andrea +Kim +Rita +Dorothy +Melanie +Martha +Charlotte +Gina +Gloria +Melinda +Tracey +Felicia +Theresa +Monica +Amanda +Sarah +Leslie +Annie +Debbie +Annette +Cathy +Angelia +Tonya +Belinda +Judy +Veronica +Darlene +Denise +Cassandra +Christine +Dawn +Gwendolyn +Joyce +Phyllis +Vicki +Catherine +Peggy +Sherri +Leigh +Shannon +Marilyn +Samantha +Glenda +Sandy +Vanessa +April +Diane +Doris +Bonnie +Michele +Virginia +Yolanda +Beth +Traci +Angie +Sonja +Alice +Laurie +Anna +Stacey +Sylvia +Allison +Jill +Tammie +Loretta +Tracie +Audrey +Ellen +Frances +Vivian +Helen +Juanita +Julia +Katherine +Marsha +Jackie +Jo +Katrina +Melody +Rachel +Deanna +Bobbie +Constance +Ginger +Suzanne +Evelyn +Jeanette +Kathleen +Carrie +Stacy +Penny +Ramona +Sara +Charlene +Kathryn +Toni +Kelley +Kristi +Lee +Rose +Ann +Jamie +Joy +Marie +Alicia +Tanya +Victoria +Daphne +Kelli +Renee +Becky +Anne +Diana +Jana +Ronda +Willie +Ethel +Holly +Hope +Maria +Mona +Ruby +Tabatha +Christie +Tamara +Ashley +Candace +Emily +Jacquelyn +Susie +Bridget +Christy +Felecia +Georgia +Jessica +Joann +Lynn +Priscilla +Natalie +Rosie +Sabrina +Emma +Jerri +Kristy +Norma +Patti +Ruth +Crystal +Elaine +Jane +Judith +Rosa +Sherrie +Vonda +Audra +Bridgette +Marcia +Patsy +Patty +Vicky +Yvonne +Alisa +Billie +Eva +Kimberley +Leah +Mattie +Sheri +Tabitha +Terry +Bernice +Jan +Kristin +Sophia +Bridgett +Delores +Joan +Karla +Marion +Nicole +Nina +Sharron +Sheryl +Caroline +Dianne +Gail +Mildred +Myra +Paige +Bonita +Clara +Janie +Lana +Lillie +Pam +Sonia +Tara +Terrie +Bernadette +Ella +Kellie +Lesia +Lynda +Marla +Melisa +Mia +Roberta +Sally +Valencia +Yvette +Jessie +Lawanda +Lillian +Shawn +Valarie +Wilma +Bertha +Carmen +Christina +Darla +Greta +Ida +Jean +Joanna +Lois +Mitzi +Olivia +Rosalind +Thelma +Tiffany +Amelia +Deloris +Edith +Geraldine +Hazel +Johnnie +Kecia +Robyn +Rosetta +Shelley +Valeria +Vera +Benita +Bessie +Deana +Debora +Geneva +Jeannie +June +Kerry +Ladonna +Lena +Lorraine +Melba +Patrice +Shelly +Tamatha +Tamela +Tommie +Trina +Alison +Cecelia +Dina +Freda +Heather +Jacquline +Joanne +Katie +Krista +Latonya +Lesa +Louise +Lucille +Marian +Molly +Patrica +Teri +Tonia +Alesia +Candy +Cara +Cheri +Gladys +Jenny +Kay +Kendra +Lorie +Lorrie +Michael +Minnie +Paulette +Starla +Stella +Teressa +Tonja +Velma +Christi +Dena +Edna +Faye +Grace +Irene +Iris +Jeanne +Jennie +Letitia +Lydia +Malissa +Marianne +Reba +Robbie +Robert +Selena +Sondra +Tami +Alma +Arlene +Bethany +Celeste +Cherie +Claudia +Cora +Danielle +Deidre +Dianna +Earnestine +Elisa +Erika +Flora +Frankie +Gayla +Joe +Kimberlee +Kristen +Kristie +Kristina +Lesley +Lynne +Malinda +Marcella +Margie +Marjorie +Maureen +Miranda +Misty +Rosemary +Sue +Tia +Vickey +Adrienne +Angeline +Anglia +Casandra +Dale +Delois +Esther +Josephine +Latanya +Lenora +Lila +Monique +Nellie +Nita +Pamala +Pennie +Rena +Renea +Sandi +Selina +Shari +Shelby +Tawana +Ursula +Viola +Angel +Angelina +Beatrice +Bettye +Candice +Carole +Cecilia +Danna +Deidra +Deirdre +Della +Desiree +Diann +Earline +Edwina +Eugenia +Heidi +Jami +Joni +Krystal +Leanne +Leisa +Leona +Lora +Lucretia +Maggie +Meredith +Rolanda +Roxanne +Ruthie +Serena +Stefanie +Tamala +Tammi +Verna +Alecia +Antoinette +Avis +Bettie +Delisa +Dinah +Dixie +Eloise +Eunice +Florence +Gale +Gretchen +Gussie +Harriet +Ivy +Janette +Jenifer +John +Kerri +Laverne +Leticia +Libby +Lucy +Lynette +Mamie +Marlene +Maxine +Melodie +Miriam +Myrtle +Nettie +Polly +Reta +Rochelle +Sarita +Saundra +Sharlene +Shellie +Sonji +Suzette +Tangela +Tresa +Valorie +Zelda +Ada +Adrianne +Aimee +Alana +Aleta +Alisha +Antonia +Aretha +Bernita +Betsy +Charla +Chris +Christa +Claire +Daisy +Dara +Dedra +Dee +Deedra +Denita +Donald +Dora +Eleanor +Erin +Ernestine +Fannie +Fontella +Francis +Gena +Gracie +Jacquelin +James +Jannette +Jeri +Jerry +Jimmie +Jodi +Juliette +Karon +Kris +Lara +Latricia +Leann +Lessie +Letha +Lolita +Lucinda +Lula +Mable +Madeline +Mollie +Nadine +Robbin +Rosalyn +Shana +Shawna +Sheron +Sherrill +Shonda +Tana +Tawanda +Tena +Trudy +Althea +Andra +Anthony +Arnetta +Ava +Bobby +Caryn +Cathleen +Celia +Chandra +Cherri +Cinda +Debrah +Delana +Demetrice +Donita +Elisabeth +Elnora +Elsie +Etta +Eula +Evette +Faith +Fran +Gretta +Harriett +Inger +Jada +Jeanna +Johnna +Karol +Katina +Lauren +Lavonda +Lea +Lola +Lorri +Lou +Lurleen +Malisa +Marchelle +Margo +Marietta +Marisa +Marshell +Martina +Mechelle +Mellissa +Melony +Millie +Nedra +Nora +Ola +Ouida +Pamelia +Pearlie +Penelope +Regenia +Renita +Rodney +Rosita +Shanon +Sheena +Sheree +Sherree +Sherryl +Stacie +Susanne +Teresia +Timothy +Treva +Venessa +William +Wonda +Lisa +Kimberly +Angela +Mary +Tammy +Cynthia +Pamela +Sharon +Melissa +Donna +Teresa +Jennifer +Patricia +Susan +Stephanie +Karen +Tina +Sandra +Linda +Tracy +Rhonda +Elizabeth +Sherry +Amy +Barbara +Brenda +Michelle +Deborah +Laura +Jacqueline +Wendy +Wanda +Debra +Rebecca +Carolyn +Kelly +Regina +Paula +Cheryl +Carol +Sonya +Kathy +Janet +Nancy +Dana +Beverly +Amanda +Tonya +Anita +Carla +Lori +Cindy +Andrea +Robin +Connie +Janice +Julie +Margaret +Terri +Betty +Sarah +Vickie +Felicia +Kim +Shirley +Valerie +Sheila +Melinda +Monica +Theresa +Catherine +Melanie +Cathy +Charlotte +Shelia +Cassandra +Martha +Vanessa +Dorothy +Gina +Gloria +Leslie +April +Tracey +Stacey +Annie +Dawn +Sabrina +Leigh +Sherri +Belinda +Michele +Yolanda +Rita +Denise +Angelia +Gwendolyn +Vicki +Marilyn +Rachel +Judy +Samantha +Stacy +Veronica +Katherine +Glenda +Katrina +Traci +Christine +Debbie +Shannon +Darlene +Joyce +Virginia +Anna +Jill +Jackie +Audrey +Ann +Sonja +Tammie +Angie +Bonnie +Ginger +Jamie +Peggy +Christina +Kathryn +Kristi +Annette +Daphne +Loretta +Sherrie +Tracie +Victoria +Alice +Penny +Ashley +Diane +Laurie +Suzanne +Deanna +Sylvia +Evelyn +Juanita +Phyllis +Ruby +Sandy +Alicia +Crystal +Jo +Priscilla +Beth +Doris +Frances +Julia +Diana +Adrienne +Sheryl +Joy +Kelley +Lee +Maria +Marsha +Tabatha +Tanya +Helen +Marie +Rose +Christy +Emily +Terry +Aretha +Allison +Jana +Jeanette +Joan +Melody +Yvonne +Anne +Charlene +Jessica +Kelli +Leah +Sara +Sheri +Vivian +Natalie +Patsy +Carrie +Karla +Norma +Renee +Toni +Vicky +Holly +Alisa +Audra +Kimberley +Myra +Ramona +Sonia +Tamara +Yvette +Bobbie +Felecia +Georgia +Kathleen +Misty +Patti +Willie +Becky +Christie +Jerri +Mona +Ruth +Terrie +Susie +Bernadette +Carmen +Dianne +Ellen +Ronda +Bonita +Bridget +Constance +Heather +Jean +Marla +Mildred +Rosie +Tonja +Vera +Billie +Candace +Deana +Elaine +Ethel +Eva +Gail +Jessie +Joann +Lillie +Lynn +Sophia +Tabitha +Ella +Judith +Kellie +Kerry +Lana +Patty +Benita +Edna +Emma +Greta +Jane +Kristy +Lillian +Lora +Valencia +Vonda +Clara +Gena +Jeannie +Jenny +Joanna +Ladonna +Lynda +Marion +Monique +Shelley +Tara +Bridgett +Heidi +Latonya +Mattie +Thelma +Tonia +Amelia +Bridgette +Caroline +Dora +Jacquelyn +Jeanne +Johnnie +Lesa +Marcia +Minnie +Nora +Paige +Shelly +Sue +Suzette +Tiffany +Valeria +Alesia +Beatrice +Bertha +Carole +Dianna +Gladys +Lara +Malinda +Nicole +Paulette +Shawn +Teri +Vickey +Alison +Chandra +Darla +Edith +Fannie +June +Lorie +Marian +Melisa +Pam +Polly +Rosemary +Sharron +Trina +Valarie +Bernice +Christi +Jan +Jeri +Karin +Kristie +Leanne +Lenora +Louise +Reba +Staci +Tami +Bessie +Cecilia +Cheri +Cherie +Colleen +Cora +Danna +Eleanor +Janie +Maxine +Molly +Roberta +Rosa +Rosalind +Tamatha +Teressa +Wendi +Candice +Dedra +Dena +Dina +Geraldine +Hazel +Hope +Ingrid +Jacquline +Jennie +Joanne +Krista +Kristin +Lea +Lorraine +Margie +Mia +Miranda +Nina +Rachael +Sally +Shari +Stacie +Starla +Tammi +Ursula +Alma +Althea +Cami +Erika +Iris +Josephine +Kara +Katie +Lesley +Lois +Lola +Lorene +Lula +Patrice +Rena +Robbie +Robyn +Rosetta +Stefanie +Stella +Tamela +Tawanda +Wilma +Alfreda +Antoinette +Betsy +Candy +Christa +Claudia +Della +Deloris +Erin +Eugenia +Flora +Frankie +Jerrie +Kay +Kecia +Lawanda +Leisa +Lesia +Letitia +Lucille +Lucy +Malissa +Marjorie +Mechelle +Miriam +Mitzi +Rosalyn +Roxanne +Sandi +Sondra +Velma +Windy +Adrian +Cecelia +Celeste +Courtney +Daisy +Danita +Debora +Deirdre +Delois +Essie +Faye +Ida +James +Jannie +Jeanna +Kendra +Kristen +Lauren +Lena +Lorri +Lorrie +Lydia +Maggie +Rebekah +Saundra +Selina +Susanne +Ada +Angeline +Anthony +Casandra +Dale +Earnestine +Eddie +Eloise +Ernestine +Felisha +Florence +Geneva +Gwen +Jeanie +Jocelyn +Joe +Kandy +Kristina +Lauri +Libby +Lucinda +Machelle +Mae +Marcella +Marianne +Maureen +Melodie +Nita +Olivia +Pamala +Portia +Rochelle +Selena +Shelby +Tena +Tia +Tommie +William +Amie +Andra +Arlene +Bethany +Bettie +Celia +Chrystal +Deann +Deidra +Deidre +Deloise +Delores +Demetria +Donya +Edie +Faith +Gayla +Gerri +Gretchen +Gretta +Jenifer +Jimmie +Jodi +Joni +Keisha +Krystal +Laquita +Lou +Marisa +Melonie +Melony +Nanette +Naomi +Nedra +Pat +Pattie +Renae +Renita +Sallie +Shana +Sherryl +Sonji +Stacia +Stephaine +Tawana +Trudy +Veda +Viola +Adriane +Aimee +Alethea +Alisha +Angelina +Antonia +Bobby +Cara +Charles +Cherrie +Chiquita +Cornelia +Danette +Danielle +Deanne +Demetrius +Dixie +Easter +Edwina +Elisa +Elsie +Erica +Erma +Fatima +Felisa +Freda +Freddie +Gale +Gayle +Grace +Harriet +Hattie +Irma +Jeanetta +Jerry +Kandi +Karan +Karon +Kerrie +Kimberlee +Kris +Lashon +Latanya +Letha +Lita +Lynne +Mamie +Marlene +Michael +Michell +Mindy +Natasha +Nettie +Ola +Pauline +Pearlie +Penelope +Rae +Regena +Rhoda +Robbin +Romona +Roslyn +Sabrena +Sebrina +Shellie +Sheron +Tamala +Teena +Telisa +Tereasa +Trena +Tressa +Tricia +Twana +Twyla +Winifred +Lisa +Kimberly +Angela +Tammy +Mary +Melissa +Pamela +Jennifer +Cynthia +Donna +Sharon +Tracy +Karen +Michelle +Tina +Sandra +Stephanie +Susan +Teresa +Patricia +Amy +Laura +Rhonda +Linda +Kelly +Sherry +Elizabeth +Tonya +Brenda +Barbara +Wendy +Deborah +Carol +Rebecca +Paula +Jacqueline +Regina +Debra +Wanda +Sonya +Shannon +Carolyn +Cheryl +Dana +Lori +Nancy +Robin +Amanda +Connie +Cassandra +Julie +Kathy +Sheila +Janet +Janice +Tracey +Margaret +Andrea +Gina +Anita +Beverly +Carla +Leslie +Stacey +Valerie +Yolanda +Melanie +Monica +Terri +Stacy +Shelia +Felicia +Melinda +Cindy +Charlotte +Catherine +Ginger +Sarah +Theresa +Angelia +Michele +Martha +Tammie +Betty +Leigh +April +Dawn +Dorothy +Denise +Veronica +Vickie +Cathy +Kim +Victoria +Christine +Traci +Annie +Katherine +Kelley +Rachel +Rita +Belinda +Gwendolyn +Virginia +Christy +Gloria +Debbie +Ann +Laurie +Christina +Joyce +Penny +Vicki +Jill +Shirley +Judy +Samantha +Vanessa +Kellie +Sherri +Tara +Deanna +Alice +Glenda +Tanya +Tracie +Anna +Jamie +Kristi +Suzanne +Sabrina +Carrie +Marilyn +Aretha +Kelli +Joy +Sonja +Emily +Julia +Loretta +Frances +Allison +Jackie +Katrina +Sandy +Alicia +Angie +Juanita +Lee +Sara +Bonnie +Charlene +Darlene +Tamara +Daphne +Holly +Kristy +Audrey +Ronda +Annette +Ashley +Christie +Diana +Doris +Heather +Kathryn +Melody +Yvonne +Beth +Ellen +Peggy +Renee +Sylvia +Tabatha +Bridget +Phyllis +Rose +Toni +Valarie +Alisa +Diane +Lynn +Constance +Crystal +Evelyn +Leah +Vicky +Audra +Candace +Christi +Karla +Kristie +Ruby +Helen +Lana +Priscilla +Sherrie +Bridgette +Carmen +Jessica +Marie +Misty +Tonia +Vivian +Felecia +Jo +Kimberley +Shelly +Tabitha +Anne +Bobbie +Kathleen +Maria +Marsha +Mona +Nicole +Patsy +Sheryl +Adrienne +Becky +Ramona +Shelley +Ethel +Jana +Natalie +Sheri +Heidi +Jeanette +Judith +Melisa +Sonia +Stacie +Yvette +Chandra +Jane +Kerry +Kristin +Marla +Staci +Coretta +Emma +Tamatha +Terry +Willie +Alfreda +Bonita +Elaine +Gena +Iris +Joan +Lora +Tonja +Benita +Jacquelyn +Janie +Jerri +Ladonna +Lara +Paige +Robyn +Sondra +Tiffany +Caroline +Deana +Dena +Eva +Greta +Jeannie +Joann +Nina +Patrice +Rosie +Sophia +Tami +Vera +Amelia +Bernice +Billie +Candy +Clara +Dianne +Jessie +Kerri +Lesa +Lucy +Mattie +Robbie +Shawn +Tamiko +Valeria +Vonda +Georgia +Johnnie +Kendra +Latonya +Marcia +Meredith +Norma +Rosa +Rosalind +Rosemary +Ruth +Sally +Susie +Valencia +Edna +Ella +Erica +Jennie +Kristina +Lillian +Margie +Vickey +Adrian +Bertha +Bridgett +Esther +Frankie +Ida +Michael +Mildred +Miriam +Myra +Robbin +Rochelle +Selina +Tamela +Tawana +Terrie +Alison +Bethany +Cheri +Christa +Courtney +Deirdre +Dianna +Dina +Gail +Irene +Jodi +Jody +Krista +Lesley +Lillie +Louise +Mia +Minnie +Rena +Tammi +Trina +Alma +Angelique +Anissa +Antoinette +Della +Deloris +Dionne +Erika +Freda +Hope +Jacquline +Jean +Jeanne +Jenny +Joanne +Katie +Lesia +Libby +Lorrie +Malinda +Melonie +Patti +Shelby +Starla +Sue +Teri +Thelma +Ursula +Ada +Aimee +Alecia +Cassie +Claudia +Danielle +Deidra +Edith +Gladys +Hazel +Kay +Kayla +Kristen +Lawanda +Lucinda +Lucretia +Marjorie +Marlo +Mechelle +Melissia +Miranda +Pam +Pauline +Sharron +Stefanie +Wilma +Alberta +Angel +Bernadette +Candice +Cara +Casandra +Danita +Gayla +Grace +James +Janna +Jeanetta +Jeri +Joanna +Kecia +Lauren +Lea +Leanne +Lena +Lenora +Lois +Lorraine +Mamie +Marian +Maxine +Olivia +Patty +Penelope +Reba +Renita +Stella +Velma +Wendi +Alisha +Callie +Cora +Danna +Dora +Earnestine +Eugenia +Fannie +Felisa +Florence +Geneva +Karin +Latanya +Lula +Lydia +Lynda +Maggie +Mandy +Mitzi +Molly +Nikki +Paulette +Polly +Rachael +Renae +Selena +Shari +Stephine +Trudy +Alethea +Althea +Amber +Ava +Brandy +Calandra +Charla +Cherry +Cornelia +Dee +Delores +Doretha +Eleanor +Ernestine +Estella +Faith +Geraldine +Gretta +Jami +Jeanie +Jodie +Joni +Josephine +Josette +Kara +Lorri +Lynne +Marlene +Martina +Michell +Millicent +Missy +Monique +Nora +Regena +Renea +Romona +Shana +Shellie +Teressa +Tommie +Vikki +Youlanda +Adriane +Antonia +Arlene +Brigitte +Camilla +Cecilia +Cherie +Chrystal +Claire +Clarissa +Daisy +Darla +David +Deidre +Delois +Eileen +Evie +Faye +Geri +Ginny +Henrietta +Inez +Ingrid +Irma +Ivy +Jan +Jenifer +Julianne +June +Kathrine +Keri +Kris +Latisha +Latonja +Laurel +Leann +Leesa +Leisa +Marion +Marnie +Melodie +Mollie +Naomi +Nichelle +Pamala +Patrick +Roberta +Rosalyn +Rosetta +Shara +Shauna +Sheron +Susanne +Tawanda +Tena +Tomiko +Valorie +Veda +Windy +Adrianne +Alesia +Amie +Anglea +Antionette +Bessie +Bobby +Casey +Celeste +Charles +Chris +Christal +Christopher +Cristal +Deanne +Debora +Dedra +Deedra +Deena +Denice +Dinah +Dorinda +Elisa +Eloise +Essie +Eunice +Francis +Freida +Gay +Gidget +Gracie +Gretchen +Gwen +Harriet +Jada +Jannie +Jeana +Jerry +Jewell +Jimmie +John +Kari +Karmen +Karon +Kelle +Kenya +Kristine +Lashawn +Latonia +Lawana +Lela +Letha +Letitia +Lisha +Lorie +Machelle +Marianne +Marty +Merry +Mindy +Nita +Nona +Roxanne +Sabrena +Sallie +Scarlett +Sebrina +Serena +Shanda +Sharla +Sherita +Shonda +Suzette +Tania +Tera +Tomeka +Tony +Twanda +Violet +William +Wonda +Kimberly +Angela +Lisa +Tammy +Mary +Jennifer +Pamela +Cynthia +Melissa +Tracy +Donna +Amy +Stephanie +Michelle +Sharon +Teresa +Karen +Tina +Patricia +Susan +Sandra +Laura +Linda +Elizabeth +Shannon +Rhonda +Kelly +Wendy +Rebecca +Sonya +Tonya +Barbara +Regina +Lori +Sherry +Brenda +Julie +Dana +Deborah +Paula +Monica +Carol +Carolyn +Carla +Wanda +Amanda +Cheryl +Stacey +Leslie +Tracey +Beverly +Jacqueline +Robin +Melanie +Yolanda +Debra +Kathy +Connie +Nancy +Terri +Valerie +Andrea +Christy +Stacy +Sheila +Cassandra +Cindy +Felicia +Catherine +Veronica +Julia +Tara +Charlotte +Janice +Kelli +Traci +Belinda +Sarah +Janet +Heather +Katherine +Leigh +Shelia +Rachel +Betty +Victoria +Dawn +Anita +Margaret +Vanessa +Michele +Tanya +Vickie +Melinda +Christine +Kim +Tracie +Gina +Shirley +Virginia +Martha +Angelia +April +Cathy +Samantha +Deanna +Denise +Theresa +Vicki +Kathryn +Christina +Tammie +Gloria +Sabrina +Kristi +Nicole +Sherri +Ann +Annie +Daphne +Katrina +Alicia +Dorothy +Anna +Joyce +Kellie +Frances +Sandy +Sonja +Ginger +Holly +Judy +Kristie +Marilyn +Suzanne +Jill +Kelley +Alice +Ashley +Carrie +Debbie +Gwendolyn +Rita +Darlene +Jamie +Annette +Diane +Glenda +Penny +Angie +Latonya +Bridget +Toni +Jo +Christie +Emily +Jessica +Beth +Laurie +Leah +Tabitha +Allison +Lee +Rose +Audrey +Crystal +Evelyn +Kristy +Tamara +Bonnie +Doris +Joy +Kimberley +Marie +Natalie +Jackie +Loretta +Marsha +Peggy +Tonia +Helen +Jana +Tabatha +Candace +Dena +Erica +Meredith +Bobbie +Charlene +Diana +Juanita +Lora +Lynn +Sylvia +Vivian +Candy +Constance +Melody +Phyllis +Sheryl +Trina +Becky +Kathleen +Misty +Ruby +Sheri +Aretha +Christi +Anne +Rosie +Shelly +Sherrie +Alisa +Jacquelyn +Ramona +Robyn +Sara +Sonia +Bridgette +Deana +Karla +Kristin +Lana +Shelley +Willie +Ellen +Felecia +Iris +Kerry +Lorie +Marla +Melisa +Paige +Patti +Priscilla +Shawn +Shonda +Staci +Yvonne +Elaine +Jeannie +Jenny +Maria +Myra +Ruth +Shana +Sondra +Stacie +Valarie +Clara +Ella +Erin +Joanna +Marcia +Ronda +Terry +Tiffany +Tonja +Vicky +Amber +Benita +Georgia +Jerri +Jodi +Katie +Ladonna +Marjorie +Norma +Susie +Tami +Valencia +Adrienne +Hope +Janie +Judith +Kristina +Lillie +Paulette +Renee +Robbie +Bridgett +Carmen +Danielle +Edna +Eva +Jane +Jean +Jeanette +Teri +Chandra +Edith +Heidi +Ingrid +Kendra +Kristen +Latricia +Lesley +Mattie +Patty +Tamatha +Amelia +Audra +Bethany +Camille +Cheri +Cherie +Christa +Deidra +Dianne +Emma +Ethel +Gail +Kerri +Lara +Lawanda +Lillian +Mitzi +Yvette +Angel +Bernice +Candice +Casandra +Dedra +Gena +Jessie +Joan +Joann +Joanne +Johnnie +Krista +Lea +Mona +Nora +Patrice +Renita +Rosa +Rosemary +Serena +Tamika +Bonita +Caroline +Coretta +Dianna +Dionne +Erika +Gladys +Hattie +Jeanne +Letitia +Lynda +Lynne +Malinda +Monique +Pam +Rachael +Sharron +Suzette +Tamela +Vonda +Adrian +Alecia +Alisha +Alma +Ava +Brandi +Cecilia +Deirdre +Dina +Krystal +Lauren +Leanne +Lorraine +Margie +Marion +Mechelle +Molly +Pamala +Rena +Robbin +Roberta +Rosetta +Shanda +Valeria +Vera +Aimee +Anissa +Billie +Camilla +Carole +Delores +Deloris +Ericka +Ida +Jada +Jan +Jennie +Kara +Kecia +Lesa +Louise +Lucinda +Lucretia +Lydia +Mae +Marlo +Mildred +Minnie +Olivia +Penelope +Rebekah +Rosalind +Selena +Beatrice +Bernadette +Cecelia +Cora +Delois +Demetria +Eugenia +Fannie +Faye +Francine +Gayla +Grace +Janna +Keri +Larhonda +Latanya +Laurel +Lesia +Mia +Michael +Miranda +Nadine +Patsy +Shanna +Terrie +Thelma +Tricia +Alana +Alison +Bertha +Bessie +Charity +Chelsea +Cherry +Christal +Claudia +Courtney +Dee +Elisa +Greta +Gwen +Janis +Jeri +John +Josephine +Kristine +Lashawn +Lela +Lena +Lucy +Marcy +Marnie +Mollie +Nita +Portia +Rochelle +Saundra +Shellie +Sheree +Stella +Tisha +Towanda +Twana +Valorie +Wendi +Alfreda +Allyson +Angelique +Antionette +Antoinette +Antonia +Brandy +Catrina +Celeste +Colleen +Darla +Deidre +Della +Ernestine +Faith +Frankie +Geneva +Geraldine +Harriet +Jacquline +Jeanetta +Jewel +June +Kellye +Kerrie +Laquita +Lasonya +Latonja +Malissa +Marguerite +Marlene +Maureen +Melonie +Miriam +Nichole +Nikki +Pauline +Renae +Sally +Shelby +Sophia +Starla +Stefanie +Sue +Susanne +Tamera +Tasha +Tia +Tyra +Vikki +Ada +Adriane +Adriene +Amie +Angelina +Bobby +Cari +Clarissa +Cristy +Davina +Deann +Demetra +Dinah +Dora +Esther +Eunice +Hollie +James +Jami +Karin +Katharine +Kay +Kayla +Kenya +Kirsten +Lanette +Latonia +Leisa +Lois +Lorrie +Lynette +Merry +Naomi +Natasha +Nelda +Nina +Polly +Rolanda +Roxie +Scarlett +Shari +Shea +Shunda +Tammi +Tamra +Ursula +William +Zandra +Adrianne +Aletha +Alethea +Anthony +Arlene +Betsy +Brigitte +Cara +Carmella +Cassie +Charita +Cherrie +Chrystal +David +Deanne +Delana +Dixie +Earnestine +Elisabeth +Eloise +Etta +Evette +Felisa +Florence +Fonda +Francis +Freda +Gayle +Haley +Hazel +Jeannette +Joe +Jonna +Kandi +Kathie +Katrice +Keisha +Lashelle +Latrice +Lavonda +Lawana +Lila +Lorna +Lou +Lucille +Lula +Machelle +Maggie +Maxine +Melaine +Millie +Misti +Nichelle +Nola +Rachelle +Rosalyn +Roxann +Sallie +Sebrina +Shani +Shawna +Sherita +Sherron +Tena +Tessa +Velma +Vickey +Whitney +Windy +Yolonda +Youlanda +Yulanda +Kimberly +Angela +Jennifer +Tammy +Lisa +Mary +Tracy +Pamela +Amy +Stephanie +Melissa +Cynthia +Michelle +Donna +Karen +Sharon +Tina +Shannon +Wendy +Teresa +Susan +Elizabeth +Sandra +Rhonda +Laura +Dana +Tonya +Kelly +Rebecca +Sherry +Patricia +Linda +Christy +Amanda +Lori +Regina +Julie +Sonya +Carla +Tara +Paula +Stacy +Heather +Monica +Felicia +Brenda +Sabrina +Wanda +Tracey +Carol +Barbara +Beverly +Deborah +Jacqueline +Leslie +Nancy +Cindy +Andrea +Carolyn +Melinda +Stacey +Tanya +Melanie +Kathy +Margaret +Rachel +Sheila +Dawn +Cassandra +Valerie +Shelia +Debra +April +Tracie +Robin +Gina +Anita +Yolanda +Connie +Katrina +Terri +Traci +Kelli +Leigh +Cheryl +Kristi +Janet +Michele +Theresa +Alicia +Vanessa +Ashley +Deanna +Cathy +Veronica +Catherine +Charlotte +Denise +Kristie +Tiffany +Vickie +Christine +Sarah +Samantha +Victoria +Erica +Kim +Betty +Janice +Nicole +Allison +Belinda +Gwendolyn +Katherine +Gloria +Martha +Angelia +Christina +Holly +Kristy +Tammie +Vicki +Daphne +Ginger +Sherri +Carrie +Sonja +Ann +Debbie +Anna +Crystal +Kathryn +Virginia +Christie +Frances +Peggy +Shirley +Marsha +Dorothy +Tonia +Annie +Judy +Kellie +Rita +Jessica +Joyce +Julia +Karla +Kelley +Meredith +Natalie +Patrice +Shelley +Bridget +Laurie +Latonya +Emily +Jackie +Suzanne +Sylvia +Audrey +Glenda +Helen +Jill +Charlene +Diane +Stacie +Tabitha +Tamara +Adrienne +Alice +Beth +Jamie +Kristina +Misty +Penny +Sandy +Tabatha +Bobbie +Bonnie +Dena +Diana +Renee +Vicky +Annette +Kathleen +Krista +Shelly +Toni +Kristin +Lee +Marilyn +Phyllis +Staci +Trina +Angie +Chandra +Christa +Loretta +Maria +Shawn +Vivian +Christi +Jeannie +Sonia +Amelia +Candy +Carmen +Leah +Sara +Sheri +Stefanie +Angel +Evelyn +Juanita +Kerri +Kerry +Marie +Priscilla +Alison +Candace +Joanna +Shana +Billie +Bridgett +Doris +Felecia +Hope +Jerri +Joy +Kendra +Ladonna +Melody +Robbie +Anne +Becky +Constance +Danielle +Deana +Erika +Jana +Marcia +Sherrie +Tricia +Kimberley +Lana +Lara +Melisa +Sophia +Terry +Valeria +Yvonne +Anissa +Jenny +Jo +Lora +Patsy +Sharron +Elaine +Ellen +Kristen +Rose +Ruby +Sondra +Deidre +Judith +Lillian +Marla +Robyn +Ronda +Tonja +Valencia +Aretha +Benita +Bridgette +Darlene +Eva +Lawanda +Lynn +Monique +Rachael +Ramona +Serena +Amber +Audra +Dianne +Ella +Jean +Jeanne +Jessie +Joan +Myra +Norma +Darla +Emma +Gena +Georgia +Iris +Lorie +Mona +Shanna +Tammi +Teri +Caroline +Catrina +Jacquelyn +Lois +Lucinda +Paige +Patti +Patty +Roberta +Ruth +Shonda +Tami +Valarie +Alisa +Bertha +Cecelia +Dianna +Dionne +Edna +Greta +Jane +Janie +Letitia +Nichole +Sally +Sheryl +Tamatha +Tamela +Bessie +Bonita +Courtney +Ethel +Jan +Katie +Lorrie +Shauna +Candice +Claudia +Dina +Gail +Jodi +Johnnie +Lauren +Lesley +Marlo +Miriam +Molly +Natasha +Nina +Sandi +Starla +Tangela +Terra +Terrie +Vera +Wendi +Yvette +Alexis +Allyson +Antoinette +Bernice +Bethany +Brandy +Deidra +Edith +Erin +Jada +Janna +Jodie +Kara +Lashawn +Lea +Lucy +Lydia +Malinda +Mildred +Rosalind +Shawna +Shelby +Stella +Willie +Windy +Aimee +Angelique +Brooke +Cherie +Coretta +Dora +Ericka +Eunice +Florence +Geraldine +Gladys +Grace +Jennie +Joann +Latanya +Lynda +Marcie +Mindy +Miranda +Mitzi +Paulette +Raquel +Stacia +Vonda +Alisha +Arlene +Bernadette +Calandra +Casandra +Cassie +Chanda +Cheri +Clarissa +Dedra +Deloris +Eleanor +Heidi +Jeri +Karin +Keisha +Lillie +Marcy +Mattie +Misti +Nora +Pam +Rolanda +Sebrina +Selena +Shea +Susie +Tawana +Tessie +Winifred +Alecia +Alethea +Ami +Beatrice +Brandi +Cecilia +Cherry +Christian +Cristy +Delores +Demetria +Elisa +Esther +Eugenia +Felisa +Francine +James +Jeana +Joanne +Katrice +Kimberely +Leann +Lesa +Mae +Margie +Marion +Michael +Minnie +Pauline +Rena +Renita +Sabrena +Tamika +Tania +Tanja +Trena +Ursula +Adrian +Alma +Callie +Cara +Charity +Clara +Colleen +Deena +Elise +Fannie +Freda +Gay +Gayla +Geneva +Hazel +Holley +Hollie +Jeanie +Jeanna +Jenifer +Jimmie +Karrie +Kecia +Kenya +Keri +Kerrie +Kristine +Latonia +Latonja +Latricia +Laurel +Lauri +Leanne +Lenora +Lou +Mechelle +Melonie +Myrtle +Rebekah +Rene +Rochelle +Rosalyn +Roslyn +Ruthie +Sue +Tamala +Tera +Thelma +Tisha +Valorie +Whitney +Zandra +Ada +Angelina +Anjanette +Annetta +Antionette +Ava +Chris +Danna +Dee +Delisa +Desiree +Fonda +Gretchen +Harriet +Hattie +Holli +India +Irene +Jacquline +Jeanette +Joni +Josephine +Josette +Kari +Kesha +Lajuana +Lashun +Lasonya +Lavonda +Lesia +Leslee +Lizzie +Lola +Lucretia +Mamie +Mandy +Marcella +Marjorie +Melba +Merry +Mia +Muriel +Nellie +Nikki +Pamala +Polly +Portia +Reba +Rosa +Roxanne +Saundra +Shari +Sharla +Tamera +Tawanda +Tiffanie +Tomeka +Treva +Tyra +Venita +Vickey +Vikki +Adriane +Adrianne +Andra +Andria +Arlinda +Betsy +Bobbi +Brigitte +Camille +Celena +Chiquita +Christal +Claudette +Cornelia +Deirdre +Donnie +Dorothea +Faith +Faye +Frankie +Genevieve +Geri +Gretta +Ingrid +Jami +Jerry +Jody +John +Kasey +Kayla +Keely +Keshia +Kimberlee +Kristal +Krystal +Laquita +Laronda +Lasonja +Latrice +Leanna +Leila +Lela +Leticia +Lorri +Louise +Lula +Mellissa +Mesha +Nadine +Olivia +Penelope +Robbin +Romona +Rosie +Sallie +Sebrena +Selina +Shanda +Sharlene +Sheree +Sherron +Shiela +Shona +Sonda +Stephani +Subrina +Tameka +Tasha +Tommie +Trisha +Jennifer +Angela +Kimberly +Tammy +Mary +Amy +Lisa +Stephanie +Melissa +Pamela +Tracy +Cynthia +Michelle +Tina +Karen +Sharon +Wendy +Shannon +Teresa +Susan +Donna +Elizabeth +Tonya +Dana +Patricia +Sandra +Rhonda +Christy +Rebecca +Amanda +Laura +Sherry +Stacy +Monica +Kelly +Julie +Heather +Sonya +April +Felicia +Stacey +Deborah +Regina +Tara +Barbara +Lori +Andrea +Cheryl +Linda +Tracey +Wanda +Yolanda +Debra +Paula +Beverly +Leslie +Melanie +Brenda +Carolyn +Kathy +Robin +Ashley +Dawn +Cindy +Rachel +Connie +Kristi +Christina +Carla +Leigh +Cassandra +Jacqueline +Melinda +Tanya +Erica +Nancy +Terri +Carol +Tiffany +Margaret +Sabrina +Alicia +Katherine +Catherine +Anita +Traci +Ginger +Katrina +Kristie +Valerie +Shelia +Veronica +Janice +Angelia +Kristy +Latonya +Vanessa +Janet +Belinda +Tracie +Nicole +Sheila +Kim +Crystal +Holly +Marsha +Tammie +Charlotte +Jessica +Anna +Gina +Kelli +Christie +Allison +Carrie +Cathy +Kathryn +Stacie +Victoria +Sarah +Deanna +Michele +Christine +Theresa +Denise +Gloria +Martha +Misty +Shirley +Tabitha +Betty +Virginia +Emily +Vickie +Dorothy +Daphne +Diane +Jamie +Marilyn +Penny +Suzanne +Ann +Gwendolyn +Sherri +Tamara +Kelley +Toni +Joyce +Samantha +Tonia +Alice +Angie +Debbie +Patrice +Annie +Bridget +Jill +Leah +Joy +Laurie +Loretta +Angel +Sara +Natasha +Rita +Trina +Erika +Audrey +Bonnie +Carmen +Christa +Jacquelyn +Judy +Kerry +Meredith +Vicki +Candice +Diana +Frances +Jenny +Sonja +Alison +Beth +Candace +Christi +Jackie +Julia +Shelly +Glenda +Maria +Shelley +Candy +Natalie +Annette +Becky +Juanita +Lawanda +Staci +Kimberley +Ramona +Tricia +Kathleen +Kristina +Peggy +Sheri +Sylvia +Audra +Evelyn +Helen +Krista +Lee +Marcia +Melody +Renee +Vivian +Lora +Miranda +Sonia +Bridgett +Felecia +Kellie +Kendra +Aimee +Anne +Bobbie +Charlene +Jana +Jane +Phyllis +Sandy +Darlene +Dianne +Hope +Joanna +Marie +Sherrie +Yvonne +Alisha +Brandy +Marcie +Robyn +Alisa +Brandi +Dena +Karla +Kerri +Kristin +Myra +Nikki +Priscilla +Adrienne +Caroline +Kara +Kristen +Lana +Lesley +Mona +Sheryl +Tonja +Willie +Anissa +Doris +Elaine +Iris +Joann +Lynn +Sally +Shana +Teri +Bridgette +Catrina +Heidi +Lara +Lashonda +Lorie +Selena +Yvette +Chandra +Deana +Dionne +Jeannie +Melisa +Ronda +Tabatha +Tamela +Terry +Ursula +Valarie +Vicky +Wendi +Constance +Deidra +Dianna +Ellen +Erin +Greta +Jeanette +Jo +Monique +Patsy +Robbie +Rosie +Sophia +Tamala +Tami +Tammi +Valencia +Valeria +Eva +Jeanne +Jennie +Katie +Ladonna +Latanya +Latonia +Marla +Paige +Rachael +Raquel +Rose +Ruby +Shawn +Allyson +Amber +Amelia +Chanda +Danielle +Deirdre +Demetria +Ericka +Janie +Jeri +Johnnie +Judith +Lasonya +Lydia +Marcy +Molly +Nina +Ruth +Sharron +Shelby +Tangela +Aretha +Bethany +Danita +Ingrid +James +Jerri +Joan +Lillie +Marion +Mia +Nichole +Patti +Patty +Paulette +Rebekah +Selina +Shonda +Terra +Tisha +Vera +Billie +Candi +Clarissa +Deidre +Edna +Eleanor +Geraldine +Jeanie +Keisha +Lauren +Lillian +Margie +Michael +Norma +Serena +Shanda +Sondra +Stefanie +Susanne +Tamatha +Tasha +Whitney +Bernadette +Danna +Ethel +Francine +Janna +Jean +Jodi +Jody +Kecia +Krystal +Latasha +Lucy +Malinda +Marian +Marjorie +Mattie +Mechelle +Rosa +Shellie +Sherita +Terrie +Zandra +Angelique +Benita +Cassie +Celia +Charity +Cherry +Courtney +Cristy +Donya +Ella +Frankie +Gail +Ida +Jeanna +Joanne +Kandy +Latricia +Lea +Leanne +Mamie +Marci +Mildred +Rena +Robbin +Rochelle +Saundra +Shea +Stacia +Tamika +Tawana +Tessa +Trisha +Tyra +Windy +Adrian +Antonia +Buffy +Cara +Casandra +Chelsea +Chrystal +Colleen +Cora +Dara +Delores +Edith +Freda +Gena +Holli +Jan +Jessie +Jodie +Kari +Keri +Latisha +Lawana +Letitia +Lucinda +Lynda +Melony +Miriam +Misti +Mitzi +Pamala +Portia +Renita +Rosalind +Sandi +Tameka +Tera +Teressa +Tiffani +Valorie +Adrianne +Alfreda +Alissa +Antoinette +Ashleigh +Bertha +Bonita +Carole +Christopher +Clara +Consuelo +Daisy +Delisa +Dina +Emma +Essie +Eugenia +Gladys +Jada +Jeanetta +Jerrie +Jerry +Josephine +Kay +Kesha +Kimberely +Lashawn +Laurel +Lena +Lorri +Louise +Marlo +Mindy +Minnie +Muriel +Naomi +Penelope +Polly +Robert +Roberta +Rosemary +Shanna +Shawna +Steven +Tarsha +Venus +Vonda +William +Alanna +Alexandra +Alexis +Angelina +Angeline +Anjanette +Audrea +Callie +Cecilia +Cheri +Cherie +Claudia +Darcy +Dee +Della +Deloris +Etta +Gayla +Georgia +Gidget +Irene +Johanna +John +Joycelyn +Kasey +Kathrine +Kerrie +Kimberlee +Lashunda +Latoya +Latrice +Leann +Leanna +Lois +Lona +Lorna +Lorrie +Lucretia +Lynette +Machelle +Mandy +Marlene +Mavis +Pennie +Rolanda +Scarlett +Shari +Shauna +Tania +Tawanna +Teena +Timothy +Tommie +Trena +Twanda +Velma +Wilma +Yulonda +Adria +Adriane +Alma +Andra +Antionette +Ashlee +Ayanna +Beatrice +Bernice +Bessie +Betsy +Brooke +Cammie +Carie +Cathryn +Chantel +Claire +Consuela +Coretta +Corliss +Cornelia +Cristina +Deanne +Denita +Devina +Diann +Dinah +Eunice +Fannie +Faye +Felisa +George +Grace +Gretchen +Hattie +Hayley +Hollie +India +Ivy +Janine +Janis +Jenifer +Jocelyn +Johnna +Jonna +Josette +Juliet +Juliette +June +Katharine +Kayla +Kenya +Kristal +Larhonda +Latrina +Laverne +Leisa +Lenore +Leslee +Letha +Lola +Loretha +Malissa +Marcella +Margo +Marnie +Megan +Melonie +Merry +Michell +Millicent +Olivia +Pam +Pamelia +Patrica +Petrina +Phaedra +Racheal +Rachelle +Rosetta +Roslyn +Roxanne +Shanta +Shantel +Shara +Sharonda +Shayla +Shonna +Stephenie +Sunny +Susie +Tamera +Tangi +Tangie +Tawanda +Thelma +Tonda +Tresa +Trista +Twana +Twila +Venessa +Yolonda +Zaneta +Jennifer +Angela +Kimberly +Stephanie +Amy +Tammy +Mary +Melissa +Lisa +Tracy +Tonya +Cynthia +Michelle +Shannon +Pamela +Tina +Sharon +Wendy +Julie +April +Elizabeth +Teresa +Rebecca +Christy +Karen +Susan +Laura +Donna +Tara +Patricia +Stacy +Heather +Sandra +Amanda +Monica +Dana +Rhonda +Andrea +Melanie +Sherry +Linda +Kelly +Lori +Sonya +Stacey +Katina +Tanya +Erica +Felicia +Leslie +Regina +Yolanda +Barbara +Paula +Kristi +Katrina +Nicole +Rachel +Brenda +Cassandra +Christina +Dawn +Ashley +Katherine +Latonya +Robin +Wanda +Alicia +Carla +Terri +Deborah +Misty +Debra +Tiffany +Crystal +Tracey +Melinda +Sabrina +Beverly +Leigh +Carolyn +Catherine +Christie +Cheryl +Cindy +Denise +Kathy +Charlotte +Nancy +Connie +Ginger +Jacqueline +Janice +Kristie +Shelia +Carol +Sheila +Valerie +Christine +Allison +Belinda +Betty +Brandi +Carrie +Veronica +Angel +Sarah +Traci +Michele +Brandy +Kristy +Theresa +Emily +Gina +Margaret +Vanessa +Virginia +Anna +Catina +Janet +Kelli +Samantha +Victoria +Julia +Deanna +Jessica +Natasha +Jamie +Marsha +Angelia +Anita +Sonja +Vickie +Laurie +Tonia +Shelley +Tracie +Kim +Cathy +Shirley +Holly +Debbie +Kathryn +Candace +Gloria +Tammie +Gwendolyn +Kelley +Bridget +Erika +Martha +Nikki +Angie +Judy +Penny +Rita +Christi +Kellie +Maria +Sherri +Annie +Jenny +Alice +Daphne +Leah +Stacie +Suzanne +Adrienne +Bonnie +Jackie +Vicki +Ann +Jana +Karla +Kristina +Loretta +Shelly +Charlene +Jill +Joyce +Paige +Kerri +Sandy +Tamara +Chandra +Joy +Kristen +Marilyn +Meredith +Trina +Diane +Dorothy +Felecia +Helen +Melody +Audrey +Carmen +Diana +Ericka +Keisha +Kendra +Sara +Teri +Danielle +Frances +Toni +Kristin +Lawanda +Marie +Patrice +Robyn +Sylvia +Evelyn +Kathleen +Tabatha +Wendi +Amber +Darlene +Jane +Latasha +Monique +Ronda +Yvonne +Annette +Audra +Becky +Bobbie +Bridgett +Heidi +Joanna +Peggy +Renee +Shelby +Staci +Tabitha +Aimee +Beth +Catrina +Glenda +Ladonna +Mona +Shawn +Willie +Alisa +Candy +Doris +Jennie +Kimberley +Krystal +Natalie +Ramona +Sherrie +Shonda +Sonia +Terra +Alison +Anissa +Anne +Candice +Chiquita +Deana +Demetria +Jeanette +Jeannie +Katie +Keri +Lana +Priscilla +Rochelle +Tamika +Tonja +Valencia +Vicky +Bethany +Christa +Dena +Dionne +Ellen +Jan +Kenya +Latonia +Marcia +Nichole +Nina +Phyllis +Amelia +Bridgette +Emma +Janie +Jo +Jodi +Juanita +Kara +Kerry +Latanya +Lillian +Lora +Myra +Rachael +Ruby +Sally +Sheryl +Sondra +Tawana +Terry +Valeria +Adrian +Aretha +Benita +Casandra +Constance +Erin +Lena +Marjorie +Rebekah +Shana +Shawna +Sheri +Sophia +Ursula +Vivian +Cheri +Contina +Courtney +Deidra +Joann +Lashonda +Lasonya +Latoya +Lee +Lorie +Lydia +Lynn +Marcie +Marcy +Melisa +Rose +Tasha +Tricia +Alisha +Casey +Dianna +Edith +Jada +Jerri +Krista +Kristine +Lara +Lesley +Marla +Molly +Selena +Shanda +Sharron +Stefanie +Tameka +Tami +Windy +Antoinette +Billie +Caroline +Danita +Dina +Jessie +Joan +Jody +Lashawn +Lauren +Lillie +Miranda +Misti +Robbie +Shanna +Shellie +Tamela +Tera +Valarie +Bessie +Charity +Dianne +Edna +Eugenia +Gail +Georgia +Iris +Jeanne +Jenifer +Judith +Malinda +Mandy +Nikita +Patti +Renita +Sheree +Susie +Alecia +Anglia +Ayanna +Cecilia +Celeste +Clara +Cristy +Deirdre +Eva +Freda +Gena +Ingrid +Jeanie +Jimmie +Latisha +Latricia +Lucretia +Lynda +Maggie +Mia +Mildred +Norma +Rosalind +Serena +Tawanda +Thelma +Bernice +Betsy +Candi +Celestine +Christal +Consuelo +Coretta +Deidre +Frankie +Geneva +Holli +Jeri +Kesha +Kisha +Lola +Lorrie +Lucy +Melonie +Mindy +Patsy +Paulette +Polly +Rena +Rosemary +Selina +Starla +Tammi +Terrie +Tomeka +Trisha +Yvette +Alana +Allyson +Amie +Andria +Bobbi +Bonita +Callie +Chanda +Colleen +Cotina +Dedra +Della +Elaine +Felita +Ginny +Gretchen +Hattie +Hope +Jodie +Kecia +Kerrie +Lois +Lorraine +Margie +Marion +Mattie +Mechelle +Michael +Michell +Mitzi +Niki +Patty +Raquel +Rosie +Ruth +Sandi +Tania +Tijuana +Tisha +Vonda +Alycia +Andra +Angelica +Antionette +Beatrice +Bertha +Brooke +Candie +Cassie +Celena +Charles +Chasity +Cherry +Christopher +Claudia +Darla +Deonna +Eleanor +Ernestine +Ethel +Faye +Grace +Holley +Hollie +Jacquelyn +Jammie +Joycelyn +Katrena +Lakecia +Lakisha +Lashanda +Lashunda +Latrina +Latunya +Lea +Letitia +Mamie +Marianne +Megan +Olivia +Patrica +Portia +Rachelle +Robert +Rosalyn +Shasta +Shaunda +Sherita +Tangela +Tangie +Tanisha +Twanda +Tyra +Verna +Adrianne +Alfreda +Althea +Alyson +Angelina +Angelique +Angella +Antonia +Autumn +Brandee +Calandra +Cara +Carey +Carole +Charla +Charmin +Chastity +Chrystal +Cindi +Clarissa +Crissy +Daisy +David +Dayna +Deena +Delicia +Delilah +Denice +Devona +Dora +Elisa +Eunice +Florence +Gayle +Greta +Gwen +Hellen +Inga +Ivy +Jaime +Jeana +Jeanine +Johnnie +Josephine +Julianne +Kandy +Kasey +Kate +Kathrine +Keshia +Kimbley +Lajuana +Lakeisha +Larissa +Lashun +Latosha +Latrice +Laurel +Lavonda +Lolita +Lucinda +Lynette +Malissa +Melodie +Minnie +Miriam +Natarsha +Nora +Octavia +Pam +Rolanda +Ronita +Rosa +Sallie +Saundra +Scarlet +Shanta +Shantel +Shari +Sharonda +Shawanda +Stella +Stephaine +Stephenie +Sue +Susanne +Tamala +Tamatha +Tanja +Tawanna +Teressa +Tessie +Tiffaney +Trista +Twana +Velma +Vera +Whitney +Yulanda +Zandra +Jennifer +Angela +Kimberly +Amy +Stephanie +Mary +Melissa +Tammy +Lisa +Tonya +Tracy +Michelle +April +Heather +Amanda +Cynthia +Christy +Pamela +Wendy +Rebecca +Tina +Elizabeth +Shannon +Julie +Sharon +Susan +Melanie +Dana +Teresa +Donna +Karen +Stacey +Laura +Patricia +Stacy +Andrea +Kelly +Lori +Misty +Rhonda +Sandra +Sherry +Sonya +Tara +Regina +Monica +Linda +Melinda +Robin +Felicia +Tanya +Erica +Christina +Nicole +Tiffany +Brandy +Leslie +Crystal +Kristi +Ashley +Barbara +Carla +Rachel +Paula +Brandi +Alicia +Katrina +Katina +Latonya +Cindy +Kristie +Terri +Valerie +Yolanda +Dawn +Carrie +Tracey +Veronica +Denise +Kristy +Margaret +Cassandra +Holly +Katherine +Jacqueline +Sabrina +Cheryl +Wanda +Christie +Beverly +Debra +Jessica +Sarah +Brenda +Deborah +Ginger +Anna +Leigh +Carol +Tamara +Catherine +Emily +Janet +Belinda +Carolyn +Angelia +Theresa +Connie +Traci +Anita +Victoria +Allison +Bridget +Jamie +Sheila +Shelia +Janice +Christine +Kathy +Stacie +Tracie +Kristen +Charlotte +Martha +Kathryn +Sonja +Tammie +Jenny +Shelley +Virginia +Gwendolyn +Gina +Marsha +Nancy +Sherri +Jackie +Cathy +Jill +Julia +Michele +Suzanne +Vanessa +Meredith +Vickie +Angel +Betty +Shirley +Catina +Candace +Deanna +Dorothy +Joyce +Kellie +Marilyn +Amber +Ann +Angie +Daphne +Debbie +Gloria +Natasha +Samantha +Shelly +Staci +Alison +Candice +Jana +Laurie +Peggy +Sandy +Christi +Evelyn +Joanna +Bridgett +Candy +Kelli +Kim +Leah +Sonia +Alice +Christa +Danielle +Latasha +Penny +Selena +Bridgette +Joy +Judy +Keisha +Lashonda +Latanya +Marcia +Maria +Bobbie +Carmen +Lee +Tamika +Trina +Vicki +Annette +Annie +Bonnie +Helen +Kristin +Natalie +Tabatha +Aimee +Chandra +Ericka +Erika +Jo +Kara +Kendra +Kerri +Kristina +Loretta +Tonia +Audrey +Diane +Kelley +Krystal +Melody +Toni +Charity +Diana +Lawanda +Rita +Sara +Tasha +Beth +Robyn +Sherrie +Sylvia +Chastity +Claudia +Darlene +Juanita +Karla +Kenya +Nikki +Phyllis +Stefanie +Adrienne +Bethany +Billie +Dena +Glenda +Monique +Tabitha +Tameka +Tomeka +Catrina +Ellen +Jeannie +Latonia +Patrice +Priscilla +Renee +Alisha +Anne +Erin +Felecia +Myra +Paige +Ramona +Charlene +Chasity +Dianna +Heidi +Jane +Jennie +Jodi +Krista +Lynn +Marie +Marla +Mattie +Miranda +Ruby +Shonda +Terrie +Amelia +Caroline +Frances +Kimberley +Ladonna +Latisha +Misti +Nichole +Rachael +Robbie +Rosie +Tawanda +Willie +Yvonne +Brandie +Cheri +Elaine +Emma +Hope +Judith +Kathleen +Kesha +Lorie +Melisa +Ruth +Selina +Shanna +Sharron +Tawana +Terra +Tonja +Valeria +Wendi +Becky +Casey +Demetrice +Jerri +Joann +Latoya +Lesley +Molly +Rose +Shelby +Tami +Tangela +Terry +Valarie +Vivian +Adrian +Audra +Cassie +Chiquita +Deidre +Dianne +Jeanie +Jenifer +Kristal +Lasonya +Malinda +Rochelle +Ronda +Sheri +Tricia +Vicky +Alisa +Benita +Bertha +Casandra +Celeste +Constance +Contessa +Georgia +Janie +Lakeisha +Lora +Lorrie +Melonie +Shawn +Sheryl +Sophia +Tanisha +Tera +Teri +Antoinette +Cherie +Deana +Demetria +Dionne +Doris +Edith +Edna +Ethel +Eugenia +Greta +Hattie +Jan +Jody +Kerry +Lea +Lillie +Lois +Lucy +Lydia +Nina +Patsy +Patti +Patty +Rebekah +Rosa +Shanda +Tawanna +Vera +Whitney +Alana +Callie +Carole +Cecelia +Chanda +Dina +Eva +Kari +Kay +Lakesha +Latrice +Laurel +Lauren +Letitia +Malissa +Robert +Shawna +Sondra +Tamiko +Tomekia +Anissa +Aretha +Bernadette +Cara +Cecilia +Courtney +Cristy +Deena +Demetra +Felica +Gena +Ivy +Jacquelyn +James +Jean +Jeanette +Keri +Lakisha +Lana +Lashunda +Latarsha +Latosha +Lenora +Mandy +Margie +Marion +Mitzi +Naomi +Olivia +Shana +Sherita +Starla +Tamela +Trudy +Alfreda +Allyson +Andria +Angelica +Brooke +Carey +Chrystal +Clara +Danita +David +Gladys +Hazel +Hilary +Ingrid +Iris +Jeanna +Jessie +Johanna +Katie +Kendall +Kisha +Lakeshia +Lashawn +Leann +Leanne +Lolita +Louise +Lucretia +Marcie +Marian +Michael +Michell +Mindy +Nikita +Rachelle +Rosemary +Roxanne +Sheree +Shondra +Susie +Tamekia +Teressa +Tessa +Tisha +Tracee +Vonda +Vonetta +Alecia +Alesia +Alethea +Alma +Alyssa +Angelique +Beatrice +Bernice +Bessie +Betsy +Bonita +Candi +Carmela +Charla +Charmaine +Claudette +Consuela +Coretta +Cornelia +Danyell +Dedra +Dee +Deidra +Deirdre +Eleanor +Esther +Felisha +Flora +Frankie +Freda +Holley +Hollie +Ida +Janna +Johnnie +Lamonica +Laquinta +Lara +Lashanda +Lashondra +Latonja +Latricia +Lynda +Marcella +Marci +Marjorie +Mildred +Millicent +Miriam +Nora +Norma +Paulette +Petrina +Portia +Reba +Renita +Roberta +Rolanda +Rosalyn +Sandi +Serena +Shellie +Stephine +Suzette +Tamatha +Tammi +Tania +Tarsha +Twila +Velma +Windy +Alesha +Alyson +Amie +Ammie +Anglea +Bernita +Buffy +Cameron +Camille +Candie +Caryn +Charissa +Christal +Christopher +Cicely +Consuelo +Cora +Corey +Cotina +Cristi +Delilah +Delois +Deloris +Desiree +Elisa +Elisha +Ella +Eula +Felisa +Florence +Geneva +Ginny +Gretchen +Gwen +Haley +Hannah +Henrietta +Jeanne +Jeri +Johnna +Juliet +Kandi +Karin +Kasey +Kathrine +Kayla +Kenyetta +Keshia +Kimberlyn +Larhonda +Larissa +Lashawnda +Lashun +Lasonja +Latashia +Lavonda +Lillian +Lizzie +Lorraine +Lorri +Lynne +Mamie +Marquetta +Mona +Nanette +Neely +Niki +Pam +Patrina +Raquel +Rena +Renea +Rosalind +Rosetta +Salina +Shalanda +Shari +Shasta +Shawanda +Shea +Shelli +Sue +Tamica +Tamra +Tomika +Tonie +Towanda +Tyra +Ursula +Valencia +Venessa +Yvette +Jennifer +Angela +Kimberly +Amy +Stephanie +Mary +Amanda +Heather +Christy +Melissa +April +Tonya +Tammy +Michelle +Lisa +Tracy +Pamela +Cynthia +Wendy +Tina +Misty +Shannon +Karen +Rebecca +Susan +Elizabeth +Leslie +Stacey +Laura +Teresa +Dana +Monica +Donna +Julie +Patricia +Sharon +Christie +Kelly +Stacy +Tara +Ashley +Christina +Andrea +Melanie +Lori +Tiffany +Felicia +Sherry +Sonya +Kristi +Brandy +Jessica +Tanya +Rachel +Yolanda +Emily +Rhonda +Brandi +Sandra +Crystal +Regina +Linda +Robin +Alicia +Tamara +Paula +Erica +Barbara +Kristie +Melinda +Cassandra +Leigh +Cheryl +Catherine +Katrina +Latonya +Margaret +Tracey +Holly +Jacqueline +Anna +Beverly +Carrie +Deborah +Sarah +Valerie +Nicole +Shelley +Veronica +Joy +Brenda +Carla +Allison +Katherine +Anita +Cindy +Kristy +Christine +Carolyn +Debra +Sabrina +Wanda +Dawn +Denise +Natalie +Natasha +Janet +Vanessa +Courtney +Ginger +Kathryn +Nancy +Tamika +Connie +Kelli +Jamie +Kristen +Victoria +Carol +Deanna +Miranda +Traci +Bridget +Charlotte +Theresa +Belinda +Christi +Kathy +Leah +Sheila +Tameka +Tracie +Angelia +Julia +Stacie +Tonia +Gina +Janice +Marsha +Virginia +Terri +Samantha +Betty +Kelley +Sandy +Shelly +Angie +Gloria +Kristin +Latasha +Martha +Meredith +Shirley +Kendra +Tammie +Gwendolyn +Joyce +Kenya +Sherri +Cathy +Danielle +Joanna +Katina +Alice +Alison +Jenny +Michele +Vicki +Candice +Chastity +Diana +Dorothy +Jeannie +Jill +Loretta +Maria +Carmen +Rita +Bethany +Lashonda +Bonnie +Chandra +Christa +Daphne +Debbie +Adrienne +Amber +Ann +Beth +Kellie +Latoya +Laurie +Nakia +Peggy +Sara +Shelia +Sonja +Chasity +Kerri +Lakisha +Latanya +Lawanda +Tabitha +Toni +Casey +Charity +Marie +Staci +Angel +Annie +Audrey +Candace +Erin +Lesley +Misti +Vickie +Erika +Evelyn +Kara +Aretha +Bobbie +Frances +Heidi +Jo +Jodi +Keisha +Mindy +Rachael +Selena +Shonda +Trina +Catrina +Jan +Juanita +Krista +Krystal +Lorie +Melody +Penny +Renee +Sherrie +Aimee +Bridgett +Doris +Helen +Jackie +Judy +Kimberley +Kristina +Tomeka +Dena +Latisha +Marcia +Nikki +Rebekah +Sonia +Sylvia +Candy +Charlene +Felecia +Hope +Marilyn +Shanda +Tasha +Windy +Anne +Becky +Jana +Kerry +Lakeshia +Lauren +Lee +Monique +Nichole +Renita +Sheri +Terra +Vicky +Alisa +Audra +Darlene +Dianna +Glenda +Iris +Karla +Kathleen +Latonia +Nina +Robyn +Suzanne +Tabatha +Terry +Tonja +Annette +Brandie +Bridgette +Demetria +Ericka +Jacquelyn +Kim +Mitzi +Tricia +Wendi +Alisha +Christal +Ellen +Eva +Lakeisha +Lasonya +Molly +Olivia +Patrice +Priscilla +Shanna +Stefanie +Teri +Adrian +Alecia +Amelia +Anitra +Billie +Claudia +Diane +Ella +Hollie +Ivy +Jane +Jerri +Kasey +Ladonna +Lakesha +Lana +Mandy +Megan +Melisa +Phyllis +Sharron +Sheree +Sondra +Tawanda +Ursula +Valencia +Yvonne +Casandra +Cheri +Christian +Cristy +Deana +Jada +Janie +Jennie +Jodie +Johnnie +Katie +Latricia +Malinda +Patsy +Patti +Ramona +Ronda +Tania +Tawanna +Tera +Terrie +Tisha +Cara +Clara +Constance +Darla +Deidra +Deirdre +Grace +Jean +Jeanette +Kesha +Latrice +Lena +Letitia +Lillian +Lillie +Lora +Lucretia +Lucy +Lydia +Maranda +Mistie +Naomi +Paige +Rose +Shawn +Shelby +Shellie +Sheryl +Tosha +Valeria +Alfreda +Amie +Caroline +Catina +Clarissa +Dedra +Holli +Jeri +Kisha +Laquita +Lara +Lashunda +Lynn +Marcie +Margie +Marla +Myra +Ruth +Sherita +Susie +Tamala +Tarsha +Abigail +Brooke +Callie +Carissa +Charmaine +Coretta +Eugenia +Faith +Felisha +Ida +Janna +Jenifer +Joann +Jody +Kari +Lashawn +Leann +Lula +Mildred +Nikita +Robbie +Rochelle +Rolanda +Ruby +Shawna +Tamela +Tami +Tawana +Temeka +Valarie +Whitney +Willie +Angelina +Antionette +Bonita +Celeste +Chanda +Christopher +David +Deidre +Delores +Gail +Georgia +Greta +Irene +Jeanie +Jeanna +Jeanne +Jimmie +Keri +Kerrie +Keshia +Kimberlyn +Lakeesha +Lashanda +Latosha +Lois +Lucinda +Mia +Nia +Octavia +Patty +Rosetta +Scarlet +Selina +Shalonda +Shana +Shanta +Sharonda +Shawanda +Shunda +Sophia +Tomika +Toya +Trudy +Vera +Vivian +Yvette +Alana +Alma +Ami +Benita +Bertha +Calandra +Candi +Cecilia +Cherry +Chiquita +Danyell +Demetrice +Desiree +Edna +Eleanor +Emma +Freda +Gabrielle +Gena +Gladys +Gretchen +Hannah +Holley +Ingrid +James +Janette +Joan +Judith +Kenyatta +Kenyetta +Kimberlee +Kira +Kristal +Lashondra +Latonja +Leanne +Lenora +Lorraine +Luciana +Maggie +Mamie +Marcella +Marcy +Marjorie +Michael +Michell +Mona +Nora +Norma +Raquel +Rosie +Sally +Saundra +Shanita +Shanon +Shantell +Stephaine +Stephine +Tamekia +Tammi +Tanisha +Teressa +Tessa +Thelma +Tijuana +Tomekia +Venus +Wilma +Allyson +Alyson +Angelique +Antoinette +Camille +Caren +Carmelita +Carole +Cherie +Christel +Chrystal +Colleen +Contina +Cristi +Deanne +Delicia +Delisa +Delois +Demetra +Dione +Dionne +Dixie +Edith +Eunice +Fatima +Fonda +Frankie +Geraldine +Haley +Jammie +Jessie +Joanne +John +Joseph +Kandy +Keesha +Kerra +Lacey +Lakia +Lakisa +Lanita +Larissa +Lashandra +Lashun +Latarsha +Latesha +Lela +Libby +Lindy +Lorrie +Lynda +Marian +Marlo +Melodie +Melonie +Melony +Millie +Nakita +Niki +Patrina +Princess +Quintina +Racheal +Randi +Reba +Roslyn +Shawana +Sherida +Shondra +Sirena +Stacia +Starla +Stephenie +Tamatha +Tamiko +Tia +Tiffani +Tiffiney +Tonda +Tywanna +Vernita +Yashica +Zandra +Jennifer +Amy +Kimberly +Angela +Amanda +Heather +Stephanie +Melissa +April +Mary +Christy +Wendy +Lisa +Elizabeth +Tonya +Misty +Tammy +Tracy +Michelle +Rebecca +Pamela +Brandy +Julie +Karen +Shannon +Christina +Kelly +Tina +Laura +Rachel +Stacy +Dana +Ashley +Felicia +Andrea +Leslie +Brandi +Donna +Susan +Stacey +Tiffany +Tamika +Christie +Melanie +Sharon +Cynthia +Emily +Tanya +Monica +Teresa +Lori +Patricia +Carrie +Sherry +Crystal +Jessica +Tara +Alicia +Regina +Holly +Katrina +Erica +Nicole +Melinda +Valerie +Kristi +Robin +Sarah +Latonya +Katherine +Sandra +Yolanda +Rhonda +Samantha +Catherine +Linda +Sonya +Allison +Barbara +Carla +Paula +Tameka +Cassandra +Cindy +Dawn +Terri +Kristy +Natasha +Veronica +Leigh +Tracey +Cheryl +Jamie +Tamara +Kristie +Anna +Deborah +Joy +Brenda +Jacqueline +Wanda +Anita +Belinda +Carolyn +Debra +Natalie +Bridget +Gina +Ginger +Leah +Mandy +Charlotte +Kelli +Sabrina +Christine +Connie +Miranda +Vanessa +Martha +Beverly +Shelley +Denise +Margaret +Marsha +Nancy +Amber +Kristen +Virginia +Carmen +Janet +Kathryn +Lawanda +Theresa +Janice +Laurie +Sara +Latoya +Traci +Chasity +Kenya +Stacie +Carol +Courtney +Danielle +Latasha +Adrienne +Daphne +Kelley +Lakisha +Maria +Tabitha +Angel +Candace +Kathy +Angelia +Deanna +Shelly +Suzanne +Tomeka +Tonia +Angie +Christi +Felecia +Julia +Kristin +Michele +Victoria +Chandra +Meredith +Shirley +Keisha +Kerri +Olivia +Tammie +Alison +Bridgett +Casey +Jill +Kellie +Kendra +Lesley +Toni +Candice +Frances +Gwendolyn +Melody +Nakia +Shana +Sheila +Tracie +Aimee +Cathy +Chastity +Tabatha +Beth +Helen +Robyn +Shelia +Alice +Charity +Erin +Joanna +Karla +Lashonda +Peggy +Tamiko +Amelia +Jenny +Sherri +Ann +Caroline +Constance +Debbie +Dorothy +Gloria +Krista +Misti +Bobbie +Candy +Joyce +Katina +Rachael +Alisha +Betty +Jackie +Kara +Kerry +Lakesha +Sally +Sandy +Tamekia +Audrey +Becky +Bethany +Diana +Erika +Kim +Latanya +Marcia +Nikki +Tomika +Vickie +Bridgette +Hollie +Jana +Latosha +Molly +Nina +Annie +Carey +Kimberley +Kristina +Lana +Latonia +Marie +Anitra +Bonnie +Ellen +Hope +Latisha +Penny +Sonja +Sylvia +Tawanda +Tricia +Deana +Eva +Heidi +Katie +Ladonna +Lakeshia +Lashanda +Lea +Phyllis +Rita +Shanda +Shonda +Staci +Starla +Tasha +Vicki +Cristy +Janie +Jody +Judith +Keri +Laquita +Loretta +Selena +Trina +Anne +Annette +Brandie +Cheri +Christa +Demetria +Dena +Evelyn +Glenda +Jaime +Juanita +Kari +Kathleen +Krystal +Lorie +Malinda +Marla +Mindy +Monique +Myra +Nichole +Norma +Renee +Shanna +Shawn +Sheree +Sonia +Summer +Tangela +Teri +Trisha +Valarie +Audra +Billie +Bonita +Brooke +Callie +Diane +Gena +Gretchen +James +Jeannie +Jodi +Jodie +Lakeisha +Lashawn +Latricia +Lauren +Miriam +Mitzi +Tawana +Whitney +Abby +Autumn +Chanda +Charlene +Chiquita +Elaine +Jacquelyn +Jason +Judy +Kenyatta +Nikita +Rebekah +Ronda +Shawanda +Tisha +Tori +Valeria +Wendi +Windy +Yvette +Yvonne +Alisa +Betsy +Cassie +Christopher +Dianna +Dixie +Eugenia +Joann +Kisha +Layla +Lee +Lindsay +Luciana +Lydia +Marilyn +Megan +Nakisha +Priscilla +Ramona +Robbie +Rose +Rosemary +Tera +Turkessa +Vicky +Adrian +Alana +Chris +Christian +Chrystal +Clarissa +Eunice +Jan +Jane +Jeanette +Jeanie +Jenifer +Jerri +Kesha +Kristal +Lasonya +Latarsha +Latrice +Lynn +Nora +Paige +Patrice +Rosa +Sheryl +Tania +Tanika +Tanisha +Tosha +Alethea +Cecilia +Celeste +Darla +Deidre +Della +Ebony +Greta +Haley +Holley +Jeanne +Jo +Lakesia +Lara +Leanne +Lindsey +Lora +Lucinda +Maranda +Melisa +Racheal +Roberta +Rochelle +Ruby +Ruth +Serena +Sharron +Shawna +Sheri +Sherrie +Susie +Tamela +Tia +Willie +Adria +Alfreda +Antoinette +Benita +Bernice +Candida +Carie +Casandra +Catrina +Clara +Contessa +Cristie +Darlene +Dedra +Demetrius +Doris +Edith +Ericka +Frankie +Freda +Gabrielle +Gayla +Georgia +Jami +Janna +Jocelyn +Johnna +Joycelyn +Kasey +Kayla +Kecia +Kenyetta +Keshia +Lakeysha +Larhonda +Lashunda +Lucretia +Mia +Patty +Renita +Rosalind +Shameka +Shamika +Shanita +Shellie +Sherita +Tamieka +Taryn +Tawanna +Teressa +Terra +Tiffani +Tonja +Valencia +Vera +Vivian +Alecia +Alyson +Amie +Angelique +Aretha +Bertha +Buffy +Calandra +Cari +Cherie +Christal +Cora +Cristi +Deedra +Dusty +Emma +Ingrid +Ivy +Jacquline +Jada +Jeanna +Jennie +John +Josie +Kerrie +Lacey +Lasonja +Lenora +Lillie +Mandi +Marcella +Michael +Michell +Mildred +Octavia +Patti +Rosie +Selina +Shanta +Shelby +Sophia +Stefanie +Suzette +Takisha +Takiyah +Tammi +Temeka +Tomekia +Tommie +Towanda +Ursula +Yashica +Abigail +Allyson +Andria +Anika +Antonia +Beatrice +Bernadette +Bessie +Brittney +Cameron +Caryn +Catina +Christen +Colleen +Consuelo +Corey +Cornelia +Danita +Deirdre +Delana +Deloris +Demetra +Demetrice +Dionne +Elena +Elisabeth +Elissa +Faith +Felica +Francine +Geneva +Geri +Grace +Gwen +Holli +Iris +Jacinta +Jean +Joanie +Johnnie +Kacey +Katharine +Kira +Kristine +Laconya +Lakeitha +Lakenya +Lashundra +Lasonia +Latashia +Lavonda +Leona +Letitia +Lois +Lorrie +Lucy +Margie +Marjorie +Meagan +Mechelle +Merry +Nakita +Pepper +Polly +Renae +Rikki +Rosalyn +Roslyn +Roxanne +Sadie +Sandi +Sebrina +Shandra +Sharonda +Shasta +Sondra +Susanna +Tameika +Tarnisha +Tarsha +Terrie +Terry +Timeka +Trudy +Yulanda +Jennifer +Amy +Kimberly +Amanda +Angela +Heather +Stephanie +Melissa +Mary +Shannon +Jamie +April +Misty +Christy +Elizabeth +Lisa +Wendy +Christina +Jessica +Laura +Tonya +Brandy +Ashley +Rebecca +Tammy +Julie +Kelly +Tracy +Michelle +Andrea +Brandi +Cynthia +Rachel +Crystal +Karen +Leslie +Tiffany +Lori +Emily +Stacy +Tanya +Susan +Tina +Pamela +Melanie +Dana +Latonya +Stacey +Jaime +Monica +Felicia +Sarah +Kristy +Carrie +Erica +Sharon +Teresa +Holly +Christie +Allison +Donna +Sherry +Sandra +Rhonda +Patricia +Tamika +Valerie +Nicole +Linda +Tara +Amber +Carla +Katherine +Ginger +Katrina +Sonya +Kristi +Natalie +Robin +Kristie +Cindy +Latasha +Mandy +Samantha +Catherine +Cassandra +Melinda +Natasha +Regina +Alicia +Tamara +Jacqueline +Anna +Brenda +Courtney +Latoya +Kelli +Lakisha +Leigh +Paula +Barbara +Tracey +Carolyn +Victoria +Leah +Margaret +Sabrina +Terri +Veronica +Jenny +Sara +Danielle +Chasity +Nancy +Cheryl +Denise +Joy +Yolanda +Christine +Deborah +Gina +Martha +Erin +Frances +Shana +Shelley +Angel +Angie +Candace +Tracie +Anita +Kellie +Melody +Angelia +Belinda +Bridget +Dawn +Kathryn +Meredith +Beverly +Janet +Lakesha +Tameka +Adrienne +Laquita +Michele +Traci +Debra +Janice +Tabitha +Toni +Virginia +Wanda +Alison +Kendra +Lakeisha +Charlotte +Connie +Laurie +Theresa +Deanna +Julia +Kelley +Lesley +Maria +Miranda +Vanessa +Alisha +Lawanda +Rachael +Tonia +Brooke +Gwendolyn +Kerri +Carmen +Charity +Jill +Kristin +Shelia +Stacie +Kathy +Selena +Sheila +Shelly +Lashonda +Latanya +Lindsey +Marsha +Sandy +Annie +Brandie +Bridgett +Candice +Carol +Daphne +Helen +Joyce +Keisha +Lauren +Lindsay +Bethany +Christi +Erika +Joni +Kristina +Sherri +Staci +Tomeka +Audrey +Bobbie +Caroline +Jana +Joanna +Kerry +Marie +Shirley +Dorothy +Hope +Olivia +Renee +Tammie +Anitra +Ann +Beth +Betty +Chastity +Diana +Farrah +Felecia +Judy +Kenya +Keri +Lashanda +Nikki +Robyn +Casey +Cathy +Kristen +Latosha +Marilyn +Megan +Sally +Summer +Sylvia +Annette +Chandra +Heidi +Kim +Misti +Monique +Suzanne +Tawanda +Aimee +Bonnie +Candy +Chiquita +Kathleen +Latisha +Penny +Tasha +Alice +Becky +Bridgette +Cara +Charlene +Christa +Diane +Gloria +Hollie +Jenifer +Juanita +Karla +Katina +Molly +Shonda +Sonia +Tabatha +Tamiko +Tomika +Wendi +Billie +Jami +Kara +Krystal +Lakeshia +Lara +Marcia +Sonja +Valarie +Darlene +Dena +Jane +Jodie +Loretta +Nakia +Patrice +Priscilla +Rosalyn +Sherrie +Tamekia +Teri +Catrina +Dianna +Ebony +Jo +Kari +Kasey +Krista +Latoria +Letitia +Luciana +Shanna +Shawna +Tawana +Vickie +Amelia +Antonia +Audra +Chrystal +Cristy +Debbie +Demetria +Ellen +Evelyn +Glenda +Jackie +Kandi +Katie +Kimberley +Lashandra +Lee +Myra +Rebekah +Serena +Shameka +Tia +Tomekia +Tosha +Vicki +Amie +Anne +Cheri +Constance +Eva +Holley +Jeannie +Joann +Kerrie +Latonia +Lorie +Michael +Paige +Rose +Sheri +Tennille +Tori +Whitney +Adrian +Aretha +Autumn +Benita +Chanda +Charmaine +Deidra +Ericka +Gretchen +Jean +Jodi +Ladonna +Lora +Lydia +Melisa +Rita +Shanda +Tawanna +Tiffani +Trina +Valencia +Carey +Cassie +Catina +Clara +Clarissa +Claudia +Deidre +Elaine +Holli +Iris +Jennie +Jody +Katharine +Kenisha +Kimberlee +Lana +Lasonya +Lynn +Mandi +Mindy +Nakisha +Peggy +Sharron +Shawn +Shelby +Sheree +Sondra +Sunny +Tisha +Valeria +Windy +Yvonne +Alana +Alecia +Alisa +Angelina +Antionette +Antoinette +Faith +Gabrielle +Haley +Hannah +Jacquelyn +Jan +Josie +Kenyetta +Lakeesha +Lashawn +Lashundra +Laurel +Lena +Margie +Mitzi +Nora +Phyllis +Renita +Rosalind +Ruby +Ruth +Shamika +Shasta +Shawanda +Sherita +Sue +Tamela +Tanisha +Temeka +Vivian +Yvette +Aisha +Bernadette +Carissa +Chaka +Charles +Chasidy +Cherry +Christal +Cora +Deana +Felica +Gena +Geneva +Georgia +Jada +Janna +Jerri +Joan +Jocelyn +Kesha +Keshia +Larissa +Lashunda +Latrice +Latrina +Malinda +Naomi +Nichole +Racheal +Ramona +Shanika +Shari +Shayla +Sheryl +Stacia +Stefanie +Susie +Takisha +Tera +Terra +Tonja +Tracee +Adrianne +Alfreda +Ami +Ashleigh +Avis +Ayana +Celeste +Chantel +Christopher +Corrie +Cortney +Demetrius +Dominique +Doris +Edna +Elisabeth +Ella +Emma +Felisha +Gail +Geraldine +Ingrid +Jammie +Janie +Jeanette +Joanie +Judith +Latara +Latarsha +Layla +Leann +Lela +Lois +Lorrie +Maggie +Marisa +Marjorie +Mildred +Miriam +Nakita +Nikita +Nina +Ronda +Rosemary +Salina +Scarlet +Shalonda +Shanon +Shantel +Shauna +Tamesha +Tamica +Tamisha +Tammi +Tamra +Tanesha +Tanika +Terrie +Terry +Tessa +Tonisha +Toya +Tricia +Trisha +Vicky +Abby +Adria +Adriane +Alexandra +Allyson +Alma +Alyson +Alyssa +Andria +Arnetra +Ashlee +Brigette +Buffy +Camille +Candida +Cary +Casandra +Cecilia +Celia +Christel +Christian +Colleen +Consuela +Coretta +Corey +Cristina +Danna +Dara +Dedra +Denita +Eleanor +Elisha +Eugenia +James +Janette +Karin +Karmen +Karrie +Kayla +Kenyatta +Kristine +Lachandra +Laquanda +Lashondra +Latashia +Latricia +Lea +Leila +Lesa +Lindy +Lola +Lucy +Maranda +Marcy +Marla +Melony +Mendy +Mia +Millicent +Nadia +Paulette +Pepper +Raquel +Reba +Robbie +Rochelle +Rosa +Rosie +Sasha +Shakita +Shandra +Shani +Shanita +Sharonda +Shenita +Shequita +Suzanna +Tameko +Terica +Thelma +Tomiko +Torrie +Towanda +Twana +Vera +Willie +Jennifer +Amanda +Amy +Kimberly +Heather +Angela +Stephanie +Melissa +April +Jessica +Mary +Jamie +Kelly +Misty +Christy +Shannon +Brandy +Elizabeth +Lisa +Crystal +Rebecca +Ashley +Michelle +Laura +Christina +Tonya +Andrea +Rachel +Tiffany +Wendy +Cynthia +Brandi +Julie +Karen +Tammy +Emily +Susan +Sarah +Carrie +Dana +Monica +Leslie +Erica +Tracy +Tara +Lori +Stacey +Sabrina +Amber +Melanie +Kristy +Felicia +Sharon +Stacy +Tina +Katherine +Jaime +Latasha +Patricia +Pamela +Latoya +Alicia +Holly +Regina +Teresa +Nicole +Latonya +Rhonda +Valerie +Tanya +Allison +Mandy +Donna +Tamika +Anna +Sherry +Natasha +Yolanda +Natalie +Robin +Katrina +Christie +Angel +Ginger +Carla +Catherine +Leigh +Sandra +Sonya +Tamara +Jacqueline +Tameka +Margaret +Samantha +Farrah +Jill +Kristi +Miranda +Tabitha +Barbara +Brenda +Courtney +Erin +Leah +Cassandra +Denise +Kelley +Veronica +Danielle +Lakesha +Nancy +Sara +Kathryn +Kelli +Connie +Kizzy +Linda +Lindsay +Aimee +Carolyn +Jenny +Kristie +Summer +Melinda +Shanna +Virginia +Dawn +Kristina +Lakisha +Lawanda +Martha +Terri +Paula +Candace +Candice +Meredith +Adrienne +Cindy +Joy +Bridget +Carmen +Deborah +Lauren +Christine +Julia +Kathy +Kendra +Selena +Alisha +Charity +Cheryl +Deanna +Janet +Tracey +Traci +Beverly +Debra +Vanessa +Christi +Gina +Lakeisha +Shana +Sheila +Shelly +Angie +Charlotte +Kenya +Keri +Stacie +Toni +Carol +Melody +Sherri +Alison +Anita +Kellie +Jana +Jodi +Lashonda +Brooke +Casey +Gloria +Janice +Katie +Lakeshia +Lesley +Marsha +Tabatha +Wanda +Angelia +Chasity +Erika +Kristen +Latisha +Tasha +Belinda +Frances +Keisha +Kerri +Rachael +Alice +Jackie +Kim +Latanya +Maria +Tracie +Victoria +Aisha +Bethany +Juanita +Krystal +Laurie +Nikki +Shirley +Tawanda +Theresa +Anitra +Annie +Beth +Laquita +Molly +Rebekah +Shelley +Ann +Kristin +Lee +Lindsey +Megan +Michele +Peggy +Rita +Valarie +Amelia +Amie +Anne +Bonnie +Caroline +Cathy +Daphne +Jaclyn +Joanna +Kara +Bridgett +Dorothy +Helen +Jacquelyn +Latosha +Bridgette +Gwendolyn +Hope +Karla +Marilyn +Sonia +Tori +Betty +Billie +Bobbie +Chandra +Chastity +Evelyn +Jami +Jeannie +Krista +Lashanda +Penny +Ruth +Shawanda +Tonia +Audrey +Charlene +Diana +Ebony +Hollie +Misti +Naomi +Priscilla +Renee +Sonja +Tomika +Vickie +Brandie +Chiquita +Jean +Joni +Joyce +Kathleen +Kerry +Kizzie +Lora +Marie +Sandy +Shanta +Staci +Vicki +Adrian +Cassie +Heidi +Jodie +Lorrie +Marisa +Ruby +Shameka +Shawna +Shelia +Sheri +Sylvia +Tamekia +Autumn +Deidra +Ellen +Eva +Faith +Glenda +Haley +Janna +Jenifer +Kimberley +Kisha +Lana +Mandi +Monique +Robyn +Shanda +Shayla +Tammie +Alecia +Annette +Carey +Christa +Constance +Elisha +Felecia +Hannah +Hayley +Janie +Loretta +Marcia +Olivia +Sally +Suzanne +Tomeka +Valencia +Allyson +Audra +Callie +Chrystal +Iris +Jamila +Jeanette +Judy +Katina +Lashunda +Latarsha +Latonia +Marion +Nakia +Sandi +Takisha +Tamiko +Tania +Tawana +Tawanna +Terra +Wendi +Benita +Cara +Chanda +Cherry +Deana +Doris +Edna +Felisha +Jada +Joann +Jody +Kayla +Ladonna +Layla +Lydia +Maranda +Mindy +Rashida +Raven +Selina +Sherita +Tangela +Temeka +Tennille +Teri +Vicky +Whitney +Yvonne +Alana +Alisa +Becky +Bertha +Briana +Brittany +Candy +Christal +Debbie +Demetria +Holley +Jerri +Kasey +Kesha +Marla +Marquita +Meghan +Melisa +Nikita +Nora +Patrice +Shalanda +Shawn +Shemeka +Sheree +Tequila +Tiffani +Tomekia +Trina +Ashleigh +Ashlie +Bessie +Catrina +Christel +Christopher +Darlene +Deandra +Demetrice +Demetrius +Dianna +Ericka +Ida +Jennie +Jeri +Jillian +Katara +Kate +Kawana +Kenisha +Laquanda +Lara +Latrisha +Letitia +Lillian +Marlena +Paige +Ramona +Randi +Rose +Sebrina +Serena +Shandra +Shauna +Shelby +Sherrie +Shonda +Susie +Tosha +Twanna +Alexandra +Angelique +Aretha +Betsy +Britney +Brittney +Camille +Candi +Celena +Celeste +Cori +Corrie +Diane +Elaine +Gretchen +Holli +Jacinta +Jason +Jayme +Jo +Joanie +Kaci +Kamilah +Kari +Katrice +Kenyetta +Lakiesha +Lakita +Latashia +Latricia +Leann +Lena +Maggie +Marjorie +Marquetta +Michael +Mitzi +Monika +Myra +Nichole +Norma +Rosalyn +Rosie +Shalonda +Sharonda +Somer +Sommer +Tanika +Tanisha +Tonja +Toya +Vera +Abby +Alesia +Angelica +Aubrey +Ayanna +Bianca +Calandra +Carmon +Caron +Cathleen +Catina +Cecilia +Chaka +Charmaine +Cherie +Claire +Clarissa +Claudia +Corey +Cristy +Danita +Danyell +Darla +Dayna +Dedra +Deidre +Edith +Hilary +Jeana +Jeanie +Jocelyn +Johnnie +Joseph +Kecia +Kristal +Lacey +Lakeesha +Lakesia +Laquisha +Lashanna +Lashundra +Latrice +Libby +Lucretia +Lynn +Marian +Marissa +Mistie +Mollie +Nadia +Nakesha +Neely +Octavia +Phyllis +Ronda +Rosalind +Rosemary +Rosetta +Ryan +Scarlett +Shelli +Shellie +Sheryl +Sondra +Sophia +Stephenie +Sue +Suzette +Tamica +Tamisha +Torrie +Tricia +Tywanda +Yashica +Alethea +Allie +Antoinette +Antonia +Ashlee +Bambi +Blakely +Cari +Carissa +Carlie +Carri +Casandra +Chante +Charla +Cheri +Cortney +Cristina +Deangela +Deirdre +Demetris +Dena +Dianne +Dora +Elisabeth +Emma +Ethel +Faye +Felica +Francesca +Fredericka +Gena +Geraldine +Ginny +Hillery +Jacquline +James +Jammie +Jeanna +Jenni +Jessie +Joan +Johnna +Joycelyn +Judith +Kacey +Karmen +Karrie +Kasie +Keesha +Keshia +Kristine +Lakecia +Lakenya +Laquetta +Larissa +Lashondra +Lasonja +Latoria +Latoyia +Leanna +Lekesha +Leona +Lillie +Lynette +Marci +Marlana +Mattie +Maureen +Melisha +Miriam +Nakisha +Nakita +Nina +Nita +Princess +Raquel +Robbie +Rolanda +Roxanne +Salena +Salina +Sarita +Shala +Shanell +Sharla +Shawnta +Shewanda +Shona +Shontae +Stacia +Starla +Stefanie +Takesha +Tamra +Temika +Terry +Tia +Tisha +Toi +Tommie +Trinity +Trisha +Ursula +Vivian +Jennifer +Amanda +Amy +Kimberly +Heather +April +Melissa +Angela +Stephanie +Jessica +Mary +Crystal +Kelly +Christy +Brandy +Misty +Elizabeth +Ashley +Lisa +Laura +Jamie +Christina +Shannon +Andrea +Rebecca +Tonya +Tiffany +Brandi +Kristy +Leslie +Wendy +Erica +Rachel +Michelle +Tina +Julie +Sarah +Emily +Cynthia +Karen +Dana +Lori +Carrie +Tracy +Alicia +Monica +Pamela +Felicia +Stacey +Melanie +Robin +Susan +Patricia +Stacy +Tara +Sabrina +Amber +Anna +Katherine +Nicole +Allison +Erin +Tabitha +Holly +Latonya +Latoya +Natasha +Tammy +Kristi +Donna +Katrina +Samantha +Natalie +Sharon +Valerie +Mandy +Regina +Courtney +Cheryl +Tamika +Tameka +Latasha +Leah +Catherine +Jacqueline +Linda +Teresa +Cassandra +Danielle +Sara +Ginger +Melinda +Lakisha +Sandra +Kathryn +Jaime +Jenny +Margaret +Leigh +Rhonda +Sherry +Barbara +Kelley +Sonya +Victoria +Kelli +Carla +Carolyn +Kristie +Miranda +Nancy +Angel +Christie +Lakesha +Christine +Veronica +Candace +Cindy +Julia +Summer +Tanya +Vanessa +Yolanda +Anita +Candice +Joy +Megan +Meredith +Dawn +Lauren +Alisha +Kellie +Tamara +Shana +Denise +Lindsey +Shanna +Alison +Brenda +Haley +Jill +Tracey +Charity +Charlotte +Gina +Janet +Kerri +Paula +Shelley +Casey +Chasity +Deborah +Toni +Virginia +Adrienne +Bridget +Kristen +Bethany +Beverly +Connie +Debra +Jana +Nikki +Belinda +Lakeisha +Laurie +Aimee +Carmen +Frances +Katie +Kristina +Maria +Terri +Angelia +Kathy +Lindsay +Melody +Olivia +Ann +Brooke +Deanna +Kendra +Latisha +Lesley +Traci +Autumn +Dorothy +Ebony +Kristin +Martha +Theresa +Lashonda +Alice +Erika +Jaclyn +Joyce +Marsha +Rebekah +Tabatha +Tasha +Audrey +Chrissy +Janice +Keisha +Lawanda +Robyn +Sheila +Shelia +Sherri +Caroline +Kenya +Lakeshia +Priscilla +Amelia +Carol +Chandra +Christi +Michele +Shelly +Wanda +Betty +Chiquita +Joanna +Kasey +Lashunda +Maranda +Suzanne +Tawanda +Bridgett +Charlene +Devin +Diana +Krystal +Rachael +Tomeka +Bobbie +Brandie +Daphne +Jillian +Molly +Shameka +Shanta +Shayla +Sonja +Tracie +Whitney +Adrian +Cathy +Catrina +Hollie +Kara +Keri +Kizzy +Sandy +Shonda +Stacie +Aisha +Alana +Amie +Deidra +Gloria +Heidi +Helen +Jacquelyn +Jennie +Juanita +Krista +Lana +Laquita +Marilyn +Mindy +Annie +Bonnie +Chastity +Demetria +Faith +Hope +Kathleen +Lydia +Monique +Rita +Shanda +Shauna +Alecia +Alisa +Anne +Billie +Candy +Evelyn +Felecia +Joni +Kerry +Kirsten +Marie +Misti +Patrice +Peggy +Raven +Selena +Sherita +Shirley +Tammie +Audra +Beth +Debbie +Farrah +Gwendolyn +Jackie +Kylie +Lacey +Latonia +Lee +Loretta +Marcia +Rose +Ruby +Sheree +Sonia +Tanisha +Tawana +Temeka +Wendi +Angie +Constance +Cristy +Gretchen +Janie +Katina +Lashanda +Latanya +Malinda +Nichole +Shawna +Teri +Trina +Vickie +Bridgette +Christa +Christopher +Darlene +Ellen +Glenda +Hilary +Hillary +Jeannie +Jodi +Kari +Kenisha +Lacy +Lashaunda +Latarsha +Letitia +Maggie +Melisa +Ruth +Ryan +Sally +Sharonda +Shemeka +Tisha +Betsy +Deidre +Doris +Eva +Georgia +Jane +Jeanette +Karla +Ladonna +Lashandra +Latoria +Latricia +Lillian +Mia +Nikia +Nikita +Penny +Robbie +Shamika +Shawanda +Staci +Starla +Sylvia +Takisha +Tamekia +Tequila +Tonia +Valencia +Adrianne +Alethea +Allyson +Anitra +Ashleigh +Benita +Callie +Cara +Chanda +Diane +Eleanor +Jada +James +Jean +Jenifer +Jodie +Kim +Latosha +Latoshia +Lora +Marla +Nadia +Shavon +Shellie +Shenita +Sheryl +Sophia +Tamela +Tarsha +Terra +Tia +Tiffani +Tomika +Yvette +Yvonne +Abigail +Alexandria +Alexis +Brittany +Cassie +Christal +Cicely +Corey +Desiree +Dianna +Dora +Elisha +Esther +Felica +Ivy +Jameka +Janelle +Jeri +Jessie +Jocelyn +Kisha +Krissy +Lara +Lashundra +Lena +Mildred +Octavia +Rashida +Roxanne +Shandra +Shanika +Shanita +Sue +Tessa +Tomekia +Trisha +Vivian +Abby +Adriane +Alyssa +Bambi +Becky +Brittney +Calandra +Carey +Davida +Deana +Dena +Devon +Elaine +Ericka +Frankie +Ida +Jamila +January +Jody +Joycelyn +Judy +June +Kenyatta +Kimberley +Kizzie +Laquanda +Latrice +Leanne +Lorie +Lucretia +Lynn +Mandi +Marcie +Marian +Meghan +Mitzi +Myra +Nakia +Naomi +Racheal +Renee +Shanetta +Shasta +Shunta +Sommer +Tera +Terry +Tori +Tricia +Windy +Alyson +Angelica +Annette +Aretha +Ashlee +Beatrice +Bobbi +Cecelia +Claudia +Delia +Devan +Felisha +Gena +Geneva +Hayley +Jacklyn +Jeanie +Jenna +Jerri +Karrie +Keesha +Kesha +Kristal +Laquisha +Lashaundra +Lashondra +Latara +Latesha +Layla +Leann +Lolita +Lucy +Makesha +Meagan +Melony +Michael +Patsy +Phyllis +Precious +Ramona +Reagan +Renita +Samatha +Sasha +Scarlett +Serena +Shalonda +Shantel +Sharron +Sheri +Susie +Takesha +Tangela +Tenisha +Tiffanie +Valarie +Alesia +Alma +Amiee +Anastasia +Bernetta +Camellia +Casandra +Cecilia +Charmaine +Cheri +Chrystal +Claire +Clarissa +Cora +Danyell +Darla +David +Demetric +Dusty +Elaina +Ella +Emma +Eugenia +Evie +Francesca +Freda +Gabrielle +Ginny +Grace +Holley +Jacinta +Jami +Jammie +Jasmine +Jimmie +Jo +Joan +Joanie +Joann +Joanne +Joseph +Kacy +Kasie +Kathrine +Kayla +Kenyetta +Kerrie +Keshia +Kevin +Kyla +Lacie +Lacresha +Lakesia +Lanita +Lashan +Lashana +Lashawn +Lashon +Lasonja +Latashia +Latrina +Latrisha +Lea +Leona +Lila +Mamie +Marcy +Marquita +Mellisa +Melonie +Mendy +Millie +Nedra +Nikisha +Pamala +Patty +Pauline +Princess +Quintina +Renea +Rosalyn +Rosie +Shaneka +Sharita +Shaunna +Shaunte +Sheena +Shelby +Shelli +Sherrie +Somer +Stephaine +Suzanna +Talisha +Tamesha +Tami +Tamiko +Taneka +Taryn +Timeka +Tonika +Tyesha +Tyra +Tyronda +Ursula +Vicki +Winter +Jennifer +Amanda +Kimberly +April +Amy +Melissa +Stephanie +Angela +Heather +Jessica +Brandy +Crystal +Elizabeth +Mary +Misty +Ashley +Tiffany +Jamie +Christy +Lisa +Laura +Christina +Kelly +Rebecca +Amber +Rachel +Michelle +Erica +Brandi +Andrea +Shannon +Dana +Tonya +Emily +Julie +Leslie +Sarah +Kristy +Katherine +Tina +Tracy +Monica +Pamela +Katrina +Tara +Alicia +Lori +Wendy +Carrie +Stacy +Cynthia +Karen +Melanie +Tammy +Courtney +Latonya +Nicole +Stacey +Holly +Susan +Allison +Anna +Natasha +Natalie +Sabrina +Samantha +Lauren +Patricia +Erin +Latoya +Latasha +Sharon +Catherine +Miranda +Felicia +Kathryn +Robin +Cheryl +Leah +Carla +Donna +Valerie +Margaret +Sara +Candice +Lindsey +Regina +Tamara +Tamika +Yolanda +Teresa +Cassandra +Linda +Tabitha +Mandy +Candace +Casey +Jacqueline +Danielle +Mindy +Sandra +Angel +Kristi +Meredith +Megan +Kelli +Barbara +Rhonda +Sonya +Brooke +Leigh +Shanna +Sherry +Tanya +Bridget +Christine +Jenny +Chasity +Katie +Lakisha +Tameka +Cindy +Kellie +Melinda +Alison +Veronica +Alisha +Christie +Kendra +Krystal +Terri +Kristina +Virginia +Gina +Ginger +Kristen +Kristie +Lakeisha +Lindsay +Rachael +Summer +Victoria +Jana +Joy +Kelley +Nancy +Paula +Bethany +Haley +Latisha +Lakesha +Brenda +Charity +Connie +Jill +Tasha +Vanessa +Angelia +Angie +Beverly +Deanna +Shelley +Christi +Debra +Denise +Dorothy +Keisha +Adrienne +Ebony +Maria +Tracey +Kathy +Beth +Bonnie +Erika +Jaime +Janet +Julia +Marsha +Melody +Toni +Carolyn +Deborah +Jaclyn +Lawanda +Robyn +Whitney +Audrey +Kerri +Olivia +Sandy +Tamekia +Aimee +Caroline +Frances +Keri +Kristin +Lakeshia +Laurie +Rebekah +Annie +Christa +Shana +Sheila +Anita +Janice +Nikki +Charlotte +Gwendolyn +Jillian +Latosha +Suzanne +Carol +Daphne +Gloria +Monique +Sherri +Traci +Carmen +Dawn +Jasmine +Jennie +Kenya +Michele +Raven +Rita +Shelly +Stacie +Tomeka +Tracie +Wanda +Alecia +Amelia +Amie +Ann +Latanya +Nina +Priscilla +Shauna +Theresa +Adrian +Chiquita +Joyce +Kara +Kasey +Lashanda +Lashundra +Lee +Shelia +Sherita +Tabatha +Autumn +Betty +Bobbie +Chrystal +Ellen +Helen +Hollie +Juanita +Lashonda +Misti +Selena +Shameka +Shawanda +Sheree +Alana +Chandra +Hannah +Jami +Joni +Karla +Kerry +Krista +Laquita +Lesley +Molly +Tawana +Tawanda +Belinda +Brandie +Charlene +Constance +Faith +Grace +Hope +Jackie +Kathleen +Martha +Teri +Abby +Anne +Bridgett +Brittney +Cassie +Darlene +Dena +Devin +Hilary +Janna +Latrice +Maranda +Marilyn +Renee +Sheri +Tammie +Tangela +Aisha +Alisa +Candy +Cathy +Catrina +Doris +Elisha +Felecia +Joanna +Jodi +Kesha +Lana +Latesha +Latonia +Lora +Meghan +Paige +Shanta +Tessa +Wendi +Winter +Adrianne +Allyson +Antoinette +Bridgette +Debbie +Deidre +Elaine +Eva +Georgia +Heidi +Ladonna +Lashunda +Leann +Nakia +Naomi +Peggy +Sally +Shanika +Sylvia +Yashica +Anitra +Demetria +Diana +Ericka +Evelyn +Hillary +Ivy +Jenifer +Kenyatta +Lacey +Lasonya +Leanne +Marcia +Melisa +Rose +Shonda +Staci +Tawanna +Terra +Tori +Trisha +Windy +Yvonne +Alice +Alissa +Alyson +Audra +Brianna +Calandra +Celeste +Chanda +Deidra +Dianna +Holli +Jeana +Jeri +Karrie +Kisha +Kizzy +Lashaunda +Lorie +Lucy +Marie +Marisa +Mia +Miriam +Nichole +Penny +Shalonda +Shanita +Sharonda +Shavonne +Shemika +Sherika +Stefanie +Tomika +Tonia +Tosha +Valarie +Vickie +Ashlie +Betsy +Bonita +Cara +Cecilia +Chastity +Cortney +Glenda +Jacquelyn +Jeanette +Jeannie +Kristal +Kylie +Laquanda +Lara +Latricia +Loretta +Patrice +Shaneka +Shasta +Shawna +Shundra +Sonia +Tanisha +Tia +Alaina +Angelina +Annette +Carey +Chrissy +Cristal +Desiree +Devon +Eboni +Gabrielle +Holley +Irene +James +Jamila +Jo +Joann +Kaci +Kari +Katharine +Katina +Lakesia +Larissa +Lindy +Lydia +Phyllis +Racheal +Randi +Renata +Renita +Robbie +Rosalyn +Ruby +Ruth +Shamika +Shanda +Shayla +Shemeka +Shenita +Tami +Tanika +Tera +Tricia +Abigail +Alyssa +Ami +Andria +Ashleigh +Billie +Callie +Carly +Cecelia +Christal +Christian +Deana +Ella +Eugenia +Felisha +Florence +Frankie +Gena +Ingrid +Janie +Jerri +Jodie +Kirsten +Kirstie +Lashandra +Lashawn +Latashia +Letitia +Lyndsey +Maegan +Marianne +Marla +Nadia +Nora +Norma +Patsy +Portia +Ramona +Rikki +Selina +Shalanda +Shamekia +Shante +Sherrie +Shirley +Siobhan +Sommer +Sonja +Tarsha +Vivian +Aleisha +Alesha +Alexis +Ashanti +Ava +Becky +Bianca +Brittany +Brook +Camille +Casandra +Cheri +Christopher +Claudia +Colleen +Cora +Cristy +Dusty +Elisa +Ida +Iris +Jeanne +Joshua +Judith +Judy +Kamilah +Kanika +Kawana +Kayla +Kerrie +Kim +Kimberley +Lacy +Lamonica +Latarsha +Lena +Lynn +Malinda +Marci +Marquita +Mellissa +Mitzi +Myra +Nakisha +Niki +Rachelle +Rashida +Scarlett +Shandra +Shantel +Shaunta +Shawanna +Shelby +Shemekia +Sondra +Sophia +Tamica +Temika +Tiffani +Tiffanie +Valencia +Vicki +Yvette +Adriane +Alesia +Alexandria +Aretha +Athena +Aubrey +Beatrice +Brandon +Brianne +Carisa +Celina +Charla +Charles +Charmaine +Claire +Clarissa +Coretta +Cori +Daisy +Daniel +Danna +Dedra +Demetra +Destiny +Edith +Eleanor +Elise +Emma +Jaimie +Jason +Jean +Jeanna +Joan +Jocelyn +Jody +Johanna +Joi +Jonie +Jonna +Joycelyn +June +Kacey +Kami +Kamisha +Kenisha +Kiley +Kizzie +Lakecia +Lakeesha +Lakeitha +Laquitta +Latonga +Latoria +Lea +Leia +Lela +Leticia +Lila +Lillie +Lucretia +Mandi +Marcie +Marcy +Marion +Martina +Michael +Mildred +Mistie +Nakesha +Natalia +Nikisha +Nikita +Octavia +Opal +Qiana +Robert +Roberta +Ronda +Rosa +Serena +Shakira +Shanavia +Sharhonda +Shaundra +Shavon +Shawnta +Shea +Shelli +Shenika +Shonta +Somer +Stella +Syreeta +Tajuana +Takesha +Tamala +Tameca +Tamela +Tamra +Tisha +Tomekia +Tonja +Tracee +Trina +Tyronda +Vera +Yashika +Jennifer +Amanda +Kimberly +April +Jessica +Melissa +Tiffany +Stephanie +Amy +Mary +Heather +Ashley +Crystal +Angela +Elizabeth +Misty +Brandy +Jamie +Christina +Laura +Sarah +Christy +Kelly +Rachel +Lisa +Rebecca +Andrea +Brandi +Amber +Shannon +Emily +Leslie +Michelle +Erica +Pamela +Kristy +Natasha +Monica +Julie +Courtney +Erin +Wendy +Nicole +Tonya +Allison +Katherine +Alicia +Dana +Kristen +Katrina +Latoya +Tracy +Latasha +Anna +Tina +Melanie +Miranda +Samantha +Susan +Stacy +Cynthia +Latonya +Lori +Karen +Kristin +Lindsey +Tara +Tammy +Carrie +Lauren +Candace +Stacey +Holly +Natalie +Leah +Candice +Patricia +Sara +Catherine +Valerie +Sharon +Tasha +Brooke +Sabrina +Kathryn +Katie +Margaret +Robin +Tabitha +Kelli +Melinda +Casey +Donna +Megan +Cassandra +Chasity +Kristi +Virginia +Felicia +Meredith +Teresa +Alisha +Jenny +Lindsay +Leigh +Veronica +Barbara +Rhonda +Summer +Tamara +Alison +Bethany +Danielle +Regina +Sonya +Victoria +Julia +Monique +Lakisha +Tanya +Carla +Kristie +Mandy +Sherry +Yolanda +Paula +Carolyn +Nancy +Tameka +Martha +Vanessa +Deanna +Ginger +Sandra +Rachael +Beverly +Brenda +Christine +Erika +Tamika +Terri +Kristina +Denise +Jacqueline +Joy +Kathy +Krystal +Shelley +Christie +Latisha +Melody +Jana +Kellie +Angel +Cheryl +Haley +Maria +Shelly +Bridget +Deborah +Ebony +Kara +Lakesha +Bonnie +Cindy +Beth +Dawn +Suzanne +Toni +Adrienne +Charlotte +Lakeisha +Traci +Whitney +Audrey +Gina +Jill +Linda +Nina +Shameka +Annie +Belinda +Carol +Kelley +Kerri +Lee +Nikki +Rebekah +Ann +Brandie +Carmen +Janet +Laquita +Maranda +Mindy +Olivia +Shanna +Theresa +Anita +Ericka +Joni +Kenya +Lashanda +Lawanda +Lesley +Patrice +Stacie +Anne +Christi +Daphne +Heidi +Keisha +Kendra +Krista +Laurie +Priscilla +Sandy +Angie +Charity +Debra +Ellen +Kathleen +Amelia +Betty +Caroline +Connie +Robyn +Tanisha +Tia +Tracey +Adrian +Aimee +Alecia +Chandra +Deidra +Frances +Hope +Jaime +Kasey +Latanya +Latosha +Nichole +Renada +Cathy +Dorothy +Jaclyn +Joanna +Kimberley +Penny +Renata +Autumn +Bridgett +Cassie +Diana +Evelyn +Jasmine +Joyce +Lashonda +Lashunda +Renee +Abby +Angelia +Charlene +Helen +Janice +Jenifer +Jennie +Karla +Lacey +Lashundra +Marsha +Michael +Nakia +Peggy +Raven +Sally +Shelia +Stefanie +Teri +Tosha +Brittney +Christa +Eva +Felecia +Hannah +Hollie +Jessie +Jillian +Judy +Keri +Randi +Rita +Selena +Sharonda +Shawanda +Shayla +Sheila +Tabatha +Tessa +Tiffani +Tiffanie +Tomeka +Valarie +Vickie +Bobbie +Bridgette +Gwendolyn +Jacquelyn +Jada +Jami +Lashandra +Marie +Misti +Molly +Tracie +Alexis +Alice +Callie +Cara +Chastity +Chiquita +Chrystal +Devin +Dixie +Elisha +Glenda +Hilary +Katina +Kenyatta +Lakeshia +Marla +Meghan +Morgan +Paige +Shana +Sheri +Sophia +Tawana +Valencia +Vicki +Wendi +Annette +Audra +Brittany +Candy +Catrina +Cristy +Deidre +Doris +Gabrielle +Georgia +Jeannie +Jenna +Juanita +Kari +Kayla +Lashondra +Latoria +Lora +Mandi +Meagan +Naomi +Shandra +Shaneka +Sondra +Tamekia +Tammie +Wanda +Abigail +Alesha +Ashleigh +Bianca +Briana +Celeste +Dara +Darlene +Hillary +Iris +Jodi +Kim +Lydia +Marilyn +Marissa +Niki +Roxanne +Ruth +Shanika +Shasta +Shemika +Sherri +Shirley +Starla +Tamela +Yvonne +Alana +Alissa +Alyson +Amberly +Antoinette +Aubrey +Cecilia +Christopher +Cortney +Demetria +Devon +Elisabeth +Faith +Holley +Jackie +James +Joanie +Kerry +Latrice +Letisha +Lorie +Malinda +Marian +Michele +Princess +Rochelle +Rose +Shamekia +Sherita +Sommer +Staci +Sue +Sylvia +Tamera +Tami +Telisha +Tera +Terra +Tisha +Tonia +Tricia +Ursula +Allyson +Brandee +Brianne +Charla +Christian +Coretta +Elaine +Genevieve +Gloria +Gretchen +Jane +Janna +Jeanie +Jodie +Judith +Kandace +Kasie +Ladonna +Lana +Laquanda +Latesha +Latonia +Loretta +Marjorie +Marlena +Mia +Rosa +Ryan +Sasha +Shanta +Shawna +Shemeka +Sheree +Syreeta +Tanika +Tarsha +Trisha +Adrianne +Aisha +Amie +Andria +Ashlee +Becky +Billie +Candi +Casie +Chanda +Christen +Colleen +Crissy +Darcy +Deana +Debbie +Desiree +Farrah +Felisha +Frankie +Jacinta +Jan +Janie +Jeanette +Jeanna +Jerri +Jody +Kendall +Kenyetta +Keshia +Krissy +Kristal +Lashaundra +Latricia +Laurel +Leann +Leia +Lekeisha +Lucretia +Maggie +Racheal +Rachelle +Rosalyn +Serena +Shalanda +Shanda +Shauna +Shenita +Sonja +Tai +Takisha +Tammi +Tawanna +Tomika +Tori +Tyesha +Alaina +Aleshia +Alyssa +Ashlie +Brianna +Britney +Carly +Cheri +Cherie +Constance +Deandra +Dedra +Ella +Gail +Grace +Holli +Jeanne +Jerry +Kami +Kandy +Kate +Kylie +Lachandra +Lara +Lasandra +Latara +Latarsha +Latoyia +Latrisha +Leticia +Lillian +Lucy +Marcia +Marianne +Mattie +Miriam +Mollie +Monika +Porsha +Precious +Raegan +Ramona +Raquel +Regan +Renae +Robbie +Ronda +Ruby +Ruthie +Scarlett +Selina +Shalonda +Shanon +Shea +Sherika +Sherrie +Sonia +Star +Stella +Sydney +Tanesha +Tawanda +Temeka +Tequila +Vivian +William +Winter +Alesia +Ammie +Ana +Andi +Angelina +Anitra +Bernice +Betsy +Blair +Brandalyn +Candis +Casandra +Cecelia +Chaka +Chantel +Cherry +Chrissy +Christal +Clara +Clarissa +Corey +Cristina +David +Delia +Deonna +Diane +Dusty +Earnestine +Harriet +Hayley +Ingrid +Ivy +Jason +Jean +Joann +John +Jordan +Katrinia +Kerrie +Kesha +Kimberlee +Kizzie +Kyla +Lacy +Lakeysha +Latresa +Latrina +Lawanna +Lekeshia +Lorrie +Marisa +Melisa +Mellissa +Melodie +Nakesha +Nikisha +Nikita +Nora +Phaedra +Ragan +Renota +Rosemary +Shaletha +Shamika +Shari +Shavonda +Shavonne +Shawanna +Shemekia +Shereka +Shonda +Stephaine +Susie +Tamala +Tameika +Tamica +Tamiko +Taylor +Tomekia +Toya +Trina +Vicky +Yvette +Jennifer +Amanda +Jessica +Kimberly +Tiffany +Stephanie +April +Amy +Crystal +Melissa +Ashley +Mary +Heather +Elizabeth +Angela +Brandy +Laura +Amber +Emily +Sarah +Andrea +Brandi +Rachel +Misty +Erica +Christina +Latoya +Rebecca +Courtney +Kelly +Lisa +Shannon +Leslie +Jamie +Pamela +Michelle +Katherine +Christy +Julie +Kristen +Lauren +Lindsey +Latasha +Erin +Allison +Kristin +Anna +Alicia +Kristy +Nicole +Cynthia +Carrie +Natasha +Holly +Sara +Candice +Dana +Melanie +Monica +Tonya +Brooke +Candace +Wendy +Lori +Samantha +Miranda +Stacy +Stacey +Tara +Kathryn +Katrina +Leah +Patricia +Tina +Latonya +Lindsay +Tammy +Katie +Susan +Angel +Catherine +Natalie +Sharon +Cassandra +Margaret +Teresa +Carla +Karen +Robin +Danielle +Tracy +Kristi +Megan +Felicia +Monique +Sabrina +Bethany +Regina +Sandra +Tasha +Haley +Casey +Julia +Tabitha +Tamara +Veronica +Barbara +Bridget +Donna +Jacqueline +Summer +Valerie +Virginia +Whitney +Tameka +Victoria +Meredith +Sonya +Terri +Linda +Cassie +Christine +Kelli +Jenny +Rachael +Yolanda +Alisha +Deanna +Rhonda +Alison +Constance +Lakeisha +Sherry +Dawn +Tanya +Chasity +Joy +Vanessa +Audrey +Mandy +Erika +Kristina +Lakesha +Latisha +Tamika +Kellie +Kristie +Maria +Melinda +Melody +Nikki +Toni +Carmen +Jana +Rebekah +Adrienne +Carolyn +Charity +Janice +Kasey +Kendra +Krystal +Lawanda +Leigh +Priscilla +Shameka +Annie +Ginger +Hannah +Jill +Marie +Shanna +Theresa +Ann +Frances +Lakisha +Beverly +Denise +Lacey +Morgan +Nina +Shelley +Cheryl +Christie +Debra +Martha +Mindy +Nancy +Tabatha +Ebony +Keisha +Bonnie +Brenda +Brittany +Deborah +Gina +Jaime +Jillian +Lesley +Connie +Paula +Robyn +Sophia +Traci +Alice +Amelia +Cindy +Dorothy +Kara +Kathy +Lashonda +Raven +Suzanne +Tracey +Brandie +Hayley +Kelley +Meghan +Paige +Alana +Autumn +Carol +Charlotte +Diana +Heidi +Joni +Krista +Laurie +Patrice +Stacie +Stefanie +Aimee +Angelia +Joyce +Kerri +Maranda +Marsha +Michele +Shelly +Tiffani +Abby +Belinda +Betty +Bridgett +Brittney +Chiquita +Jessie +Joanna +Keri +Lakeshia +Lee +Sheila +Shirley +Tanisha +Tracie +Wanda +Christen +Christian +Janet +Janie +Jasmine +Kathleen +Kenya +Lacy +Nichole +Sandy +Shana +Sherita +Alecia +Amie +Anita +Ashleigh +Beth +Hollie +Jeannie +Kari +Karla +Meagan +Molly +Olivia +Randi +Tia +Toccara +Alaina +Angie +Becky +Bridgette +Candi +Charlene +Christi +Chrystal +Helen +Kristal +Latoria +Naomi +Sherri +Alexis +Anne +Ashlee +Christin +Deidra +Ellen +Evelyn +Jodi +Juanita +Ladonna +Laquita +Lashunda +Latanya +Lydia +Marilyn +Selena +Shawanda +Staci +Teri +Vickie +Britney +Caroline +Eva +Jaclyn +Janna +Latrice +Lora +Miriam +Renee +Shamekia +Sharonda +Sonja +Sylvia +Valencia +Alexandra +Ava +Blair +Candy +Claire +Daisy +Dara +Davida +Ericka +Gloria +Gwendolyn +Jacquelyn +Jami +Jodie +Kesha +Lara +Lashanda +Misti +Shanika +Shayla +Sheena +Shemika +Temeka +Tiffanie +Aisha +Alisa +Billie +Bobbie +Carly +Cathy +Cristy +Deidre +Elisha +Evita +Felecia +Jackie +Jeanette +Jennie +Judith +Judy +Kaci +Latosha +Latricia +Mandi +Martina +Ryan +Shasta +Shauna +Shemeka +Shonda +Susie +Tamekia +Tanesha +Tawana +Tomeka +Alesha +Alexandria +Bianca +Catrina +Celeste +Clarissa +Daphne +Debbie +Dionne +Elisabeth +Faith +Holley +Kimberley +Kisha +Krystle +Latrisha +Marian +Marion +Marla +Martine +Octavia +Portia +Scarlett +Shamika +Shanta +Shelia +Tawanda +Tenisha +Tisha +Tricia +Valarie +Vivian +Yvonne +Abigail +Adriane +Alesia +Antoinette +Audra +Brandon +Brook +Callie +Camilla +Cara +Chanda +Farrah +Hillary +Iris +Ivy +Jacklyn +James +Jenna +Jerri +Johanna +Kenyatta +Kristian +Latarsha +Lillian +Lucy +Marcella +Marjorie +Marquetta +Peggy +Penny +Ramona +Rose +Shaneka +Shantel +Shawna +Sheneka +Tawanna +Tosha +Alfreda +Alyssa +Andria +Annette +Aundrea +Casie +Chrissy +Christa +Christopher +Clara +Claudia +Destiny +Emma +Gabrielle +Holli +Hope +Jada +Jenifer +Jody +Johnnie +Kandi +Kate +Kendall +Keshia +Laquanda +Lashaunda +Latara +Lavonda +Lekisha +Malinda +Marianne +Marquita +Mollie +Rochelle +Ruth +Scarlet +Shanda +Shelby +Sommer +Sondra +Stacia +Starla +Stephine +Tamela +Tammie +Tera +Tomika +Trisha +Vicki +William +Adrianne +Allyson +Anthony +Ashlie +Bambi +Briana +Carissa +Chandra +Chastity +Cristal +Deana +Dena +Detra +Diane +Dianna +Eboni +Elaine +Eugenia +Gail +Grace +Hilary +Janelle +Jeri +Jo +Joseph +Joycelyn +Kacey +Kacy +Kami +Karrie +Kasie +Kayla +Kerrie +Kerry +Kim +Lana +Lashundra +Latesha +Latia +Leila +Lena +Letisha +Linsey +Liza +Loretta +Lucinda +Lynn +Melisa +Mia +Natosha +Racheal +Renada +Renata +Rita +Rosalyn +Rosie +Ruby +Sandi +Selina +Serena +Shalanda +Shaunda +Sheri +Sue +Susanna +Tanika +Taylor +Tena +Tenika +Tequila +Terra +Terry +Tonia +Tyesha +Ursula +Adrian +Alanna +Alyson +Ami +Angelique +Betsy +Bobby +Bonita +Brianna +Calandra +Camille +Cari +Casandra +Christal +Cielita +Cora +Danita +Danna +Darlene +Dedra +Deirdre +Desiree +Dione +Edna +Edwina +Eleanor +Ella +Francis +Georgia +Ginny +Glenda +Gretta +Helena +Jacques +Jammie +Jeanetta +Joan +Jocelyn +Jolene +Jordan +Joshua +Kasi +Katina +Keesha +Kelsey +Kenisha +Kia +Kina +Kristine +Lakeitha +Laquisha +Larissa +Lashandra +Lashondra +Latishia +Latonia +Latoyia +Laurel +Lea +Leanne +Letitia +Lorie +Lorrie +Lyndsay +Marcus +Margie +Marisa +Marissa +Micah +Michael +Mona +Myra +Nickie +Nikita +Nora +Precious +Princess +Quintina +Reagan +Reshonda +Rhea +Robbie +Robert +Rosa +Roshunda +Sadie +Sallie +Shameeka +Shandra +Shanita +Shavonne +Shawana +Shellie +Shereka +Somer +Susanne +Sybil +Tai +Takesha +Tamica +Tamiko +Tammi +Tangela +Terrica +Tessa +Tiana +Tierra +Tiffiny +Timeka +Tori +Trina +Twanna +Tyler +Valeria +Windy +Yvette +Jennifer +Jessica +Amanda +Tiffany +Crystal +Ashley +Kimberly +April +Stephanie +Amy +Mary +Elizabeth +Melissa +Heather +Angela +Rachel +Emily +Sarah +Amber +Brandy +Laura +Erica +Rebecca +Brandi +Lauren +Lindsey +Christina +Jamie +Leslie +Andrea +Lisa +Kelly +Courtney +Erin +Kristen +Misty +Natasha +Christy +Michelle +Katherine +Candice +Anna +Latoya +Allison +Julie +Lindsay +Alicia +Nicole +Pamela +Latasha +Samantha +Sara +Melanie +Candace +Lori +Shannon +Natalie +Tara +Cassandra +Dana +Kristy +Catherine +Katie +Kristin +Kathryn +Valerie +Miranda +Wendy +Holly +Leah +Susan +Katrina +Stacy +Carrie +Cynthia +Tina +Patricia +Tonya +Karen +Monica +Krystal +Tracy +Kayla +Stacey +Megan +Casey +Tabitha +Cassie +Margaret +Tammy +Bethany +Victoria +Bridget +Julia +Robin +Brittany +Meredith +Haley +Tasha +Virginia +Sheena +Whitney +Kelli +Sabrina +Alisha +Chasity +Danielle +Jacqueline +Latonya +Teresa +Terri +Alison +Jillian +Carla +Felicia +Sandra +Barbara +Kristi +Kristina +Leigh +Rebekah +Angel +Donna +Jenny +Adrienne +Lacey +Sharon +Tamara +Alexis +Brooke +Tameka +Linda +Regina +Veronica +Summer +Deanna +Tamika +Christie +Diana +Rhonda +Carolyn +Cheryl +Constance +Monique +Shanna +Brenda +Christine +Ebony +Tanya +Carmen +Joy +Lakesha +Melinda +Nikki +Sonya +Erika +Mandy +Rachael +Yolanda +Dorothy +Morgan +Audrey +Joanna +Sherry +Toni +Abby +Ginger +Jill +Kathleen +Nancy +Beverly +Bonnie +Jaime +Shameka +Shelly +Tabatha +Brittney +Charity +Deborah +Evelyn +Hollie +Janice +Kara +Kelley +Lakisha +Meghan +Melody +Stefanie +Ann +Brandie +Janet +Kellie +Kerri +Kristie +Lakeisha +Lydia +Maria +Nichole +Shelley +Cindy +Daphne +Kendra +Lacy +Martha +Paula +Vanessa +Adrian +Annie +Autumn +Britney +Caroline +Charlene +Hannah +Kari +Lesley +Toccara +Charlotte +Ellen +Frances +Jana +Lakeshia +Lashanda +Lashonda +Sheila +Sherri +Bridgett +Bridgette +Christin +Dawn +Debra +Keisha +Olivia +Raven +Robyn +Traci +Chrystal +Gina +Gwendolyn +Heidi +Helen +Jackie +Joyce +Kathy +Krista +Laquita +Latisha +Laurie +Patrice +Shelia +Aimee +Alana +Alecia +Hayley +Jasmine +Kenya +Michele +Molly +Randi +Ruby +Shayla +Sherita +Sophia +Suzanne +Tammie +Alexandria +Betty +Chiquita +Connie +Karla +Lawanda +Sally +Sandy +Shawna +Tia +Tracey +Valencia +Wanda +Abigail +Alesha +Ashlee +Cara +Desiree +Jeannie +Jodi +Kasey +Ladonna +Marcia +Mindy +Rose +Stacie +Tanisha +Theresa +Valarie +Amelia +Angelia +Anita +Audra +Beth +Carly +Carol +Davida +Denise +Gabrielle +Jennie +Kala +Staci +Tawanda +Tiffani +Alexandra +Ashleigh +Bobbie +Chastity +Daisy +Deidre +Demetria +Ericka +Gloria +Grace +Hope +Jacquelyn +Kira +Kristal +Lashondra +Lashundra +Latrice +Lee +Maranda +Meagan +Nina +Priscilla +Selena +Shanika +Shemeka +Sylvia +Syreeta +Tanika +Tiffanie +Tracie +Aisha +Allyson +Belinda +Brandon +Cameron +Christa +Cristy +Faith +Fallon +Jane +Jessie +Jodie +John +Juanita +Katharine +Keri +Lashunda +Latanya +Lena +Lynn +Mandi +Marilyn +Marion +Marlena +Octavia +Penny +Renee +Shamika +Shana +Shanta +Shauna +Shenika +Taylor +Teri +Tisha +Amberly +Angelina +Angie +Anne +Annette +Antoinette +Candi +Cathy +Christen +Christi +Christopher +Destiny +Diane +Eva +Felecia +Holley +Holli +Jaclyn +Joni +Kassie +Kenyatta +Kimberley +Krystle +Laquanda +Lora +Marie +Misti +Robbie +Tomika +Adriane +Alice +Ariel +Blair +Candis +Celeste +Chandra +Christian +Clarissa +Dianna +Gena +Glenda +Jami +Janie +Janna +Jenifer +Kacy +Keshia +Kyla +Lakenya +Lashandra +Latoria +Latosha +Lucretia +Lucy +Lyndsey +Maggie +Marsha +Michael +Naomi +Princess +Rita +Ryan +Shanita +Shasta +Shena +Sheree +Shirley +Starla +Terra +Vera +Vivian +Wendi +Alyson +Angelica +Briana +Candy +Casandra +Catrina +Chassidy +Chelsea +Christal +Claire +Deana +Deidra +Deirdre +Emma +Felisha +Georgia +Gretchen +Hillary +Jade +James +Joanie +Joann +Jordan +Judy +Kaci +Kandice +Kendall +Kesha +Kia +Kristan +Kristine +Lakecia +Lara +Lashaundra +Laurel +Marissa +Martina +Maya +Myra +Natosha +Nikita +Ruth +Shalonda +Shamekia +Shaneka +Sharonda +Shawanda +Sheri +Somer +Stephenie +Tanesha +Tawana +Terry +Tessa +Abbie +Alaina +Alanna +Alisa +Alissa +Alyssa +Beatrice +Betsy +Brianna +Carey +Claudia +Deandrea +Eboni +Edith +Esther +Gail +Ivy +Jacklyn +Jada +Jasmin +Jason +Jeanne +Jenna +Jeri +Joan +Jody +Johanna +Joseph +Judith +Katy +Kecia +Kimberli +Kisha +Lasonya +Latara +Leann +Leanne +Lillian +Marci +Marcus +Marian +Maryann +Mia +Nakia +Nakisha +Ramona +Robert +Rochelle +Rosalyn +Rosemary +Rosie +Roxanne +Shalanda +Shante +Sheneka +Sonja +Talisha +Tamekia +Tana +Temeka +Tiffiny +Tomeka +Ursula +Adrianne +Aerial +Alesia +Anitra +Apryl +Becky +Bernice +Bianca +Billie +Callie +Camelia +Camille +Casie +Cassey +Cassidy +Cecilia +Charles +Cristin +Darlene +Delisa +Dianne +Dionne +Dora +Elaine +Elisa +Elisha +Eugenia +Farrah +Hailey +Ingrid +Jean +Jeanette +Jeanna +Jerri +Jesse +Jo +Jocelyn +Joi +Joshua +Kacie +Kandi +Kanesha +Kate +Katina +Katrice +Keela +Kerry +Keturah +Kimberlee +Kyra +Laci +Lakia +Lakresha +Laquinta +Lashae +Latoyia +Loretta +Louise +Maegan +Marla +Marquetta +Marquita +Merry +Mildred +Mindi +Mollie +Niki +Paige +Pauline +Phyllis +Porsha +Portia +Precious +Rosa +Rosalind +Rosanna +Scarlet +Selina +Serena +Shae +Shanavia +Shareka +Shea +Shelby +Shellie +Shemika +Shenita +Shenna +Sherika +Sherrie +Sheryl +Simone +Sommer +Stacia +Stephaine +Stephine +Tamala +Tameeka +Tamela +Tamra +Tangela +Tenesha +Tenika +Tera +Tiffaney +Tiffiney +Vicki +Windy +Jennifer +Ashley +Jessica +Amanda +Crystal +Tiffany +Stephanie +Heather +Kimberly +Amy +April +Mary +Melissa +Amber +Elizabeth +Sarah +Rachel +Laura +Angela +Emily +Erica +Lindsey +Rebecca +Brandy +Lauren +Andrea +Jamie +Alicia +Erin +Brandi +Marquita +Christina +Kelly +Kristen +Katherine +Anna +Leslie +Michelle +Lisa +Megan +Holly +Samantha +Courtney +Lindsay +Misty +Nicole +Latoya +Monica +Shannon +Carrie +Allison +Julie +Latasha +Christy +Natasha +Natalie +Candace +Krystal +Cynthia +Candice +Tara +Kayla +Sara +Brittany +Tonya +Katie +Kristin +Kathryn +Miranda +Stacy +Victoria +Catherine +Karen +Margaret +Melanie +Stacey +Danielle +Pamela +Tracy +Valerie +Leah +Robin +Dana +Kristy +Haley +Patricia +Felicia +Tabitha +Brooke +Tammy +Wendy +Tina +Alexis +Hannah +Latonya +Meredith +Sabrina +Adrienne +Casey +Cassandra +Jacqueline +Kristi +Lori +Bethany +Susan +Alisha +Cassie +Lacey +Veronica +Sharon +Sheena +Katrina +Julia +Rachael +Kelli +Virginia +Carla +Erika +Stefanie +Donna +Tabatha +Whitney +Angel +Caroline +Ebony +Summer +Carolyn +Maria +Brittney +Jenny +Kristina +Linda +Tasha +Rebekah +Sherry +Yolanda +Audrey +Chasity +Teresa +Alison +Christine +Tameka +Paula +Vanessa +Charity +Jillian +Meghan +Olivia +Rhonda +Barbara +Christie +Leigh +Monique +Morgan +Regina +Tamara +Tamika +Amelia +Bridget +Carmen +Cheryl +Janice +Mandy +Sonya +Ashleigh +Deborah +Janet +Kellie +Kendra +Brenda +Denise +Hollie +Kasey +Kristie +Lydia +Mallory +Melinda +Charlotte +Constance +Deanna +Jana +Terri +Annie +Brandie +Bridgett +Joanna +Joy +Keisha +Kelley +Lakesha +Lakeshia +Lashonda +Lesley +Shelley +Toni +Anne +Beverly +Connie +Diana +Dorothy +Jenna +Karla +Keri +Martha +Nancy +Nina +Selena +Sophia +Alecia +Charlene +Gina +Ginger +Lakeisha +Lakisha +Molly +Theresa +Alice +Alisa +Ann +Dawn +Desiree +Jacquelyn +Krystle +Latisha +Paige +Patrice +Sherri +Stacie +Tracey +Bonnie +Carol +Debra +Heidi +Jaime +Joyce +Kenya +Kerri +Meagan +Nikki +Sandra +Shanna +Tanesha +Tanya +Trista +Abby +Adrian +Autumn +Britney +Clarissa +Frances +Helen +Jasmine +Mindy +Randi +Shameka +Shawna +Shayla +Shelly +Tia +Traci +Audra +Cindy +Fallon +Grace +Priscilla +Valencia +Ashlee +Chrystal +Daphne +Kara +Kimberley +Melody +Nichole +Renee +Robyn +Abigail +Davida +Ellen +Jill +Jodi +Kari +Lacy +Lashanda +Laurie +Michael +Raven +Ryan +Sandy +Shanika +Tera +Alesia +Angelia +Ariel +Candy +Christen +Eva +Felecia +Jackie +Kathleen +Krista +Lana +Lena +Martina +Suzanne +Tessa +Tiffani +Aimee +Bianca +Billie +Cathy +Jaclyn +Kaci +Lashunda +Latanya +Leanne +Lee +Marie +Shamika +Sherita +Sherrie +Tamekia +Tanisha +Tiffanie +Alana +Bobbie +Cara +Cecilia +Celeste +Chiquita +Deidre +Evelyn +James +Jami +Jennie +Judith +Katharine +Kristal +Laquita +Latosha +Latoyia +Letitia +Maegan +Marquitta +Naomi +Serena +Shalonda +Shana +Sharonda +Shauna +Shenika +Shirley +Teri +Terra +Adria +Amie +Betty +Chastity +Christa +Christian +Claire +Geneva +Hayley +Holley +Janna +Jodie +Johnnie +Jonathan +Jordan +Laquanda +Lashondra +Latoria +Maranda +Marilyn +Marissa +Mia +Rose +Ruth +Shaneka +Shonda +Tenisha +Tiffaney +Tracie +William +Aleshia +Allyson +Angie +Anita +Antionette +Ashlie +Brandon +Callie +Candance +Candi +Cassidy +Christin +Cortney +Deana +Deidra +Destiny +Devin +Emma +Gloria +Gwendolyn +Holli +Jean +Jocelyn +Kathy +Ladonna +Lashandra +Maggie +Michele +Rochelle +Ruby +Sally +Shalanda +Shaquita +Shelia +Shemeka +Shemika +Sheri +Staci +Stevie +Tawanda +Taylor +Wanda +Windy +Adrianne +Aisha +Alesha +Alishia +Alyson +Antoinette +Ashely +Belinda +Blair +Bridgette +Brooklyn +Caitlin +Carey +Casandra +Cecelia +Chandra +Chelsea +Christopher +Ciji +Delilah +Diane +Eboni +Edna +Eric +Ericka +Gabrielle +Jane +Jenifer +Jessie +Joni +Juanita +Judy +Justin +Kala +Kandace +Kendall +Kia +Kirby +Lacie +Laquinta +Laquisha +Laurel +Lawanda +Leila +Marian +Marjorie +Meridith +Miriam +Myra +Nedra +Octavia +Rita +Shanda +Shanta +Sharhonda +Shawanda +Shena +Sheree +Sonia +Tori +Vicki +Zandra +Aja +Alexandra +Alexandria +Andria +Angelica +Annette +Beth +Camilla +Candis +Carissa +Carly +Cherie +Christi +Clara +Claudia +Cora +Cyrstal +Daisy +Deandrea +Dixie +Dwan +Elisha +Faith +Hillary +Iris +Jade +Janie +Joseph +Josie +Kandice +Kerrie +Kerry +Kristian +Kristine +Kyla +Lashundra +Latrice +Lea +Lillian +Lora +Lucy +Lynn +Mandi +Marla +Marlena +Matthew +Misti +Nikia +Penny +Portia +Ramona +Robbie +Robert +Shakira +Shelby +Sherika +Sonja +Sylvia +Tamesha +Tequila +Tiffney +Toccara +Tosha +Tyesha +Vickie +Vivian +Abbie +Aerial +Alaina +Alanna +Alfreda +Alyssa +Anya +Aubrey +Briana +Brigette +Camille +Carletta +Casie +Charla +Charles +Chassidy +Cigi +Cristina +Danna +Darla +Demetria +Demetrius +Dionne +Doris +Elaine +Emilee +Farrah +Glenda +Gretchen +Hilary +Hope +Iesha +India +Ingrid +Jamelle +Jeri +Jerri +Joan +Joanie +John +Joshua +Kacy +Karyn +Kate +Katy +Kenisha +Kenyatta +Kenyetta +Kesha +Keshia +Kim +Kira +Lashae +Lashaundra +Latia +Latricia +Lucinda +Lucretia +Marcie +Marguita +Marquisha +Maya +Meaghan +Nakita +Natashia +Nickie +Nora +Princess +Renae +Roberta +Rosanna +Sasha +Savannah +Shandi +Shareka +Shari +Shenna +Shondra +Susie +Takesha +Tamra +Tana +Terry +Tierra +Tiffiny +Tomika +Tonia +Tricia +Valarie +Ashley +Jessica +Jennifer +Amanda +Crystal +Tiffany +Heather +Kimberly +Stephanie +Elizabeth +April +Mary +Amy +Amber +Rachel +Emily +Sarah +Laura +Melissa +Lauren +Latoya +Erica +Lindsey +Rebecca +Angela +Brittany +Megan +Brandy +Andrea +Brandi +Christina +Kristen +Alicia +Courtney +Katherine +Erin +Holly +Shannon +Anna +Kelly +Jamie +Leslie +Danielle +Samantha +Michelle +Lindsay +Candace +Nicole +Victoria +Candice +Misty +Kristin +Katie +Latasha +Melanie +Sara +Allison +Sheena +Christy +Natalie +Monica +Julie +Krystal +Tara +Miranda +Carrie +Lisa +Brittney +Natasha +Whitney +Pamela +Stacey +Marquita +Kristy +Stacy +Cassandra +Kathryn +Tabitha +Alexis +Jenna +Leah +Tonya +Susan +Alisha +Dana +Lori +Casey +Ebony +Bethany +Kayla +Patricia +Felicia +Catherine +Cynthia +Mallory +Cassie +Haley +Jacqueline +Margaret +Karen +Julia +Erika +Tracy +Kristi +Valerie +Hannah +Meghan +Joanna +Kristina +Sabrina +Brooke +Kelli +Kendra +Sharon +Christine +Lacey +Robin +Wendy +Adrienne +Angel +Chasity +Latonya +Tammy +Tina +Alison +Meredith +Tamara +Veronica +Jasmine +Keri +Leigh +Virginia +Katrina +Vanessa +Teresa +Audrey +Melinda +Rhonda +Kara +Rebekah +Carla +Caroline +Carolyn +Donna +Lakesha +Morgan +Summer +Tasha +Jenny +Kasey +Kathleen +Meagan +Nancy +Rachael +Regina +Shanna +Stefanie +Autumn +Carmen +Melody +Barbara +Christie +Shelly +Abby +Amelia +Ann +Hollie +Kellie +Shana +Sonya +Adrian +Bridget +Cheryl +Deborah +Sandra +Dorothy +Gina +Martha +Savannah +Sophia +Terri +Alana +Diana +Hillary +Joy +Lydia +Maria +Shelley +Tamika +Toni +Chelsea +Constance +Denise +Raven +Tameka +Yolanda +Abigail +Beverly +Bobbie +Jana +Latosha +Linda +Stacie +Tracey +Charlotte +Cindy +Deanna +Hope +Jillian +Karla +Latisha +Mandy +Robyn +Sherry +Alecia +Alexandria +Brenda +Carol +Charity +Debra +Janice +Kristie +Krystle +Lakeshia +Laquita +Ashleigh +Bridgett +Christen +Devin +Frances +Kari +Kelley +Krista +Trista +Aimee +Bonnie +Daphne +Ellen +Helen +Janet +Jessie +Jordan +Lashonda +Maggie +Maranda +Monique +Olivia +Paula +Priscilla +Traci +Brandie +Callie +Jill +Jodi +Kathy +Kerri +Lana +Molly +Nikki +Patrice +Sherri +Tabatha +Taylor +Tia +Ashlee +Beth +Bridgette +Britney +Cara +Chiquita +Christa +Connie +Ginger +Hilary +Janna +Jenifer +Kirby +Lakeisha +Marie +Nina +Randi +Renee +Santana +Shayla +Tanisha +Theresa +Vivian +Alaina +Charlene +Deidra +Dominique +Evelyn +Jaclyn +Jacquelyn +Jodie +Lakisha +Lesley +Naomi +Octavia +Shawna +Sheila +Tanya +Valencia +Anne +Annie +Brandon +Christi +Christian +Desiree +Eva +Grace +Joyce +Juanita +Latoria +Lucy +Selena +Shameka +Sherita +Suzanne +Alexandra +Allyson +Ashely +Audra +Belinda +Cecilia +Celia +Chandra +Christin +Clarissa +Fallon +Holley +Janie +Jena +Jocelyn +Keisha +Lacy +Latrice +Laurie +Lawanda +Marilyn +Martina +Miriam +Rita +Rose +Ruth +Sylvia +Tomeka +Antoinette +Brianna +Carly +Deana +Elisabeth +Elise +Heidi +Holli +Jaime +Joni +Joshua +Lashanda +Leanne +Lee +Mindy +Peggy +Ryan +Sharonda +Shauna +Shirley +Tamekia +Tera +Abbie +Alice +Amberly +Angelia +Anita +Ashlie +Bianca +Breanna +Candis +Chrystal +Cortney +Cristy +Dawn +Destiny +Ericka +Gabrielle +Gena +Gloria +India +Jackie +Jade +Joycelyn +Kenya +Michele +Paige +Shamika +Shanika +Shelia +Shellie +Shenika +Tawanda +Tessa +Tiffanie +Alyssa +Annette +Betty +Blair +Britni +Candi +Candy +Cherish +Christal +Deidre +Dianna +Doris +Eboni +Faith +Jacklyn +Jada +Jami +Jody +Judy +Kaila +Kandace +Kendall +Kristan +Ladonna +Laquanda +Lashunda +Lea +Lillian +Lora +Marion +Nakia +Portia +Racheal +Renita +Sandy +Shaquita +Shonda +Taryn +Terra +Tierra +Tiffani +William +Alyson +Angelica +Antionette +Betsy +Casie +Chassity +Claudia +Denisha +Dusty +Edith +Elisha +Gwendolyn +Hayley +Kassie +Kelsey +Kimberley +Kristal +Lakendra +Lashaundra +Latoyia +Leanna +Lena +Lyndsey +Maegan +Marguita +Marissa +Mia +Mollie +Myra +Nedra +Princess +Shanta +Shena +Shenna +Sommer +Sonja +Tawanna +Teela +Temeka +Teri +Tosha +Tracie +Trisha +Tyler +Wanda +Adrianne +Alesha +Alesia +Alisa +Andria +Ariel +Becky +Billie +Briana +Caitlin +Carissa +Casandra +Cassidy +Cathy +Claire +Diane +Edna +Falon +Jamese +Jane +Jeanette +Jonathan +Justin +Kacey +Kacie +Kala +Katy +Kenyetta +Kiana +Kourtney +Laquinta +Laquisha +Lashandra +Lashundra +Leann +Lorrie +Lucretia +Lynn +Malinda +Marcia +Marcie +Marjorie +Marla +Marquetta +Michael +Nakeisha +Nichole +Nikita +Precious +Rhiannon +Rochelle +Rosa +Rosalyn +Shamekia +Shara +Sharita +Shea +Shelby +Sheri +Tammie +Tanesha +Terica +Wendi +Aleshia +Anastasia +Angie +Anisha +Anitra +Ashlea +Ashly +Brittani +Camille +Celeste +Chanel +Cheri +Cherie +Christopher +Cicely +Ciji +Clara +Corey +Davida +Deandra +Deandrea +Dena +Echo +Elaine +Felecia +Georgia +Hanna +Iris +Jeana +Johanna +John +Kandice +Katharine +Kerry +Kesha +Kristian +Kristine +Kyla +Lakesia +Lashaunda +Latarsha +Loren +Magen +Mamie +Marcus +Markita +Marquitta +Miracle +Misti +Nadia +Nakita +Natashia +Penny +Porsha +Ramona +Raquel +Robbin +Rosie +Sally +Savanna +Shalonda +Shanda +Shantel +Shareka +Shayna +Shemika +Sheree +Staci +Starla +Taneka +Tangela +Telisha +Tenesha +Tenisha +Terrica +Thelma +Tiesha +Tiffaney +Twyla +Tyesha +Vickie +Ashley +Jessica +Jennifer +Amanda +Kimberly +Brittany +Tiffany +Crystal +Heather +Stephanie +Elizabeth +Mary +Amber +Amy +Lauren +Laura +Rachel +April +Emily +Megan +Sarah +Melissa +Christina +Jamie +Erica +Andrea +Courtney +Angela +Rebecca +Lindsey +Katherine +Whitney +Anna +Latoya +Brandy +Holly +Brandi +Alicia +Erin +Brittney +Kelly +Danielle +Katie +Kristen +Allison +Shannon +Samantha +Krystal +Michelle +Leslie +Tara +Kathryn +Nicole +Lindsay +Christy +Kristin +Sara +Candace +Victoria +Candice +Julie +Natalie +Lisa +Leah +Pamela +Catherine +Felicia +Kristina +Kristy +Haley +Misty +Monica +Sheena +Tonya +Miranda +Stacy +Hannah +Latasha +Melanie +Natasha +Kayla +Cynthia +Casey +Margaret +Cassandra +Tabitha +Dana +Meagan +Britney +Jasmine +Mallory +Tamara +Jenna +Meghan +Alisha +Carrie +Valerie +Dominique +Tina +Bethany +Lori +Patricia +Sabrina +Stacey +Cassie +Morgan +Karen +Christine +Virginia +Kristi +Meredith +Robin +Susan +Bridget +Angel +Brooke +Ebony +Jacqueline +Alexis +Kendra +Krystle +Tracy +Julia +Katrina +Adrienne +Kasey +Chasity +Tasha +Ashlee +Regina +Santana +Deanna +Erika +Lacey +Latonya +Nikki +Vanessa +Summer +Chelsea +Jenny +Kelli +Sherry +Tammy +Alison +Joanna +Linda +Bonnie +Caroline +Carolyn +Leigh +Rachael +Savannah +Terri +Carla +Charity +Tabatha +Teresa +Frances +Kara +Marquita +Rebekah +Veronica +Annie +Hillary +Kathleen +Mandy +Shana +Wendy +Adrian +Donna +Latisha +Martha +Monique +Sharon +Audrey +Carmen +Jana +Keri +Raven +Tameka +Ashleigh +Hope +Jillian +Laquita +Maria +Shameka +Sonya +Alana +Jordan +Joy +Melinda +Abby +Barbara +Bridgett +Diana +Jacquelyn +Jami +Sandra +Toni +Brandie +Chiquita +Christie +Deborah +Hollie +Lydia +Melody +Nancy +Rhonda +Shanna +Tanisha +Valencia +Aimee +Constance +Dawn +Keisha +Lakeisha +Maegan +Maggie +Molly +Patrice +Randi +Evelyn +Gina +Helen +India +Jodi +Kerri +Ann +Beverly +Bridgette +Hilary +Kari +Lacy +Lashonda +Lyndsey +Shayla +Sophia +Tamika +Alice +Brittani +Christen +Connie +Deandra +Denise +Ginger +Jada +Kelley +Krista +Robyn +Shelly +Sierra +Taylor +Yolanda +Abigail +Anita +Belinda +Caitlin +Charlene +Charlotte +Claire +Gabrielle +Jessie +Lakesha +Lakeshia +Lashunda +Lora +Mindy +Nina +Priscilla +Ryan +Shelby +Stacie +Traci +Alexandria +Betty +Christa +Christi +Cortney +Deidra +Jaclyn +Renee +Shaquita +Sylvia +Tanya +Alecia +Anne +Audra +Beth +Callie +Cara +Christian +Claudia +Fallon +Hayley +Jaime +Jocelyn +Lana +Latosha +Nichole +Paige +Sharonda +Shelley +Stefanie +Tera +Tracey +Trista +Amelia +Angelica +Autumn +Becky +Bobbie +Carol +Chrystal +Daphne +Debra +Ellen +Heidi +Janet +Jennie +Katy +Kenya +Laurie +Michael +Octavia +Shanta +Sommer +Tiara +Tiffanie +Tosha +Alaina +Alesha +Allyson +Amberly +Blair +Brenda +Christin +Cindy +Deidre +Desiree +Dorothy +Jackie +Janice +Jill +Jodie +Kaci +Kala +Karla +Katharine +Kellie +Keshia +Lashanda +Lashundra +Latoyia +Latrice +Lena +Marquetta +Olivia +Princess +Ruth +Selena +Shenika +Shirley +Staci +Alexandra +Breanna +Britany +Cathy +Cecilia +Ciara +Domonique +Emma +Felisha +Gloria +Grace +Jane +Jerri +Joyce +Kristal +Kristie +Latoria +Lee +Lillian +Magan +Marie +Marion +Shaneka +Shemeka +Sydney +Taryn +Tessa +Tia +Adriane +Alyssa +Billie +Brandon +Carissa +Celia +Cheryl +Diandra +Dianna +Dominque +Doris +Ericka +Faith +Felecia +Gwendolyn +Jenifer +Laci +Ladonna +Lashandra +Lateshia +Lynsey +Mandi +Marilyn +Markita +Mia +Shauna +Shequita +Sherita +Starla +Tamra +Tanesha +Terrica +Alisa +Antionette +Brenna +Brittny +Brooklyn +Candi +Carly +Casie +Cassidy +Cierra +Corey +Cristina +Cristy +Elaine +Elise +Elisha +Hailey +Iris +Jade +Jody +Jonathan +Joni +Juanita +Judy +Kacie +Kathy +Kenyatta +Kirsten +Kourtney +Leanne +Lesley +Meaghan +Micaela +Michele +Mollie +Nakia +Naomi +Nikita +Rose +Sandi +Shanika +Shanita +Shante +Shasta +Shelia +Shonda +Tamekia +Tasia +Tawanda +Terasha +Terra +Theresa +Vivian +Wanda +Alyson +Amie +Anastasia +Andrew +Angelia +Ashely +Bianca +Britni +Brittnay +Cameron +Candra +Catrina +Chastity +Christal +Christopher +Clara +Clarissa +Cody +Cristin +Daisy +Demetria +Destiny +Devon +Eboni +Ebonie +Elena +Falon +Holli +Jameka +Jerica +Judith +Kandace +Kandis +Kellye +Kia +Kira +Lakenya +Laquanda +Laurel +Lawanda +Linsey +Loren +Loretta +Lorie +Madeline +Magen +Maranda +Marisa +Nakita +Paula +Peggy +Penny +Porsha +Precious +Racheal +Rachelle +Rikki +Rita +Ruby +Shamekia +Shamika +Shanda +Shellie +Sheree +Sherri +Suzanne +Teela +Tenisha +Thomasina +Tiffani +Tiffney +Tracie +Tyesha +Yvonne +Abbey +Abbie +Adrianne +Ami +Angie +Ansley +Asia +Betsy +Blaire +Briana +Brianna +Brianne +Brittni +Cathryn +Celeste +Chantel +Charla +Courtni +Dena +Devan +Edith +Elisabeth +Eva +Farrah +Francesca +Glenda +Holley +James +Janie +Jason +Jeana +John +Joshua +Joycelyn +Justin +Justina +Kaley +Katheryn +Kenisha +Kenyetta +Keona +Kori +Lacie +Lakisha +Lara +Latanya +Lea +Lesli +Mackenzie +Madison +Madonna +Marla +Martina +Meghann +Nicholas +Regan +Rena +Reva +Sade +Sally +Santanna +Savanna +Scarlett +Serena +Shantae +Shareka +Shari +Shaundra +Shawanda +Shawna +Shea +Sheila +Shemika +Sherrell +Sonja +Stevie +Takeshia +Tamela +Taneshia +Tanika +Tenesha +Tequila +Teri +Terrie +Tiffiny +Tricia +Trinity +Trisha +Tyler +Wendi +Ashley +Jessica +Amanda +Jennifer +Brittany +Tiffany +Heather +Kimberly +Amber +Whitney +Stephanie +Elizabeth +Lauren +Sarah +Mary +Crystal +Amy +Rachel +Emily +Laura +Courtney +Megan +Brittney +Erica +Samantha +April +Melissa +Anna +Rebecca +Lindsey +Katherine +Christina +Jamie +Andrea +Erin +Kelly +Angela +Latoya +Brandi +Sara +Allison +Kristen +Nicole +Kayla +Alicia +Candace +Katie +Mallory +Brandy +Shannon +Holly +Felicia +Britney +Danielle +Krystal +Victoria +Kendra +Hannah +Kristin +Leslie +Michelle +Lindsay +Lisa +Candice +Natalie +Tara +Haley +Kathryn +Julie +Morgan +Casey +Meagan +Tabitha +Carrie +Leah +Monica +Bethany +Jasmine +Kristina +Rachael +Catherine +Christy +Kristy +Savannah +Dominique +Misty +Latasha +Jacqueline +Margaret +Natasha +Stacy +Robin +Tamara +Melanie +Miranda +Cassie +Sabrina +Katrina +Pamela +Susan +Veronica +Alison +Brooke +Stacey +Alisha +Charity +Tracy +Cynthia +Erika +Julia +Meghan +Tonya +Christine +Jordan +Meredith +Patricia +Alexis +Karen +Jenna +Kelli +Rebekah +Summer +Bridget +Lori +Ebony +Ashton +Vanessa +Cassandra +Kasey +Tina +Caroline +Angel +Chasity +Teresa +Carla +Dana +Santana +Sharon +Tammy +Valerie +Christa +Nikita +Regina +Sheena +Adrienne +Kristi +Lacey +Virginia +Wendy +Joanna +Lakeshia +Monique +Kathleen +Krista +Maria +Molly +Jana +Keri +Shanna +Ashleigh +Barbara +Chiquita +Deanna +Hillary +Melinda +Sade +Chelsea +Frances +Joy +Krystle +Nikki +Sierra +Tanisha +Charlotte +Cortney +Kari +Leigh +Melody +Rhonda +Tabatha +Audrey +Denise +India +Sonya +Tameka +Tasha +Ashlee +Caitlin +Diana +Hollie +Kelley +Latonya +Bridgette +Carolyn +Christen +Deborah +Jessie +Jillian +Lashonda +Shayla +Toni +Angelica +Annie +Autumn +Christie +Latisha +Marquita +Martha +Sandra +Terri +Abby +Alexandra +Alexandria +Alice +Ashely +Charlene +Gabrielle +Laquita +Mandy +Stefanie +Theresa +Tracey +Anita +Donna +Dorothy +Emma +Gloria +Hope +Kelsey +Kristie +Lakisha +Lesley +Lydia +Olivia +Paige +Patrice +Raven +Robyn +Traci +Ann +Carmen +Christin +Ciara +Debra +Ellen +Evelyn +Felecia +Janice +Kara +Keisha +Magan +Nancy +Sharonda +Sherry +Tamika +Valencia +Abigail +Amelia +Brandie +Brenda +Britni +Cara +Chandra +Christian +Destiny +Faith +Kaci +Kellie +Lakeisha +Lakendra +Shana +Taylor +Aimee +Allyson +Beth +Britany +Callie +Carly +Cheryl +Claire +Gina +Jacquelyn +Janna +Jenny +Kerri +Lacy +Linda +Madison +Magen +Maggie +Nina +Octavia +Sasha +Yolanda +Alana +Alecia +Alyssa +Amberly +Anne +Beverly +Bonnie +Bridgett +Carol +Cierra +Cindy +Deidra +Grace +Jackie +Jodi +Joni +Kala +Katelyn +Kendall +Latosha +Laurie +Marie +Marissa +Markita +Princess +Staci +Stacie +Teri +Tia +Tiffani +Adrian +Brianna +Cecilia +Chrystal +Clarissa +Constance +Deidre +Elisabeth +Hailey +Helen +Hilary +Lara +Latoria +Nichole +Ryan +Sandy +Shelly +Sherri +Tanya +Tiffanie +Trisha +Antoinette +Betsy +Christi +Connie +Dawn +Ericka +Ginger +Jacklyn +Jaime +Kaitlin +Lacie +Laurel +Lyndsey +Malorie +Michele +Mindy +Racheal +Randi +Rita +Shanta +Shelley +Shirley +Suzanne +Tori +Whittney +Addie +Antionette +Audra +Becky +Brandon +Candis +Demetria +Devin +Holli +Ivy +Jada +Jade +Jaimie +Jami +Jocelyn +Kassie +Kathy +Katy +Keshia +Lakesha +Lana +Lashandra +Latrice +Lillian +Maegan +Marilyn +Meaghan +Paula +Portia +Renee +Shameka +Shanika +Sherika +Tiara +Aisha +Alisa +Allie +Ana +Asia +Bailey +Bianca +Brittani +Brittni +Jeanette +Jill +Juanita +Katharine +Kaylee +Lashondra +Loretta +Madeline +Maranda +Michael +Mollie +Peggy +Rochelle +Ruth +Santanna +Shaina +Shamika +Shanda +Shaneka +Shelia +Sylvia +Tanesha +Tierra +Tosha +Tyesha +Yvonne +Abbie +Adrianne +Alesha +Angelia +Beatrice +Briana +Cameron +Candy +Cassidy +Catrina +Celeste +Clara +Daphne +Diane +Dixie +Ebonee +Eva +Fallon +Glenda +Hayley +Heidi +Holley +Janet +Jena +Jennie +Jodie +Justine +Kenyatta +Kimberley +Kristian +Laci +Ladonna +Latara +Latricia +Melisa +Niki +Precious +Priscilla +Shante +Sharita +Sheila +Shelby +Sherita +Sophia +Stevie +Sydney +Tashia +Terra +Tiffaney +Trista +Valarie +Abbey +Alyson +Anastasia +Ariel +Ashlyn +Ava +Brianne +Brittaney +Cari +Carissa +Cathryn +Cayla +Chastity +Cherish +Ciera +Corey +Cristy +Danita +Davida +Deandra +Dena +Desiree +Domonique +Edith +Gwendolyn +Haleigh +Hanna +Jaclyn +Jamila +Jerri +Johanna +Joshua +Joyce +Judith +Kacie +Kasie +Katina +Kenya +Kirby +Kirsten +Kourtney +Kristal +Laquanda +Lashanda +Latoyia +Lena +Lora +Lucy +Martina +Nakia +Naomi +Phylicia +Rosa +Ruby +Sally +Shalonda +Shanita +Shawna +Shea +Shemika +Shenika +Sidney +Tamra +Taneshia +Tenisha +Tiesha +Tracie +Vicki +Alanna +Alesia +Andria +Angelina +Anika +Apryl +Arielle +Ashli +Aubrey +Betty +Blair +Bonita +Breanna +Brett +Brittnee +Brittnie +Brooklyn +Candi +Candra +Casie +Chelsey +Christopher +Colleen +Daniel +Devon +Dianna +Eboni +Eleanor +Elise +Georgia +Hali +Iris +Janie +Japonica +Jasmin +Jazmin +Jean +Jenifer +Jeremy +Jerica +Joann +John +Julianne +Kaila +Katrice +Kia +Kirstin +Kisha +Kristan +Kristine +Kyla +Kylie +Lacretia +Leanna +Leanne +Linsey +Mandi +Marion +Marsha +Mindi +Nakita +Paris +Peyton +Quinetta +Ramona +Raquel +Ronda +Rosalind +Sable +Sadie +Savanna +Scarlett +Shanae +Shaquitta +Shardae +Sharika +Shasta +Shauna +Shaundra +Shemeka +Shenita +Sommer +Sonja +Stefani +Sunny +Tabetha +Tamekia +Taneisha +Taneka +Tawana +Temeka +Tessa +Timothy +Tristan +Vanity +Vera +Windy +Zandra +Ashley +Jessica +Amanda +Brittany +Jennifer +Tiffany +Amber +Heather +Kimberly +Whitney +Kayla +Lauren +Sarah +Emily +Mary +Stephanie +Brittney +Elizabeth +Rachel +Megan +Laura +Courtney +Crystal +Erica +Anna +Samantha +April +Lindsey +Amy +Melissa +Christina +Rebecca +Katherine +Jamie +Allison +Angela +Andrea +Erin +Katie +Shannon +Kendra +Haley +Kelly +Kristen +Victoria +Danielle +Brandy +Hannah +Brandi +Michelle +Sara +Alicia +Morgan +Mallory +Casey +Latoya +Kathryn +Nicole +Britney +Holly +Candace +Kristin +Catherine +Lindsay +Lisa +Leslie +Jasmine +Leah +Natasha +Tara +Candice +Krystal +Natalie +Bethany +Lacey +Monica +Meagan +Miranda +Felicia +Julie +Dana +Latasha +Christine +Jordan +Savannah +Valerie +Karen +Melanie +Misty +Ebony +Chelsea +Christy +Robin +Pamela +Adrienne +Alexis +Kristina +Julia +Margaret +Tamara +Tonya +Alisha +Caitlin +Sasha +Ashton +Kelli +Sabrina +Patricia +Susan +Tabitha +Veronica +Angel +Angelica +Cassandra +Cynthia +Summer +Gabrielle +Jenna +Alison +Brooke +Cassie +Deanna +Meredith +Rachael +Stacey +Caroline +Carrie +Erika +Kristi +Molly +Vanessa +Chasity +Krista +Barbara +Kristy +Stacy +Katrina +Dominique +Meghan +Tammy +Virginia +Autumn +Charity +Leigh +Regina +Sheena +Alexandra +Jacqueline +Jenny +Carolyn +Jana +Jillian +Lori +Maegan +Sierra +Toni +Tracy +Ashlee +Audrey +Kasey +Kathleen +Monique +Tina +Kelsey +Keri +Randi +Tasha +Alyssa +Ashleigh +Christian +Denise +Kara +Melody +Hillary +Abby +Bridget +Constance +Ellen +Kelley +Lakeisha +Maria +Paige +Sharon +Cierra +Joanna +Kala +Kari +Priscilla +Carla +India +Lakeshia +Olivia +Rebekah +Yolanda +Brandie +Brianna +Hayley +Hollie +Mandy +Melinda +Shelley +Alexandria +Bridgette +Cheryl +Claire +Diana +Kendall +Lacy +Linda +Marquita +Nikki +Taylor +Wendy +Amelia +Breanna +Brenda +Christie +Jessie +Joy +Keisha +Lashonda +Martha +Nikita +Raven +Rhonda +Shanna +Tameka +Traci +Ashely +Bonnie +Cara +Carol +Chiquita +Donna +Hope +Kellie +Kerri +Nancy +Octavia +Robyn +Sandra +Tabatha +Aimee +Anastasia +Chelsey +Emma +Jacquelyn +Lakendra +Latoria +Lydia +Marissa +Patrice +Santana +Sonya +Teresa +Terri +Adrian +Anne +Ashlie +Beverly +Callie +Cortney +Gina +Kandice +Krystle +Paula +Alyson +Briana +Bridgett +Brittani +Charlene +Christa +Dawn +Deborah +Ericka +Faith +Frances +Jaclyn +Jerrica +Jodi +Kristian +Michele +Nina +Ryan +Sydney +Tia +Tiara +Tracey +Abigail +Alice +Allyson +Carmen +Desiree +Heidi +Kaci +Kenya +Laquita +Latonya +Maggie +Mindy +Sherry +Sophia +Tanesha +Valencia +Anita +Ann +Audra +Carly +Charlotte +Christen +Clarissa +Dorothy +Grace +Hailey +Jackie +Janay +Kristie +Lakisha +Lara +Latisha +Laurel +Misti +Porsha +Sally +Shana +Shelby +Sylvia +Tamika +Tanisha +Annie +Antoinette +Betty +Bobbie +Brandon +Christin +Debra +Destiny +Hilary +Jada +Jaime +Jane +Janet +Keshia +Laci +Lesley +Madison +Mandi +Precious +Sandy +Savanna +Shaina +Shameka +Shaquita +Shauna +Suzanne +Alana +Alecia +Allie +Amberly +Bailey +Chelsie +Ciera +Deidra +Eboni +Eleanor +Felisha +Haleigh +Jami +Janice +Janie +Jazmine +Jeannie +Jill +Judy +Karla +Kenyetta +Lacie +Lashanda +Latosha +Latrice +Lora +Matthew +Nichole +Racheal +Shanika +Shenika +Stefanie +Aleshia +Andria +Beth +Brittni +Cameron +Cecilia +Chrissy +Chrystal +Elisha +Felecia +Gloria +Gwendolyn +Helen +Jasmin +Jenifer +Joni +Kaitlin +Katelyn +Larhonda +Lashunda +Magan +Malorie +Maranda +Marilyn +Marsha +Mollie +Paris +Peggy +Ruby +Ruth +Shawanda +Shayla +Sherita +Sherri +Shirley +Stevie +Terra +Tiffanie +Tori +Tracie +Amie +Ana +Antionette +Ariel +Ashlyn +Becky +Betsy +Britany +Brittnay +Candis +Candy +Cindy +Corey +Ebonie +Elise +Evelyn +Ginger +Hallie +Hanna +Jeanette +Jena +Justin +Kacey +Kassie +Katharine +Kaylee +Kyla +Ladonna +Lakesha +Laquanda +Lena +Lyndsey +Marian +Portia +Shanavia +Shelly +Sonja +Staci +Tanya +Teri +Tyler +Valarie +Vivian +Abbie +Aisha +Alena +Alesia +Alexia +Amberley +Angelina +Brian +Brittnie +Brittny +Carissa +Celia +Channing +Chloe +Clara +Cody +Denisha +Devin +Domonique +Elisa +Emilee +Felica +Francesca +Gabriel +Georgia +Holley +Holli +James +Janna +Jean +Joyce +Kaila +Kaley +Kira +Kristal +Kristine +Laporsha +Lashaundra +Lashundra +Laurie +Lea +Leann +Lillian +Lucy +Magen +Mallorie +Marianne +Markita +Marla +Marlena +Marquetta +Martina +Meaghan +Raquel +Renee +Renita +Roxanne +Sade +Selena +Shaneka +Shanita +Shasta +Shawna +Shena +Shiquita +Tabetha +Theresa +Tiffani +Tricia +Tyesha +Tynesha +William +Alaina +Alanna +Alexa +Alissa +Alysia +Annah +Ashlea +Ashli +Asia +Bianca +Blair +Blake +Brittaney +Camille +Candi +Carlie +Casie +Cassidy +Cayla +Chandra +Chaquita +Chassity +Cherelle +Christal +Concetta +Cristen +Cristy +Darlene +Deandrea +Deangela +Dedra +Deidre +Demetria +Devon +Diane +Dianna +Dominque +Elena +Elisabeth +Eva +Fallon +Farrah +Hali +Iris +Ivy +Jade +Jerica +Jessika +Jocelyn +Jodie +Joi +Joshua +Justina +Kacie +Kacy +Kandace +Kandi +Kate +Katheryn +Kathrine +Kathy +Kenyatta +Kyndal +Kyra +Laken +Lakita +Laquisha +Lashondra +Lawanda +Loren +Loretta +Louise +Lucretia +Lynette +Mackenzie +Madeline +Marie +Marisa +Miriam +Nakia +Nakita +Naomi +Natosha +Norma +Nyesha +Princess +Racquel +Renisha +Reva +Rosa +Rose +Shanda +Shandra +Shantel +Shantell +Sharhonda +Sharita +Shelia +Sheneka +Sheree +Shonta +Somer +Stacie +Stephaine +Tamera +Tamra +Taneshia +Tangela +Tessa +Tosha +Tyeshia +Wanda +Jessica +Ashley +Brittany +Amanda +Tiffany +Heather +Amber +Kayla +Jennifer +Sarah +Lauren +Whitney +Kimberly +Mary +Elizabeth +Courtney +Stephanie +Emily +Brittney +Rachel +Laura +Megan +Crystal +Jasmine +Samantha +Rebecca +Amy +Katherine +Melissa +Erica +April +Anna +Katie +Lindsey +Haley +Kristen +Christina +Hannah +Andrea +Victoria +Kendra +Allison +Angela +Kristin +Danielle +Britney +Candace +Erin +Jamie +Chelsea +Sara +Brandi +Morgan +Kelly +Alicia +Mallory +Holly +Kathryn +Shannon +Caitlin +Nicole +Brandy +Leah +Catherine +Bethany +Latasha +Michelle +Lindsay +Margaret +Krystal +Julie +Leslie +Lisa +Casey +Latoya +Candice +Miranda +Monica +Tabitha +Tara +Natalie +Rachael +Jacqueline +Meagan +Ebony +Melanie +Natasha +Jordan +Cassandra +Misty +Felicia +Lacey +Kristina +Patricia +Angel +Cassie +Virginia +Adrienne +Carrie +Alexis +Alisha +Bianca +Jenna +Alexandria +Cynthia +Kathleen +Kristi +Rebekah +Christy +Alyssa +Chasity +Dana +Gabrielle +Meghan +Molly +Stacey +Caroline +Katrina +Robin +Alexandra +Christine +Valerie +Vanessa +Angelica +Julia +Kasey +Krista +Kristy +Summer +Tamara +Brooke +Meredith +Taylor +Destiny +Kelsey +Stacy +Karen +Kelli +Savannah +Shanice +Veronica +Ashlee +Katelyn +Maria +Susan +Ashton +Dominique +Jaleesa +Jalisa +Sabrina +Abby +Autumn +Jillian +Joanna +Kaitlin +Olivia +Tasha +Tonya +Whitley +Erika +Pamela +Anne +Nikki +Paige +Sasha +Toni +Audrey +Briana +Brianna +Kelley +Kellie +Tiara +Bridget +Carla +Donna +Grace +Kala +Kara +Tameka +Alison +Frances +Jana +Kerri +Monique +Wendy +Barbara +Bridgette +Christian +Deanna +Dorothy +Hillary +Kari +Nancy +Tabatha +Tina +Ashleigh +Carmen +Carolyn +Hollie +Jerica +Leigh +Madison +Sierra +Teresa +Adrian +Ashely +Charity +Chelsey +Cheryl +Hailey +Lakeshia +Lori +Shaina +Terri +Tierra +Allyson +Audra +Christen +Constance +Keri +Kristie +Linda +Maegan +Porsha +Randi +Sharon +Staci +Sylvia +Traci +Abigail +Alana +Amelia +Ann +Beverly +Callie +Chiquita +Ciara +Cortney +Deborah +Denise +Jacquelyn +Keisha +Keshia +Lydia +Shayla +Shelly +Tracy +Bonnie +Christin +Eboni +Jenny +Kaitlyn +Kandace +Lacy +Regina +Shelley +Amberly +Antoinette +Bailey +Claire +Ellen +Evelyn +India +Lakendra +Laquita +Lesley +Melody +Sandra +Sherry +Tanisha +Tanya +Aimee +Annie +Blair +Breanna +Christa +Ciera +Desiree +Hayley +Janna +Jill +Joy +Kendall +Latisha +Latonya +Latoria +Maggie +Mandy +Maranda +Marie +Michele +Nina +Paula +Raven +Robyn +Sheena +Suzanne +Yolanda +Brenda +Brittani +Cara +Chelsie +Daphne +Emma +Hali +Jaclyn +Jennie +Lakeisha +Lakesha +Lashonda +Lashundra +Mindy +Patrice +Rhonda +Shana +Stefanie +Taneshia +Tia +Valencia +Allie +Ana +Ariel +Ashlie +Caitlyn +Candi +Cayla +Charlotte +Christie +Cierra +Deidra +Diana +Jane +Lyndsey +Marissa +Martha +Nichole +Octavia +Sade +Shaneka +Sydney +Theresa +Alecia +Ashli +Bobbie +Brandie +Britany +Carol +Christi +Faith +Gabriel +Holley +Holli +Hope +Jerrica +Jessie +Justin +Kandice +Kristian +Krystle +Lara +Latosha +Latrice +Lillian +Magan +Marquetta +Melinda +Mollie +Raquel +Sally +Shayna +Simone +Sonya +Adrianne +Brittni +Cameron +Cecilia +Cecily +Charlene +Debra +Deidre +Elisabeth +Eva +Gina +Helen +Jackie +Jada +Jade +Janet +Janice +Jasmin +Jelisa +Jodi +Kassie +Kathy +Kenya +Lana +Lashunda +Lee +Magen +Marilyn +Marquita +Michaela +Nadia +Precious +Santana +Selena +Shanika +Tammy +Tanesha +Tiffani +Abbey +Addie +Aisha +Alisa +Anita +Betty +Brandon +Bridgett +Christal +Clarissa +Claudia +Ericka +Hanna +Hilary +Jaime +Janie +Jessika +Jocelyn +Juanita +Kaci +Kaila +Kaylee +Lakisha +Laurie +Lora +Marian +Marisa +Marla +Priscilla +Racheal +Sharita +Shea +Sophia +Tamika +Tori +Tracey +Whittney +Aleshia +Alice +Anastasia +Ashlyn +Belinda +Beth +Betsy +Brittnie +Brooklyn +Camilla +Camille +Carley +Chandra +Cindy +Dawn +Devin +Elise +Eric +Farrah +Felecia +Gwendolyn +Haleigh +Jalessa +Jalissa +James +Janae +Jeannie +Joni +Joshua +Kacie +Kaley +Katharine +Kesha +Kimber +Lucy +Lynsey +Madeline +Mandi +Naomi +Nora +Paris +Portia +Princess +Roxanne +Shameka +Shanna +Shawna +Sheila +Sherri +Shirley +Stacie +Tessa +Tyesha +Aleisha +Alexia +Aubrey +Britni +Brittaney +Brittanie +Britteny +Carli +Carly +Chanda +Cherelle +Cherish +Daniel +Deandrea +Delisa +Dianna +Eden +Ella +Felisha +Georgia +Halie +Jameka +Jami +Jeremy +Jeri +Joan +Jody +Joyce +Karla +Kasie +Katy +Kirsten +Kourtney +Laquinta +Lashanda +Laurel +Lea +Marjorie +Markita +Martina +Matthew +Mercedes +Nakita +Nikita +Phylicia +Racquel +Rita +Ruth +Shanavia +Shauna +Shelby +Shequita +Sheree +Sherika +Stevie +Sumer +Taja +Tamekia +Tempestt +Tera +Terrica +Tiesha +Tosha +Tyler +Vickie +Aaron +Alaina +Alysia +Alyson +Asheley +Asia +Aundrea +Ayla +Benjamin +Brianne +Brittiany +Camillia +Cecelia +Chastity +Cheri +Chloe +Christopher +Clara +Codi +Cody +Connie +Dara +Darnisha +Dayna +Deandra +Debbie +Deirdre +Dixie +Domonique +Elaine +Emilie +Fallon +Frederica +Ginger +Hallie +Iesha +Ivy +Jayla +Jayme +Jodie +Judy +Justina +Justine +Kacey +Kate +Katlyn +Kayley +Kenisha +Kristine +Kylie +Laquisha +Larhonda +Larissa +Latanya +Latara +Latesha +Leighann +Leila +Logan +Loren +Lynn +Mckenzie +Meaghan +Meighan +Melisa +Mesha +Mia +Natashia +Porcha +Porsche +Rashunda +Renee +Robbie +Rosie +Ruby +Sadie +Santanna +Savanna +Shameika +Shamika +Shanteria +Sharnice +Shemeka +Shemika +Shenika +Sherita +Sonja +Tamala +Tamra +Taryn +Teri +Tiffanie +Trista +Vivian +Wanda +Ashley +Jessica +Brittany +Tiffany +Amanda +Kayla +Amber +Sarah +Lauren +Jennifer +Courtney +Heather +Jasmine +Elizabeth +Megan +Emily +Brittney +Mary +Kimberly +Rachel +Stephanie +Whitney +Samantha +Anna +Hannah +Erica +Laura +Katherine +Kristen +Rebecca +Christina +Chelsea +Crystal +Haley +Melissa +April +Amy +Danielle +Katie +Lindsey +Jamie +Andrea +Erin +Angela +Morgan +Victoria +Sara +Allison +Kiara +Kristin +Kendra +Kelsey +Meagan +Kathryn +Holly +Kelly +Brandi +Caitlin +Jordan +Alicia +Michelle +Candace +Brandy +Catherine +Britney +Casey +Leah +Leslie +Krystal +Nicole +Tara +Bethany +Lisa +Monica +Margaret +Lindsay +Candice +Lacey +Latoya +Taylor +Alisha +Mallory +Natalie +Alexandria +Cynthia +Natasha +Rebekah +Shannon +Miranda +Felicia +Cassandra +Gabrielle +Julie +Melanie +Brooke +Caroline +Christine +Erika +Cassie +Chasity +Katelyn +Kristina +Robin +Tabitha +Alexis +Alexandra +Sabrina +Bianca +Dana +Meghan +Virginia +Angelica +Jacqueline +Kelli +Meredith +Molly +Angel +Summer +Audrey +Brianna +Patricia +Rachael +Tiara +Kasey +Kaitlin +Savannah +Vanessa +Alyssa +Ashton +Christy +Deanna +Grace +Joanna +Julia +Kara +Latasha +Pamela +Ashlee +Amelia +Ebony +Jalisa +Jenna +Stacy +Ashleigh +Olivia +Katrina +Stacey +Tamara +Veronica +Abby +Barbara +Misty +Sharon +Abigail +Adrienne +Hillary +Kaitlyn +Kristi +Lori +Marissa +Whitley +Alison +Bridget +Kala +Magan +Chelsey +Cortney +Jillian +Regina +Susan +Briana +Bridgette +Carmen +Carrie +Charity +Krista +Kristy +Lydia +Madison +Monique +Toni +Tonya +Christian +Tasha +Adriana +Deborah +Jenny +Kathleen +Latonya +Nikki +Raven +Sydney +Breanna +Carolyn +Diana +Donna +Hailey +Helen +Kellie +Maria +Mercedes +Paige +Sierra +Teresa +Adrianna +Anne +Autumn +Carla +Chiquita +Constance +Ellen +Emma +Jacquelyn +Sheena +Terri +Tierra +Allyson +Bailey +Caitlyn +Destiny +Dominique +Jaleesa +Jerrica +Jessie +Lashonda +Leigh +Portia +Valerie +Abbey +Brittani +Claire +Jodi +Kierra +Lakeisha +Latisha +Nancy +Randi +Shayla +Tina +Amberly +Dorothy +Hilary +Kendall +Lakeshia +Tracy +Ariel +Audra +Callie +Ciara +Cierra +Frances +Hayley +Joy +Karen +Lakendra +Laurel +Linda +Maggie +Sha +Shanna +Valencia +Carol +Cheryl +Christen +Faith +Gina +Hollie +India +Jerica +Kaci +Kiera +Krystle +Laquita +Lillian +Marquita +Martha +Nikita +Nina +Paris +Porsha +Sandra +Shanice +Shelby +Tameka +Tori +Wendy +Alana +Alecia +Alice +Allie +Antoinette +Ashlyn +Audriana +Betty +Brittni +Cara +Carly +Desiree +Evelyn +Hope +Jana +Jill +Keshia +Lacy +Lyndsey +Melody +Sade +Sasha +Shana +Sylvia +Tabatha +Theresa +Aimee +Annie +Arielle +Aubrey +Bobbie +Bonnie +Britany +Chelsie +Christin +Demetria +Denise +Hanna +Jaclyn +Jami +Jane +Kari +Karla +Keisha +Kelley +Kirsten +Kylie +Leanna +Lesley +Maegan +Mollie +Patrice +Precious +Priscilla +Racheal +Shaina +Tammy +Asia +Cecily +Charlotte +Chloe +Christa +Dawn +Jade +Janie +Jelisa +Kenya +Keri +Mindy +Robyn +Ryan +Shameka +Shanika +Simone +Staci +Tanisha +Alyson +Ann +Audrianna +Bridgett +Christie +Cindy +Clara +Connie +Elisabeth +Jasmin +Kaley +Kimberley +Kristie +Laurie +Magen +Mandy +Melinda +Paula +Rhonda +Selena +Sonya +Tiera +Tracie +Abbie +Adrian +Alaina +Alexia +Anastasia +Ashely +Beth +Brittaney +Celeste +Haleigh +Hali +Jada +Janet +Jodie +Joni +Kacie +Kaila +Kandace +Kandice +Kathy +Kourtney +Kristal +Kristan +Lara +Lucy +Maranda +Marquetta +Santana +Shelley +Shirley +Tanesha +Tia +Tiffanie +Vivian +Adrianne +Alisa +Belinda +Brandie +Brenda +Britny +Camille +Carlie +Cayla +Charlene +Deandra +Destin +Dixie +Ericka +Eva +Geneva +Gloria +Heidi +Holli +Janna +Jennie +Josie +Justine +Kassie +Kate +Kaylee +Kimber +Kristian +Martika +Michaela +Nora +Sherry +Ana +Anjelica +Antionette +Ashli +Ashly +Britnee +Cameron +Carissa +Cassidy +Chandra +Chantel +Christi +Corey +Dara +Deidra +Emilee +Felecia +Halie +Jackie +Jamese +Janice +Jena +Jeri +Justin +Kaleigh +Kaylan +Kelsi +Kenyatta +Kyla +Laci +Lakita +Lashanda +Latoria +Leanne +Lee +Loren +Marsha +Meaghan +Micah +Miriam +Nichole +Shareka +Sharonda +Shea +Sheree +Sherita +Sophia +Starla +Suzanne +Tamekia +Tawana +Teri +Tosha +Ursula +Aisha +Alexa +Alysia +Angelique +Anita +Asha +Ashanti +Beverly +Billie +Breana +Brittnie +Candance +Cari +Catrina +Cecilia +Cherelle +Chyna +Ciera +Clarissa +Claudia +Debra +Deirdre +Denisha +Devin +Elise +Iris +Jaime +Jaimie +Jazmine +Jean +Jenifer +Jocelyn +Johanna +Joyce +Joycelyn +Juanita +Karissa +Kasi +Kathrine +Katlyn +Katrice +Katy +Kayleigh +Kaylyn +Keara +Kerri +Lacie +Laken +Lakesha +Lakisha +Laquinta +Lashondra +Lashunda +Mallorie +Marie +Marilyn +Marion +Markita +Michele +Millie +Nadia +Niki +Rachelle +Rochelle +Ruby +Samatha +Shanda +Shantel +Shauna +Shawna +Sheila +Shelly +Stacie +Stefanie +Stevie +Susanna +Takeshia +Tamika +Taryn +Tenisha +Terra +Traci +Trisha +Tyesha +Tyneshia +Adriane +Alesha +Alesia +Ansley +Anthony +Ashlea +Ayla +Brittanie +Britteny +Brittnee +Brittny +Candis +Cherrelle +Cora +Dakota +Daphne +Darlene +Deangela +Deidre +Deondra +Doris +Dusty +Eboni +Eden +Eleanor +Elisha +Emilie +Felisha +Georgia +Glenda +Gwendolyn +Hallie +Ivy +Jalissa +Jameria +Janessa +Jasimine +Jeanette +Jesse +Joi +Jonna +Joshua +Kali +Kandi +Katharine +Kati +Kearia +Kelsie +Keonna +Kerry +Keyanna +Kori +Kristine +Kristyn +Lakin +Laporsha +Latosha +Latrice +Lauryn +Lawanda +Lena +Lindley +Logan +Lora +Lynsey +Madeline +Marjorie +Marley +Meghin +Melita +Mia +Misti +Monika +Octavia +Phyllis +Porshia +Princess +Rena +Rene +Rita +Sandy +Savanna +Selina +Shaneka +Shaniece +Shanita +Shanta +Shari +Shasta +Shawanda +Shayna +Shellie +Shenika +Sondra +Stormy +Tatiana +Tempestt +Tequila +Tera +Terrica +Tiffani +Tracey +Trista +Valarie +Vanity +Ashley +Brittany +Jessica +Kayla +Amanda +Jasmine +Amber +Tiffany +Courtney +Lauren +Elizabeth +Sarah +Emily +Mary +Heather +Stephanie +Jennifer +Megan +Brittney +Samantha +Hannah +Kimberly +Whitney +Rachel +Chelsea +Anna +Katherine +Erica +Haley +Rebecca +Morgan +Kristen +Crystal +Laura +Lindsey +Victoria +Jordan +Christina +Sara +April +Melissa +Amy +Erin +Andrea +Taylor +Allison +Jamie +Danielle +Katie +Kelsey +Michelle +Catherine +Brandi +Kathryn +Angela +Raven +Brianna +Caitlin +Leah +Alexandria +Candace +Kristin +Nicole +Casey +Alicia +Kelly +Meagan +Olivia +Kendra +Brandy +Breanna +Bethany +Holly +Tara +Britney +Katelyn +Shelby +Caroline +Kristina +Lindsay +Rachael +Brooke +Erika +Leslie +Shannon +Alyssa +Alexis +Miranda +Tabitha +Summer +Ariel +Angel +Margaret +Patricia +Cassandra +Mallory +Savannah +Julie +Kiara +Felicia +Candice +Alexandra +Alisha +Julia +Chasity +Krystal +Melanie +Molly +Ebony +Monica +Gabrielle +Hillary +Rebekah +Carrie +Deanna +Kaitlin +Lisa +Bianca +Kaitlyn +Meredith +Natalie +Tamara +Briana +Cynthia +Adrienne +Dana +Kara +Lacey +Latoya +Robin +Ashleigh +Audrey +Christian +Christine +Madison +Sabrina +Ashton +Natasha +Sierra +Virginia +Abigail +Autumn +Cassie +Cierra +Cortney +Kasey +Krista +Paige +Dominique +Lori +Bailey +Kala +Latasha +Abby +Amelia +Carmen +Kellie +Kendall +Meghan +Sydney +Alison +Kristy +Whitley +Chelsey +Destiny +Jenna +Kelli +Vanessa +Ashlee +Jessie +Kierra +Kristi +Stacey +Tiara +Angelica +Bridget +Carolyn +Christy +Mercedes +Regina +Caitlyn +Charlotte +Joanna +Kathleen +Katrina +Kirsten +Linda +Susan +Amberly +Britany +Callie +Hope +Jacqueline +Kaylee +Lydia +Nikki +Claire +Desiree +Maegan +Maria +Sharon +Tabatha +Beverly +Dorothy +Frances +Grace +Hilary +Jalisa +Keisha +Madeline +Mariah +Marissa +Martha +Tasha +Tracy +Valerie +Jaleesa +Jillian +Kari +Kelley +Paula +Shaniqua +Stacy +Chiquita +Hayley +Karen +Lakeshia +Latisha +Nancy +Pamela +Sasha +Shayla +Toni +Veronica +Ashlyn +Carla +Carly +Charity +Ciera +Emma +Laquita +Leanna +Leigh +Melinda +Misty +Randi +Tierra +Barbara +Christin +Deidra +Denise +Devin +Kiera +Lacy +Marquita +Robyn +Shawna +Terri +Alesha +Allyson +Anne +Brittani +Constance +Diana +Faith +Jaclyn +Jenny +Joy +Kaci +Latoria +Meaghan +Mia +Santana +Shana +Shauna +Sonya +Tina +Adrian +Aimee +Asia +Brenda +Charlene +Chelsie +Deborah +Donna +Hollie +India +Jazmine +Jerrica +Lakendra +Macy +Michele +Mollie +Monique +Shanna +Alyson +Breana +Cara +Clarissa +Gina +Helen +Jasmyne +Jerica +Kenya +Keri +Kylie +Lakeisha +Lyndsey +Magan +Marilyn +Priscilla +Shameka +Simone +Tammy +Tanya +Teresa +Tia +Tiffani +Tonya +Tori +Tracey +Abbey +Alecia +Alexa +Allie +Anita +Aubrey +Bridgett +Bridgette +Carol +Cheryl +Eboni +Gloria +Hali +Hanna +Jade +Jana +Jasmin +Kanesha +Kerri +Keshia +Kourtney +Latonya +Lillian +Mandy +Patrice +Precious +Sandra +Skylar +Tempest +Alice +Angelia +Ann +Annie +Antoinette +Brittni +Cameron +Christa +Ciara +Claudia +Dakota +Daphne +Demetria +Haleigh +Jacquelyn +Jada +Jami +Janice +Janie +Kenyatta +Kimberley +Mackenzie +Maya +Nichole +Shelley +Stacie +Suzanne +Sylvia +Tamika +Tanisha +Tyler +Valencia +Abbie +Alanna +Alissa +Andria +Arielle +Ashlie +Bonnie +Brandie +Britni +Brittaney +Brooklyn +Camille +Chloe +Christen +Debra +Ellen +Ericka +Hailey +Hallie +Kaneesha +Kanisha +Kassie +Kirstie +Kristian +Lacie +Laurel +Maggie +Martika +Melody +Nina +Portia +Savanna +Tanesha +Teri +Theresa +Tosha +Wendy +Yolanda +Adrianna +Alana +Ariana +Audra +Cassidy +Cecily +Christie +Cori +Elaine +Eleanor +Elisabeth +Heidi +Holli +Jaime +Jane +Juanita +Justine +Kacey +Kaila +Kaley +Kandace +Kandice +Kate +Laken +Lakisha +Lashonda +Magen +Marie +Michaela +Porsha +Raquel +Renee +Rhonda +Riley +Ruby +Ryan +Skye +Taneisha +Terra +Vivian +Alaina +Alexia +Ansley +Audreanna +Betty +Bobbie +Brea +Brittanie +Cari +Carissa +Cathy +Cayla +Celeste +Chastity +Dawn +Deandra +Devan +Devon +Domonique +Eden +Emilee +Felisha +Georgia +Gwendolyn +Jalissa +Janna +Jelisa +Jodie +Kacie +Kacy +Kasie +Katharine +Kirby +Kortney +Laquinta +Latifah +Laurie +Lesley +Logan +Mara +Marsha +Miriam +Nakita +Naomi +Octavia +Paris +Racheal +Ruth +Shanika +Shaquita +Sherry +Sophia +Tamela +Tiffanie +Tyesha +Wanda +Aisha +Alesia +Alisa +Asha +Audrianna +Blair +Bre +Brenna +Brittnee +Chassidy +Coral +Darnisha +Delicia +Delisa +Emerald +Ginger +Glenda +Heaven +Iesha +Ivy +Jameka +Janae +Jennie +Jerika +Jesse +Jodi +Joycelyn +Justina +Kaleigh +Kali +Kamesha +Kaneisha +Kassandra +Katelin +Katelynn +Kattie +Kelsie +Kenisha +Kira +Kirstin +Kristan +Kristie +Krystle +Laci +Laquetta +Lara +Lashondra +Layla +Lena +Lora +Madalyn +Marisa +Mckenzie +Nikita +Patience +Peggy +Princess +Ravin +Shanequa +Shanta +Sharonda +Shayna +Sheila +Skyler +Stefanie +Tameka +Tequila +Traci +Whittney +Adriana +Aja +Aleshia +Alyssia +Angie +Anissa +Anjelica +Annmarie +Antionette +Ashely +Ashly +Ava +Avery +Bethanie +Brianne +Britteny +Brittny +Candance +Cecilia +Chanel +Channing +Chantel +Charla +Chassity +Cherish +Cindy +Codi +Colleen +Connie +Corey +Darnesha +Deandrea +Deja +Destin +Destinie +Dominque +Evelyn +Fallon +Felecia +Gabriel +Hayden +Jackie +Jaimie +Jamaica +Jameria +Jena +Jesslyn +Jill +Jocelyn +Joslyn +Judith +Juliana +Julisa +Kaitlynn +Karissa +Karyn +Kathrine +Katlin +Katlyn +Kaylin +Kaylyn +Keeley +Keely +Kendal +Kerrie +Kiarra +Kiesha +Kisha +Kortni +Kyra +Laporsha +Laquitta +Lasonya +Latonia +Latricia +Leann +Lola +Loren +Lorrie +Louise +Maranda +Mariana +Marlee +Meagen +Mindy +Miracle +Nadia +Peyton +Phylicia +Ramona +Randa +Reagan +Rose +Roxanne +Samone +Selena +Sha +Shakira +Shaneka +Shanetta +Shante +Shantel +Sheena +Sherri +Sidney +Staci +Stevie +Susannah +Symone +Taira +Talia +Talisa +Terrika +Tess +Tessa +Tierney +Tracie +Trinity +Trista +Tynisha +Yasmine +Ashley +Jessica +Brittany +Kayla +Jasmine +Amber +Amanda +Lauren +Emily +Tiffany +Courtney +Sarah +Elizabeth +Mary +Megan +Heather +Hannah +Rachel +Jennifer +Samantha +Stephanie +Anna +Whitney +Shelby +Kimberly +Victoria +Brittney +Haley +Chelsea +Kelsey +Morgan +Katherine +Rebecca +Taylor +Kristen +Lindsey +Erica +Crystal +Danielle +Laura +Christina +Jordan +Allison +Amy +April +Katie +Raven +Melissa +Olivia +Alexandria +Jamie +Sara +Meagan +Andrea +Erin +Kathryn +Angela +Alicia +Britney +Kristin +Ariel +Caitlin +Mallory +Brianna +Casey +Candace +Catherine +Holly +Michelle +Iesha +Brandi +Kelly +Margaret +Savannah +Miranda +Bethany +Leah +Alexandra +Katelyn +Lacey +Nicole +Alexis +Briana +Cassandra +Caroline +Julia +Kendra +Alyssa +Brooke +Rachael +Angel +Brandy +Kiara +Madison +Molly +Gabrielle +Kristina +Shannon +Breanna +Tabitha +Lindsay +Sydney +Tara +Mariah +Candice +Julie +Bianca +Chasity +Leslie +Monica +Robin +Kara +Kaitlin +Kaitlyn +Natalie +Paige +Summer +Destiny +Ashleigh +Latoya +Rebekah +Hillary +Lisa +Dominique +Felicia +Abigail +Christian +Jillian +Melanie +Tamara +Amelia +Carrie +Chelsey +Erika +Jenna +Kasey +Kathleen +Shaniqua +Audrey +Autumn +Kierra +Jacqueline +Krystal +Alisha +Christine +Meghan +Meredith +Misty +Adrienne +Ashton +Patricia +Anne +Ashlee +Carly +Deanna +Ebony +Marissa +Amberly +Bailey +Cynthia +Jalisa +Kirsten +Mercedes +Natasha +Pamela +Sierra +Callie +Maria +Sabrina +Virginia +Carmen +Cassie +Christy +Dana +Karen +Krista +Maggie +Angelica +Cortney +Jazmine +Kelsie +Shayla +Whitley +Cierra +Katrina +Monique +Shanna +Terri +Vanessa +Asia +Brittani +Caitlyn +Charity +Charlotte +Hayley +Ieshia +Jessie +Latasha +Madeline +Sandra +Susan +Tonya +Ciara +Claire +Faith +Grace +Lori +Lydia +Tiara +Veronica +Ann +Desiree +Devin +Emma +Frances +Keri +Kristi +Maegan +Melody +Abby +Allyson +Hailey +Hope +Jade +Kellie +Kristian +Lakeisha +Lillian +Marquita +Robyn +Shawna +Toni +Valerie +Alexa +Ashlyn +Brooklyn +Cheyenne +India +Joy +Kala +Kelli +Linda +Nikki +Paris +Stacey +Tabatha +Tasha +Alana +Britany +Carolyn +Chelsie +Chloe +Jacquelyn +Kiera +Kristie +Kristy +Leanna +Macy +Mollie +Portia +Tracy +Abbey +Bridget +Deborah +Diana +Donna +Ellen +Hayden +Jana +Jocelyn +Leigh +Martha +Nancy +Sharon +Sylvia +Tanisha +Tessa +Tori +Alison +Barbara +Carol +Jasmin +Jerrica +Joanna +Kari +Katlyn +Keisha +Kendall +Laquita +Mandy +Precious +Regina +Skylar +Stacy +Tia +Tierra +Wendy +Ariana +Brenda +Cara +Christa +Christen +Ciera +Dakota +Devan +Devon +Elisabeth +Evelyn +Hanna +Jane +Maranda +Octavia +Racheal +Randi +Shaquita +Sharonda +Simone +Tyler +Adrian +Adrianna +Allie +Avery +Cameron +Carissa +Carley +Cindy +Dawn +Denise +Gloria +Haleigh +Hilary +Jenny +Kacie +Kanesha +Latoria +Loren +Magen +Patrice +Shaina +Shanika +Staci +Tiffani +Tina +Alyson +Carla +Demetria +Dorothy +Jaclyn +Kali +Kenyatta +Keshia +Kirstie +Laci +Latrice +Lucy +Macey +Marilyn +Paula +Savanna +Shanequa +Sonya +Tanya +Valencia +Aisha +Anjelica +Arielle +Betty +Brandie +Breana +Bridgett +Bridgette +Brittanie +Constance +Debra +Deidra +Ericka +Helen +Hollie +Jada +Jaleesa +Janet +Jodi +Justine +Kaley +Kalyn +Kaylin +Kelley +Kylie +Laken +Lakendra +Latisha +Lyndsey +Magan +Melinda +Shelley +Sherry +Skyler +Sophia +Stefanie +Tyesha +Abbie +Adriana +Aimee +Alaina +Alexandrea +Alice +Brittni +Camille +Carlie +Cassidy +Cayla +Chantal +Christie +Connie +Dallas +Deandrea +Eboni +Emilee +Georgia +Halie +Heidi +Holli +Jami +Janice +Jeri +Kaneshia +Kelsi +Kimberley +Kourtney +Kristan +Madeleine +Mattie +Maya +Meaghan +Mia +Nikita +Priscilla +Santana +Shanique +Shayna +Sidney +Tammy +Tiera +Tracey +Yasmine +Ali +Ashely +Audra +Audrianna +Beverly +Bonnie +Brittnie +Chiquita +Christin +Clarissa +Claudia +Demi +Diamond +Dominque +Jaime +Jelisa +Jodie +Josie +Kacy +Kaila +Kandi +Kasie +Katlin +Kaylee +Kayleigh +Kelsea +Kristine +Lacie +Lacy +Ladonna +Lakeshia +Lashundra +Latonya +Lela +Madelyn +Marie +Michele +Miesha +Naomi +Nia +Niesha +Peyton +Princess +Reagan +Regan +Renee +Riley +Rochelle +Sacoria +Selena +Shana +Shanita +Sheena +Tanesha +Teresa +Tiarra +Tosha +Whittney +Alesha +Alexia +Anastasia +Arianna +Ashli +Bobbie +Britni +Brittnee +Camisha +Carli +Cecilia +Cheryl +Cinnamon +Codi +Daphne +Deangela +Denisha +Destinee +Elise +Ella +Esther +Eva +Felecia +Gwendolyn +Hallie +Harley +Jalesa +Jalissa +Jameka +Janna +Jayla +Jazmin +Jenifer +Jerica +Jessalyn +Johnita +Judy +Kacey +Kaci +Kaneesha +Katelin +Katelynn +Kathy +Kenyetta +Kerri +Kimberlee +Lakesha +Lara +Leandra +Lesley +Logan +Lynsey +Maci +Macie +Malia +Mara +Marisa +Melia +Michaela +Nina +Payton +Rose +Samatha +Shae +Shanavia +Shelly +Shenika +Susie +Taneshia +Tiesha +Tyeshia +Valarie +Wanda +Yolanda +Adriane +Adrianne +Aerial +Alecia +Alex +Alisa +Alishia +Ana +Andria +Angelia +Anita +Ashia +Aubrey +Audriana +Beth +Blair +Brittaney +Cady +Carey +Carson +Casandra +Ceara +Charlene +China +Chyna +Chynna +Clara +Clare +Deidre +Delana +Dixie +Ebonie +Eden +Elisha +Essence +Francesca +Ginger +Hali +Haylee +Ivy +Jalicia +Jameria +Jamesha +Janay +Janie +Jasmyn +Jayna +Jessi +Jesslyn +Jordyn +Justina +Kalee +Kaleigh +Kandace +Kandice +Karley +Karlie +Kassie +Kate +Katrice +Kayle +Keara +Kenesha +Kenisha +Keondra +Khadijah +Kiana +Kirstin +Kori +Kortney +Krystin +Kylee +Kyra +Lana +Laney +Laporsha +Lashonda +Latara +Laticia +Laurel +Lila +Mackenzie +Markita +Marley +Martina +Mildred +Miracle +Myra +Myranda +Noelle +Rashonda +Reba +Rhonda +Sade +Sally +Sasha +Scarlett +Shakira +Shanda +Shantel +Shantoria +Sharmaine +Shauna +Shelbi +Sherita +Stacie +Suzanne +Tameka +Tangela +Teri +Theresa +Torie +Tracie +Valeria +Wyteria +Jessica +Ashley +Brittany +Kayla +Jasmine +Amber +Emily +Sarah +Courtney +Hannah +Lauren +Elizabeth +Amanda +Mary +Tiffany +Megan +Heather +Chelsea +Haley +Rachel +Victoria +Taylor +Samantha +Jennifer +Morgan +Stephanie +Kimberly +Anna +Whitney +Shelby +Katherine +Kelsey +Rebecca +Brittney +Erica +Danielle +Lindsey +Kristen +Laura +Raven +Jordan +Alexis +Katie +Christina +Erin +Amy +Olivia +Sara +April +Alexandra +Kaitlyn +Andrea +Catherine +Alexandria +Allison +Melissa +Crystal +Bethany +Brianna +Caitlin +Kathryn +Brandi +Savannah +Jamie +Ariel +Breanna +Meagan +Holly +Brooke +Miranda +Destiny +Hillary +Katelyn +Candace +Caroline +Madison +Margaret +Nicole +Casey +Mallory +Shannon +Briana +Kristin +Michelle +Alicia +Gabrielle +Britney +Erika +Molly +Alyssa +Kara +Kelly +Angela +Kaitlin +Lindsay +Rebekah +Julia +Kendra +Kristina +Lacey +Paige +Sydney +Brandy +Natalie +Leah +Angel +Chelsey +Tabitha +Julie +Alisha +Jenna +Tara +Kiara +Bianca +Dominique +Meghan +Ashleigh +Chasity +Meredith +Monica +Ashlee +Ebony +Summer +Autumn +Leslie +Maria +Rachael +Christian +Dana +Hayley +Melanie +Natasha +Abigail +Candice +Deanna +Lisa +Sabrina +Tori +Audrey +Carrie +Robin +Shanice +Tamara +Tiara +Felicia +Cassandra +Cassie +Bailey +Krista +Patricia +Desiree +Ashton +Mariah +Marissa +Callie +Jalisa +Kasey +Katrina +Abby +Caitlyn +Bridget +Carolyn +Grace +Kirsten +Ashlyn +Christine +Valerie +Alison +Carly +Chloe +Ciara +Cortney +Hilary +Kathleen +Krystal +Lydia +Shaniqua +Adrienne +Amelia +Christy +Claire +Jacqueline +Jazmine +Kelli +Susan +Tia +Angelica +Asia +Cynthia +Emma +Joanna +Virginia +Chelsie +Joy +Kaylee +Kierra +Payton +Vanessa +Bria +Brooklyn +Carmen +Diamond +Hope +Kacie +Katlyn +Maranda +Mercedes +Sierra +Veronica +Alaina +Cheyenne +Ellen +Hanna +Kristi +Logan +Lori +Monique +Peyton +Charity +Ciera +Devin +Faith +Hailey +Haleigh +Latisha +Latoya +Madeline +Pamela +Adrian +Carley +Cassidy +Dakota +Frances +India +Kellie +Kendall +Kenya +Latasha +Mollie +Tierra +Allyson +Alyson +Aubrey +Cameron +Cierra +Dallas +Deborah +Diana +Jasmin +Lacy +Lillian +Nakia +Robyn +Shanequa +Tonya +Valencia +Allie +Brenda +Eboni +Jade +Kala +Kelsie +Keri +Maggie +Nancy +Nikki +Paris +Shayla +Tyler +Anne +Barbara +Christa +Hollie +Jennie +Karen +Kaylyn +Kiera +Leanna +Loren +Macy +Maegan +Mckenzie +Meaghan +Savanna +Sylvia +Tessa +Tiffani +Tracy +Amberly +Ann +Brittani +Iesha +Jada +Jana +Jessie +Kaleigh +Katlin +Laken +Lakeshia +Magen +Martha +Melinda +Melody +Mia +Misty +Precious +Randi +Sidney +Skylar +Angelique +Brittni +Carla +Cayla +Devan +Hallie +Justina +Kaila +Kalyn +Lakeisha +Latonya +Leigh +Mackenzie +Paula +Princess +Regina +Toni +Whitley +Aimee +Alana +Alexa +Annie +Carlie +Casie +Charlotte +Christin +Constance +Darian +Denise +Elise +Hali +Halie +Harley +Jillian +Kacey +Kaci +Kourtney +Kristie +Kristy +Lacie +Laquita +Linda +Nikita +Porsha +Priscilla +Tasha +Teresa +Terra +Tina +Alexus +Alice +Alisa +Anastasia +Anita +Avery +Beverly +Britany +Brittnay +Cara +Carissa +Chandler +Charlene +Chiquita +Christen +Clarissa +Corey +Deidre +Dominque +Dorothy +Eva +Holley +Jacquelyn +Jocelyn +Jodi +Kaylan +Kelsea +Keyonna +Kiana +Kylie +Lakesha +Latoria +Latrice +Mandy +Marquita +Michaela +Octavia +Racheal +Rhonda +Sally +Shana +Shaquita +Sharonda +Skyler +Staci +Stacy +Tanisha +Terri +Terrica +Yasmine +Abbie +Arielle +Audrianna +Beth +Blair +Brandie +Britni +Carlee +Chelsi +Chelsy +Christie +Cori +Daphne +Deidra +Destinee +Evelyn +Gabriel +Helen +Isabella +Jaleesa +Jane +Janice +Jenny +Jerrica +Joycelyn +Kaley +Kandace +Kanesha +Karissa +Karla +Keisha +Kelley +Kelsi +Lesley +Magan +Ruby +Sade +Sadie +Shaina +Shameka +Shanika +Shanna +Stacey +Tammy +Tanesha +Tanya +Theresa +Tyesha +Alanna +Alexia +Aundrea +Bonnie +Colleen +Demetria +Jami +Janay +Janelle +Janet +Jerica +Jodie +Juanita +Kailey +Karley +Kasie +Katharine +Kayleigh +Kaylie +Kenisha +Kenyatta +Kenyetta +Khadijah +Kimberley +Krystin +Laci +Lara +Latosha +Lillie +Lucy +Maci +Makayla +Moriah +Myra +Patrice +Presley +Raquel +Rose +Ryan +Sasha +Scarlett +Shauna +Shawna +Shelbie +Sherika +Sherry +Sonja +Symone +Tianna +Tiera +Yolanda +Abbey +Adriana +Aisha +Akeiba +Alecia +Alex +Alissa +Alycia +Ariana +Ayla +Brianne +Bridgette +Briona +Brionna +Camille +Carol +Cecily +China +Chrystal +Connie +Cristina +Daisy +Desirae +Destin +Ericka +Glenda +Hayden +Haylie +Heaven +Ieshia +Imani +Jalissa +Jamika +Janna +Jelisa +Jessi +Julianna +Kanisha +Kasi +Kathy +Kattie +Katy +Keana +Keely +Keona +Kesha +Kia +Kianna +Kira +Lacee +Lakendra +Lana +Laquesha +Laquisha +Lashonda +Latifah +Lena +Lindy +Macey +Malorie +Marie +Marlee +Marsha +Nadia +Nichole +Patience +Randa +Riley +Ruth +Samatha +Santana +Santanna +Shakira +Shanita +Shantavia +Sharon +Shawnee +Sheila +Sonya +Sophia +Stefanie +Stormy +Taryn +Tatiana +Tatyana +Tracey +Traci +Whittney +Aaron +Adrianna +Adrianne +Aleshia +Alysia +Amberley +Angelia +Angelina +Anika +Ashli +Ashlynn +Bailee +Belinda +Brandon +Breana +Bree +Bridgett +Britnee +Carson +Catrina +Christi +Claudia +Cory +Deandra +Deja +Destiney +Devon +Ebone +Ebonie +Eleanor +Elena +Elisabeth +Elisha +Emilee +Eryn +Georgia +Gina +Gwendolyn +Heidi +Holli +Jackie +Jacquese +Jakayla +Jameria +Jamesha +Jasmyne +Jazmyne +Jessika +Josie +Joyce +Kaela +Kalie +Karah +Kari +Karlee +Karli +Karlie +Karly +Keanna +Keara +Kendria +Kerri +Keyanna +Kiarra +Kirstin +Kori +Kortney +Kristal +Kristan +Kristian +Kyra +Lakenya +Lakisha +Lashanda +Latara +Latricia +Layla +Lily +Lyndsay +Lyndsey +Makenzie +Marilyn +Marina +Marisa +Martika +Mattie +Miesha +Miracle +Miriam +Myranda +Nicolette +Nina +Nora +Porche +Reagan +Reba +Rochelle +Rosalind +Roxanne +Samone +Shalonda +Shanavia +Shanique +Shante +Shantrice +Shaquana +Shaquanda +Shelbi +Shelley +Shelly +Sheniqua +Shirley +Simone +Sumer +Tabatha +Tameka +Tamika +Taneshia +Tayler +Tiana +Tisha +Tristan +Tyeisha +Tyisha +Uniqua +Ashley +Jessica +Brittany +Kayla +Amber +Taylor +Emily +Sarah +Jasmine +Hannah +Courtney +Lauren +Elizabeth +Mary +Tiffany +Amanda +Victoria +Morgan +Haley +Megan +Rachel +Anna +Heather +Chelsea +Kelsey +Katherine +Samantha +Shelby +Stephanie +Kimberly +Alexis +Brittney +Jennifer +Whitney +Rebecca +Olivia +Jordan +Katie +Raven +Alexandria +Lindsey +Savannah +Sara +Danielle +Brianna +Allison +Katelyn +Kristen +Erica +Laura +Erin +Briana +Crystal +Andrea +Caitlin +Kathryn +Kaitlyn +Breanna +Meagan +Christina +Madison +Catherine +Melissa +Margaret +Alyssa +Amy +Brooke +Destiny +Shannon +Bethany +Kristin +Ariel +Caroline +Miranda +April +Kelly +Jamie +Paige +Holly +Alicia +Sydney +Summer +Kendra +Kiara +Molly +Alexandra +Brandi +Casey +Michelle +Gabrielle +Mallory +Nicole +Chelsey +Hayley +Mariah +Rebekah +Ashton +Natalie +Autumn +Bria +Leah +Angela +Brandy +Julia +Leslie +Bailey +Chasity +Kendall +Tori +Christian +Julie +Patricia +Emma +Kaitlin +Melanie +Angel +Ashleigh +Caitlyn +Jenna +Kara +Abigail +Deanna +Lacey +Sabrina +Kasey +Tiara +Alison +Ebony +Erika +Kristina +Tabitha +Audrey +Lindsay +Tara +Bianca +Dominique +Grace +Hillary +Kierra +Meghan +Sierra +Britney +Felicia +Tierra +Alisha +Callie +Carly +Cheyenne +Diamond +Jade +Marissa +Rachael +Cassandra +Katlyn +Lisa +Madeline +Abby +Adrienne +Candace +Cassie +Hailey +Kathleen +Lydia +Maria +Brooklyn +Jacqueline +Krista +Maggie +Maya +Natasha +Ashlyn +Asia +Bridget +Carrie +Cassidy +India +Jillian +Robin +Angelica +Haleigh +Kenya +Logan +Monica +Peyton +Faith +Jada +Mercedes +Michaela +Payton +Alexa +Candice +Christine +Ciara +Cierra +Kristy +Misty +Valerie +Virginia +Carley +Carolyn +Christa +Cynthia +Dana +Desiree +Kiera +Meredith +Nikki +Robyn +Tamara +Tyler +Alexus +Allie +Ashlee +Chloe +Karen +Tiffani +Amelia +Carmen +Chandler +Cortney +Kelsie +Latisha +Martha +Shanice +Tonya +Carla +Dorothy +Hallie +Hanna +Jazmine +Kirsten +Savanna +Shaniqua +Amberly +Ann +Chelsie +Frances +Hunter +Jessie +Katlin +Kelli +Lillian +Macy +Pamela +Shayla +Tia +Whitley +Allyson +Carlie +Ciera +Denise +Ellen +Jocelyn +Kaylee +Kourtney +Krystal +Lacy +Linda +Paris +Randi +Sharon +Toni +Vanessa +Wendy +Cara +Charity +Christy +Claire +Deborah +Destinee +Emilee +Hollie +Kadijah +Kalyn +Kaylin +Lori +Mackenzie +Mia +Precious +Teresa +Anne +Aubrey +Camille +Carol +Devin +Devon +Donna +Hali +Ivy +Joanna +Kaci +Kellie +Kelsi +Khadijah +Leigh +Marisa +Mckenzie +Melody +Paula +Stacie +Susan +Tessa +Adrianna +Alexia +Breonna +Carlee +Charlotte +Eboni +Elisabeth +Gabriel +Gloria +Helen +Holli +Jalisa +Katrina +Kaylan +Keonna +Kristi +Lacie +Laken +Lakendra +Loren +Maegan +Sidney +Skylar +Skyler +Brea +Brenda +Bridgett +Bridgette +Georgia +Harley +Haylee +Iesha +Jasmin +Jodi +Josie +Kaleigh +Kerri +Kylie +Latonya +Latoya +Layla +Monique +Nina +Sandra +Sheila +Tanesha +Veronica +Brittani +Cameron +Diana +Evelyn +Gina +Hope +Jaclyn +Jaime +Jana +Jane +Jerica +Joy +Kaila +Karlie +Karly +Katelin +Katelynn +Katy +Keisha +Keri +Kristie +Leanna +Magen +Nancy +Octavia +Princess +Priscilla +Regina +Stacey +Tayler +Terri +Tracy +Tyesha +Yasmine +Abbie +Alecia +Alyson +Ansley +Barbara +Brenna +Brittni +Cecilia +Christen +Halle +Heaven +Ieshia +Jacey +Janna +Jayla +Joyce +Judith +Kaley +Keaira +Kelsea +Kristine +Latasha +Makayla +Maranda +Marie +Marilyn +Melinda +Mollie +Nakia +Nicolette +Racheal +Shameka +Shana +Shanequa +Shauna +Shelbie +Stacy +Tanisha +Tiera +Valencia +Abbey +Alaina +Alexandrea +Annie +Breana +Britany +Chiquita +Christin +Clara +Constance +Dallas +Darian +Dixie +Essence +Felisha +Gwendolyn +Hayden +Jacquelyn +Jamesha +Kala +Kali +Kari +Kaylyn +Kiana +Kristian +Kyla +Lakeisha +Lana +Latesha +Laurel +Lily +Lucy +Lyndsey +Magan +Marlee +Marquita +Nadia +Patrice +Rhonda +Ruby +Selena +Shawna +Starla +Tanya +Tkeyah +Vivian +Yolanda +Zoe +Adrian +Alana +Aleshia +Alexander +Anissa +Ashely +Avery +Bonnie +Breauna +Briona +Brionna +Carissa +Cecelia +Chante +Chastity +Cori +Dakota +Debra +Demetria +Dominque +Ericka +Ginger +Halie +Hilary +Imani +Jameka +Janet +Jazzmine +Jerrica +Jesse +Jordyn +Kandace +Karlee +Karley +Karmen +Katharine +Katheryn +Kayleigh +Kaylynn +Kelci +Kenyatta +Kiarra +Kimberley +Kortney +Laquita +Lena +Lesley +Mallorie +Mandy +Marina +Miriam +Mya +Portia +Presley +Regan +Riley +Sade +Sadie +Shaina +Shelbi +Shelley +Sherry +Simone +Tabatha +Tammy +Terra +Theresa +Tyra +Aisha +Ambria +Anastasia +Arielle +Ashanti +Ashlie +Betty +Beverly +Blair +Brandie +Brook +Cari +Celeste +Charlene +Chelsi +Cheyanne +China +Chrystal +Clarissa +Claudia +Colleen +Corey +Daphne +Deidra +Deidre +Deja +Domonique +Dylan +Elaina +Elena +Heidi +Isabella +Jalesa +Jamaica +Jami +Jasmaine +Jennie +Jenny +Josephine +Juanita +Kacey +Kacie +Kalee +Karissa +Karla +Katarina +Kathy +Kelley +Kendal +Kia +Laci +Lakeshia +Larissa +Miracle +Naomi +Reagan +Rhiannon +Ruth +Samaria +Santana +Shamika +Shekinah +Symone +Tamika +Taryn +Tera +Tiesha +Tracey +Treasure +Trisha +Aaron +Aerial +Aimee +Alanna +Alex +Ali +Alishia +Alissa +Amie +Angelia +Angelique +Antionette +Ariana +Athena +Audra +Ayanna +Baylee +Breona +Carson +Cayla +Chantel +Chelsy +Cherie +Cheryl +Connie +Danyelle +Dawn +Deandra +Delaney +Demi +Desirae +Destini +Destinie +Dianna +Elisha +Eva +Halley +Holley +Jalissa +Jamesia +Jamonica +Jaquita +Jasmyne +Jeana +Jena +Jody +Kadesha +Kailey +Karli +Karson +Kate +Kaylen +Kayli +Kaylie +Keiara +Kelcie +Keosha +Kesha +Keshia +Keyanna +Kira +Krysta +Lakia +Laportia +Latrice +Laurie +Lea +Leanne +Lynsey +Madelyn +Makenzie +Meaghan +Mikayla +Nichole +Nora +Reanna +Rita +Sally +Samatha +Savanah +Shakayla +Shakeria +Shanna +Shanteria +Shaquilla +Shaquille +Shaquita +Somer +Sommer +Sonya +Staci +Stormy +Suzanne +Tasha +Teri +Tiana +Tiffanie +Tina +Tracie +Tyeisha +Tyeshia +Xavier +Ashley +Jessica +Brittany +Kayla +Emily +Hannah +Amber +Sarah +Jasmine +Taylor +Lauren +Mary +Courtney +Elizabeth +Morgan +Haley +Anna +Alexis +Victoria +Rachel +Samantha +Megan +Tiffany +Amanda +Brianna +Heather +Jordan +Kelsey +Savannah +Shelby +Kimberly +Madison +Kristen +Stephanie +Whitney +Chelsea +Brittney +Allison +Jennifer +Katherine +Laura +Erin +Danielle +Rebecca +Kaitlyn +Alexandria +Lindsey +Caroline +Katelyn +Katie +Breanna +Erica +Olivia +Sara +Kathryn +Sydney +Abigail +Raven +Crystal +Caitlin +Christina +Destiny +Brandi +Alexandra +Alyssa +Brooke +Autumn +Kaitlin +Summer +Briana +Khadijah +Mallory +Gabrielle +Natalie +Bethany +Miranda +Andrea +Alicia +Jamie +Margaret +Nicole +Kristin +Sierra +Aaliyah +Amy +Melissa +Meagan +Bailey +Julia +Catherine +April +Ashleigh +Emma +Candace +Holly +Shannon +Angel +Angela +Kelly +Leah +Casey +Hayley +Kendall +Kendra +Marissa +Tori +Michelle +Ebony +Leslie +Ariel +Grace +Kiara +Kristina +Mariah +Rebekah +Ashlyn +Caitlyn +Christian +Faith +Kara +Hailey +Maria +Sabrina +Meghan +Molly +Audrey +Britney +Diamond +Peyton +Savanna +Tabitha +Brandy +Carrie +Erika +Kaylee +Virginia +Bianca +Candice +Cassidy +Lindsay +Mercedes +Ashton +Bria +Chasity +Chelsey +Cynthia +Kiana +Michaela +Rachael +Robin +Tamara +Abby +Deanna +Desiree +Jessie +Paige +Patricia +Kierra +Lacey +Melanie +Meredith +Tiara +Alexus +Cheyenne +Jacqueline +Krista +Madeline +Tara +Allyson +Jade +Kathleen +Katlyn +Hope +Kasey +Lydia +Maggie +Monica +Payton +Callie +Felicia +Jenna +Julie +Macy +Ashlee +Carolyn +Dominique +Kelsie +Kristian +Logan +Cassie +Kenya +Alisha +Ciara +Jada +Makayla +Tierra +Christine +Cierra +Dana +Hollie +Kiera +Maya +Natasha +Nikki +Tyler +Aliyah +Allie +Asia +Breana +Harley +Kadijah +Lisa +Lori +Alison +Amberly +Carly +Claire +Hanna +Jazmine +Kaylyn +Skylar +Tanisha +Toni +Alexia +Bridget +Brooklyn +Chloe +Hunter +Justice +Kourtney +Lillian +Terri +Carmen +Darian +Destinee +Destiney +Hayden +Jillian +Kalyn +Katrina +Mackenzie +Maegan +Mia +Mikayla +Nancy +Riley +Tia +Aubrey +Avery +Cara +Carla +Carley +Cassandra +Charity +Haleigh +Hillary +Kirsten +Kylie +Laken +Pamela +Precious +Robyn +Shanice +Sidney +Stacy +Veronica +Amelia +Angelica +Ann +Chandler +Hali +Iesha +Jasmin +Karen +Kaylin +Keri +Latisha +Maranda +Tiffani +Vanessa +Alanna +Alexa +Christy +Constance +Denise +Dorothy +Ellen +Halie +Imani +Joanna +Kala +Kaley +Kelley +Kennedy +Monique +Paris +Abbey +Abbie +Anne +Annie +Ariana +Breonna +Chelsie +Christa +Cortney +Dallas +Devin +Donna +Emilee +Heidi +Jaclyn +Jacquelyn +Kaleigh +Katelynn +Shakeria +Shakira +Tkeyah +Yasmine +Adrienne +Alaina +Alana +Ashely +Brittani +Cameron +Evelyn +Frances +Helen +Ivy +Jenny +Jocelyn +Katlin +Kelli +Kenyatta +Krystal +Latasha +Makenzie +Marisa +Martha +Misty +Porsha +Regan +Savanah +Shayla +Susan +Tanya +Tina +Valerie +Adrianna +Alyson +Bridgette +Cayla +Celeste +Gabriel +India +Isabella +Jaime +Kellie +Kendyl +Khadejah +Kristyn +Laurel +Lexus +Loren +Mollie +Paula +Priscilla +Sadie +Sandra +Sharon +Tanesha +Tayler +Tessa +Zana +Zoe +Ansley +Beverly +Blakely +Brenna +Breona +Charlotte +Ciera +Claudia +Darby +Elisabeth +Hallie +Jami +Jerica +Kaci +Kadejah +Kari +Karli +Kelsi +Latoya +Leigh +Lena +Mckenzie +Meaghan +Melody +Nakia +Racheal +Reagan +Shana +Shanequa +Teresa +Terra +Tiana +Tianna +Addison +Aisha +Alice +Ambria +Barbara +Brionna +Cari +Carissa +Christen +Christin +Dakota +Destini +Devon +Dominque +Georgia +Gina +Halee +Haven +Jana +Janice +Janie +Joy +Kadesha +Kailey +Karlie +Kassidy +Kayleigh +Keisha +Kenyetta +Kristy +Lacy +Lora +Madalyn +Madeleine +Madelyn +Marina +Naomi +Nichole +Randi +Shaniqua +Sommer +Tabatha +Taneisha +Tiera +Tyesha +Vivian +Aerial +Aimee +Alexius +Alissa +Anissa +Aspen +Audra +Aundrea +Ayla +Baylee +Bobbie +Bonnie +Bridgett +Carlie +Darrian +Deidra +Devan +Eboni +Elise +Elisha +Emerald +Fallon +Genesis +Halley +Haylee +Iris +Jacey +Jakayla +Jameka +Jamese +Jessi +Josie +Kaila +Kailyn +Karissa +Kayley +Keanna +Kendal +Kira +Lacie +Laquita +Lara +Leanna +Linda +Lyndsey +Macey +Macie +Moriah +Patrice +Reba +Rikki +Rose +Ruth +Shaina +Shameka +Shawna +Sherry +Staci +Stevie +Sylvia +Tamera +Tasha +Tiesha +Wendy +Adrian +Alayna +Alecia +Alex +Alexander +Alexandrea +Antoinette +Ashanti +Ashlie +Bailee +Brenda +Britany +Carlee +Catlin +Cecilia +Charlene +Daisy +Deborah +Denisha +Elaina +Hadley +Halle +Heaven +Holli +Jameria +Janet +Jerrica +Jesse +Joyce +Joycelyn +Julianne +Kacie +Kadeshia +Kali +Kandice +Karly +Katarina +Kelcey +Keyanna +Kianna +Kirstie +Kori +Krysten +Lakendra +Laporsha +Laquisha +Lauryn +Layla +Lexie +Lily +Lucy +Marlee +Marquita +Mckayla +Micah +Miriam +Montana +Porcha +Quanesha +Randa +Regina +Rolanda +Rosemary +Roxanne +Sally +Selena +Shakera +Shasta +Sheila +Sonya +Sophia +Sophie +Tamika +Taryn +Tatum +Tatyana +Teri +Tonya +Tracy +Whittney +Adrianne +Alexzandria +Alia +Alisa +Alliyah +Alysia +Anastasia +Andria +Anita +Arianna +Ashlea +Ashli +Auburn +Billie +Blair +Brea +Brittaney +Brittanie +Carleigh +Carli +Carol +Carson +Cecelia +Chante +Chassity +Cheryl +Cody +Connie +Cori +Danyelle +Daphne +Deja +Diana +Eboney +Felisha +Gabriella +Hayleigh +Holley +Ieshia +Jakeria +Jamesha +Jameshia +Jamey +Janae +Jasmyne +Jodi +Jordyn +Kacey +Kadedra +Kadeejah +Kanisha +Karlee +Karleigh +Karley +Kasie +Kaycee +Kaylie +Kaylon +Keara +Kelsea +Keondra +Keonna +Kimber +Krystin +Kyndall +Kyra +Lana +Lashonda +Latonya +Laurie +Lela +Lesley +Linsey +London +Magan +Mallorie +Marie +Marilyn +Marley +Meleah +Michael +Noelle +Patience +Porsche +Presley +Quanisha +Raina +Raquel +Ruby +Ryan +Samatha +Shacoria +Shanna +Shantel +Shaquita +Shayna +Shelbi +Skyler +Stacey +Stacie +Talia +Tammy +Tatiana +Tiarra +Tyneshia +Tyra +Valencia +Whitley +Jessica +Ashley +Hannah +Emily +Brittany +Kayla +Taylor +Amber +Jasmine +Mary +Sarah +Anna +Haley +Morgan +Courtney +Elizabeth +Alexis +Victoria +Lauren +Rachel +Megan +Samantha +Brianna +Madison +Savannah +Shelby +Tiffany +Kelsey +Chelsea +Kristen +Katherine +Allison +Amanda +Destiny +Heather +Jordan +Rebecca +Sydney +Kaitlyn +Olivia +Katelyn +Erin +Kimberly +Alexandria +Brittney +Jennifer +Breanna +Abigail +Erica +Sara +Stephanie +Katie +Danielle +Christina +Lindsey +Alexandra +Raven +Laura +Brooke +Miranda +Whitney +Bailey +Caroline +Alyssa +Kristin +Autumn +Brandi +Kaitlin +Gabrielle +Amy +Caitlin +Melissa +Briana +Catherine +Angel +Andrea +Shannon +Summer +Kathryn +Jamie +Margaret +Natalie +Emma +Holly +Mallory +Kiara +Marissa +Bethany +Molly +Kelly +Meagan +Nicole +Christian +Leah +Crystal +Julia +Madeline +Casey +Michaela +Cassidy +Sierra +Tori +Rebekah +Ariel +Makayla +Michelle +Tiara +Kaylee +Jada +Justice +Leslie +Caitlyn +Kierra +Ashton +April +Abby +Cheyenne +Angela +Aaliyah +Brooklyn +Maria +Chelsey +Kendra +Melanie +Peyton +Rachael +Candace +Ebony +Kiana +Tamara +Brandy +Deanna +Deja +Diamond +Kasey +Paige +Ashlyn +Asia +Hope +Katlyn +Tabitha +Alicia +Ashleigh +Audrey +Britney +Chloe +Kirsten +Krista +Lydia +Alexus +Callie +Erika +Grace +Hailey +Mariah +Faith +Tia +Alisha +Angelica +Chasity +Hayley +Jacqueline +Lacey +Meghan +Payton +Savanna +Chandler +Haleigh +Kendall +Sabrina +Tierra +Aliyah +Ashlee +Ciara +Cierra +Dominique +Kenya +Mackenzie +Maya +Vanessa +Claire +Kennedy +Kristina +Hanna +Jenna +Jessie +Meredith +Monica +Susan +Virginia +Amelia +Carly +Christine +Desiree +Hayden +Kara +Macy +Sidney +Adrienne +Alana +Alexia +Cassandra +Destinee +Jade +Josie +Patricia +Julie +Kylie +Lindsay +Mckenzie +Tara +Toni +Anne +Bridget +Carrie +Jazmine +Khadijah +Mercedes +Natasha +Precious +Zoe +Bianca +Claudia +Harley +Katelynn +Kathleen +Krystal +Maggie +Reagan +Alexa +Allyson +Ann +Barbara +Candice +Carolyn +Cassie +Isabella +Tatyana +Tyler +Abbey +Alison +Baylee +Brenda +Bria +Felicia +Jayla +Kelsie +Kiera +Latisha +Lisa +Mia +Robin +Tiana +Allie +Cameron +Carley +Carlie +Carmen +Charity +Christin +Dakota +Destini +Frances +Iesha +Karen +Melody +Riley +Selena +Veronica +Alaina +Alyson +Breana +Christy +Cortney +Dallas +Emilee +Hunter +Ivy +Jillian +Joanna +Kellie +Latasha +Skylar +Tessa +Valerie +Cynthia +India +Jana +Laurel +Maegan +Martha +Tyra +Amberly +Aubrey +Christen +Darian +Devin +Eboni +Ellen +Hali +Hollie +Jerrica +Kaci +Kaila +Laken +Lillian +Logan +Mikayla +Mollie +Monique +Pamela +Sandra +Tiera +Tiffani +Adriana +Adrianna +Blair +Chelsie +Clara +Constance +Darby +Destiney +Emerald +Imani +Kaley +Kalyn +Kassidy +Kaylan +Lexus +Maranda +Marisa +Nikki +Octavia +Randi +Robyn +Shakeria +Shana +Stacey +Tamera +Alia +Anastasia +Ariana +Brionna +Cayla +Gloria +Helen +Jalisa +Juliana +Kala +Katrina +Kaylin +Kelli +Kelsi +Kourtney +Leigh +Lyric +Mckenna +Montana +Nancy +Nia +Regina +Sadie +Savanah +Shanna +Sharon +Tatiana +Terri +Yasmine +Abbie +Alanna +Annie +Ashlynn +Bailee +Cara +Carla +Celeste +Dana +Demetria +Diana +Donna +Essence +Gabriella +Hallie +Jakayla +Jasmin +Joy +Kaelyn +Kaleigh +Kali +Karli +Kayleigh +Kaylyn +Kelley +Kianna +Kortney +Leanna +Linda +Madelyn +Nadia +Nina +Paris +Priscilla +Regan +Ryan +Staci +Stevie +Tanisha +Tatum +Teresa +Tianna +Wendy +Alex +Alissa +Amie +Ana +Ansley +Ashlie +Bonnie +Breonna +Carlee +Charlotte +Chastity +Ciera +Dorothy +Ebone +Elise +Ella +Ericka +Genesis +Gina +Heaven +Jameria +Kacie +Katelin +Kenyatta +Kerri +Keyonna +Kori +Kristi +Lakendra +Lillie +Meaghan +Misty +Myesha +Presley +Quanisha +Shania +Shayla +Simone +Sommer +Stacy +Susanna +Trinity +Tristan +Tyeisha +Tyesha +Adrian +Aerial +Alecia +Arianna +Beverly +Brittani +Bryanna +Carol +Cathryn +Christa +Debra +Denise +Elisabeth +Eva +Gabriela +Grayson +Haylee +Jamecia +Jane +Jasmyn +Jesse +Jodi +Jordyn +Julianna +Kaitlynn +Kameron +Karlee +Kaylie +Keanna +Kenisha +Kenyetta +Keri +Kia +Kristan +Krysta +Kyla +Lakeisha +Latoya +Lexie +Lily +Lorin +Magan +Makenzie +Marie +Marilyn +Mattie +Miracle +Miya +Raegan +Santana +Skyler +Sylvia +Tabatha +Tammy +Tasha +Terra +Tiffanie +Vivian +Addison +Adrianne +Aisha +Aja +Alayna +Ashly +Ashtyn +Aspen +Auburn +Audra +Ayanna +Blakely +Brandie +Brianne +Brittni +Brooklynn +Camille +Cassady +Cecilia +Chandra +Chantel +Chassidy +Chelsi +Cheryl +Cheyanne +Chiquita +Christan +Chyna +Chynna +Deborah +Delaney +Eleanor +Farrah +Felisha +Georgia +Halie +Haven +Heidi +Jacquelyn +Jaimie +Jalisha +Jameka +Jamila +Janae +Janice +Janie +Jaylyn +Jazmin +Jennie +Jenny +Jerica +Jesslyn +Jodie +Judy +Kacy +Kadijah +Kailey +Kanesha +Karissa +Karlie +Katy +Keana +Keisha +Keona +Kristian +Kristy +Kyndal +Lacie +Laquisha +Lara +Layla +Lexi +Madyson +Magen +Malaysia +Malika +Marjorie +Marquita +Micaela +Mikala +Nakia +Nichole +Niki +Ricki +Rosie +Ruby +Sasha +Serena +Shakayla +Shameka +Shanice +Shawna +Shayna +Shea +Taryn +Tayler +Tearra +Terrica +Thalia +Tiarra +Tina +Tonya +Tracie +Wynter +Abbigail +Aeriel +Aimee +Akira +Alexandrea +Alexius +Ali +Alice +Alliyah +Annabelle +Austin +Avery +Ayana +Billie +Bobbie +Brenna +Brennan +Caitlynn +Carissa +Carlisha +Chelsy +Chesley +Clarissa +Conner +Cydney +Darnisha +Deidra +Denisha +Devon +Eden +Evelyn +Francesca +Gwendolyn +Haylie +Hillary +Holli +Jaime +Jalyn +Jamesha +Jameshia +Jamika +Jaquana +Jocelyn +Justine +Kacey +Kadie +Kailyn +Kallie +Kanisha +Kari +Karley +Karrie +Kassie +Katlin +Kaylen +Kelsea +Kenzie +Keyana +Kimberlee +Krysten +Kyndall +Kyra +Lacy +Lakeshia +Latonya +Lea +Lesley +Loren +Lori +Lyndsey +Maddison +Madilyn +Maiya +Mallorie +Marina +Marlena +Mikaela +Nora +Portia +Raquel +Reba +Rhonda +Rikki +Rose +Sally +Shelbie +Tracey +Traci +Tracy +Tynisha +Valencia +Whitley +Zoey +Hannah +Emily +Ashley +Jessica +Brittany +Taylor +Kayla +Alexis +Sarah +Mary +Anna +Haley +Courtney +Madison +Elizabeth +Amber +Morgan +Savannah +Victoria +Lauren +Jasmine +Samantha +Shelby +Brianna +Rachel +Megan +Destiny +Kelsey +Jordan +Rebecca +Tiffany +Amanda +Kaitlyn +Heather +Kristen +Kimberly +Breanna +Chelsea +Sydney +Alexandria +Olivia +Katherine +Erin +Allison +Erica +Stephanie +Caroline +Laura +Abigail +Alyssa +Jennifer +Brittney +Katie +Alexandra +Bailey +Autumn +Katelyn +Sara +Catherine +Lindsey +Caitlin +Whitney +Danielle +Emma +Gabrielle +Brooke +Mallory +Kathryn +Rebekah +Bethany +Briana +Summer +Christina +Raven +Miranda +Julia +Meagan +Molly +Angel +Andrea +Melissa +Natalie +Peyton +Amy +Brandi +Kaitlin +Alicia +Cheyenne +Holly +Kristin +Nicole +Crystal +Sierra +Jamie +Casey +Kiara +Alexus +Abby +Ashton +Madeline +Hayley +Makayla +Ashlyn +Hailey +Jada +Margaret +Maria +Payton +Angela +Asia +Caitlyn +Cierra +Leah +Ariel +Kelly +Marissa +Cassidy +Kaylee +Kendra +Shannon +Grace +Kendall +Mackenzie +Mariah +Meredith +Rachael +Sabrina +Savanna +Brandy +Kierra +Paige +Tori +Chloe +Faith +Christian +Claire +Ashleigh +Logan +Monica +April +Callie +Kara +Leslie +Brooklyn +Diamond +Michaela +Tia +Katlyn +Tiara +Aaliyah +Audrey +Chelsey +Deja +Jenna +Kiana +Mckenzie +Carly +Hope +Lindsay +Melanie +Alisha +Dominique +Tara +Alana +Christine +Jessie +Kasey +Michelle +Candace +Desiree +Hanna +Jade +Justice +Kirsten +Lydia +Selena +Shania +Angelica +Carolyn +Haleigh +Julie +Karen +Mia +Anne +Cassandra +Chandler +Chasity +Erika +Hali +Jacqueline +Jayla +Kathleen +Kelsie +Maya +Meghan +Mercedes +Tabitha +Tamara +Zoe +Alexia +Amelia +Baylee +Destinee +Ivy +Kennedy +Macy +Patricia +Precious +Shayla +Deanna +Maggie +Mikayla +Ashlee +Candice +Charity +Dakota +Katelynn +Kenya +Marisa +Reagan +Tyra +Allie +Ann +Hayden +India +Jazmine +Katlin +Krystal +Lacey +Skylar +Virginia +Bria +Joanna +Josie +Kristina +Makenzie +Moesha +Riley +Shakira +Adrienne +Carrie +Ebony +Lisa +Breana +Celeste +Ciera +Dallas +Harley +Krista +Kylie +Lexus +Monique +Tyesha +Alexa +Bianca +Carmen +Christen +Christy +Ellen +Emilee +Frances +Hallie +Helen +Joy +Robin +Sidney +Susan +Tessa +Tyler +Yasmine +Alaina +Allyson +Ana +Carley +Claudia +Darby +Iesha +Katrina +Kristian +Macie +Maegan +Toni +Tristen +Abbey +Arianna +Chelsie +Felicia +Kaley +Kyla +Leanna +Lillian +Madelyn +Mollie +Tanisha +Tristan +Valerie +Vanessa +Addison +Aliyah +Barbara +Carson +Christin +Ciara +Dana +Elisabeth +Heaven +Julianna +Kaleigh +Kaylin +Kaylyn +Kelli +Linda +Stormy +Tatyana +Tayler +Teresa +Tiana +Veronica +Adrian +Adriana +Adrianna +Alyson +Ashanti +Aubrey +Breonna +Britney +Cameron +Carlie +Clara +Cynthia +Denise +Devin +Evelyn +Hollie +Isabella +Jamia +Kailyn +Keandra +Kiera +Kristy +Latoya +Lily +Nadia +Pamela +Randi +Sandra +Tamia +Terri +Tierra +Tiffani +Annie +Bryanna +Cara +Carlee +Cortney +Dasia +Deborah +Hillary +Hunter +Jaclyn +Jakayla +Kaci +Karlee +Karlie +Kelley +Kourtney +Laken +Lyndsey +Marlee +Mckayla +Melody +Misty +Natasha +Nikki +Patience +Raegan +Regan +Savanah +Shana +Sharon +Skyler +Sydnee +Tamera +Alexius +Alison +Amberly +Ansley +Antoinette +Avery +Bridget +Constance +Destini +Elise +Georgia +Jillian +Kacey +Kaitlynn +Kala +Kassidy +Kayleigh +Kelsi +Kyra +Lacy +Lauryn +Lora +Lori +Magan +Mikaela +Miracle +Regina +Shakera +Shanna +Shayna +Sophia +Tammy +Abbie +Alice +Alissa +Ashlynn +Austin +Bonnie +Brenda +Brenna +Carla +Chelsi +Daisy +Darian +Demetria +Dixie +Dorothy +Eden +Emerald +Gabriel +Heidi +Ivey +Jordyn +Kacy +Kailee +Karla +Karli +Keely +Kellie +Keondra +Khadijah +Lexie +Lyric +Madalyn +Madeleine +Marina +Micah +Naomi +Suzanna +Tatiana +Tina +Whitley +Ali +Ambria +Anastasia +Annabelle +Ashlie +Ayanna +Bailee +Brandie +Brionna +Brooklynn +Camille +Cassie +Clarissa +Daisha +Denisha +Devan +Dominque +Eboni +Essence +Gloria +Gracie +Halie +Halley +Haven +Haylee +Jacquelyn +Jami +Janice +Janie +Jesse +Kaela +Kaila +Kali +Kalyn +Kasie +Kaylen +Keisha +Kenisha +Keri +Keyanna +Keyona +Kristyn +Lillie +Loren +Loretta +Mandy +Marion +Martha +Miriam +Octavia +Presley +Princess +Rayven +Ryan +Sade +Sadie +Shantavia +Shantel +Shelbie +Shelley +Talia +Tania +Addie +Adrianne +Aimee +Aisha +Alanna +Aleshia +Alisa +Anika +Aundrea +Beverly +Blakely +Brea +Bridgett +Brittani +Carissa +Charlotte +Chastity +Cheyanne +Christiana +Chyna +Cora +Daijah +Daja +Dara +Destiney +Diana +Ebonee +Eleanor +Elena +Ericka +Eryn +Esmeralda +Gabriella +Genesis +Grayson +Gwendolyn +Halle +Holley +Holli +Imani +Isabel +Ivory +Jaida +Jalyn +Jameria +Jamesha +Janna +Jasmin +Jerrica +Jocelyn +Jodi +Juliana +Kalee +Kanesha +Karissa +Karley +Kassie +Kate +Katelin +Kaylan +Kayley +Keira +Kelci +Kori +Kristine +Kylee +Lakeisha +Lakia +Latasha +Laurel +Lesley +Lexi +Maia +Makala +Mallorie +Marianna +Mattie +Mckenna +Miyah +Myra +Nakia +Nina +Niya +Phoebe +Quanisha +Raquel +Sally +Savana +Selina +Shakayla +Shakeria +Shanice +Shauna +Shelbi +Simone +Starla +Tamika +Tristian +Vivian +Wynter +Abbigail +Aerial +Aja +Alayna +Alex +Alexandrea +Amie +Angelique +Anita +Antonia +Ariana +Ashli +Athena +Audra +Betty +Cayla +Caylin +Chelsee +Cheryl +China +Christa +Codi +Daphne +Dashia +Deasia +Debra +Delaney +Destinie +Donna +Elaina +Elexis +Ella +Emilie +Gabriela +Gina +Guadalupe +Hailee +Helena +Ieshia +Iris +Jamiya +Jane +Janet +Jodie +Johnna +Jordon +Justine +Kailey +Kambria +Kameron +Katharine +Katheryn +Kathy +Katy +Kaylie +Keanna +Kenesha +Kerri +Kerry +Keundra +Keyana +Kiarra +Kiersten +Kimberley +Kinsey +Kira +Kirstie +Kirstin +Lacie +Lakendra +Laquisha +Lara +Leigh +Lena +Lila +Macey +Maci +Maranda +Markia +Meaghan +Melinda +Moeshia +Monisha +Montana +Nancy +Nichole +Nora +Paris +Piper +Porsha +Portia +Rena +Renee +Rose +Ruth +Serena +Shae +Shaina +Shameka +Shawna +Sherry +Stacey +Suzanne +Takia +Tameshia +Taryn +Tatum +Tatyanna +Tianna +Tiera +Tonya +Tracey +Trinity +Trista +Tykeria +Valencia +Winter +Xena +Yasmin +Yolanda +Zaria +Hannah +Emily +Ashley +Sarah +Taylor +Madison +Jessica +Alexis +Anna +Kayla +Mary +Elizabeth +Brittany +Lauren +Courtney +Haley +Jasmine +Amber +Savannah +Morgan +Destiny +Victoria +Brianna +Rachel +Jordan +Shelby +Samantha +Kaitlyn +Megan +Katelyn +Olivia +Sydney +Abigail +Katherine +Allison +Kelsey +Rebecca +Erin +Amanda +Breanna +Alexandria +Tiffany +Autumn +Alyssa +Bailey +Brooke +Kimberly +Sara +Katie +Kristen +Caroline +Lindsey +Chelsea +Heather +Laura +Emma +Raven +Jennifer +Danielle +Briana +Christina +Caitlin +Kathryn +Gabrielle +Stephanie +Summer +Natalie +Alexandra +Whitney +Angel +Erica +Sierra +Kaitlin +Aaliyah +Brooklyn +Alexus +Brittney +Catherine +Makayla +Margaret +Bethany +Jada +Molly +Julia +Leah +Miranda +Kaylee +Cheyenne +Cassidy +Ashton +Asia +Kendall +Abby +Ashlyn +Mallory +Andrea +Adrianna +Alicia +Kiara +Sabrina +Caitlyn +Chloe +Katlyn +Rebekah +Mckenzie +Faith +Holly +Kristin +Madeline +Meagan +Savanna +Melissa +Mia +Amy +Ariel +Hailey +Michaela +Payton +Grace +Angela +Peyton +Mariah +Shannon +Deanna +Lydia +Paige +Kierra +Lillian +Marissa +Audrey +Carley +Hope +Kelly +Meredith +Tia +Ashleigh +Brandi +Chasity +Desiree +Jamie +Kennedy +Rachael +Tamara +Christian +Ebony +Jenna +Michelle +Anne +April +Crystal +Kara +Kendra +Mikayla +Nicole +Baylee +Deja +Jade +Kirsten +Monica +Dominique +Hanna +Mackenzie +Maria +Casey +Diamond +Kelsie +Meghan +Tiara +Isabella +Kristina +Leslie +Alana +Carly +Cierra +Claire +Harley +Hayley +Kaleigh +Miracle +Sidney +Tabitha +Tori +Tyra +Maya +Patricia +Precious +Callie +Candace +Jayla +Lacey +Lindsay +Selena +Alexia +Ashlee +Chelsey +Dana +Destinee +Logan +Zoe +Adriana +Haleigh +Maggie +Mercedes +Virginia +Allie +Allyson +Charity +Ciara +Erika +Jillian +Katelynn +Melanie +Emilee +Bria +Jazmine +Kathleen +Kylie +Makenzie +Robin +Addison +Brandy +Dakota +Destini +Jessie +Karen +Kiana +Shayla +Susan +Tara +Aubrey +Bailee +Britney +Cameron +Candice +Carrie +Christine +Hayden +Ivy +Kenya +Sophia +Alison +Amelia +Annie +Ashlynn +Avery +Frances +India +Justice +Macy +Riley +Tatyana +Alexa +Ansley +Ayanna +Breana +Cynthia +Hallie +Imani +Kaitlynn +Kelsi +Krista +Kyla +Kyra +Mckayla +Savanah +Tierra +Tyler +Veronica +Alaina +Camille +Cassandra +Jacqueline +Jakayla +Joy +Kacie +Karlee +Katelin +Keri +Lily +Marisa +Regina +Sadie +Skylar +Tessa +Tiffani +Aerial +Alisha +Alissa +Alyson +Carmen +Cassie +Jalisa +Kaley +Kasey +Kristian +Lori +Madelyn +Nikita +Presley +Shakira +Shirley +Skyler +Tamia +Toni +Vanessa +Angelica +Ann +Carolyn +Christa +Claudia +Daisy +Diana +Elisabeth +Evelyn +Jordyn +Josie +Julie +Kaylin +Keely +Kelli +Kellie +Kira +Kourtney +Lexus +Loren +Madeleine +Maegan +Montana +Nikki +Regan +Ryan +Tiana +Tyesha +Abbey +Abbie +Bonnie +Darian +Dasia +Felicia +Georgia +Hali +Jenny +Julianna +Karley +Katrina +Kaylyn +Magen +Marilyn +Nancy +Naomi +Sandra +Stacie +Tamera +Tristan +Valencia +Valerie +Zoey +Aimee +Aliyah +Amberly +Barbara +Bianca +Bryanna +Chandler +Chelsie +Christen +Delaney +Gabriela +Gloria +Hillary +Jacquelyn +Jodi +Kaci +Katlin +Katlynn +Kaylie +Kiera +Laken +Linda +Macey +Maranda +Nadia +Octavia +Pamela +Paris +Reagan +Scarlett +Teresa +Theresa +Wendy +Yasmine +Akira +Alice +Alliyah +Anastasia +Arianna +Breonna +Brionna +Carlee +Carlie +Charlotte +Chassity +Dallas +Deborah +Demi +Destiney +Erykah +Essence +Joanna +Kassidy +Kaylan +Krystal +Lakendra +Latasha +Madalyn +Melody +Moesha +Mollie +Monique +Nakia +Natasha +Takia +Trinity +Adrian +Adrienne +Ana +Auburn +Brenda +Bridgette +Brooklynn +Cara +Carleigh +Cayla +Cheyanne +Clara +Cortney +Deasia +Devin +Dominque +Donna +Dorothy +Eboni +Eleanor +Ericka +Haylee +Helen +Hollie +Hunter +Jacey +Jameria +Jane +Janna +Jocelyn +Julianne +Kailey +Kali +Karlie +Laurel +Lexie +Lillie +Lisa +Lyndsey +Lyric +Madilyn +Mckenna +Mikaela +Nora +Patrice +Raegan +Ragan +Robyn +Rylee +Sally +Serena +Shakayla +Stacey +Sylvia +Aleah +Alex +Ariana +Arielle +Baylie +Bridget +Camryn +Cecilia +China +Christy +Constance +Daja +Darby +Deidra +Demetria +Denise +Denisha +Ellen +Eva +Gabriella +Genesis +Glenda +Heaven +Isabel +Ivey +Jailyn +Janet +Jasmin +Jessi +Kacey +Kailyn +Kalyn +Kari +Karli +Kayleigh +Kiley +Kinsey +Kortney +Lauryn +Lucy +Macie +Malaysia +Malia +Meaghan +Nina +Princess +Racheal +Randi +Sharon +Shelbi +Sommer +Sophie +Stacy +Stella +Sydnee +Talia +Tanesha +Tayler +Terri +Alexius +Alisa +Amari +Anissa +Annamarie +Ashanti +Ashia +Ashli +Betty +Blair +Brantley +Bridgett +Briona +Brook +Carson +Celeste +Celina +Ciera +Danesha +Deonna +Devan +Dixie +Gina +Harlee +Isabelle +Jaida +Jaleah +Jamia +Jana +Janae +Jaylin +Jayme +Jessika +Juliana +Juliet +Kaila +Kalee +Kallie +Kathie +Kaylen +Keanna +Kelley +Kelsea +Kendal +Keondra +Kia +Kristie +Krysten +Kylee +Kyndall +Lakenya +Leanna +Lena +Lesley +Makala +Micaela +Misty +Myesha +Ruby +Shameka +Shanna +Skye +Stevie +Sydni +Tasha +Tatiana +Tatum +Tianna +Vivian +Alexandrea +Ally +Alysa +Amie +Angelique +Arin +Asha +Ashlie +Billie +Bobbie +Brieanna +Brittani +Brittanie +Cailyn +Carissa +Carla +Christiana +Cindy +Clarissa +Colleen +Cristina +Deandra +Deandrea +Drew +Elaina +Elena +Ella +Eryn +Farrah +Gillian +Hailee +Halie +Harleigh +Harlie +Harmony +Haven +Heidi +Holley +Jala +Jaliyah +Jayda +Jazmyne +Jodie +Joi +Josephine +Kadesha +Kailee +Kaliyah +Kandice +Kanisha +Karina +Kayley +Keandra +Keasia +Kenesha +Kensley +Keyona +Khadijah +Kianna +Kristan +Kristy +Kyleigh +Lakeisha +Lara +Larissa +Latoya +Laurie +Lea +Leigh +Maci +Madelynn +Magan +Maliyah +Mandy +Mara +Marlee +Marley +Martha +Mattie +Melinda +Micah +Michael +Miriam +Miya +Nakita +Niya +Peggy +Priya +Quanisha +Renee +Ryann +Sera +Shaniya +Shayna +Shelbie +Sherry +Shyanne +Susanna +Tabatha +Tamesha +Tanisha +Taniya +Tanner +Teri +Tiarra +Tiera +Tonya +Tracey +Traci +Tracy +Winter +Zakiya +Hannah +Alexis +Emily +Madison +Taylor +Sarah +Ashley +Anna +Lauren +Jessica +Mary +Elizabeth +Kayla +Haley +Jasmine +Morgan +Victoria +Brittany +Destiny +Courtney +Savannah +Amber +Brianna +Jordan +Samantha +Megan +Kaitlyn +Allison +Rachel +Abigail +Olivia +Sydney +Alyssa +Shelby +Katherine +Breanna +Katelyn +Kelsey +Emma +Rebecca +Caroline +Bailey +Jada +Caitlin +Alexandria +Autumn +Makayla +Katie +Tiffany +Christina +Sara +Heather +Lindsey +Erin +Raven +Amanda +Summer +Angel +Brooke +Kathryn +Madeline +Kimberly +Julia +Laura +Gabrielle +Whitney +Briana +Jennifer +Stephanie +Ashlyn +Kristen +Margaret +Chelsea +Kaitlin +Alexandra +Brittney +Catherine +Cassidy +Chloe +Caitlyn +Cheyenne +Faith +Natalie +Erica +Ariel +Mackenzie +Kiara +Leah +Abby +Danielle +Mallory +Mikayla +Meagan +Molly +Sierra +Kaylee +Bethany +Hailey +Alexus +Ashton +Brooklyn +Miranda +Nicole +Maria +Mariah +Michaela +Jayla +Payton +Aaliyah +Grace +Jamie +Katlyn +Savanna +Claire +Diamond +Holly +Maggie +Marissa +Peyton +Rebekah +Mya +Sabrina +Alicia +Kendall +Monica +Amy +Asia +Hope +Andrea +April +Lydia +Meredith +Selena +Tiara +Hanna +Kennedy +Allie +Ashleigh +Mckenzie +Shannon +Jenna +Kristin +Maya +Mia +Carly +Kendra +Lillian +Brandy +Kelly +Angela +Cassie +Crystal +Lindsay +Madelyn +Melissa +Tyra +Audrey +Deanna +Kierra +Paige +Tia +Zoe +Candace +Chasity +Deja +Julie +Kirsten +Leslie +Tori +Adrianna +Baylee +Casey +Haleigh +Reagan +Tabitha +Bailee +Cameron +Cierra +Katelynn +Makenzie +Michelle +Alison +Angelica +Ashlee +Carley +Dominique +Ebony +Kylie +Kyra +Riley +Sidney +Amelia +Brandi +Callie +Chelsey +Frances +Harley +Hayley +Kyla +Tatyana +Alexia +Alissa +Allyson +Destinee +Erika +Kasey +Meghan +Tamara +Tamia +Tessa +Adrienne +Dakota +Jade +Kourtney +Logan +Skylar +Alana +Avery +Christian +Jessie +Kara +Nadia +Carrie +Isabella +Jillian +Kaleigh +Tara +Virginia +Amari +Annie +Aubrey +Camille +Diana +Emilee +Heaven +Jazmine +Mercedes +Patricia +Regan +Carmen +Charity +Helen +Jacqueline +Jakayla +Josie +Justice +Kailey +Melanie +Rachael +Trinity +Abbey +Ann +Anne +Ansley +Cassandra +Hayden +Jordyn +Julianna +Katelin +Kathleen +Katlin +Kiera +Krista +Kristina +Lily +Macy +Vanessa +Abbie +Alexa +Amberly +Ana +India +Kaci +Kelsie +Lacey +Lauryn +Lisa +Mollie +Natasha +Nia +Skyler +Ally +Ashlynn +Haylee +Mattie +Carlee +Cynthia +Jalyn +Kayleigh +Kaylin +Kenya +Lillie +Melody +Susan +Alyson +Ariana +Ayanna +Charlotte +Cheyanne +Clara +Desiree +Destini +Dorothy +Eboni +Erykah +Felicia +Hunter +Joanna +Jodi +Kaitlynn +Kaylyn +Krystal +Maegan +Raegan +Sophia +Tayler +Tyler +Veronica +Addison +Adriana +Alisha +Anastasia +Britney +Christa +Ciara +Darby +Ellen +Emilie +Hallie +Jamia +Jasmin +Kacie +Katrina +Kaylan +Kaylie +Kiana +Linda +Macie +Martha +Rosa +Savanah +Shayla +Tatum +Tierra +Alanna +Aliyah +Bryanna +Candice +Carlie +Carolyn +Cayla +Ciera +Cortney +Dana +Delaney +Gloria +Julianne +Kaley +Kalyn +Karen +Kennedi +Kira +Lyric +Marisa +Miracle +Monique +Montana +Octavia +Paris +Shania +Tiana +Toni +Yasmine +Alecia +Baleigh +Brenda +Cara +Carson +Christine +Dejah +Destiney +Eden +Elisabeth +Evelyn +Gabriella +Imani +Ivy +Jenny +Joy +Kacey +Karlie +Kaylen +Laken +Lori +Lucy +Lyndsey +Maci +Madalyn +Mikaela +Nancy +Regina +Robin +Sadie +Sophie +Terri +Angelina +Ayana +Breana +Camryn +Chandler +Christen +Christin +Daisy +Denise +Georgia +Gracie +Hali +Jazmin +Jerrica +Kali +Karlee +Kate +Kayley +Kelsi +Keri +Kerri +Madeleine +Makala +Malia +Naomi +Nikki +Nina +Pamela +Precious +Reanna +Ruth +Scarlett +Shakira +Stacy +Valerie +Zaria +Arianna +Barbara +Brenna +Bria +Briley +Carla +Carol +Cecilia +Chyna +Claudia +Donna +Elaina +Eleanor +Halie +Jailyn +Jana +Jane +Jewel +Kailyn +Kassidy +Kelley +Kelli +Khadijah +Lacie +Laurel +Lexi +Loren +Macey +Mckayla +Miriam +Presley +Princess +Serena +Sharon +Tiffani +Tyesha +Tytiana +Aisha +Alex +Alice +Aniya +Annabelle +Ashanti +Ashlie +Ava +Bianca +Carissa +Carli +Celena +Christy +Cindy +Constance +Daijah +Daja +Dallas +Dasia +Deonna +Devin +Devon +Elise +Essence +Genesis +Haven +Heidi +Isabel +Jaden +Jaelyn +Jami +Jesse +Jocelyn +Kallie +Kaycee +Kendal +Kinsley +Kori +Kylee +Larissa +Layla +Leann +Lexus +London +Malaysia +Maleah +Mallorie +Malori +Marlee +Marley +Moesha +Myah +Patience +Randi +Robyn +Sandra +Savana +Shakayla +Shawna +Sydnee +Sylvia +Talia +Tamera +Tanisha +Tanner +Tatiana +Tea +Teresa +Tykeria +Winter +Abbigail +Abigayle +Alayna +Alexius +Aliya +Alyssia +Anita +Annmarie +Arielle +Aspen +Aubree +Aurora +Azaria +Blakely +Bonnie +Breonna +Brianne +Chelsie +Clarissa +Cydney +Deasia +Deborah +Ebone +Elexis +Eliza +Ella +Ericka +Eva +Gabriel +Gillian +Halee +Halley +Hayleigh +Hollie +Jabria +Jala +Jameria +Jayda +Jesslyn +Juanita +Karley +Katlynn +Kayle +Kayli +Keely +Keirra +Keonna +Kinsey +Lakeisha +Lana +Laney +Lara +Latia +Leanna +Lexie +Lila +Madelynn +Madisyn +Makaila +Marina +Marion +Marlana +Mckenna +Mckinley +Meaghan +Misty +Naja +Nichole +Niya +Rose +Ruby +Shaina +Shameka +Shantavia +Shelley +Susannah +Sydnie +Tamesha +Tamya +Tania +Taryn +Terra +Tianna +Tiera +Tyneshia +Vivian +Wendy +Zoey +Adrian +Akira +Aleah +Angelique +Annamarie +Ansleigh +Armani +Auburn +Beth +Brittani +Brittni +Bryana +Caitlynn +Caleigh +Camilla +Camisha +Celeste +Celina +Celine +Cherokee +Chrissy +Cora +Cristina +Daphne +Darian +Dawn +Deana +Denisha +Desirae +Desire +Destin +Dixie +Dylan +Elissa +Emory +Esmeralda +Fallon +Felicity +Gabriela +Giselle +Halle +Harper +Isabelle +Iyana +Jaime +Jamaya +Jamiah +Janet +Janiya +Jasmyne +Jaylen +Jill +Jodie +Juliana +Kaila +Kalee +Kaliyah +Kameron +Kamryn +Kanesha +Karla +Karson +Keana +Keandra +Keandrea +Keanna +Keaundra +Kellie +Kelsee +Kristy +Kyleigh +Kyler +Kyndall +Ladaisha +Lakendra +Lakira +Lashonda +Lea +Leigh +Lilly +Maddison +Madilyn +Magan +Magen +Maia +Makiya +Maranda +Mari +Markayla +Morganne +Myesha +Myranda +Nakayla +Nautica +Nikita +Portia +Ragan +Reilly +Rhiannon +Sally +Samaria +Sherry +Shyanne +Simone +Stacey +Takia +Takira +Tina +Tracy +Tyeisha +Whitley +Yvette +Hannah +Emily +Madison +Alexis +Anna +Taylor +Sarah +Mary +Elizabeth +Ashley +Destiny +Lauren +Jessica +Haley +Savannah +Kayla +Victoria +Brianna +Morgan +Samantha +Kaitlyn +Amber +Alyssa +Jasmine +Rachel +Brittany +Olivia +Emma +Sydney +Courtney +Katelyn +Abigail +Megan +Jordan +Shelby +Allison +Breanna +Bailey +Erin +Caroline +Rebecca +Katherine +Autumn +Kelsey +Sara +Makayla +Kaylee +Grace +Alexandria +Jada +Angel +Katie +Chloe +Jennifer +Kimberly +Tiffany +Lindsey +Mackenzie +Amanda +Gabrielle +Caitlin +Abby +Laura +Heather +Kathryn +Madeline +Natalie +Alexandra +Faith +Ashlyn +Mikayla +Danielle +Catherine +Erica +Raven +Caitlyn +Andrea +Brooklyn +Sierra +Whitney +Molly +Bethany +Briana +Brooke +Julia +Kiara +Mallory +Margaret +Maria +Cheyenne +Hailey +Kristen +Leah +Mya +Christina +Brittney +Stephanie +Mckenzie +Summer +Diamond +Rebekah +Lillian +Asia +Chelsea +Jayla +Nicole +Skylar +Ariel +Cassidy +Isabella +Kaitlin +Camryn +Alexia +Claire +Lauryn +Savanna +Audrey +Mariah +Tatyana +Maggie +Kennedy +Riley +Ashton +Callie +Cameron +Hayley +Kendall +Madelyn +Marissa +Shania +Zoe +Hanna +Michaela +Miranda +Amy +Hope +Leslie +Alexus +Jenna +Katlyn +Peyton +Tori +Alicia +Kelly +Macy +Melissa +Virginia +Angela +Cierra +Holly +Meagan +Payton +Aaliyah +Christian +Kendra +Tiara +Baylee +Chasity +Destinee +Gracie +Sabrina +Allie +Amelia +Casey +Crystal +Kylie +Lydia +Reagan +Annie +Claudia +Jamie +Jamya +Kierra +Kirsten +Mercedes +Meredith +Paige +Sidney +Trinity +Brandi +Melanie +Shannon +Deja +Kaleigh +Maya +Selena +Sophia +Tara +Allyson +Avery +Carley +Deanna +Haleigh +Julie +Katelynn +Kristin +Makenzie +Tia +Harley +Hayden +Jade +Kara +Kyla +Tamara +Tamia +Ashleigh +Brandy +Britney +Erika +Jakayla +Mia +Tabitha +Abbie +Alexa +Carly +Charity +Kyra +Michelle +Adrianna +Alana +Amaya +Cassie +Desiree +Ebony +Kristina +Lily +Alaina +Alison +Alissa +Ann +Ayanna +Carlie +Ciara +Dominique +Heaven +Jessie +Jillian +Kailey +Presley +Regan +Aliyah +Angelica +Ariana +Chandler +Destini +Hunter +Lindsay +Logan +Meghan +Tessa +Tyra +Valerie +Abbey +Anne +Ansley +Carmen +Dakota +Jamia +Jazmine +Jordyn +Rachael +Skyler +Aubrey +Camille +Carrie +Carson +Georgia +India +Kaley +Kalyn +Kaylin +Kelsie +Nadia +Nancy +Raegan +Robyn +Alyson +April +Carolyn +Chelsey +Cheyanne +Daisy +Darby +Ellen +Isabel +Josie +Linda +Monica +Naomi +Sophie +Talia +Veronica +Yasmine +Addison +Alisha +Bailee +Dana +Delaney +Eleanor +Elisabeth +Emilee +Essence +Ivy +Jacqueline +Joanna +Karen +Kassidy +Katelin +Kathleen +Kayleigh +Kiera +Kourtney +Patricia +Susan +Toni +Zaria +Adrienne +Ally +Amya +Ana +Ashlee +Bianca +Bryanna +Cassandra +Frances +Gabriella +Hallie +Jalyn +Jamiya +Julianna +Kacie +Kaitlynn +Lacey +Lexus +Lucy +Miracle +Paris +Tatiana +Amberly +Arianna +Ashlynn +Dasia +Diana +Eva +Evelyn +Helen +Karla +Kasey +Keyonna +Kira +Kylee +Laken +Marlee +Precious +Randi +Shakeria +Tamya +Vanessa +Antonia +Candace +Christine +Haylee +Jocelyn +Justice +Kamryn +Karlee +Katlynn +Keanna +Lillie +Macey +Madalyn +Maegan +Robin +Serenity +Tamera +Tianna +Tyler +Abbigail +Amari +Candice +Cayla +Celeste +Christen +Ciera +Destiney +Emilie +Felicity +Haven +Jasmin +Kailee +Katlin +Katrina +Kaylie +Kinley +Lana +Laurel +Loren +Lori +Lyndsey +Mattie +Natasha +Patience +Savana +Scarlett +Shakayla +Taryn +Terri +Tiana +Alexandrea +Alice +Aniya +Caleigh +Cara +Carlee +Chelsie +Chyna +Cori +Cynthia +Felicia +Gabriel +Genesis +Heidi +Hillary +Jailyn +Janae +Joy +Juliana +Kali +Karley +Kate +Kaylyn +Kenya +Kinsley +Lainey +Laney +Leanna +Macie +Madeleine +Madelynn +Mckenna +Mollie +Nia +Nina +Reanna +Sadie +Savanah +Shakira +Shamya +Shayla +Sydni +Sydnie +Teresa +Adrian +Alanna +Aleah +Ali +Anastasia +Annabelle +Ayana +Barbara +Bonnie +Carla +Christin +Constance +Cortney +Daija +Daja +Deborah +Devin +Eboni +Elaina +Elexis +Ella +Grayson +Halie +Holland +Imani +Isabelle +Jacquelyn +Jaden +Jaelyn +Jakeria +Jamesha +Jaycie +Jaylen +Kameron +Karli +Karlie +Karmen +Kateria +Keandra +Keara +Keyona +Kirstin +Kristian +Lena +Lexi +Lexie +London +Madisyn +Martha +Micah +Montana +Nora +Raquel +Ruby +Ruth +Sandra +Selina +Shelbie +Sydnee +Taniya +Tatum +Tierra +Tiffani +Tristen +Tykeria +Vivian +Addie +Adriana +Aja +Alayna +Alaysia +Alejandra +Alivia +Allyssa +Ashtyn +Ava +Breana +Brenda +Brenna +Bria +Bridget +Carrington +Christa +Deasia +Demetria +Ellie +Erykah +Esmeralda +Gillian +Gloria +Hollie +Jacey +Jacklyn +Jala +Jalexis +Jalisa +Jane +Jaylin +Kaci +Kaila +Kailyn +Kari +Kaytlin +Kelli +Keonna +Kiana +Kiley +Kimora +Kinsey +Krista +Latavia +Maci +Magen +Makala +Makenna +Makiya +Malaysia +Malia +Marley +Mckayla +Micaela +Miriam +Miya +Myesha +Nautica +Nikki +Parker +Regina +Rylee +Ryleigh +Shaylee +Stella +Tionna +Tristan +Wynter +Zoie +Aiyana +Akira +Alondra +Arielle +Bobbie +Calista +Cassady +Cecilia +Charlotte +Christiana +Cindy +Clara +Daisha +Daphne +Darian +Dejah +Donna +Ebonie +Eden +Elena +Farrah +Guadalupe +Hailee +Halee +Halle +Halley +Harmony +Iesha +Isis +Ivey +Jameria +Jamyia +Jewel +Jurnee +Karissa +Kaylah +Kaylan +Kayley +Keely +Kennedi +Kenyatta +Keyara +Kiarra +Kimberley +Lakeria +Leann +Lesley +Lilly +Lisa +Lyric +Madilyn +Meaghan +Nikita +Niya +Octavia +Pamela +Priscilla +Shanna +Sharon +Sofia +Sommer +Sylvia +Tabatha +Takira +Tanya +Tatianna +Tyesha +Tytiana +Valencia +Zykeria +Alesia +Alia +Alycia +Alysa +Ambria +Angelina +Anita +Aniyah +Ashanti +Baleigh +Bentley +Betty +Beverly +Brantley +Breonna +Brittani +Brooklynn +Caitlynn +Carleigh +Carol +Cecily +Celia +Charleigh +Chastity +Christy +Courtlyn +Daijah +Dallas +Daniela +Denise +Devyn +Dixie +Dorothy +Drew +Elisa +Emory +Fallon +Gabriela +Genevieve +Gracen +Hadley +Hali +Hana +Harlee +Holley +Indya +Ivory +Iyanla +Jacie +Jadyn +Jakerria +Jalynn +Jamaya +Jameshia +Jamyah +Jania +Janiah +Janice +Jayda +Jaylyn +Jayme +Jewell +Jodi +Josephine +Judith +Judy +Kaelyn +Kala +Kaliyah +Kalynn +Kambria +Kassie +Kaycee +Kaylen +Kaylynn +Kearra +Keirra +Kelsi +Kenzie +Keri +Khadijah +Kirby +Kristy +Kylah +Kyleigh +Lacie +Lacy +Larissa +Latisha +Leigh +Lucia +Luz +Maddison +Madyson +Maleah +Marina +Micayla +Mikaela +Moriah +Nichole +Nigeria +Nyla +Princess +Rhiannon +Rileigh +Rosa +Ryan +Sarai +Shaniya +Shanya +Shawna +Shekinah +Shirley +Shyanne +Stacie +Star +Stormy +Susanna +Tamiya +Tanner +Tatyanna +Taylar +Tayler +Terrica +Tkeyah +Tyanna +Tykia +Wendy +Whitley +Yesenia +Zhane +Hannah +Anna +Madison +Emily +Sarah +Alexis +Taylor +Mary +Elizabeth +Kayla +Destiny +Lauren +Ashley +Haley +Brianna +Savannah +Jessica +Abigail +Morgan +Olivia +Victoria +Emma +Sydney +Jasmine +Kaitlyn +Alyssa +Katherine +Amber +Samantha +Caroline +Makayla +Shelby +Rachel +Katelyn +Jordan +Megan +Brittany +Chloe +Breanna +Grace +Jada +Courtney +Kelsey +Sara +Bailey +Rebecca +Allison +Autumn +Kaylee +Natalie +Hailey +Mackenzie +Erin +Alexandria +Angel +Jennifer +Gabrielle +Caitlin +Danielle +Laura +Trinity +Amanda +Madeline +Caitlyn +Kristen +Sierra +Julia +Ashlyn +Brittney +Lindsey +Kathryn +Katie +Kennedy +Diamond +Lillian +Erica +Faith +Mckenzie +Summer +Margaret +Raven +Brooke +Stephanie +Catherine +Jayla +Kimberly +Madelyn +Abby +Briana +Cassidy +Christina +Leah +Peyton +Isabella +Zoe +Bethany +Gracie +Heather +Mallory +Alexandra +Andrea +Maggie +Alexia +Tiffany +Brooklyn +Kaitlin +Cameron +Makenzie +Molly +Mikayla +Payton +Kiara +Asia +Alexus +Cheyenne +Kendall +Michelle +Skylar +Sophia +Lauryn +Reagan +Hayley +Katlyn +Maria +Rebekah +Audrey +Britney +Lacey +Lydia +Macy +Tamia +Nicole +Riley +Camryn +Claire +Jenna +Mya +Aaliyah +Meagan +Selena +Whitney +Avery +Erika +Melissa +Amaya +Ariel +Charity +Chelsea +Holly +Lily +Michaela +Savanna +Ariana +Callie +Hanna +Jamie +Marissa +Miranda +Angela +Crystal +Haleigh +Hope +Kara +Kierra +Virginia +Allie +Destinee +Jillian +Sabrina +Arianna +Baylee +Abbie +Alana +Ashleigh +Ashton +Christian +Isabelle +Jade +Paige +Tatyana +Tori +Carly +Harley +Josie +Kylie +Mariah +Mia +Rachael +Tabitha +Addison +Alicia +Amelia +Jazmine +Kassidy +Kendra +Logan +Shania +Amy +Anne +Cierra +Diana +India +Kirsten +Leslie +Tamara +Cassie +Evelyn +Kyra +Meredith +Sophie +Tara +Ella +Ivy +Jakayla +Julie +Melanie +Tessa +Brandy +Carrie +Dakota +Desiree +Hayden +Jayden +Kaleigh +Kayleigh +Kristin +Monica +Alexa +Allyson +Aniya +Ann +Annie +Brenda +Carley +Carmen +Casey +Claudia +Cynthia +Deanna +Deja +Kaley +Kyla +Mercedes +Sidney +Tyra +Zaria +Adriana +Ansley +Bailee +Carolyn +Chasity +Delaney +Gabriel +Genesis +Georgia +Jamya +Katelynn +Kathleen +Lucy +Maya +Sadie +Tamya +Tia +Aliyah +April +Aubrey +Destini +Ebony +Frances +Hallie +Haylee +Heaven +Jacqueline +Julianna +Kaylie +Kaylin +Kaylyn +Madalyn +Meghan +Mollie +Patricia +Shayla +Alaina +Alison +Amya +Ashlynn +Brandi +Camille +Carlee +Emilee +Kailey +Karlie +Kaylan +Kelly +Nadia +Raegan +Alisha +Alyson +Amari +Ashlee +Helen +Jamaya +Joy +Kiana +Martha +Naomi +Serena +Shannon +Tiara +Tierra +Vanessa +Adrianna +Alissa +Brooklynn +Cassandra +Cayla +Isabel +Jordyn +Kamryn +Kelli +Kira +Lindsay +Macey +Valerie +Abbey +Aleah +Ayanna +Breana +Deasia +Destiney +Dominique +Ellen +Essence +Halle +Jayda +Karen +Kasey +Katrina +Kelsie +Kenya +Kiley +Kristina +Lilly +Malaysia +Marlee +Mckenna +Nikki +Niya +Savana +Teresa +Veronica +Abbigail +Ally +Ana +Aniyah +Bianca +Daisy +Dana +Eleanor +Elisabeth +Halie +Jaden +Jana +Jasmin +Jaylin +Joanna +Krista +Laurel +Layla +Madeleine +Madyson +Maranda +Melody +Nia +Robin +Skyler +Sydni +Tiana +Yasmine +Adrienne +Angelina +Ava +Bryanna +Carlie +Chelsey +Ciara +Dixie +Felicity +Hali +Heidi +Jalyn +Jamia +Jamiya +Janiya +Jaycee +Justice +Kaitlynn +Kali +Katlin +Kylee +Lexi +Linda +Loren +Mattie +Savanah +Tatum +Amiya +Blakely +Briley +Cara +Carrington +Carson +Cecilia +Clara +Devin +Eden +Eva +Hunter +Jane +Jessie +Juliana +Kailyn +Karlee +Kate +Kayley +Kelsi +Keona +Kourtney +Lacy +Laney +Lexie +Lisa +Maci +Macie +Natasha +Nina +Paris +Rhiannon +Shakeria +Tatiana +Alanna +Alaysia +Ambria +Angelica +Azaria +Brenna +Cristina +Dorothy +Gabriela +Harmony +Haven +Jaila +Jakyra +Jocelyn +Karley +Kaylen +Keara +Kennedi +Keyanna +Kiera +Kinley +Kristian +Laken +Leanna +Lillie +Maegan +Micah +Miriam +Montana +Nancy +Precious +Presley +Randi +Sandra +Shamya +Shana +Sheridan +Susan +Tayla +Terra +Tykeria +Zoie +Akira +Amani +Annabelle +Ashia +Bridget +Brooklin +Candace +Carissa +Christa +Daijah +Daisha +Daniela +Daphne +Deborah +Esmeralda +Gillian +Jacey +Jakeria +Jalisa +Janna +Janya +Jesse +Kaci +Kailee +Karla +Kenley +Kiarra +Kiersten +Krystal +Lori +Madisyn +Magen +Makenna +Marley +Mckayla +Miracle +Octavia +Princess +Regan +Robyn +Rose +Ruth +Rylee +Sally +Shakira +Sydnee +Tamera +Tianna +Zoey +Alex +Ali +Alivia +Amiyah +Anaya +Anya +August +Bayleigh +Brionna +Cailyn +Carol +Cherish +Christine +Dasia +Dejah +Demetria +Destinie +Ellie +Gabriella +Gloria +Harlie +Imani +Jailyn +Jakia +Janae +Janice +Jasmyne +Jazmin +Kaelyn +Kaila +Kalyn +Karli +Karrington +Katelin +Kathy +Katilyn +Katlynn +Keasia +Kelsea +Keri +Keyonna +Kinsey +Kinsley +Kyleigh +Leila +Lizbeth +London +Lyndsey +Mahogany +Makiyah +Marisa +Mercedez +Moriah +Pamela +Patience +Santana +Serenity +Shaina +Shaniya +Sharon +Shyann +Sonya +Stacy +Stormy +Taniya +Tanner +Tayler +Tyler +Zykeria +Adrian +Aja +Alayna +Alecia +Aleigha +Alesha +Alice +Alisa +Alysa +Ariyana +Ashli +Beverly +Beyonce +Chandler +Charlotte +Cheyanne +Christiana +Ciera +Constance +Daja +Dallas +Deandrea +Denise +Devyn +Elaina +Emmalee +Grayson +Hadley +Halee +Hana +Harper +Hillary +Holli +Hollie +Jadah +Jaelyn +Jala +Jalynn +Jami +Jamiah +Jaylyn +Jolie +Josephine +Joyce +Joycelyn +Kacie +Kallie +Kameron +Karly +Kaylah +Kaytlin +Kensley +Kenzie +Kirstin +Kirstyn +Kyndal +Kyndall +Lakendra +Lana +Latrice +Lexus +Madelynn +Makiya +Maribel +Micaela +Moesha +Monique +Nautica +Noelle +Parker +Piper +Reanna +Regina +Ryan +Scarlett +Shakayla +Shamiya +Shanya +Shelbi +Shelbie +Tameria +Tania +Terri +Toni +Treasure +Tyanna +Tytiana +Vivian +Winter +Zariah +Abagail +Abigayle +Alexandrea +Alondra +Anastasia +Annah +Antonia +Ashanti +Ashlie +Auriel +Ayana +Aysha +Bentley +Bonnie +Brantley +Britany +Brittani +Brookelyn +Cailey +Caitlynn +Caleigh +Carli +Celeste +Charlie +Christy +Chyna +Clarissa +Corinne +Darby +Destany +Eboni +Elena +Elise +Eliza +Emerald +Emilie +Emory +Eryn +Gina +Giselle +Harlee +Hayleigh +Iman +Ivory +Iyanna +Jaela +Jaliyah +Jameria +Jamyah +Jaslyn +Jaylan +Jewel +Jodi +Johnna +Juana +Kacey +Kacy +Kalee +Karina +Karissa +Kaya +Keira +Kellie +Keyona +Kianna +Kori +Kristy +Lakin +Latavia +Latonya +Leigh +Lia +Libby +Lilian +Madelyne +Madisen +Makala +Malika +Mandy +Marie +Maryelizabeth +Mekayla +Miah +Misty +Myra +Nakiyah +Nikita +Nykeria +Ragan +Raquel +Rosa +Ruby +Saylor +Shay +Shayna +Skye +Stacey +Starla +Stella +Susannah +Sydnie +Tabatha +Talia +Tionna +Trinitee +Triniti +Tyesha +Wendy +Whitley +Madison +Hannah +Anna +Emily +Sarah +Alexis +Taylor +Mary +Destiny +Lauren +Elizabeth +Ashley +Haley +Abigail +Savannah +Kayla +Emma +Morgan +Olivia +Jessica +Jasmine +Brianna +Sydney +Alyssa +Victoria +Kaitlyn +Jordan +Chloe +Makayla +Amber +Samantha +Bailey +Katherine +Rachel +Katelyn +Caroline +Mackenzie +Megan +Shelby +Jada +Kaylee +Autumn +Breanna +Brittany +Grace +Sara +Angel +Courtney +Natalie +Allison +Gabrielle +Rebecca +Trinity +Julia +Aaliyah +Erin +Hailey +Faith +Isabella +Gracie +Katie +Brooke +Jennifer +Kelsey +Lindsey +Maggie +Catherine +Madeline +Ashlyn +Abby +Alexandria +Jayla +Madelyn +Summer +Diamond +Kennedy +Lillian +Margaret +Mckenzie +Molly +Zoe +Brooklyn +Kathryn +Laura +Maria +Stephanie +India +Asia +Alexandra +Caitlin +Christina +Reagan +Amanda +Andrea +Savanna +Sierra +Cassidy +Jenna +Mallory +Mikayla +Mya +Brittney +Heather +Payton +Skylar +Bethany +Makenzie +Leah +Kylie +Sophia +Briana +Kristen +Tiffany +Chelsea +Kimberly +Peyton +Cheyenne +Kiara +Lydia +Raven +Riley +Audrey +Claire +Jamya +Kayleigh +Michelle +Ashton +Callie +Danielle +Kaitlin +Alexus +Ariel +Avery +Cameron +Lily +Amy +Camryn +Jade +Jamie +Angela +Caitlyn +Jordyn +Katlyn +Macy +Erica +Melissa +Tamia +Josie +Nicole +Aliyah +Aubrey +Hanna +Hope +Mariah +Marissa +Paige +Whitney +Addison +Alexia +Carly +Haleigh +Jillian +Lauryn +Meagan +Abbie +Alexa +Amelia +Leslie +Sadie +Selena +Adrianna +Alana +Allie +Baylee +Kyla +Rebekah +Abbey +Ariana +Hayley +Miracle +Skyler +Ashleigh +Carmen +Michaela +Sabrina +Allyson +Britney +Daisy +Destinee +Ella +Kendra +Meredith +Miranda +Tori +Virginia +April +Charity +Frances +Hayden +Isabelle +Kaylie +Kirsten +Kyra +Mia +Bailee +Chasity +Desiree +Harley +Kaleigh +Kamryn +Kara +Kendall +Madalyn +Cierra +Deja +Destini +Erika +Heaven +Kelly +Amari +Amaya +Aniya +Crystal +Gabriella +Holly +Jacqueline +Adriana +Alicia +Ayanna +Emilee +Georgia +Jakayla +Jazmine +Kassidy +Makenna +Martha +Patricia +Presley +Rylee +Sophie +Taniya +Alissa +Claudia +Cynthia +Destiney +Isabel +Ivy +Katelynn +Maya +Meghan +Raegan +Shania +Shannon +Zaria +Ana +Aniyah +Arianna +Cassie +Evelyn +Helen +Kailey +Layla +Lindsay +Regan +Tabitha +Valerie +Abbigail +Aleah +Ann +Anne +Annie +Brandi +Camille +Carlee +Carley +Carson +Julie +Kathleen +Kaylyn +Krista +Kyleigh +Lacey +Madyson +Melody +Mercedes +Monica +Nevaeh +Ryleigh +Serenity +Sidney +Tamya +Zoie +Alayna +Angelina +Ansley +Brandy +Candace +Carlie +Chandler +Chelsey +Delaney +Jaden +Janiya +Karen +Kaylin +Kierra +Kinsley +Kristina +Macie +Maleah +Mattie +Melanie +Nia +Shayla +Tiara +Vivian +Yasmine +Alyson +Amya +Angelica +Annabelle +Ashlee +Ava +Brenda +Bryanna +Christian +Deanna +Diana +Eden +Elisabeth +Eliza +Kaitlynn +Kiley +Kristin +Kylee +Miriam +Serena +Tamara +Tiana +Alisha +Alivia +Ally +Anastasia +Ashlynn +Carrie +Casey +Charlotte +Christy +Ebony +Gabriela +Gloria +Haylee +Jaelyn +Jayda +Julianna +Justice +Katlin +Katrina +Kelsie +Laney +Laurel +Lexie +Lilly +Lucy +Madilyn +Malaysia +Mckenna +Micah +Montana +Pamela +Shamya +Tatum +Tatyana +Tia +Alison +Amiya +Carolyn +Clara +Dakota +Dana +Deasia +Fatima +Genesis +Hallie +Jalyn +Jasmin +Jessie +Joanna +Kaley +Kasey +Kennedi +Kenya +Laila +Logan +Nadia +Naomi +Precious +Scarlett +Susan +Adrienne +Alaina +Ayana +Briley +Caleigh +Cheyanne +Dixie +Halle +Harmony +Hollie +Jailyn +Jayden +Juliana +Kali +Kameron +Karlie +Kira +Lexi +Lillie +Madisyn +Maegan +Makaila +Makala +Rachael +Shakayla +Sydni +Tristen +Zoey +Bianca +Carleigh +Cassandra +Daisha +Dasia +Eleanor +Elise +Ellie +Emilie +Gracelyn +Grayson +Harper +Imani +Jaida +Jakiya +Jamia +Jamiya +Jazmyne +Jesse +Joy +Kacie +Kailyn +Kelsi +Lana +Maci +Madeleine +Marisa +Mollie +Nyah +Regina +Robin +Rose +Sandra +Savana +Shakira +Shaniah +Sheridan +Tessa +Alice +Anaya +Baleigh +Barbara +Candice +Cara +Christa +Ciara +Cindy +Cora +Desirae +Ellen +Eva +Felicity +Hali +Haven +Jacey +Jaliyah +Jamyah +Jamyia +Jana +Jazmin +Jewel +Jocelyn +Kamya +Karlee +Kate +Katlynn +Keasia +Kensley +Keyona +Kiana +Kiersten +Lena +Macey +Malia +Mckayla +Mckinley +Nancy +Natalia +Paris +Ruth +Samaria +Shaniya +Sommer +Talia +Tara +Tatiana +Tierra +Vanessa +Veronica +Addie +Alanna +Alejandra +Alexandrea +Amiyah +Anya +Ashanti +Ashtyn +Bayleigh +Camden +Carla +Caylee +Cecilia +Celeste +Denise +Dominique +Emmalee +Guadalupe +Hadley +Jaiden +Jane +Jasmyn +Jaylin +Jenny +Kailee +Kalyn +Karley +Kaylan +Kayle +Keely +Kiera +Kinley +Laken +Lara +Leanna +Libby +Linda +Lisa +Madelynn +Makiyah +Marie +Misty +Myesha +Natasha +Nora +Nyla +Reanna +Reyna +Rosa +Sally +Shamia +Sydnee +Taina +Taliyah +Tamera +Tayler +Tytiana +Valencia +Abigayle +Alasia +Alaysia +Alexius +Alexys +Alisa +Alondra +Alysa +Annika +Araceli +Asya +Aubrie +Azaria +Bonnie +Brandie +Breana +Breann +Breonna +Carli +Carsen +Chelsie +Christine +Daija +Daniela +Eboni +Elena +Esther +Hailee +Halie +Hayleigh +Hunter +Jakira +Jala +Jalisa +Janae +Janie +Jaycee +Jaylen +Juana +Kaci +Kaelyn +Kallie +Karli +Karmen +Kathrine +Kayley +Kaytlin +Kerri +Keyonna +Kinsey +Kirstin +Kourtney +Kylah +Lacy +Lea +Leila +Lesley +Lori +Mallorie +Marlee +Marley +Monique +Myah +Nakiya +Nikki +Niya +Nya +Parker +Rhianna +Ruby +Sasha +Savanah +Shawna +Sherry +Shyanne +Teresa +Terri +Toni +Tyler +Tyra +Wendy +Willow +Zariah +Zykeria +Abbigayle +Adeline +Adrian +Aja +Ali +Alyssia +Amiah +Amira +Ariyana +Bella +Brenna +Brionna +Carrington +Cayla +Chantel +Charlie +Christen +Christiana +Dajah +Dallas +Daniya +Darby +Dianna +Donna +Dorothy +Elaina +Elexus +Emory +Ericka +Essence +Farrah +Giselle +Gisselle +Isabell +Ivey +Ivory +Iyana +Jacquelyn +Jadyn +Jaila +Jalynn +Jamiah +Jania +Janiyah +Jaqueline +Jasmyne +Jazlyn +Jesslyn +Johnna +Journey +Julianne +Kaila +Kaiya +Kari +Karissa +Karla +Karly +Karsyn +Kassie +Kaya +Kaylen +Kelli +Kenley +Kenzie +Keri +Kerrigan +Kiya +Kristian +Kya +Kyndall +Laci +Ladasia +Lakeisha +Lakia +Larissa +Latavia +London +Lora +Loren +Louisa +Lyndsey +Maddison +Madelyne +Madisen +Magan +Mahogany +Makiya +Mariana +Marilyn +Marina +Marion +Mattison +Meaghan +Mikaela +Millie +Miya +Nina +Niyah +Nyasia +Nykeria +Octavia +Princess +Riana +Selina +Shelbi +Shyann +Skyla +Sonya +Suzanna +Tanya +Tatianna +Tiffani +Tionna +Tyanna +Tykeria +Winter +Madison +Hannah +Anna +Emily +Alexis +Mary +Sarah +Elizabeth +Emma +Lauren +Abigail +Taylor +Brianna +Kayla +Savannah +Chloe +Haley +Olivia +Destiny +Alyssa +Morgan +Ashley +Victoria +Jasmine +Jessica +Isabella +Kaitlyn +Sydney +Jordan +Shelby +Jada +Katelyn +Ashanti +Samantha +Caroline +Rachel +Grace +Amber +Kaylee +Makayla +Katherine +Megan +Natalie +Autumn +Mackenzie +Angel +Bailey +Allison +Faith +Aaliyah +Breanna +Gracie +Courtney +Erin +Katie +Sara +Trinity +Jayla +Zoe +Abby +Alexandria +Gabrielle +Hailey +Kimberly +Brooklyn +Catherine +Madeline +Lillian +Rebecca +Julia +Madelyn +Reagan +Laura +Summer +Brooke +Alexandra +Lindsey +Maggie +Margaret +Maria +Payton +Ashlyn +Bethany +Riley +Jennifer +Kathryn +Kelsey +Mckenzie +Sierra +India +Kennedy +Skylar +Molly +Ella +Hanna +Kylie +Audrey +Jenna +Kendall +Leah +Amanda +Andrea +Peyton +Caitlyn +Cheyenne +Diamond +Lily +Lydia +Mallory +Danielle +Alexia +Aubrey +Briana +Brittany +Erica +Mia +Nicole +Raven +Kyla +Amelia +Avery +Caitlin +Cassidy +Kristen +Sophia +Jade +Kaitlin +Asia +Claire +Heather +Jamie +Mikayla +Angela +Camryn +Kiara +Stephanie +Virginia +Hayley +Melissa +Alicia +Christina +Tiffany +Cameron +Jamya +Makenzie +Michelle +Amy +Madalyn +Savanna +Selena +Sophie +Baylee +Carmen +Janiya +Josie +Kayleigh +Macy +Miranda +Mya +Ana +Ariel +Ashleigh +Harley +Katelynn +Meagan +Sadie +Addison +Ashton +Jillian +Rebekah +Ava +Brittney +Callie +Maya +Alexa +Aniya +Haylee +Jocelyn +Monica +Sabrina +Whitney +Alexus +Chelsea +Hallie +Holly +Hope +Kelly +Kylee +Leslie +Meredith +Alana +Ariana +Kristin +Michaela +Sidney +Tamara +Alisha +Allie +Ansley +Britney +Destinee +Jakayla +Jayden +Jordyn +Julianna +Kirsten +Lillie +Marissa +Melody +Miracle +Shakira +Yasmine +Abbie +Abbigail +Cierra +Gabriella +Hayden +Isabelle +Ivy +Jaden +Julie +Kara +Taniya +Adrianna +Amaya +Ann +Anne +Candace +Ellie +Emilee +Erika +Haleigh +Kristina +Lauryn +Lucy +Alayna +Annabelle +Annie +April +Carley +Carly +Evelyn +Halle +Isabel +Kamryn +Lilly +Paige +Skyler +Tamia +Tiara +Abbey +Allyson +Aniyah +Arianna +Ashlee +Camille +Jacqueline +Kaley +Kyra +Macie +Tori +Aliyah +Amari +Amiya +Angelina +Ayanna +Bailee +Brandi +Carlie +Charlotte +Christian +Eleanor +Elisabeth +Heaven +Jazmine +Kierra +Nia +Rylee +Ashlynn +Bryanna +Charity +Clara +Deanna +Deja +Diana +Joy +Kailey +Kaleigh +Katlyn +Kyleigh +Lacey +Mariah +Mattie +Ryleigh +Tianna +Zaria +Ally +Kacie +Kalyn +Karli +Kathleen +Kaylie +Kaylin +Laurel +Mckenna +Tabitha +Zoey +Alaina +Alissa +Bella +Crystal +Dakota +Deasia +Georgia +Helen +Kailyn +Kaliyah +Karen +Kassidy +Kiley +Kinsley +Layla +Lindsay +Macey +Makenna +Melanie +Nadia +Precious +Shannon +Tatyana +Valerie +Brandy +Carla +Carolyn +Claudia +Desiree +Eden +Frances +Jaliyah +Jameria +Jane +Joanna +Kenya +Kinley +Laney +Lexi +Mollie +Scarlett +Shayla +Tamiya +Tia +Adriana +Alanna +Carlee +Chasity +Ciara +Daniela +Destiney +Eva +Genesis +Harper +Haven +Imani +Jalyn +Jaylyn +Justice +Katrina +Kelsie +Laila +Lexie +Martha +Montana +Nancy +Naomi +Presley +Robin +Rosa +Sandra +Tatum +Tierra +Wendy +Aleah +Alison +Amya +Bianca +Brenda +Carrie +Carson +Casey +Cayla +Cheyanne +Delaney +Devin +Dorothy +Elise +Felicity +Gabriela +Jadyn +Jaiden +Jakiya +Jessie +Kalee +Karley +Kayley +Kendra +Kira +Krista +Kya +Kyndall +Laken +Linda +Madyson +Malaysia +Marley +Mercedes +Sally +Shania +Shaniya +Taliyah +Toni +Vivian +Zykeria +Alice +Cassie +Christen +Cynthia +Dasia +Destini +Elena +Gabriel +Gillian +Gracen +Grayson +Guadalupe +Jakeria +Jaycee +Juliana +Kaniya +Kate +Kayli +Kellie +Kiana +Kiera +Kiersten +Kourtney +Maegan +Meghan +Miriam +Natasha +Nya +Paris +Raegan +Ruby +Serenity +Shamya +Skyla +Tiana +Vanessa +Veronica +Zoie +Adrian +Aliya +Alondra +Anastasia +Aubree +Bria +Cassandra +Celeste +Christy +Chyna +Clarissa +Crimson +Demetria +Ebony +Esmeralda +Farrah +Harleigh +Heidi +Jailyn +Jala +Jamia +Jamiah +Jamiya +Janna +Jayda +Kailee +Kaylan +Kyndal +Libby +Logan +Madelynn +Madisyn +Makiyah +Pamela +Patricia +Piper +Susan +Talia +Tamya +Tamyra +Tatiana +Theresa +Tristan +Tristen +Tyra +Valeria +Abigayle +Aisha +Aleigha +Alena +Allyssa +Alyson +Annagrace +Arielle +Ashante +Baleigh +Bonnie +Brenna +Briley +Brookelyn +Campbell +Carli +Chandler +Cora +Daisy +Deborah +Gloria +Graci +Halie +Hollie +Ivey +Iyana +Jaida +Jakiyah +Jana +Jaylen +Jaylin +Jazmin +Jenifer +Jesse +Jimena +Joi +Kallie +Katy +Kaylyn +Kendal +Kensley +Khloe +Lana +Lashanti +Lela +Lilian +Lizbeth +Maleah +Malia +Natalia +Nevaeh +Nylah +Rachael +Regan +Ryan +Shelbie +Stacy +Susanna +Takeria +Tara +Teresa +Tykeria +Whitley +Adeline +Adrienne +Akira +Alecia +Ali +Alivia +Alliyah +Amani +Amiyah +Amyia +Ananda +Angelica +Anya +Ashunti +Aubrie +Audra +Barbara +Bayleigh +Baylie +Bentley +Cara +Carrington +Chaney +Christiana +Cindy +Colby +Courtlyn +Daisha +Denise +Donna +Emilia +Emilie +Emory +Hadley +Hailee +Jaci +Jaidyn +Jakia +Jakira +Jamaya +Janiah +Julianne +Kaci +Karlee +Karleigh +Kasey +Kaylei +Kaylen +Kennedi +Kenzie +Kerri +Kristian +Lakia +Lena +Liberty +Lisa +Lorena +Luz +Madalynn +Makiah +Makiya +Mallie +Marie +Marilyn +Maryann +Mckayla +Mikaela +Noelle +Nyah +Nyasia +Nyla +Octavia +Phoebe +Randi +Rosemary +Samya +Sasha +Savanah +Shakayla +Shaniah +Simone +Skye +Stella +Sydni +Takhia +Tamiyah +Tania +Tina +Treasure +Tyler +Yesenia +Addie +Alaysia +Alexius +Alisa +Alli +Alysia +Amara +Ambria +Amiah +Amyah +Anslee +Beverly +Blair +Blakely +Bridgette +Brooklynn +Bryana +Brylee +Cadence +Cecelia +Cecilia +Chastity +Christin +Ciera +Colleen +Constance +Dajah +Dallas +Dana +Darby +Dominique +Dylan +Elissa +Fatima +Halli +Harmony +Hayleigh +Holley +Isabela +Iyanna +Jacie +Jaelyn +Jaila +Jalisa +Jamesha +Janiyah +Jashanti +Jasmin +Jasmyn +Jasmyne +Jaylah +Jaylee +Jazmyn +Jodi +Josephine +Juanita +Kacey +Kalia +Kalli +Kameron +Kandice +Karina +Karla +Karlie +Karly +Kaya +Keara +Keeley +Keely +Kelis +Kelley +Kenley +Lainey +Lamya +Leanna +Leigh +Lexus +Lori +Maci +Maddison +Madilyn +Marisa +Mariyah +Marlee +Mckinley +Meadow +Miya +Naudia +Nayeli +Neely +Niya +Paula +Rayven +Reanna +Reese +Robyn +Ruth +Sanaa +Saniya +Santana +Saylor +Selina +Serena +Sharon +Stacey +Sydnie +Tabatha +Takiya +Tamera +Tameria +Taniyah +Taryn +Thalia +Timia +Torie +Tracy +Trista +Tytiana +Valencia +Zahria +Zakiyah +Zanya +Zion +Madison +Emma +Emily +Hannah +Anna +Sarah +Alexis +Olivia +Abigail +Elizabeth +Mary +Taylor +Morgan +Alyssa +Haley +Kayla +Brianna +Destiny +Lauren +Makayla +Savannah +Chloe +Ashley +Isabella +Kaitlyn +Katelyn +Victoria +Sydney +Caroline +Ella +Kaylee +Jasmine +Jada +Jessica +Katherine +Hailey +Samantha +Jordan +Natalie +Grace +Sara +Autumn +Rachel +Breanna +Bailey +Mackenzie +Trinity +Allison +Brooklyn +Shelby +Aaliyah +Angel +Zoe +Ashlyn +Gracie +Megan +Kylie +Lillian +Gabrielle +Faith +Laura +Amber +Abby +Katie +Courtney +Jayla +Ava +Alexandria +Brooke +Kennedy +Madeline +Summer +Maggie +Lily +Rebecca +Kelsey +Madelyn +Margaret +Riley +Avery +Raven +Claire +Maria +Erin +Julia +Mckenzie +Sophia +Audrey +Amelia +Jennifer +Kathryn +Mallory +Alexandra +Jenna +Reagan +Sierra +Catherine +Asia +Peyton +Kendall +Alexia +Amanda +Molly +Haleigh +Lindsey +Mia +Addison +Leah +Makenzie +Ashanti +Caitlin +Erica +Kayleigh +Lydia +Cassidy +Kimberly +Kylee +Macy +Caitlyn +Cheyenne +Kristen +Tiffany +Andrea +Angela +Aubrey +Bethany +Allie +Amaya +Hayley +Heather +Mariah +Alana +Virginia +Hayden +Ariel +Brittany +Christina +Danielle +Diamond +India +Kyla +Mya +Savanna +Skylar +Adrianna +Ariana +Callie +Hanna +Haylee +Mikayla +Payton +Hope +Jade +Marissa +Alexa +Ashton +Evelyn +Jordyn +Layla +Nicole +Jakayla +Kaleigh +Leslie +Rylee +Ana +Arianna +Harley +Katelynn +Kelly +Kirsten +Briana +Janiya +Jillian +Melissa +Michelle +Paige +Shania +Zoey +Angelina +Kiara +Madalyn +Meagan +Selena +Baylee +Carly +Chelsea +Hallie +Jamie +Jamya +Stephanie +Alicia +Allyson +Ansley +Carmen +Charity +Heaven +Laila +Lilly +Rebekah +Alexus +Ashlynn +Cierra +Claudia +Daisy +Jaden +Kamryn +Kara +Lacey +Lucy +Maya +Miracle +Patricia +Tori +Abbie +Ann +Anne +Eleanor +Emilee +Gabriella +Laci +Sophie +Amari +Amya +Carley +Deanna +Ellie +Kaitlin +Kaley +Karlie +Kaylin +Melanie +Tamia +Adriana +Alayna +Bailee +Cameron +Gabriela +Holly +Isabel +Isabelle +Jayden +Julianna +Kinsley +Macie +Sadie +Abbey +Ayanna +Celeste +Daniela +Dixie +Jadyn +Jamaya +Jazmine +Jessie +Jocelyn +Josie +Katlyn +Kristin +Mattie +Meredith +Nevaeh +Paris +Raegan +Ryleigh +Sabrina +Tessa +Alaina +April +Brittney +Camille +Candace +Joanna +Julie +Kailey +Kierra +Kyleigh +Lauryn +Lexi +Madilyn +Miranda +Mollie +Nadia +Naomi +Serenity +Shayla +Sidney +Skyler +Amiyah +Camryn +Destinee +Diana +Erika +Jamiya +Kyra +Laney +Madisyn +Michaela +Nyla +Tatum +Veronica +Zaria +Abbigail +Alison +Amy +Aniyah +Annie +Charlotte +Delaney +Ebony +Juliana +Kailee +Kassidy +Kaylie +Kennedi +Krista +Logan +Tamya +Alivia +Anastasia +Bianca +Dakota +Genesis +Georgia +Halle +Ivy +Josephine +Kaliyah +Lindsay +Martha +Savanah +Serena +Shakira +Shannon +Taniya +Aniya +Ashlee +Casey +Cassandra +Cassie +Chandler +Deja +Desiree +Halie +Jacqueline +Kaitlynn +Kiera +Maci +Marlee +Meghan +Miriam +Nancy +Nia +Piper +Reese +Sandra +Shaniya +Tabitha +Talia +Taniyah +Tia +Tiara +Toni +Vivian +Whitney +Alissa +Alyson +Ashleigh +Bella +Bryanna +Carlee +Carlie +Chasity +Chelsey +Christian +Clara +Crystal +Elisabeth +Ellen +Haven +Jaliyah +Jameria +Jamia +Jamiah +Jolie +Kelsie +Kenya +Laken +Lexie +Madeleine +Mckenna +Micah +Monica +Tamara +Vanessa +Yasmine +Addie +Angelica +Cailyn +Carleigh +Cynthia +Dallas +Dana +Destiney +Destini +Frances +Harmony +Heidi +Jaida +Jaiden +Jalyn +Jamiyah +Jamyia +Kali +Karen +Kasey +Kate +Katelin +Kaya +Kensley +Kiley +Kristina +Krystal +Lacy +Liberty +Lillie +Macey +Makenna +Melody +Rachael +Rose +Ruby +Sanaa +Skye +Treasure +Valerie +Abigayle +Alice +Aliyah +Ally +Allyssa +Amaria +Amiya +Aubree +Bayleigh +Brandi +Breana +Britney +Cadence +Cora +Crimson +Daisha +Esmeralda +Gracelyn +Harlie +Imani +Jana +Janie +Jasmin +Jaylen +Jaylin +Joy +Karley +Kayley +Kayli +Kyndall +Lila +Linda +Lizbeth +Maegan +Malia +Maliyah +Markayla +Nora +Presley +Regan +Robyn +Rosa +Ruth +Savana +Sofia +Stacy +Stella +Taliyah +Tyra +Wendy +Zykeria +Abigale +Aidan +Alanna +Aleah +Aubrie +Austin +Beyonce +Brenda +Brenna +Bridget +Cara +Carla +Carolyn +Christin +Emileigh +Emory +Endia +Essence +Grayson +Haylie +Hollie +Janiyah +Kacey +Kailyn +Kaylyn +Kendra +Kiersten +Kourtney +Lana +Madyson +Makiyah +Maleah +Marion +Mckayla +Mckinley +Nivea +Octavia +Rylie +Sasha +Shamya +Tania +Trista +Zoie +Abagail +Ada +Ainsley +Aisha +Alisha +Annabelle +Antonia +Auburn +Ayana +Baleigh +Breonna +Briley +Brooklynn +Candice +Carrington +Carson +Cheyanne +Christy +Ciera +Devin +Eliza +Emmalee +Eva +Felicity +Gracey +Hailee +Hailie +Hali +Helen +Jane +Janya +Jayda +Jazmin +Justice +Kacie +Kadence +Kalyn +Kamya +Karlee +Kathleen +Katrina +Kelsi +Kendal +Kenzie +Kiana +Kinley +Kinsey +Kira +Kiya +Lakayla +Loren +Maddison +Marley +Mercedes +Miya +Nikki +Nina +Noelle +Pamela +Parker +Phoebe +Princess +Rayven +Robin +Samara +Samaria +Sarai +Skyla +Susan +Sydnee +Tatyana +Teresa +Tiana +Tianna +Valencia +Winter +Yasmin +Adeline +Adrienne +Alecia +Ali +Alisa +Amara +Amarie +Anaya +Barbara +Beverly +Brandy +Breauna +Brookelyn +Cady +Cayla +Cecilia +Christa +Cindy +Dasia +Demya +Elaina +Elena +Elisa +Emilie +Eryn +Gloria +Guadalupe +Hadley +Halee +Harleigh +Harper +Hattie +Hayleigh +Hillary +Iyana +Jabria +Jacy +Jaelyn +Jailah +Janet +Juana +Kaci +Kaelyn +Kaila +Kaniya +Karah +Karis +Karla +Kelsea +Kenley +Krislyn +Kyndal +Lacie +Lamya +Laurel +Leanna +Libby +Liliana +Macee +Makiya +Monique +Nariah +Natalee +Ragan +Rhiannon +Rosemary +Saniya +Shakayla +Shamiya +Shaylee +Shelbie +Sheridan +Shyanne +Sylvia +Takayla +Tamiah +Tamiya +Tamyra +Taryn +Tatianna +Tiffani +Tionna +Triniti +Tristen +Tykeria +Whitley +Zharia +Aiyana +Aja +Alaysia +Alena +Alina +Alma +Alondra +Alora +Alysa +Alyse +Amani +Amia +Anaiya +Aniah +Annabella +Annamarie +Araceli +Bobbie +Brianne +Brilee +Brynn +Camilla +Charli +Cherish +Ciara +Daniella +Deasia +Donna +Dulce +Eden +Elise +Elisha +Emalee +Fatima +Felicia +Gwendolyn +Haileigh +Heavenly +Ireland +Jacey +Jaci +Jadah +Jaila +Jakeria +Jakiyah +Jala +Jalia +Jamirah +Janae +Janiah +Janna +Jaycee +Jaycie +Jaylah +Jaylyn +Jazlyn +Jazmyne +Jermya +Julianne +Kalee +Kamari +Karina +Karissa +Karleigh +Kassie +Katlin +Kaylan +Kaylen +Kaylynn +Kenleigh +Kerri +Keziah +Khyla +Kya +Kylia +Lani +Laniya +Lashanti +Leila +Lexus +Lilian +Lyric +Madisen +Makala +Makhia +Maleigha +Mariana +Maribel +Marie +Marisol +Maritza +Mercy +Mikaela +Millie +Myah +Mykia +Natalia +Natasha +Nautica +Nya +Nykeria +Penelope +Precious +Raelyn +Rayna +Ryan +Shakia +Shakiya +Shameria +Shanya +Shekinah +Sky +Stacey +Stormie +Sydni +Tamiyah +Taniah +Tara +Tatiana +Taylar +Tayler +Tess +Trenyce +Tristan +Willow +Zakiya +Emma +Madison +Emily +Hannah +Anna +Alexis +Sarah +Olivia +Abigail +Elizabeth +Mary +Taylor +Alyssa +Lauren +Haley +Ella +Chloe +Destiny +Makayla +Isabella +Morgan +Savannah +Victoria +Sydney +Trinity +Brianna +Kayla +Kaitlyn +Ashley +Jasmine +Jessica +Caroline +Kaylee +Samantha +Katelyn +Natalie +Grace +Gracie +Rachel +Angel +Jordan +Jada +Katherine +Zoe +Mackenzie +Shelby +Lillian +Lily +Breanna +Autumn +Hailey +Abby +Bailey +Sara +Ava +Brooklyn +Katie +Sophia +Allison +Amber +Jayla +Mckenzie +Julia +Reagan +Ashlyn +Gabrielle +Kathryn +Madelyn +Rebecca +Catherine +Jennifer +Kennedy +Paris +Aaliyah +Avery +Lydia +Summer +Kylie +Kelsey +Madeline +Audrey +Faith +Megan +Jenna +Mallory +Alexandria +Riley +Courtney +Brooke +Leah +Erin +Amelia +Maria +Molly +Addison +Margaret +Kendall +Kimberly +Laura +Allie +Maggie +Peyton +Alexandra +Marissa +Mia +Mya +Alana +Raven +Skylar +Asia +Lindsey +Macy +Christina +Kylee +Makenzie +Payton +Sadie +Sierra +Andrea +Jamya +Kyla +Tamia +Aniya +Ariana +Chelsea +Janiya +Arianna +Cadence +Cameron +Jakayla +Mariah +Alexia +Bethany +Caitlyn +Kailey +Briana +Brittany +Haleigh +Lilly +Amanda +Ana +Aubrey +Carly +Claire +Danielle +Diamond +Erica +Jade +Jordyn +Michelle +Alicia +Amaya +Hope +Aliyah +Caitlin +Harley +Haylee +Isabelle +Kirsten +Kristen +Rebekah +Cheyenne +Jamie +Jayden +Josie +Layla +Lucy +Abbie +Amy +Cassidy +Dakota +Hanna +Jaden +Kennedi +Madalyn +Paige +Sophie +Angela +Ariel +India +Kayleigh +Serenity +Adrianna +Callie +Kamryn +Laila +Rylee +Virginia +Amari +Charity +Jillian +Lexie +Nicole +Piper +Savanna +Stephanie +Alexus +Ansley +Carlie +Jadyn +Leslie +Lillie +Nevaeh +Zoey +Amiya +Camryn +Gabriella +Kyra +Melissa +Tiffany +Amya +Bella +Ciara +Destinee +Heather +Kara +Laney +Macie +Michaela +Miranda +Nadia +Sandra +Alison +Allyson +Aniyah +Brooklynn +Camille +Emilee +Evelyn +Hayden +Julianna +Katlyn +Kelly +Maya +Meagan +Meghan +Selena +Alaina +Angelina +Ashanti +Baylee +Daisy +Desiree +Elise +Hayley +Isabel +Kaitlin +Karen +Kaydence +Lacey +Laci +Melanie +Meredith +Miracle +Naomi +Nia +Shaniya +Tori +Vivian +Alexa +Anne +Brenda +Campbell +Carmen +Halle +Jayda +Julie +Kaleigh +Kate +Kinsley +Kyleigh +Lexi +Sidney +Adriana +Alayna +Aleah +Alivia +Anastasia +Annabelle +Carlee +Crystal +Ellie +Genesis +Jaiden +Jamiya +Kiara +Kristin +Shania +Tamya +Veronica +Whitney +April +Ashlynn +Ashton +Carley +Haven +Heaven +Jaliyah +Joanna +Kadence +Kaley +Katelynn +Madisyn +Makenna +Marley +Sabrina +Abbey +Alisha +Ashlee +Brittney +Charlotte +Chasity +Clara +Claudia +Georgia +Jacqueline +Janya +Jasmin +Kathleen +Kaylen +Kelsie +Lisa +Makiya +Mikayla +Parker +Saniya +Zaria +Zykeria +Alanna +Ally +Dixie +Erika +Jessie +Karlee +Kayley +Kendal +Kendra +Kierra +Kiersten +Mattie +Montana +Raegan +Reese +Skyler +Sofia +Tamara +Tara +Tatum +Tessa +Tia +Valerie +Wendy +Ann +Ashleigh +Azaria +Britney +Casey +Cynthia +Diana +Holly +Jacey +Jaylin +Jazmin +Kailyn +Kaylie +Kaylin +Kiana +Kiera +Kiley +Kira +Lila +Patricia +Presley +Ryleigh +Zoie +Alissa +Amiyah +Brandy +Carolina +Carolyn +Cassie +Cecilia +Christian +Daniela +Dasia +Deanna +Delaney +Eleanor +Emory +Esmeralda +Eva +Halie +Jailyn +Jalyn +Jocelyn +Kallie +Karley +Kasey +Liberty +Logan +Macey +Phoebe +Regan +Rosa +Shannon +Taniyah +Tiana +Tiara +Ainsley +Alice +Amaria +Angelica +Brandi +Destini +Elaina +Ellen +Fantasia +Hallie +Harper +Heidi +Ivy +Jaelyn +Jamia +Jamiyah +Janae +Kailee +Kaliyah +Kamya +Karleigh +Karlie +Kayden +Kenley +Lauryn +Lindsay +Marlee +Mckenna +Melody +Mercedes +Mollie +Monica +Natasha +Nyla +Princess +Samya +Shakira +Shaniyah +Shayla +Skye +Stella +Taniya +Vanessa +Akira +Annie +Ashtyn +Aspen +Bianca +Briley +Candace +Candice +Cindy +Deja +Eliana +Eliza +Gabriela +Gloria +Helen +Imani +Iyana +Jaila +Jameria +Jane +Joy +Juliana +Justice +Kaelyn +Kaniya +Kenya +Lizbeth +Loren +Madyson +Micah +Nancy +Shamya +Tatyana +Toni +Tyra +Abbigail +Addyson +Alaysia +Alex +Alyson +Aubree +Auburn +Aurora +Ayana +Ayanna +Bonnie +Cayla +Caylee +Christine +Darby +Emilie +Hailee +Harmony +Jakira +Jamaya +Jamiah +Janet +Jania +Janiah +Jaylen +Jaylyn +Jazmine +Jenny +Karina +Kassidy +Keira +Kinley +Krista +Laken +London +Lyric +Mariana +Marisa +Martha +Maura +Mckinley +Miriam +Nina +Precious +Ryan +Sanaa +Scarlett +Taliyah +Tamiyah +Tanya +Tayler +Tristan +Yesenia +Abigayle +Ali +Blakely +Brantley +Breana +Cara +Carrie +Celeste +Charlee +Charlie +Christa +Cierra +Cora +Dallas +Dana +Denise +Gabriel +Gracelyn +Gracyn +Grayson +Hayleigh +Haylie +Jaida +Jakiyah +Janie +Janiyah +Jewel +Josephine +Journey +Kacey +Kaitlynn +Kameron +Katlynn +Kourtney +Lacie +Leigha +Liliana +Linda +Maci +Maddison +Madeleine +Madilyn +Makenzi +Maleah +Maliyah +Mari +Markia +Moriah +Nykeria +Rachael +Ruby +Shaylee +Shyanne +Simone +Sydnie +Sylvia +Tabitha +Tamaya +Tatiana +Tykeria +Yasmine +Addie +Adrienne +Adyson +Alena +Alli +Alysa +Amberly +Ambria +Anijah +Annalee +Arielle +Aryanna +August +Aysia +Bailee +Baylie +Bentley +Brenna +Brylee +Carleigh +Carson +Cassandra +Clarissa +Cloey +Deasia +Demetria +Eden +Elena +Emalee +Emmalee +Eve +Frances +Gillian +Giselle +Helena +Isabell +Jaidyn +Jakia +Jaylynn +Juana +Kaila +Kali +Kalyn +Kameryn +Karla +Karli +Karsyn +Katelin +Kaylan +Kaylyn +Kelsea +Kensley +Kenzie +Keyanna +Kimora +Kristina +Lainey +Lakendra +Lanie +Lela +Lena +Lora +Madalynn +Makala +Marion +Marisol +Mykala +Nikki +Nora +Nya +Nyah +Rayleigh +Robin +Rylie +Saige +Samara +Samaria +Sarai +Serena +Shanna +Shayna +Skyla +Takayla +Tamaria +Tania +Taryn +Teresa +Tina +Treasure +Tyler +Tytianna +Valeria +Willow +Yasmin +Zariyah +Zion +Abagail +Adeline +Aidan +Aja +Alasia +Alaya +Alondra +Amia +Annika +Arionna +Ariyana +Asya +Aubrie +Beverly +Breunna +Bridgett +Brookelyn +Cailey +Caleigh +Cameran +Camila +Carys +Cecelia +Christy +Constance +Cristina +Daijah +Dakotah +Delana +Demi +Desirae +Destiney +Dianna +Dominique +Dylan +Emerson +Eryn +Fatima +Felicity +Fernanda +Fiona +Gianna +Gracey +Gretchen +Guadalupe +Gwendolyn +Hadley +Hailie +Heavenly +Ingrid +Iris +Ivey +Ivie +Iyanna +Jacie +Jakya +Jalynn +Janna +Jasmyn +Jaycee +Jaycie +Jayde +Jerica +Jolie +Judy +Julianne +Juliet +Julissa +Kacie +Kalea +Kaleah +Karly +Katy +Keona +Keyona +Khalia +Khloe +Khushi +Kristian +Krystal +Kya +Kyndal +Lana +Lani +Laniyah +Larissa +Laurel +Lea +Leanna +Leila +Leilani +Lexis +Lola +Lorelei +Lorena +Lori +Luz +Maegan +Maia +Makaila +Makya +Malaysia +Mallorie +Marie +Millie +Myla +Natalee +Natalia +Niyah +Norah +Nyasia +Paisley +Priscilla +Promise +Ragan +Raina +Rayna +Rosemary +Santana +Savanah +Saylor +Shalyn +Shanya +Sharon +Shawna +Somer +Sydnee +Taleah +Tamira +Tamiya +Tianna +Tionna +Trista +Tykira +Tytiana +Violet +Yazmin +Zariah +Madison +Emma +Emily +Anna +Hannah +Abigail +Sarah +Mary +Chloe +Olivia +Elizabeth +Alexis +Taylor +Isabella +Alyssa +Savannah +Ella +Lauren +Destiny +Makayla +Ava +Morgan +Haley +Brianna +Jasmine +Kaitlyn +Sydney +Jada +Ashley +Samantha +Katelyn +Natalie +Trinity +Victoria +Gracie +Katherine +Lillian +Jessica +Sara +Kaylee +Kayla +Jordan +Allison +Gabrielle +Caroline +Grace +Hailey +Brooklyn +Lily +Ashlyn +Katie +Maria +Kennedy +Zoe +Audrey +Madelyn +Shelby +Sophia +Bailey +Kylie +Autumn +Aaliyah +Alexandria +Mackenzie +Avery +Breanna +Leah +Madeline +Riley +Angel +Rachel +Reagan +Addison +Amelia +Kathryn +Julia +Jennifer +Margaret +Molly +Catherine +Faith +Kimberly +Mia +Maggie +Mckenzie +Erin +Lydia +Jayla +Amber +Mallory +Rebecca +Danielle +Laura +Mariah +Jenna +Lindsey +Mya +Nevaeh +Summer +Claire +Courtney +Makenzie +Abby +Aniyah +Zoey +Alexandra +Megan +Sadie +Allie +Asia +Kelsey +Kendall +Sierra +Paris +Peyton +Aniya +Erica +Andrea +Brooke +Ciara +Janiya +Lilly +Skylar +Callie +Alana +Bella +Christina +Gabriella +Amy +Kayleigh +Kiara +Kylee +Layla +Marissa +Michelle +Serenity +Aubrey +Jakayla +Jayden +Amaya +Ansley +Evelyn +Lucy +Ashlynn +Caitlyn +Dakota +Jamya +Payton +Aliyah +Amiyah +Ariana +Brittany +Cadence +Cheyenne +Sophie +Alexa +Anne +Arianna +Ariel +Carly +Diamond +Ellie +Kyra +Madalyn +Rylee +Adrianna +Amanda +India +Kailey +Kara +Maya +Miranda +Naomi +Alexia +Ana +Diana +Hope +Isabelle +Jade +Jaden +Janiyah +Kyla +Macy +Virginia +Zoie +Angelina +Annabelle +Brooklynn +Kadence +Kristen +Laney +Mikayla +Paige +Raven +Savanna +Alicia +Cameron +Harley +Miracle +Rebekah +Allyson +Angela +Georgia +Heaven +Jadyn +Kaleigh +Katelynn +Kennedi +Kirsten +Laci +Baylee +Chelsea +Josie +Kate +Laila +Tamia +Adriana +Alivia +Ann +Carmen +Charlotte +Eva +Hanna +Harmony +Jocelyn +Jordyn +Kayden +Macie +Makenna +Skyler +Stephanie +Amari +Briana +Caitlin +Carley +Hallie +Hayden +Heather +Jamie +Jayda +Kaitlin +Kaylin +Leslie +Piper +Shania +Ashlee +Cassidy +Crystal +Destinee +Gabriela +Harper +Holly +Karen +Karlee +Kira +Lacey +Lexi +Ruby +Ryleigh +Stella +Taniyah +Vanessa +Whitney +Abbie +Ashanti +Brittney +Desiree +Emilee +Erika +Ivy +Katlyn +Kaydence +Marlee +Michaela +Natalee +Saniya +Taniya +Ashleigh +Camille +Camryn +Clara +Eleanor +Haleigh +Jazmine +Katrina +Lauryn +Martha +Melanie +Meredith +Nicole +Presley +Abbigail +Alison +Alissa +Alondra +Amya +April +Brenda +Campbell +Hayley +Heidi +Jaliyah +Jillian +Juliana +Kathleen +Kiley +Kinsley +Kyleigh +Madilyn +Mckenna +Nadia +Shaniya +Tori +Alexus +Ashton +Aurora +Ayanna +Bailee +Briley +Chasity +Daisy +Genesis +Haylee +Helen +Jacqueline +Jamiyah +Jasmin +Jaycee +Jaylin +Julie +Kaley +Kaylie +Kierra +Kyndall +Lillie +Madisyn +Malaysia +Mariana +Marley +Mattie +Melissa +Mollie +Nancy +Nyla +Patricia +Tamya +Tiffany +Zaria +Alaina +Alayna +Ally +Bethany +Carlie +Chelsey +Delaney +Haven +Iyana +Julianna +Kamryn +Kamya +Kassidy +Kaylen +Kelly +Kendra +Krista +Kristin +Lana +Lexie +Maci +Madyson +Meagan +Monica +Reese +Savanah +Scarlett +Shayla +Sofia +Tiara +Vivian +Yasmine +Brandi +Claudia +Elena +Emmalee +Jacey +Jaiden +Jamiya +Jazmin +Kaelyn +Kali +Kiera +Logan +Marisa +Mckinley +Sabrina +Sidney +Tania +Valeria +Annie +Britney +Camilla +Casey +Charity +Elise +Esmeralda +Gianna +Hadley +Halle +Isabel +Jameria +Kailee +Karli +Kinley +Lola +Mckayla +Meghan +Mikalah +Miriam +Regan +Shamya +Shannon +Tatum +Tessa +Anaya +Angelica +Aubree +Ayana +Cecilia +Deanna +Deasia +Dixie +Eden +Elaina +Eliana +Eliza +Frances +Guadalupe +Harlee +Imani +Jaelyn +Jamia +Josephine +Kailyn +Kaniya +Karis +Karleigh +Kenzie +Khloe +Kourtney +Lacie +Lacy +Liberty +Makyla +Melody +Natalia +Sage +Savana +Selena +Shakira +Abbey +Ainsley +Alena +Alice +Amberly +Anastasia +Arabella +Aryanna +Ayden +Blair +Bria +Cara +Carlee +Deborah +Ebony +Elisabeth +Emilie +Fantasia +Gloria +Gracelyn +Jailyn +Jakeria +Jalyn +Jamaya +Jazlyn +Joy +Juana +Karissa +Karmen +Kaylyn +Kelsie +Kendal +Kensley +Kenya +Kiersten +Kimora +Laurel +Lila +Maddison +Madelynn +Makiya +Makiyah +Nia +Nora +Precious +Rileigh +Ryan +Samiya +Taliyah +Tara +Tykeria +Tyler +Valerie +Adison +Alli +Alyson +Azariah +Bianca +Breana +Bryanna +Caleigh +Carson +Catelyn +Cynthia +Daniela +Denise +Estrella +Hayleigh +Haylie +Jacie +Jamiah +Jane +Jessie +Joanna +Jorja +Joslyn +Kaci +Kaitlynn +Kaliyah +Karley +Kasey +Kayli +Kristina +Lizbeth +Lyric +Macey +Maleah +Malia +Mercedes +Miya +Patience +Perla +Princess +Rosa +Rose +Ruth +Saniyah +Sasha +Skye +Takiyah +Teresa +Veronica +Yasmin +Zariah +Ada +Alaysia +Armani +Blakely +Brandy +Brylee +Brynn +Carla +Carrie +Cassandra +Ciera +Cierra +Crimson +Dasia +Demetria +Emerson +Esther +Felicia +Felicity +Giselle +Ivey +Jaida +Janie +Janya +Jaylee +Jazmyn +Jenny +Journey +Justice +Kalyn +Karla +Karlie +Karly +Kayley +Keira +Kiana +Leila +Liliana +Linda +Maritza +Micah +Norah +Raegan +Ryann +Rylie +Sally +Samara +Sariah +Sariyah +Shayna +Sydni +Takayla +Talia +Tierra +Tyra +Zykeria +Abigayle +Addie +Aileen +Aleah +Alejandra +Alex +Amaria +Amiya +Ashlin +Auburn +Barbara +Bayleigh +Bonnie +Brenna +Breona +Bridget +Bryleigh +Cailyn +Cali +Candace +Carleigh +Carolyn +Carsyn +Caylee +Charlie +Christine +Christy +Daijah +Deja +Destini +Dominique +Donna +Dulce +Ellen +Emalee +Emery +Gracyn +Grayson +Hailee +Halie +Harlie +Ireland +Iris +Izabella +Jaedyn +Jaidyn +Jaila +Jailynn +Jamyiah +Jena +Joi +Judith +Kaileigh +Kalie +Kameron +Karina +Karson +Karsyn +Kaylei +Kenia +Lainey +Laken +Lanie +Larissa +Lena +Lilian +Lindsay +Madilynn +Maliyah +Markayla +Mikaela +Natasha +Nayeli +Nyasia +Nykeria +Rayna +Rayven +Samya +Sandra +Sarai +Scout +Shamiya +Shaylee +Skyla +Susan +Sydnee +Tabitha +Tamara +Tamera +Tameria +Tanya +Tatyana +Tiana +Tracy +Tristan +Winter +Ximena +Addyson +Adyson +Akira +Alexius +Aliya +Alona +Alyssia +Amara +America +Annabel +Annagrace +Annalee +Aspen +Aubrie +Audrie +Ayla +Azaria +Baleigh +Baylie +Belinda +Berkley +Braelyn +Brantley +Bridgette +Brielle +Brookelyn +Brookelynn +Brylie +Camila +Carli +Catarina +Caydence +Charis +Chesney +Chrislyn +Christa +Cindy +Cloe +Cora +Dalia +Damia +Emory +Eryn +Essence +Gracelynn +Hadleigh +Hollie +Itzel +Jakyra +Jaleah +Jalisa +Jalynn +Jana +Janay +Jania +Janiah +Janyla +Johana +Johanna +Jolie +Julianne +Kaliah +Kamaya +Kamiya +Kamiyah +Katy +Kaylan +Kayle +Kaylynn +Keely +Kelsi +Kenley +Kierstin +Kortney +Kristian +Krystal +Kya +Kyndal +Laina +Leanna +Leilani +Lona +Lorena +Lucille +Lyndsey +Madalynn +Maddie +Maegan +Makaila +Makhia +Makya +Mallorie +Marian +Marina +Mariyah +Millie +Montana +Mylah +Nina +Raylee +Rosemary +Ruthie +Saylor +Shana +Shanna +Shanyia +Shelbi +Shelly +Shirley +Sienna +Susanna +Takira +Takiya +Tamaya +Tamiyah +Taryn +Tatiana +Terra +Tiarra +Tionna +Treasure +Tristen +Tykerria +Valencia +Viktoria +Violet +Wendy +Yadira +Yazmin +Zakiyah +Zion +Madison +Emma +Anna +Emily +Hannah +Sarah +Elizabeth +Olivia +Abigail +Isabella +Ava +Chloe +Alexis +Taylor +Savannah +Ella +Alyssa +Addison +Lauren +Mary +Makayla +Morgan +Kaylee +Destiny +Haley +Ashley +Kaitlyn +Trinity +Brianna +Brooklyn +Caroline +Katelyn +Lily +Kayla +Jasmine +Natalie +Mackenzie +Gracie +Samantha +Jayla +Lillian +Katherine +Jada +Victoria +Sydney +Gabrielle +Avery +Shelby +Aubrey +Jessica +Sophia +Zoe +Katie +Grace +Autumn +Madelyn +Sara +Kylie +Aaliyah +Maria +Reagan +Allison +Hailey +Jordan +Mia +Amelia +Mckenzie +Amber +Allie +Angel +Breanna +Kennedy +Layla +Rachel +Bailey +Madeline +Kathryn +Molly +Alexandria +Nevaeh +Riley +Julia +Margaret +Faith +Maggie +Abby +Kimberly +Lydia +Jennifer +Peyton +Rebecca +Brooke +Makenzie +Mallory +Laura +Ashlyn +Leah +Summer +Audrey +Megan +Kelsey +Arianna +Claire +Evelyn +Kendall +Mariah +Zoey +Jakayla +Alexa +Alexandra +Catherine +Mya +Erin +Skylar +Aniya +Courtney +Alexia +Christina +Kylee +Lilly +Lindsey +Marissa +Paris +Sophie +Stephanie +Serenity +Callie +Gabriella +Jenna +Sadie +Dakota +Isabel +Payton +Alana +Ana +Aniyah +Asia +Cheyenne +Jamya +Josie +Kyleigh +Hope +Janiya +Kayleigh +Leslie +Rylee +Ansley +Chelsea +Ciara +Jordyn +Katelynn +Lucy +Adriana +Aliyah +Andrea +Ellie +Kadence +Macy +Rebekah +Adrianna +Amaya +Hayden +Kimora +Kirsten +Reese +Whitney +Camryn +Diamond +Heather +Jayda +Madilyn +Nadia +Piper +Presley +Sierra +Vivian +Angela +Briana +Carly +Charlotte +Harley +Harper +Haylee +Natalee +Savanna +Abbie +Ariana +Ariel +Brooklynn +Cadence +Jadyn +Kara +Lexie +Mikayla +Ashlynn +Caitlyn +Erica +Jayden +Kaylie +Kennedi +Naomi +Raven +Alaina +Angelina +Baylee +Carmen +Haleigh +Heaven +India +London +Madalyn +Meredith +Ryleigh +Alicia +Annabelle +Anne +Aubree +Caitlin +Cameron +Clara +Danielle +Eva +Janiyah +Jocelyn +Kamryn +Keira +Lacey +Lillie +Maya +Miranda +Raegan +Bella +Brittany +Desiree +Hanna +Jamie +Jillian +Kaleigh +Kyla +Kyra +Lana +Lauryn +Michelle +Akeelah +Amiya +Diana +Georgia +Hayley +Helen +Jacqueline +Julie +Kate +Kinsley +Miracle +Nora +Ruby +Sabrina +Shaniya +Sidney +Stella +Taniya +Virginia +Alissa +Alivia +Allyson +Amiyah +Amy +Anastasia +Ayla +Campbell +Charity +Erika +Genesis +Jade +Jasmin +Kaelyn +Kelly +Makenna +Melissa +Alayna +Carley +Eleanor +Emilee +Gabriela +Isabelle +Jaliyah +Jamaya +Kaitlin +Karina +Kaylin +Lila +Michaela +Nyla +Paige +Tiffany +Zoie +Alexus +Ashton +Ayanna +Bethany +Carlie +Cassidy +Daniela +Elise +Ellen +Heidi +Jacey +Jameria +Kiara +Laila +Macie +Madyson +Princess +Saniya +Sofia +Tyra +Valeria +Vanessa +Amya +Claudia +Dulce +Frances +Jamiya +Jessie +Juliana +Julianna +Kaniya +Kinley +Mckenna +Nicole +Scarlett +Skyler +Tabitha +Tamya +Valerie +Zaria +Zion +Abbigail +Addyson +Ally +Amari +Ashlee +Aubrie +Brandi +Briley +Carolina +Emmalee +Harmony +Kailey +Kali +Karla +Lindsay +Lola +Mariana +Martha +Miriam +Rihanna +Selena +Shakira +Shania +Taliyah +Tamia +Tatum +Tori +Amanda +April +Ashanti +Brittney +Camille +Chasity +Christian +Cynthia +Daisy +Deasia +Delaney +Esmeralda +Hallie +Haven +Jaden +Jaida +Jazmine +Joanna +Juana +Kaliyah +Karlee +Katrina +Kenya +Kierra +Laci +Maci +Makiyah +Maliyah +Monica +Paisley +Precious +Tessa +Tiara +Zykeria +Addisyn +Alison +Alyson +Annabella +Ashleigh +Bridget +Carolyn +Cecilia +Danica +Estrella +Gracelyn +Halle +Holly +Jamia +Jaycee +Jazmin +Kailyn +Kaley +Karen +Kira +Laney +Madisyn +Malaysia +Mollie +Shaniyah +Skyla +Susan +Tara +Ada +Addie +Ann +Annie +Bianca +Cassandra +Caylee +Dana +Destinee +Destini +Eden +Jaiden +Kaitlynn +Karli +Kayden +Kaydence +Kaylen +Kaylyn +Kiera +Kiersten +Kiley +Kristen +Macey +Maddison +Nancy +Natalia +Patience +Samiya +Shayla +Tia +Wendy +Yasmin +Abbey +Adeline +Angelica +Ayana +Charlee +Chelsey +Cora +Darby +Elena +Emerson +Giselle +Haylie +Ivy +Jaci +Jailyn +Jalyn +Karley +Kasey +Katlyn +Lanie +Lexi +Liberty +Madeleine +Marlee +Marleigh +Mckinley +Meagan +Melanie +Melody +Montana +Regan +Samara +Sandra +Sherlyn +Tamiya +Tatyana +Tiana +Tierra +Ainsley +Aleigha +Alice +Armani +Brenda +Britney +Bryanna +Cara +Christine +Cierra +Demetria +Elaina +Fatima +Gloria +Izabella +Jacie +Jakiya +Jamyia +Jana +Jolie +Kailee +Karlie +Kassidy +Kelis +Kelsie +Kendra +Kenley +Kiana +Lacie +Liliana +Logan +Madelynn +Maleah +Marley +Miya +Patricia +Reanna +Sanaa +Tatiana +Toni +Zaniya +Zariah +Adrienne +Angie +Ansleigh +Bailee +Braelyn +Brenna +Cailyn +Carlee +Cassie +Cindy +Cristal +Crystal +Daisha +Destiney +Elisabeth +Hadley +Harlie +Hayleigh +Isabela +Janyia +Jazlyn +Kallie +Kamari +Kameryn +Kensley +Keyonna +Kristina +Laken +Mattie +Parker +Rhianna +Rileigh +Rosa +Ruth +Samaria +Savana +Skye +Sydnee +Tamara +Taniyah +Veronica +Adison +Alisha +Alondra +Anabelle +Anahi +Annika +Anya +Ariyana +Audra +Bayleigh +Bentley +Breana +Brookelynn +Candace +Charley +Christiana +Cristina +Dallas +Deanna +Desirae +Dixie +Donna +Evie +Gracyn +Grayson +Hailee +Jaelyn +Jakeria +Jamiyah +Janaya +Jane +Janiah +Janie +Janya +Jewel +Jorja +Kalyn +Kalynn +Karleigh +Karma +Kathleen +Kenzie +Lacy +Lailah +Leanna +Lexus +Lizbeth +Makaila +Makhia +Makiah +Makiya +Markayla +Marlie +Mayra +Micah +Nia +Pamela +Phoebe +Rachael +Rowan +Ryan +Rylie +Scarlet +Shaylee +Shyla +Talia +Tayla +Tristan +Tykeria +Tytianna +Yazmin +Abigayle +Adalyn +Aimee +Alaysia +Aleah +Allyssa +Amberly +Anaya +Annalee +Annamarie +Arielle +Ariyanna +Athena +Baleigh +Barbara +Belinda +Brantley +Braylee +Brittani +Brookelyn +Brylee +Caleigh +Camdyn +Candice +Carla +Carson +Carter +Celia +Cherish +Chloey +Daniella +Deja +Delilah +Denise +Emery +Emory +Essence +Evelin +Gabriel +Halie +Holland +Isis +Jalisa +Jalynn +Jamiah +Jania +Jaylen +Jaylin +Jazmyn +Jesse +Jimena +Joslyn +Justice +Kamaria +Kamiyah +Kamora +Karis +Keasia +Keely +Keyanna +Kinsey +Lainey +Laurel +Leigha +Leilani +Lela +Lena +Lilian +Londyn +Lora +Lorelai +Lucille +Madilynn +Mae +Maliah +Mallorie +Marie +Marina +Marisa +Marisol +Maritza +Mckayla +Meghan +Melina +Nataly +Penelope +Preslee +Raleigh +Raylee +Samya +Saniyah +Sharon +Sherry +Stacy +Tyler +Tytiana +Yadira +Yasmine +Yesenia +Zakiya +Abigale +Abril +Adelaide +Adrian +Adyson +Akira +Alanah +Alanna +Alena +Alessandra +Alisa +Aliya +Allee +Alli +Alora +Amani +Ambria +Ameria +Amira +Amyia +Andi +Ania +Anika +Annelise +Areli +Aria +Azaria +Baylie +Betsy +Blakely +Bonnie +Brayden +Breann +Breonna +Brinlee +Bryleigh +Brylie +Caelyn +Carsyn +Catarina +Caylin +Christen +Cloey +Cortney +Daijah +Debra +Della +Dianna +Ellis +Elsie +Emilie +Emmie +Farrah +Finley +Genevieve +Gianna +Gracelynn +Halee +Imani +Itzel +Iyana +Jacelyn +Jaidyn +Jakiyah +Jaleah +Janice +Janna +Jaylee +Jaylyn +Jazmyne +Jenifer +Jenny +Jerica +Johana +Johanna +Jordis +Josephine +Joy +Joycelyn +Kaden +Kadyn +Kamiya +Karmen +Katy +Kaydee +Kelli +Kendal +Kenslee +Kinslee +Kristian +Kristin +Kyndal +Kyndall +Larissa +Laurie +Laylah +Lesley +Lesly +Libby +Lilli +Linda +Lisa +Lucero +Luz +Macayla +Madalynn +Maia +Makyla +Mara +Maranda +Mari +Marianna +Marion +Marlene +Marli +Miyah +Moriah +Mykayla +Nikki +Nina +Norah +Nya +Phoenix +Presleigh +Racheal +Raeleigh +Reina +Renee +Rose +Rosemary +Ryann +Shamaya +Shanna +Shannon +Sheila +Sherlin +Sienna +Stormy +Sydnie +Tatianna +Tayler +Teresa +Tyanna +Violet +Willow +Yahaira +Yaretzi +Yoselin +Zadie +Emma +Madison +Emily +Hannah +Elizabeth +Ava +Addison +Anna +Olivia +Abigail +Chloe +Ella +Sarah +Isabella +Mary +Alyssa +Alexis +Savannah +Taylor +Makayla +Destiny +Natalie +Sophia +Lily +Brianna +Lauren +Brooklyn +Lillian +Morgan +Caroline +Victoria +Jada +Trinity +Haley +Kaitlyn +Katelyn +Sydney +Bailey +Jasmine +Kaylee +Gracie +Kayla +Samantha +Aaliyah +Ashley +Gabrielle +Katherine +Audrey +Allison +Sara +Madeline +Mia +Zoe +Aubrey +Mackenzie +Kennedy +Maria +Nevaeh +Breanna +Madelyn +Hailey +Amelia +Jessica +Rachel +Riley +Jordan +Sadie +Shelby +Grace +Kylie +Mckenzie +Autumn +Jayla +Avery +Katie +Lydia +Alexandria +Layla +Maggie +Molly +Claire +Abby +Ashlyn +Evelyn +Zoey +Rebecca +Sophie +Julia +Laura +Leah +Margaret +Summer +Amber +Catherine +Allie +Alana +Angel +Brooke +Kathryn +Mallory +Cheyenne +Jennifer +Lilly +Faith +Jenna +Makenzie +Reagan +Peyton +Erin +Hayden +Jordyn +Kayleigh +Megan +Aniyah +Gabriella +Jakayla +Cadence +Kimberly +Mariah +Serenity +Alexandra +Arianna +Brooklynn +Jade +Kendall +Payton +Ariana +Callie +Jayda +Kelsey +Ariel +Janiya +Kylee +Macy +Mya +Alexa +Bella +Angelina +Ansley +Laila +Leslie +Caitlyn +Dakota +Jayden +Josie +Kimora +Kyleigh +Adriana +Amiyah +Ana +Asia +Kyra +Marley +Aliyah +Andrea +Aniya +Lindsey +Skylar +Briana +Rylee +Carmen +Courtney +Danielle +Kaitlin +Lillie +Mattie +Alivia +Charlotte +Jamya +Kyla +Madyson +Marissa +Melanie +Addyson +Erica +Eva +Isabelle +Kennedi +Lucy +Michelle +Miracle +Stephanie +Adrianna +Chelsea +Christina +Georgia +Janiyah +Kadence +Ryleigh +Alaina +Amari +Amy +Aubree +Elena +Hope +Jaden +Jocelyn +Kinsley +Tessa +Ann +Baylee +Cassidy +Isabel +Kamryn +Lola +Maya +Paris +Presley +Reese +Ruby +Vanessa +Alexia +Amanda +Annabelle +Charity +Ellie +Harmony +Haylee +Jaliyah +Jamie +Joanna +Madilyn +Raegan +Savanna +Zion +Ashlynn +Ciara +Haleigh +Harper +Haven +Kate +Lacey +Madalyn +Raven +Rebekah +Alicia +Alissa +Camille +Diana +India +Lila +Meredith +Sierra +Taliyah +Alison +Allyson +Diamond +Eden +Hayley +Katelynn +Kayden +London +Piper +Shaniya +Cameron +Carley +Daisy +Heaven +Karen +Kaylie +Kendra +Kira +Laney +Miley +Paige +Sabrina +Sofia +Amya +Angela +Bethany +Crystal +Harley +Jaiden +Kaleigh +Kaley +Keira +Kristen +Mikayla +Nadia +Naomi +Natalee +Nicole +Tatum +Valeria +Virginia +Abbie +Annie +Cara +Carly +Erika +Jamaya +Julie +Kaylin +Kiara +Makenna +Rihanna +Scarlett +Tamia +Tori +Vivian +Amaya +Aubrie +Ayanna +Bailee +Briley +Daniela +Emerson +Giselle +Jaida +Janya +Jillian +Jordin +Kirsten +Lexi +Liliana +Madisyn +Melissa +Melody +Rachael +Saniya +Taniya +Alondra +Anne +Brylee +Campbell +Carlie +Emilee +Jadyn +Jaidyn +Jazmin +Juliana +Mckenna +Rosa +Selena +Tyra +Alayna +Ashlee +Brittany +Cheyanne +Clara +Destinee +Dixie +Emmalee +Halle +Haylie +Jacey +Jamia +Jazmine +Kaelyn +Kailyn +Kallie +Kara +Kathleen +Kiersten +Kiley +Lexie +Macie +Mckinley +Michaela +Patricia +Zariah +Akeelah +Aleah +Alexus +Aurora +Blakely +Caitlin +Camila +Camryn +Carlee +Deasia +Destini +Esmeralda +Gabriela +Gianna +Guadalupe +Heidi +Jacqueline +Joselyn +Kailey +Karley +Kassidy +Kaydence +Kenley +Kenya +Kenzie +Lanie +Libby +Miranda +Montana +Nora +Paisley +Stella +Tania +Taniyah +Whitney +Zaria +Adeline +Adyson +Ainsley +Alice +Ashanti +Ashleigh +Carleigh +Carolyn +Cynthia +Elisabeth +Hadley +Hanna +Ivy +Jamiya +Jasmin +Jaycee +Jazmyn +Journey +Julianna +Karla +Karlie +Kaylyn +Kelly +Kensley +Kiera +Lana +Lizbeth +Logan +Lyric +Makiyah +Mariana +Monica +Natalia +Princess +Raylee +Rylie +Shayla +Skyler +Valerie +Zoie +Abbigail +Akira +Alanna +Alina +Ally +Ayana +Ayla +Brenda +Brittney +Bryanna +Cali +Carson +Cassandra +Cassie +Charlee +Dallas +Deja +Eleanor +Elise +Gracelyn +Halie +Hallie +Hayleigh +Holly +Jaelyn +Jalyn +Juana +Kaliyah +Karma +Kenadie +Kinley +Kyndall +Macey +Maci +Makaila +Marianna +Meagan +Nancy +Shania +Sienna +Tamara +Tiffany +Yasmin +Zaniyah +Abbygail +Addisyn +Alaysia +Alisha +Amiya +Angelica +Annabel +Cecilia +Christian +Dana +Eliana +Gloria +Heather +Imani +Jane +Jaycie +Jazlyn +Kaitlynn +Karina +Karlee +Kelis +Kelsie +Kierra +Lauryn +Maddison +Madeleine +Marisol +Mariyah +Marlee +Miriam +Mollie +Phoebe +Rowan +Samara +Zykeria +Adalyn +Braelyn +Brenna +Brookelyn +Carissa +Carrie +Cayden +Danica +Deanna +Denise +Desiree +Dulce +Emory +Frances +Grayson +Isabela +Jaci +Jaeda +Jakira +Jakiyah +Jameria +Jamiyah +Janiah +Jewel +Joselin +Julissa +Kali +Kamari +Kamiya +Karleigh +Kaylen +Kaylynn +Kennedie +Kori +Lilian +Linda +Lorelei +Mercedes +Mylee +Nyla +Shakira +Sidney +Tamya +Triniti +Veronica +Ali +Alli +Anabelle +Anastasia +Azaria +Bianca +Brandi +Breana +Breonna +Britney +Candace +Chandler +Chasity +Christa +Elaina +Ellen +Emely +Evelin +Genesis +Izabella +Jaelynn +Jamiah +Jorja +Kailee +Kalynn +Krista +Laci +Laken +Leila +Lindsay +Lisa +Lyla +Makaylah +Makiya +Makyla +Moriah +Nyasia +Patience +Perla +Reanna +Rhianna +Ryan +Saylor +Silvia +Tara +Tatiana +Tatyana +Teagan +Tianna +Yasmine +Zaniya +Abbey +Abigale +Addie +Alejandra +America +Anahi +Antonia +Ashton +Bryleigh +Caleigh +Carla +Carrington +Caylee +Celeste +Charlie +Cierra +Claudia +Cora +Delaney +Delilah +Eliza +Ellison +Genevieve +Hailee +Hazel +Helen +Iyana +Jacie +Jalia +Jazmyne +Jenny +Jolie +Joslyn +Karmen +Kathrine +Katlyn +Kendal +Kenlee +Khloe +Kimber +Krystal +Lacy +Lara +Laurel +Londyn +Lucia +Magdalena +Maleah +Malia +Marina +Meghan +Miya +Nayeli +Nia +Pamela +Paola +Phoenix +Precious +Raleigh +Regan +Rhiannon +Rileigh +Rosemary +Sariyah +Shaniyah +Shannon +Shyanne +Simone +Sydnee +Tabitha +Takiyah +Tayler +Tiana +Tiara +Tierra +Toni +Violet +Zariyah +Abigayle +Adelynn +Aiyanna +Alanah +Alayah +Aleigha +Allyssa +Alyssia +Amani +Amiah +Annalee +Annelise +Anya +Anyia +Aria +Averie +Ayden +Azariah +Azul +Baleigh +Bayleigh +Baylie +Blair +Brandy +Bria +Brookelynn +Carol +Casey +Chelsey +Christiana +Christine +Christy +Cloey +Constance +Crimson +Dania +Daphne +Darby +Dasia +Elle +Estrella +Evie +Gracelynn +Haiden +Harmoni +Helena +Hillary +Itzel +Jaila +Jaina +Jakeria +Jakiya +Jalynn +Jania +Janie +Jaqueline +Jaylah +Jaylynn +Jessie +Johanna +Joy +Julianne +Justice +Kairi +Kalli +Kamaria +Kamiyah +Kamora +Katelin +Kathy +Katrina +Kaylan +Kayley +Kelsi +Kinlee +Kyndal +Landry +Liberty +Lilliana +Loren +Lorena +Madalynn +Madilynn +Maegan +Mallorie +Marely +Marilyn +Micah +Myra +Paula +Raina +Rose +Ruth +Sally +Samiya +Saniyah +Sarabeth +Selah +Serena +Shakayla +Stacey +Susan +Tamiya +Tanya +Tia +Tyler +Wendy +Willow +Yadira +Yuridia +Zamya +Zyon +Adrienne +Aiyana +Aja +Amaria +Annabeth +Annalise +Anniston +April +Arionna +Ariyah +Ariyanna +Armani +Ashia +Avril +Beatrice +Bennett +Bridget +Brinlee +Brinley +Bryana +Cailyn +Calli +Carolina +Carsyn +Cayla +Charley +Charli +Cherish +Cheyann +Chyna +Cordelia +Corinne +Cristina +Daniah +Daniella +Dayana +Dayanara +Destiney +Dionna +Ebony +Elana +Emery +Emiley +Emmy +Erianna +Esther +Eve +Fallon +Finley +Flor +Harlee +Harleigh +Hollie +Iris +Isis +Jakya +Janae +Janaya +Jaylee +Jaylen +Jaylin +Jaylyn +Jenifer +Josephine +Josselyn +Joyce +Kaci +Kaden +Kalia +Kalyn +Kamdyn +Kamya +Kaniyah +Karissa +Kasey +Keely +Kelcie +Kenadi +Kera +Kierstyn +Kirstyn +Kyli +Lailah +Lainey +Laniya +Leanna +Leilani +Lesly +Lupita +Luz +Lyndsey +Madisen +Maiya +Makenzi +Makhia +Makiah +Maliya +Malorie +Marie +Mattison +Mckayla +Melisa +Merritt +Myla +Noelia +Nya +Parker +Penelope +Priscilla +Rayleigh +River +Robyn +Samaria +Samaya +Sanaa +Scarlet +Shanya +Shaylee +Sherlyn +Skye +Stacy +Takayla +Tamera +Taryn +Tera +Terri +Toccara +Tristan +Valentina +Viviana +Willa +Wynter +Ximena +Yara +Yazmin +Yocelin +Yoselin +Zakiyah +Zanya +Zyan +Emma +Madison +Addison +Ava +Emily +Anna +Hannah +Chloe +Isabella +Elizabeth +Abigail +Olivia +Ella +Sarah +Mary +Alexis +Alyssa +Makayla +Taylor +Lily +Savannah +Kaylee +Morgan +Brooklyn +Natalie +Lillian +Destiny +Caroline +Bailey +Sophia +Lauren +Aubrey +Peyton +Avery +Layla +Jada +Katherine +Trinity +Brianna +Aaliyah +Gracie +Haley +Madelyn +Kaitlyn +Allison +Katelyn +Kayla +Maria +Sydney +Zoey +Mckenzie +Kylie +Zoe +Ashley +Sara +Nevaeh +Gabrielle +Riley +Autumn +Kennedy +Jayla +Mackenzie +Victoria +Breanna +Hailey +Hayden +Reagan +Samantha +Jasmine +Payton +Audrey +Kimberly +Leah +Makenzie +Sadie +Sophie +Allie +Katie +Madeline +Shelby +Grace +Jordan +Lydia +Molly +Jessica +Marley +Claire +Amelia +Mariah +Julia +Maggie +Rachel +London +Mia +Angel +Jordyn +Ashlyn +Catherine +Aniyah +Carmen +Arianna +Faith +Kayleigh +Kimora +Erin +Jayden +Kendall +Lilly +Charlotte +Evelyn +Khloe +Margaret +Laila +Laura +Rylee +Gabriella +Janiya +Kathryn +Kylee +Miley +Brooke +Callie +Kinsley +Megan +Bella +Cheyenne +Mya +Jaliyah +Kelsey +Amber +Andrea +Aniya +Lila +Lucy +Abby +Ansley +Harper +Alivia +Allyson +Mallory +Rebecca +Summer +Ana +Ariel +Jennifer +Alexa +Ashlynn +Genesis +Madalyn +Rihanna +Addyson +Brooklynn +Courtney +Isabelle +Jakayla +Piper +Alexandra +Asia +Janiyah +Serenity +Skylar +Alana +Alexandria +Alexia +Aliyah +Amari +Baylee +Jenna +Kennedi +Kyleigh +Miracle +Annabelle +Ariana +Carly +Heaven +Jade +Jaden +Kara +Kayden +Aubree +Camille +Danielle +Eva +Haylee +Jamie +Josie +Kamryn +Macy +Mikayla +Virginia +Alaina +Briana +Chelsea +Harley +Jocelyn +Kaydence +Kiley +Madilyn +Marlee +Melissa +Amiyah +Cadence +Diamond +Eleanor +Jamiya +Kaliyah +Leslie +Lillie +Reese +Tamia +Kaleigh +Kensley +Kinley +Ruby +Ryleigh +Stella +Zion +Anne +Bethany +Georgia +Kate +Kirsten +Kyla +Kyra +Marissa +Paisley +Amaya +Caitlyn +Camryn +Isabel +Jadyn +Jayda +Kaylie +Lacey +Maya +Scarlett +Sierra +Amy +Aubrie +Caylee +Christina +Ellie +Harmony +Jamya +Kendra +Paige +Bailee +Carley +Dakota +Justice +Presley +Raven +Saniya +Shaniya +Valeria +Vanessa +Adriana +Angelina +Briley +Cassidy +Erica +Kadence +Keira +Lexi +Lindsey +Lyla +Mattie +Miranda +Naomi +Natalia +Sofia +Zoie +Alice +Ally +Brylee +Carlie +Emilee +Heidi +Jaida +Jillian +Kailey +Kaley +Karen +Madisyn +Michelle +Mollie +Raegan +Savanna +Vivian +Alayna +Alissa +Amanda +Ciara +Clara +Destinee +Dixie +Haleigh +Jacqueline +Kelly +Kiersten +Laney +Lola +Madyson +Nora +Rebekah +Stephanie +Abbie +Adrianna +Alicia +Diana +Eliza +Juana +Lauryn +Maliyah +Meredith +Nyla +Paris +Rylie +Sabrina +Saniyah +Shayla +Addisyn +Alondra +Annie +Brittany +Caitlin +Daisy +Gabriela +Holly +Izabella +Jamiyah +Josephine +Kaelyn +Makenna +Nancy +Zariah +Zykeria +Adyson +Amiya +Amya +Arabella +Brenda +Cameron +Cara +Emerson +Hope +Jasmin +Joy +Julianna +Julie +Kaitlynn +Kamari +Kaylen +Liliana +Macey +Malia +Monica +Mylee +Nadia +Natalee +April +Azaria +Bryleigh +Carlee +Cecilia +Claudia +Eden +Emery +Emory +Esmeralda +Imani +Jazmine +Jordin +Kailyn +Kaitlin +Karlee +Kassidy +Katelynn +Kaylin +Laci +Logan +Maci +Makiyah +Malaysia +Taniya +Abigayle +Adalyn +Alisha +Allisson +Angela +Braelyn +Casey +Crimson +Crystal +Deasia +Estrella +Gianna +Gracelyn +Hadley +Hallie +Hanna +Helen +India +Ivy +Jacey +Jamaya +Kamya +Karleigh +Kenya +Kiara +Kiera +Kristen +Kyndall +Leila +Londyn +Lyric +Macie +Mckenna +Mckinley +Ruth +Selena +Tessa +Tiffany +Tori +Zaria +Abbigail +Akira +Alison +Anaya +Ashlee +Ashleigh +Campbell +Carson +Cynthia +Danica +Destini +Dulce +Elisabeth +Halle +Heather +Jamiah +Karmen +Kira +Lindsay +Madeleine +Madelynn +Makiya +Maleah +Martha +Patricia +Ryan +Taliyah +Teagan +Violet +Whitney +Zariyah +Ann +Ashanti +Belinda +Carrie +Daniela +Dasia +Delilah +Destiney +Frances +Isabela +Jimena +Julianne +Kamora +Kristina +Lexie +Liberty +Marleigh +Melanie +Miriam +Mylie +Parker +Penelope +Rachael +Rose +Samiya +Selah +Shaniyah +Sidney +Sienna +Tatum +Valerie +Willa +Ainsley +Alaysia +Alexus +Amaria +Anastasia +Aria +Armani +Ayanna +Azariah +Bianca +Brandi +Brenna +Cailyn +Cali +Camila +Camilla +Carleigh +Catarina +Charity +Charleigh +Cheyanne +Evie +Giselle +Guadalupe +Harlee +Hayley +Ingrid +Isla +Jacie +Jaelyn +Jaiden +Jaidyn +Jakira +Jakiyah +Jaleah +Jameria +Jaylee +Jaylin +Jazlyn +Jazmin +Joselyn +Kelsi +Kenzie +Lana +Mareli +Marely +Markayla +Meghan +Montana +Natasha +Nicole +Norah +Rosa +Sariah +Sasha +Skye +Willow +Yasmin +Abbey +Adeline +Adrienne +Akeelah +Anabelle +Annabella +Annalee +Aurora +Bayleigh +Blakely +Breonna +Brookelyn +Carrington +Cassie +Caydence +Cherish +Christian +Christiana +Cora +Dana +Delaney +Desiree +Emmalee +Haven +Isabell +Janie +Janya +Jaycee +Jenny +Joanna +Johanna +Jolie +Kaidence +Kamaria +Kamiyah +Kaniya +Karina +Karla +Karma +Kayley +Kelsie +Lainey +Lanie +Lena +Libby +Lisa +Lizbeth +Maddie +Maddison +Mariana +Marisol +Melody +Michaela +Myla +Patience +Phoebe +Phoenix +Rhianna +Rosemary +Sandra +Sherlyn +Shyanne +Talia +Taniyah +Tatyana +Tia +Toni +Veronica +Wendy +Yadira +Yasmine +Yoselin +Abigale +Ada +Addie +Alanah +Alanna +Alex +Alisa +Alli +Alysa +Ameria +Anslee +Anya +Ashton +Brinley +Brittney +Brookelynn +Caleigh +Carissa +Carolina +Cecelia +Chandler +Chasity +Danna +Deanna +Elise +Elle +Emmaline +Erika +Eryn +Fernanda +Gracey +Hailee +Jacquelyn +Jakeria +Jalynn +Jamia +Janae +Jaylah +Jaylynn +Jessie +Juliette +Julissa +Kadyn +Kaila +Kallie +Kamiah +Kamiya +Karley +Kasey +Kaya +Kaylynn +Kendal +Krista +Kyndal +Laylah +Leigha +Lela +Lidia +Litzy +Lynn +Makaila +Makenzi +Mallorie +Moriah +Nola +Preslee +Princess +Shakira +Shamya +Skyler +Takiyah +Tiana +Tiara +Zaniyah +Abagail +Adalynn +Adelynn +Aidyn +Aleah +Alina +Aliya +Aliza +Alonna +Alyson +Anniston +Ashtyn +Aundrea +Ayana +Ayden +Cambree +Candace +Carolyn +Catelyn +Charlee +Charli +Charlie +Cindy +Daijah +Dorothy +Dylan +Ellen +Ellison +Emmie +Emmy +Essence +Esther +Harlie +Haylie +Heidy +Holland +Ireland +Jaelynn +Jailyn +Jakhia +Jakiya +Jalyn +Jaqueline +Jaslyn +Journey +Juliana +Kacie +Kailee +Kali +Kalyn +Kamille +Karli +Karlie +Karmyn +Karrington +Katlyn +Kaycee +Kemya +Kenley +Kennadi +Kiana +Kloe +Kristin +Lacie +Laken +Lakin +Laurel +Lilah +Lillyann +Linley +Lorelai +Luz +Maegan +Magdalena +Makinley +Maribel +Marilyn +Marina +Mariya +Mayra +Milagros +Millie +Natalya +Nia +Perla +Precious +Rileigh +Rosalinda +Rowan +Sanaa +Saylor +Shamiya +Sharon +Sheyla +Shiloh +Skyla +Tamara +Tara +Tatianna +Trista +Ximena +Xiomara +Yazmine +Zakiyah +Zaniya +Zariya +Zaylee +Zykerria +Abbygail +Addalyn +Adrian +Aimee +Ainslee +Aja +Alannah +Alauna +Alena +Alliyah +Amani +Amayah +Amirah +Angelica +Angeline +Angie +Arden +Aryana +Ashari +Asiah +Asya +August +Averi +Averie +Aylin +Bentley +Bridget +Brionna +Bryanna +Brynlee +Candice +Cassandra +Chanel +Christine +Cloe +Daniella +Deborah +Denise +Elena +Elisa +Elliana +Ellis +Elsie +Emalee +Emarie +Emely +Emmaleigh +Eulalia +Fatima +Finley +Gillian +Gracyn +Gwendolyn +Hana +Iris +Iyanna +Jaci +Jaila +Jakaria +Jaleria +Jaliah +Jamaria +Jamyah +Jane +Janyla +Jaycie +Jenifer +Jorja +Judith +Kaiya +Kaleah +Kaylyn +Keely +Kenadie +Keyla +Keziah +Kianna +Kierra +Kirstin +Kourtney +Kyara +Lailah +Lamya +Laniya +Larissa +Laurie +Lea +Leilani +Lia +Lilian +Linda +Lorelei +Macayla +Makala +Makaylah +Malaya +Marisa +Mariyah +Marli +Marlie +Martina +Mayrin +Meagan +Melisa +Miah +Micah +Murphy +Myasia +Myleigh +Nivea +Noelle +Payten +Peighton +Randi +Rayne +Rayven +River +Ryann +Rylan +Samya +Sariyah +Savanah +Scarlet +Shakayla +Shannon +Suzanna +Tamya +Tania +Tatiana +Teresa +Trinitee +Tristan +Tyler +Tytianna +Wynter +Zakiya +Zykeriah +Emma +Madison +Isabella +Ava +Anna +Addison +Chloe +Olivia +Abigail +Emily +Elizabeth +Ella +Sarah +Alexis +Kaylee +Mary +Alyssa +Taylor +Hannah +Savannah +Lily +Brooklyn +Caroline +Makayla +Natalie +Aubrey +Peyton +Trinity +Lillian +Layla +Sophia +Madelyn +Mia +Nevaeh +Destiny +Morgan +Jada +Lauren +Avery +Zoey +Allison +Katelyn +Bailey +Brianna +Gabrielle +Katherine +Sydney +Victoria +Riley +Khloe +Samantha +Ashley +Mckenzie +Mariah +Audrey +Hayden +Sophie +Aaliyah +Haley +Zoe +Autumn +Gracie +Kennedy +Leah +Reagan +Kylie +Bella +Kaitlyn +Mackenzie +Claire +Jasmine +Maria +Jayla +Kayla +Amelia +Evelyn +Payton +Allie +Makenzie +Sara +Hailey +Harper +Ashlyn +Grace +Kayleigh +Molly +Sadie +Madeline +Jordyn +Lilly +Serenity +Margaret +Gabriella +Rylee +Angel +Jordan +London +Jessica +Julia +Marley +Lydia +Faith +Kinsley +Kendall +Shelby +Rachel +Ansley +Arianna +Katie +Charlotte +Cheyenne +Jayda +Catherine +Jakayla +Laura +Lucy +Maggie +Addyson +Amber +Aniyah +Brooke +Jayden +Summer +Janiya +Kylee +Abby +Alexa +Ellie +Ryleigh +Janiyah +Kelsey +Piper +Rebecca +Brooklynn +Jade +Jennifer +Skylar +Ana +Laila +Alivia +Breanna +Erin +Eva +Madilyn +Mallory +Sofia +Chelsea +Kathryn +Lila +Londyn +Ariana +Josie +Kimberly +Marlee +Paisley +Ruby +Stella +Alexandria +Isabelle +Jenna +Kara +Megan +Miley +Annabelle +Ariel +Jaliyah +Kinley +Macy +Aliyah +Cadence +Callie +Jazmine +Jocelyn +Malia +Mikayla +Mya +Naomi +Presley +Alexandra +Allyson +Angelina +Ashlynn +Brylee +Camille +Caylee +Danielle +Haylee +Kyleigh +Madisyn +Reese +Alana +Baylee +Briana +Caitlyn +Eden +Georgia +Harmony +Valeria +Zariah +Zion +Asia +Isabel +Maliyah +Adriana +Andrea +Angela +Hadley +Heidi +Kassidy +Kennedi +Liliana +Lindsey +Marissa +Raegan +Adrianna +Aurora +Bailee +Carmen +Genesis +Keira +Kimora +Melanie +Rihanna +Sierra +Alaina +Alison +Cassidy +Christina +Eleanor +Kailyn +Katelynn +Kayden +Leslie +Lillie +Melissa +Scarlett +Selena +Virginia +Amiyah +Aniya +Anne +Aubree +Cameron +Harley +Heaven +Jaden +Jamya +Julianna +Kadence +Kailey +Kamryn +Lena +Lola +Maya +Michelle +Nicole +Nora +Paige +Paris +Saniya +Savanna +Stephanie +Adalyn +Clara +Haleigh +India +Jaiden +Kaelyn +Leila +Lyla +Nyla +Sabrina +Taraji +Tessa +Vivian +Adeline +Alayna +Amaya +Bethany +Braelyn +Briley +Cali +Carly +Charity +Ciara +Jillian +Kaliyah +Kamari +Kaydence +Lauryn +Madalyn +Maleah +Miracle +Rebekah +Tamia +Abbie +Amari +Daisy +Daniela +Guadalupe +Hayley +Izabella +Jacqueline +Jamie +Joanna +Kaleigh +Kyla +Lacey +Madyson +Makenna +Nadia +Taliyah +Vanessa +Willow +Alondra +Amy +Annabella +Annie +Caitlin +Campbell +Cecilia +Courtney +Cynthia +Diana +Emilee +Gabriela +Haven +Helen +Jamiya +Julie +Kamya +Kaylie +Kelly +Kendra +Kiley +Kyra +Macie +Maddison +Melody +Millie +Raven +Skyler +Amya +Ann +Aubrie +Carlee +Carley +Chasity +Diamond +Emerson +Hallie +Juliana +Kate +Kenley +Lexi +Marleigh +Mattie +Michaela +Miranda +Myla +Taniyah +Zaniyah +Abbigail +Adyson +Alice +Alissa +Ally +Ashanti +Azaria +Carleigh +Dakota +Frances +Hayleigh +Jaidyn +Jaylee +Joselyn +Kamora +Kaylen +Kelsie +Kristen +Lyric +Madilynn +Mckinley +Natalee +Saniyah +Sasha +Shaniyah +Talia +Tatiana +Teagan +Violet +Whitney +Alexia +Alicia +Amanda +Amiya +Armani +Camila +Deasia +Dixie +Emery +Emory +Gracelyn +Halle +Heather +Jaleah +Jaycee +Kaleah +Karley +Kensley +Kenya +Laney +Leighton +Libby +Lilah +Madalynn +Malaysia +Mariyah +Natalia +Rylie +Taniya +Tatum +Adelyn +Ali +Alyson +April +Arabella +Ashton +Braylee +Camryn +Cara +Charlee +Crimson +Destini +Elisabeth +Eliza +Gianna +Hanna +Kamiya +Karina +Kaylin +Keyonna +Kiara +Kiera +Kiersten +Kristina +Kyndal +Kyndall +Logan +Lorelei +Mariana +Martha +Mckenna +Meredith +Ruth +Shaniya +Valerie +Zaniya +Zaria +Addie +Addisyn +Alayah +Aleah +Aliya +Angelica +Anya +Azariah +Cailyn +Carlie +Dallas +Danica +Delaney +Delilah +Destinee +Destiney +Erika +Fernanda +Giselle +Hope +Isabela +Ivy +Jakiyah +Josephine +Journey +Joy +Juana +Karla +Karmen +Karsyn +Kathleen +Kourtney +Maci +Makiyah +Malaya +Mckayla +Mercy +Mollie +Nyasia +Paola +Penelope +Phoebe +Raylee +Rosemary +Rylan +Samara +Zoie +Adrienne +Ainsley +Ameria +Angie +Annalise +Bayleigh +Bentley +Bristol +Brookelyn +Calleigh +Carolina +Cassie +Desiree +Elaina +Elena +Finley +Gloria +Gracelynn +Hazel +Jaida +Jamiyah +Jana +Jane +Jaylynn +Jordin +Julianne +Justice +Karlie +Kayley +Khaliyah +Kira +Kirsten +Lailah +Lainey +Leanna +Lexie +Liberty +Lisa +Macey +Maddie +Madelynn +Markayla +Marlie +Rosa +Ryan +Selah +Sidney +Tamara +Adalynn +Akeelah +Alanna +Alaya +Aria +Arielle +Ayanna +Brenna +Camilla +Carolyn +Cherish +Cloe +Danika +Ellis +Emilia +Erica +Evangeline +Imani +Ivey +Jadyn +Jakeria +Jameria +Janiah +Jaylen +Kailee +Kaitlin +Kali +Kallie +Karleigh +Karly +Kaylan +Kaylyn +Keely +Kendal +Kori +Lana +Lucille +Makenzi +Mercedes +Miriam +Patience +Patricia +Rowan +Sandra +Shakira +Shyanne +Skye +Tamiya +Tamya +Tiffany +Tori +Wendy +Abagail +Adelynn +Akira +Alaysia +Aleigha +Alexus +Alina +Alisson +Amani +Annabell +Annalee +Anslee +Aryana +Baileigh +Brandi +Brielle +Brinley +Britney +Brittany +Casey +Catarina +Charleigh +Charlie +Claudia +Cora +Della +Eliana +Elle +Ellen +Elsie +Emalyn +Essence +Esther +Felicity +Harlee +Harleigh +Harmoni +Heidy +Holly +Isabell +Jacey +Jaelyn +Jalia +Janie +Jaslyn +Jasmin +Jaylyn +Jazmyne +Jessie +Jimena +Juliet +Kaden +Kaidyn +Karen +Karlee +Katy +Kaycee +Kaylynn +Keyla +Kynleigh +Lacie +Lacy +Landry +Lilliana +Lindsay +Lizbeth +Makaila +Makiya +Mallorie +Marianna +Meghan +Mylee +Nancy +Nataly +Nia +Preslee +Samiya +Sanaa +Sariah +Sariyah +Shayla +Shiloh +Sienna +Tabitha +Teresa +Tia +Tiara +Abbygail +Adelaide +Adleigh +Aiyana +Allyssa +Alysa +America +Anabelle +Anastasia +Annaleigh +Aspen +August +Averie +Baleigh +Beatrice +Belinda +Berkley +Blakely +Breonna +Bria +Brisa +Caylie +Charli +Christian +Christine +Crystal +Dana +Danna +Daphne +Dayana +Dulce +Elaine +Elana +Elise +Elliott +Emmalee +Eryn +Helena +Henley +Isla +Jaedyn +Jaelynn +Jamaya +Janet +Jazlyn +Jazmin +Jennie +Jessa +Jolie +Kadyn +Kalei +Kaley +Kalia +Karis +Karli +Kayle +Keeley +Kelsi +Kenadie +Kenleigh +Kierra +Kimber +Kloe +Kylah +Laci +Laniya +Lela +Lidia +Lilian +Lucia +Magdalena +Mariya +Maylee +Misty +Monica +Natasha +Norah +Paislee +Paityn +Parker +Phoenix +Rachael +Raelyn +Rian +Samiyah +Sarai +Saylor +Sullivan +Sylvia +Taliah +Taryn +Tiana +Veronica +Whitley +Yareli +Yasmin +Yesenia +Yoselin +Zamya +Zaniah +Zariyah +Abbey +Adison +Aida +Aisha +Alaysha +Allisson +Alycia +Alyse +Amiracle +Amirah +Anaya +Anderson +Annagrace +Annsley +Anyah +Anylah +Aracely +Areli +Arely +Ariyana +Ariyanna +Ashleigh +Auburn +Ayla +Barbara +Brittney +Brynn +Camden +Caydence +Caylin +Charis +Charley +Chelsey +Chelsie +Christiana +Cristina +Daniella +Demi +Devin +Ellianna +Emely +Emerald +Emilie +Emmaline +Emmy +Erionna +Genevieve +Gracyn +Irene +Iris +Iyanna +Jacquelyn +Jakiya +Jaleigh +Jalyn +Jamiah +Janae +Janelle +Janyia +Jaylin +Jemma +Jewel +Jocelynn +Josalyn +Joslyn +Kacie +Kaileigh +Kaitlynn +Kalyn +Kamia +Kamiyah +Kaniyah +Karma +Kasey +Kaydance +Kenzie +Kierstyn +Kinlee +Kristyn +Leigha +Leilani +Lesly +Linda +Lorelai +Madeleine +Makhia +Makinley +Maleigha +Marely +Margarita +Marisol +Meagan +Melisa +Mileigh +Miya +Molli +Naima +Noemi +Nylah +Peighton +Presleigh +Raleigh +Randi +Rilee +Rileigh +Robyn +Rose +Samaya +Sawyer +Serena +Shania +Shannon +Sharon +Shaylee +Shayna +Skyla +Starr +Tatyana +Viviana +Wynter +Ximena +Yamilet +Yolanda +Zykeria +Zykira +Emma +Isabella +Madison +Ava +Olivia +Chloe +Abigail +Elizabeth +Addison +Anna +Emily +Ella +Mary +Sophia +Alexis +Hannah +Brooklyn +Makayla +Lily +Sarah +Khloe +Alyssa +Kaylee +Avery +Layla +Lillian +Natalie +Nevaeh +Taylor +Savannah +Caroline +Peyton +Amelia +Bailey +Sophie +Zoey +Destiny +Aubrey +London +Morgan +Audrey +Bella +Jordyn +Lauren +Kennedy +Trinity +Madelyn +Allison +Brianna +Aaliyah +Harper +Mia +Reagan +Zoe +Leah +Mckenzie +Evelyn +Jada +Kaitlyn +Makenzie +Victoria +Allie +Katherine +Lydia +Mackenzie +Mariah +Gabrielle +Samantha +Sydney +Autumn +Riley +Charlotte +Hailey +Kylie +Serenity +Gracie +Kyleigh +Rylee +Kayla +Claire +Julia +Margaret +Katelyn +Lucy +Molly +Ashley +Jasmine +Angel +Haley +Jayla +Maria +Gabriella +Ashlyn +Brooklynn +Madeline +Sara +Arianna +Kinsley +Grace +Katie +Sadie +Stella +Payton +Rachel +Ellie +Kylee +Piper +Skylar +Alexa +Jordan +Addyson +Alivia +Hayden +Kayleigh +Ansley +Faith +Jennifer +Mallory +Jayden +Jessica +Brooke +Kelsey +Laila +Maci +Ariana +Ryleigh +Shelby +Eva +Hadley +Lilly +Maggie +Naomi +Annabelle +Eden +Paisley +Abby +Angelina +Cheyenne +Janiya +Kimberly +Marley +Reese +Alana +Aniyah +Ariel +Kathryn +Kaydence +Londyn +Callie +Camille +Catherine +Kensley +Kinley +Madilyn +Rebecca +Adalyn +Cadence +Clara +Kamryn +Lila +Melanie +Scarlett +Alexandra +Amber +Breanna +Danielle +Eleanor +Kennedi +Alexandria +Ana +Erin +Paris +Presley +Alayna +Amy +Aubree +Aubrie +Harmony +Josie +Katelynn +Megan +Addisyn +Alice +Aliyah +Genesis +Jakayla +Jaliyah +Macy +Summer +Baylee +Isabel +Izabella +Kara +Leslie +Lexi +Madalyn +Ruby +Sofia +Alison +Amari +Anne +Asia +Bailee +Camila +Daisy +Heidi +Juliana +Kadence +Laney +Madisyn +Maliyah +Mckinley +Miracle +Mya +Andrea +Ashlynn +Blakely +Carly +Isabelle +Julianna +Kendall +Laura +Lillie +Ann +Camryn +Christina +Dakota +Haleigh +Jenna +Kayden +Lola +Macie +Maddison +Mikayla +Natalee +Zoie +Alaina +Annabella +Briley +Charlee +Georgia +Haylee +Jillian +Kiley +Makenna +Mollie +Stephanie +Zariah +Zion +Adeline +Adrianna +Aniya +Courtney +Diamond +Emerson +Emery +Erica +Jade +Janiyah +Jayda +Kailey +Kendra +Kimora +Lyla +Marissa +Michelle +Miranda +Nora +Shaniya +Vanessa +Amiyah +Annie +Carlee +Eliza +Evie +Gabriela +Harley +Jocelyn +Kailyn +Madalynn +Madyson +Abbie +Adelyn +Alicia +Allyson +Braelyn +Brylee +Crimson +Heaven +Kaliyah +Keira +Kyla +Lauryn +Lindsey +Makiyah +Maya +Raven +Tatum +Tiana +Vivian +Adalynn +Caitlyn +Carmen +Delilah +Elena +Emmalyn +Hope +Imani +Jamya +Journey +Karsyn +Marlee +Mckenna +Melissa +Saniya +Shayla +Willow +Adriana +Ali +Arabella +Carlie +Chelsea +Cora +Helen +Holly +Isla +Jaida +Jaleah +Josephine +Kaleigh +Kallie +Kourtney +Leila +Liberty +Liliana +Phoebe +Raegan +Taraji +Alaysia +Aleigha +Alissa +Angela +Azaria +Bentley +Briana +Brynlee +Carley +Crystal +Danna +Destinee +Jasmin +Jazmin +Jazmine +Juana +Julie +Kaitlin +Karen +Kassidy +Kelsie +Kristen +Lainey +Lyric +Malaysia +Malia +Mariana +Melody +Miley +Nylah +Paige +Tenley +Violet +Zykeria +Alanna +Alexia +Ally +Annalee +Aria +Bethany +Braylee +Chasity +Claudia +Diana +Elise +Emilee +Gianna +Hallie +Heather +Jaden +Jadyn +Kaelyn +Kelly +Kenya +Kiersten +Laylah +Macey +Madilynn +Nadia +Nia +Norah +Rylie +Sasha +Tamia +Zariyah +Ada +Adyson +Amanda +Anabelle +Bristol +Carleigh +Charlie +Chyna +Ciara +Delaney +Elaina +Emory +Erika +Farrah +Finley +Gracelyn +Iris +Jamiya +Justice +Karley +Karmen +Kate +Kiera +Kirsten +Lexie +Maleah +Marilyn +Mattie +Miriam +Natalia +Nyla +Parker +Rebekah +Rihanna +Rose +Ruth +Valeria +Abbigail +Aiden +Ainsley +Amaya +Annalise +Aurora +Bryleigh +Caleigh +Cassidy +Charleigh +Charley +Daniela +Dixie +Frances +Gemma +Halle +Jacqueline +Jakiyah +Jane +Kaylie +Kaylynn +Kenley +Kenzie +Leigha +Lilah +Lucille +Mercedes +Meredith +Michaela +Raelyn +Raylee +Selena +Taliyah +Tiffany +Tinsley +Veronica +Zaniya +Akira +Alina +Alondra +Amani +Angelica +Ashanti +Audrina +Ayanna +Baleigh +Brittany +Caitlin +Cali +Cameron +Carla +Cynthia +Dana +Dulce +Esmeralda +Genevieve +Harleigh +Harmoni +Haven +Hazel +Helena +Ivy +Jaiden +Jaidyn +Jaycee +Joanna +Jordynn +Kamaria +Kamiyah +Karlee +Karlie +Kaylin +Kenlee +Kimber +Kyndal +Kyndall +Kyra +Lana +Mariyah +Micah +Patience +Priscilla +Raina +Rylan +Sariah +Savanna +Shiloh +Taniya +Virginia +Zaria +Addie +Aiyana +Aleah +Alexus +Amiya +Amya +Ansleigh +Ayana +Ayla +Baileigh +Brenda +Brielle +Carolyn +Carrington +Celia +Cindy +Daniella +Eliana +Elin +Evangeline +Fatima +Fiona +Gracyn +Hayley +Jacie +Jamaya +Jamiyah +Jaylen +Jaylynn +Jenny +Joslyn +Kaley +Kamiya +Karleigh +Karma +Katlyn +Khloie +Kinzlee +Kynlee +Lailah +Leighton +Lena +Lilliana +Marleigh +Nicole +Paislee +Phoenix +Rosalie +Sanaa +Saniyah +Shania +Sienna +Sierra +Tessa +Vivienne +Ximena +Aaniyah +Aja +Alejandra +Alena +Alyvia +Amiracle +Anahi +Anastasia +Armani +Auburn +Caitlynn +Campbell +Cara +Carsyn +Casey +Caydence +Caylee +Cecilia +Charity +Cherish +Christian +Clare +Deanna +Emmaleigh +Giselle +Guadalupe +Hadlee +Harmonie +Hayleigh +India +Jacey +Jaci +Jaelyn +Jamiah +Janiah +Jaylah +Jaylee +Jazlynn +Jolie +Jordin +Joselyn +Julianne +Juliet +Juliette +Kaileigh +Kairi +Kali +Karly +Kaycee +Kaylen +Kinslee +Kira +Kloe +Krimson +Kylah +Lacey +Laken +Libby +Linda +Makenzi +Makinley +Marianna +Mckayla +Mckinlee +Monica +Moriah +Myla +Nancy +Olive +Penelope +Rileigh +Samiya +Sarai +Sariyah +Wendy +Adrienne +Alonna +Alyson +Amaria +Amariah +Anabella +Annabel +Annaleigh +Anya +Arielle +Asiah +Bentlee +Brantley +Brenna +Bria +Brisa +Cailyn +Calleigh +Carson +Cassie +Cayden +Cheyanne +Christine +Clarissa +Darby +Demetria +Dylan +Elaine +Elle +Ellis +Emilia +Emilie +Emmaline +Emmie +Evelynn +Grayson +Hadassah +Hanna +Harlie +Jakeria +Jaliah +Jameria +Jamie +Jamiracle +Jamyah +Jana +Janasia +Jessa +Jorja +Joslynn +Kaidence +Kaleah +Kamari +Karli +Kathleen +Kelis +Kenleigh +Kiana +Kiara +Kori +Kristina +Laci +Layken +Lizbeth +Luna +Malayah +Maliah +Martha +Miah +Millie +Nakiya +Nariah +Nina +Olyvia +Paityn +Patricia +Preslie +Raelynn +Rayleigh +River +Rowan +Ryley +Samiyah +Savanah +Selah +Shaniyah +Sharon +Shaylee +Sherlyn +Skye +Skyler +Tabitha +Talia +Tamiyah +Tamya +Taniyah +Teagan +Whitney +Yareli +Zaniyah +Abbey +Abbi +Abigale +Abigayle +Abrielle +Adelaide +Alaya +Alecia +Alisha +Alisson +Allyssa +Amberly +America +Angelia +Angie +Anniston +Anslee +April +Ariyanna +Aryanna +Ashleigh +Ashton +Ashtyn +Aspen +Athena +August +Averi +Azariah +Bayleigh +Baylie +Belinda +Bianca +Bonnie +Brittney +Brookley +Caelyn +Camilla +Candice +Carolina +Carrie +Carter +Catalina +Christiana +Cloe +Collins +Constance +Corinne +Danica +Daphne +Deasia +Devyn +Elisa +Elisabeth +Elliott +Ellison +Elsie +Emmagrace +Essence +Esther +Estrella +Evelin +Gloria +Greenlee +Heidy +Hillary +Hollie +Itzel +Ivana +Jaila +Jaley +Jalyn +Jamyia +Janae +Jaycie +Jazlyn +Jenesis +Jesse +Jocelynn +Joy +Kaci +Kaila +Kalyn +Kamille +Karla +Karmyn +Kassandra +Kaya +Kaylyn +Kelsi +Kennadi +Keyla +Kinsey +Kinsleigh +Kiona +Kodi +Krymson +Krystal +Kya +Kynadi +Lilian +Lindsay +Logan +Londynn +Lorelei +Lynlee +Macee +Maddie +Madelynn +Mae +Magdalena +Magnolia +Makiya +Maliya +Marie +Marli +Meghan +Micaela +Mina +Nala +Nataly +Nayeli +Octavia +Paulina +Preslee +Presleigh +Princess +Priscila +Pyper +Raquel +Regina +Rhyan +Robyn +Rosa +Rosemary +Ryan +Sabrina +Samara +Sawyer +Serena +Skyla +Sloane +Stormie +Sunny +Susanna +Sydnee +Tamara +Tanya +Tatianna +Tegan +Terri +Tori +Triniti +Tykeria +Willa +Zakiya +Zakiyah +Ziyah +Emma +Ava +Madison +Olivia +Isabella +Addison +Elizabeth +Chloe +Abigail +Anna +Emily +Ella +Sophia +Aubrey +Mary +Brooklyn +Hannah +Kaylee +Khloe +Alyssa +Lily +Sarah +Zoey +Alexis +Avery +Harper +Amelia +Lillian +Savannah +Sophie +Taylor +Nevaeh +Caroline +Layla +Zoe +Aaliyah +Peyton +London +Trinity +Makayla +Aubree +Natalie +Morgan +Audrey +Bailey +Kennedy +Jordyn +Kylie +Makenzie +Allison +Serenity +Gracie +Mariah +Mckenzie +Riley +Lauren +Mia +Leah +Mackenzie +Bella +Claire +Samantha +Charlotte +Destiny +Kylee +Sara +Evelyn +Allie +Autumn +Kyleigh +Katelyn +Lydia +Ryleigh +Katherine +Molly +Maria +Kinsley +Madelyn +Sydney +Lucy +Victoria +Piper +Rylee +Brianna +Ellie +Grace +Londyn +Brooklynn +Kendall +Paisley +Ashley +Hailey +Reagan +Stella +Jada +Kaitlyn +Addyson +Gabriella +Kayleigh +Shelby +Gabrielle +Maci +Hayden +Jasmine +Maggie +Kinley +Eva +Julia +Faith +Jayla +Lilly +Madeline +Callie +Kelsey +Payton +Rachel +Angel +Ariana +Kimberly +Rebecca +Annabelle +Catherine +Haley +Kayla +Scarlett +Alexa +Alivia +Hadley +Laila +Baylee +Skylar +Aliyah +Eden +Jade +Margaret +Summer +Alaina +Eleanor +Marley +Adalyn +Adalynn +Alice +Amber +Aniyah +Ashlyn +Camille +Jaliyah +Jennifer +Jessica +Jordan +Willow +Arianna +Presley +Andrea +Jakayla +Jenna +Lyla +Ruby +Sadie +Amy +Aubrie +Kamryn +Madilyn +Melanie +Paris +Reese +Abby +Ansley +Brooke +Erin +Kathryn +Macie +Maliyah +Naomi +Sofia +Alana +Ashlynn +Blakely +Carly +Harmony +Kensley +Journey +Katie +Mya +Anne +Brylee +Clara +Emerson +Jaycee +Laura +Lila +Adriana +Alexandria +Danielle +Janiyah +Jayden +Kennedi +Violet +Alexandra +Genesis +Isabelle +Kate +Lola +Mallory +Miracle +Alicia +Ana +Cadence +Dakota +Izabella +Jayda +Kaydence +Lexie +Vivian +Abbigail +Briley +Camryn +Cora +Crimson +Erica +Jillian +Kyla +Madalyn +Addisyn +Amiyah +Breanna +Jocelyn +Kadence +Kenzie +Kiley +Lillie +Mckinley +Stephanie +Aleah +Ariel +Cassidy +Elise +Gracelyn +Harley +Hope +Isabel +Juliana +Kassidy +Kayden +Liliana +Madilynn +Marlee +Michelle +Raegan +Taliyah +Alayna +Allyson +Ann +Annabella +Carlee +Carmen +Caylee +Charleigh +Cheyenne +Diana +Emery +Haylee +Justice +Kendra +Laney +Mariyah +Parker +Selena +Vanessa +Adelyn +Aniya +Chelsea +Heaven +Josie +Kailyn +Kaleigh +Katelynn +Kaylin +Kelly +Lexi +Madisyn +Madyson +Mckenna +Megan +Melody +Nadia +Valeria +Zion +Ashton +Ayanna +Christina +Destinee +Elena +Eliza +Evie +Helen +Julie +Karlee +Kynlee +Macy +Marleigh +Mattie +Mikayla +Nyla +Rose +Tatum +Tiana +Addie +Alyson +Amiya +Arabella +Aurora +Bailee +Bayleigh +Braelyn +Caitlyn +Camila +Charlee +Daniela +Ellen +Emory +Haleigh +Hayleigh +Ivy +Janiya +Kailey +Keira +Kimora +Kourtney +Lacey +Lauryn +Lyric +Makenna +Marissa +Nora +Paige +Raven +Virginia +Adelaide +Aria +Delilah +Gabriela +Georgia +Gracelynn +Heidi +Karsyn +Madelynn +Maya +Mollie +Sabrina +Ada +Adrianna +Adyson +Ally +Bentley +Brielle +Brittany +Cali +Daisy +Farrah +Harmoni +Jamiyah +Josephine +Kaliyah +Kara +Lilah +Madalynn +Malaysia +Nicole +Raelyn +Tiffany +Zaniya +Zaniyah +Abbie +Alexia +Amari +Annie +Braylee +Camilla +Cecilia +Charlie +Claudia +Dulce +Emilee +Hallie +Imani +Isla +Jacey +Jaida +Jameria +Jamie +Jamya +Jaylee +Kaelyn +Kallie +Karley +Kenley +Kyndal +Kyra +Lorelei +Maddison +Malia +Melissa +Mila +Miley +Miranda +Nia +Rayleigh +Rylie +Savanna +Shaniya +Taraji +Tenley +Yaretzi +Zariyah +Alanna +Alison +Amaya +Ariyana +Azaria +Blair +Briana +Bristol +Brynlee +Carleigh +Charity +Chasity +Christian +Chyna +Darby +Ellison +Emmalee +Haven +India +Jacqueline +Jamiya +Jaylyn +Jessie +Joanna +Joselyn +Julianna +Juliet +Kailee +Kaleah +Kali +Kamiya +Kaylen +Kyndall +Lana +Leighton +Leslie +Lucia +Maleah +Meredith +Michaela +Natalia +Nylah +Raylee +Rebekah +Samiyah +Sarai +Teagan +Veronica +Zariah +Zoie +Addilyn +Adilyn +Angelina +Ansleigh +Averi +Brenda +Bryleigh +Ciara +Courtney +Delaney +Diamond +Dixie +Elliot +Eloise +Guadalupe +Hanna +Hayley +Jaelyn +Jazlyn +Jazmine +Jewel +Kamiyah +Karen +Karleigh +Karli +Karlie +Kathleen +Kaylynn +Krimson +Kynleigh +Lainey +Laken +Millie +Monica +Moriah +Natalee +Nina +Rileigh +Saniyah +Scarlet +Skyler +Taniya +Tessa +Tinsley +Adeline +Ainsley +Alaysia +Ali +Alli +Amanda +Amiracle +Angelica +Asia +Ayla +Azariah +Baileigh +Bethany +Bianca +Brandi +Campbell +Cassie +Charli +Cherish +Cheyanne +Danika +Deanna +Fernanda +Finley +Frances +Genevieve +Giselle +Henley +Holly +Iris +Jane +Jasmin +Jaylen +Joy +Kaylie +Kenna +Kenya +Kinslee +Kori +Lailah +Libby +Lilliana +Makenzi +Marilyn +Marlie +Micah +Paislee +Patricia +Penelope +Preslee +Rihanna +Rowan +Ruth +Samiya +Sasha +Selah +Shiloh +Sierra +Taylin +Vera +Yoselin +Zaria +Zykeria +Aiyana +Alex +Alexus +Alondra +Anaya +Angela +Annaleigh +Annalise +Anniston +Arielle +Ariyanna +Armani +Athena +Belinda +Bentlee +Breasia +Bria +Briella +Britney +Brittney +Brynn +Caitlynn +Cara +Carlie +Carolyn +Collins +Crystal +Cynthia +Danica +Dayana +Elaina +Elisabeth +Emaleigh +Emmalyn +Ensley +Gianna +Harleigh +Hillary +Jaci +Jakiyah +Jaleah +Jalynn +Jimena +Johanna +Jordynn +Joslyn +Journee +Kaitlin +Kaitlynn +Kamari +Kameron +Kamille +Kamya +Karla +Karmen +Kasey +Kaylei +Kelis +Kenslee +Kinsey +Kira +Landry +Laylah +Leila +Lena +Lizbeth +Logan +Luna +Macey +Madeleine +Makynzie +Mariana +Nahla +Perla +Phoenix +Quinn +Raelynn +Reece +Sheila +Sidney +Susan +Taleah +Talia +Tameria +Tamia +Tayler +Teresa +Tyler +Vivienne +Winter +Zakiyah +Abagail +Addalyn +Aiden +Aja +Alasia +Alaysha +Alisha +Aliya +Alyvia +Amani +Amariah +Amia +Amya +Anabelle +Anahi +Angie +Annabel +Annsley +Ashanti +Baylie +Berkley +Blakeley +Braelynn +Bridget +Brinlee +Brinley +Brookelyn +Brynley +Caitlin +Calleigh +Carley +Catarina +Caydence +Chandler +Charley +Clare +Demetria +Desiree +Destini +Edith +Elin +Elyse +Ember +Emelia +Emeri +Emilie +Estrella +Fatima +Felicity +Harlee +Harmonie +Hazel +Heather +Jadah +Jaelynn +Jaiden +Jaidyn +Janae +Jaylin +Jaylynn +Jazlynn +Jemma +Joi +Kaiden +Kaley +Kalia +Kamaria +Karis +Katlyn +Kendyl +Kensington +Kiara +Kimber +Kloe +Kya +Kynslee +Laurel +Leanna +Lilian +Lindsey +Londynn +Louise +Lucille +Lynlee +Makaylah +Makiyah +Mallie +Marie +Mariya +Martha +Melisa +Mercy +Myla +Mylee +Natasha +Neveah +Norah +Nyasia +Phoebe +Princess +Ryann +Samara +Sandra +Saylor +Tamiyah +Tia +Valentina +Valerie +Whitley +Ximena +Yasmin +Abbey +Adelynn +Adley +Aiyanna +Alaya +Alayah +Alina +Allyssa +Alonna +Anderson +Annaclaire +Anslee +Anyah +April +Ariah +Auburn +Averie +Brandy +Brenna +Brilee +Britton +Brylie +Brynleigh +Camdyn +Carolina +Carsyn +Casey +Chelsey +Chloey +Constance +Dahlia +Dana +Dani +Danna +Desirae +Eliana +Elliana +Elsie +Emmaclaire +Emmagrace +Emmy +Eryn +Gia +Gloria +Halle +Harlie +Holland +Hollie +Honor +Isabela +Itzel +Ivey +Iyanna +Jacelyn +Jacie +Jadyn +Jakyla +Jaleigh +Jamaria +Jamiah +Jamiracle +Janay +Janiah +Jariyah +Jaycie +Jayleigh +Jaziyah +Jazmin +Jocelynn +Johnna +Juana +Judith +Juliette +Kaci +Kaidence +Kaidyn +Kaniyah +Karmyn +Karson +Katharine +Kaylyn +Keeley +Kelsie +Kenadi +Kendal +Kenlee +Kenleigh +Kierra +Kirsten +Kylah +Kyrie +Lacy +Lia +Linley +Lorelai +Lynleigh +Makaila +Makinley +Makiya +Makynlee +Markayla +Maylee +Melina +Memphis +Miriam +Nancy +Nayeli +Nova +Patience +Promise +Raniyah +Reginae +Robyn +Rosemary +Roxana +Rylan +Sailor +Shannon +Sharon +Shyla +Sofie +Stormy +Taliah +Tamara +Tamya +Tanner +Tara +Tegan +Tionna +Tori +Valencia +Wendy +Whitney +Zariya +Emma +Ava +Olivia +Isabella +Madison +Abigail +Elizabeth +Ella +Chloe +Harper +Sophia +Anna +Addison +Brooklyn +Emily +Lily +Aubrey +Mary +Avery +Lillian +Zoey +Hannah +Khloe +Amelia +Layla +Nevaeh +Sarah +London +Kaylee +Caroline +Taylor +Aubree +Paisley +Alyssa +Natalie +Makayla +Makenzie +Mariah +Zoe +Savannah +Madelyn +Victoria +Alexis +Kennedy +Mckenzie +Trinity +Charlotte +Kylie +Serenity +Mia +Riley +Allison +Ryleigh +Bella +Evelyn +Lucy +Skylar +Audrey +Peyton +Aaliyah +Kinsley +Morgan +Bailey +Katherine +Lauren +Reagan +Sophie +Autumn +Londyn +Grace +Lilly +Allie +Piper +Sadie +Sara +Ellie +Gabriella +Katelyn +Hadley +Lydia +Molly +Claire +Jordyn +Kaitlyn +Kylee +Gabrielle +Genesis +Sydney +Annabelle +Kyleigh +Ashley +Maci +Presley +Destiny +Haley +Jada +Leah +Maggie +Rylee +Scarlett +Gracie +Mackenzie +Payton +Brianna +Brooklynn +Adalyn +Angel +Arianna +Eden +Julia +Maria +Paris +Faith +Hailey +Kayleigh +Madeline +Lyla +Margaret +Harmony +Jayla +Kensley +Stella +Alaina +Aniyah +Hayden +Jasmine +Malaysia +Samantha +Sofia +Aliyah +Miracle +Naomi +Summer +Camille +Eva +Kendall +Rebecca +Aria +Willow +Addyson +Catherine +Emery +Jaliyah +Kennedi +Kimberly +Ariana +Callie +Eleanor +Madilyn +Melanie +Shelby +Kayla +Alice +Aubrie +Baylee +Jade +Laura +Rachel +Blakely +Erin +Kaydence +Ruby +Abby +Alexa +Clara +Daisy +Kelsey +Laila +Lola +Reese +Alexandra +Ansley +Ashlyn +Brylee +Dakota +Georgia +Kamryn +Katie +Kinley +Lila +Makenna +Vivian +Amber +Charlee +Crimson +Heaven +Jakayla +Jessica +Jocelyn +Josie +Adalynn +Adrianna +Allyson +Ariel +Brooke +Camila +Charleigh +Kathryn +Maliyah +Marley +Nora +Raegan +Alexandria +Eliza +Isabelle +Paige +Alana +Hallie +Jenna +Jordan +Lexi +Maddison +Violet +Addisyn +Ashlynn +Breanna +Cadence +Jaycee +Parker +Aniya +Braylee +Carmen +Caylee +Delilah +Harley +Haven +Haylee +Izabella +Jennifer +Kailyn +Lillie +Mollie +Raelyn +Alivia +Amiyah +Ana +Andrea +Ann +Anne +Chelsea +Collins +Cora +Eliana +Finley +Jillian +Macy +Madisyn +Mallory +Mila +Nyla +Adeline +Ally +Brielle +Emory +Haleigh +Heidi +Macie +Marlee +Melody +Tiana +Zariah +Armani +Aurora +Bailee +Bayleigh +Braelyn +Briley +Elaina +Elise +Hope +Jamiyah +Jayden +Journey +Julie +Karsyn +Maya +Megan +Penelope +Tatum +Teagan +Tessa +Ada +Adriana +Alayna +Alison +Ayla +Briana +Bristol +Brynlee +Dixie +Emilee +Imani +Ivy +Janiya +Jayda +Juliana +Kadence +Kaliyah +Kallie +Kassidy +Kaylen +Kimora +Liliana +Michelle +Mya +Raven +Rebekah +Skyler +Vanessa +Zariyah +Zoie +Abbigail +Adelaide +Adelyn +Amari +Arabella +Bethany +Daniela +Emerson +Gracelyn +Kenley +Kenzie +Kira +Kyla +Kynleigh +Lauryn +Mikayla +Taliyah +Whitney +Alaysia +Angelina +Annie +Braelynn +Brinley +Cali +Diana +Evie +Farrah +Isabel +Janiyah +Kali +Karlee +Karmen +Kate +Keira +Kennadi +Kynlee +Lyric +Madalyn +Maleah +Mariyah +Norah +Nylah +Savanna +Virginia +Zion +Ainsley +Alayah +Annabella +Caitlyn +Carleigh +Carley +Carly +Cassidy +Charity +Charlie +Danielle +Emmalyn +Erica +Gracelynn +Jazmine +Karmyn +Kaylyn +Lilah +Lucille +Madelynn +Marissa +Mattie +Mckinley +Miley +Millie +Natalia +Nicole +Selena +Addie +Alondra +Amiya +Angela +Brittany +Bryleigh +Carlee +Carlie +Cecilia +Elisa +Jessie +Joanna +Justice +Leighton +Leslie +Mckenna +Myla +Nadia +Rylie +Taraji +Tenley +Tori +Aleah +Alexia +Amani +Arielle +Azaria +Cameron +Elena +Eloise +Helen +Jamie +Joy +Kaelyn +Kamari +Kayden +Kaylie +Kaylin +Kendra +Kinleigh +Lexie +Madilynn +Madyson +Makiyah +Paislee +Phoenix +Raelynn +Rosalie +Rylan +Sandra +Sawyer +Stephanie +Talia +Valeria +Zaniyah +Abrielle +Addilyn +Amanda +Amy +Annaleigh +Azariah +Cara +Cheyenne +Christina +Chyna +Courtney +Destinee +Hayleigh +India +Jacqueline +Jamiya +Jamya +Jaylynn +Kaleigh +Kamille +Kara +Karen +Karis +Laney +Lindsey +Lorelei +Malia +Melissa +Meredith +Phoebe +Rosemary +Saniyah +Valerie +Aleigha +Aliya +Aylin +Bentley +Blair +Camryn +Carolyn +Christiana +Ciara +Ellis +Gianna +Hanna +Jaleah +Jaylee +Julianna +Juliet +Juliette +Kailey +Karley +Karlie +Katelynn +Kelly +Kenya +Kimber +Kinslee +Kourtney +Kyra +Lainey +Lanie +Leilani +Lena +Libby +Lilliana +Londynn +Lorelai +Miranda +Patricia +Samiyah +Scarlet +Sharon +Sierra +Skyla +Tiffany +Zaria +Alaya +Alyse +Amaria +Anastasia +Averie +Brayleigh +Brenda +Brynleigh +Caitlin +Camilla +Campbell +Carla +Cheyanne +Cynthia +Evangeline +Fiona +Gabriela +Harleigh +Harmoni +Hartley +Hayley +Hazel +Holly +Isla +Jane +Journee +Kamora +Kaniyah +Karleigh +Karter +Kathleen +Kenzleigh +Kiley +Kyndall +Lacey +Lacy +Lilyann +Mariana +Nancy +Nia +Raylee +Rose +Ruth +Sabrina +Sariyah +Sasha +Saylor +Skye +Tamara +Zaniya +Zuri +Adley +Alanna +Aleena +Alexus +Alyson +Amaya +Anaya +Angelique +Annalee +April +Ariyana +Armoni +Ashton +Avalyn +Blakeley +Chandler +Danica +Destini +Elliott +Elsie +Elyse +Emersyn +Emilia +Esmeralda +Evelynn +Genevieve +Haylie +Iris +Jaden +Jaelyn +Jamaya +Jazlyn +Josephine +Kailee +Kailynn +Kaleah +Kenleigh +Laci +Laken +Laurel +Leila +Liberty +Litzy +Livia +Luna +Madalynn +Maddie +Marilyn +Michaela +Miriam +Nayeli +Noelle +Nova +Olive +Paisleigh +Patience +Preslee +Presleigh +Rihanna +Rileigh +River +Vivienne +Wendy +Abbie +Abril +Adele +Adelynn +Aiyana +Alannah +Ali +Alianna +Alicia +Alli +Amiah +Amirah +Anabelle +Annsley +Aryanna +Ashanti +Asia +Aspen +Aubri +Aubriana +Aubrianna +Auburn +Ayana +Brantley +Brenna +Brennan +Brookelyn +Brynn +Carli +Carolina +Celina +Charley +Charli +Christian +Claudia +Dalia +Deasia +Della +Denise +Elisabeth +Emalyn +Emmalynn +Ensley +Evalyn +Fallon +Gloria +Harlie +Harmonie +Hillary +Ila +Ivory +Izzabella +Jaci +Jaida +Jamiracle +Janyla +Jaylah +Jayleigh +Jazlynn +Jazmin +Jordynn +Joselyn +Journi +Juana +Kaitlin +Kaitlynn +Kamaria +Karli +Kathy +Kaylynn +Kelis +Kelsi +Kelsie +Kendal +Kenlee +Kiara +Kristen +Kylah +Kyndal +Kynslee +Kynsley +Lela +Lilian +Lilith +Lisa +Louise +Macey +Makaila +Malaya +Maleia +Mayra +Mckayla +Monica +Nina +Oakley +Rowan +Ryan +Sally +Samara +Saniya +Selah +Shaniya +Sherlyn +Sylvia +Tia +Whitley +Ximena +Yoselin +Addilynn +Adilynn +Alasia +Alessandra +Alissa +Alyvia +Amara +America +Amia +Anahi +Annabell +Annagrace +Anniston +Anslee +Ansleigh +Ari +Ashlee +Aspyn +Athena +Aubreigh +Audrianna +August +Ayanna +Ayden +Belinda +Blakelyn +Brinlee +Brylie +Carsyn +Cataleya +Cayleigh +Chanel +Channing +Cherish +Chloey +Chyanne +Constance +Cori +Demi +Desiree +Diamond +Dylan +Edith +Ellen +Emmalee +Eriel +Esther +Everleigh +Giselle +Hadassah +Hailee +Heavenly +Heidy +Jacie +Jakiya +Jakiyah +Jamiah +Janae +Jaylen +Jaylin +Jazzlyn +Jenny +Jewel +Johanna +June +Kalli +Kamoria +Karly +Karma +Keagan +Keasia +Kensleigh +Kiersten +Kirsten +Kiyah +Kloey +Krimson +Krymson +Kyli +Lailah +Lakelynn +Leanna +Lilia +Lillyan +Lilyana +Lizbeth +Logan +Lucia +Lynlee +Makinley +Malayshia +Maliah +Marie +Marleigh +Meadow +Meagan +Meghan +Mercy +Nala +Natalee +Natasha +Nila +Nivea +Noemi +Pamela +Preslie +Raleigh +Rayleigh +Rayne +Rhianna +Robin +Samaria +Samiya +Shaniyah +Shayla +Shiloh +Sidney +Sienna +Sydnee +Taleah +Tamia +Tayler +Taylin +Terra +Toni +Treasure +Tyasia +Unique +Viviana +Yareli +Zaylee +Emma +Ava +Olivia +Madison +Isabella +Sophia +Elizabeth +Brooklyn +Chloe +Harper +Ella +Abigail +Anna +Addison +Avery +Emily +Zoey +Aubrey +Hannah +Mary +Caroline +Amelia +Layla +Paisley +Sarah +Lillian +Sadie +Khloe +Taylor +Kylie +Lily +Aubree +Kaylee +London +Peyton +Charlotte +Evelyn +Natalie +Aaliyah +Kennedy +Londyn +Serenity +Alyssa +Riley +Nevaeh +Lauren +Alexis +Kinsley +Makayla +Katherine +Morgan +Allison +Autumn +Piper +Mckenzie +Skylar +Audrey +Mariah +Savannah +Bella +Mia +Trinity +Gabriella +Bailey +Madelyn +Ryleigh +Leah +Victoria +Kyleigh +Allie +Aria +Claire +Lydia +Zoe +Lucy +Molly +Makenzie +Sofia +Ellie +Payton +Scarlett +Brooklynn +Reagan +Grace +Harmony +Sophie +Annabelle +Hailey +Ariana +Arianna +Jordyn +Katelyn +Kensley +Mackenzie +Paris +Samantha +Sydney +Genesis +Margaret +Destiny +Kylee +Sara +Ariel +Gabrielle +Madeline +Rylee +Brianna +Hadley +Julia +Lilly +Maria +Stella +Faith +Naomi +Presley +Willow +Penelope +Kimberly +Maci +Adalynn +Hayden +Alexandria +Alivia +Jayla +Kayleigh +Maggie +Catherine +Laila +Malaysia +Alaina +Kaydence +Kendall +Brooke +Kennedi +Marley +Lyla +Rachel +Ruby +Baylee +Eva +Kaitlyn +Summer +Adalyn +Ansley +Ashley +Lila +Nicole +Angel +Anne +Brynlee +Charlee +Eden +Gracie +Kayla +Kelsey +Nora +Haley +Norah +Alice +Ana +Brylee +Callie +Josie +Kinley +Shelby +Tatum +Violet +Vivian +Andrea +Blakely +Gracelyn +Isabelle +Ivy +Kathryn +Katie +Vanessa +Aniyah +Clara +Jada +Jocelyn +Kaliyah +Lyric +Alana +Alexa +Arabella +Cora +Emery +Jennifer +Mallory +Mya +Charlie +Rebecca +Aliyah +Emory +Erin +Janiyah +Jasmine +Laura +Marlee +Mckinley +Addyson +Alayna +Aubrie +Camille +Charleigh +Jade +Lexi +Macie +Melanie +Nyla +Raegan +Reese +Abby +Adrianna +Amiyah +Ann +Ashlyn +Kadence +Kailyn +Maliyah +Addisyn +Adeline +Angelina +Cadence +Cali +Camila +Carmen +Crimson +Eleanor +Eliza +Kate +Lola +Makenna +Braylee +Haleigh +Haylee +Jane +Lillie +Madalyn +Miracle +Raelynn +Adelyn +Ashlynn +Emmalyn +Georgia +Hallie +Harley +Izabella +Jaliyah +Liliana +Madilyn +Melody +Raelyn +Stephanie +Allyson +Amari +Aurora +Bristol +Caitlyn +Elena +Emilee +Haven +Jenna +Jessica +Jordan +Kenzie +Macy +Mariyah +Maya +Mckenna +Mikayla +Paige +Paislee +Selena +Aleah +Bailee +Bryleigh +Cheyenne +Emerson +Justice +Kaelyn +Kaylin +Lacey +Laney +Madisyn +Parker +Rowan +Ada +Ally +Amy +Briley +Carleigh +Elise +Gianna +Jakayla +Jamiyah +Journee +Karleigh +Karlie +Karsyn +Katelynn +Lauryn +Mattie +Mollie +Rebekah +Teagan +Virginia +Zoie +Amiya +Angela +Annie +Collins +Danielle +Eliana +Finley +Henley +Isabel +Jayden +Jazmine +Journey +Julianna +Kamryn +Keira +Kynlee +Leslie +Madalynn +Maddison +Megan +Nylah +Raven +Rose +Taliyah +Adriana +Alexandra +Averie +Brittany +Camilla +Carlie +Cassidy +Dakota +Delilah +Evie +Heidi +Imani +Isla +Jamiya +Jayda +Karlee +Kenley +Kyndall +Madilynn +Marleigh +Millie +Natalia +Noelle +Tiana +Adelynn +Aniya +Annabella +Ariyah +Armani +Asia +Bayleigh +Brielle +Carly +Christina +Daniela +Destinee +Diana +Erica +Farrah +Frances +Hadleigh +Hazel +Jacqueline +Jaida +Jaycee +Juliana +Kailey +Karen +Leighton +Leilani +Lilliana +Madelynn +Maleah +Malia +Michaela +Mila +Nadia +Ximena +Zariyah +Zion +Addie +Adelaide +Alexia +Amani +Bethany +Briella +Camryn +Charley +Charli +Daisy +Elaina +Fallon +Hanna +Heaven +Hope +Jaycie +Jessie +Julie +Juliet +Kaleigh +Kaylen +Kendra +Kiley +Kimora +Kyla +Kyra +Makiyah +Meagan +Miley +Rileigh +Scarlet +Selah +Tessa +Vera +Zaniyah +Zuri +Abbie +Alison +Alyson +Amaya +Anastasia +Annalee +Aspen +Athena +Azaria +Brandi +Breanna +Cecilia +Chasity +Cherish +Courtney +Dixie +Elsie +Gemma +Harlee +Harmoni +Kali +Kayden +Kristen +Leila +Londynn +Luna +Marlie +Melissa +Michelle +Miriam +Nia +Nina +Olive +Sawyer +Saylor +Skyler +Tinsley +Tori +Abbigail +Alanna +Alaya +Alayah +Alicia +Amanda +Arielle +Arya +Baileigh +Braelyn +Brylie +Carley +Chandler +Chelsea +Dallas +Diamond +Elisabeth +Elliana +Emilia +Emmaline +Emmie +Gracelynn +Halle +Helen +India +Ivey +Jacelyn +Jaleah +Jamie +Janiya +Joanna +Josephine +Joy +Juana +Kaitlynn +Karis +Karmen +Kassidy +Kaylie +Kelly +Kinlee +Kira +Kourtney +Kristina +Lucille +Mae +Meredith +Miranda +Moriah +Myla +Rylie +Samara +Sariah +Sidney +Sierra +Stormy +Taniyah +Taylin +Valerie +Abbey +Ainsley +Alyvia +Amber +Angie +Anniston +Anslee +Ayla +Bentley +Carlee +Carolina +Carolyn +Caylee +Charity +Chyna +Daniella +Darby +Deasia +Destini +Dorothy +Edith +Ellison +Emersyn +Emmerson +Emmy +Everleigh +Fiona +Hattie +Jacey +Jaylah +Jillian +June +Kaidence +Kamiya +Kara +Karmyn +Kiara +Kinleigh +Korie +Kynzlee +Laken +Lena +Lilah +Logan +Lorelei +Mallie +Marissa +Natalee +Nayeli +Phoenix +Railyn +Rayleigh +Rosalie +Ruth +Savanna +Serena +Shiloh +Skyla +Susan +Tamia +Temperance +Tiffany +Zaria +Zariah +Abagail +Addilyn +Adilyn +Alaysia +Alia +Alissa +Amia +Amiracle +Amya +Angelica +Annabel +Annaleigh +Annalise +Annsley +Ansleigh +Armoni +Ashanti +Auburn +Brenda +Briana +Brynn +Campbell +Cara +Carrington +Carter +Cataleya +Christian +Cynthia +Deanna +Dylan +Elyse +Emilie +Emmaleigh +Essence +Estella +Genevieve +Giselle +Hadlee +Harmonie +Hartley +Hayleigh +Hayley +Iris +Jamya +Jessa +Johanna +Kaelynn +Kallie +Kamille +Karley +Karma +Kenzlee +Kenzley +Khloie +Kinslee +Lailah +Lilian +Lindsey +Madeleine +Maliah +Nola +Paityn +Patience +Princess +Priscilla +Raleigh +Raquel +Raylee +Rosa +Rylan +Sabrina +Saniya +Saniyah +Talia +Taraji +Teresa +Tianna +Winter +Zaniya +Aarna +Addalynn +Adley +Aiyana +Aleigha +Alejandra +Alena +Alexus +Alonna +Amilia +Annabell +Ari +Avah +Ayana +Billie +Braelynn +Brailey +Brantley +Brenna +Brinley +Britney +Caliyah +Cambree +Cassandra +Cassie +Cayleigh +Chelsey +Damiyah +Delaney +Elliot +Ellis +Emerie +Emry +Eryn +Esmeralda +Evangeline +Hadassah +Harleigh +Harlie +Hollie +Holly +Hollyn +Isabela +Iyana +Jakiyah +Janae +Jaylee +Jaylin +Jazlynn +Kaleah +Kambree +Kari +Karla +Kelsie +Kenslee +Khaliyah +Kirsten +Kylah +Kynleigh +Kyrie +Laci +Lacy +Lainey +Lakyn +Laniyah +Lexie +Liberty +Linda +Lucia +Lylah +Maddie +Marie +Martha +Mina +Nancy +Nataleigh +Noemi +Paula +Preslee +Raeleigh +Raniya +Rayne +Rhylee +Samiyah +Sandra +Scarlette +Skye +Stormie +Sutton +Tamya +Tiara +Vivienne +Wynter +Yoselin +Abbygail +Addalyn +Addilynn +Aisha +Alanah +Aleeah +Ali +Alondra +Annslee +Arden +Ashtyn +Aubri +Auri +Avalynn +Averi +Ayden +Belinda +Blakelee +Blakelyn +Bonnie +Bria +Brileigh +Brynnlee +Caelyn +Cailyn +Carli +Celeste +Chanel +Chassidy +Cindy +Claudia +Colette +Coraline +Dahlia +Daleyza +Deborah +Demi +Devyn +Dulce +Emalyn +Ember +Emorie +Estrella +Etta +Evalyn +Evan +Evelynn +Fernanda +Heather +Holland +Hollis +Honesty +Itzel +Jakira +Jalia +Jamia +Janyia +Jewel +Joi +Joslyn +Journi +Jovie +Juliette +Julissa +Jurnee +Kaitlin +Kalyn +Kamiyah +Kamora +Karina +Katheryn +Kathleen +Kenleigh +Kenya +Kenzi +Kerrington +Khole +Kimber +Kinsleigh +Kloe +Krimson +Lacie +Leanna +Mabry +Madyson +Makaylah +Makinley +Makynzie +Malayshia +Marian +Marion +Mason +Mckayla +Mercy +Myleigh +Nariah +Natalya +Nyasia +Perla +Promise +Rayna +Rihanna +Rylynn +Sariyah +Sasha +Skylynn +Sydnee +Symone +Tahiry +Taylyn +Tinley +Treasure +Trinidy +Veda +Willa +Yaretzi +Zamya +Zendaya +Zykeria +Ava +Emma +Olivia +Isabella +Elizabeth +Madison +Harper +Ella +Abigail +Brooklyn +Chloe +Avery +Sophia +Addison +Anna +Emily +Zoey +Sadie +Paisley +Lillian +Caroline +Hannah +Amelia +Mary +Evelyn +Lily +Khloe +Aubrey +Charlotte +Layla +Skylar +Serenity +Kinsley +Aubree +Kaylee +Taylor +Aaliyah +Hadley +Londyn +Nevaeh +Jordyn +London +Trinity +Morgan +Ryleigh +Kennedy +Peyton +Natalie +Sarah +Bella +Bailey +Makenzie +Katherine +Kylie +Lauren +Alyssa +Mia +Piper +Savannah +Autumn +Madelyn +Riley +Ellie +Allison +Audrey +Scarlett +Zoe +Leah +Rylee +Alexis +Makayla +Nora +Sofia +Mckenzie +Grace +Lilly +Lydia +Mariah +Adalyn +Reagan +Stella +Lucy +Mackenzie +Presley +Adalynn +Arianna +Aria +Harmony +Annabelle +Kyleigh +Naomi +Victoria +Willow +Ariana +Clara +Payton +Callie +Paris +Ariel +Blakely +Gabriella +Gabrielle +Genesis +Margaret +Allie +Faith +Sophie +Eva +Gracie +Laila +Brooklynn +Katelyn +Kayleigh +Kennedi +Molly +Kathryn +Samantha +Claire +Marley +Alice +Ashley +Destiny +Penelope +Alexandria +Eden +Emery +Kylee +Maria +Melanie +Brynlee +Georgia +Lila +Alivia +Brianna +Catherine +Jade +Eleanor +Jada +Julia +Kelsey +Kendall +Malaysia +Miracle +Vivian +Alaina +Charlie +Kaitlyn +Alana +Aliyah +Charlee +Maci +Sydney +Hailey +Heaven +Ivy +Izabella +Jaliyah +Raelynn +Aniyah +Baylee +Camille +Charleigh +Haley +Hazel +Kensley +Kinley +Madeline +Norah +Ruby +Amiyah +Angel +Hayden +Jasmine +Jocelyn +Jordan +Josie +Lyla +Melody +Sara +Shelby +Summer +Kaydence +Mckinley +Mya +Tatum +Addyson +Anne +Arabella +Isabelle +Jennifer +Kaliyah +Madisyn +Maggie +Raegan +Ann +Emerson +Journey +Kayla +Kimberly +Liliana +Lyric +Marlee +Ana +Ansley +Ashlynn +Brylee +Cadence +Elena +Gracelyn +Harley +Katie +Lauryn +Lexi +Madilyn +Parker +Alayna +Aurora +Cassidy +Gracelynn +Kali +Kamryn +Madilynn +Alexa +Braylee +Cali +Cora +Crimson +Eliza +Erin +Everly +Heidi +Jakayla +Kate +Nylah +Aubrie +Bayleigh +Dakota +Delilah +Finley +Macie +Maliyah +Mila +Paige +Paislee +Rachel +Abby +Adriana +Amy +Brooke +Emmalyn +Hadleigh +Haven +Jayla +Kadence +Raelyn +Skyler +Ashlyn +Bailee +Cheyenne +Emersyn +Henley +Kassidy +Leighton +Lola +Mallory +Mckenna +Melissa +Addilyn +Amber +Brielle +Danielle +Hope +Jaycee +Jessica +Juliana +Kaylie +Kenley +Kiley +Lillie +Macy +Maddison +Maya +Ruth +Vera +Zariah +Ayla +Carmen +Evie +Jane +Jenna +Josephine +Madelynn +Makenna +Nova +Nyla +Reese +Saylor +Virginia +Amari +Bristol +Chelsea +Dallas +Elaina +Elise +Hallie +Jayda +Journee +Julianna +Justice +Kaidence +Karsyn +Lilliana +Mikayla +Natalia +Noelle +Rylie +Violet +Zaria +Adelyn +Alexandra +Aniya +Arya +Asia +Averi +Averie +Emory +Harmoni +Haylee +Isabel +Keira +Kenzie +Madalyn +Maleah +Mattie +Rose +Sawyer +Tenley +Adeline +Annalise +Braelyn +Brayleigh +Bryleigh +Camila +Carleigh +Carly +Daisy +Eliana +Gemma +Harleigh +Hattie +Helen +Iris +Isla +Janiyah +Jaylee +Karlee +Kayden +Kendra +Kyla +Laura +Lucille +Luna +Malia +Miriam +Raylee +Rebecca +Skye +Willa +Ximena +Ada +Adaleigh +Addie +Annie +Breanna +Caitlyn +Cara +Carlie +Danica +Dixie +Emilia +Esmeralda +Haleigh +Jaida +Jayden +Joanna +June +Kailyn +Kallie +Karmen +Kaylin +Kira +Marissa +Nicole +Rebekah +Rosalie +Skyla +Teagan +Zariyah +Aleah +Annabella +Anniston +Anslee +Ariyah +Aspen +Azariah +Blakelyn +Briana +Brittany +Caylee +Charley +Collins +Daleyza +Eloise +Elsie +Erica +Frances +Jamiya +Jaylynn +Jazlyn +Journi +Julie +Juliet +Kailey +Kyndall +Lailah +Madalynn +Mallie +Megan +Michaela +Millie +Mollie +Quinn +Ryan +Sierra +Tessa +Vanessa +Whitley +Zaniyah +Zion +Addilynn +Addisyn +Adelaide +Adelynn +Adrianna +Alina +Ally +Andrea +Ansleigh +Azaria +Briella +Brinley +Caleigh +Cameron +Chanel +Christian +Ellen +Emilee +Jaleah +Jamya +Jayde +Jazmine +Jessa +Jessie +Joy +Kaelyn +Kailee +Karlie +Kaylynn +Kimora +Kinslee +Kynlee +Lilah +Maddie +Madyson +Raven +Selena +Stephanie +Sutton +Tinsley +Valerie +Wynter +Abbigail +Ainsley +Alexia +Amiya +Anastasia +Aylin +Bethany +Carter +Cecilia +Charli +Christina +Delaney +Destinee +Diamond +Donna +Elsa +Emmaline +Gabriela +Hayley +Imani +Jacey +Janiya +Jewel +Jordynn +Julianne +Kaci +Kaleah +Kamari +Kara +Karter +Katelynn +Kenzley +Kori +Kynleigh +Leilani +Lena +Libby +Liberty +Makinley +Mariyah +Myla +Phoebe +Remi +Rylan +Savanna +Scarlet +Selah +Taliyah +Tamia +Vivienne +Alaysia +Alena +Alicia +Allyson +Angela +Angelica +Arielle +Ashanti +Aubri +Blair +Brynn +Caitlin +Casey +Ciara +Cynthia +Elliot +Ellison +Emmalee +Farrah +Gia +Gwendolyn +Hadlee +Harlee +Heather +Holland +Ivey +Iyana +Jaci +Jacqueline +Jemma +Jillian +Juana +Juliette +Kacey +Kaleigh +Kathleen +Kenleigh +Kimber +Kyndal +Kynslee +Kyra +Lainey +Laney +Leanna +Lela +Lexie +Lilith +Logan +Londynn +Lorelei +Macey +Malaya +Mariana +Micah +Monica +Nayeli +Palmer +Raleigh +Rayna +Sabrina +Saige +Sailor +Sally +Samiyah +Tiana +Tyler +Valeria +Whitney +Yaretzi +Zayla +Zuri +Adleigh +Aiyana +Alanna +Alia +Amani +Amaya +Amya +Angie +Annabel +Annagrace +Annaleigh +Anya +Ariella +Armani +Armoni +Aryanna +Athena +August +Bradleigh +Brilee +Campbell +Camryn +Carlee +Carolina +Carolyn +Carsyn +Charity +Chasity +Chrisette +Daniela +Dasia +Della +Dylan +Elliana +Emerie +Esther +Eve +Felicity +Gabriel +Gianna +Giuliana +Harlow +Jakiyah +Jamiyah +Jimena +Kaelynn +Kamya +Kaniya +Karma +Kaylei +Kaylen +Kaylyn +Keeley +Kendal +Kenya +Kinlee +Kylah +Layken +Lisa +Madeleine +Mae +Magnolia +Marleigh +Mckayla +Michelle +Miranda +Nadia +Olive +Raeleigh +Randi +Rayleigh +Rosa +Rowan +Sarai +Shaniya +Symone +Tori +Veronica +Zoie +Abbie +Alayah +Aleigha +Alex +Alli +Amia +Analeigh +Andi +April +Ariyanna +Ayana +Ayanna +Baylor +Blakelee +Bonnie +Brileigh +Briley +Britton +Brynleigh +Calleigh +Camilla +Carley +Carson +Catalina +Chandler +Channing +Chloie +Christiana +Christine +Courtney +Danna +Destini +Elisabeth +Elle +Elliott +Ember +Emelia +Ensley +Genevieve +Guadalupe +Haiden +Helena +India +Iyanna +Jacelyn +Jacie +Jaelynn +Jamie +Janelle +Jaycie +Jenny +Jesslyn +Johanna +Justyce +Kailynn +Kaitlynn +Kamille +Karleigh +Karmyn +Kataleya +Khole +Kiara +Kinsleigh +Kinzley +Kristen +Laken +Leia +Lennox +Leslie +Linda +Lindsey +Madysen +Makenzi +Marie +Marilyn +Maryann +Melodie +Meredith +Milan +Miller +Mina +Neveah +Oakley +Paityn +Perla +Phoenix +Reyna +River +Sage +Saniyah +Sariah +Shiloh +Sloane +Taleah +Tamara +Taniyah +Temperance +Zaniya +Zaylee +Zendaya +Aaralyn +Abigale +Abigayle +Adalee +Addalyn +Addalynn +Alani +Alasia +Alison +Aliya +Alora +Alyson +Alyvia +Amanda +Amauri +Ameria +Amina +Aminah +Anabella +Anais +Anderson +Annabeth +Anyla +Ariah +Arrianna +Auburn +Austyn +Avah +Avaleigh +Aziya +Baileigh +Braelynn +Brenley +Bria +Caelyn +Camdyn +Carrington +Clarissa +Collier +Dani +Daphne +Denver +Diana +Dorothy +Edith +Elia +Elisa +Ellery +Ellington +Ellis +Elyse +Emely +Emmie +Evangeline +Evelynn +Ever +Fallon +Finlee +Freya +Gloria +Harmonee +Hartley +Hayleigh +Heavenly +Hunter +Isabela +Ivory +Jamia +Janae +Janet +Jenesis +Jolie +Joselin +Joselyn +Judith +Kacelyn +Kai +Kaidyn +Kairi +Kaley +Kalli +Kamaria +Karina +Karis +Karli +Karly +Keasia +Kenna +Kerrigan +Kinleigh +Kolbie +Korie +Kourtney +Krimson +Kylar +Lacey +Lakelyn +Lakyn +Lana +Landry +Leila +Lesly +Lilian +Louise +Lyndsey +Lyrik +Maliah +Mallorie +Mara +Margot +Marisol +Mariya +Marlie +Martha +Maryam +Melany +Miah +Milani +Milania +Moriah +Myah +Nancy +Nina +Preslee +Preslie +Priscilla +Railyn +Raniya +Remington +Rihanna +Samiya +Sarahi +Sariyah +Serinity +Shayla +Sidney +Spencer +Tabitha +Tamera +Taraji +Taylin +Wendy +Winter +James +John +William +Willie +Robert +George +Henry +Joe +Charlie +Frank +Charles +Joseph +Walter +Thomas +Sam +Richard +Clarence +Fred +Edward +Eddie +Jessie +Jack +Albert +Lee +Arthur +David +Howard +Will +Roy +Tom +Eugene +Ernest +Jim +Johnnie +Samuel +Louis +Andrew +Ben +Jesse +Lewis +Jimmie +Leroy +Oscar +Paul +Rufus +Carl +Herman +Curtis +Nathaniel +Raymond +Harry +Ed +Cecil +Claude +Ralph +Edgar +Emmett +Otis +Dave +Luther +Marvin +Bennie +Earl +Homer +Lawrence +Roosevelt +Theodore +Alex +Bill +Mack +Alfred +Daniel +Earnest +Jake +Lonnie +Milton +Oliver +Percy +Allen +Clyde +Johnie +Julius +Tommie +Chester +Dan +Grady +Harvey +Hugh +Leon +Leonard +Morris +Elmer +Floyd +Hubert +Leo +Willis +Booker +Elbert +Herbert +Melvin +Sidney +Benjamin +Buster +Cleveland +Clifford +Ellis +Lester +Louie +Calvin +Clinton +Jerry +Ollie +Ray +Amos +Archie +Guy +Harold +Johnny +Alvin +Aubrey +Charley +Clifton +Dock +Elijah +Fletcher +Horace +Mose +Nelson +Norman +Simon +Wilbur +Alexander +Alton +Anderson +Bud +Grover +Gus +Ira +Isaac +Jeff +Jimmy +King +Lloyd +Monroe +Sandy +Bernard +Early +Huey +Leslie +Loyd +Marshall +Mary +Mitchell +Nathan +Ned +Perry +Preston +Tony +Virgil +Wallace +Wilson +Aaron +Adam +Cleve +Dewitt +Douglas +Emmitt +Ike +Judge +Manuel +Peter +Porter +Ruben +Spencer +Sylvester +Tommy +Vernon +Wesley +Wilbert +Abraham +Austin +Cleo +Dennis +Edd +Edwin +Ervin +Felix +Gerald +Gordon +Hollis +Houston +Isiah +Jackson +Marion +Martin +Millard +Moses +Noah +Odis +Riley +Solomon +Steve +Wiley +Adolphus +Alonzo +Anthony +Christopher +Claud +Clayton +Cliff +Coy +Dalton +Dewey +Edmond +Eli +Francis +General +Green +Harrison +Hosey +Hoyt +Jasper +Jay +Lamar +Lorenzo +Lucious +Luke +Major +Mckinley +Otto +Phil +Phillip +Reuben +Sammie +Son +Stanley +Turner +Vester +Warren +Wilburn +James +John +William +Willie +Robert +George +Henry +Frank +Charlie +Charles +Joe +Joseph +Thomas +Walter +Sam +Eddie +Edward +David +Arthur +Jack +Johnnie +Clarence +Richard +Fred +Samuel +Albert +Jessie +Roy +Howard +Lee +Andrew +Ernest +Eugene +Oscar +Paul +Homer +Jesse +Jimmie +Will +Earl +Earnest +Luther +Grady +Herman +Leonard +Curtis +Daniel +Floyd +Harry +Tom +Cecil +Raymond +Johnie +Leroy +Carl +Herbert +Isaac +Jim +Lewis +Louis +Ralph +Allen +Ben +Rufus +Dan +Otis +Alfred +Clyde +Lawrence +Marvin +Milton +Bennie +Bill +Claude +Elbert +Hubert +Leon +Roosevelt +Sylvester +Tommie +Ellis +Horace +Dave +Edgar +Guy +Hugh +Archie +Ed +Leslie +Mose +Nathan +Benjamin +Chester +Elmer +Grover +Ira +Marion +Oliver +Percy +Wallace +Clifford +Harvey +Jerry +Julius +Lloyd +Monroe +Willis +Alton +Amos +Claud +Cleveland +Harold +Leo +Lester +Melvin +Nelson +Sidney +Bud +Calvin +Clinton +Lonnie +Theodore +Alvin +Anderson +Aubrey +Buster +Johnny +Louie +Mack +Nathaniel +Sanford +Alex +Arther +Freddie +Ruben +Shelby +Troy +Alexander +Bruce +Clifton +Cornelius +Dennis +Dewey +Douglas +Edmond +Fletcher +Freeman +Jacob +Jake +Marshall +Matthew +Neal +Phillip +Ray +Russell +Billie +Bob +Buford +Columbus +Elijah +Jay +Loyd +Moses +Ocie +Peter +Roland +Ross +Simon +Ted +Virgil +Warren +Wesley +Willard +Wilson +Woodrow +Aaron +Arnold +Booker +Donald +Early +Gordon +Isiah +Jeff +Jewell +Love +Mary +Morris +Preston +Reuben +Roscoe +Scott +Steve +Wilbert +Wiley +Wilmer +Alford +Austin +Barney +Brady +Carlton +Cary +Charley +Coy +Dock +Edd +Elzie +Emmett +Felix +Frederick +Gilbert +Harrison +Hilliard +Hoyt +Jasper +Jimmy +Kermit +Lawyer +Major +Noah +Norman +Otto +Perry +Philip +Porter +Solomon +Spencer +Tommy +Vernon +Victor +Wilbur +James +John +William +Robert +Willie +George +Henry +Thomas +Charles +Frank +Joseph +Joe +Walter +Charlie +Woodrow +Arthur +Albert +Jack +Sam +Clarence +Edward +Fred +Richard +Roy +Jessie +Samuel +David +Johnnie +Ernest +Howard +Eddie +Paul +Andrew +Jimmie +Louis +Jim +Jesse +Raymond +Oscar +Eugene +Ralph +Lee +Cecil +Clyde +Earnest +Leroy +Tom +Harry +Earl +Will +Lewis +Edgar +Grady +Leon +Marvin +Otis +Carl +Herman +Leonard +Horace +Ben +Curtis +Claude +Floyd +Herbert +Allen +Lester +Wilson +Clifford +Daniel +Harold +Luther +Roosevelt +Tommie +Homer +Johnie +Melvin +Alfred +Ed +Rufus +Bennie +Mack +Percy +Lawrence +Theodore +Bill +Dan +Marion +Milton +Aubrey +Elbert +Hubert +Willis +Benjamin +Booker +Ellis +Grover +Leo +Alvin +Clifton +Dewey +Elmer +Hugh +Leslie +Francis +Lonnie +Nathan +Oliver +Alex +Calvin +Harvey +Julius +Archie +Chester +Norman +Sidney +Charley +Nathaniel +Ollie +Ray +Wallace +Willard +Ira +Lloyd +Alton +Dave +Emmett +Guy +Jasper +Isaac +Jacob +Jerry +Johnny +Morris +Buster +Edwin +Ervin +Jake +Julian +Roscoe +Ruben +Russell +Solomon +Steve +Sylvester +Virgil +Abraham +Anthony +Cleveland +Glen +Marshall +Millard +Odis +Troy +Wilbur +Aaron +Amos +Clinton +Douglas +Jeff +Joel +Monroe +Moses +Peter +Talmadge +Wesley +Bernard +Bob +Gordon +Houston +Jackson +Jay +Louie +Lucius +Mary +Ocie +Preston +Augustus +Austin +Buford +Claud +Clayton +Dock +Donald +Elijah +Frederick +Freeman +Gus +Levi +Mose +Philip +Sherman +Travis +Warren +Wiley +Wilmer +Dallas +Emmitt +Fletcher +Harrison +Hoyt +Kenneth +Marcus +Martin +Matthew +Noah +Owen +Perry +Phillip +Roland +Stephen +Tommy +Wade +Barney +Everett +Freddie +Gilbert +Glenn +Jerome +Judge +Malcolm +Max +Olin +Porter +Sammie +Alto +Anderson +Bennett +Bert +Brady +Coy +Ewell +Ezra +Felton +Franklin +Huey +Jimmy +Junior +Kermit +Lamar +Lemuel +Manuel +Mason +Mathew +Neal +Otto +Ross +Sandy +Shelby +Walker +Abe +Adam +Alexander +Alonzo +Andy +Arnold +Arther +Bruce +Buck +Columbus +Dennis +Emanuel +Emory +Enoch +Felix +Foster +Foy +General +Harmon +Haywood +Hiram +Loyd +Major +Mark +Maurice +Mike +Mitchell +Murray +Ned +Pete +Prince +Reid +Roger +Rudolph +Simon +Stanley +Thurman +Turner +Vernon +Wilton +Winston +Zack +Zollie +Al +Artie +Boyd +Bud +Burl +Byron +Carter +Christopher +Cleo +Coleman +Cooper +Dee +Earlie +Edd +Emerson +Emery +Forrest +Gaston +Guss +Hamp +Hermon +Hollis +Irvin +Irving +Isiah +Jewel +Jewell +King +Levy +Lynn +Murry +Napoleon +Nelson +Nick +Patrick +Riley +Rogers +Scott +Terry +Ulysses +Wilburn +James +John +William +Robert +Willie +George +Henry +Thomas +Charles +Joseph +Frank +Charlie +Joe +Walter +Albert +Fred +Edward +Jack +Arthur +Woodrow +Clarence +Sam +Eddie +Roy +Richard +Ernest +Howard +David +Johnnie +Jesse +Samuel +Paul +Clyde +Carl +Eugene +Ralph +Jessie +Louis +Cecil +Lee +Floyd +Grady +Jimmie +Herman +Oscar +Raymond +Andrew +Harry +Jim +Marvin +Will +Leroy +Otis +Leon +Ben +Earnest +Luther +Earl +Alfred +Curtis +Herbert +Leonard +Claude +Harold +Homer +Julius +Lewis +Daniel +Elbert +Hubert +Melvin +Tommie +Chester +Roosevelt +Allen +Archie +Harvey +Lawrence +Mack +Tom +Lester +Marion +Bill +Wilson +Ellis +Lonnie +Rufus +Grover +Hugh +Alvin +Benjamin +Dan +Horace +Milton +Alex +Edgar +Ira +Johnie +Leo +Theodore +Bennie +Clifford +Edwin +Norman +Willis +Ed +Isaac +Virgil +Aaron +Johnny +Nathaniel +Oliver +Clifton +Emmett +Guy +Lloyd +Moses +Percy +Vernon +Jerry +Ollie +Peter +Russell +Wesley +Morris +Ray +Buster +Calvin +Elmer +Jeff +Alton +Aubrey +Booker +Elijah +Gordon +Sylvester +Wallace +Abraham +Cleveland +Clinton +Dewey +Douglas +Felix +Leslie +Louie +Major +Wade +Wilburn +Willard +Amos +Bruce +Hoyt +Jake +Reuben +Sidney +Alexander +Francis +Gilbert +Martin +Nathan +Preston +Warren +Wilbur +Arnold +Donald +Jasper +Marshall +Millard +Ulysses +Bernard +Clayton +Fletcher +Glenn +Harrison +Jay +Nelson +Noah +Odis +Phillip +Travis +Bert +Dave +Frederick +Fredrick +Jerome +Matthew +Mike +Mose +Olin +Sherman +Carlton +Claud +Columbus +Dennis +Dock +Emory +Gus +Hollis +Jackson +Jacob +Judge +Julian +Kenneth +Kermit +Maurice +Monroe +Ocie +Truman +Wiley +Aron +Bob +Charley +Elmore +Freddie +Freeman +Glen +Houston +Huey +Odell +Otto +Owen +Philip +Riley +Ted +Timothy +Tony +Troy +Victor +Wilbert +Wilmer +Barney +Bernice +Boyd +Dewitt +Early +Everett +Glover +Grant +Henderson +Hiram +Irvin +Jimmy +King +Loyd +Luke +Manuel +Mark +Olen +Ottis +Porter +Prince +Roland +Ross +Solomon +Thurman +Anderson +Augustus +Carey +Earlie +Elias +Elton +Foy +Gerald +Herschel +Isiah +Jefferson +Lamar +Larry +Leamon +Max +Mckinley +Morgan +Perry +Roscoe +Tommy +Vincent +Wilton +Winston +Abe +Alonzo +Alva +Alvie +Austin +Bryant +Byron +Cleve +Connie +Cornelius +Dallas +Edd +Edmond +Elmo +Elvin +Ervin +Ezekiel +Forrest +Foster +Franklin +Garfield +Haywood +Hosey +Irby +Joel +Malcolm +Mary +Milford +Mitchell +Murray +Ned +Odie +Orville +Pete +Rex +Rosevelt +Ruben +Rudolph +Sammie +Scott +Stanley +Walker +Adolph +Alphonso +Alto +Belton +Bennett +Billy +Buck +Buford +Burl +Carlos +Cary +Coleman +Collie +Cullen +Doyle +Elliott +Emmitt +Forney +Hobson +Isadore +Isaiah +Ivan +Jamie +Jeremiah +Jordan +Joshua +Lewie +Lorenza +Lorenzo +Marcus +Newton +Nolan +Obie +Price +Richmond +Roger +Rush +Sandy +Smith +Stonewall +Talmadge +Theo +Theron +Van +Vester +Winfred +James +John +William +Robert +Willie +George +Henry +Charles +Thomas +Walter +Joseph +Frank +Joe +Fred +Charlie +Edward +Albert +Jack +Samuel +Clarence +Arthur +Roy +Richard +Johnnie +Oscar +David +Sam +Eddie +Woodrow +Ernest +Jessie +Paul +Cecil +Earl +Ralph +Carl +Louis +Raymond +Howard +Otis +Jesse +Leroy +Lee +Floyd +Homer +Andrew +Curtis +Herbert +Clyde +Grady +Tom +Herman +Luther +Will +Daniel +Jimmie +Eugene +Harry +Jim +Lawrence +Lewis +Rufus +Marvin +Benjamin +Claude +Leonard +Leo +Horace +Earnest +Lester +Melvin +Tommie +Edgar +Alfred +Hubert +Hugh +Lonnie +Mack +Clifford +Ed +Milton +Leon +Bennie +Johnie +Nathaniel +Willis +Ben +Grover +Julius +Harvey +Oliver +Elbert +Norman +Allen +Elmer +Leslie +Alvin +Theodore +Harold +Aaron +Emmett +Archie +Dan +Isaac +Jerry +Marion +Chester +Morris +Gordon +Johnny +Wilson +Sidney +Bernard +Cleveland +Roosevelt +Alex +Jacob +Louie +Ray +Francis +Jasper +Ollie +Wallace +Booker +Clinton +Gilbert +Percy +Bill +Calvin +Roscoe +Travis +Arnold +Clifton +Dave +Dewey +Matthew +Millard +Vernon +Virgil +Wesley +Felix +Glenn +Nathan +Phillip +Roland +Buster +Edwin +Kermit +Lloyd +Russell +Sylvester +Wiley +Alton +Amos +Charley +Elijah +Peter +Troy +Preston +Ross +Willard +Alexander +Dennis +Douglas +Ellis +Hoyt +Mitchell +Nelson +Wilburn +Aubrey +Barney +Buford +Fletcher +Ira +Julian +Mose +Perry +Ted +Clayton +Donald +Jay +Martin +Moses +Odis +Otha +Solomon +Tommy +Wilbur +Anthony +Bruce +Hollis +Jeff +Marshall +Murray +Noah +Otto +Abraham +Dallas +Haywood +Hobson +Houston +Huey +Jake +Lamar +Levi +Loyd +Olen +Porter +Reuben +Warren +Wilmer +Columbus +Gerald +Joel +Odell +Patrick +Sherman +Silas +Abe +Anderson +Austin +Billie +Byron +Claud +Comer +Connie +Cornelius +Elmore +Ervin +Essie +Franklin +Frederick +Hiram +Jefferson +Malcolm +Max +Monroe +Ocie +Roger +Sammie +Alonzo +Augustus +Carlton +Cleve +Edd +Emory +Everett +Freddie +Major +Mark +Milford +Pete +Rex +Ruben +Wade +Wilbert +Alphonso +Arther +Artis +Boyd +Brady +Braxton +Buddy +Christopher +Claudie +Dock +Earlie +Early +Gus +Hardy +Huston +Irvin +Isiah +Jerome +Lenard +Lovell +Lucius +Luke +Manuel +Morgan +Philip +Simon +Theo +Van +Winston +Al +Alto +Bert +Cleo +Cliff +Coy +Davis +Don +Dudley +Eldridge +Eli +Enoch +Ezekiel +Foster +Freeman +Grant +Green +Guy +Harley +Ike +Irby +Isaiah +Jackson +Jamie +Jimmy +Josh +Judge +Kenneth +King +Larry +Lorenzo +Lucian +Macon +Mason +Maurice +Ned +Newton +Norris +Oneal +Owen +Prince +Stanley +Steve +Thurman +Victor +Alvie +Angus +Aron +Benny +Bob +Carey +Clarance +Coleman +Conrad +Curry +Dawson +Dewitt +Dwight +Emmet +Ermon +Forest +Foy +Harrison +Hershel +Johnson +Jonas +Joshua +Junior +Lawson +Lowell +Marcus +Napoleon +Obie +Price +Rubin +Selma +Shelby +Sid +Sim +Ulysses +Washington +Williams +Angelo +Arvel +Belton +Bryant +Buck +Buddie +Buel +Carroll +Dorsey +Elisha +Emanuel +Emmitt +Erskine +Ester +Evans +Felton +Garfield +Gaston +Gilmore +Glen +Griffin +Hamilton +Henderson +Hubbard +Hunter +Lacy +Leamon +Leland +Lemuel +Lindsey +Lorenza +Lucious +Marlin +Michael +Miller +Neal +Nick +Noel +Olin +Ollis +Ramon +Reginald +Rosevelt +Royce +Scott +Spurgeon +Stephen +Taylor +Theron +Timothy +Tomie +Verbon +Vincent +Vinson +Wood +Wylie +James +John +William +Robert +Willie +George +Thomas +Henry +Charles +Joseph +Frank +Walter +Edward +Joe +Charlie +Albert +Fred +Arthur +Clarence +David +Jack +Roy +Richard +Ernest +Jessie +Samuel +Paul +Cecil +Eddie +Sam +Howard +Jesse +Woodrow +Johnnie +Ralph +Andrew +Grady +Oscar +Raymond +Eugene +Lee +Herman +Carl +Earl +Louis +Jimmie +Clyde +Harry +Herbert +Otis +Curtis +Luther +Floyd +Horace +Leon +Lewis +Hubert +Willard +Leonard +Marvin +Rufus +Lester +Earnest +Harold +Leroy +Jim +Allen +Benjamin +Tom +Homer +Ben +Daniel +Edgar +Milton +Bennie +Claude +Emmett +Lawrence +Alfred +Alvin +Wallace +Chester +Clifford +Marion +Mack +Elmer +Dan +Hugh +Will +Booker +Leo +Alex +Melvin +Norman +Lonnie +Roosevelt +Willis +Clifton +Edwin +Johnie +Archie +Clinton +Julius +Harvey +Nathaniel +Oliver +Theodore +Aubrey +Francis +Grover +Louie +Percy +Ellis +Lloyd +Arnold +Bill +Ollie +Tommie +Gordon +Leslie +Amos +Cleveland +Virgil +Donald +Elbert +Ira +Jerry +Johnny +Ray +Troy +Wesley +Wilson +Dewey +Isaac +Nathan +Calvin +Charley +Dave +Ed +Frederick +Warren +Claud +Jake +Sylvester +Vernon +Alton +Peter +Wiley +Glenn +Odis +Preston +Roscoe +Sidney +Wilbur +Alexander +Bob +Douglas +Elijah +Guy +Hollis +Matthew +Monroe +Morris +Moses +Russell +Gilbert +Kenneth +Loyd +Odell +Perry +Wilmer +Aaron +Bernard +Coy +Felix +Marshall +Jacob +Jefferson +Max +Roland +Anderson +Fletcher +Jasper +Major +Martin +Pete +Reuben +Ross +Wilburn +Earlie +Mose +Phillip +Sammie +Alonzo +Dee +Everett +Houston +Jimmy +Simon +Winston +Abraham +Bruce +Buford +Cornelius +Freddie +Hermon +Huey +Jay +Julian +Neal +Nelson +Sherman +Solomon +Travis +Austin +Barney +Columbus +Davis +Dennis +Elvin +Jackson +Jess +Levi +Lorenzo +Ned +Rex +Tommy +Victor +Wilbert +Byron +Clayton +Connie +Franklin +Freeman +Hoyt +Jeff +Mitchell +Ocie +Orville +Owen +Silas +Stephen +Vincent +Wade +Adolph +Early +Elton +Emanuel +Emory +Evans +Harmon +Joel +King +Malcolm +Manuel +Marcus +Milford +Millard +Otto +Sanford +Ulysses +Vester +Arther +Boyd +Carlos +Cliff +Dock +Edmond +Enoch +Ezra +Foy +Gus +Ike +Isaiah +Junior +Lamar +Lowell +Maxie +Michael +Murray +Newton +Noah +Olen +Shelby +Steve +Ted +Winfred +Alto +Andy +Arlin +Bernice +Bert +Bud +Clark +Coleman +Edd +Elmore +Forest +Gaston +Glen +Jerome +Judge +Kermit +Mark +Miles +Otha +Ottis +Randolph +Riley +Rudolph +Stanley +Theo +Thurman +Van +Alvie +Avery +Billy +Carey +Carlton +Christopher +Cleve +Dudley +Emmitt +Haywood +Hershel +Leamon +Lois +Lucius +Luke +Maurice +Obie +Odie +Olin +Roger +Spencer +Talmadge +Taylor +Tony +Verbon +Webster +Abe +Algie +Arlie +Billie +Brady +Bryant +Buren +Buster +Comer +Cornelious +Crawford +Dewitt +Emmet +Ervin +General +Gerald +Harris +Hezekiah +Hiram +Isiah +Judson +Marlin +Ora +Rosevelt +Sterling +Timothy +Wayne +Woodie +Adolphus +Alfonso +Anthony +Braxton +Buddy +Burnie +Carroll +Carter +Claudie +Cleo +Delmar +Eli +Elisha +Elmo +Elvis +Emmit +Ferrell +Garland +Gene +Gorden +Grant +Harvie +Hobson +Irby +Irvin +Issac +Leland +Madison +Milburn +Morgan +Nick +Noble +Noel +Norris +Oneal +Osie +Otho +Patrick +Philip +Porter +Price +Reginald +Ruben +Talmage +Theron +Tillman +Vivian +Wilber +Winford +Wyman +Alford +Alphonse +Alvis +Amon +Artis +Auther +Benard +Benjiman +Bobbie +Carson +Casey +Chas +Clarance +Dempsey +Denver +Dolphus +Doyle +Durell +Eligah +Ezell +Felton +Foster +Gaines +Garfield +Harley +Harvel +Herschel +Hilliard +Hobart +Hollie +Hosie +Huston +Ivory +Jodie +Johnson +Jordan +Julious +Laurence +Lemuel +Lenard +Lindsey +Loyce +Lynn +Macon +Mary +Mathew +Melton +Mike +Murry +Napoleon +Nolan +Oris +Peyton +Ronald +Ruel +Rupert +Sandy +Scott +Sid +Smith +Terry +Verner +Walker +Walton +Waymon +Wendell +Zack +James +William +John +Robert +Willie +George +Henry +Charles +Thomas +Frank +Joseph +Joe +Edward +Walter +Charlie +Fred +Clarence +Arthur +Albert +Roy +David +Jack +Woodrow +Jessie +Samuel +Paul +Cecil +Jesse +Eddie +Johnnie +Ernest +Howard +Richard +Ralph +Sam +Earl +Andrew +Raymond +Clyde +Grady +Louis +Marvin +Carl +Herman +Lee +Leroy +Jimmie +Leon +Oscar +Horace +Luther +Floyd +Harold +Eugene +Curtis +Herbert +Hubert +Lewis +Otis +Harry +Lonnie +Alfred +Homer +Leonard +Jim +Lawrence +Leo +Willard +Melvin +Daniel +Bill +Earnest +Rufus +Claude +Milton +Ben +Edgar +Elbert +Grover +Lester +Tom +Clifford +Hugh +Will +Chester +Elmer +Benjamin +Bennie +Isaac +Norman +Oliver +Alvin +Johnie +Tommie +Allen +Roosevelt +Lloyd +Harvey +Mack +Wallace +Sidney +Dan +Wilson +Jerry +Alex +Amos +Percy +Willis +Aubrey +Edwin +Jake +Booker +Calvin +Ira +Marion +Theodore +Aaron +Arnold +Clifton +Dewey +Ray +Ed +Emmett +Julius +Ollie +Virgil +Archie +Morris +Moses +Nathaniel +Vernon +Donald +Ellis +Louie +Wilburn +Troy +Alton +Cleveland +Clinton +Coy +Dave +Houston +Nathan +Preston +Russell +Wilbur +Charley +Gordon +Guy +Jeff +Johnny +Mose +Nelson +Elijah +Gilbert +Jasper +Peter +Bernard +Martin +Odis +Buford +Francis +Marshall +Matthew +Freddie +Julian +Millard +Roscoe +Wilmer +Claud +Felix +Malcolm +Phillip +Sylvester +Wesley +Dock +Douglas +Everett +Glenn +Loyd +Odell +Roland +Austin +Buster +Harrison +Leslie +Lowell +Vincent +Warren +Bruce +Dennis +Glen +Hoyt +Major +Noah +Owen +Perry +Alexander +Carlos +Joel +Judge +Lamar +Lucius +Victor +Wilbert +Billy +Edd +Fletcher +Hollis +King +Mark +Max +Olen +Sherman +Simon +Ted +Van +Alonzo +Bob +Boyd +Bud +Coleman +Franklin +Ocie +Ottis +Travis +Anthony +Byron +Cornelius +Huey +Jackson +Kenneth +Maurice +Murray +Olin +Philip +Ross +Stanley +Tommy +Wade +Walker +Wiley +Winston +Abe +Anderson +Billie +Freeman +Jacob +Jay +Mathew +Mitchell +Monroe +Porter +Reuben +Abraham +Burl +Clayton +Dallas +Dalton +Gus +Josh +Lovell +Ruben +Sammie +Vester +Wayne +Andy +Brady +Carlton +Cleo +Dorsey +Emmitt +Ervin +Ezekiel +Henderson +Herschel +Irvin +Isaiah +Isiah +Junior +Kermit +Marcus +Neal +Oneal +Pete +Sanford +Shelby +Steve +Alva +Arlie +Arther +Barney +Bernie +Burton +Columbus +Davis +Elisha +Elmore +Emanuel +Felton +Forrest +Hershel +Hiram +Johnson +Luke +Mckinley +Milford +Obie +Orbie +Otto +Randolph +Raymon +Roger +Talmadge +Timothy +Truman +Alvie +Asa +Claudie +Connie +Eli +Elliott +Ezra +Frederick +Gaston +General +Gillis +Huston +Lemuel +Manuel +Mike +Miles +Orval +Orville +Prince +Rex +Richmond +Royce +Rubin +Sim +Solomon +Theo +Thurman +Alto +Aron +Benjiman +Bernice +Bert +Buck +Cary +Clay +Cliff +Comer +Conrad +Damon +Dewitt +Don +Dudley +Elma +Elton +Forest +Foster +Harris +Hudson +Irby +Jefferson +Jimmy +Jonnie +Judson +Lenard +Levi +Lois +Lorenza +Mary +Maxwell +Morgan +Napoleon +Norris +Riley +Rudolph +Rupert +Tony +Wilford +Williams +Wyatt +Abner +Adam +Amon +Augustus +Berry +Bobbie +Braxton +Carroll +Clark +Colvin +Dolphus +Dwight +Early +Elvin +Emmit +Ennis +Gary +Green +Hamp +Haywood +Jenkins +Jess +Jones +Larry +Lucious +Ludie +Lyman +Marlin +Mason +Michael +Ned +Nick +Noble +Nolan +Nolen +Odie +Palmer +Patrick +Pierce +Rogers +Scott +Theron +Tim +Webster +Winfred +Woodie +Woodroe +Adolph +Alford +Almon +Alonza +Alphonso +Alvis +Artis +Bethel +Blanton +Brown +Clem +Clint +Cornelious +Curtiss +Earlie +Edison +Edmund +Eldridge +Elzie +Erskine +Erwin +Essie +Ester +Eunice +Ewell +Ezell +Gaines +Grafton +Graham +Grant +Hamilton +Hampton +Harvie +Hermon +Hosea +Ike +Irving +Ivan +Jerome +Jonathan +Lacy +Lawyer +Leamon +Leland +Lem +Lessie +Lorenzo +Madison +Malcom +Melton +Minnie +Murphy +Murry +Newman +Onnie +Osie +Otha +Pleas +Prentice +Price +Ronald +Ruby +Seaborn +Spencer +Stephen +Sterling +Talmage +Thad +Verbon +Virgle +Walton +Wash +Watson +Willam +Wilton +Woodford +Yancy +James +John +William +Robert +Willie +George +Charles +Henry +Thomas +Joseph +Frank +Walter +Charlie +Joe +Edward +Fred +Arthur +Clarence +Jessie +Samuel +David +Johnnie +Jack +Roy +Albert +Richard +Paul +Howard +Ernest +Jesse +Ralph +Eddie +Carl +Woodrow +Cecil +Sam +Jimmie +Earl +Louis +Lewis +Eugene +Raymond +Andrew +Grady +Oscar +Clyde +Leon +Luther +Marvin +Harry +Herman +Earnest +Lee +Leonard +Herbert +Leroy +Harold +Horace +Homer +Curtis +Daniel +Tom +Edgar +Elbert +Hubert +Ben +Hugh +Marion +Milton +Otis +Chester +Floyd +Oliver +Wilson +Benjamin +Claude +Alfred +Jim +Mack +Willard +Alvin +Clifford +Johnie +Ray +Lawrence +Lonnie +Wallace +Emmett +Lester +Norman +Percy +Allen +Melvin +Nathaniel +Harvey +Leo +Sidney +Will +Bennie +Julius +Theodore +Tommie +Louie +Archie +Bill +Willis +Amos +Dan +Francis +Ira +Isaac +Ollie +Alex +Arnold +Clifton +Grover +Nathan +Virgil +Dewey +Douglas +Elmer +Morris +Rufus +Warren +Calvin +Hoyt +Travis +Cleveland +Donald +Jerry +Wilbur +Aubrey +Gordon +Leslie +Perry +Clinton +Felix +Moses +Wilburn +Loyd +Troy +Wiley +Buford +Glenn +Lloyd +Roosevelt +Vernon +Aaron +Booker +Edwin +Ellis +Johnny +Martin +Ned +Russell +Sylvester +Victor +Billy +Charley +Frederick +Jasper +Odis +Tommy +Dennis +Ed +Franklin +Monroe +Alexander +Alton +Anderson +Dave +Elijah +Ervin +Gilbert +Guy +Jackson +Joel +Kenneth +Major +Arther +Barney +Claud +Coy +Doyle +Jay +Nelson +Reuben +Alonzo +Bernard +Billie +Bruce +Early +Freeman +Glen +Hollis +Jake +Lamar +Lorenzo +Marshall +Millard +Noah +Roland +Ross +Silas +Wilmer +Carlton +Fletcher +Jeff +Julian +Luke +Ottis +Owen +Preston +Wesley +Wilbert +Winston +Columbus +Cornelius +Dock +Freddie +Houston +Mose +Phillip +Sherman +Abraham +Cleo +Elton +Judge +Mark +Neal +Odell +Peter +Sanford +Shelby +Ulysses +Wade +Winfred +Adolph +Arlie +Austin +Clayton +Earlie +Everett +Gerald +Lemuel +Malcolm +Porter +Roscoe +Simon +Stanley +Stephen +Van +Andy +Cary +Coleman +Foster +Henderson +Jimmy +Kermit +Max +Pete +Philip +Raymon +Sammie +Talmadge +Thurman +Alto +Bob +Brady +Comer +Dewitt +Edmond +Gene +Haywood +Hershel +Huey +Jacob +Judson +King +Lenard +Murray +Olen +Price +Rosevelt +Ruben +Ted +Tony +Wayne +Winford +Abe +Adolphus +Anthony +Carlos +Cleve +Emanuel +Ezra +Harrison +Hosea +Ike +Junior +Karl +Levi +Lowell +Matthew +Mitchell +Ocie +Spencer +Augustus +Bernice +Boyd +Bud +Buster +Carter +Claudie +Dallas +Don +Edd +Eli +Emery +Emmitt +Emory +Glover +Harmon +Hermon +Hilliard +Hilton +Irvin +Ivan +Jefferson +Jerome +Josh +Manuel +Maurice +Miles +Napoleon +Odie +Olin +Randolph +Terry +Vincent +Waymon +Woodie +Avery +Bishop +Bobbie +Brown +Carey +Clarance +Cliff +Crawford +Dalton +Edison +Eliga +Elmore +Elvin +Elzie +Erskine +Garfield +Gaston +Grant +Gus +Hiram +Huston +Irby +Jess +Kelly +Larry +Lem +Lemon +Lindsey +Lois +Lorenza +Mary +Mason +Maxie +Michael +Neil +Obie +Otto +Rex +Riley +Rogers +Rupert +Sol +Solomon +Sterling +Watson +Alphonse +Bert +Bobby +Byron +Cullen +Davis +Dee +Elmo +Enoch +Ethridge +Ezekiel +Hardy +Harlan +Harley +Harvie +Isiah +Joshua +Lafayette +Leamon +Lonzo +Lovie +Macon +Mckinley +Milford +Morgan +Nick +Nolan +Orville +Ossie +Pat +Shellie +Taylor +Theron +Verbon +Washington +Wyatt +Zack +Adam +Alvie +Arlin +Aron +Auther +Braxton +Bryant +Burton +Carmon +Carroll +Clark +Collins +Connie +Delbert +Dick +Dorsey +Earle +Edmund +Ellie +Emerson +Emmit +Erwin +Eulas +Eunice +Ewell +Ezell +Forrest +Foy +Gaines +Garland +Gorden +Green +Henery +Howell +Hudson +Isaiah +Jonathan +Jones +Jonnie +Jordan +Kelley +Kyle +Lacy +Lawyer +Lemmie +Levy +Lucian +Marshal +Melton +Mike +Murphy +Murry +Noble +Noel +Oneal +Palmer +Parker +Rayford +Robt +Rubin +Scott +Sim +Smith +Steve +Timothy +Waldo +Walker +Walton +Wash +Welton +Wheeler +Wilfred +Williams +Wilton +James +John +William +Robert +Willie +George +Thomas +Charles +Henry +Joseph +Edward +Frank +Walter +Joe +Charlie +Fred +Arthur +Woodrow +David +Clarence +Roy +Albert +Samuel +Jack +Richard +Howard +Ernest +Paul +Johnnie +Jessie +Cecil +Sam +Raymond +Andrew +Carl +Eddie +Eugene +Ralph +Jesse +Earl +Marvin +Leroy +Leon +Earnest +Herman +Louis +Curtis +Oscar +Floyd +Clyde +Luther +Lewis +Grady +Harold +Jimmie +Lee +Leonard +Harry +Homer +Horace +Melvin +Herbert +Lawrence +Tom +Ben +Wilson +Edgar +Hubert +Jim +Hugh +Tommie +Dan +Harvey +Alfred +Benjamin +Ray +Milton +Otis +Clifford +Daniel +Allen +Lester +Alvin +Willard +Elmer +Johnie +Chester +Claude +Rufus +Will +Elbert +Nathaniel +Bennie +Julius +Mack +Leo +Dewey +Johnny +Marion +Archie +Roosevelt +Oliver +Edwin +Percy +Grover +Morris +Francis +Lonnie +Vernon +Bill +Clifton +Gordon +Guy +Willis +Emmett +Sidney +Isaac +Lloyd +Virgil +Wallace +Ellis +Nathan +Alex +Cleveland +Jerry +Louie +Norman +Ollie +Wilburn +Clinton +Aaron +Mose +Troy +Calvin +Kenneth +Alton +Amos +Arnold +Aubrey +Booker +Millard +Ed +Hoyt +Marshall +Theodore +Franklin +Jasper +Moses +Russell +Buford +Ira +Douglas +Fletcher +Loyd +Preston +Silas +Donald +Wesley +Wilmer +Charley +Hollis +Maurice +Ted +Monroe +Ruben +Sylvester +Travis +Billy +Gerald +Martin +Philip +Wiley +Alexander +Edmond +Ervin +Matthew +Roland +Warren +Bernard +Billie +Coy +Felix +Gilbert +Jake +Bruce +Claud +Elijah +Frederick +Jacob +Sammie +Victor +Boyd +Clayton +Coleman +Freeman +Glen +Jeff +Junior +Noah +Roscoe +Austin +Barney +Cleo +Gaston +General +Owen +Peter +Reuben +Stanley +Winston +Byron +Dock +Edd +Eldridge +Glenn +Joel +Marcus +Nelson +Perry +Phillip +Porter +Quinton +Talmadge +Ulysses +Wilbur +Adolph +Bob +Buster +Freddie +Gene +Gus +Isiah +Julian +Leslie +Lucius +Major +Ned +Solomon +Tommy +Cornelius +Dennis +Dudley +Jay +Malcolm +Max +Milford +Ocie +Ottis +Pete +Truman +Wilbert +Abraham +Anderson +Bobby +Dave +Elmore +Houston +Huey +Irvin +Isaiah +Jimmy +Judge +Mary +Newton +Odis +Price +Taylor +Turner +Bert +Carlton +Columbus +Leamon +Mark +Marlin +Murray +Riley +Spencer +Stephen +Thurman +Alonzo +Anthony +Aron +Connie +Grant +Harris +Hershel +Jewel +Judson +Lenard +Levi +Mathew +Mitchell +Oneal +Orville +Roger +Sherman +Steve +Timothy +Alto +Alvie +Burton +Carlos +Comer +Emanuel +Everett +Ezell +Forrest +Foster +Hilton +Kermit +Lamar +Lemuel +Lorenza +Madison +Odell +Quentin +Raymon +Rudolph +Sol +Theo +Woodie +Angus +Arlie +Augustus +Clark +Claudie +Elton +Emmit +Enoch +Ewell +Foy +Garland +Henderson +Hiram +Howell +Huston +Irby +Larry +Leland +Mckinley +Miles +Olen +Otto +Ross +Shelby +Talmage +Vester +Wade +Walker +Walton +Watson +Wendell +Winford +Wyatt +Zack +Acie +Adrian +Belton +Bernie +Carey +Carter +Collins +Crawford +Dallas +Dewitt +Early +Eli +Eligah +Elzie +Emory +Garfield +Harley +Harrison +Hosie +Jackson +Jefferson +Jerome +Jess +Jonnie +King +Lindsey +Lois +Ludie +Maxie +Michael +Morgan +Myron +Napoleon +Newman +Olin +Orbie +Otha +Pat +Patrick +Pershing +Prince +Royce +Sanford +Thurston +Van +Wilford +Winfred +Alfonso +Allie +Andy +Artie +Artis +Bernice +Bud +Casey +Christopher +Collie +Dorsey +Doyle +Durward +Dwight +Earlie +Elisha +Emerson +Emmitt +Ennis +Fredrick +Green +Hardy +Herschel +Hilliard +Hobert +Hosea +Jamie +Joshua +Lawson +Levie +Lorenzo +Loyal +Lynn +Manuel +Neal +Oren +Palmer +Rosevelt +Royal +Simmie +Simon +Vincent +Virgle +Waymon +Wilton +Abner +Adam +Alphonse +Alphonso +Amon +Arlin +Arvin +Auther +Avery +Benny +Berry +Bishop +Braxton +Bryant +Buren +Burl +Burt +Clarance +Clearence +Clement +Clovis +Cooper +Davis +Dee +Delmar +Dolphus +Edison +Egbert +Emmet +Erskine +Ethel +Ethridge +Euell +Felton +Foch +Forest +Frazier +Gregory +Harmon +Hermon +Hudson +Ivan +Ivory +Jeremiah +Jonas +Josh +Kelly +Langston +Lowell +Luke +Macon +Murry +Nick +Obie +Odie +Ora +Orval +Otho +Randolph +Rayford +Reginald +Rupert +Seth +Theron +Titus +Tony +Washington +Webb +Zeb +Zollie +James +John +William +Robert +Willie +George +Charles +Thomas +Henry +Joseph +Joe +Edward +Walter +Frank +Charlie +Fred +Arthur +Jack +Albert +David +Johnnie +Clarence +Roy +Richard +Jesse +Jessie +Ralph +Eddie +Howard +Paul +Samuel +Raymond +Cecil +Ernest +Louis +Eugene +Marvin +Woodrow +Sam +Oscar +Jimmie +Andrew +Floyd +Lee +Grady +Earnest +Clyde +Luther +Carl +Curtis +Leon +Earl +Herbert +Leroy +Horace +Harry +Jim +Leonard +Lewis +Daniel +Harold +Johnie +Edgar +Hubert +Rufus +Herman +Alfred +Homer +Alvin +Clifford +Melvin +Harvey +Claude +Otis +Tommie +Willard +Lawrence +Nathaniel +Wallace +Dewey +Benjamin +Lester +Tom +Will +Lonnie +Marion +Oliver +Elbert +Ben +Wilson +Chester +Julius +Norman +Roosevelt +Bill +Isaac +Milton +Allen +Elmer +Ray +Mack +Ellis +Leslie +Cleveland +Emmett +Hugh +Leo +Lloyd +Archie +Bennie +Percy +Dan +Grover +Johnny +Ollie +Troy +Virgil +Ira +Theodore +Alex +Amos +Calvin +Edwin +Vernon +Wilburn +Morris +Aaron +Clinton +Ed +Sylvester +Gordon +Loyd +Clifton +Donald +Jerry +Louie +Arnold +Douglas +Francis +Marshall +Nathan +Wesley +Willis +Aubrey +Charley +Dave +Billie +Booker +Dennis +Felix +Guy +Junior +Perry +Russell +Wilbur +Alton +Billy +Gilbert +Monroe +Phillip +Quinton +Sidney +Coy +Julian +Kenneth +Millard +Buford +Preston +Glenn +Jake +Major +Moses +Ned +Warren +Houston +Hoyt +Jasper +Mose +Ottis +Travis +Early +Franklin +Owen +Roscoe +Bernard +Claud +Freddie +Olen +Roland +Bob +Hollis +Jacob +Kermit +Martin +Ocie +Pete +Sherman +Austin +Glen +Lenard +Malcolm +Sammie +Tommy +Bruce +Fletcher +Frederick +Joel +King +Lamar +Nelson +Noah +Odis +Peter +Ted +Alexander +Buster +Clayton +Coleman +Crawford +Ervin +Gus +Jackson +Maurice +Rex +Wiley +Abraham +Barney +Earlie +Elijah +Everett +Felton +Forrest +Gene +Hershel +Jeff +Steve +Alonzo +Anderson +Arther +Cleo +Columbus +Connie +Dock +Edd +Elton +Isiah +Jay +Odell +Vincent +Wilbert +Alvie +Davis +Freeman +General +Haywood +Jerome +Marcus +Mary +Max +Neal +Otto +Philip +Stanley +Wade +Wilmer +Byron +Dallas +Emmitt +Frazier +Herschel +Lowell +Marlin +Milford +Morgan +Reuben +Riley +Ross +Thurman +Winford +Carlos +Cornelius +Gerald +Huey +Judge +Matthew +Mitchell +Napoleon +Quentin +Talmadge +Theo +Timothy +Alfonso +Anthony +Augustus +Brady +Dempsey +Elvin +Hermon +Hiram +Hobert +Jimmy +Levi +Lucius +Mark +Obie +Orville +Rudolph +Sanford +Silas +Victor +Wyatt +Adolph +Alphonso +Aron +Bert +Carlton +Claudie +Cliff +Dillard +Elisha +Ewell +Ezra +Huston +Jefferson +Lonzo +Otha +Patrick +Rayford +Rosevelt +Ruben +Sandy +Shelby +Solomon +Sterling +Wilton +Artis +Dewitt +Garland +Harris +Harrison +Irvin +Jewel +Ronald +Rubin +Verbon +Walker +Winfred +Zack +Abe +Adolphus +Alto +Bud +Clark +Damon +Dee +Dwight +Enoch +Frankie +Hosea +Ike +Jeffie +Jess +Larry +Lawson +Mathew +Newton +Nick +Nolan +Olin +Ora +Palmer +Prince +Randolph +Roger +Shirley +Simon +Talmage +Taylor +Terry +Tillman +Washington +Wilford +Acie +Arvin +Belton +Bobby +Boyd +Braxton +Clemon +Comer +Doyle +Elmore +Emery +Emory +Gaston +Harmon +Hilliard +Johnson +Kelly +Kirby +Lafayette +Leland +Lemuel +Lorenzo +Lovell +Mason +Mike +Murphy +Noble +Oneal +Porter +Thurston +Truman +Ulysses +Walton +Waymon +Winston +Al +Alford +Annie +Arlin +Asa +Auther +Bishop +Burl +Carmon +Chas +Christopher +Cicero +Clem +Cleve +Delbert +Dudley +Edmond +Edmund +Eldon +Elige +Ellie +Emerson +Erskine +Essie +Evans +Ezell +Forest +Fredrick +Grant +Howell +Isadore +Ivory +Jodie +Johny +Jonathan +Jonnie +Joshua +Judson +Leamon +Loyal +Luke +Lynn +Madison +Manuel +Mckinley +Miles +Neil +Odie +Parker +Price +Raymon +Rogers +Royce +Ruby +Sim +Stephen +Theron +Thornton +Tobe +Van +Virgle +Wash +Wilber +Adrian +Alphonse +Alva +Andy +Angus +Audrey +Author +Avery +Benton +Bernice +Bobbie +Bryant +Buck +Buddie +Buel +Callie +Carey +Carter +Colonel +Dalton +Don +Duke +Edison +Eldridge +Elie +Elzie +Emanuel +Embry +Ennis +Ethel +Ethridge +Everette +Ezekiel +Farris +Fulton +Golden +Green +Griffin +Hamilton +Hardy +Harley +Harvie +Hezekiah +Hosie +Irby +Ivan +Ivy +Jewell +Jonas +Jordan +Josephus +Josh +Julious +June +Kelley +Lecil +Levy +Lindsey +Lois +Maxwell +Melton +Murry +Nolen +Orbie +Oren +Oris +Pat +Prentis +Sanders +Sims +Spencer +Spurgeon +Stewart +Tomie +Tony +Turner +Vivian +Wayne +Webster +Westley +Woodie +James +John +William +Robert +Willie +George +Charles +Henry +Thomas +Joseph +Edward +Frank +Joe +Charlie +Walter +Fred +Jack +Clarence +Arthur +David +Albert +Richard +Samuel +Eddie +Johnnie +Roy +Cecil +Howard +Jessie +Eugene +Paul +Raymond +Jesse +Carl +Earl +Andrew +Leon +Ernest +Jimmie +Louis +Ralph +Harold +Herman +Oscar +Harry +Herbert +Sam +Marvin +Clyde +Floyd +Lewis +Curtis +Leonard +Warren +Lee +Leroy +Hubert +Melvin +Daniel +Luther +Horace +Claude +Earnest +Grady +Lawrence +Elbert +Johnie +Otis +Rufus +Hugh +Milton +Lonnie +Willard +Alvin +Homer +Tom +Alfred +Marion +Dewey +Jim +Nathaniel +Norman +Woodrow +Allen +Clifford +Benjamin +Calvin +Wallace +Bill +Edgar +Willis +Virgil +Bennie +Oliver +Isaac +Ray +Will +Leo +Roosevelt +Cleveland +Donald +Harvey +Tommie +Percy +Ben +Julius +Archie +Johnny +Lester +Mack +Alton +Chester +Dan +Elmer +Leslie +Grover +Louie +Jerry +Sidney +Preston +Clifton +Clinton +Ellis +Emmett +Kenneth +Alex +Vernon +Douglas +Russell +Billy +Buford +Edwin +Lloyd +Sylvester +Arnold +Francis +Glenn +Gordon +Morris +Loyd +Moses +Theodore +Aubrey +Franklin +Ollie +Wilson +Aaron +Amos +Dave +Gilbert +Marshall +Millard +Owen +Roscoe +Booker +Hollis +Troy +Wilburn +Felix +Frederick +Mose +Peter +Roland +Wesley +Bernard +Bob +Claud +Clayton +Dennis +Ed +Everett +Guy +Houston +Julian +Nelson +Wilmer +Austin +Billie +Ira +Phillip +Sammie +Travis +Anderson +Hoyt +Jake +Maurice +Ned +Alexander +Jeff +Jimmy +Charley +Nathan +Odis +Quinton +Wiley +Freddie +Joel +Malcolm +Perry +Reuben +Steve +Wilbert +Anthony +Dock +Gerald +Jasper +Junior +Lamar +Major +Murray +Ottis +Tommy +Carlton +Noah +Odell +Sherman +Arther +Cornelius +Harrison +Irvin +Jefferson +Lowell +Ocie +Wilbur +Abraham +Coy +Edmond +Elijah +Emory +Freeman +Jay +Mark +Max +Neal +Olen +Ross +Solomon +Stanley +Victor +Cleo +Dallas +Fletcher +Foster +Isiah +King +Marcus +Monroe +Morgan +Philip +Rudolph +Simon +Ulysses +Alfonso +Buster +Coleman +Columbus +Earlie +Early +Elton +Forrest +Harding +Matthew +Mckinley +Porter +Talmadge +Thurman +Walton +Winston +Barney +Bruce +Comer +Elmo +Elvin +Emmitt +Gus +Leamon +Lenard +Lucius +Martin +Mitchell +Silas +Spencer +Van +Vincent +Alonzo +Alto +Aron +Bernice +Carlos +Claudie +Glen +Huey +Larry +Luke +Milford +Nick +Otto +Rayford +Rex +Ruben +Wade +Winfred +Alvie +Bert +Carey +Doyle +Emanuel +Gene +General +Harris +Haywood +Hershel +Jacob +Judge +Kermit +Lovell +Manuel +Mason +Nolan +Odie +Olin +Pete +Riley +Roger +Rosevelt +Ruby +Rupert +Shelby +Sterling +Taylor +Theo +Turner +Walker +Alphonso +Arlie +Bobbie +Brady +Christopher +Dempsey +Denver +Don +Elmore +Ervin +Garfield +Hiram +Hobert +Isaiah +Johnson +Lawson +Lindsey +Marlin +Obie +Oneal +Rubin +Ted +Truman +Wilford +Abner +Adam +Artis +Blouncie +Boyd +Buddy +Cleve +Conrad +Dalton +Felton +Forest +Foy +Hayden +Hazel +Henderson +Hermon +Joshua +Kelly +Levi +Mike +Orville +Patrick +Ronald +Sanford +Stephen +Terry +Tony +Wilber +Wilton +Alfonza +Allan +Allie +Braxton +Bud +Byron +Carroll +Casey +Cliff +Dudley +Durward +Elliott +Guss +Issac +Jeremiah +Jewel +Lorenza +Maxwell +Michael +Murphy +Nolen +Otha +Ramon +Randall +Randolph +Raymon +Royce +Virgle +Warner +Alonza +Annie +Arlin +Auston +Author +Benjiman +Bishop +Bradley +Buck +Carter +Clark +Cleophus +Clovis +Colonel +Crawford +Dewitt +Dolphus +Dwight +Earle +Elgin +Emmit +Ennis +Enoch +Evan +Ewell +Ezra +Grant +Hardin +Hardy +Herschel +Hilton +Jackson +Jerome +Jess +Jonathan +Jonnie +Lenord +Mary +Olan +Orbie +Ossie +Palmer +Price +Royal +Sammy +Sandy +Saul +Shirley +Smith +Talmage +Timothy +Verbon +Wash +Waymon +Winford +Woodie +Alva +Alvis +Arvel +Asa +Auther +Belton +Berry +Beverly +Bobby +Bryant +Buren +Cary +Cephus +Chesley +Cleven +Collie +Connie +Davis +Edd +Eli +Elwood +Elzie +Eric +Essie +Etheridge +Ezell +Farris +Fate +Frankie +Gradie +Granville +Harmon +Hershell +Hillard +Holland +Horton +Howell +Huston +Ike +Irby +Irving +Jackie +Jean +Jodie +Jonas +Lafayette +Larkin +Laurence +Leander +Lehman +Lemon +Lessie +Levie +Lonie +Lorenzo +Louise +Ludie +Macon +Malcom +Mathew +Milburn +Millie +Newman +Newton +Nicholas +Noble +Norris +Oren +Reese +Reginald +Richmond +Robbie +Rogers +Thaddeus +Tracy +Vester +Washington +Wendell +Wheeler +Wyatt +James +William +John +Robert +Willie +George +Charles +Thomas +Henry +Joseph +Frank +Edward +Walter +Joe +Charlie +Albert +Arthur +Fred +Jack +Clarence +David +Howard +Samuel +Richard +Johnnie +Roy +Ralph +Eugene +Paul +Warren +Ernest +Jessie +Eddie +Cecil +Raymond +Carl +Harold +Jesse +Andrew +Sam +Earl +Leonard +Louis +Jimmie +Marvin +Clyde +Oscar +Harry +Herman +Lee +Earnest +Curtis +Grady +Herbert +Hubert +Leon +Horace +Leroy +Lewis +Luther +Floyd +Milton +Johnie +Alfred +Willard +Daniel +Lawrence +Melvin +Otis +Ben +Homer +Marion +Harvey +Jim +Nathaniel +Rufus +Wallace +Claude +Clifford +Grover +Kenneth +Lester +Julius +Norman +Edgar +Benjamin +Hugh +Calvin +Dewey +Alvin +Tom +Will +Elbert +Mack +Oliver +Allen +Edwin +Leo +Tommie +Bennie +Cleveland +Louie +Aaron +Percy +Donald +Elmer +Billy +Chester +Woodrow +Ray +Roosevelt +Lonnie +Archie +Johnny +Bill +Vernon +Lloyd +Willis +Travis +Clifton +Dan +Hollis +Sidney +Troy +Wilson +Douglas +Virgil +Isaac +Ollie +Amos +Clinton +Ellis +Alton +Billie +Freddie +Gordon +Nathan +Roland +Russell +Abraham +Aubrey +Ed +Emmett +Glenn +Guy +Jerry +Loyd +Wayne +Wiley +Leslie +Francis +Arnold +Wesley +Elijah +Franklin +Wilmer +Hoyt +Ira +Joel +Marshall +Martin +Maurice +Bernard +Buford +Malcolm +Matthew +Phillip +Theodore +Wilbert +Wilburn +Dennis +Junior +Perry +Wilbur +Alex +Charley +Clayton +Fletcher +Millard +Morris +Odell +Ottis +Peter +Preston +Booker +Bruce +Everett +Harding +Julian +Mose +Moses +Pete +Reuben +Sylvester +Claud +Columbus +Gerald +Jasper +Odis +Owen +Bob +Coy +Houston +Ruben +Sammie +Tommy +Coleman +Jake +Lamar +Mitchell +Morgan +Noah +Elvin +Jeff +Wade +Anderson +Anthony +Barney +Erskine +Frederick +Carlton +Dave +Doyle +Earlie +Herschel +Jay +Ned +Ocie +Roscoe +Rudolph +Winford +Cleo +Cornelius +Ervin +Hershel +Huey +Isaiah +Major +Olin +Otha +Rex +Silas +Victor +Winston +Alexander +Felix +Glen +Hardy +Harmon +Jimmy +Leldon +Lenard +Philip +Riley +Van +Bert +Eli +Garland +Jackson +Jacob +Lorenzo +Marcus +Mark +Mary +Max +Monroe +Nelson +Raymon +Simon +Talmadge +Winfred +Audrey +Austin +Bernice +Berry +Bud +Dock +Emanuel +Ezra +Gene +Grant +Gus +Jefferson +Jerome +Lowell +Neal +Olen +Reginald +Ross +Solomon +Stanley +Stephen +Steve +Vester +Clarance +Dalton +Dempsey +Forrest +Fredrick +Freeman +Gilbert +Isiah +King +Lucius +Manuel +Oneal +Ted +Terry +Theo +Timothy +Truman +Andy +Arther +Byron +Dallas +Dewitt +Dwight +Edmond +Eldridge +Elmore +Elton +Enoch +Ford +Foy +General +Hermon +Levi +Lorenza +Miles +Norris +Orville +Roger +Royce +Sherman +Thurman +Alphonso +Burl +Carey +Carroll +Cary +Christopher +Claudie +Clay +Davis +Emmitt +Ezell +Felton +Graham +Harrison +Lovell +Luke +Mckinley +Mike +Newman +Quinton +Rogers +Sanford +Scott +Theron +Abe +Adam +Aron +Auther +Authur +Bedford +Bobbie +Buster +Clark +Early +Edd +Edmund +Elliott +Emmet +Essie +Foster +Hardin +Harvie +Haywood +Hobert +Jewel +Judge +Larry +Leamon +Lemuel +Mason +Michael +Orbie +Otto +Price +Prince +Randall +Randolph +Shelby +Simpson +Smith +Sterling +Thurston +Ulysses +Wash +Wilford +Willam +Wyman +Zollie +Alec +Alford +Alto +Alvis +Angus +Arvel +Boyd +Carlos +Chris +Cleve +Connie +Crawford +Don +Dorsey +Earley +Edison +Elwood +Eric +Evan +Ewell +Gaines +Harris +Hazel +Henery +Hilton +Hiram +Ivan +Jason +Joshua +Lafayette +Lewie +Malcom +Melton +Milford +Murray +Napoleon +Newton +Obie +Porter +Royal +Ruby +Walker +Warner +Wendell +Abner +Alonzo +Arlie +Aubry +Author +Avery +Basil +Benjiman +Benny +Bobby +Boston +Cleophas +Clint +Colonel +Delbert +Deward +Durwood +Edsel +Elisha +Elizabeth +Elmo +Gaston +Harden +Hugo +Jamie +Lecil +Leeroy +Levie +Lon +Lonie +Lucious +Madison +Murry +Nolan +Ossie +Ozell +Rayford +Rosevelt +Shelton +Spurgeon +Steven +Taylor +Turner +Walton +Webster +Wilton +Adolphus +Alfonza +Alonza +Annie +Artis +Augustus +Bishop +Brady +Braxton +Collie +Collins +Conrad +Doris +Dudley +Durward +Elzie +Emerson +Everette +Fate +Glover +Granville +Hardie +Harley +Hurschel +Ike +Irvin +Isac +Jeremiah +Johnson +Johny +Jordan +Judson +Kelley +Levy +Little +Loyce +Lucian +Ludie +Macon +Manley +Marian +Maxwell +Neil +Noel +Nolen +Oren +Palmer +Patrick +Purvis +Rubin +Sampson +Sandy +Shelley +Shellie +Sid +Sullivan +Sydney +Talmage +Tony +Vann +Verbon +Vincent +Virge +Wheeler +Wilfred +Windell +Woodie +Wyatt +James +William +John +Robert +Willie +Charles +George +Henry +Thomas +Joseph +Edward +Joe +Walter +Charlie +Frank +Jack +David +Clarence +Arthur +Fred +Albert +Eugene +Samuel +Roy +Johnnie +Richard +Jessie +Eddie +Paul +Howard +Cecil +Harold +Ernest +Jesse +Ralph +Herman +Earl +Sam +Jimmie +Harry +Marvin +Leon +Andrew +Carl +Raymond +Luther +Earnest +Leroy +Warren +Curtis +Louis +Lee +Horace +Hubert +Otis +Lewis +Clyde +Oscar +Bennie +Floyd +Leonard +Herbert +Melvin +Alfred +Tommie +Milton +Ray +Homer +Willard +Daniel +Grady +Lawrence +Bill +Nathaniel +Rufus +Tom +Wallace +Alvin +Johnie +Billy +Chester +Oliver +Claude +Hugh +Leo +Allen +Benjamin +Jim +Marion +Ellis +Grover +Harvey +Mack +Norman +Calvin +Julius +Dewey +Donald +Lester +Lonnie +Elbert +Elmer +Clifford +Clinton +Dan +Will +Douglas +Edgar +Aaron +Archie +Aubrey +Gordon +Percy +Junior +Lloyd +Woodrow +Jerry +Clifton +Edwin +Emmett +Johnny +Alex +Cleveland +Morris +Roosevelt +Alton +Sidney +Kenneth +Willis +Ben +Francis +Virgil +Bernard +Vernon +Glenn +Isaac +Sylvester +Travis +Elijah +Loyd +Roland +Russell +Troy +Marshall +Houston +Ollie +Wesley +Wilbert +Buford +Jake +Odis +Phillip +Preston +Amos +Ira +Leslie +Louie +Theodore +Ed +Guy +Nathan +Freddie +Gerald +Hollis +Major +Matthew +Millard +Moses +Sammie +Wilson +Alexander +Bruce +Hoyt +Maurice +Rex +Claud +Dave +Ervin +Jasper +Jeff +Perry +Peter +Tommy +Arnold +Billie +Julian +Monroe +Wiley +Bob +Dennis +Franklin +Harrison +Malcolm +Ross +Booker +Clayton +Everett +Felix +Frederick +Huey +Lenard +Martin +Mose +Ruben +Winston +Anderson +Dock +Fletcher +Hershel +Stanley +Victor +Wilbur +Jacob +Michael +Noah +Sherman +Alonzo +Arther +Edmond +Freeman +Isiah +Mark +Max +Nelson +Rayford +Rudolph +Wilburn +Carlos +Coy +Gilbert +Olen +Ottis +Roger +Roscoe +Timothy +Wayne +Austin +Carlton +Columbus +Elton +Emory +Glen +Jackson +Jimmy +Marcus +Odell +Philip +Wilmer +Alvie +Barney +Jay +Lucious +Ned +Royce +Solomon +Thurman +Walker +Buster +Charley +Dalton +Early +Emanuel +Erskine +Irvin +Jefferson +Joel +Judge +Levi +Lucius +Mckinley +Raymon +Reuben +Riley +Rogers +Talmadge +Ulysses +Anthony +Bert +Brady +Cornelius +Gaston +Gene +Hermon +Hiram +Huston +King +Lowell +Marlin +Milford +Owen +Prince +Stephen +Ted +Coleman +Comer +Edison +Edsel +Ezra +Haywood +Issac +Jerome +Lamar +Luke +Murray +Neal +Otto +Pete +Steve +Adam +Andy +Boyd +Burl +Byron +Clark +Cleo +Earlie +Elvin +Emmitt +Felton +Forrest +Garland +General +Isaiah +Lemuel +Lovell +Manuel +Miles +Otha +Silas +Theo +Truman +Woodie +Bernice +Bobbie +Bobby +Clay +Connie +Don +Edd +Eli +Ellie +Ezell +Ford +Foster +Harris +Herschel +Hobert +Larry +Levy +Maxwell +Mike +Obie +Orville +Ossie +Quinton +Sanford +Shelby +Terry +Van +Vincent +Wilton +Arlin +Aron +Augustus +Brooks +Bryant +Bud +Cary +Clarance +Dallas +Davis +Dempsey +Elmore +Foy +Harding +Hardy +Harvie +Hilliard +Hosea +Josh +Lindsey +Mary +Maxie +Napoleon +Ocie +Oneal +Spencer +Thornton +Tomie +Vester +Wade +Walton +Winfred +Abraham +Alfonso +Alto +Auston +Brice +Burt +Carey +Carlis +Clem +Cleophus +Cleve +Collis +Dee +Dewitt +Doyle +Dwight +Earle +Eldridge +Essie +Eulas +Gaines +Gorden +Grant +Guss +Hampton +Harmon +Hayward +Hilton +Ivan +Jonnie +Kermit +Laurence +Leamon +Lois +Mason +Neil +Newton +Nick +Odie +Palmer +Raleigh +Rupert +Shelley +Vernell +Winford +Abe +Abner +Adolph +Amon +Auburn +Author +Burley +Christopher +Claudie +Cliff +Collie +Elisha +Elliott +Eric +Ezekiel +Henderson +Henery +Hosie +Ike +Jodie +Jonah +Karl +Lacy +Lafayette +Leland +Leldon +Lesley +Lewie +Lionel +Malvin +Morgan +Murry +Norris +Olin +Omer +Orval +Parker +Pat +Randolph +Rosevelt +Saul +Simon +Sterling +Tony +Webster +Wendell +Wilfred +Williams +Zack +Alford +Almon +Annie +Artie +Artis +Asa +Audrey +Augusta +Authur +Basil +Bryan +Buddie +Conrad +Crawford +Cullen +Dean +Dexter +Donnie +Dorris +Dudley +Eligah +Elmo +Emil +Ennis +Enoch +Eunice +Everette +Fate +Forest +Fredrick +French +Garfield +Garrett +Giles +Graham +Granville +Green +Gus +Harley +Holland +Howell +Huel +Hughie +Hulon +Ivey +Ivory +Jeremiah +Jewel +Johney +Johnson +Judson +Kyle +Lawson +Lecil +Lenton +Lessie +Lige +Lonzie +Lorenza +Lorenzo +Love +Ludie +Lynn +Macon +Malcom +Mathew +Mitchell +Newman +Noble +Noel +Nolan +Orbie +Patrick +Porter +Price +Rayburn +Reed +Rodney +Ronald +Sandy +Scott +Shelly +Sid +Taylor +Tillman +Verbon +Virgle +Wardell +Wash +Weldon +Wilber +Woodroe +James +William +John +Robert +Willie +Charles +George +Thomas +Henry +Joseph +Frank +Edward +Walter +Joe +Charlie +Fred +Jack +David +Albert +Clarence +Roy +Arthur +Howard +Richard +Samuel +Eddie +Johnnie +Paul +Ralph +Jessie +Eugene +Jimmie +Earl +Harold +Ernest +Carl +Louis +Andrew +Jesse +Raymond +Marvin +Calvin +Sam +Cecil +Luther +Curtis +Herman +Lee +Oscar +Clyde +Lewis +Earnest +Herbert +Leon +Leroy +Daniel +Floyd +Leonard +Horace +Lawrence +Hubert +Melvin +Grady +Billy +Homer +Warren +Dewey +Harry +Tommie +Clifford +Edgar +Otis +Alfred +Claude +Wallace +Marion +Milton +Ray +Johnie +Norman +Benjamin +Johnny +Leo +Rufus +Jim +Oliver +Tom +Will +Ben +Bennie +Bill +Elmer +Alvin +Lester +Donald +Allen +Hugh +Nathaniel +Willis +Archie +Elbert +Mack +Chester +Dan +Morris +Willard +Roosevelt +Douglas +Louie +Harvey +Wilson +Jerry +Percy +Julius +Kenneth +Virgil +Grover +Lloyd +Wiley +Ellis +Clifton +Vernon +Edwin +Gordon +Francis +Freddie +Aubrey +Lonnie +Ollie +Loyd +Preston +Sidney +Sylvester +Woodrow +Alton +Buford +Dave +Isaac +Emmett +Ira +Nathan +Arnold +Bernard +Peter +Wilburn +Aaron +Gilbert +Theodore +Wilbur +Amos +Joel +Junior +Leslie +Hoyt +Troy +Wesley +Alex +Booker +Cleveland +Glenn +Steve +Bruce +Clayton +Ed +Everett +Moses +Odis +Travis +Wilmer +Guy +Jasper +Jeff +Billie +Claud +Dennis +Elijah +Malcolm +Martin +Millard +Olen +Russell +Tommy +Columbus +Fletcher +Franklin +Hollis +Jimmy +Neal +Perry +Roscoe +Gene +Glen +Lamar +Nelson +Phillip +Ruben +Frederick +Monroe +Rudolph +Buster +Houston +Marshall +Mitchell +Noah +Odell +Reuben +Stanley +Bob +Bobby +Ervin +Hershel +Jacob +Lenard +Maurice +Mose +Ottis +Riley +Roland +Alexander +Byron +Gerald +Isiah +Julian +Rex +Doyle +Felix +Jackson +Jefferson +Marcus +Matthew +Max +Napoleon +Shelby +Talmadge +Arther +Claudie +Clinton +Coleman +Coy +Harrison +Jake +Mark +Randolph +Sammie +Timothy +Victor +Vincent +Wilbert +Winford +Abraham +Alonzo +Bert +Charley +Cornelius +Forrest +Haywood +Larry +Major +Otto +Sherman +Solomon +Ulysses +Walker +Winfred +Winston +Adrian +Aron +Clark +Cleo +Emmitt +Hermon +Jay +Jerome +Joshua +Lowell +Manuel +Thurman +Delbert +Edsel +Elisha +Elton +Forest +Hiram +Huey +Ike +Irvin +Judge +Mckinley +Orville +Owen +Stephen +Ted +Abe +Adolph +Anderson +Anthony +Barney +Bernice +Dallas +Dwight +Early +Eldridge +Ezell +Foy +Fredrick +General +Herschel +Lorenza +Madison +Mary +Maxie +Miles +Murray +Pete +Prince +Reginald +Rubin +Silas +Terry +Tillman +Vester +Bobbie +Boyd +Brady +Carlton +Earlie +Edd +Edmond +Enoch +Erskine +Everette +Ezra +Ford +Freeman +Harvie +Henderson +Joesph +Lucius +Obie +Ocie +Porter +Raymon +Roger +Sanford +Spencer +Theo +Alva +Augustus +Buck +Buddy +Clarance +Clem +Cleophus +Connie +Dock +Dozier +Elmo +Graham +Granville +Gus +Hobert +Huston +Judson +King +Lacy +Leland +Luke +Mathew +Murphy +Ned +Nolen +Oneal +Patrick +Ronald +Taylor +Truman +Webster +Abner +Alonza +Austin +Bennett +Bonnie +Bud +Buddie +Carlos +Carter +Christopher +Clemon +Dee +Don +Garland +Guss +Harlan +Hayward +Hosea +Hosie +Isaiah +Jewel +Johny +Jonnie +Kelly +Lavern +Lindsey +Lois +Lucious +Murry +Newton +Ossie +Otha +Palmer +Royce +Simon +Tony +Van +Vivian +Wade +Williams +Wilton +Acie +Alford +Alphonso +Alto +Annie +Auther +Belton +Benny +Bradford +Clay +Clide +Davis +Dewitt +Dolphus +Edmund +Elmore +Elvin +Emanuel +Erwin +Felton +Foster +Frankie +Gaines +Garfield +Grant +Harris +Hiawatha +Hilary +Hilton +Ivory +Jewell +Jones +Josh +Lafayette +Larence +Lawson +Lincoln +Lionel +Lovell +Loyal +Lynn +Maxwell +Michael +Milford +Norris +Olan +Pat +Quinton +Rayburn +Rayford +Richmond +Rosco +Rosevelt +Royal +Saul +Sterling +Verbon +Wilford +Alfonzo +Allie +Alvie +Amon +Angelo +Arlin +Asa +Bascom +Basil +Benjaman +Bernie +Berry +Brandon +Bryant +Burl +Burnice +Cary +Cody +Coolidge +Crawford +Dale +Dalton +Darwin +Davie +Dempsey +Denson +Doris +Doyal +Dudley +Elvis +Emery +Emmit +Evan +Garvin +Gaston +Gorden +Green +Hamp +Hampton +Hardy +Harmon +Hilliard +Jamie +Jc +Johnson +Jonathan +Kelley +Kirk +Leamon +Lecil +Levi +Lillie +Lucian +Mahlon +Melton +Mike +Neil +Olin +Opal +Oren +Philip +Reubin +Ross +Rueben +Sammy +Sandy +Scott +Shelly +Talmage +Theron +Tolbert +Turner +Wash +Watson +Wendell +Wylie +Wyman +James +William +John +Robert +Willie +Charles +George +Henry +Thomas +Joseph +Edward +Walter +Joe +Charlie +Frank +Jack +Richard +Roy +Fred +David +Albert +Calvin +Clarence +Arthur +Howard +Johnnie +Samuel +Eddie +Ralph +Eugene +Harold +Paul +Jessie +Jesse +Raymond +Earl +Ernest +Marvin +Jimmie +Carl +Billy +Andrew +Cecil +Sam +Earnest +Lee +Leroy +Louis +Curtis +Leon +Lewis +Floyd +Oscar +Herbert +Horace +Melvin +Leonard +Luther +Herman +Daniel +Clyde +Milton +Clifford +Donald +Alfred +Claude +Elbert +Harry +Norman +Grady +Ray +Hubert +Kenneth +Edgar +Homer +Otis +Rufus +Lonnie +Tom +Ben +Hugh +Lawrence +Benjamin +Harvey +Tommie +Alvin +Nathaniel +Marion +Allen +Elmer +Junior +Jim +Johnny +Wallace +Bennie +Bill +Jerry +Johnie +Percy +Leo +Dewey +Douglas +Oliver +Willis +Grover +Lester +Roosevelt +Leslie +Morris +Sidney +Woodrow +Cleveland +Glenn +Will +Archie +Julius +Willard +Dan +Ellis +Vernon +Arnold +Aubrey +Alex +Billie +Clifton +Gordon +Isaac +Warren +Wesley +Chester +Edwin +Louie +Nathan +Ollie +Freddie +Mack +Russell +Troy +Aaron +Buford +Emmett +Theodore +Virgil +Alton +Amos +Loyd +Clinton +Gerald +Bobby +Booker +Guy +Ira +Monroe +Tommy +Wilson +Elijah +Millard +Roland +Hoyt +Lloyd +Perry +Dennis +Wilbur +Bernard +Coy +Lamar +Phillip +Reuben +Sylvester +Clayton +Francis +Franklin +Jacob +Moses +Rudolph +Bob +Ed +Felix +Gilbert +Hollis +Travis +Wilburn +Wilmer +Gene +Huey +Martin +Sammie +Wiley +Claud +Jefferson +Lowell +Odell +Talmadge +Abraham +Erskine +Fletcher +Joel +Matthew +Preston +Alexander +Bruce +Houston +Isiah +Jake +Jasper +Marshall +Ruben +Byron +Dave +Ervin +Isaiah +Jackson +Major +Malcolm +Everett +Jeff +Max +Mose +Ned +Stanley +Ulysses +Wilbert +Alonzo +Carlton +Charley +Cleo +Frederick +Harrison +Ike +Jimmy +Lenard +Marlin +Milford +Olen +Owen +Ted +Winston +Bert +Carlos +Cornelius +Dock +Don +Emory +Nelson +Noah +Obie +Ocie +Peter +Rex +Riley +Sterling +Steve +Thurman +Elvin +Irby +Jerome +Manuel +Maurice +Mitchell +Odis +Oneal +Otto +Sherman +Anthony +Arther +Early +Edsel +Emmitt +Foy +Garland +Glen +Harvie +Herschel +Julian +King +Levi +Luke +Roscoe +Silas +Wayne +Austin +Brady +Bryant +Coleman +Columbus +Edd +Edmond +Elton +Hershel +Hiram +Larry +Lincoln +Miles +Murray +Norris +Roger +Ross +Simon +Terry +Wilton +Alford +Alvis +Avery +Boyd +Cleophus +Coolidge +Dallas +Davis +Doyle +Evans +Foster +Judge +Mark +Maxie +Morgan +Neal +Pete +Rubin +Stephen +Theron +Truman +Van +Victor +Alto +Anderson +Belton +Emanuel +Felton +Forrest +Fredrick +Gus +Harris +Lecil +Michael +Otha +Patrick +Philip +Porter +Prince +Rayford +Raymon +Wade +Winford +Winfred +Woodie +Andy +Aron +Barney +Bonnie +Buddy +Carey +Earlie +Eldridge +Elmore +Enoch +Farris +Grant +Henderson +Joshua +Leamon +Lynn +Mary +Mckinley +Neil +Noble +Nolan +Ottis +Pat +Ronald +Royce +Sanford +Solomon +Talmage +Walker +Adam +Adolph +Adrian +Alvie +Annie +Auther +Bobbie +Bryce +Buster +Connie +Eldred +Emery +Ezell +Ezra +Freeman +Guss +Hansel +Harley +Hayward +Hermon +Irvin +Issac +Jeremiah +Jones +Kermit +Kyle +Lorenzo +Malcom +Marcus +Mason +Murphy +Murry +Napoleon +Quinton +Rogers +Sandy +Shelby +Sim +Theo +Timothy +Turner +Wyatt +Alva +Arlie +Artis +Bernice +Buck +Bud +Burnice +Carter +Clint +Comer +Darrell +Dewitt +Dudley +Dwight +Elisha +Elmo +Ezekiel +Gaines +Garfield +Golden +Hamilton +Harmon +Hilton +Hobert +Huel +Ivory +Jewel +Kelly +Leland +Leldon +Lemon +Lorenza +Louise +Lovell +Lyman +Madison +Maxwell +Mildred +Newman +Newton +Odie +Olan +Orville +Ozell +Phil +Ransom +Richmond +Russel +Tony +Vester +Vincent +Wardell +Zack +Addison +Adolphus +Alan +Angelo +Asa +Author +Benard +Benton +Burton +Carrol +Cary +Cephus +Christopher +Clark +Clemmie +Cleophas +Cleve +Collie +Crawford +Dillard +Dorsey +Durward +Elliot +Elliott +Erwin +Ewell +Frankie +Frazier +General +Haywood +Hosea +Hubbard +Irving +Jean +Jethro +Jodie +Jonnie +Lawson +Lelton +Lemuel +Lois +Lonzo +Lucius +Marcel +Namon +Oather +Radford +Randolph +Rosco +Rosevelt +Royal +Rozell +Shelton +Terrell +Tim +Verbon +Warner +Waymon +Weldon +Wendell +Wilford +James +John +William +Robert +Willie +Charles +George +Thomas +Henry +Joseph +Edward +Joe +Walter +Frank +Charlie +Jack +Roy +Clarence +David +Paul +Richard +Fred +Arthur +Eddie +Albert +Harold +Johnnie +Calvin +Jessie +Howard +Billy +Samuel +Ralph +Eugene +Cecil +Ernest +Louis +Carl +Jimmie +Raymond +Andrew +Sam +Earl +Jesse +Marvin +Floyd +Leon +Earnest +Herbert +Lewis +Oscar +Herman +Clyde +Horace +Curtis +Hubert +Lee +Otis +Leroy +Alvin +Clifford +Homer +Luther +Harry +Grady +Melvin +Tommie +Lawrence +Milton +Alfred +Daniel +Donald +Marion +Claude +Leonard +Dewey +Nathaniel +Tom +Kenneth +Allen +Edgar +Jim +Lester +Ray +Harvey +Hugh +Bennie +Willard +Benjamin +Johnny +Junior +Percy +Johnie +Chester +Norman +Roosevelt +Warren +Oliver +Will +Vernon +Wallace +Alton +Billie +Leo +Elbert +Gordon +Lonnie +Rufus +Theodore +Willis +Edwin +Mack +Bill +Sidney +Bobby +Grover +Douglas +Aaron +Arnold +Aubrey +Ben +Lloyd +Cleveland +Clifton +Dan +Buford +Ellis +Elmer +Jimmy +Julius +Leslie +Ollie +Archie +Gerald +Jerry +Morris +Franklin +Isaac +Louie +Nathan +Virgil +Emmett +Roland +Clinton +Freddie +Ed +Jasper +Tommy +Loyd +Russell +Woodrow +Bernard +Gene +Martin +Wesley +Wilbert +Wilbur +Wilson +Amos +Clayton +Houston +Marshall +Sammie +Elijah +Perry +Bruce +Francis +Matthew +Millard +Sylvester +Gilbert +Glenn +Alex +Guy +Maurice +Travis +Anderson +Ira +Jackson +Julian +Preston +Rex +Troy +Booker +Talmadge +Wayne +Barney +Harrison +Hollis +Lamar +Monroe +Nelson +Claud +Dave +Dennis +Dock +Ervin +Moses +Reuben +Rudolph +Wiley +Everett +Felix +Frederick +Hershel +Hoyt +Joel +Max +Philip +Rayford +Abraham +Byron +Carlton +Cleo +Columbus +Doyle +Mitchell +Odis +Victor +Auther +Don +Fletcher +Jake +Jefferson +Malcolm +Odell +Peter +Sherman +Solomon +Stanley +Timothy +Wilburn +Austin +Charley +Cornelius +Coy +Ezell +Glen +Jeff +King +Levi +Milford +Noah +Ocie +Phillip +Ted +Thurman +Ulysses +Wilmer +Alonzo +Edsel +Garland +Owen +Adam +Alexander +Bob +Dallas +Erskine +Foster +Marlin +Miles +Morgan +Neal +Ned +Ottis +Otto +Roscoe +Ruben +Silas +Winston +Annie +Benny +Edd +Emanuel +Emmitt +Emory +Everette +Freeman +Herschel +Isiah +Jacob +Manuel +Nolan +Orville +Reginald +Shelby +Steve +Truman +Walker +Winfred +Al +Arther +Clark +Elvin +Hermon +Hiram +Huey +Larry +Lenard +Mary +Raymon +Ronald +Ross +Simon +Alan +Andy +Aron +Artis +Augustus +Bobbie +Brady +Bryant +Carlos +Coleman +Dewitt +Dwight +Eldridge +Elton +Felton +Hobert +Jerome +Judge +Kermit +Mathew +Napoleon +Prince +Alford +Alto +Bryan +Clarance +Davis +Durward +Emmit +Forrest +Foy +Harris +Hayward +Henderson +Leland +Lorenzo +Lucius +Luke +Major +Mason +Obie +Olen +Pete +Porter +Randolph +Roger +Stephen +Terry +Alva +Bernice +Buster +Dalton +Donnie +Elisha +Ellie +Elmore +Ezra +Frankie +Grant +Hilton +Howell +Irvin +Jonas +Leamon +Lorenza +Marcus +Mark +Michael +Mose +Myron +Noble +Oneal +Ramon +Rayburn +Theron +Tony +Wade +Winford +Adrian +Anthony +Bert +Christopher +Claudie +Cliff +Coolidge +Delmer +Earlie +Early +Elliott +Fredrick +Hal +Hillard +Ike +Irving +Jay +Johnson +Lawson +Lecil +Lowell +Macon +Murray +Norris +Ossie +Palmer +Patrick +Royce +Sanford +Turner +Abe +Alfonso +Alphonso +Alvie +Angelo +Ardis +Arlie +Berry +Boyd +Braxton +Buddy +Carey +Carroll +Cleophus +Comer +Connie +Dillard +Emery +Ewell +Gaines +General +Griffin +Gus +Hardy +Harmon +Haywood +Hilliard +Irwin +Isaiah +Isom +Jackie +Jewel +Jewell +Leldon +Levie +Levy +Lindsey +Lionel +Lucian +Manual +Mckinley +Miller +Murry +Noel +Ollis +Ora +Ozzie +Quinton +Radford +Randall +Ruel +Sandy +Scott +Spencer +Theo +Verbon +Vester +Wilber +Wilford +Wilton +Adolph +Aubry +Author +Avery +Beatrice +Bennett +Bishop +Bonnie +Burl +Burley +Carson +Carter +Clarnce +Clay +Cleve +Coley +Curry +Dale +Darrell +Dick +Dudley +Duke +Eli +Elige +Erwin +Ford +Forest +Frazier +Green +Hamp +Hansel +Harlan +Harley +Harvie +Jones +Judson +Kelly +Knox +Levert +Lincoln +Lovell +Maxwell +Murphy +Nick +Olan +Olin +Rosevelt +Rubin +Russel +Sampson +Shelley +Shelly +Shelton +Tomie +Vincent +Ward +Wash +Washington +Waymon +Wendell +Wylie +Wyman +Zack +James +William +John +Robert +Willie +Charles +George +Thomas +Henry +Joseph +Joe +Edward +Walter +Frank +Jack +Charlie +Clarence +David +Fred +Richard +Paul +Johnnie +Roy +Albert +Billy +Eugene +Harold +Samuel +Howard +Arthur +Eddie +Ralph +Cecil +Raymond +Jessie +Ernest +Carl +Calvin +Jimmie +Sam +Andrew +Floyd +Earl +Curtis +Louis +Clyde +Jesse +Leon +Herman +Lee +Marvin +Leroy +Earnest +Harry +Herbert +Horace +Leonard +Donald +Luther +Hubert +Oscar +Claude +Lewis +Melvin +Grady +Milton +Johnny +Alfred +Wallace +Homer +Alvin +Ray +Daniel +Norman +Bennie +Lawrence +Nathaniel +Tom +Kenneth +Clifford +Johnie +Roosevelt +Otis +Vernon +Benjamin +Edgar +Mack +Rufus +Jim +Lester +Allen +Junior +Marion +Morris +Billie +Chester +Edwin +Elbert +Tommie +Hugh +Ben +Bill +Will +Aubrey +Gerald +Harvey +Dan +Willard +Gordon +Grover +Warren +Sidney +Bobby +Clifton +Archie +Elmer +Jerry +Louie +Theodore +Bernard +Julius +Oliver +Lonnie +Dewey +Douglas +Lloyd +Aaron +Glenn +Jimmy +Alton +Arnold +Cleveland +Gene +Wesley +Percy +Isaac +Leo +Nathan +Sylvester +Ellis +Moses +Willis +Freddie +Glen +Guy +Jasper +Leslie +Loyd +Virgil +Amos +Emmett +Ollie +Preston +Lamar +Wilson +Clinton +Sammie +Stanley +Alex +Ed +Russell +Tommy +Wilbert +Dennis +Joel +Millard +Buford +Claud +Perry +Rudolph +Troy +Wilbur +Bob +Elijah +Freeman +Gilbert +Hollis +Major +Peter +Phillip +Coy +Houston +Marshall +Matthew +Max +Milford +Talmadge +Wayne +Wiley +Fletcher +Hoyt +Noah +Travis +Wilburn +Forrest +Francis +Ira +Martin +Charley +Clayton +Cornelius +Jeff +Ruben +Sherman +Anderson +Booker +Frederick +Jefferson +Malcolm +Maurice +Rayford +Reuben +Rex +Roland +Woodrow +Carlton +Ervin +Hershel +Julian +Lenard +Monroe +Mose +Nelson +Odis +Randolph +Ted +Thurman +Ulysses +Van +Wilmer +Abraham +Bobbie +Buster +Edsel +Everett +Huey +Lowell +Mitchell +Neal +Victor +Cleo +Coleman +Elton +Jacob +Judge +Lucius +Marcus +Mark +Solomon +Alexander +Anthony +Bibb +Bruce +Columbus +Dalton +Doyle +Dwight +Gus +King +Manuel +Mary +Odell +Steve +Winston +Aron +Auther +Bert +Byron +Carlos +Don +Emmitt +Foy +Harrison +Jake +Olen +Ottis +Owen +Prince +Timothy +Alonzo +Alva +Bryant +Hugo +Lorenzo +Miles +Otha +Raymon +Ronald +Wilford +Austin +Barney +Coolidge +Dallas +Davis +Felix +Haywood +Hillard +Larry +Ned +Neil +Riley +Roscoe +Royce +Sanford +Simon +Virgle +Wilton +Winford +Woodie +Adolph +Dave +Dewitt +Dock +Earlie +Edd +Elzie +Emmit +Franklin +Irvin +Jackson +Jay +Jerome +Judson +Levi +Lucious +Luke +Marlin +Mathew +Otto +Verbon +Vester +Williams +Winfred +Alvie +Arther +Benny +Clarance +Clenton +Connie +Edmond +Eldridge +Elvin +Emanuel +Erskine +Herschel +Hosea +Isiah +Ivan +Leamon +Morgan +Murray +Murry +Newton +Obie +Roger +Ross +Sammy +Sandy +Shelby +Silas +Terry +Theo +Adam +Adolphus +Algie +Bennett +Brooks +Carey +Ezell +Foster +General +Harris +Hiram +Ike +Isaiah +Madison +Michael +Napoleon +Oneal +Philip +Ramon +Stephen +Turner +Abe +Alphonso +Arlie +Avery +Benjiman +Brady +Buel +Carson +Claudie +Clint +Comer +Damon +Dempsey +Doris +Edison +Emery +Enoch +Ford +Green +Hayward +Henderson +Hosie +Jonathan +Josh +Leland +Maxie +Mckinley +Miller +Murphy +Newman +Nolan +Orval +Porter +Quinton +Richmond +Rubin +Sim +Taylor +Truman +Abner +Alfonso +Alto +Arvil +Basil +Berry +Bethel +Buddy +Cliff +Cornelious +Cornell +Davie +Delbert +Durward +Early +Eldon +Eli +Eligah +Elisha +Elliott +Elmore +Emory +Everette +Ewell +Ezra +Fredrick +Garland +Glover +Hubbard +Hudson +Huston +Irby +Jackie +Lawerence +Lawson +Lois +Lorenza +Lovell +Marlon +Mason +Olin +Orbie +Orville +Palmer +Patrick +Pleas +Shellie +Spencer +Thurston +Waymon +Wendell +West +Westley +Adrian +Alford +Annie +Arlin +Belton +Benton +Braxton +Bryan +Cary +Clanton +Clark +Coley +Crawford +Dean +Dick +Doyce +Dudley +Eldred +Erby +Eric +Ezekiel +Fate +Felton +Garvin +Hardy +Harmon +Hayden +Herschell +Hilton +Irving +Issac +Johnson +Julious +Karl +Kelley +Kelly +Lecil +Lemuel +Levert +Levie +Lincoln +Lindsey +Lionel +Loyal +Manley +Margaret +Marshel +Mitchel +Mizell +Noble +Norris +Obbie +Ocie +Odus +Ollis +Pete +Rosevelt +Scott +Shelley +Shelton +Terrell +Theron +Tollie +Tony +Verlon +Walker +Wheeler +Willian +Wyatt +James +William +John +Robert +Willie +Charles +George +Thomas +Henry +Joseph +Joe +Edward +Jack +Frank +Walter +Billy +Charlie +Fred +Clarence +Richard +Arthur +David +Albert +Roy +Eugene +Johnnie +Harold +Eddie +Paul +Howard +Samuel +Jessie +Ralph +Earl +Cecil +Raymond +Jimmie +Jesse +Sam +Carl +Leon +Louis +Floyd +Herbert +Andrew +Curtis +Calvin +Ernest +Herman +Marvin +Donald +Melvin +Harry +Leroy +Clyde +Lee +Luther +Oscar +Alfred +Earnest +Horace +Kenneth +Lewis +Tommie +Clifford +Johnny +Leonard +Junior +Wallace +Grady +Hubert +Ray +Claude +Norman +Milton +Bobby +Homer +Rufus +Lawrence +Douglas +Daniel +Lonnie +Dan +Otis +Alvin +Nathaniel +Bill +Billie +Harvey +Hugh +Gerald +Lester +Tom +Edwin +Johnie +Elmer +Jim +Bennie +Leo +Allen +Benjamin +Gene +Willard +Percy +Roosevelt +Archie +Jerry +Marion +Lloyd +Freddie +Jimmy +Oliver +Ben +Edgar +Gordon +Chester +Mack +Clifton +Elbert +Morris +Glenn +Julius +Will +Willis +Clinton +Vernon +Dewey +Ellis +Isaac +Tommy +Alton +Amos +Alex +Cleveland +Leslie +Virgil +Wesley +Rudolph +Russell +Sidney +Guy +Troy +Grover +Wilbur +Arnold +Aubrey +Emmett +Theodore +Louie +Bernard +Sylvester +Wiley +Booker +Roland +Buford +Francis +Jasper +Loyd +Warren +Abraham +Ed +Hoyt +Austin +Jerome +Julian +Monroe +Perry +Travis +Wilbert +Dennis +Nathan +Ollie +Wilburn +Moses +Phillip +Lowell +Sammie +Bob +Columbus +Joel +Matthew +Millard +Noah +Odis +Peter +Aaron +Elijah +Lamar +Winston +Claud +Clayton +Everett +Marshall +Martin +Mose +Oneal +Wade +Wayne +Edsel +Frederick +Jake +Preston +Rex +Ronald +Sherman +Stanley +Wilmer +Wilson +Anthony +Carlton +Cleo +Dave +Felix +Gilbert +Houston +Levi +Major +Max +Odell +Pete +Dock +Hermon +Hershel +Raymon +Reuben +Ross +Arther +Don +Doyle +Emanuel +Franklin +Glen +Hollis +Ira +Jackson +Jacob +Mark +Mary +Maurice +Ned +Ocie +Olen +Owen +Winford +Woodrow +Carlos +Coy +Elvin +Jay +Manuel +Mitchell +Rayford +Ruben +Anderson +Byron +Charley +Cornelius +Dallas +Davis +Ervin +Fletcher +Freeman +Gaines +Jackie +Judge +Malcolm +Randolph +Riley +Roscoe +Silas +Abe +Benny +Bruce +Dewitt +Edmond +Harrison +Henderson +Huey +Leamon +Talmadge +Thurman +Timothy +Alonzo +Andy +Bibb +Dalton +Emory +Forrest +General +Isiah +Milford +Morgan +Nelson +Ottis +Solomon +Stephen +Steve +Woodie +Aron +Auther +Bernice +Bobbie +Buster +Early +Elton +Emmitt +Foster +Frankie +Hosea +Issac +Jeff +Jefferson +King +Larry +Lindbergh +Marcus +Philip +Sammy +Ted +Terry +Van +Vester +Victor +Wilford +Winfred +Basil +Bert +Boyd +Buddy +Coleman +Elliott +Erskine +Fredrick +Harris +Isaiah +Lacy +Lenard +Napoleon +Noble +Simon +Theo +Alfonso +Alphonso +Alvie +Barney +Carey +Carter +Claudie +Dwight +Eldridge +Eli +Forest +Haywood +Herschel +Ike +Kermit +Lindy +Lois +Lucious +Mckinley +Michael +Mike +Neal +Orville +Porter +Quinton +Reginald +Spencer +Vincent +Zack +Alexander +Annie +Artis +Avery +Clark +Crawford +Dudley +Elmo +Elwood +Elzie +Foy +Harmon +Hobert +Lige +Nolan +Otha +Quincy +Sandy +Sanford +Walker +Wash +Adolph +Alford +Alonza +Auburn +Audrey +Bonnie +Brady +Burl +Cliff +Cullen +Edd +Elmore +Enoch +Eual +Evans +Everette +Ezell +Hal +Hansel +Harvie +Howell +Irvin +Jodie +Lawson +Leldon +Lemon +Lucius +Melton +Olan +Ora +Patrick +Prince +Roger +Rosevelt +Shelton +Tony +Truman +Wilber +Williams +Young +Asa +Augustus +Bernie +Berry +Brooks +Burton +Carroll +Casper +Cephus +Clarance +Clay +Clem +Clemon +Cleophus +Cranford +Denver +Dick +Dillard +Earle +Earlie +Gus +Harvy +Hayward +Isom +Jeremiah +Jonnie +Joshua +Leland +Lesley +Lonzo +Louise +Lovell +Lynn +Mathew +Murry +Nolen +Obie +Olin +Raleigh +Rayburn +Royce +Rubin +Sterling +Stewart +Theron +Tillman +Ulysses +Verlon +Vivian +Wardell +Wilton +Adolphus +Alto +Arlie +Arlin +Augusta +Bud +Christopher +Collins +Conrad +Curry +Delmer +Edmund +Eldred +Elie +Elisha +Elma +Elroy +Eric +Felton +Frazier +Green +Harlan +Hazel +Henery +Hudson +Jonah +Kelly +Kyle +Lance +Lemuel +Lenord +Levert +Little +Lorenzo +Lue +Lynwood +Madison +Marlin +Marlon +Mason +Mervin +Miles +Minnie +Mitchel +Newton +Norris +Osie +Otto +Pat +Ramon +Rogers +Shelley +Shirley +Talmage +Taylor +Thad +Ward +Warner +Wayman +Wendell +Willian +James +William +John +Robert +Willie +Charles +George +Thomas +Henry +Edward +Joseph +Billy +Jack +Joe +Frank +Herbert +Walter +Fred +Richard +Charlie +David +Clarence +Roy +Harold +Eugene +Albert +Arthur +Johnnie +Paul +Eddie +Ralph +Raymond +Howard +Jessie +Samuel +Earl +Jimmie +Carl +Donald +Ernest +Jesse +Leon +Clyde +Louis +Cecil +Hubert +Curtis +Melvin +Andrew +Lee +Herman +Earnest +Marvin +Calvin +Alfred +Floyd +Sam +Luther +Leroy +Ray +Horace +Lewis +Bobby +Johnny +Harry +Kenneth +Clifford +Jerry +Leonard +Otis +Gene +Hugh +Milton +Oscar +Roosevelt +Tommie +Billie +Grady +Daniel +Junior +Wallace +Bill +Chester +Edgar +Elbert +Marion +Gerald +Norman +Bennie +Dewey +Harvey +Lawrence +Ben +Lonnie +Vernon +Alvin +Claude +Jimmy +Rufus +Tom +Douglas +Elmer +Nathaniel +Johnie +Willard +Willis +Homer +Jim +Percy +Will +Dan +Grover +Allen +Alton +Edwin +Benjamin +Morris +Oliver +Tommy +Cleveland +Clifton +Archie +Aaron +Lester +Mack +Bernard +Clinton +Loyd +Isaac +Julius +Max +Travis +Troy +Ira +Sidney +Moses +Sylvester +Virgil +Aubrey +Odis +Ollie +Russell +Buford +Freddie +Hoyt +Louie +Sammie +Alex +Bruce +Clayton +Emmett +Marshall +Perry +Lloyd +Doyle +Leo +Theodore +Wilson +Arnold +Dennis +Gordon +Guy +Rudolph +Wesley +Abraham +Amos +Matthew +Roland +Wayne +Francis +Nathan +Preston +Wilbert +Wilburn +Gilbert +Glenn +Hollis +Hoover +Wiley +Ellis +Fletcher +Martin +Wade +Bob +Dave +Elijah +Houston +Julian +Malcolm +Monroe +Phillip +Rayford +Rex +Ronald +Austin +Wilbur +Booker +Ervin +Everett +Franklin +Warren +Carlton +Forrest +Glen +Hershel +Jackson +Jake +Jeff +Joel +Lamar +Milford +Noah +Porter +Sherman +Buster +Don +Maurice +Millard +Peter +Ruben +Charley +Columbus +Major +Olen +Ted +Arther +Frederick +Jacob +Leslie +Ned +Nelson +Wilmer +Woodrow +Huey +Jasper +Lowell +Mose +Philip +Stanley +Thurman +Alonzo +Anderson +Benny +Cleo +Coy +Elvin +Emory +Mary +Neal +Raymon +Al +Alvie +Clarance +Dock +Ed +Edsel +Hiram +Jackie +Jerome +King +Odell +Owen +Reuben +Rubin +Talmadge +Anthony +Aron +Augustus +Barney +Bobbie +Boyd +Claud +Cornelius +Elton +Felix +Lorenza +Manuel +Royce +Steve +Alford +Andy +Berry +Byron +Carlos +Edmond +Emanuel +Erskine +Harrison +Larry +Lenard +Lorenzo +Pete +Roscoe +Ross +Victor +Winfred +Alexander +Coleman +Davis +Early +Eldridge +Emmitt +Fredrick +Haywood +Isiah +Jay +Levi +Marlin +Oneal +Otha +Roger +Rosevelt +Sammy +Spencer +Winford +Winston +Adolphus +Alfonso +Brady +Dallas +Dalton +Edmund +Ezra +Freeman +General +Hayward +Hilliard +Huston +Isaiah +Judson +Marcus +Murray +Obie +Pat +Patrick +Randolph +Riley +Terry +Thurston +Verbon +Wendell +Wilford +Adron +Alphonso +Annie +Artis +Bryant +Collie +Connie +Dwight +Earlie +Elisha +Felton +Frances +Garland +Harley +Harvie +Hermon +Herschel +Hobert +Irvin +Ivory +Jeremiah +Jonnie +Lincoln +Lynn +Mark +Mathew +Morgan +Neil +Olin +Ottis +Quincy +Rayburn +Reginald +Sandy +Solomon +Stephen +Ulysses +Vincent +Arvel +Arvil +Augusta +Author +Bernice +Bert +Bradley +Bud +Carter +Clearence +Dempsey +Doris +Elvis +Enoch +Hershell +Irby +Jefferson +Johny +Kyle +Lister +Lucious +Mason +Mattie +Mckinley +Napoleon +Noble +Nolan +Orville +Palmer +Ramon +Ruby +Silas +Sim +Simon +Thermon +Vester +Ward +Waymon +Webster +Wilton +Woodie +Wyatt +Acie +Adolph +Alonza +Armstead +Asa +Auther +Bradford +Braxton +Buddy +Burl +Carol +Clark +Clem +Cleophus +Cleven +Collis +Dean +Elmore +Emmit +Everette +Ferrell +Foster +Foy +Frankie +Gus +Hal +Harris +Henery +Hosea +Hunter +Ike +Jewel +Johnson +Jonathan +Kirby +Lacy +Leamon +Lucius +Luke +Malcom +Maxie +Maxwell +Melton +Miles +Oren +Quinton +Saul +Spurgeon +Sterling +Taylor +Theron +Turner +Walton +Williams +Abram +Alan +Alfonza +Benjaman +Buck +Christopher +Clemmie +Cliff +Comer +Dillard +Dudley +Edd +Eldon +Ellie +Elmo +Elzie +Erby +Euel +Eunice +Forest +Garfield +Gary +Gaston +Grant +Harlin +Henderson +Hilton +Hozie +Issac +Jame +Jewell +Jordan +Joshua +Judge +Junious +Kermit +Lelton +Lemuel +Lindbergh +Lois +Lovell +Malvin +Michael +Norris +Ocie +Olan +Ozell +Pelham +Price +Rogers +Sammuel +Sampson +Sanford +Sarah +Shelby +Simmie +Timothy +Tracy +Truman +Van +Wilfred +James +William +John +Robert +Willie +Charles +George +Thomas +Billy +Henry +Joe +Edward +Joseph +Jack +Frank +David +Walter +Herbert +Richard +Charlie +Clarence +Roy +Arthur +Eddie +Harold +Paul +Eugene +Fred +Albert +Samuel +Howard +Johnnie +Carl +Ralph +Jessie +Bobby +Donald +Jimmie +Earl +Raymond +Ernest +Curtis +Hubert +Sam +Andrew +Herman +Jesse +Melvin +Clyde +Marvin +Cecil +Leon +Floyd +Lewis +Louis +Lee +Earnest +Leroy +Harry +Junior +Oscar +Leonard +Ray +Horace +Kenneth +Grady +Lawrence +Alfred +Johnny +Bennie +Vernon +Luther +Calvin +Billie +Daniel +Clifford +Harvey +Jimmy +Tommie +Nathaniel +Allen +Johnie +Marion +Wallace +Gene +Hugh +Lester +Milton +Willard +Homer +Jerry +Otis +Roosevelt +Tom +Claude +Alvin +Bill +Benjamin +Lonnie +Douglas +Ben +Elbert +Alton +Edgar +Gerald +Tommy +Willis +Dewey +Leo +Norman +Rufus +Mack +Ellis +Oliver +Freddie +Grover +Jim +Dan +Clifton +Morris +Archie +Louie +Julius +Roland +Russell +Troy +Amos +Buford +Chester +Elmer +Bernard +Will +Edwin +Marshall +Rudolph +Percy +Gordon +Max +Wesley +Glenn +Perry +Theodore +Travis +Emmett +Lloyd +Aubrey +Loyd +Matthew +Sidney +Virgil +Isaac +Nathan +Ollie +Sylvester +Warren +Wilson +Aaron +Wiley +Cleveland +Hollis +Hoover +Moses +Wilbur +Alex +Elijah +Franklin +Guy +Ira +Lamar +Arnold +Booker +Clinton +Sammie +Clayton +Larry +Talmadge +Arther +Bobbie +Coy +Ed +Francis +Leslie +Martin +Maurice +Wilburn +Bob +Dennis +Ervin +Felix +Gilbert +Joel +Mose +Ocie +Wayne +Wilbert +Forrest +Huey +Philip +Rex +Stanley +Austin +Don +Fletcher +Hoyt +Ned +Nelson +Preston +Bruce +Carlton +Jasper +Monroe +Noah +Abraham +Buddy +Byron +Frederick +Glen +Houston +Jake +Jeff +Julian +Marcus +Marlin +Phillip +Reuben +Ruben +Levi +Solomon +Ted +Bert +Dave +Malcolm +Mary +Mckinley +Owen +Peter +Rayford +Ronald +Sammy +Charley +Doyle +Elton +Elvin +Isiah +Jackie +Lowell +Millard +Odis +Patrick +Royce +Emory +Gus +Hershel +Jackson +Odell +Olen +Raymon +Ulysses +Wilmer +Woodrow +Alvie +Anderson +Aron +Buster +Coleman +Dock +Early +Edmond +Hermon +Major +Milford +Mitchell +Napoleon +Orville +Pete +Sherman +Terry +Truman +Van +Wilford +Winston +Alexander +Claud +Cleo +Columbus +Everett +Fredrick +General +Herschel +Jacob +Neal +Oneal +Reginald +Rubin +Steve +Theo +Anthony +Clarance +Ezell +Grant +Haywood +Hobert +Isaiah +Issac +Jay +Jerome +Lacy +Mathew +Maxwell +Murray +Ottis +Otto +Riley +Ross +Simon +Stephen +Thurman +Al +Avery +Boyd +Brady +Carlos +Carter +Connie +Dallas +Dolphus +Dudley +Earlie +Emanuel +Enoch +Erskine +Foy +Frankie +Harris +Ivory +Leland +Lorenza +Mike +Roger +Roscoe +Shelby +Theron +Timothy +Wade +Walker +Waymon +Adolph +Alonzo +Bennett +Bryant +Burl +Carroll +Claudie +Comer +Cornelius +Ezra +Felton +Freeman +Hilton +Hiram +Huston +Ike +Lemuel +Lenard +Mason +Morgan +Otha +Palmer +Porter +Rayburn +Silas +Spencer +Wendell +Alfonso +Alvis +Andy +Barney +Benjiman +Benny +Bernice +Clark +Cleve +Dale +Dalton +Davis +Edd +Edsel +Elisha +Foster +Harley +Irvin +Jefferson +Jeremiah +Johny +Kyle +Lincoln +Lovell +Luke +Malcom +Mark +Michael +Newman +Prince +Roderick +Rosevelt +Teddy +Terrell +Therman +Vester +Winford +Abner +Alford +Allan +Auther +Bishop +Bud +Clay +Cliff +Davie +Dick +Dorothy +Elmore +Elzie +Emmitt +Garland +Graham +Harlon +Harrison +Hayward +Hulon +Jonathan +Jonnie +Lehman +Lindsey +Lindy +Loyal +Lucious +Lugene +Manuel +Newton +Nolan +Norris +Obie +Olin +Othel +Price +Royal +Rupert +Sanford +Shirley +Turner +Verlon +Wyatt +Wyman +Adam +Adolphus +Alf +Alfonzo +Alto +Angelo +Annie +Arlin +Arvie +Arvil +Benton +Bessie +Buren +Carey +Clarnce +Cleophus +Dee +Delbert +Dewitt +Dillard +Doyal +Eldon +Eldred +Elliott +Erskin +Esaw +Euel +Farrell +Hardy +Harrell +Harvie +Hezekiah +Hunter +Hurbert +Jewel +Joesph +Johney +Johnson +Judson +Karl +Kelly +Kermit +King +Leamon +Lesley +Levy +Lois +Lorenzo +Lou +Lynn +Melton +Murry +Neil +Nolen +Raleigh +Randolph +Richmond +Rogers +Sandy +Shellie +Smith +Sterling +Steven +Theodis +Thurmon +Tony +Willam +Williams +Winfred +Woodie +James +William +John +Robert +Charles +Willie +Billy +Thomas +George +Edward +Henry +Joe +Joseph +Jack +Walter +David +Frank +Bobby +Charlie +Richard +Fred +Clarence +Johnnie +Harold +Eugene +Paul +Roy +Albert +Jimmie +Howard +Donald +Arthur +Eddie +Raymond +Ralph +Herbert +Samuel +Earl +Kenneth +Jessie +Curtis +Carl +Cecil +Andrew +Marvin +Jesse +Ernest +Floyd +Ray +Earnest +Louis +Melvin +Herman +Leon +Jerry +Clyde +Johnny +Lee +Leroy +Luther +Milton +Hubert +Alfred +Horace +Sam +Oscar +Billie +Harry +Daniel +Jimmy +Lewis +Grady +Lawrence +Otis +Alvin +Nathaniel +Benjamin +Clifford +Gerald +Tommie +Calvin +Leonard +Roosevelt +Norman +Claude +Junior +Rufus +Bill +Wallace +Hugh +Elbert +Gene +Tommy +Ben +Edgar +Harvey +Allen +Jim +Dewey +Vernon +Leo +Chester +Douglas +Willard +Johnie +Elmer +Lonnie +Tom +Alton +Homer +Amos +Theodore +Dan +Ellis +Morris +Lloyd +Bennie +Clifton +Oliver +Aaron +Gordon +Lester +Troy +Freddie +Marion +Aubrey +Glenn +Mack +Bernard +Edwin +Clinton +Grover +Isaac +Will +Willis +Arnold +Julius +Louie +Archie +Wayne +Roland +Sidney +Travis +Dennis +Hollis +Ollie +Cleveland +Hoyt +Russell +Emmett +Joel +Lamar +Max +Percy +Bobbie +Millard +Wilburn +Loyd +Marshall +Francis +Julian +Ronald +Virgil +Alex +Buford +Guy +Larry +Moses +Wesley +Franklin +Jeff +Phillip +Stanley +Bruce +Clayton +Glen +Maurice +Rayford +Booker +Jackie +Jake +Matthew +Mose +Perry +Ted +Wilbur +Arther +Gilbert +Hershel +Nelson +Odis +Rex +Sammie +Sylvester +Warren +Wiley +Don +Leslie +Lowell +Martin +Nathan +Peter +Preston +Reuben +Rudolph +Wilbert +Anderson +Carlos +Claud +Doyle +Elijah +Fletcher +Ira +Jerome +Neal +Sherman +Abraham +Buddy +Columbus +Frederick +Jackson +Jay +Mary +Ross +Ruben +Thurman +Wilson +Bob +Coy +Dave +Andy +Buster +Ed +Felix +Houston +Major +Malcolm +Milford +Monroe +Sammy +Victor +Winston +Anthony +Carlton +Coleman +Elvin +Hobert +Hoover +Pete +Riley +Alonzo +Barney +Felton +Freeman +Jacob +Marlin +Spencer +Auther +Benny +Cornelius +Edd +Elton +Ervin +Hermon +Herschel +Hiram +Irvin +Leamon +Lenard +Lynn +Marcus +Mark +Mathew +Noah +Vester +Wendell +Woodrow +Abe +Al +Austin +Brady +Byron +Clarance +Forrest +Jasper +Mitchell +Olen +Oneal +Steve +Ulysses +Verlon +Winfred +Annie +Aron +Boyd +Cleo +Connie +Dock +Dwight +Earlie +Edsel +Emmitt +Enoch +Erskine +Huey +Judge +Ned +Philip +Raymon +Roscoe +Royce +Rubin +Terry +Wade +Waymon +Williams +Wilmer +Charley +Clay +Dorothy +Eli +Essie +Foster +Frankie +Garland +Huston +Isiah +Leldon +Newton +Ocie +Orville +Otha +Owen +Prince +Rosevelt +Shirley +Talmage +Van +Winford +Alexander +Alfonza +Alvie +Carroll +Claudie +Dale +Dalton +Davis +Delbert +Edmond +Elisha +Everett +Gus +Lindsey +Lucious +Manuel +Norris +Obie +Ottis +Patrick +Porter +Rogers +Silas +Simon +Virgle +Woodie +Alva +Artis +Aubry +Benjiman +Bert +Burl +Cary +Dallas +Darrell +Donnie +Early +Ellie +Elzie +Emanuel +Eric +Ezekiel +Ezell +Ezra +Ferrell +Fredrick +Gorden +Irby +Jason +Jeremiah +Kelly +Leland +Levi +Lois +Lucius +Mckinley +Murray +Odell +Orbie +Reginald +Roderick +Sandy +Seldon +Stephen +Talmadge +Timothy +Tony +Truman +Turner +Vincent +Wilford +Alonza +Avery +Bernice +Bethel +Bonnie +Braxton +Carter +Conrad +Cranford +Crawford +Danny +Dick +Eldon +Foy +General +Harris +Harrison +Harvie +Haywood +Hubbard +Ike +Isaiah +Kirby +Lovell +Luke +Marshal +Miller +Napoleon +Nolan +Olan +Ollis +Ossie +Otto +Rayburn +Royal +Sampson +Theo +Washington +Wylie +Adolph +Adolphus +Adron +Allan +Alto +Alvis +Arlon +Armon +Auburn +Benton +Boyce +Brown +Cleophus +Curry +Dempsey +Dolphus +Dozier +Duke +Elliott +Elwood +Emory +Erskin +Gary +Grant +Green +Hal +Hardy +Harmon +Harrell +Hayward +Heflin +Henery +Howell +Hulon +Hunter +Isreal +Ivan +Jame +Karl +Kennith +Lamon +Lenord +Lewie +Lon +Lorenza +Mac +Malcom +Marlon +Maxwell +Michael +Mike +Morgan +Myron +Neil +Nolen +Olin +Price +Ruby +Sanford +Shelby +Shelly +Sid +Simmie +Solomon +Sterling +Stewart +Therman +Thurston +Vernie +Walton +Warner +Waylon +Wilton +Wyatt +James +William +John +Robert +Charles +Willie +Billy +Thomas +George +Edward +Joe +Henry +Joseph +Bobby +Jack +David +Walter +Richard +Harold +Frank +Charlie +Fred +Donald +Clarence +Roy +Eugene +Arthur +Jimmie +Eddie +Albert +Johnnie +Samuel +Paul +Howard +Jessie +Ralph +Herbert +Kenneth +Earl +Carl +Raymond +Curtis +Ernest +Johnny +Jesse +Ray +Marvin +Jerry +Leon +Lee +Jimmy +Lewis +Billie +Cecil +Herman +Leroy +Sam +Louis +Andrew +Floyd +Melvin +Clyde +Horace +Hubert +Lawrence +Alfred +Earnest +Harry +Clifford +Oscar +Leonard +Roosevelt +Calvin +Gene +Hugh +Grady +Tommie +Allen +Luther +Douglas +Marion +Tommy +Junior +Bennie +Milton +Willard +Daniel +Norman +Bill +Otis +Vernon +Wallace +Lonnie +Benjamin +Jim +Rufus +Claude +Edgar +Homer +Dewey +Theodore +Dan +Glenn +Johnie +Alton +Ben +Harvey +Percy +Elmer +Nathaniel +Elbert +Freddie +Morris +Emmett +Lloyd +Gordon +Leo +Mack +Gerald +Tom +Alvin +Archie +Aubrey +Edwin +Virgil +Wayne +Clinton +Oliver +Troy +Aaron +Sidney +Don +Lester +Ollie +Travis +Bobbie +Grover +Louie +Loyd +Max +Sammie +Arnold +Franklin +Roland +Will +Bernard +Leslie +Ronald +Alex +Clayton +Julius +Larry +Matthew +Sylvester +Chester +Willis +Bruce +Clifton +Ellis +Isaac +Mary +Phillip +Russell +Dennis +Moses +Wilburn +Olen +Rudolph +Wilbert +Buford +Cleveland +Doyle +Gilbert +Warren +Jackie +Ted +Amos +Anthony +Ira +Julian +Lamar +Preston +Stanley +Austin +Carlton +Elijah +Guy +Hoyt +Marshall +Martin +Roger +Wilbur +Woodrow +Arther +Bob +Booker +Gary +Hollis +Mose +Nathan +Wiley +Alexander +Fletcher +Francis +Houston +Huey +Jake +Joel +Steve +Talmadge +Wilson +Claud +Hershel +Isiah +Jeff +Lowell +Maurice +Ocie +Patrick +Buddy +Coleman +Coy +Elvin +Forrest +Milford +Oneal +Pete +Frederick +Glen +Odell +Perry +Rex +Royce +Theo +Abraham +Aron +Boyd +Charley +Ed +Gus +Sherman +Thurman +Wilmer +Winston +Alonzo +Carlos +Dallas +Dave +Delbert +Ervin +Everett +Foy +Herschel +Jerome +Monroe +Owen +Peter +Vester +Alfonso +Alford +Erskine +Harrison +Jasper +Jay +Malcolm +Millard +Neal +Obie +Ottis +Reginald +Sanford +Timothy +Wesley +Benny +Burl +Columbus +Cornelius +Dale +Felix +Freeman +Garland +King +Major +Murray +Noah +Norris +Philip +Riley +Ruben +Ulysses +Byron +Carroll +Conrad +Dalton +Dock +Edmond +Elton +Ezell +Haywood +Hermon +Jackson +Judge +Judson +Manuel +Marlin +Miles +Morgan +Otha +Rogers +Ross +Wade +Williams +Winford +Alfonzo +Alphonse +Anderson +Crawford +Dwight +Early +Edd +Emmitt +Emory +Foster +Frankie +Harris +Hiram +Hosea +Lindsey +Mitchell +Ned +Nelson +Rayford +Raymon +Reuben +Sammy +Solomon +Terry +Theron +Van +Vincent +Annie +Artis +Barney +Bert +Cary +Claudie +Comer +Edsel +Emmit +Enoch +Felton +Jacob +Jefferson +Leland +Lenard +Levon +Lucius +Manley +Marcus +Mckinley +Nolan +Odis +Pat +Shelton +Sim +Truman +Wilford +Adolphus +Alan +Allan +Alphonso +Arlie +Bonnie +Brady +Buck +Carol +Davis +Dewitt +Donnie +Earlie +Eldred +Eldridge +Euel +Freddy +Gaines +General +Hilton +Hoover +Irby +Irvin +Isaiah +Levi +Lovell +Mark +Mathew +Maxwell +Napoleon +Neil +Noel +Orville +Quinton +Ramon +Richmond +Sterling +Therman +Verbon +Victor +Waymon +Weldon +Winfred +Woodie +Alonza +Alto +Alvis +Auburn +Author +Bryant +Buster +Christopher +Connie +Dorris +Doyal +Dudley +Elisha +Elliott +Elwood +Ezekiel +Hansel +Harmon +Harvie +Hayes +Hosie +Howell +Huston +Ike +Jonnie +Keith +Kelly +Leamon +Leldon +Lemuel +Len +Loy +Mason +Melton +Newman +Orbie +Porter +Quincy +Rayburn +Roderick +Rosevelt +Sampson +Shelby +Simon +Stephen +Talmage +Theodis +Tony +Wash +Wendell +Andy +Augusta +Auther +Berlin +Brooks +Bud +Carter +Clarance +Clarnce +Cleatus +Cleo +Curtiss +Danny +Darrel +Dorman +Durwood +Edmund +Eldon +Emanuel +Emery +Fredrick +Gaston +Grant +Guss +Hazel +Hobert +Ivan +Jethro +Jodie +Jonathan +Kennith +Kermit +Lenord +Levy +Lillie +Lorenzo +Love +Macon +Madison +Michael +Mike +Olin +Otto +Prince +Randolph +Royal +Silas +Spencer +Teddy +Theadore +Tolbert +Turner +Walker +Walton +James +William +John +Robert +Charles +Willie +Billy +George +Thomas +Bobby +Joe +Henry +Edward +Walter +Joseph +Donald +Richard +Frank +David +Harold +Charlie +Jack +Clarence +Eddie +Arthur +Fred +Jimmie +Eugene +Roy +Samuel +Johnnie +Kenneth +Paul +Albert +Howard +Earl +Carl +Ralph +Jimmy +Johnny +Jerry +Curtis +Raymond +Jessie +Herbert +Leon +Franklin +Melvin +Clyde +Leroy +Ernest +Floyd +Louis +Sam +Marvin +Cecil +Roosevelt +Jesse +Ray +Lee +Alfred +Herman +Earnest +Lewis +Gerald +Horace +Andrew +Otis +Tommy +Clifford +Nathaniel +Oscar +Billie +Tommie +Alvin +Hubert +Leonard +Bennie +Daniel +Hugh +Harry +Norman +Milton +Jim +Calvin +Lawrence +Ben +Benjamin +Luther +Allen +Junior +Marion +Wallace +Douglas +Edgar +Grady +Gene +Vernon +Dan +Homer +Claude +Bill +Elbert +Lonnie +Oliver +Rufus +Harvey +Lester +Morris +Archie +Dewey +Max +Clinton +Don +Tom +Aubrey +Mack +Willard +Amos +Freddie +Julius +Nathan +Wayne +Gordon +Johnie +Percy +Theodore +Aaron +Isaac +Joel +Leo +Glenn +Jackie +Ronald +Sylvester +Bobbie +Ellis +Bernard +Lloyd +Travis +Troy +Alton +Buford +Chester +Cleveland +Grover +Larry +Elmer +Willis +Russell +Sammie +Edwin +Matthew +Roland +Wilbert +Preston +Virgil +Gilbert +Leslie +Louie +Loyd +Phillip +Sidney +Clayton +Guy +Hoyt +Royce +Wilson +Clifton +Ira +Julian +Woodrow +Arnold +Hollis +Benny +Bob +Glen +Reuben +Wesley +Booker +Lamar +Nelson +Ted +Alex +Alonzo +Lowell +Martin +Mary +Maurice +Moses +Odell +Ruben +Warren +Wilburn +Wiley +Ed +Elijah +Marshall +Perry +Thurman +Wilbur +Will +Carlton +Doyle +Emmett +Jake +Milford +Odis +Ollie +Peter +Rex +Rudolph +Timothy +Bruce +Buddy +Dave +Frederick +Freeman +Malcolm +Roger +Wade +Felix +Millard +Monroe +Neal +Rayford +Ross +Byron +Columbus +Coy +Gary +Hershel +Olen +Philip +Sherman +Alexander +Houston +Huey +Jasper +Manuel +Rosevelt +Sammy +Simon +Stanley +Winford +Winston +Abraham +Alphonso +Arther +Carroll +Elvin +Fletcher +Francis +Jackson +Jeff +Levi +Nolan +Ocie +Theo +Vester +Anthony +Aron +Austin +Barney +Carlos +Charley +Dennis +Everett +Frankie +Judge +Leland +Mark +Mitchell +Mose +Noah +Otha +Owen +Solomon +Steve +Wendell +Wilmer +Bert +Claud +Eli +Foy +Harrison +Jacob +Major +Patrick +Porter +Talmadge +Adolphus +Cleo +Coleman +Cornelius +Dallas +Dalton +Dwight +Elton +Emory +Hayward +Hermon +Isaiah +Isiah +Jefferson +Jerome +Lynn +Marcus +Norris +Obie +Rayburn +Winfred +Anderson +Arlin +Artis +Avery +Donnie +Early +Emanuel +Emmitt +Ervin +Ezra +Forrest +Freddy +Garland +King +Lenard +Lois +Lorenza +Oneal +Roscoe +Silas +Theron +Alvie +Bonnie +Bryant +Carey +Cleophus +Earlie +Elmore +Fredrick +Harvie +Haywood +Henderson +Kermit +Neil +Riley +Rogers +Sterling +Terry +Ulysses +Victor +Vincent +Wylie +Alfonso +Barnie +Bernice +Bradley +Buster +Claudie +Connie +Dale +Derrell +Eldridge +Hoover +Hosea +Jay +Joshua +Lawson +Leamon +Lewie +Lucious +Luke +Marlin +Michael +Orville +Ottis +Pat +Pete +Randall +Raymon +Rubin +Sandy +Therman +Tony +Washington +Waymon +Abe +Auther +Betty +Braxton +Clay +Dean +Edmund +Edsel +Eligah +Ellie +Elvis +Felton +Harmon +Hillard +Irby +Issac +Mathew +Miles +Morgan +Ned +Olan +Orbie +Ozell +Palmer +Quinton +Rodney +Sanford +Truman +Van +Adolph +Adrian +Alan +Alvis +Annie +Augusta +Augustus +Author +Basil +Buel +Burl +Clarance +Clark +Comer +Davis +Delmer +Dock +Dorothy +Erskine +Ezell +Farris +Green +Hal +Herschel +Hilton +Huston +Jeremiah +Johny +Jonas +Jonathan +Lacy +Lavon +Lillie +Lorenzo +Madison +Mike +Miller +Murray +Napoleon +Olin +Otto +Roderick +Vance +Vernie +Wilber +Williams +Wilton +Woodie +Wyman +Adam +Al +Almon +Alphonse +Alto +Arnie +Authur +Benjaman +Benton +Boyd +Brady +Bud +Burns +Carol +Carrol +Carthel +Cephus +Clearence +Clemmie +Cleophas +Collie +Colvin +Dillard +Earle +Edmond +Elliott +Emery +Enoch +Eric +Erskin +Ester +Evans +Ezekiel +Farrell +Gaines +Gayle +General +Grant +Harley +Hobert +Hobson +Howell +Hugo +Irving +Joesph +Jonnie +Joyce +Julious +Karl +Kelly +Lawerence +Levy +Lincoln +Louise +Lucius +Lugene +Malcom +Margaret +Mckinley +Melton +Myron +Newton +Randolph +Roman +Ruby +Shelton +Smith +Stephen +Taylor +Teddy +Theodis +Thurmon +Titus +Verlon +Walker +Walton +Wilford +Windell +James +William +John +Robert +Charles +Willie +Billy +George +Thomas +Bobby +Joe +Henry +Franklin +Donald +Joseph +Frank +Edward +Walter +David +Jack +Richard +Harold +Charlie +Arthur +Jimmie +Paul +Jimmy +Clarence +Eddie +Jerry +Howard +Roy +Samuel +Eugene +Fred +Roosevelt +Kenneth +Johnny +Johnnie +Carl +Albert +Raymond +Curtis +Jessie +Leon +Earl +Ralph +Ernest +Herman +Cecil +Herbert +Lee +Leroy +Marvin +Louis +Andrew +Melvin +Jesse +Ray +Clyde +Daniel +Floyd +Horace +Earnest +Oscar +Lewis +Gerald +Tommie +Tommy +Alfred +Norman +Sam +Harry +Lawrence +Billie +Calvin +Douglas +Nathaniel +Clifford +Gene +Leonard +Grady +Otis +Wallace +Luther +Milton +Alvin +Edgar +Hubert +Bill +Wayne +Bennie +Vernon +Allen +Elbert +Freddie +Ronald +Jim +Glenn +Harvey +Ben +Benjamin +Homer +Rufus +Theodore +Hugh +Junior +Larry +Marion +Morris +Chester +Lloyd +Lester +Archie +Dan +Percy +Lonnie +Sidney +Alton +Tom +Mack +Wilbert +Claude +Leo +Dewey +Oliver +Will +Clifton +Don +Travis +Amos +Edwin +Elmer +Gordon +Isaac +Johnie +Julius +Max +Virgil +Willis +Moses +Cleveland +Ellis +Wesley +Louie +Rex +Sylvester +Aaron +Bernard +Joel +Lamar +Roland +Benny +Jackie +Nathan +Ollie +Rudolph +Russell +Booker +Peter +Preston +Warren +Wiley +Alex +Dennis +Emmett +Fletcher +Stanley +Willard +Gary +Loyd +Marshall +Maurice +Perry +Phillip +Troy +Wilbur +Arnold +Aubrey +Hollis +Ted +Bobbie +Buddy +Clinton +Grover +Guy +Sammie +Wilburn +Bruce +Buford +Jeff +Rayford +Timothy +Austin +Clayton +Hoyt +Julian +Leslie +Neal +Wilson +Woodrow +Doyle +Huey +Mary +Winston +Coy +Delano +Elijah +Foy +Gilbert +Ira +Jasper +Lowell +Matthew +Talmadge +Wilmer +Alphonso +Carlton +Frederick +Ocie +Odis +Roger +Sammy +Steve +Terry +Van +Abraham +Alonzo +Bob +Everett +Glen +Mose +Pete +Philip +Randolph +Rosevelt +Ruben +Solomon +Anthony +Carlos +Jacob +Michael +Noah +Norris +Patrick +Auther +Cleo +Dallas +Ed +Felix +Francis +Garland +Jerome +Levi +Monroe +Nelson +Odell +Sherman +Wade +Alfonso +Anderson +Arther +Charley +Claud +Early +Forrest +Frankie +Hilton +Houston +Martin +Murray +Olen +Oneal +Royce +Victor +Waymon +Wendell +Barney +Columbus +Dave +Dwight +Elmore +General +Herschel +Hershel +Jake +King +Lenard +Lorenzo +Major +Marcus +Milford +Murphy +Quinton +Riley +Roscoe +Silas +Taylor +Teddy +Ulysses +Byron +Dale +Earlie +Elton +Enoch +Felton +Gus +Hayward +Haywood +Isaiah +Leland +Lovell +Malcolm +Marlin +Millard +Rayburn +Reuben +Rodney +Spencer +Thurman +Truman +Burl +Carroll +Cleophus +Dalton +Elvin +Emmitt +Ervin +Jackson +Lorenza +Napoleon +Noel +Otto +Rubin +Shelby +Stephen +Winfred +Alexander +Alfonza +Alvie +Aron +Bert +Betty +Boyd +Carol +Coleman +Comer +Connie +Cornelius +Davis +Edd +Emory +Fredrick +Henery +Ike +Irby +Irvin +Leamon +Rogers +Warner +Winford +Adolph +Andy +Bonnie +Brady +Bryant +Cary +Clovis +Crawford +Delbert +Donnie +Edsel +Elisha +Elliott +Forest +Harmon +Harris +Harrison +Hermon +Hiram +Isiah +Jay +Jeremiah +Judge +Lynn +Manuel +Mike +Miller +Orville +Owen +Randall +Ronnie +Ross +Theron +Waylon +Wilford +Bernice +Braxton +Buel +Carter +Conrad +Davie +Dean +Dillard +Doyal +Edmond +Eli +Eric +Everette +Freddy +Freeman +Hubbard +Huston +Ivory +Josh +Lafayette +Lomax +Malcom +Mathew +Maxie +Mervin +Myron +Ned +Neil +Noble +Nolan +Porter +Prince +Scott +Sterling +Terrell +Verbon +Adrian +Alfonzo +Alford +Arlon +Arvil +Author +Benton +Berry +Bryan +Clarance +Claudie +Coley +Dannie +Danny +Doris +Dorothy +Doyce +Emma +Emmet +Emmette +Finis +Foster +Frazier +Gaines +Garfield +Hosea +Howell +Issac +Jame +Jewel +Jodie +Jonathan +Jordan +Josephus +Lelton +Lemuel +Lewie +Lois +Lonza +Lucius +Ludie +Maxwell +Mckinley +Nick +Obie +Otha +Palmer +Quincy +Raymon +Reese +Reginald +Sandy +Sarah +Shelley +Shellie +Shelton +Shirley +Simon +Talmage +Theodis +Therman +Thurston +Tim +Tony +Verlon +Walker +Williams +James +William +John +Robert +Charles +Willie +Billy +Bobby +George +Thomas +Joe +Donald +Henry +David +Edward +Joseph +Walter +Harold +Frank +Richard +Jack +Franklin +Jimmy +Jimmie +Jerry +Roy +Clarence +Eddie +Fred +Charlie +Howard +Paul +Arthur +Albert +Eugene +Samuel +Ralph +Kenneth +Johnny +Johnnie +Carl +Raymond +Roosevelt +Jessie +Ernest +Leon +Earl +Curtis +Marvin +Ray +Cecil +Earnest +Herman +Jesse +Tommy +Lee +Gerald +Louis +Melvin +Herbert +Leroy +Floyd +Lewis +Clyde +Lawrence +Andrew +Alfred +Billie +Ronald +Norman +Milton +Sam +Daniel +Gene +Horace +Morris +Luther +Bill +Tommie +Harry +Douglas +Freddie +Wayne +Bennie +Oscar +Calvin +Grady +Hubert +Nathaniel +Alvin +Jim +Leonard +Otis +Hugh +Ben +Wallace +Don +Larry +Rufus +Oliver +Clifford +Harvey +Homer +Lonnie +Allen +Travis +Vernon +Junior +Edgar +Theodore +Marion +Dan +Lester +Tom +Benjamin +Leo +Phillip +Glenn +Claude +Isaac +Aubrey +Johnie +Julius +Jackie +Percy +Alton +Mack +Roland +Willard +Dewey +Elbert +Willis +Arnold +Max +Clifton +Gary +Sammie +Wilbert +Doyle +Elmer +Bobbie +Chester +Russell +Wilburn +Aaron +Dennis +Gordon +Lowell +Amos +Lloyd +Stanley +Troy +Archie +Buford +Edwin +Joel +Sidney +Sylvester +Virgil +Warren +Ellis +Glen +Guy +Leslie +Clinton +Will +Marshall +Ollie +Wesley +Alex +Bernard +Clayton +Matthew +Philip +Ted +Jerome +Rex +Woodrow +Lamar +Moses +Perry +Roger +Winston +Carlton +Cleveland +Elijah +Fletcher +Grover +Hollis +Louie +Loyd +Nathan +Arther +Buddy +Emmett +Preston +Wendell +Alexander +Booker +Huey +Ira +Sammy +Elvin +Martin +Mary +Abraham +Benny +Bob +Bruce +Frederick +Maurice +Monroe +Rayford +Ruben +Rudolph +Wilson +Coy +Ed +Elton +Ervin +Francis +Gilbert +Jasper +Ronnie +Royce +Solomon +Steve +Wiley +Carey +Cleo +Cornelius +Dave +Hoyt +Nelson +Norris +Pete +Ross +Carlos +Davis +Felix +Houston +Jacob +Julian +Major +Ned +Peter +Reuben +Riley +Talmadge +Thurman +Timothy +Tony +Alonzo +Delano +Dwight +Gus +Hermon +Odis +Olen +Pat +Truman +Van +Wade +Winford +Barney +Clark +Dalton +Fredrick +Freeman +Harrison +Hershel +Jake +Jay +Leland +Malcolm +Marcus +Marlin +Millard +Morgan +Neal +Owen +Patrick +Rosevelt +Terry +Wilbur +Betty +Cleophus +Coleman +Columbus +Edmond +Frankie +Harris +Judge +Judson +Levi +Manuel +Oneal +Ottis +Rogers +Ulysses +Wilford +Alphonso +Anthony +Austin +Charley +Clarance +Connie +Erskine +Everett +Garland +Hayward +Jeff +Lorenzo +Michael +Noah +Odell +Raymon +Sherman +Stephen +Vincent +Alford +Alonza +Audrey +Bernie +Buster +Davie +Grant +Isaiah +Jackson +Mark +Mckinley +Mitchell +Neil +Ocie +Otha +Quinton +Reginald +Silas +Spencer +Theodis +Victor +Adolph +Alphonse +Annie +Brady +Burl +Claud +Claudie +Curley +Danny +Earlie +Early +Emory +Foster +Graham +Hal +Herschel +Hosea +Irvin +Isiah +Jame +Jeremiah +Kermit +Lucius +Milford +Noel +Nolan +Orville +Porter +Roscoe +Sanford +Tim +Warner +Wilmer +Wilton +Winfred +Alfonso +Alfonza +Allan +Andy +Aron +Avery +Bernice +Bibb +Boyd +Byron +Cody +Delton +Donnie +Emmitt +Erby +Evans +Ezell +Gaines +Green +Harley +Haywood +Hilton +Ivan +Johny +Jonathan +Jonnie +King +Leamon +Lovell +Mose +Murphy +Otto +Sandy +Shelby +Shirley +Taylor +Tillman +Alvis +Anderson +Artis +Billey +Bonnie +Braxton +Carroll +Cleve +Cliff +Collie +Comer +Dale +Dallas +Delbert +Dock +Doyce +Dudley +Eldridge +Eli +Emanuel +Emery +Eric +Frances +Hobert +Ike +Jefferson +Johnson +Josh +Joshua +Keith +Lafayette +Lawyer +Levon +Lindsey +Louise +Lucious +Luke +Lynn +Marlon +Murray +Noble +Ollis +Ozell +Randolph +Rayburn +Shelly +Shelton +Talmage +Theron +Thornton +Williams +Woodie +Abe +Adolphus +Al +Auburn +Barbara +Barry +Bert +Bryant +Clarnce +Clovis +Darrell +Dee +Delmer +Dewitt +Edd +Everette +Ezra +Gaston +Gearld +Guss +Hardy +Howell +Hurley +Jamie +Jerald +Jewel +Karl +Kennith +Lacy +Lamon +Lenard +Lincoln +Lomax +Lorenza +Loy +Mathew +Maxie +Mervin +Mike +Miller +Myron +Napoleon +Newton +Nick +Obie +Odie +Olin +Othel +Price +Randall +Roderick +Rodney +Ruth +Scott +Sherrill +Sim +Smith +Sonny +Steven +Stewart +Theo +Thurston +Watson +Welton +Young +Zack +Zebedee +James +William +John +Robert +Charles +Willie +Billy +Bobby +George +Thomas +Joe +Donald +Henry +David +Edward +Walter +Jimmy +Joseph +Jerry +Frank +Jack +Richard +Roy +Harold +Jimmie +Eddie +Paul +Charlie +Arthur +Kenneth +Clarence +Fred +Howard +Samuel +Albert +Eugene +Johnny +Johnnie +Raymond +Carl +Franklin +Jessie +Ralph +Jesse +Curtis +Roosevelt +Earnest +Ernest +Leon +Andrew +Cecil +Earl +Herbert +Marvin +Clyde +Lee +Gerald +Lawrence +Ronald +Leroy +Ray +Sam +Herman +Louis +Lewis +Melvin +Tommy +Alfred +Gene +Daniel +Douglas +Floyd +Calvin +Horace +Luther +Dan +Allen +Bennie +Oscar +Wayne +Harry +Leonard +Nathaniel +Jackie +Milton +Edgar +Marion +Tommie +Don +Otis +Clifford +Hubert +Norman +Hugh +Larry +Freddie +Billie +Grady +Alvin +Ben +Benjamin +Claude +Junior +Max +Chester +Jim +Bill +Glenn +Sidney +Theodore +Clinton +Harvey +Mack +Vernon +Ellis +Leo +Wallace +Elmer +Rufus +Willard +Homer +Julius +Lloyd +Morris +Aaron +Edwin +Elbert +Alton +Lonnie +Tom +Archie +Oliver +Arnold +Benny +Joel +Aubrey +Roland +Troy +Phillip +Willis +Gary +Huey +Lester +Sylvester +Travis +Warren +Rex +Bernard +Dennis +Sammie +Dewey +Gordon +Isaac +Wiley +Moses +Stanley +Matthew +Rudolph +Ted +Amos +Hollis +Louie +Perry +Royce +Will +Winston +Bob +Bobbie +Clifton +Doyle +Emmett +Grover +Percy +Wilson +Bruce +Carlton +Glen +Leslie +Wilbert +Wilbur +Woodrow +Buddy +Cleveland +Johnie +Nathan +Preston +Terry +Loyd +Martin +Roger +Virgil +Alex +Clayton +Marshall +Maurice +Wesley +Gilbert +Buford +Ira +Rayford +Felix +Frederick +Guy +Lowell +Millard +Ollie +Philip +Ulysses +Hoyt +Jerome +Julian +Lamar +Tony +Abraham +Alexander +Anthony +Elijah +Nelson +Ronnie +Sammy +Wendell +Wilburn +Dale +Mary +Russell +Steve +Timothy +Arther +Booker +Ervin +Everett +Fletcher +Jasper +Jeff +Marlin +Mitchell +Monroe +Norris +Oneal +Thurman +Alford +Byron +Malcolm +Murray +Ocie +Owen +Peter +Raymon +Sherman +Winford +Connie +Elvin +Hershel +Lynn +Odis +Truman +Alonzo +Coy +Dock +Francis +Harrison +Jake +Levi +Major +Manuel +Marcus +Mckinley +Michael +Neal +Ottis +Pat +Patrick +Reuben +Ross +Winfred +Clark +Cleo +Dave +Dwight +Houston +Lenard +Mark +Noah +Randolph +Reginald +Rogers +Shirley +Talmadge +Tim +Barney +Carlos +Conrad +Earlie +Elton +Felton +Jackson +Lovell +Mose +Napoleon +Obie +Olen +Otto +Pete +Rayburn +Rodney +Roscoe +Ruben +Teddy +Waymon +Williams +Adolphus +Anderson +Betty +Burl +Carroll +Cornelius +Dalton +Danny +Donnie +Ed +Edd +Eli +Emanuel +Foy +Frankie +Freddy +Gus +Herschel +Hilton +Isaiah +Jame +Jay +Kermit +Morgan +Murphy +Neil +Odell +Randall +Riley +Shelby +Wade +Wilford +Wilmer +Algie +Alvie +Artis +Austin +Boyd +Clarance +Columbus +Forrest +Garland +Hermon +Hershell +Hosea +Jacob +Judge +Lorenzo +Lucious +Lucius +Madison +Mathew +Miles +Murry +Ned +Orville +Otha +Prince +Ramon +Sterling +Theo +Verbon +Victor +Alphonso +Alto +Annie +Bonnie +Charley +Claud +Coleman +Emmitt +Ferrell +Haywood +Irvin +Jeremiah +Johny +King +Leamon +Luke +Maxie +Melton +Miller +Noel +Rosevelt +Rubin +Sanford +Solomon +Terrell +Wilton +Adam +Adolph +Andy +Arnie +Arvel +Auther +Bud +Carey +Carrol +Claudie +Cleophus +Dallas +Davie +Dean +Delbert +Doyce +Edmond +Edsel +Emory +Enoch +Essie +Ezra +Gorden +Harce +Harley +Hayward +Huston +Isiah +Jerrell +Jewel +Jonathan +Lamon +Levert +Lorenza +Malcom +Marlon +Milford +Nick +Pierce +Richmond +Sandy +Silas +Walker +Warner +Waylon +Wilber +Wyatt +Alva +Arlon +Bert +Cameron +Cary +Clarnce +Clemmie +Clemon +Cleve +Comer +Crawford +Curtiss +Delano +Delmer +Dudley +Earle +Early +Eldridge +Eligah +Elmore +Elzie +Euel +Fredrick +Gearld +General +Hansel +Hardy +Harvel +Howell +Hugo +Jefferson +Jonnie +Joshua +Keith +Kelly +Kennith +Lafayette +Lomax +Lon +Mason +Myron +Nolan +Nolen +Oran +Orvel +Rayfield +Roderick +Ruby +Scott +Shelly +Sid +Sim +Taylor +Theron +Tracy +Vester +Vincent +Walton +Wardell +Webster +Wilfred +James +John +William +Robert +Charles +Willie +Billy +Bobby +Joe +George +Thomas +Donald +Henry +Jimmy +David +Jerry +Edward +Joseph +Richard +Walter +Frank +Harold +Charlie +Jack +Johnny +Jimmie +Kenneth +Roy +Paul +Eddie +Clarence +Arthur +Johnnie +Fred +Howard +Carl +Eugene +Samuel +Albert +Ralph +Raymond +Franklin +Jesse +Leon +Cecil +Ernest +Roosevelt +Gerald +Tommy +Jessie +Earl +Lee +Melvin +Ronald +Curtis +Gene +Wayne +Alfred +Earnest +Norman +Douglas +Herman +Andrew +Lawrence +Ray +Leroy +Marvin +Larry +Louis +Bennie +Clyde +Daniel +Freddie +Lewis +Leonard +Sam +Calvin +Floyd +Harry +Wallace +Benjamin +Don +Horace +Otis +Jackie +Milton +Oscar +Herbert +Billie +Clifford +Tommie +Nathaniel +Allen +Harvey +Bill +Jim +Rufus +Dan +Grady +Hugh +Claude +Elbert +Gary +Alvin +Hubert +Glenn +Luther +Benny +Marion +Morris +Edwin +Joel +Travis +Willard +Alton +Archie +Ben +Edgar +Sylvester +Theodore +Homer +Max +Percy +Phillip +Sidney +Tom +Chester +Ellis +Mack +Wiley +Lonnie +Vernon +Aubrey +Junior +Will +Alex +Clifton +Dennis +Leo +Troy +Gordon +Cleveland +Royce +Russell +Arnold +Emmett +Julius +Elmer +Sammie +Aaron +Bobbie +Dewey +Oliver +Woodrow +Amos +Louie +Roger +Wilson +Clinton +Doyle +Lester +Marshall +Terry +Warren +Hollis +Ollie +Perry +Rex +Wilbert +Elijah +Gilbert +Roland +Virgil +Willis +Booker +Huey +Isaac +Leslie +Michael +Ted +Wesley +Bob +Lamar +Stanley +Wilburn +Bernard +Francis +Grover +Guy +Lloyd +Matthew +Nathan +Hershel +Glen +Jake +Rayford +Sammy +Carlton +Hoyt +Lowell +Monroe +Anthony +Buddy +Byron +Dwight +Jerome +Loyd +Nelson +Sherman +Steve +Wade +Wendell +Abraham +Johnie +Mary +Maurice +Neal +Peter +Ross +Silas +Wilbur +Clayton +Felix +Houston +Moses +Bruce +Ed +Elton +Frederick +Jasper +Malcolm +Owen +Rayburn +Ronnie +Alexander +Alonzo +Columbus +Connie +Lynn +Philip +Timothy +Barney +Buford +Dallas +Isiah +Kermit +Major +Reuben +Roscoe +Rudolph +Winfred +Dave +Donnie +Edmond +Erskine +Ervin +Jacob +Marlin +Mitchell +Odell +Rogers +Shirley +Talmadge +Tony +Austin +Bert +Carlos +Charley +Clark +Coleman +Coy +Eli +Elvin +Ezell +Freeman +Harley +Julian +Millard +Mose +Napoleon +Odis +Olen +Ottis +Pete +Raymon +Thurman +Wilmer +Carter +Dorothy +Ennis +Foy +Gaines +Ira +Jeff +Lenard +Murry +Neil +Norris +Preston +Randall +Riley +Ruben +Victor +Alfonza +Alphonso +Carroll +Claud +Claudie +Cornelius +Dale +Everett +Frankie +Haywood +Huston +Ike +Jackson +Jan +Jay +Jonnie +Kennith +Mark +Ned +Nolan +Ocie +Pat +Patrick +Solomon +Ulysses +Christopher +Danny +Davis +Doyce +Earlie +Fletcher +Freddy +Fredrick +Harlon +Harmon +Hayward +Hosea +Isaiah +Jamie +Jefferson +Landon +Lomax +Lovell +Manuel +Marcus +Morgan +Quinton +Sandy +Sanford +Sonny +Spencer +Stephen +Taylor +Teddy +Theo +Wilford +Winford +Woodie +Zack +Alan +Auther +Author +Bryant +Carey +Cary +Cleo +Conrad +Dean +Dewitt +Early +Elisha +Elmore +Emanuel +Forrest +Foster +Harris +Harrison +Ivory +Jeremiah +Joshua +King +Lorenza +Martin +Milford +Murray +Noah +Randolph +Sterling +Vincent +Walton +Wilfred +Windell +Adolph +Alford +Andy +Artis +Bishop +Boby +Bonnie +Brady +Burl +Clay +Cleophus +Dannie +Dick +Dock +Dwain +Emory +Everette +Felton +Ferrell +Garland +Gorden +Grant +Gus +Hilliard +Hiram +Issac +Kelly +Lorenzo +Louise +Lucius +Luke +Marie +Mickey +Miles +Noel +Olin +Oneal +Porter +Reginald +Rodney +Rosevelt +Ruby +Shelly +Simon +Theodis +Truman +Van +Waylon +Wilton +Winston +Wyman +Young +Abe +Alfonso +Alfonzo +Almon +Alphonse +Alvie +Alvis +Anderson +Aron +Arther +Benton +Boyd +Burton +Buster +Chris +Clarance +Curley +Delano +Eldon +Eldridge +Essie +Ezra +Gearld +General +Gregory +Hansel +Hardy +Harvy +Henderson +Hermon +Hobert +Hudson +Jerrell +Jewel +Jonathan +Josh +Judge +Karl +Keith +Kenny +Lavon +Lawson +Leamon +Lemuel +Levi +Lionel +Maxie +Maxwell +Mckinley +Merrill +Minnie +Obie +Ollis +Orlando +Otha +Parker +Raybon +Royal +Rubin +Samson +Saul +Shelby +Shelton +Terrell +Thedore +Theron +Tillman +Virgle +Warner +Washington +Waymon +James +John +William +Robert +Charles +Willie +Billy +George +Bobby +Thomas +Joe +Donald +Jimmy +Jerry +Henry +David +Edward +Joseph +Walter +Kenneth +Richard +Frank +Harold +Johnny +Eddie +Charlie +Arthur +Paul +Jack +Jimmie +Roy +Fred +Eugene +Gerald +Albert +Samuel +Clarence +Carl +Johnnie +Raymond +Howard +Ralph +Jesse +Curtis +Ronald +Ernest +Melvin +Tommy +Wayne +Cecil +Franklin +Earl +Larry +Jessie +Gene +Leon +Herbert +Lewis +Leroy +Ray +Roosevelt +Herman +Floyd +Tommie +Earnest +Clyde +Marvin +Sam +Lee +Daniel +Louis +Alfred +Andrew +Allen +Harry +Nathaniel +Norman +Don +Douglas +Horace +Grady +Milton +Wallace +Lawrence +Clifford +Oscar +Bennie +Alton +Alvin +Benjamin +Homer +Otis +Claude +Harvey +Luther +Phillip +Billie +Glenn +Hugh +Lonnie +Jackie +Marion +Hubert +Leo +Freddie +Gary +Calvin +Edgar +Mack +Gordon +Morris +Sidney +Bill +Ben +Julius +Junior +Leonard +Lloyd +Dan +Roger +Bobbie +Chester +Joel +Sylvester +Terry +Vernon +Jim +Lester +Rufus +Tom +Willis +Aubrey +Troy +Clinton +Isaac +Roland +Theodore +Clifton +Max +Aaron +Elbert +Glen +Marshall +Arnold +Elmer +Rex +Willard +Benny +Travis +Amos +Bernard +Edwin +Leslie +Perry +Rayford +Percy +Cleveland +Oliver +Ronnie +Dennis +Dewey +Jerome +Moses +Ted +Archie +Hollis +Johnie +Will +Elijah +Huey +Ira +Louie +Ollie +Wiley +Donnie +Ellis +Loyd +Nathan +Nelson +Stanley +Warren +Wilson +Winston +Bob +Hoyt +Lowell +Philip +Sammie +Virgil +Wesley +Wilbert +Bruce +Felix +Guy +Julian +Matthew +Michael +Peter +Woodrow +Carlton +Emmett +Frederick +Freeman +Jeff +Preston +Sammy +Shelby +Lamar +Maurice +Monroe +Timothy +Victor +Alex +Clayton +Russell +Buford +Danny +Fletcher +Frankie +Gilbert +Grover +Martin +Millard +Rayburn +Royce +Doyle +Ervin +Francis +Jacob +Malcolm +Neal +Wilburn +Anthony +Byron +Carey +Clark +Connie +Earlie +Elton +Hershel +Jasper +Shirley +Waymon +Wendell +Arther +Barney +Buddy +Dale +Early +Fredrick +Garland +Mark +Mary +Odis +Raymon +Rudolph +Steve +Wilbur +Winfred +Booker +Carlos +Ed +Houston +Levi +Lovell +Milford +Norris +Owen +Price +Van +Wilmer +Cleo +Coy +Darrell +Edmond +Eldridge +Ezell +Isaiah +Jay +Jon +Pete +Ruben +Thurman +Alexander +Alonzo +Bert +Coleman +Columbus +Dallas +Dave +Dwight +Lenard +Ned +Obie +Oneal +Pat +Rodney +Shelton +Sherman +Solomon +Sonny +Sterling +Winford +Abraham +Alfonso +Barbara +Braxton +Clarance +Cornelius +Emory +Everett +Gaines +Irvin +Judge +Major +Marcus +Marlin +Mckinley +Ottis +Randall +Rogers +Tony +Vincent +Annie +Aron +Artis +Author +Cary +Elvin +Erskine +Gearld +Harrison +Hayward +Kennith +Lynn +Maxie +Mitchell +Murray +Neil +Ocie +Ross +Stephen +Talmadge +Ulysses +Walker +Waylon +Wilton +Adam +Alford +Andy +Auther +Berry +Claud +Dean +Emmitt +Grant +Gus +Haywood +Hiram +Huston +Isiah +Jackson +Manuel +Napoleon +Olen +Orville +Otha +Patrick +Randolph +Reginald +Rosevelt +Simon +Stanford +Adolph +Adrian +Alan +Alonza +Auburn +Boyd +Brady +Buster +Carroll +Davis +Delano +Dudley +Emanuel +Emmit +Foster +Harmon +Henderson +Hosea +Howell +Ike +Jonathan +Karl +Lacy +Leamon +Leldon +Lemuel +Lorenza +Lucius +Myron +Nolan +Riley +Roscoe +Spencer +Theodis +Wade +Williams +Abe +Arvil +Authur +Betty +Bonnie +Carter +Cleophus +Clint +Clovis +Comer +Conrad +Cornelious +Dalton +Dewayne +Enoch +Ezekiel +Felton +Foy +Hal +Harlon +Helen +Hermon +Hilton +Hobert +Hugo +Issac +Ivory +Jake +Jeffie +Kermit +Kyle +Merrill +Mike +Miles +Morgan +Odell +Pearlie +Prince +Reuben +Sanford +Taylor +Teddy +Walton +Wash +Wilford +Willam +Alphonso +Alvie +Autry +Avery +Bryant +Burl +Clay +Coley +Collie +Crawford +Curley +Delbert +Dillard +Dorsey +Dwain +Edd +Eldon +Emery +Ferrell +Forrest +Frazier +Glennis +Herschel +Irby +Isreal +Jame +Jamie +Jefferson +Joshua +Judson +Junius +Kelly +King +Kirby +Lafayette +Lanny +Lesley +Levert +Lige +Lincoln +Lindsey +Lionel +Lucious +Maxwell +Mickey +Murphy +Murry +Newton +Noel +Olan +Otto +Ozell +Quincy +Quinton +Rodger +Royal +Sim +Terrell +Theron +Tomas +Truman +Turner +Windell +Woodie +James +John +Robert +William +Charles +Willie +Billy +Bobby +Joe +Thomas +George +Jimmy +Jerry +Donald +David +Joseph +Henry +Edward +Richard +Frank +Johnny +Walter +Kenneth +Eddie +Harold +Jimmie +Roy +Charlie +Paul +Arthur +Albert +Fred +Jack +Samuel +Howard +Carl +Johnnie +Larry +Tommy +Curtis +Eugene +Clarence +Ralph +Raymond +Ronald +Melvin +Leon +Jessie +Gerald +Douglas +Lee +Gene +Jesse +Ray +Herman +Wayne +Earl +Cecil +Daniel +Clyde +Ernest +Roosevelt +Marvin +Louis +Andrew +Gary +Earnest +Don +Lewis +Floyd +Freddie +Leroy +Calvin +Otis +Claude +Jackie +Herbert +Alfred +Horace +Sam +Alton +Franklin +Grady +Harry +Hugh +Luther +Tommie +Leonard +Ben +Milton +Norman +Oscar +Bennie +Glenn +Allen +Lawrence +Phillip +Wallace +Alvin +Bill +Chester +Harvey +Benjamin +Hubert +Willard +Benny +Aaron +Homer +Leo +Vernon +Arnold +Clifford +Lester +Lonnie +Billie +Nathaniel +Rufus +Clinton +Oliver +Terry +Elbert +Mack +Travis +Edgar +Marion +Joel +Michael +Morris +Willis +Alex +Bruce +Edwin +Ellis +Lloyd +Marshall +Troy +Clifton +Roger +Max +Amos +Glen +Grover +Sammie +Wilbert +Cleveland +Jerome +Jim +Junior +Percy +Booker +Doyle +Gordon +Leslie +Preston +Roland +Sammy +Tom +Bobbie +Dennis +Dewey +Elmer +Isaac +Julius +Louie +Ollie +Perry +Archie +Bob +Dan +Maurice +Ted +Nathan +Lamar +Moses +Sidney +Wiley +Will +Rex +Wilson +Aubrey +Hershel +Russell +Sylvester +Wilbur +Emmett +Frederick +Huey +Patrick +Philip +Rayford +Warren +Woodrow +Clayton +Elijah +Jeff +Theodore +Winston +Bernard +Gilbert +Lowell +Matthew +Ronnie +Stanley +Wesley +Donnie +Ervin +Loyd +Marlin +Royce +Rudolph +Sherman +Felix +Francis +Hoyt +Ira +Shelby +Tony +Wendell +Alexander +Barney +Buford +Carlton +Frankie +Houston +Julian +Monroe +Nelson +Rayburn +Solomon +Steve +Virgil +Abraham +Alphonso +Buddy +Danny +Timothy +Wilmer +Anthony +Cleo +Dave +Ed +Fredrick +Freeman +Hollis +Mary +Mitchell +Randall +Van +Wade +Carlos +Jacob +Johnie +Malcolm +Peter +Ruben +Arther +Byron +Coy +Dwight +Jake +Waymon +Alonzo +Dale +Guy +Hayward +Herschel +Jasper +Levi +Martin +Milford +Mose +Norris +Oneal +Reginald +Reuben +Alan +Brady +Coleman +Columbus +Connie +Everett +Forrest +Hermon +Irvin +Ned +Odis +Raymon +Riley +Ulysses +Victor +Anderson +Clarance +Clark +Dallas +Davis +Elton +Emmitt +Fletcher +Garland +Judge +Lovell +Millard +Murray +Napoleon +Nolan +Pat +Rodney +Stephen +Teddy +Theo +Vester +Wilburn +Winfred +Adam +Cleophus +Cornelius +Emanuel +Howell +King +Leland +Lynn +Mark +Neil +Noah +Odell +Owen +Rosevelt +Ross +Shelton +Winford +Dock +Edmond +Elmore +Elvin +Ivory +Jon +Kenny +Lorenzo +Manuel +Mickey +Mike +Ottis +Pete +Porter +Sonny +Sterling +Truman +Wilton +Alvis +Auther +Autry +Bryant +Carey +Carroll +Christopher +Claud +Darrell +Dean +Delmer +Doyal +Earlie +Early +Eldon +Erskine +Gearld +Harrison +Haywood +Ike +Isiah +Jay +Jonathan +Lavon +Leamon +Lemuel +Lindsey +Lomax +Lucious +Marcus +Myron +Neal +Noel +Ocie +Olan +Olen +Otha +Prince +Randolph +Shirley +Stewart +Warner +Waylon +Alfonso +Austin +Berry +Bert +Betty +Boyd +Bud +Carter +Collins +Conrad +Dempsey +Dorothy +Edd +Emery +Felton +Gus +Hillard +Jackson +Jerald +Lafayette +Ledell +Levon +Luke +Maxie +Micheal +Miller +Murphy +Nolen +Olin +Palmer +Raybon +Roderick +Rogers +Sanford +Talmadge +Thurman +Thurston +Verlon +Vincent +Wilford +Wilfred +Williams +Zollie +Alford +Allan +Alonza +Aron +Augustus +Barbara +Benard +Bonnie +Bradley +Braxton +Buster +Charley +Clarnce +Cleon +Coley +Comer +Dalton +Dillard +Doris +Eli +Elvis +Emmit +Emory +Eric +Ernie +Ezekiel +Ferrell +Freddy +Giles +Gleen +Harris +Hershell +Hiawatha +Isadore +Jeremiah +Johnson +Jonas +Jonnie +Judson +Lance +Lorenza +Louise +Lucian +Lynwood +Major +Manley +Maynard +Miles +Morgan +Murry +Nancy +Phil +Pierce +Roman +Royzell +Ruby +Sampson +Sandy +Simon +Taft +Thornton +Tyrone +Vance +Verbon +Wash +Webster +Woodie +Wyatt +James +William +John +Robert +Charles +Willie +Billy +Bobby +Thomas +Joe +George +Jerry +David +Jimmy +Donald +Henry +Joseph +Edward +Walter +Johnny +Richard +Kenneth +Frank +Harold +Roy +Charlie +Arthur +Paul +Eddie +Jimmie +Larry +Jack +Fred +Clarence +Eugene +Carl +Samuel +Albert +Gerald +Johnnie +Raymond +Jesse +Ralph +Ronald +Tommy +Wayne +Howard +Melvin +Curtis +Cecil +Ernest +Earl +Jessie +Earnest +Lee +Roosevelt +Gene +Leon +Marvin +Franklin +Leroy +Louis +Norman +Douglas +Floyd +Clyde +Daniel +Herman +Andrew +Tommie +Leonard +Jackie +Lewis +Calvin +Oscar +Alfred +Don +Lawrence +Bennie +Ray +Herbert +Benjamin +Horace +Nathaniel +Clifford +Freddie +Morris +Alton +Benny +Claude +Grady +Otis +Gary +Lonnie +Bill +Sam +Allen +Alvin +Harry +Luther +Milton +Marion +Wallace +Homer +Phillip +Rufus +Travis +Dewey +Gordon +Hubert +Roger +Edgar +Hugh +Chester +Elbert +Harvey +Sidney +Terry +Willard +Aubrey +Billie +Glenn +Mack +Dennis +Leo +Ronnie +Dan +Jim +Lester +Perry +Sylvester +Vernon +Ben +Michael +Tom +Aaron +Joel +Isaac +Junior +Wilbert +Theodore +Wesley +Edwin +Oliver +Bernard +Julius +Lloyd +Virgil +Bob +Clinton +Donnie +Grover +Lamar +Max +Bruce +Clifton +Jerome +Stanley +Troy +Warren +Matthew +Percy +Russell +Sammie +Carlton +Frederick +Johnie +Willis +Archie +Doyle +Ellis +Elmer +Anthony +Cleveland +Glen +Leslie +Rayburn +Rayford +Sherman +Moses +Roland +Winston +Bobbie +Ted +Woodrow +Loyd +Rex +Will +Wilson +Arnold +Buddy +Francis +Ira +Nathan +Steve +Tony +Clayton +Dwight +Julian +Louie +Wendell +Wilbur +Amos +Coy +Lowell +Maurice +Nelson +Randall +Wilburn +Alex +Marshall +Sammy +Wiley +Hoyt +Ollie +Preston +Royce +Emmett +Guy +Monroe +Ned +Philip +Tyrone +Abraham +Carlos +Dale +Elijah +Foy +Harrison +Hayward +Hollis +Riley +Ruben +Booker +Buford +Byron +Coleman +Ervin +Fletcher +Manuel +Rodney +Shirley +Stephen +Wade +Alexander +Elvin +Everett +Hershel +Jay +Jon +Marcus +Neil +Oneal +Peter +Randolph +Teddy +Arther +Barney +Felix +Frankie +Gilbert +Jacob +Kennith +Lynn +Malcolm +Mark +Mitchell +Pete +Reginald +Shelby +Wilmer +Barry +Ed +Emory +Houston +Jeff +Lorenzo +Major +Marlin +Odis +Patrick +Silas +Solomon +Timothy +Alan +Alonzo +Anderson +Austin +Boyd +Dallas +Dalton +Danny +Darrell +Gus +Huey +Jackson +Jake +Jerald +Jonathan +King +Mary +Millard +Ocie +Reuben +Ulysses +Van +Victor +Winford +Claud +Cleophus +Earlie +Elton +Forrest +Foster +Freddy +Hermon +Ike +Kermit +Mike +Neal +Noel +Pat +Porter +Talmadge +Truman +Alonza +Berry +Bert +Carey +Carroll +Clay +Comer +Cornelius +Dave +Freeman +Gearld +Harmon +Isiah +Jasper +Jean +Jerrell +Leamon +Odell +Ottis +Owen +Phil +Raymon +Rogers +Spencer +Tim +Verlon +Annie +Augusta +Betty +Buster +Carol +Carrol +Carter +Claudie +Connie +Conrad +Delbert +Dorothy +Edmond +Emanuel +Emmitt +Erskine +Fredrick +Garland +Hal +Herschel +Hillard +Hiram +Isaiah +Jacky +Jerre +Judge +Kelly +Kyle +Lafayette +Leland +Lou +Martin +Mose +Murry +Nick +Prince +Raybon +Rosevelt +Rubin +Rudolph +Scott +Sonny +Theo +Thurman +Waymon +Winfred +Alphonso +Auther +Autrey +Bryant +Burl +Cary +Charley +Cleo +Dempsey +Denny +Derrell +Dillard +Dorsey +Dudley +Edd +Eddy +Eli +Elisha +Elmore +Felton +Forest +Gaines +Gregory +Haywood +Jeremiah +Judson +Lenard +Levi +Lindsey +Lorenza +Mickey +Milford +Napoleon +Obie +Otha +Robbie +Sanford +Smith +Sterling +Taylor +Abe +Alford +Andy +Aron +Bertha +Bonnie +Brady +Christopher +Clark +Darnell +Davis +Dewitt +Doris +Emery +Ernie +Hardy +Howell +Hudson +Huston +Isreal +Ivan +Jewel +Jones +Josh +Kerry +Lanny +Lavon +Lecil +Lemuel +Lenord +Lois +Lovell +Luddie +Luke +Martha +Maxie +Morgan +Murray +Noah +Norris +Orbie +Quinton +Ransom +Roderick +Rollie +Roscoe +Rozell +Sandy +Shelley +Steven +Stewart +Therman +Vincent +Vinson +Walker +Warner +Wilford +Williams +Willy +Windell +Woodie +Wyatt +James +John +William +Robert +Charles +Willie +Billy +Jerry +Bobby +Thomas +George +Jimmy +Joe +David +Donald +Henry +Joseph +Edward +Kenneth +Johnny +Richard +Walter +Frank +Roy +Harold +Eddie +Paul +Arthur +Samuel +Charlie +Larry +Ronald +Jimmie +Clarence +Eugene +Wayne +Carl +Raymond +Jack +Tommy +Fred +Howard +Jesse +Albert +Gerald +Johnnie +Ralph +Curtis +Franklin +Leon +Lee +Melvin +Ernest +Gary +Cecil +Earl +Earnest +Herman +Ray +Louis +Jessie +Alfred +Daniel +Don +Marvin +Lewis +Gene +Roosevelt +Herbert +Leroy +Bennie +Clyde +Phillip +Nathaniel +Terry +Jackie +Andrew +Norman +Calvin +Douglas +Floyd +Harry +Sam +Oscar +Lawrence +Wendell +Freddie +Glenn +Leonard +Milton +Michael +Hugh +Horace +Luther +Bill +Dan +Hubert +Otis +Allen +Jim +Tommie +Alton +Grady +Benjamin +Harvey +Marion +Roger +Alvin +Ben +Claude +Joel +Leo +Clifford +Willard +Rufus +Vernon +Wallace +Benny +Dewey +Edgar +Lester +Morris +Gordon +Lonnie +Oliver +Theodore +Homer +Edwin +Rex +Stanley +Aaron +Steve +Travis +Percy +Roland +Ronnie +Sylvester +Billie +Chester +Cleveland +Clifton +Clinton +Mack +Winston +Bobbie +Dennis +Frederick +Philip +Sidney +Isaac +Junior +Sammie +Tony +Doyle +Julius +Royce +Ted +Amos +Elbert +Russell +Sammy +Woodrow +Aubrey +Emmett +Max +Wilbert +Archie +Lloyd +Nathan +Tom +Troy +Wesley +Jerome +Leslie +Marshall +Anthony +Arnold +Booker +Carlton +Glen +Grover +Perry +Peter +Preston +Stephen +Wilson +Alex +Ellis +Hollis +Mark +Willis +Bob +Elmer +Patrick +Virgil +Wiley +Will +Bruce +Francis +Major +Maurice +Ollie +Gilbert +Louie +Lowell +Frankie +Julian +Matthew +Nelson +Ruben +Timothy +Tyrone +Windell +Hershel +Rayford +Wilburn +Bernard +Danny +Hoyt +Kermit +Lamar +Loyd +Mose +Thurman +Warren +Alexander +Austin +Byron +Connie +Dale +Felix +Fredrick +Lynn +Mike +Odell +Sherman +Wilbur +Woodie +Abraham +Alfonso +Elijah +Jeff +Moses +Rayburn +Rodney +Shelby +Wade +Donnie +Dwight +Ira +Jacob +Jerald +Johnie +Leland +Ross +Rudolph +Ulysses +Arther +Coy +Isiah +Levi +Lucius +Malcolm +Mickey +Neal +Ocie +Pat +Reginald +Riley +Wilmer +Barney +Boyd +Buddy +Carlos +Clayton +Cornelius +Ed +Houston +Jon +Lorenzo +Manuel +Marcus +Mary +Ned +Randolph +Sterling +Winfred +Dave +Delbert +Erskine +Forrest +Garland +Gearld +Harrison +Hillard +Irvin +Jake +Lionel +Mitchell +Murray +Randall +Rosevelt +Rubin +Waymon +Wilford +Anderson +Buford +Charley +Christopher +Coleman +Earlie +Guy +Herschel +Howell +Jay +Judge +Lorenza +Lovell +Marlin +Millard +Monroe +Nolan +Odis +Oneal +Owen +Reggie +Terrell +Truman +Williams +Brady +Davis +Dean +Freeman +Hershell +Hosea +Huey +Isaiah +Jasper +Martin +Neil +Noah +Randy +Sanford +Solomon +Spencer +Steven +Talmadge +Theodis +Victor +Warner +Adam +Alphonso +Andy +Barry +Bert +Betty +Clark +Cleophus +Columbus +Darrell +Ennis +Felton +Fletcher +Haywood +Hilton +Huston +Kennith +Melton +Simon +Vester +Winford +Alfonza +Author +Carver +Clarance +Conrad +Doris +Dorothy +Elliott +Elton +Garry +General +Gerry +Gregory +Hal +Harlon +Isadore +Jefferson +Judson +Mac +Milford +Napoleon +Olen +Pete +Prince +Raymon +Roman +Ronny +Teddy +Tim +Wilton +Alan +Alford +Allan +Alonzo +Alvie +Carol +Claud +Damon +Darryl +Dawson +Edd +Elvis +Emanuel +Emmette +Emmitt +Emory +Everett +Ezell +Gaines +Gaylon +Gus +Harvel +Harvie +Jackson +Jacky +Jerre +Jerrell +Kelly +Kirby +Lucious +Marlon +Mckinley +Norris +Obie +Orville +Otha +Randell +Rogers +Ruby +Samson +Sandy +Silas +Sonny +Therman +Van +Waylon +Adrian +Al +Alphonsa +Alto +Aron +Artis +Aubry +Augustus +Avery +Bailey +Bennett +Bertha +Bradford +Bryant +Buster +Carey +Carroll +Cary +Claudie +Clovis +Crawford +Curtiss +Dallas +Dee +Dempsey +Denver +Durwood +Dwain +Dwayne +Eddy +Edsel +Eligah +Farris +Foy +Garfield +Henderson +Hezekiah +Hobert +Isom +Jame +Jan +Jere +Joyce +Keith +Kenny +King +Lafayette +Lanny +Lawson +Lemuel +Lindsey +Margaret +Maxie +Meredith +Morgan +Myron +Noel +Nolen +Olin +Phil +Rabon +Robbie +Robin +Roderick +Rodger +Roscoe +Rudy +Shelly +Shirley +Stewart +Taylor +Thurston +Tillman +Tracy +Willian +Wyatt +James +William +John +Robert +Charles +Willie +Billy +Jerry +Bobby +George +Thomas +Jimmy +David +Joe +Donald +Edward +Joseph +Henry +Larry +Richard +Johnny +Kenneth +Walter +Harold +Frank +Roy +Eddie +Paul +Charlie +Clarence +Ronald +Jimmie +Arthur +Samuel +Albert +Howard +Raymond +Carl +Wayne +Tommy +Jesse +Gerald +Fred +Johnnie +Eugene +Jack +Ralph +Leon +Marvin +Melvin +Earl +Leroy +Michael +Cecil +Curtis +Franklin +Lee +Don +Ernest +Jessie +Gary +Jackie +Ray +Earnest +Gene +Sam +Roosevelt +Douglas +Terry +Louis +Alfred +Andrew +Herman +Norman +Phillip +Nathaniel +Freddie +Lewis +Clyde +Horace +Bennie +Daniel +Floyd +Harry +Lawrence +Tommie +Alvin +Allen +Leonard +Claude +Herbert +Milton +Oscar +Wallace +Glenn +Ronnie +Bill +Grady +Roger +Wendell +Calvin +Dennis +Lonnie +Otis +Alton +Benny +Hugh +Theodore +Luther +Morris +Benjamin +Dan +Clifford +Vernon +Jim +Marion +Winston +Frederick +Joel +Julius +Rufus +Willard +Woodrow +Chester +Harvey +Aaron +Ben +Sidney +Tom +Edgar +Gordon +Lloyd +Mack +Archie +Billie +Hubert +Roland +Edwin +Anthony +Elbert +Lester +Sammie +Tony +Homer +Mike +Percy +Perry +Steve +Dewey +Elmer +Troy +Aubrey +Ellis +Sylvester +Travis +Wilson +Leo +Leslie +Stanley +Wilbert +Jerome +Lamar +Oliver +Ted +Warren +Clifton +Will +Clinton +Alex +Carlton +Grover +Ira +Royce +Russell +Bobbie +Elijah +Johnie +Louie +Max +Cleveland +Moses +Stephen +Willis +Donnie +Emmett +Patrick +Amos +Arnold +Bob +Doyle +Glen +Julian +Junior +Marshall +Nathan +Randall +Sammy +Nelson +Philip +Rayburn +Wesley +Danny +Francis +Gilbert +Matthew +Peter +Malcolm +Martin +Tyrone +Bernard +Buford +Byron +Hoyt +Isaac +Loyd +Sherman +Wilbur +Abraham +Bruce +Coy +Jasper +Maurice +Mickey +Rex +Wilburn +Buddy +Carey +Dale +Guy +Hollis +Marlin +Mary +Monroe +Booker +Carlos +Dallas +Fredrick +Jake +Lowell +Rodney +Victor +Alexander +Columbus +Connie +Dave +Ervin +Forrest +Foy +Houston +Mark +Mitchell +Noah +Terrell +Wade +Windell +Austin +Darrell +Edd +Garry +Hershel +Jacob +Lorenzo +Lynn +Mose +Ollie +Pete +Randolph +Reginald +Virgil +Andy +Dwight +Edmond +Frankie +Huey +Jackson +Kennith +Kenny +Leland +Levi +Neal +Ned +Phil +Raymon +Wiley +Wilmer +Clayton +Felix +Jeff +Major +Marcus +Marlon +Spencer +Timothy +Truman +Waymon +Arther +Barney +Charley +Claud +Earlie +Everett +Fletcher +Jerald +Jeremiah +Jon +Millard +Pat +Rudolph +Steven +Teddy +Van +Boyd +Brady +Clark +Early +Elvin +Emanuel +Freddy +Hayward +Hosea +Isaiah +Isiah +Lenard +Lovell +Mac +Neil +Norris +Odis +Owen +Rayford +Reuben +Ronny +Sanford +Shelby +Shirley +Talmadge +Thurman +Tim +Ulysses +Verlon +Alfonso +Allan +Alonzo +Artis +Augustus +Betty +Cary +Cleo +Cleophus +Dewitt +Ed +Emory +Errol +Evans +Ezell +Freeman +Garland +Harris +Herschel +Hillard +Jacky +Jay +Jerrell +Lorenza +Napoleon +Olin +Oneal +Otha +Ottis +Otto +Preston +Roderick +Ross +Ruben +Alfonza +Annie +Claudie +Conrad +Cornelius +Davis +Doris +Elmore +Harrison +Hulon +Kermit +Lynwood +Nolan +Ocie +Odell +Olen +Randal +Roscoe +Saul +Solomon +Vance +Vincent +Wilfred +Winford +Winfred +Adam +Alphonse +Anderson +Author +Barbara +Buster +Christopher +Clay +Crawford +Dillard +Dorothy +Dudley +Eddy +Elisha +Elton +Elvis +Erskine +Erwin +Gaines +General +Grant +Hardy +Henderson +Hilton +Hiram +Howell +Hudson +Issac +Keith +Kelly +Lanny +Lindsey +Lionel +Mason +Morgan +Nick +Randell +Randy +Riley +Rosevelt +Silas +Walker +Wilford +Williams +Woodie +Abe +Abner +Acie +Adolph +Adolphus +Alford +Alphonso +Arlon +Berry +Bradley +Bryant +Carroll +Clausell +Clement +Coley +Dalton +Dean +Donell +Durwood +Eli +Elliott +Emerson +Enoch +Eric +Ezekiel +Foster +Frederic +Gearld +Glynn +Gus +Haywood +Hermon +Hilliard +Ike +Jeffrey +Jere +Jonathan +Kent +Lance +Lavaughn +Lawyer +Laymon +Lucious +Lucius +Mcarthur +Melvyn +Milford +Murray +Ollis +Orville +Prince +Robbie +Robin +Rogers +Rubin +Sandy +Simon +Sonny +Stewart +Theotis +Toby +Virgle +Willy +Wyatt +Wyman +James +William +Robert +John +Charles +Willie +Jerry +Billy +Thomas +Bobby +George +David +Jimmy +Donald +Larry +Joe +Johnny +Joseph +Richard +Henry +Douglas +Edward +Kenneth +Roy +Walter +Ronald +Paul +Frank +Arthur +Tommy +Eddie +Harold +Samuel +Raymond +Charlie +Clarence +Albert +Jack +Jimmie +Wayne +Eugene +Fred +Howard +Gerald +Johnnie +Carl +Ralph +Gary +Michael +Curtis +Jesse +Marvin +Daniel +Ernest +Melvin +Cecil +Earl +Andrew +Lee +Leroy +Franklin +Herman +Leon +Phillip +Ray +Harry +Jackie +Leonard +Jessie +Lawrence +Louis +Herbert +Mack +Don +Terry +Lewis +Wallace +Gene +Bennie +Tommie +Clyde +Freddie +Horace +Ronnie +Roosevelt +Alfred +Earnest +Calvin +Floyd +Bill +Allen +Glenn +Benjamin +Nathaniel +Sam +Clifford +Lonnie +Harvey +Luther +Alvin +Claude +Norman +Milton +Roger +Hubert +Otis +Dennis +Elbert +Oscar +Lloyd +Marion +Hugh +Lester +Benny +Grady +Winston +Ben +Edwin +Mac +Steve +Tom +Willard +Homer +Dewey +Jim +Chester +Ellis +Jerome +Joel +Marshall +Tony +Alton +Theodore +Warren +Sammy +Vernon +Wendell +Edgar +Leo +Percy +Clinton +Rufus +Sidney +Stanley +Archie +Leslie +Aubrey +Dan +Sylvester +Danny +Lamar +Morris +Perry +Wilbert +Anthony +Matthew +Roland +Stephen +Aaron +Billie +Julius +Nathan +Arnold +Isaac +Junior +Mcarthur +Oliver +Peter +Sammie +Troy +Bruce +Louie +Philip +Travis +Elmer +Gordon +Max +Clifton +Donnie +Frederick +Ted +Timothy +Wilson +Nelson +Woodrow +Bob +Doyle +Royce +Virgil +Willis +Amos +Emmett +Mark +Maurice +Ollie +Preston +Russell +Wilburn +Cleveland +Glen +Patrick +Bobbie +Buddy +Ira +Alonzo +Francis +Gilbert +Hershel +Hoyt +Sherman +Wesley +Carlton +Hollis +Johnie +Mike +Randall +Rodney +Teddy +Alexander +Dwight +Elijah +Grover +Houston +Jasper +Jeff +Julian +Lorenzo +Lowell +Malcolm +Mickey +Victor +Wiley +Will +Alex +Coy +Guy +Lynn +Marcus +Moses +Rayford +Abraham +Anderson +Bernard +Byron +Clayton +Ervin +Monroe +Ned +Ross +Clark +Frankie +Fredrick +Macarthur +Martin +Mckinley +Owen +Rayburn +Rex +Ruben +Tyrone +Vincent +Booker +Fletcher +Gus +Huey +Mary +Ocie +Reginald +Reuben +Wilmer +Austin +Edmond +Felix +Jacob +Major +Neal +Noah +Carlos +Emanuel +Everett +Freddy +Freeman +Spencer +Bert +Buford +Christopher +Claud +Dale +Garland +Jackson +Kennith +Millard +Thurman +Wade +Alan +Author +Charley +Cleophus +Ed +Elton +Emory +Ezell +Isiah +Kermit +Marlin +Mitchell +Murray +Norris +Ronny +Rudolph +Waymon +Wilbur +Adam +Alphonso +Barney +Cornelius +Dalton +Eric +Harrison +Hermon +Hershell +Jerre +Jon +Kelly +Levi +Loyd +Mose +Neil +Porter +Randolph +Rogers +Steven +Tim +Andy +Bonnie +Colin +Columbus +Connie +Craig +Dudley +Early +Elvin +Foy +Hayward +Jake +Jerald +Jonathan +King +Marlon +Sanford +Shirley +Silas +Solomon +Sonny +Verlon +Winfred +Barry +Boyd +Bryant +Cleo +Dallas +Darrell +Dave +Denny +Dewitt +Earlie +Enoch +Erskine +Harlon +Howell +Jay +Joshua +Judson +Lorenza +Lovell +Manuel +Napoleon +Oneal +Ottis +Pete +Quinton +Randy +Riley +Roscoe +Rubin +Simon +Sterling +Adolph +Adrian +Alfonza +Betty +Carey +Dewayne +Felton +Forest +Garry +Gaston +Gerry +Hardy +Hillard +Hiram +Irvin +Ivan +Kenny +Lanny +Leamon +Leland +Lenard +Milford +Murry +Odell +Olen +Orville +Phil +Sherrill +Talmadge +Ulysses +Williams +Winford +Woodie +Adolphus +Alfonso +Alfonzo +Alford +Annie +Arther +Bryan +Claudie +Cleve +Coleman +Conrad +Crawford +Dean +Emery +Emmitt +Ezekiel +Forrest +Gregory +Hal +Harley +Harmon +Isaiah +Jacky +Karl +Keith +Lemuel +Lionel +Lonzo +Maxie +Micheal +Morgan +Nicholas +Obie +Odis +Ramon +Royal +Sandy +Shelby +Simmie +Taylor +Terrell +Van +Algie +Alvie +Alvis +Basil +Bernie +Braxton +Cary +Damon +Dannie +Dempsey +Dorsey +Edd +Edmund +Eli +Emma +Foster +General +Grant +Harlan +Haywood +Herschel +Hosea +Ike +Jefferson +Jeffrey +Jerrell +Jewel +Kirby +Lafayette +Levon +Luke +Mason +Namon +Noble +Olin +Otha +Raymon +Rickey +Shelton +Thaddeus +Theron +Truman +Vann +Walton +Ward +Windell +James +William +John +Robert +Charles +Willie +Jerry +Thomas +Billy +George +Bobby +David +Jimmy +Larry +Donald +Johnny +Richard +Joe +Joseph +Henry +Edward +Kenneth +Walter +Ronald +Roy +Paul +Eddie +Harold +Frank +Arthur +Clarence +Douglas +Tommy +Jimmie +Samuel +Charlie +Carl +Wayne +Gary +Jesse +Fred +Michael +Raymond +Albert +Howard +Gerald +Jack +Roger +Ralph +Curtis +Eugene +Daniel +Melvin +Cecil +Terry +Marvin +Leon +Ernest +Johnnie +Ronnie +Earl +Don +Jessie +Lawrence +Ray +Louis +Lewis +Earnest +Leroy +Harry +Alfred +Andrew +Clyde +Herbert +Lee +Herman +Freddie +Leonard +Phillip +Tommie +Gene +Floyd +Sam +Jackie +Roosevelt +Wallace +Claude +Franklin +Calvin +Milton +Bennie +Lonnie +Mack +Otis +Glenn +Norman +Bill +Nathaniel +Allen +Harvey +Benjamin +Dennis +Clifford +Oscar +Luther +Grady +Hugh +Jim +Danny +Anthony +Hubert +Marion +Steve +Stanley +Alvin +Frederick +Lester +Lloyd +Elbert +Horace +Homer +Sidney +Stephen +Theodore +Dwight +Troy +Warren +Winston +Joel +Ben +Donnie +Morris +Julius +Perry +Sammy +Benny +Clifton +Oliver +Chester +Wendell +Gordon +Lamar +Bruce +Edwin +Percy +Russell +Bob +Dewey +Edgar +Marshall +Dan +Rufus +Travis +Vernon +Willard +Archie +Jerome +Philip +Tony +Alton +Tom +Aaron +Cleveland +Isaac +Mac +Wesley +Wilson +Woodrow +Bernard +Moses +Victor +Wilbert +Arnold +Hollis +Max +Ollie +Royce +Ellis +Elmer +Junior +Leslie +Nathan +Carlton +Peter +Timothy +Clinton +Louie +Randall +Rodney +Roland +Sylvester +Billie +Doyle +Glen +Preston +Ted +Francis +Gilbert +Johnie +Mcarthur +Nelson +Virgil +Willis +Dale +Elijah +Emmett +Patrick +Randolph +Aubrey +Buford +Carlos +Cornelius +Grover +Leo +Matthew +Darrell +Lynn +Malcolm +Mike +Will +Alex +Clayton +Ira +Julian +Lowell +Rex +Sherman +Byron +Jeff +Marcus +Martin +Mickey +Rayford +Rodger +Barry +Rayburn +Sammie +Wilbur +Bobbie +Jacob +Mark +Maurice +Mitchell +Alan +Coy +Fredrick +Garland +Major +Steven +Alonzo +Amos +Barney +Buddy +Felix +Frankie +Jerald +Lorenza +Solomon +Alexander +Ed +Fletcher +Freddy +Monroe +Neal +Shelby +Wilburn +Winford +Winfred +Booker +Hoyt +Jonathan +Lorenzo +Wade +Alphonso +Andy +Christopher +Dave +Guy +Houston +Jay +Levi +Lucious +Murray +Reginald +Spencer +Teddy +Everett +Foster +Freeman +Jacky +Jon +Kennith +Manuel +Marlin +Ned +Pat +Pete +Wilmer +Abraham +Columbus +Edmond +Emmitt +Erskine +Jackson +King +Leland +Milford +Noah +Norris +Randy +Rogers +Thurman +Vincent +Barbara +Carey +Claud +Curley +Dock +Early +Elton +Eric +Hal +Hershel +Isiah +Loyd +Mose +Napoleon +Ocie +Olen +Tyrone +Waymon +Wiley +Clark +Clay +Cleophus +Dalton +Emory +Enoch +General +Grant +Harris +Harrison +Herschel +Huey +Isaiah +Noel +Owen +Ronny +Rudolph +Truman +Wilfred +Bonnie +Boyd +Carter +Charley +Coleman +Conrad +Earlie +Eddy +Emanuel +Forrest +Garry +Glynn +Gregory +Harmon +Hermon +Ivan +Madison +Mary +Maxwell +Nolan +Odis +Reuben +Riley +Roscoe +Shelton +Talmadge +Tim +Woody +Alfonza +Austin +Bert +Braxton +Buster +Colin +Comer +Connie +Darwin +Davis +Dean +Edd +Eli +Elliott +Elmore +Ervin +Irvin +Jake +Jan +Jasper +Jeremiah +Keith +Kelly +Kermit +Kyle +Macarthur +Mckinley +Millard +Oneal +Ottis +Rosevelt +Ross +Royal +Ruben +Rupert +Shelly +Shirley +Silas +Stewart +Taylor +Terrance +Theo +Walker +Weldon +Windell +Woodie +Adam +Alfonso +Allan +Anderson +Arlin +Audrey +Authur +Burl +Carol +Chris +Cleo +Dennie +Dewitt +Durwood +Errol +Ezekiel +Ezell +Foy +Gearld +Gerry +Hiram +Ike +Jeffrey +Jerrell +Joyce +Judge +Karl +Kerry +Lincoln +Linda +Melton +Morgan +Newell +Obie +Odell +Otha +Otto +Prentiss +Rubin +Sandy +Scott +Ulysses +Van +Wayland +Wilford +Willam +Willian +Wilton +Alonza +Arlon +Arther +Artis +Arvel +Augustus +Boyce +Bryan +Bryant +Carroll +Cary +Claudie +Clem +Cleophas +Curtiss +Dallas +Dannie +Dewayne +Donny +Dudley +Elisha +Elvin +Farris +Glendon +Harvie +Hillman +Howell +Huston +Ivory +Jame +Joesph +Judson +Lavon +Lawson +Mason +Maxie +Micheal +Murry +Myles +Neil +Nicholas +Noble +Patricia +Quincy +Quinton +Ramon +Sanford +Simmie +Sterling +Terrell +Tillman +Ulysee +Warner +Windle +James +William +Robert +John +Charles +Willie +Jerry +Thomas +Jimmy +Billy +George +Larry +David +Donald +Bobby +Richard +Johnny +Joseph +Joe +Henry +Edward +Kenneth +Ronald +Walter +Roy +Frank +Roger +Paul +Charlie +Tommy +Harold +Eddie +Arthur +Gary +Michael +Albert +Jimmie +Samuel +Clarence +Wayne +Jack +Douglas +Fred +Carl +Howard +Raymond +Jesse +Gerald +Johnnie +Curtis +Earl +Terry +Eugene +Ernest +Ralph +Harry +Jessie +Daniel +Leon +Lee +Melvin +Earnest +Leroy +Don +Cecil +Marvin +Andrew +Ronnie +Herman +Calvin +Freddie +Phillip +Norman +Clyde +Lawrence +Floyd +Franklin +Jackie +Leonard +Louis +Ray +Alfred +Herbert +Lewis +Danny +Mack +Tommie +Glenn +Dennis +Dwight +Jim +Milton +Alvin +Clifford +Gene +Allen +Roosevelt +Nathaniel +Oscar +Bill +Lonnie +Otis +Wallace +Claude +Edwin +Tom +Horace +Steve +Bennie +Joel +Vernon +Harvey +Willard +Anthony +Benjamin +Leslie +Lester +Luther +Marion +Sam +Sammy +Stanley +Benny +Grady +Stephen +Warren +Dan +Frederick +Morris +Chester +Hubert +Hugh +Gordon +Rufus +Sidney +Bernard +Dewey +Edgar +Wendell +Alton +Bruce +Donnie +Sylvester +Tony +Aaron +Elbert +Lloyd +Percy +Russell +Ben +Philip +Will +Winston +Arnold +Homer +Lamar +Marshall +Cleveland +Perry +Sherman +Theodore +Travis +Archie +Billie +Clinton +Doyle +Randall +Woodrow +Glen +Junior +Timothy +Louie +Aubrey +Leo +Roland +Sammie +Wilson +Clifton +Grover +Mike +Royce +Alex +Elmer +Julius +Steven +Virgil +Mickey +Peter +Troy +Gilbert +Mark +Monroe +Moses +Oliver +Rodney +Ted +Wesley +Wilbert +Emmett +Isaac +Lynn +Ellis +Frankie +Max +Rodger +Victor +Hollis +Jerome +Patrick +Rex +Wade +Elijah +Nelson +Preston +Willis +Alan +Bobbie +Byron +Clayton +Jasper +Loyd +Mcarthur +Lowell +Matthew +Nathan +Bob +Dale +Felix +Hoyt +Huey +Jon +Maurice +Mitchell +Mose +Wiley +Amos +Barney +Booker +Fredrick +Jacob +Johnie +Ned +Ollie +Owen +Rayford +Forrest +Francis +Randy +Ross +Alexander +Carlton +Dave +Ed +Freddy +Isiah +Jerald +Martin +Neal +Tyrone +Buddy +Carlos +Guy +Houston +Ira +Julian +Terrell +Ulysses +Anderson +Bryant +Buford +Grant +Ivory +Jackson +Lorenza +Mac +Malcolm +Oneal +Rogers +Roscoe +Van +Vincent +Wilbur +Wilburn +Andy +Christopher +Coy +Eldridge +Emanuel +Ervin +Freeman +Garry +Hershel +Keith +King +Lorenzo +Marcus +Napoleon +Reginald +Riley +Ruben +Shelby +Teddy +Abraham +Alonzo +Barry +Clark +Connie +Darrell +Elvin +Emmitt +Fletcher +Jay +Jeff +Kelly +Lenard +Murray +Odis +Ronny +Rudolph +Truman +Williams +Wilmer +Wilton +Winford +Alfonso +Alfonza +Alphonso +Austin +Bert +Charley +Coleman +Dewitt +Early +Elmore +Emory +Everett +Gregory +Ivan +Mary +Micheal +Millard +Nolan +Pat +Randolph +Rayburn +Scott +Shelton +Solomon +Thurman +Tim +Carter +Cleo +Denny +Earlie +Edd +Elliott +Elton +Ferrell +Foster +Harrison +Hiram +Irvin +Jake +Jeffery +Joey +Justin +Kerry +Mason +Ramon +Reuben +Sandy +Sonny +Spencer +Talmadge +Allan +Arther +Bryan +Cary +Cleophus +Columbus +Dallas +Dean +Dewayne +Donny +Doyce +Elisha +Ernie +Ezra +Hayward +Isaiah +Issac +Jefferson +Jonathan +Judson +Kennith +Leland +Levi +Lindsey +Manuel +Maxwell +Milford +Myron +Ocie +Orville +Otto +Pete +Prince +Randell +Waymon +Woodie +Alford +Bonnie +Claud +Cornelius +Curley +Dannie +Dorsey +Dwayne +Eddy +Edison +Edmond +Eldon +Emile +Enoch +Eric +Erskine +Ezell +Farrell +Gaines +Hobert +Hosea +Jacky +Jeffrey +Jerrell +Judge +Karl +Kermit +Laurence +Lionel +Lovell +Madison +Marlin +Mckinley +Morgan +Newton +Noah +Norris +Olen +Otha +Ricky +Theodis +Verbon +Verlon +Webster +Wilfred +Windell +Abe +Angelo +Artis +Augustus +Author +Bennett +Berry +Boyd +Brady +Claudie +Cleophas +Comer +Craig +Crawford +Dalton +Dudley +Earnie +Edmund +Elroy +Elvie +Emmette +Felton +Foy +Frazier +Garland +Gearld +General +Gerry +Harley +Harmon +Haywood +Hillard +Hosie +Jamie +Josh +Joshua +Kenny +Lafayette +Lance +Lemuel +Levert +Levon +Major +Melton +Miles +Quinton +Reese +Roderick +Ruffus +Sandra +Sanford +Shelly +Shirley +Silas +Stewart +Teddie +Tex +Theron +Toney +Tracy +Winfred +Wylie +James +William +John +Robert +Charles +Willie +Jerry +Larry +Thomas +George +Jimmy +David +Billy +Richard +Donald +Johnny +Bobby +Joseph +Joe +Kenneth +Edward +Henry +Ronald +Walter +Michael +Gary +Roy +Paul +Frank +Eddie +Harold +Roger +Arthur +Charlie +Samuel +Tommy +Jimmie +Douglas +Raymond +Clarence +Albert +Eugene +Carl +Fred +Terry +Wayne +Jack +Melvin +Ralph +Curtis +Howard +Harry +Jesse +Leon +Johnnie +Gerald +Ernest +Phillip +Ronnie +Dennis +Marvin +Jessie +Leroy +Danny +Don +Lee +Earl +Daniel +Floyd +Franklin +Andrew +Calvin +Cecil +Alfred +Roosevelt +Lawrence +Ray +Tommie +Benjamin +Earnest +Freddie +Louis +Herman +Lonnie +Allen +Leonard +Clyde +Herbert +Dwight +Grady +Stephen +Jim +Glenn +Lewis +Norman +Oscar +Sam +Nathaniel +Alvin +Milton +Claude +Jackie +Donnie +Benny +Bennie +Bill +Clifford +Russell +Anthony +Otis +Theodore +Dan +Gene +Steve +Lloyd +Timothy +Hugh +Mack +Horace +Hubert +Sammy +Harvey +Lester +Tony +Travis +Truman +Joel +Vernon +Warren +Chester +Elbert +Leslie +Rodney +Stanley +Bernard +Bruce +Marion +Mike +Wallace +Willard +Dewey +Morris +Randall +Woodrow +Julius +Sammie +Glen +Isaac +Jerome +Percy +Arnold +Homer +Oliver +Sylvester +Marshall +Steven +Archie +Gordon +Nathan +Rufus +Aaron +Cleveland +Grover +Edwin +Ellis +Roland +Will +Alton +Garry +Leo +Mickey +Peter +Rodger +Tom +Troy +Clifton +Clinton +Frederick +Patrick +Philip +Wilson +Ben +Bob +Junior +Luther +Mark +Perry +Victor +Alexander +Cornelius +Dale +Edgar +Gilbert +Louie +Martin +Wilbert +Winston +Barry +Elijah +Matthew +Max +Micheal +Ted +Aubrey +Clayton +Wendell +Alan +Buddy +Lynn +Virgil +Alex +Billie +Carlton +Doyle +Emmett +Lamar +Randy +Amos +Frankie +Mac +Preston +Royce +Sherman +Sidney +Wesley +Willis +Byron +Francis +Freddy +Abraham +Bobbie +Major +Moses +Elmer +Ervin +Felix +Houston +Ira +Jasper +Julian +Kennith +Mitchell +Mose +Wade +Wiley +Connie +Reginald +Rickey +Wilbur +Gregory +Hoyt +Neal +Noah +Van +Cleophus +Dave +Fredrick +Garland +Jake +Malcolm +Ned +Nelson +Rex +Ricky +Boyd +Cleo +Coy +Guy +Isaiah +Jonathan +Kerry +Marcus +Rayburn +Reuben +Vincent +Wilburn +Carlos +Elton +Forrest +Hollis +Huey +Johnie +Levi +Lorenza +Lowell +Mcarthur +Monroe +Pete +Rayford +Ross +Shelby +Waymon +Winfred +Alfonso +Andy +Buford +Carroll +Everett +Harris +Harrison +Herschel +Jacob +Jerald +Lorenzo +Manuel +Marlin +Marlon +Neil +Ocie +Odis +Ronny +Solomon +Tyrone +Allan +Alonzo +Charley +Dean +Elliott +Ernie +Gearld +Gus +Hershel +Jackson +Jamie +Jay +Jefferson +Jon +Kenny +Kermit +Maurice +Mckinley +Murray +Ollie +Randolph +Spencer +Sterling +Teddy +Thurman +Wilmer +Alvis +Anderson +Boyce +Bryant +Coleman +Dannie +Davis +Harmon +Isiah +Jason +Jeff +King +Leamon +Loyd +Milford +Millard +Pat +Phil +Riley +Roderick +Ruben +Sandy +Sonny +Winford +Woody +Alfonza +Austin +Booker +Carey +Carter +Chris +Christopher +Claud +Darrell +Dock +Early +Ed +Everette +Ezell +Foy +Freeman +Gaines +Henderson +Hermon +Ike +Irvin +Issac +Jacky +Jeffrey +Justin +Keith +Lafayette +Lemuel +Mathew +Nick +Noel +Owen +Prince +Robin +Saul +Scott +Theodis +Alphonso +Augustus +Auther +Authur +Cary +Clark +Craig +Dalton +Darryl +Earlie +Edd +Elmore +Emanuel +Emmitt +Eric +General +Gerry +Harlan +Hezekiah +Isreal +Jeffery +Joshua +Judson +Lavon +Leland +Lenard +Maxwell +Merrill +Norris +Olen +Oneal +Otha +Randal +Raymon +Rogers +Sanford +Shelton +Simon +Talmadge +Taylor +Ulysses +Walker +Wilford +Wilfred +Windell +Woodie +Alonza +Arlin +Aron +Arther +Autry +Barbara +Barney +Bert +Betty +Bradley +Brian +Bryce +Burl +Carver +Clearence +Columbus +Dallas +Delano +Denny +Edmond +Elzie +Emory +Frazier +Garey +Hardy +Hobert +Judge +Karl +Ladon +Luke +Mary +Maxie +Murry +Myron +Napoleon +Nicholas +Nolan +Odell +Ollis +Randell +Rayfield +Richmond +Royal +Rudolph +Sanders +Shirley +Silas +Stewart +Theo +Turner +Willam +Williams +James +John +William +Robert +Charles +Willie +Larry +Jerry +David +Thomas +Jimmy +George +Richard +Billy +Donald +Johnny +Bobby +Ronald +Joseph +Kenneth +Joe +Henry +Gary +Edward +Walter +Michael +Roger +Roy +Paul +Harold +Eddie +Samuel +Frank +Arthur +Tommy +Terry +Jimmie +Charlie +Danny +Clarence +Ronnie +Wayne +Albert +Carl +Gerald +Jack +Raymond +Douglas +Fred +Howard +Eugene +Jesse +Melvin +Ralph +Curtis +Daniel +Dennis +Harry +Ernest +Leroy +Johnnie +Phillip +Don +Earl +Lee +Marvin +Lewis +Andrew +Louis +Lawrence +Leon +Calvin +Cecil +Jessie +Jackie +Ray +Freddie +Herman +Alfred +Steve +Dwight +Earnest +Herbert +Leonard +Norman +Glenn +Tony +Nathaniel +Stephen +Allen +Clifford +Floyd +Franklin +Clyde +Tommie +Donnie +Anthony +Otis +Alvin +Benny +Sam +Sammy +Bill +Milton +Edwin +Gene +Barry +Bruce +Oscar +Bennie +Mack +Lonnie +Benjamin +Claude +Timothy +Rodney +Roosevelt +Joel +Randall +Mike +Wallace +Grady +Horace +Jerome +Harvey +Marion +Morris +Ben +Jim +Frederick +Hugh +Sidney +Warren +Luther +Leslie +Rufus +Alan +Dewey +Russell +Vernon +Clinton +Mickey +Stanley +Steven +Theodore +Troy +Chester +Ellis +Ted +Dan +Emmett +Leo +Alton +Gordon +Julius +Lloyd +Oliver +Sylvester +Tom +Travis +Gregory +Hubert +Lester +Cleveland +Wilbert +Woodrow +Archie +Perry +Philip +Willard +Aaron +Alex +Arnold +Clifton +Edgar +Garry +Homer +Dale +Elbert +Patrick +Wesley +Bernard +Percy +Royce +Aubrey +Frankie +Micheal +Randy +Winston +Sammie +Marshall +Nathan +Rex +Tyrone +Glen +Lorenzo +Mark +Willis +Byron +Martin +Mitchell +Virgil +Bob +Wade +Darrell +Junior +Ricky +Roland +Booker +Johnie +Preston +Truman +Freddy +Jon +Peter +Rodger +Wendell +Will +Carlton +Francis +Ira +Isaac +Marcus +Maurice +Max +Victor +Wilson +Billie +Elijah +Jake +Millard +Van +Clayton +Doyle +Fredrick +Julian +Loyd +Moses +Wiley +Alexander +Alphonso +Amos +Ervin +Keith +Rayford +Teddy +Vincent +Alonzo +Jacob +Jonathan +Matthew +Nelson +Christopher +Dave +Elmer +Freeman +Gilbert +Huey +Jeffrey +Rickey +Sherman +Andy +Buddy +Eric +Garland +Hollis +Kerry +Lamar +Louie +Lowell +Malcolm +Mcarthur +Reginald +Ross +Bobbie +Buford +Connie +Coy +Dean +Ed +Everett +Felix +Fletcher +Houston +Jackson +Jerald +Ollie +Wilbur +Austin +Barney +Carlos +Craig +Guy +Hershel +Jacky +Jay +Ned +Owen +Randolph +Ronny +Ulysses +Abraham +Anderson +Augustus +Brady +Carey +Clark +Cleophus +Cornelius +Emmitt +Forrest +Grover +Jasper +Jeff +Jerrell +Lynn +Mac +Marlin +Monroe +Norris +Robbie +Rudolph +Shelby +Spencer +Terrell +Wilburn +Carroll +Carter +Cary +Dock +Ernie +Gerry +Hoyt +Isiah +Jeffery +Maxie +Mose +Neal +Pat +Pete +Rogers +Tim +Dallas +Donny +Emanuel +Erskine +Foy +Jefferson +Levi +Lorenza +Major +Milford +Ocie +Odell +Quinton +Randal +Rayburn +Riley +Roderick +Ruben +Sanford +Thurman +Unknown +Waymon +Wilmer +Woodie +Alfonso +Allan +Auther +Boyd +Claud +Darryl +Dewayne +Dudley +Eddy +Edmond +Emory +Enoch +Gus +Herschel +Isaiah +Jame +Kenny +Lafayette +Leland +Lovell +Myron +Nolan +Sandy +Shelton +Windell +Winford +Alvis +Artis +Chris +Cleo +Coleman +Davis +Dwayne +Edd +Edsel +Elisha +Elzie +Ennis +Foster +Gaines +Hardy +Harrison +Hayward +Joesph +Ken +Kermit +Lindsey +Murray +Napoleon +Odis +Otto +Prince +Reuben +Rickie +Scotty +Solomon +Sonny +Sterling +Talmadge +Vester +Alfonza +Alonza +Arther +Author +Bert +Bradford +Butch +Columbus +Conrad +Curley +Curtiss +Delbert +Duane +Earlie +Early +Elton +Ezekiel +Gearld +Glover +Harley +Hiram +Issac +Joshua +Judge +Karl +Kelly +Ladon +Lanny +Levon +Mary +Mason +Mckinley +Morgan +Noel +Olen +Raleigh +Scott +Theodis +Toby +Toney +Verbon +Wayman +West +Wilford +Wilfred +Adolph +Alfonzo +Annie +Avery +Betty +Brooks +Cephus +Charley +Cliff +Cooper +Dana +Dannie +Darrel +Denny +Denver +Dillard +Dorothy +Elliott +Elmore +Evans +Ezell +Felton +General +Grant +Griffin +Hal +Harris +Hershell +Hobert +Hosea +Hosie +Hunter +Ivan +Johnson +Johny +Jordan +Judson +Julious +Justin +Kennith +Kent +King +Lenord +Lessie +Lincoln +Manuel +Nicholas +Noah +Obie +Orville +Otha +Palmer +Peyton +Prentice +Randell +Raymon +Richmond +Robin +Roscoe +Royal +Simon +Stuart +Terral +Tracy +Waylon +James +John +William +Robert +Charles +Larry +Willie +Jerry +Thomas +David +Jimmy +Richard +George +Donald +Ronald +Johnny +Billy +Bobby +Michael +Kenneth +Joseph +Edward +Joe +Henry +Gary +Walter +Eddie +Roy +Roger +Harold +Paul +Frank +Tommy +Samuel +Terry +Arthur +Ronnie +Danny +Jimmie +Raymond +Charlie +Clarence +Gerald +Wayne +Dennis +Albert +Howard +Carl +Fred +Daniel +Ernest +Jack +Phillip +Douglas +Curtis +Stephen +Ralph +Eugene +Johnnie +Jesse +Leon +Glenn +Harry +Marvin +Melvin +Calvin +Leroy +Steve +Earl +Andrew +Don +Lee +Allen +Earnest +Jessie +Jackie +Lawrence +Louis +Clyde +Milton +Freddie +Herman +Ray +Benjamin +Lewis +Alfred +Cecil +Leonard +Donnie +Alvin +Lonnie +Norman +Jerome +Nathaniel +Herbert +Claude +Floyd +Tony +Tommie +Mike +Rodney +Randall +Horace +Otis +Timothy +Sam +Stanley +Bennie +Bruce +Clifford +Anthony +Lester +Dwight +Gregory +Harvey +Oscar +Steven +Dan +Edwin +Roosevelt +Sylvester +Franklin +Gene +Travis +Sammy +Hugh +Joel +Morris +Luther +Garry +Hubert +Rickey +Perry +Wallace +Barry +Benny +Grady +Marion +Russell +Mack +Patrick +Percy +Rufus +Lloyd +Ted +Tom +Jim +Philip +Troy +Warren +Bill +Julius +Glen +Archie +Mark +Randy +Alan +Edgar +Reginald +Willard +Arnold +Clifton +Marshall +Oliver +Sidney +Theodore +Chester +Frederick +Leslie +Mickey +Gordon +Vernon +Alton +Bernard +Leo +Clinton +Elbert +Micheal +Ricky +Woodrow +Alex +Dale +Sammie +Wilson +Elmer +Dewey +Ellis +Grover +Lamar +Preston +Wesley +Freddy +Malcolm +Wilbert +Willis +Bob +Matthew +Mitchell +Will +Aubrey +Ben +Virgil +Byron +Carlton +Max +Nathan +Rex +Roland +Amos +Isaac +Rayford +Ronny +Van +Christopher +Clayton +Cleveland +Doyle +Gilbert +Kennith +Randolph +Billie +Emmett +Frankie +Fredrick +Moses +Ollie +Aaron +Alexander +Ervin +Garland +Peter +Rodger +Royce +Wendell +Anderson +Buddy +Guy +Lynn +Martin +Tyrone +Winston +Elijah +Homer +Loyd +Maurice +Abraham +Carey +Jeff +Junior +Marcus +Tim +Donny +Hollis +Lorenzo +Louie +Monroe +Terrell +Alonzo +Barney +Bobbie +Darrell +Ira +Keith +Kelly +Ned +Rayburn +Riley +Ross +Rudolph +Spencer +Ulysses +Victor +Wade +Dave +Houston +Isaiah +Jerald +Jeremiah +Nelson +Owen +Sherman +Andy +Eddy +Francis +Hoyt +Jackson +Jasper +Jay +Jonathan +Lovell +Roderick +Solomon +Vincent +Wilburn +Clark +Connie +Coy +Eric +Jeffrey +Lorenza +Williams +Wilmer +Booker +Buford +Carlos +Cleophus +Emmitt +Felix +Forrest +Hershel +Jacob +Jeffery +Julian +Kenny +Kerry +Major +Teddy +Wilbur +Brian +Columbus +Cornelius +Erskine +Morgan +Murray +Neal +Odell +Randal +Reuben +Unknown +Wiley +Carroll +Cary +Claud +Dallas +Dalton +Denny +Dewayne +Duane +Dudley +Ed +Fletcher +Jon +Lowell +Mac +Millard +Noah +Norris +Odis +Randell +Robin +Ruben +Sanford +Sonny +Truman +Alfonso +Austin +Brady +Coleman +Craig +Dannie +Darryl +Edsel +Everett +Ezekiel +Gerry +Greg +Hal +Herschel +Huey +Lavon +Levi +Lionel +Marlin +Napoleon +Olen +Roscoe +Shelton +Sterling +Winford +Alphonso +Carter +Cornell +Eldridge +Eli +Felton +Foster +Gus +Jake +Judge +Ken +Kyle +Leland +Manuel +Milford +Nicholas +Ocie +Olin +Phil +Robbie +Rudy +Scotty +Shelby +Silas +Simon +Talmadge +Vance +Adam +Adrian +Al +Alfonza +Alphonse +Berry +Bradley +Brent +Charley +Chris +Conrad +Dana +Dock +Dwayne +Edmond +Elvin +Emanuel +Emory +Harrison +Haywood +Henderson +Hermon +Hillard +Howell +Ike +Johnie +Lance +Levon +Lindsey +Mary +Myron +Otha +Richmond +Rogers +Ron +Scott +Walker +Wilford +Alfonzo +Allan +Artis +Burl +Clay +Comer +Daryl +Delbert +Dexter +Doyce +Earlie +Early +Edd +Elliott +Elton +Ernie +Everette +Freeman +Gaylon +Glynn +Harlan +Harlon +Hayward +Isiah +Jerrel +Johnson +Justin +Karl +Kermit +King +Linda +Lucious +Melton +Miles +Nick +Noel +Nolan +Pete +Shirley +Theron +Tillman +Ward +Waymon +Abe +Arlin +Arlon +Arther +Author +Betty +Bradford +Carrol +Claudie +Cleve +Dean +Dwain +General +Hardy +Irvin +Issac +Jan +Jefferson +Kirby +Lacy +Lanny +Lomax +Lucius +Luke +Madison +Mason +Maxwell +Mose +Oneal +Orville +Prince +Quincy +Rayfield +Rick +Robby +Royal +Rubin +Sandy +Shelly +Sim +Thurman +Toney +Vaughn +Verlon +Walton +James +John +Robert +William +Charles +Larry +Willie +David +Jerry +Thomas +Donald +Ronald +Michael +George +Jimmy +Richard +Billy +Johnny +Bobby +Joseph +Kenneth +Henry +Edward +Gary +Joe +Eddie +Walter +Roger +Harold +Paul +Terry +Tommy +Roy +Danny +Ronnie +Samuel +Frank +Arthur +Charlie +Jimmie +Clarence +Raymond +Albert +Carl +Wayne +Fred +Jesse +Eugene +Curtis +Douglas +Jack +Melvin +Howard +Phillip +Dennis +Harry +Stephen +Johnnie +Daniel +Ralph +Ernest +Gerald +Leon +Andrew +Leroy +Lee +Earl +Lawrence +Lewis +Marvin +Steve +Freddie +Jackie +Cecil +Don +Glenn +Herbert +Anthony +Earnest +Steven +Allen +Donnie +Jerome +Louis +Jessie +Calvin +Ray +Leonard +Tommie +Dwight +Nathaniel +Stanley +Gregory +Herman +Alfred +Alvin +Bruce +Timothy +Tony +Otis +Roosevelt +Floyd +Claude +Clifford +Benjamin +Horace +Randall +Lonnie +Bennie +Mack +Norman +Barry +Mike +Benny +Clyde +Milton +Oscar +Rodney +Sam +Randy +Rickey +Franklin +Hugh +Sammy +Dan +Russell +Grady +Joel +Bill +Luther +Philip +Chester +Garry +Gene +Ricky +Alan +Edwin +Harvey +Jim +Lester +Mickey +Warren +Hubert +Micheal +Wallace +Frederick +Bernard +Marshall +Archie +Morris +Clinton +Marion +Mark +Homer +Troy +Edgar +Leslie +Lloyd +Sylvester +Sammie +Vernon +Ben +Patrick +Perry +Ted +Tom +Aaron +Clifton +Glen +Percy +Gordon +Lamar +Peter +Sidney +Tyrone +Leo +Theodore +Alton +Dewey +Louie +Matthew +Oliver +Willard +Christopher +Elbert +Isaac +Julius +Sherman +Wendell +Frankie +Wilbert +Dale +Rex +Rodger +Wesley +Elijah +Will +Woodrow +Arnold +Donny +Emmett +Travis +Cleveland +Doyle +Ervin +Rudolph +Wilson +Alexander +Francis +Marcus +Martin +Royce +Rufus +Alex +Bob +Clayton +Freddy +Fredrick +Kerry +Mitchell +Byron +Carlton +Lorenzo +Victor +Vincent +Wiley +Booker +Darrell +Grover +Ira +Reginald +Unknown +Elmer +Eric +Max +Nathan +Neal +Carlos +Cornelius +Dave +Emanuel +Gilbert +Nelson +Randolph +Roland +Ulysses +Amos +Billie +Isiah +Keith +Willis +Aubrey +Carey +Ellis +Loyd +Maurice +Moses +Solomon +Houston +Kenny +Lynn +Ollie +Wilbur +Wilburn +Jackson +Jeffery +Terrell +Thurman +Virgil +Wilmer +Buford +Cary +Ed +Hal +Hayward +Huey +Jay +Marlin +Noah +Rayburn +Rayford +Ronny +Roscoe +Spencer +Van +Wade +Winston +Felix +Hershel +Jeff +Jeffrey +Jerald +Jeremiah +Jon +Julian +Kennith +Major +Mose +Preston +Waymon +Allan +Barney +Connie +Coy +Dallas +Davis +Edmond +Ezell +Harrison +Hoyt +Jake +Jasper +Owen +Riley +Roderick +Abraham +Alonzo +Buddy +Clark +Fletcher +Garland +Gearld +Jonathan +Junior +Mac +Murray +Otha +Ross +Teddy +Winfred +Alfonza +Dalton +Eddy +Emmitt +Erskine +Gerry +Kelly +King +Kirby +Lindsey +Lovell +Lowell +Lucious +Malcolm +Monroe +Napoleon +Nolan +Phil +Sterling +Talmadge +Alfonso +Alonza +Bert +Chris +Craig +Dannie +Dudley +Everett +Felton +Forrest +Hiram +Hollis +Issac +Jerrell +Luke +Ned +Quinton +Sandy +Simon +Truman +Al +Alphonso +Anderson +Andy +Aron +Arther +Austin +Darryl +Jacky +Johnie +Lance +Leland +Lorenza +Marlon +Maxie +Morgan +Myron +Pete +Reuben +Rogers +Ruben +Scott +Shelby +Theodis +Vaughn +Abe +Alfonzo +Berry +Bobbie +Boyd +Cleophus +Coleman +Dean +Delbert +Early +Edsel +Ezekiel +Freeman +Gaylon +Grant +Guy +Hardy +Irvin +Isaiah +Ivory +Joey +Ken +Lafayette +Lawson +Lionel +Milford +Millard +Neil +Nicholas +Norris +Ocie +Odis +Oneal +Pat +Randell +Raymon +Rosevelt +Silas +Stevie +Toney +Wardell +Willy +Adolph +Adolphus +Alford +Angelo +Boyce +Brian +Claud +Cleo +Daryl +Dawson +Dewayne +Dorsey +Duane +Earlie +Elliott +Elmore +Elvin +Emory +Gregg +Gus +Harley +Harrell +Hilton +Hosea +Ike +Jame +Jerrel +Karl +Lenard +Mason +Miles +Nicky +Noel +Obie +Prince +Randal +Randle +Rick +Robin +Sanford +Stan +Stewart +Taylor +Tim +Turner +Waylon +Windell +Alphonse +Augusta +Author +Bennett +Bernie +Beverly +Brady +Bryant +Charley +Clay +Collis +Conrad +Curtiss +Darrel +Delmer +Delton +Derrell +Dewitt +Dexter +Dock +Donnis +Dwayne +Emery +Enoch +Essie +Farrell +Foster +General +Harmon +Hezekiah +Irby +Isadore +Jacob +Jess +Josephus +Joshua +Kent +Lanny +Lavaughn +Levert +Levi +Lewie +Lincoln +Linda +Lynwood +Madison +Manuel +Matt +Mckinley +Myles +Namon +Nick +Olen +Orville +Ottis +Porter +Quincy +Royal +Sherrill +Stephan +Theron +Winford +Woodie +Woody +Young +James +William +John +Robert +Charles +Larry +Willie +David +Jerry +Thomas +Michael +Ronald +George +Jimmy +Donald +Richard +Johnny +Billy +Joseph +Kenneth +Bobby +Gary +Joe +Eddie +Edward +Danny +Henry +Roger +Terry +Walter +Ronnie +Paul +Tommy +Harold +Roy +Samuel +Frank +Carl +Arthur +Stephen +Clarence +Albert +Daniel +Charlie +Jimmie +Phillip +Raymond +Eugene +Wayne +Curtis +Ralph +Gerald +Dennis +Howard +Jesse +Marvin +Ernest +Harry +Melvin +Leon +Fred +Jack +Johnnie +Steven +Glenn +Lawrence +Donnie +Timothy +Steve +Douglas +Gregory +Jessie +Lee +Anthony +Stanley +Bruce +Jackie +Jerome +Calvin +Andrew +Norman +Earl +Allen +Randall +Leroy +Don +Louis +Alfred +Herman +Lewis +Clyde +Horace +Nathaniel +Oscar +Cecil +Freddie +Rodney +Leonard +Lonnie +Milton +Herbert +Micheal +Roosevelt +Tommie +Dwight +Randy +Rickey +Alvin +Ray +Tony +Earnest +Mark +Benny +Sam +Ricky +Floyd +Frederick +Barry +Benjamin +Clifford +Lester +Otis +Claude +Grady +Bill +Bennie +Harvey +Philip +Edwin +Franklin +Sidney +Theodore +Gene +Marion +Dan +Mack +Patrick +Sammy +Elbert +Joel +Unknown +Leslie +Morris +Warren +Perry +Russell +Tom +Chester +Jim +Wallace +Edgar +Hugh +Hubert +Peter +Travis +Vernon +Aaron +Bernard +Percy +Clinton +Lloyd +Matthew +Rufus +Sylvester +Archie +Clifton +Garry +Mike +Reginald +Alan +Dale +Christopher +Grover +Mickey +Arnold +Frankie +Leo +Marshall +Mitchell +Troy +Willard +Ben +Doyle +Isaac +Sammie +Wilbert +Julius +Lamar +Luther +Tyrone +Woodrow +Glen +Homer +Rodger +Alton +Victor +Billie +Cleveland +Ellis +Rex +Ted +Wendell +Nathan +Randolph +Wesley +Gordon +Preston +Van +Bob +Gilbert +Alex +Dewey +Fredrick +Ira +Jonathan +Darrell +Ervin +Winston +Amos +Kerry +Ollie +Roland +Carlton +Martin +Ronny +Royce +Sherman +Wiley +Willis +Abraham +Booker +Clayton +Connie +Jeffery +Oliver +Virgil +Allan +Aubrey +Cary +Elijah +Elmer +Keith +Maurice +Max +Anderson +Donny +Kennith +Moses +Nelson +Wilburn +Byron +Cornelius +Francis +Freddy +Lynn +Silas +Vincent +Wade +Will +Emmett +Eric +Hollis +Hoyt +Jeffrey +Julian +Kenny +Lorenza +Marcus +Neal +Terrell +Wilson +Alonzo +Andy +Houston +Jeff +Lowell +Roderick +Ross +Winfred +Carlos +Craig +Dave +Lanny +Leland +Loyd +Alfonso +Buddy +Darryl +Emanuel +Felix +Guy +Lorenzo +Louie +Lovell +Major +Miles +Rayford +Wilbur +Carey +Columbus +Eddy +Elton +Everett +Ezell +Hershel +Jay +Mcarthur +Murray +Napoleon +Noah +Solomon +Al +Alexander +Alphonso +Buford +Coy +Davis +Forrest +Huey +Jackson +Jasper +Jerrell +Nicholas +Olen +Rogers +Ruben +Rudolph +Scott +Teddy +Truman +Bennett +Bobbie +Edmond +Gerry +Hal +Harrison +Isaiah +Jacob +Jake +Jerald +Junior +Ladon +Lionel +Millard +Ocie +Randal +Riley +Spencer +Adrian +Barney +Dana +Early +Ed +Fletcher +Frazier +Garland +Isiah +Jefferson +Jeremiah +Levon +Manuel +Milford +Mose +Norris +Porter +Robin +Terrence +Wilmer +Winford +Brady +Chris +Clark +Dewayne +Dewitt +Dwayne +Emmitt +Enoch +Freeman +Hayward +Herschel +Jon +Leamon +Levi +Malcolm +Mathew +Monroe +Ned +Odis +Otha +Pat +Prince +Randell +Sandy +Shelton +Sterling +Theodis +Thurman +Tim +Tracy +Ulysses +Alphonse +Alvis +Augustus +Bradley +Butch +Charley +Coleman +Cornell +Dallas +Dalton +Dannie +Elliott +Elmore +Ernie +Erskine +Gearld +Hermon +Jerold +Joesph +Judson +Karl +Kelly +Lance +Lucious +Marlin +Marlon +Oneal +Owen +Rayburn +Shelby +Sonny +Stevie +Talmadge +Vaughn +Waymon +Wilton +Windell +Woodie +Adam +Andre +Arther +Brenda +Brian +Cleophas +Darnell +Denny +Duane +Earlie +Eldridge +Emory +Ezekiel +Ferrell +Geary +General +Henderson +Hosea +Issac +Ivan +Jacky +Jerrel +Kent +Mac +Mckinley +Myron +Neil +Noel +Obie +Ottis +Reed +Reuben +Robbie +Sanford +Shelly +Simon +Stuart +Theo +Wardell +Wilford +Adolphus +Alfonzo +Authur +Bert +Bradford +Bryan +Carson +Clarance +Clay +Clayburn +Clemmie +Cornelious +Cyrus +Damon +Dean +Delbert +Donnell +Dorothy +Doyce +Dwain +Edmon +Elgin +Eli +Elisha +Ezra +Farris +Forest +Grant +Gregg +Gus +Harris +Hiram +Irvin +Ivy +Jamie +Jerone +Kirby +Kirk +Laurence +Lenard +Lindsey +Luke +Mary +Miller +Myles +Noble +Odell +Otto +Palmer +Rick +Rickie +Roscoe +Stanton +Taylor +Toney +Turner +Verlon +Vester +Waylon +Waymond +Willy +James +Robert +John +William +Charles +Larry +Willie +David +Michael +Jerry +Thomas +Ronald +Donald +George +Richard +Jimmy +Johnny +Kenneth +Gary +Billy +Bobby +Edward +Joseph +Henry +Eddie +Joe +Danny +Terry +Walter +Roger +Roy +Samuel +Paul +Harold +Tommy +Arthur +Stephen +Frank +Phillip +Clarence +Daniel +Ronnie +Carl +Dennis +Jimmie +Charlie +Raymond +Douglas +Steven +Melvin +Albert +Jesse +Wayne +Calvin +Fred +Curtis +Eugene +Donnie +Gerald +Johnnie +Howard +Gregory +Marvin +Ralph +Glenn +Andrew +Leon +Jack +Timothy +Ernest +Randall +Anthony +Lee +Steve +Harry +Jackie +Stanley +Alfred +Bruce +Jessie +Randy +Lawrence +Allen +Herman +Rickey +Leroy +Cecil +Earl +Micheal +Freddie +Leonard +Alvin +Herbert +Benjamin +Norman +Earnest +Jerome +Ricky +Unknown +Milton +Dwight +Otis +Barry +Oscar +Tommie +Lonnie +Nathaniel +Clifford +Clyde +Lewis +Louis +Mark +Don +Franklin +Ray +Philip +Floyd +Joel +Roosevelt +Tony +Rodney +Frederick +Patrick +Russell +Alan +Grady +Frankie +Harvey +Bennie +Horace +Lester +Chester +Tyrone +Wallace +Dale +Marion +Theodore +Bernard +Reginald +Christopher +Sam +Benny +Edwin +Gordon +Warren +Claude +Sammy +Sylvester +Edgar +Gene +Glen +Perry +Mack +Clifton +Dan +Aaron +Leo +Rufus +Willard +Hubert +Mickey +Nathan +Gilbert +Luther +Oliver +Wendell +Morris +Tom +Isaac +Percy +Peter +Wilbert +Alton +Jim +Kerry +Leslie +Travis +Vernon +Ben +Victor +Hugh +Lloyd +Marshall +Maurice +Ted +Aubrey +Bill +Garry +Arnold +Cleveland +Elbert +Ellis +Eric +Homer +Sidney +Troy +Marcus +Rex +Clinton +Darrell +Fredrick +Mike +Will +Freddy +Lamar +Sherman +Alexander +Elijah +Keith +Roland +Wesley +Dewey +Alex +Guy +Jeffrey +Mitchell +Sammie +Van +Virgil +Archie +Emmett +Jonathan +Martin +Moses +Randolph +Roderick +Winston +Julius +Lowell +Teddy +Wilbur +Darryl +Ira +Julian +Louie +Matthew +Alonzo +Buddy +Byron +Clayton +Ervin +Felix +Francis +Ivory +Jeffery +Carlton +Craig +Doyle +Junior +Lynn +Max +Terrell +Vincent +Willis +Andy +Donny +Lorenza +Malcolm +Wilson +Bobbie +Booker +Dannie +Dave +Dean +Kenny +Preston +Rodger +Royce +Rudolph +Amos +Buford +Carey +Elton +Everett +Grover +Karl +Lorenzo +Ocie +Randal +Rayford +Spencer +Woodrow +Anderson +Carlos +Jasper +Neal +Rogers +Ruben +Wiley +Abraham +Billie +Cleophus +Dana +Jake +Jeff +Manuel +Millard +Mose +Nelson +Truman +Alphonso +Edmond +Elmer +Erskine +Freeman +Hollis +Jacky +Mcarthur +Oneal +Ronny +Scott +Sterling +Allan +Charley +Connie +Emanuel +Ezzard +Houston +Kennith +Loyd +Neil +Ollie +Otha +Rickie +Wade +Arther +Barney +Bob +Brady +Carter +Forrest +Hank +Hershel +Isaiah +Ivan +Jackson +Kelly +Lionel +Marlin +Melton +Monroe +Taylor +Wilburn +Winfred +Alfonzo +Alonza +Austin +Carroll +Chris +Cleo +Coy +Dallas +Dwayne +Ed +Eddy +Emmitt +Ezell +Hoyt +Jefferson +Joey +Lovell +Major +Miles +Murray +Ottis +Phil +Rayburn +Robin +Shelly +Tim +Al +Bert +Darnell +Dexter +Edd +Fletcher +Gerry +Harris +Harrison +Huey +Issac +Jerald +Johnie +Jon +Lanny +Levon +Mary +Nolan +Norris +Olen +Pete +Quinton +Randell +Reuben +Ross +Thurman +Ulysses +Waymon +Wilmer +Alfonso +Bennett +Brian +Clark +Coleman +Cornelius +Davis +Duane +Early +Elvin +Felton +Glynn +Hayward +Jame +Jay +Jeremiah +Kent +Kevin +Kyle +Lavon +Leamon +Levi +Lucius +Mason +Mitchel +Monty +Myron +Ned +Orlando +Roscoe +Sandy +Sanford +Shelby +Stevie +Wilfred +Abe +Adam +Adrian +Bradley +Buster +Cedric +Coley +Danial +Dock +Earlie +Edison +Edmund +Elmore +Enoch +Farrell +Foy +Gaylon +Gus +Haywood +Hilton +Hiram +Howell +Isiah +Jacob +Ken +King +Laurence +Luke +Mckinley +Milford +Noah +Odell +Rick +Rubin +Scotty +Silas +Solomon +Wilton +Angelo +Annie +Artis +Authur +Bonnie +Carnell +Cary +Clarance +Cliff +Collie +Conrad +Dalton +Darwin +Daryl +Davie +Delbert +Dewayne +Doyce +Dudley +Eli +Ennis +Forest +Franky +Garland +Grant +Harley +Harmon +Herschel +Hosie +Ike +Jason +Joenathan +Judge +Judson +Kermit +Lawson +Leland +Lemuel +Linda +Lonzo +Lucious +Mac +Morgan +Napoleon +Nick +Owen +Radford +Theron +Webster +Winford +James +Robert +John +William +Charles +Larry +Michael +David +Willie +Thomas +Jerry +Donald +Richard +Ronald +Johnny +Kenneth +George +Gary +Jimmy +Joseph +Billy +Bobby +Edward +Terry +Henry +Roger +Eddie +Danny +Joe +Tommy +Walter +Paul +Samuel +Roy +Frank +Ronnie +Stephen +Arthur +Dennis +Steven +Harold +Daniel +Charlie +Douglas +Raymond +Carl +Phillip +Clarence +Gregory +Ralph +Donnie +Wayne +Curtis +Albert +Anthony +Stanley +Gerald +Melvin +Timothy +Ernest +Fred +Jimmie +Eugene +Ricky +Johnnie +Bruce +Lee +Jack +Jackie +Andrew +Jesse +Randall +Howard +Leon +Randy +Glenn +Marvin +Mark +Steve +Calvin +Leroy +Allen +Harry +Dwight +Earl +Lawrence +Jessie +Micheal +Nathaniel +Freddie +Jerome +Rickey +Earnest +Lewis +Leonard +Barry +Herman +Alvin +Alfred +Cecil +Louis +Norman +Unknown +Ray +Roosevelt +Milton +Benjamin +Tony +Don +Herbert +Alan +Otis +Claude +Philip +Rodney +Sylvester +Joel +Tommie +Floyd +Frederick +Lonnie +Clyde +Clifford +Benny +Reginald +Warren +Russell +Horace +Frankie +Grady +Sam +Gene +Edwin +Franklin +Harvey +Oscar +Keith +Mickey +Dale +Patrick +Bernard +Lloyd +Chester +Bennie +Christopher +Alton +Sidney +Perry +Aaron +Garry +Morris +Dan +Leslie +Rex +Wendell +Matthew +Marshall +Bill +Glen +Homer +Sammy +Travis +Darrell +Luther +Rufus +Sammie +Ted +Ben +Hugh +Lester +Mack +Clifton +Hubert +Isaac +Nathan +Randolph +Theodore +Archie +Edgar +Jeffery +Jim +Marion +Peter +Vernon +Wesley +Alonzo +Clinton +Fredrick +Gordon +Oliver +Percy +Tyrone +Elbert +Lamar +Wilbert +Jonathan +Martin +Victor +Wallace +Eric +Mike +Mitchell +Preston +Willard +Emmett +Roland +Sherman +Donny +Leo +Louie +Aubrey +Byron +Dewey +Julius +Rodger +Ellis +Kerry +Maurice +Royce +Virgil +Carlton +Gilbert +Forrest +Grover +Teddy +Troy +Willis +Alex +Ezzard +Freddy +Lynn +Tom +Wilbur +Will +Abraham +Andy +Arnold +Bob +Cornelius +Darryl +Doyle +Guy +Lorenzo +Marcus +Roderick +Scott +Ulysses +Elijah +Elmer +Ira +Jeffrey +Kenny +Rickie +Alexander +Buddy +Carey +Felix +Jasper +Max +Al +Clayton +Ervin +Moses +Rudolph +Terrell +Tim +Wilson +Winston +Amos +Anderson +Carlos +Clark +Cleveland +Dana +Elton +Julian +Kennith +Lorenza +Malcolm +Mcarthur +Myron +Nelson +Ocie +Ronny +Vincent +Alphonso +Craig +Dannie +Manuel +Mose +Neal +Norris +Rogers +Spencer +Woodrow +Arther +Carter +Chris +Francis +Jacob +Napoleon +Nolan +Rayford +Van +Wade +Darnell +Dave +Hollis +Huey +Jacky +Loyd +Major +Bobbie +Brian +Cary +Cedric +Connie +Isiah +Jake +Jay +Jerald +Jon +Junior +Karl +Lanny +Monte +Noah +Rick +Robin +Barney +Dewayne +Ed +Eddy +Edmond +Erskine +Fletcher +Gerry +Grant +Hoyt +Jeff +Kelly +Kent +Leland +Lindsey +Lionel +Lowell +Milford +Millard +Neil +Ollie +Ruben +Waymon +Alfonso +Billie +Bryant +Buford +Clemmie +Cleophus +Coleman +Emmitt +Garland +Greg +Houston +Jackson +Jeremiah +Jerrell +Kirk +Marc +Randal +Sandy +Sterling +Stevie +Theodis +Thurman +Wiley +Artis +Columbus +Coy +Daryl +Denny +Edmund +Eli +Glynn +Hiram +Jefferson +Joey +Kevin +Murray +Shelby +Toney +Wilburn +Wilfred +Winfred +Alfonza +Allan +Austin +Bradley +Bryan +Burl +Clay +Cornell +Davis +Dexter +Dudley +Elmore +Enoch +Erwin +Everett +Ferrell +Hal +Harlan +Harris +Hershel +Isaiah +Jame +Kim +King +Leamon +Levie +Levon +Lovell +Mac +Mason +Mckinley +Miles +Mitchel +Monty +Nicholas +Reuben +Ross +Simon +Solomon +Wilton +Wyman +Zack +Adrian +Alonza +Alvie +Claud +Cleo +Conrad +Dallas +Damon +Dean +Derrick +Edsel +Elvin +Emanuel +Ennis +Ernie +Felton +Foster +Gayle +Gaylon +General +Geoffrey +Harrison +Haywood +Hosea +Ivan +Judge +Laurence +Lemuel +Lenard +Lucious +Luke +Maxie +Michel +Monroe +Ned +Odis +Olen +Oneal +Orlando +Owen +Pat +Phil +Riley +Robbie +Sanford +Sonny +Stephan +Stewart +Stuart +Talmadge +Woodie +Alphonse +Angelo +Augusta +Authur +Brenda +Buster +Carroll +Chauncey +Cleve +Cornelious +Darrel +Delbert +Dorsey +Drew +Duane +Dwayne +Early +Emory +Farrell +Frazier +Freeman +Granville +Gus +Hank +Hayward +Hughie +Ike +Irvin +Ivory +Jason +Jerrel +Johnie +Kermit +Kyle +Marlon +Mary +Mathew +Maxwell +Morgan +Murry +Myles +Nick +Obie +Orville +Otha +Porter +Randell +Reggie +Reginal +Ronney +Royal +Sanders +Shannon +Shelley +Shirley +Silas +Terrance +Terrence +Theotis +Thurston +Wilford +Williams +James +John +William +Robert +Charles +David +Michael +Larry +Willie +Thomas +Richard +Jerry +Donald +Ronald +Kenneth +Gary +Johnny +Jimmy +George +Joseph +Billy +Edward +Bobby +Terry +Danny +Eddie +Henry +Roger +Paul +Joe +Steven +Walter +Ronnie +Tommy +Phillip +Samuel +Stephen +Frank +Roy +Arthur +Carl +Dennis +Harold +Randy +Daniel +Anthony +Gregory +Curtis +Timothy +Charlie +Raymond +Melvin +Ricky +Jack +Wayne +Rickey +Douglas +Albert +Jesse +Stanley +Gerald +Clarence +Mark +Jimmie +Ralph +Bruce +Steve +Andrew +Donnie +Fred +Howard +Randall +Glenn +Lee +Calvin +Dwight +Eugene +Jessie +Barry +Jackie +Jerome +Lawrence +Micheal +Earl +Alvin +Marvin +Leon +Alfred +Ernest +Johnnie +Ray +Harry +Allen +Freddie +Earnest +Clyde +Unknown +Cecil +Herman +Rodney +Clifford +Don +Nathaniel +Leonard +Tony +Herbert +Lonnie +Benjamin +Tommie +Alan +Patrick +Roosevelt +Leroy +Milton +Norman +Russell +Lewis +Franklin +Benny +Floyd +Frederick +Joel +Dale +Dan +Louis +Reginald +Theodore +Horace +Frankie +Otis +Vernon +Bernard +Jeffery +Jeffrey +Sammy +Lester +Philip +Warren +Oscar +Aaron +Bennie +Garry +Claude +Keith +Lloyd +Rex +Sidney +Harvey +Mack +Sylvester +Wallace +Marion +Mitchell +Perry +Chester +Darrell +Hugh +Sam +Edwin +Percy +Luther +Gordon +Grady +Jim +Archie +Morris +Bill +Alton +Fredrick +Leslie +Oliver +Rodger +Tyrone +Wesley +Gene +Hubert +Roderick +Eric +Glen +Jonathan +Travis +Marshall +Peter +Aubrey +Elijah +Ellis +Clinton +Edgar +Elbert +Mike +Moses +Roland +Wendell +Wilbert +Bob +Lamar +Martin +Maurice +Mickey +Nathan +Victor +Christopher +Francis +Homer +Randolph +Scott +Willard +Ben +Marcus +Tom +Cleveland +Clifton +Craig +Felix +Freddy +Malcolm +Nelson +Ted +Winston +Doyle +Isaac +Lorenzo +Matthew +Preston +Sherman +Troy +Will +Amos +Byron +Donny +Ervin +Guy +Alex +Arnold +Leo +Rufus +Virgil +Wiley +Alexander +Kenny +Sammie +Andy +Dewey +Julius +Lynn +Max +Willis +Alonzo +Carlos +Carlton +Jeff +Jon +Neal +Rick +Ira +Junior +Royce +Terrell +Wilson +Allan +Dana +Dannie +Jasper +Karl +Lorenza +Randal +Ronny +Van +Wilbur +Alphonso +Billie +Darryl +Grover +Jacky +Kennith +Kerry +Vincent +Wade +Woodrow +Barney +Clark +Dewayne +Gilbert +Harrison +Jay +Rickie +Stevie +Abraham +Bobbie +Booker +Cary +Chris +Darnell +Darrel +Elton +Huey +Kevin +Millard +Mose +Myron +Ollie +Teddy +Adrian +Coleman +Connie +Cornelius +Delbert +Emmett +Houston +Isaiah +Jerald +Lovell +Winfred +Buford +Clayton +Cleo +Dalton +Dean +Emanuel +Lanny +Levi +Louie +Lowell +Rayford +Riley +Rogers +Stewart +Bradley +Columbus +Dallas +Daryl +Dexter +Early +Elliott +Elmer +Fletcher +Forrest +Isiah +Ivan +Jefferson +Julian +Loyd +Monroe +Murray +Napoleon +Norris +Reuben +Tim +Wilburn +Winford +Al +Butch +Dave +Ed +Ezzard +Hoyt +Issac +Kelvin +Kent +Kim +Otto +Robin +Ross +Rudolph +Sandy +Sanford +Solomon +Spencer +Truman +Waymon +Alfonso +Alfonzo +Andre +Carey +Charley +Davis +Derek +Dock +Ernie +Gearld +Gerry +Irvin +Johnie +Lance +Leland +Lucious +Manuel +Marlon +Milford +Neil +Owen +Ruben +Scotty +Stephan +Sterling +Ulysses +Wilmer +Zachary +Adam +Alfonza +Anderson +Augustus +Buddy +Cedric +Cleophus +Denny +Dudley +Elvin +Everett +Freeman +General +Hiram +Hollis +Ivory +Jacob +Jake +Kelly +Ken +King +Mary +Mcarthur +Ned +Nicky +Noble +Orlando +Otha +Pat +Randell +Rayburn +Raymon +Rubin +Silas +Stanford +Taylor +Theo +Theodis +Wilfred +Woodie +Wyatt +Wyman +Bert +Boyd +Brad +Bradford +Brent +Brian +Burl +Conrad +Coy +Donell +Doyce +Eddy +Emmitt +Erskine +Ezell +Gerard +Gus +Hal +Harley +Harris +Haywood +Hershel +Jeremiah +Joesph +Kirk +Lane +Lionel +Marlin +Marty +Maxwell +Michel +Miles +Monty +Myles +Nicholas +Nolan +Ozell +Pete +Phil +Prince +Raleigh +Rodrick +Talmadge +Terrence +Toby +Vance +Adolphus +Alford +Alphonse +Authur +Bailey +Berry +Buster +Cornell +Crawford +Darius +Derrell +Dwayne +Earlie +Edmond +Eldridge +Elmore +Emory +Enoch +Ezekiel +Foy +Garland +Hardy +Jerrell +Jonnie +Joshua +Judge +Leamon +Lebaron +Lemuel +Lincoln +Lindsey +Lue +Madison +Mckinley +Merrill +Morgan +Porter +Quinton +Rayfield +Robbie +Rocky +Royal +Shelby +Shirley +Sonny +Stuart +Theron +Wilford +James +William +Robert +John +Michael +Charles +David +Larry +Willie +Thomas +Richard +Donald +Jerry +Ronald +Johnny +George +Kenneth +Gary +Joseph +Danny +Jimmy +Terry +Bobby +Billy +Roger +Edward +Henry +Eddie +Paul +Steven +Joe +Dennis +Stephen +Walter +Randy +Tommy +Ricky +Samuel +Anthony +Ronnie +Carl +Gregory +Arthur +Roy +Phillip +Frank +Rickey +Daniel +Harold +Curtis +Stanley +Timothy +Melvin +Clarence +Douglas +Mark +Charlie +Raymond +Donnie +Calvin +Steve +Wayne +Jimmie +Randall +Jesse +Ralph +Rodney +Albert +Andrew +Jack +Bruce +Gerald +Jerome +Jackie +Dwight +Jessie +Howard +Eugene +Fred +Ernest +Leon +Marvin +Tony +Ray +Nathaniel +Earnest +Harry +Glenn +Leonard +Leroy +Barry +Johnnie +Alfred +Benjamin +Lee +Micheal +Allen +Jeffrey +Lawrence +Unknown +Earl +Alan +Norman +Don +Freddie +Clifford +Louis +Philip +Frederick +Alvin +Roosevelt +Cecil +Darrell +Herman +Edwin +Lonnie +Milton +Lewis +Patrick +Reginald +Franklin +Garry +Russell +Christopher +Keith +Herbert +Dale +Frankie +Otis +Jeffery +Lester +Sylvester +Bernard +Joel +Perry +Tommie +Bennie +Warren +Luther +Claude +Horace +Peter +Wallace +Benny +Chester +Clyde +Dan +Harvey +Sidney +Floyd +Leslie +Marshall +Vernon +Lamar +Tyrone +Clifton +Fredrick +Wesley +Grady +Mitchell +Travis +Aaron +Gordon +Lloyd +Mack +Mickey +Oscar +Roderick +Sammy +Julius +Martin +Morris +Rex +Wilbert +Percy +Rodger +Gene +Jim +Maurice +Roland +Sam +Alexander +Glen +Leo +Nathan +Victor +Alton +Edgar +Isaac +Theodore +Troy +Vincent +Clinton +Hugh +Mike +Kerry +Marcus +Oliver +Alonzo +Ben +Marion +Rufus +Van +Aubrey +Jonathan +Lynn +Matthew +Max +Ronny +Scott +Sherman +Alex +Archie +Arnold +Byron +Hubert +Ted +Wade +Wendell +Bill +Gilbert +Ira +Jeff +Will +Carlton +Craig +Freddy +Grover +Winston +Cleveland +Ellis +Eric +Sammie +Amos +Elbert +Elijah +Guy +Lorenzo +Moses +Randal +Randolph +Rickie +Tom +Willard +Emmett +Francis +Royce +Virgil +Dewey +Donny +Emanuel +Stevie +Carey +Dannie +Dewayne +Ervin +Jacky +Jon +Kenny +Lorenza +Lowell +Rocky +Teddy +Allan +Brian +Chris +Karl +Myron +Norris +Robin +Andre +Andy +Clayton +Connie +Cornelius +Darryl +Houston +Terrell +Willis +Woodrow +Abraham +Buddy +Derrick +Elmer +Homer +Kent +Neal +Nelson +Owen +Rogers +Wilbur +Barney +Carlos +Daryl +Forrest +Julian +Junior +Kevin +Preston +Sanford +Wilson +Bobbie +Bradley +Elton +Felix +Jay +Malcolm +Nicholas +Wiley +Alfonza +Billie +Bob +Coy +Darnell +Doyle +Greg +Hank +Hoyt +Isiah +Kim +Louie +Rayford +Ulysses +Wyman +Alfonso +Alphonso +Austin +Booker +Cedric +Elliott +Everett +Issac +Jacob +Jefferson +Jeremiah +Joey +Napoleon +Neil +Otto +Rick +Rudy +Sterling +Brad +Buford +Clark +Dave +Dudley +Ernie +Erskine +Huey +Jackson +Judge +Kennith +Kyle +Lanny +Major +Mose +Ollie +Riley +Rudolph +Stewart +Wilmer +Winfred +Al +Alfonzo +Alford +Anderson +Authur +Dana +Darrel +Duane +Eddy +Ivan +Joesph +Kirk +Lance +Lindsey +Lovell +Marlin +Murray +Ned +Nicky +Robbie +Roscoe +Sandy +Spencer +Tim +Toney +Adam +Bert +Carroll +Cleophus +Conrad +Cornell +Dallas +Damon +Gerry +Glynn +Gregg +Harrison +Haywood +Hershel +Hiram +Hollis +Ike +Ivory +Jake +Johnson +Kelvin +Leland +Lucious +Malcom +Marc +Mckinley +Millard +Odis +Pete +Randel +Randell +Reuben +Simon +Talmadge +Winford +Adolph +Adolphus +Alphonse +Cleo +Dalton +Dexter +Dock +Donell +Donnell +Early +Elmore +Emmitt +Ezekiel +Felton +Harris +Hayward +Hershell +Irby +Irvin +Jame +Jasper +Judson +King +Lane +Lionel +Mac +Manuel +Miles +Morgan +Nickey +Olen +Prince +Ricardo +Ross +Ruben +Stephan +Terrance +Terrence +Theodis +Thurman +Woody +Abe +Aron +Artis +Audie +Avery +Bernie +Boyd +Bradford +Brady +Brent +Carlis +Carter +Cephus +Charley +Charlton +Cleve +Cliff +Coleman +Columbus +Curley +Davey +Dean +Denny +Dillard +Dorsey +Durwood +Eli +Elisha +Elvin +Evans +Freeman +General +Gerard +Hal +Harlan +Herschel +Johnie +Jones +Lenard +Levi +Levon +Loyd +Mary +Monte +Noah +Obie +Olin +Oneal +Pat +Rayburn +Royzell +Rozell +Scotty +Shirley +Silas +Thaddeus +Truman +Tyler +Watson +Waymond +Webster +Wilfred +Wyatt +Zack +Zollie +James +William +John +Robert +Michael +Charles +David +Larry +Willie +Richard +Thomas +Donald +Jerry +Kenneth +Ronald +Gary +Johnny +Terry +Joseph +George +Danny +Jimmy +Billy +Bobby +Edward +Ricky +Steven +Paul +Randy +Roger +Joe +Henry +Stephen +Eddie +Anthony +Timothy +Mark +Phillip +Dennis +Gregory +Tommy +Rickey +Samuel +Walter +Ronnie +Daniel +Harold +Curtis +Roy +Carl +Frank +Arthur +Stanley +Steve +Douglas +Clarence +Randall +Wayne +Howard +Tony +Charlie +Melvin +Jerome +Albert +Barry +Calvin +Bruce +Donnie +Jimmie +Raymond +Jack +Micheal +Fred +Ralph +Alvin +Rodney +Eugene +Glenn +Johnnie +Marvin +Ray +Jeffery +Gerald +Jackie +Lee +Earnest +Ernest +Jessie +Alfred +Lawrence +Dwight +Leroy +Unknown +Allen +Jesse +Alan +Cecil +Jeffrey +Leon +Patrick +Freddie +Nathaniel +Leonard +Philip +Reginald +Don +Andrew +Frederick +Joel +Milton +Clifford +Harry +Benjamin +Herman +Keith +Norman +Roosevelt +Earl +Darrell +Garry +Lewis +Lester +Louis +Herbert +Benny +Frankie +Floyd +Franklin +Lonnie +Dale +Russell +Morris +Horace +Otis +Victor +Tommie +Clyde +Mitchell +Sammy +Rex +Tyrone +Harvey +Leslie +Perry +Bennie +Marion +Mickey +Bernard +Christopher +Sylvester +Warren +Edwin +Wendell +Hugh +Oscar +Roland +Vernon +Claude +Grady +Marshall +Mike +Rufus +Clifton +Gordon +Nathan +Eric +Lloyd +Wallace +Chester +Fredrick +Hubert +Theodore +Aaron +Kerry +Lorenzo +Marcus +Scott +Byron +Luther +Roderick +Wesley +Dan +Edgar +Jim +Julius +Lynn +Peter +Sidney +Aubrey +Carlton +Maurice +Alton +Darryl +Isaac +Oliver +Wilbert +Elbert +Sam +Vincent +Donny +Jonathan +Kevin +Ben +Glen +Leo +Mack +Myron +Rickie +Robin +Stevie +Travis +Arnold +Rodger +Wade +Alex +Percy +Sammie +Bradley +Chris +Clinton +Craig +Karl +Martin +Tom +Dewey +Randolph +Ted +Troy +Bill +Joey +Lamar +Max +Sherman +Willard +Allan +Gilbert +Homer +Nelson +Royce +Winston +Andre +Brian +Cleveland +Cornelius +Doyle +Ellis +Matthew +Alexander +Amos +Archie +Cedric +Dana +Emmett +Felix +Freddy +Guy +Ira +Kelvin +Randal +Anderson +Andy +Carlos +Elijah +Ervin +Francis +Gene +Jeff +Kennith +Malcolm +Will +Alonzo +Alphonso +Jacob +Kenny +Norris +Rocky +Virgil +Wilson +Woodrow +Clayton +Ross +Willis +Abraham +Carey +Dexter +Hoyt +Jacky +Jeremiah +Lowell +Moses +Van +Al +Bob +Eddy +Jon +Julian +Lorenza +Louie +Teddy +Wilbur +Dannie +Elmer +Elton +Garland +Huey +Jay +Major +Neal +Preston +Ulysses +Billie +Cleophus +Dave +Dean +Derrick +Emanuel +Grover +Hayward +Isiah +Leland +Marc +Neil +Ollie +Rayford +Ronny +Sandy +Terrell +Alfonso +Alonza +Dallas +Darrel +Derek +Erskine +Gerry +Hollis +Junior +Lance +Lovell +Marlin +Marty +Owen +Rick +Riley +Rudolph +Spencer +Waymon +Wiley +Adrian +Alfonza +Austin +Brent +Clark +Daryl +Dudley +Emmitt +Everett +Hosea +Ivan +Jasper +Kim +King +Kirk +Levi +Loyd +Tim +Toney +Berry +Blake +Booker +Brady +Buddy +Carnell +Clay +Edmond +Elliott +Elvin +Fletcher +Harris +Hershel +Ike +Jerald +Lanny +Millard +Mose +Napoleon +Pete +Quinton +Robby +Rogers +Shelby +Solomon +Stanford +Thurman +Winfred +Alphonse +Angelo +Barney +Brad +Brenda +Coy +Curley +Dalton +Dewayne +Early +Faron +Fernando +Greg +Gus +Hank +Isaiah +Issac +Ivory +Jackson +Jake +Jefferson +Joesph +Johnie +Judson +Kenney +Lindsey +Marlon +Mary +Nolan +Orlando +Randell +Ricardo +Sheldon +Stan +Tyler +Verlon +Zachary +Adam +Adolphus +Arther +Bobbie +Bryant +Buford +Carter +Cary +Cleo +Darnell +Delbert +Dwayne +Ed +Edd +Farron +Hal +Harlon +Houston +Kelly +Kent +Lemuel +Manuel +Melton +Monroe +Murray +Odell +Olen +Oneal +Robbie +Ruben +Shelly +Sterling +Theodis +Timmy +Wilburn +Abe +Artis +Augusta +Boyd +Chuck +Clarance +Coleman +Columbus +Connell +Conrad +Dane +Danial +Danney +Denny +Dusty +Elisha +Evans +Forrest +Geary +Gerome +Graham +Grant +Herschel +Hezekiah +Howell +Juan +Kendall +Kermit +Lannie +Laurence +Leamon +Lonzo +Maxie +Mervin +Micky +Monty +Nicholas +Noah +Ocie +Odis +Otha +Pat +Rubin +Rusty +Sanford +Scotty +Silas +Spurgeon +Stephan +Stuart +Taylor +Thad +Thaddeus +Theron +Vance +Walton +Woodie +James +Michael +John +Robert +William +David +Charles +Larry +Willie +Richard +Kenneth +Thomas +Donald +Jerry +Gary +Ronald +Johnny +Terry +Joseph +George +Jimmy +Danny +Billy +Randy +Steven +Anthony +Ricky +Bobby +Eddie +Mark +Edward +Roger +Gregory +Dennis +Timothy +Phillip +Paul +Stephen +Joe +Ronnie +Rickey +Henry +Curtis +Carl +Walter +Samuel +Daniel +Tommy +Stanley +Roy +Arthur +Steve +Frank +Melvin +Harold +Randall +Tony +Douglas +Charlie +Jerome +Raymond +Gerald +Jeffrey +Wayne +Albert +Barry +Jeffery +Clarence +Bruce +Ray +Micheal +Glenn +Donnie +Howard +Reginald +Rodney +Ralph +Andrew +Calvin +Allen +Eugene +Jack +Jackie +Marvin +Leon +Alan +Fred +Lee +Nathaniel +Jesse +Jimmie +Lawrence +Alvin +Freddie +Dwight +Clifford +Christopher +Alfred +Benjamin +Earl +Garry +Keith +Ernest +Unknown +Don +Jessie +Joel +Cecil +Leonard +Herbert +Earnest +Johnnie +Milton +Russell +Philip +Bernard +Leroy +Frederick +Darrell +Herman +Lewis +Roderick +Dale +Franklin +Horace +Floyd +Harry +Lonnie +Patrick +Lester +Perry +Peter +Wallace +Kevin +Norman +Tyrone +Bennie +Mike +Roosevelt +Clyde +Eric +Morris +Tommie +Victor +Dan +Benny +Sylvester +Louis +Glen +Kerry +Rex +Frankie +Edwin +Harvey +Leslie +Byron +Martin +Marcus +Sammy +Vernon +Aaron +Claude +Edgar +Julius +Lorenzo +Mickey +Otis +Scott +Travis +Carlton +Craig +Oscar +Warren +Clinton +Mitchell +Wendell +Wilbert +Chester +Mack +Clifton +Lloyd +Archie +Hubert +Wesley +Guy +Jonathan +Marshall +Maurice +Sammie +Sidney +Arnold +Gordon +Marion +Theodore +Van +Fredrick +Percy +Sam +Stevie +Jim +Kenny +Malcolm +Matthew +Rufus +Brian +Grady +Hugh +Leo +Randolph +Luther +Oliver +Vincent +Dexter +Jon +Troy +Clayton +Donny +Elbert +Jay +Lynn +Randal +Wade +Isaac +Max +Robin +Tom +Winston +Alonzo +Bill +Cleveland +Derrick +Lamar +Rodger +Virgil +Aubrey +Ben +Ellis +Karl +Nathan +Alton +Andy +Connie +Gene +Ira +Julian +Marty +Moses +Myron +Preston +Woodrow +Alphonso +Chris +Emmett +Gilbert +Joey +Roland +Ronny +Ted +Alexander +Carlos +Cedric +Elijah +Freddy +Marlon +Nelson +Rickie +Sherman +Amos +Dwayne +Felix +Jerald +Junior +Napoleon +Neal +Teddy +Willard +Bob +Darryl +Dewey +Eddy +Ervin +Francis +Ruben +Terrell +Alex +Andre +Dana +Daryl +Fletcher +Tim +Winfred +Al +Bradley +Buddy +Dave +Dewayne +Elton +Gerry +Hollis +Kent +Leland +Mose +Orlando +Quinton +Reuben +Wilbur +Willis +Wilson +Carey +Doyle +Elmer +Grover +Hoyt +Ivory +Jasper +Kennith +Lovell +Murray +Rayford +Bryan +Everett +Jake +Jeff +Louie +Rocky +Royce +Shelby +Stuart +Theodis +Toney +Allan +Barney +Clark +Dannie +Davis +Emanuel +Hal +Homer +Kelly +Kim +Kyle +Neil +Ollie +Alfonso +Alfonza +Alonza +Alphonse +Booker +Cornelius +Darnell +Dudley +Erskine +Kelvin +Pete +Rudolph +Spencer +Terrance +Terrence +Brent +Buford +Cary +Cleophus +Dean +Demetrius +Ezell +Freeman +Grant +Greg +Houston +Jacob +Jeremiah +Lowell +Marc +Phil +Randell +Ulysses +Waymon +Alfonzo +Bert +Billie +Carter +Cleve +Conrad +Dewitt +Ed +Elmore +Forrest +Garland +Hank +Hershel +Ike +Jacky +Kirk +Levi +Loyd +Maxwell +Odell +Rick +Robbie +Ross +Shelton +Solomon +Thaddeus +Wilburn +Wilmer +Adrian +Audie +Carnell +Coy +Davey +Edmund +Harlan +Isiah +Jason +Jefferson +Jody +Joesph +Junius +Levon +Lindsey +Lionel +Lorenza +Mac +Major +Mary +Monroe +Monte +Nicholas +Nolan +Reggie +Rodrick +Saul +Woodie +Abraham +Antonio +Augustus +Austin +Barton +Berry +Bobbie +Boyd +Brett +Clay +Coleman +Davy +Delbert +Derek +Derrell +Edmond +Emory +Harrison +Issac +Ivan +Jackson +Jeffry +Joshua +Lonzo +Prince +Rayburn +Rozell +Rusty +Sandy +Sanford +Simon +Sonny +Talmadge +Terence +Tracy +Wally +Wiley +Will +Woody +Adolphus +Alphonsa +Angelo +Aron +Artis +Authur +Bradford +Bryant +Burl +Butch +Chuck +Cleo +Clint +Columbus +Cornelious +Dock +Earlie +Edsel +Emmitt +Enoch +Ernie +Godfrey +Harris +Hilton +Irving +Jan +Jarvis +Juan +Justin +Ken +Kermit +Lance +Lanny +Lavon +Leander +Limmie +Llewellyn +Lucious +Luke +Manuel +Mckinley +Micky +Miles +Millard +Miller +Olin +Pat +Rhett +Ricardo +Rogers +Rubin +Scotty +Stewart +Taylor +Theadore +Timmy +Toby +Vance +Vaughn +Vince +Weldon +Wilfred +Williams +Wyatt +James +Michael +John +Robert +William +David +Charles +Larry +Willie +Kenneth +Richard +Thomas +Donald +Ronald +Gary +Terry +Jerry +Johnny +Randy +Steven +Joseph +Jimmy +Danny +Billy +George +Bobby +Timothy +Ricky +Gregory +Dennis +Mark +Anthony +Edward +Stephen +Paul +Ronnie +Eddie +Joe +Roger +Phillip +Rickey +Walter +Carl +Henry +Samuel +Daniel +Stanley +Steve +Tony +Tommy +Frank +Curtis +Arthur +Douglas +Jeffery +Roy +Harold +Micheal +Randall +Bruce +Melvin +Jeffrey +Albert +Clarence +Jerome +Raymond +Barry +Calvin +Keith +Reginald +Jack +Glenn +Gerald +Wayne +Howard +Rodney +Allen +Donnie +Marvin +Ralph +Ray +Charlie +Eugene +Jesse +Jackie +Fred +Jimmie +Joel +Lee +Andrew +Alfred +Earnest +Alan +Dwight +Lawrence +Frederick +Don +Leon +Darrell +Herbert +Jessie +Leonard +Earl +Russell +Christopher +Ernest +Mike +Alvin +Johnnie +Louis +Benjamin +Benny +Leroy +Nathaniel +Unknown +Freddie +Milton +Philip +Lonnie +Patrick +Clifford +Norman +Harry +Lewis +Dale +Victor +Franklin +Kevin +Roosevelt +Clyde +Eric +Floyd +Cecil +Brian +Garry +Roderick +Herman +Leslie +Otis +Frankie +Lester +Aaron +Scott +Bernard +Edwin +Jonathan +Fredrick +Sylvester +Warren +Wesley +Byron +Rex +Mickey +Bennie +Perry +Marcus +Wendell +Lorenzo +Martin +Mitchell +Joey +Lloyd +Marion +Marty +Oscar +Vernon +Vincent +Archie +Hugh +Sam +Theodore +Tommie +Wallace +Chester +Edgar +Jeff +Rufus +Travis +Tyrone +Grady +Leo +Matthew +Craig +Dan +Darryl +Harvey +Jim +Kelvin +Peter +Robin +Sammy +Morris +Ben +Chris +Claude +Clinton +Horace +Kenny +Luther +Mack +Maurice +Alton +Marshall +Sidney +Tom +Carlton +Cedric +Julius +Lynn +Ted +Gene +Karl +Preston +Stevie +Winston +Aubrey +Clifton +Daryl +Glen +Jay +Nathan +Wade +Ellis +Kerry +Kim +Wilbert +Bill +Dewey +Randolph +Troy +Virgil +Elbert +Gordon +Isaac +Lamar +Malcolm +Tim +Bryan +Oliver +Doyle +Jon +Sammie +Amos +Derrick +Sherman +Winfred +Arnold +Clayton +Teddy +Andy +Ira +Max +Randal +Van +Alonzo +Freddy +Guy +Lorenza +Alex +Allan +Andre +Bob +Bradley +Francis +Gilbert +Greg +Nelson +Percy +Rickie +Rodger +Al +Alexander +Dewayne +Kent +Moses +Myron +Neal +Bradford +Cleveland +Elijah +Elvis +Emmett +Ervin +Grover +Rocky +Royce +Terrell +Willard +Willis +Broderick +Buddy +Carey +Carlos +Connie +Dexter +Donny +Hubert +Jasper +Marlon +Clark +Eddy +Everett +Hal +Rick +Ronny +Toney +Wiley +Woodrow +Forrest +Freeman +Gerry +Hayward +Homer +Houston +Jacky +Jacob +Kelly +Levi +Norris +Roland +Wilson +Clay +Dana +Dave +Dean +Elton +Emanuel +Felix +Julian +Leland +Marc +Ross +Terence +Abraham +Alfonso +Angelo +Brent +Carnell +Dannie +Demetrius +Derek +Elliott +Isiah +Jerald +Junior +Ken +Kennith +Lionel +Neil +Nicholas +Noah +Randell +Sandy +Talmadge +Terrence +Tracy +Wilburn +Will +Audie +Austin +Booker +Brady +Coy +Darnell +Erskine +Jarvis +Justin +Louie +Major +Odis +Quintin +Ruben +Shelton +Silas +Sonny +Stewart +Thaddeus +Ulysses +Alphonso +Dwayne +Edmond +Emory +Enoch +Hank +Harrison +Huey +Ivan +Ivory +Lovell +Luke +Manuel +Owen +Rayford +Robby +Shelby +Sterling +Stuart +Wilbur +Windell +Adrian +Authur +Billie +Bobbie +Bryant +Cleo +Columbus +Conrad +Cornelius +Cornell +Desi +Dwain +Ezekiel +Gus +Hershel +Hoyt +Irvin +Jamie +Jason +Jeremiah +Joesph +Kyle +Lance +Lindsey +Lowell +Malcom +Napoleon +Nolan +Ocie +Ollie +Orlando +Pat +Phil +Rayburn +Rogers +Sanford +Terrance +Timmy +Wilford +Wilfred +Alford +Alphonse +Alphonzo +Artis +Barney +Barron +Bert +Boyd +Brooks +Carroll +Cary +Doug +Dudley +Ed +Eli +Elvin +Farrell +Gabriel +Geoffrey +Harlan +Harris +Jackson +Jame +Jefferson +Jody +Johnathan +Judge +Kermit +Kirby +Kirk +Leander +Lenard +Lucious +Mac +Maxie +Mcarthur +Mckinley +Millard +Monroe +Ned +Noel +Porter +Reuben +Ricardo +Richmond +Rod +Sheldon +Spencer +Stanford +Theo +Therman +Thurman +Todd +Winford +Woody +Alfonzo +Alonza +Antonio +Artie +Brad +Burl +Butch +Carter +Chuck +Clarance +Clement +Clint +Coleman +Cyrus +Darrel +Darry +Davey +Donell +Elmer +Ferrell +Garland +Geary +Gregg +Hosea +Howell +Jeffry +Jerre +Juan +Kem +King +Kurt +Lanny +Michel +Miles +Mose +Murray +Otha +Otto +Raymon +Riley +Robbie +Roscoe +Rudolph +Rusty +Sanders +Simmie +Stephan +Waymon +Wyman +James +Michael +William +Robert +John +David +Charles +Larry +Willie +Richard +Kenneth +Thomas +Donald +Terry +Ronald +Gary +Johnny +Mark +Jerry +Randy +Joseph +Anthony +Gregory +Steven +George +Jimmy +Timothy +Danny +Billy +Ricky +Edward +Bobby +Dennis +Ronnie +Paul +Eddie +Phillip +Rickey +Stephen +Tommy +Tony +Carl +Roger +Joe +Daniel +Steve +Jeffrey +Walter +Jeffery +Henry +Samuel +Barry +Stanley +Arthur +Douglas +Curtis +Bruce +Randall +Roy +Harold +Micheal +Reginald +Keith +Frank +Raymond +Melvin +Clarence +Jerome +Jack +Wayne +Albert +Charlie +Glenn +Ray +Mike +Donnie +Lee +Ralph +Andrew +Gerald +Calvin +Marvin +Frederick +Rodney +Alan +Howard +Allen +Jackie +Alvin +Darrell +Eugene +Jimmie +Leon +Christopher +Brian +Lawrence +Kevin +Jesse +Joel +Leonard +Victor +Don +Freddie +Benjamin +Dwight +Earl +Clifford +Alfred +Nathaniel +Fred +Jessie +Russell +Leroy +Philip +Roderick +Ernest +Harry +Mickey +Perry +Benny +Fredrick +Herman +Patrick +Johnnie +Lonnie +Earnest +Norman +Eric +Floyd +Franklin +Louis +Herbert +Mitchell +Garry +Jeff +Milton +Martin +Tim +Dale +Tommie +Clyde +Claude +Edwin +Joey +Roosevelt +Scott +Cedric +Dan +Oscar +Otis +Tyrone +Bernard +Byron +Lorenzo +Warren +Wendell +Carlton +Kenny +Lester +Peter +Cecil +Jonathan +Vernon +Wesley +Horace +Lewis +Lloyd +Marcus +Marion +Marty +Sammy +Aaron +Frankie +Matthew +Clinton +Leslie +Sidney +Vincent +Wallace +Bennie +Robin +Nathan +Sam +Unknown +Harvey +Clifton +Elbert +Gene +Rex +Derrick +Sylvester +Bill +Darryl +Maurice +Mack +Stevie +Theodore +Chester +Greg +Kerry +Travis +Chris +Elvis +Grady +Hugh +Jim +Kelvin +Ben +Percy +Aubrey +Craig +Dexter +Dwayne +Edgar +Tom +Randolph +Teddy +Timmy +Van +Alex +Bryan +Glen +Gordon +Guy +Karl +Morris +Rufus +Hubert +Max +Troy +Wade +Winston +Alton +Jon +Marshall +Sammie +Ted +Andre +Andy +Clayton +Homer +Julius +Myron +Willis +Archie +Daryl +Donny +Jay +Roland +Carey +Freddy +Leo +Luther +Lynn +Malcolm +Virgil +Cleveland +Ellis +Gilbert +Lamar +Oliver +Tracy +Wilson +Dean +Derek +Dewayne +Gerry +Ira +Kent +Kim +Nelson +Ronny +Sherman +Wilbert +Will +Alexander +Francis +Randal +Bradley +Dave +Emmett +Isaac +Al +Alonzo +Brent +Carlos +Elijah +Elmer +Neal +Norris +Preston +Royce +Alphonso +Arnold +Clint +Doyle +Elton +Emanuel +Ervin +Felix +Louie +Orlando +Rayford +Rickie +Stuart +Terrell +Toney +Antonio +Cary +Clark +Cornelius +Edmond +Forrest +Isaiah +Kirk +Winfred +Allan +Booker +Darrel +Doug +Everett +Jackson +Jacob +Joesph +Julian +Kelly +Rodger +Wiley +Willard +Abraham +Amos +Austin +Brad +Connie +Dana +Hershel +Hollis +Ivory +Ken +Kennith +Kyle +Lance +Lowell +Manuel +Ruben +Scotty +Stan +Terrence +Angelo +Clay +Freeman +Grover +Jacky +Juan +Leander +Marlon +Terence +Woodrow +Adrian +Alfonza +Audie +Buddy +Coy +Dewey +Donell +Duane +Gregg +Haywood +Jake +Junior +Lorenza +Lyndon +Major +Moses +Murray +Neil +Noel +Ollie +Reuben +Rocky +Sandy +Spencer +Ulysses +Barney +Bob +Bobbie +Damon +Dannie +Demetrius +Eddy +Erwin +Hal +Hoyt +Jarvis +Lionel +Mac +Napoleon +Noah +Ricardo +Rick +Ross +Rusty +Shawn +Sheldon +Timmie +Vance +Wilbur +Anderson +Billie +Boyd +Britt +Broderick +Cleophus +Davis +Denny +Derick +Drew +Early +Ed +Eldred +Elvin +Ernie +Gabriel +Harris +Huey +Jamie +Jefferson +Jeremiah +Jose +Judge +Kendall +Lebaron +Lindsey +Marc +Matt +Morgan +Nicholas +Ocie +Owen +Robbie +Rodrick +Roscoe +Sonny +Vann +Waymon +Artis +Augustus +Berry +Burl +Carnell +Cedrick +Charley +Colin +Conrad +Darnell +Darwin +Delbert +Derwin +Earlie +Erskine +Fletcher +Forest +Grayling +Hank +Hiram +Houston +Ivan +Jame +Justin +Leland +Lenard +Levi +Marlin +Mckinley +Ned +Pat +Phil +Quinton +Randell +Riley +Ron +Sanford +Solomon +Stewart +Terrance +Wilburn +Zachary +Adolphus +Andrea +Auther +Barron +Bert +Brady +Brooks +Buford +Cameron +Carson +Carter +Coleman +Cyril +Dempsey +Deryl +Donnell +Edmund +Elston +Ezekiel +Ezell +Geary +Geoffrey +Grant +Harlan +Hilton +Ike +Irvin +Jason +Jasper +Jeffry +Jerald +Johnie +Judson +Kenney +Kermit +Levon +Linda +Loyd +Lugene +Luke +Miles +Millard +Mitchel +Monte +Myles +Nolan +Obie +Raymon +Richmond +Rochester +Rudolph +Scottie +Shelby +Shirley +Silas +Thurman +Trent +Vince +Wilford +Wilfred +Wilmer +Winford +Wyatt +James +Michael +William +Robert +David +John +Charles +Richard +Willie +Kenneth +Larry +Thomas +Timothy +Donald +Terry +Ronald +Mark +Jerry +Gary +Johnny +Gregory +Ricky +Anthony +Jimmy +Danny +Randy +Steven +Billy +Bobby +Joseph +George +Tony +Dennis +Ronnie +Rickey +Paul +Phillip +Stephen +Jeffery +Edward +Eddie +Joe +Steve +Tommy +Douglas +Jeffrey +Roger +Henry +Walter +Daniel +Carl +Keith +Micheal +Samuel +Curtis +Stanley +Mike +Frank +Bruce +Harold +Roy +Arthur +Randall +Reginald +Barry +Melvin +Marvin +Raymond +Christopher +Ray +Calvin +Rodney +Wayne +Jerome +Tim +Clarence +Alan +Darrell +Howard +Jack +Kevin +Albert +Allen +Brian +Charlie +Gerald +Ralph +Russell +Andrew +Lee +Donnie +Eric +Glenn +Jeff +Alvin +Frederick +Jimmie +Scott +Joel +Leon +Fred +Jesse +Don +Ernest +Nathaniel +Eugene +Alfred +Perry +Lawrence +Dale +Victor +Clifford +Norman +Patrick +Earnest +Leonard +Dwight +Benjamin +Herman +Jackie +Herbert +Lewis +Philip +Freddie +Johnnie +Greg +Jessie +Harry +Sylvester +Louis +Roderick +Earl +Franklin +Lester +Leroy +Wendell +Cecil +Marty +Byron +Jim +Milton +Chris +Mickey +Timmy +Vincent +Darryl +Edwin +Joey +Matthew +Tyrone +Warren +Bernard +Kenny +Lonnie +Mitchell +Floyd +Craig +Otis +Peter +Wesley +Bill +Frankie +Jonathan +Garry +Marcus +Benny +Cedric +Stevie +Bennie +Dan +Fredrick +Derrick +Leslie +Bryan +Sammy +Tommie +Vernon +Daryl +Lloyd +Roosevelt +Carlton +Claude +Martin +Wallace +Chester +Harvey +Sidney +Unknown +Clyde +Glen +Jay +Lamar +Robin +Marion +Rex +Gene +Maurice +Ted +Aaron +Ben +Clinton +Jon +Kelvin +Nathan +Oscar +Tom +Arnold +Dexter +Sam +Wade +Homer +Hugh +Lorenzo +Marshall +Randal +Theodore +Alton +Elvis +Hubert +Karl +Aubrey +Cleveland +Isaac +Morris +Alonzo +Andy +Horace +Julius +Clifton +Kerry +Malcolm +Marlon +Oliver +Ronny +Sherman +Wilbert +Winston +Dewayne +Elbert +Kent +Luther +Andre +Ken +Randolph +Roland +Royce +Rufus +Sammie +Terrell +Alex +Clayton +Ervin +Gordon +Grady +Guy +Percy +Carey +Chuck +Ira +Troy +Edgar +Leo +Van +Willard +Archie +Brent +Carlos +Derek +Donny +Freddy +Kelly +Moses +Rayford +Teddy +Travis +Willis +Alexander +Dana +Dean +Dewey +Duane +Elijah +Forrest +Gilbert +Grover +Mack +Rick +Barney +Ellis +Gerry +Lorenza +Rickie +Buddy +Clay +Duncan +Dwayne +Emmett +Everett +Francis +Max +Toney +Tracy +Cary +Clint +Doyle +Eddy +Felix +Jeremiah +Jody +Kim +Lovell +Rodger +Alphonso +Antonio +Broderick +Dannie +Dave +Kendall +Lynn +Orlando +Preston +Terrence +Bob +Bradley +Cornelius +Darrel +Harrison +Jacob +Morgan +Myron +Neal +Ollie +Phil +Terence +Alfonza +Allan +Clark +Doug +Elton +Emanuel +Issac +Kirk +Kyle +Levi +Lowell +Randell +Robbie +Terrance +Virgil +Wilbur +Will +Amos +Blake +Cliff +Jake +Jamie +Jasper +Jeffry +Juan +Leland +Napoleon +Nelson +Stuart +Thaddeus +Alfonso +Brett +Edsel +Erskine +Isiah +Kennith +Lance +Nicky +Norris +Owen +Pat +Robby +Ruben +Rudolph +Stan +Ulysses +Winfred +Woodrow +Adrian +Al +Anderson +Angelo +Austin +Berry +Bert +Bradford +Coy +Darnell +Donnell +Elmer +Felton +Harlan +Hollis +Hoyt +Ivan +Ivory +Jason +Junior +Lindsey +Louie +Manuel +Monte +Monty +Neil +Nicholas +Ocie +Reuben +Riley +Ross +Sanford +Sean +Shelton +Theodis +Toby +Alonza +Alphonse +Avery +Billie +Brad +Cleophus +Coleman +Conrad +Demetrius +Denny +Dudley +Ed +Ezell +Fletcher +Hal +Hayward +Hiram +Irvin +Jackson +Major +Malcom +Monroe +Noel +Quentin +Reggie +Ron +Rusty +Spencer +Timmie +Vince +Wiley +Adam +Andrea +Boyd +Chip +Connie +Dallas +Darvin +Davis +Davy +Derry +Elliott +Emmitt +Erwin +Geoffrey +Hank +Hershel +Houston +Howell +Joshua +Justin +Lanny +Leamon +Levon +Mac +Marc +Marlin +Nick +Olin +Oneal +Reese +Rocky +Scotty +Seth +Sterling +Vance +Waylon +Wilson +Abraham +Betty +Booker +Brenda +Carnell +Carter +Columbus +Cornell +Delbert +Denver +Derick +Elmore +Elvin +Evan +Gabriel +Garfield +Grant +Harris +Jerald +Joesph +Julian +Kermit +Labarron +Lane +Lon +Lucious +Lyle +Mary +Matt +Millard +Mose +Ned +Noah +Norville +Odell +Raleigh +Richie +Rosevelt +Shawn +Sonny +Talmadge +Von +Winford +Zachary +James +Michael +David +William +John +Robert +Charles +Kenneth +Richard +Timothy +Mark +Willie +Larry +Terry +Thomas +Gregory +Jerry +Donald +Ronald +Ricky +Gary +Anthony +Johnny +Joseph +Billy +Steven +Jimmy +George +Bobby +Randy +Danny +Jeffery +Jeffrey +Phillip +Tony +Rickey +Dennis +Eddie +Ronnie +Paul +Edward +Tommy +Steve +Daniel +Joe +Stephen +Carl +Randall +Samuel +Roger +Henry +Curtis +Mike +Keith +Christopher +Douglas +Walter +Micheal +Reginald +Bruce +Frank +Barry +Stanley +Roy +Rodney +Raymond +Tim +Arthur +Albert +Harold +Melvin +Brian +Jerome +Russell +Calvin +Andrew +Donnie +Darryl +Frederick +Alan +Marvin +Wayne +Ray +Ralph +Clarence +Alvin +Charlie +Darrell +Eric +Jesse +Scott +Dale +Kevin +Lee +Jeff +Glenn +Gerald +Howard +Roderick +Ernest +Jack +Don +Fred +Lawrence +Nathaniel +Dwight +Victor +Freddie +Allen +Jessie +Jackie +Greg +Joel +Craig +Patrick +Perry +Jimmie +Chris +Herman +Leon +Philip +Benjamin +Johnnie +Alfred +Harry +Sammy +Eugene +Joey +Lonnie +Clifford +Louis +Clyde +Frankie +Marcus +Matthew +Franklin +Wendell +Earl +Lewis +Tyrone +Leonard +Cecil +Milton +Jim +Bryan +Kelvin +Kenny +Timmy +Earnest +Mitchell +Norman +Warren +Aaron +Benny +Cedric +Roosevelt +Vincent +Bernard +Lester +Herbert +Horace +Leroy +Marty +Sylvester +Wesley +Bill +Glen +Jonathan +Byron +Derrick +Floyd +Marshall +Travis +Mickey +Peter +Stevie +Tommie +Garry +Jay +Kerry +Lloyd +Maurice +Morris +Chester +Gene +Edwin +Gordon +Leslie +Otis +Sam +Vernon +Andre +Dan +Lorenzo +Jon +Nathan +Andy +Julius +Martin +Oscar +Daryl +Marion +Rex +Robin +Claude +Randal +Sidney +Tom +Alonzo +Carlton +Wallace +Aubrey +Ben +Clifton +Dwayne +Harvey +Hugh +Bennie +Carlos +Dewayne +Oliver +Roland +Terrell +Clinton +Fredrick +Lynn +Malcolm +Percy +Theodore +Alphonso +Ellis +Kelly +Lamar +Nelson +Ted +Archie +Karl +Marlon +Preston +Randolph +Rick +Sammie +Allan +Alton +Bob +Dewey +Grady +Guy +Isaac +Brent +Dexter +Ervin +Kent +Mack +Max +Royce +Troy +Antonio +Dean +Edgar +Hubert +Rufus +Tracy +Unknown +Wilbert +Arnold +Dana +Leo +Luther +Murray +Will +Amos +Chuck +Ivan +Kyle +Myron +Rodger +Al +Alex +Angelo +Cleveland +Cornelius +Dave +Donny +Doyle +Duane +Lorenza +Sherman +Toney +Wade +Willis +Bobbie +Clay +Derek +Elijah +Ira +Ross +Winfred +Alonza +Doug +Emanuel +Emmett +Homer +Jamie +Jody +Ken +Marc +Neal +Rusty +Bart +Brett +Cary +Darrel +Elbert +Felix +Gerry +Jeremiah +Kirby +Lance +Phil +Reggie +Todd +Willard +Wilson +Winston +Adrian +Alexander +Clint +Freeman +Gilbert +Harrison +Jacob +Leland +Lowell +Neil +Solomon +Teddy +Clark +Clayton +Coy +Darren +Hollis +Kim +Kirk +Loyd +Orlando +Randell +Rickie +Ronny +Spencer +Ulysses +Van +Waymon +Barron +Booker +Cleophus +Forrest +Hal +Harlan +Julian +Manuel +Marlin +Virgil +Alfonso +Avery +Bret +Broderick +Bryant +Buddy +Carey +Carnell +Darnell +Erwin +Irvin +Jake +Louie +Luke +Mac +Matt +Pete +Robbie +Rocky +Ron +Scotty +Shawn +Shelton +Stan +Stuart +Terrance +Terrence +Yancy +Abraham +Andrea +Brad +Carter +Cliff +Connie +Dallas +Denny +Ed +Edmond +Elvin +Elvis +Fletcher +Grant +Harris +Hoyt +Isaiah +Jacky +Jame +Jarvis +Jefferson +Jerald +Juan +Kennith +Millard +Norris +Rory +Russ +Shane +Shannon +Terence +Barney +Chip +Coleman +Darry +Errol +Everett +Fernando +Hiram +Isiah +Ivory +Lane +Lemuel +Lindsey +Lionel +Mary +Morgan +Moses +Nicholas +Nick +Ollie +Pat +Quinton +Reuben +Rodrick +Roscoe +Ruben +Stacy +Stewart +Wiley +Winford +Wyatt +Zachary +Adam +Boyd +Bradley +Christian +Cornell +Dannie +Derwin +Donnell +Dudley +Eddy +Elliott +Elton +Ernie +Grover +Hayward +Hershel +Huey +Judson +Justin +Kendall +Kermit +Levi +Lovell +Major +Monroe +Ned +Nicky +Nolan +Prince +Rayford +Riley +Rogers +Rudolph +Ryan +Sandy +Sean +Thaddeus +Timmie +Tyler +Wally +Wilbur +Wilfred +Alfonza +Alphonse +Aron +Author +Barrett +Bert +Billie +Bradford +Buford +Cedrick +Cyrus +Dalton +Darron +Demetrius +Drew +Elmer +Elston +Emmanuel +Emory +Freddy +Godfrey +Grayling +Gregg +Hank +Howell +Hunter +Jackson +Jason +Jeffry +Joesph +Junior +Keenan +Kelley +Kenney +Kurt +Lesley +Lucious +Lyle +Maynard +Michal +Mitch +Mose +Murry +Napoleon +Noel +Odis +Quintin +Randle +Rhett +Ricardo +Roddy +Sanford +Shedrick +Timmothy +Verlon +Wilmer +Wyman +James +Michael +David +John +William +Robert +Charles +Kenneth +Timothy +Mark +Richard +Willie +Thomas +Terry +Gregory +Larry +Donald +Anthony +Johnny +Gary +Jerry +Joseph +Steven +Ronald +Jimmy +Ricky +Jeffrey +George +Randy +Bobby +Billy +Jeffery +Dennis +Tony +Phillip +Danny +Paul +Edward +Ronnie +Tommy +Joe +Daniel +Eddie +Randall +Carl +Stephen +Barry +Keith +Steve +Roger +Henry +Christopher +Douglas +Stanley +Micheal +Mike +Rickey +Walter +Samuel +Reginald +Curtis +Frank +Raymond +Bruce +Roy +Rodney +Tim +Darryl +Eric +Harold +Kevin +Brian +Arthur +Marvin +Alan +Albert +Gerald +Calvin +Joel +Scott +Lee +Melvin +Wayne +Jeff +Alvin +Chris +Darrell +Ralph +Clarence +Russell +Greg +Donnie +Glenn +Jerome +Roderick +Charlie +Andrew +Dwight +Perry +Patrick +Howard +Victor +Dale +Frederick +Jack +Ray +Allen +Craig +Jimmie +Don +Leon +Leonard +Earl +Jesse +Ernest +Cedric +Benjamin +Herbert +Philip +Earnest +Kenny +Marcus +Eugene +Fred +Jackie +Mitchell +Joey +Vincent +Alfred +Nathaniel +Jessie +Jon +Timmy +Clifford +Kelvin +Derrick +Harry +Jonathan +Cecil +Dwayne +Lawrence +Kerry +Norman +Jim +Johnnie +Wesley +Bernard +Floyd +Herman +Andre +Bryan +Martin +Nathan +Vernon +Lorenzo +Roosevelt +Sylvester +Wendell +Clyde +Franklin +Freddie +Jay +Marty +Theodore +Fredrick +Leslie +Mickey +Bill +Lester +Milton +Lloyd +Lonnie +Byron +Leroy +Lewis +Louis +Warren +Frankie +Maurice +Aaron +Claude +Edwin +Tracy +Benny +Clinton +Rex +Tommie +Travis +Dan +Matthew +Peter +Sammy +Sidney +Andy +Gene +Troy +Bradley +Carlton +Robin +Hugh +Otis +Carlos +Clayton +Gordon +Sam +Stevie +Garry +Glen +Julius +Marshall +Oscar +Wallace +Bennie +Chester +Dewayne +Tyrone +Horace +Arnold +Darren +Daryl +Grady +Tom +Harvey +Rufus +Stuart +Alton +Ben +Kelly +Marion +Wade +Alex +Donny +Karl +Lynn +Morris +Virgil +Dexter +Leo +Mack +Max +Ted +Todd +Aubrey +Clay +Edgar +Lamar +Percy +Sherman +Willard +Cleveland +Dean +Guy +Ken +Malcolm +Neal +Randal +Royce +Alexander +Alonzo +Archie +Chuck +Derek +Ellis +Ira +Kent +Luther +Preston +Rocky +Teddy +Van +Bob +Dave +Elbert +Isaac +Lance +Myron +Unknown +Antonio +Brett +Clifton +Felix +Homer +Kim +Terrell +Gilbert +Kyle +Nicky +Terrence +Allan +Alphonso +Brad +Darrel +Dewey +Duane +Ervin +Hubert +Jamie +Marlon +Nelson +Toney +Barney +Bradford +Brent +Bryant +Cleophus +Dana +Gerry +Juan +Morgan +Roland +Scotty +Wilbur +Winston +Abraham +Carey +Cornelius +Doug +Elvis +Emmett +Everett +Gregg +Ivan +Kennedy +Marlin +Oliver +Randell +Rayford +Rickie +Sammie +Terence +Freddy +Hollis +Jody +Lionel +Marc +Pat +Ronny +Sanford +Wiley +Will +Angelo +Broderick +Clark +Doyle +Emanuel +Hank +Isiah +Jacky +Jason +Jasper +Julian +Kirk +Levi +Lorenza +Lowell +Neil +Reggie +Rodger +Rusty +Wilbert +Winford +Winfred +Woodrow +Al +Amos +Darnell +Elton +Erwin +Irvin +Ivory +Kennith +Lane +Lemuel +Miles +Quintin +Randolph +Rick +Robbie +Ron +Shelby +Stan +Stewart +Vince +Wilfred +Adrian +Bart +Bert +Billie +Clint +Connie +Darron +Edmund +Garland +Hosea +Hoyt +Jacob +Justin +Lindsey +Matt +Mitch +Murray +Norris +Orlando +Quinton +Sandy +Scottie +Shane +Spencer +Willis +Adam +Andra +Bobbie +Boyd +Bret +Buddy +Cary +Delbert +Donnell +Elijah +Elliott +Elmer +Ezell +Francis +General +Hayward +Jake +Jarvis +Jeremiah +Junior +Kendall +Leland +Napoleon +Nick +Ocie +Owen +Raynard +Robby +Rodrick +Rory +Ross +Rudolph +Shannon +Sonny +Taylor +Trent +Waymon +Williams +Yancy +Zachary +Adolphus +Alonza +Andrea +Cameron +Dallas +Damon +Danial +Derrell +Derwin +Dirk +Early +Elston +Everette +Gaylon +Grant +Grover +Gus +Hal +Haywood +Huey +Jeffry +Joesph +Josh +Kirby +Labarron +Lenny +Lyndon +Manuel +Melton +Michel +Moses +Noah +Ollie +Pete +Phil +Pierre +Richie +Ruben +Stacey +Terrance +Thaddeus +Theron +Ty +Vance +Wilburn +Anderson +Antonia +Avery +Buford +Clement +Cleo +Courtney +Dalton +Darrick +Darwin +Davis +Dickey +Drew +Dudley +Duncan +Ed +Elvin +Errol +Ezekiel +Ferdinand +Forrest +Franky +Harlan +Harrison +Herbie +Houston +Jame +Jefferson +Jerald +Jerrell +Jonathon +Jose +Len +Lenard +Lonzo +Louie +Lucious +Luke +Lyle +Malcom +Mario +Mason +Mitchel +Monte +Nicholas +Nickey +Noel +Ramon +Rance +Rayburn +Reuben +Rhett +Riley +Rod +Shawn +Sheldon +Stacy +Thurman +Timmie +Ulysses +Wilson +Windell +Wyman +James +Michael +John +David +Robert +William +Charles +Kenneth +Mark +Timothy +Richard +Gregory +Terry +Thomas +Willie +Anthony +Jerry +Jeffrey +Larry +Donald +Gary +Johnny +Jeffery +Joseph +Ricky +Jimmy +Billy +Steven +George +Ronald +Danny +Christopher +Paul +Phillip +Randy +Tony +Bobby +Edward +Eddie +Dennis +Stephen +Barry +Roger +Tommy +Keith +Ronnie +Darryl +Henry +Joe +Reginald +Carl +Steve +Douglas +Daniel +Stanley +Curtis +Rickey +Randall +Samuel +Mike +Micheal +Walter +Alan +Frank +Kevin +Eric +Scott +Jeff +Brian +Bruce +Harold +Roy +Andrew +Arthur +Gerald +Russell +Rodney +Tim +Calvin +Frederick +Melvin +Raymond +Victor +Albert +Wayne +Roderick +Glenn +Marvin +Chris +Clarence +Patrick +Alvin +Allen +Greg +Jack +Lee +Darrell +Ray +Jerome +Howard +Dale +Dwayne +Joel +Jimmie +Mitchell +Perry +Charlie +Jon +Ralph +Benjamin +Craig +Eugene +Bryan +Jackie +Dwight +Don +Wendell +Fred +Jesse +Matthew +Donnie +Marcus +Cedric +Earl +Alfred +Freddie +Joey +Kelvin +Lonnie +Clifford +Ernest +Lorenzo +Jim +Lawrence +Cecil +Norman +Timmy +Jessie +Johnnie +Derrick +Kerry +Lewis +Marty +Sammy +Todd +Byron +Jonathan +Nathaniel +Sylvester +Vincent +Milton +Fredrick +Maurice +Philip +Kenny +Leon +Bernard +Wesley +Leroy +Lester +Mickey +Leonard +Franklin +Martin +Rex +Warren +Glen +Herbert +Robin +Clyde +Nathan +Dewayne +Earnest +Peter +Leslie +Aaron +Benny +Bill +Bradley +Troy +Floyd +Herman +Roosevelt +Harry +Jay +Horace +Sidney +Wallace +Edwin +Frankie +Tracy +Alonzo +Andre +Daryl +Ken +Morris +Sam +Tommie +Tyrone +Clifton +Garry +Louis +Vernon +Oscar +Tom +Chester +Claude +Clinton +Dan +Hugh +Otis +Travis +Karl +Orlando +Wade +Alton +Dexter +Bennie +Brent +Grady +Andy +Lloyd +Clayton +Gene +Ira +Marion +Stuart +Alexander +Gordon +Luther +Teddy +Theodore +Ben +Carlos +Chuck +Guy +Marshall +Ted +Kim +Mack +Wilbert +Alex +Dave +Malcolm +Marc +Terrence +Van +Amos +Antonio +Brett +Julius +Kelly +Kirk +Lynn +Robbie +Rufus +Winston +Adam +Carlton +Dean +Everett +Hubert +Jamie +Max +Randal +Randolph +Cornelius +Dewey +Felix +Forrest +Harvey +Marlon +Roland +Scotty +Sherman +Stevie +Brad +Elijah +Ervin +Homer +Kennith +Lamar +Lorenza +Ronny +Rusty +Shawn +Woodrow +Archie +Darren +Derek +Doyle +Edgar +Elbert +Emmett +Isaac +Leo +Myron +Percy +Willard +Al +Alphonso +Bart +Carey +Dana +Donny +Doug +Duane +Geoffrey +Gilbert +Jody +Kent +Nelson +Sammie +Toney +Zachary +Adrian +Aubrey +Cary +Clark +Cleveland +Garland +Jason +Kyle +Lance +Phil +Rick +Royce +Terrell +Virgil +Will +Wilson +Winfred +Angelo +Clay +Cliff +Clint +Grant +Napoleon +Preston +Rodger +Fletcher +Marlin +Neal +Neil +Rickie +Shannon +Terence +Thurman +Wilbur +Willis +Allan +Bob +Bryant +Efrem +Freddy +Grover +Hal +Houston +Justin +Louie +Nick +Norris +Pat +Quinton +Rayford +Stacey +Terrance +Ulysses +Unknown +Alonza +Barney +Broderick +Darrel +Darron +Edmond +Elmer +Erwin +Gerry +Gregg +Ivan +Julian +Kennedy +Lowell +Mckinley +Mitch +Oliver +Rogers +Sandy +Sanford +Solomon +Stephan +Taylor +Wilburn +Wiley +Abraham +Alfonso +Arnold +Bert +Buddy +Cleophus +Damon +Donnell +Ed +Elliott +Ellis +Fernando +Loyd +Lyle +Murray +Nolan +Ollie +Ramon +Randell +Reuben +Rocky +Rudolph +Sonny +Spencer +Windell +Austin +Cedrick +Cleve +Daron +Denny +Dudley +Eddy +Elvis +Francis +Huey +Jerald +Jeremiah +Juan +Lemuel +Owen +Quintin +Ron +Ross +Stewart +Trent +Wilmer +Alexis +Alfonzo +Anderson +Bennett +Bradford +Casey +Chip +Connie +Darius +Dwain +Elton +Emory +Ernie +Godfrey +Hollis +Ivory +Jacob +Jarvis +Jasper +Jeffry +Jose +Kermit +Leland +Levon +Lindsey +Lovell +Lyndon +Manuel +Monroe +Monty +Nicky +Ruben +Sheldon +Sterling +Toby +Tod +Vance +Wilfred +Winford +Auther +Avery +Benjie +Berry +Brooks +Butch +Chauncey +Conrad +Dallas +Darrick +Demetrius +Early +Eldridge +Emmanuel +Emmitt +Ezekiel +Hank +Harlan +Hayward +Henderson +Hiram +Hoyt +Irvin +Isaiah +Jacky +Jed +Jefferson +Jess +Jonathon +Judson +Kendall +Linda +Lionel +Lucius +Markus +Mary +Matt +Micah +Moses +Nicholas +Nickey +Ocie +Olen +Parnell +Pete +Pierre +Reginal +Russ +Sebastian +Silas +Simon +Stan +Stanford +Theodis +Tracey +Vince +Yancey +Yul +Zane +James +Michael +John +David +William +Robert +Charles +Mark +Kenneth +Timothy +Gregory +Terry +Thomas +Jeffrey +Richard +Willie +Anthony +Donald +Joseph +Gary +Larry +Jeffery +Jerry +Steven +Ronald +Jimmy +Bobby +Johnny +Tony +Ricky +Barry +Christopher +Phillip +Randy +Billy +George +Paul +Danny +Roger +Scott +Edward +Stephen +Tommy +Eric +Darryl +Douglas +Keith +Eddie +Reginald +Stanley +Curtis +Joe +Carl +Randall +Dennis +Steve +Samuel +Daniel +Walter +Kevin +Brian +Henry +Ronnie +Jeff +Bruce +Mike +Micheal +Raymond +Frank +Roy +Rodney +Arthur +Gerald +Glenn +Melvin +Vincent +Harold +Patrick +Rickey +Alan +Calvin +Russell +Jerome +Wayne +Joel +Albert +Roderick +Tim +Clarence +Victor +Greg +Lee +Ray +Tracy +Jonathan +Frederick +Andrew +Charlie +Marvin +Darrell +Allen +Chris +Todd +Cedric +Joey +Leon +Howard +Alvin +Eugene +Lawrence +Marcus +Ralph +Benjamin +Bryan +Jack +Martin +Byron +Norman +Dwayne +Fred +Donnie +Jessie +Johnnie +Dwight +Glen +Philip +Troy +Wendell +Franklin +Jay +Kelvin +Clifford +Don +Ernest +Kerry +Alfred +Craig +Maurice +Mitchell +Warren +Aaron +Dale +Leslie +Leonard +Nathaniel +Fredrick +Kenny +Milton +Derrick +Jackie +Jesse +Marty +Morris +Earnest +Jim +Jimmie +Jon +Earl +Perry +Roosevelt +Harry +Daryl +Edwin +Lewis +Herbert +Herman +Karl +Louis +Matthew +Sidney +Timmy +Peter +Lorenzo +Tommie +Bernard +Bill +Freddie +Rex +Dewayne +Floyd +Lloyd +Nathan +Tyrone +Wesley +Alonzo +Carlton +Cecil +Frankie +Lester +Sammy +Lance +Travis +Lonnie +Mickey +Andy +Dan +Ken +Wade +Bennie +Wallace +Adam +Andre +Ben +Benny +Bradley +Leroy +Otis +Arnold +Clyde +Stuart +Garry +Robbie +Robin +Sylvester +Vernon +Antonio +Dexter +Horace +Jason +Kelly +Mack +Marion +Chester +Harvey +Isaac +Kim +Brett +Derek +Guy +Orlando +Stevie +Theodore +Carlos +Claude +Lamar +Ted +Tom +Dana +Gene +Hugh +Jamie +Kirk +Clay +Clifton +Clinton +Edgar +Marshall +Oscar +Percy +Sam +Sandy +Alton +Aubrey +Donny +Elbert +Homer +Kent +Kyle +Roland +Rusty +Shannon +Toney +Brad +Darren +Grady +Lynn +Rick +Terrell +Alphonso +Doyle +Forrest +Gordon +Randal +Rufus +Van +Cary +Clayton +Ellis +Gilbert +Myron +Preston +Alexander +Brent +Dewey +Emmett +Oliver +Sammie +Virgil +Wilbert +Angelo +Carey +Clark +Cleveland +Doug +Ervin +Scotty +Terence +Thaddeus +Vince +Alex +Archie +Cornelius +Freddy +Julian +Lorenza +Malcolm +Teddy +Willard +Willis +Woodrow +Adrian +Chuck +Demetrius +Duane +Ira +Julius +Marlon +Sherman +Winfred +Winston +Bob +Darrel +Geoffrey +Jody +Luther +Marc +Max +Neal +Randolph +Shawn +Bart +Casey +Dean +Elton +Jefferson +Loyd +Norris +Rodrick +Ronny +Spencer +Stewart +Terrance +Ed +Emanuel +Felix +Gerry +Gregg +Jerald +Juan +Kendall +Moses +Napoleon +Nicholas +Phil +Reggie +Ron +Rory +Wiley +Wilson +Zachary +Allan +Blake +Bobbie +Booker +Buddy +Dave +Elijah +Elvis +Irvin +Jasper +Jeffry +Leo +Lindsey +Lowell +Micah +Miles +Nelson +Randell +Rodger +Royce +Stacey +Stephon +Sterling +Terrence +Abraham +Al +Amos +Barney +Boyd +Bradford +Bryant +Clint +Darwin +Dwain +Everett +Hal +Hank +Hubert +Ivory +Jarvis +Matt +Ocie +Ollie +Quintin +Robby +Rocky +Rudolph +Ryan +Sanford +Stan +Wilbur +Bert +Buford +Carter +Conrad +Darrin +Eddy +Elvin +Erick +Francis +Grover +Harrison +Huey +Isiah +Issac +Jacob +Kennedy +Kenney +Leland +Mitch +Ned +Neil +Pete +Quinton +Rod +Ross +Ruben +Silas +Sonny +Thurman +Titus +Unknown +Wilfred +Wilmer +Alfonso +Alonza +Antonia +Bennett +Charley +Cliff +Darrick +Darry +Derick +Elmer +Gerard +Grant +Harlan +Houston +Isaiah +Ivan +Jacky +Jeremiah +Junior +Kimberly +Lesley +Louie +Lovell +Luke +Major +Mose +Owen +Rayburn +Sebastian +Stephan +Talmadge +Toby +Ulysses +Vinson +Warner +Xavier +Adolphus +Anderson +Andrea +Barron +Bentley +Boris +Carson +Chip +Cornell +Cyrus +Dallas +Dannie +Davis +Dion +Donnell +Efrem +Elliott +Ernie +Everette +Fletcher +Foster +Hayward +Hollis +Hosea +Hoyt +Jake +Jame +Johnathan +Jonathon +Justin +Kennith +King +Lyle +Manuel +Mario +Maury +Mikel +Mitchel +Monroe +Monte +Murray +Murry +Nicky +Noel +Odell +Pat +Prince +Rayford +Ricardo +Richmond +Riley +Russ +Scottie +Shaun +Stacy +Theodis +Tracey +Trent +Winford +Woody +James +Michael +John +David +Robert +William +Charles +Kenneth +Timothy +Mark +Gregory +Anthony +Richard +Thomas +Jeffrey +Terry +Joseph +Willie +Jeffery +Donald +Gary +Larry +Jerry +Steven +Ronald +Johnny +Bobby +Christopher +Jimmy +Paul +Ricky +George +Tony +Barry +Billy +Randy +Phillip +Danny +Darryl +Edward +Scott +Stephen +Kevin +Tommy +Keith +Dennis +Joe +Daniel +Douglas +Brian +Roger +Randall +Stanley +Eric +Carl +Curtis +Patrick +Ronnie +Jeff +Reginald +Samuel +Walter +Henry +Micheal +Steve +Rickey +Rodney +Bruce +Marvin +Harold +Arthur +Eddie +Andrew +Gerald +Frederick +Melvin +Alan +Vincent +Frank +Roy +Raymond +Russell +Greg +Glenn +Allen +Cedric +Mike +Victor +Roderick +Jonathan +Todd +Wayne +Calvin +Ralph +Howard +Chris +Albert +Derrick +Tim +Jerome +Joel +Benjamin +Alvin +Darrell +Bryan +Craig +Don +Lee +Clarence +Dale +Jessie +Troy +Joey +Jon +Donnie +Kerry +Maurice +Alfred +Kelvin +Ray +Charlie +Jack +Jesse +Marcus +Dwight +Tracy +Lawrence +Leonard +Mitchell +Timmy +Earl +Ernest +Franklin +Fred +Jimmie +Leslie +Byron +Jackie +Perry +Wesley +Bernard +Wendell +Clifford +Nathan +Philip +Kenny +Matthew +Norman +Bradley +Eugene +Floyd +Herman +Marty +Travis +Martin +Lonnie +Nathaniel +Peter +Harry +Johnnie +Leon +Louis +Leroy +Warren +Cecil +Edwin +Freddie +Fredrick +Lester +Stevie +Herbert +Jay +Sidney +Andre +Daryl +Aaron +Theodore +Bill +Harvey +Sammy +Tyrone +Bennie +Derek +Dewayne +Lorenzo +Milton +Morris +Wade +Antonio +Carlton +Claude +Dwayne +Ken +Rex +Vernon +Andy +Clinton +Earnest +Frankie +Glen +Hugh +Jim +Karl +Lewis +Ben +Brett +Clyde +Gene +Lloyd +Roosevelt +Alex +Orlando +Robbie +Sam +Sylvester +Benny +Tommie +Dexter +Garry +Jason +Mickey +Oscar +Otis +Rufus +Carlos +Kent +Marlon +Dan +Mack +Marion +Angelo +Brent +Elbert +Horace +Kim +Scotty +Shawn +Winston +Clayton +Darren +Kyle +Malcolm +Robin +Tom +Wallace +Aubrey +Gordon +Isaac +Julius +Kelly +Myron +Teddy +Adam +Clifton +Jamie +Randal +Ted +Kirk +Lynn +Roland +Van +Chester +Chuck +Guy +Hubert +Lance +Marc +Oliver +Preston +Ross +Stuart +Alonzo +Clay +Ervin +Marshall +Sammie +Sherman +Stoney +Terence +Brad +Demetrius +Gilbert +Quinton +Alexander +Dave +Dean +Forrest +Homer +Ivan +Lamar +Rickie +Sandy +Toney +Vince +Arnold +Carey +Jasper +Kennedy +Leo +Luther +Ronny +Shannon +Stacey +Stewart +Terrance +Al +Amos +Bart +Ellis +Everett +Felix +Gabriel +Grady +Gregg +Kendall +Neal +Nelson +Percy +Rodger +Winfred +Archie +Cornelius +Donny +Edgar +Elijah +Junior +Kennith +Lowell +Murray +Neil +Virgil +Blake +Cornell +Dana +Doyle +Emmett +Freddy +Geoffrey +Ira +Phil +Quintin +Rick +Ron +Royce +Terrell +Terrence +Bob +Bryant +Doug +Grant +Harrison +Houston +Manuel +Randell +Rayford +Vance +Allan +Alphonso +Alton +Avery +Broderick +Duane +Elmer +Francis +Hollis +Jerald +Jody +Justin +Max +Moses +Norris +Owen +Randolph +Stacy +Stephon +Toby +Willard +Adrian +Andrea +Barney +Benjie +Bennett +Bradford +Buddy +Cary +Cedrick +Clint +Darnell +Darry +Davis +Derick +Drew +Edmond +Efrem +Jacob +Joesph +Juan +Mathew +Raynard +Robby +Scottie +Spencer +Ty +Wilbert +Willis +Alfonso +Booker +Darin +Darrel +Donnell +Early +Emanuel +Gerry +Hoyt +Johnathan +Kurt +Ladon +Leland +Lemuel +Lorenza +Louie +Loyd +Napoleon +Nicholas +Nick +Pat +Reggie +Rory +Ruben +Sean +Taylor +Thaddeus +Wiley +Abraham +Alfonza +Alonza +Anderson +Ashley +Augustus +Bert +Brady +Cleveland +Connie +Conrad +Dannie +Darius +Darron +Darwin +Dewey +Elton +Emmitt +Erskine +Fernando +Garland +Hank +Harlan +Isiah +Jackson +Jacques +Jake +Jefferson +Lionel +Major +Marlin +Mary +Noah +Noel +Ocie +Olen +Pernell +Riley +Rodrick +Shane +Stan +Stephan +Talmadge +Trent +Ulysses +Will +Adolphus +Austin +Berry +Bobbie +Brandon +Britt +Bryon +Carter +Clark +Cleve +Cliff +Coy +Dalton +Darrin +Dwain +Eldred +Emmanuel +Ernie +Ezra +Greggory +Hal +Haywood +Hosea +Jeffry +Kenton +Lacy +Lennie +Mac +Matt +Maxwell +Milford +Mitchel +Monroe +Morgan +Newell +Obie +Ollie +Patricia +Pete +Reuben +Rhett +Ryan +Scot +Shelton +Sterling +Thad +Theron +Vaughn +Wes +Wilbur +Woodrow +Xavier +James +John +Michael +David +Robert +William +Charles +Kenneth +Timothy +Mark +Gregory +Richard +Jeffrey +Thomas +Anthony +Terry +Joseph +Willie +Steven +Jeffery +Donald +Jerry +Gary +Ronald +Larry +Christopher +Paul +Bobby +Johnny +George +Jimmy +Billy +Barry +Phillip +Kevin +Tony +Ricky +Randy +Edward +Danny +Daniel +Scott +Patrick +Stephen +Darryl +Eric +Keith +Rodney +Dennis +Douglas +Roger +Tommy +Eddie +Brian +Curtis +Randall +Stanley +Ronnie +Reginald +Steve +Samuel +Carl +Frank +Jeff +Joe +Andrew +Micheal +Walter +Henry +Alan +Vincent +Gerald +Russell +Harold +Lee +Marvin +Bruce +Raymond +Roderick +Arthur +Allen +Roy +Darrell +Mike +Tracy +Frederick +Jonathan +Victor +Joel +Rickey +Calvin +Chris +Melvin +Tim +Derrick +Jerome +Cedric +Todd +Bryan +Marcus +Glenn +Clarence +Charlie +Kelvin +Ralph +Albert +Greg +Matthew +Troy +Wayne +Benjamin +Philip +Jessie +Byron +Ernest +Howard +Joey +Jack +Kerry +Maurice +Donnie +Jimmie +Alfred +Lawrence +Perry +Fred +Jay +Ray +Alvin +Dale +Leonard +Tyrone +Clifford +Franklin +Leon +Milton +Mitchell +Craig +Jackie +Leroy +Leslie +Wendell +Earl +Eugene +Kenny +Vernon +Don +Jesse +Norman +Dewayne +Martin +Timmy +Dwight +Lonnie +Freddie +Marty +Karl +Wesley +Bradley +Darren +Fredrick +Harry +Herman +Jason +Jon +Nathaniel +Sammy +Travis +Dwayne +Johnnie +Bernard +Daryl +Jim +Lewis +Mack +Antonio +Carlos +Bill +Cecil +Mickey +Otis +Warren +Andre +Clyde +Lorenzo +Andy +Floyd +Aaron +Alex +Herbert +Nathan +Rex +Adam +Lester +Morris +Robin +Wade +Frankie +Grady +Lyndon +Marshall +Peter +Sylvester +Terence +Carlton +Earnest +Edwin +Jamie +Roosevelt +Ben +Ken +Terrence +Brent +Brett +Clinton +Dean +Gordon +Kim +Sidney +Terrell +Theodore +Tom +Bennie +Clifton +Dan +Gene +Kyle +Louis +Stevie +Terrance +Alonzo +Glen +Stuart +Ted +Chester +Hubert +Kent +Lance +Lloyd +Myron +Shannon +Wallace +Benny +Claude +Doug +Horace +Isaac +Malcolm +Orlando +Dexter +Elbert +Hugh +Neal +Harvey +Shawn +Derek +Garry +Kelly +Lamar +Roland +Stewart +Tommie +Alton +Cleveland +Demetrius +Julius +Marion +Robbie +Rufus +Sammie +Winston +Edgar +Kennedy +Lynn +Neil +Ross +Sam +Scotty +Teddy +Adrian +Archie +Chuck +Clayton +Doyle +Fitzgerald +Guy +Marc +Willis +Allan +Arnold +Bart +Brad +Bryant +Carey +Duane +Leland +Nelson +Oscar +Randolph +Stacey +Dana +Darrel +Luther +Marlon +Oliver +Stacy +Willard +Winfred +Aubrey +Clay +Cornelius +Emmett +Jeffry +Julian +Leo +Max +Quinton +Rick +Spencer +Van +Will +Alexander +Cary +Clint +Dave +Derick +Donny +Ervin +Everett +Gilbert +Randal +Ronny +Sean +Alphonso +Darrin +Dewey +Ellis +Francis +Geoffrey +Ivan +Jerald +Johnathan +Juan +Kendall +Percy +Preston +Rickie +Sherman +Thaddeus +Alfonso +Amos +Darwin +Freddy +Grant +Gregg +Homer +Ira +Junior +Kennith +Kirk +Rodrick +Ron +Royce +Sandy +Toby +Vince +Virgil +Angelo +Blake +Bradford +Buddy +Clark +Ed +Gerry +Jody +Manuel +Moses +Quintin +Stan +Trent +Wiley +Avery +Bob +Damon +Darron +Emanuel +Kurt +Luke +Micah +Mose +Robby +Wilfred +Alfonza +Billie +Bret +Broderick +Buford +Chad +Darin +Davis +Donnell +Dudley +Edmond +Felix +Fletcher +Garland +Grover +Issac +Joshua +Judson +Lowell +Norris +Ocie +Phil +Rayford +Roscoe +Ryan +Shane +Toney +Tracey +Wilbur +Wilson +Al +Anderson +Andra +Bert +Bobbie +Brandon +Cameron +Cassius +Cliff +Connie +Dallas +Darnell +Derrell +Destry +Dwain +Elijah +Emory +Evan +Forrest +Gabriel +Hal +Hank +Hollis +Jacob +Jasper +Jeremiah +Jonathon +Kermit +Levi +Louie +Major +Mary +Matt +Maury +Miles +Monte +Nolan +Pernell +Pete +Randell +Reggie +Rhett +Richie +Rodger +Sanford +Scottie +Timmie +Vance +Wilbert +Wilburn +Woodrow +Alonza +Andrea +Austin +Booker +Boyd +Carroll +Dannie +Darry +Daryle +Fabian +Greggory +Harlan +Hosea +Isaiah +Isiah +Jackson +Jaimie +Jamey +Jarvis +Jefferson +Justin +Kelley +Ledell +Lorenza +Mcarthur +Mckinley +Melton +Murray +Napoleon +Owen +Reginal +Reuben +Rubin +Rusty +Stephan +Timmothy +Truman +Winford +Zachary +James +Michael +John +David +Robert +William +Charles +Timothy +Kenneth +Jeffrey +Mark +Gregory +Richard +Anthony +Thomas +Christopher +Rodney +Terry +Joseph +Steven +Willie +Jerry +Jeffery +Donald +Ronald +Larry +Paul +Bobby +Johnny +Gary +Kevin +Jimmy +Phillip +Billy +Darryl +Edward +Randy +Tony +George +Stephen +Barry +Ricky +Brian +Scott +Eric +Danny +Keith +Daniel +Patrick +Douglas +Tommy +Dennis +Roger +Stanley +Eddie +Joe +Samuel +Walter +Curtis +Raymond +Reginald +Henry +Steve +Marvin +Randall +Andrew +Vincent +Bruce +Ronnie +Derrick +Micheal +Carl +Darren +Chris +Frank +Russell +Arthur +Jonathan +Roy +Gerald +Calvin +Cedric +Bryan +Darrell +Roderick +Harold +Todd +Frederick +Melvin +Jeff +Tracy +Alan +Victor +Craig +Glenn +Charlie +Allen +Clarence +Rickey +Kerry +Albert +Benjamin +Mike +Philip +Jerome +Lee +Marcus +Joel +Kelvin +Matthew +Lawrence +Wayne +Byron +Troy +Greg +Howard +Ernest +Tim +Jon +Jason +Jessie +Ray +Darrin +Maurice +Mitchell +Travis +Norman +Dwight +Eugene +Leon +Perry +Alfred +Frankie +Jay +Ralph +Daryl +Leonard +Wesley +Joey +Warren +Fred +Nathaniel +Donnie +Jack +Don +Cecil +Dale +Fredrick +Alvin +Jesse +Bradley +Dwayne +Johnnie +Clifford +Martin +Earl +Earnest +Franklin +Harry +Jackie +Jimmie +Aaron +Brent +Antonio +Brett +Clyde +Malcolm +Andre +Andy +Herman +Lonnie +Marty +Wade +Clinton +Edwin +Peter +Darron +Derek +Herbert +Karl +Leslie +Jim +Kenny +Carlos +Dewayne +Freddie +Lewis +Tyrone +Wendell +Lester +Marshall +Mickey +Stevie +Vernon +Bernard +Darin +Floyd +Kim +Leroy +Alex +Carlton +Kelly +Scotty +Shawn +Sylvester +Claude +Dan +Glen +Timmy +Tommie +Grady +Marion +Milton +Nathan +Shannon +Stuart +Bennie +Demetrius +Terence +Terrence +Cary +Jamie +Kyle +Mack +Sammy +Sean +Gordon +Horace +Oscar +Robbie +Theodore +Clifton +Lloyd +Louis +Morris +Adam +Alonzo +Archie +Dexter +Lorenzo +Rex +Robin +Roosevelt +Sherman +Terrell +Tom +Allan +Bart +Darrel +Edgar +Isaac +Kent +Otis +Spencer +Winston +Alton +Arnold +Cornelius +Dana +Hugh +Lance +Neal +Sidney +Bill +Gene +Harvey +Sam +Shane +Ted +Benny +Brad +Chester +Clark +Ken +Lyndon +Stacy +Terrance +Virgil +Chuck +Clayton +Hubert +Julius +Lamar +Stacey +Wallace +Adrian +Alphonso +Ashley +Bryant +Kirk +Leo +Myron +Neil +Teddy +Aubrey +Ben +Dewey +Donny +Geoffrey +Jerald +Lynn +Randal +Robby +Zachary +Dean +Elbert +Erik +Ervin +Garry +Gerry +Oliver +Ron +Sammie +Sandy +Stan +Wilbert +Willis +Wilson +Clint +Doyle +Duane +Emmett +Everett +Jody +Louie +Marlon +Moses +Orlando +Phil +Preston +Randolph +Rodrick +Ronny +Ross +Ryan +Toney +Willard +Bob +Bradford +Cleveland +Derick +Gilbert +Guy +Jerrell +Juan +Julian +Kendall +Kennedy +Marc +Napoleon +Rusty +Scottie +Alexander +Avery +Carey +Casey +Clay +Daren +Freddy +Ivan +Johnathan +Lorenza +Reuben +Roland +Toby +Tracey +Van +Al +Amos +Barney +Blake +Buddy +Daron +Darrick +Doug +Elmer +Felix +Forrest +Grant +Ira +Jefferson +Judson +Kennith +Kurt +Lionel +Luther +Nelson +Percy +Ritchie +Rocky +Rodger +Royce +Ruben +Stewart +Stoney +Will +Angelo +Barron +Bret +Bryon +Buford +Chad +Dallas +Dave +Elijah +Elton +Harrison +Justin +Leland +Lowell +Major +Manuel +Morgan +Nicholas +Quintin +Randell +Rickie +Rod +Wilbur +Alexis +Alfonso +Barton +Billie +Bobbie +Cameron +Carter +Cedrick +Chip +Cleophus +Darwin +Denny +Donnell +Ed +Eddy +Edmond +Ellis +Erskine +Hank +Hollis +Jacob +Jarvis +Junior +Loren +Lovell +Loyd +Marlin +Matt +Maury +Max +Ned +Nicky +Norris +Quinton +Rick +Silas +Sterling +Timmie +Wilburn +Wiley +Winfred +Abraham +Andra +Andrea +Artie +Austin +Bert +Burton +Colin +Columbus +Conrad +Damon +Darion +Darryle +Donell +Drew +Earlie +Emanuel +Erick +Everette +Felton +Garland +Grover +Harlan +Houston +Hoyt +Jackson +Jake +Jame +Jasper +Jeffry +Kalvin +Keven +Kimberly +Kip +Lane +Mary +Millard +Monte +Murray +Noah +Ollie +Ottis +Pete +Prince +Quincy +Rayford +Rory +Rufus +Sanford +Thad +Thaddeus +Trent +Unknown +Vaughn +Woodrow +James +Michael +John +David +William +Robert +Timothy +Charles +Kenneth +Christopher +Jeffrey +Richard +Mark +Anthony +Thomas +Gregory +Steven +Rodney +Terry +Joseph +Willie +Jeffery +Jerry +Donald +Paul +Kevin +Ronald +Brian +Larry +Tony +Gary +Johnny +Keith +Jimmy +Stephen +Bobby +Eric +Barry +George +Edward +Billy +Daniel +Scott +Randy +Darryl +Patrick +Phillip +Danny +Roger +Douglas +Randall +Eddie +Reginald +Samuel +Ronnie +Walter +Carl +Tommy +Henry +Ricky +Joe +Curtis +Derrick +Gerald +Jonathan +Andrew +Chris +Roderick +Russell +Bryan +Frank +Vincent +Bruce +Dennis +Stanley +Lee +Darrell +Tracy +Arthur +Marvin +Micheal +Cedric +Steve +Allen +Roy +Alan +Raymond +Calvin +Darren +Matthew +Frederick +Harold +Kelvin +Joel +Jason +Melvin +Benjamin +Clarence +Jeff +Rickey +Todd +Jessie +Albert +Howard +Kerry +Victor +Wayne +Jerome +Glenn +Norman +Craig +Marcus +Wesley +Byron +Ralph +Jack +Ernest +Jon +Tim +Charlie +Nathaniel +Philip +Troy +Alfred +Lawrence +Mitchell +Johnnie +Tyrone +Leslie +Lonnie +Marty +Scottie +Jackie +Leon +Mike +Travis +Bradley +Fredrick +Leonard +Alvin +Andre +Dwight +Greg +Jimmie +Maurice +Daryl +Donnie +Joey +Earl +Eugene +Antonio +Bernard +Carlos +Franklin +Milton +Cecil +Dale +Jesse +Kelly +Ray +Scotty +Clifford +Freddie +Herman +Kenny +Darrin +Don +Fred +Jim +Perry +Peter +Shawn +Warren +Dewayne +Floyd +Karl +Robin +Shannon +Aaron +Lorenzo +Sean +Derek +Lewis +Stacy +Stevie +Timmy +Andy +Bennie +Earnest +Harry +Louis +Ryan +Wendell +Clinton +Herbert +Martin +Nathan +Rex +Sylvester +Dexter +Edwin +Jay +Leroy +Sammy +Carlton +Frankie +Terrance +Gene +Jamie +Otis +Terrence +Tommie +Vernon +Wallace +Darron +Dwayne +Sidney +Benny +Clyde +Glen +Marion +Mickey +Terrell +Adam +Brent +Clifton +Theodore +Brad +Brett +Chad +Grady +Hubert +Lloyd +Morris +Roosevelt +Bill +Chester +Darin +Horace +Kyle +Oscar +Sam +Terence +Toney +Bryant +Gordon +Harvey +Lester +Marshall +Myron +Teddy +Alonzo +Clayton +Demetrius +Geoffrey +Kent +Orlando +Randal +Alexander +Claude +Dan +Doyle +Ken +Malcolm +Preston +Sherman +Stacey +Ted +Chuck +Hugh +Juan +Alex +Alton +Brandon +Rodger +Shane +Wade +Adrian +Arnold +Ben +Cary +Cornelius +Darrel +Everett +Jerald +Kirk +Lance +Marc +Napoleon +Robbie +Roland +Rufus +Alphonso +Archie +Aubrey +Casey +Clark +Clay +Ellis +Felix +Ivan +Jody +Kim +Lorenza +Luther +Marlon +Virgil +Bart +Dean +Duane +Garry +Gregg +Ira +Julius +Kendall +Lindsey +Mack +Nelson +Nicholas +Percy +Quintin +Tom +Trent +Van +Bob +Bradford +Forrest +Heath +Hollis +Kennith +Leo +Lynn +Manuel +Max +Oliver +Rick +Ross +Stewart +Stuart +Thaddeus +Will +Abraham +Bryon +Cleophus +Elbert +Elvis +Homer +Isaac +Johnathan +Lamar +Neal +Robby +Sammie +Sandy +Tracey +Vince +Wilbur +Willard +Winfred +Winston +Zachary +Allan +Amos +Boyd +Carey +Cleveland +Daren +Daron +Derrell +Edgar +Edmond +Emmett +Erik +Guy +Houston +Hoyt +Lowell +Lyndon +Nick +Noel +Phil +Quinton +Rodrick +Ronny +Rusty +Ty +Wilbert +Willis +Wilson +Barron +Blake +Cedrick +Damon +Dana +Dewey +Elliott +Elmer +Fletcher +Freddy +Grant +Greggory +Hal +Ivory +Jacky +Jake +Julian +Junior +Leland +Louie +Murray +Rory +Royce +Shelby +Taylor +Wilburn +Angelo +Ashley +Chadwick +Chauncey +Clint +Delbert +Derick +Donny +Emory +Harlan +Jeffry +Jeremiah +Joshua +Luke +Micah +Quentin +Randolph +Richie +Rocky +Rogers +Ron +Spencer +Stoney +Toby +Woodrow +Al +Alonza +Austin +Avery +Berry +Coleman +Colin +Dannie +Darell +Darry +Darwin +Denny +Emanuel +Gabriel +Garland +Gavin +Gaylon +Gilbert +Hank +Ike +Issac +Jarrod +Jeremy +Justin +Karlos +Kurt +Levi +Marlin +Millard +Monte +Moses +Neil +Nickey +Norris +Owen +Rayford +Riley +Ruben +Sanford +Shelton +Solomon +Wilfred +Wilmer +Xavier +James +Michael +John +David +William +Robert +Timothy +Charles +Christopher +Mark +Kenneth +Anthony +Richard +Jeffrey +Gregory +Thomas +Joseph +Steven +Jeffery +Terry +Rodney +Brian +Willie +Paul +Donald +Kevin +Jerry +Ronald +Jimmy +Stephen +Johnny +Gary +Eric +Bobby +George +Tony +Patrick +Keith +Larry +Edward +Billy +Phillip +Randy +Barry +Scott +Daniel +Danny +Douglas +Darryl +Reginald +Dennis +Roger +Randall +Joe +Ricky +Samuel +Tommy +Andrew +Eddie +Bryan +Derrick +Matthew +Carl +Henry +Gerald +Walter +Stanley +Bruce +Curtis +Frederick +Jonathan +Darrell +Steve +Tracy +Micheal +Troy +Vincent +Jason +Ronnie +Frank +Lee +Chris +Marvin +Roderick +Raymond +Roy +Russell +Joel +Arthur +Calvin +Todd +Harold +Darren +Cedric +Kelvin +Allen +Melvin +Alan +Jerome +Albert +Benjamin +Kerry +Victor +Clarence +Craig +Howard +Marcus +Lawrence +Sean +Jessie +Glenn +Mike +Ralph +Jeff +Wayne +Byron +Fredrick +Joey +Kelly +Philip +Rickey +Nathaniel +Travis +Jesse +Lonnie +Antonio +Ernest +Stacey +Scotty +Charlie +Daryl +Jon +Leon +Bradley +Jimmie +Leonard +Mitchell +Stacy +Andre +Marty +Norman +Jackie +Lewis +Perry +Alvin +Derek +Jay +Warren +Don +Greg +Maurice +Jack +Peter +Tim +Donnie +Dwayne +Dwight +Shannon +Wesley +Alfred +Franklin +Leslie +Vernon +Clifford +Eugene +Milton +Darrin +Dexter +Jamie +Ryan +Brett +Carlos +Fred +Herman +Jim +Johnnie +Scottie +Terrance +Timmy +Ray +Shawn +Stevie +Wendell +Bernard +Leroy +Louis +Nathan +Shane +Brent +Freddie +Tracey +Tyrone +Aaron +Kenny +Martin +Demetrius +Earl +Edwin +Floyd +Otis +Sidney +Cecil +Dale +Orlando +Lance +Lorenzo +Morris +Terrell +Frankie +Herbert +Karl +Marshall +Dewayne +Roosevelt +Sam +Sammy +Wallace +Clinton +Earnest +Gordon +Harry +Mickey +Neal +Preston +Carlton +Glen +Grady +Horace +Kendall +Kim +Sylvester +Teddy +Winston +Adam +Alexander +Alonzo +Andy +Bennie +Benny +Dean +Arnold +Chad +Garry +Harvey +Heath +Jody +Lamar +Lester +Lloyd +Mack +Malcolm +Marc +Marion +Randal +Wade +Brad +Cary +Dan +Dana +Darron +Dewey +Gene +Julius +Rex +Robbie +Stuart +Terrence +Tom +Alex +Clayton +Isaac +Kent +Rufus +Theodore +Allan +Aubrey +Brandon +Bryant +Geoffrey +Ken +Kyle +Nicholas +Terence +Clyde +Cornelius +Darin +Felix +Kirk +Royce +Toney +Bart +Bill +Clifton +Dave +Edgar +Homer +Houston +Quinton +Reggie +Trent +Amos +Archie +Carey +Casey +Chester +Claude +Elijah +Emmett +Everett +Jarrod +Luther +Marlon +Oliver +Quintin +Robin +Sherman +Thaddeus +Virgil +Zachary +Adrian +Angelo +Bobbie +Damon +Jeremiah +Myron +Napoleon +Oscar +Spencer +Ted +Toby +Tommie +Ulysses +Wilson +Alphonso +Alton +Ashley +Blake +Bradford +Cedrick +Courtney +Daren +Duane +Gilbert +Jefferson +Johnathan +Juan +Kurt +Lowell +Nelson +Stewart +Willard +Willis +Bob +Clark +Cleveland +Conrad +Cornell +Daron +Darrel +Donny +Emanuel +Fletcher +Guy +Hugh +Ira +Julian +Leo +Lorenza +Mario +Ollie +Quentin +Quincy +Randell +Rayford +Rickie +Robby +Roland +Ronny +Sanford +Will +Avery +Ben +Bret +Chadwick +Chuck +Clint +Derick +Ervin +Fernando +Forrest +Freeman +Gerry +Graham +Grover +Hubert +Ivan +Jacob +Justin +Kennedy +Maury +Max +Monty +Morgan +Neil +Nick +Noel +Percy +Reginal +Rodger +Rodrick +Sammie +Seth +Van +Vance +Vince +Winford +Barney +Clay +Cleophus +Doyle +Ellis +Emory +Erick +Erik +Francis +Freddy +Grant +Huey +Jasper +Jerald +Ladon +Levi +Mcarthur +Nicky +Nolan +Stoney +Timmie +Tyler +Unknown +Wilbert +Wiley +Woodrow +Alexis +Austin +Britt +Broderick +Brooks +Connie +Dalton +Darnell +Darwin +Derwin +Devin +Doug +Edmond +Elbert +Elvis +Errol +Ethan +Evan +Frederic +Gregg +Harrison +Hollis +Hosea +Hunter +Isiah +Jamey +Jared +Jarvis +Jayson +Jeffry +Jock +Kermit +Leland +Lindsey +Loyd +Luke +Lynn +Mathew +Matt +Mckinley +Micah +Murray +Norris +Pat +Pete +Phil +Pierre +Prentice +Randolph +Rick +Riley +Ron +Ross +Rudolph +Sandy +Shelton +Stanford +Talmadge +Terrel +Trevor +Truman +Tyron +James +Michael +John +David +Robert +William +Timothy +Charles +Christopher +Mark +Kenneth +Jeffrey +Richard +Thomas +Anthony +Gregory +Steven +Joseph +Brian +Jerry +Kevin +Donald +Rodney +Terry +Willie +Larry +Gary +Paul +Ronald +Jeffery +Stephen +Eric +Patrick +Tony +Jimmy +Billy +Edward +George +Bobby +Johnny +Keith +Phillip +Daniel +Scott +Roger +Douglas +Danny +Reginald +Derrick +Dennis +Jonathan +Darrell +Matthew +Randall +Barry +Samuel +Ricky +Tommy +Walter +Randy +Jason +Joe +Ronnie +Tracy +Andrew +Stanley +Carl +Darryl +Gerald +Russell +Bryan +Todd +Roderick +Eddie +Henry +Lee +Darren +Curtis +Harold +Bruce +Raymond +Kelvin +Micheal +Roy +Chris +Joel +Cedric +Frederick +Craig +Frank +Marvin +Calvin +Bradley +Marcus +Melvin +Arthur +Allen +Shannon +Shawn +Troy +Clarence +Jack +Sean +Howard +Alan +Joey +Albert +Kerry +Travis +Tyrone +Jerome +Martin +Norman +Steve +Philip +Donnie +Jeff +Wayne +Derek +Rickey +Timmy +Benjamin +Daryl +Jon +Scotty +Vincent +Charlie +Jackie +Lawrence +Nathan +Clifford +Fredrick +Glenn +Byron +Carlos +Jesse +Lonnie +Wesley +Antonio +Ernest +Leonard +Victor +Kelly +Alvin +Jessie +Mitchell +Ray +Stacy +Darrin +Jimmie +Scottie +Eugene +Jay +Andre +Cecil +Dexter +Franklin +Louis +Marty +Maurice +Ralph +Brett +Earnest +Shane +Aaron +Alfred +Bernard +Freddie +Johnnie +Mike +Dwight +Leon +Fred +Otis +Perry +Stacey +Dale +Dewayne +Jamie +Milton +Sidney +Tim +Warren +Ryan +Demetrius +Leslie +Terrance +Clyde +Dwayne +Grady +Mickey +Peter +Earl +Herman +Nathaniel +Roosevelt +Sammy +Chad +Clinton +Jody +Kenny +Greg +Kyle +Carlton +Darron +Floyd +Frankie +Jim +Preston +Vernon +Bart +Herbert +Lewis +Lloyd +Marshall +Morris +Terrence +Wendell +Alexander +Brent +Don +Harry +Harvey +Lance +Robbie +Theodore +Wade +Adam +Dean +Edwin +Stuart +Sylvester +Cary +Clifton +Damon +Dewey +Johnathan +Kirk +Lester +Marion +Randal +Rex +Tracey +Van +Alex +Aubrey +Carey +Dan +Everett +Gene +Hugh +Spencer +Stewart +Tom +Andy +Brad +Brandon +Julius +Marc +Orlando +Percy +Ron +Sam +Stevie +Adrian +Ben +Bryant +Clayton +Corey +Darin +Hubert +Julian +Robin +Roland +Terence +Terrell +Wallace +Archie +Arnold +Bill +Chester +Glen +Guy +Horace +Kent +Luther +Mack +Malcolm +Nicholas +Quinton +Sherman +Ted +Alonzo +Claude +Cornelius +Geoffrey +Heath +Isaac +Ken +Leroy +Lorenzo +Manuel +Myron +Nelson +Rufus +Teddy +Tommie +Will +Alton +Casey +Cleveland +Darrel +Doyle +Edgar +Elbert +Gordon +Louie +Marlon +Max +Neal +Rodrick +Ronny +Toby +Allan +Chuck +Clark +Dana +Duane +Forrest +Gilbert +Jefferson +Kendall +Andrea +Ashley +Bennie +Benny +Chadwick +Christian +Clint +Daron +Dave +Ira +Karl +Kim +Kurt +Leo +Oscar +Rickie +Ross +Sandy +Toney +Barney +Clay +Daren +Derick +Derrell +Felix +Hollis +Jamey +Kennedy +Lamar +Lorenza +Noel +Reggie +Robby +Rodger +Sammie +Sheldon +Vince +Wilbert +Xavier +Zachary +Alphonso +Bert +Blake +Brady +Bret +Broderick +Dalton +Deron +Donny +Ellis +Erik +Garry +Grover +Houston +Jackson +Jeremy +Jonathon +Juan +Justin +Lowell +Marlin +Mathew +Murray +Neil +Ollie +Rick +Riley +Sanford +Shaun +Vance +Willard +Winston +Athony +Austin +Billie +Bobbie +Bradford +Delbert +Donovan +Erick +Freddy +Gerry +Grant +Hoyt +Ivan +Jarrod +Jasper +Jerrell +Kendrick +Moses +Norris +Oliver +Randell +Rayford +Royce +Shedrick +Shelby +Silas +Truman +Ty +Virgil +Wilson +Amos +Antonia +Artis +Berry +Boyd +Brenton +Cameron +Cedrick +Columbus +Cornell +Daryle +Dion +Elijah +Emmett +Evan +Fletcher +Francis +Gabriel +Greggory +Jerald +Joesph +Joshua +Judson +Leland +Len +Marcellus +Mario +Mason +Matt +Mose +Nolan +Owen +Randolph +Ruben +Rusty +Trent +Tyler +Ulysses +Vinson +Waymon +Wiley +Woodrow +Zachery +James +Michael +John +David +William +Robert +Christopher +Charles +Timothy +Anthony +Jeffrey +Mark +Richard +Kenneth +Gregory +Joseph +Thomas +Steven +Brian +Donald +Jeffery +Stephen +Ronald +Eric +Kevin +Jason +Terry +Rodney +Scott +Johnny +Larry +Patrick +Paul +Jerry +Willie +Gary +Jimmy +Daniel +Jonathan +Phillip +Edward +George +Tony +Bobby +Billy +Keith +Douglas +Barry +Reginald +Bryan +Matthew +Derrick +Randall +Ricky +Roger +Curtis +Dennis +Danny +Samuel +Darrell +Randy +Craig +Tommy +Bradley +Walter +Ronnie +Marcus +Eddie +Joe +Tyrone +Gerald +Frank +Micheal +Andrew +Raymond +Russell +Carl +Roderick +Tracy +Frederick +Chris +Bruce +Joel +Marvin +Henry +Corey +Stanley +Darren +Lee +Roy +Cedric +Kelvin +Todd +Shannon +Troy +Harold +Benjamin +Vincent +Travis +Alan +Allen +Byron +Calvin +Darryl +Howard +Stacy +Sean +Wesley +Jerome +Derek +Melvin +Philip +Arthur +Jon +Glenn +Scotty +Steve +Carlos +Clarence +Donnie +Jack +Shane +Antonio +Dale +Jeff +Shawn +Wayne +Rickey +Joey +Kerry +Albert +Brent +Kelly +Warren +Ernest +Jeremy +Leonard +Daryl +Dewayne +Jessie +Johnnie +Norman +Victor +Lawrence +Marty +Nathan +Charlie +Dexter +Alfred +Chad +Clinton +Jesse +Martin +Brett +Cecil +Jamie +Maurice +Aaron +Lonnie +Alvin +Andre +Clifford +Ralph +Stacey +Earl +Jackie +Jimmie +Jody +Lance +Fredrick +Jay +Perry +Dwayne +Fred +Mitchell +Peter +Vernon +Demetrius +Dwight +Glen +Leslie +Otis +Franklin +Wendell +Eugene +Herman +Scottie +Spencer +Terrence +Edwin +Ray +Don +Bill +Clayton +Greg +Herbert +Lewis +Orlando +Ron +Adam +Leroy +Lorenzo +Morris +Andy +Brad +Brandon +Cary +Floyd +Harry +Jim +Kyle +Mike +Milton +Nathaniel +Darrin +Heath +Oscar +Terrance +Bennie +Cornelius +Leon +Marc +Robbie +Timmy +Tommie +Wade +Bryant +Lester +Marshall +Neil +Rex +Stevie +Tim +Alonzo +Bernard +Clyde +Frankie +Louis +Toby +Earnest +Kenny +Roosevelt +Ted +Tracey +Willard +Adrian +Alex +Carlton +Clifton +Damon +Darron +Erik +Freddie +Horace +Johnathan +Lamar +Luther +Preston +Ryan +Sidney +Alton +Claude +Dan +Darin +Guy +Marion +Randal +Alexander +Ben +Chester +Clint +Darrel +Gene +Geoffrey +Grady +Karl +Kirk +Reggie +Robin +Terence +Terrell +Archie +Aubrey +Benny +Bradford +Cory +Emmett +Garry +Kent +Leo +Lloyd +Mack +Malcolm +Mickey +Myron +Sammy +Sherman +Sylvester +Toney +Van +Virgil +Wallace +Christian +Clay +Duane +Felix +Gerry +Harvey +Hugh +Ira +Ivan +Jared +Jerald +Kendall +Marlon +Neal +Nicholas +Theodore +Arnold +Chadwick +Doyle +Ellis +Jonathon +Julius +Kendrick +Royce +Rusty +Sam +Wilbert +Carey +Casey +Cleveland +Jefferson +Julian +Justin +Kim +Quentin +Roland +Ty +Alfonso +Amos +Ashley +Avery +Bart +Bret +Chuck +Dominic +Edgar +Gordon +Jacob +Kurt +Lorenza +Oliver +Robby +Rufus +Stuart +Teddy +Thaddeus +Winston +Al +Alphonso +Bobbie +Courtney +Daron +Dave +Dean +Erick +Everett +Forrest +Francis +Gavin +Hubert +Jarrod +Micah +Napoleon +Nelson +Quincy +Sedrick +Shaun +Sonny +Tom +Willis +Antoine +Darian +Darius +Dedrick +Derick +Dustin +Elliott +Freddy +Hershel +Hunter +Isaac +Jarvis +Jerrell +Ken +Kirby +Lyndon +Monroe +Norris +Percy +Phil +Randolph +Sammie +Seth +Stewart +Trent +Tyler +Waylon +Wilson +Zachary +Abraham +Andra +Barney +Boyd +Clark +Dana +Darwin +Denny +Donnell +Grant +Grover +Homer +Jacques +Jayson +Jeremiah +Johnathon +Joshua +Juan +Leland +Lynn +Mario +Nick +Noah +Quinton +Rick +Riley +Rodrick +Ross +Stephan +Theron +Timmie +Torrey +Tyron +Vance +Allan +Andrea +Austin +Barton +Blake +Boris +Brady +Brenton +Cameron +Carroll +Coleman +Conrad +Darnell +Darrick +Dion +Felton +Garland +Isaiah +Jame +Jamey +Joesph +Kimberly +Kris +Lisa +Lonzo +Lorne +Louie +Lovell +Lowell +Max +Monty +Morgan +Murray +Noel +Pierre +Randell +Reginal +Rhett +Shedrick +Shelly +Stafford +Sterling +Wiley +Will +Woodrow +James +Michael +John +William +David +Robert +Christopher +Charles +Timothy +Anthony +Thomas +Richard +Jeffrey +Jason +Steven +Kenneth +Joseph +Gregory +Kevin +Mark +Brian +Eric +Stephen +Jeffery +Ronald +Jerry +Terry +Larry +Donald +Scott +Willie +Rodney +Patrick +Paul +Daniel +Gary +Johnny +Marcus +Jonathan +Bobby +Phillip +Jimmy +Tony +Billy +Keith +George +Matthew +Edward +Samuel +Derrick +Tommy +Douglas +Barry +Bradley +Reginald +Dennis +Andrew +Bryan +Eddie +Gerald +Roger +Randall +Jeremy +Shawn +Curtis +Danny +Micheal +Randy +Roderick +Walter +Craig +Henry +Darrell +Ricky +Stanley +Tyrone +Shannon +Russell +Benjamin +Frederick +Joel +Todd +Joe +Frank +Ronnie +Tracy +Cedric +Carl +Raymond +Chris +Arthur +Carlos +Clarence +Kelvin +Sean +Roy +Darren +Troy +Allen +Travis +Alan +Jerome +Bruce +Albert +Shane +Chad +Lee +Harold +Victor +Vincent +Antonio +Lance +Derek +Jon +Corey +Wesley +Andre +Daryl +Melvin +Calvin +Lawrence +Marvin +Jack +Philip +Brent +Steve +Charlie +Darryl +Jamie +Wayne +Aaron +Maurice +Brandon +Byron +Jay +Joey +Donnie +Stacy +Ernest +Glenn +Warren +Alexander +Dale +Dexter +Mitchell +Fredrick +Lewis +Scottie +Scotty +Stacey +Adam +Alvin +Jimmie +Perry +Terrence +Leslie +Martin +Terrance +Jeff +Leon +Louis +Clifford +Dwight +Jesse +Marty +Nathan +Ralph +Franklin +Fred +Howard +Johnnie +Kerry +Nathaniel +Glen +Greg +Jessie +Kelly +Leonard +Earl +Earnest +Lonnie +Andy +Demetrius +Herbert +Norman +Rickey +Clinton +Dewayne +Darrin +Otis +Peter +Brett +Cecil +Eugene +Kenny +Brad +Dustin +Edwin +Wade +Wallace +Clifton +Herman +Jackie +Heath +Jody +Ray +Stevie +Adrian +Freddie +Marc +Mike +Robin +Vernon +Alfred +Bryant +Dwayne +Tim +Tommie +Wendell +Don +Harry +Kyle +Bill +Carey +Claude +Cory +Harvey +Lloyd +Marlon +Mickey +Orlando +Ryan +Sammy +Shaun +Timmy +Ashley +Bernard +Cary +Clyde +Grady +Jim +Justin +Leroy +Malcolm +Milton +Carlton +Casey +Chester +Dan +Gene +Jarvis +Johnathan +Marshall +Max +Morris +Nicholas +Ron +Sidney +Tom +Darrick +Frankie +Gordon +Lamar +Roosevelt +Sherman +Toby +Tracey +Ben +Christian +Clayton +Floyd +Horace +Hugh +Jerald +Karl +Preston +Randal +Robbie +Trevor +Archie +Bradford +Cameron +Chadwick +Cornelius +Doyle +Felix +Julius +Kirk +Rodrick +Alonzo +Antony +Bennie +Benny +Dana +Donny +Duane +Garry +Geoffrey +Kim +Mack +Stuart +Trent +Clint +Darron +Forrest +Ira +Jamey +Jarrod +Noel +Oscar +Quentin +Quinton +Terence +Alex +Brady +Dean +Derick +Fernando +Francis +Isaac +Lester +Luther +Mario +Marion +Myron +Rex +Rico +Robby +Rusty +Sammie +Spencer +Virgil +Alton +Clay +Darius +Donovan +Erik +Gabriel +Guy +Judson +Nelson +Sam +Stephan +Ted +Terrell +Van +Willard +Winston +Antonia +Aubrey +Bob +Brenton +Broderick +Chuck +Edgar +Gilbert +Grant +Hubert +Jacob +Juan +Kendall +Kendrick +Louie +Lowell +Matt +Neil +Percy +Ross +Theodore +Wilbert +Will +Wilson +Xavier +Andrea +Angelo +Bret +Cedrick +Dewey +Elijah +Emmett +Everett +Jefferey +Ken +Lorenzo +Morgan +Neal +Randolph +Reggie +Roland +Royce +Taylor +Thaddeus +Toney +Tyron +Vance +Zachary +Bart +Bert +Boris +Boyd +Buddy +Damon +Darnell +Darrel +Erick +Evan +Jacques +Jared +Jerre +Joshua +Junior +Kalvin +Lesley +Marquis +Miles +Oliver +Quincy +Ramon +Rick +Riley +Rodger +Roman +Sandy +Simon +Stewart +Alfonso +Alphonso +Arnold +Avery +Clark +Cleveland +Daron +Dave +Donnell +Emanuel +Emory +Ervin +Grover +Huey +Hunter +Jackson +Julian +Kelley +Kristopher +Kurt +Leland +Loren +Lorenza +Loyd +Luke +Manuel +Nick +Ollie +Ruben +Stanford +Sylvester +Teddy +Trenton +Trey +Willis +Alfonza +Allan +Anderson +Angela +Austin +Baron +Blake +Chadrick +Cleophus +Colin +Cyrus +Dallas +Dannie +Desi +Desmond +Devin +Dwyane +Eddy +Elbert +Ellis +Enoch +Errol +Erskine +Gerry +Glynn +Gregg +Hiram +Jammie +Jerel +Jonas +Jonathon +Kendell +Kennedy +Kennith +Kent +Leo +Marlin +Monty +Omar +Reid +Sanford +Shon +Silas +Solomon +Sonny +Sterling +Tyler +Tyson +Michael +James +Christopher +John +William +Robert +David +Jason +Charles +Anthony +Timothy +Brian +Thomas +Kevin +Joseph +Jeffrey +Kenneth +Steven +Mark +Gregory +Richard +Eric +Terry +Scott +Larry +Stephen +Jonathan +Ronald +Patrick +Jerry +Donald +Jeffery +Paul +Daniel +Johnny +Willie +Rodney +Billy +Bobby +Tony +Gary +Marcus +Jeremy +Keith +Matthew +Jimmy +Phillip +Edward +George +Derrick +Chad +Shannon +Samuel +Douglas +Bryan +Shawn +Danny +Dennis +Henry +Frederick +Reginald +Andrew +Randy +Curtis +Randall +Barry +Tommy +Cedric +Joe +Marvin +Bradley +Jamie +Eddie +Russell +Tyrone +Antonio +Roderick +Walter +Brandon +Carlos +Gerald +Kelvin +Ricky +Chris +Darrell +Roger +Joel +Tracy +Micheal +Benjamin +Scotty +Sean +Carl +Derek +Ronnie +Stanley +Shane +Steve +Frank +Calvin +Corey +Roy +Fredrick +Raymond +Todd +Travis +Scottie +Wesley +Lee +Clarence +Troy +Allen +Darren +Philip +Arthur +Craig +Albert +Harold +Jody +Vincent +Kerry +Brent +Jerome +Jessie +Adam +Bruce +Lance +Maurice +Wayne +Aaron +Andre +Howard +Byron +Alvin +Lawrence +Nathan +Joey +Jon +Ryan +Stacy +Leonard +Melvin +Dewayne +Heath +Marty +Norman +Alan +Jay +Jesse +Brett +Charlie +Darryl +Ernest +Johnnie +Mitchell +Warren +Daryl +Donnie +Terrence +Harry +Leslie +Dexter +Dwight +Marc +Franklin +Glenn +Greg +Jack +Jimmie +Louis +Nathaniel +Stevie +Cecil +Clifford +Freddie +Jermaine +Lonnie +Terrance +Jackie +Marlon +Ralph +Timmy +Christian +Clifton +Rickey +Alfred +Chadwick +Clinton +Demetrius +Eugene +Jeff +Kelly +Peter +Ray +Stacey +Victor +Bryant +Kenny +Perry +Robbie +Don +Dwayne +Justin +Toby +Kyle +Leon +Sammy +Terrell +Wendell +Alexander +Earnest +Fred +Hugh +Martin +Bernard +Dana +Johnathan +Kendrick +Carlton +Earl +Edwin +Floyd +Frankie +Orlando +Bennie +Dale +Herbert +Sidney +Spencer +Alex +Andy +Ashley +Aubrey +Cary +Grady +Joshua +Mickey +Milton +Otis +Stuart +Alonzo +Alton +Cornelius +Geoffrey +Mario +Marshall +Myron +Ron +Tommie +Adrian +Clay +Darrin +Dustin +Julius +Lester +Luther +Mack +Wade +Casey +Chester +Claude +Clayton +Damon +Erik +Gene +Horace +Jared +Jonathon +Juan +Kent +Nicholas +Quentin +Rodrick +Sylvester +Carey +Cory +Derick +Glen +Harvey +Kirk +Lamar +Mike +Preston +Robin +Tracey +Bart +Ben +Clint +Donny +Gordon +Lewis +Marion +Morris +Allan +Bradford +Cameron +Dan +Gabriel +Garry +Gilbert +Hunter +Jim +Lorenzo +Quinton +Rex +Ross +Shaun +Sherman +Trent +Archie +Brad +Dave +Emmett +Erick +Herman +Hubert +Ian +Ira +Leroy +Lloyd +Malcolm +Oscar +Randal +Terence +Vernon +Amos +Elbert +Isaac +Jarvis +Jayson +Neil +Nelson +Rodger +Rufus +Tom +Winston +Zachary +Andra +Bill +Brady +Clyde +Duane +Edgar +Everett +Jerald +Julian +Karl +Kendall +Lorenza +Matt +Max +Norris +Oliver +Percy +Roosevelt +Thaddeus +Ty +Virgil +Winfred +Xavier +Austin +Benny +Broderick +Cedrick +Cleveland +Daron +Darron +Dean +Dedric +Fernando +Forrest +Francis +Gerry +Jamey +Jamison +Jefferson +Jeremiah +Judson +Kris +Marlin +Robby +Sammie +Sedrick +Sheldon +Stanford +Tyler +Wallace +Willard +Arnold +Chuck +Clark +Darin +Darnell +Daryle +Derwin +Homer +Jarrod +Jerrold +Lowell +Loyd +Lynn +Monte +Neal +Quincy +Reggie +Reginal +Rhett +Royce +Shelby +Tim +Trenton +Van +Antoine +Augustus +Bob +Boyd +Brenton +Bryon +Cornell +Darian +Derrell +Dewey +Donovan +Felix +Garrett +Greggory +Guy +Israel +Jarrett +Kim +Lemuel +Monty +Nick +Quintin +Rayford +Roland +Roman +Ronny +Sam +Seth +Stewart +Taylor +Ted +Thad +Theodore +Will +Wilson +Al +Alfonso +Alphonso +Andrea +Angelo +Antonia +Blaine +Boris +Brain +Brannon +Courtney +Dallas +Darius +Darrick +Dedrick +Deon +Dion +Dirk +Doyle +Earlie +Eldridge +Ellis +Elton +Errol +Ervin +Hollis +Huey +Issac +Jacob +Jammie +Jeffry +Jeremey +Kennith +Kenyon +Kristopher +Kurt +Leland +Leo +Louie +Markus +Marquis +Micah +Moses +Noel +Ricardo +Richmond +Rico +Rudolph +Sebastian +Shedrick +Stephanie +Sterling +Stoney +Toney +Torrance +Trevor +Vince +Wilbur +Wiley +Willis +Michael +Christopher +James +John +William +David +Robert +Jason +Brian +Charles +Timothy +Eric +Anthony +Kevin +Richard +Kenneth +Joseph +Steven +Jeffrey +Thomas +Mark +Gregory +Jonathan +Daniel +Stephen +Patrick +Jerry +Ronald +Larry +Rodney +Paul +Terry +Willie +Jeffery +Donald +Billy +Scott +Keith +Jeremy +Marcus +Matthew +Bobby +Jimmy +Johnny +Gary +Tony +Derrick +Phillip +Tracy +Brandon +George +Bryan +Edward +Chad +Shannon +Tommy +Samuel +Danny +Shawn +Dennis +Randy +Walter +Randall +Antonio +Reginald +Andrew +Cedric +Benjamin +Carlos +Frederick +Jamie +Tyrone +Chris +Roderick +Darrell +Roger +Curtis +Micheal +Ronnie +Douglas +Sean +Frank +Travis +Bradley +Gerald +Henry +Russell +Kelvin +Carl +Shane +Barry +Joe +Marvin +Ryan +Derek +Lee +Roy +Joel +Eddie +Stanley +Calvin +Philip +Allen +Ricky +Albert +Raymond +Adam +Howard +Wesley +Troy +Arthur +Corey +Clarence +Todd +Brent +Craig +Ernest +Alan +Donnie +Byron +Demetrius +Andre +Jody +Daryl +Harold +Joey +Marlon +Maurice +Aaron +Clinton +Melvin +Stacy +Steve +Vincent +Jermaine +Fredrick +Jerome +Nathan +Terrance +Glenn +Jon +Joshua +Alvin +Clifford +Heath +Lance +Brett +Charlie +Jessie +Leon +Mitchell +Terrence +Wayne +Darren +Darryl +Jesse +Justin +Victor +Dewayne +Dexter +Jackie +Johnathan +Norman +Kelly +Kerry +Scotty +Eugene +Jeff +Jimmie +Leonard +Robin +Scottie +Bruce +Dwayne +Jack +Lawrence +Stacey +Chadwick +Don +Lonnie +Mario +Marty +Tracey +Cornelius +Edwin +Rickey +Wendell +Alonzo +Dwight +Franklin +Jay +Kyle +Warren +Alfred +Bryant +Kendrick +Ralph +Stevie +Adrian +Harry +Morris +Nathaniel +Dale +Erik +Fred +Freddie +Lewis +Peter +Sidney +Damon +Leslie +Martin +Cory +Earnest +Johnnie +Milton +Alex +Brad +Claude +Derick +Dustin +Frankie +Herman +Louis +Oscar +Perry +Quentin +Ray +Greg +Jared +Kenny +Toby +Andy +Bernard +Casey +Chester +Darius +Darrin +Duane +Garry +Grady +Lester +Preston +Alexander +Ashley +Carlton +Cary +Clay +Clifton +Earl +Hugh +Jarrod +Lloyd +Marion +Myron +Nicholas +Orlando +Terrell +Bart +Clayton +Clyde +Donny +Floyd +Jim +Juan +Julius +Kristopher +Lamar +Malcolm +Marshall +Otis +Randal +Reggie +Rex +Sherman +Theodore +Tommie +Vernon +Ben +Benny +Cecil +Erick +Felix +Gordon +Isaac +Jacob +Lorenzo +Luther +Marc +Mike +Rico +Terence +Wade +Aubrey +Bill +Cedrick +Christian +Demond +Edgar +Geoffrey +Glen +Jarvis +Julian +Kareem +Kendall +Lamont +Micah +Quincy +Randolph +Rodrick +Spencer +Tim +Timmy +Wallace +Brenton +Broderick +Carey +Clint +Gene +Jamey +Jonathon +Kent +Robbie +Virgil +Dan +Desmond +Fernando +Guy +Harvey +Herbert +Horace +Karl +Mickey +Nelson +Oliver +Roosevelt +Thaddeus +Vidal +Bennie +Brady +Darin +Darrick +Donovan +Evan +Gabriel +Jerald +Kim +Kirk +Leroy +Neal +Neil +Percy +Sammy +Antonia +Buddy +Cameron +Darron +Dedrick +Ellis +Emmett +Ian +Ira +Ivan +Owen +Reginal +Roland +Sammie +Sheldon +Sonny +Trevor +Woodrow +Xavier +Zachary +Allan +Alphonso +Arnold +Chadrick +Courtney +Darrel +Demetris +Dewey +Erwin +Francis +Garrick +Hubert +Huey +Jayson +Josh +Marco +Marlin +Miles +Monte +Raphael +Rhett +Ricardo +Robby +Rodger +Royce +Rusty +Sandy +Stuart +Sylvester +Theron +Toney +Toriano +Tyler +Will +Winston +Al +Anderson +Andrea +Barrett +Brain +Brandy +Darnell +Dedric +Deon +Dominic +Elijah +Forrest +Gerry +Jerrell +Jerrold +Lanny +Leander +Morgan +Quinton +Riley +Rod +Ross +Ruben +Rudolph +Sedrick +Shaun +Stephan +Ulysses +Wilbert +Willard +Angelo +Antoine +Antony +Avery +Bobbie +Bradford +Brant +Cleveland +Cody +Cyrus +Dallas +Dana +Dannie +Davis +Deric +Devin +Devon +Elbert +Elmer +Elton +Emanuel +Erskine +Ervin +Garland +Gavin +Gilbert +Grant +Greggory +Grover +Herschel +Hunter +Ivory +Jamison +Jarrett +Jeremiah +Ken +Kenya +Kurt +Lowell +Major +Mitch +Monty +Omar +Pete +Rayburn +Ritchie +Rufus +Sam +Sebastian +Simon +Stewart +Taylor +Ted +Teddy +Tom +Wilson +Woodie +Christopher +Michael +James +Jason +William +John +Robert +David +Brian +Charles +Kevin +Anthony +Eric +Timothy +Joseph +Thomas +Jonathan +Richard +Steven +Kenneth +Daniel +Gregory +Mark +Jeffrey +Matthew +Jerry +Larry +Patrick +Jeremy +Derrick +Willie +Donald +Jeffery +Ronald +Stephen +Marcus +Rodney +Phillip +Terry +Paul +Jimmy +Bobby +Keith +Gary +George +Johnny +Brandon +Scott +Edward +Bryan +Tracy +Billy +Chad +Shannon +Samuel +Tony +Jamie +Reginald +Shawn +Danny +Joshua +Andrew +Shane +Curtis +Benjamin +Carlos +Roderick +Darrell +Jermaine +Tommy +Adam +Cedric +Douglas +Micheal +Randall +Eddie +Randy +Roger +Bradley +Calvin +Dennis +Henry +Sean +Kelvin +Marvin +Russell +Tyrone +Antonio +Chris +Ryan +Lee +Travis +Walter +Frederick +Ronnie +Stanley +Joel +Ricky +Joe +Carl +Arthur +Barry +Corey +Derek +Harold +Nathan +Raymond +Gerald +Aaron +Allen +Roy +Frank +Joey +Jon +Justin +Terrance +Wesley +Jack +Philip +Vincent +Craig +Jerome +Lawrence +Melvin +Troy +Albert +Byron +Demetrius +Todd +Alan +Cornelius +Fredrick +Adrian +Jessie +Heath +Howard +Johnathan +Mitchell +Charlie +Ernest +Leslie +Alvin +Brent +Marlon +Stacey +Franklin +Jackie +Jimmie +Scotty +Alfred +Daryl +Donnie +Rickey +Andre +Clifford +Jody +Maurice +Peter +Wayne +Zachary +Ashley +Clarence +Jay +Leonard +Nicholas +Tracey +Jesse +Stacy +Carlton +Don +Edwin +Johnnie +Marty +Nathaniel +Chadwick +Clinton +Darren +Dewayne +Jarrod +Kerry +Brett +Eugene +Freddie +Scottie +Steve +Bruce +Darryl +Christian +Dexter +Earl +Earnest +Lonnie +Terrell +Victor +Clayton +Damon +Dustin +Dwayne +Martin +Sherman +Sidney +Toby +Warren +Alex +Cory +Darius +Frankie +Glenn +Jared +Jonathon +Kyle +Marc +Mario +Bernard +Dwight +Greg +Harry +Herman +Jacob +Jeff +Kendrick +Leon +Otis +Ralph +Roosevelt +Terrence +Alexander +Brad +Carey +Duane +Fred +Norman +Perry +Quentin +Vernon +Wendell +Andy +Bryant +Cary +Casey +Demond +Erik +Gabriel +Kendall +Lamar +Lance +Leroy +Morris +Ray +Spencer +Terence +Wade +Dana +Jerald +Julian +Kenny +Lewis +Mickey +Ron +Ben +Dale +Jamey +Jarvis +Donny +Horace +Julius +Marshall +Mike +Robin +Rodrick +Sam +Sylvester +Timmy +Alton +Bennie +Chester +Herbert +Kristopher +Lloyd +Neil +Randal +Robbie +Sammy +Theodore +Cedrick +Donnell +Elbert +Gordon +Milton +Robby +Roland +Wallace +Alonzo +Aubrey +Claude +Isaac +Karl +Kelly +Louis +Oscar +Sedrick +Seth +Shaun +Stevie +Thaddeus +Trent +Amos +Cecil +Clifton +Clint +Clyde +Darron +Dedrick +Erick +Geoffrey +Grady +Jamison +Jeremiah +Jim +Lester +Malcolm +Orlando +Preston +Quincy +Stuart +Willard +Austin +Benny +Clay +Cleveland +Dan +Floyd +Gene +Hugh +Jacques +Juan +Ken +Lamont +Lorenzo +Marlin +Matt +Micah +Neal +Rex +Ross +Tommie +Tyler +Bradford +Cameron +Delano +Dewey +Edgar +Emanuel +Glen +Harvey +Jefferson +Judson +Kenya +Myron +Oliver +Omar +Percy +Quinton +Rufus +Rusty +Shelby +Shon +Ted +Teddy +Van +Virgil +Winston +Alonza +Archie +Blake +Bryon +Courtney +Dallas +Damion +Darrick +Dave +Demetrice +Deon +Desmond +Kennith +Marquis +Reggie +Roman +Sammie +Xavier +Al +Allan +Barrett +Broderick +Buddy +Cody +Damian +Darrel +Dean +Demetric +Derick +Desi +Elijah +Ellis +Fernando +Francis +Freeman +Garrett +Garrick +General +Grant +Hunter +Ira +Israel +Jarrett +Jerrell +Kent +Kirk +Louie +Luther +Major +Marion +Napoleon +Nelson +Nick +Owen +Ramon +Rocky +Royce +Shedrick +Sterling +Taylor +Tim +Trey +Waymon +Will +Yancey +Abdul +Angelo +Antoine +Avery +Brady +Chance +Chuck +Colin +Darnell +Daron +Dominic +Drew +Dusty +Eldridge +Felix +Forrest +Germaine +Guy +Hubert +Ike +Irvin +Jammie +Jasper +Jayson +Jose +Josh +Junior +Karlos +Lindsey +Lowell +Mack +Manuel +Mason +Max +Murray +Noah +Norris +Reginal +Ricardo +Sheldon +Sonny +Stan +Taurus +Theron +Torrance +Tremayne +Tyrus +Wilbert +Willis +Woodrow +Christopher +Michael +James +Jason +John +William +David +Robert +Brian +Anthony +Charles +Joseph +Kevin +Timothy +Eric +Jeremy +Steven +Jeffrey +Kenneth +Thomas +Richard +Daniel +Jonathan +Mark +Matthew +Gregory +Patrick +Marcus +Jeffery +Jerry +Johnny +Derrick +Larry +Stephen +Billy +Bobby +Rodney +Donald +Brandon +Terry +Gary +Keith +Paul +Phillip +Willie +Ronald +Joshua +Chad +George +Jimmy +Bryan +Benjamin +Samuel +Shannon +Andrew +Scott +Carlos +Edward +Tony +Shawn +Adam +Bradley +Dennis +Reginald +Danny +Ryan +Jamie +Kelvin +Roderick +Curtis +Tracy +Corey +Antonio +Randall +Tommy +Micheal +Shane +Cedric +Ronnie +Joel +Travis +Tyrone +Eddie +Frederick +Henry +Chris +Walter +Russell +Douglas +Nathan +Ricky +Roger +Randy +Raymond +Aaron +Todd +Calvin +Carl +Maurice +Derek +Barry +Gerald +Roy +Allen +Sean +Andre +Wesley +Darrell +Frank +Jon +Lee +Heath +Terrance +Demetrius +Marvin +Harold +Joe +Jerome +Justin +Clarence +Brad +Jermaine +Adrian +Joey +Albert +Bruce +Kerry +Arthur +Howard +Stacy +Chadwick +Troy +Ashley +Brett +Charlie +Donnie +Lawrence +Philip +Marlon +Stacey +Byron +Craig +Alan +Cornelius +Brent +Stanley +Damon +Jody +Rickey +Scottie +Darryl +Daryl +Franklin +Jacob +Jarrod +Nakia +Nicholas +Norman +Eugene +Fredrick +Jackie +Jesse +Mitchell +Terrence +Clifford +Leon +Bernard +Darren +Jessie +Johnathan +Leslie +Melvin +Bryant +Ernest +Mario +Bradford +Clinton +Gabriel +Jimmie +Scotty +Steve +Vincent +Alexander +Alfred +Dustin +Jack +Nathaniel +Cory +Dexter +Earnest +Jared +Warren +Casey +Clifton +Dewayne +Don +Julius +Kelly +Leonard +Lewis +Ralph +Wayne +Kristopher +Dwight +Kenny +Peter +Victor +Wade +Alex +Alvin +Edwin +Lorenzo +Martin +Zachary +Ben +Frankie +Jamey +Lamar +Lance +Louis +Marc +Quentin +Dale +Darius +Fred +Herbert +Kendall +Kendrick +Leroy +Quincy +Terrell +Theodore +Timmy +Tommie +Andy +Carlton +Cecil +Clint +Courtney +Jarvis +Percy +Rodrick +Sidney +Toby +Vernon +Will +Christian +Glenn +Harry +Jeff +Oscar +Stuart +Alonzo +Clay +Clayton +Dominic +Dwayne +Earl +Freddie +Herman +Lamont +Marty +Micah +Perry +Ray +Tracey +Cedrick +Demond +Duane +Greg +Jay +Johnnie +Jonathon +Karl +Kyle +Lonnie +Mickey +Orlando +Rusty +Terence +Tyler +Wendell +Cameron +Carey +Dewey +Erick +Isaac +Juan +Roosevelt +Seth +Telly +Blake +Clyde +Derick +Erik +Forrest +Jim +Josh +Julian +Lester +Robbie +Shaun +Spencer +Stevie +Trenton +Van +Bill +Carlo +Chester +Edgar +Glen +Jeremiah +Kent +Malcolm +Marion +Milton +Morris +Oliver +Omar +Otis +Quinton +Reggie +Ron +Stewart +Sylvester +Tom +Trent +Aubrey +Damian +Damien +Dan +Darian +Darrel +Darron +Desmond +Donny +Felix +Geoffrey +Ian +Jamison +Jerrod +Judson +Leo +Marco +Marlin +Myron +Noel +Preston +Rodger +Roland +Teddy +Thaddeus +Trey +Alton +Broderick +Claude +Coy +Damion +Dana +Darrin +Deangelo +Fernando +Floyd +Gordon +Issac +Ivory +Jerald +Jeromy +Kenyatta +Luke +Luther +Mack +Marshall +Rex +Rico +Robin +Ross +Sedrick +Ted +Tim +Trevor +Wallace +Wilbert +Winston +Amos +Antoine +Antonia +Bennie +Benny +Brannon +Cary +Darnell +Darrick +Elbert +Gene +Grady +Harvey +Hugh +Jarrett +Ken +Kenyon +Lloyd +Lorenza +Lucas +Matt +Mike +Neal +Nick +Randolph +Sam +Sammy +Virgil +Woodrow +Xavier +Al +Archie +Berry +Cleveland +Colby +Dante +Dean +Demetris +Deon +Doyle +Ellis +Emmett +Frederic +Gerry +Horace +Ira +Jake +Jefferson +Joesph +Karlos +Kirk +Kris +Lebarron +Markus +Shon +Theron +Torrey +Vashon +Waylon +Abdul +Adrain +Angelo +Avery +Bart +Bertram +Brooks +Carson +Chuck +Clark +Cornell +Dalton +Darin +Dave +Denny +Derric +Deshawn +Desi +Devin +Dion +Dylan +Elijah +Garrick +Garry +Gavin +Grant +Grover +Harrison +Hubert +Jacky +Jammie +Junior +Kareem +Lindsey +Lowell +Mac +Marcellus +Marrio +Mason +Moses +Neil +Nicky +Noah +Orlanda +Royce +Sherman +Tammy +Tavares +Torrance +Ty +Tyrus +Zackary +Michael +Christopher +James +Jason +William +John +Robert +David +Brian +Jeremy +Joseph +Charles +Kevin +Anthony +Eric +Timothy +Jonathan +Daniel +Richard +Matthew +Thomas +Steven +Jeffrey +Mark +Marcus +Kenneth +Stephen +Gregory +Patrick +Larry +Brandon +Joshua +Terry +Jerry +Ronald +Donald +Phillip +Johnny +Rodney +Chad +Jeffery +Bradley +Willie +Derrick +Paul +Scott +Jimmy +Gary +Benjamin +Jamie +Shannon +Antonio +Bryan +Tony +Billy +Adam +Edward +Samuel +Andrew +Bobby +George +Keith +Shawn +Justin +Reginald +Danny +Ryan +Roderick +Walter +Tommy +Travis +Russell +Corey +Dennis +Kelvin +Randall +Shane +Micheal +Douglas +Frederick +Curtis +Nathan +Aaron +Cedric +Roger +Joel +Carlos +Randy +Tyrone +Wesley +Henry +Marvin +Barry +Sean +Arthur +Eddie +Roy +Joe +Raymond +Ronnie +Chris +Derek +Heath +Terrance +Allen +Calvin +Demetrius +Jesse +Alan +Maurice +Ricky +Todd +Darrell +Donnie +Carl +Frank +Tracy +Brent +Jermaine +Philip +Clifton +Jon +Lee +Brad +Clarence +Harold +Albert +Gerald +Adrian +Jacob +Casey +Fredrick +Jerome +Andre +Byron +Chadwick +Scotty +Craig +Troy +Dustin +Kerry +Nathaniel +Clinton +Darryl +Jack +Stacy +Alvin +Jody +Johnathan +Mitchell +Terrence +Vincent +Howard +Melvin +Jessie +Marlon +Rickey +Clayton +Jonathon +Leonard +Victor +Ashley +Charlie +Damon +Don +Jared +Mario +Nicholas +Scottie +Bruce +Cory +Glenn +Lonnie +Nakia +Norman +Stanley +Warren +Zachary +Brett +Clifford +Cornelius +Joey +Marty +Jay +Lance +Steve +Ernest +Leon +Quincy +Dale +Bernard +Cecil +Earl +Jackie +Jimmie +Kyle +Wayne +Cameron +Earnest +Eugene +Franklin +Harry +Kendrick +Leroy +Stacey +Toby +Alexander +Andy +Carlton +Freddie +Kristopher +Lawrence +Micah +Ralph +Darius +Darren +Martin +Peter +Bryant +Clint +Daryl +Edwin +Geoffrey +Greg +Jim +Lester +Orlando +Alonzo +Dewayne +Gabriel +Spencer +Terrell +Courtney +Jeff +Juan +Kenny +Lewis +Louis +Malcolm +Wade +Wendell +Alex +Damien +Dexter +Dwight +Fred +Herman +Jamey +Jarrod +Jeremiah +Johnnie +Lorenzo +Otis +Quentin +Robbie +Rodrick +Sedrick +Seth +Sidney +Stevie +Tavares +Telly +Terence +Alfred +Andrea +Antonia +Cedrick +Clay +Julian +Leslie +Preston +Shelby +Dan +Derick +Erik +Frankie +Marshall +Mickey +Perry +Robin +Roosevelt +Ross +Sherman +Stuart +Teddy +Timmy +Ben +Carey +Demond +Duane +Herbert +Hugh +Morris +Ray +Tyler +Alton +Benny +Bradford +Clyde +Darrick +Dwayne +Forrest +Horace +Jamison +Julius +Kelly +Marc +Marion +Milton +Neil +Xavier +Grady +Ian +Jamal +Jarvis +Kent +Leo +Luther +Oliver +Omar +Sylvester +Thaddeus +Tommie +Torrance +Trent +Vernon +Will +Bill +Blake +Cary +Chester +Dana +Darrin +Desmond +Donny +Elbert +Gordon +Grant +Isaac +Jayson +Kenyatta +Marlin +Randolph +Ron +Sam +Theodore +Tracey +Virgil +Wallace +Andra +Aubrey +Avery +Bennie +Brock +Chadrick +Christian +Claude +Cleveland +Edgar +Edmond +Felix +Glen +Glendon +Hubert +Ivan +Jackson +Jammie +Jefferson +Judson +Kenya +Lamar +Moses +Myron +Neal +Nick +Oscar +Quinton +Sammy +Shelton +Tyson +Archie +Austin +Benji +Dion +Emanuel +Ethan +Everett +Floyd +Garrett +Garry +Harvey +Ira +Jasper +Jerrod +Josh +Kendall +Kris +Lloyd +Lowell +Mack +Monty +Noel +Percy +Reggie +Renardo +Roland +Rusty +Sammie +Stephan +Stewart +Titus +Tremayne +Allan +Antwan +Bart +Brady +Broderick +Chauncey +Chuck +Cody +Darrel +Demetrice +Deon +Emmanuel +Gene +Gerard +Gerry +Jaime +Jonas +Karl +Kelley +Kennith +Kenyon +Lashawn +Lucas +Luke +Mathew +Matt +Miles +Nikia +Noah +Rashad +Rayford +Reco +Rocky +Rufus +Shaun +Simon +Tarus +Ulysses +Van +Wilbert +Willard +Winston +Amos +Angelo +Antoine +Brannon +Bryce +Caleb +Dallas +Darnell +Darron +Decarlos +Dedric +Dedrick +Dejuan +Demetris +Devin +Dewey +Dylan +Elton +Emmett +Erick +Fernando +Gilbert +Guy +Jacques +Jarrett +Jerald +Jeremey +Jeromy +Jerrell +Jose +Kareem +Kirby +Kirk +Kristian +Lamont +Lane +Markus +Marquis +Nelson +Orlanda +Owen +Prentice +Randell +Rex +Rico +Rodger +Royce +Sheddrick +Solomon +Sonny +Terrill +Thad +Tory +Trenton +Vinson +Willis +Michael +Christopher +James +Jason +John +William +David +Robert +Jeremy +Brian +Charles +Joseph +Kevin +Timothy +Eric +Jonathan +Anthony +Matthew +Daniel +Thomas +Kenneth +Richard +Joshua +Steven +Marcus +Stephen +Brandon +Jeffrey +Mark +Gregory +Larry +Derrick +Patrick +Chad +Jerry +Adam +Benjamin +Andrew +Rodney +Billy +Bradley +Antonio +Donald +Paul +Willie +Phillip +Ronald +Terry +Johnny +Gary +Samuel +Edward +Scott +Carlos +Tony +Jamie +Jeffery +Jimmy +Bobby +Ryan +Shannon +Justin +Walter +Keith +Corey +George +Cedric +Shawn +Travis +Bryan +Nathan +Reginald +Kelvin +Wesley +Randall +Tommy +Douglas +Frederick +Randy +Roderick +Tyrone +Danny +Raymond +Arthur +Barry +Henry +Aaron +Demetrius +Eddie +Ronnie +Shane +Curtis +Joe +Calvin +Darrell +Dennis +Jermaine +Dustin +Terrance +Jacob +Lee +Roger +Carl +Fredrick +Joel +Joey +Chris +Gerald +Russell +Derek +Philip +Todd +Jesse +Micheal +Heath +Roy +Adrian +Alan +Allen +Brent +Donnie +Harold +Sean +Albert +Clinton +Gabriel +Jerome +Ricky +Jon +Maurice +Zachary +Marvin +Chadwick +Cornelius +Craig +Johnathan +Rickey +Brad +Dewayne +Frank +Nathaniel +Andre +Casey +Cory +Daryl +Terrence +Brett +Marlon +Jeremiah +Jody +Tracy +Clayton +Darryl +Jackie +Jared +Jessie +Kyle +Stanley +Ernest +Bruce +Byron +Troy +Dwight +Lance +Mario +Melvin +Clifton +Jack +Kendrick +Martin +Nicholas +Cameron +Clarence +Kerry +Louis +Mitchell +Quincy +Clifford +Franklin +Jay +Scotty +Don +Earnest +Glenn +Jamey +Terence +Wade +Warren +Clint +Leon +Victor +Alfred +Ashley +Courtney +Damon +Howard +Lawrence +Marty +Perry +Ralph +Seth +Terrell +Darius +Dexter +Earl +Johnnie +Leslie +Marshall +Micah +Andy +Carlton +Charlie +Jarvis +Julius +Kristopher +Leonard +Lewis +Sherman +Stacy +Vincent +Clay +Donny +Dwayne +Eugene +Morris +Bryant +Geoffrey +Jimmie +Lonnie +Mickey +Peter +Steve +Bradford +Derick +Grant +Harry +Juan +Lorenzo +Otis +Toby +Blake +Jarrod +Julian +Quentin +Alvin +Dale +Jamison +Lester +Quinton +Robin +Rocky +Scottie +Spencer +Alexander +Allan +Aubrey +Damian +Dana +Darren +Herbert +Isaac +Jonathon +Leroy +Milton +Sedrick +Stacey +Tyler +Alex +Alton +Benny +Bernard +Cecil +Edwin +Garry +Kenyatta +Ray +Sheldon +Tracey +Wayne +Ben +Brannon +Clyde +Cody +Damien +Decarlos +Erik +Freddie +Ian +Jeff +Josh +Kendall +Kenyon +Leo +Marc +Mathew +Norman +Robbie +Sylvester +Thaddeus +Darron +Demetrice +Desmond +Floyd +Frankie +Greg +Herman +Horace +Hunter +Jim +Kenya +Malcolm +Noah +Omar +Orlando +Oscar +Rico +Roosevelt +Seneca +Sidney +Tommie +Vernon +Broderick +Buddy +Caleb +Dedrick +Dewey +Ervin +Gilbert +Glen +Ivan +Jayson +Kelsey +Kenny +Percy +Preston +Rodrick +Torrey +Trenton +Virgil +Wendell +Xavier +Andrea +Angelo +Archie +Brady +Cedrick +Chester +Connie +Cortney +Dan +Demond +Derrell +Ellis +Emanuel +Emmett +Forrest +Harvey +Jose +Karl +Kelly +Marion +Ramon +Roland +Rufus +Sammy +Stuart +Taurus +Tavares +Taylor +Telly +Timmy +Waylon +Brandy +Cary +Darrius +Dave +Demarcus +Donnell +Elbert +Elijah +Evan +Gene +Grady +Guy +Issac +Jammie +Lloyd +Luke +Mike +Nakia +Neal +Reggie +Rodriquez +Ross +Royce +Shedrick +Theodore +Trent +Trevor +Tyson +Wilbert +Al +Antoine +Antonia +Antwan +Bennie +Bret +Carey +Chadrick +Cleveland +Darnell +Darrin +Deandre +Felix +Hugh +Jarrett +Jeromy +Joesph +Johnathon +Judson +Kelton +Kenric +Lamont +Landon +Luther +Manuel +Marvis +Quincey +Randal +Raphael +Shelby +Starsky +Stevie +Stewart +Ted +Tom +Wallace +Will +Woodrow +Alexis +Alfonzo +Amanda +Avery +Barrett +Benji +Bennett +Bill +Braxton +Brenton +Brock +Brooks +Carter +Darrick +Dedric +Dejuan +Demetris +Demetrus +Detrick +Dominick +Donovan +Drew +Dusty +Edgar +Erick +Fred +Garrick +Gordon +Harley +Hollis +Ira +Jackson +Jacques +Jake +Jamal +Jammy +Jerrod +Kareem +Korey +Kurt +Levi +Lindsey +Mack +Marco +Nelson +Nigel +Noel +Oliver +Randolph +Reuben +Rex +Ricardo +Rodregus +Ronny +Rusty +Sam +Shaun +Tarus +Teddy +Titus +Tobias +Toriano +Torrance +Vance +Whitney +Willard +Christopher +James +Jason +Michael +William +John +David +Jeremy +Robert +Kevin +Joseph +Charles +Brian +Timothy +Joshua +Matthew +Jonathan +Daniel +Anthony +Thomas +Eric +Steven +Richard +Kenneth +Derrick +Brandon +Gregory +Mark +Jeffrey +Patrick +Marcus +Stephen +Benjamin +Adam +Bradley +Wesley +Donald +Terry +Andrew +Willie +Antonio +Larry +Jerry +Phillip +Corey +Ryan +Billy +Ronald +Chad +Jeffery +Bobby +Johnny +Shannon +Paul +Rodney +Edward +Nathan +George +Samuel +Justin +Gary +Bryan +Jimmy +Kelvin +Scott +Jamie +Keith +Tony +Carlos +Travis +Cedric +Roderick +Walter +Aaron +Randall +Reginald +Jacob +Shawn +Cory +Dennis +Tommy +Douglas +Russell +Jermaine +Ronnie +Randy +Eddie +Shane +Curtis +Terrance +Micheal +Jeremiah +Demetrius +Roger +Arthur +Andre +Jesse +Joel +Darrell +Nicholas +Maurice +Barry +Ricky +Derek +Brent +Henry +Lee +Raymond +Sean +Craig +Casey +Joe +Joey +Jon +Terrence +Todd +Tyrone +Adrian +Alan +Calvin +Dustin +Danny +Frederick +Roy +Brad +Fredrick +Harold +Allen +Frank +Stanley +Chris +Jody +Ernest +Kristopher +Marvin +Clinton +Cornelius +Gerald +Jerome +Courtney +Dewayne +Jared +Andy +Kendrick +Nathaniel +Quincy +Zachary +Jessie +Carl +Johnathan +Albert +Cameron +Chadwick +Heath +Brett +Lance +Rickey +Ashley +Gabriel +Clarence +Daryl +Marlon +Micah +Philip +Scotty +Howard +Lawrence +Tavares +Clifford +Clifton +Damon +Jackie +Leon +Mario +Byron +Clayton +Jack +Jarrod +Kerry +Shaun +Troy +Carlton +Jay +Peter +Alexander +Bruce +Dexter +Melvin +Steve +Victor +Warren +Bradford +Kyle +Lewis +Alvin +Charlie +Clint +Fred +Glenn +Leonard +Tracy +Vincent +Darius +Edwin +Freddie +Herbert +Kelly +Leslie +Norman +Quentin +Seth +Desmond +Donnie +Dwayne +Jonathon +Wayne +Alfred +Darryl +Eugene +Louis +Mitchell +Rodrick +Terrell +Cecil +Damion +Devin +Dwight +Jimmie +Johnnie +Kenny +Lonnie +Marty +Mickey +Orlando +Ralph +Spencer +Stuart +Don +Earl +Marshall +Toby +Alex +Broderick +Lamar +Otis +Wade +Bernard +Blake +Bryant +Earnest +Julius +Omar +Preston +Ray +Scottie +Sherman +Stacy +Carey +Clay +Elijah +Evan +Franklin +Isaac +Jamey +Juan +Milton +Robin +Vernon +Alonzo +Alton +Demarcus +Glen +Grady +Herman +Kenyatta +Marc +Martin +Myron +Rashad +Rico +Sidney +Terence +Tommie +Aubrey +Cody +Dale +Damien +Dedrick +Derick +Donny +Frankie +Jarvis +Johnathon +Kunta +Leroy +Lester +Luther +Marco +Marquis +Noah +Quinton +Reggie +Rocky +Roosevelt +Ted +Tyler +Alfonso +Cary +Geoffrey +Gordon +Harry +Horace +Ian +Jamal +Karl +Lorenzo +Marion +Sammy +Sylvester +Willis +Antonia +Ben +Cedrick +Damian +Dan +Darren +Deandre +Edmund +Greg +Jim +Korey +Matt +Morris +Roland +Rory +Taylor +Torrey +Trent +Trevor +Xavier +Avery +Bill +Brock +Caleb +Christian +Darrick +Delvin +Demetric +Demetrice +Erik +Floyd +Harvey +Jarrett +Kendall +Lamont +Levar +Lloyd +Luke +Neil +Percy +Robbie +Stevie +Antoine +Austin +Bart +Chester +Clark +Clyde +Drew +Emanuel +Erick +Garrett +Garry +Jayson +Jeff +Jeromy +Jonah +Julian +Kirk +Mike +Neal +Sedrick +Shelton +Theodore +Waylon +Wendell +Will +Antwan +Brannon +Chuck +Cornelious +Cortney +Dallas +Darrius +Dedric +Duane +Gene +Harrison +Hugh +Hunter +Ivan +Jackson +Jerald +Jerrod +Josh +Judson +Kenya +Kristofer +Lavar +Lesley +Lucas +Markus +Mathew +Noel +Robby +Ruben +Rusty +Teddy +Thaddeus +Timmy +Torrance +Trenton +Adrain +Al +Andrea +Brady +Brooks +Buddy +Chauncey +Cleveland +Darrel +Dave +Deon +Dewey +Edmond +Elliott +Elmer +Everett +Francis +Freddy +Grant +Hayward +Hubert +Jacques +Jamison +Jammie +Kareem +Kris +Landon +Leo +Malcolm +Miguel +Morgan +Napoleon +Nelson +Oliver +Ramon +Randal +Reginal +Ricardo +Royce +Rufus +Shelby +Stacey +Taurus +Torey +Tory +Tremayne +Wilson +Winston +Amos +Anderson +Angelo +Arnold +Artie +Bakari +Benji +Benny +Bret +Brook +Chico +Claude +Correy +Dana +Dante +Darian +Darnell +Darrin +Davy +Dejuan +Delvecchio +Demarco +Demetris +Demetruis +Demond +Dominic +Donnell +Elbert +Elliot +Ellis +Elton +Emmett +Errick +Ethan +Forrest +Garland +Gilbert +Guy +Ira +Irvin +Jake +Jamel +Jamil +Jerrell +Junior +Kavin +Kedric +Keldrick +Kurt +Labarron +Lamarcus +Marlin +Marques +Miles +Nicky +Perry +Rhett +Rodriquez +Ron +Sam +Simon +Tito +Tom +Tremaine +Wallace +Wilbert +James +Christopher +Michael +Jason +John +William +Robert +David +Jeremy +Joshua +Timothy +Joseph +Brian +Matthew +Kevin +Charles +Jonathan +Anthony +Daniel +Steven +Richard +Eric +Thomas +Brandon +Adam +Marcus +Kenneth +Jeffrey +Nicholas +Stephen +Derrick +Benjamin +Justin +Mark +Andrew +Patrick +Bradley +Willie +Larry +Donald +Corey +Paul +Phillip +Gregory +Wesley +Ryan +Antonio +Chad +Ronald +Jeffery +Rodney +Samuel +Terry +Jerry +George +Jimmy +Johnny +Nathan +Gary +Bobby +Keith +Shannon +Billy +Edward +Bryan +Shawn +Aaron +Cedric +Tony +Curtis +Demetrius +Scott +Travis +Jamie +Kelvin +Reginald +Carlos +Ricky +Walter +Jacob +Joel +Dennis +Randall +Roderick +Russell +Adrian +Derek +Douglas +Frederick +Cory +Maurice +Roger +Shane +Casey +Kristopher +Randy +Philip +Shaun +Tommy +Jeremiah +Joey +Carl +Dustin +Jared +Todd +Gerald +Henry +Danny +Lee +Joe +Jon +Alan +Allen +Barry +Jesse +Micheal +Terrance +Zachary +Heath +Melvin +Ronnie +Roy +Andre +Courtney +Darrell +Dewayne +Calvin +Tyrone +Ashley +Marvin +Nathaniel +Alvin +Clinton +Eddie +Harold +Johnathan +Brent +Damon +Jermaine +Raymond +Terrence +Clarence +Howard +Jerome +Clifton +Donnie +Kendrick +Cornelius +Jay +Sean +Craig +Jessie +Rickey +Jody +Lawrence +Peter +Stanley +Arthur +Ernest +Troy +Brad +Chadwick +Charlie +Fredrick +Albert +Gabriel +Kerry +Lance +Damien +Warren +Clifford +Frank +Franklin +Herman +Martin +Vincent +Bruce +Chris +Erik +Kyle +Lucas +Steve +Byron +Kenny +Leonard +Brett +Clayton +Daryl +Desmond +Earl +Jack +Jarrod +Marlon +Norman +Quincy +Scotty +Cecil +Darryl +Dexter +Marshall +Mitchell +Alex +Cameron +Darren +Derick +Dwight +Leon +Edwin +Jarvis +Lonnie +Mario +Wayne +Alexander +Lewis +Marco +Terrell +Thaddeus +Alfred +Andy +Austin +Clint +Dwayne +Jonathon +Orlando +Preston +Rodrick +Toby +Blake +Bryant +Carlton +Cedrick +Eugene +Glenn +Jackie +Julius +Quentin +Ray +Seth +Don +Fred +Isaac +Jake +Jamey +Jimmie +Lester +Micah +Rusty +Scottie +Tavares +Torrey +Clyde +Darius +Elijah +Evan +Frankie +Herbert +Josh +Louis +Ralph +Terence +Deandre +Delvin +Earnest +Juan +Lamar +Quinton +Stuart +Tracy +Victor +Alonzo +Antoine +Ben +Dallas +Demarcus +Demetris +Forrest +Geoffrey +Ian +Kelly +Malcolm +Milton +Morris +Robin +Tyler +Adrain +Caleb +Chester +Christian +Claude +Demetric +Hunter +Mack +Marty +Otis +Spencer +Stevie +Taurus +Vernon +Antonia +Bennie +Darrick +Demarco +Erick +Gordon +Ivan +Kendall +Landon +Oscar +Percy +Perry +Roosevelt +Sedrick +Stacey +Bernard +Broderick +Cortney +Dale +Damian +Damion +Devin +Harvey +Johnathon +Julian +Kenyatta +Kirk +Leslie +Lorenzo +Marc +Marion +Marques +Marquis +Myron +Omar +Robbie +Roland +Sherman +Theodore +Timmy +Waylon +Xavier +Ahmad +Andra +Angelo +Aubrey +Brannon +Dan +Demetrice +Demond +Donell +Donny +Ethan +Everett +Glen +Greg +Jerrod +Johnnie +Jordan +Kenyon +Kurt +Luke +Marlin +Mickey +Neal +Nelson +Randal +Reggie +Rufus +Sidney +Tommie +Toney +Torey +Trevor +Tyson +Wade +Alton +Andrea +Brock +Bryon +Cary +Chadrick +Cleveland +Colin +Darnell +Darrius +Dedrick +Devon +Dewey +Duane +Edmond +Edmund +Elton +Ervin +Erwin +Felix +Gene +Harry +Jerald +Judson +Kedrick +Leo +Leroy +Lionel +Lloyd +Mike +Norris +Ramon +Rhett +Sammie +Tarus +Tavaris +Tory +Trenton +Wallace +Wilson +Al +Antione +Antwan +Archie +Bart +Beau +Benny +Bradford +Buddy +Carey +Cody +Deric +Dominic +Dominick +Donta +Drew +Emanuel +Fernando +Floyd +Francis +Freddie +Garrett +Garry +Gavin +Graham +Horace +Jamison +Jammie +Jarred +Jayson +Jeff +Jerrell +Jim +Jose +Karl +Kenji +Kenya +Lafayette +Lamont +Luther +Mathew +Matt +Morgan +Neil +Nicky +Oliver +Quintin +Rashad +Rex +Rico +Royce +Sam +Sammy +Shedrick +Tobias +Torrance +Wendell +Will +Winston +Amos +Anton +Antuan +Avery +Clay +Dana +Darin +Darrin +Dean +Deon +Desmon +Draper +Edgar +Emmanuel +Ezzard +Gerry +Grady +Harrison +Hollis +Hugh +Jabari +Jamar +Jereme +Kristoffer +Lamarcus +Marcel +Nathanial +Nickolas +Nigel +Noah +Quenton +Reginal +Robby +Ross +Simon +Solomon +Tavarus +Terance +Tracey +Tucker +Tyron +Van +Whitney +Zachery +Zackery +Christopher +Michael +James +Jason +John +Jeremy +William +David +Robert +Joshua +Joseph +Matthew +Brian +Charles +Timothy +Jonathan +Kevin +Daniel +Anthony +Eric +Adam +Brandon +Thomas +Nicholas +Richard +Steven +Justin +Patrick +Kenneth +Jeffrey +Marcus +Derrick +Bradley +Benjamin +Stephen +Gregory +Samuel +Travis +Mark +Larry +Andrew +Antonio +Willie +Wesley +Phillip +Chad +Terry +Ryan +Donald +Corey +Nathan +Johnny +Bobby +Edward +Jeffery +Jerry +Gary +Paul +George +Jacob +Keith +Billy +Rodney +Ronald +Jamie +Scott +Jimmy +Roderick +Tony +Bryan +Aaron +Kelvin +Reginald +Dustin +Jesse +Cedric +Curtis +Walter +Derek +Frank +Ricky +Shawn +Dennis +Randall +Randy +Zachary +Demetrius +Tommy +Russell +Shannon +Eddie +Frederick +Jared +Micheal +Maurice +Carlos +Joel +Kyle +Mario +Shaun +Terrance +Danny +Cory +Douglas +Jermaine +Calvin +Lee +Marvin +Henry +Raymond +Allen +Clinton +Joe +Roger +Todd +Tyrone +Shane +Barry +Casey +Darrell +Fredrick +Johnathan +Kristopher +Adrian +Brent +Harold +Jerome +Melvin +Philip +Victor +Andre +Jeremiah +Joey +Jon +Scotty +Alan +Ashley +Carl +Darius +Kendrick +Clarence +Arthur +Brad +Courtney +Heath +Sean +Damien +Jessie +Mitchell +Stanley +Quincy +Ronnie +Cornelius +Lance +Nathaniel +Terrence +Troy +Warren +Lucas +Albert +Roy +Chadwick +Erik +Seth +Charlie +Chris +Clifton +Damon +Donnie +Franklin +Alexander +Desmond +Jonathon +Lawrence +Craig +Ernest +Byron +Jack +Jay +Micah +Rickey +Alex +Darryl +Gabriel +Kerry +Vincent +Alvin +Brett +Bruce +Julius +Clifford +Dewayne +Dwight +Martin +Clayton +Jody +Kenny +Leon +Terrell +Alfred +Andy +Isaac +Tyler +Cameron +Derick +Gerald +Glenn +Jarvis +Peter +Scottie +Clint +Daryl +Leslie +Lewis +Marlon +Marshall +Quinton +Steve +Terence +Thaddeus +Wayne +Bryant +Cecil +Edwin +Eugene +Howard +Leonard +Tavares +Bernard +Herbert +Herman +Jamey +Lonnie +Ray +Carey +Dedrick +Don +Freddie +Jimmie +Louis +Marion +Perry +Ralph +Rocky +Rodrick +Toby +Dexter +Fred +Robin +Cody +Ian +Jarrod +Kendall +Luke +Otis +Preston +Antwan +Ben +Blake +Clyde +Darren +Dwayne +Earnest +Jerrod +Kelly +Landon +Lorenzo +Marty +Mathew +Orlando +Quentin +Rusty +Sidney +Waylon +Dale +Demarcus +Donny +Geoffrey +Johnnie +Kirk +Lloyd +Norman +Robbie +Sherman +Trenton +Willis +Alonzo +Austin +Brock +Carlton +Cedrick +Christian +Demario +Emanuel +Frankie +Grant +Harvey +Jackie +Josh +Julian +Lamar +Moses +Rodriquez +Roosevelt +Stuart +Vernon +Xavier +Ahmad +Aubrey +Benny +Broderick +Chadrick +Darrius +Deandre +Detrick +Dominic +Duane +Earl +Elijah +Ellis +Erick +Harry +Jordan +Juan +Noah +Rayford +Reggie +Robby +Taylor +Trevor +Wendell +Allan +Antonia +Archie +Bennie +Bradford +Dan +Demetric +Edmond +Ethan +Evan +Forrest +Garrett +Karl +Leroy +Logan +Luther +Malcolm +Marquis +Milton +Myron +Neil +Omar +Randal +Ron +Simon +Theodore +Tremayne +Willard +Antoine +Beau +Brannon +Caleb +Claude +Cleveland +Cortney +Devin +Floyd +Greg +Horace +Jackson +Jamal +Jamar +Jasper +Jayson +Jeff +Jeremie +Marc +Oliver +Ross +Spencer +Wade +Whitney +Will +Alexis +Alton +Angelo +Antwain +Brady +Brendan +Chester +Clark +Damion +Darrick +Dedric +Delvin +Derrell +Donnell +Edgar +Fredric +Garry +Glen +Gordon +Hunter +Issac +Jarod +Jefferson +Joesph +Johnathon +Kurt +Lamont +Lester +Matt +Neal +Owen +Parker +Percy +Rex +Ricardo +Rufus +Stacey +Stacy +Torrey +Tracy +Trent +Tyree +Van +Zackary +Andrea +Branden +Colin +Cortez +Dallas +Darian +Darnell +Deangelo +Demetris +Deon +Donta +Dusty +Elton +Emmanuel +Emmett +Fernando +Francis +Guy +Hugh +Ira +Jake +Jammie +Jarrett +Jerald +Jim +Jonah +Judson +Kareem +Kedrick +Kenya +Kenyatta +Markus +Mickey +Morgan +Myles +Oscar +Renaldo +Rico +Rodger +Sammie +Sammy +Stewart +Tavaris +Ted +Tory +Zachery +Anderson +Antwon +Ashford +Bradly +Brenton +Bret +Chauncey +Coleman +Cordell +Dameon +Dandre +Dante +Dejuan +Demetruis +Demond +Dereck +Draper +Elbert +Eli +Elliott +Elvin +Ezekiel +Frederic +Gavin +Gilbert +Grady +Hank +Henderson +Hubert +Ivan +Jennifer +Jereme +Jeromy +Kalvin +Keon +Lamarcus +Lashawn +Lionel +Marlin +Morris +Murray +Nelson +Nicholaus +Nicolas +Rashad +Reginal +Roland +Sam +Sedrick +Teddy +Tim +Timmy +Tobias +Tommie +Torrance +Tremaine +Tristan +Ulysses +Virgil +Christopher +Michael +James +Jason +Joshua +William +John +David +Jeremy +Robert +Jonathan +Joseph +Matthew +Daniel +Brian +Timothy +Charles +Justin +Kevin +Brandon +Eric +Thomas +Anthony +Adam +Steven +Richard +Nicholas +Kenneth +Derrick +Patrick +Andrew +Benjamin +Jeffrey +Stephen +Bradley +Marcus +Ryan +Travis +Samuel +Paul +Antonio +Mark +Willie +Larry +Wesley +Chad +Donald +Phillip +Nathan +Dustin +Keith +Ronald +Corey +Gregory +Terry +Gary +Derek +Jeffery +Edward +Jerry +Billy +Rodney +Bobby +Jacob +Johnny +Aaron +Bryan +Curtis +Jamie +Tony +George +Scott +Reginald +Jimmy +Jared +Shawn +Randall +Roderick +Jesse +Walter +Carlos +Russell +Courtney +Jeremiah +Cedric +Eddie +Henry +Demetrius +Randy +Raymond +Johnathan +Micheal +Carl +Shaun +Lee +Casey +Clinton +Douglas +Kelvin +Zachary +Danny +Mario +Calvin +Ronnie +Jermaine +Ricky +Sean +Tommy +Alan +Brent +Dennis +Adrian +Frederick +Terrance +Frank +Maurice +Nathaniel +Joe +Kendrick +Shannon +Joey +Allen +Byron +Darrell +Joel +Philip +Andre +Barry +Cory +Shane +Jonathon +Arthur +Lance +Marvin +Erik +Tyrone +Jon +Todd +Jerome +Peter +Roy +Gabriel +Gerald +Jessie +Ashley +Clint +Melvin +Albert +Brad +Fredrick +Terrence +Darius +Kyle +Roger +Bruce +Charlie +Clarence +Cornelius +Darryl +Kerry +Micah +Seth +Brett +Craig +Franklin +Clifford +Dewayne +Luke +Mitchell +Austin +Harold +Kristopher +Lewis +Rickey +Chris +Clifton +Stanley +Terrell +Troy +Alexander +Glenn +Martin +Desmond +Dwight +Earl +Heath +Lawrence +Scotty +Cameron +Donnie +Ian +Jay +Jimmie +Warren +Chadwick +Ernest +Eugene +Jack +Jarrod +Jarvis +Lonnie +Marlon +Tavares +Terence +Alfred +Andy +Clayton +Damien +Isaac +Johnnie +Quincy +Ralph +Ray +Steve +Victor +Blake +Bryant +Carlton +Derick +Dusty +Jackie +Jody +Leonard +Lucas +Marco +Quentin +Vincent +Damon +Kenny +Leon +Preston +Cecil +Clay +Earnest +Edwin +Hunter +Kendall +Quinton +Rodrick +Rusty +Scottie +Alex +Beau +Howard +Jamaal +Juan +Julius +Kelly +Norman +Taylor +Trent +Wayne +Alvin +Christian +Daryl +Harry +Horace +Johnathon +Leslie +Louis +Perry +Ricardo +Tyler +Caleb +Dexter +Grant +Josh +Marshall +Morris +Otis +Wade +Bernard +Drew +Garrett +Lamar +Lloyd +Omar +Robin +Theodore +Wendell +Darren +Devin +Don +Evan +Freddie +Geoffrey +Grady +Herbert +Jordan +Leroy +Luther +Marc +Marquis +Myron +Roland +Sherman +Tommie +Tracy +Waylon +Xavier +Abraham +Alonzo +Bart +Bradford +Brannon +Chadrick +Cleveland +Dale +Darrius +Deandre +Demarcus +Erick +Floyd +Hugh +Ira +Jamey +Jonah +Judson +Julian +Lorenzo +Roosevelt +Sidney +Stacy +Vernon +Amos +Ben +Bennie +Claude +Cortney +Demario +Dominic +Elijah +Ellis +Jeff +Mathew +Mickey +Orlando +Oscar +Robbie +Sylvester +Teddy +Thaddeus +Winston +Angelo +Antwan +Cedrick +Dallas +Demetris +Forrest +Gene +Herman +Jarred +Jarrett +Jerald +Jeremie +Jerrod +Malcolm +Marlin +Marques +Marty +Miles +Milton +Rashad +Reggie +Rex +Ross +Trenton +Willis +Antione +Antoine +Archie +Benny +Broderick +Clyde +Cody +Detrick +Edgar +Everett +Frankie +Guy +Jarod +Kirk +Lester +Markeith +Oliver +Sedrick +Shelby +Spencer +Stuart +Trevor +Tyson +Adrain +Alton +Antonia +Bo +Colin +Darrick +Demarco +Donny +Dwayne +Elton +Fernando +Fred +Garry +Jake +Jamar +Karl +Labarron +Levi +Owen +Renaldo +Rico +Rodriquez +Rufus +Sammy +Seneca +Shedrick +Tavaris +Tory +Trey +Wilbert +Will +Zachery +Andrae +Andrea +Asa +Aubrey +Bill +Brock +Cary +Chester +Dan +Darnell +Darrin +Demetrice +Demond +Elliot +Elvin +Ethan +Gerry +Harrison +Hubert +Issac +Jabari +Jamal +Jamil +Jamison +Jayson +Jermey +Joesph +Kalvin +Kenyatta +Lamont +Lavon +Lindsey +Mack +Major +Marion +Markus +Mason +Morgan +Murray +Nathanael +Neil +Nicky +Percy +Randolph +Rocky +Ron +Sedric +Solomon +Stevie +Wallace +Whitney +Wilson +Zachariah +Zackary +Andra +Anton +Antwaun +Antwon +Brenton +Buddy +Carlo +Damian +Darrel +Dedrick +Dylan +Edmond +Elliott +Emanuel +Garrick +Gilbert +Graham +Greg +Grover +Harvey +Ivan +Jackson +Jasper +Jereme +Jeremey +Jeromy +Kent +Kimberly +Kurt +Landon +Leland +Leo +Lionel +Lyle +Monte +Ned +Norris +Quenton +Quintin +Rafael +Robby +Sam +Sammie +Stewart +Ted +Titus +Toby +Torey +Torrance +Tramaine +Tremaine +Tyrus +Virgil +Christopher +James +Michael +Joshua +Jason +John +Jonathan +David +Matthew +William +Jeremy +Robert +Brandon +Joseph +Daniel +Timothy +Justin +Charles +Anthony +Brian +Adam +Thomas +Eric +Kevin +Richard +Steven +Kenneth +Benjamin +Patrick +Nicholas +Andrew +Marcus +Stephen +Ryan +Jeffrey +Derrick +Travis +Bradley +Dustin +Gregory +Samuel +Larry +Mark +Nathan +Paul +Phillip +Antonio +Willie +Wesley +Donald +Billy +Chad +Corey +Edward +Ronald +Jeffery +Terry +Derek +Keith +Jesse +Jacob +Gary +George +Aaron +Bobby +Randall +Curtis +Bryan +Johnny +Zachary +Reginald +Rodney +Scott +Jared +Jimmy +Randy +Tony +Jamie +Jerry +Jeremiah +Carlos +Douglas +Kelvin +Nathaniel +Cedric +Casey +Ricky +Roderick +Russell +Shawn +Micheal +Terrance +Demetrius +Walter +Brad +Jermaine +Johnathan +Adrian +Eddie +Henry +Clinton +Dennis +Carl +Cory +Maurice +Roger +Tommy +Allen +Calvin +Jonathon +Raymond +Shannon +Alan +Jessie +Joe +Kyle +Philip +Courtney +Darrell +Joey +Ronnie +Joel +Lee +Lucas +Melvin +Andre +Sean +Barry +Byron +Craig +Frank +Frederick +Marvin +Gerald +Victor +Blake +Danny +Jon +Kendrick +Cornelius +Shane +Arthur +Tyler +Brent +Jerome +Clifton +Clarence +Todd +Tyrone +Vincent +Jordan +Lance +Shaun +Alexander +Ashley +Darius +Mitchell +Quentin +Roy +Alex +Brett +Chadwick +Darryl +Franklin +Fredrick +Mario +Bruce +Dewayne +Erik +Warren +Isaac +Jody +Lawrence +Terrence +Austin +Charlie +Heath +Jarvis +Kelly +Leon +Rickey +Seth +Wayne +Clayton +Clint +Daryl +Kristopher +Donnie +Jarrod +Stanley +Bryant +Gavin +Harold +Scotty +Troy +Bradford +Edwin +Kenny +Clifford +Dusty +Johnathon +Leonard +Micah +Andy +Derick +Desmond +Evan +Gabriel +Jay +Kerry +Quinton +Ralph +Scottie +Terrell +Albert +Alfred +Alvin +Caleb +Cameron +Marshall +Noah +Peter +Don +Dwight +Garrett +Jack +Louis +Marquis +Steve +Tommie +Antwan +Bernard +Clay +Earnest +Eugene +Herman +Howard +Kendall +Lloyd +Norman +Preston +Chester +Dexter +Emanuel +Frankie +Hunter +Jeff +Julius +Marc +Myron +Orlando +Quincy +Rufus +Spencer +Cecil +Chris +Cody +Dallas +Damien +Erick +Jamaal +Johnnie +Julian +Leroy +Lonnie +Luke +Marion +Ray +Sidney +Tavares +Terence +Trenton +Wallace +Beau +Bennie +Demarcus +Drew +Dwayne +Juan +Judson +Lewis +Mathew +Milton +Perry +Ricardo +Rusty +Sherman +Stuart +Taylor +Xavier +Allan +Cedrick +Damian +Demario +Earl +Ernest +Ethan +Freddie +Garry +Glenn +Ian +Jimmie +Lorenzo +Martin +Morgan +Morris +Nelson +Rocky +Ross +Angelo +Carlton +Chadrick +Christian +Clark +Dale +Demetrice +Devin +Elijah +Grady +Grant +Jarred +Rex +Robin +Stewart +Titus +Tracy +Trent +Wade +Alton +Avery +Ben +Branden +Darrius +Deandre +Floyd +Fred +Geoffrey +Glen +Harry +Herbert +Hugh +Jonah +Leslie +Max +Oscar +Robbie +Roosevelt +Sam +Toby +Wendell +Will +Winston +Ahmad +Antoine +Aubrey +Broderick +Claude +Cortez +Elliott +Forrest +Jackson +Jake +Jarrett +Lamarcus +Lane +Lester +Levi +Logan +Markus +Theodore +Timmy +Tobias +Trevor +Antonia +Arron +Brady +Clyde +Cortney +Darrel +Darren +Ellis +Fernando +Francis +Gordon +Ivan +Jackie +Jarod +Jim +Jonas +Karl +Kirk +Lamar +Leo +Marchello +Marques +Mason +Miguel +Moses +Nicolas +Rodriguez +Rodriquez +Skylar +Sylvester +Toney +Tristan +Willis +Andrae +Andrea +Antwon +Bo +Brannon +Brooks +Carey +Dana +Dandre +Darnell +Delvin +Demarco +Demetric +Demetris +Deon +Donny +Dylan +Elton +Emmanuel +Greg +Greggory +Guy +Ira +Issac +Jamar +Jasper +Jayson +Jerald +Jerrell +Kalvin +Kareem +Kent +Landon +Lemuel +Marlon +Oliver +Omar +Pierre +Quintin +Randal +Reggie +Rodger +Royce +Sammie +Sammy +Schuyler +Simon +Solomon +Thaddeus +Tierra +Tiffany +Torey +Tyson +Van +Virgil +Waylon +Wilson +Zachery +Zackery +Al +Alexis +Antwain +Bart +Benny +Brant +Carlo +Chuck +Colin +Cyrus +Damion +Dan +Davis +Dejuan +Detrick +Dewey +Harley +Isaiah +Jennifer +Jermarcus +Jerod +Jerrod +Josh +Kellen +Kenya +Keon +Lamario +Lamont +Lionel +Luther +Marcel +Marlin +Marty +Matt +Mike +Otis +Owen +Reco +Reuben +Rhett +Ron +Sedrick +Shedrick +Taurus +Tavaris +Ted +Tremaine +Tremayne +Wilbert +Winfred +Woodrow +Zackary +Christopher +James +Michael +Joshua +Jason +William +John +Matthew +David +Jonathan +Robert +Justin +Brandon +Joseph +Jeremy +Daniel +Charles +Timothy +Adam +Anthony +Thomas +Brian +Kevin +Steven +Eric +Richard +Andrew +Nicholas +Patrick +Kenneth +Benjamin +Marcus +Stephen +Jeffrey +Bradley +Ryan +Dustin +Gregory +Derrick +Mark +Phillip +Aaron +Wesley +Samuel +Antonio +Paul +Jeffery +Larry +Travis +Willie +Nathan +Donald +Bobby +Terry +Jacob +Johnny +Billy +Zachary +George +Roderick +Ronald +Corey +Jimmy +Edward +Jared +Chad +Gary +Keith +Scott +Jerry +Jesse +Derek +Johnathan +Randall +Reginald +Jamie +Bryan +Joel +Kelvin +Tony +Russell +Terrance +Curtis +Rodney +Philip +Casey +Randy +Clinton +Jeremiah +Ricky +Calvin +Shawn +Micheal +Kyle +Blake +Douglas +Cedric +Courtney +Maurice +Tyler +Walter +Allen +Eddie +Nathaniel +Henry +Lee +Carl +Frank +Jermaine +Jonathon +Alan +Jessie +Carlos +Dennis +Joe +Roy +Mitchell +Roger +Ronnie +Raymond +Sean +Darryl +Gabriel +Marvin +Cory +Demetrius +Frederick +Gerald +Shannon +Lucas +Clayton +Jordan +Adrian +Alexander +Brett +Darrell +Todd +Darius +Arthur +Brent +Rickey +Terrence +Bruce +Kristopher +Mario +Stanley +Danny +Jarrod +Joey +Kendrick +Lance +Troy +Clifford +Cornelius +Craig +Melvin +Shaun +Barry +Caleb +Clarence +Lawrence +Andre +Byron +Quentin +Seth +Isaac +Victor +Harold +Jon +Quinton +Albert +Jarvis +Shane +Earnest +Howard +Leonard +Noah +Norman +Tommy +Alex +Cameron +Jamaal +Jerome +Micah +Ray +Terence +Alvin +Dusty +Ernest +Fredrick +Johnathon +Austin +Brad +Bryant +Chase +Erik +Heath +Julius +Tyrone +Ashley +Chadwick +Glenn +Ian +Jack +Jamal +Preston +Charlie +Elijah +Evan +Franklin +Leslie +Luke +Martin +Wayne +Antoine +Chris +Clifton +Clint +Cody +Dewayne +Kerry +Peter +Darren +Landon +Marco +Perry +Rusty +Scottie +Scotty +Carlton +Dexter +Don +Edwin +Geoffrey +Herbert +Jackie +Jimmie +Leon +Marquis +Omar +Rodrick +Cecil +Donnie +Eugene +Garrett +Johnnie +Lewis +Mathew +Quincy +Spencer +Taylor +Theodore +Alfred +Antwan +Clay +Damien +Forrest +Jamar +Marc +Oscar +Rocky +Sidney +Tristan +Warren +Darrius +Daryl +Demarcus +Devin +Dwight +Kelly +Lorenzo +Marshall +Vincent +Bernard +Bret +Claude +Darnell +Deandre +Herman +Hunter +Ivan +Jay +Jim +Lester +Marlon +Morris +Steve +Terrell +Bradford +Colby +Desmond +Fred +Harvey +Jerrod +Josh +Lloyd +Louis +Tommie +Wendell +Alonzo +Alton +Angelo +Brooks +Cedrick +Cortney +Damian +Demetris +Gavin +Grant +Kendall +Leroy +Lonnie +Orlando +Otis +Ross +Sherman +Sylvester +Tavaris +Tracy +Tremaine +Wade +Will +Xavier +Allan +Andrae +Andy +Braxton +Damion +Elliott +Erick +Jamey +Jody +Juan +Lindsey +Marques +Marty +Mickey +Milton +Ralph +Ricardo +Sam +Tavares +Tyson +Aubrey +Brannon +Dallas +Demario +Donny +Emanuel +Emmett +Ethan +Floyd +Frankie +Freddie +Glen +Horace +Hugh +Jake +Jarred +Judson +Julian +Kenny +Marion +Martez +Miles +Morgan +Neil +Nelson +Oliver +Pierre +Randal +Rashad +Robby +Sammy +Shedrick +Stewart +Stuart +Thaddeus +Tremayne +Vernon +Antwon +Broderick +Chauncey +Chester +Christian +Colin +Dedrick +Demetric +Derick +Drew +Dwayne +Earl +Graham +Harry +Ira +Jarod +Karl +Lamar +Luther +Myron +Octavius +Prince +Rhett +Sedrick +Stevie +Taurus +Wallace +Whitney +Adrain +Ahmad +Antonia +Brady +Buddy +Chadrick +Cleveland +Clyde +Damon +Dominic +Edgar +Ervin +Everett +Francis +Gerry +Guy +Isaiah +Jakari +Jarrett +Jasper +Jeremey +Jerrell +Jose +Kendal +Kennith +Ladarius +Lamarcus +Levi +Lionel +Nathanael +Parker +Quintin +Renaldo +Robbie +Roosevelt +Rufus +Toby +Torey +Torrey +Trenton +Waylon +Weston +Willis +Wilson +Alexis +Antron +Antuan +Bart +Beau +Benny +Branden +Chance +Collin +Dante +Dejuan +Delvin +Dewey +Donte +Edmond +Elliot +Ellis +Elton +Ezekiel +Galvin +Grady +Greg +Harrison +Jackson +Jamarcus +Jermichael +Jeromy +Jonas +Keldrick +Kellen +Kent +Lakendrick +Lashawn +Leland +Leo +Logan +Lowell +Markeith +Matt +Mckenzie +Moses +Neal +Nickolas +Nicolas +Rafael +Ramon +Raphael +Renardo +Rick +Rico +Robin +Rodricus +Roland +Roman +Royce +Seneca +Skyler +Sonny +Stacy +Tarrance +Thurman +Timmy +Toney +Tramaine +Wilbert +Wiley +Yancey +Zebulon +Christopher +Michael +James +Joshua +Matthew +William +John +Brandon +Jason +Robert +Jonathan +David +Justin +Joseph +Daniel +Jeremy +Adam +Charles +Eric +Anthony +Thomas +Timothy +Brian +Steven +Kevin +Andrew +Marcus +Richard +Benjamin +Stephen +Jeffrey +Nicholas +Ryan +Patrick +Dustin +Kenneth +Gregory +Mark +Jacob +Aaron +Bradley +Antonio +Nathan +Derrick +Jeffery +Samuel +Paul +Willie +Phillip +Travis +Larry +Zachary +Chad +Bryan +Donald +Wesley +Terry +Kyle +Jared +Derek +George +Ronald +Bobby +Edward +Jesse +Corey +Gary +Tyler +Johnny +Billy +Curtis +Jerry +Demetrius +Randy +Calvin +Tony +Roderick +Douglas +Reginald +Jimmy +Scott +Alan +Micheal +Keith +Blake +Cedric +Jamie +Johnathan +Kelvin +Nathaniel +Shawn +Allen +Jonathon +Jermaine +Sean +Russell +Brett +Courtney +Henry +Carlos +Randall +Cory +Craig +Rodney +Roger +Ricky +Victor +Dennis +Maurice +Ronnie +Joel +Marvin +Barry +Brent +Carl +Raymond +Cody +Cornelius +Danny +Eddie +Jeremiah +Quinton +Walter +Clinton +Jordan +Casey +Clayton +Jon +Melvin +Todd +Frederick +Terrance +Mitchell +Gerald +Lee +Tommy +Andre +Kendrick +Lucas +Austin +Darius +Jessie +Philip +Chase +Gabriel +Jarrod +Adrian +Albert +Jerome +Joe +Stanley +Terrence +Arthur +Jarvis +Lance +Roy +Seth +Shane +Shannon +Evan +Frank +Johnathon +Byron +Kristopher +Alexander +Fredrick +Mario +Shaun +Heath +Jay +Vincent +Cameron +Darrell +Darryl +Harold +Joey +Troy +Tyrone +Bryant +Micah +Alex +Bruce +Leonard +Rickey +Taylor +Alfred +Franklin +Garrett +Grant +Jimmie +Johnnie +Lawrence +Leon +Lonnie +Mathew +Terrell +Warren +Brad +Clarence +Donnie +Erik +Ian +Sidney +Ashley +Clifford +Damien +Deangelo +Earl +Howard +Isaac +Quentin +Aubrey +Caleb +Clint +Desmond +Eugene +Glenn +Ray +Tristan +Alonzo +Chris +Christian +Demarcus +Dewayne +Erick +Jamaal +Kerry +Martin +Peter +Alvin +Carlton +Deandre +Earnest +Gavin +Jack +Jackie +Jake +Norman +Quincy +Ross +Scotty +Stuart +Zachery +Chadwick +Geoffrey +Jody +Julius +Lorenzo +Tavares +Terence +Wayne +Xavier +Bradford +Broderick +Cedrick +Clay +Clyde +Daryl +Dwight +Emmanuel +Lewis +Louis +Ralph +Chester +Clifton +Colby +Dexter +Judson +Kenny +Landon +Levi +Marquis +Noah +Orlando +Preston +Quintin +Robin +Rusty +Spencer +Vernon +Andy +Cecil +Darnell +Darren +Kendall +Leslie +Lionel +Luke +Marlon +Morris +Myron +Roosevelt +Sylvester +Titus +Wendell +Will +Brannon +Carey +Cortney +Derick +Devin +Don +Dusty +Edwin +Ernest +Floyd +Jarred +Kelly +Lamar +Lamarcus +Leroy +Randal +Rex +Wade +Alton +Bernard +Chauncey +Cleveland +Darrius +Elijah +Forrest +Frankie +Harry +Hunter +Jarrett +Jerrod +Luther +Markeith +Rafael +Rufus +Scottie +Sherman +Taurean +Theodore +Tracy +Allan +Alphonso +Antoine +Antonia +Antwan +Barrett +Beau +Brendan +Bret +Charlie +Cole +Demetrice +Drew +Elliott +Garry +Glen +Hugh +Ivan +Jamal +Jamar +Julian +Marques +Marshall +Milton +Moses +Neil +Rocky +Thaddeus +Toby +Waylon +Whitney +Adrain +Arnold +Dejuan +Demario +Derrius +Dominic +Dwayne +Ellis +Fernando +Gordon +Graham +Greg +Herbert +Isiah +Jeff +Jonas +Mack +Malcolm +Marion +Miles +Morgan +Nickolas +Nolan +Oliver +Otis +Percy +Perry +Pierre +Reggie +Robbie +Rodrick +Sedrick +Steve +Trevor +Tyson +Zackery +Andrea +Antwain +Antwaun +Ben +Braden +Branden +Brenton +Chadrick +Cortez +Dale +Damian +Delvin +Derrell +Donny +Ethan +Fred +Herman +Jarod +Jerald +Kalvin +Kendal +Kurt +Lester +Lindsey +Marc +Marlin +Mason +Neal +Oscar +Ricardo +Rodriquez +Shedrick +Stewart +Timmy +Tommie +Trenton +Weston +Wilbert +Willis +Winston +Andra +Angelo +Antione +Brooks +Cary +Dallas +Dalton +Damion +Dane +Dangelo +Daniell +Davis +Demarco +Deon +Duston +Dylan +Emanuel +Freddie +Gene +Grady +Harley +Horace +Houston +Hubert +Ira +Jackson +Jacques +Jamison +Jessica +Joesph +Josh +Kareem +Keenan +Ladarius +Laron +Leonardo +Logan +Marco +Marty +Max +Montez +Octavious +Octavius +Omar +Owen +Prince +Quenton +Renaldo +Roman +Ronny +Royce +Sammie +Shelton +Simon +Stacey +Stevie +Tanner +Taurus +Torey +Torrey +Trent +Van +Christopher +Michael +James +Joshua +Matthew +William +Brandon +John +Robert +David +Justin +Jonathan +Joseph +Daniel +Jason +Adam +Jeremy +Charles +Timothy +Eric +Brian +Steven +Thomas +Andrew +Kevin +Anthony +Marcus +Stephen +Benjamin +Patrick +Richard +Nicholas +Ryan +Dustin +Kenneth +Jeffrey +Bradley +Jacob +Gregory +Aaron +Mark +Zachary +Nathan +Paul +Samuel +Travis +Larry +Antonio +Derrick +Jeffery +Phillip +Wesley +Tyler +Bryan +Chad +Donald +Bobby +Corey +Terry +Jared +Jesse +Willie +Gary +Tony +George +Jimmy +Billy +Ronald +Curtis +Derek +Kyle +Cedric +Johnathan +Scott +Edward +Jerry +Russell +Johnny +Keith +Randy +Courtney +Sean +Blake +Randall +Cody +Reginald +Nathaniel +Allen +Jermaine +Dennis +Eddie +Calvin +Ricky +Roderick +Rodney +Cory +Jonathon +Jordan +Brett +Carl +Carlos +Clayton +Jamie +Joel +Raymond +Shawn +Alex +Chase +Clinton +Jeremiah +Terrance +Casey +Micheal +Alexander +Barry +Jessie +Peter +Alan +Brent +Andre +Douglas +Frederick +Henry +Maurice +Ronnie +Adrian +Joe +Lee +Shane +Cornelius +Darius +Jarrod +Philip +Danny +Darrell +Stanley +Walter +Demetrius +Jon +Kelvin +Roger +Tommy +Austin +Quinton +Todd +Craig +Ian +Terrence +Caleb +Darryl +Frank +Jarvis +Arthur +Erik +Mario +Micah +Troy +Lance +Shannon +Victor +Cameron +Gabriel +Gerald +Johnathon +Mitchell +Seth +Taylor +Vincent +Kristopher +Leon +Luke +Bruce +Evan +Melvin +Noah +Rickey +Edwin +Fredrick +Heath +Roy +Terrell +Byron +Clarence +Deandre +Jack +Jerome +Joey +Lawrence +Lorenzo +Marvin +Shaun +Tyrone +Kendrick +Quentin +Terence +Bryant +Carlton +Colby +Franklin +Jay +Kenny +Kerry +Albert +Brad +Christian +Clifford +Desmond +Donnie +Eugene +Hunter +Jody +Julius +Louis +Preston +Quintin +Wayne +Alvin +Demarcus +Geoffrey +Howard +Kendall +Marshall +Ray +Antoine +Brenton +Charlie +Devin +Dewayne +Dexter +Garrett +Harold +Leonard +Lewis +Lionel +Mathew +Sidney +Tristan +Alfred +Clay +Clifton +Damien +Dwight +Scotty +Ashley +Ben +Bradford +Chris +Darrius +Daryl +Drew +Ernest +Jackie +Lucas +Martin +Morgan +Warren +Antwan +Clint +Earnest +Emmanuel +Glenn +Logan +Marlon +Norman +Rocky +Rodrick +Bernard +Broderick +Cedrick +Cortney +Darnell +Derick +Elijah +Grant +Isaac +Karl +Lester +Lonnie +Luther +Perry +Stuart +Cecil +Darren +Devon +Forrest +Gavin +Jamison +Jerrell +Judson +Leroy +Marco +Mickey +Orlando +Simon +Steve +Trenton +Vernon +Wendell +Chadwick +Deangelo +Deon +Dwayne +Earl +Erick +Jarrett +Landon +Marquis +Max +Neil +Otis +Quincy +Ralph +Robin +Roman +Ross +Spencer +Xavier +Andy +Chance +Chester +Cortez +Emanuel +Frankie +Freddie +Jake +Jamal +Jarod +Jarred +Jayson +Jerrod +Jimmie +Malcolm +Markus +Marques +Milton +Omar +Tavaris +Trevor +Zackery +Allan +Alonzo +Aubrey +Bennie +Bo +Brooks +Dale +Demario +Dominique +Don +Harry +Herbert +Ivan +Jamar +Jamarcus +Kelly +Ladarius +Leslie +Marc +Roosevelt +Rusty +Sylvester +Tobias +Torrance +Tracy +Trent +Tyson +Wallace +Whitney +Winston +Zachery +Archie +Brannon +Braxton +Colin +Collin +Dallas +Destin +Dominic +Grady +Harvey +Ira +Jefferson +Jeremey +Jim +Johnnie +Julian +Kent +Keon +Neal +Nicolas +Ricardo +Scottie +Sherman +Stewart +Tavares +Theodore +Titus +Trey +Tyrell +Zane +Abraham +Amos +Antwon +Antwone +Blaine +Brady +Branden +Clyde +Damon +Dangelo +Demetrice +Dylan +Elliot +Garry +Glen +Gordon +Graham +Greg +Harley +Herman +Jamaal +Jameson +Jerod +Kendal +Kennedy +Mason +Rufus +Sammy +Skyler +Tommie +Wade +Al +Andrea +Antwaun +Beau +Brant +Brantley +Cassidy +Charlton +Damian +Damion +Dante +Darion +Dedrick +Demarco +Emory +Ethan +Fernando +Floyd +Gilbert +Harrison +Jerad +Jerel +Jereme +Jermichael +Johathan +Jonah +Kurt +Lamar +Lamorris +Levi +Lloyd +Miles +Muhammad +Oliver +Oscar +Owen +Randolph +Reggie +Rex +Riley +Roland +Rory +Royce +Sandy +Sergio +Shea +Sonny +Stefan +Taurean +Thad +Turner +Van +Will +Willis +Winfred +Zackary +Christopher +Joshua +Michael +James +Brandon +William +Matthew +Jonathan +David +John +Justin +Robert +Daniel +Joseph +Jason +Jeremy +Charles +Andrew +Timothy +Adam +Anthony +Steven +Thomas +Brian +Eric +Kevin +Nicholas +Richard +Stephen +Dustin +Kenneth +Ryan +Marcus +Jacob +Benjamin +Patrick +Bradley +Zachary +Gregory +Jeffrey +Derrick +Aaron +Tyler +Samuel +Travis +Mark +Corey +Nathan +Kyle +Phillip +Antonio +Willie +Jesse +Bryan +Wesley +Cody +George +Paul +Terry +Jeffery +Chad +Donald +Johnathan +Bobby +Jared +Larry +Edward +Randall +Ronald +Johnny +Jerry +Sean +Keith +Jimmy +Scott +Shawn +Cedric +Derek +Reginald +Roderick +Billy +Tony +Carl +Brett +Gary +Jordan +Alan +Blake +Chase +Rodney +Allen +Carlos +Kelvin +Randy +Curtis +Danny +Joel +Nathaniel +Jamie +Walter +Alexander +Casey +Philip +Ricky +Russell +Adrian +Dennis +Craig +Jonathon +Maurice +Micheal +Cory +Demetrius +Douglas +Henry +Terrance +Caleb +Clinton +Frank +Raymond +Courtney +Jermaine +Taylor +Brent +Frederick +Jon +Terrell +Calvin +Ronnie +Tommy +Victor +Darius +Hunter +Kristopher +Lawrence +Mitchell +Vincent +Joe +Alex +Lee +Devin +Lance +Roger +Shane +Troy +Jeremiah +Quinton +Seth +Andre +Austin +Barry +Jarrod +Johnathon +Kendrick +Albert +Eddie +Evan +Fredrick +Jessie +Alvin +Cornelius +Jay +Mario +Shannon +Byron +Clayton +Joey +Micah +Quentin +Clifton +Darrell +Darryl +Gerald +Lucas +Todd +Trenton +Cameron +Kendall +Terence +Tristan +Tyrone +Arthur +Bryant +Heath +Ian +Jack +Jarvis +Marvin +Rickey +Clifford +Dexter +Drew +Jerome +Bruce +Ernest +Kerry +Ray +Roy +Franklin +Luke +Charlie +Clarence +Damien +Melvin +Preston +Stanley +Warren +Darren +Desmond +Martin +Mathew +Perry +Shaun +Terrence +Ashley +Cecil +Christian +Demarcus +Jake +Landon +Marshall +Cortney +Grant +Harold +Lewis +Peter +Brad +Clint +Emmanuel +Jamarcus +Xavier +Howard +Jarred +Korey +Orlando +Scotty +Spencer +Stuart +Antoine +Cortez +Daryl +Deangelo +Dewayne +Dwight +Edwin +Eugene +Garrett +Jerrod +Julius +Leonard +Zachery +Andy +Brady +Chadwick +Deandre +Erik +Freddie +Isaac +Marlon +Morgan +Noah +Norman +Quintin +Ross +Sidney +Trent +Trevor +Aubrey +Avery +Brenton +Chris +Dallas +Dominique +Don +Gabriel +Glenn +Jody +Kenny +Lamar +Leon +Lonnie +Louis +Malcolm +Marc +Wayne +Antwan +Bernard +Branden +Colby +Dale +Damon +Derick +Frankie +Fred +Harry +Herbert +Jackson +Ladarius +Pierre +Robin +Thaddeus +Zackery +Alton +Broderick +Carlton +Donnie +Dylan +Earnest +Elijah +Forrest +Jamar +Jamison +Jarrett +Lorenzo +Sammy +Wendell +Wilson +Brock +Coty +Darnell +Darrius +Devon +Gordon +Jackie +Jamal +Johnnie +Kelly +Lionel +Marco +Martez +Milton +Neil +Nicolas +Prince +Quincy +Ralph +Roosevelt +Tavaris +Vernon +Wade +Alexis +Alfred +Claude +Clay +Colin +Demetrice +Dusty +Dwayne +Erick +Jameson +Jarod +Josh +Julian +Kent +Marquis +Marquise +Morris +Nelson +Otis +Scottie +Stewart +Ted +Tommie +Trey +Zackary +Alonzo +Angelo +Bennie +Benny +Braxton +Cary +Dean +Dominic +Earl +Elliott +Emanuel +Fabian +Fernando +Garrick +Graham +Harrison +Jerrell +Jim +Jonah +Juan +Judson +Karl +Kirk +Levi +Mason +Oscar +Randal +Raphael +Rocky +Rodger +Rodrick +Rusty +Sherman +Tanner +Tavares +Tavarus +Theodore +Tracy +Van +Wallace +Will +Willis +Allan +Alonza +Antwaun +Bradford +Bryon +Chauncey +Cole +Coleman +Coy +Dana +Dedrick +Dejuan +Demario +Donnell +Donovan +Donte +Durrell +Elton +Emmett +Garry +Geoffrey +Gilbert +Glen +Grady +Herman +Horace +Hugh +Issac +Ivan +Jamey +Jaymes +Jimmie +Labarron +Lamarcus +Lester +Lloyd +Marion +Markeith +Miles +Neal +Nigel +Percy +Rafael +Roland +Ryne +Skyler +Abraham +Akeem +Al +Alphonso +Antwain +Antwon +Archie +Beau +Brantley +Chadrick +Chance +Chaz +Chester +Dane +Darrel +Darrin +Darron +Davis +Deandrea +Dominick +Durell +Eli +Everett +Felix +Floyd +Griffin +Guy +Harvey +Houston +Hoyt +Hubert +Infant +Ira +Jacques +Jaime +Jamaal +Jonthan +Keon +Kurtis +Ladarrius +Leland +Leroy +Lindsey +Logan +Malachi +Max +Myles +Myron +Napoleon +Noel +Omar +Owen +Parker +Peyton +Quintez +Randell +Rex +Ricardo +Rico +Robbie +Rodriquez +Rory +Rufus +Sam +Sonny +Stacey +Stacy +Stefan +Terance +Terrel +Toby +Toney +Tyson +Waylon +Whitney +Winston +Christopher +James +Michael +Joshua +Brandon +William +Matthew +John +Justin +Jonathan +Robert +Jeremy +David +Daniel +Joseph +Timothy +Andrew +Charles +Jason +Anthony +Kevin +Adam +Thomas +Eric +Steven +Richard +Benjamin +Nicholas +Brian +Ryan +Stephen +Patrick +Jacob +Dustin +Kenneth +Marcus +Zachary +Corey +Bradley +Mark +Tyler +Samuel +Kyle +Gregory +Jeffrey +Antonio +Phillip +Jeffery +Nathan +Wesley +Derrick +Aaron +Cody +Jesse +Bryan +Jared +Donald +Alexander +Travis +Bobby +Cory +Johnathan +Chad +Paul +Willie +Larry +Derek +Edward +Ronald +Terry +Jordan +Brett +Casey +Gary +Curtis +Jerry +Shawn +Billy +Scott +Jimmy +Sean +Blake +Courtney +Keith +Roderick +Walter +Randall +Randy +Rodney +Austin +Johnny +Douglas +George +Nathaniel +Micheal +Demetrius +Brent +Joel +Adrian +Allen +Reginald +Alex +Arthur +Jamie +Ricky +Seth +Clayton +Russell +Carl +Henry +Terrance +Tony +Calvin +Jarvis +Kendrick +Shane +Caleb +Cedric +Evan +Jeremiah +Philip +Clinton +Darius +Jonathon +Mitchell +Dennis +Mario +Maurice +Taylor +Darrell +Frederick +Tommy +Alan +Cornelius +Victor +Chase +Hunter +Kelvin +Lance +Quinton +Danny +Carlos +Frank +Jon +Raymond +Byron +Darryl +Jermaine +Jessie +Lee +Terrell +Todd +Barry +Gerald +Lawrence +Roger +Vincent +Garrett +Kristopher +Andre +Devin +Eddie +Jarrod +Micah +Terrence +Trenton +Albert +Colby +Deangelo +Desmond +Dexter +Drew +Troy +Bryant +Ian +Jerome +Peter +Ronnie +Shaun +Bruce +Jay +Rickey +Stanley +Clifford +Franklin +Gabriel +Heath +Joey +Lucas +Melvin +Preston +Spencer +Harold +Jack +Marshall +Brad +Cameron +Clarence +Craig +Marvin +Roy +Whitney +Xavier +Demarcus +Fredrick +Glenn +Joe +Johnathon +Julius +Luke +Ross +Shannon +Aubrey +Clint +Julian +Kerry +Leon +Levi +Martin +Stuart +Tristan +Tyrone +Wayne +Deandre +Dwight +Edwin +Lewis +Marquis +Zachery +Erik +Ernest +Jake +Jody +Landon +Trevor +Zackery +Antoine +Brenton +Dale +Grant +Isaac +Jamal +Jarred +Kendall +Malcolm +Marlon +Warren +Carlton +Clifton +Dusty +Dylan +Howard +Lamar +Mason +Quentin +Rashad +Sylvester +Trey +Chadwick +Charlie +Christian +Colin +Cordell +Cortez +Jackie +Jerrod +Kenny +Logan +Marc +Clay +Damien +Damon +Darren +Earl +Erick +Forrest +Herbert +Jimmie +Louis +Ray +Ricardo +Trent +Wendell +Alfred +Alvin +Antwan +Bennie +Brady +Darrius +Daryl +Eugene +Geoffrey +Harry +Jameson +Lorenzo +Noah +Otis +Rusty +Sherman +Thaddeus +Ashley +Ben +Bernard +Demario +Dewayne +Don +Donovan +Earnest +Jamarcus +Jamison +Juan +Leslie +Lonnie +Luther +Miles +Nicolas +Orlando +Perry +Quincy +Rico +Riley +Rodrick +Skylar +Terence +Devon +Dominic +Donnie +Elijah +Emanuel +Harrison +Horace +Jackson +Jamaal +Jaron +Jim +Milton +Montez +Norman +Quintin +Rodriquez +Scotty +Sidney +Stewart +Akeem +Alphonso +Antwon +Chance +Chris +Coleman +Coty +Dakota +Davis +Deanthony +Dejuan +Destin +Dominique +Elliott +Floyd +Frankie +Gordon +Judson +Karl +Leonard +Lester +Mathew +Oscar +Parker +Pierre +Theodore +Tyson +Wallace +Winston +Amos +Andrea +Bret +Cecil +Clark +Clyde +Cole +Cordero +Cortney +Dallas +Dane +Deon +Durell +Ervin +Ethan +Freddie +Jamar +Jamel +Jarrett +Jasper +Jeremey +Jerrell +Korey +Ladarius +Lionel +Marquez +Martez +Neil +Ralph +Rex +Robbie +Roosevelt +Steve +Stevie +Tavares +Wilson +Zane +Alton +Andy +Brody +Cary +Chester +Darrin +Dontavious +Eli +Gavin +Javaris +Javoris +Johnnie +Jonah +Kent +Kirby +Kurt +Kurtis +Lindsey +Lyndon +Mikel +Morris +Nickolas +Omar +Peyton +Rafael +Stefan +Tavoris +Tracy +Vernon +Wade +Zackary +Alonzo +Ashton +Braden +Bradly +Brannon +Brendon +Brittany +Carter +Cedrick +Chauncey +Cleveland +Cordaro +Cruz +Dedrick +Demetric +Demetris +Derick +Dewey +Eldrick +Emmanuel +Erin +Fletcher +Glen +Graham +Greg +Griffin +Hosea +Ivan +Jarod +Jefferson +Jeremie +Jermichael +Jerod +Kelly +Kelton +Kendal +Kendrell +Lakendrick +Lamarcus +Leroy +Lloyd +Malcom +Markeith +Nick +Oliver +Orry +Owen +Randal +Reco +Reggie +Roland +Roman +Royce +Rufus +Rustin +Ryne +Sam +Sammy +Sedrick +Skyler +Stephan +Stephon +Tanner +Taurean +Tobias +Tommie +Tramaine +Ty +Tyrell +Virgil +Wiley +Will +Willis +Christopher +Joshua +James +Justin +Michael +William +Matthew +Brandon +John +David +Robert +Jonathan +Jeremy +Joseph +Andrew +Daniel +Timothy +Charles +Thomas +Anthony +Jason +Steven +Kevin +Jacob +Adam +Nicholas +Eric +Brian +Stephen +Richard +Zachary +Ryan +Benjamin +Kenneth +Tyler +Patrick +Cody +Dustin +Jeffrey +Marcus +Gregory +Bradley +Corey +Aaron +Phillip +Kyle +Wesley +Jeffery +Samuel +Mark +Nathan +Antonio +Cory +Derrick +Bryan +Jordan +Donald +Travis +Derek +Jared +Paul +Edward +Alexander +Jesse +Chad +Willie +Larry +Reginald +Alex +Casey +Johnathan +Ronald +Bobby +Terry +George +Billy +Blake +Gary +Jimmy +Sean +Johnny +Austin +Brent +Courtney +Roderick +Nathaniel +Caleb +Douglas +Curtis +Jerry +Darius +Scott +Tony +Russell +Brett +Demetrius +Shawn +Calvin +Cedric +Jamie +Keith +Mitchell +Randall +Maurice +Randy +Seth +Joel +Jonathon +Mario +Micheal +Raymond +Clayton +Evan +Arthur +Shane +Walter +Kelvin +Rodney +Cameron +Ricky +Frank +Terrance +Chase +Cornelius +Dennis +Tommy +Carl +Dexter +Jessie +Devin +Jarrod +Kendrick +Frederick +Hunter +Jarvis +Lance +Philip +Roger +Taylor +Roy +Henry +Quinton +Adrian +Carlos +Danny +Joe +Marvin +Quentin +Spencer +Alan +Byron +Darrell +Darryl +Eddie +Garrett +Jeremiah +Victor +Allen +Bryant +Jermaine +Lawrence +Micah +Vincent +Craig +Johnathon +Kristopher +Lee +Terrence +Xavier +Andre +Christian +Barry +Demario +Joey +Jon +Logan +Preston +Ronnie +Troy +Deangelo +Demarcus +Gerald +Heath +Jake +Jamal +Todd +Bruce +Clifton +Desmond +Fredrick +Gabriel +Ian +Darrius +Jerome +Lucas +Melvin +Shannon +Stanley +Tyrone +Charlie +Clinton +Landon +Mason +Scotty +Albert +Dylan +Ernest +Kendall +Luke +Mathew +Rickey +Trenton +Jack +Jamarcus +Martin +Terrell +Trent +Zackary +Cortney +Glenn +Grant +Harry +Miles +Peter +Stuart +Chadwick +Clifford +Clint +Colby +Cordero +Erik +Franklin +Leon +Leonard +Lorenzo +Marquis +Orlando +Rashad +Ross +Terence +Trevor +Alfred +Clarence +Donnie +Isaac +Jay +Jimmie +Ladarius +Morgan +Trey +Tristan +Ashley +Carlton +Deandre +Earnest +Harrison +Julius +Marquez +Martez +Omar +Ralph +Brad +Cortez +Dale +Donovan +Edwin +Harold +Jackie +Kerry +Lewis +Malcolm +Marshall +Milton +Shaun +Alonzo +Antwan +Brenton +Dallas +Dewayne +Geoffrey +Jody +Johnnie +Julian +Kenny +Levi +Lonnie +Norman +Quintin +Warren +Zackery +Antoine +Clay +Damon +Darnell +Dominique +Drew +Dwight +Gavin +Graham +Howard +Louis +Perry +Roosevelt +Wayne +Alvin +Amos +Ben +Bernard +Cedrick +Colin +Cordell +Coty +Dakota +Darrin +Donny +Dusty +Elliott +Forrest +Jerrell +Jerrod +Judson +Kurt +Leroy +Marlon +Nickolas +Pierre +Ray +Riley +Rodriquez +Rusty +Theodore +Tracy +Andy +Antwon +Bradford +Braxton +Britton +Cecil +Damien +Darren +Dedrick +Dwayne +Earl +Ellis +Jamaal +Jeremie +Juan +Markus +Max +Quincy +Robin +Roman +Steve +Sylvester +Vernon +Will +Zachery +Addison +Branden +Cary +Daryl +Devon +Elijah +Emanuel +Emmanuel +Ervin +Gordon +Herman +Horace +Ira +Jackson +Jonah +Jose +Korey +Kurtis +Lamar +Morris +Neil +Rico +Rodrick +Skyler +Stewart +Torey +Torrey +Whitney +Bennie +Brady +Brannon +Broderick +Chance +Chauncey +Chester +Cole +Dejuan +Deon +Gilbert +Houston +Ivan +Jamison +Jarred +Jarrell +Jasmine +Lester +Marion +Myles +Neal +Nelson +Noah +Owen +Ryne +Scottie +Sidney +Stefan +Teddy +Thaddeus +Torrance +Tyson +Wallace +Willis +Winston +Zane +Alphonso +Aubrey +Baby +Bradly +Brendan +Brooks +Chris +Claude +Cordaro +Cordaryl +Damian +Darrel +Davis +Deric +Dominic +Don +Donnell +Ethan +Floyd +Frankie +Jamel +Jamey +Johathan +Jonas +Lamarcus +Leland +Lionel +Lloyd +Luther +Marc +Myron +Randolph +Reggie +Renaldo +Sammy +Skylar +Stacey +Sterling +Tanner +Ted +Tiffany +Titus +Wendell +Zachariah +Adarius +Akeem +Allan +Ashton +Barrett +Britt +Brock +Carey +Carson +Channing +Cleophus +Coleman +Colt +Cordarryl +Cordera +Damion +Dan +Dana +Dane +Dangelo +Demarius +Demetric +Demetrice +Demetris +Derick +Dion +Elvin +Erwin +Fred +Garry +Griffin +Hayden +Herbert +Hubert +Jasper +Jefferson +Jerod +Kendal +Kirk +Markeith +Marlin +Maxwell +Montez +Nigel +Nolan +Oliver +Otis +Peyton +Raphael +Rashard +Reco +Sedrick +Sheldon +Spenser +Tavares +Tobias +Tommie +Tristian +Ty +Tyrell +Ulysses +Van +Westley +Weston +Justin +Christopher +Joshua +Michael +James +William +Matthew +Brandon +John +Robert +Jonathan +David +Joseph +Andrew +Jeremy +Daniel +Charles +Timothy +Nicholas +Anthony +Thomas +Jacob +Steven +Zachary +Adam +Eric +Ryan +Cody +Jason +Richard +Kevin +Benjamin +Stephen +Kenneth +Corey +Tyler +Dustin +Brian +Patrick +Aaron +Kyle +Samuel +Bradley +Marcus +Travis +Gregory +Nathan +Jeffrey +Mark +Antonio +Wesley +Jesse +Cory +Phillip +Derek +Jeffery +Alexander +Bryan +Jordan +Ronald +Jared +Austin +Chad +Terry +Caleb +Cameron +Derrick +Paul +Blake +Johnathan +Taylor +Donald +Willie +Edward +Bobby +Courtney +Jonathon +Terrance +Scott +Jerry +Sean +Alex +Nathaniel +Rodney +Casey +Gary +Johnny +Larry +George +Seth +Keith +Billy +Chase +Randy +Curtis +Brett +Shawn +Darius +Jamie +Jarvis +Micheal +Randall +Roderick +Tony +Logan +Russell +Demetrius +Allen +Dennis +Jimmy +Raymond +Terrence +Ricky +Mario +Alan +Clinton +Frederick +Hunter +Jessie +Shane +Vincent +Walter +Brent +Henry +Maurice +Reginald +Victor +Kendrick +Barry +Evan +Mitchell +Calvin +Cedric +Frank +Quentin +Xavier +Adrian +Clayton +Cornelius +Joel +Lucas +Carl +Douglas +Trenton +Kendall +Lee +Quinton +Jon +Lance +Preston +Roger +Bryant +Jarrod +Lawrence +Luke +Danny +Kelvin +Arthur +Craig +Dominique +Jeremiah +Kristopher +Philip +Tommy +Christian +Demarcus +Eddie +Terrell +Jermaine +Carlos +Dexter +Jake +Ronnie +Spencer +Todd +Byron +Heath +Marvin +Melvin +Albert +Colby +Darryl +Deandre +Desmond +Harold +Joe +Terence +Darrell +Demario +Devin +Garrett +Gerald +Jerome +Micah +Rashad +Rickey +Zachery +Clarence +Ian +Stanley +Troy +Andre +Chadwick +Derick +Joey +Louis +Shannon +Trevor +Charlie +Dylan +Jamal +Ladarius +Landon +Martin +Morgan +Trent +Clay +Cortez +Grant +Jay +Leonard +Orlando +Clifford +Clifton +Julian +Lewis +Malcolm +Marlon +Mathew +Ray +Fredrick +Gabriel +Noah +Roy +Warren +Bruce +Colin +Coty +Erik +Ernest +Geoffrey +Isaac +Kerry +Mason +Peter +Ross +Scotty +Trey +Colton +Darrius +Deangelo +Donnie +Harrison +Howard +Jamarcus +Johnathon +Lorenzo +Marshall +Rodrick +Shaun +Alfred +Alonzo +Alvin +Aubrey +Clint +Damien +Darren +Daryl +Dwight +Ethan +Franklin +Isaiah +Kenny +Levi +Markus +Marquis +Milton +Nicolas +Pierre +Sylvester +Tommie +Tristan +Zackary +Bernard +Brad +Brenton +Darrin +Davis +Devon +Drew +Edwin +Elliott +Jody +Judson +Perry +Tyrone +Andy +Brantley +Damon +Darnell +Forrest +Herbert +Jack +Jamar +Jarod +Jerrell +Jerrod +Kaleb +Marquez +Rodriquez +Tracy +Wayne +Zackery +Branden +Carlton +Cecil +Chris +Cordarryl +Dallas +Dewayne +Don +Dusty +Elijah +Houston +Jarred +Julius +Keon +Lamar +Leslie +Martez +Miles +Omar +Parker +Ricardo +Riley +Rusty +Wendell +Alton +Amos +Antoine +Arsenio +Ashton +Chance +Chaz +Clyde +Cordarius +Cordero +Cortney +Dominic +Freddie +Graham +Jimmie +Josh +Karl +Kory +Lamarcus +Leroy +Lonnie +Quintin +Roman +Sidney +Stuart +Tucker +Vernon +Anderson +Antwan +Bradford +Clark +Dillon +Dwayne +Earl +Eugene +Hugh +Jackie +Jarrett +Keldrick +Leland +Morris +Myles +Myron +Neal +Norman +Quenton +Randal +Rex +Steve +Theodore +Will +Ahmad +Angelo +Ashley +Baby +Blaine +Brendan +Cedrick +Deanthony +Dedrick +Ellis +Erick +Felix +Floyd +Gavin +Glenn +Harvey +Herman +Jaron +Javaris +Kody +Leon +Lester +Marco +Maxwell +Mychal +Ralph +Roosevelt +Simon +Skylar +Stewart +Tavaris +Teddy +Terell +Thaddeus +Virgil +Willis +Antwain +Avery +Ben +Britton +Broderick +Claude +Coy +Dale +Damian +Dana +Darion +Deon +Emmanuel +Frankie +Gilbert +Harry +Jamison +Jasmine +Jayson +Jefferson +Jonah +Kedrick +Kent +Lakendrick +Lionel +Mack +Marcel +Markeith +Marques +Marty +Max +Neil +Nickolas +Nolan +Owen +Raphael +Rico +Robin +Roland +Shelton +Spenser +Stacy +Stefan +Tanner +Tavares +Torrey +Tyson +Wilson +Winston +Allan +Alphonso +Antwon +Beau +Braden +Brady +Bret +Channing +Chester +Conner +Dane +Dangelo +Darian +Daron +Dejuan +Demarius +Demarkus +Demetris +Donnell +Dorian +Elbert +Eli +Emanuel +Fabian +Francis +Freeman +Garry +Gordon +Grady +Grayson +Infant +Isiah +Ivan +Ivory +Jabari +Jacoby +Jacorey +Jamel +Jeff +Jermey +Jim +Johnnie +Jose +Kelsey +Kendal +Kurt +Marion +Nathanael +Nelson +Nick +Oliver +Payton +Quadarius +Quindarius +Ramon +Randell +Reid +Rocky +Ruben +Ryne +Sam +Tobias +Toby +Wade +Christopher +Joshua +Justin +Michael +James +William +Matthew +Brandon +John +David +Robert +Jeremy +Joseph +Jonathan +Andrew +Daniel +Thomas +Nicholas +Jacob +Charles +Zachary +Steven +Anthony +Timothy +Kevin +Dustin +Benjamin +Corey +Adam +Patrick +Tyler +Cody +Eric +Stephen +Brian +Ryan +Richard +Kenneth +Kyle +Jason +Aaron +Bradley +Marcus +Nathan +Samuel +Gregory +Jeffrey +Wesley +Jesse +Travis +Cory +Antonio +Jordan +Jared +Alexander +Caleb +Mark +Phillip +Austin +Jeffery +Cameron +Donald +Derrick +Derek +Blake +Taylor +Ronald +Bryan +Ethan +Johnathan +Willie +Paul +Edward +Darius +Hunter +Chase +Terry +Randall +George +Casey +Curtis +Larry +Gary +Sean +Billy +Courtney +Jonathon +Terrance +Jerry +Alex +Rodney +Chad +Reginald +Joel +Seth +Johnny +Nathaniel +Tony +Bobby +Logan +Evan +Demetrius +Jimmy +Brent +Keith +Brett +Micah +Bryant +Garrett +Mitchell +Tommy +Alan +Jarvis +Lee +Cedric +Russell +Scott +Vincent +Walter +Jamie +Shawn +Clayton +Colton +Raymond +Clinton +Devin +Douglas +Jeremiah +Jon +Calvin +Allen +Kendrick +Spencer +Cornelius +Demarcus +Eddie +Frank +Henry +Preston +Randy +Roderick +Adrian +Byron +Carl +Jarrod +Jessie +Kelvin +Mario +Dennis +Kristopher +Philip +Shane +Stanley +Carlos +Christian +Frederick +Ladarius +Maurice +Ricky +Desmond +Terrence +Trenton +Victor +Deandre +Darryl +Dominique +Jake +Jerome +Marvin +Micheal +Quinton +Zachery +Colby +Darrius +Lance +Lucas +Albert +Demario +Jamal +Joe +Roger +Trevor +Xavier +Dexter +Trent +Barry +Danny +Gerald +Ian +Louis +Luke +Melvin +Rickey +Cortez +Dylan +Lawrence +Roy +Terrell +Todd +Darrell +Heath +Kendall +Morgan +Rashad +Shannon +Andre +Arsenio +Craig +Deangelo +Drew +Jay +Jermaine +Joey +Marquis +Quentin +Terence +Gabriel +Johnathon +Ronnie +Ross +Warren +Bruce +Erik +Mason +Mathew +Orlando +Zackary +Clarence +Colin +Franklin +Geoffrey +Grant +Harold +Isaac +Martin +Nickolas +Shaun +Troy +Alvin +Arthur +Clifford +Damien +Darren +Dwight +Fredrick +Isaiah +Jackson +Kerry +Landon +Malcolm +Alfred +Antwan +Broderick +Eugene +Harrison +Jack +Kody +Korey +Tristan +Clay +Clifton +Cortney +Forrest +Jarrett +Levi +Marshall +Ray +Brad +Carlton +Dallas +Jamarcus +Ladarrius +Noah +Tracy +Zackery +Charlie +Dakota +Dominic +Jarred +Jerrod +Julian +Julius +Lamar +Lorenzo +Peter +Rodrick +Rodriquez +Roman +Thaddeus +Trey +Tyrone +Wendell +Akeem +Bernard +Branden +Carter +Chadwick +Chance +Devon +Dwayne +Edwin +Elliott +Howard +Kenny +Kiara +Leonard +Marc +Marlon +Parker +Sidney +Stuart +Winston +Alton +Braxton +Coty +Elijah +Fred +Glenn +Judson +Kaleb +Lewis +Lonnie +Riley +Wade +Ashton +Aubrey +Cecil +Damian +Darnell +Dillon +Emmanuel +Ernest +Jamar +Javaris +Ledarius +Leon +Martez +Max +Nicolas +Quintin +Rusty +Sherman +Stewart +Tanner +Tavaris +Antwon +Brady +Brannon +Brendan +Brenton +Britton +Clint +Collin +Deanthony +Demarco +Elliot +Jacques +Jerrell +Kameron +Kelly +Kelsey +Lakendrick +Lester +Miles +Neil +Omar +Skyler +Steve +Theodore +Wayne +Will +Alonzo +Andy +Cedrick +Channing +Corbin +Cordarius +Darrin +Dedrick +Derick +Dewayne +Donnie +Donovan +Ellis +Freddie +Ivan +Jackie +Jamaal +Kasey +Khiry +Leroy +Lyndon +Major +Owen +Zachariah +Ahmad +Antoine +Antwain +Avery +Bradford +Brantley +Chandler +Coleman +Damion +Damon +Daryl +Davis +Demetris +Deon +Deonte +Erick +Ezekiel +Grady +Graham +Herman +Hugh +Jamario +Jasper +Jody +Karl +Kendell +Lamarcus +Luther +Markus +Montez +Neal +Nelson +Norman +Oliver +Perry +Quintavious +Ricardo +Rico +Roosevelt +Scotty +Skylar +Tommie +Torrey +Weston +Willis +Ashley +Baby +Blaine +Brooks +Camden +Chester +Cor +Cordero +Dameon +Dusty +Frankie +Hamilton +Herbert +Houston +Hubert +Jacoby +Jacorey +Jarius +Jaron +Jarrell +Jayson +Jermey +Jimmie +Johnnie +Josiah +Ledarrius +Leslie +Lindsey +Marco +Marquise +Maxwell +Mickey +Myron +Peyton +Prince +Quenton +Quintez +Rakeem +Ralph +Regis +Scottie +Sheldon +Stacey +Stephon +Stevie +Tory +Tyson +Vernon +Westley +Wilbur +Amos +Angelo +Antron +Arnold +Ben +Bennie +Bradly +Bryson +Carson +Clark +Dale +Dalton +Danthony +Davin +Derrius +Devoris +Donnell +Dontavious +Erin +Francis +Garry +Gavin +Hakeem +Harry +Isiah +Jamey +Jamicheal +Jasmine +Jerel +Jeremie +Jermery +Jose +Juan +Kendarius +Kent +Keon +Kory +Kurt +Lemarcus +Lowell +Malcom +Markeith +Marty +Myles +Oscar +Otis +Prentice +Quindarius +Robbie +Robin +Roland +Ryne +Sam +Stacy +Tavares +Tobias +Torrance +Truman +Wilson +Wyatt +Zane +Christopher +Joshua +Justin +Michael +James +William +Matthew +John +Robert +Brandon +David +Andrew +Jonathan +Joseph +Jacob +Daniel +Jeremy +Cody +Charles +Timothy +Nicholas +Steven +Tyler +Thomas +Zachary +Benjamin +Anthony +Eric +Ryan +Patrick +Jordan +Stephen +Richard +Corey +Adam +Dustin +Kevin +Brian +Aaron +Marcus +Jason +Kenneth +Kyle +Samuel +Bradley +Ethan +Gregory +Caleb +Nathan +Alexander +Taylor +Jeffrey +Travis +Jesse +Cameron +Wesley +Austin +Jared +Mark +Phillip +Derrick +Paul +Antonio +Terry +Donald +Darius +Blake +Derek +Jeffery +Chase +Cory +Bryan +Jonathon +Alex +George +Hunter +Sean +Edward +Johnathan +Casey +Larry +Chad +Gary +Logan +Willie +Devin +Nathaniel +Ronald +Jerry +Keith +Mitchell +Christian +Bobby +Ricky +Shawn +Billy +Curtis +Garrett +Joel +Adrian +Brett +Reginald +Seth +Johnny +Kendrick +Tony +Courtney +Spencer +Colby +Douglas +Evan +Randall +Russell +Jarvis +Micheal +Alan +Carl +Frank +Raymond +Walter +Bryant +Clayton +Clinton +Demetrius +Dylan +Ladarius +Trevor +Jamie +Jessie +Jeremiah +Lucas +Rodney +Victor +Henry +Jarrod +Jimmy +Scott +Vincent +Colton +Desmond +Dexter +Malcolm +Maurice +Quinton +Terrance +Calvin +Philip +Randy +Terrence +Shane +Xavier +Brent +Demarcus +Ian +Luke +Trenton +Micah +Roderick +Allen +Deandre +Ronnie +Cornelius +Darryl +Jamarcus +Marquis +Zachery +Jon +Troy +Byron +Eddie +Kendall +Preston +Roger +Albert +Dennis +Dominique +Carlos +Cedric +Terrell +Cortez +Gabriel +Gerald +Johnathon +Kelvin +Stanley +Andre +Colin +Dalton +Danny +Landon +Mason +Craig +Dakota +Deangelo +Fredrick +Heath +Lance +Tevin +Tommy +Arthur +Franklin +Jermaine +Kristopher +Lee +Marvin +Darrell +Melvin +Quentin +Frederick +Julian +Kerry +Lawrence +Martin +Trent +Ashton +Barry +Clint +Coty +Isaac +Jamal +Joe +Trey +Erik +Forrest +Grant +Akeem +Charlie +Clarence +Darrius +Gavin +Judson +Orlando +Rickey +Zackery +Devon +Jack +Rashad +Roy +Todd +Warren +Damien +Darren +Elijah +Harrison +Jake +Jerome +Peter +Alvin +Demario +Kaleb +Martez +Parker +Skyler +Stuart +Carlton +Emmanuel +Ernest +Hayden +Lamar +Lonnie +Mario +Marshall +Shannon +Shaun +Brenton +Geoffrey +Harold +Isaiah +Jamar +Jay +Keenan +Leonard +Levi +Ross +Sidney +Tristan +Alfred +Antwon +Dewayne +Drew +Frankie +Harry +Maxwell +Morgan +Ray +Skylar +Wilson +Zackary +Bruce +Carson +Chandler +Cordarius +Darnell +Daryl +Dillon +Donovan +Horace +Jarred +Jerrod +Jody +Joey +Kody +Milton +Nicolas +Perry +Riley +Blakely +Brock +Claude +Clifford +Collin +Dallas +Demarco +Earnest +Houston +Jimmie +Julius +Lewis +Louis +Miles +Nickolas +Noah +Norman +Raphael +Rodriquez +Will +Brad +Bradford +Braxton +Broderick +Chadwick +Chance +Corbin +Demetris +Derick +Glenn +Hakeem +Jackson +Kameron +Kenny +Ladarrius +Lamarcus +Madison +Marion +Marquez +Marquise +Quincy +Quintin +Roosevelt +Rusty +Sheldon +Tracy +Wade +Alonzo +Alton +Avery +Brady +Cedrick +Chester +Clay +Denzel +Donnie +Eugene +Graham +Herbert +Howard +Jameson +Jamison +Karl +Kendal +Lorenzo +Mathew +Sam +Sammy +Steve +Tanner +Terence +Theodore +Tommie +Tyrone +Weston +Antoine +Aubrey +Bennie +Bernard +Blaine +Brannon +Cecil +Clifton +Dale +Damon +Darrin +Deon +Emanuel +Ezekiel +Fred +Gage +Hugh +Jamaal +Jamichael +Kadeem +Markell +Oliver +Ricardo +Rico +Stacey +Titus +Tobias +Wayne +Winston +Alec +Antwain +Antwone +Arsenio +Branden +Brantley +Brendan +Bryon +Cary +Destin +Devan +Dwight +Edwin +Elliott +Floyd +Garret +Grady +Jackie +Jamario +Jamel +Jayson +Jeremey +Johnnie +Josiah +Kent +Kirk +Leon +Leslie +Marc +Max +Nico +Nolan +Otis +Peyton +Roman +Scotty +Stacy +Sterling +Tremayne +Waylon +Wendell +Zane +Adarius +Ashley +Benjamen +Brooks +Carter +Chaz +Cole +Conner +Connor +Cortney +Damian +Dandre +Dangelo +Decarlos +Dion +Don +Drake +Dusty +Dwayne +Earl +Ellis +Garry +Glen +Harley +Harvey +Herman +Jarod +Jarrad +Jasper +Jerald +Jerrell +Jonas +Juan +Korey +Kristian +Laquinton +Leo +Lloyd +Markeith +Mickey +Miguel +Neal +Nelson +Pierre +Quenton +Ralph +Reuben +Roland +Ryne +Shelton +Stevie +Thaddeus +Torrey +Tory +Tyson +Allan +Angelo +Bret +Brody +Carey +Carrington +Chancellor +Clyde +Collins +Damarius +Dana +Darion +Davis +Deandra +Deandrea +Derrell +Eli +Elliot +Erin +Fletcher +Freddie +Gordon +Jace +Jacoby +Jamey +Jaquan +Jaron +Jarrell +Jarrett +Javaris +Jermiah +Jordon +Jose +Kadarius +Kasey +Keegan +Keldrick +Kendarius +Khiry +Kory +Lakendrick +Lester +Markus +Marlon +Martavious +Martinez +Marty +Montrez +Morris +Neil +Nigel +Payton +Quinten +Quintez +Renardo +Robbie +Roberto +Ron +Shaquille +Shelby +Sherman +Simon +Stewart +Sylvester +Telvin +Torey +Torrance +Tremaine +Tyree +Wallace +Christopher +Joshua +Michael +James +William +Justin +Brandon +John +Matthew +Robert +Jacob +David +Andrew +Joseph +Tyler +Jonathan +Cody +Daniel +Zachary +Jeremy +Charles +Nicholas +Steven +Timothy +Jordan +Anthony +Ryan +Thomas +Stephen +Patrick +Eric +Kevin +Benjamin +Richard +Corey +Kenneth +Kyle +Aaron +Taylor +Dustin +Austin +Adam +Samuel +Caleb +Marcus +Brian +Phillip +Cameron +Alexander +Wesley +Jason +Christian +Gregory +Travis +Jeffrey +Nathan +Jesse +Dylan +Jared +Bradley +Ethan +Hunter +Jeffery +Mark +Derrick +Paul +Antonio +Blake +Cory +Darius +Chase +Johnathan +Jonathon +Edward +Logan +Alex +Sean +Bryan +Terry +Larry +Spencer +Willie +Seth +Shawn +Casey +Douglas +Derek +George +Garrett +Randall +Ronald +Dakota +Devin +Donald +Terrance +Evan +Gary +Trevor +Rodney +Brett +Reginald +Bobby +Clinton +Colby +Scott +Tevin +Colton +Dalton +Johnny +Mitchell +Keith +Kendrick +Micheal +Chad +Ladarius +Tony +Billy +Curtis +Demetrius +Roderick +Jerry +Allen +Kelvin +Nathaniel +Philip +Shane +Clayton +Raymond +Micah +Courtney +Desmond +Frank +Henry +Lucas +Calvin +Deandre +Demarcus +Dennis +Adrian +Cornelius +Dillon +Kaleb +Preston +Trenton +Joel +Mason +Dominique +Jeremiah +Jimmy +Maurice +Alan +Gabriel +Jon +Kendall +Russell +Tommy +Xavier +Bryant +Cedric +Zachery +Andre +Brent +Carlos +Ian +Jamie +Jarvis +Jessie +Quinton +Roy +Troy +Eddie +Johnathon +Lee +Walter +Deangelo +Marvin +Tanner +Trent +Carl +Frederick +Jermaine +Mathew +Peter +Trey +Vincent +Arthur +Jake +Joe +Lance +Cortez +Forrest +Jarrod +Kristopher +Luke +Randy +Ricky +Terrell +Darryl +Malcolm +Terrence +Victor +Jackson +Morgan +Shannon +Dexter +Jerome +Marquis +Martin +Roger +Byron +Clarence +Darren +Landon +Danny +Devon +Harrison +Jack +Levi +Zackary +Damian +Darrell +Gavin +Isaac +Jamarcus +Jay +Kody +Stanley +Todd +Barry +Bruce +Charlie +Clint +Gerald +Grant +Hayden +Lawrence +Rickey +Ronnie +Warren +Chandler +Darrius +Heath +Julian +Louis +Mario +Marshall +Quentin +Skyler +Wayne +Albert +Dallas +Erik +Glenn +Houston +Julius +Kerry +Tristan +Carlton +Collin +Coty +Franklin +Pierre +Tyrone +Zackery +Connor +Damien +Dwight +Fredrick +Ladarrius +Nolan +Aubrey +Braxton +Clifford +Cole +Craig +Damion +Elijah +Graham +Howard +Rashad +Ross +Theodore +Chance +Devan +Lamar +Lewis +Lonnie +Parker +Quintin +Ray +Shaun +Alfred +Ashton +Brannon +Clay +Damon +Dedrick +Denzel +Geoffrey +Harold +Jamichael +Jerrod +Keenan +Kelly +Lorenzo +Martez +Melvin +Noah +Scotty +Shelby +Terence +Winston +Alonzo +Antoine +Carson +Cecil +Darnell +Destin +Don +Jackie +Joey +Leland +Rodrick +Roman +Tracy +Bernard +Chadwick +Demario +Derick +Donnie +Dwayne +Earl +Ernest +Glen +Jacoby +Jamal +Jamar +Jamison +Jarod +Jody +Jonah +Leonard +Milton +Myron +Sidney +Alec +Antwan +Brenton +Clifton +Corbin +Dandre +Darrin +Davis +Demarius +Dimitri +Drake +Earnest +Edwin +Emmanuel +Freddie +Jamel +Jaron +Jerrell +Jimmie +Korey +Lamarcus +Markus +Marlon +Maxwell +Miguel +Norman +Perry +Shaquille +Sylvester +Thaddeus +Torey +Wade +Weston +Zachariah +Addison +Alton +Alvin +Bradford +Brandan +Brock +Carter +Colin +Darrel +Deonte +Dewayne +Dominque +Drew +Isaiah +Jace +Jasper +Jordon +Jose +Kasey +Kenny +Kristian +Lakendrick +Leon +Marty +Ricardo +Riley +Sam +Scottie +Sheldon +Telvin +Tommie +Tyree +Tyrell +Will +Wyatt +Allan +Baby +Benny +Bo +Brad +Bradly +Brady +Branden +Cedrick +Coleman +Cordarrius +Dale +Daryl +Deanthony +Dejuan +Demarco +Devonte +Dontavious +Donte +Erick +Evander +Frankie +Guy +Herbert +Jamaal +Jarrett +Johnnie +Judson +Keenen +Keldrick +Kendal +Lukas +Luther +Marquez +Max +Nickolas +Nicolas +Octavius +Orlando +Rico +Robbie +Ryne +Sage +Shelton +Stefan +Sterling +Steve +Stuart +Tavaris +Toby +Tucker +Wallace +Wilson +Blaine +Brennan +Broderick +Clyde +Codey +Cordarius +Dana +Dangelo +Demetri +Demetric +Dominic +Donny +Dusty +Eli +Ellis +Griffin +Hakeem +Issac +Javaris +Javon +Jayson +Josiah +Karl +Kendarius +Kentavious +Keyon +Kirk +Kwame +Ledarius +London +Madison +Marion +Marquise +Miles +Montrell +Myles +Nigel +Oliver +Prince +Ralph +Raphael +Reuben +Shedrick +Stephan +Torrence +Tyson +Virgil +Willard +Willis +Akeem +Andy +Antwon +Ashley +Avery +Barrett +Bennie +Brooks +Cary +Cliffton +Codi +Cordero +Damarcus +Darian +Darion +Demarkus +Dillan +Dillion +Domonique +Elliot +Elliott +Eugene +Fernando +Forest +Gage +Garret +Gilbert +Grayson +Harley +Horace +Isiah +Jabari +Jacorey +Jameson +Jamil +Jaquan +Jasmine +Javier +Javoris +Jerrick +Juan +Keaton +Kentrell +Kirby +Kurt +Ladarious +Leo +Lesley +Leslie +Lester +Marc +Marquell +Morris +Nehemiah +Nelson +Paris +Payton +Perez +Reed +Reid +Robin +Roosevelt +Sebastian +Sherman +Stetson +Stewart +Terance +Toney +Tracey +Tremaine +Tremayne +Tyrus +Wendell +Christopher +Joshua +James +William +Michael +Brandon +Justin +John +Matthew +Jacob +Andrew +Robert +Joseph +David +Tyler +Cody +Zachary +Jonathan +Daniel +Nicholas +Charles +Jeremy +Ryan +Steven +Timothy +Aaron +Thomas +Patrick +Anthony +Dylan +Benjamin +Austin +Eric +Jordan +Alexander +Richard +Stephen +Corey +Taylor +Adam +Kevin +Kyle +Samuel +Dustin +Bradley +Kenneth +Nathan +Jesse +Travis +Caleb +Cameron +Hunter +Brian +Christian +Gregory +Jason +Wesley +Marcus +Blake +Jeffrey +Tevin +Dillon +Ethan +Jared +Cory +Jonathon +Alex +Mark +Sean +Phillip +Evan +Derrick +Logan +Antonio +Paul +Casey +Seth +Jeffery +Edward +Chase +Devin +Willie +Donald +Bryan +Shawn +Colby +Derek +Mason +Ronald +Reginald +Darius +Johnathan +Trevor +Dakota +Curtis +Nathaniel +Colton +George +Jackson +Garrett +Bobby +Devante +Mitchell +Scott +Kendrick +Terrance +Trenton +Jerry +Larry +Clayton +Gary +Ian +Terry +Brett +Deandre +Malcolm +Micheal +Roderick +Rodney +Tanner +Zachery +Demetrius +Micah +Dalton +Jimmy +Joel +Ladarius +Shane +Keith +Preston +Clinton +Randall +Xavier +Desmond +Chad +Jamal +Johnny +Carl +Connor +Gerald +Philip +Terrence +Billy +Brent +Landon +Luke +Trey +Alan +Cornelius +Frederick +Walter +Demarcus +Devonte +Douglas +Jamie +Russell +Forrest +Jarvis +Raymond +Spencer +Victor +Adrian +Dominique +Henry +Trent +Calvin +Cedric +Courtney +Frank +Gabriel +Jake +Maurice +Ricky +Allen +Jack +Jon +Kelvin +Randy +Zackary +Bryant +Carlos +Dennis +Jeremiah +Jessie +Morgan +Zackery +Johnathon +Parker +Tony +Bruce +Darryl +Gavin +Kristopher +Craig +Fredrick +Joe +Levi +Marvin +Quentin +Terrell +Vincent +Andre +Devon +Jerome +Darren +Deangelo +Dexter +Eddie +Grant +Harrison +Lucas +Martin +Roy +Tommy +Coty +Elijah +Heath +Isaac +Lance +Shannon +Troy +Arthur +Byron +Collin +Darrell +Jamarcus +Jermaine +Lee +Roger +Stuart +Warren +Dallas +Hayden +Noah +Quinton +Rickey +Shaquille +Clarence +Colin +Damian +Devonta +Melvin +Tyrone +Charlie +Clint +Davis +Kameron +Ross +Albert +Aubrey +Carlton +Clifton +Denzel +Julian +Kaleb +Lawrence +Marquis +Marshall +Shelby +Skylar +Stanley +Weston +Wilson +Carson +Franklin +Jalen +Jay +Kerry +Mathew +Peter +Riley +Telvin +Terence +Akeem +Ashton +Cortez +Darrius +Dominic +Donnie +Eugene +Korey +Mario +Miles +Nicolas +Ronnie +Alec +Barry +Brady +Danny +Deonte +Erik +Isaiah +Jacoby +Jarred +Kendall +Leonard +Lewis +Lonnie +Marquise +Scotty +Sidney +Skyler +Alvin +Arron +Branden +Braxton +Carter +Cole +Cordarius +Dalvin +Damon +Daryl +Devan +Emmanuel +Harry +Houston +Jamichael +Joey +Judson +Marlon +Orlando +Rashad +Shaun +Todd +Broderick +Carey +Chance +Chandler +Darnell +Demarco +Deon +Devontae +Dwight +Griffin +Jerrod +Jose +Kody +Ladarrius +Louis +Markus +Peyton +Sawyer +Tracy +Tre +Wayne +Will +Antwan +Brody +Clifford +Destin +Dion +Donovan +Earl +Ernest +Harold +Howard +Jamel +Jordon +Juan +Kenny +Lorenzo +Marc +Marquez +Max +Norman +Payton +Reid +Ricardo +Toby +Ty +Tyrell +Brad +Bryce +Dale +Damien +Deanthony +Demario +Dewayne +Dillan +Drew +Earnest +Geoffrey +Grady +Julius +Kendarius +Lamar +Leon +Lloyd +Nickolas +Pierre +Quincy +Rodrick +Stewart +Alonzo +Brendan +Brennan +Clay +Davonte +Dillion +Dimitri +Dominque +Edwin +Hakeem +Jackie +Jacorey +Jamison +Jarrett +Jarrod +Jasper +Jerrell +Lamarcus +Leslie +Mack +Maxwell +Nelson +Oliver +Quintin +Raheem +Rakeem +Roman +Tommie +Tristan +Tucker +Wyatt +Alfred +Allan +Alton +Antoine +Blaine +Braden +Brannon +Brantley +Brenton +Camron +Cecil +Chadwick +Conner +Dandre +Darian +Deshawn +Dominick +Dontavius +Ellis +Gage +Glenn +Harley +Horace +Isiah +Jabari +Jacolby +Jacques +Jamar +Jamario +Javier +Jodeci +Josiah +Kasey +Keandre +Kristian +Lester +Malcom +Marques +Martez +Miguel +Milton +Myron +Otis +Raphael +Rhett +Roosevelt +Sterling +Steve +Theodore +Titus +Tyree +Vernon +Winston +Zachariah +Zane +Adarius +Amos +Andy +Ashley +Bernard +Cadarius +Chadrick +Channing +Chauncey +Chaz +Chester +Codey +Courtland +Darien +Darrin +Dedrick +Deion +Demetric +Demetris +Don +Ervin +Garret +Garry +Grayson +Guy +Ivan +Jaron +Jimmie +Jody +Kelsey +Keon +Laron +Ledarius +Markeith +Morris +Neil +Nigel +Paris +Reece +Reese +Rex +Sheldon +Tarrance +Tobias +Wendell +Anderson +Angelo +Bennett +Bennie +Brendon +Britton +Clark +Cleveland +Clyde +Coleman +Cordell +Coy +Damarcus +Darious +Deandrea +Demetrice +Dequarius +Derick +Derrell +Derrius +Desmon +Domonique +Donavan +Dwayne +Dylon +Edgar +Eli +Elliot +Emanuel +Erick +Ezekiel +Fabian +Frankie +Fred +Freddie +Graham +Herbert +Jadarius +Jamarius +Jaquan +Jarod +Javaris +Javarius +Javonte +Javoris +Jayson +Jeff +Jessy +Johnnie +Jonah +Kareem +Keenan +Lakendrick +Leland +Leroy +Luis +Luther +Madison +Marion +Matt +Neal +Oscar +Quindarius +Remington +Rico +Scottie +Sherman +Solomon +Stacey +Stacy +Stefan +Stetson +Stevie +Sylvester +Talmadge +Tavaris +Tavoris +Torey +Tory +Trace +Travon +Wade +Walker +Wilbert +Wiley +Christopher +Michael +James +William +Joshua +Brandon +John +Justin +Matthew +Jacob +Tyler +David +Robert +Zachary +Cody +Andrew +Austin +Joseph +Jonathan +Daniel +Nicholas +Jordan +Charles +Aaron +Ryan +Timothy +Thomas +Anthony +Steven +Samuel +Jeremy +Alexander +Benjamin +Corey +Kevin +Hunter +Stephen +Taylor +Adam +Dylan +Patrick +Kyle +Eric +Richard +Dustin +Caleb +Nathan +Christian +Jesse +Bradley +Kenneth +Marcus +Jeffrey +Brian +Devin +Jason +Wesley +Cameron +Jared +Travis +Mark +Gregory +Antonio +Logan +Blake +Ethan +Alex +Chase +Dakota +Darius +Mason +Paul +Phillip +Dalton +Spencer +Trevor +Garrett +Johnathan +Terry +Derrick +Evan +Jeffery +Jonathon +Sean +Seth +Colby +Cory +Mitchell +Dillon +Nathaniel +Connor +Edward +Tanner +Xavier +Scott +Colton +Willie +Rodney +Shaquille +Curtis +Larry +Preston +Reginald +Shawn +Ronald +Bryan +Clayton +Jerry +Lucas +Tevin +Casey +Donald +Ladarius +Demetrius +Derek +Douglas +George +Chad +Keith +Terrance +Jackson +Ian +Demarcus +Shane +Tony +Billy +Bobby +Brett +Cedric +Devonte +Gary +Johnny +Adrian +Landon +Trenton +Jake +Jalen +Jamarcus +Jarvis +Kendall +Randall +Troy +Zachery +Forrest +Joel +Zackary +Devon +Jeremiah +Parker +Quinton +Walter +Dallas +Henry +Jamal +Gerald +Micah +Roderick +Allen +Courtney +Devante +Grant +Raymond +Ricky +Trey +Deandre +Desmond +Kaleb +Kelvin +Skyler +Terrence +Dominique +Eddie +Jamie +Russell +Carlos +Gabriel +Jessie +Jimmy +Maurice +Philip +Randy +Roger +Alan +Arthur +Carl +Frederick +Kendrick +Kristopher +Lawrence +Luke +Brady +Colin +Collin +Dennis +Hayden +Lee +Tyrone +Warren +Brent +Clarence +Darryl +Malcolm +Ronnie +Victor +Chandler +Darrell +Johnathon +Raheem +Vincent +Bryant +Cole +Drew +Elijah +Harrison +Jon +Noah +Shelby +Stanley +Andre +Ashton +Avery +Clinton +Cortez +Craig +Gavin +Jack +Jarrod +Marquis +Marvin +Braxton +Calvin +Danny +Devonta +Fredrick +Kameron +Mathew +Morgan +Sidney +Barry +Damian +Frank +Isaac +Myles +Riley +Terrell +Todd +Zackery +Dexter +Donovan +Jarred +Julian +Lance +Marshall +Shannon +Skylar +Bruce +Charlie +Cornelius +Jarrett +Jermaine +Kerry +Miles +Nickolas +Nicolas +Quentin +Rashad +Darren +Harley +Heath +Ladarrius +Louis +Marquez +Terence +Tommy +Clint +Conner +Erik +Harold +Jamar +Jay +Jerome +Martin +Peter +Ricardo +Trent +Aubrey +Byron +Carson +Chance +Clay +Clifton +Damon +Deangelo +Denzel +Drake +Emmanuel +Levi +Marquise +Rickey +Ross +Telvin +Albert +Antoine +Brenton +Carlton +Cecil +Conor +Damien +Damion +Deonte +Devan +Dominic +Edwin +Houston +Isaiah +Jamichael +Joe +Lamar +Leonard +Melvin +Roy +Tracy +Alvin +Brantley +Coleman +Coty +Demario +Frankie +Glenn +Jaylon +Joey +Lorenzo +Luther +Sawyer +Shaun +Stuart +Tre +Trevon +Walker +Branden +Dalvin +Darian +Demarco +Deon +Derick +Deshawn +Destin +Donnie +Earl +Graham +Jayson +Johnnie +Juan +Kody +Kristian +Lewis +Lonnie +Markus +Milton +Nigel +Nolan +Reid +Sebastian +Sterling +Tyrell +Weston +Will +Wilson +Winston +Bernard +Bradly +Brock +Brody +Darien +Darion +Darrius +Daryl +Dejuan +Denzell +Dillion +Dwight +Geoffrey +Griffin +Javonte +Jody +Jose +Lamarcus +Leon +Marc +Micheal +Perry +Ralph +Shelton +Tavaris +Thaddeus +Theodore +Tucker +Akeem +Alec +Ben +Brendan +Chadwick +Clifford +Cordarius +Davis +Dean +Deion +Demetric +Deonta +Devontae +Ernest +Grayson +Howard +Jakob +Judson +Karl +Kasey +Keenan +Lloyd +Lukas +Madison +Martez +Maxwell +Nelson +Oliver +Omar +Peyton +Robin +Sam +Sherman +Stephon +Tremaine +Tristan +Ty +Wayne +Wendell +Zachariah +Blaine +Blakely +Braden +Brenden +Brooks +Chaz +Dale +Darnell +Dedrick +Denver +Elliott +Eugene +Franklin +Grady +Jacques +Jamel +Jamison +Jasper +Jimmie +Josiah +Kendal +Kendarius +Keon +Korey +Max +Mickey +Orlando +Pierre +Quincy +Quintin +Ray +Rodrick +Tray +Alfred +Allan +Alphonso +Amos +Ashley +Beau +Brad +Broderick +Camron +Carter +Cary +Chester +Clark +Coby +Cordarrius +Dandre +Danthony +Davonte +Demarius +Demarkus +Demetris +Dequan +Dewayne +Dillan +Dorian +Eli +Floyd +Freddie +Garrison +Holden +Hudson +Ivan +Jacoby +Jaleel +Jamarius +Jarmarcus +Jerald +Jermey +Jerrell +Jerrod +Jonah +Jordon +Justine +Juwan +Kelly +Ledarius +Mackenzie +Mario +Markel +Miguel +Norman +Owen +Rakeem +Raven +Reed +Rhett +Rocky +Stacey +Sylvester +Williams +Wyatt +Zane +Alfonso +Alton +Andy +Antwan +Antwon +Aron +Baby +Christina +Colt +Colten +Cullen +Dante +Darrian +Darrin +Davante +Davey +Deante +Demonte +Deontae +Deontre +Dionte +Diquan +Dominick +Don +Dontavious +Dontrell +Dwayne +Ellis +Emmett +Erick +Erin +Everett +Freddrick +Glen +Harris +Harry +Hugh +Isiah +Issac +Jackie +Jacorey +Jadarius +Jalon +Jamorris +Jarad +Jaron +Javon +Javonta +Javoris +Jaylen +Jerod +Julius +Justice +Keaton +Kedrick +Kelby +Kendrell +Kristofer +Labarron +Lavonte +Leo +Leroy +Lincoln +Loren +Luis +Mack +Malcom +Marion +Miller +Montrell +Morris +Moses +Nathanael +Neal +Nick +Octavius +Raphael +Rodriguez +Rodriquez +Rusty +Scottie +Sedrick +Shedrick +Stefan +Stephan +Steve +Stevie +Stewart +Tamarcus +Toby +Turner +Christopher +William +James +Joshua +Michael +John +Justin +Brandon +Austin +Matthew +Jacob +Tyler +Zachary +Andrew +David +Robert +Joseph +Cody +Nicholas +Daniel +Jonathan +Jordan +Thomas +Charles +Ryan +Timothy +Steven +Hunter +Anthony +Aaron +Dustin +Benjamin +Samuel +Dylan +Alexander +Jeremy +Richard +Eric +Caleb +Jesse +Cameron +Taylor +Stephen +Kyle +Adam +Christian +Kevin +Patrick +Nathan +Brian +Marcus +Devin +Jared +Kenneth +Corey +Dalton +Jason +Alex +Dakota +Logan +Wesley +Jeffrey +Bradley +Travis +Blake +Mark +Seth +Mason +Phillip +Trevor +Antonio +Derrick +Garrett +Gregory +Edward +Chase +Ethan +Johnathan +Colby +Paul +Jackson +Sean +Dillon +Jeffery +Xavier +Bryan +Cory +Mitchell +Casey +Darius +Preston +Bobby +Donald +Nathaniel +Deandre +Demarcus +Evan +Jalen +Ronald +Jerry +Zackary +Colton +Lucas +Terry +Tevin +Forrest +Jonathon +Brett +Demetrius +Hayden +Connor +Curtis +Johnny +Luke +Willie +Gary +Keith +Larry +Allen +Gabriel +Tanner +Andre +George +Jake +Ladarius +Landon +Jamal +Spencer +Clayton +Derek +Devonte +Douglas +Ian +Billy +Henry +Jamarcus +Shawn +Jeremiah +Tony +Trenton +Troy +Grant +Jarvis +Joel +Micah +Rodney +Shaquille +Alan +Jessie +Kendall +Raymond +Roderick +Russell +Desmond +Devon +Isaac +Kaleb +Reginald +Scott +Zachery +Brent +Elijah +Jimmy +Morgan +Randall +Terrance +Trey +Brady +Calvin +Jon +Quinton +Chad +Randy +Walter +Carl +Collin +Johnathon +Peter +Rashad +Frederick +Kelvin +Noah +Avery +Courtney +Devante +Kendrick +Levi +Tommy +Adrian +Jay +Lawrence +Marquis +Shane +Terrence +Chandler +Frank +Harrison +Martin +Philip +Riley +Skylar +Vincent +Alec +Damien +Darryl +Eddie +Jack +Jonah +Lee +Ricky +Trent +Tyrone +Dennis +Dominique +Joe +Roger +Ronnie +Skyler +Zackery +Damian +Dexter +Gage +Jarrod +Julian +Malcolm +Parker +Stanley +Terrell +Victor +Braxton +Carlos +Cedric +Clay +Colin +Kristopher +Maurice +Roy +Bryant +Cole +Denzel +Devonta +Gerald +Jamie +Jerome +Kody +Lance +Marshall +Melvin +Micheal +Sidney +Clinton +Conner +Dallas +Danny +Darrell +Darrius +Deonte +Donovan +Franklin +Lorenzo +Quentin +Shannon +Albert +Chance +Cornelius +Darren +Devan +Houston +Jarrett +Nicolas +Bruce +Carson +Fredrick +Jaylon +Lonnie +Miles +Nickolas +Terence +Todd +Arthur +Cortez +Davis +Deon +Drake +Drew +Erik +Jarred +Justice +Kameron +Mario +Mathew +Weston +Ashton +Aubrey +Brendan +Byron +Craig +Darian +Deion +Emmanuel +Graham +Griffin +Jermaine +Lane +Maxwell +Rickey +Wilson +Brannon +Carter +Charlie +Clarence +Damion +Damon +Dewayne +Harley +Howard +Jaquan +Jimmie +Judson +Keandre +Kendarius +Leon +Marvin +Nelson +Payton +Barry +Carlton +Darnell +Deanthony +Devontae +Ernest +Grayson +Jamichael +Juan +Kerry +Ladarrius +Marlon +Marquez +Marquise +Peyton +Quincy +Sebastian +Stuart +Alfred +Alonzo +Coleman +Darien +Darion +Destin +Donte +Dwight +Eugene +Geoffrey +Heath +Isaiah +Jacoby +Jamar +Joey +Jose +Julius +Milton +Nigel +Oliver +Orlando +Quintin +Roman +Ross +Addison +Ben +Brad +Brock +Bryce +Clifford +Clifton +Clint +Deangelo +Demario +Deontae +Dorian +Elliott +Emanuel +Harold +Horace +Jamison +Kristian +Lamarcus +Leonard +Louis +Myles +Nolan +Raheem +Shaun +Sheldon +Telvin +Tracy +Trevon +Ty +Walker +Wyatt +Zachariah +Branden +Cordarius +Dejuan +Deshawn +Dominic +Dominick +Donnie +Dontavious +Edwin +Eli +Freddie +Gavin +Glenn +Hakeem +Jadarius +Jakob +Javaris +Javonte +Jaylen +Juwan +Kadarius +Keldrick +Korey +Leroy +Lewis +Markeith +Markus +Marquel +Neil +Otis +Sawyer +Shelby +Simon +Solomon +Sterling +Titus +Tucker +Warren +Wayne +Akeem +Alton +Alvin +Brantley +Brody +Corbin +Coty +Dakoda +Dan +Dandre +Darrion +Demarco +Deonta +Dequan +Derick +Grady +Holden +Hugh +Huner +Isiah +Jackie +Jacorey +Jamario +Jamel +Jarmarcus +Jerrell +Jerrod +Keonte +Keyon +Khari +Luther +Madison +Nathanael +Prince +Rakeem +Ray +Rodrick +Shelton +Stetson +Tavares +Ted +Travon +Tre +Tyree +Winston +Andy +Anton +Austen +Auston +Bailey +Brooks +Camron +Dale +Dalvin +Darrian +Darrien +Daulton +Davonte +Dedrick +Demetris +Deondre +Dusty +Dwayne +Ervin +Garret +Guy +Herman +Hudson +Israel +Ivan +Jamaal +Jamarius +Jaron +Jaylin +Kedric +Kelton +Kendell +Kenny +Khalil +Kolby +Lamar +Laquinton +Lawson +Marco +Max +Montrell +Myron +Quintez +Ramon +Scottie +Scotty +Stephon +Toby +Trevin +Tylor +Wade +Zane +Alden +Antoine +Antwan +Benton +Blaine +Bradford +Brenden +Brennan +Chaz +Clyde +Courtland +Coy +Dante +Daquan +Daryl +Davey +Davin +Deante +Demetric +Deshun +Dillan +Dion +Earl +Earnest +Elisha +Ellis +Forest +Frankie +Harry +Herbert +Ishmael +Jace +Jajuan +Jalin +Jamarkus +Jameson +Jaquarius +Jasper +Javarius +Jesus +Jody +Keenan +Kentrell +Lester +Lukas +Marion +Martez +Marty +Morris +Neal +Pierre +Quandarius +Quindarius +Ralph +Reid +Reuben +Ricardo +Robin +Rodriquez +Rolando +Rusty +Sedrick +Shaquan +Sherman +Stacy +Steve +Terell +Theodore +Tommie +Torrey +Tory +Tyran +Westley +Will +William +Christopher +James +Michael +Joshua +Austin +Jacob +Brandon +Matthew +Justin +John +Tyler +Zachary +Robert +David +Joseph +Andrew +Jonathan +Nicholas +Cody +Daniel +Hunter +Jordan +Charles +Dylan +Thomas +Ryan +Anthony +Caleb +Aaron +Timothy +Christian +Benjamin +Samuel +Dustin +Steven +Alexander +Taylor +Patrick +Jeremy +Stephen +Dakota +Devin +Cameron +Richard +Corey +Kenneth +Kevin +Logan +Jesse +Nathan +Adam +Jason +Eric +Dalton +Gregory +Kyle +Marcus +Wesley +Jeffrey +Brian +Blake +Ethan +Jared +Mason +Bradley +Chase +Alex +Colton +Evan +Trevor +Sean +Phillip +Connor +Garrett +Johnathan +Hayden +Colby +Jackson +Nathaniel +Seth +Antonio +Mark +Derrick +Paul +Jeffery +Chandler +George +Tanner +Travis +Darius +Trenton +Clayton +Cory +Luke +Noah +Casey +Elijah +Preston +Jonathon +Tristan +Brett +Bryan +Terry +Demetrius +Keith +Ladarius +Rodney +Willie +Demarcus +Grant +Jimmy +Ronald +Billy +Bobby +Donald +Lucas +Xavier +Deandre +Edward +Larry +Mitchell +Zachery +Micah +Jalen +Jeremiah +Jerry +Shawn +Ian +Isaac +Jake +Brady +Gary +Reginald +Johnny +Landon +Allen +Curtis +Gabriel +Jack +Jamarcus +Spencer +Terrance +Braxton +Derek +Devonte +Carlos +Collin +Malik +Scott +Zackary +Dillon +Douglas +Kendrick +Parker +Troy +Forrest +Randall +Tommy +Calvin +Henry +Tony +Chance +Jessie +Jon +Jonah +Tevin +Victor +Walter +Zackery +Alec +Carl +Cedric +Kaleb +Khalil +Peyton +Arthur +Brent +Desmond +Gavin +Gerald +Levi +Morgan +Roderick +Ronnie +Shane +Chad +Devon +Frederick +Kelvin +Riley +Russell +Terrell +Carson +Jamal +Jamie +Joel +Quinton +Raymond +Skyler +Ashton +Davis +Devonta +Eddie +Malcolm +Maurice +Trey +Cole +Colin +Courtney +Kendall +Byron +Dennis +Drew +Harrison +Marquis +Bryant +Cornelius +Deonte +Isaiah +Lewis +Micheal +Randy +Shannon +Terrence +Trent +Damien +Jarvis +Kristopher +Rashad +Ricky +Roger +Alan +Charlie +Clay +Conner +Dallas +Damian +Danny +Dominique +Franklin +Juan +Lee +Mathew +Avery +Carter +Darryl +Devante +Donovan +Frank +Heath +Lance +Lane +Louis +Shaquille +Adrian +Damon +Deangelo +Dexter +Dominic +Glenn +Jaylen +Miles +Peter +Philip +Quentin +Skylar +Vincent +Warren +Anfernee +Bailey +Clarence +Deion +Devan +Harley +Houston +Jay +Jermaine +Kolby +Lawrence +Marquise +Nickolas +Roy +Stanley +Tristen +Wyatt +Darrell +Destin +Dewayne +Grayson +Jaquan +Jaylon +Jose +Justice +Kameron +Lonnie +Marvin +Sawyer +Sidney +Zane +Albert +Barry +Brendan +Brennan +Carlton +Clinton +Darren +Darrius +Deanthony +Deondre +Graham +Jarred +Lorenzo +Marshall +Andre +Coleman +Gage +Griffin +Howard +Jarrett +Jaylin +Joe +Johnathon +Julian +Kendarius +Ladarrius +Nigel +Shaun +Tracy +Tyrone +Wilson +Braden +Damion +Drake +Elliott +Fredrick +Jacoby +Javaris +Julius +Kerry +Kody +Lamarcus +Reed +Theodore +Brantley +Cade +Dale +Ernest +Jacques +Jamar +Jamison +Javon +Joey +Josiah +Kendal +Leonard +Leslie +Madison +Marlon +Marquez +Melvin +Nelson +Nicolas +Orlando +Raheem +Sebastian +Sterling +Travon +Tyree +Tyrus +Brock +Clifton +Clint +Cortez +Craig +Darian +Denzel +Devontae +Erik +Erin +Harold +Harry +Jamarius +Jerome +Johnnie +Kadarius +Martin +Maxwell +Neil +Payton +Quintin +Ross +Shelby +Sherman +Tucker +Will +Addison +Antwon +Arron +Branden +Brannon +Broderick +Bruce +Chadwick +Coby +Dalvin +Dandre +Darrian +Davonte +Dejuan +Demarco +Demarius +Deon +Dillan +Duncan +Ivan +Jabari +Jalon +Jamel +Jerrod +Jesus +Keegan +Keontae +Kurtis +Kyler +Mario +Martez +Myles +Quincy +Quintarius +Reid +Terence +Todd +Ty +Wayne +Alvin +Aubrey +Bernard +Brenton +Brooks +Cordarius +Coty +Dangelo +Dante +Dequan +Dillion +Dionte +Donnie +Erick +Francisco +Freddie +Gordon +Hudson +Israel +Jarrod +Javonte +Jimmie +Judson +Kahlil +Karl +Kelly +Kendarious +Keon +Kristian +Ladarious +Leon +Marc +Omar +Owen +Perry +Quinn +Ralph +Rashaan +Rhett +Simon +Stuart +Sylvester +Tavaris +Triston +Wade +Walker +Weston +Winston +Alfred +Auston +Blaine +Bradford +Brody +Bryce +Cadarius +Cecil +Cedrick +Darien +Dayton +Delvin +Demarkus +Deontae +Deshawn +Donnell +Donte +Dusty +Dwight +Earl +Earnest +Edwin +Emmanuel +Eugene +Hugh +Jadarius +Keldrick +Kenny +Kiante +Kijana +Kolton +Korey +Kurt +Lamar +Leroy +Lukas +Malachi +Marco +Max +Miguel +Mikel +Montel +Nathanial +Nikolas +Nolan +Quindarius +Ray +Rocky +Rodriquez +Sam +Stetson +Thaddeus +Toby +Tomas +Tommie +Tre +Trevon +Tristian +Turner +Tyrin +Tyus +Wendell +Willis +Zachariah +Alejandro +Ali +Allan +Alonzo +Andrea +Antoine +Blakeley +Brad +Brenden +Caden +Cedarius +Chasen +Chris +Clark +Clifford +Cordell +Deante +Deshaun +Dezmond +Dominick +Dylon +Easton +Ellis +Emmitt +Ervin +Everett +Ezekiel +Geoffrey +Holden +Issac +Jacorey +Jalan +Jamario +Jameson +Jamichael +Jase +Javoris +Jermey +Jerrell +Jody +Jonas +Jordon +Justus +Justyn +Kai +Kane +Karlton +Keandre +Keanthony +Keenan +Kelby +Laderrick +Lakendrick +Latrell +Lloyd +Mackenzie +Manuel +Markell +Marlin +Marquell +Marques +Martavius +Mckenzie +Nathanael +Octavius +Otis +Quintrell +Rakeem +Rashawn +Rashun +Ricardo +Rickey +Roman +Romello +Ruben +Rusty +Scotty +Semaj +Solomon +Stacy +Sydney +Tavares +Theo +Torey +Torrey +Tristin +Tylor +Vance +Vernon +William +Michael +Austin +Christopher +James +Joshua +Jacob +John +Matthew +Justin +Brandon +Tyler +Joseph +Zachary +Andrew +Robert +David +Nicholas +Jonathan +Hunter +Thomas +Daniel +Jordan +Charles +Christian +Ryan +Samuel +Cody +Timothy +Anthony +Dylan +Caleb +Benjamin +Alexander +Logan +Aaron +Steven +Cameron +Dustin +Eric +Patrick +Kyle +Richard +Stephen +Dakota +Jason +Jeremy +Kevin +Devin +Ethan +Tristan +Kenneth +Adam +Jesse +Marcus +Taylor +Brian +Dalton +Noah +Corey +Nathan +Wesley +Bradley +Chase +Malik +Jeffrey +Jackson +Jared +Mason +Blake +Chandler +Trevor +Alex +Gregory +Antonio +Johnathan +Mark +Colton +Tanner +Edward +Garrett +Seth +Connor +Nathaniel +Phillip +Travis +Jerry +Clayton +George +Hayden +Landon +Bryan +Jeffery +Gabriel +Ian +Lucas +Colby +Evan +Isaiah +Darius +Derrick +Peyton +Donald +Elijah +Willie +Jonathon +Mitchell +Paul +Spencer +Trenton +Reginald +Terry +Preston +Xavier +Bobby +Cory +Brett +Isaac +Kaleb +Randall +Sean +Collin +Braxton +Jalen +Luke +Micah +Roderick +Scott +Dillon +Jeremiah +Rodney +Deandre +Demarcus +Devon +Johnny +Riley +Ronald +Douglas +Larry +Derek +Jack +Raymond +Casey +Grant +Shawn +Brady +Demetrius +Jamal +Jonah +Zackary +Harrison +Jamarcus +Jimmy +Trey +Walter +Chance +Terrance +Bailey +Bryant +Cole +Jake +Rashad +Billy +Chad +Tony +Colin +Henry +Kelvin +Ladarius +Parker +Zachery +Zackery +Alec +Avery +Conner +Devante +Gary +Micheal +Calvin +Curtis +Frederick +Jarrett +Johnathon +Vincent +Allen +Carson +Devonte +Randy +Trent +Andre +Darrell +Deonte +Desmond +Russell +Skyler +Terrell +Adrian +Alan +Darryl +Jarvis +Kendrick +Levi +Miles +Tristen +Brent +Cedric +Grayson +Joe +Jose +Keith +Maurice +Peter +Quinton +Ricky +Skylar +Eddie +Marquis +Morgan +Nicolas +Ronnie +Triston +Braden +Carl +Carter +Damian +Dangelo +Danny +Donovan +Frank +Gerald +Houston +Jaylon +Jessie +Joel +Juan +Kendall +Kendarius +Lane +Quentin +Victor +Ashton +Davis +Drew +Arthur +Dallas +Damion +Gavin +Julian +Kristopher +Lance +Marshall +Tommy +Wyatt +Clay +Courtney +Deanthony +Denzel +Jermaine +Malcolm +Payton +Tevin +Tyrone +Walker +Damon +Dennis +Drake +Jay +Khalil +Mathew +Nickolas +Shane +Stephon +Terrence +Troy +Weston +Albert +Carlos +Deangelo +Deon +Dexter +Eli +Griffin +Jon +Justice +Kyler +Martin +Miguel +Stanley +Wilson +Brantley +Coleman +Darrius +Emmanuel +Graham +Lee +Owen +Raheem +Rickey +Roy +Shannon +Tracy +Barry +Brody +Cornelius +Deion +Dominique +Franklin +Gage +Harry +Heath +Jacoby +Kameron +Marquez +Marquise +Martavious +Marvin +Myles +Philip +Ross +Anfernee +Brendan +Brenton +Brock +Cortez +Damien +Darren +Deshawn +Emanuel +Jamichael +Jaquan +Jaylan +Jaylin +Josiah +Kody +Lawrence +Mario +Roger +Todd +Tyrell +Warren +Will +Zane +Aubrey +Branden +Brannon +Charlie +Dalvin +Earnest +Jamel +Julius +Maxwell +Sawyer +Shelby +Ty +Tyree +Alonzo +Alvin +Brooks +Bruce +Carlton +Clarence +Clifford +Cullen +Dandre +Devontae +Dillan +Dominic +Dontae +Harold +Jacques +Jamie +Jerome +Ladarrius +Lorenzo +Luis +Madison +Martez +Melvin +Orlando +Oscar +Sidney +Tristin +Tucker +Antoine +Beau +Byron +Cade +Craig +Dante +Darian +Daryl +Dedrick +Dejuan +Demarco +Derick +Destin +Devonta +Dusty +Forrest +Harley +Isiah +Jacorey +Jarrod +Javier +Jaylen +Judson +Juwan +Kelton +Leon +Lewis +Louis +Marion +Nigel +Nolan +Quindon +Reed +Reid +Roman +Trevon +Tristian +Wade +Zachariah +Addison +Camron +Clifton +Clint +Coby +Damarcus +Deante +Decarlos +Deonta +Don +Erik +Eugene +Fredrick +Gordon +Jadarius +Jakob +Jarred +Jordon +Kelly +Kendell +Kennedy +Keonte +Keshawn +Kordell +Lamarcus +Oliver +Omar +Pierce +Quincy +Quintin +River +Romello +Turner +Ashley +Blakely +Bryson +Canaan +Cedrick +Codie +Colten +Corbin +Cordarius +Daylon +Dorian +Dwayne +Earl +Francisco +Garret +Garrison +Geoffrey +Glenn +Horace +Hudson +Ivan +Jaden +Jaleel +Jalyn +Jameson +Javon +Jim +Kasey +Keenan +Kendal +Keon +Kristian +Leonard +Marlon +Nathanael +Perry +Quindarius +Raekwon +Rashaad +Rhett +Rodrick +Shaquille +Sherman +Stefan +Stevie +Stuart +Titus +Wanya +Antwan +Ben +Bradford +Brennan +Bret +Caden +Clinton +Courtland +Cristian +Darion +Darnell +Darrian +Dashawn +Demond +Deondre +Deontae +Devan +Dewayne +Donnie +Eduardo +Ernest +Everett +Fred +Holden +Howard +Jabari +Jamon +Jaquez +Jasper +Javontae +Jawon +Jesus +Kelsey +Keyshawn +Kolby +Kory +Kurt +Lawson +Layton +Leslie +Lonnie +Marc +Markell +Miller +Milton +Montez +Neal +Octavius +Ralph +Remington +Ricardo +Sheldon +Simon +Stone +Tavares +Tommie +Trace +Van +Winston +Zechariah +Adarius +Alexis +Alfred +Andy +Angel +Antony +Blaine +Bradly +Brandan +Brayden +Brendon +Broderick +Bryce +Cason +Cecil +Chason +Claude +Cleveland +Cooper +Coty +Daquan +Darrin +Davontae +Demario +Deshaun +Deshun +Deven +Devyn +Dontavious +Dontavius +Donte +Dwight +Edwin +Elisha +Erick +Ervin +Glen +Ira +Issac +Jackie +Jacolby +Jacquez +Jamar +Jamari +Jamario +Jamison +Jammie +Jaquavious +Jatavious +Jayson +Jefferson +Jody +Joey +Jonas +Jorge +Kadarius +Karl +Keion +Kendarious +Keontae +Kerry +Kristofer +Lloyd +Lukas +Mackenzie +Mickey +Mikel +Montel +Nathanial +Nelson +Nikolas +Paris +Quadarius +Quenton +Quintarius +Rafael +Ray +Rusty +Sebastian +Sergio +Silas +Stacy +Sterling +Tamarcus +Tayler +Tobias +Tory +Tremaine +Trenten +Trevin +Tyrus +Vernon +Wayne +Wendell +William +Christopher +James +Jacob +Joshua +Austin +Michael +John +Matthew +Brandon +Justin +Tyler +Zachary +Andrew +Robert +Jonathan +Joseph +David +Jordan +Nicholas +Daniel +Hunter +Christian +Caleb +Samuel +Anthony +Cody +Ryan +Timothy +Thomas +Dylan +Benjamin +Charles +Logan +Cameron +Alexander +Aaron +Noah +Nathan +Ethan +Dakota +Steven +Dustin +Kyle +Jeremy +Devin +Kevin +Eric +Patrick +Dalton +Jackson +Taylor +Jason +Richard +Adam +Kenneth +Stephen +Bradley +Mason +Chase +Tanner +Blake +Jesse +Jared +Brian +Marcus +Corey +Alex +Tristan +Wesley +Evan +Antonio +Garrett +Gregory +Trevor +Malik +Colton +Jeremiah +Phillip +Seth +Trenton +Sean +Hayden +Travis +Derrick +Chandler +Luke +Nathaniel +Jeffrey +Jeffery +Lucas +Elijah +Gabriel +Braxton +Preston +Connor +Clayton +Johnathan +Peyton +Colby +Donald +Isaiah +Landon +Shawn +Edward +Mark +Spencer +Xavier +Bailey +Brett +Darius +Kaleb +Deandre +Demetrius +Casey +Paul +Cole +Harrison +Jake +Micah +Parker +Terry +Mitchell +Johnny +Jonathon +Brady +Willie +Curtis +Isaac +Levi +Gavin +Jack +Riley +Ronald +Zackary +Cory +Larry +Scott +Bryan +Collin +Devon +George +Ian +Jaylon +Carlos +Rodney +Tommy +Zachery +Demarcus +Jerry +Ashton +Billy +Juan +Tony +Walter +Calvin +Colin +Dillon +Jalen +Allen +Jamarcus +Russell +Zackery +Bobby +Desmond +Jimmy +Jon +Chance +Reginald +Jarrett +Jaylen +Joel +Kendall +Kristopher +Maurice +Micheal +Randall +Raymond +Grant +Ladarius +Quinton +Roderick +Trey +Troy +Dallas +Houston +Jamal +Keith +Kelvin +Terrance +Triston +Henry +Jose +Kameron +Morgan +Tristen +Alec +Carson +Carter +Cedric +Malcolm +Shane +Skyler +Chad +Conner +Davis +Derek +Frank +Jonah +Nicolas +Payton +Tucker +Adrian +Andre +Carl +Devan +Donovan +Eddie +Juwan +Kendrick +Philip +Sidney +Arthur +Deangelo +Dennis +Douglas +Gage +Gary +Omar +Peter +Quentin +Tyrone +Victor +Alan +Braden +Clinton +Coleman +Erik +Gerald +Griffin +Jamie +Jermaine +Keenan +Kendarius +Lane +Ricky +Skylar +Blaine +Damien +Dangelo +Dante +Darren +Drew +Jakob +Jarvis +Lawrence +Rashad +Vincent +Warren +Zane +Bryant +Devonte +Grayson +Harley +Jessie +Luis +Marvin +Nickolas +Trent +Avery +Bryce +Cortez +Damion +Destin +Devante +Dominic +Fredrick +Johnathon +Lance +Randy +Todd +Wyatt +Brendan +Brent +Courtney +Damian +Darryl +Deanthony +Dewayne +Dexter +Franklin +Frederick +Jaquan +Jarrod +Judson +Khalil +Lorenzo +Melvin +Miguel +Ronnie +Ross +Sawyer +Tevin +Wilson +Branden +Craig +Daquan +Graham +Harold +Jacorey +Jarred +Jerome +Julian +Kody +Mathew +Miles +Owen +Reid +Terrell +Trevon +Weston +Brennan +Brody +Clarence +Cornelius +Darian +Darrell +Emmanuel +Heath +Jabari +Jaylan +Joe +Josiah +Justice +Martavious +Martin +Roy +Ty +Albert +Anfernee +Bryson +Damon +Dandre +Deontae +Marquise +Maxwell +Myles +Quintin +Toby +Tracy +Tyree +Addison +Alton +Barry +Brannon +Clifton +Darion +Deonte +Deven +Devontae +Dillan +Donte +Dorian +Drake +Earnest +Emanuel +Garret +Isiah +Ivan +Jacquez +Jasper +Jorge +Keandre +Ladarrius +Lewis +Marquis +Nolan +River +Stanley +Terrence +Walker +Adarius +Alejandro +Alvin +Aubrey +Byron +Clay +Darrion +Dayton +Denzel +Deshawn +Dwayne +Erick +Ernest +Javon +Jaylin +Jesus +Kennedy +Keshawn +Lee +Madison +Marquez +Nigel +Quindarius +Raheem +Tobias +Tyrell +Wade +Alfred +Bennett +Clifford +Danny +Darrius +Devonta +Dominique +Eli +Eugene +Gordon +Greyson +Hakeem +Jadarius +Jameson +Javier +Joey +Keonte +Malachi +Marshall +Paxton +Reese +Rickey +Roger +Roman +Sebastian +Shannon +Shelby +Stone +Theodore +Trace +Tristian +Brayden +Brenden +Bruce +Camron +Cason +Chadwick +Charlie +Chauncey +Clark +Colten +Cordarius +Dalvin +Darien +Daryl +Dashawn +Deante +Dedrick +Demario +Deonta +Dillion +Donnie +Duncan +Erin +Forrest +Garrison +Glenn +Howard +Jalon +Jaret +Jay +Jerrod +Julius +Keegan +Kevon +Kirkland +Louis +Mackenzie +Mario +Nathanael +Oliver +Oscar +Otis +Perry +Rafael +Rodrick +Sergio +Shamar +Simon +Stephon +Zachariah +Aidan +Angelo +Ashley +Beau +Ben +Bradford +Brantley +Bronson +Brooks +Caden +Cedrick +Christion +Corbin +Courtland +Cullen +Damarius +Darrin +Dawson +Dean +Deion +Demarkus +Deric +Dewey +Dominick +Don +Dustyn +Elliott +Ellis +Hampton +Hudson +Israel +Jace +Jamar +Jamarius +Jamison +Javaris +Javarius +Jody +Kedric +Keion +Keldrick +Kerry +Keyon +Kolton +Kristian +Kristofer +Kyler +Lamarcus +Leon +Leroy +Lester +Lloyd +London +Lukas +Mack +Marc +Marlon +Marquell +Marty +Max +Montrell +Orlando +Quintavious +Rashawn +Reed +Ruben +Stuart +Tommie +Tyson +Alexis +Alonzo +Antonia +Antwon +Augustus +Auston +Bernard +Brad +Bradly +Braylon +Brennen +Brenton +Brock +Broderick +Bryon +Cade +Chancellor +Charleston +Coby +Cooper +Darnell +Delvin +Demonta +Demonte +Dominque +Dontae +Easton +Edgar +Eduardo +Edwin +Elisha +Ezekiel +Frankie +Hector +Holden +Issac +Jackie +Jajuan +Jamichael +Jaquarius +Jaquavious +Jarod +Javonte +Jimmie +Josef +Kadarius +Kareem +Kelsey +Kelton +Kendal +Kentavious +Kenyon +Keondre +Kurtis +Lakendrick +Leo +Liam +Lucus +Luther +Marquel +Mickey +Miller +Morris +Myron +Nicklaus +Nikolas +Paris +Quadarius +Quandarius +Quincy +Quintavius +Quinten +Raekwon +Rhett +Roberto +Rodriquez +Sam +Sheldon +Stacey +Stacy +Sterling +Tre +Tylar +Tyrin +Wendell +Will +William +Jacob +Austin +Christopher +Joshua +James +Michael +John +Brandon +Matthew +Tyler +Andrew +Joseph +David +Justin +Nicholas +Zachary +Hunter +Robert +Jordan +Jonathan +Christian +Thomas +Daniel +Caleb +Samuel +Noah +Cameron +Charles +Dylan +Benjamin +Ryan +Logan +Anthony +Timothy +Cody +Aaron +Nathan +Alexander +Ethan +Dalton +Kyle +Devin +Jason +Steven +Jackson +Eric +Adam +Dakota +Kevin +Patrick +Jeremy +Richard +Brian +Taylor +Dustin +Stephen +Alex +Jared +Kenneth +Garrett +Chase +Jesse +Mason +Trevor +Elijah +Nathaniel +Seth +Jeremiah +Tanner +Bradley +Marcus +Colby +Corey +Sean +Landon +Tristan +Blake +Gabriel +Evan +Peyton +Connor +Gregory +Isaiah +Jeffrey +Colton +Antonio +Phillip +Trenton +Hayden +Preston +Jalen +Parker +Gavin +Malik +Wesley +Xavier +Derrick +Bailey +Luke +George +Micah +Spencer +Lucas +Braxton +Johnathan +Bryan +Ian +Mark +Chandler +Darius +Reginald +Travis +Brady +Clayton +Collin +Paul +Dawson +Harrison +Jack +Kaleb +Mitchell +Cole +Riley +Carlos +Carson +Donald +Deandre +Edward +Isaac +Casey +Juan +Larry +Terry +Kameron +Willie +Conner +Micheal +Devon +Jeffery +Jon +Jose +Rodney +Adrian +Shawn +Trey +Bryant +Demarcus +Jaylen +Jaylon +Jerry +Ronald +Brett +Jamarcus +Johnny +Curtis +Desmond +Tony +Zackary +Alec +Ashton +Carter +Dallas +Grant +Wyatt +Davis +Johnathon +Payton +Scott +Victor +Cory +Dillon +Henry +Kristopher +Roderick +Billy +Brent +Calvin +Jake +Jarrett +Joel +Jonah +Kendrick +Kobe +Ladarius +Terrance +Troy +Eddie +Grayson +Houston +Jimmy +Jonathon +Kendall +Levi +Quinton +Tommy +Trent +Zachery +Cedric +Damian +Douglas +Jarvis +Justice +Chance +Derek +Gary +Griffin +Raymond +Skylar +Tucker +Allen +Chad +Graham +Jaquan +Joe +Randall +Shane +Terrell +Devonte +Drake +Heath +Marquis +Miles +Myles +Peter +Tristen +Triston +Bobby +Darrell +Deonte +Gage +Gerald +Jessie +Kelvin +Ronnie +Walter +Alan +Avery +Nickolas +Philip +Zackery +Braden +Brendan +Courtney +Damien +Demetrius +Devan +Donovan +Frederick +Jamal +Josiah +Lee +Maurice +Nicolas +Skyler +Wilson +Arthur +Brennan +Byron +Colin +Eli +Jakob +Jarrod +Keenan +Lance +Mathew +Randy +Trace +Andre +Bryce +Clifford +Franklin +Jaylin +Jesus +Madison +Mario +Quentin +Ricky +Stanley +Tyson +Cade +Coleman +Damon +Jamie +Jay +Jermaine +Julian +Kristian +Marshall +Martin +Maxwell +Miguel +Ty +Tyree +Walker +Warren +Albert +Brody +Bryson +Clarence +Cornelius +Danny +Darian +Darryl +Dexter +Dominic +Drew +Erik +Fredrick +Harold +Jerome +Malcolm +Marquez +Marvin +Angel +Aubrey +Carl +Clay +Cooper +Devonta +Frank +Jaden +Khalil +Lorenzo +Marquise +Morgan +Sterling +Weston +Bruce +Camron +Charlie +Deangelo +Deanthony +Jacoby +Jacquez +Juwan +Keith +Lawrence +Leonard +Orlando +Ray +Russell +Sawyer +Sidney +Tevin +Tyrone +Ahmad +Brannon +Brock +Clifton +Corbin +Damion +Deontae +Destin +Edwin +Keonte +Kody +Leon +Owen +Reid +Rickey +Terrence +Tristian +Zane +Alvin +Barry +Brantley +Carlton +Craig +Dandre +Dangelo +Dante +Darnell +Darren +Dennis +Devante +Duncan +Emmanuel +Howard +Jamar +Jamison +Jarred +Julius +Kerry +Kirkland +Kolby +Lewis +Marc +Marlon +Melvin +Nigel +Oscar +Quincy +Steve +Travon +Tyrek +Tyrese +Tyrik +Vincent +Zachariah +Addison +Alfred +Andy +Brenden +Brendon +Brenton +Cordarius +Cortez +Cristian +Deante +Demarco +Dominique +Forrest +Harry +Holden +Isiah +Ivan +Jakobe +Jalon +Jameson +Jaylan +Jordon +Judson +Keandre +Keaton +Keshawn +Ladarrius +Lamarcus +Louis +Omar +Raheem +Reed +River +Roger +Shelby +Stone +Tariq +Theodore +Tyrell +Aidan +Alejandro +Auston +Bernard +Cecil +Chauncey +Chester +Clinton +Cordell +Dameyune +Darrius +Dayton +Deshawn +Dillan +Donnie +Dontavious +Dwight +Elliott +Ezekiel +Garrison +Kelton +Kendarius +Kentavious +Kyler +Lane +Nathanial +Nelson +Nolan +Norman +Paxton +Ralph +Roman +Rondarius +Sebastian +Tristin +Vernon +Will +Antoine +Bennett +Branden +Bret +Brooks +Dale +Darion +Dean +Deon +Dequan +Freddie +Greyson +Gunnar +Harley +Israel +Jacorey +Jadarius +Jamichael +Javon +Javonte +Jaxon +Joey +Justyn +Kadarius +Kareem +Koby +Korey +Lawson +Lukas +Mackenzie +Martavious +Max +Morris +Myron +Neil +Nikolas +Perry +Pierce +Quindarius +Ross +Roy +Savion +Sedrick +Sergio +Shaun +Stuart +Terence +Tobias +Trevion +Tyriq +Wade +Wayne +Alonzo +Anfernee +Asa +Austen +Blaine +Braylon +Cedrick +Christion +Clint +Colten +Darien +Davion +Delvin +Deven +Devontae +Dillion +Easton +Edgar +Edmond +Elliot +Emanuel +Erin +Eugene +Fernando +Francisco +Hector +Horace +Jamarius +Jarod +Jorge +Kade +Kamron +Kasey +Kelby +Kelly +Kendrell +Keon +Keyshawn +Kordell +Luis +Marco +Markell +Markus +Martavius +Mikel +Montavious +Pedro +Quadarius +Quintavious +Ronaldo +Shamar +Shelton +Solomon +Stewart +Tavaris +Tyshawn +Winston +Allan +Alonza +Alton +Amari +Angelo +Armani +Bennie +Benton +Blair +Brandt +Brayden +Brennen +Brennon +Cadarius +Cannon +Carey +Chris +Coby +Coleton +Cullen +Daquan +Daryl +Dedric +Demario +Demetris +Demetruis +Denzel +Deondre +Dewayne +Dominick +Donte +Dorian +Elias +Erick +Felix +Fred +Glenn +Grady +Haden +Hamilton +Herbert +Hudson +Issac +Jackie +Jacory +Jajuan +Jamari +Jamarkus +Jaquez +Jarett +Javarious +Jayden +Jefferson +Jerrell +Johnnie +Jonas +Josue +Kaden +Karl +Keelan +Kendarious +Kendric +Kentrell +Kenyon +Keondre +Khari +Lakendrick +Landen +Latrell +Lonnie +Maison +Martez +Marty +Nathanael +Quintez +Quintin +Rhett +Ricardo +Rico +Robin +Rodriquez +Shemar +Stephan +Tahj +Tarique +Theron +Titus +Tory +Tracy +Tremayne +Trever +Trevon +Trystan +Tylor +Tyquan +Tyreek +Zacchaeus +William +Jacob +Christopher +Austin +John +Joshua +James +Michael +Andrew +Matthew +Brandon +Tyler +Joseph +Justin +David +Hunter +Nicholas +Cameron +Robert +Zachary +Christian +Caleb +Daniel +Jordan +Jonathan +Samuel +Dylan +Noah +Thomas +Charles +Ryan +Logan +Ethan +Jackson +Anthony +Benjamin +Dalton +Nathan +Cody +Timothy +Alexander +Steven +Garrett +Aaron +Richard +Kenneth +Devin +Eric +Kevin +Connor +Kyle +Patrick +Dakota +Stephen +Jason +Mason +Brian +Elijah +Seth +Nathaniel +Taylor +Adam +Blake +Jeremy +Dawson +Alex +Jared +Chandler +Antonio +Chase +Tristan +Tanner +Trevor +Wesley +Bradley +Dustin +Evan +Isaiah +Luke +Hayden +Gabriel +Landon +Colton +Jalen +Colby +Isaac +Preston +Parker +Jeremiah +Marcus +Trenton +Tyrese +Johnathan +Corey +Gregory +Peyton +Carson +Jesse +Mark +Xavier +Ian +Kaleb +Spencer +Gavin +Jeffrey +Paul +Bailey +Cole +Phillip +Jack +Lucas +Riley +Bryan +Jeffery +Levi +Malik +Sean +Shawn +Braxton +Devon +Edward +Harrison +Micah +Clayton +Collin +Jaylen +Cory +Trey +Henry +Derrick +Jose +Allen +Carlos +Conner +Grant +Jerry +Jonah +Jonathon +Mitchell +Billy +Carter +Darius +Kameron +Ronald +Terry +Adrian +Deandre +Jon +Roderick +Bobby +Braden +Jaylon +Kristopher +Willie +Colin +Dillon +George +Jamal +Randall +Avery +Brett +Cade +Demetrius +Grayson +Johnny +Tucker +Brady +Calvin +Jarrett +Kendall +Reginald +Travis +Brendan +Brody +Gary +Keith +Larry +Scott +Skyler +Alec +Micheal +Shane +Skylar +Tony +Bryce +Curtis +Derek +Griffin +Houston +Tommy +Vincent +Ashton +Darrell +Desmond +Donald +Frank +Jake +Jakob +Kelvin +Peter +Rodney +Bryant +Camron +Casey +Cedric +Dallas +Jesus +Jimmy +Josiah +Kendrick +Payton +Terrance +Walker +Zachery +Zackery +Brayden +Chance +Davis +Jaden +Jamarcus +Jayden +Jaylin +Juan +Kobe +Trent +Victor +Chad +Coleman +Douglas +Jaquan +Joel +Lance +Troy +Walter +Alan +Dennis +Drew +Ladarius +Luis +Martin +Maxwell +Morgan +Philip +Raymond +Russell +Wyatt +Zackary +Caden +Jessie +Ronnie +Darren +Demarcus +Devonte +Jermaine +Marshall +Nicolas +Ahmad +Byron +Carlton +Damon +Darryl +Drake +Fredrick +Jarvis +Joe +Maurice +Quinton +Sawyer +Tristen +Ty +Aubrey +Bryson +Destin +Emmanuel +Gage +Mario +Miguel +Nolan +Omar +Owen +Randy +Ricky +Triston +Corbin +Darian +Donovan +Eddie +Ezekiel +Jamie +Jaylan +Julian +Kendarius +Stanley +Terrell +Trevon +Angel +Carl +Clay +Courtney +Deonte +Jace +Jacoby +Lee +Myles +Nickolas +Oscar +Roger +Warren +Wilson +Andre +Andy +Barry +Charlie +Cornelius +Franklin +Frederick +Graham +Johnathon +Kristian +Kyler +Lawrence +Marquis +Marvin +Melvin +Trace +Zion +Brennan +Danny +Dante +Dewayne +Erik +Heath +Jakobe +Jameson +Jorge +Judson +Koby +Quintin +Ricardo +Sidney +Wade +Zane +Addison +Alejandro +Brent +Coby +Deontae +Dominique +Dorian +Eli +Jaquarius +Keyshawn +Khalil +Ladarrius +Lane +Leon +Malcolm +Mathew +Max +Reid +Rickey +Travon +Tyrone +Weston +Alvin +Brennen +Clarence +Cordell +Craig +Damion +Dominic +Gerald +Harley +Jacquez +Jarred +Jarrod +Kelton +Lewis +Malachi +Martez +Nathanael +Perry +Ross +Shaun +Tristin +Tyson +Alfred +Alonzo +Angelo +Bennett +Brantley +Brendon +Cortez +Deon +Deven +Devonta +Dillan +Edwin +Ernest +Francisco +Ivan +Jaquez +Jimmie +Kaden +Kamron +Kody +Lamar +Lamarcus +Leonard +Marc +Markus +Nathanial +Nikolas +Reed +Roy +Shelton +Sterling +Stuart +Tariq +Turner +Tyrell +Will +Anderson +Branden +Bret +Britton +Brock +Broderick +Cason +Cecil +Damarcus +Damian +Dangelo +Daquan +Darien +Davion +Dejuan +Deonta +Edgar +Everett +Felix +Forrest +Garret +Harold +Isiah +Jadarius +Jaleel +Jamison +Jaren +Jerome +Justice +Kerry +Kolby +Marlon +Miles +Miller +Montez +Norman +Quentin +Ralph +Reagan +Reese +Shannon +Shemar +Terrence +Trajan +Tyrek +Winston +Adarius +Alexis +Arthur +Brenden +Brenton +Brooks +Chadwick +Chris +Cooper +Damien +Davon +Daylon +Deante +Dequan +Devan +Devante +Dexter +Dylon +Enrique +Eugene +Ezra +Garrison +Geoffrey +Howard +Jacorey +Jacory +Jamar +Jamichael +Jaquavious +Jasper +Javaris +Javier +Julius +Juwan +Kareem +Keenan +Kennedy +Keon +Keshawn +Kevon +Korey +Liam +Lonnie +Lorenzo +Lukas +Mackenzie +Marion +Marquise +Octavious +Oliver +Quantavious +Quindarius +Rashad +River +Roman +Roosevelt +Sebastian +Shamar +Sheldon +Simon +Solomon +Terence +Tevin +Theodore +Tracy +Tyree +Tyus +Abraham +Albert +Andres +Antoine +Asa +Auston +Baylor +Benton +Blaine +Branson +Braydon +Cadarius +Camden +Canaan +Cesar +Darrian +Darrion +Darrius +Dayton +Deanthony +Demarco +Deondre +Deshawn +Devyn +Eduardo +Emanuel +Fisher +Giovanni +Gunnar +Jalon +Jarod +Javion +Jaxson +Jay +Jerrod +Jody +Johnnie +Keandre +Keegan +Keonte +Keyon +Lawson +Lincoln +Manuel +Martavious +Martavius +Nigel +Quendarius +Quincy +Quintavious +Quintez +Ray +Rhett +Roberto +Semaj +Stacey +Steve +Tavian +Tobias +Tyreke +Aidan +Asher +Austen +Barrett +Beau +Bernard +Brice +Bruce +Campbell +Cannon +Cedrick +Christion +Clifton +Colten +Cristian +Cyrus +Dakoda +Damarius +Darion +Daryl +Daulton +Davonte +Delvin +Demarius +Demarkus +Diego +Dominick +Dontavious +Dwight +Earnest +Elias +Elisha +Ervin +Fabian +Foster +Fred +Greyson +Gunner +Harris +Harry +Herbert +Holden +Jadon +Jaelin +Jaelyn +Jairus +Jalan +Jamari +Jamel +Jatavious +Jayson +Jondarius +Jorden +Jordon +Justus +Keaton +Keldrick +Khristian +Kurt +Lakendrick +Louis +Mack +Markel +Marquavious +Marquez +Marshal +Mateo +Mikel +Montavious +Nicklaus +Pedro +Rafael +Remington +Scotty +Sergio +Stephan +Stephon +Stone +Tavaris +Titus +Trevin +Treyvon +Tristian +Tyquan +Tyreek +Zachariah +Zavier +Zyon +William +Jacob +Joshua +Christopher +Michael +James +John +Matthew +Austin +Tyler +Andrew +Justin +Nicholas +Hunter +Caleb +Joseph +Brandon +David +Robert +Christian +Cameron +Jonathan +Zachary +Ethan +Jordan +Noah +Samuel +Daniel +Dylan +Thomas +Logan +Benjamin +Jackson +Charles +Nathan +Anthony +Alexander +Timothy +Dalton +Ryan +Cody +Jalen +Aaron +Jason +Dakota +Garrett +Patrick +Steven +Devin +Eric +Kevin +Mason +Elijah +Nathaniel +Seth +Jeremy +Stephen +Taylor +Richard +Carson +Gabriel +Evan +Tanner +Jared +Dustin +Gavin +Kaleb +Kyle +Luke +Dawson +Jeremiah +Landon +Isaiah +Kenneth +Connor +Jesse +Trevor +Wesley +Brian +Hayden +Antonio +Isaac +Micah +Alex +Marcus +Chase +Blake +Chandler +Colton +Sean +Colby +Lucas +Adam +Gregory +Johnathan +Trenton +Tristan +Clayton +Peyton +Jeffrey +Ian +Parker +Bradley +Corey +Preston +Xavier +Bailey +Harrison +Jaylen +Malik +Riley +Braxton +Mark +Derrick +Jack +Cole +Grayson +Jaden +Paul +Jose +Mitchell +Phillip +Shawn +Edward +Carter +Grant +Jake +Payton +Ronald +Spencer +Tucker +Braden +George +Skyler +Curtis +Deandre +Jakob +Jamarcus +Kameron +Darius +Jonathon +Kobe +Rodney +Wyatt +Ashton +Donald +Jeffery +Kendall +Brady +Jaylon +Micheal +Trey +Bryan +Collin +Henry +Johnny +Jonah +Travis +Colin +Gary +Larry +Zackary +Adrian +Brett +Carlos +Devon +Jerry +Joel +Jon +Levi +Reginald +Desmond +Ladarius +Tony +Zachery +Avery +Cade +Griffin +Willie +Allen +Bryce +Cory +Davis +Brayden +Coleman +Jaquan +Terry +Walter +Calvin +Drew +Jarrett +Russell +Victor +Alan +Demarcus +Gage +Juan +Nicolas +Terrance +Brock +Casey +Demetrius +Luis +Shane +Billy +Cooper +Derek +Jayden +Jaylin +Shaun +Trent +Zion +Brendan +Cedric +Chad +Conner +Marvin +Mathew +Quentin +Raymond +Zane +Arthur +Bobby +Dallas +Devonte +Dillon +Jamal +Jamie +Kelvin +Maxwell +Nolan +Ricky +Roderick +Skylar +Tristen +Vincent +Brody +Cornelius +Dennis +Donovan +Dorian +Hudson +Jimmy +Josiah +Omar +Quinton +Randy +Bryant +Caden +Damien +Damion +Drake +Eli +Frank +Gerald +Jessie +Keith +Kendrick +Morgan +Myles +Nickolas +Sawyer +Shamar +Terrell +Trevon +Triston +Walker +Weston +Alejandro +Camden +Chance +Francisco +Joe +Julian +Kristopher +Miguel +Miles +Tyrese +Brennan +Deonte +Harley +Houston +Jacoby +Kendarius +Khalil +Malcolm +Mario +Marshall +Ronnie +Scott +Sebastian +Tommy +Aidan +Andre +Bryson +Carl +Clay +Douglas +Eddie +Johnathon +Kevon +Keyshawn +Malachi +Marquise +Owen +Troy +Camron +Damian +Damon +Dante +Franklin +Jarvis +Jermaine +Jesus +Lance +Peter +Warren +Zackery +Branden +Brannon +Brantley +Brenden +Dangelo +Darrell +Darryl +Fredrick +Jarrod +Jay +Jordon +Jorge +Kaden +Lane +Marquez +Maurice +Philip +Shemar +Alec +Barry +Brent +Coby +Cortez +Darian +Destin +Dominick +Edwin +Jacorey +Jaylan +Kadarius +Keshawn +Koby +Kody +Lawson +Lorenzo +Roger +Sidney +Trace +Tyrone +Addison +Aubrey +Clifton +Corbin +Darien +Deondre +Deven +Dewayne +Dexter +Dominique +Emmanuel +Erik +Ezekiel +Fernando +Harold +Jarred +Javon +Judson +Keaton +Lawrence +Oliver +Reid +Tristian +Ty +Tyson +Alonzo +Brendon +Bruce +Byron +Cristian +Danny +Darrius +Davion +Deangelo +Devonta +Dominic +Duncan +Felix +Garret +Greyson +Haden +Jamari +Jayson +Lee +Marc +Marquis +Martin +Nikolas +Randall +Roy +Terrence +Todd +Wade +Wilson +Xzavier +Alexis +Amari +Anderson +Andy +Angel +Beau +Blaine +Brenton +Brooks +Courtney +Darren +Davon +Deanthony +Eduardo +Emanuel +Glenn +Grady +Graham +Heath +Isiah +Jadarius +Jakobe +Jalyn +Jamarius +Jamichael +Javier +Javion +Jaxon +Jerome +Joey +Justice +Keenan +Keontae +Kristian +Kyler +Lukas +Max +Nelson +Ralph +Terence +Titus +Tyree +Abraham +Albert +Antwan +Carlton +Clinton +Craig +Demonte +Deonta +Devan +Devontae +Diego +Dontavious +Dontavius +Easton +Frederick +Jacquez +Jalin +Jamison +Jaquon +Jarod +Javonte +Jimmie +Keldrick +Keon +Manuel +Marlon +Marques +Martavious +Oscar +Paxton +Pedro +Quindarius +Rickey +Ross +Solomon +Tobias +Toby +Travon +Tyquan +Wayne +Winston +Ahmad +Alvin +Amir +Angelo +Cason +Cedrick +Clarence +Cordarius +Damarius +Daquan +Deon +Draven +Erick +Gordon +Ivan +Jace +Jakari +Jamarious +Javoris +Julius +Keegan +Kendarious +Kenyon +Ladarrius +Lamar +Leonard +Lester +Louis +Martez +Nehemiah +Quintavious +Reed +Reese +Ruben +Simon +Tracy +Turner +Tyrell +Will +Adarius +Alfred +Antoine +Barrett +Baylor +Bennett +Bronson +Campbell +Cecil +Cesar +Colten +Cyrus +Darion +Darnell +Darrion +Daryl +Deante +Demarius +Demond +Deontae +Dequan +Dillan +Dwight +Emery +Gunnar +Harry +Hector +Jacolby +Jalon +Jarius +Jayce +Jude +Kade +Kamron +Karson +Keandre +Kelton +Luther +Mack +Mackenzie +Mateo +Melvin +Milton +Montavious +Orlando +Perry +Porter +Quintin +Rafael +Reece +Ricardo +Roberto +Roman +Rylan +Sam +Shelby +Stuart +Tariq +Tate +Tavian +Thaddeus +Tramaine +Tremaine +Tristin +Zachariah +Armando +Aron +Asa +August +Ben +Bernard +Blaise +Braeden +Brennen +Calen +Canaan +Cayman +Chancellor +Charlie +Chaz +Clifford +Clyde +Collier +Cordell +Dalvin +Davonta +Davonte +Dayton +Dejuan +Deshaun +Deshawn +Devante +Donnie +Elliott +Ernest +Ezra +Garett +Garrison +Gaven +Gustavo +Israel +Jacory +Jacques +Jadon +Jakobi +Jalil +Jamon +Jaron +Jashawn +Jerrell +Johnnie +Kane +Kendarrius +Keshaun +Keyon +Kolby +Kolton +Lamarcus +Leonardo +Liam +Lionel +London +Lonnie +Madison +Marco +Markell +Markus +Miller +Myron +Nathanael +Noa +Otis +Pablo +Paris +Quincy +Rashad +Rayshawn +River +Rodriquez +Saul +Shannon +Shelton +Silas +Sincere +Slade +Steve +Stewart +Tommie +Trayvon +Tyquavious +Tyre +Tyreese +Tyrin +Tyrique +Uriel +Waylon +Zaykeese +William +Jacob +Joshua +James +Christopher +John +Michael +Matthew +Austin +Tyler +Andrew +Joseph +Caleb +Hunter +Justin +David +Ethan +Zachary +Nicholas +Brandon +Robert +Samuel +Christian +Cameron +Jonathan +Jordan +Dylan +Logan +Jackson +Daniel +Thomas +Benjamin +Noah +Anthony +Charles +Nathan +Ryan +Timothy +Dalton +Cody +Devin +Jason +Elijah +Alexander +Mason +Aaron +Gabriel +Eric +Jeremiah +Dakota +Seth +Carson +Garrett +Kenneth +Richard +Connor +Kevin +Colby +Patrick +Luke +Steven +Landon +Nathaniel +Isaiah +Kyle +Hayden +Tanner +Taylor +Brian +Trevor +Kaleb +Preston +Adam +Alex +Stephen +Isaac +Jeremy +Antonio +Chase +Gavin +Sean +Dawson +Evan +Jalen +Jesse +Blake +Colton +Peyton +Wesley +Dustin +Tristan +Xavier +Corey +Jared +Parker +Ian +Micah +Chandler +Clayton +Trenton +Marcus +Jaden +Lucas +Jack +Bradley +Braxton +Cole +Harrison +Riley +Collin +Jaylen +Jeffrey +Travis +Derrick +Mark +Jose +Brady +Jaylon +Johnathan +Adrian +Ashton +Braden +Brayden +Edward +Kameron +Gregory +Jakob +George +Grayson +Jeffery +Bailey +Juan +Malik +Trey +Carter +Henry +Phillip +Zackary +Jayden +Jonah +Trent +Cade +Darius +Grant +Spencer +Willie +Bryan +Carlos +Levi +Brody +Kendall +Kobe +Payton +Jake +Joel +Ronald +Shawn +Alan +Dillon +Donald +Paul +Allen +Avery +Chance +Demetrius +Jamal +Micheal +Owen +Roderick +Sebastian +Tucker +Johnny +Jon +Russell +Wyatt +Zackery +Brett +Cooper +Mitchell +Reginald +Terry +Caden +Devon +Larry +Tony +Calvin +Cedric +Dallas +Damien +Davis +Demarcus +Erik +Jamarcus +Jaylin +Jonathon +Quinton +Bryant +Conner +Desmond +Eli +Jaylan +Luis +Rodney +Skyler +Zion +Wilson +Bryce +Coleman +Curtis +Derek +Jaquan +Keith +Kristopher +Brendan +Colin +Darrell +Donovan +Jarrett +Jay +Nicolas +Victor +Walter +Zane +Brantley +Bryson +Camden +Cory +Eduardo +Fernando +Gage +Jaxon +Jerry +Joe +Josiah +Kelvin +Kolby +Maxwell +Scott +Tristen +Troy +Vincent +Camron +Frederick +Griffin +Johnathon +Julian +Lee +Marquez +Myles +Nolan +Omar +Peter +Ty +Chad +Dominic +Douglas +Drake +Eddie +Jarvis +Jermaine +Jesus +Terrell +Trevon +Billy +Bobby +Brennan +Brent +Damian +Damon +Gary +Hudson +Jaheim +Jimmy +Justice +Kendrick +Lawrence +Malachi +Marquis +Miguel +Nickolas +Philip +Skylar +Brooks +Casey +Charlie +Edwin +Frank +Graham +Greyson +Houston +Jacoby +Jakobe +Lawson +Miles +Oscar +Sawyer +Trace +Zachery +Clay +Courtney +Damion +Deandre +Devontae +Dorian +Gerald +Jamichael +Kristian +Ladarius +Liam +Mathew +Toby +Tyrese +Aidan +Alec +Alejandro +Aubrey +Deshawn +Destin +Emmanuel +Ivan +Jacorey +Jessie +Jorge +Kendarius +Khalil +Lance +Leon +Malcolm +Mario +Marshall +Morgan +Shane +Sterling +Walker +Albert +Brock +Bruce +Byron +Coby +Corbin +Danny +Deanthony +Emanuel +Garrison +Heath +Howard +Issac +Jadarius +Jamarius +Judson +Kaden +Quindarius +Ronnie +Roy +Terrence +Triston +Turner +Weston +Addison +Angel +Asher +Bradford +Cornelius +Deonte +Israel +Jalon +Jarod +Javon +Keegan +Kolton +Martin +Maurice +Pedro +Shaun +Stanley +Tyquan +Tyson +Arthur +Barry +Cordell +Daryl +Davion +Dennis +Devonte +Dexter +Dillan +Elisha +Erick +Francisco +Fredrick +Harley +Holden +Jamie +Javier +Jayson +Jimmie +Keaton +Keondre +Keshawn +Kevon +Lane +Leonard +Marco +Marlon +Marvin +Randy +Raymond +Reid +Tommy +Tristin +Wade +Ahmad +Andre +Bernard +Cortez +Darian +Darryl +Deangelo +Deondre +Deshaun +Edgar +Franklin +Harold +Jace +Javion +Jonas +Kennedy +Kyler +Lamar +Louis +Manuel +Max +Nigel +Paxton +Quentin +Randall +Rashad +Reese +Ricky +Sam +Shamar +Solomon +Tyree +Tyrone +Wayne +Will +Andy +Antoine +Axel +Bo +Broderick +Brodie +Carl +Cesar +Craig +Deontae +Devan +Devonta +Devyn +Draven +Drew +Easton +Ezekiel +Felix +Gustavo +Isiah +Jamar +Kade +Kamron +Kenton +Keon +Keyon +Kody +Lamarcus +Landen +Lewis +Marc +Pierce +Reed +Rickey +Roberto +Ruben +Shemar +Titus +Tomas +Tristian +Warren +Xzavier +Abraham +Ali +Alvin +Amari +Ben +Blaine +Cecil +Dale +Dandre +Dayton +Dequan +Elias +Fred +Gerardo +Hamilton +Jamari +Jaron +Jarred +Jarrod +Jasper +Javarius +Jaxson +Jaydon +Joey +Jordon +Josue +Julius +Keandre +Keenan +Koby +Markell +Marquise +Melvin +Nathanael +Oliver +Perry +Ricardo +Roger +Roman +Sergio +Sidney +Silas +Terrance +Tyshawn +Zechariah +Alexis +Alijah +Allan +Amir +Angelo +Asa +Austen +Branden +Brenden +Brendon +Briar +Brice +Chauncey +Chris +Clarence +Clinton +Cullen +Dante +Darion +Darren +Darrion +Dashaun +Daylon +Devontay +Dewayne +Diego +Dimitri +Dominique +Ernest +Glen +Haden +Hezekiah +Hugh +Jacolby +Jaiden +Jameson +Jaquarius +Jatavious +Jefferson +Jerome +Jerrell +Kerry +Keshaun +Keyshawn +Ladarrius +Layton +Lonnie +Mekhi +Micaiah +Milton +Orlando +Rodriquez +Santiago +Shelby +Stone +Stuart +Tamarcus +Terence +Thaddeus +Tyrell +Virgil +Wallace +Winston +Aiden +Alfred +Antwan +Baylor +Blane +Braeden +Brant +Braydon +Brennon +Britton +Brylan +Carrington +Cason +Cayden +Chancellor +Chaz +Coy +Cristian +Damarcus +Danthony +Darrin +Dashawn +Davin +Daylan +Deven +Dezmond +Don +Donnie +Dontavious +Donte +Ean +Earl +Edrick +Everett +Fabian +Harris +Jabari +Jackie +Jacobi +Jadarious +Jagger +Jalyn +Jamil +Jamison +Jaquavious +Jarret +Javonte +Jevon +Jody +Jordyn +Kane +Karl +Keldrick +Kendal +Kenny +Kylan +Leo +Leroy +Lorenzo +Lukas +Markel +Mateo +Muhammad +Nelson +Nikolas +Percy +Quincy +Raphael +Ray +Sage +Sammy +Shannon +Simon +Stacy +Tavares +Ted +Tevin +Theodore +Timmy +Tobias +Todd +Travion +Travon +Uriel +Zander +Zavier +William +Jacob +Joshua +James +John +Christopher +Michael +Andrew +Austin +Matthew +Ethan +Joseph +Tyler +Caleb +Nicholas +Brandon +Robert +Jackson +Cameron +David +Hunter +Samuel +Justin +Zachary +Jonathan +Dylan +Logan +Christian +Jordan +Noah +Thomas +Daniel +Charles +Alexander +Elijah +Benjamin +Anthony +Nathan +Timothy +Gabriel +Mason +Dalton +Cody +Luke +Ryan +Eric +Isaiah +Aaron +Connor +Seth +Kaleb +Richard +Jeremiah +Gavin +Jason +Steven +Devin +Hayden +Nathaniel +Kevin +Carson +Landon +Colby +Alex +Garrett +Isaac +Patrick +Jalen +Jeremy +Kenneth +Adam +Brian +Evan +Sean +Preston +Stephen +Blake +Kyle +Tanner +Braxton +Parker +Trenton +Xavier +Dakota +Jaden +Dustin +Riley +Carter +Taylor +Dawson +Jared +Peyton +Tristan +Colton +Trevor +Bryan +Jose +Micah +Brady +Wesley +Chase +Marcus +Ian +Jack +Antonio +Lucas +Mark +Braden +Brayden +Brody +Jesse +Cole +Clayton +Bradley +Jaylon +Kameron +Eli +Jeffrey +Levi +Malik +Harrison +Henry +Paul +Corey +Grayson +Chandler +Jaylen +Juan +Travis +Collin +Caden +Derrick +Ashton +Devon +Jayden +Grant +Gregory +Johnathan +Julian +Spencer +Bryson +Jon +Jaylin +Colin +Conner +George +Tony +Aidan +Carlos +Edward +Malachi +Owen +Phillip +Reginald +Shawn +Terry +Trey +Deandre +Larry +Payton +Ronald +Damian +Jaheim +Kobe +Tucker +Darius +Desmond +Griffin +Jake +Sebastian +Skyler +Vincent +Adrian +Camron +Gage +Joel +Jonah +Kelvin +Kendall +Luis +Bailey +Jamarcus +Johnny +Wyatt +Camden +Curtis +Jamari +Jeffery +Jerry +Jimmy +Keith +Victor +Zackary +Cade +Davis +Demetrius +Dillon +Hudson +Nicolas +Raymond +Walker +Brendan +Calvin +Jesus +Jonathon +Kolby +Maxwell +Omarion +Rodney +Zane +Brett +Cooper +Damien +Donald +Drake +Josiah +Micheal +Nolan +Omar +Peter +Willie +Zachery +Andre +Bobby +Brent +Chance +Cory +Emmanuel +Jakob +Jarvis +Jaxon +Maurice +Mitchell +Myles +Ricky +Russell +Troy +Zackery +Alan +Bryce +Casey +Edwin +Erik +Miguel +Alejandro +Allen +Brodie +Coleman +Demarcus +Derek +Holden +Jace +Jacoby +Miles +Wilson +Angel +Avery +Bryant +Carl +Chad +Ivan +Roderick +Shane +Shaun +Trent +Trevon +Ty +Arthur +Cedric +Clay +Cornelius +Danny +Eddie +Isiah +Javier +Javon +Jessie +Kristopher +Lance +Randall +Tyrese +Walter +Aiden +Brock +Donovan +Jermaine +Justice +Ladarius +Lane +Liam +Mathew +Philip +Scott +Zion +Cayden +Cesar +Dallas +Damion +Damon +Dominic +Jakobe +Jamal +Jamie +Jorge +Kyler +Max +Sawyer +Terrance +Weston +Aubrey +Billy +Brennan +Charlie +Cristian +Devan +Drew +Graham +Jadarius +Jadon +Joe +Johnathon +Julius +Kaden +Mario +Orlando +Quinton +Rashad +Silas +Tyrone +Tyson +Alec +Alonzo +Armando +Byron +Corbin +Deanthony +Diego +Elisha +Ezekiel +Franklin +Frederick +Heath +Issac +Jay +Keegan +Kendrick +Keon +Quincy +Skylar +Stanley +Tommy +Trace +Tristen +Albert +Amari +Courtney +Darren +Dennis +Dorian +Douglas +Gary +Harley +Jarrett +Kendarius +Landen +Martez +Melvin +Oscar +Ricardo +Triston +Zachariah +Amarion +Bruce +Cason +Craig +Davon +Deangelo +Devonte +Eduardo +Emanuel +Hector +Jamarius +Jaquez +Jerome +Karson +Korey +Lamarcus +Lee +Leonardo +Louis +Malcolm +Marlon +Marquise +Morgan +Quentin +Shannon +Simon +Terrell +Waylon +Winston +Antoine +Brooks +Coby +Davion +Dayton +Frank +Jaiden +Jajuan +Jaquan +Jayson +Kane +Keaton +Kelton +Keyshawn +Koby +Kristian +Leonard +Lukas +Martin +Nickolas +Rafael +Randy +Roy +Rylan +Tobias +Toby +Travon +Tristin +Xzavier +Ahmad +Andy +Ayden +Braeden +Brennen +Cortez +Darrell +Daylan +Demonte +Deonte +Dewayne +Duncan +Edgar +Everett +Gaven +Harold +Houston +Jacorey +Jameson +Javonte +Jordon +Kadarius +Keshaun +Kody +Kolton +Lawrence +Lewis +Manuel +Marquis +Marshall +Marvin +Nathanael +Oliver +Pablo +Perry +Rickey +River +Roger +Romeo +Sergio +Shelton +Tavaris +Tyquan +Abraham +Alexis +Beau +Blaine +Brantley +Braylon +Brenden +Brylan +Caiden +Cannon +Clarence +Cleveland +Clifton +Colten +Cordell +Dameon +Dandre +Dominick +Easton +Francisco +Gerald +Grady +Gunner +Hagen +Harris +Jacobi +Jahiem +Jairus +Jamar +Jamichael +Jarod +Jaylan +Jorden +Josue +Judson +Julio +Justus +Kade +Kamron +Kenyon +Kerry +Keshawn +Khalil +Leon +Miller +Pierce +Ruben +Sam +Alberto +Alfred +Andres +Angelo +Barrett +Barry +Brannon +Campbell +Claude +Daquan +Darryl +Deshawn +Deven +Dillan +Dontavius +Dorien +Elliot +Erick +Ernest +Ezra +Fernando +Fredrick +Greyson +Jabari +Jadarrius +Jamarion +Jamel +Jamon +Jarius +Jaron +Javien +Jawuan +Jaydon +Jerald +Joey +Judah +Kadin +Kamryn +Karl +Keenan +Kendal +Kendarious +Kendrell +Keontae +Kevontae +Kole +Kristofer +Ladarrius +Layton +Markel +Nehemiah +Quindarius +Ramon +Roberto +Ronnie +Salvador +Sheldon +Sidney +Terrence +Theodore +Torrey +Tristian +Tyree +Tyrell +Tyshawn +Abram +Aden +Alexzander +Alfonso +Allan +Alton +Amir +Anderson +Asa +Austen +Bennett +Bentley +Branden +Braydon +Brice +Cadarius +Chris +Christain +Clifford +Damarion +Dante +Declan +Denver +Deontae +Destin +Dexter +Dillian +Dominique +Don +Donavan +Donnie +Emilio +Forrest +Freddie +Glenn +Hogan +Howard +Hugh +Hugo +Ismael +Jalon +Jalyn +Jarrod +Jasper +Javaris +Jett +Jimmie +Kaiden +Kendell +Kentrell +Kevon +Keyonte +Kobie +Langston +Lincoln +Luther +Mack +Marc +Marco +Marcos +Marquel +Marquice +Marty +Mauricio +Montavious +Montez +Myron +Nigel +Omari +Raul +Ray +Reece +Reed +Rhett +Rondarius +Santiago +Shemar +Stacy +Stephon +Stone +Talon +Tate +Tevin +Titus +Tremaine +Trevion +Trinity +Uriel +Wendell +Xander +Zack +Zavion +William +Jacob +Joshua +James +John +Christopher +Michael +Matthew +Caleb +Austin +Joseph +Andrew +Ethan +Tyler +Jackson +Samuel +David +Hunter +Logan +Jordan +Daniel +Cameron +Jonathan +Nicholas +Robert +Christian +Justin +Thomas +Charles +Dylan +Zachary +Brandon +Benjamin +Noah +Elijah +Anthony +Landon +Ryan +Nathan +Mason +Alexander +Connor +Gabriel +Carson +Luke +Jeremiah +Jason +Devin +Dalton +Timothy +Gavin +Hayden +Kaleb +Ashton +Evan +Richard +Aaron +Brody +Brian +Kevin +Cody +Jayden +Eric +Patrick +Seth +Jalen +Preston +Brady +Isaiah +Alex +Jose +Steven +Garrett +Antonio +Blake +Kenneth +Jeremy +Xavier +Nathaniel +Peyton +Braxton +Dakota +Jaden +Wesley +Sean +Ian +Trenton +Brayden +Chase +Dawson +Parker +Adam +Colton +Jack +Carter +Colby +Jeffrey +Stephen +Chandler +Lucas +Jaylen +Jesse +Kyle +Trevor +Harrison +Clayton +Conner +Grant +Isaac +Micah +Owen +Taylor +Bradley +Bryan +Collin +Riley +Bryson +Marcus +Aidan +Braden +Juan +Kaden +Tristan +George +Cole +Luis +Mark +Aiden +Corey +Grayson +Gregory +Devon +Eli +Henry +Kameron +Caden +Colin +Malachi +Johnathan +Adrian +Brodie +Jaylon +Levi +Carlos +Travis +Mitchell +Tanner +Bryant +Edward +Jake +Landen +Phillip +Avery +Camron +Wyatt +Derrick +Donovan +Dustin +Joel +Julian +Jared +Walker +Cooper +Darius +Donald +Jonah +Jeffery +Paul +Ronald +Tucker +Johnny +Curtis +Demetrius +Jerry +Jesus +Kobe +Payton +Alan +Camden +Damien +Demarcus +Gage +Jakob +Jamarcus +Lane +Russell +Spencer +Trey +Victor +Walter +Billy +Calvin +Jon +Maxwell +Sawyer +Shawn +Tyrese +Cedric +Jaylin +Kendrick +Tristen +Ty +Vincent +Zackary +Zane +Brett +Ivan +Malik +Skyler +Trent +Angel +Chance +Deandre +Dominic +Jakobe +Jaxon +Myles +Omarion +Xander +Allen +Andre +Coleman +Frank +Griffin +Jace +Mario +Miguel +Nicolas +Rodney +Terry +Tyrone +Cade +Damian +Jamarion +Jonathon +Keith +Kristopher +Larry +Roderick +Davis +Frederick +Houston +Jermaine +Micheal +Oscar +Amari +Bryce +Cory +Dillon +Marvin +Raymond +Ricardo +Skylar +Bailey +Brendan +Danny +Hudson +Jamal +Jaquan +Kelvin +Randall +Trace +Tyson +Willie +Brock +Derek +Justice +Kolby +Lance +Max +Quinton +Shaun +Warren +Weston +Zackery +Emmanuel +Erik +Gary +Graham +Javier +Jay +Jessie +Josiah +Nickolas +Pierce +Sebastian +Troy +Ahmad +Albert +Bobby +Clinton +Dallas +Douglas +Drake +Drew +Edwin +Francisco +Jadon +Jaiden +Jamari +Jayson +Joe +Lawson +Marshall +Miles +Morgan +Omar +Peter +Reginald +Tony +Ayden +Brennan +Brooks +Charlie +Coby +Desmond +Holden +Jacoby +Judson +Julius +Kamron +Kendall +Leon +Philip +Ricky +Shane +Yahir +Zachery +Alejandro +Amarion +Arthur +Bennett +Brent +Byron +Carl +Casey +Courtney +Cristian +Damion +Dayton +Devan +Diego +Josue +Kyler +Liam +Randy +Terrell +Braeden +Damon +Dominick +Eddie +Fredrick +Jarrett +Jaydon +Jimmy +Jorge +Karson +Ladarius +Manuel +Marion +Mathew +Maurice +Mikel +Miller +Nolan +Oliver +Quentin +Ross +Tristin +Zion +Brantley +Brenden +Brennen +Cayden +Chad +Clay +Cornelius +Cortez +Darrell +Darren +Davion +Dennis +Dorian +Elisha +Emanuel +Ernest +Fernando +Gerardo +Harley +Isiah +Jaheim +Jaquarius +Jaquez +Javonte +Kade +Keegan +Koby +Kristian +Lukas +Maddox +Marquez +Martin +Melvin +Roy +Scott +Terrence +Trevon +Zander +Camren +Cason +Dante +Darryl +Deonte +Heath +Jacorey +Jamichael +Jarvis +Jaylan +Jerome +Kaiden +Keaton +Kennedy +Keshawn +Khalil +Ladarrius +Lawrence +London +Lorenzo +Reece +Solomon +Tobias +Tommy +Tyrek +Waylon +Wilson +Xzavier +Zacchaeus +Blaine +Branson +Braydon +Braylon +Camryn +Cesar +Corbin +Davin +Destin +Devonte +Ezekiel +Felix +Garrison +Giovanni +Greyson +Howard +Jabari +Jalon +Jamie +Jaquavious +Javen +Javeon +Javion +Johnathon +Jordon +Kai +Kendarius +Kerry +Kody +Malcolm +Marc +Marco +Marquis +Omari +Pedro +Quincy +Rashad +Reid +Roberto +Ronnie +Sage +Shannon +Sidney +Simon +Terrance +Tyree +Abraham +Aden +Adolfo +Alton +Andy +Antoine +Arturo +Asa +Aubrey +Bernard +Branden +Damarcus +Devante +Edgar +Eduardo +Elliott +Enrique +Forrest +Foster +Franklin +Gerald +Gordon +Grady +Hayes +Issac +Jacobi +Jadarian +Jagger +Jakari +Jameson +Jarius +Javaris +Jaxson +Jeb +Judah +Julio +Justus +Kentrell +Keon +Keyshawn +Layton +Leonardo +Nathanael +Nehemiah +Nigel +Nikolas +Norman +Paxton +River +Roman +Salvador +Sam +Silas +Tate +Todd +Trentin +Wade +Zachariah +Addison +Alden +Alexis +Alonzo +Alvin +Amir +Anderson +Beau +Brannon +Brayan +Brenton +Briley +Broderick +Bruce +Caiden +Canaan +Clark +Cyrus +Dale +Damarion +Daquan +Daylan +Dejuan +Demarion +Deontae +Dwayne +Dylon +Erick +Everett +Fletcher +Garret +Gauge +Harold +Israel +Jacolby +Jadarius +Jamarian +Jamel +Jarred +Javian +Jayce +Jody +Jonas +Jude +Kamari +Kamryn +Kasey +Keagan +Keenan +Kejuan +Kelton +Kevon +Kolton +Lee +Lewis +Lonnie +Marcos +Markell +Marlon +Marquise +Martez +Mykel +Nasir +Nelson +Ralph +Ruben +Rylan +Ryland +Sergio +Shamar +Sheldon +Shelton +Slade +Stanley +Titus +Toby +Tomas +Triston +Turner +Tylan +Andres +Angelo +Antwan +Aric +Asher +Auston +Braiden +Brant +Bronson +Campbell +Chancellor +Chris +Clint +Colt +Craig +Crawford +Dakotah +Darian +Darrius +Daven +Deanthony +Denver +Denzel +Deshawn +Deven +Devonta +Dillan +Dominique +Don +Donavan +Draven +Ean +Earnest +Easton +Efrain +Elias +Ellis +Emmett +Fabian +Gunnar +Gunner +Jacorian +Jacquez +Jalin +Jalyn +Jamar +Jamison +Jarod +Jashon +Javon +Jermiah +Jovan +Kadarius +Kason +Keandre +Kellen +Kendell +Keyon +Khristopher +Konnor +Kylan +Leonard +Louis +Markus +Marques +Martavious +Orlando +Pablo +Presley +Princeton +Quintin +Rafael +Raul +Reagan +Reed +Reese +Roger +Romeo +Sedrick +Sherman +Stone +Tadarius +Toney +Tracy +Travon +Treshawn +Trevin +Will +Winston +Yair +Zayden +Zechariah +William +Jacob +John +Joshua +James +Christopher +Michael +Matthew +Ethan +Joseph +Tyler +Andrew +Jackson +David +Austin +Caleb +Hunter +Christian +Cameron +Samuel +Daniel +Thomas +Nicholas +Brandon +Logan +Jonathan +Robert +Elijah +Dylan +Jordan +Justin +Charles +Noah +Landon +Benjamin +Ryan +Zachary +Alexander +Nathan +Anthony +Timothy +Ashton +Mason +Connor +Gabriel +Jeremiah +Luke +Kaleb +Evan +Gavin +Hayden +Brayden +Isaiah +Jason +Aaron +Braxton +Eric +Seth +Carson +Isaac +Kevin +Jayden +Caden +Nathaniel +Cody +Brody +Dalton +Aidan +Patrick +Tanner +Devin +Garrett +Parker +Adam +Jack +Steven +Carter +Lucas +Peyton +Jaylen +Richard +Jaden +Aiden +Alex +Brian +Chase +Kyle +Preston +Stephen +Xavier +Antonio +Collin +Jeremy +Kenneth +Bradley +Colton +Conner +Brady +Bryan +Clayton +Jesse +Jose +Taylor +Tristan +Kaden +Braden +Dawson +Harrison +Bryson +Dakota +Riley +Sean +Trenton +Cole +Ian +Micah +Owen +Wesley +Blake +Colin +Grayson +Jalen +Johnathan +Marcus +Chandler +Juan +Skyler +Colby +Eli +Jaylon +Kameron +Wyatt +Henry +Jake +Levi +Cooper +Corey +Grant +Shawn +Edward +George +Jaxon +Malachi +Mark +Jonah +Luis +Travis +Trevor +Jeffrey +Walker +Derrick +Dustin +Jamarcus +Jamarion +Paul +Gage +Phillip +Carlos +Gregory +Adrian +Brodie +Jared +Malik +Tucker +Cade +Hudson +Julian +Spencer +Davis +Devon +Camden +Ronald +Zackary +Avery +Bryant +Griffin +Jerry +Josiah +Larry +Omarion +Trey +Willie +Camron +Cayden +Donovan +Lane +Payton +Trent +Alan +Jeffery +Jon +Landen +Maxwell +Raymond +Terry +Victor +Amarion +Deandre +Demetrius +Dillon +Donald +Drake +Jamari +Jesus +Jimmy +Joel +Johnny +Miguel +Walter +Amari +Brendan +Bryce +Calvin +Damian +Graham +Jaylan +Skylar +Terrance +Troy +Zion +Alexis +Frank +Gary +Morgan +Rodney +Russell +Sawyer +Sebastian +Shane +Ty +Wilson +Allen +Ayden +Brooks +Coleman +Curtis +Darius +Ivan +Jakob +Jermaine +Nolan +Omar +Randy +Reginald +Angel +Billy +Eduardo +Fernando +Houston +Javion +Jonathon +Judson +Nicolas +Roderick +Xander +Bailey +Brennan +Brock +Casey +Cedric +Chance +Charlie +Cory +Damien +Dominic +Jace +Jakobe +Jamal +Jaquan +Jessie +Kolby +Kristopher +Martin +Mitchell +Zackery +Alejandro +Bobby +Brett +Clay +Eddie +Jaiden +Kendrick +Kobe +Peter +Randall +Tristen +Tyrese +Zachariah +Zander +Aden +Arthur +Carl +Chad +Derek +Jameson +Jorge +Kelvin +Kendall +Lawson +Mario +Micheal +Philip +Quinton +Reese +Andre +Braydon +Cason +Dallas +Darrell +Dennis +Dorian +Douglas +Edwin +Erik +Jabari +Joe +Keith +Manuel +Oliver +Oscar +Scott +Tommy +Triston +Tyson +Zachery +Cornelius +Damion +Davion +Diego +Edgar +Francisco +Jacoby +Javon +Jay +Jaylin +Kade +Kyler +Ladarius +Lee +Marco +Myles +Nathanael +Nickolas +Roman +Ronnie +Tony +Yahir +Abraham +Clarence +Corbin +Cristian +Damon +Drew +Kendarius +Keyshawn +Lawrence +Maurice +Mikel +Miles +Rafael +Ruben +Trevon +Zane +Ahmad +Alec +Caiden +Demarcus +Deshawn +Dillan +Enrique +Grady +Greyson +Harley +Heath +Israel +Jamar +Jarrett +Javier +Jayson +Kamron +Keondre +Liam +Marlon +Pedro +Rashad +Ricardo +River +Rylan +Shaun +Warren +Weston +Albert +Anderson +Aubrey +Braeden +Brendon +Brent +Byron +Danny +Dante +Deon +Desmond +Emmanuel +Frederick +Fredrick +Jamichael +Jamie +Jarvis +Jasper +Johnathon +Jonas +Josue +Keandre +Louis +Marquis +Mathew +Roger +Shannon +Silas +Solomon +Todd +Trace +Vincent +Addison +Branden +Brenden +Briley +Camren +Clifford +Clinton +Cordell +Darrion +Deanthony +Demarion +Dwayne +Franklin +Gerald +Issac +Jamarius +Kayden +Kejuan +Maddox +Max +Mekhi +Melvin +Nehemiah +Nigel +Omari +Ricky +Roberto +Ryder +Terrell +Terrence +Turner +Waylon +Xzavier +Adan +Antoine +Asher +Brantley +Brenton +Bruce +Canaan +Cesar +Damarion +Dandre +Darren +Deangelo +Destin +Devan +Dominick +Easton +Elias +Ezekiel +Gunner +Hector +Isiah +Jadon +Jaleel +Jaquez +Jaydon +Jeb +Jerrell +Jkwon +Julio +Julius +Kadin +Kane +Kerry +Kristian +Leonard +Lukas +Marshall +Pierce +Quincy +Toby +Tristin +Will +Zacchaeus +Alvin +Barrett +Baylor +Braiden +Braylon +Cohen +Cortez +Dewayne +Elisha +Erick +Harold +Holden +Jacorey +Jakari +Jamison +Jarod +Javontae +Jerome +Kamren +Kanye +Keaton +Keegan +Kelby +Khalil +Kody +Lamarcus +Lamarion +Lance +Lewis +Lorenzo +Markel +Mateo +Nelson +Nikolas +Reagan +Reid +Remington +Roy +Saul +Sergio +Shamar +Stanley +Titus +Trevion +Tyrone +Vicente +Allan +Amir +Antwone +Armando +Ashtin +Auston +Beau +Bentley +Brannon +Branson +Brayan +Cannon +Case +Chevy +Clifton +Coby +Dale +Darnell +Darryl +Davian +Dayton +Deven +Devonte +Devyn +Draven +Emanuel +Everett +Felipe +Garrison +Gaspar +Gibson +Glenn +Howard +Ismael +Jacobe +Jadyn +Jaeden +Jaheim +Jaquarius +Javan +Javaris +Javonta +Jaxson +Jimmie +Joey +Johan +Judah +Justice +Kaiden +Kamari +Kendal +Kendarious +Kennedy +Kentrell +Kenyon +Kolton +Korey +Lamar +Marquez +Orlando +Ray +Reece +Rickey +Rogelio +Sidney +Simeon +Tate +Tyrell +Wayne +Willis +Abram +Alden +Alfredo +Andon +Antwon +Asa +Ashten +Blaze +Bo +Cale +Carmelo +Casen +Cecil +Cedrick +Chapman +Coleton +Dakoda +Daquan +Darian +Darien +Darwin +Daryl +Daylon +Demario +Demond +Deondre +Deshaun +Dexter +Duncan +Elliot +Elliott +Emory +Ezra +Fabian +Gerardo +Haden +Horace +Ira +Izaiah +Jadarius +Jaime +Jakobi +Jalyn +Jamel +Jamicheal +Jaquavious +Jarius +Jase +Javen +Javian +Jorden +Jordyn +Jude +Kai +Karl +Kason +Kedrick +Keenan +Kenton +Keonta +Keontae +Kevon +Konnor +Latrell +Leo +Leon +Leonardo +Lonnie +Maison +Malek +Markell +Markus +Martavius +Marvin +Mauricio +Pablo +Pascual +Paxton +Phoenix +Quentin +Raul +Reed +Rigoberto +Rodrick +Roland +Sam +Sammy +Santiago +Shelton +Shon +Slade +Tavion +Theodore +Treveon +Tyquan +Tyree +William +Joshua +James +John +Michael +Jacob +Christopher +Ethan +Matthew +Jackson +Andrew +Samuel +Joseph +Tyler +David +Caleb +Austin +Hunter +Cameron +Noah +Thomas +Robert +Christian +Logan +Daniel +Jonathan +Elijah +Brandon +Landon +Dylan +Nicholas +Jordan +Nathan +Charles +Zachary +Justin +Jeremiah +Mason +Alexander +Ryan +Gabriel +Evan +Hayden +Anthony +Benjamin +Gavin +Jayden +Connor +Kevin +Timothy +Isaiah +Carson +Luke +Ashton +Caden +Brayden +Devin +Carter +Jack +Jason +Aiden +Eric +Braxton +Brody +Dalton +Brian +Kaleb +Peyton +Jaylen +Braden +Tristan +Conner +Lucas +Aaron +Antonio +Richard +Jose +Nathaniel +Preston +Aidan +Cody +Alex +Jaden +Micah +Sean +Dakota +Chase +Taylor +Wesley +Ian +Juan +Kenneth +Xavier +Isaac +Parker +Brodie +Garrett +Jeremy +Jesse +Steven +Trenton +Adam +Bradley +Stephen +Tanner +Seth +Kyle +Patrick +Henry +Cole +Collin +Brady +Colton +Kaden +Owen +Bryan +Kameron +Wyatt +Dawson +Cooper +Jalen +Marcus +Jamarion +Blake +Jaxon +Johnathan +Luis +Angel +Carlos +Grant +Riley +Jonah +Edward +Eli +Levi +Omarion +Clayton +Colin +Mark +Grayson +Malachi +Terry +Camden +Colby +Derrick +Dustin +Gregory +Jake +Julian +Travis +Adrian +Bryson +Miguel +Tucker +Devon +Harrison +George +Jaylon +Walker +Cayden +Bryce +Corey +Jesus +Malik +Payton +Trevor +Alan +Jerry +Landen +Paul +Sawyer +Ty +Victor +Hudson +Jeffrey +Troy +Andre +Curtis +Jace +Jared +Shawn +Camron +Dominic +Jaiden +Jon +Ayden +Bryant +Chandler +Kayden +Cade +Deandre +Phillip +Sebastian +Douglas +Lance +Nicolas +Oscar +Skyler +Brendan +Darius +Diego +Edwin +Jamari +Jaylin +Joel +Calvin +Coleman +Donald +Drake +Jamarcus +Maddox +Philip +Rodney +Ronald +Bobby +Brennan +Damien +Skylar +Avery +Brooks +Davis +Francisco +Gage +Jakob +Jermaine +Johnny +Maxwell +Mitchell +Omar +Randy +Roderick +Terrance +Trey +Tristen +Zackary +Zion +Braylon +Casey +Charlie +Kelvin +Lane +Trent +Vincent +Willie +Alexis +Brock +Chance +Javon +Josiah +Josue +Martin +Miles +Nolan +Walter +Zander +Alejandro +Allen +Amarion +Damon +Demarcus +Emmanuel +Gerald +Jaxson +Jonathon +Kaiden +Larry +Morgan +Reginald +Weston +Brett +Chad +Corbin +Dallas +Derek +Desmond +Eduardo +Jay +Jeffery +Jimmy +Jorge +Kristopher +Max +Reece +Ricky +Roman +Tony +Caiden +Cedric +Cory +Demarion +Dennis +Donovan +Easton +Edgar +Ezekiel +Israel +Jacoby +Jayson +Kendall +Oliver +Pedro +Peter +Raymond +Russell +Spencer +Tommy +Triston +Tyson +Wilson +Bailey +Bennett +Cohen +Damian +Danny +Davion +Fredrick +Griffin +Houston +Jadon +Judson +Keith +Kenyon +Lukas +Mario +Mekhi +Randall +Shane +Terrell +Aden +Ahmad +Amari +Anderson +Baylor +Cesar +Demetrius +Dillon +Dorian +Jabari +Kendrick +Kyler +Malcolm +Nickolas +Ricardo +Ryder +Rylan +Barrett +Brantley +Carl +Cortez +Elliott +Emanuel +Gary +Jaquan +Javion +Jaydon +Kobe +Kody +Kristian +Lawson +Marcos +Maurice +Myles +Pierce +Quentin +Quincy +River +Shannon +Tyree +Tyrone +Warren +Zachery +Zackery +Zane +Arthur +Asa +Bentley +Billy +Braydon +Brenden +Byron +Devan +Dillan +Dominick +Erick +Fernando +Graham +Greyson +Harley +Ivan +Jacorey +Jarrett +Javier +Jude +Justice +Keegan +Keshawn +Kolby +Marshall +Micheal +Nathanael +Rafael +Roger +Ronnie +Shaun +Albert +Asher +Aubrey +Cason +Clay +Colten +Cristian +Damarion +Davin +Elisha +Elliot +Frederick +Harold +Holden +Jamarius +Jarvis +Joey +Kasey +Khalil +Manuel +Marvin +Nelson +Nikolas +Quinton +Shamar +Tristin +Xander +Andy +Bradyn +Branden +Brent +Bruce +Campbell +Cannon +Cornelius +Dejuan +Eddie +Enrique +Frank +Giovanni +Heath +Ismael +Jameson +Jamie +Jayce +Jaylan +Jessie +Joe +Kade +Kamari +Kamron +Keaton +Lamar +Lawrence +Liam +Lorenzo +Markel +Melvin +Phoenix +Reese +Roberto +Scott +Simon +Tyrese +Yahir +Abraham +Abram +Adolfo +Andres +Barry +Braylen +Cecil +Chris +Courtney +Darren +Dayton +Draven +Drew +Erik +Ernest +Grady +Gunner +Gustavo +Harry +Hector +Isiah +Jacori +Jamal +Jamar +Javeon +Jonas +Julio +Julius +Kason +Kellen +Ladarius +Leonardo +Lincoln +Nigel +Orlando +Rashawn +Reed +Remington +Rhett +Solomon +Titus +Tobias +Toby +Trace +Trevon +Tristian +Zachariah +Amare +Axel +Ben +Bishop +Bo +Braeden +Brendon +Brenton +Brodey +Canaan +Carlton +Clark +Clifton +Clinton +Cullen +Cyrus +Dante +Daryl +Davon +Deangelo +Deontae +Dontavious +Esteban +Glenn +Hampton +Issac +Jadarius +Jett +Judah +Kadyn +Kane +Karson +Keyon +Korey +Kylan +Layton +Lebron +Leland +London +Marco +Mikel +Perry +Pierre +Rashad +Rickey +Rodrigo +Ruben +Talan +Terrence +Tracy +Turner +Tylan +Will +Adan +Addison +Alec +Ali +Alijah +Antoine +Arturo +Braiden +Briley +Broderick +Clarence +Coby +Coy +Damion +Darian +Daven +Dean +Dewayne +Duncan +Ean +Elias +Emory +Everett +Franklin +Gabe +Garrison +Gaspar +Gerardo +Howard +Jacobi +Jakari +Jakobi +Jamichael +Jaquavious +Jase +Jasper +Javian +Jerome +Johnnie +Jordon +Junior +Justus +Kadarius +Keelan +Keenan +Kelton +Kendarius +Kendell +Keshun +Keyshawn +Kolton +Landyn +Lee +Leo +Leon +Leslie +Markell +Marques +Mathew +Mauricio +Nehemiah +Omari +Quenton +Raphael +Reid +Sergio +Sidney +Tamarcus +Theodore +Todd +Tommie +Trayton +Treyvon +Tyrell +Wade +Winston +Allan +Amir +Antwan +Armando +Aron +Austyn +Beau +Blaze +Bradlee +Brice +Brodee +Brycen +Camryn +Chaz +Conor +Corban +Craig +Dakotah +Damarcus +Darryl +Davian +Demario +Devante +Deven +Devonte +Domingo +Dominique +Ellis +Elvin +Emmett +Ezequiel +Ezra +Gaven +Harris +Hugo +Jacolby +Jadan +Jaidyn +Jajuan +Jakobe +Jalon +Jamarian +Jaquez +Johnathon +Jorden +Josh +Kareem +Kennedy +Kerry +Konner +Lamarcus +Latrell +Lewis +Mckinley +Norman +Otis +Paxton +Porter +Quinterrius +Quintin +Rashard +Sam +Santiago +Saul +Simeon +Slade +Stanley +Tate +Tavares +Thaddeus +Vicente +Waylon +Wayne +Xzavier +William +Jacob +James +Joshua +John +Michael +Jackson +Christopher +Ethan +Matthew +Noah +Joseph +Tyler +Andrew +Landon +Caleb +Samuel +David +Elijah +Jordan +Austin +Christian +Hunter +Logan +Robert +Brandon +Cameron +Jonathan +Daniel +Alexander +Nicholas +Thomas +Charles +Jayden +Benjamin +Dylan +Zachary +Justin +Jeremiah +Anthony +Hayden +Gabriel +Mason +Aiden +Brayden +Gavin +Nathan +Isaiah +Luke +Tristan +Ryan +Timothy +Evan +Connor +Kevin +Jason +Kaleb +Aaron +Ashton +Brody +Carson +Carter +Braxton +Caden +Aidan +Cooper +Kaden +Devin +Eric +Lucas +Brodie +Chase +Richard +Xavier +Micah +Isaac +Seth +Ian +Jack +Antonio +Jose +Preston +Parker +Cody +Dalton +Alex +Braden +Jaylen +Owen +Jeremy +Bryan +Jaden +Brian +Eli +Peyton +Kenneth +Wyatt +Brady +Taylor +Trenton +Colton +Marcus +Steven +Nathaniel +Stephen +Wesley +Dakota +Juan +Riley +Ayden +Cole +Garrett +Jesse +Angel +Dawson +Grayson +Henry +Malachi +Sean +Tanner +Jalen +Adam +Bryson +George +Kyle +Patrick +Bradley +Jaxon +Johnathan +Clayton +Luis +Conner +Hudson +Blake +Harrison +Levi +Paul +Tucker +Walker +Miguel +Adrian +Grant +Camden +Carlos +Cayden +Julian +Kameron +Shawn +Travis +Colin +Jake +Mark +Gregory +Jamarion +Jesus +Bryce +Diego +Sawyer +Camron +Landen +Phillip +Trevor +Bryant +Corey +Victor +Jaylon +Jonah +Skyler +Derrick +Jace +Gage +Jeffrey +Avery +Demetrius +Jaiden +Jared +Joel +Josiah +Dominic +Kristopher +Chandler +Colby +Collin +Cristian +Davis +Ronald +Zion +Donovan +Francisco +Johnny +Malik +Roman +Terry +Trey +Calvin +Edward +Jamarcus +Kaiden +Maddox +Nolan +Curtis +Griffin +Israel +Jon +Morgan +Troy +Alan +Alejandro +Deandre +Drake +Dustin +Miles +Myles +Talan +Tristen +Willie +Jamari +Keith +Oscar +Sebastian +Terrance +Allen +Brock +Brooks +Damian +Damien +Demarion +Edwin +Liam +Mario +Roderick +Rylan +Tony +Tyson +Aden +Alexis +Dallas +Erik +Frank +Jerry +Larry +Maurice +Skylar +Amari +Braylon +Cedric +Coleman +Jimmy +Jorge +Kendrick +Kyler +Trent +Vincent +Zane +Chance +Derek +Dillon +Donald +Jaylan +Jonathon +Kelvin +Marshall +Nicolas +Ricky +Shane +Shaun +Spencer +Brett +Devon +Easton +Eduardo +Jessie +Julius +Omarion +Cade +Darrell +Drew +Fernando +Graham +Greyson +Jaylin +Kendall +Leonardo +Omar +Pedro +Reid +Walter +Xander +Anderson +Andre +Asher +Brayan +Caiden +Demarcus +Emmanuel +Gary +Javion +Jaxson +Jeffery +Kayden +Ladarius +Malcolm +Nehemiah +Reginald +Russell +Wilson +Zackary +Cesar +Darius +Dennis +Dominick +Eddie +Ivan +Jameson +Josue +Lane +Lawson +Maxwell +Oliver +Ty +Zackery +Addison +Andres +Andy +Brantley +Courtney +Elias +Ezekiel +Harley +Houston +Jabari +Jakobe +Jaquan +Jay +Jermaine +Khalil +Leland +Martin +Max +Rafael +Zander +Adan +Asa +Bobby +Braydon +Brendan +Cason +Corbin +Cornelius +Douglas +Hector +Jadon +Jamison +Javon +Joe +Kamron +Karson +Lance +Mitchell +Nigel +Quentin +Rodney +Scott +Solomon +Terrence +Weston +Billy +Charlie +Cohen +Damon +Elliott +Gerardo +Javier +Justice +Kobe +Paxton +Payton +Quinton +Raymond +Silas +Terrell +Trace +Tristian +Tristin +Tyrese +Albert +Atticus +Braylen +Brendon +Brent +Cortez +Damarion +Damion +Deshawn +Desmond +Dewayne +Everett +Frederick +Fredrick +Jacoby +Jacorey +Jaydon +Jude +Lawrence +Layton +Lukas +Micheal +Nickolas +Peter +Philip +Randy +Ray +Ruben +Ryder +Titus +Toby +Tommy +Tyree +Xzavier +Antwan +Arthur +Branson +Brennan +Briley +Carl +Carmelo +Chad +Devontae +Dorian +Emanuel +Gerald +Giovanni +Grady +Jakob +Jase +Johnathon +Kamari +Kamden +Keaton +Lorenzo +Marvin +Raul +Reed +Ricardo +Roberto +Simon +Trevon +Waylon +Abraham +Blaine +Brycen +Byron +Casey +Clay +Cory +Derick +Draven +Emory +Frankie +Holden +Isiah +Issac +Jacobi +Jamie +Jorden +Judson +Keshawn +Kody +Kolby +Kole +Korey +Lee +Louis +Marlon +Marquis +Melvin +Nathanael +Orlando +Phoenix +Rashad +River +Ronnie +Tate +Triston +Alexzander +Augustus +Axel +Bailey +Braeden +Braiden +Camryn +Canaan +Chris +Cullen +Darian +Dayton +Devan +Devonte +Edgar +Elisha +Ellis +Garrison +Gunnar +Hugo +Jamarius +Jamichael +Jaquavious +Jarvis +Jayce +Jordyn +Judah +Keegan +Kentavious +Kenyon +Landyn +Lincoln +Marco +Markus +Marquez +Nathanial +Randall +Reece +Rhett +Sergio +Stanley +Thaddeus +Tobias +Winston +Zavier +Adolfo +Alijah +Alvin +Amare +Branden +Brenton +Brice +Britton +Bruce +Carlton +Clarence +Clark +Crimson +Damarcus +Darrius +Darryl +Ean +Emerson +Erick +Gideon +Gustavo +Jakari +Jalon +Jamal +Javien +Jayson +Josh +Kade +Kason +Kennedy +Kerry +Lewis +Montrell +Porter +Price +Quincy +Reese +Roger +Rolando +Ronaldo +Saul +Steve +Tylan +Tyrell +Tyshaun +Yahir +Zachery +Achilles +Alberto +Alec +Alton +Armando +Aubrey +Beau +Benton +Bodie +Braedon +Brenden +Cannon +Clint +Clinton +Conrad +Danny +Dante +Daylon +Dean +Deangelo +Demonte +Deshaun +Devonta +Domingo +Elliot +Emmett +Ernest +Ezra +Felix +Gunner +Haden +Harris +Heath +Howard +Jackie +Jadarius +Jadyn +Jaime +Jamarian +Jarrett +Jasper +Jody +Joey +Johnnie +Jordon +Kamarion +Keldrick +Kelly +Kelton +Kemari +Kolton +Kristian +Kylan +Lamar +London +Martez +Mauricio +Mikel +Miller +Nikolas +Pascual +Pierce +Reagan +Rylee +Semaj +Sidney +Slade +Talon +Tavaris +Travon +Tyrone +Uriel +Van +Wade +Warren +Wiley +Xavion +Zechariah +Alfonso +Alfred +Alfredo +Amarion +Antwone +Arturo +Aydan +Barry +Baylor +Bernard +Bradford +Brannon +Braylan +Broderick +Camauri +Case +Cecil +Chadwick +Coby +Corde +Cordell +Craig +Cruz +Dashawn +Davon +Daylan +Delvin +Demario +Dezmond +Don +Dontae +Earl +Earnest +Elmer +Emiliano +Enrique +Ernesto +Ezequiel +Fletcher +Gavyn +Glenn +Harper +Harvey +Hayes +Isaias +Ismael +Jacobe +Jacolby +Jadin +Jajuan +Jakobi +Jamar +Jaquarius +Javian +Jaydan +Jefferson +Jerome +Joaquin +Jonas +Julio +Kadyn +Kai +Kanye +Keagan +Keandre +Keelan +Keller +Kemauri +Kendarius +Kennon +Kentrell +Keyon +King +Konnor +Kristofer +Kyron +Leon +Leonard +Lyric +Manuel +Marc +Marcos +Mekhi +Nasir +Neil +Nelson +Noe +Omari +Palmer +Pierre +Sage +Salvador +Santiago +Scotty +Shannon +Sterling +Tamarion +Thatcher +Todd +Tomas +Turner +Tylen +Yusuf +William +James +Christopher +John +Jacob +Joshua +Jackson +Michael +Ethan +Noah +Caleb +Jayden +Cameron +David +Samuel +Tyler +Matthew +Andrew +Jordan +Landon +Logan +Elijah +Christian +Joseph +Daniel +Robert +Aiden +Austin +Brayden +Gavin +Charles +Mason +Hunter +Benjamin +Jonathan +Brandon +Nicholas +Alexander +Anthony +Dylan +Jeremiah +Thomas +Nathan +Evan +Hayden +Justin +Gabriel +Zachary +Jaden +Kevin +Luke +Isaiah +Ryan +Parker +Brody +Caden +Carson +Aaron +Tristan +Connor +Braxton +Lucas +Carter +Jason +Kaleb +Isaac +Jose +Jaylen +Cooper +Jack +Eric +Owen +Timothy +Micah +Kaden +Alex +Ashton +Xavier +Colton +Peyton +Richard +Braden +Nathaniel +Jaxon +Brady +Aidan +Grayson +Ian +Juan +Marcus +Preston +Wyatt +Chase +Cody +Dalton +Seth +Steven +Trenton +Luis +Patrick +Adam +Blake +Sean +Bryan +Conner +Stephen +Tanner +Cayden +Jesse +Brian +Devin +Kenneth +Levi +Antonio +Henry +Garrett +Wesley +Jeremy +Tucker +Adrian +Dawson +George +Malachi +Cole +Kameron +Brodie +Bryson +Dakota +Eli +Harrison +Jonah +Angel +Ayden +Bradley +Bryce +Hudson +Riley +Jake +Jamarion +Taylor +Carlos +Jesus +Kyle +Sawyer +Shawn +Clayton +Devon +Jaiden +Jamarcus +Julian +Colby +Corey +Kayden +Mark +Spencer +Travis +Zion +Payton +Cade +Collin +Jalen +Alan +Camden +Grant +Jon +Diego +Edward +Derrick +Josiah +Paul +Bryant +Damien +Gage +Johnathan +Miguel +Avery +Chance +Phillip +Jace +Jaylin +Maddox +Micheal +Rylan +Asher +Davis +Malik +Victor +Colin +Desmond +Edwin +Gregory +Larry +Ty +Cristian +Jerry +Joel +Landen +Max +Anderson +Braylon +Mario +Omar +Ronald +Terrance +Trevor +Trey +Tyson +Vincent +Weston +Andre +Calvin +Jeffrey +Walker +Alexis +Braydon +Camron +Chandler +Donald +Maurice +Roderick +Zackary +Curtis +Derek +Dustin +Griffin +Jimmy +Johnny +Keith +Kendrick +Kyler +Leland +Liam +Miles +Nicolas +Skylar +Allen +Brooks +Coleman +Dallas +Dominic +Drake +Israel +Jaylon +Kendall +Nolan +Amari +Caiden +Jadarius +Jeffery +Lee +Morgan +Rodney +Sebastian +Silas +Skyler +Terry +Andres +Brock +Eduardo +Emanuel +Houston +Ivan +Jaxson +Myles +Scott +Tristen +Troy +Zane +Cohen +Danny +Donovan +Edgar +Ezekiel +Jakob +Josue +Kingston +Lawson +Layton +Manuel +Oscar +Randy +Reginald +Willie +Aden +Andy +Damian +Deandre +Elias +Javier +Judson +Kaiden +Kobe +Lane +Martin +Oliver +Roman +Sergio +Walter +Bobby +Brennan +Byron +Cedric +Charlie +Cory +Davion +Demarion +Demetrius +Dennis +Easton +Elisha +Francisco +Gary +Jamari +Jared +Jaydon +Joe +Kamari +Keaton +Keegan +Mitchell +Pedro +Peter +Randall +Tony +Trent +Zander +Cornelius +Dayton +Elliott +Erick +Jabari +Jakobe +Jaquan +Javon +Jude +Maxwell +Raymond +Ricky +Tommy +Wilson +Bailey +Billy +Brantley +Brendan +Brenden +Courtney +Darius +Erik +Fisher +Graham +Jamal +Jameson +Javion +Jay +Jaylan +Kason +Kelvin +Marvin +Nehemiah +Reid +Russell +Terrence +Zackery +Zechariah +Alejandro +Barrett +Bennett +Cason +Corbin +Darren +Demarcus +Emmanuel +Fernando +Jacorey +Jermaine +Jordon +Justice +Marshall +Omarion +Philip +Quentin +Rhett +Tristian +Tylan +Amir +Braeden +Brayan +Brent +Colten +Damon +Dewayne +Grady +Jerome +Jessie +Jorge +Kamron +Lawrence +Leon +Rashad +Ruben +Ryder +Will +Zayden +Asa +Baylor +Beau +Blaine +Brannon +Brett +Darion +Devan +Enrique +Gerardo +Gustavo +Hayes +Jacoby +Jamar +Jamie +Jarvis +Karson +Kendarius +Keshawn +Kristopher +Ladarius +Lance +Leo +Leonardo +Nickolas +Paxton +Quincy +Terrell +Titus +Turner +Xzavier +Aubrey +Bradyn +Braylen +Brendon +Bruce +Casey +Deshawn +Dillon +Drew +Gerald +Harley +Hector +Jadon +Jamarius +Jamison +Jayson +Jorden +Judah +Julio +Kamryn +Kenyon +Lincoln +Lukas +Quinton +Shaun +Tyrese +Xander +Ahmad +Amarion +Armando +Branden +Britton +Cortez +Damion +Dane +Darrell +Douglas +Frank +Franklin +Frederick +Giovanni +Greyson +Gunner +Javian +Jayce +Johnathon +Jonathon +Julius +Kai +Keilan +Kelan +Kolby +Kolton +Landyn +Marcos +Omari +Phoenix +Porter +Rafael +Ricardo +Rodrigo +Santiago +Stone +Trace +Trevon +Triston +Waylon +Abram +Adan +Alberto +Angelo +Antoine +Braiden +Bronson +Carl +Cesar +Chad +Colt +Damarion +Darryl +Deangelo +Dillan +Dorian +Ernesto +Everett +Garrison +Holden +Ismael +Jair +Jaquez +Joey +Kamden +Khalil +Kody +Landan +London +Louis +Markeith +Marlon +Melvin +Miller +Pierce +Quinn +Reece +Reed +Rickey +Roberto +Ronnie +Roy +Shane +Solomon +Stuart +Uriel +Zachariah +Zachery +Albert +Antwan +Armani +Arthur +Axel +Bentley +Benton +Brycen +Carnell +Cash +Coby +Darian +Darrion +Deon +Destin +Devonte +Dominick +Draven +Emory +Ezra +Fredrick +Howard +Issac +Jacobe +Jacobi +Jaedyn +Jamichael +Jarrett +Jase +Jashawn +Jasper +Javen +Javeon +Jayveon +Kade +Kane +Kejuan +Keshaun +King +Leonel +Lorenzo +Malcolm +Markel +Marquez +Raul +River +Ryland +Salvador +Simon +Slade +Tobias +Treyvon +Yahir +Alvin +Austyn +Bo +Brice +Camryn +Cannon +Carmelo +Casen +Chris +Clinton +Cristobal +Cristopher +Cruz +Deacon +Dean +Derrion +Deshaun +Dexter +Dominique +Duncan +Ellis +Felipe +Ford +Forrest +Harold +Harper +Heath +Isiah +Jadyn +Jagger +Jaime +Jakobi +Jamarkus +Jamarrion +Jaquavious +Jarred +Jordyn +Justus +Kamarion +Keenan +Kentrell +Konner +Kristian +Kylan +Ladarrion +Lamarcus +Marco +Mateo +Mathew +Moises +Nasir +Nelson +Noe +Pablo +Perry +Quindarius +Rashard +Reagan +Reese +Roland +Sage +Semaj +Shelton +Tate +Thaddeus +Travion +Trevion +Tristin +Wallace +Warren +Aaden +Addison +Adolfo +Aidyn +Alfred +Ali +Alton +Amauri +Aron +Austen +Aydan +Blaze +Boston +Bowen +Bradlee +Branson +Brennen +Brysen +Cadyn +Caedmon +Cale +Carsen +Case +Christofer +Cristofer +Dashawn +Davian +Daylin +Demarius +Deonte +Derick +Dontae +Eddie +Elliot +Elvis +Emerson +Emmett +Esteban +Felix +Freddy +Gael +Gannon +Gaven +Gordon +Gunnar +Haden +Harris +Jacari +Jacori +Jakari +Jamel +Jaquarius +Jathan +Javari +Javarius +Javien +Jayquan +Jerimiah +Josh +Kaeden +Keelan +Kellen +Kendal +Keon +Keontae +Keonte +Keyshawn +Korbin +Lamar +Latrell +Layne +Leslie +Major +Marion +Marquis +Martez +Mayson +Mekhi +Messiah +Moses +Nash +Nick +Roger +Samson +Stanley +Sterling +Stewart +Tadarius +Tatum +Tavaris +Theodore +Toby +Todd +Torian +Tylon +Tyrone +Wendell +Zack +Zavion +William +John +James +Jacob +Joshua +Christopher +Michael +Jackson +Jayden +Ethan +Caleb +Noah +Joseph +Elijah +Andrew +Christian +David +Matthew +Aiden +Samuel +Brayden +Landon +Jordan +Logan +Cameron +Tyler +Alexander +Charles +Daniel +Robert +Hunter +Mason +Benjamin +Jeremiah +Nathan +Anthony +Austin +Jonathan +Brandon +Dylan +Gavin +Gabriel +Thomas +Nicholas +Zachary +Brody +Carson +Luke +Evan +Hayden +Isaiah +Ryan +Justin +Jaden +Caden +Tristan +Parker +Connor +Lucas +Carter +Braxton +Cooper +Owen +Wyatt +Timothy +Micah +Kaden +Kevin +Colton +Jason +Jack +Aaron +Kaleb +Aidan +Eli +Isaac +Jose +Eric +Ayden +Ashton +Brian +Brady +Grayson +Jaylen +Jeremy +Chase +Antonio +Henry +Peyton +Preston +Alex +Cody +Braden +Cayden +Sean +Cole +Bryson +Jesse +Jaxon +Levi +Conner +Kameron +Kenneth +Xavier +Nathaniel +Blake +Devin +Steven +Adam +Kayden +Riley +Bryan +Richard +Dalton +Jonah +Wesley +Dakota +Jaiden +Tanner +Taylor +Harrison +Tucker +Jesus +Carlos +Juan +Luis +Patrick +Trenton +Ian +Adrian +Hudson +Angel +Bradley +Braylon +Sawyer +Seth +Garrett +Josiah +Marcus +Brodie +Camden +Jamarion +Kingston +Stephen +Clayton +Bryant +Collin +Malachi +Jake +Dawson +Jace +Shawn +George +Zion +Bryce +Colin +Corey +Davis +Joel +Miguel +Kaiden +Kyle +Landen +Trevor +Alan +Caiden +Jamari +Johnathan +Julian +Mark +Travis +Derrick +Diego +Emmanuel +Griffin +Maddox +Sebastian +Skyler +Avery +Gregory +Colby +Tristen +Amari +Damien +Edward +Gage +Jeffrey +Maxwell +Payton +Rylan +Liam +Paul +Alexis +Allen +Demetrius +Jamarcus +Jaylon +Malik +Oliver +Tyson +Asher +Brennan +Brooks +Oscar +Cristian +Darius +Jalen +Jon +Cade +Nicolas +Phillip +Ryder +Ty +Vincent +Zane +Camron +Cedric +Chance +Cohen +Easton +Grant +Jaxson +Johnny +Larry +Myles +Paxton +Terry +Victor +Coleman +Drake +Dustin +Edwin +Israel +Jeffery +Jermaine +Kristopher +Max +Nehemiah +Omar +Skylar +Walter +Weston +Willie +Alejandro +Bobby +Calvin +Cason +Charlie +Deandre +Devon +Eduardo +Kamari +Kelvin +Miles +Nolan +Terrance +Aden +Andres +Dallas +Demarcus +Donovan +Francisco +Frank +Houston +Jaydon +Kyler +Silas +Spencer +Tommy +Anderson +Braylen +Derek +Ezekiel +Grady +Jonas +Karson +Keith +Kendrick +Leland +Tony +Triston +Troy +Andre +Corbin +Danny +Donald +Graham +Jared +Javier +Jaylin +Kobe +Lane +Mario +Maurice +Ricardo +Walker +Zander +Bennett +Demarion +Desmond +Elias +Emanuel +Ivan +Judson +Keegan +Kendarius +Landyn +Micheal +Reginald +Ronald +Terrell +Aaden +Brantley +Brayan +Cesar +Drew +Elliott +Erik +Gary +Jacoby +Jimmy +Jonathon +Josue +Kason +Lance +Lawson +Manuel +Omari +Randall +Reid +Rodney +Roman +Solomon +Titus +Trent +Trey +Brett +Brock +Cornelius +Curtis +Dominic +Edgar +Frederick +Greyson +Jakob +Julius +Malcolm +Mitchell +Pedro +Peter +Trevon +Waylon +Andy +Aubrey +Billy +Braeden +Braiden +Braydon +Brendan +Bruce +Byron +Cannon +Cash +Chris +Dillon +Dominick +Erick +Fredrick +Jakobe +Jamal +Jamichael +Jerry +Jordyn +Judah +Jude +Kolby +Kolton +Marshall +Marvin +Philip +Quinton +Raymond +Reece +Warren +Zackery +Axel +Blaine +Bradyn +Carl +Chandler +Colten +Damian +Giovanni +Jamar +Jaquan +Javion +Johnathon +Kade +Lincoln +London +Marquis +Memphis +Porter +Rashad +Ricky +Shane +Zackary +Zechariah +Abraham +Aydan +Clarence +Clinton +Colt +Dennis +Deshawn +Devan +Emerson +Ezra +Fernando +Jadarius +Jameson +Javon +Jaylan +Jessie +Justice +Kai +Keon +Lawrence +Lewis +Martin +Mekhi +Nigel +Phoenix +Quentin +Rafael +Randy +River +Roderick +Rodrigo +Tate +Tristian +Zayden +Alonzo +Asa +Branson +Britton +Case +Casey +Courtney +Deacon +Derick +Dorian +Eddie +Elisha +Franklin +Holden +Jacobi +Jacorey +Jadon +Jaidyn +Jamarius +Jamison +Jasper +Javian +Jay +Jerome +Jorge +Kamron +Kane +Kristian +Lorenzo +Marco +Melvin +Miller +Morgan +Pierce +Russell +Stanley +Xander +Amarion +Brenden +Brycen +Chad +Cortez +Davian +Davion +Elliot +Gunner +Ismael +Issac +Jaydin +Jayson +Kamarion +Kendall +Kentrell +Kylan +Leonardo +Marcos +Mathew +Nelson +Nickolas +Quinn +Reed +Scott +Sergio +Talan +Zachery +Alijah +Amare +Barrett +Barry +Baylor +Brennen +Brennon +Camryn +Canaan +Clay +Clifford +Cordell +Damarion +Darryl +Dayton +Dewayne +Douglas +Finn +Fisher +Gustavo +Heath +Hector +Jamir +Jayce +Joaquin +Kamren +Kasen +Lamarcus +Layne +Layton +Louis +Reese +Ross +Rowan +Sidney +Simon +Talon +Terrence +Trevion +Tristin +Trystan +Turner +Tylan +Tyree +Uriel +Wilson +Zachariah +Abram +Ace +Aldo +Antwon +Arthur +Arturo +Beau +Branden +Brendon +Coleton +Cory +Coy +Crawford +Dane +Darian +Darrell +Darrius +Dean +Deanthony +Demarco +Destin +Domingo +Eddy +Enrique +Fabian +Felix +Finley +Foster +Gerald +Harold +Harry +Hayes +Isiah +Jakari +Jamie +Jerimiah +Joey +Julio +Kemarion +Kennedy +Keontae +King +Kody +Lukas +Markell +Marquez +Messiah +Nathanael +Roberto +Roger +Roland +Ronnie +Ruben +Simeon +Steve +Todd +Tommie +Tyquan +Will +Yahir +Zamarion +Amir +Antwan +Armando +Atticus +Bailey +Brent +Briley +Campbell +Cecil +Clark +Damion +Damon +Dedrick +Dwight +Ellis +Elvis +Everett +Garrison +Gray +Howard +Jabari +Jacorian +Jaime +Jamel +Jaquavious +Jarrett +Jarvis +Jatavious +Javen +Javien +Javonte +Jayvion +Jorden +Jordon +Kale +Kamden +Karter +Keagan +Keandre +Keaton +Keilan +Keller +Kelton +Kenton +Keyon +Kymani +Kyson +Lathan +Lee +Leonard +Marlon +Martez +Maximus +Morris +Moses +Nikolas +Pascual +Pearson +Perry +Rhett +Sabastian +Sam +Santiago +Semaj +Shannon +Toby +Travon +Valentin +Wade +Winston +Xzavier +Yandel +Zaylan +Zayne +Zephaniah +Adan +Addison +Ahmad +Alberto +Alfredo +Alvin +Armani +Aron +Benny +Brannon +Braylin +Cale +Camdyn +Casen +Chevy +Clyde +Coby +Collier +Corban +Cordarius +Crimson +Cullen +Dante +Darion +Darren +Davin +Davon +Daylen +Deangelo +Denver +Dereon +Donavan +Draven +Drayden +Drayton +Duane +Duncan +Earnest +Felipe +Frankie +Gideon +Harper +Hezekiah +Hugh +Hugo +Irvin +Jaeden +Jailen +Jakobi +Jamarious +Jasiah +Jaydan +Jaythan +Jayveon +Jericho +Jimmie +Joe +Jontavious +Jordin +Kadin +Kalen +Kayleb +Keelan +Keonte +Keshaun +Knox +Kodi +Korbin +Ladarius +Latrell +Leo +Markel +Markus +Mateo +Mikael +Moises +Omarion +Orlando +Pablo +Raul +Rex +Roy +Ryland +Shaun +Sterling +Tavion +Ted +Thaddeus +Theron +Tobias +Tripp +Tyrone +Uriah +Urijah +Wayne +Wiley +Xavion +Zavion +William +James +Jacob +Jackson +John +Joshua +Christopher +Jayden +Michael +Ethan +Noah +Caleb +Elijah +Aiden +Samuel +Christian +David +Joseph +Brayden +Daniel +Landon +Matthew +Tyler +Andrew +Logan +Mason +Hunter +Alexander +Gabriel +Jeremiah +Charles +Jordan +Robert +Benjamin +Jonathan +Dylan +Gavin +Anthony +Colton +Cameron +Brandon +Braxton +Carson +Evan +Justin +Thomas +Isaiah +Connor +Nathan +Austin +Ryan +Nicholas +Brody +Kaden +Kaleb +Lucas +Hayden +Timothy +Carter +Luke +Kevin +Cooper +Caden +Zachary +Owen +Aaron +Parker +Isaac +Tristan +Jaden +Levi +Wyatt +Braylon +Bryson +Micah +Eric +Grayson +Jaxon +Ayden +Jason +Preston +Henry +Jack +Alex +Cayden +Ashton +Hudson +Ian +Jaylen +Collin +Eli +Conner +Josiah +Aidan +Jeremy +Kayden +Jose +Xavier +Antonio +Cody +Juan +Devin +Nathaniel +Tanner +Peyton +Sawyer +Dalton +Brian +Carlos +Jamarion +Seth +Brady +Kaiden +Kenneth +Kameron +Marcus +Patrick +Blake +Tucker +Adrian +Angel +Cole +Steven +Bradley +Bryan +Bryant +Richard +Camden +Liam +Luis +Trenton +Chase +Grant +Riley +Asher +Braden +Jesse +George +Jaiden +Johnathan +Julian +Kyle +Malachi +Wesley +Rylan +Stephen +Bryce +Diego +Maddox +Colin +Derrick +Gage +Adam +Dawson +Jace +Trevor +Alan +Clayton +Cohen +Dakota +Harrison +Jaxson +Joel +Gregory +Brodie +Edward +Tyson +Braylen +Garrett +Jesus +Malik +Nolan +Taylor +Davis +Jalen +Kingston +Miguel +Ryder +Sebastian +Skyler +Travis +Anderson +Colby +Drake +Edwin +Jamari +Sean +Aaden +Chance +Dominic +Jake +Kamari +Landen +Oliver +Paul +Payton +Spencer +Troy +Johnny +Phillip +Amari +Greyson +Jamarcus +Jonah +Kason +Leland +Myles +Walker +Corey +Damien +Mark +Zion +Aden +Braydon +Damian +Darius +Graham +Miles +Weston +Chandler +Easton +Tristen +Vincent +Brennan +Jeffery +Jeffrey +Max +Roderick +Shawn +Alexis +Avery +Cristian +Elias +Emmanuel +Javion +Jaylon +Karson +Lane +Lincoln +Nicolas +Ty +Victor +Caiden +Israel +Jakobe +Jaylin +Judah +Jude +Maxwell +Silas +Brooks +Cason +Curtis +Dustin +Jaydon +Jerry +Landyn +Paxton +Ricardo +Warren +Willie +Allen +Calvin +Deandre +Grady +Griffin +Josue +Kelvin +Kolton +Kyler +Mario +Maurice +Nehemiah +Reid +Walter +Amir +Bentley +Cade +Charlie +Demetrius +Dillon +Ezra +Gary +Jimmy +Kendrick +River +Roman +Andres +Brycen +Colt +Cortez +Dallas +Donald +Holden +Ivan +Jayce +Kendall +Omar +Rashad +Ricky +Skylar +Zackary +Zayden +Andy +Brantley +Brock +Cornelius +Demarcus +Derek +Donovan +Gunner +Harley +Jadon +Jared +Jayson +Jon +Reginald +Russell +Terrance +Terry +Zachery +Alejandro +Beau +Billy +Braiden +Camron +Casey +Dayton +Eduardo +Fisher +Jacorey +Jameson +Jessie +Jordyn +Oscar +Quinton +Rodney +Ronald +Shane +Trey +Tristin +Waylon +Brendan +Cedric +Cullen +Danny +Desmond +Edgar +Ellis +Frank +Javier +Jay +Julius +Karter +Keaton +Keegan +Kobe +Larry +Leonardo +Lukas +Marcos +Marshall +Memphis +Phoenix +Raymond +Xander +Zander +Zane +Andre +Aubrey +Byron +Cesar +Chad +Colten +Cory +Devon +Erik +Everett +Ezekiel +Fernando +Franklin +Jacoby +Jarrett +Jermaine +Jett +Judson +Kade +Keith +King +Kristopher +Lawson +Mitchell +Randy +Roberto +Tate +Titus +Tristian +Tyrone +Arthur +Asa +Camryn +Casen +Demarion +Dennis +Dorian +Douglas +Drew +Frederick +Houston +Jadarius +Kemarion +Kylan +Manuel +Messiah +Micheal +Nickolas +Omari +Pedro +Peter +Reese +Sam +Santiago +Scott +Sergio +Terrell +Tony +Zavion +Alijah +Axel +Bennett +Bobby +Branson +Brenden +Brenton +Cash +Coleman +Courtney +Damarion +Damion +Emanuel +Emmett +Fredrick +Hayes +Ismael +Jamal +Jamar +Jarvis +Jaylan +Kamarion +Kamauri +Kamron +Kristian +Lawrence +Leon +Malcolm +Maximus +Nathanael +Philip +Randall +Rhett +Trent +Triston +Abraham +Abram +Ahmad +Armani +Baylor +Bradyn +Brennen +Brett +Chris +Dante +Demarius +Deshawn +Devonte +Elliot +Emerson +Erick +Giovanni +Hector +Jaidyn +Jaime +Jakob +Jakobi +Javon +Jorden +Jordon +Kamden +Kavion +Kody +Lamar +Markell +Marquis +Nigel +Orlando +Pablo +Quincy +Roger +Rylee +Simon +Tylan +Wilson +Zachariah +Braeden +Carmelo +Case +Clark +Corbin +Deangelo +Deshaun +Dewayne +Dominick +Dontavious +Elliott +Ernest +Gael +Garrison +Gaven +Jadyn +Jakari +Jamarius +Jamichael +Jamison +Jaquan +Jase +Jasper +Kenyon +Keon +Keshawn +Khalil +Ladarius +Leo +Martin +Mateo +Mayson +Mekhi +Nelson +Quentin +Reece +Reed +Semaj +Sidney +Slade +Tommy +Travon +Tyrese +Xzavier +Zyon +Amarion +Aydan +Barrett +Cannon +Chevy +Cordell +Darrell +Davion +Daylen +Dean +Dereon +Eddie +Elisha +Harris +Heath +Issac +Jabari +Jaeden +Jagger +Jamie +Joe +Jonas +Keagan +Keenan +Kendarius +Khristian +Knox +Kylen +Lance +Layton +Lewis +Major +Marlon +Pierce +Porter +Presley +Rodrigo +Ronnie +Rowan +Shannon +Solomon +Tavion +Trace +Trevon +Winston +Xavion +Ace +Ali +Amare +Armando +Aydin +Bailey +Baker +Bo +Brayan +Brayton +Brennon +Brent +Broderick +Bronson +Canaan +Carl +Cordae +Dane +Darryl +Davin +Deacon +Deanthony +Devontae +Dexter +Dominique +Dwight +Dylon +Ean +Elmer +Emery +Eugene +Hagen +Hampton +Jamel +Jaquavious +Jaydin +Johan +Jonathon +Jorge +Julio +Justus +Kadyn +Kamren +Karsen +Koby +Kolby +Kollin +Kolten +Korbin +Lathan +Layne +Leeland +London +Lorenzo +Lucian +Mack +Marco +Marques +Marquez +Mathew +Miller +Morgan +Noe +Omarion +Pierre +Quintavious +Raul +Romeo +Roy +Ryker +Shaun +Simeon +Sutton +Sylas +Tavaris +Taylen +Terence +Treyvon +Tripp +Uriah +Zaylen +Abel +Alec +Alton +Alvaro +Alvin +Amauri +Antoine +Antwan +Archer +Aron +Barry +Blaise +Blayne +Bradon +Braylan +Braylin +Britton +Bryton +Cale +Camren +Cleveland +Clinton +Courtland +Crimson +Cruz +Dajuan +Dandre +Darrius +Dashawn +Dax +Daxton +Daylin +Daylon +Deon +Deven +Drayden +Earnest +Eliseo +Emilio +Enrique +Fabian +Finn +Foster +Gerald +Grey +Gunnar +Gustavo +Hagan +Howard +Irvin +Isaias +Jacobi +Jacolby +Jacory +Jairo +Jakoby +Jamarkus +Jaquez +Jarell +Jashawn +Jasiah +Javeon +Javian +Jaxen +Jerome +Jerrell +Justice +Kadin +Kai +Kale +Kamdyn +Kamryn +Kane +Keelan +Keilan +Keldrick +Kennedy +Kentrell +Kerry +Latrell +Leslie +Maddux +Marion +Markel +Marquise +Martez +Marvin +Melvin +Morris +Nash +Noel +Nolen +Prince +Quintin +Rashaud +Rashaun +Ronaldo +Ross +Royce +Samson +Saul +Shamar +Stone +Talan +Talon +Terrence +Toby +Tomas +Travion +Trevion +Turner +Tyree +Urijah +Will +Yahir +Yusuf +Zackery +Zaden +William +James +John +Jacob +Jayden +Jackson +Noah +Elijah +Christopher +Ethan +Michael +Mason +Aiden +Samuel +Brayden +Joshua +Landon +David +Caleb +Andrew +Joseph +Christian +Jeremiah +Alexander +Jordan +Logan +Robert +Gabriel +Daniel +Tyler +Charles +Matthew +Cameron +Hunter +Colton +Luke +Thomas +Benjamin +Dylan +Jonathan +Austin +Nicholas +Brandon +Carson +Carter +Evan +Anthony +Braxton +Brody +Cooper +Justin +Ryan +Bryson +Hayden +Tristan +Bentley +Eli +Kaleb +Parker +Lucas +Levi +Isaiah +Nathan +Ayden +Gavin +Grayson +Caden +Riley +Isaac +Timothy +Wyatt +Kaden +Jaxon +Connor +Ashton +Preston +Henry +Aaron +Liam +Jason +Jaden +Micah +Sawyer +Zachary +Cayden +Easton +Owen +Jack +Hudson +Eric +Josiah +Kevin +Xavier +Jeremy +Jose +Kayden +Marcus +Braylon +Kaiden +Antonio +Chase +Kenneth +Peyton +Adrian +Jaylen +Cody +Ian +Alex +Nathaniel +Steven +Aidan +Collin +Patrick +Trenton +Angel +Malachi +Braylen +Bryan +Camden +Dalton +Jonah +Wesley +Carlos +Devin +Conner +Jesse +Richard +Adam +Edward +Kameron +Oliver +Colin +Jace +Braden +Garrett +Cole +Dawson +Juan +Sebastian +Tanner +Sean +Seth +Tucker +Walker +Asher +Blake +Brian +Bryce +Caiden +George +Harrison +Kyle +Jaiden +Jake +Rylan +Skyler +Stephen +Amari +Greyson +Nolan +Bryant +Jamarion +Jaxson +Kingston +Maddox +Ryder +Brodie +Julian +Gregory +Colt +Luis +Phillip +Weston +Max +Miguel +Bradley +Grant +Travis +Trevor +Brantley +Colby +Derrick +Paul +Brady +Braydon +Clayton +Dakota +Zion +Griffin +Johnathan +Tyson +Davis +Jeffrey +Landen +Silas +Chance +Drake +Graham +Miles +Avery +Brooks +Corey +Cristian +Jesus +Jude +Kendall +Kyler +Leland +Ronald +Alan +Calvin +Cohen +Cullen +Emanuel +Gage +Joel +Kason +Kendrick +Malik +Alejandro +Axel +Coleman +Curtis +Damien +Derek +Jacoby +Jamari +Roman +Terry +Tristen +Brennan +Diego +Dominic +Eduardo +Josue +Kamari +Mark +Shawn +Troy +Cade +Cason +Corbin +Lukas +Micheal +Omar +Payton +Reginald +Victor +Vincent +Brock +Grady +Houston +Jeffery +Kamden +Paxton +Taylor +Ty +Walter +Zane +Aden +Bennett +Brayan +Damian +Donovan +Emmett +Frank +Gary +Jamal +Jared +Jasper +Kade +King +Larry +Nehemiah +Reid +Waylon +Bobby +Chandler +Charlie +Colten +Dallas +Everett +Fernando +Ivan +Jakobe +Jamarcus +Johnny +Keegan +Mario +Oscar +Trent +Zander +Anderson +Billy +Braiden +Demetrius +Dustin +Edwin +Emmanuel +Ezra +Fisher +Gunner +Hector +Jakob +Judah +Lane +Maxwell +Myles +Nicolas +Randy +Ronnie +Santiago +Spencer +Titus +Trey +Warren +Xander +Amare +Beau +Brycen +Camron +Cash +Damarion +Danny +Deshawn +Erick +Holden +Israel +Jameson +Javion +Jermaine +Jerry +Jimmy +Jonathon +Karson +Kristian +Maximus +Mitchell +Quinton +Roderick +Russell +Willie +Allen +Andre +Aubrey +Brendan +Cannon +Dillon +Donald +Francisco +Franklin +Giovanni +Jaydon +Jerome +Jett +Jordyn +Kellan +Kolton +Kristopher +Kylan +London +Maurice +Pedro +Randall +Rodney +Rowan +Triston +Zackary +Zayden +Cedric +Cesar +Courtney +Darius +Davion +Demarion +Ezekiel +Jaquan +Jase +Jaylin +Joe +Jon +Judson +Karter +Keith +Lance +Landyn +Lawson +Lincoln +Martin +Nickolas +Phoenix +Rashad +Reece +Ryland +Tony +Tristian +Ahmad +Alexis +Alijah +Casey +Clark +Cruz +Demarcus +Dewayne +Erik +Jamison +Jax +Jayce +Jayson +Jessie +Kamarion +Karsen +Keaton +Kolby +Leonardo +Marvin +Miller +Morgan +Orlando +Peter +Prince +Reese +Ricky +Talon +Terrell +Barrett +Braeden +Braylin +Brennen +Brett +Chad +Clay +Crimson +Dax +Deandre +Elias +Isiah +Jacobi +Jacorey +Javier +Jaylan +Jorge +Justice +Kamron +Kelvin +Kendarius +Kobe +Lewis +Major +Mekhi +Reed +Rylee +Shane +Skylar +Tate +Tripp +Tyree +Zackery +Zaiden +Zechariah +Branson +Briley +Byron +Casen +Cornelius +Dante +Darryl +Dean +Desmond +Dominick +Elliott +Fredrick +Gerald +Hayes +Jacori +Jagger +Jay +Jensen +Jordon +Justus +Kelton +Kemarion +Knox +Layton +Marshall +Martez +Omari +Omarion +Pierce +Quinn +Remington +Rhett +Roberto +Shaun +Terrence +Tommy +Wilson +Zachariah +Aaden +Abraham +Abram +Aidyn +Albert +Baylor +Brenden +Britton +Camren +Canaan +Channing +Darrell +Daylen +Dexter +Douglas +Drew +Eddie +Elisha +Emmitt +Emory +Frederick +Garrison +Issac +Jadyn +Jalen +Jamir +Jarvis +Jaylon +Johnnie +Jonas +Kane +Kasen +Kellen +Keshawn +Khamari +Konner +Lathan +Lee +Leon +Mack +Malcolm +Marquez +Maverick +Melvin +Memphis +Raymond +Roger +Roy +Scott +Semaj +Sergio +Tristin +Uriah +Wade +Zamarion +Zavier +Adan +Alec +Andres +Andy +Antony +Antwon +Armani +Arthur +Asa +Boston +Braelyn +Brendon +Brennon +Briar +Brice +Case +Cayson +Chevy +Cory +Damon +Darion +Darrius +Dayton +Deangelo +Dennis +Devon +Dorian +Edgar +Ellis +Felipe +Fischer +Gavyn +Gerardo +Gunnar +Haiden +Iker +Jadon +Jakari +Jamar +Javeon +Jaylyn +Jayveon +Julius +Kamryn +Kentrell +Kody +Konnor +Kyron +Ladarius +Leo +Leonel +Louis +Lucian +Madden +Malaki +Marc +Marcos +Marlon +Mathew +Messiah +Morris +Nikolas +Pablo +Philip +Porter +Quentin +Rayden +River +Rodriquez +Ruben +Shepherd +Solomon +Sutton +Tatum +Trace +Treyvon +Turner +Zaden +Alberto +Alexzander +Antoine +Armando +August +Bailey +Beckett +Bentlee +Braydin +Brent +Brison +Cadyn +Cale +Callen +Carl +Carlton +Collins +Cordell +Crawford +Dale +Dane +Darren +Dashawn +Davin +Daxton +Declan +Finn +Gauge +Gideon +Giovani +Heath +Jacorian +Jaeden +Jakobi +Jamauri +Jaron +Javon +Jaxton +Jayvion +Jeremias +Johnathon +Julio +Kadyn +Kai +Kendal +Khalil +Kollin +Kolt +Kylen +Lawrence +Lebron +Lorenzo +Makhi +Manuel +Markel +Markell +Marquis +Nasir +Rivers +Romeo +Ryker +Stone +Terrance +Theodore +Tremaine +Trevon +Tylan +Tyrell +Tyrese +Will +Xzavier +Zachery +Zephaniah +Allan +Amir +Aydin +Bently +Blayden +Bo +Bradyn +Branden +Brannon +Braxten +Bryton +Campbell +Carmelo +Caysen +Cecil +Cedrick +Clifford +Coby +Cortez +Cyrus +Darnell +Deacon +Demarco +Deontae +Deshaun +Devan +Dwayne +Dwight +Efren +Eliseo +Elvis +Emerson +Eugene +Fabian +Finley +Gibson +Gordon +Harley +Harold +Harvey +Ismael +Jaedon +Jamario +Jamarius +Jamie +Jaquavious +Jeramiah +Jerrod +Joey +Kamauri +Kareem +Karl +Karsten +Kasey +Kayleb +Keon +Kerry +Kipton +Kiptyn +Koby +Koen +Kohen +Lamar +Landin +Langston +Legend +Lennon +Lonnie +Marquel +Masen +Mateo +Milton +Moses +Nelson +Nolen +Odin +Patton +Quincy +Ramon +Raylan +Ricardo +Ridge +Shannon +Simon +Tavaris +Tayshaun +Terence +Tobias +Travon +Tyquan +Tyshawn +Ulises +Valentin +Van +Wayne +Westin +Winston +Yahir +Zaylen +Zaylon +Zayne +Zyon +William +James +Mason +Jacob +John +Jayden +Noah +Elijah +Jackson +Aiden +Joshua +Christopher +Ethan +Brayden +Michael +Samuel +Caleb +Landon +Jeremiah +Cameron +Bentley +David +Joseph +Andrew +Christian +Benjamin +Daniel +Charles +Logan +Alexander +Carter +Hunter +Levi +Robert +Ayden +Gabriel +Luke +Carson +Anthony +Jordan +Matthew +Thomas +Jonathan +Colton +Tyler +Bryson +Braxton +Connor +Gavin +Liam +Cooper +Eli +Austin +Dylan +Grayson +Brandon +Brody +Jaxon +Justin +Tristan +Ashton +Easton +Nathan +Hayden +Kaleb +Wyatt +Hudson +Ryan +Evan +Isaac +Lucas +Parker +Nicholas +Kayden +Isaiah +Jack +Owen +Preston +Zachary +Aaron +Henry +Jaden +Kaden +Brantley +Rylan +Caden +Chase +Kevin +Cayden +Timothy +Micah +Jason +Ian +Trenton +Braylon +Tucker +Braylen +Josiah +Kaiden +Asher +Camden +Xavier +Sawyer +Jaxson +Ryder +Jonah +Malachi +Nathaniel +Alex +Kameron +Aidan +Collin +Eric +Peyton +Jace +Kyle +Bryant +Conner +Jaylen +Maddox +Riley +Brian +Juan +Marcus +Blake +Jose +Wesley +Antonio +Kenneth +Tanner +Adrian +Harrison +Patrick +Bradley +Dawson +Richard +Cody +Travis +Jesse +Jude +Luis +Caiden +Kingston +Oliver +Bryce +Colt +Dakota +Garrett +George +Jamarion +Steven +Weston +Bryan +Jeremy +Adam +Brooks +Edward +Graham +Seth +Stephen +Colin +Dalton +Nolan +Zayden +Carlos +Corey +Sean +Tyson +Derrick +Jaiden +Joel +Silas +Axel +Bennett +Cason +Chance +Grant +Jayce +Jesus +Julian +Karson +Paul +Taylor +Gunner +Jeffrey +Lane +Sebastian +Tristen +Brady +Chandler +Charlie +Corbin +Devin +Kamari +Maxwell +Roman +Titus +Zander +Braden +Brodie +Colby +Cole +Dominic +Elias +Grady +Greyson +Troy +Vincent +Clayton +Diego +Hayes +Jamari +Johnathan +Max +Myles +Trey +Victor +Walter +Angel +Dallas +Drake +Elliot +Griffin +Kason +Mark +Alan +Anderson +Avery +Gregory +Judson +Malik +Mario +Phillip +Trevor +Zane +Calvin +Demetrius +Amare +Gage +Kendall +Leonardo +Walker +Willie +Xander +Amari +Brycen +Cristian +Emmett +Jerry +Kyler +Landen +Lawson +Oscar +Zion +Aden +Brennan +Jake +Jasper +Jon +Kamden +King +Miles +Paxton +Ryland +Alejandro +Barrett +Cohen +Davis +Edwin +Emanuel +Emmanuel +Everett +Ezekiel +Israel +Jacoby +Lukas +Miguel +Payton +Reid +Tripp +Abel +Allen +Andre +Cade +Cullen +Erik +Jorden +Kade +Kendrick +Leland +Ronnie +Shawn +Waylon +Braydon +Braylin +Camron +Cortez +Courtney +Damian +Demarcus +Eduardo +Erick +Jameson +Joe +Keegan +Kylan +Philip +Ryker +Abraham +Danny +Dustin +Emerson +Frederick +Giovanni +Johnny +Jordyn +Kelvin +Kobe +Maximus +Rashad +Santiago +Ty +Warren +Alexis +Amir +Deandre +Devon +Ellis +Ivan +Jakob +Jamarcus +Jared +Judah +Justice +Kamron +Kristian +Larry +Maurice +Omar +Reginald +Ronald +Skyler +Terrance +Tony +Triston +Alijah +Brock +Casen +Cory +Curtis +Damien +Donald +Jacorey +Kolton +Landyn +Lincoln +London +Marshall +Nicolas +Peter +Porter +Randy +Reed +Remington +River +Tristian +Andy +Asa +Billy +Bobby +Branson +Brayan +Brayson +Brentley +Colten +Cornelius +Declan +Dillon +Ezra +Fernando +Frank +Gideon +Harper +Houston +Issac +Jadarius +Jadon +Jakobe +Jeffery +Josue +Keaton +Keith +Kellen +Kelton +Knox +Kristopher +Marquis +Miller +Mitchell +Reece +Ricardo +Roderick +Rodney +Russell +Scott +Shane +Skylar +Spencer +Terrell +Terry +Tommy +Tristin +Wilson +Aaden +Bentlee +Brendan +Brenton +Case +Cash +Cedric +Demarion +Deon +Desmond +Douglas +Elliott +Fisher +Gary +Holden +Izaiah +Jamar +Javier +Javion +Jax +Jayson +Jimmy +Kai +Kane +Karter +Kellan +Leon +Manuel +Marvin +Micheal +Roger +Zackary +Alec +Baylor +Brett +Byron +Camdyn +Chevy +Coleman +Damarion +Darrell +Dennis +Derek +Dexter +Donovan +Drew +Edgar +Emory +Fredrick +Hector +Jalen +Jamichael +Jaylin +Jaylon +Jonathon +Kasen +Kayson +Keon +Lamar +Lathan +Lawrence +Leo +Mekhi +Melvin +Quinton +Raymond +Rowan +Simon +Trace +Trent +Trevon +Zachariah +Zaiden +Zamarion +Ahmad +Aidyn +Allan +Alvin +Amarion +Andres +Arthur +Aydan +Aydin +Bently +Benton +Braeden +Brent +Cannon +Carl +Cesar +Darius +Darren +Deshawn +Dillan +Dorian +Fabian +Harley +Jamison +Jase +Jerimiah +Jermaine +Jett +Kamarion +Khalil +Lance +Madden +Marlon +Martin +Nehemiah +Omari +Randall +Raylan +Reese +Roy +Ruben +Semaj +Sidney +Solomon +Stanley +Tate +Terrence +Tyrone +Aayden +Ace +Adonis +Ashtyn +Beau +Beckett +Bowen +Bralyn +Branden +Brenden +Bruce +Campbell +Canaan +Casey +Cayson +Chad +Channing +Cruz +Davion +Dean +Destin +Dewayne +Emiliano +Ernest +Gunnar +Isiah +Jaxton +Jayvion +Jessie +Justus +Kaeden +Kamryn +Karsen +Keelan +Kentrell +Kolby +Konner +Kyron +Kyson +Landry +Lennox +Lewis +Lucian +Mateo +Memphis +Messiah +Moises +Nash +Nigel +Quincy +Ray +Rhys +Romeo +Ross +Rylee +Shepherd +Tevin +Thaddeus +Turner +Tylan +Tyrese +Wade +Abram +Adan +Aldo +Alonzo +Alton +Armando +Bailey +Braiden +Brannon +Brennen +Brently +Briley +Britton +Camren +Chace +Clifford +Clinton +Dane +Dayton +Deangelo +Deontae +Dominick +Eddie +Finley +Forrest +Foster +Francisco +Gavyn +Gerald +Gerardo +Howard +Jacobi +Jagger +Jakari +Javon +Jaxston +Jaydan +Johan +Jorge +Julius +Kaidyn +Kaydon +Kendarius +Keondre +Kipton +Kiptyn +Koby +Kylen +Layne +Lennon +Major +Malakai +Malcolm +Marcel +Markel +Markell +Nickolas +Orlando +Osvaldo +Pedro +Pierce +Quentin +Rafael +Rhett +Ricky +Rowen +Sam +Saul +Shaun +Shelton +Sullivan +Tavaris +Theodore +Toby +Tysen +Uriah +Uriel +Vernon +Zackery +Zayne +Zechariah +Alfredo +Antwan +Aubrey +Bradford +Braelyn +Brantlee +Brendon +Brogan +Bronner +Brylan +Brylon +Clarence +Coen +Cordell +Crimson +Dangelo +Darnell +Darryl +Daryl +Dashawn +Daylan +Daylin +Deanthony +Dedrick +Demario +Dereon +Elisha +Emmitt +Enrique +Esteban +Eugene +Evin +Gaige +Garrison +Grayton +Grey +Hampton +Hank +Haven +Heath +Hollis +Hugo +Jabari +Jacari +Jacorian +Jaidon +Jaidyn +Jamir +Jaquan +Jaquarius +Javeon +Jaxen +Jay +Jaydon +Junior +Kaison +Kamdyn +Kasey +Keldrick +Keyshawn +Kieran +Kody +Kolten +Kristofer +Lamarcus +Layton +Lee +Leonel +Luca +Macon +Marco +Masen +Mauricio +Montez +Morgan +Nelson +Pablo +Presley +Princeton +Quinn +Rex +Rico +Ridge +Rodrigo +Ronan +Ryley +Sergio +Sylas +Treveon +Treyvon +Tylen +Ulises +Urijah +Wheeler +Will +Xzavier +Yahir +Zavier +Zaylen +Zaylon +Zyan +William +James +Mason +John +Jacob +Elijah +Aiden +Michael +Jayden +Noah +Jackson +Ethan +Samuel +Christopher +Brayden +Joshua +Caleb +Landon +Matthew +Andrew +Carter +Joseph +David +Charles +Ayden +Hunter +Bentley +Colton +Bryson +Gabriel +Jaxon +Liam +Eli +Benjamin +Jeremiah +Brantley +Daniel +Logan +Levi +Cameron +Luke +Christian +Jordan +Tyler +Robert +Carson +Alexander +Jonathan +Grayson +Thomas +Isaiah +Cooper +Braxton +Lucas +Austin +Gavin +Anthony +Nathan +Kayden +Dylan +Easton +Connor +Brandon +Parker +Ryan +Henry +Justin +Wyatt +Jace +Owen +Isaac +Micah +Hudson +Tristan +Aaron +Kaleb +Brody +Nicholas +Timothy +Ashton +Evan +Zachary +Jason +Hayden +Kaden +Kingston +Caden +Chase +Josiah +Sawyer +Braylon +Jack +Jaxson +Preston +Zayden +Richard +Rylan +Harrison +Braylen +Tucker +Xavier +Blake +Jonah +Kaiden +Ryder +Cayden +Jaden +Oliver +Alex +Ian +Tanner +Antonio +Peyton +Malachi +Nathaniel +Jaylen +Kevin +Weston +Asher +Marcus +Bryant +Jeremy +Wesley +Trenton +Adrian +Eric +Nolan +Riley +Silas +Adam +Angel +Dawson +Kameron +Kenneth +Patrick +Conner +Steven +Bradley +Camden +Maddox +Cole +Caiden +Cody +Collin +Dalton +Greyson +Zion +Bryce +Karson +Travis +Colin +George +Jamari +Jose +Jude +Aidan +Garrett +Sebastian +Walker +Jayce +Julian +Kyle +Brady +Brian +Clayton +Jesse +Kason +Stephen +Jaiden +Jake +Juan +Seth +Carlos +Dakota +Davis +Graham +Mark +Skyler +Taylor +Tyson +Barrett +Cason +Colt +Dallas +Devin +Edward +Landen +Miguel +Bryan +Elias +Gunner +Johnathan +Lane +Max +Bennett +Brodie +Dominic +Jamarion +Miles +Alan +Brycen +Colby +Griffin +Jase +Jasper +Joel +Johnny +Karter +Myles +Braden +Calvin +Corey +Damian +King +Kyler +Paxton +Roman +Trevor +Victor +Anderson +Declan +Emmett +Ezekiel +Gregory +Jeffrey +Jesus +Amari +Avery +Brantlee +Chandler +Corbin +Curtis +Derrick +Gage +Lincoln +Luis +Phillip +Trent +Walter +Willie +Andre +Brooks +Charlie +Cohen +Donovan +Jameson +Maxwell +Ty +Axel +Bentlee +Chance +Grady +Jerry +Keith +Larry +Sean +Troy +Vincent +Waylon +Zander +Brennan +Case +Damien +Donald +Emmanuel +Grant +Kai +Keaton +Messiah +Rodney +Terry +Titus +Abel +Braydon +Brentley +Cade +Camron +Demetrius +Drake +Edwin +Elliott +Kamden +Kolton +Lawson +Leland +Lukas +Malik +Phoenix +River +Spencer +Xander +Beau +Ellis +Ezra +Holden +Jeffery +Judah +Kylen +Mario +Marshall +Mitchell +Rhett +Roderick +Shawn +Zaiden +Aden +Cash +Danny +Derek +Giovanni +Ivan +Jacoby +Javier +Kade +Kylan +Major +Maximus +Raylan +Ryker +Wilson +Zane +Brayan +Collier +Dante +Desmond +Everett +Iker +Judson +Kellen +Kendall +Knox +Landyn +Nehemiah +Oscar +Paul +Randy +Reid +Ronald +Rowan +Skylar +Trey +Tristen +Zackary +Braiden +Brendan +Deandre +Dorian +Gael +Harper +Jamarcus +Jaylon +Jorge +Justice +Kamari +Kayson +Kendrick +Reginald +Terrell +Tony +Tylan +Allen +Amir +Cannon +Cedric +Cornelius +Cory +Cullen +Dexter +Dillon +Dustin +Emerson +Hayes +Jared +Jax +Jaxton +Jon +Jorden +Keegan +Martin +Remington +Russell +Terrance +Blaine +Branson +Brayson +Carmelo +Cortez +Cristian +Darius +Douglas +Elliot +Fisher +Frank +Gideon +Hampton +Jagger +Jamison +Jay +Jermaine +Johan +Kasen +Kelvin +Kristian +Leonardo +Maurice +Payton +Princeton +Quinton +Reed +Santiago +Warren +Zachariah +Alijah +Atticus +Aubrey +Braeden +Braelyn +Braylin +Brock +Channing +Clay +Colten +Dayton +Devon +Diego +Erick +Finn +Jacorey +Jakobe +Javion +Jimmy +Julius +Kamarion +Kellan +Kentrell +Kobe +Konner +Kyson +Malcolm +Mekhi +Omari +Peter +Randall +Roger +Ryland +Sam +Shane +Trevon +Tristian +Amos +Andy +Billy +Brent +Byron +Casen +Coleman +Crimson +Emanuel +Frederick +Hector +Israel +Jalen +Jaydon +Jaylin +Jensen +Jonathon +Josue +Kamryn +Kendarius +Khalil +Kristopher +Leo +Lyric +Mateo +Nicolas +Pedro +Prince +Ray +Raymond +Sergio +Tatum +Terrence +Tommy +Will +Abram +Ari +Beckett +Bently +Casey +Coby +Courtney +Cruz +Deangelo +Dennis +Drew +Eduardo +Emery +Issac +Jabari +Jamal +Javon +Joe +Jonas +Kamron +Kolby +Korbin +Laken +Lawrence +Lee +London +Malaki +Neymar +Pierce +Porter +Ricardo +Tobias +Triston +Winston +Aaden +Abraham +Aidyn +Alexis +Amare +Armando +Arthur +Baylor +Bobby +Brett +Cale +Canaan +Cayson +Clarence +Damon +Darrell +Darryl +Dax +Daxton +Daylen +Dean +Domingo +Erik +Fernando +Finley +Francisco +Gary +Jakayden +Jakob +Jayson +Jett +Jordon +Jordyn +Kaidyn +Langston +Layton +Lorenzo +Louis +Makhi +Marquez +Miller +Nash +Price +Raylon +Reese +Ricky +Rowen +Scott +Talon +Tripp +Uriah +Zaylen +Aayden +Alden +Alejandro +Alfred +Ali +Alonzo +Andres +Angelo +Asa +August +Austyn +Blaze +Brenton +Bruce +Brylan +Brylen +Callan +Carl +Clinton +Crawford +Derick +Dewayne +Dominick +Edgar +Elisha +Emory +Fletcher +Fredrick +Jabraylen +Jaidyn +Jakari +Jakhari +Jakori +Jamar +Jamie +Jarvis +Jaxen +Jaylan +Jerome +Kadin +Kase +Kiyan +Kody +Kole +Konnor +Kyran +Kyree +Kyrie +Ladarius +Layne +Lewis +Marquis +Marvin +Mayson +Memphis +Micheal +Nigel +Omar +Pablo +Pascual +Quentin +Reece +Rex +Rogelio +Roy +Simon +Solomon +Sullivan +Sylas +Terence +Theodore +Todd +Trace +Trayvon +Treyvon +Tristin +Wade +Zechariah +Ace +Albert +Alton +Amarion +Antwan +Blakely +Bradford +Brenden +Brently +Camdyn +Campbell +Camryn +Canon +Caysen +Cedrick +Chevy +Clifford +Collins +Colson +Dashawn +Davion +Davon +Deanthony +Demarco +Demarion +Demetri +Dominik +Dominique +Draven +Dyson +Ean +Eason +Eden +Edison +Eliseo +Erin +Garrison +Grey +Gunnar +Gustavo +Harley +Houston +Howard +Izaiah +Izayah +Jadon +Jairo +Jaquan +Jarrett +Jefferson +Jeramiah +Jeremias +Jeremih +Jessie +Joey +Johnnie +Journey +Julio +Junior +Justus +Kaison +Keelan +Keller +Kenny +Keylan +Keyon +Kobi +Lamarion +Lance +Leonard +Lonnie +Marlon +Masyn +Moses +Orlando +Philip +Quinn +Rafael +Rashawn +Rickey +Rodrigo +Ronnie +Rylee +Sage +Shannon +Shepard +Simeon +Sterling +Tate +Thompson +Turner +Tyrese +Ulises +Westin +Zayne +Zyion +William +Mason +James +John +Elijah +Jackson +Noah +Aiden +Jacob +Christopher +Joshua +Michael +Jayden +Samuel +Carter +Ethan +David +Liam +Caleb +Jaxon +Brayden +Carson +Hunter +Robert +Andrew +Christian +Landon +Matthew +Eli +Jeremiah +Levi +Joseph +Charles +Ayden +Easton +Alexander +Thomas +Bentley +Grayson +Luke +Brantley +Isaiah +Benjamin +Colton +Logan +Gabriel +Jase +Cameron +Bryson +Cooper +Daniel +Lucas +Tyler +Parker +Jace +Kaiden +Connor +Jonathan +Jordan +Braxton +Anthony +Austin +Isaac +Kayden +Wyatt +Owen +Dylan +Justin +Hudson +Sawyer +Josiah +Ashton +Kaleb +Nicholas +Gavin +Henry +Jason +Nathan +Camden +Brody +Brandon +Cayden +Evan +Micah +Chase +Ryan +Jack +Jaxson +Timothy +Tristan +Zachary +Tucker +Jayceon +Oliver +Kingston +Braylen +Preston +Silas +Aaron +Asher +Kevin +Kenneth +Caden +Ian +Conner +Kaden +King +Ryder +Weston +Nathaniel +Marcus +Nolan +Rylan +Dalton +Eric +Barrett +Kameron +Riley +Bradley +Julian +Antonio +Harrison +Jayce +Tanner +Wesley +Bryce +Karson +Xavier +Jaden +Adam +Blake +Jonah +Sebastian +Zayden +George +Hayden +Stephen +Braylon +Gunner +Maddox +Trenton +Collin +Dominic +Ezra +Jaiden +Jude +Malachi +Adrian +Clayton +Elias +Gage +Alex +Dallas +Karter +Patrick +Richard +Steven +Walker +Avery +Carlos +Jaylen +Jose +Juan +Brooks +Graham +Jeremy +Brian +Caiden +Jasper +Maxwell +Miles +Amari +Brycen +Grant +Greyson +Kason +Mark +Peyton +Griffin +Jesse +Bryant +Chance +Cole +Waylon +Corbin +Edward +Lincoln +Zion +Colin +Damien +Devin +Kyle +Max +Remington +Alan +Brady +Kyler +Miguel +Roman +Trevor +Zander +Abel +Aidan +Axel +Chandler +Davis +Gregory +Kendrick +Rhett +Ryker +Zane +Angel +Cason +Cody +Dawson +Derrick +Joel +Malik +Paxton +Tyson +Emmett +Everett +Jesus +Johnny +Keegan +Major +River +Xander +Case +Jameson +Myles +Raylan +Bennett +Calvin +Charlie +Johnathan +Kamden +Kasen +Lawson +Phillip +Victor +Zaiden +Bryan +Cohen +Damian +Demetrius +Edwin +Ezekiel +Jamari +Jamarion +Kayson +Reid +Walter +Aden +Garrett +Kash +Lane +Messiah +Raymond +Skylar +Skyler +Titus +Troy +Vincent +Braydon +Emmanuel +Frank +Gael +Holden +Israel +Ivan +Jeffrey +Knox +Leo +Porter +Russell +Ryland +Seth +Anderson +Beau +Cade +Cash +Judah +Kai +Marshall +Travis +Tripp +Allen +Amir +Andre +Corey +Declan +Donald +Drake +Ellis +Franklin +Landen +Leland +Luis +Paul +Ronald +Terrance +Trey +Bentlee +Curtis +Deacon +Derek +Diego +Dillon +Erik +Jax +Jay +Jon +Josue +Kolton +Micheal +Ricardo +Warren +Zechariah +Asa +Braden +Brantlee +Brentley +Brodie +Cannon +Elliott +Grady +Harper +Javion +Jerry +Jett +Judson +Maurice +Memphis +Taylor +Terry +Tristen +Abraham +Camron +Colby +Cornelius +Dakota +Darius +Elliot +Finn +Gary +Giovanni +Jake +Jakobe +Jaylon +Jimmy +Kamari +Kyson +Leonardo +Mario +Princeton +Randy +Sean +Tatum +Tobias +Trent +Willie +Archer +Brendan +Casen +Casey +Coleman +Drew +Dustin +Iker +Issac +Jamarcus +Jeffery +Julius +Justice +Kade +Lee +Leon +Lorenzo +Nicolas +Peter +Reginald +Rowan +Shawn +Spencer +Tate +Theodore +Abram +Andres +Baylor +Bo +Branson +Brock +Colt +Cory +Donovan +Enrique +Fernando +Jakob +Jamison +Keith +Kylan +Mack +Maverick +Maximus +Nehemiah +Oscar +Randall +Reed +Romeo +Sergio +Simon +Trace +Alejandro +Alijah +Arthur +Byron +Cayson +Channing +Cortez +Cristian +Danny +Davion +Dennis +Dexter +Dominick +Eduardo +Elisha +Forrest +Francisco +Gerald +Jacoby +Jamauri +Joe +Jorge +Kelvin +Kendall +Larry +Lukas +Malcolm +Manuel +Marlon +Oakley +Prince +Quinton +Rodney +Tommy +Tristian +Turner +Wilson +Zackary +Aidyn +Andy +Braylin +Callen +Dante +Darren +Emerson +Fisher +Houston +Jamie +Jensen +Jermaine +Keaton +Khalil +Kobe +Kristopher +Lathan +Melvin +Mitchell +Nelson +Philip +Phoenix +Quentin +Rafael +Reese +Ronnie +Shane +Sylas +Terrell +Toby +Tony +Amarion +Bently +Billy +Braelyn +Brayan +Campbell +Cedric +Chad +Chevy +Colten +Demarcus +Devon +Douglas +Draven +Emory +Erick +Harlan +Izaiah +Jakaiden +Jalen +Jamichael +Jaxton +Jordyn +Kamryn +Kellan +Korbin +Landyn +Langston +Lawrence +London +Louis +Maison +Martin +Mateo +Omarion +Rashad +Roger +Santiago +Slade +Solomon +Tevin +Ty +Zaylen +Ace +Ahmad +Alexis +Alonzo +Atticus +Benton +Blaine +Bobby +Braeden +Brennan +Brice +Camdyn +Cesar +Chris +Corban +Courtney +Craig +Cruz +Cullen +Darryl +Deangelo +Deshawn +Dwight +Ean +Emanuel +Garrison +Gibson +Harley +Hector +Jaceon +Jamarian +Jared +Julio +Kaidyn +Kamauri +Kamron +Karsen +Kellen +Kohen +Kolby +Konner +Korbyn +Kristian +Kylen +Kyran +Ladarius +Lance +Layton +Lochlan +Malakai +Marco +Omar +Ridge +Roberto +Rodrigo +Sullivan +Tylan +Wade +Winston +Zayne +Alexzander +Ali +Alvin +Amare +Angelo +Aubrey +Aydan +Braylan +Brent +Brently +Bruce +Brysen +Bryton +Camren +Camryn +Canaan +Clay +Damon +Darian +Daylon +Dayton +Dean +Deandre +Dorian +Eddie +Fabian +Finley +Fischer +Foster +Gideon +Gray +Gunnar +Harris +Hayes +Immanuel +Jabari +Jaidyn +Jaquan +Javier +Javon +Jaxen +Jaydon +Jefferson +Jessie +Jonas +Jorden +Kayleb +Keelan +Keenan +Kody +Luther +Malaki +Markell +Mathew +Miller +Milton +Morgan +Neil +Nickolas +Nigel +Omari +Pedro +Pierce +Quinn +Rex +Rickey +Ricky +Roderick +Shamar +Stanley +Talon +Terrence +Triston +Will +Yahir +Zachariah +Aaden +Alberto +Alden +Alfredo +Antoine +Antony +Antwon +Aydin +Barry +Beckett +Ben +Braiden +Brenden +Brendon +Cadyn +Carl +Carmelo +Caysen +Collier +Conrad +Creed +Crimson +Damarion +Damion +Dane +Darrell +Daylen +Demarion +Demarius +Deon +Desmond +Drayton +Dwayne +Edgar +Emilio +Emmitt +Felix +Ford +Fredrick +Gaines +Gatlin +Gentry +Grey +Hamilton +Hampton +Hank +Harold +Heath +Hezekiah +Hollis +Hugo +Jacen +Jakobi +Jakobie +Jamar +Jaron +Jasen +Jaycion +Jayson +Jerome +Johnathon +Kadin +Kaedyn +Kalvin +Kamarion +Kannon +Kaydon +Keagan +Kenyon +Konnor +Kye +Kyree +Kyrie +Kyrin +Landry +Legend +Makel +Maksim +Marcos +Marley +Martez +Marvin +Mekhi +Nathanael +Neymar +Nikolas +Pablo +Patton +Payton +Raiden +Ralph +Ramsey +Ray +Rayden +Reece +Roland +Ronan +Rory +Ruben +Scott +Shepherd +Stetson +Tahj +Talan +Taylon +Terrion +Trayvon +Trevon +Tyrell +Uriah +Xzavier +Yael +William +James +John +Mason +Elijah +Noah +Jackson +Aiden +Jacob +Joshua +Samuel +Michael +Ethan +Carter +Liam +Grayson +Christopher +Jayden +Logan +Hunter +Andrew +Landon +Caleb +Gabriel +Joseph +Charles +David +Jaxon +Colton +Luke +Ayden +Levi +Cameron +Matthew +Christian +Carson +Wyatt +Alexander +Jordan +Benjamin +Robert +Daniel +Kayden +Lucas +Easton +Bentley +Eli +Brantley +Braxton +Brayden +Jonathan +Henry +Anthony +Thomas +Jeremiah +Jace +Connor +Sawyer +Austin +Bryson +Oliver +Parker +Cooper +Hudson +Dylan +Isaac +Tyler +Isaiah +Josiah +Nathan +Karter +Brandon +Jase +Timothy +Jack +Kingston +Nicholas +Gavin +Tucker +Ashton +Tristan +Asher +Justin +Kaleb +Chase +Brody +Jayceon +Owen +Kaiden +Jaxson +Kevin +Ryan +Aaron +Cayden +Ian +Jason +Jayce +Micah +Ryder +Evan +Greyson +Hayden +Kaden +Harrison +Karson +Camden +Braylen +Rylan +Zachary +Zayden +Adam +Jose +Kameron +Wesley +Barrett +Marcus +Nolan +Blake +Dallas +Gunner +Kenneth +Malachi +Preston +Silas +Bryce +Collin +Antonio +Caden +Jonah +King +Peyton +Adrian +Maddox +Messiah +Brooks +Dawson +Trenton +Avery +Bennett +Lincoln +Steven +Alex +Richard +Sebastian +Weston +Braylon +Brian +Dalton +Ezra +Jaden +Jaiden +Riley +Tanner +Zion +Corbin +Walker +Xavier +Amari +Judah +Lawson +Maxwell +River +Jude +Angel +Carlos +Eric +Kason +Griffin +Juan +Princeton +Ryker +Abel +Bryan +Cason +Derrick +George +Roman +Aidan +Conner +Everett +Garrett +Jaylen +Miles +Stephen +Dominic +Emmett +Jameson +Johnny +Julian +Kyler +Zane +Bradley +Cole +Edward +Elias +Graham +Jesse +Kai +Nathaniel +Paul +Bryant +Caiden +Clayton +Gregory +Jeremy +Judson +Kylan +Patrick +Walter +Alan +Charlie +Colin +Landen +Chandler +Luis +Titus +Waylon +Anderson +Axel +Cody +Ezekiel +Grant +Jax +Kayson +Miguel +Tyson +Chance +Declan +Jett +Kyle +Vincent +Amir +Braydon +Johnathan +Seth +Travis +Brentley +Case +Devin +Jasper +Jeffery +Joel +Keegan +Marshall +Skyler +Cade +Fisher +Jensen +Max +Paxton +Rhett +Spencer +Trevor +Calvin +Cohen +Colt +Kendrick +Major +Taylor +Xander +Zander +Beau +Braden +Brycen +Curtis +Finn +Iker +Ivan +Jamari +Jesus +Mark +Maverick +Myles +Reid +Troy +Victor +Zaiden +Casen +Cash +Colby +Damien +Ellis +Grady +Houston +Kamden +Kolton +Landyn +Malcolm +Phillip +Warren +Brodie +Corey +Cristian +Dustin +Elliott +Jeffrey +Kasen +Raylan +Rowan +Wilson +Aden +Cedric +Coleman +Diego +Edwin +Gage +Jake +Kash +Prince +Ronald +Russell +Ryland +Theodore +Abram +Ace +Damian +Demarcus +Hayes +Holden +Jamarcus +Javier +Mateo +Maurice +Nicolas +Remington +Terry +Tony +Abraham +Brantlee +Carmelo +Demetrius +Dillon +Emmanuel +Israel +Jamichael +Jerry +Kobe +Kylen +Lane +Phoenix +Willie +August +Baylor +Channing +Daxton +Desmond +Donald +Donovan +Eduardo +Emerson +Jimmy +Kamari +Kendall +Porter +Skylar +Alejandro +Asa +Beckett +Bentlee +Bo +Brady +Brendan +Brock +Cannon +Casey +Courtney +Danny +Deacon +Dean +Elliot +Gannon +Jakobe +Jamarion +Jaxton +Jermaine +Jon +Leonardo +Luca +Morgan +Nehemiah +Pedro +Sylas +Tripp +Triston +Turner +Alexis +Andre +Brennan +Bruce +Cayson +Cornelius +Crimson +Davion +Davis +Deandre +Dennis +Franklin +Frederick +Gary +Harley +Jalen +Justice +Kade +Kaison +Kyson +Layton +Legend +Malik +Manuel +Micheal +Miller +Oakley +Omar +Reed +Ricardo +Ricky +Simon +Terrance +Trent +Zechariah +Archer +Dakota +Derek +Dexter +Erick +Felix +Jagger +Jasiah +Jorge +Keaton +Khalil +Kyrie +Ladarius +Leland +Leo +London +Lorenzo +Lukas +Maximus +Omari +Oscar +Quinton +Reese +Reginald +Rodney +Samson +Sean +Shane +Trace +Zachariah +Zaylen +Adan +Atticus +Branson +Braylin +Damon +Darius +Dominick +Dorian +Fletcher +Francisco +Issac +Jamison +Jared +Javion +Jay +Joe +Jordyn +Josue +Kamryn +Knox +Kolten +Kristian +Lance +Lathan +Louis +Lyric +Maison +Mitchell +Neymar +Peter +Randall +Reece +Scott +Shawn +Solomon +Tatum +Terrence +Tylan +Ahmad +Alijah +Andres +Andy +Beckham +Benton +Billy +Blaine +Bowen +Brenton +Byron +Camdyn +Cullen +Deangelo +Devon +Drake +Drew +Emory +Finley +Gael +Gerald +Gideon +Gunnar +Jacoby +Jakaiden +Jaydon +Jayson +Karsyn +Keagan +Keelan +Keith +Kristopher +Landan +Leon +Macon +Mario +Markell +Martin +Marvin +Raymond +Roderick +Sutton +Uriah +Allen +Amarion +Amos +Brayan +Brayson +Brenden +Callen +Camron +Chevy +Colten +Cortez +Dante +Deshawn +Eddie +Emanuel +Fernando +Foster +Giovanni +Hector +Izaiah +Jabari +Jakob +Jamir +Jaxen +Jayveon +Jayvion +Jorden +Kane +Kaysen +Keandre +Keller +Kenny +Kody +Konnor +Lamar +Langston +Larry +Lewis +Malakai +Mayson +Mohammed +Payton +Philip +Pierce +Quentin +Ridge +Ronan +Ronnie +Roy +Rylee +Santiago +Shepherd +Sullivan +Talon +Thaddeus +Toby +Tristen +Tristin +Will +Xzavier +Zackary +Zackery +Zayne +Zyon +Aiyden +Albert +Ali +Alton +Anakin +Angelo +Armani +Arthur +Aston +Barron +Ben +Bishop +Brent +Briar +Brylon +Camren +Canaan +Carl +Cashton +Caysen +Clark +Clinton +Damion +Darren +Daylen +Dayton +Douglas +Elisha +Enoch +Erik +Felipe +Forrest +Frank +Gatlin +Graysen +Isiah +Jacen +Jaceyon +Jaiceon +Jakaden +Jakari +Jakayden +Jamie +Jaquan +Jarvis +Jasen +Jaylon +Jerome +Justus +Kaidyn +Kalel +Kamron +Kashton +Kellan +Kelvin +Kemari +Kendarius +Kharter +Kohen +Kooper +Kymani +Lamarcus +Lawrence +Layne +Leonel +Marquis +Memphis +Nash +Nigel +Omarion +Pablo +Pierson +Randy +Ray +Rayden +Roland +Ruben +Stanley +Stephon +Sterling +Taylon +Tommy +Tristian +Wade +Wallace +Wells +Zamarion +Zayvion +Adrien +Aidyn +Alden +Alec +Alvin +Antwan +Armando +Aubrey +Aydon +Benson +Braylan +Brentlee +Brylan +Carsen +Chris +Christon +Collins +Conor +Corbyn +Coy +Crew +Dakari +Darrell +Darrion +Darryl +Dax +Deanthony +Demari +Deon +Dewayne +Dontavious +Draven +Eden +Emery +Ezequiel +Finnegan +Francis +Gauge +Gentry +Hank +Harlem +Harper +Harris +Hollis +Hosea +Jessie +Johan +Johnathon +Julien +Julio +Julius +Junior +Kace +Kaisen +Karsen +Kaydon +Killian +Kolby +Kole +Konner +Laken +Lee +Leighton +Lennox +Madden +Malakhi +Marlon +Marquez +Mathew +Matthias +Nasir +Nathanael +Nickolas +Nikolas +Noel +Orion +Raleigh +Rashad +Rex +Sage +Shaun +Slade +Soren +Stone +Thatcher +Tobias +Todd +Trey +Tylen +Tyree +Westin +Winston +Zain +Mary +Ruby +Ruth +Willie +Ethel +Gladys +Hazel +Edna +Bessie +Mildred +Annie +Helen +Thelma +Marie +Bertha +Myrtle +Dorothy +Irene +Pearl +Jessie +Minnie +Martha +Mattie +Rosie +Lucille +Opal +Lillie +Elizabeth +Louise +Beatrice +Clara +Edith +Velma +Alice +Anna +Lillian +Lois +Emma +Pauline +Elsie +Alma +Margaret +Ida +Jewell +Frances +Fannie +Florence +Alberta +Hattie +Eva +Dora +Evelyn +Georgia +Grace +Mamie +Ella +Mabel +Virginia +Lena +Lula +Ollie +Beulah +Gertrude +Mae +Nellie +Sarah +Vera +Maggie +Viola +Bernice +Cora +Carrie +Mable +Laura +Lola +Lottie +Eunice +Inez +Julia +Esther +Margie +Nettie +Eula +Virgie +Daisy +Flora +Jewel +Nora +Agnes +Josephine +Essie +Effie +Geneva +Ola +Ora +Stella +Susie +Wilma +Addie +Iva +Lucy +Violet +Vivian +Ada +Allie +Della +Leona +Roberta +Nancy +Lela +Sadie +Sallie +Ann +Catherine +Cleo +Etta +Lucile +Rachel +Rosa +Zelma +Blanche +Dollie +Elnora +Erma +Floy +May +Alta +Christine +Gracie +Juanita +Katherine +Leola +Reba +Betty +Billie +Doris +Johnnie +Nell +Oma +Verna +Callie +Dovie +Ellen +Faye +Josie +Kathryn +Katie +Lorene +Naomi +Norma +Bertie +Elva +Frankie +Jennie +Lizzie +Marjorie +Maudie +Winnie +Audrey +Cecil +Dessie +Francis +Kathleen +Nina +Odessa +Pearlie +Rena +Rose +Carolyn +Estelle +Flossie +Gertie +Gussie +Letha +Lydia +Madge +Nola +Roxie +Selma +Sylvia +Bonnie +Estella +Hallie +Janie +Marguerite +Maxine +Millie +Nona +Vesta +Anne +Artie +Connie +Easter +Fay +Henrietta +Irma +Lee +Ophelia +Patsy +Victoria +Amy +Blanch +Cassie +Eliza +Elma +Ester +Fern +Ila +Iola +Jane +Lilly +Lona +Lora +Louella +Lucinda +Mittie +Mollie +Muriel +Rebecca +Savannah +Blanchie +Charlotte +Delia +Delma +Earnestine +Ernestine +Goldie +Hannah +Ina +Lessie +Lou +Magnolia +Matilda +Maude +Olive +Tommie +Wanda +Alva +Amelia +Ava +Berniece +Bettie +Birdie +Birtha +Corine +Eleanor +Eloise +Estell +Evia +Genevieve +Hester +Hettie +Jean +June +Kattie +Leila +Lenora +Lorraine +Marion +Melba +Ocie +Rosetta +Rubye +Tressie +Willa +Zella +Audie +Augusta +Camille +Caroline +Cecelia +Charlie +Cordelia +Cynthia +Eddie +Esta +Eulah +Freda +Freddie +Geraldine +Isabell +Jannie +Jo +Johnie +Leta +Lila +Lonnie +Lorena +Luella +Nannie +Ona +Ova +Rosalie +Rubie +Sally +Sophia +Theresa +Versie +Virgia +Virgil +Mary +Ruby +Ruth +Mildred +Gladys +Hazel +Willie +Helen +Annie +Ethel +Edna +Opal +Clara +Marie +Thelma +Bertha +Dorothy +Bessie +Lois +Jessie +Elizabeth +Minnie +Edith +Myrtle +Irene +Lillie +Mattie +Ida +Pearl +Alice +Grace +Beatrice +Elsie +Lillian +Margaret +Pauline +Rosie +Louise +Nellie +Lucille +Mabel +Emma +Frances +Hattie +Velma +Alma +Anna +Martha +Evelyn +Cora +Viola +Vera +Ella +Josephine +Eva +Mamie +Jewell +Ollie +Virginia +Bernice +Esther +Lena +Lola +Lula +Beulah +Carrie +Florence +Juanita +Laura +Sarah +Eula +Lucy +Effie +Erma +Georgia +Nora +Ora +Katie +Fannie +Ola +Eunice +Rose +Agnes +Inez +Mable +Mae +Stella +Christine +Cleo +Leona +Susie +Alberta +Betty +Blanche +Doris +Gertrude +Jewel +Maggie +Iva +Lela +Rosa +Catherine +Della +Essie +Nettie +Sadie +Addie +Daisy +Flora +Verna +Ada +Geneva +Vivian +Wilma +Goldie +Lorene +Dora +Julia +Rachel +Violet +Ellen +Gracie +Johnnie +Lottie +Naomi +Nell +Virgie +Dessie +Jennie +Lucile +Maxine +Nancy +Norma +Sallie +Marjorie +Maude +Zelma +Audrey +Bonnie +Elnora +Fay +Faye +Flossie +Margie +Marion +Sue +Artie +Cecil +Eleanor +Ila +Josie +Katherine +Letha +Lora +Nina +Odessa +Pearlie +Estella +Ina +Marguerite +Mollie +Reba +Ruthie +Sylvia +Winnie +Allie +Dollie +Dovie +Floy +Jimmie +Ophelia +Roberta +Alta +Amy +Ann +Billie +Callie +Connie +Etta +Francis +Henrietta +Lee +Leola +Lessie +Nannie +Rebecca +Robbie +Selma +Aline +Birdie +Estelle +Freda +Gertie +Kathleen +Kathryn +Lenora +Lizzie +Rosetta +Wanda +Alpha +Barbara +Bertie +Claudia +Jean +Lona +Lydia +Madge +Maud +Nola +Oma +Veda +Amanda +Ava +Eddie +Eliza +Elva +Frankie +Geraldine +Hester +Irma +Janie +Madie +May +Millie +Oleta +Olive +Rubye +Una +Anne +Bennie +Carolyn +Chloe +Donnie +Era +Fern +Gussie +Iola +Johnie +Lila +Lorena +Maudie +Myra +Nadine +Ona +Ova +Pansy +Patricia +Rena +Roxie +Sally +Sara +Vesta +Zella +Zula +Aileen +Amelia +Charlotte +Eloise +Eugenia +Euna +Gertha +Grethel +Hallie +Iona +Isabel +Isabell +Ivory +Joyce +Kate +Lelia +Linnie +Lue +Luella +Marian +Matilda +Merle +Muriel +Nona +Oda +Sybil +Vada +Vernie +Zadie +Mary +Ruby +Ruth +Helen +Mildred +Willie +Hazel +Marie +Thelma +Ethel +Gladys +Opal +Dorothy +Annie +Edna +Lucille +Myrtle +Bessie +Edith +Margaret +Bertha +Mattie +Irene +Elizabeth +Pauline +Clara +Lillian +Pearl +Louise +Jessie +Virginia +Lois +Frances +Lillie +Grace +Martha +Anna +Nellie +Velma +Alice +Evelyn +Sarah +Elsie +Viola +Beulah +Emma +Rosie +Beatrice +Minnie +Eva +Alma +Lola +Bernice +Jewell +Lena +Lucy +Mabel +Vera +Hattie +Mable +Ella +Gertrude +Josephine +Esther +Ida +Ollie +Fannie +Carrie +Mae +Maggie +Cora +Mamie +Inez +Jewel +Julia +Ada +Juanita +Laura +Eunice +Susie +Essie +Daisy +Dora +Lula +Vivian +Catherine +Doris +Georgia +Katie +Nettie +Rosa +Agnes +Alberta +Betty +Della +Effie +Eula +Florence +Lorene +Ola +Bonnie +Faye +Geneva +Nancy +Blanche +Ora +Rose +Leona +Lela +Iva +Nora +Roberta +Flora +Geraldine +Gracie +Naomi +Addie +Alta +Stella +Allie +Christine +Odessa +Verna +Virgie +Wilma +Ann +Ellen +Frankie +Lizzie +Maudie +Winnie +Dovie +Flossie +Johnnie +Nina +Roxie +Sylvia +Audrey +Elva +Erma +Marguerite +Marjorie +Maxine +Rachel +Katherine +Linnie +Rosetta +Sadie +Avis +Elnora +Nola +Cleo +Fay +Fern +Jennie +Lottie +Barbara +Ernestine +Estella +Kathleen +Lydia +May +Oma +Reba +Sally +Ina +Jimmie +Leola +Ophelia +Violet +Dessie +Emily +Etta +Gussie +Ila +Irma +Letha +Norma +Rebecca +Ruthie +Billie +Estelle +Floy +Goldie +Henrietta +Hester +Janie +Kathryn +Lee +Lenora +Lessie +Retha +Zelma +Artie +Birdie +Callie +Connie +Francis +Jane +Jean +Josie +Lelia +Lucile +Robbie +Rubye +Victoria +Zelda +Audie +Augusta +Celia +Dollie +Hilda +Ima +Lila +Lora +Maude +Merle +Nadine +Nell +Pearlie +Queen +Rena +Clarice +Cynthia +Estell +Imogene +Lou +Margie +Millie +Muriel +Sallie +Vida +Allene +Eddie +Eleanor +Eliza +Elma +Johnie +Lorraine +Luella +Mollie +Nannie +Orpha +Tressie +Vada +Viva +Amy +Anne +Ava +Bertie +Bettie +Cassie +Cornelia +Dixie +Euna +Gertie +June +Kattie +Louella +Madge +Marian +Melba +Neoma +Ocie +Oleta +Selma +Sue +Zella +Abbie +Aline +Annis +Arlene +Bethel +Cecil +Charlotte +Corine +Corinne +Delia +Easter +Eloise +Era +Ester +Golda +Idella +Iona +Loretta +Lura +Magnolia +Octavia +Olive +Patricia +Sara +Sybil +Una +Veda +Vernie +Wanda +Adele +Amelia +Anita +Arizona +Blanch +Carmen +Caroline +Charlene +Chloe +Cordelia +Dorthy +Elaine +Freda +Hallie +Idell +Iris +Janice +Kate +Katharine +Lavada +Laverne +Leota +Lina +Linda +Lorine +Lovie +Madeline +Madie +Malinda +Marion +Mittie +Mozelle +Patsy +Peggy +Shirley +Theola +Theresa +Tommie +Trudie +Verda +Verdie +Vesta +Willia +Zola +Mary +Ruby +Mildred +Ruth +Hazel +Willie +Helen +Dorothy +Marie +Gladys +Margaret +Thelma +Opal +Annie +Pauline +Edna +Lois +Louise +Jessie +Myrtle +Lucille +Ethel +Irene +Virginia +Clara +Beatrice +Bessie +Edith +Alice +Elizabeth +Bertha +Frances +Mattie +Emma +Velma +Elsie +Grace +Lillian +Martha +Vera +Mabel +Pearl +Ida +Evelyn +Alma +Lillie +Anna +Minnie +Sarah +Bernice +Rosie +Fannie +Viola +Hattie +Nellie +Juanita +Lola +Florence +Jewell +Beulah +Cora +Eva +Georgia +Lena +Lucy +Essie +Eula +Laura +Maggie +Carrie +Ella +Inez +Mae +Stella +Eunice +Jewel +Mamie +Doris +Flora +Lula +Ollie +Vivian +Agnes +Blanche +Gertrude +Faye +Geneva +Lorene +Cleo +Ora +Esther +Katherine +Mable +Verna +Daisy +Dora +Ellen +Josephine +Julia +Katie +Nettie +Wilma +Winnie +Bonnie +Della +Effie +Marjorie +Lela +Ola +Ada +Ann +Catherine +Erma +Leona +Marguerite +Rose +Betty +Jean +Reba +Alta +Gracie +Maudie +Alberta +Christine +Nora +Goldie +Lottie +Margie +Susie +Virgie +Audrey +Elnora +Iva +Johnnie +Maxine +Sylvia +Flossie +Lucile +Nancy +Addie +Ernestine +Frankie +Letha +Billie +Marion +Pearlie +Rachel +Zelma +Dovie +Imogene +Ina +Irma +Olive +Rosa +Violet +Dollie +Estelle +Geraldine +Jimmie +Leola +Nell +Norma +Ophelia +Allie +Etta +Fern +Gertie +Gussie +Kathryn +Luella +Millie +Mollie +Nina +Sadie +Wanda +Amanda +Bobbie +Dessie +Francis +Lizzie +Lydia +Mittie +Muriel +Naomi +Odessa +Oma +Robbie +Sallie +Sally +Sue +Bertie +Elva +Estella +Floy +Iris +Janie +Nola +Roberta +Rosetta +Clarice +Eleanor +Emily +Jane +Lennie +Lona +Lorraine +Madge +Nona +Patricia +Rebecca +Avis +Bennie +Birdie +Eloise +Hester +Joyce +Lila +Linnie +May +Oleta +Selma +Tommie +Vada +Vida +Barbara +Callie +Chloe +Claudia +Fay +Gretchen +Henrietta +Hilda +Kathleen +Lenora +Lora +Lorena +Maude +Maurine +Melba +Ocie +Queen +Ruthie +Victoria +Zora +Aline +Anne +Audie +Cornelia +Eliza +Era +Ester +Golda +Ila +Jettie +Josie +Lee +Lessie +Leta +Lettie +Madeline +Magnolia +Nannie +Olivia +Ona +Rosalie +Roxie +Sara +Shirley +Zelda +Zella +Altha +Amy +Augusta +Ava +Berniece +Charlie +Delia +Dortha +Eddie +Freda +Genevieve +Harriet +Jennie +Jo +Joe +Leora +Lou +Louella +Lovie +Monnie +Neva +Polly +Theresa +Veda +Alene +Alpha +Artie +Audra +Cecile +Charlene +Connie +Dixie +Donna +Dorris +Elma +Idella +Iona +Isabell +James +Jeanette +Laverne +Merle +Nova +Odie +Retha +Reva +Rosemary +Velva +Willa +Zenobia +Abbie +Adele +Alva +Amelia +Annette +Birtha +Blanch +Carolyn +Cecil +Cordelia +Corine +Dolly +Dorothea +Easter +Estell +Floye +Frieda +Idell +Iola +Jamie +Johnie +Lady +Lelia +Lorine +Louie +Lucinda +Minerva +Mona +Myra +Myrtice +Myrtis +Octavia +Otha +Peggy +Phyllis +Rena +Rita +Roma +Rubye +Sophia +Velda +Virgia +Willia +Mary +Ruby +Mildred +Ruth +Helen +Gladys +Dorothy +Hazel +Marie +Thelma +Willie +Margaret +Lucille +Annie +Jessie +Pauline +Lois +Ethel +Irene +Opal +Anna +Frances +Myrtle +Bessie +Edna +Lillian +Louise +Lillie +Edith +Elizabeth +Alice +Eva +Elsie +Mattie +Pearl +Virginia +Bertha +Velma +Minnie +Emma +Evelyn +Clara +Grace +Alma +Martha +Ida +Viola +Beatrice +Bernice +Rosie +Laura +Beulah +Vera +Mabel +Hattie +Juanita +Florence +Geneva +Lola +Agnes +Josephine +Mae +Georgia +Lena +Doris +Eunice +Lucy +Nellie +Bonnie +Faye +Jewell +Lorene +Sarah +Lula +Mable +Ella +Vivian +Essie +Fannie +Gertrude +Inez +Wilma +Carrie +Catherine +Esther +Maggie +Nettie +Stella +Daisy +Dora +Cora +Ola +Ora +Susie +Addie +Cleo +Jewel +Reba +Elnora +Flora +Katherine +Marguerite +Naomi +Effie +Mamie +Ollie +Alberta +Iva +Audrey +Leona +Rose +Nancy +Betty +Estelle +Eula +Julia +Marjorie +Maxine +Della +Gracie +Kathleen +Nina +Christine +Ellen +Goldie +Johnnie +Katie +Margie +Maudie +Verna +Ada +Alta +Callie +Erma +Lela +Lottie +Violet +Geraldine +Blanche +Ernestine +Ina +Rosa +Sylvia +Virgie +Billie +Flossie +Sadie +Sue +Jean +Floy +Nora +Roberta +Etta +Josie +Leola +Letha +Lora +Nell +Norma +Dessie +Dovie +Kathryn +Lucile +May +Rachel +Roxie +Winnie +Allie +Ann +Fay +Ila +Irma +Joyce +Muriel +Claudia +Frankie +Imogene +Zelma +Lee +Lizzie +Olive +Oma +Shirley +Bennie +Birdie +Carolyn +Dollie +Fern +Charlie +Eddie +Elva +Genevieve +Hester +Jennie +Odessa +Ophelia +Pearlie +Rosetta +Sybil +Wanda +Cecil +Eloise +Henrietta +Hilda +June +Lenora +Neva +Nola +Sara +Amanda +Amy +Avis +Corine +Eleanor +Hettie +Iola +Jane +Johnie +Madge +Marion +Maude +Millie +Nona +Rebecca +Sally +Barbara +Berniece +Emily +Estella +Eugenia +Lessie +Magnolia +Mollie +Ocie +Selma +Vada +Vida +Willa +Anne +Bethel +Bobbie +Charlotte +Eliza +Florine +Francis +Iris +Lorena +Lorraine +Merle +Rena +Sallie +Arlene +Artie +Augusta +Bertie +Elma +Freddie +Gertie +Janice +Janie +Leota +Lila +Mona +Odie +Retha +Tressie +Winifred +Allene +Alpha +Ava +Bettie +Celia +Charlene +Connie +Cornelia +Freda +Glenna +Harriet +Jeanette +Leta +Lona +Luella +Myra +Neoma +Odell +Oleta +Olivia +Pansy +Patricia +Queen +Rosalie +Rubye +Ruthie +Zola +Aileen +Chloe +Clarice +Corinne +Cynthia +Gussie +James +Linnie +Lou +Madie +Mandy +Maud +Mayme +Nannie +Ova +Robbie +Rubie +Una +Verla +Versie +Vesta +Zella +Annabelle +Arkie +Audie +Carmen +Cassie +Charline +Dixie +Dorothea +Dorris +Emogene +Euna +Fairy +Golda +Hallie +Hannah +Helene +Henry +Ima +Jo +Joe +Kattie +Laverne +Lydia +Madeline +Maurine +Mazie +Ona +Pearline +Rita +Sibyl +Tessie +Theresa +Tina +Tommie +Verda +Victoria +Adell +Altha +Atha +Audra +Blanchie +Bulah +Cecile +Clemmie +Corene +Delphia +Dolly +Earlene +Earline +Earnestine +Edythe +Eulah +George +Janet +Jettie +Joann +Lennie +Lilly +Loraine +Lorine +Lue +Lura +Lyda +Margret +Melba +Melva +Miriam +Mittie +Molly +Mozella +Nova +Rosia +Susan +Tennie +Vernie +Viva +Winona +Zora +Mary +Ruby +Ruth +Helen +Mildred +Dorothy +Hazel +Thelma +Gladys +Opal +Pauline +Margaret +Lois +Lucille +Marie +Willie +Edna +Jessie +Annie +Frances +Ethel +Martha +Elizabeth +Louise +Clara +Alice +Irene +Bessie +Myrtle +Edith +Virginia +Velma +Lillian +Evelyn +Anna +Mattie +Bernice +Pearl +Minnie +Bertha +Vera +Juanita +Ida +Emma +Alma +Ella +Nellie +Eva +Beatrice +Lucy +Mabel +Grace +Elsie +Lena +Lillie +Geneva +Wilma +Agnes +Lorene +Sarah +Rosie +Inez +Lola +Doris +Florence +Bonnie +Eula +Jewell +Fannie +Mae +Mable +Mamie +Vivian +Beulah +Viola +Faye +Laura +Eunice +Jewel +Georgia +Gertrude +Josephine +Julia +Ollie +Reba +Lula +Hattie +Cora +Ora +Carrie +Cleo +Flora +Marjorie +Effie +Verna +Catherine +Daisy +Esther +Ada +Betty +Dora +Maxine +Susie +Leona +Maggie +Alberta +Christine +Essie +Rachel +Katherine +Iva +Nora +Virgie +Alta +Audrey +Erma +Naomi +Sylvia +Nancy +Ann +Flossie +Jean +Kathryn +Lottie +Nina +Stella +Ellen +Imogene +Marguerite +Blanche +Geraldine +Gracie +Nettie +Rose +Zelma +Goldie +Katie +Lela +Norma +Rosa +Floy +Violet +Etta +Ina +Margie +Addie +Fay +Letha +Ola +Winnie +Elnora +Fern +Ila +Jane +Kathleen +Oma +Sallie +Elva +Frankie +Nell +Roberta +Della +Dessie +Dollie +Ernestine +Estella +Leola +Sadie +Allie +Estelle +Lizzie +Lucile +Muriel +Billie +Chloe +Bertie +Dovie +Irma +Jennie +Joyce +Maudie +Eddie +Francis +Jimmie +Melba +Mollie +Nola +Shirley +Birdie +Elma +Gertie +Merle +Olive +Wanda +Anita +Johnnie +Lenora +Lila +Millie +Rebecca +Ruthie +Vada +Amy +Carmen +Carolyn +Corine +Eleanor +Gussie +Johnie +Lee +Syble +Tommie +Berniece +Eloise +Emily +Marion +Maude +Patricia +Rena +Retha +Selma +Vida +Barbara +Bobbie +Charlotte +Dixie +Florine +Freda +Iris +June +Lora +May +Ophelia +Sally +Sue +Tressie +Anne +Artie +Ava +Hester +Joe +Robbie +Sara +Sybil +Veda +Aline +Dolly +Dortha +Earnestine +Elaine +Josie +Laverne +Lorena +Lorraine +Madeline +Mavis +Ocie +Pansy +Queen +Reva +Rosetta +Victoria +Alpha +Altha +Audie +Callie +Clarice +Era +Ester +Florene +Lettie +Lorine +Lou +Nadine +Nannie +Neva +Nona +Pearlie +Rubye +Euna +Henrietta +Janie +Lilly +Loretta +Lydia +Magnolia +Oleta +Rita +Theresa +Versie +Vesta +Zelda +Adele +Amanda +Augusta +Bennie +Celia +Claudia +Donna +Gwendolyn +Hilda +Janice +Lessie +Linnie +Mittie +Odessa +Olivia +Peggy +Roxie +Vergie +Alene +Allene +Amie +Charlene +Donnie +Edythe +Freddie +Ione +Jettie +Leatha +Leota +Luella +Madge +Madie +Maurice +Myra +Polly +Rosalie +Savannah +Velva +Adell +Ara +Audra +Bettie +Caroline +Cassie +Cecil +Charlie +Connie +Idell +Jannie +Jeanette +Lennie +Meda +Mina +Odell +Olga +Ona +Orpha +Ova +Pearline +Reta +Althea +Blanchie +Corinne +Delphia +Easter +Eileen +Eliza +Elvira +Emogene +Eugenia +Evie +Fanny +Genevieve +Gertha +Golda +Ivy +Joy +Kate +Leila +Lily +Linda +Louisa +Lue +Lura +Mandy +Marian +Maurine +Maybelle +Mayme +Mazie +Minerva +Myrtie +Nova +Regina +Rosemary +Rubie +Sibyl +Una +Velda +Winifred +Zora +Abbie +Amelia +Aretha +Bethel +Carmel +Cecile +Crystal +Dean +Delcie +Delma +Dorotha +Dorothea +Dorthy +Earline +Eathel +Florida +Freeda +Idella +Iola +Izora +Jamie +Jaunita +Jeanne +Jo +Joan +Leah +Lexie +Luciel +Lucinda +Matilda +Maud +Maxie +Maye +Miriam +Montine +Myrtis +Norene +Novella +Oda +Odie +Onie +Pinkie +Rhoda +Vanella +Vernice +Vernie +Versa +Viva +Walsie +Wilda +Zella +Zenobia +Zola +Zula +Mary +Ruby +Ruth +Mildred +Dorothy +Hazel +Helen +Gladys +Thelma +Pauline +Willie +Annie +Lois +Opal +Margaret +Frances +Marie +Edna +Irene +Martha +Elizabeth +Lucille +Louise +Alice +Virginia +Lillie +Ethel +Bessie +Jessie +Lillian +Edith +Anna +Beatrice +Geneva +Juanita +Evelyn +Elsie +Emma +Vera +Minnie +Myrtle +Bertha +Mattie +Clara +Bernice +Georgia +Sarah +Ida +Velma +Mabel +Eva +Grace +Alma +Pearl +Florence +Lena +Ollie +Doris +Nellie +Rosie +Wilma +Jewell +Laura +Eunice +Lorene +Vivian +Ella +Esther +Inez +Mae +Lula +Agnes +Fannie +Jewel +Julia +Mable +Hattie +Eula +Mamie +Gertrude +Josephine +Lucy +Maxine +Viola +Beulah +Catherine +Maggie +Christine +Cleo +Geraldine +Cora +Lola +Addie +Bonnie +Carrie +Essie +Leona +Marjorie +Ora +Flora +Katherine +Nora +Susie +Daisy +Nancy +Ola +Reba +Dora +Faye +Audrey +Effie +Blanche +Lela +Rose +Marguerite +Frankie +Kathleen +Kathryn +Nina +Sylvia +Stella +Verna +Alberta +Margie +Naomi +Rosa +Betty +Virgie +Ada +Erma +Imogene +Katie +Lottie +Ann +Estelle +Iva +Johnnie +Leola +Nettie +Rebecca +Sadie +Violet +Wanda +Roberta +Gracie +Norma +Rachel +Sallie +Eloise +Goldie +Jane +Lucile +Ellen +Flossie +Floy +Maudie +Winnie +Fay +Jennie +Lizzie +Oma +Allie +Billie +Irma +Olive +Alta +Della +Emily +Ila +June +Marion +Sue +Barbara +Corine +Fern +Ina +Lessie +Lou +Zelma +Elnora +Lee +Lila +Madge +Odessa +Dollie +Dovie +Etta +Josie +Letha +Lora +Lydia +Merle +Charlene +Ernestine +Estella +Genevieve +Gussie +Janie +Melba +Neva +Jean +Ophelia +Rena +Roxie +Rubye +Shirley +Claudia +Elva +Jimmie +Nadine +Sara +Dorthy +Eleanor +Gertie +Hester +Janet +Joyce +Nola +Peggy +Rosetta +Selma +Tressie +Victoria +Callie +Earnestine +Eddie +Francis +Freda +Luella +May +Ona +Amy +Birdie +Cornelia +Dixie +Elma +Florene +Hilda +Lorine +Lorraine +Marian +Pearlie +Amanda +Artie +Charlotte +Chloe +Eugenia +James +Laverne +Lenora +Lorena +Magnolia +Nell +Retha +Vida +Alene +Aline +Bertie +Carmen +Dessie +Jo +Muriel +Nona +Oleta +Robbie +Sybil +Tommie +Una +Veda +Vesta +Anne +Avis +Claudie +Euna +Florine +Iola +Mollie +Odell +Ruthie +Savannah +Vada +Verda +Zelda +Anita +Carolyn +Edythe +Era +Ester +Freddie +Johnie +Lelia +Lettie +Lona +Loretta +Millie +Mittie +Olivia +Patricia +Queen +Reva +Syble +Theresa +Allene +Cecil +Clarice +Clemmie +Eileen +Georgie +Kate +Leota +Leta +Matilda +Maurine +Mavis +Miriam +Nannie +Ocie +Rosalie +Velva +Alpha +Arlene +Birtha +Bobbie +Corinne +Donna +Dortha +Emogene +Linnie +Loraine +Madeline +Maud +Novella +Orpha +Pearline +Polly +Rhoda +Vergie +Versie +Alva +Ardella +Audie +Ava +Bennie +Berniece +Blanchie +Charles +Claudine +Connie +Earline +Eathel +Harriet +Henrietta +Iris +Jamie +Janice +Jaunita +Jeffie +Joe +Leah +Lovie +Lyda +Maude +Mayme +Monnie +Myrtis +Pansy +Sibyl +Sudie +Tessie +Theola +Vernie +Wilda +Willa +Willia +Zelpha +Zenobia +Adell +Aileen +Amelia +Arline +Audra +Augusta +Belle +Berneice +Bess +Charlie +Charline +Corene +Cynthia +Delphia +Dolores +Easter +Elaine +Estell +Glenna +Gwendolyn +Idella +Jackie +John +Kattie +Lennie +Lue +Luvenia +Margarette +Margret +Maria +Maurice +Meredith +Nova +Patsy +Paula +Rheba +Rita +Sally +Sophia +Theda +Vernice +Vina +Virgil +Zola +Almeda +Altha +Annabelle +Annette +Ara +Cassie +Celestine +Christina +Constance +Coy +Delilah +Dorotha +Edyth +Eliza +Elvie +Elvira +Ether +Evia +Fanny +Freeda +Freida +Golda +Hallie +Hannah +Harriett +Hope +Hortense +Ira +Jeanette +Joan +Jossie +Katheryn +Lavelle +Lily +Lucinda +Luna +Lurline +Mammie +Mazie +Mozella +Myra +Myrle +Myrtice +Myrtie +Neta +Oralee +Ova +Ozella +Ressie +Reta +Tennie +Tina +Valeria +Velda +Verlie +Walsie +Winona +Zella +Mary +Ruby +Ruth +Helen +Mildred +Dorothy +Hazel +Pauline +Margaret +Willie +Frances +Thelma +Edna +Gladys +Lois +Virginia +Marie +Annie +Ethel +Lucille +Martha +Opal +Edith +Elizabeth +Jessie +Bessie +Juanita +Mattie +Anna +Alice +Louise +Irene +Beatrice +Evelyn +Clara +Lillian +Emma +Bernice +Elsie +Lillie +Bertha +Velma +Alma +Myrtle +Georgia +Vera +Geneva +Lorene +Nellie +Pearl +Sarah +Grace +Mabel +Rosie +Eva +Ida +Minnie +Mamie +Maxine +Doris +Jewell +Ella +Lula +Inez +Katherine +Catherine +Florence +Wilma +Carrie +Josephine +Agnes +Eunice +Faye +Lena +Viola +Beulah +Fannie +Ollie +Flora +Mae +Laura +Essie +Geraldine +Lucy +Bonnie +Julia +Ora +Vivian +Blanche +Gertrude +Hattie +Esther +Eula +Erma +Cora +Marjorie +Mable +Stella +Christine +Nina +Reba +Ada +Cleo +Dora +Lola +Addie +Betty +Ola +Effie +Jewel +Maggie +Imogene +Verna +Nora +Ellen +Floy +Rose +Daisy +Lela +Estelle +Nancy +Alberta +Jane +Kathryn +Lottie +Margie +Alta +Susie +Ann +Violet +Virgie +Wanda +Katie +Ina +Iva +Marguerite +Sylvia +Della +Irma +Naomi +Rachel +Rosa +Audrey +Fay +Johnnie +Maudie +Allie +Flossie +Lucile +Sadie +Ernestine +Nettie +Billie +Elnora +Freda +Goldie +Leona +Roberta +Dollie +Marion +Norma +Jennie +June +Letha +Gracie +Lee +Odessa +Winnie +Dessie +Francis +Leola +May +Etta +Rena +Eleanor +Jimmie +Kathleen +Laverne +Muriel +Ophelia +Pearlie +Rebecca +Rosetta +Sallie +Sue +Zelma +Callie +Estella +Fern +Mollie +Amy +Frankie +Lorraine +Millie +Neva +Sybil +Aline +Bertie +Claudia +Eloise +Ila +Melba +Nell +Charlotte +Joyce +Lora +Nola +Oma +Alpha +Anita +Barbara +Dovie +Eddie +Eileen +Genevieve +Gussie +Hilda +Janie +Lizzie +Nona +Carolyn +Charlene +Corine +Emily +Patricia +Retha +Tressie +Dorthy +Eliza +Elma +Florene +Freddie +Georgie +Lydia +Nadine +Odell +Selma +Anne +Artie +Bettie +Bobbie +Chloe +Elva +Henrietta +Iris +Jean +Joan +Linnie +Olive +Rita +Roxie +Ruthie +Allene +Ava +Florine +Gertie +Johnie +Josie +Lura +Marian +Maurine +Sibyl +Theresa +Veda +Vida +Winifred +Bennie +Claudine +Connie +Magnolia +Pansy +Robbie +Sally +Sara +Syble +Zella +Alene +Audie +Augusta +Berniece +Cassie +Celia +Emogene +Era +Ester +Gwendolyn +Hallie +Ima +Joy +Kate +Lou +Oleta +Queen +Rubye +Shirley +Verda +Adell +Altha +Carmen +Clarice +Donna +Dorris +Florida +Hester +Hettie +Idell +Jeanette +Lettie +Lila +Luella +Marcella +Mavis +Nannie +Ocie +Phyllis +Reva +Tommie +Vada +Velda +Audra +Cecil +Easter +Glenna +Iona +Janet +Joe +Lavada +Leatha +Loraine +Loretta +Lorine +Maude +Mittie +Mona +Novella +Pearline +Peggy +Rubie +Tessie +Victoria +Zola +Adeline +Agatha +Aileen +Amelia +Annis +Avis +Birdie +Blanchie +Charlie +Charline +Christina +Delia +Delphia +Earnestine +Golda +Isabel +Jaunita +Jo +Lenora +Leota +Lessie +Lilly +Lorena +Madge +Mayme +Mazie +Mozelle +Olivia +Ona +Ossie +Polly +Rosalie +Sammie +Susan +Theda +Una +Versie +Winona +Adele +Amanda +Angie +Arlene +Crystal +Delila +Dolly +Dortha +Edyth +Elvira +Hellen +Ione +Ivy +Janice +John +Lennie +Leora +Leta +Lona +Macie +Margarette +Margret +Matilda +Maybelle +Merle +Myrle +Otha +Rosemary +Sophia +Velva +Vesta +Viva +Annabelle +Belva +Caroline +Cecilia +Cordia +Corinne +Cornelia +Coy +Cynthia +Delta +Dixie +Earline +Edythe +Elaine +Elease +Elois +Ethelyn +Ether +Exie +Floye +Freeda +Frieda +Jannie +Jettie +Leila +Maria +Maurice +Minerva +Mozella +Myra +Norene +Olga +Ova +Ozie +Priscilla +Ressie +Rhoda +Theo +Treva +Vergie +Vernie +Zelda +Zettie +Zora +Abbie +Adelle +Annette +Arlie +Audry +Beverly +Carmon +Clarine +Claudie +Clotine +Corrine +Delois +Delora +Delpha +Dolores +Dossie +Earlene +Eathel +Ellie +Elzie +Erie +Esta +Estell +Evie +Glennie +Harriet +Hazle +Hortense +Inis +Iola +Ivory +James +Jonnie +Julie +Kathrine +Katy +Lavern +Leah +Louella +Ludie +Lue +Lulu +Macel +Madie +Matha +Mellie +Modean +Myrtice +Nerine +Nova +Octavia +Ovie +Patsy +Reola +Rosalee +Savannah +Vella +Verdie +Vestal +Willa +Willene +Willia +Mary +Mildred +Ruby +Ruth +Helen +Hazel +Dorothy +Margaret +Thelma +Gladys +Willie +Martha +Pauline +Marie +Edna +Frances +Opal +Virginia +Annie +Lucille +Louise +Lois +Edith +Juanita +Ethel +Anna +Elizabeth +Irene +Jessie +Evelyn +Elsie +Bernice +Emma +Bessie +Velma +Bertha +Lillie +Lillian +Alice +Geneva +Clara +Mattie +Lorene +Myrtle +Vera +Eva +Minnie +Wilma +Pearl +Nellie +Ida +Doris +Sarah +Beatrice +Alma +Georgia +Rosie +Mable +Vivian +Inez +Lucy +Grace +Viola +Florence +Jewell +Mabel +Ella +Esther +Katherine +Maxine +Laura +Geraldine +Eunice +Lula +Catherine +Gertrude +Agnes +Mamie +Lola +Marjorie +Fannie +Hattie +Jewel +Johnnie +Lena +Marguerite +Cora +Betty +Josephine +Mae +Nancy +Ollie +Beulah +Blanche +Bonnie +Eula +Margie +Ora +Alta +Flora +Leona +Daisy +Faye +Julia +Dora +Effie +Ernestine +Essie +Sylvia +Addie +Carrie +Imogene +Iva +Maggie +Verna +Reba +Audrey +Christine +Rose +Wanda +Lela +Norma +Billie +Cleo +Nora +Alberta +Stella +Violet +Rachel +Ellen +Jean +Kathryn +Susie +Allie +Ann +Joyce +Flossie +Kathleen +Nettie +Roberta +Elnora +Erma +Frankie +Jane +Ada +Freda +Naomi +Sadie +Della +Floy +June +Lottie +Ola +Virgie +Nina +Barbara +Elva +Estelle +Gracie +Rosa +Sybil +Ina +Jimmie +Katie +Maudie +Charlene +Dessie +Dollie +Dovie +Goldie +Ila +Odessa +Sibyl +Estella +Leola +Letha +Dorthy +Lila +Nola +Etta +Marion +Melba +Retha +Winnie +Anne +Johnie +May +Gwendolyn +Lizzie +Lora +Syble +Zelma +Eddie +Emily +Lee +Madge +Ruthie +Bobbie +Claudia +Gussie +Laverne +Lou +Lucile +Luella +Robbie +Sue +Connie +Dortha +Florine +Francis +Henrietta +Iris +Irma +Muriel +Nell +Neva +Sallie +Sara +Selma +Aline +Lorraine +Roxie +Berniece +Clarice +Fay +Jeanette +Jennie +Marian +Oma +Ophelia +Rosetta +Winifred +Anita +Fern +Hester +Janie +Josie +Lydia +Tommie +Veda +Victoria +Bennie +Carolyn +Corine +Earnestine +Eloise +Lenora +Linnie +Loretta +Olive +Rebecca +Rita +Shirley +Adell +Bertie +Donna +Eleanor +Jannie +Joy +Merle +Mollie +Nadine +Vada +Earline +Elma +Hilda +Jo +Leota +Maude +Nannie +Ona +Patricia +Pearlie +Rena +Reva +Sally +Verda +Verla +Willa +Alene +Amanda +Artie +Birdie +Eileen +Emogene +Ester +Eugenia +Maurine +Rubye +Theda +Una +Vida +Bettye +Callie +Charlie +Charlotte +Dixie +Dolly +Florene +Freddie +Gertie +Hellen +Janice +Joan +Lorena +Louella +Magnolia +Mavis +Millie +Norene +Olivia +Queen +Augusta +Ava +Bettie +Claudie +Cynthia +Dona +Edythe +Elaine +Eliza +Golda +James +Jaunita +Lettie +Lona +Ozella +Patsy +Polly +Susan +Tennie +Tressie +Vernice +Viva +Zola +Amelia +Arlene +Audie +Chloe +Glenna +Hallie +Hettie +Iola +Joe +Leta +Loraine +Madeline +Mandy +Margret +Molly +Nona +Nova +Ocie +Pansy +Theresa +Velda +Velva +Allene +Amy +Blanch +Carmen +Clemmie +Cornelia +Corrine +Dottie +Freeda +Genevieve +Georgie +Idella +Ima +Jamie +Janet +Lavada +Lenore +Lessie +Lovie +Lucie +Lucinda +Lue +Mayme +Modean +Mozelle +Myra +Myrtice +Odell +Oleta +Onie +Orpha +Ouida +Ova +Phyllis +Rosemary +Zula +Alpha +Altha +Audra +Avis +Claudine +Corene +Delia +Dimple +Dorris +Earlene +Elouise +Gertha +Hope +Idell +Ione +Jerry +John +Justine +Lelia +Leonia +Lorine +Matilda +Mozell +Olga +Pearline +Rhoda +Rosalie +Savannah +Trudie +Willene +Zella +Zenobia +Alva +Augustine +Berneice +Birtha +Brooksie +Bulah +Camille +Carol +Cassie +Cathryn +Cecile +Celia +Christene +Clyde +Corinne +Daphna +Delores +Delphia +Donnie +Easter +Eithel +Ellie +Elois +Era +Estell +Frieda +Gearldine +Hannah +Harriet +Ivy +Jettie +Joanna +Joella +Katharine +Kattie +Kay +Kitty +Leila +Lorean +Loyce +Luvenia +Madie +Marcella +Margarett +Maria +Mittie +Nita +Novella +Odie +Ozell +Sophia +Winona +Adele +Adeline +Aileen +Albirda +Alline +Avo +Bethel +Bobbye +Cecil +Charline +Christeen +Cozetta +Delpha +Dorothea +Erie +Florida +Genevia +Gloria +Iona +Irean +Izola +Jackie +Jeanne +Jeannette +Julie +Kate +Lavern +Leah +Lennie +Leora +Lily +Lyda +Magdalene +Marcell +Margery +Melva +Modena +Nelle +Octavia +Odessie +Priscilla +Ray +Sylva +Tessie +Theola +William +Mary +Ruby +Mildred +Helen +Dorothy +Ruth +Hazel +Pauline +Thelma +Willie +Margaret +Gladys +Marie +Martha +Louise +Frances +Lucille +Virginia +Opal +Annie +Edna +Edith +Evelyn +Irene +Juanita +Elizabeth +Ethel +Lois +Bessie +Anna +Emma +Geneva +Jessie +Lillie +Beatrice +Alice +Mattie +Clara +Bernice +Bertha +Velma +Lillian +Lorene +Georgia +Ida +Myrtle +Minnie +Vera +Elsie +Alma +Eva +Pearl +Rosie +Wilma +Florence +Mabel +Doris +Ella +Mable +Vivian +Viola +Bonnie +Sarah +Lula +Betty +Lucy +Erma +Grace +Lola +Marjorie +Ora +Jewell +Nellie +Laura +Lena +Katherine +Essie +Maxine +Agnes +Dora +Cora +Inez +Geraldine +Julia +Hattie +Gertrude +Imogene +Violet +Fannie +Mae +Maggie +Margie +Alberta +Christine +Leona +Beulah +Jewel +Ollie +Catherine +Eunice +Faye +Carrie +Esther +Mamie +Eula +Norma +Nina +Reba +Rose +Wanda +Verna +Ellen +Addie +Josephine +Flora +Lottie +Audrey +Blanche +Estelle +Lela +Nancy +Naomi +Susie +Alta +Johnnie +Daisy +Effie +Jane +Kathryn +Ola +Rachel +Virgie +Cleo +Della +Nora +Frankie +Iva +Leola +Ada +Jean +Odessa +Syble +Kathleen +Nettie +Sibyl +Stella +Zelma +Katie +Marguerite +Ernestine +Floy +Irma +Melba +Ann +Billie +Lucile +Marion +Flossie +Freda +Gracie +Ina +Nadine +Roberta +Sylvia +Goldie +Winnie +Rosa +Ruthie +Sybil +Elnora +Francis +Jimmie +Laverne +Lee +Lizzie +Allie +Dollie +Janie +Joyce +Estella +Fern +Charlotte +Earline +Elva +Barbara +Corine +Dovie +Eloise +Fay +Johnie +Letha +May +Olive +Ophelia +Pearlie +Rosetta +Lora +Aline +Berniece +Jeanette +Jo +Lydia +Madge +Magnolia +Oma +Sallie +Freddie +Gussie +Jennie +Lorraine +Willa +Bobbie +Dorthy +Earnestine +Etta +Hester +Lorine +Maudie +Rubye +Sadie +Shirley +Vada +Anne +Callie +Emily +Florine +Genevieve +Lou +Patricia +Rosemary +Roxie +Sara +Sue +Iris +Josie +Lila +Nell +Rebecca +Retha +Theda +Alpha +Amy +Bertie +Birdie +Gertie +Lenora +Sally +Theresa +Veda +Charlie +Clarice +Dessie +Dortha +Eleanor +Linnie +Mavis +Millie +Mollie +Muriel +Nannie +Nola +Nona +Robbie +Vergie +Victoria +Vida +Carolyn +Claudia +Corene +Ester +Freeda +Gwendolyn +Henrietta +Hilda +Lessie +Luella +Mittie +Alene +Artie +Augusta +Ava +Charline +Emogene +Maude +Peggy +Queen +Rena +Tommie +Bettie +Christene +Dolly +Eddie +Elaine +Ila +June +Lorena +Neva +Olga +Vernice +Aileen +Charlene +Dixie +Dorris +Eliza +Georgie +Harriet +Ima +Jaunita +Jeanne +Margarette +Myrtis +Ona +Sammie +Selma +Tressie +Versie +Zella +Adell +Allene +Carmen +Cassie +Connie +Delia +Delois +Eileen +Elma +Glenna +Iola +Joy +Lona +Loraine +Loretta +Lue +Marian +Miriam +Norene +Ocie +Octavia +Vesta +Zenobia +Angie +Anita +Arlene +Bennie +Bulah +Cornelia +Corrine +Easter +Florene +Golda +Hannah +Jeannette +Joe +Lavern +Louie +Marcella +Maurine +Merle +Oleta +Ouida +Ova +Reola +Rita +Savannah +Una +Winifred +Altha +Amanda +Bethel +Beverly +Blanch +Corinne +Cynthia +Floye +Hallie +Hellen +Hettie +Idell +Janet +Kate +Louisa +Modean +Novella +Odie +Rosalie +Susan +Theola +Tillie +Wilda +Abbie +Amelia +Arline +Blanchie +Cecil +Claudine +Clora +Dean +Donnie +Dorotha +Ellie +Estell +George +Gloria +Hazle +Jodie +Katheryn +Leah +Leatha +Lelia +Leora +Lilly +Lovie +Loyce +Lucinda +Magdalene +Margarett +Marry +Maud +Mazie +Mona +Mozelle +Nova +Olivia +Pansy +Pearline +Polly +Reva +Robert +Rubie +Vernie +Zelda +Zora +Alline +Almeda +Annette +Ardelia +Audra +Bess +Birtha +Caldonia +Caroline +Clementine +Constance +Cordelia +Deloris +Delphia +Donna +Elouise +Era +Eugenia +Glenda +Hildred +Idella +Imo +Iona +Izola +James +Jerry +Joan +Lavada +Lennie +Lenore +Leta +Lina +Lulu +Lura +Madeline +Mandy +Montine +Naoma +Odell +Onie +Phyllis +Reatha +Sam +Tennie +Tessie +Vella +Velva +Vena +Verla +Zola +Arlena +Armanda +Avanell +Avis +Belva +Berneice +Beryl +Beth +Chloe +Christeen +Cleda +Clemmie +Cordie +Delma +Delora +Edythe +Elisabeth +Elvie +Elvira +Emmer +Enola +Evia +Gail +Gene +Gertha +Goldia +Ilene +Isabella +Jackie +Jamie +Jannie +Judy +Julie +Leota +Lily +Loy +Lyda +Maria +Marietta +Matilda +Maybell +Monnie +Myra +Myrtie +Nevada +Odelia +Olevia +Oreatha +Patsy +Rhoda +Rutha +Sophia +Tommy +Trudie +Vela +Velda +Verda +Verlie +Vessie +Vina +Willene +Zettie +Mary +Dorothy +Ruby +Helen +Mildred +Ruth +Hazel +Margaret +Marie +Thelma +Martha +Virginia +Gladys +Pauline +Lucille +Frances +Juanita +Willie +Annie +Lois +Opal +Louise +Anna +Ethel +Evelyn +Edna +Elizabeth +Irene +Alice +Edith +Beatrice +Mattie +Wilma +Bernice +Lillie +Minnie +Lillian +Geneva +Bessie +Emma +Velma +Lorene +Jessie +Doris +Eva +Ida +Vivian +Vera +Bertha +Elsie +Sarah +Betty +Georgia +Myrtle +Clara +Ella +Rosie +Katherine +Geraldine +Violet +Maxine +Nellie +Alma +Grace +Pearl +Jewell +Mabel +Laura +Bonnie +Viola +Julia +Marjorie +Florence +Mable +Mae +Wanda +Cora +Inez +Hattie +Fannie +Nancy +Christine +Josephine +Norma +Mamie +Essie +Jewel +Lena +Lula +Esther +Flora +Imogene +Audrey +Lola +Reba +Agnes +Ora +Eula +Catherine +Ollie +Gertrude +Kathryn +Daisy +Dora +Lela +Lucy +Margie +Stella +Naomi +Jean +Beulah +Erma +Faye +Marguerite +Blanche +Iva +Jane +Virgie +Ellen +Maggie +Ola +Billie +Ernestine +Eunice +Johnnie +Leona +Verna +Ada +Carrie +Cleo +Joyce +Kathleen +Nora +Rose +Effie +Lottie +Sylvia +Addie +Katie +Odessa +Rosa +Nina +Susie +Gracie +Alberta +Goldie +Nettie +Fern +June +Rachel +Elnora +Della +Dorthy +Floy +Fay +Marion +Pearlie +Ann +Barbara +Irma +Sybil +Alta +Etta +Lorraine +Nadine +Sadie +Winnie +Aline +Flossie +Ina +Jimmie +Leola +Melba +Frankie +Lee +Nola +Sara +Dollie +Eleanor +Letha +Syble +Corine +Francis +Freda +Lucile +Shirley +Willa +Zelma +Elva +Janie +Jennie +Amy +Callie +Charlene +Ester +Anne +Maudie +Ophelia +Queen +Rebecca +Roberta +Eddie +Freddie +Laverne +Nell +Allie +Birdie +Carolyn +Donna +Earnestine +Eloise +Genevieve +Madge +Marian +May +Ruthie +Sibyl +Estelle +Josie +Lenora +Loretta +Muriel +Robbie +Rosetta +Roxie +Sallie +Artie +Charlotte +Henrietta +Hilda +Lizzie +Lydia +Nona +Sue +Vesta +Anita +Dortha +Jaunita +Lorine +Oma +Rosalie +Vida +Bertie +Connie +Estella +Joy +Leta +Neva +Patricia +Bobbie +Dixie +Earline +Eliza +Hester +Ima +Iris +Janice +Lorena +Madeline +Nova +Rena +Augusta +Bennie +Carmen +Clarice +Dovie +Florine +Gussie +Hallie +Joan +Johnie +Lou +Marcella +Retha +Rosemary +Sally +Tressie +Vada +Veda +Aileen +Annette +Elma +Emily +Era +Georgie +Jeanette +Mavis +Mollie +Polly +Rubye +Alene +Allene +Ava +Berniece +Charlie +Eileen +Emogene +Gwendolyn +Ila +Iola +Jackie +Linnie +Luella +Magnolia +Maude +Merle +Tommie +Zella +Cecil +Claudia +Dorotha +Freeda +Harriet +Idell +Jacqueline +Millie +Oleta +Olga +Ouida +Pearline +Theresa +Audra +Bettie +Bettye +Celeste +Corrine +Delma +Delphia +Jannie +Kate +Katheryn +Lavada +Lila +Matilda +Myrtis +Nannie +Patsy +Reva +Vernice +Adell +Alpha +Celia +Charline +Clyde +Corinne +Dessie +Dolores +Dorothea +Florene +Frieda +Gertie +Janet +Jo +Lavern +Leota +Lily +Lora +Loraine +Louella +Maxie +Odell +Pansy +Phyllis +Tessie +Theda +Una +Velva +Versie +Yvonne +Cassie +Claudine +Earlene +Elaine +Estell +Glenda +Hellen +Iona +James +Jeanne +Kathrine +Leora +Lessie +Lettie +Myrl +Olivia +Peggy +Rita +Selma +Susan +Venita +Victoria +Willene +Altha +Amanda +Angeline +Arlene +Audry +Berneice +Blanchie +Bulah +Caroline +Cornelia +Delois +Dolly +Elvie +Gene +Gloria +Hettie +Idella +Jettie +Leatha +Lennie +Lilly +Lona +Lorean +Lucinda +Lura +Lyda +Maurine +Mittie +Molly +Mozell +Mozelle +Nelda +Octavia +Olive +Paula +Robert +Verdie +Willia +Winifred +Aleene +Alline +Ara +Arline +Avis +Belva +Chloe +Claudie +Constance +Corene +Delena +Dimple +Easter +Emmer +Eugenia +Exie +Florida +Gertha +Golda +Imo +Ira +Ivy +Jamie +Jayne +Jerry +Leah +Leo +Lina +Lovie +Madie +Mandy +Merry +Myra +Neta +Otha +Ova +Pinkie +Rubie +Sophia +Treva +Verda +Verla +Vina +Viva +Willodean +Zelda +Zola +Altie +Alyce +Ardell +Ardella +Arlena +Audie +Bernadine +Berta +Cathrine +Cecile +Celesta +Christene +Corean +Cynthia +Dana +Delphine +Esta +Estel +Ettie +Evangeline +Faith +Fanny +Freida +Gearldine +Gladis +Gustava +Hannah +Josiephine +Judy +Laurene +Lida +Linda +Lonnie +Loy +Marcelle +Margarette +Margurite +Mariah +Marilyn +Mickey +Mona +Nelle +Neoma +Norene +Norine +Novella +Ocie +Oneta +Orene +Paralee +Reatha +Rhoda +Sam +Sammie +Theola +Tina +Tiny +Velda +Veola +Wilhelmina +Zettie +Zona +Zula +Mary +Dorothy +Ruby +Helen +Mildred +Ruth +Margaret +Hazel +Virginia +Willie +Martha +Juanita +Frances +Pauline +Annie +Louise +Gladys +Thelma +Marie +Lois +Evelyn +Anna +Irene +Lucille +Edna +Betty +Edith +Jessie +Alice +Opal +Lillian +Clara +Ethel +Lillie +Doris +Elizabeth +Wilma +Emma +Velma +Alma +Bernice +Lorene +Ida +Maxine +Rosie +Beatrice +Wanda +Marjorie +Vera +Minnie +Bessie +Geneva +Elsie +Mattie +Bertha +Eva +Vivian +Margie +Grace +Myrtle +Katherine +Norma +Sarah +Ella +Geraldine +Audrey +Nellie +Pearl +Georgia +Florence +Bonnie +Christine +Flora +Mabel +Catherine +Julia +Mable +Josephine +Fannie +Mae +Viola +Jewell +Lula +Inez +Maggie +Lena +Cora +Laura +Beulah +Eula +Essie +Jean +Ellen +Eunice +Melba +Hattie +Esther +Ora +Gertrude +Daisy +Dora +Faye +Jewel +Erma +Lola +Naomi +Billie +Lucy +Imogene +Violet +Kathryn +Mamie +Ollie +Carrie +Ada +Nora +Stella +Leona +Lela +Blanche +Nancy +Jane +Agnes +Johnnie +Ola +Alberta +Joyce +Leola +Marguerite +Reba +Allie +Lottie +June +Virgie +Addie +Nina +Sybil +Laverne +Ann +Effie +Kathleen +Rosa +Ernestine +Ila +Ruthie +Cleo +Eloise +Flossie +Francis +Freda +Gracie +Nadine +Rachel +Susie +Iva +Verna +Alta +Irma +Rose +Winnie +Charlene +Ina +Sallie +Etta +Nettie +Syble +Dorthy +Lee +Emily +Marion +Zelma +Barbara +Dollie +Elnora +Roberta +Sara +Sylvia +Bobbie +Estella +Henrietta +Lucile +Dessie +Dortha +Eddie +Fay +Goldie +Muriel +Floy +Nell +Charlotte +Claudia +Della +Eleanor +Fern +Frankie +Jennie +Katie +Marian +Rebecca +Anita +Ava +Carolyn +Freddie +Gwendolyn +Hilda +Jaunita +Jimmie +Lorraine +Madge +Maudie +Rosetta +Dovie +Earnestine +Jo +Johnie +Odessa +Oma +Shirley +Emogene +Estelle +Josie +Letha +Lora +May +Pearlie +Sue +Amy +Artie +Callie +Elwanda +Jeanette +Loretta +Patricia +Roxie +Sadie +Lenora +Luella +Neva +Queen +Retha +Tressie +Willa +Cornelia +Earlene +Ester +Genevieve +Harriet +Iris +Lizzie +Lorine +Merle +Nova +Olive +Ophelia +Tommie +Allene +Anne +Berniece +Corine +Gussie +Janet +Linnie +Magnolia +Mavis +Odell +Sally +Vida +Aline +Annabelle +Bertie +Birdie +Connie +Janice +Lou +Lydia +Marcella +Nona +Patsy +Theda +Florene +Florine +Hester +Lessie +Lila +Myra +Sibyl +Willene +Cassie +Gloria +Ima +Joy +Lettie +Lily +Mollie +Rena +Rubye +Aileen +Alene +Alpha +Cecil +Clarice +Corene +Dolores +Eugenia +Hellen +James +Janie +Marilyn +Pansy +Peggy +Theresa +Verla +Carol +Dixie +Dorris +Earline +Elaine +Eliza +Elma +Elva +Elvie +Era +Gertie +Iola +Jackie +Joe +John +Lavada +Lavern +Madeline +Madie +Melva +Nannie +Nola +Pearline +Rita +Robbie +Rubie +Adell +Avis +Bennie +Bettie +Chloe +Christene +Constance +Dimple +Exie +Florida +Georgie +Hettie +Idell +Leslie +Lura +Mayme +Millie +Ozella +Rosemary +Una +Veda +Vernell +Victoria +Arlene +Carmen +Claudie +Dolly +Donna +Easter +Eileen +Glenda +Golda +Iona +Jayne +Julie +Kattie +Leta +Marcia +Margret +Maurine +Mazie +Neoma +Olivia +Ona +Ouida +Polly +Savannah +Selma +Velda +Verda +Abbie +Augusta +Bette +Cathrine +Cordelia +Deloris +Delphia +Edwina +Elois +Etter +Freeda +Glenna +Hannah +Ilene +Ira +Jeanne +Joan +Jonnie +Kate +Leoma +Leota +Linda +Louella +Magdalene +Mozelle +Novella +Oleta +Ossie +Ova +Ray +Relda +Rosalie +Sula +Tennie +Tessie +Vada +Vernice +Winifred +Zelda +Alline +Annette +Audie +Audry +Bettye +Blanch +Charlie +Charline +Claudine +Corean +Corinne +Delcenia +Dorotha +Dottie +Edythe +Elise +Estell +Euna +Goldia +Hildred +Hortense +Idella +Ivy +Jerry +Lelia +Loraine +Lue +Maria +Maurice +Maye +Mozella +Myrtis +Nevada +Noma +Odean +Olga +Ouita +Phyllis +Rosalee +Rutha +Sophia +Susan +Treva +Velva +Vergie +Vesta +Winona +Zella +Zola +Adeline +Almeda +Altha +Alyce +Amanda +Annis +Argie +Arlie +Atha +Bernelle +Bernita +Billye +Birtha +Blanchie +Bobby +Caroline +Celestine +Charlsie +Clemmie +Corrine +Cozetta +Delia +Delois +Delpha +Donnie +Dorothea +Eartha +Elouise +Eugene +Ever +Gail +Gertha +Imo +Izola +Jacqueline +Jamie +Joanna +Lilly +Lona +Lucinda +Luvenia +Lyda +Mandy +Marcelle +Margurite +Marylee +Maud +Miriam +Mittie +Modean +Modena +Molly +Mona +Naoma +Natalie +Olevia +Oneda +Orene +Otha +Pinkie +Robert +Roma +Rubbie +Sam +Tommy +Verdie +Verlie +Versie +Veta +Yvonne +Zelpha +Zona +Mary +Dorothy +Helen +Mildred +Ruby +Ruth +Margaret +Virginia +Hazel +Juanita +Willie +Annie +Martha +Thelma +Frances +Evelyn +Pauline +Louise +Gladys +Betty +Marie +Lucille +Lois +Anna +Edith +Edna +Opal +Alice +Ethel +Doris +Emma +Jessie +Elizabeth +Wanda +Lillian +Irene +Lillie +Bernice +Beatrice +Mattie +Clara +Alma +Geneva +Wilma +Bertha +Bessie +Maxine +Myrtle +Marjorie +Minnie +Ida +Rosie +Elsie +Georgia +Vera +Katherine +Velma +Pearl +Geraldine +Eva +Florence +Josephine +Vivian +Lorene +Imogene +Norma +Bonnie +Sarah +Margie +Lula +Inez +Nellie +Viola +Christine +Ella +Jewell +Laura +Cora +Catherine +Lola +Daisy +Mae +Audrey +Hattie +Jewel +Mable +Ellen +Fannie +Jean +Maggie +Ollie +Grace +Melba +Violet +Erma +Eula +Carrie +Johnnie +Lucy +Billie +Eunice +Julia +Gertrude +Mamie +Ora +Flora +Sylvia +Lena +Ernestine +Mabel +Nancy +Rachel +Reba +Stella +Beulah +Esther +Kathryn +Naomi +Sadie +Alberta +Joyce +Essie +Faye +Cleo +Flossie +Ola +Laverne +Verna +Virgie +Iva +Nettie +Agnes +Nina +Rose +Kathleen +Nora +Odessa +Syble +Addie +Dora +Gracie +Irma +Ada +Lela +Marion +Dorthy +Katie +Rosa +Susie +Eloise +Freda +Ina +Jimmie +Ruthie +Blanche +Frankie +Jane +Leola +Lottie +Marguerite +Leona +Maudie +Estelle +Charlotte +Della +Elva +Estella +Floy +Goldie +June +Gloria +Lenora +Effie +Elnora +Francis +Patricia +Roberta +Shirley +Sue +Barbara +Etta +Winnie +Ann +Dortha +Letha +Nadine +Sybil +Earnestine +Eddie +Lizzie +Lorine +Alta +Florine +Lee +Sara +Allie +Bettie +Carolyn +Mavis +Neva +Nola +Rebecca +Robbie +Tommie +Zelma +Bobbie +Callie +Charlene +Dollie +Lucile +Ophelia +Pearlie +Tressie +Dovie +Gwendolyn +Muriel +Anita +Bertie +Connie +Dessie +Jennie +Johnie +Joy +Millie +Queen +Rena +Retha +Vernice +Vida +Donna +Emily +Fay +Ila +Jeanette +Theresa +Willa +Aline +Amy +Anne +Claudia +Lorraine +Lydia +Merle +Nona +Oma +Peggy +Rosetta +Birdie +Eleanor +Elwanda +Freddie +Hilda +Loraine +Lou +Madge +Pearline +Rita +Sally +Selma +Victoria +Alene +Artie +Charline +Fern +Florene +Hester +Janie +Marilyn +Nell +Zelda +Zella +Corine +Eileen +Emogene +Genevieve +Lila +Marcella +May +Patsy +Phyllis +Polly +Vernell +Amanda +Arlene +Bennie +Berniece +Cecil +Dorotha +Earline +Georgie +Glenda +Jacqueline +Janice +Jeanne +Josie +Lessie +Lorena +Loretta +Luella +Myrtis +Olive +Rubye +Sallie +Vesta +Bettye +Henrietta +Ima +Jaunita +Jo +Kate +Lora +Magnolia +Maude +Maurine +Mona +Ocie +Ona +Ouida +Reva +Roxie +Veda +Zola +Charlie +Elouise +Eugenia +Freida +Gertie +Glenna +Jerry +Lilly +Margret +Maria +Mittie +Myra +Rosemary +Theda +Verda +Winifred +Aggie +Aileen +Angie +Annabelle +Audie +Birtha +Cassie +Delores +Delphia +Dixie +Earlene +Easter +Elma +Hazle +Idell +Ilene +Iris +Leah +Linda +Linnie +Louella +Lovie +Maple +Marietta +Mollie +Nannie +Ozell +Reola +Sammie +Sibyl +Susan +Versie +Allene +Almeda +Alpha +Amelia +Audra +Cecile +Charles +Clarice +Corene +Dolores +Donnie +Eliza +Ester +Frieda +Gussie +Ivory +Joan +Josiephine +Lavada +Leora +Loyce +Lue +Magdalene +Marian +Mozelle +Nova +Odell +Oleta +Olivia +Willene +Wynona +Zora +Zula +Aletha +Almeta +Altha +Annette +Augusta +Bethel +Carmen +Caroline +Cecilia +Delma +Dorris +Elaine +Estell +Freeda +George +Hallie +Hannah +Hellen +Hettie +Idella +Janet +Jannie +Jettie +John +Leota +Leta +Lily +Ludie +Mandy +Margery +Montine +Nan +Neoma +Norene +Pansy +Priscilla +Rhoda +Rosia +Rutha +Una +Velda +Verla +Vernie +Alean +Arline +Avis +Bernadine +Beth +Bonita +Bulah +Ceola +Chloe +Clementine +Clemmie +Cleta +Corinne +Delia +Earma +Elease +Euna +Harriett +Iola +Isabell +Izola +Janette +Jeffie +Kattie +Lavelle +Lavern +Lawanda +Louis +Lucinda +Lurline +Luvenia +Madeline +Madie +Malinda +Margarett +Maxie +Modean +Mosella +Ozella +Pearlene +Pinkie +Rheba +Rubie +Tennie +Vada +Velva +Viva +William +Winona +Yvonne +Adeline +Adell +Audry +Augustine +Ava +Billye +Cathrine +Celestine +Celia +Christene +Claudie +Claudine +Colleen +Cornelia +Dana +Daphne +Deloris +Dolly +Dorothea +Dottie +Earlee +Emmer +Florida +Floye +Fredia +Gene +Gertha +Harriet +Imo +Ira +Isabella +Jackie +James +Joe +Judy +Katy +Lennie +Lettie +Lona +Marcelle +Margarette +Maud +Mina +Molly +Neola +Noble +Odessie +Odie +Olene +Olevia +Olga +Oneta +Oval +Ozie +Pairlee +Reatha +Rosalie +Roy +Sophia +Tessie +Vella +Vena +Vennie +Verdie +Verline +Vernon +Willia +Mary +Dorothy +Helen +Mildred +Ruby +Ruth +Virginia +Willie +Margaret +Juanita +Martha +Frances +Betty +Hazel +Thelma +Marie +Louise +Gladys +Pauline +Evelyn +Annie +Lois +Anna +Edna +Irene +Opal +Elizabeth +Lucille +Wanda +Alice +Doris +Bernice +Edith +Wilma +Lillie +Ethel +Jessie +Geneva +Emma +Clara +Marjorie +Maxine +Beatrice +Lillian +Velma +Margie +Rosie +Geraldine +Lorene +Ida +Georgia +Mattie +Minnie +Alma +Myrtle +Ella +Elsie +Nellie +Bessie +Vera +Sarah +Bertha +Florence +Eva +Vivian +Norma +Bonnie +Lucy +Mable +Lola +Christine +Imogene +Catherine +Billie +Katherine +Hattie +Jean +Naomi +Grace +Melba +Inez +Laura +Essie +Lula +Reba +Mabel +Mamie +Nina +Fannie +Josephine +Violet +Flora +Jewell +Mae +Nancy +Pearl +Beulah +Joyce +Viola +Eula +Johnnie +Julia +Faye +Cora +Erma +Esther +Kathryn +Rachel +Agnes +Ernestine +Lena +Rose +Ellen +Ada +Barbara +Eunice +Daisy +Maggie +Blanche +Iva +Jewel +Lela +Gertrude +Audrey +Della +Kathleen +Ora +Charlene +Dora +Effie +Stella +Rosa +Alberta +Allie +Ruthie +Sylvia +Verna +Virgie +Addie +Carrie +Gracie +Jane +Katie +Marion +Ola +Ollie +Ann +Leona +Eloise +Lottie +Marguerite +Cleo +Frankie +Peggy +Susie +Irma +Nettie +Francis +Freda +Nora +Sallie +Jimmie +Robbie +Roberta +Sara +Shirley +Syble +Dorthy +Flossie +Earnestine +Jaunita +Laverne +Odessa +Zelma +Carolyn +Elnora +Goldie +Lee +Patricia +Sybil +Nadine +Sadie +Willa +Bobbie +Eddie +Hester +Ina +Sue +June +Claudia +Fern +Henrietta +Ila +Leola +Marian +Ophelia +Winnie +Alta +Etta +Florine +Genevieve +Joan +Marilyn +Sally +Bettye +Charlotte +Estella +Fay +Lila +Lorine +Maudie +May +Tressie +Vernice +Artie +Bettie +Jacqueline +Joe +Lydia +Rebecca +Rosetta +Roxie +Connie +Dessie +Dollie +Earline +Freddie +Iris +Lessie +Lorraine +Merle +Patsy +Rosemary +Birdie +Corine +Gertie +Luella +Millie +Neva +Vida +Elva +Johnie +Joy +Oleta +Olivia +Pearlie +Retha +Rubye +Ava +Charlie +Dovie +Estelle +Gloria +Gwendolyn +Ima +James +Jeanne +Josie +Lenora +Lou +Mavis +Nannie +Neoma +Queen +Carmen +Dolly +Dortha +Eleanor +Emogene +Ester +Euna +Ira +Janie +Jeanette +Jennie +Jerry +Lucile +Nola +Nona +Olive +Oma +Zella +Aline +Arlene +Bennie +Bertie +Eileen +Floy +Hellen +Lora +Nell +Novella +Phyllis +Theresa +Versie +Clarice +Corene +Delores +Earlene +Emily +Glenna +Harriet +Janet +Janice +Letha +Loretta +Lue +Madeline +Madge +Muriel +Ouida +Rosalie +Tommie +Veda +Vernell +Amy +Angie +Berniece +Christene +Claudine +Dixie +Lelia +Lucinda +Marcella +Polly +Regina +Rena +Reva +Sammie +Selma +Sibyl +Susan +Vada +Verda +Winifred +Aileen +Almeda +Alpha +Anita +Aretha +Augusta +Bette +Callie +Caroline +Charline +Delia +Dorotha +Dorris +Estell +Florene +Florida +Georgie +Glenda +Gussie +Idell +Jo +Lizzie +Lorean +Maurine +Melva +Miriam +Mollie +Ozella +Una +Alene +Amelia +Avis +Berneice +Blanch +Claudie +Dolores +Donnie +Elma +Elouise +Ether +Freeda +Freida +Golda +Hettie +Iola +Izola +Lavada +Leota +Leta +Lexie +Lilly +Lura +Mayme +Ona +Rita +Savannah +Treva +Vernie +Vesta +Wilda +Willene +Aletha +Annabelle +Anne +Arline +Billy +Cassie +Cecil +Donna +Dorothea +Eliza +Era +Eugenia +Hilda +Ione +Jeanetta +Joanna +John +Katheryn +Linda +Linnie +Margret +Marlene +Maybelle +Mona +Ressie +Rubie +Vergie +Viva +William +Winona +Zola +Zula +Adell +Allene +Argie +Audie +Audra +Clora +Colleen +Corinne +Cornelia +Crystal +Dean +Dimple +Earlee +Easter +Elwanda +Exie +Frieda +Gertha +Gladis +Ivory +Jackie +Julie +Kattie +Lona +Lorena +Lovie +Maple +Margery +Maud +Maudine +Mittie +Modean +Mozella +Myrtis +Nova +Olevia +Oneida +Onita +Orene +Reola +Rutha +Samella +Velda +Victoria +Agatha +Alla +Alva +Annette +Ardell +Arizona +Berta +Birtha +Blanchie +Bonita +Carol +Cathrine +Celia +Ceola +Chloie +Claire +Clemmie +Constance +Cynthia +Deborah +Dona +Edwina +Edythe +Elaine +Elvie +Enid +Gearldine +Genell +Gustava +Helene +Henry +Hildred +Ilene +Imo +Iona +Irine +Janelle +Jeraldine +Jerlene +Joann +Judy +Justine +Kathrine +Katy +Lavern +Leana +Leora +Leslie +Magnolia +Maria +Maude +Molly +Montine +Odell +Odessie +Olga +Ova +Pansy +Ray +Robert +Rosalee +Silvia +Velta +Verlie +Vertie +Vonda +Willodean +Wynona +Zenobia +Mary +Dorothy +Ruby +Helen +Mildred +Betty +Ruth +Juanita +Virginia +Margaret +Martha +Frances +Louise +Hazel +Willie +Thelma +Anna +Lois +Annie +Gladys +Marie +Pauline +Evelyn +Wanda +Doris +Edna +Emma +Geneva +Jessie +Elizabeth +Irene +Opal +Wilma +Lillie +Alice +Lucille +Edith +Clara +Mattie +Bonnie +Geraldine +Maxine +Myrtle +Velma +Beatrice +Vera +Ethel +Bernice +Imogene +Lorene +Lillian +Norma +Sarah +Bertha +Rosie +Alma +Margie +Elsie +Bessie +Christine +Marjorie +Ida +Eva +Minnie +Georgia +Catherine +Katherine +Ella +Billie +Nellie +Erma +Vivian +Lola +Lula +Pearl +Laura +Joyce +Mae +Nancy +Viola +Grace +Jean +Eunice +Johnnie +Mable +Lena +Dora +Reba +Rose +Beulah +Carrie +Julia +Mamie +Violet +Lucy +Fannie +Florence +Kathryn +Ellen +Eula +Jewell +Josephine +Esther +Inez +Jewel +Mabel +Melba +Dorthy +Barbara +Flora +Ola +Ollie +Agnes +Essie +Verna +Naomi +Ora +Hattie +Nina +Jane +Gracie +Lela +Leona +Maggie +Ruthie +Cora +June +Rachel +Alberta +Audrey +Kathleen +Daisy +Leola +Addie +Elnora +Gertrude +Nora +Stella +Peggy +Virgie +Effie +Patricia +Dortha +Iva +Marion +Nadine +Winnie +Faye +Irma +Roberta +Sylvia +Bettye +Lottie +Nettie +Shirley +Ann +Carolyn +Katie +Rosa +Ernestine +Jacqueline +Laverne +Lee +Susie +Flossie +Jimmie +Sadie +Ada +Charlene +Etta +Odessa +Frankie +Ina +Lenora +Alta +Blanche +Della +Josie +Rosetta +Charlotte +Corine +Earnestine +Sybil +Cleo +Letha +Patsy +Aline +Allie +Francis +Freda +Gloria +Goldie +Marguerite +Merle +Ophelia +Hilda +Lila +Syble +Fern +Maudie +May +Rosemary +Zelma +Berniece +Claudia +Eddie +Ila +Queen +Rena +Sue +Bobbie +Estelle +Fay +Janie +Jo +Marian +Rebecca +Bettie +Glenda +Jeanne +Lucile +Pearlie +Sara +Amy +Emogene +Floy +Henrietta +Hester +Jeanette +Jennie +Joy +Lessie +Luella +Oma +Retha +Sallie +Dollie +Eleanor +Emily +Loretta +Oleta +Willa +Adell +Connie +Donna +Ester +Florene +Jackie +James +Linnie +Nannie +Nola +Alene +Birdie +Blanch +Charline +Dessie +Dixie +Georgie +Hellen +Johnie +Lizzie +Lorraine +Lou +Muriel +Phyllis +Roxie +Sally +Veda +Alpha +Anne +Cassie +Earline +Eloise +Elva +Genevieve +Ima +Marcella +Marilyn +Mavis +Novella +Robbie +Tommie +Bennie +Constance +Eliza +Elma +Gertie +Gussie +Iris +Jaunita +Joan +Madge +Nell +Neva +Theresa +Tressie +Vida +Aileen +Allene +Clarice +Dorris +Estella +Freddie +George +Gwendolyn +Janice +Polly +Rita +Rubye +Theda +Bertie +Callie +Dolly +Eugenia +Euna +Freeda +Hazle +Leota +Linda +Lorine +Madeline +Miriam +Reola +Victoria +Altha +Anita +Arlene +Dorotha +Elwanda +Florine +Janet +John +Lavern +Margarette +Mollie +Ocie +Olga +Olive +Regina +Reva +Sibyl +Vernice +Artie +Charlie +Claudine +Delma +Delores +Donnie +Glenna +Harriet +Iona +Jettie +Judy +Leatrice +Lona +Loraine +Lue +Lydia +Magnolia +Millie +Mona +Nova +Ozell +Pansy +Verla +Vernell +William +Annette +Audie +Avis +Bette +Carmen +Caroline +Cecil +Charles +Christene +Dovie +Easter +Elaine +Elouise +Iola +Jannie +Jonnie +Leta +Lorena +Margarett +Maude +Maurine +Melva +Myra +Myrtis +Nita +Odean +Ona +Selma +Susan +Treva +Vergie +Wilda +Willadean +Winona +Alva +Amanda +Audra +Ava +Berta +Celia +Colleen +Corene +Corinne +Deborah +Deloris +Dolores +Exie +Florida +Gearldine +Girtha +Idell +Idella +Isabell +Joe +Katheryn +Lavada +Lily +Loyce +Margery +Maria +Maud +Olivia +Ouida +Pearline +Priscilla +Reta +Verda +Verline +Versie +Vesta +Winifred +Zella +Alline +Berneice +Billy +Cathryn +Christeen +Christina +Cynthia +Delpha +Delphia +Earlene +Earnesteen +Eathel +Esta +Ever +Gene +Harriett +Janette +Jetta +Leatha +Lelia +Leora +Lexie +Lora +Luceal +Margret +Maxie +Mayme +Mittie +Molly +Mozelle +Neoma +Nona +Parlee +Rubie +Rutha +Sammie +Savannah +Una +Velva +Vena +Verdia +Verma +Willadeen +Willene +Zenobia +Zettie +Adeline +Allean +Almeda +Amelia +Angie +Annabelle +Argie +Beaulah +Beverly +Bobby +Bulah +Christen +Cleola +Clyde +Cornelia +Corrine +Daphne +Eldora +Elois +Emmer +Eris +Eutha +Flordia +Frieda +Gertha +Gretchen +Hallie +Hannah +Harriette +Ilene +Ira +Isabelle +Ivy +Izola +Jerry +Johnny +Josiephine +Judith +Kathrine +Kitty +Leah +Lera +Lettie +Lorean +Lubertha +Lura +Mammie +Maurice +Naoma +Nelda +Nella +Nelle +Neomia +Odell +Olene +Oneida +Ossie +Ova +Ray +Roma +Rosella +Roy +Sam +Theressa +Twyla +Vada +Velta +Verlie +Veta +Vina +Vinita +Viva +Willia +Zelda +Zora +Zula +Mary +Dorothy +Betty +Helen +Ruby +Mildred +Ruth +Virginia +Margaret +Martha +Juanita +Willie +Frances +Annie +Hazel +Wanda +Gladys +Doris +Pauline +Evelyn +Thelma +Lois +Louise +Marie +Anna +Wilma +Mattie +Emma +Bernice +Edna +Edith +Jessie +Ethel +Geneva +Lucille +Maxine +Elizabeth +Alice +Margie +Irene +Opal +Lillie +Beatrice +Norma +Billie +Alma +Velma +Rosie +Georgia +Sarah +Bertha +Imogene +Lorene +Marjorie +Bonnie +Ida +Vera +Minnie +Bessie +Clara +Eva +Joyce +Lillian +Geraldine +Elsie +Catherine +Jean +Katherine +Laura +Myrtle +Jewel +Mae +Ella +Lola +Nellie +Vivian +Johnnie +Grace +Mable +Inez +Florence +Viola +Pearl +Reba +Carrie +Kathryn +Lula +Esther +Ollie +Verna +Jewell +Erma +Hattie +Lena +Melba +Patricia +Fannie +Josephine +Christine +Daisy +Flora +Julia +Lucy +Mabel +Nina +Shirley +Beulah +Dora +Ernestine +Eula +Nancy +Agnes +Ann +Cora +Essie +Rachel +Ellen +Barbara +Eunice +Rose +Maggie +Bobbie +Mamie +Nora +Faye +Gloria +Gracie +Leona +Freda +Katie +Lela +Ruthie +Ada +Carolyn +Frankie +Ora +Sylvia +Violet +Audrey +Ola +Stella +Irma +Peggy +Jane +Rosa +Dorthy +Earnestine +Ila +Iva +Leola +Lottie +Nadine +Susie +Virgie +Zelma +Bettye +Patsy +Jimmie +Marion +Willa +Francis +Lee +Charlene +Effie +June +Alberta +Callie +Elnora +Kathleen +Addie +Nettie +Odessa +Flossie +Freddie +Gertrude +Lenora +Naomi +Bettie +Eddie +Fern +Ina +Muriel +Sybil +Eloise +Floy +Laverne +Ophelia +Queen +Robbie +Roberta +Syble +Cleo +Dollie +Jacqueline +Jo +Etta +Jennie +Sadie +Sue +Winnie +Alta +Blanche +Dortha +Emogene +Janie +Retha +Hilda +Ima +Letha +Marguerite +Nell +Allie +Anne +Bennie +Dovie +Johnie +Loretta +May +Della +Dixie +Estelle +Fay +Glenna +Joan +Joy +Lila +Marcella +Rebecca +Rubie +Vada +Victoria +Aline +Emily +Glenda +Iris +Janice +Lessie +Lizzie +Lou +Lydia +Rosetta +Eleanor +Elva +Florene +Jaunita +Lorraine +Merle +Pearlie +Polly +Sallie +Selma +Veda +Artie +Claudine +Estella +Jeanette +Rena +Rosemary +Theresa +Tommie +Alene +Amy +Arlene +Dessie +Jackie +Lucile +Luella +Pearline +Sara +Anita +Bette +Charlotte +Connie +Goldie +Henrietta +Linnie +Marian +Mavis +Nona +Oma +Roxie +Rubye +Viva +Allene +Beverly +Charlie +Christene +Claudia +Earlene +Earline +Georgie +Gertie +Gussie +Gwendolyn +Idella +Josie +Lora +Lorine +Madge +Vida +Augusta +Berniece +Birdie +Cecil +Clarice +Corine +Delma +Donna +Dorris +Edwina +Eileen +Elaine +Ester +Jeanne +Loraine +Millie +Neva +Pansy +Patty +Reva +Tressie +Vernice +Wilda +Annette +Bertie +Bobby +Eliza +Eugenia +Genevieve +Iola +James +Jerry +Lue +Mozell +Oleta +Olivia +Rita +Abbie +Alline +Charline +Delois +Delores +Delphia +Era +Florida +Florine +Irine +Leota +Magnolia +Ocie +Olive +Ona +Rosalie +Theda +Vernell +Versie +Yvonne +Billy +Cassie +Constance +Deloris +Dolly +Freeda +Gene +Hellen +Hester +Janet +Jannie +Joe +Lavern +Mandy +Margarette +Marilyn +Maudie +Maurine +Odie +Ouida +Phyllis +Susan +Vergie +Adell +Altha +Amanda +Annabelle +Aretha +Billye +Birtha +Bobbye +Bonita +Colleen +Corene +Cornelia +Dolores +Elma +Jettie +John +Lilly +Melva +Myra +Myrtis +Nola +Nova +Novella +Priscilla +Robert +Rutha +Sally +Sibyl +Tennie +Velda +Verda +Winona +Zenobia +Zora +Aileen +Ardella +Audie +Ava +Avis +Bulah +Cecilia +Dorotha +Euna +Freida +Gearldine +Jonnie +Lavada +Leatha +Lelia +Louisa +Lovie +Luvina +Margret +Maudine +Mayme +Nannie +Nelda +Odell +Rhoda +Rosia +Theo +Tiny +Una +Venita +Vesta +Zella +Beth +Chloe +Christeen +Christina +Corinne +Corrine +Dell +Dorothea +Easter +Elwanda +Emmer +Iona +Joann +Judy +Leatrice +Linda +Lona +Lura +Madeline +Marcelle +Margarett +Marvine +Maud +Maude +Modean +Nita +Oletha +Omega +Ova +Paula +Phoebe +Rosalee +Sammie +Tessie +Valeria +Willene +Zelda +Zola +Alpha +Carl +Carmen +Cathryn +Celia +Claris +Claudie +Cleora +Cona +Crystal +Cynthia +Dale +Dean +Delia +Donnie +Earlie +Edra +Elmer +Elmira +Elois +Estell +Etha +Hettie +Imagene +Ivie +Jacquelyn +Jamie +Johnny +Katheryn +Lawanda +Leda +Lennie +Leta +Lettie +Lonnie +Lorena +Luberdie +Maple +Marietta +Modena +Mollie +Neoma +Odessie +Olga +Osie +Pearlean +Pecolia +Regina +Reola +Reta +Rosella +Teresa +Tommy +Treva +Veola +Vessie +Vina +Virgia +Willine +Winifred +Mary +Dorothy +Betty +Helen +Ruby +Mildred +Wanda +Virginia +Ruth +Martha +Juanita +Willie +Margaret +Thelma +Hazel +Frances +Doris +Annie +Louise +Lois +Evelyn +Marie +Anna +Lucille +Emma +Edna +Pauline +Alice +Gladys +Bonnie +Elizabeth +Wilma +Billie +Jessie +Opal +Geneva +Rosie +Ethel +Lillie +Bertha +Maxine +Mattie +Beatrice +Norma +Edith +Alma +Georgia +Bernice +Bessie +Geraldine +Margie +Clara +Imogene +Velma +Minnie +Myrtle +Lillian +Vera +Irene +Marjorie +Lorene +Catherine +Sarah +Jean +Nellie +Lula +Eva +Barbara +Ida +Joyce +Elsie +Erma +Lola +Christine +Peggy +Katherine +Melba +Mae +Nancy +Florence +Johnnie +Bobbie +Hattie +Ora +Reba +Ella +Inez +Jewel +Carrie +Vivian +Essie +Eula +Rose +Julia +Faye +Josephine +Laura +Lena +Lucy +Patricia +Beulah +Cora +Mable +Maggie +Ollie +Gloria +Grace +Verna +Viola +Dorthy +Ellen +Kathryn +Mamie +Ruthie +Sylvia +Daisy +Earnestine +Ernestine +Nina +Alberta +Charlene +Naomi +Esther +Fannie +Jimmie +Pearl +June +Leona +Ann +Gracie +Eunice +Lela +Ola +Irma +Nettie +Agnes +Bettye +Iva +Laverne +Carolyn +Mabel +Marion +Violet +Audrey +Francis +Sue +Gertrude +Jewell +Nora +Patsy +Rosa +Della +Eddie +Freda +Jane +Leola +Marguerite +Shirley +Ina +Katie +Syble +Alta +Estella +Flora +Frankie +Susie +Virgie +Addie +Dora +Stella +Ada +Elnora +Floy +Nadine +Rachel +Bettie +Eloise +Etta +Jo +Kathleen +Blanche +Flossie +Iris +Lenora +Loretta +Zelma +Bennie +Dollie +Joan +Pearlie +Roberta +Claudia +Dortha +Earlene +Goldie +Joy +Rita +Anne +Ester +Jacqueline +Janice +Janie +Lottie +Oma +Robbie +Sadie +Sara +Willa +Cleo +May +Phyllis +Rebecca +Sybil +Corine +Effie +Glenda +Lee +Ophelia +Arlene +Earline +Elva +Emily +Emogene +Estelle +Freddie +Lila +Marian +Rosemary +Sallie +Aline +Fay +Ila +Josie +Letha +Nola +Odessa +Rosetta +Allie +Ava +Jaunita +Jeanne +Jennie +Lizzie +Lou +Queen +Birdie +Charlie +Clarice +Gwendolyn +Ima +Lorine +Lucile +Maudie +Merle +Muriel +Nell +Neva +Bertie +Callie +Dessie +Dixie +Fern +Gertie +Retha +Rubye +Veda +Alene +Charline +Elma +Gearldine +Glenna +Hellen +Hilda +Madge +Rena +Winnie +Beverly +Colleen +Jackie +James +Jannie +Joe +Louella +Oleta +Roxie +Tommie +Winona +Bette +Charlotte +Donna +Henrietta +Lora +Marilyn +Millie +Mona +Olivia +Polly +Theresa +Zella +Billy +Billye +Connie +Eleanor +Eugenia +Lessie +Loraine +Mavis +Mollie +Olive +Pansy +Rosalie +Sally +Veola +Willene +Allene +Anita +Artie +Berniece +Christene +Dolly +Dolores +Dovie +Genevieve +Iola +Lorraine +Lue +Luella +Lydia +Nona +Pearline +Reva +Theda +Vada +Vernell +Vesta +Aileen +Angie +Avis +Bobby +Delois +Elaine +Euna +Florine +Freeda +Hettie +Judy +Lelia +Madeline +Margret +Maude +Maurine +Mittie +Myra +Octavia +Ozell +Pat +Paula +Robert +Tressie +Vergie +Alpha +Claudine +Constance +Easter +Florene +Gene +Georgie +Ilene +Jeanette +Jeffie +Jerry +Johnie +Lavern +Lennie +Lily +Margarette +Nannie +Nila +Nova +Priscilla +Sammie +Savannah +Tennie +Verda +Vernice +Willodean +Zenobia +Alva +Amy +Audie +Carol +Cassie +Delores +Dorotha +Elwanda +Eulah +Frieda +Gussie +Hope +Idella +Iona +Jamie +John +Lavon +Lettie +Lilly +Lona +Lorean +Luvenia +Marietta +Mazie +Nita +Ocie +Oneta +Ozella +Patty +Ruthel +Selma +Susan +Velda +Vena +Verla +Versie +Victoria +Wilda +Winifred +Zelda +Alline +Almeda +Altha +Amanda +Atha +Augusta +Bethel +Birtha +Carmen +Darlene +Donnie +Dorothea +Eileen +Elouise +Emmer +Evie +Hazle +Hester +Hortense +Idell +Irine +Ivory +Jettie +Kate +Kathrine +Lawanda +Leah +Leatrice +Leora +Leta +Linnie +Loise +Lulu +Lyda +Magnolia +Marcella +Margrett +Maria +Melva +Miriam +Modean +Myrtie +Myrtis +Odell +Relda +Reola +Sibyl +Treva +Vina +Yvonne +Zola +Abbie +Adell +Allean +Annabelle +Aretha +Audra +Augustine +Berta +Bobbye +Bonita +Claudie +Cleora +Cleta +Cleva +Deborah +Delma +Dorris +Edwina +Era +Floye +George +Goldia +Hallie +Ira +Ivy +Jacquelyn +Joann +Joanne +Katharine +Katheryne +Laveda +Leatha +Linda +Louisa +Macie +Mahala +Mandy +Marine +Marzell +Maud +Melvina +Molly +Nada +Nelda +Neoma +Olevia +Olga +Orpha +Rema +Rosella +Tessie +Vanita +Venita +Vernie +Vida +Vonda +Zula +Mary +Betty +Dorothy +Helen +Ruby +Mildred +Virginia +Wanda +Ruth +Willie +Juanita +Margaret +Martha +Doris +Annie +Frances +Hazel +Lois +Wilma +Louise +Thelma +Billie +Anna +Jessie +Emma +Lillie +Bernice +Edna +Evelyn +Pauline +Marie +Clara +Alice +Elizabeth +Imogene +Rosie +Bonnie +Norma +Edith +Gladys +Ethel +Alma +Velma +Jean +Maxine +Geneva +Mattie +Bessie +Ella +Margie +Irene +Minnie +Geraldine +Lucille +Opal +Georgia +Ida +Joyce +Lillian +Bertha +Christine +Bobbie +Sarah +Eva +Marjorie +Vivian +Elsie +Barbara +Mae +Myrtle +Catherine +Nellie +Lena +Vera +Beatrice +Ruthie +Lorene +Dora +Laura +Erma +Peggy +Johnnie +Kathryn +Nancy +Dorthy +Florence +Patsy +Eula +Faye +Gloria +Inez +Katherine +Lola +Lucy +Melba +Lula +Naomi +Jewel +Rose +Essie +Ollie +Mable +Pearl +Reba +Hattie +Eunice +Fannie +Charlene +Cora +Viola +Carrie +Nina +Ora +Bettye +Flora +Josephine +Agnes +Ellen +Maggie +Patricia +Audrey +Jimmie +Violet +Earnestine +Joy +Ann +Ernestine +Gertrude +Jewell +Mabel +Julia +Mamie +Verna +Gracie +June +Rosa +Sylvia +Virgie +Addie +Alberta +Daisy +Esther +Grace +Leona +Ola +Nora +Marion +Robbie +Roberta +Stella +Susie +Alta +Eloise +Ada +Jane +Lottie +Shirley +Nadine +Bettie +Della +Katie +Nettie +Beulah +Blanche +Dortha +Elnora +Jo +Marilyn +Rosemary +Etta +Fay +Flossie +Frankie +Freddie +Iva +Carolyn +Charline +Ina +Irma +Marian +Queen +Sybil +Cleo +Emogene +Estella +Lee +Eddie +Francis +Joan +Kathleen +Laverne +Lorine +Odessa +Sue +Lenora +Willa +Charlotte +Earline +Emily +May +Rachel +Rebecca +Rosetta +Claudia +Effie +Jackie +Leola +Lorraine +Freda +Hilda +Ima +Pearlie +Sadie +Tommie +Bette +Beverly +Glenda +Gwendolyn +Jeanette +Jennie +Lela +Ophelia +Zelma +Ila +Letha +Lou +Lucile +Maudie +Phyllis +Selma +Arlene +Floy +Genevieve +Glenna +Iris +Marguerite +Nell +Wilda +Winnie +Donna +Henrietta +Loretta +Mavis +Pearline +Rena +Retha +Rosalie +Syble +Bennie +Dolores +Janie +Lydia +Rita +Sally +Sara +Tressie +Dollie +Eleanor +Fern +John +Oma +Veda +Aline +Amy +Birdie +Christene +Corine +Dorotha +Eliza +Elma +Ester +Jaunita +Lila +Lizzie +Rubye +Sallie +Willene +Bobby +Bobbye +Elva +Jacqueline +Jeanne +Joe +Josie +Luella +Marcella +Neva +Pansy +Vida +Anita +Ava +Berniece +Billy +Callie +Charles +Charlie +Clarice +Connie +Delois +Dessie +Dovie +Estelle +Florine +Freeda +Goldie +Jannie +Johnie +Linnie +Lora +Muriel +Myra +Oleta +Olivia +Polly +Roxie +Sammie +Alene +Allene +Alva +Billye +Carmen +Gearldine +Ivory +Janet +Janice +Leta +Linda +Maria +Mona +Nelda +Vernice +Vesta +Allie +Avis +Caroline +Claudine +Clemmie +Colleen +Cornelia +Darlene +Delma +Dixie +Earlene +Elaine +Gene +Georgie +Iola +Kattie +Lessie +Lovie +Millie +Nannie +Nola +Ona +Patty +Reola +Velda +Willia +Blanch +Delphia +Dolly +Dorris +Eugenia +Florene +Hellen +Idella +Lavern +Lilly +Lue +Margret +Mollie +Myrtis +Neoma +Nita +Robert +Susan +Verda +Vernell +Anne +Annette +Annis +Augusta +Berneice +Bonita +Christeen +Elouise +Elwanda +Era +Floella +Gussie +Hettie +Isabell +Jerry +Jettie +Joann +Joanne +Judy +Junita +Kay +Leslie +Maud +Maudine +Mazie +Melva +Merle +Mina +Miriam +Naoma +Ocie +Olive +Oneta +Ouida +Priscilla +Rowena +Rubie +Sibyl +Theresa +Vergie +Vernie +Viva +Winifred +Winona +Altha +Artie +Bertie +Carol +Charlsie +Corene +Daphne +Deloris +Donnie +Dottie +Easter +Gertie +Hope +Inell +Iona +James +Jonnie +Lavada +Lawanda +Leatha +Leota +Lily +Lorena +Madge +Madie +Magnolia +Maude +Maurine +Mayola +Molly +Mozell +Nona +Norene +Novella +Odell +Odie +Olena +Ova +Pinkie +Regina +Savannah +Victoria +Zelda +Zenobia +Zora +Agatha +Aileen +Alpha +Berta +Bethel +Cassie +Cecil +Claire +Constance +Cordelia +Corinne +Corrine +Edwina +Elisabeth +Emmer +Estell +Freida +Gearldean +Golda +Harriett +Hester +Izola +Jacquelyn +Junior +Katheryn +Loraine +Louisa +Ludie +Lura +Luvenia +Lyda +Marietta +Mozella +Mozelle +Nova +Odessie +Olga +Orpha +Othella +Ozell +Ozella +Pat +Pearlean +Reva +Rheba +Rutha +Tennie +Velta +Veola +Verdell +Verdia +Vernia +Vernon +Wynona +Mary +Betty +Dorothy +Helen +Ruby +Mildred +Virginia +Martha +Wanda +Ruth +Billie +Juanita +Margaret +Willie +Doris +Thelma +Frances +Anna +Lois +Hazel +Wilma +Alice +Annie +Emma +Louise +Norma +Marie +Evelyn +Edna +Bobbie +Bonnie +Lillie +Clara +Geneva +Maxine +Gladys +Bernice +Barbara +Ethel +Pauline +Elizabeth +Jessie +Vera +Georgia +Lucille +Mattie +Velma +Edith +Jean +Joyce +Geraldine +Rosie +Margie +Ida +Eva +Imogene +Patricia +Elsie +Peggy +Sarah +Ella +Johnnie +Minnie +Bertha +Bessie +Irene +Opal +Alma +Erma +Lula +Marjorie +Lorene +Lillian +Mae +Melba +Nellie +Gloria +Katherine +Beatrice +Bettye +Myrtle +Catherine +Patsy +Vivian +Ora +Florence +Nancy +Kathryn +Christine +Dorthy +Lola +Lucy +Rose +Daisy +Laura +Ernestine +Ollie +Reba +Julia +Jewel +Lena +Eula +Mable +Bettie +Faye +Audrey +Cora +Essie +Fannie +Nina +Ola +Shirley +Eunice +Pearl +Sylvia +Verna +Iva +Jane +Jewell +Jimmie +Josephine +Ruthie +Beulah +Hattie +Jo +Nora +Rosa +Ann +Kathleen +Mabel +Sue +Virgie +Agnes +Charlene +Flora +Gracie +Katie +Roberta +Viola +Esther +Frankie +Joy +Maggie +Marion +Naomi +Stella +Gertrude +Grace +Inez +Alberta +Dora +Freda +Robbie +Willa +Carrie +Ellen +Francis +Rachel +Earnestine +Letha +Violet +Addie +Carolyn +Ina +Dolores +Eloise +June +Marilyn +Winnie +Alta +Irma +Leola +Nettie +Zelma +Etta +Fay +Ila +Jennie +Laverne +Nadine +Cleo +Flossie +Janice +Joan +Leona +Loretta +Mamie +Marian +Ada +Goldie +Freddie +Jacqueline +Lee +Lenora +Sybil +Blanche +Earlene +Eddie +Jeanne +Lottie +Nelda +Rosemary +Charline +Dollie +Earline +Janie +Jeanette +Marguerite +Pearlie +Rebecca +Allie +Anita +Effie +Floy +Jaunita +Lela +Lessie +Myra +Odessa +Sally +Tommie +Della +Estella +Fern +Ima +Josie +Leta +Phyllis +Sadie +Susie +Syble +Bennie +Glenna +Henrietta +Hilda +Lora +Lou +Maudie +May +Ramona +Veda +Berniece +Bertie +Elma +Emogene +Jackie +Marcella +Neoma +Retha +Aline +Anne +Bobby +Claudia +Dorris +Elva +Emily +Glenda +Johnie +Lucile +Nannie +Nell +Nola +Rosetta +Clarice +Corine +Dixie +Dorotha +Dortha +Elnora +Ester +Genevieve +Gwendolyn +Lizzie +Lorraine +Millie +Muriel +Neva +Pansy +Rita +Versie +Victoria +Arlene +Delores +Easter +Eleanor +Florine +Polly +Queen +Sammie +Tressie +Beverly +Carol +Christene +Dolly +Elaine +Florene +Iona +Joann +Linda +Sallie +Velda +Billy +Charlotte +Colleen +Connie +Donna +Dovie +Gearldine +Georgie +Gussie +Hester +Iris +James +Merle +Mollie +Nona +Robert +Roxie +Rubie +Vada +Aileen +Amy +Annette +Birdie +Delma +Deloris +Emmer +Freeda +Imo +Iola +Joe +John +Lavern +Lila +Lorine +Marcelle +Miriam +Mona +Oleta +Oma +Ouida +Patty +Pearline +Verda +Wilda +Willodean +Audra +Ava +Bette +Charlie +Claudie +Claudine +Cleta +Constance +Delois +Donnie +Doretha +Elouise +George +Margarett +Maria +Mittie +Ophelia +Reola +Susan +Theresa +Una +Vernice +Willene +Winifred +Zella +Alene +Allene +Amelia +Billye +Charles +Chloe +Dean +Dessie +Euna +Hellen +Lawanda +Luella +Madge +Marceline +Margarette +Margret +Maurine +Mavis +Melva +Monnie +Olive +Olivia +Ona +Paula +Reta +Rubye +Velta +Verla +Vernell +Winona +Bethel +Blanchie +Christina +Cleola +Eliza +Elvira +Estelle +Eugenia +Ever +Freida +Gene +Idella +Ivory +Jerry +Johnny +Jolene +Jossie +Leatha +Leota +Molly +Noma +Nova +Pearlene +Rena +Sara +Selma +Verlene +Yvonne +Altha +Amanda +Aretha +Arlee +Artie +Avis +Bernece +Bobbye +Bonita +Cathrine +Cathryn +Charlean +Cornelia +Delilah +Dimple +Dorothea +Eileen +Era +Esta +Fairy +Floella +Florida +Fredia +Gertha +Gertie +Harriet +Hazle +Ilene +Imogean +Ira +Janis +Jettie +Joanne +Jonnie +Lelia +Lennie +Lilly +Louella +Lura +Magnolia +Mammie +Margery +Maurice +Mazie +Mickey +Natalie +Nita +Norene +Ozell +Ozella +Regina +Ressie +Reva +Rosalie +Savannah +Sibyl +Vida +Viva +William +Zola +Mary +Betty +Dorothy +Helen +Ruby +Wanda +Virginia +Mildred +Martha +Doris +Margaret +Ruth +Billie +Frances +Willie +Wilma +Juanita +Louise +Evelyn +Anna +Annie +Emma +Norma +Thelma +Lois +Bonnie +Elizabeth +Hazel +Barbara +Pauline +Bobbie +Ethel +Geneva +Alice +Lucille +Patsy +Lillie +Maxine +Rosie +Gladys +Clara +Marie +Bernice +Margie +Edna +Jessie +Geraldine +Mae +Joyce +Mattie +Velma +Edith +Eva +Georgia +Peggy +Minnie +Ella +Sarah +Jean +Bertha +Beatrice +Opal +Ida +Imogene +Patricia +Johnnie +Mable +Myrtle +Bessie +Irene +Marjorie +Nancy +Vivian +Rose +Catherine +Eula +Laura +Lillian +Reba +Ruthie +Alma +Earnestine +Elsie +Nellie +Erma +Lula +Dorthy +Vera +Lorene +Bettye +Carolyn +Ollie +Essie +Faye +Florence +Christine +Cora +Agnes +Ernestine +Josephine +Ann +Charlene +Hattie +Ora +Dora +Jewel +Jimmie +Julia +Katherine +Naomi +Joan +Kathryn +Lena +Carrie +Lola +Melba +Shirley +Freda +Gloria +Jo +Nina +Daisy +Inez +Iva +Joy +Ola +Jewell +Earline +Flora +Grace +June +Audrey +Esther +Eunice +Marion +Pearl +Alberta +Ada +Eddie +Frankie +Ina +Lucy +Mamie +Fannie +Della +Ellen +Verna +Viola +Violet +Beulah +Kathleen +Flossie +Jane +Mabel +Stella +Dolores +Dortha +Lela +Nora +Eloise +Loretta +Lottie +Sylvia +Freddie +Maggie +Marilyn +Nettie +Phyllis +Susie +Virgie +Willa +Addie +Bettie +Effie +Etta +Gertrude +Gracie +Ila +Roberta +Irma +Laverne +Leola +Bobby +Jackie +Leona +Rosa +Alta +Earlene +Ima +Jennie +Katie +Lou +Marian +May +Nadine +Nelda +Rebecca +Rosemary +Sue +Cleo +Elnora +Rachel +Ramona +Tommie +Clarice +Dollie +Donna +Francis +Pearlie +Pearline +Bennie +Estella +Mavis +Muriel +Oma +Robbie +Sally +Winnie +Anita +Fern +Jeanette +Josie +Rita +Vada +Lee +Lucile +Sybil +Aline +Callie +Charlie +Charlotte +Dorotha +Eleanor +Janie +Joann +Joe +Lorine +Rosetta +Sadie +Willene +Zelma +Beverly +Connie +Delores +Emogene +Florine +Johnie +Nell +Queen +Sara +Billy +Bobbye +Emily +Fay +Freeda +Jacqueline +Jaunita +Madge +Melva +Neva +Syble +Allie +Altha +Arlene +Ava +Bertie +Bette +Birdie +Blanche +Dixie +Ester +Glenda +Goldie +Iris +Janice +Lenora +Letha +Lora +Theresa +Veda +Anne +Christene +Hilda +Lavern +Lessie +Lila +Lizzie +Marguerite +Nola +Olivia +Pearlene +Polly +Rutha +Velda +Alene +Allene +Berniece +Billye +Charline +Dorris +Florene +Floy +Lydia +Myra +Ophelia +Theda +Vernell +Vernice +Wilda +Carol +Dessie +Dovie +Estelle +Freida +Genevieve +Georgie +Gertie +Glenna +Gussie +Gwendolyn +Henrietta +Hester +Iola +Jeannine +Katheryn +Lavada +Linda +Lue +Luella +Maudie +Nannie +Rosalie +Roxie +Amy +Avis +Caroline +Celestine +Claudine +Colleen +Delois +Deloris +Eileen +Gearldine +Hettie +James +Janet +Jerry +Leta +Lorraine +Molly +Mona +Myrtis +Odell +Odessa +Oleta +Ona +Pat +Patty +Rena +Retha +Rubie +Sammie +Selma +Versie +Victoria +Willodean +Adell +Artie +Birtha +Carlene +Celia +Charles +Corene +Corine +Cozetta +Donnie +Elaine +Elouise +Elva +Golda +Hellen +Isabelle +Jeanne +Joanne +Jonnie +Julie +Leatrice +Marceline +Modean +Neoma +Nita +Nova +Pansy +Paula +Sallie +Tessie +Treva +Verda +Verdie +Vida +Zella +Aileen +Alpha +Annette +Audra +Augusta +Blanch +Clora +Constance +Dottie +Earl +Eugenia +Gertha +Iona +Kitty +Lilly +Louella +Louvenia +Marcella +Marcie +Margarett +Margarette +Mittie +Nona +Olga +Olive +Priscilla +Reta +Robert +Rosalee +Rubye +Sibyl +Tressie +William +Yvonne +Zenobia +Zettie +Zora +Audie +Betsy +Birdia +Carmen +Clementine +Crystal +Darlene +Delma +Dona +Earlean +Eliza +Emmer +Era +Euna +Eveline +Florida +Harriet +Jacquelyn +Jamie +Jeannie +Jettie +John +Judy +Leah +Leatha +Lennie +Leota +Lettie +Lorena +Lucinda +Madeline +Madie +Magdalene +Maple +Marcelle +Maude +Maurice +Maxie +Merle +Millie +Mollie +Nadean +Norvell +Odessia +Orene +Ouida +Regina +Roma +Savannah +Susan +Teresa +Tina +Tommye +Vergie +Verla +Vessie +Willine +Winifred +Mary +Betty +Dorothy +Helen +Wanda +Martha +Ruby +Mildred +Virginia +Billie +Margaret +Juanita +Ruth +Doris +Frances +Wilma +Anna +Willie +Barbara +Evelyn +Lois +Emma +Norma +Joyce +Annie +Louise +Hazel +Elizabeth +Alice +Bonnie +Thelma +Bobbie +Patricia +Patsy +Bernice +Geneva +Lillie +Pauline +Velma +Edna +Peggy +Jessie +Lucille +Maxine +Clara +Rosie +Margie +Marie +Ethel +Jean +Gladys +Georgia +Bessie +Bertha +Marjorie +Mattie +Alma +Ella +Geraldine +Eva +Vera +Imogene +Rose +Erma +Nancy +Mae +Lillian +Ida +Irene +Minnie +Sarah +Edith +Myrtle +Jo +Opal +Shirley +Lula +Beatrice +Lorene +Carolyn +Catherine +Melba +Christine +Joan +Florence +Ann +Katherine +Lola +Verna +Elsie +Nellie +Faye +Kathryn +Gloria +Mable +Dorthy +Johnnie +Naomi +Charlene +Julia +Laura +Bettye +Fannie +Pearl +Vivian +Esther +Josephine +Lena +Nina +Cora +Ernestine +Eula +Ora +Marion +Essie +Jimmie +Maggie +Carrie +Ellen +Ina +Jane +Jewel +Ollie +Reba +Hattie +Sue +Daisy +Dora +Joy +Viola +Estella +Alberta +Marilyn +Ruthie +Dolores +Grace +Kathleen +Agnes +Inez +Audrey +Bettie +Flora +Frankie +Iva +Ada +Irma +Katie +Laverne +Lucy +Mamie +Earnestine +June +Pearlie +Donna +Freda +Gracie +Rachel +Beulah +Leona +Addie +Eddie +Gertrude +Lela +Roberta +Violet +Virgie +Fay +Jewell +Joann +Nettie +Willa +Delores +Dixie +Nora +Rosa +Alta +Eloise +Eunice +Lee +Leola +Mabel +Stella +Syble +Allie +Floy +Francis +Janie +Robbie +Charlotte +Della +Flossie +Loretta +Nadine +Ola +Phyllis +Effie +Etta +Zelma +Earline +Glenna +Jacqueline +Rosemary +Sylvia +Freddie +Ila +Janice +Anne +Carol +Lou +Rebecca +Sadie +Susie +Winnie +Bobby +Fern +Goldie +Ima +Jackie +Lila +Lottie +Odessa +Queen +Tommie +Ava +Blanche +Bobbye +Colleen +Jerry +Letha +Lorraine +Lucile +Rita +Rosetta +Theresa +Aline +Anita +Bette +Beverly +Dollie +Gwendolyn +Hilda +Jeanette +Lizzie +Nola +Pat +Patty +Sara +Charline +Cleo +Dorris +Eleanor +Elnora +Emily +Estelle +Florine +Glenda +Henrietta +Iris +Lavern +Lora +Marguerite +May +Retha +Sybil +Willene +Bennie +Billye +Christene +Claudia +George +Lenora +Marian +Maudie +Nell +Rena +Sallie +Sally +Vernell +Delois +Deloris +Dortha +Earlene +Gearldine +Georgie +Jeanne +Joe +Lavada +Lorine +Magnolia +Merle +Muriel +Myra +Neva +Ophelia +Allene +Claudine +Connie +Corine +Dessie +Jennie +Lawanda +Margret +Mona +Paula +Ramona +Vada +Winona +Yvonne +Amy +Berniece +Bertie +Birdie +Charles +Cornelia +Dovie +Elma +Freeda +Hester +Lilly +Madge +Olive +Oma +Pansy +Rosalie +Selma +Verda +Viva +Alene +Annette +Artie +Dorotha +Elva +Eugenia +Gertha +Gertie +Joanne +Josie +Lue +Luella +Melva +Mollie +Ocie +Oleta +Polly +Reva +Veda +Verla +Wilda +William +Zella +Aileen +Birtha +Carmen +Charlie +Clarice +Dolly +Ester +Florene +Genevieve +Henry +Janet +Jannie +Johnie +Lessie +Linda +Louella +Maude +Ozella +Reola +Sammie +Versie +Virgia +Zola +Billy +Callie +Cassie +Charlean +Elwanda +Estell +Hannah +Ivory +John +Judy +Leta +Linnie +Lydia +Molly +Nelda +Nova +Roxie +Theda +Veola +Winifred +Zelda +Abbie +Amanda +Audra +Augusta +Belva +Cecelia +Celestine +Clovis +Drucilla +Earlean +Eartha +Eliza +Freida +Frieda +Gussie +Harriett +Jacquelyn +James +Janette +Leota +Lily +Lorena +Lura +Madeline +Marceline +Maria +Miriam +Nada +Nila +Nita +Odie +Priscilla +Reatha +Reta +Rowena +Tessie +Treva +Verline +Vernice +Vida +Vina +Vonda +Willia +Willodean +Alva +Amelia +Aretha +Arletha +Audie +Audry +Avis +Blanch +Bonita +Bulah +Cleta +Cordelia +Deborah +Delma +Elouise +Emogene +Estalee +Florida +Genevie +Glena +Hellen +Imogean +Iona +Isabell +Ivy +Janis +Jaunita +Jonnie +Judith +Junita +Leila +Lelia +Lettie +Marcella +Marianne +Maurine +Mazie +Millie +Murlene +Nannie +Nona +Olivia +Pattie +Robert +Roy +Rubye +Teretha +Terry +Theola +Tressie +Velta +Vergie +Vernie +Vesta +Victoria +Mary +Betty +Dorothy +Wanda +Helen +Ruby +Martha +Virginia +Doris +Billie +Margaret +Mildred +Frances +Ruth +Patsy +Barbara +Joyce +Norma +Wilma +Anna +Juanita +Lois +Bonnie +Peggy +Annie +Willie +Louise +Bobbie +Alice +Hazel +Emma +Evelyn +Patricia +Thelma +Edna +Bernice +Clara +Velma +Geneva +Gladys +Pauline +Elizabeth +Maxine +Lillie +Geraldine +Georgia +Jean +Margie +Marie +Marjorie +Alma +Erma +Lula +Lucille +Jo +Opal +Jessie +Nancy +Eva +Rosie +Ethel +Bertha +Joan +Mattie +Ida +Vera +Carolyn +Imogene +Lillian +Bessie +Catherine +Edith +Minnie +Lorene +Sarah +Ruthie +Irene +Bettye +Christine +Rose +Ella +Johnnie +Mae +Joy +Shirley +Vivian +Gloria +Dorthy +June +Laura +Faye +Myrtle +Cora +Melba +Beatrice +Charlene +Ernestine +Sue +Ann +Mable +Pearl +Fannie +Kathryn +Lola +Lucy +Elsie +Josephine +Flora +Lena +Nina +Ellen +Hattie +Jimmie +Julia +Katherine +Kathleen +Nellie +Loretta +Eula +Marilyn +Ollie +Dora +Naomi +Reba +Laverne +Viola +Florence +Lela +Ora +Iva +Dolores +Frankie +Jane +Katie +Nadine +Ola +Bettie +Charlotte +Jewel +Robbie +Ada +Nora +Earnestine +Janie +Rita +Beulah +Donna +Freda +Jewell +Maggie +Rachel +Roberta +Verna +Anita +Carrie +Della +Stella +Agnes +Eloise +Eunice +Gertrude +Willa +Alberta +Dortha +Elnora +Essie +Joann +Leona +Mamie +Winnie +Irma +Nettie +Sadie +Sally +Violet +Fern +Ina +Inez +Leola +Pat +Phyllis +Rebecca +Rosa +Francis +Marion +Sara +Syble +Sylvia +Audrey +Bobby +Daisy +Flossie +Floy +Freddie +Grace +Gracie +Ila +Jennie +Lee +Linda +Christene +Dollie +Esther +Glenda +Lou +Rosemary +Virgie +Zelma +Addie +Alta +Lila +Patty +Delores +Earlene +Earline +Eddie +Goldie +Hilda +Susie +Cleo +Dorotha +Fay +Jackie +Lydia +Millie +Ramona +Beverly +Blanche +Bobbye +Charlie +Emily +Estella +Jacqueline +Lenora +Lizzie +Mabel +Ophelia +Veda +Aline +Bennie +Carol +Claudia +Effie +Etta +Freeda +Glenna +Janet +Janice +Jeanette +Joanne +Odessa +Oleta +Pearlie +Rosetta +Theresa +Yvonne +Anne +Deloris +Dessie +Dovie +Eleanor +Lorine +Lottie +Berniece +Bette +Billy +Callie +Emogene +Gwendolyn +Lessie +Marian +Nona +Queen +Tommie +Zenobia +Bertie +Billye +Birdie +Claudine +Dixie +Elva +Elwanda +Hellen +Ima +Jaunita +John +Letha +Lora +Nelda +Nell +Ouida +Sammie +Vida +Willene +Arlene +Ester +James +Margarett +Mavis +Melva +Mollie +Mona +Nita +Vernice +Versie +Alene +Allie +Amy +Bonita +Clarice +Cleta +Colleen +Corine +Dona +Estelle +George +Georgie +Jacquelyn +Jannie +Jerry +Johnie +Judy +Lawanda +Luella +Marguerite +Maudie +Neva +Pearline +Polly +Reva +Sallie +Sybil +Una +Vada +Velda +Victoria +Ava +Charline +Connie +Donnie +Earlean +Elois +Gussie +Henrietta +Iris +Joe +May +Molly +Nola +Ocie +Oma +Ona +Pansy +Paula +Selma +Treva +Zelda +Allene +Annette +Birtha +Carlene +Celia +Constance +Corene +Darlene +Delois +Elouise +Florida +Florine +Genevieve +Hester +Ira +Katheryn +Lorraine +Louella +Merle +Merlene +Muriel +Ova +Retha +Rosalie +Rowena +Viva +Artie +Augusta +Avis +Belva +Bernadine +Cassie +Celestine +Cornelia +Darline +Dolly +Dorris +Easter +Gail +Gearldine +Gertie +Jamie +Jeanne +Jeraldine +Judith +Junita +Lavern +Leta +Lily +Linnie +Lucile +Lue +Lura +Madge +Marcella +Maurine +Merline +Modean +Nannie +Neoma +Ozie +Peggie +Regina +Rena +Robert +Roxie +Teresa +Tressie +Verline +Winifred +Albertine +Alyce +Amanda +Annetta +Berneice +Carmen +Ceola +Charles +Delma +Deloise +Delphia +Diana +Dorthey +Elaine +Ever +Frieda +Gene +Ilene +Isabelle +Ivory +Ivy +Joanna +Josie +Kathrine +Katy +Laquita +Lavada +Lavon +Leota +Lilly +Loraine +Magnolia +Marcelle +Marcia +Margret +Marietta +Mittie +Murlene +Myra +Nadean +Odean +Olivia +Ozella +Pattie +Ray +Roy +Teretha +Venita +Verla +Verlene +Verlie +Vesta +Walsie +Mary +Betty +Dorothy +Wanda +Helen +Barbara +Martha +Ruby +Virginia +Margaret +Doris +Ruth +Mildred +Joyce +Patsy +Norma +Billie +Peggy +Frances +Juanita +Wilma +Bonnie +Bobbie +Anna +Louise +Willie +Patricia +Lois +Annie +Hazel +Emma +Evelyn +Alice +Thelma +Geneva +Elizabeth +Carolyn +Gladys +Mattie +Rosie +Velma +Clara +Lucille +Margie +Jo +Minnie +Bernice +Edna +Georgia +Pauline +Joan +Lillie +Ethel +Geraldine +Bessie +Ella +Maxine +Alma +Nancy +Shirley +Jessie +Jean +Marie +Ida +Bertha +Erma +Melba +Eva +Catherine +Vera +Elsie +Gloria +Irene +Sarah +Lillian +Rose +Christine +Laura +Mae +Nina +Ann +Bettye +Dorthy +Reba +Opal +Sue +Charlene +Lena +Nellie +Johnnie +Joy +Beatrice +Edith +Lula +Kathryn +Ruthie +Vivian +June +Marjorie +Ernestine +Fannie +Jane +Josephine +Loretta +Myrtle +Faye +Florence +Katherine +Lorene +Imogene +Ora +Viola +Irma +Ola +Ollie +Joann +Lola +Cora +Essie +Eula +Jewel +Sylvia +Carol +Hattie +Lucy +Marilyn +Naomi +Frankie +Mable +Bettie +Stella +Violet +Earnestine +Ellen +Jimmie +Pearl +Esther +Julia +Carrie +Dolores +Donna +Katie +Nora +Verna +Alta +Maggie +Beverly +Jewell +Linda +Pat +Charlotte +Dora +Glenda +Jackie +Laverne +Mamie +Delores +Eunice +Gracie +Roberta +Flora +Rita +Della +Flossie +Freda +Janice +Anita +Audrey +Daisy +Earline +Grace +Lenora +Mabel +Marion +Phyllis +Rebecca +Rosemary +Eddie +Inez +Jerry +Lela +Ada +Beulah +Elnora +Freddie +Kathleen +Lou +Robbie +Addie +Bobby +Ima +Janet +Rosa +Agnes +Estella +Gertrude +Gwendolyn +Ina +Nadine +Connie +Francis +Ila +Rosetta +Sara +Tommie +Bennie +Dixie +Eloise +Emogene +Iva +Jeanne +Lorine +Willa +Dortha +Effie +Fern +Jeanette +Lottie +Nona +Oma +Patty +Ramona +Alberta +Anne +Etta +Fay +Glenna +Jacqueline +Leona +Marian +Pearlie +Rachel +Susie +Syble +Virgie +Bobbye +Delois +Deloris +Janie +Lee +Muriel +Nell +Nettie +Ophelia +Pearline +Sally +Berniece +Dollie +Earlene +Jennie +Leola +Odessa +Sadie +Winnie +Ava +Corine +Marlene +Vernice +Allie +Billy +Clarice +Claudia +Cleo +Emily +Gussie +Lavada +Lila +Melva +Mona +Oleta +Sallie +Sybil +Aline +Blanche +Christene +Colleen +Floy +Gearldine +Lora +Luella +Queen +Tressie +Birdie +Donnie +Eleanor +Estelle +Eugenia +Freeda +Joanne +Leota +Letha +Linnie +Lizzie +Lucile +May +Myra +Nelda +Neva +Nita +Susan +Velda +Zelda +Zelma +Dolly +Iris +James +Lue +Millie +Pansy +Paula +Retha +Vernell +Wilda +Winona +Callie +Charlie +Charline +Darlene +Delma +Dorris +Dovie +Earlean +Easter +Elma +Elwanda +Florida +Georgie +Goldie +Hilda +Joe +Johnie +Judy +Lavern +Marcella +Merle +Polly +Selma +Vada +Veda +Versie +Willene +Allene +Artie +Bette +Dean +Elouise +Florene +Florine +Frieda +Gertie +Lettie +Maudie +Mollie +Nedra +Nova +Roxie +Rubie +Sammie +Savannah +Theda +Theresa +Verdell +Vergie +Yvonne +Alene +Amelia +Arlena +Arlene +Avis +Bertie +Bulah +Ceola +Cynthia +Ever +Greta +Hester +Jaunita +Jerlean +Kay +Lona +Loraine +Magnolia +Mavis +Mittie +Nola +Olivia +Rena +Tiny +Venita +Verda +Vida +Zella +Amy +Betsy +Bonita +Caroline +Claudie +Claudine +Cleta +Corrine +Diane +Ester +Francine +Genevieve +Hallie +Henrietta +Janette +Jimmy +Jonnie +Lessie +Lexie +Lorraine +Louella +Lura +Margrett +Marietta +Maude +Mazie +Ocie +Odell +Olive +Ouida +Pearlean +Reva +Rosella +Rowena +Sammy +Teresa +Tessie +Velta +Versa +Viva +Vonda +Adell +Annette +Ardella +Audry +Augusta +Augustine +Berta +Billye +Birtha +Carlene +Cecil +Charlean +Charles +Chloe +Cordia +Cornelia +Darline +Dessie +Dona +Dorotha +Dottie +Earma +Edwina +Elda +Elva +Elvie +Emmer +Euna +Gay +Idella +Izola +Jamie +Joanna +John +Joye +Laquita +Leatha +Lilly +Loyce +Marguerite +Molly +Neoma +Otha +Rosalie +Rubbie +Rutha +Sheila +Treva +Una +Velva +Vesta +Zenobia +Zora +Mary +Betty +Dorothy +Helen +Barbara +Wanda +Ruby +Martha +Joyce +Doris +Margaret +Patsy +Virginia +Mildred +Frances +Ruth +Anna +Billie +Willie +Wilma +Norma +Bonnie +Peggy +Emma +Patricia +Louise +Bobbie +Juanita +Annie +Lois +Hazel +Alice +Thelma +Jessie +Carolyn +Shirley +Nancy +Evelyn +Velma +Elizabeth +Jean +Jo +Edna +Bernice +Minnie +Lillie +Alma +Clara +Ethel +Marie +Maxine +Gladys +Rosie +Sarah +Mattie +Georgia +Bertha +Joan +Mae +Margie +Melba +Lillian +Geraldine +Pauline +Ella +Erma +Geneva +Christine +Rose +Ida +Edith +Eva +Bessie +Gloria +Sue +Vera +Charlene +Donna +Imogene +Joann +Marjorie +Lucille +Lula +Opal +Bettye +Irene +Sylvia +Ann +Lola +Marilyn +Nellie +Ellen +Catherine +Jane +Lorene +Nina +Ernestine +Vivian +Dorthy +Elsie +Katherine +Ollie +Ruthie +Essie +Frankie +Jewel +Johnnie +Reba +Carol +Charlotte +Lena +Cora +Irma +Joy +Mable +Faye +Josephine +Pearl +Della +Eula +Glenda +Jimmie +Kathryn +Laura +Naomi +June +Loretta +Roberta +Beatrice +Gracie +Julia +Lucy +Dora +Florence +Freda +Janice +Kathleen +Marion +Myrtle +Eunice +Ora +Verna +Flora +Carrie +Delores +Iva +Katie +Laverne +Nettie +Phyllis +Violet +Willa +Esther +Hattie +Nora +Ola +Bettie +Rosa +Agnes +Audrey +Earnestine +Linda +Rita +Sadie +Beulah +Earlene +Etta +Fannie +Mamie +Janet +Jackie +Sara +Winnie +Anita +Dolores +Francis +Glenna +Grace +Jeanette +Marian +Susie +Ada +Connie +Dixie +Dortha +Jennie +Joanne +Lottie +Maggie +Nadine +Viola +Alta +Bobby +Daisy +Darlene +Fern +Floy +Ina +Jewell +Lou +Ramona +Robbie +Tommie +Beverly +Freddie +Jacqueline +Rachel +Hilda +Inez +Lenora +Nona +Pat +Rosemary +Mabel +Stella +Bennie +Gwendolyn +Lee +Marlene +Virgie +Deloris +Lela +Nelda +Odessa +Pearline +Sally +Addie +Alberta +Allie +Cleo +Mona +Rebecca +Retha +Anne +Bobbye +Claudia +Dessie +Dollie +Earline +Eddie +Leona +Maudie +Mavis +Effie +Emily +Flossie +Gertrude +Ima +Janie +Lila +Lorine +Lucile +Pearlie +Queen +Sybil +Zelma +Blanche +Eleanor +Elnora +Eloise +Henrietta +Ila +Leola +Neva +Oleta +Wilda +Aline +Augusta +Charline +Dovie +Fay +Iola +Jeanne +Jerry +Lessie +Letha +Lizzie +Louella +Marcella +Novella +Ophelia +Syble +Amy +Annette +Bertie +Billy +Charlie +Corine +Dorotha +Elwanda +Florene +Jaunita +Polly +Reva +Rosetta +Ava +Donnie +Elaine +Hellen +James +Joe +Lora +Margret +May +Millie +Molly +Myra +Nola +Oma +Patty +Vada +Veda +Willene +Allene +Bette +Colleen +Delois +Gearldine +Genevieve +Iris +Johnie +Judy +Melva +Nell +Ouida +Sallie +Theresa +Versie +Carole +Christene +Constance +Dolly +Dorris +Elma +Elva +Emogene +Estella +Eugenia +Frieda +Georgie +Goldie +Jacquelyn +Janette +Jannie +Josie +Joye +Lavern +Lawanda +Lovie +Muriel +Pansy +Pearlene +Rena +Roxie +Sharon +Alene +Belva +Berniece +Billye +Clarice +Cynthia +Deborah +Dottie +Edwina +Elouise +Florine +Girtha +Iona +Janis +Joanna +Kay +Leota +Linnie +Loyce +Luella +Lydia +Madeline +Madge +Nita +Odell +Olivia +Paula +Reta +Sandra +Tressie +Treva +Venita +Yvonne +Adell +Alpha +Amelia +Angie +Aretha +Birdie +Bonita +Carlene +Caroline +Charlean +Christina +Clementine +Cornelia +Delia +Delphia +Easter +Eileen +Francies +Gail +Greta +Gwen +Harriett +Hester +Hettie +Kathern +Katheryn +Lavada +Lavelle +Lettie +Lily +Lorraine +Marguerite +Marietta +Nedra +Ocie +Pattie +Robert +Rosalie +Selma +Susan +Vernell +Viva +Aletha +Amanda +Angela +Arlene +Becky +Cassie +Claudette +Claudine +Cleda +Corene +Dana +Dean +Dorothea +Ellie +Emmer +Estelle +Ester +Gertie +Henretta +Hope +Irine +Jettie +Jewelene +Kathrine +Lavonne +Leah +Ludie +Lyda +Magnolia +Marcia +Maria +Matilda +Maxie +Mazie +Merle +Miriam +Myrna +Nada +Nella +Osie +Otha +Reda +Reola +Rosella +Rowena +Tessie +Una +Velda +Velta +Willodean +Zella +Mary +Betty +Dorothy +Barbara +Wanda +Helen +Martha +Ruby +Virginia +Doris +Margaret +Norma +Patsy +Peggy +Shirley +Joyce +Frances +Billie +Mildred +Patricia +Ruth +Bonnie +Bobbie +Anna +Wilma +Juanita +Evelyn +Carolyn +Willie +Annie +Jo +Emma +Lois +Alice +Elizabeth +Thelma +Nancy +Hazel +Louise +Joan +Clara +Geneva +Lillie +Edna +Jean +Bernice +Erma +Ethel +Ann +Georgia +Marie +Gladys +Sue +Jessie +Geraldine +Rosie +Sarah +Margie +Maxine +Minnie +Velma +Ella +Vera +Alma +Charlene +Pauline +Gloria +Eva +Joy +Bessie +Johnnie +Mae +Mattie +Edith +Ida +Loretta +Florence +Marjorie +Sylvia +Dorthy +Faye +Lucille +Melba +Rose +Laura +Nellie +Irene +Joann +Lena +Lula +Naomi +Ollie +Opal +Bertha +Bettye +Freda +Julia +June +Lola +Nina +Vivian +Beatrice +Charlotte +Christine +Jane +Reba +Glenda +Catherine +Eula +Marilyn +Verna +Jimmie +Ellen +Janice +Jewel +Katie +Earnestine +Elsie +Daisy +Katherine +Ernestine +Kathryn +Nora +Cora +Roberta +Josephine +Donna +Iva +Lorene +Myrtle +Ora +Carrie +Delores +Dolores +Carol +Flora +Grace +Phyllis +Bettie +Beverly +Della +Dora +Fannie +Frankie +Lillian +Gracie +Hattie +Imogene +Ina +Lela +Ruthie +Viola +Esther +Willa +Beulah +Essie +Lucy +Maggie +Ada +Dixie +Irma +Ola +Pearl +Bobbye +Inez +Jackie +Mable +Mamie +Anita +Joanne +Laverne +Leona +Mona +Pat +Sara +Agnes +Alta +Eunice +Lenora +Nadine +Stella +Alberta +Jeanette +Rachel +Audrey +Eddie +Kathleen +Linda +Lou +Nettie +Addie +Connie +Elnora +Freddie +Janet +Rebecca +Rosa +Sally +Susie +Winnie +Dortha +Effie +Fern +Glenna +Janie +Leola +Earlene +Flossie +Jacqueline +Marian +Marion +Nelda +Yvonne +Dollie +Earline +Etta +Hilda +Jewell +Robbie +Violet +Bennie +Eloise +Gwendolyn +Marlene +Mollie +Polly +Rita +Bobby +Deloris +Lottie +Sadie +Darlene +Eleanor +Gertrude +Ila +Nona +Tommie +Arlene +Carole +Delois +Dorotha +Estella +Francis +Goldie +Jennie +Josie +Lila +Odessa +Pearlie +Rosemary +Virgie +Ava +Christene +Floy +Ima +Lawanda +Lee +Myra +Patty +Pearline +Reva +Aline +Bette +Birdie +Claudine +Dorris +Gearldine +Lavada +Lavern +Mabel +Nell +Ramona +Retha +Rosetta +Sybil +Vernell +Allie +Cleo +Dolly +Fay +Freeda +Gail +Greta +Jerry +Judy +Kay +Lora +Lucile +Maudie +Melva +Molly +Nola +Paula +Sallie +Selma +Susan +Theresa +Blanche +Charlie +Charline +Delma +Dessie +Donnie +Iris +Jeanne +Joe +Johnie +Leta +Mavis +Myrna +Neva +Oleta +Rena +Sandra +Syble +Zella +Zelma +Amelia +Callie +Claudia +Cleta +Colleen +Constance +Elma +Elva +Ester +Florida +Ira +James +John +Lessie +Letha +Lorraine +Louella +Luella +Lydia +Millie +Novella +Rubie +Sammie +Theda +Tressie +Vada +Verda +Vida +Alene +Alpha +Anne +Artie +Bertie +Celia +Corine +Emily +Florene +Florine +Freida +Hannah +Joanna +Judith +Leah +Lizzie +May +Nova +Olivia +Oma +Reta +Willene +Allene +Billy +Carlene +Carmen +Cornelia +Delphia +Dorthey +Elaine +Emogene +Fanny +Frieda +Gayle +Genevieve +Gertie +Gussie +Henrietta +Ivory +Janette +Janis +Jannie +Jaunita +Kitty +Leota +Lue +Marcia +Ocie +Ona +Ouida +Pearlene +Queen +Veda +Velta +Vernice +Amanda +Augusta +Berniece +Berta +Beth +Charles +Clarice +Dovie +Eliza +Elmer +Hester +Iona +Leatrice +Lilly +Madeline +Magdalene +Nannie +Nita +Olive +Ophelia +Pansy +Rosalie +Velda +Versie +Vesta +Vonda +Vonnie +Wilda +Zelda +Avis +Betsy +Billye +Birtha +Camilla +Caroline +Cassie +Cathryn +Charlean +Cherry +Chessie +Chloe +Corene +Dana +Eartha +Easter +Elwanda +Estelle +Euna +Gene +Georgie +Hellen +Iola +Janetta +Jeanie +Jonnie +Leonia +Lily +Linnie +Lorean +Loreta +Louetta +Loyce +Ludie +Lyda +Madge +Maple +Margret +Maria +Marietta +Maude +Merle +Mickey +Miriam +Nada +Neoma +Noma +Pearlean +Ray +Regina +Rowena +Sharon +Suzanne +Treva +Una +Verdia +Verla +Victoria +Winona +Mary +Betty +Shirley +Dorothy +Barbara +Wanda +Martha +Helen +Virginia +Doris +Patsy +Ruby +Joyce +Margaret +Patricia +Norma +Bonnie +Frances +Lois +Mildred +Billie +Wilma +Carolyn +Ruth +Anna +Peggy +Bobbie +Nancy +Willie +Annie +Evelyn +Juanita +Emma +Edna +Alice +Jo +Louise +Elizabeth +Clara +Margie +Hazel +Maxine +Sarah +Thelma +Joan +Lillie +Rosie +Marilyn +Eva +Velma +Ethel +Jean +Marie +Bernice +Ella +Geraldine +Gladys +Geneva +Georgia +Vera +Mattie +Edith +Minnie +Bertha +Erma +Jessie +Ann +Glenda +Ida +Gloria +Melba +Bessie +Nellie +Rose +Mae +Sue +Christine +Charlene +Alma +Donna +Carol +Lillian +Joann +Nina +Loretta +Sylvia +Beatrice +Ruthie +Ollie +Pauline +Bettye +Johnnie +Jane +Joy +Eula +Lucille +Reba +Catherine +Elsie +Lorene +Myrtle +Lula +Irene +Julia +Laura +Naomi +Roberta +Dora +June +Kathryn +Bettie +Ernestine +Frankie +Katherine +Marjorie +Dorthy +Fannie +Phyllis +Cora +Imogene +Esther +Janice +Lola +Opal +Verna +Anita +Josephine +Nora +Charlotte +Dolores +Faye +Hattie +Jimmie +Vivian +Carrie +Earnestine +Freda +Ora +Florence +Jewel +Mable +Ellen +Laverne +Lena +Earlene +Janet +Eddie +Kathleen +Essie +Flora +Katie +Rita +Della +Joanne +Mamie +Pat +Rachel +Grace +Jackie +Sally +Yvonne +Beverly +Eunice +Freddie +Gracie +Janie +Marion +Rosetta +Alta +Irma +Linda +Robbie +Ada +Bobby +Daisy +Elnora +Rebecca +Viola +Bennie +Delores +Ina +Jeanette +Lenora +Lou +Nettie +Ola +Sara +Stella +Audrey +Beulah +Francis +Nadine +Rosa +Tommie +Violet +Winnie +Effie +Pearl +Pearlie +Earline +Etta +Gertrude +Inez +Iris +Kay +Lucy +Nelda +Polly +Agnes +Darlene +Dixie +Eloise +Flossie +Iva +Lee +Maggie +Marlene +Rosemary +Sadie +Virgie +Connie +Jewell +Patty +Dollie +Dortha +Emily +Floy +Glenna +Lessie +Lila +Ramona +Addie +Jerry +Leona +Lottie +Melva +Neva +Nona +Pearline +Sallie +Sandra +Sharon +Theresa +Willa +Bette +Goldie +Marian +Alberta +Carole +Delois +Deloris +Gwendolyn +Henrietta +Jacqueline +Myra +Queen +Retha +Susie +Ava +Claudette +Hilda +Joe +Lela +Leola +Paula +Amy +Birdie +Clarice +Claudia +Eleanor +Elma +Ima +Iola +Janis +Judith +Letha +Lora +Mabel +Mona +Muriel +Odessa +Ophelia +Bonita +Dovie +Elva +Fay +Florine +Gearldine +Gertie +Jennie +Lavada +Lawanda +Millie +Oleta +Oma +Reva +Altha +Anne +Bertie +Deborah +Dessie +Dorris +Estella +Freida +Georgie +Linnie +Louella +May +Mittie +Myrna +Rena +Sherry +Susan +Vada +Veda +Alene +Allie +Claudine +Colleen +Corine +Diane +Dolly +Dorothea +Elaine +Fern +Freeda +Gail +Gayle +James +Josie +Judy +Lavern +Lorine +Mollie +Pansy +Tressie +Victoria +Willene +Aletta +Carlene +Christene +Earlean +Iona +Jan +Lettie +Lizzie +Lorraine +Marcella +Margret +Maudie +Mavis +Nola +Ona +Peggie +Rubie +Sammie +Syble +Wilda +Adell +Allene +Amanda +Annette +Blanche +Bobbye +Cynthia +Dorotha +Edwina +Elois +Elouise +Harriet +Jeannette +Jonnie +Leota +Lonnie +Miriam +Olivia +Pearlene +Regina +Treva +Verla +Verlene +Vernell +Vernice +Vesta +Zelma +Aleta +Alpha +Annetta +Aretha +Arlene +Audra +Belva +Betsy +Billy +Billye +Blanchie +Celia +Charlean +Cleo +Cleta +Earma +Faith +Genevieve +Geraldean +Greta +Gussie +Gwen +Hellen +Ila +Jamie +Jannie +Jeanie +Jeanne +Jeraldine +Jettie +Joanna +Johnie +Jolene +Kattie +Leta +Luella +Lura +Lydia +Lynn +Maple +Marcia +Maude +Merle +Nannie +Nova +Pattie +Pearlean +Rosalee +Sheila +Suzanne +Sybil +Venita +Verdell +Versie +Winona +Zenobia +Albertine +Alline +Annabelle +Augusta +Beth +Birtha +Bulah +Caroline +Celestine +Charlie +Charline +Christina +Clora +Constance +Delma +Earl +Eliza +Elta +Estelle +Eugenia +Fayrene +Florida +Frieda +Gay +George +Gladis +Hester +Ira +Izola +Janetta +Jerrie +John +Kathern +Laquita +Leatrice +Lilly +Lona +Lovie +Madie +Margarett +Marguerite +Maurine +Molly +Monica +Nell +Ouida +Ozell +Reola +Reta +Roxie +Rubye +Selma +Teresa +Tommye +Velda +Veola +Verda +Vergie +Verlean +Vonnie +Zella +Mary +Betty +Shirley +Dorothy +Barbara +Wanda +Martha +Patsy +Helen +Patricia +Virginia +Ruby +Carolyn +Joyce +Doris +Peggy +Margaret +Frances +Norma +Mildred +Wilma +Bonnie +Anna +Willie +Alice +Ruth +Annie +Bobbie +Jo +Emma +Nancy +Billie +Lois +Juanita +Elizabeth +Evelyn +Louise +Thelma +Edna +Hazel +Ethel +Lillie +Clara +Sarah +Gladys +Georgia +Donna +Jessie +Marilyn +Jean +Geneva +Rosie +Joan +Alma +Carol +Bertha +Margie +Marie +Rose +Velma +Bessie +Gloria +Maxine +Ann +Loretta +Lula +Bernice +Ella +Mattie +Erma +Geraldine +Minnie +Vera +Jimmie +Edith +Eva +Johnnie +Sue +Sylvia +Melba +Ida +Linda +Glenda +Nellie +Janice +Joann +Joy +June +Lola +Charlene +Frankie +Anita +Catherine +Ernestine +Jane +Elsie +Myrtle +Delores +Lucille +Katherine +Lillian +Nina +Reba +Ruthie +Dorthy +Yvonne +Faye +Julia +Laura +Mae +Pauline +Charlotte +Kathryn +Christine +Irene +Carrie +Phyllis +Vivian +Beverly +Freda +Florence +Marjorie +Shelby +Earlene +Fannie +Flora +Verna +Della +Dora +Essie +Hattie +Lucy +Pearl +Eddie +Ollie +Earnestine +Freddie +Imogene +Rachel +Sara +Bettie +Cora +Dolores +Josephine +Katie +Lorene +Lou +Nelda +Sandra +Jeanette +Mable +Opal +Pat +Viola +Virgie +Eula +Janet +Maggie +Mamie +Ora +Violet +Beatrice +Ellen +Eunice +Janie +Nora +Bennie +Bettye +Nettie +Connie +Dixie +Glenna +Jackie +Kay +Laverne +Leola +Ola +Paula +Rebecca +Robbie +Roberta +Rosemary +Susie +Alberta +Esther +Marion +Marlene +Pearlie +Rita +Rosetta +Agnes +Naomi +Sally +Beulah +Gracie +Joe +Lee +Lela +Leona +Anne +Audrey +Carole +Deloris +Irma +Kathleen +Nadine +Odessa +Claudia +Earline +Grace +Iva +Jewel +Jewell +Lena +Eleanor +Elnora +Flossie +Gail +Maudie +Alta +Daisy +Darlene +Effie +Marian +Retha +Annette +Emily +Ima +Letha +Millie +Pearline +Queen +Rosa +Sammie +Donnie +Dortha +Elva +Francis +Gertrude +Gwendolyn +Mavis +Neva +Stella +Willa +Arlene +Delois +Etta +Judy +Lenora +Mabel +Mona +Nell +Polly +Syble +Tommie +Amy +Bette +Callie +Corine +Dolly +Fern +Gertie +Hilda +Ina +Jacqueline +Jerry +Joanne +Johnie +Lessie +Myrna +Nona +Ophelia +Pansy +Patty +Sallie +Sharon +Veda +Winnie +Amanda +Bobby +Bobbye +Clarice +Claudette +Gearldine +Marva +Oma +Ouida +Sadie +Ava +Billy +Dessie +Floy +Freida +Inez +Jennie +Jonnie +Judith +Lorine +Mittie +Myra +Myrtis +Reva +Shelba +Theda +Zelma +Ada +Addie +Angie +Carlene +Charles +Claudine +Dollie +Eloise +Estella +Fay +Iola +Janis +Leta +Mollie +Rena +Roxie +Sherry +Velda +Bertie +Billye +Charline +Cleta +Cynthia +Dovie +Earlean +Emogene +Florida +Florine +Gussie +Ila +Iris +Jan +Lottie +Marietta +Muriel +Nola +Suzanne +Theresa +Treva +Allie +Birdie +Charlie +Colleen +Earlie +Elwanda +Genevieve +Goldie +Henrietta +Katy +Lelia +Lila +Lizzie +Lorraine +Lynn +Melva +Nita +Ramona +Reta +Rubie +Sybil +Tressie +Versie +William +Alene +Aline +Almeda +Barbra +Brenda +Celia +Charlean +Cleo +Cornelia +Diane +Estelle +Ester +Fredia +Gay +Gayle +Gwen +Ira +Ivory +Jacquelyn +Jaunita +Julie +Karen +Laquita +Lavada +Lavern +Leatrice +Lora +Loyce +Lue +Lydia +May +Nannie +Nila +Nova +Oleta +Ozella +Pearly +Selma +Sidney +Tommye +Vada +Velta +Verlene +Viva +Archie +Artie +Berniece +Caroline +Christene +Claudie +Corrine +Dana +Delma +Dona +Dorris +Dottie +Easter +Edwina +Elois +Elvira +Florene +Freeda +Frieda +Hannah +Hester +Iona +Jannie +Joanna +Kattie +Leatha +Lilly +Lona +Lonnie +Lovie +Luella +Madge +Magnolia +Maple +Margarette +Margret +Maria +Matilda +Noma +Ocie +Olive +Olivia +Phoebe +Priscilla +Regina +Robert +Rubbie +Sam +Susan +Veola +Verda +Vida +Virgia +Vonnie +Willadean +Zella +Mary +Betty +Shirley +Barbara +Dorothy +Patsy +Martha +Helen +Joyce +Patricia +Virginia +Carolyn +Wanda +Ruby +Doris +Frances +Margaret +Peggy +Norma +Nancy +Alice +Annie +Bonnie +Willie +Mildred +Anna +Ruth +Wilma +Bobbie +Elizabeth +Evelyn +Billie +Emma +Jo +Linda +Lois +Thelma +Louise +Juanita +Jean +Edna +Ann +Geneva +Sarah +Hazel +Rosie +Alma +Ethel +Glenda +Georgia +Bertha +Carol +Shelby +Gloria +Jessie +Clara +Joan +Velma +Ella +Loretta +Marilyn +Maxine +Margie +Rose +Sylvia +Sue +Erma +Gladys +Vera +Janice +Lillie +Geraldine +Joann +Mae +Lula +Jane +Mattie +Donna +Edith +Johnnie +Minnie +Marie +Bessie +Charlene +Eva +Bernice +Catherine +Laura +Cora +Myrtle +Frankie +Nina +Earnestine +Kathryn +Pauline +Bettye +Joy +Reba +Ruthie +Charlotte +Melba +Phyllis +Beverly +Carrie +Ida +Julia +Christine +Elsie +Irene +Katherine +Nellie +Anita +Dorthy +Lucille +Marjorie +Annette +June +Lillian +Opal +Sandra +Beatrice +Irma +Josephine +Lena +Fannie +Hattie +Jewel +Jimmie +Yvonne +Dora +Faye +Inez +Lucy +Ernestine +Freda +Lola +Bettie +Eula +Maggie +Shelba +Della +Deloris +Essie +Laverne +Ola +Roberta +Vivian +Eddie +Flora +Imogene +Jackie +Ollie +Pearlie +Daisy +Delores +Ellen +Eloise +Lou +Pat +Verna +Ada +Alberta +Dixie +Eunice +Kay +Viola +Violet +Florence +Jeanette +Naomi +Nora +Pearl +Rebecca +Esther +Iva +Katie +Willa +Arlene +Audrey +Carole +Freddie +Lorene +Ora +Patty +Paula +Robbie +Beulah +Glenna +Janis +Mable +Sally +Sharon +Alta +Darlene +Earlene +Janet +Leola +Mamie +Rita +Connie +Elnora +Emily +Grace +Jacqueline +Judy +Lenora +Marion +Nelda +Earline +Eleanor +Gracie +Jerry +Maudie +Mona +Nettie +Rachel +Effie +Etta +Francis +Janie +Joe +Rosetta +Sara +Dolores +Gail +Judith +Lela +Nona +Rosemary +Stella +Winnie +Zelma +Addie +Anne +Claudia +Gwendolyn +Ila +Joanne +Kathleen +Sybil +Tommie +Virgie +Fay +Ina +Lee +Leona +Lottie +Retha +Rosa +Syble +Bobbye +Delois +Donnie +Ima +Iris +Lessie +Letha +Marcia +Marian +Molly +Nadine +Neva +Odessa +Polly +Sammie +Bobby +Charlie +Claudine +Diane +Dortha +Gertrude +Hellen +Lavern +Marlene +Ramona +Allie +Deanna +Floy +Jewell +Melva +Pansy +Pearline +Rosalie +Velda +Vernell +Vonda +Agnes +Amy +Ava +Bennie +Blanche +Clarice +Dollie +Dorris +Estella +Flossie +Ginger +Janette +Joanna +Marcella +Mavis +Rena +Vernice +Avis +Bette +Callie +Charles +Christene +Claudette +Dovie +Elaine +Florida +Florine +Henrietta +Hilda +Jannie +Mabel +Myrna +Queen +Sallie +Sherry +Theresa +Versie +Artie +Dana +Dorotha +Elva +Elwanda +Fern +Gertie +Gussie +Jeanne +Josie +Karen +Lila +Madge +Margarett +Marguerite +Marva +May +Myra +Nola +Oleta +Ouida +Reva +Sadie +Susie +Treva +Aline +Alpha +Blanch +Bonita +Carlene +Charline +Cleo +Cynthia +Diana +Dolly +Dorothea +Elouise +Gayle +Georgie +Harriet +Henry +Idell +Jacquelyn +James +Janelle +Jerlean +John +Lavonda +Leta +Lizzie +Merle +Nita +Ophelia +Roxie +Susan +Terry +Tressie +Willene +Beth +Betsy +Carla +Delma +Florene +Gearldine +Hallie +Ira +Jamie +Jennie +Jeraldine +Johnie +Lawanda +Lynda +Margret +Marietta +Nannie +Nell +Oma +Ona +Patrica +Pearly +Ray +Reola +Savannah +Vada +Victoria +Willia +Altha +Alva +Archie +Billy +Cecile +Colleen +Corene +Corine +Cornelia +Dean +Deborah +Delia +Dessie +Dimple +Dottie +Eliza +Freida +George +Goldie +Jeanie +Jerlene +Jimmy +Jossie +Lavada +Lucile +Luella +Lydia +Lynn +Madeline +Magnolia +Margree +Marlyn +Miriam +Nadean +Novella +Odessia +Otha +Rutha +Selma +Sidney +Vinnie +Winifred +Wynona +Mary +Betty +Shirley +Barbara +Dorothy +Carolyn +Patsy +Martha +Wanda +Joyce +Patricia +Virginia +Helen +Linda +Margaret +Doris +Norma +Ruby +Peggy +Frances +Nancy +Bobbie +Alice +Bonnie +Jo +Wilma +Anna +Ruth +Emma +Willie +Annie +Elizabeth +Mildred +Billie +Louise +Evelyn +Marilyn +Lois +Hazel +Glenda +Juanita +Margie +Clara +Lillie +Erma +Donna +Rosie +Gloria +Sarah +Minnie +Joann +Edna +Ann +Thelma +Velma +Carol +Sue +Jean +Ethel +Melba +Jessie +Gladys +Sylvia +Janice +Marie +Rose +Alma +Bertha +Johnnie +Ida +Bernice +Georgia +Geraldine +Mae +Bessie +Charlene +Phyllis +Vera +Geneva +Jane +Mattie +Maxine +Sandra +Ella +Christine +Loretta +Charlotte +Joy +Bettye +Beverly +Eva +Joan +Katherine +Faye +Lula +Pauline +Ruthie +Catherine +Frankie +Lola +Shelby +Irene +Lillian +Naomi +Nina +Vivian +Annette +Julia +Reba +Anita +Cora +Edith +Fannie +Myrtle +Ernestine +Marjorie +Jimmie +Lorene +Nellie +Earnestine +Yvonne +Elsie +Lucy +Lucille +Nora +Verna +Connie +Dorthy +Kathryn +Laura +Opal +Pearl +Pearlie +Rebecca +Sharon +Beatrice +Carrie +Dora +Lena +Bettie +Daisy +Ellen +Hattie +June +Kay +Sally +Essie +Eula +Irma +Roberta +Jackie +Janet +Flora +Florence +Laverne +Delores +Dixie +Earlene +Judy +Lee +Mable +Nelda +Ora +Anne +Della +Eddie +Etta +Freddie +Nettie +Ollie +Rita +Viola +Audrey +Carole +Janie +Jeanette +Jewel +Josephine +Paula +Esther +Francis +Freda +Gail +Grace +Iva +Judith +Leona +Pat +Rosa +Rosetta +Alberta +Robbie +Rosemary +Sara +Shelba +Emily +Eunice +Ina +Myrna +Ola +Agnes +Deanna +Dolores +Jerry +Katie +Stella +Virgie +Eleanor +Gracie +Imogene +Jacqueline +Lou +Maggie +Sherry +Willa +Alta +Gwendolyn +Jewell +Kathleen +Nadine +Darlene +Deloris +Marva +Myra +Ramona +Ada +Arlene +Dollie +Lenora +Rachel +Claudia +Claudine +Effie +Floy +Jennie +Lela +Leola +Mamie +Marion +Nona +Sadie +Susan +Beulah +Delois +Earline +Gertrude +Iris +James +Janis +Mona +Nola +Ocie +Polly +Tommie +Callie +Elnora +Inez +Patty +Susie +Violet +Bennie +Bobby +Fern +Goldie +Hilda +Ima +Joanne +Reva +Theresa +Winnie +Cleo +Cynthia +Elva +Estella +Mabel +Ophelia +Retha +Sammie +Sybil +Addie +Ava +Flossie +Ila +Jamie +Joe +Lavada +Lynda +Lynn +May +Neva +Rosalie +Sallie +Veda +Vernice +Zelma +Christene +Corine +Diane +Dortha +Eloise +Lavern +Lorine +Lottie +Marcia +Marlene +Mollie +Oleta +Pansy +Vada +Vernell +Versie +Belva +Cecil +Claudette +Corene +Dolly +Josie +Lizzie +Louella +Marcella +Marian +Mavis +Odessa +Sonja +Syble +Treva +Allie +Amy +Artie +Billy +Clarice +Elaine +Estelle +Fay +Gayle +Genevieve +Gertie +Ginger +Glenna +Gussie +Harriet +Ivory +Jenny +Lovie +Millie +Nell +Oma +Queen +Regina +Wilda +Alene +Aline +Berniece +Bette +Blanche +Caroline +Charlie +Constance +Cornelia +Dana +Deborah +Diana +Dovie +Earlean +Elwanda +Florine +Henrietta +Iola +Janette +Jaunita +Karen +Kathy +Letha +Maudie +Melva +Molly +Pearlene +Pearline +Rubie +Theda +Tressie +Twila +Veola +Willia +Alva +Amelia +Angie +Annetta +Carlene +Colleen +Delma +Dorris +Freeda +Gearldine +Georgie +Greta +Gwen +Harlene +Harriett +Jacquelyn +Jan +Jannie +Joanna +Johnie +Jonnie +Lavonne +Leatha +Leota +Lila +Lue +Magnolia +Margret +Maria +Maureen +Nelma +Olive +Ona +Rena +Reola +Robert +Roxie +Samella +Selma +Terry +Verlene +Vida +Willene +Amanda +Annabelle +Archie +Avis +Beth +Billye +Bobbye +Carla +Carrol +Cassie +Cecelia +Charlean +Charline +Cherry +Deloise +Dessie +Dianne +Dottie +Edwina +Ethelene +Euna +Florida +Freida +Gay +Iona +Ira +Ivy +Jeanne +Joye +Julie +Katheryn +Kathrine +Kattie +Lelia +Linnie +Lonnie +Lora +Lorena +Lucile +Lynne +Madge +Marietta +Maurine +Merle +Mickey +Muriel +Naoma +Neoma +Nita +Nova +Ozell +Patti +Peggie +Priscilla +Rosalee +Shirlene +Suzanne +Tiny +Velda +Vonda +Mary +Betty +Shirley +Barbara +Dorothy +Wanda +Carolyn +Patsy +Linda +Martha +Joyce +Helen +Patricia +Margaret +Virginia +Peggy +Nancy +Doris +Ruby +Frances +Norma +Bobbie +Alice +Jo +Lois +Elizabeth +Bonnie +Ruth +Wilma +Glenda +Emma +Annie +Anna +Marilyn +Donna +Mildred +Evelyn +Thelma +Billie +Willie +Sarah +Gloria +Sandra +Juanita +Sue +Carol +Janice +Rosie +Loretta +Bertha +Edna +Georgia +Phyllis +Ann +Rose +Erma +Marie +Lillie +Louise +Margie +Jean +Jessie +Charlotte +Joan +Ethel +Geraldine +Clara +Laura +Bernice +Geneva +Mae +Velma +Ella +Hazel +Judy +Vera +Beverly +Mattie +Alma +Maxine +Melba +Anita +Eva +Minnie +Edith +Sylvia +Gladys +Joann +Catherine +Nina +Sharon +Ida +Bessie +Ellen +Janet +Christine +Johnnie +Judith +Beatrice +Joy +Cora +Lola +Jane +Katherine +Lillian +Pauline +Reba +Jimmie +Kathryn +Ruthie +Charlene +Rebecca +Bettye +Jackie +Lula +Nellie +Pat +Myrtle +Julia +Kay +Dora +Sara +Earnestine +Faye +Ollie +Pearlie +Robbie +Fannie +Florence +Laverne +Shelby +Vivian +Delores +Ernestine +Frankie +Josephine +Marjorie +Naomi +Ora +Verna +Elsie +Irma +Jeanette +Opal +Bettie +Irene +Nora +Annette +Brenda +Dolores +Dorthy +Eddie +Eunice +Rita +Connie +Freda +Freddie +Jewel +Mable +Pearl +Sally +Daisy +Lorene +Rachel +Yvonne +Ada +Bennie +Esther +Eula +Flora +June +Lena +Lucille +Mamie +Nelda +Stella +Gail +Marian +Rosetta +Paula +Viola +Alta +Della +Lucy +Ola +Sherry +Hattie +Imogene +Ina +Inez +Lou +Roberta +Tommie +Audrey +Carrie +Essie +Etta +Janis +Marion +Delois +Dixie +Joe +Lynda +Patty +Polly +Rosa +Darlene +Effie +Gwendolyn +Janie +Katie +Myra +Rosemary +Sadie +Susan +Carole +Eleanor +Grace +Jerry +Kathleen +Lela +Maggie +Melva +Myrna +Nadine +Alberta +Beulah +Claudia +Elaine +Glenna +Gracie +Iva +Nell +Nona +Shelba +Willa +Bonita +Deanna +Deloris +Earlene +Emily +Jacqueline +Leona +Lottie +Mavis +Mona +Susie +Virgie +Dessie +Lee +Nettie +Queen +Retha +Anne +Bobbye +Dana +Earline +Lenora +Lizzie +Odessa +Pearline +Theresa +Tressie +Cleo +Cynthia +Diane +Elnora +Eloise +Fay +Florine +Francis +Jacquelyn +Leola +Marcia +Nita +Ramona +Arlene +Becky +Bobby +Clarice +Diana +Dortha +Estella +Floy +Iris +Lila +Marva +Sybil +Violet +Agnes +Artie +Christene +Dollie +Donnie +Fern +Gertrude +Janette +Jennie +Lavada +Letha +Maudie +Priscilla +Rosalie +Sondra +Winnie +Zelma +Altha +Blanche +Corine +Elwanda +Estelle +Flossie +Georgie +Hilda +Ila +Ima +Joanne +Lydia +Marlene +May +Millie +Pearlene +Reta +Sonja +Suzanne +Addie +Amy +Aretha +Claudine +Constance +Earlean +Easter +Gayle +George +Glynda +James +Jewell +Karen +Lawanda +Lora +Lorine +Lorraine +Lue +Nannie +Olivia +Oma +Rena +Sheila +Ava +Berta +Dorris +Elva +Gearldine +Gussie +Henrietta +Iola +Jan +Johnie +Leah +Linnie +Magnolia +Margret +Nola +Ocie +Ophelia +Pansy +Patti +Rubye +Veda +Allene +Barbra +Belva +Bette +Callie +Caroline +Cecilia +Charline +Cleta +Corene +Dianne +Dolly +Dovie +Earlie +Earma +Edwina +Eliza +Emmer +Emogene +Era +Eugenia +Freida +Gay +Ginger +Greta +Gwen +Ivory +Jamie +Jeannie +Josie +Lavonne +Leora +Lilly +Lorena +Luella +Maple +Marcella +Melvia +Nan +Neva +Novella +Ona +Roma +Sallie +Sammie +Sammye +Sonya +Syble +Treva +Vada +Velda +Venita +Victoria +Vida +Willia +Zenobia +Alean +Alene +Aline +Allie +Annetta +Birdie +Carma +Cherry +Clementine +Corinne +Dorothea +Elvie +Ester +Fredia +Genevieve +Gertie +Jeanne +Jeffie +Johnny +Joye +Katheryn +Kathy +Leota +Lessie +Leta +Lily +Loyce +Lynn +Mabel +Meredith +Molly +Nelma +Neoma +Oleta +Peggie +Penny +Rutha +Shirlene +Tommy +Toni +Vergie +Versie +Veta +Wilda +William +Willine +Mary +Betty +Barbara +Shirley +Linda +Dorothy +Carolyn +Patricia +Martha +Joyce +Patsy +Helen +Wanda +Margaret +Peggy +Ruby +Nancy +Alice +Virginia +Doris +Frances +Norma +Bonnie +Glenda +Bobbie +Elizabeth +Jo +Donna +Carol +Emma +Juanita +Lois +Ruth +Wilma +Judy +Anna +Gloria +Willie +Janice +Mildred +Sandra +Brenda +Evelyn +Annie +Phyllis +Louise +Sarah +Margie +Edna +Marilyn +Jean +Hazel +Thelma +Sue +Billie +Ann +Bertha +Clara +Judith +Lillie +Rose +Georgia +Rosie +Gladys +Anita +Joan +Ethel +Loretta +Charlotte +Ella +Beverly +Edith +Melba +Sylvia +Eva +Jessie +Jane +Mae +Maxine +Bernice +Geraldine +Joann +Geneva +Johnnie +Laura +Bettye +Ellen +Katherine +Mattie +Rebecca +Sharon +Velma +Alma +Marie +Vera +Catherine +Ida +Julia +Minnie +Vivian +Erma +Charlene +Dorthy +Lillian +Nina +Delores +Bettie +Earnestine +Beatrice +Bessie +Elsie +Josephine +Pauline +Fannie +Pat +Ruthie +Yvonne +Cora +Freda +Jeanette +Marjorie +Rita +Christine +Lula +Grace +Lynda +Joy +Kathryn +Nellie +Pearlie +Opal +Verna +Connie +Janet +Annette +Florence +Jimmie +Lucille +Faye +Frankie +Irma +Kay +Reba +Sara +Esther +Hattie +June +Lou +Nelda +Roberta +Stella +Carrie +Dora +Freddie +Jackie +Lola +Ollie +Pearl +Audrey +Eula +Irene +Nora +Ora +Paula +Viola +Darlene +Flora +Lucy +Mable +Myrna +Rosemary +Dixie +Dolores +Eddie +Essie +Lorene +Myrtle +Shelby +Ada +Ernestine +Francis +Jerry +Lee +Polly +Priscilla +Susan +Daisy +Delois +Etta +Mamie +Rachel +Rosetta +Sally +Tommie +Alberta +Beulah +Glenna +Janie +Janis +Jewel +Karen +Susie +Della +Eunice +Gwendolyn +Maggie +Marion +Nadine +Naomi +Patty +Robbie +Rosa +Anne +Bennie +Gracie +Lena +Leona +Sherry +Bobby +Cynthia +Earlene +Earline +May +Nettie +Ola +Carole +Jewell +Joanne +Laverne +Lottie +Mona +Addie +Elaine +Ina +Katie +Marva +Myra +Virgie +Claudia +Jennie +Winnie +Alta +Deloris +Dollie +Effie +Eleanor +Estella +Gail +Iris +Kathleen +Melva +Pearline +Shelba +Suzanne +Willa +Arlene +Corine +Eloise +Emily +Flossie +Georgie +Henrietta +Imogene +Lela +Leola +Nona +Queen +Ramona +Sondra +Violet +Agnes +Birdie +Elnora +Fern +Ima +Joe +Lavern +Marcella +Syble +Becky +Callie +Gearldine +Gertrude +Kathy +Letha +Lydia +Magnolia +Marlene +Molly +Neva +Sadie +Sybil +Betsy +Carla +Claudine +Diane +Earma +Ginger +Jeanne +Jonnie +Lana +Lenora +Marian +Nola +Sonja +Theresa +Veda +Zelma +Allie +Caroline +Christene +Deanna +Hilda +Ila +Jacqueline +Jamie +John +Lynn +Mabel +Maudie +Maxcine +Mollie +Odessa +Regina +Roxie +Sammie +Sheila +Velda +Aline +Ava +Carlene +Cecilia +Cleo +Deborah +Diana +Dolly +Donnie +Emogene +Iva +James +Janette +Jannie +Jaunita +Lue +Margarett +Millie +Oma +Ophelia +Vada +Amanda +Barbra +Charles +Cherry +Cornelia +Dortha +Dovie +Edwina +Elva +Elwanda +Florine +Freida +Genevieve +Gennie +Harriet +Inez +Julie +Lavonda +Lessie +Lorine +Marcia +Marguerite +Muriel +Nell +Ona +Retha +Treva +Alva +Amy +Augusta +Bertie +Beth +Billy +Bobbye +Bonita +Cathy +Charlie +Cleta +Corrine +Dorris +Earlean +Floy +Gay +Gertha +Goldie +Izola +Jacquelyn +Janetta +Linnie +Louie +Luella +Lura +Margret +Maude +Mavis +Mittie +Nannie +Nita +Oleta +Peggie +Reta +Reva +Royce +Sallie +Saundra +Selma +Tressie +Vernell +Versie +Wilda +Zella +Alpha +Altha +Amelia +Andrea +Angela +Annetta +Belva +Cassie +Charline +Charlsie +Clarene +Classie +Corean +Darla +Deloise +Delora +Dorotha +Earlie +Elma +Elouise +Era +Ester +Fay +Gaye +Gayle +George +Gertie +Gwen +Hellen +Ivory +Janell +Jeanie +Jenny +Jerlean +Johnny +Josie +Junita +Kathern +Leah +Lelia +Leslie +Lila +Lilly +Lizzie +Lorraine +Louella +Lovie +Loyce +Marietta +Matilda +Maurice +Maxie +Merle +Merlene +Pansy +Pearley +Rosalie +Verda +Vesta +Mary +Betty +Barbara +Linda +Shirley +Carolyn +Patsy +Dorothy +Patricia +Wanda +Joyce +Martha +Margaret +Helen +Peggy +Doris +Nancy +Virginia +Ruby +Alice +Brenda +Elizabeth +Judy +Bonnie +Frances +Glenda +Sandra +Anna +Norma +Lois +Jo +Marilyn +Bobbie +Gloria +Annie +Wilma +Ruth +Judith +Carol +Mildred +Donna +Emma +Evelyn +Edna +Phyllis +Willie +Margie +Billie +Janice +Louise +Hazel +Sarah +Thelma +Ann +Sue +Juanita +Beverly +Sharon +Charlotte +Rosie +Clara +Lillie +Erma +Mattie +Alma +Georgia +Jean +Maxine +Sylvia +Julia +Rose +Ida +Velma +Joann +Johnnie +Ethel +Loretta +Mae +Bessie +Jane +Joan +Rebecca +Vera +Bertha +Pat +Bernice +Ellen +Eva +Charlene +Edith +Gladys +Lynda +Ella +Jessie +Laura +Geneva +Marie +Anita +Melba +Bettye +Catherine +Geraldine +Minnie +Reba +Lillian +Christine +Dorthy +Pauline +Kathryn +Lula +Janet +Kay +Nellie +Rita +Earnestine +Irene +Freda +Vivian +Delores +Frankie +June +Lucy +Myrtle +Janis +Lena +Florence +Irma +Jackie +Katherine +Lucille +Sherry +Stella +Connie +Sally +Dora +Jeanette +Jimmie +Joy +Nora +Cora +Faye +Lola +Marjorie +Della +Freddie +Hattie +Nina +Shelby +Carole +Ernestine +Essie +Flora +Josephine +Susie +Bettie +Jewel +Lou +Paula +Katie +Ollie +Roberta +Eula +Ruthie +Audrey +Beatrice +Carrie +Etta +Grace +Janie +Opal +Ora +Susan +Dolores +Esther +Fannie +Daisy +Glenna +Kathleen +Naomi +Sara +Tommie +Viola +Annette +Delois +Deloris +Earline +Elsie +Emily +Laverne +Earlene +Eunice +Maggie +Eleanor +Lorene +Marian +Marion +Rosa +Yvonne +Claudia +Darlene +Gwendolyn +Karen +Marva +Nelda +Pearl +Pearlie +Priscilla +Verna +Willa +Bennie +Gracie +Rachel +Rosetta +Gail +Rosemary +Jerry +Lee +Lela +Mable +Addie +Flossie +Lottie +Mamie +Nettie +Ola +Patty +Agnes +Bobby +Bobbye +Gertrude +Henrietta +Iva +Mona +Retha +Violet +Alberta +Anne +Dixie +Eloise +Hilda +Inez +Leola +Marcia +Myra +Ramona +Ada +Arlene +Bonita +Cynthia +Deanna +Diane +Dolly +Jacqueline +Jacquelyn +Lenora +Nell +Robbie +Theresa +Alta +Diana +Eddie +Francis +Ina +Lavern +Lue +Marcella +Nadine +Nola +Sallie +Sammie +Suzanne +Beulah +Carlene +Elaine +Elnora +Imogene +Janette +Jannie +Jeanne +Jennie +Letha +Lilly +May +Nona +Polly +Winnie +Ava +Beth +Caroline +Charles +Charline +Dianne +Dollie +Ester +Fay +Gertie +Harriet +Ila +Iris +Jewell +Joanne +Josie +Lizzie +Myrna +Nita +Odessa +Reva +Sadie +Sheila +Sondra +Celia +Elva +Ima +Joe +Julie +Leona +Lovie +Rena +Sonja +Bette +Cecilia +Claudine +Dovie +Earma +Edwina +Eugenia +Fern +Goldie +Jeannie +Kathy +Kaye +Lavada +Lessie +Maria +Mavis +Pearline +Shelba +Terry +Vonda +Allie +Amanda +Angela +Annetta +Becky +Belva +Berta +Birdie +Cassie +Clarice +Cleta +Constance +Dianna +Dona +Elma +Floy +Freeda +Frieda +Gayle +Gearldine +Ginger +Hellen +Iona +James +Jeanetta +Jeanie +Jeannette +Jonnie +Kitty +Leta +Lila +Lora +Margret +Maudie +Maxcine +Molly +Neva +Pansy +Queen +Robert +Tressie +Zelma +Amelia +Berniece +Cathy +Celestine +Claudette +Cleo +Dana +Dessie +Dortha +Earlean +Effie +Everlena +Freida +Gennie +Georgie +Gertha +Gussie +Hettie +John +Lana +Lawanda +Lorraine +Lynn +Mabel +Melva +Ocie +Oleta +Ophelia +Pearlene +Peggie +Regina +Rubie +Rubye +Syble +Teresa +Theda +Toni +Vergie +Versie +Victoria +Vida +Virgie +Wonda +Alfreda +Altha +Amy +Betsy +Billye +Blanche +Celeste +Charity +Christene +Dorotha +Eartha +Elouise +Elwanda +Estella +Florida +Floye +Gay +Glynda +Greta +Idella +Jan +Jerrie +Joanna +Joella +Jolene +Lavon +Lelia +Lennie +Linnie +Lorine +Louella +Loyce +Lydia +Madelyn +Malinda +Marlene +Maureen +Meredith +Miriam +Neoma +Olivia +Ona +Retta +Rosalie +Sherley +Sherrie +Sonia +Suellen +Sybil +Valeria +Velda +Verda +Zelda +Mary +Betty +Linda +Barbara +Carolyn +Shirley +Patricia +Dorothy +Martha +Patsy +Joyce +Wanda +Margaret +Nancy +Helen +Peggy +Sandra +Brenda +Doris +Frances +Virginia +Alice +Judy +Ruby +Jo +Norma +Wilma +Ruth +Sharon +Bonnie +Elizabeth +Bobbie +Gloria +Mildred +Carol +Annie +Janice +Marilyn +Willie +Donna +Emma +Glenda +Anna +Billie +Judith +Phyllis +Juanita +Lois +Sarah +Sue +Evelyn +Charlotte +Margie +Edna +Louise +Clara +Rebecca +Ann +Erma +Rosie +Jean +Lillie +Loretta +Johnnie +Mae +Beverly +Joan +Georgia +Bertha +Ida +Mattie +Minnie +Vera +Janet +Velma +Jane +Maxine +Rose +Hazel +Gladys +Ethel +Marie +Thelma +Julia +Eva +Charlene +Alma +Geneva +Jessie +Rita +Ella +Delores +Kay +Melba +Pat +Katherine +Pauline +Reba +Susan +Ellen +Anita +Nina +Bernice +Catherine +Geraldine +Vivian +Edith +Laura +Lola +Lula +Connie +Hattie +Jackie +Kathryn +Ruthie +Christine +Lillian +Sherry +Carole +Sylvia +Bettye +Joann +Josephine +Lynda +Ernestine +Frankie +Bessie +Cora +Joy +Diane +Beatrice +Dorthy +Lena +Earnestine +Jeanette +Karen +Myrtle +Nellie +Ollie +Verna +Carrie +Irene +June +Lucille +Mable +Paula +Freddie +Janis +Pearlie +Dora +Essie +Esther +Eula +Florence +Freda +Janie +Opal +Faye +Gwendolyn +Nora +Paulette +Roberta +Stella +Bettie +Beulah +Darlene +Deloris +Fannie +Flora +Lucy +Pearl +Sara +Dolores +Gail +Irma +Yvonne +Iva +Jewell +Jimmie +Rachel +Rosa +Annette +Marjorie +Robbie +Sally +Kathy +Audrey +Mamie +Nelda +Ora +Patty +Willa +Cynthia +Gracie +Jewel +Laverne +Leona +Myra +Nettie +Viola +Alberta +Kathleen +Lou +Marion +Naomi +Bennie +Daisy +Etta +Grace +Lela +Lorene +Ola +Rosetta +Claudia +Delois +Diana +Ina +Jerry +Lana +Susie +Eddie +Elaine +Elsie +Emily +Maggie +Queen +Rena +Rosemary +Theresa +Ada +Della +Earlene +Polly +Sammie +Sondra +Tommie +Violet +Eleanor +Eunice +Jacqueline +Lee +Lenora +Odessa +Ramona +Shelby +Vicki +Deanna +Earline +Flossie +Francis +Glenna +Jennie +Joanne +Marian +May +Nola +Nona +Priscilla +Sallie +Addie +Alta +Eloise +Ima +Jamie +Katie +Leola +Lorine +Retha +Sadie +Anne +Becky +Bobby +Corine +Effie +Estella +Georgie +Hilda +Sheila +Virgie +Agnes +Bette +Blanche +Dixie +Josie +Lynn +Margarett +Mona +Nadine +Shelia +Terry +Ava +Cecelia +Cecilia +Dana +Dovie +Elnora +Floy +Gertie +Gertrude +Inez +Joe +Jonnie +Lottie +Marcella +Melva +Myrna +Nita +Saundra +Beth +Bonita +Cathy +Clarice +Claudette +Dianna +Henrietta +Imogene +Jan +Jeanne +Jeannie +Julie +Kaye +Lavern +Mabel +Madeline +Marsha +Maudie +Millie +Olivia +Sharron +Shelba +Teresa +Willene +Winnie +Bertie +Birdie +Carrol +Dessie +Dianne +Donnie +Dorris +Elma +Freeda +Genevieve +Goldie +James +Lavada +Lessie +Letha +Lila +Marcia +Margarette +Marva +Oleta +Rosalie +Suzanne +Vonda +Zettie +Amelia +Billye +Bobbye +Carla +Christene +Diann +Dortha +Emmer +Ester +Gladis +Gwen +Harriet +Harriett +Ila +Ivy +Jacquelyn +Lora +Nell +Pearline +Penny +Syble +Victoria +Zelma +Allie +Callie +Carlene +Caroline +Charles +Charlie +Cleo +Darla +Deborah +Dollie +Dottie +Florida +Gayle +Hellen +Jannie +Jeanie +Jeannette +Jenny +Lawanda +Lily +Lizzie +Lonnie +Louella +Lue +Lydia +Margret +Mollie +Molly +Nan +Nedra +Neva +Ophelia +Peggie +Reva +Veda +Velda +Aline +Amy +Angela +Annetta +Archie +Arlene +Artie +Birtha +Carlotta +Charline +Colleen +Constance +Delia +Delphia +Dona +Easter +Edwina +Elouise +Fay +Fern +Gaye +Gearldine +Gene +Glinda +Gussie +Hester +Iola +Ivory +Janette +Jeanetta +Jeraldine +Johnie +Katheryn +Lucinda +Lura +Marietta +Marlene +Marolyn +Mazie +Melinda +Merlene +Merry +Murline +Nelta +Ocie +Odell +Pamela +Pearly +Regina +Reola +Reta +Robin +Sammye +Sonja +Sybil +Tina +Tommy +Verda +Vida +Wilda +Mary +Betty +Linda +Barbara +Carolyn +Shirley +Patricia +Dorothy +Joyce +Patsy +Sharon +Martha +Wanda +Nancy +Margaret +Judy +Sandra +Helen +Brenda +Doris +Peggy +Virginia +Carol +Frances +Alice +Ruby +Elizabeth +Bonnie +Glenda +Bobbie +Gloria +Ruth +Donna +Jo +Norma +Judith +Marilyn +Annie +Janice +Emma +Charlotte +Willie +Phyllis +Lois +Evelyn +Wilma +Anna +Mildred +Edna +Billie +Janet +Sue +Thelma +Ann +Beverly +Lillie +Rose +Joan +Juanita +Bertha +Sarah +Erma +Rosie +Connie +Georgia +Clara +Margie +Louise +Catherine +Jean +Maxine +Ethel +Katherine +Johnnie +Lynda +Velma +Eva +Minnie +Rita +Charlene +Kathryn +Alma +Hazel +Karen +Bernice +Jane +Joann +Laura +Melba +Gladys +Loretta +Vera +Kay +Marie +Paula +Rebecca +Bettye +Ella +Geneva +Sherry +Pat +Mae +Dorthy +Jessie +Julia +Sylvia +Geraldine +Susan +Christine +Ellen +Mattie +Nina +Paulette +Anita +Beatrice +Delores +Edith +Jackie +Ruthie +Stella +Bettie +Earnestine +Irene +Pauline +June +Vivian +Carole +Faye +Jimmie +Florence +Nora +Ollie +Roberta +Carrie +Diane +Ida +Jeanette +Marjorie +Cora +Daisy +Ernestine +Josephine +Kathleen +Lillian +Reba +Sally +Bessie +Freddie +Lola +Kathy +Marion +Elsie +Fannie +Joy +Tommie +Lena +Diana +Dora +Earline +Essie +Katie +Lucille +Pearlie +Flora +Janie +Opal +Ora +Susie +Verna +Yvonne +Dianne +Esther +Frankie +Freda +Jewel +Nelda +Rosemary +Eddie +Eula +Pamela +Sharron +Viola +Gracie +Lula +Nellie +Pearl +Annette +Deloris +Mable +Rachel +Audrey +Dolores +Gwendolyn +Irma +Lou +Myrtle +Sara +Claudia +Deanna +Della +Emily +Henrietta +Jacqueline +Mamie +Nadine +Suzanne +Anne +Delois +Earlene +Jennie +Joanne +Lorene +Lucy +Naomi +Polly +Rosa +Shelby +Ada +Arlene +Bennie +Hattie +Jerry +Marsha +Ola +Violet +Willa +Alberta +Lee +Lela +Maggie +Queen +Robbie +Addie +Agnes +Cheryl +Grace +Ina +Marcia +Marva +Elaine +Eloise +Francis +Gail +Iva +Lenora +Mavis +Patty +Donnie +Dortha +Leona +Melva +Nettie +Priscilla +Alta +Darlene +Etta +Gearldine +Inez +Marian +Rosetta +Sadie +Theresa +Virgie +Beth +Beulah +Cynthia +Eleanor +Elnora +Glenna +Goldie +Hilda +Imogene +Jeannie +Jewell +Laverne +Magnolia +Marlene +Mona +Odessa +Sammie +Bonita +Claudette +Dianna +Dollie +Effie +Gertrude +Iris +Janis +Lavern +Leola +Lora +Lottie +Nell +Nona +Rena +Sandy +Saundra +Sheila +Sybil +Versie +Winnie +Charline +Elva +Estella +Eunice +Jan +Janette +Jeanne +Johnie +Letha +Lorine +Margarett +Nola +Retha +Sondra +Vicki +Zona +Andrea +Becky +Bertie +Birdie +Callie +Cathy +Claudine +Cleo +Dana +Diann +Dixie +Dovie +Ester +Genevieve +Harriet +Ivory +James +Lavada +Leta +Lizzie +Lynn +Marcella +Melinda +Mollie +Regina +Teresa +Venita +Aline +Allie +Amy +Bobby +Dorris +Fern +Joe +Julie +Lana +Lonnie +May +Ramona +Reva +Sallie +Syble +Victoria +Amelia +Annetta +Bobbye +Carlene +Caroline +Charles +Christene +Fay +Flossie +Frieda +Ginger +Jamie +Jana +Jaunita +Kaye +Lovie +Luella +Lydia +Marguerite +Maria +Maudie +Myra +Nita +Olivia +Ophelia +Patti +Penny +Shelia +Terry +Zella +Zelma +Aileen +Alpha +Angela +Bernestine +Carla +Carmen +Charolette +Corine +Dona +Earma +Gayle +Georgie +Glynda +Jacquelyn +Jerlean +Johnny +Leslie +Lilly +Lorraine +Lue +Lura +Molly +Myrna +Patrica +Reta +Robert +Selma +Sonja +Verda +Abbie +Altha +Ana +Anda +Angeline +Aretha +Barbra +Betsy +Birtha +Carroll +Charleen +Cindy +Clarice +Cleta +Cornelia +Delma +Dottie +Earlean +Earlie +Eileen +Elma +Emmer +Freida +Gale +Gertie +Gretchen +Gwen +Iola +Jannie +Jennifer +Joetta +John +Lawanda +Leatha +Lessie +Lettie +Louella +Lucinda +Marietta +Maurice +Maxcine +Mazie +Merle +Millie +Muriel +Oleta +Pattie +Pearline +Peggie +Ray +Shelba +Shirlene +Una +Vada +Verlene +Vernell +Vonda +Willene +Mary +Linda +Betty +Carolyn +Barbara +Shirley +Patricia +Dorothy +Sharon +Sandra +Joyce +Martha +Patsy +Judy +Margaret +Nancy +Brenda +Wanda +Helen +Peggy +Carol +Ruby +Doris +Gloria +Glenda +Virginia +Bonnie +Donna +Alice +Frances +Ruth +Elizabeth +Judith +Marilyn +Jo +Phyllis +Janice +Emma +Norma +Evelyn +Bobbie +Wilma +Mildred +Willie +Annie +Janet +Billie +Charlotte +Joan +Anna +Sue +Georgia +Thelma +Lois +Sarah +Clara +Juanita +Susan +Jane +Ann +Ethel +Jean +Rosie +Catherine +Louise +Paula +Velma +Beverly +Rebecca +Rose +Rita +Lillie +Alma +Geraldine +Maxine +Bettye +Connie +Julia +Margie +Edna +Jessie +Karen +Sherry +Erma +Hazel +Loretta +Mattie +Ruthie +Geneva +Johnnie +Mae +Delores +Ellen +Katherine +Kay +Marie +Bertha +Cheryl +Minnie +Bernice +Christine +Diane +Ida +Lola +Vera +Anita +Charlene +Ella +Gladys +Joann +Lula +Dorthy +Kathryn +Vivian +Bessie +Carole +Eva +Lynda +Beatrice +Earnestine +Edith +Pearlie +Jackie +Jimmie +Bettie +Janie +Kathy +Pamela +Pat +Josephine +Delois +Melba +Sally +Faye +Laura +Paulette +Stella +Flora +Kathleen +Lucy +Marjorie +Nina +Sylvia +Cora +Deloris +Pauline +Essie +Jeanette +June +Lena +Nellie +Reba +Daisy +Emily +Florence +Irene +Lucille +Ola +Francis +Frankie +Lela +Sara +Darlene +Joy +Tommie +Claudia +Gail +Jerry +Opal +Ora +Roberta +Rosemary +Diana +Freda +Lillian +Mable +Ollie +Anne +Dixie +Fannie +Freddie +Myrtle +Carrie +Eula +Nora +Alberta +Dora +Ernestine +Leona +Myra +Verna +Esther +Laverne +Mamie +Marion +Naomi +Susie +Becky +Dianne +Earlene +Janis +Lou +Rosetta +Ada +Annette +Dolores +Gwendolyn +Jacqueline +Katie +Lee +Vicki +Viola +Virgie +Alta +Gayle +Grace +Irma +Iva +Lenora +Patty +Pearl +Rachel +Robbie +Sharron +Violet +Andrea +Bennie +Carla +Elaine +Etta +Joanne +Marian +Nettie +Theresa +Agnes +Bonita +Cynthia +Donnie +Hattie +Hilda +Jacquelyn +Joe +Lana +Nelda +Queen +Sallie +Suzanne +Addie +Beulah +Eddie +Elnora +Ina +Jewell +Lynn +Marcia +Marva +Regina +Rosa +Sheila +Victoria +Yvonne +Audrey +Bobby +Christene +Dana +Della +Earline +Elsie +Floy +Glenna +Gracie +Inez +Marsha +Teresa +Cathy +Cecilia +Cherry +Cleo +Dianna +Eleanor +Gertrude +Glynda +Henrietta +Iris +Jennie +Julie +Letha +Lorene +Polly +Retha +Saundra +Vickie +Caroline +Deanna +Eunice +Flossie +Lavern +Maggie +Odessa +Penny +Rubye +Shelby +Aline +Amanda +Arlene +Callie +Constance +Deborah +Eloise +Harriet +Imogene +Jeanne +Jewel +Kaye +Lizzie +May +Nita +Sammie +Sandy +Terry +Vicky +Willa +Billy +Birdie +Carmen +Celia +Charlie +Claudette +Dottie +Effie +Fay +Florine +James +Jannie +Johnie +Josie +Lora +Lydia +Lynne +Maria +Marlene +Mona +Olivia +Priscilla +Ramona +Sondra +Allie +Beth +Betsy +Cecelia +Corene +Dona +Elvira +Gussie +Harriett +Hester +Ivory +Jan +Jill +Lila +Lue +Marcella +Marylin +Millie +Molly +Nona +Patti +Pearline +Sadie +Shelia +Tommye +Toni +Veda +Veronica +Amelia +Angela +Camilla +Clarice +Dollie +Dolly +Estella +George +Gertie +Glinda +Ira +Jeanie +Jeannie +Jenny +Jonnie +Judi +Ladonna +Lawanda +Lilly +Lorraine +Lucinda +Maple +Maudie +Maureen +Melva +Merlene +Mollie +Nell +Nola +Penelope +Reva +Shirlene +Tena +Trudy +Venita +Vernell +Versie +Alene +Artie +Avis +Bertie +Bette +Blanche +Carlene +Carrol +Charles +Charolette +Cleola +Dortha +Earlean +Earma +Eileen +Eugenia +Florene +Freida +Gay +Genevieve +Georgie +Gwen +Hellen +Ima +Janelle +Jannette +Jaunita +Jayne +Jearlean +Jeri +Jerri +Joanna +John +Lavada +Leola +Leslie +Lorine +Lovie +Mabel +Margarett +Ophelia +Patrica +Rena +Reta +Robin +Rosia +Royce +Syble +Twila +Vada +Willene +Zenobia +Mary +Linda +Betty +Barbara +Carolyn +Shirley +Patricia +Judy +Dorothy +Brenda +Sharon +Joyce +Sandra +Martha +Carol +Nancy +Margaret +Helen +Wanda +Donna +Gloria +Patsy +Virginia +Peggy +Glenda +Doris +Frances +Ruby +Elizabeth +Janice +Marilyn +Ruth +Bobbie +Alice +Bonnie +Jo +Judith +Phyllis +Lois +Willie +Annie +Evelyn +Charlotte +Lillie +Mildred +Joan +Sarah +Ann +Beverly +Emma +Norma +Wilma +Sherry +Rosie +Sue +Susan +Juanita +Edna +Anna +Thelma +Connie +Janet +Louise +Paula +Karen +Katherine +Rebecca +Rose +Billie +Bertha +Georgia +Diana +Jean +Kay +Hazel +Kathryn +Erma +Catherine +Margie +Jane +Johnnie +Delores +Diane +Ella +Ethel +Laura +Clara +Cheryl +Carole +Mae +Gladys +Lynda +Mattie +Bernice +Alma +Jessie +Marie +Velma +Loretta +Janie +Bettye +Jackie +Melba +Rita +Vera +Vivian +Maxine +Bessie +Ida +Geraldine +Nina +Ruthie +Anita +Ellen +Sylvia +Essie +Eva +Joann +Ollie +Pamela +Bettie +Dorthy +Geneva +Jeanette +Julia +Lucille +Charlene +Frankie +Christine +Reba +Claudia +Dora +Earnestine +Irene +Lula +Pat +Pauline +Roberta +Carrie +Joy +Nellie +Paulette +Beatrice +Daisy +Darlene +Elsie +Freddie +Jacqueline +Janis +Jimmie +June +Marion +Minnie +Rosemary +Verna +Annette +Deloris +Gracie +Kathleen +Lena +Viola +Anne +Cora +Ernestine +Faye +Gail +Lola +Lucy +Pearlie +Stella +Della +Edith +Josephine +Lillian +Ora +Rosetta +Sheila +Vicki +Dana +Dianna +Flora +Florence +Freda +Marjorie +Sharron +Alberta +Dianne +Kathy +Myrtle +Sally +Sara +Susie +Maggie +Nora +Opal +Rachel +Audrey +Becky +Gwendolyn +Lynn +Mable +Marcia +Nelda +Bennie +Earlene +Eddie +Esther +Hattie +Laverne +Lee +Marsha +Robbie +Theresa +Irma +Jerry +Suzanne +Ada +Cynthia +Delois +Harriet +Jeanne +Lorene +Ola +Rosa +Saundra +Tommie +Elaine +Fay +Jan +Julie +Lou +Nettie +Victoria +Yvonne +Addie +Beulah +Deanna +Francis +James +Jewel +Katie +Lana +Leona +Marian +Patty +Pearl +Alta +Constance +Dixie +Eula +Fannie +Gearldine +Glenna +Ina +Jacquelyn +Jennifer +Jewell +Mamie +Myra +Retha +Willa +Bonita +Dolores +Earline +Emily +Grace +Inez +Iva +Joe +Kaye +Sadie +Virgie +Eunice +Gertrude +Henrietta +Imogene +Maria +May +Ophelia +Priscilla +Sandy +Agnes +Arlene +Caroline +Cathy +Cherry +Dortha +Dottie +Estella +Ester +Jeannie +Joanne +Lawanda +Lela +Lorine +Marlene +Naomi +Olivia +Queen +Sondra +Terry +Zelma +Amy +Andrea +Carrol +Charline +Corine +Dolly +Edwina +Effie +Eloise +Gayle +Hellen +Iris +Janette +Josie +Leslie +Lessie +Linnie +Lora +Marguerite +Marva +Meredith +Odessa +Sybil +Violet +Cecelia +Deborah +Donnie +Etta +Gay +Hilda +Ira +Jeanie +Joanna +Johnie +Lenora +Leola +Lottie +Margarett +Melva +Mollie +Neta +Nita +Peggie +Ramona +Reva +Rosalie +Sallie +Trudy +Vickie +Vicky +Allene +Angela +Aretha +Ava +Barbra +Carla +Charlean +Claudine +Dovie +Elnora +Flossie +Floy +George +Georgie +Ginger +Harriett +Jennie +Jenny +Jerri +Jerrie +Judi +Ladonna +Letha +Lila +Magnolia +Margret +Marietta +Nadine +Nona +Octavia +Patrica +Pearline +Polly +Robin +Rosalind +Samella +Sharyn +Shelby +Sherrie +Zelda +Amanda +Annabelle +Belva +Beth +Betsy +Cecilia +Celeste +Celia +Charles +Charolette +Christene +Claire +Cleo +Darnell +Diann +Dona +Era +Eugenia +Freida +Gale +Gerry +Ila +Jamie +Janetta +Jerlean +Jerlene +Kitty +Leota +Lizzie +Louella +Mabel +Marcella +Mavis +Melinda +Mickey +Molly +Muriel +Nannie +Nola +Oma +Regina +Rhonda +Sammie +Sammy +Sheron +Sheryl +Sonja +Toni +Verla +Vernell +Winnie +Mary +Linda +Barbara +Carolyn +Betty +Shirley +Patricia +Judy +Brenda +Sharon +Sandra +Dorothy +Joyce +Donna +Martha +Wanda +Margaret +Carol +Patsy +Peggy +Nancy +Janice +Glenda +Gloria +Helen +Virginia +Doris +Phyllis +Jo +Alice +Judith +Beverly +Marilyn +Ruby +Frances +Elizabeth +Bonnie +Bobbie +Ruth +Karen +Connie +Rebecca +Susan +Norma +Sue +Janet +Charlotte +Sherry +Ann +Evelyn +Anna +Annie +Emma +Joan +Rose +Sarah +Mildred +Wilma +Juanita +Rosie +Willie +Lois +Paula +Diana +Rita +Cheryl +Louise +Jane +Lynda +Diane +Johnnie +Lillie +Loretta +Erma +Billie +Kay +Janie +Mattie +Clara +Jean +Kathryn +Sheila +Thelma +Charlene +Edna +Ella +Anita +Delores +Georgia +Mae +Paulette +Laura +Margie +Jessie +Bettye +Ethel +Eva +Katherine +Velma +Hazel +Pamela +Vera +Alma +Ellen +Geraldine +Ida +Ruthie +Catherine +Sally +Bertha +Vivian +Carole +Cora +Janis +Christine +Julia +Minnie +Stella +Sylvia +Faye +Marie +Bessie +Geneva +Susie +Gail +Gladys +Cynthia +Lillian +Bettie +Freda +Jackie +Joann +Nina +Earnestine +Edith +Gwendolyn +Irene +Jacqueline +Kathy +Maxine +Nellie +Marsha +Ora +Pat +Vicki +Josephine +Joy +Melba +Suzanne +Bernice +Dianne +Jimmie +Nettie +Reba +Darlene +Ernestine +Kathleen +Myrtle +Pearlie +Jeanette +June +Ollie +Annette +Jan +Lula +Rosemary +Dora +Hattie +Irma +Lola +Theresa +Becky +Delois +Fannie +Florence +Opal +Pauline +Sara +Anne +Bennie +Dianna +Julie +Lorene +Marcia +Nora +Beatrice +Dorthy +Eddie +Flora +Freddie +Laverne +Lena +Lucille +Mable +Marjorie +Nelda +Sharron +Verna +Dana +Esther +Frankie +Gracie +Lana +Mamie +Naomi +Claudia +Deloris +Essie +Grace +Jeanne +Victoria +Viola +Yvonne +Cathy +Daisy +Jerry +Toni +Carrie +Elaine +Francis +Katie +Lucy +Pearl +Rhonda +Teresa +Terry +Andrea +Audrey +Deanna +Deborah +Earlene +Elsie +Etta +Eunice +Jeanie +Jewel +Lou +Saundra +Tommie +Arlene +Earline +Jennifer +Jewell +Shelia +Sondra +Alberta +Bonita +Dixie +Ginger +Joanne +Maggie +Patty +Rosetta +Vickie +Carla +Effie +Eloise +Jamie +Jennie +Lee +Leona +Lynn +Marva +Priscilla +Regina +Robbie +Roberta +Sandy +Shelby +Addie +Cindy +Dottie +Emily +Gayle +Harriet +Janette +Jannie +Jeannie +Kaye +Leslie +Lorraine +Margarett +Marion +Polly +Violet +Callie +Dolores +Elva +Glenna +Gwen +Ima +Inez +Jacquelyn +Josie +Karon +Leola +Marian +Myrna +Queen +Sadie +Ada +Amanda +Caroline +Della +Eleanor +Estella +Eula +Fay +Harriett +Hilda +Lora +Nadine +Nona +Pansy +Rachel +Willa +Winnie +Diann +Dorris +Ina +Iris +Joe +Lela +Lenora +Malinda +Melva +Myra +Neva +Olivia +Pearlene +Roxie +Virgie +Agnes +Charlie +Dollie +Dolly +Donnie +Eileen +Janey +Jenny +Joanna +Loraine +Lydia +Mabel +Maria +Mavis +Odessa +Retha +Rosalyn +Unknown +Valerie +Versie +Alta +Amelia +Amy +Ava +Barbra +Beth +Betsy +Carlene +Charles +Cherry +Christene +Christina +Darla +Dortha +Dovie +Elnora +Gayla +Gearldine +Iva +Ivory +James +Jerrie +Lynette +Margarette +Millie +Ola +Pam +Sherrie +Alyce +Angela +Arma +Beverley +Birdie +Blanche +Camille +Charline +Claudine +Constance +Easter +Emmer +Emogene +Flossie +Floy +Fredia +Gertrude +Henrietta +Jill +Joye +Judi +Judie +Kathern +Kitty +Lavern +Lavon +Lottie +Lue +Nell +Neta +Ophelia +Ramona +Rosa +Sallie +Sharion +Tommye +Vicky +Willene +Aleta +Alicia +Beulah +Bobby +Candace +Carmen +Carrol +Carylon +Cassandra +Cathryn +Chloe +Danna +Dessie +Dina +Dorcas +Earsie +Florine +Glinda +Hellen +Ira +Jana +Jeanetta +John +Jonnie +Katharine +Lavada +Lenda +Lila +Lizzie +Louella +Luvenia +Marolyn +Maureen +Miriam +Mona +Muriel +Nola +Patrica +Pearline +Peggie +Reta +Samella +Sammie +Sheron +Sonja +Sybil +Tina +Veda +Vernell +Vonda +Zelma +Linda +Mary +Barbara +Carolyn +Betty +Patricia +Brenda +Shirley +Sharon +Judy +Sandra +Dorothy +Donna +Joyce +Peggy +Margaret +Phyllis +Nancy +Carol +Martha +Janice +Patsy +Wanda +Gloria +Glenda +Elizabeth +Doris +Rebecca +Helen +Jo +Marilyn +Virginia +Judith +Alice +Karen +Ruby +Beverly +Frances +Norma +Charlotte +Bonnie +Susan +Ruth +Sherry +Connie +Janet +Bobbie +Emma +Ann +Evelyn +Lois +Annie +Rita +Wilma +Sue +Anna +Willie +Lynda +Paula +Edna +Juanita +Cynthia +Kathryn +Thelma +Mildred +Rose +Georgia +Rosie +Billie +Pamela +Louise +Sarah +Joan +Loretta +Margie +Diana +Jane +Janis +Sheila +Kathy +Clara +Delores +Diane +Erma +Kay +Catherine +Cheryl +Jean +Laura +Mae +Ella +Hazel +Ida +Charlene +Janie +Katherine +Deborah +Ethel +Kathleen +Earnestine +Anita +Lillie +Bertha +Jessie +Dianne +Mattie +Sylvia +Jackie +Vera +Bernice +Freda +Lula +Marie +Maxine +Melba +Suzanne +Vicki +Vivian +Gladys +Velma +Bettye +Gwendolyn +Joann +Julia +Minnie +Pat +Stella +Beatrice +Geraldine +Becky +Eva +Gail +Geneva +Bessie +Dianna +Johnnie +Sally +Alma +Deloris +Edith +Ellen +Claudia +Lena +Ruthie +Susie +Marcia +Marsha +Pauline +Rosemary +Paulette +Bettie +Della +Jacqueline +Jimmie +Dorthy +Flora +Frankie +Nina +Joy +Lola +Verna +Viola +Francis +Jeanette +Lana +Christine +Cora +Faye +June +Ora +Elsie +Irene +Teresa +Carole +Carrie +Darlene +Esther +Lillian +Lou +Reba +Fannie +Josephine +Rachel +Sharron +Shelia +Terry +Delois +Dora +Florence +Hattie +Marjorie +Sara +Anne +Daisy +Dana +Elaine +Jennifer +Jewel +Pearl +Roberta +Cathy +Jan +Katie +Lucy +Ola +Vickie +Yvonne +Deanna +Jacquelyn +Marion +Myrtle +Nelda +Theresa +Dixie +Jeanne +Lorene +Olivia +Ada +Diann +Ernestine +Eula +Grace +Irma +Laverne +Maria +Nadine +Nora +Robbie +Carla +Freddie +Gracie +Iris +Jerry +Myra +Ollie +Opal +Rosetta +Saundra +Constance +Earlene +Glenna +Henrietta +Marva +Victoria +Angela +Audrey +Bonita +Etta +Gayle +Ginger +Julie +Letha +Mable +Nellie +Pearlie +Polly +Regina +Sondra +Earline +Emily +Kaye +Leola +Naomi +Nita +Veronica +Arlene +Beth +Eunice +Jeannie +Jennie +Lee +Lottie +Lucille +Lynn +Mamie +Nettie +Priscilla +Queen +Toni +Alberta +Dollie +Essie +Jenny +Josie +Ladonna +Lela +Retha +Tommie +Annette +Dolores +Fay +Ina +Iva +Janette +Lenora +Maggie +Marcella +Pauletta +Peggie +Penny +Rhonda +Virgie +Andrea +Cherry +Debbie +Donnie +Eddie +Eloise +Lydia +Marian +Molly +Reta +Sammie +Violet +Addie +Agnes +Alicia +Belinda +Bobby +Claudette +Darla +Dorris +Freida +Hellen +Hilda +Jeanie +Jeannette +Jessica +Jewell +Karon +Leslie +Melissa +Myrna +Pam +Ramona +Sadie +Sharyn +Treva +Trudy +Ava +Carlotta +Cecilia +Cindy +Debra +Dottie +Effie +Estella +Florine +Flossie +Floy +Imogene +Ivory +Jannie +Jerrie +Joanne +Joe +Leona +Lilly +Lora +Lorine +Margarett +May +Mona +Patty +Rena +Rosa +Sallie +Sandy +Tina +Vernell +Zelma +Alta +Bette +Carmen +Carylon +Danna +Dian +Glinda +Glynda +Gwen +Ila +Jamie +Jonnie +Judi +Kitty +Lavern +Lila +Lynne +Margarette +Mavis +Melinda +Melva +Merry +Pearline +Shannon +Sheryl +Allie +Amanda +Arline +Caroline +Cathryn +Charline +Christina +Clarice +Cleo +Corine +Darnell +Dee +Eleanor +Elva +Ester +Eugenia +Florene +Fredia +Gertrude +Harriet +Hester +Ira +James +Jerri +Jill +Joye +Judie +Lanell +Lucinda +Lue +Lynette +Marlene +Maxcine +Millie +Mittie +Mollie +Myrtis +Nola +Ona +Patti +Phillis +Reva +Roxie +Vicky +Willa +Belva +Bennie +Betsy +Billye +Blanche +Candace +Carlene +Carma +Carolynn +Celia +Christene +Cornelia +Dinah +Dona +Dovie +Edwina +Elnora +Gayla +George +Georgie +Harriett +Holly +Janett +Jayne +Jerlene +Jerre +Karla +Katheryn +Lauren +Leah +Lovie +Lyn +Maple +Margret +Merlene +Patrica +Pattie +Pearlene +Phylis +Rosalie +Rosalyn +Sherrie +Stephanie +Sybil +Tressie +Unknown +Veda +Venita +Veola +Vonda +Winifred +Winnie +Linda +Mary +Barbara +Brenda +Carolyn +Patricia +Betty +Shirley +Sharon +Judy +Sandra +Donna +Joyce +Dorothy +Nancy +Martha +Margaret +Peggy +Carol +Gloria +Helen +Wanda +Patsy +Glenda +Phyllis +Janice +Virginia +Karen +Marilyn +Doris +Rebecca +Susan +Elizabeth +Ruby +Frances +Pamela +Beverly +Ruth +Jo +Charlotte +Bobbie +Connie +Janet +Judith +Alice +Sherry +Evelyn +Deborah +Paula +Bonnie +Diane +Rosie +Annie +Rita +Lois +Rose +Thelma +Cheryl +Sue +Willie +Jane +Ann +Wilma +Anna +Lynda +Cynthia +Juanita +Laura +Norma +Sarah +Sheila +Kathy +Emma +Louise +Vicki +Catherine +Diana +Georgia +Mildred +Billie +Kathryn +Loretta +Joan +Edna +Geraldine +Jean +Teresa +Anita +Erma +Ethel +Janis +Lillie +Minnie +Katherine +Margie +Marsha +Stella +Charlene +Janie +Gwendolyn +Hazel +Bertha +Ella +Mae +Velma +Vivian +Bettye +Clara +Jessie +Vera +Bernice +Ida +Mattie +Maxine +Sylvia +Alma +Kathleen +Deloris +Julia +Ruthie +Gladys +Paulette +Delores +Eva +Regina +Faye +Christine +Dianne +Cathy +Cora +Edith +Ora +Reba +Earnestine +Delois +Jacqueline +Nina +Pearlie +Bessie +Geneva +Joy +Theresa +Ellen +Johnnie +Marie +Vickie +Jackie +Joann +Pauline +Sara +Flora +Gail +Melba +Shelia +Becky +Frankie +Lola +Lula +Pat +Sally +Suzanne +Carrie +Dana +Freda +Irene +Irma +Jeanette +Jennifer +June +Lena +Verna +Claudia +Marion +Ollie +Elaine +Essie +Florence +Annette +Bettie +Dianna +Dorthy +Fannie +Freddie +Kay +Mable +Marcia +Roberta +Beatrice +Emily +Lorene +Rachel +Robbie +Sharron +Yvonne +Darlene +Elsie +Gracie +Lana +Lynn +Anne +Eula +Lillian +Lucille +Susie +Victoria +Dora +Ramona +Rosetta +Carole +Debra +Ernestine +Henrietta +Jacquelyn +Leona +Marjorie +Nelda +Penny +Rhonda +Rosa +Rosemary +Alberta +Daisy +Esther +Gayle +Hattie +Josephine +Patty +Priscilla +Ada +Earlene +Jennie +Joanne +Ladonna +Laverne +Lou +Marian +Myra +Nellie +Angela +Belinda +Della +Grace +Jeannie +Mamie +Myrtle +Nadine +Nora +Pearl +Sandy +Unknown +Carla +Debbie +Florida +Iris +Jewel +Katie +Lucy +Olivia +Terry +Cindy +Deanna +Estella +Francis +Jan +Jerry +Jimmie +Maria +Melissa +Ola +Sammie +Saundra +Bennie +Eddie +Ginger +Jannie +Lela +Opal +Sheryl +Sondra +Toni +Violet +Alta +Andrea +Arlene +Audrey +Bonita +Dixie +Harriet +Ina +James +Jeanie +Jewell +Nita +Pearline +Sallie +Tommie +Addie +Beth +Donnie +Eloise +Glenna +Janette +Julie +Kaye +Leola +Lottie +Maggie +Retha +Vicky +Amanda +Betsy +Cecilia +Diann +Dona +Dottie +Eleanor +Etta +Eunice +Fay +Hilda +Iva +Jeanne +Joe +Marva +Polly +Queen +Sadie +Vernell +Veronica +Vonda +Beulah +Caroline +Charline +Danna +Dinah +Dorris +Dovie +Earline +Gearldine +Karon +Lee +Leslie +Lizzie +Lydia +Marcella +Margarett +Margret +Melinda +Millie +Myrna +Naomi +Nona +Odessa +Pam +Regenia +Vada +Willa +Aline +Celia +Charlie +Christene +Claudette +Dee +Dessie +Elnora +Ester +Eugenia +Gay +Guadalupe +Gwen +Holly +John +Josie +Kitty +Lenora +Lora +Lorine +Lorraine +Magnolia +Mavis +Mickey +Neva +Reta +Shirlene +Stephanie +Veda +Verdia +Zelma +Angie +Bobbye +Carlotta +Carmen +Cassandra +Cathie +Charles +Cherry +Constance +Denise +Dollie +Dolores +Earlie +Eileen +Fredia +Gayla +Glinda +Glynda +Gwenda +Imogene +Jana +Jerrie +Leta +Lila +Loyce +Lucinda +Lynne +Margrett +Marguerite +Mollie +Mona +Nell +Oleta +Peggie +Reda +Robert +Rowena +Rubye +Shelby +Sonja +Trudy +Alicia +Allene +Amelia +Annetta +Barbra +Berniece +Birdie +Blanchie +Callie +Charolette +Darla +Dawn +Dena +Dian +Effie +Elma +Florine +Flossie +Floy +Inez +Iola +Ivory +Janey +Jill +Joanna +Letitia +Lonnie +Lue +Luella +Mabel +Madie +Margarette +Marianne +Marlene +Maxcine +May +Nettie +Nikki +Octavia +Ophelia +Pauletta +Phillis +Rena +Renee +Rosalie +Shelba +Sonya +Susanne +Tanya +Tressie +Valerie +Velda +Vernice +Versie +Vickey +Viola +Yolanda +Linda +Mary +Brenda +Barbara +Shirley +Carolyn +Patricia +Betty +Judy +Sandra +Sharon +Donna +Joyce +Dorothy +Martha +Nancy +Margaret +Peggy +Gloria +Glenda +Beverly +Wanda +Carol +Janice +Patsy +Rebecca +Phyllis +Susan +Karen +Deborah +Doris +Helen +Elizabeth +Alice +Pamela +Connie +Frances +Ruby +Virginia +Charlotte +Kathy +Marilyn +Janet +Judith +Jo +Sherry +Diane +Paula +Evelyn +Rita +Ruth +Bobbie +Bonnie +Sarah +Annie +Kathryn +Lois +Norma +Catherine +Juanita +Katherine +Vicki +Diana +Wilma +Emma +Teresa +Marsha +Rose +Erma +Ethel +Anna +Cynthia +Bertha +Janis +Lynda +Ann +Rosie +Willie +Georgia +Mildred +Cheryl +Thelma +Cathy +Jane +Jean +Laura +Louise +Kathleen +Lillie +Sue +Sheila +Vivian +Sylvia +Billie +Clara +Loretta +Christine +Gwendolyn +Anita +Hazel +Janie +Joan +Ella +Jessie +Margie +Charlene +Gail +Ellen +Johnnie +Julia +Kay +Mattie +Vickie +Eva +Ruthie +Delores +Edna +Paulette +Suzanne +Minnie +Velma +Geraldine +Jacqueline +Unknown +Alma +Dianna +Ida +Rhonda +Theresa +Gladys +Mae +Pearlie +Stella +Vera +Maxine +Sally +Belinda +Bessie +Bernice +Dianne +Marie +Cora +Regina +Debra +Jackie +Jeanette +Joann +Maria +Melba +Yvonne +Bettye +Deloris +Edith +Lana +Rosetta +Darlene +Geneva +Reba +Rosemary +Becky +Sharron +Delois +Earlene +Freda +Sara +Annette +Beatrice +Carrie +Claudia +Faye +Irene +Marcia +Nina +Daisy +Dorthy +Earnestine +Jimmie +Joy +Lillian +Mable +Elaine +Ginger +Jan +Lola +Ollie +Roberta +Verna +Ernestine +Flora +Naomi +Ora +Irma +Lucille +Terry +Constance +Gracie +Jeanne +Jennifer +Josephine +Katie +Marjorie +Victoria +Bettie +Florence +Frankie +Julie +Lula +Nora +Pat +Priscilla +Susie +Alberta +Carla +Esther +Etta +Francis +Janette +Jerry +Marian +Marion +Myra +Angela +Anne +Dana +Hattie +June +Lucy +Shelia +Arlene +Jeannie +Pauline +Audrey +Carole +Cecilia +Essie +Fannie +Jacquelyn +Joanne +Lorene +Lynn +Ola +Rachel +Rosa +Addie +Della +Dora +Elsie +Eula +Jennie +Lela +Leona +Melinda +Myrtle +Nellie +Olivia +Robbie +Sallie +Bobby +Debbie +Diann +Eddie +Gayle +Jamie +Joe +Lee +Lou +Lydia +Marva +Melissa +Patty +Pearl +Polly +Sammie +Sheryl +Toni +Viola +Dixie +Ester +Harriet +Henrietta +Iva +Jannie +Jewel +Lena +Leslie +Maggie +Mamie +Mickey +Penny +Trudy +Vicky +Amy +Andrea +Bennie +Corine +Estella +Eunice +Freddie +Jeanie +Lizzie +Alicia +Beth +Beulah +Cecelia +Cherry +Deanna +Dolores +Emily +Iris +Jana +Kaye +Ladonna +Lavern +Laverne +Leta +Marcella +Marlene +Melanie +Nelda +Pearline +Peggie +Ramona +Alta +Bonita +Cassandra +Cleo +Deloise +Dollie +Dolly +Earline +Effie +Elma +Eloise +Grace +Jeannette +Jewell +Lenora +Lora +Lucinda +May +Retha +Sadie +Ada +Amanda +Amelia +Annetta +Charline +Christene +Earlean +Fay +Glenna +Joanna +Leah +Madeline +Margret +Melva +Nettie +Pamala +Queen +Sondra +Sonja +Terri +Tommie +Veronica +Callie +Carmen +Caroline +Cindy +Claudette +Dessie +Eleanor +Freida +Glinda +Gwen +Imogene +Ina +Jannette +Jenny +Karon +Leola +Linnie +Molly +Nell +Odessa +Ophelia +Phillis +Portia +Regena +Reva +Tina +Valerie +Verda +Violet +Vonda +Yolanda +Allene +Ava +Benita +Brinda +Carlene +Carlotta +Charolette +Christina +Christy +Clarice +Dorris +Dovie +Easter +Eliza +Flossie +Francine +Inez +Iola +Ivory +James +Jeanetta +Jeri +Letha +Lizabeth +Lorine +Lorraine +Lottie +Lura +Lynette +Malinda +Maple +Maude +Millie +Nadine +Nona +Opal +Reta +Sharion +Shelley +Sherron +Virgie +Agnes +Barbra +Betsy +Billye +Cathryn +Celia +Charlie +Claudine +Cornelia +Darla +Dawn +Dena +Denise +Dorothey +Dottie +Edwina +Elois +Eugenia +Florine +Frieda +George +Glynda +Guadalupe +Gwenda +Hester +Jerri +Jessica +Jill +Joetta +Josie +Katheryn +Louella +Lue +Lynne +Mabel +Margarette +Meredith +Myrna +Nola +Pam +Pamelia +Patrica +Patti +Pauletta +Rena +Robin +Rubie +Saundra +Tena +Twila +Twyla +Vernell +Willa +Zelma +Linda +Mary +Brenda +Barbara +Patricia +Shirley +Carolyn +Betty +Sandra +Judy +Sharon +Deborah +Donna +Nancy +Dorothy +Joyce +Janice +Martha +Carol +Peggy +Karen +Gloria +Margaret +Phyllis +Beverly +Connie +Wanda +Susan +Rebecca +Pamela +Glenda +Elizabeth +Virginia +Patsy +Kathy +Alice +Janet +Doris +Helen +Marilyn +Jo +Sherry +Paula +Charlotte +Ruby +Judith +Frances +Rita +Evelyn +Bonnie +Bobbie +Vicki +Ruth +Cynthia +Kathryn +Annie +Sarah +Norma +Sheila +Catherine +Gwendolyn +Marsha +Emma +Debra +Diane +Vickie +Diana +Juanita +Rosie +Joan +Cheryl +Katherine +Lois +Georgia +Willie +Wilma +Ann +Anna +Teresa +Anita +Rhonda +Hazel +Loretta +Mildred +Cathy +Christine +Erma +Lillie +Billie +Rose +Sue +Thelma +Ethel +Gail +Jane +Janie +Kathleen +Lynda +Vera +Darlene +Bertha +Ella +Alma +Vivian +Clara +Edna +Ellen +Velma +Ida +Jean +Jessie +Louise +Kay +Laura +Ruthie +Cora +Julia +Mae +Earnestine +Mattie +Belinda +Charlene +Jackie +Delores +Janis +Margie +Sylvia +Edith +Jacqueline +Johnnie +Dianne +Regina +Fannie +Marie +Rosemary +Suzanne +Geneva +Minnie +Shelia +Unknown +Florence +Joy +Nina +Victoria +Eva +Gladys +Joann +Maxine +Melba +Paulette +Theresa +Beatrice +Bessie +Bettye +Jacquelyn +Deloris +Jeanette +June +Lula +Sally +Faye +Pearlie +Roberta +Stella +Constance +Irene +Terry +Carrie +Debbie +Elaine +Ernestine +Irma +Josephine +Lucille +Marcia +Verna +Yvonne +Anne +Bernice +Eddie +Marjorie +Myra +Claudia +Freddie +Ginger +Becky +Delois +Flora +Geraldine +Lana +Lee +Mona +Robbie +Dorthy +Hattie +Lola +Dana +Eula +Freda +Gracie +Lenora +Lillian +Maggie +Ora +Reba +Rosetta +Dianna +Jeannie +Jennifer +Leslie +Lucy +Priscilla +Vicky +Annette +Carla +Dolores +Gayle +Jamie +Jan +Jerry +Jimmie +Julie +Lorene +Mamie +Marian +Myrtle +Ola +Pat +Patty +Daisy +Estella +Grace +Iris +Jeanne +Mable +Melissa +Pauline +Pearl +Queen +Robin +Sara +Emily +Essie +Jeannette +Laverne +Lou +Lynn +Nellie +Olivia +Rachel +Sharron +Trudy +Angela +Caroline +Della +Dora +Lisa +Marva +Ollie +Tommie +Alberta +Andrea +Bettie +Cecelia +Elsie +Glenna +Lena +Marion +Melinda +Nettie +Nona +Opal +Polly +Stephanie +Viola +Ada +Arlene +Bonita +Carole +Darla +Eloise +Esther +Etta +Janette +Jewell +Karon +Lora +Maria +Nadine +Penny +Ramona +Renee +Sheryl +Susie +Willa +Beulah +Cassandra +Denise +Dixie +Earlene +Francis +Katheryn +Lela +Lizzie +Nita +Violet +Addie +Dortha +Elnora +Ivory +Jeanie +Larry +Lue +Reta +Retha +Rosa +Sammie +Sondra +Terri +Audrey +Cathryn +Cindy +Diann +Earline +Frankie +Henrietta +Inez +Jana +Jewel +Kathie +Katie +Katy +Leola +Leta +May +Rena +Sadie +Venita +Veronica +Agnes +Alicia +Amy +Barbra +Betsy +Bobby +Callie +Carmen +Cecilia +Dinah +Flossie +Francine +Gay +Harriet +Hilda +Jannie +Jennie +Jenny +Joe +Kerry +Lavern +Letha +Lorraine +Lottie +Louella +Lydia +Margarett +Molly +Naomi +Nora +Odessa +Peggie +Reva +Sandy +Saundra +Sherri +Tina +Valerie +Zella +Alfreda +Bennie +Blanche +Candace +Cathie +Charlie +Christene +Claudette +Deanna +Dena +Dona +Donnie +Effie +Elva +Florene +Freida +Gayla +Glinda +Glynda +Ina +Karla +Kathern +Ladonna +Lorine +Luella +Magnolia +Marcella +Marlene +Melanie +Nelda +Patti +Pearline +Sallie +Shelly +Toni +Vickey +Virgie +Aletha +Allene +Alta +Amanda +Angie +Beth +Beverley +Brinda +Celia +Charlean +Charles +Christina +Clementine +Cleo +Corine +Deloise +Dollie +Easter +Eileen +Eleanor +Eliza +Elma +Eunice +Fredia +Gearldine +Gertrude +Gwenda +Hope +James +Jerline +Jessica +Jill +Joanna +Joanne +Jonnie +Kathrine +Kaye +Leona +Loyce +Lynne +Mandy +Marilynn +Marla +Marta +Mavis +Melva +Michele +Neva +Nola +Roxie +Rutha +Samella +Tanya +Twyla +Versie +Linda +Mary +Brenda +Patricia +Carolyn +Barbara +Deborah +Betty +Shirley +Judy +Sandra +Sharon +Donna +Joyce +Martha +Susan +Rebecca +Nancy +Janice +Pamela +Dorothy +Peggy +Karen +Margaret +Gloria +Phyllis +Wanda +Carol +Elizabeth +Kathy +Janet +Connie +Glenda +Beverly +Debra +Marilyn +Helen +Doris +Virginia +Alice +Jo +Rose +Sherry +Patsy +Ruby +Charlotte +Paula +Bobbie +Annie +Evelyn +Rita +Judith +Cynthia +Kathryn +Diane +Bonnie +Vicki +Ruth +Teresa +Frances +Sheila +Emma +Sarah +Marsha +Cathy +Lois +Anita +Vickie +Willie +Wilma +Catherine +Jane +Gwendolyn +Jacqueline +Katherine +Rosie +Mildred +Diana +Jackie +Ann +Cheryl +Kathleen +Loretta +Christine +Laura +Norma +Anna +Rhonda +Lynda +Ethel +Juanita +Margie +Sue +Vera +Billie +Erma +Gail +Thelma +Regina +Clara +Ella +Mae +Marcia +Georgia +Joan +Lillie +Janie +Julia +Vivian +Jeanette +Annette +Delores +Sylvia +Jessie +Johnnie +Ruthie +Belinda +Unknown +Charlene +Shelia +Bettye +Deloris +Hazel +Maxine +Velma +Bertha +Jean +Louise +Terry +Alma +Bessie +Carla +Darlene +Earnestine +Victoria +Dianne +Edith +Edna +Joy +Dianna +Ellen +Marie +Gladys +Irene +Janis +Suzanne +Theresa +Susie +Verna +Eva +Jennifer +Kay +Mattie +Rosemary +Stella +Carrie +Ginger +Ida +Lana +Lillian +Sally +Sara +Geraldine +Nina +Beatrice +Delois +Dora +June +Yvonne +Angela +Faye +Becky +Bernice +Jacquelyn +Lula +Roberta +Vicky +Katie +Minnie +Paulette +Cora +Dorthy +Earlene +Flora +Geneva +Julie +Lucille +Lucy +Pearlie +Reba +Melinda +Myra +Rosetta +Anne +Audrey +Debbie +Irma +Jan +Lola +Marion +Dana +Della +Eddie +Elaine +Fannie +Hattie +Bettie +Claudia +Emily +Ernestine +Frankie +Freda +Jeanne +Jennie +Joann +Lottie +Melba +Nelda +Olivia +Alberta +Constance +Florence +Gracie +Joe +Josephine +Kathie +Lou +Lynn +Marjorie +Mona +Ollie +Ora +Priscilla +Rosa +Sharron +Stephanie +Viola +Estella +Ladonna +Lisa +Mable +Maria +Naomi +Nona +Deanna +Etta +Gayle +Laverne +Leslie +Marian +Melissa +Nora +Toni +Arlene +Cindy +Esther +Freddie +Grace +Jeannie +Lee +Monica +Patti +Patty +Pearl +Ramona +Robbie +Terri +Amanda +Beulah +Denise +Diann +Eunice +Glenna +Jamie +Lorene +Lorraine +Maggie +Myrtle +Pauline +Polly +Retha +Robin +Shelley +Valerie +Bonita +Caroline +Dixie +Essie +Eugenia +Ina +Nadine +Odessa +Peggie +Penny +Queen +Sadie +Sammie +Brinda +Carmen +Cecilia +Celia +Dolores +Earline +Fay +Francis +Glynda +Henrietta +Hilda +Jana +Jewel +Larry +Melanie +Melva +Nellie +Nola +Andrea +Bennie +Carlene +Cassie +Gayla +Iris +Jeanie +Jerry +Jimmie +Lela +Lena +Lue +Mamie +Marla +Marva +Millie +Nettie +Rena +Tommie +Ada +Addie +Amelia +Amy +Beth +Cherry +Claudette +Dinah +Donnie +Effie +Elsie +Ester +Eula +Harriet +Hellen +Jeannette +Jeri +Jerri +Jewell +Joanne +Johnette +Kitty +Leola +Lizzie +Marcella +Mickey +Nita +Ola +Pat +Rachel +Sheri +Sherrie +Tina +Trudy +Violet +Yolanda +Annetta +Cecelia +Christina +Daisy +Debora +Dolly +Flossie +Gerry +Gwenda +Inez +Jannie +Kathey +Kaye +Kerry +Laurie +Lessie +Lynne +Mandy +Maudie +May +Meredith +Michele +Miriam +Neva +Pearline +Penelope +Phillis +Regenia +Reta +Reva +Sharion +Tanya +Versie +Vickey +Virgie +Willa +Agnes +Alicia +Arlean +Ava +Barbra +Betsy +Blanchie +Carole +Cassandra +Cathie +Celestine +Charles +Claire +Clarice +Debrah +Dee +Dollie +Eleanor +Eloise +Gerri +Gussie +Gwen +Harriett +Iva +James +Janelle +Janette +Joanna +John +Johnny +Karin +Katheryn +Leah +Lenora +Leona +Lila +Linnie +Lorine +Louetta +Lucinda +Margo +Mavis +Melody +Opal +Patrice +Robyn +Sherri +Sherrye +Sondra +Tamara +Terrie +Treva +Twyla +Velda +Vernestine +Veronica +Zelma +Linda +Mary +Brenda +Deborah +Patricia +Barbara +Betty +Carolyn +Shirley +Judy +Sandra +Sharon +Donna +Rebecca +Pamela +Debra +Joyce +Karen +Nancy +Kathy +Martha +Susan +Dorothy +Janice +Peggy +Glenda +Carol +Gloria +Margaret +Wanda +Beverly +Janet +Jo +Cynthia +Elizabeth +Ruby +Connie +Marilyn +Phyllis +Sherry +Virginia +Paula +Doris +Patsy +Charlotte +Vickie +Alice +Diane +Helen +Vicki +Rose +Annie +Cathy +Bonnie +Rita +Sheila +Evelyn +Frances +Catherine +Judith +Kathryn +Bobbie +Ruth +Teresa +Marsha +Rosie +Sarah +Emma +Cheryl +Gwendolyn +Anita +Rhonda +Edna +Diana +Norma +Jane +Katherine +Kathleen +Lois +Ann +Jacqueline +Mildred +Wilma +Belinda +Loretta +Willie +Georgia +Joan +Juanita +Clara +Laura +Christine +Gail +Lynda +Billie +Erma +Janie +Shelia +Dianne +Lillie +Alma +Ethel +Mae +Unknown +Anna +Julia +Victoria +Vivian +Jean +Regina +Gladys +Marcia +Margie +Sally +Velma +Delois +Ella +Bertha +Charlene +Ellen +Janis +Jessie +Beatrice +Debbie +Sylvia +Theresa +Delores +Jackie +Jennifer +Mattie +Earnestine +Sue +Joy +Kay +Lynn +Thelma +Verna +Jeanette +Marie +Ruthie +Sara +Terry +Bettye +Suzanne +Constance +Dana +Edith +Elaine +Hazel +Stella +Vicky +Yvonne +Carla +Flora +Louise +Claudia +Eva +Freda +Julie +Lillian +Melba +Melinda +Minnie +Roberta +Susie +Dianna +Ginger +Jacquelyn +Johnnie +Bernice +Bessie +Darlene +Florence +Melissa +Vera +Angela +Becky +Ida +Jewel +Robin +Cora +Deloris +Geraldine +Irene +Lola +Marian +Terri +Anne +Jan +Joann +Lula +Mable +Marjorie +Maxine +Nina +Paulette +Reba +Rosemary +Rosetta +Alberta +Geneva +Jeanne +Laverne +Carrie +Jeannie +Josephine +Leslie +Lisa +Patti +Robbie +Valerie +Bettie +Della +Faye +Jamie +June +Marion +Ora +Ramona +Stephanie +Cindy +Dora +Earlene +Ernestine +Freddie +Hattie +Joe +Lee +Lenora +Lucy +Myrtle +Patty +Pearlie +Rachel +Essie +Esther +Frankie +Irma +Lana +Lela +Mona +Ollie +Audrey +Denise +Etta +Gracie +Jana +Lou +Maria +Priscilla +Toni +Addie +Annette +Brinda +Diann +Dixie +Earline +Elsie +Fannie +Glenna +Grace +Ina +Jeanie +Jimmie +Melanie +Nita +Nora +Penny +Tina +Eddie +Emily +Kathie +Lena +Leola +Lorene +Mamie +Melva +Myra +Polly +Sharron +Sherrie +Bennie +Cassandra +Cherry +Dolores +Katie +May +Nelda +Opal +Pauline +Queen +Rena +Retha +Sherri +Sondra +Trudy +Viola +Ada +Ava +Beth +Betsy +Bobby +Bonita +Carole +Dinah +Eloise +Eunice +Francis +Harriet +Inez +Janette +Jennie +Karla +Lorraine +Lucille +Lucinda +Lydia +Maggie +Marva +Nellie +Nona +Patrica +Pearl +Reta +Sammie +Shelley +Sonja +Tommie +Vickey +Amanda +Amy +Cathey +Celia +Daisy +Deloise +Dorthy +Dottie +Gayla +Iva +Jerri +Jill +Karon +Kattie +Ladonna +Lizzie +Lora +Lynne +Margarett +Ola +Rosa +Rosalyn +Alicia +Andrea +Benita +Carlene +Dolly +Eula +Gayle +Iris +Ivory +Jenny +Laurie +Leah +Lila +Mollie +Monica +Regenia +Veda +Virgie +Willa +Arlene +Beulah +Bobbye +Callie +Candace +Cathryn +Cecelia +Cecilia +Christina +Claudette +Debora +Dollie +Eleanor +Estella +Gay +Gertrude +Glinda +Henrietta +Hester +James +Janelle +Jannie +Jerry +Jonnie +Kathey +Larry +Lavern +Leona +Leta +Lettie +Lorine +Margret +Marlene +Melody +Michele +Michelle +Nadine +Naomi +Nettie +Pamala +Sallie +Saundra +Sheryl +Teressa +Violet +Zella +Bette +Beverley +Blanchie +Caroline +Charlie +Cherie +Christy +Clarice +Claudine +Cleta +Colleen +Darline +Deanna +Deborrah +Delilah +Dessie +Effie +Flossie +Gale +Gena +Georgette +Hellen +Hilda +Jannette +Jeannette +Jewell +Karin +Karolyn +Kaye +Lessie +Linnie +Lottie +Louella +Lue +Maudie +Millie +Mitzi +Odessa +Olivia +Rebekah +Rene +Sadie +Sandy +Tamara +Tonya +Velda +Veronica +Wonda +Linda +Mary +Deborah +Brenda +Patricia +Barbara +Carolyn +Sharon +Shirley +Debra +Betty +Sandra +Judy +Donna +Pamela +Karen +Joyce +Susan +Rebecca +Nancy +Marilyn +Janice +Martha +Dorothy +Peggy +Kathy +Janet +Elizabeth +Margaret +Beverly +Carol +Cynthia +Connie +Gloria +Phyllis +Wanda +Helen +Paula +Doris +Jo +Glenda +Rita +Virginia +Teresa +Sherry +Vicki +Diane +Vickie +Alice +Cathy +Frances +Marsha +Rose +Ruby +Sheila +Patsy +Charlotte +Rhonda +Kathryn +Annie +Gwendolyn +Catherine +Evelyn +Judith +Sarah +Ruth +Bonnie +Willie +Lois +Laura +Anita +Debbie +Jane +Katherine +Norma +Bobbie +Cheryl +Vivian +Rosie +Diana +Gail +Jean +Julia +Joan +Loretta +Wilma +Jacqueline +Kay +Juanita +Marcia +Ann +Kathleen +Janis +Belinda +Joy +Emma +Vera +Billie +Christine +Jackie +Vicky +Erma +Ethel +Terry +Darlene +Ellen +Regina +Anna +Janie +Lillie +Shelia +Unknown +Bernice +Bertha +Delores +Dianne +Jacquelyn +Jessie +Julie +Carla +Denise +Sue +Susie +Thelma +Theresa +Annette +Georgia +Louise +Minnie +Velma +Yvonne +Mildred +Sylvia +Angela +Clara +Ella +Jan +Johnnie +Mae +Mattie +Melissa +Margie +Marie +Verna +Alma +Hazel +Sally +Charlene +Geneva +Lillian +Becky +Dana +Deloris +Edna +Freda +Cora +Delois +Earnestine +Lynda +Maxine +Ruthie +Sara +Valerie +Edith +Eva +June +Patti +Ramona +Victoria +Anne +Bettye +Carrie +Della +Dianna +Frankie +Geraldine +Gladys +Katie +Robin +Dorthy +Elaine +Ginger +Irene +Jeanette +Jeannie +Josephine +Lana +Stephanie +Cindy +Dixie +Dora +Flora +Ida +Jamie +Lynn +Melinda +Pearlie +Toni +Vanessa +Veronica +Lenora +Leslie +Mona +Stella +Jennifer +Lee +Paulette +Sheryl +Suzanne +Bessie +Essie +Faye +Lena +Lisa +Lou +Melba +Rachel +Roberta +Terri +Amy +Audrey +Claudia +Constance +Earlene +Freddie +Lucille +Myra +Patty +Beatrice +Cathey +Eloise +Emily +Jeanie +Jewel +Jimmie +Lucy +Maria +Reba +Robbie +Alberta +Diann +Hattie +Henrietta +Jeanne +Laurie +Leona +Lula +Marcella +Marian +Marion +Marjorie +Michelle +Myrtle +Nina +Rosa +Sherri +Alicia +Dolores +Grace +Ladonna +Lorene +Mamie +Nellie +Ollie +Polly +Tina +Trudy +Yolanda +Cecilia +Daisy +Eddie +Esther +Fannie +Glenna +Gracie +Jana +Lola +Lydia +Naomi +Pauline +Retha +Rosemary +Rosetta +Viola +Beth +Colleen +Deloise +Effie +Eleanor +Eunice +Florence +Jennie +Jill +Joann +Lila +Mable +Marva +Nelda +Nettie +Nita +Nora +Penny +Sharron +Shelley +Tommie +Ava +Bennie +Bettie +Ernestine +Freida +Iris +Janette +Jannie +Jenny +Jerrie +Marlene +Mitzi +Sandy +Sherrie +Sondra +Vickey +Violet +Andrea +Arlene +Bobby +Bonita +Bridget +Carole +Clarice +Crystal +Estella +Ester +Fay +Francis +Harriet +Hilda +Jerry +Joe +Kathrine +Laverne +Leah +Lela +Letha +Lora +Marla +May +Melanie +Opal +Ophelia +Rebekah +Willa +Agnes +Amelia +Candace +Dawn +Deanna +Dena +Gale +Gayle +Gearldine +Ina +Karla +Loyce +Malinda +Nona +Ola +Olivia +Ora +Patrica +Shelly +Addie +Aletha +Althea +Angie +Barbra +Carmen +Cecelia +Christy +Debrah +Dee +Donnie +Earline +Etta +Faith +Jeannette +Josie +Kathie +Leola +Lorraine +Lottie +Marietta +Nadine +Queen +Renee +Reta +Rosalyn +Roxanne +Sammye +Tanya +Valeria +Zelda +Benita +Bernetta +Betsy +Carlene +Cassie +Ceola +Charlie +Charline +Claire +Claudette +Cleo +Danna +Delilah +Dinah +Dottie +Elnora +Eula +Gertrude +Gwenda +Holly +Inez +Irma +James +Janna +Jeri +Jerri +Jewell +Joanne +Judi +Judie +Karan +Karren +Katrina +Kaye +Kerry +Kim +Kimberly +Leanna +Lonnie +Lori +Luanne +Maggie +Margo +Mari +Marianne +Marta +Melody +Meredith +Mollie +Molly +Odessa +Pinkie +Priscilla +Regenia +Rena +Robert +Rosalind +Roxie +Sadie +Sidney +Terrie +Mary +Linda +Deborah +Brenda +Patricia +Barbara +Debra +Sandra +Carolyn +Sharon +Donna +Betty +Shirley +Pamela +Judy +Karen +Rebecca +Susan +Joyce +Cynthia +Kathy +Marilyn +Nancy +Janice +Beverly +Martha +Connie +Dorothy +Peggy +Janet +Jo +Sherry +Gloria +Vicki +Margaret +Elizabeth +Vickie +Carol +Rita +Teresa +Diane +Wanda +Glenda +Cathy +Phyllis +Rhonda +Rose +Doris +Alice +Virginia +Paula +Helen +Marsha +Sheila +Evelyn +Ruby +Charlotte +Debbie +Catherine +Kathryn +Patsy +Sarah +Bonnie +Bobbie +Ruth +Gail +Christine +Annie +Frances +Gwendolyn +Judith +Laura +Lois +Darlene +Katherine +Anita +Jacqueline +Jane +Rosie +Cheryl +Ethel +Lillie +Loretta +Carla +Janie +Julia +Mildred +Diana +Theresa +Willie +Georgia +Denise +Kay +Lisa +Norma +Robin +Dianne +Eva +Joan +Sue +Wilma +Ann +Jackie +Jeanette +Kathleen +Marcia +Terry +Erma +Velma +Anna +Bertha +Emma +Jean +Patti +Shelia +Sylvia +Vivian +Billie +Mattie +Melissa +Angela +Thelma +Edna +Ella +Jennifer +Maxine +Vera +Victoria +Becky +Clara +Johnnie +Ramona +Regina +Unknown +Carrie +Charlene +Ellen +Gladys +Ida +Bernice +Cindy +Delores +Janis +Joy +Julie +Leslie +Margie +Vanessa +Bessie +Louise +Sara +Hazel +Juanita +Mae +Ruthie +Terri +Toni +Belinda +Dorthy +Jacquelyn +Lynda +Audrey +Dianna +Jan +Lynn +Patty +Susie +Annette +Dana +Deloris +Melba +Sally +Vicky +Alma +Debora +Delois +Faye +Melinda +Suzanne +Yvonne +Constance +Geraldine +Josephine +Lana +Lou +Maria +Mona +Nina +Lee +Minnie +Roberta +Beatrice +Freddie +Ginger +Stella +Stephanie +Cora +Florence +Jeanne +June +Lucy +Ora +Anne +Edith +Elaine +Emily +Hattie +Irene +Jeannie +Nellie +Paulette +Rosemary +Valerie +Della +Diann +Geneva +Jana +Jessie +Lillian +Lucille +Marie +Marion +Melody +Nita +Penny +Rachel +Robbie +Veronica +Bettie +Bettye +Claudia +Etta +Flora +Katie +Ladonna +Lola +Myra +Sheryl +Verna +Eddie +Elsie +Essie +Esther +Frankie +Freda +Jennie +Jewel +Kathie +Leah +Lena +Marjorie +Melanie +Nora +Pearlie +Rosa +Tommie +Alberta +Bonita +Earnestine +Eula +Fannie +Gayla +Holly +Joann +Joe +Lottie +Lula +Marian +Michelle +Myrtle +Opal +Pauline +Carole +Cassandra +Dinah +Dixie +Glenna +Irma +Jamie +Janette +Jeanie +Jill +Maggie +Naomi +Ollie +Reba +Reta +Sondra +Yolanda +Ada +Amy +Beth +Dora +Estella +Eunice +Francis +Gertrude +Gracie +Jimmie +Karla +Laverne +Lela +Leona +Lorene +Mitzi +Pearl +Priscilla +Queen +Sherri +Viola +Betsy +Daisy +Eloise +Grace +Mable +Marla +Olivia +Renee +Sallie +Teri +Terrie +Veda +Wendy +Amanda +Arlene +Bennie +Cathie +Cecilia +Christina +Dawn +Earlene +Elnora +Greta +Jerry +Laurie +Lizzie +Lorraine +Nelda +Nettie +Nona +Ophelia +Ronda +Rosetta +Roxie +Sandy +Sharron +Shelley +Sherrie +Treva +Addie +Andrea +Carmen +Cecelia +Dale +Darla +Deanna +Dolly +Donnie +Dottie +Ernestine +Harriet +Jeri +Kerry +Lenora +Leola +Letha +Lila +Lora +Lydia +Lynette +Marcella +Marianne +Marva +May +Nadine +Rutha +Sonja +Sonya +Tamara +Trudy +Violet +Alicia +Alta +Ava +Candace +Colleen +Crystal +Dena +Effie +Eleanor +Ester +Freida +Gale +Gayle +Glinda +Hilda +Jacquline +Jenny +Jewell +Joanna +Kathrine +Kaye +Kimberly +Lucinda +Marguerite +Marlene +Melvin +Monica +Pearline +Peggie +Penelope +Polly +Tina +Vikki +Virgie +Alana +Alisa +Angie +Bobby +Brinda +Carlene +Caroline +Cathey +Celia +Charla +Charolette +Cherie +Christene +Dian +Dolores +Edwina +Goldie +Henrietta +Ina +Inez +Jannie +Joanne +Jocelyn +Kathi +Lavern +Lavonda +Leatha +Luann +Mamie +Maxcine +Merilyn +Miriam +Molly +Nan +Neva +Novella +Pansy +Pat +Pattie +Pearlene +Rebekah +Reda +Rena +Roxann +Shannon +Sheree +Sidney +Venita +Winona +Mary +Linda +Deborah +Brenda +Patricia +Debra +Sandra +Sharon +Donna +Barbara +Carolyn +Shirley +Pamela +Betty +Susan +Kathy +Joyce +Karen +Judy +Nancy +Rebecca +Cynthia +Janice +Janet +Teresa +Marilyn +Beverly +Connie +Martha +Sherry +Dorothy +Elizabeth +Paula +Gloria +Peggy +Vickie +Carol +Cheryl +Rose +Jo +Sheila +Cathy +Glenda +Diane +Doris +Rita +Vicki +Margaret +Rhonda +Debbie +Wanda +Phyllis +Helen +Alice +Charlotte +Catherine +Virginia +Patsy +Evelyn +Lisa +Marsha +Katherine +Anita +Robin +Gwendolyn +Bonnie +Ruby +Kathryn +Terry +Annie +Theresa +Laura +Lois +Ruth +Shelia +Judith +Emma +Sarah +Frances +Loretta +Kathleen +Bobbie +Vivian +Diana +Jane +Melissa +Regina +Jacqueline +Julia +Belinda +Darlene +Jackie +Ann +Juanita +Gail +Rosie +Christine +Ellen +Terri +Angela +Carla +Dianne +Joan +Vicky +Edna +Flora +Norma +Willie +Clara +Vanessa +Becky +Denise +Edith +Jennifer +Velma +Erma +Vera +Mae +Charlene +Dana +Delores +Ella +Ethel +Jean +Wilma +Georgia +Joy +Margie +Melanie +Patty +Janie +Julie +Melinda +Thelma +Anna +Lee +Mildred +Unknown +Verna +Beatrice +Bertha +Billie +Cindy +Jan +Leslie +Bernice +Kay +Louise +Marcia +Mona +Ramona +Alma +Annette +Eva +Janis +Lillie +Carrie +Gladys +Jacquelyn +Jamie +Jeanette +Marie +Ruthie +Yvonne +Dianna +Frankie +Lou +Sally +Sara +Sue +Suzanne +Toni +Jeannie +Tina +Elaine +Freda +Geneva +Gina +Jessie +Johnnie +Lynn +Renee +Roberta +Sylvia +Hazel +Ida +Jana +June +Mattie +Nina +Sheryl +Audrey +Delois +Deloris +Lynda +Maxine +Valerie +Debora +Earnestine +Marla +Susie +Essie +Irene +Lena +Melody +Minnie +Nora +Pearlie +Esther +Jenny +Mable +Melba +Myra +Nita +Ora +Rachel +Sheree +Victoria +Viola +Diann +Ginger +Holly +Janette +Patti +Paulette +Priscilla +Sherrie +Stephanie +Arlene +Bessie +Bettye +Bonita +Cecilia +Claudia +Cora +Emily +Fannie +Florence +Freddie +Lana +Laverne +Leah +Lillian +Marva +Polly +Robbie +Rosemary +Veronica +Faye +Jennie +Kim +Kimberly +Ladonna +Lori +Lucille +Lydia +Naomi +Penny +Retha +Roxanne +Trudy +Cassandra +Dixie +Josephine +Lola +Lula +Monica +Reba +Rosa +Sheri +Sherri +Tommie +Alberta +Amy +Bettie +Dolores +Dorthy +Harriet +Jill +Joe +Karla +Lavern +Lora +Lucy +Lynne +Maggie +Pauline +Stella +Anne +Deanna +Dorris +Elsie +Eula +Gayle +Gracie +Hattie +Henrietta +Iris +Irma +James +Jeanne +Katie +Kaye +Lorene +Marian +Marjorie +Myrtle +Nadine +Ollie +Rena +Reta +Rosetta +Sabrina +Sandy +Sondra +Vickey +Amanda +Benita +Callie +Candace +Constance +Daisy +Darla +Earlene +Eileen +Francis +Gayla +Geraldine +Ivory +Jeri +Jerri +Jimmie +Joann +Joni +Karan +Marlene +Nelda +Nellie +Nettie +Pamala +Terrie +Tracy +Violet +Virgie +Wendy +Ada +Carole +Cecelia +Cherie +Christy +Corine +Debrah +Eddie +Etta +Grace +Gwen +Jacquline +Jeanie +Jewel +Josie +Kitty +Laurie +Lela +Maria +Marion +May +Michele +Molly +Pam +Pat +Sammie +Teena +Yolanda +Alicia +Ava +Barbra +Beth +Betsy +Beverley +Celia +Christene +Christina +Deloise +Dora +Dorotha +Dottie +Ernestine +Eugenia +Flossie +Gale +Gay +Gena +Glinda +Harriett +Jewell +Kelly +Lenora +Lessie +Letha +Lorraine +Mamie +Marilynn +Nedra +Queen +Shelby +Tena +Wonda +Addie +Agnes +Bennie +Bernetta +Brinda +Cathrine +Cathryn +Charolette +Cherry +Chris +Dee +Della +Delma +Dena +Desiree +Dona +Dortha +Estella +Eunice +Faith +Felecia +Florene +Gaye +Greta +Hellen +Hilda +Iva +Ivy +Janelle +Jannie +Jeannette +Jerrie +Karin +Karon +Kathie +Lavonda +Lesa +Libby +Lilly +Luann +Lue +Michelle +Mickey +Myrna +Olivia +Opal +Pearline +Rae +Reda +Reva +Robyn +Ronda +Rosalind +Roxie +Sharion +Shelley +Sonja +Sonya +Teressa +Tressa +Venita +Mary +Linda +Deborah +Debra +Patricia +Brenda +Sharon +Barbara +Donna +Carolyn +Karen +Sandra +Pamela +Cynthia +Betty +Shirley +Susan +Joyce +Kathy +Rebecca +Teresa +Janet +Judy +Nancy +Connie +Janice +Elizabeth +Beverly +Dorothy +Carol +Sherry +Cheryl +Marilyn +Martha +Vickie +Wanda +Diane +Debbie +Peggy +Paula +Phyllis +Vicki +Margaret +Cathy +Gloria +Doris +Rita +Rose +Rhonda +Helen +Jo +Sheila +Laura +Charlotte +Anita +Glenda +Lisa +Virginia +Robin +Catherine +Shelia +Theresa +Gail +Marsha +Bonnie +Ruby +Bobbie +Alice +Angela +Katherine +Annie +Terri +Terry +Diana +Gwendolyn +Jacqueline +Sarah +Evelyn +Regina +Melissa +Ruth +Vivian +Wilma +Kathryn +Loretta +Ann +Darlene +Frances +Patsy +Rosie +Lois +Vicky +Denise +Melinda +Tina +Belinda +Cindy +Marcia +Sue +Carla +Jackie +Willie +Anna +Edna +Eva +Jane +Judith +Billie +Ellen +Annette +Kim +Becky +Christine +Janie +Julie +Norma +Julia +Mildred +Vanessa +Vera +Sylvia +Dianne +Emma +Jean +Joy +Juanita +Kay +Margie +Clara +Valerie +Ella +Erma +Hazel +Jennifer +Joan +Johnnie +Kathleen +Ruthie +Sheryl +Charlene +Debora +Georgia +Geraldine +Janis +Lillie +Lynn +Mae +Melody +Patti +Sally +Dana +Freda +Jeanette +Mattie +Stephanie +Thelma +Unknown +Delores +Ethel +Gladys +Jacquelyn +Jan +Karla +Lee +Delois +Josephine +Lola +Louise +Marie +Maxine +Velma +Victoria +Dora +Edith +Emily +Lou +Sherrie +Suzanne +Yvonne +Andrea +Bertha +Carrie +June +Melanie +Rachel +Toni +Viola +Alma +Leslie +Lynda +Nina +Pam +Patty +Penny +Sherri +Audrey +Elaine +Ginger +Kimberly +Maria +Paulette +Verna +Amy +Diann +Jeannie +Lula +Ora +Reba +Renee +Sharron +Bessie +Deloris +Dorthy +Faye +Gina +Irene +Jeanne +Joni +Lillian +Marla +Mona +Myra +Ramona +Robbie +Sara +Bernice +Ida +Laurie +Lucille +Nora +Roberta +Rosemary +Stella +Amanda +Essie +Gayla +Jeanie +Jessie +Mable +Melba +Michelle +Monica +Terrie +Yolanda +Claudia +Constance +Geneva +Grace +Gwenda +Jana +Beatrice +Carmen +Darla +Dianna +Ernestine +Jamie +Katie +Lena +Marjorie +Minnie +Sheri +Susie +Tanya +Christy +Deana +Earnestine +Eddie +Flora +Frankie +Gracie +Hattie +Holly +Janette +Jill +Karon +Lana +Lucy +Mitzi +Myrtle +Naomi +Nita +Ollie +Ronda +Roxie +Teri +Tracy +Cora +Dawn +Deanna +Irma +Joe +Kathie +Leah +Lenora +Lydia +Mamie +Marion +Pattie +Pearlie +Sandy +Teena +Veronica +Alberta +Angelia +Anne +Caroline +Cassandra +Cheri +Cherie +Della +Dixie +Esther +Etta +Ina +Inez +Iris +Jennie +Jimmie +Joann +Opal +Pat +Queen +Velda +Vickey +Beth +Bettye +Carole +Daisy +Eula +Florence +Freddie +Gertrude +Jenny +Jewel +Kathey +Leigh +Lela +Lesa +Lorraine +Maggie +Malinda +Marian +Molly +Nellie +Pamala +Patrica +Polly +Sonya +Tena +Arlene +Bonita +Charla +Christina +Debrah +Dolores +Donnie +Earlene +Flossie +Gayle +Glenna +Henrietta +Iva +James +Kaye +Kelly +Lawanda +Lori +Lorine +Lynne +Miriam +Nadine +Nelda +Olivia +Pauline +Rosa +Rosetta +Saundra +Sheena +Tommie +Trudy +Violet +Amelia +Barbra +Benita +Cathey +Christene +Colleen +Dale +Debroah +Dee +Ester +Eunice +Fannie +Francis +Gena +Gwen +Jeri +Jessica +Kattie +Ladonna +Lanita +Laurel +Lila +Lora +Lorene +Marianne +Marva +May +Millie +Nettie +Peggie +Renita +Sabrina +Sheree +Teressa +Agnes +Allie +Arnita +Ava +Brinda +Candace +Cheryle +Danna +Debby +Denice +Dolly +Eleanor +Elsie +Estella +Gay +Jannie +Jerri +Jewell +Joanna +John +Kerry +Lavern +Laverne +Leisa +Leona +Lettie +Libby +Lottie +Luann +Lucinda +Lynette +Maureen +Maxcine +Michele +Mickie +Mollie +Ocie +Odessa +Pearl +Priscilla +Regena +Rochelle +Rosalyn +Sadie +Tara +Tonya +Venita +Wendy +Willa +Yvette +Mary +Linda +Brenda +Debra +Deborah +Patricia +Donna +Sharon +Barbara +Karen +Cynthia +Pamela +Carolyn +Sandra +Kathy +Teresa +Susan +Shirley +Rebecca +Betty +Judy +Debbie +Joyce +Nancy +Janice +Carol +Marilyn +Janet +Elizabeth +Beverly +Sherry +Sheila +Vickie +Cheryl +Cindy +Connie +Rhonda +Diane +Vicki +Martha +Lisa +Paula +Gloria +Wanda +Cathy +Dorothy +Rita +Doris +Peggy +Phyllis +Rose +Margaret +Glenda +Charlotte +Anita +Laura +Evelyn +Robin +Jo +Helen +Terri +Alice +Gwendolyn +Virginia +Annette +Darlene +Ruby +Terry +Kathryn +Tina +Angela +Theresa +Denise +Diana +Belinda +Julie +Loretta +Bonnie +Ruth +Becky +Regina +Marsha +Katherine +Catherine +Frances +Shelia +Kim +Patsy +Tammy +Sarah +Bobbie +Rosie +Vicky +Carla +Gail +Melissa +Jacqueline +Julia +Valerie +Christine +Emma +Jane +Kathleen +Joy +Norma +Jackie +Ramona +Sylvia +Annie +Ellen +Judith +Kimberly +Jennifer +Juanita +Melinda +Patti +Sue +Dana +Lee +Leslie +Stephanie +Kay +Vanessa +Dianne +Jeanette +Mae +Alma +Ann +Clara +Janie +Janis +Pam +Vivian +Wilma +Anna +Delores +Joan +Lois +Penny +Ruthie +Mildred +Billie +Georgia +Melanie +Sherri +Delois +Edna +Joann +Louise +Lynn +Marcia +Bertha +Dianna +Elaine +Jacquelyn +Jeanne +Jeannie +Maria +Mona +Suzanne +Jamie +Jan +Jessie +Margie +Patty +Sheryl +Unknown +Yvonne +Carrie +Debora +Deloris +Erma +Eva +Jean +Renee +Thelma +Amy +Audrey +Bernice +Ella +Mattie +Ronda +Sandy +Susie +Toni +Verna +Faye +Gladys +Jana +Bessie +Della +Ethel +Frankie +Johnnie +Lou +Lynda +Marie +Monica +Nina +Priscilla +Willie +Charlene +Katie +Lula +Rachel +Sally +Tonya +Velma +Gayla +Grace +Irene +Jeanie +Karla +Laurie +Lori +Melody +Robbie +Roberta +Sara +Vickey +Victoria +Beatrice +Cassandra +Darla +Edith +Freda +Ginger +Hazel +Holly +Jill +Josephine +June +Lucy +Melba +Paulette +Tanya +Terrie +Claudia +Dora +Earnestine +Esther +Geraldine +Gina +Ida +Ladonna +Lesa +Lillie +Lydia +Mamie +Maxine +Nita +Rosemary +Sabrina +Vera +Veronica +Andrea +Arlene +Benita +Deanna +Diann +Emily +Fannie +Freddie +Geneva +Janette +Joni +Laverne +Leah +Lena +Lenora +Lucille +Mitzi +Pauline +Reba +Stella +Estella +Gayle +Lana +Lela +Lola +Marian +Marla +Marlene +Michelle +Nora +Sheri +Sherrie +Tammie +Alicia +Crystal +Gale +Gracie +Gwen +Jennie +Jeri +Jerri +Jerry +Jewel +Leisa +Lillian +Nellie +Opal +Retha +Rosa +Teressa +Viola +Amanda +April +Carole +Daisy +Dena +Eunice +Flora +Florence +Harriet +Jimmie +Lawanda +Lottie +Marcella +Marjorie +Neva +Pat +Patrica +Sharron +Trudy +Venita +Alberta +Amelia +Anne +Beth +Carmen +Christy +Dolores +Dorthy +Earlene +Eula +Henrietta +Jenny +Lea +Leigh +Lorene +Maggie +Marion +Minnie +Myra +Ora +Sonya +Stacy +Vonda +Yolanda +Beulah +Cecilia +Colleen +Eloise +Essie +Ira +Iris +James +Jeannette +Joe +Katrina +Leann +Nadine +Natalie +Nelda +Pamala +Pearl +Renita +Rochelle +Rosalind +Shannon +Shelly +Sondra +Suzan +Teri +Trina +Twila +Wonda +Ada +Bernadine +Bobby +Bonita +Candice +Candy +Cherie +Chris +Dawn +Dixie +Dottie +Felecia +Francis +Gertrude +Greta +Hattie +Hilda +Irma +Janey +Jody +Kelly +Lavern +Lesia +Lila +Lucinda +Lynne +Marilynn +Melisa +Regena +Regenia +Rosetta +Sheree +Sherrye +Tamara +Tena +Tracey +Valarie +Vernita +Adrienne +Annita +Avis +Bettie +Brinda +Candace +Caroline +Cathie +Cathryn +Cherri +Cherry +Christie +Cleo +Darleen +Debby +Dollie +Easter +Ernestine +Fay +Felicia +Glinda +Iva +Jewell +Joanne +Katheryn +Kathie +Kaye +Kerry +Lauren +Leona +Lora +Lorraine +Mabel +Mable +Madeline +Marianne +Miriam +Molly +Naomi +Olivia +Rena +Rene +Robyn +Roslyn +Sadie +Saundra +Shelby +Tracie +Tracy +Velda +Winona +Mary +Linda +Brenda +Patricia +Debra +Deborah +Karen +Barbara +Kathy +Donna +Sandra +Cynthia +Pamela +Sharon +Susan +Carolyn +Debbie +Teresa +Judy +Lisa +Shirley +Rebecca +Joyce +Janet +Betty +Nancy +Elizabeth +Cheryl +Carol +Janice +Connie +Peggy +Sheila +Sherry +Tammy +Paula +Marilyn +Vickie +Phyllis +Rhonda +Cathy +Cindy +Dorothy +Beverly +Rita +Martha +Wanda +Terri +Annette +Diane +Laura +Anita +Vicki +Jo +Rose +Diana +Margaret +Glenda +Gloria +Darlene +Regina +Terry +Doris +Julie +Becky +Robin +Melissa +Charlotte +Shelia +Virginia +Alice +Angela +Helen +Tina +Kim +Theresa +Ruby +Catherine +Kimberly +Loretta +Marsha +Bobbie +Frances +Sarah +Denise +Gail +Julia +Carla +Bonnie +Kathryn +Gwendolyn +Jane +Evelyn +Leslie +Dianne +Jackie +Ann +Kathleen +Patti +Valerie +Vivian +Belinda +Judith +Ruth +Melinda +Sherri +Dana +Jennifer +Katherine +Patsy +Willie +Anna +Patty +Rosie +Vanessa +Jacqueline +Melanie +Sandy +Kay +Vicky +Debora +Suzanne +Kelly +Tamara +Georgia +Lois +Mildred +Pam +Stephanie +Sue +Annie +Christine +Dianna +Ellen +Jean +Emma +Gina +Carrie +Jan +Sherrie +Elaine +Joan +Joann +Mona +Norma +Sara +Sheryl +Sylvia +Wilma +Amy +Billie +Delores +Jamie +Juanita +Lynn +Marcia +Mattie +Susie +Clara +Darla +Eva +Gladys +Joy +Lori +Edna +Ethel +Margie +Myra +Ramona +Victoria +Yvonne +Audrey +June +Mae +Maxine +Michelle +Robbie +Tammie +Diann +Ida +Lee +Lillian +Penny +Tami +Thelma +Arlene +Bertha +Beth +Ella +Erma +Jeannie +Karla +Lana +Lesa +Lillie +Verna +Cassandra +Janie +Janis +Jeanette +Josephine +Ladonna +Nina +Ronda +Deloris +Irene +Jacquelyn +Marie +Natalie +Renee +Rosemary +Ruthie +Sally +Terrie +Toni +Beatrice +Dawn +Delois +Freda +Ginger +Melody +Minnie +Monica +Roberta +Sharron +Tracy +Unknown +Charlene +Crystal +Lena +Louise +Maria +Marla +Nadine +Pauline +Priscilla +Reba +Stacy +Velma +Vera +Carmen +Cheri +Claudia +Deanna +Dorthy +Earnestine +Frankie +Jana +Leah +Marion +Pearlie +Polly +Sheri +Tanya +Vickey +Alfreda +Bernice +Geraldine +Grace +Janette +Jerri +Jill +Laurie +Leigh +Lucy +Teri +Veronica +Andrea +Carole +Cecilia +Edith +Gracie +Jessie +Jimmie +Johnnie +Katie +Lou +Lucille +Michele +Ora +Pat +Rosetta +Sonja +Tommie +Alberta +Amanda +Christina +Constance +Daisy +Dolores +Jeanne +Marian +Nita +Paulette +Rachel +Stella +Tamra +Tonya +Alma +Angie +Bessie +Candy +Colleen +Dena +Earlene +Faye +Freddie +Gale +Gayla +Gayle +Gwen +Iris +Joni +Katrina +Lavern +Nora +Ollie +Patrica +Alicia +Anne +Betsy +Bonita +Cora +Flora +Francis +Hazel +Holly +Hope +Jeanie +Jennie +Karon +Lea +Leona +Lydia +Malinda +Marjorie +Nettie +Reta +Rosa +Shannon +Shari +Shelly +Sonya +Viola +April +Cathryn +Chandra +Christie +Dixie +Eddie +Effie +Eloise +Esther +Eunice +Geneva +Hattie +Henrietta +Irma +Jewel +Laquita +Lawanda +Lela +Leta +Lola +Lora +Lorraine +Lynda +Lynne +Mamie +Marianne +Marietta +Marilynn +Nellie +Ola +Patrice +Rena +Renita +Retha +Robbin +Sonia +Tamela +Tena +Trina +Trudy +Violet +Wendy +Yolanda +Addie +Alisa +Angelia +Beckie +Bernestine +Cathey +Christy +Deana +Debby +Dee +Della +Donnie +Emily +Erin +Eula +Faith +Felicia +Florence +Gwenda +Janelle +Jeannette +Joanne +Kelley +Laverne +Lila +Lynette +Madeline +Maggie +Marlene +Molly +Naomi +Odessa +Olivia +Pattie +Robyn +Rosalind +Roxanne +Sherrill +Sondra +Tamera +Teena +Teressa +Tonia +Amelia +Bettie +Bettye +Brinda +Cherie +Cheryle +Danita +Danna +Dinah +Elisa +Elnora +Ernestine +Etta +Eugenia +Ina +Jeri +Johnny +Kathie +Kathrine +Kaye +Lanita +Lawanna +Leesa +Leisa +Lenora +Lorene +Lula +Merry +Millie +Mitzi +Myrtle +Nikki +Pamala +Pearl +Phillis +Queen +Sammie +Shelley +Sheree +Shirlene +Tresa +Valarie +Velda +Verlinda +Vikki +Mary +Linda +Brenda +Donna +Patricia +Debra +Karen +Deborah +Sandra +Cynthia +Sharon +Barbara +Kathy +Pamela +Debbie +Lisa +Teresa +Susan +Carolyn +Tammy +Betty +Shirley +Connie +Janice +Sheila +Rebecca +Janet +Beverly +Cindy +Nancy +Joyce +Rhonda +Sherry +Judy +Elizabeth +Cheryl +Vickie +Carol +Cathy +Wanda +Phyllis +Marilyn +Martha +Paula +Becky +Glenda +Anita +Laura +Peggy +Dorothy +Terri +Diane +Vicki +Margaret +Julie +Kimberly +Rita +Annette +Sarah +Gloria +Charlotte +Darlene +Helen +Terry +Angela +Shelia +Doris +Robin +Tina +Denise +Jo +Rose +Belinda +Virginia +Regina +Alice +Evelyn +Loretta +Theresa +Melissa +Kim +Pam +Diana +Gwendolyn +Patsy +Catherine +Katherine +Ruby +Anna +Gail +Valerie +Julia +Bobbie +Vanessa +Marsha +Kathryn +Ann +Carla +Frances +Jacqueline +Lori +Melinda +Tammie +Vivian +Bonnie +Lois +Ramona +Annie +Juanita +Melanie +Kelly +Sylvia +Patty +Rosie +Sandy +Leslie +Christine +Ellen +Jackie +Norma +Sherri +Dana +Jennifer +Ruth +Jean +Stephanie +Toni +Tracy +Andrea +Carrie +Jan +Billie +Debora +Jane +Joann +Judith +Lynn +Penny +Vicky +Dianna +Dianne +Elaine +Joy +Myra +Edna +Gina +Sheryl +Tami +Charlene +Louise +Mildred +Willie +Amy +Emma +Jamie +Kathleen +Mae +Michelle +Suzanne +Erma +Audrey +Ella +Marie +Reba +Sue +Jeanette +Tanya +Thelma +Beth +Hazel +Lee +Margie +Renee +Tamara +Terrie +Georgia +Gladys +Gwen +Patti +Paulette +Sara +Susie +Geraldine +Ginger +Janie +Jeanne +Kay +Minnie +Nina +Sally +Sherrie +Angelia +Bessie +Ida +Jacquelyn +Jeannie +Karla +Lillie +Melody +Tonya +Verna +Bonita +Cheri +Delois +Ethel +Lana +Lillian +Yvonne +Bertha +Clara +Deanna +Debby +Edith +June +Ladonna +Laurie +Lena +Mitzi +Robbie +Ronda +Velma +Victoria +Alicia +Arlene +Beatrice +Carmen +Eva +Flora +Janis +Jill +Lenora +Lesa +Marcia +Mona +Monica +Pauline +Ruthie +Veronica +Alma +Amanda +Angie +Darla +Dawn +Freda +Holly +Johnnie +Lola +Lydia +Lynda +Marjorie +Mattie +Michele +Sharron +Stacy +Tommie +Vera +Vickey +Wendy +Anne +Dena +Dora +Earnestine +Irene +Jana +Lou +Mable +Roberta +Cassandra +Cora +Freddie +Geneva +Jeri +Joan +Lea +Leah +Lynette +Maxine +Polly +Sonja +Tena +Yolanda +Christina +Danita +Diann +Dorthy +Emily +Frankie +Gayla +Janette +Jessie +Joanne +Josephine +Maria +Nora +Ora +Priscilla +Rosemary +Rosetta +Teri +Wilma +Amelia +April +Cecilia +Delores +Deloris +Dixie +Felecia +Jeannette +Joanna +Kelli +Lorraine +Lynne +Melba +Nellie +Sabrina +Shelley +Shelly +Sondra +Ava +Claudia +Debi +Debrah +Dinah +Dolores +Eunice +Fannie +Faye +Jeanie +Kelley +Lavern +Letha +Malinda +Pamala +Pat +Pattie +Rachel +Rosa +Rosalyn +Shannon +Shari +Sonya +Tresa +Trudy +Bernadette +Bernice +Betsy +Bettye +Bridget +Charla +Claudette +Daisy +Deana +Della +Essie +Felicia +Gale +Gay +Gayle +Grace +Hattie +Jacque +Jennie +Jerri +Jimmie +Jody +Joni +Karon +Kellie +Laverne +Leigh +Lora +Lucille +Lucy +Marla +Marlene +Myrtle +Natalie +Olivia +Patrica +Rena +Robert +Shawn +Sheree +Stella +Therese +Unknown +Violet +Ada +Agnes +Alberta +Bettie +Bobby +Bridgette +Christy +Constance +Crystal +Danna +Dee +Ernestine +Florence +Gena +Gretchen +James +Jenny +Kaye +Kerry +Kimberley +Lawanda +Liz +Lorene +Luanne +Lucinda +Marcella +Marilynn +Marion +Marva +Nadine +Nanette +Nita +Nona +Ollie +Patrice +Pearlie +Renita +Robyn +Shiela +Sonia +Sybil +Tamra +Venita +Vernice +Vikki +Viola +Camille +Candy +Carole +Caroline +Cassie +Celia +Cherie +Chris +Cindi +Colleen +Dale +Dollie +Earlene +Esther +Faith +Gracie +Inez +Irma +Janelle +Janna +Karol +Kathey +Kathi +Katie +Kayla +Leisa +Leona +Loraine +Lue +Lula +Marian +Marianne +Molly +Nelda +Opal +Ophelia +Queen +Robbin +Rochelle +Rosalind +Sadie +Sherrill +Stacey +Tammi +Tana +Tracie +Twila +Twyla +Valarie +William +Wonda +Mary +Linda +Donna +Brenda +Lisa +Karen +Patricia +Sandra +Debra +Cynthia +Pamela +Teresa +Barbara +Deborah +Sharon +Debbie +Kathy +Susan +Tammy +Carolyn +Janet +Rhonda +Janice +Betty +Cindy +Shirley +Connie +Sheila +Beverly +Joyce +Sherry +Elizabeth +Carol +Cheryl +Nancy +Rebecca +Angela +Judy +Kimberly +Paula +Martha +Robin +Tina +Terri +Phyllis +Laura +Wanda +Melissa +Cathy +Marilyn +Vickie +Anita +Annette +Diane +Doris +Rose +Kim +Peggy +Regina +Rita +Shelia +Glenda +Sarah +Julie +Theresa +Carla +Dana +Dorothy +Vicki +Charlotte +Alice +Margaret +Becky +Gloria +Bonnie +Jo +Ruby +Diana +Gwendolyn +Penny +Terry +Lori +Denise +Virginia +Kelly +Loretta +Tammie +Jackie +Melinda +Bobbie +Belinda +Kathryn +Jacqueline +Stephanie +Helen +Pam +Tracy +Katherine +Evelyn +Valerie +Darlene +Sandy +Frances +Patsy +Anna +Leslie +Gina +Melanie +Catherine +Jamie +Suzanne +Marsha +Christine +Jan +Lois +Toni +Michelle +Rosie +Ruth +Vicky +Joy +Carrie +Julia +Lynda +Patti +Vanessa +Edna +Judith +Kathleen +Melody +Ann +Charlene +Dianna +Dianne +Gail +Jane +Sherri +Georgia +Jennifer +Renee +Sylvia +Vivian +Ellen +Juanita +Lee +Lillie +Janie +Joann +Kay +Teri +Willie +Andrea +Delores +Thelma +Beth +Deanna +Jeanette +Laurie +Marcia +Yvonne +Clara +Joan +Lesa +Sheryl +Sonya +Susie +Tamara +Tanya +Darla +Geraldine +Ginger +Jean +Jeannie +Marie +Annie +Erma +Eva +Felicia +Jacquelyn +June +Ladonna +Lynn +Shelly +Tonya +Wendy +Amy +Audrey +Bertha +Holly +Jessie +Myra +Patty +Alma +Billie +Hazel +Jerri +Lora +Mona +Ramona +Rosemary +Sondra +Verna +Wilma +Amanda +Delois +Elaine +Freda +Janis +Lola +Velma +Victoria +Della +Earnestine +Emma +Ida +Johnnie +Lillian +Lorraine +Lorrie +Sara +Sherrie +Bessie +Cassandra +Cheri +Dawn +Debora +Edith +Gayla +Jana +Karla +Minnie +Rachel +Sonja +Tena +Terrie +Dena +Ella +Frankie +Gladys +Irene +Lana +Leah +Maria +Mattie +Melba +Monica +Nina +Norma +Reba +Sally +Sheri +Stacy +Sue +Vera +Angie +Beatrice +Carmen +Josephine +Mae +Margie +Michele +Nita +Ronda +Ruthie +Shari +Veronica +April +Bonita +Christy +Diann +Grace +Katie +Kimberley +Leigh +Louise +Marjorie +Maxine +Mildred +Paulette +Pauline +Polly +Robbie +Roberta +Rosetta +Tracey +Alicia +Arlene +Bernice +Cora +Ethel +Fannie +Geneva +Gwen +James +Joe +Lavern +Lou +Lucinda +Marla +Shannon +Tami +Tammi +Tommie +Yolanda +Alberta +Anne +Benita +Constance +Crystal +Deloris +Felecia +Jill +Johnna +Katrina +Leisa +Liz +Lula +Lynette +Marian +Myrtle +Nora +Ollie +Opal +Priscilla +Trudy +Vickey +Addie +Angelia +Candace +Christina +Cindi +Debby +Dorthy +Ernestine +Flora +Florence +Hattie +Jeanne +Jeannette +Joanna +Kerry +Kristi +Lawanda +Lenora +Lucille +Marion +Mitzi +Natalie +Nellie +Olivia +Rena +Retha +Sharron +Shelley +Tracie +Allison +Bobby +Cecelia +Colleen +Danna +Dee +Ester +Esther +Eugenia +Eunice +Francis +Gay +Gena +Gracie +Irma +Jennie +Jenny +Jeri +Jerry +Kelley +Lesia +Lorene +Marcella +May +Rene +Rosa +Rosalind +Suzette +Treva +Yvette +Aretha +Ava +Candy +Caroline +Cecilia +Charla +Cherie +Daisy +Danita +Deana +Deann +Dolores +Etta +Fonda +Freddie +Gale +Gayle +Glenna +Greta +Ivy +Joanne +Kathie +Kayla +Lea +Leann +Lena +Lorie +Lucy +Marlene +Missy +Pat +Pattie +Sadie +Sandi +Saundra +Sheree +Stella +Tamra +Teressa +Unknown +Ada +Alesia +Aletha +Amelia +Betsy +Bettye +Beverley +Bridgette +Caren +Carlene +Carlotta +Celeste +Cherry +Corine +Debi +Debrah +Denice +Earline +Elnora +Emily +Faye +Gretchen +Inez +Iva +Janna +Jeanetta +Jeanie +Jeanna +Jerrie +Jimmie +Jody +Karon +Kathi +Kelli +Latricia +Laverne +Lavonda +Lawanna +Lila +Lydia +Lynnette +Marcy +Pamala +Robert +Rochelle +Rosalyn +Scarlett +Shellia +Tanna +Tara +Teena +Tresa +Valarie +Valeria +Viola +Wonda +Mary +Linda +Brenda +Lisa +Karen +Sandra +Donna +Patricia +Teresa +Debra +Cynthia +Sharon +Deborah +Pamela +Susan +Debbie +Tammy +Kathy +Barbara +Carolyn +Sherry +Sheila +Rhonda +Angela +Cheryl +Shirley +Rebecca +Janice +Kimberly +Cindy +Laura +Nancy +Elizabeth +Connie +Janet +Robin +Tina +Judy +Beverly +Terri +Betty +Carol +Joyce +Paula +Carla +Vickie +Jacqueline +Martha +Phyllis +Marilyn +Kim +Cathy +Denise +Gloria +Wanda +Diane +Anita +Regina +Vicki +Charlotte +Rita +Dorothy +Shelia +Melissa +Becky +Julie +Theresa +Glenda +Lori +Peggy +Diana +Margaret +Evelyn +Kelly +Rose +Melinda +Doris +Sarah +Annette +Tracy +Gwendolyn +Catherine +Sherri +Jackie +Tanya +Virginia +Belinda +Jennifer +Darlene +Melanie +Stephanie +Penny +Dana +Michelle +Alice +Julia +Marsha +Valerie +Ann +Terry +Leslie +Jo +Loretta +Bobbie +Helen +Ruth +Bonnie +Katherine +Gail +Laurie +Pam +Toni +Vicky +Frances +Renee +Vanessa +Vivian +Carrie +Gina +Jeanette +Kathryn +Tammie +Beth +Deanna +Suzanne +Jamie +Lois +Ruby +Christine +Tonya +Joy +Sandy +Dianna +Janie +Lee +Sonya +Amy +Annie +Judith +Ladonna +Marcia +Monica +Kathleen +Norma +Rosie +Jane +Karla +Ramona +Yvonne +Audrey +Charlene +Darla +Dianne +Lesa +Patsy +Robbie +Wilma +Anna +Dawn +Eva +Joan +Joann +Lana +Lynn +Rachel +Ronda +Sylvia +Terrie +Veronica +Willie +Clara +Emma +Jana +Jill +Juanita +Mildred +Patti +Patty +Edith +Lillie +Lynda +Sara +Shari +Tamara +Angie +Ellen +Felicia +Jan +Mae +Melody +Myra +Rosemary +Shelly +Sherrie +Sheryl +Cassandra +Edna +Jacquelyn +Lorie +Mona +Nina +Stacy +Sue +Kay +Lora +Velma +Wendy +Bernice +Billie +Dena +Frankie +Gayla +Georgia +Ginger +Holly +Lydia +Marie +Marla +Michele +Vera +Andrea +Carmen +Debora +Ethel +Jeanne +Jerri +Maria +Natalie +Sheri +Susie +Angelia +Bridget +Dee +Delores +Erma +Josephine +Leah +Nita +Sally +Shannon +Teri +Alma +Bertha +Cheri +Crystal +Ida +Jeannie +June +Leigh +Lorraine +Lucinda +Roberta +Sondra +Sonja +Tami +Thelma +Amanda +Beatrice +Bonita +Claudia +Constance +Delois +Deloris +Elaine +Jacquline +Joanne +Kristi +Lola +Louise +Sabrina +Shelley +Tena +Tracey +Vickey +Victoria +Yolanda +Anne +Christy +Dora +Ella +Francis +Freda +Hazel +Janis +Kelley +Lea +Lou +Stella +Tamra +Alicia +Betsy +Deana +Diann +Dixie +Dorthy +Gladys +Jean +Lesia +Lillian +Lula +Minnie +Nora +Traci +Viola +Allison +Annetta +Bessie +Candy +Cecilia +Chris +Christina +Cora +Danita +Della +Edwina +Flora +Gwen +Irene +Joanna +Joni +Katie +Kelli +Kellie +Malinda +Margie +Mattie +Maxine +Nanette +Naomi +Priscilla +Reba +Rosa +Velvet +Verna +Ada +Benita +Carole +Caroline +Felecia +Jeanie +Jimmie +Johnnie +Karon +Kimberley +Lenora +Lynette +Mamie +Melba +Robert +Robyn +Rosetta +Ruthie +Scarlett +Sharron +Trina +Trudy +Valarie +Yvette +Brigitte +Cathey +Debrah +Dolores +Elnora +Eugenia +Eula +Fannie +Gay +Geneva +Geraldine +Greta +Hattie +Jessica +Jessie +Jewell +Kerry +Lavern +Lecia +Lela +Liz +Loria +Lorrie +Lynne +Marcella +Marjorie +Rena +Renita +Rosalind +Stacey +Tracie +Amber +Cara +Colleen +Daisy +Donnie +Dottie +Elisa +Faith +Grace +Harriet +James +Jayne +Jennie +Jeri +Leann +Libby +Lila +Marion +Meredith +Missy +Nellie +Nettie +Ora +Paulette +Pauline +Phillis +Polly +Rene +Retha +Robbin +Shawn +Shelby +Tamela +Teena +Tonja +Tresa +Valeria +Alison +April +Ava +Bobby +Callie +Carma +Cecelia +Charles +Cherry +Damita +Debby +Earnestine +Eddie +Elsie +Emily +Faye +Gale +Glenna +Glinda +Gracie +Ivory +Jacquelin +Jeana +Jewel +Jodi +Johnna +Josie +Kathrine +Kendra +Leisha +Lelia +Leona +Letha +Lorene +Lottie +Mable +Marian +Mavis +Mechelle +Melisa +Michael +Miriam +Mitzi +Nelda +Nikki +Nona +Olivia +Pamala +Patrica +Roxanne +Sallie +Sammie +Saundra +Sheron +Sonia +Tara +Tommie +Tonia +Twyla +Violet +Zelda +Mary +Lisa +Brenda +Karen +Donna +Linda +Teresa +Sandra +Tammy +Cynthia +Patricia +Sharon +Barbara +Pamela +Debra +Deborah +Sherry +Susan +Debbie +Sheila +Kimberly +Kathy +Angela +Rhonda +Carolyn +Tina +Cheryl +Janet +Cindy +Connie +Rebecca +Elizabeth +Carol +Judy +Robin +Shirley +Beverly +Carla +Jacqueline +Anita +Terri +Laura +Betty +Janice +Paula +Lori +Melissa +Kim +Vickie +Nancy +Regina +Joyce +Wanda +Martha +Dorothy +Julie +Diane +Phyllis +Cathy +Vicki +Rose +Gloria +Melanie +Sherri +Jennifer +Tracy +Becky +Dana +Charlotte +Rita +Stephanie +Kelly +Marilyn +Melinda +Shelia +Annette +Terry +Penny +Sarah +Tanya +Jo +Glenda +Helen +Tammie +Peggy +Valerie +Belinda +Theresa +Virginia +Margaret +Gwendolyn +Leslie +Pam +Denise +Diana +Michelle +Darlene +Evelyn +Loretta +Doris +Tonya +Jackie +Laurie +Anna +Beth +Bobbie +Julia +Catherine +Bonnie +Gina +Frances +Marsha +Alice +Deanna +Jamie +Marcia +Vanessa +Jeanette +Kathleen +Katherine +Kathryn +Tamara +Vicky +Amy +Ruby +Sonya +Gail +Lois +Shelly +Angelia +Sandy +Toni +Carrie +Felicia +Renee +Ruth +Holly +Stacy +Sylvia +Dianna +Lee +Andrea +Judith +Vivian +Wendy +Christine +Ginger +Jane +Mona +Ronda +Shari +Audrey +Edna +Ellen +Joy +Juanita +Karla +Melody +Patty +Suzanne +Lesa +Margie +Michele +Shannon +Veronica +Yvonne +Anne +Darla +Dawn +Janie +Rosie +Dena +Ethel +Jacquline +Jan +Monica +Norma +Sara +Ann +Carmen +Emma +Leigh +Patsy +Ramona +Sherrie +Tami +Angie +Erma +Jana +Joan +Ladonna +Victoria +Alicia +Jacquelyn +Kelley +Lillie +Lynn +Marla +Natalie +Rachel +Sheryl +Charlene +Delores +Edith +Lana +Marie +Rosemary +Sue +Annie +Cecilia +Clara +Jean +Joann +Kay +Leah +Susie +Terrie +Thelma +Amanda +Bernice +Caroline +Christina +Crystal +Daphne +Dianne +Ella +Jill +Katrina +Louise +Maria +Nina +Tracey +Willie +Billie +Cassandra +Georgia +Jeannie +Lillian +Tena +Wilma +Cheri +Debora +Johnnie +Lou +Mamie +Polly +Sally +Shelley +Tonia +Yolanda +Christy +Esther +Gena +Grace +Leisa +Lora +Maxine +Robbie +Roberta +Ruthie +Sabrina +Sheri +Stella +Alma +Bonita +Eva +Gay +Jeanie +Jennie +Lea +Mitzi +Myra +Nita +Teri +Vera +Diann +Faye +Francis +Gladys +Gwen +Ida +Jerri +Jessie +Lola +Lorie +Lydia +Marion +Mildred +Patti +Paulette +Sharron +Tracie +Alisa +Allison +Arlene +Bridget +Colleen +Deana +Gayla +Hazel +Jayme +Jenny +Kelli +Kimberley +Laverne +Liz +Lorraine +Lynda +Lynette +Mattie +Renita +Robyn +Roxie +Sondra +Teena +Traci +April +Beatrice +Bertha +Carole +Constance +Debby +Elaine +Eugenia +Frankie +Jeanne +Jeannette +Joanna +Kristi +Lena +Lenora +Lula +Marjorie +Nora +Pennie +Reba +Sonia +Stacey +Tammi +Teressa +Twila +Valarie +Velma +Verna +Alison +Candace +Christi +Deloris +Donita +Earnestine +Essie +Freda +Geraldine +Greta +Heather +Janette +Janis +Joanne +Josephine +Kellie +Kerri +Lauri +Leann +Leola +Libby +Lucretia +Mable +Mae +Marguerite +Nellie +Nettie +Ollie +Priscilla +Rena +Roxanne +Saundra +Sonja +Tamela +Tresa +Trudy +Wonda +Bessie +Bettie +Chandra +Chris +Cora +Daisy +Deidre +Delois +Denita +Dora +Dorthy +Eula +Felecia +Florence +Irene +Jeri +Joni +Laquita +Lawanda +Lesia +Lucille +Malinda +Marcella +Marian +Marianne +Miriam +Naomi +Pauline +Retha +Shawn +Sophia +Tara +Trina +Valorie +Vernita +Alberta +Alesia +Alfreda +Allyson +Bridgette +Callie +Cecelia +Celia +Christie +Clarissa +Claudia +Danita +Danna +David +Dawna +Dee +Della +Denice +Edwina +Estella +Fannie +Francine +Freddie +Genevieve +Gracie +Hattie +Henrietta +Irma +Janna +Jayne +Jeanna +Jerry +Joanie +Johnny +June +Lauren +Letha +Lynne +Merry +Minnie +Missy +Nena +Ora +Pamala +Patrica +Pearl +Phillis +Rene +Rochelle +Rosa +Rosetta +Scarlett +Shela +Trena +Velvet +Venita +Vernice +Vickey +Vonda +Yvette +Lisa +Mary +Tammy +Donna +Karen +Linda +Brenda +Sandra +Teresa +Patricia +Sharon +Cynthia +Pamela +Angela +Susan +Kimberly +Barbara +Deborah +Tina +Debra +Laura +Carolyn +Rhonda +Sheila +Sherry +Cindy +Connie +Kathy +Janet +Rebecca +Lori +Elizabeth +Paula +Cheryl +Debbie +Jacqueline +Melissa +Robin +Carla +Terri +Janice +Beverly +Carol +Kelly +Shirley +Nancy +Vickie +Anita +Joyce +Betty +Judy +Marilyn +Tracy +Margaret +Kim +Cathy +Regina +Wanda +Shelia +Jennifer +Gloria +Sarah +Dana +Dorothy +Vicki +Tammie +Becky +Rita +Phyllis +Sherri +Stephanie +Charlotte +Michelle +Martha +Melanie +Helen +Valerie +Denise +Melinda +Virginia +Annette +Leslie +Terry +Doris +Glenda +Theresa +Julie +Tamara +Peggy +Rose +Tonya +Gina +Penny +Belinda +Diane +Jamie +Gwendolyn +Evelyn +Jackie +Tanya +Vicky +Diana +Jo +Vanessa +Laurie +Julia +Katherine +Sonya +Ann +Loretta +Pam +Marsha +Shelly +Suzanne +Catherine +Monica +Toni +Darla +Deanna +Jane +Darlene +Melody +Stacy +Alice +Amy +Andrea +Carrie +Sandy +Christine +Beth +Felicia +Judith +Kathleen +Michele +Terrie +Vivian +Georgia +Joy +Norma +Ruby +Bobbie +Bonnie +Maria +Renee +Sara +Sylvia +Annie +Ruth +Stacey +Anna +Ellen +Lee +Lesa +Ramona +Shannon +Jill +Leah +Lora +Audrey +Christy +Felecia +Ginger +Kathryn +Tami +Angelia +Dianna +Dianne +Frances +Jeanette +Juanita +Karla +Sherrie +Veronica +Marcia +Patty +Cassandra +Holly +Kelley +Kelli +Ladonna +Margie +Natalie +Patsy +Sheri +Dawn +Eva +Marla +Susie +Vera +Wendy +Crystal +Lana +Lynn +Patti +Thelma +Alicia +Angie +Gail +Jana +Mildred +Mona +Rosie +Shelley +Yvonne +Debora +Edna +Gayla +Nina +Priscilla +Ronda +Willie +Wilma +April +Dena +Janie +Kay +Kimberley +Robbie +Sheryl +Teri +Tracey +Clara +Dee +Ella +Jacquelyn +Lois +Sondra +Sonja +Victoria +Alisa +Billie +Carmen +Emma +Jan +Jean +Jeannie +Katrina +Kristi +Lorrie +Myra +Roberta +Shari +Allison +Amanda +Anne +Bertha +Charlene +Delois +Delores +Frankie +Freda +Jerri +Joann +Lea +Leigh +Lesia +Lillie +Lucille +Lynda +Elaine +Flora +Jenny +Johnna +Lydia +Yolanda +Beatrice +Caroline +Cheri +Christina +Constance +Daphne +Deana +Ethel +Gena +Grace +Jacquline +Joanna +Kara +Kellie +Kerri +Lola +Lorie +Mae +Marian +Marie +Minnie +Tonia +Alma +Bridget +Danita +Edith +Jeanne +Kayla +Laverne +Lynne +Mattie +Mitzi +Nita +Sally +Sue +Tamela +Teressa +Traci +Amelia +Benita +Bridgette +Carole +Christie +Cora +Francis +Gay +Gayle +Janette +Janis +Jessie +Katie +Lenora +Paige +Paulette +Reba +Renita +Robyn +Rosemary +Ruthie +Scarlett +Sonia +Tena +Angel +Avis +Bessie +Betsy +Bonita +Candy +Cara +Della +Deloise +Diann +Dina +Earnestine +Erma +Florence +Joan +Johnnie +Joni +June +Leona +Lorraine +Lou +Lynette +Marion +Maxine +Nanette +Patrice +Rena +Rochelle +Sabrina +Sharron +Shelby +Stacie +Stella +Tracie +Velma +Vickey +Ava +Bernice +Bobbi +Brinda +Candi +Cecilia +Claudia +Debby +Dorthy +Eloise +Eunice +Geraldine +Gracie +Ida +James +Jeannette +Jerrie +Josephine +Kerry +Lena +Letha +Lillian +Lorri +Louise +Lucinda +Lucy +Melisa +Nettie +Rachel +Rosetta +Shana +Shawn +Shawna +Valarie +Valeria +Alana +Alesia +Amber +Annetta +Beverley +Bridgett +Cherry +Christi +Denice +Edwina +Essie +Fannie +Glynis +Gretchen +Jessica +Karon +Lavern +Lolita +Loria +Malinda +Marjorie +Melva +Naomi +Nellie +Pamala +Pattie +Polly +Retha +Suzy +Tara +Tommie +Tresa +Verna +Violet +Zina +Addie +Antoinette +Cecelia +Celeste +Cherie +Deloris +Dona +Dora +Earlene +Ester +Gigi +Gladys +Glory +Heather +Hope +Janelle +Jayme +Jewell +Jimmie +Joanne +Kristy +Lawanda +Leann +Leisa +Lela +Lilly +Liz +Lula +Mamie +Marcella +Marcy +Marlene +Marty +Millie +Nola +Nona +Pearlie +Rosalind +Roxanne +Suzan +Tamera +Tammi +Tamra +Tamyra +Teresia +Trena +Trina +Velvet +Viola +Wonda +Lisa +Mary +Donna +Karen +Tammy +Kimberly +Linda +Patricia +Pamela +Angela +Teresa +Sandra +Cynthia +Brenda +Susan +Sharon +Tina +Carolyn +Sherry +Sheila +Barbara +Deborah +Rhonda +Debra +Connie +Robin +Rebecca +Kathy +Laura +Carol +Paula +Melissa +Elizabeth +Debbie +Jacqueline +Janet +Cheryl +Carla +Cindy +Dana +Lori +Kelly +Stephanie +Vickie +Kim +Terri +Janice +Betty +Shirley +Tracy +Anita +Nancy +Beverly +Julie +Regina +Joyce +Shelia +Wanda +Jennifer +Michelle +Marilyn +Judy +Martha +Melanie +Leslie +Theresa +Charlotte +Sarah +Melinda +Phyllis +Rita +Tonya +Diana +Glenda +Sherri +Dorothy +Penny +Peggy +Diane +Loretta +Margaret +Terry +Annette +Gloria +Monica +Becky +Valerie +Belinda +Jamie +Rose +Vicki +Amy +Denise +Doris +Jackie +Alice +Deanna +Cathy +Katherine +Virginia +Gina +Christine +Patty +Stacy +Tanya +Jo +Helen +Felicia +Gwendolyn +Tammie +Shelly +Pam +Shannon +Wendy +Jill +Ruth +Michele +Vanessa +Anna +Darlene +Marsha +Tracey +Darla +Renee +Vicky +Beth +Julia +Leigh +Tamara +Amanda +Bonnie +Catherine +Laurie +Sonya +Ruby +Yvonne +Andrea +Angelia +Dawn +Ladonna +Lesa +Lora +Ronda +Angie +Carrie +Evelyn +Kathryn +Sandy +Veronica +Alicia +April +Holly +Joy +Judith +Karla +Lana +Lois +Ramona +Bobbie +Kelli +Toni +Vivian +Audrey +Ginger +Leah +Lynn +Rosie +Sue +Suzanne +Frances +Georgia +Jana +Lee +Norma +Patti +Sheri +Stacey +Billie +Dianna +Ellen +Jeanette +Kathleen +Sara +Shelley +Willie +Ann +Emma +Katrina +Melody +Sonja +Sylvia +Yolanda +Cassandra +Juanita +Margie +Shari +Gayla +Jacquelyn +Jane +Janie +Kelley +Maria +Marie +Patsy +Rachel +Christina +Dena +Gail +Jeannie +Kristi +Lynda +Robbie +Susie +Traci +Alisa +Annie +Charlene +Cora +Delores +Jerri +Kellie +Kimberley +Valarie +Carmen +Constance +Elaine +Joann +Natalie +Polly +Priscilla +Trina +Verna +Allison +Anne +Caroline +Clara +Crystal +Edna +Erma +Jean +Kay +Lillie +Roberta +Teri +Vera +Eugenia +Eva +Lorrie +Sally +Shawn +Sherrie +Sheryl +Tracie +Christy +Daphne +Dianne +Felecia +Hope +Joan +Joe +Lena +Lillian +Marcia +Marla +Mildred +Nora +Rosa +Ruthie +Tara +Vonda +Zina +Danita +Edith +Ethel +Gena +Jessie +Johnnie +Kerry +Lea +Lenora +Lorri +Louise +Mattie +Mona +Myra +Nita +Paulette +Rochelle +Rosemary +Sondra +Tamera +Tami +Thelma +Valeria +Velma +Wilma +Alison +Alma +Benita +Bridget +Chris +Ella +Fonda +Geraldine +Jan +Lorene +Monique +Renita +Robbin +Robyn +Stacie +Yvette +Beatrice +Bonita +Bridgette +Cecilia +Deana +Debora +Diann +Dora +Frankie +Grace +Ida +Jacquline +Jenny +Jerry +Leanne +Lydia +Mitzi +Patrica +Rosetta +Tammi +Terrie +Bernice +Bertha +Bobby +Cherry +Christi +Delois +Deloris +Erin +Esther +Eunice +Flora +Francis +Freda +Geneva +Gladys +Jimmie +Lucinda +Mae +Marjorie +Nina +Pauline +Rosalind +Shawna +Tonia +Tonja +Viola +Alberta +Amelia +Ava +Betsy +Candace +Cherie +Deann +Dee +Della +Denita +Faith +Gayle +Irene +Iris +Jeanie +Jena +Jessica +Johnna +Josephine +Kristy +Lesia +Libby +Lola +Lorie +Lynette +Maggie +Marian +Melissia +Rebekah +Sharron +Tricia +Avis +Candy +Cara +Cecelia +Chandra +Colleen +Dedra +Denice +Dina +Djuana +Donita +Eileen +Elisa +Etta +Gale +Hattie +Hazel +James +Janna +Jannie +June +Kellye +Kristen +Leann +Leisa +Liz +Lorraine +Lucy +Malinda +Marcy +Marion +Marty +Mavis +Mollie +Rachelle +Reba +Shirl +Sonia +Stella +Tamela +Teressa +Tommie +Trudy +Twila +Victoria +Abbie +Alecia +Alesia +Aletha +Amber +Annetta +Arlene +Ashley +Brinda +Carole +Charlette +Christa +Christie +Claudia +Darline +Deanne +Debrah +Delinda +Detra +Dolores +Dorthy +Elsie +Emily +Ester +Faye +Freddie +Glynis +Gracie +Gwen +Heather +Irma +Jerrie +Joni +Kara +Kathey +Katie +Lauren +Laverne +Lavoris +Letitia +Lila +Lucretia +Lynne +Mandy +Maxine +Melisa +Minnie +Nadine +Pamala +Pansy +Pat +Pearl +Pearlie +Penni +Renae +Renata +Roslyn +Tamra +Tena +Trena +Tresa +Tressa +Twana +Twyla +Valorie +Velda +Virgie +Lisa +Karen +Mary +Tammy +Angela +Donna +Kimberly +Cynthia +Patricia +Linda +Teresa +Rhonda +Brenda +Sandra +Pamela +Sharon +Tina +Melissa +Barbara +Sheila +Susan +Rebecca +Deborah +Debra +Sherry +Laura +Kelly +Paula +Carolyn +Carla +Connie +Elizabeth +Robin +Stephanie +Tracy +Jennifer +Debbie +Dana +Carol +Cheryl +Cindy +Jacqueline +Janet +Janice +Terri +Nancy +Kathy +Julie +Regina +Lori +Michelle +Joyce +Betty +Kim +Vickie +Shelia +Sherri +Melinda +Beverly +Judy +Charlotte +Shirley +Anita +Amy +Theresa +Marilyn +Valerie +Margaret +Cathy +Tonya +Wanda +Denise +Phyllis +Leslie +Stacy +Becky +Dorothy +Annette +Glenda +Gloria +Rita +Penny +Vicki +Alice +Jamie +Terry +Felicia +Peggy +Jackie +Rose +Ruby +Loretta +Melanie +Shelly +Dawn +Diana +Stacey +Helen +Martha +Sarah +Andrea +Doris +Ruth +Angelia +Belinda +Anna +Diane +Shannon +Virginia +Catherine +Kathryn +Darla +Deanna +Gina +Gwendolyn +Julia +Katherine +Marsha +Monica +Wendy +Bonnie +Toni +Angie +Norma +Patty +Bobbie +Ginger +Karla +Tanya +Jill +Samantha +Tamara +Tammie +Frances +Jo +Michele +Vonda +Yvonne +Darlene +Evelyn +Renee +Sylvia +Yolanda +Alicia +Allison +Christina +Holly +Lesa +Melody +Ronda +Sonya +Gayla +Ann +April +Dianna +Georgia +Lee +Pam +Suzanne +Vicky +Ladonna +Lora +Marcia +Ramona +Rosie +Tracey +Annie +Gail +Juanita +Laurie +Maria +Vivian +Amanda +Christine +Ellen +Jana +Jeanette +Joan +Kathleen +Kimberley +Patsy +Rachel +Sonja +Tracie +Beth +Carrie +Joy +Lana +Leah +Lois +Lynn +Mildred +Myra +Nina +Patti +Sheryl +Traci +Vanessa +Veronica +Victoria +Cassandra +Deana +Edith +Kristi +Sandy +Shelley +Billie +Christy +Dianne +Jerri +Kay +Marie +Bertha +Crystal +Deloris +Emma +Felecia +Jane +Kellie +Mona +Roberta +Sheri +Willie +Charlene +Debora +Dena +Edna +Elaine +Emily +Frankie +Katrina +Kelley +Natalie +Rena +Robyn +Sally +Terrie +Anne +Audrey +Cara +Caroline +Clara +Ida +Judith +Kelli +Leigh +Minnie +Shari +Shawn +Wilma +Benita +Candy +Carmen +Delores +Jacquelyn +Johnnie +Lesia +Lynda +Margie +Robbie +Sara +Sherrie +Teri +Yvette +Alma +Bridget +Diann +Ella +Jean +Lorrie +Marla +Rosemary +Sondra +Sue +Tami +Chandra +Cheri +Ethel +Eva +Gladys +Hazel +Hope +Jeannie +Jessica +Joann +Lillie +Lola +Lorie +Lucinda +Malinda +Polly +Sharron +Tamera +Tena +Valarie +Vera +Bobbi +Constance +Cora +Dora +Earnestine +Freda +Jacquline +Janie +Joanna +Lea +Lillian +Lorna +Nellie +Paige +Priscilla +Rosetta +Roslyn +Tamra +Teressa +Thelma +Velma +Verna +Alisa +Angel +Beatrice +Bonita +Carole +Delois +Gayle +Jeanne +Jenifer +Jeri +Jessie +Jody +Kecia +Kerri +Kristie +Latonya +Lauri +Lynette +Mae +Marion +Mattie +Mitzi +Molly +Monique +Renita +Rosa +Ruthie +Shawna +Stella +Tara +Tricia +Trina +Amelia +Arlene +Betsy +Candace +Cecilia +Chris +Christie +Claudia +Deena +Denice +Edie +Florence +Gay +Gena +Geraldine +Gretchen +Jeanna +Jennie +June +Kara +Katie +Kristin +Kristy +Latricia +Laverne +Lorene +Lorraine +Marnie +Maxine +Pamala +Patrica +Patrice +Reba +Robbin +Sonia +Staci +Susie +Tamela +Valeria +Vickey +Whitney +Addie +Alesia +Aletha +Alison +Allyson +Ashley +Cassie +Cherie +Cherry +Clarissa +Daphne +Dedra +Dee +Delinda +Della +Dina +Eleanor +Erma +Geneva +George +Greta +Heidi +Inez +Irene +Jacquelin +Janna +Jeanie +Jenny +Kandy +Kayla +Kristen +Kristina +Lasonya +Lauren +Lavonda +Leisa +Lenora +Libby +Lilly +Lorri +Lou +Louise +Lucy +Lynne +Malissa +Mandy +Melisa +Merry +Mia +Naomi +Nora +Pattie +Paulette +Pauline +Pearl +Rosalind +Sabrina +Saundra +Shelli +Sophia +Stacie +Suzette +Tammi +Tommie +Tonda +Trudy +Valorie +Winnie +Zina +Lisa +Angela +Kimberly +Mary +Tammy +Karen +Tina +Pamela +Donna +Cynthia +Melissa +Teresa +Patricia +Rhonda +Sandra +Brenda +Linda +Sharon +Susan +Tracy +Sheila +Sherry +Deborah +Rebecca +Barbara +Jennifer +Stephanie +Paula +Laura +Debra +Michelle +Elizabeth +Carolyn +Cheryl +Carla +Julie +Robin +Dana +Lori +Jacqueline +Kelly +Regina +Terri +Kathy +Connie +Cindy +Leslie +Carol +Janice +Nancy +Shelia +Janet +Melinda +Kim +Shirley +Tonya +Stacy +Beverly +Gina +Judy +Sarah +Andrea +Cathy +Jamie +Joyce +Anita +Dawn +Debbie +Felicia +Vickie +Betty +Shannon +Charlotte +Sherri +Amy +Martha +Vicki +Margaret +Sonya +Glenda +Phyllis +Stacey +Theresa +Deanna +Denise +Marilyn +Valerie +Michele +Tammie +Terry +Dorothy +Gloria +Peggy +Rita +Angelia +Gwendolyn +Melanie +Wanda +Wendy +Catherine +Loretta +Shelly +Tamara +Amanda +Diana +Doris +Tanya +Toni +Becky +Evelyn +Holly +Jackie +Ronda +Tracey +Audrey +Penny +Anna +Katherine +Sandy +Shelley +Virginia +Alice +Ann +Helen +Vivian +Diane +Samantha +Annette +Belinda +Juanita +Monica +Veronica +Angie +Cassandra +Ginger +Karla +Laurie +Maria +Ruby +Tracie +Bonnie +Darlene +Jo +Julia +Kristi +Lesa +Melody +Rose +Ruth +Dianna +Jill +Marsha +Ramona +Renee +Sonja +Yolanda +Christy +Ellen +Jana +Sheri +Traci +Christina +Christine +Lora +Vanessa +Alicia +April +Kellie +Kimberley +Leah +Mona +Sara +Beth +Bobbie +Carrie +Jerri +Kathleen +Kelli +Ladonna +Marla +Suzanne +Audra +Carmen +Darla +Edna +Lana +Sherrie +Vonda +Joy +Judith +Kathryn +Lynn +Natalie +Patsy +Frances +Georgia +Kelley +Patty +Eva +Gena +Hope +Jessica +Lee +Lynda +Roberta +Sheryl +Sylvia +Yvonne +Alisa +Bridget +Charlene +Crystal +Jeanette +Joan +Marcia +Misty +Norma +Rachel +Shana +Shari +Victoria +Deana +Elaine +Emma +Jane +Jean +Kay +Paulette +Robyn +Shawn +Sonia +Yvette +Constance +Gayla +Janie +Katrina +Kristie +Myra +Pam +Rosie +Susie +Allison +Bertha +Billie +Cara +Dena +Edith +Gail +Jacquelyn +Joanna +Leigh +Letha +Lois +Lorie +Lorrie +Rebekah +Shellie +Tara +Vera +Vicky +Anne +Cherie +Danna +Ella +Emily +Erma +Ethel +Jeana +Jeri +Jessie +Joann +Leanna +Lucinda +Margie +Marie +Mattie +Mitzi +Priscilla +Robbie +Tabatha +Tamela +Tena +Thelma +Tiffany +Trina +Valarie +Bernadette +Bernice +Caroline +Cecilia +Claudia +Debora +Frankie +Gay +Ida +Johnnie +June +Kerri +Kristy +Leona +Lola +Nikki +Nita +Nora +Rosemary +Sondra +Stacie +Teressa +Terrie +Willie +Amelia +Annie +Antoinette +Benita +Bonita +Candy +Charla +Cheri +Christi +Christie +Clara +Danita +Dee +Dina +Dora +Felecia +Freda +James +Janette +Janis +Jeannie +Joe +Kimberlee +Lea +Leann +Lesia +Lillian +Lorri +Mae +Rena +Rosa +Ruthie +Sally +Stella +Sue +Tabitha +Teri +Tonia +Tonja +Candace +Daphne +Dara +Deann +Della +Denita +Dianne +Irene +Jacquline +Jami +Jeanie +Jennie +Jimmie +Joanne +Kristen +Kristina +Latonya +Lorraine +Marcella +Marian +Maxine +Mechelle +Mia +Missy +Nina +Rochelle +Rosalyn +Rosetta +Saundra +Staci +Starla +Stefanie +Tamera +Tamra +Tommie +Trudy +Valeria +Ada +Alma +Angeline +Ashley +Bridgett +Casandra +Cora +Daisy +Dayna +Delois +Delores +Effie +Faith +Faye +Felisa +Flora +Geneva +Gladys +Hazel +Heather +Jeanne +Jeannette +Jerrie +Jodi +John +Kara +Kari +Larhonda +Lavonda +Lawanda +Lena +Lillie +Lou +Louise +Lucille +Machelle +Mamie +Mandy +Marjorie +Melba +Mildred +Nellie +Nicole +Ora +Pamala +Patti +Polly +Regena +Renita +Rhoda +Rosalind +Shanna +Shannan +Shauna +Shelli +Suzette +Tana +Tresa +Valencia +Velma +Verna +Lisa +Kimberly +Angela +Tammy +Mary +Karen +Melissa +Pamela +Tina +Donna +Teresa +Sharon +Sandra +Patricia +Rhonda +Cynthia +Michelle +Brenda +Sherry +Susan +Linda +Stephanie +Barbara +Rebecca +Tracy +Laura +Jennifer +Elizabeth +Paula +Deborah +Sheila +Debra +Carla +Kelly +Tonya +Carolyn +Cheryl +Nancy +Regina +Lori +Carol +Dana +Amy +Stacy +Cindy +Janet +Connie +Jacqueline +Janice +Melinda +Betty +Robin +Shannon +Anita +Terri +Kathy +Kim +Wendy +Joyce +Vickie +Denise +Shelia +Gina +Julie +Leslie +Debbie +Tamara +Martha +Shirley +Stacey +Melanie +Beverly +Judy +Sonya +Dawn +Andrea +Sarah +Wanda +Theresa +Sherri +Dorothy +Margaret +Michele +Charlotte +Diana +Shelly +Christina +Deanna +Felicia +Becky +Catherine +Vanessa +Tammie +Vicki +Diane +Glenda +Jill +Kathryn +Belinda +Holly +Jamie +Jo +Marilyn +Marsha +Rita +Katherine +Monica +Ronda +Virginia +Yolanda +Annette +Christine +Leah +Rose +Veronica +Amanda +Ann +Gloria +Karla +Kristi +Valerie +Christy +Rachel +Sheri +Cathy +Julia +Anna +Darla +Melody +Peggy +Penny +Phyllis +Shelley +Vicky +Victoria +Alicia +Bonnie +Carrie +Jackie +Lana +Loretta +Angelia +April +Christie +Toni +Alice +Audrey +Cassandra +Helen +Jerri +Leigh +Tracey +Gwendolyn +Jana +Ladonna +Sandy +Tanya +Ellen +Gail +Kelli +Lee +Marla +Sherrie +Darlene +Kelley +Trina +Bobbie +Doris +Frances +Jeanette +Sonja +Terry +Annie +Jacquelyn +Jeannie +Norma +Ramona +Ruth +Sabrina +Sondra +Traci +Crystal +Heather +Maria +Patti +Renee +Robyn +Sara +Shari +Sylvia +Angie +Billie +Deana +Dianna +Edith +Evelyn +Gayla +Kimberley +Lora +Sheryl +Sonia +Tracie +Vivian +Kathleen +Laurie +Marie +Nina +Suzanne +Terrie +Clara +Delores +Katrina +Kay +Kellie +Kristy +Marcia +Pam +Ruby +Samantha +Shawn +Audra +Bridget +Daphne +Dena +Ginger +Jane +Janie +Jodi +Joy +Juanita +Kristin +Kristina +Lea +Lesa +Tonia +Valarie +Beth +Elaine +Eva +Felecia +Margie +Teri +Alisa +Allison +Amber +Anne +Candace +Candy +Christi +Dianne +Emma +Josephine +Kerri +Lena +Lydia +Lynn +Misty +Natalie +Priscilla +Robbie +Shanna +Stacie +Sue +Tamera +Yvonne +Alma +Carmen +Caroline +Cheri +Cherie +Jeanne +Jennie +Joan +Joann +Judith +Kendra +Kristen +Lara +Lesia +Lucinda +Patsy +Patty +Polly +Sally +Shawna +Staci +Tabatha +Tabitha +Thelma +Tiffany +Yvette +Bridgette +Cara +Janna +Jessie +Jodie +Kristie +Lois +Lolita +Marcella +Marion +Melisa +Missy +Mona +Roberta +Rosie +Stefanie +Susie +Tara +Tena +Teressa +Tommie +Tonja +Alberta +Bernice +Bobby +Charlene +Constance +Danna +Dee +Denice +Dina +Dora +Emily +Gena +Georgia +Gladys +Hope +Irene +Janette +Jeri +Jessica +Johnnie +Kari +Lillie +Lynda +Paulette +Penelope +Rochelle +Shonda +Stella +Tami +Tracye +Tresa +Verna +Willie +Bobbi +Bonita +Cecilia +Dedra +Diann +Edna +Erma +Ethel +Gwen +Hazel +Heidi +Ida +Jacquline +Jeanie +Jeannette +Jena +Jimmie +Joanna +Kenneth +Keri +Kerry +Latonia +Lauri +Leann +Lenora +Lola +Malinda +Marian +Mildred +Misti +Nanette +Nikki +Nita +Nora +Patrica +Rena +Robbin +Rosalind +Sharron +Tamra +Trena +Vonda +Adriane +Alana +Amelia +Aretha +Arlene +Beatrice +Bertha +Bethany +Bridgett +Carmella +Carole +Danita +David +Delana +Delois +Donald +Elisa +Ella +Erin +Geraldine +Jean +Jerry +Jody +Kara +Katie +Laquita +Lorrie +Lynette +Marjorie +Marlo +Merri +Merry +Mia +Mikki +Mindy +Mitzi +Molly +Myra +Paige +Pamala +Reba +Ruthie +Tamala +Tia +Trudy +Vera +Lisa +Tammy +Kimberly +Angela +Melissa +Mary +Tina +Karen +Donna +Teresa +Michelle +Pamela +Stephanie +Rhonda +Cynthia +Tracy +Patricia +Sandra +Jennifer +Kelly +Sharon +Linda +Laura +Sherry +Tonya +Sheila +Susan +Brenda +Deborah +Barbara +Elizabeth +Lori +Paula +Shannon +Amy +Carla +Carol +Dana +Julie +Debra +Rebecca +Stacy +Terri +Regina +Cheryl +Jacqueline +Nancy +Carolyn +Robin +Sonya +Wendy +Leslie +Beverly +Cindy +Melinda +Tammie +Kim +Kathy +Stacey +Andrea +Anita +Charlotte +Connie +Janet +Shirley +Janice +Michele +Vickie +Amanda +Tanya +Dawn +Shelly +Valerie +Wanda +Shelia +Christy +Deanna +Joyce +Melanie +Betty +Cassandra +Gina +Penny +Tamara +Yolanda +Holly +Sarah +Sherri +Carrie +Christina +Denise +Monica +Vicki +Virginia +Jamie +Margaret +Shelley +Veronica +Angelia +Judy +April +Catherine +Theresa +Alice +Victoria +Kelli +Glenda +Jackie +Laurie +Martha +Rita +Becky +Debbie +Ann +Christine +Felicia +Heather +Loretta +Marilyn +Sheri +Annette +Diane +Anna +Diana +Kelley +Vanessa +Belinda +Gwendolyn +Karla +Robyn +Toni +Dorothy +Gloria +Helen +Julia +Katherine +Kimberley +Leah +Lee +Leigh +Ashley +Bobbie +Jill +Ladonna +Katrina +Lora +Peggy +Ronda +Tracey +Ginger +Juanita +Kathryn +Rachel +Ruth +Angie +Crystal +Kellie +Phyllis +Sandy +Darla +Marsha +Samantha +Terry +Traci +Vicky +Billie +Bonnie +Christie +Deana +Jana +Mona +Beth +Jeannie +Joy +Kristi +Amber +Cathy +Christi +Doris +Evelyn +Frances +Gail +Sara +Sonja +Alicia +Felecia +Gayla +Jo +Kathleen +Kristy +Rose +Sheryl +Terrie +Aretha +Audra +Dena +Jerri +Jessica +Kristina +Lana +Sherrie +Tracie +Bridget +Ellen +Eva +Leann +Maria +Melody +Natalie +Sabrina +Sonia +Stacie +Susie +Tiffany +Tonia +Alisa +Elaine +Jan +Jodi +Judith +Kristie +Marcia +Marie +Marla +Patsy +Renee +Roberta +Sondra +Tammi +Trina +Vivian +Yvonne +Carmen +Charlene +Danielle +Emma +Jeanette +Joanna +Kerry +Lesa +Mitzi +Rosie +Sally +Shawn +Tabitha +Anne +Betsy +Daphne +Gena +Joan +Lara +Lorie +Myra +Patty +Staci +Tami +Valarie +Bernice +Bethany +Candy +Cheri +Delores +Dianna +Dina +Emily +Georgia +Jane +Kari +Latonya +Lillie +Louise +Lynn +Michael +Nicole +Nina +Nora +Rebekah +Robbin +Shawna +Sue +Suzanne +Annie +Caroline +Cherie +Dee +Della +Denice +Dianne +Ella +Erma +Ethel +Hazel +Jacquelyn +Jacquline +Kay +Kerri +Kristen +Lynda +Missy +Norma +Pamala +Paulette +Rachelle +Ramona +Rochelle +Rosemary +Shari +Sylvia +Teri +Velma +Vonda +Alma +Bridgette +Candace +Chandra +Charla +Courtney +Darlene +Edna +Erin +Esther +Florence +Gwen +Iris +Janie +Jeanne +Jimmie +Joann +Johnnie +Kara +Kerrie +Krista +Lucinda +Malinda +Misty +Priscilla +Renita +Ruby +Ruthie +Shanna +Shelli +Shellie +Thelma +Tommie +Yvette +Allison +Audrey +Bertha +Bonita +Carole +Casandra +Claudia +Danette +Deena +Deirdre +Deloris +Eugenia +Geneva +Hope +James +Janis +Janna +Jean +Joni +Latonia +Leanne +Lenora +Lesley +Letitia +Lois +Lydia +Margie +Melisa +Pam +Rena +Roxanne +Sandi +Selena +Sharla +Tabatha +Tamatha +Tamela +Tara +Teressa +Tresa +Vikki +Wendi +Whitney +Ada +Angel +Bobbi +Brandi +Bridgett +Candice +Cecilia +Celia +Charolette +Chris +Constance +Cristi +Dawna +Debora +Edith +Faye +Gala +Greta +Hattie +Jayme +Jeannette +Jenny +Jonna +Katheryn +Kathrine +Katie +Kayla +Kendra +Keri +Kristine +Krystal +Lawanda +Leona +Lesia +Lillian +Lorrie +Malisa +Malissa +Marci +Marion +Marlo +Mattie +Maxine +Melonie +Mia +Miranda +Nanette +Patti +Rae +Saundra +Scarlett +Tamiko +Tawana +Trisha +Vera +Yolonda +Lisa +Angela +Kimberly +Melissa +Tammy +Michelle +Jennifer +Mary +Tina +Karen +Teresa +Rhonda +Donna +Shannon +Laura +Pamela +Patricia +Stephanie +Tracy +Amy +Cynthia +Sharon +Rebecca +Sandra +Brenda +Susan +Elizabeth +Tonya +Sherry +Kelly +Linda +Deborah +Lori +Dana +Stacy +Sheila +Barbara +Paula +Cheryl +Regina +Robin +Amanda +Carla +Carol +Debra +Julie +Cindy +Carolyn +Monica +Kathy +Shelia +Shelly +Wendy +Nancy +Terri +Leslie +Sonya +Andrea +Dawn +Melinda +Tanya +Michele +Stacey +Connie +Charlotte +Melanie +Kelli +Christy +Heather +Janet +Tracey +Beverly +Kristi +Tamara +Tammie +Christina +Jacqueline +Sarah +Jamie +Gina +Holly +Shirley +Ann +Debbie +Shelley +Yolanda +Anita +Rachel +Felicia +Janice +Margaret +Catherine +Penny +Kim +Toni +Angelia +Theresa +Anna +Carrie +Joyce +Katherine +Wanda +April +Cathy +Deanna +Rita +Vicki +Becky +Betty +Christine +Denise +Judy +Leigh +Cassandra +Leah +Martha +Julia +Marsha +Peggy +Alicia +Crystal +Jill +Ladonna +Sherri +Victoria +Dena +Sheri +Vickie +Kellie +Phyllis +Valerie +Helen +Jackie +Vanessa +Christie +Diana +Kathryn +Loretta +Samantha +Terry +Tracie +Gloria +Joy +Kristie +Lana +Ronda +Sheryl +Veronica +Alice +Allison +Deana +Ginger +Glenda +Karla +Kristy +Marilyn +Misty +Sonja +Tonia +Dorothy +Kristen +Tara +Diane +Kelley +Natalie +Nicole +Robyn +Sandy +Virginia +Belinda +Billie +Jana +Katrina +Ruby +Sabrina +Stacie +Tabitha +Traci +Annette +Ashley +Audrey +Bonnie +Carmen +Gayla +Kimberley +Laurie +Melody +Ramona +Rose +Sonia +Tiffany +Amber +Doris +Frances +Shawna +Angie +Beth +Ellen +Jacquelyn +Patty +Ruth +Sara +Trina +Bobbie +Dianna +Eva +Gwendolyn +Jane +Jessica +Kathleen +Lynn +Maria +Marla +Suzanne +Tricia +Candy +Jo +Latonia +Lee +Lorie +Rochelle +Staci +Vicky +Elaine +Eugenia +Jan +Janie +Juanita +Lillian +Meredith +Patsy +Shana +Shawn +Shellie +Yvonne +Charlene +Felecia +Georgia +Jeanette +Joanna +Kerry +Lois +Lora +Mona +Nina +Sherrie +Vivian +Candace +Edith +Evelyn +Gena +Jeanne +Jody +Kristin +Lesley +Lucinda +Lydia +Malinda +Norma +Sondra +Tamera +Tressa +Adrienne +Alma +Audra +Bessie +Bonita +Brandi +Chris +Christal +Christi +Constance +Danna +Dina +Emily +Erica +Hope +Jami +Jenny +Jeri +Judith +Kristina +Latonya +Lea +Lillie +Lorrie +Malissa +Renee +Roberta +Rosie +Shanna +Teri +Yvette +Alisha +Angel +Bertha +Chandra +Cherie +Darla +Darlene +Edna +Ella +Gail +Iris +James +Joann +Johnnie +June +Kendra +Kerri +Kerrie +Lenora +Lesa +Machelle +Margie +Marie +Melisa +Nita +Pamala +Patti +Shari +Sylvia +Tabatha +Terrie +Aimee +Alison +Camille +Cecilia +Clarissa +Delana +Deloris +Erin +Janna +Jerri +Jodi +Kayla +Kellye +Lawanda +Leisa +Lesia +Mae +Marjorie +Rosalind +Serena +Susie +Ursula +Wilma +Yulonda +Amelia +Anissa +Anne +Annie +Antoinette +Aretha +Bethany +Brandy +Bridgette +Carey +Caroline +Casandra +Cassie +Cheri +Clara +Claudia +Danita +Dee +Della +Gerri +Jacquline +Jeana +Jeanie +Jimmie +Jimmy +Joan +Joni +Kara +Kay +Kristine +Lara +Lesli +Libby +Mandy +Naomi +Paige +Paulette +Rachael +Reba +Robbie +Robbin +Shanda +Sharron +Shauna +Shonda +Sue +Tami +Trena +Valarie +Whitney +Willie +Ada +Alecia +Alisa +Andra +Bernice +Bobby +Buffy +Candice +Coretta +Courtney +Danette +Danielle +Daphne +Deanne +Debora +Delores +Denna +Dionne +Emma +Erika +Frankie +Geri +Gretchen +Janelle +Jannie +Jeannette +Jeannie +Jennie +Jodie +John +Kari +Katharine +Katie +Krista +Larhonda +Latanya +Laurel +Laverne +Leann +Leanne +Lynette +Mable +Marion +Marty +Michael +Mindy +Miranda +Misti +Mitzi +Molly +Myra +Nora +Pam +Rebekah +Regenia +Renita +Ruthie +Sally +Saundra +Shawnna +Shelby +Stephani +Tamatha +Tena +Vickey +Viola +Kimberly +Angela +Lisa +Melissa +Tammy +Jennifer +Mary +Shannon +Stephanie +Tina +Cynthia +Michelle +Tracy +Amy +Karen +Tonya +Pamela +Teresa +Rebecca +Sharon +Laura +Donna +Elizabeth +Rhonda +Kelly +Susan +Carla +Julie +Stacy +Sheila +Sandra +Patricia +Sherry +Lori +Brenda +Paula +Dana +Robin +Deborah +Leslie +Regina +Barbara +Linda +Christy +Stacey +Cindy +Amanda +Shelly +Kathy +Tanya +Cheryl +Wendy +Kristi +Melinda +Monica +Sonya +Dawn +Heather +Melanie +Anita +Sarah +Shelia +Jacqueline +Terri +Tracey +Holly +Carol +Deanna +Debra +Andrea +Beverly +Connie +Yolanda +Jamie +Rachel +Veronica +Carolyn +Carrie +Shelley +Tamara +Betty +Cassandra +Janet +Christina +Nancy +April +Debbie +Catherine +Felicia +Joyce +Charlotte +Traci +Sherri +Ashley +Kim +Michele +Vickie +Becky +Misty +Theresa +Alicia +Denise +Margaret +Gwendolyn +Janice +Nicole +Christine +Crystal +Gina +Leigh +Marsha +Kelli +Martha +Tara +Christi +Christie +Jackie +Katherine +Tammie +Virginia +Marla +Sabrina +Valerie +Wanda +Diana +Jill +Suzanne +Alice +Angelia +Karla +Anna +Jo +Tracie +Allison +Bonnie +Ginger +Leah +Rita +Toni +Vicki +Cathy +Glenda +Kristie +Penny +Shanna +Victoria +Angie +Ann +Darla +Gloria +Joy +Julia +Kathryn +Kristy +Rose +Sara +Sonja +Helen +Katrina +Kimberley +Kristen +Lana +Bobbie +Dorothy +Judy +Trina +Audra +Belinda +Beth +Dena +Diane +Doris +Robyn +Sheri +Shirley +Tiffany +Tonia +Amber +Frances +Juanita +Kelley +Ladonna +Meredith +Shawna +Vanessa +Annette +Jeannie +Maria +Marilyn +Melody +Peggy +Sonia +Angel +Carmen +Latonya +Stacie +Teri +Candy +Erica +Kristin +Kristina +Ronda +Samantha +Ellen +Jessica +Lara +Lora +Loretta +Chandra +Darlene +Emily +Krista +Natalie +Renee +Anne +Billie +Bridget +Jana +Joanna +Kathleen +Kellie +Kendra +Kerri +Marie +Patty +Shana +Shauna +Shawn +Shonda +Staci +Terry +Audrey +Candace +Dee +Dianna +Dora +Jeanette +Jenny +Jodi +Melisa +Phyllis +Sherrie +Yvonne +Charity +Deana +Evelyn +Jacquelyn +Jenifer +Lorie +Sheryl +Sondra +Tabitha +Tonja +Tricia +Alisa +Brandi +Cherie +Gail +Hope +Janna +Jerri +Marcy +Nikki +Ramona +Ruby +Sandy +Susie +Tamera +Cara +Charlene +Courtney +Delana +Eva +Felecia +Gayla +Judith +Kara +Kerry +Laurie +Leann +Lillie +Lucinda +Lynn +Mona +Rosalind +Shanda +Shiela +Tami +Terrie +Valarie +Valorie +Bridgett +Camille +Casandra +Cheri +Christa +Eugenia +Georgia +Janie +Jodie +Latanya +Latricia +Lea +Lee +Lesia +Lesley +Lillian +Lois +Monique +Myra +Nina +Paige +Patrice +Rachael +Robbie +Ruth +Shari +Stefanie +Sylvia +Teressa +Whitney +Anissa +Brandy +Carey +Charla +Danielle +Dianne +Dina +Jane +Jeanie +Jeanne +Johnnie +Kay +Kayla +Keri +Krystal +Lesa +Marjorie +Mindy +Nora +Patsy +Roberta +Rochelle +Rosie +Sally +Tena +Tisha +Alison +Annie +Antoinette +Aretha +Bernice +Bobbi +Brooke +Caroline +Cassie +Chanda +Clara +Daphne +Deena +Deidra +Edna +Erma +Heidi +Jean +Jeana +June +Kari +Karin +Kristine +Latrice +Lynda +Lynette +Malissa +Marcella +Mari +Marlo +Mattie +Mitzi +Natasha +Paulette +Rebekah +Shelli +Tabatha +Tamatha +Tommie +Vicky +Vivian +Wendi +Angella +Benita +Bobby +Catrina +Constance +Delores +Dixie +Edith +Elisa +Emma +Erika +Erin +Frankie +Grace +Irene +Jimmie +Joann +Johnna +Josephine +Keisha +Kimberely +Larhonda +Latasha +Latonia +Latrina +Lavonda +Lena +Letha +Letitia +Lucretia +Mae +Malinda +Marcia +Marcie +Marion +Mavis +Missy +Norma +Pamala +Patrick +Polly +Rena +Rona +Roxanne +Shanon +Sharlene +Shellie +Starla +Stella +Tamela +Tamra +Tori +Tresa +Wilma +Yulonda +Angela +Kimberly +Jennifer +Melissa +Lisa +Tammy +Michelle +Stephanie +Shannon +Amy +Mary +Tracy +Karen +Tina +Tonya +Rebecca +Stacy +Pamela +Rhonda +Donna +Teresa +Cynthia +Laura +Susan +Elizabeth +Lori +Sandra +Dana +Julie +Amanda +Sharon +Linda +Sherry +Kelly +Patricia +Paula +Andrea +Carla +Deborah +Wendy +Barbara +Heather +Christy +Sheila +Brenda +Melanie +Christina +Carrie +Leslie +Shelly +Melinda +April +Dawn +Kathy +Monica +Regina +Debra +Carol +Stacey +Cindy +Robin +Cheryl +Jamie +Holly +Yolanda +Nancy +Sonya +Sarah +Terri +Felicia +Jacqueline +Beverly +Kristi +Sherri +Carolyn +Deanna +Anita +Denise +Belinda +Crystal +Tiffany +Shelia +Theresa +Wanda +Rachel +Traci +Ashley +Catherine +Janet +Misty +Tanya +Cassandra +Marsha +Tammie +Veronica +Alicia +Charlotte +Jessica +Nicole +Ginger +Kristy +Toni +Angelia +Christie +Jill +Kim +Christine +Leah +Tracey +Penny +Tamara +Vickie +Virginia +Dorothy +Kristie +Michele +Samantha +Shirley +Stacie +Betty +Debbie +Janice +Tracie +Glenda +Tricia +Vanessa +Katherine +Ladonna +Peggy +Ann +Bobbie +Candy +Christi +Connie +Gina +Joy +Joyce +Karla +Laurie +Marilyn +Melody +Valerie +Victoria +Anna +Bridget +Erica +Sheri +Sonja +Allison +Becky +Jo +Kelli +Leigh +Maria +Rita +Sara +Shelley +Tara +Cathy +Kimberley +Martha +Amber +Jana +Latonya +Suzanne +Trina +Angie +Diana +Judy +Julia +Lora +Margaret +Shawna +Tonia +Beth +Brandi +Dianna +Jenny +Katrina +Kendra +Lee +Loretta +Ramona +Robyn +Audra +Kathryn +Marla +Renee +Sabrina +Vicki +Alice +Jeannie +Keri +Kerri +Kerry +Shawn +Yvonne +Bonnie +Danielle +Erika +Jackie +Kelley +Lana +Marcia +Meredith +Natalie +Sandy +Alisa +Deana +Rose +Shanna +Staci +Angel +Annette +Darla +Erin +Gwendolyn +Hope +Kara +Kristin +Lea +Lesley +Lorie +Sherrie +Candace +Candice +Carmen +Dena +Helen +Jennie +Kellie +Natasha +Nikki +Rosie +Anne +Charlene +Daphne +Evelyn +Frances +Gayla +Janie +Jerri +Joanna +Krista +Kristen +Mandy +Ronda +Ruth +Terry +Audrey +Doris +Gloria +Jeanie +Jenifer +Juanita +Kathleen +Phyllis +Rosalind +Shellie +Shonda +Sonia +Tisha +Aimee +Alisha +Chandra +Cheri +Hazel +Joann +Jodie +Jody +Kari +Lorrie +Marcy +Nina +Robbie +Sally +Shana +Sondra +Stefanie +Tabitha +Antoinette +Billie +Brandy +Cristy +Darlene +Diane +Ellen +Emily +Felecia +Jami +Jeanette +Jodi +Judith +Kristina +Lara +Melisa +Miranda +Paulette +Rachael +Ruby +Sylvia +Tena +Tonja +Vivian +Cara +Carey +Christa +Courtney +Jane +Jean +Jeri +Johnnie +Laurel +Lauren +Marcie +Marlo +Rochelle +Shari +Sharla +Tammi +Tasha +Teri +Terrie +Anissa +Bridgette +Cristina +Dee +Eugenia +Gail +Gena +Gladys +Jan +Jeana +Latricia +Lynda +Lynn +Malinda +Marci +Mildred +Mitzi +Norma +Paige +Patti +Patty +Renita +Sue +Suzette +Tami +Vicky +Yulonda +Alissa +Alma +Annie +Bertha +Betsy +Brooke +Candi +Caroline +Cassie +Cecilia +Cherie +Dora +Edith +Elisha +Janna +Karrie +Kay +Kesha +Leann +Lucy +Lydia +Marion +Michael +Mindy +Minnie +Mona +Nichole +Nora +Patrice +Patsy +Priscilla +Roxanne +Sharron +Shauna +Shelby +Sheryl +Tamela +Tawanna +Tresa +Vera +Wendi +Yolonda +Yvette +Alesha +Bethany +Billy +Bonita +Casey +Christal +Christopher +Clara +Clarissa +Cristal +Danita +Debora +Deidra +Deidre +Denna +Dolly +Elaine +Eva +Georgia +Heidi +Hollie +James +Jayme +Joan +Johnna +Kayla +Krystal +Lajuana +Lashonda +Lasonya +Latanya +Latina +Latonia +Lois +Lynette +Marian +Marianne +Marjorie +Marlene +Mattie +Melony +Mendy +Michell +Missy +Misti +Molly +Monique +Ora +Pamala +Roberta +Serena +Tabatha +Tana +Tangela +Thelma +Tomeka +Trena +Tyra +Vonda +Jennifer +Angela +Kimberly +Melissa +Stephanie +Michelle +Tammy +Lisa +Amy +Mary +Shannon +Rebecca +Tonya +Tina +Laura +Cynthia +Tracy +Stacy +Karen +Christy +Kelly +Amanda +Teresa +Lori +Heather +Julie +Patricia +Rhonda +Pamela +Susan +Donna +Elizabeth +Crystal +April +Sandra +Sharon +Sherry +Dana +Carla +Leslie +Christina +Wendy +Linda +Robin +Deborah +Misty +Paula +Andrea +Shelly +Tara +Stacey +Carrie +Melanie +Cindy +Nicole +Brenda +Cheryl +Sheila +Debra +Kristi +Monica +Rachel +Terri +Denise +Nancy +Regina +Felicia +Sarah +Tanya +Jessica +Barbara +Connie +Erica +Holly +Melinda +Yolanda +Carolyn +Jamie +Tiffany +Dawn +Katina +Sonya +Becky +Kathy +Beverly +Carol +Christie +Deanna +Janet +Wanda +Ashley +Shelley +Brandi +Christine +Katrina +Veronica +Tammie +Betty +Gina +Marsha +Tamara +Theresa +Alicia +Angelia +Cassandra +Charlotte +Janice +Kathryn +Toni +Allison +Anita +Brandy +Jacqueline +Kristy +Amber +Latonya +Laurie +Tracey +Traci +Anna +Belinda +Ginger +Katherine +Kristie +Shelia +Sherri +Kelli +Leah +Leigh +Michele +Penny +Shawna +Catherine +Cathy +Jenny +Samantha +Shirley +Tracie +Angel +Christi +Joyce +Valerie +Jill +Julia +Ladonna +Suzanne +Diana +Kristin +Margaret +Judy +Karla +Martha +Meredith +Renee +Sara +Trina +Vanessa +Alice +Angie +Catina +Debbie +Kerri +Kim +Kimberley +Lana +Marcia +Melody +Natalie +Shanna +Sheri +Stacie +Vicki +Vickie +Victoria +Virginia +Annette +Bridget +Candace +Kathleen +Kellie +Lee +Lora +Natasha +Nikki +Ruby +Sonja +Tonia +Bobbie +Helen +Kara +Sherrie +Carmen +Jana +Loretta +Peggy +Ruth +Ann +Gwendolyn +Jackie +Kerry +Kristina +Robyn +Ronda +Tami +Audra +Billie +Bonnie +Krista +Krystal +Nichole +Priscilla +Sandy +Sylvia +Beth +Candice +Darla +Deana +Dorothy +Erika +Glenda +Jenifer +Kari +Kelley +Kristen +Maria +Marla +Patty +Shana +Shawn +Anne +Chandra +Diane +Dianna +Heidi +Hope +Joanna +Joy +Kendra +Lea +Rachael +Tabitha +Terry +Alisa +Candy +Charlene +Christa +Dena +Jeanette +Jodi +Jody +Lawanda +Shari +Sheryl +Sondra +Sonia +Stefanie +Teri +Annie +Caroline +Darlene +Erin +Gayla +Jacquelyn +Jeannie +Juanita +Kenya +Keri +Lesley +Marilyn +Mindy +Ramona +Sabrina +Staci +Tasha +Vicky +Aimee +Bridgette +Brooke +Cheri +Chrystal +Constance +Danielle +Ellen +Emily +Emma +Felecia +Frances +Keisha +Lashonda +Lorie +Lynn +Mandy +Marcie +Paige +Sue +Tamera +Tricia +Valarie +Alisha +Alison +Cecilia +Cherie +Cristy +Demetria +Doris +Iris +Jane +Jeanie +Jessie +Kayla +Larhonda +Latricia +Misti +Molly +Monique +Rose +Shonda +Tamika +Tammi +Tommie +Tonja +Willie +Bobbi +Chris +Daphne +Eva +Gloria +Jerri +Joan +Johnna +Judith +Lashawn +Latonia +Leann +Lena +Malinda +Marie +Melisa +Niki +Nina +Rebekah +Rochelle +Shandra +Shauna +Shelli +Tabatha +Tamatha +Tera +Tresa +Yolonda +Yvonne +Amelia +Angelique +Candi +Cara +Casey +Cassie +Chanda +Charity +Claudia +Cora +Dee +Dianne +Ericka +Evelyn +Grace +Irene +Jami +Janis +Jennie +Jimmie +Joann +Karrie +Kasey +Kay +Lacy +Lara +Lashunda +Latoya +Lois +Louise +Marci +Melissia +Michael +Mildred +Mitzi +Patrice +Regena +Robbie +Rosie +Serena +Vivian +Wendi +Wilma +Yvette +Alma +Audrey +Bethany +Brandie +Bridgett +Carole +Casandra +Charles +Clara +Courtney +Danna +Dayna +Donya +Edna +Gail +Georgia +Gretchen +Jean +Jeanna +Jo +Joanne +Jodie +Kimberlee +Kristal +Lamonica +Lasonya +Leanne +Lynda +Marion +Missy +Nita +Pamala +Paulette +Pearlie +Phyllis +Priscella +Rachelle +Rosetta +Sally +Sharla +Shonna +Stephaine +Susie +Tamra +Tawana +Terra +Terrie +Thelma +Windy +Jennifer +Angela +Kimberly +Stephanie +Amy +Melissa +Michelle +Lisa +Rebecca +Tonya +Tammy +Heather +Mary +Amanda +Christy +Tina +Tracy +Shannon +Teresa +Cynthia +Stacy +Julie +Misty +April +Laura +Elizabeth +Kelly +Pamela +Donna +Sandra +Christina +Sharon +Karen +Rhonda +Crystal +Susan +Melanie +Monica +Patricia +Andrea +Lori +Carla +Holly +Melinda +Brandy +Sarah +Leslie +Dana +Sherry +Robin +Wendy +Kristi +Shelly +Stacey +Barbara +Carrie +Terri +Rachel +Tiffany +Alicia +Cindy +Linda +Sheila +Sonya +Yolanda +Deborah +Paula +Tara +Dawn +Tanya +Valerie +Ashley +Brandi +Cheryl +Felicia +Regina +Nicole +Shelley +Tamara +Jamie +Erica +Jessica +Kristy +Brenda +Denise +Amber +Christie +Jacqueline +Nancy +Gina +Katrina +Connie +Debra +Christine +Tammie +Charlotte +Christi +Veronica +Anita +Beverly +Carol +Cassandra +Deanna +Carolyn +Katherine +Sherri +Kathy +Catherine +Jill +Theresa +Vanessa +Becky +Ginger +Janet +Kathryn +Penny +Diana +Katina +Michele +Shirley +Wanda +Alice +Kristie +Ladonna +Shawna +Anna +Catina +Jenny +Kristen +Kristin +Latonya +Sara +Shelia +Betty +Joyce +Kristina +Natasha +Samantha +Toni +Tracie +Aimee +Allison +Belinda +Emily +Jana +Janice +Julia +Maria +Gwendolyn +Jackie +Kimberley +Martha +Traci +Vickie +Virginia +Bridget +Karla +Marla +Marsha +Staci +Tonia +Tracey +Vicki +Debbie +Joanna +Keisha +Kenya +Keri +Leah +Margaret +Meredith +Victoria +Angel +Angelia +Candace +Jo +Joy +Kelli +Krista +Laurie +Leigh +Marilyn +Melody +Nikki +Renee +Ann +Billie +Bobbie +Candy +Cara +Cathy +Erin +Marcia +Misti +Ronda +Shanna +Sheri +Suzanne +Carmen +Charity +Danielle +Deana +Erika +Janie +Kim +Natalie +Robyn +Rose +Sabrina +Tasha +Chandra +Cristy +Dorothy +Hope +Jenifer +Kelley +Kerry +Mindy +Molly +Tabitha +Alison +Audrey +Bethany +Brooke +Charlene +Darla +Jerri +Judy +Kerri +Lora +Mandy +Shana +Terry +Tricia +Beth +Christa +Dianna +Doris +Evelyn +Gena +Gretchen +Helen +Janna +Jodie +Sandy +Sonja +Stacie +Sylvia +Terra +Tisha +Trina +Angie +Anne +Bridgette +Candice +Glenda +Gloria +Jacquelyn +Lee +Loretta +Lorie +Marcie +Nina +Peggy +Ruby +Ruth +Shawn +Shonda +Yvonne +Alisha +Audra +Casey +Dena +Diane +Ethel +Jeannie +Jodi +Kara +Kari +Kathleen +Latasha +Latonia +Rachelle +Ramona +Rita +Sally +Valarie +Vicky +Alisa +Bonnie +Bridgett +Catrina +Chastity +Christal +Danna +Daphne +Felisha +James +Jeri +Jody +Judith +Kellie +Kendra +Lakesha +Lana +Lara +Lesley +Malinda +Michael +Mistie +Nichole +Priscilla +Rebekah +Tabatha +Tamika +Tawana +Tera +Terrie +Whitney +Annette +Cheri +Chiquita +Courtney +Demetria +Edith +Ellen +Gail +Hollie +Jeanette +Joann +Lashunda +Lawanda +Lea +Marcella +Michell +Miriam +Naomi +Paige +Rachael +Roberta +Rosie +Shanda +Shari +Sheryl +Tami +Wendi +Alesha +Amelia +Annie +Casandra +Chasity +Clara +Claudia +Danita +Dee +Dixie +Felecia +Frances +Heidi +Iris +Jan +Jeanie +Jeanne +Juanita +Lashawn +Latisha +Latoya +Latrenda +Leeann +Lena +Lillian +Lynette +Lynn +Margie +Melisa +Melonie +Monique +Shala +Shea +Sondra +Tameka +Tamera +Teri +Tonja +Tresa +Trisha +Adrienne +Alma +Ami +Angelique +Autumn +Benita +Bertha +Cecilia +Cherie +Constance +Corie +David +Delores +Dina +Emma +Eugenia +Eva +Gayle +Gwen +Ida +Jada +Jean +Jeanna +Jessie +Joan +Karmen +Karrie +Kayla +Kerrie +Kristal +Krystal +Lakeisha +Larissa +Lashonda +Latosha +Lawanna +Lois +Lou +Marcy +Marion +Mattie +Megan +Melissia +Miranda +Nikita +Nora +Patty +Phyllis +Polly +Robbie +Rochelle +Rosalind +Selina +Shannan +Shanta +Shawnda +Shellie +Shonna +Sonia +Stephany +Sue +Thelma +Tracee +Trena +Valeria +Vera +Vivian +Jennifer +Angela +Kimberly +Amy +Stephanie +Melissa +Heather +Rebecca +Michelle +Amanda +Mary +Tonya +Christy +Lisa +Tammy +Tracy +Shannon +Tina +Teresa +April +Misty +Laura +Rhonda +Stacy +Andrea +Elizabeth +Cynthia +Sarah +Christina +Julie +Kelly +Karen +Susan +Patricia +Lori +Wendy +Pamela +Tanya +Shelly +Crystal +Christie +Dana +Melanie +Brandy +Robin +Sharon +Carla +Holly +Carrie +Leslie +Monica +Regina +Rachel +Sherry +Dawn +Tiffany +Stacey +Donna +Tamara +Amber +Ashley +Linda +Cindy +Paula +Sandra +Barbara +Jamie +Jessica +Tara +Kristi +Nicole +Sheila +Carolyn +Kristy +Melinda +Sonya +Veronica +Brandi +Yolanda +Denise +Kristen +Shelley +Latonya +Katherine +Alicia +Cheryl +Debra +Erica +Nancy +Sara +Theresa +Brenda +Emily +Kristie +Terri +Charlotte +Felicia +Gina +Shelia +Valerie +Deanna +Jacqueline +Leah +Allison +Deborah +Jeannie +Marsha +Anita +Charity +Christine +Jill +Jodi +Kara +Kathryn +Katrina +Loretta +Natasha +Betty +Diana +Samantha +Sherri +Anna +Cassandra +Ginger +Kathy +Margaret +Martha +Traci +Judy +Beverly +Billie +Connie +Janice +Kendra +Shirley +Angelia +Courtney +Erin +Janet +Miranda +Rita +Tracey +Tracie +Victoria +Bobbie +Bridget +Carol +Dena +Jenny +Joy +Kimberley +Maria +Angel +Candice +Deana +Gwendolyn +Melody +Robyn +Shawna +Tabitha +Toni +Catherine +Leigh +Rebekah +Suzanne +Becky +Chandra +Darla +Jody +Kelli +Kerri +Kristin +Penny +Stacie +Wanda +Alice +Christi +Karla +Latasha +Natalie +Nikki +Vanessa +Belinda +Cristy +Diane +Ellen +Kim +Laurie +Lorie +Meredith +Michele +Nakia +Tammie +Ann +Beth +Cara +Chasity +Dorothy +Joyce +Julia +Megan +Shana +Vicki +Virginia +Casey +Erika +Kathleen +Kristina +Ladonna +Lawanda +Rose +Tasha +Tonia +Brooke +Carmen +Casandra +Chrystal +Danielle +Frances +Jackie +Jana +Joanna +Katina +Kellie +Kerry +Krystal +Lakesha +Lesley +Mandy +Renee +Terry +Bonnie +Candace +Jenifer +Kelley +Ronda +Shawn +Bethany +Chanda +Debbie +Jacquelyn +Kenya +Keri +Lakeisha +Lea +Marcia +Paige +Peggy +Shanna +Sonja +Staci +Sylvia +Tabatha +Tomeka +Alison +Angie +Annette +Audrey +Brandie +Candy +Dianna +Felecia +Glenda +Gloria +Gretchen +Hollie +Latisha +Lauren +Marie +Mindy +Misti +Ruby +Sandy +Sheri +Tami +Teri +Terra +Whitney +Adrienne +Alisha +Anne +Chastity +Evelyn +Jo +Jodie +Kari +Karrie +Kristine +Latonia +Latoya +Lynda +Marla +Melisa +Rena +Sabrina +Serena +Tameka +Tamika +Tammi +Trisha +Vickie +Wendi +Amelia +Bridgette +Caroline +Cathy +Catina +Christal +Frankie +Heidi +Helen +Jeanie +Jeanne +Jennie +Joann +Katie +Kayla +Keisha +Lara +Lashonda +Latrina +Lee +Lora +Malinda +Nina +Patty +Ramona +Rosalind +Roxanne +Tera +Terrie +Tosha +Tricia +Aimee +Audra +Brande +Brittany +Carey +Catrina +Charla +Cherie +Clarissa +Dee +Elaine +Jeri +Johnna +Lois +Lynn +Maranda +Mendy +Michael +Myra +Priscilla +Rachael +Robbie +Rochelle +Shalonda +Shellie +Shonda +Sondra +Sonia +Stefanie +Sue +Tamela +Tarsha +Trina +Amie +Angelique +Billy +Brandee +Bridgett +Cassie +Charlene +Christa +Crissy +Cristie +Daphne +Darlene +Delores +Felisha +Gayla +Geneva +Hope +Jeanette +Jessie +Judith +Kyla +Lashunda +Latricia +Lydia +Maggie +Michell +Mistie +Naomi +Renita +Shelby +Tamala +Tessa +Thelma +Tisha +Tresa +Windy +Yvette +Alisa +Angella +Anitra +Annie +Benita +Cheri +Chiquita +Cortney +Danna +Darcy +Doris +Edith +Emma +Ericka +Eva +Gabrielle +Gail +Gena +Georgia +Greta +Iris +Jean +Jerri +Kami +Kasey +Kendall +Kesha +Krista +Lana +Larissa +Latanya +Latrica +Leslee +Lucinda +Lucy +Lynette +Marcella +Marcy +Margie +Marilyn +Micah +Monique +Natisha +Nichole +Olivia +Pamala +Patrice +Phyllis +Rachelle +Ruth +Sally +Shanda +Shari +Sharla +Sharron +Sheena +Sherrie +Sheryl +Tiffanie +Vivian +Yolonda +Yvonne +Jennifer +Angela +Amy +Amanda +Kimberly +Melissa +Heather +Stephanie +Misty +Michelle +Rebecca +Mary +Lisa +Crystal +Tammy +Tonya +Christy +Shannon +April +Christina +Sarah +Tracy +Elizabeth +Tina +Stacy +Brandy +Carrie +Cynthia +Julie +Susan +Amber +Wendy +Laura +Kelly +Karen +Ashley +Lori +Melanie +Andrea +Teresa +Leslie +Monica +Christie +Pamela +Dana +Patricia +Rhonda +Holly +Jessica +Sharon +Tanya +Yolanda +Brandi +Rachel +Robin +Sherry +Jamie +Tiffany +Alicia +Tara +Shelly +Linda +Nicole +Mandy +Kristi +Courtney +Donna +Regina +Stacey +Katrina +Leah +Paula +Sonya +Deborah +Felicia +Melinda +Tamara +Barbara +Erica +Kristy +Emily +Erin +Sandra +Valerie +Carla +Cassandra +Catherine +Dawn +Sara +Sheila +Brenda +Kristen +Terri +Katherine +Kelli +Christine +Cindy +Jacqueline +Allison +Belinda +Kathy +Nancy +Natasha +Angie +Carolyn +Janet +Jill +Penny +Samantha +Anita +Anna +Beverly +Jenny +Latonya +Tracey +Carol +Chasity +Danielle +Kerri +Kristie +Toni +Angelia +Connie +Debra +Ginger +Jackie +Kathryn +Leigh +Victoria +Betty +Deanna +Maria +Natalie +Veronica +Charlotte +Cheryl +Gina +Kari +Marsha +Tamika +Julia +Kara +Karla +Martha +Michele +Shawna +Stacie +Theresa +Cara +Denise +Dorothy +Joy +Kristin +Meredith +Robyn +Shana +Becky +Bridget +Christi +Kelley +Miranda +Shelley +Tasha +Aimee +Candace +Casey +Kendra +Keri +Kerry +Megan +Melody +Nikki +Rebekah +Carmen +Charity +Kellie +Mindy +Misti +Tameka +Tracie +Angel +Brandie +Diane +Erika +Gwendolyn +Judy +Katina +Latasha +Latisha +Margaret +Sandy +Summer +Virginia +Bridgett +Chrystal +Diana +Hope +Jana +Latoya +Peggy +Tamiko +Tawanna +Vanessa +Wanda +Adrienne +Candy +Heidi +Helen +Jacquelyn +Joanna +Juanita +Ladonna +Lashonda +Rachael +Shelia +Shirley +Suzanne +Tabitha +Trisha +Alisha +Alison +Audrey +Chastity +Janice +Katie +Kenya +Lakeisha +Lakesha +Lana +Nakia +Renee +Rita +Sabrina +Shawn +Tammie +Trina +Ann +Autumn +Billie +Bonnie +Bridgette +Brooke +Glenda +Gloria +Jodi +Kim +Kimberley +Lauren +Laurie +Lena +Loretta +Shanda +Shonda +Tabatha +Tonia +Yvonne +Alice +Annette +Bobbie +Cassie +Cathy +Jeannie +Kayla +Krista +Krystal +Lara +Lesley +Nichole +Norma +Whitney +Amie +Audra +Beth +Candice +Dena +Ellen +Georgia +Hollie +Joann +Jody +Joyce +Lora +Lorie +Marie +Marla +Olivia +Sherri +Staci +Teri +Tisha +Tosha +Vicki +Vickie +Wendi +Anne +Carey +Celeste +Chanda +Chandra +Corey +Cristy +Demetria +Jenifer +Jerri +Jo +Kerrie +Kristina +Lacy +Lashanda +Latonia +Latricia +Lawanda +Leann +Mandi +Marcia +Roberta +Rochelle +Ronda +Shalonda +Sheri +Sherrie +Sondra +Sylvia +Tia +Tomeka +Traci +Tricia +Valarie +Alisa +Bethany +Betsy +Callie +Caroline +Charlene +Cheri +Clara +Clarissa +Daphne +Dianna +Dusty +Felisha +Gayla +Gena +Gretchen +Hannah +Jaime +Janie +Jason +Jennie +Jodie +Judith +Keisha +Kimberlee +Lee +Lola +Lorrie +Luciana +Maranda +Marian +Melisa +Mona +Monique +Priscilla +Rena +Rose +Shanna +Sharonda +Shelby +Sonia +Sunny +Teressa +Terry +Alexa +Andria +Charla +Darla +Ebony +Elisabeth +Eva +Flora +Jeanette +Jessie +John +Karrie +Lakisha +Latina +Latosha +Malinda +Marilyn +Michael +Mistie +Molly +Racheal +Sharla +Tamela +Tera +Tracee +Vivian +Ami +Audrea +Brian +Cari +Catrina +Cecilia +Cherry +Chiquita +Christa +Christal +Cora +Darlene +Debbie +Evelyn +Faith +Haley +Holli +Jami +Janna +Johnnie +Jolene +Kandi +Kathleen +Kisha +Kristal +Larhonda +Lashunda +Latanya +Latrice +Latrina +Leanna +Lela +Leona +Lesa +Lindsay +Lindsey +Lois +Lucinda +Lydia +Lynn +Melynda +Nina +Patty +Rhoda +Rikki +Rolanda +Shameka +Shantell +Shelli +Sonja +Stefanie +Sue +Tammi +Tawana +Thelma +Tori +Toya +Vera +Yolonda +Jennifer +Amanda +Amy +Angela +Melissa +Kimberly +Heather +Stephanie +Jamie +Misty +Rebecca +Lisa +Shannon +Brandy +Crystal +Christina +April +Christy +Sarah +Jessica +Mary +Laura +Michelle +Julie +Tonya +Elizabeth +Amber +Tammy +Stacy +Tiffany +Carrie +Tracy +Andrea +Tina +Wendy +Ashley +Melanie +Kelly +Rachel +Brandi +Monica +Jaime +Leslie +Susan +Teresa +Pamela +Sara +Lori +Dana +Karen +Tara +Cynthia +Sharon +Holly +Rhonda +Erin +Patricia +Kristi +Carla +Samantha +Courtney +Nicole +Robin +Sherry +Stacey +Erica +Mandy +Christie +Shelly +Yolanda +Donna +Sandra +Tanya +Barbara +Alicia +Allison +Kristy +Paula +Regina +Emily +Felicia +Linda +Melinda +Natalie +Dawn +Jill +Tamara +Valerie +Katrina +Sonya +Anna +Deborah +Latonya +Kara +Latasha +Margaret +Melody +Nancy +Theresa +Kendra +Terri +Kristie +Latoya +Miranda +Angie +Katherine +Kristina +Brenda +Debra +Denise +Leah +Sheila +Tamika +Veronica +Candice +Carolyn +Cindy +Deanna +Ginger +Janet +Jodi +Kelli +Toni +Beverly +Sabrina +Aimee +Cheryl +Kerri +Lashonda +Anita +Charlotte +Diana +Kellie +Christine +Hope +Jacqueline +Jenny +Lesley +Natasha +Shirley +Victoria +Virginia +Carmen +Danielle +Kathryn +Kerry +Meredith +Shana +Summer +Tracey +Alisha +Angel +Bridget +Carol +Cathy +Charity +Jana +Joy +Krystal +Leigh +Michele +Shelley +Vanessa +Adrienne +Belinda +Candace +Chasity +Connie +Heidi +Joanna +Kathy +Kristin +Mindy +Nikki +Shawna +Tennille +Billie +Bobbie +Chastity +Chrystal +Jeannie +Jerri +Joyce +Kristen +Traci +Alison +Autumn +Beth +Brooke +Catherine +Christi +Dorothy +Erika +Farrah +Maria +Marsha +Rebekah +Sonja +Suzanne +Tabitha +Tameka +Tasha +Tracie +Anne +Audra +Betty +Bridgett +Cassandra +Chandra +Glenda +Kari +Kelley +Latisha +Latosha +Laurie +Lindsay +Mandi +Olivia +Peggy +Penny +Sherri +Vickie +Angelia +Becky +Candy +Carissa +Ellen +Gina +Gloria +Janice +Kenya +Keri +Lakeshia +Megan +Rita +Ronda +Stacie +Sylvia +Ann +Bethany +Cara +Gwendolyn +Jackie +Jami +Ladonna +Lakeisha +Lindsey +Martha +Rachael +Sandy +Shanna +Sunny +Amie +Bonnie +Bridgette +Christa +Darla +Debbie +Faith +Gretchen +Jodie +Kimberley +Krista +Lora +Misti +Sally +Shonda +Stefanie +Tamiko +Terry +Vicki +Audrey +Brandie +Carey +Cari +Dianna +Ebony +Helen +Juanita +Katina +Kim +Lakesha +Lawanda +Leann +Lola +Marie +Nakia +Robyn +Shauna +Shelby +Shelia +Sherrie +Tammie +Tanisha +Trisha +Wanda +Wendi +Alice +Carie +Casandra +Celeste +Evelyn +Felisha +Jayme +Jenifer +Jo +Jody +Julia +Karla +Kathleen +Katie +Kristal +Lakisha +Liberty +Marisa +Marla +Priscilla +Ramona +Rose +Shanda +Shawn +Tera +Terra +Tonia +Valarie +Whitney +Caroline +Chanda +Cortney +Darlene +Frances +Jason +Melisa +Monique +Nichole +Paige +Renee +Sonia +Staci +Tabatha +Teri +Tori +Tricia +Amelia +Andria +Annie +Brittany +Casey +Cassie +Charla +Charlene +Cherie +Christal +Danna +Dedra +Dena +Dixie +Doris +Dusty +Gayla +Gena +Georgia +Hollie +Janie +Janna +Jeri +Joanie +Judy +Keesha +Lana +Lashanda +Lashunda +Latanya +Latonia +Lee +Lena +Loretta +Maranda +Marian +Molly +Mona +Naomi +Patty +Rochelle +Tawanna +Tomeka +Vicky +Vivian +Bobby +Brittney +Catrina +Clarice +Clarissa +Colleen +Corey +Danita +Dayna +Deana +Dee +Deidre +Diane +Dionne +Edith +Elaine +Ella +Emma +Eva +Felecia +Hannah +Holli +Iris +Jacquelyn +Janis +January +Jeana +Jeanette +Jennie +Jimmie +Jolene +Karie +Karrie +Kathrine +Keisha +Kenisha +Kesha +Lashundra +Latarsha +Lea +Libby +Lorie +Lorrie +Lydia +Makesha +Malissa +Micah +Michael +Mistie +Nikita +Octavia +Racheal +Raquel +Reshonda +Rhiannon +Rosa +Roshonda +Serena +Sharonda +Sophia +Spring +Stella +Susanne +Tisha +Trinity +Jennifer +Amanda +Angela +Amy +Kimberly +Heather +Melissa +Stephanie +Misty +Crystal +Jessica +Jamie +Mary +Brandy +Kelly +April +Laura +Andrea +Lisa +Rebecca +Sarah +Amber +Christina +Shannon +Elizabeth +Ashley +Carrie +Christy +Michelle +Julie +Tonya +Stacy +Rachel +Leslie +Brandi +Tammy +Monica +Tiffany +Holly +Sara +Dana +Tracy +Tara +Erin +Kristy +Lori +Mandy +Tina +Susan +Samantha +Melanie +Pamela +Patricia +Karen +Emily +Teresa +Alicia +Cynthia +Natalie +Rhonda +Erica +Sabrina +Wendy +Kristi +Latoya +Nicole +Felicia +Carla +Melinda +Katherine +Natasha +Regina +Robin +Summer +Allison +Anna +Courtney +Jaime +Latasha +Tanya +Linda +Tamara +Valerie +Jill +Paula +Shawna +Latonya +Leah +Shelly +Sharon +Stacey +Krystal +Donna +Kristie +Sherry +Yolanda +Christie +Nancy +Kathryn +Shanna +Aimee +Catherine +Charity +Cheryl +Rebekah +Sandra +Tabitha +Cindy +Kendra +Barbara +Dawn +Kelli +Melody +Virginia +Jenny +Kelley +Kizzy +Sonya +Alisha +Carolyn +Charlotte +Jacqueline +Katrina +Kerri +Lakesha +Brenda +Deanna +Erika +Kristina +Misti +Sheila +Vanessa +Bridget +Brooke +Danielle +Deborah +Denise +Farrah +Gina +Lindsey +Maria +Anita +Casey +Christine +Kara +Keri +Tamika +Victoria +Angelia +Beverly +Cassandra +Joy +Kari +Leigh +Lindsay +Shana +Terri +Theresa +Toni +Audrey +Cara +Chasity +Debra +Jodi +Kristen +Miranda +Olivia +Robyn +Traci +Veronica +Carol +Connie +Julia +Kristin +Lakisha +Lauren +Martha +Megan +Meredith +Sandy +Shelley +Tameka +Tasha +Angel +Bethany +Candace +Carmen +Jackie +Kellie +Kerry +Marla +Ann +Beth +Bonnie +Cristy +Diana +Ginger +Hannah +Jaclyn +Nikki +Adrienne +Brandie +Joanna +Kathy +Ladonna +Lana +Sharonda +Shelia +Sherri +Betty +Christi +Helen +Jodie +Judy +Kim +Kizzie +Latisha +Marsha +Michele +Tracie +Trina +Amie +Autumn +Chandra +Christa +Ebony +Jana +Janet +Jenifer +Lakeisha +Laurie +Penny +Rachael +Rose +Shonda +Suzanne +Tracey +Whitney +Alison +Belinda +Candice +Catrina +Glenda +Jane +Jocelyn +Krista +Kristal +Latosha +Lawanda +Melisa +Mindy +Renee +Shayla +Terra +Angie +Bobbie +Chrystal +Evelyn +Gwendolyn +Jami +Joyce +Karla +Kenya +Lea +Lesley +Peggy +Shirley +Staci +Stacie +Tammie +Tawana +Tera +Tonia +Wanda +Alice +Annette +Audra +Brook +Carey +Elisha +Emma +Heidi +Jacquelyn +Janie +Jeanna +Jo +Juanita +Katie +Kayla +Lakeshia +Lashonda +Lee +Margaret +Ruby +Sally +Sheri +Amelia +Anne +Becky +Brittany +Chastity +Christal +Ellen +Ericka +Eva +Faith +Gretchen +Hollie +Janice +Jeanie +Jeannie +Jerri +Katina +Kesha +Lacey +Marie +Marisa +Marissa +Mollie +Ramona +Sherrie +Shonna +Trisha +Vicki +Alanna +Bridgett +Brittney +Cassie +Cathy +Chanda +Charlene +Demetria +Frances +Georgia +Jason +Jeanette +Jessie +Jody +Karrie +Kathleen +Latrice +Lora +Loretta +Lydia +Margie +Mitzi +Myra +Nakisha +Nichole +Rita +Shauna +Sonja +Stefanie +Sylvia +Tami +Tanika +Tanisha +Teri +Tisha +Tosha +Vickie +Vicky +Abby +Aisha +Billie +Casandra +Clara +Danette +Dena +Diane +Dianna +Dixie +Dorothy +Gena +James +Janna +Jasmine +Jillian +Johnna +Karri +Kimberley +Lacie +Laquita +Larissa +Latoshia +Lawanna +Michael +Priscilla +Ronda +Selena +Serena +Shalon +Shanda +Shandra +Shanika +Sharla +Shawnna +Tabatha +Tamiko +Tia +Tomeka +Tori +Valarie +Yulanda +Alesha +Alissa +Anitra +Betsy +Callie +Candy +Carissa +Carri +Celeste +Charla +Christopher +Corrie +David +Deana +Debbie +Deidre +Devon +Doris +Dusty +Freda +Genevieve +Gloria +Haley +Hope +Jada +Jammie +Jayme +Jeremy +Johnnie +Kami +Kerrie +Latesha +Latoria +Latrina +Leann +Leticia +Letitia +Lorie +Lynda +Lynn +Mandi +Maranda +Marilyn +Marlena +Melony +Mia +Monique +Naomi +Paige +Pepper +Rena +Rosalyn +Ruth +Salena +Salina +Shameka +Shannan +Shawana +Sonia +Sue +Tamra +Tequila +Terrie +Tiffanie +Vera +Windy +Yvonne +Jennifer +Amanda +Amy +Angela +Melissa +Crystal +Heather +Sarah +Stephanie +Kimberly +Misty +Jessica +April +Brandy +Amber +Jamie +Christina +Ashley +Lisa +Mary +Kelly +Laura +Elizabeth +Andrea +Rebecca +Michelle +Christy +Tina +Stacy +Kristy +Shannon +Brandi +Tonya +Tiffany +Carrie +Leslie +Rachel +Tara +Sara +Cynthia +Tracy +Erin +Julie +Erica +Karen +Lori +Dana +Wendy +Holly +Alicia +Natalie +Monica +Melanie +Emily +Samantha +Tammy +Susan +Patricia +Courtney +Melinda +Nicole +Kristi +Linda +Teresa +Robin +Tabitha +Mandy +Regina +Stacey +Leah +Miranda +Natasha +Pamela +Cheryl +Megan +Katherine +Sharon +Sherry +Yolanda +Jill +Rhonda +Shelly +Tamara +Christie +Felicia +Kathryn +Kristina +Latasha +Carla +Casey +Kara +Latoya +Melody +Valerie +Veronica +Allison +Candice +Katrina +Nancy +Sabrina +Anna +Bethany +Brooke +Kristen +Sonya +Summer +Virginia +Cassandra +Catherine +Danielle +Deanna +Donna +Jenny +Lindsay +Vanessa +Angel +Candace +Kendra +Shawna +Tamika +Jacqueline +Kelli +Shanna +Tanya +Autumn +Chasity +Denise +Kristie +Krystal +Angelia +Gina +Kellie +Lindsey +Meredith +Sandra +Tameka +Alisha +Barbara +Bobbie +Christine +Deborah +Kelley +Mindy +Nikki +Rebekah +Victoria +Cindy +Dawn +Ginger +Janet +Lakisha +Terri +Brenda +Chrystal +Joy +Kathy +Katie +Latonya +Paula +Jaime +Jana +Tracey +Adrienne +Carol +Carolyn +Charity +Jackie +Kerri +Latisha +Lora +Maria +Marsha +Martha +Penny +Priscilla +Suzanne +Theresa +Angie +Candy +Connie +Ebony +Julia +Karla +Kristin +Margaret +Robyn +Shauna +Staci +Tasha +Toni +Audrey +Beth +Brandie +Bridget +Charlotte +Lakeisha +Latosha +Lauren +Shana +Alison +Amie +Anita +Carmen +Chandra +Chrissy +Darla +Debra +Jami +Joni +Keri +Kimberley +Lacey +Leigh +Olivia +Renee +Ruby +Sherri +Shirley +Tomeka +Whitney +Alice +Ann +Audra +Brittany +Carey +Cassie +Faith +Heidi +Jenifer +Kristal +Lakeshia +Maranda +Marie +Rose +Sheila +Tonia +Annie +Becky +Belinda +Betty +Beverly +Billie +Diane +Erika +Evelyn +Jaclyn +Jodie +Kari +Keisha +Kerry +Lakesha +Laurie +Lesley +Sally +Stacie +Tammie +Trisha +Brittney +Cara +Devin +Devon +Diana +Gretchen +Joanna +Kenya +Lana +Lee +Michele +Peggy +Terra +Aimee +Dorothy +Ericka +Gwendolyn +Hannah +Hollie +Janice +Jillian +Kathleen +Lea +Mandi +Marcia +Monique +Rachael +Ramona +Rochelle +Shelley +Sondra +Teri +Tracie +Tricia +Trina +Bobbi +Bonnie +Bridgette +Caroline +Chastity +Christa +Christal +Christi +Ellen +Jasmine +Jeanna +Jeannie +Jessie +Jodi +Joyce +Judy +Kasey +Kayla +Kesha +Kizzy +Lacy +Lashunda +Lawanda +Lena +Loretta +Misti +Molly +Sharla +Tosha +Alecia +Cathy +Cortney +Crissy +Deana +Debbie +Doris +Glenda +Haley +Jan +Jayme +Jeana +Jeri +Juanita +Katina +Kenisha +Kristine +Ladonna +Melisa +Mellissa +Precious +Rhiannon +Rosalind +Ruth +Sandy +Serena +Shameka +Shanda +Shelia +Sheri +Starla +Wanda +Alisa +Amelia +Andra +Anne +Annette +Callie +Casandra +Christopher +Cody +Corrie +Dena +Desiree +Dianna +Farrah +Felisha +Hayley +Hope +Janie +Jerri +Khalilah +Krista +Kyla +Lara +Larhonda +Lashonda +Latrina +Marla +Marlena +Mistie +Natosha +Nichole +Nora +Polly +Rachelle +Ronda +Ryan +Scarlett +Selena +Shalanda +Shasta +Shonda +Sylvia +Tisha +Traci +Allyson +Alyssa +Beatrice +Camilla +Candi +Carmella +Charlene +Chasidy +Cherie +Chiquita +Cristina +Cristy +Devan +Dusty +Elisabeth +Elisha +Eva +Felecia +Frances +Gayla +Geneva +Helen +Hillary +Jacquelyn +Jammie +Jason +Jo +Joanie +Johanna +Johnna +Judith +Kandi +Karrie +Katy +Kim +Laquita +Latoshia +Latrice +Lindy +Lola +Lorie +Marilyn +Melodie +Mendy +Mia +Michael +Miriam +Mona +Nicki +Racheal +Rena +Roslyn +Shanta +Shara +Sharonda +Shemika +Shunda +Sonja +Stephenie +Tameika +Tanisha +Tarsha +Valarie +Vicki +Vickie +Windy +Yolonda +Amanda +Jennifer +Melissa +Amy +Angela +Kimberly +Crystal +Sarah +Amber +April +Stephanie +Jessica +Heather +Brandy +Misty +Ashley +Rebecca +Jamie +Lisa +Elizabeth +Mary +Tiffany +Christina +Laura +Michelle +Rachel +Andrea +Julie +Shannon +Brandi +Christy +Kelly +Leslie +Tara +Carrie +Erica +Monica +Samantha +Kristy +Alicia +Tonya +Stacy +Teresa +Emily +Sara +Tina +Wendy +Cynthia +Patricia +Lori +Holly +Erin +Dana +Tracy +Katrina +Tammy +Katherine +Courtney +Melanie +Natalie +Mindy +Natasha +Kelli +Nicole +Allison +Kristen +Mandy +Susan +Candice +Kristi +Robin +Cheryl +Melinda +Latasha +Karen +Miranda +Pamela +Anna +Carla +Lindsey +Valerie +Donna +Kathryn +Latoya +Jill +Candace +Casey +Catherine +Tabitha +Tamara +Bethany +Kara +Kendra +Latonya +Sandra +Alisha +Felicia +Jacqueline +Shawna +Megan +Paula +Shanna +Dawn +Rhonda +Barbara +Brooke +Linda +Regina +Cindy +Kristie +Lindsay +Summer +Vanessa +Yolanda +Cassandra +Latisha +Sherry +Sonya +Stacey +Tasha +Terri +Nancy +Whitney +Autumn +Christie +Jana +Kristina +Krystal +Leah +Meredith +Beverly +Christine +Lesley +Rebekah +Veronica +Charlotte +Danielle +Jenny +Lauren +Maria +Nikki +Sabrina +Tanya +Jaclyn +Joy +Margaret +Melody +Tameka +Angel +Bridget +Diana +Kerri +Rachael +Sharon +Toni +Alison +Brenda +Denise +Erika +Hannah +Janet +Julia +Martha +Angelia +Chasity +Ebony +Heidi +Kari +Leigh +Shelly +Sherri +Angie +Ann +Beth +Bonnie +Carol +Cassie +Deanna +Jaime +Kathy +Krista +Kristin +Lakesha +Shalonda +Shauna +Sheila +Shelley +Staci +Alissa +Carmen +Carolyn +Deborah +Debra +Kelley +Kenya +Suzanne +Trina +Victoria +Audrey +Charity +Evelyn +Kristal +Lacey +Lakisha +Latosha +Stacie +Traci +Billie +Bobbie +Brittany +Cara +Connie +Jackie +Keri +Lee +Penny +Tracey +Virginia +Becky +Betty +Brandie +Candi +Cristy +Hillary +Jodi +Kathleen +Lakeisha +Monique +Tamika +Tanisha +Terra +Theresa +Trisha +Adrian +Aimee +Brittney +Gina +Ginger +Haley +Joni +Katie +Katina +Michele +Peggy +Renee +Shana +Sylvia +Tabatha +Tyronda +Adrienne +Alice +Alisa +Anne +Annie +Christa +Christi +Chrystal +Debbie +Hope +Jenifer +Jillian +Joanna +Juanita +Kellie +Laurie +Maranda +Marilyn +Priscilla +Abby +Adrianne +Chandra +Frances +Hollie +Jodie +Karla +Kasey +Lena +Lora +Mandi +Marla +Meghan +Nichole +Rita +Robyn +Tomeka +Annette +Audra +Brianna +Brianne +Carissa +Desiree +Ericka +Helen +Joyce +Kyla +Kylie +Ladonna +Lakeshia +Larissa +Lashonda +Marie +Misti +Ruth +Shameka +Sharonda +Shavonne +Shelia +Tisha +Tricia +Winter +Angelina +Anita +Belinda +Candy +Catrina +Christal +Crissy +Darla +Dorothy +Elisha +Ellen +Felisha +Jeri +Jerri +Jocelyn +Jordan +Kim +Lacy +Lashunda +Loretta +Marlena +Molly +Ramona +Randi +Season +Serena +Shanika +Shasta +Shaunna +Tia +Amelia +Casandra +Clara +Clarissa +Colleen +Dena +Destiny +Diane +Elisabeth +Eva +Glenda +Gretchen +Jacquelyn +Janice +Jody +Judith +Judy +Kayla +Lacie +Lara +Larhonda +Latonia +Latrice +Latricia +Latrina +Leann +Marisa +Marsha +Melisa +Michael +Nakia +Nina +Paige +Patrice +Phyllis +Roberta +Ronda +Sally +Sandy +Shamika +Shanda +Shannan +Shanta +Shea +Sherita +Shirley +Tiffanie +Tosha +Twyla +Vivian +Wanda +Amberly +Amie +Antoinette +Aubrey +Bobbi +Carey +Caroline +Cecilia +Chrissy +Constance +Corrie +Darlene +Demetria +Devin +Dianna +Georgia +Greta +Holli +Jami +Jane +Janetta +Jayme +Jeannie +Jessie +Jo +Joann +Karrie +Kasi +Keisha +Kristine +Lakiesha +Lana +Latanya +Lawanda +Letitia +Lillian +Lorie +Lydia +Lyndsey +Marcia +Marcie +Meagan +Natosha +Olivia +Qiana +Rachelle +Raven +Rhiannon +Rose +Sandi +Shara +Shari +Shelby +Sheri +Sherrie +Sheryl +Shonda +Shonna +Sommer +Sonja +Sunny +Tami +Tammie +Tamra +Tera +Tonia +Tracie +Trinity +Valorie +Wendi +Amanda +Jennifer +Melissa +Sarah +Kimberly +Crystal +Angela +Jessica +Heather +Amy +Amber +Stephanie +Tiffany +Ashley +April +Brandy +Misty +Mary +Elizabeth +Laura +Rebecca +Andrea +Christina +Rachel +Jamie +Lisa +Michelle +Sara +Brandi +Leslie +Shannon +Courtney +Kelly +Nicole +Erin +Alicia +Carrie +Christy +Erica +Julie +Tonya +Stacy +Emily +Holly +Katrina +Natasha +Samantha +Susan +Kristin +Kristy +Monica +Tina +Cynthia +Wendy +Miranda +Tara +Teresa +Kristen +Lori +Katherine +Leah +Pamela +Natalie +Latasha +Melinda +Tracy +Karen +Brooke +Tamara +Dana +Lauren +Tammy +Allison +Anna +Candace +Patricia +Melanie +Tasha +Candice +Latoya +Lindsey +Catherine +Megan +Kathryn +Robin +Mindy +Katie +Kara +Lindsay +Mandy +Stacey +Kristi +Rhonda +Sabrina +Summer +Tanya +Felicia +Alisha +Bethany +Casey +Shanna +Veronica +Yolanda +Dawn +Jenny +Jill +Sandra +Carla +Cindy +Sharon +Terri +Barbara +Danielle +Shelly +Vanessa +Bridget +Kelli +Kendra +Angel +Cassandra +Charlotte +Cheryl +Donna +Kristina +Shawna +Autumn +Latisha +Valerie +Carolyn +Melody +Nina +Rebekah +Tabitha +Charity +Christine +Joy +Julia +Margaret +Nancy +Paula +Brittany +Janet +Kristie +Linda +Regina +Victoria +Christie +Jacqueline +Jana +Krystal +Sonya +Toni +Virginia +Alison +Hannah +Meredith +Rachael +Rose +Tabatha +Cara +Cassie +Chasity +Debra +Ginger +Jodi +Latonya +Leigh +Maria +Monique +Priscilla +Renee +Sherry +Tameka +Whitney +Carmen +Kathleen +Lakeisha +Maranda +Nikki +Shauna +Alice +Angelia +Bobbie +Denise +Janice +Lakisha +Terra +Audrey +Belinda +Beth +Bonnie +Candi +Chrystal +Deborah +Ebony +Jaime +Sheila +Theresa +Aimee +Billie +Brenda +Kathy +Keisha +Keri +Kerri +Lesley +Trisha +Becky +Brandie +Desiree +Elisha +Erika +Faith +Jaclyn +Juanita +Lashonda +Lee +Lora +Robyn +Betty +Christi +Heidi +Jacquelyn +Joanna +Jocelyn +Joni +Kasey +Lacy +Ladonna +Lakesha +Loretta +Martha +Micah +Misti +Olivia +Shameka +Shayla +Tori +Alisa +Amie +Angie +Audra +Beverly +Bridgett +Candy +Carol +Catrina +Chandra +Charlene +Dena +Georgia +Gina +Glenda +Gwendolyn +Kari +Kellie +Lacey +Latosha +Paige +Shalonda +Shelley +Stefanie +Suzanne +Traci +Wanda +Alexis +Amelia +Anne +Bridgette +Brittney +Cathy +Christa +Diana +Diane +Ericka +Gloria +Helen +Hollie +Jami +Jenifer +Jerri +Jillian +Jody +Jordan +Karla +Krista +Lana +Lashunda +Lawanda +Lea +Marilyn +Marsha +Morgan +Staci +Starla +Tamika +Tia +Tosha +Tracey +Tracie +Vicky +Abigail +Adrienne +Alesha +Alissa +Anita +Ann +Annette +Athena +Bobbi +Brianne +Camille +Connie +Delana +Ellen +Evelyn +Frances +Hillary +Janna +Jayme +Jeannie +Kelley +Kimberley +Kisha +Lyndsey +Patrice +Raven +Rosemary +Sherri +Shirley +Tequila +Tisha +Cheri +Crissy +Deanna +Demetria +Destiny +Dorothy +Hope +Jackie +Jo +Kandi +Kesha +Kimberlee +Latanya +Lena +Lillian +Lydia +Marcia +Marcie +Meagan +Michael +Naomi +Penny +Racheal +Renata +Rosalyn +Sally +Sharonda +Shemika +Stacie +Tamera +Tami +Tammie +Tanisha +Teri +Wendi +Yvonne +Allyson +Britney +Chastity +Cortney +Darla +Devon +Dixie +Elisabeth +Felisha +Genevieve +Jane +Janelle +Jeanie +Jennie +Jessie +Jodie +Joyce +Judy +Kenya +Kerry +Lashanda +Latina +Laurie +Leann +Lola +Lynette +Lynn +Maggie +Mandi +Margie +Mariah +Marie +Michele +Molly +Nichole +Rochelle +Roxanne +Ruby +Shelia +Tera +Tiffanie +Vicki +Vickie +Abby +Angelina +Annie +Anya +Bianca +Breanna +Brenna +Brooklyn +Caroline +Cassy +Cecilia +Christal +Christin +Corrie +Deidre +Dianna +Dusty +Emma +Gretchen +Haley +Hayley +Iris +Jeanette +Karrie +Katharine +Kayla +Kiley +Kim +Kristal +Lamanda +Laronda +Lucinda +Malinda +Marissa +Marla +Mia +Mollie +Nena +Nikita +Peggy +Reagan +Rena +Rikki +Ronda +Rosa +Ruth +Sandy +Sasha +Shanetta +Shari +Shavon +Shea +Sheryl +Shonda +Sommer +Stephenie +Sue +Tai +Tarsha +Tiffani +Tonia +Tricia +Trina +William +Amanda +Jennifer +Jessica +Crystal +Sarah +Amber +Ashley +Amy +Kimberly +Melissa +Tiffany +Angela +Stephanie +April +Heather +Brandy +Rebecca +Rachel +Mary +Elizabeth +Jamie +Andrea +Brandi +Laura +Lisa +Misty +Courtney +Leslie +Michelle +Erin +Christina +Erica +Sara +Julie +Shannon +Emily +Latoya +Samantha +Kelly +Carrie +Tara +Holly +Lindsey +Natalie +Natasha +Alicia +Katherine +Christy +Patricia +Brooke +Lauren +Kristin +Cynthia +Kristen +Nicole +Leah +Dana +Tonya +Pamela +Katrina +Tina +Candace +Candice +Kristy +Lori +Megan +Miranda +Stacy +Casey +Krystal +Monica +Robin +Anna +Latasha +Tasha +Susan +Felicia +Lindsay +Mandy +Melanie +Tracy +Alisha +Bethany +Cassandra +Danielle +Julia +Summer +Tammy +Allison +Brittany +Linda +Rebekah +Sherry +Jenny +Katie +Regina +Rhonda +Stacey +Tabitha +Whitney +Teresa +Autumn +Barbara +Karen +Kristi +Lacey +Terri +Veronica +Mindy +Vanessa +Cheryl +Kathryn +Kristina +Valerie +Melinda +Tamara +Yolanda +Donna +Jill +Shawna +Shelly +Wendy +Cassie +Charity +Kara +Kelli +Virginia +Alison +Catherine +Christie +Deanna +Denise +Kristie +Meredith +Victoria +Brenda +Hannah +Dawn +Ebony +Latisha +Leigh +Becky +Carla +Chasity +Ginger +Kari +Melody +Sabrina +Sandra +Stefanie +Tanya +Deborah +Haley +Monique +Beth +Bobbie +Jacqueline +Kendra +Rachael +Shanna +Erika +Jaime +Jodi +Kathy +Kerri +Latonya +Maria +Nancy +Audrey +Brandie +Cara +Carol +Christine +Diana +Jana +Janet +Jenifer +Keri +Kimberley +Renee +Ann +Carolyn +Chrystal +Lakesha +Margaret +Martha +Morgan +Nichole +Randi +Sheila +Sonya +Tameka +Angel +Angelia +Bridget +Brittney +Cindy +Constance +Debra +Heidi +Joanna +Kathleen +Lakisha +Shameka +Sharon +Sheena +Tessa +Toni +Hollie +Jeannie +Jennie +Jessie +Kasey +Latosha +Lesley +Misti +Shauna +Wanda +Adrienne +Aimee +Amelia +Beverly +Billie +Carmen +Jaclyn +Jo +Lakeisha +Molly +Paula +Robyn +Trisha +Abigail +Bonnie +Caroline +Dorothy +Gina +Joni +Joy +Kelley +Naomi +Nikki +Shelley +Traci +Alice +Amie +Angie +Ashlee +Audra +Betty +Candi +Candis +Christen +Connie +Cortney +Demetria +Devon +Gwendolyn +Helen +Jordan +Joyce +Ladonna +Lillian +Lora +Meagan +Nina +Raven +Sally +Shana +Shayla +Staci +Stacie +Tammie +Tera +Teri +Tracey +Alesha +Anita +Anne +Annie +Candy +Christi +Cora +Jayme +Karla +Keisha +Kerry +Kisha +Laurie +Lydia +Lyndsey +Mandi +Marilyn +Marsha +Paige +Penny +Priscilla +Rochelle +Shamika +Sheri +Shirley +Tabatha +Tamika +Terra +Tia +Tiffani +Tricia +Brianna +Bridgett +Britney +Callie +Chandra +Charlotte +Chastity +Christian +Clara +Edna +Glenda +Jacquelyn +Jillian +Johnna +Kayla +Kellie +Kira +Lacy +Lana +Lashonda +Latrisha +Marissa +Marla +Meghan +Mica +Micah +Michael +Michele +Patrice +Sharonda +Shasta +Sylvia +Theresa +Tonia +Tosha +Tracie +Vickie +Alexis +Andria +Bambi +Belinda +Bianca +Brook +Charla +Christal +Deidra +Dusty +Elisabeth +Elisha +Ellen +Ericka +Eva +Gabrielle +Gayla +Georgia +Gretchen +Jodie +Kandi +Kassandra +Krista +Lakeshia +Lashundra +Latara +Lindy +Maggie +Marie +Racheal +Rosalyn +Ruby +Selena +Sondra +Suzanne +Tamera +Tamra +Taylor +Valarie +Abby +Alaina +Alanna +Alethea +Alisa +Ambra +Carly +Casandra +Cathy +Charlene +Christa +Christin +Christopher +Desiree +Diane +Eboni +Elaina +Evelyn +Hillary +Hope +Jane +Janice +Janna +Jeanne +Jessi +Jocelyn +Judy +Kim +Lacie +Lashanda +Lasonya +Latoria +Latrice +Leann +Lorie +Lyndsay +Maranda +Marcia +Marcie +Melisa +Melisha +Mollie +Nakesha +Natosha +Olivia +Rachelle +Randee +Robbie +Ruth +Sasha +Shanda +Shawnda +Sherri +Sophia +Starla +Sue +Tabetha +Talisha +Tami +Tanisha +Tiffaney +Wendi +Jennifer +Amanda +Jessica +Ashley +Sarah +Crystal +Amber +Tiffany +Amy +Melissa +Kimberly +Stephanie +April +Elizabeth +Angela +Rachel +Rebecca +Brandy +Heather +Andrea +Mary +Jamie +Lindsey +Sara +Laura +Misty +Christina +Courtney +Lisa +Erica +Emily +Kristen +Michelle +Brandi +Kelly +Samantha +Tara +Erin +Leslie +Carrie +Nicole +Julie +Natalie +Alicia +Latoya +Lauren +Candice +Kristin +Shannon +Krystal +Natasha +Brittany +Cassandra +Kayla +Lindsay +Katherine +Stacy +Holly +Anna +Candace +Pamela +Megan +Brooke +Kristy +Tonya +Latasha +Patricia +Casey +Melanie +Cassie +Dana +Katrina +Danielle +Leah +Christy +Miranda +Lacey +Tina +Karen +Sandra +Cynthia +Kathryn +Susan +Allison +Lori +Monica +Robin +Tracy +Whitney +Alisha +Tasha +Catherine +Tabitha +Angel +Bethany +Christine +Hannah +Kristi +Jill +Rebekah +Stacey +Tamara +Teresa +Wendy +Carla +Ebony +Jacqueline +Vanessa +Bobbie +Kara +Kendra +Mandy +Shelly +Bridget +Brittney +Donna +Julia +Katie +Renee +Tammy +Valerie +Victoria +Barbara +Brenda +Kelli +Lacy +Latonya +Meredith +Rachael +Cindy +Haley +Jillian +Kari +Summer +Yolanda +Jenny +Melinda +Nichole +Regina +Sherry +Denise +Martha +Mindy +Paula +Veronica +Autumn +Kellie +Rhonda +Anita +Kelley +Maria +Shawna +Alexis +Alison +Audrey +Charity +Chasity +Dawn +Deanna +Diana +Jana +Joanna +Linda +Randi +Sharon +Sheena +Stefanie +Terri +Bridgett +Carolyn +Christie +Deborah +Jaclyn +Jodi +Kerri +Nikki +Sonya +Terra +Virginia +Adrienne +Ashlee +Beverly +Cheryl +Constance +Debra +Erika +Felicia +Kristina +Monique +Sabrina +Shelley +Tabatha +Toccara +Betty +Chrystal +Kristal +Krystle +Tosha +Abigail +Ginger +Kristie +Latisha +Leigh +Melody +Raven +Robyn +Rose +Shauna +Toni +Amie +Angie +Cara +Charlotte +Helen +Jacquelyn +Jenifer +Lesley +Michele +Morgan +Nancy +Brandie +Candi +Caroline +Chelsea +Cortney +Heidi +Jackie +Janice +Karla +Kasey +Keri +Kira +Lawanda +Ruth +Shana +Shayla +Sherri +Staci +Tameka +Tanya +Anne +Billie +Bonnie +Britney +Carol +Christa +Debbie +Faith +Gina +Hollie +Joni +Joy +Juanita +Kate +Kathleen +Kathy +Ladonna +Lakesha +Lyndsey +Marie +Molly +Naomi +Shanna +Stacie +Aimee +Ann +Bridgette +Catrina +Chandra +Dena +Desiree +Destiny +Elisha +Frances +Janelle +Janie +Jayme +Jessie +Kesha +Krista +Kyla +Laquita +Lashonda +Margaret +Marissa +Sally +Sheila +Sherrie +Sydney +Sylvia +Tamika +Tanika +Tanisha +Tera +Theresa +Tia +Tiffani +Traci +Tracie +Trisha +Alaina +Alice +Angelia +Audra +Beth +Callie +Candy +Carmen +Ellen +Falon +Felisha +Hillary +Jade +Jenna +Jodie +Kandice +Kassie +Katy +Kimberley +Lacie +Latosha +Latricia +Laurie +Loretta +Meghan +Nakia +Nina +Olivia +Penny +Priscilla +Racheal +Ryan +Sandy +Suzanne +Abby +Alyssa +Amelia +Annie +Ashlea +Becky +Belinda +Breanna +Charlene +Chiquita +Christi +Christin +Christopher +Cora +Diane +Dominique +Doris +Elaine +Esther +Fallon +Gabrielle +Gloria +Hope +Janet +Jennie +Jimmie +Jordan +Kacey +Kristian +Lakeisha +Lara +Larissa +Lee +Louise +Lydia +Maggie +Meagan +Melisa +Michael +Miriam +Misti +Nakisha +Natosha +Princess +Rita +Roxanne +Shameka +Shasta +Shena +Sheri +Sherita +Shirley +Tamera +Tanesha +Tracey +Afton +Alana +Alesha +Alexia +Angelina +Annette +Antoinette +Ashleigh +Bobbi +Britany +Brook +Camille +Celeste +Christal +Claudia +Connie +Cristy +Daina +Deana +Deidra +Dianna +Elisabeth +Gayla +Geneva +Glenda +Gretchen +Hayley +Holli +Jacklyn +Jane +Jasmine +Joanie +Joyce +Justin +Kacie +Kandace +Kandi +Keisha +Lakenya +Laquisha +Lena +Mandi +Maranda +Mollie +Nakita +Paige +Peggy +Rachelle +Rochelle +Rosemary +Sallie +Shalonda +Shelby +Shelia +Shonna +Terrie +Terry +Tomeka +Trina +Wanda +Jennifer +Amanda +Ashley +Jessica +Amber +Sarah +Tiffany +Crystal +Heather +Amy +Melissa +Stephanie +Kimberly +Elizabeth +Rachel +Angela +Rebecca +Mary +Jamie +April +Andrea +Lindsey +Laura +Brandy +Brandi +Erin +Christina +Misty +Alicia +Michelle +Holly +Lauren +Megan +Nicole +Sara +Emily +Brittany +Marquita +Erica +Samantha +Lisa +Kelly +Kayla +Courtney +Candice +Leslie +Julie +Natalie +Tara +Stacy +Lindsay +Krystal +Katherine +Kristen +Kristin +Carrie +Latoya +Miranda +Shannon +Whitney +Katie +Leah +Monica +Anna +Danielle +Allison +Pamela +Cynthia +Kathryn +Katrina +Lacey +Sheena +Melanie +Cassandra +Susan +Tabitha +Tonya +Karen +Alisha +Catherine +Patricia +Casey +Candace +Tamara +Cassie +Christy +Stacey +Kristina +Natasha +Teresa +Brooke +Tina +Wendy +Tasha +Hannah +Tracy +Victoria +Dana +Robin +Vanessa +Alexis +Brittney +Kara +Kendra +Latasha +Sandra +Shelly +Ebony +Kristy +Julia +Summer +Valerie +Veronica +Carla +Felicia +Jacqueline +Jenny +Bethany +Bridget +Desiree +Kari +Rachael +Shanna +Sharon +Morgan +Rebekah +Sabrina +Meredith +Autumn +Lori +Ashlee +Barbara +Cara +Donna +Erika +Jill +Kelli +Kristi +Mandy +Chelsea +Dawn +Deanna +Diana +Linda +Adrienne +Ann +Audra +Audrey +Brenda +Christine +Margaret +Meghan +Sherry +Angel +Bobbie +Brandie +Charity +Chasity +Keri +Latisha +Maria +Nikki +Regina +Christie +Deborah +Latonya +Lesley +Rhonda +Stefanie +Tammy +Tanya +Virginia +Cindy +Fallon +Joanna +Maranda +Mindy +Shawna +Staci +Gloria +Jodi +Krista +Paula +Trista +Alison +Britney +Caroline +Cheryl +Denise +Ginger +Haley +Lacy +Leigh +Meagan +Melinda +Patrice +Priscilla +Sonya +Tabatha +Toni +Tosha +Carmen +Jaclyn +Kerri +Melody +Nancy +Raven +Tessa +Abigail +Becky +Bridgett +Candi +Chandra +Christen +Constance +Kasey +Kathleen +Kelley +Kristie +Latoria +Lyndsey +Martha +Randi +Ruth +Shameka +Shauna +Shelley +Tameka +Tamika +Tanesha +Taylor +Terri +Tracey +Traci +Beverly +Carolyn +Casandra +Dianna +Helen +Jasmine +Jillian +Kirby +Krystle +Lydia +Monique +Shana +Suzanne +Tarah +Terra +Aimee +Charlotte +Christa +Connie +Elisha +Ericka +Hollie +Jami +Janet +Jenna +Joy +Kathy +Latrice +Marsha +Nina +Racheal +Rachelle +Shirley +Theresa +Tiffanie +Trisha +Yolanda +Adrianne +Alana +Alexandra +Amie +Angie +Belinda +Beth +Cristy +Diane +Eva +Jackie +Jana +Jo +Kaci +Karla +Kellie +Kerry +Kristal +Lakesha +Lakisha +Lashonda +Laurie +Mallory +Marie +Molly +Robyn +Sally +Sharonda +Shasta +Sherri +Stacie +Valarie +Abby +Alexandria +Alice +Antoinette +Betty +Billie +Breanna +Bridgette +Carol +Cortney +Debra +Destiny +Gina +Jenifer +Jerri +Jessie +Kacey +Keisha +Laci +Laquita +Lashunda +Latosha +Maggie +Micah +Nichole +Olivia +Paige +Ramona +Roxanne +Savannah +Sheri +Tera +Tracie +Adrian +Alecia +Amelia +Ashleigh +Bobbi +Bonnie +Callie +Carissa +Carly +Christal +Christi +Christian +Christin +Chrystal +Darla +Darlene +Deidre +Dorothy +Gabrielle +Grace +Gretchen +Hope +Jacquelyn +Jade +Jayme +Jody +Johanna +Jordan +Kacie +Kala +Kandi +Kelsey +Kimberlee +Lacie +Ladonna +Lashanda +Leann +Leanne +Lee +Lora +Marilyn +Melisa +Penny +Rita +Ruby +Sasha +Serena +Shayla +Sondra +Sylvia +Tamra +Tanisha +Tashina +Tawana +Tia +Tierra +Tiffani +Alisa +Alyssa +Amberly +Andria +Angelia +Angelina +Anita +Anne +Aubrey +Briana +Britni +Camille +Candy +Cassey +Cecilia +Chelsey +Cheyenne +Chiquita +Christopher +Claire +Corey +Cristina +Daisy +Deidra +Demetria +Devin +Dixie +Echo +Elisabeth +Ella +Ellen +Glenda +Heidi +Jaime +Jane +Janice +Jeanette +Jocelyn +Jodie +Kandice +Kate +Katharine +Kerrie +Lakendra +Lakeshia +Lara +Larhonda +Leanna +Lynette +Lynn +Mandi +Mia +Michael +Michele +Natalia +Phyllis +Rikki +Rochelle +Sandy +Selena +Shanta +Sommer +Tabetha +Tammi +Tiara +Jennifer +Ashley +Jessica +Amanda +Amber +Sarah +Stephanie +Heather +Tiffany +Crystal +Kimberly +Rachel +Amy +Melissa +Elizabeth +April +Megan +Mary +Rebecca +Lindsey +Laura +Brittany +Andrea +Brandy +Jamie +Emily +Lauren +Angela +Samantha +Courtney +Christina +Brandi +Erica +Latoya +Tara +Michelle +Misty +Nicole +Lisa +Sara +Alicia +Candice +Holly +Whitney +Erin +Kristen +Krystal +Danielle +Stacy +Katherine +Shannon +Kelly +Natalie +Candace +Brooke +Kayla +Allison +Natasha +Sheena +Lacey +Cassandra +Lindsay +Carrie +Julie +Monica +Anna +Victoria +Leah +Brittney +Christy +Cynthia +Leslie +Miranda +Katie +Kristin +Alisha +Ebony +Melanie +Patricia +Cassie +Kathryn +Tabitha +Chelsea +Tamara +Hannah +Rachael +Susan +Valerie +Katrina +Marquita +Kristy +Pamela +Tina +Tracy +Alexis +Casey +Bethany +Tonya +Kara +Karen +Kendra +Latasha +Nikki +Summer +Catherine +Jacqueline +Kelli +Rebekah +Autumn +Erika +Jill +Margaret +Robin +Sandra +Joanna +Lori +Mallory +Meredith +Shana +Tasha +Jenna +Stacey +Carla +Julia +Kellie +Kristina +Teresa +Bridget +Christine +Deanna +Jenny +Kristi +Barbara +Carol +Dawn +Felicia +Lacy +Morgan +Sabrina +Veronica +Amelia +Diana +Kathleen +Maria +Randi +Tammy +Wendy +Audra +Brenda +Dana +Jana +Kari +Nichole +Abby +Audrey +Charity +Haley +Krista +Meghan +Shanna +Sharon +Stefanie +Toni +Angel +Ashlee +Cara +Chasity +Cindy +Keri +Latisha +Melinda +Nancy +Rhonda +Vanessa +Adrienne +Brandie +Donna +Jacquelyn +Linda +Paula +Regina +Savannah +Shawna +Shelly +Alison +Callie +Carolyn +Christie +Desiree +Jodi +Jodie +Jordan +Kerri +Leigh +Maranda +Meagan +Melody +Staci +Taylor +Terri +Trista +Bonnie +Britney +Deborah +Dominique +Heidi +Janna +Kirby +Mindy +Monique +Shelley +Sonya +Tera +Bobbie +Chelsey +Christa +Constance +Cortney +Denise +Jaclyn +Jasmine +Kristie +Mandy +Molly +Robyn +Shelby +Tanisha +Terra +Virginia +Ann +Frances +Hollie +Jessie +Kathy +Kristal +Leann +Lydia +Shameka +Shanda +Sharonda +Sherry +Sylvia +Tabatha +Tamika +Tanya +Yolanda +Alexandria +Beth +Bridgett +Bridgette +Candis +Carly +Caroline +Christi +Christin +Chrystal +Debra +Devon +Gina +Helen +Joy +Krystle +Latonya +Latrice +Lillian +Lora +Maggie +Marla +Martha +Micah +Priscilla +Raven +Rose +Shayla +Traci +Aimee +Alissa +Ashleigh +Cecilia +Chandra +Charlene +Clarissa +Debbie +Gloria +Grace +Janie +Jeannie +Jillian +Joyce +Kasey +Kerry +Ladonna +Lana +Lena +Lesley +Lyndsey +Nedra +Nina +Olivia +Roxanne +Tracey +Alana +Alecia +Alice +Amie +Anita +Belinda +Carmen +Cheryl +Chiquita +Devin +Dorothy +Ginger +Gretchen +Hillary +Jade +Jaime +Jami +Jennie +Keisha +Lacie +Lakesha +Laurie +Lindy +Misti +Ruth +Shari +Sheila +Stacie +Tabetha +Tamra +Tanesha +Tessa +Tiffanie +Abigail +Alesha +Alisa +Ariel +Bailey +Betty +Billie +Brandon +Britni +Brooklyn +Candi +Casandra +Christal +Christian +Dena +Destiny +Diane +Dianna +Ellen +Gabrielle +Hailey +Hayley +Hope +Jean +Jody +Judy +Karla +Kelley +Kelsey +Krysta +Kyla +Laci +Lakisha +Lashonda +Latia +Magen +Marsha +Mollie +Naomi +Peggy +Roshunda +Shalonda +Shasta +Shenna +Sheri +Sydney +Tameka +Tammie +Tasia +Theresa +Tosha +Tracie +Yvonne +Adrianne +Alanna +Andrew +Angie +Antoinette +Ashli +Ashly +Aubrey +Becky +Beverly +Brianna +Caitlin +Camille +Candy +Casie +Catrina +Charlotte +Claire +Colby +Cristina +Deidre +Deirdre +Desirae +Holli +Janelle +Janet +Jason +Jeana +Jenifer +Justin +Kaci +Kala +Kanesha +Kassandra +Kristian +Laquinta +Laquita +Lashunda +Latosha +Linsey +Lynn +Malinda +Nicki +Paige +Patrice +Precious +Renee +Rosalyn +Samatha +Shamika +Shauna +Shayna +Sherika +Sherri +Sherrie +Shirley +Sondra +Stormy +Suzanne +Teri +Tia +Tiffani +Tonia +Ashley +Jessica +Amanda +Jennifer +Sarah +Amber +Heather +Brittany +Stephanie +Kimberly +Tiffany +Elizabeth +Rachel +Crystal +Megan +Laura +Lindsey +Mary +Lauren +Amy +Melissa +Rebecca +April +Samantha +Jamie +Christina +Sara +Angela +Emily +Andrea +Whitney +Brandi +Holly +Nicole +Courtney +Erica +Brandy +Brittney +Erin +Michelle +Kristen +Latoya +Krystal +Kelly +Misty +Alicia +Danielle +Anna +Lisa +Tara +Katie +Lindsay +Miranda +Katherine +Felicia +Candace +Kathryn +Leslie +Stacy +Candice +Tabitha +Allison +Kristin +Julie +Lacey +Carrie +Natasha +Kayla +Shannon +Sheena +Cassandra +Hannah +Natalie +Kara +Kristina +Vanessa +Victoria +Brooke +Chelsea +Jenna +Meagan +Leah +Monica +Dominique +Bethany +Catherine +Christy +Katrina +Kristy +Tasha +Cynthia +Alisha +Jacqueline +Shana +Kristi +Valerie +Casey +Ebony +Morgan +Rebekah +Latasha +Lori +Patricia +Rachael +Kelli +Melanie +Meredith +Tonya +Christine +Haley +Mallory +Robin +Tamara +Britney +Cassie +Dana +Kendra +Krystle +Meghan +Lacy +Nikki +Shanna +Stacey +Susan +Autumn +Charity +Mandy +Pamela +Tina +Tracy +Margaret +Sharon +Kari +Jillian +Karen +Melinda +Nichole +Veronica +Ashleigh +Brandie +Jana +Summer +Desiree +Jasmine +Joanna +Krista +Rhonda +Sabrina +Tammy +Alexis +Deanna +Donna +Erika +Jenny +Jordan +Julia +Regina +Savannah +Teresa +Terri +Angel +Ashlee +Barbara +Bridget +Cara +Denise +Jessie +Kerri +Yolanda +Alison +Deborah +Kasey +Maria +Molly +Taylor +Bobbie +Bonnie +Callie +Chasity +Cindy +Jacquelyn +Jodi +Melody +Nancy +Robyn +Sandra +Tabatha +Tanya +Wendy +Audra +Betty +Destiny +Diana +Jill +Latisha +Maranda +Marquita +Sherry +Anita +Brenda +Carla +Constance +Cortney +Dawn +Hillary +Kathleen +Latonya +Maegan +Shawna +Sonya +Theresa +Tracey +Trista +Virginia +Abby +Adrienne +Beth +Casandra +Chelsey +Heidi +Kelsey +Keri +Kristian +Kristie +Linda +Maggie +Paige +Robert +Rose +Roxanne +Suzanne +Sydney +Traci +Aimee +Alexandra +Alissa +Alyssa +Audrey +Brittani +Caitlin +Chandra +Cheryl +Christen +Christian +Emma +Jackie +Jaime +Janice +Karla +Lacie +Latoria +Lesley +Lora +Lydia +Monique +Olivia +Paula +Raven +Renee +Rosemary +Sade +Shelly +Sylvia +Tera +Toni +Bridgette +Candy +Carmen +Caroline +Cecilia +Christie +Gina +Jo +Jody +Joy +Keisha +Kerry +Kristine +Laci +Ladonna +Lana +Laurie +Marie +Micah +Sheila +Shelby +Shenna +Shonda +Stefanie +Tanisha +Taryn +Terra +Adrian +Alana +Alice +Alyson +Amie +Anne +Annie +Becky +Belinda +Billie +Britni +Charlotte +Christi +Claire +Cody +Debra +Fallon +Felecia +Jaclyn +Janet +Jenifer +Kaci +Kandice +Katy +Kellie +Kourtney +Kristal +Lakeisha +Leigh +Lena +Martha +Michaela +Priscilla +Randi +Santana +Savanna +Shauna +Shayla +Sherri +Staci +Tabetha +Terry +Tiffanie +Trisha +Abigail +Ann +Ashlie +Bridgett +Camille +Candi +Celeste +Chastity +Chiquita +Claudia +Connie +Cristina +Ellen +Evelyn +Frances +Grace +Helen +Hollie +Jami +Jayme +Jena +Joyce +Judy +Kacey +Kassie +Kelley +Keshia +Kyla +Laken +Lakendra +Larissa +Leanne +Lyndsey +Magen +Marilyn +Mindy +Misti +Racheal +Rachelle +Rochelle +Serena +Shameka +Sharonda +Shasta +Sierra +Teri +Tiffani +Tosha +Tracie +Tyler +Abbie +Adrianne +Ahsley +Alesha +Alexandria +Amelia +Ashlea +Aubrey +Ava +Bianca +Bobbi +Brenna +Brook +Carissa +Carolyn +Chassidy +Christa +Christal +Christin +Corey +Cory +Danyell +Deana +Deidra +Deidre +Devin +Diane +Dorothy +Elisabeth +Elisha +Emilee +Faith +Felisha +Gabrielle +Gretchen +Hilary +Hope +Jade +Jammie +Joann +Jodie +Joni +Juanita +Kacie +Kandace +Kandi +Kenya +Kira +Kirby +Lakeshia +Lakisha +Laquita +Lashunda +Latia +Latosha +Lavonda +Nickie +Nina +Precious +Renita +Ruth +Shaina +Sophia +Sunny +Tameka +Tamera +Tamika +Tessa +Valencia +Vickie +Wendi +Ashley +Jessica +Amanda +Jennifer +Sarah +Brittany +Amber +Heather +Whitney +Stephanie +Tiffany +Kimberly +Rachel +Megan +Samantha +Crystal +Lauren +Elizabeth +Amy +Laura +April +Lindsey +Mary +Erica +Courtney +Emily +Rebecca +Jamie +Brittney +Sara +Melissa +Christina +Angela +Krystal +Holly +Andrea +Danielle +Brandy +Kristen +Nicole +Kayla +Katherine +Shannon +Alicia +Casey +Katie +Anna +Michelle +Tara +Kristin +Hannah +Lisa +Brandi +Misty +Allison +Natalie +Miranda +Felicia +Erin +Mallory +Latoya +Natasha +Victoria +Kendra +Leslie +Kelly +Alisha +Chelsea +Kathryn +Robin +Candace +Bethany +Lindsay +Candice +Jordan +Julie +Monica +Tamara +Lacey +Leah +Savannah +Carrie +Meagan +Vanessa +Tabitha +Cassandra +Cassie +Stacy +Britney +Brooke +Christine +Morgan +Haley +Christy +Kara +Katrina +Kristina +Dominique +Krista +Latasha +Melanie +Rebekah +Summer +Tonya +Catherine +Cynthia +Karen +Meghan +Stacey +Ashton +Kristy +Rachael +Julia +Nikki +Pamela +Alyssa +Autumn +Erika +Kristi +Patricia +Tracy +Jacqueline +Angel +Jenna +Molly +Sheena +Tasha +Jasmine +Robyn +Ashlee +Bridget +Lacy +Nikita +Randi +Sabrina +Sandra +Audrey +Jenny +Kelli +Maria +Sasha +Teresa +Barbara +Callie +Dana +Ebony +Jessie +Kari +Kathleen +Keisha +Krystle +Margaret +Shana +Susan +Charity +Joanna +Joy +Kelsey +Shawna +Valerie +Veronica +Aimee +Alison +Jillian +Kasey +Linda +Mandy +Melinda +Nichole +Tina +Wendy +Alexandra +Carmen +Chasity +Deanna +Donna +Hope +Lori +Shauna +Sherry +Tammy +Tanisha +Bonnie +Cara +Christa +Constance +Destiny +Heidi +Hollie +Jana +Jill +Keri +Ladonna +Meredith +Olivia +Rhonda +Stefanie +Tabatha +Tanya +Terri +Tosha +Alexis +Amelia +Ashleigh +Blair +Carolyn +Denise +Diana +Hayley +Hillary +Nancy +Paige +Sade +Shelby +Shelly +Sierra +Taylor +Virginia +Beth +Cindy +Fallon +Gabrielle +Gina +Jade +Jodi +Leigh +Madison +Maegan +Marquita +Monique +Regina +Shayla +Ariel +Brenda +Carla +Chelsey +Christie +Cortney +Dawn +Debra +Jayme +Keshia +Kristie +Laci +Lesley +Paula +Shanika +Sharon +Abigail +Alexandria +Amie +Ann +Annie +Antoinette +Betty +Bobbie +Bridgette +Caitlin +Camille +Carol +Deborah +Jaclyn +Janet +Jocelyn +Kacey +Kassie +Katelyn +Lakeisha +Lydia +Lyndsey +Nina +Priscilla +Raven +Samatha +Shamika +Shanna +Sonya +Tera +Theresa +Tori +Traci +Adrian +Adrienne +Alissa +Angelica +Anne +Brandie +Britni +Carissa +Christian +Claire +Clarissa +Desiree +Dixie +Ellen +Emma +India +Jacquelyn +Janice +Jennie +Kayleigh +Kendall +Kerri +Kerry +Lakesha +Laquita +Lara +Latonya +Latoria +Latrice +Lora +Lucy +Maggie +Martha +Mindy +Naomi +Rachelle +Renee +Rikki +Ruth +Ryan +Shanta +Shayna +Shelley +Shirley +Staci +Sydney +Sylvia +Tanesha +Teri +Terra +Alanna +Alice +Allyson +Ashely +Ashlie +Bobbi +Brandon +Brianna +Brittani +Britteny +Charlene +Cheryl +Chiquita +Chrystal +Deidra +Dorothy +Elaine +Felisha +Gloria +Halley +Jacklyn +Kaci +Kacie +Kandice +Karla +Kristine +Lacie +Latisha +Magen +Maranda +Melody +Michael +Michele +Nastassia +Ruby +Santana +Shaina +Shalonda +Sophia +Stacie +Stephany +Tricia +Wanda +Yolanda +Abby +Alana +Amberly +Annette +Audra +Betsy +Billie +Briana +Bridgett +Caroline +Chandra +Charla +Cherrelle +Codi +Colleen +Dara +Devon +Doris +Elisha +Faith +Glenda +Grace +Gwendolyn +Hallie +Helen +Hilary +Holli +Ivy +Jaime +Janelle +Johanna +Kandace +Katina +Katy +Kelley +Kyla +Lakeshia +Latosha +Laurie +Leann +Loren +Magan +Marie +Martina +Misti +Nadia +Peggy +Porcha +Racheal +Shameka +Shanda +Shara +Sharonda +Shasta +Shelia +Suzanne +Tameka +Taryn +Tawana +Tessa +Tiara +Toni +Trisha +Trista +Vanna +Ashley +Jessica +Amanda +Jennifer +Sarah +Brittany +Amber +Heather +Samantha +Whitney +Megan +Tiffany +Stephanie +Kimberly +Rachel +Lauren +Kayla +Elizabeth +Crystal +Emily +Courtney +Amy +Lindsey +Melissa +Laura +Brittney +Christina +Mary +Rebecca +April +Sara +Jamie +Angela +Chelsea +Danielle +Erica +Hannah +Andrea +Katie +Nicole +Casey +Alicia +Brandi +Katherine +Kendra +Kristen +Michelle +Natalie +Victoria +Anna +Brandy +Tara +Allison +Natasha +Kelly +Mallory +Holly +Erin +Lindsay +Miranda +Kathryn +Lacey +Leslie +Meagan +Bethany +Jordan +Krystal +Misty +Monica +Candace +Haley +Felicia +Julie +Kristin +Morgan +Shannon +Vanessa +Lisa +Cassie +Alisha +Brooke +Jasmine +Kristina +Leah +Patricia +Catherine +Rebekah +Jacqueline +Kelsey +Britney +Tabitha +Tasha +Candice +Cassandra +Rachael +Robin +Dana +Kara +Alyssa +Christine +Stacy +Veronica +Dominique +Kasey +Melanie +Tonya +Autumn +Carrie +Latoya +Summer +Tracy +Angel +Erika +Kristy +Latasha +Jenna +Katrina +Stacey +Charity +Karen +Savannah +Tina +Christy +Ebony +Krista +Sasha +Susan +Chasity +Kelli +Lori +Meghan +Meredith +Sheena +Tamara +Toni +Ashlee +Jenny +Jessie +Julia +Nikki +Sabrina +Alison +Callie +Cynthia +Mandy +Marissa +Melinda +Nichole +Shana +Shawna +Taylor +Adrienne +Alexandra +Caitlin +Donna +Keisha +Pamela +Randi +Sandra +Wendy +Barbara +Carla +Deborah +Gabrielle +Jaclyn +Jillian +Kristi +Linda +Melody +Molly +Sydney +Teresa +Valerie +Abby +Audrey +Destiny +Diana +Kathleen +Maggie +Paige +Shanna +Alexis +Ashleigh +Ashton +Caroline +Cheryl +Cortney +Dawn +Denise +Jana +Lacy +Latisha +Lydia +Margaret +Shelby +Traci +Abigail +Alexandria +Allyson +Bridget +Carolyn +Channing +Chelsey +Claire +Deanna +Deidre +Elisabeth +Hillary +Jodi +Katy +Kelley +Latonya +Lyndsey +Martha +Sharon +Tanya +Asha +Christa +Constance +Desiree +Gina +Joanna +Joy +Kala +Keri +Maegan +Maria +Shelly +Terri +Tosha +Virginia +Yolanda +Aimee +Angelica +Bailey +Bobbie +Clarissa +Connie +Ellen +Grace +Hayley +Hollie +Jacquelyn +Jami +Jill +Kari +Kyla +Lana +Leigh +Mackenzie +Madison +Micah +Mindy +Nancy +Rachelle +Rhonda +Shelley +Sierra +Staci +Stefanie +Sylvia +Tammy +Tessa +Ann +Beverly +Breanna +Brenda +Brittani +Cari +Carmen +Chelsie +Christen +Christie +Ciara +Felecia +Hailey +Jackie +Janet +Katelyn +Kathy +Keshia +Laquita +Lara +Lashunda +Lena +Nikita +Nina +Olivia +Paula +Racheal +Raven +Terra +Adrian +Alisa +Alissa +Amelia +Anastasia +Blair +Brandie +Briana +Brianna +Cara +Carly +Chandra +Dorothy +Elise +Emma +Jody +Joshua +Julianne +Karla +Kellie +Kerri +Lakeshia +Lashonda +Magen +Mattie +Misti +Naomi +Priscilla +Renee +Rose +Savanna +Shauna +Sherry +Shonda +Sonya +Stevie +Tori +Alana +Alyson +Amie +Ariel +Audra +Bobbi +Bridgett +Bridgette +Cameron +Candi +Candy +Cassidy +Cassondra +Christopher +Debra +Dominque +Eden +Gabriel +Jade +Jeanette +Jerrica +Kacey +Kassi +Kellye +Kristan +Kristian +Krystle +Latoria +Leanna +Lucinda +Magan +Maranda +Marie +Mercedes +Micha +Michele +Mollie +Monique +Robyn +Ruby +Ruth +Ryan +Shena +Sondra +Tameka +Tamra +Tracey +Trisha +Trista +Wanda +Alesha +Anne +Ashely +Ashlea +Ashlie +Ashly +Betty +Bonnie +Britany +Brittaney +Camille +Carol +Casie +Cayla +Charlotte +Chrystal +Debbie +Devin +Diane +Dianna +Domonique +Faith +Fallon +Holli +Jaime +Janice +Janna +Jena +Jerri +Joni +Justin +Kaitlyn +Kali +Kaylee +Kayleigh +Kaylie +Kira +Kristine +Krystina +Laci +Ladonna +Lakeisha +Lakendra +Leeann +Lesley +Linsey +Lora +Mildred +Nakita +Natashia +Natosha +Octavia +Patrice +Penny +Precious +Randa +Regina +Sallie +Shanika +Shayna +Sheila +Sommer +Stacie +Tamera +Tanesha +Tarah +Tiffani +Treasure +Whittney +Jessica +Ashley +Amanda +Brittany +Sarah +Whitney +Amber +Tiffany +Heather +Jennifer +Megan +Samantha +Kayla +Lauren +Stephanie +Elizabeth +Rachel +Courtney +Brittney +Emily +Mary +Kimberly +Crystal +Christina +Lindsey +Sara +Chelsea +Melissa +Amy +April +Andrea +Erica +Holly +Hannah +Laura +Danielle +Nicole +Jasmine +Rebecca +Jamie +Angela +Anna +Katie +Kristen +Kendra +Candace +Allison +Tara +Alicia +Cassandra +Katherine +Erin +Brandy +Victoria +Lisa +Brandi +Michelle +Britney +Leslie +Morgan +Shannon +Caitlin +Kelly +Krystal +Felicia +Candice +Haley +Lacey +Natasha +Julie +Kathryn +Mallory +Alisha +Catherine +Kelsey +Cassie +Kristin +Leah +Miranda +Misty +Natalie +Summer +Autumn +Casey +Lindsay +Bethany +Meagan +Monica +Alyssa +Brooke +Taylor +Kasey +Molly +Patricia +Jordan +Kara +Tabitha +Kelli +Alexandra +Sasha +Vanessa +Ebony +Kristina +Savannah +Tasha +Cara +Carrie +Christine +Robin +Tonya +Dana +Julia +Cynthia +Erika +Kristi +Latoya +Meghan +Tamara +Adrienne +Angel +Gabrielle +Kathleen +Rebekah +Sabrina +Stacey +Alexandria +Chasity +Katelyn +Latasha +Audrey +Chelsey +Deanna +Dominique +Jenna +Kaitlin +Karen +Lacy +Margaret +Meredith +Christy +Desiree +Hayley +Katrina +Krista +Kristy +Paige +Stacy +Sydney +Brianna +Jacqueline +Lori +Shawna +Veronica +Ashlee +Bianca +Carmen +Caroline +Maria +Melanie +Nichole +Pamela +Tracy +Amelia +Ashton +Charity +Jessie +Jillian +Shana +Tiara +Cortney +Destiny +Jaleesa +Joy +Keisha +Marisa +Nikki +Rachael +Racheal +Shanice +Alexis +Allyson +Aubrey +Bailey +Deborah +Hillary +Lyndsey +Magen +Marissa +Melinda +Susan +Tabatha +Tammy +Terri +Abby +Alesha +Angelica +Bridget +Carol +Cheryl +Christian +Hope +Jade +Joanna +Jodi +Kaylee +Kyla +Nikita +Randi +Tina +Tosha +Traci +Abigail +Ashleigh +Audra +Breanna +Brenda +Briana +Denise +Diana +Ellen +Jaclyn +Janice +Jenny +Kaitlyn +Kandace +Madison +Magan +Mandy +Melody +Olivia +Precious +Rachelle +Regina +Roxanne +Savanna +Sheena +Tracey +Virginia +Alice +Barbara +Brittaney +Brittni +Callie +Charlotte +Christen +Jill +Judy +Kellie +Keri +Ladonna +Lara +Lydia +Maegan +Micah +Monique +Robyn +Sylvia +Tameka +Valerie +Yolanda +Ariel +Becky +Betty +Brittani +Claire +Constance +Debra +Donna +Elisabeth +Faith +Jami +Jana +Justin +Kala +Lacie +Lakeisha +Latisha +Mackenzie +Mandi +Michaela +Mollie +Nancy +Rose +Sandra +Sharonda +Shauna +Suzanne +Wendy +Whitley +Alecia +Alison +Annie +Antoinette +Ashlie +Bridgette +Carla +Chelsie +Christa +Chrystal +Cindy +Cora +Devin +Hailey +Helen +Jackie +Jacquelyn +Jalisa +Jocelyn +Kaci +Karla +Kassie +Kerri +Kesha +Kylie +Laci +Laken +Leanna +Leigh +Linda +Lucy +Maggie +Princess +Priscilla +Renee +Sally +Shanna +Shayla +Staci +Stefanie +Stevie +Tori +Adrian +Adrianne +Amie +Ann +Ashlea +Ashli +Blair +Britany +Britteny +Caitlyn +Camille +Candy +Carissa +Carolyn +Casandra +Cecily +Chloe +Cody +Dallas +Elise +Elisha +Ericka +Felecia +Felisha +Frances +Gabriel +Gina +Heidi +Hilary +Jaime +James +Jane +Janie +Jayme +Jennie +Jerrica +Kacey +Kandice +Kassandra +Katlin +Kayleigh +Kelley +Keshia +Kimberley +Kristal +Kristie +Krystle +Lillian +Lynsey +Marquita +Mercedes +Michael +Michele +Mindy +Nina +Shaina +Shameka +Sharon +Shea +Shelby +Simone +Stormy +Tera +Teresa +Tiffani +Toni +Tyler +Alana +Alanna +Alyson +Anastasia +Anne +Asia +Ayla +Belinda +Bonnie +Bridgett +Cayla +Cecilia +Chanda +Christin +Clarissa +Colleen +Connie +Dominque +Dorothy +Eden +Fallon +Ginger +Grace +Jammie +Jelisa +Joyce +Juanita +Kacie +Kari +Karrie +Kasi +Kate +Katharine +Katheryn +Katy +Kenya +Kimber +Kristyn +Lana +Leann +Lesley +Loren +Marie +Markita +Martha +Misti +Naomi +Natosha +Paula +Porsha +Raven +Rhonda +Ruby +Ryan +Sadie +Sheila +Sherri +Sherry +Stacie +Tamera +Tanya +Tarah +Terra +Tessa +Theresa +Ashley +Jessica +Brittany +Amanda +Sarah +Amber +Tiffany +Samantha +Lauren +Heather +Megan +Kayla +Jennifer +Rachel +Elizabeth +Courtney +Stephanie +Emily +Whitney +Hannah +Kimberly +Brittney +Jasmine +Mary +Lindsey +Chelsea +Amy +Kristen +Laura +Rebecca +Crystal +Jamie +Christina +Katie +Kelsey +Andrea +Erica +Nicole +Danielle +Sara +Katherine +Jordan +Morgan +Anna +Melissa +Allison +Victoria +Holly +Kendra +Michelle +April +Brandi +Alicia +Brooke +Haley +Kristin +Tara +Kathryn +Taylor +Caitlin +Leah +Angela +Erin +Britney +Brandy +Bethany +Natasha +Kiara +Cassandra +Candace +Felicia +Kelly +Leslie +Meagan +Miranda +Lacey +Casey +Catherine +Shannon +Monica +Candice +Misty +Natalie +Lindsay +Alyssa +Kara +Mallory +Rachael +Krystal +Rebekah +Lisa +Nikki +Tabitha +Ashton +Julie +Melanie +Robin +Alexandra +Alisha +Cassie +Gabrielle +Kristina +Marissa +Tamara +Angel +Jacqueline +Molly +Paige +Vanessa +Carrie +Meghan +Sydney +Christy +Kelli +Patricia +Autumn +Brianna +Erika +Krista +Latoya +Chasity +Chelsey +Katrina +Tiara +Alison +Hayley +Katelyn +Latasha +Bianca +Destiny +Maria +Tina +Alexis +Callie +Kristy +Sasha +Tasha +Cecily +Cortney +Kaitlin +Randi +Savannah +Summer +Susan +Abigail +Alexandria +Bridget +Ebony +Kylie +Lydia +Madison +Margaret +Mercedes +Meredith +Sabrina +Audrey +Charity +Deanna +Jade +Kasey +Keisha +Whitley +Briana +Desiree +Kierra +Sally +Shawna +Stacy +Tori +Veronica +Ashlee +Ashleigh +Breanna +Brittni +Charlotte +Cynthia +Hailey +Hope +Jenna +Julia +Kristi +Teresa +Trisha +Abby +Ariel +Brandie +Brittani +Cheryl +Christine +Hanna +Jessie +Lori +Maegan +Melody +Olivia +Pamela +Robyn +Sheena +Shelby +Sierra +Bailey +Barbara +Chelsie +Deborah +Donna +Jodi +Kaitlyn +Kala +Kandace +Lacy +Linda +Loren +Madeline +Shana +Traci +Valerie +Yolanda +Adrienne +Angelica +Brenda +Dawn +Denise +Dominique +Hillary +Jillian +Joy +Kari +Kassie +Kathleen +Mandy +Nichole +Staci +Allyson +Arielle +Bridgett +Bridgette +Carmen +Caroline +Chloe +Dana +Dorothy +Grace +Karen +Katy +Kaylee +Lakeshia +Larissa +Lyndsey +Magen +Marisa +Michaela +Precious +Shayla +Sonya +Stacey +Tabatha +Taryn +Tierra +Tonya +Tracy +Amelia +Ashlea +Cara +Carolyn +Devin +Diana +Ellen +Emma +Felisha +Heidi +Jami +Kandice +Kayleigh +Kellie +Keri +Kerri +Keshia +Kourtney +Laci +Lesley +Monique +Raven +Savanna +Shaina +Sharon +Tameka +Toni +Wendy +Alexa +Anne +Blair +Camille +Carissa +Celeste +Christa +Christen +Christian +Christin +Cierra +Constance +Faith +Gina +Helen +Jaleesa +Jalisa +Jenny +Jill +Kaci +Kaila +Karissa +Kelsi +Kori +Kristie +Kristine +Leanna +Mackenzie +Maggie +Nina +Racheal +Shanice +Shauna +Shayna +Adrianna +Alaina +Alissa +Allie +Amberly +Anastasia +Annie +Antoinette +Ashely +Audra +Audriana +Betty +Brianne +Britany +Carol +Casandra +Cassidy +Chandra +Cherrelle +Christie +Ciara +Danyelle +Devon +Eden +Elise +Ginger +Hollie +Janie +Jayme +Jazmine +Jenifer +Joanna +Kali +Kiera +Kirsten +Kristyn +Latisha +Leigh +Maranda +Markie +Marquita +Martha +Micah +Natosha +Nikita +Patience +Paula +Raquel +Regina +Rose +Roxanne +Shelly +Sherry +Tanesha +Tera +Tia +Tiffani +Trista +Virginia +Abbey +Adrian +Adriana +Adrianne +Aimee +Alesha +Alycia +Alyson +Asha +Beth +Billie +Bonnie +Breana +Britni +Brittaney +Candi +Carly +Cathryn +Chanda +Charlene +Chiquita +Claire +Connie +Corey +Elisabeth +Haleigh +Hilary +Holli +Jacquelyn +Jalesa +Kacie +Keely +Kenya +Kimberley +Krystle +Kyla +Kylee +La +Lakendra +Latonya +Latosha +Logan +Lucy +Magan +Makayla +Mattie +Nancy +Naomi +Porsha +Renee +Rosemary +Sandra +Shanda +Shanna +Shawn +Sonja +Susie +Sylvia +Talia +Tanisha +Tessa +Theresa +Tracey +Jessica +Ashley +Brittany +Amanda +Sarah +Megan +Kayla +Courtney +Heather +Lauren +Amber +Samantha +Tiffany +Jennifer +Stephanie +Whitney +Rachel +Emily +Hannah +Jasmine +Brittney +Elizabeth +Chelsea +Kimberly +Lindsey +Jordan +Kelsey +Rebecca +Mary +Morgan +Katherine +Kristen +Erica +Jamie +Laura +Taylor +Amy +Christina +Crystal +Andrea +Haley +Danielle +Michelle +Sara +April +Anna +Victoria +Katie +Brandi +Nicole +Allison +Brooke +Bethany +Alicia +Alyssa +Holly +Kristin +Cassandra +Angela +Kendra +Melissa +Kathryn +Erin +Olivia +Paige +Rachael +Candace +Shelby +Tara +Britney +Alexandra +Krystal +Leah +Summer +Caitlin +Casey +Ariel +Brianna +Candice +Catherine +Chelsey +Kara +Leslie +Meagan +Monica +Raven +Lindsay +Madison +Felicia +Alexandria +Kelly +Lacey +Melanie +Miranda +Natalie +Tabitha +Breanna +Mallory +Natasha +Rebekah +Katelyn +Misty +Whitley +Abigail +Shannon +Sydney +Vanessa +Lisa +Carrie +Gabrielle +Kaylee +Patricia +Autumn +Briana +Destiny +Meghan +Cortney +Shawna +Bianca +Brandy +Cassie +Kaitlyn +Marissa +Sabrina +Tamara +Callie +Dominique +Kiara +Latasha +Latoya +Sasha +Veronica +Alisha +Ashton +Audrey +Christine +Dana +Ebony +Hayley +Kaitlin +Kristina +Alexis +Jacqueline +Kasey +Katrina +Allyson +Ashleigh +Barbara +Caroline +Cynthia +Erika +Jessie +Joanna +Julie +Kathleen +Lydia +Molly +Tabatha +Tracy +Adrienne +Angel +Ashlee +Bailey +Chasity +Nikki +Linda +Maegan +Meredith +Savannah +Sierra +Valerie +Wendy +Abby +Cara +Chelsie +Hillary +Madeline +Robin +Alison +Christy +Hailey +Nichole +Tonya +Alexa +Amelia +Carolyn +Chloe +Desiree +Emma +Jenna +Jillian +Kelli +Maggie +Mariah +Mercedes +Micah +Tiara +Bonnie +Bridget +Charity +Deborah +Faith +Hope +Julia +Karen +Kellie +Kourtney +Krista +Lacy +Lori +Stacy +Teresa +Toni +Adrianna +Angelica +Aubrey +Blair +Carla +Hanna +Jerrica +Keisha +Margaret +Maria +Randi +Sandra +Shanna +Tasha +Tia +Virginia +Ashlie +Audra +Brittani +Cecily +Christian +Clarissa +Deanna +Jaclyn +Jessika +Karissa +Kelsie +Kristan +Krystle +Laken +Leanna +Lyndsey +Mandy +Marie +Paula +Shana +Stacey +Sylvia +Tanesha +Terri +Tina +Alissa +Caitlyn +Camille +Carly +Carmen +Charlie +Christa +Constance +Denise +Ellen +Ericka +Hollie +Jenny +Kandace +Kirsten +Kristy +Kyla +Magan +Mollie +Racheal +Savanna +Sheila +Suzanne +Arielle +Britni +Carissa +Christen +Christin +Debra +Devin +Devon +Evelyn +Felisha +Jade +Jalisa +Jayme +Jordyn +Justine +Kaci +Kali +Kanisha +Keshia +Kierra +Kylie +Latisha +Lillian +Lora +Loren +Mindy +Nancy +Nikita +Nina +Shaniqua +Staci +Taryn +Tera +Terra +Tessa +Allie +Alyson +Antoinette +Bridgette +Britany +Cheyenne +Christie +Frances +Grace +Hali +Heidi +Helen +Jaleesa +Jami +Jasmin +Jerica +Kacey +Kacie +Kalie +Kari +Kasandra +Kiera +Kristi +Laquita +Mackenzie +Maya +Rhonda +Ruby +Shayla +Simone +Stacie +Tammy +Tanisha +Tarah +Trisha +Aimee +Alecia +Alysha +Angelina +Beth +Brandie +Brooklyn +Celeste +Charlotte +Chastity +Chelsi +Ciara +Cindy +Dakota +Danna +Diamond +Donna +Eden +Gloria +Gwendolyn +Jana +Jane +Jazmine +Justina +Karla +Kathrine +Kathy +Kaytlin +Kelley +Kenya +Keri +Kristian +Kyra +La +Leann +Leigh +Magen +Mandi +Marla +Michaela +Michele +Monique +Priscilla +Rachelle +Regina +Renee +Samatha +Shaina +Shanda +Shauna +Sidney +Skylar +Sonya +Tanya +Tiffani +Tosha +Traci +Tyler +Yolanda +Aisha +Alesha +Alisa +Anastasia +Antionette +Ashly +Ashlyn +Betty +Bobbie +Brenda +Britny +Brittnee +Cassondra +Charlene +Chassity +Ciera +Cristina +Daphne +Dawn +Diana +Dorothy +Emilee +Francis +Hilary +Holli +Hunter +Jacklyn +Jacquelyn +Janice +Jenifer +Jesse +Jessi +Jocelyn +Jodi +Kaila +Kallie +Kaylin +Keely +Kerri +Kirby +Kortney +Krystin +Larhonda +Latonya +Latoria +Latosha +Lea +Lesley +Lyndsay +Maranda +Marina +Marisa +Marquita +Marsha +Melinda +Melody +Reagan +Rose +Shantel +Sheena +Sonja +Sophie +Stefanie +Susan +Tierra +Velma +Ashley +Jessica +Brittany +Sarah +Kayla +Amanda +Lauren +Amber +Samantha +Megan +Emily +Tiffany +Courtney +Elizabeth +Heather +Jennifer +Stephanie +Shelby +Rachel +Hannah +Whitney +Chelsea +Jasmine +Mary +Taylor +Kimberly +Haley +Kelsey +Lindsey +Sara +Victoria +Morgan +Brittney +Rebecca +Jordan +Laura +Amy +Kristen +Anna +Katherine +Brooke +Christina +Crystal +Andrea +Erica +Jamie +Miranda +Allison +Katie +Olivia +April +Brandi +Holly +Kathryn +Ariel +Bethany +Brianna +Danielle +Caitlin +Paige +Cassandra +Melissa +Sydney +Alicia +Erin +Kara +Kendra +Lacey +Mariah +Raven +Tara +Kristin +Madison +Michelle +Alyssa +Alexandria +Breanna +Meagan +Chelsey +Summer +Autumn +Candace +Monica +Nicole +Catherine +Katelyn +Lindsay +Patricia +Rebekah +Shannon +Angela +Briana +Casey +Felicia +Natalie +Alexandra +Alexis +Kelly +Leah +Savannah +Rachael +Britney +Kaitlin +Mallory +Cassie +Molly +Alisha +Brandy +Iesha +Julie +Lisa +Ashton +Hayley +Julia +Candice +Cheyenne +Destiny +Marissa +Misty +Natasha +Tabitha +Angel +Hope +Amelia +Bailey +Kaitlyn +Kaylee +Kristina +Krystal +Sabrina +Chasity +Hailey +Margaret +Carrie +Gabrielle +Jacqueline +Nikki +Ashlee +Bianca +Charity +Dominique +Leslie +Randi +Stacey +Abigail +Cara +Carmen +Caroline +Cynthia +Ebony +Karen +Latoya +Shawna +Christine +Cortney +Jade +Kasey +Kiara +Meghan +Melanie +Robin +Veronica +Angelica +Desiree +Hillary +Mercedes +Tracy +Abby +Callie +Erika +Grace +Shayla +Sierra +Stacy +Tessa +Vanessa +Ashleigh +Chloe +Kierra +Krista +Shana +Tamara +Tia +Adrienne +Audrey +Bridget +Carla +Carolyn +Devin +Jessie +Lacy +Latasha +Maggie +Maranda +Maria +Stormy +Terra +Tiara +Toni +Jillian +Lillian +Linda +Lyndsey +Maegan +Nancy +Shaniqua +Tori +Valerie +Ashlie +Barbara +Brooklyn +Carly +Ellen +Jaclyn +Joanna +Katlyn +Katrina +Kellie +Laken +Lori +Lydia +Mollie +Robyn +Shanna +Whitley +Bobbie +Chelsie +Christian +Christy +Emma +Faith +Jenna +Kelsi +Kelsie +Magen +Meredith +Monique +Shelbi +Tabatha +Alana +Alisa +Allie +Allyson +Britany +Caitlyn +Christa +Deidra +Haleigh +Hali +Jenny +Kala +Karissa +Kassie +Keisha +Kelli +Kiera +Kristi +Kristian +Melinda +Precious +Rachelle +Sasha +Staci +Tammy +Alison +Ashli +Brandie +Brenda +Brook +Camille +Cassidy +Chelsi +Dana +Deanna +Deborah +Diana +Elisabeth +Emilee +Jalisa +Jerica +Kassandra +Katelynn +Kirsten +Melody +Paula +Priscilla +Ryan +Shelbie +Tanya +Trisha +Tyler +Adrian +Adrianna +Alesha +Alexa +Alysha +Anastasia +Anne +Ashlyn +Breana +Claire +Debra +Devon +Donna +Eva +Hanna +Hilary +Jana +Jazmine +Jenifer +Jesse +Kathleen +Kristy +Kylie +Laci +Lacie +Latosha +Loren +Marisa +Micah +Pamela +Porsha +Rose +Shayna +Shelly +Skylar +Susan +Tanesha +Teresa +Terri +Yolanda +Ann +Annie +Ariana +Audra +Bridgette +Brittni +Cecilia +Cheryl +Constance +Dawn +Denise +Destinee +Diamond +Dorothy +Hallie +Hollie +Jami +Jerrica +Judith +Kailey +Kali +Kandace +Kanesha +Kari +Kristie +Kristyn +Kyla +Kyra +Larissa +Mackenzie +Macy +Madeline +Michaela +Nichole +Racheal +Sandra +Shanika +Sidney +Stacia +Stefanie +Tasha +Theresa +Tierra +Tosha +Wendy +Abbie +Aerial +Aimee +Alecia +Alyson +Anita +Arielle +Aubrey +Beverly +Billie +Breann +Brianne +Britni +Bryanna +Carol +Cayla +Chandra +Chasidy +Cherish +Christen +Cierra +Cindy +Dakota +Deana +Demetria +Ericka +Farrah +Ginger +Jacklyn +Jacquelyn +Jaimie +Jasmin +Jocelyn +Kaila +Kandice +Katlin +Kayleigh +Kelley +Keri +Kesha +Kirstie +Kourtney +Kristan +Laquisha +Leanna +Lesley +Logan +Magan +Makenzie +Mara +Martha +Mckenzie +Meaghan +Miesha +Reba +Regan +Renee +Rhiannon +Rhonda +Rikki +Rochelle +Savanna +Serena +Shanequa +Sharon +Sheena +Sheila +Sherry +Stacie +Tamika +Tanisha +Tiarra +Tonya +Jessica +Ashley +Brittany +Sarah +Emily +Taylor +Kayla +Amanda +Amber +Samantha +Chelsea +Megan +Hannah +Lauren +Shelby +Rachel +Courtney +Haley +Heather +Kelsey +Tiffany +Morgan +Jasmine +Jennifer +Elizabeth +Whitney +Stephanie +Jordan +Mary +Brittney +Katherine +Victoria +Danielle +Kimberly +Rebecca +Allison +Lindsey +Kristen +Sara +Anna +Amy +Andrea +Caitlin +Erica +Brianna +Nicole +Brooke +Katelyn +Christina +Holly +Laura +Katie +Ariel +Erin +Kaitlyn +Alexandra +Alyssa +Michelle +Jamie +April +Alexandria +Brandi +Kathryn +Alexis +Natalie +Alicia +Cassandra +Destiny +Miranda +Hayley +Crystal +Meagan +Olivia +Molly +Autumn +Kristin +Kendra +Madison +Mallory +Paige +Sydney +Krystal +Bethany +Briana +Casey +Chelsey +Mariah +Alisha +Bailey +Brandy +Dominique +Melissa +Bianca +Breanna +Catherine +Leslie +Chasity +Lisa +Savannah +Tabitha +Tara +Angel +Angela +Britney +Raven +Rebekah +Summer +Abigail +Candace +Kaitlin +Leah +Rachael +Gabrielle +Misty +Shannon +Callie +Caroline +Hailey +Lindsay +Mercedes +Ashton +Desiree +Erika +Kelly +Lacey +Maria +Felicia +Jenna +Sierra +Cheyenne +Julie +Kiara +Margaret +Meghan +Candice +Cynthia +Jacqueline +Kara +Katrina +Marissa +Melanie +Natasha +Ashlee +Cortney +Hillary +Julia +Krista +Monica +Nikki +Patricia +Christian +Christine +Ebony +Kristina +Robin +Sabrina +Shanice +Susan +Tyler +Cara +Jodi +Kelsie +Cassie +Christy +Clarissa +Diamond +Hope +Meredith +Tamara +Veronica +Adrienne +Caitlyn +Carrie +Chelsie +Grace +Mackenzie +Shayna +Alison +Camille +Faith +Jessie +Kylie +Vanessa +Alexa +Allyson +Audrey +Carly +Chloe +Deanna +Emma +Kaley +Kaylee +Kelli +Kristy +Madeline +Shelbi +Whitley +Abby +Ashleigh +Barbara +Claire +Jaclyn +Kierra +Kirsten +Lydia +Maranda +Monique +Nancy +Shelbie +Charlotte +Heidi +Kali +Lori +Shayla +Tori +Amelia +Brooklyn +Deidre +Haleigh +Jade +Jillian +Katelynn +Kelsi +Latasha +Linda +Lyndsey +Maggie +Micah +Moriah +Naomi +Sasha +Shawna +Sidney +Tia +Trisha +Angelica +Ashlyn +Asia +Aubrey +Carmen +Cassidy +Cecilia +Charity +Christin +Dakota +Hanna +Haylee +Jami +Kaleigh +Kari +Kathleen +Keisha +Kelley +Kirstie +Kristi +Kyra +Lacy +Laken +Latoya +Maegan +Mckenzie +Peyton +Shaniqua +Tabatha +Tammy +Teresa +Tiffani +Tracy +Alexandrea +Bria +Bridget +Carissa +Chelsi +Cierra +Dana +Denise +Devin +Hallie +Haylie +Helen +Jaime +Jaimie +Jenny +Kaci +Kaitlynn +Karen +Karissa +Kasey +Katlyn +Kellie +Kelsea +Kerri +Magen +Payton +Randi +Shameka +Shana +Shelly +Staci +Stevie +Tanisha +Tayler +Tiara +Valerie +Alissa +Ashely +Audra +Blair +Britany +Brittani +Christen +Dallas +Deidra +Devon +Diana +Dominque +Evelyn +Halie +Jacinda +Jalisa +Jerrica +Jill +Kacey +Kassandra +Keri +Kyla +Larissa +Lily +Logan +London +Marisa +Michaela +Nichole +Ryan +Sandra +Savanna +Shanna +Sharon +Stacey +Stacy +Sylvia +Tasha +Terra +Terri +Whittney +Abbey +Alex +Allie +Ariana +Bobbie +Bonnie +Brea +Breana +Bridgette +Brittaney +Brook +Carla +Carol +Chandler +Ciara +Ciera +Colby +Desirae +Dorothy +Elisha +Ellen +Hollie +Jacey +Jacquelyn +Jerica +Joy +Joyce +Kalyn +Lacie +Lakeisha +Lakin +Laney +Latisha +Lora +Martha +Michael +Miriam +Mollie +Montana +Paula +Ruby +Ruth +Shenika +Stormy +Tessa +Tina +Tonya +Tosha +Virginia +Wendy +Adrianna +Alana +Alisa +Ann +Antonia +Arielle +Ashlie +Audriana +Bailee +Bobbi +Brenda +Brenna +Brianne +Carolyn +Casandra +Charissa +Darian +Delaney +Destini +Donna +Elaina +Elaine +Elise +Ericka +Hali +Iesha +Jana +Janie +Janna +Joanna +Kaila +Kalli +Kanesha +Karina +Kaylan +Kayleigh +Kaylon +Kesha +Kortney +Kristie +Kylee +Laci +Lakyn +Lana +Laquita +Latifah +Leanna +Macey +Madalyn +Madelyn +Magan +Makayla +Mattie +Melinda +Melody +Nikita +Pamela +Precious +Raquel +Reagan +Rochelle +Sadie +Salena +Savanah +Shaina +Shanika +Shatara +Shea +Sheila +Skyler +Stacie +Stormie +Tanya +Tierra +Toni +Traci +Ashley +Jessica +Sarah +Brittany +Taylor +Emily +Amber +Hannah +Kayla +Lauren +Samantha +Haley +Courtney +Megan +Elizabeth +Rachel +Shelby +Amanda +Morgan +Jasmine +Kelsey +Heather +Victoria +Tiffany +Jennifer +Lindsey +Mary +Stephanie +Whitney +Allison +Chelsea +Madison +Rebecca +Danielle +Jordan +Alexis +Katie +Brianna +Brooke +Kristen +Kaitlyn +Brittney +Katherine +Anna +Katelyn +Erica +Nicole +Alexandria +Alyssa +Kimberly +Sara +Olivia +Andrea +Christina +Destiny +Bailey +Breanna +Laura +Amy +Michelle +Melissa +Miranda +Savannah +Sydney +Jamie +Holly +Alexandra +Bethany +Briana +Caitlin +Cheyenne +Kathryn +April +Paige +Brandi +Alicia +Sierra +Hailey +Natalie +Erin +Summer +Crystal +Ariel +Mallory +Raven +Britney +Krystal +Tara +Autumn +Chelsey +Kaylee +Kendra +Abigail +Angel +Angela +Mariah +Tabitha +Cassandra +Hayley +Shannon +Casey +Kristin +Leslie +Julie +Kristina +Marissa +Caitlyn +Christian +Kara +Lacey +Molly +Rebekah +Dominique +Kaitlin +Monica +Sabrina +Caroline +Desiree +Krista +Alisha +Ashton +Audrey +Brooklyn +Emma +Erika +Felicia +Julia +Margaret +Meagan +Michaela +Tori +Brandy +Callie +Cassie +Grace +Lacy +Madeline +Vanessa +Candace +Cassidy +Chasity +Jade +Leah +Lisa +Catherine +Jenna +Katrina +Kelly +Ashlee +Christine +Cynthia +Kiara +Rachael +Ashleigh +Carrie +Gabrielle +Jacqueline +Karen +Kelsie +Meghan +Melanie +Mercedes +Patricia +Candice +Cortney +Dana +Faith +Lindsay +Maria +Misty +Payton +Tamara +Angelica +Bianca +Cara +Chandler +Charity +Deanna +Ebony +Kasey +Natasha +Savanna +Allyson +Bria +Carolyn +Christa +Kyra +Tierra +Veronica +Alexa +Darian +Hanna +Joanna +Katlyn +Kirsten +Kourtney +Kylie +Laken +Logan +Lydia +Mackenzie +Taryn +Tia +Tiffani +Toni +Valerie +Abby +Adrienne +Alissa +Chloe +Karissa +Kenya +Kristi +Maranda +Robin +Tyler +Aimee +Allie +Aubrey +Bobbie +Carissa +Ciara +Claire +Ellen +Hope +Janie +Kathleen +Kendall +Kierra +Lori +Makayla +Micah +Mollie +Nancy +Nichole +Nikki +Precious +Regan +Shanna +Skylar +Tanya +Tessa +Tina +Alana +Cierra +Dakota +Eva +Hallie +Jazmine +Jenny +Jillian +Kacie +Kadijah +Kari +Katelynn +Kelsea +Latasha +Linda +Meredith +Robyn +Shana +Sharon +Shawna +Susan +Tasha +Tiara +Tracy +Alison +Ashlyn +Barbara +Carly +Chelsie +Deborah +Diamond +Hali +Hillary +Hunter +India +Jill +Kali +Kassie +Kaylin +Kelli +Khadijah +Kyla +Maggie +Mckenzie +Melody +Monique +Pamela +Paula +Peyton +Shanice +Shelbi +Shelbie +Stacy +Theresa +Virginia +Yasmine +Anne +Audra +Betty +Brenna +Carla +Carol +Casandra +Christy +Dylan +Eden +Gloria +Haleigh +Heidi +Isabella +Jalisa +Johnna +Kala +Kassandra +Keely +Latisha +Latoya +Layla +Mandy +Patience +Sandra +Shayla +Skyler +Tanesha +Tonya +Tosha +Tracie +Trisha +Abbey +Adrianna +Alecia +Amberly +Brenda +Bridget +Carlie +Carmen +Cheyanne +Daisy +Dallas +Elisabeth +Emilee +Ericka +Evelyn +Frances +Hayden +Iesha +Jacquelyn +Jami +Jessie +Kaci +Kaitlynn +Karina +Katelin +Katy +Kellie +Keosha +Keri +La +Lacie +Laurel +Maegan +Marie +Michele +Mikayla +Moriah +Nakia +Randi +Regina +Sasha +Stacey +Stormy +Sydnee +Sylvia +Tanisha +Teresa +Terra +Terri +Zoe +Addison +Adrian +Adriana +Alexander +Alexia +Alyson +Amelia +Ana +Angelique +Annie +Ariana +Aspen +Baylee +Beverly +Breauna +Bridgett +Bridgette +Brittni +Carley +Cayla +Chantel +Charlotte +China +Christen +Clarissa +Claudia +Danyelle +Denise +Devin +Devon +Diana +Dorothy +Elise +Gabriela +Hailee +Halie +Harley +Haylee +Hollie +Jacie +Jalyn +Jana +Jayla +Jesse +Jocelyn +Jodi +Kacey +Kaila +Kailey +Kalee +Kaleigh +Kanesha +Kaylynn +Keanna +Kelcie +Kelley +Kelsi +Kiana +Kiera +Kirby +Kylee +Lakeisha +Laquita +Leanna +Lexis +Loren +Lyndsay +Lynsey +Macy +Magan +Magen +Makenzie +Melinda +Mia +Montana +Naomi +Presley +Reagan +Sade +Scarlett +Shaina +Shaniqua +Shantell +Shea +Shelly +Shyla +Sidney +Skye +Skyla +Stacie +Stevie +Tabatha +Traci +Ashley +Jessica +Brittany +Sarah +Taylor +Emily +Hannah +Kayla +Samantha +Megan +Morgan +Lauren +Haley +Amber +Elizabeth +Courtney +Rachel +Jordan +Shelby +Amanda +Tiffany +Heather +Kelsey +Mary +Jasmine +Alexis +Victoria +Brianna +Anna +Whitney +Madison +Allison +Kristen +Stephanie +Sara +Rebecca +Danielle +Miranda +Caitlin +Jennifer +Katelyn +Lindsey +Katie +Chelsea +Kaitlyn +Katherine +Kimberly +Sydney +Brittney +Laura +Bailey +Nicole +Christina +Olivia +Abigail +Alyssa +Bethany +Erin +Savannah +Alexandria +Destiny +Erica +Alexandra +Brooke +Sierra +Autumn +Andrea +Brandi +Paige +Breanna +Holly +Alicia +Kathryn +Hailey +Michelle +Amy +April +Briana +Jamie +Melissa +Rebekah +Kaitlin +Cheyenne +Kristin +Mariah +Michaela +Crystal +Hayley +Molly +Raven +Angela +Ariel +Ashton +Casey +Meagan +Kaylee +Kendra +Leslie +Mallory +Marissa +Tara +Khadijah +Lacey +Natalie +Cassandra +Cassidy +Felicia +Madeline +Caitlyn +Caroline +Catherine +Faith +Jacqueline +Julia +Lindsay +Rachael +Summer +Tabitha +Aaliyah +Brooklyn +Ashleigh +Audrey +Gabrielle +Shannon +Angelica +Kelly +Alexa +Dominique +Makayla +Sabrina +Tori +Abby +Cassie +Jade +Kiara +Mackenzie +Mikayla +Katlyn +Kendall +Maria +Angel +Brandy +Krista +Margaret +Tyler +Callie +Chelsey +Cynthia +Erika +Grace +Hope +Julie +Leah +Maggie +Mckenzie +Alison +Ashlee +Ashlyn +Desiree +Kristina +Logan +Tamara +Vanessa +Britney +Candace +Candice +Chloe +Claire +Emma +Kara +Krystal +Lisa +Meghan +Mercedes +Monica +Patricia +Skylar +Bianca +Bridget +Cortney +Jenna +Kylie +Melanie +Meredith +Micah +Misty +Sadie +Tia +Alisha +Aubrey +Chasity +Christian +Hunter +Jazmine +Katelynn +Macy +Savanna +Shawna +Sidney +Stacy +Allyson +Brenna +Cierra +Denise +Ebony +Haylee +Kali +Kasey +Kirsten +Lillian +Natasha +Payton +Tayler +Alexus +Dallas +Harley +Kalyn +Laken +Skyler +Tiara +Tierra +Allie +Asia +Carley +Carly +Carmen +Charity +Darian +Diamond +Diana +Hanna +Justice +Karissa +Kierra +Kyla +Lydia +Peyton +Reagan +Tasha +Tessa +Veronica +Virginia +Abbey +Aliyah +Bobbie +Cara +Carrie +Dana +Emilee +Jacquelyn +Joanna +Josie +Kathleen +Kayleigh +Kelli +Kennedy +Kiana +Lacy +Lori +Maranda +Marina +Nikki +Robin +Robyn +Teresa +Toni +Tracy +Abbie +Adriana +Brittanie +Chandler +Chelsie +Christine +Ciara +Deanna +Heaven +Kailey +Karen +Kari +Katlin +Katrina +Kourtney +Latasha +Loren +Melody +Precious +Randi +Ruby +Sandra +Sasha +Shayla +Shea +Tiffani +Valerie +Adrian +Adrienne +Alexandrea +Alissa +Audra +Barbara +Betty +Billie +Brenda +Britany +Brittani +Camille +Carlee +Clara +Dakota +Destinee +Haven +Heidi +Hollie +Jaclyn +Jenny +Jillian +Kassandra +Kelsi +Kelsie +Kenya +Kristian +Latisha +Lyndsey +Madelyn +Maegan +Marisa +Monique +Montana +Paxton +Savanah +Sharon +Shayna +Sherry +Stevie +Stormy +Susan +Tonya +Whitley +Alana +Alex +Alexia +Amelia +Ayla +Bobbi +Brooklynn +Cameron +Carissa +Casandra +Charlie +Christa +Christen +Christy +Ciera +Delaney +Desirae +Devon +Domonique +Donna +Ellen +Haleigh +Hallie +Hayden +Jana +Jasmin +Jessie +Jodi +Joy +Kaci +Kaley +Kanesha +Kassidy +Kassie +Kenisha +Kimber +Kristan +Laci +Lakendra +Leigh +Makenzie +Mattie +Maya +Mckenna +Mia +Naomi +Nina +Octavia +Pamela +Reba +Regan +Regina +Rikki +Riley +Serena +Shana +Shanice +Shanna +Shelbi +Tiana +Adrianna +Alaina +Alecia +Ali +Alyson +Alyssia +Ashlynn +Bethanie +Blair +Breana +Breonna +Brianne +Bridgette +Carol +Carolyn +Cindy +Claudia +Constance +Deborah +Denisha +Devin +Emilie +Eva +Georgia +Gloria +Halee +Imani +Jacey +Jada +Janna +Jeri +Jill +Kacey +Kadedra +Kailyn +Kaylie +Kaylyn +Kelley +Kelsea +Kiersten +Kindra +Kionna +Kristi +Kristy +Lacie +Leanna +Lexie +Macey +Magan +Mara +Marla +Martha +Mckayla +Micaela +Nancy +Nichole +Paris +Paula +Raquel +Renee +Rosa +Shaquilla +Sharee +Suzanne +Sydnee +Symone +Tatyana +Winter +Yasmin +Zoe +Ashley +Jessica +Hannah +Emily +Sarah +Brittany +Kayla +Lauren +Taylor +Morgan +Madison +Haley +Megan +Samantha +Courtney +Rachel +Amber +Shelby +Elizabeth +Anna +Brianna +Alexis +Destiny +Jasmine +Mary +Victoria +Sydney +Tiffany +Jordan +Kaitlyn +Amanda +Allison +Kelsey +Alyssa +Lindsey +Heather +Bailey +Kristen +Rebecca +Brittney +Alexandria +Olivia +Autumn +Stephanie +Abigail +Katelyn +Katherine +Savannah +Breanna +Whitney +Katie +Miranda +Alexandra +Jennifer +Danielle +Laura +Erica +Sara +Sierra +Bethany +Chelsea +Andrea +Kimberly +Brooke +Caitlin +Natalie +Paige +Nicole +Jamie +Amy +Briana +Cheyenne +Christina +Holly +Mackenzie +Erin +Kaylee +Hailey +Raven +Catherine +Emma +Kaitlin +Summer +Cassidy +Crystal +Gabrielle +Kendra +Makayla +Mallory +Michaela +Angel +Leah +Melissa +Angela +Ashton +Kelly +Michelle +Mikayla +Brooklyn +Kathryn +Mariah +Brandi +Maria +Aaliyah +Abby +April +Hayley +Kiara +Lacey +Lindsay +Meagan +Alicia +Ariel +Brandy +Cassandra +Grace +Kylie +Marissa +Rachael +Alisha +Callie +Hanna +Kara +Mckenzie +Rebekah +Sabrina +Tori +Alexa +Faith +Kristin +Ashlyn +Logan +Madeline +Molly +Sidney +Tara +Vanessa +Asia +Chloe +Dakota +Jacqueline +Julia +Krystal +Leslie +Peyton +Shannon +Candace +Carrie +Cierra +Cynthia +Desiree +Jade +Julie +Kennedy +Ashlee +Deanna +Erika +Katelynn +Krista +Adriana +Audrey +Hope +Jenna +Jessie +Kirsten +Mercedes +Monica +Payton +Skylar +Tamara +Caroline +Casey +Kierra +Melanie +Natasha +Patricia +Tiara +Aliyah +Bianca +Britney +Dominique +Kasey +Kendall +Kristina +Sandra +Tyler +Veronica +Brenda +Caitlyn +Carly +Chandler +Chelsey +Claire +Hunter +Josie +Justice +Kaylin +Maggie +Meredith +Racheal +Randi +Savanna +Angelica +Brenna +Ciara +Dana +Destinee +Destiney +Kali +Reagan +Alison +Annie +Ashleigh +Cassie +Chasity +Ebony +Katlyn +Kelli +Macey +Maya +Patience +Selena +Toni +Zoe +Adrianna +Christian +Christine +Jordyn +Karen +Kassandra +Kaylie +Lydia +Margaret +Nikki +Robin +Shayla +Shelbi +Tierra +Allie +Baylee +Cheyanne +Emilee +Felicia +Ivy +Jazmine +Kaitlynn +Kaley +Katy +Kellie +Lacy +Lexie +Melody +Tamera +Trinity +Tristan +Alexandrea +Alexus +Allyson +Aspen +Candice +Carley +Cortney +Deja +Hallie +Haylee +Jada +Katrina +Kiana +Kylee +Laken +Loren +Madelyn +Maegan +Sasha +Stacy +Tatyana +Virginia +Anne +Arianna +Aubrey +Breonna +Charity +Christy +Cindy +Denise +Eva +Gina +Haven +Heaven +Jayla +Joanna +Jodi +Kailey +Kari +Kelsie +Laci +Lisa +Lora +Lori +Lyric +Makenzie +Misty +Mollie +Precious +Regan +Shania +Tabitha +Tia +Wendy +Abbie +Amelia +Ashlynn +Ava +Blair +Charlotte +Chelsie +Christen +Delaney +Diamond +Diana +Gabriel +Gabriella +Jasmin +Jenny +Kalyn +Kathleen +Kelley +Kourtney +Kyla +Kyra +Macy +Meghan +Mikaela +Nichole +Pamela +Robyn +Scarlett +Stormie +Stormy +Tanisha +Tayler +Teresa +Tonya +Tyra +Addison +Adrienne +Alaina +Alex +Alexia +Ali +Alissa +Ana +Anastasia +Ann +Ariana +Barbara +Bobbie +Breana +Bridget +Caleigh +Carissa +Carlee +Daisha +Daisy +Darby +Darian +Deborah +Devin +Devon +Donna +Essence +Georgia +Gloria +Haleigh +Halle +Hillary +Jalisa +Kaci +Kassidy +Katelin +Katlin +Kelsea +Kenya +Khadijah +Kiera +Lakin +Linda +Lyndsey +Macie +Marie +Marisa +Martha +Mia +Micah +Monique +Nancy +Shayna +Skyla +Skyler +Stacey +Stevie +Suzanna +Theresa +Adrianne +Aimee +Alana +Alondra +Anita +Ashlin +Audra +Audrianna +Avery +Billie +Breann +Bridgette +Britany +Caley +Cameron +Camille +Cara +Carol +Carolyn +Christa +Clara +Clarissa +Dallas +Elisabeth +Elise +Ellen +Emerald +Ericka +Evelyn +Fallon +Heidi +Jaclyn +Jerrica +Kaila +Kaleigh +Karina +Karissa +Karla +Kassie +Keely +Kelsi +Keyanna +Lexus +Lillian +Madalyn +Madeleine +Mandy +Maranda +Mckenna +Mikala +Myranda +Naomi +Paris +Raegan +Rosalyn +Ruth +Sadie +Shana +Shawna +Susan +Sydnie +Tabatha +Tarah +Taryn +Tesla +Tessa +Tiera +Tiffani +Tina +Tracy +Valerie +Whitley +Hannah +Emily +Ashley +Jessica +Sarah +Taylor +Madison +Kayla +Brittany +Haley +Samantha +Courtney +Lauren +Alexis +Morgan +Shelby +Megan +Rachel +Elizabeth +Amber +Rebecca +Brianna +Anna +Destiny +Jasmine +Sydney +Victoria +Kaitlyn +Kelsey +Allison +Bailey +Jordan +Amanda +Cheyenne +Tiffany +Katelyn +Mary +Olivia +Kristen +Heather +Katie +Lindsey +Stephanie +Katherine +Sierra +Savannah +Alyssa +Jennifer +Abigail +Whitney +Brooke +Sara +Alexandria +Breanna +Danielle +Miranda +Autumn +Kaylee +Kimberly +Natalie +Alexandra +Paige +Andrea +Brittney +Kaitlin +Makayla +Summer +Caitlin +Erin +Faith +Hayley +Holly +Jamie +Mackenzie +Hailey +Chelsea +Sabrina +Christina +Erica +Gabrielle +Kristin +Nicole +Ashton +Michaela +Bethany +Laura +Shania +Madeline +Raven +Ashlyn +Brooklyn +Cassidy +Crystal +Mariah +Molly +Emma +Kathryn +Mallory +Angel +Abby +Kendra +Michelle +Jade +Kelly +Maria +Melissa +Payton +Amy +Angela +Caitlyn +Kennedy +Lacey +Peyton +Alicia +Brandy +Briana +Cassandra +Grace +Leah +Audrey +Dominique +Hope +Casey +Rachael +Alexa +Alexus +Allie +Deja +Julia +Kylie +Ashlee +Caroline +Chasity +Mckenzie +Monica +Natasha +Ariel +Mikayla +Tori +April +Brandi +Chloe +Haylee +Logan +Lydia +Maggie +Vanessa +Ashleigh +Callie +Leslie +Tabitha +Tara +Tiara +Brenda +Britney +Cynthia +Savanna +Candace +Carly +Kara +Katlyn +Kierra +Kristina +Lillian +Marissa +Meagan +Micah +Veronica +Virginia +Aaliyah +Baylee +Diana +Emilee +Jada +Julie +Katelynn +Kelsie +Krystal +Margaret +Melanie +Nikki +Shannon +Shayla +Candice +Catherine +Erika +Hanna +Jenna +Kiara +Macy +Meghan +Patricia +Rebekah +Sadie +Tamara +Tyler +Alissa +Ana +Angelica +Bridget +Charity +Chelsey +Dakota +Deanna +Haleigh +Jacqueline +Justice +Kathleen +Kirsten +Kyla +Lacy +Lindsay +Lisa +Maya +Skylar +Ashlie +Carrie +Christy +Destinee +Diamond +Harley +Haven +Jessie +Josie +Kendall +Linda +Madelyn +Meredith +Regan +Selena +Shawna +Tierra +Valerie +Alison +Chandler +Christian +Claire +Clara +Jayla +Joanna +Kaylin +Kourtney +Mercedes +Mia +Moesha +Robin +Skye +Addison +Aubrey +Bianca +Carley +Dana +Delaney +Devin +Kailey +Kaley +Katrina +Keely +Krista +Leigh +Madalyn +Mckenna +Mollie +Tayler +Alex +Alisha +Ashlynn +Breana +Cheyanne +Ciara +Cierra +Dallas +Darby +Jaclyn +Jacquelyn +Jodi +Kailee +Kaitlynn +Kassidy +Kaylyn +Kelli +Kiana +Kylee +Leanna +Lori +Misty +Precious +Reagan +Riley +Rosa +Savanah +Skyler +Stormy +Tia +Toni +Zoe +Alana +Alexia +Alice +Allyson +Annie +Ariana +Aspen +Cara +Cassie +Clarissa +Desiree +Hunter +Jasmin +Karen +Kasey +Katlin +Kellie +Kelsea +Lacie +Maegan +Maranda +Mikaela +Robyn +Sidney +Tamera +Tatyana +Tessa +Tina +Tristen +Adriana +Adrianna +Anne +Asia +Avery +Bailee +Bridgette +Carolyn +Christen +Christine +Claudia +Cortney +Evelyn +Jerrica +Kali +Kassandra +Kayleigh +Kenya +Kenzie +Kristy +Kyra +Latasha +Malorie +Marisa +Mckayla +Patience +Shayna +Stacey +Tatiana +Terra +Tristan +Tyra +Abbie +Aerial +Alanna +Amelia +Anita +Ashanti +Brittani +Brooklynn +Camille +Carlie +Carmen +Daisy +Debra +Denise +Elisabeth +Felicia +Felisha +Gabriel +Hailee +Halie +Hayden +Heaven +India +Ivy +Jaime +Jamia +Jazmine +Jessi +Jillian +Johnna +Joy +Kaleigh +Keeley +Kirby +Latisha +Laurie +Lesley +Lexi +Lyric +Macey +Macie +Maddison +Makenzie +Melody +Mikala +Miracle +Montana +Randi +Scarlett +Shaina +Shelbie +Susan +Teresa +Terri +Tracy +Abbigail +Adrienne +Aja +Aliyah +Alysa +Alyson +Arielle +Bonnie +Bryanna +Cameron +Carla +Carol +Charlotte +Chastity +Cristina +Cydney +Desirae +Domonique +Dusty +Ebony +Eden +Eleanor +Elise +Elisha +Gloria +Isabella +Jennie +Jenny +Kaci +Kalyn +Kari +Karissa +Katelin +Kaylan +Kaylen +Kaylie +Keanna +Keisha +Kelsi +Kennedi +Kiley +Kori +Laci +Laken +Laney +Leann +Lexie +Lily +Loren +Martha +Monique +Nadia +Nina +Nora +Ruby +Savana +Shantel +Shelly +Stacy +Tamia +Taryn +Tyesha +Whitley +Zaria +Hannah +Emily +Madison +Ashley +Sarah +Taylor +Brittany +Lauren +Jessica +Haley +Alexis +Elizabeth +Samantha +Sydney +Morgan +Shelby +Kayla +Megan +Rachel +Courtney +Anna +Brianna +Mary +Jordan +Destiny +Jasmine +Amber +Alyssa +Allison +Bailey +Victoria +Abigail +Amanda +Olivia +Rebecca +Kaitlyn +Savannah +Autumn +Sara +Breanna +Lindsey +Jennifer +Katelyn +Sierra +Andrea +Hailey +Heather +Kelsey +Danielle +Katherine +Alexandria +Kimberly +Laura +Kristen +Tiffany +Brittney +Madeline +Makayla +Natalie +Bethany +Brooke +Faith +Mariah +Stephanie +Whitney +Cheyenne +Erica +Katie +Nicole +Alexandra +Brooklyn +Paige +Summer +Mackenzie +Michaela +Ashlyn +Emma +Jamie +Mikayla +Erin +Hayley +Caitlin +Monica +Christina +Jada +Kaitlin +Gabrielle +Kaylee +Miranda +Cassidy +Abby +Briana +Caroline +Mckenzie +Adrianna +Ashton +Chelsea +Maria +Sabrina +Alicia +Caitlyn +Kathryn +Raven +Chloe +Grace +Julia +Mallory +Reagan +Leah +Tara +April +Kennedy +Michelle +Payton +Amy +Chasity +Josie +Kara +Rebekah +Alexa +Angel +Brandi +Kristin +Marissa +Catherine +Claire +Holly +Kendra +Leslie +Alexus +Crystal +Hanna +Margaret +Meagan +Rachael +Savanna +Shannon +Ariel +Cassie +Erika +Jenna +Katelynn +Kyra +Lydia +Melissa +Alisha +Cassandra +Cierra +Kelly +Meredith +Molly +Sidney +Tessa +Tori +Aaliyah +Asia +Audrey +Baylee +Christian +Haylee +Hope +Kristina +Mia +Skylar +Vanessa +Allyson +Destinee +Kendall +Kylie +Maya +Peyton +Alison +Angela +Ashlynn +Callie +Diana +Dominique +Jade +Kyla +Lacey +Makenzie +Mercedes +Tabitha +Casey +Deanna +Diamond +Hunter +Kelsie +Kirsten +Logan +Veronica +Carly +Deja +Desiree +Emilee +Jacqueline +Kaleigh +Kiara +Nikki +Zoe +Brandy +Brenda +Jayla +Katlyn +Krista +Lindsay +Madelyn +Maggie +Patricia +Sophia +Ana +Angelica +Annie +Ashlee +Ciara +Heidi +Isabella +Jazmine +Kaley +Kaylin +Lillian +Loren +Melanie +Natasha +Sandra +Shayla +Tiana +Valerie +Alexia +Ariana +Aubrey +Avery +Bryanna +Candace +Dakota +Stormy +Tamia +Tia +Arianna +Ashleigh +Bailee +Carrie +Charity +Cheyanne +Cynthia +Ebony +Haleigh +Jessie +Kailey +Kaitlynn +Kali +Katrina +Lacy +Lily +Macy +Melody +Micah +Misty +Tyra +Addison +Anastasia +Breana +Britney +Daisy +Gabriel +Heaven +Julie +Justice +Kailee +Karina +Kasey +Kassidy +Kierra +Linda +Meghan +Precious +Skyler +Sydnie +Tamara +Virginia +Whitley +Adriana +Adrienne +Alissa +Allie +Alyson +Amelia +Ann +Bridget +Cameron +Carlie +Cortney +Dana +Delaney +Elisabeth +Emilie +Gabriela +Helen +Kalie +Kallie +Kalyn +Karla +Kaylen +Kaylynn +Kourtney +Leanna +Lisa +Lyndsey +Madilyn +Maegan +Makala +Maranda +Mattie +Naomi +Riley +Ruby +Shania +Shayna +Shelbie +Taryn +Tatiana +Tiara +Tristan +Tyler +Aspen +Bria +Brooklynn +Carolina +Chandler +Christine +Christy +Claudia +Deborah +Ivy +Jodi +Karen +Kayli +Kiana +Kylee +Lauryn +Lilly +Marisa +Moesha +Mollie +Regina +Robin +Sadie +Sasha +Selena +Shakira +Shaylee +Stormie +Sydnee +Tatum +Tina +Toni +Abbey +Abbie +Alaina +Alana +Aliyah +Anne +Bobbie +Brianne +Camryn +Candice +Carissa +Carley +Carmen +Chelsey +Darby +Demi +Elexis +Gloria +Harley +Isis +Jacquelyn +Jaycee +Jazmin +Jenny +Jordyn +Josey +Joy +Kaila +Karissa +Kate +Katelin +Kaylea +Kaylie +Kaylyn +Keely +Keri +Kristyn +Lexie +Madeleine +Mandy +Marie +Mikala +Nancy +Robyn +Rose +Sabra +Savanah +Shana +Shanna +Shauna +Sky +Sophie +Taelor +Theresa +Tierra +Alayna +Aleah +Alejandra +Allyssa +Annika +Ashlie +Aubree +Audra +Austin +Bayley +Blair +Bonnie +Cara +Carla +Carlee +Carol +Cayla +Dallas +Danyelle +Darian +Destiney +Destinie +Eden +Evelyn +Felicia +Halie +Hayden +Haylie +Imani +Isabel +Jackie +Jessika +Jillian +Josephine +Julianna +Kaci +Kaliyah +Kari +Kathleen +Katy +Kaylan +Keisha +Kenna +Kira +Kristy +Krystal +Kyleigh +Laken +Laurel +Lillie +Linsey +London +Lorin +Lyric +Martha +Miracle +Montana +Myesha +Nichole +Nina +Patience +Randi +Raquel +Regan +Rylee +Ryleigh +Savana +Shantel +Shawna +Shea +Shelly +Skye +Sonya +Stacie +Stacy +Tatyana +Teresa +Tianna +Tiffani +Tonya +Trinity +Wendy +Yasmine +Hannah +Madison +Emily +Taylor +Sarah +Alexis +Jessica +Ashley +Haley +Lauren +Elizabeth +Kayla +Morgan +Destiny +Anna +Kaitlyn +Megan +Brittany +Samantha +Abigail +Rachel +Jordan +Shelby +Sydney +Victoria +Brianna +Bailey +Alyssa +Courtney +Katelyn +Mary +Kelsey +Jasmine +Amber +Makayla +Rebecca +Savannah +Olivia +Emma +Allison +Jennifer +Faith +Kaylee +Madeline +Sierra +Breanna +Sara +Brooke +Erin +Hailey +Autumn +Summer +Natalie +Paige +Lindsey +Cheyenne +Whitney +Heather +Kimberly +Kristen +Amanda +Bethany +Katherine +Stephanie +Katie +Alexandria +Gabrielle +Mckenzie +Brittney +Julia +Grace +Tiffany +Danielle +Kaitlin +Ashton +Brooklyn +Caitlin +Erica +Mariah +Caitlyn +Cassidy +Hope +Jade +Mackenzie +Chloe +Laura +Jamie +Maria +Mikayla +Angel +Christina +Kennedy +Briana +Amy +Kathryn +Miranda +Alexandra +Andrea +Claire +Hanna +Katelynn +Mallory +Michelle +Sabrina +Abby +Alexus +Kylie +Leah +Melissa +Payton +Reagan +Angela +Ariel +Catherine +Michaela +Monica +Tori +Caroline +Lacey +Baylee +Hayley +Nicole +Alicia +Cassandra +Diana +Mercedes +Molly +Rachael +Sidney +Ashlyn +Callie +Jada +Madelyn +Cynthia +Kristin +Marissa +Raven +Rebekah +Tabitha +Vanessa +Zoe +Casey +Chelsea +Meghan +Shannon +Dominique +Peyton +Skyler +Audrey +Destinee +Holly +Jenna +Logan +Selena +Bailee +Cierra +Kara +Kendall +Kendra +Skylar +Sophia +Allie +Allyson +Brenda +Cassie +Chasity +Haylee +Kyra +Leslie +Patricia +Savanna +Stormy +Tamara +Tia +Angelica +April +Diamond +Erika +Heaven +Katlyn +Kelly +Maggie +Mia +Ariana +Desiree +Emilee +Jillian +Josie +Kaitlynn +Kelsie +Kirsten +Macy +Tessa +Tyra +Veronica +Alexa +Avery +Hallie +Jayla +Kristina +Meagan +Aaliyah +Addison +Adriana +Alexia +Ally +Ashlee +Bg +Brandy +Carmen +Christian +Isabella +Kiara +Lydia +Maegan +Margaret +Maya +Mya +Abbey +Abbigail +Asia +Aspen +Brandi +Dana +Jasmin +Jordyn +Kallie +Kathleen +Kylee +Madalyn +Micah +Shayla +Tyler +Adrianna +Alana +Ashleigh +Aubrey +Bianca +Dallas +Deja +Haven +Jacqueline +Karen +Kassidy +Kelli +Kira +Lexie +Makenzie +Melanie +Miracle +Regan +Sadie +Tamera +Amelia +Cameron +Carley +Cortney +Crystal +Dakota +Delaney +Hayden +Krista +Kyla +Lily +Linda +Lindsay +Riley +Tatyana +Abbie +Alison +Ashlynn +Camryn +Cara +Carol +Cheyanne +Daja +Deanna +Denise +Essence +Guadalupe +Imani +Jazmine +Justice +Kaci +Kailey +Keely +Kianna +Kourtney +Liliana +Lillian +Macey +Mckayla +Mollie +Moriah +Natasha +Nia +Nikki +Patience +Racheal +Rose +Sandra +Scarlett +Shawna +Tamia +Tara +Valerie +Virginia +Adrian +Alisha +Alissa +Alondra +Anne +Ayanna +Carly +Charlotte +Clara +Clarissa +Claudia +Devin +Ebony +Esmeralda +Halle +Heidi +Joanna +Kaleigh +Karissa +Kasey +Kayleigh +Kaylyn +Madyson +Makenna +Melody +Meredith +Misty +Robin +Savanah +Shania +Spencer +Susan +Sydnee +Alejandra +Alyson +Ana +Anastasia +Britany +Cailey +Carla +Chandler +Charity +Darby +Destini +Elaine +Elisabeth +Evelyn +Gabriella +Hailee +Harley +Haylie +Ivy +Jaden +Julianne +Kali +Kalyn +Kamryn +Karlee +Katelin +Kaylin +Kenya +Lacy +Lauryn +Lillie +Lisa +Loren +Lucy +Maddison +Mikaela +Miriam +Naomi +Shaylee +Shea +Sylvia +Tabatha +Taliyah +Tatum +Teresa +Tierra +Tiffani +Trinity +Wendy +Whitley +Zaria +Alexander +Alize +Alli +Amari +Annabelle +Arianna +Ashlie +Brianne +Britney +Bryanna +Camille +Candice +Cindy +Eboni +Ella +Emerald +Ericka +Eva +Frances +India +Jayden +Jenny +Julie +Kacie +Kalee +Kameron +Karla +Karlie +Kassandra +Katlin +Kaycee +Kaylan +Kaylie +Kaylynn +Kaytlyn +Kelsi +Kiana +Kinley +Kristian +Laken +Lesley +Lyric +Maci +Madelynn +Madisyn +Marilyn +Marley +Mattie +Mckenna +Micaela +Montana +Nancy +Paris +Ruby +Rylee +Skye +Tatiana +Toni +Yasmine +Yesenia +Zoey +Adrienne +Akira +Alanna +Aleah +Alex +Angelique +Annie +Aurora +Beth +Blair +Breana +Brittnee +Brooklynn +Caitlynn +Candace +Carlee +Carli +Carlie +Carolyn +Christa +Christine +Christy +Chyna +Connie +Cora +Delia +Devon +Eden +Edith +Felicia +Gabriel +Gabriela +Genesis +Gillian +Gloria +Halie +Helen +Jana +Jayde +Jocelyn +Jodi +Juliana +Kalynn +Karina +Katrina +Kaylah +Kayle +Kaylea +Kelcie +Kelsea +Kenna +Kenzie +Keyonna +Kirstie +Krystal +Krysten +La +Larissa +Latavia +Lexi +Madeleine +Madilyn +Makaila +Mariana +Nichole +Parker +Phoebe +Raegan +Rhiannon +Rikki +Robyn +Sasha +Serena +Serenity +Shae +Shasta +Shayna +Shyann +Simone +Sophie +Stacy +Taryn +Tayla +Terra +Terri +Tiana +Tiara +Tristan +Tristen +Hannah +Madison +Emily +Sarah +Taylor +Ashley +Alexis +Lauren +Haley +Jessica +Elizabeth +Anna +Destiny +Sydney +Kayla +Morgan +Victoria +Samantha +Brianna +Abigail +Megan +Jasmine +Savannah +Rachel +Brittany +Kaitlyn +Shelby +Bailey +Mary +Alyssa +Olivia +Makayla +Courtney +Amber +Jordan +Hailey +Allison +Breanna +Katelyn +Emma +Grace +Natalie +Sierra +Kaylee +Rebecca +Autumn +Amanda +Jennifer +Katherine +Alexandria +Gabrielle +Katie +Faith +Sara +Cheyenne +Bethany +Stephanie +Kimberly +Tiffany +Erin +Kelsey +Whitney +Abby +Brooke +Brooklyn +Angel +Chloe +Paige +Brittney +Danielle +Kiara +Maria +Mikayla +Summer +Mackenzie +Caroline +Lindsey +Mckenzie +Nicole +Alexandra +Ashlyn +Mariah +Cassidy +Heather +Julia +Laura +Madeline +Kathryn +Skylar +Kylie +Andrea +Caitlin +Callie +Kennedy +Kristen +Leah +Hayley +Caitlyn +Peyton +Rebekah +Jada +Jamie +Michelle +Kaitlin +Mya +Audrey +Cassandra +Hope +Maggie +Mallory +Molly +Reagan +Kara +Lillian +Michaela +Riley +Vanessa +Alicia +Erica +Kendra +Makenzie +Raven +Ashton +Catherine +Hanna +Holly +Jenna +Leslie +Alexa +Amy +Avery +Katelynn +Katlyn +Meghan +Miranda +Selena +Trinity +Ariel +Briana +Cameron +Claire +Melissa +Sabrina +Zoe +Angela +Asia +Haylee +Madelyn +Tara +April +Dakota +Jayla +Payton +Tori +Veronica +Britney +Christina +Gracie +Isabella +Lydia +Patricia +Sidney +Ashlee +Ashlynn +Diamond +Emilee +Kassidy +Kelly +Lacey +Allie +Bailee +Baylee +Kirsten +Kyra +Melanie +Meredith +Stormy +Addison +Alison +Alissa +Allyson +Brandi +Chelsea +Crystal +Josie +Kierra +Lauryn +Macey +Macy +Marissa +Micah +Savanna +Shayla +Skyler +Tabitha +Tatyana +Ashleigh +Cassie +Cierra +Georgia +Isabel +Jade +Meagan +Sophia +Tia +Alexus +Angelica +Camryn +Casey +Chasity +Cynthia +Desiree +Harley +Joanna +Kaleigh +Macie +Madalyn +Aaliyah +Adrianna +Anastasia +Ariana +Brenda +Brooklynn +Carly +Gabriela +Jakayla +Jazmine +Kelsie +Kristin +Krystal +Kylee +Lacy +Makenna +Mia +Rachael +Robin +Sadie +Sydnee +Valerie +Vivian +Abbey +Alexia +Carmen +Carson +Claudia +Daisy +Delaney +Destany +Dominique +Eden +Erika +Haleigh +Heaven +Jacqueline +Jillian +Kailey +Kiana +Logan +Loren +Monica +Aubrey +Chandler +Cindy +Destinee +Jordyn +Kasey +Kayleigh +Kaylin +Lily +Margaret +Maya +Nia +Serenity +Shannon +Sydni +Tessa +Tierra +Abbie +Adriana +Alana +Amelia +Ana +Annabelle +Anne +Aspen +Brandy +Briley +Carley +Christen +Christian +Christine +Destini +Diana +Elisabeth +Hallie +Hayden +Isabelle +Jaclyn +Jazmin +Jessie +Julie +Kaley +Kamryn +Kennedi +Keri +Kyla +Lexi +Lisa +Madilyn +Mercedes +Miracle +Miriam +Rosa +Shania +Shawna +Tiara +Tristan +Alaina +Ashtyn +Ayanna +Baby +Bonnie +Bryanna +Carissa +Carlee +Chelsey +Dana +Deanna +Halle +Heidi +Hunter +Jayden +Kallie +Karen +Karina +Karlie +Kathleen +Kayley +Kaylynn +Keely +Kenya +Kira +Kristina +Lexie +Natasha +Regan +Rhiannon +Rylee +Scarlett +Sophie +Sylvia +Tera +Tianna +Toni +Whitley +Zoie +Amaya +Annie +Arianna +Ashanti +Baylie +Cailey +Charity +Cheyanne +Cortney +Darian +Esmeralda +Gabriel +Gillian +Guadalupe +Hailee +Jaden +Janie +Karissa +Katrina +Kristian +La +Lilly +Lindsay +Martha +Melody +Nikki +Presley +Ruby +Sandra +Serena +Skyla +Stormie +Tatiana +Tatum +Taya +Aimee +Alejandra +Alexander +Alexandrea +Ally +Alyson +Ashly +Aurora +Blair +Brenna +Brittani +Candace +Carlie +Carolyn +Carrie +Christy +Dallas +Daniela +Destiney +Dixie +Drew +Ella +Emalee +Eva +Haven +Jacie +Jacquelyn +Jerrica +Kailee +Kali +Kaylea +Kayli +Kaylyn +Kendall +Kenzie +Kiarra +Kiley +Kourtney +Leann +Luz +Maranda +Marisa +Mattie +Mayra +Mckayla +Mckinley +Mika +Mollie +Monique +Nadia +Nancy +Nautica +Nina +Patience +Precious +Ruth +Tamara +Terra +Terri +Tristen +Yasmine +Abigayle +Adrian +Alayna +Ali +Alisha +Alivia +Aliyah +Alondra +Angie +Ann +Audra +Ava +Bayley +Bethanie +Bianca +Breana +Bridgette +Candice +Christa +Ciara +Clara +Clarissa +Dawn +Deja +Delia +Elena +Elexis +Elise +Ellen +Essence +Esther +Felicia +Halley +Hattie +Hollie +India +Iris +Jalyn +Jaqueline +Jasmin +Jaycee +Jocelyn +Jodi +Journey +Juliana +Justice +Kaitlynn +Karla +Kaya +Kayle +Kaylie +Keara +Kellie +Leanna +Lesly +Liberty +Lizeth +Lyric +Malaysia +Marley +Mckenna +Micaela +Michael +Misty +Montana +Moriah +Naomi +Nichole +Parker +Priscilla +Racheal +Raegan +Robyn +Rose +Shanice +Sky +Stacey +Susan +Tabatha +Tanisha +Tea +Wendy +Winter +Hannah +Madison +Emily +Alexis +Sarah +Lauren +Taylor +Haley +Ashley +Elizabeth +Abigail +Destiny +Anna +Megan +Jessica +Kaitlyn +Kayla +Samantha +Sydney +Brianna +Olivia +Emma +Chloe +Alyssa +Shelby +Mary +Bailey +Courtney +Jordan +Morgan +Rachel +Hailey +Makayla +Victoria +Katelyn +Grace +Allison +Kaylee +Faith +Jasmine +Natalie +Savannah +Amber +Brittany +Cheyenne +Autumn +Alexandria +Jennifer +Sierra +Breanna +Mackenzie +Rebecca +Trinity +Katie +Ashlyn +Bethany +Brooke +Amanda +Katherine +Madeline +Brittney +Nicole +Caroline +Kelsey +Kimberly +Mckenzie +Stephanie +Brooklyn +Erin +Sara +Heather +Madelyn +Payton +Jada +Jade +Maria +Summer +Julia +Kennedy +Mariah +Tiffany +Paige +Andrea +Caitlyn +Gracie +Lindsey +Mikayla +Riley +Angel +Catherine +Raven +Kristen +Laura +Macy +Abby +Alexandra +Caitlin +Cassidy +Claire +Erica +Gabrielle +Mallory +Molly +Zoe +Danielle +Diamond +Hanna +Lillian +Isabella +Kathryn +Makenzie +Ashton +Hayley +Whitney +Audrey +Sidney +Skylar +Jenna +Kara +Michelle +Amy +Angela +Asia +Baylee +Briana +Christina +Haylee +Jillian +Kiara +Kylie +Peyton +Sophia +Britney +Rebekah +Allie +Callie +Leah +Reagan +Adrianna +Camryn +Holly +Maggie +Mya +Skyler +Addison +Alexia +Alicia +Ariel +Katelynn +Lydia +Avery +Hope +Jayla +Kelly +Tori +Emilee +Kylee +Lauryn +Leslie +Margaret +Mercedes +Michaela +Sabrina +Amaya +Ashlee +Carly +Daisy +Kaitlin +Katlyn +Kendra +Kirsten +Lily +Melissa +Vanessa +Alissa +Allyson +Aubrey +Bg +Cameron +Diana +Hallie +Jamie +Josie +Karen +Kendall +Baby +Haven +Kaitlynn +Logan +Marissa +Maya +Meghan +Monica +Selena +Tabitha +Alexa +Amelia +Crystal +Cynthia +Haleigh +Heaven +Jaden +Joanna +Micah +Savanna +Ana +Cierra +Kailey +Lacey +Macey +Meagan +Miranda +Stormy +Ashlynn +Casey +Cassandra +Chasity +Claudia +Desiree +Katrina +Mattie +Melanie +Rachael +Ashleigh +Charity +Destinee +Evelyn +Gabriella +Halle +Jayden +Jazmine +Kaleigh +Kyla +Laney +Lilly +Lindsay +Mckayla +Mckenna +Mia +Patricia +Angelica +Ariana +Bailee +Dakota +Delaney +Felicia +Jasmin +Kassidy +Kayleigh +Miracle +Serenity +Shania +Sophie +Aaliyah +Adriana +Alana +Alison +Bianca +Carolyn +Carrie +Christian +Destiney +Esmeralda +Gabriela +Jaci +Jacqueline +Jordyn +Kaylie +Kaylin +Kierra +Kristin +Lacie +Lyndsey +Makenna +Natasha +Patience +Tessa +Tia +Veronica +Abbey +Alaina +Alexus +Alondra +Aspen +Ava +Barbara +Brenna +Brooklynn +Carmen +Cecilia +Chelsea +Destini +Ericka +Erika +Georgia +Halie +Harley +Ivy +Julie +Karina +Kasey +Katelin +Kaylan +Keely +Kira +Lexi +Lisa +Meredith +Sadie +Tara +Tyra +Abbigail +Anastasia +Ashtyn +Brandy +Brenda +Carolina +Clara +Daniela +Elisabeth +Gabriel +Isabel +Isabelle +Jessie +Kacie +Kaytlin +Kennedi +Kenya +Kenzie +Krista +Kristina +Lacy +Layla +Lillie +Maddison +Mallorie +Mollie +Nancy +Naomi +Precious +Regan +Rylee +Shayla +Sheridan +Sydni +Tracy +Alejandra +Alma +Anahi +April +Bridget +Brisa +Brynn +Candace +Carley +Carson +Cassie +Cheyanne +Cindy +Dana +Deanna +Destany +Giselle +Heidi +Hunter +Jacey +Jaclyn +Jayda +Jocelyn +Justice +Kaila +Kamryn +Karissa +Katlynn +Kelsie +Kiersten +Kiley +Krystal +Loren +Maci +Madyson +Martha +Miriam +Sandra +Shannon +Skyla +Sommer +Terra +Tierra +Tyler +Valerie +Virginia +Zaria +Abbie +Abigale +Adrian +Adrienne +Alayna +Alisha +Aliyah +Aniya +Annabelle +Annie +Arianna +Arielle +Ayanna +Blakely +Brandi +Brook +Cara +Carla +Carlie +Carrington +Celeste +Chyna +Clarissa +Cora +Desirae +Devin +Devyn +Emilie +Emmalee +Eryn +Eva +Hattie +Hayden +Haylie +Helen +Jana +Janie +Jasmyne +Jesse +Joy +Juliana +Julianna +Kailee +Kaley +Kameron +Karlie +Kate +Katlin +Kaycee +Kayley +Kaylyn +Kinley +Kyleigh +Kyra +Larissa +Linda +Linsey +Lucy +Macie +Marisol +Misty +Moriah +Myah +Mykayla +Nadia +Nikita +Paris +Parker +Piper +Regina +Robyn +Rosa +Rose +Ryan +Savanah +Shawna +Shyanne +Stacy +Stormie +Tamia +Tatum +Vera +Whitley +Alanna +Ali +Alice +Alisa +Alivia +Alysha +Amiya +Blair +Bobbie +Bonnie +Carissa +Carol +Chandler +Charlotte +China +Chole +Christine +Ciara +Ciera +Dallas +Daniella +Darby +Debra +Deja +Denise +Dianna +Dominique +Ebony +Eden +Elena +Ellen +Emalee +Fatima +Gillian +Gracen +Guadalupe +Hadley +Jacquelyn +Jaiden +Jaqueline +Jaycee +Jenifer +Julissa +Kallie +Karli +Karrington +Katy +Kaylea +Kaylynn +Keirra +Kiana +Kourtney +Kristyn +Laken +Lesley +Lexie +Liberty +London +Lora +Madisyn +Makala +Malorie +Marilyn +Marlee +Mica +Montana +Nia +Nikki +Presley +Rainey +Randi +Robin +Ruth +Shana +Shanna +Sharon +Shelbie +Skye +Sofia +Sonya +Stevie +Sylvia +Tayler +Tiana +Tiara +Toni +Vivian +Willow +Zoey +Hannah +Madison +Emily +Alexis +Sarah +Destiny +Abigail +Ashley +Elizabeth +Anna +Olivia +Taylor +Haley +Lauren +Sydney +Jessica +Brianna +Kaitlyn +Alyssa +Emma +Chloe +Hailey +Savannah +Mary +Jasmine +Katelyn +Megan +Allison +Jordan +Kayla +Grace +Bailey +Samantha +Mackenzie +Rachel +Shelby +Victoria +Makayla +Sierra +Faith +Kaylee +Morgan +Natalie +Katherine +Autumn +Amber +Trinity +Rebecca +Sara +Jennifer +Courtney +Jada +Maria +Alexandria +Breanna +Erin +Brooklyn +Gracie +Katie +Kelsey +Angel +Brittany +Zoe +Brooke +Gabrielle +Isabella +Abby +Ashlyn +Lindsey +Andrea +Bethany +Madelyn +Caitlin +Caroline +Julia +Stephanie +Alexandra +Leah +Madeline +Mariah +Mckenzie +Aaliyah +Jenna +Paige +Addison +Cassidy +Kimberly +Kylie +Danielle +Skylar +Erica +Laura +Lillian +Summer +Cheyenne +Diamond +Kennedy +Maggie +Rebekah +Hope +Lydia +Reagan +Ashton +Caitlyn +Alexia +Catherine +Makenzie +Michelle +Mikayla +Molly +Payton +Sophia +Heather +Audrey +Kaitlin +Mallory +Raven +Kathryn +Katlyn +Amanda +Briana +Brittney +Haylee +Riley +Tiffany +Amy +Britney +Erika +Marissa +Nicole +Baylee +Claire +Katelynn +Leslie +Sidney +Whitney +Chasity +Crystal +Jaden +Kyla +Peyton +Ariana +Avery +Isabel +Jordyn +Kylee +Lily +Melissa +Adrianna +Alexa +Ashlynn +Cameron +Camryn +Jayla +Mia +Abbie +Allie +Allyson +Callie +Jade +Tatum +Josie +Macy +Maya +Mya +Ana +Angela +Baby +Cassandra +Christina +Eden +Gabriella +Hayley +Jillian +Kassidy +Kristen +Margaret +Meagan +Meredith +Shannon +Skyler +Tyra +Alana +Aubrey +Chelsea +Desiree +Ella +Evelyn +Haleigh +Hanna +Jacqueline +Jazmine +Kailey +Kendall +Kendra +Kristin +Kristina +Kyra +Maddison +Tamia +Aliyah +Annie +April +Ariel +Brooklynn +Carly +Carson +Daisy +Diana +Harley +Isabelle +Julie +Kaleigh +Kamryn +Lexi +Mattie +Melody +Micah +Natasha +Ruth +Sadie +Savanna +Selena +Vanessa +Veronica +Ashlee +Asia +Ava +Brandy +Cecilia +Delaney +Holly +Kayleigh +Kelly +Kierra +Kourtney +Lacey +Laney +Lauryn +Mckenna +Michaela +Miranda +Rylee +Sabrina +Stormy +Tara +Alexus +Bianca +Cierra +Genesis +Heaven +Joanna +Jocelyn +Kara +Logan +Piper +Raegan +Ruby +Skyla +Tia +Wendy +Adrienne +Alison +Alissa +Angelina +Bailee +Carmen +Dominique +Emilee +Haven +India +Justice +Kaitlynn +Kate +Kaylie +Keely +Kennedi +Kiara +Kirsten +Layla +Loren +Madalyn +Madisyn +Makenna +Melanie +Taryn +Tessa +Tori +Zoie +Adriana +Alaina +Alicia +Amelia +Anne +Arianna +Ashtyn +Carley +Carolyn +Dakota +Destinee +Destiney +Esmeralda +Gabriela +Hailee +Hallie +Haylie +Jasmin +Jazmin +Joy +Kaley +Kaliyah +Karlee +Katrina +Kayley +Kira +Lilly +Mercedes +Monica +Nayeli +Rachael +Rose +Serenity +Shania +Shayla +Tabitha +Zoey +Amari +Anahi +Angelica +Ashleigh +Camille +Cheyanne +Clara +Deja +Gillian +Harmony +Heidi +Jamie +Kailyn +Karen +Karla +Karlie +Kelsie +Lacy +Maci +Madyson +Maegan +Nancy +Parker +Patience +Presley +Regan +Rylie +Sophie +Valeria +Virginia +Zaria +Abagail +Abbigail +Alisha +Alyson +Anastasia +Annabelle +Aspen +Blakely +Bobbie +Brenda +Candice +Casey +Charity +Christian +Destini +Devin +Dulce +Gloria +Guadalupe +Hadley +Hayden +Iris +Jaclyn +Jakayla +Jakiya +Jessie +Kali +Kelli +Kelsi +Kiera +Kinley +Lainey +Leticia +Lexie +Lucy +Lyndsey +Macey +Macie +Martha +Miracle +Montana +Savanah +Saylor +Sydni +Teresa +Abbey +Alanna +Alayna +Alejandra +Ally +Ayanna +Bonnie +Bridget +Carla +Cassie +Celeste +Chole +Chyna +Cindy +Cora +Cynthia +Dana +Daniela +Ebony +Elisabeth +Felicity +Gabriel +Georgia +Giselle +Halle +Ivy +Jacquelyn +Jalyn +Jasmyn +Jayden +Juana +Julianna +Kaci +Karley +Katlynn +Kaylin +Kaylynn +Kelley +Kinsey +Kyleigh +Latasha +Lena +Linda +Madilyn +Malia +Meghan +Miriam +Misty +Naomi +Nia +Nichole +Nya +Patricia +Sandra +Sharon +Shyann +Shyanne +Sofia +Sydnee +Tianna +Tierra +Ainsley +Alexandrea +Alivia +Alize +Alondra +Amia +Anaya +Anika +Ann +Arionna +Audra +Averie +Berenice +Betty +Beyonce +Blair +Brandi +Breana +Brionna +Carolina +Chandler +Charlotte +Chelsey +Colby +Destany +Dixie +Edith +Elena +Elisa +Ericka +Fatima +Gracen +Harlee +Hunter +Jacey +Jaci +Jaiden +Jamya +Jaycee +Jaylen +Jenny +Jewel +Josephine +Kaelyn +Kalee +Kalyn +Karli +Katlin +Kaylan +Kayli +Kenley +Kenzie +Keonna +Krystal +Larissa +Libby +Liliana +Lisa +London +Lorena +Lori +Madelynn +Marie +Marisa +Mikala +Moriah +Nadia +Nevaeh +Racheal +Raina +Randi +Rianna +Rilee +Robyn +Savana +Shirley +Sky +Stormie +Sydnie +Tamara +Toni +Tyler +Vivian +Yasmine +Yesenia +Yvette +Madison +Hannah +Emily +Abigail +Sarah +Alexis +Anna +Taylor +Elizabeth +Lauren +Olivia +Emma +Haley +Ashley +Destiny +Brianna +Mary +Chloe +Sydney +Alyssa +Jasmine +Kaitlyn +Jessica +Katelyn +Autumn +Hailey +Kayla +Savannah +Kaylee +Bailey +Rachel +Allison +Grace +Morgan +Shelby +Isabella +Victoria +Makayla +Samantha +Jennifer +Megan +Natalie +Jordan +Faith +Ashanti +Mackenzie +Abby +Trinity +Aaliyah +Kylie +Zoe +Brooklyn +Katie +Sierra +Katherine +Ashlyn +Courtney +Mckenzie +Riley +Sara +Kennedy +Maria +Erin +Gracie +Kimberly +Breanna +Jada +Paige +Lindsey +Caroline +Cheyenne +Kelsey +Amber +Andrea +Lillian +Alexandria +Ashton +Avery +Gabrielle +Jade +Mallory +Rebecca +Bethany +Heather +Michelle +Angel +Brooke +Sophia +Caitlyn +Jenna +Addison +Haylee +Leah +Lily +Madeline +Alexandra +Molly +Stephanie +Skylar +Vanessa +Hope +Madelyn +Maggie +Amanda +Amy +Brittany +Erica +Mia +Nicole +Audrey +Harley +Kathryn +Payton +Aubrey +Danielle +India +Alexia +Cassidy +Christina +Jillian +Josie +Julia +Katelynn +Macy +Mariah +Sadie +Alicia +Allyson +Haven +Kylee +Summer +Ashlynn +Baby +Catherine +Lydia +Serenity +Whitney +Jordyn +Jamie +Jayla +Laura +Makenzie +Marissa +Tiffany +Adrianna +Daisy +Diamond +Diana +Ella +Mikayla +Rebekah +Emilee +Evelyn +Isabel +Kristen +Skyler +Amelia +Briana +Caitlin +Callie +Claire +Halle +Kyra +Maya +Miranda +Alexa +Ariana +Hanna +Hayley +Jaden +Kamryn +Kassidy +Kiara +Melissa +Reagan +Savanna +Tori +Angelina +Brandi +Carly +Heaven +Jocelyn +Madalyn +Makenna +Margaret +Peyton +Raven +Aliyah +Allie +Ana +Ariel +Asia +Ava +Brittney +Cameron +Isabelle +Sophie +Valerie +Zoie +Abbey +Bianca +Brooklynn +Bryanna +Holly +Jazmin +Kayleigh +Leslie +Lexi +Lizbeth +Mckenna +Melanie +Raegan +Rylee +Anastasia +Baylee +Charity +Crystal +Cynthia +Eden +Julie +Karla +Kelly +Kirsten +Kyla +Monica +Shayla +Vivian +Zoey +Alissa +Angela +Carmen +Casey +Cassandra +Dakota +Daniela +Gabriela +Hallie +Jacie +Jadyn +Justice +Kaley +Karen +Kendall +Laney +Madyson +Michaela +Mya +Patricia +Ruby +Ryleigh +Skyla +Tabitha +Abbigail +Adriana +April +Ayanna +Desiree +Elise +Eva +Gabriella +Kailey +Kara +Kate +Kaylie +Kierra +Lauryn +Liberty +Logan +Mckayla +Meredith +Micah +Angelica +Anne +Britney +Carley +Carlie +Chelsea +Cheyanne +Cierra +Claudia +Deanna +Erika +Hailee +Hailie +Karina +Katlyn +Kyleigh +Macey +Macie +Madisyn +Mercedes +Miracle +Nadia +Tara +Tia +Virginia +Aimee +Alejandra +Alexus +Ally +Alondra +Aniya +Annie +Ashleigh +Brenna +Camryn +Carolyn +Cecilia +Chasity +Ciara +Cindy +Delaney +Jaci +Jacqueline +Jaiden +Jamya +Jenny +Julianna +Kailyn +Kaitlin +Karissa +Karlee +Kaylyn +Kaylynn +Kira +Layla +London +Mayra +Mckinley +Meghan +Melody +Presley +Sabrina +Savanah +Selena +Sidney +Stormy +Tamia +Tyler +Alaina +Annabelle +Arianna +Brandy +Camille +Carson +Cassie +Christa +Cora +Felicity +Gillian +Giselle +Haleigh +Helen +Ivy +Jasmin +Jazmine +Jessie +Juliana +Kacey +Kaitlynn +Kaleigh +Kathleen +Kennedi +Kiersten +Kinley +Lexie +Madelynn +Makiya +Mattie +Meagan +Nancy +Nyla +Rosa +Ruth +Rylie +Taryn +Tatyana +Veronica +Abigale +Addie +Alison +Amaya +Aspen +Brenda +Eleanor +Ellie +Essence +Georgia +Haylie +Josephine +Kailee +Kali +Katrina +Kaylin +Keely +Kendra +Kenzie +Kiana +Kiya +Kristin +Kristina +Krystal +Lacey +Lacy +Lena +Lisa +Lyric +Maci +Madilyn +Montana +Natalia +Nia +Phoebe +Rose +Sandra +Sofia +Sydni +Taliyah +Tessa +Toni +Tyra +Wendy +Zaria +Abagail +Abbie +Abbygail +Alana +Alayna +Ali +Amari +Ashlee +Ashtyn +Aubrianna +Aurora +Austin +Bailee +Breana +Cara +Carlee +Celeste +Chandler +Charlotte +Chole +Christian +Christy +Ciera +Clara +Deja +Destinee +Destini +Elisabeth +Genesis +Guadalupe +Hadley +Halie +Hattie +Heidi +Itzel +Jaclyn +Jakayla +Jayden +Joanna +Jolie +Journey +Kaila +Kalyn +Katy +Kaylan +Kelsie +Kiley +Kori +Lacie +Lilly +Lorena +Lucy +Magan +Marisol +Marley +Martha +Mattison +Nevaeh +Nina +Paris +Patience +Perla +Phoenix +Rachael +Randi +Rhiannon +Shaniya +Stella +Suzanne +Sydnee +Tamara +Teagan +Tierra +Yasmin +Yesenia +Abbi +Ainsley +Aleigha +Alivia +Alyson +Anahi +Ann +Audra +Bria +Bridget +Brionna +Cali +Carrington +Chelsey +Clarissa +Cloe +Denise +Destiney +Dixie +Dominique +Drew +Ebony +Edith +Emmalee +Fatima +Halee +Halley +Harleigh +Jakyra +Janiya +Jaycee +Kacie +Kaia +Kaliyah +Karis +Karley +Karli +Kasey +Katlin +Kaya +Kayli +Keeley +Kenya +Krista +Kyndal +Kyndall +Lainey +Laken +Lilian +Lillie +Linda +Lindsay +Maddie +Makala +Mallorie +Natasha +Piper +Precious +Priscilla +Raylee +Reese +Rhianna +Scarlett +Serena +Shakira +Shannon +Sharon +Shawna +Silvia +Sydnie +Tania +Tatum +Terra +Trisha +Whitley +Madison +Emily +Hannah +Emma +Alexis +Abigail +Elizabeth +Chloe +Olivia +Anna +Taylor +Sarah +Haley +Ashley +Brianna +Lauren +Jessica +Makayla +Kaitlyn +Sydney +Kaylee +Alyssa +Hailey +Mary +Destiny +Natalie +Rachel +Jasmine +Bailey +Victoria +Grace +Kayla +Faith +Savannah +Morgan +Zoe +Autumn +Allison +Samantha +Gracie +Isabella +Katelyn +Lillian +Megan +Trinity +Kylie +Brooklyn +Katherine +Shelby +Mackenzie +Sierra +Katie +Riley +Breanna +Gabrielle +Caroline +Jennifer +Jordan +Sara +Paige +Ella +Avery +Madeline +Abby +Kimberly +Mckenzie +Alexandra +Courtney +Sophia +Macy +Skylar +Alexia +Lily +Rebecca +Julia +Lydia +Ashlyn +Erin +Bethany +Kennedy +Andrea +Lindsey +Makenzie +Stephanie +Addison +Ava +Brooke +Jamie +Summer +Amber +Audrey +Jada +Molly +Aaliyah +Allie +Mia +Haylee +Jenna +Kelsey +Madelyn +Maria +Leah +Raven +Angela +Cheyenne +Evelyn +Jayden +Katelynn +Kyla +Kylee +Caitlyn +Jade +Nicole +Alexandria +Angel +Catherine +Claire +Erica +Hope +Maggie +Marissa +Rylee +Ashlynn +Danielle +Jordyn +Alexa +Amelia +Aubrey +Hanna +Jaden +Laura +Ariel +Brittany +Kirsten +Leslie +Mallory +Mariah +Melanie +Amy +Mya +Sidney +Alicia +Asia +Briana +Cassidy +Emilee +Karen +Layla +Melissa +Skyler +Sophie +Tiffany +Whitney +Amanda +Ana +Callie +Hayley +Jayla +Jocelyn +Kathryn +Kristen +Michelle +Payton +Serenity +Trista +Vanessa +Ashton +Gabriela +Heaven +Lilly +Reagan +Sadie +Alexus +Arianna +Erika +Hallie +Heather +Holly +Isabel +Kailey +Kinley +Lizbeth +Peyton +Zoey +Alivia +Amaya +Cadence +Cierra +Halle +Jacqueline +Jazmine +Jillian +Ruby +Sabrina +Selena +Adrianna +Alissa +Ariana +Ashanti +Baylee +Carly +Carmen +Crystal +Daisy +Eva +Harley +Josie +Kaitlin +Kelly +Laney +Liberty +Mattie +Mercedes +Meredith +Abbigail +Alondra +Brooklynn +Chelsea +Christina +Cynthia +Desiree +Diamond +Gabriella +Haven +India +Jadyn +Julie +Kiara +Kiley +Lacey +Madalyn +Patricia +Ryleigh +Tori +Abbie +Adriana +Alison +Angelica +Angelina +Brenda +Camryn +Cindy +Diana +Heidi +Kara +Margaret +Mikayla +Savanna +Shayla +Allyson +Annabelle +Clara +Jakayla +Jayda +Kailee +Kamryn +Karla +Kendall +Laci +Lauryn +Macie +Madilyn +Miranda +Nadia +Naomi +Rebekah +Alana +Alejandra +Aliyah +Aniya +Baby +Brandy +Brittney +Delaney +Jazmin +Juliana +Kali +Kate +Kyleigh +Lillie +Lucy +Miracle +Perla +Piper +Zoie +Amari +Cecilia +Destinee +Georgia +Justice +Karina +Kassidy +Katlyn +Kendra +Kenzie +Kristin +Laila +Maci +Makenna +Mckayla +Meagan +Meghan +Mollie +Monica +Nevaeh +Skyla +Tabitha +Tamia +Taniya +Veronica +Vivian +Abagail +Alyson +Annie +Ashlee +Ashleigh +Caitlin +Cameron +Carlee +Carley +Carlie +Cassandra +Elisabeth +Ellie +Guadalupe +Hailee +Haylie +Isabelle +Ivy +Jessie +Karli +Karlie +Kierra +Kinsey +Kyra +Macey +Maya +Nancy +Paris +Raegan +Tara +Tristan +Addyson +Akira +Alayna +Ally +Amya +Anastasia +April +Aspen +Ayanna +Brenna +Brynn +Camille +Carson +Chasity +Claudia +Eden +Elise +Ellen +Jaiden +Jamia +Jasmin +Julianna +Karlee +Katlynn +Kayleigh +Kelsie +Lexie +Lindsay +Madisyn +Madyson +Michaela +Nina +Patience +Regan +Shania +Tyra +Zaria +Ainsley +Alaina +Aurora +Casey +Celeste +Cora +Cydney +Dakota +Daniela +Deanna +Deja +Denise +Dulce +Elaina +Emely +Fatima +Felicity +Genesis +Graci +Hadley +Hailie +Halie +Hayden +Helen +Jacie +Jacy +Jalyn +Janiya +Kaylea +Kaylie +Kaylin +Kennedi +Lacy +Lexi +Linda +Logan +London +Luz +Maegan +Maleah +Miriam +Montana +Precious +Presley +Randi +Reese +Ruth +Scarlett +Shannon +Stormy +Sunny +Taliyah +Tamya +Taryn +Tatyana +Thalia +Tia +Yesenia +Abbi +Alisha +Amethyst +Amiya +Ann +Annalee +Anne +Annika +Ashten +Bianca +Brandi +Breonna +Candice +Carissa +Carrie +Charlie +Cheyanne +Christa +Christian +Destini +Eleanor +Eliza +Emmalee +Esmeralda +Fallon +Haleigh +Harlie +Harmony +Hunter +Iris +Jacklyn +Janet +Jasmyn +Jayme +Jazmyne +Jolie +Julianne +Kaitlynn +Katrina +Kiersten +Kira +Liliana +Lisa +Marisa +Marley +Mikaela +Monique +Myka +Natasha +Phoebe +Rachael +Reyna +Rhiannon +Rose +Serena +Sofia +Stormie +Tamara +Teagan +Tessa +Tianna +Tiara +Tierra +Valeria +Valerie +Yasmin +Yasmine +Adrienne +Alisa +Allyssa +Amiah +Amiyah +Audra +Britney +Brook +Candace +Carol +Carolina +Cassie +Catelynn +Charity +Chelsey +Cherish +Cloe +Constance +Cristina +Dana +Darby +Devyn +Ebony +Emili +Emilie +Frances +Francis +Gianna +Giselle +Gloria +Gracen +Gretchen +Harlee +Jacey +Jaedyn +Jamiah +Jamiya +Jaqueline +Jaycee +Jessalyn +Joselyn +Journey +Kailyn +Kaley +Kallie +Kalyn +Karissa +Kasey +Kenya +Kiana +Kirstyn +Kiya +Krista +Kristina +Krysta +Kylah +Lanie +Laynie +Leila +Lyric +Madalynn +Madelynn +Makena +Malia +Mariana +Marisol +Mckinley +Micah +Myra +Nakayla +Paola +Priscilla +Shawna +Shaylee +Shea +Shyanne +Skye +Stevie +Susana +Sydni +Sydnie +Sylvia +Tania +Taniyah +Tatiana +Tatum +Toni +Tristen +Winter +Yoselin +Madison +Emily +Emma +Hannah +Olivia +Abigail +Alexis +Anna +Elizabeth +Lauren +Sarah +Chloe +Alyssa +Ashley +Destiny +Hailey +Haley +Jasmine +Taylor +Brianna +Brooklyn +Kaylee +Mary +Sydney +Kaitlyn +Trinity +Natalie +Isabella +Jessica +Samantha +Kayla +Grace +Makayla +Bailey +Morgan +Mackenzie +Allison +Autumn +Zoe +Lillian +Savannah +Faith +Jordan +Gracie +Riley +Katelyn +Kennedy +Ashlyn +Kylie +Victoria +Caroline +Ella +Avery +Abby +Rachel +Audrey +Ava +Megan +Shelby +Angel +Erin +Kimberly +Brooke +Jenna +Aaliyah +Addison +Rebecca +Jada +Lily +Madeline +Makenzie +Summer +Jennifer +Mckenzie +Sierra +Cadence +Katie +Maria +Amber +Madelyn +Paige +Sara +Gabrielle +Maggie +Zoey +Baby +Katherine +Laura +Marissa +Rylee +Alexandra +Sophia +Breanna +Cassidy +Katelynn +Mia +Skylar +Cheyenne +Reagan +Kelsey +Leah +Lindsey +Serenity +Amy +Jade +Michelle +Alexia +Ashlynn +Bethany +Courtney +Jayden +Julia +Lydia +Mallory +Alexa +Alexandria +Allie +Andrea +Evelyn +Macy +Mariah +Adrianna +Arianna +Hope +Kendall +Molly +Paris +Amanda +Angelina +Claire +Jayla +Alicia +Aubrey +Brittany +Caitlyn +Diana +Kathryn +Lilly +Mya +Danielle +Jaden +Kinley +Kylee +Nicole +Piper +Raven +Stephanie +Kyla +Allyson +Aniya +Carly +Erica +Julie +Kadence +Kamryn +Heather +Jadyn +Lacey +Leslie +Melanie +Vanessa +Ana +Asia +Briana +Catherine +Daisy +Emilee +Holly +Isabel +Josie +Kyra +Mikayla +Nevaeh +Payton +Sadie +Adriana +Erika +Jamie +Jillian +Kayleigh +Kiley +Layla +Lexi +Selena +Whitney +Abbigail +Amelia +Angela +Daniela +Eden +Gabriella +Hallie +Harley +Haylee +Hayley +Kara +Laney +Presley +Ruby +Savanna +Alivia +Brittney +Caitlin +Charity +Christina +Crystal +Hanna +Haven +Jordyn +Kristen +Melissa +Peyton +Skyler +Tamia +Annabelle +Ariana +Ashton +Callie +Cameron +Chelsea +Cynthia +Diamond +Georgia +Isabelle +Kate +Margaret +Naomi +Sophie +Tabitha +Tiffany +Baylee +Brenda +Camryn +Carmen +Clara +Destinee +Halle +Heaven +Jayda +Karen +Kaydence +Kelly +Rebekah +Sidney +Tessa +Ariel +Bianca +Brooklynn +Esmeralda +Kailey +Kiara +Kira +Madisyn +Madyson +Makenna +Sandra +Alayna +Alison +Carley +Celeste +Eva +Gabriela +Janiya +Katlyn +Kenzie +Kirsten +Kyleigh +Lauryn +Logan +Maci +Mckenna +Micah +Raegan +Reese +Sofia +Veronica +Abbie +Alissa +Alyson +Annie +Bailee +Britney +Camille +Carlee +Cassandra +Cassie +Cierra +Dakota +Dixie +Ellie +Haleigh +Jasmin +Jocelyn +Kaleigh +Laila +Lexie +Liberty +Lizbeth +Macie +Madalyn +Miranda +Nadia +Nayeli +Regan +Ryleigh +Rylie +Shaylee +Shyann +Skyla +Tori +Vivian +Zoie +Abbey +Alana +Alexus +Amya +Angelica +April +Ashlee +Aspen +Aurora +Blakely +Charlotte +Delaney +Hadley +Haylie +Heidi +Jacqueline +Jamya +Janet +Jazmine +Joanna +Kaitlynn +Kallie +Kaylyn +Kaylynn +Lainey +Lana +Loren +Lucy +Macey +Madelynn +Marley +Maya +Melody +Meredith +Michaela +Monica +Nancy +Rosa +Adrienne +Alaina +Amaya +Ashanti +Candace +Cara +Carson +Cecilia +Chasity +Cora +Cristina +Elise +Giselle +Guadalupe +Harmony +Helen +Itzel +Jakayla +Jazmin +Kailee +Kassidy +Kathleen +Kaylie +Kelsi +Kelsie +Kenley +Kennedi +Kiera +Kristin +Krystal +Laci +Lacie +Mariana +Mattie +Mercedes +Miracle +Rachael +Shannon +Skye +Stormy +Tatiana +Tayler +Addyson +Alisha +Ally +Alondra +Ashtyn +Bella +Brandi +Brenna +Claudia +Emmalee +Gabriel +Hailee +Hayden +Ivy +Jacey +Jaiden +Jaycee +Jenny +Jessie +Joselyn +Kaitlin +Kaliyah +Karla +Kaylin +Kendra +Kourtney +Krista +Laken +Lanie +Lillie +Lindsay +Livia +Madalynn +Maddison +Makala +Makyla +Miriam +Nia +Patricia +Ruth +Shayla +Stormie +Sydnee +Taniyah +Tara +Taryn +Toni +Wendy +Abagail +Alia +Aliyah +Alysha +Amiya +Araceli +Brandy +Brynn +Carissa +Cheyanne +Christian +Cindy +Daphne +Deja +Denise +Devin +Elaina +Eliza +Emalee +Ember +Genesis +Gwendolyn +India +Jaycie +Jaylin +Juliana +Julianna +Karlee +Kasey +Katelin +Katrina +Kaya +Kayden +Kaylea +Kierra +Larissa +Lilian +Linda +Lola +Lyric +Mandy +Marisol +Natalia +Parker +Patience +Phoebe +Princess +Robyn +Rose +Shamya +Shania +Shelbi +Tamara +Tamya +Taniya +Tatum +Tia +Tiana +Trista +Violet +Willow +Adison +Ainsley +Alejandra +Alora +Amari +America +Angie +Annalise +Ashleigh +Aubry +Barbara +Blair +Breana +Carla +Carolina +Carolyn +Carrington +Chandler +Cherokee +Christa +Clarissa +Dawn +Deanna +Deborah +Desiree +Dianna +Dru +Dylan +Elisabeth +Ellen +Emery +Emilie +Emmaleigh +Eryn +Fatima +Fernanda +Gracelyn +Gracen +Graci +Gracyn +Grayson +Harlie +Imani +Jacelyn +Jaelyn +Jaidyn +Jalisa +Jaliyah +Jamia +Jamiya +Jaylen +Jazmyne +Jimena +Joselin +Joy +Julianne +Julissa +Justice +Kaiden +Kailyn +Kali +Kameron +Karsyn +Katy +Kaylen +Kayley +Keira +Kenya +Kiersten +Kimber +Kristina +Lakyn +Lani +Leigha +Leticia +Lila +Litzy +Lizette +Lori +Madilyn +Makaila +Makiya +Malia +Maranda +Mattison +Mckinley +Meadow +Meagan +Mollie +Nakayla +Natalee +Natasha +Noemi +Nora +Nyla +Perla +Randi +Remington +Rhiannon +Shyanne +Tierra +Valarie +Winter +Yasmin +Yesenia +Zaria +Emily +Madison +Emma +Hannah +Alexis +Abigail +Olivia +Anna +Elizabeth +Chloe +Lauren +Ella +Natalie +Sarah +Brooklyn +Kaylee +Alyssa +Destiny +Ashley +Isabella +Taylor +Ava +Brianna +Hailey +Grace +Makayla +Jasmine +Lillian +Haley +Savannah +Allison +Samantha +Sydney +Gracie +Kaitlyn +Mary +Jessica +Megan +Riley +Lily +Bailey +Kylie +Katelyn +Shelby +Trinity +Victoria +Sophia +Kayla +Morgan +Zoe +Autumn +Avery +Breanna +Mia +Caroline +Mackenzie +Rachel +Faith +Jordan +Maria +Abby +Addison +Jenna +Katie +Jada +Katherine +Ashlyn +Audrey +Paige +Alexandra +Amelia +Brooke +Gabrielle +Sara +Zoey +Kylee +Aaliyah +Jennifer +Madeline +Mckenzie +Rebecca +Lydia +Julia +Kimberly +Kennedy +Michelle +Skylar +Summer +Cadence +Andrea +Cheyenne +Jayla +Kelsey +Madelyn +Mya +Molly +Rylee +Stephanie +Arianna +Erin +Nevaeh +Angel +Aubrey +Bethany +Catherine +Haylee +Makenzie +Alexa +Gabriella +Katelynn +Reagan +Sadie +Sophie +Alexandria +Alexia +Ana +Hope +Lindsey +Mariah +Sierra +Allie +Kadence +Cassidy +Christina +Ciara +Courtney +Eva +Kendall +Mallory +Whitney +Amber +Carmen +Danielle +Kara +Kaydence +Kyla +Layla +Lilly +Maggie +Marissa +Serenity +Amy +Angela +Angelina +Ariel +Ashlynn +Erica +Jayden +Kathryn +Laura +Macy +Paris +Peyton +Claire +Emilee +Heaven +Jade +Jillian +Leah +Miranda +Nicole +Allyson +Kyra +Raven +Adriana +Alivia +Aniyah +Ariana +Brittany +Caitlyn +Callie +Carley +Daisy +Dakota +Harley +Isabelle +Kamryn +Kassidy +Cameron +Evelyn +Hayley +Kailey +Kiera +Laney +Melanie +Payton +Tessa +Alondra +Amanda +Daniela +Diana +Isabel +Jaci +Jaden +Kirsten +Madilyn +Maya +Mikayla +Rylie +Skyler +Abbigail +Adrianna +Alexus +Chelsea +Haven +Jadyn +Janiya +Jordyn +Kinley +Laila +Leslie +Margaret +Meredith +Rebekah +Reese +Ashton +Bella +Briana +Brooklynn +Carlee +Carly +Emmalee +Heather +Jasmin +Jocelyn +Karen +Kristina +Laci +Miracle +Presley +Ryleigh +Sofia +Vanessa +Ainsley +Alicia +Aniya +Annabelle +Asia +Baylee +Brenda +Clara +Delaney +Hallie +Hanna +Josie +Karla +Kenzie +Macey +Madalyn +Madisyn +Melissa +Naomi +Patience +Precious +Ruby +Selena +Aliyah +Bailee +Camille +Eliza +Ellie +Erika +Gabriela +Haylie +Heidi +Jacey +Kate +Keira +Kierra +Kiley +Kira +Kyleigh +Liberty +Lucy +Michaela +Piper +Sabrina +Shania +Skyla +Tyra +Abbie +Angelica +April +Aubree +Hailee +Halle +Jacqueline +Jamie +Kasey +Katlyn +Kaylie +Kiara +Lexi +Maci +Madelynn +Tiffany +Zoie +Alisha +Alison +Alissa +Amya +Ashlee +Bianca +Caitlin +Carlie +Cynthia +Fatima +Georgia +Gracelyn +Hayden +Ivy +Joanna +Justice +Kaitlynn +Kaleigh +Kayleigh +Kayley +Kristen +Lainey +Lyric +Macie +Mariana +Marlee +Natasha +Rubi +Sidney +Stella +Tabitha +Alayna +Ally +Amari +Anahi +Ashanti +Baby +Britney +Bryanna +Camryn +Cheyanne +Cloe +Desirae +Destiney +Dulce +Eden +Elena +Haleigh +Jazmin +Julie +Karley +Kayden +Kaylen +Kaylin +Kennedi +Lana +Lauryn +Lexie +Lillie +Logan +Maddison +Madyson +Nadia +Sasha +Savanna +Shayla +Stormie +Sydnee +Tara +Valerie +Veronica +Abbey +Addyson +Adrienne +Alanna +Alyson +Angie +Ashleigh +Brenna +Briley +Carolina +Carson +Cassie +Cecilia +Charlotte +Chasity +Cindy +Crystal +Diamond +Dixie +Emerson +Esmeralda +Genesis +Hadley +Hazel +India +Itzel +Jaelyn +Jaidyn +Janet +Jaycee +Jayda +Jazmine +Jenny +Journey +Julianna +Julissa +Kaelyn +Kaitlin +Kali +Karina +Karlee +Katrina +Kelly +Kelsie +Kenley +Lacey +Linda +Litzy +Loren +Lyndsey +Makenna +Makiya +Marisol +Melody +Miriam +Raegan +Ruth +Serena +Shyann +Tatum +Tess +Yadira +Yareli +Yasmine +Ali +Ann +Annie +Brittney +Carolyn +Cloey +Daniella +Dayanara +Elise +Giselle +Graci +Guadalupe +Harmony +Helen +Holly +Jakayla +Janiyah +Jessie +Joslyn +Kailyn +Karlie +Kaylea +Kaylyn +Kendra +Kenya +Krista +Kyndall +Libby +London +Marilyn +Mariyah +Marlene +Mayra +Nia +Shakira +Tania +Teagan +Tiara +Tori +Trista +Winter +Abagail +Abigale +Addie +Adison +Alana +Amaya +Amiah +Anastasia +Arabella +Arely +Barbara +Bridget +Brielle +Carissa +Carol +Cierra +Dana +Dasia +Deanna +Desiree +Ebony +Elaina +Eleanor +Emely +Estrella +Evan +Finley +Gillian +Gretchen +Halie +Jacquelyn +Jaiden +Jamiya +Jaylin +Juliana +Kaley +Katy +Keeley +Keely +Kiersten +Kiya +Kristin +Krystal +Lacy +Lena +Liliana +Lindsay +Lizbeth +Maegan +Maleah +Malia +Mattie +Mckayla +Mckenna +Mercedes +Micah +Nakiya +Nina +Nora +Perla +Regan +Ryan +Samara +Sandra +Saniya +Sarahi +Shaylee +Stormy +Tamara +Tamia +Taryn +Tatiana +Thalia +Valeria +Vanesa +Virginia +Zariah +Adyson +Alaina +Alejandra +Alice +Amiyah +Aspen +Athena +Averi +Ayden +Blakely +Brandy +Breana +Brisa +Brylee +Bryley +Camila +Christian +Deja +Donna +Emalee +Emalie +Emilie +Emmy +Fallon +Felicity +Gabriel +Gianna +Gloria +Harlie +Heavenly +Izabella +Jaliyah +Jamya +Jaqueline +Jaycie +Jaylee +Jazlyn +Jazmyn +Jimena +Josephine +Joy +Juana +Kaci +Katelin +Katlynn +Kiah +Kinsley +Kylah +Lara +Lorelei +Lucia +Madeleine +Makiyah +Makyla +Maliyah +Marley +Mckinley +Meagan +Meghan +Monique +Nakia +Nyla +Paisley +Parker +Phoebe +Rachael +Rose +Savana +Saylor +Scarlett +Shae +Shannon +Susan +Sydni +Sydnie +Tia +Toni +Tristen +Vivian +Wendy +Whitley +Willow +Yesenia +Zaria +Madison +Emily +Emma +Hannah +Abigail +Alexis +Elizabeth +Olivia +Chloe +Anna +Addison +Ava +Brooklyn +Isabella +Alyssa +Jasmine +Savannah +Hailey +Taylor +Natalie +Sarah +Lauren +Allison +Destiny +Lillian +Kaylee +Makayla +Ashley +Lily +Ella +Kylie +Trinity +Morgan +Bailey +Brianna +Gracie +Samantha +Avery +Kaitlyn +Mia +Haley +Kayla +Mary +Katelyn +Rachel +Zoe +Jessica +Victoria +Faith +Grace +Zoey +Mackenzie +Breanna +Katherine +Sydney +Gabrielle +Mariah +Shelby +Ashlyn +Brooke +Jada +Riley +Autumn +Madelyn +Abby +Rylee +Sophia +Audrey +Sara +Nevaeh +Paige +Caroline +Aubrey +Jennifer +Kennedy +Makenzie +Katie +Mckenzie +Kimberly +Jordan +Claire +Isabelle +Jenna +Haylee +Bethany +Lydia +Adrianna +Jayla +Reagan +Rebecca +Andrea +Cadence +Jayden +Kylee +Leah +Maggie +Alexa +Allie +Cheyenne +Jordyn +Macy +Madeline +Serenity +Skylar +Aaliyah +Amelia +Layla +Lilly +Summer +Angel +Gabriella +Jocelyn +Megan +Molly +Courtney +Maria +Sophie +Isabel +Jade +Kathryn +Mya +Sadie +Amy +Arianna +Ariel +Callie +Kyla +Melanie +Sofia +Brooklynn +Julia +Katelynn +Miranda +Nicole +Ruby +Alexandra +Alexandria +Briana +Dakota +Diana +Evelyn +Karen +Laney +Presley +Alicia +Kelsey +Sierra +Addyson +Alexia +Kendra +Kyra +Michelle +Vanessa +Amber +Catherine +Hope +Leslie +Mallory +Melissa +Abbigail +Alivia +Annabelle +Carmen +Erin +Karla +Kaydence +Kayleigh +Laura +Lindsey +Maya +Mckenna +Stephanie +Aniyah +Caitlyn +Jaden +Payton +Alana +Allyson +Ashlynn +Danielle +Harley +Heaven +Josie +Kailey +Kamryn +Kara +Kate +Laila +London +Paris +Piper +Rebekah +Alissa +Alondra +Ariana +Baylee +Clara +Haven +Kaitlynn +Kyleigh +Naomi +Savanna +Sidney +Adriana +Angelina +Bella +Camryn +Christina +Emerson +Emilee +Erica +Hadley +Hallie +Hanna +Heidi +Jadyn +Julie +Kadence +Kaylie +Kira +Kirsten +Lucy +Madalyn +Peyton +Aubree +Bianca +Chelsea +Delaney +Diamond +Eva +Heather +Holly +Jamie +Keira +Kristen +Liliana +Madilyn +Marissa +Nadia +Raven +Ryleigh +Whitney +Anastasia +Angela +Aniya +Bailee +Brittany +Cameron +Cecilia +Ciara +Eleanor +Esmeralda +Gabriela +Harmony +Jacqueline +Josephine +Kaleigh +Karlee +Keely +Lauryn +Logan +Maci +Margaret +Mikayla +Nancy +Valeria +Zoie +Alaina +Asia +Brittney +Carley +Charity +Chasity +Daisy +Eden +Erika +Georgia +India +Janiya +Jillian +Justice +Phoebe +Skyler +Tori +Vivian +Adison +Ally +Brenda +Camille +Dixie +Ellie +Jasmin +Jazmine +Joanna +Juliana +Kennedi +Kenzie +Kinley +Lola +Makenna +Natalee +Natalia +Patience +Rylie +Selena +Sherlyn +Stella +Tessa +Ainsley +Alayna +Alejandra +Amaya +Ashlee +Ashton +Caitlin +Cali +Carlie +Cassidy +Daniela +Janiyah +Jazmin +Kailyn +Kaniya +Kassidy +Kaylin +Kendall +Kiera +Lacey +Laken +Lillie +Madyson +Mercedes +Meredith +Nataly +Paola +Raegan +Sabrina +Saniya +Taryn +Tiffany +Trista +Alexus +Amiya +Aspen +Carleigh +Charlotte +Crystal +Dana +Denise +Elisabeth +Genesis +Haylie +Isabell +Jakayla +Jalyn +Kiara +Lana +Lanie +Lexi +Lexie +Liberty +Lila +Lilian +Macie +Maddison +Marley +Mckinley +Miracle +Randi +Ali +Alice +Alyson +Amari +Brenna +Britney +Camila +Carlee +Cassandra +Charlie +Cynthia +Destany +Felicity +Gracelyn +Guadalupe +Haleigh +Ivy +Jacie +Jaliyah +Jenny +Joselyn +Kaliyah +Karina +Karlie +Katrina +Kayden +Kierra +Kiley +Lizbeth +Madalynn +Madisyn +Malia +Mattie +Micah +Princess +Rihanna +Ryan +Savanah +Shania +Shaylee +Skyla +Taniya +Valerie +Yasmin +Akeelah +Alison +Aliya +Amanda +Amya +Briley +Brylee +Carolina +Celeste +Deanna +Destinee +Elise +Eliza +Emmalee +Fallon +Fatima +Gabriel +Harlee +Hayley +Iyanna +Jamya +Jaqueline +Jaylin +Joy +Juliet +Kaci +Kaelyn +Kaylynn +Kelly +Kelsea +Kelsi +Kelsie +Kenlee +Kenya +Kiersten +Kimora +Kristin +Laci +Lacie +Landry +Mabry +Macey +Meagan +Miley +Monica +Moriah +Nia +Nora +Paisley +Penelope +Perla +Raylee +Reese +Regan +Samara +Sharon +Shayla +Skye +Tyra +Virginia +Abbie +Aidan +Ana +Anahi +Annie +Ansley +April +Araceli +Arely +Audra +Averie +Ayla +Brinkley +Brookelyn +Brookelynn +Bryanna +Carly +Carrie +Carsyn +Constance +Cora +Danica +Dulce +Edith +Elena +Emery +Estrella +Giselle +Gracyn +Hailee +Halle +Hayden +Helen +Hunter +Jaci +Jaiden +Jayda +Jaylee +Jazlyn +Johanna +Journey +Karma +Karsyn +Katlyn +Kaylea +Kenley +La +Maddie +Madilynn +Maleah +Marie +Marisa +Melody +Mika +Montana +Myah +Noemi +Nyla +Rosa +Rose +Ruth +Sandra +Shaniya +Stormie +Stormy +Sylvia +Tania +Tatum +Tayler +Teagan +Tiara +Toni +Zion +Abagail +Addie +Addisyn +Adeline +Adyson +Alanna +Alisha +Angie +Anne +Annika +Anniston +Anya +Aubriana +Aurora +Averi +Blakely +Brayleigh +Brisa +Bryleigh +Cadance +Cara +Casey +Cassie +Celia +Charley +Christian +Citlali +Danika +Desiree +Destiney +Destini +Eliana +Eve +Felicia +Gloria +Harlie +Harper +Hollie +Ireland +Itzel +Izabella +Jacey +Jaclyn +Jaelyn +Jakiya +Janie +Jessie +Jimena +Joselin +Julianna +Julianne +Kailee +Kali +Kalyn +Kaniyah +Karley +Karmen +Kayley +Kaylyn +Keelie +Kiana +Kimber +Kyndall +Kynlee +Lacy +Larissa +Lia +Lindsay +Lucia +Makiya +Margarita +Mariana +Marisol +Mariyah +Marlene +Mayra +Mckayla +Miah +Michaela +Mollie +Natasha +Nikki +Pamela +Parker +Preslee +Rachael +Rebeca +Reyna +Rileigh +River +Rocio +Saige +Saniah +Scarlett +Shakiya +Shyanne +Sonya +Sydnee +Tamya +Tara +Tatianna +Tayla +Tyler +Vianey +Violet +Wendy +Yasmine +Madison +Emma +Emily +Addison +Olivia +Abigail +Hannah +Ava +Chloe +Alexis +Isabella +Elizabeth +Alyssa +Anna +Taylor +Brooklyn +Kaylee +Makayla +Sarah +Brianna +Savannah +Bailey +Mia +Natalie +Lauren +Ella +Lily +Ashley +Destiny +Gracie +Jasmine +Avery +Lillian +Samantha +Sophia +Trinity +Grace +Kaitlyn +Sydney +Hailey +Allison +Kayla +Mary +Audrey +Haley +Aubrey +Katie +Kylie +Riley +Victoria +Autumn +Kennedy +Kimberly +Jayden +Kylee +Layla +Morgan +Nevaeh +Zoe +Breanna +Claire +Faith +Jessica +Shelby +Katelyn +Mackenzie +Ashlyn +Jordan +Zoey +Caroline +Cheyenne +Mckenzie +Madelyn +Rachel +Molly +Alexa +Skylar +Katherine +Makenzie +Peyton +Abby +Angel +Macy +Mariah +Reagan +Rylee +Sophie +Gabrielle +Jada +Maria +Sadie +Ashlynn +Leah +Serenity +Madeline +Allie +Brooklynn +Haven +Megan +Rebecca +Sara +Alexandra +Andrea +Brooke +Kayleigh +Leslie +Lydia +Summer +Ariana +Jenna +Lilly +Addyson +Danielle +Evelyn +Hope +Julia +Maggie +Mallory +Presley +Reese +Kelsey +Lindsey +Marissa +Michelle +Stephanie +Aaliyah +Amelia +Jadyn +Jocelyn +Kaydence +Alexandria +Annabelle +Callie +Jaden +Jennifer +Bethany +Cadence +Erin +Eva +Gabriella +Jade +Jayla +Katelynn +Kyleigh +London +Lucy +Melanie +Allyson +Chelsea +Dakota +Josie +Alexia +Daniela +Kadence +Kendall +Mya +Payton +Piper +Sierra +Adrianna +Amy +Ana +Angela +Emilee +Harley +Isabel +Paige +Raegan +Ruby +Aniya +Daisy +Isabelle +Jordyn +Kathryn +Laney +Maya +Melissa +Savanna +Sofia +Tessa +Tiffany +Alivia +Aubree +Bella +Catherine +Courtney +Hayden +Hayley +Heaven +Kate +Keira +Laila +Madilyn +Miranda +Nadia +Scarlett +Valeria +Adriana +Angelina +Arianna +Ariel +Baylee +Diana +Dixie +Guadalupe +Hanna +Jacqueline +Jazmin +Jazmine +Kenzie +Kira +Lexi +Mattie +Alicia +Carly +Eden +Emerson +Genesis +Jamie +Jasmin +Justice +Kara +Kinley +Kyla +Kyra +Maddison +Madisyn +Ryleigh +Vanessa +Briana +Carlee +Cherish +Crystal +Delaney +Ellie +Hallie +Holly +Janiyah +Julie +Kiera +Mariana +Miley +Naomi +Parker +Skyler +Whitney +Amber +Asia +Bailee +Brylee +Carley +Destinee +Georgia +Hadley +Halle +Heather +Jaiden +Kaleigh +Kamryn +Karla +Kaylie +Laura +Lillie +Marley +Mikayla +Nicole +Selena +Veronica +Alissa +Amanda +Annie +Camila +Carmen +Cassidy +Charity +Ciara +Clara +Harmony +Haylee +Joselyn +Kailey +Kaley +Karlee +Kirsten +Kristen +Lexie +Macie +Makenna +Margaret +Marlee +Raven +Alana +Alice +Alondra +Aniyah +April +Brittany +Caitlin +Camryn +Cheyanne +Danica +Gabriela +Jakayla +Juliana +Kayden +Kaylin +Kelly +Lainey +Laken +Lila +Madyson +Natalia +Paisley +Rihanna +Rylie +Alejandra +Angelica +Ashtyn +Ayla +Briley +Britney +Cameron +Carlie +Dulce +Emery +Erika +Kali +Kendra +Kristina +Laci +Lola +Maci +Madalyn +Mckenna +Mckinley +Micah +Michaela +Monica +Phoebe +Sabrina +Saniya +Stella +Abbie +Addisyn +Alexus +Amari +Amiya +Amya +Caitlyn +Cali +Charlotte +Christina +Cindy +Cynthia +Desiree +Elena +Erica +Jaelyn +Jillian +Joanna +Kallie +Karli +Kenya +Khloe +Kierra +Kinsley +Lauryn +Lilian +Lizbeth +Lyla +Melody +Miracle +Mylee +Nora +Paola +Rose +Sidney +Sydnee +Tatum +Violet +Abbigail +Addie +Adyson +Aliyah +Alli +Allyssa +Alyson +Annalise +Arabella +Aubrie +Aurora +Ayanna +Aylin +Bianca +Elle +Esperanza +Giselle +Haylie +Ivy +Janiya +Jayda +Jaylin +Jessie +Josephine +Kailee +Kailyn +Kaitlynn +Katlyn +Keely +Kiara +Kiley +Lacy +Lakyn +Logan +Meredith +Mollie +Nia +Nina +Paris +Patricia +Raquel +Shaniya +Shiloh +Tori +Zoie +Alex +Alina +Alison +Ally +Amaya +Anastasia +Anaya +Azul +Berkley +Brookelynn +Destiney +Diamond +Genevieve +Gloria +Hailie +Helen +Iris +Itzel +Izabella +Jacey +Jaycee +Jaylee +Jenny +Kalyn +Karen +Kassidy +Kelis +Libby +Liliana +Macey +Madalynn +Mckayla +Mercedes +Montana +Moriah +Nataly +Patience +Raelyn +Samara +Sarai +Sylvia +Taryn +Willow +Zariah +Abbygail +Akeelah +Alaina +Alisa +America +Ann +Ashlee +Aspen +Averie +Cassandra +Celeste +Charlee +Christian +Claira +Constance +Dani +Elexis +Elisabeth +Emmalee +Fatima +Gisselle +Gracelyn +Grayson +Gwyneth +Harlie +Heidi +India +Jaci +Jacie +Jaidyn +Janessa +Jimena +Johanna +Jordin +Jorja +Joshlyn +Kaci +Kalli +Kamya +Karley +Karlie +Kaylea +Kaylen +Kaylynn +Kelsie +Kenna +Kennedi +Kimora +Kyndall +Lacey +Laikyn +Lilliana +Londyn +Loren +Lyric +Malia +Miriam +Miyah +Myah +Mylie +Precious +Ruth +Sariah +Saydee +Shakira +Sienna +Tabitha +Talia +Tamia +Toni +Valerie +Yasmin +Zaniya +Zariyah +Adelynn +Adison +Ainsley +Aisha +Alayna +Alena +Alisha +Alma +Amiyah +Anahi +Annabeth +Annalee +Arden +Ashton +Ayana +Brenda +Brenna +Brynlee +Caleigh +Calleigh +Campbell +Candice +Carleigh +Carolina +Casey +Caydence +Cecilia +Charley +Claudia +Cora +Cristal +Cristina +Devyn +Drew +Eleanor +Eliana +Ellison +Elyse +Emmaleigh +Esmeralda +Graci +Hana +Imani +Jacee +Jaeda +Jamiah +Jamiyah +Jamya +Jasmyn +Jayme +Jazmyn +Joslyn +Julissa +Kalee +Kaliyah +Kamari +Karina +Karly +Karma +Karsyn +Kasey +Katrina +Kaylyn +Kenadie +Kiana +Kimber +Kinsey +Kristin +Kya +Lesly +Liberty +Linda +Litzy +Lorelei +Luna +Madelynn +Madilynn +Makaila +Makaylah +Makinley +Mareli +Marisol +Marlene +Martha +Meadow +Meagan +Natalee +Natasha +Perla +Pyper +Raylee +Rhianna +Rosa +Samiya +Sandra +Sariyah +Savanah +Saylor +Shayla +Shyann +Shyla +Simone +Skye +Stephany +Stormie +Stormy +Sydnie +Taliyah +Taniyah +Tegan +Tristyn +Virginia +Yajaira +Zion +Madison +Emma +Emily +Addison +Olivia +Chloe +Ava +Isabella +Abigail +Brooklyn +Alexis +Hannah +Elizabeth +Natalie +Kaylee +Taylor +Anna +Alyssa +Ella +Lillian +Sophia +Sarah +Kylie +Makayla +Aubrey +Gracie +Lily +Allison +Bailey +Ashley +Riley +Avery +Hailey +Trinity +Lauren +Samantha +Savannah +Brianna +Mackenzie +Victoria +Kimberly +Mckenzie +Kylee +Destiny +Morgan +Peyton +Zoey +Haley +Mia +Autumn +Audrey +Katelyn +Sophie +Kaitlyn +Nevaeh +Sydney +Caroline +Kennedy +Grace +Jasmine +Kayla +Rylee +Zoe +Ashlyn +Payton +Cheyenne +Lilly +Sadie +Layla +Leah +Mary +Katherine +Serenity +Aaliyah +Jessica +Makenzie +Allie +Julia +Katie +Evelyn +Eva +Jada +Jayden +Madelyn +Maggie +Mariah +Abby +Gabriella +Shelby +Alexa +Gabrielle +Brooklynn +Jenna +Amelia +Isabelle +Jayla +Kinley +London +Lydia +Reagan +Addyson +Alivia +Breanna +Hayden +Jennifer +Madeline +Molly +Paige +Piper +Ariana +Brooke +Leslie +Marley +Rachel +Arianna +Ashlynn +Haylee +Ruby +Alexandra +Brylee +Callie +Faith +Miley +Angel +Eden +Josie +Andrea +Bella +Claire +Jillian +Jocelyn +Jordan +Mallory +Naomi +Presley +Sara +Skylar +Valeria +Cadence +Danielle +Kadence +Kelsey +Macy +Maria +Megan +Rebecca +Reese +Alexandria +Lexi +Sofia +Amber +Briana +Jade +Jordyn +Katelynn +Kaydence +Kenzie +Khloe +Lucy +Madalyn +Melanie +Mya +Amy +Annabelle +Baylee +Dakota +Emery +Emilee +Heidi +Laila +Maddison +Madilyn +Ryleigh +Carly +Christina +Daisy +Diana +Erin +Gabriela +Kayleigh +Kaylie +Kendall +Kiley +Maci +Allyson +Amari +Angelina +Aniya +Camila +Genesis +Hadley +Kamryn +Kate +Laney +Lindsey +Maya +Melody +Tessa +Abbigail +Adrianna +Aniyah +Catherine +Heather +Hope +Isabel +Jamie +Lacey +Lila +Michelle +Nadia +Nicole +Sierra +Summer +Adalyn +Clara +Courtney +Hallie +Harley +Haven +Kira +Kyla +Kyra +Natalia +Raven +Rebekah +Scarlett +Stephanie +Vanessa +Adriana +Alexia +Aurora +Charlotte +Chelsea +Cheyanne +Ivy +Jadyn +Jazmin +Kathryn +Kelly +Kendra +Lainey +Alison +Amanda +Ana +Angela +Bethany +Caitlin +Caitlyn +Camille +Camryn +Carlee +Carmen +Ellie +Harper +Kara +Kyleigh +Laura +Lillie +Logan +Londyn +Madisyn +Paris +Zoie +Alicia +Aubree +Charlie +Heaven +Kaelyn +Kaitlynn +Kali +Kamya +Karen +Karlee +Kassidy +Kennedi +Lola +Macie +Madelynn +Madyson +Marissa +Marlee +Mckenna +Mckinley +Rylie +Skyler +Stella +Tiffany +Alayna +Aliyah +Alyson +Ariel +Brenda +Caylee +Cora +Cynthia +Dixie +Dulce +Jacey +Jamya +Janiyah +Joselyn +Kailey +Kiersten +Kimora +Lauryn +Lexie +Makenna +Violet +Vivian +Adyson +Alondra +Ashlee +Briley +Cameron +Cecilia +Charlee +Charley +Ciara +Cierra +Daniela +Erika +Gracyn +Izabella +Karla +Kaylin +Keira +Leila +Liliana +Lyla +Macey +Meredith +Miracle +Natalee +Norah +Savanna +Shayla +Alana +Arabella +Cassidy +Charity +Elaina +Elena +Georgia +Harmony +Hayley +Isis +Jacqueline +Jaden +Jaida +Jakayla +Janiya +Jayda +Kaliyah +Karsyn +Kayden +Kiera +Liberty +Malia +Margaret +Mattie +Michaela +Miranda +Miriam +Mollie +Natasha +Paisley +Perla +Rachael +Stormy +Valerie +Abagail +Abbey +Adalynn +Addisyn +Ainsley +Alissa +Ally +Anastasia +Bailee +Braelyn +Carley +Carson +Cherish +Constance +Crystal +Delaney +Destinee +Eleanor +Emerson +Helen +India +Ingrid +Jaidyn +Jaycee +Jessie +Katy +Kaylen +Kaylynn +Kiara +Kyndall +Kynleigh +Lana +Lesly +Madalynn +Maliyah +Marely +Mariana +Melissa +Micah +Nataly +Nia +Phoebe +Raegan +Sandra +Selena +Skyla +Tatum +Teresa +Willow +Zaria +Zion +Abbie +Adeline +Aimee +Asia +Audrina +Bianca +Brandi +Brinley +Carlie +Carolyn +Diamond +Elisabeth +Emely +Felicity +Gabriel +Giselle +Gracelyn +Hailee +Halle +Hanna +Jaelyn +Jamiya +Jaylin +Jaylynn +Jazmine +Joanna +Journey +Juliana +Kailyn +Kaleigh +Kalyn +Karlie +Kelsie +Kenya +Kierra +Kinsley +Kya +Laci +Lela +Linda +Lyric +Makaila +Makenzi +Makiya +Mckayla +Milagros +Monica +Nayeli +Nora +Patience +Patricia +Raylee +Rihanna +Shania +Shyanne +Sidney +Whitney +Abbygail +Abigayle +Addie +Alaina +Alexus +Alma +Amaya +Amiyah +Anaya +Angie +Anne +Annie +April +Arely +Ashton +Ashtyn +Aspen +Averi +Barbara +Bryleigh +Brynlee +Cassandra +Dayana +Delilah +Donna +Elisa +Eliza +Emmie +Erica +Esmeralda +Evie +Fatima +Gianna +Gloria +Gracelynn +Hadlee +Halie +Harlee +Heavenly +Ireland +Iris +Itzel +Izabelle +Jaelynn +Jaliyah +Jane +Jaqueline +Jasmyn +Jaylee +Jazmyn +Jolie +Jordin +Joslyn +Juana +Julie +Julissa +Kaci +Kamdyn +Karley +Karly +Kasey +Kaylyn +Keegan +Kenley +Kensley +Kristen +Kyli +Laken +Landry +Laynie +Lia +Madilynn +Mattison +Mylee +Nancy +Penelope +Priscilla +Rayna +Rayne +Reanna +River +Rowan +Ruthie +Sabrina +Sarai +Serena +Shiloh +Shyann +Stacey +Stacy +Tabitha +Taliyah +Tia +Toni +Tristen +Wendy +Adelyn +Akira +Aleah +Alejandra +Alice +Alina +Allisson +Amirah +Amiya +Amya +Anabelle +Annika +Ariyana +Ashleigh +Athena +Aubrie +Ayla +Bayleigh +Blakely +Brailey +Brandy +Bryanna +Bryley +Cailee +Cali +Calleigh +Candice +Cara +Carissa +Casey +Cassie +Chandler +Charis +Cloe +Dana +Danna +Desiree +Destini +Dianna +Ellison +Emelia +Estrella +Finley +Gracey +Greenlee +Gwendolyn +Haleigh +Hallee +Hattie +Holly +Jalynn +Janya +Jasmin +Jaylyn +Jazmyne +Jenny +Jewel +Journie +June +Kailee +Kamari +Kamiah +Karleigh +Karma +Kelsi +Keyla +Kiana +Krystal +Lakyn +Lilah +Lilian +Lillyan +Lucille +Magdalena +Makalyn +Maleah +Marina +Mariyah +Marleigh +Melany +Mercedes +Miah +Mikayla +Misty +Montana +Moriah +Myah +Nichole +Parker +Raelynn +Rayleigh +Reece +Regina +Ryan +Samya +Saniya +Saylor +Scarlet +Shaylee +Shelbi +Sienna +Tori +Valery +Whitley +Ximena +Yareli +Yasmine +Zariyah +Zoee +Emma +Madison +Addison +Isabella +Ava +Emily +Alexis +Abigail +Olivia +Chloe +Kaylee +Sophia +Ella +Elizabeth +Hannah +Lillian +Brooklyn +Alyssa +Lily +Avery +Anna +Aubrey +Natalie +Allison +Bella +Taylor +Zoey +Makayla +Autumn +Gracie +Hailey +Mia +Sarah +Madelyn +Nevaeh +Trinity +Kylie +Sydney +Lauren +Savannah +Serenity +Grace +Brianna +Riley +Destiny +Audrey +Bailey +Layla +Morgan +Sophie +Lilly +Mackenzie +Mary +Peyton +Ashley +Faith +Kaitlyn +Jasmine +Katie +Caroline +Leah +Claire +Payton +Samantha +Kylee +Lydia +Evelyn +Makenzie +Rylee +Brooklynn +Kennedy +Khloe +Mariah +Amelia +Katelyn +Sadie +Aaliyah +Jada +Presley +Jordyn +London +Piper +Reagan +Shelby +Victoria +Zoe +Izabella +Jessica +Katherine +Kayla +Allie +Haley +Harper +Isabelle +Jayden +Maggie +Addyson +Brylee +Kimberly +Kyleigh +Paisley +Ashlyn +Brooke +Gabriella +Gabrielle +Hayden +Lucy +Alivia +Arianna +Kinley +Maria +Mckenzie +Ryleigh +Andrea +Jade +Jordan +Julia +Ruby +Ashlynn +Madeline +Madilyn +Marley +Genesis +Josie +Mallory +Summer +Vanessa +Alexa +Amy +Angel +Aniyah +Cheyenne +Eva +Kaydence +Macy +Maddison +Marlee +Molly +Sofia +Bethany +Camila +Heaven +Laila +Mya +Baylee +Caylee +Harley +Haylee +Kathryn +Leslie +Paige +Callie +Hope +Kate +Kayleigh +Stella +Valeria +Amari +Breanna +Carly +Kelsey +Naomi +Rebecca +Abby +Alana +Alexandria +Cadence +Erica +Haven +Jayla +Jillian +Jocelyn +Miley +Paris +Reese +Sara +Stephanie +Asia +Aubree +Courtney +Hadley +Lexi +Lyla +Rachel +Tessa +Willow +Abbigail +Ana +Aniya +Annabelle +Ariana +Caitlyn +Danielle +Eden +Kendra +Kenzie +Maya +Sierra +Adalyn +Alexandra +Allyson +Amber +Angela +Blakely +Cassidy +Daisy +Dakota +Emery +Heidi +Jayda +Jenna +Jennifer +Kara +Katelynn +Kendall +Kennedi +Kinsley +Macie +Madisyn +Marissa +Melody +Mikayla +Scarlett +Shayla +Adriana +Amanda +Ariel +Jazmine +Karlee +Kyra +Madalyn +Mollie +Alaina +Alexia +Alice +Aurora +Cali +Catherine +Ellie +Isabel +Jacqueline +Jaden +Jazmin +Kadence +Kailey +Laura +Makenna +Megan +Skylar +Vivian +Addisyn +Alicia +Briana +Emilee +Georgia +Gracelyn +Ivy +Jamie +Janiya +Janiyah +Karla +Lacey +Lola +Londyn +Madelynn +Mckenna +Miranda +Nora +Raegan +Skyler +Violet +Adrianna +Ainsley +Alejandra +Briley +Camryn +Carlee +Christina +Diamond +Diana +Erika +Gabriela +Giselle +Harmony +Hattie +Jamiyah +Jazlyn +Jimena +Journey +Julianna +Kaelyn +Kaitlynn +Karen +Keira +Kelly +Laney +Maci +Madalynn +Miracle +Nicole +Alison +Amiya +Angie +Aubrie +Bianca +Carley +Carmen +Charity +Charlotte +Cora +Cynthia +Dulce +Eliana +Elisabeth +Erin +Fernanda +Haleigh +Hallie +Jadyn +Kaylie +Kaylin +Kiley +Kira +Lakyn +Leighton +Madeleine +Maliyah +Meredith +Rihanna +Rylie +Savanna +Stormy +Whitney +Zoie +Abbygail +Adeline +Amaya +Arabella +Aspen +Bailee +Bayleigh +Cameron +Delaney +Elena +Emerson +Evie +Jaida +Jaycee +Jessie +Joanna +Kamryn +Kamya +Karley +Kayden +Kristen +Lauryn +Lexie +Lila +Lilah +Liliana +Madyson +Melanie +Micah +Miriam +Moriah +Natalee +Natasha +Sasha +Teagan +Wendy +Yasmin +Abbie +Adalynn +Adison +Alayna +Alissa +Alondra +Amiyah +Amya +Anabelle +Anastasia +Braelyn +Bryleigh +Brynlee +Cara +Carleigh +Carlie +Clara +Dixie +Elaina +Eliza +Emely +Hadassah +Hailee +Helen +Jacey +Jamiya +Jaylee +Jaylin +Kali +Kayli +Kaylynn +Kenley +Kenya +Kiera +Kirsten +Lillie +Linda +Lindsey +Mara +Margaret +Mckinley +Michelle +Natalia +Preslee +Raven +Rebekah +Saniya +Shaylee +Skyla +Yareli +Zariah +Abigayle +Addie +Adrienne +Aliyah +Alyson +Angelica +Anniston +April +Ayla +Berkley +Braylee +Brenda +Bristol +Carsyn +Cecilia +Cherish +Danica +Daniela +Destinee +Gianna +Gwendolyn +India +Jaelyn +Jaiden +Jaliyah +Janie +Jasmin +Jaycie +Jewel +Joslyn +Kaidence +Kaniya +Karleigh +Kiara +Kierra +Kimber +Kyla +Lainey +Libby +Loren +Lynlee +Maddie +Madilynn +Makiah +Mariana +Melissa +Monica +Mylee +Nancy +Nathalie +Rhiannon +Rose +Sage +Shannon +Shyla +Skye +Tabitha +Tiffany +Tori +Valerie +Virginia +Abigale +Adyson +Aleah +Alli +Anaya +Annabella +Aria +Ashleigh +Bentley +Blair +Bria +Brilee +Brittany +Brookelyn +Brookelynn +Caitlin +Camille +Cayden +Charli +Cheyanne +Dani +Eleanor +Finley +Halle +Hanna +Isabell +Jacee +Jacie +Jaidyn +Jamya +Jordin +Judith +Juliet +Kailyn +Kallie +Kamille +Karli +Karlie +Karmen +Katy +Kaylyn +Kelsi +Kimora +Lea +Lena +Lizbeth +Lorelai +Lyric +Mariyah +Nadia +Phoebe +Samiya +Selena +Stevie +Tatiana +Veronica +Abbey +Adelyn +Alaya +Alyvia +Anahi +Analia +Angelina +Annie +Ashanti +Aubry +Averi +Brandi +Brenna +Brylie +Brynn +Caleigh +Camilla +Campbell +Cassandra +Charlee +Chelsea +Chelsey +Ciara +Cristal +Crystal +Dahlia +Elise +Emory +Essence +Farrah +Genevieve +Gracelynn +Guadalupe +Harlee +Harleigh +Harlow +Hayley +Haylie +Heather +Holly +Iris +Jaci +Jailyn +Jamia +Janet +Janice +Jaylynn +Jazmyn +Joselin +Josephine +Juliana +Julissa +Justice +Kaileigh +Kaleigh +Kalli +Karina +Karis +Kassandra +Keily +Keylee +Kiersten +Kinsey +Kloey +Kodi +Kyndall +Laken +Liberty +Lindsay +Luna +Macey +Makena +Maleah +Malia +Maliah +Marleigh +Marlie +Mattison +Maycee +Maylee +Mayra +Maziyah +Mckayla +Mercedes +Michaela +Montana +Myah +Nathaly +Noemi +Norah +Payten +Promise +Rachael +Raelynn +Raylee +Rayleigh +River +Rosa +Rosemary +Ruth +Sabrina +Shaniya +Sherlyn +Shiloh +Sienna +Skylee +Sylvia +Takayla +Talia +Taniya +Tatum +Tegan +Tiana +Tracy +Tyler +Whitley +Yaretzi +Zaria +Zariyah +Zaylee +Emma +Isabella +Addison +Chloe +Madison +Emily +Abigail +Olivia +Ava +Sophia +Hannah +Brooklyn +Zoey +Khloe +Alexis +Alyssa +Lily +Natalie +Ella +Anna +Aubrey +Lillian +Avery +Kaylee +Nevaeh +Elizabeth +Riley +Layla +Allison +Taylor +Bailey +Grace +Gracie +Mia +Kylie +Rylee +Peyton +Aaliyah +Lilly +Makayla +Payton +Trinity +Samantha +Mary +Savannah +Sophie +Zoe +Autumn +Kinley +Bella +Hailey +Brianna +Sydney +Amelia +Jordyn +Katelyn +Addyson +Katherine +Maci +Madelyn +Sarah +Brooklynn +Kayla +Kennedy +Evelyn +Shelby +Ashlyn +Audrey +Destiny +Faith +Gabriella +Harper +Morgan +Jasmine +Mackenzie +Makenzie +Serenity +Allie +Ashley +Adalyn +Melanie +Paisley +Presley +Claire +London +Mckenzie +Victoria +Caroline +Kaydence +Lucy +Sara +Alexa +Andrea +Kaitlyn +Abby +Eden +Eva +Hadley +Jada +Kylee +Lauren +Leah +Mariah +Molly +Ryleigh +Jade +Katie +Kimberly +Lexi +Mya +Lydia +Piper +Charlotte +Gabrielle +Jayden +Ariana +Izabella +Paige +Ashlynn +Cadence +Callie +Camila +Ellie +Jocelyn +Kyleigh +Madeline +Jillian +Lyla +Summer +Cheyenne +Laila +Sadie +Alexia +Alivia +Julia +Katelynn +Macy +Reagan +Arianna +Hayden +Isabelle +Jayla +Jennifer +Maddison +Maggie +Naomi +Ruby +Stella +Aniyah +Aubree +Haley +Isabel +Kinsley +Lillie +Marley +Scarlett +Annabelle +Brylee +Erin +Harley +Haven +Jessica +Lexie +Madilyn +Mallory +Alexandra +Angel +Briley +Clara +Jaycee +Jenna +Kadence +Macie +Madisyn +Maria +Reese +Skylar +Ariel +Baylee +Carley +Catherine +Genesis +Hallie +Jordan +Kendall +Lila +Mattie +Stephanie +Alexandria +Daniela +Emerson +Emilee +Heaven +Juliana +Kate +Kayleigh +Kelsey +Leslie +Megan +Rachel +Raegan +Sofia +Valeria +Violet +Willow +Adalynn +Ainsley +Alana +Amy +Angelina +Brooke +Carly +Daisy +Dixie +Harmony +Josie +Kathryn +Kendra +Londyn +Maya +Natalia +Nora +Paris +Rebecca +Adrianna +Ana +Bailee +Blakely +Braelyn +Breanna +Carmen +Dakota +Emery +Gabriela +Haylee +Hope +Kenzie +Kynlee +Madalyn +Miley +Nicole +Rylie +Addisyn +Adeline +Alison +Annabella +Bethany +Braylee +Danielle +Gianna +Jacqueline +Journey +Kaitlynn +Kamryn +Kiley +Kyra +Laney +Margaret +Penelope +Sarai +Allyson +Alondra +Amber +Asia +Aurora +Delilah +Eleanor +Eliza +Finley +Gracelynn +Jayda +Kaylynn +Kennedi +Kira +Lainey +Liliana +Lola +Madilynn +Makenna +Mikayla +Nyla +Phoebe +Sasha +Teagan +Abagail +Abbigail +Aleah +Angela +Arabella +Carlee +Charlie +Christina +Cora +Delaney +Ivy +Jaiden +Keeley +Maliyah +Marlee +Mckinley +Melissa +Melody +Parker +Patience +Preslee +Tenley +Vanessa +Zion +Addie +Aliyah +Anahi +Annie +Aubrie +Bentley +Brinley +Caylee +Ciara +Crystal +Diana +Fatima +Fernanda +Jakayla +Jaylee +Jazmin +Jazmine +Jessie +June +Kaliyah +Karlee +Kiara +Lana +Laura +Lauryn +Madyson +Malia +Miracle +Miranda +Phoenix +Rosa +Scarlet +Selena +Tatum +Tiffany +Abbie +Aleigha +Alejandra +Alicia +Alissa +Amanda +Amari +Amiya +Amiyah +Anabelle +Anastasia +Anniston +Caitlyn +Cali +Cassidy +Charity +Dulce +Elaina +Ember +Esmeralda +Esther +Georgia +Ireland +Jacey +Jasmin +Jaycie +Jaylynn +Jazlyn +Kaelyn +Kailyn +Kara +Karsyn +Kassidy +Kaylin +Kenley +Kimora +Kyla +Lindsey +Luna +Lyric +Makiyah +Marissa +Mckenna +Micah +Mollie +Nadia +Norah +Olive +Raelynn +Rebekah +Sariyah +Savanna +Sierra +Tessa +Tori +Whitley +Abbey +Abigale +Addilynn +Adilyn +Adrienne +Adyson +Alaina +Alayna +Alice +Alyson +Aniya +April +Athena +Brielle +Brylie +Camille +Camryn +Deborah +Emmalyn +Giselle +Gracelyn +Hailee +Haleigh +Holly +Jadyn +Jaliyah +Jamie +Jamya +Janiya +Juliet +Justice +Karen +Karissa +Karma +Karmen +Keely +Keira +Kelsie +Kimber +Kirsten +Kyndal +Laniyah +Lena +Libby +Lilah +Lucia +Macey +Madalynn +Madeleine +Madelynn +Makenzi +Millie +Miya +Raylee +Rayleigh +Ruth +Shaniyah +Tiana +Ximena +Zariah +Abree +Aiyana +Ali +America +Amya +Annalee +Ansley +Arionna +Aryanna +Avah +Averie +Bentlee +Berkley +Blair +Briana +Brisa +Brynlee +Brynn +Cailyn +Cameron +Camilla +Channing +Chasity +Cheyanne +Daniella +Desiree +Diamond +Elena +Eliana +Elise +Emersyn +Emmalynn +Emmy +Erica +Farrah +Genevieve +Guadalupe +Hadleigh +Halle +Heather +Janiyah +Jaylin +Jazlynn +Jimena +Joanna +Joselyn +Josephine +Kaia +Kailey +Kaitlin +Kallie +Kamari +Karina +Kiera +Kinsey +Kourtney +Kyndall +Kynleigh +Leila +Lizbeth +Logan +Lynley +Maycee +Mckenzi +Meredith +Miriam +Myla +Mylee +Natalee +Nataly +Natasha +Perla +Rachael +Rileigh +Rowan +Sariah +Shaelyn +Shayla +Shiloh +Sidney +Skyler +Sloane +Taraji +Tinley +Valentina +Veronica +Vivian +Willa +Zoie +Adriana +Alanna +Alaysia +Alisha +Ally +Amaya +Angie +Annabel +Annabell +Annalise +Aria +Ashanti +Aspen +Austyn +Bayleigh +Bonnie +Brenna +Bristol +Brookelyn +Caleigh +Carleigh +Carlie +Carolina +Carsyn +Cecilia +Charleigh +Charley +Charli +Cierra +Cindy +Cynthia +Dana +Danica +Darcy +Destany +Dylan +Elisabeth +Ellen +Emmarie +Fiona +Gracyn +Hadlee +Havyn +Hayley +Heidi +Jaci +Jaelyn +Jaelynn +Jaidyn +Jalyn +Jamiya +Jamiyah +Janelle +Jayce +Jaylah +Jocelynn +Joslyn +Julianna +Julie +Kailee +Kalyn +Karleigh +Karlie +Karmyn +Kathleen +Kayden +Kayle +Kaylen +Kayley +Kaylyn +Kelly +Kensley +Kinzley +Laken +Leilani +Lesly +Lexus +Liberty +Lilliana +Linda +Linley +Lucille +Makinlee +Mallori +Martha +Mikaela +Nina +Nova +Nylah +Paola +Preslie +Princess +Rilee +River +Rory +Rosalyn +Rose +Sage +Samara +Samari +Saniyah +Serena +Shelbie +Tabitha +Talia +Tamia +Tatiana +Tinsley +Valerie +Vera +Wendy +Emma +Isabella +Addison +Madison +Abigail +Ava +Sophia +Chloe +Emily +Olivia +Elizabeth +Ella +Aubrey +Brooklyn +Avery +Zoey +Natalie +Harper +Layla +Alexis +Lillian +Hannah +Kaylee +Anna +Lily +Nevaeh +Allison +Riley +Khloe +Trinity +Mia +Alyssa +Aaliyah +Kylee +Faith +Payton +Zoe +Amelia +Audrey +Sarah +Savannah +Bailey +Kylie +Sophie +Autumn +Evelyn +Lilly +Mckenzie +Piper +Taylor +Kennedy +Rylee +Serenity +Caroline +Grace +Hailey +Aubree +Annabelle +Charlotte +Gracie +Kinley +Lauren +Victoria +Ashley +Addyson +Claire +Ellie +Mackenzie +Mariah +Peyton +Bella +Brooklynn +Katie +Maci +Makayla +Lydia +Samantha +London +Allie +Ashlyn +Hadley +Leah +Sofia +Andrea +Brylee +Gabriella +Jordyn +Katherine +Londyn +Mary +Molly +Ryleigh +Kimberly +Paisley +Eva +Jasmine +Katelyn +Morgan +Skylar +Stella +Eden +Makenzie +Sydney +Maggie +Presley +Adalyn +Paige +Brianna +Destiny +Mya +Willow +Adalynn +Alexa +Camila +Jayden +Jenna +Kaitlyn +Kinsley +Scarlett +Ashlynn +Izabella +Madelyn +Sadie +Vanessa +Brooke +Charlee +Arianna +Callie +Cheyenne +Genesis +Hayden +Madeline +Rachel +Shelby +Isabelle +Josie +Lyla +Ruby +Breanna +Clara +Julia +Kennedi +Lila +Marlee +Miley +Naomi +Nora +Reagan +Abby +Angel +Baylee +Bethany +Jade +Jocelyn +Kate +Kaydence +Kayla +Kyleigh +Lexi +Lucy +Adrianna +Alana +Alayna +Alexandria +Alice +Ariana +Erin +Gabrielle +Haley +Jayla +Jordan +Kynlee +Dixie +Emerson +Jada +Kamryn +Macy +Melody +Rebecca +Teagan +Allyson +Aniyah +Emery +Kayleigh +Macie +Melanie +Nicole +Reese +Aubrie +Daisy +Haven +Heidi +Isabel +Jessica +Jillian +Kaylie +Lillie +Mikayla +Miranda +Summer +Violet +Amari +Amy +Briley +Carly +Cora +Haylee +Kadence +Katelynn +Kelsey +Lyric +Makenna +Mckenna +Stephanie +Abbigail +Aniya +Ariel +Blakely +Carmen +Elena +Elise +Georgia +Hallie +Harley +Hope +Leslie +Marley +Raylee +Tatum +Adriana +Alyson +Ana +Eliza +Harmony +Heaven +Jaliyah +Jayda +Laila +Madalynn +Madilyn +Madisyn +Mallory +Megan +Michelle +Natalia +Parker +Vivian +Zoie +Addisyn +Alivia +Braelyn +Braylee +Brynlee +Catherine +Charlie +Emilee +Jaylee +Jazmine +Jennifer +Kenley +Kiley +Kira +Lola +Mckinley +Paris +Rylie +Valeria +Whitley +Alison +Alondra +Annabella +Annie +Aria +Aspen +Cadence +Chelsea +Eleanor +Gracelyn +Gracelynn +Jaycee +Jaylynn +Joselyn +Journee +Journey +Kara +Keira +Kendall +Maddison +Margaret +Maya +Nyla +Raelynn +Tenley +Tinley +Addilyn +Adelyn +Alaina +Amber +Anniston +Arabella +Bristol +Caylee +Daniela +Elaina +Emmalyn +Gemma +Ivy +Jacqueline +Jadyn +Jessie +Karen +Karsyn +Kenlee +Kensley +Kyndall +Laney +Lynlee +Madalyn +Madelynn +Mila +Raelyn +Savanna +Skyler +Abbie +Alexia +Aliyah +April +Aurora +Briana +Brielle +Bryleigh +Brynn +Caitlyn +Camille +Cassidy +Charleigh +Dakota +Danielle +Diana +Finley +Genevieve +Hadlee +Hayley +Hazel +Jamie +Jurnee +Justice +Kailey +Kaitlynn +Kaleigh +Karlee +Kayden +Kenna +Kenzie +Kyla +Kyra +Lainey +Liberty +Macey +Madilynn +Mckayla +Nadia +Penelope +Preslee +Raven +Rebekah +Sara +Selena +Valerie +Ximena +Alexandra +Anastasia +Aubri +Averie +Bailee +Caydence +Charity +Crystal +Dayana +Elliott +Ember +Halle +Holly +Janiyah +Juliana +Julie +Kaidence +Kailee +Kailyn +Kathryn +Kaylin +Kiara +Kourtney +Laken +Landry +Lauryn +Laylah +Leilani +Lena +Lexie +Mariyah +Micah +Miracle +Norah +Phoebe +Quinn +Ruth +Scarlet +Skye +Tiana +Adeline +Ainsley +Ally +Amaya +Amiyah +Annabel +Annabell +Ansley +Athena +Averi +Aylin +Bianca +Brittany +Bryanna +Dallas +Dulce +Elayna +Erika +Farrah +Heather +Jaelyn +Jaiden +Janiya +Jazmin +Jemma +Juliet +Kali +Kaliyah +Kaylynn +Kyndal +Lakyn +Laura +Leigha +Leighton +Liliana +Makinley +Maria +Melissa +Miriam +Paityn +Patience +Pyper +Raegan +Sabrina +Samara +Sasha +Shayla +Sloan +Sydnee +Valentina +Abigayle +Aja +Alina +Alissa +Alli +Amara +Angela +Angelique +Ann +Ayanna +Ayla +Bentley +Blair +Cali +Cameron +Cecilia +Charli +Christina +Ciara +Collins +Destiney +Emmalee +Estrella +Gianna +Giselle +Hailee +Haleigh +Helen +India +Izzabella +Jaelynn +Jakayla +Jasmin +Jayci +Jaycie +Jazlyn +Jimena +Josslyn +Julianne +Kallie +Karis +Karma +Kaylyn +Keely +Kendra +Kendyl +Kenleigh +Kinlee +Kinsey +Kristen +Lacey +Lilah +Maddie +Meredith +Milagros +Millie +Myla +Nayeli +Olive +Rayleigh +Rayne +Rosalie +Selah +Sierra +Sloane +Stormy +Tegan +Tessa +Tori +Veronica +Vivienne +Abigale +Addie +Ali +Amanda +Amiya +Angelina +Angie +Anika +Ariyah +Ashanti +Ashton +August +Azaria +Baleigh +Bayleigh +Blaire +Brandi +Brenna +Bria +Brinley +Brisa +Camryn +Carlee +Carleigh +Carlie +Celeste +Channing +Cheyanne +Courtney +Danica +Daphne +Delaney +Delilah +Edith +Ellis +Emely +Emersyn +Emory +Esmeralda +Fallon +Gabriela +Gisselle +Harlee +Hattie +Hunter +Isabela +Isla +Jaci +Jaden +Jaidyn +Jamiya +Jamya +Jolie +Jordynn +Juniper +Kaelyn +Kaia +Kamari +Kameron +Karleigh +Katy +Keeley +Kelsie +Kenslee +Kenya +Keyanna +Kiera +Kimora +Kinleigh +Kyler +Leila +Leona +Lexis +Lilian +Lindsey +Lindy +Lucia +Madyson +Malayah +Maleah +Malia +Maliah +Maliyah +Maylee +Michaela +Natalee +Nathalie +Paislee +Phoenix +Remi +Rihanna +River +Rose +Ryder +Samiya +Sariyah +Sawyer +Shannon +Shiloh +Shyla +Sienna +Skyla +Spencer +Taliyah +Teresa +Tiffany +Whitney +Yamilet +Yaretzi +Zaniya +Zaria +Zariah +Zaylee +Zion +Emma +Sophia +Ava +Isabella +Olivia +Addison +Harper +Abigail +Zoey +Madison +Chloe +Emily +Brooklyn +Lillian +Ella +Lily +Aubrey +Elizabeth +Avery +Kaylee +Mia +Nevaeh +Natalie +Layla +Anna +Hannah +Alyssa +Paisley +Serenity +Amelia +Khloe +Audrey +Zoe +Allison +Aubree +Kennedy +Kylie +Autumn +Makayla +Sofia +Rylee +Hadley +Claire +Evelyn +Kinley +Sophie +Ellie +Peyton +Savannah +Ruby +Alexis +Bailey +Hailey +Lilly +London +Piper +Mckenzie +Morgan +Skylar +Aaliyah +Gabriella +Taylor +Gracie +Makenzie +Molly +Trinity +Victoria +Alexa +Faith +Stella +Riley +Samantha +Allie +Ashley +Callie +Charlotte +Grace +Maci +Mary +Caroline +Mackenzie +Madelyn +Ryleigh +Scarlett +Adalyn +Bella +Kinsley +Kylee +Leah +Sarah +Brianna +Eden +Payton +Gabrielle +Izabella +Kaydence +Londyn +Lucy +Sadie +Blakely +Destiny +Eva +Haley +Lydia +Sydney +Adalynn +Ashlynn +Genesis +Katherine +Presley +Willow +Annabelle +Kimberly +Lauren +Nora +Arianna +Jasmine +Reagan +Addyson +Aria +Jordyn +Mariah +Melanie +Mya +Reese +Shelby +Alaina +Jada +Jayla +Julia +Madeline +Alivia +Ariana +Baylee +Brylee +Kyleigh +Maria +Brooklynn +Emery +Jenna +Kaitlyn +Paige +Vanessa +Violet +Allyson +Braylee +Brielle +Lyla +Macie +Aliyah +Ashlyn +Aurora +Emerson +Haylee +Hope +Journey +Katelyn +Macy +Marley +Alexandria +Amy +Angel +Camila +Hayden +Jade +Jayden +Maya +Naomi +Summer +Brooke +Cadence +Eliana +Harmony +Jessica +Jocelyn +Kayleigh +Madilyn +Rachel +Alice +Brynlee +Isabel +Ivy +Jillian +Kayla +Laila +Lexi +Lyric +Paris +Sara +Andrea +Clara +Kadence +Kendall +Kenzie +Maddison +Maggie +Melody +Addisyn +Adrianna +Ainsley +Alana +Alexia +Amari +Charlee +Charlie +Cheyenne +Eleanor +Farrah +Hallie +Haven +Josie +Kate +Kathryn +Lillie +Madilynn +Mallory +Mckenna +Mckinley +Paislee +Rebecca +Alexandra +Aniyah +Collins +Daisy +Danielle +Emersyn +Gracelyn +Jaycee +Jennifer +Lainey +Parker +Phoebe +Raelyn +Skyler +Tatum +Adelyn +Ariel +Brittany +Bryleigh +Ember +Georgia +Hazel +Heaven +Karlee +Kennedi +Kyla +Laney +Madisyn +Michelle +Sierra +Vivian +Zoie +Abby +Alison +Annalise +Arabella +Cali +Camille +Cassidy +Catherine +Elena +Erin +Janiyah +Julie +Katie +Kynlee +Kyra +Landry +Laura +Lila +Liliana +Margaret +Miley +Monica +Adelynn +Athena +Brynn +Camryn +Carly +Carmen +Cora +Elaina +Elise +Emilee +Gracelynn +Heidi +Isabelle +Jordan +Julianna +Kali +Kallie +Kamryn +Karma +Karsyn +Kayden +Keira +Kelsey +Kiley +Mattie +Melissa +Miracle +Natalia +Penelope +Quinn +Teagan +Ana +Anastasia +Aubrie +Bailee +Bethany +Braelynn +Breanna +Bristol +Caylee +Chelsea +Cynthia +Elliana +Fiona +Hadleigh +Harley +Jacqueline +Jaelyn +Jaylee +Jazmine +Juliana +Kamari +Katelynn +Kensley +Kimber +Kinlee +Kira +Lacey +Makenna +Millie +Miranda +Patience +Preslee +Raegan +Rayleigh +Tenley +Zariyah +Adriana +Adyson +Alayna +Aleigha +Angie +Aspen +Bayleigh +Dakota +Eliza +Evie +Finley +Gemma +Halle +Hanna +Jacey +Josephine +Journee +Kaylin +Liberty +Micah +Mila +Myla +Nadia +Norah +Raelynn +Raven +River +Rylie +Selena +Shiloh +Stephanie +Stormy +Whitley +Addie +Addilynn +Alicia +Anniston +Aryanna +Averie +Bentley +Brinley +Carlie +Charleigh +Charli +Christina +Emory +Hattie +Jaci +Janiya +Jazmin +Kaelyn +Kaliyah +Karlie +Kenley +Kynleigh +Lauryn +Leila +Libby +Lilliana +Lola +Lynlee +Madalyn +Ruth +Selah +Sloane +Talia +Valerie +Zaniyah +Abagail +Abbie +Abbigail +Addilyn +Adelaide +Adilyn +Alina +Alondra +Amiyah +Angelina +Annabella +April +Asia +Aubrielle +Bentlee +Brenda +Briana +Caleigh +Cecilia +Channing +Daniela +Diamond +Emerie +Emmalee +Genevieve +Gianna +Gwendolyn +Harlie +Henley +Iris +Jacie +Jaelynn +Jemma +Jessie +Joslyn +Justice +Kaleigh +Kara +Kassidy +Kaylie +Kendra +Lilah +Lindsey +Luna +Marilyn +Megan +Meredith +Nyla +Peighton +Rosalie +Rose +Savanna +Sunny +Sylvia +Tessa +Tinley +Winter +Abbygail +Ada +Adeline +Adleigh +Adley +Alessandra +Ally +Amaya +Amora +Annaleigh +Annie +Armani +Avah +Briley +Caitlyn +Carlee +Carleigh +Carsyn +Charity +Cherish +Delaney +Delilah +Diana +Dixie +Dylan +Emelia +Emmalyn +Evan +Holly +Imani +Jaiden +Jaliyah +Jane +Jaylah +Jazlynn +Kaitlynn +Karis +Karmen +Karoline +Kenzlee +Kenzley +Kristina +Kyndall +Lakyn +Laniya +Lena +Leslie +Lexie +Lilian +Lillee +Lilliann +Lindley +Lisa +Litzy +Logan +Madelynn +Malaysia +Marlee +Miriam +Nataly +Nayeli +Nicole +Noelle +Nova +Olive +Phoenix +Pyper +Sawyer +Scarlet +Shaylee +Sydnee +Taliyah +Tegan +Tinsley +Valeria +Wendy +Yaretzi +Yasmin +Abbagail +Adaleigh +Adele +Aleah +Alejandra +Alissa +Amber +Angela +Ariyah +Arya +Ashleigh +Aubriana +Ayla +Berkley +Bonnie +Bree +Brenna +Bridgette +Brinkley +Cambrie +Carissa +Carolyn +Carson +Cate +Celeste +Chevelle +Coraline +Courtney +Damiyah +Dayana +Dulce +Elisabeth +Elisha +Erica +Eryn +Esmeralda +Esther +Evangeline +Evelynn +Fatima +Gabriela +Giuliana +Gloria +Harlee +Harleigh +Harmoni +Hayleigh +Helen +Holley +Jacy +Jaida +Jakayla +Jamiya +Janelle +Jasmin +Jaycie +Jayda +Jaylynn +Jazlyn +Joanna +Joslynn +Julianne +Juliet +June +Kacie +Kaia +Kaidence +Kailyn +Karina +Karleigh +Kaylen +Kelly +Kenadee +Kenlee +Kenna +Kierra +Kinsey +Laken +Laynee +Leigha +Londynn +Lucille +Macey +Madalynn +Madyson +Maleah +Marleigh +Miah +Mikayla +Mollie +Moriah +Natalee +Paityn +Presleigh +Raeleigh +Randi +Rayne +Rebeca +Rhianna +Rosa +Samiya +Sapphire +Sarai +Temperance +Tia +Tiana +Unique +Vada +Whitney +Willa +Zaniya +Zariah +Zaylee +Emma +Olivia +Ava +Isabella +Sophia +Abigail +Addison +Brooklyn +Madison +Avery +Emily +Harper +Ella +Chloe +Aubrey +Elizabeth +Zoey +Lillian +Aubree +Amelia +Hannah +Paisley +Kaylee +Mia +Lily +Allison +Natalie +Anna +Serenity +Evelyn +Sadie +Riley +Nevaeh +Autumn +Alexis +Peyton +Taylor +Layla +Savannah +Bailey +Annabelle +Mary +Aaliyah +Kylie +Rylee +Trinity +Kennedy +London +Skylar +Victoria +Aria +Ellie +Caroline +Piper +Sarah +Arianna +Audrey +Genesis +Khloe +Lauren +Scarlett +Zoe +Allie +Charlotte +Grace +Hailey +Kylee +Mackenzie +Makayla +Adalynn +Sofia +Claire +Kinley +Lilly +Gracie +Payton +Stella +Kyleigh +Londyn +Lydia +Presley +Ruby +Ariana +Brooklynn +Mckenzie +Sophie +Brianna +Gabriella +Hadley +Madelyn +Maggie +Molly +Willow +Eden +Katherine +Adalyn +Blakely +Reagan +Alyssa +Ryleigh +Samantha +Bella +Faith +Kaydence +Lucy +Makenzie +Nora +Brynlee +Camila +Emerson +Emery +Kenzie +Sydney +Destiny +Jade +Jordyn +Maci +Rachel +Violet +Alice +Cheyenne +Hayden +Katelyn +Leah +Vivian +Alexa +Alivia +Andrea +Charlie +Naomi +Penelope +Jayden +Mila +Morgan +Parker +Ashley +Baylee +Jordan +Mya +Addyson +Ashlynn +Brylee +Clara +Ivy +Kayleigh +Kinsley +Shelby +Delilah +Gabrielle +Jocelyn +Josie +Kate +Lyric +Marley +Mckinley +Paris +Addisyn +Eva +Lyla +Maria +Mariah +Abby +Adelyn +Alexia +Ashlyn +Finley +Georgia +Harley +Harmony +Jasmine +Journey +Kaitlyn +Laila +Lexi +Melanie +Nicole +Paislee +Reese +Stephanie +Summer +Angel +Ariel +Cora +Gracelynn +Haley +Jessica +Lola +Adrianna +Alexandria +Daisy +Eleanor +Eliza +Haven +Hazel +Hope +Jayla +Journee +Kynlee +Madeline +Marlee +Valerie +Adriana +Alaina +Alana +Alison +Amy +Bristol +Brooke +Isabel +Jenna +Julia +Kendra +Macie +Macy +Megan +Miley +Norah +Teagan +Tessa +Yaretzi +Abbigail +Alexandra +Allyson +Amari +Amber +Amiyah +Aniyah +Arabella +Aurora +Cali +Charlee +Hallie +Heaven +Isabelle +Izabella +Katie +Kelsey +Kensley +Lila +Margaret +Maya +Raegan +Raelynn +Rebecca +Sara +Vanessa +Adelaide +Athena +Carly +Dixie +Everleigh +Kassidy +Kathryn +Liliana +Maddison +Malaysia +Mallory +Raven +Skyler +Valeria +Addilyn +Alayna +Ally +Angela +Annie +Brielle +Bryleigh +Cadence +Catherine +Charley +Chelsea +Dakota +Danielle +Erin +Esther +Gracelyn +Hadleigh +Isla +Jaycee +June +Justice +Kimberly +Kyra +Leslie +Makenna +Melody +Phoebe +Phoenix +Rylie +Saylor +Tinsley +Ximena +Adelynn +Alicia +Annabella +Aspen +Aubrie +Bethany +Callie +Cassidy +Emmalyn +Emory +Haylee +Jamie +Jaylee +Jazmine +Jennifer +Jillian +Kaidence +Kali +Kaliyah +Kamryn +Kayla +Kennedi +Laken +Landry +Leighton +Madelynn +Madilynn +Madisyn +Mckenna +Natalee +River +Rosalie +Adeline +Aliyah +Amanda +Ayla +Brinley +Camille +Caylee +Chandler +Cherish +Crystal +Elaina +Emersyn +Gemma +Harmoni +Jada +Jaliyah +Jaylah +Joslyn +Juliana +Kara +Karlee +Karsyn +Katelynn +Keira +Kiley +Lillie +Miracle +Natalia +Paige +Rosemary +Sawyer +Tenley +Winter +Adyson +Ainsley +Alayah +Aleah +Alondra +Amaya +Anastasia +Angelina +Arya +Carmen +Carson +Elena +Elise +Ember +Genevieve +Giselle +Gracyn +Guadalupe +Harlee +Jaida +Janiya +Jayda +Juliet +Kadence +Kaleigh +Karly +Karter +Kenlee +Lakyn +Laura +Lauryn +Lilah +Lynlee +Madalyn +Mattie +Melissa +Miranda +Myla +Mylee +Paizley +Quinn +Raelyn +Raylee +Ruth +Shiloh +Sierra +Sloane +Tatum +Whitley +Addelyn +Alyson +Aubri +Braelynn +Breanna +Bryanna +Camryn +Cara +Carlee +Carleigh +Charleigh +Cynthia +Daniela +Delaney +Ellison +Emilia +Erica +Farrah +Fiona +Gabriela +Hadlee +Harleigh +Hattie +Heather +Helen +Jacqueline +Jazlynn +Jolie +Julie +Kailey +Kaitlynn +Karmen +Keely +Kendall +Kinslee +Kira +Kori +Lainey +Laney +Lucia +Madilyn +Marissa +Millie +Nayeli +Preslee +Rebekah +Rileigh +Savanna +Scarlet +Selena +Sidney +Taraji +Valentina +Vivienne +Willa +Ada +Adilynn +Adley +Alanna +Alina +Alyvia +Amiya +Ana +Annalee +Avah +Bailee +Bentley +Braelyn +Braylee +Caitlyn +Carley +Carlie +Carter +Caydence +Channing +Christina +Claudia +Courtney +Diana +Elliott +Elsie +Emerald +Emilee +Emmarie +Emmie +Eryn +Evalyn +Gia +Gianna +Harlow +Iris +Jaelyn +Jamiyah +Jaqueline +Jaylin +Jaylynn +Joselyn +Kailee +Kamari +Karen +Kaylie +Kiara +Kinlee +Kyla +Kyndal +Lacey +Lacie +Leila +Lexie +Liberty +Linley +Lorelai +Luna +Lylah +Maddie +Madeleine +Madyson +Marleigh +Mckayla +Mercy +Michelle +Miriam +Nova +Paisleigh +Patience +Rayleigh +Rayna +Remi +Robyn +Sabrina +Skye +Temperance +Treasure +Vera +Whitney +Zaniyah +Zariyah +Abigale +Addalyn +Addie +Addilynn +Adelina +Adleigh +Alexus +Alia +Amira +Anabelle +Annabell +Ariah +Azaria +Bayleigh +Bianca +Brayleigh +Braylynn +Bree +Brenda +Brynn +Cambree +Carolina +Chyna +Dahlia +Dani +Danna +Daphne +Destini +Elisabeth +Emerie +Emilie +Emmaleigh +Evangeline +Evelynn +Fallon +Fernanda +Halle +Heidi +Imani +India +Jacelyn +Jaden +Jaelynn +Jaleah +Janiyah +Jayleigh +Joanna +Josephine +Joy +Juliette +Kaia +Kaiya +Kaleah +Kaley +Kallie +Kamila +Kamiya +Karina +Karis +Karleigh +Karley +Karlie +Kayden +Keeley +Kenley +Kenna +Kenya +Kiersten +Kimber +Kolbie +Kora +Laci +Lacy +Laiken +Lakelyn +Lana +Lanie +Lennon +Leyla +Lilian +Lilith +Lilliana +Lindsey +Lorelei +Macey +Mae +Maisie +Malia +Marlie +Micah +Michaela +Mikayla +Miya +Miyah +Monica +Nadia +Nataly +Nia +Nina +Noelle +Oakley +Olive +Paityn +Pearl +Raylynn +Remington +Rose +Rowan +Rylin +Samiyah +Sarai +Selah +Stormie +Tamiya +Tori +Whitlee +Yamilet +Zakiyah +Zuri +Emma +Olivia +Ava +Harper +Isabella +Abigail +Sophia +Madison +Avery +Emily +Zoey +Elizabeth +Lillian +Brooklyn +Chloe +Ella +Mia +Aubrey +Addison +Amelia +Paisley +Sadie +Lily +Kennedy +Serenity +Anna +Nevaeh +Charlotte +Layla +Hadley +Lilly +Riley +Caroline +Piper +Kaylee +Sofia +Allison +Aubree +Hannah +Natalie +Faith +Evelyn +Autumn +Savannah +Audrey +Ariana +Alexis +Annabelle +Skylar +Grace +Khloe +Mackenzie +Madelyn +Scarlett +Zoe +Ellie +Eden +Sarah +Aria +Arianna +Gabriella +Katherine +Stella +Emery +Eva +London +Aaliyah +Kinsley +Nora +Penelope +Adalynn +Bailey +Bella +Eleanor +Jordyn +Trinity +Victoria +Claire +Haven +Mary +Peyton +Presley +Ryleigh +Samantha +Taylor +Willow +Allie +Clara +Gracie +Molly +Alexa +Jasmine +Kylie +Sophie +Cora +Lucy +Destiny +Kimberly +Ruby +Ashley +Kinley +Londyn +Makenzie +Alice +Lyla +Marley +Payton +Josie +Leah +Naomi +Adalyn +Alivia +Blakely +Emerson +Isabelle +Kayleigh +Lydia +Norah +Alayna +Callie +Jade +Lauren +Lyric +Mckenzie +Reagan +Shelby +Alyssa +Angel +Genesis +Maggie +Makayla +Morgan +Violet +Brooklynn +Camila +Maci +Madeline +Rylee +Ainsley +Ariel +Finley +Kylee +Parker +Cali +Lexi +Mila +Paislee +Reese +Sara +Adelyn +Aurora +Delilah +Elena +Georgia +Gracelyn +Hailey +Harley +Hazel +Jocelyn +Katelyn +Macie +Ashlynn +Baylee +Everly +Gabrielle +Gracelynn +Harmony +Ivy +Katie +Kyleigh +Mariah +Vivian +Ximena +Addilyn +Addyson +Alexandria +Braylee +Brianna +Charlie +Hope +Kamryn +Kenzie +River +Skyler +Summer +Abby +Aniyah +Bristol +Brylee +Cheyenne +Elise +Jessica +Journey +Laila +Lila +Luna +Mckinley +Melanie +Melody +Paris +Rebecca +Tessa +Vanessa +Adelynn +Emersyn +Haley +Isabel +Julia +June +Kaitlyn +Karsyn +Kate +Kelsey +Raegan +Alana +Alexandra +Amy +Brielle +Brynlee +Charlee +Charleigh +Danielle +Eliana +Hadlee +Hallie +Heaven +Jayden +Jayla +Journee +Kendall +Macy +Madilyn +Mya +Rachel +Remington +Alexia +Amari +Aspen +Bailee +Christina +Daisy +Eliza +Ember +Hayden +Jenna +Jennifer +Kaydence +Laney +Madelynn +Natalia +Nova +Raelynn +Rebekah +Rose +Saylor +Sierra +Sloane +Sydney +Ada +Andrea +Anniston +Arabella +Ashlyn +Athena +Aubrie +Bryleigh +Catherine +Daleyza +Elaina +Emilia +Evangeline +Hadleigh +Isla +Jaycee +Kali +Leilani +Lorelei +Maddison +Madisyn +Mallory +Margaret +Miracle +Myla +Paige +Raelyn +Adeline +Aleah +Aliyah +Allyson +Ana +April +Arya +Caitlyn +Elliott +Emmalyn +Giselle +Hattie +Izabella +Jada +Kaliyah +Kallie +Karlee +Kayla +Kensley +Kimber +Kira +Maria +Maya +Mckenna +Michelle +Millie +Tatum +Valeria +Anastasia +Annie +Aryanna +Brinley +Camille +Carly +Carmen +Emmalynn +Everlee +Gabriela +Heidi +Henley +Joy +Kathryn +Kynlee +Landry +Logan +Marleigh +Phoenix +Preslee +Quinn +Rylie +Sawyer +Abbigail +Addisyn +Alaina +Alicia +Amber +Amiyah +Ansley +Ayla +Braelyn +Brooke +Carlee +Evelynn +Farrah +Gemma +Janiyah +Jordan +Kadence +Leila +Lilah +Lola +Lylah +Nadia +Natalee +Oakley +Pyper +Savanna +Scarlet +Adalee +Adriana +Angelina +Annabella +Averie +Bethany +Briley +Cadence +Carolyn +Cassidy +Cataleya +Cecilia +Chelsea +Dakota +Diana +Dixie +Emory +Esther +Hanna +Haylee +Jazmine +Julianna +Julie +Justice +Kenleigh +Kenley +Kennedi +Kinleigh +Lauryn +Leslie +Liberty +Liliana +Lindsey +Madalyn +Madilynn +Megan +Meredith +Micah +Nicole +Phoebe +Raven +Rayleigh +Shiloh +Stephanie +Teagan +Adelaide +Adrianna +Alison +Ally +Angela +Angelique +Armani +Averi +Blair +Celeste +Charley +Charli +Dallas +Daniela +Elisabeth +Emilee +Emmalee +Everleigh +Evie +Genevieve +Gwendolyn +Harlow +Hayley +Jaliyah +Jimena +Jolene +Juliana +Juliet +Juliette +Kailee +Kaitlynn +Karleigh +Karma +Karter +Katelynn +Kendra +Kenlee +Kinlee +Laiken +Lainey +Lennon +Lilliana +Lillie +Makenna +Marilyn +Marlee +Miranda +Noelle +Rosalie +Ryan +Sage +Selena +Sutton +Sylvia +Talia +Taraji +Whitney +Zaniyah +Abbygail +Addalynn +Alondra +Alora +Amanda +Amaya +Annabeth +Arielle +Aubri +Bentley +Bianca +Braelynn +Brynn +Cambree +Camilla +Camryn +Carla +Carleigh +Caylee +Cecelia +Ciara +Danica +Elliot +Ellison +Elsa +Emerie +Emmaleigh +Evalynn +Felicity +Gloria +Hadassah +India +Jaleah +Jane +Jayda +Jaylee +Jemma +Jocelynn +Josephine +Joslyn +Kamille +Kaylie +Kenya +Kinslee +Kora +Kyla +Kynslee +Kynzlee +Kyra +Lacey +Laken +Lakyn +Laura +Leighton +Lena +Lexie +Libby +Linley +Londynn +Lucia +Lynlee +Magnolia +Maisie +Malaya +Malaysia +Malia +Marlie +Mattie +Mercy +Miriam +Nyla +Paityn +Paizlee +Raeleigh +Remi +Tinley +Tynlee +Virginia +Viviana +Vivienne +Whitley +Willa +Zoie +Addelyn +Adleigh +Adley +Alejandra +Alisson +Alli +Amani +Amina +Andi +Aniston +Annabell +Annalee +Ariyah +Audree +Austyn +Averee +Aylin +Bayleigh +Blakeleigh +Breasia +Briana +Bridget +Briella +Brittany +Carolina +Chandler +Charity +Christine +Chyna +Collins +Constance +Courtney +Cynthia +Darcy +Denise +Dulce +Elisa +Emilie +Esmeralda +Estella +Etta +Evalyn +Fatima +Guadalupe +Hunter +Iris +Isabell +Itzel +Iyanna +Jacey +Jacie +Jaida +Jaidyn +Jakayla +Jasmin +Jaylah +Jaylynn +Jazlyn +Jazmin +Jersey +Joanna +Juniper +Jurnee +Kaidence +Kambree +Kara +Karla +Karmen +Kayden +Kaylin +Kaylyn +Keagan +Keira +Kenna +Kenslee +Kingsley +Kyler +Kynleigh +Lacie +Lana +Landree +Landri +Lilith +Maddie +Mariana +Marissa +Mariyah +Marjorie +Mollie +Monica +Nina +Raylee +Rosemary +Saige +Sariyah +Serena +Skyla +Spencer +Thea +Tori +Treasure +Valentina +Valerie +Vera +Wren +Zaria +James +William +John +Robert +Willie +Henry +George +Charles +Frank +Jack +Joe +Thomas +Albert +Charlie +Clarence +Walter +Fred +Roy +Lee +Edward +Joseph +Arthur +Ernest +Jessie +Earl +Herbert +Elmer +Carl +Cecil +Eddie +Eugene +Floyd +David +Harry +Raymond +Richard +Sam +Jesse +Samuel +Louis +Luther +Clyde +Herman +Howard +Lawrence +Paul +Theodore +Andrew +Ralph +Ray +Ben +Homer +Lewis +Leroy +Otis +Will +Claude +Elbert +Harold +Johnnie +Leonard +Lester +Oscar +Chester +Curtis +Leon +Melvin +Troy +Booker +Calvin +Johnie +Bill +Charley +Ed +Guy +Jim +Lloyd +Marvin +Nathaniel +Roosevelt +Alfred +Allen +Alvin +Clinton +Edgar +Hubert +Ira +Tom +Benjamin +Daniel +Everett +Kenneth +Leo +Oliver +Tommie +Bennie +Clifton +Earnest +Jimmie +Lonnie +Loyd +Otto +Riley +Virgil +Willis +Anthony +Archie +Arnold +Claud +Clifford +Dave +Don +Donald +Doyle +Harvey +Hugh +Kermit +Norman +Vernon +Bernard +Gilbert +Grady +Jewell +Mack +Ollie +Percy +Rufus +Sherman +Aaron +Adam +Bruce +Dan +Delbert +Dewey +Elmo +Garland +Glen +Glenn +Horace +Jerry +Johnny +Marion +Monroe +Morris +Odis +Russell +Ted +Wesley +Wilburn +Alex +Alonzo +Alva +Austin +Buck +Buford +Buster +Clark +Dock +Edwin +Elijah +Freddie +Gordon +Grover +Isaac +Jay +Jeff +Leslie +Levi +Lindsey +Manuel +Marcus +Martin +Maurice +Milton +Nathan +Ocie +Quincy +Roger +Ross +Stanley +Thurman +Tommy +Wallace +James +William +John +George +Robert +Willie +Henry +Frank +Charles +Thomas +Joseph +Earl +Jack +Fred +Roy +Ernest +Albert +Carl +Joe +Cecil +Clarence +Sam +Walter +Arthur +Lee +Richard +Jessie +Edward +Paul +Raymond +Floyd +Charlie +Clyde +Chester +Otis +Ray +Ben +Elmer +Harry +Herman +Jesse +Ralph +Eugene +Louis +Marvin +Eddie +Edgar +David +Harold +Herbert +Andrew +Homer +Lewis +Curtis +Jim +Johnnie +Lawrence +Leroy +Luther +Marion +Samuel +Claude +Oscar +Tom +Charley +Hubert +Lester +Lloyd +Theodore +Virgil +Cleo +Leon +Dan +Guy +Troy +Vernon +Will +Alfred +Bill +Everett +Garland +Harvey +Horace +Jimmie +Johnie +Julius +Leonard +Orville +Perry +Benjamin +Clifford +Dave +Howard +Leo +Lonnie +Loyd +Roosevelt +Russell +Alvin +Daniel +Earnest +Edwin +Elijah +Hugh +Ira +Nathaniel +Sidney +Wilbur +Aubrey +Bennie +Clifton +Francis +Nathan +Peter +Rufus +Willis +Bruce +Cleveland +Coy +Dewey +Oliver +Sylvester +Victor +Wilburn +Bert +Doyle +Ellis +Freddie +Grady +Hershel +Isaac +Jerry +Moses +Noah +Norman +Odis +Thurman +Aaron +Allen +Arnold +Booker +Claud +Columbus +Ed +Elbert +Elmo +Felix +Gilbert +Jasper +Jeff +Jess +Johnny +Kermit +Leslie +Levi +Louie +Millard +Milton +Morris +Odell +Ollie +Pete +Randolph +Ruben +Silas +Stanley +Ted +Wallace +Wilson +James +William +John +Robert +Willie +George +Charles +Henry +Thomas +Joe +Fred +Roy +Woodrow +Ralph +Joseph +Frank +Albert +Arthur +Walter +Paul +Clarence +Raymond +Carl +Earl +Jack +David +Herman +Edward +Ernest +Floyd +Howard +Jesse +Cecil +Charlie +Samuel +Richard +Elmer +Lee +Herbert +Ray +Jessie +Homer +Leonard +Clyde +Harry +Luther +Vernon +Virgil +Andrew +Harold +Lawrence +Lester +Sam +Eddie +Eugene +Edgar +Lewis +Charley +Harvey +Leroy +Marvin +Louis +Claude +Clifford +Lloyd +Oscar +Otis +Clifton +Johnnie +Roosevelt +Alfred +Johnie +Leo +Norman +Theodore +Troy +Curtis +Earnest +Jim +Chester +Edwin +Guy +Ben +Doyle +Horace +Melvin +Leon +Alvin +Bill +Booker +Hugh +Lonnie +Milton +Archie +Daniel +Everett +Jewell +Kenneth +Elbert +Grover +Hubert +Leslie +Mack +Sherman +Ted +Tom +Bert +Claud +Cleo +Dan +Johnny +Wayne +Allen +Benjamin +Bennie +Garland +Glenn +Marion +Nathan +Orville +Tommie +Bruce +Calvin +Coy +Ed +Isaac +Jimmie +Loyd +Morris +Sylvester +Austin +Ellis +Gordon +Ira +Jerry +Nathaniel +Oliver +Russell +Sidney +Warren +Will +Wilson +Aubrey +Dave +Dennis +Grady +Alonzo +Forrest +Gus +Jodie +Marshall +Moses +Otto +Owen +Perry +Stanley +Thurman +Wesley +Wilburn +Willis +Amos +Buster +Dee +Ezra +Felix +Francis +Franklin +Freeman +Hershel +Jeff +Jess +Jewel +Kermit +Louie +Roger +Rufus +Van +Virgle +Alex +Cleveland +Dale +Elijah +Gilbert +Irvin +Matthew +Millard +Nelson +Odell +Odis +Ollie +Rex +Sammie +Wallace +Anthony +Arnold +Bob +Buford +Clay +Clinton +Donald +Elmo +Ervin +Ewell +Freddie +Gerald +Jake +Jasper +Julius +Lindsey +Lowell +Mark +Newton +Obie +Preston +Roscoe +Ruben +Theo +Victor +Willard +Alton +Bernard +Bradley +Dallas +Dalton +Delbert +Don +Durward +Emmett +Harmon +Hermon +Ivan +Jay +Jefferson +Lyle +Malcolm +Maurice +Max +Merle +Noble +Pete +Riley +Shelby +Tim +Timothy +Tommy +Truman +Washington +Winfred +Winston +James +William +John +Robert +George +Willie +Charles +Thomas +Roy +Henry +Fred +Carl +Joe +Clarence +Jack +Woodrow +Albert +Walter +Earl +Edward +Paul +Raymond +Joseph +Frank +Charlie +Harold +Lee +Ernest +Floyd +Herman +Ralph +Eugene +Howard +Elmer +Arthur +Richard +Samuel +Homer +Jessie +Clyde +Herbert +Harry +Eddie +Cecil +Lawrence +Louis +Oscar +Ray +Lester +Marvin +Chester +Leonard +David +Kenneth +Lewis +Sam +Andrew +Jesse +Alfred +Virgil +Clifton +Johnnie +Alvin +Curtis +Luther +Claude +Melvin +Hugh +Leon +Leroy +Theodore +Vernon +Jim +Clifford +Harvey +Leo +Edgar +Otis +Donald +Earnest +Elbert +Lloyd +Allen +Bill +Hubert +Ira +Loyd +Charley +Grady +Milton +Benjamin +Guy +Horace +Jimmie +Rufus +Jerry +Leslie +Monroe +Norman +Daniel +Everett +Isaac +Jess +Johnie +Orville +Troy +Ben +Doyle +Edwin +Glen +Glenn +Gordon +Lonnie +Tom +Victor +Bert +Ellis +Nathaniel +Olen +Roosevelt +Russell +Wesley +Willis +Wilson +Archie +Bennie +Bernard +Julius +Owen +Buster +Cleo +Ed +Fay +Forrest +Frederick +Garland +Gerald +Calvin +Coy +Dave +Don +Mack +Marion +Martin +Morris +Pete +Sherman +Ted +Wilburn +Willard +Aubrey +Claud +Dale +Dan +Delbert +Dennis +Jeff +Odis +Preston +Reuben +Sidney +Sterling +Amos +Booker +Bruce +Louie +Maurice +Noel +Phillip +Vincent +Warren +Wiley +Alex +Clay +Clinton +Elton +Hershel +Lowell +Millard +Moses +Opal +Sylvester +Van +Wallace +Arnold +Austin +Columbus +Dewey +Freddie +Grover +Jewel +Marshall +Max +Nathan +Neal +Noble +Odell +Oliver +Ollie +Philip +Thurman +Tommy +Buel +Dwight +Emmett +Ezra +Francis +Franklin +Freeman +Harris +Haskell +Hollis +Ivan +Jasper +Jay +Joel +Marlin +Mathew +Matthew +Percy +Perry +Sammie +Tommie +Wayne +Wilbur +Will +Adam +Alva +Anthony +Arvel +Barney +Boyce +Boyd +Bud +Burl +Carroll +Cleveland +Connie +Douglas +Elijah +Elvin +Elvis +Ervin +Harley +Herschel +Hiram +Houston +Jewell +Kermit +Levi +Nolan +Ocie +Otho +Otto +Roscoe +Silas +Simon +Alford +Alton +Alvie +Artie +Arvil +Audie +Billie +Buford +Burley +Coleman +Dallas +Dewitt +Donnie +Forest +Gus +Harrison +Hosie +Jacob +Jimmy +Julian +Manuel +Mark +Merle +Mose +Odie +Omer +Pat +Prince +Rex +Roger +Roland +Sanford +Scott +Steve +Theo +Tony +Vern +Vernie +Virgle +James +John +William +Robert +Charles +George +Willie +Thomas +Henry +Joe +Earl +Roy +Jack +Frank +Paul +Walter +Joseph +Fred +Clarence +Edward +Albert +Carl +Raymond +Arthur +Harold +Ralph +Clyde +Eugene +Floyd +Herman +Harry +Louis +Cecil +Jesse +Ray +Herbert +Jessie +Andrew +David +Ernest +Richard +Woodrow +Elmer +Lawrence +Leroy +Lester +Samuel +Lee +Chester +Homer +Eddie +Claude +Howard +Alvin +Johnnie +Marvin +Luther +Charlie +Leonard +Sam +Vernon +Alfred +Otis +Leon +Lewis +Hubert +Melvin +Curtis +Doyle +Virgil +Ben +Tom +Benjamin +Edgar +Glen +Oscar +Troy +Clifford +Theodore +Johnie +Calvin +Harvey +Hugh +Kenneth +Lloyd +Norman +Russell +Aubrey +Charley +Everett +Lonnie +Willis +Elbert +Jim +Bennie +Garland +Ira +Allen +Bill +Clifton +Earnest +Leo +Donald +Guy +Loyd +Archie +Jimmie +Jess +Thurman +Tommie +Wesley +Bert +Edwin +Horace +Jeff +Orville +Wilson +Grady +Marion +Monroe +Dennis +Ed +Glenn +Isaac +Mack +Oliver +Owen +Roosevelt +Booker +Dale +Jewel +Johnny +Julius +Milton +Rufus +Willard +Coy +Daniel +Don +Grover +Leslie +Lowell +Moses +Nathan +Sidney +Wayne +Nathaniel +Ollie +Truman +Will +Francis +Sherman +Victor +Wallace +Alexander +Amos +Arnold +Buford +Burl +Ellis +Elvin +Fay +Gene +Houston +Louie +Olen +Claud +Clinton +Ezra +Gerald +Gilbert +Gordon +Joel +Maurice +Max +Philip +Rex +Wilbur +Andy +Arther +Dave +Harrison +Ivan +Lynn +Morris +Neil +Perry +Preston +Stanley +Sterling +Clayton +Elmo +Emmett +Ervin +Felix +Forrest +Hershel +Irvin +Jasper +Marshall +Odis +Phillip +Roger +Ruben +Sammie +Sylvester +Tommy +Travis +Aaron +Alva +Barney +Bob +Bruce +Cleveland +Dan +Elton +Fletcher +Forest +Franklin +Freddie +Ivory +Jerry +Neal +Omer +Pat +Steve +Wilburn +Winfred +Alonzo +Austin +Basil +Burton +Byron +Cleo +Columbus +Dallas +Dee +Frederick +Gus +Harley +Hermon +Ike +Junius +Martin +Mike +Napoleon +Odell +Otto +Pete +Peter +Porter +Rudolph +Shelby +Silas +Ulysses +Vester +Warren +Wiley +Anthony +Arvil +Bernard +Boyd +Buster +Carroll +Connie +Darrell +Dean +Denver +Dick +Douglas +Edd +Eldon +Ewell +Hayden +Herschel +Jacob +Jerome +Jewell +Larry +Leeroy +Leland +Lyman +Madison +Merle +Miles +Millard +Mitchell +Newton +Noel +Orvil +Otho +Ottis +Percy +Reuben +Roscoe +Van +Vance +Virgle +Wade +Wyatt +Arlie +Arlis +Artis +Billie +Carlos +Carson +Clem +Cleve +Conway +Delbert +Dewey +Dock +Early +Edmond +Elijah +Elisha +Elzie +Emanuel +Ester +Freeman +General +Glynn +Granville +Hiram +Jake +Jefferson +Keith +Kermit +Kirby +Lawson +Lenard +Mark +Milburn +Morgan +Nelson +Noble +Odie +Opie +Phil +Rodney +Rosevelt +Ross +Rupert +Solomon +Ted +Vernie +Wayland +Wilber +Wilbert +James +William +John +Robert +George +Charles +Willie +Henry +Thomas +Joseph +Paul +Frank +Carl +Earl +Joe +Walter +Edward +Jack +Roy +Raymond +Cecil +Fred +Albert +Clarence +Floyd +Arthur +Harold +Richard +Clyde +Harry +Herman +Ralph +Eugene +Jesse +Louis +Ray +Lee +Ernest +Howard +David +Charlie +Elmer +Jessie +Alfred +Herbert +Marvin +Samuel +Lester +Leo +Leonard +Oscar +Lawrence +Willard +Woodrow +Chester +Vernon +Sam +Homer +Johnnie +Alvin +Andrew +Leroy +Marion +Melvin +Lewis +Luther +Virgil +Eddie +Otis +Claude +Oliver +Curtis +Edgar +Earnest +Elbert +Hubert +Calvin +Clifford +Kenneth +Doyle +Ira +Johnie +Leon +Lloyd +Hugh +Leslie +Troy +Wilson +Bill +Charley +Edwin +Allen +Ben +Donald +Loyd +Norman +Daniel +Clifton +Grady +Guy +Lonnie +Russell +Don +Jess +Jimmie +Morris +Wesley +Dale +Horace +Jim +Thurman +Archie +Ellis +Garland +Nathaniel +Benjamin +Everett +Glenn +Grover +Gilbert +Glen +Johnny +Milton +Orville +Willis +Bennie +Coy +Harvey +Mack +Rufus +Amos +Ervin +Gerald +Tom +Bruce +Cleo +Claud +Marshall +Noel +Ollie +Tommie +Truman +Clinton +Dan +Maurice +Roscoe +Sidney +Aubrey +Booker +Dewey +Francis +Pete +Sylvester +Wayne +Aaron +Alonzo +Frederick +Louie +Lowell +Martin +Roosevelt +Theodore +Wallace +Carroll +Odell +Preston +Victor +Wilbur +Will +Bernard +Ed +Jake +Jeff +Jewel +Loy +Moses +Odis +Otto +Arnold +Bert +Douglas +Emmett +Fay +Forrest +Gordon +Gus +Isaac +Jacob +Leland +Olen +Reuben +Warren +Alva +Buford +Burl +Dave +Delbert +Dennis +Gene +Hershel +Jewell +Julian +Philip +Rex +Stanley +Wilburn +Alton +Austin +Billy +Bob +Byron +Dean +Elijah +Elton +Ewell +Freddie +Houston +Isiah +Joel +Julius +Nathan +Owen +Perry +Sherman +Steve +Van +Wade +Alex +Buster +Edd +Jasper +Noah +Noble +Percy +Roger +Silas +Wiley +Elvin +Everette +Harley +Hayden +Kermit +Millard +Omer +Otho +Sammie +Ted +Winfred +Bud +Delmar +Denver +Doyne +Eldon +Elmo +Hal +Hollis +Ivan +Jerry +Lenard +Merle +Monroe +Alvie +Anthony +Arlin +Barney +Coleman +Dallas +Dee +Jay +Matthew +Neil +Norris +Ora +Otha +Peter +Solomon +Tommy +Tony +Travis +Andy +Arlie +Aron +Boyd +Clark +Cleveland +Dewitt +Herschel +Hiram +Hoyt +Jason +Lynn +Nelson +Oran +Othel +Phillip +Randall +Roland +Acie +Arvel +Arvil +Buck +Carthel +Clay +Dock +Emanuel +Emery +Emory +Ezekiel +Felix +Franklin +Freeman +Haskel +Haywood +Isaiah +Ivory +Jackson +Jefferson +Lamar +Larry +Levi +Lon +Marcus +Mckinley +Neal +Odie +Pat +Riley +Ross +Rubin +Theo +Therman +Tomie +Tyree +Vincent +Walker +Wilbert +Abner +Abraham +Adolphus +Alexander +Alford +Augustus +Basil +Birt +Butler +Cal +Carlos +Claudie +Clayton +Connie +Dick +Dwight +Edmund +Elvis +Erwin +Fletcher +Garlon +General +Grant +Harlan +Haskell +Hazel +Hobert +Jimmy +Johney +Keith +King +Lawson +Lois +Lonzo +Lucian +Maceo +Max +Melton +Milburn +Mose +Napoleon +Ned +Olan +Orval +Ozie +Randolph +Ronald +Royce +Ruben +Ruby +Rupert +Sanford +Shirley +Talmage +Taylor +Ulysses +Vance +Vaughn +Wendell +Winford +James +William +John +Robert +Charles +George +Henry +Thomas +Willie +Roy +Joe +Joseph +Walter +Paul +Carl +Jack +Fred +Edward +Raymond +Frank +Clarence +Earl +Woodrow +Ralph +Albert +Arthur +Richard +Lee +Cecil +Floyd +Harold +Ray +Louis +Charlie +David +Jesse +Eugene +Clyde +Herman +Elmer +Harry +Jessie +Homer +Ernest +Herbert +Alfred +Howard +Marvin +Oscar +Andrew +Samuel +Chester +Lewis +Luther +Curtis +Eddie +Lawrence +Vernon +Leonard +Otis +Johnnie +Lloyd +Earnest +Leo +Claude +Troy +Virgil +Clifford +Kenneth +Hubert +Sam +Allen +Leon +Alvin +Doyle +Leroy +Willard +Hugh +Loyd +Marion +Charley +Lester +Everett +Benjamin +Francis +Johnie +Norman +Tom +Daniel +Ira +Melvin +Edgar +Harvey +Clifton +Glen +Glenn +Jimmie +Milton +Garland +Oliver +Guy +Bill +Jim +Nathaniel +Russell +Wilson +Lonnie +Willis +Claud +Olen +Ben +Elbert +Ellis +Thurman +Bennie +Horace +Odis +Archie +Coy +Grady +Leslie +Morris +Roosevelt +Donald +Gerald +Johnny +Wesley +Dan +Dewey +Don +Elmo +Orville +Rufus +Delbert +Isaac +Jess +Mack +Pete +Tommie +Bert +Dale +Edwin +Sherman +Aaron +Austin +Calvin +Gilbert +Maurice +Noel +Wayne +Arlie +Bernard +Booker +Cleo +Freddie +Hershel +Jewel +Martin +Noble +Preston +Sylvester +Amos +Aubrey +Burl +Clinton +Frederick +Gordon +Rex +Roscoe +Theodore +Ed +Fay +Forrest +Max +Millard +Monroe +Ollie +Percy +Will +Billy +Dennis +Grover +Jeff +Lowell +Nathan +Otto +Victor +Wilburn +Alonzo +Alton +Ervin +Jay +Jerry +Julius +Nelson +Philip +Wilbur +Bob +Bruce +Buster +Clayton +Elijah +Felix +Irvin +Ivan +Jacob +Omer +Owen +Sidney +Warren +Wendell +Basil +Carroll +Douglas +Franklin +Gene +Herschel +Jewell +Joel +Julian +Leland +Louie +Manuel +Orval +Ross +Stanley +Tommy +Travis +Arnold +Boyd +Buck +Cleveland +Hermon +Houston +Porter +Reuben +Rudolph +Truman +Van +Virgle +Winfred +Allan +Arther +Boyce +Eldon +Ezra +Harrison +Haskell +Hosea +Jasper +Jerome +Miles +Neal +Ottis +Perry +Phillip +Shelby +Theo +Wallace +Wilbert +Woodroe +Adolph +Andy +Barney +Billie +Buel +Byron +Carlton +Dee +Dick +Emmett +Forest +Gus +Hobert +Kermit +Lemuel +Lenard +Major +Marcus +Mark +Marshall +Nolan +Olin +Patrick +Riley +Steve +Wade +Alex +Artis +Burley +Columbus +Conway +Dallas +Darrell +Dave +Edd +Elisha +Elvis +Evert +Harlan +Harrell +Havis +Hiram +Hoyt +Jefferson +Kirby +Lilburn +Lois +Lucian +Mose +Napoleon +Noah +Obie +Odell +Otha +Roland +Rosevelt +Ruben +Rupert +Silas +Vance +Weldon +Alexander +Alva +Arvil +Bryant +Buford +Clardie +Cleve +Conrad +Cyril +Davis +Dudley +Eli +Elton +Freeman +General +Harley +Harmon +Hayden +Hollis +Jake +Levi +Malcolm +Milburn +Moses +Ora +Orvil +Othel +Peter +Prince +Randolph +Roger +Russel +Sammie +Shirley +Stephen +Sterling +Talmadge +Ted +Therman +Tony +Wilfred +Adolphus +Al +Allison +Anderson +Aron +Arvel +Benny +Benson +Bernie +Bonnie +Carthel +Claudie +Cleatus +Clint +Edmond +Elvin +Elzie +Emanuel +Emil +Estel +Ewell +Finis +Grant +Granville +Hays +Hughes +Isiah +Jackson +Jimmy +Joshua +Lamar +Lawerence +Lonzo +Luster +Lynn +Madison +Malvin +Mary +Maynard +Melton +Merle +Mitchell +Norval +Odie +Pat +Pierce +Scott +Simon +Spencer +Thelma +Turner +Ulysses +Vernie +Wayman +Wilford +Wilmer +Winford +James +William +John +Robert +Charles +George +Willie +Henry +Thomas +Joe +Joseph +Edward +Paul +Walter +Frank +Roy +Carl +Clarence +Fred +Albert +Raymond +Earl +Jack +Ralph +Harold +Arthur +Jessie +Richard +Cecil +Ernest +Howard +Woodrow +Clyde +Charlie +Jesse +Louis +Herman +Lee +David +Floyd +Samuel +Lloyd +Eugene +Harry +Andrew +Lawrence +Ray +Herbert +Oscar +Leroy +Leonard +Vernon +Marvin +Chester +Virgil +Homer +Curtis +Elmer +Lester +Melvin +Sam +Kenneth +Earnest +Hubert +Johnnie +Leo +Otis +Alfred +Leon +Alvin +Claude +Willard +Doyle +Lewis +Marion +Eddie +Edgar +Charley +Luther +Allen +Clifford +Norman +Tom +Troy +Horace +Jim +Hugh +Jimmie +Donald +Everett +Guy +Lonnie +Edwin +Harvey +Loyd +Oliver +Daniel +Johnie +Bill +Louie +Milton +Elbert +Gerald +Russell +Grady +Ben +Benjamin +Bennie +Clifton +Francis +Rufus +Calvin +Cleo +Grover +Ira +Roosevelt +Sidney +Wayne +Morris +Thurman +Wesley +Nathaniel +Theodore +Willis +Orville +Archie +Billy +Coy +Freddie +Wilson +Garland +Isaac +Millard +Ellis +Elmo +Glenn +Jewel +Johnny +Leslie +Lowell +Odell +Ed +Wallace +Aubrey +Bernard +Dale +Jerry +Wilburn +Bruce +Carroll +Clinton +Ervin +Franklin +Glen +Odis +Warren +Aaron +Alton +Delbert +Dennis +Dewey +Gilbert +Jay +Marshall +Maurice +Truman +Forrest +Gordon +Jacob +Owen +Sylvester +Tommie +Victor +Wilbur +Amos +Booker +Boyd +Don +Elvis +Emmett +Fay +Felix +Jeff +Jess +Noel +Olen +Otho +Perry +Sterling +Ted +Alva +Burl +Dave +Elijah +Harley +Nathan +Rex +Roscoe +Ross +Sherman +Timothy +Austin +Barney +Bob +Claud +Dan +Houston +Martin +Mckinley +Ollie +Percy +Steve +Arlie +Bert +Billie +Byron +Cleveland +Columbus +Douglas +Fletcher +Herschel +Joel +Loy +Marcus +Monroe +Noble +Preston +Shelby +Stanley +Tommy +Arnold +Clark +Clayton +Dallas +Denver +Elton +Frederick +Hollis +Julian +Julius +Leland +Mack +Matthew +Max +Nelson +Philip +Phillip +Roland +Silas +Winfred +Anthony +Buster +Eldon +Hershel +Mark +Moses +Othel +Otto +Pete +Ruben +Andy +Augustus +Basil +Dean +Delmer +Edd +Finis +Harmon +Harrison +Hiram +Hoyt +Jake +Lonzo +Lynn +Napoleon +Omer +Opal +Oral +Otha +Peter +Sammie +Vincent +Will +Alexander +Arlis +Carlos +Delmar +Dewitt +Dillard +Elvin +Gene +General +Henderson +Jackson +Kermit +Kirby +Levi +Manuel +Mose +Porter +Riley +Royce +Stephen +Tyree +Vance +Wade +Wendell +Wiley +Wilford +Afton +Alex +Alonzo +Alvie +Arther +Avery +Clayborn +Darrell +Dee +Elisha +Evans +Harlan +Haskell +Hosea +Jasper +Jefferson +Jerome +Jimmy +Lacy +Larry +Lehman +Loren +Marlin +Miles +Neal +Noah +Obie +Ora +Prince +Shirley +Teddie +Therman +Tillman +Tony +Travis +Van +Webster +Wilfred +Adam +Alvis +Anderson +Artie +August +Buford +Christopher +Cleophus +Conway +Edmond +Elwood +Elzie +Gus +Hardy +Hayward +Huston +Isaiah +Ivan +Karl +Laurence +Lenard +Loyal +Malvin +Marshal +Mike +Milburn +Newton +Orval +Ossie +Roger +Rubin +Ruel +Russel +Simon +Theron +Vaughn +Arch +Arvel +Arvin +Audrey +Auther +Boyce +Bryan +Buck +Clay +Crawford +Denton +Doyal +Duke +Emanuel +Evertt +Ezell +Grant +Harlon +Harvy +Irvin +Ivory +Jason +Jewell +Joshua +Junior +Lawson +Lindsey +Lois +Lucian +Lucious +Luke +Madison +Major +Maynard +Merl +Mitchell +Morgan +Odie +Odus +Orvil +Randolph +Raymon +Ronald +Rosevelt +Rupert +Sampson +Theo +Walker +Walton +Woodroe +James +William +John +Robert +George +Charles +Willie +Thomas +Henry +Joe +Raymond +Frank +Roy +Edward +Paul +Walter +Joseph +Carl +Woodrow +Albert +Clarence +Earl +Fred +Jack +Harold +Richard +Ralph +Eugene +Arthur +David +Cecil +Jesse +Ernest +Floyd +Charlie +Howard +Ray +Clyde +Samuel +Elmer +Herbert +Louis +Vernon +Harry +Marvin +Johnnie +Leon +Jessie +Lee +Homer +Lawrence +Oscar +Sam +Chester +Leonard +Lester +Herman +Leroy +Alvin +Luther +Alfred +Lewis +Curtis +Leo +Troy +Virgil +Andrew +Claude +Lloyd +Earnest +Eddie +Edgar +Kenneth +Hubert +Lonnie +Loyd +Melvin +Daniel +Donald +Norman +Hugh +Glenn +Clifford +Otis +Wilson +Glen +Archie +Bill +Charley +Doyle +Jim +Johnie +Horace +Jimmie +Marion +Willard +Allen +Theodore +Russell +Grover +Oliver +Ben +Bennie +Elbert +Harvey +Wesley +Everett +Francis +Clifton +Coy +Ira +Grady +Rufus +Edwin +Mack +Benjamin +Calvin +Milton +Roosevelt +Wilburn +Claud +Guy +Leslie +Thurman +Dale +Marshall +Orville +Wallace +Bernard +Victor +Willis +Garland +Sherman +Tom +Tommie +Wayne +Isaac +Nathaniel +Sidney +Aubrey +Dan +Don +Odis +Ollie +Rex +Amos +Bert +Cleo +Dewey +Odell +Buford +Jerry +Lowell +Monroe +Morris +Sylvester +Alton +Buster +Cleveland +Ellis +Gerald +Johnny +Nathan +Austin +Booker +Dennis +Gene +Gordon +Julius +Otto +Sammie +Billy +Emmett +Kermit +Quinton +Arnold +Ervin +Martin +Pete +Boyd +Harrison +Houston +Jess +Owen +Percy +Roscoe +Stanley +Tommy +Warren +Billie +Elmo +Felix +Forrest +Hershel +Hollis +Max +Perry +Aaron +Burl +Ed +Frederick +Hoyt +Jake +Jeff +Jewel +Louie +Maurice +Olen +Phillip +Van +Wilbur +Will +Alonzo +Carlton +Delbert +Elijah +Freddie +Gilbert +Harley +Jasper +Jay +Millard +Preston +Alvis +Bob +Bruce +Elton +Elvin +Isiah +Ivory +Jacob +Keith +Neil +Riley +Roger +Alex +Clayton +Clinton +Cornelius +Dallas +Dee +Edd +Ewell +Franklin +Junior +Nolan +Opal +Pershing +Silas +Ted +Arlie +Dalton +Dean +Douglas +Freeman +Jefferson +Levi +Loy +Mark +Nelson +Noah +Noble +Noel +Odie +Orvil +Quentin +Rudolph +Travis +Wilbert +Wilford +Basil +Bernice +Buddy +Emil +Ezra +Jimmy +Leland +Major +Mitchell +Moses +Porter +Roland +Sterling +Steve +Truman +Walton +Winfred +Winston +Alexander +Alva +Anthony +Arvel +Clark +Connie +Dave +Delmar +Dillard +Edmond +Elvis +Fay +Harvie +Hosea +Jewell +Larry +Lenard +Malcolm +Marcus +Mckinley +Oran +Patrick +Remmel +Ross +Ruby +Theron +Tillman +Vance +Adrian +Aron +Buck +Burley +Burton +Carroll +Conrad +Delmer +Denver +Dick +Doyne +Eldon +Emanuel +Enoch +General +Granville +Hansel +Herschel +Irvin +Ivan +Jackson +Joel +Julian +Loren +Manuel +Matthew +Omer +Otha +Scott +Talmage +Ulysses +Vester +Virgle +Waldo +Winford +Benton +Berlin +Bryan +Buell +Clarance +Clay +Columbus +Dorsey +Early +Eli +Erwin +Forest +Foster +Fredrick +Grant +Gus +Harlan +Harmon +Hermon +Ike +Joshua +Lawerence +Lucious +Lynn +Marlin +Miles +Ned +Oris +Othel +Otho +Pat +Philip +Reuben +Rogers +Ruben +Spencer +Stephen +Teddy +Theo +Timothy +Turner +Vincent +Wendell +Woodroe +Adolph +Alvie +Ardith +Benny +Boyce +Brown +Bud +Byron +Carmon +Chauncey +Claudie +Clide +Clint +Conway +Cyrus +Duane +Edison +Elisha +Euel +Finis +Haskell +Hershell +Hilliard +Hollie +Johnson +Kelly +Lamar +Laurence +Lawson +Loyal +Lucille +Mary +Melton +Merl +Michael +Mike +Milburn +Murl +Napoleon +Obie +Olin +Opie +Oren +Orval +Ottis +Raleigh +Rayburn +Raymon +Reed +Ronald +Royal +Royce +Spurgeon +Tony +Vernie +Wade +Wardell +Wiley +Williams +Wyatt +James +William +John +Robert +Charles +George +Willie +Thomas +Joe +Henry +Roy +Edward +Raymond +Joseph +Walter +Paul +Jack +Frank +Carl +Clarence +Fred +Harold +Albert +Earl +Ralph +Arthur +Eugene +Floyd +David +Jessie +Ernest +Charlie +Richard +Leonard +Howard +Lee +Lloyd +Ray +Clyde +Elmer +Woodrow +Cecil +Herman +Eddie +Herbert +Harry +Louis +Marvin +Jesse +Leroy +Vernon +Andrew +Lawrence +Samuel +Luther +Chester +Lester +Sam +Troy +Alfred +Virgil +Curtis +Earnest +Alvin +Homer +Oscar +Bill +Claude +Leo +Lewis +Hubert +Johnnie +Melvin +Norman +Jimmie +Allen +Kenneth +Otis +Willis +Daniel +Leon +Loyd +Edgar +Horace +Johnie +Archie +Clifford +Clifton +Elbert +Billy +Everett +Benjamin +Ellis +Rufus +Russell +Marion +Donald +Warren +Wayne +Charley +Garland +Glenn +Doyle +Gerald +Harvey +Hugh +Coy +Francis +Glen +Odis +Willard +Ira +Theodore +Leslie +Cleo +Edwin +Oliver +Wesley +Don +Grover +Guy +Lonnie +Milton +Tom +Jerry +Nathaniel +Roscoe +Calvin +Dan +Jim +Louie +Wallace +Bennie +Dale +Franklin +Jewel +Roosevelt +Ben +Dewey +Mack +Wilson +Isaac +Olen +Orville +Truman +Wilburn +Claud +Emmett +Gordon +Rex +Delbert +Jasper +Julius +Victor +Alton +Aubrey +Bruce +Morris +Noble +Thurman +Alonzo +Arnold +Douglas +Elmo +Gene +Gilbert +Harley +Owen +Ed +Grady +Hershel +Martin +Travis +Dennis +Felix +Freddie +Johnny +Junior +Odell +Pete +Tommie +Aaron +Booker +Buford +Lowell +Marshall +Max +Quentin +Stanley +Bob +Ervin +Fay +Jewell +Maurice +Monroe +Moses +Preston +Sammie +Sherman +Ted +Tommy +Winfred +Billie +Burl +Clinton +Elvis +Forrest +Jay +Levi +Manuel +Nathan +Riley +Sidney +Will +Clayton +Cornelius +Dave +Jake +Jeff +Loy +Lynn +Ollie +Roland +Ruben +Austin +Bernard +Boyd +Cleveland +Eldon +Elvin +Herschel +Irvin +Nelson +Otha +Percy +Sylvester +Amos +Carroll +Edmond +Elijah +Gus +Ivan +Jess +Millard +Mose +Omer +Otto +Perry +Sterling +Virgle +Winston +Alvis +Berry +Buster +Elton +Frederick +Jacob +Major +Marcus +Noah +Obie +Orval +Phillip +Ross +Silas +Alexander +Arlie +Bert +Buck +Carlos +Dee +Delmer +Denver +Dwight +Ewell +Harmon +Hollis +Joel +Miles +Neal +Philip +Steve +Weldon +Wilbert +Barney +Byron +Darrell +Elzie +Freeman +Ivory +Kermit +Leland +Mark +Orvil +Scott +Shelby +Van +Wendell +Alva +Arlis +Aron +Arther +Carlton +Carrol +Columbus +Dallas +Forest +Harlan +Harrison +Haywood +Isaiah +King +Lenard +Porter +Raymon +Wade +Wiley +Winford +Arvil +Auther +Bryan +Clark +Dewitt +Dillard +Edd +Eli +Emmit +Everette +Fletcher +Glendon +Hala +Hermon +Hiram +Hobert +Hosea +Hurley +Ishmael +Jimmy +Johnson +Joshua +Lonzo +Madison +Matthew +Napoleon +Neil +Noel +Othel +Ottis +Pat +Rosevelt +Talmadge +Verlon +Waymon +Wilbur +Alex +Andy +Bobbie +Boyce +Cletus +Coleman +Davis +Elza +Emmitt +Erwin +Eunice +Ezra +Farris +Finis +General +Granville +Houston +Hoyt +Ike +Isiah +Jeremiah +Joy +Julian +Karl +Lacy +Lamar +Leamon +Leeroy +Lemuel +Luster +Mason +Maxwell +Maynard +Michael +Milford +Mitchell +Oval +Peter +Quinton +Randolph +Rayburn +Roger +Rosco +Rudolph +Shirley +Terry +Timothy +Verl +Vester +Zack +Abraham +Adolph +Adrian +Alvie +Artie +Augustus +Avery +Bernice +Burnice +Claudie +Cleve +Connie +Conway +Craig +Dail +Delmar +Deward +Dock +Elsie +Emerson +Emery +Emil +Emmet +Eual +Euel +Eulas +Ezell +Felton +Gaylon +Guss +Hal +Hardy +Irving +Jackson +Judge +Junious +Larence +Lovell +Lyle +Mckinley +Melton +Milburn +Murl +Murrell +Ned +Nolen +Odie +Oran +Ozie +Randall +Reuben +Royce +Rupert +Simon +Stephen +Theo +Therman +Tony +Vance +Walker +Warner +Wilford +Willam +Woodroe +Wylie +James +William +John +Robert +Charles +George +Willie +Thomas +Henry +Paul +Jack +Joe +Frank +Roy +Raymond +Edward +Joseph +Walter +Harold +Clarence +Fred +Earl +Carl +Albert +Eugene +Ralph +David +Richard +Arthur +Howard +Floyd +Warren +Clyde +Jessie +Ernest +Ray +Lee +Cecil +Jesse +Louis +Herman +Samuel +Charlie +Leroy +Earnest +Vernon +Leonard +Eddie +Lloyd +Chester +Curtis +Elmer +Kenneth +Andrew +Harry +Leon +Marvin +Herbert +Homer +Sam +Luther +Johnnie +Melvin +Oscar +Virgil +Alfred +Lawrence +Doyle +Lewis +Otis +Charley +Leo +Billy +Clifford +Bill +Hubert +Alvin +Archie +Loyd +Lester +Wayne +Johnie +Donald +Glen +Claude +Everett +Gerald +Tom +Hugh +Norman +Troy +Clifton +Daniel +Guy +Jimmie +Allen +Calvin +Harvey +Bennie +Edgar +Rufus +Elbert +Jim +Roscoe +Willard +Leslie +Lonnie +Oliver +Dale +Marion +Coy +Glenn +Horace +Milton +Theodore +Woodrow +Benjamin +Billie +Wallace +Wesley +Ben +Nathaniel +Grady +Ira +Jerry +Orville +Willis +Claud +Johnny +Louie +Morris +Russell +Sylvester +Garland +Odell +Rex +Cleo +Francis +Grover +Hershel +Isaac +Olen +Roosevelt +Aubrey +Lowell +Perry +Thurman +Edwin +Ellis +Maurice +Wilburn +Amos +Dewey +Freddie +Victor +Bob +Clinton +Gene +Gordon +Joel +Max +Preston +Sidney +Bert +Don +Frederick +Gilbert +Jewel +Odis +Aaron +Dan +Ervin +Hollis +Sherman +Alton +Bernard +Booker +Dennis +Elton +Franklin +Houston +Nathan +Ollie +Omer +Stanley +Tommy +Arnold +Burl +Delbert +Emmett +Harley +Hoyt +Jasper +Junior +Marshall +Nelson +Noble +Travis +Truman +Winfred +Austin +Bruce +Douglas +Forrest +Jay +Mack +Martin +Owen +Peter +Tommie +Andy +Buster +Gus +Jewell +Monroe +Moses +Wiley +Will +Boyd +Carroll +Elmo +Harding +Jacob +Millard +Alonzo +Ed +Hiram +Ivan +Julius +Levi +Neil +Wilford +Alex +Bobby +Clark +Dave +Freeman +Jake +Jeff +Jefferson +Jess +Julian +Mitchell +Otha +Otto +Percy +Phillip +Rudolph +Ted +Wilbur +Wilson +Alva +Anderson +Basil +Columbus +Cornelius +Dallas +Dean +Denver +Edmond +Fay +Finis +Harrison +Herschel +Marcus +Patrick +Roger +Theo +Van +Alford +Anthony +Arlis +Byron +Delmar +Elvin +Felix +Hermon +Hobert +Loren +Loy +Lynn +Matthew +Napoleon +Newton +Noel +Nolan +Pat +Philip +Quentin +Ruben +Waymon +Wilbert +Winford +Al +Carrol +Clay +Clayton +Coleman +Dalton +Dick +Edsel +Elijah +Elvis +Forest +Ivory +Larry +Lenard +Major +Merle +Noah +Oren +Otho +Quinton +Roland +Ronald +Royce +Seth +Silas +Virgle +Walker +Wayman +Weldon +Abraham +Acie +Adolph +Augustus +Bryan +Bud +Buford +Cleveland +Connie +Dannie +Delton +Dewitt +Dreddy +Eldon +Emanuel +Emory +Harmon +Harrell +Keith +Kirby +Malcolm +Obie +Orval +Porter +Reuben +Riley +Shelby +Spencer +Theron +Timothy +Vester +Wade +Wardell +Wendell +Adrian +Alvie +Arther +Audy +Auther +Barney +Bobbie +Boyce +Carlton +Carter +Curley +Dee +Dempsey +Dorsey +Duane +Elliott +Elwood +Elzie +Emmitt +Ezra +Fletcher +Grant +Granville +Harlan +Hulen +Irvin +Isaiah +Isiah +Jackson +Jose +Junious +Kermit +King +Lamar +Mike +Morgan +Myron +Neal +Ocie +Olin +Pete +Rayburn +Sammie +Stephen +Tony +Vance +Vernie +Vincent +Virgel +Adolphus +Allan +Allie +Arlin +Aron +Arvel +Arvil +Arvin +Athel +Berlin +Bernice +Beryl +Bonnie +Bryce +Buck +Buel +Buell +Carson +Chris +Cletis +Cyrus +Delmer +Doyne +Dwight +Early +Edd +Emerson +Eston +Eulas +Felton +Foy +General +Harden +Harlon +Hershell +Howell +Hughie +Huston +Jason +Jerome +Jimmy +Johny +Jonathan +Jonnie +Lemuel +Lucian +Lucius +Lyle +Maceo +Madison +Mathew +Milburn +Nolen +Ottis +Prince +Rector +Reece +Reginald +Rodney +Ruel +Simon +Stanford +Steve +Tillman +Ulysses +Vaughn +Vergil +Wilfred +James +William +John +Robert +Charles +George +Willie +Thomas +Paul +Henry +Edward +Joe +Jack +Roy +Joseph +Harold +Walter +Carl +Raymond +Frank +Eugene +Richard +Warren +Albert +Clarence +Ralph +Earl +Fred +David +Cecil +Arthur +Kenneth +Howard +Louis +Samuel +Floyd +Charlie +Ray +Ernest +Harry +Jessie +Lee +Vernon +Herman +Leroy +Elmer +Jesse +Johnnie +Andrew +Leonard +Lewis +Billy +Clyde +Leon +Lawrence +Marvin +Chester +Lester +Alfred +Herbert +Lloyd +Luther +Oscar +Virgil +Edgar +Jimmie +Calvin +Doyle +Loyd +Troy +Alvin +Homer +Donald +Elbert +Otis +Leo +Wayne +Harvey +Melvin +Sam +Eddie +Johnie +Bill +Claude +Earnest +Norman +Gerald +Curtis +Hubert +Marion +Willard +Clifton +Charley +Allen +Clifford +Horace +Everett +Tom +Glen +Wallace +Edwin +Ira +Milton +Odell +Oliver +Ben +Russell +Daniel +Odis +Woodrow +Jim +Johnny +Rufus +Coy +Jerry +Willis +Dewey +Francis +Junior +Nathaniel +Dale +Garland +Glenn +Grover +Bennie +Roscoe +Theodore +Cleo +Guy +Hugh +Orville +Wesley +Claud +Lonnie +Bernard +Billie +Don +Douglas +Tommie +Benjamin +Harley +Isaac +Bert +Delbert +Freddie +Sherman +Sidney +Sylvester +Alton +Archie +Max +Roland +Sammie +Will +Grady +Jewel +Truman +Aaron +Gilbert +Leland +Louie +Stanley +Thurman +Travis +Victor +Aubrey +Dan +Ellis +Elmo +Emmett +Franklin +Hershel +Jay +Morris +Percy +Wilburn +Arnold +Austin +Clinton +Gene +Hollis +Jasper +Lowell +Marshall +Maurice +Roger +Wilbur +Boyd +Forrest +Gordon +Julius +Martin +Owen +Roosevelt +Winfred +Bruce +Cleveland +Monroe +Olen +Tommy +Van +Alex +Barney +Harrison +Houston +Jeff +Perry +Virgle +Alonzo +Amos +Buford +Burl +Carroll +Clayton +Cornelius +Denver +Eldon +Jake +Jewell +Leslie +Mack +Preston +Rex +Shelby +Wendell +Bobby +Buster +Ezra +Freeman +Jimmy +Lenard +Marcus +Moses +Omer +Bryan +Dean +Elijah +Felix +Frederick +Harding +Hermon +Ollie +Pete +Wilson +Arvil +Bob +Booker +Dallas +Elton +Ervin +Grant +Hardy +Irvin +Ivan +Jackson +Joel +Malcolm +Matthew +Milburn +Newton +Noel +Otto +Patrick +Phillip +Sterling +Theo +Winston +Alexander +Arlie +Dave +Ed +Edmond +Jacob +Jess +Keith +Manuel +Nathan +Nelson +Philip +Ruben +Steve +Adolph +Anderson +Arvel +Bryce +Buck +Delmer +Dennis +Elvin +Ewell +Forest +Gus +Ivory +Kermit +Levi +Logan +Millard +Neal +Otha +Wilbert +Wiley +Alva +Anthony +Bud +Byron +Carlos +Columbus +Howell +Hoyt +Lemuel +Loy +Major +Mose +Nolan +Norris +Orvil +Raymon +Riley +Ross +Rudolph +Scott +Silas +Adam +Adrian +Allie +Alvie +Arther +Bernice +Carlton +Carrol +Delmar +Delton +Dempsey +Eldridge +Elvis +Emery +Emmit +Fay +Harden +Harmon +Herschel +Hiram +Jodie +Julian +Larry +Lonzo +Mark +Mitchell +Ned +Noah +Oran +Ottis +Quinton +Randall +Reuben +Rosevelt +Royce +Ted +Theodis +Timothy +Tony +Tyree +Vance +Wade +Warner +Wayman +Waymon +Winford +Alvis +Ambrose +Argus +Arlis +Aron +Augustus +Bobbie +Boyce +Clay +Cloyce +Conley +Dee +Dock +Elisha +Enoch +Estel +Farris +Felton +Frankie +General +Harlan +Harlon +Harris +Haywood +Hobert +Jonathan +Lois +Luke +Lynn +Malvern +Malvin +Marlin +Mary +Milford +Nolen +Odie +Opal +Orvel +Otho +Porter +Rogers +Sanford +Seth +Shirley +Simon +Solomon +Talmadge +Theron +Vergil +Vernie +Vester +Allan +Andy +Arlee +Artie +Aubry +Basil +Benny +Bernell +Buddy +Burley +Cal +Champ +Claudie +Cleophus +Cletus +Clint +Coleman +Darrel +Dexter +Earlie +Elwood +Elza +Emanuel +Emil +Emmitt +Evert +Finis +Fletcher +Gail +Hal +Harlin +Hayden +Hobart +Hurshel +Issac +Jd +Jose +Joy +Judson +June +Lafayette +Lawson +Leeroy +Lenoard +Loyal +Lucius +Luster +Mckinley +Mike +Obie +Olin +Oris +Othel +Peter +Reece +Ronald +Ruel +Silvester +Tillman +Turner +Ulysses +Vernice +Walker +Watson +Welton +Wilford +James +William +John +Robert +Charles +George +Willie +Thomas +Henry +Joe +Edward +Harold +Jack +Roy +Paul +Joseph +Walter +Raymond +Earl +Clarence +Eugene +Albert +Frank +Carl +Fred +Ralph +Richard +Floyd +David +Louis +Jessie +Arthur +Cecil +Howard +Billy +Kenneth +Ernest +Jesse +Clyde +Herman +Lee +Leroy +Samuel +Charlie +Elmer +Harry +Ray +Vernon +Lawrence +Andrew +Chester +Leonard +Lloyd +Donald +Herbert +Alfred +Alvin +Oscar +Lester +Luther +Eddie +Johnnie +Doyle +Melvin +Warren +Earnest +Marvin +Curtis +Virgil +Homer +Leo +Troy +Leon +Hubert +Gerald +Wayne +Otis +Archie +Edwin +Junior +Sam +Calvin +Johnie +Norman +Clifton +Edgar +Benjamin +Horace +Bill +Elbert +Marion +Allen +Dale +Jimmie +Daniel +Charley +Claude +Mack +Bennie +Guy +Clifford +Loyd +Willard +Hugh +Jerry +Russell +Tom +Lonnie +Harvey +Ira +Oliver +Dewey +Rufus +Everett +Garland +Odell +Glenn +Lewis +Nathaniel +Theodore +Ben +Willis +Gene +Grover +Coy +Dan +Jim +Maurice +Thurman +Isaac +Jewel +Leslie +Odis +Roosevelt +Wesley +Aubrey +Claud +Roscoe +Wallace +Billie +Cleo +Johnny +Morris +Olen +Bruce +Milton +Tommie +Victor +Wilburn +Aaron +Alton +Amos +Douglas +Monroe +Sidney +Tommy +Burl +Don +Francis +Gilbert +Sylvester +Buford +Clinton +Julius +Ed +Gordon +Grady +Ollie +Orville +Rex +Ellis +Freddie +Glen +Sherman +Arnold +Bernard +Ervin +Franklin +Martin +Truman +Alonzo +Boyd +Elvin +Forrest +Hershel +Jeff +Nathan +Roland +Sammie +Weldon +Felix +Finis +Jay +Max +Moses +Roger +Travis +Virgle +Wilbur +Will +Woodrow +Bert +Dallas +Delbert +Dennis +Elijah +Jasper +Louie +Millard +Perry +Sterling +Wilson +Bobby +Herschel +Jake +Joel +Ted +Booker +Carroll +Columbus +Cornelius +Eldon +Elvis +Emmett +Fay +Lenard +Marshall +Noel +Otto +Percy +Shelby +Stanley +Buel +Clayton +Harley +Jewell +Levi +Lowell +Loy +Riley +Ronald +Van +Winfred +Alexander +Arvil +Austin +Dave +Elisha +Frederick +Jimmy +Leland +Pete +Phillip +Ulysses +Wilbert +Arvel +Byron +Clay +Darrell +Harrison +Hermon +Hollis +Houston +Ivan +Jerome +Lawson +Lynn +Matthew +Mitchell +Nelson +Noble +Nolan +Preston +Ross +Vance +Wiley +Wilford +Arlie +Bob +Carlton +Delmar +Delmer +Dock +Elton +Haskell +Jackson +Jess +Keith +Neil +Obie +Royce +Rudolph +Verlon +Winford +Alex +Alva +Alvie +Arley +Bobbie +Buster +Carlos +Cleveland +Dean +Denver +Elmo +Erwin +Ewell +Hal +Hoyt +Isiah +Ivory +Lamar +Major +Marcus +Noah +Owen +Wilber +Abraham +Arlis +Basil +Berry +Boyce +Clarance +Dewitt +Dick +Doyne +Durward +Edmond +Forest +Glendon +Granville +Jacob +Kermit +Lemuel +Loren +Malvin +Marlin +Porter +Randolph +Rodney +Ruben +Russel +Shirley +Solomon +Taylor +Theodis +Vester +Wade +Wendell +Winston +Abner +Adolph +Alpha +Artis +Carrol +Carthel +Connie +Dalton +Damon +Dee +Dillard +Duane +Dudley +Eli +Elwood +Emmitt +Emory +Ezra +Fletcher +Fredrick +Freeman +Grant +Gus +Harding +Hardy +Harlan +Harmon +Hayden +Hayes +Hurshel +Irvin +Julian +Junious +Leamon +Lorenzo +Loyal +Lucious +Madison +Maxwell +Merle +Mose +Opie +Oral +Orval +Otha +Pat +Patrick +Raymon +Reuben +Rosevelt +Royal +Sanford +Scott +Silas +Simon +Spencer +Steve +Talmadge +Teddy +Turner +Vernie +Walker +Ward +Webster +Acie +Adrian +Afton +Andy +Anthony +Argus +Arlen +Arther +August +Barney +Bonnie +Buck +Burton +Conley +Darrel +Daryl +Delton +Deward +Dewell +Dexter +Dwight +Eligah +Elzie +Emerson +Emil +Enoch +Euel +Ezekiel +Farrell +Harris +Harvie +Hiram +Jefferson +Jonathan +Joy +June +Justin +Lafayette +Larry +Lucian +Lucius +Malcolm +Merl +Michael +Mike +Opal +Ora +Oran +Orvil +Otho +Ottis +Reginald +Rubin +Seth +Sid +Stephen +Theo +Timothy +Vern +Vincent +Virgel +Wilmer +James +William +John +Robert +Charles +George +Willie +Thomas +Jack +Henry +Edward +Joe +Roy +Harold +Paul +Joseph +Carl +Raymond +Walter +Frank +Richard +Eugene +Clarence +Earl +Ralph +Kenneth +Albert +Fred +Arthur +Cecil +David +Billy +Louis +Jessie +Floyd +Charlie +Herman +Clyde +Lee +Ray +Ernest +Elmer +Jesse +Marvin +Calvin +Leon +Howard +Vernon +Donald +Chester +Harry +Leroy +Melvin +Samuel +Herbert +Johnnie +Lawrence +Lloyd +Eddie +Jimmie +Leonard +Andrew +Warren +Bill +Earnest +Virgil +Curtis +Alvin +Luther +Norman +Harvey +Junior +Homer +Lewis +Gerald +Leo +Otis +Doyle +Loyd +Marion +Troy +Everett +Oscar +Wayne +Horace +Hubert +Lester +Sam +Alfred +Edwin +Billie +Claude +Edgar +Wallace +Elbert +Johnie +Clifford +Johnny +Charley +Jim +Roosevelt +Tom +Willard +Ben +Morris +Milton +Garland +Gene +Guy +Clifton +Dale +Daniel +Oliver +Thurman +Benjamin +Leslie +Lonnie +Allen +Willis +Glen +Glenn +Tommie +Hugh +Wesley +Cleo +Dewey +Olen +Rufus +Bennie +Claud +Francis +Maurice +Nathaniel +Marshall +Russell +Wilburn +Coy +Grady +Ira +Mack +Odell +Sylvester +Freddie +Jerry +Archie +Owen +Stanley +Amos +Aubrey +Delbert +Grover +Roland +Bob +Clinton +Jasper +Tommy +Arnold +Bert +Carroll +Elijah +Ellis +Elmo +Jewel +Jimmy +Max +Orville +Austin +Booker +Dan +Franklin +Travis +Gilbert +Gordon +Hollis +Jay +Odis +Sherman +Theodore +Victor +Cleveland +Jewell +Rex +Verlon +Alton +Bernard +Bruce +Dennis +Don +Isaac +Wilbur +Bobby +Ed +Elton +Ivan +Jackson +Jake +Roscoe +Truman +Will +Winfred +Alonzo +Denver +Emmett +Harley +Julian +Julius +Mark +Martin +Napoleon +Ollie +Perry +Sterling +Woodrow +Aaron +Buford +Frederick +Larry +Millard +Nathan +Nelson +Philip +Sidney +Adolph +Alex +Columbus +Dallas +Dave +Louie +Lowell +Loy +Matthew +Percy +Wilson +Arlie +Boyd +Burl +Douglas +Elvis +Forrest +Hermon +Hershel +Rudolph +Wendell +Andy +Boyce +Byron +Carlton +Cornelius +Dean +Eldon +Jeff +Joel +Monroe +Neal +Noah +Noble +Pete +Theodis +Virgle +Wilbert +Wiley +Adrian +Barney +Buster +Carlos +Clayton +Felix +Keith +Marcus +Moses +Noel +Nolan +Preston +Roger +Ruben +Steve +Theo +Wilford +Alford +Alva +Alvis +Carrol +Elvin +Ervin +Fletcher +Jess +Junius +Lamar +Leland +Loren +Malcolm +Manuel +Milburn +Otha +Phillip +Weldon +Buddy +Conrad +Emerson +Eric +Everette +Fay +Frankie +Hosea +Jacob +Levi +Lois +Lynn +Mckinley +Neil +Patrick +Randolph +Riley +Ted +Vance +Wade +Alexander +Arvel +Cleophus +Clint +Darrell +Delmer +Dexter +Dock +Donnie +Doris +Doyne +Edmond +Emery +Ezra +Freeman +Granville +Gus +Harrison +Herschel +Hoyt +Jean +Jefferson +Lenard +Mitchell +Orvel +Orvil +Pat +Peter +Porter +Sammy +Solomon +Stuart +Teddy +Wilmer +Winston +Alvie +Arlis +Arther +Benny +Bobbie +Bonnie +Clarance +Cletis +Dalton +Delmar +Dick +Elzie +Evert +Farris +General +Glendon +Hal +Harlan +Hobert +Houston +Isiah +Jerome +Joyce +Kelly +Lemuel +Levester +Lincoln +Major +Milford +Obie +Olin +Otto +Ross +Royce +Tillman +Tyree +Ulysses +Walker +Winford +Argie +Aron +Arvil +Basil +Bernie +Carson +Clark +Davis +Denzil +Duane +Dwight +Elmar +Euell +Ewell +Felton +Fredrick +Graham +Hardy +Harmon +Haskell +Hiram +Hosie +Hurshel +Isaiah +Kirby +Lavell +Leeroy +Loise +Loyal +Lyle +Mary +Michael +Murry +Ned +Norris +Odie +Olan +Prentice +Quinton +Raymon +Sammie +Sanford +Shelby +Stephen +Talmadge +Tomie +Van +Vaughn +Vester +Wayman +Waymon +Wilton +Wylie +Zane +James +William +John +Robert +Charles +George +Thomas +Willie +Joe +Jack +Edward +Paul +Walter +Henry +Harold +Billy +Carl +Joseph +Frank +Raymond +Roy +Richard +Calvin +Eugene +Albert +David +Clarence +Earl +Arthur +Fred +Kenneth +Ralph +Lee +Ernest +Jessie +Cecil +Howard +Leon +Herman +Louis +Samuel +Ray +Charlie +Harry +Floyd +Herbert +Leroy +Jesse +Clyde +Eddie +Homer +Elmer +Johnnie +Melvin +Donald +Luther +Chester +Junior +Vernon +Bill +Leonard +Marvin +Lawrence +Earnest +Alvin +Lloyd +Otis +Andrew +Sam +Jimmie +Troy +Alfred +Clifford +Lester +Virgil +Norman +Gerald +Hubert +Willard +Edgar +Oscar +Curtis +Doyle +Johnie +Marion +Allen +Lewis +Leo +Benjamin +Jim +Wayne +Loyd +Archie +Ben +Harvey +Daniel +Elbert +Horace +Johnny +Roosevelt +Willis +Billie +Bobby +Russell +Clifton +Charley +Claude +Wallace +Garland +Glenn +Guy +Theodore +Tom +Warren +Everett +Dale +Dewey +Don +Edwin +Freddie +Hugh +Ira +Lonnie +Morris +Jerry +Leslie +Maurice +Milton +Nathaniel +Tommy +Wesley +Glen +Sylvester +Delbert +Douglas +Gene +Hershel +Oliver +Rufus +Bennie +Carroll +Coy +Sammie +Wilburn +Amos +Gordon +Sherman +Victor +Bob +Clayton +Jimmy +Stanley +Woodrow +Aubrey +Grover +Tommie +Cleo +Clinton +Hollis +Odell +Orville +Arnold +Bernard +Claud +Dennis +Jake +Van +Francis +Jasper +Jay +Jewel +Lowell +Lynn +Mack +Marcus +Max +Odis +Owen +Roland +Dean +Ellis +Louie +Bert +Boyd +Burl +Forrest +Gilbert +Isaac +Martin +Rudolph +Thurman +Truman +Austin +Franklin +Grady +Jeff +Marshall +Sidney +Travis +Wilson +Alonzo +Bruce +Dan +Frederick +Harley +Houston +Jewell +Millard +Monroe +Perry +Winfred +Alex +Buster +Eldon +Emmett +Harmon +Wilbur +Darrell +Ervin +Glendon +Nelson +Phillip +Roscoe +Alton +Bobbie +Loy +Nathan +Olen +Rex +Wiley +Will +Alvie +Arther +Barney +Ed +Elmo +Fay +Freeman +Herschel +Irvin +Julius +Larry +Noble +Norris +Percy +Preston +Silas +Ted +Vester +Virgle +Winford +Aaron +Andy +Bud +Claudie +Cornelius +Dallas +Delton +Dewitt +Fredrick +Harrison +Jacob +Jess +Lenard +Levi +Lonzo +Matthew +Noel +Omer +Otto +Scott +Spencer +Stephen +Steve +Theo +Wilbert +Winston +Adrian +Alva +Cleveland +Dave +Davis +Delmer +Elijah +Elton +Hoyt +Isiah +Jefferson +Joel +Manuel +Nolan +Ollie +Philip +Quinton +Raymon +Riley +Roger +Rosevelt +Ruben +Timothy +Wendell +Adolph +Alexander +Arlie +Arvil +Buford +Dalton +Dick +Elvin +Elvis +Ezra +Finis +Gus +Harlin +Ivan +Jerome +Leamon +Malcolm +Moses +Napoleon +Neal +Solomon +Tony +Wade +Weldon +Adron +Alford +Benton +Carrol +Columbus +Denzil +Elwood +Evert +Felix +Granville +Hal +Hermon +Hosea +Jackie +Jackson +Joshua +Kelly +Lavern +Leland +Mitchell +Noah +Oran +Orval +Otha +Porter +Reuben +Rodney +Ronald +Royal +Ruffus +Russel +Sterling +Walker +Wilbern +Ancil +Booker +Brice +Buddy +Carlton +Cletus +Clint +Coleman +Coolidge +Dee +Duane +Edd +Elza +Elzie +Forest +Gale +Harrell +Haskell +Hurshel +Issac +Ivory +Keith +Loyal +Major +Mark +Marlin +Mckinley +Michael +Milburn +Pat +Pete +Peter +Royce +Shirley +Talmadge +Terral +Terry +Ulysses +Vance +Verlon +Webster +Wilton +Alvis +Avery +Boyce +Bryant +Carrel +Carter +Carthel +Chris +Christopher +Clay +Cyril +Denver +Dwight +Edison +Edsel +Egbert +Eli +Elisha +Enoch +Ethel +Ewell +Ferrel +Fletcher +Frankie +General +Golden +Grant +Haskel +Hilton +Howell +Ike +Irving +Isaiah +Jerrel +Johnson +Jonathan +Julian +Justin +Kennith +Kermit +King +Laverne +Lawson +Lois +Loren +Malvin +Mose +Ned +Neil +Newton +Nolen +Oren +Orin +Patrick +Rayburn +Rayford +Sammy +Teddy +Tilman +Vaughn +Warner +Waymon +Wilford +Woodson +Zane +James +William +John +Robert +Charles +George +Thomas +Willie +Joe +Henry +Harold +Billy +Roy +Edward +Paul +Jack +Eugene +Walter +Frank +Raymond +Clarence +Calvin +Albert +Joseph +Richard +Carl +Earl +David +Floyd +Kenneth +Fred +Cecil +Ralph +Arthur +Jessie +Herman +Clyde +Ray +Jimmie +Leon +Herbert +Jesse +Howard +Leroy +Lee +Samuel +Marvin +Elmer +Ernest +Louis +Junior +Charlie +Earnest +Harry +Clifford +Donald +Lloyd +Lawrence +Johnnie +Vernon +Luther +Bobby +Melvin +Wayne +Bill +Eddie +Norman +Leonard +Curtis +Leo +Chester +Doyle +Gerald +Andrew +Homer +Claude +Harvey +Troy +Lewis +Marion +Hubert +Sam +Alfred +Billie +Daniel +Bennie +Alvin +Glen +Oscar +Lester +Allen +Edgar +Jim +Otis +Archie +Edwin +Elbert +Gene +Johnny +Milton +Virgil +Clifton +Oliver +Benjamin +Dale +Johnie +Claud +Garland +Lonnie +Tommy +Jimmy +Dewey +Freddie +Nathaniel +Everett +Glenn +Tom +Willard +Jerry +Loyd +Morris +Wallace +Willis +Don +Hugh +Ira +Mack +Thurman +Coy +Leslie +Charley +Isaac +Russell +Theodore +Aubrey +Bob +Gordon +Guy +Horace +Rufus +Wesley +Arnold +Ellis +Ben +Bruce +Cleo +Sylvester +Tommie +Franklin +Grover +Roosevelt +Clayton +Julius +Martin +Warren +Wilburn +Boyd +Francis +Grady +Marcus +Max +Rex +Winfred +Bert +Odell +Orville +Roland +Sidney +Silas +Gilbert +Burl +Emmett +Jake +Roscoe +Wilbur +Bernard +Delbert +Forrest +Maurice +Odis +Olen +Perry +Pete +Sherman +Wendell +Bobbie +Ervin +Jewell +Lowell +Owen +Percy +Truman +Will +Dan +Dean +Dennis +Jay +Marshall +Moses +Preston +Stanley +Amos +Benny +Booker +Dave +Elijah +Jewel +Millard +Monroe +Royce +Sammie +Sterling +Woodrow +Alonzo +Austin +Carroll +Cleveland +Clinton +Douglas +Elmo +Fay +Jacob +Louie +Phillip +Ruben +Travis +Victor +Wilson +Boyce +Dalton +Denver +Ed +Frederick +Jeff +Jefferson +Larry +Leland +Lenard +Lynn +Nathan +Ross +Alex +Elvis +Felix +Freeman +Harrison +Herschel +Joel +Manuel +Noah +Noble +Weldon +Aaron +Alton +Bryan +Buford +Delmer +Elvin +Jess +Julian +Lamar +Mckinley +Ollie +Oren +Shelby +Tony +Arther +Claudie +Darrell +Edmond +Edsel +Eldon +Harlan +Harley +Haskell +Houston +Isiah +Jennings +Lucian +Mark +Miles +Neal +Norris +Patrick +Peter +Roger +Steve +Ted +Vance +Wilbert +Adolph +Adrian +Anthony +Arvil +Barney +Bonnie +Buddy +Emanuel +Fletcher +Hermon +Hershel +Irvin +Jethro +Joshua +Loren +Ottis +Rudolph +Vaughn +Adron +Alva +Arlis +Aron +Basil +Buster +Clarance +Clay +Dee +Elisha +Elton +Evert +Ewell +Hiram +Hobert +Hosea +Hoyt +Ivan +King +Kirby +Lonzo +Philip +Reginald +Ronald +Utah +Wiley +Arlie +Bernie +Carlos +Cleophus +Clint +Columbus +Cornelius +Dallas +Denton +Elwood +Emmitt +Ezra +Ford +Foster +Glendon +Gus +Harris +Hollis +Ivory +Jackie +Jasper +Johney +Keith +Kelley +Kennith +Lafayette +Lemuel +Lilburn +Logan +Loy +Loyal +Matthew +Merle +Milford +Napoleon +Nolen +Otho +Otto +Pat +Randall +Reuben +Sammy +Simon +Stephen +Theo +Theron +Timothy +Tyree +Van +Verna +Virgle +Wade +Waymon +Abraham +Alvie +Andy +Argus +Artis +Arvel +Aubry +Bailey +Bernice +Bradley +Bud +Buddie +Byron +Carlton +Carol +Carrol +Curley +Damon +Dewitt +Doyne +Edmon +Eldridge +Ezell +Farris +Felton +Forest +Fredrick +General +Grant +Harmon +Harvie +Henery +Hulon +Ike +Isaiah +Jerome +Jonnie +Judge +Lenord +Levi +Marlin +Mary +Matt +Milburn +Mose +Ned +Neil +Nelson +Noel +Otha +Raymon +Remmel +Riley +Rodney +Royal +Shirley +Solomon +Thurston +Verlon +Vincent +Wilfred +Winford +Winston +Zane +James +William +John +Robert +Charles +George +Willie +Billy +Thomas +Joe +Jack +Harold +Henry +Roy +Edward +Paul +Raymond +Walter +Richard +Carl +Eugene +David +Frank +Earl +Floyd +Kenneth +Joseph +Clarence +Fred +Arthur +Donald +Samuel +Gerald +Ray +Cecil +Albert +Bobby +Ralph +Herbert +Howard +Jessie +Calvin +Vernon +Herman +Louis +Leon +Charlie +Ernest +Lee +Eddie +Elmer +Johnnie +Jesse +Chester +Marvin +Jimmie +Junior +Leroy +Clyde +Billie +Andrew +Lawrence +Earnest +Lewis +Melvin +Harry +Lloyd +Bill +Leonard +Norman +Curtis +Oscar +Sam +Alvin +Lester +Homer +Wayne +Gene +Jerry +Marion +Luther +Claude +Troy +Clifford +Clifton +Doyle +Johnie +Virgil +Daniel +Leo +Hubert +Rufus +Alfred +Allen +Johnny +Loyd +Charley +Jim +Don +Edgar +Roosevelt +Willis +Harvey +Cleo +Elbert +Horace +Jimmy +Ben +Bennie +Dale +Glen +Hugh +Oliver +Freddie +Garland +Nathaniel +Otis +Lonnie +Edwin +Everett +Wesley +Alton +Benjamin +Russell +Tommie +Guy +Odell +Tom +Wilburn +Willard +Archie +Delbert +Ira +Milton +Wallace +Carroll +Glenn +Tommy +Warren +Aaron +Aubrey +Bernard +Mack +Martin +Max +Orville +Bob +Clinton +Hershel +Odis +Coy +Dewey +Leslie +Marshall +Roland +Grady +Sylvester +Claud +Ellis +Morris +Ollie +Theodore +Will +Dan +Isaac +Sherman +Sidney +Thurman +Wilbur +Elmo +Emmett +Gordon +Rudolph +Stanley +Dean +Ed +Francis +Louie +Marcus +Sammie +Amos +Buddy +Gilbert +Grover +Harley +Jackie +Maurice +Moses +Roscoe +Truman +Wilson +Bobbie +Buford +Owen +Preston +Rex +Austin +Boyce +Eldon +Franklin +Jake +Jay +Lowell +Olen +Perry +Phillip +Alonzo +Bruce +Elijah +Jasper +Monroe +Riley +Royce +Winfred +Alva +Arnold +Benny +Bert +Dave +Dwight +Edmond +Frederick +Freeman +Hollis +Jacob +Jeff +Jewel +Leland +Percy +Van +Arther +Boyd +Cleveland +Cornelius +Ervin +Felix +Hoyt +Julian +Neil +Noel +Pete +Philip +Theo +Burl +Columbus +Dallas +Delmar +Dennis +Douglas +Elvin +Forrest +Jewell +Julius +Levi +Loy +Napoleon +Otha +Roger +Ross +Ted +Travis +Vance +Byron +Carrol +Elvis +Frankie +Hermon +Isaiah +Ivan +Ivory +Kermit +Larry +Lenard +Lonzo +Millard +Mitchell +Mose +Nathan +Steve +Victor +Waymon +Wilford +Booker +Carlos +Carlton +Clayton +Denver +Duane +Elton +Harrison +Herschel +Jefferson +Jerome +Lynn +Matthew +Noble +Nolan +Rosevelt +Therman +Weldon +Wendell +Wilbert +Wiley +Arlie +Christopher +Dee +Glendon +Houston +Manuel +Mark +Mckinley +Obie +Omer +Otto +Pat +Reuben +Ruben +Shelby +Virgle +Adrian +Alex +Alford +Alvis +Bonnie +Clark +Cloyce +Dick +Edsel +Eli +Ezekiel +Gearld +Irvin +Issac +Joel +Keith +Lamar +Laurence +Nelson +Rodney +Ronald +Sammy +Silas +Stephen +Tony +Vaughn +Wade +Wilton +Winford +Adolph +Anderson +Andy +Anthony +Artie +Auther +Barney +Buster +Chris +Clarance +Clay +Darrel +Darrell +Delmer +Doris +Elmore +Elzie +Ewell +Fay +Felton +Fredrick +Gus +Harmon +Hosea +Jerald +Jess +Lavon +Lois +Loren +Mary +Miles +Murphy +Neal +Noah +Ottis +Peter +Ramon +Rayburn +Sterling +Vincent +Walker +Wardell +Wilmer +Windell +Alexander +Aron +Author +Basil +Bernice +Bernie +Betty +Cloyd +Coleman +Conley +Conrad +Coolidge +Dewell +Dorris +Edmund +Eldridge +Ernie +Everette +Evert +Ezell +Ezra +Farrell +Gail +Harrell +Hayden +Jarrell +Jethro +Junious +Junius +Kirby +Laverne +Lawerence +Lemuel +Luke +Major +Merle +Mike +Milford +Morgan +Muriel +Murray +Norris +Ocie +Oral +Othel +Patrick +Phil +Randolph +Raymon +Rogers +Rubin +Sanford +Teddy +Terry +Ulysses +Waldo +Walton +Winston +James +William +John +Charles +Robert +Billy +George +Willie +Joe +Thomas +Harold +Roy +Jack +Henry +Paul +Edward +Raymond +Frank +Richard +Eugene +Walter +Clarence +Joseph +Donald +Carl +Floyd +David +Kenneth +Earl +Albert +Bobby +Fred +Ralph +Arthur +Charlie +Billie +Eddie +Clyde +Lee +Jessie +Cecil +Jimmie +Ray +Calvin +Howard +Herman +Louis +Bill +Junior +Ernest +Vernon +Leroy +Chester +Samuel +Herbert +Melvin +Johnnie +Jesse +Gerald +Harry +Elmer +Doyle +Curtis +Marvin +Lloyd +Gene +Andrew +Leon +Alfred +Leonard +Sam +Wayne +Norman +Virgil +Alvin +Clifford +Luther +Loyd +Lawrence +Oscar +Edgar +Homer +Clifton +Johnny +Leo +Harvey +Lester +Bennie +Claude +Don +Otis +Troy +Jerry +Jimmy +Johnie +Marion +Lewis +Wallace +Allen +Roosevelt +Benjamin +Dale +Tommy +Willard +Ben +Edwin +Freddie +Lonnie +Earnest +Elbert +Jim +Nathaniel +Archie +Horace +Oliver +Daniel +Glen +Hubert +Isaac +Rufus +Dewey +Glenn +Ira +Tom +Alton +Burl +Mack +Charley +Cleo +Coy +Milton +Rudolph +Thurman +Delbert +Leslie +Bob +Hershel +Morris +Rex +Wilburn +Austin +Carroll +Guy +Hugh +Russell +Tommie +Travis +Willis +Dallas +Everett +Roland +Warren +Will +Franklin +Jay +Larry +Stanley +Sylvester +Wesley +Arnold +Bruce +Ellis +Gilbert +Jasper +Olen +Truman +Douglas +Grady +Grover +Martin +Max +Orville +Sammie +Sidney +Aubrey +Bobbie +Claud +Elijah +Francis +Lenard +Marshall +Monroe +Nathan +Odell +Aaron +Boyd +Forrest +Gordon +Jewel +Louie +Maurice +Perry +Victor +Wilson +Amos +Bernard +Ervin +Garland +Jackie +Jake +Joel +Millard +Odis +Ruben +Sherman +Booker +Carlos +Clinton +Denver +Jacob +Leland +Lowell +Ollie +Julius +Ulysses +Woodrow +Benny +Buford +Cleveland +Elton +Fay +Noah +Wilbur +Alvie +Bert +Byron +Dan +Dave +Dean +Elvin +Harley +Ivan +Jess +Loy +Noble +Percy +Preston +Steve +Theodore +Virgle +Wendell +Wiley +Alva +Alvis +Darrell +Dennis +Frankie +Lois +Lonzo +Manuel +Marcus +Matthew +Roger +Ronald +Ted +Van +Wilbert +Winfred +Cornelius +Delmar +Ed +Eldon +Emmett +Hermon +Hoyt +Isiah +Jewell +Keith +Lindy +Nelson +Nolan +Pat +Peter +Phillip +Reuben +Royce +Solomon +Theo +Winston +Alonzo +Barney +Basil +Buddy +Buster +Clayton +Edmond +Edsel +Fletcher +Frederick +Hollis +Irvin +Jeff +Mckinley +Mose +Neil +Norris +Otto +Philip +Rodney +Roscoe +Ross +Sammy +Anthony +Arley +Darrel +Doyne +Elmo +Glendon +Harrison +Jerome +Levi +Lynn +Merle +Moses +Neal +Noel +Ocie +Odie +Otha +Owen +Patrick +Rosevelt +Vance +Waymon +Wilford +Adolph +Alex +Artis +Dee +Felix +Felton +Freeman +Jefferson +Jerald +Judge +Julian +Laverne +Lindbergh +Luke +Major +Miles +Rayburn +Raymon +Reginald +Riley +Shelby +Silas +Talmadge +Tony +Wade +Weldon +Al +Alford +Algie +Allan +Anderson +Aron +Arvel +Arvil +Carlton +Carrol +Cloyce +Columbus +Delmer +Duane +Forest +Gearld +Hershell +Houston +Huston +Joshua +Junius +Larence +Lemuel +Lindberg +Loyce +Lucian +Mervin +Obie +Opal +Orvil +Ozell +Pete +Ruby +Silvester +Stanford +Timothy +Verlon +Winford +Alexander +Arlie +Arlis +Artie +Berry +Boyce +Buddie +Clance +Claudie +Clay +Cleatus +Cletus +Dalton +Deward +Dewitt +Doris +Early +Eldridge +Eli +Emil +Eual +Harlan +Harmon +Harrell +Haskell +Hosea +Huey +Irving +Isaiah +Ivory +Jeffery +Jon +Lavern +Leeroy +Lex +Malvin +Mark +Mary +Morgan +Murl +Napoleon +Olan +Omer +Orval +Ottis +Randall +Rogers +Rosco +Rubin +Rudy +Shirley +Sterling +Vester +Virginia +Warner +James +William +John +Robert +Charles +Billy +George +Willie +Thomas +Joe +Jack +Harold +Roy +Edward +Henry +Bobby +Paul +Eugene +Raymond +Richard +Walter +Herbert +Earl +Donald +Kenneth +Carl +David +Frank +Fred +Ralph +Clarence +Albert +Ray +Billie +Joseph +Floyd +Howard +Samuel +Arthur +Jessie +Jimmie +Junior +Lee +Jesse +Cecil +Clyde +Herman +Vernon +Bill +Curtis +Ernest +Gerald +Louis +Eddie +Leroy +Melvin +Charlie +Alvin +Calvin +Marvin +Alfred +Chester +Harry +Johnny +Lloyd +Gene +Andrew +Luther +Wayne +Elmer +Johnnie +Jerry +Lawrence +Leon +Doyle +Harvey +Jimmy +Leo +Leonard +Hubert +Loyd +Don +Earnest +Marion +Tom +Troy +Norman +Homer +Benjamin +Horace +Freddie +Clifford +Jim +Virgil +Willis +Lewis +Tommy +Dale +Glenn +Lester +Lonnie +Bennie +Elbert +Roosevelt +Theodore +Edgar +Glen +Max +Allen +Clifton +Daniel +Sam +Milton +Bob +Oscar +Ben +Edwin +Johnie +Nathaniel +Otis +Wallace +Claude +Russell +Archie +Everett +Hugh +Willard +Alton +Grady +Jewel +Morris +Rufus +Guy +Odell +Percy +Aubrey +Bobbie +Delbert +Will +Charley +Mack +Wilburn +Coy +Dan +Dewey +Oliver +Rex +Tommie +Francis +Ira +Jake +Julius +Sidney +Stanley +Gordon +Hoover +Isaac +Jackie +Maurice +Phillip +Rudolph +Wilbur +Amos +Bernard +Buddy +Gilbert +Marshall +Monroe +Olen +Owen +Perry +Thurman +Winfred +Arnold +Claud +Cleo +Clinton +Dennis +Douglas +Ellis +Harley +Leslie +Roland +Sylvester +Buford +Carroll +Franklin +Grover +Leland +Ollie +Roger +Aaron +Frederick +Herschel +Jay +Larry +Lowell +Odis +Orville +Philip +Sherman +Theodis +Warren +Anthony +Booker +Burl +Dean +Joel +Matthew +Ronald +Wendell +Wesley +Boyd +Bruce +Carlton +Dallas +Ed +Elton +Emmett +Jasper +Lenard +Louie +Royce +Truman +Darrell +Delmer +Dwight +Elmo +Garland +Hershel +Hollis +Houston +Jeff +Loy +Tony +Travis +Van +Wilbert +Arlie +Arlis +Benny +Boyce +Byron +Columbus +Dave +Delmar +Eldon +Ervin +Freeman +Millard +Mitchell +Nelson +Pat +Patrick +Steve +Theo +Victor +Woodrow +Alex +Arther +Bud +Darrel +Denver +Elvis +Felix +Frankie +Jewell +Martin +Noel +Preston +Raymon +Ruben +Shelby +Sterling +Alva +Alvis +Bert +Cleve +Everette +Harrison +Ivan +Jefferson +Keith +Leeroy +Levi +Milburn +Nolan +Otto +Russel +Sammie +Teddy +Terry +Alexander +Alonzo +Andy +Arvil +Augustus +Austin +Cletis +Davis +Dewitt +Dick +Elgin +Fay +Glendon +Hal +Irvin +Ivory +Jacob +Jerome +Jerrel +Julian +Kennith +Lonzo +Moses +Neal +Noble +Omer +Ulysses +Wardell +Wilton +Barney +Bryant +Carlos +Clayton +Cleveland +Elmore +Elvin +Ezekiel +Ezell +Ezra +Felton +Finis +Fredrick +Glynn +Hiram +Hosea +Jackson +Juanita +Karl +Lindsey +Lucious +Luke +Mark +Napoleon +Oris +Ottis +Reuben +Sammy +Ted +Vester +Wade +Waymon +Wilber +Wilford +Wyatt +Argie +Arvin +Basil +Buck +Buster +Carrol +Clell +Curley +Dalton +Danny +Dee +Delton +Earlie +Elijah +Elisha +Elzie +Emanuel +Evert +Ewell +Forrest +Granville +Gus +Hardy +Harrell +Jerald +Johny +Laurence +Lois +Lynn +Manuel +Marlin +Mary +Maxwell +Mckinley +Michael +Obie +Odie +Olin +Opal +Orval +Otha +Otho +Pete +Randolph +Rayburn +Riley +Rosevelt +Silas +Talmage +Thad +Vance +Windle +James +William +John +Robert +Charles +Billy +George +Willie +Joe +Bobby +Thomas +Harold +Edward +Henry +Kenneth +Jack +Roy +Donald +Paul +Herbert +Richard +David +Joseph +Walter +Eugene +Raymond +Carl +Clarence +Albert +Earl +Billie +Frank +Fred +Lee +Arthur +Floyd +Jimmie +Jessie +Howard +Leroy +Ralph +Herman +Samuel +Bill +Louis +Marvin +Ernest +Leon +Vernon +Junior +Eddie +Jesse +Cecil +Curtis +Johnnie +Jimmy +Melvin +Charlie +Gene +Lloyd +Alvin +Ray +Chester +Jerry +Lawrence +Clyde +Gerald +Johnny +Harry +Alfred +Elmer +Andrew +Homer +Tommy +Wayne +Earnest +Don +Harvey +Leonard +Lewis +Oscar +Bob +Edgar +Freddie +Luther +Troy +Calvin +Lonnie +Marion +Norman +Hubert +Bennie +Clifford +Dale +Otis +Doyle +Johnie +Leo +Lester +Claude +Max +Virgil +Clifton +Glenn +Loyd +Daniel +Garland +Glen +Tom +Bobbie +Horace +Willard +Jim +Milton +Sam +Allen +Roosevelt +Willis +Ben +Nathaniel +Ronald +Stanley +Archie +Everett +Odell +Buddy +Francis +Hugh +Theodore +Edwin +Jackie +Oliver +Rufus +Russell +Tommie +Guy +Coy +Dan +Morris +Sherman +Grady +Travis +Benjamin +Charley +Delbert +Elbert +Mack +Maurice +Rex +Carroll +Dewey +Gilbert +Isaac +Jeff +Wesley +Wilburn +Arnold +Aubrey +Claud +Alex +Sidney +Steve +Wallace +Warren +Will +Clinton +Ira +Jay +Royce +Benny +Bernard +Franklin +Houston +Leslie +Martin +Roger +Alton +Dallas +Douglas +Emmett +Grover +Leland +Victor +Wiley +Alva +Dean +Ellis +Elvin +Gordon +Marshall +Noel +Ollie +Owen +Sylvester +Thurman +Booker +Bruce +Buford +Buster +Carrol +Columbus +Ed +Eldon +Ervin +Freeman +Harley +Hermon +Hershel +Jewel +Julius +Lowell +Monroe +Perry +Reuben +Roland +Ruben +Alvie +Arlie +Austin +Boyd +Jackson +Matthew +Otha +Pat +Patrick +Roscoe +Ross +Sammy +Ted +Wendell +Wilbur +Woodrow +Amos +Arther +Cleo +Dennis +Dwight +Felix +Frederick +Hoover +Hoyt +Jewell +Levi +Louie +Loy +Mary +Nelson +Sammie +Truman +Winfred +Aaron +Alonzo +Dave +Elton +Elvis +Larry +Mose +Olen +Orville +Percy +Rodney +Van +Winford +Alexander +Anthony +Barney +Burl +Byron +Donnie +Doris +Duane +Elmo +Forrest +Harrison +Hollis +Irvin +Jerome +Julian +Lenard +Odis +Pete +Rosevelt +Rudolph +Russel +Silas +Tony +Arlis +Boyce +Carlos +Cleveland +Conrad +Conway +Darrell +Denver +Elijah +Hal +Harmon +Jake +Joel +Johny +Loren +Mckinley +Merle +Moses +Napoleon +Nathan +Neil +Noah +Otho +Philip +Preston +Royal +Verlon +Weldon +Wilford +Wilton +Al +Anderson +Andy +Bert +Bryan +Carlton +Carol +Christopher +Clayton +Cletus +Dalton +Danny +Dewitt +Edd +Eldridge +Emmitt +Evert +Fay +Fletcher +Forest +Frankie +Gary +Gearld +Gus +Herschel +Jerrell +Jodie +Marcus +Mark +Maxwell +Maynard +Michael +Millard +Neal +Omer +Rayburn +Riley +Teddy +Ulysses +Virgle +Wade +Ward +Wilber +Wilbert +Wilson +Abraham +Alford +Alvis +Brooks +Burnice +Cornelius +Davie +Davis +Elisha +Ewell +Felton +Freddy +Glendon +Haskell +Ivan +Jearl +Jess +Keith +Kermit +Lavon +Lemuel +Lynn +Mathew +Mervin +Mike +Murl +Nolan +Ottis +Peter +Randolph +Rondal +Scott +Shelby +Shirley +Stephen +Terry +Theodis +Vance +Vincent +Von +Warner +Waymon +Winferd +Winston +James +William +John +Robert +Billy +Charles +Bobby +George +Willie +Harold +Joe +Thomas +Donald +Kenneth +Henry +Edward +Jack +Roy +Paul +Richard +Carl +David +Joseph +Earl +Walter +Raymond +Billie +Clarence +Eugene +Jimmie +Albert +Arthur +Howard +Ray +Frank +Lee +Floyd +Jimmy +Leon +Jerry +Bill +Ralph +Leroy +Fred +Junior +Johnnie +Eddie +Louis +Wayne +Herbert +Jesse +Herman +Lawrence +Samuel +Jessie +Cecil +Clyde +Vernon +Charlie +Marvin +Curtis +Gerald +Ernest +Gene +Johnny +Harry +Elmer +Alfred +Bob +Alvin +Calvin +Marion +Melvin +Lloyd +Oscar +Andrew +Homer +Chester +Don +Leonard +Glen +Bennie +Bobbie +Luther +Earnest +Lewis +Doyle +Leo +Otis +Harvey +Troy +Hubert +Lonnie +Tommy +Virgil +Freddie +Edgar +Horace +Norman +Jackie +Allen +Johnie +Lester +Daniel +Roosevelt +Elbert +Loyd +Sam +Claude +Clifton +Delbert +Milton +Larry +Archie +Edwin +Stanley +Dale +Glenn +Jim +Oliver +Dan +Ben +Clifford +Everett +Max +Rufus +Sylvester +Tom +Willard +Charley +Wallace +Willis +Amos +Carroll +Warren +Wesley +Maurice +Odell +Theodore +Gordon +Guy +Ronald +Arnold +Hugh +Morris +Nathaniel +Tommie +Buddy +Darrell +Ellis +Orville +Sidney +Van +Aubrey +Cleo +Douglas +Hershel +Leslie +Roger +Clinton +Emmett +Garland +Travis +Wilburn +Aaron +Dewey +Ira +Roland +Russell +Claud +Coy +Jewel +Rex +Dennis +Gilbert +Mack +Ollie +Rudolph +Sherman +Victor +Will +Winfred +Alton +Benjamin +Bruce +Forrest +Franklin +Grady +Lowell +Philip +Benny +Booker +Julius +Pete +Phillip +Roscoe +Ross +Sammie +Sammy +Ervin +Leland +Marshall +Martin +Monroe +Odis +Perry +Truman +Wilbert +Wilbur +Alonzo +Boyce +Cleveland +Columbus +Elvin +Frankie +Grover +Harley +Hollis +Irvin +Isaac +Nathan +Nelson +Owen +Patrick +Preston +Thurman +Buster +Carrol +Dean +Elvis +Felix +Francis +Hermon +Jackson +Noble +Terry +Alex +Arlie +Austin +Barney +Bernard +Boyd +Burl +Carlton +Dallas +Eldon +Ivory +Jeff +Joel +Lenard +Levi +Loy +Lynn +Noel +Parnell +Royce +Ruben +Winston +Clint +Doris +Duane +Dwight +Houston +Jay +Keith +Michael +Otto +Pat +Percy +Anthony +Buford +Carol +Clayton +Cornelius +Fletcher +Frederick +Jasper +Jess +Julian +Louie +Matthew +Millard +Neal +Otha +Reuben +Rodney +Sterling +Teddy +Virgle +Wendell +Winford +Adolph +Andy +Arvil +Bryan +Claudie +Cleophus +Curlee +Doyne +Ed +Edd +Elmo +Elton +Harlan +Hoover +Huey +Ivan +Jake +Jeremiah +Jerome +Major +Moses +Neil +Nolan +Ocie +Olen +Oren +Riley +Solomon +Ulysses +Wiley +Wilford +Wilmer +Wilson +Adell +Alford +Arther +Artie +Author +Bernie +Bert +Bonnie +Connie +Denver +Dewitt +Dorman +Ezell +Fay +Foster +Fredrick +Freeman +Harl +Harlon +Harrison +Jewell +Kirby +Leamon +Malvin +Manuel +Noah +Peter +Raymon +Rogers +Stephen +Steve +Ted +Walker +Wilton +Woodrow +Al +Alva +Alvie +Birl +Brooks +Byron +Carthel +Clay +Clois +Clovis +Darrel +Dick +Donnie +Dorsie +Doyal +Edmond +Elliott +Euel +Ezra +Finis +Forest +Gus +Haskell +Herschel +Hughie +Isiah +Jacob +Johny +Leeroy +Lincoln +Lonzo +Lorenzo +Luke +Malcolm +Marlin +Mose +Nolen +Norris +Obie +Olee +Shelby +Silas +Theo +Theodis +Tim +Tomie +Vance +Weldon +Wilbern +James +John +Charles +Robert +William +Billy +Bobby +George +Joe +Thomas +Willie +Donald +Kenneth +Harold +Paul +Jack +Raymond +David +Roy +Henry +Carl +Edward +Richard +Walter +Eugene +Jimmie +Frank +Joseph +Albert +Jimmy +Billie +Clarence +Jerry +Earl +Fred +Bill +Lee +Floyd +Eddie +Howard +Curtis +Ralph +Ray +Arthur +Leon +Herbert +Jesse +Leroy +Johnnie +Marvin +Doyle +Jessie +Vernon +Johnny +Lawrence +Samuel +Don +Gerald +Louis +Alvin +Earnest +Herman +Calvin +Tommy +Elmer +Ernest +Cecil +Charlie +Harry +Lloyd +Wayne +Junior +Oscar +Troy +Bob +Gene +Norman +Leo +Clyde +Glen +Harvey +Melvin +Marion +Alfred +Leonard +Andrew +Jim +Dale +Chester +Bennie +Homer +Lewis +Hugh +Luther +Allen +Bobbie +Freddie +Tom +Ben +Lester +Loyd +Virgil +Jackie +Johnie +Lonnie +Max +Otis +Roosevelt +Clifton +Everett +Glenn +Hubert +Clifford +Sam +Wesley +Elbert +Nathaniel +Russell +Claude +Edwin +Larry +Milton +Benjamin +Horace +Mack +Travis +Archie +Buddy +Franklin +Sammie +Tommie +Willis +Charley +Ira +Oliver +Stanley +Thurman +Willard +Alton +Odis +Sylvester +Wallace +Morris +Carroll +Dean +Edgar +Amos +Bernard +Douglas +Gordon +Lowell +Wilburn +Burl +Delbert +Grover +Guy +Martin +Ronald +Ted +Dewey +Gilbert +Monroe +Sidney +Theodore +Dan +Warren +Aaron +Claud +Clayton +Darrell +Harley +Perry +Aubrey +Hershel +Lenard +Maurice +Roger +Rufus +Teddy +Will +Benny +Booker +Boyce +Clinton +Columbus +Coy +Daniel +Donnie +Dwight +Isaac +Jewel +Nathan +Percy +Roland +Arnold +Boyd +Bruce +Carrol +Cleo +Dallas +Emmett +Francis +Garland +Jeff +Leland +Ollie +Orville +Pat +Ruben +Sammy +Victor +Cleveland +Ed +Isiah +Jake +Joel +Julius +Leslie +Noel +Steve +Wilbert +Alex +Arlis +Arther +Dennis +Frederick +Gary +Harrison +Herschel +Irvin +Jay +Marshall +Odell +Owen +Patrick +Phillip +Preston +Roscoe +Truman +Wendell +Winfred +Barney +Bonnie +Buford +Dalton +Darrel +Frankie +Grady +Hollis +Louie +Mary +Pete +Shirley +Wiley +Austin +Moses +Otha +Rex +Royce +Sherman +Silas +Theodis +Tony +Ulysses +Wilbur +Al +Bert +Carlton +Carol +Danny +Dave +Elton +Elvin +Elvis +Hal +Harris +Houston +Jasper +Jewell +Ottis +Porter +Rudolph +Simon +Sterling +Van +Walker +Waymon +Winford +Arvil +Carlos +Cornelius +Edd +Ellis +Ervin +Hermon +Ivory +Jackson +Jacob +Jess +Kennith +Levi +Lynn +Malcolm +Matthew +Neal +Olen +Omer +Ross +Wade +Alonzo +Alva +Alvie +Alvis +Andy +Arley +Arlie +Artis +Buster +Cletis +Clovis +Donal +Dudley +Edmond +Eldon +Elisha +Emmitt +Finis +Forest +Fredrick +Jerome +Karl +Kelly +Lonzo +Loy +Luke +Major +Marlin +Mckinley +Mike +Millard +Noah +Odie +Philip +Riley +Rogers +Rosevelt +Shelby +Terry +Theo +Timothy +Winston +Abraham +Adron +Alexander +Ardell +Arlin +Arvel +Beryl +Byron +Chris +Claudie +Cletus +Cloyce +Conway +Dick +Dorsey +Dwain +Edsel +Elmore +Elzie +Emanuel +Ernie +Ezra +Farris +Fay +Felix +Forrest +Freddy +Harlan +Harmon +Ivan +Jerald +Jerrel +Jerrell +Julian +Kay +Keith +Kenith +Kermit +Lemuel +Lyle +Marcus +Murl +Murry +Myron +Nelson +Norris +Ocie +Oran +Orval +Orvil +Othell +Quinton +Stephen +Wardell +Wilford +Willam +Wilson +Woodrow +James +Charles +Robert +John +William +Billy +Bobby +George +Willie +Donald +Joe +Harold +Thomas +Kenneth +David +Edward +Richard +Paul +Roy +Carl +Jack +Jimmy +Henry +Jimmie +Jerry +Raymond +Walter +Frank +Albert +Earl +Eugene +Joseph +Clarence +Eddie +Lee +Leon +Arthur +Junior +Floyd +Ray +Johnny +Bill +Herbert +Don +Fred +Leroy +Cecil +Franklin +Tommy +Marvin +Melvin +Samuel +Gerald +Wayne +Billie +Jessie +Ralph +Curtis +Louis +Howard +Vernon +Calvin +Bob +Herman +Johnnie +Charlie +Clyde +Doyle +Chester +Ernest +Gene +Norman +Alfred +Earnest +Alvin +Harry +Leonard +Andrew +Lawrence +Glen +Harvey +Lloyd +Luther +Jesse +Lonnie +Roosevelt +Dale +Larry +Sam +Jim +Marion +Freddie +Lewis +Virgil +Elmer +Leo +Bennie +Lester +Otis +Ronald +Loyd +Jackie +Johnie +Edwin +Oscar +Claude +Hubert +Nathaniel +Allen +Bobbie +Ben +Clifford +Edgar +Everett +Homer +Ira +Max +Sylvester +Clifton +Daniel +Elbert +Glenn +Sammie +Milton +Carroll +Oliver +Russell +Troy +Tom +Delbert +Horace +Wesley +Archie +Dan +Sammy +Willis +Cleo +Lowell +Buddy +Charley +Dewey +Gilbert +Hugh +Tommie +Wallace +Willard +Aaron +Aubrey +Benjamin +Bruce +Douglas +Odell +Phillip +Roland +Rufus +Stanley +Travis +Alton +Francis +Garland +Grady +Guy +Mack +Maurice +Rex +Booker +Ervin +Hershel +Morris +Perry +Roger +Sherman +Benny +Darrell +Ellis +Isaac +Sidney +Ted +Thurman +Victor +Austin +Clinton +Dallas +Joel +Julius +Leslie +Marshall +Martin +Frankie +Orville +Wilbert +Amos +Arnold +Buford +Dennis +Denver +Jasper +Pat +Truman +Van +Alonzo +Cleveland +Donnie +Forrest +Jake +Jeff +Steve +Warren +Wendell +Wilburn +Bert +Burl +Dwight +Ed +Emmett +Gary +Gordon +Jewel +Odis +Royce +Wilbur +Winston +Boyce +Clayton +Dave +Dean +Eldon +Elijah +Felix +Grover +Levi +Nathan +Ollie +Pete +Philip +Preston +Rosevelt +Rudolph +Theodore +Tony +Virgle +Winfred +Alex +Coy +Dick +Herschel +Hollis +Huey +Jay +Loy +Michael +Napoleon +Nelson +Olen +Owen +Ruben +Weldon +Barney +Boyd +Carrol +Claud +Elton +Harley +Houston +Jefferson +Jess +Julian +Keith +Lenard +Louie +Malvin +Marcus +Noah +Noel +Oneal +Patrick +Sterling +Teddy +Terry +Theodis +Ulysses +Wardell +Wiley +Will +Anthony +Arlis +Artis +Bernard +Betty +Carlos +Clark +Columbus +Frederick +Glendon +Harrison +Ivan +Jewell +Lois +Lynn +Mark +Matthew +Miles +Rodney +Silas +Abraham +Carlton +Cornelius +Elmo +Ezell +Grant +Hal +Hosea +Kennith +Leland +Milburn +Monroe +Neil +Orval +Percy +Ramon +Theo +Vance +Vester +Williams +Al +Arlen +Arlie +Arther +Buster +Carthel +Claudie +Clovis +Conrad +Elvin +Elvis +Emanuel +Frances +Freeman +Harlan +Ivory +Jerome +Jerrel +Lavern +Malcolm +Mckinley +Melton +Mose +Moses +Otto +Randall +Reginald +Reuben +Roscoe +Ross +Wade +Wilson +Winford +Woodrow +Adam +Alford +Alvis +Andy +Ardell +Audrey +Auther +Author +Bryan +Byron +Christopher +Dalton +Damon +Danny +Dwain +Early +Ernie +Everette +Farrell +Gearld +Gloria +Granville +Hardy +Harvie +Haskell +Hobert +Hoover +Hoy +Huston +Isaiah +Jackson +Jacob +Jeffery +Jerald +Jodie +Jose +Joy +Kirby +Lamar +Loren +Loyal +Luke +Lyle +Lyndell +Mac +Marlin +Merle +Mike +Mitchell +Morgan +Neal +Noble +Nolan +Oather +Obie +Otha +Ottis +Porter +Rowland +Scottie +Shirley +Simon +Tillman +Timothy +Verlon +Vernell +Zane +James +Charles +Billy +John +William +Robert +Bobby +George +Willie +Thomas +Donald +Joe +Harold +Richard +Kenneth +Edward +Roy +Jimmy +Paul +Jerry +David +Carl +Henry +Franklin +Jimmie +Jack +Frank +Raymond +Walter +Eugene +Floyd +Don +Albert +Bill +Lee +Clarence +Earl +Joseph +Ralph +Johnny +Fred +Ray +Gerald +Jessie +Louis +Vernon +Arthur +Howard +Billie +Doyle +Leon +Eddie +Marvin +Samuel +Tommy +Herbert +Leroy +Bob +Curtis +Jesse +Wayne +Gene +Herman +Johnnie +Melvin +Lawrence +Cecil +Norman +Charlie +Clyde +Jim +Roosevelt +Glen +Leonard +Andrew +Dale +Harry +Marion +Alfred +Chester +Freddie +Alvin +Elmer +Lewis +Ernest +Jackie +Calvin +Junior +Luther +Leo +Lloyd +Bennie +Ronald +Larry +Lonnie +Clifford +Troy +Daniel +Darrell +Travis +Carroll +Clifton +Glenn +Loyd +Sam +Harvey +Archie +Lester +Oscar +Bobbie +Douglas +Earnest +Homer +Tom +Dan +Otis +Virgil +Dennis +Ira +Tommie +Wallace +Horace +Johnie +Russell +Ben +Benny +Stanley +Allen +Arnold +Hubert +Nathaniel +Willis +Charley +Edgar +Guy +Mack +Morris +Teddy +Theodore +Roger +Buddy +Everett +Hugh +Max +Willard +Coy +Elbert +Maurice +Warren +Wilburn +Claude +Milton +Sammie +Sylvester +Wesley +Hershel +Oliver +Clinton +Garland +Gary +Lynn +Phillip +Rufus +Sammy +Will +Bruce +Edwin +Ellis +Gilbert +Gordon +Sherman +Sidney +Burl +Dewey +Francis +Jewel +Leslie +Rex +Wendell +Alton +Amos +Benjamin +Booker +Carlton +Claud +Cleo +Delbert +Duane +Felix +Jay +Monroe +Ollie +Van +Boyce +Dean +Huey +Lowell +Ted +Denver +Elvin +Grady +Keith +Loy +Martin +Odell +Olen +Percy +Royce +Terry +Victor +Wilbert +Donnie +Dwight +Elmo +Ervin +Forrest +Frankie +Frederick +Isaac +Orville +Owen +Patrick +Ruben +Weldon +Aubrey +Bernard +Boyd +Byron +Carlos +Kennith +Nathan +Odis +Peter +Preston +Shelby +Thurman +Doyne +Ed +Emmett +Ivan +Jerald +Joel +Lenard +Pat +Pete +Roland +Roscoe +Steve +Winford +Winston +Arlie +Austin +Carol +Claudie +Columbus +Delmer +Derrell +Eldon +Fay +Freddy +Freeman +Grover +Harrison +Houston +Jasper +Jeff +Jewell +Louie +Neal +Norris +Sterling +Wilbur +Anderson +Carrol +Clayton +Dalton +Dwain +Elijah +Forest +Hollis +Ivory +Leland +Lemuel +Mark +Marshall +Mckinley +Noel +Perry +Philip +Timothy +Tony +Wilson +Arlis +Barney +Bonnie +Buster +Cleveland +Dallas +Damon +Dorsey +Elton +Ezell +Farrell +Fredrick +Grant +Hal +Harley +Hoyt +Julius +Leeroy +Lon +Lyle +Manuel +Mary +Moses +Nelson +Rodney +Rosevelt +Rudolph +Sanford +Ulysses +Vance +Winfred +Aaron +Abraham +Alex +Alonzo +Bert +Burton +Clark +Cleophas +Cletus +Danial +Danny +Darrel +Delma +Delton +Dick +Doy +Doyce +Edmond +Edsel +Emil +Ezra +Gaylon +Gus +Harlan +Jefferson +Lenord +Leodis +Levi +Lindell +Lorenzo +Malcolm +Matthew +Milburn +Neil +Noble +Ocie +Omer +Orvil +Rayburn +Reginald +Ross +Rubin +Sonny +Truman +Wade +Watson +Woodrow +Allie +Alva +Arther +Basil +Bernice +Billey +Buford +Burley +Cal +Chris +Conrad +Dave +Davie +Dewayne +Dorothy +Dwayne +Early +Edmund +Eli +Felton +Glendon +Granville +Harrel +Harvie +Haskell +Hayden +Hurley +Isaiah +Jackson +Jerome +Jonathan +Justin +Karl +Leamon +Loyce +Major +Merle +Mitchell +Napoleon +Ned +Nicholas +Nick +Noah +Nolan +Obie +Olin +Oren +Otha +Otto +Randall +Reece +Riley +Simon +Stephen +Talmadge +Theo +Theodis +Verl +Verlon +Virgle +Wilford +Wilmer +James +Charles +Billy +John +Robert +William +Bobby +Donald +Joe +George +Harold +Jimmy +Willie +Thomas +Kenneth +Richard +Jerry +David +Carl +Paul +Roy +Jack +Henry +Jimmie +Walter +Eugene +Edward +Bill +Johnny +Frank +Albert +Lee +Raymond +Don +Franklin +Curtis +Floyd +Clarence +Tommy +Earl +Eddie +Joseph +Wayne +Arthur +Fred +Leroy +Ralph +Ray +Gerald +Bob +Johnnie +Howard +Leon +Louis +Ernest +Jackie +Herman +Jim +Marvin +Vernon +Billie +Doyle +Freddie +Lawrence +Samuel +Clyde +Harry +Alvin +Charlie +Herbert +Jessie +Melvin +Glen +Jesse +Larry +Gene +Lloyd +Troy +Alfred +Cecil +Dale +Leo +Ronald +Bennie +Elmer +Homer +Chester +Junior +Calvin +Max +Luther +Earnest +Lonnie +Norman +Lewis +Lester +Roosevelt +Darrell +Leonard +Allen +Benny +Daniel +Claude +Otis +Sam +Marion +Andrew +Bobbie +Everett +Johnie +Loyd +Travis +Warren +Hubert +Oscar +Elbert +Harvey +Nathaniel +Willard +Glenn +Russell +Virgil +Willis +Carroll +Douglas +Edwin +Horace +Tom +Dennis +Roger +Teddy +Archie +Buddy +Garland +Milton +Sylvester +Edgar +Gary +Morris +Wallace +Clifford +Rufus +Clifton +Dewey +Guy +Hugh +Leslie +Odell +Rex +Ben +Benjamin +Sammy +Tommie +Wesley +Bruce +Coy +Gordon +Jay +Jewel +Stanley +Wendell +Booker +Ira +Isaac +Oliver +Perry +Ted +Theodore +Victor +Dean +Huey +Maurice +Monroe +Dan +Doyne +Marshall +Martin +Noel +Royce +Wilburn +Arnold +Danny +Freddy +Grady +Jasper +Jewell +Millard +Odis +Preston +Sammie +Sidney +Thurman +Amos +Boyce +Charley +Ellis +Emmett +Ervin +Julius +Leland +Louie +Mack +Mike +Orville +Owen +Phillip +Alex +Alton +Clinton +Darrel +Donnie +Francis +Joel +Lowell +Truman +Alonzo +Arther +Bernard +Cleo +Dallas +Eldon +Elton +Frankie +Harley +Mary +Olen +Percy +Ronnie +Weldon +Aaron +Aubrey +Burl +Claud +Delbert +Hershel +Jerome +Nathan +Pat +Raymon +Reuben +Roscoe +Rudolph +Shelby +Sherman +Barney +Buford +Carlton +Carol +Dave +Dick +Ed +Forrest +Gilbert +Grover +Matthew +Van +Waymon +Wilbert +Winfred +Alva +Austin +Claudie +Clayton +Columbus +Dwight +Elmo +Harlan +Keith +Lenard +Levi +Loy +Lynn +Merle +Pete +Sterling +Terry +Wilbur +Will +Woodrow +Anthony +Bert +Boyd +Donal +Dorothy +Elvis +Hollis +Hosea +Hoyt +Kelly +Kennith +Laverne +Otha +Patrick +Rodney +Roland +Vance +Wade +Betty +Bonnie +Byron +Clay +Cleveland +Dee +Denver +Doyce +Edmond +Emanuel +Frederick +Hermon +Ivory +Jefferson +Jerrell +Lavern +Marcus +Maxie +Neal +Odie +Ollie +Peter +Porter +Riley +Rosevelt +Ruben +Russel +Silas +Steve +Theo +Tony +Vaughn +Verlon +Wiley +Winston +Alford +Alvie +Alvis +Andy +Arlie +Carrol +Cletis +Cloyd +Connie +Cornelius +Denzil +Dorsey +Elijah +Farrell +Fay +Forest +Gaylon +Gearld +Grant +Hal +Harrell +Isaiah +Ivan +Jeff +Leamon +Malcolm +Marlin +Mckinley +Michael +Morgan +Moses +Noah +Oral +Orvil +Ross +Ruby +Stephen +Theodis +Thurston +Von +Ward +Wilton +Windell +Abe +Alan +Allan +Alphonso +Anderson +Avery +Burley +Carlos +Clark +Cleophus +Clois +Curley +Delmar +Delmer +Delton +Dillard +Donell +Duane +Dwain +Eli +Eligah +Elisha +Elvin +Everette +Felton +Fletcher +Fredrick +Georgie +Harvy +Hershell +Houston +Jacob +Jake +June +Kirby +Lafayette +Leeroy +Lemuel +Logan +Lois +Lyle +Manuel +Mark +Merrill +Mervin +Mickey +Noble +Nolan +Philip +Quinton +Robbie +Royal +Rubin +Simon +Solomon +Spencer +Talmadge +Vester +Wilson +Winford +James +Charles +Billy +John +Robert +William +Bobby +Donald +Joe +George +Jimmy +Willie +Thomas +Jerry +Harold +Richard +Kenneth +David +Paul +Edward +Henry +Jimmie +Carl +Roy +Bill +Johnny +Don +Jack +Walter +Raymond +Earl +Clarence +Eugene +Frank +Albert +Leroy +Floyd +Wayne +Gerald +Arthur +Joseph +Tommy +Ralph +Howard +Cecil +Lee +Marvin +Fred +Louis +Bob +Eddie +Johnnie +Ray +Clyde +Charlie +Ernest +Jackie +Jesse +Leon +Samuel +Curtis +Herman +Jim +Jessie +Gene +Doyle +Franklin +Ronald +Billie +Norman +Melvin +Vernon +Herbert +Alvin +Freddie +Larry +Dale +Huey +Alfred +Glenn +Glen +Harvey +Lawrence +Earnest +Harry +Junior +Bennie +Leonard +Lloyd +Max +Troy +Carroll +Elmer +Roosevelt +Calvin +Chester +Buddy +Darrell +Clifford +Marion +Russell +Daniel +Oscar +Andrew +Loyd +Travis +Claude +Sam +Virgil +Wallace +Lewis +Hubert +Lester +Lonnie +Luther +Horace +Tommie +Allen +Leo +Sammy +Tom +Dan +Odell +Roger +Stanley +Wesley +Edgar +Elbert +Gary +Otis +Sidney +Benny +Delbert +Edwin +Homer +Benjamin +Nathaniel +Archie +Ben +Douglas +Milton +Donnie +Everett +Hugh +Johnie +Morris +Willard +Sylvester +Bruce +Coy +Dennis +Lowell +Mack +Phillip +Bobbie +Cleo +Clifton +Guy +Oliver +Willis +Perry +Roland +Darrel +Isaac +Owen +Pat +Rex +Sherman +Warren +Arnold +Danny +Dewey +Ellis +Freddy +Ira +Keith +Van +Winfred +Alton +Maurice +Rufus +Theodore +Thurman +Dean +Gordon +Jay +Jewell +Martin +Sammie +Teddy +Cleveland +Grady +Hershel +Aubrey +Clinton +Eldon +Emmett +Garland +Gilbert +Joel +Julius +Ted +Terry +Wilburn +Boyce +Carlton +Jewel +Marshall +Noel +Percy +Preston +Ronnie +Dwight +Francis +Jasper +Leslie +Loy +Lynn +Michael +Monroe +Nathan +Odis +Orville +Royce +Aaron +Carlos +Charley +Dallas +Doyne +Duane +Grover +Hoyt +Ivan +Marcus +Philip +Shirley +Wade +Wendell +Alvis +Bernard +Byron +Delmar +Elvin +Ervin +Forrest +Gaylon +Ivory +Leland +Levi +Mitchell +Napoleon +Patrick +Ruben +Steve +Tony +Will +Burl +Dwayne +Felix +Fredrick +Jerome +Matthew +Millard +Randall +Ross +Silas +Stephen +Victor +Wilbur +Wiley +Amos +Barney +Betty +Carrol +Claudie +Clayton +Dave +Dewayne +Donal +Edmond +Frederick +Harley +Henderson +Hermon +Hollis +Jeff +Jess +Julian +Kennith +Kermit +Lenard +Lonzo +Louie +Neal +Nelson +Norris +Rodney +Theo +Ulysses +Alonzo +Anthony +Arlis +Austin +Bert +Carol +Carrell +Claud +Denver +Ed +Elton +Farrell +Fay +Herschel +Karl +Loren +Lyle +Mike +Olen +Ollie +Rayburn +Rogers +Shelby +Sonny +Taylor +Truman +Vester +Waymon +Weldon +Wilson +Winford +Adam +Adell +Arther +Artie +Artis +Autry +Booker +Bud +Buford +Columbus +Connie +Conrad +Edsel +Emery +Evert +Farris +Frankie +Garry +Jacky +Jake +Jefferson +Jerrel +Jon +Leandrew +Leeroy +Malvin +Mark +Marlin +Mary +Maxie +Moses +Otha +Peter +Randolph +Raymon +Riley +Roscoe +Ruby +Theodis +Timothy +Winston +Acie +Alex +Alford +Brooks +Burley +Cleophus +Dewell +Dewitt +Elijah +Enoch +Ezell +Ferrell +Fletcher +Forest +Gale +Gearld +Glynn +Harris +Haskell +Hosea +Houston +Huston +Jacob +Jonathan +Lacy +Lamar +Lawerence +Lindsey +Malcolm +Manuel +Melton +Milford +Mose +Noah +Noble +Nolan +Othel +Ottis +Reuben +Sanford +Sterling +Vance +Verlin +Wilbert +Wilford +Woodrow +James +Charles +John +Billy +Robert +William +Bobby +Donald +Joe +Jimmy +Jerry +George +Willie +Thomas +Harold +David +Roy +Kenneth +Richard +Carl +Jimmie +Paul +Henry +Edward +Tommy +Raymond +Jack +Walter +Johnny +Joseph +Albert +Don +Frank +Eugene +Bill +Earl +Lee +Leroy +Gerald +Fred +Leon +Eddie +Marvin +Clarence +Ray +Wayne +Franklin +Howard +Curtis +Jesse +Freddie +Ralph +Arthur +Louis +Herman +Jessie +Ronald +Samuel +Jackie +Vernon +Doyle +Ernest +Johnnie +Charlie +Clyde +Floyd +Billie +Melvin +Cecil +Larry +Bob +Gene +Alvin +Alfred +Troy +Dale +Calvin +Gary +Glen +Leonard +Lloyd +Andrew +Elmer +Norman +Bennie +Herbert +Jim +Lewis +Earnest +Harry +Junior +Lawrence +Chester +Harvey +Lonnie +Sam +Lester +Roger +Travis +Benny +Daniel +Marion +Willard +Donnie +Roosevelt +Russell +Homer +Leo +Luther +Oscar +Allen +Nathaniel +Hugh +Max +Virgil +Willis +Claude +Delbert +Loyd +Tom +Bobbie +Elbert +Glenn +Clifford +Darrell +Otis +Archie +Carroll +Lowell +Dewey +Everett +Johnie +Wendell +Wesley +Ben +Dennis +Edgar +Horace +Theodore +Wallace +Buddy +Sammy +Dan +Sammie +Leslie +Morris +Rufus +Stanley +Sylvester +Tommie +Benjamin +Huey +Joel +Phillip +Sidney +Warren +Edwin +Frankie +Grady +Thurman +Clinton +Douglas +Orville +Rex +Ronnie +Sherman +Terry +Aaron +Alton +Bruce +Clifton +Coy +Gilbert +Grover +Hershel +Hubert +Ira +Mack +Maurice +Michael +Perry +Gordon +Jeff +Victor +Charley +Dallas +Elton +Martin +Milton +Odell +Philip +Wilburn +Aubrey +Bernard +Danny +Frederick +Garland +Isaac +Noel +Oliver +Owen +Percy +Royce +Ted +Teddy +Wilson +Amos +Harley +Jewel +Louie +Nelson +Patrick +Preston +Ruben +Wilbur +Will +Carlton +Claud +Claudie +Cleo +Dave +Dewayne +Elvin +Emmett +Ervin +Guy +Leland +Marshall +Nathan +Pat +Shirley +Waymon +Austin +Booker +Carrol +Clayton +Columbus +Darrel +Dean +Duane +Felix +Freddy +Jay +Jerome +Jon +Lenard +Mark +Odis +Roscoe +Steve +Theodis +Winfred +Alva +Barney +Clark +Ellis +Francis +Julius +Keith +Moses +Ollie +Roland +Shelby +Wilbert +Alonzo +Andy +Arnold +Bert +Bonnie +Burl +Buster +Carol +Dalton +Delmar +Delmer +Doyce +Eldon +Herschel +Hollis +Jerald +Joy +Landon +Matthew +Mike +Neal +Neil +Peter +Rodney +Van +Arther +Buford +Cleveland +Conrad +Denver +Elmo +Glynn +Irvin +Ivan +Jasper +Jeremiah +Jess +Jewell +Kelly +Kennith +Levi +Loy +Luke +Marcus +Millard +Raymon +Rosevelt +Ulysses +Wade +Winston +Alan +Arlis +Boyce +Byron +Cornelius +Dick +Elvis +Emanuel +Eulis +Ewell +Gaylon +Hosea +Ivory +Lamar +Lindell +Lonzo +Lynn +Mary +Mitchell +Norris +Olen +Sonny +Tony +Truman +Winford +Alford +Anthony +Arlie +Boyd +Buck +Bud +Carlos +Clarance +Cloyce +Connie +Delton +Donal +Doyne +Dwight +Ed +Edmond +Elijah +Ezra +Fletcher +Forest +Forrest +Gayle +Hardy +Harmon +Harrison +Jan +Jefferson +Lex +Loren +Manuel +Marlin +Noble +Nolan +Odie +Orval +Otha +Ottis +Ozell +Prentice +Reuben +Rondal +Rosco +Rudolph +Sherrill +Silas +Solomon +Theo +Wiley +Williams +Wylie +James +Charles +John +Robert +William +Billy +Bobby +Donald +Joe +Jerry +Jimmy +George +Willie +Thomas +Kenneth +Harold +Carl +David +Richard +Jimmie +Paul +Henry +Roy +Raymond +Edward +Tommy +Johnny +Walter +Jack +Bill +Don +Albert +Gerald +Larry +Eugene +Fred +Earl +Joseph +Floyd +Eddie +Jackie +Frank +Clarence +Lee +Leroy +Howard +Johnnie +Jesse +Jessie +Ralph +Ronald +Wayne +Arthur +Melvin +Marvin +Bob +Cecil +Leon +Louis +Curtis +Gene +Ray +Clyde +Herman +Herbert +Lawrence +Franklin +Freddie +Jim +Ernest +Charlie +Alvin +Vernon +Glen +Dale +Doyle +Chester +Samuel +Lloyd +Norman +Troy +Earnest +Alfred +Harvey +Leonard +Donnie +Marion +Lonnie +Calvin +Daniel +Lester +Clifford +Gary +Harry +Leo +Buddy +Homer +Luther +Andrew +Benny +Lewis +Allen +Elmer +Glenn +Junior +Roger +Travis +Carroll +Loyd +Oscar +Otis +Tommie +Bennie +Edgar +Ira +Milton +Billie +Virgil +Hubert +Phillip +Sam +Joel +Max +Nathaniel +Roosevelt +Edwin +Elbert +Horace +Tom +Clifton +Darrell +Delbert +Ronnie +Warren +Bruce +Douglas +Morris +Sammy +Wallace +Dennis +Garland +Johnie +Mack +Maurice +Perry +Rex +Sylvester +Willis +Dan +Hugh +Odis +Russell +Wesley +Claude +Bobbie +Clinton +Ellis +Guy +Odell +Oliver +Sammie +Archie +Benjamin +Frederick +Hershel +Monroe +Percy +Sidney +Teddy +Terry +Willard +Alton +Cleo +Dean +Dewey +Everett +Leslie +Michael +Rufus +Theodore +Coy +Freddy +Huey +Isaac +Royce +Sherman +Stanley +Ted +Thurman +Wendell +Gilbert +Lynn +Tony +Aubrey +Austin +Carlton +Danny +Darrel +Jerome +Lowell +Theodis +Ben +Carlos +Charley +Columbus +Ervin +Frankie +Gordon +Jay +Marshall +Orville +Owen +Victor +Wilbert +Will +Carrol +Dallas +Doyne +Grady +Grover +Kennith +Noel +Shelby +Winfred +Booker +Duane +Francis +Julius +Leland +Otha +Philip +Preston +Vester +Anthony +Burl +Byron +Carol +Eldon +Elmo +Harley +Hermon +Jon +Keith +Roland +Ruben +Van +Wilford +Woodrow +Alva +Bernard +Dave +Dick +Elijah +Elvin +Ivan +Ivory +Jewel +Julian +Loy +Mark +Martin +Norris +Riley +Rodney +Shirley +Sterling +Steve +Aaron +Alex +Alonzo +Amos +Arther +Berry +Boyce +Clark +Clayton +Dwight +Emmett +Isaiah +Jeff +Lonzo +Maxie +Millard +Patrick +Rudolph +Wilburn +Wilson +Alvis +Anderson +Arvin +Betty +Delmer +Denver +Donal +Doris +Elton +Everette +Ezell +Forrest +Gaylon +General +Glynn +Jacob +Jasper +Jewell +Lenard +Levi +Marcus +Marlin +Mary +Napoleon +Neil +Noah +Ollie +Pat +Randall +Tillman +Truman +Virgle +Waymon +Windell +Al +Alan +Allan +Arlis +Arnold +Buster +Clarance +Cleveland +Dalton +Darnell +Denzil +Doyce +Ed +Elroy +Elvis +Emery +Harmon +Hollis +Jess +Joshua +Lavern +Mike +Nathan +Nolan +Peter +Porter +Rosevelt +Sonny +Talmadge +Arlie +Barney +Benjiman +Boby +Boyd +Carson +Claud +Conrad +Dempsey +Dewayne +Dexter +Edmond +Eulis +Farrell +Felix +Felton +Frances +Gail +Garry +Gus +Harlin +Haskell +Hosea +Hosie +Houston +Jake +Jerrell +Joyce +Karl +Kay +Lamar +Loren +Louie +Mac +Matthew +Melton +Miles +Mitchell +Nelson +Ocie +Olen +Ottis +Randal +Reuben +Timothy +Ulysses +Weldon +James +Charles +John +Robert +William +Billy +Bobby +Donald +Jerry +Jimmy +Joe +George +Thomas +Willie +David +Kenneth +Harold +Richard +Paul +Carl +Johnny +Tommy +Edward +Roy +Jack +Larry +Henry +Jimmie +Raymond +Walter +Don +Gerald +Joseph +Ronald +Lee +Earl +Bill +Frank +Eddie +Eugene +Wayne +Clarence +Fred +Arthur +Gene +Howard +Floyd +Ralph +Albert +Jackie +Jessie +Marvin +Ray +Curtis +Gary +Freddie +Herman +Leon +Alvin +Jesse +Dale +Leroy +Louis +Cecil +Clyde +Herbert +Bob +Jim +Doyle +Melvin +Samuel +Ernest +Franklin +Johnnie +Norman +Harvey +Vernon +Alfred +Calvin +Charlie +Lloyd +Lester +Benny +Harry +Lewis +Troy +Elmer +Glen +Lawrence +Earnest +Leonard +Marion +Carroll +Darrell +Loyd +Roger +Andrew +Allen +Clifford +Homer +Otis +Hubert +Oscar +Douglas +Ben +Bennie +Billie +Chester +Lonnie +Buddy +Glenn +Virgil +Max +Terry +Daniel +Junior +Phillip +Roosevelt +Alton +Benjamin +Donnie +Edgar +Morris +Bobbie +Luther +Nathaniel +Sam +Stanley +Michael +Tommie +Willis +Danny +Joel +Ronnie +Sammy +Clifton +Coy +Ellis +Leo +Odell +Russell +Wallace +Delbert +Dewey +Edwin +Horace +Claude +Dan +Wesley +Elbert +Thurman +Aubrey +Milton +Rex +Sammie +Sylvester +Travis +Carrol +Dennis +Gilbert +Hugh +Leslie +Mack +Perry +Shelby +Sherman +Van +Boyd +Ervin +Everett +Frankie +Gordon +Johnie +Odis +Warren +Willard +Archie +Cleo +Darrel +Isaac +Sidney +Wilbur +Dean +Forrest +Hershel +Ira +Rufus +Theodore +Bruce +Clinton +Elton +Garland +Leland +Lowell +Nathan +Royce +Wilbert +Will +Dwight +Freddy +Grady +Kennith +Noel +Tom +Truman +Arnold +Boyce +Claud +Jewel +Ollie +Owen +Roland +Alex +Amos +Booker +Dee +Francis +Frederick +Gaylon +Grover +Guy +Julius +Marcus +Pat +Rodney +Steve +Teddy +Wilburn +Winfred +Barney +Burl +Charley +Dick +Keith +Maurice +Mike +Oliver +Orville +Patrick +Andy +Austin +Basil +Clayton +Cornelius +Harrison +Hollis +Jerome +Lynn +Manuel +Olen +Ruben +Theodis +Tony +Woodrow +Alonzo +Arther +Bernard +Carlton +Claudie +Connie +Dallas +Eldon +Elijah +Emmett +Fredrick +Herschel +Jasper +Jeff +Loy +Martin +Moses +Philip +Preston +Rayburn +Reuben +Shirley +Allan +Anthony +Barry +Bert +Carol +Curtiss +Dave +Donal +Duane +Ed +Everette +Fletcher +Harrell +Hermon +Jay +Karl +Louie +Marshall +Mitchell +Percy +Roscoe +Ross +Rubin +Ted +Vance +Verlon +Wade +Winford +Alexander +Alvie +Byron +Clay +Columbus +Ezell +Gearld +Hoyt +Ivan +Jacob +Jon +Kermit +Lenard +Levi +Matthew +Neal +Noah +Noble +Norris +Otha +Porter +Randall +Riley +Russel +Stephen +Victor +Waymon +Wiley +Wilson +Aaron +Alva +Alvis +Arvil +Buford +Buster +Christopher +Cloyce +Delmar +Denver +Doy +Elmo +Elvin +Emanuel +Farris +Felix +Hal +Harlan +Harley +Houston +Huey +Isaiah +Jake +Jefferson +Lamar +Loren +Mark +Marlin +Mickey +Robbie +Rodger +Rudolph +Rudy +Sterling +Weldon +Al +Alan +Arden +Arlie +Arlis +Bonnie +Cletus +Cleveland +Dalton +Delmer +Doyce +Elisha +Evertt +Felton +Gale +Glynn +Helen +Ivory +Jacky +Jerald +Jerrell +Jewell +Julious +Ken +Kenny +Laverne +Leeroy +Leodis +Levester +Lois +Lucious +Malcolm +Malvin +Mary +Merle +Myron +Nolan +Ocie +Pete +Peter +Randy +Ruby +Silas +Sonny +Toney +Ulysses +Vaughn +Vester +Wendell +James +Charles +John +Robert +William +Billy +Bobby +Jerry +Donald +Jimmy +Willie +Thomas +Joe +Kenneth +David +George +Richard +Harold +Roy +Edward +Paul +Larry +Tommy +Jimmie +Johnny +Carl +Henry +Raymond +Eddie +Don +Albert +Ronald +Gerald +Bill +Walter +Ralph +Fred +Jackie +Earl +Jack +Marvin +Joseph +Arthur +Lee +Clarence +Wayne +Frank +Howard +Melvin +Ray +Eugene +Floyd +Herman +Leon +Samuel +Gary +Gene +Louis +Bob +Johnnie +Leroy +Jesse +Troy +Curtis +Alvin +Clyde +Jim +Doyle +Freddie +Lawrence +Dale +Lonnie +Norman +Cecil +Glen +Herbert +Benny +Earnest +Lloyd +Ernest +Roger +Harry +Andrew +Alfred +Lewis +Calvin +Darrell +Harvey +Vernon +Daniel +Elmer +Jessie +Carroll +Charlie +Franklin +Michael +Clifton +Marion +Glenn +Leonard +Clifford +Otis +Danny +Allen +Hubert +Loyd +Luther +Morris +Bennie +Russell +Buddy +Tommie +Claude +Douglas +Ronnie +Chester +Nathaniel +Phillip +Sylvester +Archie +Bobbie +Delbert +Roosevelt +Leo +Oscar +Tom +Willis +Donnie +Elbert +Horace +Lowell +Sammy +Wallace +Dan +Dennis +Junior +Royce +Terry +Virgil +Alton +Billie +Dewey +Edgar +Grady +Homer +Lester +Max +Odell +Sammie +Warren +Milton +Sam +Oliver +Shelby +Stanley +Teddy +Ben +Freddy +Ira +Leslie +Travis +Aubrey +Benjamin +Bruce +Carrol +Gilbert +Hugh +Nathan +Theodore +Darrel +Isaac +Lynn +Philip +Rodney +Sherman +Ted +Wesley +Willard +Aaron +Dean +Edwin +Hershel +Roland +Tony +Frankie +Guy +Julius +Marshall +Arnold +Ellis +Garland +Keith +Noel +Perry +Sterling +Thurman +Bernard +Carlton +Clinton +Coy +Ivory +Joel +Orville +Sidney +Wilburn +Amos +Carlos +Charley +Dwayne +Ervin +Everett +Louie +Olen +Percy +Steve +Burl +Claud +Dwight +Francis +Gordon +Hollis +Jewel +Jon +Mack +Patrick +Rosevelt +Ross +Rufus +Theodis +Timothy +Victor +Wendell +Eldon +Jay +Leland +Nelson +Rex +Wilbur +Bert +Boyce +Boyd +Dallas +Dave +Elijah +Elton +Elvis +Harley +Huey +Jerald +Johnie +Lenard +Manuel +Martin +Maurice +Napoleon +Preston +Waymon +Will +Cleo +Emmett +Felix +Gearld +Grover +Isiah +Jasper +Jerome +Kennith +Neil +Pat +Phil +Randall +Stephen +Alan +Allan +Alonzo +Anthony +Arlis +Clayton +Cleophus +Cleveland +Dewayne +Forrest +Frederick +Irvin +Ivan +Jacky +Julian +Karl +Mickey +Mike +Millard +Mitchell +Neal +Ollie +Owen +Wilson +Winford +Alex +Alvie +Artis +Barry +Buford +Claudie +Ed +Elvin +Jeff +Joshua +King +Lamar +Lavon +Lonzo +Mary +Noah +Norris +Odis +Peter +Raymon +Ulysses +Wilbert +Wiley +Winfred +Alva +Anderson +Austin +Barney +Booker +Clark +Columbus +Dick +Donal +Doris +Duane +Fletcher +Grant +Hal +Harris +Hermon +Hosea +Hoyt +Jake +Jewell +Laurence +Levi +Loren +Loy +Mark +Matthew +Monroe +Otha +Pete +Randolph +Riley +Silas +Truman +Wade +Adell +Al +Arlie +Arlin +Arther +Arvel +Autry +Betty +Byron +Connie +Cornell +Dannie +Davis +Delmer +Delton +Dickie +Doy +Farrell +Gale +Gaylon +Harrison +Hayward +Houston +Huston +Jerrell +Marlin +Maxie +Miles +Obie +Roscoe +Shirley +Talmadge +Theo +Tyrone +Verlin +James +Charles +John +Robert +William +Billy +Jerry +Bobby +Donald +Jimmy +Thomas +Joe +George +David +Willie +Richard +Harold +Kenneth +Larry +Paul +Roy +Johnny +Carl +Edward +Tommy +Henry +Jimmie +Don +Raymond +Walter +Gerald +Jack +Gary +Ronald +Joseph +Eddie +Frank +Bill +Earl +Floyd +Curtis +Lee +Wayne +Jesse +Leon +Wendell +Albert +Louis +Howard +Eugene +Clarence +Arthur +Fred +Melvin +Jackie +Jim +Freddie +Ernest +Ray +Ralph +Samuel +Clyde +Doyle +Bob +Gene +Dale +Franklin +Leroy +Charlie +Lawrence +Marvin +Alvin +Johnnie +Danny +Chester +Cecil +Calvin +Harvey +Jessie +Leonard +Lonnie +Michael +Harry +Earnest +Troy +Glen +Luther +Marion +Norman +Daniel +Herbert +Lewis +Lloyd +Bennie +Herman +Darrell +Elmer +Andrew +Russell +Vernon +Junior +Phillip +Donnie +Morris +Roosevelt +Alfred +Carroll +Roger +Clifton +Glenn +Edwin +Benny +Lester +Milton +Nathaniel +Ronnie +Leo +Hubert +Allen +Billie +Claude +Max +Terry +Archie +Clifford +Dennis +Mack +Ben +Oscar +Sammy +Travis +Rex +Wesley +Homer +Loyd +Otis +Buddy +Stanley +Sylvester +Wallace +Willard +Willis +Benjamin +Garland +Tom +Tommie +Arnold +Bruce +Douglas +Freddy +Oliver +Virgil +Alton +Elbert +Leslie +Lowell +Lynn +Sam +Tony +Charley +Everett +Gordon +Hershel +Odis +Delbert +Frankie +Horace +Marshall +Royce +Sherman +Carrol +Dan +Edgar +Hugh +Kennith +Maurice +Perry +Philip +Warren +Johnie +Leland +Bobbie +Coy +Jay +Sammie +Dewey +Ira +Shelby +Stephen +Ted +Woodrow +Burl +Harley +Odell +Ollie +Rufus +Steve +Booker +Dean +Elvis +Guy +Patrick +Rodney +Theodore +Cleo +Clinton +Francis +Martin +Mike +Noel +Roland +Aubrey +Carlton +Claud +Ellis +Ervin +Grady +Joel +Sonny +Teddy +Wilbur +Wilburn +Winston +Aaron +Alex +Alonzo +Amos +Anthony +Boyce +Cleveland +Darrel +Dave +Gilbert +Jerome +Jewel +Jon +Keith +Nathan +Preston +Rayburn +Roscoe +Shirley +Timothy +Wilson +Winfred +Austin +Elton +Elvin +Grover +Ivory +Julius +Louie +Manuel +Percy +Pete +Theodis +Tyrone +Van +Windell +Carol +Clayton +Dallas +Dewayne +Hermon +Jeff +Jerald +Marcus +Mary +Mickey +Nelson +Owen +Pat +Ross +Sidney +Victor +Wiley +Alvis +Arther +Carlos +Denver +Donny +Dwain +Eldon +Emmett +Gale +Isaac +Jacky +Lenard +Major +Mark +Mitchell +Nolan +Orville +Sterling +Andy +Artis +Columbus +Dewitt +Dwight +Ed +Finis +Gearld +Hoyt +Huey +Levi +Mac +Monroe +Olen +Reuben +Tillman +Truman +Weldon +Wilbert +Winford +Alan +Allan +Arlis +Barney +Bernard +Boyd +Buford +Byron +Cletis +Duane +Elzie +Emery +Emmitt +Ewell +Felix +Fredrick +Garry +Gaylon +Hardy +Harlan +Houston +Irvin +Isaiah +Ivan +Jacob +Jan +Jess +Jewell +Julian +Lemuel +Lonzo +Loren +Micheal +Ocie +Ottis +Robbie +Rudolph +Thurman +Vance +Virgle +Wade +Wilkie +Alvie +Bernie +Bert +Bonnie +Brian +Bud +Clois +Connie +Dalton +Dannie +Darwin +Dearl +Dee +Delmar +Doyne +Edmond +Elmo +Eric +Everette +Ezell +Ferrell +Forrest +Frederick +Freeman +Glynn +Harlon +Jarrell +Kelly +Kenny +Lanny +Leotis +Lon +Loy +Lyle +Lyndell +Malcolm +Matthew +Mose +Myron +Omer +Randy +Ruben +Scott +Searcy +Solomon +Steven +Terrell +Thurston +Vester +Wayman +Waymon +Wilford +Will +Woody +James +John +Charles +William +Robert +Jerry +Billy +Bobby +Jimmy +Donald +Thomas +Larry +Joe +David +George +Willie +Richard +Kenneth +Carl +Roy +Johnny +Harold +Tommy +Paul +Henry +Edward +Ronald +Jimmie +Gary +Walter +Joseph +Raymond +Curtis +Don +Frank +Earl +Eddie +Gerald +Albert +Bill +Jack +Arthur +Jackie +Floyd +Lee +Leon +Melvin +Eugene +Gene +Clarence +Louis +Wayne +Fred +Howard +Jesse +Lonnie +Bob +Ralph +Johnnie +Marvin +Samuel +Freddie +Lawrence +Norman +Ray +Doyle +Jim +Charlie +Harvey +Cecil +Michael +Dale +Jessie +Leroy +Clyde +Franklin +Calvin +Carroll +Earnest +Ernest +Herman +Danny +Phillip +Bennie +Leonard +Roger +Sammy +Vernon +Ronnie +Troy +Wendell +Alvin +Dennis +Herbert +Alfred +Lloyd +Luther +Tom +Chester +Darrell +Donnie +Glen +Harry +Andrew +Allen +Elmer +Glenn +Otis +Terry +Benny +Homer +Marion +Oscar +Alton +Clifford +Leo +Lewis +Morris +Douglas +Elbert +Milton +Roosevelt +Russell +Sam +Stanley +Travis +Virgil +Clifton +Junior +Sherman +Archie +Willis +Daniel +Lester +Loyd +Bobbie +Sylvester +Billie +Hubert +Nathaniel +Coy +Edwin +Tommie +Everett +Freddy +Sammie +Claude +Delbert +Leslie +Lynn +Max +Benjamin +Hershel +Hugh +Teddy +Gordon +Horace +Martin +Rex +Warren +Clinton +Dan +Garland +Johnie +Mike +Tony +Ben +Bruce +Dean +Joel +Mack +Marshall +Wallace +Aubrey +Buddy +Charley +Frankie +Royce +Theodore +Ellis +Isaac +Maurice +Rufus +Thurman +Odell +Oliver +Perry +Sidney +Van +Winston +Ira +Pat +Philip +Shelby +Steve +Wesley +Anthony +Boyce +Carlton +Darrel +Dewey +Elvin +Grady +Guy +Nathan +Roland +Cleo +Edgar +Elijah +Odis +Roscoe +Wilburn +Wilson +Aaron +Boyd +Dewayne +Lowell +Noel +Rodney +Ted +Woodrow +Alan +Carrol +Columbus +Francis +Garry +Grover +Leland +Marcus +Marlin +Neil +Orville +Preston +Rudolph +Stephen +Victor +Wiley +Willard +Carlos +Dickie +Ed +Frederick +Gearld +Hermon +Hollis +Ivory +Jay +Jewel +Jewell +Keith +Lenard +Mitchell +Truman +Weldon +Wilbert +Wilbur +Arnold +Bernard +Dallas +Doyne +Duane +Finis +Harrell +Jake +Jasper +Kennith +Lanny +Major +Manuel +Mary +Ross +Sanford +Theodis +Waymon +Winfred +Alex +Amos +Claud +Connie +Davis +Denver +Donny +Emmett +Gale +Irvin +Jacky +Jeff +Julius +Lindell +Mark +Melton +Monroe +Moses +Ollie +Patrick +Peter +Randall +Reuben +Spencer +Sterling +Steven +Windell +Booker +Clayton +Dwayne +Dwight +Ervin +Felix +Fredrick +Harley +Harvie +Huey +Jackson +Jerome +Jon +Louie +Loy +Matthew +Millard +Napoleon +Nelson +Norris +Rayford +Raymon +Ronny +Ruben +Timothy +Ulysses +Alexander +Alonzo +Arlie +Arther +Clarance +Clark +Clovis +Dalton +Donal +Everette +Gus +Harmon +Herschel +Houston +Jerald +Jerrel +Jerrell +Jonathan +Julian +Mac +Malvin +Maxie +Merle +Mickey +Olen +Owen +Shirley +Winford +Al +Andy +Arvil +Bernie +Berry +Burl +Byron +Carol +Carter +Cletus +Conrad +Cornelius +Dave +Delano +Delmer +Doris +Dwain +Eldon +Eli +Elisha +Eric +Forest +Forrest +Gaylon +Gilbert +Glynn +Hal +Harris +Isaiah +Ivan +Jan +Karl +Leotis +Lincoln +Lyle +Lyndell +Marlon +Milford +Neal +Percy +Pete +Randolph +Randy +Scott +Therman +Tim +Vester +Wardell +Will +James +Charles +John +Robert +William +Jerry +Billy +Bobby +Jimmy +Larry +Donald +David +Willie +Thomas +Joe +George +Richard +Kenneth +Roy +Johnny +Paul +Harold +Tommy +Edward +Raymond +Carl +Douglas +Ronald +Gary +Henry +Walter +Jimmie +Don +Gerald +Joseph +Eddie +Lee +Bill +Ronnie +Albert +Frank +Wayne +Eugene +Melvin +Curtis +Earl +Howard +Jackie +Fred +Jack +Gene +Michael +Louis +Lawrence +Arthur +Floyd +Samuel +Clarence +Jim +Leon +Jessie +Ralph +Jesse +Leroy +Franklin +Cecil +Danny +Lonnie +Marvin +Clyde +Freddie +Dennis +Sammy +Alvin +Charlie +Johnnie +Leonard +Lloyd +Alfred +Ernest +Harry +Phillip +Ray +Herman +Calvin +Troy +Bennie +Doyle +Lewis +Norman +Allen +Bob +Roger +Herbert +Stanley +Carroll +Vernon +Benny +Daniel +Sam +Clifford +Darrell +Earnest +Glen +Terry +Elmer +Lester +Russell +Harvey +Andrew +Chester +Dale +Donnie +Tommie +Homer +Junior +Oscar +Clifton +Luther +Roosevelt +Steve +Bruce +Everett +Glenn +Elbert +Freddy +Edwin +Marion +Max +Sammie +Sylvester +Wendell +Buddy +Claude +Milton +Nathaniel +Stephen +Virgil +Wallace +Mack +Tom +Frankie +Leo +Mike +Otis +Warren +Aubrey +Ben +Benjamin +Dan +Isaac +Travis +Willard +Billie +Gordon +Sherman +Horace +Sidney +Ollie +Patrick +Thurman +Delbert +Edgar +Hershel +Hugh +Loyd +Shelby +Carrol +Grover +Mac +Mickey +Theodore +Winston +Archie +Garland +Johnie +Nelson +Philip +Rex +Tony +Wesley +Willis +Clinton +Ellis +Jay +Lowell +Lynn +Aaron +Alton +Anthony +Dwight +Hubert +Joel +Leslie +Odell +Rodney +Steven +Teddy +Fredrick +Grady +Mcarthur +Victor +Barry +Bobbie +Carlos +Darrel +Louie +Mark +Martin +Oliver +Perry +Royce +Charley +Coy +Guy +Ivory +Maurice +Nathan +Odis +Orville +Pat +Ronny +Rufus +Ted +Van +Alan +Arnold +Carlton +Frederick +Gilbert +Jeff +Jerome +Jewel +Julian +Roland +Theodis +Truman +Wilbert +Winfred +Woodrow +Andy +Boyce +Carol +Dewayne +Elijah +Emmett +Garry +Ira +Marshall +Matthew +Morris +Owen +Percy +Sonny +Timothy +Wilbur +Wilson +Alex +Amos +Booker +Cleo +Dewey +Jacob +Jerald +Jon +Kennith +Reuben +Ruben +Will +Alford +Bernard +Boyd +Clark +Cleveland +Connie +Delmar +Delmer +Dick +Elton +Ervin +Gaylon +Harley +Julius +Keith +Manuel +Randall +Roscoe +Windell +Allan +Claud +Duane +Ed +Elmo +Finis +Hollis +Houston +Jewell +Joshua +Lanny +Malvin +Neal +Olen +Preston +Ross +Sterling +Alvis +Burl +Cornelius +Dalton +Dickie +Donny +Elvis +Eric +Harrison +Ivan +Jasper +Jonathan +Loy +Lyndell +Maxie +Micheal +Monroe +Noel +Peter +Phil +Randy +Rodger +Titus +Verlon +Vester +Vincent +Wade +Wayman +Arther +Arvil +Austin +Bert +Buford +Byron +Carter +Claudie +Clayton +Columbus +Dwayne +Eddy +Elvin +Evans +Felix +Felton +Forrest +Hal +Jacky +Jerrell +Jess +Ken +Leotis +Levern +Macarthur +Major +Marcus +Melton +Mose +Nicholas +Oneal +Otha +Reginald +Ron +Silas +Ulysses +Wardell +Weldon +Wilburn +Adrian +Al +Alexander +Augustus +Betty +Clearence +Cletus +Cloyce +Coleman +Dallas +Dannie +Dean +Delton +Denny +Denver +Doris +Doyce +Early +Emil +Ferrell +Francis +Freeman +Gus +Hermon +Jake +Jeffrey +Jerrel +Kenny +Kermit +Leland +Loren +Marlon +Mary +Merle +Miles +Moses +Robbie +Rosevelt +Rudolph +Terrell +Therman +Toney +Verdell +Waymon +Welton +James +Charles +John +Robert +William +Jerry +Billy +Larry +Jimmy +Bobby +David +Thomas +Donald +Richard +George +Joe +Willie +Kenneth +Johnny +Roy +Paul +Tommy +Harold +Ronald +Carl +Edward +Gary +Henry +Jimmie +Eddie +Ronnie +Raymond +Jackie +Walter +Joseph +Don +Douglas +Michael +Bill +Gerald +Albert +Danny +Jim +Jack +Frank +Earl +Clarence +Jesse +Wayne +Eugene +Melvin +Fred +Lee +Arthur +Ray +Floyd +Howard +Leon +Louis +Freddie +Clyde +Curtis +Dennis +Lonnie +Roger +Ralph +Alvin +Lawrence +Herman +Gene +Charlie +Dale +Bob +Johnnie +Marvin +Alfred +Samuel +Andrew +Harry +Allen +Franklin +Leroy +Vernon +Calvin +Cecil +Phillip +Troy +Earnest +Sammy +Terry +Bennie +Benny +Chester +Oscar +Ernest +Lloyd +Norman +Doyle +Glen +Glenn +Homer +Lewis +Herbert +Jessie +Roosevelt +Daniel +Darrell +Leonard +Carroll +Milton +Claude +Steve +Junior +Harvey +Marion +Donnie +Lester +Luther +Leo +Clifford +Dwight +Elmer +Stanley +Mike +Nathaniel +Russell +Otis +Bruce +Clifton +Stephen +Virgil +Elbert +Horace +Loyd +Mack +Philip +Sylvester +Wendell +Billie +Leslie +Rufus +Tom +Benjamin +Everett +Hubert +Sherman +Tony +Victor +Joel +Wallace +Dan +Frankie +Hugh +Sam +Shelby +Tommie +Aaron +Anthony +Archie +Aubrey +Delbert +Dewey +Travis +Warren +Max +Edgar +Oliver +Willis +Arnold +Buddy +Odell +Willard +Winston +Ben +Perry +Ronny +Theodore +Wesley +Alton +Cleo +Edwin +Garry +Morris +Nathan +Pat +Darrel +Francis +Frederick +Garland +Martin +Rex +Sammie +Ted +Teddy +Amos +Clinton +Coy +Freddy +Johnie +Marshall +Rodney +Royce +Bobbie +Charley +Ellis +Elvin +Gordon +Grady +Isaac +Julius +Keith +Orville +Sidney +Alan +Carrol +Hershel +Ira +Jerome +Mitchell +Randall +Theodis +Thurman +Carlton +Dickie +Jay +Lynn +Mark +Ollie +Patrick +Timothy +Wilson +Barry +Burl +Dannie +Dean +Emmett +Gilbert +Guy +Marcus +Noel +Owen +Ulysses +Wiley +Alonzo +Barney +Claud +Dallas +Eldon +Elijah +Gaylon +Harley +Jeff +Kenny +Lowell +Neil +Norris +Odis +Olen +Percy +Wilbert +Wilbur +Will +Woodrow +Bernard +Booker +Cornelius +Donny +Ervin +Gerry +Jasper +Jerrell +Loy +Mac +Maurice +Nelson +Steven +Van +Wade +Wilburn +Alexander +Arlie +Brian +Elton +Elvis +Ivory +Jacky +Jon +Julian +Levi +Lonzo +Loren +Micheal +Ozell +Preston +Reginald +Roland +Roscoe +Rosevelt +Ross +Sterling +Theo +Vincent +Al +Alphonso +Andy +Chris +Connie +Doyne +Elisha +Felix +Harrison +Hermon +Hollis +Jerald +Jerrel +Kermit +Leland +Lyle +Manuel +Mary +Maxie +Mckinley +Mickey +Pete +Phil +Riley +Ruben +Theotis +Tim +Alex +Bert +Boyd +Carol +Clayton +Damon +Dave +Delmer +Denny +Dewayne +Eddy +Elmo +Emmitt +Ernie +Evert +Ezell +Forrest +Fredrick +Jacob +Jewel +Jonathan +Kelly +Ken +Kennith +Lacy +Lavon +Leeroy +Louie +Loyce +Major +Neal +Ned +Noah +Randolph +Rayburn +Ricky +Rodger +Rudolph +Shirley +Tyree +Williams +Winfred +Abraham +Adam +Alford +Allan +Alva +Alvis +Austin +Barbara +Boyce +Bradley +Carter +Christopher +Clark +Cleveland +Coleman +Dillard +Doyal +Dudley +Dwayne +Early +Ed +Finis +Glynn +Gus +Harlon +Huey +Jackson +Jake +Jewell +Joyce +Kent +Kirby +Lenard +Lindell +Malvin +Marlin +Matthew +Mcarthur +Merle +Miles +Millard +Nolan +Orval +Otha +Peter +Rudy +Solomon +Spencer +Winford +James +Charles +John +Robert +William +Jerry +Larry +Billy +David +Jimmy +Thomas +Bobby +Donald +Richard +George +Willie +Johnny +Gary +Joe +Kenneth +Roy +Ronald +Paul +Tommy +Harold +Edward +Henry +Carl +Danny +Raymond +Michael +Ronnie +Walter +Eddie +Don +Joseph +Frank +Jimmie +Bill +Jack +Melvin +Gerald +Clarence +Roger +Albert +Earl +Lee +Wayne +Freddie +Howard +Arthur +Curtis +Ralph +Fred +Eugene +Herman +Johnnie +Floyd +Samuel +Douglas +Jim +Lawrence +Lonnie +Jackie +Leon +Louis +Ernest +Jesse +Jessie +Leroy +Vernon +Marvin +Clyde +Ray +Calvin +Cecil +Daniel +Gene +Dennis +Earnest +Terry +Franklin +Donnie +Harry +Sammy +Charlie +Glen +Leonard +Norman +Doyle +Phillip +Russell +Alvin +Herbert +Lloyd +Otis +Alfred +Troy +Benny +Allen +Andrew +Dale +Stanley +Darrell +Harvey +Dwight +Bennie +Chester +Bob +Mack +Carroll +Luther +Milton +Nathaniel +Steve +Mike +Stephen +Glenn +Lewis +Tom +Roosevelt +Clifford +Tony +Virgil +Archie +Marion +Freddy +Garry +Leo +Sam +Dan +Joel +Leslie +Tommie +Bruce +Edwin +Oscar +Sylvester +Garland +Horace +Sammie +Sherman +Travis +Everett +Philip +Wendell +Ben +Buddy +Clifton +Homer +Hubert +Loyd +Claude +Edgar +Johnie +Rodney +Willard +Anthony +Hugh +Lester +Lynn +Morris +Willis +Odell +Rufus +Teddy +Wesley +Benjamin +Coy +Dewey +Elbert +Elmer +Martin +Odis +Roland +Hershel +Oliver +Royce +Victor +Billie +Guy +Ira +Isaac +Junior +Marshall +Max +Randall +Warren +Woodrow +Alan +Charley +Clinton +Ellis +Elton +Frederick +Kenny +Nathan +Steven +Theodore +Van +Alton +Aubrey +Delbert +Emmett +Gordon +Grover +Maurice +Ted +Wallace +Alex +Eddy +Mark +Mickey +Pat +Perry +Sterling +Theodis +Will +Arnold +Dave +Frankie +Nelson +Randy +Ronny +Barry +Bernard +Dean +Jon +Julius +Louie +Patrick +Percy +Rodger +Thurman +Byron +Carrol +Columbus +Donny +Ivory +Jacob +Lowell +Moses +Ollie +Owen +Sidney +Wilburn +Alexander +Bobbie +Boyd +Carlton +Claud +Cleveland +Dewayne +Dick +Dickie +Elvin +Forrest +Francis +Gilbert +Harley +Jacky +Jewell +Mac +Orville +Rex +Rickey +Ricky +Ross +Rubin +Shelby +Aaron +Booker +Boyce +Burl +Carlos +Chris +Darrel +Farrell +Irvin +Jeff +Jefferson +Jerome +Jess +Jewel +Kennith +Mitchell +Neal +Noel +Olen +Otha +Ozell +Peter +Ulysses +Wiley +Wilford +Al +Alonzo +Amos +Buford +Clayton +Cleo +Dannie +Eldon +Fletcher +Gaylon +Grady +Jay +Jonathan +Keith +Levi +Loy +Major +Preston +Sonny +Tim +Truman +Waymon +Winston +Andy +Augusta +Dallas +Dock +Dwayne +Elisha +Fredrick +Gearld +Harlan +Isiah +Ivan +Jerrell +Karl +Kelly +Ken +Lenard +Marlin +Mary +Mcarthur +Nolan +Norris +Roscoe +Wardell +Weldon +Austin +Autry +Berry +Bert +Bud +Buster +Clark +Cleve +Denny +Doyne +Dwain +Ed +Eli +Elvis +Ervin +Everette +Ezell +Finis +Hal +Herschel +Houston +Jeffery +Jeffrey +Jerald +Jerrel +Lavon +Leland +Leodis +Linda +Lindell +Lonzo +Lovell +Malcolm +Marcus +Matthew +Millard +Mose +Nick +Phil +Quinton +Reuben +Rudy +Silas +Solomon +Theo +Timothy +Vincent +Wade +Wilbert +James +Charles +Robert +John +William +Larry +Jerry +Billy +Jimmy +David +Donald +Gary +Richard +Bobby +Thomas +Willie +Johnny +George +Ronald +Joe +Kenneth +Paul +Roy +Michael +Harold +Tommy +Edward +Carl +Danny +Eddie +Henry +Ronnie +Raymond +Walter +Albert +Jimmie +Frank +Roger +Bill +Gerald +Don +Lee +Joseph +Freddie +Clarence +Wayne +Dennis +Eugene +Arthur +Melvin +Earl +Floyd +Lonnie +Douglas +Leon +Terry +Louis +Samuel +Jack +Lawrence +Johnnie +Curtis +Harry +Ray +Fred +Leonard +Leroy +Jim +Ernest +Jesse +Troy +Howard +Phillip +Ralph +Sammy +Calvin +Marvin +Alvin +Darrell +Donnie +Lloyd +Cecil +Clyde +Dwight +Allen +Charlie +Herman +Mike +Andrew +Herbert +Chester +Daniel +Jackie +Bob +Jessie +Doyle +Norman +Gene +Glen +Stephen +Franklin +Vernon +Dale +Steve +Alfred +Nathaniel +Tommie +Lewis +Russell +Benny +Bruce +Carroll +Earnest +Mack +Homer +Roosevelt +Tony +Clifford +Bennie +Clifton +Lester +Luther +Virgil +Claude +Elmer +Garry +Stanley +Tom +Truman +Harvey +Milton +Victor +Otis +Philip +Sam +Sylvester +Glenn +Marion +Oscar +Patrick +Sidney +Willard +Edwin +Freddy +Dan +Edgar +Timothy +Ben +Benjamin +Horace +Junior +Buddy +Frankie +Leslie +Mark +Max +Perry +Rodney +Sherman +Ted +Clinton +Elbert +Everett +Gordon +Hubert +Randall +Sammie +Teddy +Wallace +Wendell +Anthony +Ira +Leo +Morris +Odell +Willis +Aaron +Aubrey +Grady +Hugh +Oliver +Randy +Wesley +Dean +Garland +Loyd +Marshall +Maurice +Preston +Theodore +Travis +Billie +Elton +Keith +Rufus +Alan +Archie +Boyce +Coy +Delbert +Frederick +Hershel +Kenny +Martin +Nathan +Odis +Shelby +Steven +Warren +Andy +Barry +Dewey +Emmett +Francis +Gilbert +Guy +Peter +Booker +Charley +Darrel +Edmond +Ellis +Jay +Jeff +Lynn +Mickey +Ricky +Royce +Will +Winfred +Dallas +Donny +Forrest +Rodger +Alex +Alton +Carlton +Carol +Clayton +Connie +Dave +Ed +Eddy +Ernie +Gaylon +Jewell +Johnie +Jon +Jonathan +Julius +Kennith +Monroe +Neal +Olen +Orville +Percy +Roscoe +Thurman +Woodrow +Allan +Arnold +Burl +Christopher +Dannie +Dwayne +Eldon +Hermon +Jerome +Joel +Levi +Marcus +Nelson +Ollie +Otha +Rex +Rickey +Theodis +Wilbert +Alonzo +Amos +Arther +Bernard +Bert +Boyd +Dewayne +Freeman +Gerry +Gregory +Hollis +Ivory +Jacky +Jake +Jerrell +Leland +Lowell +Loy +Mckinley +Moses +Reuben +Ronny +Van +Winston +Carlos +Carter +Claud +Cleo +Cleophus +Cleveland +Denver +Dick +Dickie +Duane +Elvin +Elvis +Gale +Herschel +Isaiah +Isiah +Ivan +Jame +Ken +Lonzo +Napoleon +Omer +Otto +Owen +Pete +Rick +Roland +Rudolph +Silas +Theotis +Wardell +Wiley +Wilson +Al +Alva +Arlis +Author +Bobbie +Carrol +Clark +Cody +Columbus +Conrad +Curlee +Darryl +Drew +Ervin +Fredrick +Glynn +Harlan +Harrison +Houston +Ike +Irvin +Isaac +Jerald +Joey +Johnney +Leodis +Leotis +Louie +Lyle +Marlin +Merle +Micheal +Mitchell +Mose +Noel +Oren +Orvil +Phil +Prince +Riley +Rogers +Ron +Rosevelt +Ross +Scotty +Tim +Vaughn +Virgle +Williams +James +Charles +Robert +Larry +John +Jerry +William +David +Jimmy +Billy +Richard +Gary +Bobby +Donald +Thomas +Johnny +Ronald +Willie +Danny +Kenneth +George +Joe +Michael +Tommy +Ronnie +Roy +Paul +Eddie +Harold +Carl +Edward +Henry +Roger +Dennis +Joseph +Walter +Jimmie +Don +Terry +Albert +Bill +Jim +Raymond +Jackie +Frank +Wayne +Arthur +Lawrence +Gerald +Jack +Lonnie +Lee +Curtis +Phillip +Earl +Jesse +Clarence +Fred +Samuel +Marvin +Mike +Melvin +Freddie +Howard +Louis +Floyd +Leon +Lloyd +Calvin +Daniel +Donnie +Johnnie +Ralph +Sammy +Jessie +Earnest +Ernest +Eugene +Ray +Dale +Steve +Alvin +Stephen +Glenn +Herbert +Charlie +Douglas +Gene +Allen +Harvey +Andrew +Chester +Harry +Lewis +Leroy +Benny +Norman +Troy +Clyde +Darrell +Dwight +Herman +Russell +Alfred +Bennie +Bruce +Sam +Bob +Doyle +Garry +Cecil +Glen +Vernon +Virgil +Leonard +Otis +Stanley +Marion +Elmer +Tony +Franklin +Randy +Carroll +Clifford +Clifton +Philip +Rickey +Tom +Dan +Lester +Loyd +Morris +Ricky +Ronny +Claude +Freddy +Nathaniel +Rodney +Tommie +Alan +Edwin +Sammie +Mark +Horace +Warren +Barry +Edgar +Frankie +Lynn +Travis +Buddy +Leo +Milton +Roosevelt +Teddy +Archie +Hugh +Kenny +Patrick +Perry +Steven +Wesley +Alton +Billie +Ivory +Junior +Leslie +Micheal +Odell +Van +Anthony +Ben +Elbert +Everett +Gregory +Guy +Homer +Luther +Oliver +Frederick +Isaac +Wallace +Wendell +Garland +Gordon +Rudy +Sherman +Thurman +Timothy +Victor +Willard +Darrel +Delbert +Ellis +Forrest +Martin +Mitchell +Phil +Sylvester +Ted +Aubrey +Dewayne +Dewey +Gilbert +Hershel +Joel +Mack +Oscar +Roland +Royce +Benjamin +Hubert +Jay +Leland +Randall +Sidney +Willis +Woodrow +Byron +Cleo +Cleveland +Donny +Grady +Ira +Jeff +Kennith +Marcus +Maurice +Max +Rodger +Shelby +Wilbert +Will +Charley +Coy +Dannie +Elijah +Elvin +Ervin +Francis +Hollis +Keith +Ollie +Pete +Preston +Theodore +Truman +Aaron +Carlos +Dwayne +Emmett +Gaylon +Jose +Ken +Mickey +Rex +Theodis +Wade +Winston +Bernard +Clinton +Connie +Dalton +Harley +Lowell +Nathan +Odis +Orville +Scott +Amos +Andy +Boyce +Boyd +Christopher +Dickie +Hal +Jerome +Johnie +Louie +Owen +Ron +Rufus +Bradley +Carlton +Clayton +Darnell +Dave +Eldon +Ernie +Fredrick +Grover +Jeffrey +Jon +Malcolm +Marlin +Neil +Pat +Rickie +Ruben +Sterling +Tim +Waymon +Wilbur +Adell +Alford +Arnold +Austin +Craig +Elton +Elvis +Herschel +Jonathan +Lamar +Levi +Lindell +Mac +Marshall +Maxie +Nelson +Nick +Percy +Riley +Ross +Sonny +Al +Alexander +Arlis +Bryan +Butch +Carrol +Claud +Denny +Duane +Ed +Felix +Gerry +Glynn +Hermon +Irvin +Isiah +Jan +Jerald +Jimmey +Julian +Kerry +Lawerence +Ledell +Leodis +Major +Mckinley +Merle +Millard +Murray +Noah +Nolan +Ocie +Reuben +Vance +Weldon +Williams +Woody +Alex +Alonzo +Arther +Auther +Bobbie +Burton +Clark +Cleaster +Cleophus +Dallas +Damon +Dean +Dick +Eddy +Elwood +Freeman +Gayle +Hardy +Hosea +Huey +Hurley +Jacky +Jacob +Jake +Jerrell +Jess +Joey +Juan +Kelly +Lanny +Lenard +Lesley +Linda +Malvin +Murry +Myron +Noel +Olen +Otha +Randell +Randolph +Rayburn +Raymon +Ruby +Tyree +Vernell +Wilburn +Wiley +Zack +James +Larry +John +Robert +Charles +William +Jerry +David +Gary +Jimmy +Billy +Richard +Donald +Bobby +Michael +Thomas +Ronald +Johnny +Willie +Kenneth +George +Danny +Tommy +Joe +Ronnie +Paul +Eddie +Harold +Roy +Edward +Carl +Terry +Henry +Roger +Dennis +Joseph +Raymond +Wayne +Jimmie +Walter +Bill +Jackie +Curtis +Jack +Don +Lee +Arthur +Phillip +Albert +Frank +Lonnie +Floyd +Freddie +Melvin +Steve +Clarence +Jim +Gerald +Donnie +Earl +Ralph +Stephen +Mike +Howard +Louis +Samuel +Harry +Johnnie +Calvin +Jesse +Lawrence +Fred +Ray +Sammy +Daniel +Marvin +Allen +Doyle +Eugene +Alvin +Cecil +Gene +Garry +Benny +Dale +Leon +Glen +Jessie +Troy +Glenn +Charlie +Douglas +Stanley +Clyde +Herman +Lloyd +Earnest +Lewis +Ricky +Herbert +Leonard +Leroy +Dwight +Ernest +Darrell +Harvey +Tony +Vernon +Bennie +Andrew +Randy +Steven +Chester +Clifford +Lester +Russell +Otis +Barry +Rickey +Bruce +Norman +Rodney +Tom +Bob +Leslie +Sammie +Roosevelt +Freddy +Randall +Homer +Philip +Sidney +Alfred +Franklin +Gregory +Sam +Tommie +Wesley +Archie +Edwin +Elmer +Ben +Micheal +Milton +Anthony +Lynn +Marion +Timothy +Alan +Carroll +Clifton +Edgar +Gordon +Nathaniel +Sylvester +Benjamin +Leo +Morris +Oscar +Perry +Claude +Frankie +Joel +Junior +Ronny +Travis +Mark +Hubert +Hugh +Keith +Kenny +Loyd +Dewey +Odis +Van +Carlos +Ellis +Frederick +Royce +Victor +Aaron +Alton +Arnold +Darrel +Delbert +Ira +Isaac +Jay +Teddy +Theodore +Virgil +Willard +Buddy +Horace +Luther +Max +Rodger +Andy +Guy +Johnie +Martin +Odell +Sherman +Ted +Theodis +Warren +Charley +Gilbert +Jerome +Mack +Aubrey +Byron +Dan +Elbert +Ollie +Patrick +Preston +Roscoe +Ruben +Willis +Carlton +Marshall +Mickey +Percy +Shelby +Thurman +Wendell +Billie +Booker +Columbus +Dewayne +Eric +Garland +Manuel +Oliver +Pat +Rex +Amos +Bernard +Bobbie +Cleo +Cleveland +Dannie +Dickie +Dwayne +Everett +Grady +Kennith +Mitchell +Nathan +Phil +Wallace +Wilbur +Dean +Eldon +Felix +Hal +Hershel +Jeff +Jon +Leland +Matthew +Maurice +Olen +Rufus +Truman +Allan +Alonzo +Buford +Claud +Clayton +Clinton +Connie +Dave +Elijah +Elvin +Forrest +Gerry +Ivan +Jess +Julius +Rickie +Rudy +Tim +Wilbert +Will +Boyd +Butch +Carrol +Coy +Dallas +Emmett +Ernie +Grover +Jacky +Jasper +Jonathan +Ken +Linda +Marlin +Neal +Noel +Peter +Ron +Wilson +Al +Alex +Alvis +Aron +Cornell +Donny +Duane +Eddy +Elton +Francis +Gale +Gearld +Gus +Ivory +Jeffrey +Jerald +Louie +Malcolm +Malvin +Marcus +Monroe +Noah +Otha +Randolph +Scott +Scotty +Sterling +Tyrone +Winston +Woodrow +Woody +Alvie +Artis +Carol +Cary +Chris +Christopher +Darryl +Denny +Dick +Doug +Ervin +Felton +Galen +Harley +Herschel +Houston +Jackson +Jewell +Joshua +Lenard +Lowell +Mary +Ned +Nicky +Orville +Owen +Rayburn +Riley +Roland +Ross +Solomon +Sonny +Unknown +Vance +Weldon +Wilford +Winfred +Arlie +Artie +Carnell +Clark +Ezell +Geary +Greg +Harlan +Harrel +Harris +Jacob +Jason +Jefferson +Jewel +Joey +Jose +Juan +Julian +Lacy +Lorenzo +Loy +Major +Mckinley +Miles +Nelson +Noble +Nolan +Pete +Randal +Reginald +Robbie +Robin +Tillman +Toney +Wilburn +James +Larry +Robert +John +Charles +William +Jerry +David +Gary +Jimmy +Billy +Michael +Richard +Donald +Ronald +Thomas +Bobby +Willie +Danny +Kenneth +Ronnie +Johnny +George +Joe +Roy +Tommy +Paul +Eddie +Roger +Harold +Terry +Dennis +Edward +Joseph +Carl +Henry +Raymond +Jimmie +Phillip +Walter +Frank +Don +Arthur +Wayne +Clarence +Bill +Jackie +Gerald +Samuel +Albert +Johnnie +Donnie +Melvin +Curtis +Jack +Freddie +Ralph +Lonnie +Jim +Calvin +Earl +Floyd +Garry +Fred +Stephen +Lee +Ricky +Harry +Marvin +Mike +Steve +Daniel +Dale +Steven +Eugene +Jesse +Ray +Ernest +Lawrence +Rickey +Howard +Stanley +Allen +Clyde +Jessie +Louis +Darrell +Sammy +Benny +Leroy +Randy +Alvin +Douglas +Lloyd +Bruce +Leon +Glen +Glenn +Leonard +Charlie +Herbert +Bob +Vernon +Alan +Otis +Andrew +Elmer +Tony +Troy +Clifford +Doyle +Dwight +Gene +Herman +Tom +Philip +Carroll +Lester +Alfred +Earnest +Harvey +Norman +Cecil +Luther +Russell +Chester +Mark +Patrick +Claude +Bennie +Frankie +Nathaniel +Gregory +Oscar +Randall +Rodney +Wesley +Dan +Lewis +Freddy +Leslie +Roosevelt +Sam +Sammie +Tommie +Gordon +Sylvester +Barry +Franklin +Morris +Perry +Anthony +Martin +Travis +Timothy +Virgil +Clifton +Keith +Marion +Micheal +Ben +Theodore +Benjamin +Isaac +Lynn +Edwin +Homer +Joel +Junior +Sherman +Teddy +Wallace +Warren +Ira +Milton +Aaron +Dewey +Frederick +Hugh +Mickey +Rodger +Sidney +Arnold +Christopher +Coy +Hal +Hubert +Johnie +Mack +Everett +Grady +Max +Rick +Ronny +Ted +Theodis +Alton +Buddy +Edgar +Ervin +Gilbert +Guy +Jay +Leo +Marshall +Odell +Oliver +Rufus +Thurman +Wilbert +Willis +Alex +Archie +Aubrey +Byron +Delbert +Elbert +Garland +Jacky +Mitchell +Van +Willard +Carlos +Connie +Dean +Eddy +Ellis +Jeff +Lowell +Maurice +Nathan +Rex +Rudy +Shelby +Wendell +Will +Clinton +Ernie +Horace +Ivory +Jerome +Leland +Percy +Roland +Truman +Billie +Charley +Darrel +Dickie +Donny +Francis +Jonathan +Kennith +Matthew +Millard +Monroe +Pete +Ron +Wilbur +Denny +Grover +Kerry +Loyd +Odis +Royce +Victor +Wiley +Wilson +Bernard +Carlton +Clark +Clayton +Cleveland +Darnell +Duane +Fredrick +Jon +Julius +Kenny +Manuel +Orville +Peter +Phil +Randal +Ruben +Unknown +Winston +Woodrow +Alonzo +Amos +Barney +Booker +Carey +Chris +Dewayne +Dwayne +Eric +Isiah +Nolan +Ollie +Tim +Andy +Boyce +Clay +Dana +Dannie +Earle +Eldon +Elvin +Elvis +Emmett +Greg +Irvin +Ivan +Jasper +Jeffery +Jeffrey +Louie +Neal +Scott +Al +Allan +Auther +Bobbie +Boyd +Cleo +Columbus +Cornelius +Dave +Dickey +Emanuel +Gaylon +Glendon +Harlan +Harley +Hershel +Jake +Jewell +Lanny +Lindell +Loy +Marlin +Marty +Monty +Moses +Nicholas +Owen +Preston +Reginald +Robbie +Rocky +Sterling +Timmy +Vance +Weldon +Winfred +Adam +Adrian +Alexander +Alvie +Artie +Bert +Bradford +Brady +Burl +Carter +Chuck +Claud +Cleve +Dallas +Damon +Darryl +Doug +Elton +Ezell +Forrest +Gale +Gearld +Glynn +Gus +Hector +Hermon +Herschel +Hollis +Isaiah +Jan +Jefferson +Jeral +Jerald +Julian +Kermit +Kirk +Len +Lesley +Levester +Lonzo +Lorenzo +Madison +Major +Malvin +Marcus +Miguel +Noah +Noel +Olen +Ossie +Otha +Pat +Ross +Shelton +Waymon +Wilburn +James +Larry +John +Robert +Charles +William +David +Jerry +Gary +Michael +Jimmy +Billy +Donald +Richard +Thomas +Kenneth +Johnny +Danny +Ronald +George +Bobby +Willie +Ronnie +Joe +Tommy +Roger +Paul +Harold +Eddie +Roy +Edward +Dennis +Carl +Terry +Phillip +Henry +Stephen +Freddie +Raymond +Walter +Joseph +Jackie +Lee +Samuel +Jimmie +Arthur +Daniel +Don +Jack +Floyd +Albert +Frank +Steven +Melvin +Ricky +Wayne +Calvin +Clarence +Curtis +Jesse +Donnie +Ralph +Eugene +Lonnie +Lawrence +Gerald +Steve +Douglas +Stanley +Fred +Johnnie +Rickey +Leonard +Harry +Howard +Marvin +Allen +Ernest +Andrew +Earl +Garry +Leon +Sammy +Bill +Mike +Patrick +Randy +Alvin +Darrell +Bruce +Earnest +Herbert +Louis +Ray +Lloyd +Charlie +Dale +Jessie +Jim +Benny +Troy +Leroy +Alfred +Glen +Vernon +Carroll +Clyde +Randall +Glenn +Herman +Micheal +Alan +Timothy +Chester +Doyle +Philip +Teddy +Mark +Lewis +Russell +Anthony +Dwight +Freddy +Gene +Otis +Cecil +Lester +Franklin +Tony +Keith +Norman +Milton +Rodney +Bob +Bennie +Clifton +Mickey +Nathaniel +Sylvester +Tom +Leslie +Perry +Roosevelt +Frankie +Clifford +Luther +Lynn +Oscar +Barry +Harvey +Ira +Sam +Benjamin +Edwin +Tommie +Warren +Elmer +Frederick +Gregory +Joel +Kenny +Lanny +Mack +Rodger +Theodore +Travis +Archie +Claude +Dewey +Marion +Wesley +Dan +Elbert +Homer +Leo +Mitchell +Willard +Hubert +Junior +Sammie +Sidney +Unknown +Victor +Loyd +Martin +Ronny +Ted +Virgil +Wallace +Ben +Donny +Garland +Guy +Morris +Wendell +Aaron +Alton +Charley +Christopher +Coy +Jay +Marshall +Odell +Oliver +Royce +Wilbert +Johnie +Manuel +Preston +Theodis +Van +Arnold +Cleveland +Darrel +Delbert +Edgar +Elijah +Eric +Gilbert +Gordon +Ivory +Kerry +Marcus +Ruben +Carlos +Dickie +Ellis +Horace +Jose +Julius +Lowell +Maurice +Randolph +Billie +Buddy +Chris +Dewayne +Everett +Grady +Juan +Phil +Rick +Rudy +Scott +Sherman +Willis +Allan +Alonzo +Aubrey +Bobbie +Dwayne +Gaylon +Hal +Herschel +Jacky +Lannie +Nicky +Orville +Pete +Rex +Scotty +Truman +Winston +Woodrow +Alex +Andy +Bernard +Booker +Boyd +Clark +Clayton +Clinton +Dave +Dean +Felix +Hugh +Jeffery +Jonathan +Kennith +Leotis +Peter +Thurman +Vincent +Boyce +Byron +Carlton +Craig +Dannie +Felton +Hershel +Jeffrey +Jerome +Kevin +Matthew +Monroe +Nathan +Ocie +Ollie +Rickie +Rufus +Shelby +Stewart +Austin +Cleo +Eldon +Ervin +Francis +Grover +Isaac +Jake +Jon +Karl +Lenard +Lorenzo +Louie +Monty +Pat +Randal +Reginald +Rocky +Roland +Tyrone +Ulysses +Wilbur +Will +Al +Alexander +Alvie +Cletus +Dallas +Daryl +Eldridge +Emmett +Foster +Gale +Hardy +Hermon +Hollis +Jeff +Jewel +Jewell +Johney +Kent +Laurence +Lawerence +Leland +Noah +Noel +Norris +Odis +Percy +Randell +Rene +Ron +Rudolph +Solomon +Toney +Wade +Waymon +Wilson +Woody +Brian +Buford +Burl +Carnell +Carrol +Claudie +Cornelius +Danial +Darryl +Darwin +Eddy +Edmond +Elvin +Emanuel +Emory +Ernie +Fletcher +Forrest +Fredrick +Freeman +Harrison +Ivan +Jasper +Jerald +Julian +Kelly +Ken +Marc +Maxie +Michial +Mose +Nelson +Olen +Porter +Quincy +Reggie +Riley +Robbie +Ross +Tim +Vaughn +Wilburn +James +Larry +Robert +John +Charles +William +David +Jerry +Michael +Gary +Ronald +Richard +Billy +Thomas +Jimmy +Danny +Donald +Kenneth +Willie +Bobby +Johnny +George +Joe +Terry +Ronnie +Roger +Dennis +Paul +Tommy +Roy +Eddie +Stephen +Harold +Edward +Joseph +Carl +Henry +Walter +Phillip +Samuel +Lonnie +Jimmie +Steven +Lee +Raymond +Jack +Rickey +Freddie +Curtis +Jackie +Arthur +Clarence +Randy +Gerald +Frank +Donnie +Ricky +Bruce +Wayne +Douglas +Steve +Melvin +Fred +Daniel +Allen +Albert +Dale +Lawrence +Stanley +Harry +Bill +Calvin +Earl +Garry +Ralph +Randall +Louis +Floyd +Don +Timothy +Eugene +Herbert +Johnnie +Leon +Howard +Leroy +Alvin +Darrell +Herman +Jim +Clyde +Lloyd +Dwight +Earnest +Marvin +Andrew +Lester +Gregory +Ernest +Patrick +Anthony +Jessie +Alfred +Doyle +Chester +Glenn +Jesse +Russell +Charlie +Mark +Benny +Mike +Alan +Franklin +Norman +Unknown +Leonard +Cecil +Glen +Micheal +Ray +Sammy +Troy +Otis +Tony +Gene +Barry +Christopher +Clifford +Clifton +Vernon +Lewis +Travis +Philip +Milton +Rodney +Sammie +Bennie +Claude +Harvey +Kenny +Leslie +Oscar +Perry +Reginald +Freddy +Roosevelt +Teddy +Edwin +Keith +Nathaniel +Ronny +Sam +Bob +Dan +Ben +Carroll +Frederick +Joel +Leo +Loyd +Maurice +Tommie +Elbert +Elmer +Lanny +Morris +Sylvester +Tom +Archie +Frankie +Hubert +Luther +Rex +Rodger +Sidney +Benjamin +Clinton +Ivory +Jeffrey +Marshall +Randolph +Sherman +Willard +Aaron +Horace +Lynn +Nathan +Victor +Wendell +Grady +Homer +Jerome +Ted +Theodore +Wesley +Buddy +Edgar +Everett +Garland +Mickey +Billie +Chris +Dave +Isaac +Jay +Marion +Mitchell +Rick +Theodis +Thurman +Virgil +Warren +Winston +Alex +Andy +Eric +Guy +Neil +Wallace +Alton +Bobbie +Jeffery +Odis +Van +Will +Aubrey +Bernard +Carlos +Dana +Dannie +Donny +Gordon +Jon +Julius +Lowell +Mack +Martin +Preston +Roland +Wilbert +Willis +Carlton +Dean +Eldon +Francis +Fredrick +Gaylon +Hugh +Jonathan +Junior +Kerry +Marcus +Matthew +Max +Odell +Oliver +Owen +Percy +Scott +Alonzo +Arnold +Byron +Charley +Coy +Craig +Dallas +Grover +Nolan +Pete +Peter +Rickie +Ruben +Rudy +Rufus +Amos +Booker +Burl +Carrol +Darnell +Darrel +Delbert +Elijah +Ervin +Forrest +Gilbert +Hershel +Ira +Jerrell +Johnie +Juan +Kennith +Monte +Nicholas +Royce +Tim +Allan +Cary +Emmett +Jasper +Jeff +Jerald +Kevin +Randal +Scotty +Adam +Cleo +Cleveland +Dewey +Donnell +Duane +Dwayne +Eddy +Ellis +Felix +Harley +Issac +Jose +Lamar +Lannie +Leland +Leotis +Levi +Monroe +Noel +Phil +Quinton +Riley +Williams +Al +Author +Clayton +Cleophus +Columbus +Ernie +Gearld +Grant +Hal +Harrison +Isiah +Ivan +Jake +Jan +Jewel +Karl +Lenard +Leodis +Loy +Marc +Neal +Nick +Norris +Ollie +Orville +Porter +Reuben +Robbie +Rogers +Roscoe +Ross +Rudolph +Shelby +Toney +Tyrone +Vernell +Vincent +Waymon +Winfred +Alvie +Boyce +Bradford +Cardell +Cedric +Cleotis +Cletis +Clovis +Cornelius +Dalton +Denny +Drew +Elmo +Elvin +Emanuel +Farrell +Galen +Hermon +Hollis +Irvin +Jodie +Joey +Julian +Lovell +Mac +Marty +Mose +Moses +Olen +Otha +Parker +Randel +Randle +Robin +Ron +Silas +Sonny +Spencer +Wardell +Wilbur +Wilburn +Winford +James +Larry +Robert +John +William +Charles +David +Michael +Jerry +Gary +Richard +Thomas +Ronald +Kenneth +Billy +Jimmy +Donald +Danny +Johnny +Willie +Dennis +George +Bobby +Roy +Joe +Paul +Roger +Terry +Tommy +Ronnie +Edward +Carl +Eddie +Joseph +Henry +Harold +Stephen +Steven +Phillip +Rickey +Raymond +Ricky +Calvin +Walter +Lee +Samuel +Daniel +Jackie +Randy +Douglas +Jack +Arthur +Frank +Freddie +Bruce +Lawrence +Allen +Curtis +Clarence +Eugene +Lonnie +Donnie +Albert +Wayne +Gerald +Jimmie +Melvin +Don +Stanley +Timothy +Darrell +Glenn +Alvin +Andrew +Louis +Mark +Fred +Micheal +Floyd +Randall +Leon +Ray +Howard +Dale +Johnnie +Ralph +Earnest +Gregory +Steve +Ernest +Marvin +Earl +Leroy +Harry +Jesse +Herman +Jim +Charlie +Tony +Clyde +Garry +Sammy +Jessie +Anthony +Alan +Bill +Cecil +Glen +Lewis +Philip +Leonard +Troy +Vernon +Otis +Rodney +Clifford +Dwight +Keith +Norman +Unknown +Alfred +Benny +Patrick +Clifton +Harvey +Lloyd +Russell +Sylvester +Chester +Barry +Doyle +Edwin +Lester +Wesley +Bennie +Franklin +Gene +Herbert +Elmer +Freddy +Frederick +Nathaniel +Kenny +Maurice +Perry +Joel +Leslie +Oscar +Rex +Roosevelt +Virgil +Claude +Hubert +Mike +Nathan +Tommie +Benjamin +Leo +Sam +Clinton +Frankie +Lynn +Aaron +Archie +Christopher +Dan +Ira +Martin +Sidney +Travis +Wendell +Ben +Bernard +Donny +Luther +Marion +Milton +Sammie +Buddy +Carroll +Ellis +Tom +Allan +Bob +Grady +Morris +Sherman +Teddy +Carlton +Chris +Jeffrey +Jonathan +Loyd +Odell +Rodger +Victor +Willis +Dewey +Francis +Gordon +Guy +Homer +Ivory +Kerry +Marshall +Ronny +Craig +Jacky +Jay +Julius +Mickey +Peter +Reginald +Rickie +Shelby +Ted +Wallace +Warren +Charley +Clayton +Dannie +Everett +Gilbert +Lanny +Mack +Major +Roland +Theodore +Van +Will +Alonzo +Clark +Dean +Delbert +Dickie +Dwayne +Garland +Hal +Horace +Isaac +Jerome +Junior +Pete +Randolph +Royce +Willard +Alexander +Aubrey +Billie +Cornelius +Eric +Felix +Forrest +Jeff +Jon +Manuel +Nicky +Oliver +Percy +Rufus +Sterling +Al +Andy +Byron +Carlos +Coy +Edgar +Elijah +Ervin +Grover +Jasper +Jeffery +Johnie +Kelly +Kennith +Kent +Mitchell +Nelson +Preston +Randal +Rick +Scott +Theodis +Timmy +Vincent +Arnold +Arther +Boyce +Cleo +Cleveland +Darryl +Daryl +Dewayne +Ernie +Fredrick +Hershel +Hugh +Karl +Malcolm +Miles +Otha +Robin +Roscoe +Wilburn +Wiley +Burl +Cary +Darrel +Elbert +Gale +Gaylon +Isaiah +Kevin +Lorenzo +Marlin +Max +Mckinley +Odis +Ollie +Owen +Pat +Rudolph +Stevie +Stuart +Woodrow +Barney +Bert +Boyd +Bradley +Buster +Dana +Denver +Donell +Duane +Edmond +Ezell +Hermon +Herschel +Jacob +Jerrel +Juan +Leodis +Lindell +Marty +Myron +Napoleon +Nick +Nickey +Ocie +Phil +Ramon +Rocky +Ron +Rosevelt +Ross +Ruben +Terrell +Thurman +Tim +Waymon +Wilbert +Wilson +Winston +Alton +Booker +Brad +Brian +Bryan +Coleman +Connie +Cornell +Dave +Derry +Doyne +Ed +Elton +Emmett +Ezzard +Felton +Ivan +Jewel +Jose +Judge +Leland +Lemuel +Leotis +Lovell +Lowell +Malvin +Marcus +Mary +Matthew +Mitchel +Monroe +Monte +Neal +Olen +Reggie +Rudy +Tracy +Ulysses +Wardell +Wayman +Winford +James +John +Larry +Robert +David +Charles +Michael +William +Gary +Jerry +Richard +Thomas +Billy +Danny +Kenneth +Jimmy +Donald +Ronald +Willie +Bobby +Johnny +Terry +Dennis +Paul +George +Ronnie +Joe +Roger +Roy +Tommy +Stephen +Edward +Steven +Ricky +Eddie +Joseph +Carl +Randy +Daniel +Rickey +Henry +Harold +Walter +Raymond +Arthur +Mark +Phillip +Frank +Jackie +Lee +Samuel +Bruce +Melvin +Donnie +Gerald +Earl +Calvin +Douglas +Stanley +Lawrence +Albert +Curtis +Don +Andrew +Freddie +Timothy +Steve +Eugene +Gregory +Floyd +Jack +Alvin +Allen +Jimmie +Darrell +Micheal +Clarence +Fred +Howard +Dale +Anthony +Ralph +Jesse +Randall +Glenn +Leroy +Dwight +Jessie +Lonnie +Wayne +Clifford +Leon +Louis +Sammy +Jim +Tony +Ernest +Glen +Herbert +Ray +Marvin +Alan +Alfred +Charlie +Lewis +Harry +Johnnie +Leonard +Herman +Kenny +Patrick +Philip +Rodney +Vernon +Clyde +Garry +Roosevelt +Troy +Earnest +Barry +Doyle +Nathaniel +Benny +Unknown +Bill +Keith +Lloyd +Cecil +Otis +Edwin +Tommie +Benjamin +Franklin +Lester +Mike +Rickie +Clifton +Gene +Leslie +Bennie +Harvey +Norman +Luther +Martin +Rick +Russell +Dan +Freddy +Oscar +Sammie +Sylvester +Christopher +Archie +Leo +Milton +Tom +Victor +Chester +Claude +Frankie +Mitchell +Perry +Sam +Warren +Gordon +Mickey +Wendell +Edgar +Elbert +Horace +Jeffrey +Joel +Marion +Marshall +Teddy +Elmer +Frederick +Ivory +Jeffery +Percy +Virgil +Wesley +Aaron +Arnold +Carroll +Dewey +Guy +Jay +Kerry +Peter +Rex +Van +Bob +Ira +Lynn +Marcus +Nathan +Woodrow +Everett +Jerome +Max +Reginald +Scott +Wallace +Allan +Ben +Darrel +Jonathan +Sidney +Alton +Carlton +Donny +Elijah +Hubert +Kim +Odell +Sherman +Stevie +Ted +Theodis +Bernard +Byron +Cleo +Eric +Garland +Isaac +Loyd +Maurice +Morris +Rufus +Theodore +Travis +Aubrey +Carlos +Charley +Delbert +Ellis +Fredrick +Grady +Grover +Homer +Jon +Junior +Matthew +Randell +Rocky +Will +Willard +Willis +Alonzo +Cleveland +Clinton +Craig +Felix +Lowell +Monte +Owen +Ronny +Vincent +Winston +Connie +Dallas +Dewayne +Duane +Hershel +Kelly +Kevin +Lanny +Randal +Royce +Thurman +Alex +Barney +Billie +Booker +Boyce +Dannie +Dean +Elton +Emmitt +Gaylon +Gerry +Gilbert +Hollis +Hugh +Kennith +Kent +Lionel +Neil +Nelson +Oliver +Ollie +Otha +Preston +Robin +Rodger +Shelby +Tyrone +Vance +Wilbert +Buddy +Carey +Clark +Coy +Dave +Dickie +Emmett +Ervin +Forrest +Gregg +Harlan +Hermon +Isiah +Johnie +Neal +Randolph +Riley +Roland +Sterling +Wade +Wiley +Alexander +Alford +Alva +Amos +Authur +Brian +Darryl +Daryl +Denny +Denzil +Dwain +Dwayne +Eldon +Francis +Gearld +Houston +Irvin +Jewel +Julius +Kirk +Lorenzo +Louie +Malvin +Monroe +Monty +Myron +Pete +Roscoe +Ross +Ruben +Silas +Waymon +Bobbie +Boyd +Bradley +Buford +Carson +Cary +Chris +Clay +Clayton +Cordell +Davis +Dickey +Dudley +Eddy +Ezzard +Fletcher +Gus +Hal +Isaiah +Issac +Ivan +Jake +Jason +Jasper +Jodie +Juan +Karl +Lance +Leland +Leotis +Lonzo +Mack +Marlin +Marty +Moses +Nicholas +Nick +Noah +Odis +Olen +Phil +Scotty +Taylor +Tim +Timmy +Virgle +Winford +Winfred +Woody +James +Robert +David +Michael +Larry +John +Charles +William +Gary +Jerry +Richard +Thomas +Billy +Donald +Danny +Kenneth +Jimmy +Ronald +Bobby +Johnny +Dennis +Terry +Roger +Paul +Willie +Joe +Ricky +Steven +George +Ronnie +Tommy +Roy +Stephen +Edward +Carl +Randy +Mark +Rickey +Joseph +Harold +Daniel +Phillip +Henry +Eddie +Raymond +Melvin +Stanley +Curtis +Calvin +Walter +Jackie +Timothy +Frank +Donnie +Bruce +Freddie +Douglas +Don +Steve +Lee +Clarence +Albert +Marvin +Lawrence +Lonnie +Micheal +Wayne +Eugene +Gerald +Anthony +Floyd +Alvin +Gregory +Jack +Dwight +Earl +Samuel +Jessie +Allen +Arthur +Ralph +Andrew +Jimmie +Rodney +Randall +Bill +Glen +Ray +Herbert +Leroy +Dale +Darrell +Jesse +Earnest +Charlie +Glenn +Louis +Patrick +Tony +Leon +Johnnie +Howard +Vernon +Philip +Alan +Jim +Russell +Troy +Chester +Ernest +Keith +Lloyd +Garry +Harry +Sammy +Lewis +Nathaniel +Clyde +Fred +Barry +Bennie +Jeffrey +Leonard +Lester +Norman +Scott +Unknown +Alfred +Benny +Mike +Clifford +Herman +Wesley +Cecil +Franklin +Sylvester +Clifton +Otis +Roosevelt +Tommie +Leo +Perry +Rickie +Christopher +Edwin +Benjamin +Carroll +Frederick +Milton +Rick +Travis +Kenny +Victor +Ben +Frankie +Joel +Virgil +Freddy +Harvey +Jay +Sam +Aaron +Lynn +Martin +Mitchell +Edgar +Gene +Warren +Wendell +Claude +Doyle +Homer +Horace +Hubert +Jeffery +Leslie +Matthew +Rodger +Clinton +Dan +Gordon +Kevin +Mickey +Oliver +Rex +Stevie +Wallace +Donny +Hugh +Marshall +Sherman +Teddy +Archie +Dewayne +Elmer +Isaac +Loyd +Mack +Sammie +Willard +Delbert +Eric +Ira +Jeff +Jonathan +Maurice +Reginald +Robin +Ronny +Theodore +Bernard +Bob +Eddy +Elbert +Fredrick +Jacky +Kerry +Van +Andy +Byron +Clark +Craig +Dana +Ellis +Levi +Marcus +Marion +Morris +Odell +Orville +Oscar +Preston +Rufus +Shelby +Tim +Buddy +Charley +Dewey +Emmett +Everett +Guy +Lanny +Luther +Nathan +Theodis +Tom +Wilson +Arnold +Carlton +Dean +Elijah +Francis +Hershel +Jerome +Julius +Kim +Max +Odis +Otha +Scotty +Tyrone +Wilbert +Winston +Allan +Coy +Ervin +Gilbert +Jewell +Joey +Jon +Malcolm +Manuel +Monroe +Monte +Monty +Neal +Peter +Phil +Rocky +Sidney +Woodrow +Al +Amos +Aubrey +Boyce +Carlos +Eldon +Ezell +Juan +Junior +Kelly +Kirby +Lowell +Noel +Norris +Roland +Royce +Winfred +Alex +Alphonso +Billie +Bobbie +Brian +Bryan +Burton +Clay +Clayton +Connie +Darnell +Daryl +Dave +Elton +Elvin +Garland +Gerry +Grady +Hank +Irvin +Kennith +Marty +Percy +Rudolph +Thurman +Timmy +Vincent +Alfonso +Booker +Brad +Bradley +Brent +Chris +Cleveland +Columbus +Darrel +Darryl +Dwayne +Felton +Grover +Harrison +Hermon +Hollis +Jacob +Kent +Lyle +Major +Malvin +Marc +Matt +Myron +Neil +Nelson +Randal +Randell +Randolph +Ross +Ruben +Rudy +Sterling +Stewart +Toney +Wade +Abraham +Alfonzo +Alvie +Anderson +Benard +Boyd +Buster +Carnell +Carter +Cleo +Dannie +Derrick +Duane +Ezzard +Harlan +Harrell +Ike +Jess +Joesph +Karl +Lamar +Lenard +Leodis +Louie +Mose +Nicky +Tracy +Wiley +Willis +James +Robert +David +Larry +John +Michael +Charles +William +Gary +Richard +Jerry +Donald +Billy +Thomas +Danny +Bobby +Terry +Jimmy +Kenneth +Ronald +Johnny +Steven +Ricky +Willie +Stephen +Dennis +Paul +Randy +George +Ronnie +Roger +Tommy +Roy +Joe +Mark +Edward +Carl +Eddie +Rickey +Joseph +Harold +Raymond +Henry +Calvin +Daniel +Timothy +Donnie +Phillip +Samuel +Curtis +Stanley +Anthony +Frank +Gregory +Jackie +Melvin +Bruce +Andrew +Douglas +Lee +Randall +Walter +Steve +Allen +Lawrence +Earl +Micheal +Ralph +Ray +Albert +Clarence +Arthur +Gerald +Lonnie +Don +Jimmie +Tony +Darrell +Jack +Wayne +Floyd +Freddie +Rodney +Alvin +Howard +Glenn +Marvin +Dale +Eugene +Fred +Herbert +Leonard +Garry +Ernest +Herman +Mike +Dwight +Jim +Barry +Louis +Patrick +Jesse +Lloyd +Jessie +Alan +Cecil +Leroy +Russell +Philip +Vernon +Leon +Sammy +Keith +Benny +Glen +Troy +Bennie +Alfred +Bill +Chester +Jeffrey +Harvey +Harry +Johnnie +Clifford +Clyde +Dan +Franklin +Earnest +Perry +Unknown +Christopher +Joel +Kenny +Leslie +Norman +Victor +Otis +Scott +Doyle +Jeffery +Martin +Clifton +Edwin +Gene +Kevin +Wesley +Benjamin +Lewis +Marion +Rex +Roosevelt +Sidney +Nathaniel +Sam +Sylvester +Tommie +Jay +Leo +Luther +Lynn +Sherman +Virgil +Charlie +Jerome +Lester +Mitchell +Rick +Travis +Donny +Frankie +Horace +Reginald +Royce +Frederick +Mack +Randal +Aaron +Freddy +Maurice +Kim +Marcus +Marshall +Marty +Morris +Oscar +Randolph +Ronny +Sammie +Stevie +Ben +Bernard +Buddy +Claude +Elmer +Eric +Milton +Oliver +Archie +Carroll +Darrel +Robin +Shelby +Teddy +Wendell +Fredrick +Garland +Jonathan +Mickey +Warren +Coy +Gordon +Ivory +Jon +Julius +Kerry +Max +Nathan +Rufus +Ted +Theodore +Van +Wallace +Andy +Carlton +Chris +Clark +Dean +Donell +Dwayne +Elton +Emmett +Gilbert +Isaac +Jacky +Jeff +Junior +Manuel +Napoleon +Odell +Percy +Rocky +Tom +Alonzo +Bob +Clinton +Dewey +Elbert +Ervin +Guy +Homer +Hubert +Ira +Nicky +Peter +Preston +Rickie +Robbie +Vincent +Brian +Carlos +Denny +Dexter +Duane +Edgar +Ellis +Francis +Kennith +Loyd +Marlin +Wilbert +Amos +Byron +Columbus +Craig +Dana +Dewayne +Harrison +Hershel +Isaiah +Joey +Levi +Lowell +Neal +Randle +Rodger +Scotty +Terrance +Theodis +Timmy +Will +Willard +Winston +Alex +Allan +Aubrey +Billie +Brent +Carey +Cleveland +Dallas +Darryl +Derrell +Gaylon +Hal +Hugh +Jan +Juan +Kelly +Kelvin +Ken +Leodis +Monty +Nelson +Noel +Roland +Ulysses +Wade +Wilbur +Adrian +Alton +Arlie +Arnold +Booker +Brad +Claud +Clayton +Dave +Davie +Delmer +Dickie +Donnell +Elijah +Ernie +Erwin +Hollis +Ike +Kirk +Lanny +Lenard +Loy +Lyle +Matthew +Miles +Monte +Odis +Otha +Pat +Randell +Reggie +Ritchie +Rusty +Thurman +Tracy +Arlis +Artis +Austin +Avery +Barney +Blake +Bradford +Bradley +Clarance +Connie +Darnell +Daryl +Dickey +Eddy +Everett +Felix +Grant +Greg +Jacob +Jefferson +Jess +Julian +Justin +Karl +Kent +Kurt +Lacy +Lamar +Leland +Lesley +Lorenzo +Louie +Lucious +Luke +Malcolm +Michel +Mikel +Moses +Nickey +Ollie +Roderick +Ron +Ross +Rudy +Sandy +Stuart +Vance +Wilfred +Woodrow +James +Robert +David +John +Michael +Charles +Larry +William +Gary +Jerry +Richard +Kenneth +Billy +Donald +Thomas +Ricky +Terry +Danny +Jimmy +Bobby +Johnny +Steven +Randy +Ronald +Dennis +Mark +Paul +Willie +George +Joe +Stephen +Ronnie +Rickey +Carl +Edward +Joseph +Roger +Tommy +Roy +Eddie +Gregory +Timothy +Harold +Phillip +Henry +Stanley +Raymond +Walter +Jackie +Bruce +Samuel +Calvin +Lee +Daniel +Anthony +Curtis +Douglas +Frank +Steve +Tony +Ray +Donnie +Randall +Keith +Micheal +Melvin +Ralph +Lawrence +Russell +Fred +Clarence +Gerald +Albert +Alvin +Andrew +Don +Allen +Eugene +Marvin +Darrell +Arthur +Garry +Leon +Lonnie +Dale +Earl +Howard +Louis +Wayne +Alan +Freddie +Patrick +Rodney +Dwight +Floyd +Jack +Jimmie +Herbert +Johnnie +Kevin +Leonard +Glenn +Jeffrey +Jesse +Mike +Barry +Ernest +Jessie +Vernon +Earnest +Scott +Troy +Leroy +Mitchell +Glen +Milton +Perry +Philip +Bennie +Clyde +Lewis +Otis +Cecil +Clifford +Unknown +Benjamin +Doyle +Jeffery +Lester +Sammy +Alfred +Benny +Herman +Jim +Joel +Lloyd +Norman +Christopher +Clifton +Frankie +Harry +Kenny +Chester +Freddy +Kerry +Wesley +Edwin +Harvey +Nathaniel +Reginald +Bill +Charlie +Luther +Lynn +Virgil +Franklin +Sylvester +Victor +Eric +Frederick +Rick +Claude +Maurice +Mickey +Rex +Aaron +Archie +Brian +Elmer +Gene +Leslie +Marcus +Marion +Rickie +Wendell +Arnold +Bradley +Donny +Joey +Marshall +Martin +Matthew +Royce +Ben +Byron +Edgar +Loyd +Oliver +Rodger +Roosevelt +Theodore +Tommie +Van +Chris +Dan +Dean +Jay +Jonathan +Leo +Randolph +Ronny +Theodis +Carlton +Craig +Dwayne +Fredrick +Homer +Oscar +Robin +Sammie +Gilbert +Gordon +Horace +Rocky +Stevie +Travis +Wallace +Bryan +Jeff +Jon +Karl +Odell +Peter +Sam +Sherman +Tom +Alton +Andy +Bernard +Bob +Buddy +Carroll +Dana +Darnell +Dewayne +Felix +Guy +Hugh +Ivory +Kim +Marty +Shelby +Teddy +Carlos +Cleveland +Cornelius +Delbert +Dewey +Dexter +Ervin +Everett +Garland +Hubert +Julius +Kent +Max +Morris +Nathan +Preston +Randal +Ruben +Ted +Warren +Aubrey +Charley +Clinton +Dannie +Duane +Edmond +Ellis +Grady +Greg +Ira +Jerome +Lanny +Lorenzo +Malcolm +Myron +Phil +Tim +Wilbert +Allan +Amos +Cedric +Clay +Dwain +Elbert +Elijah +Isaac +Jacky +Jerald +Manuel +Marc +Ollie +Owen +Rufus +Rusty +Sidney +Timmy +Tracy +Tyrone +Wade +Alonzo +Buster +Clayton +Darrel +Daryl +Dave +Dickie +Elroy +Elton +Gaylon +Gerry +Irvin +Jasper +Kelvin +Kennith +Lindsey +Pete +Roland +Sterling +Stuart +Wardell +Wiley +Winston +Alvis +Butch +Darwin +Denny +Eldon +Ezell +Fletcher +Hershel +Ken +Lamar +Lowell +Mack +Mckinley +Miles +Nolan +Scotty +Thurman +Vance +Wilbur +Willard +Boyce +Brad +Brent +Carrol +Cary +Clark +Cornell +Curley +Derrick +Emmitt +Gale +Harley +Ivan +Jacob +Jame +Jason +Jewel +Jose +Junior +Justin +Kelly +Kendall +Monte +Moses +Napoleon +Nelson +Odis +Percy +Quentin +Randell +Riley +Rudy +Stan +Stephan +Terrell +Vaughn +Will +Willis +Wilson +James +David +Michael +Robert +John +William +Charles +Larry +Jerry +Gary +Richard +Kenneth +Billy +Terry +Donald +Randy +Thomas +Mark +Steven +Danny +Ronald +Johnny +Jimmy +Bobby +Ricky +Dennis +Stephen +Joe +Paul +Rickey +Ronnie +Carl +Willie +Edward +Eddie +Joseph +Roy +George +Tommy +Gregory +Roger +Daniel +Timothy +Henry +Steve +Douglas +Bruce +Harold +Stanley +Phillip +Anthony +Raymond +Jackie +Curtis +Tony +Randall +Ray +Samuel +Don +Keith +Frank +Micheal +Lawrence +Calvin +Jack +Ralph +Walter +Alvin +Dale +Lee +Louis +Albert +Gerald +Melvin +Clarence +Marvin +Rodney +Darrell +Jeffrey +Russell +Andrew +Freddie +Kevin +Dwight +Donnie +Johnnie +Arthur +Barry +Floyd +Wayne +Earl +Lonnie +Alan +Troy +Garry +Eugene +Allen +Glen +Howard +Scott +Bill +Fred +Philip +Leon +Herbert +Jessie +Leonard +Ernest +Harry +Christopher +Earnest +Jim +Mike +Frederick +Herman +Clifford +Glenn +Chester +Jimmie +Leroy +Alfred +Jeffery +Jesse +Kenny +Lewis +Patrick +Perry +Charlie +Lloyd +Milton +Sammy +Vernon +Clyde +Marcus +Roosevelt +Franklin +Lester +Otis +Harvey +Leslie +Martin +Marty +Norman +Sylvester +Benjamin +Cecil +Marion +Victor +Benny +Joey +Randal +Unknown +Wesley +Clifton +Mitchell +Robin +Archie +Brian +Frankie +Travis +Edwin +Ellis +Gene +Aaron +Jay +Luther +Reginald +Jerome +Ronny +Virgil +Bennie +Doyle +Nathaniel +Wallace +Guy +Joel +Kim +Ted +Teddy +Ben +Donny +Hubert +Jeff +Rex +Bryan +Freddy +Homer +Oscar +Preston +Rocky +Tommie +Andy +Bradley +Dean +Edgar +Garland +Jonathan +Kerry +Leo +Matthew +Rickie +Roderick +Rodger +Sam +Sherman +Sidney +Dewayne +Marshall +Oliver +Stevie +Wendell +Buddy +Byron +Carlos +Dan +Elmer +Ervin +Ira +Kirk +Lynn +Percy +Peter +Tracy +Carlton +Carroll +Chris +Gordon +Kennith +Lorenzo +Loyd +Mickey +Theodore +Vincent +Boyce +Craig +Dwayne +Elvis +Eric +Horace +Hugh +Jon +Kent +Mack +Max +Morris +Sammie +Tyrone +Van +Warren +Allan +Bob +Claude +Darryl +Delbert +Elbert +Gaylon +Greg +Hershel +Isaac +Ivory +Junior +Karl +Kelvin +Kirby +Maurice +Ollie +Rick +Royce +Theodis +Brad +Cary +Clinton +Dana +Dannie +Everett +Francis +Fredrick +Grady +Kelly +Lanny +Nicky +Randolph +Rufus +Rusty +Tim +Timmy +Tom +Wade +Wilbert +Willard +Alex +Alton +Arnold +Chuck +Darnell +Darrel +Hal +Ken +Manuel +Myron +Ruben +Al +Alonzo +Bryant +Cleo +Cleophus +Dave +Dewey +Dexter +Donell +Donnell +Eddy +Gilbert +Grover +Houston +Jose +Lowell +Marc +Marlon +Michel +Monte +Nathan +Neil +Nelson +Nolan +Odell +Orville +Pat +Randel +Randell +Scotty +Stan +Sterling +Thurman +Wayman +Winston +Bert +Brent +Burl +Delton +Denny +Denver +Dickie +Ed +Forrest +Gerry +Herschel +Isaiah +Isiah +Jacky +Jacob +Kendall +Lance +Leotis +Norris +Robbie +Stuart +Vance +Will +Alexander +Arther +Barney +Bernard +Billie +Boyd +Broderick +Carey +Clark +Clayton +Cleveland +Columbus +Damon +Daryl +Derek +Dick +Elton +Emanuel +Ernie +Everette +Gregg +Issac +Jackey +Juan +Kyle +Lovell +Madison +Miles +Monty +Murray +Neal +Odis +Roland +Rory +Terrell +Vernell +Wilbur +Wilfred +Willis +Winfred +Woodrow +James +David +Michael +John +Robert +Charles +William +Larry +Terry +Gary +Jerry +Kenneth +Mark +Richard +Billy +Donald +Ricky +Randy +Bobby +Thomas +Jimmy +Ronald +Steven +Danny +Dennis +Johnny +Rickey +Ronnie +Willie +Paul +Roger +Timothy +Joe +George +Tommy +Carl +Gregory +Stephen +Eddie +Edward +Steve +Joseph +Roy +Tony +Phillip +Bruce +Keith +Douglas +Daniel +Stanley +Henry +Walter +Calvin +Curtis +Raymond +Harold +Jackie +Melvin +Anthony +Lee +Arthur +Micheal +Wayne +Randall +Samuel +Jeffrey +Mike +Rodney +Ray +Darrell +Donnie +Frank +Gerald +Albert +Lawrence +Russell +Don +Jeffery +Scott +Alvin +Glen +Jessie +Lonnie +Troy +Kevin +Marvin +Alan +Glenn +Allen +Bill +Jack +Andrew +Barry +Freddie +Jim +Jimmie +Louis +Floyd +Garry +Leonard +Patrick +Earl +Howard +Leroy +Dwight +Eugene +Kenny +Martin +Joel +Earnest +Ernest +Dale +Fred +Leon +Norman +Ralph +Vernon +Bennie +Alfred +Christopher +Clarence +Herman +Jesse +Lewis +Lloyd +Perry +Jay +Reginald +Brian +Franklin +Philip +Victor +Wesley +Frederick +Marty +Sammy +Unknown +Benny +Charlie +Clyde +Clifford +Harry +Elvis +Johnnie +Lester +Randal +Sylvester +Chester +Clifton +Mickey +Nathaniel +Eric +Gene +Leslie +Marcus +Otis +Doyle +Harvey +Joey +Herbert +Jeff +Leo +Morris +Rick +Mitchell +Craig +Greg +Jerome +Dwayne +Edwin +Kerry +Roosevelt +Ted +Timmy +Warren +Aaron +Archie +Brent +Byron +Cecil +Claude +Dan +Gordon +Maurice +Robin +Stevie +Bob +Bryan +Chris +Frankie +Fredrick +Kelly +Mack +Marshall +Milton +Rex +Ronny +Tom +Tommie +Vincent +Benjamin +Donny +Grady +Guy +Matthew +Oscar +Sherman +Tracy +Wendell +Andy +Aubrey +Ben +Carroll +Dana +Elbert +Gerry +Hubert +Jonathan +Karl +Kennith +Lynn +Marion +Peter +Sammie +Tim +Travis +Bernard +Buddy +Carlos +Carlton +Dean +Edgar +Jon +Julius +Kim +Monty +Rickie +Wade +Wallace +Willis +Alonzo +Arnold +Darryl +Hal +Kent +Nelson +Rocky +Rodger +Sidney +Teddy +Theodore +Boyd +Brad +Bradley +Cedric +Dewayne +Dewey +Elmer +Ken +Max +Royce +Terrence +Clay +Darnell +Felix +Freddy +Gilbert +Ira +Kelvin +Kyle +Nathan +Neal +Oliver +Rufus +Van +Wilbert +Alexander +Clinton +Horace +Isaac +Loyd +Malcolm +Monte +Myron +Odell +Phil +Preston +Reggie +Ron +Sam +Stuart +Virgil +Willard +Allan +Chuck +Dannie +Dave +Ellis +Elton +Garland +Hershel +Homer +Jacky +Luther +Nicholas +Orville +Scotty +Tyrone +Vance +Clayton +Cleveland +Daryl +Derrick +Eddy +Edmond +Grant +Grover +Hollis +Hugh +Jerald +Neil +Nick +Pat +Percy +Robbie +Roderick +Rusty +Sterling +Todd +Adolph +Alex +Alton +Amos +Cary +Clark +Cleo +Damon +Denny +Donell +Elijah +Everett +Ivory +Kirk +Levi +Marlon +Matt +Moses +Randell +Roland +Shelby +Theodis +Trent +Will +Al +Alfonso +Andre +Basil +Bert +Burl +Carey +Carol +Clint +Connie +Darrel +Dexter +Dickie +Donnell +Doug +Duane +Ed +Elroy +Emmett +Ervin +Felton +Gearld +Irvin +Jacob +Jason +Johnie +Leland +Loren +Lorenzo +Manuel +Monroe +Norris +Odis +Robby +Ruben +Shannon +Silas +Sonny +Stan +Stephan +Stewart +Thurman +Wardell +Waymon +Wilburn +Winfred +James +David +Michael +Robert +John +Charles +William +Larry +Ricky +Jerry +Terry +Kenneth +Gary +Mark +Richard +Billy +Donald +Ronald +Jimmy +Bobby +Randy +Danny +Steven +Paul +Thomas +Dennis +Johnny +Rickey +Willie +Timothy +Ronnie +Stephen +Joe +Tony +Gregory +Tommy +George +Mike +Anthony +Eddie +Steve +Roger +Joseph +Keith +Carl +Edward +Roy +Bruce +Randall +Calvin +Douglas +Phillip +Daniel +Raymond +Stanley +Kevin +Henry +Curtis +Darrell +Donnie +Harold +Marvin +Alan +Micheal +Dale +Rodney +Barry +Lee +Ray +Don +Jeffrey +Samuel +Allen +Jackie +Brian +Frank +Scott +Alvin +Jeffery +Lonnie +Russell +Walter +Freddie +Melvin +Arthur +Floyd +Perry +Clarence +Andrew +Wayne +Gerald +Patrick +Jim +Ralph +Tim +Lawrence +Albert +Earl +Garry +Jack +Jimmie +Kenny +Philip +Johnnie +Louis +Christopher +Leon +Eugene +Glen +Leroy +Leonard +Bill +Dwight +Fred +Glenn +Reginald +Vernon +Charlie +Chris +Ernest +Howard +Clifford +Earnest +Lloyd +Mitchell +Lewis +Alfred +Herbert +Herman +Victor +Jeff +Jessie +Troy +Wesley +Eric +Jay +Otis +Tom +Clifton +Harvey +Travis +Cecil +Clyde +Frederick +Marty +Doyle +Jesse +Joey +Marcus +Nathaniel +Sammy +Bryan +Franklin +Greg +Harry +Leslie +Martin +Randal +Sam +Craig +Dwayne +Morris +Benny +Mickey +Norman +Rick +Timmy +Vincent +Wendell +Benjamin +Byron +Lester +Milton +Virgil +Bennie +Bob +Claude +Dan +Dave +Roosevelt +Ben +Chester +Dewayne +Elvis +Freddy +Gene +Karl +Matthew +Sammie +Sylvester +Theodore +Unknown +Wallace +Bernard +Edwin +Frankie +Ivory +Joel +Jon +Rocky +Ronny +Sherman +Allan +Andy +Darryl +Dean +Delbert +Elmer +Nathan +Rickie +Tommie +Aaron +Clayton +Kerry +Marshall +Peter +Robin +Stevie +Tracy +Fredrick +Guy +Jerome +Ken +Kent +Leo +Maurice +Elbert +Elton +Elvin +Jonathan +Kelly +Preston +Ron +Teddy +Arnold +Bradley +Carlos +Cleveland +Clinton +Doug +Everett +Kyle +Luther +Marion +Van +Vance +Alex +Brett +Derrick +Duane +Edgar +Garland +Gerry +Gilbert +Gordon +Kim +Pat +Rusty +Ted +Theodis +Warren +Al +Aubrey +Brent +Clay +Denny +Donny +Grady +Hal +Hubert +Percy +Phil +Rodger +Scotty +Stuart +Terrell +Wade +Alton +Archie +Carlton +Coy +Daryl +Eddy +Ellis +Homer +Ira +Jacky +Jamie +Jody +Matt +Nelson +Oscar +Pete +Rex +Roland +Ross +Sidney +Stan +Bart +Bret +Buddy +Chuck +Dexter +Francis +Horace +Kelvin +Levi +Lowell +Loyd +Mack +Manuel +Marlon +Myron +Nicky +Odell +Odis +Randell +Ruben +Ulysses +Willard +Alvie +Amos +Andre +Barney +Bobbie +Brad +Carroll +Cedric +Darren +Dewey +Edmond +Felix +Grant +Grover +Hollis +Isaac +Jose +Kennith +Leland +Lynn +Malcolm +Monroe +Nick +Noel +Oliver +Randolph +Reggie +Royce +Sandy +Shelby +Terence +Todd +Toney +Trent +Tyrone +Wilbur +Alonzo +Audie +Billie +Carey +Cleophus +Clint +Cornell +Damon +Dana +Darrel +Ernie +Ervin +Galen +Gaylon +Hugh +Isiah +Jacob +Jarvis +Jerald +Jewel +Johnie +Juan +Julian +Junior +Kirk +Kurt +Lance +Lanny +Laurence +Major +Mitchel +Moses +Neal +Neil +Owen +Shane +Shawn +Sonny +Sterling +Vince +Wilburn +Willis +James +David +Michael +Robert +John +Charles +William +Mark +Ricky +Kenneth +Larry +Richard +Terry +Jerry +Billy +Gary +Timothy +Steven +Jimmy +Thomas +Bobby +Donald +Randy +Dennis +Paul +Johnny +Ronald +Rickey +Danny +Gregory +Joe +Tony +Ronnie +Stephen +Carl +Willie +Eddie +Tommy +Roger +George +Anthony +Joseph +Roy +Edward +Keith +Steve +Mike +Phillip +Douglas +Raymond +Jeffrey +Curtis +Kevin +Darrell +Bruce +Harold +Dale +Stanley +Henry +Daniel +Jackie +Randall +Jeffery +Samuel +Frank +Melvin +Calvin +Micheal +Scott +Lee +Russell +Tim +Rodney +Brian +Donnie +Timmy +Alan +Walter +Christopher +Alvin +Patrick +Arthur +Don +Allen +Clarence +Wayne +Jim +Kenny +Ray +Freddie +Marvin +Albert +Jimmie +Fred +Gerald +Perry +Ralph +Eric +Glenn +Greg +Jeff +Jessie +Andrew +Barry +Bill +Earl +Howard +Lawrence +Reginald +Jay +Jesse +Lonnie +Floyd +Jack +Lloyd +Craig +Marty +Eugene +Johnnie +Philip +Troy +Dwight +Leroy +Louis +Garry +Leonard +Sammy +Bennie +Bryan +Charlie +Joey +Chris +Clyde +Frederick +Glen +Joel +Leslie +Lewis +Marcus +Clifford +Jon +Alfred +Herman +Martin +Milton +Mitchell +Cecil +Ernest +Tracy +Aaron +Benny +Clifton +Rick +Victor +Wesley +Bob +Franklin +Vernon +Harvey +Kelly +Vincent +Wendell +Dewayne +Doyle +Herbert +Leon +Nathaniel +Otis +Roosevelt +Carlton +Jerome +Norman +Rickie +Teddy +Tom +Travis +Benjamin +Chester +Clinton +Darryl +Donny +Elvis +Frankie +Gene +Sam +Chuck +Dwayne +Kent +Matthew +Harry +Lester +Mickey +Rex +Warren +Andy +Byron +Clark +Claude +Clayton +Derrick +Fredrick +Oscar +Rusty +Sylvester +Tommie +Cedric +Earnest +Edwin +Kelvin +Kerry +Maurice +Peter +Stevie +Archie +Ben +Gilbert +Gordon +Grady +Jonathan +Karl +Kim +Lynn +Max +Oliver +Randal +Rocky +Stuart +Wallace +Brad +Bradley +Brent +Dean +Delbert +Guy +Homer +Lance +Marshall +Nathan +Odell +Robbie +Theodore +Clay +Clint +Darrel +Darren +Everett +Freddy +Leo +Morris +Roderick +Sammie +Ted +Tyrone +Unknown +Willis +Allan +Bart +Bernard +Bret +Buddy +Carroll +Charley +Dan +Darnell +Dave +Dexter +Edgar +Ervin +Hal +Hubert +Ira +Isaac +Marion +Theodis +Alex +Amos +Brett +Carlos +Elmer +Hugh +Ivan +Loyd +Mack +Neal +Nicky +Pat +Preston +Robin +Roland +Royce +Thurman +Todd +Dannie +Daryl +Doug +Gerry +Kyle +Miles +Monty +Percy +Phil +Rufus +Shannon +Sherman +Sidney +Terrance +Timmie +Van +Willard +Alonzo +Alton +Aubrey +Blake +Carey +Cary +Claud +Damon +Dickie +Duane +Ellis +Elvin +Emmett +Jamie +Ken +Kirk +Marlon +Myron +Neil +Nick +Ron +Ronny +Ross +Scotty +Wade +Waymon +Andre +Billie +Dallas +Francis +Garland +Gaylon +Horace +Jacky +Jan +Jasper +Jerald +Johnie +Julius +Kendall +Lesley +Lowell +Malcolm +Randell +Robby +Rodger +Shawn +Stan +Trent +Vance +Winston +Alford +Arnold +Austin +Boyce +Butch +Cleophus +Cleveland +Columbus +Conley +Dana +Dickey +Donell +Donnell +Dwain +Eddy +Elbert +Eldon +Elton +Emanuel +Erwin +Felix +Isiah +Jody +Kelley +Kennith +Luther +Manuel +Michel +Napoleon +Nelson +Nickey +Norris +Odis +Owen +Reggie +Rose +Shelby +Stacy +Sterling +Terrence +Windell +James +David +Michael +John +Robert +Charles +William +Mark +Terry +Kenneth +Larry +Jerry +Richard +Gary +Ricky +Jimmy +Billy +Timothy +Donald +Bobby +Steven +Thomas +Randy +Johnny +Danny +Tony +Ronald +Gregory +Paul +Dennis +Rickey +Joe +Anthony +Mike +Willie +George +Kevin +Carl +Stephen +Tommy +Edward +Ronnie +Eddie +Roger +Roy +Phillip +Steve +Keith +Joseph +Randall +Curtis +Douglas +Jeffrey +Darrell +Calvin +Jeffery +Melvin +Harold +Raymond +Daniel +Stanley +Barry +Micheal +Dale +Brian +Samuel +Scott +Christopher +Russell +Bruce +Don +Alan +Walter +Tim +Ray +Gerald +Lee +Jeff +Greg +Rodney +Wayne +Donnie +Freddie +Kenny +Bill +Jackie +Lonnie +Marvin +Chris +Arthur +Eric +Henry +Jack +Bryan +Frank +Patrick +Allen +Craig +Howard +Timmy +Tracy +Ralph +Alvin +Earl +Perry +Albert +Jim +Dwayne +Jessie +Troy +Victor +Darryl +Jesse +Louis +Marty +Dwight +Glenn +Lawrence +Andrew +Fred +Earnest +Jimmie +Clifford +Ernest +Eugene +Floyd +Glen +Mitchell +Clarence +Jay +Frankie +Joel +Joey +Leslie +Wesley +Leroy +Otis +Reginald +Garry +Lewis +Marcus +Sammy +Vernon +Franklin +Frederick +Martin +Matthew +Clyde +Dewayne +Herman +Aaron +Brent +Charlie +Kerry +Lester +Stevie +Wendell +Dean +Harry +Kelly +Jon +Philip +Tom +Travis +Cecil +Kelvin +Lloyd +Nathan +Nathaniel +Clifton +Johnnie +Leonard +Norman +Rex +Warren +Bradley +Edwin +Herbert +Kirk +Lance +Leon +Milton +Rocky +Sylvester +Ted +Archie +Bennie +Benny +Chuck +Gordon +Harvey +Randal +Vincent +Andy +Benjamin +Byron +Jonathan +Rick +Rickie +Sidney +Alfred +Carroll +Daryl +Freddy +Hugh +Kent +Mickey +Robin +Roosevelt +Todd +Tommie +Virgil +Cedric +Chester +Clay +Clinton +Doug +Doyle +Edgar +Gene +Luther +Sam +Theodore +Carlton +Dave +Fredrick +Kim +Sammie +Sherman +Bernard +Donny +Maurice +Monty +Norris +Rusty +Arnold +Ben +Brett +Claude +Clayton +Darren +Ellis +Everett +Gilbert +Gregg +Pat +Robbie +Ronny +Stuart +Teddy +Wallace +Amos +Andre +Carlos +Dan +Duane +Elbert +Elvis +Ervin +Horace +Ken +Lyle +Lynn +Malcolm +Nicky +Peter +Roderick +Shawn +Van +Alton +Bret +Derrick +Dewey +Dexter +Grant +Hubert +Ira +Kyle +Max +Percy +Reggie +Royce +Ruben +Rufus +Wade +Brad +Buddy +Clint +Coy +Elmer +Forrest +Gaylon +Grady +Guy +Isaac +Jerome +Julius +Karl +Loyd +Mack +Morgan +Owen +Phil +Preston +Stan +Terrence +Timmie +Wilbert +Alex +Allan +Antonio +Billie +Bob +Clark +Cleveland +Cornelius +Darrel +Elroy +Gerry +Hal +Jarvis +Jody +Kennith +Kurt +Leo +Marc +Marion +Marshall +Morris +Neil +Nicholas +Randell +Rodger +Scotty +Terence +Terrell +Theodis +Toney +Tyrone +Unknown +Will +Winston +Alonzo +Austin +Bart +Bert +Bobbie +Boyd +Denny +Elijah +Fabian +Garland +Jacky +Jason +Lonzo +Lorenzo +Louie +Neal +Odell +Orville +Robby +Rory +Shelby +Stewart +Willis +Adrian +Artis +Aubrey +Berry +Booker +Bradford +Britt +Cary +Cleo +Cornell +Dickie +Ed +Elmo +Elton +Francis +Gearld +Jerald +Kendall +Kenney +Kirby +Lanny +Leander +Luke +Manuel +Monte +Moses +Ollie +Pete +Randel +Scottie +Toby +Willard +James +David +Michael +Robert +John +Charles +William +Mark +Kenneth +Ricky +Jerry +Larry +Gary +Billy +Terry +Steven +Richard +Timothy +Bobby +Jimmy +Gregory +Donald +Danny +Tony +Randy +Ronald +Thomas +Johnny +Dennis +Anthony +Paul +Ronnie +Kevin +Willie +Jeffrey +Rickey +Tommy +Roger +Steve +Jeffery +George +Mike +Stephen +Joe +Roy +Eddie +Douglas +Carl +Keith +Joseph +Edward +Christopher +Scott +Curtis +Jeff +Raymond +Darrell +Brian +Calvin +Russell +Phillip +Alan +Daniel +Bruce +Frank +Jackie +Micheal +Randall +Rodney +Tim +Eric +Ray +Stanley +Barry +Dale +Harold +Kenny +Henry +Freddie +Greg +Chris +Gerald +Allen +Don +Samuel +Jim +Melvin +Walter +Wayne +Marvin +Donnie +Patrick +Albert +Mitchell +Philip +Bryan +Jack +Andrew +Clarence +Perry +Ralph +Floyd +Glenn +Lee +Tracy +Kelly +Darryl +Dwight +Lonnie +Frederick +Todd +Glen +Troy +Alvin +Arthur +Marty +Jon +Jay +Victor +Earl +Lawrence +Reginald +Bill +Craig +Howard +Jimmie +Dwayne +Timmy +Fred +Doyle +Joey +Travis +Johnnie +Wesley +Ernest +Eugene +Leonard +Alfred +Jesse +Joel +Louis +Martin +Leon +Leroy +Milton +Sammy +Vernon +Aaron +Garry +Lance +Benny +Cecil +Franklin +Harvey +Vincent +Bradley +Harry +Cedric +Jessie +Kelvin +Leslie +Marcus +Clifford +Norman +Wendell +Bob +Brent +Doug +Frankie +Guy +Kerry +Lester +Matthew +Clyde +Jerome +Lloyd +Otis +Tom +Warren +Brad +Clifton +Daryl +Dewayne +Gordon +Clayton +Herman +Jonathan +Lynn +Nathaniel +Earnest +Everett +Maurice +Rocky +Roderick +Sam +Byron +Charlie +Clay +Donny +Gene +Karl +Leo +Lewis +Nathan +Peter +Robin +Roosevelt +Sylvester +Andy +Bennie +Chuck +Duane +Edwin +Herbert +Kent +Bernard +Chester +Darren +Fredrick +Garland +Kirk +Rex +Rickie +Stevie +Tommie +Archie +Benjamin +Clark +Dean +Luther +Marshall +Mickey +Morris +Randal +Ronny +Sidney +Theodore +Buddy +Homer +Justin +Marion +Monty +Rick +Robbie +Ted +Adam +Alexander +Ben +Dan +Darrel +Derek +Edgar +Elton +Gilbert +Max +Nicky +Shawn +Tyrone +Virgil +Wade +Amos +Arnold +Clinton +Derrick +Elmer +Elvis +Freddy +Jacky +Kim +Ross +Rusty +Scotty +Teddy +Toney +Billie +Bobbie +Brett +Carlton +Felix +Ira +Ivory +Jason +Jody +Julius +Kendall +Monte +Phil +Preston +Robby +Rufus +Van +Darnell +Delbert +Ellis +Gerry +Grady +Jerald +Ken +Loyd +Norris +Randell +Randolph +Rodger +Sammie +Stan +Allan +Blake +Carroll +Cleveland +Clint +Dana +Dannie +Dewey +Dexter +Grant +Hubert +Jamie +Julian +Kirby +Lorenzo +Mack +Marlon +Matt +Neal +Odis +Scottie +Vance +Wallace +Will +Al +Alton +Andre +Antonio +Boyce +Carey +Carlos +Christian +Cornelius +Dave +Davy +Dickie +Elbert +Ervin +Gregg +Greggory +Jose +Junior +Kyle +Lowell +Malcolm +Michel +Monroe +Morgan +Nick +Odell +Oscar +Reggie +Roland +Ron +Royce +Shannon +Thurman +Ulysses +Unknown +Willard +Winfred +Adrian +Alex +Alonzo +Artis +Aubrey +Britt +Brooks +Carol +Claude +Coy +Gaylon +Grover +Hal +Irvin +Isaac +Jasper +Kennith +Kurt +Lamar +Loren +Luke +Marc +Miles +Oliver +Percy +Rob +Sandy +Shane +Shelby +Sherman +Stuart +Trent +Willis +James +David +Michael +Robert +John +Charles +Mark +William +Kenneth +Terry +Gary +Jerry +Richard +Billy +Jimmy +Larry +Ricky +Gregory +Steven +Timothy +Randy +Donald +Anthony +Thomas +Tony +Paul +Bobby +Jeffrey +Ronald +Danny +Johnny +Willie +Kevin +Scott +Dennis +Carl +Joe +Roger +Steve +Tommy +Ronnie +Douglas +Jeffery +Joseph +George +Keith +Phillip +Edward +Mike +Rickey +Stephen +Eddie +Christopher +Barry +Brian +Randall +Curtis +Bruce +Russell +Roy +Daniel +Darrell +Greg +Chris +Stanley +Jeff +Micheal +Henry +Harold +Alan +Calvin +Todd +Raymond +Eric +Tim +Allen +Samuel +Donnie +Lee +Rodney +Frank +Tracy +Dale +Troy +Don +Jackie +Vincent +Gerald +Ray +Kenny +Melvin +Timmy +Wayne +Glenn +Darryl +Marvin +Jim +Lawrence +Reginald +Walter +Bryan +Earl +Lance +Marty +Mitchell +Jack +Kelly +Albert +Perry +Andrew +Victor +Martin +Dwight +Joey +Jimmie +Arthur +Lonnie +Louis +Patrick +Clifford +Bill +Ernest +Freddie +Frederick +Glen +Jay +Vernon +Wesley +Alvin +Bradley +Craig +Floyd +Ralph +Clarence +Kerry +Lloyd +Philip +Fred +Leslie +Sammy +Howard +Jon +Leon +Lewis +Marcus +Dwayne +Jesse +Joel +Nathan +Kent +Nathaniel +Travis +Clyde +Gene +Jessie +Jonathan +Leonard +Cedric +Eugene +Franklin +Johnnie +Leroy +Milton +Aaron +Earnest +Guy +Harvey +Matthew +Dewayne +Norman +Scotty +Bob +Chuck +Doyle +Jerome +Wendell +Carlton +Clinton +Brent +Byron +Doug +Garry +Herbert +Maurice +Roderick +Sylvester +Ted +Alfred +Chester +Frankie +Fredrick +Kelvin +Tom +Benjamin +Benny +Cecil +Jason +Karl +Ken +Otis +Peter +Robin +Adam +Andre +Andy +Brett +Clifton +Dean +Edwin +Morris +Robbie +Tommie +Buddy +Charlie +Duane +Harry +Luther +Marion +Rickie +Shannon +Stuart +Bennie +Bernard +Clay +Cornelius +Donny +Gilbert +Kendall +Lynn +Oscar +Randal +Sam +Tyrone +Brad +Daryl +Kirk +Kyle +Lester +Marshall +Monty +Preston +Rocky +Roosevelt +Shawn +Willis +Clayton +Dan +Delbert +Edgar +Elvis +Herman +Julius +Mickey +Rex +Rick +Ross +Teddy +Theodore +Wallace +Antonio +Ben +Dave +Derrick +Elmer +Garland +Gordon +Leo +Marc +Max +Neal +Nelson +Randell +Roland +Stevie +Toney +Alex +Carlos +Clark +Claude +Dana +Ivan +Jamie +Kurt +Phil +Rusty +Sammie +Toby +Van +Virgil +Wade +Alton +Arnold +Barney +Blake +Bobbie +Britt +Carroll +Cary +Darren +Derek +Ellis +Everett +Freddy +Kim +Royce +Scottie +Stacy +Theodis +Vance +Warren +Willard +Aubrey +Bart +Clint +Coy +Donnell +Eddy +Forrest +Homer +Hugh +Jacky +Loyd +Mack +Matt +Monte +Myron +Robby +Sherman +Sidney +Adrian +Archie +Bryon +Chad +Darnell +Darrel +Dewey +Ed +Ervin +Gregg +Hershel +Horace +Hubert +Huey +Ira +Kennith +Lyndon +Murray +Nick +Oliver +Otha +Quinton +Randolph +Rodger +Rufus +Sandy +Sean +Stacey +Stan +Terence +Billie +Boyd +Bret +Brice +Cliff +Dane +Grady +Grant +Isaac +Jacob +Jake +Jefferson +Jerald +Jeremiah +Jody +Joesph +Juan +Kirby +Malvin +Mitch +Morgan +Ollie +Percy +Richie +Ron +Spencer +Stephan +Terrell +Trent +Ty +Wilburn +Will +James +Michael +David +John +Robert +Charles +William +Mark +Kenneth +Terry +Richard +Jerry +Steven +Gary +Gregory +Jimmy +Billy +Ricky +Timothy +Larry +Paul +Kevin +Tony +Bobby +Donald +Randy +Thomas +Anthony +Ronald +Danny +Scott +Johnny +Jeffrey +Keith +Jeffery +Carl +Ronnie +Stephen +Joe +Joseph +Tommy +Dennis +Willie +Phillip +Steve +Douglas +Roger +George +Brian +Mike +Edward +Roy +Christopher +Bruce +Randall +Eric +Patrick +Darrell +Russell +Curtis +Daniel +Eddie +Barry +Calvin +Jeff +Rickey +Raymond +Greg +Todd +Tim +Harold +Rodney +Stanley +Lee +Micheal +Ray +Samuel +Troy +Jackie +Don +Alan +Henry +Kenny +Timmy +Allen +Gerald +Marvin +Donnie +Frank +Melvin +Chris +Andrew +Bryan +Victor +Vincent +Arthur +Dale +Tracy +Marty +Alvin +Walter +Mitchell +Bill +Earl +Jack +Lloyd +Reginald +Jessie +Lonnie +Brent +Glen +Wayne +Albert +Fred +Glenn +Howard +Jim +Bradley +Frederick +Lawrence +Perry +Wesley +Jay +Leslie +Leonard +Clarence +Dwight +Craig +Joey +Kelly +Milton +Ralph +Travis +Charlie +Darryl +Jonathan +Martin +Philip +Floyd +Freddie +Jon +Wendell +Dewayne +Eugene +Lance +Louis +Matthew +Sammy +Vernon +Byron +Cecil +Dwayne +Jimmie +Kerry +Sam +Derrick +Franklin +Norman +Scotty +Clifford +Doug +Earnest +Jesse +Joel +Leroy +Nathan +Andy +Benjamin +Herbert +Herman +Lewis +Stevie +Teddy +Clinton +Kirk +Marcus +Shawn +Alfred +Frankie +Nathaniel +Otis +Aaron +Benny +Brad +Chester +Clifton +Edwin +Fredrick +Gordon +Johnnie +Kent +Lester +Luther +Ben +Clayton +Clyde +Donny +Karl +Kyle +Rick +Roosevelt +Warren +Bennie +Bernard +Brett +Claude +Dan +Harry +Kelvin +Peter +Roderick +Virgil +Darren +Derek +Ernest +Garry +Harvey +Jerome +Sylvester +Carlos +Clay +Daryl +Doyle +Guy +Kendall +Leon +Maurice +Robbie +Vance +Arnold +Charley +Grady +Isaac +Ken +Robin +Shannon +Stuart +Adam +Carlton +Darrel +Dexter +Gene +Ira +Jamie +Marc +Marion +Rex +Rusty +Wallace +Chuck +Clark +Dean +Hugh +Jason +Randal +Rickie +Wade +Willis +Buddy +Cary +Cedric +Damon +Everett +Freddy +Hubert +Kim +Lynn +Manuel +Marshall +Max +Oscar +Ron +Sammie +Stacy +Ted +Vince +Alton +Andre +Bart +Delbert +Edgar +Elmer +Justin +Mickey +Robby +Rocky +Rodger +Ross +Stoney +Tom +Tommie +Alex +Bert +Bradford +Dewey +Elbert +Elvin +Elvis +Hal +Morris +Nicky +Phil +Reggie +Roland +Ronny +Royce +Shane +Sherman +Stan +Waymon +Allan +Alonzo +Casey +Chip +Cornelius +Dave +Duane +Grant +Julius +Kennith +Kirby +Loyd +Lyle +Monte +Neal +Randell +Rufus +Scottie +Shelby +Sheldon +Toby +Trent +Tyrone +Van +Archie +Artis +Britt +Bryon +Cleveland +Coy +Dannie +Denny +Eddy +Garland +Homer +Horace +Ivory +Jasper +Jerald +Leland +Mack +Malcolm +Marlon +Monty +Odis +Orlando +Pat +Quentin +Randolph +Rob +Scot +Theodis +Toney +Unknown +Wilson +Al +Antonio +Bob +Bobbie +Clint +Dana +Dane +Donnell +Ed +Eldon +Ellis +Ervin +Forrest +Francis +Gilbert +Gregg +Gus +Hank +Huey +Jody +Julian +Kurt +Lenard +Leo +Levi +Luke +Nelson +Nicholas +Nick +Nolan +Preston +Quinton +Rodrick +Sandy +Sidney +Spencer +Terrance +Theodore +Thurman +Tracey +Wilbur +Willard +James +John +Michael +David +Robert +William +Charles +Mark +Richard +Kenneth +Timothy +Terry +Steven +Jimmy +Jerry +Gregory +Billy +Gary +Kevin +Donald +Bobby +Paul +Anthony +Larry +Ricky +Randy +Thomas +Jeffrey +Tony +Johnny +Ronald +Danny +Scott +Jeffery +Joseph +Keith +Edward +Dennis +Carl +Brian +George +Joe +Douglas +Tommy +Patrick +Ronnie +Willie +Roger +Steve +Stephen +Phillip +Rodney +Eddie +Christopher +Darrell +Daniel +Eric +Mike +Jeff +Randall +Rickey +Russell +Curtis +Allen +Bruce +Roy +Barry +Micheal +Harold +Raymond +Kenny +Gerald +Marvin +Lee +Todd +Calvin +Stanley +Troy +Alan +Bryan +Greg +Henry +Andrew +Chris +Samuel +Donnie +Walter +Joey +Dale +Vincent +Marty +Floyd +Melvin +Ray +Wayne +Bradley +Jackie +Mitchell +Tracy +Victor +Jack +Jim +Reginald +Timmy +Jessie +Frank +Jay +Perry +Tim +Alvin +Don +Frederick +Kelly +Louis +Leonard +Travis +Howard +Joel +Martin +Nathan +Craig +Glenn +Dwight +Earl +Glen +Jesse +Aaron +Fred +Bill +Clarence +Freddie +Leslie +Derrick +Dwayne +Jimmie +Jon +Jonathan +Lewis +Lonnie +Matthew +Philip +Lance +Norman +Ralph +Sammy +Wesley +Albert +Brad +Dewayne +Gene +Kerry +Otis +Arthur +Brent +Franklin +Kirk +Lawrence +Shawn +Alfred +Charlie +Clifford +Eugene +Kelvin +Leon +Marcus +Benjamin +Johnnie +Vernon +Clifton +Alex +Darryl +Frankie +Kent +Randal +Teddy +Wendell +Clyde +Doyle +Harry +Lloyd +Cecil +Earnest +Ernest +Jason +Kendall +Robbie +Scotty +Andy +Brett +Ken +Leroy +Sam +Andre +Darren +Doug +Edwin +Stevie +Sylvester +Tom +Wade +Cedric +Clinton +Elmer +Harvey +Kyle +Maurice +Warren +Chester +Clayton +Gordon +Lester +Rick +Robin +Rocky +Sherman +Sidney +Tommie +Virgil +Adam +Benny +Bob +Dan +Daryl +Dean +Jamie +Lynn +Royce +Stuart +Bernard +Carlos +Cary +Fredrick +Jerome +Karl +Marc +Nathaniel +Robby +Ted +Elbert +Herman +Mickey +Peter +Roderick +Terrance +Terrence +Van +Carlton +Chuck +Clark +Clay +Garry +Lowell +Marshall +Monte +Neal +Oscar +Ronny +Shannon +Theodore +Willis +Allan +Ben +Bennie +Byron +Dana +Felix +Guy +Herbert +Luther +Marion +Milton +Monty +Rickie +Ron +Tyrone +Arnold +Bart +Claude +Darin +Edgar +Ellis +Ervin +Forrest +Freddy +Hugh +Jody +Kennith +Myron +Odell +Richie +Sean +Stacy +Vance +Vince +Willard +Adrian +Antonio +Buddy +Darrel +Derek +Duane +Gerry +Jerrell +Leo +Loyd +Matt +Morris +Neil +Preston +Randell +Rex +Rodger +Spencer +Stan +Trent +Al +Alford +Archie +Austin +Billie +Carroll +Damon +Denny +Dexter +Donny +Harley +Homer +Horace +Hubert +Ivan +Jerald +Kennedy +Kim +Kurt +Malcolm +Nick +Odis +Roosevelt +Sammie +Shane +Stacey +Terence +Alton +Blake +Boyd +Bradford +Cornelius +Coy +Dane +Darrin +Delbert +Dewey +Elton +Garland +Grady +Ira +Kirby +Leland +Loren +Marlon +Nicky +Phil +Shelby +Unknown +Will +Alexander +Amos +Avery +Brooks +Carey +Chad +Cliff +Dallas +Dave +Derwin +Elijah +Elvis +Fletcher +Geoffrey +Gilbert +Grant +Ivory +Julian +Kenith +Lenny +Lindsey +Lonny +Lyndon +Manuel +Noel +Oliver +Quintin +Quinton +Randolph +Ritchie +Roland +Ross +Rusty +Terrell +Toney +Trey +Wilbert +Wilson +Winfred +Zachary +James +Michael +David +John +Robert +Charles +William +Kenneth +Mark +Kevin +Timothy +Richard +Gregory +Jerry +Terry +Billy +Gary +Anthony +Thomas +Bobby +Steven +Donald +Paul +Jeffrey +Rodney +Larry +Tony +Ricky +Randy +Jimmy +Ronald +Johnny +Danny +Christopher +Tommy +Jeffery +Keith +Joseph +Scott +Douglas +Brian +Ronnie +Carl +Stephen +Edward +Daniel +Willie +Joe +Roger +Phillip +George +Eric +Dennis +Eddie +Darrell +Randall +Raymond +Roy +Curtis +Tracy +Steve +Patrick +Rickey +Russell +Darren +Samuel +Chris +Barry +Bryan +Todd +Mike +Allen +Jeff +Bruce +Henry +Calvin +Darryl +Lee +Gerald +Marvin +Walter +Stanley +Tim +Troy +Timmy +Ray +Andrew +Micheal +Harold +Melvin +Jackie +Bradley +Freddie +Frederick +Wesley +Frank +Reginald +Don +Vincent +Johnnie +Alan +Donnie +Earl +Matthew +Joey +Craig +Glen +Glenn +Kenny +Travis +Albert +Greg +Howard +Victor +Arthur +Jessie +Lonnie +Perry +Dale +Kelly +Bill +Jimmie +Jon +Jonathan +Lawrence +Scotty +Dewayne +Earnest +Jay +Leslie +Norman +Wayne +Ernest +Jason +Marty +Vernon +Brent +Byron +Charlie +Fred +Lance +Ralph +Roderick +Wendell +Alvin +Brett +Darin +Joel +Leonard +Leroy +Shawn +Benjamin +Jim +Lloyd +Sammy +Teddy +Clifford +Floyd +Lewis +Mitchell +Philip +Clyde +Derrick +Cedric +Clarence +Darrin +Dwayne +Jack +Kelvin +Ken +Kerry +Louis +Marcus +Tom +Clifton +Eugene +Jerome +Martin +Nathan +Bernard +Cecil +Doyle +Dwight +Frankie +Franklin +Herbert +Bennie +Brad +Daryl +Harry +Herman +Kirk +Nathaniel +Robbie +Benny +Carlos +Gene +Harvey +Kendall +Leon +Milton +Otis +Sherman +Stacy +Adam +Andre +Andy +Arnold +Ben +Chester +Donny +Guy +Jesse +Kyle +Virgil +Warren +Aaron +Bret +Doug +Fredrick +Kent +Maurice +Oscar +Randal +Rickie +Roosevelt +Sam +Shannon +Sylvester +Tyrone +Alex +Clint +Ira +Julius +Kelley +Loyd +Lynn +Monty +Peter +Scottie +Tommie +Wade +Bob +Chuck +Dan +Daren +Derek +Karl +Myron +Roland +Sean +Theodore +Toby +Antonio +Clark +Clinton +Damon +Dean +Edgar +Edwin +Forrest +Freddy +Garry +Kim +Lester +Luther +Malcolm +Marshall +Morris +Neal +Rick +Rocky +Van +Blake +Bryant +Chad +Dave +Elbert +Erik +Gerry +Gordon +Jamie +Mickey +Noel +Preston +Rex +Robin +Ron +Stevie +Stuart +Ted +Terrence +Alonzo +Bryon +Carey +Cary +Casey +Darron +Darwin +Elmer +Everett +Gilbert +Grant +Hugh +Ivory +Kennith +Leo +Mack +Manuel +Michel +Nelson +Odell +Robby +Rodger +Rusty +Sammie +Shelby +Stan +Sterling +Thurman +Trent +Vince +Al +Alexander +Allan +Alton +Archie +Bart +Buddy +Charley +Cornelius +Dana +Darrel +Donell +Drew +Felix +Grady +Homer +Horace +Ivan +Julian +Kurt +Marion +Morgan +Neil +Oliver +Richie +Toney +Will +Winston +Adrian +Alfred +Barton +Billie +Bobbie +Boris +Carroll +Clay +Clayton +Dewey +Dexter +Elvis +Ervin +Garland +Glynn +Harlan +Hubert +Jody +Joesph +Junior +Kirby +Leland +Mac +Marlin +Matt +Pat +Phil +Ryan +Shane +Sheldon +Stewart +Theodis +Theron +Willard +Yul +James +Michael +John +David +Robert +William +Charles +Mark +Steven +Kenneth +Kevin +Gregory +Jerry +Richard +Timothy +Terry +Gary +Billy +Paul +Larry +Anthony +Jimmy +Rodney +Thomas +Donald +Jeffrey +Ronald +Randy +Tony +Jeffery +Christopher +Brian +Bobby +Keith +Stephen +Ricky +Danny +Joseph +Scott +Johnny +Eric +Roger +Carl +Daniel +Edward +Dennis +George +Ronnie +Tommy +Joe +Randall +Patrick +Douglas +Bryan +Curtis +Willie +Roy +Tracy +Marvin +Eddie +Darrell +Harold +Darren +Phillip +Raymond +Samuel +Chris +Todd +Micheal +Russell +Barry +Steve +Bruce +Lee +Rickey +Tim +Allen +Melvin +Troy +Gerald +Henry +Mike +Frank +Jon +Donnie +Alan +Jeff +Timmy +Andrew +Bradley +Stanley +Vincent +Matthew +Clarence +Darryl +Jack +Jason +Reginald +Shawn +Calvin +Jonathan +Kelly +Lonnie +Greg +Jim +Albert +Don +Travis +Jessie +Lance +Ray +Victor +Walter +Frederick +Wesley +Howard +Jay +Marty +Philip +Dale +Dewayne +Joel +Craig +Derrick +Jackie +Jesse +Kenny +Kerry +Leonard +Wayne +Alfred +Arthur +Cedric +Norman +Darrin +Earnest +Floyd +Glenn +Louis +Sammy +Scotty +Fred +Freddie +Kelvin +Lawrence +Leon +Nathan +Sean +Benjamin +Brett +Clifton +Darin +Glen +Dwight +Franklin +Aaron +Brent +Byron +Charlie +Jimmie +Joey +Perry +Chad +Doyle +Kyle +Leslie +Martin +Ralph +Scottie +Shannon +Vernon +Dwayne +Fredrick +Mitchell +Alvin +Brad +Dean +Clifford +Herman +Wade +Wendell +Clyde +Edwin +Ernest +Frankie +Lloyd +Roderick +Stacy +Bill +Eugene +Everett +Harvey +Jody +Nathaniel +Casey +Cecil +Clay +Darron +Donny +Earl +Garry +Gene +Herbert +Kent +Lewis +Marcus +Randal +Warren +Bennie +Carroll +Johnnie +Leroy +Lester +Morris +Rick +Shane +Teddy +Adam +Benny +Chester +Harry +Ken +Luther +Milton +Otis +Roosevelt +Tyrone +Chuck +Jerome +Kurt +Leo +Marion +Marshall +Mickey +Robbie +Stacey +Adrian +Archie +Carlos +Cary +Clark +Claude +Derek +Dexter +Doug +Ira +Jamie +Kendall +Kim +Roland +Ross +Sam +Sammie +Shelby +Sheldon +Sherman +Carlton +Clayton +Clinton +Daron +Darrel +Dave +Duane +Elbert +Gordon +Hugh +Jeffry +Justin +Kirk +Lynn +Matt +Maurice +Max +Monty +Peter +Rex +Rocky +Rodger +Ronny +Sidney +Stuart +Sylvester +Van +Wallace +Willis +Alex +Amos +Andre +Andy +Antonio +Arnold +Bart +Bryant +Coy +Damon +Freddy +Garland +Jacky +Jarrod +Marc +Neal +Odell +Orlando +Randell +Randolph +Rickie +Stevie +Ted +Tommie +Willard +Ben +Bernard +Bret +Buddy +Clint +Dallas +Dan +Daryl +Derwin +Elvis +Emanuel +Gilbert +Ivory +Juan +Julian +Julius +Karl +Loyd +Marlin +Morgan +Nelson +Oscar +Preston +Robby +Rusty +Spencer +Stewart +Terence +Terrance +Tom +Alton +Andrea +Billie +Bradford +Charley +Delbert +Dwain +Elijah +Elliott +Emmett +Ervin +Grady +Grant +Greggory +Guy +Heath +Isaac +Ivan +Lanny +Manuel +Miles +Neil +Nicholas +Nicky +Oliver +Rufus +Stan +Sterling +Theodis +Theodore +Trent +Wilbert +Will +Zachary +James +Michael +David +John +Robert +William +Mark +Charles +Timothy +Kenneth +Kevin +Richard +Steven +Terry +Jerry +Jeffrey +Brian +Christopher +Gregory +Anthony +Jimmy +Larry +Billy +Paul +Thomas +Ronald +Gary +Rodney +Keith +Tony +Donald +Bobby +Joseph +Stephen +Eric +Randy +Johnny +Jeffery +Danny +Scott +Ricky +Daniel +Edward +Bryan +George +Douglas +Ronnie +Joe +Todd +Patrick +Willie +Darrell +Randall +Roger +Tommy +Carl +Raymond +Phillip +Chris +Tracy +Stacy +Dennis +Russell +Curtis +Mike +Roy +Harold +Darren +Gerald +Marvin +Rickey +Steve +Timmy +Matthew +Travis +Alan +Jon +Calvin +Troy +Lee +Barry +Jeff +Micheal +Bruce +Samuel +Stanley +Vincent +Andrew +Eddie +Jay +Shawn +Tim +Donnie +Allen +Henry +Alvin +Dale +Don +Walter +Arthur +Kelly +Kelvin +Roderick +Derrick +Lawrence +Bradley +Glen +Jessie +Jonathan +Shannon +Albert +Jack +Jason +Craig +Dewayne +Frank +Greg +Jackie +Melvin +Brent +Darrin +Reginald +Scotty +Wesley +Glenn +Howard +Jimmie +Ray +Brad +Floyd +Lance +Clifford +Earl +Martin +Joel +Kenny +Marty +Mitchell +Nathan +Ralph +Victor +Brett +Fred +Freddie +Philip +Vernon +Wayne +Aaron +Eugene +Joey +Lloyd +Louis +Chad +Jesse +Jim +Lonnie +Marcus +Shane +Bill +Ernest +Norman +Perry +Sean +Byron +Clifton +Doyle +Kent +Kyle +Andy +Benjamin +Clarence +Earnest +Frederick +Jody +Johnnie +Kirk +Leonard +Leslie +Darryl +Dwight +Franklin +Herbert +Kerry +Stacey +Andre +Carlos +Damon +Dwayne +Frankie +Fredrick +Gene +Maurice +Nicholas +Wade +Adam +Bernard +Bryant +Cedric +Edwin +Leon +Lester +Randal +Sammy +Charlie +Darin +Heath +Jerome +Leroy +Lewis +Stevie +Warren +Alfred +Derek +Garry +Herman +Lynn +Marshall +Nathaniel +Preston +Terrence +Antonio +Ben +Claude +Clyde +Elvis +Jamie +Kim +Marion +Robbie +Scottie +Sylvester +Terrance +Cecil +Chester +Clayton +Clinton +Doug +Edgar +Freddy +Justin +Mickey +Milton +Otis +Percy +Rickie +Ryan +Teddy +Theodis +Wallace +Wendell +Archie +Benny +Clint +Everett +Harvey +Kelley +Lanny +Loyd +Rex +Rusty +Sherman +Stuart +Bob +Buddy +Casey +Chuck +Clark +Dana +Dave +Duane +Elmer +Gordon +Harry +Kendall +Kennith +Marc +Morris +Robby +Rocky +Roosevelt +Ted +Terence +Tommie +Tyrone +Alex +Bart +Bobbie +Bret +Britt +Carey +Cary +Cleveland +Dan +Daren +Darnell +Darron +Dean +Delbert +Farrell +Grant +Horace +Jacob +Jeremy +Ken +Kurt +Leo +Mack +Neil +Nicky +Noel +Oliver +Peter +Roland +Ronny +Rufus +Sammie +Shaun +Sidney +Spencer +Thurman +Toby +Tom +Toney +Tracey +Van +Virgil +Will +Audie +Bennie +Bert +Carroll +Clay +Coy +Dannie +Daron +Derick +Dexter +Erik +Felix +Guy +Hugh +Hunter +Ira +Ivory +Kirby +Loren +Louie +Malcolm +Monty +Nick +Rodrick +Ross +Sam +Sandy +Stefan +Vance +Vince +Willis +Winston +James +Michael +John +David +Robert +Charles +William +Mark +Kevin +Timothy +Steven +Richard +Anthony +Jeffrey +Brian +Kenneth +Christopher +Jerry +Gary +Terry +Gregory +Ronald +Paul +Larry +Jimmy +Billy +Thomas +Donald +Jeffery +Bobby +Scott +Tony +Johnny +Keith +Stephen +Ricky +Rodney +Patrick +Eric +Joseph +Randy +Bryan +Daniel +Douglas +Edward +Willie +Todd +Ronnie +Darrell +Tommy +Danny +Shawn +George +Joe +Roger +Carl +Phillip +Russell +Dennis +Lee +Matthew +Chris +Jason +Raymond +Roy +Samuel +Stacy +Curtis +Randall +Tracy +Troy +Jeff +Kelly +Calvin +Shannon +Darren +Marvin +Bruce +Gerald +Andrew +Craig +Sean +Eddie +Steve +Ray +Bradley +Micheal +Travis +Alan +Allen +Henry +Jon +Jonathan +Rickey +Earl +Marty +Reginald +Arthur +Barry +Martin +Harold +Alvin +Chad +Jackie +Don +Donnie +Jay +Shane +Stanley +Victor +Wesley +Frank +Vincent +Dale +Freddie +Lance +Melvin +Greg +Mike +Philip +Timmy +Walter +Clarence +Jack +Kenny +Clinton +Floyd +Joey +Marcus +Wayne +Andre +Brent +Dewayne +Glenn +Lonnie +Benjamin +Jessie +Joel +Louis +Nathan +Perry +Darin +Herbert +Leonard +Tim +Aaron +Derrick +Glen +Jim +Lawrence +Leroy +Mitchell +Scotty +Andy +Darryl +Jimmie +Roderick +Brad +Clayton +Darrin +Derek +Dexter +Gene +Howard +Kyle +Vernon +Brett +Byron +Cedric +Charlie +Kelvin +Kendall +Otis +Stacey +Albert +Clifford +Dwayne +Frederick +Maurice +Wendell +Carlos +Daryl +Edwin +Fred +Leon +Lewis +Lloyd +Sammy +Wade +Dan +Darrel +Jesse +Jody +Nathaniel +Stevie +Teddy +Benny +Cecil +Corey +Dwight +Eugene +Fredrick +Heath +Kent +Leslie +Clyde +Damon +Ernest +Harvey +Justin +Kerry +Norman +Rex +Alfred +Antonio +Carlton +Clay +Clifton +Franklin +Herman +Jamie +Kirk +Peter +Ryan +Scottie +Bart +Bill +Daren +Dean +Duane +Earnest +Ronny +Ross +Stuart +Adam +Bryant +Elvis +Everett +Frankie +Guy +Harry +Jerome +Johnnie +Lester +Marc +Milton +Morris +Nicholas +Preston +Ralph +Robbie +Roosevelt +Ted +Toby +Toney +Tyrone +Virgil +Warren +Ben +Bennie +Marshall +Max +Monty +Sam +Terrance +Tommie +Alex +Bradford +Brandon +Carey +Chester +Claude +Cody +Daron +Darwin +Garland +Gerry +Gordon +Gregg +Horace +Kim +Luther +Manuel +Orlando +Richie +Sammie +Sherman +Wallace +Allan +Andrea +Bernard +Blake +Boyd +Bryon +Clark +Clint +Dana +Doyle +Edgar +Felix +Jared +Jeremy +Kelley +Ken +Leo +Lindsey +Lynn +Mack +Marion +Myron +Neil +Oscar +Rickie +Shaun +Spencer +Terence +Ty +Vance +Waylon +Bert +Bret +Buddy +Carroll +Casey +Cliff +Demetrius +Derick +Donny +Donovan +Dusty +Elmer +Emmett +Gabriel +Gilbert +Ivan +Julius +Karl +Kris +Lesley +Lyle +Mario +Morgan +Oliver +Phil +Rick +Rocky +Ron +Rusty +Sterling +Stewart +Timmie +Tracey +Van +Michael +James +John +David +Robert +William +Charles +Mark +Christopher +Kevin +Steven +Brian +Timothy +Richard +Jeffrey +Anthony +Kenneth +Gary +Gregory +Thomas +Larry +Jerry +Terry +Stephen +Jimmy +Rodney +Billy +Donald +Paul +Eric +Bobby +Joseph +Jeffery +Tony +Scott +Jason +Ronald +Johnny +Danny +Bryan +Keith +Randy +Ricky +Tommy +Patrick +Daniel +Joe +Russell +Phillip +Bradley +George +Todd +Douglas +Willie +Roger +Eddie +Edward +Matthew +Carl +Chris +Corey +Tracy +Dennis +Jonathan +Samuel +Raymond +Shawn +Bruce +Roy +Shannon +Andrew +Randall +Ronnie +Kelly +Darrell +Darren +Micheal +Sean +Allen +Barry +Jon +Troy +Calvin +Craig +Lee +Chad +Curtis +Walter +Reginald +Travis +Marvin +Steve +Vincent +Alan +Gerald +Henry +Marcus +Wesley +Brad +Lawrence +Rickey +Stanley +Lance +Stacy +Joey +Donnie +Harold +Scotty +Don +Derrick +Freddie +Jeff +Jessie +Aaron +Alvin +Arthur +Brent +Melvin +Albert +Clarence +Greg +Timmy +Kyle +Andy +Glen +Jack +Joel +Clifton +Clinton +Dale +Floyd +Jay +Lonnie +Mitchell +Tyrone +Wayne +Brett +Derek +Franklin +Glenn +Kirk +Leonard +Jody +Kerry +Ray +Shane +Frederick +Jesse +Mike +Tim +Benjamin +Darrin +Jimmie +Kenny +Philip +Cedric +Clayton +Damon +Jeremy +Justin +Leon +Martin +Marty +Bill +Dean +Dwight +Ernest +Jackie +Leslie +Marc +Sammy +Darin +Kelvin +Louis +Nathan +Victor +Frank +Howard +Ryan +Earl +Earnest +Fred +Jamie +Jim +Maurice +Perry +Teddy +Bernard +Bryant +Charlie +Fredrick +Jerome +Kendall +Norman +Ralph +Randal +Adam +Alex +Brandon +Clifford +Clint +Dexter +Doyle +Neal +Nicholas +Otis +Roderick +Stacey +Vernon +Warren +Alfred +Byron +Darryl +Daryl +Garry +Johnnie +Kent +Leroy +Lloyd +Monte +Morris +Sylvester +Theodore +Andre +Casey +Cecil +Dewayne +Eugene +Hugh +Jared +Marion +Max +Randell +Rusty +Archie +Cary +Chuck +Clay +Dan +Dana +Dwayne +Edwin +Everett +Guy +Heath +Herbert +Johnathan +Lynn +Matt +Mickey +Nathaniel +Oscar +Robin +Stewart +Toby +Vance +Wendell +Bart +Buddy +Cory +Dustin +Elmer +Frankie +Gene +Gerry +Gordon +Harvey +Herman +Malcolm +Preston +Robbie +Sam +Spencer +Tom +Trevor +Virgil +Wade +Alexander +Arnold +Avery +Bryon +Carlton +Dallas +Daren +Darrel +Darron +Denny +Doug +Edgar +Ervin +Freddy +Grady +Harry +Ira +Juan +Karl +Lewis +Milton +Myron +Neil +Reggie +Rex +Ross +Rufus +Shelby +Stuart +Toney +Allan +Antonio +Bennie +Benny +Bradford +Carey +Carlos +Cedrick +Chester +Cliff +Cody +Donny +Duane +Geoffrey +Hubert +Kennith +Kurt +Lorenzo +Luther +Nick +Noel +Rick +Ron +Roosevelt +Scottie +Alonzo +Alton +Ashley +Blake +Bob +Bret +Claude +Clyde +Dalton +Darius +Devin +Dewey +Garland +Jacob +Kelley +Kirby +Lamar +Loyd +Lyle +Marshall +Monty +Oliver +Peter +Rocky +Ronny +Scot +Sherman +Terrance +Terrell +Tommie +Tracey +Trent +Wallace +Wilbert +James +Michael +David +John +Robert +William +Kevin +Christopher +Charles +Mark +Steven +Anthony +Brian +Jason +Timothy +Gregory +Richard +Jeffrey +Kenneth +Jerry +Eric +Larry +Thomas +Gary +Paul +Jeffery +Scott +Stephen +Jimmy +Billy +Joseph +Bobby +Donald +Johnny +Terry +Ronald +Keith +Rodney +Marcus +Daniel +Tony +Shawn +Matthew +Phillip +Todd +Patrick +Dennis +Bryan +Randy +Chris +Bradley +Danny +Edward +Joe +Douglas +Ronnie +George +Ricky +Roy +Curtis +Tommy +Carl +Russell +Shannon +Jon +Roger +Lance +Darrell +Jonathan +Willie +Travis +Chad +Shane +Brent +Andrew +Jeff +Raymond +Troy +Aaron +Brad +Derrick +Micheal +Eddie +Craig +Darren +Wesley +Henry +Randall +Marvin +Stacy +Tracy +Jeremy +Kelly +Bruce +Barry +Brandon +Allen +Calvin +Corey +Gerald +Lee +Marty +Samuel +Stanley +Walter +Harold +Don +Kyle +Rickey +Steve +Alan +Derek +Donnie +Jay +Andre +Benjamin +Clarence +Jamie +Mike +Reginald +Tyrone +Glen +Melvin +Sean +Cedric +Lonnie +Dale +Frank +Heath +Jesse +Albert +Jody +Kenny +Mitchell +Nathan +Scotty +Vincent +Jackie +Earl +Frederick +Howard +Jack +Joel +Joey +Philip +Vernon +Alvin +Arthur +Brett +Glenn +Jimmie +Victor +Dwayne +Ray +Roderick +Bryant +Byron +Clinton +Earnest +Fredrick +Jim +Justin +Lawrence +Louis +Dewayne +Ernest +Greg +Jerome +Johnnie +Dexter +Edwin +Gene +Kelvin +Kerry +Kirk +Lloyd +Sammy +Clifford +Eugene +Norman +Wayne +Antonio +Carlos +Fred +Garry +Jessie +Marc +Martin +Maurice +Perry +Ralph +Toby +Clay +Darrin +Floyd +Frankie +Franklin +Leonard +Leslie +Stacey +Teddy +Tim +Wade +Alex +Bennie +Bernard +Carlton +Casey +Daryl +Jarrod +Lewis +Robby +Bill +Cecil +Clifton +Clint +Freddie +Jared +Kendall +Leroy +Lester +Marshall +Otis +Ryan +Stevie +Timmy +Alexander +Alfred +Allan +Bart +Bret +Dean +Demetrius +Dustin +Freddy +Grant +Harry +Ivory +Leon +Mickey +Preston +Warren +Adrian +Benny +Cary +Darryl +Duane +Joshua +Marlon +Monty +Rex +Robbie +Roosevelt +Scottie +Shelby +Vance +Andy +Ben +Charlie +Clayton +Damon +Dwight +Forrest +Gordon +Gregg +Herbert +Isaac +Marion +Nicholas +Peter +Rusty +Sidney +Tommie +Will +Alton +Archie +Carroll +Cleveland +Clyde +Delbert +Doyle +Guy +Herman +Jerald +Johnathan +Lynn +Monte +Nathaniel +Robin +Ron +Sherman +Stuart +Terrance +Terrence +Tom +Wendell +Blake +Brady +Clark +Cory +Dallas +Devin +Ed +Erik +Everett +Hershel +Jamey +Karl +Leland +Lesley +Myron +Nick +Noble +Noel +Oscar +Quentin +Rocky +Ross +Theodore +Tracey +Trent +Willis +Adam +Ashley +Aubrey +Austin +Avery +Billie +Bryon +Carey +Chuck +Dan +Daren +Darin +Darrick +Darron +Dusty +Edgar +Elmer +Erick +Garland +Geoffrey +Jefferson +Jose +Kendrick +Kent +Kirby +Kurt +Lane +Leodis +Loren +Lorenzo +Luke +Lyle +Mario +Mikel +Morris +Neal +Orlando +Rick +Rodrick +Sammie +Spencer +Sylvester +Theodis +Toney +Ty +Van +Virgil +Michael +James +John +Christopher +David +Robert +William +Brian +Charles +Kevin +Jason +Mark +Steven +Richard +Scott +Gregory +Anthony +Thomas +Kenneth +Timothy +Jeffrey +Joseph +Eric +Larry +Billy +Gary +Paul +Jerry +Jeffery +Jimmy +Matthew +Shawn +Stephen +Bobby +Keith +Tony +Chad +Terry +Johnny +Daniel +Ronald +Donald +Patrick +Rodney +Marcus +Danny +Bryan +Chris +George +Douglas +Ricky +Randy +Bradley +Jonathan +Jeremy +Edward +Dennis +Ronnie +Shannon +Tommy +Phillip +Roger +Russell +Todd +Travis +Carl +Joe +Randall +Roy +Samuel +Curtis +Brent +Shane +Aaron +Darrell +Tracy +Willie +Eddie +Lance +Sean +Derrick +Jon +Raymond +Andrew +Allen +Wesley +Micheal +Scotty +Walter +Bruce +Corey +Craig +Lee +Jay +Alan +Marvin +Brad +Harold +Henry +Andre +Barry +Calvin +Stanley +Brandon +Darren +Frederick +Fredrick +Gerald +Jamie +Jeff +Jody +Justin +Alvin +Joey +Scottie +Troy +Steve +Tyrone +Clayton +Jackie +Reginald +Joel +Lonnie +Stacy +Adam +Benjamin +Clinton +Dale +Derek +Jesse +Ryan +Cedric +Clifton +Heath +Kenny +Leonard +Mike +Roderick +Brett +Dustin +Greg +Peter +Rickey +Vincent +Kelly +Marty +Ray +Vernon +Ernest +Floyd +Kelvin +Nathan +Albert +Don +Kirk +Melvin +Wayne +Jessie +Johnnie +Kendall +Kyle +Lawrence +Timmy +Dewayne +Donnie +Freddie +Glen +Jack +Jimmie +Maurice +Warren +Byron +Casey +Earnest +Howard +Jerome +Kerry +Louis +Perry +Philip +Victor +Bryant +Chester +Clay +Clyde +Daryl +Frank +Franklin +Glenn +Herbert +Mitchell +Otis +Andy +Blake +Brady +Carlos +Cory +Damon +Frankie +Marlon +Norman +Tim +Wade +Antonio +Arthur +Cecil +Clarence +Dwight +Harry +Joshua +Kendrick +Leslie +Lewis +Lloyd +Martin +Nathaniel +Teddy +Clifford +Cody +Darrel +Dexter +Earl +Matt +Darin +Eugene +Gene +Guy +Herman +Leon +Monty +Randal +Rex +Sam +Sammy +Willis +Bill +Doyle +Erik +Everett +Garry +Lester +Stacey +Adrian +Alfred +Ben +Charlie +Clint +Darrin +Dwayne +Fred +Geoffrey +Jared +Jim +Marc +Mickey +Morris +Preston +Ronny +Rusty +Sylvester +Toby +Vance +Wendell +Allan +Bart +Brooks +Buddy +Carlton +Chuck +Dan +Donny +Edwin +Karl +Kent +Mathew +Neal +Nicholas +Ralph +Robby +Stevie +Ted +Theodore +Virgil +Alexander +Broderick +Carroll +Cary +Christian +Delbert +Demetrius +Drew +Erick +Gordon +Harvey +Ira +Kurt +Leroy +Ron +Sherman +Stewart +Tom +Trevor +Alex +Austin +Bennie +Berry +Bret +Bryce +Dallas +Daren +Felix +Forrest +Jacky +Jarrod +Jeffry +Jerald +Loyd +Milton +Monte +Quinton +Reggie +Royce +Sidney +Stuart +Terrence +Zachary +Alton +Andrea +Benny +Chance +Dalton +Darryl +Davis +Devin +Elmer +Elvis +Farrell +Gabriel +Isaac +Jammie +Jarrett +Johnathan +Juan +Kris +Lamar +Lorne +Luther +Lynn +Marion +Marshall +Morgan +Myron +Neil +Robbie +Rocky +Rodrick +Roosevelt +Ross +Rufus +Seth +Shelby +Spencer +Toney +Trent +Vince +Michael +James +Christopher +David +John +William +Brian +Robert +Jason +Kevin +Charles +Steven +Mark +Timothy +Eric +Richard +Jeffrey +Gregory +Thomas +Kenneth +Anthony +Jerry +Larry +Gary +Joseph +Scott +Matthew +Billy +Rodney +Keith +Jeffery +Daniel +Bobby +Paul +Jimmy +Shawn +Terry +Donald +Stephen +Chad +Johnny +Bryan +Ronald +Danny +Jonathan +Randy +Tracy +Tony +Marcus +Brandon +Phillip +Shannon +Patrick +Todd +George +Tommy +Chris +Douglas +Travis +Ricky +Dennis +Aaron +Jeremy +Bradley +Joe +Shane +Russell +Justin +Andrew +Darrell +Ronnie +Derrick +Roger +Edward +Raymond +Carl +Curtis +Samuel +Roy +Willie +Micheal +Jamie +Joel +Lonnie +Sean +Corey +Troy +Brent +Jon +Lee +Stacy +Allen +Frederick +Gerald +Walter +Wesley +Scotty +Tyrone +Nathan +Derek +Kelly +Lance +Joshua +Randall +Adam +Calvin +Craig +Ryan +Eddie +Jody +Reginald +Ernest +Steve +Benjamin +Greg +Jesse +Donnie +Jessie +Rickey +Bruce +Clayton +Lawrence +Ray +Stanley +Arthur +Brad +Harold +Jackie +Cedric +Darren +Don +Henry +Jack +Kyle +Vincent +Carlos +Leslie +Marvin +Maurice +Vernon +Alan +Alvin +Byron +Dustin +Leonard +Mitchell +Roderick +Victor +Albert +Barry +Heath +Howard +Glen +Jay +Marty +Antonio +Clint +Clinton +Damon +Frank +Fredrick +Jeff +Leon +Louis +Robbie +Adrian +Bill +Brett +Charlie +Earl +Herbert +Johnnie +Martin +Timmy +Dewayne +Dwight +Floyd +Franklin +Glenn +Jacob +Kenny +Marlon +Melvin +Philip +Scottie +Gene +Joey +Lewis +Lloyd +Marc +Mike +Stacey +Wayne +Andy +Bryant +Christian +Edwin +Fred +Jerome +Peter +Sammy +Toby +Warren +Andre +Casey +Clifford +Cody +Darryl +Dexter +Everett +Leroy +Ralph +Wade +Clarence +Clifton +Clyde +Cory +Dale +Darin +Dean +Jarrod +Kerry +Norman +Perry +Preston +Robin +Rusty +Zachary +Cecil +Dwayne +Gabriel +Jim +Jimmie +Nick +Alex +Alfred +Buddy +Clay +Darrel +Daryl +Freddy +Gordon +Herman +Matt +Allan +Chester +Dan +Duane +Erik +Freddie +Garry +Harvey +Jared +Jermaine +Leo +Marion +Ron +Shelby +Stuart +Teddy +Terrance +Tracey +Bart +Bennie +Bernard +Blake +Brady +Bryon +Carey +Carlton +Darrin +Derick +Doyle +Erick +Frankie +Jerald +Juan +Kelvin +Ken +Kent +Kurt +Lamont +Marshall +Micah +Monte +Nicholas +Orlando +Quentin +Rex +Ross +Rufus +Sam +Sammie +Sherman +Stevie +Ted +Will +Alexander +Barton +Earnest +Edgar +Eugene +Gilbert +Kendrick +Lyle +Manuel +Neil +Owen +Rod +Roland +Royce +Sheldon +Sidney +Spencer +Terence +Terrence +Trent +Van +Archie +Ashley +Avery +Ben +Bradford +Brock +Carroll +Chuck +Colby +Dallas +Dave +Delbert +Demetrius +Demond +Denny +Donny +Gaylon +Gerry +Ira +Jayson +Kendal +Kristopher +Lester +Loren +Mack +Malcolm +Mario +Marlin +Milton +Nathaniel +Oscar +Randal +Robby +Rocky +Roosevelt +Stewart +Sylvester +Tommie +Toney +Wendell +Willis +Michael +James +Christopher +Jason +David +John +Brian +Robert +William +Kevin +Charles +Steven +Timothy +Eric +Mark +Anthony +Kenneth +Matthew +Joseph +Jeffrey +Thomas +Richard +Gregory +Daniel +Larry +Shawn +Gary +Jerry +Scott +Jimmy +Billy +Bryan +Chad +Keith +Stephen +Bobby +Jeremy +Jonathan +Donald +Jeffery +Danny +Paul +Terry +Johnny +Marcus +Phillip +Rodney +Ronald +Brandon +Tony +Bradley +Chris +Patrick +Ricky +Aaron +Edward +Justin +Derrick +Shane +Travis +Randy +Ryan +Shannon +George +Sean +Joshua +Tracy +Andrew +Lee +Willie +Carl +Adam +Roy +Dennis +Corey +Curtis +Micheal +Todd +Douglas +Ronnie +Tommy +Benjamin +Russell +Joe +Nathan +Jon +Roger +Eddie +Stacy +Harold +Samuel +Brent +Craig +Randall +Raymond +Tyrone +Darrell +Henry +Jody +Kelly +Marvin +Jackie +Lance +Scotty +Troy +Calvin +Clinton +Frank +Joel +Cedric +Jesse +Kyle +Antonio +Mitchell +Bruce +Don +Gerald +Jamie +Walter +Allen +Carlos +Frederick +Reginald +Rickey +Steve +Wesley +Cory +Donnie +Dustin +Lonnie +Derek +Heath +Jeff +Casey +Marty +Roderick +Jay +Leslie +Timmy +Albert +Clayton +Greg +Kelvin +Maurice +Ray +Toby +Alvin +Arthur +Brett +Clarence +Jimmie +Martin +Andre +Dale +Damon +Darren +Freddie +Jared +Lloyd +Philip +Adrian +Alan +Brad +Victor +Alfred +Blake +Byron +Earl +Fredrick +Jack +Jacob +Kerry +Lawrence +Leonard +Jermaine +Kenny +Nicholas +Stanley +Vincent +Wayne +Alex +Andy +Ashley +Barry +Clifford +Clifton +Earnest +Franklin +Howard +Joey +Kristopher +Melvin +Stacey +Wade +Wendell +Clint +Doyle +Jerome +Jessie +Jim +Johnnie +Kendall +Marlon +Perry +Ralph +Sammy +Teddy +Dewayne +Dwight +Ernest +Floyd +Fred +Glen +Marc +Bradford +Clyde +Eugene +Gabriel +Louis +Scottie +Bernard +Darin +Dwayne +Erik +Leon +Leroy +Otis +Sidney +Vernon +Zachary +Bryant +Charlie +Chester +Cody +Derick +Erick +Glenn +Grant +Guy +Harry +Johnathan +Kirk +Lewis +Mike +Nathaniel +Peter +Robby +Sylvester +Terrance +Terrence +Tracey +Bart +Christian +Duane +Gordon +Harvey +Lamont +Mario +Marlin +Neil +Norman +Oscar +Rodrick +Cameron +Cecil +Courtney +Edwin +Frankie +Garry +Gene +Gilbert +Herbert +Ian +Isaac +Jeremiah +Juan +Kendrick +Kim +Luther +Marshall +Matt +Micah +Mickey +Randal +Ronny +Rusty +Shaun +Terence +Tom +Warren +Alexander +Ben +Bennie +Benny +Clay +Dana +Darrin +Daryl +Dean +Dexter +Donny +Emmett +Everett +Forrest +Herman +Ira +Jarrod +Manuel +Myron +Roosevelt +Sam +Seth +Van +Vance +Virgil +Allan +Andrea +Austin +Bill +Bryce +Carlton +Cary +Chance +Chuck +Cornelius +Daron +Darryl +Dave +Dusty +Everette +Garland +Garrick +Grady +Ivan +Jamey +Josh +Julian +Julius +Karl +Ken +Lamar +Lesley +Luke +Malcolm +Owen +Preston +Quincy +Ramon +Reggie +Robbie +Robin +Ross +Sherman +Spencer +Stevie +Trevor +Trey +Ty +Michael +Christopher +Jason +James +John +David +Robert +Brian +William +Kevin +Charles +Steven +Jeremy +Mark +Eric +Richard +Anthony +Matthew +Timothy +Joseph +Jeffrey +Thomas +Kenneth +Gregory +Chad +Daniel +Shawn +Billy +Scott +Jerry +Jonathan +Larry +Bobby +Gary +Paul +Bryan +Stephen +Marcus +Brandon +Jimmy +Terry +Jeffery +Donald +Justin +Danny +Joshua +Aaron +Keith +Rodney +Johnny +Patrick +Phillip +George +Ronald +Travis +Nathan +Shane +Shannon +Tony +Randy +Andrew +Bradley +Derrick +Samuel +Tommy +Ryan +Benjamin +Adam +Roy +Ricky +Roger +Brent +Chris +Dennis +Russell +Joe +Ronnie +Craig +Edward +Lee +Raymond +Douglas +Todd +Micheal +Heath +Jon +Tracy +Willie +Brad +Randall +Allen +Dustin +Sean +Carl +Harold +Jamie +Curtis +Eddie +Marvin +Corey +Reginald +Calvin +Gerald +Scotty +Stacy +Carlos +Wesley +Frederick +Lance +Toby +Antonio +Cedric +Clifton +Clinton +Damon +Darrell +Jay +Victor +Barry +Bruce +Roderick +Alan +Andre +Casey +Derek +Jerome +Troy +Adrian +Clayton +Fredrick +Jesse +Kyle +Mitchell +Philip +Tyrone +Darren +Greg +Jacob +Marty +Dale +Donnie +Frank +Jackie +Lonnie +Jessie +Joey +Kelly +Walter +Don +Floyd +Henry +Jody +Steve +Earl +Glenn +Johnnie +Andy +Cody +Franklin +Alex +Bryant +Clint +Eugene +Garry +Glen +Leon +Leonard +Micah +Ray +Rickey +Wayne +Alvin +Brett +Cory +Dwight +Jarrod +Joel +Martin +Nathaniel +Vernon +Alexander +Blake +Christian +Clifford +Dewayne +Jack +Josh +Kirk +Lawrence +Louis +Marlon +Nicholas +Sammy +Bradford +Darin +Ernest +Kelvin +Kendall +Kenny +Lamont +Melvin +Stanley +Stuart +Timmy +Albert +Bennie +Clarence +Dwayne +Frankie +Jeff +Jermaine +Kendrick +Kristopher +Leroy +Mario +Stacey +Terrance +Terrence +Vincent +Virgil +Chadwick +Courtney +Dexter +Gabriel +Johnathan +Leslie +Marshall +Mickey +Nakia +Peter +Ross +Sherman +Wade +Bernard +Byron +Carlton +Cary +Cecil +Clay +Darryl +Erick +Fred +Freddie +Jared +Jeremiah +Jimmie +Mike +Perry +Preston +Quincy +Randal +Theodore +Tracey +Arthur +Cameron +Chester +Clyde +Daryl +Earnest +Erik +Ian +Isaac +Jarrett +Maurice +Norman +Orlando +Robin +Scottie +Trent +Alfred +Ashley +Bart +Bill +Dallas +Donny +Elmer +Gene +Gordon +Grant +Jerald +Jim +Kent +Kerry +Luke +Myron +Rodrick +Shelby +Stevie +Ted +Terence +Zachary +Ben +Brady +Buddy +Charlie +Dedrick +Derick +Drew +Elton +Harry +Herman +Howard +Ira +Lloyd +Luther +Monte +Robbie +Rusty +Seth +Trevor +Wendell +Andrea +Bryce +Bryon +Carey +Claude +Darrick +Ellis +Fabian +Forrest +Harvey +Jayson +Karl +Lamar +Malcolm +Marc +Neal +Neil +Nick +Reggie +Rick +Spencer +Torrance +Warren +Alton +Andra +Brain +Brandy +Britt +Cedrick +Colby +Cornelius +Darrel +Deon +Devin +Dewey +Doyle +Duane +Edwin +Everett +Guy +Harley +Jefferson +Julius +Kelley +Lewis +Loyd +Lucas +Mathew +Matt +Max +Monty +Oliver +Robby +Rodger +Roland +Shaun +Shon +Teddy +Terrell +Tom +Trinity +Tyson +Van +Wilbert +Will +Michael +James +Jason +Christopher +John +David +Robert +William +Brian +Kevin +Charles +Jeremy +Anthony +Steven +Matthew +Richard +Eric +Chad +Daniel +Timothy +Joseph +Mark +Thomas +Jeffrey +Jonathan +Billy +Kenneth +Brandon +Justin +Scott +Bobby +Joshua +Marcus +Larry +Jimmy +Shawn +Stephen +Terry +Gregory +Bradley +Aaron +Jerry +Gary +Paul +Bryan +Patrick +Rodney +Keith +Benjamin +Phillip +Edward +Jeffery +Donald +Danny +Tony +Johnny +Nathan +Adam +Ryan +Andrew +Corey +Travis +Ronald +Shannon +Dennis +Ricky +Shane +Douglas +Brent +Derrick +Randy +Samuel +George +Jamie +Roy +Russell +Todd +Tommy +Dustin +Micheal +Carl +Willie +Chris +Randall +Ronnie +Calvin +Clifton +Jacob +Sean +Tyrone +Antonio +Joe +Reginald +Allen +Jody +Jon +Clinton +Raymond +Brad +Cedric +Heath +Darrell +Kyle +Roger +Alan +Casey +Lee +Scotty +Wesley +Clayton +Kelly +Bruce +Gerald +Henry +Jesse +Cory +Curtis +Tracy +Carlos +Eddie +Jackie +Stacy +Craig +Darren +Derek +Donnie +Johnathan +Brett +Damon +Jared +Lawrence +Rickey +Roderick +Freddie +Philip +Terrance +Andre +Byron +Frederick +Jessie +Maurice +Harold +Jay +Joel +Mitchell +Toby +Victor +Walter +Adrian +Albert +Alvin +Franklin +Stanley +Troy +Zachary +Barry +Frank +Kelvin +Kristopher +Lance +Lonnie +Martin +Steve +Wade +Arthur +Clarence +Joey +Leslie +Marvin +Andy +Cody +Fredrick +Jack +Jerome +Marty +Nakia +Sammy +Vincent +Cameron +Eugene +Nathaniel +Spencer +Brock +Clifford +Donta +Earl +Kenny +Kerry +Leonard +Lloyd +Ray +Bradford +Clint +Dale +Dewayne +Dwayne +Dwight +Earnest +Floyd +Glenn +Howard +Isaac +Jarrod +Jeremiah +Leroy +Louis +Scottie +Teddy +Alexander +Blake +Carlton +Darrin +Ernest +Gabriel +Greg +Jeff +Kirk +Marshall +Melvin +Ralph +Timmy +Wayne +Benny +Christian +Donny +Everett +Glen +Jamey +Jayson +Jimmie +Kendall +Micah +Ross +Sherman +Stacey +Vernon +Bill +Brady +Chadwick +Chester +Courtney +Edwin +Erik +Grant +Harry +Jim +Kim +Lucas +Mathew +Matt +Myron +Nicholas +Perry +Robbie +Rusty +Seth +Alfred +Avery +Bernard +Bryant +Clay +Cornelius +Dallas +Don +Duane +Erick +Fred +Garry +Jonathon +Jose +Lamont +Laron +Luke +Marlon +Mickey +Neil +Reggie +Shaun +Shelby +Sylvester +Terrence +Warren +Cecil +Chuck +Daryl +Dewey +Gene +Guy +Herbert +Ian +Ira +Jermaine +Juan +Karl +Kent +Marion +Peter +Sidney +Trent +Alex +Bart +Bennie +Bryce +Caleb +Cary +Colby +Dedrick +Delbert +Denny +Derick +Ervin +Garrick +Geoffrey +Herman +Jefferson +Kenyatta +Levi +Norman +Orlando +Rex +Rocky +Sedrick +Sheldon +Sonny +Stuart +Telly +Tim +Tommie +Tyson +Virgil +Alton +Brandy +Brannon +Bryon +Buddy +Chaffee +Charlie +Clark +Darrick +Demetrius +Doyle +Dylan +Edgar +Ernie +Frankie +Jamison +Johnnie +Kareem +Kendrick +Korey +Lamar +Leo +Leon +Lewis +Luther +Lyle +Malcolm +Marc +Mario +Miles +Milton +Nick +Noel +Oliver +Otis +Preston +Quincy +Randal +Richie +Robby +Robin +Roland +Roosevelt +Sam +Stevie +Ted +Theodore +Tracey +Tyron +Wendell +Jason +Michael +Christopher +James +John +David +Jeremy +Robert +William +Kevin +Charles +Brian +Eric +Joseph +Matthew +Anthony +Timothy +Steven +Daniel +Joshua +Mark +Richard +Billy +Justin +Brandon +Jonathan +Scott +Thomas +Chad +Aaron +Jeffrey +Larry +Bryan +Travis +Gregory +Jerry +Stephen +Jimmy +Bobby +Kenneth +Marcus +Paul +Bradley +Patrick +Adam +Phillip +Terry +Shawn +Andrew +Nathan +Gary +Jeffery +Ronald +Ryan +Shannon +Keith +Antonio +Corey +Donald +Rodney +George +Shane +Derrick +Dustin +Jamie +Benjamin +Edward +Tony +Johnny +Samuel +Joe +Randy +Wesley +Dennis +Micheal +Brent +Douglas +Jesse +Ronnie +Russell +Curtis +Danny +Randall +Ricky +Tommy +Clinton +Raymond +Chris +Cory +Sean +Roger +Jacob +Brad +Roy +Willie +Jeremiah +Eddie +Tyrone +Damon +Henry +Todd +Carlos +Allen +Clayton +Darrell +Calvin +Frank +Joey +Jon +Kelly +Casey +Jared +Lee +Scotty +Carl +Clifton +Cody +Craig +Jody +Lance +Nathaniel +Bruce +Fredrick +Philip +Reginald +Troy +Adrian +Cedric +Heath +Lonnie +Rickey +Tracy +Zachary +Jay +Joel +Melvin +Derek +Gerald +Jack +Jackie +Alvin +Marvin +Stacy +Albert +Barry +Darren +Don +Harold +Toby +Andre +Cameron +Walter +Courtney +Donnie +Kenny +Mitchell +Steve +Frederick +Jarrod +Jessie +Kristopher +Kyle +Lawrence +Louis +Roderick +Alan +Blake +Chadwick +Kendrick +Micah +Vincent +Andy +Clint +Dale +Ernest +Gabriel +Glen +Peter +Brett +Byron +Chester +Daryl +Franklin +Jermaine +Jerome +Johnathan +Leslie +Nicholas +Quincy +Seth +Terrance +Alex +Kelvin +Marty +Ray +Stuart +Wade +Alfred +Kendall +Sammy +Stanley +Alexander +Arthur +Bryant +Dewayne +Freddie +Garry +Herbert +Jeromy +Kerry +Lewis +Marshall +Martin +Perry +Preston +Rusty +Spencer +Warren +Wayne +Archie +Caleb +Clay +Dedrick +Dwayne +Earl +Eugene +Grant +Greg +Jimmie +Marlon +Matt +Maurice +Norman +Ralph +Stacey +Victor +Cecil +Fred +Geoffrey +Jamey +Josh +Marc +Rocky +Timmy +Vernon +Clarence +Claude +Darin +Donny +Floyd +Frankie +Herman +Jake +Johnnie +Leon +Lloyd +Marion +Max +Quinton +Randal +Sidney +Bart +Ben +Bill +Bradford +Cary +Charlie +Clifford +Dana +Dean +Dexter +Drew +Earnest +Edwin +Isaac +Jim +Jonathon +Mario +Mickey +Orlando +Quentin +Ricardo +Robin +Roosevelt +Sedrick +Terence +Terrence +Antony +Ashley +Bennie +Benny +Brock +Bryon +Buddy +Christian +Clyde +Cornelius +Darrin +Darryl +Devin +Doyle +Dwight +Glenn +Jerald +Jerrod +Juan +Karl +Leonard +Loren +Neal +Nick +Rico +Rodrick +Sam +Scottie +Shaun +Sherman +Tommie +Trent +Will +Alton +Amos +Andrea +Antonia +Antwan +Bernard +Brady +Brannon +Bret +Brooks +Chadrick +Dan +Demetrius +Eldon +Erin +Everett +Harvey +Hunter +Ira +Jeff +Jeramy +Jose +Jovan +Kris +Lamont +Leroy +Lester +Lynn +Mack +Markus +Milton +Myron +Nelson +Omar +Rick +Robbie +Ron +Ross +Rufus +Sheldon +Shon +Tyson +Virgil +Wallace +Jason +Christopher +Michael +James +David +Jeremy +John +Robert +Kevin +Brian +William +Joshua +Charles +Matthew +Timothy +Daniel +Joseph +Anthony +Justin +Richard +Eric +Steven +Brandon +Mark +Jonathan +Thomas +Jeffrey +Chad +Bryan +Larry +Aaron +Kenneth +Bradley +Stephen +Scott +Gregory +Ryan +Shawn +Billy +Nathan +Corey +Jerry +Andrew +Wesley +Marcus +Benjamin +Bobby +Patrick +Travis +Gary +Jimmy +Paul +Terry +Jeffery +Johnny +Keith +Phillip +Adam +Donald +Shannon +Derrick +Samuel +Tony +Rodney +Antonio +Dustin +Jacob +Jesse +Randy +Tommy +Shane +Edward +Danny +Ronald +Brent +Ricky +Brad +Jamie +Cory +Micheal +Casey +Carl +Curtis +Douglas +Lance +Nicholas +Kyle +Clayton +Darrell +Todd +Bruce +George +Nathaniel +Roy +Randall +Raymond +Ronnie +Russell +Damon +Zachary +Dennis +Lee +Sean +Heath +Jeremiah +Jon +Roger +Willie +Gerald +Jody +Brett +Reginald +Chris +Craig +Harold +Jared +Terrance +Adrian +Andre +Derek +Kristopher +Philip +Barry +Cody +Jessie +Roderick +Toby +Troy +Walter +Joe +Rickey +Carlos +Eddie +Gabriel +Marvin +Allen +Cameron +Clinton +Courtney +Henry +Scotty +Martin +Shaun +Steve +Cedric +Frederick +Jermaine +Joel +Tyrone +Clifton +Clint +Darren +Frank +Fredrick +Joey +Lawrence +Ray +Albert +Byron +Jackie +Kelly +Alex +Mitchell +Alvin +Melvin +Arthur +Donny +Jay +Johnathan +Terrence +Ashley +Calvin +Kendrick +Marty +Tracy +Vincent +Freddie +Glen +Jack +Marco +Preston +Seth +Victor +Wayne +Alan +Blake +Clarence +Clifford +Donnie +Elijah +Ernest +Jim +Kendall +Lewis +Louis +Charlie +Clay +Daryl +Dewayne +Earnest +Isaac +Jerome +Kelvin +Marlon +Micah +Vernon +Wade +Don +Geoffrey +Johnnie +Marshall +Maurice +Rusty +Stanley +Chadwick +Chester +Devin +Dwayne +Earl +Franklin +Glenn +Greg +Jarrod +Jeff +Jerrod +Lloyd +Marc +Quincy +Terence +Andy +Caleb +Cecil +Darrin +Eli +Eugene +Fred +Grant +Howard +Jonathon +Kenny +Kirk +Leonard +Leslie +Lonnie +Robbie +Shelby +Stacy +Alexander +Archie +Bennie +Benny +Brock +Bryant +Christian +Cornelius +Dexter +Dwight +Everett +Herman +Ian +Jamey +Kris +Lavar +Mario +Mathew +Quinton +Reuben +Ross +Sedrick +Sherman +Stuart +Timmy +Trent +Tyler +Alonzo +Brady +Erik +Floyd +Gene +Jimmie +Lamar +Leon +Lucas +Luke +Luther +Mickey +Monte +Neil +Noah +Roland +Spencer +Trenton +Waylon +Amos +Andrea +Beau +Ben +Dallas +Darrick +Doyle +Dusty +Evan +Jaime +Jake +Jayson +Jerod +Julian +Ken +Kendal +Kerry +Levi +Marion +Matt +Max +Mike +Oscar +Ralph +Randal +Reggie +Sam +Sidney +Terrell +Tory +Allan +Alton +Austin +Bart +Bill +Bradford +Brenton +Buddy +Carey +Clark +Clyde +Colby +Cole +Coy +Dale +Damian +Dan +Daren +Dedric +Dewey +Drew +Edgar +Elbert +Elmer +Erin +Garry +Guy +Ira +Jarod +Jeramie +Jordan +Juan +Julius +Kennith +Lamont +Leroy +Lesley +Lyle +Marquis +Morris +Myron +Omar +Peter +Ramon +Robin +Rocky +Rodrick +Rory +Sammy +Shedrick +Shelton +Stevie +Sylvester +Ted +Thad +Trevor +Trey +Wendell +Xavier +Jason +Michael +Christopher +James +John +David +Jeremy +Joshua +Robert +William +Matthew +Brian +Eric +Kevin +Charles +Joseph +Steven +Justin +Jonathan +Timothy +Richard +Brandon +Daniel +Mark +Anthony +Aaron +Nicholas +Jeffrey +Thomas +Kenneth +Adam +Bradley +Nathan +Billy +Marcus +Stephen +Ryan +Gary +Larry +Chad +Wesley +Corey +Shawn +Andrew +Paul +Benjamin +Gregory +Jerry +Bobby +Dustin +Scott +Bryan +Terry +Patrick +Phillip +Travis +Jeffery +Derrick +Rodney +Donald +Jimmy +Johnny +Keith +Randy +Shane +Tony +Samuel +Shaun +Ricky +Ronald +Antonio +Jacob +Brent +Tommy +Cory +Jared +Jesse +Joe +Shannon +George +Danny +Lance +Carl +Edward +Curtis +Jamie +Ronnie +Russell +Willie +Douglas +Micheal +Cody +Raymond +Jon +Dennis +Jeremiah +Clinton +Philip +Randall +Todd +Zachary +Casey +Chris +Kyle +Sean +Brad +Mitchell +Roy +Troy +Nathaniel +Scotty +Henry +Carlos +Derek +Eddie +Joel +Kristopher +Lucas +Clifton +Courtney +Adrian +Bruce +Calvin +Clayton +Craig +Damon +Jarrod +Seth +Clint +Lee +Marvin +Terrance +Walter +Allen +Andre +Roger +Tyrone +Cedric +Heath +Darrell +Jody +Vincent +Erik +Gabriel +Jessie +Roderick +Toby +Alan +Donnie +Frederick +Lawrence +Harold +Kendrick +Lonnie +Reginald +Rickey +Steve +Arthur +Blake +Brett +Dale +Darren +Gerald +Johnathan +Marty +Maurice +Rocky +Eugene +Frank +Freddie +Jackie +Wayne +Cameron +Don +Fredrick +Grant +Kelvin +Leonard +Peter +Tracy +Victor +Barry +Earl +Jonathon +Leroy +Luke +Marc +Mario +Melvin +Micah +Quincy +Albert +Andy +Ashley +Dewayne +Franklin +Joey +Leon +Marlon +Norman +Ray +Stuart +Austin +Clifford +Demetrius +Jay +Kendall +Louis +Marco +Neil +Perry +Preston +Robbie +Terrence +Trent +Alfred +Brock +Bryant +Clay +Geoffrey +Herbert +Jack +Jermaine +Lewis +Martin +Rex +Rusty +Sammy +Stacy +Tyler +Byron +Caleb +Earnest +Glenn +Jerome +Jim +Kelly +Lamont +Reggie +Sidney +Tommie +Trenton +Alvin +Bennie +Charlie +Chester +Christian +Clarence +Cornelius +Damien +Dexter +Dwayne +Garrett +Glen +Isaac +Kenny +Lloyd +Myron +Neal +Torrey +Adrain +Ben +Broderick +Cary +Cecil +Chadwick +Colin +Dedric +Dedrick +Derick +Evan +Greg +Jake +Jefferson +Levi +Logan +Nick +Orlando +Otis +Ralph +Sam +Stanley +Terence +Timmy +Wade +Zackery +Alex +Beau +Brady +Damian +Daryl +Detrick +Edwin +Elvis +Frankie +Gene +Jerrod +Luther +Nickolas +Quentin +Rodrick +Shelby +Sherman +Teddy +Alexander +Angelo +Antoine +Bernard +Bret +Buddy +Colby +Coleman +Darnell +Darrel +Darrick +Darrin +Desmond +Devin +Duane +Dusty +Dylan +Edgar +Elijah +Forrest +Herman +Jamaal +Jimmie +Johnathon +Judson +Kendell +Kent +Kerry +Landon +Leslie +Lynn +Marshall +Mathew +Monte +Nathanael +Nelson +Randal +Rashad +Ricardo +Waylon +Willard +Xavier +Zachariah +Michael +Christopher +James +Jason +John +Joshua +Jeremy +David +Robert +Matthew +William +Joseph +Charles +Justin +Brian +Eric +Daniel +Kevin +Jonathan +Nicholas +Anthony +Timothy +Steven +Brandon +Richard +Aaron +Adam +Thomas +Jeffrey +Ryan +Nathan +Travis +Mark +Benjamin +Bradley +Chad +Billy +Scott +Stephen +Kenneth +Marcus +Dustin +Bryan +Bobby +Jerry +Andrew +Larry +Patrick +Gregory +Jimmy +Derrick +Jeffery +Shawn +Wesley +Paul +Gary +Corey +Samuel +Jacob +Donald +Phillip +Shane +Ronald +Ricky +Terry +Jared +Kyle +Keith +Johnny +Brent +Ronnie +Zachary +Antonio +Jamie +Jeremiah +Randy +Shaun +Dennis +Edward +Casey +Danny +Micheal +Douglas +Jesse +Carl +Rodney +Tony +Russell +Sean +George +Joe +Lance +Cedric +Randall +Shannon +Willie +Cory +Jessie +Reginald +Curtis +Nathaniel +Tommy +Brad +Cody +Derek +Heath +Walter +Allen +Clinton +Raymond +Troy +Jon +Mario +Joel +Carlos +Clint +Lawrence +Roger +Scotty +Tyrone +Henry +Luke +Rickey +Roy +Courtney +Damon +Kristopher +Mitchell +Seth +Clayton +Craig +Darrell +Gerald +Philip +Andre +Calvin +Jody +Todd +Frederick +Lucas +Adrian +Alan +Barry +Byron +Marvin +Maurice +Clifton +Jarrod +Jay +Joey +Isaac +Micah +Terrence +Donnie +Eddie +Frank +Kelvin +Lee +Arthur +Blake +Brett +Derick +Kelly +Lonnie +Steve +Terrance +Albert +Alvin +Bruce +Bryant +Chris +Clifford +Erik +Grant +Jerome +Jonathon +Quincy +Trent +Cecil +Chadwick +Franklin +Harold +Leon +Leonard +Preston +Caleb +Cameron +Drew +Jack +Jerrod +Kendrick +Peter +Stacy +Stanley +Toby +Warren +Brock +Clay +Dallas +Fredrick +Jim +Johnathan +Jordan +Rocky +Roderick +Wade +Andy +Charlie +Dwight +Kenny +Lamont +Leslie +Melvin +Terrell +Trevor +Tyler +Vincent +Alex +Alexander +Dale +Damien +Dedrick +Earnest +Edwin +Ernest +Eugene +Glen +Glenn +Jeff +Jerod +Louis +Marc +Victor +Wayne +Avery +Don +Evan +Gabriel +Herman +Howard +Jackie +Johnnie +Julius +Lloyd +Marco +Myron +Otis +Reggie +Robin +Rusty +Spencer +Tracy +Vernon +Antoine +Ashley +Austin +Bennie +Carlton +Clarence +Daryl +Dewayne +Floyd +Freddie +Guy +Jake +Josh +Kendall +Kerry +Marlon +Marty +Neil +Quentin +Robby +Rodrick +Sammy +Stuart +Wallace +Waylon +Angelo +Bradford +Broderick +Buddy +Demetrius +Donny +Dwayne +Fred +Garrett +Harry +Ian +Jermaine +Jimmie +Kent +Lamar +Landon +Lester +Matt +Mickey +Ray +Sammie +Scottie +Shelby +Theodis +Tremayne +Ty +Willard +Willis +Ben +Brady +Brice +Bryce +Buck +Colin +Damion +Darius +Darren +Dean +Dusty +Earl +Edmond +Erick +Everett +Gene +Greg +Ira +Ivan +Ivory +Jarred +Jarvis +Jess +Joesph +Julian +Karl +Levi +Lewis +Luther +Lynn +Malcolm +Marquis +Marshall +Morgan +Neal +Nick +Nickolas +Ralph +Ronny +Ross +Sidney +Teddy +Theodore +Thurman +Virgil +Xavier +Adrain +Andrea +Antwain +Aric +Aubrey +Barrett +Bart +Beau +Benny +Brenton +Clark +Clyde +Colby +Cornelius +Darrin +Darryl +Demarcus +Desmond +Elbert +Frankie +Geoffrey +Gordon +Jayson +Jeramy +Jeromy +Kirk +Leo +Marion +Martin +Mason +Mathew +Monte +Morris +Murphy +Nicolas +Omar +Perry +Randal +Rickie +Sam +Sedrick +Sherman +Stephan +Stevie +Sylvester +Tom +Tommie +Trenton +Wendell +Whitney +Yancey +Michael +Jason +Christopher +James +Joshua +John +Jeremy +Justin +David +William +Matthew +Robert +Brian +Jonathan +Joseph +Daniel +Charles +Brandon +Eric +Kevin +Timothy +Steven +Adam +Nicholas +Aaron +Richard +Dustin +Nathan +Thomas +Anthony +Ryan +Chad +Mark +Andrew +Kenneth +Jeffrey +Marcus +Billy +Stephen +Benjamin +Gary +Bradley +Shawn +Scott +Jacob +Travis +Gregory +Derek +Patrick +Bobby +Wesley +Jeffery +Derrick +Jimmy +Jerry +Bryan +Samuel +Antonio +Jesse +Phillip +Paul +Keith +Terry +Donald +Corey +Larry +Brent +Jared +Edward +Carl +Kyle +Rodney +Shane +Jeremiah +Joe +Ricky +Zachary +Johnny +Cory +Curtis +Tony +Clinton +Ronald +Jamie +Ronnie +Allen +Randy +Dennis +Willie +George +Clint +Danny +Micheal +Nathaniel +Douglas +Russell +Shannon +Cedric +Roger +Tommy +Cody +Darrell +Joey +Sean +Brad +Casey +Clayton +Craig +Harold +Lee +Courtney +Johnathan +Luke +Shaun +Jon +Lucas +Raymond +Heath +Joel +Roy +Todd +Lance +Mario +Philip +Rickey +Roderick +Alan +Frederick +Randall +Seth +Caleb +Eddie +Reginald +Bruce +Kristopher +Micah +Walter +Carlos +Charlie +Clifton +Donnie +Erik +Blake +Calvin +Frank +Jay +Marvin +Victor +Andre +Franklin +Grant +Jarrod +Lonnie +Vincent +Adrian +Brett +Gabriel +Marshall +Clarence +Clifford +Fredrick +Toby +Troy +Albert +Cameron +Jermaine +Jerome +Jonathon +Kendrick +Lawrence +Terrance +Tyrone +Austin +Beau +Earl +Melvin +Preston +Scotty +Vernon +Alvin +Byron +Earnest +Gerald +Henry +Jody +Perry +Brock +Clay +Damon +Darren +Floyd +Isaac +Jack +Kenny +Louis +Maurice +Rusty +Stanley +Tyler +Alex +Andy +Ben +Cecil +Chris +Damien +Demarcus +Erick +Fred +Jessie +Leonard +Alexander +Dallas +Devin +Ernest +Freddie +Ian +Jackie +Jake +Julius +Kelly +Leslie +Rocky +Steve +Terrence +Waylon +Alfred +Barry +Bill +Bryant +Chadwick +Cortney +Dale +Drew +Garrett +Jimmie +Johnnie +Kendall +Levi +Ralph +Sammy +Trent +Warren +Wendell +Bradford +Demetrius +Derick +Dylan +Johnathon +Josh +Kerry +Landon +Leon +Marlon +Martin +Nickolas +Quentin +Arthur +Bennie +Cedrick +Christian +Colby +Cole +Cornelius +Coy +Dewayne +Dusty +Dwight +Geoffrey +Guy +Harry +Kelvin +Kirk +Marc +Quincy +Spencer +Stacy +Teddy +Terence +Terrell +Tyson +Alexis +Alton +Antoine +Ashley +Broderick +Chester +Curt +Darryl +Dedrick +Deon +Desmond +Detrick +Don +Elijah +Evan +Glen +Greg +Jerod +Jordan +Karl +Lynn +Nigel +Norman +Omar +Ramon +Randal +Robbie +Ross +Wayne +Avery +Barrett +Brannon +Courtland +Demario +Dewey +Edgar +Garry +Gaylon +Harley +Herbert +Howard +Ira +Jayson +Jeff +Jim +Lamont +Lewis +Marquis +Matt +Miles +Morgan +Myron +Neil +Peter +Quinton +Rashad +Robin +Royce +Scottie +Simon +Stuart +Tavares +Timmy +Tommie +Tracy +Trenton +Adrain +Angelo +Bryce +Colin +Damian +Dan +Darin +Darius +Darrick +Daryl +Denver +Derik +Donovan +Dwayne +Edmund +Everett +Fabian +Gordon +Issac +Jackson +Jarred +Jarvis +Jerrad +Jerrod +Lamar +Leroy +Lloyd +Logan +Max +Neal +Noah +Orlando +Ray +Ricardo +Rodger +Ron +Roosevelt +Sedrick +Sheldon +Taylor +Ted +Theodore +Trevor +Wade +Weston +Willis +Winston +Joshua +Michael +James +Christopher +Jason +John +Matthew +David +Brandon +Justin +Robert +Jeremy +William +Jonathan +Joseph +Brian +Daniel +Charles +Kevin +Steven +Timothy +Eric +Nicholas +Aaron +Adam +Dustin +Richard +Anthony +Ryan +Thomas +Benjamin +Nathan +Stephen +Travis +Chad +Bradley +Andrew +Marcus +Jacob +Jeffrey +Mark +Patrick +Kenneth +Bobby +Jesse +Paul +Billy +Larry +Gary +Derrick +Jared +Jimmy +Jeffery +Keith +Scott +Antonio +Phillip +Shawn +Jerry +Terry +Gregory +Kyle +Zachary +Cody +Brent +Corey +Wesley +Bryan +Derek +Ricky +Casey +Ronald +Donald +Edward +Randy +Samuel +Johnny +Danny +Jeremiah +Raymond +Sean +Clinton +Blake +Douglas +Johnathan +Nathaniel +Tony +Jessie +Lucas +Ronnie +Tommy +Clayton +George +Joe +Rodney +Adrian +Micheal +Randall +Lee +Shane +Roy +Russell +Todd +Jordan +Rickey +Barry +Carl +Eddie +Heath +Seth +Brett +Calvin +Roger +Dennis +Joey +Jonathon +Mario +Cory +Jamie +Willie +Cedric +Clint +Jarrod +Philip +Roderick +Alan +Brad +Courtney +Jon +Scotty +Shannon +Caleb +Cameron +Curtis +Mitchell +Chris +Erik +Harold +Jay +Lawrence +Levi +Luke +Alexander +Carlos +Clifton +Donnie +Henry +Jackie +Lance +Troy +Walter +Allen +Alvin +Bruce +Byron +Craig +Beau +Preston +Alex +Andre +Grant +Jerome +Kristopher +Melvin +Ray +Albert +Austin +Darren +Franklin +Isaac +Jack +Jody +Joel +Reginald +Trent +Arthur +Clarence +Darrell +Drew +Dusty +Frank +Frederick +Kelvin +Kendrick +Marvin +Maurice +Peter +Shaun +Terrance +Tyrone +Andy +Dylan +Edwin +Evan +Fredrick +Gerald +Jermaine +Rusty +Spencer +Dwayne +Micah +Dewayne +Eugene +Karl +Kelly +Leslie +Marshall +Martin +Rodrick +Stanley +Will +Bryant +Clifford +Damon +Don +Earl +Floyd +Gabriel +Jarrett +Lonnie +Louis +Marco +Noah +Tyler +Vincent +Barrett +Christian +Demarcus +Derick +Harvey +Ian +Kenny +Landon +Mathew +Quentin +Stacy +Teddy +Ashley +Ben +Bennie +Chester +Dwight +Earnest +Eli +Freddie +Garrett +Geoffrey +Jarred +Jerrod +Josh +Kendall +Lester +Lewis +Marcello +Marchello +Marlon +Neil +Nolan +Perry +Quincy +Rocky +Ross +Taylor +Tracy +Vernon +Victor +Xavier +Bradford +Branden +Brock +Brooks +Cornelius +Dale +Dallas +Damien +Ethan +Everett +Jake +Jarod +Jayson +Johnathon +Kirk +Leonard +Logan +Morgan +Myron +Quinton +Robbie +Stuart +Toby +Waylon +Wayne +Whitney +Zachariah +Angelo +Antoine +Benny +Bernard +Brady +Buddy +Claude +Cortney +Darryl +Daryl +Dean +Elijah +Emanuel +Ernest +Glenn +Herbert +Jarvis +Jefferson +Johnnie +Julius +Kent +Lamar +Leon +Leroy +Marc +Marion +Monty +Reggie +Robby +Rustin +Sidney +Terence +Ty +Wade +Zachery +Adrain +Ahmad +Alfred +Bart +Brice +Broderick +Carlton +Cecil +Clay +Darin +Darius +Darnell +Darrel +Devin +Edgar +Francis +Gordon +Issac +Jedidiah +Jeff +Jermey +Josiah +Julian +Kerry +Kurt +Laron +Marquis +Marty +Mason +Miles +Nickolas +Nicolas +Otis +Ralph +Ricardo +Robin +Scottie +Stewart +Terrell +Tory +Trenton +Tristan +Christopher +Joshua +Michael +James +Jason +Matthew +Justin +John +William +David +Robert +Brandon +Jeremy +Jonathan +Joseph +Daniel +Brian +Charles +Steven +Aaron +Timothy +Adam +Anthony +Nicholas +Kevin +Thomas +Eric +Richard +Dustin +Ryan +Andrew +Jacob +Nathan +Bradley +Jeffrey +Travis +Kenneth +Bryan +Stephen +Benjamin +Gregory +Billy +Marcus +Bobby +Mark +Patrick +Chad +Jesse +Derek +Larry +Samuel +Paul +Derrick +Phillip +Jimmy +Zachary +Jared +Gary +Donald +Kyle +Scott +Wesley +Jeffery +Casey +Jerry +Shawn +Antonio +Edward +Keith +Randy +Terry +Ronald +Blake +Cody +Ricky +Corey +Tony +Johnny +Brent +Sean +Nathaniel +Carl +Tommy +Clayton +Micheal +Clinton +Johnathan +Jordan +Allen +Brett +Caleb +Jeremiah +Seth +Shane +Tyler +Douglas +Raymond +Curtis +Randall +Ronnie +Courtney +Joe +Rodney +Calvin +George +Mario +Cory +Dennis +Lance +Roger +Craig +Heath +Henry +Jessie +Darrell +Joel +Mitchell +Roy +Terrance +Willie +Jamie +Jarrod +Lucas +Shannon +Brad +Danny +Eddie +Jermaine +Kristopher +Troy +Clint +Jay +Joey +Walter +Adrian +Carlos +Jon +Jonathon +Lee +Micah +Russell +Todd +Alan +Luke +Philip +Scotty +Alexander +Austin +Cameron +Chase +Erik +Martin +Rickey +Roderick +Arthur +Bryant +Cedric +Evan +Harold +Louis +Reginald +Shaun +Clifford +Gerald +Preston +Terrence +Tyrone +Albert +Alex +Clarence +Clifton +Cole +Donnie +Drew +Frank +Lawrence +Maurice +Melvin +Bruce +Gabriel +Landon +Zachery +Andy +Darren +Franklin +Ian +Jerome +Julian +Peter +Victor +Derick +Fredrick +Kenny +Kent +Lonnie +Neil +Noah +Colby +Dusty +Howard +Kelvin +Kirk +Logan +Marvin +Rocky +Stanley +Taylor +Toby +Vernon +Wayne +Alvin +Andre +Damien +Dewayne +Dwight +Earl +Frederick +Grant +Jack +Jackie +Jackson +Kendall +Mathew +Alfred +Barry +Byron +Chadwick +Demetrius +Don +Herbert +Leslie +Marc +Quincy +Stuart +Trevor +Bret +Chris +Christian +Clay +Damon +Earnest +Edwin +Elijah +Eugene +Everett +Frankie +Glenn +Isaac +Jake +Jerod +Jose +Kerry +Kurt +Levi +Lewis +Marlon +Marshall +Quentin +Ralph +Rusty +Spencer +Trent +Tyson +Antwan +Bryce +Dale +Dallas +Demarcus +Doyle +Dylan +Eli +Elliot +Ernest +Gene +Glen +Guy +Harvey +Jamaal +Jarod +Jarrett +Jeff +Jonas +Leroy +Lester +Mike +Ray +Ross +Sammy +Tristan +Vincent +Weston +Beau +Ben +Cecil +Coleman +Colin +Cornelius +Dan +Davis +Garland +Garrett +Gavin +Greg +Herman +Jefferson +Jennifer +Jim +Jimmie +Jody +Johnathon +Johnnie +Josh +Julius +Kasey +Kendrick +Leo +Lloyd +Marco +Marques +Marty +Nickolas +Nicolas +Ricardo +Robin +Ronny +Roosevelt +Royce +Stevie +Teddy +Tracy +Wade +Warren +Waylon +Wendell +Will +Andrea +Benny +Brannon +Bryson +Cedrick +Charlie +Claude +Damian +Darnell +Dillon +Edgar +Emmanuel +Erick +Forest +Forrest +Fred +Freddie +Graham +Harry +Hunter +Ivan +Jarred +Karl +Kelly +Leon +Lorenzo +Luther +Morris +Myron +Oliver +Quinton +Renaldo +Reuben +Rex +Russel +Scottie +Terrell +Whitney +Zachariah +Christopher +Joshua +Michael +Matthew +James +Brandon +Justin +Jason +David +John +Robert +Jonathan +William +Jeremy +Joseph +Daniel +Brian +Steven +Eric +Adam +Charles +Dustin +Aaron +Kevin +Ryan +Anthony +Timothy +Andrew +Thomas +Richard +Nicholas +Marcus +Jeffrey +Chad +Kyle +Bradley +Benjamin +Jacob +Mark +Travis +Stephen +Kenneth +Nathan +Derek +Jared +Patrick +Bryan +Gregory +Paul +Zachary +Cody +Jesse +Bobby +Larry +Billy +Scott +Gary +Jeffery +Jimmy +Samuel +Derrick +Jerry +Shawn +Phillip +Wesley +Blake +Antonio +Johnny +Tyler +Ricky +Terry +Keith +Donald +George +Sean +Corey +Lance +Tony +Randy +Jordan +Randall +Raymond +Danny +Edward +Willie +Brent +Caleb +Tommy +Carl +Casey +Curtis +Jamie +Johnathan +Jeremiah +Joel +Nathaniel +Joe +Ronald +Allen +Dennis +Terrance +Clayton +Rodney +Brett +Craig +Heath +Jon +Micheal +Gerald +Mitchell +Ronnie +Seth +Cory +Lee +Philip +Roy +Clinton +Douglas +Grant +Jessie +Luke +Russell +Shane +Calvin +Chase +Darrell +Lucas +Scotty +Alan +Cedric +Courtney +Troy +Clint +Darren +Cameron +Gabriel +Lawrence +Mario +Preston +Roger +Todd +Adrian +Carlos +Evan +Jarrod +Reginald +Walter +Alex +Brad +Drew +Jack +Jermaine +Kristopher +Austin +Barry +Bruce +Henry +Jay +Micah +Shannon +Tyrone +Albert +Christian +Clay +Colby +Eddie +Joey +Johnathon +Mathew +Byron +Erik +Harold +Marvin +Rickey +Shaun +Taylor +Vernon +Andre +Andy +Arthur +Cole +Dale +Devin +Donnie +Frank +Frederick +Garrett +Kelvin +Kendrick +Landon +Lonnie +Louis +Marshall +Vincent +Alexander +Bryant +Clifton +Jarred +Jonathon +Martin +Roderick +Rusty +Terrence +Alvin +Ian +Isaac +Jerome +Kendall +Levi +Marquis +Maurice +Dallas +Damon +Earl +Hunter +Jackie +Jeff +Kelly +Kerry +Kirk +Lloyd +Noah +Quinton +Stanley +Tristan +Beau +Buddy +Charlie +Chris +Colin +Coy +Franklin +Freddie +Harry +Herbert +Jerad +Lewis +Perry +Peter +Ray +Ross +Spencer +Zachery +Bret +Cecil +Colt +Damian +Dewayne +Dwight +Garry +Glenn +Jamaal +Jimmie +Leonard +Leslie +Sammy +Terrell +Waylon +Amos +Antwan +Ben +Bradly +Clifford +Cornelius +Deangelo +Dedrick +Derick +Dwayne +Earnest +Floyd +Forrest +Fredrick +Glen +Herman +Jarvis +Jerrod +Julian +Kenny +Logan +Morgan +Nathanael +Ruben +Steve +Terence +Trent +Victor +Warren +Wendell +Bennie +Brady +Dean +Dillon +Don +Dusty +Emanuel +Erick +Howard +Jake +Jamin +Jarrett +Jim +Jody +Johnnie +Josh +Kurt +Laron +Marc +Marco +Marion +Matt +Melvin +Neil +Quentin +Quincy +Ralph +Randal +Ricardo +Rocky +Scottie +Trenton +Zackary +Zackery +Aron +Bradford +Branden +Chester +Clyde +Damion +Dane +Darryl +Daryl +Demario +Donny +Dustan +Dylan +Edwin +Gavin +Leon +Leroy +Marlon +Marty +Morris +Neal +Nicolas +Norman +Rex +Robby +Sidney +Stuart +Theodore +Trevor +Ty +Vance +Virgil +Wayne +Weston +Will +Christopher +Joshua +Michael +James +Matthew +Justin +John +Brandon +Jonathan +David +Robert +William +Jason +Joseph +Daniel +Jeremy +Brian +Charles +Eric +Steven +Dustin +Anthony +Aaron +Andrew +Adam +Kevin +Nicholas +Timothy +Thomas +Ryan +Richard +Stephen +Jacob +Cody +Nathan +Zachary +Mark +Jeffrey +Bradley +Kyle +Marcus +Travis +Chad +Benjamin +Gregory +Patrick +Kenneth +Paul +Bryan +Derrick +Derek +Scott +Jesse +Samuel +Jeffery +Tyler +Bobby +Jared +Billy +Gary +Larry +Jimmy +Shawn +Terry +Donald +Casey +Phillip +Ricky +Jerry +Wesley +Corey +Nathaniel +Clinton +Ronald +Sean +Keith +Jordan +Lance +Jeremiah +Caleb +Johnny +Antonio +Edward +Randy +Curtis +Dennis +Blake +Brent +Chase +Clayton +George +Tony +Carl +Shane +Allen +Heath +Johnathan +Tommy +Craig +Lee +Seth +Micheal +Alexander +Austin +Douglas +Roy +Brett +Joe +Danny +Darrell +Jessie +Roger +Russell +Willie +Alex +Courtney +Joel +Jon +Jonathon +Randall +Calvin +Eddie +Drew +Rodney +Terrance +Chance +Evan +Kristopher +Luke +Mitchell +Rickey +Walter +Adrian +Cedric +Philip +Byron +Jermaine +Raymond +Ronnie +Barry +Brad +Clint +Colby +Darren +Jarrod +Devin +Erik +Gabriel +Lawrence +Ray +Taylor +Todd +Cameron +Clifton +Cory +Jake +Micah +Shannon +Carlos +Franklin +Landon +Leonard +Levi +Lucas +Troy +Wade +Andre +Bruce +Jamie +Marvin +Noah +Ian +Scotty +Shaun +Vincent +Christian +Grant +Henry +Jack +Jay +Jerrod +Lewis +Marquis +Sidney +Spencer +Trenton +Albert +Arthur +Derick +Frank +Garrett +Gerald +Joey +Leon +Maurice +Quinton +Stanley +Alan +Clay +Clifford +Cole +Dominic +Earnest +Freddie +Fredrick +Geoffrey +Kendall +Mario +Morgan +Quincy +Reginald +Roderick +Rusty +Steve +Terrell +Trent +Tyrone +Andy +Chris +Dexter +Jackie +Jarred +Jarrett +Kelly +Kerry +Logan +Peter +Preston +Tracy +Beau +Brock +Chester +Clarence +Colt +Demarcus +Dewayne +Earl +Eugene +Frederick +Howard +Jimmie +Kelvin +Kendrick +Lonnie +Melvin +Ralph +Rocky +Ross +Terrence +Victor +Alfred +Brenton +Charlie +Dallas +Don +Dwayne +Elijah +Ernest +Guy +Harold +Josh +Lloyd +Otis +Quintin +Trevor +Tristan +Warren +Antwan +Bernard +Bryce +Coby +Cornelius +Coy +Damon +Deangelo +Donnie +Dwight +Dylan +Emmanuel +Ezekiel +Glen +Jerome +Jody +Johnathon +Lamar +Louis +Scottie +Zachery +Antoine +Barrett +Benny +Branden +Bryon +Cary +Cedrick +Cliff +Dale +Darius +Darrin +Darryl +Dusty +Emanuel +Erin +Ethan +Frankie +Glenn +Isaac +Jeremey +Jerod +Kent +Kirk +Kurtis +Leroy +Leslie +Martin +Mason +Mathew +Mickey +Neal +Robin +Stuart +Vernon +Wayne +Ashley +Ben +Bennie +Brannon +Broderick +Brooks +Bryant +Colin +Cortney +Coty +Damion +Darin +Daryl +Deandre +Donny +Duane +Eli +Erick +Garry +Harvey +Herbert +Hunter +Ira +Jess +Jim +Johathan +Juan +Kenton +Lamarcus +Marc +Marco +Marlon +Marshall +Marty +Max +Nathanael +Omar +Perry +Quentin +Randal +Riley +Rodrick +Royce +Shelby +Sterling +Toby +Zane +Christopher +Joshua +Michael +James +Brandon +Matthew +Justin +John +David +Robert +William +Jonathan +Jason +Daniel +Joseph +Jeremy +Charles +Steven +Andrew +Brian +Dustin +Kevin +Nicholas +Adam +Zachary +Eric +Aaron +Anthony +Cody +Thomas +Nathan +Ryan +Kyle +Timothy +Jacob +Bradley +Stephen +Richard +Jeffrey +Marcus +Benjamin +Kenneth +Bryan +Tyler +Mark +Shawn +Patrick +Jesse +Samuel +Travis +Gregory +Billy +Chad +Jared +Derek +Derrick +Jeffery +Sean +Jordan +Terry +Blake +Donald +Larry +Phillip +Jerry +Bobby +Keith +Antonio +Scott +Tony +Gary +Johnathan +Brent +Nathaniel +Cory +Jimmy +Wesley +Caleb +Casey +Shane +Corey +Ricky +Seth +Paul +Danny +Randy +Austin +George +Rodney +Adrian +Clayton +Curtis +Edward +Ronald +Carl +Micheal +Alex +Brett +Mitchell +Randall +Drew +Craig +Heath +Jessie +Jonathon +Rickey +Tommy +Calvin +Jeremiah +Lance +Raymond +Russell +Joe +Lucas +Todd +Joel +Lee +Luke +Terrance +Chase +Ronnie +Alexander +Clinton +Courtney +Douglas +Jarrod +Reginald +Roger +Shannon +Troy +Allen +Devin +Johnny +Philip +Preston +Alan +Cameron +Kristopher +Roy +Taylor +Stanley +Grant +Jamie +Mario +Trevor +Willie +Albert +Levi +Roderick +Walter +Devon +Peter +Spencer +Colby +Frank +Isaac +Kendrick +Zachery +Antoine +Arthur +Bruce +Clint +Darrell +Ian +Jay +Tristan +Brad +Carlos +Chance +Demarcus +Dennis +Eddie +Evan +Gabriel +Garrett +Joey +Johnathon +Logan +Byron +Cedric +Dusty +Erik +Eugene +Frederick +Glenn +Henry +Jermaine +Shaun +Trent +Vincent +Andre +Clifton +Dexter +Harold +Jon +Kerry +Marquis +Melvin +Micah +Tyrone +Victor +Alvin +Aubrey +Barry +Chris +Dale +Darren +Earl +Gerald +Martin +Ross +Scotty +Trey +Andy +Charlie +Elijah +Franklin +Fredrick +Geoffrey +Hunter +Landon +Leslie +Morgan +Perry +Wayne +Beau +Brock +Christian +Clay +Cole +Dallas +Dane +Dewayne +Dominique +Don +Dylan +Jody +Jose +Kurt +Lawrence +Louis +Nickolas +Terrence +Zackery +Bryant +Carlton +Cortney +Derick +Dillon +Floyd +Fred +Jack +Jerome +Jerrod +Kirk +Marvin +Mathew +Orlando +Otis +Quentin +Quinton +Rocky +Stuart +Terrell +Zackary +Brady +Cecil +Colt +Coty +Darius +Daryl +Desmond +Dwight +Edwin +Jackie +Jake +Jamar +Jarod +Jarred +Jarrett +Jermey +Jerod +Jimmie +Josiah +Kelvin +Leonard +Quintin +Ralph +Randal +Rodrick +Shea +Shelby +Stephan +Avery +Braden +Brenton +Brooks +Coy +Deandre +Donnie +Earnest +Freddie +Harrison +Jayson +Juan +Kelly +Kendall +Kenny +Kent +Lester +Lewis +Lionel +Lonnie +Mason +Maurice +Milton +Neal +Neil +Norman +Rex +Ricardo +Sidney +Stefan +Timmy +Tracy +Wade +Waylon +Wendell +Weston +Whitney +Amos +Bo +Bradford +Bradly +Brody +Clarence +Clark +Colin +Collin +Damien +Damon +Darin +Darryl +Donovan +Erick +Ernest +Herman +Hubert +Ivan +Jaime +Jamey +Jeff +Jerad +Jeramy +Julian +Keenan +Kolby +Leland +Leo +Leon +Malcolm +Marc +Marion +Marshall +Martel +Martez +Mickey +Myron +Nick +Noah +Nolan +Owen +Quincy +Ramon +Randolph +Ray +Robby +Rusty +Sammy +Shelton +Skylar +Teddy +Tyrell +Warren +Xavier +Christopher +Joshua +Michael +Matthew +James +Brandon +Justin +John +William +Robert +Jonathan +David +Jeremy +Daniel +Andrew +Joseph +Dustin +Jason +Steven +Ryan +Zachary +Charles +Kevin +Cody +Timothy +Jacob +Eric +Kyle +Nicholas +Brian +Adam +Aaron +Anthony +Thomas +Bradley +Stephen +Richard +Nathan +Jesse +Benjamin +Mark +Kenneth +Marcus +Jeffrey +Tyler +Corey +Chad +Patrick +Bryan +Derek +Jared +Samuel +Travis +Jordan +Paul +Shawn +Phillip +Gregory +Jeffery +Blake +Bobby +Billy +Sean +Casey +Cory +Wesley +Derrick +Jimmy +Scott +Antonio +Larry +Caleb +Donald +Seth +Terry +Johnny +Gary +Keith +Nathaniel +Shane +Ronald +Alex +Jerry +Brent +Johnathan +Randy +Carl +Joel +Alexander +Clayton +Austin +Ricky +Chase +Lance +George +Jeremiah +Micheal +Raymond +Curtis +Preston +Rodney +Brett +Jonathon +Roger +Tony +Spencer +Clinton +Courtney +Darrell +Lee +Mitchell +Willie +Allen +Cameron +Devin +Jake +Jarrod +Luke +Rickey +Danny +Douglas +Edward +Jessie +Joe +Kristopher +Roy +Russell +Drew +Henry +Logan +Adrian +Colby +Jon +Micah +Ross +Taylor +Todd +Troy +Craig +Jamie +Randall +Ronnie +Heath +Scotty +Tommy +Trevor +Calvin +Eddie +Evan +Grant +Jay +Dennis +Dylan +Philip +Alan +Clifton +Dexter +Gerald +Shaun +Gabriel +Hunter +Jack +Levi +Lucas +Reginald +Trent +Byron +Demarcus +Kerry +Landon +Mario +Noah +Peter +Clint +Frederick +Jerrod +Julius +Leonard +Quincy +Roderick +Shannon +Trey +Vincent +Bruce +Bryant +Desmond +Donnie +Dusty +Garrett +Jackie +Kelly +Kendall +Mathew +Melvin +Walter +Albert +Andy +Beau +Brock +Carlos +Darren +Demario +Dwight +Floyd +Freddie +Ian +Jarvis +Jermaine +Joey +Kendrick +Lawrence +Louis +Mason +Quentin +Ray +Stanley +Terrance +Victor +Alvin +Arthur +Brady +Cedric +Chance +Erik +Frank +Franklin +Isaac +Kelvin +Lonnie +Morgan +Quinton +Terrence +Clarence +Clay +Dallas +Derick +Dewayne +Johnathon +Kody +Marc +Rusty +Zachery +Zackary +Branden +Bryce +Cecil +Charlie +Dale +Dillon +Eugene +Fredrick +Garry +Glenn +Jerome +Malcolm +Marquis +Marshall +Miles +Tracy +Tristan +Wayne +Xavier +Broderick +Christian +Cole +Cordell +Cornelius +Damien +Darnell +Elliott +Ernest +Harold +Jamel +Jermey +Marvin +Maurice +Ralph +Rodrick +Sidney +Terence +Ty +Warren +Andre +Avery +Barry +Brad +Bradly +Brenton +Buddy +Clifford +Dakota +Demetric +Demetrius +Elijah +Emmanuel +Frankie +Fred +Howard +Jarrett +Jody +Jose +Juan +Julian +Karl +Keenan +Leslie +Lester +Lewis +Payton +Riley +Shelby +Timmy +Toby +Tyrone +Wade +Weston +Zachariah +Zane +Antoine +Antwan +Antwon +Ashley +Barrett +Chadrick +Channing +Coby +Cortez +Dalton +Darrin +Darryl +Dean +Deangelo +Dominique +Earnest +Eli +Erick +Ira +Jamar +Jaron +Jerrell +Josh +Kenny +Kirk +Korey +Lane +Leroy +Lloyd +Martin +Myron +Oscar +Randal +Rico +Sammy +Sheldon +Skyler +Stefan +Stuart +Torrence +Virgil +Whitney +Willis +Christopher +Joshua +Michael +James +Justin +Matthew +Brandon +John +Jeremy +William +Jonathan +Robert +David +Andrew +Daniel +Ryan +Cody +Joseph +Timothy +Dustin +Zachary +Charles +Thomas +Jacob +Steven +Aaron +Anthony +Kevin +Nicholas +Brian +Jason +Eric +Bradley +Tyler +Adam +Kyle +Nathan +Stephen +Jeffrey +Jordan +Samuel +Travis +Bryan +Derek +Richard +Benjamin +Patrick +Jesse +Marcus +Gregory +Corey +Cory +Kenneth +Blake +Derrick +Casey +Jared +Chad +Paul +Shawn +Caleb +Mark +Sean +Shane +Billy +Scott +Seth +Bobby +Alex +Austin +Jeffery +Phillip +Wesley +Jimmy +Gary +Johnathan +Mitchell +Donald +Jerry +Keith +Terry +Alexander +Cameron +Larry +Antonio +Clayton +Curtis +Lance +Brent +Jonathon +Philip +Edward +Johnny +Chase +Logan +Randy +Allen +Brett +Randall +Taylor +Tony +Ronald +George +Ricky +Calvin +Carl +Dennis +Douglas +Hunter +Levi +Nathaniel +Russell +Danny +Heath +Jake +Joe +Micah +Micheal +Rodney +Devin +Craig +Lucas +Raymond +Ronnie +Tommy +Kristopher +Roy +Spencer +Willie +Chance +Courtney +Todd +Trevor +Luke +Terrance +Bruce +Evan +Gerald +Jessie +Troy +Darrell +Drew +Jeremiah +Johnathon +Jon +Cedric +Clinton +Dexter +Jamie +Jay +Victor +Adrian +Bryant +Colby +Garrett +Lee +Mario +Preston +Reginald +Brad +Dallas +Eddie +Darren +Dylan +Henry +Ian +Joel +Roderick +Trent +Trenton +Zachery +Barry +Byron +Grant +Harold +Jack +Jarrod +Joey +Terrence +Trey +Vincent +Alan +Alvin +Andre +Carlos +Christian +Clifton +Darius +Frank +Franklin +Jackie +Kendall +Kody +Landon +Max +Charlie +Freddie +Jody +Kendrick +Lawrence +Marshall +Rickey +Stanley +Wade +Walter +Albert +Clay +Cordell +Cordero +Dale +Damon +Elijah +Erik +Marquis +Martin +Marvin +Roger +Tyrone +Brady +Bryce +Clifford +Colin +Coty +Deandre +Derick +Forrest +Glen +Herbert +Isaac +Jerome +Louis +Mason +Mathew +Maurice +Nicolas +Arthur +Bo +Bryson +Dakota +Dillon +Donovan +Dwight +Floyd +Frederick +Fredrick +Jermaine +Jerrod +Kelly +Kurtis +Milton +Morgan +Peter +Quentin +Quintin +Rusty +Sammy +Shannon +Will +Winston +Xavier +Andy +Antoine +Beau +Clint +Cole +Deangelo +Demarcus +Donnie +Earl +Frankie +Gabriel +Geoffrey +Harrison +Jarod +Jarred +Jarrett +Jarvis +Jimmie +Kerry +Kory +Kurt +Lonnie +Malcolm +Parker +Perry +Rashad +Robbie +Rodrick +Terrell +Zackary +Abraham +Ashley +Ben +Blakely +Brannon +Brennan +Bret +Brice +Brock +Cornelius +Darnell +Demario +Desmond +Dewayne +Don +Dusty +Dwayne +Eugene +Gavin +Jamal +Jeremey +Josiah +Juan +Julian +Kirk +Korey +Lane +Leon +Leonard +Lewis +Lloyd +Lorenzo +Marc +Marty +Melvin +Neil +Noah +Orlando +Quinton +Ray +Ross +Sam +Tanner +Timmy +Tyson +Weston +Ashton +Aubrey +Bernard +Blaine +Brandy +Brendan +Brenton +Chris +Clarence +Clyde +Cortez +Dalton +Damarcus +Demetrius +Devon +Dominic +Edwin +Erick +Garry +Graham +Houston +Jackson +Johnnie +Jordon +Josh +Kaleb +Karl +Kasey +Kenny +Kent +Luther +Maxwell +Miles +Montrell +Myron +Oliver +Owen +Ralph +Randal +Rex +Shaun +Skylar +Stefan +Stephan +Sterling +Stuart +Tristan +Vernon +Wayne +Zane +Christopher +Joshua +Justin +Michael +James +Matthew +Brandon +John +William +Robert +David +Andrew +Jonathan +Cody +Joseph +Jacob +Jeremy +Zachary +Daniel +Aaron +Timothy +Tyler +Ryan +Dustin +Nicholas +Anthony +Charles +Steven +Kyle +Jason +Thomas +Adam +Eric +Benjamin +Kevin +Brian +Nathan +Stephen +Richard +Travis +Kenneth +Bradley +Derek +Mark +Jordan +Patrick +Jesse +Jeffrey +Marcus +Samuel +Corey +Cory +Blake +Bryan +Cameron +Gregory +Jared +Chad +Jeffery +Billy +Alex +Sean +Shawn +Wesley +Seth +Alexander +Austin +Nathaniel +Paul +Casey +Shane +Bobby +Caleb +Jerry +Scott +Donald +Phillip +Johnathan +Derrick +Antonio +Clayton +Spencer +Taylor +Gary +Larry +Ricky +Curtis +Edward +Douglas +Randy +Chase +Mitchell +Brent +Courtney +Terry +Danny +Jimmy +Johnny +Keith +Jake +Carl +Devin +Jessie +Lance +Raymond +Jonathon +Randall +Ronald +Calvin +Tony +Allen +Garrett +Heath +Jeremiah +Logan +Lucas +Tommy +Lee +Evan +George +Kristopher +Mason +Preston +Brett +Drew +Eddie +Hunter +Joe +Mario +Micheal +Willie +Alan +Joel +Trent +Trevor +Dylan +Ian +Cedric +Levi +Clinton +Darren +Luke +Ronnie +Russell +Terrance +Grant +Johnathon +Rodney +Zachery +Bruce +Clay +Craig +Dennis +Micah +Todd +Trenton +Xavier +Clint +Colby +Colton +Kendrick +Landon +Philip +Reginald +Terrence +Victor +Vincent +Adrian +Albert +Henry +Jack +Jamie +Jay +Kendall +Kody +Roderick +Ross +Shannon +Andre +Christian +Dillon +Don +Jarrod +Peter +Quentin +Ray +Roy +Byron +Dexter +Donnie +Frederick +Geoffrey +Jackie +Martin +Rickey +Stanley +Trey +Arthur +Bryce +Bryson +Carlos +Chance +Colin +Dewayne +Dominique +Frank +Julian +Kelvin +Mathew +Noah +Rusty +Tanner +Zachariah +Alvin +Brad +Clifford +Cordero +Dallas +Demarcus +Demario +Erik +Gabriel +Joey +Marquis +Scotty +Troy +Tyrone +Zackery +Cole +Coty +Isaac +Jamal +Jarrett +Jermaine +Jermey +Kaleb +Kelly +Lamar +Leonard +Lonnie +Maurice +Miles +Morgan +Roger +Tristan +Wade +Zackary +Brant +Bryant +Carlton +Clifton +Darrell +Desmond +Dusty +Earl +Gerald +Jarvis +Jimmie +Jody +Jon +Julius +Kelsey +Leon +Malcolm +Quincy +Shaun +Skylar +Tracy +Zane +Andy +Antoine +Beau +Bernard +Blaine +Broderick +Chadwick +Chester +Damian +Derick +Devon +Elijah +Jarred +Johnnie +Jonah +Kirby +Kirk +Kory +Lawrence +Lorenzo +Louis +Nickolas +Quinton +Skyler +Stephan +Terence +Timmy +Branden +Clarence +Cornelius +Damon +Dane +Darin +Darryl +Deangelo +Dominic +Edwin +Franklin +Harold +Jace +Jaron +Josiah +Kent +Kentrell +Kurt +Leslie +Marlon +Marty +Marvin +Milton +Nathanael +Perry +Ralph +Robbie +Rocky +Shelby +Sidney +Stuart +Teddy +Warren +Wayne +Allan +Barry +Ben +Braden +Camron +Carter +Corbin +Dakota +Dale +Daryl +Donovan +Drake +Duane +Dwight +Eli +Erick +Ethan +Ezekiel +Gordon +Guy +Harrison +Jackson +Jamar +Jeremey +Jerod +Jerome +Juan +Kasey +Kenny +Korey +Lamarcus +Mackenzie +Marshall +Matt +Maxwell +Oscar +Parker +Payton +Ramon +Robby +Sam +Theodore +Tyrell +Waylon +Westley +Wilson +Christopher +Joshua +Justin +Michael +James +Matthew +Brandon +William +David +John +Cody +Jonathan +Robert +Zachary +Jacob +Jeremy +Andrew +Daniel +Tyler +Aaron +Nicholas +Ryan +Joseph +Dustin +Steven +Kyle +Charles +Timothy +Anthony +Thomas +Adam +Jordan +Eric +Travis +Benjamin +Nathan +Jason +Kevin +Stephen +Brian +Jesse +Derek +Patrick +Richard +Bradley +Austin +Blake +Corey +Caleb +Jeffrey +Jared +Gregory +Marcus +Seth +Kenneth +Cory +Bryan +Samuel +Phillip +Cameron +Wesley +Alexander +Mark +Logan +Johnathan +Sean +Jeffery +Paul +Casey +Keith +Billy +Colton +Derrick +Jerry +Alex +Chad +Ethan +Taylor +Scott +Bobby +Terry +Brett +Clayton +Donald +Edward +Gary +Shawn +Douglas +Chase +Hunter +Larry +Garrett +Levi +Antonio +Curtis +Devin +Lance +Shane +Ricky +George +Raymond +Nathaniel +Evan +Jonathon +Rodney +Ronald +Johnny +Randy +Tony +Dylan +Jimmy +Luke +Danny +Jeremiah +Micheal +Mitchell +Spencer +Trevor +Brent +Dennis +Kristopher +Willie +Heath +Russell +Victor +Carl +Colby +Grant +Johnathon +Lucas +Preston +Randall +Troy +Mason +Bryant +Clinton +Courtney +Drew +Jessie +Zachery +Albert +Allen +Brock +Jake +Marvin +Micah +Trent +Adrian +Alan +Chance +Darius +Roy +Terrance +Tommy +Calvin +Jon +Kendrick +Todd +Trey +Xavier +Bruce +Darrell +Martin +Melvin +Reginald +Trenton +Arthur +Ian +Jamie +Kaleb +Lee +Philip +Roger +Tanner +Byron +Darren +Isaac +Jay +Roderick +Shaun +Vincent +Andre +Dakota +Dexter +Eddie +Joel +Kelly +Terrence +Walter +Bryce +Christian +Clifton +Erik +Franklin +Jarrod +Kendall +Landon +Maurice +Peter +Ross +Tyrone +Zackary +Brad +Cedric +Clint +Dillon +Jack +Joe +Joey +Kelvin +Mario +Mathew +Nickolas +Rickey +Shannon +Alvin +Craig +Dallas +Devon +Dominic +Dominique +Frank +Henry +Kirk +Morgan +Quinton +Ronnie +Beau +Bo +Clifford +Frederick +Glen +Jamar +Jody +Marquis +Ray +Zackery +Brady +Chaz +Clay +Desmond +Dewayne +Donnie +Elijah +Fredrick +Gabriel +Gavin +Harold +Jackson +Jarvis +Korey +Lawrence +Marshall +Miles +Stanley +Terrell +Tracy +Tristan +Zachariah +Aron +Ashton +Clarence +Cortez +Coty +Dale +Demarcus +Demario +Derick +Donovan +Jamal +Jordon +Julian +Julius +Keaton +Kelsey +Leonard +Lonnie +Louis +Lukas +Malcolm +Marc +Noah +Rocky +Sidney +Terence +Blaine +Brendan +Charlie +Colten +Cordell +Dalton +Damon +Demetrius +Earnest +Eli +Forrest +Frankie +Hayden +Jackie +Jarred +Jarrett +Jerrod +Jose +Kurtis +Lamar +Leon +Lloyd +Marty +Max +Nicolas +Quincy +Ralph +Raphael +Rashad +Warren +Antoine +Arsenio +Asa +Braden +Brice +Broderick +Carlos +Carlton +Cole +Corbin +Cordero +Damien +Dusty +Dwight +Edwin +Ezra +Geoffrey +Gerald +Gordon +Houston +Jerome +Kenny +Kerry +Kyler +Lamarcus +Lewis +Marion +Parker +Reese +Shelby +Weston +Willis +Winston +Zane +Alec +Ashley +Barry +Bennie +Branden +Cecil +Chadwick +Collin +Connor +Coy +Darryl +Deandre +Drake +Dwayne +Emmanuel +Eugene +Garrick +Harrison +Ivan +Jace +Jermaine +Jerred +Jimmie +Johnnie +Josiah +Keenan +Keon +Kurt +Laramie +Leroy +Lionel +Lorenzo +Madison +Markell +Maxwell +Nico +Quentin +Rodrick +Rusty +Stephan +Steve +Stevie +Stuart +Toby +Tom +Ty +Wayne +Wyatt +Christopher +Michael +Joshua +Justin +James +Matthew +William +Cody +Zachary +Jacob +John +Brandon +David +Tyler +Jonathan +Robert +Andrew +Joseph +Dustin +Aaron +Jordan +Ryan +Daniel +Jeremy +Nicholas +Anthony +Kyle +Timothy +Steven +Charles +Thomas +Kevin +Eric +Nathan +Stephen +Benjamin +Travis +Ethan +Richard +Jesse +Derek +Adam +Blake +Kenneth +Brian +Caleb +Bradley +Corey +Patrick +Austin +Jared +Jason +Taylor +Cameron +Samuel +Jeffrey +Wesley +Marcus +Gregory +Clayton +Mark +Cory +Shawn +Alexander +Logan +Jeffery +Seth +Colton +Phillip +Alex +Billy +Dylan +Trevor +Chase +Donald +Casey +Chad +Shane +Nathaniel +Bryan +Derrick +Hunter +Terry +Paul +Antonio +Devin +Brett +Jerry +Jimmy +Johnathan +Colby +Spencer +Dalton +Evan +Mitchell +Scott +Sean +George +Keith +Darius +Levi +Bobby +Christian +Edward +Jeremiah +Johnny +Brent +Garrett +Gary +Lucas +Jake +Larry +Luke +Rodney +Grant +Jessie +Preston +Ricky +Roy +Trenton +Adrian +Curtis +Jon +Kristopher +Dakota +Jonathon +Lee +Xavier +Clinton +Douglas +Drew +Joe +Ronald +Zachery +Lance +Philip +Todd +Carl +Randy +Raymond +Chance +Darren +Joel +Tommy +Allen +Dillon +Tony +Andre +Johnathon +Micheal +Quinton +Randall +Trent +Vincent +Willie +Byron +Calvin +Devon +Jack +Jackson +Marquis +Mason +Terrance +Coty +Craig +Darrell +Deandre +Heath +Jarrod +Kendall +Lawrence +Weston +Alan +Dennis +Reginald +Tevin +Bryce +Clint +Cole +Erik +Frederick +Kaleb +Landon +Roderick +Ronnie +Russell +Troy +Beau +Carlos +Cedric +Franklin +Isaac +Julian +Martin +Mathew +Quentin +Walter +Brock +Colin +Dominique +Elijah +Jamal +Rickey +Roger +Terrence +Zachariah +Bryant +Clifford +Courtney +Derick +Dexter +Hayden +Noah +Shannon +Shelby +Tristan +Albert +Ashton +Blaine +Bruce +Clifton +Colten +Ian +Jay +Jermaine +Jerrod +Jody +Joey +Kirk +Mario +Peter +Sheldon +Steve +Tanner +Trey +Zackary +Dallas +Danny +Demarcus +Desmond +Donovan +Dwight +Earl +Eddie +Gabriel +Harrison +Jarvis +Juan +Kelly +Leslie +Morgan +Skyler +Stuart +Zackery +Carlton +Clarence +Clay +Cornelius +Donnie +Dusty +Gavin +Geoffrey +Henry +Jordon +Josiah +Kameron +Kelvin +Kody +Lamar +Malcolm +Marshall +Maxwell +Melvin +Micah +Miles +Nicolas +Riley +Scotty +Shaun +Terrell +Brice +Chandler +Clark +Cortez +Emanuel +Ernest +Frank +Freddie +Fredrick +Gerald +Harley +Jace +Jackie +Jamie +Jaron +Jerome +Kendrick +Kent +Lane +Nickolas +Paris +Parker +Payton +Pierre +Quincy +Rodrick +Stanley +Tylor +Vernon +Victor +Wade +Alvin +Archie +Braden +Brady +Brendan +Dale +Damon +Darrius +Deangelo +Demetrius +Denzel +Dominic +Garrick +Glen +Karl +Kasey +Kerry +Leroy +Lloyd +Marc +Marvin +Orlando +Reggie +Skylar +Stefan +Tyrone +Wayne +Alec +Andrea +Arthur +Bo +Brad +Braylon +Brenton +Bret +Broderick +Dane +Darryl +Demario +Demetris +Devan +Eli +Erin +Ezekiel +Glenn +Harold +Isaiah +Jarred +Jarrett +Keaton +Kenny +Kentrell +Kurt +Kyler +Leon +Lorenzo +Mackenzie +Rocky +Rustin +Rusty +Sidney +Stephan +Stevie +Terence +Zane +Antwon +Arron +Aubrey +Bennie +Bernard +Branden +Brayden +Cedrick +Charlie +Corbin +Damien +Darnell +Darrin +Darron +Dedrick +Derik +Edgar +Ellis +Emmanuel +Forrest +Gage +Houston +Hubert +Jaime +Jamar +Jerod +Jess +Johnnie +Keenan +Kelsey +Leonard +Madison +Manuel +Maurice +Max +Montana +Myles +Odis +Rashad +Ricardo +Stacy +Toby +Ty +Waylon +Wilson +Christopher +Joshua +Michael +James +Cody +Matthew +Justin +Tyler +William +Jacob +Brandon +Zachary +John +Joseph +Robert +Andrew +Jonathan +David +Ryan +Daniel +Aaron +Jordan +Nicholas +Dustin +Charles +Anthony +Jeremy +Kyle +Timothy +Steven +Austin +Nathan +Thomas +Blake +Samuel +Kevin +Eric +Stephen +Ethan +Jesse +Bradley +Caleb +Taylor +Benjamin +Patrick +Travis +Dylan +Richard +Jason +Kenneth +Adam +Cameron +Corey +Jared +Mark +Brian +Gregory +Cory +Derek +Hunter +Logan +Marcus +Seth +Alexander +Dakota +Jeffrey +Trevor +Casey +Sean +Wesley +Johnathan +Shawn +Garrett +Billy +Jeffery +Brett +Chase +Dalton +Phillip +Christian +Colton +Alex +Devin +Keith +Paul +Spencer +Jimmy +Chad +Larry +Bryan +Colby +Derrick +Evan +Donald +Hayden +Scott +Bobby +Jake +Brent +Clayton +Dillon +Jerry +Mitchell +Antonio +Shane +Gary +Kaleb +Mason +Nathaniel +Jonathon +Johnathon +Preston +Tanner +Tony +Darius +Terry +Curtis +Jessie +Randy +Calvin +Clinton +Ian +Johnny +Lance +Ronald +Dennis +Edward +Joe +Levi +Luke +Cole +Terrance +Tevin +Vincent +Zachery +Joel +Lee +Willie +Xavier +Danny +Dominique +Landon +Lucas +Randall +Ricky +Adrian +Alan +Kristopher +Micheal +Tommy +Carl +Chance +George +Grant +Jackson +Jon +Kendall +Kendrick +Rodney +Russell +Ashton +Courtney +Devon +Douglas +Henry +Jeremiah +Raymond +Shelby +Trenton +Victor +Arthur +Craig +Drew +Allen +Clay +Clint +Connor +Heath +Jamie +Lawrence +Malcolm +Nickolas +Quinton +Bruce +Bryce +Devan +Mathew +Todd +Trent +Trey +Clifton +Dexter +Frank +Jarvis +Parker +Ronnie +Ross +Shaun +Brock +Byron +Chandler +Dallas +Darren +Demarcus +Demetrius +Eddie +Gabriel +Isaac +Morgan +Ray +Skyler +Zackery +Carlos +Darrell +Deangelo +Erik +Gage +Julian +Kameron +Kody +Marquis +Noah +Rickey +Roger +Roy +Terrell +Troy +Andre +Cedric +Coty +Deandre +Gavin +Harold +Isaiah +Jack +Jay +Keenan +Lonnie +Micah +Payton +Philip +Reginald +Stanley +Alvin +Beau +Clarence +Damien +Dillion +Eugene +Franklin +Harrison +Jarred +Jarrod +Jerome +Jerrod +Jusitn +Leslie +Louis +Marshall +Martin +Melvin +Shannon +Tracy +Tristan +Tyrone +Weston +Zackary +Albert +Barrett +Barry +Brendan +Carlton +Clifford +Colin +Cortez +Damian +Donnie +Donovan +Forrest +Geoffrey +Hugh +Keifer +Kelby +Lorenzo +Marvin +Miles +Riley +Roderick +Sebastian +Shaquille +Ty +Wilson +Zachariah +Zane +Alec +Alonzo +Avery +Codie +Damon +Darrin +Darrius +Dewayne +Drake +Gerald +Harley +Houston +Jarrett +Kerry +Kyler +Leroy +Omar +Perry +Peter +Roman +Scottie +Skylar +Stuart +Terence +Theodore +Walter +Will +Allan +Arron +Blaine +Braden +Brady +Branden +Broderick +Bryant +Charlie +Dedrick +Dominic +Dusty +Dwayne +Edwin +Ernest +Floyd +Freddie +Gunnar +Gunner +Jackie +Jasper +Jermaine +Jody +Joey +Jordon +Josiah +Julius +Kelvin +Kolby +Kory +Lamar +Leonard +Lukas +Markus +Martez +Maurice +Nicolas +Norman +Paris +Quincy +Rashad +Rico +Scotty +Stevie +Terrence +Alfred +Antwon +Aubrey +Brantley +Braxton +Bret +Briar +Brice +Brooks +Carter +Cedrick +Collin +Corbin +Cord +Cornelius +Coy +Dante +Demario +Denzel +Deshawn +Desmond +Earl +Edgar +Elijah +Erick +Fernando +Frederick +Ivan +Jace +Jacoby +Jamarcus +Jesus +Jose +Kelly +Korey +Lane +Lewis +Mario +Markell +Marquise +Miguel +Myron +Olen +Orlando +Quentin +Ruben +Warren +Waylon +Christopher +Joshua +Michael +Tyler +James +Cody +Matthew +Zachary +Jacob +William +Brandon +Justin +John +Robert +David +Andrew +Joseph +Jonathan +Dylan +Nicholas +Daniel +Aaron +Ryan +Jordan +Austin +Steven +Kyle +Anthony +Charles +Dustin +Timothy +Jeremy +Blake +Thomas +Benjamin +Taylor +Kevin +Eric +Stephen +Adam +Dakota +Caleb +Ethan +Patrick +Samuel +Cameron +Nathan +Alexander +Bradley +Jesse +Richard +Colton +Seth +Jason +Dalton +Derek +Kenneth +Brian +Hunter +Travis +Jeffrey +Dillon +Logan +Christian +Corey +Alex +Bryan +Chase +Jared +Wesley +Gregory +Shawn +Tanner +Trevor +Devin +Spencer +Mark +Casey +Garrett +Sean +Tevin +Derrick +Marcus +Paul +Shane +Colby +Evan +Phillip +Billy +Cory +Jonathon +Jerry +Luke +Mitchell +Clayton +Hayden +Jeffery +Terry +Mason +Jimmy +Keith +Gary +Jackson +Johnathan +Grant +Darius +George +Scott +Brett +Larry +Rodney +Chad +Nathaniel +Preston +Tony +Bobby +Ronald +Levi +Zachery +Lucas +Raymond +Antonio +Brent +Devonte +Donald +Jeremiah +Johnny +Randall +Terrance +Devante +Ian +Kody +Trenton +Edward +Joe +Clint +Landon +Xavier +Connor +Curtis +Dennis +Henry +Kendall +Lance +Reginald +Terrence +Todd +Vincent +Devon +Kristopher +Micheal +Allen +Carl +Chance +Damian +Jack +Jake +Jay +Lawrence +Tommy +Zackery +Clinton +Danny +Jamie +Kaleb +Micah +Randy +Rickey +Roger +Russell +Zackary +Adrian +Brady +Cole +Collin +Darren +Deandre +Gerald +Heath +Jarrod +Jessie +Joel +Lee +Philip +Shannon +Trent +Willie +Alan +Colin +Craig +Dominique +Douglas +Drew +Gabriel +Isaac +Johnathon +Quinton +Ricky +Skyler +Victor +Courtney +Eddie +Jose +Julian +Malcolm +Mathew +Braden +Bryce +Clifton +Dallas +Darrell +Jon +Martin +Morgan +Roy +Shelby +Ty +Walter +Weston +Calvin +Damien +Demetrius +Desmond +Dexter +Donovan +Jarred +Kendrick +Nickolas +Parker +Peter +Trey +Troy +Tylor +Albert +Alec +Bruce +Cedric +Demarcus +Dominic +Elijah +Forrest +Franklin +Gavin +Louis +Marquis +Melvin +Quentin +Rashad +Roderick +Ronnie +Skylar +Andre +Cornelius +Cortez +Drake +Dusty +Frank +Glen +Harley +Harrison +Jamal +Jaron +Shaquille +Stanley +Steve +Ashton +Branden +Byron +Carlos +Carlton +Carter +Conner +Damon +Darryl +Dillion +Frederick +Garret +Houston +Jalen +Jarrett +Jermaine +Josiah +Juan +Keaton +Kelly +Kenny +Lewis +Marshall +Payton +Terrell +Tre +Arthur +Beau +Bo +Bryant +Carson +Chandler +Clarence +Cordell +Dale +Erik +Jodeci +Kerry +Kirk +Myles +Neal +Nicolas +Noah +Orlando +Rusty +Tracy +Tristan +Warren +Winston +Ben +Brennan +Broderick +Coty +Dalvin +Darrius +Deangelo +Demarco +Devonta +Dylon +Fredrick +Graham +Harold +Harvey +Jace +Jacoby +Jarvis +Jerome +Joey +Kameron +Kaylon +Kent +Kurt +London +Lukas +Marvin +Maurice +Max +Miles +Ray +Reid +Riley +Rodrick +Roman +Ross +Scotty +Tyrell +Zachariah +Zane +Alfred +Alvin +Andy +Aron +Bennie +Blaine +Brannon +Brock +Brody +Clifford +Coleman +Dandre +Darian +Derick +Devontae +Dewayne +Dillan +Dimitri +Don +Donavan +Donnie +Dwight +Earl +Eli +Emmanuel +Erick +Gareth +Garth +Ivan +Jackie +Javier +Jesus +Julius +Kalen +Kelton +Kory +Kyler +Ladarius +Lane +Leo +Mackenzie +Marquez +Quintin +Rico +Ryne +Sergio +Sheldon +Stuart +Terence +Travon +Tyrone +Vernon +Waylon +Willard +Christopher +Michael +Joshua +Tyler +James +Cody +Zachary +Jacob +William +Matthew +Justin +Brandon +John +Robert +Austin +Joseph +David +Andrew +Jonathan +Nicholas +Dylan +Jordan +Daniel +Ryan +Kyle +Aaron +Dustin +Charles +Taylor +Nathan +Timothy +Thomas +Hunter +Blake +Steven +Anthony +Jeremy +Stephen +Alexander +Samuel +Caleb +Dakota +Benjamin +Patrick +Jesse +Adam +Kevin +Richard +Brian +Logan +Eric +Cameron +Dalton +Seth +Dillon +Corey +Travis +Alex +Garrett +Tanner +Marcus +Ethan +Devin +Gregory +Jason +Sean +Kenneth +Trevor +Jared +Bradley +Mark +Billy +Christian +Colton +Nathaniel +Jeffrey +Derek +Spencer +Jeffery +Wesley +Bryan +Paul +Evan +Johnathan +Clayton +Cory +Shawn +Colby +Derrick +Jerry +Luke +Mason +Shane +Zachery +Chase +Keith +Mitchell +Casey +Edward +Scott +Darius +Hayden +Jimmy +Larry +Terry +Gary +Levi +Lucas +Antonio +Bobby +Brett +Jose +Lance +Trey +Preston +Chad +Donald +George +Jackson +Calvin +Dallas +Jessie +Kendall +Phillip +Trenton +Brent +Cole +Curtis +Grant +Jonathon +Kaleb +Landon +Tevin +Allen +Weston +Brady +Jalen +Ricky +Xavier +Carl +Connor +Drew +Jack +Isaac +Jake +Joel +Ronald +Tommy +Tony +Darren +Ian +Parker +Zackery +Chance +Devon +Devonte +Douglas +Jeremiah +Johnny +Kristopher +Micheal +Troy +Vincent +Zackary +Collin +Dominique +Adrian +Colin +Colten +Randy +Danny +Devante +Donovan +Gabriel +Henry +Jamal +Kody +Morgan +Payton +Randall +Rodney +Terrance +Chandler +Deandre +Dexter +Elijah +Frank +Harold +Joe +Julian +Kyler +Louis +Quentin +Shelby +Skyler +Alan +Desmond +Raymond +Russell +Shaquille +Trent +Albert +Braden +Bryce +Carlos +Damien +Damon +Darrell +Jarrod +Reginald +Roderick +Ronnie +Roy +Tristan +Ashton +Avery +Demarcus +Johnathon +Jordon +Lee +Marquis +Marshall +Philip +Sawyer +Ty +Conner +Corbin +Craig +Denzel +Dillan +Drake +Forrest +Heath +Jamie +Jaylon +Jon +Lawrence +Malcolm +Melvin +Quincy +Sheldon +Terrell +Tyrone +Andre +Beau +Bruce +Clint +Clinton +Darrius +Dennis +Gunner +Houston +Jace +Jarvis +Jay +Juan +Martin +Maxwell +Miles +Nicolas +Rickey +Sebastian +Todd +Tylor +Clifton +Colt +Coy +Dillion +Eddie +Eli +Gage +Harley +Kasey +Marvin +Perry +Peter +Quinton +Raheem +Reed +Stanley +Stuart +Tre +Victor +Wade +Willie +Addison +Arthur +Brad +Bryant +Carter +Clay +Conor +Courtney +Dale +Damian +Darien +Darryl +De +Demetrius +Devan +Dusty +Edgar +Erik +Eugene +Grayson +Harrison +Isaiah +Jermaine +Jerome +Johnnie +Kameron +Kaylon +Keenan +Kolby +Marlon +Mathew +Scotty +Warren +Zachariah +Alec +Alvin +Arron +Braylon +Brennon +Cedric +Coty +Dayton +Dedrick +Derick +Dewayne +Ernest +Ezekiel +Frederick +Geoffrey +Gerald +Glen +Greg +Hakeem +Jarred +Jarrett +Joey +Kelly +Kerry +Kirk +Lane +Leon +Lewis +Lonnie +Madison +Malcom +Max +Micah +Ray +Shannon +Silas +Stetson +Terrence +Tucker +Walter +Ahmad +Andy +Bernard +Blaine +Branden +Braxton +Brendon +Brock +Brody +Carlton +Carson +Cecil +Charlie +Cordell +Damion +Darin +Demario +Deondre +Deonte +Deshaun +Devonta +Devontae +Dylon +Earnest +Elias +Emanuel +Erick +Floyd +Franklin +Freddie +Jamison +Jarod +Jorge +Karl +Kelsey +Kendell +Keon +Kolten +Kory +Mackenzie +Malik +Maurice +Neal +Noah +Omar +Peyton +Rashad +Riley +Roger +Ross +Rusty +Sam +Shaun +Simon +Toby +Tracy +Wayne +Wilson +Michael +Christopher +Tyler +Austin +Jacob +James +Zachary +Brandon +Joshua +William +Matthew +John +Justin +Cody +Robert +Joseph +David +Daniel +Andrew +Nicholas +Hunter +Aaron +Dylan +Jordan +Jonathan +Ryan +Dustin +Kyle +Charles +Timothy +Dakota +Steven +Alexander +Anthony +Blake +Caleb +Kevin +Samuel +Thomas +Benjamin +Nathan +Taylor +Eric +Jesse +Dalton +Logan +Cameron +Devin +Corey +Jeremy +Stephen +Richard +Seth +Dillon +Alex +Ethan +Patrick +Jason +Christian +Adam +Bradley +Jared +Garrett +Brian +Kenneth +Wesley +Colton +Marcus +Trevor +Sean +Clayton +Chase +Gregory +Hayden +Mark +Spencer +Tanner +Derek +Jeffrey +Mason +Travis +Casey +Evan +Jalen +Luke +Nathaniel +Darius +Cory +Phillip +Xavier +Trenton +Paul +Shane +Trey +Devon +Levi +Brett +Mitchell +Shawn +Bryan +Chance +Connor +Derrick +Jonathon +Rodney +Billy +Gary +Jeremiah +Johnny +Larry +Jerry +Ricky +Donald +Grant +Tony +Jake +Scott +Terry +Zachery +Brady +Johnathan +Kaleb +Quinton +Allen +Chad +Cole +Dallas +George +Harley +Lucas +Tevin +Gabriel +Skyler +Bobby +Curtis +Isaac +Jimmy +Randy +Antonio +Collin +Drake +Elijah +Forrest +Jeffery +Henry +Ian +Jackson +Jessie +Keith +Kristopher +Landon +Lane +Micheal +Ronald +Ronnie +Zackary +Adrian +Carl +Preston +Braden +Brent +Colby +Darren +Dennis +Drew +Edward +Kendall +Raymond +Reginald +Tommy +Jack +Joe +Johnathon +Jose +Riley +Roy +Zackery +Alec +Calvin +Harrison +Lance +Morgan +Noah +Payton +Courtney +Jay +Jon +Parker +Shaquille +Alan +Arthur +Clay +Clint +Damon +Jamal +Kody +Martin +Russell +Shelby +Toby +Todd +Trent +Weston +Ashton +Bryce +Conner +Douglas +Lee +Micah +Roger +Skylar +Troy +Vincent +Chandler +Damion +Danny +Deandre +Gage +Gerald +Joel +Kendrick +Lawrence +Luis +Sebastian +Sidney +Terrence +Tyrone +Walter +Wyatt +Byron +Carson +Clinton +Colten +Corliss +Desmond +Devonte +Eddie +Frank +Jarvis +Marquis +Quentin +Randall +Scotty +Tracy +Willie +Albert +Andre +Avery +Carter +Corbin +Craig +Damian +Darrius +Devan +Devonta +Dillion +Dusty +Frederick +Geoffrey +Houston +Jarrod +Jaylon +Juan +Kyler +Mathew +Miles +Shannon +Shaun +Addison +Beau +Branden +Brendon +Bryant +Dale +Damien +Devante +Dominic +Donovan +Edwin +Erick +Erik +Jess +Keifer +Korey +Lonnie +Malcolm +Mario +Marquise +Marshall +Maxwell +Miguel +Nickolas +Nicolas +Sheldon +Ty +Victor +Alonzo +Brad +Brendan +Brock +Cade +Cedric +Colin +Cortez +Demarcus +Edgar +Eli +Ezekiel +Garret +Gavin +Heath +Jace +Jesus +Jonah +Josiah +Justice +Kameron +Marvin +Mickey +Philip +Quincy +Rashad +Reed +Shelton +Terence +Terrell +Wade +Warren +Zane +Alfred +Angel +Blaine +Bo +Braylon +Brenden +Brennan +Bruce +Coty +Darion +Darrell +Dayton +Dean +Dedrick +Demetri +Demetrius +Dequan +Derick +Deven +Dominique +Donnie +Gunnar +Gunner +Harold +Jaleel +Jamie +Jarred +Javier +Jermaine +Keaton +Kurt +Ladarius +Lorenzo +Malik +Marc +Montana +Neil +Nelson +Peter +Peyton +Roberto +Ross +Terrance +Trae +Tristan +Tylor +Wayne +Zachariah +Zechariah +Arron +Austen +Bailey +Braxton +Brayden +Briar +Broderick +Brody +Bryson +Charlie +Coleman +Cordell +Darian +Darien +Daron +Darryl +Demarius +Demetris +Deonte +Deshawn +Dewayne +Dion +Drue +Emmanuel +Freddie +Fredrick +Glenn +Hugh +Isaiah +Jackie +Jaron +Jerome +Jerrod +Joey +Jordon +Kane +Kenny +Kolby +Kory +Layne +Louis +Lukas +Markel +Markus +Max +Melvin +Myles +Oscar +Raheem +Ray +Sawyer +Sterling +Tre +Trevion +Tyler +Jacob +Christopher +Austin +Joshua +William +Michael +James +Brandon +Matthew +Cody +Justin +Zachary +John +Nicholas +Andrew +Hunter +Daniel +Jordan +Joseph +Dakota +Dustin +Robert +Aaron +David +Jonathan +Ryan +Dylan +Logan +Anthony +Dalton +Nathan +Caleb +Christian +Alexander +Charles +Colton +Kevin +Steven +Benjamin +Kyle +Adam +Timothy +Garrett +Alex +Thomas +Stephen +Blake +Jeremy +Seth +Taylor +Devin +Ethan +Jesse +Samuel +Tanner +Marcus +Dillon +Eric +Jason +Richard +Patrick +Brian +Travis +Bradley +Mason +Trevor +Cameron +Evan +Landon +Corey +Luke +Sean +Clayton +Wesley +Chase +Kenneth +Hayden +Jackson +Nathaniel +Paul +Bryan +Gregory +Jeffrey +Lane +Brett +Casey +Jeffery +Spencer +Cole +Jared +Levi +Tristan +Connor +Elijah +Kaleb +Mitchell +Derek +Devon +Ian +Shawn +Scott +Chance +Xavier +Colby +Trenton +Jalen +Johnathan +Mark +Noah +Bobby +Jake +Preston +Cory +Darius +Edward +Jose +Curtis +Grant +Jerry +Jimmy +Keith +Bryce +Chandler +Larry +Terry +Zachery +Lucas +Phillip +Skyler +Tony +Alec +Antonio +Ricky +Braden +Isaac +Jonathon +Shane +Allen +Chad +Drew +Malik +Trey +Billy +Brent +Drake +Lance +Micah +Adrian +Clay +Dallas +Henry +Johnny +Kody +Kristopher +Tevin +Wyatt +Gabriel +Gage +George +Shelby +Weston +Brady +Derrick +Devante +Isaiah +Jeremiah +Jon +Quinton +Rodney +Tommy +Devonte +Donald +Gary +Joel +Mathew +Payton +Raymond +Ty +Collin +Jack +Jessie +Kendall +Reginald +Ronald +Victor +Andre +Calvin +Carson +Carter +Colin +Demetrius +Kendrick +Morgan +Randall +Shannon +Trent +Tristen +Troy +Walter +Zackery +Alan +Dennis +Douglas +Harrison +Houston +Lee +Micheal +Parker +Peyton +Quentin +Ronnie +Trevon +Brendan +Carl +Darren +Jamal +Jarred +Jaylon +Joe +Johnathon +Randy +Roger +Roy +Vincent +Zane +Braylon +Brock +Colten +Conner +Forrest +Heath +Jace +Jay +Luis +Rickey +Shaquille +Todd +Triston +Ashton +Branden +Damian +Deonte +Dusty +Eddie +Erik +Fredrick +Marquise +Skylar +Zackary +Bailey +Beau +Brennan +Carlos +Clifton +Clint +Clinton +Cortez +Craig +Darian +Darrius +Deandre +Dedrick +Grayson +Harold +Jamie +Juan +Justice +Keaton +Kristian +Layton +Marquis +Maxwell +Peter +Quincy +Riley +River +Tucker +Austen +Blaine +Bryson +Cooper +Danny +Dominique +Harley +Jarod +Jaylen +Jermaine +Julian +Kyler +Marshall +Nickolas +Oscar +Ray +Russell +Terrance +Trever +Warren +Willie +Addison +Alvin +Ausitn +Braxton +Brenden +Brenton +Bryant +Byron +Colt +Cornelius +Damon +Daryl +Deion +Desmond +Devan +Devontae +Don +Donovan +Eli +Frank +Gavin +Gerald +Jacoby +Jarrod +Jesus +Jordon +Kelly +Khalil +Madison +Malachi +Malcolm +Mario +Martin +Montel +Nikolas +Roderick +Roosevelt +Sawyer +Wade +Albert +Alejandro +Anfernee +Arthur +Brody +Bruce +Cade +Cedric +Charlie +Coleman +Corbin +Coy +Cristian +Dale +Demarcus +Deon +Devonta +Dexter +Dominic +Easton +Emmanuel +Francisco +Franklin +Geoffrey +Jarrett +Javier +Joey +Jorge +Jusitn +Kasey +Keenan +Kelvin +Kendal +Kenny +Landen +Lawrence +Lewis +Lonnie +Lorenzo +Marc +Marlon +Marvin +Miguel +Miles +Montrell +Nathanael +Philip +Reed +Ross +Shaun +Terence +Terrell +Walker +Waylon +Wendell +Abraham +Aidan +Avery +Barrett +Ben +Bennett +Britton +Cecil +Cedrick +Damien +Darrell +Dayton +Dillan +Duncan +Edwin +Erick +Frederick +Garret +Grady +Greyson +Gustavo +Holden +Jackie +Jalon +Jerome +Jess +Kane +Kolby +Kory +Leonard +Manuel +Markel +Mikel +Omar +Quinn +Ricardo +Rusty +Sidney +Sonny +Stephon +Steve +Stuart +Teddy +Terrence +Thaddeus +Tracy +Tylor +Jacob +Tyler +Austin +Michael +Christopher +William +James +Joshua +Brandon +Matthew +Zachary +John +Cody +Justin +Andrew +Nicholas +Hunter +Joseph +Dylan +David +Robert +Jordan +Christian +Ryan +Aaron +Dakota +Jonathan +Daniel +Caleb +Logan +Charles +Kyle +Samuel +Dustin +Nathan +Dalton +Anthony +Benjamin +Thomas +Alexander +Blake +Colton +Chase +Timothy +Seth +Steven +Tristan +Eric +Ethan +Cameron +Devin +Jesse +Kevin +Taylor +Garrett +Bradley +Tanner +Trevor +Malik +Brian +Dillon +Noah +Spencer +Kenneth +Chance +Mason +Jared +Alex +Jason +Richard +Clayton +Corey +Hayden +Cole +Jeffrey +Jeremy +Elijah +Travis +Adam +Evan +Nathaniel +Patrick +Jackson +Luke +Stephen +Johnathan +Sean +Marcus +Grant +Preston +Bryan +Derek +Mark +Wesley +Brett +Chandler +Darius +Connor +Jose +Lucas +Paul +Colby +Jonathon +Trenton +Casey +Landon +Isaac +Alec +Gregory +Victor +Antonio +Levi +Mitchell +Cory +Jerry +Keith +Billy +Derrick +Ian +Larry +Phillip +Ronald +Terry +Bryce +Shane +Devon +Edward +Jake +Jalen +Jaylon +Jeffery +Allen +Isaiah +Jeremiah +Jessie +Juan +Bobby +Collin +Gary +Micah +Xavier +George +Kaleb +Lance +Shawn +Skyler +Tristen +Chad +Lane +Scott +Ty +Zachery +Zackary +Brent +Deandre +Jack +Kendrick +Raymond +Tony +Trent +Brady +Donald +Kristopher +Wyatt +Adrian +Calvin +Carson +Jimmy +Johnathon +Ricky +Dallas +Douglas +Drake +Parker +Randy +Rodney +Triston +Weston +Andre +Bailey +Colin +Conner +Harrison +Justice +Quinton +Avery +Braden +Curtis +Darren +Joe +Julian +Micheal +Trey +Walter +Ashton +Clay +Colten +Demarcus +Drew +Edgar +Gabriel +Gage +Johnny +Riley +Russell +Tristin +Zane +Braylon +Brock +Cedric +Damon +Dangelo +Dennis +Gunner +Kyler +Martin +Payton +Ronnie +Troy +Willie +Zackery +Byron +Carter +Danny +Jaylen +Lee +Luis +Mathew +Nickolas +Roger +Skylar +Tommy +Walker +Zachariah +Alan +Bryant +Carl +Carlos +Clinton +Craig +Darian +Darrell +Dillion +Erick +Harley +Jesus +Jon +Kendall +Morgan +Quentin +Randall +Rhett +Shannon +Sheldon +Terrance +Alejandro +Andres +Courtney +Damien +Devan +Devonte +Donovan +Eddie +Heath +Joel +Lawrence +Mario +Marquis +Marshall +Nicolas +Peyton +Roy +Shelby +Tristian +Vincent +Blaine +Brayden +Brody +Cade +Corbin +Davis +Eduardo +Emanuel +Grayson +Henry +Keenan +Malcolm +Melvin +Philip +Sebastian +Tevin +Todd +Wade +Warren +Addison +Arthur +Beau +Brenden +Brennan +Cooper +Damian +Dante +Demetrius +Desmond +Devonta +Erik +Francisco +Gavin +Herman +Houston +Ivan +Jay +Jaylin +Jonah +Josiah +Kaden +Kameron +Keaton +Marquez +Miguel +Peter +Reginald +Roberto +Tucker +Anfernee +Austen +Brad +Braxton +Brendan +Briar +Brice +Cesar +Coty +Deshawn +Devante +Edwin +Eli +Emmanuel +Forrest +Greyson +Haden +Harold +Jace +Jarod +Jimmie +Joey +Kelton +Kody +Kurtis +Louis +Madison +Marc +Marvin +Myles +Perry +Reid +Rickey +Sawyer +Stephon +Terrell +Tylor +Will +Albert +Bradly +Brendon +Bryson +Chauncey +Clarence +Clark +Clifton +Clint +Cornelius +Damion +Dandre +Davion +Dayton +Deangelo +Deion +Deon +Dillan +Dominique +Donnie +Easton +Frank +Giovanni +Jamie +Jarrod +Jordon +Kaylon +Keegan +Kelly +Kolby +Mackenzie +Manuel +Marquise +Maxwell +Miles +Nathanial +Oscar +Ricardo +River +Roderick +Scotty +Stanley +Steve +Toby +Tyrone +Wilson +Abraham +Aubrey +Branden +Braylin +Broderick +Coleman +Dalvin +Davian +Demario +Denver +Denzel +Donte +Dylon +Efrain +Elias +Ernest +Fabian +Fredrick +Gerald +Graham +Griffin +Gunnar +Jackie +Jacoby +Jamal +Javier +Jess +Jessy +Jody +Kasey +Kelvin +Kerry +Kolton +Korey +Kristofer +Kylon +Ladarius +Mckinley +Montrell +Nikolas +Owen +Quincy +Reed +Rocky +Ross +Sam +Shaun +Sterling +Trace +Tyrell +Jacob +Austin +Christopher +Michael +Tyler +Joshua +Zachary +William +Matthew +James +John +Brandon +Andrew +Justin +Nicholas +Cody +Hunter +Joseph +David +Dylan +Jordan +Caleb +Robert +Jonathan +Ryan +Christian +Logan +Daniel +Samuel +Aaron +Dakota +Kyle +Alexander +Dalton +Ethan +Timothy +Nathan +Charles +Tanner +Noah +Benjamin +Jason +Thomas +Anthony +Kevin +Colton +Cameron +Devin +Steven +Taylor +Dustin +Eric +Blake +Jeremy +Trevor +Alex +Seth +Chase +Mason +Cole +Garrett +Stephen +Kenneth +Jared +Clayton +Patrick +Richard +Hayden +Jackson +Tristan +Bradley +Brian +Mark +Evan +Landon +Luke +Dillon +Jesse +Sean +Marcus +Adam +Gregory +Kaleb +Spencer +Grant +Parker +Johnathan +Connor +Malik +Peyton +Wesley +Nathaniel +Travis +Darius +Elijah +Levi +Trenton +Jerry +Bryan +Chandler +Jose +Brady +Brett +Corey +Derrick +Isaiah +Jeffrey +Lucas +Cory +Ty +Bryce +Gabriel +Mitchell +Shawn +Xavier +Bailey +Preston +Derek +Harrison +Isaac +Larry +Antonio +Chance +Jake +Jeremiah +Devon +Ian +Johnny +Shane +Alec +Braden +Dallas +Keith +Drake +Jeffery +Jessie +Juan +Kyler +Billy +Collin +Jack +Tristen +Gary +Gavin +Lane +Payton +Wyatt +Allen +Colby +Donald +Jaylon +Jimmy +Micah +Ricky +Skylar +Tommy +Trey +Bobby +Brendan +Casey +Paul +Andre +Jonathon +Kendrick +Riley +Rodney +Scott +Brent +Carl +Carlos +Drew +Henry +Luis +Skyler +Willie +Zachery +Ashton +Brayden +Chad +Darrell +Gage +Ronald +Tony +Triston +Zackary +Adrian +Alan +Braylon +Conner +George +Jace +Jakob +Jonah +Kendall +Raymond +Weston +Zane +Braxton +Carter +Colten +Darren +Donovan +Jalen +Joel +Kelton +Ladarius +Phillip +Terry +Trace +Zackery +Clinton +Curtis +Devonte +Johnathon +Justice +Keaton +Kristopher +Nicolas +Randy +Russell +Sebastian +Terrance +Cooper +Edward +Gunner +Harley +Joe +Kameron +Kody +Lance +Morgan +Quentin +Randall +Rickey +Tucker +Victor +Alejandro +Branden +Calvin +Carson +Colin +Danny +Dennis +Eddie +Eli +Grayson +Heath +Ivan +Jarrett +Jay +Joey +Jon +Josiah +Marshall +Micheal +River +Toby +Vincent +Walker +Walter +Avery +Brock +Brody +Cedric +Clay +Dante +Darian +Deandre +Demetrius +Desmond +Douglas +Dusty +Frank +Houston +Isiah +Jesus +Lee +Lewis +Maxwell +Omar +Philip +Reed +Ronnie +Trevon +Addison +Beau +Bryson +Cesar +Courtney +Deonte +Diego +Hector +Jaylen +Malcolm +Miles +Oscar +Quinton +Roderick +Ross +Sheldon +Todd +Tristian +Zachariah +Blaine +Brad +Brenden +Brennan +Brenton +Brice +Corbin +Cristian +Dewayne +Donavan +Edgar +Emmanuel +Erick +Jaden +Jermaine +Julian +Julius +Lukas +Mackenzie +Martin +Mathew +Owen +Reginald +Reid +Roy +Terrell +Trent +Tristin +Troy +Wade +Alexis +Andres +Angel +Braeden +Briar +Brooks +Bruce +Clarence +Cortez +Coy +Craig +Damien +Damon +Daylon +Dayton +Demarcus +Deshawn +Deven +Dillion +Duncan +Franklin +Gerald +Harold +Jamie +Jarod +Jarrod +Javon +Jordon +Keenan +Kennedy +Kolton +Mario +Marvin +Miguel +Montrell +Nickolas +Rafael +Remington +Robin +Ruben +Shannon +Shelby +Simon +Tarik +Tracy +Tyrone +Abel +Aidan +Albert +Brendon +Britton +Cade +Clifton +Clint +Damion +Dangelo +Davis +Dean +Deangelo +Deion +Destin +Dominick +Everett +Frederick +Fredrick +Gerardo +Glen +Glenn +Howard +Jamison +Jasper +Jaylan +Johnnie +Kaden +Keegan +Kelvin +Kenan +Kristian +Madison +Marquez +Marquis +Maurice +Max +Mickey +Perry +Rashad +Rhett +Ricardo +Roberto +Roger +Sawyer +Sidney +Terrence +Turner +Tyree +Alvin +Arthur +Asa +Aubrey +Austyn +Braiden +Brennen +Britt +Brodie +Byron +Caden +Coby +Damian +Darrin +Darrius +Davion +Denver +Denzel +Deon +Donnie +Dustyn +Easton +Eduardo +Erik +Erin +Ezekiel +Fabian +Fernando +Freddie +Greyson +Gunnar +Haden +Jarvis +Jimmie +Jonas +Jorge +Judah +Karl +Keandre +Kenton +Keon +Keshun +Kirk +Kolby +Kyron +Leonard +Leroy +Louis +Malachi +Markus +Marlon +Maverick +Melvin +Nathanael +Oliver +Orlando +Peter +Quincy +Raul +Rodrick +Scotty +Sergio +Shaun +Steve +Stuart +Talon +Trevin +Trevion +Waylon +Zechariah +Jacob +Austin +Michael +Joshua +Christopher +Tyler +James +William +Matthew +Brandon +Hunter +John +Zachary +Nicholas +David +Dylan +Andrew +Justin +Jordan +Caleb +Ethan +Joseph +Cody +Jonathan +Robert +Logan +Dakota +Noah +Ryan +Dalton +Samuel +Christian +Aaron +Daniel +Kyle +Cameron +Anthony +Benjamin +Alexander +Devin +Thomas +Garrett +Nathan +Charles +Seth +Dustin +Blake +Trevor +Mason +Chase +Tanner +Colton +Alex +Jackson +Jared +Steven +Eric +Landon +Timothy +Tristan +Bradley +Cole +Adam +Jason +Clayton +Brian +Kaleb +Dillon +Kevin +Taylor +Hayden +Nathaniel +Patrick +Gabriel +Jeremy +Jesse +Luke +Connor +Gavin +Richard +Johnathan +Marcus +Elijah +Isaac +Shawn +Spencer +Grant +Ian +Mark +Wesley +Sean +Bryce +Kenneth +Lucas +Parker +Devon +Gregory +Stephen +Trenton +Darius +Peyton +Evan +Isaiah +Brett +Jeffrey +Jeremiah +Antonio +Cory +Wyatt +Brady +Bryan +Jose +Colby +Gage +Jack +Jake +Juan +Levi +Malik +Paul +Xavier +Billy +Chance +Chandler +Payton +Travis +Corey +Mitchell +Phillip +Jesus +Dallas +Luis +Trey +Braden +Preston +Shane +Bobby +Dawson +Donald +Drew +Ty +Alec +Collin +Curtis +Lane +Nickolas +Riley +Adrian +Bailey +Edward +Henry +Jalen +Jaylon +Jerry +Brayden +Carlos +Casey +Derek +George +Joel +Keaton +Keith +Troy +Zane +Allen +Carter +Jessie +Kobe +Larry +Scott +Tony +Tristen +Ashton +Carson +Colin +Johnathon +Angel +Braxton +Brent +Brock +Chad +Conner +Mathew +Skyler +Zackery +Braylon +Calvin +Carl +Colten +Derrick +Gary +Jarrett +Jimmy +Kameron +Kyler +Quinton +River +Trace +Triston +Brennan +Dennis +Harrison +Jakob +Joe +Max +Terry +Trent +Zachery +Zackary +Danny +Drake +Grayson +Griffin +Jaylen +Jeffery +Jorge +Lance +Micah +Ricky +Rodney +Tommy +Erik +Oscar +Alejandro +Brendan +Darren +Kristopher +Myles +Nicolas +Wade +Cade +Damon +Donovan +Douglas +Erick +Jarrod +Jon +Justice +Kody +Kolby +Ladarius +Lee +Maxwell +Walker +Andre +Bb +Blaine +Bryson +Byron +Dayton +Devonte +Eli +Harley +Jace +Jay +Jonathon +Kendall +Maurice +Raymond +Ricardo +Shelby +Vincent +Weston +Alan +Beau +Branden +Brody +Demetrius +Easton +Heath +Jaquan +Jonah +Kaylon +Kendrick +Lawrence +Micheal +Morgan +Quentin +Randall +Reece +Reginald +Ronald +Skylar +Tevin +Toby +Tristian +Victor +Alexis +Braydon +Brenden +Bruce +Clinton +Corbin +Damian +Dominic +Donnie +Dusty +Eduardo +Frederick +Jamie +Jarod +Jaron +Johnny +Kelvin +Mario +Martin +Miguel +Omar +Peter +Rhett +Ross +Russell +Sheldon +Terrance +Walter +Aidan +Austen +Avery +Brice +Camron +Cooper +Cordell +Cortez +Darian +Darion +Darrell +Deandre +Desmond +Devan +Dewayne +Dillan +Donavan +Donte +Edwin +Francisco +Holden +Ivan +Jackie +Jayden +Jaylin +Jordon +Josiah +Julian +Juwan +Kaden +Keshawn +Kylan +Layne +Malachi +Malcolm +Manuel +Marquise +Marshall +Nathanael +Orlando +Philip +Randy +Reid +Ronnie +Sergio +Terrell +Trevon +Tyree +Will +Aiden +Armando +Brad +Craig +Dante +Darrius +Demarcus +Destin +Devontae +Dexter +Emmanuel +Fernando +Franklin +Gerald +Gunner +Harold +Isiah +Ismael +Jamarcus +Jayson +Jerome +Khalil +Kolton +Lathan +Marvin +Melvin +Nelson +Roberto +Sam +Stone +Tracy +Trevion +Tucker +Warren +Waylon +Willie +Wilson +Albert +Alvin +Asa +Bo +Bryant +Brycen +Caden +Carlton +Cesar +Clay +Coby +Damion +Davion +Davis +De +Demarco +Deondre +Dillion +Dominick +Dylon +Eddie +Edgar +Elias +Everett +Frank +Freddy +Glenn +Greyson +Gunnar +Houston +Jaime +Jalin +Jalon +Jamal +Jamar +Jaret +Jarvis +Jasper +Javier +Jody +Jonas +Julio +Justus +Justyn +Kadarius +Kalen +Kane +Kelton +Kenny +Kirby +Koby +Landen +Mackenzie +Madison +Marc +Markus +Marquis +Miles +Paris +Reagan +Reese +Remington +Rickey +Sawyer +Sidney +Simon +Solomon +Todd +Tristin +Tyson +Wayne +Zachariah +Jacob +William +Matthew +Austin +Michael +Joshua +Christopher +Tyler +Hunter +James +Brandon +Zachary +Andrew +John +Dylan +Joseph +David +Nicholas +Jonathan +Justin +Logan +Caleb +Jordan +Robert +Ethan +Noah +Cody +Ryan +Daniel +Christian +Cameron +Dakota +Samuel +Seth +Aaron +Dalton +Anthony +Kyle +Charles +Blake +Benjamin +Timothy +Garrett +Alexander +Jason +Nathan +Tanner +Hayden +Jackson +Colton +Alex +Eric +Steven +Thomas +Mason +Nathaniel +Spencer +Trevor +Adam +Chase +Kevin +Luke +Devin +Dustin +Taylor +Landon +Jared +Isaac +Jose +Bradley +Jesse +Clayton +Elijah +Tristan +Cole +Juan +Richard +Trenton +Jeremy +Kenneth +Gabriel +Isaiah +Patrick +Dawson +Connor +Dillon +Braden +Parker +Brian +Bryan +Travis +Trey +Antonio +Evan +Jeremiah +Lucas +Chandler +Carlos +Ian +Jeffrey +Levi +Adrian +Johnathan +Preston +Brayden +Kaleb +Peyton +Devon +Stephen +Marcus +Ty +Carson +Derek +Payton +Sean +Chance +Corey +Grant +Phillip +Shawn +Bryce +Colby +Jack +Luis +Cory +Darius +Gary +Jerry +Paul +Casey +Gavin +Wesley +Wyatt +Xavier +Brett +Gregory +Jake +Jalen +Jeffery +Johnny +Mitchell +Allen +Drake +Mark +Raymond +Skyler +Zackary +Alec +Billy +Kyler +Trent +Bailey +Brendan +Conner +Gage +Keith +Scott +Zackery +Alejandro +Ashton +Collin +Drew +Henry +Jaylon +Jimmy +Lane +Malik +Zane +Bobby +Corbin +Shane +Alexis +Dallas +Rodney +Victor +Avery +Cade +Derrick +Donald +Gunner +Harrison +Jesus +Keaton +Riley +Terry +Brady +Braxton +Braylon +Brent +Bryson +Zachery +Brennan +Brody +Edward +Jayden +Jon +Josiah +Kobe +Maxwell +Quinton +Tyrese +Weston +Carl +Dennis +Javier +Joel +Lance +Larry +Quentin +Trevon +Angel +Jaden +Jessie +Johnathon +Jonathon +Julian +Kameron +Micheal +Nathanael +Skylar +Walter +Calvin +Chad +Curtis +Donovan +Eli +Harley +Jaylen +Max +Miguel +Morgan +Reece +Tommy +Tucker +Andre +Danny +George +Jay +Kody +Malachi +Mathew +Micah +Ricky +Russell +Vincent +Caden +Camron +Cedric +Clay +Colin +Cooper +Deandre +Devan +Dominic +Erick +Fredrick +Grayson +Ivan +Jace +Jarrod +Miles +Ronald +Ronnie +Roy +Tony +Tristen +Zion +Alan +Brenden +Brock +Carter +Edgar +Eduardo +Emmanuel +Erik +Isiah +Jarred +Joe +Kristopher +Randy +Reid +Remington +Sebastian +Toby +Troy +Baby +Barrett +Blaine +Darrell +Desmond +Deven +Eddie +Fernando +Graham +Heath +Issac +Jaylin +Kaden +Kendall +Kendrick +Kolton +Lukas +Marshall +Martin +Oscar +Owen +Peter +Randall +River +Shelby +Tristin +Triston +Aidan +Arthur +Austyn +Demetrius +Francisco +Griffin +Jackie +Jamal +Javion +Jermaine +Jonah +Khalil +Kolby +Kylan +Lee +Markel +Marlon +Nickolas +Nicolas +Omar +Rickey +Shannon +Terrell +Terrence +Tyree +Wade +Walker +Willie +Albert +Alberto +Braeden +Brendon +Camden +Coby +Coleman +Cornelius +Craig +Cristian +Davis +Donavon +Douglas +Easton +Ezekiel +Frederick +Houston +Jamar +Jaron +Jarrett +Jaylan +Jayson +Joey +Kelvin +Layne +Lewis +Malcolm +Mateo +Nelson +Nikolas +Ray +Sawyer +Stanley +Todd +Trace +Tyrone +Wilson +Alvin +Andres +Bo +Braydon +Clifton +Colten +Courtney +Dale +Damian +Darian +Darren +Deshawn +Destin +Donavan +Doyle +Dyllan +Edwin +Gerald +Greyson +Jarod +Jarvis +Jorge +Justice +Kade +Kentrell +Keshawn +Ladarius +Landen +Layton +Louis +Madison +Marquis +Melvin +Myles +Pedro +Philip +Quincy +Reed +Reginald +Roberto +Roger +Sammy +Sheldon +Turner +Will +Abraham +Andy +Bb +Beau +Braylen +Britton +Broderick +Brooks +Bruce +Chauncey +Chaz +Clifford +Colt +Cortez +Darnell +Daylon +Demarcus +Dexter +Dillion +Donte +Dusty +Emanuel +Fabian +Garrison +Gerardo +Guy +Harold +Ismael +Jaime +Jamarius +Jasper +Javeon +Josue +Julius +Kalen +Keegan +Kevon +Korbin +Kurt +Lawson +Liam +London +Marco +Mario +Marquez +Marquise +Marvin +Maurice +Montana +Paxton +Perry +Ricardo +Talon +Terrance +Travon +Treveon +Tristian +Trysten +Tyson +Warren +Wayne +Jacob +William +Michael +Joshua +Christopher +Hunter +Brandon +Austin +James +Tyler +Ethan +Matthew +John +Zachary +Justin +Nicholas +Christian +Caleb +Dylan +Joseph +Andrew +Logan +David +Jonathan +Jordan +Cameron +Ryan +Dalton +Nathan +Samuel +Colton +Dakota +Robert +Daniel +Garrett +Noah +Aaron +Alexander +Seth +Cody +Jackson +Charles +Thomas +Benjamin +Anthony +Mason +Timothy +Blake +Jason +Kyle +Chase +Luke +Tanner +Trevor +Kevin +Devin +Gabriel +Elijah +Jared +Isaac +Alex +Eric +Cole +Hayden +Nathaniel +Jesse +Clayton +Isaiah +Steven +Brian +Bryce +Wesley +Kaleb +Patrick +Dustin +Gavin +Landon +Richard +Grant +Tristan +Dawson +Jose +Taylor +Braden +Johnathan +Parker +Dillon +Bradley +Lucas +Spencer +Stephen +Preston +Adam +Jeremy +Kenneth +Levi +Sean +Devon +Xavier +Carson +Chance +Mark +Peyton +Brayden +Corey +Evan +Juan +Marcus +Jack +Trenton +Connor +Gage +Gregory +Ian +Antonio +Chandler +Shawn +Brett +Jake +Payton +Travis +Bryan +Conner +Darius +Riley +Jeremiah +Adrian +Drake +Jaden +Jalen +Skyler +Brady +Jimmy +Luis +Wyatt +Jaylen +Oscar +Paul +Zackary +Derrick +Jaylon +Jeffrey +Kameron +Zane +Billy +Carlos +Colby +Drew +Harrison +Henry +Jace +Miguel +Terry +Trey +Alejandro +Bailey +Curtis +Jerry +Jonathon +Larry +Alec +Baby +Caden +Corbin +Dallas +Johnny +Lane +Malik +Shane +Ty +Braylon +Bryson +Cade +Kobe +Sebastian +Alan +Collin +Derek +Donald +Grayson +Jakob +Jesus +Julian +Keaton +Kristopher +Max +Ronald +Aidan +Alexis +Brendan +Eli +Gary +Jarrett +Nicolas +Phillip +Tony +Tucker +Weston +Zachery +Bb +Braxton +Brent +Carl +Carter +Donovan +Micah +Micheal +Morgan +Bobby +Brennan +Cedric +Francisco +Harley +Kevon +Martin +Maxwell +Tommy +Trent +Cory +Jayden +Joe +Joel +Jorge +Omar +Reginald +Vincent +Ashton +Brock +Chad +Houston +Johnathon +Jon +Jonah +Kaden +Kyler +Ricky +Tristen +Warren +Allen +Colin +Dante +Dominic +Eduardo +Edward +George +Josiah +Kolby +Owen +Ricardo +Ronnie +Scott +Brendon +Brody +Casey +Deandre +Dennis +Desmond +Frederick +Gerardo +Javier +Jaylan +Jeffery +Keith +Kolton +Kylan +Landen +Lawrence +Peter +Philip +Trevon +Walter +Zackery +Andre +Angel +Avery +Blaine +Clay +Danny +Davion +Diego +Douglas +Ezekiel +Fernando +Gunner +Isiah +Javon +Kelton +Kendall +Manuel +Mitchell +Nickolas +Quentin +Raymond +Reed +Skylar +Tate +Tyrese +Walker +Zachariah +Calvin +Camden +Clifton +Colten +Cristian +Erick +Franklin +Garret +Greyson +Jarvis +Jaylin +Josue +Kendrick +Lance +Lee +Quincy +Quinton +Simon +Barrett +Camron +Cayden +Coleman +Cooper +Demetrius +Deshawn +Devan +Eddie +Hector +Jamie +Jay +Kaylon +Koby +Kurt +Kyron +Liam +Malachi +Malcolm +Mario +Mathew +Miles +Montana +Nathanael +Perry +Ross +Tristin +Triston +Troy +Victor +Addison +Beau +Bennett +Branden +Brooks +Bruce +Cesar +Chris +Clinton +Damon +Darrell +Daylon +Dayton +Deon +Dewayne +Donnie +Dylon +Emmanuel +Enrique +Erik +Fabian +Garett +Harold +Israel +Jacoby +Jamal +Javion +Jaxon +Jordon +Justice +Keegan +Keyshawn +Kody +Louis +Markus +Marquis +Marshall +Marvin +Noel +Randy +Reid +Rickey +Rodney +Sergio +Shamar +Talon +Titus +Travon +Tyrell +Wade +Wayne +Andy +Braydon +Brenden +Coby +Colt +Courtney +Damien +Damion +Darian +Darion +Darren +Derick +Deven +Dillion +Dominique +Edgar +Ezra +Freddie +Geoffrey +Heath +Jaren +Jarod +Jessie +Justus +Karson +Kentrell +Lawson +Layton +Leonard +Marco +Maurice +Myles +Nolan +Quintin +Reece +Remington +River +Roderick +Rodrick +Roger +Roman +Russell +Rylan +Sawyer +Silas +Terrell +Trevion +Tristian +Tylan +Tyson +Zechariah +Zion +Abraham +Arthur +Benton +Blaze +Bo +Brad +Brayan +Brennen +Brennon +Bryant +Byron +Chaz +Clifford +Clint +Cortez +Craig +Damian +Daron +Davis +Demarcus +Denver +Dillan +Dwight +Earnest +Easton +Elias +Emanuel +Everett +Fredrick +Graham +Griffin +Issac +Ivan +Jackie +Jadon +Jarred +Jayson +Jericho +Kaiden +Kamryn +Kane +Ladarius +Lathan +Leo +Marc +Martavious +Neal +Nikolas +Paris +Pedro +Randall +Raul +Ray +Reagan +Roberto +Rodrigo +Roy +Shaun +Steve +Terrance +Todd +Trace +Wilson +Winston +Jacob +William +Joshua +Austin +Ethan +Hunter +Matthew +Christopher +Tyler +Michael +Zachary +John +James +Caleb +Nicholas +Dylan +Andrew +Brandon +Logan +Jonathan +Joseph +Christian +Daniel +Robert +David +Cameron +Justin +Noah +Jordan +Alexander +Samuel +Jackson +Mason +Hayden +Thomas +Nathan +Benjamin +Dalton +Seth +Aaron +Dakota +Elijah +Garrett +Cody +Anthony +Ryan +Colton +Kyle +Luke +Gavin +Blake +Devin +Jason +Charles +Gabriel +Carson +Timothy +Kevin +Landon +Steven +Connor +Eric +Kaleb +Chase +Evan +Jose +Isaac +Tanner +Nathaniel +Braden +Trevor +Isaiah +Colby +Juan +Jesse +Lucas +Trenton +Brayden +Patrick +Preston +Cole +Alex +Tristan +Brian +Bryce +Clayton +Richard +Ian +Jared +Payton +Sean +Wesley +Dustin +Marcus +Peyton +Adam +Jaden +Cade +Spencer +Dawson +Shawn +Xavier +Jesus +Johnathan +Levi +Parker +Jeremiah +Kenneth +Mark +Taylor +Chandler +Travis +Gage +Devon +Jack +Jeremy +Stephen +Wyatt +Brady +Adrian +Carter +Grant +Jake +Kobe +Bradley +Dillon +Bryan +Caden +Carlos +Derrick +Luis +Chance +Jakob +Kyler +Paul +Ty +Collin +Drake +Jayden +Malik +Trey +Billy +Braxton +Darius +Gregory +Harrison +Jaylen +Keaton +Ashton +Corbin +Corey +Eli +George +Jalen +Jerry +Lance +Phillip +Zackary +Johnny +Kameron +Miguel +Sebastian +Shane +Antonio +Bryson +Jaylon +Jimmy +Joel +Josiah +Riley +Trent +Brendan +Brett +Edward +Allen +Calvin +Conner +Drew +Eduardo +Henry +Lane +Larry +Malachi +Micah +Terry +Tristen +Alexis +Blaine +Brock +Dallas +Gary +Jeffrey +Julian +Maxwell +Scott +Chad +Cooper +Jeffery +Jessie +Keith +Skyler +Tony +Alec +Baby +Carl +Colin +Grayson +Jon +Jonah +Kaden +Marshall +Omar +Randy +Tommy +Weston +Zane +Avery +Bobby +Brent +Cory +Cristian +Erick +Miles +Morgan +Nicolas +Trevon +Victor +Alan +Andy +Braylon +Camron +Curtis +Hector +Kendall +Kolby +Ricky +Tucker +Vincent +Walker +Zachery +Aidan +Angel +Bailey +Brody +Bryant +Damien +Francisco +Harley +Israel +Jace +Jarod +Jorge +Kristopher +Mario +Micheal +Mitchell +Quentin +Reece +Ricardo +Tristin +Zion +Aiden +Andre +Brenden +Casey +Clay +Demarcus +Derek +Donald +Ivan +Joe +Keegan +Kylan +Nickolas +Quinton +Randall +Rhett +Skylar +Triston +Andres +Beau +Diego +Dominic +Donovan +Douglas +Edgar +Gerardo +Jaxon +Jaylan +Jonathon +Landen +Manuel +Quincy +Roberto +Trace +Troy +Alejandro +Cesar +Damon +Davion +Gunner +Jamie +Javier +Johnathon +Kolton +Lee +Mathew +Max +Myles +Oscar +Peter +Philip +Ronald +Titus +Travon +Willie +Zackery +Ahmad +Asa +Braydon +Brendon +Brooks +Bruce +Danny +Darren +Davis +Dayton +Donavan +Easton +Giovanni +Glenn +Graham +Houston +Jay +Jayce +Jaylin +Jayson +Keagan +Kendrick +Lawson +Liam +Lukas +Martin +Pedro +Raymond +Reginald +Rodney +Trevion +Tyrese +Warren +Alberto +Armando +Barrett +Blaze +Braeden +Colten +Damian +Darrell +Dedrick +Devan +Deven +Dominick +Edwin +Frederick +Gerald +Griffin +Gunnar +Jaiden +Jarrett +Javion +Jaxson +Jett +Julio +Julius +Kade +Kelton +Kenny +Leighton +Louis +Marc +Marquis +Marvin +Nathanael +Owen +Rafael +Remington +Ross +Sergio +Shannon +Tylor +Uriel +Will +Zachariah +Adolfo +Arturo +Benton +Byron +Cayden +Cedric +Cornelius +Cortez +Cruz +Damion +Dante +Darion +Darnell +Daylan +Deandre +Desmond +Destin +Devonte +Dillion +Donte +Dorian +Eddie +Emmanuel +Ezekiel +Fernando +Garret +Issac +Jagger +Jaheim +Jakobe +Jamal +Jarred +Jarrod +Jarvis +Jasper +Kadin +Kason +Koby +Kyron +Marcos +Nikolas +Nolan +Reid +River +Sammy +Saul +Silas +Simon +Solomon +Steve +Terrance +Terrell +Wilson +Abraham +Alfredo +Alvin +Augustus +Axel +Ayden +Baylor +Bennett +Braiden +Branden +Brennen +Briar +Clifton +Coleman +Cordell +Craig +Dalen +Darian +Darrius +Darwin +Dennis +Deonte +Dewayne +Dexter +Dillan +Draven +Elias +Emanuel +Enrique +Fabian +Fisher +Frank +Fredrick +Garrison +Guillermo +Gustavo +Harold +Heath +Jacoby +Jade +Jaime +Jairo +Jerome +Joey +Josue +Justice +Kaiden +Kale +Keon +Keyshawn +Kody +Kole +Latrell +Lorenzo +Marco +Maurice +Montana +Montrell +Oliver +Pierce +Presley +Quinn +Ray +Reed +Roy +Russell +Rylan +Sawyer +Stanley +Stetson +Stone +Theodore +Travion +Wade +Jacob +Ethan +William +Caleb +Joshua +Christopher +Matthew +Hunter +James +Austin +Michael +John +Tyler +Brandon +Logan +Christian +Andrew +Dylan +Zachary +David +Jonathan +Alexander +Joseph +Jordan +Jackson +Robert +Nicholas +Noah +Ryan +Nathan +Samuel +Elijah +Benjamin +Daniel +Justin +Anthony +Cameron +Dakota +Cody +Hayden +Seth +Gabriel +Mason +Luke +Garrett +Aaron +Colton +Gavin +Dalton +Kyle +Timothy +Blake +Thomas +Connor +Alex +Isaac +Kaleb +Charles +Landon +Jason +Carson +Devin +Jose +Chase +Kevin +Brayden +Isaiah +Juan +Nathaniel +Eric +Tanner +Jeremiah +Steven +Tristan +Trevor +Braden +Carlos +Cole +Jared +Levi +Adam +Clayton +Evan +Ian +Jesse +Bryan +Bryce +Gage +Jack +Peyton +Wyatt +Richard +Antonio +Riley +Jaden +Lucas +Luis +Stephen +Bradley +Colby +Grant +Jayden +Parker +Preston +Kaden +Kenneth +Brian +Devon +Carter +Dawson +Sean +Trenton +Angel +Marcus +Spencer +Caden +Chance +Eli +Kobe +Xavier +Adrian +Ashton +Jake +Jesus +Cade +Chandler +Payton +Cooper +Dustin +Johnathan +Taylor +Drake +Johnny +Dillon +Jeremy +Sebastian +Shawn +Collin +Derek +Phillip +Bobby +Brady +Conner +Grayson +Harrison +Aidan +Corbin +Henry +Mark +Micah +Billy +Keith +Lance +Patrick +Brendan +Derrick +Jaxon +Malachi +Skyler +Wesley +Aiden +Dallas +Edward +Erick +George +Jace +Jaylon +Ty +Zane +Alan +Braylon +Jimmy +Larry +Mitchell +Shane +Bryson +Edgar +Jakob +Jaylen +Lane +Trent +Trey +Tristen +Alejandro +Jalen +Joel +Josiah +Julian +Kade +Keaton +Kristopher +Malik +Scott +Colin +Corey +Cory +Diego +Dominic +Donovan +Gregory +Jessie +Kyler +Paul +Victor +Zachery +Brock +Easton +Gary +Ivan +Jerry +Jonathon +Miguel +Miles +Oscar +Travis +Weston +Blaine +Braxton +Brett +Damien +Darius +Drew +Harley +Jagger +Jeffrey +Jonah +Kameron +Kody +Owen +Raymond +Rodney +Zackary +Beau +Carl +Danny +Dayton +Donald +Eduardo +Gunner +Keegan +Kendall +Layton +Ronald +Vincent +Zackery +Brody +Camron +Charlie +Cristian +Douglas +Fernando +Giovanni +Griffin +Jay +Jeffery +Landen +Mario +Omarion +Rhett +Alexis +Allen +Avery +Baby +Calvin +Cesar +Coby +Jayce +Justice +Martin +Marvin +Nicolas +Reginald +Ronnie +Ross +Terry +Walter +Zion +Damian +Edwin +Elias +Erik +Francisco +Holden +Jaylin +Jorge +Marshall +Mathew +Nickolas +Randy +Ricky +Sergio +Toby +Tommy +Trace +Willie +Andres +Brennan +Cedric +Devan +Dominick +Elisha +Jamal +Jasper +Joe +Johnathon +Jon +Kylan +Lawson +Maxwell +Micheal +Myles +Omar +Remington +River +Roger +Russell +Simon +Skylar +Tavion +Tevin +Tony +Tristin +Triston +Ahmad +Asher +Bailey +Bo +Braiden +Braydon +Brent +Bryant +Byron +Cayden +Cornelius +Craig +Curtis +Darren +Eddie +Gunnar +Hector +Jamie +Javier +Jayson +Kaiden +Kelton +Kolton +Lukas +Marco +Marquis +Max +Melvin +Philip +Quinton +Reid +Ricardo +Salvador +Sawyer +Terrance +Tucker +Wilson +Zachariah +Andre +Andy +Asa +Ayden +Brenden +Casey +Damon +Dante +Demetrius +Donavan +Emmanuel +Enrique +Frank +Garret +Isiah +Jaydon +Jaylan +Jerome +Jett +Josue +Kadin +Kason +Kendrick +Layne +Lee +Rafael +Reece +Trevion +Troy +Warren +Waylon +Alec +Ben +Blayne +Braeden +Braylen +Brooks +Clifton +Dax +Devonte +Dylon +Earl +Ezekiel +Fabian +Fredrick +Garrison +Greyson +Heath +Jaheim +Jarrett +Jarvis +Javian +Kamron +Kelvin +Kevon +Nathanael +Orion +Quentin +Quincy +Rashad +Reese +Roberto +Roderick +Sidney +Stanley +Talon +Tate +Trevon +Tyrese +Walker +Abraham +Albert +Armando +Arthur +Austyn +Blaze +Brad +Brendon +Bret +Caiden +Camden +Camren +Cannon +Chad +Chris +Clarence +Clay +Coleman +Coleton +Colten +Courtney +Cullen +Damion +Dane +Daquan +Darrius +Davin +Daylan +Daylon +Deandre +Desmond +Deven +Elliott +Franklin +Gaven +Gerardo +Grady +Gustavo +Hayes +Ismael +Israel +Issac +Jadon +Jahiem +Jair +Jalon +Jamison +Jaquan +Jaxson +Jeb +Jefferson +Jordon +Kai +Kane +Kenny +Keon +Kevion +Kolby +Kylin +Lamont +Lathan +Lawrence +Leonardo +Liam +Malcolm +Markell +Mauricio +Maximus +Moises +Morgan +Oliver +Orlando +Pedro +Ramiro +Randall +Raul +Ruben +Shamar +Shaun +Sky +Sonny +Terrell +Treyton +Wade +Will +Xander +Zander +Jacob +Joshua +Ethan +William +Michael +Caleb +John +Christopher +Matthew +James +Andrew +Logan +Tyler +Hunter +Dylan +Austin +Christian +Joseph +Samuel +Zachary +David +Jackson +Noah +Brandon +Jonathan +Jordan +Anthony +Nicholas +Hayden +Cameron +Landon +Gavin +Robert +Alexander +Justin +Luke +Ryan +Daniel +Connor +Nathan +Benjamin +Elijah +Gabriel +Mason +Brayden +Seth +Isaac +Thomas +Aaron +Kevin +Cody +Evan +Charles +Blake +Jason +Colton +Dakota +Timothy +Dalton +Caden +Garrett +Jesse +Alex +Ashton +Carson +Eric +Trenton +Ian +Jeremiah +Kaleb +Steven +Devin +Brian +Nathaniel +Jayden +Jose +Tristan +Aidan +Clayton +Isaiah +Parker +Chase +Gage +Lucas +Bryan +Kyle +Cole +Jaden +Tanner +Trevor +Kaden +Braden +Carter +Preston +Dillon +Eli +Jack +Jared +Adrian +Cooper +Dustin +Zane +Bradley +Bryce +Levi +Sean +Ty +Aiden +Jake +Jesus +Lane +Adam +Juan +Stephen +Wesley +Angel +Kenneth +Richard +Wyatt +Conner +Johnathan +Brady +Spencer +Antonio +Braxton +Colby +Devon +Luis +Micah +Xavier +Collin +Grant +Patrick +Chandler +George +Harrison +Jeremy +Malachi +Owen +Taylor +Bryson +Cade +Carlos +Dawson +Riley +Shawn +Landen +Skyler +Chance +Colin +Miguel +Peyton +Trey +Gregory +Jalen +Jaxon +Travis +Jonah +Jorge +Corey +Jaylon +Jeffrey +Jimmy +Mark +Payton +Brock +Dominic +Jerry +Nicolas +Brett +Diego +Grayson +Gunner +Sebastian +Billy +Brody +Casey +Derrick +Henry +Kameron +Kobe +Marcus +Weston +Corbin +Donald +Easton +Ivan +Jace +Joel +Max +Paul +Victor +Alejandro +Avery +Cayden +Drake +Julian +Mario +Scott +Skylar +Allen +Baby +Haden +Jaylen +Joe +Josiah +Kyler +Marco +Miles +Mitchell +Trent +Zachery +Zackary +Alan +Blaine +Brennan +Curtis +Derek +Donovan +Edward +Gary +Johnny +Kamron +Lawson +Rodney +Shane +Xander +Zander +Aden +Alec +Bobby +Braylon +Brenden +Edgar +Eduardo +Emmanuel +Harley +Jakob +Jarrett +Lance +Phillip +Randy +Raymond +Reece +Ricky +Trace +Beau +Cedric +Cristian +Damien +Danny +Darius +Erik +Keegan +Keith +Larry +Ayden +Calvin +Camden +Camron +Cesar +Cory +Davis +Jamal +Jayce +Jeffery +Kade +Keaton +Kristopher +Layton +Mathew +Omar +Oscar +River +Ronald +Russell +Terry +Braydon +Carl +Damian +Dante +Dayton +Drew +Edwin +Fernando +Jon +Kayden +Malik +Myles +Quinton +Tristen +Tucker +Alexis +Andy +Asher +Bailey +Bryant +Dallas +Francisco +Hector +Javion +Jaxson +Jayson +Jessie +Keenan +Kendrick +Liam +Sawyer +Terrance +Tyrone +Abraham +Andre +Brooks +Chad +Clay +Damon +Davion +Douglas +Eddie +Enrique +Erick +Giovanni +Jagger +Javier +Jaylin +Jett +Jonathon +Kylan +Marshall +Maxwell +Micheal +Quentin +Reginald +Tate +Tony +Tristin +Triston +Vincent +Wade +Wilson +Zachariah +Adolfo +Brendan +Dale +Dennis +Deven +Dominick +Fisher +Johnathon +Josue +Kaiden +Louis +Nickolas +Roman +Ronnie +Tyrese +Walker +Walter +Addison +Barrett +Braeden +Braiden +Brennen +Demarcus +Devan +Dewayne +Draven +Fabian +Frank +Grady +Heath +Houston +Jacobi +Jaiden +Jaime +Jamari +Kadin +Kannon +Kendall +Kolby +Kolton +Kristian +Leonardo +Marquis +Maurice +Mauricio +Moises +Omarion +Pablo +Pedro +Randall +Reese +Remington +Ruben +Sergio +Shannon +Titus +Tommy +Yahir +Zackery +Andres +Antoine +Armando +Asa +Brendon +Brice +Cason +Charlie +Clinton +Coby +Coleman +Daylan +Dillion +Elisha +Gerardo +Gustavo +Isai +Israel +Issac +Jadon +Jakobe +Jalon +Jamarion +Jase +Jaydon +Jaylan +Jude +Justice +Kai +Kelton +Kenyon +Layne +Lewis +Manuel +Memphis +Morgan +Nathanael +Orlando +Osvaldo +Quinn +Rafael +Raul +Reed +Reid +Rhett +Roberto +Ross +Royce +Rylan +Saul +Simon +Toby +Trevon +Tyron +Uriel +Waylon +Wayne +Alexzander +Amarion +Axel +Barry +Braylen +Brenton +Caiden +Clint +Cristopher +Darrell +Daxton +Daylon +Dean +Declan +Dominique +Dontavious +Elliott +Emanuel +Ernest +Felix +Franklin +Frederick +Garrison +Gaven +Greyson +Hugo +Jadyn +Jaheim +Jair +Jamarius +Jamie +Jamison +Javen +Jermaine +Joey +Julio +Julius +Kane +Keshawn +Kohl +Lee +Leo +Leroy +Marc +Martin +Moses +Nelson +Paxton +Pierce +Rolando +Shaun +Shelby +Silas +Stefan +Terrence +Tyson +Willie +Zeke +Jacob +William +Ethan +Joshua +Michael +James +Hunter +Matthew +Tyler +Andrew +Christopher +Logan +Caleb +John +Joseph +Austin +Landon +Brandon +Daniel +Jackson +David +Dylan +Samuel +Elijah +Robert +Zachary +Christian +Hayden +Nathan +Ryan +Justin +Cameron +Noah +Anthony +Mason +Jordan +Alexander +Jonathan +Nicholas +Benjamin +Gavin +Evan +Charles +Connor +Dakota +Aaron +Brayden +Gabriel +Luke +Isaac +Jose +Thomas +Jason +Jesse +Ashton +Cody +Seth +Jayden +Jeremiah +Caden +Kaden +Blake +Nathaniel +Alex +Kaleb +Kevin +Dalton +Aidan +Carson +Colton +Garrett +Isaiah +Wyatt +Eric +Devin +Chase +Aiden +Lucas +Tristan +Braden +Juan +Steven +Timothy +Jaden +Conner +Tanner +Braxton +Clayton +Eli +Brady +Ian +Levi +Brian +Cole +Dawson +Peyton +Malachi +Preston +Angel +Carter +Colby +Owen +Parker +Bryan +Cooper +Trevor +Bryce +Adam +Cade +Jack +Luis +Chandler +Jesus +Marcus +Payton +Skyler +Taylor +Adrian +Kyle +Kyler +Landen +Riley +Trenton +Grant +Spencer +Carlos +Colin +Kenneth +Ty +Micah +Stephen +Xavier +Bryson +Henry +Jared +Jimmy +Johnathan +Patrick +Wesley +Gage +Travis +Antonio +Devon +George +Jake +Jeremy +Jaxon +Lane +Richard +Alexis +Drake +Ayden +Dustin +Zander +Corbin +Grayson +Jace +Paul +Dillon +Jaylen +Josiah +Trey +Victor +Collin +Sebastian +Allen +Braylon +Jaylon +Joel +Shawn +Zane +Avery +Brett +Oscar +Alan +Bradley +Chance +Dominic +Jalen +Baby +Damian +Diego +Easton +Ivan +Shane +Xander +Alejandro +Bobby +Damien +Johnny +Jorge +Miguel +Miles +Morgan +Phillip +Sean +Brock +Calvin +Derek +Derrick +Edward +Gregory +Jerry +Julian +Keith +Mario +Terry +Weston +Braydon +Brody +Camron +Corey +Cristian +Donovan +Erick +Gunner +Kameron +Keaton +Lance +Mark +Trace +Triston +Troy +Beau +Cayden +Dayton +Donald +Francisco +Jonah +Maddox +Ronald +Bryant +Drew +Ezekiel +Harrison +Josue +Reece +Ricky +Skylar +Tristen +Andy +Brenden +Camden +Cesar +Dallas +Darius +Davion +Hudson +Jakob +Jamarion +Javion +Jaxson +Jessie +Kade +Keegan +Max +River +Ronnie +Sawyer +Zackary +Aden +Brooks +Edwin +Jon +Kendrick +Kristopher +Nicolas +Omarion +Raymond +Ryder +Tucker +Vincent +Asher +Billy +Curtis +Davis +Edgar +Erik +Fernando +Gustavo +Harley +Jakobe +Javier +Jeffrey +Jonathon +Kaiden +Manuel +Nickolas +Russell +Sergio +Tony +Waylon +Blaine +Brendan +Chad +Coby +Jaiden +Jamal +Jeffery +Jett +Kobe +Kody +Micheal +Mitchell +Pedro +Raul +Rhett +Scott +Tate +Trevon +Tyson +Asa +Brayan +Brendon +Brennan +Carl +Casey +Charlie +Enrique +Gary +Gerardo +Griffin +Holden +Jay +Kayden +Keshawn +Larry +Lee +Liam +Mathew +Nikolas +Orlando +Philip +Reese +Ricardo +Silas +Simon +Tristin +Walker +Wilson +Adan +Alec +Andre +Bennett +Brice +Coleman +Colten +Cornelius +Daylon +Demetrius +Dennis +Eduardo +Elias +Emmanuel +Greyson +Hector +Houston +Israel +Jarrett +Jude +Kamron +Keenan +Kolton +Lawson +Marcos +Oliver +Pablo +Phoenix +Pierce +Quentin +Roberto +Roderick +Roy +Terrance +Trent +Walter +Zackery +Amarion +Andres +Arthur +Bo +Brent +Briar +Cedric +Cory +Dominick +Frederick +Gavyn +Haden +Jamie +Jase +Justice +Kendall +Kolby +Kylan +Kyron +Lathan +Layton +Leonel +Lukas +Malik +Marquis +Marshall +Maurice +Maxwell +Omar +Peter +Quincy +Randall +Randy +Ross +Rylan +Tommy +Trevion +Warren +Willie +Abraham +Agustin +Albert +Alexzander +Braeden +Braiden +Brodie +Brycen +Byron +Cash +Cason +Chris +Devan +Dewayne +Elisha +Elliot +Ely +Emanuel +Ezra +Fabian +Gauge +Giovanni +Issac +Jabari +Jagger +Jamari +Javon +Jayce +Jaylin +Julius +Kanye +Kelvin +Lewis +Lincoln +Marques +Marvin +Nathanael +Paxton +Reginald +Remington +Rodney +Solomon +Tobias +Wade +Zachery +Zion +Alvin +Anderson +Armando +Axel +Aydan +Bailey +Bowen +Brandan +Brant +Braylan +Brennen +Briley +Bruce +Caiden +Clark +Clay +Coy +Cyrus +Dagan +Damon +Danny +Darrell +Darren +Demarcus +Desmond +Dusty +Ean +Floyd +Fredrick +Graham +Harold +Jaheim +Jamarian +Jameson +Jayvion +Joey +Johnathon +Jordon +Kadin +Karson +Kelton +Kenny +Khalil +Koby +Konnor +Kristian +Lawrence +Layne +Leonardo +Louis +Marlon +Martin +Mateo +Nate +Nelson +Quinton +Reed +Roman +Rowdy +Ruben +Rylee +Sam +Santiago +Shamar +Shannon +Sullivan +Theodore +Titus +Treveon +Tyree +Tyrone +Uriel +Yahir +Ethan +William +Jacob +Joshua +James +Michael +Caleb +Christopher +Tyler +Logan +Noah +Matthew +John +Hunter +Landon +Austin +David +Andrew +Joseph +Jackson +Elijah +Mason +Hayden +Samuel +Jonathan +Gabriel +Christian +Alexander +Brandon +Dylan +Anthony +Daniel +Benjamin +Nicholas +Ryan +Gavin +Justin +Brayden +Jordan +Robert +Connor +Jayden +Nathan +Evan +Zachary +Caden +Ashton +Luke +Aaron +Charles +Aiden +Cameron +Thomas +Jose +Kevin +Isaac +Dakota +Seth +Jesse +Parker +Colton +Dalton +Cody +Kaden +Peyton +Blake +Carson +Conner +Ian +Aidan +Alex +Jeremiah +Isaiah +Carter +Jason +Cooper +Cole +Juan +Adrian +Angel +Devin +Jack +Lucas +Jaden +Riley +Wyatt +Braden +Timothy +Eric +Levi +Chase +Eli +Garrett +Adam +Bryce +Devon +Kaleb +Kyle +Luis +Tristan +Dawson +Bryan +Nathaniel +Braxton +Kenneth +Trenton +Brian +Carlos +Jake +Jaxon +Jeremy +Ty +Gage +Jesus +Steven +Wesley +Landen +Richard +Owen +Antonio +Brady +Harrison +Spencer +Ayden +Clayton +Payton +Preston +Tanner +Trevor +Bradley +Cayden +Drake +Marcus +Travis +Henry +Sean +Chance +Bryson +Ivan +Jared +Taylor +Zane +Colin +Diego +Dillon +Jaylen +Lane +Mark +Shawn +Braylon +Collin +Micah +Alan +Colby +Corey +Jimmy +Jonah +Kyler +Patrick +Victor +Alejandro +Chandler +Jace +Johnathan +Jorge +Julian +Dominic +Miguel +Xavier +Grant +Grayson +Hudson +Jeffrey +Josiah +Shane +Brett +Edward +Kameron +Malachi +Paul +Baby +Corbin +Jamarion +Maddox +Oscar +Xander +Allen +Andy +Avery +Cade +Kaiden +Keaton +Lance +Manuel +Max +Skyler +Tommy +Tucker +Derrick +Jaylon +Jessie +Larry +Asher +Beau +Braydon +Brock +Damien +Drew +Dustin +Edgar +Gary +Jerry +Kayden +Nicolas +Phillip +Rylan +Sebastian +Aden +Camden +Carl +Cesar +Easton +Eduardo +Fernando +Gregory +Jon +Keegan +Omar +Triston +Weston +Alexis +Andres +Blaine +Camron +Francisco +George +Jude +Kylan +Mario +Maxwell +Micheal +Mitchell +Morgan +Stephen +Vincent +Warren +Addison +Billy +Brenden +Dennis +Donovan +Eddie +Erik +Hector +Jaxson +Johnny +Jonathon +Malik +Trey +Bobby +Calvin +Cristian +Dallas +Danny +Donald +Edwin +Emmanuel +Griffin +Gunner +Jaiden +Jaime +Kendall +Omarion +Randy +Ricardo +Sawyer +Sergio +Skylar +Terry +Andre +Braeden +Braylen +Gustavo +Julio +Justice +Melvin +Oliver +Pablo +Raymond +Reece +River +Roberto +Silas +Talon +Terrance +Troy +Zachery +Zackery +Abraham +Armando +Bennett +Bo +Brennan +Brody +Damian +Demarion +Greyson +Jalen +Javier +Jeffery +Joe +Johan +Karson +Keith +Kristian +Leonardo +Liam +Martin +Nickolas +Quentin +Simon +Trent +Walker +Wilson +Amarion +Asa +Braiden +Brice +Brodie +Brooks +Clinton +Davion +Derek +Dorian +Harley +Holden +Issac +Jakob +Javion +Johnathon +Kamron +Landyn +Lee +Marvin +Quinton +Rhett +Russell +Tristen +Tyson +Arturo +Bryant +Caiden +Cannon +Casey +Cason +Coby +Courtney +Damon +Elias +Erick +Gaven +Giovanni +Gunnar +Izaiah +Jarrett +Jase +Jay +Kade +Kadin +Kristopher +Lawson +Lukas +Marshall +Miles +Nolan +Pedro +Philip +Quincy +Rex +Ricky +Roger +Roy +Ruben +Tate +Walter +Waylon +Zachariah +Zander +Aydan +Barrett +Bentley +Brendan +Byron +Cash +Chad +Chris +Curtis +Darius +Darren +Daylon +Dayton +Devan +Emanuel +Ezekiel +Frank +Gerardo +Houston +Jasper +Kamarion +Kelvin +Kendrick +Kolby +Leo +Marcos +Myles +Nikolas +Remington +Rodney +Roman +Ronald +Ryder +Saul +Scott +Toby +Tony +Trace +Tristin +Will +Willie +Yahir +Zackary +Abram +Albert +Ben +Blayne +Canon +Clay +Coleman +Cornelius +Cory +Cruz +Damion +Darrell +Davis +Daxton +Denver +Dominick +Douglas +Draven +Fabian +Franklin +Hank +Isiah +Jabari +Jamison +Jax +Jaydon +Jaylin +Jayson +Jermaine +Jett +Joel +Jordon +Josue +Jovani +Judah +Kai +Keenan +Kenny +Kentrell +Kobe +Koby +Kody +Kolton +Korbin +Layne +London +Markell +Mathew +Maurice +Mauricio +Mekhi +Reagan +Reid +Ronnie +Rylee +Shamar +Shelby +Titus +Trevion +Tyrell +Uriel +Adan +Adian +Alexzander +Alfred +Allan +Amare +Anderson +Atticus +Axel +Bailey +Boston +Bradlee +Branson +Brant +Braylin +Briar +Bricen +Briley +Britton +Broderick +Bronson +Bruce +Brycen +Cedric +Charlie +Clark +Clifton +Colten +Dale +Damarion +Dashawn +Davin +Devlin +Earl +Emilio +Forrest +Frankie +Frederick +Garret +Guillermo +Irvin +Jadon +Jadyn +Jagger +Jamal +Jamar +Jameson +Joey +Jonas +Junior +Kalob +Kason +Kelton +Kenyon +Lamarcus +Lawrence +Marco +Nate +Noel +Paxton +Phoenix +Porter +Ross +Ryker +Shaun +Talan +Terrell +Todd +Tomas +Treyvon +Tylen +Westin +Zamarion +Zechariah +William +Ethan +Jacob +James +Landon +Joshua +Christopher +Caleb +Jackson +Logan +Matthew +John +Noah +Michael +Andrew +Elijah +David +Hayden +Mason +Christian +Aiden +Anthony +Austin +Hunter +Samuel +Alexander +Gavin +Daniel +Tyler +Zachary +Luke +Jonathan +Dylan +Joseph +Benjamin +Nicholas +Evan +Ryan +Brandon +Robert +Gabriel +Jordan +Cameron +Charles +Brayden +Nathan +Aaron +Jason +Justin +Carter +Dakota +Isaiah +Carson +Isaac +Jack +Jose +Peyton +Caden +Jayden +Thomas +Aidan +Connor +Kevin +Parker +Kaleb +Tristan +Kaden +Blake +Braxton +Jeremiah +Alex +Seth +Bryson +Cole +Angel +Braden +Eli +Lucas +Eric +Ashton +Chase +Cody +Luis +Bryce +Colton +Cooper +Conner +Owen +Steven +Wyatt +Adrian +Ayden +Jesse +Timothy +Jaden +Juan +Brian +Bryan +Dalton +Diego +Ian +Kyle +Levi +Nathaniel +Preston +Devin +Gage +Xavier +Grayson +Carlos +Jace +Trevor +Garrett +Maddox +Adam +Richard +Trenton +Antonio +Jaxon +Malachi +Jesus +Riley +Tanner +Bradley +Brady +Zane +Henry +Marcus +Sean +Wesley +Brody +Dawson +Clayton +Jared +Miguel +Julian +Lane +Stephen +Dustin +Grant +Landen +Spencer +Dominic +Johnathan +Ty +Victor +Braylon +Devon +Patrick +Payton +Travis +Erick +Kenneth +River +Sawyer +Corbin +Jake +Paul +Talan +Taylor +Aden +Kayden +Keegan +Micah +Rylan +Sebastian +Cade +Edwin +Ezekiel +Jaylen +Jeremy +Josiah +Mark +Oscar +Asher +Drake +Easton +Hudson +Jonah +Avery +Brennan +Cayden +Chandler +Colby +Colin +Derrick +Johnny +Shane +Trey +Alexis +Derek +Drew +Gary +Keaton +Kyler +Lance +Ronald +Xander +Alan +Dallas +Dillon +Edgar +Jeffrey +Max +Phillip +Gunner +Jaxson +Jude +Kaiden +Quinton +Shawn +Skyler +Tony +Tristen +Zander +Billy +Chance +Collin +Corey +Cristian +Edward +Gregory +Jaiden +Joel +Miles +Randy +Scott +Tucker +Brock +Cash +Damian +Damien +Danny +Donovan +George +Jalen +Jamarion +Joe +Josue +Layton +Liam +Maxwell +Reece +Alejandro +Bo +Bobby +Cesar +Davis +Eduardo +Erik +Jayce +Jeffery +Jimmy +Jorge +Manuel +Marco +Mitchell +Remington +Ricky +Blaine +Brendan +Chad +Enrique +Harrison +Ivan +Jonathon +Keith +Lawson +Oliver +Omar +Quentin +Reed +Trace +Trent +Triston +Andy +Beau +Brenden +Brett +Curtis +Fernando +Francisco +Jakob +Jasper +Jaylon +Jerry +Kameron +Kobe +Marshall +Rhett +Ricardo +Ryder +Terry +Vincent +Walker +Alec +Andres +Brayan +Braydon +Byron +Casey +Charlie +Darius +Darren +Dennis +Griffin +Javier +Javion +Jay +Jon +Kade +Kolby +Leland +Leonardo +Martin +Omarion +Simon +Tyson +Weston +Andre +Brodie +Brooks +Bruce +Caiden +Calvin +Camden +Cory +Donald +Emmanuel +Greyson +Israel +Issac +Jaydon +Jett +Justice +Kolton +Kristopher +Nolan +Peter +Raymond +Roberto +Rodrigo +Sergio +Tate +Tommy +Troy +Allen +Bradyn +Braylen +Brycen +Camron +Darrell +Dominick +Eddie +Elias +Harley +Jayson +Karson +Kylan +Larry +Layne +Lincoln +Lukas +Mario +Phoenix +Raul +Sam +Santiago +Silas +Talon +Warren +Bentley +Braeden +Brent +Cale +Cannon +Cason +Cruz +Dayton +Denver +Deshawn +Devonte +Ezra +Gael +Gustavo +Jaime +Jamie +Jase +Jessie +Jonas +Kamden +Kason +Konnor +Landyn +Nicolas +Pierce +Rashad +Roman +Ruben +Slade +Terrance +Tyrese +Walter +Waylon +Zachariah +Zachery +Abraham +Addison +Ahmad +Arthur +Boston +Chris +Clay +Clifton +Dante +Daxton +Demarcus +Dewayne +Douglas +Ethen +Gauge +Gibson +Heath +Hector +Holden +Ismael +Julio +Julius +Kai +Kelvin +Kendrick +Lee +Leonel +London +Malik +Mathew +Micheal +Nickolas +Rafael +Ray +Ronnie +Tavion +Zackary +Zechariah +Zion +Alvin +Armando +Case +Damion +Davion +Dean +Declan +Deshaun +Devan +Deven +Grady +Guy +Haden +Isiah +Jamarcus +Jamari +Jarrett +Johnathon +Kadin +Kale +Kane +Kelton +Kendall +Keshun +Korbin +Lawrence +Leon +Lewis +Marquis +Mauricio +Maximus +Moises +Morgan +Paxton +Philip +Reid +Rodney +Roy +Russell +Saul +Skylar +Solomon +Terrell +Theodore +Todd +Trevon +Tristin +Tyrone +Wade +Will +Willie +Zackery +Zayne +Abel +Ace +Adan +Alfredo +Ali +Angelo +Asa +Axel +Barrett +Bennett +Bradon +Branden +Brenton +Bryston +Carl +Cedric +Clark +Coby +Cohen +Coy +Damon +Deandre +Dorian +Elliott +Ellis +Emerson +Emmett +Felix +Garret +Graham +Harold +Houston +Howard +Jabari +Jacoby +Jadon +Jagger +Jamal +Jamar +Jaquan +Javan +Johan +Judah +Justus +Kamryn +Kasen +Koby +Kody +Kristian +Kurtis +Kyron +Lathan +Leighton +Maurice +Melvin +Nehemiah +Neil +Orlando +Pedro +Quinn +Randall +Reginald +Rickey +Roderick +Ryker +Semaj +Shannon +Shaun +Sonny +Sterling +Tevin +Toby +Tye +Wilson +Xavion +Xzavier +Zaid +William +Jacob +Ethan +Jackson +Christopher +James +Logan +Caleb +Landon +John +Joshua +Hunter +Michael +Hayden +Aiden +Andrew +Matthew +Noah +Alexander +Joseph +Tyler +Jayden +Mason +David +Christian +Elijah +Daniel +Gabriel +Samuel +Evan +Jonathan +Austin +Nicholas +Gavin +Robert +Brayden +Benjamin +Jordan +Ryan +Brandon +Isaac +Cameron +Dylan +Luke +Isaiah +Charles +Anthony +Kaden +Peyton +Nathan +Caden +Justin +Zachary +Kevin +Aaron +Carson +Colton +Cooper +Jose +Thomas +Blake +Jeremiah +Parker +Wyatt +Braxton +Jason +Lucas +Aidan +Alex +Kaleb +Braden +Carter +Jack +Chase +Levi +Owen +Jesse +Tristan +Angel +Connor +Dalton +Juan +Luis +Nathaniel +Ashton +Riley +Eric +Jaxon +Ian +Preston +Bryson +Kyle +Seth +Trenton +Bryce +Garrett +Carlos +Conner +Dakota +Eli +Jaden +Timothy +Cole +Richard +Adrian +Xavier +Devin +Steven +Brady +Brian +Cody +Adam +Ayden +Bryan +Maddox +Kayden +Landen +Miguel +Sean +Gunner +Jeremy +Wesley +Brody +Diego +Kenneth +Malachi +Taylor +Gage +Jace +Dawson +Hudson +Zane +Alan +Julian +Antonio +Grant +Henry +Shawn +Tanner +Bradley +Corbin +Grayson +Jesus +Josiah +Avery +Cayden +Jake +Kaiden +Weston +Dillon +Jaiden +Jerry +Marcus +Spencer +Victor +Asher +Chandler +Derrick +Jaylen +Lane +Oliver +Aden +Colby +Collin +Dominic +Micah +Braylon +Cash +Clayton +Johnathan +Payton +Trevor +Ty +Harrison +Ivan +Jude +Mark +Omar +Patrick +Paul +Sebastian +Travis +Braydon +Drake +Keegan +Rylan +Silas +Tucker +Chance +Corey +Eduardo +Edwin +Jimmy +Keaton +Kyler +Tristen +Zander +Sawyer +Dustin +Jaylon +Lawson +Max +Maxwell +Ryder +Stephen +Gary +George +Jaxson +Jorge +Layton +Malik +Oscar +Terry +Xander +Jalen +Jared +Liam +Randy +Alejandro +Alexis +Beau +Camden +Derek +Easton +Edward +Erick +Javier +Jeffrey +Joel +Johnny +Jonah +Josue +Keith +Kylan +Leonardo +Lincoln +Reece +River +Rodney +Tony +Andy +Billy +Brett +Brodie +Cade +Calvin +Colin +Damian +Devon +Emmanuel +Harley +Hector +Justice +Kade +Kingston +Lance +Larry +Miles +Paxton +Rhett +Scott +Tommy +Walker +Waylon +Andre +Brennan +Brock +Cesar +Dallas +Dominick +Drew +Edgar +Emanuel +Erik +Ezekiel +Fernando +Jamari +Kameron +Layne +Skyler +Trent +Tristin +Troy +Tyson +Anderson +Bobby +Caiden +Casey +Danny +Douglas +Gerardo +Israel +Jamarion +Jessie +Kolby +Kristopher +Morgan +Nicolas +Reese +Ricardo +Tate +Vincent +Abraham +Allen +Andres +Bentley +Bo +Braiden +Braylen +Colt +Cristian +Damien +Deshawn +Donald +Donovan +Elias +Francisco +Grady +Gregory +Jase +Javion +Jaylan +Johnathon +Jonathon +Marshall +Phillip +Ricky +Toby +Trey +Brent +Brooks +Bruce +Cohen +Curtis +Dayton +Giovanni +Griffin +Harold +Heath +Holden +Jeffery +Jett +Jon +Karson +Leland +Manuel +Mitchell +Nickolas +Quinton +Santiago +Talon +Terrance +Zechariah +Axel +Bennett +Blaine +Bryant +Carl +Darius +Davis +Emilio +Gavyn +Hugo +Jaydon +Joe +Jonas +Kobe +Micheal +Nehemiah +Quincy +Reid +Rodrigo +Shaun +Albert +Alec +Barrett +Boston +Bradyn +Camron +Case +Cason +Chad +Cory +Damarion +Darrell +Daxton +Demetrius +Eddie +Frank +Haden +Haiden +Isiah +Jakob +Jayce +Joey +Julius +Kamden +Kamron +Kason +Keagan +Landyn +Madden +Marco +Marquis +Pedro +Phoenix +Porter +Quinn +Rafael +Raymond +Rickey +Roberto +Roderick +Sergio +Shane +Trevion +Tristian +Walter +Zackery +Zion +Abel +Adan +Ben +Braeden +Brenden +Brenton +Briar +Cannon +Clark +Clifton +Colten +Cornelius +Damion +Darren +Davion +Deangelo +Duncan +Elisha +Elliott +Fisher +Graham +Gustavo +Houston +Ismael +Jadyn +Jakobe +Jay +Jayson +Jermaine +Keenan +Kelton +Kendall +Keshawn +Korbin +Lathan +Lee +Mario +Myles +Pablo +Philip +Randall +Raul +Remington +Roman +Ronald +Russell +Sam +Trace +Triston +Tylan +Tyree +Warren +Willie +Zachery +Ahmad +Aidyn +Alonso +Armando +Arthur +Atticus +Aydin +Brennen +Brycen +Byron +Cale +Cedric +Chris +Clarence +Coleman +Courtney +Cruz +Dane +Deacon +Dennis +Derick +Draven +Dwight +Ellis +Emir +Enrique +Everett +Garret +Garrison +Gunnar +Harper +Jacobi +Jameson +Jarvis +Javeon +Jerimiah +Kamarion +Kenyon +Kody +Lawrence +Leo +Lorenzo +Louis +Malcolm +Martin +Marvin +Mateo +Mathew +Maurice +Maximus +Memphis +Nathanael +Nikolas +Omarion +Reginald +Rocky +Ronnie +Ross +Roy +Skylar +Terrell +Theodore +Will +Zackary +Zayden +Abram +Alexzander +Augustus +Baylor +Brad +Brayan +Braylin +Camryn +Canaan +Clay +Clinton +Coen +Cortez +Cristofer +Cyrus +Dale +Donnie +Elliot +Ethen +Franklin +Frederick +Fredrick +Gael +Gauge +Gaven +Greyson +Issac +Jadon +Jamarcus +Jaquan +Jasper +Jaxton +Jeremyah +Jericho +Jimmie +Jorden +Jordon +Judah +Judd +Justen +Kamren +Kane +Karl +Kash +Kelby +Kent +Kolton +Kyan +Kylon +Ladarius +London +Malaki +Marlon +Maverick +Mekhi +Melvin +Montana +Nash +Nelson +Nolan +Orion +Orlando +Peter +Pierce +Princeton +Quentin +Rowan +Ruben +Rylee +Simon +Talen +Titus +Tobias +Tripp +Ulises +Vance +Yahir +Yair +Zachariah +Zack +Jacob +Ethan +William +Landon +Jackson +Joshua +Aiden +James +Hunter +John +Noah +Christopher +Michael +Logan +Jayden +Hayden +Caleb +Elijah +Christian +Daniel +Mason +Brayden +Tyler +David +Matthew +Andrew +Austin +Alexander +Joseph +Samuel +Gabriel +Gavin +Jonathan +Brandon +Carson +Luke +Robert +Nathan +Anthony +Evan +Isaac +Jordan +Benjamin +Wyatt +Aaron +Ryan +Peyton +Dylan +Justin +Kaden +Lucas +Tristan +Jeremiah +Cameron +Thomas +Colton +Isaiah +Carter +Cole +Braxton +Caden +Charles +Zachary +Ayden +Brody +Connor +Kaleb +Jaxon +Jose +Nicholas +Owen +Parker +Cooper +Chase +Eli +Kevin +Riley +Ashton +Aidan +Ian +Devin +Jack +Jaden +Blake +Preston +Timothy +Angel +Jason +Seth +Adrian +Dakota +Eric +Nathaniel +Cody +Jesse +Cayden +Hudson +Tanner +Dalton +Garrett +Jace +Levi +Brady +Bryce +Henry +Maddox +Micah +Trenton +Alex +Brian +Jeremy +Luis +Xavier +Drake +Grayson +Marcus +Clayton +Collin +Julian +Wesley +Bryan +Bryson +Jake +Kyle +Malachi +Payton +Sean +Adam +Conner +Dawson +Gage +Kayden +Trevor +Zane +Braylon +Tucker +Braden +Carlos +Corbin +Mark +Richard +Asher +Colin +Gunner +Josiah +Jude +Paul +Alan +Diego +Johnathan +Juan +Keaton +Max +Kenneth +Landen +Liam +Grant +Derrick +Jesus +Sawyer +Jared +Kaiden +Lane +Oliver +Taylor +Antonio +Kameron +Patrick +Sebastian +Spencer +Bradley +Jonah +Steven +Weston +Cade +Cash +Keegan +Mario +Ty +Camden +Easton +Jaxson +Jimmy +Kingston +Kyler +Oscar +Ryder +Travis +Troy +Chance +Joel +Vincent +Alejandro +Alexis +Johnny +Miguel +Xander +Zander +Aden +Colby +Corey +Damian +Devon +Josue +Malik +Omar +Randy +Remington +Shawn +Silas +Avery +Danny +Dominic +Ezekiel +George +Grady +Israel +Jaiden +Miles +Reece +Ricky +Allen +Blaine +Brock +Chandler +Dallas +Donovan +Emanuel +Jamarion +Landyn +Larry +Maxwell +Morgan +Rylan +Shane +Skyler +Stephen +Tyson +Beau +Calvin +Dominick +Dustin +Elias +Emmanuel +Harley +Jaylon +Jerry +Kason +Keith +Manuel +Nicolas +Victor +Aaden +Andre +Billy +Braydon +Braylen +Brodie +Cannon +Damien +Drew +Edward +Fernando +Griffin +Ivan +Jett +Julio +Kylan +Reid +Bobby +Brennan +Caiden +Charlie +Darren +Davion +Gregory +Jaylen +Jonathon +Martin +Marvin +Micheal +Raymond +Ricardo +Waylon +Zackary +Abraham +Bradyn +Bryant +Cristian +Dayton +Edwin +Erick +Francisco +Harrison +Jaquan +Javion +Jayce +Jeffrey +Lawson +Layne +Phillip +River +Ronald +Rylee +Tate +Trey +Brenden +Cruz +Donald +Fabian +Hector +Jasper +Jessie +Keagan +Kendrick +Lance +Leonardo +Lukas +Marshall +Paxton +Raul +Rhett +Sergio +Skylar +Walker +Anderson +Andres +Andy +Asa +Bennett +Bentley +Braylin +Brendan +Brett +Byron +Cesar +Colt +Darius +Derek +Erik +Holden +Jalen +Jamari +Jaylin +Jorge +Kale +Kamron +Kane +Karson +Kobe +Reed +Rodrigo +Roman +Simon +Trace +Trent +Triston +Walter +Zachery +Zayden +Zechariah +Augustus +Barrett +Casey +Cayson +Chris +Clinton +Cohen +Damion +Daxton +Deacon +Deven +Dillon +Douglas +Eddie +Enrique +Gary +Giovanni +Heath +Jakob +Jase +Jay +Jonas +Julius +Justice +Kade +Kolby +Madden +Marco +Maverick +Pierce +Rafael +Roberto +Russell +Ryker +Santiago +Theodore +Zachariah +Zion +Alfredo +Arthur +August +Axel +Ben +Blane +Bo +Boston +Braiden +Brendon +Brennen +Brice +Brooks +Brycen +Craig +Curtis +Damarion +Dane +Dante +Darrell +Dax +Deandre +Denver +Derick +Deshawn +Draven +Duncan +Eduardo +Elliot +Elliott +Franklin +Gideon +Haiden +Harper +Javier +Johnathon +Kai +Kash +Kelvin +Kylen +Lincoln +London +Louis +Mitchell +Nickolas +Rodney +Ruben +Tommy +Tony +Tristen +Tyrell +Alberto +Alec +Alvin +Amare +Aydan +Brayan +Carl +Cason +Coby +Corban +Cyrus +Davin +Demarcus +Edgar +Ezra +Gerardo +Greyson +Gustavo +Haden +Jadon +Jamarcus +Jameson +Jaren +Jaxton +Jayson +Jeffery +Joe +Johan +Judah +Kaeden +Kendall +Korbin +Lawrence +Malaki +Mathew +Mekhi +Myles +Nolan +Reese +Roderick +Roy +Saul +Sullivan +Talon +Toby +Trevon +Tristian +Tristin +Westin +Winston +Ace +Addison +Ahmad +Amari +Amarion +Amir +Arturo +Ashtin +Baylor +Beckett +Brent +Brenton +Briar +Briley +Camron +Cortez +Courtney +Darrin +Davis +Daylin +Demarion +Devonte +Don +Eathan +Emerson +Fisher +Freddy +Gael +Gauge +Gaven +Graham +Harold +Isiah +Izaiah +Jackie +Jacobi +Jagger +Jaime +Jairo +Jakobe +Jamarius +Jaron +Javon +Jaydon +Jaylan +Jermaine +Jorden +Kaidyn +Kamryn +Kannon +Kasen +Kasey +Keelan +Kegan +Kellen +Kelton +Koby +Kolton +Konner +Kristopher +Layton +Leo +Lester +Lyric +Marcos +Maurice +Maximus +Memphis +Nathanael +Nehemiah +Peter +Quentin +Randall +Scotty +Semaj +Simeon +Terrance +Terrence +Terry +Tobias +Travion +Uriel +Willie +Yahir +Zayne +Zeke +William +Jacob +Ethan +Joshua +Jayden +Christopher +Noah +Jackson +Aiden +Landon +James +Hunter +Michael +Elijah +Brayden +John +Caleb +Logan +Mason +Samuel +Alexander +David +Hayden +Gabriel +Andrew +Christian +Gavin +Tyler +Austin +Matthew +Jonathan +Daniel +Joseph +Evan +Luke +Benjamin +Carter +Brandon +Connor +Ryan +Anthony +Lucas +Brody +Dylan +Isaac +Jeremiah +Braxton +Robert +Ayden +Kaden +Wyatt +Aaron +Kaleb +Nathan +Caden +Cameron +Jack +Kayden +Levi +Charles +Jordan +Eli +Isaiah +Justin +Peyton +Carson +Nicholas +Cooper +Kevin +Chase +Owen +Colton +Thomas +Ashton +Hudson +Jaxon +Alex +Jason +Parker +Jose +Tristan +Riley +Garrett +Braylon +Bryce +Ian +Cayden +Cole +Jace +Jaden +Angel +Blake +Gage +Zachary +Josiah +Maddox +Aidan +Bryson +Adam +Brian +Jeremy +Preston +Steven +Kenneth +Tanner +Juan +Nathaniel +Sawyer +Conner +Dalton +Julian +Kyle +Richard +Drake +Eric +Ty +Adrian +Clayton +Jesse +Kyler +Luis +Wesley +Weston +Trenton +Bryan +Cody +Henry +Ryder +Seth +Brady +Carlos +Dawson +Jonah +Liam +Micah +Braden +Jake +Kaiden +Timothy +Dakota +Jesus +Chance +Collin +Easton +Grayson +Lane +Keegan +Tristen +Devin +Xavier +Corbin +Gunner +Jaxson +Marcus +Silas +Aden +Antonio +Kingston +Max +Zane +Asher +Cash +Dallas +Keaton +Malachi +Sebastian +Stephen +Tucker +Jaylon +Rylan +Sean +Jude +Paul +Trevor +Alan +Bentley +Braylen +Cristian +Diego +Eduardo +Grant +Jamarion +Joel +Landen +Lawson +Mark +Miguel +Payton +Zander +Aaden +Bradley +Dominic +Kameron +Remington +Camden +Damien +Devon +Erick +George +Jared +Johnathan +Skyler +Victor +Alexis +Braydon +Gary +Harrison +Ivan +Jaylen +Karson +Oliver +Travis +Xander +Andy +Billy +Cade +Derrick +Jaiden +Jasper +Kason +Miles +Oscar +River +Titus +Tyson +Abraham +Anderson +Colin +Edward +Jimmy +Johnny +Mario +Raymond +Shawn +Zayden +Alejandro +Avery +Beau +Calvin +Giovanni +Jagger +Jalen +Jerry +Joe +Layton +Patrick +Paxton +Ricky +Spencer +Walker +Allen +Brennan +Brock +Dayton +Dillon +Donovan +Dustin +Griffin +Omar +Reed +Taylor +Trey +Barrett +Caiden +Chandler +Fernando +Jakob +Javier +Jaydon +Jeffrey +Jett +Jonathon +Judah +Landyn +Maxwell +Rhett +Skylar +Troy +Vincent +Colby +Corey +Cruz +Damian +Daxton +Ezra +Grady +Jayce +Josue +Kristopher +Larry +Malik +Rodney +Santiago +Trent +Alec +Andre +Braeden +Brett +Brodie +Darius +Drew +Emmanuel +Francisco +Israel +Jeffery +Kade +Kylan +Marvin +Pierce +Reece +Reid +Terry +Triston +Braiden +Brendan +Byron +Camron +Cason +Charlie +Colten +Curtis +Danny +Edgar +Ezekiel +Graham +Hector +Jax +Jessie +Jonas +Keagan +Kolby +Korbin +Lincoln +Martin +Mitchell +Nickolas +Nolan +Peter +Randall +Tony +Trace +Uriel +Walter +Ahmad +Axel +Beckett +Blaze +Bobby +Brice +Brooks +Bruce +Brycen +Casey +Colt +Donald +Edwin +Erik +Fisher +Greyson +Jase +Jaxton +Jon +Julius +Kai +Kamarion +Keith +Keshawn +Leland +Leonardo +Manuel +Phoenix +Quinton +Ronnie +Simon +Tommy +Amari +Andres +Blaine +Boston +Bradyn +Bryar +Cannon +Cesar +Cohen +Draven +Elliot +Emanuel +Gauge +Gavyn +Gregory +Harley +Holden +Houston +Jacoby +Jakobe +Jaylin +Kendall +Kolton +Konner +Kristian +Marcos +Marshall +Micheal +Morgan +Nash +Nathanael +Raul +Ricardo +Roberto +Roman +Shane +Terrance +Tripp +Tristian +Uriah +Westin +Zechariah +Abel +Baylor +Brent +Dane +Dante +Davis +Daylon +Douglas +Eddie +Finley +Gaige +Gerardo +Gideon +Jorge +Kasey +Kendrick +Leo +Maximus +Myles +Phillip +Randy +Reese +Rodrigo +Ronald +Ross +Rowan +Ruben +Rylee +Scott +Talon +Tate +Warren +Waylon +Abram +Ace +Adan +Alvin +Amare +Amos +Asa +Bennett +Brenden +Brennon +Carl +Carsyn +Cedric +Chad +Chevy +Chris +Clark +Cortez +Cory +Demarcus +Dennis +Derek +Emmett +Gunnar +Isaias +Issac +Izaiah +Jamarcus +Jamarius +Jay +Jaylyn +Jefferson +Johnathon +Kaeden +Kamari +Kamden +Kasen +Kobe +Kody +Kylen +Landry +Lathan +Leon +London +Lyric +Maverick +Melvin +Moises +Nehemiah +Nicolas +Omarion +Philip +Porter +Rafael +Ramon +Roderick +Ronan +Ryker +Semaj +Sergio +Slade +Terrence +Trevon +Tyrell +Urijah +Wade +Will +Willie +Zachariah +Zachery +Zackary +Zaden +Zion +Adrien +Alexzander +Alijah +Alonzo +Antwan +Aubrey +Beckham +Blayne +Bob +Braedon +Brannon +Brayan +Braylin +Brayson +Brendon +Brennen +Briar +Cain +Cale +Chace +Corben +Darren +Davion +Dax +Deacon +Demetrius +Denver +Deshawn +Dominick +Dorian +Elias +Elliott +Ely +Enrique +Fletcher +Franklin +Gibson +Harper +Jabari +Jadon +Javion +Jaxen +Jaydan +Jayvion +Jermiah +Judd +Julien +Julio +Justice +Kash +Kavion +Kelton +Kenny +Keyon +King +Kiptyn +Kyson +Lance +Layne +Lonnie +Madden +Malakai +Marco +Mathew +Mekhi +Moses +Nigel +Orlando +Pablo +Pedro +Quincy +Raiden +Rashad +Saul +Talan +Turner +Wayne +Zaylon +William +Jacob +Elijah +James +Ethan +Jayden +Michael +Mason +Landon +Aiden +Jackson +Joshua +Brayden +Christopher +Hunter +Logan +Noah +John +Gavin +Samuel +Alexander +Caleb +Gabriel +David +Andrew +Bentley +Christian +Matthew +Cooper +Tyler +Eli +Joseph +Luke +Wyatt +Austin +Isaiah +Jonathan +Ryan +Benjamin +Anthony +Jordan +Carson +Connor +Daniel +Levi +Parker +Evan +Aaron +Isaac +Kaden +Jaxon +Jeremiah +Carter +Hayden +Dylan +Robert +Justin +Cameron +Jose +Lucas +Peyton +Brody +Thomas +Brandon +Bryson +Ayden +Owen +Nathan +Colton +Hudson +Tristan +Kaleb +Liam +Easton +Kayden +Zachary +Charles +Riley +Braxton +Kevin +Jaden +Maddox +Nicholas +Timothy +Blake +Chase +Caden +Tucker +Angel +Conner +Kyle +Alex +Jack +Asher +Gage +Ian +Seth +Nathaniel +Trenton +Adrian +Collin +Jace +Drake +Jason +Grayson +Jake +Preston +Bryce +Jaxson +Braylon +Cayden +Henry +Jesse +Ryder +Sawyer +Weston +Jasper +Jesus +Dalton +Steven +Trevor +Ashton +Brady +Cole +Dakota +Dawson +Josiah +Lane +Malachi +Carlos +Jude +Micah +Rylan +Jonah +Kaiden +Luis +Bryan +Gunner +Adam +Brian +Cody +Eric +Julian +Cash +Kingston +Kyler +Marcus +Tanner +Travis +Aidan +Devin +Zayden +Mark +Oliver +Payton +Alejandro +Bradley +Garrett +Kameron +Zane +Brock +Colin +Dominic +Grant +Jeremy +Joel +Xander +Antonio +Clayton +Eduardo +Landen +Silas +Xavier +Richard +Sean +Colby +Cristian +Edward +Juan +Karson +Max +Miles +Paxton +Victor +Wesley +Alan +Jaylen +Patrick +Sebastian +Skyler +Stephen +Taylor +Avery +Bently +Chance +Corbin +Ezekiel +Jakob +Jax +Jayce +Jett +Keaton +Maxwell +Roman +Spencer +Troy +Ty +Vincent +Axel +Caiden +Calvin +Diego +Elias +Emmanuel +Johnathan +Johnny +Keegan +Kenneth +Mario +Zander +Braylen +Camden +Damian +Giovanni +Holden +Kylan +Paul +Remington +River +Waylon +Asa +Bennett +Danny +Harrison +Jaiden +Jimmy +Jorge +Layton +Malik +Rhett +Shane +Zaiden +Anderson +Brett +Brooks +Chandler +Corey +Greyson +Josue +Shawn +Trey +Allen +Bobby +Braden +Braiden +Colten +Dallas +Erick +Everett +Grady +Harley +Ivan +Kason +Kobe +Konner +Larry +Miguel +Nicolas +Ricky +Santiago +Walker +Abraham +Aden +Andy +Braydon +Brendan +Cade +Cason +Charlie +Damien +Derek +Drew +Javier +Kash +Knox +Korbin +Phoenix +Reginald +Reid +Sergio +Skylar +Talon +Tristen +Tyson +Beau +Beckett +Billy +Clay +Dillon +Dustin +Edwin +Ezra +George +Israel +Jagger +Jaxton +Jaylon +Jeffrey +Judah +Kade +Kasen +Keith +Lawson +Leonardo +Omar +Oscar +Randy +Reed +Reese +Zayne +Abel +Abram +Alec +Barrett +Brennan +Brycen +Casey +Cohen +Cullen +Darius +Daxton +Derrick +Gaven +Gregory +Griffin +Jamarion +Joe +Landyn +Leo +Lincoln +Orlando +Rowan +Ryker +Trent +Ahmad +Bo +Carsen +Chad +Damon +Dax +Dean +Edgar +Francisco +Jared +Jaydon +Jessie +Karter +Kendall +Marshall +Mathew +Maximus +Nolan +Raymond +Tommy +Trace +Zion +Andres +Archer +Bentlee +Brantley +Brodie +Byron +Camron +Carl +Damarion +Dante +Donovan +Emanuel +Felix +Fernando +Gary +Houston +Jameson +Jase +Javeon +Jay +King +Kipton +Lukas +Manuel +Memphis +Morgan +Nasir +Quinton +Reece +Roberto +Terrance +Terry +Titus +Tony +Uriah +Zachariah +Zackary +Adrien +Andre +Augustus +Austyn +Blaine +Bradyn +Braylin +Briar +Brice +Cesar +Chris +Cruz +Darnell +Devon +Donald +Erik +Finn +Fredrick +Graham +Haden +Harper +Jeffery +Jordyn +Kai +Kelvin +Lathan +Layne +Madden +Nehemiah +Orion +Quinn +Ronald +Ruben +Warren +Willie +Wilson +Aaden +Aldo +Alexis +Allan +Amari +Amarion +Armando +Blayze +Boston +Brenden +Brentley +Bruce +Bryant +Cannon +Casen +Colt +Cory +Courtney +Curtis +Davis +Dayton +Eddie +Elliott +Emerson +Emmett +Fisher +Fletcher +Gauge +Hector +Issac +Jacoby +Jaime +Jalen +Jamarcus +Jamari +Jerry +Jonathon +Justice +Kale +Kanyon +Keagan +Keenan +Kellan +Kohen +Kolby +Kole +Kristian +Kyan +Kylen +Kyran +Legend +London +Marcos +Marlon +Martin +Maurice +Moises +Myles +Phillip +Porter +Rafael +Rashad +Roy +Russell +Saul +Theodore +Toby +Tripp +Truett +Turner +Tylan +Uriel +Urijah +Walter +Addison +Aditya +Aidyn +Aryan +Atticus +Bailey +Baylor +Benton +Brayson +Brendon +Brennon +Callen +Camdyn +Case +Cedric +Coby +Corbyn +Damion +Daquan +Darian +Darren +Davin +Daylen +Declan +Demarcus +Denver +Dereon +Deshawn +Dexter +Elisha +Ellis +Ely +Enrique +Gatlin +Gavyn +Gerald +Giovanny +Harold +Hayes +Heath +Jaron +Jarrod +Javion +Julius +Junior +Kane +Kendrick +Kenny +Khalil +Kody +Kolton +Konnor +Kooper +Kristopher +Kylin +Landan +Leeland +Leroy +Lorenzo +Malakai +Marquis +Mateo +Milo +Nathanael +Nelson +Peter +Pierce +Quincy +Raiden +Raul +Ricardo +Rodney +Sam +Solomon +Tate +Thatcher +Triston +Vance +Westin +Will +Zachery +William +Jacob +Mason +Aiden +Noah +Jayden +Elijah +Ethan +Joshua +Jackson +James +Michael +Bentley +John +Logan +Gabriel +Landon +Brayden +Christopher +Caleb +Hunter +Alexander +Samuel +Daniel +Isaac +Hayden +Joseph +David +Eli +Levi +Liam +Wyatt +Benjamin +Tyler +Gavin +Andrew +Austin +Luke +Braxton +Brody +Christian +Matthew +Jonathan +Anthony +Carter +Isaiah +Parker +Easton +Jordan +Cameron +Cooper +Jeremiah +Brandon +Carson +Connor +Hudson +Jace +Evan +Dylan +Ryan +Asher +Charles +Bryson +Robert +Tristan +Ayden +Kaden +Lucas +Colton +Jaxon +Thomas +Jack +Peyton +Zachary +Nathan +Ryder +Aaron +Kaleb +Owen +Grayson +Kayden +Kevin +Maddox +Justin +Ian +Chase +Adrian +Henry +Jason +Riley +Corbin +Conner +Gage +Weston +Ashton +Jaxson +Max +Timothy +Jose +Angel +Bryce +Nicholas +Jake +Oliver +Preston +Sawyer +Xavier +Alex +Caden +Paxton +Axel +Jaden +Jesse +Nathaniel +Tanner +Adam +Brantley +Jude +Lane +Cayden +Cody +Dalton +Gunner +Micah +Steven +Braylon +Chance +Clayton +Drake +Garrett +Jonah +Josiah +Juan +Malachi +Sebastian +Xander +Aidan +Colt +Dawson +Seth +Blake +Brian +Bryan +Collin +Julian +Kaiden +Karson +Kenneth +Remington +Rylan +Tucker +Zayden +Avery +Brady +Cole +Kingston +Kyler +Dakota +Marcus +Trevor +Ty +Wesley +Dominic +Ivan +Johnathan +Landen +Silas +Kyle +Luis +Carlos +Cash +Jayce +Bradley +Derrick +Eric +Graham +Jaiden +Jeremy +Richard +Travis +Trenton +Zane +Antonio +Maxwell +Spencer +Anderson +Beckett +Devin +Greyson +Jasper +Jett +Keegan +Miles +Tristen +Braden +Caiden +Jesus +Joel +Abel +Brock +Charlie +Corey +Edward +Grant +Mark +Ryker +Skyler +Chandler +Ezekiel +Jagger +Johnny +Kylan +Marshall +Payton +Shawn +Taylor +Calvin +Dallas +Eduardo +George +Jaylen +Kameron +Korbin +Layton +Lukas +Miguel +Alexis +Bennett +Cannon +Damian +Elias +Erick +Griffin +Josue +Kade +Landyn +Shane +Stephen +Vincent +Alan +Beau +Blaine +Braylen +Brycen +Cohen +Emmanuel +Kobe +Lawson +Layne +Myles +Reed +Alejandro +Braydon +Brennan +Brooks +Colby +Cristian +Cruz +Derek +Devon +Diego +Dustin +Edgar +Israel +Patrick +Phoenix +Reece +Rhett +Santiago +Tripp +Andre +Camden +Emmett +Erik +Giovanni +Gregory +Jakob +Jared +Jimmy +Jon +Judah +Kasen +Kason +Kendrick +Konner +Leonardo +River +Roman +Triston +Troy +Victor +Damien +Dillon +Fernando +Harper +Harrison +Jase +Jax +Jaxton +Jorge +Karter +Larry +Mateo +Nehemiah +Oscar +Paul +Tony +Trent +Walker +Waylon +Zaiden +Abraham +Aden +Bently +Billy +Boston +Cade +Cason +Chevy +Colin +Davis +Deshawn +Desmond +Dexter +Everett +Ezra +Hayes +Issac +Jayson +Kai +Kamden +Keaton +Omar +Quinton +Ricky +Walter +Zander +Amari +Barrett +Bentlee +Bo +Danny +Dax +Declan +Donovan +Draven +Fisher +Harley +Hector +Holden +Jaxen +Jeffrey +Jerry +Keith +King +Knox +Kyron +Leland +Lincoln +Manuel +Maverick +Mitchell +Nicolas +Nolan +Raymond +Reginald +Rodney +Rodrigo +Rylen +Titus +Trey +Zackary +Abram +Allen +Andy +Archer +Asa +Bobby +Briar +Brodie +Darius +Davion +Dominick +Finn +Gatlin +Jamarion +Javion +Kash +Korbyn +Kye +Lathan +Louis +Madden +Maximiliano +Maximus +Randy +Reid +Ronald +Sean +Sergio +Shaun +Terrance +Terry +Warren +Ace +Alec +Atticus +Baylor +Braiden +Brennen +Callen +Case +Channing +Dane +Daxton +Dean +Eddie +Emanuel +Finley +Gaige +Gauge +Gunnar +Jameson +Jaquan +Jay +Joe +Jonas +Kristopher +Kylen +Lee +Leo +Malik +Mario +Markus +Marquis +Morgan +Moses +Phillip +Quentin +Rashad +Rayden +Raylan +Roberto +Ronnie +Slade +Talon +Terrell +Trace +Zachariah +Zaden +Zavier +Zayne +Aidyn +Andres +Armando +Aubrey +Beckham +Brandt +Brendan +Camron +Cayson +Cesar +Clay +Clinton +Corbyn +Dante +Demarcus +Donald +Edwin +Elliott +Emerson +Emilio +Enrique +Felix +Frank +Gary +Grady +Hendrix +Houston +Jakobe +Jamari +Jaydon +Jeffery +Jermaine +Jessie +Jonathon +Kaison +Kamron +Kane +Kellen +Kendall +Kenyon +Khalil +Kole +Kolton +Lance +Malakye +Martin +Mayson +Memphis +Nash +Philip +Porter +Pranav +Quintin +Rafael +Raiden +Sam +Simon +Tatum +Tommy +Tyson +Wade +Westin +Willie +Yahir +Zion +Adyn +Ahmad +Alijah +Amir +Aron +Arthur +Arturo +Augustus +Aydan +Aydin +Benson +Benton +Berkley +Bowen +Braxten +Brenden +Brent +Brentley +Bryant +Brylan +Byron +Chad +Christain +Clark +Conor +Corban +Cyrus +Damon +Darrell +Daylen +Dayton +Demetrius +Deshaun +Destin +Douglas +Drew +Ellis +Eugene +Fabian +Felipe +Forrest +Francisco +Garrison +Haiden +Iker +Jacobi +Jacoby +Jalen +Jarrett +Javier +Jaxxon +Jaylin +Jaylon +Jensen +Jorden +Jordyn +Judson +Julio +Julius +Kaidyn +Keagan +Kenny +Kentrell +Keon +Kieran +Kody +Kristian +Kyson +Lamarion +Lawrence +Lyric +Malakai +Marcos +Micheal +Miller +Milo +Neymar +Nickolas +Oakley +Pedro +Pierce +Quinn +Ricardo +Rocky +Roderick +Royce +Rylee +Scott +Solomon +Tobias +Tristian +Tyrese +Zeke +William +Mason +Jacob +James +Elijah +Hunter +Ethan +Aiden +Gabriel +Jackson +Jayden +Noah +Michael +Eli +Bentley +Brayden +Landon +Liam +John +Samuel +Christopher +Daniel +Isaac +Alexander +Logan +Jaxon +Matthew +Ayden +Bryson +Wyatt +Carter +Andrew +Cooper +Joshua +Benjamin +Luke +Levi +Joseph +Caleb +Hayden +Braxton +Connor +Gavin +Jordan +Easton +Jace +David +Ryan +Anthony +Carson +Christian +Isaiah +Robert +Hudson +Evan +Lucas +Tyler +Brantley +Dylan +Brandon +Colton +Grayson +Austin +Jonathan +Aaron +Nathan +Kaden +Jack +Jeremiah +Parker +Charles +Brody +Nicholas +Kayden +Owen +Adrian +Cameron +Jaxson +Justin +Peyton +Jason +Ryder +Thomas +Tristan +Asher +Oliver +Caden +Silas +Henry +Josiah +Maddox +Chase +Blake +Kevin +Sawyer +Ian +Micah +Zachary +Kaleb +Riley +Rylan +Tucker +Angel +Remington +Preston +Jose +Braylon +Drake +Nathaniel +Cole +Corbin +Kingston +Max +Weston +Adam +Alex +Gage +Kaiden +Ashton +Cody +Marcus +Gunner +Jesse +Kyler +Sebastian +Eric +Jude +Kyle +Xavier +Zane +Antonio +Juan +Lane +Brady +Collin +Garrett +Jase +Lincoln +Tanner +Dakota +Jaden +Jesus +Julian +Paxton +Wesley +Aidan +Camden +Conner +Jasper +Jeremy +Jonah +Zayden +Carlos +Cash +Greyson +Jaiden +Karson +Luis +Malachi +Spencer +Timothy +Axel +Bryan +Bryce +Charlie +Grant +Seth +Trenton +Cayden +Kason +Victor +Xander +Bennett +Dawson +Declan +Jake +Chandler +Everett +Graham +Jayce +Miles +Braden +Dalton +Emmett +Ezekiel +Jax +Jett +Keegan +Knox +Waylon +Cason +Dominic +Harrison +Landen +Lawson +Steven +Travis +Beckett +Colby +Devin +Ezra +Griffin +Jagger +Kenneth +Patrick +Ryker +Ty +Zander +Abel +Barrett +Beau +Brycen +Chance +Diego +Emmanuel +Jaylen +Judah +Kolton +Layton +Maxwell +Richard +Shawn +Alejandro +Braylen +Dallas +Dillon +Dustin +Ivan +Joel +Keaton +Mark +Myles +Trevor +Tyson +Aden +Blaine +Braydon +Briar +Cannon +Channing +Clayton +George +Grady +Johnathan +Johnny +Leo +Mateo +Santiago +Titus +Tristen +Brennan +Brian +Cade +Edward +Elias +Gregory +Kade +Kasen +Miguel +Terry +Amari +Andre +Brentley +Colin +Colt +Dax +Jared +Karter +Landry +Lukas +Maverick +River +Roman +Stephen +Vincent +Alan +Allen +Avery +Bradley +Brooks +Case +Cohen +Corey +Cristian +Damian +Darius +Dean +Derrick +Erick +Gideon +Jamarion +Javier +Kameron +Lance +Maximus +Nicolas +Nolan +Payton +Phillip +Tate +Tatum +Triston +Zayne +Bently +Bryant +Calvin +Danny +Edwin +Emanuel +Gauge +Harper +Jeffrey +Justice +Landyn +Nehemiah +Phoenix +Skyler +Walker +Billy +Brock +Caiden +Colten +Damien +Jessie +Jimmy +Josue +Korbin +Leland +Madden +Major +Malik +Manuel +Oscar +Rhett +Simon +Tripp +Wade +Zaiden +Abraham +Abram +Andres +Archer +Asa +August +Bentlee +Bobby +Brendan +Chevy +Deacon +Derek +Dexter +Fernando +Finn +Gael +Gary +Holden +Jerry +Jon +Julius +Kase +Khalil +King +Kobe +Lee +Omar +Pierce +Raylan +Reed +Reid +Tommy +Trace +Trey +Warren +Alexis +Bryar +Casen +Cruz +Damon +Dante +Elliott +Emiliano +Fisher +Francisco +Hank +Iker +Israel +Jameson +Jamison +Jaxen +Jorge +Keith +Kellan +Kellen +Kelton +Kendrick +Kylan +Kyran +Larry +Malcolm +Maurice +Nash +Paul +Peter +Raiden +Randall +Ruben +Taylor +Theodore +Troy +Walter +Anderson +Andy +Augustus +Beckham +Braiden +Brantlee +Brently +Carl +Courtney +Curtis +Davis +Denver +Desmond +Donald +Edgar +Eduardo +Elliot +Enrique +Giovanni +Hayes +Jakob +Jamari +Jaxton +Jensen +Joe +Jordyn +Kamden +Kane +Kayson +Keagan +Kolby +Micheal +Odin +Randy +Reese +Ricardo +Ricky +Ronnie +Rowan +Sean +Talon +Tobias +Tony +Truman +Arthur +Blayne +Blaze +Boston +Brennen +Brent +Cesar +Dale +Dane +Daxton +Demarcus +Devon +Donovan +Drew +Emerson +Emilio +Emmitt +Felix +Fredrick +Gatlin +Gunnar +Hagen +Harvey +Jacoby +Jeffery +Jericho +Jonas +Judson +Kadyn +Kai +Kannon +Kash +Kristopher +Kylen +Kyson +Landan +Lawrence +Lorenzo +Marco +Mario +Marshall +Messiah +Porter +Rafael +Reece +Rhys +Scott +Slade +Sylas +Terrell +Tristian +Westin +Willie +Yahir +Zachariah +Adan +Aidyn +Aldo +Amare +Amir +Baron +Baylor +Benson +Bowen +Braxtyn +Braylin +Brayson +Brenden +Brenton +Brett +Brodie +Bruce +Byron +Camryn +Casey +Cedric +Clark +Clay +Cullen +Darrell +Darren +Davion +Dayton +Demarion +Elisha +Fabian +Finley +Gannon +Gaven +Giovani +Haden +Harley +Haydyn +Heath +Hector +Jadon +Jarrett +Jaxsen +Jaydin +Jet +Joey +Jordon +Julio +Junior +Justus +Kage +Kendall +Konnor +Kooper +Korbyn +Lathan +Layne +Leeland +Legend +Leighton +Leonardo +Leroy +Luca +Maddix +Markell +Marquis +Maximiliano +Miller +Mitchell +Noel +Oakley +Pablo +Raul +Raymond +Rex +Roberto +Romeo +Ronald +Sergio +Shane +Shiloh +Skylar +Solomon +Thaddeus +Uriah +Zain +William +Mason +Noah +James +Elijah +Aiden +Ethan +Bentley +Jackson +Liam +Jacob +John +Christopher +Michael +Jayden +Jaxon +Joshua +Logan +Hunter +Christian +Luke +Landon +Isaac +Caleb +Jase +Samuel +Alexander +Jace +Jeremiah +Matthew +Brayden +Gabriel +Eli +Carter +Braxton +Carson +Daniel +David +Levi +Andrew +Benjamin +Wyatt +Joseph +Gavin +Ayden +Charles +Cooper +Hayden +Sawyer +Hudson +Grayson +Brantley +Bryson +Easton +Owen +Asher +Connor +Lucas +Thomas +Tyler +Austin +Henry +Oliver +Colton +Aaron +Jack +Parker +Anthony +Cameron +Isaiah +Jordan +Robert +Brandon +Zachary +Jonathan +Josiah +Kaiden +Kayden +Ryan +Brody +Evan +Jaxson +Jason +Dylan +Kevin +Angel +Nathan +Ryker +Silas +Tristan +Zayden +Camden +Maddox +Tucker +Justin +Adam +Drake +Jude +Kaden +Kingston +Weston +Corbin +Kaleb +Timothy +Chase +Greyson +Blake +Peyton +Ian +Julian +Bryce +Jose +Cash +Gunner +Kenneth +Rylan +Abel +Sebastian +Xavier +Kyler +Micah +Ryder +Ashton +Lincoln +Collin +Nicholas +Remington +Wesley +Adrian +Alex +Beau +Caden +Malachi +Nathaniel +Braylon +Jayce +Kyle +Zander +Dalton +Dominic +Eric +Jaiden +Rhett +Beckett +Chandler +Cole +Harrison +Jaden +Jesse +Marcus +Conner +Dawson +Ezekiel +Gage +Jasper +Miles +Steven +Zane +Chance +Emmett +Garrett +Paxton +Dallas +Jesus +Jonah +Karson +Riley +Seth +Trenton +Waylon +Xander +Antonio +Axel +Brentley +Bryan +Carlos +Cayden +Jayceon +Juan +Kason +Max +Bennett +Brooks +Case +Ezra +Ivan +Jake +Kylan +Lane +Richard +Brady +Cason +Patrick +Preston +Roman +Santiago +Brian +Dakota +Devin +Edward +Elias +Grady +Judah +King +Mateo +Travis +Alan +Avery +Barrett +Bradley +Calvin +Clayton +Damian +Grant +Jax +Johnny +Landen +Maxwell +Brycen +Caiden +Cohen +Corey +Kade +Kameron +Knox +Payton +River +Stephen +Zayne +Colt +Emmanuel +George +Holden +Karter +Layton +Reed +Victor +Beckham +Cannon +Declan +Kayson +Keaton +Lawson +Leo +Luis +Marshall +Sean +Vincent +Walker +Aidan +Braden +Braydon +Brennan +Cody +Dexter +Elliott +Jeremy +Jett +Josue +Keegan +Korbin +Landyn +Mark +Tate +Titus +Tripp +Zion +Aden +Colin +Daxton +Everett +Gregory +Gunnar +Kash +Keith +Kolton +Layne +Leonardo +Miguel +Nolan +Raymond +Spencer +Tanner +Zaiden +Alexis +Archer +Diego +Harper +Jagger +Jaylen +Kai +Kasen +Kendall +Kendrick +Mario +Myles +Omar +Porter +Reid +Sylas +Terry +Theodore +Trevor +Ty +Abraham +August +Bentlee +Braylen +Cade +Cesar +Channing +Curtis +Dean +Dustin +Francisco +Gael +Gauge +Graham +Harley +Jay +Joel +Oscar +Paul +Ronald +Trey +Tyson +Cristian +Cruz +Damien +Damon +Davis +Deacon +Derrick +Dillon +Elliot +Griffin +Javier +Johnathan +Justice +Kellan +Kobe +Larry +Phillip +Raylan +Solomon +Sutton +Walter +Westin +Zachariah +Anderson +Andres +Asa +Atticus +Bo +Erik +Hayes +Jensen +Jerry +Major +Martin +Maverick +Messiah +Ryland +Shane +Taylor +Troy +Abram +Allen +Amir +Andre +Axton +Baylor +Billy +Blaze +Brent +Brock +Byron +Chevy +Dayton +Derek +Deshawn +Donald +Donovan +Drew +Edwin +Felix +Hector +Jared +Jaxen +Jaxton +Jaydon +Jeffery +Jeffrey +Jorge +Kane +Kannon +Kooper +Landry +Lukas +Malik +Maximus +Nicolas +Philip +Pierce +Randy +Reece +Reese +Reginald +Rickey +Rodney +Roland +Ronnie +Rowan +Stetson +Talon +Tobias +Tommy +Tristen +Zackary +Ahmad +Albert +Alejandro +Benton +Bobby +Brantlee +Brenden +Brenton +Bryant +Carl +Casen +Cayson +Cedric +Charlie +Danny +Dante +Demetrius +Desmond +Edgar +Eduardo +Emanuel +Emiliano +Emory +Fernando +Finn +Gideon +Giovanni +Hendrix +Iker +Israel +Joaquin +Justus +Kase +Kole +Konner +Konnor +Kylen +Lance +Leonidas +Madden +Phoenix +Quincy +Ricardo +Terrance +Turner +Warren +Alexzander +Alijah +Amos +Aydan +Blaine +Bowen +Braeden +Braiden +Conrad +Darius +Darren +Dax +Devon +Dorian +Emmitt +Enrique +Erick +Finley +Gaige +Gerardo +Issac +Jacoby +Jakobe +Jameson +Javion +Jayvion +Jessie +Jimmy +Joe +Joey +Julio +Kaidyn +Kale +Keagan +Kristopher +Kyson +Ledger +Mac +Manuel +Maximiliano +Moses +Ransom +Ridge +Russell +Saul +Skyler +Sullivan +Tony +Trent +Triston +Wade +Zechariah +Ace +Alberto +Alec +Alfredo +Alonso +Amari +Angelo +Arthur +Brendan +Brodie +Bryer +Bryton +Chris +Clark +Clinton +Colby +Corban +Coy +Crosby +Denver +Draven +Dwayne +Emerson +Fisher +Frank +Gary +Gibson +Harold +Houston +Ibrahim +Jakoby +Jamie +Jaylon +Jayson +Jet +Jon +Julius +Kamden +Karsen +Karsyn +Keon +Keshawn +Kian +Ladarius +Langston +Leland +Lennox +Leon +Lorenzo +Marcos +Nathanael +Noe +Orlando +Quentin +Ray +Raylon +Rex +Roger +Romeo +Ross +Ruger +Shawn +Steele +Sterling +Tatum +Terrence +Xzavier +Mason +William +Noah +Elijah +James +Liam +John +Carter +Jacob +Logan +Jaxon +Hunter +Michael +Wyatt +Ethan +Luke +Aiden +Jackson +Gabriel +Samuel +Bentley +Alexander +Joshua +Jayden +Daniel +Benjamin +Matthew +Jace +David +Anthony +Grayson +Levi +Braxton +Christopher +Isaac +Caleb +Lucas +Easton +Eli +Joseph +Hudson +Owen +Connor +Isaiah +Kayden +Brayden +Asher +Andrew +Henry +Jaxson +Ryder +Jase +Jonathan +Landon +Sawyer +Ayden +Cooper +Jeremiah +Oliver +Robert +Ryan +Charles +Christian +Parker +Carson +Hayden +Bryson +Dylan +Gavin +Nathan +Brantley +Cameron +Tyler +Colton +Jordan +Thomas +Kingston +Jack +Josiah +Gunner +Chase +Austin +Ian +Sebastian +Aaron +Maddox +Brandon +Brody +Kevin +Lincoln +Evan +Kaiden +Blake +Jason +Julian +Silas +Tristan +Abel +Camden +Dawson +Adrian +Nathaniel +Drake +Tucker +Jasper +Max +Nicholas +Peyton +Ezra +Preston +Weston +Ashton +Justin +Rhett +River +Ryker +Timothy +Bennett +Kaden +Angel +Cayden +Jayceon +Jose +Rylan +Zachary +Corbin +Karson +Karter +Remington +Zayden +Jax +Jayce +Kaleb +Miles +Xavier +Greyson +Harrison +Jeremy +Lane +Malachi +Wesley +Chandler +Gage +Jesse +Nolan +Zander +Bryan +Jude +Kenneth +Avery +Beau +Brian +Bryce +Cole +Conner +Grant +Jonah +Kyler +Beckett +Brooks +Clayton +Dallas +Graham +Riley +Steven +Alan +Axel +Chance +Dominic +Kyle +Micah +Zane +Barrett +Braylon +Cash +Charlie +Collin +Emmett +Ezekiel +Garrett +Jett +Reid +Caden +Caiden +Carlos +Cody +Dakota +Eric +Maverick +Waylon +Xander +Adam +Alex +Cade +Damian +Devin +Elias +Jaden +Antonio +Dalton +Declan +Grady +Holden +King +Maxwell +Miguel +Dean +Everett +George +Landen +Marshall +Paxton +Walker +August +Braden +Brycen +Gannon +Jake +Judah +Keegan +Myles +Reed +Victor +Brady +Cohen +Ivan +Jaiden +Jaxton +Kash +Kason +Santiago +Spencer +Vincent +Calvin +Cannon +Damien +Daxton +Johnny +Kamden +Knox +Leo +Marcus +Richard +Travis +Bo +Bradley +Chevy +Colin +Elliot +Jameson +Juan +Kai +Patrick +Princeton +Roman +Rowan +Sean +Seth +Titus +Trevor +Zaiden +Archer +Braylen +Elliott +Finn +Kasen +Lawson +Luis +Tanner +Tate +Tripp +Zayne +Ace +Brennan +Corey +Cristian +Cruz +Dexter +Edgar +Giovanni +Griffin +Hayes +Jensen +Layton +Maximus +Nash +Oscar +Ty +Zachariah +Aidan +Brentley +Case +Cason +Colby +Colt +Jesus +Jimmy +Joel +Kobe +Larry +Paul +Rayden +Tatum +Theodore +Tony +Trenton +Troy +Abraham +Cesar +Deacon +Hank +Harley +Jagger +Jaydon +Jeffrey +Jessie +Kayson +Mateo +Phillip +Raymond +Ronald +Scott +Stephen +Terry +Zion +Anderson +Atticus +Beckham +Bobby +Brock +Damon +Diego +Dustin +Eduardo +Edward +Ellis +Emmanuel +Iker +Jared +Jerry +Joe +Josue +Kameron +Keaton +Korbin +Landyn +Major +Phoenix +Raylan +Shawn +Trey +Warren +Wilson +Aden +Amari +Amir +Asa +Billy +Blaine +Carl +Channing +Danny +Edwin +Finley +Gary +Gibson +Gideon +Gunnar +Johnathan +Jorge +Kade +Kendrick +Kolton +Legend +Lukas +Malik +Mario +Nehemiah +Pierce +Shane +Simon +Tobias +Tyson +Alexzander +Allen +Augustus +Bentlee +Casen +Cayson +Clark +Emerson +Felix +Fletcher +Jakob +Javier +Kane +Konnor +Lance +Lathan +Messiah +Miller +Reece +Reese +Skyler +Sylas +Toby +Abram +Alejandro +Boston +Brantlee +Brendan +Brently +Brice +Bryant +Cedric +Colten +Darius +Davis +Dax +Dayton +Draven +Fernando +Gregory +Grey +Izaiah +Jamarion +Jedidiah +Jon +Justice +Keith +Kylan +Leon +Leonardo +Martin +Neymar +Noe +Quinton +Raiden +Ricardo +Ricky +Ronan +Royce +Ruger +Russell +Stetson +Terrance +Titan +Tristen +Westin +Adan +Amare +Andre +Andres +Andy +Arthur +Axton +Braydon +Brayson +Brodie +Bruce +Byron +Callen +Curtis +Darren +Demarcus +Dennis +Denver +Derrick +Desmond +Donald +Dorian +Eddie +Emanuel +Emiliano +Emmitt +Esteban +Fisher +Foster +Francisco +Frank +Gentry +Gustavo +Harper +Israel +Jacoby +Jamison +Jaylen +Johnathon +Julius +Kaison +Kamarion +Kaylon +Kenton +Koen +Korbyn +Kylen +Kyrie +Kyson +Landry +Layden +Layne +Lee +Leland +Leonel +Lewis +Louis +Luca +Malcolm +Marco +Mark +Marvin +Matthias +Nixon +Oakley +Omar +Pedro +Porter +Rafael +Randy +Ransom +Ray +Rex +Ridge +Ronnie +Roy +Solomon +Thiago +Trace +Trent +Willie +Aidyn +Aldo +Alec +Alexis +Aubrey +Blaze +Braelyn +Braxtyn +Brayan +Brenden +Brett +Briar +Bryar +Canaan +Caysen +Clay +Clifton +Colson +Cornelius +Courtney +Cullen +Dante +Daylen +Dillon +Ean +Eden +Edison +Emery +Emory +Enrique +Erik +Ezequiel +Frederick +Gael +Heath +Houston +Jalen +Jay +Jayson +Jericho +Jonas +Judson +Kamron +Kannon +Karsen +Karsyn +Kase +Kasyn +Keagan +Keelan +Kellan +Khalil +Killian +Kolby +Kole +Lawrence +Madden +Maddux +Manuel +Masen +Melvin +Memphis +Moses +Nelson +Nikolas +Ollie +Orion +Payton +Philip +Roderick +Sergio +Talon +Terrell +Theo +Tommy +Turner +Uriah +Winston +Zaidyn +Zechariah +Mary +Maria +Alice +Margaret +Helen +Frances +Dorothy +Elizabeth +Josephine +Ruth +Nellie +Isabel +Martha +Betty +Lucy +Lupe +Carmen +Esther +Grace +Annie +Bertha +Eva +Evelyn +Julia +Mercedes +Pauline +Rose +Virginia +Agnes +Emma +Irene +Jennie +Jessie +Katherine +Louise +Rita +Ruby +Beatrice +Clara +Ella +Lucille +Marguerite +Petra +Susie +Alicia +Amelia +Anna +Aurora +Edna +Eleanor +Jane +Laura +Lillian +Mildred +Minnie +Rosa +Thelma +Theresa +Mary +Maria +Carmen +Margaret +Helen +Ruth +Dorothy +Josephine +Alice +Elizabeth +Florence +Irene +Rose +Edith +Katherine +Frances +Grace +Marie +Virginia +Clara +Julia +Ramona +Rita +Anita +Emma +Hazel +Martha +Amelia +Anna +Antonia +Bessie +Edna +Esther +Gertrude +Jessie +Louise +Lucy +Lupe +Margarita +Mildred +Nellie +Viola +Aurora +Connie +Cruz +Dolores +Eva +Francisca +Jennie +Josefina +Lillian +Maggie +Mercedes +Pauline +Rachel +Stella +Thelma +Adela +Amalia +Angelita +Angie +Artemisa +Ethel +Georgia +Juanita +Laura +Mabel +Minnie +Pearl +Susie +Theresa +Mary +Maria +Helen +Margaret +Ruth +Dorothy +Elizabeth +Josephine +Carmen +Marie +Frances +Louise +Virginia +Alice +Anita +Rita +Grace +Lupe +Rose +Jessie +Nellie +Annie +Julia +Martha +Pauline +Anna +Dolores +Evelyn +Irene +Ada +Amelia +Betty +Edna +Gertrude +Esther +Eva +Hazel +Lillian +Lola +Lucy +Thelma +Angelita +Beatrice +Concepcion +Emma +Inez +Juanita +Laura +Mildred +Minnie +Rosa +Agnes +Angela +Antonia +Clara +Dora +Edith +Eleanor +Guadalupe +Jennie +Josefina +Juana +Katherine +Lucille +Margarita +Pearl +Ramona +Aurora +Bertha +Catherine +Christine +Consuelo +Elisa +Ellen +Elsie +Francisca +Ida +Jane +Jean +Lena +Leona +Marian +Marion +Marjorie +Nancy +Olive +Ruby +Susie +Teresa +Velma +Viola +Mary +Margaret +Maria +Frances +Dorothy +Ruth +Helen +Virginia +Alice +Josephine +Louise +Nellie +Evelyn +Julia +Anna +Elizabeth +Eva +Mildred +Ruby +Marie +Bertha +Juanita +Lupe +Rose +Anita +Carmen +Florence +Isabel +Lillian +Lucille +Esther +Lucy +Victoria +Agnes +Catherine +Clara +Edith +Ida +Jennie +Laura +Marjorie +Adelina +Amelia +Annie +Celia +Edna +Hazel +Katherine +Pearl +Rosa +Antonia +Charlotte +Dolores +Ethel +Genevieve +Gladys +Grace +Guadalupe +Jean +Jessie +Margarita +Pauline +Sally +Thelma +Ann +Beatrice +Connie +Emily +Isabelle +Lena +Leona +Luz +Lydia +Rita +Vera +Alicia +Amalia +Andrea +Christine +Concepcion +Concha +Doris +Emma +Faye +Hilda +Irene +Jane +Josefina +Lola +Mae +Marion +Martha +Minnie +Petra +Stella +Susie +Mary +Dorothy +Helen +Josephine +Margaret +Frances +Maria +Ruth +Virginia +Alice +Carmen +Mildred +Elizabeth +Esther +Rose +Eleanor +Louise +Lucille +Lupe +Dolores +Evelyn +Julia +Nellie +Rita +Edith +Irene +Anita +Bertha +Clara +Betty +Florence +Isabel +Sally +Amelia +Dora +Edna +Juana +Ramona +Vivian +Anna +Bessie +Blanche +Eva +Mercedes +Pauline +Petra +Ruby +Sarah +Agnes +Angelita +Emma +Gladys +Hazel +Laura +Lillian +Lucy +Consuelo +Ethel +Guadalupe +Ida +Jessie +Katherine +Lena +Marian +Marjorie +Susie +Ella +Marion +Martha +Rosa +Theresa +Adeline +Ann +Barbara +Beatrice +Bernice +Catherine +Elisa +Ernestine +Flora +Gertrude +Grace +Hilda +Jennie +Juanita +Leona +Lois +Mabel +Maggie +Mamie +Manuela +Margarita +Marguerite +Marie +Pearl +Teresa +Ada +Adela +Adelina +Amalia +Antonia +Celia +Concha +Cora +Delia +Doris +Esperanza +Francisca +Georgia +Herminia +Jane +Jeanette +Kathryn +Lorraine +Lydia +Martina +Melba +Sara +Victoria +Viola +Wanda +Mary +Helen +Virginia +Dorothy +Maria +Ruth +Margaret +Elizabeth +Mildred +Carmen +Frances +Dolores +Eva +Lupe +Alice +Anita +Anna +Esther +Irene +Josephine +Edith +Thelma +Clara +Eleanor +Vera +Bertha +Florence +Jessie +Julia +Martha +Ida +Rose +Edna +Emma +Katherine +Laura +Lillian +Louise +Nellie +Rosa +Ruby +Betty +Grace +Marjorie +Patricia +Aurora +Dora +Doris +Evelyn +Georgia +Juanita +Lucy +Pauline +Petra +Vivian +Agnes +Bessie +Genevieve +Lucille +Margarita +Amelia +Ann +Annie +Beatrice +Catherine +Ellen +Elsie +Jean +Jennie +Lois +Rita +Stella +Barbara +Connie +Consuelo +Della +Gladys +Hazel +Inez +Isabel +Jane +Mercedes +Sarah +Bernice +Celia +Eloise +Elvira +Leonor +Lydia +Minnie +Phyllis +Ramona +Teresa +Alma +Angelita +Armida +Caroline +Delfina +Emily +Gertrude +Guadalupe +Hortensia +Juana +Olga +Socorro +Viola +Violet +Adela +Angela +Angelina +Antonia +Blanche +Christine +Cora +Cruz +Geneva +Gloria +June +Manuela +Myrtle +Rebecca +Rosario +Sally +Ada +Adelina +Alberta +Carolina +Cecelia +Concha +Ella +Esperanza +Fay +Francisca +Henrietta +Hope +Isabelle +Josefina +Mabel +Marian +Maxine +Mona +Nancy +Nora +Olive +Pearl +Rachel +Sadie +Sara +Victoria +Wilma +Mary +Maria +Helen +Dorothy +Margaret +Frances +Ruth +Carmen +Virginia +Alice +Eva +Evelyn +Josephine +Louise +Mildred +Grace +Rose +Lupe +Esther +Lillian +Marie +Nellie +Thelma +Elizabeth +Irene +Lucille +Dolores +Hazel +Julia +Juanita +Katherine +Lucy +Anita +Beatrice +Betty +Edith +Florence +Jennie +Antonia +Eleanor +Adela +Adelina +Bertha +Elvira +Ethel +Gertrude +Isabel +Marjorie +Pauline +Barbara +Bessie +Celia +Consuelo +Jane +Jessie +Victoria +Amalia +Edna +Jean +Laura +Lena +Martha +Teresa +Anna +Dora +Henrietta +June +Kathryn +Lydia +Rita +Ida +Ruby +Stella +Trinidad +Ann +Annie +Charlotte +Doris +Ellen +Genevieve +Lois +Manuela +Minnie +Nina +Pearl +Socorro +Sophie +Velma +Viola +Amelia +Angelita +Bernice +Caroline +Christine +Clara +Emma +Gladys +Margarita +Marian +Myrtle +Nora +Rebecca +Rosa +Sarah +Theresa +Agnes +Alicia +Angelina +Aurora +Blanche +Connie +Delia +Georgia +Guadalupe +Inez +Lola +Mabel +Marguerite +Marion +Mercedes +Mercy +Ramona +Roberta +Vera +Aurelia +Bonnie +Catherine +Cecilia +Della +Ella +Emily +Fern +Francis +Leah +Louisa +Mollie +Opal +Phyllis +Rafaela +Sylvia +Angela +Armida +Concepcion +Cora +Elena +Ernestine +Fannie +Flora +Harriet +Herminia +Hilda +Hortencia +Hortensia +Ina +Jewel +Josefina +Lillie +Mae +Miriam +Molly +Norma +Sally +Soledad +Susie +Tillie +Vivian +Mary +Maria +Margaret +Helen +Virginia +Ruth +Carmen +Frances +Dorothy +Josephine +Alice +Mildred +Elizabeth +Bertha +Nellie +Evelyn +Julia +Betty +Beatrice +Dolores +Irene +Lupe +Jessie +Esther +Martha +Barbara +Lucy +Emma +Marie +Anita +Anna +Antonia +Grace +Rose +Consuelo +Eva +Gladys +Guadalupe +Hazel +Lillian +Victoria +Celia +Pauline +Amelia +Dora +Edna +Louise +Rosa +Annie +Jean +Juanita +Aurora +Francisca +Jennie +Lois +Margarita +Vivian +Clara +Edith +Ellen +Elsie +Ethel +Florence +Isabel +Jane +Marjorie +Rachel +Bessie +Connie +Doris +Olga +Thelma +Angela +Lola +Minnie +Patricia +Ruby +Concha +Eleanor +Genevieve +Laura +Lena +Mercedes +Myrtle +Teresa +Vera +Wilma +Agnes +Angie +Armida +Aurelia +Bernice +Charlotte +Eloisa +Elvira +Inez +June +Mae +Maxine +Paula +Petra +Rita +Adela +Alicia +Amalia +Ann +Catherine +Cruz +Esperanza +Gertrude +Marion +Natalia +Sara +Sarah +Sophie +Theresa +Amy +Angelina +Bonnie +Concepcion +Delfina +Delia +Della +Emily +Henrietta +Herminia +Josefina +Katherine +Lucille +Manuela +Olive +Pearl +Sally +Violet +Adeline +Anne +Carlota +Caroline +Catalina +Cecilia +Effie +Flora +Herlinda +Janet +Joan +Lorraine +Lydia +Maggie +Nora +Norma +Phyllis +Rafaela +Ramona +Rebecca +Stella +Susie +Trinidad +Velma +Verna +Ada +Alberta +Alma +Andrea +Angelita +Artemisa +Beatriz +Carol +Carrie +Elisa +Eloise +Estella +Faye +Georgia +Hope +Juana +Kathleen +Kathryn +Librada +Lillie +Mabel +Mamie +Marguerite +Mariana +Melba +Merle +Muriel +Nettie +Refugio +Socorro +Mary +Maria +Carmen +Virginia +Margaret +Helen +Dorothy +Frances +Ruth +Alice +Lupe +Josephine +Julia +Rose +Betty +Elizabeth +Eva +Dolores +Eleanor +Nellie +Anita +Louise +Mildred +Consuelo +Dora +Isabel +Marjorie +Anna +Evelyn +Grace +Amelia +Bertha +Martha +Sarah +Beatrice +Lucy +Barbara +Edna +Teresa +Emma +Jennie +Lucille +Lydia +Antonia +Esther +Ethel +Irene +Manuela +Marie +Rita +Guadalupe +Jean +Jessie +Patricia +Rosa +Ruby +Socorro +Clara +Elsie +June +Stella +Annie +Bessie +Florence +Genevieve +Gladys +Juana +Pauline +Ramona +Vera +Ida +Juanita +Adela +Agnes +Aurora +Charlotte +Elvira +Laura +Lois +Victoria +Viola +Violet +Doris +Edith +Ella +Hazel +Katherine +Marguerite +Bernice +Celia +Mercedes +Minnie +Pearl +Petra +Blanche +Francisca +Henrietta +Lena +Lillian +Margarita +Myrtle +Nancy +Rebecca +Thelma +Angelita +Catherine +Josefina +Roberta +Alicia +Amalia +Angela +Ann +Cruz +Ellen +Gertrude +Jane +Kathleen +Kathryn +Lola +Phyllis +Vivian +Ana +Andrea +Beatriz +Connie +Flora +Georgia +Geraldine +Hortense +Leona +Leonor +Lily +Mabel +Nina +Olive +Sadie +Sara +Wilma +Alejandra +Alma +Anne +Armida +Delia +Eloisa +Emily +Esperanza +Eugenia +Francis +Hortencia +Josefa +Maxine +May +Melba +Mercy +Molly +Olivia +Opal +Rachel +Rafaela +Refugio +Rosie +Sophie +Sylvia +Zona +Adelina +Angelina +Angie +Artemisa +Aurelia +Belen +Beulah +Billie +Carlota +Caroline +Catalina +Christina +Ernestina +Estella +Eunice +Evangeline +Hilda +Inez +Lorraine +Margie +Natalia +Nora +Olga +Peggy +Rena +Rhoda +Rosemary +Sally +Selma +Soledad +Tillie +Verna +Winifred +Mary +Maria +Helen +Margaret +Frances +Virginia +Carmen +Dorothy +Ruth +Alice +Louise +Josephine +Betty +Elizabeth +Nellie +Esther +Anita +Dolores +Julia +Lupe +Aurora +Isabel +Marie +Mildred +Consuelo +Lucy +Pauline +Amelia +Evelyn +Juanita +Jessie +Socorro +Edith +Jean +Rose +Angelita +Clara +Eva +Irene +Lillian +Ramona +Vera +Dora +Lydia +Marjorie +Rosa +Sarah +Anna +Bertha +Antonia +Barbara +Elsie +Lucille +Manuela +Martha +Rita +Eleanor +Hazel +Laura +Lorraine +Thelma +Beatrice +Elvira +Geraldine +Charlotte +Concha +Florence +Grace +Ida +June +Ethel +Jennie +Margarita +Annie +Emma +Gertrude +Guadalupe +Rosie +Ruby +Alicia +Cruz +Katherine +Norma +Patricia +Pearl +Theresa +Celia +Gladys +Marian +Mercedes +Teresa +Adelina +Amalia +Connie +Elena +Esperanza +Juana +Lola +Marguerite +Nancy +Rebecca +Shirley +Wilma +Doris +Ernestina +Kathryn +Maxine +Rachel +Stella +Susie +Victoria +Ada +Agnes +Alma +Angela +Ann +Armida +Catherine +Delfina +Eunice +Harriet +Inez +Jane +Josefina +Lily +Lois +Mabel +Minnie +Natalia +Olga +Opal +Petra +Sophie +Angelina +Concepcion +Ellen +Eloisa +Enriqueta +Ernestine +Estella +Genevieve +Georgia +Kathleen +Mae +Myrtle +Rosario +Sara +Viola +Angie +Aurelia +Bessie +Catalina +Cecilia +Christine +Cora +Delia +Della +Ella +Eloise +Etta +Francisca +Gregoria +Hope +Hortencia +Hortensia +Joy +Lucia +Mercy +Rosemary +Sadie +Soledad +Verna +Adela +Adeline +Anne +Bernice +Bonnie +Carolina +Cleo +Cuca +Dixie +Eileen +Fay +Irma +Joan +Lena +Leonor +Lillie +Maclovia +Matilda +Mollie +Nettie +Nora +Roberta +Sally +Trinidad +Violet +Winifred +Mary +Maria +Helen +Dorothy +Frances +Ruth +Virginia +Margaret +Alice +Carmen +Josephine +Betty +Lupe +Elizabeth +Mildred +Rose +Louise +Nellie +Anna +Barbara +Eva +Hazel +Juanita +Marie +Socorro +Esther +Julia +Lucy +Sarah +Marjorie +Dolores +Grace +Irene +Jean +Antonia +Aurora +Jessie +Rosa +Consuelo +Evelyn +Florence +Doris +Mercedes +Pauline +Thelma +Vera +Lillian +Martha +Clara +Dora +Emma +Laura +Anita +Eleanor +Guadalupe +Edith +Elsie +Isabel +Jennie +Lucille +Patricia +Rita +Ruby +Amelia +Juana +Ramona +Teresa +Annie +Beatrice +Bertha +Inez +Manuela +Francisca +Geraldine +Jane +Katherine +Lois +Alicia +Gladys +Margarita +Stella +Victoria +Agnes +Ethel +Genevieve +June +Lydia +Angelita +Armida +Bernice +Celia +Lola +Minnie +Roberta +Shirley +Vivian +Adelina +Angelina +Catalina +Connie +Delia +Elisa +Gertrude +Mabel +Ann +Concha +Cora +Edna +Elvira +Esperanza +Henrietta +Kathryn +Leona +Paula +Phyllis +Rosie +Sally +Sara +Alma +Bessie +Bette +Elena +Ella +Eunice +Harriet +Ida +Marion +Norma +Olive +Olivia +Pearl +Peggy +Viola +Amalia +Charlotte +Georgia +Herminia +Hortense +Kathleen +Leonor +Lillie +Lorraine +Louisa +Marian +Mercy +Rachel +Rebecca +Refugio +Beulah +Emily +Hilda +Irma +May +Micaela +Mollie +Petra +Sylvia +Theresa +Velma +Violet +Ada +Adela +Angela +Audrey +Blanche +Carlota +Christine +Dixie +Elma +Eloisa +Evangelina +Felicitas +Flora +Joan +Luz +Melba +Natalie +Sofia +Susie +Tillie +Tomasa +Trinidad +Wanda +Wilma +Andrea +Artemisa +Aurelia +Carolyn +Catherine +Cecilia +Christina +Cleo +Cruz +Delfina +Edythe +Erlinda +Ernestine +Fannie +Francis +Herlinda +Hope +Ila +Ina +Isabelle +Katie +Librada +Lorenza +Opal +Otilia +Patsy +Rafaela +Rosalie +Rosario +Susan +Virgie +Willie +Winifred +Yvonne +Mary +Maria +Margaret +Helen +Alice +Frances +Dorothy +Carmen +Josephine +Virginia +Betty +Ruth +Lupe +Nellie +Elizabeth +Marie +Marjorie +Esther +Irene +Socorro +Rose +Antonia +Eleanor +Amelia +Anna +Isabel +Mildred +Anita +Elsie +Clara +Dolores +Edna +Eva +Evelyn +Julia +Lillian +Edith +Florence +Grace +Barbara +Jean +Lois +Louise +Ramona +Rita +Bertha +Emma +Lucy +Aurora +Annie +Dora +Doris +Juanita +Katherine +Ruby +Beatrice +Consuelo +Ida +Jane +Jennie +Lucille +Martha +Ethel +Guadalupe +Kathryn +Charlotte +Jessie +Lorraine +Manuela +Pauline +Bessie +Elvira +Patricia +Celia +Gladys +Margarita +Mercedes +Sarah +Vera +Angelita +Ella +Hilda +Laura +Nancy +Petra +Thelma +Genevieve +Inez +June +Marion +Myrtle +Ophelia +Velma +Alicia +Alma +Bernice +Juana +Lola +Lydia +Rachel +Shirley +Catalina +Catherine +Cruz +Elena +Francisca +Gloria +Hazel +Josefina +Mabel +Margie +Norma +Pearl +Phyllis +Rosie +Violet +Adela +Angelina +Armida +Bonnie +Concha +Delia +Eunice +Fern +Flora +Georgia +Gertrude +Henrietta +Mae +Marian +Mercy +Rosa +Rosario +Teresa +Wilma +Ann +Bette +Billie +Esperanza +Hortense +Lena +Lily +Marguerite +Minnie +Sylvia +Adeline +Caroline +Concepcion +Connie +Della +Elaine +Ernestina +Estella +Geraldine +Hope +May +Rebecca +Sara +Sophie +Trinidad +Victoria +Viola +Adelina +Amalia +Ana +Cecilia +Erlinda +Freda +Leonor +Molly +Peggy +Rosaura +Sally +Susie +Theresa +Vivian +Wanda +Ada +Agnes +Alberta +Angela +Artemisa +Aurelia +Beatriz +Belen +Carol +Carrie +Cecelia +Christine +Cora +Daisy +Delfina +Donna +Eloisa +Emilia +Eulalia +Hortensia +Joan +Josie +Joyce +Leona +Magdalena +Maxine +Micaela +Mona +Nora +Ofelia +Refugio +Roberta +Sadie +Sybil +Mary +Maria +Helen +Margaret +Betty +Virginia +Frances +Ruth +Dorothy +Alice +Carmen +Josephine +Eva +Irene +Rose +Elizabeth +Louise +Anna +Julia +Lupe +Evelyn +Mildred +Barbara +Dolores +Eleanor +Isabel +Emma +Socorro +Consuelo +Lillian +Marjorie +Martha +Nellie +Bertha +Jessie +Ramona +Beatrice +Dora +Doris +Manuela +Celia +Sarah +Rita +Rosa +Vera +Edna +Esther +Ida +June +Lucy +Amelia +Bessie +Hazel +Jennie +Juana +Lois +Lydia +Marie +Norma +Pauline +Ruby +Clara +Jean +Katherine +Florence +Grace +Juanita +Laura +Alicia +Anita +Catherine +Gloria +Guadalupe +Lorraine +Thelma +Angelita +Edith +Ethel +Geraldine +Lola +Lucille +Margarita +Marian +Phyllis +Rosie +Stella +Connie +Elsie +Gladys +Maggie +Patricia +Sally +Teresa +Adelina +Ann +Annie +Antonia +Elvira +Georgia +Josefina +Mae +Margie +Myrtle +Nancy +Trinidad +Wanda +Armida +Charlotte +Ella +Gertrude +Herminia +Mabel +Opal +Shirley +Vivian +Angela +Artemisa +Aurora +Christine +Concha +Ellen +Ernestine +Hortencia +Hortensia +Jacqueline +Jane +Kathleen +Minnie +Pearl +Theresa +Violet +Amalia +Cecilia +Delfina +Delia +Eloise +Emily +Genevieve +Jesus +Marion +Mercedes +Naomi +Olivia +Petra +Rachel +Rebecca +Rosalie +Sara +Soledad +Agnes +Belen +Catalina +Christina +Concepcion +Cora +Cruz +Daisy +Elaine +Elisa +Erlinda +Estella +Faye +Flora +Francisca +Henrietta +Inez +Jeanne +Lena +Ofelia +Peggy +Rena +Roberta +Anne +Aurelia +Bennie +Beverly +Cleo +Della +Elena +Emilia +Esperanza +Evangelina +Francis +Harriett +Hope +Josie +Joyce +Leonor +Lilly +Marilyn +Maxine +Mercy +Molly +Tillie +Victoria +Wilma +Mary +Maria +Helen +Betty +Carmen +Margaret +Virginia +Alice +Dorothy +Ruth +Frances +Josephine +Dolores +Rose +Dora +Elizabeth +Evelyn +Marjorie +Mildred +Eva +Lucy +Lupe +Martha +Bertha +Anna +Esther +Irene +Julia +Nellie +Barbara +Consuelo +Edith +Emma +Isabel +Louise +Clara +Lillian +Sarah +Florence +Jessie +Juanita +Katherine +Marie +Jean +Rosa +Socorro +Anita +Aurora +Celia +Edna +Elvira +Guadalupe +Gloria +Lydia +Ruby +Norma +Stella +Thelma +Bessie +Connie +Eleanor +Grace +Rosie +Sally +Antonia +Beatrice +Margarita +Nancy +Pauline +Alicia +Hazel +June +Lucille +Patricia +Rita +Adelina +Annie +Cruz +Esperanza +Ida +Jennie +Lois +Pearl +Phyllis +Ramona +Susie +Amelia +Angelina +Armida +Daisy +Elsie +Ethel +Rosalie +Vera +Vivian +Amalia +Georgia +Hortensia +Jane +Juana +Margie +Marian +Rachel +Sara +Aurelia +Caroline +Charlotte +Concepcion +Delia +Doris +Francisca +Geraldine +Leona +Mae +Molly +Shirley +Teresa +Victoria +Viola +Adela +Adeline +Angelita +Anne +Catalina +Catherine +Cora +Della +Ella +Ernestina +Estella +Flora +Gladys +Hattie +Josefina +Kathryn +Laura +Lily +Mercedes +Minnie +Peggy +Sadie +Velma +Agnes +Bernice +Billie +Emilia +Fannie +Genevieve +Hortencia +Lena +Lola +Manuela +Paula +Alma +Alta +Angela +Artemisa +Bettie +Bonnie +Elaine +Elena +Elisa +Enedina +Gertrude +Henrietta +Hope +Inez +Josefa +Joyce +Lila +Luisa +Mercy +Nora +Olga +Rebecca +Violet +Wanda +Wilma +Alyce +Angie +Ann +Beatriz +Cecilia +Delfina +Eloise +Emily +Erlinda +Francis +Hilda +Isabelle +Kathleen +Lillie +Lorraine +Marion +Melba +Myrtle +Natalia +Natalie +Ofelia +Priscilla +Refugio +Roberta +Rosemary +Sofia +Soledad +Sylvia +Theresa +Tillie +Winifred +Mary +Maria +Betty +Alice +Helen +Dorothy +Margaret +Carmen +Frances +Ruth +Josephine +Virginia +Dolores +Martha +Lupe +Marjorie +Consuelo +Julia +Rose +Bertha +Lucy +Socorro +Irene +Nellie +Rita +Jessie +Marie +Louise +Eva +Guadalupe +Anita +Beatrice +Eleanor +Anna +Gloria +Elizabeth +Katherine +Mildred +Antonia +Armida +Barbara +Emma +Esther +Isabel +Ramona +Bessie +Doris +Juanita +Patricia +Rosa +Ruby +Clara +Evelyn +Jean +Margarita +Vera +Annie +Lillian +Teresa +Amelia +Dora +Edith +Ethel +Grace +June +Lois +Pauline +Shirley +Connie +Flora +Florence +Gertrude +Lucille +Sarah +Aurora +Charlotte +Delia +Edna +Hazel +Thelma +Celia +Sara +Stella +Angelita +Cecilia +Elsie +Ernestine +Lillie +Marian +Rosie +Sally +Victoria +Vivian +Adelina +Catherine +Elvira +Esperanza +Geraldine +Gladys +Jane +Juana +Lorraine +Peggy +Petra +Tillie +Viola +Adela +Angelina +Concepcion +Elena +Ella +Jennie +Laura +Norma +Pearl +Rachel +Rebecca +Wanda +Ann +Billie +Elisa +Emily +Genevieve +Hortencia +Kathleen +Lydia +Manuela +Marion +Mercedes +Nancy +Phyllis +Rosario +Sophie +Susie +Alicia +Belia +Cruz +Della +Erlinda +Georgia +Henrietta +Ida +Joyce +Margie +Micaela +Myrtle +Olga +Violet +Alma +Aurelia +Ignacia +Lena +Luz +Trinidad +Wilma +Angela +Benita +Bette +Bettie +Catalina +Delfina +Eloisa +Emilia +Francisca +Gregoria +Hilda +Hope +Inez +Kathryn +Lucia +Madge +Mae +Marguerite +Melba +Melva +Minnie +Olivia +Polly +Soledad +Sylvia +Theresa +Velma +Verna +Ada +Adeline +Agnes +Amalia +Amparo +Arcelia +Artemisa +Beatriz +Bernice +Blanche +Carol +Cleo +Colleen +Enriqueta +Ernestina +Fern +Francis +Josefa +Josie +Lela +Leonor +Lilly +Linda +Mable +Matilde +Molly +Natalia +Olive +Ora +Rosemary +Mary +Maria +Betty +Helen +Dorothy +Alice +Carmen +Frances +Margaret +Virginia +Josephine +Ruth +Nellie +Gloria +Irene +Dora +Lucy +Esther +Julia +Lupe +Barbara +Doris +Juanita +Marie +Socorro +Anna +Elizabeth +Eva +Dolores +Rose +Isabel +Jean +Louise +Anita +Jessie +Emma +Marjorie +Shirley +Beatrice +Consuelo +Lillian +Patricia +Rosa +Amelia +Bessie +Celia +Aurora +Bertha +Norma +Eleanor +Ella +Guadalupe +Hazel +Katherine +Lucille +Mildred +Armida +Elsie +Laura +Lydia +Rita +Annie +Edith +Florence +Jennie +Manuela +Pauline +Ramona +Sarah +Angelita +Catalina +Lois +Vera +Clara +Minnie +Alicia +Elvira +Evelyn +Margarita +Martha +Sally +Susie +Connie +Esperanza +Hortensia +Rosie +Thelma +Victoria +Bernice +Delia +Grace +June +Maxine +Alma +Antonia +Charlotte +Edna +Geraldine +Hortencia +Ida +Josefina +Joyce +Lorraine +Nancy +Peggy +Petra +Ruby +Stella +Agnes +Artemisa +Cecilia +Cora +Gertrude +Gladys +Juana +Margie +Mercedes +Patsy +Viola +Adelina +Angela +Angelina +Aurelia +Bette +Carolina +Concha +Ernestina +Ethel +Hilda +Lola +Olga +Sara +Sofia +Sylvia +Violet +Adela +Ernestine +Faye +Francisca +Georgia +Jane +Joan +Lena +Lillie +Lucia +Marion +Ofelia +Roberta +Vivian +Wanda +Amparo +Catherine +Ellen +Enedina +Genevieve +Henrietta +Janice +Kathleen +Leona +Mable +Mae +May +Myrtle +Nora +Ophelia +Rachel +Rosalie +Teresa +Theresa +Velma +Wilma +Winnie +Amalia +Billie +Blanche +Bonnie +Christine +Delfina +Elisa +Elva +Fannie +Flora +Harriet +Hortense +Imogene +Katie +Larue +Lidia +Lilly +Mabel +Marian +Nadine +Natalia +Phyllis +Rebecca +Rosario +Rosemary +Verna +Ada +Alberta +Andrea +Ann +Anne +Beatriz +Belen +Beth +Carolyn +Clotilde +Colleen +Concepcion +Conception +Cruz +Elaine +Emily +Erlinda +Estella +Gwendolyn +Hattie +Hope +Ila +Inez +Jeanette +Jeanne +Jenny +Joy +Leonor +Lily +Lorna +Magdalena +Marilyn +Micaela +Olivia +Pearl +Sadie +Tillie +Trinidad +Winifred +Yvonne +Mary +Maria +Betty +Margaret +Dorothy +Frances +Alice +Carmen +Helen +Virginia +Barbara +Josephine +Ruth +Dora +Lupe +Gloria +Dolores +Lucy +Patricia +Eva +Esther +Elizabeth +Julia +Marie +Rose +Mildred +Socorro +Irene +Jean +Lois +Nellie +Annie +Juanita +Sally +Anita +Beatrice +Emma +Isabel +Marjorie +Guadalupe +Norma +Rita +Lillian +Rosa +Stella +Thelma +Bertha +Clara +Juana +Louise +Shirley +Amelia +Consuelo +Evelyn +Margarita +Rosie +Sarah +Eleanor +Elvira +Grace +Lydia +Martha +Aurora +Doris +Edith +Ethel +Ramona +Susie +Cecilia +Elsie +Lucille +Petra +Anna +Celia +Lily +Minnie +Teresa +Vera +Carol +Christine +Ida +Joan +June +Manuela +Maxine +Bonnie +Connie +Emily +Estella +Jennie +Jessie +Katherine +Lena +Mercedes +Ruby +Sara +Viola +Alicia +Angelita +Delia +Edna +Ernestina +Florence +Francisca +Gladys +Jane +Josefina +Pauline +Peggy +Adela +Ann +Bernice +Bessie +Billie +Charlotte +Concha +Ernestine +Genevieve +Gertrude +Kathleen +Olga +Rebecca +Theresa +Wanda +Aurelia +Caroline +Concepcion +Elena +Laura +Mae +Marion +Paula +Phyllis +Rosemary +Velma +Victoria +Vivian +Adeline +Amparo +Angela +Angelina +Angie +Anne +Armida +Catalina +Catherine +Cruz +Ella +Eloisa +Hortencia +Joyce +Lucia +Mabel +Nancy +Ofelia +Opal +Pearl +Sylvia +Agnes +Beverly +Ellen +Georgia +Hope +Lilly +Marian +Marilyn +Mercy +Nora +Patsy +Trinidad +Zonnie +Alta +Amalia +Artemisa +Bette +Cleo +Constance +Daisy +Donna +Emilia +Enedina +Erma +Esperanza +Flora +Francis +Hazel +Jacqueline +Lillie +Luz +May +Molly +Natalia +Nettie +Nina +Ophelia +Sofia +Adelina +Amy +Andrea +Cora +Elisa +Genoveva +Geraldine +Henrietta +Hortensia +Jeanne +Josefa +Joy +Laverne +Leonor +Loretta +Lorraine +Marina +Melba +Olivia +Otilia +Refugio +Rosalie +Sadie +Soledad +Tillie +Verna +Violet +Mary +Maria +Betty +Helen +Margaret +Alice +Frances +Barbara +Carmen +Josephine +Virginia +Ruth +Dolores +Dorothy +Lupe +Irene +Esther +Nellie +Julia +Bertha +Annie +Lydia +Norma +Teresa +Dora +Martha +Elizabeth +Anita +Emma +Guadalupe +Marie +Rose +Ramona +Socorro +Consuelo +Eva +Isabel +Jessie +Louise +Patricia +Gloria +Mildred +Rosie +Shirley +Jean +Margarita +Eleanor +Florence +Thelma +Anna +Celia +Pauline +Sarah +Vera +Doris +Grace +Ida +Juanita +Phyllis +Beatrice +Clara +Evelyn +Gladys +Joyce +Marjorie +Rita +Amelia +Connie +Elvira +Katherine +Lois +Ruby +Angelita +Aurora +Bessie +Hazel +June +Laura +Lucy +Maxine +Minnie +Stella +Antonia +Edna +Esperanza +Francisca +Joan +Lillian +Marian +Roberta +Armida +Edith +Nancy +Pearl +Sally +Viola +Ann +Geraldine +Jennie +Lorraine +Rosa +Alicia +Aurelia +Billie +Concepcion +Ella +Nora +Velma +Delia +Elsie +Ernestine +Faye +Hortencia +Lillie +Lucia +Manuela +Peggy +Petra +Tillie +Victoria +Violet +Vivian +Wanda +Adela +Angela +Catalina +Colleen +Elisa +Eloisa +Estella +Genevieve +Hortensia +Josie +Kathleen +Lena +Lilly +Luz +Mercedes +Naomi +Olga +Wilma +Agnes +Amalia +Artemisa +Beverly +Carolyn +Cora +Ellen +Hilda +Juana +Mercy +Myrtle +Nadine +Rebecca +Rosalie +Angie +Audrey +Christine +Delfina +Donna +Eileen +Ernestina +Evangeline +Georgia +Harriet +Henrietta +Kathryn +Lucille +Mae +Maggie +Margie +Marilyn +Patsy +Rosemary +Susie +Alma +Angelina +Bernice +Bonnie +Carolina +Elena +Erlinda +Eugenia +Fannie +Flora +Jesus +Josefina +Leona +Leonor +Lily +Linda +Lola +Matilda +Pat +Rachel +Sadie +Velia +Aileen +Beatriz +Belia +Bette +Carol +Cecilia +Daisy +Della +Ethel +Eunice +Fern +Gertrude +Gregoria +Herminia +Hope +Lidia +Lila +Loraine +Nina +Olivia +Paula +Soledad +Sophie +Susan +Velda +Verna +Willie +Mary +Betty +Maria +Dorothy +Alice +Helen +Margaret +Barbara +Carmen +Ruth +Frances +Virginia +Dolores +Josephine +Dora +Gloria +Guadalupe +Lucy +Patricia +Irene +Socorro +Norma +Anita +Eva +Martha +Nellie +Doris +Bertha +Marie +Marjorie +Rose +Emma +Pauline +Sarah +Teresa +Shirley +Amelia +Edna +Isabel +Julia +Mildred +Rita +Anna +Annie +Joyce +Lupe +Lydia +Rosa +Delia +Elizabeth +Evelyn +Jean +Louise +Eleanor +Elsie +Elvira +Geraldine +Grace +Margarita +Clara +Esperanza +Jessie +Juanita +Lois +Ramona +Sally +Victoria +Alicia +Antonia +Edith +June +Susie +Thelma +Bessie +Juana +Lillian +Ruby +Connie +Esther +Francisca +Laura +Manuela +Aurora +Hortensia +Josefina +Marilyn +Peggy +Sara +Stella +Catalina +Natalia +Olga +Rosie +Angelita +Beatrice +Beverly +Consuelo +Ella +Ernestine +Ethel +Hazel +Jennie +Marian +Minnie +Nancy +Armida +Charlotte +Elisa +Lena +Rachel +Velma +Verna +Agnes +Angelina +Aurelia +Belen +Cecilia +Celia +Elena +Ernestina +Jo +Lorraine +Lucia +Margie +Wanda +Adelina +Artemisa +Bernice +Florence +Katherine +Kathryn +Leona +Leonor +Molly +Phyllis +Sylvia +Vera +Viola +Belia +Billie +Concepcion +Cruz +Ellen +Emily +Geneva +Genevieve +Gladys +Henrietta +Jane +Joan +Lily +Lucille +Mariana +Ofelia +Rosemary +Ada +Delfina +Della +Herminia +Joy +Marion +May +Mercy +Patsy +Pearl +Priscilla +Rebecca +Rena +Roberta +Theresa +Aida +Audrey +Carolina +Christina +Cora +Daisy +Donna +Elaine +Estella +Eunice +Georgia +Hilda +Ida +Jacqueline +Jeanne +Jesus +Magdalena +Melba +Rosalie +Sadie +Violet +Vivian +Alma +Angela +Ann +Bette +Blanche +Bonnie +Caroline +Carolyn +Cecelia +Elva +Erma +Ester +Fern +Flora +Harriet +Jeannette +Kathleen +Lidia +Lilly +Lola +Mae +Maggie +Martina +Matilde +Myrtle +Nadine +Natividad +Olive +Olivia +Petra +Polly +Rafaela +Velia +Mary +Maria +Betty +Barbara +Helen +Dorothy +Alice +Margaret +Virginia +Carmen +Josephine +Patricia +Ruth +Shirley +Gloria +Frances +Rose +Lupe +Bertha +Dolores +Dora +Marie +Emma +Irene +Norma +Aurora +Eva +Martha +Peggy +Ramona +Esther +Joyce +Juanita +Nellie +Anita +Evelyn +Lucy +Billie +Julia +Isabel +Margarita +Pauline +Rosa +Anna +Hazel +Socorro +Beatrice +Sally +Amelia +Annie +Celia +Doris +Ida +Lydia +Mildred +Teresa +Elvira +Lois +Jean +Nancy +Clara +Elizabeth +Lena +Louise +Rosie +Beverly +Consuelo +Delia +Ella +Geraldine +Rita +Sarah +Guadalupe +Jennie +Stella +Thelma +Alicia +Ann +Bonnie +Eleanor +Joan +June +Lola +Phyllis +Viola +Wanda +Ethel +Florence +Jane +Lucille +Vera +Armida +Carol +Charlotte +Edna +Katherine +Lillian +Marian +Marjorie +Susie +Bessie +Catherine +Connie +Emily +Georgia +Grace +Josefina +Lorraine +Rebecca +Velma +Bernice +Edith +Evangelina +Flora +Jessie +Mercedes +Ofelia +Olga +Sara +Angelita +Antonia +Colleen +Cruz +Delfina +Delores +Ellen +Elsie +Ernestine +Esperanza +Francisca +Jacqueline +Laura +Minnie +Myrtle +Nina +Nora +Olivia +Patsy +Petra +Ruby +Angela +Cora +Donna +Evangeline +Joann +Rachel +Sue +Theresa +Velia +Violet +Vivian +Ada +Adela +Concha +Eloisa +Enedina +Gladys +Josie +Lucia +Mae +Magdalena +Marilyn +Maxine +Rosemary +Tillie +Adeline +Angelina +Arlene +Candelaria +Catalina +Eloise +Erlinda +Ernestina +Estella +Etta +Fay +Geneva +Genevieve +Hilda +Hortensia +Irma +Juana +Lilly +Maggie +Margie +Mercy +Rosario +Verna +Victoria +Yvonne +Adelina +Agnes +Amalia +Artemisa +Aurelia +Beatriz +Belen +Carlota +Caroline +Carolyn +Concepcion +Cristina +Daisy +Della +Elaine +Francis +Jeanne +Leona +Mabel +Manuela +Marion +Mona +Oralia +Rafaela +Roberta +Sylvia +Amparo +Anne +Bette +Blanche +Cecelia +Cecilia +Elena +Emilia +Erma +Estelle +Henrietta +Herminia +Imogene +Jo +Joanne +Lila +Lora +Lula +Luz +Micaela +Molly +Myrna +Nadine +Natalia +Pearl +Priscilla +Raquel +Sharon +Trinidad +Wilma +Yolanda +Mary +Betty +Maria +Helen +Barbara +Frances +Patricia +Margaret +Dorothy +Alice +Virginia +Carmen +Dolores +Ruth +Josephine +Rose +Gloria +Martha +Irene +Louise +Elizabeth +Joan +Nancy +Rita +Nellie +Bertha +Norma +Shirley +Marie +Sally +Jean +Lucy +Lupe +Esther +Sarah +Dora +Doris +Jennie +Emma +Juanita +Anita +Beatrice +Eva +Annie +Lillian +Rosa +Jessie +Lois +Mildred +Patsy +Donna +Marilyn +Consuelo +Jacqueline +Joyce +Marjorie +Anna +Gladys +Julia +Pauline +Ramona +Rosemary +Ruby +Socorro +Stella +Wanda +Amelia +Edna +Evelyn +Teresa +Celia +Francisca +Antonia +Aurora +Carol +Catalina +Clara +Delia +Ethel +Minnie +Ann +Bessie +Beverly +Elvira +Isabel +Lucille +Margie +Peggy +Rachel +Alicia +Ella +Florence +Geraldine +Josefina +Laura +Lorraine +Edith +Elisa +Grace +Guadalupe +Jane +Margarita +Phyllis +Rebecca +Ellen +Elsie +June +Wilma +Angie +Armida +Aurelia +Bernice +Billie +Concepcion +Connie +Kathryn +Leona +Lydia +Olga +Angelita +Bonnie +Carolina +Cecilia +Elaine +Eleanor +Ernestine +Esperanza +Estella +Ida +Joanne +Marian +Ofelia +Olivia +Rosie +Velma +Andrea +Angela +Anne +Catherine +Emily +Eunice +Evangeline +Genevieve +Hazel +Jo +Juana +Lola +Manuela +Mollie +Roberta +Sue +Thelma +Tillie +Verna +Angelina +Caroline +Daisy +Elena +Ernestina +Georgia +Hilda +Irma +Janice +Lily +Loretta +Marion +Opal +Pearl +Susie +Theresa +Adela +Eloise +Hortencia +Joy +Katherine +Katie +Lila +Lillie +Mae +Maggie +Naomi +Nora +Priscilla +Sara +Vera +Viola +Violet +Yolanda +Agnes +Ana +Artemisa +Belen +Belia +Charlene +Colleen +Cruz +Emilia +Flora +Glenna +Harriet +Inez +Jeanette +Lena +Lenora +Lilia +Linda +Lorna +Mabel +Mercedes +Mona +Natalia +Raquel +Rosalie +Sadie +Vivian +Zonnie +Adelina +Alberta +Amalia +Charlotte +Christine +Concha +Cora +Eliza +Erlinda +Erma +Ermelinda +Eufemia +Geneva +Gertrude +Henrietta +Imogene +Janet +Jeanne +Jesus +Jesusita +Joann +Joe +Johnnie +Jose +Kathleen +Leonor +Lucia +Lula +Maxine +Mercy +Micaela +Molly +Myrtle +Nadine +Neva +Nina +Nona +Oralia +Pat +Petra +Regina +Sylvia +Trinidad +Victoria +Mary +Betty +Barbara +Alice +Helen +Margaret +Dorothy +Virginia +Maria +Frances +Norma +Carmen +Gloria +Rose +Patricia +Ruth +Shirley +Dolores +Irene +Josephine +Anna +Amelia +Esther +Martha +Nellie +Joan +Marie +Lucy +Juanita +Louise +Stella +Doris +Annie +Billie +Connie +Elizabeth +Joyce +Lydia +Patsy +Jessie +Marjorie +Bonnie +Eva +Evelyn +Ruby +Sarah +Teresa +Wanda +Dora +Emma +Ida +Jean +Lupe +Mildred +Peggy +Donna +Edna +Geraldine +Lois +Olga +Rita +Sally +Beverly +Carol +Isabel +Jennie +Laura +Nancy +Ramona +Rosa +Agnes +Alicia +Ann +Bertha +Celia +Elsie +Lucille +Phyllis +Armida +Beatrice +Delia +Elvira +Jane +Marilyn +Rosie +Vera +Angie +Joanne +Julia +Pauline +Rachel +Socorro +Angelita +Anita +Bessie +Clara +Guadalupe +Kathleen +Lily +Margarita +Maxine +Ofelia +Pat +Vivian +Consuelo +Edith +Hazel +Jo +Katherine +Susie +Adelina +Cruz +Elisa +Genevieve +Rebecca +Aurora +Charlotte +Ethel +June +Lillian +Lola +Lorraine +Manuela +Margie +Minnie +Theresa +Velma +Viola +Antonia +Caroline +Ella +Georgia +Grace +Henrietta +Janice +Joann +Marion +Nona +Bobbie +Delores +Ernestine +Estella +Florence +Hortencia +Irma +Jenny +Marian +Myrtle +Yolanda +Adeline +Angelina +Anne +Carolyn +Erlinda +Esperanza +Francisca +Inez +Josefina +Josie +Juana +Lena +Magdalena +Maggie +Marlene +Raquel +Sylvia +Thelma +Violet +Adela +Alberta +Angela +Bettie +Blanche +Concepcion +Delphine +Dixie +Elaine +Eleanor +Elena +Ellen +Janet +Jeanne +Judith +Leona +Mercy +Naomi +Nelda +Nina +Petra +Rosalie +Tillie +Verna +Wilma +Yvonne +Alma +Alta +Amparo +Audrey +Aurelia +Bernice +Bette +Catherine +Cecilia +Christine +Colleen +Daisy +Della +Emily +Ernestina +Eula +Eunice +Faye +Fern +Geneva +Harriet +Hilda +Hortensia +Jackie +Jeannette +Joy +Leonor +Lula +Madeline +Marylou +Nadine +Ophelia +Roberta +Sadie +Sara +Sophie +Sue +Velia +Victoria +Mary +Betty +Barbara +Helen +Alice +Maria +Margaret +Virginia +Dorothy +Frances +Shirley +Josephine +Carmen +Gloria +Patricia +Ruth +Irene +Nancy +Dolores +Norma +Martha +Marie +Rose +Elizabeth +Nellie +Patsy +Sally +Bertha +Doris +Lupe +Rosie +Sarah +Donna +Dora +Julia +Lucy +Peggy +Anna +Evelyn +Joan +Teresa +Wanda +Amelia +Annie +Armida +Jane +Jean +Juanita +Lois +Mildred +Beatrice +Beverly +Eleanor +Esther +Pauline +Stella +Edna +Ella +Eva +Isabel +Rita +Ann +Carol +Clara +Marilyn +Marjorie +Rachel +Viola +Charlotte +Emma +Jennie +Vera +Anita +Elsie +Elvira +Grace +Joyce +Loretta +Margarita +Olga +Consuelo +Delia +Geraldine +Laura +Lucille +Vivian +Angelita +Billie +Connie +Inez +Jo +Socorro +Sylvia +Bessie +Bonnie +Guadalupe +Lillian +Lorraine +Louise +Ramona +Wilma +Agnes +Antonia +Janet +Katherine +Lydia +Phyllis +Rebecca +Theresa +Velma +Bernice +Cecilia +Estella +Ethel +Gladys +Ida +Irma +Joann +Lillie +Rosa +Alicia +Angelina +Aurora +Catalina +Delores +Elisa +Esperanza +Florence +Hilda +Jacqueline +Jeanne +Jessie +Mae +Marian +Petra +Rosalie +Rosemary +Thelma +Amy +Carmelita +Ernestine +Kathryn +Lilly +Manuela +Roberta +Tillie +Verna +Alma +Arlene +Celia +Edith +Ernestina +Genevieve +Georgia +Josefina +Juana +June +Kathleen +Lena +Margie +Marlene +Minnie +Myrtle +Nora +Ofelia +Paula +Sadie +Sue +Susie +Adela +Angela +Audrey +Bette +Carolyn +Christine +Concha +Cora +Cruz +Elaine +Faye +Flora +Francisca +Jeanette +Katie +Lily +Linda +Lucia +Maggie +Natalie +Opal +Pat +Victoria +Violet +Angie +Belen +Bobbie +Catherine +Charlene +Dalia +Delfina +Della +Emily +Enedina +Fannie +Freda +Gayle +Geneva +Glenna +Hazel +Henrietta +Herminia +Iris +Josie +Lila +Lola +Lula +Mamie +Nadine +Polly +Ruby +Sara +Mary +Betty +Barbara +Helen +Alice +Margaret +Virginia +Frances +Dorothy +Carmen +Patricia +Maria +Shirley +Norma +Dolores +Gloria +Martha +Dora +Josephine +Elizabeth +Joan +Carol +Irene +Nancy +Nellie +Pauline +Ruth +Sally +Patsy +Julia +Rose +Juanita +Lydia +Ramona +Anna +Bertha +Eva +Lucy +Annie +Phyllis +Rosie +Beverly +Louise +Rita +Anita +Donna +Socorro +Connie +Delia +Esther +Isabel +Jessie +Margie +Marie +Marilyn +Sylvia +Ann +Antonia +Bonnie +Doris +Evelyn +Jean +Peggy +Clara +Grace +Joyce +Lois +Lupe +Olga +Sara +Sarah +Carolyn +Celia +Lillian +Ruby +Wanda +Armida +Charlotte +Darlene +Jo +Josie +Laura +Mildred +Teresa +Agnes +Angie +Geraldine +Gladys +Guadalupe +Jennie +Joann +Katherine +Marian +Verna +Aurora +Bessie +Billie +Eleanor +Ella +Ethel +June +Lena +Pearl +Beatrice +Consuelo +Flora +Joanne +Lillie +Nora +Stella +Amelia +Edith +Florence +Georgia +Inez +Irma +Katie +Maxine +Ofelia +Rachel +Rosa +Alicia +Angelina +Angelita +Caroline +Cecilia +Elsie +Emma +Ernestine +Jane +Janet +Kathleen +Kay +Lorraine +Margarita +Marjorie +Olivia +Sue +Susan +Susie +Theresa +Viola +Vivian +Wilma +Bette +Bobbie +Christine +Cora +Della +Delores +Ernestina +Hazel +Henrietta +Jacqueline +Leona +Lily +Maggie +Marlene +Mollie +Naomi +Thelma +Ada +Edna +Elaine +Elena +Elvira +Esperanza +Jackie +Janice +Jeanette +Jeanne +Josefina +Kathryn +Manuela +Mercedes +Mercy +Nina +Rebecca +Rena +Rosemary +Victoria +Adelina +Arlene +Audrey +Bernice +Catherine +Charlene +Dixie +Earlene +Eileen +Ellen +Elva +Erma +Fern +Francisca +Genevieve +Gertrude +Harriet +Ida +Juana +Laverne +Lolita +Loretta +Lucille +Mae +Matilda +Minnie +Nelda +Nona +Rosario +Terry +Tillie +Velia +Velma +Vera +Mary +Betty +Barbara +Helen +Alice +Margaret +Frances +Dorothy +Shirley +Maria +Ruth +Irene +Virginia +Carmen +Nancy +Patricia +Gloria +Rose +Josephine +Sally +Esther +Carol +Evelyn +Beverly +Dolores +Marie +Nellie +Lupe +Martha +Norma +Elizabeth +Joyce +Sylvia +Teresa +Anita +Lydia +Grace +Lucy +Beatrice +Julia +Socorro +Connie +Donna +Edna +Jean +Joan +Marjorie +Pauline +Ramona +Dora +Sarah +Ann +June +Louise +Patsy +Peggy +Anna +Eva +Juanita +Rosie +Ruby +Amelia +Bessie +Celia +Doris +Emma +Mercy +Phyllis +Rosa +Angelita +Armida +Bernice +Billie +Charlotte +Marilyn +Stella +Wanda +Bertha +Carolyn +Isabel +Margarita +Mildred +Rita +Clara +Delia +Geraldine +Ida +Jessie +Jo +Joanne +Lillian +Lillie +Mae +Ofelia +Olga +Rachel +Aurora +Bonnie +Cecilia +Hortencia +Janet +Linda +Nora +Olivia +Thelma +Theresa +Antonia +Ethel +Hazel +Katherine +Laura +Pat +Sadie +Annie +Cecelia +Eleanor +Elsie +Jennie +Margie +Alicia +Angie +Catherine +Consuelo +Darlene +Edith +Ella +Joann +Josie +Lena +Lucille +Sandra +Viola +Angelina +Arlene +Audrey +Della +Elaine +Elisa +Irma +Jeanette +Kathleen +Maxine +Molly +Vera +Victoria +Wilma +Ana +Bobbie +Dixie +Elena +Esperanza +Faye +Georgia +Hilda +Janice +Judith +Lola +Marlene +Minnie +Rebecca +Vivian +Yolanda +Aurelia +Belia +Christine +Delfina +Delores +Eileen +Eloise +Erlinda +Estella +Etta +Flora +Francisca +Isabelle +Josefina +Kay +Leonor +Lois +Loretta +Lorraine +Mollie +Myrna +Natalia +Nina +Rosalie +Sara +Sophie +Terry +Velia +Alma +Anne +Annette +Antoinette +Bette +Blanche +Charlene +Concepcion +Concha +Ellen +Elva +Emily +Enedina +Evangelina +Evangeline +Glenda +Ila +Jacqueline +Jeanne +Josefa +Joy +Laverne +Leona +Lily +Maggie +Naomi +Ophelia +Priscilla +Roberta +Rosemary +Sue +Susie +Violet +Mary +Betty +Shirley +Barbara +Helen +Alice +Margaret +Maria +Frances +Gloria +Patricia +Dorothy +Virginia +Irene +Nancy +Carmen +Carol +Donna +Marilyn +Lucy +Dolores +Dora +Joyce +Josephine +Louise +Ruth +Marie +Phyllis +Rose +Rosie +Beverly +Evelyn +Norma +Sally +Peggy +Ramona +Sylvia +Billie +Esther +Jo +Bertha +Julia +Lupe +Rachel +Wanda +Anna +Carolyn +Janet +Martha +Olga +Teresa +Eva +Joan +Amelia +Clara +Delia +Juanita +Marjorie +Pauline +Rosa +Ann +Doris +Nellie +Sarah +Thelma +Eleanor +Elizabeth +Emma +Lillian +Patsy +Rita +Annie +Elsie +Charlotte +Connie +Edith +Geraldine +Jean +Katherine +Loretta +Lydia +Margie +Ruby +Socorro +Anita +Jane +Janice +Joanne +Vera +Jennie +Lois +Roberta +Vivian +Yvonne +Bernice +Bessie +Grace +Hazel +Margarita +Mildred +Paula +Sandra +Stella +Alicia +Armida +Kay +Linda +Mae +Susan +Victoria +Carole +Cecilia +Charlene +Florence +Georgia +Ida +Isabel +Josie +Kathryn +Laura +Lena +Nadine +Wilma +Angelita +Audrey +Beatrice +Caroline +Edna +Gladys +Guadalupe +Jessie +Joy +Marian +Marlene +Olivia +Pat +Sharon +Theresa +Angelina +Aurelia +Blanche +Bonnie +Cecelia +Christine +Daisy +Elvira +Emily +Ernestine +Flora +Irma +Lillie +Lorraine +Minnie +Patty +Rena +Verna +Viola +Antonia +Aurora +Bobbie +Celia +Della +Diane +Ellen +Ethel +Genevieve +Hortencia +Inez +June +Leona +Mabel +Maxine +Myrtle +Velia +Violet +Adelina +Alma +Arlene +Catherine +Concha +Delores +Elaine +Ella +Frankie +Judith +Karen +Lilly +Lola +Maggie +Mercedes +Rebecca +Sara +Susie +Velma +Adela +Ana +Angie +Belen +Carolina +Consuelo +Elena +Eloisa +Eloise +Faye +Jackie +Janie +Jeanette +Jeanne +Joann +Lily +Lucille +Lula +Marcella +Marcia +Matilda +May +Nelda +Nona +Ophelia +Petra +Rosalie +Rosemary +Rosita +Ruthie +Sadie +Sue +Tillie +Mary +Betty +Barbara +Shirley +Helen +Virginia +Frances +Nancy +Alice +Gloria +Margaret +Patricia +Maria +Dorothy +Irene +Carmen +Martha +Rose +Lydia +Carol +Sally +Norma +Sylvia +Dolores +Ruth +Julia +Josephine +Esther +Joyce +Donna +Carolyn +Connie +Dora +Lupe +Nellie +Annie +Lucy +Peggy +Rita +Anita +Juanita +Phyllis +Stella +Doris +Jean +Loretta +Teresa +Anna +Beverly +Joan +Louise +Marilyn +Evelyn +Patsy +Roberta +Charlotte +Clara +Eva +Lois +Socorro +Cecilia +Eleanor +Elizabeth +Janet +Marie +Vera +Emma +Geraldine +Grace +Jane +Janice +Joann +Lillian +Pauline +Rachel +Sarah +Ann +Ida +Jo +June +Ramona +Rosa +Amelia +Bertha +Florence +Judith +Rosie +Ruby +Sandra +Sharon +Thelma +Wanda +Angie +Bessie +Edna +Isabel +Joanne +Lorraine +Lucille +Mae +Olga +Agnes +Bernice +Edith +Ellen +Georgia +Margie +Marian +Marjorie +Marlene +Alicia +Delia +Kay +Laura +Lillie +Olivia +Sara +Yvonne +Beatrice +Billie +Bonnie +Della +Elaine +Elsie +Estella +Genevieve +Hazel +Irma +Mercy +Pat +Rebecca +Sue +Susie +Theresa +Alma +Carole +Celia +Jennie +Katherine +Kathleen +Mildred +Rosemary +Vivian +Alberta +Arlene +Armida +Cruz +Ella +Ethel +Henrietta +Hortencia +Jacqueline +Jessie +Kathryn +Linda +Maggie +Matilda +Angelita +Bobbie +Caroline +Catherine +Christine +Delores +Flora +Hilda +Inez +Karen +Lena +Myrna +Ophelia +Priscilla +Rena +Velma +Adelina +Audrey +Charlene +Daisy +Darlene +Dixie +Elena +Erlinda +Esperanza +Eunice +Glenna +Jeanne +Josefina +Joy +Leona +Lilly +Marylou +Maxine +Nina +Nora +Opal +Susan +Suzanne +Velia +Verna +Victoria +Alta +Ana +Annette +Antonia +Belia +Beth +Claudia +Consuelo +Cynthia +Elvira +Gladys +Guadalupe +Hortensia +Iva +Janell +Jeanette +Jenny +Jerry +Laverne +Lula +Minnie +Molly +Naomi +Ofelia +Sadie +Viola +Violet +Mary +Betty +Barbara +Helen +Margaret +Shirley +Frances +Gloria +Patricia +Virginia +Alice +Nancy +Dorothy +Rose +Carol +Irene +Martha +Maria +Carolyn +Nellie +Norma +Sally +Beverly +Dolores +Elizabeth +Joyce +Ruth +Anna +Carmen +Marilyn +Sylvia +Annie +Peggy +Roberta +Wanda +Juanita +Emma +Joan +Lucy +Anita +Bertha +Donna +Josephine +Patsy +Amelia +Janice +Margie +Doris +Evelyn +Bonnie +Dora +Loretta +Mildred +Sarah +Esther +Joann +Louise +Lydia +Ruby +Clara +Eva +Ida +Lupe +Grace +Isabel +Janet +Jean +Jo +Julia +Linda +Marie +Ramona +Yvonne +Elsie +June +Katherine +Margarita +Rita +Stella +Charlotte +Eleanor +Rachel +Sue +Ann +Darlene +Geraldine +Marjorie +Olga +Olivia +Sandra +Connie +Jennie +Pauline +Phyllis +Rosie +Victoria +Bessie +Diane +Edith +Jane +Karen +Lillian +Yolanda +Alicia +Delia +Ernestine +Jessie +Laura +Lois +Marlene +Minnie +Teresa +Armida +Carole +Charlene +Edna +Elvira +Joanne +Lena +Lillie +Sharon +Socorro +Vivian +Celia +Christine +Ella +Genevieve +Judy +Lorraine +Pat +Rosa +Verna +Angie +Beatrice +Ellen +Esperanza +Irma +Jackie +Kathleen +Kay +Lucille +Rosalie +Viola +Arlene +Aurora +Catherine +Cecilia +Claudia +Dixie +Glenda +Guadalupe +Jacqueline +Jeanette +Myrna +Paula +Susan +Agnes +Andrea +Angelita +Billie +Deanna +Delores +Elaine +Eloisa +Estella +Geneva +Joy +Mae +Marylou +Sara +Thelma +Velia +Wilma +Anne +Bernice +Bobbie +Diana +Eloise +Evangeline +Florence +Harriet +Jenny +Josie +Judith +Kathryn +Manuela +Marian +Maxine +Melba +Nadine +Ofelia +Ophelia +Sheila +Susie +Terry +Velma +Adelina +Alma +Angelina +Antonia +Betsy +Della +Faye +Flora +Georgia +Gwendolyn +Hazel +Laverne +Lidia +Lilly +Mona +Petra +Rebecca +Rosemary +Sadie +Theresa +Toni +Violet +Ada +Alberta +Angela +Annette +Cecelia +Christina +Colleen +Cora +Elva +Emilia +Emily +Ernestina +Estela +Ethel +Francisca +Frankie +Gertrude +Herminia +Inez +Jody +Lila +Lola +Maggie +Marion +Mercy +Molly +Natalia +Nora +Tillie +Mary +Barbara +Betty +Patricia +Alice +Frances +Margaret +Shirley +Helen +Nancy +Virginia +Dorothy +Gloria +Irene +Maria +Beverly +Carol +Sylvia +Martha +Carmen +Rose +Sally +Norma +Donna +Ruth +Dolores +Josephine +Joyce +Sharon +Elizabeth +Evelyn +Juanita +Marie +Carolyn +Wanda +Darlene +Linda +Esther +Joan +Judy +Julia +Lupe +Marilyn +Nellie +Pat +Rita +Sandra +Dora +Doris +Janice +Judith +Karen +Olga +Peggy +Rachel +Bertha +Lydia +Janet +Margie +Patsy +Phyllis +Isabel +Louise +Annie +Charlotte +Jane +Lucy +Marjorie +Stella +Teresa +Connie +Maxine +Rosie +Beatrice +Elsie +Jean +Jo +Rosalie +Socorro +Anita +Eleanor +Grace +Jennie +Kay +Loretta +Ramona +Angie +Bonnie +Cecilia +Ethel +Lillian +Amelia +Aurora +Delia +Emma +Kathleen +Lillie +Margarita +Pauline +Rebecca +Sarah +Susan +Vera +Alicia +Alma +Armida +Billie +Carole +Cecelia +Genevieve +Joanne +Katherine +Lena +Lois +Marlene +Rosa +Yolanda +Yvonne +Angelina +Ann +Anna +Bernice +Catherine +Celia +Charlene +Deanna +Edna +Eva +Georgia +Mildred +Olivia +Roberta +Clara +Delores +Ella +Ellen +Ernestine +Florence +Joann +Joy +Kathryn +Mae +Priscilla +Ruby +Sue +Wilma +Edith +Elaine +Emily +Hazel +Henrietta +Irma +Jessie +Josie +Lorraine +Velia +Verna +Vivian +Audrey +Bobbie +Christine +Ida +Marylou +Myrna +Nora +Thelma +Victoria +Anne +Della +Diane +Dixie +Erma +Glenda +Jackie +Jeanette +Jenny +Laura +Lily +Lucille +Marian +Molly +Nina +Ofelia +Theresa +Angela +Beth +Cora +Cynthia +Daisy +Elsa +Ernestina +Flora +Geneva +Guadalupe +Hilda +June +Leona +Manuela +Sadie +Sonja +Susie +Velma +Aida +Alberta +Angelita +Bessie +Caroline +Consuelo +Diana +Elvira +Etta +Gayle +Geraldine +Glenna +Jacqueline +Lenore +Lilly +Lucia +Maggie +Nadine +Ophelia +Paula +Romelia +Suzanne +Adela +Artemisa +Belen +Beulah +Carmelita +Claudia +Cruz +Elena +Elisa +Elvia +Erlinda +Eunice +Gail +Gwen +Gwendolyn +Hortencia +Inez +Jeannette +Juana +Katie +Lola +Madeline +Mickey +Minnie +Myrtle +Naomi +Pearl +Petra +Rosemary +Sheila +Tillie +Tommie +Mary +Barbara +Betty +Alice +Patricia +Margaret +Maria +Carol +Helen +Nancy +Frances +Gloria +Irene +Shirley +Carmen +Virginia +Dorothy +Linda +Sandra +Dolores +Ruth +Sylvia +Norma +Sharon +Carolyn +Martha +Patsy +Rose +Marilyn +Josephine +Nellie +Donna +Marie +Wanda +Janet +Joyce +Phyllis +Juanita +Lupe +Judy +Lucy +Evelyn +Judith +Beverly +Charlotte +Annie +Elizabeth +Jean +Joan +Rosie +Anita +Ann +Esther +Peggy +Connie +Rachel +Roberta +Stella +Cecilia +Sally +Anna +Lydia +Rita +Dora +Emma +Jo +Karen +Carole +Doris +Eleanor +Louise +Olga +Rosalie +Clara +Claudia +Elsie +Janice +Rosa +Ruby +Sarah +Susan +Beatrice +Billie +Bonnie +Darlene +Diane +Elaine +Katherine +Laura +Marjorie +Thelma +Amelia +Eva +Geraldine +Lillian +Marlene +Olivia +Pauline +Priscilla +Irma +Loretta +Pat +Vera +Yolanda +Angelita +Delia +Julia +Lois +Margie +Mildred +Ramona +Angelina +Christine +Grace +Kathleen +Lorraine +Margarita +Maxine +Ofelia +Rebecca +Sue +Theresa +Viola +Armida +Bertha +Edna +Ellen +Glenda +Isabel +Marylou +Rosemary +Susie +Wilma +Anne +Catherine +Ethel +Jane +Myrna +Yvonne +Audrey +Charlene +Diana +Estella +Florence +Ida +Jeanette +Jennie +Jessie +Laverne +Marion +Naomi +Nora +Teresa +Velia +Alta +Cecelia +Celia +Delores +Ella +Emily +Ernestine +Lena +Lynda +Marian +Molly +Sadie +Sherry +Socorro +Agnes +Alberta +Angie +Carolina +Elva +Elvira +Guadalupe +Hortencia +Jackie +Josie +June +Kathryn +Kay +Leona +Lillie +Lola +Mercy +Velma +Vivian +Alicia +Alma +Arlene +Aurora +Bessie +Brenda +Caroline +Deanna +Della +Dixie +Edith +Gail +Genevieve +Georgia +Gladys +Joann +Joy +Maggie +Marcia +Patty +Rosemarie +Suzanne +Victoria +Andrea +Angela +Annette +Antonia +Belia +Bernice +Erlinda +Evangeline +Francisca +Hazel +Jeannette +Joanne +Julie +Lucille +Lynn +Lynne +Madeline +Mae +Manuela +Maryhelen +Minnie +Paula +Pearl +Regina +Sara +Sonja +Terry +Toni +Verna +Violet +Mary +Barbara +Betty +Patricia +Linda +Margaret +Carol +Helen +Alice +Frances +Gloria +Nancy +Virginia +Shirley +Judith +Sharon +Dorothy +Maria +Martha +Rose +Sandra +Irene +Carolyn +Sylvia +Carmen +Joyce +Norma +Sally +Judy +Lydia +Ruth +Marie +Elizabeth +Dolores +Evelyn +Beverly +Esther +Anita +Lucy +Patsy +Phyllis +Janice +Lupe +Peggy +Rita +Josephine +Anna +Marilyn +Nellie +Wanda +Louise +Doris +Cecilia +Donna +Julia +Connie +Rosa +Ella +Jo +Karen +Rachel +Susan +Charlotte +Dora +Joan +Ann +Billie +Jane +Katherine +Olga +Rosie +Sarah +Stella +Bertha +Bonnie +Eva +Jean +Joann +Juanita +Eleanor +Jessie +Margie +Christine +Grace +Janet +Ramona +Angie +Geraldine +Josie +Lois +Olivia +Yvonne +Annie +Charlene +Jennie +Myrna +Pauline +Rebecca +Sue +Teresa +Vivian +Carole +Evangeline +Florence +Ida +June +Kathleen +Loretta +Marjorie +Mildred +Ruby +Wilma +Antonia +Beatrice +Brenda +Clara +Darlene +Emma +Georgia +Glenda +Lillian +Pat +Roberta +Sara +Sherry +Arlene +Catherine +Irma +Minnie +Thelma +Vera +Vicki +Yolanda +Alicia +Alma +Andrea +Edith +Edna +Isabel +Kathryn +Margarita +Paula +Rosalie +Theresa +Bernice +Bessie +Christina +Diane +Elaine +Guadalupe +Lena +Lorraine +Marlene +Priscilla +Sheila +Terry +Victoria +Emily +Genevieve +Hortensia +Jeannette +Kay +Laura +Marian +Mercy +Ofelia +Pearl +Verna +Angelita +Anne +Annette +Claudia +Colleen +Concha +Cora +Ellen +Erlinda +Ernestina +Flora +Glenna +Hazel +Henrietta +Jacqueline +Jerry +Joanne +Lillie +Maxine +Nadine +Naomi +Socorro +Susie +Viola +Adelina +Adeline +Amelia +Aurora +Belia +Beulah +Bobbie +Carmelita +Caroline +Celia +Consuelo +Deanna +Delia +Diana +Dianne +Dixie +Dolly +Estella +Gail +Joy +Juana +Julie +Lola +Lynn +Madeline +Marion +Violet +Agnes +Alta +Angelina +Armida +Aurelia +Betsy +Della +Delores +Elsie +Elvira +Erma +Gayle +Geneva +Gladys +Hortencia +Iris +Josefina +Leona +Lorena +Lucille +Lynda +Mabel +Marguerite +Marsha +Marylou +Molly +Mona +Myrtle +Nettie +Nora +Petra +Velia +Velma +Vicky +Willa +Mary +Barbara +Betty +Linda +Patricia +Gloria +Margaret +Alice +Sandra +Nancy +Frances +Virginia +Dorothy +Helen +Shirley +Irene +Carolyn +Sharon +Carmen +Norma +Maria +Martha +Carol +Joyce +Judith +Judy +Donna +Sylvia +Marie +Rose +Sally +Ruth +Dolores +Wanda +Beverly +Esther +Elizabeth +Josephine +Cecilia +Janice +Karen +Janet +Susan +Anita +Ann +Joan +Bonnie +Stella +Brenda +Connie +Louise +Lydia +Olivia +Peggy +Dora +Lois +Nellie +Patsy +Annie +Doris +Marilyn +Marjorie +Anna +Juanita +Julia +Loretta +Rita +Sarah +Beatrice +Clara +Evelyn +Jean +Phyllis +Ramona +Bertha +Edith +Lupe +Rosie +Ruby +Billie +Jennie +Jo +Lucy +Roberta +Yolanda +Diane +Joann +Kathleen +Laura +Lynda +Olga +Rachel +Suzanne +Diana +Edna +Jeanette +Jessie +Lillian +Lorraine +Eleanor +Ella +Emma +Ida +Josie +Katherine +Mae +Margie +Maxine +Rebecca +Teresa +Carole +Catherine +Charlene +Charlotte +Elaine +Georgia +Joanne +Pauline +Rosa +Bessie +Deanna +Delia +Ellen +Eva +Glenda +Grace +Guadalupe +Henrietta +Jane +Kay +Pat +Rosemary +Sherry +Socorro +Velma +Victoria +Christine +Hazel +Julie +Thelma +Caroline +Geraldine +Kathryn +Lola +Margarita +Mildred +Myrna +Pearl +Priscilla +Sue +Amelia +Angie +Arlene +Armida +Bernice +Bobbie +Celia +Elvira +Emily +Erlinda +Ethel +Florence +Gladys +Lucille +Nora +Vivian +Alberta +Alicia +Alma +Aurora +Darlene +Delores +Erma +Irma +Jacqueline +Lena +Paula +Rosalie +Viola +Agnes +Anne +Claudia +Elsie +Ernestine +Estella +Hortencia +Jenny +Joy +June +Lillie +Lily +Molly +Pamela +Patty +Susie +Theresa +Vera +Wilma +Angelina +Annette +Bettie +Cecelia +Constance +Consuelo +Della +Elsa +Esperanza +Fannie +Flora +Frieda +Gail +Gayle +Isabel +Jeannie +Johnnie +Leona +Marcia +Marylou +Minnie +Nona +Ofelia +Rena +Verna +Alta +Andrea +Angela +Angelita +Antonia +Artemisa +Audrey +Cynthia +Dixie +Elva +Eunice +Evangeline +Freda +Geneva +Genevieve +Hope +Jackie +Jovita +Judie +Laverne +Lee +Lorene +Lucia +Madeline +Marcella +Marian +Marlene +Melba +Mercy +Myrtle +Nadine +Regina +Ruthie +Sadie +Sandy +Terry +Willie +Mary +Barbara +Betty +Linda +Patricia +Sharon +Gloria +Helen +Virginia +Nancy +Carol +Sandra +Shirley +Margaret +Judy +Maria +Alice +Carolyn +Frances +Martha +Joyce +Judith +Sylvia +Dorothy +Norma +Irene +Rose +Karen +Donna +Peggy +Louise +Carmen +Marilyn +Josephine +Sally +Dolores +Jo +Olivia +Elizabeth +Janice +Beverly +Juanita +Susan +Marie +Patsy +Rita +Roberta +Lois +Bonnie +Evelyn +Doris +Janet +Ruth +Carole +Eva +Sarah +Charlotte +Lupe +Rosie +Anita +Anna +Bertha +Cecilia +Esther +Julia +Lucy +Phyllis +Ramona +Nellie +Ann +Rosa +Catherine +Joan +Yolanda +Connie +Kathleen +Mildred +Pat +Stella +Darlene +Diane +Georgia +Jean +Katherine +Loretta +Rebecca +Brenda +Lillian +Pauline +Teresa +Annie +Beatrice +Charlene +Edna +Elsie +Geraldine +Glenda +Ida +Jessie +Lorraine +Margie +Rosemary +Socorro +Wanda +Dora +Grace +Josie +Lydia +Margarita +Marlene +Olga +Sherry +Bessie +Claudia +Joann +Joanne +Laura +Lillie +Lynda +Rosalie +Ruby +Eleanor +Genevieve +Irma +Kay +Mae +Marjorie +Priscilla +Sue +Velma +Wilma +Angie +Arlene +Armida +Clara +Delia +Diana +Ella +Emma +Rachel +Sheila +Antonia +Billie +Caroline +Elaine +Emily +Jennie +Maxine +Victoria +Angelita +Cynthia +Edith +Ethel +Gladys +Isabel +Mercy +Pamela +Paula +Penny +Thelma +Theresa +Yvonne +Ellen +Guadalupe +Jacqueline +Jane +Jeanette +Kathy +Lena +Vera +Anne +Audrey +Celia +Christine +Consuelo +Elvira +Flora +Gail +Hazel +Julie +Kathryn +Lilly +Maggie +Nora +Sadie +Sharron +Susie +Terry +Vicki +Bernice +Cecelia +Delores +Dixie +Faye +Jenny +Marcia +Marsha +Minnie +Myrna +Naomi +Suzanne +Alta +Bobbie +Carla +Erlinda +Ernestine +Gayle +Lenora +Leona +Lynn +Marian +Marion +Nina +Regina +Tillie +Veronica +Aida +Alicia +Alma +Angelina +Cora +Della +Erma +Glenna +Harriet +Henrietta +Herlinda +Jackie +Lana +Lorna +Mabel +Madeline +Marla +Marylou +Melinda +Sara +Vickie +Vivian +Alberta +Annette +Aurora +Christina +Constance +Cruz +Dianna +Dianne +Elisa +Eloise +Esperanza +Evangeline +Fannie +Florence +Inez +Janie +Jeanne +June +Laverne +Lela +Loraine +Lou +Lucia +Lucille +Lupita +Lynne +Miriam +Molly +Myrtle +Nola +Ofelia +Ophelia +Petra +Rosario +Sondra +Tommie +Verna +Viola +Violet +Mary +Barbara +Linda +Patricia +Sharon +Betty +Sandra +Gloria +Carol +Margaret +Frances +Shirley +Carolyn +Karen +Virginia +Alice +Helen +Nancy +Judy +Martha +Maria +Susan +Donna +Joyce +Irene +Judith +Carmen +Dorothy +Sylvia +Cecilia +Elizabeth +Norma +Rose +Janice +Dolores +Ruth +Connie +Diane +Sally +Beverly +Janet +Phyllis +Annie +Marie +Kathleen +Ann +Lois +Louise +Patsy +Anita +Charlotte +Anna +Jo +Wanda +Doris +Esther +Evelyn +Josephine +Marilyn +Grace +Lupe +Peggy +Yolanda +Bertha +Brenda +Pamela +Jane +Lucy +Rebecca +Bonnie +Margie +Olga +Diana +Geraldine +Teresa +Dora +Jessie +Loretta +Pauline +Rita +Rosemary +Rosie +Carole +Lillian +Margarita +Olivia +Roberta +Christine +Elaine +Marjorie +Sarah +Sue +Angie +Arlene +Cheryl +Ella +Jacqueline +Joan +June +Laura +Ramona +Lydia +Nellie +Ruby +Victoria +Vivian +Deanna +Irma +Jean +Joanne +Josie +Katherine +Kathryn +Kay +Rachel +Sherry +Wilma +Clara +Dianne +Eva +Ida +Isabel +Jennie +Juanita +Julia +Vicki +Delia +Gladys +Lillie +Lorraine +Paula +Priscilla +Rosalie +Stella +Darlene +Edna +Eleanor +Esperanza +Georgia +Joann +Lynda +Maxine +Angelina +Beatrice +Bobbie +Elena +Emma +Guadalupe +Hazel +Jeanette +Marsha +Mildred +Rosa +Sheila +Alma +Antonia +Bernice +Caroline +Celia +Charlene +Elsie +Glenda +Marcia +Angelita +Gail +Lena +Lucille +Marcella +Marlene +Maryann +Molly +Nora +Pat +Sara +Suzanne +Terry +Theresa +Vera +Alicia +Anne +Consuelo +Geneva +Genevieve +Gwendolyn +Henrietta +Jackie +Lucinda +Mercy +Violet +Yvonne +Amelia +Armida +Becky +Bessie +Cecelia +Claudia +Cynthia +Della +Eileen +Florence +Harriet +Inez +Jenny +Joy +Kathy +Manuela +Naomi +Rena +Socorro +Susie +Andrea +Aurora +Catherine +Edith +Ellen +Eloise +Elva +Emily +Ernestine +Frankie +Leona +Leslie +Mae +Maureen +Mercedes +Myrna +Pearl +Sadie +Thelma +Toni +Verna +Alta +Ana +Dixie +Dolly +Elvira +Erma +Ethel +Flora +Hilda +Jan +Jerry +Julie +Maggie +Marian +Marion +Minnie +Nina +Rosemarie +Rosita +Tillie +Amy +Angela +Beth +Billie +Carmelita +Catalina +Daisy +Delores +Dianna +Effie +Erlinda +Ernestina +Estella +Evangeline +Fay +Francis +Francisca +Janie +Jeannette +Judie +Leah +Lily +Lorene +Lupita +Lynne +Mabel +Marylou +Michael +Millie +Nadine +Patty +Penelope +Sallie +Trudy +Valerie +Veronica +Viola +Mary +Barbara +Linda +Patricia +Margaret +Carol +Sandra +Sharon +Judy +Gloria +Betty +Nancy +Frances +Shirley +Maria +Judith +Karen +Carolyn +Susan +Virginia +Martha +Alice +Donna +Helen +Irene +Dorothy +Norma +Elizabeth +Marie +Sylvia +Bonnie +Connie +Carmen +Cheryl +Joyce +Josephine +Sally +Beverly +Pamela +Patsy +Rose +Carole +Janet +Kathleen +Marilyn +Ruth +Jo +Anna +Charlotte +Joan +Lupe +Yolanda +Brenda +Esther +Janice +Diane +Dolores +Grace +Julia +Ann +Louise +Evelyn +Peggy +Olivia +Josie +Lydia +Lorraine +Nellie +Rosie +Sue +Bertha +Catherine +Cecilia +Jane +Katherine +Rita +Diana +Geraldine +Jean +Phyllis +Juanita +Margarita +Susie +Wanda +Anita +Doris +Margie +Sherry +Toni +Victoria +Arlene +Ida +Marsha +Rosa +Sarah +Bobbie +Rachel +Stella +Teresa +Christine +Ella +Joann +Kathryn +Lucy +Pauline +Rebecca +Roberta +Della +Dianne +Georgia +Lynda +Ruby +Bernice +Billie +Darlene +Dora +Glenda +Guadalupe +Kay +Laura +Pat +Ramona +Sheila +Terry +Alicia +Clara +Consuelo +Delia +Eleanor +Irma +Jeanette +Jessie +Julie +Lillian +Lois +Loretta +Marjorie +Olga +Paula +Rosemary +Annie +Deanna +Delores +Edna +Ellen +Emma +Gail +Marlene +Socorro +Veronica +Vivian +Angie +Beatrice +Charlene +Isabel +Joanne +Lucille +Maggie +Marian +Mildred +Naomi +Nora +Suzanne +Wilma +Antonia +Dianna +Elaine +Estella +Jackie +Jacqueline +Jennie +Jenny +Lily +Lynn +Mae +Vicki +Armida +Claudia +Elsie +Ernestine +Eva +Hilda +Inez +Jeanne +Jeannette +Lena +Leslie +Lillie +Marcia +Penny +Priscilla +Thelma +Vera +Alma +Andrea +Angelina +Angelita +Anne +Celia +Cruz +Daisy +Elvira +Genevieve +Hortensia +Judi +Manuela +Marcella +Marylou +Nina +Sadie +Sara +Verna +Amelia +Angela +Audrey +Cecelia +Ernestina +Ethel +Florence +Hope +Jan +Jennifer +Joy +Kathy +Leona +Lula +Madeline +Marion +Maureen +Melva +Michele +Saundra +Yvonne +Agnes +Bessie +Beth +Constance +Dana +Dona +Edith +Eileen +Esperanza +Eunice +Evangeline +Gayle +Ginger +Gladys +Janie +June +Mabel +Maryann +Minnie +Monica +Nona +Patty +Rosalie +Sandy +Theresa +Trudy +Vickie +Ada +Aurora +Becky +Caroline +Christina +Deborah +Dixie +Elena +Elva +Erlinda +Faye +Geneva +Glenna +Henrietta +Hortencia +Iris +Joanna +Juana +Lana +Lola +Lucia +Lupita +Marla +Maryellen +Mercy +Merle +Myrna +Ofelia +Pam +Robin +Velma +Vicky +Mary +Linda +Barbara +Patricia +Sharon +Carol +Sandra +Gloria +Margaret +Nancy +Judy +Betty +Donna +Maria +Shirley +Susan +Karen +Virginia +Carolyn +Alice +Judith +Sylvia +Joyce +Frances +Martha +Irene +Dorothy +Janet +Janice +Marilyn +Rose +Helen +Yolanda +Elizabeth +Kathleen +Marie +Connie +Carmen +Cheryl +Diana +Dolores +Sally +Beverly +Lydia +Diane +Pamela +Peggy +Norma +Ann +Anna +Juanita +Lupe +Brenda +Katherine +Rita +Ruth +Phyllis +Victoria +Esther +Kathryn +Patsy +Anita +Bonnie +Cecilia +Elaine +Ella +Geraldine +Jean +Josephine +Lucy +Charlotte +Evelyn +Rosie +Joan +Julia +Annie +Vicki +Wanda +Beatrice +Charlene +Doris +Jane +Lorraine +Margie +Ruby +Christine +Laura +Louise +Pauline +Rebecca +Susie +Teresa +Carole +Dianne +Ellen +Georgia +Jeanne +Paula +Roberta +Rosa +Stella +Vivian +Catherine +Jo +Rachel +Sherry +Terry +Grace +Joann +Lois +Marjorie +Ramona +Eva +Jennie +Lena +Loretta +Olivia +Sarah +Sue +Theresa +Arlene +Claudia +Dora +Guadalupe +Lucille +Marcia +Marian +Nellie +Priscilla +Angie +Antonia +Bertha +Elsie +Elvira +Emma +Ida +Kay +Marsha +Rosemary +Sheila +Bessie +Edith +Erlinda +Florence +Gail +Glenda +Jessie +Mildred +Thelma +Anne +Darlene +Eileen +Emily +Janie +Jeanette +Joanne +Joy +Kathy +Lillian +Lynn +Marlene +Pat +Sara +Socorro +Wilma +Armida +Billie +Cathy +Cecelia +Deanna +Delores +Enedina +Isabel +Leona +Lynda +Mae +Maxine +Mercy +Rosalie +Rosita +Angelita +Celia +Cynthia +Edna +Eleanor +Genevieve +Jackie +Jenny +Lillie +Marcella +Margarita +Marion +Minnie +Nina +Patti +Petra +Suzanne +Valerie +Vera +Vickie +Viola +Yvonne +Adela +Alberta +Alma +Andrea +Christina +Clara +Daisy +Ernestine +Esperanza +Frankie +Harriet +Irma +Jacqueline +Jan +Jennifer +Josie +Julie +June +Lucinda +Marylou +Myrna +Nadine +Olga +Penny +Polly +Sadie +Veronica +Alicia +Amelia +Ana +Bernice +Blanca +Della +Dixie +Francine +Leslie +Lorna +Malinda +Nelda +Patty +Sandy +Sondra +Trudy +Violet +Zonnie +Adelina +Angela +Bette +Carla +Constance +Delfina +Delia +Dianna +Elena +Elouise +Estella +Eunice +Hilda +Janis +Michelle +Monica +Naomi +Nora +Rena +Robin +Rosemarie +Sonja +Terri +Toni +Mary +Linda +Barbara +Patricia +Sandra +Carol +Sharon +Gloria +Susan +Margaret +Betty +Maria +Karen +Nancy +Frances +Virginia +Judy +Carolyn +Shirley +Alice +Donna +Yolanda +Martha +Helen +Judith +Sally +Connie +Dorothy +Kathleen +Irene +Sylvia +Cheryl +Diana +Elizabeth +Janice +Rose +Ruth +Beverly +Marilyn +Diane +Joyce +Carmen +Bonnie +Janet +Pamela +Rita +Norma +Brenda +Charlotte +Esther +Anita +Evelyn +Jo +Lupe +Marie +Lorraine +Louise +Margie +Patsy +Dolores +Jean +Peggy +Phyllis +Rebecca +Sherry +Anna +Kay +Laura +Sarah +Cecilia +Juanita +Katherine +Olivia +Stella +Susie +Ann +Elsie +Eva +Josephine +Kathryn +Pauline +Ramona +Vicki +Catherine +Jane +Lynda +Ruby +Christine +Cynthia +Guadalupe +Julia +Nellie +Paula +Rosa +Rosemary +Rosie +Lucy +Lydia +Marsha +Olga +Wanda +Anne +Lois +Arlene +Carole +Jacqueline +Lillie +Roberta +Suzanne +Bertha +Darlene +Grace +Joan +Marjorie +Teresa +Charlene +Clara +Della +Eleanor +Georgia +Doris +Isabel +Jeanne +Jessie +Kathy +Terry +Theresa +Billie +Christina +Delia +Dora +Edna +Elaine +Jennie +Joann +Julie +Pat +Rachel +Sheila +Yvonne +Annie +Beatrice +Ellen +Loretta +Toni +Claudia +Gayle +Jackie +Josie +Margarita +Vera +Victoria +Andrea +Bessie +Cecelia +Dianne +Eileen +Emma +Irma +Jennifer +Lucille +Rosalie +Sue +Angie +Caroline +Cathy +Gail +Geraldine +Jan +Jenny +June +Lena +Molly +Naomi +Stephanie +Alicia +Angelita +Delores +Edith +Ethel +Flora +Jeannie +Leona +Lillian +Paulette +Polly +Sheryl +Vivian +Adelina +Carla +Emily +Erlinda +Erma +Janis +Joanne +Marlene +Mildred +Verna +Viola +Wilma +Alberta +Armida +Bernice +Denise +Ella +Eloise +Genevieve +Ginger +Harriet +Hazel +Jeanette +Marcia +Minnie +Penny +Rena +Sharron +Antonia +Dana +Florence +Glenda +Inez +Lana +Leslie +Marian +Marylou +Maureen +Maxine +Michele +Nina +Nora +Sara +Sherri +Adela +Agnes +Alta +Angela +Angelina +Annette +April +Beatriz +Bette +Bobbie +Candy +Carmelita +Carrie +Celia +Cora +Dianna +Elena +Estella +Etta +Faye +Francisca +Glenna +Gwendolyn +Ida +Jeannette +Marcella +Melody +Penelope +Priscilla +Regina +Rhonda +Rosita +Socorro +Violet +Alma +Ana +Becky +Bonita +Cindy +Daisy +Dale +Dixie +Elva +Evangelina +Evangeline +Hope +Iva +Johnnie +Judi +Lorena +Lou +Lucia +Lucinda +Lynn +Madeline +Mae +Malinda +Melinda +Mercedes +Patty +Pearl +Phoebe +Rosario +Sandy +Velma +Veronica +Vickie +Linda +Mary +Patricia +Barbara +Gloria +Sandra +Sharon +Susan +Nancy +Margaret +Carol +Betty +Karen +Frances +Donna +Maria +Shirley +Alice +Kathleen +Virginia +Carolyn +Sylvia +Janice +Judith +Martha +Yolanda +Rose +Judy +Cheryl +Irene +Diane +Carmen +Pamela +Janet +Beverly +Marilyn +Helen +Dorothy +Norma +Sally +Joyce +Peggy +Brenda +Connie +Elizabeth +Ruth +Evelyn +Rebecca +Cynthia +Phyllis +Rosa +Guadalupe +Dolores +Esther +Jane +Rita +Sherry +Marie +Roberta +Cecilia +Diana +Juanita +Catherine +Marsha +Anita +Jean +Jo +Anna +Teresa +Charlotte +Christine +Laura +Lupe +Lydia +Lillian +Vicki +Wanda +Ann +Joan +Kathryn +Lorraine +Paula +Rosemary +Charlene +Deborah +Josephine +Katherine +Kathy +Stella +Anne +Claudia +Doris +Eleanor +Pauline +Rosie +Bonnie +Darlene +Grace +Louise +Marjorie +Nellie +Olivia +Sue +Victoria +Bessie +Ella +Julia +Lynda +Rachel +Kay +Patsy +Priscilla +Delores +Dora +Joann +Lynn +Sheila +Susie +Suzanne +Terry +Toni +Beatrice +Bertha +Christina +Edith +Eva +Lucy +Margie +Olga +Ramona +Sarah +Theresa +Arlene +Delia +Isabel +Loretta +Ruby +Elaine +Glenda +Lois +Veronica +Vivian +Edna +Jacqueline +Leslie +Verna +Yvonne +Annie +Deanna +Georgia +Geraldine +Jennie +Jessie +Josie +Marlene +Pat +Thelma +Angie +Bobbie +Ellen +Ida +Marcia +Margarita +Sara +Annette +Bernice +Carole +Constance +Elsie +Gail +Irma +Janis +Joanne +Rosalie +Vera +Armida +Cecelia +Emma +Joy +Julie +Maxine +Patty +Paulette +Vickie +Viola +Bernadette +Billie +Carla +Caroline +Cathy +Dianne +Eileen +Gwendolyn +Jeanette +Maureen +Michele +Mildred +Myra +Socorro +Stephanie +Alberta +Angela +Angelina +Antonia +Clara +Denise +Ernestina +Gladys +Glenna +Jacque +Jan +Janie +Jenny +June +Lucille +Mae +Marcella +Marla +Rosita +Sadie +Alma +Cindy +Daisy +Della +Dixie +Elva +Emily +Erlinda +Erma +Ethel +Geneva +Jeanne +Jennifer +Lena +Maggie +Nadine +Nina +Ofelia +Penny +Sallie +Sheryl +Wilma +Andrea +Aurora +Betsy +Debbie +Dianna +Gayle +Harriet +Hazel +Jill +Judi +Laverne +Maryann +Minnie +Molly +Nora +Terri +Adela +Adelina +Alicia +Amanda +Angelita +Audrey +Becky +Bette +Carolina +Cheri +Cora +Debra +Dona +Evangelina +Faye +Florence +Jewel +Lee +Lillie +Marian +Marion +Mercy +Myrna +Petra +Rosemarie +Sherrie +Valerie +Vicky +Violet +Amelia +Candace +Carrie +Claudette +Consuelo +Cruz +Elisa +Elouise +Elvia +Estella +Eunice +Francis +Genevieve +Henrietta +Jackie +Jeannie +Laurel +Lita +Louella +Lupita +Lynne +Malinda +Melba +Michelle +Nelda +Pearl +Penelope +Regina +Rena +Robin +Sharron +Trudy +Velma +Linda +Mary +Barbara +Patricia +Susan +Sharon +Sandra +Gloria +Nancy +Carol +Margaret +Donna +Virginia +Betty +Karen +Judy +Shirley +Maria +Alice +Carolyn +Frances +Martha +Kathleen +Pamela +Sylvia +Diane +Janice +Judith +Elizabeth +Irene +Yolanda +Dorothy +Helen +Cheryl +Marilyn +Peggy +Cynthia +Deborah +Joyce +Rebecca +Brenda +Janet +Diana +Beverly +Teresa +Norma +Carmen +Christine +Rose +Catherine +Rita +Jane +Paula +Cecilia +Charlotte +Connie +Kathy +Vicki +Dolores +Olivia +Sarah +Ann +Laura +Esther +Marie +Stella +Katherine +Ruth +Sally +Anna +Sherry +Bonnie +Evelyn +Juanita +Louise +Rosemary +Guadalupe +Jo +Kathryn +Josephine +Lynda +Marsha +Jacqueline +Margie +Roberta +Terry +Rachel +Sheila +Sue +Victoria +Wanda +Ella +Lupe +Pauline +Doris +Joan +Joanne +Lorraine +Claudia +Marjorie +Angela +Anita +Arlene +Bertha +Darlene +Jean +Jessie +Lydia +Rosa +Gail +Lucy +Patsy +Phyllis +Theresa +Geraldine +Loretta +Olga +Suzanne +Clara +Ellen +Julia +Margarita +Priscilla +Elaine +Eva +Georgia +Grace +June +Nellie +Susie +Yvonne +Joann +Julie +Kay +Ramona +Ruby +Dora +Glenda +Irma +Jennifer +Lena +Lois +Rosie +Angelita +Cathy +Christina +Edith +Elsie +Jeanne +Leslie +Rosalie +Ana +Annie +Beatrice +Bessie +Lillie +Lynn +Mildred +Nora +Alma +Angie +Billie +Charlene +Dianne +Erlinda +Marcella +Vivian +Emily +Isabel +Janie +Veronica +Andrea +Carla +Caroline +Delia +Edna +Eleanor +Emma +Ida +Lillian +Marlene +Maureen +Michelle +Penny +Annette +Bernice +Carole +Colleen +Della +Eileen +Genevieve +Gladys +Jeanette +Jennie +Lupita +Valerie +Alberta +Audrey +Carmelita +Catalina +Delores +Ethel +Flora +Josie +Lucille +Marcia +Marylou +Paulette +Terri +Alicia +Angelina +Anne +Antonia +Armida +Cora +Dana +Esperanza +Estella +Faye +Gayle +Jackie +Jill +Leonor +Michele +Nadine +Pat +Pearl +Rena +Robin +Wendy +Antoinette +Becky +Beth +Bobbie +Constance +Enedina +Ernestine +Hazel +Herlinda +Jan +Joy +Kristine +Leona +Lily +Lisa +Lola +Lucinda +Marian +Marianne +Melva +Nina +Patty +Penelope +Regina +Sheri +Sheryl +Socorro +Thelma +Trudy +Verna +Carrie +Cecelia +Celia +Concepcion +Dawn +Deanna +Debra +Dianna +Elva +Florence +Geneva +Glenna +Jacque +Janis +Jeannette +Lana +Laurie +Lynne +Maxine +Mercy +Molly +Ofelia +Sadie +Sandy +Stephanie +Toni +Velma +Vickie +Vicky +Violet +Amelia +Blanche +Candace +Cathleen +Cheri +Cherie +Daisy +Dale +Dee +Denise +Elsa +Elvia +Elvira +Erma +Ernestina +Harriet +Ina +Isabelle +Katharine +Laverne +Lenora +Lilly +Lorena +Louisa +Maggie +Manuela +Marguerite +Marla +Maryann +Melba +Melissa +Mercedes +Meredith +Minnie +Mollie +Monica +Ophelia +Phoebe +Rosalia +Rosemarie +Sophie +Teri +Terrie +Tina +Viola +Wilma +Linda +Mary +Patricia +Barbara +Susan +Sandra +Carol +Gloria +Margaret +Karen +Kathleen +Maria +Sharon +Nancy +Virginia +Donna +Deborah +Betty +Shirley +Janet +Frances +Elizabeth +Christine +Judy +Pamela +Brenda +Alice +Judith +Sylvia +Marilyn +Norma +Cheryl +Irene +Diana +Helen +Rita +Yolanda +Rose +Carolyn +Rebecca +Catherine +Janice +Martha +Dorothy +Cynthia +Peggy +Laura +Connie +Diane +Beverly +Carmen +Josephine +Joyce +Teresa +Evelyn +Victoria +Kathryn +Dolores +Juanita +Katherine +Louise +Lydia +Marie +Ruth +Esther +Charlotte +Sally +Wanda +Cecilia +Julia +Kathy +Suzanne +Bonnie +Roberta +Sherry +Terry +Guadalupe +Phyllis +Anita +Ann +Anna +Olivia +Theresa +Jacqueline +Jane +Jean +Marsha +Rosemary +Cathy +Jo +Rosa +Sarah +Vicki +Christina +Priscilla +Joan +Lorraine +Paula +Pauline +Susie +Charlene +Lucy +Bertha +Ella +Jeanette +Lupe +Lynda +Gail +Glenda +Patsy +Darlene +Georgia +Rachel +Rosie +Eva +Julie +Lois +Nellie +Sheila +Vickie +Arlene +Delia +Geraldine +Grace +Marcia +Stella +Vivian +Beatrice +Elaine +Gayle +Kay +Lynn +Ramona +Yvonne +Carla +Jennifer +Lillian +Loretta +Nora +Olga +Valerie +Clara +Constance +Debra +Dora +Ellen +Elsie +Leslie +Ruby +Carole +Delores +Emily +Margarita +Marjorie +Marlene +Angela +Angie +Bernice +Edith +Janis +Jennie +Joann +Margie +Rosalie +Annie +Colleen +Irma +Jessie +Lena +Lucinda +Penny +Veronica +Alberta +Amelia +Anne +Candace +Claudia +Denise +Eileen +Eleanor +Jan +Jeanne +Lillie +Mae +Maureen +Wilma +Alma +Ana +Consuelo +Doris +Elva +Emma +Genevieve +Ida +Janie +Marian +Melinda +Rosalinda +Toni +Bobbie +Cecelia +Deanna +Dianne +Elvira +Erlinda +Florence +Gwendolyn +Joanne +Michele +Michelle +Paulette +Sara +Verna +Alicia +Amy +Andrea +Annette +Caroline +Dianna +Jacque +Jacquelyn +Jeri +June +Lynne +Patty +Regina +Rosita +Sandy +Socorro +Sue +Vicky +Angelita +Aurelia +Candice +Celia +Debbie +Ernestine +Francisca +Harriet +Hilda +Jill +Katie +Lorena +Lula +Melanie +Molly +Monica +Pearl +Stephanie +Amanda +Becky +Billie +Edna +Evangeline +Geneva +Gladys +Iris +Isabel +Jackie +Josie +Joy +Lana +Lucia +Rena +Renee +Rosemarie +Shelley +Sheryl +Agnes +Armida +Belinda +Bessie +Dana +Della +Doreen +Estela +Flora +Graciela +Jenny +Lucille +Marcella +Marina +Maxine +Melody +Mildred +Myra +Natalie +Nina +Ophelia +Petra +Robin +Sadie +Sherrie +Terri +Therese +Trudy +Viola +Wendy +Ada +Antoinette +Antonia +Belen +Carrie +Cherie +Diann +Dolly +Earlene +Elouise +Eula +Fannie +Hazel +Henrietta +Inez +Karla +Laverne +Lilly +Lily +Lorna +Lupita +Maggie +Manuela +Margo +Melissa +Mercedes +Ofelia +Rhonda +Roselyn +Susanna +Thelma +Mary +Linda +Patricia +Barbara +Susan +Sandra +Deborah +Margaret +Carol +Gloria +Kathleen +Karen +Nancy +Maria +Sharon +Betty +Sylvia +Donna +Shirley +Elizabeth +Virginia +Diane +Irene +Alice +Frances +Pamela +Yolanda +Helen +Brenda +Rebecca +Cynthia +Martha +Norma +Beverly +Carolyn +Christine +Janet +Rose +Carmen +Catherine +Marilyn +Anna +Katherine +Ruth +Diana +Dorothy +Sally +Cheryl +Connie +Kathryn +Janice +Judy +Cecilia +Evelyn +Laura +Debra +Rita +Esther +Judith +Marie +Teresa +Lydia +Rachel +Jean +Paula +Ann +Jacqueline +Kathy +Marsha +Josephine +Peggy +Rosa +Theresa +Charlotte +Dolores +Juanita +Bonnie +Geraldine +Jo +Roberta +Vicki +Victoria +Anita +Guadalupe +Loretta +Sarah +Nellie +Pauline +Stella +Clara +Joan +Julia +Louise +Sherry +Darlene +Doris +Lorraine +Dora +Grace +Joyce +Lynn +Phyllis +Ramona +Rosemary +Claudia +Lupe +Jennifer +Rosie +Wanda +Jacque +Christina +Gail +Jane +Rhonda +Bertha +Charlene +Elaine +Ellen +Lynda +Patsy +Susie +Denise +Erlinda +Gayle +Jessie +Joanne +Marjorie +Olga +Ruby +Terry +Veronica +Candace +Ella +Leslie +Mildred +Nora +Vickie +Yvonne +Cathy +Eleanor +Eva +Isabel +Jeanne +Julie +Lucy +Margarita +Maxine +Priscilla +Rosalie +Suzanne +Alicia +Andrea +Angelita +Irma +Lena +Sheila +Anne +Belinda +Debbie +Edith +Elsie +Glenda +Kay +Robin +Velma +Angela +Bernice +Constance +Dianna +Ida +Jan +Amelia +Ana +Beatrice +Caroline +Cecelia +Celia +Colleen +Georgia +Jeanette +Joann +Lillian +Lucille +Madeline +Marcia +Mercy +Michelle +Olivia +Stephanie +Sue +Vivian +Arlene +Billie +Carole +Daisy +June +Margie +Valerie +Vera +Wendy +Angie +Annette +Becky +Carla +Della +Henrietta +Jennie +Jenny +Lillie +Lucinda +Sara +Shelley +Annie +Antonia +April +Consuelo +Delia +Dianne +Edna +Erma +Jacquelyn +Juana +Marlene +Pearl +Penny +Renee +Sheryl +Socorro +Verna +Vicky +Bessie +Bobbie +Carolina +Cindy +Eileen +Elena +Emily +Flora +Gwen +Gwendolyn +Hilda +Joy +Laurie +Leona +Lilly +Marianne +Marla +Maryann +Natalia +Nina +Patti +Roselyn +Rosita +Toni +Wilma +Antoinette +Arcelia +Aurora +Blanca +Delores +Dixie +Ethel +Etta +Faye +Francisca +Geneva +Gladys +Ilene +Josefina +Katie +Lula +Mae +Marta +Maureen +Molly +Naomi +Natalie +Regina +Sadie +Sherrie +Terri +Tina +Alta +Angelina +Emma +Genevieve +Georgianna +Ginger +Gracie +Jackie +Lee +Lisa +Lois +Lorna +Lynne +Melanie +Melody +Miriam +Nadine +Patty +Paulette +Rosalinda +Sheri +Silvia +Trinidad +Violet +Agnes +Alberta +Aleta +Alma +Audrey +Aurelia +Bonita +Coleen +Cristina +Deanna +Eloise +Elva +Elvira +Esperanza +Estella +Evangeline +Fannie +Florence +Georgina +Harriet +Hope +Isabelle +Janie +Janis +Joanna +Josie +Kristina +Kristine +Laverne +Lola +Lupita +Lynette +Mable +Manuela +Margo +Marian +Marion +Mercedes +Mickey +Nelda +Ofelia +Ophelia +Rosella +Sonia +Susana +Susanne +Thelma +Therese +Willie +Mary +Linda +Patricia +Barbara +Deborah +Susan +Sandra +Gloria +Karen +Sharon +Margaret +Carol +Kathleen +Nancy +Maria +Diane +Brenda +Cynthia +Donna +Elizabeth +Pamela +Christine +Shirley +Debra +Irene +Virginia +Frances +Sylvia +Rebecca +Betty +Rose +Martha +Janet +Yolanda +Judith +Helen +Alice +Carolyn +Judy +Diana +Dorothy +Esther +Janice +Catherine +Connie +Kathryn +Marilyn +Carmen +Katherine +Laura +Beverly +Peggy +Evelyn +Juanita +Marie +Anna +Sally +Bonnie +Kathy +Norma +Theresa +Cheryl +Ruth +Paula +Rita +Teresa +Christina +Guadalupe +Sarah +Victoria +Anita +Ann +Jacqueline +Joyce +Sue +Wanda +Jo +Cecilia +Rosemary +Vicki +Marsha +Gail +Jane +Lydia +Sherry +Joan +Lois +Marjorie +Rosie +Terry +Charlene +Jennifer +Josephine +Roberta +Geraldine +Julia +Louise +Anne +Eva +Julie +Yvonne +Arlene +Dolores +Jean +Lillian +Phyllis +Rosa +Cathy +Elaine +Irma +Olivia +Pauline +Stella +Susie +Vickie +Denise +Lorraine +Charlotte +Grace +Beatrice +Darlene +Lupe +Lynn +Maureen +Claudia +Joy +Lynda +Suzanne +Constance +Georgia +Lena +Loretta +Marlene +Nellie +Priscilla +Rachel +Vivian +Billie +Clara +Colleen +Doris +Edith +Ellen +Elsie +Emma +Isabel +Leslie +Ramona +Valerie +Ana +Bertha +Eleanor +Erlinda +Gayle +Jacque +Jacquelyn +Jeanette +Jessie +Margarita +Sara +Delia +Jan +Nora +Rhonda +Bernice +Cecelia +Dianna +Dora +Glenda +Kay +Lucy +Regina +Robin +Sheila +Stephanie +Veronica +Wendy +Angela +Cindy +Jeanne +Joann +Lucinda +Toni +Alicia +Annie +Beth +Deanna +Della +Estella +Ida +Joanne +Lucille +Marcia +Margie +Nadine +Sheryl +Belinda +Candace +Caroline +Celia +Delores +Dianne +Ella +Jenny +Lillie +Michele +Michelle +Patsy +Terri +Bonita +Ginger +June +Lee +Marianne +Monica +Rena +Renee +Agnes +Andrea +Angelita +Bessie +Carla +Carole +Cora +Debbie +Eileen +Florence +Hilda +Jackie +Janie +Lana +Melinda +Melissa +Mildred +Paulette +Penny +Amelia +Angie +Antonia +Blanca +Debora +Elouise +Ernestine +Ethel +Glenna +Laverne +Lupita +Maxine +Mercy +Myrna +Olga +Patty +Ruby +Shelley +Wilma +Ada +Adela +Aida +Becky +Betsy +Bobbie +Edna +Elvia +Elvira +Emily +Flora +Henrietta +Jamie +Laurie +Lisa +Lola +Lynette +Lynne +Marcella +Maryann +Nina +Ophelia +Rosalie +Rosalinda +Sadie +Sheri +Vera +Verna +Alberta +Alma +Amy +Angelina +Aurelia +Carrie +Dana +Dee +Doreen +Elva +Erma +Gladys +Gwendolyn +Harriet +Hazel +Janis +Jeannie +Jennie +Josie +Katie +Leona +Lora +Lorena +Lucia +Maggie +Margo +Marian +Mercedes +Molly +Nanette +Patrice +Patti +Sherri +Socorro +Thelma +Viola +Amanda +Annette +Antoinette +April +Armida +Bernadette +Camille +Candice +Celeste +Cherie +Cherry +Chris +Coleen +Consuelo +Cristina +Daisy +Darla +Delma +Dixie +Dorothea +Earlene +Elda +Eliza +Esperanza +Geneva +Georgina +Gracie +Gwen +Isabell +Janette +Jeanie +Jerri +Jolene +Kim +Lilly +Malinda +Manuela +Marguerite +Marla +Minnie +Mollie +Mona +Nikki +Ofelia +Pearl +Rosalee +Rosanna +Rosario +Sandy +Sonia +Teri +Vicky +Violet +Zena +Mary +Linda +Patricia +Deborah +Barbara +Susan +Karen +Debra +Gloria +Pamela +Sandra +Kathleen +Nancy +Sharon +Carol +Maria +Diane +Donna +Margaret +Christine +Rebecca +Martha +Virginia +Cynthia +Janet +Elizabeth +Brenda +Shirley +Betty +Rose +Yolanda +Sylvia +Carolyn +Janice +Catherine +Frances +Teresa +Irene +Judy +Marilyn +Katherine +Kathryn +Kathy +Beverly +Ruth +Sally +Alice +Anna +Peggy +Rita +Helen +Carmen +Dorothy +Evelyn +Laura +Paula +Theresa +Judith +Norma +Diana +Victoria +Connie +Bonnie +Cheryl +Joyce +Vicki +Guadalupe +Josephine +Jo +Anita +Dolores +Marie +Rachel +Phyllis +Rosa +Sherry +Lorraine +Roberta +Ann +Rosemary +Terry +Denise +Valerie +Cecilia +Doris +Jacqueline +Cathy +Christina +Darlene +Esther +Louise +Jane +Lydia +Vickie +Dora +Lisa +Marsha +Rhonda +Rosie +Suzanne +Charlotte +Leslie +Yvonne +Grace +Wanda +Eva +Sarah +Arlene +Joan +Joanne +Juanita +Julie +Ramona +Charlene +Elaine +Julia +Loretta +Gail +Irma +Jean +Pauline +Ruby +Stella +Vivian +Anne +Eleanor +Lucy +Lupe +Sheila +Nora +Regina +Ellen +Lynn +Maureen +Olga +Susie +Debbie +Delia +Isabel +Kay +Lena +Lynda +Margarita +Marlene +Nellie +Angela +Angelina +Ella +Ida +Laurie +Marjorie +Olivia +Terri +Geraldine +Jan +Jennifer +Joann +Marcia +Marian +Priscilla +Robin +Shelley +Sue +Ana +Beatrice +Caroline +Cindy +Clara +Dianna +Glenda +Patsy +Bertha +Colleen +Georgia +Jacquelyn +Lois +Michele +Rosalie +Stephanie +Toni +Angelita +Becky +Belinda +Cecelia +Constance +Delores +Elsa +Genevieve +Jeanette +Jeanne +Joy +Lillian +Melanie +Melinda +Michelle +Penny +Sheryl +Wendy +Angie +Bernice +Claudia +Florence +Gayle +Ginger +Jackie +Janie +Janis +Jessie +June +Lucinda +Pearl +Rosita +Sara +Vicky +Annie +Antonia +Billie +Carla +Carole +Edith +Emma +Jacque +Jenny +Jill +Lee +Lillie +Melissa +Mildred +Rosalinda +Thelma +Tina +Wilma +Amelia +Debora +Dianne +Elsie +Estella +Hilda +Kim +Kristine +Lynne +Margie +Marianne +Maxine +Rena +Sherri +Alicia +Blanca +Candace +Celia +Christie +Dana +Edna +Eileen +Emily +Glenna +Jana +Jeannette +Josefina +Lola +Lucille +Lynette +Mae +Naomi +Sadie +Teri +Alma +Betsy +Dale +Della +Elvira +Evangeline +Gladys +Jennie +Laverne +Melody +Patti +Socorro +Veronica +Viola +Amalia +Amy +Andrea +Antoinette +Bernadette +Bessie +Cheri +Cora +Dawn +Ernestine +Gay +Harriet +Henrietta +Josie +Lupita +Marta +Molly +Mona +Monica +Patty +Roselyn +Roxanne +Bobbie +Christy +Daisy +Doreen +Elena +Elouise +Francisca +Geneva +Gracie +Hope +Iris +Kelly +Kimberly +Kris +Leticia +Lori +Marcella +Margo +Marietta +Minnie +Nina +Patrice +Rosanna +Velma +Vera +Alberta +April +Armida +Charmaine +Claire +Deanna +Delphine +Dolly +Esperanza +Estela +Faith +Fannie +Georgina +Heather +Holly +Isabell +Isabelle +Kristin +Lilly +Lolita +Lora +Lorna +Matilda +Melba +Nanette +Nola +Paulette +Renee +Ruthie +Sallie +Sandy +Shari +Sheri +Sherrie +Trudy +Mary +Linda +Patricia +Deborah +Debra +Susan +Barbara +Sandra +Pamela +Gloria +Cynthia +Karen +Maria +Carol +Kathleen +Nancy +Sharon +Margaret +Donna +Elizabeth +Diane +Rebecca +Rose +Betty +Janet +Brenda +Christine +Martha +Yolanda +Carolyn +Sally +Sylvia +Catherine +Irene +Katherine +Kathy +Teresa +Virginia +Alice +Marilyn +Helen +Judy +Laura +Kathryn +Shirley +Beverly +Frances +Norma +Anna +Connie +Lydia +Theresa +Vicki +Diana +Dorothy +Janice +Carmen +Anita +Denise +Paula +Darlene +Victoria +Evelyn +Cheryl +Juanita +Jo +Peggy +Ruth +Sherry +Rita +Rosa +Cecilia +Jacqueline +Michelle +Robin +Terry +Cathy +Guadalupe +Jane +Esther +Joyce +Judith +Marie +Stella +Lorraine +Rachel +Roberta +Ann +Christina +Susie +Wanda +Gail +Lynn +Rhonda +Doris +Louise +Marsha +Phyllis +Sarah +Sheila +Suzanne +Bonnie +Dolores +Josephine +Ellen +Joan +Lucy +Sue +Lupe +Rosemary +Rosie +Eleanor +Julia +Pauline +Terri +Charlene +Cindy +Jean +Margarita +Arlene +Anne +Bertha +Eva +Julie +Lisa +Patsy +Ramona +Vickie +Vivian +Charlotte +Clara +Irma +Ruby +Valerie +Yvonne +Elaine +Glenda +Lynda +Ella +Geraldine +Grace +Joanne +Leslie +Lois +Priscilla +Claudia +Lucinda +Margie +Nellie +Carla +Debbie +Leticia +Michele +Olivia +Renee +Sherri +Cecelia +Edith +Emma +Isabel +Jill +Loretta +Rosalie +Sheryl +Stephanie +Andrea +Dora +Jan +Lena +Lillian +Marlene +Verna +Angela +Annie +Caroline +Jeanette +Kim +Lillie +Marjorie +Monica +Regina +Vera +Alma +Beatrice +Bessie +Candace +Delores +Gayle +Georgia +Jeanne +Jeannette +Jennifer +Marcella +Melinda +Penny +Shelley +Veronica +Ana +Becky +Bernice +Carole +Celia +Dawn +Dianna +Jackie +Joann +Kay +Lucille +Patti +Sheri +Angie +Ethel +Hilda +Ida +Jacque +Nora +Olga +Alberta +Colleen +Delia +Elsie +Emily +Ernestine +Janie +Kimberly +Lorna +Melissa +Velma +Agnes +Antonia +Billie +Blanca +Elouise +Gwendolyn +Jacquelyn +Janis +Jessie +Marcia +Marta +Molly +Roxanne +Socorro +Tina +Vanessa +Amy +Angelina +Belinda +Beth +Jennie +Marian +Marla +Maxine +Nadine +Pearl +Rena +Rosita +Thelma +Vicky +Wendy +Wilma +Cherie +Darla +Debora +Della +Elsa +Esperanza +Estella +Francisca +Ginger +Gladys +Glenna +Herlinda +Jenny +Jeri +Joy +June +Laurie +Lou +Lula +Lynne +Ofelia +Ophelia +Rosalinda +Trudy +Ada +Amanda +Angelita +Annette +Armida +Aurelia +Carmelita +Cheri +Constance +Cora +Dana +Dianne +Dixie +Doreen +Eileen +Elisa +Elva +Elvira +Flora +Francine +Gracie +Iris +Jeannie +Lorene +Lori +Manuela +Mercy +Mildred +Mona +Sadie +Sherrie +Teri +Terrie +Toni +Alicia +Alta +Amelia +Arlinda +Aurora +Bernadette +Cathleen +Cherry +Daisy +Edna +Erlinda +Etta +Faye +Geneva +Harriet +Hazel +Lela +Leona +Lora +Lourdes +Mae +Margo +Marianne +Marylou +Maureen +Naomi +Nina +Paulette +Penelope +Raquel +Ruthie +Sara +Tamara +Viola +Adela +April +Bobbi +Bobbie +Bridget +Chris +Crystal +Eleanore +Elena +Erma +Ernestina +Esmeralda +Fannie +Genevieve +Heidi +Jeanine +Jerri +Jolene +Kelly +Kristen +Lee +Louisa +Lucia +Lupita +Luz +Mabel +Madeline +Malinda +Marguerite +Melanie +Melody +Minnie +Miriam +Myra +Patrice +Patty +Rachael +Sallie +Shauna +Therese +Tracy +Mary +Linda +Patricia +Deborah +Susan +Debra +Barbara +Sandra +Cynthia +Karen +Nancy +Maria +Pamela +Sharon +Donna +Margaret +Rose +Gloria +Kathleen +Brenda +Elizabeth +Rebecca +Martha +Carol +Virginia +Cheryl +Janet +Diane +Catherine +Connie +Frances +Irene +Sylvia +Teresa +Paula +Yolanda +Diana +Christine +Marilyn +Shirley +Alice +Janice +Anna +Vicki +Jo +Norma +Peggy +Sally +Carolyn +Judy +Victoria +Kathy +Darlene +Judith +Laura +Helen +Rita +Katherine +Theresa +Betty +Beverly +Denise +Rosa +Sherry +Terry +Dorothy +Kathryn +Bonnie +Carmen +Cindy +Esther +Julie +Lucy +Evelyn +Joyce +Marie +Ruth +Josephine +Ann +Sarah +Anita +Juanita +Julia +Robin +Cathy +Elaine +Guadalupe +Lorraine +Lydia +Phyllis +Rhonda +Debbie +Vickie +Yvonne +Jacqueline +Cecilia +Dolores +Gail +Jane +Louise +Rachel +Sheila +Joan +Lisa +Roberta +Rosie +Charlene +Anne +Jean +Loretta +Valerie +Wanda +Lori +Stella +Ellen +Leslie +Terri +Veronica +Joanne +Suzanne +Bertha +Charlotte +Eva +Glenda +Laurie +Margarita +Arlene +Irma +Priscilla +Sue +Lupe +Marlene +Pauline +Wendy +Doris +Lucille +Marian +Michelle +Nellie +Patsy +Ramona +Shelley +Stephanie +Susie +Christina +Dianne +Grace +Joann +Marsha +Toni +Ana +Annette +Jennie +Jennifer +Jill +Joy +Marjorie +Olivia +Sherri +Angie +Carla +Claudia +Eileen +Elsie +Isabel +Lena +Lynn +Marcia +Maureen +Michele +Nora +Angela +Colleen +Dana +Ella +Geraldine +Jackie +Jacque +Jeanette +Jeanne +June +Monica +Penny +Rosemary +Sheri +Sheryl +Andrea +Dawn +Dora +Emily +Lois +Tina +Alma +Constance +Delia +Jan +Kimberly +Olga +Regina +Vicky +Amelia +Audrey +Becky +Bernice +Delores +Lucinda +Lynda +Margie +Maxine +Mercy +Ruby +Verna +Vivian +Antonia +Bessie +Caroline +Jody +Kay +Lillian +Lorena +Roxanne +Angelina +Beatrice +Belinda +Carrie +Cecelia +Ernestine +Evangeline +Holly +Lynne +Marla +Melody +Patty +Renee +Rosalie +Sandy +Vanessa +Alberta +Annie +Celia +Cheri +Clara +Deanna +Della +Dianna +Emma +Erlinda +Estella +Gayle +Genevieve +Janie +Lupita +Marcella +Melanie +Sherrie +Teri +Vera +Angelita +Armida +Billie +Dixie +Edna +Ethel +Gina +Gladys +Jeannie +Jenny +Jeri +Jessie +Kelly +Kim +Melinda +Mildred +Patti +Rena +Rosita +Wilma +Antoinette +April +Bernadette +Candy +Eleanor +Jacquelyn +Lee +Lou +Margo +Shelly +Tracy +Violet +Beth +Candace +Carole +Elouise +Geneva +Georgia +Glenna +Gwendolyn +Henrietta +Ida +Joni +Karla +Leticia +Melissa +Mona +Nina +Ruthie +Sadie +Sara +Socorro +Thelma +Adela +Alicia +Amanda +Amy +Blanca +Cherie +Deann +Debora +Edith +Elena +Elva +Esperanza +Francisca +Graciela +Hilda +Jamie +Jayne +Joanna +Lana +Laurel +Laverne +Lillie +Lula +Marion +Nadine +Naomi +Patrice +Viola +Ava +Darla +Evangelina +Faye +Hazel +Ilene +Janette +Josie +Lorrie +Lucia +Mae +Marina +Marta +Myrna +Susana +Tamara +Therese +Velma +Ada +Alyce +Annabelle +Bette +Candice +Christy +Conchita +Consuelo +Daisy +Debby +Dena +Fredia +Inez +Isabell +Isabelle +Jana +Jessica +Katharine +Kathie +Kathrine +Leah +Leola +Leona +Leta +Lyn +Manuela +Marianne +Marietta +Melba +Meredith +Minnie +Ophelia +Paulette +Pearl +Polly +Rosanna +Rosanne +Roselyn +Rosetta +Shari +Shauna +Susanna +Susanne +Tammy +Mary +Debra +Linda +Patricia +Deborah +Susan +Cynthia +Barbara +Sandra +Karen +Nancy +Pamela +Cheryl +Maria +Carol +Gloria +Sharon +Elizabeth +Donna +Margaret +Kathleen +Brenda +Diane +Virginia +Rose +Rebecca +Betty +Catherine +Janet +Vicki +Sylvia +Martha +Diana +Teresa +Carolyn +Frances +Kathy +Janice +Shirley +Dorothy +Katherine +Laura +Marilyn +Yolanda +Judy +Sally +Anna +Norma +Theresa +Victoria +Christine +Jo +Irene +Denise +Rita +Ruth +Cathy +Sherry +Carmen +Kathryn +Paula +Debbie +Esther +Joyce +Alice +Peggy +Beverly +Julie +Darlene +Helen +Juanita +Lisa +Robin +Lorraine +Anita +Ann +Evelyn +Julia +Rhonda +Connie +Terry +Cindy +Michelle +Tina +Vickie +Cecilia +Jacqueline +Marie +Sarah +Valerie +Kim +Terri +Judith +Leslie +Sheila +Arlene +Rachel +Elaine +Louise +Lydia +Lynn +Ellen +Loretta +Lori +Rosa +Nora +Phyllis +Wendy +Angela +Christina +Dolores +Charlene +Wanda +Bonnie +Charlotte +Doris +Eva +Guadalupe +Irma +Josephine +Roberta +Joan +Suzanne +Gail +Jennifer +Yvonne +Grace +Sheryl +Stephanie +Jane +Kimberly +Sue +Andrea +Anne +Emma +Renee +Sherri +Bertha +Lena +Lynda +Margarita +Marlene +Melanie +Pauline +Rosemary +Rosie +Ruby +Isabel +Jean +Jeanne +Leticia +Marcia +Olga +Priscilla +Susie +Angie +Becky +Eileen +Joanne +Laurie +Lillian +Lupe +Marsha +Olivia +Rena +Vivian +Bernice +Delia +Eleanor +Gayle +Geraldine +Jackie +Melinda +Sherrie +Stella +Vera +Veronica +Dawn +Dora +Marla +Michele +Annie +Carla +Della +Lois +Mae +Nellie +Annette +Cecelia +Celia +Ella +Gina +Lucy +Marjorie +Patti +Penny +Regina +Shelley +Sheri +Toni +Clara +Dana +Dianne +Joni +Mildred +Minnie +Ramona +Ana +Angelina +Cheri +Claudia +Debora +Glenda +Gwendolyn +Jan +Jeanette +Lucinda +Marcella +Margie +Patsy +Patty +Roxanne +Alma +Amy +April +Beth +Blanca +Caroline +Colleen +Delores +Emily +Holly +Jeannie +Jill +Joann +Joy +Mona +Alicia +Belinda +Bessie +Consuelo +Dianna +Elsie +Genevieve +Hilda +Mercy +Natalie +Sara +Sheree +Vanessa +Beatrice +Constance +Darla +Deanna +Edith +Elsa +Georgia +Heather +Ida +Jessie +Kay +Lee +Lucia +Lucille +Marta +Monica +Sadie +Socorro +Tamara +Teri +Vicky +Viola +Candice +Carrie +Estella +Geneva +Gracie +Heidi +Jacquelyn +Janis +June +Lenora +Marian +Maureen +Penelope +Rosalie +Rosita +Thelma +Agnes +Antonia +Audrey +Aurelia +Georgina +Jacque +Janie +Jenny +Jody +Josie +Kelly +Lilly +Lola +Lorna +Lynne +Nina +Robyn +Terrie +Tracy +Verna +Adelina +Camille +Carole +Doreen +Elena +Elva +Elvira +Erlinda +Etta +Flora +Ginger +Gladys +Gwen +Helena +Hope +Jana +Jennie +Jolene +Kristine +Ladonna +Lauren +Lourdes +Lupita +Maggie +Melody +Ophelia +Polly +Ronda +Shannon +Velma +Adela +Alberta +Amelia +Billie +Carmelita +Cathleen +Debby +Dena +Elia +Elma +Elouise +Esperanza +Evangeline +Hazel +Isabelle +Jeanine +Jeri +Joanna +Karin +Katie +Kimberlee +Kristi +Laverne +Leona +Lily +Lorene +Lou +Luann +Lynette +Madeline +Melissa +Melva +Minerva +Nadine +Pearl +Roxanna +Sabrina +Shari +Sharron +Shelly +Silvia +Sonia +Tanya +Valentina +Angelita +Antoinette +Aurora +Benita +Bobbie +Candace +Chris +Christy +Claire +Cora +Daisy +Deana +Dee +Eunice +Faye +Florine +Francis +Harriet +Herlinda +Imogene +Iris +Janette +Josefina +Lana +Laurel +Leanne +Leigh +Lora +Lula +Margo +Marguerite +Marylou +May +Naomi +Nelda +Noreen +Pam +Rochelle +Rosalinda +Roselyn +Shawn +Suzan +Mary +Linda +Patricia +Debra +Deborah +Susan +Cynthia +Sandra +Karen +Barbara +Maria +Nancy +Pamela +Donna +Sharon +Carol +Gloria +Elizabeth +Margaret +Diane +Cheryl +Brenda +Kathleen +Rebecca +Rose +Virginia +Teresa +Janet +Sylvia +Yolanda +Laura +Martha +Diana +Catherine +Christine +Betty +Lisa +Debbie +Theresa +Katherine +Shirley +Anna +Janice +Kathy +Denise +Norma +Vicki +Carolyn +Cindy +Connie +Judy +Darlene +Victoria +Evelyn +Frances +Jo +Kathryn +Cathy +Helen +Robin +Carmen +Kimberly +Paula +Julie +Alice +Rosa +Dorothy +Kim +Ann +Laurie +Terry +Beverly +Yvonne +Rita +Peggy +Judith +Ruth +Tina +Anita +Joyce +Sherry +Leslie +Marie +Marilyn +Juanita +Sally +Terri +Irene +Valerie +Lorraine +Bonnie +Christina +Vickie +Dawn +Jennifer +Lynn +Rhonda +Stella +Suzanne +Gail +Loretta +Lori +Sarah +Dolores +Doris +Elaine +Grace +Jean +Lydia +Stephanie +Guadalupe +Louise +Rachel +Roberta +Wanda +Anne +Carla +Charlene +Josephine +Phyllis +Susie +Colleen +Jacqueline +Julia +Esther +Joan +Joann +Lillian +Pauline +Ramona +Rosemary +Ruby +Angela +Cecilia +Michelle +Vivian +Charlotte +Ellen +Sue +Wendy +Lucy +Olivia +Sheila +Veronica +Dana +Jane +Rosie +Alicia +Delores +Ella +Eva +Jackie +Jeanne +Joanne +Melody +Arlene +Eileen +Eleanor +Isabel +Leticia +Marcia +Margarita +Monica +Becky +Bertha +Deanna +Debora +Glenda +Lucinda +Olga +Priscilla +Sherrie +Cecelia +Delia +Dora +Edith +Emma +Joni +Patti +Renee +Rosalie +Joy +Laverne +Lois +Lucille +Margie +Marjorie +Nora +Penny +Sheri +Toni +Emily +Gayle +Gina +Kelly +Lupe +Melanie +Michele +Sherri +Annie +Belinda +Carrie +Constance +Kay +Marcella +Marla +Marlene +Melinda +Melissa +Patsy +Rena +Sheryl +Annette +Elsie +Jeanette +Jill +Laurel +Tracy +Antoinette +Audrey +Bernice +Cheri +Dianne +Geraldine +Gwendolyn +Ida +Irma +Regina +Teri +Amelia +Andrea +Angelina +Angie +Della +Genevieve +Jessie +Jody +Josie +Lee +Sara +Vicky +Alma +April +Blanca +Bobbie +Claudia +Doreen +Elouise +Elsa +Gracie +Jeannie +Jeri +Lynda +Marsha +Mona +Natalie +Shelly +Alta +Amy +Ana +Darla +Dena +Estella +Janie +Lena +Lilly +Maureen +Nellie +Nina +Patty +Robyn +Terrie +Verna +Billie +Dianna +Faith +Janis +Lillie +Maxine +Molly +Pearl +Roxanne +Sandy +Shelley +Sheree +Vanessa +Antonia +Beatrice +Bernadette +Bessie +Beth +Candy +Carole +Caroline +Crystal +Edna +Evangeline +Fannie +Heather +Jacquelyn +Jan +Jana +Jenny +Lenora +Lou +Lupita +Lynette +Marian +Marion +Marta +Maryann +Mercy +Polly +Sabrina +Thelma +Vera +Wilma +Angelita +Aurelia +Bonita +Catalina +Celia +Clara +Cruz +Delphine +Ernestina +Eunice +Geneva +Georgia +Heidi +Henrietta +Isabelle +Jamie +Jennie +Juana +Karla +Kerry +Lorena +Luann +Luz +Marianne +Miriam +Myrna +Nadine +Paulette +Rosanna +Shari +Shawn +Silvia +Tanya +Amanda +Candace +Cherie +Consuelo +Cora +Elisa +Elvira +Erlinda +Ethel +Etta +Felicia +Flora +Florence +Hazel +Holly +Janette +Jayne +Jeannette +Jerri +Joanna +June +Kristi +Lana +Leona +Lily +Lourdes +Lynne +Margo +Marina +Matilda +Mildred +Myra +Naomi +Patrica +Rosita +Ruthie +Shauna +Therese +Tracey +Ada +Benita +Betsy +Carolina +Chris +Darcy +Dee +Dolly +Elise +Eloisa +Elvia +Erin +Erma +Esperanza +Faye +Francis +Francisca +Gale +Ginger +Gladys +Ilene +Iva +Jolene +Kari +Kathie +Kendra +Lauren +Leah +Leta +Lona +Lora +Lorna +Lorrie +Maggie +Marcy +May +Minerva +Nita +Ofelia +Petra +Renae +Rhoda +Ronda +Rosalinda +Rosetta +Sadie +Susanne +Viola +Willie +Mary +Linda +Patricia +Susan +Debra +Cynthia +Deborah +Karen +Barbara +Sandra +Carol +Brenda +Nancy +Donna +Elizabeth +Maria +Cindy +Kathleen +Diane +Pamela +Sharon +Rebecca +Diana +Gloria +Sylvia +Laura +Teresa +Julie +Kathy +Cheryl +Judy +Margaret +Martha +Virginia +Rose +Debbie +Christine +Catherine +Lisa +Theresa +Janet +Denise +Connie +Shirley +Anna +Irene +Carolyn +Leslie +Peggy +Betty +Darlene +Lori +Yolanda +Cathy +Kathryn +Robin +Kim +Terri +Vicki +Sally +Rhonda +Frances +Janice +Katherine +Norma +Kimberly +Marilyn +Sherry +Beverly +Jo +Anita +Dorothy +Jennifer +Alice +Bonnie +Tina +Esther +Evelyn +Vickie +Victoria +Laurie +Lorraine +Dawn +Marie +Rita +Rosa +Joyce +Paula +Rachel +Susie +Ann +Rosemary +Carmen +Irma +Ruth +Terry +Cecilia +Sarah +Christina +Lynn +Juanita +Loretta +Sheila +Judith +Wanda +Annette +Elaine +Jean +Lucy +Phyllis +Vivian +Gail +Helen +Julia +Sheryl +Sue +Josephine +Lydia +Michelle +Becky +Guadalupe +Ramona +Roberta +Tammy +Marlene +Veronica +Angela +Charlene +Valerie +Andrea +Doris +Jacqueline +Kelly +Louise +Yvonne +Anne +Charlotte +Eva +Joan +Patsy +Patty +Belinda +Bertha +Carrie +Joann +Tracy +Colleen +Jane +Margie +Sherri +Ellen +Marjorie +Alma +Caroline +Eleanor +Vicky +Wendy +Alicia +Carla +Delores +Grace +Lupe +Regina +Renee +Beth +Deanna +Delia +Dolores +Leticia +Monica +Pauline +Sheri +Stephanie +Suzanne +Arlene +Jennie +Jill +Nora +Olga +Priscilla +Rosie +Ruby +Teri +Angie +Isabel +Jackie +Jeri +Joanne +Jody +Marianne +Penny +Toni +Ana +Ella +Elsie +Lillian +Lucinda +Melinda +Michele +Shelley +Dora +Geraldine +Holly +Jan +Lena +Lois +Marla +Marsha +Maureen +Stella +Amy +April +Dana +Dianna +Emma +Gayle +Glenda +Jeanette +Jeanne +Jessie +Kay +Margarita +Olivia +Pam +Patti +Rosalie +Thelma +Beatrice +Bernice +Cecelia +Celia +Clara +Debora +Dianne +Edith +Gina +Gwendolyn +Heidi +Jamie +Marcia +Annie +Billie +Georgia +Janie +Joy +Kristi +Nellie +Pat +Roxanne +Sabrina +Verna +Claudia +Edna +Eileen +Emily +Geneva +Ida +Jenny +Joni +Lynda +Melissa +Pearl +Rena +Robyn +Sandy +Sonia +Tami +Amelia +Constance +Crystal +Evangeline +Flora +Jana +Jeannie +Laurel +Lee +Maxine +Melody +Naomi +Audrey +Bessie +Carmelita +Carole +Dixie +Eunice +Joanna +Laverne +Lorna +Marian +Melanie +Mona +Sheree +Tamara +Angelita +Bobbie +Cheri +Doreen +Janis +Karla +Leah +Margo +Sara +Shannon +Shelly +Sherrie +Angelina +Danette +Darla +Della +Elsa +Elva +Elvira +Estella +Florence +Genevieve +Heather +Kerry +Kimberley +Lenora +Lillie +Lorene +Lynne +Madeline +Maryann +Mildred +Nina +Rhoda +Socorro +Stacy +Terrie +Trina +Alta +Bernadine +Chris +Christy +Claire +Elvia +Erlinda +Erma +Felicia +Francisca +Georgina +Ginger +Gladys +Hazel +Jayne +Josefina +Luann +Lucia +Lula +Mabel +Marion +Marta +Marty +Minnie +Nadine +Penelope +Rene +Rosanna +Shauna +Stacey +Tanya +Therese +Vanessa +Betsy +Blanca +Bridget +Candace +Candy +Catalina +Cathleen +Cindi +Cristina +Dani +Ernestine +Esperanza +Gwen +Harriet +Janine +Jeannette +Jodi +Kelli +Kimberlee +Lauri +Leona +Lora +Lou +Lucille +Lupita +Lynette +Maggie +Marcella +Mercedes +Mitzi +Myrna +Nanette +Patrice +Ronda +Rosalind +Rosalinda +Rosemarie +Rosita +Shawn +Silvia +Sophia +Susanna +Vera +Vikki +Alberta +Belen +Carolina +Cherie +Cruz +Debbi +Dolly +Dona +Earlene +Elena +Elise +Erin +Ernestina +Gale +Gay +Inez +Jacque +Jacquelyn +Jessica +Jewel +Josie +Kathi +Kathrine +Katrina +Kristin +Lavern +Lesley +Lila +Liz +Lorrie +Lourdes +Luanne +Mae +Mari +Melva +Mollie +Molly +Myra +Natalie +Nita +Patrica +Polly +Rosanne +Shawna +Sherie +Sonja +Trudy +Valorie +Velma +Wilma +Zona +Mary +Patricia +Linda +Susan +Debra +Cynthia +Karen +Deborah +Barbara +Kathy +Sandra +Pamela +Maria +Debbie +Elizabeth +Carol +Cindy +Brenda +Donna +Julie +Nancy +Lisa +Cheryl +Diane +Sharon +Kathleen +Laura +Teresa +Diana +Rose +Gloria +Catherine +Denise +Janet +Rebecca +Margaret +Peggy +Sylvia +Virginia +Theresa +Martha +Anna +Lori +Betty +Judy +Christine +Kimberly +Cathy +Tammy +Terri +Kim +Beverly +Carolyn +Shirley +Connie +Katherine +Jennifer +Robin +Vicki +Terry +Tina +Yolanda +Irene +Carmen +Michelle +Dorothy +Leslie +Lorraine +Paula +Rita +Sarah +Sherry +Norma +Janice +Julia +Ruth +Sally +Alice +Valerie +Kathryn +Becky +Annette +Darlene +Victoria +Ann +Frances +Kelly +Jo +Laurie +Yvonne +Veronica +Loretta +Bonnie +Helen +Joann +Rosa +Stephanie +Joanne +Susie +Vickie +Anita +Grace +Marie +Sheila +Charlotte +Lydia +Carrie +Cecilia +Juanita +Wanda +Arlene +Dawn +Marilyn +Rosemary +Wendy +Amy +Evelyn +Irma +Bertha +Carla +Esther +Joyce +Lucy +Lynn +Penny +Phyllis +Rhonda +Roberta +Beth +Dolores +Guadalupe +Judith +Patsy +Pauline +Rachel +Gail +Louise +Sandy +Tamara +Andrea +Christina +Ellen +Jane +Marlene +Regina +Suzanne +Anne +Elaine +Joan +Lupe +Sheri +Sheryl +Angela +Eva +Jackie +Jean +Melinda +Sherri +Sue +Toni +Patty +Ramona +Charlene +Dora +Doris +Melissa +Michele +Renee +Stella +Colleen +Eileen +Geraldine +Jill +Josephine +Pam +Rosalie +Audrey +Isabel +Jacqueline +Lillian +Lucinda +Patti +Tracy +Alma +Annie +Caroline +Chris +Margie +Priscilla +Shannon +Clara +Delores +Jenny +Jody +Leticia +Marjorie +Rosie +Tammie +Alicia +Cecelia +Joy +Monica +Rena +Teri +Belinda +Cheri +Dana +Georgia +Holly +Ida +Jeanette +Jeannette +Jeannie +Marcia +Nadine +Nellie +Olga +Bernice +Constance +Darla +Deanna +Dianne +Gina +Jeanne +Maxine +Natalie +Olivia +Sara +Shelly +Vicky +Edna +Emma +Gayle +Heidi +Jeri +Margarita +Rosita +Vivian +Angie +Bobbie +Erin +Gwendolyn +June +Lois +Lynda +Melanie +Melody +Mona +Shelley +Sherrie +Verna +Ana +Bernadine +Bessie +Claudia +Erlinda +Jan +Myra +Vera +Bernadette +Cathleen +Eleanor +Ella +Elvira +Estella +Genevieve +Glenda +Jacque +Jamie +Jana +Janie +Jennie +Leah +Lee +Lora +Lynne +Marian +Marsha +Maureen +Pat +Pearl +Ruby +Sonia +Velma +Alison +April +Beatrice +Betsy +Doreen +Geneva +Gracie +Jayne +Jessie +Liz +Maryann +Nina +Patrice +Rosemarie +Stacy +Tami +Tammi +Terrie +Trudy +Bobbi +Bridget +Candace +Daisy +Della +Edith +Emily +Erma +Gwen +Jeanie +Kay +Kelley +Kimberley +Lena +Marcella +Miriam +Molly +Nora +Tanya +Thelma +Trina +Wilma +Angelina +Angelita +Carole +Christy +Debby +Debora +Delia +Dianna +Evangelina +Evangeline +Faith +Georgina +Hilda +Janis +Joni +Kathi +Kristi +Lauren +Leona +Lillie +Lorna +Lorrie +Lucille +Marla +Mildred +Minnie +Rene +Ronda +Roxanne +Sabrina +Therese +Allison +Amanda +Beatriz +Candy +Christi +Cindi +Eunice +Florence +Jessica +Joanna +Josie +Karla +Katharine +Kris +Leann +Lenora +Lola +Lula +Lupita +Mae +Mercy +Myrna +Shari +Shawn +Vanessa +Viola +Alberta +Antonia +Billie +Blanca +Carmelita +Carolina +Cathryn +Celia +Christie +Cruz +Dee +Delma +Dolly +Elisa +Elsa +Elsie +Ermelinda +Francine +Ginger +Iris +Jodie +Katie +Katrina +Kellie +Keri +Kerry +Laurel +Laverne +Lorene +Lorie +Lou +Marianne +Marita +Mercedes +Naomi +Ofelia +Robyn +Rosalinda +Roxane +Silvia +Susana +Tamera +Tamra +Violet +Willa +Aileen +Amalia +Blanche +Candi +Catalina +Celeste +Cherie +Cherry +Consuelo +Cora +Deana +Debi +Dinah +Dollie +Elvia +Flora +Gale +Gay +Glenna +Guillermina +Hazel +Heather +Henrietta +Jacquelyn +Jacquline +Jeannine +Jodi +Johnnie +Judi +Kari +Kelli +Kendra +Lavonne +Luz +Lynette +Marion +Marta +Melva +Minerva +Neva +Pattie +Peggie +Rachael +Robbie +Socorro +Stacey +Susanna +Suzan +Tonya +Mary +Patricia +Linda +Susan +Cynthia +Debra +Karen +Lisa +Donna +Debbie +Kathy +Sandra +Deborah +Elizabeth +Maria +Barbara +Cheryl +Diane +Laura +Cindy +Nancy +Brenda +Carol +Sharon +Pamela +Lori +Julie +Teresa +Anna +Kathleen +Sylvia +Diana +Theresa +Rebecca +Christine +Tammy +Denise +Gloria +Rose +Margaret +Kimberly +Cathy +Kelly +Martha +Janet +Carolyn +Judy +Kim +Vicki +Virginia +Connie +Terri +Terry +Tina +Annette +Catherine +Katherine +Becky +Frances +Irene +Michelle +Robin +Shirley +Darlene +Kathryn +Betty +Sherry +Yolanda +Leslie +Peggy +Jennifer +Julia +Rhonda +Dawn +Sally +Victoria +Laurie +Paula +Norma +Lydia +Ruth +Ann +Yvonne +Alice +Anita +Christina +Stephanie +Veronica +Janice +Helen +Juanita +Rita +Joyce +Loretta +Beverly +Bonnie +Elaine +Valerie +Jane +Marie +Patti +Wendy +Lynn +Sherri +Andrea +Angela +Judith +Rosemary +Cecilia +Phyllis +Roberta +Rosa +Sheila +Sheryl +Anne +Dolores +Tami +Gail +Lucy +Pam +Sandy +Susie +Tracy +Arlene +Carrie +Dorothy +Ellen +Jo +Lorraine +Monica +Sarah +Suzanne +Jacqueline +Penny +Rachel +Amy +Marilyn +Michele +Renee +Ruby +Vivian +Carmen +Joanne +Louise +Patty +Vickie +Deanna +Grace +Sheri +Charlotte +Evelyn +Irma +Jean +Shelly +Toni +Beth +Lupe +Margie +Charlene +Esther +Eva +Melanie +Patsy +Bernice +Dana +Belinda +Bertha +Carla +Geraldine +Gina +Jackie +Jamie +Jan +Jeanne +Joan +Melissa +Nora +Dianne +Guadalupe +Lillian +Marlene +Wanda +Delores +Eleanor +Ella +Gayle +Jill +Margarita +Regina +Tamara +Teri +Cecelia +Clara +Emma +Laverne +Lynda +Rosie +Shelley +Caroline +Dianna +Joann +Josephine +Olivia +Priscilla +Ramona +Delia +Doris +Eileen +Gwendolyn +Ida +Lena +Olga +Shannon +Tammie +Tanya +Vera +Alberta +Alma +Ana +Colleen +Darla +Isabel +Joy +Marcella +Nadine +Sue +Verna +Debora +Elsie +Jeannette +Lana +Leticia +Lucille +Maryann +Melinda +Pat +Roxanne +Sara +Alicia +Angie +Annie +Audrey +Bobbie +Carole +Chris +Erin +Jeanette +Jennie +Jenny +Liz +Lynne +Marcia +Sherrie +Vanessa +April +Cheri +Claudia +Crystal +Debby +Dora +Holly +Jeannie +Lee +Lorena +Marian +Melody +Pauline +Stella +Therese +Beatrice +Bernadine +Christy +Della +Emily +Genevieve +Georgia +Ginger +Heidi +Jeri +Jessie +June +Kathi +Kay +Kris +Laurel +Lynette +Marianne +Marsha +Matilda +Maureen +Socorro +Stacy +Terrie +Thelma +Vicky +Amelia +Candy +Cathleen +Heather +Joanna +Joni +Kellie +Leann +Lorna +Lucinda +Maggie +Marjorie +Mildred +Molly +Mona +Myra +Nellie +Rosita +Sonia +Yvette +Betsy +Cindi +Doreen +Edna +Estella +Evangeline +Glenda +Jana +Janie +Janis +Karla +Lupita +Marla +Nita +Rena +Rene +Sabrina +Angelina +Antonia +Bessie +Constance +Daisy +Deena +Dina +Edith +Edwina +Elena +Elva +Erlinda +Etta +Gracie +Helena +Iris +Jacquelyn +Kerri +Lauren +Lorie +Marguerite +Natalie +Selina +Susanna +Tamra +Allison +Angelia +Aurora +Camille +Christie +Claire +Dolly +Elouise +Ernestine +Francine +Hilda +Jodi +Jody +Kari +Katie +Kelley +Kristin +Lois +Lula +Marta +Maxine +May +Nanette +Nina +Rochelle +Ronda +Rosalie +Rosalinda +Sadie +Shawna +Sheree +Tammi +Tracey +Adela +Alison +Alta +Amanda +Angelita +Bernadette +Billie +Cora +Deana +Debi +Dee +Elise +Elvira +Erma +Evangelina +Gay +Geneva +Gladys +Gretchen +Gwen +Harriet +Jacque +Jerri +Jessica +Josefina +Josie +Karin +Kristi +Lauri +Lenora +Lillie +Liza +Lora +Lourdes +Magdalena +Nona +Patrice +Pearl +Rhoda +Rosemarie +Sharlene +Stacey +Susana +Tonya +Viola +Ada +Aurelia +Bridget +Catalina +Celeste +Celia +Cherie +Clarissa +Cornelia +Delfina +Denice +Dinah +Dixie +Dorene +Eloise +Elvia +Faith +Fannie +Flora +Georgina +Graciela +Hazel +Hope +Janelle +Kelli +Kerry +Kristen +Kristine +Kristy +Ladonna +Laverna +Leah +Leanne +Lorene +Lorri +Lorrie +Mae +Manuelita +Marina +Marion +Mercy +Myrna +Naomi +Nola +Opal +Paulette +Robyn +Rosanna +Shari +Sonja +Sonya +Susanne +Suzette +Tamera +Trina +Valarie +Velma +Violet +Mary +Lisa +Patricia +Linda +Susan +Sandra +Debbie +Karen +Deborah +Debra +Brenda +Elizabeth +Donna +Barbara +Cynthia +Cindy +Kathy +Maria +Lori +Nancy +Laura +Teresa +Pamela +Carol +Sharon +Julie +Cheryl +Janet +Diane +Tammy +Diana +Margaret +Rebecca +Gloria +Kathleen +Denise +Virginia +Robin +Kelly +Kim +Kimberly +Michelle +Sylvia +Anna +Annette +Connie +Cathy +Catherine +Martha +Terri +Christine +Theresa +Tina +Rose +Carolyn +Rhonda +Laurie +Shirley +Irene +Yolanda +Alice +Jennifer +Vicki +Becky +Judy +Christina +Dawn +Janice +Lorraine +Peggy +Carmen +Paula +Sherry +Terry +Angela +Victoria +Wendy +Beverly +Frances +Kathryn +Betty +Katherine +Tracy +Yvonne +Darlene +Dorothy +Ann +Julia +Leslie +Lynn +Stephanie +Veronica +Sandy +Sarah +Suzanne +Bonnie +Norma +Rosa +Vickie +Joan +Juanita +Monica +Ruth +Amy +Evelyn +Marlene +Rachel +Roberta +Carrie +Rita +Anita +Sheila +Andrea +Rosemary +Sally +Sherri +Tamara +Carla +Deanna +Ellen +Eva +Irma +Lydia +Michele +Pam +Sheri +Vivian +Jill +Sheryl +Cecilia +Elaine +Esther +Guadalupe +Jacqueline +Loretta +Melissa +Patty +Regina +Ana +Arlene +Helen +Jo +Judith +Marie +Beth +Doris +Jane +Shelley +Susie +Valerie +Anne +Melanie +Penny +Rosie +Joann +Joyce +Marilyn +Dianna +Geraldine +Phyllis +Sara +Shelly +Toni +Alicia +Caroline +Charlene +Colleen +Dolores +Grace +Melinda +Patsy +Tami +Bernice +Eileen +Jamie +Margie +Dana +Holly +Lillian +Melody +Patti +Sue +Charlotte +Joanne +Wanda +Beatrice +Joy +Lucy +Nora +Teri +Belinda +Jackie +Jeanette +Louise +Priscilla +Shannon +Angie +Clara +Delores +Erin +Gail +Glenda +Jean +Jeannie +Shari +Cecelia +Cheri +Jennie +Stella +Alma +Bertha +Christy +Delia +Estella +Heidi +Josephine +Margarita +Maureen +Natalie +Olivia +Ramona +Renee +Crystal +Dora +Isabel +Joni +Kristi +Lena +Liz +Lucinda +Lupe +Roxanne +Amelia +Bernadette +Gina +Ida +Kelli +Leticia +Lois +Lynda +Rosalie +Ruby +Sherrie +Vicky +Angelita +Genevieve +Jacque +Jan +Jeannette +Jodi +Jody +Karla +Lynette +Marjorie +Marla +Yvette +Carole +Chris +Darla +Emily +Jeanne +Jenny +Josie +Kimberley +Lorna +Pauline +Rosemarie +Thelma +April +Audrey +Doreen +Edith +Joanna +Lula +Robyn +Ronda +Sonia +Stacey +Stacy +Antonia +Blanca +Constance +Della +Edna +Gayle +Gwen +Jeri +Jessie +Kathi +Kay +Kerri +Lora +Lorrie +Lucille +Marcella +Marcia +Mercy +Polly +Rena +Rene +Shawn +Shawna +Tammie +Tanya +Alison +Bridget +Debora +Eleanor +Emma +Erlinda +Georgia +Janie +Katrina +Kerry +Lee +Leigh +Marian +Molly +Mona +Nellie +Pearl +Terrie +Tracey +Antoinette +Billie +Claudia +Elvia +Ginger +Gracie +Gwendolyn +Jolene +Kari +Kelley +Kristine +Lorie +Lourdes +Lynne +Maryann +Matilda +Olga +Pat +Sabrina +Vera +Alberta +Alta +Annie +Bernadine +Celia +Corina +Dianne +Ella +Elsa +Elva +Hilda +Johanna +June +Katie +Lauren +Lauri +Myrna +Nadine +Nanette +Sonya +Therese +Trina +Verna +Armida +Camille +Candy +Cassandra +Christie +Deana +Desiree +Gladys +Henrietta +Hope +Jana +Jayne +Jeanie +Jeannine +Juana +Maggie +Margo +Marianne +Mindy +Myra +Nina +Rosalinda +Sandi +Vanessa +Adelina +Amanda +Bobbie +Candace +Cari +Cathleen +Cherie +Christi +Consuelo +Debby +Debi +Deloris +Elsie +Erma +Ernestina +Etta +Eunice +Fannie +Faye +Francine +Francisca +Gay +Gayla +Georgina +Gretchen +Jacquelyn +Janette +Kendall +Kris +Kristy +Laverne +Leah +Leona +Lesa +Lilly +Lita +Lorena +Lupita +Marcy +Marion +Marsha +Marta +Melba +Mildred +Misty +Patrice +Rochelle +Rosita +Sondra +Susanna +Tamra +Tonya +Traci +Viola +Alisa +Aurora +Belen +Bessie +Bonita +Carmelita +Celina +Deanne +Delphine +Diann +Edwina +Elena +Elouise +Esperanza +Evangeline +Flora +Florence +Gerri +Graciela +Harriet +Helena +Janelle +Jeanine +Jerri +Joe +Judi +Kellie +Kristie +Leann +Leanne +Leisa +Lily +Lissa +Liza +Lola +Loraine +Lou +Lucia +Mae +Maryhelen +Mitzi +Ofelia +Reba +Rosanna +Roseanne +Roxane +Susana +Suzanna +Sydney +Tamera +Tammi +Tracie +Tricia +Mary +Lisa +Linda +Patricia +Susan +Sandra +Karen +Cynthia +Brenda +Debbie +Deborah +Barbara +Lori +Elizabeth +Maria +Julie +Debra +Cheryl +Teresa +Laura +Carol +Sharon +Tammy +Nancy +Pamela +Donna +Kathy +Diana +Cindy +Rebecca +Diane +Denise +Terri +Theresa +Janet +Kimberly +Anna +Margaret +Kathleen +Kelly +Gloria +Jennifer +Robin +Martha +Michelle +Catherine +Kim +Connie +Laurie +Virginia +Cathy +Sylvia +Christine +Annette +Carolyn +Yolanda +Vicki +Tina +Anita +Stephanie +Katherine +Rhonda +Sherry +Christina +Janice +Judy +Jacqueline +Tracy +Rose +Dawn +Deanna +Frances +Michele +Ruth +Suzanne +Beverly +Darlene +Paula +Ann +Becky +Veronica +Angela +Leslie +Norma +Peggy +Shirley +Irene +Loretta +Lorraine +Bonnie +Kathryn +Terry +Victoria +Alice +Marie +Rachel +Carrie +Lynn +Sarah +Yvonne +Betty +Dorothy +Julia +Renee +Sherri +Wendy +Charlotte +Carmen +Amy +Evelyn +Helen +Joyce +Lupe +Monica +Valerie +Dolores +Cecilia +Judith +Lydia +Marilyn +Rosa +Sheila +Shelly +Sheri +Beth +Carla +Esther +Jackie +Jill +Melissa +Penny +Sandy +Andrea +Jane +Joann +Rosemary +Teri +Colleen +Gail +Roberta +Phyllis +Ana +Irma +Jean +Joan +Melinda +Sally +Sara +Tamara +Arlene +Elaine +Juanita +Rita +Shelley +Toni +Angie +Guadalupe +Melanie +Sheryl +Susie +Dana +Ramona +Vivian +Anne +Charlene +Ellen +Regina +Eileen +Joanne +Lucy +Melody +Vicky +Heidi +Pam +Eva +Glenda +Jeanne +Marjorie +Natalie +Shari +Alma +Gina +Josephine +Lynda +Margie +April +Crystal +Doris +Lena +Marlene +Ruby +Sue +Tracey +Vickie +Caroline +Cecelia +Dora +Ella +Heather +Jeanette +Jenny +Kerry +Leticia +Patty +Pauline +Priscilla +Robyn +Audrey +Belinda +Delia +Jamie +Jo +Joy +Marcella +Nina +Stella +Tammie +Wanda +Bertha +Grace +Holly +Louise +Maureen +Shannon +Stacey +Cheri +Dianna +Jan +Lorie +Olivia +Rosalie +Rosie +Roxanne +Angelita +Kelli +Lee +Molly +Mona +Nora +Patti +Chris +Dianne +Kristi +Liz +Marsha +Nellie +Patsy +Rene +Sherrie +Alicia +Doreen +Gayle +Lynette +Ronda +Sabrina +Thelma +Alberta +Angel +Beatrice +Elsie +Emily +Georgina +Isabel +Jana +Jeri +Jodi +Karla +Kay +Kristine +Lois +Lucinda +Lynne +Rosita +Stacy +Tami +Amanda +Celia +Constance +Corina +Debora +Delores +Erin +Erma +Georgia +Ginger +Jessie +Joni +Josie +Kellie +Lillian +Lorrie +Marcia +Rena +Shawn +Sonia +Tanya +Terrie +Vanessa +Verna +Yvette +Allison +Blanca +Edith +Emma +Geneva +Genevieve +Geraldine +Jolene +Lorri +Lupita +Marla +Olga +Susanna +Suzette +Tonya +Vera +Alta +Bernice +Billie +Bobbie +Candy +Cassandra +Christy +Dina +Edna +Esperanza +Estella +Jeannie +Jennie +Judi +Laverne +Margarita +Maryann +Matilda +Maxine +Paulette +Polly +Rosalinda +Sonya +Susana +Amelia +Bernadette +Betsy +Carole +Clara +Claudia +Deena +Eleanor +Elvira +Gretchen +Gwendolyn +Jacque +Janie +Kari +Kimberlee +Kimberley +Kristy +Laurel +Lourdes +Marianne +Naomi +Pat +Pearl +Rosanna +Rosario +Rosemarie +Roxanna +Sonja +Tammi +Tara +Valarie +Annie +Armida +Aurora +Bessie +Bridget +Camille +Candi +Celeste +Corrina +Daisy +Dena +Elsa +Ernestine +Faith +Felicia +Jeannette +Jessica +Joanna +Johanna +June +Katie +Kelley +Kerri +Kristina +Lauri +Leah +Leann +Leanne +Leigh +Leona +Lillie +Lora +Lorene +Lucille +Nadine +Nicki +Ofelia +Raquel +Rochelle +Shellie +Tricia +Velma +Viola +Wilma +Candace +Claudette +Coleen +Danette +Darla +Debi +Dee +Della +Dorene +Elisa +Evangeline +Florence +Francine +Francisca +Geri +Gracie +Graciela +Hope +Ida +Janell +Janette +Janine +Jayne +Jody +Johnna +Ladonna +Magdalena +Maggie +Marcy +Mildred +Miriam +Myra +Myrna +Noreen +Rae +Rhoda +Rosalind +Roselyn +Shauna +Shelli +Valorie +Alisa +Alison +Angelina +Antoinette +Antonia +Cara +Carey +Carolina +Cindi +Cristina +Danielle +Daphne +Deann +Debby +Elouise +Elvia +Erlinda +Ernestina +Flora +Gigi +Gladys +Glenna +Gwen +Hazel +Hilda +Jeanine +Katrina +Kristin +Lana +Leta +Letitia +Lola +Lorena +Mae +Manuela +Margo +Mari +Marian +Marisa +Minerva +Myrtle +Nita +Ophelia +Rachael +Roxann +Sadie +Selma +Sharlene +Shawna +Shelia +Tana +Therese +William +Mary +Lisa +Patricia +Linda +Susan +Karen +Cynthia +Lori +Sandra +Maria +Laura +Deborah +Julie +Donna +Barbara +Debbie +Elizabeth +Debra +Brenda +Michelle +Teresa +Pamela +Cindy +Nancy +Kathy +Kelly +Kimberly +Tammy +Carol +Rebecca +Sharon +Cheryl +Denise +Diane +Gloria +Robin +Christine +Tina +Diana +Margaret +Theresa +Kathleen +Anna +Jennifer +Janet +Kim +Sylvia +Connie +Laurie +Yolanda +Catherine +Sherry +Christina +Angela +Dawn +Sherri +Terri +Martha +Rhonda +Veronica +Anita +Virginia +Cathy +Frances +Suzanne +Monica +Paula +Rose +Tracy +Stephanie +Bonnie +Norma +Annette +Carolyn +Judy +Michele +Vicki +Leslie +Peggy +Shirley +Darlene +Valerie +Sheila +Jill +Marie +Amy +Katherine +Lorraine +Irene +Loretta +Sally +Sarah +Victoria +Becky +Evelyn +Janice +Melissa +Terry +Carmen +Cecilia +Ann +Betty +Renee +Wendy +Alice +Beth +Julia +Jacqueline +Sandy +Shelly +Yvonne +Andrea +Dorothy +Marilyn +Roberta +Rosa +Ruth +Helen +Lynn +Penny +Rachel +Sheri +Joann +Joyce +Kathryn +Lydia +Beverly +Eva +Sheryl +Carrie +Deanna +Judith +Elaine +Esther +Jackie +Phyllis +Rita +Alicia +Anne +Arlene +Gina +Holly +Regina +Tamara +Colleen +Jean +Melinda +Marlene +Melanie +Ramona +Carla +Angie +Charlene +Jeanette +Margarita +Shelley +Bertha +Dana +Darla +Josephine +Juanita +Rosemary +Teri +Toni +Gail +Lucy +Ana +Dora +Guadalupe +Patty +Stella +Wanda +Dolores +Jamie +Jo +Joy +Natalie +Pam +Pauline +Stacey +Ellen +Jane +Joanne +Margie +Sherrie +Vivian +Belinda +Caroline +Charlotte +Leticia +Louise +Ruby +Tammie +Vickie +Lupe +Maureen +Stacy +Tami +Vicky +Irma +Joan +Marla +Priscilla +Rene +Sara +Shannon +Alma +April +Dianne +Doris +Heather +Kelley +Melody +Patsy +Ronda +Beatrice +Crystal +Jeri +Kelli +Lynda +Nina +Shari +Clara +Grace +Sabrina +Susie +Tanya +Bernice +Dianna +Eileen +Gayle +Geraldine +Glenda +Ida +Jenny +Lynne +Matilda +Olivia +Robyn +Verna +Carole +Doreen +Edna +Heidi +Jeanne +Jodi +Kimberley +Lauri +Lucinda +Lupita +Nora +Patti +Rosie +Rosita +Roxanne +Sonya +Sue +Tracey +Yvette +Candy +Dina +Emma +Georgia +Karla +Lorie +Marcella +Marcy +Marjorie +Sonia +Terrie +Tonya +Annie +Carmelita +Cheri +Delia +Ginger +Jeannette +Kay +Kellie +Molly +Rena +Rochelle +Tara +Edith +Emily +Erin +Genevieve +Joanna +Joni +June +Lillian +Liz +Lois +Miriam +Allison +Bernadette +Cecelia +Celia +Chris +Claudia +Constance +Debora +Jan +Laverne +Lora +Lorena +Lorrie +Marcia +Marian +Marianne +Pearl +Rosemarie +Therese +Tracie +Trudy +Vanessa +Adela +Amelia +Angelina +Audrey +Corina +Daphne +Delores +Eleanor +Elisa +Elvira +Ernestine +Estella +Gwen +Gwendolyn +Hazel +Henrietta +Jana +Janette +Jody +Josie +Leann +Madeline +Mildred +Mona +Olga +Paige +Pat +Polly +Shawn +Sophia +Tammi +Traci +Viola +Angel +Betsy +Bobbi +Bonita +Bridget +Celeste +Consuelo +Deana +Dixie +Dorothea +Francine +Francisca +Inez +Jacque +Janie +Jennie +Jodie +Kari +Kerry +Kristi +Kristine +Lena +Leona +Liza +Lorna +Lynette +Lynnette +Mae +Marta +Maryann +Shelby +Shellie +Stacie +Thelma +Velma +Alberta +Alison +Amber +Bernadine +Blanca +Bobbie +Candace +Christi +Christie +Cora +Dee +Elvia +Evangelina +Faith +Harriet +Hilda +Janine +Jeannie +Jessie +Jolene +Kerri +Kristen +Kristin +Leah +Lorri +Marion +Myrna +Socorro +Wendi +Wilma +Agnes +Amalia +Angelita +Bettina +Christy +Daisy +Danette +Deann +Della +Delphina +Desiree +Dori +Elena +Elsa +Elsie +Elva +Emilia +Erlinda +Ethel +Eunice +Evangeline +Florence +Frankie +Geneva +Herlinda +Hope +Isabel +Jayne +Jessica +Katrina +Kristina +Lana +Laurel +Leigh +Lillie +Lola +Lourdes +Lucia +Margo +Maricela +Marina +Maxine +Nadine +Patrice +Rae +Sabina +Sharla +Shauna +Sonja +Tamra +Vera +Adelina +Adriana +Amanda +Antoinette +Aurora +Becki +Carlene +Cassandra +Catalina +Cathie +Cherie +Colette +Debby +Deena +Eloise +Elouise +Felicia +Flora +Gaye +Georgina +Gracie +Graciela +Iris +Iva +Janeen +Janis +Jewel +Josefina +Juana +Juliana +Karrie +Kimberlee +Kristy +Ladonna +Lenora +Lenore +Lesa +Lorinda +Luann +Lyn +Marci +Marylou +Melodie +Mercy +Michael +Mickey +Mindy +Minerva +Nanette +Nellie +Robbin +Rosanna +Sondra +Susana +Susanna +Lisa +Mary +Patricia +Susan +Linda +Karen +Lori +Laura +Sandra +Maria +Cynthia +Deborah +Elizabeth +Barbara +Brenda +Kimberly +Julie +Tammy +Donna +Debra +Nancy +Pamela +Michelle +Teresa +Cindy +Christine +Sharon +Debbie +Jennifer +Diana +Kathy +Tina +Kelly +Rebecca +Diane +Denise +Theresa +Cheryl +Carol +Kathleen +Terri +Anna +Sylvia +Paula +Margaret +Robin +Christina +Connie +Martha +Sherri +Yolanda +Gloria +Janet +Rhonda +Irene +Kim +Leslie +Tracy +Annette +Virginia +Angela +Sherry +Catherine +Stephanie +Veronica +Laurie +Yvonne +Monica +Valerie +Cathy +Dawn +Melissa +Norma +Ann +Kathryn +Carolyn +Carmen +Alice +Amy +Darlene +Sheila +Victoria +Marie +Rose +Suzanne +Wendy +Beth +Bonnie +Michele +Penny +Judy +Lorraine +Rachel +Dana +Ruth +Julia +Terry +Becky +Frances +Loretta +Sheri +Katherine +Sarah +Stacy +Andrea +Gina +Betty +Charlene +Janice +Melanie +Peggy +Sally +Colleen +Juanita +Renee +Roberta +Sandy +Shannon +Anne +Carla +Irma +Jill +Vicki +Beverly +Jacqueline +Rosemary +Marlene +Susie +Tamara +Anita +Deanna +Dorothy +Elaine +Josephine +Lynn +Regina +Rita +Alicia +Heidi +Jackie +Shelley +Joyce +Lydia +Pam +Vickie +Carrie +Holly +Patty +Rosa +Sheryl +Eva +Evelyn +Jeanette +Jo +Melinda +Shelly +Arlene +Dolores +Judith +Shirley +Stacey +Joann +Kristi +Margie +Priscilla +Tami +Cecilia +Dianna +Esther +Sara +Geraldine +Jamie +Jean +Jeanne +Joan +Joanne +Lupe +Pauline +Ramona +Vivian +Belinda +Charlotte +Jane +Lucy +Phyllis +Toni +Alma +Ana +Caroline +Chris +Helen +Kelli +Ronda +Roxanne +Tanya +Tracey +Bernice +Darla +Dora +Guadalupe +Leticia +Margarita +Tammie +Yvette +Eileen +Ellen +Heather +Ruby +Teri +April +Beatrice +Christy +Doris +Laverne +Angie +Crystal +Gail +Jenny +Josie +Lois +Louise +Lucinda +Lynda +Marilyn +Marjorie +Nora +Bobbie +Ginger +Glenda +Joy +Kelley +Maureen +Olga +Sherrie +Wanda +Bertha +Delores +Joanna +Jody +Karla +Kimberley +Lora +Robyn +Amanda +Amelia +Bernadette +Candy +Genevieve +Georgina +Jessica +Leah +Lorena +Lorrie +Olivia +Stella +Sue +Delia +Dina +Emily +Emma +Kristine +Lillian +Liz +Lynette +Marcia +Matilda +Melody +Misty +Patsy +Tonya +Vanessa +Vicky +Cecelia +Edna +Eleanor +Erin +Gayle +Ida +Isabel +Jan +Lena +Lorie +Natalie +Rene +Rosalie +Shari +Sonia +Alberta +Allison +Audrey +Cheri +Clara +Dee +Deena +Grace +Gwendolyn +Lourdes +Pearl +Sonya +Terrie +Annie +Candace +Cassandra +Consuelo +Corrina +Dianne +Ella +Elsa +Felicia +Jana +Janine +Janis +Kay +Kerry +Kristin +Kristina +Leona +Lorna +Mercy +Miriam +Mona +Nina +Patti +Rochelle +Rosie +Rosita +Vera +Angelina +Bessie +Blanca +Danette +Della +Doreen +Elisa +Georgia +Jeannie +Jeri +June +Kari +Katrina +Laurel +Lauren +Lauri +Leigh +Lorri +Marcella +Maribel +Marsha +Shawn +Shelia +Stacie +Tamra +Tracie +Alison +Carmelita +Dorene +Evangeline +Jodi +Jolene +Katie +Kris +Kristen +Kristy +Lynne +Marian +Marianne +Maxine +Molly +Verna +Alana +Angelica +Bridget +Candi +Cara +Catalina +Cathleen +Constance +Corina +Dena +Elvira +Erlinda +Ernestina +Ernestine +Geneva +Geri +Jami +Jeannette +Kerri +Kimberlee +Leann +Lee +Lupita +Marci +Marina +Marion +Marla +Maryann +Nadine +Pamala +Roseann +Socorro +Sonja +Tammi +Thelma +Tricia +Velma +Angelita +Camille +Cari +Cherie +Christie +Clarissa +Cristina +Daisy +Darcy +Deana +Debby +Denice +Elena +Esperanza +Etta +Faith +Francine +Gwen +Helena +Hilda +Hope +Janell +Jennie +Jerri +Karin +Keri +Kirsten +Kristie +Lenora +Lesa +Lila +Lola +Lolita +Lorinda +Lucia +Madeline +Malinda +Marta +Martina +Nicole +Polly +Rachelle +Rena +Rosalinda +Roxanna +Sabrina +Sadie +Shellie +Sondra +Susana +Tori +Violet +Aida +Alta +Amber +Angel +Armida +Bobbi +Caren +Carlene +Carole +Celia +Christi +Claire +Coleen +Dawna +Desiree +Edie +Erma +Estella +Ester +Eunice +Fannie +Flora +Ilene +Isabell +Jacque +Jacquelyn +Janna +Jeanine +Jeannine +Jessie +Jodie +Johnna +Judi +Kellie +Lea +Lorene +Luann +Luz +Maggie +Marcy +Myrna +Nellie +Noreen +Patrica +Paulette +Renae +Robbin +Rosanna +Shanna +Sharlene +Shauna +Sophia +Sophie +Susanna +Tamela +Tara +Therese +Valencia +Viola +Wilma +Mary +Lisa +Patricia +Susan +Linda +Karen +Maria +Elizabeth +Kimberly +Cynthia +Sandra +Lori +Laura +Julie +Tammy +Donna +Barbara +Deborah +Michelle +Christine +Brenda +Denise +Pamela +Teresa +Debra +Kelly +Cheryl +Kathleen +Rebecca +Anna +Margaret +Carol +Sharon +Jennifer +Diana +Theresa +Nancy +Debbie +Cindy +Kathy +Tina +Angela +Christina +Robin +Diane +Rhonda +Sherri +Annette +Gloria +Kim +Wendy +Terri +Sylvia +Tracy +Dawn +Jacqueline +Stephanie +Laurie +Monica +Virginia +Yolanda +Amy +Judy +Melissa +Rose +Catherine +Connie +Martha +Paula +Veronica +Anita +Lorraine +Yvonne +Suzanne +Valerie +Sarah +Janet +Renee +Michele +Gina +Ann +Bonnie +Carolyn +Darlene +Leslie +Sheila +Becky +Irene +Shelly +Frances +Stacy +Victoria +Cathy +Charlotte +Marie +Rosemary +Andrea +Peggy +Sally +Sherry +Dana +Deanna +Regina +Tamara +Betty +Rosa +Shannon +Anne +Julia +Norma +Rita +Ruth +Shirley +Stacey +Yvette +Carla +Katherine +Alice +Ana +Janice +Jill +Penny +Charlene +Colleen +Melinda +Priscilla +Dolores +Kathryn +Roberta +Cecilia +Holly +Loretta +Rachel +Carmen +Helen +Joyce +Lynn +Marilyn +Tracey +Wanda +Beth +Caroline +Carrie +Lydia +Shelley +Beverly +Dorothy +Ellen +Susie +Tammie +Terry +Margarita +Darla +Heather +Irma +Jackie +Joanne +Nora +Ramona +Sheri +Esther +Grace +Jamie +Joann +Martina +Pauline +Stella +Arlene +Elaine +Evelyn +Heidi +Joan +Juanita +Judith +Sheryl +Toni +Alicia +Jane +Kari +Kristi +Vicki +April +Kristen +Melanie +Patty +Tami +Tanya +Francine +Isabel +Jean +Jeanne +Leticia +Lucy +Natalie +Sandy +Vivian +Vonda +Doreen +Eva +Jodi +Leah +Marlene +Roxanne +Sara +Sherrie +Vicky +Allison +Belinda +Dianna +Erin +Glenda +Josephine +Josie +Kristine +Lynda +Phyllis +Robyn +Ruby +Vickie +Delores +Margie +Pam +Alma +Elena +Geraldine +Kellie +Audrey +Bridget +Clara +Crystal +Gwendolyn +Jeanette +Jo +Karla +Kris +Kristin +Lucinda +Maureen +Thelma +Cheri +Genevieve +Jacquelyn +Jeannette +Jody +Kelli +Lena +Louise +Lupe +Patti +Shawn +Sonia +Verna +Angie +Bobbie +Eileen +Guadalupe +Ida +Jessica +June +Marcella +Marian +Marina +Ronda +Sonya +Traci +Trina +Bertha +Christy +Dena +Dora +Doris +Ella +Joanna +Jodie +Katrina +Kelley +Lillian +Lora +Lupita +Lynette +Marianne +Molly +Alison +Amanda +Amelia +Angelina +Corina +Dianne +Joy +Lorena +Melody +Olga +Patsy +Rosita +Shauna +Shawna +Teri +Vera +Adrienne +Angelita +Beatrice +Bernadette +Bernice +Billie +Carole +Cecelia +Emily +Ernestine +Felicia +Georgia +Gretchen +Jenny +Lana +Marcia +Marjorie +Nanette +Olivia +Pearl +Rosalie +Rosie +Sonja +Susanna +Terrie +Tonya +Valarie +Vanessa +Alberta +Carolina +Constance +Danielle +Delia +Dina +Evangeline +Gail +Ginger +Gracie +Henrietta +Jacque +Jan +Jennie +Jessie +Kay +Leigh +Lois +Matilda +Rena +Rosemarie +Staci +Tracie +Antoinette +Candy +Cindi +Deneen +Edith +Eleanor +Erma +Esperanza +Gayle +Jana +Joni +Kerry +Kristina +Lauren +Lee +Leona +Lorie +Lorna +Lorrie +Marcy +Margo +Marla +Maryann +Mildred +Mindy +Nina +Polly +Rene +Roselyn +Sue +Susana +Trudy +Amber +Armida +Bessie +Blanca +Celeste +Chris +Elisa +Elvira +Emma +Ernestina +Estella +Fannie +Francisca +Geneva +Georgina +Glenna +Hazel +Hope +Janie +Jocelyn +Juana +Kristy +Laverne +Lynne +Marion +Marsha +Marta +Mercy +Michael +Misty +Monique +Myrna +Paige +Patrice +Rosalind +Roxanna +Shelli +Suzie +Therese +Tricia +Trisha +Amalia +Angelica +Cassandra +Celia +Clarissa +Coleen +Debora +Erlinda +Flora +Janis +Jeanine +Jerri +Julianne +Katie +Kerri +Kimberley +Kirsten +Lea +Liz +Liza +Lorri +Lucille +Luz +Maggie +Marci +Marylou +Maxine +Nellie +Nicole +Nikki +Robert +Rosalinda +Sabrina +Samantha +Sophia +Tammi +Tana +Tara +Adela +Angel +Annabelle +Annie +Annmarie +Artemisa +Camille +Cara +Carlene +Celina +Consuelo +Cora +Corrina +Danette +Daphne +Darcy +Dayna +Deann +Deanne +Dee +Edna +Elsa +Elvia +Erika +Esmeralda +Eve +Faye +Gabriela +Gay +Isabelle +Jami +Janette +Jayme +Jeannie +Jeri +Judi +Karin +Kathie +Kimber +Kristie +Krystal +Ladonna +Leann +Leeann +Lesley +Lily +Lorene +Lorinda +Lucia +Marisa +Merlinda +Nona +Pat +Rochelle +Rosalva +Sadie +Sandi +Shanna +Shari +Socorro +Starla +Suzette +Tamera +Velma +Viola +Zina +Lisa +Mary +Patricia +Susan +Kimberly +Cynthia +Karen +Sandra +Linda +Maria +Laura +Lori +Michelle +Elizabeth +Julie +Deborah +Brenda +Christine +Rebecca +Pamela +Donna +Barbara +Teresa +Kelly +Tammy +Diane +Debra +Tina +Sharon +Rhonda +Jennifer +Anna +Denise +Diana +Angela +Cheryl +Theresa +Stephanie +Wendy +Carol +Debbie +Kathleen +Nancy +Sylvia +Tracy +Kim +Dawn +Margaret +Robin +Cindy +Monica +Christina +Melissa +Amy +Carolyn +Gloria +Kathy +Veronica +Jacqueline +Virginia +Andrea +Catherine +Frances +Paula +Connie +Judy +Katherine +Rose +Kathryn +Suzanne +Martha +Terri +Victoria +Deanna +Jill +Norma +Valerie +Gina +Shelly +Yvonne +Annette +Shannon +Sherri +Janet +Sherry +Yolanda +Carla +Leslie +Lorraine +Melinda +Juanita +Laurie +Dana +Michele +Renee +Sheila +Anita +Ann +Heidi +Janice +Shirley +Betty +Darlene +Elaine +Marie +Ruth +Sally +Becky +Cathy +Charlene +Irene +Alice +Joann +Rachel +Rosemary +Ana +Charlotte +Eva +Regina +Stacy +Vicki +Beth +Dorothy +Lydia +Rita +Sarah +Yvette +Cecilia +Marlene +Peggy +Beverly +Bonnie +Carmen +Evelyn +Jeanette +Julia +Priscilla +Samantha +Holly +Jackie +Joyce +Penny +Roberta +Stacey +Colleen +Heather +Helen +Melanie +Rosa +Sheri +Terry +Carrie +Joanne +Jodi +Loretta +Lynn +Ramona +Ruby +Tamara +Traci +April +Caroline +Erin +Guadalupe +Judith +Kristine +Leticia +Anne +Arlene +Jo +Kelli +Phyllis +Jody +Josephine +Lillian +Lupe +Pauline +Shawn +Toni +Amanda +Audrey +Esther +Felicia +Geraldine +Kristina +Ronda +Sara +Sheryl +Sonia +Stella +Susie +Bernice +Delores +Joy +Marilyn +Olivia +Rene +Vickie +Alicia +Christy +Dianna +Dora +Ellen +Emily +Grace +Irma +Jamie +Jean +Joan +Kristin +Lucy +Martina +Rosie +Shelley +Tami +Tanya +Vonda +Belinda +Doreen +Kimberley +Lora +Pam +Sonya +Dena +Lucinda +Margarita +Tonya +Vicky +Vivian +Wanda +Eileen +Georgia +Glenda +Josie +Maureen +Molly +Natalie +Robyn +Teri +Velma +Antoinette +Cara +Darla +Isabel +Jana +Jeanne +Jeri +Jessica +Karla +Lucia +Lynette +Monique +Nora +Shawna +Tracey +Amber +Angie +Bridget +Corina +Crystal +Dolores +Genevieve +Kris +Lena +Marcella +Alison +Allison +Angelina +Cassandra +Cecelia +Debora +Della +Edith +Francisca +Gail +Ginger +Jane +Jeannette +Jennie +Joanna +Kellie +Kerry +Leah +Lynda +Marla +Melody +Patty +Sandy +Shauna +Sue +Trina +Trisha +Amelia +Angelita +Bernadette +Cheri +Eleanor +Elisa +Ella +Elvira +Ida +Jacque +Jessie +Lorie +Margie +Patti +Pearl +Rosita +Shari +Verna +Alma +Bernadine +Candace +Carolina +Corrina +Janine +Karin +Katrina +Kristen +Kristy +Laverne +Lee +Lenora +Lois +Lorena +Louise +Marian +Marsha +Marta +Matilda +Mercedes +Olga +Rosanna +Roxanne +Sonja +Vanessa +Beatrice +Cherie +Chris +Danielle +Deanne +Doris +Elena +Elsa +Geneva +Gwendolyn +Kara +Lauri +Lupita +Marianne +Marjorie +Mona +Patsy +Rachelle +Rena +Staci +Susana +Tammie +Terrie +Vera +Wilma +Alberta +Antonia +Bertha +Billie +Bobbi +Carole +Cathleen +Celia +Clara +Cristina +Debby +Delia +Desiree +Dianne +Edna +Evangelina +Hilda +Jacquelyn +Janelle +Janette +Jenny +Juli +Kari +Kelley +Kimberlee +Kristi +Leanne +Margo +Mia +Naomi +Nina +Robbin +Rosemarie +Sabrina +Selina +Suzette +Tiffany +Adrienne +Annie +Betsy +Candy +Claudia +Consuelo +Elvia +Esmeralda +Estella +Eugenia +Evangeline +Francine +Frankie +Gay +Gena +Imelda +Jan +Janell +Jodie +Jolene +Juliana +June +Katie +Kay +Kendall +Lana +Leann +Liza +Lucille +Marcelina +Maricela +Marina +Maxine +Myrna +Nadine +Rae +Raquel +Rochelle +Rosalie +Rosalinda +Sallie +Tamera +Tammi +Thelma +Tricia +Alana +Alisa +Alta +Amalia +Angelica +Aurora +Bobbie +Catalina +Christa +Clarissa +Constance +Dee +Dina +Dixie +Elva +Erlinda +Etta +Gwen +Hazel +Ingrid +Jeanine +Jerri +Joni +Karyn +Keri +Kirsten +Laurel +Lauren +Lenore +Liz +Lola +Lorri +Lorrie +Luz +Lynne +Marci +Marcia +Marisa +Marisela +Misty +Myra +Nellie +Rachael +Randi +Romona +Shana +Socorro +Sophia +Tara +Thomas +Tracie +Violet +Lisa +Mary +Kimberly +Michelle +Cynthia +Patricia +Sandra +Susan +Julie +Maria +Jennifer +Karen +Deborah +Rebecca +Tammy +Elizabeth +Christine +Laura +Linda +Barbara +Brenda +Donna +Teresa +Stephanie +Tina +Pamela +Angela +Kelly +Carol +Debra +Melissa +Sharon +Christina +Monica +Kathleen +Margaret +Cheryl +Nancy +Amy +Denise +Lori +Diana +Tracy +Diane +Veronica +Theresa +Anna +Sylvia +Wendy +Cindy +Dawn +Rhonda +Debbie +Paula +Kathy +Michele +Janet +Connie +Kim +Jacqueline +Sherry +Carolyn +Catherine +Robin +Gina +Katherine +Andrea +Victoria +Gloria +Yvonne +Anita +Virginia +Deanna +Irene +Terri +Martha +Ann +Annette +Frances +Kathryn +Sheila +Yolanda +Leslie +Shannon +Lorraine +Stacy +Valerie +Sarah +Rachel +Roberta +Rosemary +Ruth +Shelly +Sherri +Cecilia +Laurie +Norma +Renee +Rose +Cathy +Julia +Beth +Suzanne +Darlene +Heather +Jill +Judy +Tiffany +Shelley +Becky +Evelyn +Regina +Rosa +Stacey +April +Carla +Carrie +Rita +Sonia +Dana +Guadalupe +Tracey +Terry +Anne +Heidi +Holly +Janice +Kristin +Yvette +Ana +Charlotte +Dorothy +Esther +Helen +Irma +Marie +Melinda +Betty +Carmen +Jamie +Joann +Kristine +Priscilla +Shirley +Alice +Josephine +Loretta +Lydia +Natalie +Sheri +Jackie +Lynn +Sally +Sara +Shawna +Alicia +Amanda +Beverly +Jessica +Juanita +Kristina +Marlene +Tamara +Tonya +Vicki +Caroline +Charlene +Elaine +Jeanette +Joanne +Ramona +Tami +Arlene +Glenda +Grace +Jean +Leticia +Margarita +Nora +Bonnie +Colleen +Kristen +Toni +Audrey +Dolores +Jo +Joy +Joyce +Melanie +Susie +Tanya +Eileen +Joan +Jody +Kristi +Phyllis +Sandy +Sheryl +Sonya +Doreen +Ellen +Geraldine +Jodi +Lucy +Marjorie +Melody +Vickie +Angelica +Belinda +Judith +Kari +Karla +Kelley +Kimberley +Marilyn +Molly +Pauline +Stella +Vivian +Alma +Angelita +Dora +Edna +Erin +Gail +Joanna +Leah +Lucinda +Olga +Patty +Rosalie +Susana +Traci +Vicky +Vonda +Angelina +Candace +Cheri +Christy +Danielle +Ginger +Louise +Marina +Pam +Peggy +Robyn +Ronda +Ruby +Samantha +Sonja +Teri +Trina +Vanessa +Bernadette +Bertha +Clara +Hope +Isabel +Jennie +Katrina +Lena +Lorena +Marcia +Martina +Monique +Nadine +Nellie +Penny +Rosie +Roxanne +Shawn +Wanda +Alberta +Candy +Cathleen +Chris +Desiree +Dianna +Edith +Eleanor +Georgina +Jane +Jenny +Kelli +Kerry +Lora +Marta +Misty +Nicole +Olivia +Rochelle +Bridget +Carole +Cristina +Darla +Della +Dina +Elvira +Erlinda +Eva +Francine +Genevieve +Gretchen +Jacque +Jana +Janine +Jeannie +Karin +Laverne +Lupe +Luz +Marcella +Marla +Maryann +Rachael +Shari +Shauna +Sophia +Amelia +Annie +Beatrice +Bernice +Cassandra +Christie +Delia +Doris +Emily +Erma +Esperanza +Estella +Francisca +Graciela +Gwendolyn +Janette +Jeanne +Jolene +Kay +Kendra +Kris +Kristy +Lee +Lynette +Lynne +Maureen +Mildred +Miriam +Mona +Patsy +Rene +Rosita +Silvia +Tamera +Tammi +Alisa +Allison +Berlinda +Bernadine +Blanca +Bridgette +Carolina +Cecelia +Celeste +Cherie +Corina +Corinne +Elvia +Evangeline +Faith +Felicia +Georgia +Inez +Jeannette +Jeri +Kirsten +Krista +Margie +Matilda +Michael +Naomi +Nina +Renae +Sherrie +Suzette +Tammie +Trisha +Vera +Alvina +Antoinette +Antonia +Audra +Aurora +Bobbi +Bobbie +Carmelita +Catalina +Constance +Consuelo +Crystal +Daphne +Deann +Debby +Elena +Enedina +Freida +Gayla +Henrietta +Ida +Jami +Jan +Jessie +Josie +Kellie +Kimberlee +Lea +Leann +Leigh +Lillian +Lucia +Lucille +Lupita +Mae +Marisa +Paige +Polly +Raquel +Rena +Rosalia +Roxanna +Shana +Stacie +Sue +Tara +Wendi +Adrianne +Aimee +Alison +Amber +Angie +Belen +Bethany +Candice +Celina +Clarissa +Colette +Corrine +Danette +Dayna +Deanne +Debora +Deedee +Dena +Dianne +Elisa +Elise +Elsa +Emma +Etta +Gayle +Gena +Greta +Herlinda +Isabelle +Jeanie +June +Kara +Kathrine +Katie +Kristie +Leanne +Lenora +Liz +Liza +Lorie +Lynda +Marcie +Margo +Marian +Maxine +Nanette +Pearl +Rosalind +Rosanna +Rosanne +Roseann +Sabra +Selina +Sharla +Shelia +Sondra +Suzie +Thelma +Tricia +Trudy +Whitney +Winifred +Lisa +Michelle +Mary +Kimberly +Maria +Patricia +Stephanie +Cynthia +Julie +Susan +Jennifer +Sandra +Elizabeth +Deborah +Laura +Tammy +Karen +Christine +Teresa +Melissa +Brenda +Linda +Pamela +Donna +Rebecca +Barbara +Angela +Christina +Debra +Lori +Tina +Dawn +Kelly +Nancy +Amy +Denise +Sharon +Diana +Monica +Anna +Veronica +Diane +Margaret +Cheryl +Tracy +Carol +Rhonda +Wendy +Paula +Gloria +Cindy +Theresa +Catherine +Gina +Kathleen +Michele +Norma +Victoria +Annette +Debbie +Sylvia +Jacqueline +Andrea +Jill +Rachel +Virginia +Martha +Sheila +Yvonne +Katherine +Yolanda +Robin +Shannon +Sherry +Stacy +Stacey +Janet +April +Kathy +Leslie +Rosa +Sarah +Anita +Connie +Sherri +Terri +Kim +Carolyn +Darlene +Deanna +Julia +Laurie +Renee +Tamara +Anne +Heather +Rose +Suzanne +Yvette +Carmen +Carrie +Holly +Valerie +Juanita +Lorraine +Cathy +Regina +Shelly +Jamie +Sheri +Ann +Kristina +Marie +Carla +Charlene +Colleen +Kathryn +Kristine +Shelley +Tiffany +Becky +Dana +Melinda +Alice +Bonnie +Frances +Kristin +Lydia +Judy +Leticia +Arlene +Jeanette +Loretta +Sally +Tracey +Beverly +Cecilia +Heidi +Lynn +Margarita +Rita +Tonya +Geraldine +Priscilla +Roberta +Alicia +Irene +Jodi +Joyce +Sonia +Sonya +Vicki +Ana +Esther +Helen +Melanie +Samantha +Sara +Tanya +Teri +Caroline +Dorothy +Grace +Jackie +Bernadette +Betty +Eva +Evelyn +Guadalupe +Irma +Janice +Lucinda +Ronda +Ruth +Sabrina +Toni +Vanessa +Charlotte +Dolores +Erin +Joann +Joy +Leah +Marilyn +Ramona +Beth +Bridget +Crystal +Kelley +Kristen +Nicole +Olivia +Pauline +Rosemary +Terry +Traci +Trina +Christy +Dina +Jessica +Joanne +Kristi +Shawna +Shirley +Stella +Audrey +Cassandra +Kelli +Lorena +Peggy +Vickie +Claudia +Isabel +Jean +Jo +Kimberley +Monique +Natalie +Roxanne +Shari +Shawn +Allison +Alma +Belinda +Cheri +Delores +Dora +Doreen +Elaine +Elisa +Jane +Jody +Josephine +Lucy +Lynette +Margie +Marlene +Mona +Sandy +Sheryl +Tami +Tracie +Vivian +Angelica +Beatrice +Corina +Danielle +Darla +Desiree +Felicia +Gail +Janelle +Kellie +Kerry +Lorie +Louise +Marjorie +Martina +Melody +Misty +Nina +Nora +Penny +Robyn +Shauna +Sherrie +Vicky +Wanda +Angelita +Angie +Antoinette +Dianna +Doris +Elena +Ginger +Joanna +Josie +Kirsten +Lena +Lora +Marcella +Patsy +Rosie +Ruby +Tammie +Verna +Wendi +Amelia +Delia +Ellen +Georgia +Georgina +Gwendolyn +Judith +Kara +Kerri +Kristy +Lana +Lara +Leigh +Lupe +Lynda +Marcia +Marla +Nadine +Patti +Patty +Phyllis +Rachael +Staci +Susanne +Vonda +Amanda +Carey +Clara +Cristina +Deann +Edna +Ernestine +Jeannette +Jeannie +Kari +Kristie +Leann +Lenora +Luz +Marian +Matilda +Rene +Rosita +Susie +Suzette +Tonia +Trisha +Alberta +Audra +Bernice +Bertha +Celeste +Christie +Clarissa +Danette +Deana +Eleanor +Erika +Estella +Geneva +Genevieve +Gretchen +Jana +Joan +Jodie +Karin +Katrina +Laverne +Lois +Maricela +Marina +Nanette +Vera +Angelina +Blanca +Candace +Deanne +Dena +Eileen +Elsa +Elvia +Francine +Gladys +Graciela +June +Karla +Kendra +Krista +Leona +Lupita +Lynnette +Mara +Maryann +Mercedes +Meredith +Miriam +Raquel +Rena +Rosalinda +Rosemarie +Silvia +Sophia +Stacie +Tamera +Tammi +Adriana +Adrienne +Aimee +Alfreda +Betsy +Bobbie +Brandi +Caren +Cecelia +Celia +Chris +Consuelo +Daphne +Debora +Dee +Elva +Elvira +Emily +Flora +Gayle +Glenda +Ida +Jeanne +Jeri +Joni +Karyn +Lillian +Lorna +Lourdes +Malinda +Marion +Marnie +Maureen +Melisa +Mia +Paulette +Rebekah +Rochelle +Roni +Roseann +Susana +Tania +Tara +Abigail +Alisa +Amber +Arlinda +Belen +Billie +Bonita +Cherie +Christi +Deedee +Delphina +Dianne +Dori +Eliza +Ella +Erlinda +Evangeline +Faith +Glenna +Helena +Iris +Janine +Jeanna +Jenny +Jesusita +Julianne +Julieta +Katie +Kay +Keri +Kris +Lee +Lucia +Marcy +Margo +Marietta +Marisa +Marlo +Marsha +Marta +Maxine +Minerva +Nellie +Pam +Polly +Renita +Rosanna +Selena +Sharla +Sharolyn +Trudy +Michelle +Lisa +Kimberly +Jennifer +Mary +Laura +Patricia +Maria +Julie +Tammy +Melissa +Christine +Elizabeth +Cynthia +Karen +Rebecca +Deborah +Christina +Susan +Angela +Stephanie +Kelly +Sandra +Tina +Teresa +Linda +Dawn +Pamela +Lori +Tracy +Barbara +Debra +Monica +Diana +Amy +Donna +Shannon +Cheryl +Wendy +Theresa +Denise +Michele +Sharon +Veronica +Brenda +Rhonda +Andrea +Catherine +Diane +Gina +Nancy +Heather +Carol +Kathleen +Victoria +Paula +Sylvia +Anna +Robin +Tamara +Annette +Cindy +Margaret +Valerie +Stacey +Yolanda +Gloria +Jill +Sherry +Virginia +Yvonne +Ann +Debbie +Katherine +Jacqueline +Sheila +Kim +Melinda +April +Connie +Terri +Carla +Deanna +Shelly +Stacy +Holly +Norma +Carrie +Leslie +Rachel +Renee +Kathryn +Kristin +Martha +Melanie +Suzanne +Janet +Laurie +Sarah +Carolyn +Irene +Juanita +Kristine +Regina +Sherri +Anita +Darlene +Kathy +Rose +Bonnie +Frances +Tanya +Sonia +Ramona +Ana +Charlene +Charlotte +Jamie +Kristen +Roberta +Becky +Dana +Helen +Traci +Yvette +Judy +Kelli +Loretta +Priscilla +Samantha +Tiffany +Tonya +Vicki +Alicia +Anne +Beth +Judith +Julia +Sheri +Tami +Cathy +Esther +Jodi +Nicole +Shelley +Tammie +Carmen +Joanna +Kristi +Marie +Roxanne +Toni +Beverly +Danielle +Elaine +Heidi +Isabel +Janice +Josephine +Leticia +Lynette +Natalie +Rita +Shawn +Darla +Guadalupe +Rosemary +Sonya +Suzette +Terry +Vanessa +Kristina +Lynn +Pauline +Ronda +Betty +Kari +Lucy +Margarita +Rosa +Shirley +Amber +Beatrice +Caroline +Colleen +Irma +Kerry +Lorena +Lorraine +Marlene +Ruth +Vickie +Alma +Amanda +Belinda +Cecilia +Ginger +Melody +Sally +Sara +Teri +Alice +Audrey +Bernadette +Crystal +Dolores +Jody +Kerri +Kimberley +Lara +Lydia +Peggy +Trisha +Vivian +Christy +Dianna +Erin +Evelyn +Jo +Joanne +Raquel +Stacie +Tracey +Audra +Bernice +Dorothy +Eileen +Erica +Felicia +Jackie +Jessica +Kirsten +Marcella +Monique +Rene +Robyn +Rosita +Shana +Shawna +Tara +Candace +Claudia +Cristina +Deana +Edna +Francine +Geraldine +Joann +Joy +Joyce +Kristy +Lora +Lucinda +Misty +Patty +Shauna +Angelina +Antoinette +Bertha +Bobbi +Brandi +Constance +Evangeline +Genevieve +Gwendolyn +Jane +Jeanette +Kara +Katrina +Kelley +Kellie +Kris +Marilyn +Marla +Nora +Olga +Pearl +Penny +Shanna +Shari +Sonja +Angelica +Arlene +Bobbie +Bridget +Celeste +Cheri +Clarissa +Dora +Ellen +Eva +Georgia +Grace +Jenny +Karla +Krista +Leann +Lillian +Marina +Maureen +Nina +Ruby +Sabrina +Shelia +Stella +Tracie +Camille +Cassandra +Cherie +Christa +Christie +Clara +Delores +Dina +Elena +Elisabeth +Emily +Glenda +Jana +Jeanne +Joan +Jolene +Katie +Kendra +Laverne +Leah +Lynda +Margie +Marjorie +Michael +Olivia +Sandy +Trina +Vonda +Wanda +Alisa +Alison +Anissa +Billie +Candice +Cari +Cathleen +Delia +Della +Dena +Dianne +Emma +Gail +Jean +Jeannie +Keri +Kimberlee +Laurel +Lee +Marta +Nadine +Patti +Paulette +Rochelle +Sophia +Susanna +Susie +Tricia +Trudy +Vicky +Adrienne +Angelita +Angie +Blanca +Candy +Cara +Cecelia +Corrina +Deanne +Doreen +Doris +Gretchen +Jacquelyn +Jeannette +Josette +Lesley +Lois +Louise +Marcia +Marnie +Megan +Mona +Pam +Phyllis +Rachelle +Rosalie +Rosemarie +Serena +Sherrie +Sue +Tamra +Verna +Alexandra +Allison +Angel +Angelique +Arlinda +Carey +Carmelita +Cassie +Darcy +Deann +Debora +Desiree +Elsa +Erlinda +Ernestine +Geneva +Georgina +Hannah +Hillary +Ingrid +Jessie +Josie +Juana +June +Kay +Kristie +Lea +Leanne +Lorie +Lourdes +Maricela +Marlo +Marsha +Martina +Myrna +Nannette +Nikki +Noelle +Polly +Rae +Selina +Shannan +Sheryl +Velma +Wendi +Adelina +Adriana +Alberta +Antonia +Bernadine +Bianca +Brandy +Bridgette +Carri +Casandra +Celia +Celina +Colette +Corina +Courtney +Cristy +Danelle +Eleanor +Elisa +Elvira +Ericka +Erika +Eugenia +Evangelina +Gabrielle +Hilda +Janelle +Janie +Jenifer +Jeri +Jodie +Jolie +Karie +Ladonna +Lana +Leigh +Lena +Lenora +Lily +Liza +Lupe +Marcy +Margo +Maribel +Marisa +Maryann +Mercy +Mitzi +Molly +Nanette +Natasha +Petra +Rebekah +Roxanna +Socorro +Tabatha +Tamera +Tammi +Tania +Thelma +Tonia +Tuesday +Tyra +Lisa +Michelle +Jennifer +Kimberly +Mary +Laura +Melissa +Stephanie +Patricia +Julie +Tammy +Cynthia +Maria +Shannon +Amy +Christina +Christine +Susan +Rebecca +Lori +Sandra +Elizabeth +Monica +Angela +Tina +Deborah +Kelly +Karen +Heather +Dawn +Tracy +Denise +Teresa +Linda +Rachel +Brenda +Diana +Veronica +Barbara +Donna +Kathleen +Anna +Cheryl +Michele +Wendy +Debra +Andrea +Diane +Pamela +Catherine +Paula +Nancy +Rhonda +Carol +Sharon +Yvonne +Katherine +Robin +Victoria +Ann +Yolanda +Deanna +Gina +Margaret +Cindy +Melinda +Tiffany +Theresa +Holly +Valerie +Annette +April +Leslie +Carrie +Julia +Stacey +Carla +Jacqueline +Sarah +Stacy +Kathy +Nicole +Anita +Traci +Sylvia +Regina +Dana +Sonia +Jill +Sheila +Janet +Kristin +Virginia +Martha +Tanya +Norma +Suzanne +Debbie +Erin +Kathryn +Kim +Connie +Darlene +Tamara +Yvette +Becky +Colleen +Kristine +Renee +Rose +Shelly +Irene +Jamie +Laurie +Roberta +Alicia +Jody +Raquel +Tracey +Jodi +Juanita +Kristen +Kristina +Melanie +Shawna +Sherry +Alice +Amanda +Bonnie +Crystal +Gloria +Heidi +Natalie +Rita +Samantha +Sherri +Tricia +Carolyn +Charlotte +Claudia +Leticia +Loretta +Guadalupe +Jessica +Sheri +Danielle +Irma +Lorraine +Lydia +Marlene +Sara +Terri +Tonya +Betty +Dina +Eva +Frances +Kelli +Marie +Robyn +Shelley +Vicki +Belinda +Katrina +Kristi +Lucinda +Penny +Vickie +Ana +Anne +Cassandra +Cecilia +Charlene +Christy +Janice +Jeanette +Joann +Leah +Peggy +Trina +Vivian +Beverly +Caroline +Cathy +Elaine +Lora +Melody +Ruth +Carmen +Dolores +Josephine +Kellie +Monique +Alisa +Beth +Cheri +Esther +Helen +Judy +Lara +Priscilla +Ramona +Rosa +Shawn +Sheryl +Tami +Tara +Angelica +Audrey +Bernadette +Dena +Emily +Lynn +Marilyn +Rochelle +Shirley +Tammie +Darla +Dorothy +Jo +Joanna +Marla +Pauline +Rosemary +Sally +Terry +Wanda +Bridget +Kari +Kerry +Kimberley +Rene +Sonja +Teri +Toni +Vanessa +Aimee +Alma +Amber +Candy +Felicia +Genevieve +Ginger +Isabel +Jeanne +Joanne +Judith +Kristy +Lynda +Marcella +Margarita +Nora +Ronda +Sabrina +Sandy +Shauna +Sonya +Joy +Kristie +Misty +Roxanne +Shari +Bobbie +Brandi +Deanne +Erica +Grace +Joan +Joyce +Kara +Kelley +Lynette +Martina +Sherrie +Tracie +Vicky +Adrienne +Arlene +Bertha +Brandy +Cathleen +Cristina +Deana +Dianne +Edith +Elena +Elvira +Evelyn +Geraldine +Jeannette +Kendra +Lillian +Lucille +Marianne +Marsha +Molly +Mona +Olivia +Patsy +Ruby +Susie +Trisha +Allison +Anissa +Bernice +Carmelita +Christie +Ellen +Erika +Henrietta +Jackie +Jacque +Janette +Jeri +Katie +Keri +Kirsten +Krista +Maryann +Maureen +Shanna +Stacie +Tammi +Amelia +Angelina +Billie +Camille +Celeste +Corina +Eileen +Elisa +Ernestine +Evangelina +Georgina +Glenda +Gwendolyn +Jenny +Jessie +Juliet +Kimberlee +Lena +Lupe +Madeline +Marcy +Marisela +Mindy +Myrna +Nadine +Nikki +Nina +Phyllis +Rachael +Rena +Susana +Susanne +Tabatha +Tawnya +Wendi +Angie +Audra +Beatrice +Candace +Christi +Clarissa +Colette +Danette +Debora +Dianna +Dora +Doris +Gail +Gayle +Geneva +Graciela +Jana +Janelle +Jerri +Jodie +Josie +Julianna +Karla +Kerri +Ladonna +Laverne +Lee +Lesa +Lola +Lucy +Marci +Matilda +Maxine +Naomi +Noelle +Olga +Rachelle +Saundra +Staci +Tamra +Alison +Angelique +Angelita +Celia +Chandra +Cherie +Clara +Daphne +Dionne +Elsa +Emma +Ethel +Francisca +Gabrielle +Jolene +Karin +Katharine +Leanne +Leigh +Lenora +Liza +Lorena +Louise +Luz +Lynne +Margie +Maricela +Marisa +Meredith +Nichole +Pam +Rebekah +Renae +Roxanna +Serena +Shana +Sophia +Stella +Valarie +Adela +Alexandra +Angel +Antonia +Bernadine +Bethany +Candice +Cecelia +Christa +Corinne +Cornelia +Courtney +Darcy +Dayna +Deena +Delia +Delores +Delphine +Denice +Desiree +Doreen +Ella +Elsie +Freda +Geri +Hilda +Ida +Iris +Jacquelyn +Jaime +Jami +Jane +Jean +Jeannie +Jenifer +Jonnie +Justine +Karyn +Kay +Kori +Lana +Laurel +Lauren +Lesley +Lois +Lorie +Lorrie +Lynnette +Mandy +Manuela +Marcia +Marian +Marion +Marlena +Marnie +Marta +Meghan +Mercy +Mildred +Miranda +Paige +Patti +Paulette +Petra +Rosalinda +Rosita +Shelia +Susanna +Tabitha +Tania +Tonia +Tonja +Twila +Vera +Vikki +Vonda +Winifred +Jennifer +Lisa +Michelle +Kimberly +Melissa +Amy +Julie +Maria +Shannon +Mary +Stephanie +Angela +Patricia +Elizabeth +Laura +Christina +Christine +Tracy +Cynthia +Heather +Rebecca +Tammy +Susan +Sandra +Tina +Monica +Karen +Denise +Lori +Deborah +Anna +Veronica +Dawn +Kelly +Pamela +Andrea +Theresa +Teresa +Donna +Brenda +Wendy +Barbara +Sharon +Diana +Michele +Linda +Paula +Stacy +Rachel +April +Catherine +Tanya +Debra +Holly +Nancy +Robin +Tamara +Cheryl +Kathleen +Valerie +Diane +Nicole +Stacey +Rhonda +Victoria +Cindy +Renee +Tiffany +Jacqueline +Jill +Carol +Jessica +Margaret +Gina +Carrie +Dana +Carolyn +Alicia +Kristine +Kristen +Regina +Tara +Traci +Crystal +Gloria +Kristina +Sylvia +Heidi +Katherine +Yvonne +Deanna +Julia +Leslie +Janet +Kristin +Melanie +Sarah +Sherri +Virginia +Charlene +Juanita +Kathy +Tracey +Yvette +Christy +Erin +Sonia +Ann +Kathryn +Kristi +Laurie +Sherry +Jodi +Kim +Suzanne +Amanda +Connie +Irene +Roberta +Annette +Tonya +Jamie +Natalie +Tricia +Martha +Norma +Anita +Claudia +Joann +Jody +Priscilla +Rose +Shelly +Terri +Darlene +Rosa +Rosemary +Sabrina +Bonnie +Dina +Kari +Raquel +Sheri +Carmen +Frances +Rita +Sally +Sheila +Toni +Anne +Judy +Karla +Kelli +Leticia +Lorraine +Yolanda +Becky +Dena +Melinda +Shelley +Belinda +Debbie +Samantha +Carla +Guadalupe +Katrina +Robyn +Sara +Shawna +Vanessa +Alice +Cathy +Corina +Danielle +Erica +Francine +Shauna +Vicki +Beverly +Cassandra +Emily +Erika +Grace +Leah +Lydia +Beth +Cecilia +Judith +Marie +Misty +Tami +Trina +Ana +Angelina +Bobbie +Brandi +Colleen +Janice +Jeannie +Josephine +Kellie +Bernadette +Betty +Joanna +Nora +Peggy +Rene +Sonja +Alma +Angelica +Angie +Audra +Elisa +Eva +Ginger +Jean +Jeanette +Jo +Kerry +Lara +Marlene +Pauline +Penny +Rachael +Ruth +Sandy +Sonya +Amber +Bridget +Dolores +Dorothy +Geraldine +Gwendolyn +Kara +Kerri +Lucinda +Lynn +Marla +Ramona +Shanna +Tammie +Terry +Brandy +Caroline +Esther +Helen +Irma +Jackie +Jenny +Joy +Krista +Kristie +Lauren +Loretta +Roxanne +Shawn +Stacie +Teri +Trisha +Wendi +Angelique +Charlotte +Cheri +Darla +Eileen +Joanne +Kristy +Lupita +Melody +Molly +Olivia +Sheryl +Staci +Stefanie +Stella +Vivian +Allison +Bernice +Courtney +Deana +Delia +Dianna +Edith +Elaine +Kimberley +Lorena +Lorrie +Lupe +Marcella +Marilyn +Rochelle +Shirley +Tonia +Vickie +Wanda +Aimee +Alisa +Angel +Antoinette +Arlinda +Cecelia +Christie +Clara +Dora +Geneva +Isabel +Janie +Jeannette +Kimberlee +Lucy +Lynda +Marcia +Maureen +Mindy +Monique +Nadine +Rachelle +Ruby +Tamera +Tracie +Alberta +Amelia +Beatrice +Billie +Brooke +Cari +Georgina +Joan +Joyce +Margarita +Marsha +Shana +Adriana +Angelita +Audrey +Bertha +Bobbi +Charity +Cherie +Christa +Deena +Della +Edna +Emma +Evelyn +Gail +Genevieve +Gretchen +Jane +Jennie +Kelley +Keri +Kirsten +Lea +Lillian +Marian +Ronda +Rosita +Shari +Sherrie +Verna +Bethany +Candy +Corrina +Danette +Desiree +Dianne +Elsa +Elvira +Ernestine +Felicia +Francisca +Glenda +Janette +Jolene +Joni +Karin +Katharine +Kendra +Leann +Leigh +Leona +Liza +Lora +Marci +Marisa +Marissa +Melisa +Nina +Patty +Phyllis +Tabatha +Tamra +Tisha +Vera +Vicky +Alexandra +Arlene +Blanca +Candice +Carmelita +Carolina +Celeste +Celia +Chris +Christi +Clarissa +Cristina +Darci +Darcy +Delores +Eleanor +Ellen +Flora +Georgia +Hilda +Jenifer +Jeri +Juliana +Kerrie +Leanna +Leanne +Lorie +Naomi +Nichole +Patsy +Paulette +Rena +Roseann +Roxann +Sofia +Sophia +Susie +Suzette +Tasha +Tyra +Violet +Adela +Alison +Annie +Bridgett +Candace +Cara +Constance +Daphne +Dionne +Doreen +Doris +Estella +Hollie +Jeanne +Jessie +Juliet +June +Katie +Kris +Laurel +Lee +Lena +Lillie +Lourdes +Luz +Lynette +Margo +Mari +Marietta +Marina +Maritza +Maxine +Meredith +Patti +Robert +Rosanna +Serena +Shannan +Sharla +Silvia +Sondra +Susanne +Valarie +Viola +Alta +Anissa +Annalisa +Betsy +Carey +Cassie +Catrina +Chandra +Christian +Claudette +Colette +Concepcion +Consuelo +Corinna +Davina +Deann +Debora +Denna +Donald +Elisabeth +Elise +Evangeline +Evangelita +Faith +Gena +Gladys +Henrietta +Hillary +Hope +Jana +Jodie +Johanna +Josette +Justine +Kyle +Laverne +Lilia +Lucia +Lynne +Madeline +Marcie +Maribel +Marnie +Megan +Miriam +Mona +Morgan +Nannette +Natasha +Nikki +Olga +Orlinda +Rosalinda +Rosie +Shelby +Shelli +Susana +Terrie +Thelma +Tonja +Valencia +Velda +Jennifer +Lisa +Michelle +Kimberly +Christina +Melissa +Amy +Julie +Stephanie +Shannon +Maria +Christine +Angela +Laura +Mary +Cynthia +Heather +Patricia +Elizabeth +Monica +Rebecca +Tammy +Tina +Dawn +Tracy +Andrea +Lori +Sandra +Denise +Teresa +Karen +Susan +Veronica +Wendy +Stacy +Rachel +Brenda +Deborah +Kelly +Linda +April +Tiffany +Pamela +Anna +Nicole +Theresa +Diana +Sharon +Michele +Debra +Barbara +Cheryl +Jessica +Kathleen +Stacey +Cindy +Valerie +Yvonne +Carrie +Carol +Katherine +Kristina +Rhonda +Deanna +Holly +Jacqueline +Victoria +Leslie +Nancy +Tanya +Donna +Jill +Kristin +Suzanne +Tamara +Crystal +Robin +Sarah +Diane +Melanie +Melinda +Renee +Sylvia +Yolanda +Alicia +Heidi +Shawna +Sonia +Vanessa +Ann +Catherine +Sherry +Kristen +Kristine +Margaret +Tara +Christy +Annette +Gina +Gloria +Regina +Tricia +Virginia +Erin +Julia +Traci +Roberta +Angelica +Anita +Danielle +Jamie +Kristi +Shelly +Yvette +Carla +Jodi +Martha +Natalie +Paula +Tonya +Dana +Rosa +Trina +Frances +Sheila +Amanda +Connie +Irene +Laurie +Leticia +Sherri +Allison +Kathryn +Rose +Sonya +Terri +Carmen +Darlene +Ginger +Kathy +Sheri +Tracey +Bonnie +Lorraine +Raquel +Ana +Marie +Erica +Roxanne +Cassandra +Cathy +Emily +Felicia +Janet +Kim +Ramona +Rita +Claudia +Kelli +Marlene +Samantha +Sara +Shelley +Amber +Becky +Carolyn +Cecilia +Irma +Krista +Robyn +Tami +Toni +Bernadette +Charlotte +Juanita +Debbie +Dianna +Jennie +Misty +Wanda +Brandy +Dena +Kari +Kimberley +Kristie +Loretta +Marcella +Norma +Anne +Courtney +Guadalupe +Janice +Jeanette +Jenny +Joanne +Katrina +Lucinda +Lynette +Pauline +Priscilla +Sabrina +Alice +Alison +Alma +Belinda +Brandi +Charlene +Dorothy +Erika +Isabel +Josephine +Judith +Lara +Rachael +Tracie +Audrey +Candice +Cheri +Dolores +Elaine +Hope +Jenifer +Joann +Jody +Joyce +Kendra +Lydia +Olivia +Rosemary +Ruth +Shawn +Sherrie +Trisha +Aimee +Angelina +Beatrice +Bobbi +Doreen +Esther +Evelyn +Francine +Jo +Jodie +Jolene +Leah +Mindy +Rene +Sheryl +Sonja +Stacie +Bobbie +Candy +Colleen +Dina +Elisa +Eva +Genevieve +Jackie +Judy +Keri +Lynn +Sally +Shauna +Vivian +Arlene +Beverly +Dora +Helen +Joanna +Joy +Kara +Karla +Kerry +Lorena +Margarita +Margo +Meredith +Molly +Penny +Rachelle +Ronda +Tammie +Vicki +Angie +Bernice +Billie +Delphine +Francisca +Grace +Jean +Kerri +Kristy +Lupe +Marcie +Maryann +Monique +Nikki +Rebekah +Shanna +Stefanie +Terry +Tisha +Tonia +Vickie +Angelita +Betty +Bridget +Candace +Darcy +Darla +Deana +Jeannie +Jessie +Joan +Lillian +Liza +Melisa +Melody +Naomi +Shirley +Susana +Wendi +Alexandra +Alisa +Audra +Bertha +Caroline +Cecelia +Christa +Corina +Delia +Jana +Josie +Kelley +Leanne +Marilyn +Marsha +Miriam +Nichole +Peggy +Renae +Ruby +Sandy +Teri +Adrianne +Amie +Angel +Beth +Camille +Christie +Clarissa +Corrina +Cristina +Delilah +Della +Edith +Eleanor +Elena +Gwendolyn +Janette +Kirsten +Lee +Lorinda +Lucia +Luz +Marci +Maribel +Marisa +Megan +Natasha +Nina +Rochelle +Shana +Shari +Staci +Suzette +Vicky +Angelique +Arlinda +Denice +Estella +Geraldine +Gretchen +Jane +Jeanne +Juliet +Krystal +Laverne +Lucy +Marla +Marlo +Olga +Sophia +Susie +Tamra +Tanisha +Trudy +Adrienne +Antoinette +Blanca +Celeste +Charity +Cherie +Clara +Crista +Davina +Deedee +Elise +Ellen +Elvira +Gabriela +Georgina +Henrietta +Ida +Jeannette +Jeri +Kellie +Lana +Laurel +Leann +Leigh +Lena +Lora +Lourdes +Lupita +Lynda +Marnie +Martina +Nora +Rosanna +Roseann +Rosie +Rosita +Susanna +Tasha +Tiffani +Adina +Alissa +Alvina +Angelia +Anjanette +Antonia +Aurora +Brooke +Carmelita +Cary +Cassie +Catrina +Claudine +Colette +Danette +Deann +Desiree +Eileen +Elisabeth +Emma +Ericka +Ernestine +Esmeralda +Esperanza +Glenda +Iris +Jacquelyn +John +Juana +June +Karin +Karyn +Kori +Lela +Lorie +Lorrie +Malissa +Marcia +Marcy +Marianne +Marina +Matilda +Mercy +Missy +Mona +Myrna +Nanette +Nellie +Paulette +Paulina +Petra +Shani +Shannan +Shelby +Shelia +Stella +Suzanna +Alana +Amelia +Betsy +Brittany +Carey +Cari +Celia +Chandra +Chelsea +Chris +Cinnamon +Concepcion +Constance +Deanne +Deena +Delores +Edna +Ernestina +Evangeline +Faith +Gayle +Gena +Geneva +Gracie +Gwen +Harriet +Helena +Hilary +Hilda +Holli +Inez +Janine +Jocelyn +Joleen +Joni +Juli +Kandi +Karrie +Kathrine +Katie +Kimberlee +Kris +Lois +Louise +Magdalena +Maritza +Marta +Mia +Mildred +Misti +Myra +Nelda +Patti +Polly +Randi +Rena +Renea +Richelle +Rina +Rosemarie +Roxann +Shonda +Tabitha +Tammi +Thelma +Treva +Vera +Jennifer +Michelle +Lisa +Kimberly +Stephanie +Melissa +Amy +Christina +Heather +Shannon +Angela +Rebecca +Julie +Maria +Cynthia +Laura +Christine +Patricia +Dawn +Tammy +Elizabeth +Mary +Andrea +Monica +Karen +Nicole +Susan +Tina +Denise +Jessica +Veronica +Lori +Sandra +Rachel +Wendy +Teresa +Anna +Kelly +Tracy +April +Cheryl +Michele +Brenda +Carrie +Tanya +Tara +Tiffany +Kristin +Holly +Kathleen +Pamela +Stacy +Valerie +Debra +Sharon +Deborah +Tamara +Victoria +Melanie +Diana +Robin +Stacey +Brandy +Danielle +Sarah +Barbara +Nancy +Carol +Heidi +Linda +Renee +Alicia +Theresa +Shawna +Tonya +Crystal +Julia +Katherine +Kristen +Misty +Amanda +Catherine +Leslie +Paula +Cindy +Melinda +Brandi +Sonia +Christy +Claudia +Deanna +Kristina +Margaret +Rhonda +Sheila +Sherry +Rosa +Donna +Kathy +Martha +Jodi +Sherri +Yvette +Ana +Dana +Jill +Leticia +Samantha +Suzanne +Annette +Jamie +Kathryn +Laurie +Sara +Vanessa +Yolanda +Erica +Guadalupe +Regina +Gloria +Yvonne +Katrina +Priscilla +Traci +Anita +Carmen +Gina +Janet +Sonya +Amber +Ann +Frances +Allison +Angel +Angelica +Jenny +Kristi +Natalie +Rose +Sylvia +Tricia +Virginia +Becky +Debbie +Charlene +Diane +Erin +Genevieve +Juanita +Marie +Raquel +Shelley +Shelly +Sheri +Trina +Emily +Ramona +Aimee +Anne +Carolyn +Connie +Kelli +Kristine +Leah +Lorraine +Penny +Tami +Cassandra +Charlotte +Jacqueline +Jeanette +Loretta +Marlene +Monique +Norma +Roberta +Tracie +Alma +Beverly +Cecilia +Darlene +Erika +Felicia +Jody +Megan +Shauna +Alice +Carla +Jenifer +Joy +Kari +Rita +Tracey +Cathy +Colleen +Dina +Dorothy +Karla +Kendra +Kimberley +Kristy +Lara +Ruth +Alison +Bonnie +Bridget +Christie +Elaine +Helen +Isabel +Josephine +Lillian +Lydia +Lynette +Rachelle +Sally +Vicki +Cheri +Eva +Irene +Joanna +Lynn +Marcy +Robyn +Terri +Alisa +Angie +Billie +Cara +Irma +Jeannie +Jo +Judy +Kellie +Krista +Shirley +Sonja +Angelina +Belinda +Beth +Dora +Esther +Evelyn +Janice +Joanne +Melody +Nikki +Ruby +Bernadette +Betty +Caroline +Jeannette +Olivia +Roxanne +Sabrina +Tammi +Trisha +Candice +Candy +Corina +Dolores +Jackie +Jeanne +Jodie +Keri +Laurel +Lorena +Lucinda +Marla +Rochelle +Rosemary +Shawn +Tasha +Teri +Tisha +Toni +Araceli +Audra +Blanca +Candace +Cherie +Cristina +Deana +Elena +Hope +Jana +Jean +Kelley +Kerry +Kim +Michell +Nora +Pauline +Rosanna +Shana +Staci +Tammie +Vivian +Wanda +Angelita +Bethany +Bobbi +Bobbie +Celeste +Christi +Clara +Clarissa +Dena +Elisa +Elsa +Gabriela +Ginger +Grace +Jolene +Joyce +Kristie +Lauren +Marcella +Marcia +Marilyn +Nichole +Rachael +Ronda +Shelby +Sheryl +Stefanie +Terra +Tonia +Amelia +Autumn +Bernice +Betsy +Camille +Cecelia +Celia +Danelle +Delores +Francisca +Gail +Glenda +Janette +Jennie +Joann +Kara +Kirsten +Lucia +Marci +Marcie +Margarita +Meredith +Mona +Myra +Naomi +Rene +Sandy +Shanna +Alberta +Angelique +Anissa +Arlene +Carmelita +Darla +Delia +Desiree +Dianne +Doreen +Ernestina +Evangeline +Francine +Geneva +Graciela +Gretchen +Isela +Jami +Judith +June +Katie +Kerri +Lora +Marianne +Mindy +Nadine +Natasha +Olga +Rosalinda +Sondra +Susana +Susie +Tia +Vickie +Vicky +Wendi +Yesenia +Adrienne +Antoinette +Beatrice +Brandee +Brooke +Casey +Cassie +Cathleen +Charity +Christa +Constance +Consuelo +Courtney +Deena +Denice +Dianna +Ericka +Faith +Georgina +Gwendolyn +Jane +Josie +Juana +Karrie +Katina +Lee +Lupe +Luz +Marcela +Maricela +Marina +Marisol +Marlo +Mercedes +Renae +Serena +Shellie +Sophia +Terry +Ursula +Adelina +Alyssa +Athena +Audrey +Caryn +Celina +Chastity +Corinna +Cornelia +Danette +Edna +Elisabeth +Ellen +Estella +Geraldine +Hilary +Jan +Janel +Jason +Jayme +Jenni +Johanna +Juli +Juliet +Kira +Ladonna +Lena +Lesley +Lucille +Lynda +Magdalena +Marisa +Marissa +Marjorie +Marnie +Mia +Michael +Misti +Mollie +Pearl +Peggy +Roxanna +Shari +Silvia +Stella +Susanna +Tamra +Thelma +Tiffani +Velma +Vera +Adriana +Alisha +Ami +Amie +Antonia +Bertha +Brandie +Chandra +Charmaine +Cher +Christin +Colette +Delphina +Edward +Emma +Etta +Gayle +Hollie +Iris +Jacque +Joan +Jocelyn +Kami +Kristan +Lana +Lanette +Larissa +Lashonda +Latonya +Leanna +Leanne +Leona +Loraine +Lorie +Lourdes +Luisa +Lupita +Lynnette +Malinda +Marietta +Maritza +Matilda +Maureen +Maxine +Melisa +Mellisa +Melva +Miranda +Paige +Randi +Rebekah +Roni +Rosalina +Rosanne +Rosemarie +Rosie +Selena +Selina +Sharla +Stacie +Susanne +Tera +Valarie +Violet +Whitney +Jennifer +Michelle +Kimberly +Lisa +Amy +Heather +Stephanie +Melissa +Maria +Christina +Rebecca +Angela +Elizabeth +Mary +Veronica +Shannon +Julie +Patricia +Cynthia +Laura +Nicole +Tammy +Monica +Christine +Denise +Dawn +Tina +Andrea +Sandra +Susan +Tanya +Jessica +Tiffany +Rachel +Teresa +Anna +Karen +Lori +Tracy +April +Kelly +Brenda +Melanie +Holly +Sarah +Theresa +Linda +Wendy +Brandy +Diana +Victoria +Tonya +Katherine +Barbara +Cheryl +Deborah +Pamela +Gloria +Stacy +Carrie +Danielle +Catherine +Leslie +Misty +Kristin +Vanessa +Crystal +Sonia +Donna +Erin +Tara +Yvonne +Renee +Brandi +Melinda +Michele +Kathleen +Nancy +Valerie +Amanda +Debra +Gina +Suzanne +Tamara +Claudia +Kristina +Stacey +Alicia +Robin +Kristen +Shawna +Sylvia +Jill +Regina +Sara +Deanna +Heidi +Kristi +Cindy +Dana +Erica +Martha +Sharon +Sherry +Angelica +Jamie +Juanita +Priscilla +Yvette +Christy +Frances +Laurie +Natalie +Connie +Jodi +Margaret +Julia +Leticia +Paula +Rhonda +Cassandra +Sheila +Shelly +Anita +Annette +Diane +Traci +Amber +Erika +Kathy +Irene +Janet +Allison +Shelley +Carla +Tricia +Yolanda +Anne +Guadalupe +Raquel +Virginia +Carolyn +Jacqueline +Charlotte +Kathryn +Terri +Becky +Bonnie +Bridget +Colleen +Jenny +Kari +Rose +Samantha +Ann +Carol +Emily +Esther +Karla +Rosa +Stacie +Darlene +Katrina +Kristine +Lorraine +Lucinda +Roberta +Shauna +Shawn +Sheri +Trina +Aimee +Belinda +Carmen +Joy +Kim +Krista +Lynette +Marie +Sabrina +Alma +Ana +Bernadette +Jeanette +Kerry +Norma +Rita +Sherri +Tracie +Cathy +Charlene +Olivia +Rachelle +Felicia +Georgina +Joann +Kristy +Molly +Robyn +Shanna +Sonya +Alison +Debbie +Ginger +Joanna +Keri +Lydia +Marcella +Margarita +Monique +Tammie +Caroline +Cecilia +Celeste +Christi +Evelyn +Judith +Kelley +Kelli +Kristie +Marlene +Megan +Naomi +Pauline +Ramona +Ruth +Trisha +Vicki +Arlene +Bertha +Bobbie +Cheri +Corina +Gwendolyn +Isabel +Janelle +Janice +Joanne +Josephine +Leah +Marcia +Melody +Meredith +Penny +Sheryl +Tami +Teri +Tracey +Angel +Angelina +Bethany +Betty +Gail +Jana +Jeannie +Jody +Joyce +Judy +Kara +Kendra +Lorena +Loretta +Staci +Toni +Alice +Alisa +Audra +Audrey +Beverly +Brandie +Christie +Dolores +Dora +Edith +Elaine +Eva +Faith +Genevieve +Janette +Jennie +Kerri +Kimberley +Lea +Lena +Maribel +Marla +Mona +Nichole +Roxanne +Sally +Unknown +Amie +Angelita +Beth +Candace +Chandra +Clarissa +Cristina +Eileen +Francisca +Gretchen +Helen +Jenna +Jodie +Marilyn +Marisa +Nikki +Nora +Peggy +Rachael +Rochelle +Rosemary +Stefanie +Terra +Vivian +Alexandra +Angie +Autumn +Beatrice +Billie +Brooke +Casey +Desiree +Dianna +Elsa +Glenda +Irma +Jackie +Kirsten +Leanne +Liza +Mindy +Rebekah +Rene +Sandy +Susana +Tabitha +Tania +Tonia +Alisha +Amelia +Angelique +Bernice +Blanca +Brandee +Candice +Candy +Charity +Christa +Consuelo +Deana +Dina +Dorothy +Francine +Jami +Lara +Lee +Leigh +Maricela +Melisa +Miriam +Shelby +Shirley +Susie +Tammi +Vickie +Vicky +Adrienne +Anastasia +Annie +Antonia +Ashley +Camille +Cara +Carmelita +Chastity +Delia +Doreen +Ellen +Jeanne +Jenifer +Johanna +Josie +Latasha +Leanna +Louise +Lynn +Marjorie +Natasha +Nina +Paulette +Socorro +Sonja +Suzanna +Terry +Valarie +Abigail +Alissa +Allyson +Antoinette +Bobbi +Buffy +Celina +Chelsea +Corinne +Courtney +Cristy +Darla +Davina +Deanne +Elisa +Evangeline +Georgia +Ida +Janie +Janna +Jean +Jeannette +Joey +Karin +Katina +Kimberlee +Lana +Latisha +Laurel +Lenora +Lindsay +Lynda +Marci +Marcie +Marsha +Maureen +Michael +Monika +Pearl +Phyllis +Renae +Rosalie +Ruby +Serena +Shana +Shari +Summer +Suzette +Tawnya +Adriana +Alejandra +Alta +Brittany +Cari +Carlene +Celia +Clara +Corinna +Danelle +Deena +Dena +Ernestine +Estella +Gabrielle +Geraldine +Grace +Griselda +Janell +Jeanine +Jessie +Joan +Jocelyn +Karri +Kellie +Kenya +Lauren +Lesley +Lillian +Lorie +Lucretia +Lucy +Lupe +Lupita +Malinda +Marcela +Marcy +Marian +Martina +Miranda +Myra +Nadine +Patty +Roxanna +Sasha +Sherrie +Sofia +Stella +Tanisha +Tisha +Trudy +Wanda +Wendi +Alberta +Alethea +Ami +Aurora +Bernadine +Betsy +Candi +Carey +Cassie +Cecelia +Christal +Christian +Coleen +Constance +Cori +Danette +Darcie +David +Deedee +Deidra +Elena +Elisabeth +Emma +Ericka +Graciela +Hilary +Holli +Jane +Janel +Jo +Jolene +Juana +Juliana +Julianne +Juliet +Karrie +Katie +Kay +Kerrie +Larissa +Laverne +Lillie +Lola +Lorinda +Lorna +Luisa +Magdalena +Marianne +Marissa +Merlinda +Mia +Misti +Niki +Paige +Patsy +Petra +Polly +Rosie +Rosita +Shaunna +Shawnna +Sondra +Sophia +Tamra +Tana +Tasha +Tera +Tiffani +Tonja +Verna +Jennifer +Michelle +Heather +Amy +Lisa +Stephanie +Melissa +Angela +Kimberly +Rebecca +Christina +Maria +Shannon +Julie +Monica +Elizabeth +Veronica +Patricia +Christine +April +Mary +Jessica +Rachel +Dawn +Andrea +Sandra +Kelly +Laura +Sarah +Tammy +Tina +Tanya +Amanda +Cynthia +Nicole +Tiffany +Carrie +Lori +Susan +Teresa +Denise +Erin +Danielle +Karen +Tracy +Anna +Brenda +Melanie +Wendy +Barbara +Diana +Theresa +Crystal +Deborah +Stacy +Misty +Catherine +Holly +Heidi +Leslie +Victoria +Kristin +Renee +Stacey +Brandy +Claudia +Jill +Kristen +Amber +Linda +Sara +Sharon +Sonia +Erica +Shawna +Tara +Alicia +Tamara +Yvonne +Christy +Emily +Donna +Valerie +Vanessa +Katherine +Kathleen +Pamela +Melinda +Michele +Sylvia +Brandi +Deanna +Diane +Robin +Gina +Gloria +Margaret +Regina +Annette +Cheryl +Cindy +Debra +Carol +Jamie +Priscilla +Virginia +Jacqueline +Jolene +Kristina +Leticia +Tonya +Julia +Kathryn +Nancy +Natalie +Paula +Sherry +Ana +Jody +Yolanda +Dana +Martha +Rhonda +Courtney +Rosa +Shelly +Yvette +Anita +Raquel +Ann +Becky +Frances +Joy +Laurie +Samantha +Angelica +Carolyn +Erika +Guadalupe +Juanita +Kristi +Roberta +Tricia +Cassandra +Kathy +Rachael +Sheila +Bonnie +Connie +Joanna +Jodi +Katrina +Monique +Jeanette +Kari +Lydia +Robyn +Shelley +Trina +Aimee +Bernadette +Jenny +Kristine +Lorraine +Olivia +Sally +Sonya +Toni +Carmen +Esther +Krista +Leah +Marcella +Ruth +Anne +Bridget +Carla +Elisa +Irene +Joann +Kristy +Megan +Norma +Rochelle +Sheri +Suzanne +Trisha +Allison +Cecilia +Colleen +Corina +Kara +Keri +Margarita +Angelina +Angie +Caroline +Charlotte +Lorena +Marie +Candice +Christie +Felicia +Janice +Joyce +Karla +Rose +Sherri +Sonja +Traci +Adrienne +Alice +Alma +Charity +Jodie +Katie +Sabrina +Stacie +Stefanie +Tami +Terri +Alison +Audra +Beth +Brooke +Jackie +Janet +Kerri +Kim +Marisa +Rosemary +Shanna +Shauna +Susana +Tisha +Adriana +Amelia +Charlene +Debbie +Ginger +Josephine +Kelli +Kendra +Kerry +Melody +Miranda +Rita +Shana +Shawn +Staci +Tracey +Bethany +Christa +Kimberley +Lillian +Mindy +Penny +Rebekah +Roxanne +Sandy +Vivian +Alexis +Angel +Arlene +Audrey +Cristina +Dolores +Eva +Kristie +Angelita +Billie +Candace +Cathy +Clarissa +Darlene +Georgina +Helen +Isabel +Kelley +Lynn +Marcia +Maribel +Naomi +Nichole +Shelby +Tracie +Beatrice +Bernice +Betty +Dena +Elaine +Grace +Jana +Janelle +Jenifer +Jessie +Joleen +Judith +Magdalena +Marissa +Ramona +Suzette +Tammie +Tawnya +Tonia +Vicki +Yesenia +Alisa +Alisha +Ashley +Autumn +Beverly +Blanca +Daphne +Desiree +Dina +Elena +Hope +Janine +Jeannie +Jo +Joanne +Lara +Lourdes +Luz +Marcy +Marina +Marlene +Maryann +Molly +Mona +Nikki +Shirley +Teri +Antonia +Belinda +Bertha +Brandie +Celeste +Chastity +Cherie +Cindi +Dora +Elvira +Genevieve +Irma +Kami +Kerrie +Kirsten +Lauren +Lindsey +Lucinda +Lynette +Marilyn +Michael +Rachelle +Ruby +Sheryl +Sophia +Tabitha +Tanisha +Verna +Vickie +Alexandra +Aurelia +Bobbie +Camille +Candy +Carin +Casey +Celia +Christi +Deana +Eileen +Elsa +Ernestine +Evelyn +Francisca +Glenda +Janie +Jean +Judy +Kellie +Lana +Latasha +Lea +Lupita +Maricela +Marla +Meredith +Natasha +Rosalinda +Serena +Sunshine +Tania +Tasha +Terry +Carey +Cari +Carolina +Catrina +Cecelia +Consuelo +Corinna +Corrina +Danette +Dayna +Doreen +Dorothy +Edna +Ericka +Francine +Gail +Gretchen +Jacquelyn +Jeanne +Jeannette +Jeri +Karie +Keisha +Layla +Lee +Leilani +Loretta +Lupe +Maggie +Malinda +Mandy +Marci +Marsha +Maureen +Meghan +Olga +Peggy +Rene +Ronda +Rosemarie +Silvia +Stella +Suzanna +Tammi +Tera +Trudy +Wendi +Abigail +Alexandria +Alina +Alyssa +Angelia +Anitra +Antoinette +Athena +Bettina +Cara +Chanda +Chelsea +Cheri +Christian +Darla +Davina +Deanne +Delia +Estella +Faith +Gabriela +Geneva +Georgia +Griselda +Jami +Jane +Jose +Josefina +June +Karin +Krystal +Ladonna +Larissa +Latonya +Leanna +Leigh +Lesley +Lindsay +Louise +Lynda +Lynnette +Marcie +Margie +Marianne +Mischa +Pauline +Randi +Richelle +Rosanna +Rosario +Ruthie +Shari +Shellie +Tamera +Terra +Trinity +Valarie +Wanda +Aileen +Alejandra +Allyson +Alvina +Angelique +Araceli +Bobbi +Buffy +Carina +Carly +Celina +Chandra +Clara +Concepcion +Cori +Cornelia +Danna +Dianna +Dianne +Dionne +Dixie +Eliza +Ellen +Elvia +Emma +Esperanza +Evangeline +Fawn +Gena +Gwendolyn +Helena +Hollie +Ingrid +Janell +Janette +Jenna +Jennie +Joan +Josie +Juliet +Justina +Karrie +Leanne +Lena +Letitia +Lora +Lucille +Lucy +Maricella +Marlena +Marta +Martina +Matilda +Myrna +Nanette +Nellie +Nina +Nora +Patsy +Phyllis +Rosie +Roxann +Ryan +Selena +Serina +Shantel +Sharla +Shawnna +Shirlene +Spring +Stormy +Sue +Susie +Tiffanie +Jennifer +Michelle +Amy +Melissa +Heather +Lisa +Stephanie +Angela +Christina +Rebecca +Kimberly +Andrea +Jessica +Veronica +Maria +Monica +Shannon +Elizabeth +Nicole +Amanda +Laura +Julie +Kelly +Rachel +Mary +Christine +Tanya +Cynthia +Patricia +Sarah +April +Dawn +Tiffany +Karen +Sandra +Tammy +Wendy +Danielle +Carrie +Erin +Tina +Amber +Tracy +Crystal +Brenda +Teresa +Stacy +Tara +Anna +Diana +Misty +Susan +Denise +Brandy +Lori +Sara +Victoria +Melanie +Stacey +Valerie +Holly +Gina +Jamie +Linda +Katherine +Sharon +Robin +Kristen +Kristin +Shawna +Tamara +Heidi +Regina +Alicia +Erica +Vanessa +Michele +Sonia +Theresa +Deborah +Annette +Nancy +Samantha +Barbara +Cindy +Erika +Leslie +Yvonne +Renee +Jacqueline +Gloria +Margaret +Rhonda +Angelica +Emily +Cheryl +Brandi +Catherine +Christy +Deanna +Kari +Megan +Pamela +Sylvia +Allison +Claudia +Colleen +Kristina +Melinda +Yolanda +Aimee +Jodi +Julia +Kathleen +Natalie +Donna +Anita +Shelly +Tonya +Frances +Leah +Leticia +Kristi +Marie +Ana +Debra +Jolene +Kathryn +Carla +Janet +Kristie +Martha +Carolyn +Courtney +Diane +Jenny +Raquel +Roberta +Sherry +Felicia +Guadalupe +Mandy +Priscilla +Traci +Dana +Jill +Paula +Alison +Carmen +Cassandra +Connie +Krista +Tricia +Angelina +Charity +Christie +Kara +Sheila +Suzanne +Virginia +Ann +Bonnie +Juanita +Olivia +Carol +Jody +Kendra +Monique +Rachelle +Summer +Anne +Audrey +Becky +Isabel +Karla +Kelli +Rita +Sonya +Autumn +Bethany +Joanna +Keri +Kristine +Lorena +Marcella +Melody +Molly +Norma +Robyn +Rosa +Rosemary +Shauna +Sheri +Toni +Tracey +Beatrice +Candice +Charlene +Charlotte +Laurie +Marcia +Margarita +Ramona +Roxanne +Adrienne +Alma +Bobbie +Jaime +Kathy +Katrina +Kellie +Lorraine +Lucinda +Rebekah +Shelley +Sherri +Stacie +Bernadette +Candace +Darlene +Elisa +Irene +Janice +Jeanette +Joann +Kristy +Lynn +Naomi +Trisha +Yvette +Adriana +Angie +Cecilia +Dena +Eva +Jenifer +Josephine +Joy +Kerry +Nichole +Ruth +Sabrina +Terri +Alisa +Audra +Belinda +Celeste +Elaine +Gabriela +Katie +Rachael +Rochelle +Rose +Stella +Brandie +Caroline +Cristina +Esther +Georgina +Gwendolyn +Joyce +Lacey +Lydia +Lynette +Shana +Shanna +Staci +Tabitha +Tami +Yesenia +Betty +Cara +Cecelia +Clarissa +Corina +Jennie +Judith +Mandi +Marcela +Marla +Mindy +Miranda +Ronda +Sandy +Stefanie +Trina +Beth +Bianca +Carolina +Casey +Dorothy +Edith +Elena +Ernestine +Ginger +Grace +Helen +Imelda +Jackie +Jami +Karina +Natasha +Shelby +Susana +Susie +Tonia +Tracie +Alice +Angelita +Athena +Beverly +Blanca +Brooke +Cari +Cathy +Christa +Darcy +Dianna +Dora +Esmeralda +Hope +Joanne +Jocelyn +Lara +Lorie +Marci +Maribel +Marisa +Penny +Ruby +Sally +Serena +Shirley +Tammie +Billie +Bobbi +Christi +Cori +Debbie +Ericka +Evangeline +Gretchen +Hilary +Jana +Jane +Jeannie +Loretta +Marilyn +Marisol +Nina +Peggy +Racheal +Tamika +Tisha +Vicki +Alisha +Alvina +Amelia +Angel +Anissa +Antoinette +Arlene +Bridget +Carey +Cheri +Christal +Clara +Eileen +Elsa +Evangelina +Evelyn +Graciela +Griselda +Irma +Jacquelyn +Janelle +Jeannette +Jenna +Kim +Kirsten +Leann +Lesley +Lourdes +Luz +Marcy +Marina +Marsha +Maureen +Melisa +Miriam +Myra +Paige +Randi +Roxanna +Susanna +Teri +Terra +Alanna +Alexis +Alyssa +Anitra +Annie +Araceli +Ashley +Bertha +Betsy +Brianna +Camille +Carmelita +Catrina +Chanda +Chandra +Chantel +Consuelo +Darla +Davina +Dina +Dolores +Dominique +Elisabeth +Ellen +Elvia +Elvira +Ernestina +Faith +Francine +Francisca +Genevieve +Jo +Johanna +Joni +Judy +Kami +Kerri +Kimberlee +Lindsay +Lora +Louisa +Maricela +Marlene +Marta +Mercy +Meredith +Michael +Olga +Paulette +Shawn +Sonja +Tania +Tawnya +Vivian +Wendi +Yadira +Adrianna +Alana +Alexandra +Alissa +Alyson +Anastasia +Angelic +Briana +Carie +Carri +Cassie +Celina +Claire +Concepcion +Daniel +Delilah +Elise +Florence +Geneva +Geraldine +Hollie +Isela +James +Janie +Josie +Juana +Kimberley +Lana +Latoya +Lauren +Lee +Leigh +Lena +Lindsey +Lynna +Maritza +Matilda +Maya +Mayra +Melvina +Mona +Nikki +Nora +Pearl +Rosalinda +Rosanna +Rosario +Rosie +Sasha +Shantel +Shellie +Sheryl +Shirlene +Silvia +Sophia +Tamra +Tasha +Tera +Terry +Thelma +Valencia +Velma +Verna +Windy +Adrianne +Andria +Angelia +Annabelle +Antonia +Brandee +Buffy +Candy +Carina +Carisa +Chelsea +Chrystal +Claudine +Corinna +Corrina +Cristal +Daphne +Dara +Deana +Debora +Deena +Delores +Demetria +Desiree +Elsie +Emilie +Eve +Gwen +Holli +Janette +Jeanine +Jessie +Julianne +June +Karrie +Karyn +Krystal +Leanne +Lillian +Lucia +Lucy +Lynnette +Mara +Marcie +Margo +Marisela +Marnie +Nadine +Nellie +Noelle +Phyllis +Rae +Selena +Selina +Suzanna +Taryn +Tiffani +Twila +Ursula +Wanda +Yessenia +Jennifer +Melissa +Amy +Michelle +Heather +Jessica +Lisa +Angela +Stephanie +Christina +Shannon +Rebecca +Kimberly +Maria +Amanda +Monica +Veronica +Elizabeth +Andrea +Laura +Sarah +Cynthia +Nicole +Jamie +Julie +Rachel +Kelly +Mary +Crystal +Jaime +Erin +Patricia +Amber +Christine +Dawn +Sara +Carrie +Tanya +April +Tiffany +Danielle +Stacy +Melanie +Karen +Misty +Anna +Denise +Sandra +Tracy +Tina +Wendy +Renee +Teresa +Lori +Brenda +Erica +Heidi +Tammy +Valerie +Tara +Diana +Holly +Vanessa +Victoria +Katherine +Leslie +Kristen +Kristin +Theresa +Sonia +Stacey +Yvonne +Deborah +Regina +Catherine +Kristina +Emily +Natalie +Cheryl +Courtney +Samantha +Tamara +Brandy +Deanna +Gina +Melinda +Sharon +Susan +Claudia +Jill +Margaret +Robin +Shawna +Angelica +Erika +Jodi +Linda +Yvette +Brandi +Kathleen +Michele +Suzanne +Allison +Katrina +Nancy +Yolanda +Kari +Mandy +Carolyn +Alicia +Donna +Jacqueline +Lindsay +Rhonda +Gloria +Sabrina +Julia +Leah +Pamela +Candice +Carmen +Jenny +Kathryn +Megan +Olivia +Priscilla +Christy +Cindy +Dana +Debra +Felicia +Kristi +Marisa +Virginia +Ann +Paula +Shelly +Sylvia +Christie +Karla +Katie +Monique +Autumn +Barbara +Cassandra +Elaine +Nichole +Sherry +Tonya +Angel +Annette +Bethany +Guadalupe +Joy +Kristy +Leticia +Lorraine +Marie +Martha +Adrienne +Connie +Francisca +Ginger +Sheila +Sheri +Alexis +Alison +Joanna +Kelli +Roberta +Traci +Aimee +Ana +Bernadette +Isabel +Raquel +Roxanne +Trisha +Anita +Candace +Carol +Charlotte +Kendra +Keri +Krista +Molly +Norma +Summer +Toni +Tracey +Angelina +Bridget +Carla +Cecilia +Jody +Alice +Anne +Bonnie +Brooke +Frances +Janet +Jeanette +Laurie +Natasha +Rebekah +Ruth +Angie +Audrey +Caroline +Charity +Genevieve +Irene +Rachael +Sonya +Angelita +Ashley +Belinda +Beth +Christa +Clarissa +Elisa +Farrah +Janice +Juanita +Lorena +Margarita +Naomi +Robyn +Rochelle +Rosa +Rosemary +Shelley +Alma +Bianca +Billie +Blanca +Charlene +Corina +Jana +Joanne +Kara +Kristine +Latoya +Ramona +Shanna +Sophia +Tasha +Tricia +Bobbie +Eva +Hope +Jackie +Jolene +Joyce +Kerry +Lydia +Lynn +Marcella +Maritza +Marsha +Rita +Shauna +Stacie +Trina +Adriana +Celeste +Colleen +Diane +Dianna +Dolores +Evelyn +Gabriela +Geneva +Grace +Johanna +Karina +Kerri +Liberty +Lindsey +Marina +Ruby +Sherri +Tonia +Alisha +Beverly +Camille +Cara +Celina +Davina +Debbie +Dora +Elena +Georgina +Janelle +Karin +Kellie +Lynette +Maribel +Marla +Marlene +Maureen +Rachelle +Rhiannon +Stella +Tennille +Terri +Alexandra +Amie +Beatrice +Becky +Bridgette +Candy +Cari +Darlene +Deana +Faith +Gretchen +Jami +Lara +Lena +Mandi +Meredith +Mona +Nadia +Nina +Rose +Shawn +Shirley +Stefanie +Tabitha +Tisha +Anissa +Brandie +Dena +Desiree +Elsa +Helen +Jessie +Joann +Larissa +Lauren +Lora +Lucia +Melody +Mindy +Minerva +Miranda +Serena +Shana +Sonja +Staci +Tatiana +Vicki +Alana +Alejandra +Alisa +Arlene +Audra +Bernice +Casey +Cheri +Christi +Chrystal +Ericka +Esperanza +Esther +Gwendolyn +Hannah +Hillary +Iris +Janie +Jeannie +Jenifer +Josie +Karri +Kimberley +Kristal +Leann +Lillian +Lucinda +Maricela +Marilyn +Melisa +Nora +Selena +Sharlene +Silvia +Spring +Tameka +Tania +Teri +Terra +Vivian +Yesenia +Alyssa +Annie +Betty +Bobbi +Cecelia +Chandra +Chelsea +Corrina +Daisy +Darcy +Dina +Janine +Jennie +Joan +Juana +Karrie +Kelley +Kirsten +Lesley +Lola +Loretta +Marisela +Marlena +Melina +Pearl +Peggy +Rena +Sally +Shellie +Stacia +Susana +Susanna +Suzette +Tana +Tori +Tracie +Whitney +Aaron +Abby +Adelina +Alberta +Alissa +Amelia +Ami +Antonia +Aurelia +Brandee +Bree +Carmelita +Cassie +Catalina +Christopher +Consuelo +Cristina +Doreen +Eileen +Ellen +Elvia +Emma +Estella +Eunice +Gail +Helena +Hollie +Jasmine +Jeannette +Josephine +Judith +Kathy +Kim +Kimberlee +Kori +Kristie +Krystal +Lana +Lea +Leigh +Lizette +Lois +Lorinda +Lorna +Lourdes +Lucy +Lupita +Luz +Marcela +Marcia +Mellissa +Mindi +Miriam +Myra +Nikki +Paige +Petra +Rosanna +Selina +Shelby +Sheryl +Susie +Tabatha +Tami +Tanisha +Tatum +Tessa +Vicky +Abigail +Adria +Allyson +Alyson +Anitra +Aubrey +Beatriz +Carie +Carisa +Carissa +Carli +Carly +Chasity +Cherie +Corinna +Danelle +Daniela +Delia +Detra +Dixie +Dorothy +Dusty +Eleanor +Elise +Eliza +Eloisa +Erlinda +Eugenia +Francine +Graciela +Griselda +Hilary +Hilda +Imelda +Ingrid +Janae +Janel +Jean +Jenna +Jeremy +Jo +John +Judy +Juliet +Katy +Lacey +Lakesha +Latasha +Layla +Leila +Leilani +Lupe +Lynda +Lynnette +Maggie +Malissa +Marisol +Marissa +Marta +Matilda +Mia +Michael +Misti +Nadine +Olga +Penelope +Penny +Phyllis +Raylene +Rebeca +Rosalva +Sierra +Star +Sunshine +Susanne +Terry +Therese +Tobi +Trudy +Valentina +Wanda +Jennifer +Melissa +Jessica +Michelle +Heather +Amy +Christina +Lisa +Stephanie +Sarah +Angela +Andrea +Kimberly +Rebecca +Maria +Elizabeth +Amanda +Shannon +Monica +Kelly +Nicole +Crystal +Veronica +Jamie +Rachel +Laura +Amber +Mary +Julie +Christine +Erin +Patricia +Tiffany +Sara +April +Cynthia +Danielle +Tara +Dawn +Misty +Anna +Jaime +Sandra +Erica +Carrie +Denise +Tanya +Sabrina +Emily +Holly +Teresa +Karen +Katherine +Brandy +Valerie +Victoria +Stacy +Tammy +Vanessa +Jill +Susan +Alicia +Tina +Melanie +Theresa +Tracy +Allison +Megan +Sonia +Renee +Tamara +Brenda +Leslie +Natalie +Regina +Diana +Samantha +Sharon +Stacey +Heidi +Lindsay +Cheryl +Kristin +Wendy +Christy +Kristen +Lori +Melinda +Kathryn +Kristina +Angelica +Catherine +Barbara +Deanna +Michele +Dana +Kathleen +Robin +Katrina +Brandi +Courtney +Erika +Kristy +Leah +Shawna +Sylvia +Jacqueline +Mandy +Claudia +Marie +Yvonne +Anita +Jenny +Kendra +Nancy +Summer +Carmen +Gina +Linda +Shanna +Tonya +Brooke +Jodi +Leticia +Pamela +Trisha +Virginia +Yolanda +Annette +Debra +Adrienne +Cindy +Deborah +Kelli +Margaret +Mindy +Raquel +Rhonda +Suzanne +Ana +Cassandra +Kara +Kristi +Sonya +Ann +Bernadette +Cecilia +Celina +Roberta +Ruth +Terri +Angelina +Colleen +Donna +Guadalupe +Joy +Katie +Toni +Aimee +Carla +Julia +Kari +Monique +Olivia +Priscilla +Sheila +Shelly +Anne +Beth +Connie +Diane +Angel +Gloria +Nichole +Sherry +Jolene +Marissa +Molly +Rachael +Robyn +Rochelle +Carol +Carolyn +Felicia +Karla +Marisa +Naomi +Rita +Rose +Shauna +Yvette +Adriana +Angie +Bethany +Bonnie +Candice +Desiree +Elisa +Krista +Laurie +Norma +Rosa +Autumn +Esther +Joanna +Lindsey +Martha +Selina +Traci +Cara +Charlene +Charlotte +Farrah +Jaclyn +Janice +Jody +Keri +Kristine +Nadia +Ramona +Roxanne +Amelia +Belinda +Bianca +Eva +Jana +Joann +Kristie +Meredith +Rebekah +Salina +Sheri +Sophia +Tami +Tricia +Yesenia +Alisha +Alison +Alma +Angelita +Bridget +Christie +Frances +Johanna +Kathy +Kellie +Lorraine +Paula +Stacie +Trina +Audrey +Camille +Clarissa +Debbie +Delia +Elaine +Ericka +Francisca +Janelle +Janet +Jenna +Karina +Shana +Alisa +Alyssa +Beverly +Candace +Charity +Corina +Dena +Elena +Jocelyn +Joni +Kerry +Lynn +Marsha +Rosemary +Taryn +Tracey +Whitney +Alexandra +Angelique +Ashley +Carly +Darcy +Ellen +Helen +Jasmine +Jeanette +Juanita +Kelley +Lorena +Lydia +Lynette +Marcella +Margarita +Serena +Staci +Susana +Tabitha +Teri +Becky +Carey +Caroline +Chelsea +Dorothy +Genevieve +Georgina +Josephine +Kami +Kim +Loretta +Marcia +Melody +Michael +Penny +Rena +Rhiannon +Shawn +Sherri +Sunshine +Blanca +Bobbie +Brandie +Carissa +Casey +Celeste +Chrystal +Danette +Eileen +Esperanza +Gretchen +Isabel +Jennie +Jillian +Kerri +Krystal +Larissa +Maritza +Marlene +Natasha +Nikki +Sandy +Shelby +Stefanie +Tera +Tisha +Abigail +Alexis +Amie +Carolina +Chantel +Cheri +Christi +Faith +Gabriela +Geneva +Ginger +Grace +Jessie +Kirsten +Laurel +Lauren +Liza +Marisol +Marlena +Miranda +Miriam +Sally +Selena +Shelley +Stella +Tasha +Terra +Bernice +Betty +Billie +Bree +Briana +Chandra +Corinna +Cortney +Deana +Dominique +Francine +Hollie +Ida +Jackie +Jami +Jayme +Joyce +Judy +Kate +Lea +Leigh +Lena +Luz +Marina +Maxine +Melisa +Myra +Pearl +Peggy +Rene +Ronda +Ruby +Sonja +Susanna +Suzette +Ursula +Adrianne +Alice +Aubrey +Bridgett +Cathy +Cori +Cristina +Darlene +Davina +Deanne +Dora +Evangeline +Gwendolyn +Haley +Helena +Hilary +Hope +Ivy +Jacquelyn +Jane +Janette +Janine +Jeannie +Jenifer +Jeri +Joan +Joanne +Josefina +Judith +Karrie +Karyn +Latisha +Leona +Lizette +Lora +Lucia +Marcie +Marcy +Marjorie +Melina +Mindi +Rachelle +Rocio +Rosalinda +Roxanna +Sommer +Tammie +Tamra +Tawnya +Vicki +Vivian +Adelita +Alana +Araceli +Aurora +Bertha +Brenna +Cari +Carina +Carmelita +Cecelia +Chanda +Corinne +Devon +Dianna +Dina +Dolores +Elise +Elvira +Ernestina +Esmeralda +Fawn +Georgia +Graciela +Irene +Janae +Janell +Jean +Jeannette +Julianne +Kathrine +Kimberlee +Kimberley +Leann +Lesley +Lillian +Magdalena +Marcela +Marisela +Maureen +Mia +Mona +Nora +Pauline +Reyna +Richelle +Rosanna +Rosario +Shanon +Shirley +Sofia +Stacia +Stephany +Wendi +Adrian +Allyson +Alyson +Anissa +Annie +Arlene +Beatrice +Brittany +Brook +Buffy +Carisa +Cassie +Celia +Charmaine +Cherie +Chrissy +Claire +Clara +Consuelo +Corrie +Danelle +Daniella +Deann +Delores +Dionne +Dusty +Elisabeth +Eliza +Eve +Evelyn +Gena +Geraldine +Gracie +Hannah +Hillary +Irma +Jacque +Jaimie +Janel +Janie +Janna +Jesica +Jo +Josie +Juliet +Karie +Kendall +Lacey +Lana +Lara +Latanya +Latasha +Layla +Leanne +Leyla +Lilia +Liliana +Lois +Lucinda +Lupita +Lynda +Mandi +Manuela +Mara +Marci +Margo +Mariah +Maribel +Maricruz +Marilyn +Marion +Marla +Marlinda +Maryann +Meagan +Meghan +Mercedes +Phoebe +Racheal +Randi +Reina +Rosalie +Shea +Silvia +Susie +Tamera +Tania +Tiffanie +Tonia +Tori +Valencia +Venessa +Jennifer +Melissa +Jessica +Michelle +Heather +Christina +Sarah +Lisa +Stephanie +Amy +Angela +Andrea +Elizabeth +Nicole +Amanda +Kimberly +Rebecca +Maria +Kelly +Shannon +Crystal +Jamie +Rachel +Veronica +Laura +Amber +Monica +Mary +Sara +Erin +Julie +Danielle +Vanessa +April +Cynthia +Erica +Tara +Tiffany +Christine +Carrie +Patricia +Katherine +Emily +Alicia +Sandra +Anna +Dawn +Tina +Melanie +Tracy +Denise +Kristina +Sabrina +Samantha +Teresa +Valerie +Misty +Brandy +Jaime +Karen +Kristy +Renee +Diana +Holly +Kristin +Tanya +Stacy +Victoria +Kristen +Wendy +Angelica +Yvonne +Natalie +Stacey +Catherine +Kathryn +Brandi +Cheryl +Gina +Tamara +Linda +Lindsay +Lori +Sonia +Deanna +Theresa +Brenda +Leslie +Shawna +Summer +Tammy +Courtney +Megan +Melinda +Susan +Desiree +Leah +Nancy +Priscilla +Trisha +Heidi +Regina +Adrienne +Cassandra +Deborah +Jill +Julia +Mandy +Kathleen +Allison +Claudia +Erika +Michele +Robin +Tonya +Autumn +Christy +Sharon +Sylvia +Jacqueline +Jodi +Gloria +Kristi +Leticia +Marie +Juanita +Sonya +Yolanda +Kara +Kendra +Suzanne +Brooke +Dana +Kelli +Pamela +Ashley +Barbara +Debra +Donna +Nichole +Toni +Annette +Carol +Katie +Lindsey +Yvette +Alison +Anne +Audrey +Katrina +Margaret +Rosa +Aimee +Ann +Bianca +Eva +Felicia +Jaclyn +Karla +Olivia +Ruth +Virginia +Carolyn +Colleen +Lauren +Marisa +Marissa +Melody +Monique +Robyn +Shauna +Carla +Cindy +Diane +Kari +Tabitha +Carmen +Janet +Jenny +Krista +Mindy +Shanna +Traci +Alma +Charity +Connie +Irene +Martha +Paula +Rachael +Rita +Ana +Audra +Bonnie +Candace +Isabel +Joanna +Kelley +Margarita +Naomi +Norma +Raquel +Roxanne +Tricia +Alexis +Angelina +Anita +Cristina +Faith +Jolene +Joy +Kerry +Marcella +Rhonda +Alyssa +Bethany +Caroline +Charlene +Elena +Elisa +Kellie +Krystal +Laurie +Trina +Adrianne +Alisha +Charlotte +Debbie +Ericka +Frances +Janelle +Kristie +Rhiannon +Sherri +Adriana +Belinda +Candice +Cara +Celina +Corina +Genevieve +Kathy +Keri +Lorena +Rosemary +Ruby +Stefanie +Amelia +Beth +Camille +Cecilia +Clarissa +Dolores +Esmeralda +Ginger +Janice +Jennie +Karina +Kristine +Lacey +Luz +Lydia +Marsha +Roberta +Sheila +Terri +Tracey +Becky +Guadalupe +Jody +Marlena +Meredith +Miranda +Rachelle +Sheri +Tasha +Beatrice +Briana +Esther +Gabriela +Grace +Lillian +Mandi +Maritza +Nina +Sally +Shawn +Sherry +Sophia +Tami +Amie +Angel +Angelita +Bernadette +Beverly +Candy +Cassie +Christie +Darlene +Dena +Elaine +Esperanza +Jeanette +Jocelyn +Kasey +Kerri +Leanne +Lorraine +Malinda +Nadine +Shelley +Stacie +Alexandra +Alissa +Angelique +Bobbie +Bridget +Carissa +Casey +Celeste +Chelsea +Corinne +Jacquelyn +Jillian +Latoya +Mariah +Maribel +Marisol +Meghan +Molly +Natasha +Nikki +Ramona +Rene +Rochelle +Rosalinda +Ryan +Selena +Selina +Serena +Sonja +Teri +Terra +Tia +Alisa +Athena +Billie +Blanca +Bobbi +Doreen +Gabrielle +Gwendolyn +Helen +Imelda +Jami +Jana +Kimberlee +Kirsten +Leigh +Marilyn +Maxine +Melina +Penny +Shana +Shelby +Shelly +Staci +Stella +Sunshine +Tisha +Tracie +Venessa +Abigail +Brittany +Carey +Corrie +Devon +Elisha +Hilary +Hollie +Irma +Jackie +Janette +Jeannette +Joanne +Josie +Latisha +Lea +Lucia +Lucinda +Marcia +Marisela +Marlene +Maureen +Melisa +Miriam +Nadia +Noemi +Rebekah +Tamika +Valencia +Yadira +Yesenia +Alexandria +Alice +Andreana +Annie +Antoinette +Antonia +Araceli +Arlene +Brianna +Brianne +Carolina +Celia +Cheri +Cherie +Christa +Chrystal +Corrina +Cristy +Darla +Destiny +Dianna +Dina +Dominique +Emma +Evelyn +Francisca +Gretchen +Hannah +Janae +Jenifer +Jo +Joann +Judith +Judy +Kate +Katy +Kimberley +Latasha +Magdalena +Maricela +Marla +Mayra +Misti +Morgan +Myra +Nora +Peggy +Reyna +Rosalie +Rose +Shanda +Socorro +Tamra +Tania +Tera +Terry +Wanda +Wendi +Alana +Alejandra +Angie +Aubrey +Bettina +Betty +Brandie +Bridgette +Brook +Cari +Cathy +Claire +Clara +Consuelo +Daphne +Darcy +Deana +Dorothy +Eileen +Elaina +Elisabeth +Elissa +Elsa +Elvira +Flora +Hallie +Harmony +Isela +Janell +January +Jesse +Josephine +June +Kathrine +Keely +Kim +Kristal +Lacy +Larissa +Leann +Lesley +Loretta +Lynette +Lynn +Manuela +Marlinda +Michael +Mireya +Olga +Paige +Ronda +Sandy +Sasha +Shaunna +Shea +Sondra +Susie +Tanisha +Valentina +Abby +Aisha +Alberta +Alexa +Alyson +Ariane +Bernadine +Bertha +Bree +Carina +Cheyenne +Chrissy +Christel +Cora +Corie +Cory +Daniel +Daniella +Delilah +Edith +Eleanor +Ellen +Fawn +Francine +Gayle +Georgina +Hillary +Ida +Jane +Jasmine +Jeanne +Kami +Karin +Kary +Lana +Lara +Laurel +Leanna +Leona +Liz +Lorie +Lourdes +Luisa +Mackenzie +Mandie +Mara +Marianne +Maryann +Maya +Meaghan +Mercedes +Mercy +Nellie +Nicolle +Phyllis +Pricilla +Randi +Renae +Rhea +Richelle +Roseann +Sadie +Salina +Shari +Shasta +Shirley +Sierra +Sommer +Stacia +Starla +Susanna +Tammie +Tessa +Thelma +Valeria +Venus +Whitney +Jennifer +Melissa +Jessica +Amanda +Michelle +Sarah +Heather +Christina +Amy +Nicole +Stephanie +Elizabeth +Lisa +Angela +Kimberly +Maria +Andrea +Amber +Rebecca +Crystal +Monica +Shannon +Jamie +Erin +Kelly +Laura +Veronica +Rachel +Tiffany +Sara +April +Vanessa +Erica +Danielle +Mary +Anna +Christine +Patricia +Megan +Misty +Cynthia +Julie +Emily +Alicia +Kristina +Melanie +Tara +Carrie +Dawn +Brandy +Kristen +Samantha +Denise +Holly +Katherine +Susan +Cheryl +Teresa +Sandra +Kristin +Natalie +Valerie +Heidi +Melinda +Priscilla +Stacy +Stacey +Renee +Diana +Jacqueline +Tina +Tracy +Angelica +Leah +Tanya +Victoria +Lindsey +Barbara +Brandi +Erika +Karen +Summer +Jaime +Mindy +Lindsay +Yvonne +Leslie +Brooke +Linda +Tamara +Kathryn +Katrina +Sonia +Ashley +Theresa +Candice +Deanna +Jill +Courtney +Lauren +Nichole +Wendy +Brenda +Michele +Regina +Robin +Tammy +Meghan +Monique +Catherine +Leticia +Sabrina +Christy +Dana +Kristi +Annette +Colleen +Gina +Kathleen +Allison +Julia +Kendra +Margaret +Ana +Katie +Lori +Olivia +Pamela +Autumn +Elisa +Sonya +Bethany +Bonnie +Kari +Kristy +Marie +Nancy +Sharon +Jenny +Shawna +Adriana +Ann +Cassandra +Rosa +Yolanda +Brianne +Marissa +Rachael +Roxanne +Yvette +Anita +Anne +Deborah +Felicia +Gloria +Suzanne +Virginia +Adrienne +Alisha +Cindy +Janet +Marisa +Tonya +Alison +Bernadette +Cecilia +Donna +Jodi +Natasha +Shelly +Alma +Angelina +Carmen +Desiree +Elena +Guadalupe +Juanita +Lydia +Martha +Miranda +Naomi +Bianca +Diane +Joanna +Kelli +Sylvia +Trisha +Irene +Krista +Angie +Debra +Laurie +Mandy +Paula +Audrey +Candace +Charity +Janelle +Joy +Karla +Krystal +Rochelle +Shanna +Shauna +Abigail +Carolyn +Jana +Kara +Marcella +Melody +Rachelle +Ruby +Stacie +Toni +Claudia +Corina +Cristina +Frances +Hannah +Nina +Rose +Sally +Sheila +Tami +Beth +Briana +Brianna +Bridget +Carla +Carol +Cathy +Celina +Eva +Isabel +Jaclyn +Kristine +Shelley +Sherry +Alexis +Athena +Corinne +Jasmine +Jeanette +Margarita +Raquel +Ruth +Sheri +Traci +Tricia +Audra +Beatrice +Becky +Cara +Carly +Debbie +Ericka +Gabriela +Ginger +Janel +Karina +Marlena +Rhonda +Robyn +Sophia +Terri +Aimee +Alissa +Casey +Chelsea +Christie +Francisca +Jolene +Josephine +Meredith +Rosalinda +Sherri +Susana +Tracey +Alyssa +Bobbie +Breanna +Charlene +Charlotte +Christa +Connie +Elaine +Esther +Evelyn +Faith +Kellie +Keri +Kristie +Mandi +Miriam +Natalia +Rebekah +Roberta +Alisa +Darlene +Devon +Dorothy +Elvira +Genevieve +Georgina +Jami +Jenifer +Joanne +Kirsten +Latanya +Luz +Marcia +Nikki +Rita +Rosemary +Shana +Staci +Tisha +Vivian +Yesenia +Alejandra +Amelia +Blanca +Carissa +Caroline +Celeste +Celia +Clarissa +Dina +Elisabeth +Hillary +Jackie +Janice +Jessie +Jody +Kathy +Kristal +Lorraine +Maritza +Marlene +Nicolette +Ramona +Ryan +Tabitha +Tracie +Whitney +Adrianna +Angel +Angelique +Araceli +Belinda +Bobbi +Brandie +Camille +Catalina +Chrissy +Chrystal +Cori +Delia +Gretchen +Helen +Jenna +Jennie +Jillian +Kelley +Kim +Lacey +Lara +Leann +Lorena +Lucinda +Marsha +Mercedes +Nadia +Nora +Norma +Randi +Selena +Venessa +Alice +Allyson +Alvina +Angelita +Antonia +Dayna +Esmeralda +Grace +Gwendolyn +Jacquelyn +Joann +Jodie +Katharine +Kimberlee +Latisha +Leanna +Leigh +Lena +Loretta +Lynette +Lynn +Malissa +Mariah +Marilyn +Marisol +Marla +Misti +Molly +Noemi +Rhiannon +Sandy +Tasha +Terra +Trina +Viviana +Alyson +Anissa +Annie +Aubrey +Beatriz +Betty +Breanne +Cassie +Celena +Daniela +Davina +Destiny +Dolores +Dominique +Ebony +Eileen +Francine +Glenda +Griselda +Jean +Jocelyn +Josie +Judith +Kerri +Kerry +Marisela +Michael +Michaela +Pauline +Penny +Reyna +Rocio +Rosanna +Selina +Shari +Sheryl +Susie +Tania +Wendi +Adrianne +Alana +Alexandra +Alexandria +Amie +Antoinette +Beverly +Candi +Cari +Clara +Dallas +Georgia +Iris +Ivy +Jaimie +Janette +Josefina +Kate +Laurel +Leanne +Lee +Lupe +Mackenzie +Maribel +Mayra +Melisa +Nichol +Rene +Sasha +Shawn +Starla +Sunshine +Susanna +Tana +Tanisha +Tia +Abby +Andria +Arlene +Aurora +Bambi +Candy +Carina +Carmelita +Carolina +Catrina +Cecelia +Chandra +Chantel +Chasity +Daisy +Deana +Devin +Dora +Dulce +Dusty +Edith +Edna +Eliza +Ellen +Esperanza +Hilda +Janell +Jayme +Jeri +Juliana +Kasey +Katy +Kenya +Kimberley +Leona +Lucia +Marina +Mellissa +Mia +Noelle +Raven +Rayna +Rosanne +Rosie +Salina +Sonja +Stefanie +Stella +Sunny +Tabatha +Tiffanie +Valencia +Adrian +Alberta +Alexa +Alysia +Amalia +Anastasia +Ariane +Arlinda +Britney +Bryn +Callie +Cami +Carey +Carisa +Casandra +Casie +Chastity +Cherie +Christi +Christin +Cody +Colette +Consuelo +Cora +Cristal +Darla +David +Delilah +Elisha +Elsa +Elvia +Eunice +Gabrielle +Georgette +Graciela +Harmony +Imelda +Isela +Janine +Janna +January +Jeanne +Jeannette +Jeannie +Jena +Jeremy +Jo +Jordan +Joyce +Judy +Julissa +Kami +Karie +Kira +Kirstin +Kori +Kris +Kylene +Lacy +Lakisha +Lana +Latoya +Lea +Leia +Leila +Lela +Lesley +Letitia +Liana +Liliana +Lillian +Linsey +Lizette +Lucy +Malinda +Marcie +Mariana +Maricela +Maureen +Melina +Micaela +Nadine +Noel +Pearl +Peggy +Perla +Ronda +Roseann +Roseanna +Roxanna +Sharla +Shelby +Shonda +Socorro +Sommer +Starr +Suzette +Tamika +Teri +Terry +Thelma +Tiana +Tiffani +Tori +Tosha +Trish +Vicki +Windy +Yadira +Jennifer +Jessica +Melissa +Amanda +Sarah +Michelle +Stephanie +Christina +Nicole +Amber +Lisa +Heather +Rebecca +Andrea +Elizabeth +Tiffany +Angela +Amy +Erin +Crystal +Kimberly +Maria +April +Rachel +Laura +Jamie +Monica +Sara +Veronica +Danielle +Kelly +Mary +Shannon +Emily +Erica +Vanessa +Megan +Julie +Patricia +Cynthia +Kristen +Anna +Christine +Katherine +Alicia +Kristin +Lindsay +Brooke +Tara +Monique +Samantha +Brandy +Misty +Sandra +Melanie +Natalie +Tanya +Denise +Valerie +Courtney +Kathryn +Carrie +Holly +Kristina +Leslie +Leah +Dawn +Diana +Stacy +Ashley +Erika +Katie +Karen +Sabrina +Teresa +Tina +Angelica +Katrina +Allison +Brandi +Melinda +Renee +Susan +Lauren +Heidi +Nichole +Tamara +Kathleen +Meghan +Regina +Theresa +Victoria +Candice +Cheryl +Deanna +Stacey +Cassandra +Jaime +Margaret +Tracy +Julia +Sonia +Kristy +Lindsey +Brenda +Christy +Deborah +Jacqueline +Krista +Wendy +Catherine +Lori +Yvonne +Desiree +Linda +Suzanne +Gina +Leticia +Roxanne +Trisha +Jill +Naomi +Natasha +Pamela +Alisha +Autumn +Sharon +Yolanda +Alexis +Marie +Priscilla +Rosa +Bethany +Kristi +Robin +Shawna +Barbara +Claudia +Rachael +Alma +Bonnie +Cindy +Donna +Kendra +Michele +Mindy +Summer +Tonya +Adriana +Dana +Jenny +Kelli +Rebekah +Stefanie +Frances +Kara +Kari +Marissa +Tammy +Virginia +Adrienne +Alison +Candace +Carmen +Cecilia +Guadalupe +Lydia +Mandy +Nancy +Olivia +Sonya +Tasha +Ana +Felicia +Raquel +Cristina +Diane +Karla +Miranda +Anne +Christa +Joanna +Lorena +Maribel +Martha +Shauna +Yvette +Ann +Annette +Audrey +Colleen +Debra +Kristine +Paula +Roberta +Robyn +Cara +Clarissa +Gloria +Kimberley +Marisa +Sheila +Aimee +Jodi +Karina +Carolyn +Esther +Eva +Jaclyn +Kelley +Ruth +Sylvia +Alissa +Angelina +Beth +Bianca +Charlene +Gabriela +Janet +Jeanette +Jolene +Kellie +Rosemary +Ruby +Shelly +Toni +Tricia +Whitney +Angel +Brianna +Esmeralda +Hilary +Isabel +Jacquelyn +Juanita +Rachelle +Rita +Rochelle +Sophia +Abigail +Alyssa +Destiny +Grace +Jessie +Joy +Krystal +Maritza +Morgan +Tabitha +Anita +Antonia +Aubrey +Blanca +Brianne +Bridget +Carla +Corina +Genevieve +Janelle +Jenna +Jocelyn +Meredith +Rhonda +Salina +Shelby +Shelley +Stacie +Susana +Traci +Celeste +Chelsea +Johanna +Molly +Nina +Norma +Rose +Terri +Trina +Alice +Audra +Billie +Brandie +Briana +Brittany +Casey +Cassie +Connie +Hope +Josephine +Lacey +Lorraine +Lynette +Lynn +Marcella +Melody +Sheri +Yesenia +Adrianne +Amelia +Amie +Becky +Bernadette +Christie +Clara +Debbie +Dianna +Elena +Elsa +Geneva +Hannah +Jana +Janette +Janice +Joann +Kerri +Kimberlee +Laurie +Margarita +Maureen +Michael +Nikki +Tami +Tracey +Yadira +Alana +Alexandra +Angie +Beatrice +Bobbie +Celina +Chantel +Chrystal +Elaine +Elisa +Elisha +Emma +Ericka +Francisca +Irma +Jackie +Jasmine +Jenifer +Judith +Kathy +Kerry +Kirsten +Latoya +Leanna +Meagan +Nicolette +Pauline +Perla +Ramona +Shanna +Alisa +Alvina +Araceli +Betty +Camille +Carly +Carol +Charity +Charlotte +Delia +Dolores +Ellen +Evelyn +Irene +Jami +Janell +Jayme +Jeri +Keri +Kristal +Kristie +Lara +Lea +Leann +Lena +Lillian +Mandi +Marisela +Mayra +Miriam +Sally +Serena +Sherry +Suzette +Taryn +Alexandria +Allyson +Ariana +Arlene +Athena +Bobbi +Celia +Claire +Consuelo +Cori +Dora +Dorothy +Dusty +Elvira +Eunice +Ginger +Iris +Joni +Josie +Kasey +Kate +Larissa +Laurel +Loretta +Lupita +Marci +Marcia +Marcie +Mariah +Maricela +Marina +Mercedes +Nadia +Pearl +Rhiannon +Sandy +Sasha +Selena +Sherri +Shirley +Sonja +Staci +Tania +Vivian +Viviana +Angelique +Angelita +Annie +Bertha +Breanne +Brook +Carolina +Cathy +Christin +Ebony +Edith +Esperanza +Georgina +Graciela +Helen +Jennie +Jillian +Jodie +Jody +Joyce +Lacy +Latasha +Latisha +Lourdes +Magdalena +Mariana +Marisol +Marlena +Marlene +Melina +Michaela +Noelle +Nora +Shana +Susanna +Teri +Vicki +Alejandra +Alyson +Armida +Carmelita +Caroline +Catrina +Chandra +Cheri +Cherie +Cortney +Dara +Desirae +Devon +Dulce +Edna +Elisabeth +Elise +Gabrielle +Georgia +Helena +Hillary +Ivy +Jaimie +Jane +Janel +Joanne +Joleen +Judy +Kim +Lana +Lani +Lee +Leia +Lizette +Loni +Lucinda +Luz +Melisa +Mia +Myra +Nadine +Nikole +Paige +Penny +Racheal +Randi +Reyna +Rocio +Selina +Tabatha +Talia +Tamera +Tanisha +Terra +Adelina +Adrianna +Andria +Antoinette +Arianna +Aurora +Beatriz +Belinda +Brenna +Brittney +Christen +Christi +Cora +Corinne +Daisy +Daniela +Daniella +Darcy +Darlene +Dayna +Eileen +Eleanor +Eugenia +Evangelina +Faith +Gladys +Haley +Ingrid +Jeannie +Jordan +Juliet +Kerrie +Kisha +Latanya +Leanne +Leigh +Letitia +Lindy +Lora +Lucia +Marilyn +Marivel +Marjorie +Misti +Natalia +Noemi +Reina +Rikki +Ronda +Rosalinda +Rosanna +Rosie +Siobhan +Starla +Suzanna +Tawnya +Tera +Tia +Tiffanie +Tisha +Tori +Vicky +Adriane +Aisha +Aja +Alaina +Alethea +Alexia +Anissa +Arlinda +Bridgett +Candi +Candy +Cari +Carina +Carissa +Cassidy +Cheyenne +Colette +Corrine +Cristy +Danica +Daniel +Davina +Deann +Deidra +Dena +Dustie +Elaina +Emilie +Ernestina +Ernestine +Estrella +Fatima +Faye +Gwendolyn +Ida +Inez +Isela +Janis +Jeanie +Jeanine +Jerilyn +Joey +Juana +Justin +Kami +Karalee +Karin +Kassandra +Katy +Kay +Kori +Kylie +Leona +Liana +Lisette +Lyndsey +Maggie +Marcy +Maren +Marsha +Matthew +Maya +Mellissa +Mireya +Monika +Paulette +Petra +Rae +Rena +Renae +Richelle +Roxana +Roxann +Sage +Sebrina +Serina +Shannan +Shawn +Shayna +Silvia +Sommer +Stella +Stephenie +Susanne +Tammi +Tana +Tanna +Terry +Tessa +Tonia +Trinity +Vera +Wendi +Jennifer +Jessica +Melissa +Amanda +Stephanie +Sarah +Nicole +Michelle +Christina +Amber +Elizabeth +Crystal +Heather +Rebecca +Lisa +Angela +Andrea +Amy +Kimberly +Maria +Tiffany +April +Erin +Laura +Rachel +Monica +Vanessa +Jamie +Danielle +Veronica +Sara +Shannon +Erica +Emily +Kelly +Kristen +Mary +Kristin +Megan +Patricia +Cynthia +Julie +Anna +Courtney +Christine +Alicia +Katherine +Lindsay +Tara +Sandra +Samantha +Ashley +Diana +Lindsey +Valerie +Brandy +Leslie +Angelica +Brandi +Brooke +Carrie +Misty +Tanya +Denise +Renee +Natalie +Cassandra +Lauren +Jaime +Monique +Kristina +Priscilla +Holly +Victoria +Julia +Tamara +Heidi +Katie +Teresa +Katrina +Melanie +Theresa +Allison +Candice +Melinda +Tracy +Brenda +Karen +Stacy +Natasha +Sabrina +Ana +Dawn +Linda +Nichole +Jacqueline +Kathryn +Erika +Krystal +Leticia +Stacey +Summer +Leah +Pamela +Sonia +Regina +Bethany +Lori +Sophia +Tammy +Claudia +Kathleen +Tina +Dana +Kristy +Meghan +Sharon +Adriana +Alexis +Margaret +Rachael +Robin +Yvonne +Alison +Barbara +Candace +Marissa +Susan +Suzanne +Yvette +Autumn +Casey +Felicia +Roxanne +Shawna +Wendy +Deanna +Nancy +Carolyn +Sonya +Yolanda +Carla +Catherine +Christy +Jill +Kendra +Rosa +Trisha +Cristina +Guadalupe +Joanna +Desiree +Gina +Kristi +Cheryl +Morgan +Sylvia +Audra +Beth +Carmen +Jodi +Jolene +Karina +Miranda +Angelina +Donna +Kara +Kari +Mandy +Marisa +Martha +Naomi +Rebekah +Alisha +Annette +Bonnie +Cecilia +Irene +Jenny +Joy +Tasha +Janet +Kelli +Nina +Alyssa +Amelia +Celina +Gloria +Marie +Brittany +Caroline +Cindy +Gabriela +Janelle +Melody +Olivia +Rochelle +Tonya +Virginia +Abigail +Adrienne +Aimee +Ann +Brianne +Corina +Elisa +Jenna +Stefanie +Toni +Angel +Brianna +Kellie +Meagan +Michele +Molly +Paula +Ruth +Alexandra +Connie +Esther +Frances +Francisca +Karla +Kirsten +Latoya +Lydia +Maribel +Mindy +Rhonda +Whitney +Alma +Anne +Bianca +Bridget +Isabel +Jaclyn +Robyn +Shanna +Tabitha +Audrey +Carly +Celeste +Deborah +Debra +Elena +Eva +Jasmine +Josephine +Lacey +Raquel +Alissa +Anita +Becky +Cara +Clarissa +Colleen +Elaine +Evelyn +Jeanette +Juanita +Rose +Shauna +Shelly +Sheri +Blanca +Briana +Cassie +Destiny +Diane +Jana +Janice +Jenifer +Marcella +Tracey +Tricia +Carol +Janette +Jocelyn +Kerry +Lacy +Lucinda +Mia +Ruby +Shelley +Tashina +Amie +Angelita +Bobbi +Camille +Charlotte +Daisy +Dora +Faith +Ginger +Hannah +Helen +Jeannette +Jillian +Joanne +Kathy +Krista +Leanne +Liliana +Lorraine +Margarita +Norma +Ramona +Selina +Sheila +Traci +Venessa +Yesenia +Alana +Antoinette +Antonia +Ashlee +Ashleigh +Charity +Chelsea +Daniela +Gabrielle +Jessie +Kristine +Kyla +Rene +Rhiannon +Roberta +Sandy +Sherri +Stacie +Terri +Adrianna +Adrianne +Alejandra +Alisa +Aubrey +Bernadette +Charlene +Genevieve +Haley +Jennie +Jody +Johanna +Joni +Judith +Kate +Kelley +Keri +Kimberlee +Laurie +Leanna +Lorena +Marina +Maritza +Miriam +Pauline +Rita +Rosemary +Sherry +Alice +Athena +Beatriz +Belen +Cari +Carissa +Chandra +Christa +Christin +Claire +Dianna +Dolores +Dominique +Eileen +Elsa +Ericka +Hayley +Jacquelyn +Kerri +Kira +Lea +Leigh +Maricela +Melisa +Pearl +Randi +Selena +Serena +Shana +Tami +Teri +Tiffanie +Trina +Amalia +Cathy +Chrystal +Deidra +Delia +Esperanza +Georgina +Hillary +Joan +Lesley +Lisette +Lucia +Lynn +Marisol +Meredith +Noemi +Rachelle +Sally +Sheryl +Sonja +Sunshine +Tanisha +Ursula +Alexandria +Angelique +Ariana +Betty +Bridgette +Corey +Corrine +Daniella +Dena +Elise +Emilia +Emma +Francine +Grace +Hilary +Irma +Ivy +Janine +Juliet +Kami +Kimberley +Lara +Larissa +Latanya +Laurel +Lena +Lillian +Luz +Lynda +Lynette +Maggie +Mandi +Marcia +Mariana +Marilyn +Maureen +Nadine +Nicolette +Nikki +Paige +Peggy +Penny +Rosalinda +Roxana +Staci +Sue +Susana +Susanna +Tamra +Tiana +Adrian +Anastasia +Annie +Brittney +Casandra +Christie +Corinne +Cortney +Danelle +Ebony +Edith +Elisabeth +Ellen +Elvira +Esmeralda +Fawn +Gretchen +Helena +Iris +Jami +Janell +Jordan +Joyce +Justine +Kasey +Katharine +Leann +Loretta +Lucy +Marisela +Maryann +Mayra +Michael +Nadia +Ryan +Shayna +Shelby +Sherrie +Starla +Tamika +Tarah +Taylor +Teena +Tera +Terra +Tia +Tiffani +Tisha +Valarie +Vicki +Vicky +Viviana +Adelina +Alyson +Angie +Araceli +Aurora +Benita +Bernice +Bertha +Billie +Brandie +Breanna +Brook +Candy +Carina +Carisa +Catrina +Celena +Celia +Cherie +Clara +Constance +Darlene +David +Deana +Dina +Dusty +Eleanor +Elisha +Elissa +Estella +Francesca +Gayle +Griselda +Hope +Jade +Jane +Janna +Jayme +Jean +Jenelle +Jessi +Joann +Kelsey +Kristie +Lilia +Lindy +Lourdes +Lyndsey +Marci +Mariah +Marla +Marlena +Marlene +Mercedes +Myra +Nora +Olga +Patrice +Reanna +Rocio +Rosio +Sasha +Shayla +Starr +Tessa +Tracie +Trudy +Yadira +Abby +Alexa +Alexia +Annalee +Aracely +Arlene +Beatrice +Belinda +Betsy +Brenna +Cami +Carlene +Carolina +Catalina +Cecelia +Chantelle +Christen +Clare +Cori +Cristen +Dayna +Debbie +Deidre +Dorothy +Elicia +Felisha +Gail +Geneva +Gwendolyn +Hilda +Imelda +Isela +Jackie +Jazmin +Jeanne +Jodie +Judy +Juliana +Julianne +Justin +Kandice +Katy +Kristal +Lana +Latasha +Lee +Leilani +Lily +Liza +Lupita +Magdalena +Malinda +Margo +Marjorie +Mark +Matilda +Melina +Nellie +Neva +Paulina +Perla +Phyllis +Rachell +Raven +Rebecka +Reina +Renae +Richelle +Roxanna +Salina +Sandi +Shandra +Shasta +Sheena +Shiloh +Shirley +Silvia +Sofia +Sommer +Suzanna +Tabatha +Terry +Tiara +Trista +Vannessa +Vickie +Vivian +Jennifer +Jessica +Sarah +Stephanie +Amanda +Melissa +Nicole +Michelle +Christina +Elizabeth +Crystal +Amber +Heather +Andrea +Amy +Vanessa +Angela +Tiffany +Kimberly +Rebecca +Lisa +Rachel +Danielle +Sara +Jamie +Laura +Erin +Maria +Emily +Ashley +Monica +April +Veronica +Shannon +Erica +Kelly +Megan +Cassandra +Samantha +Mary +Kristen +Lindsey +Lindsay +Kristin +Alicia +Julie +Natalie +Valerie +Cynthia +Lauren +Courtney +Patricia +Anna +Tara +Christine +Kathryn +Katherine +Angelica +Diana +Leah +Desiree +Heidi +Denise +Kristina +Katie +Jacqueline +Sandra +Krystal +Allison +Holly +Brandy +Carrie +Victoria +Theresa +Catherine +Melanie +Erika +Karen +Misty +Natasha +Priscilla +Stacy +Candice +Jaime +Leslie +Sabrina +Katrina +Shawna +Tanya +Brittany +Bethany +Brandi +Claudia +Kathleen +Monique +Alexis +Nichole +Dawn +Meghan +Stacey +Candace +Gina +Yvonne +Sonia +Teresa +Tina +Tamara +Deanna +Jillian +Julia +Leticia +Renee +Brooke +Linda +Stefanie +Pamela +Wendy +Felicia +Michele +Lacey +Adriana +Regina +Robin +Susan +Sylvia +Autumn +Brenda +Chelsea +Yvette +Marissa +Ana +Barbara +Gloria +Kara +Krista +Morgan +Sharon +Rebekah +Sophia +Tracy +Trisha +Adrienne +Carla +Dana +Jill +Kari +Melinda +Olivia +Rachael +Alisha +Colleen +Janelle +Joanna +Sheena +Casey +Deborah +Guadalupe +Jaclyn +Kristy +Lori +Martha +Rachelle +Tasha +Yolanda +Aimee +Alison +Cassie +Donna +Jeanette +Juanita +Mandy +Ruth +Angelina +Jacquelyn +Kelli +Kristi +Miranda +Roxanne +Sonya +Virginia +Annette +Bonnie +Jolene +Kendra +Margaret +Marisa +Nancy +Nina +Summer +Angel +Audrey +Cecilia +Clarissa +Diane +Laurie +Marie +Rosa +Tammy +Alma +Bianca +Cara +Carmen +Evelyn +Gabriela +Jasmine +Jenny +Shauna +Suzanne +Briana +Cheryl +Christy +Cindy +Cristina +Elena +Frances +Melody +Molly +Naomi +Raquel +Anne +Aubrey +Brianna +Brittney +Carolyn +Celina +Charlene +Elisa +Jodi +Randi +Rochelle +Sheila +Alana +Alexandra +Alyssa +Ann +Janet +Karla +Lorraine +Tabitha +Tia +Angelique +Anita +Eva +Lorena +Maureen +Rosanna +Shelly +Traci +Audra +Bridget +Corina +Debra +Jessie +Kristine +Krystle +Mindy +Shanna +Toni +Antoinette +Elisabeth +Irene +Abigail +Amelia +Carissa +Celeste +Esther +Francisca +Jenifer +Josephine +Judith +Kellie +Keri +Kira +Roberta +Selina +Sonja +Alejandra +Beatrice +Bernadette +Beth +Brianne +Carly +Caroline +Chandra +Charlotte +Darlene +Isabel +Jackie +Karina +Lydia +Maribel +Marisol +Robyn +Amie +Annie +Belinda +Blanca +Camille +Destiny +Hillary +Jami +Janette +Jenna +Kirsten +Leanne +Margarita +Paula +Rita +Rosalinda +Rose +Sasha +Serena +Shana +Terra +Tessa +Tonya +Alexia +Breanna +Chrystal +Francine +Hilary +Janice +Jennie +Joy +Kathy +Lacy +Lourdes +Marcella +Rhonda +Adrianna +Alissa +Ashlee +Bobbie +Charity +Cheyenne +Daniela +Debbie +Esmeralda +Genevieve +Grace +Hannah +Juliana +Kassandra +Kate +Kayla +Kelsey +Latasha +Lee +Lynda +Marina +Marlene +Meredith +Noel +Ruby +Wendi +Adrianne +Alexa +Alexandria +Allyson +Becky +Betty +Carol +Darcy +Desirae +Ericka +Faith +Janae +Jocelyn +Kelley +Leigh +Lesley +Maritza +Miriam +Nadia +Sally +Selena +Stacie +Taryn +Teri +Whitney +Antonia +Ashleigh +Athena +Beverly +Breanne +Ebony +Elise +Esperanza +Iris +Jana +Jayme +Julianna +Katharine +Kimberlee +Kristal +Lara +Latoya +Liliana +Marilyn +Martina +Nikki +Norma +Peggy +Rhiannon +Rosemary +Shelby +Shelley +Sherrie +Siobhan +Tabatha +Talia +Terri +Tricia +Adrian +Alice +Arlene +Bobbi +Britney +Carolina +Cathy +Claire +Constance +Cori +Daniella +Dena +Dora +Eileen +Elissa +Elsa +Fallon +Georgina +Jody +Johanna +Kerri +Leila +Luz +Mariah +Marsha +Mayra +Mia +Michael +Myra +Nora +Olga +Paige +Salina +Sherry +Socorro +Sondra +Staci +Stephenie +Susana +Tamera +Tanisha +Tiffani +Venessa +Angelita +Arianna +Ariel +Caitlin +Cecelia +Christal +Christi +Christie +Christin +Daisy +Deana +Dina +Dominique +Elaine +Elicia +Ginger +Haley +Janine +Joann +Jodie +Joni +Kami +Kandice +Kerry +Kristel +Lena +Liza +Loretta +Lucinda +Lupita +Lynn +Malinda +Marcela +Marcia +Maricela +Marisela +Meagan +Mercedes +Myrna +Natalia +Nichol +Nicolette +Penny +Renae +Sherri +Tera +Tracey +Vivian +Viviana +Alaina +Alanna +Anastasia +Angie +Araceli +Aurora +Beatriz +Blair +Brandie +Brynn +Carina +Catalina +Cathleen +Catrina +Celia +Cherie +Christa +Christen +Christopher +Cody +Concepcion +Cora +Dara +Davina +Dayna +Deidra +Demetria +Dianna +Dolores +Eleanor +Ellen +Emilia +Francesca +Irma +Jane +Janel +Janell +Janie +Jesse +Jordan +Joyce +Juana +Karrie +Kasey +Katy +Kendall +Kera +Kimberley +Kyle +Laurel +Lucy +Luisa +Lupe +Lyndsay +Marci +Mariana +Melisa +Nereida +Pauline +Racheal +Ramona +Raylene +Rena +Rene +Rosario +Sheri +Shirley +Silvia +Sommer +Suzanna +Suzette +Thelma +Tiffanie +Tisha +Tracie +Valarie +Yesenia +Alba +Alina +Andrew +Arcelia +Ariana +Ariane +Aubree +Belen +Billie +Bridgett +Bridgette +Brook +Camilla +Cari +Carlie +Casandra +Cassidy +Chantel +Chelsey +Connie +Corrie +Corrine +Daniel +Delilah +Devin +Edna +Elaina +Elisha +Emilie +Eugenia +Evangelina +Gabrielle +Geraldine +Gladys +Glenda +Gretchen +Hollie +Isela +Ivy +Jade +Jaimie +Jason +Jeannette +Jenni +Jennilee +Joelle +Josefina +Josie +June +Justine +Kasandra +Kay +Kristyn +Ladonna +Larissa +Latanya +Leann +Leanna +Leeann +Lillian +Lisette +Lora +Lucia +Lyndsey +Lynette +Lynnette +Mackenzie +Maggie +Marianne +Marla +Marlena +Marlo +Maryann +Mellisa +Nadine +Noelle +Nydia +Raven +Reyna +Rosie +Rowena +Sadie +Sandy +Shari +Shawn +Shayna +Sierra +Stella +Sydney +Tana +Tawnya +Taylor +Tiana +Tiffiny +Tonia +Vanesa +Vicki +Jennifer +Jessica +Sarah +Stephanie +Melissa +Amanda +Nicole +Ashley +Michelle +Crystal +Christina +Heather +Elizabeth +Amber +Vanessa +Amy +Tiffany +Andrea +Rebecca +Rachel +Kimberly +Megan +Lisa +Danielle +Angela +Erin +Sara +April +Shannon +Erica +Laura +Veronica +Kelly +Jamie +Maria +Katherine +Lindsay +Kristen +Monica +Emily +Samantha +Alicia +Tara +Mary +Lindsey +Cynthia +Christine +Lauren +Valerie +Cassandra +Holly +Kristin +Patricia +Courtney +Natalie +Anna +Jacqueline +Krystal +Julie +Desiree +Brandy +Erika +Kristina +Alexis +Brittany +Monique +Katie +Diana +Victoria +Angelica +Kathryn +Allison +Heidi +Melanie +Nichole +Sabrina +Carrie +Catherine +Sandra +Natasha +Chelsea +Tanya +Theresa +Adrienne +Julia +Kathleen +Teresa +Leslie +Renee +Leah +Misty +Stacey +Tamara +Candice +Tina +Brandi +Shawna +Brenda +Stefanie +Bethany +Katrina +Dawn +Denise +Priscilla +Stacy +Karen +Sheena +Meghan +Regina +Ana +Jaclyn +Leticia +Susan +Yvette +Alison +Brooke +Kara +Sonia +Sophia +Jill +Kayla +Margaret +Jaime +Krista +Marie +Marissa +Nancy +Sylvia +Yvonne +Rachael +Tracy +Deanna +Linda +Melinda +Miranda +Alexandra +Autumn +Briana +Clarissa +Pamela +Adriana +Brianna +Candace +Dana +Felicia +Angelina +Claudia +Deborah +Gina +Raquel +Rebekah +Sonya +Tasha +Wendy +Casey +Kari +Kristi +Lacey +Melody +Alisha +Frances +Janelle +Joanna +Marisa +Robin +Sharon +Summer +Tammy +Adrianna +Anne +Bianca +Bridget +Brittney +Carolyn +Guadalupe +Kristy +Morgan +Virginia +Audrey +Camille +Jenny +Mandy +Olivia +Randi +Roxanne +Barbara +Bernadette +Bonnie +Cecilia +Celeste +Colleen +Diane +Kelli +Kendra +Krystle +Lydia +Shauna +Tabitha +Carla +Debra +Elena +Elisa +Gloria +Jasmine +Karla +Rachelle +Rosanna +Yolanda +Abigail +Alejandra +Alyssa +Angel +Annette +Ashlee +Cassie +Jeanette +Jillian +Naomi +Roberta +Rosa +Aimee +Cara +Cristina +Gabriela +Jodi +Lori +Rochelle +Suzanne +Amelia +Cheryl +Christy +Juanita +Lorena +Michele +Robyn +Alexandria +Aubrey +Brianne +Cindy +Hannah +Janet +Karina +Margarita +Meredith +Molly +Nina +Ruth +Trisha +Ann +Blanca +Caitlin +Carmen +Celia +Corina +Joy +Kate +Martha +Mayra +Paula +Sasha +Toni +Tonya +Antoinette +Celina +Charity +Daisy +Eva +Jolene +Kristine +Rose +Audra +Belinda +Charlotte +Donna +Esther +Irene +Jade +Jenna +Josephine +Kristie +Laurie +Leanne +Marina +Miriam +Sally +Shanna +Shelby +Sherri +Anita +Annie +Beth +Billie +Callie +Chandra +Chelsey +Christi +Claire +Evelyn +Isabel +Jessie +Justine +Katharine +Kira +Lourdes +Maureen +Meagan +Nikki +Rhonda +Rocio +Selina +Serena +Shana +Shelley +Tessa +Alana +Antonia +Brandie +Chrystal +Daniela +Dulce +Francine +Jacquelyn +Joyce +Kellie +Kirsten +Luz +Marquita +Mindy +Shelly +Tera +Whitney +Araceli +Ariana +Carly +Carol +Caroline +Cherie +Connie +Desirae +Destiny +Elaine +Ericka +Hillary +Kasey +Keri +Larissa +Maggie +Marcella +Melina +Savannah +Sheila +Sherry +Susana +Tabatha +Alice +Alma +Angie +Athena +Becky +Breanna +Chantel +Charlene +Christa +Ebony +Edith +Genevieve +Georgina +Grace +Jackie +Janice +Judith +Kelley +Kristal +Lynn +Mallory +Mandi +Marilyn +Marisol +Martina +Paige +Rae +Rhiannon +Rosemary +Staci +Adrian +Alisa +Alissa +Amie +Angelique +Carissa +Cassidy +Dominique +Dora +Francesca +Helen +Jennie +Jodie +Kathy +Lana +Lynette +Marci +Mariah +Michael +Misti +Nora +Reyna +Rita +Roxanna +Shawn +Shayla +Sheri +Tami +Tiffanie +Ariel +Bobbi +Breanne +Brenna +Bridgette +Carolina +Cathy +Cecelia +Christie +Corrina +Daniella +Delia +Dena +Elisabeth +Ellen +Fallon +Hilary +Hollie +Janell +Jayme +Johanna +Kacey +Kassandra +Latoya +Lea +Leandra +Leann +Lillian +Maritza +Norma +Pauline +Pearl +Roxana +Ruby +Selena +Sonja +Spring +Stacie +Tamra +Terri +Tiffani +Trina +Venessa +Wendi +Yesenia +Alanna +Alberta +Ashleigh +Aurora +Beverly +Christian +Corinne +Cristal +Danelle +Dayna +Elsa +Esmeralda +Faith +Francisca +Gabriel +Gabrielle +Ginger +Graciela +Gwendolyn +Janel +Janna +Jenelle +Jenifer +Jeri +Joann +Joanne +Jocelyn +Jody +Jordan +Josefina +Kelsey +Kendall +Lacy +Lara +Laurel +Leia +Lily +Lizette +Lynnette +Marcia +Maribel +Maricela +Marlena +Nadia +Natalia +Patrice +Perla +Reina +Rene +Rosalinda +Salina +Sofia +Tia +Tonia +Trista +Vivian +Yadira +Andria +Arlene +Beatrice +Britney +Candy +Carmelita +Catrina +Charmaine +Cortney +Dara +Deidra +Dolores +Dorothy +Eileen +Fernanda +Geneva +Gillian +Hope +Iris +Irma +Jacklyn +Jami +Janae +Janine +Josie +Juliana +Justina +Karin +Kerrie +Kim +Kimberlee +Kimberley +Leanna +Liliana +Liza +Loretta +Lyndsay +Lyndsey +Magdalena +Marcela +Melisa +Mia +Nadine +Nydia +Rosalie +Roseann +Rosio +Shirley +Taylor +Terra +Tiana +Tracey +Traci +Tricia +Viviana +Abby +Adela +Adrianne +Anastasia +Anissa +Anthony +Benjamin +Betty +Bobbie +Carey +Chanel +Chelsie +Cody +Cori +Danica +Darlene +David +Deana +Deirdre +Dianna +Elise +Elisha +Eliza +Felisha +Gretchen +Hayley +Helena +Holli +Jana +Joan +Juana +Kaleena +Kali +Kami +Karissa +Katy +Kaylene +Kerry +Kisha +Kristyn +Krysten +Laci +Latisha +Lesley +Lisette +Lorraine +Lucinda +Luisana +Maira +Maranda +Mariaelena +Marian +Mariana +Marion +Marsha +Maryann +Mona +Myra +Nicolette +Noemi +Paulina +Petra +Rayna +Rosemarie +Ryan +Sandy +Sarina +Silvia +Sommer +Stephani +Sunny +Susanna +Tamika +Tasheena +Tisha +Ursula +Valarie +Vicki +Viridiana +Jennifer +Jessica +Amanda +Ashley +Sarah +Stephanie +Melissa +Nicole +Michelle +Heather +Amber +Crystal +Elizabeth +Christina +Vanessa +Megan +Andrea +Tiffany +Danielle +Amy +Rachel +Kimberly +Rebecca +Lisa +Erin +Lauren +Jamie +Laura +Angela +Emily +Maria +Katherine +Monica +Samantha +Shannon +Alicia +Sara +Erica +Veronica +Kelly +Lindsey +Brittany +Cassandra +Lindsay +April +Kristen +Christine +Cynthia +Valerie +Tara +Jenna +Kristin +Courtney +Natalie +Anna +Katie +Kristina +Victoria +Mary +Krystal +Patricia +Chelsea +Holly +Julie +Monique +Kathryn +Sheena +Alexis +Katrina +Nichole +Diana +Jacqueline +Candice +Desiree +Allison +Denise +Erika +Leslie +Joanna +Leah +Carrie +Meghan +Priscilla +Leticia +Brandy +Sabrina +Angelica +Renee +Rachael +Tamara +Bethany +Gina +Kara +Stacy +Marissa +Sandra +Brenda +Catherine +Deanna +Melanie +Tracy +Candace +Stacey +Kathleen +Brandi +Julia +Alexandra +Natasha +Brianna +Claudia +Dana +Lacey +Linda +Ana +Kelli +Kendra +Rebekah +Teresa +Tina +Shawna +Tanya +Audrey +Theresa +Regina +Adriana +Cheryl +Heidi +Krista +Miranda +Sylvia +Clarissa +Dawn +Kristy +Pamela +Rachelle +Stefanie +Yvonne +Adrienne +Alyssa +Karen +Roxanne +Whitney +Autumn +Brittney +Elyse +Jaclyn +Olivia +Melinda +Sonya +Sophia +Tasha +Wendy +Barbara +Briana +Sonia +Susan +Brooke +Felicia +Margaret +Robin +Ann +Colleen +Jacquelyn +Jaime +Kristi +Virginia +Jenny +Alisha +Alison +Carmen +Celina +Latoya +Lori +Morgan +Savannah +Sharon +Bianca +Cara +Deborah +Jodi +Raquel +Aimee +Anne +Cristina +Jasmine +Mayra +Meagan +Michele +Misty +Angelina +Ashlee +Cecilia +Guadalupe +Hannah +Janelle +Jill +Kari +Karla +Molly +Nancy +Toni +Angel +Beth +Bonnie +Cassie +Gabriela +Kayla +Marie +Shanna +Yolanda +Abigail +Alexandria +Amelia +Elisa +Jessie +Naomi +Suzanne +Bernadette +Bridget +Carly +Carolyn +Casey +Gloria +Randi +Rosa +Alejandra +Caitlin +Carol +Caroline +Corina +Dominique +Irene +Isabel +Jocelyn +Juanita +Kate +Mandy +Melody +Roberta +Rose +Rosemary +Tabitha +Tammy +Yvette +Brianne +Cindy +Debra +Genevieve +Janet +Johanna +Judith +Kristine +Lydia +Marisol +Martha +Miriam +Staci +Summer +Anita +Annette +Ashleigh +Brandie +Breanna +Carla +Christy +Jolene +Joy +Kelsey +Nina +Pearl +Rochelle +Tonya +Trisha +Adrianna +Alissa +Ariana +Carissa +Destiny +Elise +Evelyn +Grace +Hillary +Jana +Jennie +Jillian +Josephine +Karina +Keri +Larissa +Mallory +Marisa +Marquita +Robyn +Ruth +Sheila +Stacie +Trista +Antoinette +Araceli +Belinda +Blanca +Charlene +Connie +Frances +Jeanette +Kasey +Laurie +Margarita +Shelby +Taylor +Tessa +Adrian +Alma +Angelita +Becky +Britney +Celeste +Celia +Charity +Chelsey +Christa +Elena +Emma +Jami +Jordan +Kellie +Kirsten +Kristie +Leann +Lucia +Marcella +Mindy +Norma +Rita +Serena +Shauna +Traci +Aubrey +Casandra +Daniela +Debbie +Diane +Dulce +Esther +Eva +Francine +Francisca +Justina +Justine +Kristal +Maribel +Marina +Paula +Rhiannon +Rhonda +Ryan +Selina +Terra +Audra +Aurora +Carolina +Charlotte +Christie +Donna +Elisha +Esmeralda +Georgina +Gwendolyn +Helen +Jade +Janae +Judy +Katy +Krystle +Kyla +Lorraine +Lynette +Maricela +Maureen +Meredith +Myra +Nikki +Reyna +Rosanna +Ruby +Sally +Shelly +Sherry +Susana +Tashina +Venessa +Yesenia +Amie +Annie +Antonia +Ashlie +Bridgette +Camille +Catalina +Christi +Cody +Constance +Deidra +Delia +Desirae +Elisabeth +Gabrielle +Jayme +Jeannette +Jodie +Josie +Julianne +Kassandra +Kendall +Kerry +Lara +Liliana +Lynn +Mia +Nadia +Nicolette +Paige +Renae +Rocio +Selena +Shayla +Terri +Tiana +Alisa +Alyson +Andria +Arielle +Bertha +Bobbie +Brenna +Brittani +Chrystal +Daisy +Eileen +Ellen +Hilary +Hollie +Jasmin +Katelyn +Katharine +Kerri +Lacy +Laurel +Lorena +Loretta +Maggie +Marilyn +Nora +Olga +Salina +Shaina +Tabatha +Tiffani +Tiffanie +Tracie +Abby +Ariel +Beatrice +Breanne +Cari +Chandra +Chanel +Chasity +Cherie +Christin +Corinne +Crista +Cristal +Danelle +Davina +Devon +Dianna +Ebony +Elaine +Elsa +Emilia +Ericka +Estrella +Faith +Hayley +Hope +Ivy +Jackie +Jane +Janice +Jeannie +Jena +Jesse +Jody +John +Joyce +Kelley +Kira +Lakisha +Leila +Lenora +Lynda +Magdalena +Mandi +Mariana +Marla +Maya +Mildred +Noelle +Ramona +Rosalinda +Sandy +Sasha +Shari +Shelley +Sheri +Sherri +Sheryl +Sonja +Spring +Taryn +Tera +Tracey +Vivian +Viviana +Adria +Aisha +Alexia +Alice +Angie +Beatriz +Brandon +Cameron +Caryn +Cassidy +Celisse +Chantel +Chelsie +Christal +Christen +Christian +Darcy +Deidre +Dorothy +Eleanor +Esperanza +Fatima +Flor +Gail +Gena +Geneva +Graciela +Haley +Janell +Juliana +Kacie +Karissa +Kim +Kirby +Kristan +Lana +Lea +Leanna +Leigh +Lena +Lucinda +Malinda +Manuela +Mara +Marcia +Melina +Melisa +Michaela +Paloma +Pauline +Reina +Rene +Rosalie +Roxanna +Sierra +Sommer +Stephani +Suzanna +Tess +Tisha +Tricia +Ada +Addie +Adriane +Adrianne +Afton +Alana +Allyson +Analicia +Angelique +Anissa +Athena +Beverly +Britni +Cami +Candy +Cathy +Catrina +Cecelia +Chloe +Consuelo +Cortney +Cory +Dannielle +Darcie +Dina +Dolores +Dora +Dusty +Echo +Elaina +Elvira +Eryn +Francis +Georgia +Griselda +Irma +Jeri +Jesus +Jo +Joelle +Joni +Joseph +Karli +Keli +Kimberley +Kristyn +Latanya +Latricia +Lindy +Liza +Lizette +Luz +Lyndsey +Lynnette +Maricella +Marisela +Maritza +Mercedes +Misti +Mollie +Nadine +Natalia +Noemi +Paola +Paris +Paulette +Penny +Perla +Racheal +Roseanne +Roxann +Shana +Shantel +Sharlene +Shaunna +Shayna +Shirley +Silvia +Sofia +Starr +Stella +Susie +Talia +Tami +Tarah +Teri +Tianna +Trina +Ursula +Valarie +Valencia +William +Jessica +Ashley +Jennifer +Amanda +Stephanie +Nicole +Sarah +Melissa +Amber +Christina +Heather +Megan +Vanessa +Elizabeth +Crystal +Rachel +Michelle +Danielle +Brittany +Andrea +Tiffany +Rebecca +Amy +Samantha +Kimberly +Laura +Erin +Angela +Lauren +Erica +Jamie +Emily +Sara +Maria +Monica +Kelly +Lisa +Katherine +Lindsay +Cassandra +Kristen +Veronica +Alicia +Valerie +Jenna +Krystal +Shannon +Lindsey +Tara +Chelsea +Natalie +Mary +Kathryn +Cynthia +Kristin +Patricia +Courtney +Christine +Kristina +Victoria +April +Desiree +Julie +Angelica +Candice +Erika +Sabrina +Meghan +Monique +Katie +Anna +Holly +Alyssa +Natasha +Leah +Priscilla +Allison +Diana +Joanna +Katrina +Nichole +Brandi +Jacqueline +Alexandra +Stacy +Brandy +Catherine +Denise +Morgan +Adriana +Marissa +Melanie +Teresa +Alexis +Tanya +Brenda +Renee +Tamara +Felicia +Rachael +Ashlee +Caitlin +Gina +Kathleen +Pamela +Sandra +Margaret +Savannah +Brittney +Krista +Sonya +Susan +Bethany +Candace +Deanna +Karen +Sheena +Yvonne +Brooke +Nancy +Stacey +Krystle +Raquel +Carrie +Leslie +Sonia +Theresa +Whitney +Ana +Barbara +Claudia +Heidi +Kara +Brianna +Julia +Lacey +Linda +Meagan +Tina +Tracy +Cecilia +Kristy +Misty +Alisha +Dominique +Jaclyn +Rebekah +Roxanne +Briana +Jaime +Regina +Sophia +Sylvia +Tabitha +Alison +Casey +Christy +Deborah +Mayra +Shawna +Aubrey +Bianca +Molly +Stefanie +Hannah +Jill +Marisela +Melinda +Miranda +Naomi +Ruth +Yvette +Audrey +Cheryl +Clarissa +Gloria +Guadalupe +Kelli +Kendra +Leticia +Autumn +Carla +Carmen +Colleen +Janelle +Sheila +Yolanda +Adrienne +Amelia +Dana +Elisa +Michele +Robin +Wendy +Camille +Jasmine +Lorena +Marie +Summer +Taylor +Aimee +Alejandra +Anne +Breanna +Carolyn +Cristina +Jillian +Kelsey +Latoya +Mallory +Randi +Rochelle +Stacie +Tasha +Virginia +Angelina +Bonnie +Cassie +Celeste +Kari +Kristine +Lori +Marisa +Melody +Mindy +Suzanne +Angel +Annette +Ashleigh +Cara +Carly +Charlotte +Elyse +Esther +Frances +Karina +Kayla +Nikki +Rachelle +Rosa +Alana +Dawn +Eva +Jacquelyn +Josephine +Karla +Lydia +Sharon +Tammy +Ann +Bridget +Caroline +Diane +Donna +Evelyn +Grace +Irene +Jayme +Jenny +Kristi +Olivia +Paula +Trisha +Abigail +Charlene +Christie +Connie +Debra +Hillary +Jessie +Kate +Mandy +Margarita +Norma +Rosemary +Celina +Cindy +Isabel +Jordan +Joy +Juanita +Roberta +Robyn +Taryn +Toni +Alexandria +Antoinette +Carissa +Charity +Daniela +Daniella +Destiny +Dianna +Gabrielle +Hilary +Janet +Jeanette +Kirsten +Maricela +Nina +Shauna +Shelby +Sierra +Terra +Trista +Anita +Cortney +Gabriela +Jami +Jocelyn +Kaitlin +Lacy +Rose +Selina +Serena +Audra +Bobbi +Brianne +Callie +Corina +Elise +Esmeralda +Jolene +Kasey +Kristal +Marisol +Martha +Meredith +Miriam +Perla +Reyna +Rita +Ruby +Selena +Shanna +Shayna +Tonya +Adrianna +Alisa +Alissa +Annie +Antonia +Beth +Brenna +Britney +Ciara +Dorothy +Dulce +Elena +Emma +Francisca +Jade +Janice +Jodi +Johanna +Katy +Kristie +Maggie +Marilyn +Marina +Michaela +Rosanna +Sally +Shelly +Susana +Ariana +Athena +Beatriz +Blanca +Christin +Elaine +Haley +Iris +Jean +Justine +Kellie +Larissa +Luz +Michael +Tiffani +Tori +Viviana +Becky +Bernadette +Christa +Debbie +Dolores +Faith +Jana +Jenifer +Jennie +Juliana +Katharine +Kerri +Latisha +Mackenzie +Marcella +Paige +Rocio +Santana +Shana +Sonja +Tabatha +Tarah +Tashina +Terri +Traci +Trina +Venessa +Ariel +Ashlie +Ashly +Beatrice +Belinda +Billie +Brittani +Celia +Chandra +Chantel +Chelsie +Cherise +Danica +Deidre +Elisabeth +Estrella +Hayley +Hope +Jane +Joseph +Kassie +Katelyn +Kira +Krystina +Latasha +Leann +Leila +Lisette +Lorraine +Lucia +Malissa +Maribel +Maritza +Maureen +Mia +Rhiannon +Rhonda +Rosalinda +Ryan +Sandy +Sasha +Shari +Sherry +Tera +Teri +Tessa +Tierra +Valarie +Yesenia +Alma +Alycia +Araceli +Arlene +Beverly +Blair +Breanne +Britni +Brittni +Casandra +Catalina +Christal +Christen +Danelle +Darlene +Elsa +Francine +Gabriella +Genevieve +Irma +Ivy +James +Jasmin +Julianna +Kali +Kassandra +Keri +Lara +Latanya +Laurie +Leandra +Lena +Lesley +Liliana +Lucinda +Lyndsey +Melina +Nadine +Natalia +Noelle +Reanna +Rosario +Savanna +Shantel +Sherri +Sondra +Tawny +Valentina +Vivian +Aida +Aileen +Alexia +Alice +Ashli +Bobbie +Brandie +Bridgette +Cari +Carolina +Catrina +Cecelia +Chelsey +Cheri +Cheyenne +Christopher +Claire +Clara +Cristal +Danae +Davina +Deanne +Delia +Desirae +Edith +Ellen +Ericka +Fernanda +Graciela +Griselda +Gwendolyn +Helen +Janna +Jazmin +Jena +Joelle +Josie +Judith +Juliann +Kami +Kathy +Kelley +Kendall +Kyle +Leanna +Lillian +Lizette +Lynette +Madeline +Mandi +Mara +Mariah +Mercedes +Nora +Olga +Penny +Roxanna +Salina +Sheri +Suzanna +Talia +Tia +Valeria +Yadira +Adrian +Adriane +Alesha +Allyson +Alysia +Andrew +Angelique +Aubree +Betty +Calandra +Cherie +Christi +Christian +Cierra +Cody +Corinne +Corrine +Dani +Delilah +Dina +Eileen +Elisha +Esperanza +Hollie +Jackie +Jaimie +Janell +Jerilyn +Julissa +Keshia +Kimberlee +Leanne +Lee +Lindy +Lora +Loren +Lourdes +Lupita +Lynnette +Marcela +Marianne +Marlene +Martina +Matthew +Myra +Nadia +Nicki +Noel +Pauline +Pearl +Petra +Rena +Shaina +Sheree +Staci +Stella +Stevie +Tamra +Tiana +Tracey +Tracie +Violet +Abby +Aisha +Alaina +Alyson +Analisa +Anastasia +Andria +Angie +Annamarie +Ashely +Ashlyn +Aurora +Azucena +Brittny +Candy +Carol +Cassidy +Catarina +Cathy +Chantal +Chantell +Chelsee +Chrystal +Constance +Corey +Cori +Corrina +Daisy +Darci +Darcy +David +Dayna +Devon +Eliza +Elvia +Elvira +Evette +Francesca +Gail +Geneva +Gladys +Hailey +Helena +Holli +Jacinda +Jacklyn +Janine +Jeanne +Jesse +Joanne +Joshua +Joyce +Julianne +Justin +Kandice +Katelin +Kaycee +Kenna +Kori +Kristan +Kristyn +Krysta +Laci +Lea +Leeann +Leigh +Linsey +Luisa +Maegan +Malia +Marci +Marla +Marlena +Maya +Melisa +Mellisa +Melodie +Micaela +Micah +Mirna +Misha +Natali +Nicolette +Nikole +Racheal +Ramona +Roseanna +Rosie +Serina +Shelley +Shirley +Siobhan +Stephaine +Stormy +Sydney +Tami +Tasia +Tiffanie +Tonia +Tricia +Vannessa +William +Jessica +Ashley +Amanda +Jennifer +Sarah +Stephanie +Nicole +Melissa +Brittany +Heather +Amber +Danielle +Vanessa +Elizabeth +Megan +Michelle +Crystal +Christina +Rachel +Samantha +Tiffany +Kimberly +Andrea +Amy +Lauren +Sara +Rebecca +Maria +Erica +Angela +Alicia +Laura +Jamie +Emily +Whitney +Katherine +Cassandra +Erin +Lisa +Kelly +Shannon +Veronica +Courtney +Krystal +Monica +Lindsey +Kristen +Victoria +Katie +Natalie +Angelica +Lindsay +Valerie +Anna +Mary +April +Cynthia +Patricia +Julie +Kristina +Allison +Kathryn +Brittney +Christine +Monique +Tara +Felicia +Chelsea +Kristin +Erika +Jenna +Alexandra +Alyssa +Desiree +Diana +Katrina +Brianna +Holly +Natasha +Sandra +Jacqueline +Sabrina +Priscilla +Alexis +Bethany +Krista +Leah +Nichole +Brandi +Denise +Tamara +Gina +Meghan +Melanie +Brooke +Candice +Brenda +Caitlin +Catherine +Kathleen +Hannah +Stacey +Bianca +Mallory +Marissa +Tanya +Ashlee +Kara +Leslie +Rachael +Savannah +Yvette +Kendra +Morgan +Adriana +Teresa +Joanna +Mayra +Heidi +Kristy +Lacey +Rebekah +Stacy +Claudia +Julia +Kayla +Kelsey +Sophia +Alisha +Casey +Jasmine +Melinda +Nancy +Theresa +Ana +Carrie +Dawn +Molly +Raquel +Robin +Angelina +Margaret +Misty +Tina +Briana +Christy +Karen +Bonnie +Deanna +Pamela +Renee +Breanna +Leticia +Marie +Olivia +Sonya +Alison +Krystle +Stefanie +Tracy +Aimee +Audrey +Brandy +Kelli +Shawna +Abigail +Alexandria +Brianne +Candace +Cheryl +Deborah +Dominique +Jacquelyn +Janelle +Linda +Marisa +Robyn +Roxanne +Tasha +Cristina +Guadalupe +Kari +Naomi +Taylor +Yolanda +Adrienne +Ashleigh +Michele +Carmen +Cassie +Cindy +Johanna +Meagan +Miranda +Rachelle +Sierra +Tabitha +Virginia +Colleen +Gloria +Jillian +Jordan +Justine +Sylvia +Alejandra +Barbara +Cecilia +Jaime +Jill +Melody +Randi +Regina +Rochelle +Sasha +Summer +Susan +Wendy +Cara +Carolyn +Clarissa +Dana +Jeanette +Jessie +Lydia +Sonia +Alma +Carla +Celeste +Christa +Daniela +Elyse +Emma +Esther +Frances +Kaylee +Mindy +Sheila +Yvonne +Amelia +Angel +Anita +Christie +Diane +Elena +Francine +Kristi +Lorena +Paula +Ruth +Shauna +Yesenia +Ashlie +Bridget +Carissa +Celina +Cristal +Elisa +Isabel +Jaclyn +Jenny +Kirsten +Lori +Luz +Norma +Selina +Suzanne +Toni +Annette +Autumn +Bernadette +Debra +Eva +Josephine +Kasey +Kelley +Kristine +Rosa +Shana +Sharon +Sheena +Alissa +Anne +Ariel +Blanca +Camille +Desirae +Eliana +Gabrielle +Kate +Katelyn +Margarita +Maribel +Nikki +Trisha +Adrianna +Aubrey +Brenna +Carolina +Caroline +Destiny +Donna +Faith +Grace +Haley +Irene +Iris +Janet +Julianne +Karina +Mandy +Marisol +Martha +Perla +Rita +Rose +Ruby +Shelby +Susana +Taryn +Tonya +Ashly +Audra +Bobbi +Brittani +Charlotte +Ciara +Gabriela +Kassandra +Kimberley +Laurie +Lynette +Madeline +Maricela +Paige +Rhiannon +Serena +Shanna +Traci +Angelita +Annie +Ariana +Becky +Charity +Claire +Cori +Daisy +Gwendolyn +Hayley +Janice +Jasmin +Jocelyn +Karla +Kayleigh +Kira +Kristie +Larissa +Lillian +Miriam +Richelle +Shaina +Sonja +Staci +Alana +Alice +Anastasia +Ann +Ashton +Athena +Britney +Carly +Chandra +Charmayne +Francisca +Jeannette +Jena +Jodi +Jolene +Juanita +Liliana +Lyndsey +Maritza +Nadine +Nina +Rosanna +Shea +Stacie +Alycia +Angelique +Antoinette +Araceli +Britni +Callie +Casandra +Cassondra +Chantel +Chelsey +Cortney +Daniella +Delia +Genevieve +Helen +Hollie +Jaimie +Jana +Julianna +Kellie +Kendall +Lacy +Loretta +Madison +Marisela +Meaghan +Mia +Racheal +Reina +Ryan +Salina +Tabatha +Tashina +Venessa +Violet +Allyson +Alysha +Blair +Bridgette +Brittni +Carina +Carol +Chelsie +Clara +Connie +Constance +Davina +Deidra +Deidre +Dena +Dorothy +Dulce +Esmeralda +Hillary +Jade +Jami +Joni +Juliana +Kaitlin +Kathy +Katy +Keri +Kristal +Krysta +Laurel +Lucinda +Maggie +Mandi +Melina +Mercedes +Michaela +Myra +Natalia +Peggy +Reanna +Rosalinda +Roxana +Savanna +Selena +Shelly +Tana +Tiana +Alexa +Alyson +Amie +Antonia +Bailey +Beth +Cassidy +Chanel +Corina +Deana +Dianna +Ebony +Elaine +Elise +Ellen +Evelyn +Francesca +Gabriella +Graciela +Hope +Jean +Jenifer +Joanne +Judith +Judy +Kaitlyn +Kassie +Katharine +Kortney +Latoya +Lizette +Lucia +Mariah +Marlene +Meredith +Michael +Reyna +Rhonda +Rocio +Rosemary +Roxanna +Sally +Stevie +Sydney +Tami +Tiffani +Tori +Tracey +Tricia +Alaina +Alisa +Annamarie +Bernice +Betsy +Candelaria +Celia +Charlene +Cheyenne +Christian +Christopher +Chrystal +Cierra +Cody +Danica +Dannielle +Dayna +Debbie +Devin +Devon +Dolores +Dora +Eileen +Elisabeth +Fallon +Georgina +Griselda +Hailey +Harmony +Hilary +Irma +Ivy +Joann +Joelle +Joy +Justina +Kali +Kerry +Kimberlee +Krysten +Latasha +Latisha +Leandra +Leanna +Lesley +Mackenzie +Magdalena +Marcella +Marilyn +Marlena +Martina +Maryann +Maureen +Mckenna +Moriah +Nicolette +Nohemi +Rene +Robert +Sade +Santana +Savanah +Shantel +Shayna +Sondra +Stephany +Susanna +Tamra +Tania +Tasheena +Tessa +Tierra +Viviana +Yadira +Alanna +Alex +Alina +Alyse +Analisa +Arielle +Arlene +Ashli +Beatrice +Beatriz +Belinda +Bobbie +Brandie +Breanne +Bridgett +Brittanie +Cari +Chantelle +Cheri +Cherish +Christen +Christi +Christin +Collette +Crista +Daniel +Deanne +Denisse +Dominque +Elisha +Elissa +Eliza +Esperanza +Geneva +Hallie +Helena +Jackie +Jane +Janna +Jaymie +Kaleigh +Karli +Karrie +Kellyn +Keshia +Kylie +Latanya +Lea +Leann +Leanne +Leeann +Leilani +Liberty +Lorraine +Lucy +Lynda +Lynsey +Maira +Mara +Mariana +Marina +Misti +Niki +Nikita +Nikole +Nora +Paloma +Paola +Pauline +Rebeca +Rena +Roberta +Sandy +Sarina +Sharayah +Shayla +Sherrie +Sherry +Sofia +Tahnee +Tamar +Tammy +Tatiana +Terra +Tia +Trista +Valeria +Vicky +Vivian +Adrianne +Alena +Alexandrea +Allie +Amberly +Ami +Annalisa +Aracely +Arianna +Ashely +Aurelia +Breann +Britta +Carley +Carli +Chanelle +Cherie +Christiana +Clare +Consuelo +Corinne +Dalia +Danelle +Darcy +Darlene +Daryl +Dina +Elva +Elvia +Ericka +Estrella +Farrah +Fernanda +Gillian +Ginger +Halley +Hanna +Iva +Janell +Janette +Jayme +Jazmin +Jenelle +Jesica +Jodie +Josefina +Juana +Juliann +Kailey +Kandice +Kati +Kayleen +Keisha +Keli +Kelsy +Kerri +Kori +Lacee +Laci +Lana +Lena +Lily +Linsey +Loren +Lynn +Lynnette +Maegan +Marcela +Marla +Mattie +Melisa +Mercy +Nadia +Nickole +Noelle +Nydia +Olga +Patsy +Rachell +Ramona +Rashelle +Raven +Rikki +Samatha +Sherri +Silvia +Stefani +Suzanna +Teri +Tianna +Trina +Ursula +Jessica +Ashley +Amanda +Jennifer +Sarah +Stephanie +Nicole +Danielle +Brittany +Amber +Heather +Melissa +Samantha +Elizabeth +Megan +Vanessa +Michelle +Christina +Crystal +Tiffany +Rachel +Andrea +Rebecca +Lauren +Amy +Kimberly +Sara +Emily +Erica +Laura +Katherine +Maria +Angela +Alicia +Kayla +Chelsea +Lisa +Alyssa +Jamie +Kelly +Cassandra +Victoria +Courtney +Erin +Alexandra +Lindsey +Shannon +Whitney +Kristen +Veronica +Kathryn +Natalie +Cynthia +Monica +Valerie +Mary +Angelica +Katie +Lindsay +Jenna +Kristina +Erika +Krystal +Jacqueline +Anna +Christine +Allison +Patricia +Brittney +April +Kelsey +Kendra +Tara +Desiree +Brianna +Felicia +Kristin +Marissa +Sabrina +Natasha +Alexis +Holly +Monique +Leah +Bethany +Julie +Briana +Casey +Katrina +Meghan +Hannah +Nichole +Leslie +Priscilla +Caitlin +Denise +Diana +Ana +Julia +Kathleen +Melanie +Savannah +Yvette +Alisha +Brooke +Adriana +Brandi +Krista +Renee +Sandra +Stacy +Brandy +Candice +Teresa +Catherine +Kara +Rachael +Theresa +Alison +Claudia +Morgan +Sasha +Tanya +Candace +Ashlee +Raquel +Shawna +Alexandria +Karina +Mayra +Roxanne +Cecilia +Gina +Jaclyn +Jasmine +Kristi +Lacey +Mallory +Stacey +Heidi +Margaret +Tamara +Breanna +Karen +Leticia +Melinda +Regina +Brenda +Rebekah +Sophia +Tasha +Carly +Dana +Molly +Sylvia +Yolanda +Audrey +Clarissa +Dawn +Kelli +Tabitha +Bianca +Elyse +Janelle +Jordan +Nancy +Angel +Britney +Carmen +Cristina +Deanna +Elisa +Gabriela +Jacquelyn +Joanna +Justine +Linda +Sonia +Taylor +Tracy +Yvonne +Aimee +Christy +Gabrielle +Jeanette +Krystle +Misty +Rochelle +Yesenia +Carrie +Jillian +Jocelyn +Katelyn +Kristy +Meagan +Paige +Rachelle +Annette +Chelsey +Cindy +Destiny +Dominique +Kasey +Kristine +Lydia +Tina +Toni +Virginia +Angelina +Aubrey +Barbara +Brianne +Celina +Paula +Randi +Sharon +Sierra +Sonya +Summer +Charlene +Emma +Gloria +Kari +Olivia +Pamela +Rosa +Susan +Ashleigh +Carissa +Daniela +Lori +Martha +Shauna +Stefanie +Adrianna +Anastasia +Bonnie +Bridget +Camille +Cara +Chantel +Cheryl +Janet +Jenny +Jessie +Trisha +Abigail +Cassie +Celeste +Deborah +Guadalupe +Hillary +Marie +Marisa +Marisela +Miranda +Ruth +Autumn +Diane +Donna +Evelyn +Grace +Isabel +Keri +Kirsten +Latasha +Margarita +Marina +Rosanna +Traci +Tricia +Wendy +Alejandra +Ann +Brittani +Colleen +Johanna +Kaitlin +Marcella +Mindy +Naomi +Shaina +Taryn +Alexa +Anita +Brenna +Caroline +Chelsie +Ciara +Elise +Frances +Haley +Jaime +Jill +Madison +Maricela +Melody +Reyna +Robin +Robyn +Serena +Shelby +Staci +Stacie +Tammy +Adrienne +Anne +Antoinette +Carolina +Charmayne +Christie +Cortney +Daisy +Desirae +Elena +Hope +Josephine +Juanita +Kaitlyn +Katharine +Kristal +Nikki +Rita +Ruby +Sheila +Shelly +Suzanne +Tessa +Alysia +Ariana +Blanca +Carolyn +Christa +Claire +Corina +Esther +Faith +Irene +Jackie +Janae +Karla +Lorraine +Michele +Norma +Rose +Alana +Alma +Daniella +Elisabeth +Ericka +Hayley +Hilary +Jaimie +Jeannette +Jolene +Kassandra +Krystina +Latoya +Laurie +Lorena +Mandy +Mia +Michael +Nina +Savanna +Selina +Sherry +Sydney +Tabatha +Allyson +Amelia +Antonia +Bailey +Carla +Charlotte +Christopher +Clara +Dorothy +Eva +Gabriella +Helen +Judith +Kate +Katy +Kaylee +Marcela +Marlene +Meredith +Noelle +Venessa +Alissa +Alyson +Amie +Ashlie +Bridgette +Connie +Deidra +Deidre +Eileen +Esmeralda +Jana +Janice +Julianna +Kaila +Kyla +Liliana +Lucia +Marisol +Michaela +Natalia +Noel +Perla +Shanna +Shayla +Terra +Tia +Chandra +Chantelle +Cristal +Debra +Francine +Jade +Jazmin +Jenifer +Kelley +Kellie +Kelsie +Kendall +Laurel +Lillian +Maira +Mercedes +Miriam +Rikki +Sarina +Selena +Sheena +Tonya +Vivian +Abby +Anastacia +Audra +Breanne +Brittni +Callie +Carol +Casandra +Celena +Chanelle +Devin +Elaine +Kami +Kerri +Kerry +Kira +Kyle +Kylie +Larissa +Lena +Lynette +Mandi +Mariah +Maribel +Marilyn +Mellissa +Myra +Nikita +Pearl +Rocio +Roxanna +Ryan +Shayna +Sherri +Suzette +Talia +Tashina +Tatum +Tori +Tracey +Valeria +Adilene +Alycia +Ariel +Ashlyn +Ayla +Becky +Bernadette +Britni +Charity +Cheyenne +Chloe +Christian +Chrystal +Cierra +Consuelo +Dayna +Edith +Ellen +Francesca +Francisca +Genevieve +Iris +Irma +Jane +Janel +Jasmin +Jena +Jody +Joy +Kaela +Karissa +Kayleigh +Kori +Krysta +Lara +Lizette +Maggie +Marcia +Maxine +Patrice +Ramona +Reina +Rhonda +Roberta +Rosario +Rosemary +Sadie +Serina +Sofia +Susana +Tera +Tiffani +Trina +Yadira +Adriane +Alanna +Alex +Ali +Alice +Anjelica +Annalisa +Belinda +Candy +Cassidy +Cecelia +Celia +Charmaine +Cherish +Christen +Christi +Cody +Daniel +Daniele +Debbie +Delia +Elyssa +Ivy +Janessa +Jayme +Jessi +Joan +Joann +Jodi +Joshua +Julianne +Justin +Kacie +Kaleigh +Kali +Kandice +Kasandra +Kristan +Kristie +Lea +Leandra +Leigh +Lynda +Lynn +Martina +Meaghan +Micaela +Myriam +Nadia +Nadine +Nora +Paola +Phylicia +Racheal +Rhiannon +Richelle +Robert +Roxana +Shantel +Sheri +Stefani +Tanisha +Terri +Adrianne +Alesha +Alexandrea +Alisa +Alyse +Amalia +Analicia +Angelique +Angelita +Annie +Araceli +Arianna +Ashton +Beatrice +Beatriz +Bernice +Betsy +Blair +Brittnie +Brook +Candis +Carina +Casie +Cassaundra +Cathy +Christin +Corey +Corrina +Cory +Danae +Danica +Danika +Fernanda +Gretchen +Griselda +Hallie +Hanna +Holli +Ivette +Janell +Jesse +Jessika +Josie +Juliana +Justina +Kathy +Katlyn +Keshia +Kristyn +Kyra +Laci +Leann +Leanna +Lyndsay +Maegan +Malia +Maranda +Maryann +Misti +Nicolette +Renae +Scarlett +Shyla +Silvia +Simone +Skye +Stacia +Stephenie +Stormy +Tami +Teri +Valarie +Vanna +Adrian +Afton +Aleasha +Alexia +Amberly +Andrew +Angie +Anissa +Annabelle +Anthony +Arielle +Ashely +Ashli +Aundrea +Aurora +Bertha +Beverly +Billie +Bobbie +Brandon +Bridgett +Brigitte +Brisa +Caitlyn +Cassi +Celestina +Chanel +Cherie +Constance +Cori +Danelle +Danette +Dannielle +Darlene +Davina +Delilah +Dena +Denisse +Dominque +Dora +Doreen +Ebony +Elaina +Emilia +Geraldine +Giovanna +Graciela +Iliana +Jami +Janay +Janette +Jenelle +Julissa +Kailee +Kalie +Karly +Katelin +Keely +Kiersten +Kim +Krysti +Lacy +Larisa +Leeann +Leona +Lia +Linsey +Lisette +Lucy +Madelyn +Malorie +Mara +Mariaelena +Maricella +Maritza +Marquita +Mercy +Nikole +Paulina +Racquel +Rae +Raven +Rosalinda +Rosamaria +Salina +Sally +Saundra +Shana +Shawn +Sheryl +Shirley +Starla +Tania +Tawni +Terrilyn +Tiara +Tiffanie +Tisha +Tosha +Trista +Tyler +William +Jessica +Ashley +Amanda +Sarah +Jennifer +Stephanie +Brittany +Samantha +Nicole +Danielle +Vanessa +Elizabeth +Heather +Amber +Melissa +Tiffany +Michelle +Rachel +Megan +Lauren +Christina +Crystal +Emily +Rebecca +Kimberly +Sara +Courtney +Kayla +Andrea +Maria +Alyssa +Cassandra +Erica +Chelsea +Laura +Alexandra +Katherine +Alicia +Lisa +Victoria +Amy +Angela +Kristen +Kelly +Jamie +Erin +Mary +Christine +Veronica +Katie +Monica +Anna +Brittney +Cynthia +Caitlin +Shannon +Whitney +Lindsey +Angelica +Kelsey +Kristin +Kathryn +Krystal +Brianna +Alexis +Jenna +Natasha +Tara +Jacqueline +Allison +Natalie +Kendra +Kristina +Monique +Julie +Patricia +Desiree +Valerie +Diana +Priscilla +Briana +Erika +Felicia +Hannah +Lindsay +Marissa +April +Bianca +Brandi +Ana +Katrina +Molly +Sabrina +Candice +Nichole +Holly +Morgan +Rachael +Adriana +Alexandria +Brooke +Catherine +Leah +Bethany +Jasmine +Julia +Kathleen +Yvette +Denise +Leticia +Taylor +Ashlee +Gabrielle +Meghan +Mayra +Melanie +Leslie +Sandra +Tamara +Krista +Stacey +Brandy +Deanna +Kara +Karina +Linda +Raquel +Breanna +Brenda +Claudia +Jaclyn +Kaitlin +Lacey +Nancy +Renee +Tanya +Teresa +Aubrey +Casey +Gina +Paige +Chelsey +Clarissa +Dana +Heidi +Jordan +Olivia +Alisha +Angel +Carrie +Kaitlyn +Annette +Katelyn +Margaret +Rebekah +Sasha +Stacy +Theresa +Barbara +Britney +Joanna +Karen +Kelli +Meagan +Regina +Roxanne +Shawna +Sophia +Abigail +Candace +Marie +Marisa +Sierra +Sylvia +Tasha +Ashleigh +Autumn +Jillian +Tracy +Cristina +Emma +Jacquelyn +Janelle +Savannah +Yvonne +Amelia +Audrey +Carissa +Cecilia +Cindy +Haley +Alejandra +Cassie +Gabriela +Yolanda +Angelina +Camille +Dominique +Grace +Jocelyn +Justine +Kristi +Rachelle +Rosa +Virginia +Aimee +Carmen +Colleen +Daisy +Guadalupe +Irene +Karla +Kirsten +Mallory +Pamela +Rochelle +Sharon +Toni +Trisha +Adrianna +Alexa +Carla +Kassandra +Lydia +Melinda +Tina +Wendy +Adrienne +Alma +Celina +Daniela +Donna +Elyse +Jeanette +Juanita +Kari +Maricela +Naomi +Robin +Serena +Sonia +Summer +Tabitha +Destiny +Janet +Krystle +Lorena +Marisela +Martha +Miranda +Shaina +Alison +Alissa +Blanca +Chantel +Ciara +Elisa +Esther +Gabriella +Marcella +Ruth +Shelby +Susan +Susana +Tiffani +Anne +Cheryl +Cortney +Frances +Jessie +Kristine +Madison +Nikki +Paula +Randi +Shanna +Ariana +Beatriz +Caitlyn +Carolyn +Corina +Elaine +Esmeralda +Jaimie +Jenny +Lori +Mackenzie +Nina +Norma +Shayla +Staci +Ariel +Bridget +Bridgette +Carly +Caroline +Celeste +Chelsie +Christy +Dawn +Deborah +Elise +Kaylee +Kristy +Maribel +Misty +Noelle +Reyna +Sheila +Sonya +Alice +Anastasia +Christie +Daniella +Elena +Evelyn +Margarita +Marisol +Sheena +Stacie +Alysha +Antoinette +Brianne +Cheyenne +Cristal +Ellen +Jade +Janice +Josephine +Kasey +Kate +Kellie +Kourtney +Kristie +Latasha +Leandra +Stefanie +Tonya +Tori +Bailey +Celia +Charlene +Charmayne +Diane +Faith +Francisca +Gloria +Jaime +Jill +Jolene +Kyla +Kylie +Mindy +Robyn +Rose +Shea +Taryn +Yesenia +Alaina +Aurora +Belinda +Christa +Cierra +Claire +Desirae +Eileen +Elisha +Ericka +Helen +Isabel +Jasmin +Jenifer +Jessi +Johanna +Joy +Karissa +Katy +Lizette +Lorraine +Maggie +Maritza +Michaela +Miriam +Perla +Shayna +Sydney +Tabatha +Tatiana +Abby +Antonia +Arielle +Arlene +Bernadette +Bonnie +Brenna +Carina +Davina +Elisabeth +Eva +Hillary +Jami +Kendall +Krysta +Kyle +Larissa +Marina +Michele +Rosemary +Roxanna +Shauna +Suzanne +Allyssa +Angelique +Anita +Ann +Breanne +Britni +Brittani +Callie +Cara +Ciera +Debra +Estrella +Felisha +Georgina +Grecia +Jeannette +Judith +Kali +Kylee +Latisha +Leanna +Liliana +Lucia +Lucy +Mandy +Marcia +Mariah +Mercedes +Mia +Nadia +Nicolette +Richelle +Rocio +Rosanna +Ruby +Ryan +Selina +Shana +Shelly +Talia +Tessa +Tiara +Tracey +Traci +Trina +Trista +Alana +Alisa +Allyson +Amie +Anais +Annie +Ashely +Brittny +Carol +Carolina +Charlotte +Chloe +Corinne +David +Deidra +Eden +Flor +Iris +Ivonne +Jackie +Jerrica +Joann +Kathy +Kaylene +Kelley +Krysten +Krystina +Lacy +Leigh +Luz +Lyndsey +Lynette +Lynn +Marilyn +Meredith +Michael +Mikaela +Silvia +Sonja +Tammy +Tamra +Tiffanie +Vivian +Adilene +Adrianne +Alanna +Alycia +Alyse +Ashlyn +Berenice +Breann +Brigitte +Chandra +Chanel +Chantelle +Christian +Chrystal +Clare +Connie +Denisse +Devin +Ebony +Edith +Elaina +Francesca +Francine +Hailey +Iliana +Jazmin +Jodi +Julianna +Julianne +Kailee +Kasandra +Keri +Kira +Kristyn +Lara +Laurie +Lora +Maricruz +Marlene +Maureen +Mellissa +Natalia +Paola +Paulette +Paulina +Rena +Sally +Sherry +Sofia +Terra +Tricia +Vicki +Alexia +Alyson +Angelita +Angie +Arianna +Ashlie +Audra +Ayla +Bree +Brittni +Brook +Brynn +Casandra +Catalina +Cecelia +Charity +Christin +Clara +Corrina +Danica +Delia +Delilah +Destinee +Dulce +Ernestina +Fawn +Genevieve +Graciela +Hilary +Hollie +Irma +Jesse +Joanne +Juliana +Justina +Kaila +Kaleigh +Katharine +Katlyn +Kelsie +Kortney +Kristal +Latoya +Lea +Lillian +Logan +Loren +Loretta +Lynnette +Marcela +Mariana +Maricella +Marla +Melody +Micaela +Noel +Racheal +Raven +Rosalie +Roseanna +Sandy +Serina +Shantel +Stevie +Sunny +Tahnee +Talisa +Tashina +Tianna +Tierra +Tonia +Valeria +Adrian +Alysia +Annalisa +Aracely +Arica +Ashton +Aubree +Belen +Bobbi +Brandie +Bryanna +Candy +Cari +Charmaine +Cherie +Daniel +Dianna +Dolores +Dusty +Elida +Elissa +Fernanda +Geneva +Gwendolyn +Jane +Janette +Jazmine +Jennie +Jessika +Jodie +Kaela +Kailey +Kaley +Kami +Karli +Kassie +Kim +Kyra +Leann +Lilian +Lily +Lizbeth +Lourdes +Lynsey +Mara +Mariel +Maryann +Melina +Melisa +Nellie +Nikita +Nora +Ramona +Reanna +Rhiannon +Roxana +Ryann +Shari +Sheri +Simone +Stacia +Starla +Stefani +Stephany +Susanna +Suzanna +Tawni +Teri +Tia +Ursula +Venessa +Violet +Adria +Alexandrea +Alina +Amberly +Anissa +Annamarie +Arianne +Beatrice +Becky +Bernice +Beverly +Breana +Bridgett +Brittanie +Carmella +Caryn +Catrina +Chantal +Chelsi +Cheri +Christi +Cinthia +Cori +Corinna +Dalia +Darcie +Darcy +Darlene +Daryl +Dawna +Dayna +Deandra +Debbie +Devon +Dorothy +Eliza +Elvia +Elvira +Emilee +Emilia +Eve +Fallon +Georgia +Hanna +Inez +Jaimee +James +Jana +Janae +Janessa +Janna +Jaqueline +Jena +Jesica +Joan +Jody +Josefina +Kala +Karin +Kassi +Katerina +Katlin +Kaylynn +Keisha +Kelsi +Keshia +Kirstin +Lacee +Laci +Ladonna +Lana +Leeann +Leila +Lena +Madeline +Maegan +Malorie +Mandi +Marcie +Margo +Martina +Maxine +Meaghan +Melyssa +Mireya +Monika +Moriah +Nadine +Natosha +Peggy +Pilar +Raelynn +Renae +Rhianna +Rosalinda +Rosalyn +Rosie +Sade +Salina +Samatha +Sarina +Savanah +Savanna +Selena +Shanice +Shyla +Sondra +Stephani +Tana +Tasheena +Tera +Tristan +Tyler +Viridiana +Whitley +Yadira +Jessica +Ashley +Amanda +Brittany +Sarah +Stephanie +Samantha +Nicole +Jennifer +Danielle +Heather +Melissa +Elizabeth +Amber +Megan +Vanessa +Michelle +Christina +Rachel +Tiffany +Lauren +Alyssa +Rebecca +Andrea +Emily +Kayla +Chelsea +Crystal +Courtney +Cassandra +Erica +Maria +Sara +Kimberly +Laura +Katherine +Kelsey +Alicia +Amy +Alexandra +Hannah +Jamie +Victoria +Kristen +Brianna +Monica +Brittney +Lisa +Erin +Angela +Marissa +April +Veronica +Allison +Caitlin +Cynthia +Angelica +Lindsey +Anna +Shannon +Alexis +Erika +Jasmine +Mary +Kathryn +Krystal +Katie +Natalie +Bianca +Kristin +Christine +Jordan +Lindsay +Ana +Desiree +Sabrina +Patricia +Whitney +Monique +Jacqueline +Briana +Kelly +Felicia +Kristina +Jenna +Leah +Sandra +Brooke +Diana +Taylor +Adriana +Tara +Katrina +Priscilla +Candice +Denise +Holly +Julie +Kendra +Melanie +Alexandria +Catherine +Bethany +Mayra +Morgan +Valerie +Breanna +Brenda +Kara +Natasha +Gabrielle +Kaitlyn +Meghan +Karen +Joanna +Nichole +Karina +Kylie +Abigail +Casey +Claudia +Kathleen +Chelsey +Gabriela +Jillian +Savannah +Yvette +Ashlee +Brandi +Julia +Lacey +Leslie +Mercedes +Candace +Katelyn +Krista +Paige +Rachael +Raquel +Audrey +Guadalupe +Brandy +Janelle +Lydia +Sophia +Autumn +Dana +Linda +Martha +Melinda +Molly +Olivia +Roxanne +Tamara +Teresa +Alisha +Cecilia +Heidi +Janet +Justine +Kaitlin +Nancy +Pamela +Angel +Britney +Margaret +Miranda +Stacey +Tanya +Adrianna +Alejandra +Gina +Sierra +Carrie +Clarissa +Deanna +Gloria +Karla +Kassandra +Rosa +Sonia +Sydney +Alison +Kirsten +Madison +Meagan +Naomi +Renee +Sasha +Stacy +Sylvia +Alexa +Emma +Frances +Kristine +Susan +Tabitha +Ashleigh +Cindy +Destiny +Jessie +Rachelle +Rochelle +Yesenia +Ariana +Cristina +Jacquelyn +Marisa +Angelina +Colleen +Kristy +Leticia +Randi +Ruby +Shawna +Taryn +Tasha +Yvonne +Brianne +Carly +Jeanette +Maritza +Sharon +Virginia +Wendy +Alissa +Blanca +Carolina +Casandra +Elisa +Hillary +Jocelyn +Lorena +Michaela +Tina +Bailey +Barbara +Cassie +Celeste +Chelsie +Claire +Daniela +Diane +Elena +Elisabeth +Evelyn +Jazmin +Maribel +Michele +Toni +Yolanda +Adrienne +Ariel +Aubrey +Caitlyn +Carmen +Daniella +Desirae +Elyse +Karissa +Kaylee +Kylee +Liliana +Mariana +Marie +Melody +Nikki +Rebekah +Shelby +Theresa +Tracy +Trisha +Arianna +Bridget +Chantel +Dominique +Isabel +Lizette +Maricela +Misty +Robyn +Roxanna +Adilene +Anne +Arielle +Brenna +Carla +Caroline +Charmayne +Ciara +Donna +Ellen +Esmeralda +Gabriella +Grace +Haley +Margarita +Marina +Marisol +Ruth +Summer +Tammy +Abby +Aimee +Alysha +Amelia +Brittani +Carolyn +Deborah +Hayley +Jade +Kelli +Kristi +Mallory +Shaina +Stevie +Alma +Alysia +Camille +Charmaine +Corina +Debra +Faith +Jenny +Kasey +Kiara +Kyla +Leanna +Lizbeth +Meredith +Miriam +Norma +Robin +Serena +Silvia +Sonya +Alexia +Anais +Anita +Cheyenne +Daisy +Elise +Georgina +Irene +Jaclyn +Jaime +Kari +Keri +Paulina +Perla +Stacie +Alaina +Aurora +Bonnie +Breanne +Carissa +Celina +Christy +Hailey +Jasmin +Jill +Kasandra +Kate +Larissa +Paula +Shanna +Sheila +Stefanie +Tia +Alana +Ann +Bernadette +Bridgette +Brittni +Cecelia +Charlene +Clara +Ericka +Francisca +Iliana +Janette +Jayme +Juanita +Julianne +Kellie +Kira +Latasha +Madeline +Mia +Raven +Regina +Reyna +Rocio +Rose +Roxana +Salina +Sandy +Shantel +Shauna +Sheena +Alice +Alina +Alisa +Alycia +Anastasia +Beatriz +Britany +Brittny +Cara +Cortney +Darlene +Deidra +Dulce +Francine +Graciela +Griselda +Jackie +Jaimie +Jazmine +Johanna +Judith +Kelley +Leann +Marisela +Nadia +Ryan +Savanna +Susana +Talia +Andreina +Antoinette +Araceli +Ashton +Athena +Audra +Bryanna +Chantal +Charity +Charlotte +Christa +Christian +Cierra +Connie +Esther +Fabiola +Hope +Joy +Lucia +Lyndsey +Mackenzie +Meaghan +Nina +Tatiana +Tessa +Tonya +Tori +Traci +Tricia +Alexandrea +Allyson +Alyson +Antonia +Arlene +Ashly +Audriana +Brittanie +Cassidy +Cheryl +Corrina +Delilah +Eva +Hollie +Iris +Irma +Jodi +Kaila +Kendall +Keshia +Kristie +Kyle +Kyra +Latoya +Lillian +Lorraine +Maggie +Marcella +Mckenzie +Michael +Nadine +Noelle +Rikki +Sadie +Sarai +Selina +Suzanne +Viridiana +Alanna +Alecia +Angelita +Beatrice +Berenice +Bobbi +Britni +Brittini +Celia +Chandra +Cherie +Chloe +Ciera +Dawn +Dayna +Devin +Eden +Edna +Elaine +Elissa +Elsa +Fatima +Genevieve +Helen +Jami +Jana +Janessa +Janice +Janna +Josephine +Kacie +Katharine +Kelcie +Kelsie +Kiersten +Lacy +Leandra +Lizeth +Lori +Luisa +Marcela +Mariah +Marlena +Marlene +Micaela +Mindy +Nicolette +Ramona +Renae +Rita +Rosario +Sherri +Simone +Stephany +Tanisha +Tera +Tracey +Valentina +America +Amie +Analisa +Annette +Aracely +Ashlie +Ayla +Belinda +Breann +Bree +Brittaney +Callie +Cari +Carlie +Carol +Chanel +Chelsi +Christen +Christie +Chrystal +Cori +Cristal +Danelle +Danika +Delia +Devon +Dianna +Eileen +Eleanor +Ernestina +Francesca +Genesis +Geneva +Hanna +Isela +Jacklyn +Jaleesa +Jeannette +Jena +Jennie +Jessika +Jesus +Jolene +Jovanna +Joyce +Kala +Kandice +Kassie +Kathy +Latisha +Liana +Luz +Mandy +Mikaela +Noel +Nora +Rhiannon +Rhonda +Riley +Shanelle +Shayna +Sheree +Stefani +Tatum +Trina +Valeria +Venessa +Vivian +Viviana +Whitley +Ahsley +Alba +Ali +Ambar +Angelique +Annie +Aubrie +Audrianna +Betty +Beverly +Brittnie +Cameron +Carina +Cassondra +Chantell +Cherise +Christopher +Consuelo +Corinna +Corinne +Dakota +Danae +Danica +Deana +Deja +Dena +Denisse +Dolores +Elyssa +Estrella +Gladys +Grecia +Imelda +Ivette +Ivy +Janell +Jenni +Julianna +Justin +Justina +Kailee +Katlyn +Katy +Keisha +Kelsea +Kelsi +Kiley +Kirstie +Kourtney +Kristal +Krystle +Lana +Leeann +Lesley +Lily +Lisette +Lourdes +Maira +Makayla +Mara +Maricella +Mariela +Marilyn +Melina +Mona +Monika +Myra +Racheal +Rachell +Rene +Richelle +Rosemarie +Rosemary +Sally +Samatha +Selena +Shayla +Shelley +Suzette +Tabetha +Terra +Tiana +Tierra +Tiffanie +Yadira +Yessenia +Yuriko +Adrian +Alexander +Alia +Alysa +Alyssia +Anahi +Anthony +Ashely +Asia +Aubree +Belen +Breana +Brielle +Brigitte +Brittnay +Brittnee +Chantelle +Cherish +Christin +Destinee +Dora +Dorothy +Ebony +Eliana +Elora +Emilee +Eric +Eugenia +Felisha +Flor +Francis +Frankie +Giovanna +Hilary +Hilda +Ingrid +Janae +Jane +Joann +Joni +Jordyn +Jourdan +Juana +Juliana +Julissa +Kacy +Kaleigh +Kalli +Kalynn +Kandace +Karrie +Katelin +Katheryn +Kati +Kayleigh +Kaylyn +Kerri +Kiera +Kori +Kristyn +Krystin +Krystina +Lacie +Lara +Laurel +Lea +Leila +Lena +Linnea +Lisamarie +Logan +Lucy +Lyndsay +Lynette +Malerie +Marian +Marla +Maya +Mckenna +Moriah +Natalia +Natashia +Nikole +Olga +Paloma +Paola +Patsy +Pauline +Phylicia +Pricilla +Raechel +Rebeca +Rhianna +Rosalia +Rosanna +Serina +Shelly +Sherry +Staci +Stacia +Tabatha +Tania +Tanna +Tashina +Tawni +Terri +Tess +Tiffani +Valarie +Vanna +Violet +Jessica +Ashley +Amanda +Brittany +Stephanie +Samantha +Sarah +Nicole +Jennifer +Elizabeth +Megan +Danielle +Kayla +Melissa +Amber +Alyssa +Lauren +Vanessa +Heather +Emily +Rachel +Michelle +Courtney +Rebecca +Tiffany +Christina +Chelsea +Andrea +Cassandra +Maria +Kimberly +Alexandra +Katherine +Sara +Kelsey +Brianna +Alexis +Crystal +Hannah +Taylor +Laura +Erica +Amy +Victoria +Angela +Anna +Brittney +Briana +Jasmine +Alicia +Caitlin +Erin +Jordan +Jamie +Erika +Shannon +Angelica +Kelly +Lisa +Veronica +Monica +Monique +Mary +Cynthia +Krystal +Lindsey +Natalie +Sabrina +Ana +Kristina +Bianca +Kathryn +Allison +April +Jacqueline +Kristen +Lindsay +Patricia +Ariel +Alexandria +Katie +Desiree +Diana +Shelby +Breanna +Christine +Kristin +Adriana +Marissa +Natasha +Karen +Paige +Katrina +Jenna +Felicia +Brooke +Catherine +Tara +Katelyn +Kendra +Valerie +Whitney +Olivia +Sierra +Brenda +Gabriela +Julie +Leah +Melanie +Morgan +Nichole +Raquel +Brandi +Gabrielle +Kara +Mercedes +Rachael +Sandra +Abigail +Priscilla +Bethany +Julia +Yvette +Alejandra +Ariana +Claudia +Yesenia +Alexa +Miranda +Ashlee +Denise +Holly +Kathleen +Mayra +Kaitlin +Krista +Leslie +Alma +Deanna +Haley +Joanna +Meghan +Kaitlyn +Kylie +Molly +Alisha +Arielle +Gabriella +Gloria +Karina +Tamara +Teresa +Chelsey +Daisy +Kassandra +Linda +Marina +Adrianna +Audrey +Candice +Ciara +Cindy +Heidi +Nancy +Britney +Meagan +Alison +Brandy +Cristina +Marisa +Sydney +Virginia +Candace +Dana +Kirsten +Sasha +Shawna +Clarissa +Jocelyn +Lacey +Melinda +Renee +Robin +Jacquelyn +Savannah +Carmen +Cecilia +Destiny +Justine +Lydia +Margaret +Naomi +Tanya +Angel +Carissa +Daniella +Emma +Jade +Leticia +Lorena +Madison +Stacey +Angelina +Carolina +Casey +Chloe +Jillian +Mariah +Paula +Roxanne +Yvonne +Blanca +Carrie +Celeste +Karla +Kaylee +Rebekah +Regina +Rochelle +Ruby +Sylvia +Tabitha +Bridget +Guadalupe +Hillary +Rosa +Wendy +Amelia +Annette +Brittani +Camille +Carla +Carly +Cassie +Dominique +Janelle +Pamela +Ashleigh +Cortney +Daniela +Grace +Kelsie +Martha +Nikki +Rose +Aimee +Anita +Autumn +Elena +Elisabeth +Gina +Isabel +Janet +Jessie +Kari +Karissa +Kristy +Mallory +Marie +Rachelle +Serena +Sonia +Sophia +Stacy +Anastasia +Anne +Aubrey +Bailey +Barbara +Casandra +Cheyenne +Colleen +Cristal +Desirae +Eva +Mackenzie +Maritza +Michaela +Summer +Tasha +Adrienne +Caitlyn +Jaime +Kelli +Margarita +Misty +Tammy +Alissa +Brenna +Chantel +Dulce +Edith +Hailey +Jaclyn +Kristine +Liliana +Maribel +Marisol +Robyn +Tia +Yolanda +Celina +Cheryl +Claire +Elisa +Irene +Iris +Jeanette +Jordyn +Leandra +Maricela +Melody +Michele +Nadia +Raven +Stefanie +Susan +Taryn +Tessa +Theresa +Tina +Toni +Alexia +Ann +Brianne +Cara +Caroline +Carolyn +Celia +Esther +Hayley +Kayleigh +Lizette +Lucia +Marisela +Mikaela +Reyna +Allyson +Alysha +Annie +Beatriz +Breanne +Christian +Cierra +Elaine +Esmeralda +Evelyn +Griselda +Jenny +Kaila +Kellie +Kirstie +Suzanne +Tori +Arianna +Ashlie +Brianda +Britni +Chelsie +Elise +Ellen +Francisca +Helen +Judith +Kasey +Katelynn +Kendall +Lori +Ruth +Shauna +Tatum +Tonya +Valeria +Anissa +Cecelia +Danitza +Frances +Ivette +Jazmin +Krystle +Lourdes +Luz +Marlene +Mia +Natalia +Nina +Randi +Roberta +Roxanna +Sally +Savanna +Shea +Stevie +Tiana +Tracy +Trisha +Alana +Alycia +Brittni +Callie +Carina +Charmayne +Christa +Christy +Deborah +Devon +Ericka +Irma +Johanna +Kasandra +Kelley +Lyndsey +Michael +Noemi +Paulina +Perla +Reanna +Rosemary +Shaina +Tania +Abby +Alannah +Alice +Alina +Araceli +Bobbie +Brittanie +Carol +Chantelle +Charlene +Ciera +Corina +Danica +Delia +Devin +Faith +Hanna +Jaimie +Jessika +Josephine +Juanita +Kate +Kristie +Kylee +Lorraine +Lynette +Marcella +Mariana +Marilyn +Miriam +Sharon +Sheena +Sheila +Simone +Sonya +Stefani +Suzette +Alysia +Antoinette +Antonia +Ashly +Ashton +Breana +Cassidy +Catalina +Chanel +Charlotte +Diane +Fatima +Hilary +Hope +Janette +Jayme +Juana +Kaleigh +Katy +Kiersten +Kira +Kristi +Lacy +Larissa +Leanna +Lillian +Loren +Luisa +Maggie +Mara +Mckenzie +Micaela +Reina +Rhiannon +Selina +Serina +Shayla +Shelly +Tatiana +Tess +Tierra +Viviana +Alexandrea +Amie +Angie +Anjelica +Asia +Athena +Beth +Bridgette +Davina +Dawn +Elsa +Elvira +Elyse +Eunice +Hilda +Ivonne +Janae +Jasmin +Jena +Jill +Juliana +Justina +Kathy +Katlyn +Kerri +Kiara +Lia +Lily +Lizbeth +Lucero +Madeline +Maya +Mindy +Nora +Norma +Rocio +Sandy +Selene +Shanna +Shayna +Skye +Susanna +Tricia +Vivian +Yadira +Adilene +Aileen +Alanna +Anabel +Anastacia +Angelique +Angelita +Bernadette +Brittny +Chandra +Charmaine +Chelsi +Cody +Connie +Corey +Dayna +Debbie +Denisse +Dianna +Edna +Elisha +Gladys +Grecia +Isamar +Ivy +Jazmine +Jesse +Joann +Kacy +Kali +Keri +Kerry +Lucinda +Makayla +Marcia +Maricruz +Mckenna +Mikayla +Noelle +Sarai +Shantel +Sheridan +Skylar +Staci +Stephenie +Tisha +Trina +Adelina +Adrian +Alaina +Anamaria +Annamarie +Ashlyn +Aubree +Aurora +Belinda +Blair +Chantal +Clara +Cori +Corinne +Cory +Danae +Deidra +Donna +Dorothy +Eileen +Esperanza +Flor +Francesca +Genevieve +Georgina +Giovanna +Iliana +Ivana +Jackie +Jami +Jana +Jane +Janell +Julianna +Julissa +Justin +Kacie +Kailey +Katlin +Kayleen +Keisha +Korina +Kristal +Latasha +Laurel +Leila +Lilliana +Mariela +Martika +Maureen +Monika +Paola +Richelle +Ryan +Salina +Samatha +Sonja +Susana +Tabatha +Tanisha +Teri +Terra +Trista +Violet +Viridiana +Yessenia +Alena +Alisa +Allyse +Annamaria +Arlene +Bertha +Billie +Bobbi +Brandie +Breann +Bree +Brigitte +Brittnee +Brittnie +Bryanna +Casie +Cassondra +Chanelle +Cheyanne +Christiana +Christie +Christin +Corrina +Courtnee +Cristy +Dakota +Damaris +Danika +Debra +Desarae +Destini +Emilia +Fabiola +Fiona +Genesis +Glenda +Gwendolyn +Heaven +Ileana +Itzel +Ivanna +Jennie +Jody +Jolene +Josefina +Joshua +Julianne +Kaci +Kenya +Keshia +Kiley +Kimberley +Kori +Kourtney +Kristyn +Krystin +Kyla +Kyra +Lacie +Lara +Leanne +Leilani +Leona +Lilia +Lizeth +Lupita +Macey +Magdalena +Maira +Mariel +Markie +Marla +Mattie +Meaghan +Meredith +Nataly +Nikole +Olga +Paloma +Patrice +Pricilla +Ramona +Rita +Robert +Rosie +Roxana +Rubi +Shana +Sherri +Sherry +Sidney +Stacie +Stephany +Tashina +Tera +Traci +Adela +Alba +Alesha +Alexander +Alia +Alondra +Alysa +Alyse +Alyssia +Anisa +Annalisa +Ariell +Ashli +Ayla +Beatrice +Berenice +Bernice +Bonnie +Brandee +Britany +Brittaney +Bryana +Cady +Cami +Cherish +Dalia +Daryl +Deana +Demi +Destinee +Dolores +Domonique +Eden +Eliza +Emerald +Estella +Estrella +Fernanda +Francine +Gabriel +Hazel +Holli +Ilse +Isela +Janel +Janessa +Janeth +Janie +Jeanna +Jenelle +Jenessa +Jenifer +Jordin +Jourdan +Joyce +Judy +Kacey +Kaela +Kaitlynn +Kandice +Karlee +Kateri +Katharine +Kaycee +Kaylene +Kayli +Kaylie +Kaylyn +Keely +Kelsi +Kendal +Kimberlee +Kyrene +Latanya +Lauryn +Lavina +Lea +Leeann +Leeza +Leigha +Lesley +Linsey +Loretta +Lucy +Macy +Maegan +Malia +Malorie +Marcela +Maryann +Marysol +Melina +Nicolette +Nikita +Phoebe +Rebeca +Rhonda +Riley +Rosalinda +Shanice +Shawnee +Sinead +Sirena +Stella +Stevi +Sydnee +Talia +Tana +Tasheena +Tawnie +Tayler +Tianna +Tiffani +Vera +Zarina +Ashley +Jessica +Amanda +Samantha +Sarah +Stephanie +Brittany +Elizabeth +Jennifer +Megan +Nicole +Amber +Melissa +Danielle +Kayla +Alyssa +Lauren +Rebecca +Michelle +Rachel +Chelsea +Emily +Shelby +Heather +Andrea +Alexandra +Victoria +Brianna +Vanessa +Christina +Kelsey +Maria +Alexis +Tiffany +Katherine +Courtney +Taylor +Cassandra +Erica +Crystal +Hannah +Laura +Sara +Alicia +Kimberly +Mariah +Marissa +Ariel +Jordan +Angelica +Sabrina +Desiree +Amy +Jasmine +Mary +Brittney +Briana +Veronica +Bianca +Lindsey +Cynthia +Erika +Angela +Anna +Breanna +Jamie +Alexandria +Caitlin +Julia +Kristen +Kathryn +Monica +Brooke +Jacqueline +Kelly +Lisa +Ana +Erin +Jenna +Morgan +Natalie +Brandi +April +Allison +Krystal +Paige +Shannon +Monique +Valerie +Lindsay +Melanie +Katie +Kristina +Adriana +Molly +Olivia +Patricia +Karen +Brenda +Diana +Leah +Natasha +Christine +Karina +Miranda +Leslie +Alexa +Julie +Gabrielle +Ariana +Catherine +Bethany +Kaitlyn +Mayra +Chelsey +Holly +Kristin +Meghan +Mercedes +Deanna +Felicia +Katrina +Raquel +Sandra +Kendra +Sydney +Katelyn +Tara +Alejandra +Audrey +Denise +Gabriela +Abigail +Clarissa +Nancy +Whitney +Haley +Nichole +Ashlee +Kaitlin +Karla +Priscilla +Renee +Joanna +Claudia +Lacey +Rebekah +Sierra +Adrianna +Kara +Gloria +Guadalupe +Madison +Kathleen +Arielle +Maritza +Savannah +Tanya +Cheyenne +Rosa +Blanca +Rachael +Cristina +Emma +Marisa +Martha +Ashleigh +Casey +Daniela +Jade +Krista +Linda +Meagan +Teresa +Wendy +Destiny +Janet +Aimee +Arianna +Bailey +Kylie +Rachelle +Sophia +Yesenia +Candace +Carissa +Celeste +Dominique +Dulce +Faith +Hayley +Kaylee +Leticia +Alisha +Brandy +Britney +Carly +Ciara +Kelli +Kirsten +Marina +Shawna +Theresa +Yolanda +Candice +Dana +Eva +Gabriella +Jeanette +Tabitha +Tia +Angel +Anne +Bridget +Carolina +Grace +Jazmin +Jocelyn +Justine +Margaret +Marisol +Virginia +Yvette +Alison +Autumn +Carmen +Cecilia +Desirae +Karissa +Kelsie +Marie +Trisha +Amelia +Angelina +Isabel +Kristine +Lorena +Maricela +Ruth +Stacey +Alma +Chloe +Cindy +Claire +Jaclyn +Rochelle +Tamara +Anastasia +Deborah +Gina +Hailey +Kylee +Liliana +Randi +Stacy +Tania +Aubrey +Celina +Diane +Evelyn +Heidi +Hillary +Jenny +Jillian +Judith +Kassandra +Lydia +Mackenzie +Paula +Stevie +Tasha +Tessa +Toni +Caitlyn +Camille +Chantel +Daisy +Elena +Elisa +Jessie +Kyla +Mia +Regina +Ruby +Summer +Tracy +Yvonne +Alexia +Annette +Caroline +Chanel +Devon +Iris +Jacquelyn +Jaime +Jazmine +Mallory +Miriam +Nikki +Serena +Shayla +Sylvia +Tayler +Valeria +Vivian +Barbara +Beatriz +Carla +Chelsie +Christian +Corina +Hilary +Janelle +Juanita +Kelsi +Lizette +Marisela +Mckenzie +Naomi +Natalia +Shea +Viviana +Adilene +Anjelica +Cassie +Christa +Christy +Devan +Esmeralda +Esther +Iesha +Jordyn +Kellie +Kira +Kristi +Luz +Mariana +Marlene +Robyn +Roxanne +Sasha +Susan +Viridiana +Alysia +Cortney +Devin +Irene +Johanna +Kelley +Larissa +Luisa +Madeline +Nina +Perla +Savanna +Sharon +Shayna +Tina +Tori +Zoe +Alice +Brianne +Brittani +Carolyn +Charmayne +Cheryl +Cierra +Dakota +Demi +Iliana +Kaila +Leanna +Melinda +Michaela +Roxanna +Sonia +Talia +Tonya +Yessenia +Alanna +Alexandrea +Alissa +Ann +Antoinette +Arlene +Bonnie +Breanne +Bryanna +Cara +Carrie +Cassidy +Daniella +Elyse +Ericka +Fernanda +Gladys +Ivette +Kasey +Kristy +Lizbeth +Lucero +Maira +Melody +Micaela +Nadia +Paulina +Raven +Reyna +Rocio +Rose +Sonya +Tiana +Adrienne +Andreina +Anita +Annie +Ayla +Beatrice +Breana +Danica +Elissa +Eliza +Frances +Griselda +Hanna +Hope +Jana +Jaqueline +Jasmin +Julianna +Kacey +Kaley +Kiara +Kristie +Laurie +Lillian +Marilyn +Michele +Mikayla +Misty +Nicolette +Noemi +Norma +Roberta +Robin +Sandy +Stefanie +Tanisha +Taryn +Allyson +Anabel +Angelique +Antonia +Araceli +Bernadette +Cayla +Celia +Charlene +Clara +Cristal +Delia +Elaine +Elise +Francisca +Genevieve +Haleigh +Ileana +Kaleigh +Kendall +Lacy +Margarita +Maribel +Marla +Noel +Nora +Ramona +Rikki +Roxana +Serina +Susana +Tianna +Tyler +Allie +Alysha +Anissa +Asia +Belen +Brenna +Bridgette +Corinne +Davina +Denisse +Elisabeth +Ellen +Flor +Irma +Janessa +Jeannette +Josephine +Katelynn +Kathy +Katy +Lilia +Lily +Lori +Makayla +Olga +Paola +Sadie +Sage +Selena +Shaina +Shana +Shanna +Shawnee +Silvia +Tammy +Tatiana +Tatum +Tricia +Yadira +Aileen +Alana +Alycia +Beverly +Brook +Carina +Catalina +Cecelia +Celena +Chantal +Chantelle +Ciera +Corrina +Dawn +Delaney +Destini +Donna +Edna +Estefania +Francine +Genesis +Gwendolyn +Helen +Janell +Janette +Janice +Jolene +Justina +Kali +Kari +Karli +Katelin +Katlyn +Kirstie +Kourtney +Kristyn +Lara +Latisha +Latoya +Leanne +Lisette +Lizeth +Loren +Lucia +Marcella +Martina +Mikaela +Myra +Nikole +Paloma +Shantel +Sheena +Sidney +Simone +Staci +Stephany +Terra +Tess +Traci +Alannah +Alessandra +Ashlyn +Ashton +Audra +Beth +Betsy +Brittni +Brittnie +Callie +Chandra +Charlotte +Chelsy +Cherie +Christie +Cody +Dayna +Deidre +Demetria +Destinee +Destiney +Dolores +Edith +Eileen +Elisha +Emilee +Felisha +Graciela +Isabella +Ivana +Ivonne +Jackie +Jami +Jane +Jayme +Jenifer +Joann +Jordon +Joyce +Juana +Kala +Kathrine +Kayleigh +Kaylie +Keisha +Keri +Kerry +Keshia +Kortney +Kristal +Leana +Lena +Lesley +Logan +Lourdes +Marlena +Martika +Maya +Mckenna +Moriah +Noelle +Pamela +Reina +Rhiannon +Salina +Sally +Sarina +Selina +Shelly +Stefani +Tiara +Tiffani +Valentina +Yazmin +Acacia +Alina +Alyssia +Analisa +Andie +Angie +Aracely +Arlette +Ashlie +Aurelia +Bailee +Berenice +Bertha +Bree +Britany +Brittnee +Carley +Carlie +Casandra +Cassondra +Catrina +Chasity +Cherish +Chrystal +Cinthia +Clarisa +Codi +Colleen +Connie +Corie +Corrine +Dani +Daniel +Debra +Devyn +Dora +Elia +Ellie +Elyssa +Ernestina +Esperanza +Fabiola +Harley +Haylee +Jennie +Jorden +Jose +Joy +Kaci +Kailey +Kalyn +Karlee +Kassie +Katarina +Kate +Keely +Kelci +Kori +Krystle +Laurel +Lilliana +Lissette +Lorraine +Lynette +Macie +Macy +Maggie +Mara +Meaghan +Mindy +Nichelle +Nohely +Paris +Rebeccah +Riley +Rosemarie +Shari +Shauna +Shelley +Sienna +Skylar +Sofia +Stacie +Suzanne +Tashina +Tawny +Teri +Tracie +Trinity +Violet +Yessica +Ada +Alaina +Alethea +Alex +Allyssa +Anastacia +Andria +Annalisa +Ariane +Ashely +Ashly +Ashlynn +Astrid +Athena +Aubrie +Ayana +Breann +Brianda +Brigette +Brisa +Brissa +Britnee +Britni +Britny +Brittini +Brittny +Carey +Carol +Celene +Chanda +Charity +Cherise +Christopher +Collette +Dalia +Damaris +Danitza +David +Deidra +Desire +Diamond +Domonique +Dylan +Elora +Estella +Francesca +Francis +Frankie +Georgina +Gracie +Grecia +Hali +Isamar +Isela +Ivy +Jacy +Janna +Jasmyn +Jayde +Jayne +Jeanine +Jessa +Jessi +Jewel +Jill +Joselyn +Kaitlynn +Kalie +Kandice +Karyn +Katharine +Kaycee +Kaylene +Kesha +Kiersten +Kiley +Kirstin +Krysta +Kyra +Lacee +Leandra +Leann +Leilani +Liana +Lilian +Loretta +Lucinda +Lynda +Lyndsey +Maegan +Magdalena +Mandy +Marcela +Marcia +Mariela +Marlee +Melina +Melisa +Meredith +Miriah +Mollie +Nayeli +Nia +Nisa +Pearl +Petra +Phoebe +Phylicia +Pilar +Precious +Renae +Rene +Rita +Rosalinda +Rosario +Sarai +Shanae +Shanda +Shay +Shelbi +Sheryl +Skye +Skyler +Sonja +Stacia +Stephenie +Stormy +Suzanna +Suzette +Tabatha +Tasheena +Tierney +Tierra +Trina +Valarie +Vannessa +Vianey +Jessica +Ashley +Samantha +Amanda +Sarah +Stephanie +Brittany +Chelsea +Danielle +Elizabeth +Jennifer +Megan +Nicole +Taylor +Emily +Maria +Melissa +Kayla +Rachel +Lauren +Rebecca +Amber +Alexis +Alyssa +Victoria +Michelle +Brianna +Shelby +Vanessa +Andrea +Cassandra +Kelsey +Alexandra +Christina +Courtney +Heather +Angelica +Tiffany +Marissa +Briana +Kimberly +Sara +Hannah +Katherine +Laura +Anna +Jasmine +Jordan +Erika +Crystal +Mariah +Erica +Alicia +Monica +Alexandria +Cynthia +Haley +Kaitlyn +Mary +Sabrina +Veronica +Breanna +Morgan +Natalie +Kelly +Brittney +Shannon +Alejandra +Desiree +Jacqueline +Amy +Brooke +Erin +Ana +Paige +Caitlin +Adriana +Gabriela +Monique +Lindsey +Angela +Karen +Bianca +Allison +Julia +Katie +Katelyn +Diana +Jamie +Leah +Ariel +Chelsey +Kathryn +Lisa +Miranda +Olivia +Sierra +Kristen +Jenna +Katrina +Patricia +Yesenia +Julie +Natasha +Brenda +Krystal +Lindsay +Holly +Kaitlin +Gabrielle +Kristin +Karina +April +Abigail +Brandi +Kristina +Felicia +Catherine +Ashlee +Christine +Krista +Madison +Cheyenne +Claudia +Raquel +Destiny +Jocelyn +Kara +Kendra +Mackenzie +Rebekah +Savannah +Gabriella +Sandra +Karla +Melanie +Priscilla +Whitney +Denise +Emma +Guadalupe +Isabel +Molly +Tara +Clarissa +Jazmin +Mayra +Yvette +Meghan +Ariana +Kaylee +Sydney +Valeria +Hailey +Nancy +Sophia +Alexa +Hillary +Joanna +Renee +Valerie +Gloria +Janet +Mercedes +Nichole +Caitlyn +Cristina +Dominique +Grace +Kassandra +Marina +Rachael +Daniela +Deanna +Hayley +Adrianna +Bethany +Casey +Leslie +Tabitha +Carmen +Carolina +Ruby +Bailey +Rosa +Tanya +Alma +Autumn +Cindy +Leticia +Margaret +Nicolette +Alisha +Angel +Brandy +Chloe +Heidi +Janelle +Kathleen +Mariela +Maritza +Teresa +Carly +Evelyn +Kylie +Virginia +Angelina +Aubrey +Ciara +Daisy +Dulce +Justine +Marisa +Marisol +Shawna +Britney +Candace +Edith +Alissa +Larissa +Linda +Reyna +Theresa +Arianna +Celeste +Chelsie +Christa +Dana +Elisa +Kirsten +Lacey +Martha +Michaela +Naomi +Ruth +Sonia +Susan +Allyson +Carissa +Celina +Esmeralda +Jacquelyn +Jade +Margarita +Miriam +Rochelle +Trisha +Yvonne +Blanca +Colleen +Daniella +Devon +Eva +Gina +Kelli +Madeline +Selina +Tamara +Toni +Zoe +Bridget +Camille +Cassie +Elena +Jasmin +Jessie +Kelsie +Melina +Melinda +Rachelle +Tasha +Vivian +Amelia +Anastasia +Candice +Cecilia +Chantel +Kristi +Kylee +Liliana +Marisela +Melody +Regina +Salina +Savanna +Taryn +Alison +Brianda +Cierra +Jordyn +Meagan +Nikki +Summer +Tessa +Tori +Tyler +Bryanna +Cara +Claire +Corina +Danitza +Elise +Jillian +Karissa +Kellie +Lydia +Maricela +Perla +Tiana +Wendy +Arlene +Ashleigh +Audrey +Barbara +Beatriz +Brittani +Judith +Maira +Marie +Natalia +Rubi +Sasha +Sheila +Talia +Tayler +Yolanda +Adilene +Angelita +Anne +Callie +Cassidy +Devin +Faith +Jaclyn +Kelley +Kyla +Lorena +Marlene +Mia +Paula +Randi +Rosemary +Serena +Tatiana +Araceli +Carla +Carolyn +Cheyanne +Cristal +Dawn +Hanna +Ivette +Paola +Paulina +Rhiannon +Roxanne +Shanice +Sharon +Shayla +Viviana +Yadira +Yessenia +Adrienne +Aimee +Anissa +Anita +Antoinette +Antonia +Arielle +Athena +Bernadette +Dallas +Dianna +Flor +Jaime +Kali +Kayleigh +Lucia +Maribel +Mikayla +Misty +Pamela +Robyn +Shelbi +Stacey +Stephany +Tatum +Tina +Aileen +Angelique +Annette +Ashlie +Ashlyn +Brandie +Brianne +Cortney +Deborah +Desirae +Diane +Donna +Ericka +Esther +Francisca +Georgina +Iris +Jeanette +Johanna +Julianna +Kasey +Kiara +Kristy +Lizette +Luz +Mckenna +Mckenzie +Nadia +Nina +Norma +Raven +Robin +Sarai +Selene +Skylar +Sylvia +Alina +Breana +Brenna +Carol +Casandra +Chantal +Connie +Dayna +Delia +Destinee +Elisabeth +Ellen +Frances +Hope +Jami +Janae +Jane +Josephine +Juliana +Kacie +Kaila +Kailey +Kate +Katelynn +Kelcie +Kira +Kristine +Lacy +Leanna +Lillian +Lizbeth +Lizeth +Mallory +Maya +Sadie +Shaina +Tia +Tracy +Alana +Alexandrea +Alexus +Alysha +Alysia +Anjelica +Aracely +Belen +Berenice +Breann +Bridgette +Carina +Catalina +Christian +Christy +Dakota +Danica +Davina +Denisse +Diamond +Dolores +Fernanda +Hilary +Iesha +Isabella +Jazmine +Jenny +Kendall +Kenia +Kyra +Laurel +Lea +Lourdes +Lucero +Mariana +Micaela +Mikaela +Moriah +Noelle +Rae +Rocio +Shea +Shelbie +Sofia +Stevie +Tania +Tanisha +Tianna +Tiffani +Tonya +Alanna +Alex +Alondra +Ayla +Breanne +Bria +Brittni +Caroline +Carrie +Cecelia +Charlotte +Cheryl +Devyn +Elaine +Elvia +Emilee +Francesca +Haylee +Janessa +Jayme +Jesse +Jolene +Juana +Julianne +Justina +Kari +Katarina +Kiana +Kiley +Kristyn +Lynette +Marcela +Marilyn +Meredith +Mireya +Nallely +Noemi +Rebeca +Renae +Serina +Shayna +Silvia +Stacie +Stacy +Stefanie +Susana +Suzanne +Alaina +Alejandrina +Alice +Alisa +Alix +Britany +Brooklyn +Candy +Delaney +Genesis +Giovanna +Gladys +Grecia +Griselda +Haleigh +Irma +Ivonne +Janette +Kaley +Karli +Katelin +Katharine +Kathy +Katlyn +Katy +Kelsea +Kelsi +Kerri +Kourtney +Kristian +Krysta +La +Latisha +Liana +Lily +Logan +Lorraine +Lucy +Macy +Maggie +Makayla +Marcella +Michele +Mollie +Nayeli +Olga +Rikki +Riley +Rosalinda +Roxanna +Shantel +Skyler +Sophie +Viridiana +Yasmin +Zaira +Alexia +Alycia +Alyson +Analisa +Ashly +Astrid +Audriana +Beatrice +Bertha +Bianka +Bonnie +Brea +Breeana +Brittnee +Bryana +Cassaundra +Cayla +Ceara +Chandra +Chanel +Cherish +Clara +Colby +Consuelo +Darian +Debra +Delilah +Demi +Destini +Devan +Dora +Doris +Drew +Elsa +Emerald +Estrella +Frankie +Genevieve +Georgia +Irene +Jenifer +Joselyn +Josie +Julissa +Kacey +Kailee +Kalyn +Kaycee +Kaylie +Kaylynn +Kenya +Kori +Leandra +Lena +Lilia +Lupita +Lyndsey +Macie +Marlena +Nikita +Nora +Paris +Pearl +Rose +Sage +Sarina +Sedona +Sonya +Stefani +Stella +Stormy +Tashina +Trina +Valarie +Valentina +Amaris +Anais +Analicia +Andria +Angie +Ann +Ashely +Ashton +Asia +Aubrie +Aurelia +Aurora +Azucena +Billie +Bree +Brittanie +Celia +Charlene +Charmaine +Chelsi +Cherie +Clarisa +Cori +Corinne +Corrina +Damaris +Debbie +Deidra +Ebony +Edna +Eileen +Elaina +Eleanor +Eliza +Eloisa +Emilie +Fatima +Gillian +Graciela +Gretchen +Hailee +Helen +Hollie +Iliana +Isamar +Janeth +Janice +Jessika +Jodi +Jordin +Joyce +Kacy +Kaela +Kalee +Kaleigh +Kami +Kandice +Karly +Katerina +Kathrine +Katia +Kaylyn +Keisha +Kelcey +Kiera +Kristal +Lana +Lara +Leilani +Lianna +Lisette +Loren +Lori +Lynn +Madeleine +Maricella +Marla +Marta +Maxine +Meaghan +Micah +Michael +Mirna +Ofelia +Paloma +Reanna +Rhianna +Richelle +Rita +Roxana +Rylee +Sally +Sandy +Sariah +Selena +Shana +Shauna +Sheena +Shelly +Sherry +Sidney +Simone +Siobhan +Staci +Tanna +Terra +Thalia +Tiara +Traci +Vanesa +Yanet +Zulema +Abril +Addison +Alexys +Alysa +Amalia +Amberly +America +Anabel +Aubree +Austin +Avery +Bailee +Bernice +Bobbi +Brieanna +Carley +Carli +Charity +Charmayne +Chasity +Chelsy +Chenoa +Christen +Christiana +Ciarra +Ciera +Cody +Colette +Cory +Dalia +Danae +Deana +Deidre +Destany +Dominque +Dorothy +Eden +Elia +Elisha +Estella +Felisha +Gardenia +Hallie +Harley +Ivana +Janel +Janell +Jaqueline +Jasmyne +Jeannette +Jena +Jenessa +Jennie +Joann +Jovana +Jovanna +Juanita +Juliette +Kaelyn +Kalie +Keshia +Kiersten +Kimberley +Kristie +Kyle +Leana +Leanne +Leigh +Lia +Lynda +Maranda +Marcia +Margret +Mariel +Marley +Martina +Maryann +Marysol +Merissa +Mindy +Myra +Nathalie +Noel +Nohemi +Nydia +Octavia +Paulette +Payton +Phylicia +Ramona +Reba +Reina +Rene +Roberta +Salena +Sarahi +Shanelle +Shante +Shawnee +Shaylene +Shelley +Sheridan +Shirley +Sonja +Sonora +Suzanna +Tamika +Tammy +Thelma +Tiffanie +Tracey +Tyra +Yazmin +Jessica +Ashley +Samantha +Amanda +Sarah +Taylor +Brittany +Alexis +Elizabeth +Emily +Stephanie +Jennifer +Nicole +Megan +Alyssa +Brianna +Kayla +Melissa +Danielle +Rachel +Victoria +Alexandra +Amber +Maria +Rebecca +Hannah +Lauren +Michelle +Andrea +Jasmine +Vanessa +Chelsea +Kelsey +Shelby +Courtney +Kimberly +Christina +Marissa +Cassandra +Sara +Jordan +Katherine +Angelica +Heather +Tiffany +Briana +Alexandria +Haley +Crystal +Mary +Morgan +Cynthia +Laura +Sabrina +Alicia +Shannon +Anna +Erika +Breanna +Caitlin +Erica +Jamie +Kaitlyn +Brooke +Natalie +Kassandra +Ana +Gabriela +Paige +Savannah +Angela +Bianca +Karen +Veronica +Amy +Erin +Mariah +Monica +Katie +Olivia +Brenda +Madison +Sierra +Jenna +Alejandra +Alexa +Allison +Diana +Jacqueline +Julia +Cheyenne +Adriana +Kristen +Lisa +Desiree +Gabrielle +Karina +Kelly +Miranda +Brittney +Monique +Ariana +Lindsay +April +Katelyn +Abigail +Kathryn +Valerie +Lindsey +Patricia +Ariel +Catherine +Jocelyn +Priscilla +Bailey +Denise +Leslie +Jazmin +Valeria +Melanie +Yesenia +Kaitlin +Sandra +Sydney +Katrina +Kristina +Krystal +Emma +Mercedes +Cristina +Hailey +Mayra +Gabriella +Karla +Clarissa +Daniela +Dominique +Holly +Rachael +Ashlee +Guadalupe +Isabel +Kathleen +Mackenzie +Meghan +Brandi +Chelsey +Destiny +Jasmin +Molly +Adrianna +Alma +Claudia +Tanya +Yvette +Anissa +Kendra +Tori +Hayley +Raquel +Ciara +Felicia +Kristin +Natasha +Rebekah +Tara +Jordyn +Leah +Autumn +Caitlyn +Cecilia +Jade +Alisha +Angelina +Celina +Christine +Marisa +Nancy +Bethany +Joanna +Kara +Krista +Marina +Summer +Arianna +Audrey +Whitney +Alison +Kaylee +Cindy +Liliana +Rosa +Casey +Michaela +Angel +Ashleigh +Aubrey +Carly +Janet +Julie +Justine +Kylie +Marisol +Maritza +Meagan +Miriam +Shea +Blanca +Brandy +Fernanda +Jessie +Tessa +Camille +Carmen +Chloe +Claire +Daisy +Dana +Dulce +Esmeralda +Janelle +Selena +Sylvia +Teresa +Elisa +Kelli +Kirsten +Margaret +Nichole +Renee +Savanna +Taryn +Anastasia +Cierra +Daniella +Gloria +Kendall +Leticia +Nicolette +Tabitha +Theresa +Alexia +Carissa +Carolina +Cassidy +Evelyn +Gina +Itzel +Jaclyn +Jillian +Kylee +Linda +Perla +Aimee +Cara +Carolyn +Grace +Isabella +Larissa +Madeline +Maribel +Mckenzie +Nikki +Susan +Toni +Yaritza +Breana +Celeste +Deanna +Heidi +Mariela +Ruby +Tamara +Alissa +Ashlyn +Candace +Elena +Jazmine +Mikayla +Rachelle +Reyna +Rochelle +Sophia +Tyler +Wendy +Kellie +Mallory +Sonia +Candice +Chelsie +Desirae +Eva +Kyla +Lacey +Lydia +Margarita +Mia +Moriah +Tiana +Virginia +Adilene +Anahi +Carla +Caroline +Christian +Devon +Giselle +Hope +Irene +Jeanette +Lea +Lizbeth +Mariana +Marisela +Raven +Serena +Stacey +Stephany +Tania +Yolanda +Zoe +Angelique +Araceli +Bridget +Estrella +Juanita +Judith +Katelynn +Kiana +Lucero +Makayla +Martha +Melinda +Paola +Paula +Riley +Rocio +Rose +Tia +Adrienne +Brianda +Dallas +Donna +Kelley +Kiara +Lucia +Maya +Naomi +Randi +Robyn +Sadie +Sasha +Shaina +Shayla +Stacie +Tatiana +Tatum +Yvonne +Alexus +Cassie +Christy +Corina +Cristal +Dakota +Deborah +Elise +Haylee +Karissa +Lillian +Mckenna +Nina +Norma +Selina +Sonya +Susana +Tanisha +Thalia +Tierra +Viviana +Allyson +Alysia +Anita +Chandler +Ciera +Colleen +Danica +Diamond +Frances +Hillary +Jenny +Johanna +Kaila +Kasey +Katarina +Kelsie +Kira +Lorena +Mikaela +Paulina +Rebeca +Stacy +Tasha +Tayler +Vivian +Alisa +Anjelica +Anne +Ashton +Brenna +Brianne +Brittani +Casandra +Catalina +Deyanira +Ellen +Ericka +Esther +Genesis +Graciela +Griselda +Jaime +Joselyn +Kailey +Kaitlynn +Kiersten +Kristi +Kristine +Leanna +Lizette +Marlee +Marlene +Noemi +Nora +Regina +Robin +Roxanne +Salina +Sandy +Shawna +Talia +Alaina +Alysha +Alyson +Annette +Antonia +Arielle +Barbara +Bernadette +Bryanna +Carina +Celia +Chantel +Cortney +Darian +Demi +Elisabeth +Francisca +Iris +Josephine +Kari +Katlyn +Kelsea +Kiley +Lorraine +Luz +Marcela +Maricela +Melody +Rikki +Rosemary +Roxanna +Selene +Sidney +Staci +Suzanne +Trisha +Yessenia +Abby +Alex +Alexandrea +Ann +Annie +Breanne +Britney +Cecelia +Chanel +Charlene +Corinne +Dawn +Destinee +Devin +Dorothy +Emilee +Faith +Hanna +Helen +Ivette +Jacquelyn +Jaimie +Jane +Jayme +Jovanna +Kasandra +Kaylin +Kelsi +Krysta +Leanne +Lourdes +Marcella +Marie +Ruth +Shanice +Sharon +Shayna +Silvia +Skye +Stevie +Tiffani +Tina +Yadira +Alysa +Amelia +Asia +Athena +Beatrice +Brittni +Bryana +Carol +Dora +Edith +Gladys +Grecia +Halie +Ivy +Janice +Jessika +Kaleigh +Kalyn +Karly +Katy +Kristy +Leandra +Liana +Mara +Mariel +Marilyn +Michele +Olga +Payton +Rubi +Sally +Sheila +Sofia +Tawny +Tess +Tracy +Viridiana +Yasmin +Aileen +Alana +Alannah +Anabel +Arlene +Ashly +Belen +Berenice +Charity +Charmayne +Cheyanne +Clara +Coraima +Danitza +Davina +Destini +Diane +Dominque +Elaina +Hali +Harley +Janette +Juliana +Julianne +Kacey +Kalee +Kali +Kaylene +Kaylyn +Kimberlee +Kirstin +Kristal +La +Logan +Lucy +Lynette +Lynn +Maira +Marlena +Melisa +Micaela +Misty +Noelle +Paloma +Pamela +Peyton +Shelbie +Sheridan +Skyler +Suzette +Tashina +Tianna +Tonya +Trina +Yajaira +Adrian +Aisha +Alayna +Analisa +Angelita +Antoinette +Ashlie +Ashlynn +Aubree +Azucena +Bailee +Bonnie +Brandie +Bria +Bridgette +Brittanie +Chantell +Charlotte +Chasity +Christa +Cinthia +Clarisa +Crysta +Dalia +Danae +Dina +Elsa +Estefania +Fabiola +Georgina +Gianna +Helena +Hunter +Iliana +Jesse +Josie +Karlee +Kelci +Kelcie +Kenna +Kortney +Kyleigh +Larisa +Latasha +Lisette +Lizeth +Lluvia +Luisa +Madelyn +Maggie +Marianna +Maricruz +Maureen +Melina +Mindy +Monika +Montana +Nadia +Natalia +Nikole +Paulette +Reina +Rhiannon +Shai +Shantel +Shawnee +Shelbi +Stefanie +Tatianna +Tracey +Valentina +Yanira +Alba +Aleah +Alena +Alice +Alina +Allyssa +Alondra +Alycia +Amairani +Andria +Annissa +Aundrea +Beth +Bobbie +Brea +Brisa +Brittnee +Caitlynn +Callie +Cassondra +Cayla +Chantal +Chantelle +Charmaine +Chelsi +Cintia +Dalila +Danelle +Danika +Darcy +Dayna +Deandra +Deidra +Deidre +Delaney +Desire +Desirea +Devan +Eden +Eleanor +Eliza +Emilia +Ernestina +Fatima +Francine +Georgia +Halle +Hallie +Hollie +Ileana +Isamar +Isela +Jacinda +Jackie +Janell +Jaqueline +Jasmyne +Jaycee +Jenifer +Jovana +Kalene +Katelin +Kenia +Kyra +Laci +Layla +Leila +Leilani +Lilian +Lori +Lynelle +Macy +Magdalena +Makenna +Maricella +Marlen +Mikala +Mitzi +Mollie +Nadine +Natali +Pauline +Precious +Reanna +Regan +Roberta +Roxana +Rylee +Santana +Savanah +Shae +Shauna +Siena +Skylar +Solana +Sonora +Sophie +Stefani +Stormy +Susanna +Sydnee +Tiara +Traci +Verenice +Yahaira +Yanet +Abriana +Aja +Alexzandria +Amaris +Amie +Anahy +Andie +Anisa +Annalisa +Anyssa +Areli +Arely +Aurora +Avery +Baylee +Belinda +Bertha +Betsy +Beverly +Brittaney +Brynn +Cari +Carlee +Carli +Carrie +Celestina +Chanelle +Chante +Cherie +Christie +Cody +Connie +Constance +Corey +Cori +Corrine +Damaris +Daphne +Dara +Darlene +Debra +Denisse +Destanie +Devyn +Elaine +Elia +Elissa +Elvia +Elyse +Elyssa +Eunice +Frankie +Genevieve +Guillermina +Gwendolyn +Haleigh +Harlie +Hayden +Ilse +Imelda +Inez +Irma +Isis +Ivonne +Jacklyn +Jalisa +Janae +Janett +Jazmyn +Jazmyne +Jesenia +Jill +Jodi +Jolene +Jorden +Josefina +Juana +Julianna +June +Justice +Justina +Kalie +Kami +Karlie +Karrie +Kay +Kayleen +Kaylie +Keira +Kennedy +Kia +Kiera +Kimberley +Kinsey +Korina +Kristian +Krystle +Leeann +Lena +Lesley +Lexus +Linette +Loretta +Lupita +Lyndsey +Macey +Makenzie +Mandi +Mercedez +Mirna +Nayeli +Nicolle +Nicollette +Page +Patience +Raina +Reagan +Rita +Rosario +Sage +Salena +Sarahi +Sarai +Savana +Sherry +Shiloh +Simone +Sonja +Stella +Suzanna +Tabatha +Tamika +Tammy +Trinity +Vianey +Yazmin +Zoey +Zuleika +Zulema +Jessica +Ashley +Samantha +Taylor +Sarah +Nicole +Emily +Alexis +Amanda +Jennifer +Stephanie +Brianna +Megan +Alyssa +Danielle +Elizabeth +Kayla +Brittany +Maria +Rachel +Hannah +Lauren +Amber +Melissa +Rebecca +Victoria +Jasmine +Alexandra +Vanessa +Andrea +Courtney +Marissa +Shelby +Michelle +Cassandra +Christina +Mariah +Angelica +Sierra +Kelsey +Katherine +Briana +Sara +Tiffany +Jacqueline +Chelsea +Heather +Haley +Jordan +Alicia +Morgan +Sabrina +Crystal +Kimberly +Kaitlyn +Breanna +Abigail +Savannah +Alexandria +Ana +Laura +Shannon +Anna +Brooke +Gabriela +Alexa +Desiree +Jamie +Cheyenne +Erika +Gabrielle +Caitlin +Sydney +Alejandra +Miranda +Monica +Bianca +Cynthia +Destiny +Veronica +Madison +Diana +Emma +Mary +Natalie +Paige +Allison +Adriana +Erica +Karina +Kristen +Lindsey +Angela +Katelyn +Olivia +Karen +Clarissa +Erin +Gabriella +Katie +Monique +Kelly +Brenda +Amy +Ariana +Kassandra +Leslie +Mackenzie +Marisa +Mayra +Yesenia +Bailey +Brittney +Kaylee +Hayley +Jenna +Julia +Kristina +April +Karla +Nancy +Natasha +Daniela +Guadalupe +Kathryn +Patricia +Rachael +Kaitlin +Mercedes +Audrey +Michaela +Summer +Valerie +Genesis +Hailey +Jocelyn +Leah +Celeste +Bethany +Brandi +Kylie +Madeline +Katrina +Lisa +Raquel +Sandra +Ashlee +Tori +Catherine +Christine +Holly +Molly +Claudia +Jasmin +Joanna +Priscilla +Chloe +Jazmin +Marina +Denise +Dominique +Jade +Lindsay +Angel +Autumn +Kara +Ashleigh +Kendra +Nichole +Valeria +Maritza +Rebekah +Alexia +Ariel +Grace +Krystal +Meghan +Angelina +Celina +Chelsey +Ciara +Cierra +Felicia +Julie +Melanie +Whitney +Adrianna +Anissa +Caitlyn +Daisy +Isabella +Casey +Cecilia +Kristin +Tara +Wendy +Carly +Rosa +Selina +Serena +Cassidy +Dalia +Esmeralda +Isabel +Kylee +Selena +Yvette +Arianna +Dakota +Margaret +Ruby +Tatum +Tessa +Alison +Liliana +Reyna +Carissa +Dana +Deanna +Kathleen +Kirsten +Leticia +Mikayla +Teresa +Zoe +Aimee +Alisha +Alissa +Blanca +Dulce +Martha +Tayler +Carolina +Elena +Janelle +Justine +Larissa +Linda +Mia +Paola +Alma +Brandy +Cristina +Evelyn +Gina +Jazmine +Kendall +Krista +Perla +Savanna +Adilene +Carmen +Itzel +Lorena +Lydia +Marisol +Tiana +Christian +Claire +Gloria +Janet +Mckenna +Renee +Sophia +Candice +Cristal +Darian +Makayla +Nadia +Naomi +Yasmin +Ashlyn +Bryanna +Caroline +Hope +Norma +Shaina +Sonia +Susana +Sylvia +Tanya +Allyson +Anastasia +Araceli +Aubrey +Camille +Faith +Jessie +Katelynn +Kiara +Meagan +Mikaela +Miriam +Nikki +Stephany +Tia +Tyler +Viviana +Amelia +Anne +Clara +Daniella +Jacquelyn +Karissa +Mallory +Paulina +Regina +Susan +Tamara +Breana +Carla +Carrie +Chandler +Charlotte +Hanna +Irene +Kelsie +Lacey +Lizbeth +Margarita +Mireya +Nicolette +Raven +Sadie +Shawna +Shayla +Tabitha +Theresa +Alexus +Brenna +Britney +Clarisa +Frances +Haylee +Heidi +Iris +Jillian +Kaila +Logan +Maggie +Maya +Ruth +Selene +Tania +Taryn +Tianna +Tina +Yvonne +Anahi +Angelique +Barbara +Beatriz +Carolyn +Charmayne +Cindy +Destinee +Elisa +Elise +Hunter +Johanna +Josephine +Judith +Kaitlynn +Katarina +Kiana +Kira +Lucia +Luz +Nina +Randi +Riley +Salina +Toni +Yolanda +Abby +Alisa +Ann +Bridget +Carina +Chelsie +Cheyanne +Cortney +Dallas +Dayana +Fernanda +Irma +Jaclyn +Jaime +Jordyn +Josie +Juliana +Kailey +Kyra +Mariana +Micaela +Moriah +Rhiannon +Viridiana +Alanna +Alysha +Annette +Bobbi +Breann +Chantel +Darlene +Dawn +Deborah +Elisabeth +Emilee +Graciela +Jenny +Kacey +Kelli +Lizette +Makenzie +Marlee +Melinda +Rochelle +Sage +Stacy +Tatiana +Tracy +Alaina +Alyson +Ashlynn +Berenice +Brianda +Brianne +Candace +Ciera +Colleen +Desirae +Donna +Edith +Francisca +Grecia +Hailee +Joy +Kellie +Kori +Maricela +Mariela +Melina +Noemi +Paula +Robyn +Rose +Roxana +Savanah +Sheridan +Sidney +Stacey +Tanisha +Tess +Tiffani +Trisha +Valentina +Virginia +Yadira +Yazmin +Yessenia +Adrienne +Antoinette +Ashlie +Brisa +Danika +Esperanza +Evelin +Helena +Justina +Kaley +Kali +Kasandra +Kenia +Khadijah +Kyla +Leandra +Lily +Marilyn +Melody +Nayeli +Olga +Robin +Rocio +Rosario +Sedona +Shantel +Silvia +Susanna +Tierra +Tonya +Alysa +Aracely +Arielle +Aspen +Carley +Cassie +Cecelia +Celia +Danica +Denisse +Diane +Jaimie +Janae +Jeanette +Juanita +Kassidy +Kennedy +Kenya +Kourtney +Lizeth +Lucero +Madelyn +Magdalena +Marcela +Maribel +Marie +Marisela +Mc +Mckenzie +Michele +Nataly +Pamela +Rebeca +Rhianna +Rikki +Rosemary +Samara +Sasha +Skylar +Sofia +Stevie +Aileen +Alexandrea +Alina +Aliyah +Anais +Analisa +Anjelica +Anyssa +Asia +Aurora +Bonnie +Brittani +Callie +Christiana +Cinthia +Connie +Corina +Danitza +Devon +Eden +Eliza +Esther +Eva +Francesca +Griselda +Iliana +Imani +Itzayana +Jayme +Julianna +Kaleigh +Kalyn +Kasey +Katlyn +Kayleigh +Kristi +Laurel +Lucy +Meaghan +Noelle +Nohely +Payton +Ricki +Rita +Ryan +Rylee +Sally +Sarai +Shanice +Sharon +Shea +Sheila +Abbey +Angie +Annie +Arlene +Aubrie +Audra +Ayla +Breanne +Bridgette +Brooklyn +Carli +Cayla +Charlee +Christa +Damaris +Devan +Devyn +Dora +Elaine +Elissa +Elsa +Emerald +Ericka +Flor +Frankie +Hallie +Harley +Hayden +Isela +Jesse +Jessika +Joselyn +Julissa +Kacie +Karli +Karlie +Kassie +Kate +Katerina +Kaylene +Keri +Kierra +Kiersten +Kiley +Krysta +Latasha +Lillian +Lluvia +Loren +Lyndsey +Madeleine +Maranda +Mari +Marlene +Marley +Meredith +Nikole +Peyton +Roxanne +Sandy +Serina +Shayna +Shelbi +Sonya +Stormy +Vivian +Alayna +Alexander +Alice +Alix +America +Andria +Anita +Austin +Avery +Bailee +Bernadette +Betsy +Cara +Carlie +Carol +Chanel +Charity +Clare +Corrina +Debra +Devin +Eileen +Elisha +Elvira +Giselle +Gwendolyn +Halie +Helen +Ivy +Janessa +Janine +Jaqueline +Jena +Julianne +Kailee +Kari +Karly +Kayleen +Kendal +Kimberlee +Kristy +Lexis +Lynette +Maira +Maricella +Mckayla +Mollie +Nadine +Natalia +Rachelle +Raina +Regan +Shay +Shianne +Shyanne +Skye +Stacie +Stefanie +Sydnee +Tashina +Traci +Vianey +Yaritza +Aidee +Aime +Alena +Allie +Amberly +Angelita +Ashton +Aubree +Audrianna +Ayana +Baylee +Bernice +Betty +Beverly +Billie +Bobbie +Brook +Caitlynn +Casandra +Celine +Corinne +Danyelle +Darby +Deandra +Deidre +Delaney +Demi +Desarae +Diamond +Dianna +Eleanor +Eliana +Elide +Ellen +Elsie +Elvia +Elyse +Emilie +Eunice +Evangelina +Fabiola +Genevieve +Georgia +Georgina +Gracie +Heaven +Holli +Hollie +Ilse +Ingrid +Isamar +Ivette +Janeth +Jennie +Jesus +Jocelyne +Jodi +Juliette +Justice +Kaeli +Kalie +Karley +Kayley +Kelcie +Kelsea +Kelsi +Krystina +La +Lacy +Leila +Leilani +Lexi +Liana +Lisette +Lizet +Lori +Lupita +Malia +Marcella +Mariel +Marlena +Martina +Michael +Mikala +Misty +Nora +Petra +Phoebe +Rae +Ramona +Reanna +Roxanna +Sarahi +Sheri +Siera +Simone +Sonja +Sonora +Sophie +Sydni +Tabatha +Thalia +Tiara +Tisha +Tory +Trinity +Vanesa +Violet +Yajaira +Zhane +Abbigail +Adrian +Alba +Alex +Ali +Alondra +Alycia +Alyssia +Amairani +Amaris +Ambar +Anali +Analyssa +Anastacia +Angelic +Annika +Annmarie +Ashli +Ashly +Athena +Azucena +Beatrice +Blake +Bree +Breonna +Brielle +Bryana +Bryce +Cari +Catalina +Cathleen +Catrina +Celena +Chantelle +Charlie +Charmaine +Christianna +Christy +Colby +Coral +Cori +Corrine +Cory +Davina +Delia +Desirea +Destiney +Destini +Deyanira +Ebony +Elyssa +Estefani +Estella +Estrella +Fatima +Felisha +Gianna +Giovanna +Gladys +Hilda +Imelda +Isabelle +Ivonne +Jacey +Jalen +Jana +Janette +Jasmyn +Jazmen +Jazmyne +Joanne +Jodie +Josefina +Josette +Kaelyn +Kailyn +Karime +Karin +Karlee +Karolina +Kathy +Katlin +Katy +Kaylie +Kaylynn +Keegan +Kelley +Kenna +Kimberley +Kimberlie +Kortney +Kristine +Kyndra +Lacie +Lara +Lena +Lesly +Lilia +Lynsey +Macie +Macy +Maddison +Majerle +Makenna +Mara +Margie +Marimar +Marlen +Maryam +Merissa +Mindy +Myra +Myrna +Nallely +Nathalie +Nichelle +Noheli +Patrice +Paulette +Reina +Rosie +Rosio +Salena +Sarina +Savana +Scarlett +Shanna +Shauna +Shaylee +Sheena +Shelbie +Shirley +Skyler +Star +Starr +Suzanne +Talia +Tasha +Tatyana +Teal +Terra +Tyra +Valarie +Yarima +Yasmeen +Zaina +Jessica +Ashley +Samantha +Taylor +Alexis +Sarah +Amanda +Emily +Stephanie +Kayla +Elizabeth +Hannah +Brianna +Megan +Maria +Rachel +Jennifer +Nicole +Danielle +Brittany +Alyssa +Alexandra +Victoria +Courtney +Lauren +Amber +Jasmine +Madison +Melissa +Selena +Vanessa +Andrea +Rebecca +Michelle +Marissa +Angelica +Jordan +Mariah +Shelby +Sierra +Christina +Kimberly +Natalie +Sara +Cassandra +Sydney +Katherine +Morgan +Destiny +Savannah +Haley +Diana +Jacqueline +Kaitlyn +Brooke +Chelsea +Kelsey +Miranda +Sabrina +Briana +Abigail +Karina +Mary +Gabrielle +Paige +Alexandria +Cheyenne +Alicia +Tiffany +Breanna +Gabriela +Ana +Bailey +Adriana +Crystal +Cynthia +Anna +Laura +Allison +Alejandra +Emma +Veronica +Caitlin +Heather +Julia +Ariana +Monica +Alexa +Angela +Jocelyn +Kelly +Amy +Bianca +Erika +Kylie +Brittney +Karen +Erin +Olivia +Katie +Erica +Hailey +Monique +Kassandra +Kristen +Katelyn +Desiree +Mackenzie +Daisy +Guadalupe +Brenda +Celeste +Gabriella +Jazmin +Kathryn +Shannon +Leslie +Marisa +Michaela +Kaitlin +Yesenia +Catherine +Clarissa +Mercedes +Claudia +Lindsey +Alondra +Jamie +Joanna +Madeline +Jenna +Kristina +Patricia +Dominique +Lindsay +Jasmin +Cecilia +Karla +Rebekah +Angel +Kaylee +Leah +Adrianna +Cassidy +Ciara +Valerie +Autumn +Rachael +Christine +Rosa +Sophia +Daniela +Ashlee +Kristin +Carolina +Arianna +Denise +Holly +Sandra +Valeria +Bethany +Cierra +Gloria +Kendall +Natasha +Brenna +Evelyn +Hayley +Mayra +Raquel +Ruby +Ariel +Caitlyn +Carmen +Lydia +Martha +Teresa +April +Katrina +Kendra +Lisa +Mckenna +Mikayla +Paola +Audrey +Felicia +Isabella +Julie +Kathleen +Krystal +Summer +Maritza +Priscilla +Selina +Tori +Whitney +Anissa +Chloe +Grace +Justine +Kara +Margaret +Meghan +Savanna +Tara +Alexia +Aubrey +Casey +Jazmine +Kirsten +Makayla +Mckenzie +Molly +Nancy +Perla +Reyna +Faith +Marina +Tanya +Zoe +Brandi +Carly +Jade +Liliana +Marisol +Mia +Blanca +Deanna +Leticia +Tatum +Caroline +Esmeralda +Gina +Hope +Melanie +Riley +Tiana +Alison +Alma +Ashlyn +Jordyn +Naomi +Angelina +Ashleigh +Daniella +Jessie +Lacey +Sonia +Brandy +Celina +Cristina +Elena +Krista +Kylee +Lorena +Nichole +Renee +Viviana +Aimee +Cindy +Genesis +Itzel +Mallory +Maribel +Serena +Angelique +Charlotte +Kiana +Regina +Tayler +Tyler +Amelia +Camille +Dana +Fernanda +Heidi +Isabel +Meagan +Virginia +Alissa +Allyson +Araceli +Cheyanne +Delaney +Elisa +Jillian +Judith +Margarita +Marie +Marlene +Shania +Sidney +Sylvia +Tabitha +Theresa +Wendy +Yvette +Aaliyah +Eva +Kiara +Larissa +Linda +Mariana +Miriam +Norma +Viridiana +Dakota +Fabiola +Hanna +Iridian +Maya +Mikaela +Sadie +Sarai +Carissa +Carla +Cassie +Claire +Dulce +Elisabeth +Elise +Frances +Katarina +Lizbeth +Micaela +Nicolette +Shea +Tamara +Tania +Tatiana +Tessa +Alina +Alisha +Anastasia +Britney +Candice +Clara +Dalia +Denisse +Destinee +Diamond +Esperanza +Harley +Jacquelyn +Janet +Juliana +Justice +Kaila +Kaitlynn +Kasandra +Katelynn +Kira +Luz +Nikki +Noelle +Salina +Silvia +Bailee +Chelsey +Cristal +Deja +Devin +Georgina +Haylee +Jaime +Jenny +Juanita +Kiley +Makenna +Maricela +Noemi +Sandy +Shayna +Yadira +Alexus +Astrid +Beatriz +Brooklyn +Bryanna +Chantel +Dallas +Edith +Hunter +Irania +Iris +Janelle +Joy +Kasey +Lizette +Lucero +Peyton +Sedona +Taryn +Tia +Yvonne +Belen +Bridget +Callie +Colleen +Ellen +Emilee +Esther +Jayme +Josephine +Kayleigh +Kaylie +Lily +Lizeth +Lucia +Makenzie +Mikala +Salena +Shaina +Shelbi +Stacey +Susana +Tianna +Adilene +Anahi +Annette +Annie +Berenice +Breana +Brianne +Christa +Ciera +Desirae +Imani +Isabelle +Ivy +Jocelyne +Julianna +Kailee +Karissa +Kennedy +Kyla +Madelyn +Maggie +Marilyn +Natalia +Rachelle +Rhiannon +Rikki +Ruth +Savanah +Sofia +Stacy +Tasha +Tina +Alana +Alex +Aliyah +Alysa +Anne +Ashlie +Aspen +Brook +Cara +Celena +Christian +Danitza +Delia +Destini +Emilie +Ericka +Gladys +Heaven +Jaclyn +Janae +Jesse +Juana +Kailey +Kari +Kate +Katlyn +Katy +Kellie +Kelsie +Lourdes +Maddison +Magdalena +Mireya +Nina +Pamela +Raven +Ryan +Serina +Skylar +Thalia +Toni +Vivian +Yessenia +Alexandrea +Alisa +Anabel +Angelita +Anyssa +Ashton +Asia +Barbara +Beatrice +Brianda +Candace +Carrie +Casandra +Chelsie +Christiana +Dania +Dianna +Dora +Elisha +Estefani +Griselda +Iliana +Kali +Karly +Kassidy +Kenya +Kianna +Kyra +Madeleine +Maira +Mara +Marcela +Melinda +Misty +Nadia +Nora +Paulina +Payton +Randi +Rose +Rylee +Sasha +Selene +Shantel +Skye +Sonya +Susan +Yajaira +Anjelica +Arielle +Athena +Brittani +Carina +Carolyn +Chandler +Chantelle +Corina +Damaris +Davina +Demi +Destiney +Devon +Elaine +Elsa +Evangelina +Evelin +Flor +Francisca +Giselle +Grecia +Helen +Hillary +Janette +Jazmyn +Kaela +Kelli +Kelsi +Lexie +Lexus +Lillian +Macy +Melina +Melody +Phoebe +Robyn +Rocio +Rosario +Shanna +Shawna +Tiara +Tracy +Trinity +Yazmin +Zaira +Abby +Abrianna +Alaina +Alba +Alice +Alysia +Alyson +Analicia +Analisa +Anita +Ann +Arely +Audra +Ayla +Baylee +Bonnie +Bryana +Cecelia +Corrina +Darby +Dawn +Devyn +Diane +Donna +Ebony +Eileen +Eliza +Estefany +Estrella +Francine +Genevieve +Graciela +Hailee +Irene +Irma +Jaqueline +Jeanette +Jensen +Johanna +Josie +Kaleigh +Kaley +Karely +Karlie +Katelin +Katlin +Kaycee +Kenia +Kourtney +Kristy +Lacy +Liana +Lyric +Mariela +Meaghan +Moriah +Myranda +Nataly +Nayeli +Paris +Rebeca +Sarahi +Shayla +Stevie +Tatyana +Tiffani +Yahaira +Yamilex +Adrian +Alanna +Alycia +Arlette +Ashlynn +Avery +Bobbie +Breann +Brittanie +Carol +Cayla +Celia +Christy +Connie +Cortney +Darian +Darlene +Deborah +Eunice +Francesca +Haleigh +Halie +Hayden +Helena +Ivette +Jackie +Jenifer +Jessika +Joann +Kacey +Kacie +Karli +Kaylyn +Kierra +Korina +Kortney +Kristi +Kristine +Layla +Leila +Lexi +Lisette +Madisen +Madyson +Maia +Marley +Mckayla +Mercedez +Patience +Paula +Raina +Ramona +Reanna +Reina +Rianna +Rochelle +Sage +Scarlett +Sharon +Shaylyn +Shelly +Shyanne +Siara +Sirena +Skyler +Sophie +Stefanie +Sydnee +Sydni +Talia +Tanisha +Trista +Yaritza +Yasmin +Yolanda +Abbey +Abriana +Adara +Allie +Allyssa +Alyssia +Amalia +America +Amethyst +Angie +Annalisa +Antoinette +Aracely +Bibiana +Breanne +Brynn +Caitlynn +Candy +Carley +Carlie +Chantal +Ciarra +Codi +Corinna +Danae +Daphne +Deidre +Dolores +Drew +Eleanor +Elvia +Estefania +Felicity +Gema +Geneva +Gianna +Gisela +Gwendolyn +Hallie +Hazel +Ingrid +Janeth +Jena +Jovanna +Joyce +Kalli +Karlee +Katharine +Keila +Kelley +Kiersten +Kimberley +Kristyn +Kyle +Lea +Leanna +Leanne +Leeann +Lilia +Lilibeth +Logan +Lori +Lorraine +Lucy +Luisa +Maegan +Mari +Maricruz +Melisa +Michele +Myra +Ofelia +Presley +Rosalia +Rosalinda +Rubi +Rylie +Sarina +Shana +Shay +Sheila +Sheridan +Sienna +Stephany +Sydnie +Tammy +Tess +Tierra +Tonya +Trina +Tristen +Vianey +Yasmine +Yessica +Addison +Adelina +Aileen +Aisha +Alea +Aleah +Alec +Alena +Ali +Aliza +Anais +Anayeli +Anisa +Aniza +Annmarie +Antonia +Arlene +Ashli +Aubree +Aurelia +Bella +Bernadette +Bertha +Brandee +Bridgette +Brielle +Brigitte +Brittni +Calli +Carson +Catelyn +Catrina +Chase +Chastity +Chelsi +Cheyanna +Clarisa +Cody +Danika +Danyelle +Dayana +Debra +Delicia +Dena +Desire +Destinie +Dina +Domonique +Dylan +Edna +Emelie +Eryn +Essence +Estefanie +Estephanie +Frida +Gisel +Halle +Harmony +Hollie +Iridiana +Isis +Ivonne +Jacklyn +Jacklynn +Jaimie +Jana +Jayde +Jennie +Joana +Jolene +Kalee +Kallie +Kandice +Kaylene +Kayley +Kaylin +Kaytlyn +Kendyl +Kerri +Kerry +Khadijah +Kirstin +Klarissa +Kristal +Kyleigh +Lara +Lauryn +Lilliana +Lissette +Lluvia +Marcella +Marrissa +Maxine +Meranda +Mindy +Montana +Nallely +Natalee +Natali +Nereyda +Page +Paisley +Paloma +Pauline +Pearl +Priya +Richelle +Ricki +Rosemary +Roxana +Sally +Serenity +Shawnee +Sheena +Shelbie +Stella +Taelor +Tamera +Tashina +Teagan +Tyra +Valentina +Xena +Xenia +Xochitl +Yanira +Yareli +Yomira +Zulema +Jessica +Ashley +Samantha +Alexis +Taylor +Emily +Sarah +Alyssa +Hannah +Madison +Elizabeth +Stephanie +Maria +Amanda +Kayla +Brianna +Megan +Victoria +Jennifer +Nicole +Vanessa +Alexandra +Rachel +Brittany +Jasmine +Lauren +Sabrina +Rebecca +Courtney +Danielle +Amber +Savannah +Marissa +Kimberly +Angelica +Mariah +Melissa +Haley +Sierra +Shelby +Andrea +Morgan +Bailey +Michelle +Jacqueline +Sydney +Cheyenne +Abigail +Briana +Destiny +Katherine +Christina +Sara +Brooke +Anna +Gabrielle +Alicia +Kaitlyn +Cassandra +Chelsea +Jordan +Breanna +Diana +Kelsey +Bianca +Selena +Katelyn +Tiffany +Hailey +Cynthia +Karina +Mary +Natalie +Ana +Angela +Heather +Karen +Laura +Gabriela +Leslie +Veronica +Mackenzie +Allison +Monica +Alexa +Alexandria +Crystal +Alondra +Emma +Paige +Erika +Miranda +Jocelyn +Daisy +Desiree +Alejandra +Julia +Olivia +Ariana +Gabriella +Adriana +Erin +Shania +Dominique +Kelly +Brenda +Jamie +Kassandra +Madeline +Sophia +Jenna +Caitlin +Kaylee +Amy +Daniela +Yesenia +Guadalupe +Shannon +Celeste +Kristen +Claudia +Jazmin +Kylie +Cassidy +Kaitlin +Karla +Katie +Michaela +Summer +Autumn +Brittney +Monique +Nancy +Marisa +Mikayla +Ciara +Chloe +Lindsey +Valeria +Erica +Jade +Kathryn +Mia +Clarissa +Hayley +Marisol +Isabel +Priscilla +Kendra +Grace +Kiana +Patricia +Valerie +Arianna +Isabella +Mercedes +Jazmine +Molly +Caroline +Joanna +Adrianna +Alexia +Ariel +Cecilia +Evelyn +Jasmin +Leah +Mckenna +April +Makayla +Carly +Dana +Holly +Kirsten +Serena +Bethany +Caitlyn +Katrina +Leticia +Cindy +Zoe +Angel +Ashlee +Lindsay +Rebekah +Rosa +Ruby +Sandra +Tara +Denise +Felicia +Hanna +Krystal +Rachael +Ashleigh +Catherine +Cristina +Delaney +Elena +Esperanza +Faith +Lisa +Mariana +Maritza +Martha +Raquel +Teresa +Carolina +Kristina +Kylee +Mayra +Perla +Esmeralda +Genesis +Justine +Lorena +Reyna +Tessa +Gloria +Jordyn +Julie +Kara +Mckenzie +Tatiana +Tori +Alma +Heidi +Katelynn +Meghan +Audrey +Brenna +Carmen +Cheyanne +Hope +Kristin +Margaret +Paola +Riley +Adilene +Breana +Estefania +Melanie +Raven +Yvette +Angelina +Cierra +Claire +Janet +Meagan +Mikaela +Natasha +Whitney +Alison +Anissa +Aubrey +Baylee +Brandy +Dakota +Liliana +Mallory +Marina +Miriam +Naomi +Regina +Renee +Shea +Viviana +Antonia +Blanca +Carla +Linda +Maya +Skylar +Tyler +Edith +Elisa +Eva +Julianna +Larissa +Odalys +Sadie +Tania +Tiana +Yadira +Annie +Ashlyn +Brandi +Camille +Christine +Daniella +Johanna +Krista +Lacey +Lily +Maribel +Payton +Savanna +Tatum +Wendy +Alexus +Alisha +Beatriz +Casey +Jacquelyn +Kendall +Marisela +Paulina +Sonia +Tanya +Vivian +Aimee +Chelsey +Dallas +Fernanda +Gina +Jillian +Lesley +Natalia +Nikki +Pamela +Taryn +Alana +Alex +Anahi +Araceli +Aylin +Carina +Chantel +Cinthia +Deanna +Dulce +Harley +Haylee +Itzel +Jenny +Juliana +Kiara +Kyla +Lizbeth +Luz +Paula +Shayla +Alissa +Amelia +Bailee +Celina +Deja +Destinee +Genevieve +Logan +Margarita +Paloma +Silvia +Tabitha +Tayler +Virginia +Alina +Alisa +Charlotte +Irene +Kathleen +Kira +Lesly +Madelyn +Mireya +Shyanne +Sidney +Stacey +Tia +Tina +Toni +Anastasia +Angelique +Barbara +Jocelyne +Judith +Kiley +Kyra +Lizeth +Lucia +Madalyn +Mariela +Nadia +Nichole +Sienna +Sofia +Suzette +Theresa +Yasmin +Abby +Aileen +Anne +Athena +Bridget +Callie +Cristal +Dania +Devon +Esther +Frances +Helen +Jessie +Kaila +Kailey +Kari +Katelin +Kelsie +Kennedy +Lillian +Macy +Madeleine +Makenna +Rocio +Roxanne +Shayna +Sydnee +Sylvia +Tamara +Yamilex +Yaritza +Alanna +Alexandrea +Alice +Alyson +Arely +Aspen +Aurora +Berenice +Candace +Carlie +Carolyn +Clara +Colleen +Corina +Eileen +Elise +Isabelle +Jaqueline +Lizette +Makenzie +Marlene +Noemi +Odalis +Robin +Rochelle +Ruth +Rylee +Sage +Sasha +Sedona +Serina +Tiara +Yasmine +Allyson +Allyssa +Anisa +Ashlynn +Belen +Brianne +Brooklyn +Bryanna +Carley +Dalia +Haleigh +Iris +Janelle +Jayme +Kacie +Kaley +Karissa +Kaylyn +Lydia +Maricela +Marie +Marilyn +Melody +Moriah +Peyton +Robyn +Sarai +Sarina +Susan +Trisha +Yvonne +Analisa +Angelita +Bertha +Brianda +Carissa +Carrie +Celine +Chelsie +Clare +Desirae +Diane +Elisabeth +Emilee +Hailee +Heaven +Iliana +Ivy +Jaclyn +Jaime +Joselyn +Josephine +Juanita +Kali +Kasandra +Kaycee +Kaylie +Kenya +Kortney +Lucero +Madisen +Marianna +Nicolette +Nina +Nora +Randi +Rosario +Rubi +Rylie +Shantel +Stephany +Tristen +Tyra +Allie +Areli +Arielle +Ashlie +Breanne +Britney +Celia +Ciarra +Demetria +Demi +Denisse +Donna +Elyssa +Hunter +Janell +Janessa +Jazmyn +Julianne +Justice +Kaitlynn +Kassidy +Kate +Kaylin +Keely +Kiersten +Luisa +Marlee +Melina +Michele +Montana +Nataly +Noelle +Norma +Selina +Sonya +Talia +Tiffani +Yessenia +Alysia +Anita +Aracely +Asia +Bobbi +Breann +Brisa +Brittanie +Brynn +Candice +Casandra +Cassie +Chandler +Chanel +Chantal +Christiana +Ciera +Damaris +Devin +Edna +Ellen +Eryn +Francesca +Georgina +Gianna +Giselle +Gladys +Grecia +Hayden +Irma +Isis +Jacquelin +Karlie +Katlyn +Kelli +Kenia +Kierra +Kourtney +Leandra +Leanna +Maggie +Marcella +Meredith +Micaela +Rachelle +Rhiannon +Rikki +Rosalinda +Salina +Sarahi +Savanah +Selene +Stacy +Tianna +Viridiana +Xena +Zoey +Addison +Alayna +Alyssia +Amaris +Angie +Anjelica +Annette +Anyssa +Arlene +Ashly +Astrid +Ayla +Beverly +Bridgette +Cara +Cayla +Charity +Charlene +Christie +Delia +Ebony +Eden +Elaina +Ellie +Estefany +Gillian +Halle +Helena +Jada +Janette +Josie +Kailee +Karly +Katharine +Kathy +Kayleigh +Kori +Kristi +Lexi +Lucy +Maira +Melinda +Monika +Reagan +Roxanna +Scarlett +Shandiin +Shanna +Sharon +Shaye +Skye +Skyler +Suzanne +Tanisha +Tatyana +Trinity +Vanesa +Zulema +Abbigail +Aide +Alysha +Ambar +Anais +Analicia +Anika +Annika +Antoinette +Ashton +Beatrice +Brandie +Camilla +Charlie +Christy +Cora +Cori +Danitza +Davina +Deborah +Diamond +Domonique +Estrella +Francine +Francisca +Gisela +Graciela +Gwendolyn +Halie +Ileana +Jackie +Jacklyn +Janae +Jeanette +Juliette +Kaleigh +Kasey +Kathia +Kayley +Kelley +Kellie +Kelsi +Kiera +Laurel +Lexie +Liana +Maddison +Mandy +Mc +Mckayla +Mikala +Mitzi +Myra +Nathalie +Nayeli +Reina +Rita +Roxana +Ryan +Sariah +Shawna +Shay +Stevie +Stormy +Tess +Thalia +Tierra +Tristan +Vianey +Yajaira +Yareli +Yolanda +Ada +Adrienne +Aitana +Alaina +Aleah +Alena +Alessandra +Alycia +Amairani +Audra +Ava +Bibiana +Bonnie +Bria +Brittani +Cameron +Carli +Christian +Coral +Corrina +Corrine +Danica +Dayana +Delilah +Destini +Dolores +Elaine +Elissa +Eliza +Ella +Elvia +Emely +Ericka +Georgia +Gladis +Griselda +Hana +Hilda +Iesha +Imani +Ines +Ivonne +Jacquelynn +Janice +Jesus +Joelle +Joy +Juliet +Julissa +Kacey +Karlee +Karli +Katia +Kaylynn +Kelci +Kelcie +Kelsea +Kenna +Keyla +Kianna +Korina +Kristian +Kristy +Krysta +Leeann +Leona +Lexis +Lissette +Lynette +Malia +Mara +Maryjane +Micah +Noel +Phoebe +Rayna +Reanna +Rhianna +Rosie +Shaniah +Sheridan +Shirley +Shyla +Susanna +Sydni +Tamika +Tammy +Terra +Trista +Valentina +Vivianna +Yazmin +Zinnia +Abbie +Aleena +Alexcia +Aliyah +Amalia +Anaya +Andria +Ann +Annabelle +Anneliese +Arianne +Armida +Aubree +Baylie +Bianka +Breeanna +Bridgett +Brieanna +Britni +Brittnay +Bryce +Cailey +Caitlynn +Caleigh +Carol +Catalina +Catrina +Cecelia +Celicia +Chasity +Christen +Cinthya +Corinna +Cortney +Cydney +Danae +Danika +Daria +Darian +Deana +Deisy +Destiney +Eliana +Elisha +Elyse +Evangelina +Fabiola +Faviola +Frankie +Frida +Gema +Hallie +Idalia +Ingrid +Isela +Ivette +Jacey +Jacinda +Jaden +Jaimie +Jamila +Jana +Janie +Jaylene +Jazlyn +Jena +Jenifer +Jesica +Jill +Jolene +Joselin +Kaela +Kaelyn +Kalynn +Karolina +Kathya +Katya +Kaya +Kaylene +Keana +Keegan +Kimber +Kristal +Kristine +Lacy +Latisha +Lilia +Lillie +Lina +Lisette +Loren +Lori +Lyric +Macie +Magdalena +Marcela +Marika +Marlen +Maryann +Mckinley +Melany +Milagros +Mindy +Mira +Misty +Mollie +Mykayla +Nathaly +Odessa +Pearl +Precious +Quinn +Raelynn +Rebeca +Regan +Renae +Riana +Rose +Ryann +Sabryna +Saira +Salena +Sandy +Santana +Shae +Shanelle +Shaniya +Simone +Siobhan +Sirena +Sky +Soledad +Susana +Suzanna +Tasha +Tawny +Taylar +Teagan +Tiffanie +Torri +Trina +Vania +Verenice +Yahaira +Yalitza +Yamileth +Yanet +Jessica +Alexis +Ashley +Samantha +Emily +Sarah +Taylor +Hannah +Alyssa +Jennifer +Madison +Brianna +Maria +Elizabeth +Rachel +Kayla +Megan +Amanda +Victoria +Stephanie +Nicole +Lauren +Vanessa +Jasmine +Danielle +Melissa +Rebecca +Angelica +Sabrina +Alexandra +Amber +Andrea +Sierra +Brittany +Marissa +Cassandra +Jordan +Mariah +Savannah +Sydney +Morgan +Haley +Jacqueline +Alicia +Destiny +Julia +Michelle +Abigail +Emma +Katherine +Courtney +Cheyenne +Shelby +Bailey +Gabrielle +Kaitlyn +Diana +Monica +Kimberly +Briana +Christina +Sara +Allison +Anna +Ana +Cynthia +Ariana +Natalie +Hailey +Breanna +Olivia +Gabriela +Laura +Alexandria +Karina +Kelly +Leslie +Mary +Veronica +Adriana +Alexa +Miranda +Adrianna +Angela +Selena +Brooke +Desiree +Karen +Mikayla +Bianca +Caitlin +Daisy +Paige +Alondra +Erica +Gabriella +Karla +Tiffany +Esmeralda +Jenna +Katelyn +Erika +Erin +Kathryn +Dominique +Heather +Alejandra +Brenda +Grace +Guadalupe +Isabel +Jazmin +Jocelyn +Kelsey +Mia +Yesenia +Celeste +Madeline +Tatum +Kristen +Crystal +Monique +Arianna +Mackenzie +Michaela +Shannon +Sophia +Autumn +Chelsea +Jade +Kaylee +Amy +Catherine +Daniela +Valerie +Kassandra +Rosa +Chloe +Isabella +Julissa +Serena +Mckenna +Summer +Ariel +Cassidy +Makayla +Caitlyn +Faith +Kylie +Marisa +Alison +Carolina +Patricia +Riley +Brittney +Jasmin +Caroline +Genesis +Mercedes +Ciara +Cierra +Claudia +Jamie +Kiana +Leah +Anahi +Holly +Kaitlin +Lesley +Valeria +Hayley +Katie +Zoe +Angelina +Lindsey +Yulissa +Aubrey +Audrey +Katrina +Kendra +Lindsay +Molly +Reyna +Raquel +Sandra +Angel +Clarissa +Marisol +Rebekah +Ruby +April +Ashlee +Liliana +Maribel +Nancy +Bethany +Jazmine +Kendall +Meghan +Mikaela +Alexus +Alma +Brandi +Brandy +Carly +Esperanza +Perla +Priscilla +Aylin +Giselle +Mckenzie +Mireya +Natasha +Sadie +Ashlyn +Jordyn +Julie +Kylee +Naomi +Rylee +Sidney +Sonia +Alexia +Evelyn +Lily +Melanie +Cindy +Claire +Janet +Leticia +Lisa +Alissa +Bryanna +Christine +Cristina +Hanna +Hope +Lydia +Margaret +Marina +Tara +Tessa +Casey +Denise +Luz +Shania +Aaliyah +Itzel +Justine +Larissa +Maritza +Meagan +Paola +Savanna +Whitney +Anissa +Brenna +Dakota +Dulce +Elise +Estrella +Heidi +Kristina +Lacey +Maya +Nina +Paulina +Rachael +Sofia +Teresa +Aimee +Carla +Kristin +Ruth +Tatiana +Viviana +Adilene +Alina +Anastasia +Carmen +Cristal +Elisa +Jessie +Kirsten +Kyra +Wendy +Destinee +Edith +Elena +Gloria +Irene +Joanna +Kailey +Kennedy +Mariana +Payton +Peyton +Renee +Tayler +Tiana +Tori +Angelique +Ashleigh +Baylee +Blanca +Brooklyn +Dana +Deanna +Juliana +Kara +Linda +Martha +Nichole +Yasmine +Aileen +Alana +Allyson +Annika +Antonia +Araceli +Barbara +Cecilia +Delaney +Iris +Katelynn +Krista +Krystal +Madeleine +Raven +Taryn +Bailee +Berenice +Damaris +Diamond +Frances +Julianna +Kathleen +Kira +Kyla +Logan +Margarita +Mayra +Micaela +Serina +Tabitha +Aliyah +Anita +Beatriz +Cameron +Gina +Grecia +Hailee +Jaclyn +Jillian +Kiara +Madelyn +Mallory +Marie +Marisela +Shayla +Shea +Tianna +Abby +Eleanor +Elisabeth +Felicia +Fernanda +Flor +Graciela +Judith +Karissa +Lorena +Sarai +Selina +Talia +Yasmin +Yessenia +Addison +Alisha +Annie +Athena +Aurora +Bridget +Britney +Celine +Chelsey +Desirae +Kali +Katarina +Mariela +Melina +Skylar +Stephany +Susan +Tania +Toni +Yadira +Yazmin +Amelia +Analisa +Carissa +Donna +Estefania +Eva +Francisca +Jada +Jaqueline +Josephine +Kayleigh +Kaylin +Kenia +Lizbeth +Makenzie +Marlene +Moriah +Nikki +Paloma +Regina +Rocio +Sage +Salma +Savanah +Sedona +Shyanne +Susana +Virginia +Yajaira +Abbey +Anais +Ayleen +Breana +Brisa +Camille +Casandra +Catalina +Cheyanne +Darian +Deja +Ericka +Isabelle +Juliet +Lisette +Makenna +Noemi +Reina +Sharon +Shayna +Sienna +Skyler +Tamara +Tia +Alanna +Alessandra +Alyssia +Angelita +Asia +Avery +Carina +Corina +Dallas +Denisse +Fatima +Gianna +Isela +Jazmyn +Jenifer +Karly +Kasandra +Kate +Keely +Kelsie +Leanna +Madisen +Maricela +Melinda +Miriam +Nadia +Nicolette +Odalis +Pamela +Rebeca +Rhiannon +Sasha +Skye +Sophie +Sylvia +Valentina +Yamilex +Yvette +Alyson +America +Aspen +Brianda +Callie +Daniella +Dayana +Devin +Devon +Domonique +Emilee +Gillian +Haylee +Heaven +Helen +Helena +Hunter +Janae +Janelle +Jeanette +Johanna +Kaitlynn +Kasey +Kassidy +Kaylie +Kaylynn +Kenya +Macy +Natalia +Noelle +Norma +Phoebe +Precious +Selene +Shawna +Sonya +Stacy +Tyra +Vivian +Aleah +Alice +Anisa +Bernadette +Candace +Chantel +Charlene +Ciera +Dania +Delia +Elaine +Elyssa +Gisselle +Hallie +Harley +Joselyn +Karli +Kianna +Kristal +Lesly +Lillian +Lizeth +Madisyn +Melody +Michele +Myranda +Odalys +Paula +Roxana +Roxanne +Rubi +Shyann +Silvia +Tanya +Theresa +Viridiana +Yolanda +Alize +Alysa +Anjelica +Astrid +Audra +Brianne +Cassie +Cherish +Danitza +Elyse +Estefani +Esther +Fiona +Iliana +Jackeline +Jailene +Juanita +Kaley +Kiley +Leanne +Lena +Lexi +Lexus +Lilian +Lizette +Lucero +Lucy +Luisa +Maddison +Magdalena +Maira +Marcella +Marianna +Misty +Paris +Roxanna +Sarahi +Thalia +Tiara +Tierra +Tina +Zoey +Aiyana +Allie +Alycia +Analicia +Ann +Anne +Annette +Arely +Ashlynn +Ayanna +Ayla +Breanne +Cara +Carli +Charlotte +Christian +Dina +Dominque +Dorothy +Ellen +Elvira +Gladys +Ileana +Imani +Ivana +Ivette +Ivonne +Jane +Jasmyn +Jenny +Jocelyne +Joy +Julisa +Justice +Kailee +Katlyn +Kiersten +Lauryn +Lilly +Lourdes +Marcela +Maryssa +Mckayla +Melisa +Meredith +Nadine +Nataly +Nikita +Randi +Reanna +Robyn +Sally +Sandy +Serenity +Shaylene +Tatyana +Tristen +Yareli +Yessica +Abrianna +Alaina +Alexandrea +Alisa +Allyssa +Amalia +Analise +Annissa +Aracely +Areli +Arielle +Arlene +Ashly +Ashton +Bertha +Billie +Bridgette +Britanny +Camilla +Candice +Carlee +Carrie +Chandler +Chanel +Chantelle +Chelsie +Ciarra +Dalia +Dawn +Demi +Dylan +Ebony +Elaina +Eliza +Ellie +Emerald +Francesca +Georgia +Giovanna +Gwendolyn +Halie +Irma +Ivy +Jaime +Janessa +Janeth +Jaquelin +Jaycee +Jayme +Jewel +Jodi +Jorden +Joselin +Jovanna +Kari +Katharine +Kaylyn +Keanna +Kelli +Kellie +Keri +Kiera +Kierra +Kourtney +Kristian +Leilani +Lucia +Maia +Meaghan +Micayla +Mikala +Mitzi +Neida +Nubia +Rosemary +Ryan +Shaina +Shauna +Simone +Suzette +Tammy +Tiffani +Tracey +Trinity +Tristan +Vanesa +Vianey +Xena +Yaritza +Yulisa +Abril +Adela +Adrienne +Ailyn +Alba +Alena +Alivia +Aliya +Alysia +Anabel +Anai +Angie +Annabel +Anyssa +Bobbi +Brittani +Bryana +Caitlynn +Camryn +Carolyn +Cecelia +Celena +Celia +Celina +Charlie +Clara +Connie +Corrina +Danica +Deborah +Delilah +Devyn +Dianna +Dora +Drew +Eden +Eliana +Elissa +Elle +Estefany +Evelin +Fabiola +Jaci +Jacquelin +Jacquelyn +Janice +Jill +Josie +Julianne +Justina +Kacey +Kaila +Katelin +Kathy +Kayleen +Keila +Kelci +Kelley +Kristi +Kyle +La +Latanya +Leann +Lilliana +Lori +Lupita +Lyndsey +Lyric +Macie +Madyson +Maite +Makaela +Makena +Mandy +Marilyn +Marlen +Miah +Montana +Nallely +Nathalie +Olga +Oriana +Paulette +Pearl +Quinn +Raeann +Raina +Reagan +Regan +Reilly +Rosario +Rose +Ryleigh +Sarina +Savana +Shay +Sheila +Shelbie +Shianne +Star +Stormie +Susanna +Sydnee +Tatianna +Tristin +Tyler +Winter +Yahaira +Yamilet +Yvonne +Zoie +Abbie +Adrianne +Aiyanna +Alanah +Alesha +Alex +Alexys +Alpha +Alysha +Amara +Amaris +Amberly +Andreana +Anika +Annalise +Antoinette +Ariadna +Aryana +Aubrie +August +Azalia +Beatrice +Berta +Beth +Breann +Cami +Camila +Candelaria +Candy +Carley +Carlie +Carson +Cayla +Chantal +Charlee +Chase +Christa +Christy +Cinthia +Clare +Cora +Corinne +Cortney +Daija +Danae +Darcy +Dasia +Dayanara +Debbie +Delainey +Destiney +Diane +Eileen +Elexus +Elora +Emely +Emmalee +Evangelina +Flora +Frankie +Gabriele +Genevieve +Gisela +Greta +Halee +Halle +Ingrid +Jacinda +Jackelyn +Janette +Jasmyne +Jaylene +Jaylin +Jayna +Jazlyn +Jenica +Joanne +Johana +Kaci +Kacie +Kaela +Kamryn +Karlee +Katalina +Kayli +Kaytlynn +Keana +Keira +Kristine +Kristyn +Lacy +Lana +Latisha +Laurel +Leona +Lidia +Lilia +Lissette +London +Madalyn +Maegan +Maggie +Mara +Marielena +Marjorie +Marlena +Mc +Mercedez +Mirna +Moira +Monika +Mykel +Nayeli +Nayely +Nora +Patience +Pauline +Pilar +Racheal +Rachelle +Ramona +Rayna +Robin +Rochelle +Rosie +Samatha +Sariah +Shanell +Shanice +Shanna +Sky +Skyla +Soledad +Stacey +Suzanne +Tasha +Tea +Tonya +Tracy +Trista +Vianca +Vivianna +Xenia +Xochitl +Yesica +Zaira +Alexis +Samantha +Jessica +Emily +Ashley +Alyssa +Sarah +Taylor +Hannah +Madison +Jennifer +Brianna +Victoria +Megan +Maria +Elizabeth +Kayla +Vanessa +Jasmine +Alexandra +Nicole +Lauren +Stephanie +Amanda +Sierra +Rachel +Andrea +Brittany +Destiny +Angelica +Emma +Amber +Abigail +Mariah +Jordan +Julia +Kaitlyn +Sydney +Danielle +Savannah +Marissa +Michelle +Morgan +Olivia +Rebecca +Melissa +Sabrina +Natalie +Alicia +Kimberly +Ana +Gabrielle +Cassandra +Bailey +Briana +Brooke +Hailey +Cynthia +Allison +Anna +Cheyenne +Haley +Esmeralda +Katherine +Leslie +Diana +Alejandra +Shelby +Sara +Adriana +Courtney +Jacqueline +Daisy +Mackenzie +Madeline +Kelsey +Mary +Miranda +Alexa +Monica +Ariana +Breanna +Gabriela +Paige +Alexandria +Sophia +Gabriella +Crystal +Christina +Grace +Jocelyn +Kaylee +Angel +Bianca +Caitlin +Alondra +Karina +Mia +Mikayla +Veronica +Isabel +Karen +Kylie +Chloe +Daniela +Erin +Laura +Selena +Angela +Karla +Tiffany +Erika +Katelyn +Valeria +Amy +Guadalupe +Isabella +Jenna +Desiree +Marisa +Adrianna +Arianna +Kassandra +Kathryn +Katie +Erica +Maya +Heather +Dominique +Jasmin +Makayla +Yesenia +Jade +Mckenna +Monique +Celeste +Tatum +Zoe +Brenda +Brittney +Kristen +Ariel +Autumn +Jazmine +Michaela +Serena +Valerie +Chelsea +Clarissa +Faith +Kaitlin +Caroline +Giselle +Jamie +Jazmin +Nancy +Raquel +Shannon +Carolina +Kylee +Priscilla +Leah +Alexia +Reyna +Caitlyn +Riley +Ruby +Catherine +Kelly +Mercedes +Patricia +Rosa +Summer +Tara +Anahi +April +Bethany +Carmen +Claudia +Hayley +Liliana +Lindsey +Mayra +Molly +Sandra +Cassidy +Delaney +Katrina +Carly +Joanna +Meghan +Gloria +Jordyn +Julissa +Lesley +Naomi +Ashlyn +Ciara +Genesis +Lindsay +Paola +Rachael +Aubrey +Cecilia +Cierra +Denise +Shania +Angelina +Audrey +Elena +Evelyn +Lorena +Mckenzie +Rebekah +Wendy +Claire +Tatiana +Ashlee +Cindy +Julie +Kyra +Melanie +Paulina +Alma +Deanna +Madelyn +Marisol +Mikaela +Sofia +Tori +Anissa +Isabelle +Katelynn +Lily +Bryanna +Cameron +Casey +Christine +Esperanza +Holly +Kendra +Kiana +Larissa +Leticia +Marina +Miriam +Teresa +Hanna +Kristina +Krystal +Kyla +Lizbeth +Makenna +Makenzie +Mariana +Natalia +Cristina +Kara +Lacey +Natasha +Skylar +Araceli +Cheyanne +Daniella +Hope +Kathleen +Maritza +Meagan +Raven +Rylee +Baylee +Elisa +Jillian +Julianna +Kendall +Madeleine +Margaret +Martha +Mireya +Perla +Sonia +Tessa +Alissa +Dulce +Kennedy +Payton +Aaliyah +Allyson +Berenice +Hunter +Janet +Justine +Kailey +Kiara +Lillian +Linda +Luz +Sienna +Vivian +Alison +Athena +Brandy +Brooklyn +Carla +Juliana +Lisa +Lizeth +Mallory +Marie +Norma +Salma +Savanna +Tayler +Tiana +Aileen +Alexus +Eva +Graciela +Jada +Lesly +Margarita +Odalis +Pamela +Shea +Alana +Anastasia +Brandi +Brenna +Kate +Shayla +Viviana +Yasmine +Yvette +Bridget +Charlotte +Estrella +Hailee +Isela +Lydia +Maribel +Nayeli +Abby +Casandra +Dakota +Denisse +Elisabeth +Gina +Heidi +Irene +Jailene +Kaylie +Kira +Kirsten +Nichole +Reina +Rhiannon +Ruth +Amelia +Annie +Annika +Ashleigh +Aylin +Catalina +Celina +Dana +Desirae +Edith +Fernanda +Micaela +Nadia +Rocio +Rose +Sadie +Tania +Alina +Angelique +Calista +Devin +Dianna +Harley +Haylee +Heaven +Itzel +Jaqueline +Josephine +Kasey +Kenya +Lucero +Marisela +Precious +Regina +Talia +Tatyana +Tianna +Yajaira +Yasmin +Abbey +Adilene +Aimee +Alize +America +Bailee +Celine +Ciera +Eden +Elise +Gisselle +Leilani +Lexi +Sidney +Tabitha +Tia +Tyra +Aliyah +Anisa +Arely +Asia +Ava +Callie +Camille +Camryn +Chelsey +Cristal +Damaris +Destinee +Emilee +Ericka +Felicia +Jacquelyn +Janelle +Luisa +Mckayla +Noemi +Odalys +Renee +Whitney +Allie +Anjelica +Aurora +Bernadette +Blanca +Deja +Flor +Ivy +Janessa +Judith +Kali +Kassidy +Madyson +Melody +Mya +Nathalie +Nina +Reagan +Skyler +Sylvia +Tamara +Theresa +Toni +Yadira +Yessenia +Yulissa +Addison +Alisha +Anita +Aspen +Carissa +Chanel +Gillian +Halle +Hallie +Jaclyn +Janette +Jasmyn +Juanita +Kailee +Kaleigh +Katlyn +Kaylin +Krista +Macy +Maddison +Mariela +Marley +Martina +Melina +Sasha +Serina +Sharon +Sophie +Taryn +Thalia +Virginia +Viridiana +Abril +Alycia +Aracely +Arielle +Ashlynn +Ashton +Aubree +Avery +Belen +Breana +Brianda +Brisa +Britney +Brook +Brynn +Carina +Carli +Clara +Diane +Eileen +Eliana +Eliza +Georgia +Gianna +Jaime +Janae +Jenny +Johanna +Kaitlynn +Kenia +Kori +Lena +Madalyn +Maricela +Marilyn +Nicolette +Shawna +Silvia +Stephany +Tierra +Tina +Tyler +Yaritza +Yazmin +Yessica +Yolanda +Alisa +Alysia +Arlene +Aryana +Beatriz +Carley +Cassie +Delia +Elaina +Elaine +Emely +Estefani +Fatima +Gracie +Iris +Jazmyn +Kaila +Kaley +Kamryn +Karli +Katarina +Katelin +Kayleigh +Kiley +Kyleigh +Magdalena +Malia +Marlene +Myranda +Nikki +Nizhoni +Peyton +Reanna +Rosario +Roxanne +Sarai +Sedona +Selina +Sheila +Alena +Alice +Ally +Angeles +Angelic +Annabelle +Anne +Antonia +Astrid +Audra +Bridgette +Cara +Carolyn +Christy +Cinthia +Colleen +Corina +Dalia +Danitza +Davina +Deborah +Ella +Emilie +Esther +Frances +Francesca +Hayden +Helen +Isis +Jailine +Jaycee +Jazmyne +Joy +Juliette +Karissa +Kelsy +Kinsey +Kristin +Laurel +Leanna +Lexie +Lexus +Lilliana +Lizette +Maggie +Marcella +Montana +Paloma +Sage +Sarahi +Savanah +Shae +Shelbie +Shyanne +Simone +Stacey +Stacy +Susana +Taya +Vanesa +Xena +Yareli +Alanna +Alexandrea +Amaya +Analisa +Angeline +Ann +Brianne +Brielle +Camila +Carlie +Chantel +Coral +Dayana +Delilah +Devyn +Dolores +Ebony +Eleanor +Elisha +Ellie +Emerald +Felicity +Francisca +Giovanna +Gladys +Helena +Iliana +Josie +Jovanna +Kari +Karly +Keely +Kelsi +Kiera +Kiersten +Lauryn +Leanne +Leslye +Lilly +Lisette +Logan +Lourdes +Lyndsey +Madisen +Makaela +Marcela +Mari +Marianna +Neida +Paris +Patience +Paula +Pricilla +Robin +Robyn +Serenity +Sonya +Tanya +Tess +Yvonne +Adela +Adrienne +Alayna +Alex +Alexi +Allyssa +Alyson +Anastacia +Angelita +Anyssa +Aria +Ashlie +Ayanna +Bryana +Caitlynn +Candace +Carlee +Celestina +Clare +Clarisa +Dallas +Danae +Dania +Deisy +Devon +Diamond +Domonique +Dora +Elysia +Estefania +Fabiola +Gemma +Gisell +Gissel +Haylie +Hilda +Ilse +Iridian +Ivette +Jacey +Janely +Jaylene +Jessie +Jocelyne +Justice +Kacey +Kacie +Kaela +Kaelyn +Karlee +Kasandra +Katerina +Kaya +Kaycee +Kayci +Kellie +Kelsie +Keyla +Krysta +Lidia +Lilian +Lluvia +Loren +Lorraine +Lucia +Maegan +Makaila +Maricella +Maryjane +Melinda +Mercedez +Mikala +Miya +Presley +Racheal +Randi +Rebeca +Rosemary +Ryan +Rylie +Shaelyn +Shaina +Shaye +Shayna +Stevie +Tanisha +Tonya +Yamilex +Abbigail +Abrianna +Aida +Alanis +Alexys +Ali +Alyssia +Amairani +Amari +Anaya +Anessa +Annabella +Annisa +Ariadna +Arlette +Aubrie +Austin +Ayla +Ayleen +Bailie +Barbara +Bella +Beverly +Bobbi +Brea +Breanne +Brooklynn +Catrina +Celia +Cora +Daria +Darian +Debra +Demi +Destany +Destini +Deyanira +Dina +Donna +Elle +Estefany +Frida +Genevieve +Glenda +Grecia +Gretchen +Griselda +Haleigh +Hali +Harlee +Haven +Imani +Ingrid +Irma +Izabella +Jackeline +Jackie +Jadyn +Jalen +Jana +Janeth +Jasmyne +Jazlyn +Joselin +Joseline +Juana +Julianne +Julisa +Kalista +Katheryn +Kathy +Kayleen +Kelli +Kelsea +Kianna +Kristy +Lexis +Lucy +Luna +Lyric +Macey +Madelynn +Madilyn +Madisyn +Maia +Makena +Mariam +Marianne +Marlee +Meaghan +Merissa +Mirella +Nataly +Nayely +Phoebe +Priscila +Rachelle +Ryann +Ryleigh +Sally +Santana +Sarina +Savana +Shaylynn +Shelbi +Stacie +Stella +Sydnee +Sydnie +Tammy +Tasia +Teagan +Tiara +Tiffani +Valentina +Yarely +Yazmine +Zoey +Abbie +Abriana +Acacia +Ailyn +Ainsley +Aiyana +Alesha +Alora +Alysa +Alyse +Anika +Arlyn +August +Betty +Bibiana +Bonnie +Brandie +Breeanna +Bria +Brieanna +Briseida +Brittani +Carol +Cecelia +Celena +Chandler +Charity +Charlene +Chase +Chelsie +Christa +Christian +Christiana +Connie +Cori +Courtnee +Dani +Darcy +Deandra +Desteny +Destinie +Devan +Edna +Elsa +Elva +Elvia +Elysa +Eryn +Essence +Frankie +Gabriele +Galilea +Imelda +Jaden +Jaida +Jaiden +Janice +Janie +Jayme +Jenifer +Jesse +Jimena +Joann +Jorden +Kalee +Kalie +Karime +Karlie +Katy +Kaylah +Kayley +Keeley +Kenna +Lea +Leandra +Leann +Lilia +Lynette +Magali +Maira +Maren +Marlena +Melisa +Meredith +Miah +Micayla +Monet +Monika +Mykayla +Nadine +No +Nubia +Octavia +Oriana +Parker +Paulette +Prisila +Raelyn +Rayven +Rita +Rochelle +Roxana +Roxanna +Saige +Sammantha +Sandy +Selene +Shay +Shaylee +Sheridan +Shyla +Skye +Skyla +Sommer +Starr +Stefanie +Susan +Tasha +Tatianna +Teanna +Tracy +Trinity +Tristen +Tyla +Vivica +Yahaira +Yanira +Yoselin +Ysela +Yuliana +Zaria +Samantha +Alexis +Emily +Ashley +Alyssa +Jessica +Hannah +Taylor +Jennifer +Madison +Victoria +Sarah +Elizabeth +Maria +Brianna +Lauren +Abigail +Jasmine +Megan +Nicole +Amanda +Emma +Kayla +Rachel +Savannah +Stephanie +Sierra +Vanessa +Sydney +Alexandra +Destiny +Michelle +Andrea +Marissa +Angelica +Mariah +Rebecca +Kaitlyn +Kimberly +Melissa +Gabrielle +Anna +Danielle +Amber +Haley +Jacqueline +Brittany +Morgan +Briana +Grace +Natalie +Hailey +Olivia +Ariana +Brooke +Isabella +Leslie +Julia +Cassandra +Alicia +Katherine +Sara +Daniela +Sabrina +Diana +Jordan +Allison +Gabriela +Karina +Shelby +Angela +Breanna +Courtney +Kaylee +Mackenzie +Sophia +Veronica +Karen +Karla +Daisy +Mikayla +Paige +Adriana +Alejandra +Alondra +Ana +Bailey +Cheyenne +Faith +Katelyn +Gabriella +Mary +Isabel +Mia +Chloe +Cynthia +Jenna +Alexa +Esmeralda +Kylie +Monica +Yesenia +Arianna +Jocelyn +Laura +Zoe +Bianca +Cassidy +Alexandria +Dominique +Erika +Katie +Evelyn +Autumn +Maya +Christina +Valeria +Alexia +Caitlin +Desiree +Guadalupe +Heather +Jazmin +Tatum +Celeste +Kelsey +Lindsey +Angel +Jamie +Makayla +Selena +Brenda +Crystal +Jade +Lizbeth +Miranda +Amy +Monique +Jasmin +Madeline +Serena +Michaela +Brittney +Kelly +Riley +Caitlyn +Giselle +Mckenna +Carolina +Elena +Kiara +Rosa +Tiffany +Kristen +Kylee +Patricia +Shannon +Claire +Erica +Adrianna +Angelina +Rebekah +Jazmine +Kassandra +Katrina +Leah +Priscilla +Erin +Jordyn +Melanie +Paola +Summer +Skylar +April +Audrey +Cierra +Genesis +Hope +Kathryn +Ariel +Chelsea +Makenna +Marisol +Naomi +Sandra +Claudia +Raquel +Trinity +Clarissa +Jaqueline +Ashlyn +Caroline +Kendra +Maritza +Valerie +Cecilia +Cindy +Lily +Reyna +Sofia +Ciara +Gloria +Teresa +Dakota +Isabelle +Lesley +Liliana +Carmen +Lillian +Mckenzie +Mercedes +Natalia +Ruby +Shania +Anahi +Esperanza +Hanna +Julianna +Kiana +Luz +Margaret +Bryanna +Camryn +Denise +Mariana +Meghan +Payton +Rachael +Rhiannon +Yasmin +Anissa +Catherine +Joanna +Lauryn +Paulina +Serenity +Brooklyn +Cristina +Hayley +Juliana +Kaitlin +Kate +Nancy +Alison +Anastasia +Brenna +Delaney +Gisselle +Kristina +Lindsay +Marina +Marisa +Salma +Sophie +Alana +Holly +Kailey +Kendall +Leticia +Raven +Renee +Rylee +Savanna +Tara +Alexus +Alissa +Amelia +Aubrey +Deanna +Lorena +Makenzie +Mayra +Sonia +Bailee +Camille +Kara +Lydia +Molly +Mya +Rose +Shayla +Vivian +Viviana +Allyson +Alma +Ashlee +Britney +Fatima +Fernanda +Heidi +Iris +Jailene +Kaitlynn +Kassidy +Krystal +Kyra +Lesly +Lizeth +Ruth +Tatiana +Tiana +Wendy +Yasmine +Cameron +Carly +Christine +Kathleen +Kira +Kyla +Lizette +Maribel +Mikaela +Miriam +Perla +Athena +Bethany +Casey +Elise +Hailee +Jillian +Kennedy +Kristin +Lacey +Mireya +Nayeli +Sage +Yajaira +Angelique +Carissa +Esther +Haylee +Julie +Kailee +Katelynn +Kirsten +Krista +Linda +Peyton +Sadie +Ava +Baylee +Berenice +Bridget +Dulce +Elisa +Ivy +Janet +Lisa +Martha +Natasha +Nina +Sienna +Tabitha +Whitney +Cheyanne +Daniella +Diamond +Jada +Kamryn +Kayleigh +Luisa +Madelyn +Pamela +Rocio +Sylvia +Aileen +Aurora +Calista +Elaina +Estrella +Felicia +Felicity +Hunter +Josephine +Judith +Julissa +Margarita +Sidney +Susana +Tamara +Tatyana +Tayler +Tori +Aimee +Alaina +Araceli +Ashleigh +Ashlynn +Avery +Aylin +Breana +Ellie +Emilee +Graciela +Irene +Jaden +Jaime +Larissa +Lisette +Marie +Micaela +Abby +Brandi +Carla +Dana +Deja +Iliana +Kali +Lexi +Maricela +Marisela +Melody +Noemi +Paula +Sarai +Serina +Virginia +Alize +Amaya +Anne +Anyssa +Asia +Aspen +Beatriz +Blanca +Brandy +Carina +Clara +Damaris +Emely +Estefania +Eva +Frances +Hallie +Jaclyn +Janelle +Jewel +Justine +Maddison +Marcela +Noelle +Rebeca +Sharon +Tessa +Theresa +Aaliyah +Alexandrea +Alisa +Annika +Barbara +Brisa +Destinee +Devin +Edith +Ella +Elyssa +Ericka +Flor +Galilea +Gillian +Heaven +Janae +Janeth +Jessie +Johanna +Josie +Lucia +Madelynn +Mallory +Marlene +Nichole +Regina +Ryan +Tia +Tianna +Yessenia +Yvette +Abril +Alina +Aliyah +Allie +Annabelle +Brianda +Celina +Cristal +Danitza +Desirae +Gina +Gissel +Itzel +Juanita +Kaley +Kasey +Katlyn +Kiley +Leilani +Makena +Marian +Marianna +Paloma +Sedona +Skyler +Stephany +Susan +Talia +Tyler +Viridiana +Yadira +Addison +Alayna +Alena +Alysia +Angie +Antonia +Ashton +Audra +Belen +Callie +Camila +Carolyn +Charlotte +Drew +Eden +Elissa +Genevieve +Gianna +Gladys +Hayden +Janette +Karissa +Kaylie +Kaylyn +Keely +Kianna +Macy +Madeleine +Madyson +Malia +Mc +Meagan +Melina +Micah +Notnamed +Odalis +Paris +Phoebe +Priscila +Rhianna +Sarahi +Savanah +Shyla +Sydnee +Tania +Tanya +Taryn +Yolanda +Abbey +Adilene +Alisha +Alyson +America +Arielle +Ayleen +Brynn +Carlie +Consuelo +Corina +Dalia +Francisca +Lupita +Maggie +Marilyn +Mckayla +Nataly +Nizhoni +Odalys +Raina +Roxanna +Rylie +Sasha +Shea +Thalia +Valentina +Yareli +Yulissa +Yvonne +Alia +Anita +Ashly +Bryana +Catalina +Ciera +Cinthia +Destiney +Devyn +Domonique +Donna +Eliana +Elisabeth +Elyse +Fabiola +Frida +Griselda +Helen +Jazmyn +Juliette +Kacey +Kasandra +Kierra +Lucy +Mara +Meredith +Moriah +Nicolette +Noelia +Reina +Roxanne +Sariah +Stacy +Tierra +Tyra +Zoey +Abbie +Adamaris +Adelina +Alanna +Alice +Allyssa +Annie +Ayanna +Ayla +Brittani +Brooklynn +Carol +Celia +Celine +Charity +Ciarra +Citlalli +Cora +Devon +Estefany +Francesca +Hillary +Ingrid +Isis +Joy +Juliet +Kaila +Kalee +Kaleigh +Kelli +Kenia +Kenya +Kiersten +Lisbeth +Lizet +Logan +Lourdes +Lucero +Madisen +Maricruz +Maryjane +Nadia +Olga +Pearl +Reanna +Rita +Ryann +Shandiin +Shelbie +Stacey +Yessica +Ailyn +Airam +Aiyana +Alycia +Alysa +Alyssia +Analicia +Angelita +Anika +Annette +Anya +Aracely +Aubree +Brianne +Caitlynn +Carlee +Carrie +Chandler +Czarina +Dariana +Deandra +Dianna +Emilie +Eve +Evelin +Fiona +Gema +Gisell +Gracie +Haleigh +Harley +Haylie +Ivana +Ivory +Jane +Jaquelin +Jayden +Jaylene +Jazlyn +Jenny +Joselyn +Kailyn +Kalista +Karli +Karly +Kenzie +Kourtney +Kristy +Laurel +Layla +Lilly +Madisyn +Magdalena +Maia +Maira +Mariela +Martina +Misty +Myah +Nidia +Reagan +Robyn +Rosalinda +Rosario +Saige +Shawna +Shyanne +Simone +Skye +Sonya +Stacie +Stefanie +Tatianna +Teagan +Tess +Tiara +Willow +Yamilet +Yaritza +Yasmeen +Abigayle +Acacia +Adrienne +Aleah +Alexsandra +Alexys +Anaya +Anjelica +Ann +Annalisa +Arely +Arleth +Astrid +Breann +Brielle +Cali +Calli +Cambria +Cara +Cassie +Chantel +Chelsey +Colleen +Dalila +Dallas +Darby +Dayanara +Deborah +Dora +Eliza +Elsa +Eunice +Gabriel +Hadley +Halle +Hollie +Imani +Irma +Isela +Jacob +Janessa +Jasmyn +Jayde +Jeanette +Jenifer +Jessika +Jhoana +Jocelyne +Jocelynn +Joelle +Julianne +Justice +Kaelyn +Karime +Karlee +Katia +Kaycee +Kellie +Kelsie +Kiera +Kristine +Krysta +Kyleigh +Leann +Lena +Lexie +Lianna +Lilianna +Lilliana +Loren +Manuela +Maren +Marlee +Mickayla +Montana +Nereida +Nora +Norma +Precious +Presley +Quinn +Regan +Rubi +Savana +Selina +Shay +Sianna +Sirena +Stevie +Tina +Unique +Ximena +Yamilex +Abbigail +Abriana +Alba +Alex +Aliah +Ally +Amani +Anabel +Anabelle +Anahy +Anais +Anisa +Arlene +Aubriana +Brissa +Brook +Caleigh +Caylee +Cecelia +Chantal +Christa +Chyanne +Ciana +Clare +Corinne +Dani +Danika +Dayna +Delia +Delilah +Destinie +Dylan +Eileen +Emmalee +Evangelina +Georgina +Gisel +Glenda +Haily +Hana +Ivette +Ivonne +Izabella +Jacey +Jacklyn +Jadyn +Jalen +Jaycee +Jeniffer +Josefina +Joyce +Juana +Kacie +Kalysta +Kari +Karlie +Katelin +Kathy +Kayleen +Kayley +Kaylynn +Keeley +Keila +Keyla +Korina +Kristi +Kyara +Leandra +Lesli +Lilian +Litzy +Macey +Maci +Makaila +Maranda +Marley +Meaghan +Mina +Natalee +Nathalia +Nikki +Nubia +Parker +Pricila +Rayna +Robin +Rochelle +Rosemary +Roxana +Sally +Shaina +Shanelle +Silvia +Skyla +Soledad +Stella +Toni +Tracy +Valarie +Vanesa +Vianey +Xochitl +Yulisa +Adela +Aliza +Amaris +Amberly +Anamaria +Annamarie +Annmarie +Antoinette +Areli +Aryanna +Asha +Ashlin +Aubrie +Ayana +Beatrice +Betty +Bonnie +Brandee +Bria +Brieanna +Caley +Candace +Carley +Casandra +Cayla +Chase +Chasity +Chastity +Christian +Chyna +Citlali +Codi +Connie +Danae +Daphne +Darian +Dayana +Dayanna +Destany +Destini +Devan +Diane +Eleanor +Elle +Ellen +Elvia +Ember +Eryka +Flora +Georgia +Grecia +Gretchen +Halie +Hazel +Isabell +Jackie +Jacquelyn +Jaimie +Jesse +Jessi +Jesus +Jewell +Jill +Joana +Johana +Joseline +Jovanna +Julieta +Julisa +Justina +Kai +Kaia +Kalea +Kalie +Kallie +Kaycie +Kaytlynn +Keanna +Kimberlee +Kirstin +Lacie +Laila +Laney +Lara +Larisa +Latasha +Lea +Leanna +Leanne +Leia +Leila +Lexus +Lia +Liberty +Lilia +Liseth +London +Lynette +Lynn +Macie +Madilynn +Magaly +Maliyah +Malorie +Mariam +Marlena +Mattison +Mckinley +Melinda +Mercy +Michel +Mikyla +Mirella +Mitzi +Mykala +Myra +Myranda +Nautica +Nia +Pauline +Pilar +Piper +Rachelle +Ramona +Samara +Selene +Shaelyn +Shanae +Shawntay +Shaylee +Sheila +Sheridan +Shiloh +Sky +Suzette +Tonya +Tyanna +Tyla +Xiomara +Yailin +Yazmin +Ysenia +Zaida +Zulema +Emily +Ashley +Samantha +Alexis +Jessica +Hannah +Madison +Alyssa +Jennifer +Brianna +Taylor +Victoria +Elizabeth +Sarah +Abigail +Lauren +Maria +Emma +Megan +Sydney +Jasmine +Andrea +Kayla +Vanessa +Destiny +Hailey +Nicole +Sierra +Rachel +Stephanie +Alexandra +Michelle +Savannah +Kimberly +Amanda +Natalie +Grace +Angelica +Amber +Jacqueline +Melissa +Olivia +Leslie +Anna +Isabella +Kaitlyn +Angela +Sophia +Trinity +Morgan +Julia +Marissa +Adriana +Ariana +Mackenzie +Rebecca +Ana +Danielle +Jordan +Haley +Katherine +Notnamed +Faith +Mariah +Alicia +Chloe +Sabrina +Sara +Brooke +Kaylee +Allison +Briana +Daniela +Diana +Bailey +Jenna +Cassandra +Maya +Shelby +Gabriela +Alexa +Brittany +Isabel +Gabriella +Alejandra +Gabrielle +Breanna +Katelyn +Karina +Arianna +Esmeralda +Jocelyn +Kylie +Yesenia +Tatum +Christina +Daisy +Jaqueline +Mia +Alondra +Karla +Zoe +Melanie +Erika +Paige +Courtney +Alexia +Veronica +Bianca +Cynthia +Karen +Laura +Angelina +Madeline +Makayla +Cheyenne +Valeria +Caitlin +Jade +Jasmin +Jazmin +Autumn +Evelyn +Mary +Miranda +Desiree +Carolina +Crystal +Guadalupe +Amy +Cassidy +Mikayla +Kelsey +Monica +Giselle +Riley +Kathryn +Sofia +Alexandria +Caitlyn +Kiara +Audrey +Erin +Serena +Celeste +Heather +Katie +Claire +Erica +Genesis +Angel +April +Natalia +Brenda +Lindsey +Madelyn +Tiffany +Claudia +Lillian +Sandra +Savanna +Dominique +Hope +Kelly +Mckenna +Ruby +Anahi +Carmen +Kassandra +Kendra +Jazmine +Katrina +Mckenzie +Monique +Selena +Bethany +Elena +Gloria +Leah +Lily +Reyna +Aubrey +Brooklyn +Clarissa +Isabelle +Paola +Skylar +Britney +Catherine +Litzy +Lizbeth +Adrianna +Brittney +Caroline +Kylee +Marisol +Meghan +Raquel +Shannon +Lindsay +Margaret +Mariana +Marina +Rosa +Viviana +Fernanda +Summer +Ariel +Denise +Kaitlin +Priscilla +Rylee +Brisa +Kate +Michaela +Nancy +Patricia +Esperanza +Kennedy +Lydia +Perla +Rebekah +Amaya +Anissa +Cecilia +Kyra +Makenna +Molly +Renee +Alana +Cameron +Cindy +Hanna +Naomi +Nina +Sadie +Valerie +Brenna +Ciara +Haylee +Jada +Mercedes +Aaliyah +Fatima +Holly +Jamie +Joanna +Lesly +Luz +Wendy +Casey +Jordyn +Liliana +Yasmin +Dakota +Delaney +Eliana +Hayley +Itzel +Juliana +Kristen +Marisa +Payton +Yvette +Dulce +Jaden +Katelynn +Kiana +Leticia +Miriam +Aileen +Avery +Deanna +Gillian +Gisselle +Lesley +Tessa +Abril +Alissa +Angelique +Aurora +Cierra +Hailee +Jacquelyn +Kyla +Nadia +Peyton +Ruth +Sophie +Abby +Annika +Asia +Charlotte +Chelsea +Christine +Julianna +Kendall +Kristina +Mikaela +Sidney +Amelia +Ava +Blanca +Camryn +Carla +Carly +Daniella +Julissa +Leilani +Madeleine +Marian +Maritza +Mayra +Serenity +Shayla +Skyler +Vivian +Alina +Anastasia +Baylee +Bryanna +Cristina +Edith +Elisa +Ivy +Kara +Kassidy +Kathleen +Kirsten +Lauryn +Paula +Rose +Tabitha +Yazmin +Ashlee +Brandi +Dariana +Destinee +Ellie +Jillian +Josephine +Noelia +Rachael +Shyanne +Sonia +Tara +Tatiana +Yasmine +Aliyah +Camille +Dana +Heidi +Julie +Kailey +Kamryn +Larissa +Lorena +Makenzie +Marlene +Melody +Mya +Reina +Salma +Tiana +Alexus +Alison +Alma +Araceli +Ashlyn +Ashlynn +Aylin +Brandy +Carolyn +Cielo +Deja +Diamond +Elise +Emilee +Hallie +Jenny +Kaitlynn +Luisa +Martha +Mckayla +Paulina +Sienna +Yamilet +Alaina +Allyson +Ashleigh +Athena +Iris +Isis +Janet +Kailee +Karissa +Kaycee +Kiley +Kristin +Lacey +Nichole +Taryn +Tori +Addison +America +Arlene +Casandra +Cheyanne +Emely +Estrella +Gina +Hunter +Justine +Kira +Linda +Lisa +Macy +Madisyn +Maggie +Mallory +Margarita +Natasha +Phoebe +Rhiannon +Sage +Teresa +Alize +Aspen +Ella +Estefania +Frida +Gianna +Jackeline +Janelle +Jayden +Jenifer +Johanna +Lilly +Sydnee +Sylvia +Zoey +Annie +Antonia +Belen +Brynn +Damaris +Desirae +Eden +Elisabeth +Esther +Genevieve +Iliana +Ivana +Karlee +Kiersten +Krista +Lexi +Maricela +Melina +Micaela +Nayeli +Nikki +Rosemary +Shania +Tania +Tanya +Alanna +Carissa +Cecelia +Ciera +Cora +Cristal +Georgia +Gracie +Haylie +Irene +Jessie +Kali +Karyme +Kiera +Krystal +Lizeth +Logan +Lucy +Macey +Marianna +Marie +Sarahi +Sarai +Savanah +Abbigail +Adilene +Adrienne +Alayna +Anyssa +Aracely +Ayanna +Beatriz +Calista +Carley +Celina +Deborah +Denisse +Emilia +Flor +Heaven +Janae +Kaila +Kayleigh +Kaylie +Kelsie +Layla +Madelynn +Madyson +Malia +Mariela +Marlen +Meagan +Meredith +Noemi +Raven +Reagan +Reanna +Serina +Tamara +Tyler +Viridiana +Yamileth +Yessica +Alisha +Anika +Anya +Berenice +Bridget +Cayla +Citlalli +Clara +Destiney +Devin +Estefany +Eunice +Frances +Haleigh +Hana +Harmony +Hayden +Ivanna +Janessa +Jaquelin +Jazmyn +Joselyn +Juanita +Judith +Kellie +Kianna +Lucero +Madisen +Marcella +Marisela +Mireya +Nicolette +Piper +Rocio +Rosalinda +Silvia +Stephany +Talia +Tayler +Thalia +Theresa +Tia +Tianna +Virginia +Whitney +Yahaira +Yareli +Yaritza +Alessandra +Alexys +Alisa +Anne +Arleth +Bailee +Catalina +Chantel +Dayana +Delilah +Eileen +Elaina +Eva +Eve +Evelin +Francesca +Gissel +Hailie +Halle +Harley +Helen +Ivette +Izabella +Jaida +Jaime +Jane +Joana +Joseline +Josie +Kasandra +Kathy +Macie +Maia +Maribel +Michell +Misty +Noelle +Nora +Odalis +Paris +Rosario +Sarina +Sasha +Scarlett +Shaylee +Skye +Sonya +Susan +Susana +Vianey +Yvonne +Aimee +Aiyana +Alena +Alysa +Analisa +Annabelle +Ashton +Cali +Callie +Cinthia +Elsa +Ericka +Graciela +Grecia +Irma +Jocelyne +Julianne +Karli +Katia +Kenia +Laila +Leila +Litzi +Lizette +Madalyn +Maddison +Makyla +Monserrat +Moriah +Nallely +Nataly +Paloma +Pamela +Precious +Presley +Rachelle +Shea +Willow +Yadira +Abbie +Abrianna +Alexandrea +Aliya +Alyson +Analicia +Angelita +Angie +Anjelica +Annette +Ayla +Bella +Breana +Briseida +Candace +Carina +Cassie +Charity +Daphne +Donna +Drew +Eliza +Emilie +Emmalee +Fabiola +Felicia +Felicity +Janeth +Jaylene +Joyce +Katelin +Katya +Keely +Kelli +Kourtney +Kyleigh +Lena +Lesli +Lidia +Lilianna +Lilliana +Lisette +Madilyn +Mara +Marilyn +Olga +Regina +Robyn +Roxanna +Sally +Selina +Sharon +Shayna +Stacy +Valentina +Yajaira +Yamile +Adelina +Airam +Alia +Allie +Allyssa +Alycia +Anakaren +Anaya +Ashli +Aubree +Aubrie +Audra +Azucena +Beyonce +Brianda +Bridgette +Brielle +Cara +Carol +Carrie +Charisma +Chasity +Devyn +Eleanor +Estefani +Halie +Helena +Hillary +Jesse +Jhoana +Johana +Juana +Kaley +Katarina +Leanna +Lexus +Lizet +Lluvia +London +Lourdes +Lucia +Maryann +Nathaly +Nayely +Nizhoni +Randi +Robin +Rylie +Sariah +Sedona +Shae +Shawna +Shelbie +Shyla +Sydnie +Tess +Tristen +Vanesa +Yessenia +Yolanda +Yuliana +Zoie +Abbey +Alexsandra +Alice +Anabel +Areli +Arely +Arriana +Aryanna +Ashlie +Bobbie +Brylee +Celia +Chiara +Colleen +Corina +Dafne +Dania +Dayna +Delia +Delicia +Domonique +Dora +Dylan +Elissa +Elle +Galilea +Harlie +Jaiden +Jayla +Jazlyn +Jeniffer +Jessenia +Jewel +Juliet +Justina +Karime +Kasey +Kayley +Kaylin +Keyla +Lexie +Lisbeth +Loren +Lyndsey +Magdalena +Maren +Mariafernanda +Marlee +Mattie +Melinda +Melisa +Natalee +Nikole +Odalys +Priscila +Rayna +Rebeca +Regan +Rhea +Rochelle +Ryan +Ryleigh +Sarena +Shay +Sheridan +Shyann +Susanna +Tatianna +Tiara +Unique +Vianney +Ximena +Xochitl +Yoselin +Yulissa +Acacia +Adamaris +Ali +Ambria +Anamaria +Anayeli +Angelic +Anisa +Ann +Annalisa +Arielle +Ashly +Ashtyn +Ayana +Berania +Bernadette +Bianey +Bonnie +Breanne +Brianne +Brissa +Britany +Brook +Bryana +Bryce +Cailin +Callista +Carlie +Celine +Chelsey +Ciarra +Cienna +Citlali +Clare +Consuelo +Cydney +Danitza +Darlene +Destany +Devon +Dezirae +Diane +Dianna +Ebony +Eleana +Elisia +Eloisa +Elyse +Elyssa +Essence +Estella +Evangelina +Gisell +Gladys +Griselda +Gwyneth +Hanah +Hayleigh +Isabela +Isabell +Isela +Izabel +Jacquelin +Jadyn +Jaelyn +Jana +Janell +Janette +Jasmyne +Jaycee +Jaycie +Jayda +Jazmyne +Jesenia +Jessa +Joceline +Jocelynn +Joelle +Jolie +Joselin +Joy +Justice +Kalista +Kallie +Karly +Katlyn +Kaya +Kenna +Kierra +Kilee +Kirstyn +Kristal +Kristine +Lacie +Laney +Laurel +Leslye +Liana +Lilian +Lyric +Maeve +Marbella +Mariadejesus +Mariaguadalupe +Mariam +Marley +Maryjane +Maryssa +Michele +Nadine +Nathalie +Nevaeh +Nia +Nidia +Nisa +Noel +Norma +Raina +Rayanne +Reilly +Riana +Roxana +Samara +Shantel +Sheila +Siena +Stacey +Star +Stevie +Stormy +Suzette +Tanner +Taya +Terra +Verania +Verenice +Vivianna +Yamilex +Yaquelin +Adeline +Ailyn +Aiyanna +Alea +Alex +Alexi +Allissa +Alora +Amari +Amya +Anahy +Anais +Anastacia +Anessa +Angeles +Anita +Aniya +Annamarie +Ariah +Arizona +Astrid +Aubry +Bobbi +Brittani +Briza +Caitlynn +Camila +Caylee +Chantal +Chelsie +Cheryl +Cheyanna +Christa +Christiana +Cianna +Colette +Cori +Dalila +Dallas +Delanie +Desire +Destinie +Dorothy +Elaine +Emmy +Fiona +Geraldine +Giavanna +Ginger +Gisela +Heidy +Hollie +Imani +Inez +Iran +Ivonne +Izabelle +Jackelyn +Jailene +Jami +Janice +Janie +Janine +Jayde +Jaylin +Jaylyn +Jaylynn +Jazlynn +Jessika +Josefina +Jovana +Juliette +Kaela +Kaelyn +Kalie +Katharine +Katheryn +Kathya +Kayleen +Kaylene +Kayli +Kaylynn +Keanna +Keara +Keegan +Kelsea +Kenya +Kinsey +Lacee +Laisha +Laiza +Leandra +Leeann +Leigha +Lia +Liberty +Lila +Lilia +Lorraine +Lupita +Lynda +Madilynn +Maegan +Marcela +Mariajose +Mariel +Marisleysis +Martina +Maura +Melany +Mirka +Mitzy +Montana +Myra +Nadya +Oralia +Pearl +Princess +Quinn +Rianna +Rita +Roxanne +Rubi +Ryann +Saige +Samanta +Santana +Savana +Sequoia +Shaina +Shealynn +Skyla +Stefani +Suzanne +Sydni +Tabatha +Tashina +Tehya +Tina +Toni +Trina +Tristan +Vania +Winter +Xiomara +Yamilette +Yanitza +Yenifer +Zaira +Ashley +Emily +Alexis +Madison +Samantha +Jessica +Hannah +Alyssa +Elizabeth +Brianna +Jennifer +Sarah +Victoria +Taylor +Maria +Andrea +Jasmine +Emma +Megan +Abigail +Vanessa +Hailey +Lauren +Nicole +Isabella +Destiny +Stephanie +Grace +Kayla +Natalie +Sydney +Michelle +Alexandra +Rachel +Olivia +Kaitlyn +Savannah +Anna +Chloe +Sophia +Jacqueline +Haley +Sierra +Leslie +Angelica +Melissa +Ariana +Amber +Morgan +Danielle +Amanda +Alexa +Faith +Julia +Mackenzie +Mia +Angelina +Trinity +Ana +Angela +Katherine +Jordan +Kaylee +Allison +Briana +Diana +Notnamed +Isabel +Makayla +Alicia +Cassandra +Gabriella +Arianna +Mariah +Marissa +Jenna +Gabrielle +Kimberly +Daniela +Karla +Alondra +Rebecca +Adriana +Brooke +Kylie +Sara +Zoe +Katelyn +Bailey +Shelby +Esmeralda +Jazmin +Autumn +Gabriela +Tatum +Alejandra +Breanna +Evelyn +Paige +Veronica +Alexia +Cynthia +Laura +Sabrina +Alexandria +Maya +Valeria +Daisy +Madeline +Jade +Karen +Natalia +Angel +Cheyenne +Jocelyn +Anahi +Courtney +Mikayla +Isabelle +Jasmin +Erin +Riley +Christina +Crystal +Erika +Mckenna +Brittany +Caitlin +Karina +Yesenia +Nayeli +Miranda +Guadalupe +Jazmine +Valerie +Bianca +Mary +Kathryn +Celeste +Ashlyn +Katie +Sofia +Brenda +Claire +Desiree +Giselle +Paola +Aaliyah +Mya +Naomi +Leah +Lily +Erica +Kylee +Serena +Wendy +Mariana +Melanie +Monica +Rylee +Amy +Brooklyn +Claudia +Hope +Tiffany +Caitlyn +Carolina +Denise +Dominique +Selena +Ava +Cassidy +Julianna +Kassandra +Rebekah +Nevaeh +Adrianna +Skylar +Fatima +Raquel +Audrey +Heather +Jaqueline +Jordyn +Liliana +Lillian +Margaret +Monique +Rosa +Summer +Bethany +Dulce +Elena +Genesis +Marisol +Priscilla +Clarissa +Julissa +Katrina +Lesly +Reyna +Ruby +Catherine +Kate +Lizbeth +Ariel +Brisa +Fernanda +Jillian +Joanna +Juliana +Kennedy +Meghan +Molly +Cindy +Kiana +Kiara +Kyra +Madelyn +Paulina +Payton +Perla +Carmen +Hanna +Itzel +Kendra +Nancy +Patricia +Cameron +Hayley +Kelsey +Luz +Marina +Caroline +Chelsea +Kelly +Litzy +Savanna +April +Brittney +Holly +Kaitlin +Makenna +Mayra +Alissa +Anissa +Ashlee +Aubrey +Britney +Cecilia +Gianna +Jada +Kyla +Lindsey +Mckenzie +Peyton +Amaya +Anastasia +Aylin +Berenice +Delaney +Gisselle +Hailee +Jayden +Julie +Mercedes +Miriam +Serenity +Sophie +Tara +Alison +Avery +Cierra +Kristen +Nadia +Abby +Angelique +Brenna +Camryn +Esperanza +Gracie +Kendall +Maggie +Cristina +Estrella +Jaiden +Macy +Maritza +Melody +Tatiana +Aliyah +Angie +Bryanna +Elise +Jamie +Katelynn +Kira +Lindsay +Noemi +America +Charlotte +Daniella +Elisa +Haylee +Kaitlynn +Layla +Marisa +Martha +Sage +Sandra +Tessa +Amelia +Dakota +Iris +Kailey +Michaela +Rose +Viviana +Yasmin +Ashleigh +Camille +Carly +Ella +Hallie +Kayleigh +Mikaela +Rachael +Teresa +Alana +Carla +Josephine +Leticia +Madeleine +Melina +Rhiannon +Sadie +Aileen +Annabelle +Athena +Calista +Cheyanne +Ciara +Eva +Gloria +Graciela +Jaden +Kathleen +Krystal +Lucia +Lydia +Maribel +Natasha +Nina +Sonia +Tiana +Alma +Annie +Araceli +Asia +Baylee +Cristal +Denisse +Desirae +Diamond +Eliana +Emely +Felicia +Judith +Kasandra +Kristin +Laila +Leilani +Makenzie +Mariela +Paloma +Regan +Ruth +Shea +Sienna +Tyler +Ximena +Yazmin +Adilene +Alina +Aracely +Citlalli +Daphne +Edith +Felicity +Heaven +Izabella +Jazmyn +Johanna +Kamryn +Kenya +Lesley +Nataly +Odalys +Shannon +Shayla +Vivian +Yvette +Alexus +Ashlynn +Belen +Carissa +Damaris +Ellie +Evelin +Halle +Heidi +Iliana +Johana +Kara +Noelia +Norma +Paula +Yaire +Aurora +Bailee +Blanca +Brissa +Celina +Deanna +Destinee +Emilee +Emilie +Hunter +Janet +Jazlyn +Justice +Kassidy +Lauryn +Madyson +Malia +Marilyn +Marlene +Noelle +Nora +Phoebe +Piper +Reagan +Reina +Renee +Tania +Tanya +Theresa +Yadira +Yajaira +Yaritza +Alessandra +Areli +Arely +Beatriz +Camila +Casandra +Christine +Cielo +Dana +Eileen +Elisabeth +Eliza +Estefania +Francisca +Jacquelyn +Kirsten +Linda +Lourdes +Lucy +Madisen +Madisyn +Mallory +Marley +Micaela +Priscila +Raven +Roxana +Salma +Sarai +Sasha +Sheyla +Tamara +Taryn +Tayler +Tori +Yamilet +Zoey +Alayna +Aspen +Carina +Dafne +Danitza +Dayana +Deja +Emilia +Esther +Flor +Grecia +Ivy +Jenny +Justine +Kailee +Kiera +Kristina +Lilly +Lisa +Lizeth +Lluvia +Meredith +Monserrat +Nicolette +Nikki +Odalis +Paris +Rebeca +Shyann +Silvia +Skyler +Thalia +Tia +Toni +Alize +Anayeli +Anne +Aryanna +Bella +Callie +Celia +Eden +Fabiola +Fiona +Frida +Harmony +Irene +Jadyn +Jayla +Joana +Joselyn +Josie +Juliette +Kaila +Kali +Karime +Kenia +Laisha +Larissa +Lilliana +Logan +Madalyn +Meagan +Mikaila +Mireya +Pamela +Precious +Sarina +Sharon +Susana +Tabitha +Violet +Virginia +Viridiana +Yamileth +Yasmine +Yuliana +Addison +Aimee +Aiyana +Alaina +Allyson +Allyssa +Ashton +Aubree +Carley +Catalina +Charity +Delilah +Estefany +Georgia +Gladys +Hayden +Janelle +Janessa +Jessie +Jovana +Kiley +Lacey +Liberty +Lizette +Lucero +Luisa +Magaly +Margarita +Marlen +Nallely +Nayely +Raina +Sariah +Sedona +Sidney +Skye +Stacey +Vivianna +Abigayle +Ainsley +Alyson +Analisa +Annika +Anyssa +Aria +Arlene +Brandi +Candace +Citlali +Dalia +Dayanara +Elaina +Gissel +Harley +Helena +Imani +Ingrid +Ivette +Jacklyn +Jacquelin +Jane +Jaquelin +Jimena +Jolene +Kaleigh +Kayli +Kaylie +Kenna +Keyla +Leila +Lexie +Lexus +Lidia +Lilian +Lorena +Macie +Mara +Marian +Maryjane +Nichole +Nubia +Reilly +Roxanna +Roxanne +Saige +Sarahi +Savana +Shania +Shyanne +Yolanda +Adamari +Alycia +Alysa +Anaya +Arlette +Ayanna +Brandy +Bridget +Brielle +Brooklynn +Carolyn +Ciera +Citlally +Clara +Gema +Gillian +Haylie +Ivanna +Jaidyn +Jaycee +Jolie +Julisa +Katarina +Katlyn +Keely +Kenzie +Krista +Kyleigh +Madelynn +Maia +Marie +Marisela +Nathalie +Nia +Reanna +Robyn +Savanah +Shaylee +Sheila +Sylvia +Talia +Yoselin +Abbey +Abril +Adamaris +Allie +Anai +Annette +Antoinette +Anya +Arielle +Ayana +Breana +Brianne +Candy +Casey +Cayla +Chantal +Chasity +Corinne +Elsa +Ericka +Eunice +Eve +Frances +Gina +Giovanna +Haleigh +Jackeline +Jackelyn +Joseline +Joy +Kaela +Karlee +Karyme +Kasey +Katia +Kayley +Kaylynn +Lisette +Lyric +Mariam +Melany +Nizhoni +Rosario +Ryleigh +Shayna +Sheridan +Skyla +Susanna +Tyra +Whitney +Yarely +Yulissa +Ailyn +Aisha +Alanna +Alba +Aliana +Aliza +Anais +Annalisa +Annalise +Antonia +Aubrie +Ayleen +Azul +Cara +Carli +Carlie +Carol +Charlize +Christa +Cinthia +Citlaly +Cora +Corina +Deborah +Destiney +Devin +Elaine +Genevieve +Isabela +Italia +Jasmyn +Jayde +Jazmyne +Jenifer +Jhoana +Jovanna +Kaelyn +Katelin +Kayleen +Keila +Kiersten +Lesli +Lexi +Macey +Madilyn +Magdalena +Marcella +Maricela +Mckayla +Melinda +Mira +Montana +Nyah +Presley +Rocio +Ryann +Rylie +Sandy +Serina +Shawna +Sonya +Stephany +Stevie +Susan +Sydnee +Sydni +Teagan +Tierra +Tristan +Vianney +Xiomara +Yareli +Abbigail +Adrienne +Alena +Ally +Amari +Anika +Anisa +Ariadna +Arleth +Aryana +Azucena +Barbara +Brianda +Britany +Brynn +Carrie +Carson +Charisma +Cheryl +Christiana +Dalila +Davina +Deana +Desire +Devon +Dina +Dorothy +Edna +Elexis +Emmalee +Francesca +Georgina +Gissell +Hana +Helen +Ilse +Ireland +Irlanda +Isis +Ivana +Izabelle +Jaclyn +Janette +Janice +Jaquelyn +Jeanette +Juanita +Julianne +Julieta +Kaia +Karely +Kathy +Kaylah +Kaylin +Laurel +Leanna +Lia +Liana +Marla +Maryann +Mercedez +Michele +Myah +Osiris +Pearl +Raegan +Reese +Rosalinda +Rosemary +Sherlyn +Simone +Stacy +Stella +Tatianna +Tianna +Unique +Vanesa +Yessenia +Yulianna +Zoie +Abigale +Abriana +Alexandrea +Alia +Alice +Alisha +Amara +Analicia +Anastacia +Angeles +Angelika +Angelita +Anita +Armida +Asha +Ashly +Astrid +Aviana +Ayla +Belle +Beyonce +Bridgette +Briseyda +Brook +Bryana +Bryce +Bryn +Candice +Cecelia +Chantel +Charlene +Chelsey +Cherish +Clare +Colette +Colleen +Danae +Danika +Devan +Devyn +Donna +Dora +Drew +Ebony +Eleanor +Elianna +Elyse +Ember +Gemma +Giana +Griselda +Gwendolyn +Hailie +Idalia +Ilianna +Isela +Jacey +Jayda +Jennyfer +Jewel +Joelle +Josette +Juana +Juliet +Kaley +Karissa +Karli +Kaya +Kelsea +Kelsi +Kelsie +Kendal +Kianna +Kori +Kourtney +Lacy +Lilith +Lorenia +Madysen +Maeve +Maranda +Marianna +Mariel +Milagros +Mirka +Moriah +Mykayla +Mylee +Myra +Nathaly +Nidia +Nikole +Nohemi +Paisley +Parker +Penelope +Pilar +Prisila +Quinn +Rachelle +Ramona +Rayna +Rhianna +Rosana +Ryan +Rylan +Scarlet +Selina +Shayne +Sheccid +Shirley +Shyla +Sky +Sonja +Suzette +Tatyana +Tracey +Valentina +Vianey +Xochitl +Yahaira +Yamilex +Yaneli +Yaquelin +Yuridia +Abbie +Abrianna +Acacia +Aleah +Alejandrina +Alexys +Alianna +Aliya +Alli +Alyna +Alynna +Alysia +Alyssia +Amya +Anabelle +Anali +Anjelica +Ann +Annabella +Anneliese +Arianne +Ariza +Arrianna +Ashlin +Betsy +Billie +Bobbi +Breann +Breeanna +Campbell +Cassie +Ceanna +Charli +Charlie +Chastity +Chelsie +Chiara +Christian +Ciarra +Dania +Danna +Dariana +Deisy +Dennise +Dianna +Elia +Elle +Elvia +Elysia +Emerald +Eryn +Estefani +Franchesca +Gisel +Gisell +Gretchen +Haven +Heidy +Hillary +Irma +Ivonne +Jahaira +Jaida +Jailene +Jailyn +Jalyn +Janae +Janna +Jaylen +Jaylin +Jayna +Jesse +Jessenia +Joan +Joceline +Jorden +Jordin +Joselin +Kacey +Kacie +Kami +Kari +Karlie +Keeley +Keira +Kellie +Kristal +Kristine +Kyndra +Lana +Laney +Lea +Leann +Leslye +Lila +Lilia +Lilianna +Lisbeth +Lorraine +Luna +Lupita +Lyla +Lynette +Maegan +Magali +Makena +Malaya +Mariadelcarmen +Maricella +Marisella +Marlee +Mason +Melisa +Melodie +Micah +Montserrat +Nadine +Natali +Noel +Octavia +Olga +Paityn +Payson +Quincy +Raelynn +Rayanne +Rena +Robin +Rochelle +Rosie +Sabina +Sally +Samara +Samaria +Santana +Saylor +Selene +Sequoia +Shae +Shaylynn +Shiann +Siena +Soledad +Soraya +Sydnie +Tamia +Tina +Vianca +Yara +Yessica +Yulisa +Yvonne +Emily +Ashley +Alexis +Samantha +Madison +Alyssa +Hannah +Jennifer +Emma +Isabella +Jessica +Elizabeth +Brianna +Maria +Abigail +Lauren +Sarah +Jasmine +Victoria +Taylor +Mia +Andrea +Hailey +Olivia +Megan +Kayla +Stephanie +Rachel +Grace +Sydney +Natalie +Michelle +Angelina +Alexandra +Sophia +Chloe +Savannah +Nicole +Vanessa +Destiny +Kimberly +Melissa +Leslie +Amanda +Daniela +Faith +Jacqueline +Anna +Haley +Kaitlyn +Ariana +Brooke +Angela +Evelyn +Morgan +Julia +Sierra +Alexa +Alondra +Arianna +Katherine +Isabel +Cassandra +Gabriella +Angelica +Valeria +Diana +Trinity +Alicia +Marissa +Lizbeth +Jordan +Paige +Kylie +Melanie +Kaylee +Ana +Sara +Amber +Karla +Mackenzie +Tatum +Zoe +Briana +Sofia +Aaliyah +Angel +Jocelyn +Adriana +Maya +Alexia +Gabriela +Jade +Allison +Danielle +Riley +Makayla +Alejandra +Madeline +Daisy +Jenna +Bianca +Katelyn +Audrey +Sabrina +Esmeralda +Gabrielle +Veronica +Alexandria +Rebecca +Autumn +Karina +Mary +Christina +Jasmin +Isabelle +Jazmin +Mariah +Mikayla +Cynthia +Yesenia +Courtney +Erin +Bailey +Nevaeh +Karen +Laura +Mariana +Notnamed +Shelby +Breanna +Katie +Rylee +Amy +Lily +Celeste +Crystal +Fernanda +Genesis +Giselle +Cheyenne +Kassandra +Kathryn +Carolina +Jordyn +Leah +Paulina +Desiree +Erika +Liliana +Molly +Valerie +Ashlyn +Miranda +Natalia +Paola +Serena +Brenda +Elena +Jamie +Ruby +Ava +Jazmine +Lindsey +Amelia +Avery +Cassidy +Guadalupe +Kennedy +Monica +Reyna +Kelly +Naomi +Priscilla +Caitlin +Caroline +Kylee +Monique +Aubrey +Caitlyn +Erica +Jaden +Mya +Ariel +Catherine +Claire +Ella +Juliana +Summer +Jada +Heather +Jillian +Nayeli +Ellie +Itzel +Julissa +Mckenna +Savanna +Tiffany +Anahi +Gloria +Joanna +Vivian +Brooklyn +Cecilia +Gracie +Jaqueline +Maritza +Nancy +Perla +Rosa +Wendy +Delaney +Hope +Julianna +Kelsey +Raquel +Rebekah +Skylar +Adrianna +April +Araceli +Fatima +Lillian +America +Elise +Sadie +Cierra +Dominique +Dulce +Esperanza +Katrina +Kira +Kristen +Madelyn +Mercedes +Serenity +Viviana +Anastasia +Brittany +Denise +Iris +Kate +Nadia +Sophie +Abby +Claudia +Kiara +Makenzie +Sienna +Bryanna +Carla +Clarissa +Leticia +Litzy +Marisol +Patricia +Selena +Ximena +Yasmin +Haylee +Jayden +Kailey +Kiana +Mckenzie +Payton +Alana +Amaya +Carmen +Hanna +Holly +Miriam +Reagan +Tamara +Aliyah +Angelique +Brisa +Camryn +Josephine +Kaitlin +Lesly +Makenna +Ashlee +Bethany +Gianna +Hayley +Kendall +Leilani +Lydia +Marisa +Meghan +Rachael +Sandra +Alina +Allyson +Alma +Aracely +Ashleigh +Brittney +Emilee +Kathleen +Layla +Lizeth +Melody +Michaela +Britney +Cristina +Kyla +Linda +Macy +Melina +Rylie +Alissa +Cameron +Camila +Daniella +Halle +Janeth +Julie +Katelynn +Kyra +Lindsay +Luz +Margaret +Marlene +Natasha +Nina +Tiana +Zoey +Ashlynn +Christine +Cindy +Dayana +Estefania +Hailee +Heidi +Kendra +Krystal +Mikaela +Renee +Tara +Teresa +Ashanti +Athena +Casey +Chelsea +Dana +Gisselle +Hayden +Janet +Mayra +Regan +Aimee +Alison +Annabelle +Annika +Brandy +Brooklynn +Camille +Ciara +Danna +Denisse +Emely +Estrella +Kiley +Lexi +Lilly +Mariela +Peyton +Shannon +Sonia +Addison +Aileen +Alaina +Annette +Blanca +Casandra +Dakota +Eliana +Elisa +Eliza +Izabella +Jacquelyn +Jadyn +Jimena +Judith +Kristina +Marina +Martha +Nataly +Sarahi +Sasha +Tessa +Yadira +Yareli +Annie +Bridget +Damaris +Delilah +Destinee +Donna +Esther +Felicity +Gina +Janelle +Johanna +Joselyn +Kirsten +Lisa +Madeleine +Maggie +Maribel +Marie +Raven +Sage +Shayla +Talia +Yvette +Alexus +Arely +Asia +Aurora +Aylin +Bella +Breana +Brynn +Calista +Diamond +Edith +Jaiden +Kailee +Kaitlynn +Kaya +Mireya +Rhiannon +Taryn +Violet +Yamilet +Yasmine +Yazmin +Yuliana +Arlette +Callie +Clara +Deanna +Eden +Eva +Iliana +Irene +Kali +Kristin +Lacey +Lauryn +Lorena +Mallory +Noelia +Susana +Tabitha +Tania +Theresa +Tori +Yamileth +Yulissa +Abbey +Abril +Alessandra +Angie +Anika +Anissa +Bailee +Belen +Berenice +Fabiola +Jaelyn +Kaia +Kara +Kenia +Kianna +Larissa +Lucy +Madyson +Neida +Noelle +Salma +Sarai +Arleth +Carissa +Carly +Charlotte +Dayanara +Evelin +Genevieve +Graciela +Grecia +Jazmyn +Justice +Justine +Kaila +Kassidy +Kayleigh +Laila +Lexus +Lilian +Logan +Marilyn +Monserrat +Reese +Roxana +Ryan +Sariah +Sedona +Skyler +Sylvia +Yajaira +Alanna +Alayna +Aria +Ayanna +Baylee +Brandi +Brenna +Cristal +Eileen +Eve +Francesca +Frida +Heaven +Ivy +Janae +Jazlyn +Jenny +Joseline +Josie +Joy +Juliette +Kaelyn +Kamryn +Kaylie +Kenya +Lesley +Lizette +Paris +Piper +Rose +Savanah +Shea +Susan +Tatiana +Teagan +Yvonne +Annabella +Anya +Anyssa +Arlene +Aubrie +Ayleen +Beatriz +Carlie +Celina +Cielo +Citlaly +Emilie +Flor +Galilea +Gemma +Georgina +Helena +Isis +Ivanna +Jaidyn +Kaiya +Karissa +Kasandra +Laisha +Leila +Madisyn +Malia +Marisela +Mckayla +Priscila +Rachelle +Shyanne +Tayler +Tia +Valentina +Zoie +Aliya +Allie +Alyson +Amara +Annalisa +Ayla +Cara +Chantal +Citlali +Dania +Desirae +Destiney +Eleanor +Gillian +Giovanna +Hallie +Isabela +Jenifer +Keila +Keyla +Lila +Lilliana +Lisbeth +Lluvia +Marianna +Maricela +Marley +Miah +Noemi +Odalys +Pilar +Rosario +Ryleigh +Sandy +Selene +Shania +Stephany +Tanya +Whitney +Willow +Yaquelin +Yaritza +Yoselin +Abbie +Anabelle +Aniya +Annalise +Aspen +Azucena +Cecelia +Ciera +Dalia +Danae +Danitza +Davina +Elyse +Estefany +Hilda +Hunter +Jaclyn +Joana +Joselin +Juliet +Karime +Kyleigh +Laurel +Lea +Leanna +Lena +Liana +Liberty +Luisa +Madilyn +Madisen +Maricella +Micaela +Nadine +Nizhoni +Paloma +Paula +Rayna +Regina +Rocio +Selina +Thalia +Tiara +Virginia +Yolanda +Abbigail +Adamaris +Alize +Allyssa +Alycia +Alysha +Analisa +Anaya +Aryana +Carlee +Carolyn +Catalina +Celine +Cora +Danika +Daphne +Darlene +Deja +Estefani +Eunice +Frances +Georgia +Hailie +Harley +Haven +Irma +Ivana +Janette +Jaquelin +Jayda +Johana +Juanita +Karely +Karyme +Kasey +Katelin +Kenzie +Kiersten +Maddison +Maren +Margarita +Marian +Maryjane +Nayely +Penelope +Phoebe +Precious +Princess +Raina +Rebeca +Reina +Rianna +Rita +Ryann +Savana +Shaylee +Sidney +Stacy +Sydnee +Taya +Tina +Yessenia +Zaida +Adamari +Adilene +Airam +Alex +Alisa +Alisha +Amaris +Analicia +Anisa +Areli +Arielle +Ashly +Ashton +Aubree +Azul +Beyonce +Brianda +Caitlynn +Cali +Candice +Carina +Cinthia +Clare +Dafne +Dayanna +Devon +Devyn +Elisabeth +Elysia +Emelia +Ericka +Felicia +Gissel +Haleigh +Ingrid +Ivette +Izabel +Janice +Jayde +Jeanette +Jessie +Jolene +Julianne +Kaela +Katlyn +Kaylyn +Keely +Kirstin +Krista +Lana +Lupita +Macey +Macie +Makena +Maliyah +Melisa +Michele +Montserrat +Nichole +Nicolette +Presley +Reilly +Rubi +Ruth +Samara +Shandiin +Shayna +Sheridan +Sheyla +Skyla +Sonya +Tianna +Tyler +Yazmine +Yessica +Aidan +Ailyn +Alysia +Anais +Annamarie +Anne +Arabella +Ariella +Aryanna +Astrid +Ayesha +Barbara +Belinda +Brianne +Brielle +Briseida +Bryana +Carley +Carol +Celia +Charlize +Chelsey +Christa +Cianna +Dalilah +Dani +Dariana +Dora +Elaina +Elaine +Emili +Emilia +Evelynn +Fiona +Francisca +Geneva +Gia +Gwendolyn +Hana +Haylie +Helen +Jackie +Jacquelin +Jaime +Jane +Janessa +Jaquelyn +Jasmyn +Jaycee +Jayla +Jaylynn +Jessika +Jocelynn +Jordin +Kari +Karli +Karly +Katarina +Kaycee +Kayli +Kaylin +Kaylynn +Keara +Kendal +Keren +Kiera +Kierra +Krysta +Leann +Leslye +Lianna +Lilianna +Lola +Madysen +Marcela +Marlee +Meagan +Melany +Melinda +Nailea +Nathaly +Nelly +Nereida +Nikki +Pamela +Quinn +Robyn +Rosalie +Saige +Sarina +Sayra +Scarlet +Scarlett +Serina +Sharon +Shawna +Skye +Skylee +Stella +Treasure +Vanesa +Vianey +Viridiana +Yadhira +Yahaira +Acacia +Addyson +Adeline +Aislinn +Aiyana +Alani +Alena +Alexzandra +Alia +Alice +Alivia +Aliza +Alora +Alysa +Amalia +Aneesa +Anjelica +Ann +Antoinette +Arden +Arriana +Ashtyn +Audra +Brylee +Bryn +Cailee +Cassie +Cecily +Celestina +Charity +Cheyanne +Demi +Devin +Dezirae +Dolores +Ebony +Edna +Elexis +Elissa +Elle +Elliana +Elsa +Elvia +Emerald +Emmalee +Evalyn +Evangelina +Gissell +Halie +Hazel +Ireland +Isabell +Isela +Jackeline +Jayleen +Jaylene +Jazlynn +Joann +Jolie +Juana +Kacie +Kai +Kaleigh +Karlee +Karolina +Kathy +Katia +Katya +Kaytlin +Kelsie +Kenna +Kimberlin +Kristy +Lacie +Leandra +Leilany +Lesli +Lexie +Lexis +Lilia +Lillianna +Litzi +Lizbet +Lucero +Lucia +Magali +Maia +Marcella +Mariajose +Mariel +Meadow +Melani +Meredith +Micayla +Milagros +Monet +Myra +Natalee +Naydelin +Nia +Nikita +Noor +Nubia +Nya +Parker +Pearl +Phoenix +Pricilla +Raegan +Rayne +Robin +Rochelle +Salina +Shauna +Siera +Silvia +Soraya +Stefani +Tea +Unique +Xochitl +Yanitza +Zariah +Abigayle +Adelina +Adrienne +Ainsley +Akira +Alaysia +Aleena +Alexcia +Alexsandra +Aliah +Aliana +Ally +Amani +Amari +Ambria +Amya +Anai +Anessa +Angeles +Angelic +Aniah +Antonia +Arleen +Aundrea +Ayana +Beth +Bridgette +Brooklynne +Cailyn +Camilla +Carli +Cassady +Cayla +Caylee +Charisma +Chasity +Christiana +Christianna +Christy +Cinthya +Citlalli +Consuelo +Corrina +Cydney +Daija +Dallas +Danica +Dasia +Destyni +Dianna +Dylan +Elianna +Elicia +Ellen +Ember +Estephanie +Giana +Giavanna +Gisel +Gisela +Gisell +Griselda +Haili +Harlie +Hayle +Holland +Idaly +Itzayana +Jaida +Jaide +Jana +Janie +Jaylee +Jaylin +Jaylyn +Jayna +Jazmyne +Jesenia +Jessi +Jhoana +Jisselle +Jocelyne +Jodi +Josefina +Joyce +Justyce +Kalia +Kallie +Kambria +Karisma +Kaylene +Keana +Keanna +Kenisha +Kennady +Kierstyn +Kori +Kristal +Kylah +Lara +Laysha +Leyla +Lina +Lisette +Lizet +Lizzette +Loren +Lourdes +Luna +Lyndsey +Maci +Madelynn +Magaly +Magdalena +Maisy +Mariadelcarmen +Mariadelosang +Mariafernanda +Mariaguadalupe +Marlen +Mattie +Melannie +Melia +Merari +Micah +Mikala +Miracle +Mitzy +Moriah +Myah +Myranda +Nallely +Nathalia +Naya +Nicolle +Noelani +Nuvia +Nyah +Odalis +Paisley +Raylynn +Reanne +Reece +Rosalinda +Rosemary +Rosie +Rosita +Rowan +Rylin +Saray +Shaelyn +Shakira +Shealyn +Sheila +Shelbie +Shyla +Simone +Sirena +Stevie +Symone +Tamika +Tammy +Teresita +Tracy +Triniti +Vianney +Wynter +Yaire +Yara +Yarely +Yasmeen +Zenaida +Zulema +Emily +Emma +Ashley +Alexis +Alyssa +Samantha +Isabella +Madison +Abigail +Hannah +Elizabeth +Jessica +Jennifer +Victoria +Brianna +Maria +Sarah +Olivia +Grace +Sophia +Andrea +Hailey +Taylor +Jasmine +Natalie +Lauren +Mia +Kayla +Stephanie +Alexa +Chloe +Savannah +Alexandra +Megan +Vanessa +Leslie +Kaitlyn +Sydney +Michelle +Angelina +Kimberly +Nicole +Ariana +Destiny +Mackenzie +Faith +Trinity +Daniela +Rachel +Morgan +Brooke +Anna +Melissa +Amanda +Paige +Alondra +Arianna +Jocelyn +Angelica +Evelyn +Gabriela +Karla +Marissa +Diana +Angela +Kylie +Lizbeth +Jordan +Kaylee +Melanie +Gabriella +Sierra +Katelyn +Mariah +Adriana +Briana +Jacqueline +Maya +Alejandra +Valeria +Ava +Makayla +Isabel +Alexia +Ella +Julia +Tatum +Ana +Sofia +Haley +Jade +Alicia +Katherine +Cassandra +Sara +Zoe +Jazmin +Jenna +Daisy +Rebecca +Allison +Karen +Bianca +Madeline +Amber +Amy +Bailey +Karina +Riley +Autumn +Esmeralda +Lily +Shelby +Aaliyah +Kylee +Danielle +Gabrielle +Giselle +Isabelle +Mya +Sabrina +Brooklyn +Breanna +Natalia +Leah +Nevaeh +Celeste +Angel +Avery +Jordyn +Juliana +Katie +Veronica +Audrey +Lillian +Alexandria +Naomi +Valerie +Courtney +Guadalupe +Kassandra +Laura +Mary +Crystal +Kathryn +Liliana +Perla +Rylee +Reyna +Amelia +Carolina +Alana +Amaya +Aubrey +Genesis +Ruby +Desiree +Fatima +Miranda +Ariel +Christina +Fernanda +Adrianna +Cynthia +Kate +Madelyn +Mariana +Notnamed +Erin +Jada +Monique +Priscilla +Claudia +Jasmin +Marisol +Mikayla +Ximena +Yesenia +Catherine +Erika +Jazmine +Julianna +Kiara +Lindsey +Monica +Aliyah +Mckenna +Rosa +Tiffany +Ashlyn +Cheyenne +Gianna +Sadie +Brenda +Camila +Elena +Jillian +Paulina +Rebekah +Caroline +Denise +Haylee +Jamie +Kristen +Nadia +Payton +Serenity +Vivian +Caitlyn +Mckenzie +Abby +Carmen +Dulce +Gracie +Hope +Kennedy +Leilani +Molly +Sandra +Serena +Yasmin +Anahi +Claire +Summer +Addison +Delaney +Esperanza +Itzel +Kailey +Kendall +Lydia +Makenna +Nayeli +Brenna +Jaqueline +Kelly +Savanna +Tatiana +Wendy +Aileen +America +April +Cassidy +Ellie +Frida +Kendra +Maritza +Mercedes +Anissa +Caitlin +Cecilia +Cierra +Cristina +Jaden +Jayden +Joanna +Julissa +Kyla +Nancy +Paris +Heather +Jadyn +Jimena +Meghan +Skylar +Viviana +Zoey +Cindy +Clarissa +Elise +Makenzie +Paola +Alize +Eva +Peyton +Sophie +Aracely +Bryanna +Eliana +Katelynn +Lesly +Raquel +Tania +Angelique +Erica +Gloria +Kyra +Sage +Aurora +Brittney +Danna +Hanna +Iris +Julie +Kira +Layla +Mayra +Rylie +Sarai +Alma +Ashlynn +Brittany +Daniella +Hayden +Joselyn +Katrina +Kiana +Leila +Marlene +Melody +Natasha +Raven +Alison +Anastasia +Araceli +Ashlee +Athena +Bethany +Brynn +Carla +Chelsea +Evelin +Heaven +Izabella +Kelsey +Mireya +Patricia +Reagan +Selena +Shayla +Bella +Britney +Charlotte +Dayanara +Denisse +Eliza +Gisselle +Heidi +Jaiden +Lexi +Lindsay +Lisa +Macy +Marisa +Nataly +Pamela +Annabelle +Belen +Dana +Grecia +Kara +Karyme +Leticia +Melany +Taryn +Tiana +Yazmin +Alissa +Arely +Ayanna +Ciara +Desirae +Elisa +Hayley +Josephine +Kaitlin +Kiley +Krystal +Lesley +Lucy +Margaret +Martha +Nina +Shannon +Teresa +Yuliana +Ainsley +Angie +Anika +Annika +Dakota +Dayana +Eden +Emilia +Estrella +Genevieve +Helen +Kathleen +Larissa +Lilly +Linda +Luz +Marina +Miriam +Reese +Rose +Talia +Brisa +Delilah +Hailee +Halle +Isabela +Janelle +Kamryn +Sasha +Valentina +Yadira +Alaina +Arleth +Beatriz +Camryn +Carly +Cheyanne +Christine +Daphne +Dominique +Judith +Kassidy +Kaylie +Keyla +Laila +Litzy +Lizeth +Maggie +Malia +Noemi +Yamileth +Yaritza +Alayna +Anaya +Angeles +Arlette +Ashleigh +Asia +Aylin +Cadence +Carissa +Cristal +Elaina +Emely +Graciela +Janeth +Jayda +Jazmyn +Jenifer +Kenia +Kirsten +Lia +Logan +Lorena +Mikaela +Nizhoni +Noelle +Priscila +Yessenia +Adilene +Allie +Aspen +Camille +Casandra +Eileen +Galilea +Harley +Holly +Janessa +Kali +Kasandra +Krista +Madyson +Mallory +Maribel +Mckayla +Melina +Michaela +Paula +Presley +Rhiannon +Sedona +Stephany +Tabitha +Tessa +Yasmine +Abril +Alanna +Alexus +Alice +Allyson +Arlene +Aryanna +Berenice +Blanca +Bridget +Clara +Jacquelyn +Margarita +Mariela +Ryan +Shania +Sidney +Sienna +Thalia +Tia +Aimee +Alina +Anisa +Anyssa +Baylee +Deanna +Diamond +Dylan +Elisabeth +Esther +Hallie +Iliana +Isis +Justice +Kaitlynn +Karissa +Kendal +Kyleigh +Laisha +Lilia +Lilian +Madalyn +Marian +Nichole +Paloma +Piper +Rocio +Ryleigh +Susan +Tatyana +Abbey +Alessandra +Alisha +Alyson +Annie +Anya +Barbara +Brandi +Brielle +Estefania +Jaedyn +Joana +Justine +Kailee +Kayden +Kayleigh +Kenya +Kristina +Lacey +Laci +Liana +Lucia +Luisa +Marianna +Marisela +Maryjane +Nia +Noelia +Nora +Phoebe +Rebeca +Samara +Sherlyn +Simone +Skyler +Tara +Whitney +Willow +Yvette +Aiyana +Alena +Alisa +Ally +Areli +Brandy +Calista +Callie +Carina +Destinee +Elle +Elyse +Emilie +Felicia +Hailie +Haven +Haylie +Jaidyn +Janet +Jaquelin +Kasey +Kaylin +Lluvia +Maci +Miah +Noel +Regina +Sarahi +Savanah +Selina +Shea +Tori +Vanesa +Violet +Yahaira +Aidan +Alexys +Anne +Ariadna +Ariza +Aubree +Candace +Charity +Cielo +Dalia +Danitza +Deja +Eleanor +Emilee +Griselda +Hazel +Heidy +Ivy +Joslyn +Kailyn +Karely +Karime +Keira +Lana +Lexus +Lilianna +Lillianna +Lisbeth +Lizette +Maddison +Madelynn +Maia +Marie +Marley +Meagan +Micaela +Monserrat +Penelope +Rachael +Regan +Renee +Roxanne +Ruth +Sariah +Skye +Sonia +Stella +Sydnee +Tamara +Tyra +Virginia +Yajaira +Abbie +Abbygail +Alex +Amya +Annette +Arielle +Arly +Ashanti +Ayla +Brooklynn +Carley +Chanel +Charlize +Citlali +Citlaly +Damaris +Dania +Devyn +Elianna +Elsa +Ericka +Estefany +Felicity +Frances +Harmony +Helena +Hunter +Ivanna +Janae +Jasmyn +Jaylynn +Jazlyn +Jenny +Johanna +Jolie +Kaleigh +Karlee +Lainey +Lauryn +Luna +Madilyn +Maricela +Maricella +Marilyn +Roselyn +Scarlett +Sharon +Stacey +Stacy +Vianey +Yareli +Yoselin +Yulissa +Abriana +Acacia +Adelina +Adrienne +Alani +Aliza +Alysia +Analisa +Angelita +Annabella +Annalisa +Antonia +Aubrianna +Brissa +Cambria +Camilla +Cara +Casey +Corina +Dawn +Dayanna +Delia +Donna +Edith +Estefani +Fiona +Gillian +Gisell +Gladys +Haleigh +Imani +Ivana +Jackeline +Jane +Jaycee +Jocelynn +Johana +Josefina +Josie +Joy +Juliet +Juliette +Julisa +Kaley +Kathy +Katlyn +Kayley +Kenzie +Kiera +Lena +Lexie +Lilliana +Lola +Makena +Melisa +Myah +Myra +Nicolette +Nikki +Rayna +Robyn +Samira +Sheila +Sheyla +Theresa +Tianna +Xiomara +Yaquelin +Ailyn +Airam +Aliana +Aliya +Amara +Amari +Amaris +Analise +Anastacia +Aria +Arissa +Aryana +Astrid +Ayleen +Bailee +Breana +Bridgette +Cameron +Catalina +Cecelia +Celia +Celina +Celine +Christa +Cinthia +Cora +Destiney +Elaine +Elyssa +Eunice +Gissel +Gwendolyn +Halie +Ingrid +Ireland +Isabell +Jacey +Jaelyn +Jaida +Jasmyne +Jesse +Jessie +Jewel +Kaia +Katelin +Kaylynn +Keila +Kelsie +Kianna +Kristin +Lila +Lilyana +Maliah +Marcela +Mariel +Marlen +Meredith +Mirka +Natalya +Nathalia +Norma +Precious +Quinn +Raegan +Roxana +Roxanna +Rubi +Ryley +Selah +Shyann +Tammy +Toni +Trista +Vianney +Yvonne +Adamaris +Aisha +Alannah +Alivia +Alora +Alycia +Amira +Anais +Analicia +Aneesa +Angeline +Ann +Ariella +Ashly +Ashton +Audra +Azul +Brylee +Carolyn +Cassie +Cinthya +Dafne +Daija +Danae +Davina +Dayna +Delanie +Devon +Evangelina +Evelynn +Flor +Francesca +Francisca +Georgia +Georgina +Gizelle +Irlanda +Isela +Izabel +Izabelle +Jacquelin +Jaime +Janice +Jayde +Jayla +Jaylene +Jazlynn +Jesenia +Jiselle +Joselin +Joseline +Kacey +Kacie +Kaila +Karli +Kayli +Kelli +Kristal +Laney +Lesli +Leyla +Lilyanna +Madisyn +Magdalena +Maile +Mariam +Marlee +Meadow +Melinda +Mikala +Mollie +Monet +Natalee +Nathalie +Nayzeth +Odalys +Paulette +Rachelle +Ramona +Rhea +Rheanna +Rosario +Ryann +Salma +Shandiin +Shayna +Shirley +Shyanne +Sol +Stefanie +Susana +Sylvia +Taliyah +Tatianna +Tiara +Tina +Vivianna +Xitlaly +Yarely +Yessica +Yolanda +Zaira +Abigayle +Adeline +Alysa +Alyse +Amairany +Amberly +Ania +Anita +Aniya +Annaliese +Arabella +Arlet +Arlyn +Ashtyn +Aubrie +Babygirl +Beatrice +Beyonce +Briseida +Brook +Bryana +Caitlynn +Carlee +Carol +Caylee +Cerenity +Ciana +Cienna +Corinne +Dani +Deisy +Delila +Demi +Devin +Diane +Dora +Dorian +Ebony +Fabiola +Gema +Gina +Hali +Ilse +Imelda +Irma +Ivette +Ivonne +Jaclyn +Jaycie +Jaylee +Jaylin +Jayme +Joelle +Jolene +Juanita +Karolina +Katarina +Katia +Keely +Kenna +Kiarra +Kiersten +Kylah +Lacy +Lailah +Laysha +Leanna +Leona +Liberty +Lina +Lisette +Lizbet +Lizet +Lori +Lourdes +Lucero +Lyla +Macey +Macie +Madeleine +Madisen +Marcella +Mariaisabel +Marla +Melani +Michel +Michell +Milan +Mira +Moriah +Mykaela +Nadine +Natali +Nubia +Nyssa +Oriana +Princesa +Raelynn +Randi +Rhianna +Rianna +Rosemary +Sabina +Sally +Sandy +Santana +Savana +Shianne +Shreya +Silvia +Sonya +Tanya +Tatumn +Tristen +Viridiana +Yanet +Abigale +Adrian +Aislinn +Akasha +Aleah +Aleena +Alia +Amalia +Amelie +Amerie +Amiyah +Anabelle +Anahy +Anette +Angelena +Aniyah +Anja +Annabel +Annalise +Aranza +Arianne +Austin +Avril +Ayana +Bernadette +Betsy +Billie +Breanne +Bree +Breeana +Bria +Brianne +Bridgett +Brynna +Byanca +Cailin +Carlie +Charisma +Charlee +Chelsey +Chiara +Christie +Ciera +Colleen +Dallas +Danika +Darian +Devan +Ellen +Elsie +Ember +Emmaleigh +Eryn +Estella +Estephanie +Francis +Gia +Gisela +Gisele +Gissell +Idaly +India +Irene +Iyana +Izabela +Jacie +Jackelin +Jalen +Jaquelyn +Jayleen +Jazlynne +Jocelin +Joceline +Josselyn +Journey +Joyce +Juana +Judy +Kai +Kaiya +Kalli +Kallie +Karlie +Karly +Katerina +Katharine +Kaya +Kaydence +Kaylah +Kaylen +Kaylyn +Keana +Keara +Keiry +Kelley +Kelsi +Kristy +Krysta +Kyara +Lara +Leann +Leigha +Leonela +Libby +Lisset +Lorraine +Lynette +Mackenna +Madysen +Magali +Maliyah +Mandy +Margot +Mariaguadalupe +Marianne +Maricruz +Mayte +Milagros +Mirna +Misty +Nallely +Nathaly +Nayely +Nayla +Nidia +Nuvia +Olga +Parker +Payge +Pearl +Raina +Reanna +Reina +Rori +Saira +Sarina +Serina +Shae +Sheccid +Sianna +Siena +Skyla +Soleil +Sydni +Sydnie +Taya +Tayler +Tierra +Trina +Tristin +Tyanna +Tyler +Unique +Violeta +Yamile +Yanira +Yoseline +Ysela +Yulianna +Yulisa +Zariah +Zayra +Zoie +Zulema +Emily +Isabella +Emma +Ashley +Madison +Alexis +Samantha +Abigail +Alyssa +Elizabeth +Jessica +Hannah +Jennifer +Olivia +Jasmine +Brianna +Mia +Grace +Victoria +Hailey +Maria +Sophia +Sarah +Alexa +Natalie +Andrea +Stephanie +Alexandra +Taylor +Michelle +Trinity +Kayla +Chloe +Leslie +Ariana +Destiny +Lauren +Angelina +Kimberly +Arianna +Nicole +Savannah +Anna +Vanessa +Morgan +Brooke +Daniela +Sydney +Diana +Megan +Evelyn +Kaitlyn +Kylie +Melissa +Rachel +Ava +Ella +Faith +Jocelyn +Mackenzie +Zoe +Ana +Angela +Sara +Gabriella +Mariana +Lily +Marissa +Nevaeh +Rebecca +Alondra +Katherine +Julia +Katelyn +Isabel +Aaliyah +Kaylee +Mariah +Valeria +Angelica +Tatum +Adriana +Sierra +Allison +Celeste +Gabriela +Jazmin +Sofia +Melanie +Alexia +Paige +Riley +Jade +Karla +Maya +Amber +Audrey +Jordan +Jacqueline +Makayla +Mya +Daisy +Miranda +Alejandra +Alicia +Amy +Jenna +Madeline +Genesis +Haley +Karen +Leah +Bailey +Esmeralda +Alexandria +Breanna +Rylee +Bianca +Danielle +Karina +Ruby +Cassandra +Brooklyn +Gianna +Katie +Lillian +Amanda +Gabrielle +Natalia +Notnamed +Ashlyn +Briana +Amelia +Brenda +Isabelle +Giselle +Angel +Guadalupe +Liliana +Sabrina +Amaya +Autumn +Avery +Aliyah +Jasmin +Valerie +Itzel +Mikayla +Veronica +Crystal +Erika +Kate +Maritza +Mary +Ximena +Camila +Naomi +Christina +Claire +Lizbeth +Carmen +Dayanara +Kassandra +Carolina +Elena +Jordyn +Yesenia +Cheyenne +Aubrey +Desiree +Kylee +Mckenna +Shelby +Cynthia +Laura +Leilani +Summer +Juliana +Monica +Monique +Priscilla +Gracie +Hope +Kennedy +Perla +April +Aurora +Molly +Erin +Jayden +Marisa +Addison +Ariel +Cassidy +Fernanda +Peyton +Reagan +Serena +Paola +Paulina +Alana +Catherine +Jada +Jamie +Kiara +Marina +Paris +Serenity +Daniella +Denise +Julianna +Layla +Mckenzie +America +Anahi +Bella +Courtney +Delaney +Jazmine +Julissa +Kelly +Kendra +Kyra +Sandra +Adrianna +Ashlee +Lindsey +Madelyn +Sherlyn +Alina +Elise +Ellie +Gloria +Haylee +Nancy +Nayeli +Payton +Charlotte +Jaqueline +Lesly +Miriam +Sadie +Wendy +Caitlin +Eliana +Kyla +Marlene +Patricia +Cadence +Camille +Erica +Fatima +Jadyn +Josephine +Marisol +Raquel +Rebekah +Reese +Reyna +Selena +Sophie +Annika +Arely +Caroline +Danna +Eva +Hanna +Joanna +Kathryn +Lilly +Macy +Makenna +Makenzie +Vivian +Viviana +Araceli +Ashlynn +Camryn +Claudia +Lindsay +Lizeth +Luz +Tiffany +Yasmin +Alma +Keira +Kiana +Mercedes +Dakota +Dulce +Kailey +Kendall +Kira +Leila +Lexi +Nadia +Sage +Savanna +Annabelle +Bethany +Cecilia +Clarissa +Hailee +Holly +Jaden +Melody +Skylar +Zoey +Britney +Cindy +Jillian +Joselyn +Julie +Lydia +Nataly +Anastasia +Emely +Heather +Heaven +Jimena +Kaydence +Kaylie +Kelsey +Kristen +Lucia +Lucy +Margaret +Natasha +Teresa +Abby +Alessandra +Alissa +Brittany +Caitlyn +Estrella +Ivy +Laisha +Tatiana +Tessa +Valentina +Abril +Angie +Blanca +Bryanna +Ciara +Cristina +Hayley +Judith +Karyme +Katelynn +Leticia +Liberty +Rhiannon +Alison +Brenna +Eden +Elle +Jaidyn +Kristina +Mallory +Meghan +Noemi +Piper +Sienna +Tiana +Anaya +Areli +Athena +Belen +Cameron +Cierra +Dominique +Emilie +Gisselle +Kathleen +Katrina +Kayleigh +Maggie +Martha +Rubi +Rylie +Sarai +Yaritza +Allyson +Angelique +Brielle +Brisa +Carly +Elisa +Frida +Genevieve +Johanna +Justice +Nina +Raven +Rosa +Thalia +Yasmine +Aileen +Aracely +Clara +Cristal +Dana +Eliza +Esther +Iris +Jaiden +Janessa +Karime +Krystal +Litzy +Marianna +Mayra +Melany +Pamela +Samara +Sasha +Shayla +Tabitha +Taryn +Yadira +Yoselin +Brooklynn +Damaris +Esperanza +Harley +Izabella +Jackeline +Janet +Kiera +Lea +Lisa +Madeleine +Madisyn +Melina +Regan +Regina +Rose +Shannon +Sonia +Stacy +Stella +Yareli +Yvette +Anissa +Ariza +Ashleigh +Asia +Galilea +Heidi +Iliana +Isabela +Jenny +Kaelyn +Kaitlynn +Kiley +Lluvia +Malia +Nia +Xiomara +Abrianna +Brittney +Brynn +Desirae +Elissa +Evelin +Janeth +Kaitlin +Kamryn +Kenya +Kirsten +Laila +Madelynn +Marisela +Rebeca +Ruth +Shea +Stephany +Vianney +Yamileth +Aiyana +Allie +Alyson +Amira +Aspen +Baylee +Calista +Carla +Casey +Catalina +Emilee +Estefania +Grecia +Ingrid +Jazlyn +Kassidy +Keyla +Lesley +Lilian +Lorena +Michaela +Nizhoni +Paloma +Precious +Roselyn +Tania +Teagan +Yahaira +Yazmin +Yuliana +Adamaris +Anya +Bailee +Breana +Callie +Carissa +Casandra +Danitza +Denisse +Dylan +Edith +Elisabeth +Emmalee +Fiona +Flor +Isis +Josie +Kailee +Kaleigh +Kara +Kaya +Lilianna +Lilliana +Lizette +Logan +Penelope +Raina +Ryan +Skyler +Susan +Tori +Yessenia +Alize +Angelita +Anita +Arlette +Aylin +Chelsea +Christiana +Dayana +Delilah +Emilia +Jacquelyn +Jayla +Johana +Kadence +Karely +Kasey +Katarina +Kianna +Lacey +Larissa +Lexie +Marlee +Maryjane +Meredith +Mikaela +Mireya +Phoebe +Presley +Princess +Quinn +Simone +Skye +Sylvia +Talia +Tara +Tianna +Ainsley +Alaina +Alanna +Aliya +Anika +Aniyah +Aryana +Aryanna +Ayleen +Brandy +Christine +Corina +Diane +Eileen +Eleanor +Felicity +Gillian +Graciela +Hana +Janae +Jayda +Jazmyn +Jazmyne +Jessie +Joseline +Kali +Linda +Lourdes +Luisa +Macey +Madilyn +Madyson +Maia +Marley +Miah +Mina +Ryann +Sarahi +Savanah +Sedona +Shaylee +Tanya +Tayler +Tyler +Virginia +Aisha +Alia +Anne +Annie +Arlene +Arleth +Ayanna +Beatriz +Brissa +Carolyn +Cecelia +Charlize +Cheyanne +Cora +Daphne +Deja +Diamond +Donna +Elaina +Irene +Kayley +Kaylin +Kyleigh +Laci +Liana +Lola +Mariela +Marilyn +Mckayla +Myah +Noelia +Noelle +Nora +Rachael +Raegan +Theresa +Unique +Violet +Viridiana +Willow +Xitlali +Yamilet +Zoie +Abbey +Abigale +Adilene +Aimee +Alena +Alexus +Alisha +Amelie +Anabelle +Araya +Arielle +Astrid +Babygirl +Berenice +Briseyda +Bryana +Cambria +Cara +Carina +Carol +Cloe +Dania +Destinee +Estefani +Evangelina +Halle +Haylie +Helen +Ireland +Isela +Jane +Kaley +Kamila +Katia +Keila +Kenia +Kierra +Lena +Lila +Lillie +Luna +Maddison +Mara +Maribel +Marie +Mayrin +Meadow +Nathalie +Paula +Saige +Sariah +Selina +Sonya +Vianey +Abbigail +Ailani +Amara +Amaris +Amya +Annabella +Annette +Antonia +Anyssa +Aria +Arwen +Ayana +Ayla +Barbara +Citlali +Corinne +Danae +Davina +Devin +Giovanna +Gladys +Imani +Janelle +Jayleen +Jaylene +Julieta +Juliette +Kaia +Kaila +Kailyn +Kaiya +Kamille +Karissa +Karli +Karly +Kaydance +Kayden +Lia +Lisbeth +Lisette +Madisen +Magaly +Makena +Mckinley +Melia +Micaela +Monserrat +Myra +Nichole +Rayne +Reece +Reina +Renee +Scarlett +Susana +Tamara +Trista +Xochitl +Yajaira +Yessica +Aiyanna +Alysa +Amalia +Analicia +Anastacia +Aniya +Ariadna +Ashanti +Aubree +Aubrie +Azul +Bridget +Brylee +Cali +Celia +Celine +Chanel +Ciera +Dayanna +Ellen +Elsie +Eve +Francesca +Georgia +Gina +Gissel +Gizelle +Hallie +Harmony +Hayden +Honey +Ivana +Jacquelin +Jaquelin +Jesse +Journey +Justine +Karlie +Karolina +Kathy +Kayli +Kaylynn +Kendal +Kenna +Lauryn +Leanna +Lexus +Lilia +Lilyana +London +Luciana +Macie +Madalyn +Maleah +Maliyah +Margarita +Mariajose +Mariam +Marian +Maricela +Maylin +Nathaly +Nidia +Priscila +Rachelle +Rosalinda +Rowan +Sarina +Serina +Shania +Sharon +Shayna +Silvia +Suzette +Sydnee +Tatyana +Tia +Triniti +Xitlaly +Zaira +Ailyn +Airam +Alayna +Alexys +Aliana +Alivia +Aliza +Allyssa +Alycia +Amethyst +Amiya +Anabel +Anisa +Arrianna +Ashly +Ashtyn +Bernadette +Betzaida +Breann +Bria +Brianda +Bryn +Carlie +Celina +Cielo +Citlaly +Dalia +Dalila +Dariana +Dawn +Deborah +Delia +Dora +Elianna +Eunice +Fabiola +Felicia +Gemma +Haleigh +Irma +Isabell +Jaclyn +Jaelynn +Jesenia +Joana +Jolene +Joslyn +Juanita +Julianne +Kaci +Kallie +Katy +Kaylen +Kaylyn +Kenzie +Lana +Laney +Leslye +Lexy +Leyla +Lilyanna +Lina +Lizet +Lyla +Lyndsey +Madalynn +Maren +Mariel +Marlen +Melisa +Myla +Nallely +Natali +Nikki +Paityn +Paulette +Rayna +Rita +Robyn +Rocio +Romina +Rosario +Roxana +Ryleigh +Samira +Sheila +Sheyla +Skyla +Sonja +Stevie +Tina +Tracy +Tyla +Vanesa +Yadhira +Abbie +Abriana +Adeline +Alani +Aleah +Aleena +Alexsandra +Alianna +Alisa +Ally +Alora +Alyssia +Amani +Amberly +Analisa +Angeles +Annaliese +Annalisa +Annalise +Arden +Audra +Beverly +Beyonce +Brianne +Briseida +Carmela +Cassie +Charity +Chasity +Chevelle +Chiara +Cianna +Cienna +Clare +Colleen +Dallas +Danika +Darlene +Dayna +Deanna +Destiney +Elexis +Elisha +Elysia +Elyssa +Ericka +Fallon +Faye +Gisela +Gracelyn +Hanny +Harper +Hazel +Heidy +Helena +Hillary +Hunter +Idaly +Iran +Ivonne +Jaeden +Janice +Jaquelyn +Jasmyn +Jaycee +Jazlynn +Jenessa +Jewel +Jhoana +Jocelin +Jocelyne +Joy +Juana +Juliet +Julisa +Kacie +Karis +Katlyn +Katya +Kelsie +Kiersten +Kourtney +Kristal +Kristin +Laurel +Lesli +Lexis +Lezly +Lianna +Lidia +Lillianna +Livia +Madilynn +Magdalena +Marcela +Marcia +Maricella +Meagan +Mercedez +Micah +Mila +Montserrat +Nayla +Neha +Nikole +Norma +Nya +Odalis +Pearl +Princesa +Reilly +Rianna +Rochelle +Roselin +Roxanna +Roxanne +Saray +Seleste +Shyla +Sidney +Sol +Stacey +Sydni +Tamia +Tehya +Tess +Tierra +Tristen +Tyra +Whitney +Yanet +Yaquelin +Yarely +Yazmine +Yolanda +Yulisa +Abagail +Abigayle +Acacia +Adalyn +Adamari +Addie +Adria +Adrienne +Aidan +Akira +Aleigha +Alexandrea +Alexya +Aline +Alyna +Alyse +Amairany +Amari +Amayah +Amayrani +Amina +Anabella +Anahy +Anais +Analise +Anayeli +Andie +Anjali +Annabel +Annalee +Annamarie +Ariella +Arissa +Arlet +Ashli +Aspyn +Autum +Averi +Aviana +Avianna +Azaria +Bayleigh +Belinda +Betty +Braelyn +Brandi +Brinley +Brook +Carlee +Carley +Carli +Carter +Caydence +Cayla +Charlee +Charlene +Cinthya +Clarisa +Cruz +Dalilah +Darian +Dezarae +Dorothy +Ebony +Elicia +Elyse +Emmy +Estella +Francisca +Gema +Georgina +Giana +Hadley +Hailie +Hannia +Hennessy +Hollie +Ilene +Imelda +India +Inez +Italia +Ivanna +Izabelle +Jaelyn +Jalyn +Janie +Jaylee +Jaylen +Jaylyn +Jenifer +Jetta +Joelle +Jolee +Joselin +Joyce +Kaidence +Kailin +Kaily +Kalea +Kalina +Kaliyah +Kalli +Karlee +Karmen +Kaycee +Kayleen +Keegan +Keely +Krista +Lainey +Lilah +Lissette +Loren +Lupita +Maci +Mariafernanda +Maryann +Maryn +Mason +Melannie +Michell +Milan +Miracle +Mollie +Montana +Myriam +Natalya +Naydelin +Nayely +Neida +Nellie +Neveah +Nicolette +Noelani +Nubia +Parker +Payten +Pilar +Pricila +Rayanna +Renata +Rene +Rosio +Savana +Sayra +Selene +Shawna +Shay +Shaylin +Shealynn +Sheridan +Shyanne +Siena +Soleil +Star +Stefanie +Stefany +Tatianna +Taya +Taytum +Tea +Tegan +Valery +Vianca +Winter +Xenia +Yanira +Yenifer +Yoseline +Yosselin +Yulianna +Zariah +Zayra +Emily +Mia +Ashley +Isabella +Emma +Samantha +Abigail +Madison +Sophia +Elizabeth +Alexis +Hannah +Alyssa +Natalie +Olivia +Brianna +Maria +Hailey +Grace +Jessica +Ava +Jasmine +Sarah +Victoria +Angelina +Jennifer +Andrea +Alexa +Taylor +Lauren +Michelle +Chloe +Evelyn +Savannah +Vanessa +Ella +Alexandra +Ariana +Destiny +Kayla +Kimberly +Nicole +Sofia +Stephanie +Valeria +Alondra +Trinity +Leslie +Nevaeh +Arianna +Lily +Angela +Sydney +Anna +Brooke +Isabel +Kaitlyn +Megan +Rachel +Faith +Ana +Kaylee +Mackenzie +Maya +Melanie +Melissa +Riley +Jocelyn +Diana +Gabriela +Gabriella +Zoe +Mariah +Alexia +Camila +Mariana +Angelica +Avery +Briana +Daniela +Morgan +Julia +Jazmin +Amy +Kylie +Allison +Haley +Katherine +Mya +Esmeralda +Jenna +Jacqueline +Makayla +Paige +Sara +Jade +Katelyn +Aaliyah +Lillian +Brooklyn +Danielle +Natalia +Alicia +Genesis +Rylee +Amanda +Amber +Marissa +Ciara +Gabrielle +Notnamed +Sierra +Valerie +Madeline +Audrey +Leah +Daisy +Rebecca +Adriana +Serenity +Giselle +Katie +Tatum +Alejandra +Amelia +Dayanara +Isabelle +Jordan +Autumn +Liliana +Naomi +Cassandra +Karen +Karla +Miranda +Ruby +Breanna +Itzel +Summer +Bianca +Estrella +Kate +Gianna +Jordyn +Payton +Layla +Sabrina +Brenda +Celeste +Jada +Sienna +Kylee +Addison +Christina +Claire +Cynthia +Gracie +Madelyn +Shelby +Alexandria +Fernanda +Jazmine +Juliana +Sophie +Amaya +Mikayla +Perla +Ximena +Guadalupe +Paulina +Bailey +Jasmin +Ellie +Erin +Karina +Reagan +Aubrey +Bella +Carmen +Erika +Eva +Julissa +Kiara +Leilani +Kyra +Peyton +Anahi +Laura +Aliyah +Catherine +Elena +Jimena +Monica +Skylar +Zoey +Charlotte +Marisol +Reyna +Sadie +Ashlyn +Dakota +Lucy +Veronica +Alana +Jayden +Maritza +Paola +Cheyenne +Crystal +Dulce +Hope +Mary +Molly +Savanna +Adrianna +Angel +Caitlin +Kassandra +Kennedy +Lizbeth +Mercedes +Rosa +Yesenia +America +Mckenna +Selena +Wendy +Desiree +Lilly +Priscilla +Alessandra +April +Brisa +Carolina +Erica +Haylee +Kelly +Nadia +Sandra +Tiffany +Ashlee +Aurora +Rubi +Kendall +Monique +Vivian +Cadence +Caitlyn +Cecilia +Daniella +Kailey +Kathryn +Makenzie +Melody +Reese +Emely +Annabelle +Delaney +Denise +Esperanza +Fatima +Jadyn +Keira +Mckenzie +Arleth +Caroline +Courtney +Izabella +Jaden +Lesly +Serena +Abby +Brittany +Helen +Josephine +Kira +Lindsey +Samara +Ariel +Camille +Cindy +Clarissa +Danna +Eliana +Gloria +Joselyn +Julianna +Julie +Kaylie +Lindsay +Litzy +Marisa +Nayeli +Raquel +Rebekah +Eden +Eliza +Ivy +Jillian +Joanna +Kendra +Laila +Lizeth +Luz +Tatiana +Heidi +Lydia +Maggie +Ruth +Teresa +Alma +Anaya +Anissa +Camryn +Carla +Claudia +Jamie +Larissa +Linda +Makenna +Nancy +Sage +Aileen +Alison +Allie +Angie +Arely +Ashlynn +Carly +Chelsea +Evelin +Katrina +Kyla +Madisyn +Malia +Michaela +Natasha +Sherlyn +Viviana +Yasmin +Britney +Hailee +Iris +Kelsey +Leila +Lilliana +Macy +Mariela +Marina +Nataly +Sasha +Skyler +Anastasia +Angelique +Aracely +Hayden +Judith +Kiana +Lucia +Patricia +Regina +Renee +Rylie +Tessa +Tiana +Yazmin +Allyson +Araceli +Asia +Athena +Aubree +Brenna +Brooklynn +Bryanna +Camilla +Cristina +Dana +Elle +Heaven +Jaiden +Kamryn +Kara +Lexi +Paris +Shayla +Violet +Yareli +Annika +Aylin +Brielle +Cassidy +Daphne +Dayana +Dominique +Elise +Heather +Kaydence +Leticia +Lorena +Madeleine +Marian +Melina +Miriam +Nina +Noemi +Piper +Talia +Adilene +Alaina +Alina +Brandy +Brittney +Danika +Frida +Gisselle +Hanna +Holly +Iliana +Jaqueline +Jayla +Kadence +Luna +Maribel +Mayra +Miah +Noelle +Rachael +Stella +Abril +Alayna +Arlene +Berenice +Bethany +Emilia +Haylie +Ingrid +Jazlyn +Jenny +Johana +Kailyn +Kiera +Kristina +Magdalena +Mallory +Marlene +Meghan +Paula +Ryan +Sariah +Scarlett +Shea +Sonia +Stephany +Tara +Yadira +Yahaira +Yaritza +Anika +Barbara +Bridget +Danitza +Desirae +Edith +Emmalee +Galilea +Isela +Jaidyn +Janessa +Jolette +Karissa +Lilian +Margaret +Marilyn +Raegan +Sarai +Tanya +Taryn +Valentina +Yuliana +Abbigail +Aleah +Alissa +Areli +Ayanna +Cierra +Citlaly +Clara +Damaris +Fiona +Flor +Grecia +Janae +Janet +Johanna +Kaitlin +Karol +Lana +Lesley +Lizette +Mckayla +Presley +Ryleigh +Sarahi +Skye +Tabitha +Tania +Teagan +Annie +Ariza +Ashly +Casey +Cristal +Elisa +Emilee +Estefania +Gina +Jazmyn +Joslyn +Kaitlynn +Katelynn +Kathleen +Liberty +Lluvia +Maddison +Maia +Maryjane +Melany +Mikaela +Shannon +Yarely +Zoie +Alanna +Annette +Ayla +Betzaida +Blanca +Brynn +Callie +Dania +Delilah +Diamond +Fabiola +Gizelle +Gwendolyn +Halle +Irene +Ivanna +Janelle +Jayda +Kali +Kenzie +Kiersten +Kiley +Krystal +Leanna +Lola +Luisa +Marie +Martha +Micaela +Natalee +Nora +Phoebe +Raven +Tyra +Virginia +Yasmine +Aimee +Alice +Alize +Annalise +Aspen +Aubrie +Brandi +Carol +Catalina +Christine +Citlali +Cora +Deanna +Dylan +Emilie +Harley +Isabell +Jaelyn +Jolie +Joseline +Joy +Kaley +Karime +Keyla +Kyleigh +Lilia +Lilianna +Madilyn +Marley +Penelope +Rose +Sidney +Susan +Tianna +Willow +Yoselin +Yulissa +Alivia +Amya +Analisa +Annalisa +Beatriz +Chantal +Dariana +Devyn +Elaina +Estefani +Esther +Genevieve +Helena +Isabela +Jaycee +Jessie +Josie +Kaleigh +Kayleigh +Kaylin +Kenia +Lea +Lila +Lucero +Madalyn +Makena +Maliyah +Margarita +Marlee +Nathalie +Paloma +Precious +Rhiannon +Savanah +Simone +Thalia +Tori +Tyler +Yamileth +Ailyn +Aiyana +Alyson +Amara +Aryana +Ayleen +Brianda +Briseida +Cali +Celina +Dafne +Elissa +Elyse +Ericka +Francesca +Geraldine +Haleigh +Haven +Hayley +Imani +Isis +Jewel +Justice +Logan +Macie +Madyson +Maricela +Mireya +Nia +Norma +Priscila +Rayna +Reina +Shyanne +Silvia +Theresa +Tia +Unique +Vianey +Yuridia +Abrianna +Adelina +Ainsley +Alisa +Ally +Ann +Anyssa +Aria +Belen +Briseyda +Bryana +Cambria +Cameron +Danica +Eleanor +Elianna +Estefany +Gia +Giovanna +Graciela +Hallie +Harmony +Hazel +Jackeline +Jaida +Jane +Jocelynn +Joselin +Kaelyn +Kailee +Kamila +Kianna +Kirsten +Laisha +Lauryn +Lexus +Liana +Lillie +Malaya +Mandy +Mara +Mina +Monserrat +Naima +Nathalia +Nikki +Nizhoni +Roxana +Salma +Susana +Sydnee +Tatianna +Tatyana +Tayler +Tess +Vanesa +Vianney +Vivianna +Xiomara +Yamilet +Airam +Alena +Alexus +Aliana +Alora +Alycia +Alysa +Anais +Analise +Aniya +Aniyah +Anya +Ashleigh +Astrid +Carolyn +Casandra +Charity +Chasity +Chelsey +Cheyanne +Dayami +Deborah +Denisse +Eileen +Estella +Georgia +Georgina +Gladys +Hailie +Ilse +Ivana +Ivonne +Jamileth +Jordynn +Juanita +Juliette +Karma +Kathy +Kaya +Kiarra +Lena +Lexie +Lilyanna +Lyla +Madelynn +Maren +Marianna +Nicolette +Nikole +Nubia +Princess +Roselyn +Selene +Selina +Sylvia +Tamara +Yajaira +Yessenia +Yolanda +Yvonne +Abbey +Abbie +Amari +Amelie +Amirah +Analicia +Anastacia +Annabel +Annamarie +Anne +Antonia +Arabella +Arissa +Arlette +Aryanna +Bree +Brianne +Briseis +Britany +Candace +Carina +Carissa +Charisma +Cianna +Cienna +Ciera +Diane +Elaine +Emery +Francisca +Honey +Jalyn +Janeth +Jayde +Jaylee +Jaylynn +Jenifer +Journey +Juliet +Kaia +Kaiya +Karli +Kasandra +Kassidy +Keila +Kelsie +Kenya +Kinsey +Kristen +Laci +Lacie +Lainey +Laurel +Leyla +Lia +Lisa +Lisette +Lupita +Maci +Marcela +Mariam +Marisela +Milagros +Miya +Montserrat +Neha +Noelani +Pamela +Pricilla +Raelynn +Raina +Rosalinda +Samira +Scarlet +Shandiin +Shania +Shaylee +Siena +Skyla +Soraya +Stacey +Tamia +Tiara +Toni +Violeta +Xochitl +Yaneli +Yvette +Zaira +Ada +Adamari +Adamaris +Adelaide +Adrienne +Alani +Aleena +Aliza +Amalia +Amaris +Amina +Amira +Angelita +Annabella +Annalicia +Belinda +Betsy +Breana +Brissa +Brook +Calista +Campbell +Cara +Carley +Carlie +Charlize +Corina +Dahlia +Dalilah +Danae +Darlene +Destinee +Destiney +Dorothy +Elisabeth +Elliana +Ellianna +Evangelina +Eve +Faye +Felicity +Giana +Gisel +Gissel +Griselda +Haily +Harleigh +Irma +Ivette +Jackelyn +Jackie +Jacquelyn +Jayleen +Jaylene +Jaymie +Jazmyne +Josefina +Julianne +Julieta +Justine +Kaci +Kaila +Kalia +Karly +Katerina +Kaycee +Kayden +Kelli +Kenadee +Kendyl +Kloe +Krista +Lacey +Lilyana +Lorelei +Luciana +Macey +Magali +Mariajose +Marlen +Meagan +Mikalah +Milan +Moriah +Myah +Myla +Myra +Naidelyn +Natali +Nayelli +Nelly +Neveah +Noelia +Norah +Parker +Rebeca +Regan +Rio +Rocio +Rosario +Samanta +Sarina +Selah +Shyann +Star +Taytum +Tierra +Yaquelin +Zaida +Ahtziri +Aisha +Alisha +Aliya +Alyssia +Amairany +Anali +Andi +Anessa +Angeles +Anisa +Annmarie +Ariella +Arielle +Ashli +Ashlie +Atiana +Atziri +Audra +Aviana +Azalea +Azul +Breann +Bridgette +Brookelyn +Carrie +Cecelia +Chanel +Charley +Charli +Charlie +Ciana +Cielo +Cinthya +Connie +Dalia +Darian +Dayna +Delia +Devin +Dionna +Donna +Edna +Ellen +Elli +Elyssa +Emelia +Emerson +Felicia +Frances +Gisell +Gwen +Halie +Harper +Heidy +Ilianna +Imelda +Izabel +Jacelyn +Jacquelin +Janice +Jaquelin +Jaquelyn +Jasmyn +Jaylin +Jaylyn +Jeslyn +Jesse +Jocelyne +Jorja +Jovanna +Judy +Karlee +Karley +Karyme +Kasey +Katarina +Kathrine +Katia +Katya +Kaydee +Kayli +Kimora +Kori +Kristine +Kristyn +Leann +Leilany +Libby +Lidia +Lillyan +Lillyanna +Lisbeth +London +Lucille +Madisen +Makaila +Marla +Meadow +Melisa +Mila +Monet +Nalani +Nichole +Nyla +Odalys +Olga +Rhianna +Ria +Robin +Rosemary +Rowan +Roxie +Ryann +Savana +Sedona +Shanna +Shantal +Shay +Shayna +Sheila +Sheyla +Silvana +Sloane +Stacy +Stormie +Suzette +Taylee +Trina +Tylee +Valery +Vania +Viridiana +Winter +Xitlali +Xitlaly +Yadhira +Yaretzi +Yessica +Aaralyn +Abagail +Abigale +Abigayle +Abygail +Addie +Adela +Adelynn +Aida +Ailani +Aislinn +Alannah +Alexi +Alexsandra +Alexys +Alia +Amerie +Amiah +Anabella +Analy +Ananya +Angelia +Ania +Annabell +Annelise +Ariah +Ariyah +Ashton +Avril +Aysha +Bailee +Baylie +Beyonce +Bianka +Billie +Blythe +Braelyn +Bria +Briceida +Brynna +Callista +Candice +Cayla +Celia +Cerenity +Chiara +Dalila +Dallas +Dasia +Dayanna +Debra +Deja +Deyanira +Divine +Dolores +Domonique +Drew +Elayna +Elexis +Elia +Elliot +Elsie +Emili +Eryn +Estephanie +Eunice +Evelyne +Fallon +Finley +Gema +Gemma +Gillian +Gisele +Gracelyn +Gwenyth +Hadley +Hadyn +Hana +Harlee +Hillary +Ileana +Irais +Irlanda +Isobel +Izabelle +Jaidan +Jaime +Janie +Jazlynn +Jeanette +Joana +Julisa +Justina +Kaelynn +Kaili +Kallie +Kamilah +Karizma +Karolina +Katharine +Kayle +Kayleen +Kaylene +Kayley +Kaylyn +Kaylynn +Keely +Kendal +Kennedi +Kera +Kierra +Kierstin +Kimber +Kinley +Kinsley +Kristin +Kylah +Kylene +Laney +Leeann +Lesli +Lezly +Lillianna +Lina +Lorelai +Lynette +Lysette +Madalynn +Maddie +Madysen +Maiya +Marbella +Marcella +Mari +Marianne +Mayah +Mayela +Mayte +Mckinley +Melannie +Melanny +Meredith +Micah +Mikaila +Mikala +Milena +Miracle +Nadine +Nathaly +Nevaeha +Nohemi +Nuvia +Nya +Octavia +Patience +Rae +Ramona +Reilly +Renata +Rian +Riana +Robyn +Rochelle +Rosselyn +Saige +Sally +Serina +Shirley +Sinai +Sky +Stevie +Sunshine +Sydnie +Taliyah +Taniyah +Tatiyana +Tayla +Taylin +Tea +Terra +Teya +Tracy +Trista +Wendi +Yanitza +Yazmine +Yliana +Yoselyn +Ysabella +Zariah +Zenaida +Zulema +Mia +Emily +Isabella +Ashley +Emma +Madison +Ava +Sophia +Samantha +Alexis +Alyssa +Abigail +Hannah +Natalie +Elizabeth +Hailey +Alexa +Brianna +Olivia +Maria +Victoria +Jasmine +Grace +Valeria +Andrea +Sarah +Jessica +Kimberly +Ella +Vanessa +Jennifer +Savannah +Taylor +Nevaeh +Chloe +Stephanie +Lauren +Kayla +Leslie +Lily +Alexandra +Angelina +Arianna +Sofia +Evelyn +Kaylee +Destiny +Maya +Jocelyn +Mariah +Melanie +Ariana +Isabel +Marissa +Addison +Nicole +Gabriella +Michelle +Faith +Kaitlyn +Mackenzie +Camila +Brooklyn +Jazmin +Riley +Allison +Anna +Rachel +Ana +Julia +Natalia +Rylee +Sydney +Zoe +Diana +Isabelle +Mariana +Melissa +Angela +Alexia +Adriana +Audrey +Morgan +Alondra +Daniela +Jacqueline +Tatum +Avery +Brooke +Megan +Valerie +Sara +Aaliyah +Katelyn +Lillian +Trinity +Daisy +Gabriela +Jade +Briana +Makayla +Mya +Kylie +Layla +Karla +Leah +Madeline +Aubrey +Esmeralda +Keira +Dulce +Jordan +Katherine +Miranda +Paige +Amy +Danielle +Naomi +Alicia +Bella +Amanda +Rebecca +Serenity +Gabrielle +Genesis +Gianna +Haley +Ruby +Alejandra +Angelica +Sienna +Liliana +Sierra +Bianca +Jenna +Kate +Alexandria +Amelia +Autumn +Mary +Jazmine +Karen +Shelby +Amaya +Bailey +Eva +Giselle +Claire +Elena +Notnamed +Amber +Angel +Ashlyn +Estrella +Jayden +Karina +Jasmin +Juliana +Monica +Peyton +Cassandra +Kylee +Zoey +Katie +Savanna +Breanna +Nadia +Veronica +Ciara +Dayanara +Sherlyn +Ximena +Cynthia +Mikayla +Ariel +Dakota +Itzel +Jordyn +Summer +Aurora +Delaney +Julianna +Payton +Adrianna +Anahi +Brenda +Kennedy +Mckenzie +Joselyn +Kiara +Marisol +Molly +Charlotte +Fatima +Fernanda +Ellie +Erika +Julissa +Paola +Reagan +Alessandra +Catherine +Daniella +Lizbeth +Perla +Reyna +Sadie +Sophie +Eliana +Jada +Leilani +Lindsey +Sabrina +Cheyenne +Alana +Aliyah +Celeste +Erin +Guadalupe +Lucy +Cadence +Christina +Gracie +Laura +Madelyn +Annabelle +Caitlin +Jayla +Kyra +Danna +Erica +Jaqueline +Kassandra +Lilly +Mckenna +Caitlyn +Camryn +Priscilla +Reese +America +Gloria +Izabella +Makenzie +Paulina +Rebekah +Skylar +Tiffany +Yesenia +Abby +Carolina +Cecilia +Sandra +Alina +April +Brooklynn +Denise +Jillian +Joanna +Angie +Carmen +Kaydence +Kendall +Maritza +Arely +Claudia +Courtney +Crystal +Desiree +Tatiana +Jadyn +Jimena +Kiana +Kira +Lesly +Lydia +Rylie +Vivian +Yoselin +Carly +Eden +Haylee +Hope +Kyla +Lexi +Lola +Miriam +Sage +Violet +Yasmin +Yazmin +Allie +Ashlynn +Athena +Chelsea +Clara +Kailey +Katelynn +Kathryn +Kayleigh +Kelly +Laila +Maggie +Margaret +Monique +Natasha +Anastasia +Annika +Danica +Dayana +Evelin +Hanna +Kendra +Malia +Nancy +Rosa +Selena +Tessa +Wendy +Alma +Aylin +Carla +Emely +Johanna +Leila +Lindsay +Lizeth +Lorena +Melany +Nataly +Serena +Viviana +Yareli +Aubree +Dana +Frida +Hayden +Heather +Luna +Makenna +Mallory +Marley +Melody +Sarai +Alayna +Ariza +Bethany +Esperanza +Genevieve +Josephine +Kamila +Kiera +Regina +Shayla +Teagan +Aileen +Aracely +Brisa +Cindy +Elise +Eliza +Grecia +Helen +Iris +Kaylie +Lilliana +Mercedes +Pamela +Raquel +Tania +Anaya +Ashlee +Delilah +Elisa +Emilia +Heidi +Jamie +Julie +London +Marianna +Marina +Michaela +Sasha +Scarlett +Taryn +Yuliana +Anissa +Araceli +Ayla +Cameron +Camille +Clarissa +Hailee +Harmony +Ivy +Joselin +Madyson +Mireya +Renee +Ryleigh +Yamileth +Angelique +Cassidy +Danika +Dominique +Elle +Esther +Jaden +Janelle +Lilian +Lilyana +Nayeli +Patricia +Rose +Sonia +Susan +Yaritza +Alison +Brenna +Brittany +Caroline +Catalina +Citlaly +Damaris +Daphne +Hayley +Haylie +Holly +Jazmyn +Kara +Kelsey +Lucia +Madisyn +Natalee +Paris +Rubi +Tyra +Allyson +Arleth +Brynn +Cora +Emilee +Jaelyn +Jayda +Kadence +Kamryn +Kenya +Kristen +Kristina +Krystal +Lesley +Linda +Macy +Madilyn +Marilyn +Paloma +Skye +Tyler +Abril +Adilene +Alissa +Cristal +Denisse +Heaven +Iliana +Ingrid +Johana +Katrina +Luz +Martha +Noelia +Ryan +Sarahi +Shyanne +Talia +Tiana +Virginia +Yadira +Ainsley +Alice +Alyson +Aniya +Annie +Aryanna +Britney +Georgia +Jaiden +Jazlyn +Joseline +Keyla +Leticia +Lila +Luisa +Noemi +Nora +Piper +Presley +Samara +Savanah +Shea +Stephany +Xiomara +Yarely +Abrianna +Anya +Blanca +Bridget +Callie +Cristina +Eleanor +Gisselle +Isabela +Isis +Ivanna +Jacquelyn +Kirsten +Lisa +Maddison +Maia +Marlene +Mayte +Monserrat +Nina +Quinn +Rhianna +Stella +Yasmine +Yuridia +Yvette +Alize +Amaris +Amya +Areli +Deanna +Evangeline +Irene +Jenny +Judith +Kaelyn +Kassidy +Kaylin +Lacey +Larissa +Lauryn +Lilianna +Makena +Margarita +Mayra +Meredith +Miah +Natalya +Nia +Rachael +Regan +Rhiannon +Sariah +Tamara +Valentina +Abbie +Abbigail +Alanna +Alivia +Aliya +Amira +Anais +Anika +Anisa +Aryana +Bailee +Brandy +Brielle +Briseyda +Cambria +Desirae +Diamond +Emerson +Emilie +Halle +Janet +Jaylee +Juliet +Justice +Kenia +Lucero +Luciana +Maribel +Marie +Marisa +Maryjane +Melina +Penelope +Sedona +Shannon +Siena +Tanya +Yaretzy +Adamari +Adelina +Adeline +Anabelle +Annabella +Arlette +Aubrianna +Ayleen +Barbara +Baylee +Beatriz +Bethzy +Christine +Danitza +Dariana +Deisy +Edith +Flor +Giovanna +Hailie +Hazel +Janessa +Jaylene +Jessie +Juliette +Kaitlin +Kali +Kristin +Laci +Leanna +Noelle +Priscila +Raegan +Ruth +Silvia +Skyler +Tara +Thalia +Yahaira +Yamilet +Adamaris +Alaina +Aliana +Anne +Aria +Ashly +Aubrie +Berenice +Betsy +Cali +Cara +Carlie +Citlali +Elaina +Elliana +Elyse +Emmalee +Estefani +Estefany +Felicity +Giana +Gizelle +Janae +Jazlynn +Journey +Justine +Kaia +Kailyn +Kaleigh +Karime +Karissa +Karol +Kayleen +Kenzie +Kiley +Lexie +Lucille +Madalyn +Myah +Nathalia +Phoebe +Rocio +Sarina +Simone +Teresa +Tori +Viridiana +Yajaira +Aimee +Ally +Amara +Aniyah +Annette +Casey +Cierra +Fabiola +Finley +Galilea +Gina +Gladys +Jaedyn +Jaida +Jayleen +Jenifer +Joslyn +Joy +Kai +Kaila +Kairi +Kaley +Karely +Karma +Leyla +Lillianna +Lillie +Lupita +Magdalena +Mara +Mariela +Micaela +Mikaela +Mila +Naima +Nathalie +Neveah +Nizhoni +Norma +Nuvia +Precious +Raven +Reina +Romina +Rosalinda +Salma +Selah +Selene +Sylvia +Tabitha +Toni +Yoselyn +Zoie +Ada +Aiyana +Alena +Analicia +Analisa +Angelita +Annalisa +Ashleigh +Ayanna +Belinda +Brinley +Brissa +Campbell +Charity +Clare +Dania +Deborah +Deja +Elissa +Frances +Francesca +Graciela +Gwendolyn +Halie +Hallie +Hillary +Isela +Jaidyn +Jocelynn +Josie +Kaitlynn +Kaylynn +Keila +Laney +Lea +Liberty +Lizette +Londyn +Madeleine +Madelynn +Marlee +Mckayla +Meghan +Nichole +Odalys +Patience +Princess +Reanna +Renata +Roxana +Saige +Samarah +Shania +Sharon +Skyla +Theresa +Tia +Valery +Vianey +Whitney +Yessica +Addyson +Adyson +Ailyn +Alisha +Amalia +Amelie +Anabel +Aniah +Annalise +Anneliese +Ariah +Asia +Ayana +Belen +Briseida +Bryanna +Candice +Carissa +Carol +Cecelia +Cielo +Cienna +Coral +Dani +Dayra +Dianna +Eileen +Elsie +Emery +Eunice +Fiona +Heidy +Italia +Ivana +Ivette +Izabelle +Jacquelin +Janeth +Jaycee +Jessi +Jolie +Kailee +Karyme +Kasandra +Katia +Kaycee +Kenna +Kiersten +Kimora +Kyleigh +Lainey +Litzy +Livia +Macey +Macie +Maricela +Marlen +Meadow +Melannie +Mollie +Mylie +Nathaly +Nyla +Paula +Pearl +Phoenix +Rayne +Rebeca +Roselyn +Sahara +Samira +Sheyla +Stacy +Suri +Susana +Sydnee +Sydni +Tiara +Vera +Violeta +Yaretzi +Zuleyka +Abbey +Adalyn +Alani +Alexys +Aliza +Alycia +Alyse +Alysha +Amiyah +Anita +Annaliese +Averie +Bentley +Betzy +Briseis +Brittney +Brynlee +Calista +Chelsey +Cherish +Dalia +Dallas +Darlene +Desteny +Destiney +Devyn +Diane +Elaine +Elysia +Gia +Helena +Honey +Imani +Isabell +Jackelyn +Jane +Jaylin +Jaylyn +Jaylynn +Kacey +Kalia +Kalina +Karli +Kasey +Kaya +Kelsie +Kinsey +Kitzia +Krista +Laurel +Lena +Lia +Lisette +Lluvia +Logan +Maliyah +Marcela +Maren +Marian +Marisela +Milla +Myla +Myra +Nicolette +Nohemi +Parker +Rayna +Rianna +Rihanna +Rosemary +Roxanne +Ryann +Shakira +Shaylee +Sonya +Tianna +Vianca +Vivianna +Willow +Xochitl +Yazmine +Yessenia +Yulissa +Zaira +Abigayle +Addisyn +Adelaide +Ailani +Alaya +Alisa +Alysa +Alyssia +Amairani +Amia +Angeles +Angeline +Annabel +Annamarie +Antonia +Arabella +Ariadna +Azul +Braelyn +Brea +Breana +Bryana +Carina +Carley +Caydence +Charlee +Charlie +Charlize +Christian +Christiana +Ciana +Cianna +Cinthia +Dafne +Dayanna +Dora +Elisabeth +Ember +Ericka +Evangelina +Francisca +Gema +Gemma +Gillian +Gisele +Harlee +Harley +Izabel +Jaylen +Jayme +Jaymee +Jazmyne +Joana +Kaidence +Kallie +Katelin +Kathleen +Kayden +Kayley +Keanna +Keely +Kinley +Kyara +Lacy +Leilany +Lilyanna +Lina +Linnea +Lissette +Lorelei +Lyla +Mabel +Madalynn +Mandy +Mariajose +Mariyah +Melani +Miracle +Monet +Nadine +Nahomy +Naveah +Nubia +Nya +Ofelia +Paityn +Reece +Saira +Savana +Shyann +Shyla +Sidney +Sol +Soleil +Stevie +Taliyah +Tayla +Tayler +Trista +Vianney +Yulisa +Abigale +Adison +Aisha +Alanah +Aleana +Alexsandra +Alia +Alyna +Amayah +Ami +Anabella +Analia +Analise +Anessa +Anette +Anyssa +Aolanis +Aranza +Araya +Ariella +Arielle +Arlene +Arya +Aspen +Astrid +Audriana +Averi +Avril +Azalea +Beyonce +Bobbi +Bonnie +Breann +Bree +Brianda +Bridgette +Cailyn +Candace +Carrie +Casandra +Cassie +Cayla +Celia +Celina +Charisma +Chevelle +Cheyanne +Ciera +Cloe +Daria +Delani +Delia +Donna +Dylan +Edna +Elayna +Emelyn +Emerald +Emili +Estefania +Eve +Evelynn +Frankie +Gisell +Gracelyn +Gracey +Gwyneth +Hadley +Haleigh +Haven +Irma +Jacey +Jackeline +Jaeda +Jaeden +Jasmyne +Jaycie +Jayde +Jaydin +Jizelle +Jocelin +Joceline +Jolene +Josselyn +Joyce +Juanita +Julisa +Kaela +Kamilah +Karis +Karlie +Karolina +Kaylei +Keara +Keilani +Kendal +Kendyl +Kennedi +Kianna +Kierra +Lana +Leia +Liana +Lillyana +Lorraine +Lourdes +Lynette +Maci +Magali +Maile +Maite +Marbella +Marlyn +Mattie +Mika +Milan +Nadya +Nevaeha +Norah +Payten +Raeanna +Raina +Rayanna +Rhea +Rita +Robyn +Rylan +Sandy +Saniya +Santana +Sariya +Selina +Shantell +Shayna +Sheila +Sherlin +Sinai +Sonja +Soraya +Stacey +Stefany +Tammy +Tatianna +Tatyana +Vida +Winter +Zariah +Zayra +Abagail +Adela +Adia +Adrienne +Ahtziry +Alannah +Alba +Aleena +Alex +Alexandrea +Alexi +Alexus +Aliyana +Amairany +Ambar +Anai +Anela +Ann +Arissa +Asha +Ashlie +Aviana +Azucena +Baylie +Berlin +Beverly +Brandi +Bria +Brianne +Britany +Bryce +Brylee +Cailin +Calli +Camilla +Caylee +Chantel +Charlene +Charli +Chelsie +Daira +Daisha +Danae +Darby +Davina +Destinee +Destini +Elexa +Ellen +Elsa +Elva +Elyana +Emelia +Emmie +Estella +Geraldine +Ginger +Gisela +Griselda +Hunter +Ileana +Ilianna +Ilse +Ireland +Jaci +Jailyn +Jalissa +Jaquelin +Jaylah +Jazelle +Jessa +Jessenia +Jessika +Jewel +Jhoana +Jocelyne +Jolette +Joscelyn +Joselynn +Juliann +Kaci +Kaelynn +Kailynn +Kalli +Kalyn +Kambria +Katharine +Kathy +Keisha +Kellie +Keyra +Kimber +Kimberley +Kimberli +Klara +Kloey +Kourtney +Laisha +Lanie +Laylah +Leann +Leilah +Lela +Lexis +Libby +Lidia +Lilah +Lilia +Lillyan +Lilyan +Loren +Louisa +Makaila +Malaya +Malina +Marcella +Marializ +Mariam +Marianne +Mattea +Maylin +Mayrin +Melia +Melinda +Michele +Milani +Milena +Miley +Mina +Moriah +Mylee +Myranda +Natali +Nikole +Noelani +Nyah +Oriana +Paisley +Persephone +Rachelle +Raelyn +Raelynn +Rashel +Rene +Roberta +Robin +Rory +Rosie +Ryley +Sally +Sanjana +Seanna +Shae +Shaelynn +Shaina +Shandiin +Shaylyn +Shirley +Shreya +Sydnie +Talya +Taya +Taytum +Tess +Thea +Trina +Tristen +Tristin +Tylee +Unique +Vianna +Vivienne +Yadhira +Yaneli +Yanet +Yanitza +Yara +Yvonne +Zariyah +Zuleika +Zulema +Isabella +Emily +Mia +Sophia +Ashley +Emma +Madison +Ava +Samantha +Elizabeth +Abigail +Natalie +Alyssa +Olivia +Alexis +Hannah +Brianna +Hailey +Chloe +Nevaeh +Victoria +Alexa +Savannah +Addison +Kimberly +Andrea +Camila +Maria +Taylor +Valeria +Jocelyn +Sofia +Angelina +Jessica +Ella +Jasmine +Grace +Jennifer +Evelyn +Brooke +Sarah +Ariana +Lily +Kayla +Lauren +Melanie +Gabriella +Alexandra +Mariah +Vanessa +Destiny +Arianna +Zoe +Kaylee +Sydney +Isabel +Stephanie +Nicole +Daniela +Mariana +Julia +Maya +Riley +Lillian +Michelle +Diana +Leslie +Brooklyn +Jade +Aaliyah +Aubrey +Avery +Anna +Rachel +Trinity +Liliana +Natalia +Audrey +Giselle +Mya +Valerie +Allison +Faith +Jazmin +Kylie +Alexia +Gabriela +Ana +Katelyn +Makayla +Karla +Madeline +Isabelle +Jacqueline +Megan +Angela +Esmeralda +Kaitlyn +Ruby +Adriana +Genesis +Angelica +Katherine +Rylee +Alicia +Danielle +Joselyn +Mackenzie +Morgan +Layla +Naomi +Sophie +Marissa +Tatum +Bella +Gianna +Jordan +Amy +Bailey +Miranda +Alondra +Briana +Daisy +Haley +Paige +Eva +Keira +Leah +Claire +Dulce +Jayden +Melissa +Autumn +Sadie +Sienna +Gabrielle +Lilly +Rebecca +Abril +Jasmin +Juliana +Kate +Alejandra +Amanda +Breanna +Hayden +Katie +Serenity +Ashlyn +Payton +Zoey +Amaya +Sara +Ximena +Charlotte +Jenna +Julissa +Karen +Kylee +Bianca +Kennedy +Sierra +Amelia +Crystal +Fernanda +Paola +Jazmine +Cheyenne +Reese +Angel +Elena +Alana +Alina +Jordyn +Adrianna +Eliana +Madelyn +Molly +Yoselin +Alessandra +Alexandria +Amber +Cassandra +Karina +Laila +Monica +Peyton +Shelby +Ariel +Ellie +Julianna +Lizbeth +Mckenna +Notnamed +Reagan +Anahi +Carolina +Erin +Leilani +Lucy +Christina +Guadalupe +Mary +Erika +Kyra +Mckenzie +Scarlett +Gracie +Jada +Melody +Veronica +Celeste +Cynthia +Itzel +Izabella +Paulina +Sabrina +Dakota +Desiree +Melany +Nataly +Perla +Rosa +Dayanara +Estrella +Lydia +Savanna +April +Brenda +Carmen +Catherine +Delaney +Lesly +Azul +Elise +Jillian +Kiara +Marisol +Mikayla +Tessa +Aurora +Eliza +Fatima +Kiera +Makenzie +Nadia +Regina +Reyna +Summer +Alissa +Aliyah +Angelique +Eden +Hope +Laura +Abby +Caitlyn +Jamie +Kassandra +Kathryn +Kendall +Priscilla +Teagan +Viviana +Brielle +Ciara +Lilliana +Presley +Selena +Violet +Vivian +Aylin +Dana +Kaylie +Kelly +Leila +Raquel +Yasmin +Cecilia +Iris +Paula +Brooklynn +Cassidy +Dayana +Delilah +Ivy +Kendra +Kyla +Lexi +Piper +America +Annabelle +Ashlynn +Bethany +Haylie +Iliana +Jaqueline +Lola +Makenna +Marely +Marina +Maritza +Tatiana +Chelsea +Claudia +Haylee +Holly +Jaden +Joanna +Kailey +Patricia +Rubi +Aileen +Angie +Audrina +Caitlin +Carly +Danika +Esther +Gloria +Jadyn +Kamila +Kaylin +Lindsay +Monique +Pamela +Ruth +Sarai +Tiffany +Wendy +Yadira +Yesenia +Arely +Ayla +Brittany +Janessa +Jayla +Leticia +Luna +Madeleine +Nayeli +Sandra +Stella +Athena +Brenna +Cadence +Camryn +Danica +Danna +Denise +Helena +Johanna +Julie +Kayden +Kayleigh +Kiana +Macy +Maggie +Miley +Miriam +Sasha +Yazmin +Yuliana +Alaina +Aria +Cindy +Cristal +Daniella +Heidi +Kara +Kira +Lindsey +Natasha +Penelope +Rylie +Valentina +Yareli +Alivia +Anastasia +Ariza +Brisa +Bryanna +Clara +Clarissa +Isis +Jaelyn +Jimena +Josephine +Judith +Juliet +Luz +Maddison +Margaret +Melina +Skylar +Addyson +Allie +Allyson +Anissa +Camille +Caroline +Courtney +Hailee +Isabela +Lila +Marlene +Serena +Taryn +Alma +Asia +Elle +Emely +Erica +Ivanna +Joselin +Kelsey +Kiley +Lexie +Lucia +Marley +Shayla +Aiyana +Alize +Annie +Aubree +Ayleen +Denisse +Jazlyn +Kaydence +Krystal +Lesley +Lilyana +Madisyn +Mallory +Marilyn +Michaela +Nora +Paloma +Phoebe +Ryleigh +Samara +Talia +Tania +Yamileth +Alayna +Alison +Anaya +Aniyah +Brynn +Carla +Cristina +Esperanza +Hayley +Jaslene +Kaitlin +Kaitlynn +Kristina +Lacey +Linda +Madilyn +Mayra +Rose +Aracely +Areli +Aryanna +Ashlee +Camilla +Dominique +Frida +Gisselle +Ingrid +Liana +Lilian +Logan +Lyla +Nancy +Nathalie +Paisley +Rebekah +Sherlyn +Xiomara +Yvette +Zariah +Aryana +Bailee +Belen +Cora +Dylan +Emerson +Evangeline +Fiona +Genevieve +Hanna +Joy +Kailee +Kenia +Kenya +Larissa +Lizeth +Malia +Mireya +Noelia +Noelle +Sage +Sarahi +Sedona +Tara +Willow +Yamilet +Yuridia +Adilene +Annika +Arleth +Aspen +Cameron +Dahlia +Harley +Hazel +Jacquelyn +Jaidyn +Kali +Kamryn +Karime +Keyla +Madelynn +Marianna +Mariela +Marisa +Mercedes +Nina +Paris +Rebeca +Rihanna +Alena +Alexus +Alice +Amara +Anya +Berenice +Cambria +Cheyanne +Dania +Danitza +Diamond +Emilee +Evelin +Georgia +Grecia +Harmony +Heaven +Helen +Janet +Jenny +Lisa +London +Marie +Marlee +Martha +Maryjane +Monserrat +Ryan +Sariah +Sidney +Stephany +Sylvia +Yaritza +Ada +Aubrie +Barbara +Brynlee +Deanna +Desirae +Edith +Elisa +Eve +Gwendolyn +Irene +Isela +Janelle +Jayda +Justice +Kaelyn +Karyme +Katelynn +Kathleen +Kenzie +Lana +Litzy +Mylee +Noemi +Rocio +Scarlet +Shannon +Siena +Tanya +Vianey +Whitney +Yahaira +Abbigail +Adelina +Adeline +Ailyn +Aliya +Amira +Anika +Annabella +Callie +Christine +Damaris +Daphne +Donna +Elliana +Elyse +Estefania +Giovanna +Graciela +Harper +Johana +Josie +Juliette +Katrina +Kaylynn +Kimora +Kristin +Laci +Lena +Lilah +Maite +Marisela +Mayte +Melani +Natalee +Nathaly +Neveah +Reina +Renee +Rosemary +Rylan +Serina +Simone +Skyla +Skyler +Teresa +Theresa +Vania +Yajaira +Adamaris +Adele +Aliana +Amelie +Angeline +Anisa +Annette +Araceli +Ashly +Beyonce +Blanca +Brianda +Bridget +Brittney +Chanel +Cienna +Dalia +Eileen +Emery +Emilia +Estefani +Felicity +Galilea +Halle +Janae +Jazmyn +Jessie +Kassidy +Keila +Kyleigh +Lilith +Lillie +Luisa +Macey +Maia +Mariajose +Mikaela +Myah +Rayna +Renata +Shaylee +Tabitha +Taliyah +Yessenia +Alyson +Aniya +Ashleigh +Baylee +Breana +Britney +Brylee +Citlaly +Deborah +Destinee +Eleanor +Ember +Fabiola +Haven +Ireland +Jaelynn +Jaiden +Jane +Jaquelin +Jaylene +Jocelynn +Jolie +Jordin +Jordynn +Kaiya +Karly +Kelsie +Kiersten +Kristen +Lucero +Madalyn +Natali +Nia +Nizhoni +Phoenix +Precious +Priscila +Rowan +Selene +Stacy +Sydnee +Tayler +Tyra +Valery +Yarely +Yaretzi +Abbie +Abbygail +Adelaide +Adison +Alani +Alanna +Alannah +Aleena +Alyna +Analisa +Analy +Annalise +Ariah +Beatriz +Carina +Charlize +Cloe +Delia +Diane +Elisabeth +Francesca +Gissel +Greta +Hana +Heather +Janeth +Jaquelyn +Jayleen +Jazlynn +Jenifer +Jolene +Joseline +Joslyn +Kaila +Kailyn +Kallie +Karol +Katia +Kirsten +Lacy +Laisha +Lauryn +Leyla +Lilianna +Lillianna +Lorena +Lyric +Macie +Madilynn +Makena +Maricela +Nalani +Nichole +Quinn +Regan +Rhianna +Rhiannon +Roselyn +Salma +Shania +Shayna +Shea +Shiloh +Shyla +Skye +Sonia +Tiana +Tori +Yolanda +Yoselyn +Addisyn +Akira +Aleah +Amaris +Anabella +Angelita +Annabel +Antonia +Arabella +Averie +Belinda +Betsy +Bridgette +Brinley +Brissia +Cali +Carissa +Carolyn +Casey +Catalina +Dariana +Dayra +Deja +Elaina +Elaine +Elianna +Ellen +Evelynn +Imani +Italia +Jackelyn +Jaycee +Jayde +Jaylee +Jaylynn +Jazelle +Joana +Joceline +Justine +Kadence +Kamilah +Karely +Kayleen +Kelsi +Kenna +Khloe +Kianna +Laney +Leia +Lia +Lluvia +Lourdes +Madyson +Magdalena +Maleah +Marian +Marin +Mayrin +Miah +Micaela +Milan +Nadya +Nelly +Nikki +Princess +Raina +Reece +Riya +Ryann +Saige +Selah +Sheila +Shyann +Tamara +Tatianna +Thalia +Tina +Vianney +Xochitl +Yara +Yulissa +Zuleika +Adalyn +Adamari +Ainsley +Alisa +Alisha +Alisson +Ally +Alora +Anabelle +Anais +Analicia +Angeles +Anita +Anyssa +Ariella +Aubriana +Audra +Aurelia +Ayana +Ayanna +Briseida +Briseyda +Carol +Caylee +Chelsey +Cherish +Cielo +Citlali +Dani +Deisy +Elsie +Emmie +Gina +Haleigh +Hallie +Hillary +Ivana +Jaylin +Jewel +Jocelyne +Josslyn +Journey +Juanita +Karma +Karolina +Kasandra +Kasey +Kaylah +Keana +Keegan +Kyara +Lea +Leilany +Lillyana +Lillyanna +Lilyann +Lorelai +Lucille +Maiya +Margarita +Mariafernanda +Mariangel +Meadow +Meredith +Montserrat +Nathalia +Raegan +Raven +Rian +Roxana +Roxanne +Sarina +Shaila +Shyanne +Suri +Susan +Susana +Tanisha +Tia +Tianna +Yocelin +Zara +Zoie +Abagail +Adrina +Aimee +Aliza +Alycia +Alysa +Amya +Analise +Anastacia +Aniah +Annamarie +Arielle +Aubrianna +Aviana +Betzaida +Briella +Briseis +Brissa +Caitlynn +Candice +Capri +Carley +Carmela +Casandra +Chanelle +Charity +Christiana +Daira +Dalilah +Davina +Destiney +Dianna +Elia +Emilie +Emmalee +Ericka +Eryn +Evie +Flor +Frances +Giana +Gillian +Gizelle +Gladis +Hadassah +Ivonne +Izabelle +Jackeline +Jaclyn +Janie +Jaya +Jaylen +Jazzlyn +Jocelin +Josefina +Joslynn +Kaia +Kalyn +Katarina +Katerina +Kristal +Leslye +Lexus +Lisette +Lissette +Lizette +Maci +Maile +Maliyah +Marcela +Maren +Maribel +Marlen +Maryn +Merissa +Mila +Milana +Miya +Montana +Myra +Norma +Rachael +Rayne +Reanna +Rhea +Rhyan +Rianna +Rosalinda +Saanvi +Sahara +Savanah +Sayuri +Sheyla +Sianna +Sinai +Tatyana +Tegan +Ysabella +Zuri +Abbey +Addisen +Ahtziri +Alanah +Ali +Alianna +Alyssia +Amairany +Amalia +Amari +Amerie +Amie +Amiya +Anabel +Annabell +Annalicia +Annalisa +Anne +Aolanis +Arlette +Arya +Aubry +Austin +Avalon +Avianna +Ayva +Azucena +Baylie +Belle +Blessing +Brandi +Brandy +Brookelynn +Cayla +Cecelia +Celia +Charlene +Charlie +Cianna +Clare +Corinne +Danya +Dayanna +Dayna +Edna +Eleni +Elvia +Emmy +Evalyn +Finley +Georgina +Gia +Giada +Giavanna +Gisell +Gretchen +Haidyn +Hailie +Halie +Hayleigh +Heidy +Idaly +Isabell +Itzayana +Jailynn +Jaliyah +Jalynn +Janice +Jaslyn +Jaylyn +Jazlene +Jazmyne +Joselyne +Joselynn +Jovana +Julieanna +Justina +Kaci +Kairi +Kaley +Kalina +Kaliyah +Kari +Karissa +Kateri +Kathy +Kayli +Kierstyn +Kinsey +Kitzia +Kiya +Lacie +Lainey +Lara +Larisa +Leanna +Leilene +Lezly +Lianna +Liberty +Lilyan +Lilyanna +Lorelei +Lynette +Maeve +Malaya +Marbella +Marcella +Mareli +Marla +Mayah +Maylin +Mercedez +Michell +Mildred +Mina +Mischa +Moriah +Nadine +Norah +Nubia +Nya +Nyah +Paityn +Parker +Paulette +Petra +Pricilla +Raelynn +Rilee +Rita +Robin +Rory +Scarlette +Sicily +Silvia +Sofie +Soleil +Stacey +Stefany +Stevie +Taya +Tess +Tristan +Tristen +Unique +Vicky +Violeta +Virginia +Viridiana +Xitlali +Yanet +Yazmine +Yelitza +Yessica +Yoseline +Zaira +Zuleyka +Aaralyn +Abrianna +Abrielle +Abygail +Acacia +Addilyn +Adelynn +Adrienne +Adyson +Afton +Ailany +Airam +Aislinn +Aixa +Aiyanna +Alysia +Amiyah +Anahy +Andie +Aneesa +Anette +Angelli +Angely +Anjelica +Ann +Ariadna +Astrid +Audrianna +Avril +Azalea +Beatrice +Betty +Betzy +Bianka +Braelynn +Brayden +Bria +Brinlee +Brook +Caleigh +Calista +Carlee +Caydence +Celine +Charley +Charli +Coral +Dafne +Dallas +Danae +Delanie +Delila +Dennise +Destany +Devin +Devyn +Divina +Dixie +Diya +Dolores +Drew +Ellia +Elora +Elysia +Elyssa +Ema +Emmely +Emmerson +Estefany +Evangelina +Fallon +Geraldine +Ginger +Gisel +Gisele +Gladys +Glenda +Haily +Hunter +Irie +Izabel +Izel +Jacie +Jackie +Jacquelin +Jaeda +Jaedyn +Jaida +Jailyn +Jaime +Jalyn +Jalyssa +Jasmyn +Jersey +Jianna +Jiselle +Joelle +Kacey +Kalani +Kaleigh +Kalia +Kalista +Kamya +Karizma +Karlee +Katy +Kaya +Kennadi +Kiarra +Kierra +Kimberli +Kinsley +Kirstin +Krista +Kylea +Kyrie +Landry +Laylah +Laysha +Leilah +Lexy +Lidia +Luciana +Lynda +Mabel +Madalynn +Madisen +Mae +Maliah +Mari +Mariaelena +Mariangela +Martina +Mattie +Meagan +Meghan +Milagros +Milena +Miracle +Mylie +Myranda +Nahima +Naima +Naiya +Natalya +Nayely +Nidhi +Noel +Noelani +Noemy +Nohemi +Oakley +Oriana +Payten +Pearl +Rachelle +Randi +Raylee +Reilly +Rosemarie +Roxanna +Ryanne +Sabina +Samanta +Samaria +Samaya +Samira +Saydee +Shae +Shaina +Shandiin +Shaylin +Shivani +Sky +Sloan +Soraya +Sunshine +Thea +Tristin +Tylee +Vivianna +Xitlaly +Yasmine +Yesica +Yvonne +Zainab +Zaria +Zuleima +Isabella +Sophia +Emma +Emily +Mia +Abigail +Ava +Samantha +Madison +Elizabeth +Olivia +Ashley +Alexis +Natalie +Chloe +Camila +Alyssa +Brianna +Victoria +Hailey +Alexa +Valeria +Addison +Lily +Hannah +Grace +Ella +Nevaeh +Kimberly +Taylor +Evelyn +Savannah +Genesis +Destiny +Ariana +Sofia +Maria +Riley +Andrea +Mariah +Kaylee +Angelina +Jessica +Jasmine +Allison +Gabriella +Sarah +Brooklyn +Alexandra +Jennifer +Vanessa +Natalia +Jocelyn +Arianna +Aubrey +Brooke +Melanie +Michelle +Zoe +Layla +Audrey +Kayla +Makayla +Lillian +Aaliyah +Peyton +Kylie +Maya +Sydney +Stephanie +Morgan +Bella +Giselle +Isabel +Mya +Serenity +Trinity +Avery +Bailey +Daniela +Isabelle +Madeline +Anna +Gianna +Faith +Lauren +Leah +Leslie +Nicole +Melissa +Diana +Jacqueline +Miranda +Payton +Katherine +Kaitlyn +Alicia +Gabriela +Katelyn +Madelyn +Kate +Liliana +Mackenzie +Amaya +Jade +Julia +Rylee +Claire +Amelia +Jazmin +Adriana +Alondra +Angela +Hayden +Alexia +Charlotte +Sophie +Briana +Miley +Rachel +Amy +Daisy +Rebecca +Ruby +Sadie +Ana +Angelica +Karla +Tatum +Naomi +Mariana +Marissa +Bianca +Lucy +Ximena +Zoey +Esmeralda +Paige +Jordan +Lilly +Megan +Sara +Sienna +Valerie +Alejandra +Haley +Keira +Scarlett +Ashlyn +Delilah +Marley +Autumn +Jenna +Eva +Jazmine +Mary +Alexandria +Gabrielle +Juliana +Marely +Gracie +Leilani +Reagan +Violet +Elena +Ellie +Kennedy +Sierra +Izabella +Kylee +Reese +Audrina +Danielle +Karen +Sabrina +Valentina +Dulce +Estrella +Jordyn +Lydia +Aurora +Makenna +Reyna +Eliana +Priscilla +Fernanda +Jasmin +Katie +Mikayla +Fatima +Itzel +Amanda +Eden +Jayden +Stella +Annabelle +Desiree +Julianna +Karina +Kiara +Laila +Molly +Aliyah +Makenzie +Monica +Nataly +Carmen +Danna +Paulina +Alina +Amber +April +Ariel +Brooklynn +Cecilia +Cheyenne +Guadalupe +Haylee +Hope +Kassandra +Khloe +Tessa +America +Brielle +Catherine +Erika +Ivy +Jazlyn +Mckenna +Melany +Nayeli +Adrianna +Alana +Jimena +London +Veronica +Allisson +Carolina +Shelby +Abril +Cynthia +Dayanara +Perla +Angel +Caitlyn +Cassandra +Iris +Jaslene +Joanna +Joselyn +Kamila +Kira +Laura +Lyla +Paola +Vivian +Anahi +Breanna +Caitlin +Cassidy +Genevieve +Julissa +Kyla +Lexi +Rubi +Alessandra +Camryn +Christina +Daniella +Kendall +Kiera +Leila +Lizbeth +Lucia +Luna +Notnamed +Teagan +Tiffany +Ashlynn +Athena +Brenda +Cadence +Celeste +Chelsea +Emely +Erin +Jamie +Mckenzie +Melody +Sarai +Angelique +Camille +Caroline +Delaney +Jada +Josephine +Paisley +Rihanna +Skylar +Yareli +Alison +Allyson +Ciara +Clara +Danika +Eliza +Holly +Janelle +Kayleigh +Lola +Marisol +Presley +Yesenia +Callie +Danica +Elise +Erica +Gloria +Jadyn +Jillian +Lindsey +Nadia +Nora +Viviana +Yoselin +Alice +Angie +Arely +Azul +Denise +Heidi +Jaelyn +Katelynn +Kaydence +Kendra +Madilyn +Marlee +Summer +Wendy +Yaretzi +Anastasia +Ariza +Aubree +Ayla +Jayla +Kaylie +Kyra +Lilliana +Malia +Rylie +Yamileth +Adeline +Aylin +Harmony +Julie +Kathryn +Lacey +Maritza +Rosa +Tatiana +Bryanna +Crystal +Jayda +Kaitlin +Kali +Lindsay +Melina +Piper +Raquel +Sandra +Shayla +Yazmin +Abby +Aileen +Allie +Amira +Anaya +Araceli +Brenna +Dayami +Dayana +Denisse +Kelsey +Lilyana +Margaret +Noelle +Rebekah +Samara +Sasha +Savanna +Alissa +Aniyah +Anya +Claudia +Dana +Elle +Halle +Isis +Kayden +Keyla +Kiana +Kiley +Lesly +Miriam +Patricia +Selah +Yasmin +Abbigail +Annabella +Brynn +Carla +Courtney +Damaris +Hanna +Iliana +Janessa +Kailey +Kelly +Leticia +Lexie +Lia +Lilian +Marina +Marlene +Mikaela +Paloma +Selena +Serena +Sherlyn +Yaritza +Carly +Frida +Hailee +Jaylene +Kailyn +Kara +Kyleigh +Lila +Macy +Maddison +Maggie +Mareli +Marilyn +Mila +Nancy +Penelope +Ryleigh +Vianey +Ainsley +Annika +Aubrianna +Clarissa +Dakota +Dominique +Elaina +Emerson +Emery +Emilee +Harley +Heaven +Isabela +Jaycee +Kadence +Kaelyn +Kailee +Maryjane +Mayrin +Mckayla +Mercedes +Natasha +Noelia +Pamela +Paula +Sage +Sedona +Yamilet +Addyson +Alaina +Alyson +Annie +Camilla +Cora +Diamond +Donna +Elisa +Esther +Hazel +Ingrid +Ivanna +Madeleine +Martha +Monique +Mylee +Quinn +Regina +Shannon +Alanna +Alize +Anika +Cali +Catalina +Chanel +Fiona +Gisselle +Heather +Isabell +Ivana +Jaqueline +Jazlynn +Kamryn +Kaylynn +Kenya +Michaela +Reina +Rose +Sariah +Tanya +Teresa +Whitney +Aiyana +Alisson +Amara +Anabelle +Aryanna +Brisa +Cristal +Eleanor +Eve +Harper +Jaden +Jaiden +Jasmyn +Jazlene +Johanna +Jolie +Karissa +Kristen +Liana +Lilah +Marianna +Marie +Parker +Sarahi +Adelina +Alayna +Alena +Aliana +Anissa +Barbara +Baylee +Bethany +Brittany +Cheyanne +Cindy +Cristina +Dalila +Dylan +Emilia +Esperanza +Gizelle +Hillary +Jaidyn +Karlee +Kimora +Krystal +Lea +Lilianna +Lilyanna +Lluvia +Madalyn +Madyson +Mayra +Mireya +Nathaly +Nina +Phoebe +Rachael +Raegan +Renee +Rowan +Ruth +Sharon +Skyla +Tabitha +Talia +Taryn +Yadira +Yuliana +Aimee +Aleah +Alivia +Alma +Angelita +Aria +Aryana +Ayleen +Belen +Belinda +Braelyn +Brylee +Cara +Caylee +Charlize +Deborah +Elsie +Felicity +Georgia +Hayley +Helen +Isela +Jane +Janice +Jayleen +Jaylin +Jazmyn +Kaitlynn +Kenna +Lana +Linda +Litzy +Lorena +Luz +Madelynn +Madisyn +Makena +Miah +Milagros +Monserrat +Myah +Natalee +Nathalie +Noemi +Paris +Rhianna +Scarlet +Shyanne +Xochitl +Yazmine +Adilene +Ailyn +Alaya +Aleena +Amari +Annette +Arlene +Arleth +Ashlee +Blanca +Cameron +Carissa +Deanna +Eileen +Elliana +Evangeline +Evelin +Finley +Giada +Giovanna +Grecia +Hadley +Irene +Jaylynn +Jessie +Jocelynn +Jordin +Juliette +Karyme +Katia +Kianna +Kristina +Lillyana +Logan +Lyric +Macie +Neveah +Rayna +Shiloh +Stacy +Tania +Tori +Zariah +Abbey +Alani +Alexus +Alyna +Amelie +Amya +Analia +Annabel +Anne +Aracely +Ariadna +Ayana +Bridget +Briseyda +Britney +Carina +Charlie +Cherish +Cienna +Cierra +Citlali +Dahlia +Estefania +Hadassah +Haylie +Jayde +Jazleen +Josie +Juliet +June +Kaley +Kirsten +Lauryn +Lilith +Lillianna +Lillie +Lillyanna +Lucero +Macey +Marisa +Marlie +Meghan +Precious +Regan +Saige +Sidney +Soraya +Sylvia +Tiana +Tiara +Violeta +Virginia +Yarely +Zuleyka +Adamaris +Adelaide +Alisha +Amiyah +Anabel +Anabella +Arabella +Areli +Arlette +Aspen +Aubrie +Audriana +Averi +Beatriz +Braelynn +Bryana +Charlee +Charley +Christine +Cloe +Dania +Daphne +Dayanna +Elsa +Emmalee +Graciela +Gwendolyn +Hallie +Jackeline +Jaida +Janet +Jayme +Jolene +Kaila +Karely +Kassidy +Kaylen +Kayley +Kaylin +Kendyl +Kenzie +Larissa +Londyn +Luisa +Maia +Mariajose +Mariam +Maribel +Marisela +Melani +Mina +Miracle +Natali +Norah +Phoenix +Rosario +Ryan +Ryann +Siena +Thalia +Theresa +Tianna +Xiomara +Yanitza +Yara +Yuridia +Yvette +Abbie +Ada +Aliya +Amaris +Amina +Analicia +Anyssa +Armani +Astrid +Aubriana +Ciana +Cielo +Dalia +Dalilah +Destiney +Elianna +Emilie +Fabiola +Flor +Galilea +Heidy +Helena +Jacquelin +Jacquelyn +Jaelynn +Jaquelin +Jaslyn +Jaylee +Jazmyne +Judith +Kasey +Katrina +Kaya +Kayleen +Kayli +Keely +Kendal +Kenia +Lacy +Lara +Leilany +Lena +Liberty +Lina +Lizeth +Lyra +Maite +Mallory +Maren +Mariafernanda +Mariela +Marlen +Matilda +Micaela +Nadine +Paityn +Payten +Priscila +Renata +Romina +Rosalinda +Rosemary +Sarina +Savanah +Shania +Sheyla +Soleil +Susana +Taytum +Tia +Unique +Willow +Yailin +Zoie +Adelyn +Adrienne +Aliza +Alysa +Anita +Aniya +Annalise +Arielle +Ashly +Asia +Bailee +Betsy +Brandi +Brissa +Brissia +Brynlee +Cailyn +Calista +Casey +Cayla +Celia +Dani +Danitza +Darla +Darlene +Dasha +Dayanira +Destinee +Elaine +Elisabeth +Elyse +Ember +Emmie +Estella +Evelynn +Francisca +Gia +Gisele +Giuliana +Gwenyth +Haven +Imani +Isla +Ivette +Izabelle +Janeth +Jenny +Jewel +Johana +Justice +Kaelynn +Kaiya +Karime +Kathleen +Kelsie +Kierra +Leanna +Leona +Lizette +Lorelei +Madalynn +Madilynn +Maiya +Mariyah +Milan +Montserrat +Moriah +Naima +Nathalia +Nizhoni +Patience +Princess +Raelynn +Rianna +Rilee +Roselyn +Salma +Savana +Sayuri +Selina +Shea +Shyla +Skye +Star +Stephany +Sydnee +Tyler +Valery +Vera +Vianney +Viridiana +Yasmine +Yulissa +Zara +Adalyn +Addisyn +Aditi +Adyson +Aiden +Aisha +Alexys +Alianna +Amalia +Annalee +Antonia +Arden +Ariah +Avril +Ayden +Blessing +Brandy +Cailin +Campbell +Charisma +Christiana +Ciera +Daelynn +Danae +Dayra +Delanie +Diya +Edith +Elissa +Ellen +Emmy +Evalyn +Gemma +Hayleigh +Hennessy +Hilary +Itzayana +Izabel +Janae +Janette +Janiyah +Joselin +Joslynn +Julieta +Justine +Kaia +Kailani +Kaili +Kalia +Kallie +Kalyn +Keila +Kimber +Kirra +Krista +Lailah +Laney +Leia +Lorelai +Lucille +Lupita +Maci +Maleah +Maliyah +Mara +Marcela +Margarita +Marian +Meadow +Milla +Mira +Mollie +Myla +Nayely +Nelly +Nia +Nicolette +Nikki +Nola +Raina +Raven +Rayne +Roxanne +Rylan +Sahara +Samia +Shaylee +Simone +Sonia +Stacey +Stevie +Sunshine +Suri +Tess +Tierra +Toni +Vanesa +Vienna +Yolanda +Yulianna +Zaria +Abrianna +Abrielle +Adison +Aiyanna +Alanis +Ali +Alisa +Alliyah +Ally +Alycia +Amairany +Amayah +Amiya +Analisa +Analise +Andie +Angeles +Angelly +Ani +Aniah +Ansley +Ariyana +Arlyn +Aubry +Avalon +Ayanna +Ayva +Betzy +Bree +Brinley +Briseida +Candace +Casandra +Cassie +Caydence +Charity +Clare +Corinne +Delia +Demi +Diane +Eunice +Evangelina +Evie +Felicia +Francesca +Georgina +Geraldine +Giana +Gladys +Gracelyn +Gwen +Heydi +Illiana +Ilse +Irma +Ixchel +Jackelyn +Janie +Jaslynn +Jaylyn +Jeanette +Jenesis +Jennavecia +Jersey +Jessenia +Jessi +Joana +Jocelin +Jordynn +Joselynn +Josselyn +Julianne +Kai +Kailynn +Kalli +Kamilah +Kaylyn +Kinley +Kinsey +Kyara +Laysha +Leann +Leigha +Leyla +Lidia +Lilee +Lilia +Lisa +Lisette +Louisa +Lourdes +Luciana +Lynette +Maddie +Madisen +Magdalena +Maylin +Meredith +Myra +Naila +Nallely +Nubia +Nyla +Olga +Olive +Paulette +Preslee +Rayanna +Reanna +Rebeca +Rhyan +Rory +Roxy +Saira +Selene +Shyann +Silvana +Skyler +Sloane +Tamara +Tara +Tatianna +Tayla +Triniti +Trista +Vania +Winter +Xitlaly +Yahaira +Yanira +Yessenia +Yoselyn +Zaira +Addie +Ahtziry +Aideliz +Aila +Ailin +Airam +Alannah +Alayah +Alexie +Alizabeth +Alyana +Alysia +Amairani +Amani +Amariah +Anamaria +Andi +Anette +Angelia +Angelic +Anisa +Anjali +Ann +Aolanis +Ariella +Asha +Aundrea +Aurelia +Averie +Avianna +Beatrice +Berlin +Berlyn +Bianka +Blake +Brea +Bria +Brianda +Brianne +Brilee +Brisia +Britany +Brook +Brooklin +Carli +Cecelia +Chantal +Chevelle +Chiara +Colette +Colleen +Constanza +Corina +Dafne +Dallas +Dawn +Dayani +Dayna +Deja +Dennise +Devyn +Dina +Drew +Elayna +Eleni +Elisha +Ellery +Elliot +Elyssa +Ericka +Ester +Gabryella +Ginger +Holland +Hunter +Ireland +Irelyn +Ivory +Izabell +Jaliyah +Jalyn +Jalynn +Jazelle +Jazzlyn +Jenessa +Jocelyne +Joelle +Journey +Jovanna +Joy +Kaely +Kaidence +Kairi +Kaliyah +Kambria +Kamille +Kamyla +Karley +Karlie +Karly +Katarina +Kathy +Katya +Keegan +Kiersten +Kloe +Kloey +Kristin +Kylah +Kyndall +Laci +Lacie +Laisha +Laylah +Leeanna +Leena +Liah +Lianna +Lilli +Livia +Liyah +Lois +Lylah +Makaylah +Makenzi +Malaya +Mariaelena +Maricela +Marjorie +Maryann +Mattie +Mayah +Melania +Melanny +Melia +Melisa +Milana +Monet +Monserrath +Mylie +Myranda +Nayomi +Nereyda +Nika +Nikita +Nohemi +Norma +Nylah +Odalis +Peighton +Rhiley +Rileigh +Robin +Rocio +Rosie +Roxana +Roxanna +Sabina +Samaya +Sandy +Saniyah +Savina +Saylor +Scarlette +Shanelle +Shayna +Shayne +Sheila +Silvia +Simran +Skylee +Sofie +Starr +Susan +Sylvana +Tamia +Taya +Taylin +Tegan +Vida +Vivianna +Vivienne +Xitlali +Yaretzy +Zayda +Isabella +Sophia +Emma +Mia +Emily +Olivia +Madison +Abigail +Ava +Samantha +Natalie +Chloe +Ashley +Elizabeth +Alexis +Alyssa +Valeria +Victoria +Brianna +Addison +Taylor +Lily +Hailey +Camila +Sarah +Bella +Sofia +Andrea +Alexa +Allison +Nevaeh +Grace +Ella +Evelyn +Kaylee +Zoe +Ariana +Kimberly +Savannah +Aubrey +Hannah +Maria +Brooklyn +Gabriella +Mariah +Vanessa +Leah +Arianna +Jocelyn +Layla +Maya +Peyton +Riley +Aaliyah +Brooke +Makayla +Avery +Jasmine +Melanie +Alexandra +Audrey +Genesis +Serenity +Jessica +Kayla +Michelle +Destiny +Faith +Natalia +Claire +Gianna +Mackenzie +Angelina +Lillian +Zoey +Trinity +Giselle +Isabel +Anna +Madeline +Kaitlyn +Liliana +Lauren +Stephanie +Eva +Ruby +Sophie +Mya +Bailey +Kylie +Nicole +Sadie +Tatum +Valerie +Amaya +Madelyn +Morgan +Daniela +Paige +Sydney +Leilani +Amelia +Hayden +Leslie +Sara +Alexia +Charlotte +Isabelle +Jade +Katherine +Melissa +Jennifer +Payton +Angela +Khloe +Lilly +Amy +Jacqueline +Naomi +Rachel +Megan +Rylee +Ximena +Alondra +Julia +Kylee +Reagan +Daisy +Sienna +Autumn +Gabriela +Mariana +Audrina +Scarlett +Izabella +Lucy +Adriana +Ellie +Fernanda +Katelyn +Keira +Alicia +Molly +Aliyah +Briana +Jordyn +Stella +Ana +Elena +Jayden +Kennedy +Miranda +Adrianna +Karla +Aurora +Danielle +Valentina +Gabrielle +Jazmine +Jordan +Lyla +Violet +Angelica +London +Mikayla +Anahi +Leila +Piper +Alejandra +Cheyenne +Jazmin +Lola +Eliana +Fatima +Julianna +Kate +Miley +Rebecca +Shelby +Tessa +Ashlyn +Bianca +Juliana +Makenna +Alina +Danna +Gracie +Alexandria +Ariza +Aylin +Cecilia +Esmeralda +Haley +Karen +Reese +Alana +Jenna +Melody +Annabelle +Cassandra +Delilah +Marley +Monica +Amber +Analia +Dulce +Marissa +Ariel +Diana +Kendall +Mckenna +Penelope +Sierra +Vivian +April +Brielle +Brooklynn +Jimena +Sabrina +Allyson +Amanda +America +Athena +Guadalupe +Itzel +Kiara +Laila +Mary +Mckenzie +Priscilla +Lilliana +Luna +Camille +Carmen +Elise +Iris +Jillian +Katie +Summer +Angel +Christina +Estrella +Jada +Ayleen +Brisa +Crystal +Daniella +Haylee +Kathryn +Kendra +Lexi +Lydia +Macy +Joanna +Kadence +Annabella +Caroline +Dayana +Erika +Heidi +Josephine +Kyla +Laura +Sarai +Aileen +Cadence +Delaney +Eden +Jamie +Julissa +Kamila +Karina +Kaydence +Kaylie +Lia +Nataly +Alison +Harmony +Ivanna +Janelle +Jazlyn +Kyra +Lizbeth +Makenzie +Melina +Paulina +Rosa +Selena +Abby +Breanna +Carolina +Danica +Emery +Genevieve +Ivy +Juliet +Malia +Maliyah +Nora +Paola +Savanna +Veronica +Ashlynn +Aubree +Camryn +Cassidy +Lilyana +Melany +Reyna +Teagan +Tiffany +Yaretzi +Alessandra +Anaya +Hope +Jasmin +Lila +Natalee +Nathalie +Perla +Rylie +Sasha +Serena +Allie +Angelique +Arely +Brynlee +Caitlin +Caylee +Dayanara +Eliza +Jayla +Kailey +Madeleine +Miriam +Monserrat +Notnamed +Paisley +Rebekah +Sariah +Abril +Alice +Brenda +Brynn +Caitlyn +Claudia +Evangeline +Hazel +Iliana +Isis +Jaelyn +Katelynn +Kiley +Madilyn +Marisol +Marlee +Samara +Sherlyn +Amara +Azul +Catherine +Dakota +Dana +Denise +Emely +Hanna +Holly +Jazlynn +Kara +Kassandra +Maddison +Martha +Mikaela +Nayeli +Yamileth +Yareli +Alivia +Aria +Aspen +Brenna +Celeste +Chelsea +Cindy +Emilee +Harper +Isabela +Jaiden +Johanna +Julie +Kaelyn +Kamryn +Kayleigh +Kiana +Kira +Madelynn +Margaret +Presley +Tatiana +Yamilet +Alanna +Angie +Aniyah +Aryanna +Ayla +Carly +Clarissa +Danika +Emilia +Esperanza +Jadyn +Joselyn +Kaylynn +Kelly +Kiera +Marina +Shayla +Willow +Yaritza +Yuliana +Adalyn +Addyson +Ailyn +Aiyana +Alayna +Aleena +Allisson +Alma +Alyson +Aubrie +Cynthia +Hadley +Jayda +Leticia +Lilah +Lorena +Luciana +Maggie +Maritza +Mercedes +Natasha +Paloma +Patricia +Ryleigh +Yazmin +Annie +Annika +Araceli +Aracely +Belen +Brylee +Cali +Ciara +Desiree +Elaina +Elisa +Gloria +Heather +Helena +Janessa +Kali +Kaylin +Lena +Linda +Luz +Michaela +Monique +Noelle +Raquel +Renee +Skylar +Yesenia +Alisson +Barbara +Cora +Emerson +Erica +Hailee +Harlow +Jackeline +Jane +Joy +Kaiya +Kenzie +Lindsey +Mallory +Marilyn +Marlene +Mila +Myla +Nina +Quinn +Rose +Sage +Talia +Taryn +Ainsley +Amira +Anabelle +Arabella +Aubrianna +Baylee +Callie +Catalina +Damaris +Daphne +Dayanna +Dylan +Erin +Evelin +Frida +Hayley +Isla +Jaidyn +Jaqueline +Jaslene +Jessie +Karyme +Kelsey +Kianna +Lucia +Nadia +Olive +Phoebe +Rachael +Sandra +Sarahi +Shyla +Tiana +Yvette +Alaina +Amani +Anastasia +Anissa +Aniya +Arielle +Berenice +Clara +Denisse +Edith +Francesca +Gemma +Gia +Gwendolyn +Harley +Heaven +Irene +Ivette +Joslyn +Juliette +Lana +Lesly +Lyric +Madisyn +Marely +Mina +Myah +Nia +Noemi +Raegan +Rihanna +Rowan +Siena +Wendy +Yasmin +Abrielle +Addisyn +Aleah +Anabel +Annette +Anya +Carissa +Carla +Dania +Eleanor +Elle +Georgia +Geraldine +Giovanna +Jaycee +Jaylee +Jayleen +Jaylin +Jocelynn +Judith +Kailyn +Kenya +Keyla +Kristina +Lillie +Lillyanna +Madalyn +Mireya +Norah +Ruth +Ryan +Selene +Shea +Skye +Xochitl +Yoselin +Abrianna +Aliana +Anisa +Ariella +Asia +Brissa +Camilla +Celia +Cheyanne +Cristal +Dahlia +Dominique +Elianna +Fiona +Galilea +Haven +Helen +Ivana +Jaylene +Jaylynn +Jemma +Kaia +Kaidence +Kailee +Kathleen +Laney +Lexie +Liana +Liberty +Lilian +Lillianna +Lluvia +Maribel +Marie +Mckayla +Miah +Nancy +Nathalia +Nizhoni +Reece +Reina +Romina +Rubi +Selah +Shiloh +Vianney +Yuridia +Ada +Adelyn +Adrienne +Alani +Aliah +Alisha +Anessa +Ashlee +Bailee +Bridget +Bryanna +Casey +Charlie +Dariana +Destinee +Emilie +Emmy +Esther +Eve +Evelynn +Giada +Gisselle +Italia +Janae +Jayde +Jazmyn +Josie +Kaitlin +Kendal +Kenia +Lacey +Leilah +Lucero +Madilynn +Makena +Montserrat +Nathaly +Paula +Renata +Rosario +Tayler +Thalia +Yasmine +Zariah +Zoie +Abbigail +Adeline +Adilene +Amelie +Anabella +Anamaria +Aolanis +Arleth +Ashly +Ayden +Belinda +Bria +Brittany +Cailyn +Courtney +Deanna +Donna +Elliana +Elyse +Ericka +Giuliana +Johana +Kaitlynn +Karime +Kasey +Kassidy +Kaya +Kayleen +Kenna +Kyleigh +Lauryn +Leyla +Lilia +Lillyana +Londyn +Lorelai +Macie +Madalynn +Mariajose +Marian +Mariela +Maryjane +Meghan +Micah +Paityn +Paris +Princess +Priscila +Raelynn +Roselyn +Roxanne +Salma +Sarina +Scarlet +Sidney +Tabitha +Violeta +Abigayle +Adelynn +Aimee +Alaya +Alexus +Alissa +Amiyah +Anais +Analise +Antonia +Averie +Bethany +Britney +Brookelyn +Cameron +Cara +Carina +Christiana +Dalilah +Destini +Devyn +Ember +Estefania +Evie +Finley +Gisell +Greidys +Haleigh +Haylie +Imani +Jaden +Jaelynn +Jolie +Julianne +Justice +Kaila +Kaley +Kaliyah +Kayden +Kaylyn +Kinsley +Kristen +Krystal +Lainey +Leighton +Lexy +Lilianna +Lindsay +Lisa +Lorelei +Lucille +Luisa +Lylah +Maci +Maliah +Mattie +Maylee +Meadow +Milagros +Natalya +Neveah +Pearl +Raven +Rebeca +Regina +Roxanna +Sianna +Sonia +Tamara +Tania +Tara +Unique +Virginia +Viviana +Vivianna +Xiomara +Yahaira +Yulissa +Abbie +Adelaide +Aiyanna +Alena +Alize +Amaris +Anette +Annabel +Annalee +Areli +Arlene +Aryana +Berkley +Blanca +Braelyn +Briley +Brinley +Briseida +Briseis +Carlie +Cayla +Charlee +Charlize +Christine +Cloey +Danitza +Desirae +Destiney +Diamond +Elisabeth +Emelia +Emme +Evalyn +Felicia +Felicity +Halle +Hallie +Heidy +Isabell +Jaedyn +Jaida +Janice +Joelle +Jolene +Jordin +Kaleigh +Kalli +Kayli +Keely +Keila +Kloe +Lara +Larissa +Lea +Leilany +Lilyanna +Litzy +Lyra +Macey +Madyson +Maite +Malaya +Maleah +Mara +Marin +Mayrin +Melani +Meredith +Miracle +Noelia +Pamela +Parker +Phoenix +Priya +Raina +Rayne +Sahara +Savana +Scarlette +Sedona +Shannon +Skyla +Sylvia +Taliyah +Tanya +Teresa +Tianna +Valery +Vianey +Yadira +Yarely +Abygail +Adelina +Adrina +Adyson +Aida +Aisha +Alia +Aliya +Alora +Alycia +Amayah +Amia +Anaiya +Angeline +Ania +Annabell +Annalise +Aritza +Ariyah +Aurelia +Avani +Azucena +Beatriz +Betsy +Briella +Carolyn +Chanel +Charley +Cienna +Cloe +Corinne +Cristina +Dafne +Davina +Destany +Diane +Elaine +Emmalyn +Evolet +Giana +Gisel +Gizelle +Harlee +Izabelle +Jacklyn +Janet +Jaquelyn +Jaslyn +Jazzlyn +June +Kacey +Kalia +Kallie +Kamilah +Karissa +Katy +Kayley +Kimora +Krista +Leia +Lina +Lizette +Maia +Malina +Maren +Marianna +Marisa +Mariyah +Marlie +Matilda +Mayra +Millie +Naima +Natali +Nichole +Nicolette +Nubia +Nyah +Remi +Rosalie +Roxana +Roxy +Sally +Sandy +Shayne +Shyanne +Simone +Skyler +Sloane +Stevie +Tatianna +Theresa +Toni +Vanesa +Venus +Vivienne +Yoselyn +Abbygail +Abigale +Adele +Adison +Aliza +Alli +Amalia +Amari +Amberlyn +Amina +Anali +Analisa +Analy +Andie +Aniah +Anitza +Annalicia +Ari +Arlette +Aubriana +Avah +Ayanna +Beatrice +Braelynn +Brianne +Campbell +Capri +Carlee +Caydence +Celina +Chantel +Charli +Chastelyn +Chelsey +Coraline +Dalia +Dallas +Darlene +Dayami +Deja +Deziree +Elia +Elina +Elissa +Estella +Ginger +Grecia +Gwen +Gwenyth +Haidyn +Halo +Hayleigh +Holland +Hunter +Ilse +Jacquelin +Jaylah +Jaylyn +Justine +Kairi +Karely +Karis +Karisma +Karlie +Katrina +Kaylani +Kaylen +Kendyl +Keyli +Kierra +Kiersten +Kinley +Kirsten +Kyah +Kyrie +Lailah +Laylah +Lesley +Liah +Libby +Lilith +Lizeth +Logan +Loren +Magdalena +Maricela +Mariel +Mariella +Marisela +Marlen +Maryam +Maylin +Mayte +Melannie +Micaela +Milan +Moriah +Mylee +Nyla +Patience +Precious +Raelyn +Rayna +Rhianna +Robyn +Rory +Ryann +Rylan +Ryley +Samarah +Saniya +Saniyah +Savanah +Sharon +Shaylee +Sheila +Sheyla +Shyann +Silvana +Silvia +Solana +Stacy +Tatyana +Taya +Tyra +Wynter +Xitlali +Yajaira +Yanitza +Yaretzy +Zara +Abbey +Adalynn +Adamari +Adamaris +Aditi +Alayah +Alianna +Alisa +Alyna +Alyvia +Amariah +Amerie +Amirah +Analeah +Analee +Analeigh +Analicia +Ananya +Andi +Annamarie +Anne +Annelise +Annmarie +Anushka +Anyssa +Ariadna +Ariah +Arissa +Ashtyn +Astrid +Aubry +Audriana +Audrie +Austyn +Avary +Averi +Azaria +Azariah +Brandy +Braya +Brea +Bridgette +Brighton +Bristol +Candice +Carley +Chasity +Cianna +Colbie +Dani +Danya +Darianna +Dayra +Demi +Ebony +Eileen +Elisha +Ellen +Elsie +Elysia +Elyssa +Ema +Emmalee +Emmery +Estela +Giavanna +Gissell +Glenda +Gracelyn +Graciela +Greydis +Griselda +Haily +Hawa +Hillary +Hollie +Idaly +Illiana +Ireland +Irma +Izabel +Jaime +Jaliyah +Janie +Janiyah +Jaquelin +Jayline +Jaymee +Jazleen +Jazlene +Jazlin +Jenny +Jeslyn +Jessenia +Jewel +Jiselle +Jolee +Josselyn +Jovanna +Julieta +Kailani +Kami +Kamille +Karlee +Karmen +Karsyn +Kasandra +Kathy +Keiry +Kelsie +Kenadee +Kimber +Kinsey +Korina +Laisha +Laynee +Leigha +Leona +Lianna +Lidia +Lillyan +Lissette +Mackenna +Mairyn +Maisy +Margarita +Marleigh +Maycee +Mckinley +Mercedez +Michele +Mika +Miliana +Mollie +Nellie +Nola +Norma +Nya +Nyomi +Peighton +Petra +Pricilla +Rachelle +Rebeka +Reegan +Riann +Rita +Rori +Rosalinda +Rosie +Samaya +Saylor +Shae +Shaylynn +Sinai +Sofie +Stacey +Suri +Susan +Susana +Taytum +Temperance +Tia +Tiara +Tori +Tristyn +Tyler +Whitney +Xitlaly +Xoe +Yazmine +Yessica +Ysabella +Zaira +Zaria +Zarina +Zuleyka +Isabella +Sophia +Mia +Emma +Olivia +Emily +Abigail +Ava +Madison +Natalie +Chloe +Samantha +Victoria +Elizabeth +Alexis +Hailey +Camila +Addison +Ella +Evelyn +Nevaeh +Lily +Bella +Alyssa +Brianna +Ashley +Alexa +Zoe +Aubrey +Sofia +Brooklyn +Gabriella +Savannah +Andrea +Allison +Kaylee +Arianna +Hannah +Taylor +Valeria +Kimberly +Aaliyah +Jasmine +Serenity +Alexandra +Grace +Genesis +Charlotte +Layla +Zoey +Leah +Audrey +Destiny +Maya +Maria +Natalia +Lillian +Makayla +Kylie +Khloe +Peyton +Jocelyn +Kayla +Sarah +Riley +Ariana +Sophie +Gianna +Melanie +Avery +Claire +Vanessa +Amelia +Liliana +Mariah +Payton +Faith +Angelina +Giselle +Jessica +Mackenzie +Tatum +Anna +Brooke +Sydney +Bailey +Daisy +Lilly +Nicole +Ellie +Julia +Scarlett +Valentina +Lauren +Paige +Ruby +Naomi +Violet +Jennifer +Lucy +Rylee +Isabel +Lyla +Aliyah +Michelle +Mya +Adriana +Stephanie +Ximena +Angela +Eden +Izabella +Leilani +Trinity +Amaya +Daniela +Isabelle +Jordyn +Madeline +Mikayla +Reagan +Jade +Kaitlyn +Katelyn +Leila +Sadie +Valerie +Eva +Danna +Gabriela +Autumn +Brooklynn +Ariza +Jacqueline +Leslie +Delilah +Madelyn +Penelope +Eliana +Jazmine +Reese +Stella +Alicia +Annabelle +Audrina +Aurora +Brielle +Ivy +Katherine +Lexi +Marissa +Megan +Elena +Harper +Ana +Briana +Hayden +Kennedy +Summer +Alexia +Alondra +Juliana +Lydia +Ashlyn +Mary +Miranda +Molly +Amy +Esmeralda +Kendall +Laila +Mariana +Melissa +Teagan +Yaretzi +Alexandria +Diana +Jazmin +Keira +Melody +Jenna +Shelby +April +Chelsea +Fernanda +Jayla +Kamila +Morgan +Rebecca +Gracie +Jayden +Julianna +London +Presley +Sienna +Tessa +Anahi +Estrella +Alejandra +Angel +Kendra +Lila +Sierra +Aubree +Cassandra +Eleanor +Genevieve +Itzel +Makenna +Mckenzie +Athena +Danielle +Gabrielle +Kylee +Piper +Rachel +Sara +Alina +Dulce +Kassandra +Monica +Alessandra +Alice +Haley +Jordan +Karla +Lola +Miley +Paisley +Brisa +Jillian +Kate +Adrianna +Christina +Clara +Cynthia +Guadalupe +Jada +Kira +Malia +Marisol +Nataly +Vivian +Alana +Amanda +Angelica +Cadence +Sabrina +Aiyana +Bianca +Carly +Emery +Katie +Kiera +Lilliana +Selena +Anaya +Angelique +Arabella +Carmen +Evangeline +Hope +Ivanna +Jazlyn +Karen +Kyleigh +Lilah +Melany +Reyna +Allie +Allyson +Carolina +Cecilia +Elise +Holly +Kiara +Marley +Mckenna +Quinn +Tiffany +Annabella +Caitlyn +Cheyenne +Heidi +Iris +Kyla +Nayeli +Ruth +Scarlet +Addyson +Ainsley +Alaina +Alison +Alivia +Amber +Anabelle +Daniella +Daphne +Janelle +Kinsley +Lucia +Luna +Macy +Mila +Sasha +Tatiana +Veronica +Ariel +Ashlynn +Camille +Caroline +Delaney +Hazel +Jasmin +Jimena +Josephine +Josie +Julissa +Katelynn +Kiana +Noelle +Priscilla +Rowan +Rylie +Breanna +Denise +Eliza +Emely +Erika +Giana +Harmony +Jaelyn +Kathryn +Lilyana +Myla +Abril +Alayna +Aria +Ayleen +Brenda +Brynlee +Camilla +Cora +Danika +Hadley +Janessa +Juliet +Karina +Kelly +Kelsey +Madeleine +Paulina +Rebekah +Viviana +Aleah +Aryanna +Aylin +Brittany +Brynn +Clarissa +Dayana +Elle +Finley +Jayda +Kailey +Kaydence +Lilianna +Makenzie +Maritza +Nora +Rose +Savanna +Tiana +Yaritza +Catherine +Esther +Haylee +Jaqueline +Jayleen +Kayleigh +Keyla +Laura +Madelynn +Marilyn +Mikaela +Paula +Perla +Regina +Ryleigh +Serena +Sherlyn +Willow +Annie +Anya +Azul +Cali +Dakota +Danica +Erica +Erin +Fiona +Isla +Joselyn +Juliette +Kaiya +Maddison +Mallory +Melina +Nadia +Paola +Skylar +Yamileth +Yazmin +Yesenia +Abby +Adelina +Alissa +Alisson +Camryn +Charlie +Emilia +Fatima +Gloria +Julie +Kara +Lia +Lillyana +Londyn +Madilyn +Maliyah +Margaret +Mireya +Natasha +Nina +Noemi +Raquel +Talia +Adeline +Alyson +Bryanna +Caitlin +Cassidy +Celeste +Ciara +Emilee +Esperanza +Georgia +Giuliana +Jaelynn +Jamie +Joanna +Johanna +Kayden +Kaylie +Kyra +Larissa +Lilian +Lilyanna +Norah +Olive +Parker +Vivienne +Yareli +Yoselin +Zoie +Adalyn +Aileen +Angie +Aniyah +Annika +Ayla +Bailee +Barbara +Brenna +Brylee +Desiree +Elliana +Emelia +Gia +Giovanna +Hailee +Heaven +Ingrid +Isis +Jazlynn +Kaylin +Kenzie +Kiley +Krystal +Lacey +Lena +Leticia +Lizeth +Madalyn +Madisyn +Milagros +Phoebe +Raegan +Sarai +Abbigail +Adelyn +Aleena +America +Anabella +Anika +Anissa +Belen +Claudia +Crystal +Harley +Isabell +Jadyn +Jane +Jaylynn +Jessie +Kaelyn +Kamryn +Kassidy +Maci +Marina +Miriam +Neveah +Nia +Paloma +Patricia +Phoenix +Rubi +Sage +Samara +Sarahi +Sariah +Tenley +Zariah +Aimee +Amara +Anastasia +Arlette +Aspen +Averie +Baylee +Brinley +Callie +Cameron +Charlee +Cindy +Courtney +Dahlia +Evelynn +Haylie +Isabela +Jayde +Jaylene +Kinley +Lana +Luz +Macie +Marlee +Mercedes +Monique +Natalee +Raelynn +Rosalie +Shayla +Skye +Skyler +Sloane +Adalynn +Alani +Alena +Amaris +Amina +Amiyah +Analia +Aniya +Araceli +Aracely +Arely +Ariah +Audriana +Bridget +Carla +Carlee +Catalina +Dayanara +Elaina +Elisa +Elisabeth +Gisselle +Gracelyn +Harlow +Jaylin +Kailani +Kailyn +Kaley +Liana +Lisa +Lizbeth +Maggie +Marianna +Marie +Maryjane +Mckayla +Michaela +Milla +Myah +Rihanna +Sylvia +Taya +Tess +Tia +Violeta +Yamilet +Abrielle +Adamari +Adelaide +Ailyn +Amira +Annette +Arielle +Arlene +Aubrie +Ayanna +Donna +Dylan +Heidy +Iliana +Italia +Jaycee +Jaylyn +Jocelynn +Joslyn +Judith +Karissa +Kaya +Lexie +Leyla +Liberty +Lillianna +Lillie +Lindsey +Logan +Lylah +Lyric +Madyson +Mariajose +Mariela +Meadow +Miah +Notnamed +Renata +Sandra +Sarina +Scarlette +Abbey +Aime +Alaya +Alisha +Amani +Amerie +Amiah +Ari +Ariella +Aryana +Ashlee +Bree +Brissa +Carlie +Dalilah +Dania +Denisse +Elsie +Elyse +Emmalee +Farrah +Felicity +Francesca +Gemma +Gwendolyn +Hanna +Hayley +Heather +Helen +Imani +Izabelle +Jaida +Janae +Jolie +Jordynn +Julieta +Kaleigh +Kayleen +Keila +Kimber +Kinsey +Kourtney +Kristin +Laylah +Lea +Lorelei +Luciana +Lucille +Makena +Nancy +Nathaly +Rosa +Roxanna +Roxanne +Shyla +Taryn +Vianney +Whitney +Yadira +Yaretzy +Adelynn +Aisha +Aiyanna +Alayah +Alma +Ashleigh +Avril +Belinda +Berenice +Bethany +Briella +Celia +Celina +Chanel +Dalila +Dallas +Deborah +Diamond +Dominique +Edith +Eileen +Elianna +Emmalyn +Estella +Evangelina +Eve +Frances +Grecia +Jazmyn +Journey +Joy +June +Kadence +Kaila +Kaitlin +Kaitlynn +Karly +Karyme +Kenya +Kierra +Krista +Kristen +Lainey +Leanna +Leilany +Lesley +Lesly +Leylani +Madilynn +Maia +Maleah +Miya +Nalani +Nyla +Reina +Sawyer +Selah +Shaylee +Simone +Sonia +Stephany +Susan +Susana +Sydnee +Tabitha +Tatianna +Teresa +Thalia +Tori +Unique +Wendy +Yasmin +Abbie +Abygail +Adilene +Alanna +Alia +Aliana +Anabel +Anais +Angeline +Aubriana +Aurelia +Averi +Bria +Bristol +Carolyn +Caylee +Channing +Cherish +Citlali +Corina +Dana +Dayanna +Deanna +Devyn +Eloise +Evelin +Fabiola +Graciela +Hana +Haven +Ilianna +Jaylah +Jordin +Justice +Kaia +Kali +Kallie +Kamilah +Lauryn +Leighton +Lilia +Lillyanna +Linda +Makaila +Malina +Mara +Marisela +Martha +Mckinley +Millie +Mylee +Natali +Nathalie +Nichole +Nikki +Noelia +Nyah +Paityn +Paulette +Priscila +Raven +Remi +Ryan +Sahara +Salma +Savanah +Sedona +Shaila +Silvia +Suri +Tara +Tegan +Tiara +Xitlali +Yulissa +Abrianna +Ada +Addilyn +Adrienne +Adyson +Airam +Alanah +Alexi +Aliya +Aliyana +Allisson +Alycia +Amayah +Amia +Amiya +Amya +Annabel +Antonella +Aolanis +Areli +Ashtyn +Asia +Ayana +Ayden +Braelyn +Carina +Chelsey +Cielo +Cienna +Cloe +Cristina +Damaris +Dayra +Della +Desirae +Elissa +Ember +Emmy +Everleigh +Evie +Frida +Geraldine +Ila +Ireland +Ivana +Jaiden +Jaidyn +Jalynn +Janiyah +Jasmyn +Jaylee +Jazmyne +Jemma +Joslynn +Kailee +Kairi +Karely +Karsyn +Kasandra +Kaycee +Kelsie +Kendal +Kianna +Lailah +Leia +Leona +Lilith +Linnea +Mabel +Madalynn +Maliah +Mariella +Maylee +Mayrin +Meghan +Milani +Natalya +Nizhoni +Raina +Romina +Roselyn +Saanvi +Saniyah +Shea +Shiloh +Shyanne +Siena +Sol +Tania +Theresa +Tianna +Vienna +Xochitl +Yolanda +Yvette +Aaliya +Abriella +Adamaris +Adaya +Addisyn +Adele +Akira +Alexus +Ali +Aliah +Alizabeth +Ally +Alora +Anne +Antonia +Ariadna +Arleth +Armani +Ashly +Aubrianna +Aubrielle +Ayva +Beatrice +Bernice +Blanca +Braelynn +Briseis +Britney +Brittney +Bryana +Bryn +Caitlynn +Calista +Cambria +Carley +Cayla +Celine +Chantal +Charley +Charlize +Cheyanne +Cierra +Colbie +Diya +Elayna +Elin +Elliot +Elsa +Emerson +Emilie +Emme +Emmie +Esme +Eternity +Flor +Frankie +Galilea +Helena +Isha +Izel +Jackeline +Jacquelyn +Jalissa +Jaliyah +Janet +Jaslene +Jaslyn +Jianna +Jolene +Josslyn +Kaelynn +Kaliyah +Kalli +Kami +Karis +Karlee +Karli +Katarina +Kathleen +Kaylen +Kaylynn +Keegan +Kenley +Kimora +Kirsten +Laisha +Lara +Leilah +Liah +Lillyann +Lisette +Lizette +Lluvia +Lorelai +Lucero +Lyra +Marely +Marian +Marisa +Marlene +Marlie +Maryam +Maryann +Miabella +Milan +Mira +Miyah +Monika +Monserrat +Montserrat +Nathalia +Naya +Nelly +Nirvana +Noel +Oriana +Paris +Patience +Payten +Princess +Ramona +Raya +Rayna +Regan +Robyn +Rosario +Sandy +Saniya +Scout +Selene +Shannon +Sheila +Sheyla +Sky +Skyla +Sloan +Soleil +Sonja +Susanna +Tanya +Taylee +Xiomara +Yaneli +Yarely +Yessenia +Yuliana +Yvonne +Zuri +Aanya +Abbygail +Abigale +Adrianne +Aila +Aleida +Alize +Allegra +Alli +Alyvia +Amari +Amberlynn +Ameliana +Amelie +Amyah +Analee +Analicia +Analy +Anayah +Anessa +Aniela +Annalee +Annalisa +Annalise +Annalyse +Arianah +Arianny +Arissa +Arya +Ashanti +Audrianna +Austyn +Avah +Aven +Avianna +Ayari +Azalea +Azalia +Briseida +Brynlie +Cailyn +Campbell +Casey +Catarina +Chevelle +Christiana +Citlaly +Constance +Coraline +Darlene +Dayna +Delylah +Destany +Destinee +Destini +Dorothy +Elia +Ellianna +Ellison +Elora +Elyssa +Ema +Emmalynn +Estefany +Eunice +Freya +Gema +Genessis +Giavanna +Gisel +Gisele +Gisell +Gizelle +Gladys +Hadassah +Haiden +Hailie +Haleigh +Halima +Halle +Halo +Harlee +Hayleigh +Honey +Illiana +Indigo +Irene +Iyanna +Izabel +Jacklyn +Jaden +Jaela +Jailyn +Janna +Jaquelyn +Jazelle +Jazzlyn +Jessa +Jesse +Johana +Joscelyn +Joselyne +Joselynn +Juniper +Kaci +Kaela +Kahlan +Kaily +Kailynn +Kalena +Karlie +Karmen +Kasey +Katrina +Katy +Kaylah +Kaylani +Kayley +Kayli +Kendyl +Kenia +Kenna +Kensington +Kirra +Kloe +Kloey +Kora +Kori +Kylah +Kyndall +Laney +Lanie +Layna +Leela +Lexis +Libby +Lidia +Liv +Luisa +Macey +Magdalena +Maite +Margot +Mari +Maribel +Mayah +Melannie +Melia +Mercy +Meredith +Micaela +Milania +Monroe +Moriah +Nadine +Nahla +Naima +Naiya +Nallely +Nariah +Nazareth +Neriah +Nicolette +Noor +Nova +Nuvia +Nylah +Opal +Pamela +Payson +Precious +Raelyn +Rebeca +Reece +Remington +Renee +River +Rochelle +Rocio +Rory +Roxana +Rylan +Saige +Shaelynn +Shania +Shaniya +Shawna +Sidney +Siri +Sofie +Sofiya +Solange +Sonya +Stacy +Starla +Sunny +Symphony +Taelyn +Tatyana +Tesla +Tina +Tylee +Valery +Vera +Virginia +Vivianna +Yahaira +Yasmine +Yazmine +Yulianna +Zainab +Zara +Zariyah +Ziva +Zulay +Zuria +Sophia +Isabella +Emma +Emily +Mia +Olivia +Ava +Abigail +Victoria +Elizabeth +Chloe +Natalie +Madison +Sofia +Lily +Samantha +Camila +Hailey +Brooklyn +Nevaeh +Aubrey +Zoey +Grace +Ella +Addison +Zoe +Avery +Aaliyah +Alexis +Arianna +Savannah +Alyssa +Evelyn +Andrea +Alexa +Charlotte +Amelia +Layla +Bella +Brianna +Leah +Taylor +Riley +Audrey +Ashley +Gabriella +Kimberly +Lillian +Kaylee +Genesis +Hannah +Khloe +Gianna +Sarah +Jocelyn +Scarlett +Peyton +Claire +Kylie +Maya +Allison +Jasmine +Natalia +Sophie +Valeria +Serenity +Ariana +Nicole +Liliana +Maria +Julia +Ruby +Rylee +Sydney +Lucy +Violet +Brooke +Ellie +Makayla +Autumn +Lilly +Vanessa +Alexandra +Mariah +Melanie +Ximena +Payton +Trinity +Anna +Faith +Izabella +Kayla +Destiny +Bailey +Harper +Naomi +Giselle +Lauren +Isabel +Stella +Lyla +Eva +Sadie +Brielle +Jessica +Katelyn +Madeline +Valentina +Aurora +Daisy +Leilani +Madelyn +Paige +Tatum +Audrina +Jade +Michelle +Aliyah +Katherine +Angelina +Aria +Delilah +Isabelle +Alice +Amaya +Annabelle +Daniela +Jordyn +Morgan +Amy +Angela +Elena +Jennifer +Sara +Mackenzie +Mya +Aubree +Brooklynn +Melody +Sienna +Kennedy +Miranda +Alexia +Kaitlyn +Laila +Mila +Valerie +Penelope +Jacqueline +Molly +Adriana +Alondra +Eliana +Gabriela +Rachel +Reagan +Rebecca +Alicia +Alina +Angelique +Hayden +Makenzie +Quinn +Gracie +Keira +Piper +Stephanie +Teagan +Ana +Eden +Diana +Lydia +Mikayla +Reese +Adrianna +Elise +Genevieve +Jazmine +Mariana +Danna +Kate +Paisley +Kylee +Presley +Alexandria +Ashlyn +Ivy +Julianna +Makenna +Marissa +Megan +Alejandra +Athena +Bianca +Haley +Juliana +London +Ariel +Hope +Alaina +Fernanda +Hazel +Julissa +Kendall +Aileen +Alessandra +Daniella +Guadalupe +Jayden +Jazlyn +Jimena +Jordan +Lila +Lilliana +Melissa +Nayeli +Sabrina +Vivian +Yaretzi +Danielle +Esmeralda +Itzel +Kamila +Mckenna +Camille +Gabrielle +Ivanna +Karina +Leslie +Lexi +Lucia +Mckenzie +Priscilla +Shelby +Amber +Briana +Jazmin +Jenna +Luna +Alana +April +Cora +Eleanor +Emery +Jayleen +Josephine +Karla +Kayleigh +Kendra +Alayna +Aylin +Cecilia +Celeste +Dakota +Heidi +Nina +Reyna +Allie +Catherine +Clara +Gemma +Haylee +Katie +Macy +Abby +Ainsley +Chelsea +Lola +Mary +Raegan +Ryleigh +Rylie +Allyson +Amanda +Angel +Breanna +Eliza +Juliette +Kelsey +Kinsley +Maci +Scarlet +Sierra +Tiana +Yaritza +Adalyn +Alison +Anahi +Angelica +Ariza +Brynn +Cheyenne +Delaney +Dulce +Esther +Estrella +Miley +Selena +Summer +Viviana +Aniyah +Ayla +Cadence +Camryn +Cassidy +Cynthia +Elliana +Fatima +Juliet +Kailey +Karen +Leila +Nora +Skylar +Addisyn +Anaya +Hadley +Jillian +Maddison +Nadia +Addyson +Alivia +Ashlynn +Caroline +Christina +Crystal +Harlow +Harmony +Isla +Kelly +Kyla +Lacey +Lilian +Lilianna +Marley +Noelle +Paulina +Savanna +Tessa +Veronica +Anabelle +Anastasia +Arabella +Charlie +Clarissa +Dayana +Elaina +Erin +Harley +Iris +Jaelyn +Jayda +Jazlynn +Kaelyn +Kinley +Kira +Natasha +Samara +Willow +Aliana +Annabella +Araceli +Brynlee +Cali +Callie +Cassandra +Daphne +Jada +Josie +Kassandra +Katelynn +Lilah +Lilyana +Londyn +Madilyn +Malia +Marina +Marisol +Melany +Michaela +Phoebe +Regina +Rose +Teresa +Aleena +Aniya +Aspen +Bridget +Carmen +Gia +Janelle +Jazmyn +Joselyn +Kathryn +Kaydence +Maggie +Miah +Mikaela +Olive +Paola +Vivienne +Adalynn +America +Azul +Braelyn +Brittany +Charlee +Ciara +Esperanza +Evangeline +Hayley +Jasmin +Julie +Kamryn +Kiara +Kiera +Kyra +Lexie +Madeleine +Margaret +Parker +Shayla +Yamileth +Abril +Adelyn +Alissa +Aryanna +Bethany +Camilla +Courtney +Danika +Danitza +Desiree +Dylan +Elisa +Kara +Kaylie +Laura +Laylah +Macie +Nataly +Natalya +Noemi +Norah +Rebeca +Rosa +Taryn +Tenley +Adelaide +Arely +Aubrianna +Ayleen +Briella +Emely +Emilia +Fiona +Georgia +Hanna +Holly +Jayla +Kenzie +Kyleigh +Miriam +Rayne +Ryan +Sage +Serena +Adeline +Amara +Amerie +Aolanis +Averie +Baylee +Bria +Brinley +Brissa +Caitlin +Cambria +Danica +Denise +Elle +Elliot +Ember +Emmalyn +Farrah +Geraldine +Giuliana +Gwyneth +Iliana +Jaelynn +Jane +Jaqueline +Jayde +Jaylah +Joanna +Kailee +Kaitlynn +Kaylin +Krystal +Liana +Liberty +Luciana +Madelynn +Maliyah +Marilyn +Mercedes +Paloma +Renata +Ruth +Sarai +Sariah +Sloane +Tiffany +Abbigail +Adelina +Alia +Aliah +Amelie +Analia +Annabel +Annie +Aubrie +Brenna +Brylee +Caitlyn +Carolina +Charley +Dahlia +Elianna +Gloria +Kadence +Kailyn +Kali +Kaya +Lea +Leyla +Lia +Lindsey +Lisa +Madilynn +Marie +Maritza +Myah +Neveah +Paityn +Perla +Rihanna +Rowan +Sasha +Talia +Vera +Wendy +Yamilet +Yesenia +Ailyn +Aimee +Alani +Aliya +Angie +Annalise +Annika +Avianna +Brisa +Bryanna +Caylee +Elisabeth +Emerson +Emilie +Erika +Haven +Helen +Isis +Jamie +Jaylynn +Journey +Kayden +Kiana +Lainey +Lillie +Lillyanna +Lilyanna +Lucille +Luz +Madyson +Maite +Melina +Monica +Monique +Myra +Natalee +Nathalie +Paulette +Raelyn +Raelynn +Rylan +Tatiana +Unique +Abrielle +Aiyanna +Alianna +Ally +Amira +Anabella +Annette +Antonella +Aryana +Bentley +Calista +Carla +Charlize +Cheyanne +Claudia +Colette +Emilee +Emmalee +Finley +Frida +Giovanna +Gisselle +Graciela +Grecia +Hailee +Heaven +Jacquelyn +Jaquelin +Jaylene +Jocelynn +Kallie +Kenya +Keyla +Kiley +Lilith +Madisyn +Makena +Marlee +Marlene +Nathaly +Raquel +Rebekah +Reina +Rhiannon +Sandra +Sarahi +Siena +Vivianna +Yazmin +Abbey +Alisson +Alma +Anissa +Anya +Aracely +Areli +Ariah +Ariella +Arielle +Aubriana +Aviana +Bailee +Braelynn +Capri +Catalina +Emelia +Felicity +Galilea +Halle +Helena +Illiana +Isabell +Jaidyn +Janet +Jaycee +Johanna +Julianne +June +Leanna +Lizbeth +Logan +Maia +Mayte +Milagros +Myla +Noelani +Notnamed +Ophelia +Patricia +Paula +Pearl +Raya +Remi +Rosalie +Skyler +Whitney +Xiomara +Zara +Adyson +Alanna +Aleah +Ali +Alyson +Amani +Amaris +Amiah +Amiyah +Anais +Anika +Ariadne +Avani +Averi +Barbara +Brenda +Carly +Cristina +Dalilah +Dania +Davina +Dayanna +Elin +Elsa +Elsie +Gizelle +Gwen +Hadassah +Harlee +Isela +Jadyn +Janessa +Jaylin +Jaylyn +Joelle +Joy +Kaia +Kailani +Katrina +Khloee +Kirra +Lana +Laney +Leia +Liah +Linda +Lylah +Madalyn +Maiya +Malaya +Mariajose +Maryjane +Millie +Monroe +Nyla +Pyper +Rachael +Ramona +Raven +Renee +Ryann +Samira +Shyla +Sidney +Tianna +Zariah +Abbie +Ada +Adrienne +Ailani +Aiyana +Amirah +Amiya +Annelise +Audriana +Azalea +Belen +Belinda +Betty +Carlee +Caydence +Chanel +Christine +Demi +Desirae +Edith +Eileen +Elayna +Emmalynn +Esme +Evangelina +Evie +Ivana +Jaden +Jazleen +Juniper +Justice +Kamari +Karissa +Kathleen +Kimora +Kristina +Lailah +Lauryn +Lena +Lesly +Lillianna +Lillyann +Mackenna +Maleah +Mallory +Maribel +Mckinley +Mireya +Nancy +Payten +Rory +Rosemary +Roxana +Sawyer +Scarlette +Selah +Skye +Sonia +Stacy +Susana +Tabitha +Tania +Tayla +Tegan +Thalia +Vianney +Yareli +Yasmine +Yoselin +Yuliana +Zaira +Addilyn +Adela +Adele +Adilene +Alaya +Alayah +Alisha +Alycia +Alyna +Amayah +Amya +Anabel +Anaiya +Analisa +Anisa +Arya +Ashlin +Aubriella +Azariah +Briley +Briseis +Camdyn +Cameron +Carina +Cecelia +Celia +Chevelle +Dana +Dani +Dariana +Deborah +Delila +Elissa +Ellery +Ellianna +Elliott +Elora +Emersyn +Emmie +Eve +Evelynn +Giavanna +Gracelyn +Gwendolyn +Hunter +Imani +Irene +Jaiden +Jaina +Jaslene +Jaslyn +Jazelle +Jazmyne +Jenny +Jolene +Joslyn +Jovie +Kairi +Karime +Kassidy +Kayley +Kaylynn +Larissa +Leighton +Leylani +Lizeth +Lizette +Lucero +Lynette +Malina +Mariam +Marianna +Micaela +Mollie +Natali +Nayla +Nizhoni +Nola +Paislee +Pepper +Phoenix +Princess +Rayna +Rita +Saanvi +Saige +Shaelyn +Shea +Sherlyn +Simone +Stephany +Tia +Tori +Vida +Violeta +Virginia +Yahaira +Yarely +Yulissa +Zahara +Zaniyah +Zoie +Zoya +Abagail +Abrianna +Adamaris +Adelynn +Aislin +Alannah +Alena +Alize +Alora +Alyse +Amairani +Amalia +Amari +Anaiah +Andi +Aniah +Annaliese +Annalisa +Aritza +Arlene +Ashlee +Ashleigh +Ashtyn +Asiya +Aubrielle +Aubryana +Avalynn +Ayanna +Ayva +Azlynn +Berkley +Blake +Blakely +Bristol +Carissa +Celina +Charity +Charli +Chiara +Cienna +Cindy +Citlaly +Dalila +Dallas +Dayanara +Dayra +Denisse +Destinee +Devin +Devyn +Dorothy +Elaine +Emerie +Emiliana +Erica +Evalyn +Evolet +Giana +Gissel +Gladys +Gracelynn +Haleigh +Haylie +Heather +Isabela +Isadora +Itzayana +Izabelle +Izzabella +Jacey +Jaida +Jaliyah +Janice +Janiyah +Jasmyne +Jaya +Jenesis +Jordin +Jordynn +Josalyn +Kai +Kaiya +Karely +Karis +Karlee +Karyme +Kendal +Kenna +Kennedi +Kenzi +Kierra +Kinsey +Kristen +Kyara +Kylah +Kynlee +Kyrie +Lara +Lilyann +Lindsay +Lorelai +Macey +Mae +Magdalena +Maliah +Marbella +Marian +Marisa +Mayra +Meredith +Micah +Milan +Milania +Miracle +Nalani +Naya +Nikki +Noel +Penny +Precious +Priscila +Remy +Rhianna +Rilynn +Romina +Roselyn +Roxanne +Rubi +Sade +Sally +Saniyah +Scout +Sedona +Sharon +Shaylee +Sky +Soleil +Soraya +Taliyah +Tanya +Tatianna +Viktoria +Wren +Xenia +Xitlali +Yasmin +Abbygail +Adalee +Adamari +Addie +Afton +Alanah +Aleeya +Aliza +Alyanna +Alysson +Amairany +Amia +Amina +Anaid +Analise +Anayah +Angeline +Angelita +Annalee +Anne +Anniston +Antonia +Ariadna +Ariyah +Arleen +Arlette +Asia +Audree +Avalon +Avril +Ayesha +Bonnie +Brandy +Bree +Britton +Brook +Brooklynne +Bryana +Brystal +Cielo +Claira +Colbie +Cristal +Dagny +Dalia +Damaris +Dasia +Deanna +Dennise +Dezirae +Donna +Eleni +Ellis +Elly +Eloise +Ema +Emilyn +Emmy +Emrie +Evalynn +Evelin +Everleigh +Ezra +Giada +Gwendalyn +Hallie +Hana +Hayleigh +Heavenly +Ilianna +Ingrid +Irelynn +Issabella +Ivory +Izel +Jaclyn +Jamileth +Janie +Jaylee +Jazlene +Jenessa +Jessalyn +Jessie +Jiselle +Jorja +Jovanna +Judith +Julieta +Julisa +Justine +Kacey +Kaci +Kailynn +Kaitlin +Kaleah +Kaliyah +Kamilah +Kamille +Karol +Karsyn +Kasey +Katalina +Kaylah +Kayleen +Kayli +Keily +Kenia +Kenley +Kensley +Keren +Kianna +Kiersten +Kodi +Kora +Laci +Lacie +Leilah +Leilany +Lesley +Lianna +Lillyana +Lilyan +Lina +Lorelei +Lorena +Luci +Lux +Lyric +Magnolia +Margarita +Maricela +Mariella +Marin +Marleigh +Marlie +Martha +Maryam +Maylin +Melinda +Mercy +Naila +Nia +Noor +Nubia +Patience +Petra +Poppy +Preslee +Prisha +Raylee +Remington +Rhea +River +Robyn +Rosalinda +Salma +Sarina +Savanah +Selene +Shania +Sheila +Shiloh +Silvia +Sinai +Skyla +Suri +Sylvia +Tamara +Taylee +Taylin +Teegan +Tess +Tina +Yajaira +Yaretzy +Yulianna +Yvette +Yvonne +Sophia +Isabella +Emma +Mia +Olivia +Emily +Ava +Abigail +Sofia +Madison +Victoria +Camila +Natalie +Elizabeth +Zoey +Aaliyah +Ella +Charlotte +Zoe +Chloe +Brooklyn +Evelyn +Lily +Samantha +Aubrey +Nevaeh +Grace +Layla +Savannah +Genesis +Addison +Amelia +Ashley +Avery +Alyssa +Arianna +Harper +Scarlett +Kaylee +Alexis +Hailey +Hannah +Audrey +Lillian +Serenity +Allison +Alexa +Leah +Bella +Brianna +Faith +Peyton +Melanie +Jocelyn +Taylor +Aria +Andrea +Gabriella +Kimberly +Jasmine +Liliana +Maria +Natalia +Maya +Riley +Kylie +Mariah +Mila +Sophie +Lucy +Vanessa +Brielle +Gianna +Ruby +Claire +Naomi +Ximena +Khloe +Sarah +Ellie +Mackenzie +Anna +Ariana +Valeria +Bailey +Nicole +Alexandra +Aubree +Kayla +Annabelle +Tatum +Trinity +Leilani +Lilly +Violet +Jade +Aliyah +Mya +Jessica +Rylee +Valentina +Eva +Destiny +Isabel +Stella +Aurora +Autumn +Lauren +Reagan +Reese +Jordyn +Payton +Madelyn +Sadie +Vivian +Alexia +Angelina +Sydney +Brooke +Daisy +Jennifer +Madeline +Paige +Elena +Makayla +Alondra +Molly +Paisley +Kaitlyn +Amy +Athena +Giselle +Penelope +Quinn +Amaya +Melody +Presley +Kendall +Miranda +Morgan +Piper +Brooklynn +Delilah +Eden +Isabelle +Michelle +Rachel +Angela +Izabella +Julia +Melissa +Adriana +Elise +Juliana +Kamila +Kennedy +Luna +Angelique +Stephanie +Valerie +Eliana +Hazel +Kylee +Alessandra +Clara +Fernanda +Ivy +Kate +Katherine +Sara +Summer +Alicia +Ana +Katelyn +Lyla +Ariel +Laila +London +Sienna +Mikayla +Keira +Lilliana +Rose +Alexandria +Cora +Daniela +Mariana +Alice +Gracie +Hadley +Mckenna +Yaretzi +Alina +Danielle +Julianna +Angel +Audrina +Lexi +Lucia +Makenna +Rebecca +Elisa +Hayden +Jazmin +Lydia +Shelby +Skylar +Brynn +Eleanor +Emery +Genevieve +Leila +Brynlee +Esmeralda +Gabriela +Lola +Makenzie +Marissa +Mary +Sierra +Amber +Angelica +Ashlynn +Ayla +Cecilia +Emilia +Isla +Jazmine +Regina +Alison +Ariza +Cali +Crystal +Gabrielle +Jayleen +Karla +Katie +Kiara +Lilah +Nora +Alana +Evangeline +Hanna +Jordan +Karina +Kinley +Kinsley +Megan +Teagan +Delaney +Elliana +Kenzie +Lia +Rylie +Viviana +Adrianna +Chelsea +Eliza +Haley +Josephine +Kaydence +Leslie +Lilyana +Reyna +Sabrina +Annabella +Camilla +Caroline +Catherine +Charlie +Diana +Erika +Jayla +Julissa +Marley +Mckenzie +Nataly +Adalyn +Arielle +Arya +Carmen +Christina +Jacqueline +Juliet +Kyla +Adalynn +Alayna +Anastasia +Aniyah +Ayleen +Camille +Itzel +Josie +Lila +Luciana +Noelle +Talia +Adeline +Adelyn +Alejandra +April +Azalea +Cadence +Hayley +Kenya +Melany +Nadia +Perla +Ruth +Willow +Aileen +Allyson +Ashlyn +Briana +Carly +Elianna +Fiona +Gemma +Hope +Jimena +Kelsey +Margaret +Yaritza +Alianna +Allie +Dakota +Daniella +Emerson +Estrella +Harmony +Holly +Ivanna +Jazlyn +Jenna +Kali +Kassandra +Kendra +Lilianna +Nayeli +Noemi +Priscilla +Selena +Vivienne +Anya +Araceli +Briella +Cassandra +Cataleya +Dayana +Erin +Felicity +Giuliana +Iliana +Iris +Jane +Jayden +Juliette +Lacey +Madilyn +Raelynn +Tessa +Tiffany +Veronica +Vianney +Alaina +Anabella +Aylin +Azul +Callie +Camryn +Cassidy +Cheyenne +Danna +Esperanza +Jaylah +Kadence +Kira +Leyla +Maliyah +Miah +Monica +Olive +Zoie +Addyson +Alivia +Anabelle +Anahi +Anaya +Brinley +Caitlyn +Cynthia +Daphne +Elle +Fatima +Guadalupe +Harley +Isis +Jasmin +Londyn +Maci +Macie +Marilyn +Michaela +Parker +Rebekah +Sage +Siena +Adelynn +Alissa +Arabella +Arely +Aubrie +Averie +Bianca +Braelyn +Carolina +Danika +Elsie +Finley +Harlow +Haven +Haylee +Heidi +Janelle +Johanna +Joselyn +Kyra +Lillyana +Malia +Marie +Melina +Miriam +Patricia +Renata +Rosalie +Sandra +Sawyer +Sherlyn +Abril +Aleena +Annalise +Annette +Aryanna +Aspen +Baylee +Clarissa +Elisabeth +Ember +Esther +Graciela +Jaelyn +Jazlynn +Kailey +Kathryn +Kaylie +Madisyn +Marianna +Marisol +Maritza +Nia +Phoenix +Ryleigh +Serena +Yareli +Aliya +Alyson +Catalina +Celeste +Dylan +Elyse +Gia +Gloria +Jada +Jaelynn +Jamie +Joanna +Kaylynn +Keyla +Lainey +Laura +Lena +Lexie +Lyric +Macy +Maddison +Mallory +Myla +Paula +Phoebe +Sarai +Sasha +Scarlet +Shayla +Skye +Teresa +Vera +Abby +Adelina +Alanna +Aliana +Amanda +Aubriana +Breanna +Charlee +Charley +Courtney +Desiree +Dulce +Elaina +Helena +Itzayana +Jayde +Jaylene +Julie +Kamryn +Karen +Kataleya +Kayleigh +Kiera +Laylah +Lea +Lucille +Marina +Miley +Natasha +Norah +Raegan +Raelyn +Ryan +Selah +Sonia +Yamileth +Addisyn +Adelaide +Adele +Amiyah +Aniya +Aolanis +Aurelia +Avianna +Braelynn +Brylee +Caitlin +Ciara +Claudia +Dahlia +Dalilah +Elayna +Galilea +Gisselle +Gwendolyn +Judith +Kaelyn +Kaitlynn +Luz +Madalyn +Madeleine +Mariajose +Maryjane +Mikaela +Monserrat +Nina +Nova +Sariah +Savanna +Tatiana +Tenley +Winter +Xochitl +Yamilet +Adrienne +Ainsley +Aleah +Annie +Ariah +Aubrianna +Danica +Denisse +Eloise +Elsa +Erica +Frida +Helen +Janae +Janessa +Kailyn +Kaliyah +Kara +Kayden +Kelly +Kenia +Madilynn +Maggie +Malaya +Monroe +Natalee +Rosemary +Scarlette +Selene +Taryn +Thalia +Tiana +Yvette +Abigale +Abrianna +Ada +Adilene +Aiyana +Alena +Ally +Aubrielle +Bailee +Barbara +Belen +Bridget +Caylee +Dana +Dominique +Emilee +Eve +Giana +Isabell +Jaylynn +Jazzlyn +Journey +Joy +Kailee +Kaylin +Leighton +Mae +Marian +Mckayla +Mina +Monique +Paris +Raquel +Raven +Ryann +Samara +Simone +Sloane +Unique +Zara +Abbie +Aimee +Aliah +Aliyana +Alma +Amayah +America +Analicia +Anika +Annabel +Annaliese +Annika +Ayanna +Cameron +Caydence +Danitza +Dorothy +Emilie +Emmalee +Evelynn +Francesca +Irene +Isabela +Jaqueline +Jaycee +Jemma +Jillian +Kalea +Larissa +Leanna +Leena +Leia +Liana +Lilian +Lillie +Lilyanna +Lindsey +Livia +Lorelei +Maite +Maylin +Nathalie +Neveah +Paulette +Preslee +Rowan +Shannon +Stevie +Sylvia +Vivianna +Whitney +Yaretzy +Zuri +Abbigail +Alisson +Amira +Anabel +Anais +Analiyah +Angie +Annabell +Ariella +Arlette +Audrianna +Brisa +Brittany +Calista +Cambria +Capri +Casey +Dalia +Damaris +Dayanara +Dayanna +Denise +Devyn +Drew +Edith +Emely +Emmalyn +Emmalynn +Farrah +Faye +Georgia +Giada +Giovanna +Gizelle +Hailee +Hallie +Heaven +Ingrid +Izabel +Jayda +Jaylin +Jessie +Jordynn +Kaia +Kairi +Kaiya +Kalani +Kallie +Kassidy +Katelynn +Kathleen +Kayleen +Kenna +Kori +Kristina +Krystal +Lailah +Lana +Lillianna +Lindsay +Lisa +Lizbeth +Lorena +Madyson +Makena +Marisa +Marlee +Mckinley +Mercedes +Milana +Mireya +Mollie +Montserrat +Nola +Nya +Nyla +Paislee +Paityn +Paloma +Paola +Payten +Pearl +Priya +Rilynn +River +Rosa +Rosie +Sarahi +Sedona +Susan +Taylin +Theresa +Tracy +Xiomara +Yesenia +Yuliana +Zaniyah +Zariah +Ailyn +Aisha +Akira +Alani +Alia +Alyanna +Amari +Amiah +Amina +Amya +Anayah +Annalee +Anneliese +Aracely +Armani +Aryana +Aubri +Aubriella +Averi +Ayana +Bayleigh +Blake +Brenna +Bristol +Cayla +Celina +Charlize +Chevelle +Cristal +Dariana +Dixie +Emmy +Estella +Evalyn +Geraldine +Gracelyn +Gwenyth +Haylie +Irlanda +Italia +Ivana +Ivory +Jaiden +Janiyah +Jaylee +Jazelle +Jazmyn +Johana +Josselyn +June +Kamilah +Kaya +Kaylah +Kiana +Kora +Kourtney +Kyleigh +Leilah +Leona +Lillyanna +Linda +Litzy +Liv +Logan +Luisa +Lyra +Margarita +Maryann +Miya +Nancy +Patience +Remi +Rihanna +Roselyn +Roxanne +Saige +Salma +Shaila +Skyla +Skyler +Yoselin +Zo +Adamari +Adamaris +Airam +Aliza +Alyna +Amaris +Amerie +Analia +Angeline +Aniah +Anissa +Anne +Antonia +Arleth +Audree +Bethany +Briseis +Bryanna +Cara +Carissa +Carley +Chanelle +Cherish +Christine +Cielo +Clare +Colette +Corinne +Dania +Eileen +Emelia +Emmaline +Evangelina +Frances +Giavanna +Grecia +Halle +Imani +Iyanna +Jadyn +Janie +Jenesis +Jewel +Jocelynn +Jolie +Juniper +Justice +Karlee +Karma +Karol +Kiley +Kristen +Leticia +Liberty +Lilia +Lizeth +Lylah +Mabel +Maia +Mariam +Maribel +Mariyah +Maryam +Mayra +Mayte +Meredith +Millie +Nalani +Nathalia +Nylah +Pamela +Paulina +Peighton +Raina +Rayne +Reina +Romina +Rylan +Saanvi +Samira +Saylor +Shiloh +Shyla +Silvia +Soraya +Suri +Taelyn +Tara +Taytum +Tess +Vianey +Wendy +Wren +Yaneli +Yarely +Yasmine +Abygail +Adaline +Addalyn +Addilyn +Alannah +Alora +Amani +Amethyst +Amia +Anaiah +Anali +Analy +Anisa +Ashtyn +Aubry +Avani +Azariah +Belle +Bentley +Berenice +Brea +Brenda +Briseida +Bryleigh +Brynley +Cindy +Claira +Coral +Cosette +Cristina +Dallas +Darlene +Demi +Destinee +Diya +Elaine +Elora +Emmie +Everly +Gwen +Halo +Harlee +Hayleigh +Ivonne +Izabela +Izabelle +Jaidyn +Janette +Jaquelyn +Jazlene +Jenessa +Jocelyne +Joelle +Joslyn +Jovie +Julieta +Kaila +Kalista +Karlie +Kaydee +Kaylani +Kaylen +Kendal +Kendyl +Kennedi +Kimora +Laney +Lara +Leanne +Lenora +Lexani +Lexy +Lianna +Lilith +Lluvia +Lucianna +Lynette +Madalynn +Madisen +Maeve +Magdalena +Maleah +Maren +Maricela +Mariela +Marlie +Martha +Matilda +Mayrin +Mercy +Micaela +Mylie +Nala +Naomy +Neha +Noelani +Noelia +Penny +Promise +Quincy +Raylene +Rebeca +Rocio +Rosalyn +Roxanna +Sally +Serene +Skylee +Soleil +Susana +Tahlia +Tegan +Virginia +Xitlali +Yadira +Yarel +Yasmin +Yazmin +Yulianna +Zaylee +Zion +Abbey +Abella +Abigayle +Abrielle +Addie +Adley +Adysen +Aislynn +Alaya +Alayah +Aleigha +Alessa +Alexus +Aleyah +Alisa +Alycia +Alynna +Alyssia +Alyvia +Amairani +Amara +Amariah +Amberly +Amilia +Amiya +Analise +Annaleigh +Areli +Ariadna +Ariadne +Arianni +Arianny +Aritza +Ariyanna +Arlene +Asha +Audra +Audriana +Avrie +Blakely +Braylee +Bree +Bria +Briley +Calliope +Carlie +Carmella +Celine +Chanel +Charli +Cheyanne +Cienna +Clementine +Cleo +Daleyza +Dalila +Danae +Davina +Deborah +Deja +Delanie +Delylah +Dezirae +Elina +Elliot +Elyssa +Emerie +Ericka +Esme +Estefania +Evie +Farah +Gisele +Haileigh +Harlie +Heather +Holland +Honey +Honor +Irelynn +Jacquelyn +Jaida +Jalynn +Janice +Jasleen +Jaslene +Jasmyn +Jaylen +Jessa +Jianna +Jolee +Journee +Joyce +Jubilee +Kacey +Kailynn +Kalia +Kamilla +Karely +Karissa +Karli +Karly +Karyme +Kathy +Keisha +Kenley +Kensington +Kenzi +Kinsey +Kirra +Kristine +Kyara +Lacie +Landyn +Leilanie +Lesly +Lisette +Lorelai +Lotus +Lya +Macee +Magaly +Malaysia +Marcela +Marcella +Marisela +Marlen +Marlena +Marlene +Maylen +Meghan +Melinda +Milla +Moriah +Nadine +Natalya +Nathaly +Navy +Nelly +Nichole +Nicolette +Nuvia +Rain +Raylee +Remy +Renee +Robyn +Rosario +Roslyn +Roxana +Ryder +Sarahy +Selina +Serina +Shanelle +Shania +Shaylee +Sheila +Sidney +Silvana +Sofie +Sonya +Stacey +Sunny +Tabitha +Tayla +Teegan +Thea +Tia +Tinsley +Vienna +Yara +Yatziri +Yazmine +Yessenia +Ysenia +Yvonne +Zahara +Zaida +Zaira +Zariyah +Zella +Zendaya +Zia +Zooey +Zulema +Sophia +Isabella +Emma +Mia +Olivia +Emily +Sofia +Abigail +Ava +Madison +Elizabeth +Camila +Natalie +Charlotte +Victoria +Evelyn +Avery +Aria +Layla +Harper +Samantha +Zoe +Chloe +Lily +Aubrey +Aaliyah +Amelia +Lillian +Brooklyn +Grace +Ariana +Zoey +Hannah +Arianna +Scarlett +Audrey +Ella +Genesis +Mila +Penelope +Nevaeh +Addison +Allison +Hailey +Alexis +Melanie +Alexa +Violet +Nicole +Kimberly +Bella +Gabriella +Serenity +Natalia +Faith +Savannah +Leah +Alyssa +Jocelyn +Kaylee +Valentina +Mackenzie +Ellie +Lucy +Ruby +Brianna +Jasmine +Liliana +Ariel +Riley +Sadie +Andrea +Gianna +Peyton +Ashley +Brielle +Elena +Ximena +Delilah +Autumn +Claire +Kennedy +Maria +Maya +Sarah +Taylor +Khloe +Lilly +Luna +Madelyn +Mya +Aurora +Stella +Bailey +Sophie +Tatum +Alexia +Julia +Kendra +Melody +Valeria +Isabel +Annabelle +Payton +Jade +Kayla +Leilani +Alexandra +Aubree +Eva +Mariah +Paige +Presley +Reagan +Katherine +Rylee +Michelle +Naomi +Paisley +Eliana +Madeline +Mckenzie +Valerie +Kylie +Skylar +Izabella +Jordyn +Quinn +Anna +Brooke +Alice +Daisy +Destiny +Cora +Isabelle +Giselle +Hayden +Sydney +Katelyn +Lyla +Vanessa +Aliyah +Athena +Kinsley +Mariana +Trinity +Jessica +Kylee +Lydia +Piper +Sienna +Alicia +Ivy +Kate +Lauren +London +Amy +Brooklynn +Jacqueline +Kendall +Leila +Lucia +Makayla +Molly +Reese +Stephanie +Hazel +Kaitlyn +Nora +Vivian +Angela +Arabella +Jaylah +Rachel +Yaretzi +Adriana +Eleanor +Emilia +Anastasia +Daniela +Genevieve +Gracie +Josephine +Alexandria +Eden +Emery +Marley +Miranda +Alessandra +Alondra +Ana +Angelina +Eliza +Hadley +Hope +Lexi +Morgan +Jayla +Juliana +Laila +Summer +Amaya +Arya +Brynlee +Elise +Jordan +Julianna +Juliet +Kiara +Mckenna +Rose +Sara +Adrianna +Alana +Angelique +Aniyah +Kenzie +Lilliana +Mary +Mikayla +Rebecca +Willow +Caroline +Charlie +Harmony +Isla +Jennifer +Kamila +Alaina +Bianca +Briella +Gabriela +Haylee +Jayleen +Jazlyn +Melissa +Scarlet +Adelyn +Alejandra +Amber +Aylin +Carly +Diana +Jazmin +Keira +Adalyn +Angelica +Aubrie +Carolina +Haven +Makenzie +Marissa +Raelynn +Sabrina +Teagan +Viviana +Adalynn +Alayna +April +Elisa +Esmeralda +Gemma +Haley +Iris +Itzel +Lola +Marilyn +Norah +Veronica +Alison +Briana +Elliana +Leslie +Phoebe +Regina +Vivienne +Adeline +Amanda +Annabella +Brynn +Cadence +Catherine +Daniella +Elle +Fiona +Jenna +Noelle +Ruth +Alivia +Anaya +Audrina +Delaney +Emerson +Jimena +Juliette +Kaydence +Kayleigh +Lacey +Lila +Maddison +Rosalie +Shelby +Tiffany +Abby +Alina +Allyson +Ayla +Callie +Christina +Clara +Danna +Daphne +Hanna +Jazmine +Makenna +Miley +Nadia +Nataly +Ryleigh +Ainsley +Ariza +Ashlyn +Ashlynn +Azalea +Camille +Cassandra +Celeste +Esther +Evangeline +Jane +Kira +Kyra +Maci +Marlee +Sage +Selena +Serena +Alma +Camilla +Cassidy +Daleyza +Danielle +Desiree +Elaina +Elianna +Elsie +Harley +Kaelyn +Kamryn +Kinley +Lilah +Megan +Nina +Tessa +Aiyana +Angel +Blake +Chelsea +Cheyenne +Fernanda +Finley +Guadalupe +Ivanna +Jayden +Londyn +Madeleine +Madilyn +Monica +Raegan +Allie +Annalise +Bethany +Cali +Carmen +Catalina +Dahlia +Estrella +Everly +Gabrielle +June +Karla +Katie +Kyla +Margaret +Miriam +Myla +Nayeli +Paulina +Tatiana +Adelaide +Adelynn +Adilene +Aileen +Ariella +Cataleya +Cecilia +Chanel +Denise +Fatima +Heaven +Keyla +Lexie +Luciana +Olive +Priscilla +Sierra +Amiyah +Anahi +Charley +Clarissa +Josie +Julissa +Kali +Karen +Karina +Kenya +Lia +Macie +Malia +Miah +Parker +Renata +Reyna +Sarai +Yaritza +Aleah +America +Aubrianna +Averie +Cynthia +Evelynn +Gia +Jemma +Joanna +Kailey +Kaylie +Kelsey +Kora +Leia +Lilian +Lilianna +Lilyana +Lucille +Madelynn +Melina +Monroe +Natasha +Skyler +Sloane +Yareli +Alena +Amelie +Amira +Anabelle +Arlene +Aspen +Bryanna +Dulce +Emmy +Giuliana +Janelle +Jessie +Julie +Melany +Michaela +Nova +Paloma +Savanna +Scarlette +Shiloh +Adelina +Aliana +Aliya +Angie +Arielle +Audriana +Brisa +Brittany +Dayana +Ember +Esperanza +Evie +Gwendolyn +Heidi +Itzayana +Jada +Jamie +Jaylene +Jillian +Jocelynn +Joselyn +Kadence +Kaia +Kassidy +Kathryn +Kiera +Kimber +Lana +Mallory +Marina +Marisol +Paityn +Paris +Raquel +Renee +Rowan +Tiana +Addyson +Amaris +Annie +Anya +Ariadne +Aubrielle +Ayleen +Azul +Baylee +Braelyn +Bridget +Brinley +Dakota +Dana +Emmalyn +Hayley +Helena +Jaelyn +Janessa +Janney +Jaqueline +Jayda +Kassandra +Katelynn +Kyleigh +Leilany +Lillyana +Lillyanna +Linda +Lorelei +Lyric +Madilynn +Maggie +Mara +Mariajose +Mckinley +Paola +Perla +Raelyn +Salma +Skye +Talia +Vera +Abril +Ada +Adele +Alyson +Alyvia +Amara +Anabella +Aubriella +Braelynn +Caitlin +Caitlyn +Carla +Charlee +Charli +Eloise +Emelia +Erika +Felicity +Frida +Georgia +Gracelyn +Iliana +Irene +Isis +Jazlynn +Kara +Lena +Leyla +Liana +Lilith +Luz +Maliyah +Marjorie +Milania +Noemi +Rebekah +Romina +Rosemary +Rylie +Samara +Sariah +Addisyn +Adrienne +Aleena +Amiah +Anika +Anissa +Aniya +Annabel +Arely +Ari +Aryanna +Aurelia +Beatrice +Ciara +Dalilah +Elisabeth +Emely +Emilee +Emilie +Giana +Hailee +Jasmin +Kaley +Kensley +Lea +Liberty +Lilyanna +Logan +Maia +Makena +Maryjane +Mercedes +Mikaela +Nancy +Natalee +Natalya +Nathalie +Patricia +Raven +Rosa +Saige +Sarahi +Tegan +Thalia +Yesenia +Zariah +Alissa +Amirah +Annika +Aolanis +Araceli +Averi +Aviana +Barbara +Breanna +Brenna +Capri +Caylee +Cecelia +Christine +Dallas +Danica +Danika +Demi +Elliott +Elsa +Erica +Erin +Evalyn +Eve +Gloria +Jaelynn +Jaylin +Jazmyn +Jewel +Johanna +Joy +Justice +Kaylin +Kenia +Lainey +Laylah +Leighton +Lexy +Lylah +Mabel +Maribel +Marie +Martha +Mckayla +Milani +Mollie +Pyper +Reina +Sawyer +Shaila +Sherlyn +Siena +Sofie +Sutton +Sylvia +Whitney +Abrielle +Alanna +Amani +Amayah +Amina +Anabel +Anne +Ariah +Ariya +Arlette +Bailee +Bryn +Celia +Colette +Dalia +Dani +Danitza +Dariana +Dylan +Edith +Eiza +Elyse +Emmalee +Emmie +Estefania +Evalynn +Grecia +Halle +Harlow +Ingrid +Ireland +Irie +Janae +Juniper +Kailani +Kaiya +Kaya +Kelly +Kiana +Kiley +Laney +Lennon +Leona +Lorena +Macy +Madisyn +Marlene +Maxine +Mira +Myah +Nalani +Nayla +Neriah +Nia +Nyla +Phoenix +Remington +Ryann +Rylan +Sandra +Sasha +Savanah +Shayla +Tahlia +Teresa +Vianney +Virginia +Yamileth +Zoie +Aliah +Ally +Analia +Annette +Arizona +Arleth +Audree +Audrianna +Belle +Bentley +Blakely +Bria +Bristol +Cambria +Camryn +Casey +Claudia +Courtney +Dalila +Damaris +Davina +Deborah +Devyn +Eileen +Elliot +Emerald +Emersyn +Evolet +Galilea +Giovanna +Helen +Holly +Imani +Jacquelyn +Jayne +Jazzlyn +Jordynn +Julieta +Kailee +Kataleya +Kensington +Lesly +Lilia +Lillianna +Lilyann +Lina +Lisa +Lizbeth +Lizeth +Malaya +Malayah +Malaysia +Maleah +Maliah +Mayra +Meadow +Milah +Millie +Mina +Monserrat +Nathalia +Naya +Nichole +Nizhoni +Nyah +Oakley +Remy +River +Rory +Roselyn +Roxanne +Rubi +Selah +Shyanne +Sloan +Tara +Tianna +Tori +Unique +Vida +Wendy +Xiomara +Yasmin +Zaya +Abbey +Abygail +Addilyn +Adrina +Alannah +Anneliese +Aryana +Ashlee +Ashtyn +Aubriana +Azaria +Belen +Berkley +Betty +Blessing +Blythe +Bree +Brighton +Carlee +Cayla +Charlize +Citlali +Coraline +Cosette +Dayanara +Denisse +Dominique +Elissa +Ellen +Elyssa +Emerie +Faye +Francesca +Georgina +Gwen +Gwyneth +Hadassah +Harlee +Hattie +Jaden +Janely +Jaycee +Jayde +Jaylee +Joslyn +Journey +Judith +Jurnee +Justine +Kailyn +Karely +Karime +Katalina +Katrina +Kayden +Kayleen +Kaylyn +Kenley +Kyrie +Lacie +Laura +Laurel +Leanna +Leticia +Lindsay +Lizette +Madalyn +Maddie +Maeve +Marianna +Maricela +Marlie +Maryam +Maylin +Melani +Micaela +Milan +Milena +Moriah +Mylah +Nathaly +Neveah +Nicolette +Nikole +Paulette +Payten +Prudence +Rayna +Rebeca +Remi +Robin +Ryan +Sedona +Shaye +Soleil +Spencer +Tala +Temperance +Tenley +Willa +Wren +Yasmine +Yazmin +Yuliana +Yvette +Zara +Abbigail +Abriana +Abrianna +Addilynn +Adelle +Aiyanna +Alanis +Aleya +Alia +Alize +Amairani +Amairany +Ameerah +Amiya +Analee +Analiyah +Annabell +Annalee +Annalisa +Aracely +Ariyah +Ayana +Ayanna +Blanca +Braylee +Brenda +Briley +Brissa +Brittney +Bryana +Caelyn +Cameron +Carissa +Carley +Carmella +Carolyn +Charleigh +Charlene +Cielo +Corinne +Dayla +Delanie +Destinee +Diamond +Elayna +Emmeline +Eunice +Frances +Freya +Giavanna +Hartley +Heather +Holland +Illiana +Indie +Isabela +Isela +Ivana +Ivory +Izabelle +Janeth +Jaslene +Jazelle +Jazlene +Jessa +Joey +Joselin +Kailynn +Kaitlin +Kalia +Kallie +Karli +Karly +Karma +Kaycee +Kaylynn +Keila +Keilani +Kenna +Kennya +Khaleesi +Kinsey +Kylah +Lailah +Larissa +Lindsey +Liv +Livia +Lluvia +Lorelai +Luisa +Lux +Lyra +Mae +Maite +Makaylah +Maren +Mariam +Marisela +Maritza +Maryann +Mavis +Maylee +Mercy +Mireya +Miya +Monique +Myra +Noel +Nola +Nya +Nylah +Paula +Pepper +Persephone +Petra +Poppy +Preslee +Princess +Renesmee +Rhiannon +Rihanna +Rita +Riya +Rosalee +Rosie +Saylor +Selene +Siobhan +Sonya +Soraya +Taryn +Tia +Veda +Vianey +Vivianne +Winter +Yahaira +Yamilet +Yulissa +Yvonne +Zariyah +Zuria +Abagail +Adalee +Adamaris +Adela +Afton +Ailyn +Aimee +Aisha +Alani +Alany +Alba +Alessa +Alessia +Ali +Alisha +Alora +Alyana +Amaiyah +Amalia +Amilia +Anais +Annabeth +Annelise +Arianny +Ariyana +Audra +Austyn +Avah +Avalynn +Aven +Ayah +Azaleah +Bobbie +Braylin +Brea +Bridgette +Britney +Brookelynn +Brylee +Cailin +Cailynn +Camdyn +Cara +Carleigh +Carlie +Cayleigh +Celina +Chanelle +Charity +Cherish +Chevelle +Cindy +Corrine +Crystal +Darianna +Dayra +Deanna +Diane +Dianna +Diya +Donna +Elanie +Elina +Ellianna +Elvira +Emmaline +Emmalynn +Ena +Estefany +Evangelina +Everleigh +Ezra +Farrah +Geraldine +Giada +Gisselle +Greta +Guiliana +Gwenyth +Hallie +Heily +Hunter +Indigo +Ivette +Jacey +Jaiden +Janey +Janiyah +Jaslyn +Jaylynn +Jenicka +Jenny +Jolie +Joseline +Joyce +Juanita +Julianne +Kaidence +Kairi +Kaleah +Kalli +Kamilah +Kamilla +Kathleen +Katia +Kayli +Keagan +Kendyl +Kianna +Kierra +Kirsten +Kori +Kristen +Krystal +Lanaya +Leena +Lennox +Liah +Lillie +Litzy +Lucinda +Macey +Mackenna +Madalynn +Madyson +Maisy +Malin +Mariyah +Matilda +Mayte +Milana +Monae +Naevia +Nallely +Nikki +Pamela +Peighton +Precious +Preslie +Ramona +Rania +Raylee +Rayne +Rilynn +Rosalind +Rosalyn +Roxy +Ryanne +Saanvi +Saniyah +Selina +Shaylee +Sheyla +Shirley +Sky +Skyla +Sol +Stormy +Sunny +Suzanna +Taliah +Tania +Tanvi +Taytum +Teegan +Tesla +Theresa +Tinsley +Toni +Trisha +Valery +Vayda +Violeta +Yara +Zainab +Zendaya +Zinnia +Ziva +Zuleyka +Sophia +Emma +Mia +Isabella +Olivia +Sofia +Ava +Abigail +Emily +Victoria +Charlotte +Elizabeth +Natalie +Zoey +Scarlett +Evelyn +Madison +Amelia +Aria +Avery +Camila +Harper +Penelope +Layla +Zoe +Ella +Chloe +Grace +Lily +Brooklyn +Ariana +Nevaeh +Mila +Hannah +Arianna +Hailey +Ximena +Allison +Aaliyah +Lillian +Samantha +Aubrey +Addison +Melanie +Alexa +Audrey +Violet +Genesis +Ellie +Savannah +Serenity +Gabriella +Kaylee +Leah +Alexis +Aurora +Natalia +Andrea +Bella +Annabelle +Sadie +Valentina +Daleyza +Autumn +Claire +Luna +Kimberly +Madelyn +Liliana +Leilani +Lucy +Nicole +Riley +Ashley +Delilah +Maria +Peyton +Ruby +Stella +Mackenzie +Alyssa +Paisley +Eliana +Faith +Maya +Mya +Brianna +Kennedy +Kylie +Sarah +Alexandra +Ivy +Valeria +Gianna +Eva +Reagan +Ariel +Aubree +Jade +Kayla +Taylor +Piper +Elena +Hazel +Isabel +Madeline +Trinity +Ana +Brielle +Nora +Sophie +Athena +Giselle +Jasmine +Lilly +Melody +Quinn +Rylee +Eleanor +Naomi +Vivian +Alice +Khloe +Emery +Anna +Lauren +Bailey +Katherine +Presley +Brooke +Destiny +Amaya +Julia +Isabelle +Sydney +Vanessa +Alina +Lydia +Paige +Alexia +Angelina +Skylar +Cora +Kendra +Tatum +Genevieve +Izabella +Jocelyn +Valerie +Lyla +Mariah +Payton +Hayden +Daisy +Jennifer +Kinsley +Mckenzie +Morgan +Yaretzi +Arabella +Clara +Julianna +Makayla +Reese +Adalynn +Everly +Juliana +Michelle +Willow +Adriana +Alexandria +Kate +Laila +London +Rose +Alessandra +Eden +Emilia +Aliyah +Esmeralda +Jordyn +Lilliana +Parker +Stephanie +Anastasia +Angelique +Brooklynn +Elise +Juliet +Renata +Kendall +Lucia +Mariana +Summer +Adelyn +Jacqueline +Kaitlyn +Lexi +Daniela +Gabriela +Ivanna +Miranda +Nayeli +Sienna +Isla +Makenzie +Marley +Nadia +Rebecca +Alondra +Brynlee +Itzel +Jessica +Kamila +Adalyn +Alicia +Caroline +Josephine +Kaydence +Keira +Teagan +Amy +Angela +Arielle +Arya +Charlie +Harley +Hope +Iris +Jayla +Juliette +Molly +Callie +Eliza +Hadley +Jazmin +Kylee +Tessa +Cataleya +Mckenna +Melissa +Noelle +Aylin +Jayleen +Mary +Sara +Alayna +Diana +Gemma +Kenzie +Kinley +Anahi +Annabella +Cecilia +Elisa +Evelynn +Fernanda +Megan +Norah +Olive +Rachel +Adeline +Evangeline +Finley +Jazlyn +Kathryn +Lola +Makenna +Miriam +Shelby +Adelina +Brynn +Elliana +Harmony +Jimena +Katelyn +Kiara +Londyn +Lucille +Madeleine +Raegan +Regina +Alaina +Alison +Amina +Cali +Daphne +Karla +Katie +Lila +Madilyn +Marissa +Raelynn +Rosalie +Sabrina +Selena +Alana +Alivia +Amber +Ariella +Ashlyn +Briella +Crystal +Dakota +Emerson +Kali +Leila +Sage +Sierra +Adrianna +Aniyah +Ashlynn +Daniella +Danielle +Estrella +Fiona +Gracie +Harlow +Haylee +Leslie +Monserrat +Talia +Anabelle +Anaya +April +Aranza +Ayla +Ayleen +Bianca +Bria +Catalina +Charlee +Christina +Danna +Elsa +Esperanza +Jazmine +Joanna +Mikaela +Mikayla +Phoebe +Ruth +Ryleigh +Sawyer +Skyler +Yamileth +Ada +Alejandra +Ariah +Ariza +Audrina +Cadence +Catherine +Chelsea +Dayana +Gia +Haley +Lilian +Melany +Azalea +Blake +Camille +Delaney +Esther +Kyla +Lana +Maci +Maddison +Marilyn +Miah +Natasha +Naya +Priscilla +Savanna +Scarlet +Viviana +Adelynn +Alani +Allie +Allyson +Elaina +Jordan +Kimber +Kira +Laura +Lia +Lilyana +Madalyn +Maggie +Margaret +Nova +Perla +Romina +Sloane +Adilene +Aileen +Ainsley +Alyson +Angelica +Baylee +Camilla +Carly +Celeste +Elle +Ember +Emilee +Hanna +Jayden +Jaylah +Leia +Liberty +Reyna +Skye +Vivienne +Yaritza +Angel +Annie +Aspen +Averie +Braelyn +Brinley +Brylee +Cheyenne +Dahlia +Gabrielle +Giuliana +Gloria +Jane +Jenna +Julissa +Laylah +Myla +Aleena +Anika +Avianna +Carolina +Chanel +Dylan +Heidi +Henley +Jada +Janessa +June +Justice +Kadence +Kayleigh +Lilyanna +Malia +Maliyah +Melina +Neveah +Raquel +Rosa +Samara +Vera +Zariah +Adelaide +Amara +Araceli +Aubriana +Azul +Bridget +Cassidy +Colette +Dulce +Emmalyn +Holly +Ivory +Jessie +Josie +Juniper +Kassidy +Khaleesi +Millie +Nina +Patricia +Rebekah +Tiffany +Veronica +Addyson +Amanda +Anissa +Aryanna +Briana +Elyse +Emely +Erin +Georgia +Gracelyn +Gwendolyn +Haven +Helena +Itzayana +Jaylene +Journey +Kaia +Kailey +Kelsey +Kiera +Lacey +Lilianna +Lyric +Malaya +Marianna +Marjorie +Montserrat +Nataly +Paris +Paula +Penny +Sariah +Thalia +Yareli +Abril +Alma +Amiyah +Anabella +Bethany +Bryanna +Cambria +Capri +Carmen +Cassandra +Cristina +Cynthia +Danica +Demi +Denise +Eve +Felicity +Irie +Kaelyn +Karina +Kassandra +Kenia +Macie +Madelynn +Madilynn +Marisol +Marlee +Michaela +Paulina +Rylie +Sarai +Selah +Sherlyn +Skyla +Sylvia +Teresa +Airam +Aleah +America +Anabel +Arely +Aubrie +Caitlyn +Camryn +Celine +Dalary +Dalilah +Dallas +Elianna +Elsie +Emmalynn +Fatima +Guadalupe +Hayley +Imani +Isabela +Janelle +Jewel +Jillian +Julie +Kamryn +Katelynn +Kayden +Kaylynn +Lena +Lennon +Leona +Leyla +Linda +Luciana +Mariajose +Mariam +Mckinley +Meadow +Mina +Miya +Paloma +Raven +Remington +Sarahi +Sasha +Shiloh +Alena +Amelie +Angie +Annalee +Aryana +Brenda +Carla +Charlize +Davina +Desiree +Elisabeth +Elliot +Eloise +Erica +Everleigh +Frida +Holland +Iliana +Joy +Kailyn +Kayleen +Kenya +Kiana +Kyra +Lea +Lesly +Lexie +Lilith +Luz +Lylah +Mabel +Malaysia +Marie +Miley +Nathalie +Paislee +Paulette +Pearl +Phoenix +Ryan +Scarlette +Serena +Tabitha +Vivianna +Winter +Yesenia +Yuliana +Zaniyah +Zara +Abby +Aisha +Aliana +Alianna +Ally +Amalia +Amira +Angeline +Aniya +Antonia +Ariya +Aubriella +Bailee +Blakely +Breanna +Brisa +Cameron +Casey +Clarissa +Clementine +Edith +Elayna +Ellianna +Elora +Erika +Everlee +Freya +Gisselle +Gwen +Hadassah +Heaven +Ivana +Jaelyn +Jaelynn +Jazlynn +Johanna +Joselyn +Julieta +Kaiya +Kara +Kenley +Keyla +Kyleigh +Leighton +Leticia +Liana +Lilah +Lillianna +Lillyana +Lindsay +Logan +Mallory +Monroe +Paola +Raelyn +Rosemary +Saige +Tara +Tegan +Whitney +Yamilet +Yvette +Abrianna +Addelyn +Aimee +Alannah +Anais +Anya +Arantza +Ariadne +Audriana +Azalia +Claudia +Coral +Damaris +Dani +Danitza +Dorothy +Elissa +Esme +Evalyn +Evangelina +Jamie +Jaylin +Jenesis +Jessa +Jocelynn +Kamilah +Karen +Kiley +Lailah +Laylani +Lillith +Lindsey +Lizbeth +Lux +Maia +Maleah +Marian +Maritza +Martha +Mavis +Mercedes +Milan +Milena +Mireya +Myah +Natalee +Nathaly +Nia +Noemi +Nya +Reina +Remi +Remy +River +Saanvi +Tatiana +Xochitl +Zoie +Zuri +Abrielle +Addisyn +Ailyn +Alaya +Annalise +Annamarie +Aracely +Arlene +Arlette +Armani +Aubrianna +Aubrielle +Ayanna +Ayva +Blanca +Brittany +Caitlin +Chanelle +Charley +Coraline +Dalila +Dania +Delia +Drew +Elaine +Elin +Emelia +Emersyn +Emmalee +Emmy +Farrah +Frances +Galilea +Giana +Gracelynn +Grecia +Haylie +Irene +Italia +Izabelle +Jemma +Jenevieve +Joslyn +Kai +Karsyn +Katalina +Kaylin +Keilani +Kensley +Kristina +Krystal +Lainey +Lillie +Lillyanna +Lina +Lisa +Livia +Lorena +Macey +Macy +Madisyn +Madyson +Maisie +Maliah +Mara +Maylin +Mayte +Micaela +Monica +Moriah +Myra +Nathalia +Navy +Nikki +Raina +Renesmee +Rihanna +Rosie +Saniyah +Santana +Selina +Sky +Sumaya +Suri +Sutton +Tania +Temperance +Tiana +Abbigail +Adaleigh +Aida +Aiyanna +Alanna +Alba +Aliah +Alissa +Aliyana +Amairany +Amirah +Annabell +Annabeth +Ariadna +Astrid +Audrianna +Avalon +Avayah +Averi +Aviana +Ayana +Blair +Braelynn +Braylee +Briseis +Brynley +Cattleya +Caydence +Celina +Delanie +Diamond +Eiza +Elliott +Emerie +Emi +Emmie +Evalynn +Evie +Geraldine +Graciela +Greta +Hailee +Halle +Harlee +Ireland +Isabell +Isis +Jacquelyn +Jaqueline +Jayde +Jazleen +Jazlene +Journee +Juanita +Kailani +Karely +Karma +Kathleen +Kaya +Kaylie +Kelsie +Kenna +Kynlee +Landry +Laney +Leilah +Liah +Liv +Lorelai +Lorelei +Madalynn +Maeve +Maite +Marina +Mayah +Mercy +Milah +Milani +Miracle +Monique +Neriah +Nyla +Nylah +Payson +Pepper +Persephone +Princess +Rachael +Riya +Robyn +Roselyn +Rowan +Ryann +Salem +Saylor +Shaylee +Sinai +Sloan +Star +Taliyah +Taryn +Taylin +Taytum +Unique +Vianey +Vianney +Wendy +Xitlali +Yasmin +Zendaya +Zyla +Adalina +Addilyn +Adele +Adyson +Aiyana +Alayah +Alisha +Aliza +Amaris +Amayah +Amilia +Anabell +Analia +Anayah +Andi +Ania +Anita +Aolanis +Areli +Arianny +Ariyah +Ariyanna +Aurelia +Austyn +Barbara +Belinda +Bernadette +Blythe +Brigitte +Briley +Carlie +Caylee +Charli +Chevelle +Christine +Ciara +Cielo +Constance +Dalia +Danika +Dariana +Darla +Deborah +Devyn +Eileen +Elinor +Ellison +Elodie +Ema +Emeri +Emilie +Emmeline +Fallon +Faye +Frankie +Giovanna +Gisele +Gissel +Gwenyth +Gwyneth +Hadlee +Harlie +Helen +Hunter +Isadora +Isela +Izel +Janeth +Jayda +Jaylee +Jaylynn +Jenny +Jolie +Kailynn +Kaitlin +Kaitlynn +Kalani +Kaliyah +Karime +Kelly +Kendal +Kendyl +Kennedi +Kianna +Kiersten +Krista +Lacy +Leanna +Leela +Lianna +Libby +Lilia +Luisa +Lupita +Marcella +Mariel +Marisa +Marli +Maryjane +Matilda +Mollie +Nala +Natalya +Navya +Paityn +Rayna +Renee +Rilynn +Rita +Rory +Roxanna +Sandra +Selene +Spencer +Stephany +Stevie +Tayla +Theresa +Vanellope +Vida +Vivianne +Willa +Yulianna +Zion +Zola +Aadhya +Aadya +Aarna +Abbey +Abbie +Abriella +Adalie +Adamaris +Adilyn +Adina +Adrienne +Adrina +Ailani +Alexus +Aleyda +Aleyna +Alyana +Alycia +Alysson +Alyvia +Amari +Amerie +Amiah +Aminah +Amya +Analeigh +Analise +Ananya +Angelik +Annalicia +Anne +Anneliese +Annette +Ari +Arianni +Aribella +Ariela +Avah +Aya +Azariah +Azucena +Beatrice +Belle +Berenice +Berlin +Blessing +Bonnie +Brenna +Briseida +Britney +Caitlynn +Camdyn +Candace +Carli +Carolyn +Carson +Carter +Cecily +Charity +Charleigh +Charlene +Cherish +Cheyanne +Chiara +Cloe +Danissa +Darlene +Dayanara +Dayanna +Deanna +Eisley +Elia +Elyssa +Emmerson +Ericka +Estelle +Evolet +Ezra +Flor +Goldie +Hana +Harleigh +Hartley +Hattie +Hayleigh +Iyana +Jaina +Jana +Janney +Jasmin +Jiselle +Joey +Jovie +Judith +Kaelynn +Kalea +Kaley +Kamille +Karlie +Karter +Kataleya +Katarina +Katerina +Keziah +Khadija +Kinsey +Kora +Kori +Korra +Kyrie +Lainee +Lillyann +Lilyan +Linnea +Lizette +Lynda +Lyra +Mae +Magdalena +Magdalene +Magnolia +Maisy +Marceline +Maren +Margarita +Mariella +Maxine +Mayra +Melani +Melannie +Melinda +Miyah +Nahomi +Nalani +Nichole +Noa +Novalee +Oakley +Opal +Ophelia +Poppy +Precious +Pyper +Queen +Rocio +Rosemarie +Roxanne +Sally +Salma +Saphira +Sapphire +Savana +Sedona +Senna +Shania +Siena +Simone +Sol +Solana +Sonia +Stacy +Susan +Tamara +Tenley +Tess +Vania +Violetta +Wynter +Xiomara +Yamilex +Yanitza +Yara +Yarely +Yasmeen +Yulissa +Zaria +Zayla +Zoee +Zooey +John +Manuel +Joe +William +Frank +James +Robert +Jose +Henry +Louis +Jack +Joseph +Juan +Albert +Edward +Antonio +Charles +Ramon +Alfred +Paul +Thomas +David +Fred +George +Arthur +Gilbert +Pete +Rafael +Raymond +Samuel +Francisco +Harold +Kenneth +Pedro +Armando +Benjamin +Carlos +Dan +Harry +Leo +Luis +Miguel +Mike +Roberto +Tony +John +Joe +Jose +Frank +George +James +Juan +William +Robert +Ralph +Francisco +Henry +Joseph +Edward +Manuel +Paul +Harry +Louis +Albert +Arthur +Charles +Donald +Richard +Ernest +Ramon +Antonio +Gilbert +Rafael +Samuel +David +Leo +Pedro +Raymond +Andrew +Eugene +Jesus +Kee +Sam +Thomas +Tom +Walter +John +Frank +James +Joe +William +Manuel +Robert +Joseph +Jose +Charles +Henry +George +Richard +Thomas +Edward +Jesus +Albert +Juan +Walter +Antonio +Francisco +Ralph +David +Fred +Paul +Jack +Roberto +Eugene +Louis +Ramon +Raymond +Tom +Alfred +Samuel +Willie +Charlie +Chester +Harry +Howard +Lawrence +Lee +Luis +Sam +Alex +Daniel +Ernest +Gilbert +Jim +Lloyd +Pete +Ray +Tony +Andrew +Carl +Carlos +Harold +Kenneth +Leo +Leonard +Lewis +Ricardo +Roy +Alfonso +Angel +Bernard +Guadalupe +Herbert +Jesse +Michael +Pedro +Salvador +John +William +James +George +Manuel +Robert +Joe +Frank +Jose +Albert +Joseph +Edward +Charles +Henry +Paul +Gilbert +Jack +Arthur +Juan +Louis +Ralph +Ramon +Thomas +Francisco +Harold +Carlos +David +Antonio +Pedro +Raymond +Richard +Tony +Clarence +Ernest +Luis +Martin +Sam +Victor +Fred +Jesus +Ray +Walter +Andrew +Francis +Harry +Leonard +Pete +Alexander +Lawrence +Alex +Alfred +Earl +Herbert +Kenneth +Oscar +Amos +Clyde +Guy +Howard +Ignacio +Roy +Samuel +Steve +Tom +Alfonso +Ben +Carl +Daniel +Fernando +Jesse +Lloyd +Mike +Phillip +Raul +Salvador +Vernon +Waldo +Woodrow +William +Frank +John +George +Jose +Joe +Robert +James +Manuel +Charles +Albert +Joseph +Henry +Fred +Ernest +Harry +Raymond +Ralph +Louis +Jack +Juan +Arthur +Jesus +Paul +Ramon +Richard +Thomas +David +Edward +Pedro +Antonio +Gilbert +Harold +Roy +Lawrence +Carl +Carlos +Mike +Martin +Walter +Alfred +Cruz +Earl +Leonard +Samuel +Tony +Alex +Francisco +Howard +Luis +Ray +Alfredo +Ben +Charlie +Clyde +Donald +Eddie +Eugene +Lee +Leo +Lewis +Peter +Andrew +Armando +Chester +Ernesto +Felix +Kenneth +Oscar +Pete +Rafael +Alberto +Alejandro +Bill +Dan +Francis +Herman +Jess +Jesse +Lloyd +Miguel +Roberto +Rodolfo +Stanley +Tom +Tomas +Alexander +Arturo +Augustine +Benjamin +Clarence +Claude +Daniel +Edwin +Elmer +Enrique +Fernando +Frederick +Gabriel +Keith +Nelson +Ross +Russell +Sam +Steve +Theodore +John +William +Robert +Frank +Joe +James +Manuel +Jose +Charles +George +Joseph +Albert +Henry +Jack +Fred +Ralph +Antonio +Richard +Juan +Louis +Raymond +David +Edward +Thomas +Arthur +Gilbert +Harry +Ramon +Alfred +Ernest +Carl +Donald +Jesus +Paul +Ray +Andrew +Francisco +Mike +Roy +Raul +Carlos +Lawrence +Leo +Rudolph +Walter +Harold +Pedro +Enrique +Eugene +Hugh +Miguel +Bill +Chester +Tony +Vincent +Alfonso +Angel +Ben +Felix +Howard +Jesse +Jim +Kenneth +Pete +Roberto +Salvador +Steve +Abel +Alberto +Anthony +Clyde +Edwin +Elmer +Fernando +Leon +Leonard +Luis +Philip +Tom +Victor +Alfredo +Clarence +Ernesto +Floyd +Guadalupe +Guillermo +Oscar +Phillip +Rodolfo +Alex +Allen +Bernard +Edmundo +Francis +Horace +Leroy +Marvin +Melvin +Norman +Samuel +Simon +Trinidad +Wallace +Wesley +Adolfo +Alexander +Andres +Armando +Arnold +Benjamin +Billy +Charlie +Daniel +Earl +Evaristo +Frederick +Gabriel +Glenn +Gordon +Guy +Jimmie +Joaquin +Kee +Lee +Lester +Lewis +Peter +Santiago +Theodore +Tommy +Wayne +John +Manuel +William +Robert +Frank +Joe +James +Jose +George +Charles +Edward +Albert +Jesus +Henry +Arthur +David +Fred +Ramon +Richard +Thomas +Ernest +Harry +Joseph +Juan +Carl +Ralph +Antonio +Francisco +Eugene +Paul +Louis +Pedro +Raymond +Jack +Alfonso +Tony +Alfredo +Pete +Alfred +Felix +Kenneth +Mike +Norman +Roy +Daniel +Donald +Harold +Clarence +Ray +Allen +Andrew +Lloyd +Theodore +Victor +Carlos +Howard +Rafael +Tom +Francis +Guadalupe +Leo +Oscar +Rudolph +Gilbert +Martin +Ruben +Sam +Walter +Bill +Chester +Earl +Leonard +Luis +Steve +Alex +Angel +Anthony +Armando +Benjamin +Dan +Herbert +Jesse +Lorenzo +Max +Peter +Raul +Willard +Willie +Alberto +Alexander +Ben +Bert +Charlie +Clifford +Clyde +Edgar +Edwin +Glenn +Guy +Lester +Marvin +Melvin +Roberto +Rodolfo +Salvador +Samuel +Elias +Ernesto +Floyd +Gordon +Gus +Harvey +Jess +Jim +Lawrence +Lupe +Mark +Nick +Ricardo +Warren +Abraham +Arnulfo +Bernard +Eduardo +Everett +Fernando +Franklin +Frederick +Gabriel +Gustavo +Herman +Jimmy +Karl +Marion +Miguel +Patrick +Philip +Refugio +Rosendo +Sidney +Steven +Vicente +Wilbur +Wilson +Ygnacio +John +William +Robert +Manuel +Jose +Frank +Joe +James +George +Charles +Joseph +Albert +Edward +Thomas +Antonio +Henry +Juan +Jack +Francisco +Jesus +Ernest +Arthur +Fred +Louis +Walter +Ralph +Richard +Paul +Ramon +Raymond +Lawrence +David +Donald +Harold +Alfred +Gilbert +Mike +Ray +Roy +Tony +Carlos +Harry +Pedro +Pete +Daniel +Enrique +Kenneth +Martin +Benjamin +Francis +Howard +Roberto +Carl +Guadalupe +Luis +Oscar +Salvador +Cecil +Fernando +Sam +Tom +Victor +Alfonso +Angel +Ben +Keith +Leo +Alejandro +Clarence +Earl +Gordon +Julio +Lewis +Lloyd +Pablo +Alberto +Alex +Alexander +Andrew +Arnold +Arturo +Eduardo +Elmer +Eugene +Felix +Milton +Phillip +Rafael +Refugio +Ricardo +Samuel +Willie +Woodrow +Agustin +Armando +Felipe +Herbert +Ignacio +Ismael +Julian +Leon +Leroy +Melvin +Miguel +Nicolas +Raul +Rodolfo +Stanley +Theodore +Vicente +Alfredo +Andres +Bert +Bob +Clyde +Eddie +Edwin +Floyd +Gerald +Guillermo +Guy +Harvey +Hubert +Kee +Peter +Philip +Rudolph +Simon +Vernon +Ygnacio +Abel +Anthony +Augustine +Aurelio +Bruce +Charlie +Clifford +Cruz +Dan +Domingo +Earnest +Elias +Everett +Frederick +Gabriel +Glenn +Gustavo +Jess +Jesse +Leonard +Leslie +Michael +Rex +Santiago +John +Robert +Manuel +Frank +William +James +Jose +Joe +George +Charles +Thomas +David +Albert +Henry +Richard +Juan +Edward +Francisco +Antonio +Jesus +Joseph +Jack +Ramon +Raymond +Ernest +Alfred +Paul +Arthur +Walter +Harry +Carlos +Lawrence +Kenneth +Louis +Gilbert +Mike +Pedro +Ben +Ralph +Roy +Victor +Eugene +Harold +Samuel +Tony +Alfonso +Pete +Raul +Tom +Woodrow +Alex +Carl +Donald +Fred +Leonard +Ray +Vernon +Daniel +Clarence +Earl +Felix +Lee +Luis +Rafael +Theodore +Domingo +Fernando +Frederick +Kee +Ruben +Alberto +Benjamin +Dan +Elmer +Herbert +Howard +Ignacio +Julian +Lupe +Salvador +Alejandro +Alexander +Francis +Lloyd +Lorenzo +Martin +Miguel +Rudolph +Vincent +Wayne +Angel +Armando +Douglas +Ernesto +Gerald +Leo +Leon +Marion +Philip +Sam +Alfredo +Charlie +Don +Glenn +Harvey +Jesse +Max +Melvin +Peter +Ricardo +Andres +Anthony +Chester +Eddie +Enrique +Felipe +Florentino +Gustavo +Herman +Jimmie +Johnnie +Lester +Oliver +Roberto +Ross +Simon +Adolfo +Andrew +Arturo +Bert +Bill +Bob +Bruce +Cecil +Charley +Claude +Edmund +Franklin +Gabriel +Glen +Jim +Lionel +Lynn +Oscar +Rex +Rodolfo +Sidney +Stanley +Tomas +Wesley +Willie +Wilson +Allen +Alvin +Arcadio +Billy +Cruz +Edwin +Elias +Fidel +Floyd +Gene +Grant +Homer +Johnny +Julio +Leonardo +Lyle +Milton +Norman +Pablo +Patrick +Riley +Roger +Santiago +Vicente +Wallace +Willard +John +Robert +Manuel +Jose +William +James +Frank +Joe +George +Albert +Paul +Charles +David +Richard +Henry +Edward +Arthur +Juan +Francisco +Jack +Louis +Joseph +Ralph +Ramon +Jesus +Raymond +Thomas +Luis +Ernest +Walter +Alfred +Fred +Harold +Carlos +Miguel +Roy +Tony +Clarence +Daniel +Mike +Pedro +Gilbert +Harry +Ray +Salvador +Alberto +Floyd +Angel +Herbert +Peter +Rafael +Carl +Donald +Howard +Kenneth +Lawrence +Theodore +Ernesto +Ignacio +Raul +Victor +Andrew +Eugene +Fernando +Martin +Oscar +Pete +Rodolfo +Antonio +Arturo +Ben +Earl +Ruben +Alex +Alfredo +Jesse +Leo +Leonard +Marvin +Tom +Allen +Benjamin +Bill +Clifford +Douglas +Elmer +Felix +Julio +Melvin +Sam +Samuel +Tomas +Willie +Dan +Felipe +Herman +Jim +Johnny +Kee +Lee +Leslie +Lupe +Pablo +Roberto +Armando +Bernard +Bruce +Chester +Edgar +Edwin +Enrique +Hector +Santiago +Stanley +Alfonso +Charley +Conrado +Gilberto +Gregorio +Guadalupe +Leroy +Michael +Milton +Randolph +Refugio +Reynaldo +Steve +Vincent +Wayne +Ygnacio +Adolfo +Alexander +Arnold +Arnulfo +Billy +Cecil +Charlie +Clyde +Cruz +Everett +Francis +Frederick +Gordon +Guillermo +Harvey +Julian +Lloyd +Max +Trinidad +Vernon +Andres +Anselmo +Anthony +Augustine +Aurelio +Bernardo +Domingo +Eulalio +Gerald +Grant +Jimmie +Joaquin +Leon +Lorenzo +Louie +Marcelino +Morris +Norman +Pat +Phillip +Rex +Reyes +Rudolph +Simon +Virgil +Willard +Wilson +John +Robert +Frank +William +Manuel +Jose +Joe +George +James +Charles +Edward +Jack +David +Joseph +Albert +Ramon +Antonio +Richard +Henry +Juan +Ernest +Paul +Thomas +Ralph +Arthur +Fred +Louis +Daniel +Jesus +Raul +Raymond +Francisco +Alfred +Carlos +Harry +Pedro +Roy +Roberto +Walter +Gilbert +Leonard +Mike +Tony +Clarence +Luis +Oscar +Harold +Howard +Norman +Alberto +Eugene +Pete +Carl +Ray +Andrew +Benjamin +Donald +Earl +Miguel +Peter +Victor +Angel +Arturo +Kee +Lawrence +Lloyd +Samuel +Tom +Alfonso +Alfredo +Charlie +Chester +Clyde +Ernesto +Gabriel +Hector +Julian +Leo +Lester +Rafael +Rudolph +Theodore +Alex +Clifford +Cruz +Edwin +Jimmie +Julio +Rodolfo +Tomas +Vernon +Armando +Bill +Fernando +Guillermo +Herbert +Nelson +Pablo +Adolfo +Alexander +Billy +Eduardo +Felix +Gilberto +Grant +Gustavo +Ignacio +Lorenzo +Melvin +Phillip +Salvador +Sam +Santiago +Stanley +Wallace +Andres +Bruce +Elmer +Guadalupe +Harvey +Johnny +Kenneth +Lee +Leroy +Ruben +Simon +Trinidad +Warren +Alejandro +Arnold +Augustine +Ben +Bob +Cecil +Dan +Dick +Eddie +Francis +Gordon +Herman +Jess +Jesse +Martin +Philip +Ricardo +Roland +Rudy +Stephen +Wayne +Arnulfo +Don +Gerald +Jim +Jimmy +Johnnie +Marvin +Roger +Vicente +Vincent +Willis +Ygnacio +Agapito +Agustin +Alvin +Candelario +Conrado +Dolores +Domingo +Douglas +Edgar +Edwardo +Elias +Eugenio +Floyd +Gene +Gregorio +Guy +Jerry +Joaquin +Larry +Marcos +Marion +Ned +Phil +Refugio +Reynaldo +Steve +Willie +Wilson +John +Robert +William +James +Manuel +Joe +Frank +George +Jose +Edward +Charles +Richard +Henry +David +Jack +Albert +Francisco +Jesus +Arthur +Joseph +Juan +Thomas +Paul +Raymond +Harold +Fred +Kenneth +Ralph +Ramon +Antonio +Ray +Roy +Ernest +Gilbert +Raul +Harry +Louis +Donald +Ben +Fernando +Kee +Walter +Alfred +Carlos +Mike +Pete +Tony +Earl +Oscar +Ruben +Daniel +Howard +Luis +Alejandro +Alfredo +Armando +Francis +Victor +Enrique +Herbert +Lawrence +Leonard +Samuel +Alfonso +Benjamin +Edwin +Sam +Theodore +Tom +Eugene +Martin +Miguel +Norman +Pedro +Rodolfo +Vicente +Warren +Bob +Jesse +Lloyd +Melvin +Stanley +Willie +Alex +Alexander +Bill +Chester +Clarence +Guy +Keith +Leo +Rafael +Salvador +Alberto +Allen +Carl +Clyde +Ernesto +Floyd +Ignacio +Jim +Jimmie +Lee +Marvin +Peter +Philip +Santos +Angel +Arturo +Augustine +Bernard +Billy +Cecil +Charlie +Edgar +Elmer +Gregorio +Johnny +Oliver +Reynaldo +Andrew +Bert +Cruz +Faustino +Felix +Gabriel +Glenn +Harvey +Joaquin +Julian +Pablo +Roman +Rudolph +Claude +Dale +Dennis +Don +Eddie +Elbert +Elias +Hector +Jacob +Jimmy +Larry +Leslie +Lewis +Lorenzo +Louie +Lupe +Max +Myron +Russell +Steve +Trinidad +Vernon +Wayne +Wilson +Alvin +Andres +Andy +Calvin +Charley +Chee +Forrest +Gail +Gerald +Gilberto +Glen +Gordon +Guadalupe +Hilario +Hugh +Jay +Jess +Johnnie +Loren +Margarito +Mario +Maurice +Patrick +Phillip +Refugio +Rex +Roberto +John +Robert +William +James +Jose +Joe +Manuel +Frank +George +Charles +Richard +Jack +Joseph +Henry +Albert +Arthur +David +Jesus +Edward +Juan +Raymond +Thomas +Louis +Ernest +Paul +Ralph +Luis +Fred +Ramon +Gilbert +Antonio +Harry +Carlos +Francisco +Kenneth +Raul +Roy +Alfred +Donald +Harold +Ignacio +Carl +Kee +Oscar +Salvador +Walter +Alfonso +Sam +Tony +Victor +Eugene +Miguel +Tom +Norman +Pedro +Ray +Samuel +Alfredo +Clifford +Leo +Angel +Daniel +Gordon +Peter +Armando +Bill +Fernando +Herbert +Jesse +Martin +Melvin +Willie +Dan +Earl +Francis +Howard +Leonard +Mike +Ruben +Warren +Andres +Benjamin +Billy +Eddie +Edwin +Jerry +Jimmie +Johnny +Lawrence +Milton +Alex +Bert +Charley +Enrique +Ernesto +Felix +Guadalupe +Joaquin +Lee +Lloyd +Arnold +Charlie +Clyde +Edgar +Elmer +Gene +Hector +Julian +Julio +Leroy +Lester +Max +Pete +Rafael +Rudolph +Stanley +Vernon +Andrew +Ben +Clarence +Cruz +Guy +Harvey +Herman +Jim +Lewis +Michael +Roberto +Steve +Wayne +Wilson +Alvin +Amos +Arturo +Benito +Calvin +Cecil +Chee +Don +Floyd +Gerald +Guillermo +Keith +Leonardo +Nelson +Nicolas +Pablo +Simon +Tommy +Virgil +Wallace +Willard +Adolph +Alberto +Allen +Aurelio +Bruce +Clinton +Dolores +Elias +Franklin +Gilberto +Gonzalo +Hugh +Jessie +Jimmy +Johnnie +Leland +Louie +Marvin +Ned +Oliver +Phillip +Rex +Ricardo +Rodolfo +Ross +Theodore +Vincent +John +William +Robert +Manuel +Joe +Jose +Frank +James +George +David +Edward +Henry +Jack +Charles +Jesus +Francisco +Albert +Antonio +Juan +Louis +Richard +Harry +Raymond +Thomas +Ernest +Paul +Arthur +Fred +Gilbert +Joseph +Walter +Tom +Daniel +Harold +Ramon +Alfred +Roy +Carlos +Howard +Carl +Donald +Ernesto +Kenneth +Ralph +Pablo +Oscar +Raul +Eugene +Luis +Tony +Earl +Felix +Miguel +Mike +Alfonso +Ben +Clarence +Ray +Ruben +Salvador +Alex +Bill +Philip +Samuel +Warren +Alberto +Benjamin +Eddie +Fernando +Martin +Pete +Rafael +Wayne +Jesse +Leo +Leonard +Melvin +Alfredo +Bob +Pedro +Roberto +Sam +Andrew +Armando +Augustine +Clyde +Dan +Hector +Ignacio +Johnny +Victor +Willie +Arnold +Elias +Enrique +Glen +Larry +Lawrence +Lloyd +Alejandro +Dick +Gerald +Glenn +Herbert +Kee +Stephen +Angel +Billy +Charlie +Chester +Edmund +Floyd +Jim +Marvin +Rodolfo +Theodore +Anthony +Arturo +Bruce +Calvin +Felipe +Fidel +Gene +Harvey +Jay +Jimmie +Keith +Lee +Norman +Refugio +Simon +Stanley +Adolfo +Alexander +Bernard +Bernardo +Billie +Charley +Francis +Frederick +Gabriel +Gregorio +Guy +Herman +Jerry +Julian +Louie +Marion +Vernon +Abel +Allen +Alvin +Arnoldo +Aurelio +Cruz +Dave +Eduardo +Edwin +Elmer +Florencio +Franklin +Gilberto +Guadalupe +Homer +Hugh +Julio +Leroy +Lester +Lorenzo +Mark +Marshall +Milton +Peter +Phillip +Reynaldo +Ross +Rudy +Ted +Tomas +Vicente +Virgil +Willard +Wilson +John +Robert +William +James +Frank +Jose +Manuel +Joe +Charles +Henry +George +Jack +Albert +Richard +Jesus +Paul +Edward +Joseph +Thomas +David +Raymond +Juan +Ramon +Ernest +Arthur +Luis +Harry +Kee +Louis +Alfred +Harold +Ralph +Walter +Antonio +Carlos +Eugene +Francisco +Gilbert +Kenneth +Lawrence +Raul +Roy +Donald +Tom +Tony +Clarence +Miguel +Angel +Ray +Dan +Pedro +Alfredo +Carl +Fernando +Jimmie +Pete +Roberto +Sam +Ben +Earl +Felix +Fred +Mike +Oscar +Salvador +Benjamin +Daniel +Ignacio +Samuel +Ernesto +Rafael +Alfonso +Bill +Billy +Calvin +Edwin +Armando +Charlie +Gerald +Guadalupe +Herman +Jim +Leonard +Martin +Norman +Ricardo +Alex +Clyde +Hector +Jerry +Larry +Lee +Leo +Mario +Nicolas +Phillip +Refugio +Ruben +Victor +Wallace +Alberto +Arnold +Arturo +Charley +Enrique +Florencio +Howard +Julian +Lloyd +Pablo +Cecil +Douglas +Floyd +Gene +Leon +Lewis +Philip +Willie +Alejandro +Andrew +Don +Eddie +Francis +Frederick +Gordon +Marion +Melvin +Peter +Rudolph +Warren +Augustine +Claude +Domingo +Eduardo +Elmer +Felipe +Glen +Guillermo +Gustavo +Harvey +Lester +Lupe +Michael +Pascual +Tomas +Bert +Billie +Bob +Dale +Edgar +Elias +Gabriel +Gilberto +Glenn +Jessie +Jimmy +Ned +Simon +Steven +Theodore +Vicente +Vincent +Wayne +Wesley +Aaron +Augustin +Benito +Bernard +Bruce +Conrad +Dennis +Dewey +Dolores +Duane +Emilio +Franklin +Grant +Gregorio +Herbert +Jay +Jesse +Joaquin +Lorenzo +Luther +Marcos +Max +Nelson +Porfirio +Reynaldo +Rodolfo +Santiago +Stanley +Wilson +John +Robert +William +Joe +Manuel +James +Frank +George +Jose +Charles +Jack +Albert +Henry +Jesus +Richard +Edward +David +Thomas +Raymond +Francisco +Joseph +Antonio +Juan +Harold +Ramon +Ernest +Paul +Ralph +Arthur +Kenneth +Donald +Eugene +Louis +Fred +Tony +Gilbert +Kee +Walter +Tom +Alfred +Mike +Pete +Raul +Carlos +Eddie +Pedro +Harry +Billy +Daniel +Jimmie +Roy +Alfonso +Fernando +Arturo +Gene +Miguel +Ray +Alex +Angel +Luis +Salvador +Samuel +Alberto +Benjamin +Carl +Dan +Jim +Johnny +Martin +Armando +Bill +Charlie +Elmer +Rafael +Roberto +Earl +Herbert +Ignacio +Johnnie +Leo +Clyde +Felix +Glenn +Jesse +Melvin +Oscar +Alexander +Edgar +Enrique +Everett +Francis +Howard +Lawrence +Ricardo +Victor +Wayne +Bob +Cecil +Clarence +Guadalupe +Lee +Lester +Marvin +Steven +Warren +Alfredo +Arnold +Calvin +Dick +Edwin +Gilberto +Hector +Lloyd +Milton +Rodolfo +Vincent +Alejandro +Alvin +Andrew +Bert +Bruce +Claude +Ernesto +Glen +Guy +Harvey +Leonard +Marion +Norman +Peter +Ruben +Sam +Tomas +Vernon +Willie +Benny +Bobby +Dennis +Douglas +Elias +Gabriel +Gordon +Herman +Hugh +Jay +Jerry +Jimmy +Stanley +Adolfo +Allen +Ben +Charley +Cruz +Edmund +Gerald +Guillermo +Julian +Larry +Leon +Lewis +Mark +Max +Michael +Philip +Refugio +Reynaldo +Roger +Virgil +Allan +Alonzo +Augustine +Bernardo +Eugenio +Floyd +Humberto +Jessie +Lorenzo +Lupe +Nelson +Pablo +Patrick +Phillip +Rogelio +Rudy +Santiago +Santos +Steve +Teddy +Tommie +Unknown +Vicente +Wallace +Wesley +Willard +Robert +John +James +Frank +William +Manuel +Jose +George +Joe +Jesus +Charles +Raymond +Richard +Henry +Jack +Edward +Arthur +Albert +Donald +Ramon +Thomas +Juan +Gilbert +Paul +Fred +Joseph +David +Harold +Francisco +Ralph +Antonio +Daniel +Ernest +Walter +Raul +Luis +Roy +Harry +Louis +Tony +Kee +Kenneth +Carlos +Mike +Clarence +Miguel +Peter +Alfred +Billy +Pedro +Tom +Norman +Pete +Ruben +Alfonso +Carl +Jim +Ray +Eugene +Howard +Ignacio +Leo +Oscar +Sam +Johnny +Leonard +Rafael +Salvador +Alex +Alfredo +Ben +Bob +Don +Jimmie +Marvin +Roberto +Armando +Bill +Clifford +Enrique +Ernesto +Jesse +Rudolph +Arturo +Fernando +Floyd +Francis +Gilberto +Martin +Phillip +Victor +Arnold +Earl +Felipe +Felix +Alberto +Angel +Eddie +Melvin +Rodolfo +Andrew +Benjamin +Dan +Eduardo +Gregorio +Jimmy +Mario +Max +Theodore +Willie +Allen +Charlie +Clyde +Glenn +Gordon +Herman +Lewis +Lorenzo +Philip +Roger +Augustine +Calvin +Cecil +Charley +Cruz +Dennis +Douglas +Gene +Gerald +Guy +Jerry +Julio +Ned +Refugio +Santiago +Stanley +Vernon +Wayne +Alejandro +Bahe +Bobby +Dick +Elmer +Fidel +Hector +Herbert +Johnnie +Leopoldo +Pablo +Tommy +Virgil +Alexander +Bert +Bruce +Emilio +Ernie +Freddie +Harvey +Humberto +Jorge +Larry +Leroy +Lester +Lloyd +Michael +Oliver +Reynaldo +Trinidad +Wallace +Arnulfo +Benny +Bernardo +Chester +Dale +Guadalupe +Guillermo +Joaquin +Julian +Keith +Lee +Leon +Lupe +Mark +Milton +Nelson +Ricardo +Samuel +Steven +Tomas +Warren +John +Robert +Frank +Manuel +Joe +William +Jose +James +Richard +George +Charles +Jesus +Henry +David +Jack +Edward +Arthur +Albert +Donald +Francisco +Thomas +Raymond +Antonio +Fred +Ramon +Gilbert +Juan +Louis +Ralph +Harry +Paul +Ernest +Walter +Joseph +Kee +Billy +Raul +Carlos +Miguel +Mike +Ruben +Tony +Alex +Roy +Alfred +Luis +Harold +Sam +Rafael +Tom +Jimmie +Pete +Alfonso +Kenneth +Eugene +Oscar +Victor +Carl +Daniel +Fernando +Leo +Martin +Gene +Lawrence +Pedro +Roberto +Angel +Armando +Bill +Bob +Ray +Allen +Ben +Eddie +Norman +Salvador +Francis +Herbert +Howard +Peter +Alberto +Arturo +Billie +Felix +Hector +Samuel +Wallace +Alfredo +Dan +Don +Elmer +Glen +Jerry +Jesse +Johnnie +Leonard +Marvin +Ronald +Rudy +Theodore +Dale +Glenn +Herman +Ignacio +Keith +Larry +Rodolfo +Willie +Alejandro +Arnold +Cecil +Earl +Gerald +Gilberto +Guillermo +Jim +Jimmy +Johnny +Lee +Lorenzo +Nelson +Phillip +Tomas +Wayne +Andres +Andrew +Eduardo +Elias +Enrique +Felipe +Floyd +Leon +Mario +Stanley +Ted +Tommy +Alvin +Arnulfo +Benjamin +Charlie +Clifford +Clyde +Dick +Lewis +Lloyd +Max +Pablo +Philip +Refugio +Vicente +Adolfo +Anthony +Bennie +Clarence +Claude +Emilio +Ernesto +Gregorio +Guadalupe +Gustavo +Hugh +Ira +Isaac +Julian +Leslie +Louie +Michael +Ricardo +Russell +Trinidad +Abelardo +Benny +Bernard +Bobby +Chester +Domingo +Douglas +Frederick +Gerardo +Guy +Harvey +Haskie +Horace +Jay +Joaquin +Julio +Karl +Leroy +Mack +Maurice +Melvin +Ned +Nicholas +Santiago +Victoriano +John +Robert +Manuel +Jose +Joe +William +Frank +James +George +Richard +Charles +Jesus +David +Edward +Francisco +Paul +Juan +Henry +Jack +Ramon +Raymond +Antonio +Albert +Ralph +Arthur +Ernest +Gilbert +Thomas +Donald +Louis +Ruben +Tony +Harry +Joseph +Billy +Fred +Kenneth +Luis +Pedro +Victor +Alfred +Kee +Daniel +Harold +Bill +Raul +Ray +Miguel +Carlos +Jimmie +Tom +Eddie +Herbert +Oscar +Pete +Roy +Ben +Enrique +Roberto +Clarence +Hector +Mike +Norman +Walter +Willie +Alex +Alfonso +Armando +Eugene +Johnny +Howard +Sam +Tommy +Arturo +Bob +Bobby +Lawrence +Leo +Leonard +Rudy +Angel +Carl +Clyde +Dan +Lloyd +Alfredo +Andrew +Benjamin +Herman +Mario +Rafael +Samuel +Charlie +Clifford +Fernando +Francis +Jerry +Salvador +Edwin +Gene +Milton +Ricardo +Wallace +Arnold +Don +Jimmy +Lee +Leroy +Martin +Peter +Teddy +Vernon +Alberto +Ernesto +Guy +Jesse +Julian +Marion +Pablo +Phillip +Wayne +Aurelio +Bahe +Billie +Bruce +Dick +Eduardo +Everett +Floyd +Gordon +Jim +Lupe +Margarito +Max +Melvin +Rodolfo +Vicente +Benito +Bennie +Benny +Earl +Felix +Glenn +Keith +Leslie +Lewis +Lorenzo +Marvin +Refugio +Rosendo +Virgil +Alexander +Augustine +Calvin +Charley +Edgar +Felipe +Gabriel +Gerald +Gilberto +Guadalupe +Guillermo +Hoskie +Ignacio +Ned +Nelson +Patrick +Philip +Rudolph +Santiago +Stanley +Wesley +Alejandro +Alvin +Andres +Archie +Bernard +Cecil +Chester +Danny +Denny +Duane +Elias +Elmer +Gail +Gustavo +Harvey +Homer +Jackie +Jess +Johnnie +Jorge +Larry +Mark +Michael +Neal +Oliver +Reynaldo +Ronald +Russell +Ted +Tomas +Ygnacio +Robert +John +William +Joe +Manuel +Jose +James +Frank +George +Richard +Charles +Jesus +Donald +Jack +Edward +Henry +David +Ramon +Raymond +Juan +Albert +Francisco +Gilbert +Thomas +Antonio +Arthur +Billy +Fred +Tony +Joseph +Ernest +Paul +Ralph +Harold +Harry +Roy +Luis +Ruben +Kee +Bob +Daniel +Johnny +Alfred +Louis +Mike +Kenneth +Alfredo +Roberto +Rodolfo +Armando +Howard +Oscar +Pedro +Rafael +Raul +Ray +Eddie +Bobby +Clarence +Eugene +Carlos +Fernando +Tom +Alex +Carl +Earl +Gerald +Herbert +Jimmie +Leonard +Miguel +Pete +Angel +Bill +Jerry +Salvador +Floyd +Jimmy +Norman +Rudy +Sam +Samuel +Arturo +Benny +Jesse +Lee +Leo +Stanley +Clifford +Don +Elmer +Francis +Jim +Larry +Lawrence +Peter +Tommy +Alberto +Andrew +Ben +Bruce +Charlie +Guillermo +Johnnie +Martin +Santiago +Theodore +Vernon +Walter +Alfonso +Arnold +Douglas +Ernesto +Lewis +Victor +Benjamin +Cruz +Felix +Hector +Lloyd +Max +Melvin +Vicente +Wayne +Willie +Alejandro +Billie +Curtis +Dick +Elias +Glen +Mario +Pablo +Phillip +Reynaldo +Ricardo +Vincent +Wallace +Adolfo +Allen +Calvin +Cecil +Clyde +Dale +Felipe +Gene +Humberto +Julian +Roger +Ronald +Santos +Ygnacio +Abelardo +Dan +Dean +Everett +Glenn +Ignacio +Julio +Keith +Lupe +Marvin +Philip +Rex +Rudolph +Ysidro +Andres +Anthony +Arnulfo +Aurelio +Duane +Edgar +Edwin +Freddie +Guadalupe +Joaquin +Leon +Leslie +Milton +Russell +Steve +Willard +Wilson +Adalberto +Alexander +Arnoldo +Austin +Bennie +Bernard +Chee +Chester +Dave +Domingo +Doyle +Eduardo +Enrique +Forrest +Gabriel +Gordon +Herman +Hugh +Jay +Jorge +Junior +Leonardo +Lester +Lorenzo +Marcelino +Margarito +Mark +Ramiro +Refugio +Teddy +Wilbur +Robert +John +James +William +Frank +Joe +Richard +Manuel +Jose +George +Charles +Donald +Jesus +David +Albert +Gilbert +Jack +Henry +Thomas +Antonio +Tony +Raymond +Ramon +Edward +Ernest +Paul +Francisco +Juan +Kenneth +Ruben +Louis +Alfred +Fred +Billy +Harold +Roberto +Arthur +Carlos +Ralph +Daniel +Raul +Roy +Joseph +Armando +Oscar +Harry +Miguel +Bobby +Carl +Don +Pete +Clarence +Jimmy +Alex +Alfonso +Luis +Mike +Pedro +Bob +Floyd +Hector +Jerry +Kee +Rodolfo +Victor +Bill +Dale +Earl +Ronald +Salvador +Samuel +Angel +Benjamin +Francis +Herbert +Johnny +Tommy +Walter +Enrique +Larry +Peter +Rudy +Sam +Eddie +Fernando +Glenn +Lee +Ray +Alfredo +Eugene +Gene +Jimmie +Melvin +Pablo +Rafael +Theodore +Tom +Willie +Dan +Howard +Leo +Stanley +Ben +Charlie +Ernesto +Gerald +Ignacio +Lawrence +Ricardo +Ted +Bennie +Jesse +Johnnie +Leroy +Norman +Vernon +Arturo +Everett +Felix +Gilberto +Leonard +Martin +Wesley +Arnold +Cecil +Douglas +Guillermo +Jim +Karl +Lester +Lupe +Roger +Andrew +Arnulfo +Marvin +Rudolph +Calvin +Delbert +Dick +Elmer +Guadalupe +Gustavo +Guy +Herman +Lorenzo +Milton +Philip +Phillip +Abel +Alberto +Alejandro +Andres +Gabriel +Gregorio +Jay +Keith +Lloyd +Mario +Virgil +Wayne +Alexander +Alvin +Bert +Clifford +Clinton +Clyde +Eduardo +Edwin +Felipe +Franklin +Gordon +Jorge +Julian +Julio +Kay +Lewis +Lynn +Marcelino +Max +Oliver +Refugio +Steve +Tomas +Vicente +Vincent +Wilbur +Willard +Adolfo +Allen +Benny +Bernard +Billie +Charley +Curtis +Dennis +Dolores +Frederick +Harlan +Hubert +Hugh +Jessie +Joaquin +Leon +Macario +Mariano +Marion +Mark +Morris +Nicolas +Phil +Rene +Reynaldo +Santos +Robert +John +James +Frank +Joe +Manuel +Richard +William +Jose +Charles +George +Donald +David +Edward +Jesus +Thomas +Albert +Jack +Henry +Raymond +Kenneth +Ramon +Ernest +Paul +Gilbert +Joseph +Juan +Francisco +Arthur +Roy +Billy +Eddie +Oscar +Hector +Bobby +Fred +Harry +Jim +Johnny +Carl +Carlos +Jerry +Tommy +Ruben +Bill +Louis +Walter +Armando +Daniel +Harold +Jimmy +Pedro +Don +Miguel +Ralph +Ray +Tony +Antonio +Pete +Alfonso +Eugene +Howard +Jimmie +Leonard +Raul +Earl +Bob +Larry +Mike +Angel +Ernesto +Felix +Roberto +Alberto +Ben +Fernando +Gerald +Herbert +Lee +Peter +Rudy +Sam +Theodore +Tom +Alfred +Alfredo +Arturo +Charlie +Lawrence +Luis +Norman +Alejandro +Alex +Clarence +Francis +Johnnie +Kee +Marvin +Ricardo +Rodolfo +Roger +Stanley +Floyd +Gene +Leo +Samuel +Victor +Wayne +Allen +Cecil +Dale +Enrique +Franklin +Ignacio +Leroy +Lloyd +Martin +Rafael +Reynaldo +Andrew +Danny +Douglas +Guadalupe +Jesse +Michael +Arnold +Benjamin +Bernardo +Dan +Edwin +Elmer +Gregorio +Guillermo +Lupe +Max +Phillip +Salvador +Vernon +Vicente +Anthony +Billie +Clyde +Dean +Dick +Domingo +Eduardo +Gilberto +Harvey +Keith +Leon +Philip +Ronald +Sammy +Santiago +Warren +Adolfo +Aurelio +Bruce +Claude +Curtis +Glen +Herman +Lorenzo +Melvin +Roland +Rudolph +Santos +Virgil +Wallace +Alvaro +Alvin +Chee +Clifford +Cruz +Dennis +Duane +Emilio +Gabriel +Glenn +Homer +Julian +Julio +Leland +Leopoldo +Lewis +Marshall +Ned +Nelson +Pablo +Patrick +Refugio +Trinidad +Willie +Robert +John +James +Frank +William +Joe +Richard +Manuel +George +Charles +Jose +David +Donald +Henry +Albert +Jack +Edward +Raymond +Arthur +Paul +Antonio +Thomas +Gilbert +Jesus +Joseph +Roy +Juan +Ramon +Tom +Larry +Billy +Alfred +Bill +Daniel +Eugene +Harry +Johnny +Fred +Ernest +Louis +Tony +Kenneth +Raul +Ray +Jerry +Lawrence +Leonard +Ralph +Don +Kee +Ruben +Walter +Ben +Bob +Eddie +Harold +Armando +Francisco +Hector +Lee +Carl +Carlos +Leo +Roberto +Stanley +Wayne +Alex +Tommy +Dale +Jim +Miguel +Pedro +Alfredo +Angel +Benjamin +Jimmie +Marvin +Mike +Norman +Rudy +Samuel +Theodore +Arturo +Dan +Fernando +Gerald +Howard +Arnold +Clyde +Gene +Luis +Oscar +Pete +Peter +Ronald +Salvador +Benny +Bobby +Danny +Francis +Gary +Gordon +Herbert +Jesse +Keith +Leroy +Lloyd +Martin +Rafael +Sam +Victor +Alberto +Charlie +Clarence +Dick +Edwin +Ernesto +Guy +Ignacio +Phillip +Vernon +Alfonso +Alvin +Dean +Earl +Felix +Glenn +Roger +Rudolph +Allen +Andrew +Buddy +Emilio +Enrique +Herman +Jimmy +Lester +Lupe +Mario +Russell +Willie +Augustine +Aurelio +Bennie +Harvey +Jackie +Leon +Louie +Michael +Ned +Pablo +Reynaldo +Rodolfo +Warren +Willard +Bernard +Bruce +Charley +Clifford +Dave +Dennis +Edgar +Elmer +Felipe +Floyd +Glen +Johnnie +Johnson +Justin +Lewis +Lorenzo +Max +Milton +Nelson +Philip +Sidney +Tomas +Vicente +Abelardo +Alonzo +Bert +Carroll +Chester +Elias +Everett +Franklin +Ismael +Jessie +Leonardo +Leslie +Marion +Melvin +Ricardo +Rosendo +Teddy +Robert +John +James +Frank +Joe +William +Richard +Charles +Manuel +David +George +Jack +Henry +Jose +Donald +Jesus +Thomas +Albert +Edward +Kenneth +Tony +Raymond +Antonio +Ernest +Gilbert +Louis +Arthur +Jerry +Ralph +Alfred +Daniel +Fred +Carlos +Paul +Francisco +Joseph +Kee +Jimmy +Billy +Don +Gerald +Ramon +Juan +Oscar +Larry +Tom +Bill +Harold +Harry +Hector +Jimmie +Melvin +Roy +Bobby +Ronald +Samuel +Armando +Howard +Eddie +Eugene +Franklin +Raul +Ray +Walter +Clarence +Jim +Mike +Pete +Ben +Floyd +Johnny +Lawrence +Lee +Norman +Earl +Gene +Ruben +Rudy +Angel +Arnold +Luis +Alex +Bob +Herbert +Peter +Tommy +Victor +Felix +Miguel +Roberto +Willie +Benjamin +Charlie +Dan +Rodolfo +Rudolph +Stanley +Wayne +Anthony +Arturo +Bruce +Fernando +Gabriel +Marvin +Pedro +Phillip +Salvador +Steve +Alfredo +Andrew +Carl +Clifford +Danny +Dick +Ernesto +Guy +Herman +Jay +Jesse +Martin +Teddy +Theodore +Vernon +Wilson +Alberto +Alfonso +Allen +Alvin +Dale +Glenn +Gordon +Guillermo +Leo +Leon +Leonard +Lewis +Michael +Philip +Rafael +Reynaldo +Roger +Willis +Adolfo +Andy +Arnulfo +Cecil +Charley +Clyde +Douglas +Elias +Felipe +Francis +Gary +Glen +Ignacio +Junior +Leroy +Lester +Max +Sam +Tomas +Wallace +Alejandro +Andres +Archie +Bahe +Benny +Bert +Billie +Boyd +Claude +Elmer +Enrique +Freddie +Gilberto +Gregorio +Harvey +Hugh +Ivan +Jackie +Julio +Karl +Leslie +Lloyd +Lorenzo +Louie +Lupe +Luther +Oliver +Pat +Ted +Wesley +Ysidro +Robert +John +James +William +Richard +Frank +Joe +Manuel +Charles +David +Donald +George +Henry +Jose +Albert +Raymond +Ernest +Edward +Jack +Jesus +Paul +Billy +Thomas +Tony +Arthur +Roy +Johnny +Ramon +Louis +Ralph +Bill +Fred +Kenneth +Gilbert +Harry +Ruben +Alfred +Jerry +Eddie +Walter +Harold +Marvin +Daniel +Mike +Ray +Alex +Antonio +Carlos +Jimmy +Larry +Ronald +Bobby +Jimmie +Juan +Francisco +Leo +Pete +Joseph +Oscar +Victor +Wayne +Don +Leonard +Carl +Gary +Gerald +Jim +Kee +Luis +Melvin +Norman +Armando +Eugene +Lawrence +Raul +Rudy +Stanley +Clarence +Fernando +Hector +Pedro +Peter +Tom +Franklin +Philip +Tommy +Alfonso +Earl +Herman +Lee +Martin +Rodolfo +Benny +Bob +Charlie +Dick +Leroy +Patrick +Roger +Alberto +Angel +Benjamin +Clifford +Dale +Felix +Guillermo +Herbert +Howard +Keith +Samuel +Alvin +Arnold +Ben +Bennie +Cecil +Clyde +Delbert +Duane +Jesse +Phillip +Rafael +Salvador +Vernon +Willie +Alfredo +Cruz +Danny +Douglas +Edwin +Ernesto +Floyd +Gordon +Jay +Lloyd +Miguel +Roberto +Ted +Terry +Theodore +Adolfo +Arnulfo +Arturo +Elmer +Everett +Glen +Glenn +Julian +Lewis +Refugio +Tomas +Wallace +Allen +Andres +Dan +Dennis +Enrique +Freddie +Gene +Harvey +Ignacio +Johnnie +Leslie +Lester +Luther +Michael +Nelson +Sam +Allan +Andrew +Andy +Archie +Claude +Dean +Eduardo +Gonzalo +Guadalupe +Guy +Ivan +Jackie +Leland +Loren +Mark +Pablo +Rene +Ricardo +Ronnie +Trinidad +Vincent +Robert +John +Richard +James +William +Frank +Joe +Charles +Donald +David +Manuel +George +Henry +Jose +Edward +Thomas +Albert +Jack +Paul +Bill +Gilbert +Larry +Fred +Jesus +Raymond +Harold +Ernest +Johnny +Arthur +Jerry +Ray +Kenneth +Ralph +Tony +Antonio +Jimmy +Don +Leonard +Billy +Joseph +Raul +Ruben +Walter +Kee +Harry +Jimmie +Juan +Ramon +Bob +Ronald +Francisco +Hector +Louis +Mike +Pete +Roy +Rudy +Victor +Alex +Tom +Alfredo +Carlos +Earl +Gary +Leo +Roger +Wayne +Carl +Eddie +Eugene +Lawrence +Luis +Pedro +Alfred +Danny +Bobby +Gene +Melvin +Allen +Charlie +Daniel +Edwin +Jim +Leroy +Tommy +Andrew +Dan +Howard +Lee +Roberto +Ted +Vernon +Angel +Benny +Fernando +Leon +Phillip +Armando +Ben +Benjamin +Clarence +Floyd +Francis +Franklin +Martin +Norman +Peter +Stanley +Arnold +Clifford +Dale +Gordon +Jay +Jesse +Lloyd +Oscar +Rodolfo +Adolfo +Alberto +Gabriel +Guy +Johnnie +Lewis +Louie +Marvin +Willie +Alfonso +Arturo +Dick +Douglas +Ernesto +Glenn +Herbert +Herman +Jackie +Leslie +Marion +Patrick +Philip +Terry +Anthony +Eduardo +Gerald +Ignacio +Karl +Keith +Miguel +Rex +Ronnie +Sam +Samuel +Virgil +Wallace +Wilbur +Alejandro +Billie +Chester +Curtis +Felix +Frederick +Gonzalo +Guadalupe +Harvey +Marshall +Mary +Max +Michael +Nelson +Pat +Salvador +Wilfred +Abelardo +Abraham +Arnulfo +Boyd +Bruce +Cecil +Darrell +Dennis +Emilio +Frankie +Gilberto +Hubert +Hugh +Jacob +Joaquin +Julian +Lester +Lupe +Mario +Mark +Ned +Neil +Pablo +Rafael +Rene +Rudolph +Steve +Steven +Theodore +Vicente +Vincent +Wesley +Robert +John +Richard +James +William +Frank +Joe +Manuel +Charles +David +George +Henry +Raymond +Donald +Jerry +Jose +Paul +Edward +Thomas +Gilbert +Albert +Larry +Ronald +Bill +Carlos +Johnny +Ernest +Fred +Antonio +Ralph +Roy +Arthur +Kenneth +Jesus +Tony +Bob +Daniel +Ramon +Billy +Don +Eddie +Jack +Harold +Harry +Walter +Gerald +Joseph +Ray +Alfred +Jimmy +Kee +Carl +Francisco +Howard +Jim +Ruben +Tom +Juan +Eugene +Lawrence +Jimmie +Michael +Oscar +Rudy +Victor +Alex +Alfonso +Bobby +Danny +Gary +Hector +Pete +Tommy +Arnold +Roberto +Angel +Armando +Leo +Wayne +Earl +Johnnie +Norman +Stanley +Bennie +Cecil +Charlie +Freddie +Jesse +Louis +Melvin +Miguel +Mike +Raul +Ted +Ben +Gene +Herman +Phillip +Clifford +Herbert +Lee +Leroy +Peter +Philip +Vernon +Anthony +Chester +Dan +Dennis +Ernesto +Felix +Ignacio +Julian +Keith +Leon +Leonard +Lewis +Andrew +Benjamin +Benny +Calvin +Clarence +Dale +Elmer +Fernando +Floyd +Franklin +Lloyd +Luis +Sam +Terry +Clyde +Curtis +Edwin +Francis +Glenn +Guillermo +Harvey +Pedro +Rafael +Rodolfo +Roger +Virgil +Alberto +Andres +Boyd +Bruce +Dean +Dick +Karl +Martin +Marvin +Max +Patrick +Reynaldo +Ronnie +Russell +Salvador +Steven +Alfredo +Charley +Jackie +Jessie +Lorenzo +Ned +Rex +Willie +Abelardo +Alan +Allen +Alvin +Barry +Billie +Buddy +Conrad +Delbert +Donnie +Dudley +Edgar +Elias +Everett +Freddy +Gabriel +Guy +Jess +Lonnie +Louie +Maurice +Perry +Ricardo +Rudolph +Sammy +Samuel +Steve +Theodore +Tomas +Wesley +Robert +John +James +Joe +William +Richard +Frank +Charles +David +George +Manuel +Raymond +Donald +Edward +Thomas +Larry +Henry +Jerry +Paul +Jose +Billy +Fred +Ronald +Ernest +Jesus +Albert +Bill +Kenneth +Johnny +Roy +Gilbert +Jack +Arthur +Jimmy +Bobby +Carl +Don +Ralph +Tony +Mike +Ramon +Bob +Harold +Alfred +Daniel +Joseph +Ray +Gary +Juan +Jim +Tommy +Harry +Lee +Louis +Eddie +Tom +Wayne +Armando +Pete +Gerald +Kee +Lawrence +Norman +Walter +Carlos +Danny +Jimmie +Ruben +Benny +Leo +Lloyd +Luis +Peter +Rudy +Antonio +Eugene +Leonard +Melvin +Oscar +Raul +Pedro +Willie +Angel +Charlie +Clarence +Fernando +Gene +Johnnie +Michael +Ronnie +Theodore +Dick +Francisco +Howard +Sam +Steve +Vernon +Alex +Dale +Dennis +Floyd +Franklin +Herman +Marvin +Roberto +Stanley +Ben +Bruce +Delbert +Ernie +Felix +Freddie +Salvador +Samuel +Terry +Wesley +Willard +Alfredo +Andrew +Arnold +Benjamin +Clyde +Earl +Enrique +Herbert +Keith +Leroy +Miguel +Victor +Virgil +Arturo +Bennie +Clifford +Jesse +Leslie +Philip +Roger +Bernard +Dan +Edwin +Gordon +Guillermo +Harvey +Hugh +Leon +Lewis +Louie +Martin +Rafael +Rodolfo +Wilfred +Alberto +Alfonso +Calvin +Douglas +Frankie +Glen +Hector +Lorenzo +Phillip +Ricardo +Wilson +Allen +Anthony +Claude +Dean +Ernesto +Glenn +Guy +Homer +Ivan +Jessie +Orville +Rudolph +Russell +Wallace +Wendell +Billie +Byron +Cecil +Charley +Curtis +Donnie +Duane +Elias +Francis +Gabriel +Hubert +Jackie +Jon +Luther +Mariano +Nelson +Nick +Steven +Robert +John +James +Richard +William +Frank +Joe +David +Charles +Manuel +Donald +George +Jerry +Henry +Edward +Paul +Larry +Raymond +Ronald +Kenneth +Joseph +Thomas +Jose +Arthur +Albert +Billy +Fred +Gilbert +Tony +Bill +Bobby +Jimmy +Eddie +Jack +Johnny +Harry +Ralph +Gary +Roy +Carlos +Walter +Carl +Daniel +Don +Juan +Norman +Ramon +Jim +Ernest +Lee +Michael +Ray +Rudy +Gerald +Harold +Jesus +Jimmie +Floyd +Leo +Raul +Antonio +Kee +Eugene +Luis +Mike +Roberto +Tommy +Alfred +Douglas +Leroy +Louis +Oscar +Alex +Benny +Jesse +Lawrence +Ruben +Armando +Bob +Clarence +Tom +Wayne +Danny +Glenn +Pete +Willie +Leonard +Peter +Roger +Victor +Arnold +Ben +Earl +Hector +Angel +Benjamin +Dale +Glen +Dennis +Freddie +Gordon +Harvey +Marvin +Melvin +Philip +Phillip +Stanley +Alfonso +Bruce +Howard +Keith +Lloyd +Marion +Milton +Salvador +Sam +Samuel +Vernon +Clyde +Edgar +Edwin +Francisco +Alfredo +Bernard +Delbert +Dick +Ernesto +Fernando +Herbert +Herman +Lewis +Patrick +Ronnie +Wallace +Andy +Augustine +Bennie +Dan +Gene +Guillermo +Max +Nelson +Pat +Ricardo +Ted +Eduardo +Ernie +Franklin +Jackie +Terry +Wesley +Allen +Andrew +Aurelio +Charlie +Clifford +Felipe +Felix +Frankie +Freddy +Frederick +Gabriel +Homer +Jon +Leslie +Miguel +Reynaldo +Rodolfo +Steve +Adolfo +Alan +Anthony +Arnulfo +Barry +Clinton +Dean +Gale +Johnnie +Julian +Leon +Lorenzo +Pedro +Rafael +Rene +Rex +Stephen +Steven +Theodore +Tomas +Virgil +Alvin +Bert +Calvin +Cecil +Charley +Chris +Claude +Darrell +Dave +Ed +Edmund +Enrique +Everett +Joel +Justin +Lester +Lonnie +Louie +Marshall +Neil +Orlando +Phil +Randall +Raymundo +Reuben +Rito +Rodney +Russell +Vicente +Vincent +Wilfred +Robert +James +John +Richard +William +Frank +Joe +Charles +David +George +Manuel +Jerry +Donald +Larry +Raymond +Paul +Ronald +Edward +Kenneth +Henry +Thomas +Johnny +Arthur +Jack +Joseph +Albert +Bill +Ernest +Jose +Tony +Fred +Jim +Daniel +Eddie +Alfred +Jesus +Carlos +Gerald +Michael +Pete +Gary +Lawrence +Jimmy +Peter +Ralph +Ray +Gilbert +Harold +Bobby +Billy +Antonio +Mike +Ruben +Walter +Bob +Harry +Roy +Victor +Dennis +Hector +Kee +Armando +Carl +Clarence +Don +Earl +Jimmie +Leo +Tommy +Arnold +Danny +Juan +Norman +Ramon +Raul +Roger +Wayne +Anthony +Jesse +Lee +Louis +Rudy +Dale +Eugene +Gene +Lloyd +Phillip +Stanley +Dan +Douglas +Howard +Leonard +Marvin +Melvin +Alex +Benny +Charlie +Edwin +Oscar +Patrick +Samuel +Andrew +Francisco +Harvey +Leroy +Vernon +Alfonso +Ben +Cecil +Floyd +Martin +Roberto +Salvador +Sam +Tom +Andy +Glen +Herbert +Leon +Lewis +Miguel +Russell +Warren +Clyde +Ernesto +Gordon +Leslie +Lester +Ronnie +Theodore +Allen +Alvin +Angel +Clifford +Felipe +Fernando +Glenn +Lorenzo +Pedro +Philip +Steve +Carroll +Chester +Darrell +Francis +Herman +Louie +Nelson +Nick +Rodolfo +Stephen +Barry +Benjamin +Bennie +Bruce +Dean +Dick +Everett +Felix +Freddy +Gregory +Guy +Ignacio +Jackie +Jay +Karl +Lupe +Ricardo +Rudolph +Ted +Teddy +Terry +Vincent +Virgil +Wilson +Alfredo +Arturo +Bert +Calvin +Conrad +Dave +Delbert +Denny +Enrique +Freddie +Johnnie +Keith +Loren +Luis +Lynn +Mario +Max +Orville +Pablo +Reuben +Steven +Wendell +Wilford +Wilfred +Willard +Willie +Augustine +Clayton +Curtis +Franklin +Homer +Humberto +Joel +Jon +Julio +Leland +Marshall +Rafael +Reynaldo +Tomas +Robert +John +James +Richard +Charles +William +Frank +David +Joe +George +Jerry +Thomas +Ronald +Donald +Manuel +Raymond +Edward +Larry +Paul +Ernest +Johnny +Henry +Kenneth +Arthur +Michael +Tony +Albert +Billy +Jimmy +Jose +Daniel +Carlos +Jack +Roy +Rudy +Eddie +Ralph +Joseph +Gilbert +Bill +Bobby +Gary +Danny +Fred +Ruben +Alfred +Don +Walter +Jesus +Juan +Gerald +Ramon +Alex +Carl +Louis +Antonio +Jim +Peter +Martin +Ray +Roger +Francisco +Oscar +Jesse +Patrick +Tom +Tommy +Anthony +Dan +Fernando +Harold +Dennis +Lee +Marvin +Pete +Arnold +Dale +Earl +Jimmie +Stanley +Armando +Kee +Norman +Phillip +Raul +Ronnie +Clyde +Victor +Andrew +Bob +Eugene +Gene +Leonard +Miguel +Terry +Bennie +Benny +Clarence +Harry +Johnnie +Pedro +Sam +Wayne +Charlie +Clifford +Howard +Steve +Angel +Glenn +Hector +Herbert +Lawrence +Leo +Lloyd +Luis +Stephen +Andy +Ben +Calvin +Gabriel +Herman +Leroy +Lonnie +Lorenzo +Mike +Ricardo +Samuel +Steven +Ted +Allen +Alvin +Arturo +Barry +Benjamin +Delbert +Glen +Guy +Jon +Melvin +Rene +Roberto +Rudolph +Willie +Alberto +Douglas +Ernesto +Floyd +Francis +Frankie +Freddie +Jay +Julio +Leslie +Lynn +Reynaldo +Timothy +Vernon +Wallace +Warren +Alexander +Alfonso +Augustine +Bruce +Chester +Denny +Ivan +Leon +Lester +Lewis +Vincent +Wilfred +Wilson +Alfredo +Andres +Billie +Darrell +Dean +Eduardo +Franklin +Guillermo +Humberto +Jacob +Jessie +Joel +Jorge +Leland +Mario +Mark +Ned +Russell +Salvador +Theodore +Virgil +Bernard +Carroll +Cecil +Dick +Edwin +Elbert +Ellis +Elmer +Freddy +Harvey +Jackie +Julian +Louie +Marion +Mickey +Nathan +Nick +Pablo +Rafael +Rodolfo +Roland +Santiago +Vicente +Robert +John +James +Richard +William +Charles +Joe +David +Frank +Thomas +George +Edward +Larry +Ronald +Donald +Jerry +Gary +Manuel +Raymond +Kenneth +Michael +Henry +Gilbert +Paul +Albert +Billy +Jose +Ernest +Jack +Jimmy +Roy +Arthur +Don +Ralph +Daniel +Tony +Dennis +Eddie +Johnny +Bill +Bobby +Ray +Rudy +Alfred +Joseph +Ramon +Tommy +Jesus +Juan +Harry +Mike +Walter +Alex +Fred +Jim +Norman +Danny +Louis +Pete +Roger +Samuel +Tom +Wayne +Eugene +Lee +Carlos +Earl +Jimmie +Melvin +Ruben +Bob +Harold +Leonard +Antonio +Carl +Gerald +Jesse +Victor +Anthony +Kee +Peter +Leo +Luis +Raul +Armando +Douglas +Francisco +Howard +Philip +Ronnie +Terry +Vernon +Arnold +Clifford +Willie +Ben +Floyd +Herbert +Jackie +Lawrence +Lorenzo +Phillip +Stanley +Angel +Benjamin +Benny +Sam +Ernesto +Gene +Hector +Lloyd +Marvin +Oscar +Roberto +Stephen +Andrew +Bruce +Dale +Franklin +Leroy +Lewis +Miguel +Virgil +Allen +Alvin +Bennie +Clarence +Freddie +Ignacio +Julian +Louie +Patrick +Pedro +Ricardo +Salvador +Steve +Calvin +Cecil +Dan +Leslie +Mark +Martin +Nelson +Santiago +Bernard +Boyd +Chester +Everett +Fernando +Florencio +Gabriel +Herman +Hugh +Karl +Rex +Wesley +Clifton +Clyde +Eric +Frederick +Glenn +Gordon +Guadalupe +Guillermo +Leon +Lynn +Rudolph +Russell +Steven +Ted +Winston +Alan +Alberto +Alexander +Allan +Brian +Charley +Donnie +Edwin +Glen +Harvey +Joel +Johnnie +Lanny +Loren +Orville +Pat +Rene +Rodney +Rodolfo +Warren +Alfredo +Andy +Billie +Curtis +Duane +Frankie +Garry +Grant +Guy +Jess +Keith +Lionel +Mario +Myron +Ned +Ross +Vicente +Wilbur +Wilson +Robert +John +James +William +Richard +David +Frank +Charles +Joe +Jerry +Thomas +Manuel +Ronald +George +Gary +Michael +Raymond +Larry +Kenneth +Donald +Paul +Edward +Arthur +Henry +Jose +Albert +Daniel +Ernest +Joseph +Roy +Johnny +Gilbert +Tony +Douglas +Dennis +Billy +Bill +Eddie +Jack +Alfred +Fred +Jesus +Jimmy +Ray +Mike +Ralph +Gerald +Harold +Ramon +Bobby +Carl +Carlos +Harry +Lawrence +Louis +Roger +Marvin +Ronnie +Tommy +Jim +Lee +Phillip +Ruben +Walter +Alex +Danny +Peter +Victor +Antonio +Don +Armando +Rudy +Stanley +Tom +Arnold +Eugene +Juan +Steven +Pete +Wayne +Bob +Howard +Jimmie +Leonard +Lester +Melvin +Stephen +Earl +Gene +Kee +Leroy +Dale +Franklin +Jesse +Benjamin +Clifford +Floyd +Martin +Samuel +Steve +Angel +Clarence +Clyde +Dan +Freddie +Oscar +Patrick +Raul +Charlie +Felix +Herman +Johnnie +Leo +Leslie +Luis +Norman +Roberto +Sam +Terry +Theodore +Timothy +Alan +Anthony +Bruce +Glenn +Herbert +Vernon +Bennie +Fernando +Francis +Francisco +Harvey +Hector +Leon +Willie +Allen +Andrew +Milton +Pedro +Philip +Ricardo +Warren +Ben +Benny +Gordon +Keith +Roland +Ted +Willard +Wilson +Calvin +Darrell +Dave +Enrique +Ernesto +Louie +Miguel +Russell +Wallace +Wesley +Alberto +Alexander +Alfonso +Alfredo +Alvin +Andres +Cecil +Eric +Ernie +Freddy +Humberto +Jessie +Jon +Lonnie +Lyle +Lynn +Mario +Ned +Rodolfo +Wendell +Andy +Arturo +Bert +Carroll +Chester +Claude +Curtis +Delbert +Dick +Donnie +Elias +Elmer +Felipe +Garry +Gilberto +Ignacio +Jay +Joaquin +Julian +Karl +Kent +Lloyd +Lowell +Mark +Max +Micheal +Morris +Nelson +Pablo +Pat +Rodney +Salvador +Vincent +Abel +Bernard +Clayton +Conrad +Earnest +Edgar +Edwin +Eldon +Frederick +Glen +Hubert +Hugh +Jeffrey +Julio +Laurence +Lorenzo +Manny +Marion +Maurice +Nick +Randolph +Ron +Rudolph +Sammy +Tomas +Virgil +Robert +John +James +Richard +William +David +Frank +Joe +Charles +Larry +Ronald +Thomas +Jerry +George +Michael +Manuel +Donald +Gary +Kenneth +Raymond +Edward +Henry +Paul +Ernest +Johnny +Daniel +Roy +Jose +Dennis +Eddie +Jack +Arthur +Fred +Tony +Ralph +Jimmy +Alfred +Mike +Tommy +Ronnie +Bill +Douglas +Danny +Gerald +Gilbert +Albert +Carl +Joseph +Harry +Walter +Bobby +Roger +Leonard +Stanley +Victor +Carlos +Lawrence +Ray +Louis +Peter +Ruben +Juan +Tom +Harold +Jimmie +Wayne +Billy +Melvin +Stephen +Don +Ramon +Jesus +Jim +Lee +Raul +Rudy +Arnold +Freddie +Gene +Patrick +Steven +Francisco +Howard +Martin +Norman +Phillip +Terry +Allen +Anthony +Ben +Dan +Jesse +Pete +Philip +Antonio +Eugene +Willie +Andrew +Earl +Kee +Keith +Oscar +Samuel +Alex +Hector +Leo +Leon +Leroy +Lloyd +Luis +Armando +Barry +Benny +Felix +Floyd +Frankie +Glenn +Marvin +Alfonso +Benjamin +Bruce +Clarence +Dale +Dick +Gabriel +Gordon +Nelson +Charlie +Clyde +Harvey +Lester +Ted +Timothy +Alan +Arturo +Curtis +Fernando +Leslie +Roberto +Angel +Bob +Calvin +Cecil +Chester +Herbert +Ignacio +Jay +Miguel +Milton +Russell +Sam +Wallace +Wesley +Alvin +Clifford +Franklin +Herman +Pedro +Randall +Roland +Steve +Warren +Alfredo +Craig +Edwin +Enrique +Lynn +Mark +Max +Theodore +Wilfred +Bennie +Darrell +Dave +Dwight +Edmund +Everett +Gregory +Guy +Jackie +Jorge +Julian +Reynaldo +Ricardo +Ross +Vincent +Alton +Bernard +Brian +Charley +Clinton +Cruz +Ernesto +Ernie +Freddy +Frederick +Hugh +Jon +Leland +Lorenzo +Mario +Rafael +Rodolfo +Salvador +Sammy +Scott +Simon +Troy +Abel +Alexander +Allan +Clayton +Conrad +Donnie +Eldon +Elmer +Francis +Glen +Guadalupe +Guillermo +Jess +Jessie +Johnnie +Julius +Marshall +Nick +Rodney +Tomas +Virgil +Wilbert +Aubrey +Augustine +Buddy +Claude +Delbert +Edgar +Emilio +Garry +Harley +Ira +Jeff +Jerald +Julio +Lonnie +Matthew +Orville +Otto +Pat +Perry +Refugio +Rene +Rex +Rufus +Silas +Stewart +Robert +James +John +Richard +David +William +Frank +Joe +George +Charles +Michael +Ronald +Manuel +Larry +Jerry +Donald +Gary +Edward +Raymond +Thomas +Paul +Henry +Kenneth +Albert +Daniel +Roy +Johnny +Joseph +Dennis +Jose +Arthur +Tony +Ernest +Ralph +Jack +Billy +Jimmy +Lawrence +Wayne +Gilbert +Jim +Fred +Roger +Mike +Danny +Tommy +Victor +Eddie +Carlos +Harold +Jesus +Rudy +Carl +Louis +Alfred +Bobby +Peter +Tom +Walter +Harry +Bill +Gerald +Ray +Anthony +Don +Samuel +Stephen +Steven +Douglas +Kee +Phillip +Leonard +Patrick +Ramon +Melvin +Ronnie +Ruben +Jimmie +Leo +Norman +Steve +Hector +Eugene +Francisco +Juan +Oscar +Lee +Willie +Armando +Martin +Marvin +Russell +Timothy +Bruce +Dan +Lloyd +Philip +Terry +Alan +Alex +Angel +Benny +Bob +Gene +Howard +Pete +Stanley +Ted +Antonio +Earl +Felix +Johnnie +Lewis +Luis +Alvin +Arnold +Dale +Glenn +Gordon +Jesse +Raul +Vernon +Barry +Fernando +Herbert +Leslie +Milton +Theodore +Andrew +Arturo +Franklin +Freddie +Jon +Mark +Salvador +Sammy +Benjamin +Bennie +Calvin +Charlie +Ernesto +Francis +Leroy +Craig +Floyd +Harvey +Karl +Max +Pat +Sam +Alexander +Brian +Cecil +Clifford +Dick +Frederick +Guadalupe +Ignacio +Miguel +Nelson +Pedro +Wilson +Allen +Ben +Bernard +Chris +Dean +Duane +Eduardo +Everett +Frankie +Jackie +Keith +Louie +Rafael +Rick +Chester +Clyde +Dwight +Edwin +Fredrick +Hugh +Jeffrey +Jerald +Kent +Leon +Mario +Neil +Nicolas +Ricardo +Roberto +Ross +Tim +Wallace +Augustine +Charley +Darrell +Dave +Domingo +Elmer +Enrique +Ernie +Freddy +Herman +Joel +Julius +Kenny +Lester +Lorenzo +Lupe +Lynn +Marshall +Micheal +Ned +Rodolfo +Wilfred +Alejandro +Allan +Alton +Amos +Andy +Archie +Bert +Clarence +Claude +Felipe +Jay +Julio +Ken +Leland +Loren +Maurice +Nicholas +Nick +Perry +Randall +Rene +Reynaldo +Rodney +Vincent +Virgil +Warren +Wendell +Wesley +Wilmer +Robert +John +Richard +James +William +David +Frank +Joe +Charles +Larry +Michael +George +Gary +Ronald +Thomas +Manuel +Paul +Donald +Kenneth +Jerry +Daniel +Joseph +Henry +Raymond +Danny +Edward +Dennis +Arthur +Johnny +Jose +Jimmy +Ralph +Roy +Albert +Ernest +Mike +Tony +Alfred +Jesus +Billy +Wayne +Fred +Gilbert +Harold +Ramon +Carlos +Harry +Jack +Eddie +Gerald +Bill +Bruce +Victor +Lawrence +Leonard +Terry +Douglas +Peter +Roger +Tom +Louis +Ray +Steven +Luis +Steve +Tommy +Don +Patrick +Stephen +Eugene +Leroy +Rudy +Walter +Ronnie +Ruben +Benny +Dale +Jim +Martin +Oscar +Raul +Bobby +Jesse +Pete +Alex +Angel +Jimmie +Lee +Stanley +Timothy +Bob +Charlie +Jay +Norman +Allen +Antonio +Carl +Hector +Herbert +Melvin +Samuel +Armando +Francisco +Gene +Leslie +Lewis +Phillip +Alan +Benjamin +Ernesto +Ernie +Fernando +Juan +Anthony +Clifford +Dan +Curtis +Francis +Freddie +Roberto +Arnold +Glenn +Howard +Kee +Nelson +Andrew +Bennie +Chester +Dwight +Earl +Edwin +Gregory +Pedro +Rodney +Wilson +Alvin +Andy +Calvin +Cecil +Clarence +Claude +Jorge +Leo +Mario +Mark +Max +Miguel +Philip +Russell +Arturo +Barry +Dick +Felix +Jon +Keith +Randy +Rudolph +Salvador +Sammy +Vernon +Floyd +Harvey +Marvin +Rene +Ted +Teddy +Wallace +Alfredo +Bernard +Franklin +Frederick +Gordon +Ignacio +Jackie +Johnnie +Leon +Ricardo +Roland +Vicente +Vincent +Virgil +Willie +Alejandro +Ben +Chris +Christopher +Elias +Grant +Irvin +Lloyd +Lonnie +Micheal +Neil +Sam +Scott +Trinidad +Troy +Alfonso +Allan +Charley +Clinton +Clyde +Cruz +Darrell +Eric +Gabriel +Guillermo +Lorenzo +Lynn +Marshall +Randall +Ricky +Theodore +Wendell +Alberto +Alexander +Barney +Brian +Dave +Delbert +Doyle +Edmund +Elmer +Enrique +Frankie +Freddy +Herman +Homer +Ismael +Jaime +Jerome +Jonathan +Karl +Ken +Lester +Loren +Louie +Lupe +Marcus +Milton +Nathan +Rafael +Rogelio +Ross +Warren +Robert +John +Richard +James +William +David +Michael +Joe +Charles +Frank +George +Thomas +Gary +Larry +Ronald +Paul +Donald +Jerry +Kenneth +Manuel +Edward +Raymond +Henry +Dennis +Joseph +Arthur +Daniel +Albert +Mike +Jack +Johnny +Tony +Jose +Terry +Gilbert +Danny +Jimmy +Ernest +Roger +Gerald +Walter +Fred +Jesus +Jim +Steven +Roy +Peter +Tommy +Eddie +Eugene +Lawrence +Patrick +Stephen +Ralph +Carlos +Leonard +Louis +Steve +Anthony +Don +Ronnie +Alfred +Ray +Tom +Wayne +Douglas +Francisco +Ruben +Timothy +Allen +Antonio +Armando +Bill +Bruce +Juan +Leroy +Harold +Phillip +Rudy +Stanley +Alex +Bobby +Pete +Philip +Ramon +Carl +Clifford +Gregory +Harry +Jesse +Bob +Mark +Raul +Russell +Billy +Earl +Jimmie +Norman +Oscar +Victor +Kee +Arturo +Benny +Dale +Herman +Leo +Luis +Alan +Floyd +Lloyd +Melvin +Samuel +Andrew +Herbert +Benjamin +Cecil +Clarence +Frankie +Jon +Martin +Rodney +Ben +Francis +Hector +Keith +Ted +Alfredo +Arnold +Fernando +Jay +Jeffrey +Lee +Rene +Vernon +Barry +Craig +Ernie +Freddie +Gene +Glenn +Max +Andy +Chester +Dan +Edwin +Jackie +Lewis +Marvin +Micheal +Pedro +Vincent +Willie +Andres +Christopher +Gordon +Howard +Rex +Wesley +Wilson +Alfonso +Angel +Chris +Clyde +Duane +Everett +Julian +Mario +Miguel +Roberto +Ross +Tim +Brian +Claude +Dave +Franklin +Gilberto +Harvey +Jess +Justin +Marcus +Nelson +Randall +Randy +Ricky +Salvador +Sam +Theodore +Virgil +Warren +Alexander +Bryan +Calvin +Charlie +Dean +Delbert +Ernesto +Freddy +Frederick +Glen +Greg +Guy +Ignacio +Jorge +Kent +Kerry +Lester +Lynn +Ron +Troy +Aaron +Alejandro +Allan +Archie +Darrell +Elmer +Enrique +Eric +Gabriel +Guadalupe +Ivan +Johnnie +Jonathan +Milton +Morris +Neil +Nick +Randolph +Reuben +Rick +Rickey +Robin +Roland +Rudolph +Willard +Alvin +Augustine +Bennie +Byron +Dick +Dwight +Edison +Edwardo +Felix +Forrest +Guillermo +Harrison +Jessie +Julio +Karl +Kelly +Ken +Leon +Leslie +Lonnie +Loren +Lorenzo +Louie +Lupe +Pablo +Rafael +Reynaldo +Ricardo +Rickie +Tomas +Wallace +Wilbur +Robert +John +Richard +David +James +William +Michael +Larry +Charles +Frank +Thomas +Gary +Kenneth +George +Joe +Ronald +Donald +Paul +Daniel +Edward +Jerry +Manuel +Raymond +Dennis +Danny +Joseph +Albert +Roy +Johnny +Henry +Mike +Jack +Steven +Jimmy +Jose +Stephen +Fred +Tony +Wayne +Jesus +Walter +Arthur +Ernest +Terry +Eddie +Lawrence +Ralph +Gilbert +Ruben +Phillip +Steve +Gerald +Patrick +Tommy +Harold +Ray +Douglas +Jim +Mark +Juan +Bruce +Jimmie +Louis +Victor +Anthony +Bill +Billy +Carl +Carlos +Tom +Roger +Alfred +Antonio +Don +Leonard +Melvin +Harry +Jesse +Ramon +Allen +Bobby +Raul +Rudy +Stanley +Dale +Francisco +Peter +Ronnie +Dan +Armando +Timothy +Russell +Gregory +Alan +Leroy +Alex +Howard +Marvin +Samuel +Eugene +Frederick +Leo +Pete +Philip +Bob +Kee +Lee +Martin +Oscar +Andrew +Benjamin +Benny +Gordon +Fernando +Glenn +Jay +Norman +Roberto +Clarence +Earl +Freddie +Keith +Lloyd +Luis +Pedro +Ted +Warren +Barry +Brian +Charlie +Herbert +Leslie +Arnold +Franklin +Hector +Lewis +Tim +Vernon +Willie +Clifford +Darrell +Floyd +Louie +Rodney +Felix +Gene +Herman +Ricky +Alfonso +Alfredo +Craig +Elmer +Enrique +Ernie +Francis +Greg +Jeffrey +Randall +Ricardo +Alvin +Angel +Byron +Calvin +Cecil +Dave +Dean +Edwin +Frankie +Ignacio +Miguel +Randy +Rene +Sam +Arturo +Ben +Bernard +Salvador +Theodore +Alejandro +Chris +Cruz +Homer +Joel +Johnnie +Jonathan +Leon +Lorenzo +Mario +Max +Nelson +Phil +Randolph +Reynaldo +Wesley +Andy +Archie +Bennie +Clyde +Dana +Doyle +Duane +Dwight +Eric +Ernesto +Gabriel +Harvey +Jorge +Lionel +Marshall +Rafael +Rickey +Rudolph +Virgil +Wallace +Christopher +Conrad +Curtis +Domingo +Fredrick +Glen +Guillermo +Guy +Kenny +Maurice +Micheal +Nicholas +Rodolfo +Ron +Teddy +Vincent +Alberto +Alexander +Allan +Austin +Boyd +Bradley +Charley +Clifton +Delbert +Freddy +Garry +Hugh +Jackie +Jeff +Jessie +Joaquin +Jon +Kent +Lance +Lincoln +Lonnie +Lyle +Milton +Neil +Perry +Rick +Ross +Scott +Sylvester +Terrence +Tommie +Willard +Brad +Carlton +Chester +Claude +Clayton +Darrel +Darryl +Edison +Eduardo +Eldon +Gilberto +Grant +Guadalupe +Humberto +Ira +Jackson +Jaime +Ken +Kim +Leland +Lester +Nathaniel +Nick +Owen +Pablo +Pat +Rex +Sammy +Sergio +Sidney +Wade +Wendell +Wilfred +Wilson +Robert +John +David +Richard +James +William +Michael +Thomas +Charles +Larry +Frank +Gary +George +Joe +Edward +Ronald +Kenneth +Daniel +Paul +Donald +Jerry +Manuel +Dennis +Steven +Raymond +Joseph +Danny +Henry +Stephen +Jose +Johnny +Roy +Arthur +Jack +Ralph +Steve +Albert +Terry +Tony +Mike +Mark +Bruce +Ernest +Ruben +Fred +Gilbert +Jimmy +Ray +Eddie +Gregory +Patrick +Lawrence +Louis +Phillip +Roger +Victor +Walter +Leonard +Harold +Tommy +Wayne +Alfred +Bobby +Gerald +Juan +Peter +Anthony +Douglas +Jim +Jesus +Ramon +Rudy +Bill +Tom +Carlos +Timothy +Don +Russell +Willie +Alan +Antonio +Harry +Samuel +Carl +Leo +Ronnie +Billy +Allen +Armando +Dale +Eugene +Francisco +Glenn +Lee +Andrew +Luis +Melvin +Norman +Roberto +Stanley +Alex +Jimmie +Raul +Herman +Jesse +Martin +Oscar +Earl +Fernando +Randy +Barry +Clarence +Dan +Hector +Herbert +Philip +Scott +Angel +Craig +Freddie +Howard +Lloyd +Miguel +Arnold +Jeffrey +Keith +Rodney +Benjamin +Frederick +Alvin +Francis +Gordon +Lonnie +Mario +Pete +Rene +Warren +Christopher +Clifford +Ignacio +Pedro +Benny +Bob +Curtis +Darrell +Eric +Jay +Lewis +Andy +Charlie +Clyde +Johnnie +Leroy +Micheal +Ricky +Wallace +Alfonso +Floyd +Glen +Jon +Leslie +Rodolfo +Roland +Rudolph +Sam +Theodore +Alexander +Ben +Bennie +Calvin +Dean +Delbert +Ernesto +Everett +Fredrick +Gene +Harvey +Joel +Julian +Kee +Lynn +Marc +Marvin +Nelson +Randall +Rick +Rickey +Vernon +Wesley +Alfredo +Brian +Edwin +Humberto +Jackie +Leon +Marshall +Max +Milton +Reynaldo +Sammy +Wilson +Abel +Augustine +Chester +Frankie +Guillermo +Jerome +Jonathan +Kent +Lorenzo +Pat +Ross +Ted +Vincent +Andres +Arturo +Chris +Conrad +Dave +Edgar +Elmer +Ernie +Franklin +Jeff +Jessie +Karl +Lester +Louie +Perry +Sidney +Tim +Alberto +Alejandro +Archie +Arnulfo +Brent +Byron +Chuck +Cruz +Felix +Guadalupe +Guy +Jess +Johnson +Julio +Justin +Ken +Lance +Loren +Phil +Salvador +Travis +Bernard +Bradley +Cecil +Clark +Clifton +Dwayne +Eduardo +Emory +Gabriel +Grant +Greg +Harrison +Homer +Irvin +Jaime +Kenny +Leland +Lupe +Marco +Monty +Randolph +Rex +Ricardo +Rupert +Sammie +Sergio +Troy +Virgil +John +Robert +James +David +Richard +William +Michael +Thomas +Larry +Charles +Ronald +Edward +Joe +Frank +George +Gary +Donald +Daniel +Kenneth +Paul +Steven +Raymond +Manuel +Dennis +Jerry +Joseph +Stephen +Albert +Henry +Jose +Ruben +Johnny +Danny +Ralph +Bruce +Arthur +Gilbert +Tony +Mike +Timothy +Anthony +Ernest +Jack +Roy +Terry +Mark +Jesus +Lawrence +Roger +Carlos +Jimmy +Phillip +Harold +Patrick +Francisco +Harry +Peter +Eddie +Gerald +Gregory +Louis +Wayne +Billy +Juan +Carl +Leonard +Rudy +Tommy +Armando +Douglas +Fred +Ray +Stanley +Alfred +Samuel +Dale +Eugene +Lee +Ramon +Victor +Bill +Howard +Walter +Antonio +Jesse +Raul +Steve +Martin +Luis +Alex +Andrew +Jim +Norman +Rodney +Russell +Arnold +Dan +Freddie +Pete +Tom +Don +Francis +Allen +Benny +Brian +Clifford +Gordon +Jimmie +Randy +Benjamin +Eric +Fernando +Gene +Barry +Leo +Miguel +Willie +Floyd +Glenn +Keith +Scott +Kee +Mario +Micheal +Nelson +Oscar +Ronnie +Bobby +Calvin +Chris +Delbert +Earl +Franklin +Frederick +Hector +Leon +Leroy +Marvin +Rodolfo +Cecil +Christopher +Craig +Edwin +Herman +Jay +Jeffrey +Leslie +Lonnie +Melvin +Ricardo +Alan +Alvin +Curtis +Philip +Roberto +Rudolph +Salvador +Sammy +Wesley +Clarence +Duane +Jackie +Randall +Ted +Alexander +Bennie +Charlie +Ernesto +Herbert +Kevin +Pedro +Rene +Ricky +Theodore +Alfredo +Arturo +Darrell +Frankie +Glen +Ignacio +Lester +Lewis +Randolph +Vincent +Virgil +Clyde +Felix +Lorenzo +Max +Roland +Wilson +Chester +Freddy +Guy +Harvey +Jon +Rafael +Rudolfo +Sam +Spencer +Troy +Alberto +Bert +Dean +Dwight +Greg +Guillermo +Hugh +Johnnie +Julian +Justin +Lloyd +Loren +Louie +Luther +Ross +Tim +Vernon +Wendell +Wilfred +Alejandro +Andy +Bob +Boyd +Eduardo +Fidel +Gabriel +Guadalupe +Jan +Jess +Jonathan +Kent +Kim +Marco +Marion +Milton +Neal +Reynaldo +Warren +Alfonso +Allan +Angel +Darryl +Doyle +Emilio +Ernie +Everett +Garry +Gilberto +Harrison +Johnson +Jorge +Lowell +Matthew +Mickey +Pat +Rick +Rickey +Teddy +Wade +Wallace +Abraham +Adolfo +Ben +Bernard +Buddy +Claude +Daryl +Edgar +Eldon +Elmer +Enrique +Felipe +Fredrick +Gus +Jaime +Jake +Jeffery +Joaquin +Joel +Karl +Lance +Leopoldo +Marc +Monte +Monty +Perry +Rodger +Sergio +Sylvester +Tomas +Vicente +Robert +John +David +James +Michael +Richard +William +Thomas +Charles +Larry +Gary +Frank +Daniel +George +Edward +Steven +Ronald +Stephen +Donald +Paul +Joe +Kenneth +Raymond +Manuel +Jerry +Joseph +Mark +Dennis +Jose +Henry +Roy +Johnny +Danny +Ernest +Lawrence +Gilbert +Timothy +Albert +Jimmy +Bruce +Gregory +Patrick +Douglas +Jack +Roger +Arthur +Carlos +Francisco +Ralph +Ruben +Terry +Anthony +Leonard +Jesus +Andrew +Billy +Phillip +Fred +Harold +Louis +Ray +Wayne +Harry +Tony +Carl +Alfred +Armando +Jesse +Antonio +Peter +Stanley +Steve +Tommy +Christopher +Eddie +Raul +Walter +Bobby +Dan +Luis +Benjamin +Juan +Mike +Samuel +Gerald +Dale +Lee +Ramon +Alvin +Martin +Randall +Victor +Alan +Philip +Randy +Rudy +Tom +Arnold +Don +Jeffrey +Mario +Miguel +Alex +Allen +Craig +Earl +Fernando +Darrell +Edwin +Eugene +Oscar +Jim +Bob +Freddie +Leroy +Ronnie +Leslie +Lloyd +Bill +Glenn +Hector +Leo +Marvin +Randolph +Alfonso +Angel +Frederick +Howard +Norman +Rodney +Scott +Barry +Calvin +Jimmie +Melvin +Russell +Clarence +Pedro +Pete +Roberto +Dean +Lorenzo +Micheal +Charlie +Franklin +Gene +Keith +Vernon +Arturo +Bernard +Clyde +Curtis +Eric +Francis +Jon +Kevin +Jeffery +Kent +Lewis +Rene +Ricardo +Rick +Ricky +Rodolfo +Vincent +Willard +Willie +Alfredo +Cecil +Chester +Chris +Ernie +Floyd +Fredrick +Herbert +Joel +Rudolph +Benny +Byron +Dwight +Frankie +Guadalupe +Harvey +Herman +Jackie +Johnnie +Lester +Sam +Warren +Alberto +Allan +Brian +Clifford +Duane +Kee +Loren +Nelson +Rickey +Robin +Roland +Spencer +Ted +Theodore +Ben +Bennie +Claude +Edgar +Ernesto +Freddy +Gabriel +Glen +Guy +Javier +Jay +Jerome +Karl +Kurt +Lonnie +Nicholas +Salvador +Wesley +Augustine +Clayton +Eduardo +Enrique +Everett +Felix +Gordon +Harrison +Jess +Julio +Matthew +Max +Rafael +Rex +Reynaldo +Rogelio +Wallace +Alejandro +Alexander +Andres +Clark +Clinton +Dave +Delbert +Domingo +Donnie +Edmund +Garry +Ira +Justin +Kirk +Leon +Lynn +Mack +Manny +Morris +Teddy +Wendell +Brent +Bryan +Burton +Eldon +Gustavo +Hugh +Jake +Jeff +Jessie +Johnson +Julian +Kelly +Kenny +Lance +Leonardo +Louie +Luther +Marco +Marshall +Monty +Neil +Pablo +Preston +Roderick +Sergio +Sidney +Tim +Virgil +Wilson +Robert +John +Michael +David +James +Richard +William +Charles +Thomas +Gary +Larry +Daniel +Frank +Steven +Ronald +Edward +Joe +George +Joseph +Kenneth +Donald +Stephen +Dennis +Mark +Paul +Raymond +Jerry +Jose +Manuel +Arthur +Timothy +Johnny +Danny +Albert +Douglas +Gilbert +Henry +Roy +Bruce +Peter +Gregory +Jack +Terry +Ernest +Ralph +Jimmy +Roger +Ruben +Tony +Alfred +Carl +Patrick +Eugene +Lawrence +Louis +Randy +Anthony +Phillip +Harold +Walter +Wayne +Andrew +Francisco +Gerald +Dale +Eddie +Christopher +Harry +Ramon +Stanley +Bobby +Carlos +Fred +Antonio +Juan +Jesse +Jesus +Raul +Billy +Mike +Keith +Bill +Norman +Steve +Tommy +Ray +Samuel +Leonard +Martin +Victor +Arnold +Hector +Jeffrey +Micheal +Allen +Mario +Oscar +Alan +Benjamin +Frederick +Howard +Ronnie +Herbert +Marvin +Clifford +Glenn +Melvin +Alvin +Craig +Francis +Freddie +Leslie +Luis +Randall +Rudy +Scott +Armando +Benny +Fernando +Gordon +Miguel +Tom +Alex +Dan +Darrell +Jim +Philip +Rodney +Russell +Alexander +Barry +Dean +Don +Lee +Pete +Ricky +Clarence +Jimmie +Rick +Angel +Edwin +Franklin +Jon +Leroy +Roberto +Sammy +Brian +Curtis +Eric +Jay +Jonathan +Leon +Lloyd +Lynn +Pedro +Calvin +Cecil +Fredrick +Guy +Kevin +Salvador +Theodore +Willie +Chester +Floyd +Herman +Leo +Lorenzo +Nelson +Randolph +Wesley +Alfonso +Earl +Felix +Jorge +Rene +Rudolph +Andres +Andy +Bryan +Byron +Clyde +Dave +Delbert +Ernesto +Ernie +Lonnie +Vernon +Dana +Donnie +Dwight +Frankie +Gene +Joel +Kee +Neil +Rickey +Wilfred +Alfredo +Arturo +Ben +Bernard +Bradley +Charlie +Duane +Freddy +Gabriel +Guillermo +Harrison +Johnnie +Kelly +Lester +Nicholas +Randal +Rex +Ricardo +Warren +Anderson +Edison +Elmer +Everett +Garry +Hubert +Kerry +Kim +Leland +Milton +Sam +Vincent +Abel +Brent +Chris +Clinton +Eldon +Glen +Guadalupe +Harvey +Jackie +Javier +Jeffery +Jerome +Johnson +Kirk +Lewis +Louie +Mitchell +Perry +Reuben +Stuart +Ted +Teddy +Virgil +Wade +Wilson +Bob +Claude +Felipe +Ignacio +Ismael +Jacob +Jess +Julian +Kurt +Matthew +Monte +Ramiro +Reed +Reynaldo +Roland +Aaron +Alejandro +Cary +Clayton +Clifton +Darrel +Donn +Eduardo +Emmett +Forrest +Gerardo +Gilberto +Irvin +Jeff +Jerald +Jessie +Jody +Kent +Lupe +Lyle +Manny +Marc +Marcus +Norbert +Rafael +Rigoberto +Robin +Rodolfo +Rudolfo +Sandy +Santiago +Stewart +Tim +Unknown +Wallace +Robert +John +David +Michael +James +Richard +William +Thomas +Steven +Charles +Gary +Larry +Donald +George +Ronald +Daniel +Mark +Joe +Frank +Paul +Kenneth +Edward +Raymond +Stephen +Joseph +Dennis +Manuel +Johnny +Henry +Arthur +Anthony +Danny +Jose +Jerry +Timothy +Gregory +Albert +Ralph +Bruce +Terry +Gilbert +Ernest +Roy +Douglas +Francisco +Roger +Stanley +Carl +Peter +Lawrence +Jeffrey +Jesus +Steve +Alfred +Ruben +Carlos +Fred +Jimmy +Victor +Randy +Patrick +Andrew +Juan +Leonard +Gerald +Philip +Dale +Jack +Phillip +Alan +Harold +Russell +Walter +Wayne +Jesse +Louis +Christopher +Craig +Luis +Scott +Tony +Mike +Antonio +Bobby +Eddie +Harry +Lee +Samuel +Ray +Ronnie +Eugene +Fernando +Herman +Martin +Melvin +Ramon +Billy +Glenn +Clifford +Armando +Benjamin +Don +Frederick +Herbert +Mario +Allen +Dan +Hector +Howard +Tommy +Arnold +Barry +Jay +Micheal +Norman +Alex +Glen +Leroy +Raul +Tom +Keith +Oscar +Ricky +Francis +Jim +Leslie +Lloyd +Miguel +Gordon +Randall +Rene +Willie +Bill +Brian +Dean +Eric +Marvin +Vernon +Ernesto +Rodney +Curtis +Edwin +Freddie +Kevin +Marc +Pete +Ted +Alfonso +Alvin +Jon +Lonnie +Randolph +Rudy +Arturo +Calvin +Felix +Floyd +Frankie +Franklin +Kim +Lester +Lynn +Rex +Roberto +Theodore +Vincent +Wesley +Alexander +Bradley +Darrell +Duane +Gene +Nelson +Pedro +Rudolph +Clarence +Gabriel +Guadalupe +Jerome +Jonathan +Lewis +Matthew +Teddy +Alfredo +Chester +Delbert +Fredrick +Louie +Rodolfo +Sam +Benny +Bob +Byron +Cecil +Charlie +Dwight +Jessie +Joel +Leo +Lorenzo +Manny +Mitchell +Rick +Angel +Harvey +Jimmie +Leon +Lyle +Max +Milton +Ricardo +Sammy +Virgil +Wallace +Chris +Earl +Edison +Guy +Ignacio +Jackie +Jaime +Johnson +Julian +Kee +Nicholas +Rickey +Troy +Wilbert +Allan +Andy +Bennie +Bert +Clyde +Greg +Guillermo +Javier +Jeffery +Johnnie +Jorge +Kelly +Kerry +Marco +Neil +Perry +Roland +Boyd +Brent +Clayton +Dana +Elias +Elmer +Freddy +Garry +Kent +Marshall +Orville +Ross +Sergio +Sidney +Todd +Unknown +Alejandro +Alton +Ben +Bernard +Dallas +Darryl +Donnie +Edgar +Eduardo +Everett +Felipe +Gilberto +Harrison +Hubert +Humberto +Julio +Justin +Karl +Lance +Loren +Nick +Norbert +Simon +Stuart +Willard +Wilson +Aaron +Adam +Adolph +Adrian +Alberto +Billie +Bryan +Carlton +Cody +Cruz +Dave +Doyle +Eldon +Enrique +Ernie +Irvin +Ivan +Jacob +Jeff +Jess +Kelley +Kirk +Kurt +Laurence +Leland +Lon +Marcus +Marion +Merle +Ned +Rafael +Robin +Salvador +Spencer +Stewart +Terrance +Tim +Wade +Warren +David +Robert +Michael +John +James +Richard +William +Thomas +Gary +Steven +Charles +Daniel +Mark +Paul +Kenneth +Donald +George +Joe +Larry +Frank +Dennis +Ronald +Joseph +Edward +Stephen +Raymond +Manuel +Timothy +Henry +Jose +Gregory +Jerry +Johnny +Roy +Albert +Anthony +Arthur +Roger +Douglas +Gilbert +Jesus +Bruce +Ruben +Danny +Randy +Patrick +Terry +Ralph +Alfred +Jeffrey +Peter +Ernest +Francisco +Harold +Gerald +Jimmy +Phillip +Victor +Andrew +Jack +Bobby +Dale +Leonard +Martin +Mike +Carl +Steve +Carlos +Lawrence +Louis +Tony +Antonio +Eugene +Stanley +Walter +Billy +Harry +Wayne +Fred +Keith +Kevin +Micheal +Allen +Christopher +Craig +Ricky +Alan +Eddie +Philip +Randall +Jesse +Ramon +Ray +Brian +Don +Hector +Norman +Raul +Rodney +Armando +Benjamin +Clifford +Russell +Glenn +Juan +Dean +Lloyd +Rudy +Luis +Melvin +Samuel +Calvin +Curtis +Eric +Fernando +Rick +Herbert +Howard +Leroy +Scott +Arturo +Duane +Jim +Mario +Marvin +Oscar +Ronnie +Theodore +Tommy +Willie +Floyd +Freddie +Frederick +Gordon +Lee +Ricardo +Arnold +Earl +Herman +Jonathan +Lonnie +Rene +Roberto +Alvin +Chris +Dan +Edwin +Leo +Wesley +Barry +Clarence +Felix +Francis +Jay +Lorenzo +Tom +Vernon +Alex +Glen +Miguel +Vincent +Angel +Benny +Gene +Jimmie +Lester +Reynaldo +Alexander +Brad +Elmer +Franklin +Ignacio +Jeffery +Leon +Leslie +Lewis +Mitchell +Rickey +Rudolph +Alejandro +Alfredo +Bill +Darrell +Jessie +Kent +Nicholas +Pete +Rex +Sam +Alfonso +Bryan +Cecil +Ernesto +Kim +Kirk +Matthew +Nelson +Virgil +Ben +Bradley +Edison +Guy +Jon +Karl +Rafael +Wilfred +Wilson +Abel +Charlie +Chester +Dwight +Fredrick +Joel +Johnnie +Marc +Perry +Rodolfo +Ted +Terrence +Darryl +Garry +Guadalupe +Gustavo +Jackie +Julian +Kelly +Kerry +Pablo +Randolph +Sammy +Teddy +Andy +Clayton +Dana +Everett +Frankie +Harrison +Lynn +Marco +Pedro +Philbert +Salvador +Todd +Warren +Willard +Allan +Augustine +Brent +Clyde +Donnie +Enrique +Freddy +Javier +Jeff +Kee +Lance +Loren +Marion +Marty +Nathan +Rocky +Sidney +Terrance +Tim +Troy +Wade +Bernard +Byron +Casey +Conrad +Dallas +Daryl +Dave +Elias +Ernie +Greg +Harvey +Jackson +Jaime +Joey +Jorge +Kenny +Kurt +Lionel +Louie +Mack +Marshall +Max +Mikel +Reuben +Robin +Roland +Ross +Santiago +Wilbert +Adrian +Alberto +Andres +Archie +Art +Aurelio +Brett +Buddy +Clark +Delbert +Edmond +Edwardo +Felipe +Gabriel +Gerardo +Gilberto +Grady +Grant +Hugh +Ivan +Johnson +Leland +Lowell +Milton +Myron +Neil +Owen +Preston +Raymundo +Reed +Sergio +Stuart +Tracy +Van +Wallace +Wilmer +Robert +Michael +David +John +James +Richard +William +Steven +Gary +Daniel +Thomas +Mark +Charles +Paul +Ronald +George +Kenneth +Larry +Donald +Frank +Joseph +Stephen +Joe +Edward +Dennis +Jerry +Raymond +Gregory +Timothy +Manuel +Roy +Jose +Anthony +Terry +Gilbert +Henry +Randy +Bruce +Jeffrey +Arthur +Douglas +Johnny +Patrick +Albert +Danny +Ernest +Roger +Kevin +Jack +Jimmy +Peter +Ralph +Dale +Francisco +Stanley +Harold +Gerald +Ray +Ruben +Alfred +Bobby +Lawrence +Christopher +Craig +Keith +Scott +Billy +Samuel +Brian +Harry +Martin +Antonio +Carlos +Andrew +Ricky +Walter +Jesus +Russell +Alan +Phillip +Wayne +Eddie +Louis +Ramon +Steve +Tommy +Tony +Clifford +Jesse +Mike +Randall +Ronnie +Victor +Leonard +Rick +Darrell +Fred +Carl +Howard +Lee +Micheal +Don +Fernando +Leo +Leroy +Luis +Eugene +Melvin +Rodney +Marvin +Juan +Raul +Roberto +Benjamin +Glenn +Hector +Philip +Vernon +Arnold +Jim +Kerry +Norman +Oscar +Ricardo +Curtis +Jon +Allen +Barry +Earl +Kim +Armando +Clarence +Eric +Jay +Pedro +Alex +Benny +Mario +Dean +Ernesto +Herbert +Joel +Leslie +Alvin +Arturo +Freddie +Frederick +Glen +Jeffery +Pete +Rudy +Bill +Chris +Felix +Jonathan +Randolph +Willie +Angel +Leon +Matthew +Miguel +Mitchell +Wesley +Dan +Floyd +Gordon +Guy +Jorge +Lester +Lonnie +Theodore +Virgil +Alfonso +Bradley +Franklin +Jeff +Jessie +Lorenzo +Robin +Brad +Duane +Edwin +Gabriel +Herman +Kent +Lloyd +Nelson +Roland +Alexander +Ben +Calvin +Cecil +Jimmie +Lewis +Lynn +Salvador +Sergio +Ted +Tom +Vincent +Wilson +Alfredo +Clayton +Garry +Lyle +Marc +Milton +Rene +Rex +Reynaldo +Sidney +Andy +Brent +Charlie +Harvey +Jackie +Karl +Louie +Marshall +Nicholas +Rocky +Rodolfo +Sam +Wade +Warren +Bryan +Chester +Clinton +Clyde +Daryl +Dwight +Enrique +Ernie +Gene +Greg +Gregg +Guillermo +Lance +Rafael +Rickey +Rudolph +Stuart +Terrence +Abraham +Alejandro +Bennie +Bernard +Boyd +Delbert +Dwayne +Elmer +Frankie +Guadalupe +Harrison +Jacob +Johnnie +Johnson +Julian +Kelly +Marcos +Max +Pablo +Pat +Perry +Preston +Sammy +Alberto +Allan +Ambrose +Bradford +Brett +Charley +Clark +Claude +Edison +Eldon +Elroy +Emerson +Francis +Freddy +Fredrick +Gus +Ignacio +Joey +Kirk +Kurt +Marcus +Monte +Randal +Reyes +Ross +Abel +Amos +Bernardo +Clifton +Donnie +Edgar +Erwin +Grant +Humberto +Jasper +Javier +Julius +Morris +Ned +Rickie +Roderick +Rory +Terrance +Tim +Tracy +Travis +Wilbert +Wilbur +Wilford +Aaron +Anderson +Arnulfo +Barney +Cameron +Christophe +Cornelius +Cruz +Dave +Edmond +Edmund +Eduardo +Edwardo +Emilio +Everett +Forrest +Fransisco +Gustavo +Hubert +Jaime +Jason +Jerome +Justin +Kenny +Kyle +Leland +Monty +Neal +Nick +Scot +Spencer +Sterling +David +Robert +Michael +John +James +Richard +William +Mark +Steven +Thomas +Daniel +Charles +Gary +Paul +Frank +Larry +Ronald +Kenneth +George +Edward +Joseph +Raymond +Stephen +Donald +Joe +Timothy +Dennis +Manuel +Jerry +Jeffrey +Gregory +Anthony +Danny +Johnny +Ernest +Jose +Arthur +Douglas +Kevin +Terry +Gilbert +Roy +Randy +Albert +Bruce +Patrick +Peter +Henry +Ruben +Keith +Andrew +Scott +Christopher +Phillip +Ralph +Roger +Victor +Wayne +Lawrence +Carl +Jesus +Leonard +Micheal +Mike +Brian +Carlos +Jimmy +Francisco +Gerald +Jack +Martin +Ray +Alan +Craig +Bobby +Jesse +Antonio +Louis +Dale +Russell +Billy +Randall +Stanley +Steve +Alfred +Eddie +Luis +Ricky +Samuel +Tony +Fernando +Juan +Benjamin +Ronnie +Walter +Eric +Eugene +Alex +Fred +Norman +Melvin +Ramon +Curtis +Harry +Lee +Rick +Frederick +Arnold +Raul +Rodney +Tommy +Allen +Harold +Jeffery +Marvin +Philip +Armando +Clarence +Darrell +Bill +Dan +Glenn +Hector +Jonathan +Vincent +Alvin +Earl +Edwin +Howard +Herbert +Leo +Roberto +Barry +Calvin +Leslie +Lloyd +Matthew +Oscar +Jay +Jim +Tom +Bradley +Brent +Mario +Clifford +Clyde +Dean +Delbert +Freddie +Herman +Jon +Miguel +Theodore +Chester +Francis +Guy +Lonnie +Randolph +Ricardo +Arturo +Don +Glen +Johnnie +Rudy +Vernon +Harrison +Kelly +Leroy +Lorenzo +Andy +Benny +Frankie +Gabriel +Gordon +Ignacio +Kim +Alfonso +Bob +Charlie +Dwight +Jimmie +Karl +Rene +Willie +Alexander +Cecil +Chris +Duane +Franklin +Jeff +Joel +Lester +Nelson +Rex +Robin +Terrance +Wesley +Angel +Ernesto +Ernie +Gene +Jackie +Jessie +Jorge +Kirk +Lance +Leon +Lewis +Pete +Rickey +Louie +Marc +Sam +Troy +Wallace +Allan +Dave +Enrique +Garry +Guillermo +Javier +Kent +Loren +Lynn +Nathan +Terrence +Wilson +Alfredo +Bernard +Doyle +Fredrick +Gregg +Julius +Kerry +Milton +Nicholas +Oliver +Rodolfo +Salvador +Sammy +Ted +Warren +Brad +Cary +Clay +Edison +Gerard +Grant +Jaime +Kee +Kurt +Lyle +Neil +Rafael +Ron +Ross +Rudolph +Stewart +Aaron +Abel +Adolph +Alberto +Augustine +Clayton +Dallas +Edgar +Eduardo +Everett +Guadalupe +Harley +Harvey +Irvin +Jerome +Joaquin +Marcos +Max +Monte +Roland +Sidney +Virgil +Alejandro +Archie +Boyd +Clinton +Conrad +Daryl +Davis +Donnie +Dwayne +Felix +Floyd +Gilberto +Gustavo +Ismael +Jackson +Jeffry +Joey +Julian +Marco +Mitchell +Monty +Pedro +Perry +Reed +Roman +Sergio +Stuart +Tim +Toby +Todd +Tomas +Wade +Wilfred +Adolfo +Anderson +Ben +Bennie +Bradford +Brett +Byron +Clark +Cleveland +Cruz +Edwardo +Elmer +Felipe +Gerardo +Gerry +Greg +Ira +Ivan +Jerald +Julio +Leland +Lemuel +Lupe +Marcus +Merrill +Morgan +Myron +Nathaniel +Pablo +Reymundo +Rolando +Rusty +Santos +Sean +Shane +Tracy +Van +Vicente +Wendell +Wilbur +David +Robert +Michael +John +James +Richard +William +Mark +Steven +Daniel +Charles +Thomas +Donald +Gary +Paul +Joseph +Larry +Edward +Ronald +George +Kenneth +Stephen +Timothy +Frank +Raymond +Gregory +Jerry +Douglas +Dennis +Randy +Joe +Anthony +Manuel +Terry +Bruce +Jeffrey +Scott +Albert +Danny +Patrick +Gilbert +Henry +Christopher +Kevin +Jose +Arthur +Johnny +Ruben +Ralph +Roy +Victor +Brian +Jimmy +Phillip +Roger +Mike +Alan +Ernest +Keith +Peter +Leonard +Jack +Steve +Wayne +Carlos +Dale +Fred +Lawrence +Jesse +Samuel +Gerald +Marvin +Billy +Juan +Martin +Norman +Tony +Carl +Louis +Tommy +Craig +Jesus +Eddie +Rodney +Glenn +Walter +Alfred +Eric +Francisco +Harold +Eugene +Russell +Andrew +Darrell +Luis +Arnold +Don +Philip +Benjamin +Bobby +Ray +Antonio +Frederick +Micheal +Oscar +Ramon +Rick +Stanley +Allen +Armando +Ricky +Curtis +Harry +Hector +Jim +Theodore +Clifford +Fernando +Ronnie +Alex +Alvin +Barry +Glen +Jeffery +Jonathan +Mario +Melvin +Raul +Jon +Matthew +Randall +Ricardo +Robin +Tom +Chris +Pete +Bill +Franklin +Leo +Dean +Howard +Calvin +Dana +Earl +Kent +Rudy +Willie +Bradley +Dan +Francis +Freddie +Guy +Leon +Nelson +Benny +Herbert +Ben +Brad +Cecil +Gabriel +Joel +Kim +Lee +Leslie +Lewis +Lloyd +Angel +Duane +Jay +Vincent +Charlie +Daryl +Emerson +Floyd +Gordon +Kerry +Tim +Vernon +Allan +Bryan +Felix +Frankie +Greg +Jeff +Lonnie +Miguel +Rene +Roberto +Wade +Wesley +Bob +Clarence +Ernesto +Guillermo +Karl +Kurt +Lance +Milton +Pedro +Rex +Rocky +Todd +Alfredo +Arturo +Brent +Leroy +Marshall +Rickey +Sam +Sammy +Alberto +Chester +Dave +Delbert +Edison +Enrique +Gene +Herman +Mitchell +Nicholas +Perry +Randolph +Terrence +Adam +Alexander +Andy +Clark +Eduardo +Johnnie +Kirk +Louie +Tracy +Adrian +Alfonso +Bennie +Bernard +Donnie +Edwin +Geoffrey +Jackie +Jessie +Jimmie +Johnson +Kelly +Loren +Lorenzo +Marc +Marcos +Max +Rafael +Randal +Salvador +Virgil +Aaron +Byron +Dwight +Elmer +Guadalupe +Harrison +Ignacio +Jaime +Jerald +Joey +Julian +Lionel +Nathan +Preston +Ross +Ted +Wallace +Warren +Wilfred +Alejandro +Archie +Brett +Darwin +Erwin +Gregg +Irvin +Jerome +Kee +Leland +Monty +Ned +Neil +Rudolph +Stewart +Teddy +Troy +Wilford +Bennett +Cary +Clayton +Clyde +Dwayne +Edmund +Edwardo +Emmett +Ernie +Fredrick +Garry +Ivan +Jason +Joaquin +Julio +Lester +Marco +Marcus +Neal +Orlando +Pablo +Pat +Reed +Reynaldo +Santiago +Stuart +Terrance +Tommie +Ward +Abel +Andres +Benson +Boyd +Buddy +Christophe +Claude +Clay +Conrad +Danial +Dee +Duncan +Edgar +Efren +Eldon +Forrest +Gilberto +Isaac +Jeffry +Justin +Lynn +Manny +Marty +Monte +Nathaniel +Orville +Ramiro +Reginald +Roderick +Rodger +Roland +Ron +Scot +Sergio +Timmy +Vicente +Wyatt +David +Michael +Robert +James +John +Richard +William +Mark +Steven +Thomas +Daniel +Charles +Donald +Gary +George +Kenneth +Ronald +Larry +Paul +Joseph +Edward +Joe +Frank +Stephen +Raymond +Dennis +Timothy +Gregory +Scott +Anthony +Jerry +Kevin +Mike +Randy +Jeffrey +Manuel +Bruce +Brian +Jose +Patrick +Henry +Terry +Peter +Albert +Steve +Danny +Arthur +Carlos +Douglas +Gilbert +Jimmy +Johnny +Tony +Christopher +Victor +Ruben +Ricky +Leonard +Phillip +Alfred +Andrew +Ernest +Lawrence +Carl +Jack +Ray +Roy +Francisco +Martin +Ralph +Roger +Juan +Dale +Jeffery +Craig +Gerald +Keith +Russell +Walter +Antonio +Curtis +Eddie +Wayne +Eric +Jesse +Louis +Randall +Alan +Billy +Don +Matthew +Jesus +Micheal +Rodney +Samuel +Darrell +Fred +Rick +Stanley +Allen +Eugene +Ronnie +Bryan +Dan +Rudy +Alex +Glen +Benjamin +Oscar +Barry +Bobby +Howard +Jim +Philip +Tommy +Harold +Tom +Bob +Jay +Bill +Glenn +Jonathan +Lee +Armando +Karl +Perry +Chris +Frederick +Harry +Jon +Raul +Vincent +Alvin +Arnold +Bradley +Dean +Jeff +Mitchell +Nelson +Ramon +Calvin +Freddie +Mario +Clarence +Ernesto +Guy +Luis +Wesley +Duane +Leo +Ricardo +Tim +Vernon +Clifford +Floyd +Kent +Marvin +Alfredo +Greg +Herbert +Herman +Kelly +Virgil +Benny +Edwin +Gene +Hector +Norman +Rex +Sam +Charlie +Gabriel +Joel +Andy +Brent +Jaime +Melvin +Tracy +Willie +Clyde +Earl +Ernie +Francis +Franklin +Garry +Lorenzo +Robin +Ted +Theodore +Todd +Alexander +Felix +Fernando +Gordon +Jimmie +Leslie +Neil +Ben +Cecil +Clayton +Guadalupe +Jessie +Leroy +Lloyd +Marc +Miguel +Roberto +Dave +Harrison +Kurt +Lonnie +Milton +Rene +Rickey +Rocky +Salvador +Byron +Dana +Delbert +Lance +Marcus +Pete +Sammy +Stuart +Alfonso +Allan +Angel +Arturo +Brad +Edmund +Frankie +Fredrick +Guillermo +Harvey +Joey +Lester +Louie +Marty +Reynaldo +Wade +Wilson +Aaron +Abel +Alejandro +Cary +Daryl +Javier +Kenny +Kerry +Kim +Kirk +Leon +Lewis +Pedro +Rodolfo +Ron +Rudolph +Sergio +Terrence +Warren +Alberto +Bennie +Bernard +Casey +Dwight +Eduardo +Everett +Hugh +Jerome +Jess +Marion +Marshall +Rafael +Randolph +Troy +Willis +Augustine +Dick +Donnie +Elvis +Fermin +Grant +Ignacio +Irvin +Ken +Kirby +Leland +Lyle +Marco +Nicky +Phil +Robbie +Sean +Wilbert +Brett +Carlton +Clark +Claude +Danial +Darwin +Dwayne +Edison +Elmer +Emerson +Enrique +Jacob +Johnnie +Jorge +Julian +Julius +Kee +Kendall +Marcos +Monty +Nathan +Nathaniel +Ned +Nicholas +Nick +Roland +Santos +Terrance +Wallace +Zane +Adolfo +Adrian +Art +Billie +Chester +Edgar +Evan +Federico +Gerardo +Gustavo +Jackie +Jefferson +Jerald +Jody +Julio +Kyle +Lupe +Manny +Max +Mickey +Neal +Rory +Teddy +Wendell +Wilfred +Agustin +Alton +Alvaro +Bennett +Clifton +Darrel +Davis +Dexter +Dirk +Domingo +Doug +Doyle +Edmundo +Ellis +Elton +Fidel +Gerry +Grady +Gregorio +Ivan +Joaquin +Johnson +Loren +Malcolm +Marlin +Maurice +Mauro +Morris +Orlando +Otis +Preston +Randal +Raymundo +Reuben +Ross +Rupert +Santiago +Shane +Shawn +Spencer +Terence +Willard +Robert +David +Michael +John +James +Richard +William +Mark +Steven +Charles +Thomas +Daniel +Paul +Larry +Gary +Frank +Kenneth +Timothy +Donald +Ronald +Joseph +Mike +Joe +George +Edward +Kevin +Scott +Stephen +Gregory +Steve +Raymond +Dennis +Brian +Danny +Jerry +Terry +Anthony +Jeffrey +Randy +Johnny +Manuel +Arthur +Douglas +Ricky +Albert +Jose +Christopher +Patrick +Gilbert +Tony +Jimmy +Eric +Eddie +Peter +Dale +Victor +Henry +Bruce +Jim +Phillip +Russell +Ruben +Keith +Martin +Carl +Matthew +Jack +Alfred +Roy +Ralph +Tom +Bill +Carlos +Ernest +Leonard +Andrew +Gerald +Jesus +Samuel +Wayne +Curtis +Harold +Lawrence +Stanley +Ray +Jesse +Juan +Roger +Bobby +Rick +Jay +Ramon +Rudy +Tommy +Alan +Billy +Greg +Louis +Randall +Lee +Tim +Allen +Glenn +Jeff +Luis +Micheal +Norman +Raul +Chris +Craig +Don +Fernando +Francisco +Howard +Walter +Ricardo +Bryan +Dan +Mario +Alvin +Arnold +Jon +Philip +Ronnie +Antonio +Calvin +Barry +Freddie +Glen +Leo +Rodney +Harry +Alex +Armando +Benjamin +Eugene +Oscar +Perry +Vincent +Bret +Darrell +Jeffery +Bob +Bradley +Frederick +Hector +Virgil +Clifford +Melvin +Pat +Todd +Angel +Duane +Francis +Jimmie +Jonathan +Robin +Andy +Brent +Dean +Fred +Pedro +Sam +Alexander +Brett +Dave +Herbert +Kelly +Miguel +Ron +Ross +Ted +Wesley +Clarence +Earl +Gabriel +Gene +Jessie +Joel +Kent +Kirk +Leland +Leroy +Leslie +Marvin +Mitchell +Wade +Arturo +Ben +Benny +Joey +Theodore +Tracy +Clay +Floyd +Lonnie +Pete +Rickey +Rodolfo +Vernon +Alfredo +Bernard +Cecil +Clyde +Felix +Frankie +Franklin +Lorenzo +Marty +Nelson +Roberto +Brad +Chester +Dana +Edwin +Ken +Kurt +Lloyd +Matt +Rocky +Dwight +Edison +Ernesto +Ernie +Gordon +Leon +Randolph +Roland +Alberto +Doug +Elmer +Emmett +Guadalupe +Guy +Karl +Lester +Marc +Milton +Nathan +Sammy +Shawn +Willie +Alfonso +Benito +Clayton +Daryl +Delbert +Eduardo +Harrison +Lance +Lewis +Lyle +Neil +Rex +Terrence +Wilson +Bart +Chuck +Clinton +Donnie +Enrique +Everett +Gilberto +Herman +Ivan +Javier +Jorge +Laurence +Louie +Lynn +Max +Nathaniel +Nick +Rafael +Aaron +Abel +Byron +Charlie +Clifton +Darrel +Darryl +Doyle +Ervin +Esteban +Freddy +Garry +Ignacio +Jackie +Kenny +Marco +Maurice +Monty +Randal +Rickie +Sean +Sergio +Troy +Wallace +Will +Willard +Alejandro +Allan +Alonzo +Amos +Archie +Augustine +Dwayne +Ed +Emerson +Harvey +Hubert +Irvin +Jacob +Jaime +Julian +Julius +Kee +Kerry +Kyle +Lupe +Marcos +Rene +Rusty +Salvador +Vince +Abraham +Adam +Bert +Domingo +Earnest +Federico +Felipe +Gustavo +Hugh +Humberto +Jefferson +Jerald +Jerome +Jess +Lionel +Mathew +Neal +Pablo +Phil +Roderick +Shannon +Sylvester +Terence +Terrance +Wilfred +Adolfo +Ambrose +Arnulfo +Art +Audie +Bennie +Benson +Blaine +Boyd +Cameron +Cary +Claude +Cory +Cruz +Derek +Derrick +Dick +Edgar +Elvis +Geoffrey +Grant +Kelvin +Kim +Loren +Luther +Manny +Merlin +Mickey +Nicholas +Noel +Norbert +Percy +Preston +Randell +Reed +Reyes +Robbie +Rodger +Stuart +Wilford +David +Michael +Robert +John +Richard +James +Mark +William +Daniel +Steven +Thomas +Paul +Charles +Scott +Mike +Gary +Larry +Timothy +Ronald +Donald +Frank +Joseph +Kenneth +George +Joe +Steve +Raymond +Randy +Edward +Kevin +Jeffrey +Patrick +Jerry +Gregory +Dennis +Stephen +Danny +Brian +Anthony +Terry +Christopher +Ricky +Manuel +Douglas +Johnny +Arthur +Tony +Jose +Peter +Gilbert +Jim +Jimmy +Victor +Ralph +Bruce +Eric +Carlos +Roger +Russell +Keith +Dale +Matthew +Albert +Chris +Craig +Tim +Bill +Phillip +Ruben +Wayne +Eddie +Henry +Jack +Jeff +Juan +Andrew +Tom +Allen +Ernest +Martin +Ray +Lawrence +Walter +Alan +Carl +Billy +Harold +Greg +Raul +Roy +Gerald +Bobby +Don +Leonard +Dan +Mario +Francisco +Randall +Jay +Bryan +Jeffery +Harry +Jesus +Ronnie +Stanley +Vincent +Luis +Samuel +Bret +Glenn +Jesse +Darrell +Lee +Oscar +Ramon +Rick +Armando +Louis +Rudy +Todd +Alfred +Alvin +Barry +Bradley +Tommy +Curtis +Philip +Arnold +Fred +Freddie +Norman +Dave +Fernando +Clifford +Jon +Melvin +Bob +Frederick +Vernon +Andy +Joel +Leroy +Marvin +Antonio +Brett +Dean +Howard +Jonathan +Micheal +Ricardo +Sam +Alex +Benjamin +Calvin +Edwin +Eugene +Rodney +Earl +Hector +Brad +Pete +Rickey +Brent +Glen +Duane +Kelly +Mitchell +Willie +Arturo +Delbert +Ernie +Frankie +Gordon +Guy +Herman +Jimmie +Kenny +Kirk +Leo +Shawn +Tracy +Herbert +Jessie +Marty +Angel +Ben +Felix +Karl +Marc +Pedro +Stuart +Charlie +Doug +Edison +Franklin +Gabriel +Nick +Ron +Clay +Dana +Kurt +Lonnie +Miguel +Perry +Rene +Roberto +Ted +Clarence +Clyde +Ernesto +Floyd +Gene +Jacob +Lloyd +Nelson +Pat +Randolph +Theodore +Troy +Wesley +Benny +Cecil +Joey +Lewis +Rex +Robin +Alfonso +Francis +Kent +Lance +Loren +Lorenzo +Louie +Sammy +Shane +Wade +Alfredo +Ignacio +Julian +Leland +Neil +Nicholas +Wilfred +Aaron +Adrian +Bart +Byron +Chester +Chuck +Clint +Darren +Darryl +Grant +Harvey +Jackie +Jorge +Leon +Leslie +Nathaniel +Rudolph +Virgil +Alexander +Allan +Donnie +Edmund +Emerson +Everett +Fredrick +Garry +Guadalupe +Gustavo +Jackson +Kerry +Lester +Marcus +Marshall +Nathan +Roland +Ross +Wallace +Wilbert +Wilbur +Alejandro +Anderson +Clark +Clayton +Cruz +Felipe +Gregg +Ivan +Javier +Jerome +Jody +Marco +Marcos +Max +Neal +Phil +Rafael +Robbie +Rodolfo +Warren +Abel +Al +Andres +Archie +Augustine +Bennie +Bernard +Bernie +Bert +Casey +Dane +Daryl +Donny +Eduardo +Elvis +Hugh +Jaime +Justin +Kee +Kim +Lane +Laurence +Mickey +Monty +Randal +Reynaldo +Rory +Rusty +Salvador +Sergio +Shannon +Terrance +Timmy +Wilson +Adolfo +Charley +Dick +Dwayne +Dwight +Ed +Enrique +Frederico +Gerardo +Gerry +Gilberto +Guillermo +Harrison +Isaac +Jamie +Jason +Jefferson +Kirby +Kyle +Lyle +Lynn +Milton +Monte +Orlando +Shaun +Sterling +Terrence +Trent +Willard +Abraham +Alonzo +Amos +Andre +Arnulfo +Boyd +Cary +Clifton +Corey +Curt +Davis +Derek +Dewayne +Edwardo +Emery +Ervin +Evan +Fidel +Freddy +Freeman +Hubert +Irvin +Jerald +Johnnie +Julio +Kelvin +Lionel +Lupe +Marion +Marlin +Matt +Ned +Noel +Randell +Reuben +Rob +Rocky +Ryan +Sean +Teddy +Travis +David +Robert +Michael +John +James +Mark +Richard +William +Thomas +Steven +Daniel +Paul +Scott +Charles +Mike +Ronald +Kevin +Kenneth +Timothy +Gary +Larry +Joseph +Donald +George +Edward +Steve +Frank +Joe +Brian +Anthony +Jerry +Danny +Dennis +Raymond +Gregory +Douglas +Randy +Jeffrey +Tony +Terry +Stephen +Christopher +Johnny +Jose +Henry +Jeff +Ricky +Arthur +Patrick +Roger +Eric +Manuel +Jim +Bruce +Gilbert +Victor +Albert +Ernest +Keith +Ralph +Peter +Jimmy +Martin +Russell +Chris +Phillip +Roy +Tom +Matthew +Tim +Eddie +Wayne +Carlos +Craig +Dale +Bobby +Bill +Leonard +Jack +Fred +Billy +Greg +Alex +Ray +Bryan +Ruben +Carl +Samuel +Curtis +Jay +Andrew +Lawrence +Tommy +Walter +Alan +Alfred +Jesse +Juan +Randall +Ronnie +Glenn +Mario +Dan +Jesus +Dean +Troy +Gerald +Jeffery +Jon +Raul +Rick +Allen +Fernando +Bradley +Eugene +Harold +Rodney +Antonio +Duane +Francisco +Louis +Philip +Vincent +Darrell +Don +Harry +Andy +Ramon +Armando +Bob +Oscar +Rudy +Stanley +Alvin +Arnold +Kelly +Lee +Marvin +Micheal +Ricardo +Barry +Melvin +Benjamin +Glen +Karl +Luis +Miguel +Todd +Joel +Norman +Ted +Calvin +Clifford +Lance +Roberto +Tracy +Angel +Earl +Ben +Darren +Freddie +Hector +Leroy +Leslie +Willie +Dave +Gene +Howard +Jonathan +Kent +Marty +Mitchell +Benny +Brent +Kenny +Lorenzo +Perry +Darryl +Vernon +Wesley +Aaron +Brett +Delbert +Ernie +Floyd +Lloyd +Pedro +Sam +Arturo +Brad +Ernesto +Franklin +Frederick +Gabriel +Jody +Jorge +Kerry +Rex +Ron +Shawn +Alberto +Bernard +Chuck +Dwayne +Edwin +Herbert +Pete +Rene +Ross +Clayton +Dana +Eduardo +Francis +Harvey +Herman +Jimmie +Ken +Nathan +Nelson +Virgil +Alexander +Alfredo +Allan +Clay +Frankie +Jaime +Johnnie +Kurt +Lewis +Marc +Sean +Wade +Wendell +Bret +Clinton +Emerson +Enrique +Felix +Garry +Justin +Kim +Kirk +Teddy +Alfonso +Clarence +Derek +Doug +Elmer +Guy +Jason +Julian +Leon +Lester +Lynn +Marco +Neil +Nick +Pat +Rafael +Robin +Sammy +Sergio +Abel +Cecil +Charlie +Donnie +Gordon +Guillermo +Joey +Leland +Travis +Bart +Claude +Darwin +Daryl +Edison +Grant +Jackie +Jessie +Leo +Lonnie +Loren +Nathaniel +Nicholas +Rocky +Stuart +Alejandro +Art +Chester +Fredrick +Guadalupe +Gustavo +Jacob +Julio +Ramiro +Rickey +Theodore +Warren +Wilfred +Andres +Cary +Everett +Javier +Jeffry +Kee +Kyle +Matt +Max +Neal +Phil +Randolph +Reynaldo +Salvador +Wallace +Willard +Amos +Bert +Darrel +Dwight +Ed +Edgar +Elias +Gerard +Gerardo +Gregg +Julius +Kelvin +Marcus +Milton +Monty +Nolan +Pablo +Randal +Reed +Reyes +Rodolfo +Roland +Rusty +Ty +Wilbert +Adam +Adrian +Byron +Casey +Conrad +Cornelius +Dallas +Davis +Domingo +Elvis +Emmett +Freddy +Gilberto +Gus +Harrison +Irvin +Louie +Manny +Orlando +Reginald +Reuben +Rodger +Rory +Ryan +Stan +Stevie +Terrence +Tomas +Abelardo +Anderson +Augustine +Blaine +Bradford +Brandon +Bryce +Clint +Cruz +Curt +Dane +Denny +Derrick +Donny +Earnest +Ervin +Evan +Faron +Hank +Ivan +Jake +Jess +Johnson +Lionel +Lyle +Marshall +Mathew +Mitch +Morris +Ned +Octavio +Reggie +Robbie +Rudolph +Russel +Santos +Spencer +Stewart +Terence +Terrance +Tommie +Tyrone +Van +Vince +Wes +Willis +David +Robert +Michael +John +James +Mark +Richard +William +Daniel +Steven +Thomas +Paul +Charles +Kevin +Scott +Mike +Kenneth +Ronald +Joseph +Gary +Timothy +Larry +Jeffrey +Frank +Brian +Gregory +Donald +Raymond +Joe +Anthony +Edward +Jerry +Danny +Steve +Patrick +Stephen +George +Christopher +Douglas +Tony +Eric +Manuel +Randy +Albert +Jose +Terry +Chris +Johnny +Peter +Jeff +Dennis +Ricky +Phillip +Arthur +Andrew +Gilbert +Keith +Craig +Greg +Roger +Ruben +Victor +Jim +Henry +Todd +Bruce +Eddie +Jimmy +Bill +Carl +Wayne +Martin +Jeffery +Ralph +Alan +Roy +Tim +Tom +Troy +Billy +Jesse +Leonard +Matthew +Carlos +Russell +Bryan +Jack +Jesus +Ray +Ernest +Jon +Gerald +Luis +Tommy +Barry +Juan +Samuel +Vincent +Allen +Arnold +Jay +Walter +Dan +Alfred +Glenn +Ramon +Ronnie +Miguel +Randall +Raul +Alex +Bobby +Don +Harold +Dale +Francisco +Rick +Curtis +Eugene +Fred +Howard +Lawrence +Leroy +Marvin +Micheal +Darrell +Dean +Philip +Rudy +Benjamin +Dave +Harry +Jonathan +Mitchell +Norman +Bradley +Earl +Mario +Tracy +Aaron +Brent +Duane +Kelly +Louis +Armando +Fernando +Ron +Dwayne +Ricardo +Andy +Darryl +Joel +Lee +Melvin +Willie +Brett +Rodney +Sam +Stanley +Darren +Gabriel +Kenny +Oscar +Shawn +Floyd +Hector +Rene +Angel +Antonio +Brad +Clifford +Ernie +Gordon +Guy +Lance +Marc +Pete +Bob +Glen +Robin +Ted +Adam +Franklin +Roberto +Sammy +Alvin +Clay +Felix +Jaime +Ken +Kent +Wesley +Benny +Freddie +Gene +Leon +Nelson +Reynaldo +Charlie +Delbert +Edwin +Frederick +Herman +Javier +Lonnie +Lorenzo +Nick +Virgil +Adrian +Alexander +Ben +Calvin +Clarence +Doug +Frankie +Herbert +Jimmie +Karl +Leo +Leslie +Louie +Alfredo +Byron +Dwight +Jessie +Kurt +Perry +Robbie +Stuart +Arturo +Cecil +Rocky +Theodore +Wade +Francis +Gregg +Irvin +Joey +Jorge +Kirk +Lyle +Matt +Nathan +Rex +Sean +Warren +Alfonso +Bernard +Clark +Dewayne +Kerry +Leland +Marcos +Marcus +Mickey +Neil +Travis +Alejandro +Clyde +Derek +Doyle +Edwardo +Ernesto +Garry +Geoffrey +Gregorio +Gustavo +Julian +Kyle +Lewis +Lloyd +Marshall +Myron +Rodolfo +Shane +Timmy +Vernon +Bennie +Chester +Clayton +Clinton +Curt +Daryl +Donnie +Emerson +Evan +Forrest +Guadalupe +Jefferson +Johnnie +Lester +Marion +Marty +Max +Ramiro +Ross +Sterling +Abel +Alberto +Amos +Augustine +Bert +Chuck +Darrel +Elmer +Ervin +Fredrick +Grant +Guillermo +Hugh +Humberto +Jerome +Milton +Monty +Orlando +Russ +Terence +Dirk +Ed +Emilio +Enrique +Felipe +Gerard +Gilberto +Jackson +Jason +Johnson +Julius +Kee +Kris +Loren +Lynn +Marco +Mitch +Monte +Nathaniel +Nicholas +Noel +Pat +Phil +Randolph +Rod +Roland +Rudolph +Rusty +Stewart +Tod +Ty +Vince +Wallace +Wendell +Bennett +Clint +Dana +Derrick +Earnest +Edgar +Edison +Elias +Erik +Fabian +Fidel +Freeman +Harrison +Harvey +Isaac +Jerald +Justin +Manny +Pedro +Reuben +Rickey +Rodger +Salvador +Sergio +Sherman +Tad +Toby +Willard +Adolfo +Allison +Anderson +Art +Barney +Bart +Blaine +Boyd +Bryant +Buddy +Chad +Clifton +Colin +Damon +Davis +Denny +Dion +Edmund +Edmundo +Eduardo +Everett +Gerardo +Ivan +Jackie +Jasper +Julio +Kelvin +Kim +Kurtis +Les +Luke +Lupe +Mathew +Mervin +Morgan +Orville +Owen +Roderick +Ronny +Stan +Tomas +Wilfred +Wilson +Xavier +David +Michael +John +Robert +James +Mark +Richard +William +Scott +Steven +Daniel +Charles +Thomas +Paul +Joseph +Ronald +Timothy +Kevin +Kenneth +Joe +Jeffrey +Brian +Frank +Donald +Gary +Larry +George +Mike +Edward +Anthony +Steve +Christopher +Jerry +Raymond +Danny +Gregory +Eric +Randy +Douglas +Stephen +Patrick +Jose +Jeff +Todd +Phillip +Gilbert +Tony +Chris +Johnny +Jim +Terry +Dennis +Jeffery +Bruce +Peter +Tim +Keith +Manuel +Craig +Eddie +Jesus +Andrew +Martin +Greg +Roger +Troy +Carlos +Jimmy +Albert +Matthew +Arthur +Henry +Victor +Roy +Ernest +Ralph +Bill +Curtis +Alan +Randall +Tom +Bobby +Jon +Dale +Jack +Mario +Ruben +Dan +Billy +Carl +Ricky +Alfred +Russell +Allen +Wayne +Alex +Samuel +Harold +Louis +Philip +Armando +Leonard +Ray +Rick +Stanley +Walter +Barry +Vincent +Francisco +Gerald +Bradley +Fernando +Jonathan +Rodney +Antonio +Bryan +Fred +Jesse +Ricardo +Tommy +Dean +Juan +Kelly +Darrell +Jay +Benjamin +Brent +Don +Marvin +Micheal +Duane +Joel +Luis +Glenn +Lawrence +Lee +Ronnie +Rudy +Shawn +Tracy +Aaron +Bob +Marc +Arnold +Harry +Hector +Norman +Mitchell +Oscar +Dave +Ted +Ramon +Raul +Kenny +Kent +Kirk +Miguel +Adam +Andy +Darryl +Floyd +Glen +Kurt +Rene +Delbert +Lorenzo +Calvin +Ernie +Freddie +Frederick +Melvin +Vernon +Brett +Alvin +Edwin +Gabriel +Howard +Lance +Lewis +Doug +Joey +Pedro +Perry +Sam +Eugene +Francis +Franklin +Justin +Ken +Nathan +Ben +Clarence +Dwayne +Enrique +Gene +Gordon +Guy +Leo +Leroy +Matt +Orlando +Theodore +Warren +Bernard +Brad +Clifford +Dana +Daryl +Jaime +Karl +Lester +Pete +Wesley +Willie +Angel +Chuck +Ernesto +Herman +Leon +Leslie +Lloyd +Nick +Pat +Ron +Arturo +Benny +Cecil +Javier +Jimmie +Rex +Virgil +Byron +Darren +Earl +Emerson +Everett +Gregg +Kerry +Marcus +Marty +Nicholas +Robin +Wade +Alexander +Bret +Casey +Charlie +Dwight +Felipe +Frankie +Lonnie +Louie +Marcos +Rafael +Sammy +Clint +Derek +Edison +Harrison +Jerome +Jessie +Lyle +Marco +Max +Myron +Reginald +Roberto +Salvador +Travis +Alfredo +Clark +Evan +Felix +Jason +Johnnie +Jorge +Loren +Pablo +Ross +Sean +Sergio +Stewart +Terrance +Wallace +Wilson +Alberto +Alejandro +Clay +Clayton +Doyle +Garry +Gerardo +Grant +Guadalupe +Larson +Monte +Neal +Neil +Randal +Randolph +Rickey +Rob +Roland +Teddy +Tod +Vince +Wilfred +Adrian +Art +Bernie +Boyd +Clyde +Conrad +Cory +Dewayne +Eduardo +Fritz +Geoffrey +Guillermo +Herbert +Isaac +Jackie +Joaquin +Luther +Morgan +Nathaniel +Nelson +Robbie +Rory +Shane +Stuart +Terence +Tomas +Abel +Alvaro +Andres +Augustine +Bennie +Buddy +Cary +Chester +Clifton +Delvin +Ed +Fredrick +Hank +Hugh +Johnson +Kee +Kim +Leander +Leland +Lynn +Marshall +Milton +Ned +Reynaldo +Rodolfo +Rusty +Tyrone +Wally +Alfonso +Alton +Archie +Bert +Brandon +Bryce +Curt +Derrick +Dion +Domingo +Elbert +Elmer +Emery +Emilio +Erik +Freddy +Harvey +Ignacio +Ismael +Ivan +Jacob +Jess +Julio +Julius +Kyle +Manny +Mickey +Monty +Owen +Phil +Rigoberto +Roman +Ronny +Rueben +Russ +Santos +Scot +Simon +Sylvester +Tyler +Val +Willard +David +Michael +Robert +John +James +Richard +Mark +William +Scott +Steven +Daniel +Thomas +Paul +Kevin +Timothy +Joseph +Kenneth +Brian +Charles +Jeffrey +Ronald +Larry +Gary +Frank +Donald +Anthony +Mike +George +Raymond +Joe +Christopher +Gregory +Danny +Jerry +Edward +Martin +Steve +Stephen +Douglas +Eric +Tony +Jose +Manuel +Patrick +Terry +Jeff +Andrew +Todd +Victor +Randy +Dennis +Henry +Bryan +Peter +Ruben +Ernest +Troy +Gilbert +Carlos +Jim +Ricky +Roger +Bruce +Johnny +Keith +Matthew +Phillip +Greg +Jesus +Roy +Chris +Eddie +Jon +Albert +Carl +Craig +Vincent +Alan +Jack +Russell +Tom +Jimmy +Juan +Bobby +Lawrence +Ralph +Tim +Billy +Ray +Walter +Dale +Jeffery +Leonard +Dean +Jay +Wayne +Alex +Arthur +Francisco +Adam +Randall +Antonio +Bill +Darrell +Gerald +Stanley +Allen +Oscar +Curtis +Duane +Jonathan +Barry +Dan +Philip +Ramon +Rodney +Samuel +Kelly +Luis +Benjamin +Mario +Fernando +Mitchell +Fred +Glenn +Alfred +Don +Jesse +Raul +Tommy +Arnold +Rudy +Eugene +Gabriel +Rene +Tracy +Andy +Armando +Hector +Norman +Rick +Brent +Kent +Pete +Ron +Calvin +Kirk +Lance +Bradley +Darren +Lee +Lloyd +Micheal +Ronnie +Freddie +Leroy +Brad +Darryl +Harold +Louis +Miguel +Bob +Clifford +Dwayne +Gordon +Karl +Marvin +Ricardo +Frankie +Melvin +Roberto +Brett +Dave +Delbert +Gene +Harrison +Joel +Shawn +Theodore +Willie +Angel +Howard +Lorenzo +Wesley +Doug +Glen +Guy +Jimmie +Nathan +Wade +Edwin +Gregg +Harry +Ken +Sean +Enrique +Frederick +Jaime +Jason +Javier +Leo +Marc +Travis +Vernon +Ben +Benny +Ernesto +Ernie +Herbert +Joey +Lonnie +Matt +Sam +Virgil +Allan +Alvin +Cecil +Chuck +Jerome +Kurt +Kyle +Marshall +Perry +Sergio +Shane +Ted +Alfredo +Emerson +Floyd +Franklin +Kenny +Leslie +Simon +Bernard +Charlie +Clyde +Damon +Daryl +Ignacio +Lynn +Max +Pedro +Phil +Robin +Roland +Stuart +Terrance +Warren +Chad +Clayton +Francis +Freddy +Grant +Herman +Marty +Myron +Rickey +Aaron +Alexander +Clark +Derrick +Donnie +Dwight +Earl +Eduardo +Felix +Harvey +Kerry +Leon +Maurice +Nathaniel +Orlando +Randolph +Rex +Reynaldo +Rudolph +Salvador +Alfonso +Byron +Dallas +Derek +Ed +Julius +Justin +Lewis +Loren +Marcos +Marcus +Monte +Nelson +Nicholas +Nick +Timmy +Vince +Wallace +Amos +Andres +Clint +Conrad +Dana +Dewayne +Everett +Gerardo +Gilberto +Ivan +Jessie +Julian +Louie +Manny +Mathew +Milton +Pablo +Pat +Rafael +Rocky +Stewart +Terence +Alberto +Alejandro +Angelo +Augustine +Bart +Cary +Chester +Clinton +Darin +Fredrick +Guillermo +Jackie +Jody +Kelvin +Lionel +Marco +Reginald +Robbie +Ross +Rusty +Sammy +Sherman +Sylvester +Wendell +Adrian +Ambrose +Art +Arturo +Clarence +Claude +Cody +Edgar +Edison +Edmund +Felipe +Garry +Gerard +Guadalupe +Gustavo +Johnnie +Johnson +Kee +Mitch +Morgan +Neal +Raymundo +Rodolfo +Ryan +Shannon +Sheldon +Stephan +Teddy +Wilfred +Wilson +Abel +Adolfo +Benedict +Bernardo +Bradford +Buddy +Cesar +Christian +Clay +Clifton +Darrel +Dion +Domingo +Forrest +Geoffrey +Greggory +Hubert +Hugh +Isaac +Isidro +Jamie +Jefferson +Jerald +Jess +Johnathan +Jorge +Joshua +Kennith +Kim +Lester +Luke +Luther +Lyndon +Marion +Monty +Morris +Oliver +Reuben +Rob +Robby +Roman +Rosendo +Russ +Sammie +Santiago +Spencer +Theron +Trent +Ty +Tyrone +Willard +Zachary +David +Michael +John +Robert +James +Mark +Richard +William +Daniel +Thomas +Steven +Paul +Scott +Kevin +Joseph +Charles +Timothy +Kenneth +Ronald +Jeffrey +Edward +Brian +Gary +Patrick +Frank +Larry +Christopher +Gregory +Anthony +Donald +Joe +Mike +Eric +Raymond +Martin +George +Jerry +Andrew +Steve +Stephen +Keith +Matthew +Manuel +Tony +Danny +Jose +Johnny +Douglas +Todd +Randy +Victor +Gilbert +Roy +Peter +Ruben +Terry +Albert +Jeff +Troy +Chris +Phillip +Bruce +Carlos +Dennis +Jimmy +Henry +Bryan +Roger +Samuel +Jeffery +Ricky +Russell +Carl +Jack +Lawrence +Shawn +Vincent +Bill +Craig +Dale +Tom +Arthur +Darrell +Billy +Jim +Bobby +Eddie +Philip +Tim +Wayne +Jesus +Alan +Francisco +Randall +Greg +Ray +Adam +Jon +Mario +Marvin +Benjamin +Fred +Ralph +Tommy +Ernest +Rodney +Walter +Gerald +Hector +Juan +Rudy +Alex +Glenn +Harold +Jesse +Leonard +Allen +Jay +Jonathan +Micheal +Curtis +Miguel +Norman +Rick +Ronnie +Armando +Dean +Don +Duane +Leroy +Luis +Oscar +Alfred +Andy +Barry +Brent +Eugene +Gabriel +Joel +Antonio +Earl +Louis +Ramon +Rene +Aaron +Fernando +Kelly +Ricardo +Stanley +Alvin +Harry +Arnold +Bradley +Frederick +Karl +Kurt +Lance +Raul +Sam +Sean +Ted +Dan +Darren +Darryl +Howard +Kent +Brett +Clifford +Clayton +Jason +Leslie +Theodore +Brad +Glen +Leo +Melvin +Sammy +Warren +Alfonso +Herman +Mitchell +Dwayne +Ernie +Francis +Ken +Lorenzo +Pedro +Perry +Vernon +Wade +Angel +Calvin +Clarence +Delbert +Frankie +Jessie +Marc +Neil +Willie +Kenny +Lee +Leon +Marty +Pete +Roberto +Ron +Alfredo +Bob +Byron +Emerson +Gordon +Nathan +Nick +Rafael +Tracy +Adrian +Ernesto +Floyd +Jaime +Jimmie +Joey +Matt +Nathaniel +Shane +Timmy +Abel +Chad +Charlie +Dave +Doug +Gene +Gregg +Jerome +Justin +Kyle +Marco +Marcus +Nelson +Orlando +Dana +Daryl +Enrique +Herbert +Jamie +Kirk +Loren +Mathew +Nicholas +Pat +Travis +Willard +Alexander +Arturo +Benny +Bernard +Casey +Chuck +Darin +Edison +Franklin +Johnnie +Lonnie +Cliff +Clinton +Eduardo +Edwin +Felipe +Freddie +Harrison +Leland +Milton +Robbie +Robin +Rodolfo +Stuart +Terrence +Virgil +Wesley +Derek +Erik +Ervin +Felix +Gerardo +Guadalupe +Guy +Louie +Lyle +Rex +Roland +Ross +Sergio +Tod +Alberto +Art +Bradford +Bret +Cecil +Clay +Darrin +Darwin +Derrick +Dwight +Edmund +Garry +Gerard +Gilberto +Harvey +Kerry +Laurence +Leander +Lester +Lewis +Reynaldo +Ty +Wilson +Al +Augustine +Ben +Bennie +Cameron +Clint +Clyde +Cruz +Dallas +Edgar +Everett +Fabian +Grant +Ivan +Jackson +Jacob +Jorge +Julio +Julius +Kendall +Lloyd +Manny +Marcos +Max +Roderick +Roman +Stephan +Trent +Bernie +Bryon +Buddy +Christian +Clark +Claude +Cody +Damon +Dirk +Donnie +Gonzalo +Grady +Hubert +Irvin +Isidro +Ismael +Javier +Jody +Johnson +Jonathon +Julian +Kee +Luther +Lynn +Malcolm +Marion +Marshall +Neal +Pablo +Randolph +Salvador +Shannon +Stewart +Terence +Toby +Tomas +Valentino +Vince +Wilbur +Xavier +Allan +Anderson +Andres +Augustin +Bart +Benson +Bert +Blaine +Boyd +Brandon +Cary +Cole +Corey +Cornelius +Cory +Danial +Darrel +Denny +Devin +Dino +Dion +Dominic +Donny +Ed +Elliott +Elmer +Emery +Gustavo +Ignacio +Ira +Isaac +Jackie +Jefferson +Jess +Joaquin +Kim +Kip +Marlin +Monty +Preston +Randell +Reginald +Reuben +Rickey +Rob +Robby +Royce +Rusty +Samson +Scot +Shaun +Sidney +Stacy +Terrance +Tracey +Willis +Michael +David +John +Robert +James +Richard +William +Mark +Daniel +Thomas +Steven +Scott +Timothy +Paul +Joseph +Kevin +Christopher +Brian +Charles +Ronald +Anthony +Kenneth +Jeffrey +Frank +Gary +Gregory +Eric +Joe +Donald +Stephen +George +Martin +Jose +Patrick +Steve +Raymond +Edward +Mike +Andrew +Larry +Todd +Jerry +Danny +Matthew +Douglas +Peter +Tony +Keith +Troy +Arthur +Phillip +Henry +Johnny +Chris +Dennis +Samuel +Manuel +Carlos +Albert +Gilbert +Jeff +Randy +Rodney +Shawn +Billy +Craig +Roger +Terry +Darren +Jesse +Jonathan +Francisco +Lawrence +Bruce +Dale +Jeffery +Alan +Greg +Jack +Jesus +Juan +Eddie +Ricky +Roy +Vincent +Ernest +Ruben +Benjamin +Ray +Victor +Alex +Bryan +Jay +Tim +Jim +Walter +Bobby +Bradley +Jimmy +Jon +Micheal +Gerald +Philip +Ralph +Darrell +Luis +Mario +Randall +Sean +Fred +Russell +Eugene +Ramon +Adam +Barry +Brent +Leonard +Wayne +Alfred +Carl +Dean +Harold +Louis +Marvin +Ricardo +Aaron +Bill +Darryl +Gabriel +Jason +Leroy +Norman +Roberto +Tom +Tommy +Travis +Arnold +Ronnie +Andy +Curtis +Darrin +Glenn +Antonio +Lee +Brad +Alvin +Armando +Arturo +Don +Fernando +Joel +Rudy +Angel +Dan +Frederick +Karl +Lance +Lorenzo +Marty +Pedro +Raul +Rene +Duane +Hector +Kelly +Melvin +Tracy +Allen +Earl +Harry +Oscar +Glen +Lloyd +Miguel +Nathan +Shannon +Stanley +Alexander +Benny +Clarence +Herbert +Kurt +Shane +Clifford +Jessie +Nicholas +Rick +Ron +Theodore +Virgil +Wesley +Bob +Brett +Calvin +Erik +Frankie +Leo +Matt +Pete +Bret +Darin +Dave +Derek +Emerson +Jimmie +Ken +Leslie +Marc +Salvador +Stuart +Ted +Wade +Clinton +Delbert +Edwin +Freddie +Gene +Jaime +Jorge +Leland +Marco +Rafael +Roland +Vernon +Warren +Ben +Dana +Everett +Franklin +Howard +Joey +Leon +Mathew +Neal +Alfredo +Charlie +Chuck +Dwayne +Enrique +Freddy +Guy +Kirk +Milton +Nathaniel +Byron +Clint +Harrison +Kent +Mitchell +Adrian +Eduardo +Felix +Gerardo +Gordon +Guadalupe +Lonnie +Nelson +Reynaldo +Ross +Sammy +Sergio +Toby +Alfonso +Chad +Clyde +Doug +Ernesto +Ernie +Francis +Jackie +Javier +Johnnie +Kenny +Lewis +Marcos +Max +Neil +Perry +Rex +Sheldon +Stacy +Teddy +Tyrone +Abel +Ambrose +Andres +Daren +Elmer +Floyd +Guillermo +Gustavo +Hugh +Julian +Manny +Myron +Orlando +Pablo +Reginald +Rodolfo +Timmy +Willie +Alberto +Anderson +Art +Brandon +Buddy +Cecil +Chester +Clifton +Dallas +Donovan +Dwight +Grant +Gregg +Herman +Irvin +Jacob +Jamie +Joaquin +Jody +Joshua +Justin +Kyle +Louie +Lynn +Noel +Pat +Randolph +Rickey +Rob +Robin +Ryan +Santiago +Terrance +Ty +Wilson +Adolfo +Bennie +Bernardo +Christian +Clark +Clay +Cory +Daryl +Denny +Dino +Edison +Elroy +Evan +Felipe +Fredrick +Garry +Harvey +Kris +Lincoln +Luther +Marcus +Marshall +Miles +Morgan +Raymundo +Roderick +Sam +Sidney +Spencer +Wilfred +Abelardo +Abraham +Alejandro +Allan +Amos +Andre +Benson +Blaine +Blake +Boyd +Bryon +Carter +Cary +Clayton +Damon +Dane +Darwin +Delfino +Domingo +Donny +Emilio +Erick +Ervin +Isaac +Israel +Jared +Jefferson +Jess +Julius +Kim +Loren +Nick +Norbert +Preston +Randal +Rocky +Ronny +Rueben +Shaun +Tomas +Tully +Tyler +Wallace +Wilford +David +Michael +John +Robert +James +Richard +William +Mark +Daniel +Christopher +Steven +Scott +Paul +Timothy +Brian +Joseph +Anthony +Thomas +Jeffrey +Kevin +Kenneth +Frank +Charles +Ronald +Edward +Gary +Donald +Joe +Gregory +Eric +Patrick +Larry +George +Stephen +Raymond +Martin +Andrew +Jose +Todd +Douglas +Mike +Troy +Matthew +Manuel +Danny +Bryan +Steve +Jerry +Dennis +Johnny +Shawn +Peter +Roger +Keith +Randy +Chris +Phillip +Arthur +Jesus +Rodney +Victor +Albert +Gilbert +Juan +Ruben +Tony +Ernest +Terry +Jimmy +Craig +Henry +Samuel +Darrell +Carlos +Jeffery +Jonathan +Mario +Gabriel +Jeff +Jon +Carl +Jason +Ray +Vincent +Jesse +Joel +Ralph +Ricky +Roy +Russell +Marvin +Raul +Lawrence +Sean +Wayne +Bobby +Brent +Bruce +Dale +Gerald +Antonio +Benjamin +Eddie +Francisco +Luis +Norman +Alan +Dean +Fred +Tim +Walter +Armando +Bradley +Darren +Jack +Kelly +Alex +Oscar +Leonard +Randall +Travis +Aaron +Curtis +Dan +Fernando +Greg +Hector +Jim +Louis +Tommy +Allen +Bill +Duane +Frederick +Ramon +Ronnie +Adam +Jay +Nathan +Theodore +Arnold +Tom +Angel +Billy +Glenn +Marc +Melvin +Andy +Darrin +Harold +Lee +Lorenzo +Alfred +Darryl +Kent +Philip +Rene +Ricardo +Ron +Barry +Brad +Chad +Edwin +Eugene +Rudy +Miguel +Clifford +Gordon +Leroy +Micheal +Vernon +Wesley +Benny +Brett +Calvin +Ernesto +Jaime +Roberto +Warren +Alfredo +Don +Freddie +Howard +Rick +Tracy +Alexander +Frankie +Glen +Kurt +Lance +Orlando +Shane +Darin +Erik +Jerome +Julian +Karl +Mitchell +Rodolfo +Ted +Franklin +Herman +Jorge +Nicholas +Pete +Ryan +Sammy +Stuart +Wade +Abel +Alvin +Emerson +Felix +Jamie +Javier +Jimmie +Justin +Kirk +Marty +Nathaniel +Pedro +Shannon +Adrian +Bob +Derek +Enrique +Ernie +Francis +Freddy +Leon +Lloyd +Monty +Reynaldo +Stanley +Tyrone +Alberto +Alejandro +Arturo +Casey +Dana +Delbert +Dion +Edison +Guy +Harrison +Joey +Kyle +Lonnie +Virgil +Ben +Bennie +Clayton +Clinton +Darrel +Dwayne +Gene +Julio +Marco +Neal +Randolph +Roland +Terrance +Xavier +Augustine +Bernard +Cecil +Clarence +Clyde +Daryl +Dave +Earl +Elias +Everett +Floyd +Gilberto +Ignacio +Ivan +Jackie +Jessie +Jody +Julius +Kenny +Lester +Loren +Marcos +Marcus +Matt +Milton +Perry +Rafael +Sam +Teddy +Ty +Byron +Cary +Charlie +Doug +Dwight +Edgar +Emmett +Fredrick +Herbert +Ira +Leland +Lewis +Max +Rogelio +Ross +Wilfred +Willie +Alfonso +Allan +Art +Boyd +Bradford +Cornell +Cory +Cruz +Dewayne +Dirk +Doyle +Drew +Eduardo +Edwardo +Ervin +Fabian +Geoffrey +Gerardo +Gregg +Guadalupe +Harry +Irvin +Isaac +Jackson +Jacob +Jeffry +Kee +Leander +Leo +Lupe +Manny +Mathew +Nick +Preston +Ramiro +Reginald +Rex +Rob +Robbie +Sergio +Shaun +Spencer +Timmy +Vicente +Adolfo +Alonzo +Angelo +Bennett +Bert +Brandon +Bret +Chuck +Claude +Clifton +Derrick +Devin +Dick +Diego +Dominic +Garry +Gustavo +Ian +Jefferson +Joshua +Ken +Kip +Leslie +Louie +Monte +Morgan +Nelson +Noel +Pablo +Pat +Reuben +Reyes +Robin +Rudolph +Toby +Van +Wendell +Willard +Michael +David +Robert +John +James +Richard +Mark +William +Christopher +Daniel +Scott +Paul +Brian +Steven +Thomas +Timothy +Joseph +Kevin +Charles +Ronald +Jeffrey +Patrick +Eric +Kenneth +Anthony +Raymond +Frank +Edward +Gary +Gregory +Matthew +Jose +Donald +Stephen +Todd +Martin +Andrew +Douglas +Larry +George +Joe +Mike +Peter +Johnny +Manuel +Jerry +Sean +Craig +Gilbert +Shawn +Steve +Danny +Jason +Randy +Tony +Jesus +Troy +Dennis +Terry +Bryan +Chris +Jon +Keith +Roger +Albert +Arthur +Russell +Samuel +Juan +Rene +Ray +Carlos +Jack +Ruben +Victor +Darrell +Henry +Jeff +Jeffery +Jesse +Ralph +Rodney +Francisco +Jimmy +Brent +Roy +Jay +Tim +Benjamin +Carl +Gerald +Ricky +Tommy +Bruce +Adam +Billy +Ricardo +Bobby +Darren +Jonathan +Louis +Gabriel +Ramon +Wayne +Alan +Eddie +Lawrence +Rudy +Vincent +Eugene +Hector +Kelly +Luis +Mario +Phillip +Aaron +Jim +Joel +Leonard +Randall +Ronnie +Antonio +Marvin +Alex +Allen +Dale +Nathan +Walter +Bill +Bradley +Duane +Harold +Dean +Glenn +Tom +Armando +Barry +Brett +Clinton +Curtis +Ernest +Javier +Kirk +Theodore +Fred +Leroy +Melvin +Micheal +Oscar +Philip +Andy +Lee +Rick +Tracy +Alexander +Brad +Don +Fernando +Greg +Norman +Raul +Chad +Delbert +Miguel +Alfred +Dan +Derek +Franklin +Howard +Marc +Pete +Arnold +Darryl +Lance +Nicholas +Travis +Vernon +Alfredo +Leon +Roberto +Shane +Alvin +Enrique +Kurt +Kyle +Pedro +Wesley +Clifford +Harry +Loren +Reynaldo +Rodolfo +Angel +Arturo +Gene +Rex +Stacy +Virgil +Bob +Christian +Donovan +Dwayne +Edwin +Frankie +Freddy +Jaime +Leo +Lonnie +Lorenzo +Tyrone +Wade +Byron +Calvin +Darrin +Daryl +Earl +Eduardo +Glen +Harrison +Ivan +Jimmie +Leslie +Marty +Ron +Ryan +Salvador +Shannon +Stanley +Ted +Abel +Alejandro +Bernard +Damon +Darin +Ernesto +Everett +Joey +Marco +Nathaniel +Orlando +Randolph +Sergio +Ty +Warren +Benny +Bret +Dewayne +Erik +Gilberto +Jorge +Julio +Justin +Marcus +Matt +Sam +Santiago +Willie +Adrian +Bennie +Brandon +Clarence +Guadalupe +Ismael +Jerome +Marshall +Preston +Sammy +Terrance +Ben +Cesar +Clayton +Devin +Domingo +Floyd +Frederick +Gordon +Guillermo +Herman +Hugh +Jacob +Jared +Lloyd +Lynn +Marcos +Mathew +Neil +Perry +Ross +Shaun +Stuart +Willard +Adolfo +Alberto +Alfonso +Allan +Andre +Carlton +Cecil +Dave +Doug +Edison +Ernie +Ervin +Felix +Francis +Freddie +Fredrick +Gregg +Guy +Ian +Johnnie +Jonathon +Julian +Karl +Kenny +Kent +Kerry +Lester +Lewis +Mitchell +Monty +Neal +Rafael +Roderick +Simon +Teddy +Tyler +Alonzo +Benito +Clark +Clifton +Dane +Daren +Darwin +Dominic +Dwight +Emmett +Felipe +Herbert +Ignacio +Jessie +Julius +Ken +Kendall +Leland +Luke +Nick +Rudolph +Rusty +Terrell +Toby +Wilfred +Xavier +Alton +Bryant +Bryon +Cary +Casey +Chuck +Clyde +Corey +Cory +Dana +Dusty +Edgar +Emerson +Emmanuel +Esteban +Forrest +Geoffrey +Gerardo +Grant +Gustavo +Heath +Ira +Jamie +Joaquin +Jody +Joshua +Kee +Lane +Maurice +Mervin +Mickey +Morgan +Nelson +Noel +Norbert +Otis +Robin +Shon +Spencer +Stacey +Timmy +Trent +Vince +Wallace +Wilson +Michael +David +Robert +John +James +Richard +Mark +William +Christopher +Brian +Steven +Daniel +Paul +Scott +Thomas +Timothy +Charles +Joseph +Jeffrey +Ronald +Eric +Kevin +Kenneth +Anthony +Matthew +Patrick +Edward +Stephen +Frank +Gary +Raymond +Jose +Gregory +Andrew +Donald +Todd +George +Larry +Sean +Douglas +Jason +Martin +Steve +Joe +Manuel +Shawn +Bryan +Troy +Jesus +Chris +Craig +Victor +Johnny +Keith +Rodney +Terry +Jerry +Roger +Danny +Gilbert +Mike +Tony +Bobby +Samuel +Randy +Henry +Ernest +Jonathan +Dennis +Jeff +Alan +Wayne +Phillip +Albert +Billy +Juan +Lawrence +Peter +Ruben +Jeffery +Benjamin +Aaron +Carlos +Eddie +Ronnie +Francisco +Hector +Jimmy +Travis +Arthur +Darren +Tommy +Jesse +Joel +Kelly +Russell +Armando +Gabriel +Leonard +Carl +Louis +Luis +Adam +Jack +Rene +Antonio +Bradley +Darrell +Justin +Ramon +Ray +Ricardo +Rudy +Dale +Gerald +Mario +Ryan +Alex +Brent +Vincent +Dean +Oscar +Fred +Ralph +Raul +Roy +Shane +Andy +Tim +Bill +Fernando +Jon +Randall +Ricky +Alfred +Curtis +Dan +Walter +Brett +Marc +Marvin +Micheal +Alfredo +Derek +Frankie +Harold +Jaime +Lee +Melvin +Chad +Clinton +Don +Howard +Jay +Miguel +Duane +Dwayne +Ernesto +Eugene +Greg +Kirk +Ron +Leroy +Philip +Bret +Bruce +Clifford +Glenn +Guy +Lance +Rick +Tom +Allen +Barry +Benny +Darrin +Karl +Kurt +Norman +Sergio +Adrian +Alejandro +Angel +Arturo +Gordon +Jim +Loren +Nathan +Roberto +Shannon +Wesley +Abel +Brad +Erik +Guillermo +Jessie +Jody +Jorge +Kyle +Leon +Marco +Marcos +Marcus +Nathaniel +Pete +Roland +Theodore +Alvin +Andres +Cameron +Darin +Daryl +Delbert +Dustin +Edwin +Francis +Frederick +Harry +Jerome +Kent +Tracy +Vernon +Alberto +Arnold +Christian +Felix +Floyd +Franklin +Glen +Guadalupe +Herman +Ignacio +Julian +Lorenzo +Nicholas +Ted +Byron +Cary +Earl +Javier +Jimmie +Joey +Lewis +Matt +Robbie +Sam +Shaun +Warren +Alexander +Allan +Ben +Clarence +Corey +Darryl +Enrique +Fredrick +Gerardo +Gregg +Jared +Kee +Ken +Leander +Mickey +Pablo +Pedro +Rodolfo +Stacy +Stanley +Wade +Willie +Casey +Cecil +Fabian +Felipe +Jamie +Kelvin +Leo +Leslie +Lloyd +Max +Mitchell +Orlando +Rafael +Sammy +Trent +Tyrone +Clay +Damon +Darrel +Emerson +Ernie +Herbert +Jacob +Jefferson +Joaquin +Kenny +Lester +Lonnie +Marty +Mathew +Preston +Santiago +Trevor +Virgil +Alfonso +Ambrose +Bart +Brandon +Calvin +Clifton +Cody +Doug +Dwight +Edgar +Erick +Federico +Freddie +Freddy +Garrett +Geoffrey +Grant +Isaac +Jeremy +Louie +Maurice +Neil +Nelson +Nick +Rudolph +Seth +Terrence +Toby +Tyler +Adolfo +Augustine +Bert +Blaine +Cesar +Clint +Dana +Devin +Dino +Dion +Gene +Ian +Ira +Israel +Jackie +Johnnie +Julius +Kerry +Lynn +Mack +Malcolm +Milton +Monte +Monty +Noel +Pat +Ramiro +Rex +Salvador +Stacey +Stuart +Teddy +Timmy +Trenton +Wallace +Wendell +Zane +Alonzo +Anderson +Andre +Bryon +Charlie +Clayton +Clyde +Colin +Cory +Dane +Dave +Derrick +Dominic +Donovan +Doyle +Drew +Elroy +Emery +Harlan +Harrison +Hilario +Ismael +Jackson +Jasper +Jeffry +Joshua +Leland +Luke +Lyle +Merle +Norbert +Perry +Ross +Sanford +Santos +Stephan +Terence +Ty +Vicente +Xavier +Zachary +Michael +David +Robert +John +James +Richard +Christopher +Mark +William +Daniel +Brian +Scott +Steven +Thomas +Jeffrey +Joseph +Paul +Charles +Jason +Timothy +Kenneth +Anthony +Eric +Ronald +Kevin +Matthew +Jose +Stephen +Gary +Edward +Gregory +Patrick +Donald +Frank +Sean +George +Todd +Raymond +Shawn +Jonathan +Troy +Larry +Manuel +Douglas +Martin +Chris +Craig +Andrew +Carlos +Peter +Bryan +Joe +Jerry +Mike +Danny +Johnny +Jesus +Juan +Ruben +Darren +Keith +Randy +Dennis +Phillip +Ernest +Albert +Victor +Samuel +Tony +Mario +Francisco +Ralph +Gabriel +Steve +Lawrence +Russell +Terry +Gilbert +Joel +Justin +Benjamin +Brent +Henry +Jeffery +Marc +Travis +Aaron +Jay +Luis +Ramon +Allen +Arthur +Billy +Bradley +Carl +Harold +Jon +Shane +Antonio +Eddie +Jesse +Vincent +Wayne +Jimmy +Lance +Louis +Fernando +Jeff +Roger +Darrell +Derek +Hector +Leonard +Ricky +Bruce +Dale +Miguel +Roy +Alex +Alfred +Angel +Armando +Brett +Gerald +Jack +Lee +Rodney +Adam +Chad +Curtis +Philip +Ricardo +Ronnie +Rudy +Ryan +Bobby +Kirk +Raul +Rene +Alejandro +Ray +Dean +Eugene +Frederick +Javier +Tommy +Alan +Jorge +Kelly +Marvin +Randall +Tracy +Walter +Brad +Glenn +Clifford +Darrin +Duane +Kyle +Micheal +Roberto +Alvin +Clinton +Dan +Howard +Jim +Oscar +Bill +Calvin +Leon +Nathan +Brandon +Kurt +Leroy +Loren +Norman +Pedro +Shannon +Andy +Arnold +Arturo +Corey +Darin +Ernesto +Freddie +Glen +Stanley +Tim +Tom +Darryl +Don +Dwayne +Guy +Jeremy +Karl +Theodore +Wade +Barry +Delbert +Fred +Gene +Greg +Alexander +Alfredo +Cory +Dustin +Earl +Erik +Harry +Kent +Marcos +Orlando +Tyrone +Adrian +Floyd +Franklin +Geoffrey +Jaime +Wesley +Byron +Frankie +Joey +Leo +Matt +Melvin +Ron +Sam +Alberto +Donovan +Doug +Garrett +Lorenzo +Marco +Nathaniel +Nicholas +Rick +Tyler +Vernon +Casey +Christian +Damon +Felix +Gerardo +Gordon +Ivan +Jamie +Joshua +Lester +Lonnie +Marcus +Mitchell +Pete +Trevor +Virgil +Warren +Cameron +Clarence +Daryl +Eduardo +Edwin +Emerson +Ervin +Leslie +Nelson +Rafael +Roland +Ross +Sammy +Spencer +Ted +Abel +Bernard +Clint +Dwight +Enrique +Gilberto +Ian +Jimmie +Johnnie +Kenny +Lloyd +Luke +Lyle +Marshall +Mathew +Pablo +Robin +Seth +Timmy +Toby +Abraham +Bret +Bryon +Charlie +Chuck +Conrad +Denny +Francis +Guillermo +Gustavo +Herman +Ira +Isaac +Julio +Kerry +Marty +Max +Reginald +Shaun +Vance +Angelo +Augustine +Blaine +Bob +Garry +Gregg +Guadalupe +Herbert +Ignacio +Irvin +Jared +Jefferson +Jerald +Jerome +Kee +Milton +Neil +Noel +Perry +Preston +Randolph +Robbie +Robby +Santiago +Sheldon +Teddy +Terrance +Trent +Waylon +Willie +Abram +Alfonso +Allan +Andre +Andres +Bart +Benito +Clayton +Damian +Dave +Davis +Dino +Dion +Dominic +Eldon +Elroy +Ernie +Grant +Hugh +Jessie +Jody +Laurence +Rex +Reynaldo +Scot +Sergio +Terrence +Ty +Vicente +Adolfo +Anderson +Barton +Ben +Benny +Boyd +Chester +Curt +Dallas +Dana +Dane +Darwin +Dewey +Elijah +Ethan +Fabian +Fredrick +Harley +Heath +Humberto +Jacob +Jake +Joaquin +Johnathan +Julian +Julius +Lane +Lewis +Manny +Marcello +Marlin +Owen +Randal +Robb +Rodolfo +Rory +Rusty +Sonny +Stewart +Terence +Titus +Tobin +Tod +Michael +David +Robert +James +John +Richard +Christopher +William +Steven +Jason +Mark +Daniel +Brian +Thomas +Scott +Jeffrey +Paul +Joseph +Eric +Kevin +Charles +Timothy +Matthew +Ronald +Anthony +Kenneth +Shawn +Stephen +Jose +Andrew +Frank +Patrick +Gary +Edward +Gregory +Donald +Troy +Sean +Carlos +Todd +Aaron +Juan +Joe +Raymond +Jonathan +Jerry +Manuel +Keith +Randy +George +Larry +Chad +Travis +Chris +Jesus +Jesse +Bryan +Jeremy +Craig +Danny +Mario +Martin +Peter +Ruben +Russell +Dennis +Shane +Albert +Douglas +Francisco +Mike +Vincent +Tony +Gilbert +Lance +Luis +Benjamin +Billy +Rene +Steve +Victor +Henry +Justin +Phillip +Samuel +Arthur +Gabriel +Jeffery +Jimmy +Johnny +Marc +Brandon +Darrell +Darren +Jon +Bobby +Derek +Marcus +Roy +Adam +Walter +Brent +Ernest +Leonard +Raul +Roger +Tommy +Fernando +Lee +Alex +Armando +Dale +Kelly +Lawrence +Dean +Gerald +Jeff +Rodney +Wayne +Bradley +Philip +Ramon +Brett +Bruce +Carl +Jack +Ralph +Alfred +Glenn +Randall +Ricardo +Ricky +Roberto +Curtis +Joel +Micheal +Alan +Frederick +Kyle +Nathan +Ronnie +Terry +Wesley +Hector +Jay +Eddie +Ray +Alexander +Allen +Bill +Clinton +Antonio +Jaime +Jim +Leroy +Marco +Nicholas +Shannon +Tyrone +Andy +Arnold +Cory +Don +Erik +Fred +Harold +Marvin +Norman +Oscar +Rudy +Angel +Duane +Greg +Miguel +Tom +Alberto +Barry +Christian +Leon +Rick +Alejandro +Delbert +Guy +Pete +Roland +Wade +Warren +Darrin +Louis +Sergio +Ben +Clint +Cody +Javier +Karl +Neil +Theodore +Byron +Clifford +Harry +Joey +Ryan +Arturo +Brad +Casey +Corey +Dan +Dustin +Earl +Francis +Garrett +Glen +Jamie +Jared +Jorge +Kurt +Loren +Lyle +Ted +Tracy +Trevor +Adrian +Derrick +Ernesto +Ernie +Eugene +Geoffrey +Grant +Julian +Leslie +Lonnie +Marcos +Melvin +Nathaniel +Rodolfo +Abel +Alvin +Calvin +Dwayne +Edgar +Gerardo +Herbert +Joshua +Lorenzo +Mathew +Pedro +Roman +Stanley +Tim +Alfredo +Damon +Darin +Donovan +Enrique +Franklin +Freddie +Howard +Jerome +Jimmie +Julio +Kent +Kirk +Andre +Bret +Darryl +Dwight +Fredrick +Jody +Leo +Rafael +Shaun +Toby +Virgil +Andres +Benny +Brady +Dominic +Edwin +Felix +Floyd +Frankie +Gordon +Guillermo +Isaac +Jessie +Leland +Lewis +Nick +Reginald +Spencer +Tomas +Trent +Cesar +Chester +Clayton +Daryl +Devin +Donnie +Eduardo +Gilberto +Heath +Ian +Jefferson +Louie +Max +Myron +Omar +Perry +Robin +Rusty +Salvador +Sterling +Vernon +Adolfo +Alfonso +Alonzo +Bryon +Charlie +Chuck +Dallas +Dave +Ivan +Jerald +Kenny +Matt +Neal +Preston +Reynaldo +Sammy +Willie +Clarence +Clay +Damian +Darwin +Dino +Doyle +Emerson +Ethan +Everett +Jacob +Jarrod +Jayson +Leonardo +Marty +Mickey +Milton +Mitchell +Morgan +Orlando +Ramiro +Reed +Ron +Rudolph +Sam +Santiago +Sonny +Stacey +Vicente +Willard +Xavier +Allan +Augustine +Bernardo +Blaine +Bryant +Cameron +Clark +Clifton +Clyde +Dana +Dirk +Edison +Eldon +Esteban +Gustavo +Herman +Ignacio +Ismael +Jess +Ken +Kerry +Leander +Lenny +Lloyd +Lynn +Malcolm +Noel +Norberto +Pablo +Quentin +Ross +Terrance +Ty +Tyler +Wendell +Adan +Anderson +Antony +Benito +Blake +Boyd +Bryce +Cary +Cecil +Claude +Cornelius +Darien +Denny +Devon +Dusty +Emmett +Erich +Erick +Fidel +Gene +Guadalupe +Humberto +Ira +Israel +Jackie +Jeffry +Johnnie +Julius +Kelvin +Lester +Lucas +Marlin +Marlon +Marshall +Mason +Noah +Reuben +Rogelio +Royce +Scot +Stewart +Teddy +Terrence +Trenton +Val +Vince +Michael +David +John +Robert +James +Christopher +Jason +Richard +William +Brian +Daniel +Steven +Scott +Mark +Eric +Matthew +Kevin +Thomas +Paul +Jeffrey +Joseph +Timothy +Anthony +Charles +Ronald +Shawn +Jose +Edward +Andrew +Sean +Kenneth +Stephen +Gregory +Gary +Todd +Donald +Chad +George +Aaron +Patrick +Raymond +Manuel +Frank +Bryan +Jonathan +Troy +Jeremy +Martin +Joe +Larry +Jerry +Keith +Carlos +Ryan +Chris +Juan +Shane +Justin +Peter +Adam +Brandon +Craig +Gabriel +Douglas +Samuel +Travis +Jesus +Joshua +Victor +Albert +Brent +Francisco +Johnny +Tony +Jeffery +Derek +Arthur +Mario +Randy +Jimmy +Lance +Benjamin +Danny +Jesse +Joel +Marc +Vincent +Bradley +Gilbert +Phillip +Carl +Dennis +Rene +Lawrence +Nathan +Russell +Steve +Henry +Darrell +Jon +Mike +Ramon +Ruben +Brett +Miguel +Billy +Ricky +Luis +Rodney +Darren +Ernest +Roy +Wayne +Alex +Terry +Alan +Bobby +Clinton +Antonio +Marcus +Ricardo +Ralph +Jack +Fernando +Gerald +Raul +Roberto +Ronnie +Dale +Jay +Kelly +Leonard +Oscar +Randall +Ray +Dustin +Philip +Brad +Christian +Erik +Ernesto +Alejandro +Alexander +Arturo +Harold +Lee +Marco +Nicholas +Curtis +Eddie +Micheal +Tommy +Angel +Glen +Jeff +Kyle +Trevor +Walter +Warren +Adrian +Alfred +Allen +Armando +Fred +Greg +Jaime +Jamie +Shannon +Theodore +Don +Frederick +Glenn +Javier +Lloyd +Norman +Casey +Dan +Sergio +Duane +Louis +Nathaniel +Roger +Wade +Corey +Geoffrey +Ian +Jim +Lorenzo +Marcos +Rudy +Vernon +Barry +Byron +Calvin +Clint +Damon +Frankie +Hector +Jerome +Jorge +Julian +Kent +Loren +Tim +Tyrone +Wesley +Eduardo +Franklin +Jared +Matt +Roman +Salvador +Cory +Delbert +Derrick +Kirk +Marvin +Melvin +Rick +Andy +Arnold +Bill +Darryl +Daryl +Dwayne +Enrique +Jody +Rafael +Toby +Bruce +Clifford +Dean +Earl +Eugene +Freddie +Gene +Guy +Isaac +Lonnie +Mathew +Pedro +Shad +Cody +Darrin +Dominic +Dwight +Erick +Everett +Felix +Garrett +Harry +Howard +Jacob +Leo +Leroy +Lester +Neil +Roland +Shaun +Tom +Tracy +Tyler +Virgil +Emerson +Gerardo +Leon +Noah +Noel +Ted +Alfredo +Alvin +Andre +Augustine +Bret +Clayton +Darin +Emmett +Herbert +Jayson +Joey +Mitchell +Orlando +Pete +Reuben +Reynaldo +Rodolfo +Sammy +Stanley +Timmy +Wallace +Alberto +Alfonso +Bob +Cesar +Donnie +Felipe +Francis +Ignacio +Jackson +Jessie +Joaquin +Johnathan +Julio +Karl +Marty +Pablo +Scot +Scotty +Spencer +Trent +Willie +Zachary +Alonzo +Bernard +Bradford +Bryon +Chance +Clarence +Clifton +Conrad +Dallas +Dane +Devin +Dion +Donovan +Erich +Ernie +Floyd +Grant +Guadalupe +Ismael +Israel +Ivan +Jake +Kurt +Marlin +Monte +Perry +Santiago +Seth +Abel +Bart +Ben +Benny +Bert +Billie +Blaine +Brady +Cecil +Dirk +Edwin +Elias +Guillermo +Harrison +Herman +Jefferson +Jimmie +Johnnie +Ken +Kenny +Lewis +Marlon +Maurice +Preston +Randolph +Reginald +Rex +Ross +Rudolph +Rusty +Sonny +Sterling +Stuart +Trenton +Ty +Tyson +Vicente +Waylon +Adolfo +Alton +Andres +Beau +Bennie +Cameron +Carter +Chadwick +Darrel +Doug +Emilio +Esteban +Evan +Fabian +Garry +Gavin +Ira +Jess +Kerry +Kristopher +Leslie +Lynn +Max +Nick +Quentin +Rob +Robby +Robin +Rocky +Rojelio +Sherman +Stephan +Stevie +Stewart +Terrence +Willard +Amos +Austin +Benito +Blake +Charlie +Curt +Damian +Domingo +Edwardo +Emery +Erin +Estevan +Freddy +Fredrick +Gordon +Grady +Harvey +Heath +Humberto +Irvin +Jarrod +Jermaine +Jordan +Kristian +Leander +Lucas +Luke +Marion +Myron +Omar +Robbie +Rogelio +Shon +Simon +Stacy +Terrance +Tomas +Truman +Wilfred +Xavier +Michael +Christopher +David +Robert +James +Jason +John +Brian +William +Daniel +Richard +Steven +Mark +Scott +Matthew +Eric +Joseph +Thomas +Jeffrey +Anthony +Kevin +Paul +Jose +Timothy +Charles +Chad +Shawn +Sean +Andrew +Gregory +Edward +Kenneth +Aaron +Patrick +Stephen +Justin +Ronald +Frank +Gary +Bryan +Ryan +Travis +Juan +Donald +Francisco +Jesus +Brandon +George +Jeremy +Jerry +Raymond +Manuel +Gabriel +Jonathan +Carlos +Troy +Todd +Jesse +Douglas +Joshua +Larry +Joe +Benjamin +Adam +Dennis +Keith +Samuel +Victor +Albert +Johnny +Antonio +Danny +Shane +Craig +Luis +Phillip +Peter +Mario +Chris +Martin +Randy +Gilbert +Jeffery +Ricardo +Ruben +Nathan +Rene +Darrell +Jon +Ramon +Tony +Vincent +Hector +Lance +Brett +Roger +Terry +Oscar +Wayne +Arthur +Billy +Jack +Jimmy +Russell +Adrian +Carl +Alexander +Marc +Roy +Shannon +Bradley +Brent +Darren +Raul +Tommy +Bobby +Ernest +Jacob +Derek +Erik +Kelly +Miguel +Rodney +Fernando +Alejandro +Angel +Cory +Duane +Dustin +Joel +Mike +Nathaniel +Philip +Kyle +Louis +Christian +Dean +Ernesto +Nicholas +Randall +Alfred +Eddie +Jay +Marcus +Roman +Rudy +Walter +Alan +Alex +Curtis +Enrique +Frederick +Leonard +Armando +Casey +Clinton +Lee +Ricky +Roberto +Bruce +Damon +Henry +Jamie +Lawrence +Micheal +Arturo +Eugene +Gerald +Javier +Marco +Ralph +Steve +Wesley +Allen +Greg +Jaime +Tracy +Vernon +Dale +Fred +Jared +Karl +Sergio +Theodore +Virgil +Brad +Calvin +Dominic +Frankie +Marvin +Pedro +Ray +Arnold +Ben +Eduardo +Heath +Ivan +Jorge +Ronnie +Clayton +Clifford +Clint +Glen +Glenn +Corey +Jeff +Kirk +Lorenzo +Melvin +Seth +Shaun +Wade +Alberto +Andy +Bret +Byron +Cesar +Julian +Leroy +Rafael +Trent +Tyler +Barry +Cody +Dan +Delbert +Gene +Geoffrey +Gerardo +Jody +Leon +Marcos +Neil +Pete +Stanley +Alfonso +Alfredo +Andre +Daryl +Don +Dwayne +Kristopher +Leslie +Lonnie +Loren +Orlando +Simon +Tyrone +Warren +Charlie +Earl +Fredrick +Gregg +Guy +Harold +Howard +Jerome +Jessie +Jonathon +Kent +Mitchell +Preston +Rudolph +Tim +Cedric +Derrick +Dylan +Evan +Francis +Herman +Ian +Israel +Leo +Max +Myron +Norman +Omar +Rick +Roland +Ron +Ted +Terrence +Zachary +Alvin +Andres +Chester +Clarence +Clyde +Darin +Dewayne +Donnie +Donovan +Ervin +Felix +Garrett +Harvey +Isaac +Jayson +Jim +Joey +Leander +Mathew +Scotty +Toby +Trevor +Benson +Bradford +Brady +Bryant +Bryce +Cameron +Damian +Felipe +Freddie +Harry +Jeremiah +Jimmie +Roderick +Sonny +Spencer +Terrance +Tom +Tomas +Vicente +Abelardo +Adolfo +Allan +Bernardo +Bert +Bill +Blake +Conrad +Cruz +Devin +Dwight +Edwardo +Edwin +Erick +Ernie +Everett +Floyd +Guadalupe +Gustavo +Harrison +Ismael +Jackie +Jefferson +Julio +Lamont +Luke +Manny +Monte +Morgan +Neal +Noah +Rodolfo +Sam +Sammy +Saul +Ty +Vance +Wendell +Wyatt +Anderson +Beau +Benny +Bryon +Cecil +Claudio +Dana +Dino +Dion +Doug +Edgar +Eldon +Eli +Elroy +Esteban +Ethan +Freddy +Genaro +Guillermo +Johnnie +Lester +Lincoln +Lloyd +Marlon +Merlin +Nick +Noel +Pablo +Reginald +Reuben +Rex +Rob +Salvador +Santiago +Shon +Stuart +Willie +Wilson +Augustine +Aurelio +Chance +Cole +Dallas +Elias +Elmer +Erwin +Estevan +Fabian +Faron +Franklin +Garry +Gordon +Grady +Grant +Herbert +Jake +Jarvis +Johnathan +Kee +Kurt +Lamar +Leland +Lionel +Lynn +Marshall +Micah +Milton +Monty +Morris +Noe +Nolan +Ramiro +Rodrigo +Rogelio +Rosendo +Rudolfo +Santos +Stacy +Thaddeus +Wallace +Will +Xavier +Michael +Christopher +David +Jason +Robert +James +John +Daniel +Brian +Richard +William +Joseph +Matthew +Eric +Scott +Steven +Mark +Anthony +Thomas +Kevin +Jose +Aaron +Paul +Timothy +Jeffrey +Charles +Shawn +Adam +Andrew +Ryan +Justin +Gregory +Joshua +Brandon +Jonathan +Sean +Kenneth +Jesus +Chad +Jeremy +Edward +Ronald +Stephen +Bryan +Frank +Carlos +Manuel +Donald +Patrick +Travis +Benjamin +Francisco +Juan +Shane +Keith +Gary +Gabriel +George +Troy +Nathan +Raymond +Todd +Victor +Larry +Jerry +Jesse +Samuel +Craig +Martin +Peter +Randy +Danny +Dennis +Joe +Johnny +Phillip +Brent +Mario +Joel +Tony +Douglas +Luis +Russell +Marcus +Ruben +Albert +Arthur +Antonio +Armando +Roberto +Wayne +Hector +Roy +Ernest +Gilbert +Javier +Miguel +Philip +Jacob +Lance +Ramon +Adrian +Jeffery +Terry +Angel +Bradley +Brett +Jaime +Darren +Leonard +Nicholas +Rene +Alexander +Chris +Damon +Eddie +Jon +Oscar +Ronnie +Clinton +Jorge +Kyle +Randall +Ricardo +Tommy +Henry +Jared +Jimmy +Nathaniel +Steve +Vincent +Carl +Erik +Gerald +Marc +Alejandro +Derek +Eugene +Fernando +Roger +Sergio +Curtis +Jack +Kelly +Raul +Bobby +Darrell +Wesley +Alan +Alex +Dale +Dustin +Marco +Billy +Rodney +Zachary +Alfred +Christian +Harold +Jamie +Marvin +Rudy +Alfredo +Lee +Melvin +Ray +Andy +Lawrence +Mike +Walter +Howard +Jay +Neil +Salvador +Tyrone +Alberto +Allen +Alvin +Calvin +Dan +Dean +Frederick +Kirk +Kristopher +Louis +Orlando +Rafael +Arnold +Brad +Clint +Delbert +Duane +Joey +Micheal +Shannon +Cody +Cory +Felix +Fred +Kent +Lonnie +Shaun +Tracy +Arturo +Bruce +Casey +Clifford +Damian +Daryl +Eduardo +Enrique +Ernesto +Glenn +Ian +Jessie +Leroy +Trevor +Alfonso +Frankie +Freddie +Greg +Heath +Isaac +Jayson +Jeremiah +Lorenzo +Ralph +Ricky +Seth +Vernon +Virgil +Wade +Warren +Clayton +Derrick +Donovan +Earl +Elias +Guillermo +Harry +Loren +Marcos +Roland +Toby +Tyler +Bill +Boyd +Cesar +Felipe +Gordon +Jarrod +Marty +Theodore +Brady +Cameron +Dwayne +Gustavo +Ivan +Jerome +Jim +Josh +Julian +Kurt +Leon +Pedro +Roman +Spencer +Terrance +Tyson +Barry +Bernard +Bret +Colby +Corey +Darin +Darrin +Franklin +Geoffrey +Gerardo +Jefferson +Jody +Mathew +Tom +Willie +Xavier +Abel +Allan +Byron +Dallas +Edwin +Eli +Emilio +Erick +Ernie +Grant +Guy +Herman +Johnathan +Leander +Leland +Pete +Preston +Rodolfo +Unknown +Andre +Andres +Augustine +Ben +Bryon +Clarence +Colin +Dana +Dion +Emmett +Evan +Everett +Garrett +Gene +Jeff +Karl +Marshall +Matt +Max +Milton +Nick +Norman +Omar +Pablo +Randolph +Rudolph +Santiago +Ted +Tomas +Bart +Bob +Brendan +Bryant +Chester +Edwardo +Emerson +Glen +Harrison +Herbert +Ignacio +Jackson +Jarvis +Joaquin +Julio +Lewis +Lloyd +Malcolm +Maurice +Mitchell +Nelson +Oliver +Quincy +Rex +Reynaldo +Sam +Sherwin +Simon +Stacy +Stanley +Stuart +Ty +Zane +Adolfo +Benny +Brenton +Bryce +Buddy +Cruz +Damien +Darryl +Dewayne +Don +Dwight +Guadalupe +Heriberto +Jonathon +Julius +Kris +Leslie +Levi +Louie +Luke +Luther +Lynn +Marlon +Micah +Owen +Reginald +Rocky +Rogelio +Santos +Scotty +Terence +Tim +Trent +Vicente +Waylon +Al +Ambrose +Aron +Benson +Bobbie +Brain +Branden +Clay +Conrad +Daren +Donnie +Doug +Dylan +Edgar +Efrain +Efren +Elmer +Elton +Erin +Ervin +Floyd +Forrest +Freddy +Garrison +Harvey +Hubert +Humberto +Ismael +Israel +Jackie +Jake +Jarrett +Jasper +Jed +Jerald +Jeromy +Jimmie +Jonah +Jonas +Jordan +Kenny +Keven +Leo +Monty +Morgan +Neal +Noel +Octavio +Pat +Percy +Perry +Reed +Reuben +Rick +Rosario +Ross +Russel +Sammy +Shad +Sheldon +Shon +Sonny +Sterling +Teddy +Timmy +Trenton +Vance +Wilson +Michael +Jason +Christopher +David +Robert +James +John +Brian +Daniel +Matthew +Richard +William +Joseph +Eric +Steven +Scott +Mark +Jeffrey +Joshua +Jose +Aaron +Thomas +Paul +Ryan +Jeremy +Anthony +Adam +Justin +Kevin +Timothy +Charles +Shawn +Andrew +Chad +Sean +Kenneth +Brandon +Benjamin +Stephen +Jonathan +Donald +Juan +Carlos +Jesus +Manuel +Gregory +Patrick +Gabriel +Bryan +Travis +George +Nathan +Gary +Raymond +Francisco +Edward +Ronald +Shane +Todd +Frank +Jesse +Samuel +Jacob +Douglas +Antonio +Joe +Mario +Keith +Martin +Craig +Troy +Luis +Ruben +Victor +Peter +Larry +Johnny +Phillip +Arthur +Randy +Nathaniel +Ricardo +Roberto +Dennis +Jerry +Miguel +Ramon +Bobby +Bradley +Armando +Alexander +Jared +Gilbert +Jamie +Roy +Adrian +Jeffery +Jorge +Terry +Danny +Raul +Tony +Alex +Dustin +Marcus +Russell +Lance +Vincent +Clinton +Derek +Fernando +Angel +Chris +Christian +Darren +Henry +Rene +Albert +Billy +Darrell +Jimmy +Kelly +Lee +Brett +Ernest +Jack +Kyle +Marc +Steve +Wayne +Alejandro +Joel +Micheal +Nicholas +Philip +Roger +Rudy +Sergio +Walter +Dale +Ian +Jon +Allen +Casey +Javier +Brad +Jaime +Tommy +Hector +Louis +Marvin +Oscar +Alberto +Brent +Erik +Gerald +Carl +Orlando +Pedro +Rodney +Duane +Felix +Lawrence +Wesley +Clayton +Corey +Derrick +Eugene +Guillermo +Heath +Kristopher +Leon +Ronnie +Cory +Eduardo +Enrique +Harold +Marco +Mike +Shannon +Eddie +Ernesto +Jay +Julio +Ralph +Roman +Tyler +Arturo +Cody +Damon +Frederick +Leonard +Loren +Omar +Rafael +Ray +Ricky +Wade +Alfred +Clint +Curtis +Isaac +Jarrod +Marcos +Zachary +Abel +Andres +Guy +Jeremiah +Jerome +Mitchell +Randall +Seth +Clifford +Darin +Delbert +Donovan +Jeff +Kent +Norman +Spencer +Toby +Alan +Alfonso +Arnold +Benny +Byron +Calvin +Cesar +Esteban +Jake +Lorenzo +Roland +Alfredo +Alvin +Cameron +Dominic +Earl +Geoffrey +Glenn +Jessie +Jim +Julian +Kirk +Pete +Trevor +Tyrone +Tyson +Xavier +Andy +Bruce +Dean +Erick +Floyd +Fred +Gerardo +Glen +Ivan +Jarrett +Joaquin +Neil +Rodolfo +Salvador +Theodore +Willie +Ben +Dewayne +Elton +Gilberto +Guadalupe +Howard +Josh +Kenny +Ted +Vernon +Andre +Damian +Fabian +Felipe +Garrett +Herbert +Joey +Kurt +Leland +Leroy +Leslie +Lonnie +Lucas +Pablo +Reuben +Sam +Shaun +Tracy +Trent +Bill +Franklin +Gordon +Greg +Herman +Ignacio +Jayson +Johnathan +Karl +Melvin +Neal +Reginald +Reynaldo +Rick +Rolando +Santiago +Tim +Tom +Vicente +Warren +Austin +Brady +Bryce +Clarence +Colby +Dallas +Dwayne +Edwin +Elias +Erin +Ethan +Federico +Ismael +Jody +Kerry +Lester +Marlon +Marty +Mathew +Rogelio +Sonny +Stephan +Stuart +Abraham +Bart +Blake +Bryon +Chance +Damien +Damion +Darryl +Daryl +Don +Dwight +Frankie +Gene +Grant +Harrison +Harry +Jerrod +Jess +Jonathon +Jordan +Kory +Lionel +Lloyd +Lyle +Marshall +Maurice +Max +Micah +Rex +Robin +Sammy +Shad +Sheldon +Simon +Stewart +Terrance +Adolfo +Augustine +Barry +Caleb +Chester +Clay +Dan +Diego +Dominick +Dusty +Efren +Eli +Emery +Freddie +Heriberto +Israel +Jerald +Jerrold +Johnnie +Lamar +Leander +Leo +Leonardo +Lewis +Malcolm +Noah +Noe +Noel +Preston +Raymundo +Reggie +Ron +Ross +Saul +Sky +Stefan +Wilbert +Will +Adan +Allan +Arnoldo +Ashley +Benito +Blair +Bob +Branden +Brandt +Bruno +Darwin +Devon +Ernie +German +Gonzalo +Issac +Jarod +Jean +Jefferson +Jeramy +Jimmie +Julius +Kim +Leif +Lemuel +Levi +Louie +Lowell +Mauricio +Morgan +Morris +Murphy +Nick +Oliver +Owen +Quentin +Raphael +Rigoberto +Royce +Rueben +Samson +Santos +Stacy +Stanley +Terence +Terrence +Tomas +Ty +Virgil +Wallace +Wyatt +Michael +Jason +David +Christopher +Robert +Daniel +John +James +Brian +Matthew +Richard +William +Joseph +Steven +Eric +Scott +Aaron +Jeremy +Mark +Ryan +Joshua +Anthony +Jose +Jeffrey +Thomas +Kevin +Paul +Justin +Andrew +Timothy +Charles +Jonathan +Shawn +Kenneth +Adam +Benjamin +Brandon +Chad +Bryan +Juan +Sean +Gabriel +Nathan +Travis +Stephen +Gregory +Jesus +Manuel +Carlos +Edward +Francisco +Frank +Jesse +George +Ronald +Gary +Jacob +Patrick +Todd +Raymond +Samuel +Donald +Martin +Shane +Mario +Joe +Phillip +Victor +Douglas +Bradley +Dennis +Gilbert +Jerry +Luis +Peter +Albert +Miguel +Danny +Ruben +Troy +Armando +Keith +Larry +Craig +Antonio +Johnny +Jared +Roy +Marc +Ricardo +Roberto +Russell +Tony +Marcus +Philip +Derek +Dustin +Jimmy +Carl +Adrian +Brett +Casey +Erik +Fernando +Oscar +Ramon +Brent +Henry +Jamie +Javier +Joel +Jorge +Raul +Billy +Jaime +Jeffery +Alan +Darrell +Vincent +Bobby +Hector +Randall +Seth +Terry +Tommy +Cameron +Chris +Ernest +Kyle +Roger +Arthur +Lawrence +Marcos +Randy +Corey +Curtis +Enrique +Jay +Marco +Ralph +Ricky +Rudy +Eduardo +Gerald +Rafael +Alejandro +Clinton +Dwayne +Eugene +Isaac +Nathaniel +Rene +Wayne +Allen +Eddie +Micheal +Sergio +Ian +Jack +Kristopher +Nicholas +Alexander +Christian +Cody +Damian +Gerardo +Louis +Orlando +Tyler +Wesley +Zachary +Bruce +Cory +Damon +Jon +Kelly +Leonard +Alex +Ernesto +Lee +Ray +Alfred +Andres +Brad +Darren +Donovan +Harold +Heath +Trevor +Tyson +Andy +Angel +Duane +Jerome +Pedro +Spencer +Tyrone +Dana +Derrick +Geoffrey +Gilberto +Jayson +Leroy +Lorenzo +Ronnie +Shannon +Steve +Wade +Cesar +Clifford +Clint +Frederick +Neil +Rodney +Alfredo +Alvin +Frankie +Garrett +Jarrod +Jeremiah +Jessie +Julio +Toby +Alfonso +Arturo +Byron +Dominic +Harry +Ivan +Karl +Leland +Micah +Rodolfo +Roman +Warren +Esteban +Julian +Lewis +Lucas +Max +Nick +Salvador +Trent +Walter +Xavier +Alberto +Andre +Arnold +Charlie +Clayton +Darrin +Dean +Jim +Jimmie +Johnathan +Lance +Marvin +Mitchell +Abraham +Calvin +Francis +Fred +Kurt +Leo +Loren +Mason +Melvin +Moses +Norman +Roland +Ross +Theodore +Blake +Brady +Bret +Bryon +Dale +Darin +Ethan +Evan +Felipe +Herbert +Israel +Jefferson +Mathew +Rocky +Simon +Ted +Tom +Vernon +Abel +Barry +Bill +Earl +Fabian +Felix +Franklin +Grant +Guadalupe +Herman +Howard +Jeff +Kirk +Leonardo +Marty +Maurice +Mike +Nelson +Omar +Pete +Rick +Rogelio +Santiago +Virgil +Adan +Alton +Austin +Bernardo +Brendon +Dallas +Devin +Don +Edgar +Erick +Glenn +Guillermo +Joey +Jordan +Levi +Myron +Pablo +Rodrigo +Rusty +Shaun +Stanley +Stefan +Tomas +Vicente +Bert +Colby +Dan +Davis +Dwight +Dylan +Eli +Elias +Floyd +Forrest +Guy +Harrison +Jonathon +Leon +Leslie +Lloyd +Noah +Noel +Oliver +Philbert +Preston +Reginald +Sammy +Stacy +Terrance +Ty +Willie +Allan +Alonzo +Barrett +Beau +Ben +Caleb +Carlo +Chance +Clifton +Colin +Damien +Daryl +Delbert +Dusty +Edwardo +Edwin +Emery +Ernie +Fredrick +Gordon +Greg +Ismael +Jody +Josh +Luke +Lyle +Malcolm +Marlon +Monty +Perry +Phil +Quincy +Quinn +Reuben +Reynaldo +Roderick +Sheldon +Tracy +Anderson +Archie +Benny +Bernard +Blaine +Branden +Bronson +Bryce +Buddy +Cecil +Clarence +Clay +Cornelius +Coy +Cruz +Damion +Darryl +Dax +Denny +Dewayne +Donny +Drew +Edmund +Efren +Elijah +Elton +Emilio +Erin +Everett +Freddie +Gene +German +Gregorio +Harvey +Hugo +Jake +Jaron +Jeremey +Jerrod +Josue +Kendall +Kerry +Kory +Lamar +Lester +Lionel +Louie +Morgan +Raymundo +Robin +Rolando +Rudolph +Sam +Sonny +Stacey +Stuart +Tad +Theron +Michael +Jason +Christopher +David +Robert +James +John +Daniel +Brian +Matthew +Joseph +Jeremy +Joshua +Ryan +William +Richard +Steven +Eric +Jose +Aaron +Anthony +Mark +Jeffrey +Kevin +Thomas +Brandon +Andrew +Scott +Paul +Timothy +Justin +Benjamin +Nathan +Gabriel +Charles +Adam +Shawn +Travis +Juan +Jacob +Jonathan +Stephen +Chad +Kenneth +Carlos +Sean +Gregory +Bryan +Edward +Manuel +Jesus +Jesse +Francisco +Jared +Ronald +George +Donald +Raymond +Samuel +Dustin +Frank +Patrick +Shane +Keith +Luis +Jerry +Gary +Todd +Mario +Victor +Adrian +Bradley +Douglas +Alejandro +Derek +Joe +Joel +Miguel +Peter +Larry +Troy +Albert +Ruben +Russell +Martin +Antonio +Ricardo +Hector +Angel +Arthur +Bobby +Craig +Terry +Jon +Clinton +Johnny +Ramon +Fernando +Gilbert +Nicholas +Zachary +Billy +Casey +Jeffery +Nathaniel +Dennis +Henry +Randy +Roy +Jeremiah +Vincent +Sergio +Brent +Jack +Kyle +Raul +Rene +Erik +Jorge +Marcus +Seth +Tony +Carl +Corey +Jaime +Philip +Phillip +Cameron +Danny +Javier +Wayne +Armando +Ian +Lawrence +Marc +Orlando +Ernest +Jay +Tyler +Alexander +Jimmy +Leonard +Micah +Ronnie +Cody +Oscar +Pedro +Wesley +Brett +Ernesto +Heath +Louis +Ricky +Roberto +Roger +Rudy +Trevor +Chris +Christian +Cory +Damon +Eugene +Marvin +Toby +Alberto +Allen +Lee +Rafael +Ray +Darrell +Garrett +Kelly +Loren +Micheal +Omar +Randall +Alex +Andres +Cesar +Curtis +Gerardo +Glenn +Jamie +Preston +Salvador +Tommy +Tyrone +Walter +Andre +Andy +Dale +Darren +Duane +Eddie +Eduardo +Guillermo +Harold +Jarrod +Lance +Luke +Marcos +Pablo +Shannon +Spencer +Alan +Alfredo +Kristopher +Marco +Rodney +Steve +Brad +Dominic +Julio +Ralph +Theodore +Alfred +Bruce +Frederick +Geoffrey +Gerald +Isaac +Ivan +Jayson +Julian +Lorenzo +Lucas +Pete +Vernon +Willie +Evan +Glen +Lonnie +Mitchell +Ty +Alfonso +Byron +Clayton +Clint +Damian +Derrick +Don +Jessie +Levi +Maurice +Reynaldo +Rodolfo +Tyson +Wade +Abel +Ben +Erick +Ernie +Jerome +Leland +Mike +Roman +Sam +Santiago +Adan +Arturo +Colin +Daryl +Felix +Fred +Johnathan +Kurt +Leo +Leroy +Otis +Reuben +Roderick +Terrence +Austin +Barry +Bill +Dallas +Darin +Ethan +Frankie +Gilberto +Guadalupe +Joey +Jonathon +Logan +Neil +Perry +Rick +Stuart +Vicente +Arnold +Caleb +Charlie +Clifford +Delbert +Graham +Greg +Hans +Leander +Marshall +Mathew +Myron +Noah +Norman +Philbert +Randolph +Rogelio +Stacy +Ted +Terrance +Warren +Bernard +Blaine +Calvin +Cecil +Devin +Dwayne +Elias +Emerson +Enrique +Everett +Federico +Felipe +Floyd +Francis +Franklin +Harry +Herbert +Howard +Jeff +Karl +Kenny +Kent +Leon +Lionel +Max +Reed +Robin +Ron +Rueben +Rusty +Tomas +Trent +Virgil +Xavier +Beau +Bret +Bryce +Clarence +Clay +Dan +Dean +Donovan +Elijah +Fabian +Guy +Ignacio +Israel +Jackson +Jermaine +Jody +Melvin +Morris +Neal +Noel +Rex +Sammy +Sheldon +Simon +Stanley +Stewart +Abraham +Abram +Adolfo +Allan +Augustine +Blake +Carson +Coby +Conrad +Damien +Darrick +Dion +Donnie +Edgar +Edwin +Efrain +Elton +Emilio +Fredrick +Gregg +Gustavo +Hugo +Ismael +Jake +Jarrett +Jefferson +Jim +Joaquin +Josh +Kerry +Kirk +Kristian +Leonardo +Lloyd +Nolan +Octavio +Phil +Quincy +Reyes +Rory +Royce +Tobias +Tom +Agustin +Amos +Arron +Aurelio +Benny +Brice +Bryon +Chester +Cornelius +Dana +Darrel +Darrin +Devon +Dewayne +Donavan +Doyle +Dwight +Earl +Eldon +Eli +Elliott +Esteban +Fransisco +Garry +German +Grant +Herman +Humberto +Jarod +Johnnie +Jordan +Justen +Kris +Lewis +Louie +Malcolm +Marlon +Merle +Morgan +Nathanael +Nelson +Nicolas +Robby +Rocky +Roland +Rosendo +Sterling +Weston +Ysidro +Zachariah +Zane +Michael +Jason +Christopher +David +Robert +James +Daniel +John +Brian +Matthew +Joshua +Ryan +Richard +Joseph +Jeremy +Eric +William +Anthony +Mark +Steven +Aaron +Kevin +Justin +Jeffrey +Jose +Thomas +Benjamin +Andrew +Timothy +Paul +Scott +Jonathan +Adam +Charles +Nathan +Shawn +Travis +Brandon +Jacob +Jesse +Stephen +Kenneth +Gabriel +Chad +Carlos +Patrick +Francisco +Juan +Bryan +Sean +Gregory +Jesus +Samuel +Raymond +Edward +Frank +Manuel +Jared +Luis +Gary +Nicholas +Todd +Bradley +Donald +George +Shane +Ronald +Keith +Peter +Mario +Ruben +Adrian +Douglas +Ian +Dustin +Jerry +Kyle +Antonio +Martin +Victor +Brent +Angel +Craig +Nathaniel +Fernando +Johnny +Larry +Phillip +Ramon +Albert +Jeremiah +Vincent +Cory +Casey +Jorge +Marcus +Ricardo +Russell +Armando +Erik +Alexander +Danny +Derek +Dennis +Joe +Randy +Wesley +Gilbert +Roy +Arthur +Hector +Joel +Roberto +Terry +Ernest +Miguel +Philip +Tony +Marcos +Troy +Christian +Cody +Zachary +Alejandro +Clinton +Corey +Jeffery +Jimmy +Kristopher +Ralph +Brett +Jay +Bobby +Marco +Oscar +Alex +Isaac +Javier +Raul +Billy +Lance +Randall +Darrell +Henry +Lawrence +Neil +Tyler +Arturo +Julian +Micheal +Orlando +Rafael +Ricky +Bruce +Ivan +Jaime +Leonard +Rene +Spencer +Trevor +Allen +Carl +Jack +Jarrod +Jon +Lee +Louis +Mitchell +Omar +Wayne +Joey +Seth +Tyrone +Brad +Clayton +Curtis +Damon +Duane +Jamie +Jerome +Rodney +Walter +Alan +Cesar +Damian +Derrick +Eddie +Ernesto +Gerald +Heath +Melvin +Pedro +Rudy +Salvador +Sergio +Shaun +Abel +Alfred +Clint +Dominic +Geoffrey +Marc +Steve +Theodore +Alberto +Chris +Dale +Roman +Tyson +Cameron +Garrett +Levi +Preston +Ronnie +Tomas +Daryl +Dean +Eugene +Frederick +Jayson +Micah +Wade +Andy +Ben +Darren +Eduardo +Evan +Kurt +Mathew +Ray +Tommy +Xavier +Alfonso +Alfredo +Devin +Edwin +Esteban +Glenn +Guillermo +Lloyd +Lyle +Nicolas +Pablo +Roger +Toby +Alvin +Andres +Barry +Calvin +Dwayne +Enrique +Franklin +Freddie +Gerardo +Harold +Jeff +Julio +Kelly +Leander +Leon +Luke +Ty +Ethan +Everett +Harry +Ismael +Israel +Lucas +Rocky +Vernon +Andre +Arnold +Beau +Benny +Blake +Caleb +Clifton +Damien +Don +Dylan +Gilberto +Joaquin +Kirk +Leland +Leo +Leroy +Lonnie +Lorenzo +Max +Nelson +Pete +Santiago +Stacy +Angelo +Austin +Clifford +Colin +Cruz +Darryl +Donovan +Elias +Felipe +Felix +Frankie +Herbert +Howard +Jessie +Johnathan +Karl +Loren +Monty +Morgan +Rhett +Rogelio +Tracy +Virgil +Abraham +Augustine +Bryce +Darin +Delbert +Dion +Dwight +Emerson +Fred +Glen +Gordon +Guadalupe +Ignacio +Isaiah +Jonathon +Jordan +Logan +Marvin +Mike +Myron +Noah +Norman +Randolph +Rick +Rodolfo +Rusty +Sheldon +Stanley +Vicente +Warren +Willie +Adan +Alvaro +Ammon +Arnulfo +Byron +Chet +Clay +Colby +Dallas +Dewayne +Earl +Eli +Elijah +Francis +Greg +Harvey +Jake +Jarvis +Jerrod +Matt +Perry +Ramiro +Roland +Saul +Simon +Alonzo +Bernardo +Bryon +Darrick +Dave +Donavon +Dusty +Fabian +Floyd +Gene +Grant +Herman +Jim +Jimmie +Kristofer +Landon +Lionel +Maurice +Neal +Nick +Noel +Oliver +Owen +Raymundo +Reynaldo +Rickey +Roderick +Sonny +Tanner +Ted +Teddy +Terrance +Tom +Trent +Trenton +Waylon +Allan +Ashley +Benito +Bennie +Bernard +Blaine +Brock +Brooks +Carlton +Chadwick +Clarence +Collin +Courtney +Dan +Donny +Elliot +Elmer +Elvis +Emilio +Erick +Ervin +Fidel +Forrest +Freddy +Gregg +Ira +Jackson +Jarom +Jefferson +Jeramy +Jermaine +Jess +Kenny +Kris +Marshall +Mason +Merlin +Mervin +Mickey +Quentin +Raphael +Reuben +Rex +Robbie +Ross +Rudolph +Sam +Sherman +Stephan +Stewart +Stuart +Taylor +Terence +Terrell +Tory +Zachariah +Michael +Christopher +Jason +David +Robert +James +Matthew +Daniel +Brian +John +Joseph +Joshua +Ryan +Richard +Jeremy +William +Steven +Eric +Anthony +Timothy +Aaron +Adam +Justin +Jeffrey +Kevin +Andrew +Mark +Jose +Nicholas +Thomas +Scott +Charles +Brandon +Benjamin +Jonathan +Stephen +Paul +Gabriel +Nathan +Jacob +Travis +Patrick +Shawn +Juan +Chad +Carlos +Jesse +Jesus +Kenneth +Francisco +Samuel +Manuel +Gregory +Sean +Bryan +Edward +Frank +Mario +Shaun +Phillip +Ronald +Raymond +Gary +Todd +Donald +Jared +Keith +Bradley +Johnny +Luis +George +Peter +Ruben +Shane +Fernando +Adrian +Jeremiah +Douglas +Antonio +Dustin +Troy +Albert +Kyle +Victor +Armando +Larry +Casey +Ricardo +Danny +Martin +Miguel +Arthur +Dennis +Angel +Joel +Nathaniel +Wesley +Zachary +Jaime +Jeffery +Philip +Russell +Brent +Marcus +Randy +Alan +Cody +Erik +Jay +Craig +Hector +Ramon +Raul +Gilbert +Vincent +Alejandro +Alexander +Joe +Oscar +Cory +Jon +Roberto +Seth +Roger +Roy +Ernest +Ian +Javier +Kristopher +Alex +Derek +Marc +Rudy +Terry +Tyler +Isaac +Jack +Allen +Billy +Cameron +Dominic +Jerry +Carl +Christian +Curtis +Clinton +Henry +Lawrence +Pedro +Bruce +Gerardo +Jimmy +Lee +Luke +Marco +Rafael +Rene +Brett +Darrell +Eddie +Ernesto +Jorge +Randall +Ricky +Tyson +Andres +Bobby +Dale +Frederick +Sergio +Tony +Clint +Eugene +Geoffrey +Glenn +Levi +Louis +Ralph +Tommy +Alfred +Damien +Damon +Derrick +Eduardo +Ivan +Jayson +Lance +Micheal +Neil +Orlando +Spencer +Trevor +Heath +Julian +Kelly +Lorenzo +Mathew +Rodney +Alfonso +Alfredo +Andy +Chris +Corey +Damian +Duane +Ethan +Jamie +Noah +Rodolfo +Wayne +Abel +Abraham +Arturo +Cesar +Clayton +Dwayne +Frankie +Joey +Leonard +Marvin +Mitchell +Pablo +Theodore +Walter +Barry +Clifford +Garrett +Gerald +Leon +Tyrone +Vernon +Austin +Calvin +Clifton +Elias +Evan +Harold +Jerome +Lonnie +Marcos +Omar +Darren +Jarrod +Johnathan +Jordan +Kent +Lucas +Micah +Preston +Roland +Xavier +Blake +Bryce +Bryon +Salvador +Steve +Stuart +Terrance +Toby +Wade +Alberto +Devin +Enrique +Erick +Felipe +Franklin +Glen +Gordon +Ismael +Jessie +Joaquin +Julio +Logan +Ray +Rogelio +Ronnie +Tanner +Trent +Alvin +Bryant +Darin +Dean +Donovan +Fabian +Felix +Fredrick +Gene +Guillermo +Howard +Jeff +Kristofer +Leland +Lloyd +Marshall +Marty +Mike +Warren +Andre +Brendan +Byron +Charlie +Edgar +Francis +Gilberto +Guadalupe +Harrison +Ira +Karl +Kurt +Leo +Leroy +Max +Pete +Reuben +Roman +Rudolph +Tomas +Ty +Vicente +Virgil +Ben +Blaine +Dallas +Dwight +Dylan +Federico +Greg +Israel +Josh +Kirk +Loren +Lydell +Lyle +Maurice +Nick +Norman +Rick +Rocky +Ross +Simon +Sonny +Terrence +Thaddeus +Willis +Wyatt +Alvaro +Angelo +Benny +Bernard +Brad +Bret +Clarence +Colin +Cristobal +Delbert +Delvin +Don +Earl +Edwin +Efren +Floyd +Guy +Harley +Jed +Jess +Jody +Jonathon +Kendrick +Leslie +Marlon +Mason +Monty +Morgan +Myron +Nicolas +Reed +Reggie +Sheldon +Stewart +Tracy +Willie +Amos +Benito +Brendon +Dana +Darryl +Daryl +Donnie +Elijah +Esteban +Grant +Ignacio +Jackson +Jarrett +Jerrod +Jim +Josiah +Kasey +Kris +Leander +Leonardo +Lewis +Melvin +Noel +Oliver +Randolph +Rashad +Reginald +Rory +Santos +Stanley +Sterling +Aldo +Alton +Aric +Augustine +Beau +Branden +Brice +Caleb +Carlton +Collin +Courtney +Cruz +Dane +Darian +Darrin +Davin +Desmond +Devon +Dewayne +Dino +Dominique +Donavan +Donny +Eliseo +Elroy +Elton +Erich +Estevan +Fred +Freddie +Gavin +Genaro +Gustavo +Jake +Jarod +Johnnie +Kory +Landon +Louie +Malcolm +Milo +Milton +Murphy +Neal +Owen +Rex +Ron +Sam +Santiago +Shad +Shon +Stacey +Stacy +Stephan +Taylor +Ted +Theron +Tobias +Trenton +Waylon +Michael +Christopher +Jason +David +Robert +James +Joshua +Matthew +Daniel +John +Joseph +Ryan +Brian +Justin +Jeremy +Richard +Aaron +William +Steven +Andrew +Eric +Nicholas +Anthony +Adam +Jose +Thomas +Timothy +Brandon +Jeffrey +Scott +Jonathan +Mark +Benjamin +Kevin +Paul +Charles +Travis +Nathan +Gabriel +Jacob +Jesse +Stephen +Gregory +Jesus +Juan +Patrick +Manuel +Bryan +Sean +Chad +Francisco +Shawn +Carlos +Edward +Kenneth +Samuel +Dustin +Mario +Jared +Erik +Zachary +Raymond +Ronald +Peter +Donald +Frank +George +Ruben +Gary +Shane +Keith +Brent +Phillip +Kyle +Luis +Shaun +Adrian +Bradley +Todd +Jerry +Cory +Jeremiah +Douglas +Ricardo +Antonio +Fernando +Nathaniel +Joel +Victor +Ian +Gilbert +Randy +Angel +Casey +Alexander +Armando +Miguel +Isaac +Seth +Jeffery +Jorge +Martin +Craig +Danny +Johnny +Roberto +Arthur +Ramon +Brett +Derek +Henry +Jon +Marcus +Russell +Jay +Philip +Jaime +Joe +Raul +Albert +Cody +Larry +Curtis +Billy +Dennis +Abraham +Alejandro +Jarrod +Trevor +Troy +Wesley +Clinton +Jimmy +Pedro +Alex +Eduardo +Garrett +Javier +Micheal +Rene +Vincent +Wayne +Bobby +Corey +Hector +Julian +Luke +Marc +Marco +Ricky +Alberto +Cameron +Jack +Kristopher +Ernesto +Oscar +Roy +Sergio +Terry +Alfredo +Carl +Louis +Tony +Arturo +Lawrence +Levi +Tyler +Andres +Eddie +Guillermo +Randall +Clayton +Dale +Darren +Dominic +Gerardo +Lee +Lucas +Roger +Alan +Austin +Ernest +Jamie +Ralph +Cesar +Enrique +Jayson +Evan +Neil +Omar +Derrick +Israel +Lyle +Marcos +Orlando +Roman +Tyrone +Allen +Brad +Bruce +Christian +Clint +Mathew +Noah +Preston +Ray +Rudy +Clarence +Dallas +Darrell +Donovan +Lance +Nicolas +Rafael +Erick +Guadalupe +Joaquin +Rodney +Spencer +Steve +Abel +Clifford +Devin +Duane +Edgar +Gerald +Heath +Ismael +Ivan +Jessie +Joey +Lorenzo +Clifton +Delbert +Elias +Felipe +Frederick +Morgan +Alfonso +Alfred +Andre +Dean +Don +Fabian +Ignacio +Lonnie +Pablo +Rogelio +Ronnie +Tommy +Beau +Benny +Byron +Chris +Damien +Damon +Dylan +Eugene +Geoffrey +Gilberto +Harold +Johnathan +Jonathon +Jordan +Leon +Micah +Mitchell +Rocky +Sammy +Theodore +Waylon +Xavier +Caleb +Calvin +Chester +Dwayne +Fredrick +Gordon +Jess +Julio +Leonard +Marvin +Nick +Noe +Reynaldo +Rodolfo +Salvador +Saul +Stanley +Stuart +Tanner +Alvin +Andy +Brendan +Colin +Courtney +Dewayne +Elijah +Grant +Josh +Karl +Leander +Leroy +Logan +Mike +Noel +Sterling +Toby +Walter +Barry +Bret +Charlie +Conrad +Damian +Eli +Ernie +Felix +Frankie +Franklin +Glenn +Guy +Harley +Howard +Jerome +Kelly +Kent +Leland +Maurice +Reginald +Rusty +Sam +Santiago +Terrance +Trent +Vernon +Wade +Warren +Arnold +Ben +Blaine +Blake +Cecil +Collin +Darryl +Daryl +Earl +Ethan +Floyd +Francis +Glen +Kendall +Myron +Nathanael +Nelson +Rick +Ron +Sheldon +Taylor +Terrence +Tom +Tyson +Willie +Agustin +Angelo +Aron +Augustine +Bernard +Bryon +Buck +Donavan +Drew +Edmund +Federico +Fred +Gene +Gustavo +Harry +Jake +Jasper +Jedediah +Jermaine +Jonah +Kurt +Leo +Loren +Louie +Marshall +Max +Nickolas +Owen +Reuben +Rodrigo +Rory +Shannon +Ted +Trenton +Ty +Virgil +Adan +Brenden +Bryant +Bryce +Chase +Cole +Cruz +Dane +Darin +Dave +Desmond +Edwardo +Emerson +Esteban +Everett +Freddie +Gregg +Harrison +Herbert +Jarod +Jasen +Jody +Kirk +Kris +Kristian +Leonardo +Melvin +Merle +Miles +Moises +Monty +Moses +Norman +Perry +Pete +Roderick +Rolando +Santos +Simon +Terrell +Tomas +Tracy +Vicente +Wyatt +Ariel +Ashley +Bill +Blas +Brady +Brant +Buddy +Colby +Colton +Darrin +Dominick +Dorian +Dwight +Emilio +Emmanuel +Giovanni +Herman +Hugo +Isaiah +Jeff +Jefferson +Jerald +Jim +Jimmie +Joesph +Leslie +Lewis +Lisa +Malcolm +Marcelino +Nathanial +Neal +Philbert +Quincy +Rex +Rhett +Rian +Ross +Stacy +Stewart +Trinidad +Tye +Will +Zachariah +Michael +Christopher +David +Jason +Joshua +Robert +Daniel +James +Matthew +Justin +Joseph +John +Ryan +Brian +Eric +William +Richard +Anthony +Adam +Aaron +Jeremy +Andrew +Jonathan +Nicholas +Steven +Timothy +Brandon +Thomas +Jeffrey +Kevin +Scott +Benjamin +Mark +Jose +Jacob +Stephen +Charles +Gabriel +Paul +Travis +Jesus +Jesse +Dustin +Nathan +Juan +Patrick +Edward +Bryan +Francisco +Sean +Carlos +Chad +Kenneth +Bradley +Luis +Shawn +Gregory +Manuel +Adrian +George +Mario +Jared +Frank +Ronald +Raymond +Ruben +Samuel +Kyle +Victor +Keith +Donald +Derek +Erik +Jeremiah +Phillip +Joel +Larry +Ricardo +Shane +Miguel +Antonio +Gary +Peter +Zachary +Angel +Jorge +Nathaniel +Roberto +Brett +Fernando +Brent +Armando +Marcus +Ian +Johnny +Shaun +Marc +Sergio +Gilbert +Dennis +Douglas +Martin +Ramon +Alejandro +Tyler +Alexander +Clinton +Jerry +Oscar +Casey +Craig +Jaime +Troy +Alex +Hector +Henry +Seth +Albert +Cory +Joe +Luke +Cody +Curtis +Jon +Todd +Wesley +Javier +Jeffery +Pedro +Philip +Derrick +Randy +Arthur +Jay +Lucas +Marco +Ricky +Tony +Alan +Carl +Danny +Enrique +Isaac +Marcos +Raul +Vincent +Jimmy +Lawrence +Omar +Orlando +Arturo +Brad +Ernest +Jarrod +Terry +Trevor +Billy +Ernesto +Evan +Kristopher +Lee +Andres +Jamie +Rafael +Roy +Austin +Christian +Clint +Dylan +Garrett +Jack +Russell +Wayne +Darren +Dominic +Ivan +Preston +Alberto +Corey +Gerardo +Louis +Micheal +Ralph +Cameron +Eddie +Mathew +Morgan +Ray +Rudy +Allen +Clayton +Heath +Jessie +Lance +Levi +Roman +Tommy +Walter +Alfred +Bobby +Bruce +Jerome +Randall +Rene +Beau +Byron +Frederick +Geoffrey +Joey +Jonathon +Leonard +Rodney +Gilberto +Loren +Micah +Mitchell +Andre +Clifford +Dale +Jordan +Kelly +Taylor +Dallas +Darrell +Duane +Eduardo +Noah +Ronnie +Abel +Alfonso +Alfredo +Blake +Eugene +Fabian +Gerald +Guillermo +Lorenzo +Norman +Pablo +Spencer +Andy +Arnold +Branden +Colin +Esteban +Francis +Josue +Julian +Lyle +Neil +Roger +Ross +Zachariah +Augustine +Cesar +Chris +Elijah +Felix +Johnathan +Kurt +Salvador +Terrance +Tomas +Ty +Warren +Waylon +Benny +Bryce +Edwin +German +Harley +Israel +Jarred +Kirk +Neal +Nicolas +Sheldon +Vernon +Abraham +Alonzo +Angelo +Brendan +Clifton +Damien +Don +Donovan +Drew +Edgar +Elias +Franklin +Glen +Gordon +Grant +Jake +Jayson +Julio +Kenny +Lester +Marvin +Maurice +Pete +Robin +Steve +Theodore +Tyson +Alvin +Barry +Bryon +Damian +Daryl +Dewayne +Felipe +Gustavo +Karl +Leo +Logan +Melvin +Ramiro +Reginald +Reuben +Reynaldo +Rogelio +Tyrone +Bernardo +Bradford +Brady +Bret +Calvin +Cecil +Chance +Conrad +Courtney +Dana +Dean +Efrain +Erick +Frankie +Jarrett +Jermaine +Kristofer +Lewis +Marshall +Myron +Owen +Rodolfo +Roland +Santiago +Simon +Tanner +Toby +Willie +Xavier +Brock +Caleb +Damon +Edwardo +Eli +Erin +Ethan +Glenn +Greg +Guadalupe +Harold +Harrison +Herbert +Ismael +Joaquin +Lamar +Nelson +Octavio +Randolph +Rusty +Sterling +Stuart +Vicente +Adan +Aldo +Alexis +Benito +Clay +Devon +Diego +Donavan +Eldon +Elliott +Jody +Kurtis +Landon +Leander +Leland +Leon +Leroy +Marlon +Max +Nick +Noe +Reyes +Rick +Rocky +Rory +Wade +Aric +Ashley +Ben +Blaine +Bo +Bryant +Buck +Carlton +Damion +Darin +Darrick +Domingo +Dwayne +Earl +Emilio +Freddy +Heriberto +Humberto +Jackson +Jess +Jimmie +Josef +Josiah +Julius +Kelsey +Kent +Leonardo +Macario +Moses +Nickolas +Raymundo +Rigoberto +Rufus +Salvatore +Santos +Saul +Stanley +Tom +Wyatt +Zane +Adrain +Anson +Avery +Brooks +Carlo +Chase +Chaz +Claudio +Cole +Cristian +Dan +Dane +Dario +Darrin +Darryl +Delbert +Derick +Devin +Duston +Dusty +Edgardo +Ehren +Elliot +Elmer +Ernie +Estevan +Filiberto +Floyd +Fred +Gene +Guy +Harry +Harvey +Isaiah +Jamal +Jarod +Johnathon +Jonas +Kendrick +Kris +Mason +Mike +Nathanael +Perry +Reed +Reggie +Rex +Reymundo +Rickey +Roderick +Royce +Sam +Terrence +Tim +Trent +Trenton +Virgil +Willard +Michael +Christopher +David +Joshua +Matthew +Daniel +Jason +Robert +John +Justin +James +Joseph +Ryan +Brian +Richard +Anthony +Jonathan +Andrew +Brandon +William +Aaron +Eric +Jeremy +Adam +Steven +Nicholas +Jose +Benjamin +Jesse +Mark +Thomas +Timothy +Paul +Jeffrey +Scott +Jacob +Kevin +Nathan +Sean +Jesus +Travis +Charles +Stephen +Gabriel +Dustin +Juan +Francisco +Kenneth +Patrick +Edward +Carlos +Bryan +Manuel +Kyle +Chad +Gregory +Samuel +Shawn +Luis +Raymond +Derek +Jared +Nathaniel +Bradley +Mario +Miguel +Donald +Zachary +Adrian +Antonio +Frank +Peter +Fernando +Ricardo +Tyler +George +Alexander +Armando +Gary +Joel +Jorge +Ruben +Ian +Phillip +Cody +Keith +Ronald +Douglas +Jeremiah +Erik +Martin +Shane +Marcus +Roberto +Sergio +Brett +Jaime +Victor +Seth +Casey +Jordan +Brent +Todd +Angel +Craig +Levi +Shaun +Gilbert +Lucas +Oscar +Ramon +Russell +Alejandro +Christian +Jon +Cameron +Clinton +Jerry +Marco +Vincent +Hector +Larry +Arthur +Derrick +Randy +Tony +Trevor +Cory +Curtis +Danny +Alberto +Dominic +Jeffery +Joe +Marcos +Noah +Philip +Alex +Johnny +Rene +Jerome +Luke +Troy +Carl +Isaac +Jimmy +Albert +Clayton +Evan +Garrett +Geoffrey +Louis +Wesley +Dennis +Ernest +Julio +Cesar +Javier +Kristopher +Lee +Raul +Bobby +Randall +Wayne +Arturo +Corey +Lawrence +Marc +Ricky +Rudy +Andres +Gerald +Julian +Mathew +Micheal +Roy +Alan +Colin +Ivan +Orlando +Clifford +Henry +Pedro +Terry +Austin +Eduardo +Johnathan +Logan +Taylor +Billy +Beau +Darren +Frederick +Gerardo +Omar +Santiago +Clint +Ernesto +Jayson +Rodney +Salvador +Abraham +Allen +Andre +Blake +Branden +Bryce +Enrique +Jarrod +Jay +Rodolfo +Theodore +Tommy +Walter +Alfonso +Alfred +Alfredo +Brad +Esteban +Guillermo +Jamie +Roger +Spencer +Abel +Donovan +Jack +Jonathon +Leonard +Lorenzo +Lyle +Steve +Tyrone +Bruce +Caleb +Darrell +Eddie +Elias +Micah +Rafael +Ralph +Ray +Calvin +Ethan +Fabian +Glen +Jessie +Joey +Loren +Marshall +Mitchell +Morgan +Roman +Ronnie +Terrance +Xavier +Chris +Dale +Damien +Devin +Drew +Freddie +Gilberto +Grant +Israel +Nicolas +Pablo +Preston +Ben +Byron +Edgar +Emmanuel +Franklin +Marvin +Alvin +Dallas +Daryl +Dean +Heath +Ismael +Joaquin +Noel +Pete +Rogelio +Vernon +Warren +Alexis +Andy +Charlie +Earl +Eugene +Everett +Felipe +Herman +Howard +Karl +Lance +Maurice +Melvin +Neil +Nickolas +Nolan +Waylon +Arnold +Damon +Elijah +Frankie +Gavin +Gustavo +Isaiah +Kelly +Kurt +Leland +Leslie +Mike +Rick +Tomas +Tyson +Allan +Augustine +Barry +Brendan +Bret +Bryon +Darryl +Diego +Estevan +Fred +Glenn +Kirk +Lonnie +Myron +Reginald +Rocky +Rusty +Shannon +Stuart +Tyrel +Vicente +Angelo +Aron +Ashley +Bryant +Dylan +Fredrick +Gonzalo +Jake +Jamison +Johnathon +Josue +Lionel +Norman +Roderick +Rolando +Saul +Sonny +Sterling +Stewart +Tanner +Terrence +Virgil +Adan +Alvaro +Benny +Bernard +Blaine +Carlton +Cole +Dan +Derick +Donnie +Edmund +Edwardo +Edwin +Emanuel +Erick +Ernie +Felix +Fidel +Forrest +Garrick +Harry +Jackson +Lamar +Landon +Leander +Leroy +Marques +Max +Mikel +Neal +Nelson +Perry +Rex +Sheldon +Trenton +Ty +Valentino +Weston +Willie +Wyatt +Adalberto +Aldo +Aubrey +Bo +Brady +Clifton +Demetrius +Devon +Domingo +Efrain +Erin +Erwin +Garrison +Gene +Guadalupe +Hans +Harlan +Jarvis +Jimmie +Josh +Julius +Kory +Laurence +Leonardo +Lester +Lewis +Lloyd +Malcolm +Marlin +Miles +Orrin +Raymundo +Sam +Sidney +Tristan +Zachariah +Abram +Adrain +Alonzo +Aric +Arnulfo +Brenden +Brice +Cecil +Clay +Colby +Dalton +Dana +Darin +Darrick +Darrin +Davin +Eli +Eliseo +Elton +Gordon +Greg +Gregorio +Guy +Harold +Harrison +Ignacio +Jarod +Jasper +Jean +Jedediah +Jerald +Jermaine +Jim +Jonas +Kent +Kirby +Lane +Leo +Leon +Luther +Manny +Marcelino +Mason +Nathanael +Noe +Owen +Rebecca +Rickey +Roland +Ross +Rudolph +Sammy +Stanley +Ted +Toby +Trent +Wilbert +Zachery +Michael +Christopher +David +Matthew +Daniel +Joshua +Jason +Robert +James +Justin +Ryan +John +Joseph +Anthony +Brandon +Brian +Aaron +Richard +Adam +Andrew +William +Jonathan +Eric +Nicholas +Steven +Jose +Thomas +Benjamin +Jeremy +Jacob +Timothy +Jeffrey +Kevin +Mark +Dustin +Sean +Nathan +Paul +Charles +Jesse +Scott +Travis +Patrick +Kyle +Carlos +Kenneth +Jared +Gabriel +Jesus +Stephen +Bryan +Manuel +Gregory +Juan +Francisco +Samuel +Adrian +Shawn +Cody +Chad +Tyler +Raymond +Edward +Luis +George +Mario +Phillip +Fernando +Derek +Peter +Ricardo +Erik +Shane +Gary +Zachary +Ian +Miguel +Frank +Bradley +Nathaniel +Alexander +Ronald +Brett +Donald +Keith +Alejandro +Angel +Casey +Jeremiah +Shaun +Joel +Victor +Jordan +Marcus +Ruben +Todd +Troy +Douglas +Raul +Joe +Roberto +Antonio +Martin +Randy +Albert +Cory +Armando +Brent +Craig +Alan +Gilbert +Seth +Hector +Isaac +Javier +Jeffery +Vincent +Philip +Ramon +Russell +Alex +Jaime +Oscar +Pedro +Arthur +Cameron +Trevor +Christian +Clinton +Curtis +Derrick +Jack +Noah +Caleb +Garrett +Ivan +Jimmy +Jorge +Wesley +Austin +Johnny +Kristopher +Larry +Roy +Clayton +Henry +Marc +Alberto +Allen +Blake +Evan +Marco +Mathew +Tony +Andres +Carl +Danny +Lance +Billy +Jon +Julian +Levi +Lucas +Roger +Dennis +Jay +Luke +Rafael +Sergio +Andre +Bobby +Jonathon +Logan +Cesar +Corey +Ernesto +Jamie +Randall +Bret +Enrique +Ernest +Guillermo +Lawrence +Leonard +Micheal +Arturo +Jerry +Lee +Louis +Orlando +Salvador +Alexis +Johnathan +Marcos +Ralph +Ray +Rodney +Dale +Fabian +Grant +Spencer +Terry +Abel +Alfred +Angelo +Dominic +Jarrod +Julio +Loren +Rudy +Tyrone +Wayne +Dylan +Eduardo +Elijah +Rene +Taylor +Bruce +Jerome +Lorenzo +Micah +Byron +Colin +Devin +Gerald +Jessie +Joey +Leon +Lyle +Mitchell +Nicolas +Preston +Ricky +Ronnie +Tanner +Alfonso +Clifford +Cole +Darrell +Esteban +Geoffrey +Gerardo +Harold +Isaiah +Ross +Warren +Abraham +Alfredo +Diego +Israel +Karl +Myron +Nickolas +Norman +Omar +Pablo +Tristan +Bryce +Calvin +Chase +Darren +Donovan +Emilio +Erick +Franklin +Freddie +Gustavo +Kurt +Santiago +Terrence +Tommy +Walter +Xavier +Damian +Earl +Eli +Estevan +Ethan +Jayson +Leo +Lloyd +Neil +Reynaldo +Stuart +Vernon +Vicente +Andy +Beau +Colt +Dallas +Duane +Eddie +Edwin +Frederick +Gilberto +Harry +Jarrett +Kelly +Marshall +Rick +Robin +Rocky +Rogelio +Simon +Sterling +Stewart +Trenton +Wade +Barry +Brendan +Bryon +Dan +Felipe +Garrick +Gordon +Harley +Harrison +Marvin +Melvin +Morgan +Noel +Terrance +Trent +Branden +Clint +Darryl +Daryl +Dwayne +Dwight +Frankie +Fred +Glenn +Guadalupe +Guy +Ismael +Jake +Jarvis +Jerald +Joaquin +Johnathon +Leonardo +Lewis +Maurice +Moses +Neal +Owen +Rodolfo +Steve +Agustin +Allan +Ashley +Blaine +Bryson +Dana +Don +Donnie +Gene +Humberto +Jermaine +Josiah +Julius +Kirk +Max +Mike +Reggie +Roland +Roman +Saul +Terence +Theodore +Ty +Vance +Willie +Alonzo +Arnold +Augustine +Brady +Bryant +Chris +Clifton +Colton +Dane +Darin +Dewayne +Edgar +Elliot +Emanuel +Francis +Fredrick +Glen +Gregorio +Hunter +Joesph +Mason +Nick +Pete +Reuben +Rory +Shea +Tyrell +Valentin +Waylon +Weston +Zane +Adalberto +Aron +Bennett +Brad +Brenton +Cedric +Clarence +Courtney +Cristobal +Derick +Dion +Edmund +Efren +Erich +Eugene +Garret +Gavin +German +Heath +Howard +Ignacio +Ira +Jarod +Jessica +Josue +Kent +Lamar +Landon +Lionel +Malcolm +Marlon +Marques +Mikel +Monty +Nathanial +Nelson +Nolan +Renaldo +Rigoberto +Rusty +Shannon +Solomon +Stanley +Tom +Tomas +Tyson +Wyatt +Zachery +Aldo +Alton +Alvin +Ammon +Ben +Benny +Bernardo +Bo +Bradford +Claude +Clyde +Collin +Cordell +Cyrus +Delbert +Dominick +Drew +Efrain +Elias +Emmanuel +Ervin +Freddy +Galen +Greg +Hanson +Isaias +Jamar +Jarom +Jedidiah +Jerrod +Jess +Jimmie +Kendall +Kody +Kory +Leander +Leonel +Leroy +Lowell +Merle +Nathanael +Quentin +Quintin +Ramiro +Randolph +Roderick +Rolando +Santos +Skyler +Stanford +Terrell +Willard +Zachariah +Michael +Christopher +Matthew +Daniel +David +Joshua +Robert +Jason +Ryan +James +John +Joseph +Justin +Brandon +Adam +Brian +Nicholas +Anthony +Andrew +William +Steven +Richard +Aaron +Eric +Jonathan +Kyle +Jose +Thomas +Timothy +Jacob +Jeffrey +Mark +Jeremy +Benjamin +Kevin +Nathan +Sean +Charles +Dustin +Stephen +Scott +Jesse +Paul +Bryan +Jesus +Travis +Gabriel +Patrick +Gregory +Zachary +Samuel +Tyler +Juan +Kenneth +Francisco +Luis +Shawn +Carlos +Chad +Edward +Derek +Bradley +Jared +Donald +Alexander +Manuel +Mario +Adrian +Joel +Phillip +Antonio +Raymond +Victor +Frank +Marcus +George +Martin +Gary +Cody +Miguel +Peter +Ricardo +Douglas +Shane +Erik +Ian +Brett +Alex +Roberto +Nathaniel +Jeremiah +Jorge +Ronald +Ruben +Derrick +Garrett +Brent +Keith +Sergio +Seth +Fernando +Casey +Todd +Alejandro +Arthur +Craig +Ramon +Jordan +Trevor +Troy +Vincent +Angel +Clinton +Gilbert +Isaac +Philip +Randy +Clayton +Hector +Russell +Cory +Jerry +Roy +Shaun +Alan +Albert +Andres +Curtis +Johnny +Danny +Evan +Austin +Jeffery +Lance +Ernest +Levi +Marco +Noah +Armando +Corey +Javier +Raul +Rene +Terry +Wesley +Caleb +Enrique +Luke +Randall +Blake +Larry +Mathew +Bobby +Darren +Henry +Jimmy +Jonathon +Ricky +Alberto +Cameron +Chase +Dennis +Devin +Dominic +Jon +Lee +Logan +Mitchell +Oscar +Pedro +Carl +Colin +Jaime +Jay +Julian +Taylor +Arturo +Eduardo +Grant +Joe +Lucas +Marc +Marcos +Micheal +Felipe +Louis +Tommy +Abraham +Allen +Andre +Ernesto +Orlando +Preston +Tony +Christian +Cole +Jake +Kristopher +Leonard +Nicolas +Roger +Spencer +Alexis +Bruce +Eddie +Ivan +Lawrence +Rafael +Alfredo +Drew +Jack +Julio +Kelly +Micah +Calvin +Dale +Eugene +Gene +Geoffrey +Gerald +Israel +Pablo +Byron +Cesar +Gavin +Jerome +Neil +Rodney +Xavier +Alvin +Clifford +Erick +Esteban +Lionel +Maurice +Salvador +Abel +Dylan +Eli +Elias +Guillermo +Jamie +Morgan +Ronnie +Tanner +Theodore +Tyrone +Walter +Wayne +Alfonso +Billy +Bryce +Elijah +Gustavo +Harold +Ismael +Lyle +Myron +Stuart +Trenton +Brad +Dane +Duane +Dwayne +Glenn +Isaiah +Joey +Johnathan +Loren +Lorenzo +Marshall +Mike +Andy +Bret +Darin +Darrell +Gerardo +Glen +Jarrod +Nickolas +Omar +Ralph +Reynaldo +Steve +Tyson +Warren +Alfred +Blaine +Daryl +Dean +Donovan +Edgar +Frederick +Gilberto +Jessie +Joaquin +Kellen +Kurt +Randolph +Rudy +Santos +Zane +Arnold +Clint +Colt +Edwin +Estevan +Ethan +Francis +Franklin +Heath +Ignacio +Kendall +Kirk +Leland +Leon +Leslie +Moses +Rocky +Roman +Saul +Simon +Terrance +Alec +Branden +Chris +Conrad +Damian +Diego +Elliott +Fabian +Guadalupe +Karl +Landon +Leo +Lonnie +Marvin +Melvin +Nick +Pete +Reuben +Tristan +Vicente +Wade +Zachariah +Adolfo +Alonzo +Angelo +Augustine +Bradford +Bryant +Clifton +Colton +Efrain +Harry +Hunter +Kent +Leroy +Monty +Norman +Terrence +Tyrel +Barry +Chaz +Clark +Collin +Dallas +Don +Dwight +Efren +Emmanuel +Frankie +Graham +Jeffry +Jermaine +Jess +Johnathon +Josue +Marty +Miles +Milton +Nathanael +Noel +Nolan +Owen +Ramiro +Ray +Rigoberto +Rodrigo +Shannon +Toby +Tomas +Allan +Ashley +Benito +Benny +Brendan +Brenton +Brock +Bryon +Carlton +Charlie +Clarence +Clay +Dana +Dario +Darrel +Darrick +Dave +Delbert +Derik +Dominique +Dusty +Edmund +Elliot +Emilio +Ernie +Forrest +Gordon +Greg +Jarad +Jarod +Jayson +Jedediah +Josiah +Kendrick +Kurtis +Leonardo +Marion +Marques +Mickey +Perry +Quinn +Reggie +Robin +Roderick +Rogelio +Rory +Ross +Sheldon +Stanley +Trent +Ty +Vernon +Waylon +Wyatt +Abelardo +Alvaro +Arron +Aurelio +Avery +Ben +Brady +Brant +Clyde +Colby +Cristobal +Damon +Deon +Devon +Dillon +Earl +Erich +Erin +Felix +Fred +Fredrick +Garrick +German +Guy +Herbert +Hiram +Howard +Humberto +Hyrum +Jarrett +Jeff +Jefferson +Keenan +Kiel +Kristofer +Max +Merle +Neal +Nehemiah +Nelson +Octavio +Oliver +Parker +Reginald +Rick +Santiago +Sarah +Stanford +Ted +Terence +Theron +Tom +Tyrell +Valentino +Van +Virgil +Will +Willie +Michael +Christopher +Matthew +Daniel +David +Joshua +Robert +Ryan +James +Joseph +John +Brandon +Jason +Justin +Andrew +Adam +Anthony +Nicholas +Brian +William +Eric +Richard +Steven +Jonathan +Aaron +Jose +Thomas +Timothy +Kevin +Jacob +Benjamin +Jeremy +Mark +Kyle +Tyler +Travis +Jeffrey +Paul +Scott +Sean +Charles +Dustin +Nathan +Stephen +Jesse +Jesus +Patrick +Gabriel +Bryan +Gregory +Zachary +Kenneth +Juan +Carlos +Francisco +Cody +Derek +Chad +Luis +Edward +Alexander +Samuel +Jared +Ian +Ruben +Shawn +Manuel +Adrian +Bradley +Raymond +Victor +Vincent +Alex +Mario +Shane +Miguel +Nathaniel +Frank +Marcus +Angel +Casey +Jordan +Martin +Peter +Phillip +Fernando +Brent +Donald +Evan +Cory +George +Gilbert +Joel +Austin +Brett +Erik +Hector +Jeremiah +Jorge +Ricardo +Antonio +Douglas +Derrick +Ronald +Seth +Cameron +Isaac +Jeffery +Keith +Alejandro +Armando +Roberto +Craig +Johnny +Trevor +Chase +Carl +Garrett +Oscar +Randy +Andres +Christian +Gary +Ramon +Russell +Troy +Larry +Curtis +Geoffrey +Joe +Philip +Wesley +Alan +Albert +Jimmy +Mathew +Randall +Clinton +Luke +Raul +Rene +Corey +Dennis +Sergio +Allen +Lee +Marc +Roger +Shaun +Lawrence +Todd +Danny +Javier +Jon +Lance +Marco +Marcos +Micheal +Ricky +Johnathan +Arthur +Arturo +Billy +Blake +Henry +Jaime +Kristopher +Clayton +Devin +Jonathon +Louis +Orlando +Enrique +Noah +Ernest +Grant +Ivan +Logan +Pedro +Taylor +Terry +Roy +Abel +Andre +Bobby +Bryce +Ernesto +Jay +Lorenzo +Lucas +Mitchell +Roman +Wayne +Abraham +Alberto +Caleb +Darren +Eduardo +Jerry +Levi +Jack +Julian +Loren +Omar +Xavier +Brendan +Cole +Colin +Darrell +Gerardo +Rafael +Ralph +Steve +Theodore +Tony +Alfonso +Dominic +Ethan +Fabian +Gilberto +Lionel +Nicolas +Preston +Ray +Tommy +Tyrone +Cesar +Jerome +Kurt +Ross +Dale +Drew +Jamie +Julio +Kelly +Reuben +Ronnie +Rudy +Spencer +Alfred +Bruce +Byron +Clifford +Vicente +Beau +Calvin +Edwin +Eugene +Isaiah +Reynaldo +Salvador +Terrance +Walter +Alfredo +Barry +Brad +Branden +Chance +Clint +Dylan +Emmanuel +Frederick +Guillermo +Josue +Marvin +Morgan +Neil +Rodney +Santiago +Dallas +Dean +Devon +Eddie +Gerald +Jake +Karl +Leander +Marshall +Sterling +Tristan +Damien +Donovan +Estevan +Felix +Glenn +Heath +Humberto +Israel +Jayson +Landon +Leon +Max +Miles +Oliver +Ramiro +Rogelio +Simon +Tomas +Trent +Trey +Brady +Colby +Damian +Dusty +Elijah +Jameson +Jarrett +Joaquin +Melvin +Myron +Pablo +Rigoberto +Stefan +Tanner +Terence +Tyrel +Tyrell +Warren +Alexis +Brenton +Chris +Dwayne +Dwight +Earl +Gustavo +Harry +Rocky +Rolando +Terrence +Trenton +Tyson +Allan +Avery +Bryon +Charlie +Clark +Dane +Elias +Elliott +Francis +Glen +Ignacio +Jess +Joey +Josh +Kent +Leland +Leonard +Lonnie +Lyle +Quentin +Weston +Brock +Colt +Derik +Edgar +Eli +Emanuel +Emilio +Erick +Esteban +Felipe +Forrest +Frankie +Freddie +Fredrick +Gene +Guadalupe +Harley +Jessie +Josiah +Kendall +Kory +Leo +Leroy +Maurice +Micah +Nick +Noel +Pete +Rickey +Shayne +Stephan +Vernon +Andy +Angelo +Arnold +Ashley +Augustine +Blaine +Bradford +Bret +Bryant +Carlo +Chester +Daryl +Derick +Domingo +Dominique +Don +Duane +Efrain +Federico +Fred +Gavin +Harold +Jackson +Jarrod +Jermaine +Johnathon +Kurtis +Mike +Neal +Nikolas +Owen +Parker +Rex +Rick +Robin +Roderick +Roland +Sheldon +Skyler +Solomon +Stanley +Sylvester +Toby +Ty +Wade +Waylon +Will +Willie +Adan +Alvaro +Bennie +Benny +Brice +Carson +Clay +Colton +Conrad +Courtney +Coy +Cristian +Damon +Darin +Darwin +Dexter +Diego +Gonzalo +Graham +Greg +Guy +Harrison +Herbert +Ismael +Jarod +Joesph +Julius +Kellen +Kendrick +Kenny +Kirk +Lamar +Leonardo +Marty +Nelson +Perry +Quinn +Rodolfo +Rodrigo +Rojelio +Rory +Sam +Santino +Santos +Shannon +Vance +Abelardo +Ali +Alonzo +Alvin +Ariel +Bernard +Boyd +Brendon +Cedric +Cruz +Dallin +Dana +Darrin +Darryl +Dillon +Dion +Donte +Elliot +Erich +Everett +German +Hans +Herman +Howard +Issac +Jamaal +Jasper +Jeramy +Jonah +Jonas +Kiel +Leif +Lester +Lewis +Mauro +Milton +Moises +Nathanael +Nathanial +Nolan +Norman +Quincy +Randolph +Raphael +Raymundo +Remington +Renaldo +Robbie +Roque +Scotty +Shea +Sidney +Stuart +Van +Vaughn +Virgil +Wilson +Wyatt +Michael +Christopher +Daniel +Matthew +David +Joshua +Robert +Ryan +Joseph +Andrew +James +John +Brandon +Anthony +Nicholas +Justin +Jason +Steven +Kyle +Eric +Jonathan +Brian +William +Adam +Aaron +Richard +Kevin +Jacob +Jose +Sean +Mark +Thomas +Benjamin +Tyler +Timothy +Jeremy +Nathan +Jeffrey +Stephen +Paul +Jesse +Dustin +Charles +Zachary +Cody +Bryan +Patrick +Travis +Jesus +Gabriel +Shawn +Francisco +Scott +Carlos +Gregory +Kenneth +Alexander +Juan +Samuel +Chad +Luis +Edward +Bradley +Jared +Derek +Adrian +Manuel +Nathaniel +Victor +Mario +Joel +Jordan +Miguel +Raymond +Alex +Ian +Antonio +Marcus +Brett +Shane +Austin +Phillip +Alejandro +Derrick +Frank +Corey +Martin +Randy +Ronald +Brent +Casey +Donald +Ruben +Ricardo +Devin +Craig +Fernando +Trevor +Cory +Armando +Gary +George +Keith +Taylor +Vincent +Ramon +Angel +Erik +Jeremiah +Johnny +Peter +Albert +Rene +Wesley +Evan +Joe +Kristopher +Philip +Garrett +Javier +Roberto +Shaun +Andres +Chase +Henry +Jeffery +Sergio +Julian +Russell +Blake +Clayton +Curtis +Hector +Isaac +Jorge +Logan +Luke +Seth +Arthur +Douglas +Marcos +Raul +Todd +Micheal +Spencer +Gilbert +Jaime +Jon +Marco +Darren +Drew +Larry +Oscar +Tony +Andre +Julio +Mathew +Clinton +Geoffrey +Ricky +Bryce +Cameron +Danny +Grant +Terry +Christian +Eduardo +Levi +Cesar +Dennis +Ivan +Louis +Lucas +Mitchell +Roger +Troy +Alan +Lawrence +Marc +Micah +Pedro +Arturo +Dylan +Jonathon +Lance +Omar +Preston +Dominic +Jay +Jimmy +Johnathan +Abel +Enrique +Ernest +Jake +Roy +Alberto +Jessie +Leonard +Salvador +Abraham +Cole +Colin +Ernesto +Jerry +Lee +Lionel +Lorenzo +Randall +Tyrone +Allen +Chance +Fabian +Jack +Nicolas +Calvin +Carl +Darrell +Devon +Pablo +Rafael +Rudy +Wayne +Billy +Caleb +Eddie +Bobby +Dane +Gerardo +Jamie +Noah +Ray +Roman +Theodore +Tommy +Zane +Alexis +Beau +Branden +Brendan +Bruce +Dallas +Eugene +Glenn +Gordon +Karl +Myron +Ronnie +Ross +Steve +Ty +Chris +Donovan +Ignacio +Morgan +Orlando +Tanner +Tristan +Alfonso +Dale +Edgar +Emmanuel +Gilberto +Heath +Jayson +Jerome +Joey +Josiah +Kelly +Neil +Rick +Clifford +Frederick +Guillermo +Gustavo +Israel +Jarrod +Jermaine +Joaquin +Kent +Nickolas +Ralph +Skyler +Xavier +Alfredo +Brad +Brenton +Bret +Cedric +Damon +Dillon +Elias +Erick +Esteban +Felipe +Fred +Gerald +Ismael +Landon +Lyle +Reynaldo +Rogelio +Santiago +Sheldon +Stanley +Tomas +Walter +Alfred +Alvin +Angelo +Byron +Charlie +Clint +Collin +Damian +Dean +Delbert +Diego +Frankie +Guadalupe +Harry +Isaiah +Kurtis +Marshall +Maurice +Roland +Simon +Stephan +Stuart +Terrance +Conrad +Duane +Edwardo +Efrain +Elliott +Estevan +Josue +Kellen +Kendall +Kurt +Loren +Riley +Roderick +Rory +Sonny +Terence +Tyson +Vernon +Vicente +Alvaro +Blaine +Brock +Colton +Dwayne +Earl +Franklin +Harrison +Kasey +Kody +Lewis +Marvin +Mason +Max +Moses +Nolan +Reuben +Ryne +Trent +Trenton +Warren +Alonzo +Bryant +Cruz +Elijah +Ethan +Gavin +Greg +Heriberto +Jody +Keegan +Kristofer +Marlon +Maxwell +Nathanael +Norman +Pete +Reginald +Rodolfo +Stefan +Tyrel +Willie +Andy +Bernard +Bernardo +Brennan +Bryon +Chaz +Damien +Dana +Darryl +Davin +Dwight +Guy +Jairo +Jarod +Jarred +Jeff +Kenny +Korey +Kory +Malcolm +Miles +Nelson +Noel +Perry +Rex +Rodney +Rusty +Saul +Ted +Toby +Weston +Zachariah +Abram +Adolfo +Ashley +Ashton +Barry +Bradly +Brady +Brenden +Brendon +Carlo +Chester +Clifton +Colt +Cristopher +Dallin +Dan +Daryl +Don +Edmund +Efren +Elliot +Erich +Felix +Francis +Fredrick +Gene +Glen +Graham +Harley +Howard +Hunter +Isidro +Jackie +Jameson +Jarrett +Jefferson +Johnathon +Johnnie +Kirk +Leander +Leo +Leon +Leonardo +Lino +Manny +Mikel +Monty +Nikolas +Quentin +Rigoberto +Sebastian +Skylar +Stewart +Tyrell +Wade +Zachery +Alden +Ali +Allan +Aric +Arnold +Arron +Bradford +Carlton +Christina +Clark +Clay +Cornelius +Coty +Cristobal +Darin +Darius +Davis +Desmond +Dewayne +Dexter +Edgardo +Edwin +Eli +Emerson +Emery +Erwin +Faron +Freddie +Garrick +Gonzalo +Hal +Jamison +Jaron +Jarvis +Jeramy +Jimmie +Johnson +Jonah +Jordon +Kelvin +Ken +Kendrick +Lambert +Lonnie +Marino +Noe +Octavio +Raymundo +Reyes +Royce +Santos +Shea +Sterling +Sylvester +Willis +Michael +Christopher +Matthew +Daniel +David +Joshua +Ryan +James +Robert +Andrew +Joseph +Brandon +Nicholas +Justin +Anthony +John +Kyle +Steven +Eric +Brian +Jacob +Jason +Jonathan +Richard +William +Adam +Jose +Aaron +Kevin +Timothy +Thomas +Sean +Jeremy +Tyler +Benjamin +Mark +Nathan +Stephen +Jeffrey +Jesse +Patrick +Scott +Charles +Juan +Zachary +Alexander +Dustin +Cody +Paul +Jesus +Derek +Travis +Gregory +Samuel +Bryan +Gabriel +Bradley +Francisco +Kenneth +Shawn +Jared +Carlos +Adrian +Luis +Martin +Chad +Shane +Alex +Manuel +Miguel +Edward +Ian +Antonio +Brett +Nathaniel +Phillip +Marcus +Victor +Jordan +Raymond +Vincent +Donald +Cory +Joel +Brent +George +Peter +Austin +Casey +Evan +Mario +Alan +Frank +Cameron +Erik +Corey +Garrett +Seth +Keith +Craig +Johnny +Ricardo +Fernando +Alejandro +Javier +Trevor +Christian +Douglas +Ivan +Sergio +Devin +Ruben +Oscar +Philip +Andres +Angel +Jorge +Taylor +Derrick +Randy +Ronald +Chase +Jeremiah +Clinton +Gary +Ramon +Wesley +Armando +Roberto +Shaun +Hector +Micheal +Albert +Julian +Mathew +Troy +Gilbert +Joe +Luke +Mitchell +Curtis +Danny +Marc +Todd +Blake +Colin +Dennis +Jeffery +Larry +Logan +Marcos +Bryce +Kristopher +Arthur +Clayton +Ernesto +Jon +Alfredo +Darren +Jaime +Roy +Spencer +Abraham +Jerry +Pedro +Isaac +Julio +Lorenzo +Louis +Drew +Dylan +Lance +Lucas +Marco +Allen +Arturo +Dominic +Enrique +Henry +Levi +Russell +Alberto +Andre +Donovan +Geoffrey +Jake +Lee +Preston +Raul +Rene +Caleb +Roman +Terry +Tony +Jay +Billy +Randall +Beau +Carl +Cesar +Eduardo +Gerardo +Jack +Pablo +Tanner +Tyson +Devon +Lawrence +Nicolas +Xavier +Cole +Darrell +Jimmy +Jonathon +Alfred +Ernest +Johnathan +Rodney +Terrance +Bobby +Branden +Elijah +Emmanuel +Grant +Israel +Kelly +Leonard +Lionel +Nickolas +Tyrone +Alfonso +Bruce +Chance +Dallas +Jamie +Neil +Omar +Rafael +Warren +Abel +Dale +Edwin +Jerome +Ross +Salvador +Theodore +Dean +Gerald +Noah +Ray +Ronnie +Rudy +Wayne +Alexis +Brenton +Bryant +Diego +Kurt +Morgan +Orlando +Ricky +Trenton +Wyatt +Calvin +Frankie +Karl +Rodolfo +Roger +Tristan +Walter +Brendan +Byron +Clifford +Dane +Elias +Fabian +Gilberto +Jessie +Johnathon +Josiah +Leon +Marshall +Micah +Nolan +Roland +Tomas +Trent +Weston +Adan +Allan +Brendon +Clarence +Clint +Damien +Damon +Donavan +Duane +Edgar +Eli +Francis +Glenn +Hunter +Joaquin +Landon +Rogelio +Saul +Skyler +Steve +Terrence +Zachery +Arnold +Ben +Brice +Dillon +Erick +Harold +Joey +Kody +Malcolm +Marvin +Max +Perry +Ralph +Roderick +Vicente +Zane +Alonzo +Brad +Brock +Clifton +Collin +Felix +Frederick +Gavin +Guillermo +Gustavo +Isaiah +Jayson +Josue +Kurtis +Leonardo +Maurice +Maxwell +Nathanael +Rick +Stanley +Stefan +Stuart +Tommy +Ty +Alec +Alvin +Barry +Clark +Colby +Conrad +Daren +Darrick +Dwight +Earl +Eddie +Esteban +Estevan +Ethan +Eugene +Franklin +Freddie +Kendall +Kory +Leo +Leroy +Loren +Louie +Lyle +Mason +Neal +Noel +Norman +Pete +Rocky +Wade +Andy +Angelo +Ashley +Augustine +Bernardo +Brennan +Cristobal +Cyrus +Damian +Darrin +Derick +Erwin +Felipe +Gene +Harry +Jarrod +Kellen +Leland +Miles +Reuben +Riley +Rory +Sammy +Shea +Simon +Sterling +Vernon +Willie +Zachariah +Zackery +Agustin +Benito +Brady +Bret +Carlton +Carson +Clay +Colton +Daryl +Emanuel +Erin +Galen +Glen +Harrison +Humberto +Ignacio +Joesph +Josef +Leander +Myles +Myron +Quentin +Ramiro +Reynaldo +Sheldon +Stephan +Zackary +Addison +Arron +Blaine +Bo +Braden +Bradford +Brenden +Connor +Courtney +Cruz +Dakota +Dallin +Darin +Davis +Dominique +Don +Efrain +Efren +Elliott +Eloy +Emilio +Floyd +Fred +Freddy +Fredrick +Garret +Greg +Guadalupe +Guy +Ismael +Jameson +Jarrett +Jerod +Jess +Keenan +Kendrick +Kent +Kirk +Lloyd +Marty +Nick +Oliver +Parker +Pierre +Quinn +Randon +Raymundo +Robby +Rodrigo +Roque +Rudolph +Santos +Tyrell +Valentin +Aldo +Ali +Alton +Arnoldo +Aron +Bradly +Cassidy +Cedric +Channing +Chaz +Chris +Coleman +Conor +Cordell +Corwin +Daiel +Dan +Dario +Darryl +Dexter +Domonic +Edwardo +Eleazar +Ernie +Ezequiel +Fermin +Forest +Garry +Gregorio +Ira +Isidro +Jarvis +Jayce +Jerrad +Josh +Juancarlos +Kasey +Keaton +Kenny +Kiel +Kristofer +Lonnie +Mayra +Melvin +Mohammed +Monty +Moses +Nicole +Nigel +Nikolas +Owen +Reginald +Rocco +Rolando +Royce +Rusty +Ryne +Scot +Sherwin +Skylar +Sonny +Ted +Wendell +Zechariah +Michael +Christopher +Matthew +Daniel +David +Andrew +Joshua +Ryan +Robert +James +Justin +Anthony +Joseph +Nicholas +Brandon +John +Kyle +Eric +Steven +Jonathan +William +Jacob +Aaron +Brian +Jose +Adam +Jason +Kevin +Thomas +Richard +Tyler +Timothy +Jeffrey +Benjamin +Mark +Alexander +Zachary +Nathan +Sean +Jeremy +Stephen +Cody +Patrick +Scott +Jesse +Samuel +Travis +Dustin +Paul +Charles +Jesus +Derek +Gabriel +Carlos +Jordan +Juan +Bryan +Francisco +Gregory +Manuel +Kenneth +Luis +Jared +Bradley +Chad +Cory +Edward +Shawn +Shane +Adrian +Miguel +Alex +Austin +Mario +Nathaniel +Raymond +Victor +Cameron +Corey +Antonio +Joel +Martin +Phillip +Frank +Ian +Peter +Trevor +Erik +Angel +Ricardo +Casey +Donald +Brett +George +Ruben +Fernando +Keith +Alejandro +Devin +Vincent +Oscar +Ronald +Garrett +Brent +Craig +Marcus +Jorge +Logan +Philip +Wesley +Armando +Albert +Chase +Edgar +Sergio +Christian +Curtis +Randy +Joe +Marco +Mathew +Gary +Douglas +Hector +Johnny +Roberto +Alan +Andres +Derrick +Blake +Colin +Javier +Kristopher +Lucas +Ramon +Seth +Troy +Gilbert +Jeremiah +Mitchell +Taylor +Bryce +Jerry +Dominic +Raul +Ricky +Lance +Luke +Preston +Danny +Ivan +Julio +Jonathon +Julian +Alberto +Dylan +Johnathan +Micheal +Spencer +Terry +Dennis +Grant +Isaac +Randall +Russell +Arthur +Arturo +Clayton +Darren +Jeffery +Levi +Orlando +Tony +Caleb +Gerald +Pedro +Todd +Enrique +Jaime +Jay +Larry +Nickolas +Allen +Carl +Darrell +Eduardo +Shaun +Tanner +Geoffrey +Henry +Omar +Brendan +Jack +Lawrence +Marc +Rudy +Andre +Bobby +Cole +Drew +Ernesto +Jimmy +Cesar +Dale +Jon +Lee +Lorenzo +Marcos +Nicolas +Abraham +Billy +Diego +Louis +Rene +Roy +Xavier +Abel +Byron +Donovan +Gustavo +Jake +Micah +Theodore +Alfredo +Emmanuel +Fabian +Neil +Ross +Tyrone +Walter +Ernest +Max +Steve +Wayne +Clinton +Jamie +Jessie +Miles +Ray +Salvador +Trenton +Tristan +Calvin +Chance +Guillermo +Isaiah +Mason +Rafael +Roger +Terrance +Bryant +Collin +Cruz +Damian +Jerome +Kendrick +Kody +Lyle +Morgan +Ralph +Ronnie +Alexis +Andy +Bruce +Devon +Dillon +Elijah +Francis +Israel +Jayson +Maurice +Roman +Sterling +Tyson +Blaine +Darrin +Eddie +Eugene +Frederick +Gerardo +Glenn +Hunter +Leo +Marshall +Skyler +Stephan +Beau +Duane +Edwin +Efrain +Evan +Gilberto +Heath +Ismael +Karl +Kelly +Landon +Malcolm +Pablo +Sheldon +Ty +Wyatt +Dallas +Daryl +Elias +Everett +Gavin +Harrison +Ignacio +Jarrett +Joey +Kory +Kurt +Leonard +Myron +Noah +Reynaldo +Riley +Rodney +Tommy +Wade +Alfonso +Alfred +Augustine +Barry +Brady +Branden +Brendon +Dallin +Damien +Eli +Erick +Esteban +Felipe +Heriberto +Jameson +Josiah +Lionel +Loren +Maxwell +Rodolfo +Tomas +Trent +Warren +Adan +Angelo +Ashley +Bernard +Chadwick +Clint +Derick +Emery +Frankie +Glen +Johnathon +Josue +Kristofer +Myles +Reuben +Santiago +Saul +Stefan +Vicente +Zachery +Alec +Alvaro +Brooks +Clay +Colby +Colt +Colton +Dane +Dominique +Dwight +Estevan +Ethan +Felix +Freddie +Guy +Harold +Harry +Hugo +Jace +Jaron +Kirk +Mike +Nolan +Pete +Reed +Reid +Rick +Rogelio +Sonny +Zachariah +Zackary +Allan +Amos +Arnold +Avery +Ben +Brad +Brock +Clifford +Clifton +Forrest +Fred +Greg +Herman +Howard +Humberto +Jarrod +Kendall +Leland +Marvin +Melvin +Neal +Nelson +Oliver +Ramiro +Sam +Sammy +Stuart +Terrence +Vernon +Weston +Addison +Alvin +Arron +Benito +Brenton +Bryon +Charlie +Conrad +Courtney +Dakota +Danial +Darryl +Dwayne +Edmund +Elliott +Floyd +Franklin +Fredrick +Jackson +Joaquin +Joesph +Keenan +Kenny +Lamar +Leon +Norman +Parker +Royce +Salvatore +Skylar +Terence +Tyrell +Zane +Abram +Ali +Alonzo +Aron +Austen +Brennan +Chris +Clark +Conor +Darin +Davis +Dean +Freddy +Grady +Jarred +Jeff +Jeffry +Jessica +Johnnie +Jonah +Korey +Kurtis +Mauricio +Nathanael +Noel +Owen +Perry +Pierre +Reginald +Rex +Robin +Rodrigo +Rory +Santos +Shayne +Shea +Simon +Stanley +Tyrel +Willie +Abelardo +Adalberto +Amanda +Ariel +Baby +Babyboy +Bennett +Benny +Bernardo +Braden +Bradford +Bret +Carlton +Carson +Cedric +Clarence +Conner +Connor +Cordero +Coty +Cyrus +Dalton +Damon +Dana +Darrel +Dave +Deven +Dominick +Drake +Dusty +Earl +Elliot +Emanuel +Emilio +Erwin +Esteven +Ezekiel +Ezra +Garret +German +Gordon +Harvey +Isidro +Jacques +Jarryd +Jasper +Jerald +Jeramy +Jerel +Jess +Jim +Joseluis +Kasey +Kent +Kirby +Leander +Leighton +Leonardo +Leroy +Leslie +Lonnie +Mariano +Michale +Mitchel +Monty +Moses +Nathanial +Octavio +Patricio +Quentin +Quinton +Raymundo +Rigoberto +Rusty +Sebastian +Shay +Spenser +Stanton +Talon +Teddy +Tory +Vaughn +Vince +Will +Zackery +Michael +Christopher +Matthew +Joshua +Daniel +David +Andrew +Robert +Justin +Ryan +Joseph +Anthony +James +John +Kyle +Nicholas +Brandon +Jonathan +Jacob +Eric +William +Steven +Jose +Brian +Zachary +Aaron +Thomas +Richard +Adam +Benjamin +Kevin +Tyler +Timothy +Cody +Alexander +Jason +Sean +Jeremy +Nathan +Mark +Jesus +Travis +Jeffrey +Jesse +Charles +Paul +Patrick +Scott +Dustin +Samuel +Stephen +Austin +Gabriel +Juan +Derek +Carlos +Bryan +Francisco +Luis +Kenneth +Alex +Jordan +Cory +Manuel +Cameron +Edward +Chad +Bradley +Jared +Shane +Ricardo +Shawn +Adrian +Victor +Marcus +Vincent +Martin +Phillip +Corey +Ian +Nathaniel +Raymond +Brett +Peter +Trevor +Gregory +Miguel +Casey +Ruben +Angel +Frank +Mario +Taylor +Jorge +Devin +Ronald +Antonio +Fernando +Christian +Chase +Erik +Oscar +Douglas +Garrett +Logan +Alejandro +Sergio +Craig +Keith +Levi +Andres +Hector +Joel +Isaac +Jeremiah +Raul +Wesley +Blake +Donald +Jonathon +Brent +Derrick +Johnny +Ramon +Seth +Troy +Clayton +Dylan +George +Randy +Alberto +Javier +Armando +Bryce +Gary +Marcos +Roberto +Albert +Cesar +Julian +Mitchell +Russell +Spencer +Curtis +Preston +Rene +Tanner +Mathew +Eduardo +Omar +Alan +Colin +Luke +Marc +Marco +Pedro +Caleb +Dominic +Lance +Randall +Dennis +Edgar +Kristopher +Orlando +Clinton +Danny +Henry +Jeffery +Lucas +Shaun +Todd +Bryant +Ernesto +Johnathan +Philip +Tony +Ivan +Jaime +Geoffrey +Jake +Tyson +Arthur +Arturo +Joe +Micheal +Ross +Julio +Rafael +Rudy +Donovan +Gerardo +Jack +Enrique +Jerry +Abraham +Allen +Gilbert +Xavier +Bobby +Carl +Darren +Drew +Emmanuel +Fabian +Lawrence +Morgan +Colton +Lee +Lorenzo +Maxwell +Nicolas +Terry +Diego +Grant +Roy +Brendan +Guillermo +Jay +Jimmy +Larry +Louis +Max +Roger +Isaiah +Jon +Rodolfo +Roman +Theodore +Alfredo +Ernest +Felix +Gilberto +Gustavo +Ray +Stefan +Vicente +Andre +Billy +Cole +Devon +Dillon +Jamie +Kurt +Mason +Micah +Neil +Terrance +Trent +Tyrone +Alec +Collin +Edwin +Ismael +Jarrod +Kirk +Lionel +Terrence +Zachariah +Abel +Calvin +Dallas +Dane +Eddie +Hunter +Landon +Skyler +Steve +Alfonso +Beau +Chance +Connor +Elias +Emilio +Erick +Israel +Loren +Rodney +Tommy +Blaine +Byron +Clint +Colby +Damien +Dean +Eli +Estevan +Felipe +Franklin +Marshall +Noah +Reginald +Ricky +Riley +Trenton +Walter +Zackary +Alfred +Andy +Brady +Branden +Elijah +Glenn +Jaron +Lyle +Miles +Myron +Nolan +Pablo +Ronnie +Saul +Stuart +Wayne +Weston +Ashton +Dominick +Ethan +Gavin +Gerald +Harrison +Ignacio +Josiah +Karl +Leonard +Marvin +Parker +Roland +Santiago +Sterling +Tomas +Adolfo +Clifford +Dale +Damian +Darryl +Duane +Efrain +Elliot +Irving +Jerome +Josue +Kendall +Kody +Kory +Malcolm +Nickolas +Ralph +Vance +Wyatt +Zachery +Brenton +Bronson +Carson +Darrin +Elliott +Esteban +Evan +Glen +Jarred +Jessie +Nelson +Rogelio +Salvador +Sheldon +Stephan +Vernon +Alexis +Angelo +Darrell +Dominique +Dwayne +Harold +Joaquin +Joey +Kasey +Kendrick +Leland +Leo +Nathanael +Rolando +Simon +Alonso +Braden +Bret +Brock +Bruce +Jeff +Kellen +Kelly +Leonardo +Leslie +Milton +Octavio +Oliver +Tracy +Uriel +Agustin +Arnold +Bernard +Brad +Bryson +Chris +Clay +Cruz +Everardo +Francis +Frankie +Gregorio +Hugo +Humberto +Josef +Kaleb +Leon +Lewis +Myles +Perry +Quentin +Reid +Reynaldo +Rick +Rueben +Ryne +Salvatore +Ted +Toby +Tristan +Vanessa +Wade +Warren +Westley +Abram +Adan +Alvaro +Arron +Asa +Augustine +Aurelio +Avery +Brice +Cecil +Chaz +Clifton +Conner +Conrad +Darin +Darius +Derick +Forrest +Frederick +Garret +Guadalupe +Harley +Harry +Jarvis +Jerald +Juancarlos +Kent +Kurtis +Lane +Leonel +Lloyd +Louie +Maria +Neal +Nikolas +Noel +Rodrigo +Rusty +Sebastian +Shayne +Stanley +Tom +Tyrell +Willie +Zane +Allan +Alvin +Barry +Corbin +Courtney +Dallin +Dalton +Daryl +Devan +Drake +Earl +Emery +Federico +Fermin +Garrick +Harris +Heath +Irvin +Jace +Jackson +Jarrett +Jess +Jessica +Jim +Johnathon +Jordon +Kirby +Markus +Marty +Mauricio +Melvin +Moses +Noe +Pete +Quinn +Ramiro +Reymundo +Shannon +Sonny +Ty +Tylor +Valentino +Alonzo +Ammon +Antony +Ariel +Aron +Arsenio +Baby +Brandin +Brenden +Brendon +Bryon +Carter +Chadwick +Cheyenne +Clarence +Colt +Cordell +Damon +Davin +Delbert +Desmond +Don +Elton +Ephraim +Eugene +Ezra +Fidel +Gordon +Greg +Gregg +Herbert +Herschel +Houston +Howard +Isidro +Jameson +Jaren +Jerod +Julius +Kameron +Keaton +Kelvin +Ken +Kenny +Kristofer +Leander +Leif +Luciano +Misael +Mohammad +Monty +Murphy +Mychal +Nick +Norman +Reece +Reuben +Reyes +Robbie +Robin +Rory +Sam +Samson +Silas +Spenser +Terence +Tobias +Trey +Uriah +Van +Vince +Vinson +Waylon +Westin +Will +Michael +Christopher +Joshua +Daniel +Matthew +David +Andrew +Robert +Ryan +Joseph +Nicholas +Anthony +James +Justin +Kyle +John +Jacob +Brandon +Eric +Tyler +Jose +Steven +William +Zachary +Jonathan +Kevin +Richard +Aaron +Adam +Thomas +Benjamin +Brian +Sean +Alexander +Cody +Timothy +Nathan +Jesus +Juan +Derek +Travis +Mark +Jordan +Jeremy +Paul +Samuel +Jesse +Charles +Stephen +Jason +Luis +Dustin +Austin +Francisco +Carlos +Jeffrey +Patrick +Scott +Gabriel +Victor +Jared +Adrian +Alex +Cameron +Manuel +Kenneth +Edward +Bryan +Gregory +Miguel +Ian +Bradley +Marcus +Shane +Antonio +Phillip +Vincent +Corey +Angel +Taylor +Alejandro +Chad +Cory +Shawn +Logan +Martin +Christian +Mario +Trevor +Ruben +Peter +Jorge +Raymond +Casey +Joel +Nathaniel +Sergio +George +Ricardo +Roberto +Hector +Oscar +Erik +Donald +Garrett +Keith +Javier +Brett +Douglas +Chase +Fernando +Frank +Isaac +Troy +Edgar +Albert +Armando +Levi +Wesley +Brent +Mitchell +Ramon +Derrick +Lucas +Ronald +Seth +Devin +Ethan +Julian +Spencer +Cesar +Johnny +Arturo +Eduardo +Gary +Ivan +Jonathon +Mathew +Preston +Tanner +Dylan +Marcos +Philip +Raul +Andres +Jaime +Kristopher +Alberto +Colton +Curtis +Dominic +Jeremiah +Craig +Marc +Alan +Blake +Drew +Ernesto +Luke +Colin +Randy +Rafael +Clayton +Danny +Marco +Orlando +Gilbert +Johnathan +Lance +Pedro +Enrique +Julio +Caleb +Carl +Dillon +Gerardo +Rene +Arthur +Max +Micheal +Xavier +Bryant +Dennis +Bryce +Joe +Randall +Fabian +Jake +Omar +Ricky +Andre +Grant +Jerry +Nicolas +Devon +Henry +Isaiah +Israel +Jay +Jeffery +Larry +Lawrence +Lorenzo +Nickolas +Roman +Roy +Shaun +Abraham +Collin +Todd +Abel +Diego +Donovan +Erick +Louis +Alfredo +Beau +Geoffrey +Hunter +Jack +Jon +Russell +Alfonso +Allen +Bruce +Calvin +Emmanuel +Guillermo +Gustavo +Salvador +Clinton +Cole +Jimmy +Rudy +Trenton +Jamie +Ray +Skyler +Tony +Brendan +Darren +Dominique +Elias +Karl +Mason +Pablo +Ross +Tommy +Alfred +Byron +Damien +Darrell +Emilio +Estevan +Maxwell +Micah +Neil +Rogelio +Sheldon +Terry +Trent +Bobby +Ernest +Evan +Gilberto +Loren +Stephan +Vicente +Blaine +Branden +Chance +Colby +Dean +Esteban +Landon +Miles +Rodney +Rodolfo +Billy +Clifford +Clint +Corbin +Eddie +Frederick +Harold +Ismael +Josue +Malcolm +Roger +Stefan +Terrance +Tristan +Warren +Wyatt +Alexis +Alvaro +Arnold +Brock +Dakota +Edwin +Frankie +Franklin +Gerald +Hugo +Johnathon +Kelly +Leonardo +Marvin +Ralph +Saul +Steve +Theodore +Ty +Zachery +Alonzo +Brady +Jaron +Leonard +Lionel +Sam +Santiago +Skylar +Tyrone +Tyson +Wade +Zackery +Andy +Angelo +Brennan +Connor +Damian +Daryl +Dominick +Elijah +Eugene +Felix +Humberto +Ignacio +Irvin +Jayson +Joaquin +Joey +Jordon +Kendrick +Kody +Lee +Maurice +Noah +Noel +Reuben +Sterling +Wayne +Weston +Zachariah +Zackary +Adan +Alonso +Brad +Brendon +Cristian +Cruz +Dallas +Damon +Eli +Emanuel +Felipe +Forrest +Glenn +Heath +Jessie +Kendall +Kirk +Kurtis +Lyle +Rick +Vance +Alvin +Ben +Dallin +Dane +Efren +Everett +Francis +Guadalupe +Harvey +Jarrod +Jeff +Kaleb +Kasey +Marshall +Mauricio +Morgan +Nikolas +Riley +Tyrell +Walter +Zane +Adolfo +Aldo +Alec +Bo +Bret +Chandler +Chaz +Conrad +Dale +Dexter +Dwight +Emerson +Gavin +Harrison +Howard +Jameson +Kameron +Keegan +Leo +Lewis +Mackenzie +Octavio +Parker +Quinton +Reginald +Robin +Rolando +Tucker +Ashton +Augustine +Benito +Bernardo +Bryon +Carson +Carter +Don +Duane +Elliot +Fredrick +German +Greg +Griffin +Irving +Isaias +Jarrett +Jerome +Josiah +Kent +Leonel +Myron +Neal +Nelson +Nico +Ramiro +Reynaldo +Rigoberto +Stanley +Terrence +Trey +Arsenio +Brenton +Bronson +Bryson +Colten +Cordell +Cristopher +Dalton +Darwin +Deandre +Donavan +Ernie +Ezekiel +Garrick +Garrison +Harry +Isidro +Jaren +Jermaine +Jimmie +Julius +Keenan +Kellen +Kelsey +Korey +Kory +Marquis +Myles +Nathanial +Nestor +Noe +Oliver +Perry +Reyes +Rico +Roderick +Rory +Santos +Shannon +Simon +Tomas +Brandyn +Brice +Cedric +Channing +Charlie +Chris +Conner +Dana +Darryl +Davis +Delbert +Derick +Devan +Elliott +Emery +Federico +Fidel +Gene +Glen +Harley +Isiah +Issac +Jaymes +Jerald +Jessica +Jonas +Justice +Kenny +Kurt +Leander +Leon +Leroy +Lonnie +Luciano +Mike +Mitchel +Moises +Nolan +Norman +Pete +Ronnie +Ryne +Salvatore +Sammy +Stetson +Stuart +Thaddeus +Toby +Tory +Vince +Zechariah +Adalberto +Allan +Ammon +Ariana +Arnoldo +Aron +Ashley +Axel +Baltazar +Benny +Brandt +Brenden +Clarence +Clark +Clyde +Cooper +Cornelius +Dante +Darrin +Demetrius +Dereck +Desmond +Dion +Donnie +Dorian +Dwayne +Edwardo +Erich +Ezra +Garry +Gordon +Hans +Heriberto +Hugh +Ira +Isai +Jackson +Jairo +Jarod +Jarred +Jermey +Jim +Johnnie +Jr +Kelvin +Kristofer +Lamar +Lane +Leland +Lloyd +Louie +Manny +Maximillian +Melvin +Mikel +Milton +Mychal +Nikolaus +Norberto +Orion +Owen +Quentin +Raphael +Rashad +Rex +Rodrigo +Rusty +Santino +Schuyler +Sidney +Terence +Theron +Tj +Tracy +Tylor +Ulysses +Uriah +Valentin +Valentino +Vernon +Wacey +Wilson +Michael +Christopher +Joshua +Daniel +Matthew +David +Andrew +Ryan +Anthony +Joseph +Robert +Nicholas +Jacob +Tyler +Justin +Kyle +James +Jose +John +Brandon +Steven +Zachary +Jonathan +Cody +William +Eric +Aaron +Thomas +Alexander +Kevin +Richard +Jordan +Brian +Adam +Luis +Jesus +Timothy +Jeremy +Benjamin +Nathan +Sean +Juan +Travis +Austin +Stephen +Jesse +Patrick +Samuel +Paul +Mark +Gabriel +Jason +Charles +Dustin +Carlos +Francisco +Jeffrey +Taylor +Adrian +Derek +Manuel +Cameron +Christian +Alex +Alejandro +Jared +Miguel +Scott +Victor +Vincent +Kenneth +Shane +Trevor +Ethan +Gregory +Shawn +Martin +Nathaniel +Antonio +Bryan +Erik +Jorge +Marcus +Mario +Angel +Bradley +Cory +Edward +Ruben +Ricardo +Dylan +Hector +Casey +Corey +Ian +Garrett +Keith +Sergio +Chad +Raymond +Chase +Julian +Phillip +Ramon +Logan +Colton +Isaac +Javier +Joel +Oscar +Fernando +Brett +Eduardo +Roberto +Seth +George +Julio +Spencer +Frank +Troy +Edgar +Peter +Enrique +Jonathon +Douglas +Jake +Levi +Raul +Henry +Randy +Jeremiah +Johnny +Mathew +Mitchell +Devin +Gary +Tanner +Marco +Donald +Ivan +Lance +Ronald +Wesley +Caleb +Cesar +Jaime +Omar +Philip +Blake +Brent +Bryce +Derrick +Dominic +Andres +Colin +Pedro +Alan +Armando +Ernesto +Johnathan +Andre +Arturo +Carl +Clayton +Gerardo +Lucas +Nicolas +Connor +Craig +Alberto +Gilbert +Rene +Emmanuel +Marcos +Xavier +Albert +Jeffery +Jerry +Max +Curtis +Isaiah +Kristopher +Micheal +Joe +Larry +Luke +Skyler +Todd +Alfredo +Danny +Devon +Donovan +Fabian +Rafael +Tony +Allen +Dakota +Dillon +Elijah +Emilio +Jack +Marc +Mason +Salvador +Cole +Erick +Louis +Roger +Roman +Russell +Arthur +Dalton +Diego +Eddie +Lee +Rudy +Shaun +Abraham +Dennis +Gustavo +Jessie +Jimmy +Lorenzo +Preston +Roy +Ty +Collin +Dallas +Damian +Jay +Jon +Josue +Nickolas +Abel +Drew +Jackson +Marshall +Saul +Trent +Hunter +Josiah +Ricky +Sebastian +Tommy +Wyatt +Damien +Esteban +Gilberto +Terry +Bobby +Brendan +Brock +Calvin +Chance +Elias +Ernest +Grant +Ismael +Jamie +Kelly +Kody +Lawrence +Riley +Trenton +Zachariah +Andy +Clinton +Evan +Frederick +German +Guillermo +Theodore +Alfonso +Beau +Ignacio +Johnathon +Leonard +Micah +Rodney +Tyson +Adan +Alec +Alexis +Geoffrey +Joaquin +Karl +Nolan +Orlando +Pablo +Ray +Sam +Sheldon +Walter +Weston +Zachery +Bret +Bryant +Dominique +Gavin +Lionel +Miles +Neil +Ronnie +Skylar +Sterling +Steve +Alfred +Alvin +Angelo +Brad +Brendon +Byron +Cruz +Estevan +Hugo +Israel +Kendall +Noah +Parker +Randall +Rogelio +Ross +Stefan +Tyrell +Vance +Wade +Dale +Darren +Dean +Elliot +Felix +Gerald +Giovanni +Harrison +Hayden +Kendrick +Malcolm +Melvin +Stuart +Terrance +Tyrone +Vicente +Warren +Zane +Allan +Brady +Dan +Dwight +Edwin +Forrest +Harold +Heriberto +Jordon +Kory +Kurt +Leonardo +Maxwell +Moises +Morgan +Quinn +Ryne +Santos +Braden +Branden +Bruce +Clint +Colten +Darrell +Felipe +Freddie +Joey +Kurtis +Loren +Nelson +Nikolas +Quinton +Ramiro +Rodrigo +Stephan +Tristan +Wayne +Billy +Brennan +Chris +Cristian +Efrain +Eli +Emanuel +Gene +Heath +Jakob +Keenan +Kirk +Kristian +Leon +Marvin +Noel +Quentin +Ralph +Rodolfo +Stanley +Sylvester +Tucker +Willie +Zackary +Agustin +Barry +Brandyn +Chandler +Charlie +Corbin +Derick +Dusty +Frankie +Gage +Glenn +Gregorio +Irving +Jarod +Jarrod +Lane +Lyle +Maurice +Mauricio +Nathanael +Nestor +Nico +Noe +Octavio +Reuben +Santiago +Shayne +Shelby +Vernon +Augustine +Brenton +Carter +Colby +Conner +Cornelius +Dallin +Damion +Darin +Elliott +Eugene +Federico +Franklin +Freddy +Guadalupe +Guy +Harry +Humberto +Irvin +Issac +Jaron +Jimmie +Joseluis +Keegan +Myron +Nick +Norman +Randolph +Reynaldo +Robin +Simon +Tylor +Uriel +Vaughn +Adolfo +Alvaro +Aron +Ben +Benny +Bernardo +Carlton +Cordell +Damon +Darius +Darrick +Darryl +Daryl +Ezekiel +Fausto +Francis +Garret +Herman +Isidro +Jace +Jefferson +Jerome +Jess +Jim +Juancarlos +Kameron +Kyler +Leander +Lonnie +Marquis +Mickey +Mike +Raymundo +Shannon +Ted +Adriel +Ambrose +Arnold +Arsenio +Aurelio +Blaine +Brice +Bronson +Carson +Chaz +Clarence +Clark +Courtney +Cristobal +Darrin +Davis +Delbert +Desmond +Dexter +Dion +Dominick +Donavan +Efren +Garrick +Gordon +Greg +Harlan +Herbert +Jade +Jayson +Jeff +Johnnie +Julius +Keaton +Kent +Kenton +Kohl +Leo +Leonel +Mychal +Neal +Niko +Oliver +Owen +Pete +Reid +Rick +Robbie +Samson +Stetson +Terence +Terrence +Tomas +Uriah +Vince +Virgil +Abram +Alonso +Aric +Ashley +Ashton +Benito +Bernard +Boyd +Braxton +Bryon +Channing +Colter +Conor +Corwin +Dane +Delano +Denzel +Devan +Dewayne +Don +Dwayne +Edgardo +Edmund +Emerson +Emery +Ernie +Evander +Everardo +Fermin +Fred +Gerard +Greggory +Harley +Holden +Isiah +Jairo +Jamar +Jameson +Kaleb +Kolby +Korey +Leland +Leroy +Lewis +Lloyd +Markus +Marlon +Marty +Mikel +Myles +Nathanial +Nicholaus +Nigel +Quintin +Rey +Reyes +Rocky +Roderick +Rolando +Rory +Sammy +Shon +Sonny +Talon +Terrell +Toby +Trace +Trevon +Ulysses +Valentin +Michael +Christopher +Joshua +Matthew +Daniel +David +Andrew +Ryan +Anthony +Joseph +Jacob +Kyle +Nicholas +Robert +Tyler +Justin +James +Zachary +Brandon +Jose +Cody +John +Steven +Kevin +Alexander +Eric +Jonathan +William +Jesus +Jordan +Aaron +Dylan +Richard +Sean +Juan +Luis +Thomas +Austin +Brian +Benjamin +Christian +Nathan +Francisco +Samuel +Patrick +Adam +Carlos +Timothy +Jesse +Jeremy +Travis +Gabriel +Stephen +Mark +Jeffrey +Charles +Taylor +Jason +Adrian +Victor +Alex +Miguel +Paul +Angel +Shane +Scott +Manuel +Jorge +Jared +Vincent +Trevor +Dustin +Derek +Alejandro +Gregory +Martin +Mario +Cameron +Dillon +Bryan +Hector +Nathaniel +Garrett +Edward +Antonio +Fernando +Marcus +Kenneth +Shawn +Erik +Ian +Ruben +Logan +Cory +Edgar +Raymond +Oscar +Ricardo +Sergio +Casey +Roberto +Ethan +Joel +Julian +George +Tanner +Bradley +Chase +Eduardo +Javier +Seth +Isaac +Marco +Peter +Phillip +Caleb +Cesar +Corey +Ramon +Raul +Brett +Omar +Frank +Ivan +Devin +Blake +Chad +Colton +Spencer +Dakota +Troy +Clayton +Luke +Bryce +Connor +Jake +Preston +Cole +Keith +Marcos +Xavier +Andres +Dominic +Kristopher +Devon +Wesley +Johnny +Jonathon +Julio +Alan +Brent +Hunter +Levi +Mitchell +Alberto +Alec +Gerardo +Gilbert +Donald +Johnathan +Enrique +Isaiah +Jaime +Pedro +Colin +Gary +Joe +Lucas +Mathew +Armando +Craig +Rafael +Albert +Douglas +Rene +Ronald +Diego +Ernesto +Mason +Clinton +Curtis +Dalton +Jeremiah +Nicolas +Andre +Fabian +Arturo +Erick +Gustavo +Lance +Max +Randy +Abraham +Arthur +Collin +Louis +Micheal +Derrick +Israel +Danny +Elias +Emilio +Emmanuel +Jeffery +Randall +Alexis +Gilberto +Guillermo +Marc +Carl +Darren +Hayden +Jack +Allen +Donovan +Parker +Ray +Skyler +Alfredo +Brendan +Damian +Jon +Marshall +Tony +Elijah +Geoffrey +Grant +Nickolas +Salvador +Terrance +Wyatt +Zachariah +Abel +Drew +Eddie +Humberto +Jerry +Johnathon +Ricky +Roy +Terry +Colby +Edwin +Lawrence +Maxwell +Philip +Riley +Rodolfo +Roman +Saul +Todd +Ty +Damien +Dominick +Esteban +German +Jimmy +Larry +Sebastian +Weston +Chance +Estevan +Josiah +Josue +Leonard +Leonardo +Micah +Pablo +Theodore +Alfonso +Harrison +Ismael +Russell +Stefan +Trent +Branden +Dennis +Frankie +Henry +Kody +Landon +Lane +Orlando +Rodney +Rogelio +Santiago +Stephan +Tomas +Zachery +Alfred +Beau +Bryant +Calvin +Guadalupe +Jackson +Joaquin +Lee +Maurice +Morgan +Nolan +Reynaldo +Sheldon +Walter +Angelo +Billy +Dallas +Gage +Jessie +Lorenzo +Noah +Roger +Rudy +Steve +Ariel +Blaine +Clint +Dominique +Kory +Lyle +Miles +Nathanael +Shelby +Wayne +Adan +Alonzo +Damon +Eli +Evan +Frederick +Harley +Jay +Keegan +Loren +Malcolm +Ross +Shaun +Tommy +Tyrone +Warren +Bobby +Brendon +Bruce +Dale +Efrain +Ernest +Eugene +Felipe +Garret +Ignacio +Jamal +Jamie +Kasey +Keaton +Kurt +Trenton +Vicente +Avery +Bret +Byron +Clifford +Cristian +Drake +Elliot +Franklin +Gerald +Glenn +Leonel +Norman +Ronnie +Skylar +Tylor +Tyrell +Alexandro +Alvaro +Andy +Carlton +Charlie +Clay +Conner +Cordell +Gavin +Glen +Hugo +Jace +Jarred +Kelly +Kendall +Leon +Markus +Monty +Nikolas +Noel +Ramiro +Trey +Tristan +Zackery +Zane +Brennan +Cedric +Chandler +Conor +Cruz +Dallin +Damion +Dante +Demetrius +Forrest +Genaro +Guy +Harold +Heriberto +Hernan +Isiah +Issac +Jarrod +Jayson +Jerome +Joey +Karl +Kirk +Kurtis +Leo +Lewis +Miguelangel +Nathanial +Neil +Nelson +Reuben +Rick +Sage +Sam +Santos +Terrence +Willie +Arnold +Aron +Benny +Brad +Bryson +Carson +Carter +Coty +Derick +Dwight +Eliseo +Gordon +Irving +Jameson +Kaleb +Kendrick +Marvin +Moises +Myron +Noe +Oliver +Pete +Sterling +Stuart +Tevin +Tucker +Vernon +Zackary +Abelardo +Agustin +Allan +Alonso +Bo +Brenton +Colten +Conrad +Corbin +Dane +Darin +Dario +Darrell +Darrin +Dillan +Duane +Duncan +Edgardo +Efren +Emanuel +Evander +Francis +Gregorio +Harry +Harvey +Irvin +Jakob +Jordon +Keenan +Kolton +Korey +Lionel +Lukas +Marcel +Mike +Nestor +Nigel +Octavio +Paris +Pierce +Quinn +Quinton +Ralph +Rodrigo +Roland +Rolando +Ryne +Shayne +Simon +Stanley +Toby +Tyson +Uriel +Valentin +Vince +Wade +Westley +Benito +Bernardo +Brady +Brandt +Brock +Broderick +Chaz +Clarence +Clifton +Courtney +Davis +Dion +Dwayne +Dyllan +Earl +Edwardo +Elliott +Felix +Forest +Freddy +Griffin +Gunnar +Jade +Jaron +Jeff +Julius +Keanu +Keven +Leander +Leroy +Lonnie +Luciano +Maria +Marlon +Melvin +Moses +Myles +Niko +Owen +Rashad +Raymundo +Reginald +Rigoberto +Robin +Sammy +Sheridan +Truman +Uriah +Addison +Aldo +Alvin +Ashton +Axel +Baby +Brandyn +Bruno +Chester +Chris +Colter +Cullen +Daryl +Derrek +Devan +Dewayne +Domonic +Edmund +Eleazar +Elizabeth +Ezekiel +Fausto +Garrick +Garth +Gibran +Houston +Jarod +Jarvis +Jerrod +Josemanuel +Kegan +Kent +Kirby +Kolby +Kristofer +Leland +Liam +Mackenzie +Marty +Mauricio +Milton +Nicholaus +Nico +Quentin +Quincy +Reyes +Rudolph +Samir +Shay +Shea +Skye +Sonny +Stewart +Teddy +Thaddeus +Tory +Tracy +Ulysses +Vidal +Virgil +Will +Wilson +Michael +Christopher +Joshua +Daniel +David +Matthew +Andrew +Jacob +Ryan +Brandon +Tyler +Anthony +Joseph +Robert +Zachary +Jose +Nicholas +Justin +James +Cody +Kyle +Alexander +John +Jesus +Jonathan +Dylan +Aaron +William +Kevin +Steven +Eric +Christian +Austin +Luis +Jordan +Thomas +Juan +Richard +Nathan +Brian +Adam +Timothy +Carlos +Sean +Gabriel +Benjamin +Patrick +Francisco +Samuel +Taylor +Jesse +Jason +Adrian +Miguel +Manuel +Alejandro +Mark +Jeremy +Tanner +Paul +Angel +Jeffrey +Stephen +Travis +Charles +Martin +Jorge +Bryan +Victor +Alex +Trevor +Dustin +Antonio +Scott +Derek +Jared +Shane +Cameron +Dillon +Connor +Mario +Ian +Nathaniel +Kenneth +Fernando +Ricardo +Ruben +Raymond +Sergio +Shawn +Edward +Devin +Garrett +Eduardo +Marcus +Vincent +Ramon +Dominic +George +Cory +Oscar +Chase +Hector +Logan +Casey +Joel +Chad +Colton +Dakota +Ethan +Edgar +Gregory +Erik +Javier +Seth +Caleb +Corey +Ivan +Roberto +Andres +Isaac +Luke +Julio +Bradley +Cesar +Jake +Raul +Alan +Alberto +Julian +Gerardo +Omar +Pedro +Spencer +Blake +Lucas +Marco +Armando +Xavier +Ernesto +Mitchell +Peter +Brett +Frank +Jaime +Johnny +Bryce +Phillip +Cristian +Arturo +Mathew +Marcos +Brent +Johnathan +Dalton +Donald +Enrique +Gilbert +Philip +Arthur +Hayden +Abraham +Rafael +Devon +Jonathon +Erick +Jeremiah +Josue +Pablo +Sebastian +Albert +Colin +Isaiah +Levi +Rene +Zachery +Alec +Alfredo +Andre +Drew +Joe +Keith +Ronald +Wesley +Collin +Douglas +Israel +Roman +Curtis +Randy +Troy +Clinton +Damian +Mason +Abel +Clayton +Cole +Henry +Hunter +Lance +Preston +Gustavo +Jack +Kristopher +Max +Nicolas +Dennis +Grant +Jeffery +Branden +Carl +Craig +Damon +Diego +Dominique +Donovan +Louis +Tony +Emmanuel +Guillermo +Maxwell +Orlando +Ricky +Danny +Derrick +Fabian +Skyler +Ty +Elijah +Jay +Micheal +Nickolas +Riley +Dallas +Esteban +Jon +Todd +Elias +Evan +Jerry +Jimmy +Kody +Chance +Darren +Edwin +Emilio +Johnathon +Lawrence +Lorenzo +Malcolm +Micah +Roger +Salvador +Tevin +Weston +Wyatt +Alfonso +Allen +Eddie +Forrest +Gavin +Landon +Noah +Santiago +Trenton +Alexis +Colten +Geoffrey +Harrison +Kaleb +Leonard +Marc +Rudy +Zachariah +Adan +Calvin +Damien +Estevan +Gilberto +Josiah +Kory +Saul +Sheldon +Walter +Felipe +Ismael +Parker +Russell +Sterling +Zane +Brendan +Brendon +Carson +Colby +Gage +Irvin +Irving +Jackson +Jessie +Leonardo +Moises +Randall +Roy +Simon +Tommy +Clint +Conner +Harley +Larry +Lee +Marshall +Miles +Noe +Nolan +Ramiro +Ray +Trent +Trey +Zackary +Bobby +Bryant +Dean +Emanuel +Gary +Kurt +Leon +Leonel +Lyle +Morgan +Nikolas +Rodrigo +Shaun +Terry +Tylor +Beau +Braden +Brady +Bruce +Dale +Dominick +Gerald +Jace +Jordon +Leo +Marvin +Reyes +Ross +Skylar +Steve +Terrence +Tomas +Alexandro +Alonzo +Andy +Angelo +Ariel +Brennan +Brock +Byron +Devante +Felix +German +Guadalupe +Jamie +Karl +Kyler +Nathanael +Octavio +Quinn +Rogelio +Ronnie +Stefan +Tre +Vicente +Alfred +Alonso +Alvaro +Cooper +Dwight +Eli +Ernest +Franklin +Hugo +Jamal +Jayson +Kendall +Kendrick +Quentin +Ralph +Raymundo +Reynaldo +Shelby +Adalberto +Augustine +Austen +Ben +Brenden +Carter +Chandler +Colter +Dallin +Darrell +Davis +Devan +Dwayne +Edgardo +Efrain +Eugene +Garth +Giovanni +Gonzalo +Ignacio +Jaron +Jerome +Joaquin +Joey +Kameron +Keegan +Kristofer +Noel +Rodolfo +Stephan +Terrance +Theodore +Tristan +Wade +Wayne +Zackery +Alvin +Brandyn +Cedric +Chaz +Cristobal +Desmond +Frederick +Harold +Isaias +Jade +Jairo +Jalen +Jovan +Keaton +Kirk +Kristian +Mauricio +Nathanial +Niko +Oliver +Reid +Reuben +Rodney +Stuart +Uriel +Aidan +Ali +Allan +Aron +Bret +Bryson +Coty +Cruz +Dane +Derick +Freddy +Garret +Griffin +Humberto +Isidro +Keenan +Kelly +Kirby +Kolton +Korey +Loren +Mike +Nestor +Perry +Quinton +Rey +Rigoberto +Robin +Stanley +Toby +Addison +Adolfo +Ashton +Benito +Benny +Billy +Bo +Cordell +Darian +Darius +Dillion +Drake +Dylon +Efren +Elliott +Everett +Ezekiel +Francis +Freddie +Glen +Isiah +Jakob +Jarrod +Kenny +Kent +Kolby +Lane +Mackenzie +Marquis +Maurice +Milton +Misael +Myles +Reginald +Rick +Roderick +Roland +Santos +Shayne +Tucker +Tyrone +Vance +Warren +Aldo +Avery +Benjamen +Bradly +Cade +Conor +Conrad +Corbin +Damion +Dante +Darien +Dario +Daryl +Demitri +Domingo +Dorian +Edwardo +Elliot +Emil +Evander +Fred +Gino +Glenn +Gordon +Graham +Harry +Heriberto +Hernan +Jess +Justen +Lionel +Marcelino +Markus +Nelson +Nico +Orion +Pete +Reece +Rex +Rory +Rylan +Solomon +Stetson +Stewart +Talon +Tyson +Ahmed +Arron +Aurelio +Axel +Bernard +Bernardino +Bradford +Braulio +Brice +Brody +Charlie +Clay +Clifford +Clifton +Colt +Dana +Darin +Darrin +De +Devonte +Dion +Duane +Eleazar +Erich +Ezra +Frankie +Garrick +Garrison +Gildardo +Heath +Hilario +Johnnie +Jonah +Joseluis +Josh +Julius +Kasey +Leopoldo +Leroy +Louie +Lukas +Marty +Moses +Neal +Reed +Remington +Rhett +Rickey +Ryne +Sam +Sammy +Sawyer +Scotty +Thor +Tobias +Ulises +Wacey +Will +Wilson +Ysidro +Zakary +Michael +Christopher +Daniel +Tyler +Joshua +Jacob +Matthew +David +Ryan +Joseph +Jose +Zachary +Anthony +Brandon +Nicholas +Andrew +Cody +Robert +Austin +James +Justin +Jonathan +John +Kyle +Alexander +Jesus +Christian +Eric +Kevin +Aaron +Steven +William +Juan +Luis +Jordan +Thomas +Richard +Dylan +Sean +Gabriel +Carlos +Nathan +Francisco +Brian +Samuel +Adam +Jesse +Benjamin +Jason +Angel +Connor +Miguel +Timothy +Taylor +Manuel +Alex +Mark +Alejandro +Jorge +Jeremy +Patrick +Victor +Stephen +Adrian +Dustin +Cameron +Tanner +Bryan +Paul +Martin +Ricardo +Travis +Trevor +Charles +Oscar +Eduardo +Marcus +Antonio +Derek +Dillon +Jared +Kenneth +Jeffrey +Mario +Sergio +Javier +Nathaniel +Caleb +Ian +Garrett +Ruben +Vincent +Scott +Shawn +Logan +Seth +Alan +Devin +Raymond +Andres +Roberto +Isaac +Dominic +Fernando +Shane +Dakota +Edward +Chad +Colton +Marcos +Pedro +Omar +Joel +Edgar +Spencer +Troy +Cesar +Erik +Julian +Cory +Hunter +Ramon +Xavier +Hector +Jake +Bryce +Corey +Blake +Mitchell +Frank +Marco +Chase +Gerardo +Ivan +Julio +Raul +Cristian +Lucas +Casey +Bradley +Ethan +Gregory +Luke +George +Armando +Jonathon +Brett +Cole +Enrique +Rafael +Alberto +Jack +Phillip +Devon +Peter +Alec +Johnathan +Nicolas +Damian +Preston +Zachery +Mason +Arturo +Rene +Alexis +Colin +Jeremiah +Johnny +Collin +Erick +Jaime +Mathew +Max +Roman +Alfredo +Andre +Dalton +Henry +Ronald +Albert +Emmanuel +Evan +Fabian +Grant +Guillermo +Clayton +Keith +Levi +Lorenzo +Donald +Elijah +Gilbert +Sebastian +Ty +Wesley +Douglas +Gary +Kristopher +Diego +Emilio +Lance +Maxwell +Philip +Brendan +Gustavo +Jimmy +Marc +Pablo +Allen +Craig +Ernesto +Joe +Abraham +Jackson +Leonardo +Riley +Skyler +Tony +Felipe +Isaiah +Israel +Trey +Branden +Ismael +Kody +Brady +Brent +Darren +Dennis +Edwin +Elias +Jerry +Randy +Rudy +Arthur +Cedric +Conner +Curtis +Danny +Nickolas +Calvin +Eddie +Esteban +Estevan +Hayden +Josiah +Micheal +Nolan +Rodolfo +Saul +Trenton +Dallas +Damien +Derrick +Hugo +Jon +Larry +Lawrence +Micah +Parker +Vicente +Carter +Colby +Dallin +Forrest +Gilberto +Orlando +Rogelio +Zackary +Zane +Abel +Dominick +Noah +Salvador +Todd +Tommy +Alfonso +Carl +Drew +Kaleb +Landon +Trent +Tylor +Zachariah +Adan +Byron +Donovan +Efrain +Felix +Kendrick +Randall +Ronnie +Skylar +Sterling +Weston +Ashton +Chance +Garret +Gavin +Harley +Jeffery +Johnathon +Josue +Morgan +Roger +Stefan +Steve +Walter +Alonso +Alvaro +Billy +Bobby +Leonel +Malcolm +Moises +Ricky +Russell +Shaquille +Sheldon +Theodore +Wade +Alfred +Avery +Bruce +Chandler +Dean +Dominique +Geoffrey +Jalen +Jay +Kyler +Leonard +Louis +Noe +Octavio +Ramiro +Santiago +Andy +Damon +Frankie +Frederick +Gage +Humberto +Kameron +Kendall +Lee +Ross +Tomas +Uriel +Wayne +Angelo +Brody +Drake +Efren +Eli +German +Jessie +Kasey +Kristian +Loren +Mackenzie +Miles +Ray +Simon +Stuart +Terry +Tyrone +Carson +Davis +Ernest +Ezekiel +Gerald +Harrison +Jakob +Jamie +Jonah +Myles +Nelson +Oliver +Rodrigo +Rolando +Tyson +Wyatt +Agustin +Alvin +Benny +Blaine +Brendon +Bryant +Bryson +Clifford +Colten +Corbin +Desmond +Emanuel +Garrison +Jayson +Jerome +Keegan +Kory +Maurice +Nathanial +Quinn +Roy +Royce +Tristan +Tyrell +Braden +Clinton +Conor +Conrad +Dane +Dante +Devan +Fred +Guadalupe +Harold +Heriberto +Irvin +Issac +Jaron +Joaquin +Kenny +Lane +Leon +Lyle +Marshall +Mike +Osvaldo +Payton +Rodney +Roland +Santos +Shaun +Terrance +Trevon +Valentino +Zackery +Adrien +Ariel +Arnold +Brandyn +Brenden +Brennan +Brock +Colt +Dario +Darrell +Deion +Derick +Deven +Dimitri +Ernie +Everett +Ezequiel +Glen +Gunnar +Jefferson +Joey +Jordon +Julius +Kent +Korey +Marvin +Mikel +Robin +Shay +Stephan +Tevin +Tre +Virgil +Warren +Zechariah +Allan +Asher +Austen +Chaz +Clay +Colter +Damion +Daryl +Demetrius +Dwight +Earl +Edwardo +Eugene +Fidel +Glenn +Gordon +Griffin +Heath +Howard +Irving +Jace +Junior +Justice +Kellen +Kirk +Kole +Liam +Mariano +Mauro +Misael +Neil +Nico +Rey +Reynaldo +Rick +Rigoberto +Ryne +Sage +Sammy +Sheridan +Toby +Westin +Adolfo +Alexandro +Ali +Alonzo +Aric +Arnoldo +Augustine +Benito +Bennett +Brennen +Brice +Cade +Chris +Cruz +Dale +Darion +Darius +Devante +Dorian +Freddie +Gonzalo +Harry +Ignacio +Isiah +Jaren +Jorden +Joseluis +Jovan +Juancarlos +Keenan +Kegan +Kelly +Kurt +Leopoldo +Leroy +Markus +Nathanael +Nestor +Nikolas +Noel +Owen +Payson +Ralph +Reed +Reno +Sam +Samual +Seamus +Shelby +Solomon +Stanley +Talon +Terrence +Trace +Tucker +Walker +Abelardo +Adalberto +Addison +Ahmad +Ahmed +Aldo +Ammon +Aron +Arron +Austyn +Axel +Beau +Bill +Ceasar +Charlie +Clarence +Clint +Cristobal +Darian +Darien +Dion +Domingo +Don +Duane +Duncan +Dwayne +Dylon +Elliot +Elliott +Erin +Federico +Fermin +Forest +Fredrick +Garrick +Graham +Hernan +Horacio +Jamal +Jarred +Jean +Jorgeluis +Karl +Keaton +Leo +Leslie +Lester +Lewis +Lionel +Lloyd +Louie +Luciano +Lukas +Marques +Marty +Mauricio +Melvin +Mitchel +Monty +Otis +Quincy +Quinton +Raphael +Raymundo +Roque +Rudolfo +Rusty +Santino +Shayne +Ulises +Vance +Vincente +Willie +Winston +Michael +Daniel +Tyler +Jacob +Joshua +Matthew +David +Christopher +Brandon +Austin +Anthony +Joseph +Andrew +Nicholas +Jose +Zachary +Robert +Ryan +Cody +Kyle +Jesus +Alexander +John +Justin +James +William +Juan +Jonathan +Christian +Kevin +Aaron +Luis +Jordan +Gabriel +Eric +Nathan +Thomas +Dylan +Steven +Richard +Carlos +Samuel +Jesse +Adam +Francisco +Brian +Benjamin +Sean +Manuel +Alejandro +Jason +Timothy +Angel +Jeremy +Charles +Adrian +Connor +Miguel +Mark +Jorge +Trevor +Patrick +Logan +Stephen +Alex +Eduardo +Victor +Paul +Marcus +Sergio +Martin +Tanner +Taylor +Ricardo +Scott +Garrett +Jared +Devin +Dustin +Fernando +Nathaniel +Oscar +Travis +Antonio +Derek +Ian +Cristian +Isaac +Cameron +Hunter +Javier +Erik +Andres +Edgar +Mario +Shane +Blake +Hector +Bryan +Kenneth +Cesar +Seth +Vincent +Dakota +Caleb +Edward +Jeffrey +Ruben +Alec +Xavier +Ivan +Jake +Mitchell +Cory +Dominic +Marcos +Raymond +Dillon +Omar +Alan +Bryce +Pedro +Roberto +Colton +Ethan +Gregory +Raul +Chase +Dalton +Joel +Julian +Marco +Shawn +Alberto +Devon +Diego +Bradley +George +Cole +Luke +Nicolas +Corey +Spencer +Alexis +Lucas +Ramon +Troy +Clayton +Levi +Rafael +Chad +Wyatt +Andre +Armando +Donald +Elijah +Hayden +Johnny +Ronald +Albert +Jack +Julio +Mason +Brett +Isaiah +Keith +Lorenzo +Casey +Israel +Gerardo +Johnathan +Peter +Wesley +Enrique +Grant +Derrick +Jaime +Brendan +Collin +Jonathon +Phillip +Skyler +Damian +Ernesto +Jeremiah +Arturo +Chance +Evan +Rene +Conner +Dallas +Frank +Gustavo +Josue +Colin +Danny +Fabian +Mathew +Sebastian +Alfredo +Abraham +Emilio +Emmanuel +Edwin +Erick +Micheal +Preston +Henry +Randy +Riley +Drew +Esteban +Jonah +Leonardo +Trey +Abel +Dominique +Guillermo +Elias +Gilberto +Noah +Parker +Jimmy +Salvador +Philip +Todd +Allen +Branden +Jackson +Max +Sheldon +Trenton +Weston +Zachery +Brent +Ismael +Kody +Maxwell +Nickolas +Randall +Angelo +Bobby +Dallin +Douglas +Drake +Gilbert +Morgan +Orlando +Roman +Theodore +Zackary +Alfonso +Curtis +Estevan +Harrison +Lane +Chandler +Marc +Raymundo +Saul +Ty +Zane +Avery +Brady +Calvin +Damien +Joe +Micah +Nikolas +Ramiro +Rodolfo +Walter +Arthur +Cooper +Gary +Gavin +Jamie +Jay +Jerry +Johnathon +Kristopher +Pablo +Roy +Tommy +Zachariah +Beau +Bernardo +Charlie +Craig +Donovan +Efrain +Forrest +Jessie +Joey +Kaleb +Kendall +Marvin +Moises +Rogelio +Vicente +Ashton +Carson +Darren +Dean +Dominick +German +Jeffery +Lance +Lawrence +Leonard +Leonel +Ricky +Rodrigo +Rudy +Russell +Santiago +Shaun +Ariel +Brenden +Brennan +Carl +Clay +Darius +Ignacio +Larry +Leo +Moses +Reynaldo +Stefan +Tony +Alexandro +Andy +Billy +Damon +Darian +Ernest +Irvin +Jalen +Jon +Josiah +Landon +Miles +Sterling +Steve +Terrance +Tylor +Uriel +Clinton +Colby +Eli +Gage +Kristian +Maurice +Noe +Quinn +Ray +Rigoberto +Adolfo +Alonzo +Brock +Darien +Dennis +Felipe +Giovanni +Issac +Louis +Orion +Reed +Roger +Skylar +Tomas +Trent +Tyson +Zackery +Brendon +Cruz +Dale +Dante +Davis +Dillan +Frederick +Heriberto +Jakob +Marshall +Mauricio +Noel +Nolan +Octavio +Tre +Wade +Alfred +Allan +Alvaro +Braden +Bryant +Bryson +Cedric +Dario +Humberto +Jace +Jayson +Joaquin +Kenny +Kyler +Oliver +Rodney +Shayne +Tyrone +Ulises +Warren +Wayne +Adan +Agustin +Arnold +Cade +Carter +Efren +Felix +Frankie +Gunnar +Hernan +Jess +Keegan +Liam +Malcolm +Nelson +Reuben +Tucker +Austen +Blaine +Bruce +Clint +Cristobal +Dane +Deandre +Eddie +Ezekiel +Ezequiel +Harley +Isiah +Jaron +Jordon +Julius +Kane +Keanu +Kolby +Kurt +Lloyd +Marquis +Misael +Nestor +Quentin +Santos +Sawyer +Shea +Terrell +Trevon +Addison +Aidan +Byron +Chris +Clark +Conor +Conrad +Damion +Denzel +Edgardo +Eleazar +Emery +Eugene +Forest +Geoffrey +Gerald +Glen +Jairo +Jamal +Jonatan +Karl +Kasey +Keenan +Kendrick +Kristofer +Loren +Mackenzie +Mitchel +Norberto +Rick +Rolando +Terrence +Travon +Valentin +Zechariah +Alek +Benito +Brad +Braxton +Brennen +Brenton +Bronson +Colten +Cordell +Darion +Darnell +Darryl +Dusty +Edwardo +Eliseo +Elmer +Emanuel +Ezra +Fidel +Francis +Fransisco +Gino +Grady +Guadalupe +Houston +Hugo +Isidro +Jaden +Kelvin +Kolton +Leander +Lee +Lukas +Marcel +Montana +Owen +Rey +Ronnie +Ross +Rusty +Simon +Tevin +Tristan +Adalberto +Adriano +Adrien +Aldo +Ali +Alonso +Alvin +Ari +Aron +Austyn +Ben +Bo +Brandan +Bret +Brice +Chaz +Colter +Corbin +Demetrius +Devante +Deven +Dexter +Dion +Dorian +Dwight +Elisha +Flavio +Franklin +Gonzalo +Gregorio +Jarrod +Jayce +Jayden +Jericho +Jimmie +Jovany +Justice +Keaton +Korey +Kory +Kurtis +Lamar +Lewis +Lyle +Malachi +Mateo +Melvin +Nathanial +Neal +Neil +Nick +Osbaldo +Osvaldo +Paxton +Quinton +Reymundo +Rhett +Royal +Schuyler +Shaquille +Torin +Vaughn +Walker +Waylon +Alden +Ashley +Axel +Bennett +Brayan +Cain +Clarence +Clifford +Corwin +Darrin +Davin +Deion +Deshawn +Duncan +Emmett +Federico +Fred +Freddy +Garrison +Gene +Graham +Grayson +Greyson +Harry +Herman +Hiram +Holden +Irving +Isreal +Jarred +Jaylen +Jerome +Jessy +Justus +Kade +Kalen +Kameron +Kieran +Kirk +Konner +Lazaro +Leroy +Lincoln +Lonnie +Louie +Lucio +Margarito +Mike +Myles +Nathanael +Nicholaus +Norman +Obed +Perry +Pete +Quintin +Reece +Rojelio +Rory +Sam +Scottie +Serjio +Shiloh +Stanley +Stephan +Thaddeus +Trace +Trever +Trevin +Tynan +Ubaldo +Vance +Michael +Jacob +Daniel +Tyler +Christopher +Joshua +Jose +Nicholas +Austin +Matthew +Brandon +David +Joseph +Anthony +Andrew +Ryan +Zachary +Robert +Justin +James +Alexander +Jesus +Cody +Christian +Juan +Kyle +Jonathan +John +Luis +Kevin +Gabriel +Aaron +Richard +William +Eric +Samuel +Benjamin +Steven +Carlos +Thomas +Francisco +Jordan +Nathan +Dylan +Angel +Miguel +Alejandro +Jesse +Adam +Timothy +Adrian +Brian +Manuel +Alex +Jorge +Jason +Victor +Logan +Sean +Jeremy +Mark +Connor +Tanner +Charles +Nathaniel +Trevor +Taylor +Antonio +Isaac +Garrett +Oscar +Jared +Marcus +Sergio +Cameron +Mario +Patrick +Andres +Cristian +Martin +Dakota +Dustin +Hunter +Derek +Fernando +Ricardo +Caleb +Eduardo +Elijah +Wyatt +Marco +Travis +Javier +Stephen +Roberto +Seth +Hector +Paul +Edgar +Bryan +Alexis +Omar +Xavier +Alec +Colton +Ian +Erik +Kenneth +Cesar +Devin +Edward +Isaiah +Blake +Chase +Jake +Marcos +Cole +Jeffrey +Armando +Scott +Lucas +Bradley +Spencer +Brett +Dillon +Bryce +Dominic +Tristan +Ethan +Hayden +Alan +Pedro +Wesley +Gerardo +Devon +Ivan +Raul +Shawn +Frank +George +Joel +Julian +Noah +Mason +Shane +Julio +Raymond +Luke +Ruben +Troy +Levi +Mitchell +Diego +Enrique +Preston +Ramon +Jaime +Rafael +Vincent +Evan +Grant +Jack +Casey +Corey +Chance +Erick +Arturo +Chandler +Chad +Dalton +Esteban +Alberto +Edwin +Cory +Gregory +Johnny +Peter +Rene +Brendan +Clayton +Damian +Phillip +Colin +Jeremiah +Josue +Lorenzo +Pablo +Nicolas +Abraham +Brent +Dallas +Skyler +Ernesto +Riley +Jonathon +Ty +Albert +Alfredo +Emmanuel +Israel +Sebastian +Johnathan +Morgan +Collin +Kaleb +Zachery +Andre +Conner +Emilio +Fabian +Jonah +Henry +Keith +Trey +Alfonso +Donald +Ismael +Ronald +Gary +Trenton +Zane +Calvin +Elias +Jimmy +Kody +Kristopher +Maxwell +Parker +Saul +Bailey +Craig +Drew +Harrison +Max +Gilbert +Jackson +Micheal +Salvador +Eddie +Giovanni +Mathew +Orlando +Carter +Damien +Donovan +Douglas +Gage +Gavin +Guillermo +Gustavo +Roman +Trent +Aidan +Brenden +Cooper +Drake +Lane +Lawrence +Micah +Zackary +Abel +Colby +Curtis +Danny +Dominique +Gilberto +Joe +Lance +Leonardo +Rudy +Allen +Alonso +Andy +Derrick +Philip +Santiago +Tony +Damon +Darren +Dennis +Dominick +Felipe +Leonel +Louis +Sheldon +Vicente +Avery +Branden +Brennan +Cruz +Dallin +Forrest +Harley +Humberto +Jay +Jessie +Keaton +Tomas +Uriel +Weston +Adan +Alvaro +Brady +Carson +Nolan +Rodrigo +Skylar +Tristen +Alonzo +Arthur +Bernardo +Conor +Estevan +Ezequiel +Irvin +Jon +Josiah +Kyler +Landon +Larry +Liam +Randy +Rodolfo +Adolfo +Brock +Carl +Dante +Dean +Efrain +Felix +Jerry +Leonard +Malik +Marc +Octavio +Ramiro +Ricky +Russell +Triston +Tylor +Zachariah +Bryant +Franklin +Issac +Joaquin +Moises +Nickolas +Noe +Quentin +Ralph +Randall +Rogelio +Simon +Theodore +Adrain +Alfred +Braden +Dale +Elliot +Geoffrey +Guadalupe +Heriberto +Justice +Lee +Mauricio +Oliver +Quinn +Rigoberto +Roy +Santos +Sawyer +Sterling +Tommy +Zackery +Austen +Chaz +Colten +Dane +Darius +Eli +Hugo +Isiah +Joey +Johnathon +Kameron +Keanu +Keenan +Malcolm +Markus +Roger +Stephan +Tyrell +Warren +Anfernee +Angelo +Bobby +Bryson +Byron +Duane +Ezekiel +Frankie +Freddy +German +Jace +Jeffery +Jonatan +Kendrick +Leon +Neil +Nikolas +Rolando +Shaun +Todd +Wade +Walker +Agustin +Billy +Brendon +Clay +Cristobal +Darien +Devan +Devante +Dion +Duncan +Emanuel +Ernest +Eugene +Garrison +Jarred +Jordon +Karl +Keegan +Kory +Lukas +Lyle +Marvin +Nelson +Owen +Ray +Raymundo +River +Ross +Shayne +Steve +Terry +Abelardo +Adalberto +Addison +Ashton +Brody +Chris +Darian +Desmond +Efren +Federico +Grayson +Gunnar +Ignacio +Jalen +Jefferson +Julius +Kellen +Kelly +Kendall +Kristian +Marshall +Nathanael +Noel +Peyton +Ronnie +Stefan +Stuart +Talon +Terrance +Tyson +Ulises +Walter +Zakary +Alek +Alexandro +Ariel +Arnoldo +Bennett +Cade +Clint +Darrell +Deion +Dusty +Edgardo +Fermin +Garret +Griffin +Hiram +Holden +Jairo +Justen +Kieran +Kurtis +Lincoln +Maximilian +Mike +Misael +Quinten +Reid +Rico +Arnulfo +Aron +Augustine +Beau +Braxton +Brayan +Brennen +Brooks +Cedric +Clark +Coleman +Colt +Dagoberto +Davis +Elliott +Frederick +Fredrick +Garett +Gerald +Gonzalo +Gordon +Graham +Harold +Hernan +Horacio +Irving +Jamie +Jayden +Jayson +Jerome +Jovani +Kegan +Kohl +Kolton +Layne +Mackenzie +Marquis +Melvin +Miles +Nestor +Norberto +Osvaldo +Paulo +Quincy +Raphael +Reece +Reese +Rhett +Rodney +Sage +Trever +Trevon +Tyrone +Adonis +Allan +Anton +Ari +Arron +August +Braulio +Bruce +Camron +Carlo +Clinton +Dakotah +Darion +Deandre +Delbert +Demetrius +Denton +Dorian +Everardo +Forest +Fred +Gunner +Harris +Harry +Isai +Jade +Jameson +Jaren +Jarrett +Kai +Lloyd +Marcel +Marcelino +Marlon +Mauro +Mikael +Nathanial +Nicklaus +Perry +Reed +Remington +Reuben +Sam +Stone +Tobias +Vernon +Ahmed +Ali +Ammon +Arnold +Barrett +Benito +Brad +Brandan +Brayden +Braydon +Brice +Caesar +Camden +Carlton +Clifford +Clyde +Conrad +Corbin +Cordell +Dan +Darnell +Darryl +Dawson +Dax +Destin +Don +Draven +Dustyn +Esai +Everett +Fidel +Francis +Galen +Genaro +Giovani +Glenn +Grady +Hudson +Isidro +Jaden +Jakob +Jarod +Jaylen +Jermaine +Jonas +Jorden +Kaden +Kasey +Keagan +Killian +Kole +Kurt +Leopoldo +Lionel +Loren +Marquise +Mckay +Myles +Nigel +Niko +Payton +Quinton +Romeo +Rosendo +Sammy +Santana +Shea +Sidney +Stanley +Stetson +Syed +Tate +Terrence +Toby +Trevin +Tristin +Tucker +Ulysses +Valentin +Valentino +Wayne +Willie +Michael +Jacob +Daniel +Jose +Tyler +Joshua +Matthew +Christopher +Anthony +Nicholas +David +Austin +Joseph +Brandon +Andrew +Jesus +Zachary +Ryan +Christian +Alexander +Justin +Robert +Jonathan +James +Luis +Juan +Cody +John +Carlos +Jordan +Kyle +Gabriel +William +Kevin +Samuel +Angel +Aaron +Dylan +Nathan +Eric +Benjamin +Francisco +Richard +Thomas +Adam +Steven +Miguel +Alejandro +Manuel +Jason +Jesse +Adrian +Jorge +Brian +Connor +Hunter +Eduardo +Antonio +Nathaniel +Logan +Marcus +Victor +Jeremy +Caleb +Timothy +Tristan +Trevor +Bryan +Chase +Taylor +Oscar +Mark +Patrick +Sean +Cesar +Isaac +Cameron +Stephen +Alex +Martin +Tanner +Andres +Charles +Ricardo +Fernando +Noah +Sergio +Dakota +Mario +Wyatt +Cole +Isaiah +Travis +Devin +Edgar +Elijah +Colton +Dominic +Ruben +Alan +Omar +Ethan +Jared +Marcos +Paul +Roberto +Garrett +Alec +Alexis +Cristian +Seth +Hector +Ian +Jake +Marco +Javier +Derek +Dustin +Erik +Julio +Xavier +Joel +Spencer +Bradley +Edward +Hayden +Mason +Bryce +Raymond +Julian +Raul +Blake +Ivan +Vincent +Armando +Gerardo +Pedro +Damian +Riley +Dillon +Jeffrey +Shawn +Chance +Kenneth +Shane +Diego +Jack +Lucas +Luke +Nicolas +Jaime +Ramon +Arturo +Chandler +Devon +Saul +Brett +Erick +Enrique +Grant +Scott +Alberto +Collin +Gregory +Dalton +Johnny +Clayton +Frank +Mitchell +Edwin +Rafael +Emilio +George +Troy +Abraham +Fabian +Levi +Cory +Preston +Peter +Roman +Wesley +Corey +Emmanuel +Ernesto +Jonathon +Rene +Alfredo +Colin +Henry +Casey +Sebastian +Evan +Josue +Phillip +Chad +Israel +Jeremiah +Lorenzo +Donald +Mathew +Zane +Gavin +Trent +Bailey +Esteban +Johnathan +Orlando +Pablo +Parker +Trenton +Tristen +Gustavo +Jerry +Ty +Andre +Dallas +Conner +Kyler +Skyler +Drew +Gage +Jonah +Brendan +Gilbert +Josiah +Keith +Trey +Brent +Calvin +Guillermo +Jackson +Salvador +Albert +Arthur +Carter +Damon +Elias +Jimmy +Randy +Abel +Joe +Kaleb +Maxwell +Philip +Ricky +Rodolfo +Kristopher +Malik +Micah +Moises +Rodrigo +Zachery +Brady +Gilberto +Lane +Larry +Uriel +Curtis +Dominick +Giovanni +Harrison +Jay +Kody +Max +Santiago +Aidan +Andy +Avery +Danny +Ismael +Louis +Ronald +Alonso +Angelo +Derrick +Douglas +Felipe +Jalen +Landon +Morgan +Branden +Carson +Damien +Jon +Lance +Marc +Noel +Nolan +Zachariah +Alfonso +Brenden +Ernest +Irvin +Isiah +Liam +Nickolas +Rogelio +Adan +Braden +Dallin +Eddie +Estevan +Joaquin +Keaton +Ramiro +Ray +Roy +Sheldon +Tristin +Weston +Allen +Bernardo +Carl +Clay +Colby +Craig +Darian +Jakob +Kristian +Nelson +Noe +Oliver +Rudy +Russell +Vicente +Zackary +Agustin +Brody +Colten +Darren +Donovan +Eli +Ezequiel +Frankie +Isaias +Quentin +Triston +Ariel +Conor +Gary +Johnathon +Marvin +Nikolas +Quinn +Randall +Skylar +Theodore +Ulises +Brennan +Bryson +Cooper +Ezekiel +Griffin +Issac +Jarrett +Keegan +Micheal +Todd +Tomas +Tony +Walter +Adrain +Alvaro +Ashton +Brendon +Bruce +Cedric +Dante +Garret +Guadalupe +Irving +Jeffery +Lawrence +Leonardo +Octavio +Talon +Alfred +Austen +Beau +Billy +Cruz +Darius +Felix +Frederick +Jaron +Kade +Miles +Reece +Roger +Sawyer +Tate +Tommy +Trevon +Alexandro +Alonzo +Bryant +Byron +Cade +Dale +Deandre +Dennis +Dominique +Drake +Eugene +Forrest +Fred +Jerome +Jessie +Joey +Lukas +Malcolm +Marlon +Nestor +Quinton +Ross +Santos +Tucker +Tyson +Addison +Anfernee +Bennett +Chaz +Deion +Duncan +Edgardo +Efren +Eliseo +Emanuel +Ezra +Franklin +Grayson +Jace +Jaden +Jairo +Jordon +Keenan +Lazaro +Leroy +Marshall +Mauricio +Payton +Rolando +Ronnie +Sage +Simon +Trystan +Tylor +Tyrell +Aldo +Benny +Braxton +Chris +Coleman +Dane +Darien +Dillan +Dion +Elliott +Freddy +Hernan +Hugo +Humberto +Jayden +Julius +Kameron +Kasey +Keanu +Kelly +Leo +Leonel +Raymundo +Rhett +Rick +Rigoberto +Sterling +Steve +Terrance +Tre +Tristian +Tyrone +Walker +Warren +Adalberto +Andreas +Arnoldo +Austyn +Bret +Brock +Caden +Colt +Corbin +Demetrius +Devan +Dorian +Efrain +Gordon +Gunnar +Heriberto +Jamie +Kaden +Kai +Kolton +Loren +Misael +Myles +Nathanael +Neil +Ralph +Shaun +Stefan +Terrence +Tevin +Wade +Wayne +Zackery +Allan +Alton +Alvin +Benito +Charlie +Clinton +Cullen +Damion +Darnell +Darrell +Emerson +Everett +Fidel +Francis +Freddie +Geoffrey +German +Glenn +Gunner +Hiram +Holden +Ignacio +Jarrod +Jonas +Jovanny +Justice +Juwan +Kendall +Korey +Leander +Leobardo +Leon +Leonard +Mariano +Marquis +Mateo +Maurice +Maximilian +Mike +Montana +Neal +Nigel +Osbaldo +Osvaldo +Peyton +Quinten +Raphael +River +Rodney +Sam +Sidney +Terry +Valentin +Abelardo +Adonis +Adriano +Ammon +Ben +Brad +Brayan +Caesar +Clint +Cristobal +Davin +Dawson +Dayton +De +Dean +Deven +Devyn +Don +Duane +Edwardo +Elmer +Emiliano +Fausto +Garrison +Gerald +Giovanny +Graham +Harley +Harold +Jadon +Javon +Jayson +Jefferson +Jermaine +Jess +Jorden +Jovany +Julien +Kane +Karl +Lee +Luciano +Marcelo +Markus +Myron +Nathen +Obed +Pierce +Quintin +Raven +Reid +Remington +Roderick +Ronaldo +Ryley +Ryne +Santana +Shelby +Stetson +Tobias +Ulysses +Vernon +Vincente +Zakary +Angus +Argenis +Armand +Baltazar +Bobby +Brandan +Branson +Britton +Bruno +Camden +Cannon +Cecil +Codey +Conrad +Cordell +Dangelo +Darin +Darwin +Domingo +Donnie +Draven +Edson +Eleazar +Erasmo +Filiberto +Garett +Genaro +Giovani +Gregorio +Izaak +Jamal +Jarred +Jayce +Jessy +Johnnie +Josh +Kenny +Kirk +Kory +Kristofer +Kurtis +Leopoldo +Louie +Malachi +Marty +Maximiliano +Mohammad +Nick +Nico +Norberto +Owen +Porter +Quincy +Reginald +Rey +Reyes +Reynaldo +Ridge +Ritchie +Rocky +Ron +Rosario +Sammy +Samual +Shay +Sheridan +Stephan +Stuart +Tariq +Teddy +Toby +Trace +Tracey +Tynan +Valentino +Wilson +Jacob +Michael +Daniel +Jose +Christopher +Anthony +Matthew +Tyler +Joshua +Andrew +David +Nicholas +Austin +Joseph +Brandon +Jesus +Ryan +Zachary +Luis +Christian +Kyle +Jonathan +Alexander +Justin +Robert +John +Juan +James +William +Jordan +Angel +Gabriel +Aaron +Carlos +Cody +Kevin +Dylan +Samuel +Benjamin +Nathan +Francisco +Brian +Alejandro +Miguel +Thomas +Eric +Antonio +Alexis +Adrian +Jason +Steven +Logan +Victor +Isaac +Adam +Jorge +Richard +Ethan +Noah +Isaiah +Timothy +Fernando +Jesse +Sean +Hunter +Ricardo +Alex +Cole +Nathaniel +Caleb +Connor +Manuel +Cameron +Tanner +Eduardo +Martin +Tristan +Mark +Garrett +Jared +Trevor +Oscar +Elijah +Andres +Sergio +Ian +Mario +Javier +Dakota +Bryan +Colton +Hector +Marco +Ruben +Devin +Chase +Seth +Stephen +Dustin +Taylor +Xavier +Julian +Patrick +Dominic +Jeremy +Cesar +Paul +Charles +Erik +Riley +Bryce +Marcus +Cristian +Mason +Pedro +Bradley +Edward +Edgar +Ivan +Raymond +Travis +Jake +Devon +Marcos +Omar +Spencer +Wyatt +Alec +Diego +Luke +Roberto +Hayden +Ramon +Derek +Shane +Vincent +Armando +Jack +Alan +Blake +Dillon +Jeffrey +Enrique +Joel +Kenneth +Bailey +Nicolas +Raul +Julio +Lucas +Shawn +Gavin +Gerardo +Mitchell +Grant +Arturo +Gregory +Jeremiah +Scott +Chandler +Collin +Emilio +Erick +Fabian +Abraham +Chance +Evan +Johnathan +Levi +Brett +Casey +Damian +George +Rafael +Jonathon +Max +Israel +Peter +Roman +Pablo +Troy +Ernesto +Gustavo +Josue +Saul +Alberto +Alfredo +Dalton +Preston +Brendan +Frank +Chad +Jackson +Ronald +Sebastian +Jaime +Mathew +Trenton +Wesley +Lorenzo +Abel +Dante +Kaleb +Zane +Brady +Elias +Esteban +Gage +Guillermo +Johnny +Trey +Corey +Ty +Conner +Parker +Clayton +Colin +Cory +Drew +Edwin +Jakob +Rene +Salvador +Henry +Keith +Jimmy +Liam +Carter +Donovan +Ismael +Maxwell +Phillip +Andy +Calvin +Dallas +Harrison +Skyler +Tristen +Adan +Joe +Micah +Curtis +Derrick +Emmanuel +Jonah +Kody +Trent +Albert +Jerry +Leonardo +Morgan +Tommy +Tony +Brenden +Giovanni +Kyler +Malik +Nolan +Santiago +Zachery +Andre +Brock +Marc +Orlando +Ricky +Rudy +Uriel +Brent +Carson +Danny +Dennis +Gilberto +Larry +Rodolfo +Angelo +Brody +Cooper +Felipe +Gary +Gilbert +Johnathon +Louis +Nickolas +Philip +Randy +Russell +Sheldon +Skylar +Adolfo +Alfonso +Brennan +Colby +Irvin +Josiah +Lawrence +Quinn +Zackary +Bobby +Damon +Reynaldo +Vicente +Branden +Brayden +Damien +Dominick +Donald +Eli +Griffin +Jace +Joaquin +Jon +Keegan +Lance +Rodrigo +Aidan +Allen +Alvaro +Arthur +Bryant +Bryson +Cade +Dallin +Leonard +Micheal +Quentin +Rogelio +Santos +Simon +Zackery +Aldo +Avery +Brendon +Colten +Davis +Edgardo +Estevan +Ezequiel +Hugo +Issac +Jeffery +Lane +Osvaldo +Randall +Rigoberto +Tristin +Zachariah +Alonzo +Braden +Douglas +Efrain +Felix +German +Isiah +Miles +Nikolas +Triston +Alonso +Austen +Brayan +Cruz +Darren +Drake +Eddie +Geoffrey +Guadalupe +Heriberto +Hernan +Jessie +Kameron +Keaton +Keenan +Noe +Raymundo +Roger +Cedric +Chris +Deion +Ernest +Humberto +Ignacio +Jayson +Joey +Justice +Landon +Mauricio +Moises +Nelson +Shaun +Talon +Terry +Alfred +Ashton +Carl +Charlie +Craig +Dean +Isaias +Jalen +Jamie +Jarod +Kurt +Marshall +Noel +Owen +Payton +Ramiro +Rolando +Roy +Sage +Todd +Tucker +Tyrone +Tyson +Augustine +Braxton +Emanuel +Ezekiel +Glenn +Jordon +Julius +Junior +Kaden +Kendall +Kendrick +Kristian +Markus +Nathanael +Octavio +Orion +Reid +Steve +Tomas +Wade +Warren +Agustin +Allan +Ariel +Arnoldo +Axel +Beau +Billy +Byron +Caden +Damion +Darius +Duncan +Elliot +Jaden +Jayden +Kolby +Kory +Kristopher +Leonel +Marvin +Ralph +Ray +Reed +Romeo +Sterling +Theodore +Walter +Abram +Aiden +Blaine +Bo +Brad +Coby +Conor +Corbin +Desmond +Garret +Garrison +Gonzalo +Hyrum +Jairo +Jarrod +Jerome +Kai +Kobe +Leroy +Lukas +Misael +Myles +Myron +Oswaldo +Quinton +Rodney +Ronnie +Stefan +Trace +Tre +Tylor +Tyrell +Adalberto +Alexandro +Aron +Austyn +Bennett +Bernardo +Clay +Clinton +Cordell +Dale +Darion +Elisha +Elliott +Ezra +Forrest +Freddie +Harley +Jovan +Jovani +Jovany +Jude +Kenny +Kordell +Lee +Malachi +Malcolm +Mateo +Moses +Nico +Oliver +Pete +Peyton +Pierce +River +Tate +Terrell +Ulises +Valentin +Wayne +Weston +Antony +Benito +Benny +Brandyn +Carlo +Coleman +Cristobal +Cyrus +Dane +Dayton +Deandre +Devante +Dexter +Dominique +Easton +Eliseo +Elmer +Eugene +Everardo +Fred +Frederick +Gino +Graham +Houston +Hudson +Jaron +Jarred +Jay +Julien +Kade +Karl +Leo +Maurice +Maximilian +Mike +Osbaldo +Rhett +Rylan +Terrance +Walker +Abelardo +Adrien +Alijah +Alvin +Baby +Bernard +Braulio +Bret +Brigham +Bruce +Cullen +Dangelo +Darian +Darin +Darnell +Darrell +Darrin +Deshawn +Deven +Devyn +Dillan +Dimitri +Domonic +Duane +Dwayne +Edwardo +Efren +Emery +Emiliano +Ever +Filiberto +Francis +Frankie +Garett +Harold +Irving +Isac +Jorden +Kenyon +Killian +Kirk +Kohl +Kristofer +Kurtis +Loren +Marcelo +Marlin +Marlon +Maverick +Nathanial +Nikolai +Quintin +Reyes +Rocky +Rudolph +Shiloh +Stetson +Tevin +Tobias +Toby +Trever +Trevin +Trystan +Tylar +Vidal +Waylon +Addison +Alessandro +Ali +Amir +Ammon +Aric +Arnold +Asa +Aurelio +Brando +Branson +Braydon +Brennen +Chaz +Clarence +Coltin +Cornelio +Cristopher +Dandre +Daryl +Dashawn +Daylan +Deon +Derick +Derik +Dillion +Donte +Draven +Dusty +Dyllan +Elvis +Federico +Gabino +Gerald +Gordon +Gunnar +Guy +Heber +Holden +Jameson +Jarrett +Johnnie +Josef +Josh +Keanu +Kelly +Kelvin +Keven +Kieran +Kodi +Kolton +Konner +Layne +Leobardo +Luciano +Lyle +Madison +Marcelino +Mitchel +Nestor +Nicholaus +Obed +Phoenix +Porter +Raven +Reece +Reilly +Remington +Reno +Roland +Ross +Ryland +Rylee +Sammy +Seamus +Servando +Sidney +Solomon +Sonny +Stephan +Stephon +Stuart +Tayler +Travon +Truman +Turner +Tyree +Vaughn +Virgil +Jacob +Michael +Jose +Daniel +Anthony +Christopher +Joshua +David +Matthew +Joseph +Brandon +Tyler +Nicholas +Jesus +Andrew +Ryan +Austin +Luis +Zachary +Jonathan +Alexander +Juan +Robert +James +Kyle +Christian +John +Justin +Gabriel +Carlos +Angel +Jordan +William +Samuel +Nathan +Dylan +Benjamin +Aaron +Noah +Adrian +Kevin +Cody +Miguel +Francisco +Thomas +Ethan +Eric +Jason +Alejandro +Hunter +Isaac +Victor +Brian +Cameron +Steven +Adam +Manuel +Jared +Antonio +Jorge +Connor +Trevor +Isaiah +Ricardo +Elijah +Chase +Nathaniel +Jeremy +Logan +Alex +Richard +Caleb +Tanner +Oscar +Andres +Jesse +Fernando +Mark +Julian +Sean +Timothy +Tristan +Eduardo +Seth +Bryan +Bryce +Mario +Charles +Cole +Spencer +Garrett +Hector +Ruben +Alexis +Cesar +Dominic +Edgar +Cristian +Devin +Roberto +Javier +Jack +Marco +Marcus +Xavier +Marcos +Mason +Omar +Wyatt +Jake +Martin +Travis +Gerardo +Ivan +Raymond +Paul +Taylor +Pedro +Sergio +Patrick +Ian +Stephen +Kenneth +Luke +Nicolas +Ramon +Armando +Abraham +Alec +Blake +Dustin +Joel +Raul +Alan +Jeffrey +Enrique +Gavin +Colton +Vincent +Dakota +Diego +Scott +Derek +Brendan +Jaime +Alberto +Edward +Hayden +Rafael +Jackson +Johnathan +Riley +Bradley +Brett +Collin +Erik +Zane +George +Jeremiah +Bailey +Dalton +Damian +Shane +Wesley +Gregory +Henry +Mitchell +Arturo +Colin +Dillon +Emilio +Preston +Shawn +Devon +Evan +Lucas +Mathew +Frank +Jakob +Johnny +Saul +Fabian +Chandler +Ernesto +Israel +Julio +Clayton +Erick +Leonardo +Maxwell +Peter +Chance +Corey +Grant +Josue +Lorenzo +Max +Gustavo +Jonathon +Levi +Alfredo +Carter +Conner +Sebastian +Josiah +Parker +Cooper +Esteban +Liam +Trenton +Damien +Elias +Gage +Micah +Edwin +Emmanuel +Aidan +Casey +Chad +Cory +Orlando +Salvador +Andy +Calvin +Dante +Dawson +Trent +Troy +Carson +Ismael +Roman +Abel +Guillermo +Harrison +Jonah +Brennan +Giovanni +Joe +Marc +Pablo +Skyler +Brenden +Dominick +Drake +Gilberto +Ronald +Albert +Donovan +Rodrigo +Tristen +Andre +Douglas +Estevan +Nickolas +Donald +Kaleb +Keegan +Rodolfo +Trey +Dallas +Felipe +Jimmy +Santiago +Uriel +Zachery +Adan +Griffin +Joaquin +Kristopher +Nikolas +Rogelio +Braxton +Brent +Drew +Eddie +Jarod +Jerry +Keith +Phillip +Shaun +Branden +Cade +Curtis +Gilbert +Jay +Randy +Rene +Ricky +Theodore +Ashton +Brendon +Chris +Damon +Jalen +Jayson +Kyler +Moises +Nolan +Payton +Skylar +Tommy +Zachariah +Alfonso +Brady +Derrick +Efrain +Eli +Emanuel +Isiah +Johnathon +Lane +Leonel +Noe +Tucker +Weston +Zackary +Allen +Braden +Brock +Cedric +Dallin +Gary +Lance +Louis +Malik +Peyton +Tomas +Ulises +Alonzo +Angelo +Arthur +Avery +Brayan +Danny +Duncan +Hugo +Jaden +Jayden +Kobe +Mauricio +Morgan +Myles +Triston +Vicente +Bobby +Brody +Corbin +Craig +Darius +Darren +Dennis +Jeffery +Kaden +Kody +Kristian +Landon +Malcolm +Octavio +Philip +Quinton +Terrell +Tristin +Alvaro +Colby +Ezekiel +Irvin +Jace +Justice +Keenan +Mateo +Micheal +Miles +Orion +Osvaldo +Quentin +Quinn +Rylan +Sheldon +Steve +Warren +Adolfo +Ariel +Bryant +Byron +Colten +Ezequiel +Felix +Grayson +Jessie +Keaton +Marshall +Marvin +Nathanael +Rudy +Todd +Trace +Aldo +Brayden +Bryson +Damion +Deven +Larry +Lawrence +Misael +Ralph +Ray +Rolando +Ronaldo +Simon +Ty +Agustin +Bernardo +Charlie +Darian +Efren +Gonzalo +Guadalupe +Hernan +Humberto +Ignacio +Issac +Jairo +Jarrod +Jon +Kade +Leo +Noel +Owen +Sage +Tyson +Adalberto +Billy +Caden +Cristobal +Davis +Dean +Deandre +Franklin +Harley +Holden +Irving +Jonas +Malachi +Maurice +Rhett +Rigoberto +Roger +Roy +Russell +Tony +Tyrone +Zackery +Adriano +Augustine +Beau +Benny +Bruce +Cordell +Dale +Eliseo +Ezra +Gerald +Isaias +Kai +Kurtis +Nelson +Oliver +Romeo +Tylor +Allan +Alonso +Arnold +Arnoldo +Blaine +Brigham +Carl +Cruz +Cyrus +Dane +Desmond +Elliot +Frankie +Frederick +Geoffrey +Gregorio +Hiram +Jaylen +Joey +Jordon +Jordy +Kasey +Kolby +Kolton +Kurt +Marcelo +Markus +Maximilian +Maximillian +Moses +Nathanial +Ramiro +Raymundo +Rey +River +Santos +Stone +Terry +Adonis +Adriel +Alexandro +Alvin +Ben +Benito +Bennett +Braeden +Clay +Conor +Dandre +Deshawn +Devan +Dimitri +Dion +Dominik +Dorian +Edgardo +Emiliano +Gino +Isreal +Jarom +Jaron +Jarrett +Kameron +Kieran +Kordell +Layne +Leon +Luiz +Mackenzie +Reed +Reynaldo +Sterling +Talon +Wade +Walker +Walter +Braydon +Brennen +Brice +Brooks +Canyon +Davion +Dexter +Dillan +Dwayne +Ernest +Everett +Francis +Garret +Garrison +German +Gildardo +Giovanny +Glenn +Howard +Isaak +Ishmael +Jamie +Jarred +Jerome +Jett +Jonatan +Kendall +Kendrick +Livan +Luciano +Mariano +Maximiliano +Mike +Nehemiah +Not +Randall +Raphael +Reece +Rodney +Sammy +Solomon +Tate +Terrance +Tobias +Trevon +Tristian +Tyrell +Vincente +Wayne +Ammon +Anfernee +Aurelio +Axel +Brandyn +Brennon +Brenton +Camron +Chaz +Clifford +Coleman +Colter +Cristopher +Dayton +Devyn +Edwardo +Genaro +Gianni +Harold +Hilario +Isacc +Isai +Isidro +Jagger +Jase +Jerod +Jevon +Jorden +Jordi +Josef +Justus +Karl +Karson +Kelvin +Kohl +Lee +Louie +Lukas +Marcelino +Mohamed +Myron +Obed +Porter +Quinten +Quintin +Ramses +Remington +Rosario +Ross +Ryland +Sam +Samson +Santino +Sidney +Silas +Stefan +Stephan +Toby +Westin +Abram +Aiden +Alek +Alexandre +Alfred +Amir +Anderson +Ari +Aron +Arron +Asher +August +Austen +Bradly +Braedon +Bronson +Bryon +Ceasar +Clifton +Clint +Dangelo +Darin +Darrin +Demetrius +Derick +Devlin +Diamond +Domingo +Donte +Draven +Elder +Ethen +Everardo +Filiberto +Freddie +Freddy +Glen +Grady +Graham +Gunnar +Harry +Heath +Herman +Ira +Issiah +Jadon +Jamal +Jamison +Josh +Jovani +Justyn +Kale +Kane +Keanu +Kellen +Killian +Kirk +Kole +Lamar +Lazaro +Leobardo +Leslie +Lino +Macario +Marcel +Marques +Matias +Melvin +Milton +Mitchel +Mohammad +Neal +Nestor +Payson +Pete +Phoenix +Pierce +Quincy +Raudel +Raymon +Reggie +Reuben +Rex +Reyes +Ronnie +Rory +Rosendo +Seamus +Stetson +Tavian +Teagan +Terence +Tre +Trinity +Trystan +Turner +Tyree +Ulisses +Ulysses +Valentin +Vidal +Willie +Wolfgang +Yovani +Jacob +Michael +Jose +Daniel +Christopher +Joshua +David +Anthony +Matthew +Nicholas +Joseph +Brandon +Tyler +Andrew +Luis +Ryan +Jesus +Zachary +Juan +Jonathan +Angel +Carlos +Christian +Gabriel +Alexander +James +Austin +Justin +John +Dylan +Robert +Noah +William +Nathan +Kyle +Kevin +Samuel +Aaron +Benjamin +Alejandro +Jordan +Francisco +Brian +Adrian +Ethan +Thomas +Isaac +Isaiah +Cody +Cameron +Eric +Hunter +Nathaniel +Adam +Steven +Miguel +Jason +Manuel +Jorge +Jared +Victor +Logan +Antonio +Caleb +Seth +Ricardo +Connor +Richard +Elijah +Tanner +Trevor +Mario +Oscar +Eduardo +Sean +Fernando +Chase +Diego +Alex +Bryan +Timothy +Javier +Julian +Sergio +Cole +Omar +Ruben +Andres +Dominic +Jeremy +Cesar +Mark +Jesse +Jack +Devin +Marcus +Martin +Ivan +Patrick +Garrett +Mason +Ian +Armando +Hector +Wyatt +Charles +Xavier +Bryce +Jake +Joel +Sebastian +Cristian +Edgar +Pedro +Tristan +Edward +Erik +Alexis +Evan +Israel +Marco +Hayden +Luke +Stephen +Spencer +Paul +Alec +Enrique +Travis +Alan +Jackson +Marcos +Raymond +Abraham +Arturo +Gavin +Colton +Preston +Ramon +Roberto +Vincent +Raul +Blake +Chandler +Gerardo +Shane +Damian +Erick +Parker +Dakota +Lucas +Riley +Alberto +Carson +Shawn +Frank +Bradley +Fabian +Mitchell +Nicolas +Julio +Maxwell +Rafael +Scott +Ernesto +Taylor +Gustavo +Johnathan +Brendan +Jaime +Jakob +Kaleb +Kenneth +Derek +Emilio +Peter +George +Jeremiah +Alfredo +Jeffrey +Roman +Collin +Max +Dalton +Damien +Devon +Dillon +Chance +Dawson +Pablo +Skyler +Bailey +Brenden +Dustin +Grant +Henry +Rene +Conner +Esteban +Josiah +Josue +Levi +Liam +Saul +Abel +Emmanuel +Cade +Leonardo +Trey +Zane +Casey +Jaden +Ismael +Carter +Elias +Gregory +Harrison +Lorenzo +Troy +Andre +Brady +Jayden +Rodrigo +Brett +Gage +Johnny +Braden +Colin +Edwin +Guillermo +Mathew +Micah +Phillip +Zackary +Aidan +Keith +Trenton +Calvin +Giovanni +Orlando +Dominick +Gilberto +Nickolas +Salvador +Cory +Dallas +Kyler +Ronald +Zachariah +Avery +Clayton +Danny +Donovan +Drew +Trent +Wesley +Albert +Brennan +Corey +Jimmy +Jonathon +Randy +Rodolfo +Brayden +Donald +Joaquin +Quentin +Angelo +Branden +Damon +Jace +Jalen +Kaden +Santiago +Ulises +Cooper +Douglas +Hugo +Ty +Brayan +Brock +Ezequiel +Jonah +Kobe +Nolan +Payton +Alfonso +Andy +Chad +Drake +Gilbert +Griffin +Adan +Arthur +Caden +Felipe +Marc +Peyton +Ramiro +Rogelio +Uriel +Curtis +Dallin +Isiah +Issac +Kody +Landon +Larry +Mauricio +Micheal +Morgan +Rigoberto +Bryson +Corbin +Irvin +Jerry +Jessie +Miles +Moises +Octavio +Owen +Shaun +Tristen +Allen +Bobby +Brent +Cruz +Dennis +Derrick +Emanuel +Estevan +Ezekiel +Humberto +Joe +Louis +Philip +Quinn +Ricky +Tomas +Vicente +Alvaro +Ashton +Dante +Dean +Felix +Guadalupe +Jeffery +Keegan +Lawrence +Leonel +Steve +Brendon +Brody +Colten +Conor +Damion +Garret +Gary +Kai +Kristopher +Mariano +Noel +Porter +Ray +Simon +Tyrese +Adolfo +Clay +Eddie +Efrain +Eli +Grayson +Ignacio +Jarod +Lance +Mateo +Nikolas +Oliver +Orion +Osvaldo +Ronnie +Sage +Santos +Skylar +Tyrell +Walter +Alonso +Bryant +Colby +Duncan +Ezra +Heriberto +Kade +Noe +Tyson +Weston +Allan +Alonzo +Cyrus +Darren +Deven +Jayson +Johnathon +Jon +Keaton +Kolton +Leo +Malachi +Reyes +Rolando +Sheldon +Solomon +Tate +Tommy +Valentin +Zackery +Agustin +Braulio +Camden +Craig +Geoffrey +Holden +Jaren +Jay +Keanu +Kendrick +Misael +Myles +Nathanial +Nestor +Quinton +Reid +Roy +Rudy +Triston +Warren +Adalberto +Aiden +Alexandro +Ariel +Bennett +Billy +Byron +Cedric +Chris +Dane +Darian +Efren +Emiliano +Everett +Isaias +Jadon +Jaron +Jarrod +Kasey +Lee +Leon +Leonard +Malik +Marvin +Randall +Romeo +Sterling +Terrell +Theodore +Tucker +Zion +Bruce +Conrad +Davis +Deshawn +Devyn +Jarrett +Justice +Lane +Malcolm +Maximiliano +Osbaldo +Reed +Roger +Ryland +Stephan +Talon +Terrence +Terry +Tylor +Zachery +Aldo +Anakin +Benito +Brenton +Carl +Cordell +Dangelo +Darius +Deandre +Edgardo +Elliot +Freddy +German +Giovanny +Isai +Jairo +Jamie +Jayce +Joey +Jovany +Kameron +Keenan +Kristian +Lewis +Marquise +Marshall +Moses +Notnamed +Quintin +Reece +Reese +Ross +Tobias +Tony +Trevon +Tyrone +Ulysses +Abram +Addison +Ahmad +Alfred +Ali +Ammon +Antoine +Ari +Augustine +Axel +Beau +Bernardo +Dario +Declan +Desmond +Dion +Dominique +Easton +Elmer +Eugene +Genaro +Gregorio +Harley +Harold +Hernan +Isidro +Jamison +Jerome +Jonas +Jordon +Jovan +Kenny +Lukas +Marcelino +Mike +Nathanael +Nikolai +Payson +Russell +Rylan +Stefan +Todd +Wade +Walker +Amir +Asher +Ayden +Braeden +Brennen +Cristobal +Dashawn +Devan +Donavan +Eliseo +Emerson +Federico +Frankie +Franklin +Frederick +Gonzalo +Graham +Greyson +Isacc +Jovani +Justus +Kaiden +Kelton +Leopoldo +Lincoln +Luiz +Marquis +Mckay +Melvin +Neil +Raymundo +Reginald +Rey +Reynaldo +Terrance +Toby +Trevin +Tristian +Wilson +Adriano +Adrien +Alek +Alijah +Arnold +Austen +Ben +Benny +Braedon +Braxton +Bret +Bronson +Camron +Carlo +Ceasar +Clifford +Coby +Colt +Cutter +Davian +Davon +Daylon +Deangelo +Demetrius +Destin +Dimitri +Dwight +Elliott +Eriberto +Erwin +Esai +Ever +Francis +Glenn +Gordon +Gunner +Hiram +Iram +Irving +Izaiah +Jaiden +Jamal +Jarom +Jarred +Jeron +Josef +Jude +Julien +Keagan +Kendall +Kieran +Koby +Kolby +Konner +Markus +Marlon +Mauro +Maximilian +Nelson +Norberto +Paxton +Quincy +Sawyer +Silas +Sky +Sonny +Stuart +Trinity +Tristin +Valentino +Wayne +Winston +Ahmed +Alvin +Antony +Antwan +Aries +Arnoldo +Aron +Blaine +Braydon +Brycen +Camilo +Celso +Charlie +Claudio +Dandre +Darien +Darin +Davion +De +Delbert +Denver +Devante +Dillan +Domingo +Dorian +Draven +Ellis +Elvis +Ernest +Ervin +Faustino +Favian +Fidel +Fransisco +Fred +Garett +Garrison +Gino +Grady +Hudson +Jaeden +Javon +Jaxson +Jensen +Jerrick +Joan +Jonatan +Jovanny +Junior +Kadin +Karl +Kellen +Kelvin +Kian +Kordell +Korey +Kurtis +Landen +Latrell +Leandro +Lionel +Loren +Mackenzie +Marcel +Marcoantonio +Maurice +Maximillian +Mikel +Pete +Phoenix +Pierce +Ralph +Rhett +Rio +River +Rodney +Rory +Sabastian +Sam +Sheridan +Stone +Tevin +Theron +Trace +Tre +Tristyn +Trystan +Uriah +Wayde +Zack +Zakery +Jacob +Michael +Daniel +Jose +Anthony +Joshua +Jesus +Matthew +David +Andrew +Joseph +Christopher +Brandon +Tyler +Nicholas +Luis +Zachary +Angel +Ryan +Gabriel +Alexander +Christian +Jonathan +Juan +Carlos +Justin +Ethan +Samuel +Kevin +Dylan +Benjamin +Noah +Austin +James +Robert +Nathan +Adrian +John +Kyle +William +Brian +Isaac +Francisco +Jordan +Miguel +Thomas +Alejandro +Isaiah +Eric +Hunter +Jorge +Jason +Cameron +Aaron +Adam +Logan +Sebastian +Manuel +Julian +Jared +Bryan +Nathaniel +Victor +Connor +Fernando +Elijah +Alex +Oscar +Caleb +Antonio +Cody +Steven +Alexis +Richard +Mario +Eduardo +Seth +Ricardo +Trevor +Andres +Jack +Tanner +Xavier +Jeremy +Cesar +Ivan +Mason +Diego +Sean +Chase +Notnamed +Ruben +Cole +Garrett +Ian +Wyatt +Hector +Marco +Hayden +Bryce +Dominic +Edgar +Sergio +Devin +Javier +Omar +Timothy +Mark +Tristan +Jesse +Evan +Luke +Marcos +Charles +Cristian +Alan +Jackson +Pedro +Blake +Gavin +Martin +Erik +Vincent +Jake +Roberto +Damian +Enrique +Gerardo +Joel +Marcus +Aidan +Carson +Edward +Erick +Ramon +Jakob +Raul +Travis +Nicolas +Patrick +Stephen +Colton +Preston +Spencer +Jaden +Riley +Jeremiah +Armando +Jaime +Parker +Alec +Devon +Josue +Paul +Rafael +Chance +Raymond +Alberto +Kenneth +Dalton +Gage +Israel +Julio +Bradley +Derek +Dillon +Emilio +Lucas +Brendan +Johnathan +Scott +Wesley +Jayden +Maxwell +Roman +Collin +Dakota +Grant +Saul +Arturo +Jeffrey +Max +Shawn +Abraham +Andre +Colin +Ernesto +George +Zane +Taylor +Leonardo +Alfredo +Skyler +Dawson +Gustavo +Shane +Elian +Dustin +Fabian +Rene +Brett +Caden +Frank +Levi +Axel +Carter +Chandler +Clayton +Josiah +Kaleb +Mathew +Peter +Abel +Corey +Jalen +Andy +Edwin +Elias +Emmanuel +Gregory +Johnny +Brenden +Cade +Dante +Pablo +Braden +Donovan +Jonathon +Lorenzo +Mitchell +Ty +Cory +Harrison +Kobe +Cooper +Damien +Henry +Marc +Bailey +Giovanni +Moises +Rodrigo +Trey +Troy +Brayan +Ismael +Nolan +Trenton +Calvin +Conner +Dominick +Gilberto +Jace +Salvador +Brayden +Damon +Griffin +Jonah +Liam +Micah +Albert +Ashton +Ronald +Santiago +Angelo +Casey +Chad +Kaden +Keegan +Lance +Mateo +Mauricio +Micheal +Orlando +Alfonso +Alonso +Drake +Guillermo +Dallin +Esteban +Morgan +Randy +Trent +Branden +Gilbert +Jerry +Joaquin +Nikolas +Tommy +Zachery +Adan +Brennan +Danny +Estevan +Keith +Phillip +Simon +Zackary +Allen +Isiah +Jimmy +Kade +Kristopher +Rogelio +Vicente +Aiden +Brady +Colby +Corbin +Drew +Gary +Lane +Leonel +Nickolas +Owen +Payton +Rodolfo +Tristen +Agustin +Alvaro +Brody +Ramiro +Ezekiel +Felipe +Issac +Jay +Jayson +Louis +Octavio +Quinn +Skylar +Ulises +Bryson +Cruz +Curtis +Darian +Dean +Eddie +Jessie +Landon +Larry +Tate +Adolfo +Aldo +Avery +Cristobal +Derrick +Donald +Emanuel +Ezra +Guadalupe +Joseluis +Juancarlos +Julien +Kyler +Miles +Moses +Peyton +Weston +Brock +Bryant +Carl +Darius +Humberto +Jonatan +Kai +Kody +Kristian +Malik +Oliver +Quentin +Ricky +Shaun +Steve +Alonzo +Arthur +Brendon +Brent +Camden +Dennis +Eli +Ezequiel +German +Grayson +Holden +Jarrett +Joe +Noel +Orion +Rudy +Tomas +Tucker +Braxton +Dallas +Damion +Darren +Felix +Garret +Irvin +Malachi +Malcolm +Nathanial +Noe +Philip +Ray +Rolando +Rylan +Tony +Walter +Alfred +Arnold +Chris +Douglas +Harley +Jairo +Jarod +Jaron +Jayce +Jaylen +Joey +Jon +Kameron +Leonard +Osvaldo +Santos +Tristin +Ben +Byron +Cedric +Dorian +Efrain +Harry +Heriberto +Hugo +Isaias +Justice +Marcoantonio +Misael +Nathanael +Reynaldo +Sage +Sheldon +Talon +Theodore +Allan +Brigham +Camron +Craig +Dale +Deandre +Efren +Garrison +Irving +Jadon +Johnathon +Joseangel +Koby +Loren +Maximus +Neil +Quinten +Raymundo +Reece +Rigoberto +Roger +Roy +Stefan +Tyrell +Tyson +Uriel +Warren +Arath +Ayden +Colten +Desmond +Devan +Duncan +Emiliano +Frankie +Franklin +Glenn +Horacio +Ignacio +Jaren +Jordon +Jovany +Julius +Keanu +Keaton +Leo +Mariano +Marvin +Maximilian +Reyes +Romeo +Ronaldo +Sterling +Triston +Tylor +Tyrese +Abram +Ali +Alvin +Aurelio +Braeden +Brennen +Bruce +Cayden +Clay +Cristopher +Dane +Dangelo +Darrell +Dimitri +Ernest +Eugene +Everardo +Fidel +Graham +Hernan +Hiram +Jarred +Jovani +Keenan +Landen +Lawrence +Lukas +Marshall +Porter +Reed +Rodney +Ryder +Sabastian +Santana +Tobias +Toby +Todd +Tre +Ulysses +Wade +Zachariah +Zackery +Zechariah +Zion +Addison +Augustine +Beau +Bennett +Blaine +Braydon +Charlie +Coby +Conor +Davin +Deangelo +Demetrius +Deven +Elliot +Gonzalo +Gunnar +Jaiden +Jarrod +Jett +Jonas +Jordy +Jude +Marcelo +Myles +Nestor +Obed +Ralph +Reid +Russell +Ryland +Shayne +Trace +Ulisses +Uriah +Abran +Adriel +Ahmed +Ariel +Austyn +Benito +Brycen +Cauy +Chaz +Cyrus +Davis +Dayton +Devonte +Edgardo +Eleazar +Eliseo +Elisha +Elvis +Ethen +Everett +Freddy +Gannon +Gunner +Hassan +Jovan +Jovanni +Junior +Karsten +Kendall +Kenny +Leon +Marcanthony +Markus +Matthias +Maurice +Miguelangel +Mikel +Milton +Oswaldo +Pierce +Quintin +Quinton +Reuben +Robbie +Rohan +Roland +Silas +Terrence +Terry +Thaddeus +Truman +Tyrone +Vance +Wayne +Zakary +Alek +Alexandro +Alexzander +Ari +Aron +Bernardo +Bobby +Braedon +Brodie +Bruno +Carsten +Chet +Coleman +Darien +Daunte +Daxton +Declan +Deion +Devyn +Dion +Edwardo +Elliott +Favian +Flavio +Francis +Fransisco +Fredy +Gregorio +Guy +Harold +Heber +Hilario +Hudson +Isidro +Izaiah +Jamison +Jan +Jarett +Jasper +Javan +Jerome +Joan +Kane +Karson +Kendrick +Kory +Leobardo +Louie +Luisgustavo +Marcello +Marquez +Marquis +Mauro +Maximiliano +Mike +Mitchel +Nelson +Nicklaus +Payson +Royce +Sabian +Santino +Simeon +Solomon +Terrell +Torin +Trenten +Vincente +Will +Abimael +Aden +Amado +Ammon +Anton +Antony +Arian +Aric +Arik +Arnulfo +Billy +Brandyn +Brannon +Branson +Brennon +Bronson +Carlo +Carlton +Clinton +Cordell +Cristofer +Cullen +Darin +Dario +Darrion +Daylen +Demetri +Denzel +Devlin +Dillion +Dominique +Donavan +Draven +Duane +Easton +Eddy +Emery +Fausto +Fermin +Frederick +Gamaliel +Geoffrey +Gerald +Greg +Herbert +Herman +Howard +Hyrum +Isacc +Isael +Jacobo +Jaeden +Jamal +Jaxon +Jaxson +Jeffery +Jermaine +Jorden +Josejuan +Joshuah +Justino +Kain +Kamron +Kellen +Kelvin +Kenyon +Keshawn +Keven +Kieran +Klayton +Kolby +Kolton +Kristofer +Kurtis +Layton +Lazaro +Lee +Leland +Leopoldo +Luc +Luisalberto +Lyle +Melvin +Montana +Nash +Nehemiah +Nico +Raphael +Reese +Rey +Rhett +Rick +River +Ronnie +Ryker +Sam +Samson +Seamus +Sidney +Skye +Stephan +Stone +Tayler +Valentin +Willis +Zander +Jacob +Michael +Jose +Anthony +Matthew +Jesus +Joshua +Daniel +Christopher +Andrew +Joseph +David +Jonathan +Brandon +Angel +Luis +Nicholas +Zachary +Ethan +Tyler +Ryan +Gabriel +Carlos +Alexander +Christian +Dylan +Juan +Samuel +Kevin +Robert +Justin +Benjamin +John +William +Nathan +Noah +James +Kyle +Adrian +Isaac +Logan +Austin +Isaiah +Brian +Aaron +Alejandro +Francisco +Jorge +Jason +Cameron +Elijah +Jordan +Miguel +Hunter +Victor +Eric +Thomas +Julian +Nathaniel +Caleb +Connor +Eduardo +Sebastian +Bryan +Alex +Adam +Manuel +Oscar +Jack +Cody +Cesar +Richard +Diego +Antonio +Trevor +Alexis +Fernando +Luke +Seth +Tanner +Cole +Jared +Ricardo +Steven +Mario +Javier +Mason +Xavier +Jackson +Sergio +Ivan +Sean +Aidan +Devin +Notnamed +Andres +Dominic +Ian +Marco +Charles +Chase +Jesse +Cristian +Edgar +Garrett +Alan +Mark +Wyatt +Hector +Carson +Evan +Marcus +Roberto +Gavin +Marcos +Tristan +Damian +Timothy +Gerardo +Ruben +Omar +Martin +Patrick +Axel +Jaden +Erik +Raul +Jeremy +Erick +Preston +Joel +Ramon +Bryce +Hayden +Lucas +Riley +Rafael +Armando +Colton +Nicolas +Spencer +Fabian +Jayden +Travis +Arturo +Derek +Paul +Raymond +Jaime +Josue +Pedro +Julio +Carter +Kaleb +Vincent +Blake +Emmanuel +Enrique +Edward +Abraham +Jake +Liam +Edwin +Stephen +Jeremiah +Micah +Saul +Shane +Levi +Ernesto +Shawn +Alberto +Gage +Roman +Alec +Collin +Devon +Israel +Giovanni +Maxwell +Scott +Brendan +Dillon +Elias +Jeffrey +Max +Grant +Leonardo +Parker +Skyler +Brayan +Caden +Kenneth +Orlando +Peter +Colin +George +Chance +Abel +Salvador +Bradley +Brayden +Colby +Esteban +Kaden +Taylor +Alfredo +Cooper +Ismael +Zane +Henry +Johnathan +Rene +Wesley +Dakota +Frank +Lorenzo +Cade +Josiah +Pablo +Damien +Eli +Emilio +Guillermo +Conner +Dustin +Jakob +Johnny +Kobe +Owen +Trent +Zackary +Andy +Brett +Chandler +Nolan +Clayton +Ronald +Braden +Gregory +Gustavo +Jonah +Santiago +Ashton +Dalton +Jace +Moises +Osvaldo +Phillip +Aiden +Jalen +Mathew +Trey +Troy +Albert +Andre +Corbin +Dawson +Dominick +Emiliano +Jimmy +Joaquin +Rogelio +Tyson +Donovan +Felipe +Trenton +Harrison +Lance +Nickolas +Tristen +Uriel +Vicente +Angelo +Bailey +Brady +Danny +Mauricio +Rodrigo +Zackery +Drake +Gilberto +Landon +Leonel +Malachi +Mitchell +Rodolfo +Rudy +Aldo +Bryson +Chad +Payton +Shaun +Brenden +Brennan +Ezequiel +Issac +Miles +Moses +Quinn +Adan +Avery +Dallin +Felix +Gary +Joe +Kade +Keegan +Kyler +Marc +Maximus +Nikolas +Randy +Russell +Brent +Brock +Casey +Dallas +Emanuel +Gilbert +Hugo +Isiah +Jaiden +Joseluis +Ty +Alvaro +Cory +Irvin +Isaias +Kolby +Noe +Brody +Calvin +Dante +Darren +Malik +Ariel +Arthur +Bryant +Camden +Corey +Curtis +Dale +Efrain +Ezekiel +German +Jerry +Johan +Lane +Morgan +Myles +Octavio +Peyton +Sage +Skylar +Tomas +Ulises +Alfonso +Ammon +Darius +Drew +Erubiel +Estevan +Griffin +Ignacio +Jaron +Jay +Jayson +Joan +Jonathon +Kai +Kody +Philip +Ramiro +Rigoberto +Tony +Tyrell +Braeden +Dane +Dorian +Douglas +Izaiah +Juancarlos +Keanu +Keaton +Kristopher +Louis +Nestor +Oliver +Quentin +Rylan +Tommy +Triston +Warren +Zachariah +Allen +Branden +Brendon +Damon +Donald +Hyrum +Jarod +Jaxon +Jaylen +Jovani +Keith +Marshall +Maximilian +Micheal +Steve +Theodore +Todd +Adolfo +Alonso +Brigham +Charlie +Damion +Darian +Dean +Deandre +Declan +Heriberto +Jaren +Justice +Kristian +Lawrence +Orion +Reece +Romeo +Simon +Cedric +Chris +Cristobal +Cruz +Elian +Humberto +Jeffery +Joey +Marvin +Raymundo +Ricky +Adriano +Agustin +Ali +Alonzo +Craig +Davis +Devan +Guadalupe +Jair +Jovany +Julius +Kendall +Larry +Leon +Lukas +Mateo +Ray +Reese +Roger +Rolando +Walter +Zachery +Ben +Bennett +Bernardo +Byron +Cayden +Coby +Dominique +Eddie +Frankie +Garret +Jairo +Jessie +Leo +Maximiliano +Noel +Santos +Sterling +Tate +Titus +Tristin +Tucker +Weston +Abram +Bobby +Brad +Brennen +Brycen +Dennis +Eliseo +Ezra +Franklin +Grayson +Holden +Irving +Isai +Jarrett +Jon +Jovan +Junior +Kameron +Karson +Luisangel +Marcelino +Marlon +Miguelangel +Porter +Quinton +Ronnie +Talon +Zion +Alfred +Braxton +Brice +Carl +Clinton +Colten +Cristopher +Davion +Demian +Easton +Edgardo +Elliot +Eloy +Hudson +Jadon +Jamal +Johnathon +Jonas +Joseantonio +Jude +Kenny +Lincoln +Malcolm +Markus +Maurice +Mauro +Melvin +Milton +Nathanael +Randall +Rhett +Roy +Solomon +Stone +Toby +Trevon +Wade +Zander +Abran +Amir +Anderson +Antony +Augustine +Ayden +Beau +Braydon +Caiden +Cyrus +Darrell +Derrick +Desmond +Devyn +Dominik +Duncan +Elisha +Elliott +Fidel +Giovanny +Hernan +Isidro +Jaeden +Jarom +Javin +Jaydon +Jett +Jonatan +Jordy +Kaiden +Kayden +Killian +Koby +Lewis +Luciano +Marcelo +Marcoantonio +Mohamed +Mohammed +Rick +Roland +Sam +Sheldon +Stefan +Tobias +Trace +Tylor +Tyrone +Walker +Wilson +Xander +Adalberto +Addison +Adriel +Alek +Arnold +Bret +Bruno +Canyon +Chaz +Clay +Conor +Dion +Emmett +Federico +Flavio +Freddie +Gonzalo +Harley +Harry +Isaak +Isac +Jovanny +Kane +Karim +Kelvin +Kole +Mike +Misael +Myron +Nathen +Nehemiah +Neil +Paris +Payson +Quincy +Ralph +Reid +Samson +Ulysses +Uriah +Vincente +Abelardo +Aden +Arnoldo +Braedon +Braiden +Broderick +Bruce +Clark +Coltin +Conrad +Cristofer +Dangelo +Dario +Darwin +Daryl +Derick +Donavan +Draven +Efren +Ellis +Elvis +Ernest +Everett +Genaro +Geoffrey +Gerald +Gino +Giovani +Gregorio +Greyson +Gunnar +Gunner +Harold +Imanol +Iram +Jamie +Jamison +Jan +Jarred +Jayce +Jermaine +Jerome +Jordon +Joseangel +Josef +Julien +Kale +Karl +Kelly +Kristofer +Lee +Leobardo +Maximillian +Nico +Osbaldo +Phoenix +Rosario +Ryland +Ryley +Sammy +Shayne +Terrance +Terry +Tom +Tre +Tyrese +Valentin +Wayne +Will +Yair +Abdiel +Ahmed +Alden +Asher +Augustus +Baltazar +Benito +Blaine +Brannon +Brennon +Bridger +Bronson +Cale +Campbell +Clifford +Codey +Colt +Crew +Dan +Dayton +Demetrius +Deondre +Deven +Devlin +Dimitri +Enrico +Ervin +Esequiel +Ever +Faustino +Forrest +Fred +Freddy +Garett +Geovanni +Geronimo +Giancarlo +Glenn +Gordon +Guy +Harris +Horacio +Ira +Jacobo +Jerimiah +Jorden +Jourdan +Justus +Kadin +Kasey +Keagan +Keenan +Kelby +Kellen +Kendrick +Kenyon +Kevyn +Keyshawn +Kolbe +Kory +Kurt +Kylan +Landen +Layne +Lazaro +Lucio +Marcello +Mariano +Mckay +Milan +Nelson +Noname +Perry +Ramses +Ramsey +Reed +Rex +Reyes +Rigo +River +Rodney +Rowan +Seamus +Simeon +Soren +Tyree +Ubaldo +Valentino +Zack +Zechariah +Jacob +Jose +Michael +Daniel +Joshua +Anthony +Jesus +Matthew +Joseph +David +Andrew +Angel +Christopher +Luis +Ethan +Tyler +Gabriel +Jonathan +Alexander +Juan +Brandon +Carlos +Ryan +Christian +Nicholas +Zachary +Kevin +Dylan +Adrian +Samuel +Logan +James +Nathan +William +John +Isaiah +Isaac +Austin +Noah +Brian +Francisco +Robert +Benjamin +Miguel +Justin +Julian +Jorge +Elijah +Jason +Kyle +Jordan +Thomas +Alejandro +Diego +Aaron +Connor +Caleb +Sebastian +Hunter +Bryan +Victor +Cameron +Manuel +Eric +Dominic +Ricardo +Fernando +Alex +Xavier +Oscar +Adam +Nathaniel +Eduardo +Antonio +Jack +Mason +Gavin +Aidan +Luke +Cesar +Damian +Seth +Ian +Jackson +Jesse +Steven +Tanner +Mario +Sean +Cole +Hayden +Sergio +Trevor +Richard +Andres +Cody +Javier +Alan +Charles +Ivan +Jared +Edgar +Jaden +Marco +Omar +Jayden +Martin +Ruben +Chase +Hector +Marcus +Pedro +Tristan +Bryce +Cristian +Devin +Jeremy +Joel +Alexis +Evan +Mark +Blake +Garrett +Erick +Riley +Carter +Timothy +Wyatt +Aiden +Armando +Jeremiah +Roberto +Derek +Erik +Jake +Preston +Carson +Nicolas +Emmanuel +Gerardo +Josiah +Kenneth +Lucas +Abraham +Julio +Kaleb +Spencer +Fabian +Patrick +Paul +Caden +Marcos +Raymond +Edwin +George +Liam +Notnamed +Raul +Israel +Vincent +Josue +Ramon +Jaime +Maxwell +Rafael +Shane +Colton +Roman +Gage +Stephen +Alberto +Leonardo +Parker +Zane +Brayan +Enrique +Damien +Elias +Edward +Saul +Bradley +Dillon +Ernesto +Gustavo +Shawn +Devon +Travis +Dominick +Jeffrey +Axel +Conner +Grant +Santiago +Andy +Brayden +Colin +Jonah +Alfredo +Landon +Levi +Pablo +Owen +Kaden +Micah +Arturo +Giovanni +Brendan +Collin +Esteban +Max +Taylor +Emilio +Rene +Abel +Jakob +Orlando +Scott +Trey +Alec +Braden +Brady +Cade +Johnathan +Johnny +Peter +Jalen +Trenton +Chandler +Cooper +Erubiel +Frank +Drake +Hugo +Randy +Colby +Cory +Dakota +Dustin +Ezekiel +Nolan +Ashton +Brenden +Brody +Chance +Gilberto +Henry +Lorenzo +Moises +Skyler +Eli +Emanuel +Trent +Ty +Donovan +Guillermo +Jace +Malachi +Rodrigo +Andre +Brock +Casey +Gregory +Harrison +Kai +Phillip +Troy +Vicente +Clayton +Kyler +Rodolfo +Wesley +Ismael +Keegan +Quinn +Salvador +Uriel +Zackary +Avery +Bryant +Joaquin +Marc +Ulises +Aldo +Angelo +Chad +Donald +Estevan +Issac +Leonel +Payton +Alvaro +Brett +Calvin +Emiliano +Jaxon +Mauricio +Mitchell +Alonso +Dallas +Darius +Griffin +Isaias +Joe +Octavio +Osvaldo +Tyson +Adan +Dawson +Isiah +Maximiliano +Maximus +Rogelio +Theodore +Tristen +Albert +Alfonso +Allen +Ayden +Bryson +Cayden +Dallin +Dalton +Dante +Felix +German +Jimmy +Jonathon +Keith +Kobe +Mateo +Nikolas +Corey +Irvin +Justice +Kristopher +Mathew +Nickolas +Porter +Rylan +Tony +Cruz +Ezra +Felipe +Gael +Humberto +Jay +Joey +Lance +Miles +Ramiro +Ronald +Brennan +Camden +Jairo +Louis +Noe +Rudy +Skylar +Tomas +Zachery +Adolfo +Arthur +Craig +Damon +Ezequiel +Ignacio +Morgan +Quentin +Roger +Romeo +Weston +Branden +Brent +Dane +Danny +Darren +Elian +Jerry +Jon +Leo +Melvin +Micheal +Orion +Roy +Shaun +Solomon +Tate +Triston +Braeden +Bruno +Corbin +Davis +Dean +Dennis +Fidel +Gilbert +Jair +Jarod +Jett +Jonas +Junior +Kade +Peyton +Philip +Reece +Russell +Santos +Steve +Tristin +Aden +Alexandro +Ammon +Chris +Dominik +Douglas +Efrain +Jaiden +Jaxson +Jayce +Jude +Kaiden +Kody +Lukas +Myles +Ricky +Simon +Zachariah +Zion +Arath +Ariel +Bailey +Curtis +Deandre +Demetrius +Dominique +Drew +Easton +Gary +Gonzalo +Grayson +Heriberto +Juancarlos +Kayden +Keanu +Rolando +Todd +Agustin +Ali +Alonzo +Bennett +Branson +Brendon +Bruce +Camron +Carl +Darian +Dayton +Izaiah +Jessie +Kameron +Maurice +Maximo +Nathanael +Oliver +Ray +Talon +Allan +Braydon +Brigham +Cristobal +Damion +Derrick +Dorian +Franklin +Harley +Hudson +Irving +Isidro +Jarrod +Jayson +Johnathon +Marlon +Nelson +Rey +Rigoberto +Silas +Augustine +Clay +Coby +Conor +Declan +Duncan +Eddie +Efren +Jagger +Jaylen +Johan +Jordon +Jovani +Jovany +Julius +Malakai +Marvin +Phoenix +Reed +Sterling +Tommy +Trace +Zander +Zechariah +Abram +Alexzander +Arnold +Asher +Coleman +Cristofer +Cristopher +Desmond +Deven +Elliot +Guadalupe +Holden +Isai +Jerome +Jonatan +Joseluis +Kenny +Kieran +Kolton +Kristian +Larry +Malik +Marshall +Misael +Noel +Quincy +Quinton +Ramses +Reyes +Ryker +Sabastian +Sheldon +Tobias +Tucker +Tyrell +Ulysses +Zayne +Adalberto +Addison +Austyn +Billy +Colten +Crew +Cyrus +Deangelo +Domingo +Edgardo +Edwardo +Esai +Genaro +Geovanni +Giovanny +Glenn +Jadon +Jaeden +Jasper +Joan +Julien +Kelvin +Koby +Kolby +Kole +Lee +Leobardo +Lincoln +Mariano +Matteo +Payson +Pete +Pierce +Ralph +Raymundo +Reese +Ryder +Samson +Santino +Sawyer +Terrance +Titus +Trevon +Abdiel +Adriel +Ahmad +Alexandre +Alijah +Alvin +Arian +Aydin +Beau +Benicio +Benito +Bernardo +Blaise +Bobby +Brycen +Caiden +Davin +Edmundo +Eleazar +Eliseo +Elvis +Ethen +Frankie +Frederick +Gerald +Graham +Gunner +Heath +Hyrum +Isacc +Jael +Jarom +Jaziel +Juaquin +Justus +Kale +Karl +Karson +Keagan +Lawrence +Leon +Lewis +Miguelangel +Mikel +Moses +Osbaldo +Oswaldo +Randall +Reynaldo +River +Ronaldo +Sonny +Stanley +Terry +Toby +Vance +Wade +Walker +Yahir +Zackery +Zakary +Alek +Amari +Amarion +Ari +Aric +Arik +Atticus +Blaine +Brad +Brennen +Bret +Cal +Carlo +Carsen +Charlie +Clinton +Colt +Dale +Darien +Darnell +Deshawn +Devyn +Dyllan +Ernest +Everett +Flavio +Garret +Garrison +Geoffrey +Giancarlo +Gordon +Grady +Gregorio +Greyson +Harold +Hiram +Isaak +Jarrett +Jasiel +Jaydon +Jaylin +Jermaine +Jovan +Kaeden +Kelly +Kendrick +Kent +Kevyn +Lane +Latrell +Leighton +Leopoldo +Malcolm +Marko +Markus +Maximillian +Mckay +Nathanial +Nathen +Nestor +Nico +Nigel +Rhett +Rocco +Rocky +Rodney +Rohan +Said +Sam +Shea +Slade +Trystan +Tyrone +Ubaldo +Uriah +Valentin +Valentino +Walter +Warren +Wilson +Xander +Alessandro +Anders +Anish +Austen +Aydan +Barry +Basil +Boston +Braiden +Brice +Broc +Byron +Canyon +Carsten +Clemente +Cordell +Darin +Denzel +Derick +Dion +Domonic +Donavan +Draven +Dwight +Edson +Ever +Favian +Federico +Freddy +Gavyn +Gerson +Gianni +Gunnar +Horacio +Ibrahim +Iverson +Jadin +Jadyn +Jameson +Jamie +Jaylon +Jean +Jeffery +Joesph +Jordy +Josh +Josias +Justyn +Kadin +Kalvin +Kane +Karsten +Kasey +Ken +Kenyon +Kian +Kirk +Konner +Korbin +Kory +Kurtis +Landen +Layne +Lionel +Lucio +Mac +Mackenzie +Marcelo +Maximilian +Mike +Mohammad +Mustafa +Nash +Nicklas +Obed +Odin +Patricio +Quinten +Quintin +Reid +Reymundo +Roland +Ross +Sage +Santana +Seamus +Sidney +Simeon +Tayton +Terrence +Tre +Tyrese +Uziel +Vincente +Will +Jacob +Jose +Daniel +Anthony +Michael +Angel +Jesus +Joshua +Andrew +David +Joseph +Gabriel +Luis +Ethan +Ryan +Christopher +Matthew +Brandon +Alexander +Nicholas +Juan +Jonathan +Carlos +Tyler +Christian +Kevin +Dylan +Nathan +Samuel +Zachary +William +Benjamin +John +Adrian +James +Isaac +Logan +Isaiah +Diego +Miguel +Aaron +Caleb +Elijah +Robert +Noah +Alejandro +Justin +Austin +Bryan +Julian +Brian +Aidan +Francisco +Victor +Connor +Jason +Jordan +Thomas +Mason +Hunter +Jorge +Xavier +Kyle +Sebastian +Aiden +Alan +Antonio +Eduardo +Eric +Gavin +Fernando +Nathaniel +Adam +Cody +Evan +Jackson +Cameron +Steven +Dominic +Alex +Luke +Cesar +Jack +Andres +Manuel +Javier +Mario +Oscar +Jayden +Jesse +Ivan +Sergio +Ricardo +Alexis +Hayden +Edgar +Damian +Cole +Seth +Trevor +Ian +Devin +Omar +Richard +Sean +Charles +Wyatt +Ashton +Cristian +Hector +Caden +Ruben +Blake +Joel +Martin +Tanner +Carson +Armando +Jake +Chase +Jaden +Paul +Jared +Tristan +Kaden +Mark +Bryce +Abraham +Colin +Erik +Marco +Timothy +Vincent +Enrique +Gerardo +Derek +Jeremy +Marcus +Roberto +Carter +Edward +Kaleb +Elias +Fabian +Ramon +Raul +Erick +Kenneth +Nicolas +Garrett +Josue +Rafael +Ernesto +Liam +Lucas +Riley +Brayden +Patrick +Edwin +Marcos +Owen +Dominick +Gage +Jeremiah +Josiah +Devon +Notnamed +Roman +Colton +Landon +Maxwell +Leonardo +Conner +Preston +Emmanuel +Julio +Alberto +Brayan +Pedro +Spencer +Arturo +Collin +Israel +Pablo +Stephen +Damien +Emilio +Esteban +Parker +Raymond +George +Ismael +Alfredo +Bradley +Dillon +Giovanni +Gustavo +Xander +Ayden +Brendan +Cooper +Donovan +Jaime +Henry +Trenton +Ty +Andre +Clayton +Saul +Eli +Abel +Brady +Micah +Cade +Grant +Guillermo +Johnathan +Zane +Jace +Nolan +Shawn +Braden +Jonah +Levi +Shane +Skyler +Max +Peter +Chance +Dante +Orlando +Alec +Axel +Santiago +Johnny +Rene +Travis +Emanuel +Frank +Jeffrey +Taylor +Calvin +Dakota +Jakob +Jaxon +Salvador +Trent +Hugo +Uriel +Yahir +Lorenzo +Rodrigo +Andy +Brody +Bryson +Gael +Jimmy +Mauricio +Scott +Angelo +Jalen +Osvaldo +Zackary +Braeden +Brenden +Dustin +Ezekiel +Kai +Randy +Tyson +Wesley +Avery +Casey +Mateo +Moises +Zander +Adan +Alonso +Corbin +Miles +Aden +Allen +Colby +Dawson +Gregory +Leonel +Mathew +Phillip +Rogelio +Brett +Felipe +Kayden +Santos +Trey +Brock +Camden +Dalton +Gilberto +Joaquin +Jonathon +Alfonso +Dallin +Drake +Emiliano +Irvin +Kade +Landen +Leo +Marc +Nikolas +Tristen +Troy +Damion +Keegan +Malachi +Mitchell +Adolfo +Cayden +Damon +Harrison +Jay +Kobe +Peyton +Ronald +Simon +Tomas +Ulises +Albert +Aldo +Alvaro +Arthur +Brennan +Griffin +Issac +Louis +Maximus +Nickolas +Porter +Quinn +Roy +Zachariah +Edgardo +Felix +German +Jessie +Kyler +Lance +Larry +Morgan +Noe +Tommy +Agustin +Chad +Chandler +Darius +Drew +Jaylen +Marshall +Micheal +Oliver +Reese +Rodolfo +Ali +Alonzo +Danny +Easton +Efrain +Izaiah +Jadon +Jerry +Joe +Johnathon +Joseluis +Maximiliano +Noel +Octavio +Orion +Payton +Ramiro +Rylan +Steve +Tate +Tucker +Brendon +Bryant +Cory +Davis +Donald +Eddie +Estevan +Ezequiel +Hudson +Humberto +Ignacio +Jayson +Juancarlos +Kaiden +Lane +Rigoberto +Vicente +Weston +Zachery +Beau +Branden +Bruce +Colten +Dayton +Erubiel +Harley +Isaias +Kenny +Kristopher +Lawrence +Malik +Philip +Ricky +River +Zion +Caiden +Corey +Cruz +Cyrus +Darren +Devyn +Gilbert +Isiah +Jaiden +Junior +Quincy +Rey +Toby +Tony +Wade +Amari +Bennett +Billy +Braxton +Camron +Cristofer +Derrick +Jairo +Jayce +Jaydon +Joey +Jon +Marlon +Phoenix +Reece +Russell +Sage +Shaun +Talon +Tobias +Tyrell +Brent +Conor +Craig +Curtis +Dennis +Deshawn +Ezra +Grayson +Jair +Jeffery +Jude +Julius +Kameron +Keith +Malakai +Marvin +Quinton +Rolando +Skylar +Abram +Alexzander +Ariel +Aron +Brennen +Dallas +Dane +Darian +Declan +Dylon +Efren +Gary +Genaro +Heriberto +Isidro +Jovany +Keaton +Kelvin +Mathias +Nelson +Oswaldo +Quentin +Roger +Rudy +Tristin +Warren +Zakary +Adriano +Alexandro +Alfred +Dario +Dean +Deandre +Desmond +Dorian +Douglas +Elian +Elliot +Everett +Frankie +Franklin +Guadalupe +Irving +Jarrett +Jaxson +Kody +Kristian +Maddox +Mariano +Melvin +Mike +Misael +Reynaldo +Rohan +Romeo +Rowan +Santino +Silas +Stone +Zechariah +Addison +Adrien +Allan +Amir +Ammon +Andreas +Bailey +Bobby +Braydon +Carl +Darrell +Davin +Dillan +Dion +Elisha +Elmer +Freddy +Gannon +Gianni +Gideon +Gunnar +Hyrum +Jamal +Jovani +Kendrick +Kolby +Kolton +Layne +Leon +Maximilian +Mekhi +Miguelangel +Milton +Myles +Nathanael +Nestor +Pete +Pierce +Raymundo +Rex +Reyes +Ryker +Sam +Sterling +Todd +Uriah +Valentin +Walker +Aydan +Blaine +Braedon +Brigham +Charlie +Clinton +Colter +Cristobal +Dan +Demetrius +Dominique +Donavin +Esai +Garret +Giovani +Grady +Gunner +Isaak +Isai +Jaeden +Jagger +Jett +Joan +Johan +Jordon +Julien +Keanu +Keenan +Kieran +Koby +Lukas +Moses +Nico +Obed +Osbaldo +Quintin +Randall +Ray +Reed +Rocco +Sonny +Stuart +Terrell +Theodore +Triston +Walter +Xzavier +Zackery +Adriel +Ahmad +Ahmed +Alden +Amare +Arath +Ari +Arnold +Benito +Bernardo +Blaze +Byron +Carsen +Clark +Claudio +Conrad +Dale +Darrin +Devan +Deven +Dimitri +Duncan +Dwayne +Eleazar +Emmett +Enoch +Everardo +Federico +Francis +Fredy +Giovanny +Glenn +Gordon +Harry +Holden +Isacc +Jahir +Jermaine +Jordyn +Jovan +Jovanny +Kamron +Kane +Karim +Karl +Karson +Karsten +Keven +Lincoln +Marius +Markus +Mohamed +Raphael +Reid +Rhett +Sawyer +Servando +Simeon +Stanley +Stefan +Terrence +Titus +Vance +Yael +Abdiel +Alijah +Alvin +Asa +Asher +Cannon +Case +Cash +Cipriano +Cristopher +Cutter +Dangelo +Denzel +Deon +Dominik +Don +Duane +Eliseo +Ever +Fidel +Flavio +Guy +Howard +Isrrael +Izaac +Jaedon +Jasper +Javon +Jedidiah +Jeronimo +Jhonatan +Jonas +Jonatan +Josef +Josemanuel +Justice +Kadin +Karter +Kelton +Kenyon +Kurt +Leland +Leonard +Luca +Luisangel +Marcel +Marcelino +Marcoantonio +Masen +Maximo +Nathanial +Nehemiah +Neo +Ronnie +Sammy +Tevin +Trever +Yair +Zack +Abner +Aidyn +Amarion +Andon +Arjun +Arnoldo +Augustine +Austyn +Azael +Babyboy +Ben +Benny +Boston +Bradyn +Briant +Broderick +Bruno +Carlo +Ceasar +Chaz +Chris +Coleman +Cordell +Cristo +Dagoberto +Damarion +Darien +Darnell +Darwin +Daylen +Dereck +Donte +Ean +Earl +Eden +Eloy +Emerson +Ernest +Favian +Finn +Franco +Gaige +Garrison +Gerald +Harold +Hernan +Iram +Isael +Izayah +Jacobo +Jan +Jarod +Jarom +Jase +Jaydin +Jericho +Jerome +Jimmie +Joeseph +Justus +Justyn +Keagan +Kole +Kolten +Konner +Konnor +Krystian +Lee +Leobardo +Luciano +Lucio +Marcanthony +Marques +Marquis +Mauro +Mustafa +Myron +Nicholaus +Norberto +Patricio +Paulo +Ralph +Ramsey +Reagan +Reuben +Rhys +Ridge +Rodney +Roland +Ronaldo +Ronan +Rosendo +Ryley +Sabastian +Santana +Shea +Sidney +Sincere +Slade +Stephon +Tre +Trevin +Tristian +Tyrone +Will +Zayne +Jose +Jacob +Anthony +Daniel +Angel +Michael +Jesus +Joshua +David +Joseph +Luis +Ethan +Andrew +Christopher +Matthew +Alexander +Ryan +Jonathan +Tyler +Gabriel +Brandon +Juan +Nicholas +Carlos +Nathan +Christian +James +Isaac +Kevin +Adrian +Dylan +Benjamin +Elijah +Diego +Logan +Samuel +William +Zachary +John +Noah +Robert +Alejandro +Julian +Isaiah +Connor +Francisco +Caleb +Miguel +Brian +Aaron +Aiden +Bryan +Adam +Justin +Aidan +Xavier +Sebastian +Victor +Jordan +Austin +Jason +Luke +Jorge +Nathaniel +Eduardo +Dominic +Mason +Jackson +Alex +Manuel +Thomas +Jack +Alexis +Gavin +Cole +Cameron +Kyle +Eric +Oscar +Antonio +Fernando +Ivan +Hunter +Ian +Alan +Mario +Sergio +Seth +Cesar +Evan +Ricardo +Wyatt +Andres +Javier +Edgar +Hayden +Chase +Richard +Jayden +Joel +Damian +Roberto +Marco +Sean +Charles +Omar +Steven +Jesse +Erick +Hector +Abraham +Cody +Owen +Cristian +Carson +Martin +Jaden +Leonardo +Ashton +Jeremiah +Devin +Caden +Carter +Pedro +Jake +Tanner +Lucas +Ruben +Colin +Edward +Jared +Jeremy +Vincent +Edwin +Julio +Liam +Timothy +Mark +Armando +Cooper +Bryce +Kaden +Erik +Nicolas +Tristan +Blake +Josue +Landon +Preston +Trevor +Derek +Garrett +Gerardo +Rafael +Notnamed +Paul +Brayden +Colton +Israel +Josiah +Marcus +Adan +Riley +Alberto +Kaleb +Elias +Enrique +Jaime +Marcos +Raul +Patrick +Ramon +Conner +Parker +Gage +George +Fabian +Dominick +Arturo +Max +Ayden +Brody +Damien +Roman +Esteban +Giovanni +Johnathan +Maxwell +Raymond +Brayan +Jeffrey +Ty +Axel +Brady +Emilio +Shawn +Travis +Gustavo +Kenneth +Santiago +Spencer +Zane +Emmanuel +Grant +Levi +Collin +Ernesto +Henry +Stephen +Alfredo +Devon +Braden +Dillon +Eli +Gael +Chance +Micah +Saul +Andy +Bradley +Dakota +Jonah +Abel +Johnny +Orlando +Shane +Peter +Ismael +Andre +Brendan +Donovan +Skyler +Taylor +Wesley +Cade +Guillermo +Lorenzo +Nolan +Emiliano +Harrison +Jace +Jakob +Scott +Alec +Clayton +Miles +Pablo +Rene +Aden +Alonso +Gilberto +Joaquin +Kyler +Malachi +Brett +Brock +Cayden +Corbin +Frank +Mauricio +Peyton +Bryson +Issac +Kai +Kaiden +Moises +Randy +Rodolfo +Rogelio +Tyson +Yahir +Trey +Casey +Dante +Emanuel +Gilbert +Gregory +Nickolas +Trenton +Cruz +Dustin +Oliver +Tristen +Avery +Jaxon +Osvaldo +Phillip +Rodrigo +Rylan +Xander +Braeden +Camden +Morgan +Salvador +Tate +Uriel +Vicente +Alfonso +Brennan +Colby +Drake +Efrain +Jairo +Leonel +Nikolas +Felipe +Isaias +Jimmy +Mateo +Zackary +Adolfo +Albert +Jaiden +Kayden +Trent +Troy +Angelo +Brenden +Calvin +Darren +Drew +Ezekiel +Ezequiel +Humberto +Joey +Payton +Santos +Weston +Aldo +Branden +Danny +Darius +Ezra +Hugo +Isiah +Jalen +Lance +Landen +Larry +Lukas +Marc +Ryder +Zander +Asher +Braxton +Chandler +Griffin +Jay +Kade +Keith +Maximus +Octavio +Allen +Alvaro +Arthur +Bryant +Dane +Deven +Easton +Jayson +Johan +Keegan +Lane +Leo +Mathew +Orion +Quentin +Ali +Bruce +Charlie +Corey +Dalton +Derrick +Isai +Maximiliano +Noe +Porter +Sam +Simon +Tony +Brent +Cory +Damon +Davin +Dominik +German +Grayson +Hudson +Jessie +Myles +Ricky +Tommy +Alonzo +Beau +Billy +Gary +Ignacio +Joe +Jonathon +Juancarlos +Justice +Lincoln +Micheal +Misael +Roy +Rudy +Shaun +Theodore +Tomas +Chris +Dallin +Eddie +Felix +Holden +Isidro +Izaiah +Jaylen +Kristopher +Louis +Maddox +Ramiro +Abram +Conor +Damion +Dawson +Donald +Estevan +Jett +Malik +Mitchell +Nelson +Quintin +Quinton +Romeo +Tucker +Ulises +Zachariah +Brennen +Chad +Cyrus +Davis +Dennis +Dorian +Heriberto +Jameson +Jase +Jovan +Junior +Ronald +Sterling +Walter +Yair +Alfred +Alijah +Braedon +Bruno +Curtis +Dallas +Dean +Desmond +Duncan +Ernest +Frankie +Gonzalo +Gunnar +Irvin +Jadon +Jadyn +Jerry +Marvin +Maximilian +Nathanael +Ramses +Rigoberto +Ronnie +Steve +Zackery +Zion +Ariel +Bobby +Clinton +Cristobal +Cristopher +Davion +Declan +Draven +Dylon +Elian +Gunner +Irving +Jaxson +Jerome +Johnathon +Judah +Jude +Karson +Kelvin +Kendrick +Kieran +Kody +Kole +Marshall +Philip +Rolando +Silas +Adriano +Ammon +Boston +Camron +Craig +Dale +Edgardo +Guadalupe +Jair +Jonatan +Jordon +Jovany +Julien +Keaton +Leobardo +Leon +Mekhi +Moses +Noel +Ray +Raymundo +Reese +Talon +Trevon +Valentin +Zachery +Adalberto +Amari +Amir +Armani +Arnold +Augustine +Braulio +Brendon +Cannon +Cohen +Crew +Dillan +Dion +Ethen +Greyson +Harley +Jax +Jon +Jonas +Joseluis +Jovani +Jovanny +Keenan +Kellen +Kolby +Lawrence +Lee +Marcelo +Mariano +Mathias +Maurice +Phoenix +Pierce +Quinn +Reuben +Rey +Rhett +River +Roger +Teagan +Trace +Triston +Wilson +Xzavier +Yael +Zaid +Abdiel +Adriel +Agustin +Alden +Allan +Amare +Aron +Bernardo +Braydon +Brigham +Brodie +Caiden +Cedric +Clay +Darion +Deandre +Douglas +Efren +Eliseo +Elliot +Favian +Gianni +Graham +Jahir +Jarrett +Jayce +Jaydon +Jermaine +Josef +Kadin +Karsten +Keagan +Keanu +Kenny +Kyan +Layne +Loren +Mauro +Maximillian +Oswaldo +Quincy +Reed +Rigo +Ronaldo +Sage +Said +Santino +Sonny +Terrence +Terry +Titus +Toby +Tre +Trystan +Wade +Zakary +Zechariah +Ahmed +Alexandro +Anderson +Andreas +Antony +Asa +Aydan +Azael +Ben +Benito +Bennett +Blaise +Caelan +Cash +Coby +Colten +Dan +Eliud +Elliott +Elvis +Esai +Eugenio +Flavio +Freddy +Frederick +Gaven +Genaro +Geoffrey +Gordon +Grady +Harry +Heath +Jaren +Jeshua +Joan +Jordy +Kameron +Karim +Kasey +Keven +Khalil +Luciano +Malakai +Marlon +Marquis +Maximo +Nathanial +Nehemiah +Nick +Prince +Ralph +Reece +Reyes +Rocco +Ross +Ryker +Ryland +Sawyer +Terrance +Trevin +Tristin +Tylor +Uriah +Valentino +Addison +Adrien +Ahmad +Andon +Arath +Ari +Asael +Babyboy +Bailey +Baylor +Blaze +Bradyn +Carl +Chaz +Claudio +Colter +Conrad +Cristofer +Dalen +Dangelo +Darien +Davian +Daylen +Devante +Devyn +Dhruv +Domingo +Eddy +Erwin +Everett +Fermin +Fidel +Finnegan +Franco +Fred +Fredrick +Fredy +Gannon +Garret +Gerald +Giancarlo +Gibran +Hiram +Isreal +Izaac +Izaak +Jacobo +Jamal +Jamie +Jan +Jasper +Jaziel +Jeffery +Jeramiah +Julius +Justus +Kadyn +Kael +Kale +Kamron +Kane +Karl +Kelly +Kendall +Keon +Kian +Kolton +Kristofer +Lebron +Leonard +Luca +Malcolm +Marcel +Markus +Matias +Matthias +Melvin +Mohamed +Obed +Osiel +Randall +Raphael +Reid +Rex +Rhys +Robin +Rocky +Roderick +Ronin +Rowan +Sabastian +Sheldon +Skylar +Solomon +Tayshaun +Teague +Tristian +Vince +Wayne +Will +Winston +Abelardo +Adonis +Airam +Aleksander +Alessandro +Alexsander +Alvin +Arnulfo +Axl +Aydin +Boden +Branson +Bronson +Brycen +Byron +Camren +Canyon +Carmelo +Cian +Coen +Coy +Daren +Darian +Deegan +Dereck +Deshaun +Destin +Don +Dwight +Eder +Elmer +Emerson +Erubiel +Eugene +Finn +Fox +Franklin +Freddie +Gadiel +Garrison +Gauge +Gian +Gideon +Giovanny +Glenn +Gregorio +Herman +Hyrum +Isaak +Jaeden +Jamari +Jaron +Jasiel +Javon +Jaydin +Jensen +Jhovany +Joseangel +Justyn +Kellan +Kelton +Ken +Kenyon +Keshawn +Killian +Kobe +Korbin +Kory +Kristian +Kurt +Kyron +Lazaro +Leighton +Leopoldo +Lewis +Lex +Mack +Marcelino +Masen +Maxim +Miguelangel +Mike +Mohammad +Nathen +Neil +Neo +Nomar +Osmar +Payson +Quinten +Reynaldo +Rick +Rohan +Rome +Rory +Rueben +Russell +Rylee +Sebastien +Shea +Stephan +Sydney +Tatum +Tobias +Trinidad +Truman +Tyrell +Tyren +Vaughn +Walker +Warren +Westin +Zavier +Angel +Jacob +Jose +Daniel +Michael +Anthony +Jesus +Joshua +David +Gabriel +Joseph +Andrew +Luis +Alexander +Ethan +Christopher +Matthew +Tyler +Juan +Jonathan +Christian +Adrian +Carlos +Ryan +Brandon +Samuel +Kevin +Diego +Noah +Nicholas +Isaac +Logan +James +Nathan +Dylan +Isaiah +Zachary +Aiden +William +Elijah +Benjamin +John +Julian +Francisco +Bryan +Aidan +Miguel +Aaron +Sebastian +Robert +Caleb +Brian +Gavin +Alejandro +Jordan +Jorge +Jack +Luke +Mason +Thomas +Austin +Connor +Dominic +Alex +Xavier +Justin +Nathaniel +Manuel +Eduardo +Evan +Eric +Adam +Jackson +Victor +Ian +Jason +Oscar +Hunter +Jayden +Carter +Hector +Cesar +Charles +Damian +Sergio +Hayden +Andres +Alan +Antonio +Jesse +Ricardo +Joel +Ivan +Javier +Lucas +Seth +Alexis +Edgar +Landon +Fernando +Cameron +Jeremiah +Wyatt +Cody +Kaden +Kyle +Caden +Cole +Sean +Richard +Mario +Omar +Owen +Tanner +Steven +Erick +Abraham +Blake +Devin +Chase +Julio +Leonardo +Mark +Carson +Giovanni +Jake +Trevor +Josiah +Brayden +Nicolas +Colin +Cristian +Jared +Liam +Marco +Martin +Notnamed +Emmanuel +Marcus +Josue +Roman +Timothy +Vincent +Marcos +Gerardo +Brody +Elias +Damien +Gael +Jaden +Rafael +Riley +Ashton +Conner +Enrique +Fabian +Adan +Gage +Preston +Roberto +Tristan +Armando +Ruben +Arturo +Ayden +Edwin +Paul +Alberto +Parker +Cooper +Jeremy +Kenneth +Kaleb +Pablo +Santiago +Derek +Pedro +Edward +Esteban +Raul +Bryce +Erik +Jaime +Dominick +Emilio +Max +Patrick +George +Raymond +Saul +Angelo +Brayan +Henry +Ramon +Maxwell +Colton +Ernesto +Spencer +Braden +Eli +Donovan +Bradley +Grant +Kai +Shawn +Axel +Israel +Johnathan +Collin +Garrett +Jonah +Levi +Micah +Frank +Lorenzo +Peter +Brady +Jace +Troy +Ty +Nolan +Stephen +Abel +Andy +Gustavo +Johnny +Malachi +Uriel +Brendan +Emiliano +Jeffrey +Andre +Dillon +Shane +Ismael +Joaquin +Mauricio +Travis +Bryson +Devon +Trenton +Ezekiel +Kyler +Peyton +Zane +Aden +Alfredo +Jaxon +Mateo +Salvador +Skyler +Dante +Drake +Orlando +Dakota +Guillermo +Miles +Rodrigo +Chance +Nickolas +Alec +Brock +Camden +Harrison +Kaiden +Maximus +Noe +Rene +Calvin +Cayden +Jakob +Landen +Rogelio +Scott +Xander +Braeden +Brenden +Gilberto +Gregory +Jaiden +Kayden +Maddox +Marc +Wesley +Yahir +Alonso +Asher +Danny +Randy +Taylor +Ali +Alvaro +Brett +Dustin +Emanuel +Izaiah +Jimmy +Keegan +Oliver +Rylan +Chad +Cruz +Drew +Eddie +Gilbert +Griffin +Issac +Lance +Chris +Colby +Corbin +Hugo +Ignacio +Caiden +Casey +Leonel +Maximiliano +Mitchell +Rudy +Tristen +Albert +Alfonso +Cade +Clayton +Damon +Ezequiel +Holden +Jaylen +Moises +Osvaldo +Phillip +Simon +Dallas +Louis +Lukas +Ryder +Steve +Ulises +Zion +Avery +Estevan +Hudson +Isiah +Leo +Misael +Nikolas +Payton +Quinn +Ricky +Rodolfo +Trent +Vicente +Zachery +Beau +Bernardo +Braydon +Dalton +Davis +Easton +Efrain +Gary +Irvin +Isaias +Jerry +Keith +Mathew +Rigoberto +Trey +Charlie +Curtis +Darius +Felipe +Morgan +Quentin +Tucker +Tyson +Weston +Alexzander +Allen +Cohen +Derrick +Felix +Humberto +Julius +Kade +Kameron +Lane +Alonzo +Brennan +Dawson +Douglas +German +Grayson +Jair +Jett +Joe +Jude +Porter +Zander +Adolfo +Aldo +Amare +Ariel +Cash +Cory +Dallin +Darren +Efren +Jalen +Jay +Jessie +Johan +Jonas +Malik +Phoenix +Russell +Sam +Santos +Tate +Abram +Brigham +Bryant +Colten +Cristopher +Davin +Dominik +Donald +Elian +Frankie +Jayce +Jayson +Kenny +Lincoln +Orion +Sawyer +Shaun +Tobias +Arthur +Ever +Ezra +Gonzalo +Jon +Nestor +Noel +Pierce +Silas +Talan +Tony +Zachariah +Zackary +Arath +Brent +Corey +Cyrus +Dean +Dennis +Elliot +Gunner +Justice +Marlon +Marvin +Moses +Nathanael +Octavio +Quincy +Rey +Reyes +Romeo +Ronald +Tommy +Agustin +Allan +Ben +Branden +Braulio +Bruno +Cristobal +Damion +Dane +Dominique +Hyrum +Jonathon +Joseluis +Junior +Keaton +Keven +Luca +Maximilian +Myles +Ramses +Raymundo +Reed +Rolando +Ryland +Sonny +Sterling +Theodore +Tyrell +Walter +Adrien +Alexandro +Aron +Aydan +Bennett +Braxton +Chandler +Dayton +Declan +Dorian +Everett +Freddy +Gunnar +Heriberto +Jahir +Jairo +Jameson +Jeffery +Kelvin +Kristian +Kyan +Mariano +Oswaldo +Randall +River +Solomon +Talon +Titus +Tomas +Triston +Tylor +Alfred +Boston +Braedon +Braylon +Brennen +Carl +Conor +Dangelo +Dario +Davian +Devan +Devyn +Edgardo +Eliseo +Giovani +Isidro +Jamie +Jaydon +Joey +Jovany +Juanpablo +Keanu +Kristopher +Larry +Leon +Malaki +Mekhi +Micheal +Mohamed +Nehemiah +Philip +Quinton +Ramiro +Reece +Reese +Rohan +Sheldon +Skylar +Todd +Zackery +Adin +Ahmed +Alvin +Augustine +Benny +Brycen +Craig +Darrell +Deven +Emerson +Esai +Gianni +Harry +Hiram +Jasper +Jax +Jaxson +Jovanni +Judah +Kellen +Kody +Kole +Lewis +Lucian +Marcelo +Maurice +Nico +Osmar +Paulo +Payson +Quintin +Ronan +Ryker +Tyrone +Walker +Alessandro +Amari +Bailey +Billy +Blaine +Braiden +Brodie +Bruce +Carlo +Clay +Colter +Cristofer +Deandre +Demetrius +Dilan +Eden +Franklin +Gauge +Genaro +Gregorio +Greyson +Irving +Isac +Izaac +Jadon +Jamison +Jan +Jaren +Javon +Jaydin +Jefferson +Jeshua +Josh +Jovanny +Kenyon +Kian +Leland +Makai +Marcelino +Markus +Marshall +Nathanial +Nikolai +Obed +Quinten +Reid +Rocco +Ronnie +Roy +Ryley +Toby +Trace +Tristin +Valentin +Vaughn +Vernon +Vladimir +Abelardo +Aditya +Adriano +Amir +Aric +Arnold +Austyn +Barrett +Benicio +Bobby +Brendon +Broderick +Byron +Cannon +Crew +Dan +Daxton +Dimitri +Draven +Dyllan +Ernest +Everardo +Fidel +Finn +Fredy +Garret +Geoffrey +Gerald +Gerson +Giovanny +Heath +Heber +Isacc +Jarom +Johnpaul +Josef +Jovani +Juancarlos +Karl +Karson +Keenan +Kendall +Kobe +Koen +Lawrence +Lazaro +Luka +Malakai +Maverick +Maximo +Melvin +Nelson +Nick +Norman +Ralph +Rex +Reyli +Roger +Ronaldo +Rowan +Santino +Shea +Stone +Taj +Terrance +Trevin +Tristian +Warren +Will +Wilson +Zakary +Achilles +Aedan +Asa +Bradon +Brando +Camron +Case +Ceasar +Cedric +Clark +Coen +Coleman +Cosme +Darrius +Deegan +Dereck +Derick +Desmond +Duncan +Dwayne +Dylon +Elliott +Elmer +Elvis +Enzo +Erasmo +Ethen +Finnegan +Gideon +Graham +Harley +Horacio +Isael +Isai +Jaeden +Jamari +Jarod +Jaron +Jaylin +Joan +Jonatan +Jorden +Justus +Kadin +Kale +Kamren +Kamron +Kane +Kannon +Karim +Kasey +Keagan +Kelton +Killian +Landin +Landyn +Layton +Leroy +Luisangel +Matix +Mikel +Milo +Nikolaus +Osbaldo +Patricio +Prince +Raiden +Raphael +Rhett +Rigo +Rowen +Sabastian +Shannon +Sidney +Slade +Stanley +Tadeo +Tavin +Terrell +Terry +Truman +Ulysses +Van +Wade +Waylon +Yael +Yovani +Zack +Abran +Adriel +Alain +Alijah +Amarion +Anderson +Andreas +Anton +Armani +Atticus +August +Austen +Benito +Bo +Boden +Brad +Brant +Bronson +Bryon +Camren +Canyon +Christofer +Clarence +Coby +Colt +Cy +Dale +Dameon +Darien +Daylen +Denzel +Deshawn +Ean +Eddy +Eder +Enoch +Flavio +Francis +Freddie +Frederick +Gannon +Garrison +Gaven +Gavyn +Gino +Guadalupe +Ibrahim +Isaak +Izak +Jadyn +Jaedon +Jamal +Jase +Jaykob +Jeramiah +Jermaine +Jhovany +Joesph +Johnathon +Jordyn +Joseangel +Julien +Kael +Kain +Keon +Khalil +Kolton +Konnor +Korey +Lars +Leonard +Loren +Luciano +Lucio +Malcolm +Marcel +Miguelangel +Nathen +Nevin +Nomar +Odin +Ramsey +Raven +Ray +Rayden +Reilly +Remington +Rocky +Roland +Rosendo +Rylee +Sage +Tayton +Thaddeus +Tom +Trever +Tyree +Ubaldo +Ulices +Valentino +Vance +Wayne +Xzavier +Zaid +Zavier +Zechariah +Angel +Daniel +Jacob +Anthony +Jose +Jesus +Michael +Joshua +Luis +Gabriel +David +Christopher +Alexander +Andrew +Ethan +Matthew +Jonathan +Joseph +Christian +Juan +Diego +Nathan +Noah +Adrian +Carlos +Logan +Aiden +Kevin +Ryan +Tyler +Dylan +Isaac +Nicholas +Brandon +Samuel +Isaiah +James +Julian +Elijah +William +Zachary +Sebastian +Xavier +Benjamin +John +Robert +Jack +Alejandro +Caleb +Gavin +Luke +Aaron +Aidan +Connor +Francisco +Jordan +Dominic +Miguel +Jackson +Austin +Adam +Bryan +Justin +Nathaniel +Manuel +Victor +Jayden +Brian +Thomas +Eduardo +Jorge +Landon +Mason +Fernando +Damian +Jason +Oscar +Evan +Cesar +Hayden +Jesse +Tristan +Alex +Andres +Hector +Wyatt +Antonio +Ivan +Hunter +Ian +Ricardo +Alexis +Sean +Lucas +Alan +Owen +Kyle +Omar +Steven +Cameron +Carter +Javier +Eric +Edgar +Jaden +Ruben +Cole +Mario +Chase +Joel +Sergio +Brayden +Abraham +Charles +Liam +Vincent +Cody +Jake +Cristian +Jeremiah +Kaden +Leonardo +Richard +Martin +Brody +Seth +Kaleb +Caden +Marco +Tanner +Timothy +Edwin +Carson +Devin +Roberto +Santiago +Jared +Marcus +Brayan +Josiah +Ayden +Bryce +Israel +Riley +Gage +Roman +Josue +Parker +Blake +Trevor +Erick +Giovanni +Pedro +Preston +Elias +Marcos +Ashton +Damien +Julio +Notnamed +Paul +Ramon +Nicolas +Mark +Rafael +Henry +Fabian +Armando +Raul +Edward +Cooper +Brady +Esteban +Johnathan +Erik +Gael +Patrick +Adan +Colin +Colton +Conner +Derek +Jace +Jeremy +Levi +Travis +Shane +Emiliano +Garrett +Raymond +Alberto +Gerardo +Max +Arturo +Emanuel +Ernesto +Braden +Kenneth +Micah +Emmanuel +Ezekiel +Abel +Axel +Dominick +Donovan +Ismael +Johnny +Shawn +Grant +Jaime +Kai +Zane +Enrique +George +Stephen +Eli +Joaquin +Jonah +Lorenzo +Frank +Landen +Pablo +Devon +Emilio +Spencer +Gustavo +Dillon +Peter +Saul +Aden +Andre +Maxwell +Ryder +Troy +Uriel +Alfredo +Angelo +Jaxon +Kaiden +Miles +Oliver +Keegan +Nolan +Orlando +Guillermo +Wesley +Xander +Avery +Hudson +Andy +Jakob +Maddox +Mateo +Brendan +Rylan +Taylor +Bradley +Malachi +Salvador +Cayden +Dustin +Trenton +Ty +Bryson +Dane +Grayson +Kayden +Peyton +Talan +Tyson +Yahir +Asher +Leo +Moises +Skyler +Collin +Dakota +Dante +Lincoln +Rene +Drew +Porter +Calvin +Issac +Zander +Brock +Cade +Corey +Danny +Estevan +Hugo +Mauricio +Rodrigo +Scott +Alonso +Camden +Chance +Joe +Misael +Rodolfo +Albert +Alvaro +Felipe +Gregory +Jaiden +Jalen +Jeffrey +Leonel +Maximiliano +Nickolas +Simon +Tate +Trent +Trey +Vicente +Alfonso +Darius +Drake +Ezequiel +Ezra +Harrison +Julius +Lance +Morgan +Tristen +Cohen +Eddie +Felix +Maximus +Octavio +Phoenix +Randy +Santos +Talon +Braeden +Kade +Kyler +Nikolas +Tomas +Ulises +Aldo +Alec +Ali +Brett +Casey +Clayton +Cruz +Gilbert +Marc +Shaun +Weston +Allen +Cash +Isai +Isaias +Jayson +Lukas +Mathew +Micheal +Moses +Phillip +Ronald +Rudy +Sawyer +Tony +Bennett +Brenden +Caiden +Dennis +Elliot +Gilberto +Isiah +Izaiah +Jairo +Jett +Johan +Noe +Orion +Oswaldo +Rigoberto +Romeo +Adrien +Agustin +Brennan +Brent +Chris +Easton +Griffin +Ignacio +Irvin +Jay +Jonas +Leland +Luca +Mitchell +Noel +Ricky +Silas +Zachariah +Zackary +Anderson +Colby +Cristopher +Curtis +Dallas +Elliott +Humberto +Jaydon +Joey +Jude +Lane +Quentin +Rowan +Russell +Adolfo +Braxton +Corbin +Cory +Dawson +Donald +Gunnar +Jadon +Jimmy +Kameron +Larry +Payton +Ramiro +Rogelio +Roy +Skylar +Tommy +Alexandro +Amare +Brodie +Jameson +Jaylen +Jonathon +Keaton +Nehemiah +Pierce +Walter +Alonzo +Ariel +Arthur +Bryant +Charlie +Conor +Dalton +Damon +Dean +Derrick +Dorian +Jaxson +Lawrence +Marvin +Quinn +Ryland +Solomon +Steve +Theodore +Valentin +Abram +Bernardo +Branden +Chandler +Cristobal +Dallin +Declan +Douglas +Efrain +Freddy +Gary +Gunner +Julien +Kian +Lee +Marlon +Maurice +Osvaldo +Rolando +Warren +Zachery +Adriel +Allan +Ari +Boston +Braulio +Colten +Cyrus +Darren +Davian +Derick +Dominik +Gianni +Giovani +Holden +Jessie +Kellen +Leon +Marcelino +Nelson +Obed +Philip +Reece +Rhett +Sonny +Tucker +Tyrell +Yandel +Zion +Arjun +Beau +Craig +Draven +Gauge +Gideon +Jayce +Jerry +Jovanny +Justice +Keith +Kody +Maximilian +Nash +Nathanael +Reid +Rex +Alessandro +Alexzander +Amir +Augustine +Aydan +Braydon +Bruce +Bruno +Brycen +Davis +Elian +Finn +Guadalupe +Harley +Malakai +Malaki +Marcelo +Marshall +Myles +Nathanial +Quintin +Ray +Rey +Reynaldo +River +Ryker +Waylon +Addison +Armani +Carl +Chad +Dario +Deven +Eden +Gannon +Grady +Jair +Jeffery +Jerome +Jorden +Jordon +Jovani +Juancarlos +Kristian +Leobardo +Louis +Luciano +Mariano +Marques +Maverick +Melvin +Miguelangel +Milo +Nathen +Quinton +Ramses +Reese +Roger +Ronaldo +Triston +Van +Xzavier +Yair +Alvin +Amari +Ammon +Aydin +Barrett +Cale +Camron +Carlo +Crew +Cristofer +Damion +Darian +Darnell +Darrell +Deacon +Desmond +Dilan +Edgardo +German +Giovanny +Ibrahim +Isacc +Isidro +Jaciel +Jan +Jase +Jax +Joan +Jon +Jonatan +Jovanni +Jovany +Keanu +Kendrick +Keven +Kieran +Kole +Kristopher +Leonard +Madden +Milton +Randall +Reed +Santino +Tobias +Toby +Tristin +Uriah +Vance +Walker +Abdiel +Adyn +Alden +Alek +Antoine +Anton +Bailey +Benito +Bentley +Billy +Blaine +Braiden +Clinton +Davin +Deshawn +Dominique +Eliseo +Elisha +Fidel +Gerald +Greyson +Heriberto +Hiram +Izayah +Jagger +Jarrett +Jaziel +Jhonatan +Johnathon +Junior +Kael +Karson +Keagan +Kenny +Kingston +Kolby +Malik +Matias +Nestor +Osmar +Rocky +Sheldon +Stone +Wade +Wilson +Zavier +Abner +Ahmed +Alfred +Arath +Arian +Aryan +Atticus +Ben +Blaze +Bobby +Braedon +Clark +Coby +Dangelo +Dayton +Deandre +Demetri +Denzel +Devan +Devyn +Ean +Eddy +Eleazar +Emerson +Erubiel +Francis +Frederick +Gonzalo +Imanol +Irving +Isac +Izaac +Jaycob +Joseluis +Josh +Juanpablo +Kadin +Karsten +Kasey +Kash +Keenan +Kenji +Kenyon +Kolton +Leandro +Lewis +Luka +Mauro +Mike +Mohammad +Neil +Nico +Nigel +Norberto +Osman +Paxton +Presley +Raiden +Ralph +Raymundo +Reuben +Ronan +Ronnie +Rylee +Sage +Slade +Teagan +Terrance +Torin +Trystan +Ulysses +Valentino +Vaughn +Yael +Zackery +Adin +Ahmad +Alexys +Antony +Aric +Aron +Athan +Azael +Baltazar +Bradyn +Bronson +Brooks +Cannon +Cassius +Chaz +Clint +Coen +Davon +Deion +Demetrius +Deshaun +Dillan +Duane +Duncan +Dylon +Efren +Eliel +Ernest +Eros +Esau +Ethen +Fausto +Favian +Frankie +Franklin +Fredy +Garret +Gavyn +Gian +Giancarlo +Gregorio +Hassan +Howard +Hyrum +Isael +Jamie +Jamison +Jancarlo +Jareth +Jensen +Jordy +Jovan +Kane +Karl +Killian +Kobe +Koen +Kolten +Konnor +Landan +Landyn +Layne +Louie +Lucian +Malcolm +Mathias +Matthias +Mohamed +Mohammed +Nikolai +Payson +Pete +Raven +Remington +Rocco +Ronin +Royce +Sam +Santana +Stephan +Tadeo +Talen +Terry +Vladimir +Xavior +Zack +Zakary +Abran +Ace +Adalberto +Adonis +Adriano +Aeden +Aidyn +Amon +Andrei +Arnoldo +August +Aundre +Aurelio +Aven +Azriel +Branson +Brendon +Brigham +Broderick +Bryton +Cain +Cal +Camrin +Carmelo +Case +Cason +Cedric +Christofer +Coleman +Colt +Conrad +Corban +Dagoberto +Darion +Darrin +Dashawn +Davion +Dax +Deegan +Demian +Dewayne +Dezmond +Dimitri +Domenic +Domingo +Elmer +Erwin +Ethyn +Eugene +Everardo +Everett +Eythan +Fermin +Finley +Flavio +Gadiel +Gavan +Geovanni +Gibran +Gibson +Glenn +Hamza +Haydon +Heath +Herman +Hernan +Hezekiah +Houston +Ira +Isreal +Jacobo +Jadyn +Jaeden +Jael +Jahir +Jaidon +Jaylon +Jeshua +Johann +Jordyn +Josemanuel +Judas +Justus +Kale +Kanyon +Kasen +Konner +Korbin +Kyan +Kylan +Latrell +Leroy +Lino +London +Maddux +Markus +Matteo +Maximo +Mckay +Mekhi +Memphis +Messiah +Mikael +Monte +Nahum +Nick +Nicklas +Nomar +Omari +Osbaldo +Otis +Paulo +Quincy +Quinlan +Raphael +Reagan +Reyes +Rhys +Ridge +Rigo +Rowdy +Ryu +Said +Shayne +Simeon +Soren +Stefan +Tatum +Tavin +Terrell +Terrence +Tevin +Tillman +Titus +Trenten +Uziel +Vince +Vincenzo +Wayne +Will +Zain +Zayden +Zeke +Angel +Jose +Daniel +Anthony +Jacob +David +Luis +Ethan +Jesus +Michael +Christopher +Joshua +Alexander +Andrew +Gabriel +Joseph +Jonathan +Noah +Christian +Matthew +Logan +Isaac +Diego +Adrian +Brandon +Nathan +Carlos +Juan +Ryan +Aiden +Isaiah +Kevin +Nicholas +Tyler +Julian +Dylan +Samuel +William +Jayden +James +Benjamin +Elijah +Aaron +John +Jackson +Sebastian +Miguel +Xavier +Zachary +Gavin +Robert +Alejandro +Jack +Connor +Mason +Caleb +Jordan +Jorge +Francisco +Victor +Evan +Dominic +Luke +Adam +Bryan +Manuel +Oscar +Justin +Fernando +Nathaniel +Antonio +Jason +Landon +Austin +Thomas +Aidan +Alex +Damian +Andres +Tristan +Ricardo +Sergio +Eric +Alan +Owen +Eduardo +Hector +Wyatt +Cameron +Ian +Cesar +Jesse +Brian +Hunter +Lucas +Hayden +Brayden +Brody +Cristian +Sean +Cole +Mario +Omar +Chase +Erick +Ivan +Richard +Carter +Caden +Jaden +Javier +Joel +Josiah +Leonardo +Santiago +Abraham +Jeremiah +Blake +Charles +Fabian +Kyle +Steven +Ayden +Edgar +Alexis +Marcus +Vincent +Devin +Kaden +Elias +Liam +Josue +Emmanuel +Preston +Ruben +Giovanni +Parker +Brady +Israel +Marco +Gael +Gage +Jake +Martin +Edwin +Colton +Seth +Timothy +Colin +Micah +Nicolas +Cooper +Derek +Mark +Brayan +Roberto +Carson +Julio +Tanner +Jared +Kaleb +Roman +Bryce +Henry +Raul +Cody +Armando +Emilio +Gerardo +Damien +Trevor +Andre +Max +Pedro +Riley +Joaquin +Paul +Marcos +Patrick +Edward +Eli +Kenneth +Jaxon +Axel +Rafael +Ashton +Erik +Jeremy +Ramon +Oliver +Pablo +Adan +Alberto +Enrique +Emiliano +Rodrigo +Zane +George +Ryder +Raymond +Arturo +Ezekiel +Johnny +Levi +Gustavo +Kayden +Shawn +Esteban +Braden +Jaime +Orlando +Abel +Johnathan +Mateo +Shane +Jace +Wesley +Emanuel +Notnamed +Peter +Saul +Cash +Dillon +Donovan +Ernesto +Hudson +Ismael +Lincoln +Peyton +Stephen +Collin +Dante +Devon +Jaiden +Jonah +Keegan +Tyson +Xander +Alfredo +Conner +Kai +Travis +Angelo +Asher +Bradley +Cayden +Grant +Malachi +Nolan +Moises +Troy +Avery +Cade +Dominick +Garrett +Kaiden +Aden +Andy +Brock +Calvin +Drew +Landen +Skyler +Albert +Kyler +Lorenzo +Maxwell +Rogelio +Cruz +Miles +Aldo +Chance +Drake +Mauricio +Bryson +Rene +Uriel +Rylan +Trent +Zander +Braxton +Dakota +Guillermo +Hugo +Jeffrey +Lukas +Maddox +Trey +Ty +Corbin +Frank +Grayson +Jaxson +Spencer +Dane +Ezequiel +Kade +Vicente +Issac +Alvaro +Ezra +Gregory +Junior +Trenton +Camden +Casey +Darius +Izaiah +Jakob +Jonas +Maximus +Osvaldo +Phoenix +Sawyer +Tate +Ulises +Brenden +Bryant +Dallas +Maximiliano +Porter +Scott +Alonso +Elliot +Isaias +Noe +Yahir +Ali +Cristopher +Felix +Gilbert +Jalen +Kingston +Leo +Quinn +Randy +Allen +Chris +Easton +Jayson +Julius +Leland +Misael +Salvador +Simon +Taylor +Tristen +Valentin +Beau +Brett +Bruce +Corey +Danny +Grady +Jerry +Jude +Rodolfo +Roy +Talon +Abram +Arthur +Braeden +Caiden +Clayton +Conor +Damion +Dustin +German +Gilberto +Humberto +Larry +Leonel +Phillip +Quentin +Rowan +Alec +Alonzo +Brendan +Everett +Giovani +Griffin +Harrison +Kristopher +Mathew +Nehemiah +Payton +Zackary +Alfonso +Amare +Colten +Darian +Dawson +Dean +Draven +Efrain +Isai +Jameson +Jaydon +Joe +Myles +Nash +Nikolas +Ryland +Tony +Walter +Weston +Braydon +Brennan +Cohen +Dominik +Efren +Jadon +Jayce +Kane +Killian +Marc +Micheal +Moses +Nathanael +Noel +Ramiro +Rey +Tucker +Zachariah +Amari +Charlie +Derrick +Eddie +Estevan +Frankie +Irvin +Jaeden +Jimmy +Keith +Morgan +Reed +Shaun +Yael +Zion +Agustin +Alexzander +Amir +Ariel +Branden +Brodie +Cannon +Chandler +Felipe +Ignacio +Jay +Jessie +Jett +Kameron +Malik +Nickolas +Octavio +Philip +Ramses +Romeo +Silas +Theodore +Titus +Adolfo +Billy +Braiden +Byron +Crew +Dallin +Damon +Dario +Davian +Davis +Declan +Dennis +Devan +Donald +Elian +Elliott +Freddy +Gary +Kobe +Leandro +Malakai +Orion +Raymundo +Ricky +Santos +Talan +Adriel +Allan +Brendon +Colby +Darren +Greyson +Jair +Jase +Joey +Juancarlos +Judah +Justice +Lance +Luca +Rigoberto +Rocco +Roger +Russell +Sam +Warren +Ari +Douglas +Finn +Giancarlo +Irving +Isidro +Jairo +Jamison +Johnathon +Jonathon +Kellen +Kody +Lane +Lawrence +Leon +Madden +Markus +Oswaldo +Ray +Reese +Ryker +Steve +Wade +Ahmed +Ammon +Arjun +Armani +Aryan +Bennett +Boston +Carlo +Cory +Dalton +Eliseo +Gideon +Gunnar +Ibrahim +Jeffery +Jerome +Johan +Josh +Julien +Keagan +Kellan +Matteo +Maverick +Osmar +Quinton +Reyes +Rudy +Terry +Tobias +Yurem +Zayden +Abdiel +Adrien +Alvin +Anderson +Aron +Aydan +Benicio +Bernardo +Bobby +Braulio +Cian +Deandre +Deegan +Dorian +Eder +Eugene +Isiah +Jasper +Jaylen +Joseluis +Jovan +Kasen +Keenan +Korbin +Kristian +Marshall +Maximo +Mitchell +Mohamed +Quintin +Reynaldo +Ronald +Ronan +Sonny +Tommy +Tristin +Vince +Yair +Yandel +Zackery +Alek +Barrett +Ben +Brent +Chad +Clark +Colter +Curtis +Cyrus +Davin +Dax +Deshawn +Deven +Erwin +Finley +Gerald +Gianni +Gunner +Harley +Hiram +Holden +Isaak +Izayah +Jaron +Jeshua +Josef +Jovanni +Kadin +Karim +Karson +Kegan +Kelvin +Kevyn +Lee +Louis +Marcelo +Marques +Marvin +Miller +Pierce +Quincy +Quinten +Raiden +Reece +Sage +Santino +Skylar +Soren +Stephan +Toby +Tomas +Uriah +Walker +Adalberto +Alden +Alessandro +Bailey +Benito +Blaze +Colt +Cristofer +Dan +Darien +Davion +Demian +Devyn +Elvis +Emerson +Emmett +Esai +Fidel +Gauge +Gaven +Gavyn +Heriberto +Joan +Jovani +Keaton +Keven +Kolton +Konner +Layton +Lucian +Maurice +Melvin +Nelson +Nery +Nestor +Nick +Nixon +Osman +Ralph +Rhett +Rodney +Rolando +Ronaldo +Solomon +Stanley +Teagan +Ulysses +Zachery +Zaid +Zakary +Zayne +Addison +Adonis +Alexandro +Austen +Beckett +Blaine +Bo +Braylon +Brigham +Bruno +Brycen +Carl +Chaz +Conrad +Cristobal +Dangelo +Deangelo +Diesel +Dilan +Domanic +Duncan +Eddy +Elmer +Emir +Ethen +Favian +Fermin +Frederick +Gadiel +Gaige +Graham +Horacio +Hyrum +Izaak +Jan +Jax +Jaylin +Jedidiah +Jordy +Jovany +Kasey +Kendrick +Kenny +Koen +Lennon +Lucius +Marius +Marlon +Maximilian +Mayson +Mekhi +Miguelangel +Mike +Nico +Obed +Patricio +River +Rory +Rowen +Royce +Slade +Sterling +Terrance +Theo +Trace +Tre +Trevon +Tyree +Tyrell +Van +Abelardo +Adriano +Aidyn +Alfred +Alijah +Antony +Arian +Asa +Asiel +Barry +Benny +Bradyn +Braedon +Brice +Cale +Carmelo +Casen +Christofer +Constantine +Cornelius +Dameon +Deacon +Derick +Domenic +Eden +Elisha +Enzo +Ernest +Fabricio +Fausto +Finnegan +Franco +Fredrick +Garret +Genaro +Geoffrey +Geovanny +Gonzalo +Gregorio +Hassan +Heath +Heber +Izak +Jael +Jagger +Jamari +Jaren +Jaycob +Jaylon +Jaziel +Jet +Jon +Jonatan +Jordin +Jordon +Juanpablo +Kaeden +Kalani +Kale +Kason +Kelton +Kieran +Konnor +Landyn +Layne +Leonidas +Maddux +Malaki +Marcelino +Mathias +Mohammed +Myron +Nathanial +Nikolai +Nomar +Odin +Paulo +Payson +Rex +Roland +Ronin +Rosario +Said +Santana +Shay +Stephon +Stetson +Taj +Terrence +Trevin +Tristian +Ubaldo +Waylon +Xzavier +Yeshua +Zack +Zeus +Aaden +Adin +Adyn +Aeden +Alain +Alton +Anakin +Anders +Andreas +Andrei +Andrik +Arman +Arnold +Arnoldo +Athan +Atticus +August +Augustine +Aydin +Aziel +Bode +Bodhi +Brennen +Bret +Brighton +Britton +Brodee +Broden +Bronson +Caesar +Cain +Callum +Camilo +Camron +Case +Craig +Darnell +Darrius +Darwin +Denzel +Desmond +Devlin +Dillan +Dominique +Domonic +Donavan +Earl +Edgardo +Ely +Emery +Ephraim +Esau +Everardo +Federico +Forrest +Francesco +Franklin +Gannon +Geovanni +Gian +Giovanny +Grey +Guadalupe +Hank +Harry +Hernan +Hezekiah +Isael +Izaac +Jadyn +Jaidon +Jaidyn +Jakub +Jasiah +Javen +Javon +Jaydin +Jean +Jeancarlo +Jericho +Jermaine +Jessy +Jiovanni +Jorden +Jullian +Kael +Kalvin +Kendall +Kohen +Kristofer +Lawson +Leobardo +Leroy +Lewis +Luciano +Luisangel +Marek +Marquez +Marquis +Matthias +Maximino +Maxx +Memphis +Merrick +Michaelangelo +Mickey +Mikah +Milo +Nasir +Nathen +Ocean +Otto +Paxton +Raphael +Rian +Rickey +Rico +Rueben +Rylen +Sabastian +Sammy +Samson +Servando +Sheldon +Stone +Sullivan +Tahj +Tatum +Thaddeus +Tristyn +Trystan +Tyrese +Tyrone +Valentino +Vance +Vaughn +Vernon +Vincente +Vito +Yovani +Anthony +Daniel +Angel +Alexander +Jacob +Michael +Ethan +Jose +Joshua +Jesus +David +Joseph +Christopher +Gabriel +Andrew +Aiden +Adrian +Luis +Matthew +Noah +Jonathan +Jayden +Nathan +Christian +Carlos +Ryan +Isaac +Brandon +Samuel +Diego +Logan +Isaiah +Julian +Benjamin +Dylan +William +Juan +Elijah +James +Gavin +Kevin +John +Nicholas +Tyler +Miguel +Jackson +Xavier +Mason +Alejandro +Jack +Brody +Aaron +Sebastian +Robert +Connor +Caleb +Zachary +Jordan +Evan +Landon +Luke +Justin +Bryan +Austin +Dominic +Jorge +Tristan +Victor +Wyatt +Adam +Francisco +Brian +Aidan +Nathaniel +Chase +Oscar +Hunter +Manuel +Eduardo +Jason +Antonio +Damian +Ricardo +Lucas +Alex +Thomas +Cesar +Brayden +Ian +Carter +Fernando +Cameron +Ayden +Ivan +Andres +Santiago +Jesse +Owen +Erick +Javier +Alan +Joel +Charles +Eric +Liam +Sean +Cole +Hayden +Hector +Blake +Jaden +Sergio +Giovanni +Josiah +Colton +Jeremiah +Richard +Abraham +Roman +Henry +Edgar +Riley +Damien +Vincent +Mario +Devin +Omar +Carson +Kyle +Caden +Jake +Cristian +Emmanuel +Leonardo +Kaden +Steven +Josue +Elias +Kaleb +Seth +Cody +Marcus +Eli +Ashton +Mark +Israel +Max +Micah +Paul +Parker +Alexis +Derek +Levi +Preston +Jared +Martin +Roberto +Adan +Rafael +Ruben +Brady +Bryce +Grant +Raymond +Emiliano +Gage +Oliver +Ryder +Cooper +Fabian +Jonah +Armando +Axel +Jeremy +Timothy +Marcos +Tanner +Edwin +Gerardo +Miles +Jaxon +Patrick +Colin +Nicolas +Zane +Cash +Pedro +Ramon +Edward +Jace +Johnny +Marco +Nolan +Braden +Ezekiel +Julio +Peyton +Lincoln +Raul +Shane +Trevor +Emilio +Garrett +Hudson +Jaime +Joaquin +Alberto +Erik +Maximus +Saul +Conner +Enrique +Gael +Gustavo +Maxwell +Asher +Keegan +Pablo +Stephen +Andre +Arturo +Brayan +Collin +Dominick +Kaiden +Travis +Cruz +Ismael +Jude +Kenneth +Angelo +Cayden +Jaiden +Mateo +Orlando +Andy +Esteban +George +Kayden +Rylan +Abel +Johnathan +Maddox +Emanuel +Kai +Leo +Notnamed +Shawn +Skyler +Drake +Malachi +Troy +Uriel +Easton +Calvin +Grayson +Mauricio +Xander +Dillon +Ernesto +Frank +Jonas +Lorenzo +Maximiliano +Ty +Wesley +Devon +Yahir +Alfredo +Bradley +Camden +Donovan +Kingston +Romeo +Sawyer +Avery +Dante +Peter +Ryker +Salvador +Aden +Bryson +Gregory +Issac +Phillip +Randy +Rodrigo +Trenton +Cade +Kyler +Landen +Rene +Spencer +Tyson +Chance +Dallas +Guillermo +Hugo +Caiden +Grady +Izaiah +Myles +Taylor +Alonso +Alonzo +Braxton +Jayson +Jeffrey +Tristen +Valentin +Brenden +Drew +Ezra +Gilbert +Jaxson +Julius +Luca +Moises +Rocco +Rogelio +Alec +Brock +Casey +Danny +Felix +German +Jalen +Jett +Payton +Rowan +Scott +Simon +Abram +Brodie +Darius +Eddie +Griffin +Jaylen +Jerry +Nickolas +Quinn +Ulises +Albert +Clayton +Dustin +Elliot +Isaias +Jameson +Kade +Phoenix +Rodolfo +Alvaro +Braydon +Brett +Greyson +Harrison +Isai +Johan +Kane +Mathew +Ricky +Aaden +Amare +Ariel +Arthur +Brendan +Conor +Dakota +Dane +Davin +Declan +Estevan +Jimmy +Lukas +Mitchell +Nash +Nikolas +Talon +Teagan +Zander +Braylon +Colten +Corey +Dominik +Ezequiel +Jakob +Jay +Joey +Kameron +Lance +Malik +Marshall +Maverick +Russell +Bennett +Bernardo +Braeden +Brennan +Dallin +Dalton +Donald +Elian +Jairo +Kellen +Leon +Orion +Rey +Shaun +Tate +Trey +Zackary +Zion +Adriel +Ali +Allen +Cristopher +Everett +Gunner +Joe +Junior +Louis +Porter +Roy +Ryland +Tomas +Trent +Vicente +Weston +Zachariah +Agustin +Aldo +Alexzander +Alfonso +Bruno +Chris +Corbin +Cyrus +Dean +Graham +Gunnar +Jasper +Keith +Leonel +Milo +Misael +Morgan +Noe +Octavio +Osvaldo +Raiden +Theodore +Armani +Beau +Bobby +Crew +Derrick +Elliott +Felipe +Gary +Gilberto +Giovanny +Humberto +Jessie +Jonathon +Killian +Quentin +Ronald +Santino +Ulysses +Vance +Alexandro +Amari +Bryant +Colby +Darian +Darren +Draven +Emerson +Gianni +Jaydon +Jon +Kristopher +Lawrence +Noel +Rigoberto +Sam +Sterling +Tucker +Alek +Aron +Brent +Brigham +Camron +Charlie +Deegan +Emery +Frankie +Genaro +Giancarlo +Holden +Irvin +Jadon +Julien +Kieran +Kolton +Madden +Marley +Reece +Reed +Roger +Rolando +Ronan +Silas +Walter +Yandel +Adolfo +Alvin +Ammon +Atticus +Barrett +Braiden +Cohen +Conrad +Cristobal +Curtis +Darey +Davis +Dawson +Dax +Desmond +Gauge +Giovani +Harley +Isaak +Jayce +Judah +Kash +Korbin +Kristian +Lamar +Malakai +Marc +Paxton +Reid +Santos +Skylar +Titus +Tristin +Triston +Zackery +Zayne +Alijah +Amir +Aydan +Boston +Bruce +Byron +Cannon +Chad +Dario +Dorian +Finn +Jovanny +Jovany +Justus +Kale +Kenny +Kody +Nehemiah +Nixon +Reese +River +Rudy +Steve +Tony +Wade +Xzavier +Allan +Anderson +Ben +Brycen +Colter +Damion +Damon +Davian +Deandre +Eden +Ethen +Freddy +Frederick +Irving +Isael +Isiah +Jacoby +Jamison +Jase +Kael +Lane +Leonidas +London +Lyric +Mathias +Maurice +Moses +Nelson +Osmar +Oswaldo +Quincy +Ramses +Ronin +Royce +Tobias +Tommy +Van +Yair +Yurem +Zayden +Abdiel +Ace +Alexavier +Ari +Augustine +Craig +Diesel +Douglas +Efrain +Ever +Gavyn +Heriberto +Ishaan +Isidro +Jassiel +Jonatan +Justice +Keaton +Kelvin +Kobe +Konner +Landyn +Mariano +Markus +Marlon +Maxim +Maximo +Mohamed +Nathanael +Obed +Philip +Quinton +Ramiro +Raymundo +Reyes +Rocky +Sage +Slade +Tegan +Thaddeus +Todd +Westin +Yael +Zaid +Zavier +Adrien +Aedan +Austen +Billy +Blaine +Braedan +Cael +Carlo +Cason +Clinton +Colt +Cordell +Cory +Darien +Darrell +Deacon +Derick +Deshawn +Deven +Devyn +Dominique +Eddy +Efren +Guadalupe +Hiram +Hyrum +Jan +Jerome +Johnathon +Jorden +Joseluis +Jovani +Kian +Kyan +Larry +Layton +Leobardo +Malcolm +Manny +Maximilian +Maxx +Miguelangel +Nick +Niko +Pierce +Raphael +Roland +Ronaldo +Rylen +Said +Talan +Terry +Toby +Uriah +Valentino +Walker +Wayne +Yahel +Zack +Zain +Aidyn +Arian +Arnav +Atreyu +Azriel +Baltazar +Baron +Bayron +Benicio +Benito +Benny +Bo +Brendon +Brogan +Cain +Cale +Cassius +Clark +Dale +Dangelo +Davien +Demian +Dennis +Deshaun +Dilan +Dillan +Eder +Edgardo +Elisha +Enzo +Eugene +Everardo +Francis +Franklin +Fransisco +Gaige +Geovanni +Gideon +Ignacio +Isac +Isreal +Izayah +Jacobo +Jahir +Jair +Jamari +Jaren +Jax +Jeramiah +Jeremias +Jeriah +Jerimiah +Johann +Joshuah +Karson +Karsten +Kason +Keagan +Kenyon +Luciano +Marcelo +Marques +Marvin +Matteo +Merrick +Micheal +Mohammed +Odin +Quintin +Randall +Ray +Reagan +Remy +Rhett +Sammy +Solomon +Sonny +Stetson +Stratton +Theo +Trace +Tristyn +Tyree +Vaughn +Ahmed +Alessandro +Andru +Archer +Arnold +Aryan +Aydin +Bradyn +Braulio +Brennon +Brenton +Brodey +Brodi +Bronson +Carl +Chace +Chaz +Coen +Cristofer +Davon +Deion +Demetrius +Duncan +Eleazar +Eliseo +Elvis +Ely +Emir +Finley +Garrison +Gonzalo +Gregorio +Hank +Horacio +Jael +Jaron +Jarrett +Jaydan +Jaydin +Jayvon +Jermaine +Jeshua +Joan +Joseangel +Kadin +Kaeden +Keenan +Kelton +Kendrick +Keshawn +Kevyn +Khalil +Koen +Kolby +Leandro +Lee +Leland +Leonard +Lewis +Luisangel +Mack +Marek +Marion +Marko +Melvin +Memphis +Milton +Nestor +Osiel +Presley +Rayden +Remington +Reuben +Ridge +Ronnie +Rory +Samson +Santana +Simeon +Soren +Stephan +Taj +Talen +Taven +Tavin +Trevin +Treyton +Trystan +Turner +Tyrell +Ubaldo +Waylon +Wilson +Winston +Zechariah +Abelardo +Abner +Adin +Adonis +Aj +Andon +Andreas +Anton +Antony +Antwan +Armaan +Arman +Aurelio +Azael +Bailey +Benson +Benton +Boden +Bowen +Brad +Braedon +Branden +Brandyn +Brennen +Carsen +Carsten +Casen +Chandler +Cian +Clay +Coby +Cordae +Corde +Dameon +Darwin +Dayton +Deangelo +Delano +Dereck +Derik +Devan +Dimitri +Dion +Duke +Dyllan +Edson +Eliel +Elmer +Emmett +Emmitt +Ervin +Flavio +Forrest +Franco +Gannon +Gaven +Gerald +Gerard +Gordon +Hamza +Heath +Hugh +Iram +Izaac +Izaak +Izak +Izaya +Jadyn +Jaeden +Jamal +Jamie +Jasiel +Javin +Jayceon +Jaycob +Jaziel +Jean +Josh +Juancarlos +Juanpablo +Judas +Kamden +Kasey +Keven +King +Kolten +Korben +Kyson +Layne +Linkin +Lonnie +Magnus +Marcelino +Marcell +Marquez +Marquis +Masen +Matix +Matthias +Maximillian +Mekhi +Messiah +Mickey +Mikel +Miller +Mykel +Nathen +Neil +Nery +Nigel +Noa +Ocean +Omari +Osman +Palmer +Rashad +Reilly +Rylee +Ryne +Seven +Stone +Tayden +Terrell +Titan +Treyvon +Tristian +Tytan +Ulisses +Urijah +Vince +Yusuf +Zaiden +Zakary +Zephaniah +Jacob +Daniel +Alexander +Angel +Anthony +Ethan +David +Michael +Aiden +Jose +Joshua +Gabriel +Christopher +Joseph +Jesus +Matthew +Noah +Logan +Julian +Adrian +Jayden +Andrew +Luis +Christian +Isaac +Dylan +Elijah +Carlos +Jonathan +Isaiah +Juan +Nathan +Benjamin +James +William +Nicholas +Kevin +Sebastian +Ryan +Tyler +Brandon +Samuel +Jackson +Xavier +Diego +Caleb +Dominic +Aaron +Connor +John +Santiago +Evan +Jordan +Landon +Miguel +Robert +Liam +Gavin +Mason +Damian +Carter +Zachary +Luke +Alejandro +Brody +Jack +Wyatt +Nathaniel +Adam +Brayden +Oscar +Austin +Eduardo +Hunter +Ian +Victor +Francisco +Jesse +Lucas +Cameron +Jason +Justin +Owen +Thomas +Jorge +Manuel +Chase +Alan +Ivan +Javier +Jeremiah +Josiah +Alex +Cole +Antonio +Tristan +Giovanni +Blake +Bryan +Eric +Ayden +Parker +Steven +Jaxon +Max +Aidan +Hayden +Andres +Cesar +Brian +Vincent +Joel +Ricardo +Sergio +Charles +Henry +Eli +Levi +Colton +Emmanuel +Abraham +Hector +Kaleb +Omar +Mario +Carson +Ruben +Ryder +Riley +Israel +Cooper +Oliver +Richard +Edgar +Seth +Devin +Preston +Kaden +Cristian +Jake +Marcus +Micah +Damien +Roman +Brady +Bryce +Edwin +Timothy +Roberto +Cody +Elias +Emiliano +Fernando +Gage +Martin +Derek +Edward +Kyle +Ashton +Erick +Leonardo +Nicolas +Nolan +Caden +Sean +Jace +Jaden +Grant +Patrick +Zane +Adan +Gael +Kai +Kayden +Conner +Marco +Armando +Jeremy +Asher +Ramon +Tanner +Ezekiel +Trevor +Emilio +Jared +Lincoln +Pedro +Fabian +Josue +Marcos +Raymond +Hudson +Maxwell +Mark +Maximus +Abel +Andre +Angelo +Axel +Cash +Julio +Colin +Collin +Erik +Xander +Alexis +Jaxson +Raul +Rylan +Troy +Mateo +Gerardo +Jonah +Travis +Cruz +Dominick +Drake +Ezra +Miles +Ismael +Paul +Joaquin +Braden +George +Jude +Shane +Ty +Easton +Camden +Chance +Jaiden +Jaime +Kenneth +Wesley +Frank +Rafael +Stephen +Cayden +Shawn +Skyler +Alberto +Dante +Pablo +Saul +Andy +Brayan +Esteban +Peter +Spencer +Arturo +Eddie +Ernesto +Kingston +Lorenzo +Malachi +Notnamed +Romeo +Maddox +Mauricio +Moises +Peyton +Dillon +Garrett +Johnny +Keegan +Ryker +Tyson +Zander +Calvin +Sawyer +Caiden +Donovan +Enrique +Guillermo +Johnathan +Kaiden +Trey +Braydon +Gustavo +Izaiah +Jett +Phoenix +Rene +Trenton +Jayce +Tristen +Uriel +Aden +Bradley +Brennan +Dominik +Graham +Grayson +Julius +Quinn +Salvador +Ali +Braxton +Danny +Dean +Jakob +Kade +Landen +Orlando +Rodrigo +Rudy +Adriel +Brendan +Brenden +Colten +Emanuel +Felix +Gilbert +Jayson +Leonel +Lukas +Nehemiah +Weston +Orion +Santos +Silas +Aaden +Aldo +Alec +Bryson +Byron +Corbin +Drew +Jameson +Leo +Paxton +Rocco +Zion +Cade +Clayton +Jeffrey +Myles +Simon +Zachariah +Alfredo +Emmett +Kane +Kyler +Matteo +Maximiliano +Payton +Quentin +Randy +Talon +Trent +Zackary +Alijah +Devon +Dustin +Isaias +Jimmy +Jonas +Milo +Rowan +Scott +Abdiel +Elliot +Everett +Holden +Hugo +Jax +Jaydon +Louis +Mathew +Yandel +Albert +Alexzander +Amare +Avery +Desmond +Felipe +Gunner +Johan +Judah +Misael +Mohamed +Nikolas +Ryland +Taylor +Walter +Xzavier +Abram +Alonzo +Braylon +Casey +Chris +Conor +Dallin +Dane +Draven +Greyson +Griffin +Issac +Junior +Madden +Nickolas +Noel +Valentin +Vicente +Yahir +Allen +Alonso +Bennett +Bruce +Cohen +Colt +Dallas +Darian +Davian +Dilan +Estevan +Gregory +Harrison +Irvin +Joe +Kian +Leon +Nash +Porter +Raiden +Ray +Steve +Ulises +Alfonso +Ari +Arthur +Braeden +Charlie +Conrad +Corey +Cyrus +Davis +Donald +Emerson +Frankie +German +Gianni +Gideon +Gilberto +Jasper +Joey +Julien +Kellen +Moses +Phillip +Reed +Reid +Rey +Ronan +Tomas +Valentino +Yael +Ariel +Cory +Dakota +Gauge +Isiah +Jaxton +Jaylen +Markus +Marlon +Maximilian +Nikolai +Pierce +Tobias +Tony +Tucker +Amir +Anderson +Barrett +Braiden +Brock +Cael +Crew +Damon +Declan +Derrick +Deven +Efrain +Ezequiel +Giovani +Grady +Jay +Karter +Leland +Luciano +Malik +Nathanael +Philip +Rocky +Russell +Talan +Tate +Titus +Tristin +Ace +Adrien +Amari +Branden +Brendon +Camilo +Dalton +Darius +Demetrius +Dennis +Dillan +Efren +Emery +Franco +Gonzalo +Isai +Jacoby +Jadon +Keith +Kieran +Kristopher +Lane +Larry +London +Luca +Malakai +Marc +Noe +Osvaldo +Rhett +Rolando +Roy +Skylar +Sonny +Theodore +Tommy +Brigham +Bryant +Cannon +Curtis +Dax +Dexter +Elliott +Giancarlo +Gunnar +Jerry +Jovani +Justice +Kale +Killian +Kody +Kole +Landyn +Maverick +Quincy +Ramiro +Rodolfo +Rogelio +Warren +Zachery +Adolfo +Alek +Alfred +August +Azael +Boston +Brett +Bruno +Cason +Davin +Finn +Finnegan +Freddy +Hiram +Humberto +Ibrahim +Jairo +Jaxen +Jordyn +Jovan +Kaeden +Keaton +Kellan +Kolton +Kristian +Lawrence +Layne +Micheal +Morgan +Payson +Ricky +River +Rohan +Shaun +Solomon +Trace +Uriah +Van +Wade +Zaiden +Ahmed +Aidyn +Allan +Archer +Armani +Aryan +Braulio +Brent +Bridger +Bronson +Brooks +Chad +Dawson +Daxton +Harley +Hendrix +Hyrum +Jase +Jaycob +Jaydan +Jensen +Jerome +Jessie +Joan +Jovanny +Kameron +Karson +Kasen +Kash +Kayson +Keagan +Kenny +Kobe +Konner +Korbin +Marley +Nixon +Quinton +Rex +Roger +Sam +Slade +Titan +Vance +Vaughn +Zayden +Achilles +Alexavier +Arath +Arian +Atreyu +Atticus +Beau +Beckett +Billy +Bobby +Branson +Brennen +Broderick +Carlo +Chandler +Cristopher +Deegan +Dorian +Eleazar +Ernest +Finley +Gary +Giovanny +Guadalupe +Hank +Harry +Heath +Heber +Isac +Jair +Jeramiah +Jet +Jon +Jonathon +Jovanni +Knox +Kymani +Leonard +Luka +Matias +Mitchell +Nico +Octavio +Oswaldo +Raphael +Reece +Remington +Rhys +Rodney +Ronald +Ronin +Ronnie +Samson +Santino +Todd +Triston +Trystan +Uziel +Walker +Zaid +Adriano +Alexandro +Aydan +Bentley +Blaine +Brice +Brodie +Brycen +Cain +Darren +Davion +Deacon +Deandre +Deshawn +Dimitri +Dominique +Donavan +Elian +Elvis +Esai +Fidel +Gadiel +Geovanni +Giovany +Ignacio +Irving +Isreal +Jaeden +Jaidyn +Jalen +Jamison +Jaydin +Jedidiah +Josemanuel +Justus +Kadin +Kael +Kaysen +Keanu +Khalil +Konnor +Kris +Krish +Lance +Leonidas +Maddux +Marvin +Masen +Matthias +Mauro +Maximo +Melvin +Merrick +Miguelangel +Nevin +Obed +Reese +Rigoberto +Roland +Seamus +Soren +Steele +Waylon +Yurem +Zaden +Zavier +Adin +Alessandro +Amar +Ammon +Arjun +Aron +Azriel +Beckham +Benson +Bernardo +Briggs +Broden +Cale +Camren +Camron +Carl +Cedric +Chace +Cristofer +Cullen +Dale +Dan +Dangelo +Dariel +Darwin +Davon +Dayton +Deagan +Derick +Devan +Dion +Eden +Edgardo +Eliseo +Elisha +Ellis +Emory +Enoch +Enzo +Everardo +Ewan +Franklin +Geoffrey +Gino +Glenn +Hassan +Hayes +Isael +Isidro +Jadyn +Jagger +Jamie +Jaziel +Johnathon +Joseluis +Jullian +Kareem +Kason +Kelvin +Koen +Kolten +Kyson +Legend +Lewis +Lucian +Malcolm +Marcel +Marciano +Marques +Maxx +Mckay +Nate +Neil +Niko +Osman +Otto +Paulo +Ramses +Rayden +Raymundo +Reyes +Reynaldo +Ridge +Rome +Rowdy +Rowen +Royce +Stetson +Sylas +Tegan +Toby +Tom +Torin +Treyson +Tripp +Tristian +Tyrell +Tyrone +Ulysses +Vladimir +Warner +Yeshua +Aarav +Adair +Adryan +Aedan +Agustin +Ahmad +Alvaro +Amani +Andreas +Andrey +Aram +Arlo +Aydin +Ben +Benny +Bernard +Bradlee +Braylen +Canon +Canyon +Carmelo +Carsten +Cassius +Clark +Clifford +Colby +Coleman +Colter +Corban +Corbyn +Cristo +Damion +Darey +Darien +Darrius +Demitri +Devyn +Dezmond +Domonic +Douglas +Drayden +Duncan +Dyllan +Eddy +Ely +Gaige +Garret +Genaro +Geovanny +Gian +Glen +Grayden +Harper +Heriberto +Hezekiah +Howard +Iram +Isaak +Isacc +Izaak +Izak +Izayah +Jael +Jakub +Jamir +Jaren +Jasiah +Jeffery +Jesiah +Johann +Jorden +Joseangel +Juelz +Kain +Kalel +Kamren +Kasey +Kekoa +Kelton +Khristian +Kooper +Kurt +Kurtis +Kyree +Lathan +Leandro +Ledger +Lee +Lennon +Louie +Lucien +Lyric +Maksim +Manny +Marcelo +Mariano +Mathias +Mayson +Messiah +Miller +Mohammad +Mykah +Nelson +Patricio +Quinlan +Quintin +Ralph +Randall +Remy +Rigo +Ronaldo +Rylee +Rylie +Sabastian +Said +Simeon +Sky +Talen +Tariq +Taven +Teagan +Teegan +Terry +Tiago +Tillman +Tyce +Viktor +Westley +Xavion +Zack +Zackery +Zechariah +Jacob +Daniel +Anthony +Alexander +Angel +Michael +Jayden +Ethan +Gabriel +Noah +Aiden +Jose +Joseph +Julian +David +Adrian +Christopher +Joshua +Isaac +Andrew +Logan +Jonathan +Matthew +Elijah +Jesus +Mason +William +Christian +Samuel +Benjamin +Isaiah +Nathan +Luis +Liam +Dylan +James +Sebastian +Carlos +Caleb +Ryan +Xavier +Connor +Jackson +Juan +Aaron +Gavin +Nicholas +Brandon +Robert +John +Jordan +Wyatt +Tyler +Kevin +Landon +Brayden +Santiago +Damian +Eli +Lucas +Diego +Dominic +Jack +Evan +Luke +Zachary +Brody +Alejandro +Jason +Miguel +Adam +Ian +Austin +Jeremiah +Hunter +Cameron +Justin +Carter +Josiah +Owen +Nathaniel +Thomas +Victor +Elias +Giovanni +Charles +Bryan +Jesse +Antonio +Ayden +Francisco +Ivan +Andres +Aidan +Tristan +Max +Blake +Eduardo +Jaxon +Henry +Micah +Colton +Eric +Chase +Ryder +Cole +Israel +Vincent +Manuel +Alex +Leonardo +Joel +Levi +Hayden +Richard +Jorge +Alan +Cody +Brian +Cesar +Parker +Sergio +Caden +Fernando +Oliver +Oscar +Emmanuel +Kaleb +Roman +Devin +Carson +Marcus +Jaden +Ricardo +Josue +Omar +Emiliano +Ruben +Mark +Preston +Sean +Bryce +Javier +Riley +Hudson +Jace +Mario +Asher +Cooper +Edward +Gage +Kyle +Patrick +Steven +Kaden +Maxwell +Damien +Erick +Grayson +Edgar +Colin +Derek +Axel +Martin +Drake +Jaxson +Lincoln +Mateo +Ezekiel +Hector +Jonah +Kayden +Roberto +Edwin +Abraham +Cruz +Easton +Nicolas +Timothy +Jake +Kaiden +Rylan +Seth +Tanner +Adan +Cash +Raymond +Kai +Miles +Alexis +Bradley +Jared +Joaquin +Zane +Fabian +Jeremy +Wesley +Ashton +Jude +Nolan +Ryker +Emilio +Enrique +Grant +Marcos +Maximus +Raul +Romeo +Bryson +Cristian +Paul +Brady +Cayden +Dean +Pedro +Peyton +Saul +Bentley +Gael +Abel +Ezra +Julio +Kenneth +Kingston +Sawyer +Jameson +Stephen +Trevor +Angelo +Dominick +Jayce +Tyson +Collin +Conner +George +Izaiah +Jaime +Keegan +Lorenzo +Malachi +Rafael +Johnny +Kade +Marco +Troy +Andre +Chance +Ernesto +Ramon +Silas +Skyler +Braden +Dillon +Jaiden +Maddox +Peter +Xander +Cade +Dante +Andy +Travis +Alberto +Braxton +Donovan +Ismael +Armando +Emanuel +Erik +Leo +Avery +Gerardo +Jakob +Jax +Leonel +Pablo +Arturo +Garrett +Harrison +Jett +Kyler +Orion +Scott +Shane +Tristen +Yahir +Everett +Gunner +Jeffrey +Reid +Spencer +Trenton +Zander +Bennett +Calvin +Orlando +Rodrigo +Tate +Brendan +Brennan +Brock +Charlie +Corbin +Felix +Lukas +Maximiliano +Weston +Braydon +Deegan +Gustavo +Kellen +Landen +Louis +Simon +Talon +Amare +Arthur +Derrick +Devon +Esteban +Griffin +Johnathan +Judah +Mauricio +Randy +Ryland +Gregory +Isaias +Jay +Jaylen +Julius +Matteo +Noe +Theodore +Ty +Allen +Clayton +Dallas +Danny +Dustin +Gunnar +Iker +Issac +Kameron +Kash +Quentin +Rene +Xzavier +Aden +Adriel +Alec +Crew +Darian +Declan +Drew +Elliott +Ezequiel +Graham +Hugo +Kellan +Luca +Markus +Moises +Nehemiah +Nikolas +Noel +Ronald +Shawn +Vicente +Zayden +Alfredo +Brayan +Colt +Elliot +Greyson +Guillermo +Holden +Johan +Malakai +Nixon +Paxton +Quinn +Ricky +Salvador +Taylor +Trent +Ali +Amari +Ari +Brenden +Byron +Caiden +Chris +Cohen +Dane +Dawson +Douglas +Elian +Frank +Gilberto +Jonas +King +Kody +Nathanael +Porter +Ray +Rey +Titus +Trey +Valentin +Zachariah +Zackary +Aldo +Alonso +Beckett +Camden +Colby +Dallin +Dominik +Emmett +Isai +Joe +Joey +Juancarlos +Larry +Lawrence +Leland +Marshall +Misael +Myles +Payton +Raiden +Rowan +Santino +Skylar +Uriel +Abram +Alonzo +Boston +Colten +Darius +Leon +Milo +Moses +Phillip +Phoenix +Reed +Remington +Rocco +Tony +Alfonso +Bruno +Casey +Cyrus +Dakota +Dalton +Estevan +Jasper +Killian +Lucian +Malik +Notnamed +Rogelio +Tucker +Uriah +Urijah +Zion +Aarav +Alexzander +Armani +Benson +Brooks +Davian +Davin +Desmond +Emerson +Giovanny +Ignacio +Jacoby +Jairo +Jerry +Jimmy +Kolten +Mitchell +Nash +Rudy +Tripp +Aaden +Aditya +Albert +Alijah +Alvaro +Augustine +Beau +Braeden +Braiden +Braylon +Cain +Curtis +Damon +Dorian +Draven +Dwayne +Enzo +Felipe +Finley +Gilbert +Jaydon +Jayson +Jessie +Kayson +Keaton +Keith +Lane +Marcelo +Mathew +Mathias +Maximo +Octavio +Rhett +Roger +Ronan +Roy +Santos +Van +Beckham +Bruce +Corey +Cristobal +Davion +Donald +Elisha +Finn +Gianni +Giovani +Humberto +Izayah +Jalen +Jaxen +Jaziel +Justice +Kobe +Kristopher +Layne +Marc +Mariano +Maverick +Nickolas +Philip +Ramses +Reagan +Reece +Reese +Sam +Slade +Sonny +Warren +Zechariah +Abdiel +Andreas +Bowen +Brent +Cannon +Cason +Channing +Conor +Davis +Demetrius +Dennis +Efren +Gavyn +Jacobo +Jaxton +Julien +Luciano +Malaki +Odin +Rhys +River +Russell +Stefan +Steve +Tomas +Tristin +Ulises +Valentino +Yandel +Zaid +Ahmed +Aidyn +Alessandro +Ariel +Atticus +August +Azriel +Barrett +Bode +Brett +Chandler +Dexter +Dilan +Dillan +Eddie +Efrain +Franco +Frankie +Gadiel +Hiram +Irving +Isiah +Jorden +Jovanni +Kael +Karson +Kasen +Kendrick +Layton +Lee +Madden +Marek +Marlon +Matthias +Maximilian +Miguelangel +Morgan +Nelson +Niko +Prince +Rohan +Sage +Santana +Solomon +Thiago +Tommy +Ulysses +Zayne +Adolfo +Aedan +Allan +Amir +Atreyu +Blaise +Bo +Boden +Brennen +Brigham +Bryant +Chad +Colter +Conrad +Craig +Cristopher +Darren +Dax +Deandre +Dion +Finnegan +Frederick +Gauge +Gideon +Ibrahim +Irvin +Isaak +Izrael +Jon +Jovani +Juaquin +Kane +Karter +Kason +Kian +Kieran +Kole +Korbin +Landyn +Lawson +Leif +Leonard +Lyric +Malcolm +Marquis +Marvin +Matix +Maurice +Maxton +Micheal +Mike +Mohamed +Nathen +Osvaldo +Pierce +Quinton +Ramiro +Remy +Roland +Ronin +Ryden +Shaun +Talan +Teagan +Tobias +Vaughn +Westin +Yael +Zakary +Zavier +Ace +Adiel +Agustin +Alexandro +Alvin +Anderson +Apollo +Archer +Aryan +Aydan +Bernardo +Braulio +Bridger +Carlo +Chace +Cory +Dariel +Daxton +Dayton +Deangelo +Demarcus +Eden +Edgardo +Ely +Emery +Franklin +Gary +Grady +Guadalupe +Harper +Harry +Harvey +Hezekiah +Iram +Jamison +Jedidiah +Jerome +Junior +Karim +Kashton +Kelvin +Kenny +Leonidas +Linkin +Luisangel +Masen +Maxim +Mikael +Mikel +Nikolai +Osmar +Payson +Presley +Raphael +Royce +Sabastian +Sammy +Stetson +Stone +Tatum +Terrence +Tristian +Triston +Tyce +Vladimir +Walker +Walter +Will +Xavi +Zaiden +Adonai +Alek +Alekzander +Ammon +Arley +Arnold +Aron +Augustus +Benny +Blaine +Bradyn +Branden +Braylen +Brice +Brighton +Brogan +Brycen +Bryton +Cael +Cale +Carl +Case +Cullen +Darien +Deagan +Derick +Deven +Dominique +Enoch +Freddy +Gannon +Geovanni +Gerald +Harlan +Heriberto +Ishaan +Izaac +Izak +Jadon +Jaeden +Jarrett +Jasiah +Johnathon +Josemanuel +Kage +Kain +Kamden +Kamron +Kannon +Karsten +Keagan +Kiernan +Kirk +Kolton +Konner +Kristian +Kyan +Kymani +Lance +London +Marcello +Marley +Marques +Mayson +Obadiah +Obed +Quincy +Ralph +Randall +Rodolfo +Royal +Rylee +Samson +Seamus +Sylas +Tavin +Terrance +Tobin +Todd +Trace +Trevin +Trystan +Vance +Vincenzo +Wade +Wilson +Zain +Abelardo +Achilles +Adriano +Alexavier +Alfred +Aramis +Arnav +Asa +Ayaan +Aydin +Benicio +Billy +Blaze +Bobby +Bodhi +Bodie +Brendon +Brennon +Briggs +Broden +Broderick +Bronson +Burton +Callen +Camilo +Carmelo +Casen +Cassius +Cedric +Chevy +Constantine +Cristiano +Demian +Denzel +Deshawn +Duke +Edison +Eliseo +Ellis +Elmer +Emory +Ephraim +Ernest +Esai +Esau +Fredy +Genaro +Gerard +German +Giancarlo +Glen +Greysen +Harley +Harold +Hendrix +Hyrum +Ira +Isael +Jagger +Jai +Jaleel +Jamal +Jan +Jareth +Jarred +Jassiel +Jeffery +Jericho +Jerimiah +Johann +Jonathon +Jordy +Joseluis +Jovany +Joziah +Justus +Kale +Kalel +Kamari +Kelly +Kent +Kenyon +Koen +Kolby +Kruz +Kurt +Leighton +Lennox +Lionel +Luc +Lucius +Mack +Matias +Maxx +Memphis +Merrick +Mikah +Nico +Pete +Pierson +Quintin +Rashad +Raylan +Rex +Rick +Rolando +Ronaldo +Rory +Sevastian +Sheldon +Soren +Sterling +Tadeo +Tayden +Turner +Tyrone +Uziel +Valentine +Warner +Waylon +Zackery +Zeke +Zuriel +Jacob +Anthony +Daniel +Michael +Ethan +Angel +Alexander +Noah +Mason +Aiden +Gabriel +Jayden +David +Julian +Joseph +Adrian +Liam +Isaac +Benjamin +Elijah +Matthew +Jose +Christopher +Andrew +Jesus +Joshua +Logan +Nathan +William +Christian +Dylan +Isaiah +Sebastian +James +Luis +Aaron +Samuel +Caleb +Jonathan +Carlos +Tyler +Jackson +Brandon +Xavier +Luke +Ryan +Nicholas +Evan +Jordan +Dominic +Landon +Carter +John +Eli +Juan +Owen +Connor +Gavin +Robert +Brayden +Santiago +Lucas +Damian +Ian +Ivan +Hunter +Jack +Zachary +Wyatt +Austin +Brody +Nathaniel +Adam +Diego +Jeremiah +Josiah +Kevin +Levi +Roman +Ayden +Jaxon +Alejandro +Jason +Miguel +Oscar +Thomas +Victor +Cameron +Giovanni +Parker +Alex +Andres +Colton +Jorge +Blake +Justin +Charles +Elias +Henry +Tristan +Micah +Axel +Leonardo +Oliver +Max +Francisco +Jesse +Cole +Asher +Easton +Hayden +Alan +Eduardo +Manuel +Antonio +Hudson +Mario +Vincent +Carson +Cesar +Ryder +Joel +Chase +Hector +Brian +Bryson +Gage +Jace +Emiliano +Ricardo +Richard +Aidan +Jaxson +Emmanuel +Edgar +Eric +Maxwell +Cooper +Jaden +Kaleb +Ashton +Jonah +Bentley +Ezekiel +Lincoln +Omar +Preston +Bryan +Israel +Javier +Mateo +Abraham +Emilio +Edward +Marcus +Damien +Maximiliano +Sean +Xander +Derek +Grayson +Nolan +Kyle +Miles +Ruben +Zane +Cristian +Bryce +Jake +Seth +Steven +Ezra +Fernando +Grant +Riley +Rylan +Abel +Cash +Fabian +Kayden +Sergio +Kaden +Paul +Erick +Nicolas +Kai +Marco +Martin +Caden +Josue +Devin +Johnny +Tanner +Trevor +Ryker +Cody +Timothy +Dominick +Marcos +Colin +Declan +Jeremy +Mark +Roberto +Adan +Brady +Joaquin +Raymond +Angelo +Bradley +Johnathan +Maximus +Rafael +Travis +Alexis +Calvin +Leo +Silas +Chance +Dante +Drake +Troy +Armando +Cruz +Everett +Weston +Conner +Kaiden +Patrick +Ramon +Greyson +Jameson +Jude +Bennett +Braxton +Collin +Edwin +Elliot +Keegan +Myles +Sawyer +Spencer +Andre +Avery +Erik +Harrison +Jaime +Malachi +Raul +Wesley +Enrique +Izaiah +Lorenzo +Camden +Donovan +Garrett +George +Jaiden +Emmett +Ismael +Julio +Kenneth +Peter +Stephen +Alberto +Cayden +Ernesto +Zander +Aden +Charlie +Gael +Gerardo +Griffin +Holden +Iker +Kyler +Pablo +Dean +Esteban +Tyson +Frank +Jared +Landen +Lukas +Peyton +Skyler +Clayton +Dallas +Gustavo +Jakob +Jayce +Pedro +Romeo +Drew +Maddox +Rodrigo +Shawn +Adriel +Brayan +Brock +Corbin +Derrick +Hugo +Jax +Kingston +Shane +Ali +Arturo +Braden +Judah +Orlando +Paxton +Raiden +Graham +Ryland +Tristen +Albert +Brendan +Cade +Emanuel +Kellan +Ricky +Scott +Darian +Issac +Leon +Leonel +Luca +Mauricio +Orion +Porter +Brennan +Grady +Gunner +Louis +Lucian +Phillip +Ulises +Braylon +Jayson +Jett +Kade +Tate +Theodore +Titus +Alec +Alonso +Andy +August +Beckett +Caiden +Dustin +Isaias +Jeffrey +Julius +Kellen +Mathew +Matteo +Nehemiah +Saul +Sterling +Trey +Vicente +Aldo +Alfredo +Allen +Amare +Damon +Felix +Jasper +Kash +Milo +Noel +Rene +Taylor +Uriel +Zackary +Atticus +Beau +Braeden +Braydon +Colt +Colten +Dakota +Danny +Lane +Leland +Maximilian +Nixon +Quinn +Reid +Rowan +Simon +Ty +Xzavier +Yahir +Alonzo +Aydan +Brenden +Brycen +Colby +Dominik +Eddie +Ezequiel +Gregory +Jairo +Jaylen +Joey +Maverick +Skylar +Sylas +Talon +Trenton +Ulysses +Alexzander +Amari +Cannon +Deegan +Devon +Elliott +Estevan +Gunnar +Irvin +Jaxton +Madden +Malcolm +Notnamed +Zayden +Abram +Armani +Arthur +Brett +Brigham +Byron +Casey +Cohen +Dariel +Darren +Desmond +Dexter +Enzo +Frankie +Guillermo +Jamison +Jonas +Keith +Misael +Nash +Nickolas +Nikolas +Osvaldo +Pierce +Randy +River +Ronin +Sullivan +Tatum +Uriah +Zion +Adrien +Dalton +Darius +Dax +Dillon +Geovanni +Jalen +Jerry +Jimmy +Junior +Keaton +Luciano +Markus +Nathanael +Noe +Odin +Quentin +Ronan +Rudy +Russell +Salvador +Santos +Tomas +Trent +Valentino +Zaiden +Anderson +Brooks +Bruno +Clark +Corey +Draven +Finn +Gary +Gilberto +Giovani +Giovanny +Isiah +Johan +Kian +Malakai +Mariano +Moises +Reece +Rhys +Roy +Trace +Tucker +Van +Walter +Waylon +Zachariah +Alvaro +Amir +Aryan +Aydenn +Brodie +Callen +Cason +Cristobal +Dane +Dario +Emerson +Gauge +Giancarlo +Jase +Jerome +Joe +Kameron +Kane +Karter +Marshall +Maximo +Reed +Rocco +Ronald +Rowen +Royce +Tony +Abdiel +Ace +Agustin +Alijah +Archer +Ari +Ariel +Aydin +Benicio +Bronson +Chad +Channing +Chris +Davian +Douglas +Eliseo +Gianni +Gilbert +Ibrahim +Isai +Jagger +Jeshua +Jovanni +Juanpablo +Kale +Kasen +Keenan +Kobe +Kristopher +Lance +Leonidas +Luka +Lyric +Marlon +Masen +Maxim +Moses +Nelson +Nikolai +Philip +Ramses +Roland +Rory +Santana +Santino +Sonny +Vance +Zayne +Alfonso +Augustine +Beckham +Bridger +Brixton +Bryant +Cain +Colter +Crosby +Dayton +Dorian +Eden +Harper +Humberto +Hyrum +Ishmael +Izayah +Jaziel +Jorden +Julien +Kendrick +Kent +Kieran +King +Kody +Lennox +Leonard +Matthias +Quincy +Quinton +Raphael +Raylan +Reese +Rey +Rhett +Rodolfo +Roger +Rohan +Rylen +Solomon +Steve +Teagan +Tobias +Urijah +Warren +Zavier +Addison +Arlo +Atreyu +Bobby +Boston +Braiden +Bruce +Chandler +Clay +Coen +Conrad +Craig +Cyrus +Dangelo +Davin +Dawson +Daxton +Deangelo +Dominique +Efren +Elian +Franklin +Freddy +Gavyn +Gonzalo +Hank +Hassan +Ignacio +Ishaan +Jacoby +Jaycob +Jovani +Juancarlos +Kamden +Karim +Karson +Khalil +Koen +Kolton +Konnor +Korbin +Kyson +Lawrence +Matix +Micheal +Mike +Mitchell +Nico +Osmar +Prince +Ray +Reginald +Reyes +Rolando +Samson +Shaun +Stefan +Thiago +Tommy +Triston +Wade +Xavi +Yandel +Adiel +Alek +Alessandro +Alexandro +Allan +Arian +Arley +Azriel +Ben +Benito +Blaine +Blaze +Branden +Brendon +Cael +Casen +Cory +Davion +Deacon +Deandre +Demetrius +Derick +Dwayne +Fidel +Finley +Freddie +German +Haven +Hendrix +Jasiah +Jaxen +Jay +Jaydin +Jaydon +Jedidiah +Jericho +Jon +Jonathon +Justice +Justus +Kason +Keanu +Keon +Kristian +Larry +Layton +Lennon +Lenny +Lewis +Maison +Mathias +Matias +Mayson +Morgan +Phoenix +Quintin +Sam +Seamus +Trevon +Tristian +Viktor +Vince +Walker +Yael +Zack +Abner +Adolfo +Alden +Anders +Andreas +Anton +Avi +Azael +Barrett +Bo +Bowen +Braedon +Brantley +Canon +Clyde +Crew +Cullen +Curtis +Dallin +Damion +Davien +Deven +Dilan +Dion +Donald +Drayden +Finnegan +Francis +Franco +Frederick +Gideon +Graysen +Hezekiah +Isaak +Isreal +Izaac +Jacen +Jeffery +Jensen +Jessie +Joan +Joseluis +Jovan +Kayson +Kelvin +Killian +Knox +Kolten +Kurtis +Langston +Leandro +Legend +Leighton +Loren +Louie +Marvin +Maximillian +Maxx +Mohamed +Neil +Payton +Ramiro +Reynaldo +Rigoberto +Rocky +Rogelio +Ryden +Ryley +Sabastian +Said +Shayne +Stanley +Terrence +Thaddeus +Todd +Vaughn +Westin +Will +Zain +Zeke +Zyon +Aarav +Adair +Adonis +Ahmad +Alexavier +Ammon +Andrei +Arjun +Aston +Atlas +Aurelio +Aven +Benson +Branson +Braulio +Brecken +Brenton +Brigg +Briggs +Callan +Carl +Carlo +Carmelo +Carsten +Case +Cassius +Cristopher +Damari +Dan +Darey +Dennis +Denver +Deshawn +Diesel +Dillinger +Efrain +Emery +Emmitt +Ephraim +Ezrah +Felipe +Forrest +Gadiel +Gaige +Geovanny +Heath +Hussain +Isac +Isael +Jaeden +Jamie +Jamir +Jancarlo +Jermaine +Jesiah +Johann +Jordyn +Josef +Joziah +Kaige +Kain +Kaleo +Kamren +Kareem +Karsen +Karsten +Kase +Kasey +Kenji +Kenny +Keyon +Kipton +Kiptyn +Kohen +Kolby +Kole +Konner +Krish +Kyan +Kylan +Kymani +Landyn +Leif +Lionel +Luc +Lucius +Mack +Maddix +Maksim +Malik +Manny +Marc +Marcel +Marcelo +Marius +Marley +Maxton +Mckay +Mekhi +Merrick +Mickey +Miguelangel +Nasir +Neo +Octavio +Osbaldo +Pranav +Rashad +Rayden +Raymundo +Reagan +Rex +Ridge +Rio +Rockwell +Rodney +Ronaldo +Ronnie +Rook +Rylee +Sage +Shea +Soren +Stetson +Sylis +Talan +Taven +Teegan +Terrance +Terrell +Terry +Thane +Tobin +Trevin +Trystan +Turner +Tyrell +Valentin +Vincenzo +Vladimir +Willie +Wilson +Xavian +Yair +Zackery +Zakary +Jacob +Liam +Daniel +Ethan +Anthony +Alexander +Noah +Michael +Mason +Aiden +David +Jayden +Julian +Matthew +Elijah +Gabriel +Andrew +Isaac +Joseph +Logan +Joshua +William +Benjamin +Angel +Christian +Isaiah +Samuel +Jose +Jackson +Adrian +James +Christopher +Sebastian +Jesus +Dylan +Jonathan +Dominic +Nathan +Caleb +Ryan +Luis +Eli +Xavier +Carlos +Luke +Lucas +Aaron +Wyatt +Gavin +Hunter +Carter +John +Brayden +Damian +Jordan +Juan +Brandon +Austin +Santiago +Evan +Landon +Josiah +Jaxon +Jeremiah +Robert +Connor +Levi +Nicholas +Gael +Diego +Ivan +Jack +Adam +Zachary +Owen +Ian +Kevin +Elias +Tyler +Henry +Blake +Colton +Oliver +Nathaniel +Thomas +Ayden +Jason +Miguel +Andres +Brody +Francisco +Charles +Alejandro +Parker +Cameron +Victor +Lincoln +Alex +Mateo +Roman +Tristan +Jorge +Richard +Vincent +Jaxson +Manuel +Hudson +Joel +Grayson +Jace +Oscar +Cooper +Giovanni +Axel +Abraham +Eric +Cole +Easton +Asher +Chase +Justin +Max +Bentley +Leonardo +Antonio +Ryder +Devin +Ezekiel +Javier +Jesse +Hayden +Eduardo +Hector +Damien +Jonah +Omar +Bryan +Carson +Ricardo +Sergio +Abel +Alan +Steven +Aidan +Mario +Nolan +Emiliano +Maximiliano +Bryce +Emilio +Israel +Marcus +Micah +Zane +Cash +Cesar +Fernando +Jude +Maxwell +Kaleb +Kayden +Leo +Preston +Edward +Ezra +Iker +Jaden +Kaden +Gage +Xander +Brady +Emmanuel +Fabian +Maximus +Derek +Bradley +Dominick +Nicolas +Patrick +Riley +Bryson +Caden +Josue +Lorenzo +Ryker +Sean +Silas +Miles +Jameson +Sawyer +Tanner +Timothy +Brian +Declan +Erick +Ruben +Adan +Andre +Jake +Martin +Alexis +Kenneth +Angelo +Rafael +Roberto +Emmett +Camden +Cruz +Donovan +Greyson +Jeremy +Wesley +Weston +Colin +Kai +Romeo +Ashton +Cody +Marcos +Mark +Raymond +Seth +Everett +George +Kaiden +Kingston +Kyle +Armando +Trevor +Edgar +Ismael +Malachi +Paul +Rylan +Zayden +Esteban +Maddox +Alberto +Cristian +Drake +Pedro +Travis +Braxton +Grant +Johnathan +Peter +Jaime +Jax +Joaquin +Landen +Leonel +Saul +Bennett +Erik +Marco +Adriel +Avery +Conner +Gunner +Harrison +Peyton +Shane +Zander +Arturo +Calvin +Gerardo +Julio +Graham +Gustavo +Corbin +Dean +Jaiden +Myles +Orlando +Ramon +Edwin +Enrique +Jett +Skyler +Taylor +Dante +Stephen +Tucker +Cayden +Collin +Dallas +Drew +Jared +Jayce +Julius +Shawn +Alfredo +Gregory +Johnny +Keegan +Spencer +Charlie +Elliot +Izaiah +Jeffrey +Paxton +Theodore +Ernesto +King +Marshall +Milo +Zion +Andy +Chance +Issac +Kyler +Luca +Nixon +Orion +Phoenix +Ryland +Titus +Armani +Dominik +Emanuel +Pablo +Allen +Beau +Dillon +Ezequiel +Garrett +Isaias +Jay +Judah +Kellan +Lukas +Raul +Rogelio +Troy +Dakota +Jasper +Kash +Porter +Rowan +Trenton +Tristen +Ty +Tyson +Braden +Caiden +Dexter +Felix +Frank +Griffin +Louis +Rodrigo +Scott +Zachariah +Abram +Aden +Atticus +Braylon +Cade +Danny +Izayah +Kade +Mauricio +Nehemiah +Ricky +Royce +Sterling +Tate +Uriel +Alec +Ali +Brendan +Bruce +Dalton +Jaylen +Leland +Maverick +Nikolas +Rene +Aldo +Beckett +Clayton +Cohen +Colby +Darius +Dorian +Elliott +Grady +Jakob +Jase +Jayson +Madden +Quinn +Simon +Talon +Trey +Benson +Chris +Colt +Dawson +Derrick +Desmond +Emerson +Gianni +Holden +Jalen +Kellen +Leon +Luciano +Moises +Phillip +Reed +River +Santino +Skylar +Trent +Yahir +Alfonso +Alonzo +Amare +Arthur +Beckham +Brennan +Brock +Brooks +Casey +Colten +Curtis +Damon +Eddie +Estevan +Gideon +Guillermo +Joe +Karter +Maximo +Neymar +Noel +Raiden +Ronan +Salvador +Soren +Vicente +Albert +Alijah +Alonso +Archer +Braiden +Corey +Crew +Devon +Felipe +Gilbert +Gunnar +Jionni +Joey +Lane +Malik +Randy +Remington +Roy +Solomon +Alexzander +Amir +August +Boston +Brycen +Cyrus +Dennis +Dustin +Hugo +Johan +Julien +Keith +Kian +Kolton +Malakai +Matteo +Misael +Noe +Rey +Rhys +Tobias +Uriah +Urijah +Walker +Waylon +Amari +Anderson +Ari +Arley +Aydan +Barrett +Brantley +Brenden +Cory +Damion +Dane +Draven +Gauge +German +Harley +Isiah +Jairo +Jensen +Kendrick +Kobe +Kody +Kristopher +Lennon +Mathew +Maximilian +Mohamed +Morgan +Philip +Tatum +Tristin +Warren +Xzavier +Zechariah +Arian +Bobby +Cain +Cason +Chandler +Conor +Dario +Davian +Davis +Deandre +Deegan +Efrain +Ellis +Enzo +Finnegan +Frederick +Irvin +Isai +Jacoby +Jasiah +Jaziel +Karim +Karson +Knox +Kristian +Lance +Lawrence +Luka +Markus +Moses +Nathanael +Nelson +Ramiro +Ray +Rocco +Shaun +Walter +Zaiden +Abdiel +Achilles +Adiel +Alvaro +Braeden +Bruno +Cannon +Clark +Cristopher +Darren +Eden +Finn +Giancarlo +Gilberto +Gionni +Ibrahim +Ignacio +Jerry +Joan +Kale +Kane +Landyn +Layne +Layton +Marvin +Mayson +Nickolas +Nikolai +Payton +Pierce +Prince +Reid +Rex +Rodolfo +Santana +Torin +Valentin +Zackary +Aarav +Ammon +Ariel +Benicio +Brayan +Braydon +Brodie +Bronson +Bryant +Callen +Carlo +Channing +Clay +Dallin +Dariel +Donald +Elian +Esai +Frankie +Giovani +Giovanny +Hernan +Jaxton +Jonas +Joziah +Junior +Larry +Malcolm +Mathias +Matias +Mitchell +Reagan +Rohan +Roland +Ronald +Rudy +Sage +Santos +Stefan +Sylas +Terrell +Trevon +Vance +Wade +Westin +Zavier +Ace +Agustin +Atreyu +Azariah +Blaine +Bo +Brigham +Brighton +Case +Chad +Colter +Darian +Daxton +Dezmond +Diesel +Hassan +Hendrix +Hyrum +Immanuel +Izaac +Jagger +Jamison +Jaxen +Jedidiah +Jimmy +Jorden +Joseluis +Jovanni +Juancarlos +Kasen +Kason +Kayson +Kelvin +Kenny +Kieran +Krew +Lucian +Marlon +Masen +Maxim +Nathen +Nico +Quentin +Quinton +Raphael +Roger +Rolando +Rory +Royal +Russell +Tony +Valentino +Winston +Yael +Zayne +Adolfo +Adrien +Alek +Amos +Apollo +Ares +Arlo +Aron +Aryan +Blaise +Bodhi +Braylen +Brett +Cale +Callan +Cristobal +Dangelo +Deacon +Douglas +Eliseo +Elisha +Emmitt +Franco +Gary +Gavyn +Gerald +Gibson +Gordon +Isaak +Isael +Jadon +Jael +Jamal +Jamie +Jet +Jovany +Jullian +Kael +Kameron +Keanu +Keaton +Khalil +Koen +Kolby +Kole +Kolten +Korbin +Kylan +Kyson +Leighton +Lennox +Leonard +London +Lyric +Magnus +Major +Marcelo +Marley +Matthias +Mikel +Niko +Odin +Osvaldo +Otto +Paulo +Quincy +Quintin +Rayden +Reece +Sonny +Stetson +Terry +Toby +Todd +Tommy +Ulises +Ulysses +Adonis +Adryan +Aedan +Ahmad +Alessandro +Archie +Augustine +Augustus +Benito +Bowen +Branson +Brendon +Briggs +Byron +Callum +Campbell +Carmelo +Casen +Cedric +Coleman +Conrad +Crosby +Darien +Darrell +Dayton +Demarcus +Duke +Dwayne +Edison +Efren +Enoch +Ethaniel +Ezio +Federico +Flynn +Grey +Harper +Humberto +Jaeden +Jai +Jamari +Jaren +Jaxxon +Jaycob +Jaydan +Jaydon +Johann +Jovani +Justus +Kamden +Kelton +Killian +Krish +Kurtis +Landry +Leandro +Leonidas +Mac +Malaki +Maxton +Maxx +Neil +Nyjah +Octavio +Osmar +Randall +Raymundo +Reese +Rhett +Ridge +Rodney +Ronin +Teagan +Tomas +Tyree +Tyrone +Viktor +Zacarias +Zakary +Zeke +Zephaniah +Aaden +Addison +Adriano +Allan +Ander +Andreas +Andrey +Anton +Asa +Ash +Aurelio +Austyn +Axl +Aydin +Azael +Bernardo +Billy +Bode +Braulio +Brogan +Caesar +Camron +Carl +Cashton +Cayson +Clyde +Coltin +Cortez +Craig +Cy +Damarion +Darnell +Davin +Daylon +Demetrius +Denzel +Derick +Dillan +Dion +Domenic +Edwardo +Eleazar +Eliel +Eliot +Elyjah +Emery +Emmit +Emory +Ernest +Eugene +Ever +Everardo +Ewan +Fidel +Finley +Francis +Freddy +Geovanny +Gian +Haven +Horacio +Hosea +Hugh +Isacc +Ishaan +Isidro +Jade +Jaron +Jericho +Jerome +Jesiah +Johnpaul +Jonathon +Jovan +Kaeden +Kain +Kalel +Kamari +Kamryn +Kannon +Karsen +Kennedy +Kingsley +Kymani +Lachlan +Lakai +Lee +Legend +Lucien +Maddix +Marcel +Marcelino +Mariano +Marques +Marquez +Matix +Mattix +Mauro +Maximillian +Mekhi +Micheal +Mohammad +Mohammed +Mykel +Myron +Nash +Nasir +Oakley +Oskar +Payson +Pranav +Quinten +Riot +Ronnie +Rowen +Ryden +Ryley +Salvatore +Sam +Shiloh +Siddharth +Stone +Tayden +Theo +Theseus +Tiago +Trace +Tristyn +Tyce +Van +Vaughn +Vernon +Vince +Yahya +Zaid +Zain +Liam +Noah +Jacob +Alexander +Daniel +Aiden +Michael +Mason +Anthony +Ethan +Jayden +Benjamin +Joseph +Gabriel +Elijah +Isaac +David +Matthew +Sebastian +Adrian +Andrew +Julian +Angel +Jesus +Joshua +Dylan +William +James +Christopher +Dominic +Logan +Jackson +Nathan +Samuel +Jose +Isaiah +Jonathan +Caleb +Christian +Damian +Luis +Luke +Ryan +Aaron +Carter +Landon +Wyatt +Jack +Santiago +Lucas +Carlos +Eli +Robert +Jaxon +Connor +Oliver +Jordan +Hunter +Levi +Evan +Ian +Xavier +Juan +Gavin +John +Josiah +Nathaniel +Owen +Brody +Colton +Jace +Lincoln +Nicholas +Jeremiah +Elias +Zachary +Mateo +Miguel +Blake +Tyler +Brayden +Kevin +Ayden +Adam +Thomas +Ryder +Ivan +Cameron +Easton +Brandon +Hudson +Leonardo +Henry +Jaxson +Diego +Vincent +Austin +Roman +Jason +Parker +Alejandro +Gael +Jorge +Axel +Charles +Manuel +Abraham +Grayson +Victor +Cooper +Tristan +Francisco +Ezra +Alex +Micah +Steven +Alan +Asher +Giovanni +Max +Carson +Eduardo +Ryker +Andres +Antonio +Ezekiel +Chase +Camden +Iker +Jesse +Oscar +Fernando +Greyson +Javier +Nolan +Justin +Abel +Cole +Kaleb +Maxwell +Silas +Declan +Bentley +Jameson +Mario +Miles +Aidan +Emilio +Marcus +Sergio +Brian +Emiliano +Jase +Jude +Cesar +Emmanuel +Hector +Joel +Weston +Bryan +Hayden +Richard +Eric +George +Kayden +Lorenzo +Martin +Maximiliano +Cristian +Derek +Jaden +Patrick +Preston +Sawyer +Braxton +Damien +Edward +Israel +Leo +Maximus +Wesley +Zane +Fabian +Zayden +Gage +Paul +Ruben +Sean +Cody +Bryson +Emmett +Bryce +Kaden +Kai +Nicolas +Ricardo +Jax +Cash +Dominick +Everett +Jonah +Omar +Tanner +Adan +Bennett +Edgar +Josue +Kaiden +Kyle +Rafael +Seth +Zander +Calvin +Erick +Erik +Gerardo +Harrison +Riley +Xander +Jeremy +Jake +Cayden +Colin +Conner +Jaime +Maddox +Adriel +Grant +Raul +Timothy +Armando +Bradley +Cruz +Dante +Dean +Enrique +Joaquin +Julio +Travis +Ismael +Marcos +Ramon +Theodore +Andre +Angelo +Gunner +Johnny +Malachi +Marco +Mark +Peter +Rylan +Esteban +Donovan +Jaiden +Jayce +Kingston +Raymond +Trevor +Alberto +Brady +Ernesto +Felix +Aden +Jared +Maverick +Roberto +Shane +Troy +Tucker +Tyson +Holden +Izaiah +Matteo +Nixon +Devin +Alexis +Ashton +Chance +Graham +Jayceon +King +Romeo +Andy +Avery +Frank +Leonel +Lukas +Noel +Peyton +Caden +Charlie +Edwin +Johnathan +Kenneth +Luca +Pedro +Scott +Simon +Yahir +Archer +Brooks +Keegan +Milo +Zaiden +Alonzo +Arthur +Corbin +Garrett +Orion +Spencer +Stephen +Waylon +Zachariah +Alfredo +Beckett +Damon +Danny +Desmond +Dominik +Drake +Drew +Griffin +Kade +Moises +Shawn +Ty +Beau +Brantley +Brock +Caiden +Kendrick +Marshall +Myles +Santino +Saul +Talon +Amir +Armani +Arturo +Bruce +Clark +Jaylen +Jayson +Jett +Kellen +Pablo +Thiago +Abram +Collin +Colt +Gustavo +Jasper +Kash +Maximilian +Porter +Rodrigo +Ryland +Clayton +Donald +Dustin +Gianni +Jakob +Tony +Dexter +Gideon +Julien +Julius +Kellan +Luciano +Ronin +Uriel +Aldo +Barrett +Beckham +Elliot +Finn +Gregory +Judah +Kameron +Ricky +Skyler +Sterling +Ali +Arian +Brayan +Enzo +Ezequiel +Gilbert +Guillermo +Isaias +Jaxen +Jay +Knox +Leon +Milan +Nathanael +Reed +Rocco +Santos +Tate +Trenton +Uriah +Zion +Alec +Alfonso +Alijah +Braden +Brendan +Brennan +Carmelo +Dakota +Derrick +Emanuel +Jeffrey +Kane +Keaton +Kolton +Kyler +Lucian +Malik +Mohamed +Nehemiah +Philip +Roy +Alonso +Ari +Cain +Dillon +Eden +Elliott +Frankie +Issac +Jamison +Keith +Landen +Major +Mauricio +Misael +Nikolas +Noe +Odin +Quinn +Ray +Ronan +Rory +Sylas +Taylor +Trent +Ulises +Valentin +Wade +Albert +Allen +Alvaro +Amari +Cason +Colten +Dallas +Davian +Devon +Harley +Lane +Lawrence +Leonidas +Orlando +Paxton +Salvador +Titus +Xzavier +Atticus +Cade +Hugo +Hyrum +Izaac +Johan +Malakai +Messiah +Niko +Raiden +River +Skylar +Tatum +Trey +August +Bruno +Conor +Conrad +Corey +Darius +Davis +Emerson +Hendrix +Jimmy +Jovanni +Kamden +Kason +Kobe +Korbin +Louis +Marcelo +Mathew +Phoenix +Quentin +Reid +Remington +Rocky +Rogelio +Royce +Solomon +Tadeo +Tobias +Walter +Alessandro +Cannon +Chandler +Cohen +Curtis +Cyrus +Deandre +Demetrius +Duke +Gilberto +Gunnar +Ibrahim +Jacoby +Jair +Jairo +Jaxton +Jensen +Joe +Joey +Larry +Leland +Mariano +Mikah +Nash +Neymar +Nickolas +Nikolai +Quincy +Rhett +Ronald +Rowan +Russell +Vicente +Yael +Anderson +Arjun +Azariah +Benson +Boston +Braiden +Callum +Case +Casey +Cassius +Dalton +Dane +Dariel +Dax +Deegan +Gauge +Giovani +Grady +Jionni +Jonas +Justice +Karter +Kian +Kolten +Lewis +Lionel +Madden +Mathias +Nico +Octavio +Pierce +Prince +Rodolfo +Rome +Soren +Terrance +Tomas +Trace +Tristen +Warren +Westin +Zavier +Zayne +Aarav +Abdullah +Achilles +Allan +Aydan +Ben +Benicio +Bodhi +Braydon +Bronson +Byron +Colby +Crew +Darian +Dario +Daxton +Deacon +Dilan +Elian +Eugene +Gannon +Harvey +Hiram +Izayah +Kalel +Kieran +Kristian +Kyrie +Landyn +Lennon +Leonard +Luka +Mack +Marcel +Markus +Mohammed +Princeton +Quinton +Reese +Rene +Rex +Rhys +Roger +Rohan +Valentino +Vaughn +Zackary +Abdiel +Aidyn +Alden +Amare +Arlo +Aron +Augustine +Bernardo +Boden +Bowen +Brent +Brett +Bridger +Brodie +Brycen +Casen +Colter +Dangelo +Dorian +Eddie +Eloy +Esai +Estevan +Felipe +Finley +Finnegan +Francis +Franklin +Gordon +Hamza +Isiah +Jadon +Jalen +Jedidiah +Jeshua +Joseluis +Kody +Lazaro +Lee +London +Malcolm +Matias +Memphis +Micheal +Mickey +Morgan +Moses +Rayden +Reece +Rudy +Sam +Sheldon +Slade +Sonny +Stefan +Teagan +Van +Vance +Winston +Zakaria +Adrien +Alaric +Alek +Amos +Aryan +Ayaan +Bradyn +Bryant +Callen +Camilo +Castiel +Dallin +Dawson +Dennis +Draven +Ean +Eleazar +Enoch +Franco +Frederick +Gadiel +Giancarlo +Gonzalo +Grey +Haven +Humberto +Ignacio +Isai +Jagger +Jessie +Jonathon +Joseangel +Junior +Kamari +Karsten +Keagan +Kelvin +Killian +Konnor +Kristopher +Layton +Leandro +Louie +Magnus +Marvin +Maurice +Maxim +Maximo +Payton +Phillip +Randy +Raphael +Stanley +Thaddeus +Toby +Tommy +Urijah +Vihaan +Walker +Yadier +Yair +Zain +Zechariah +Zeke +Ace +Ahmed +Alton +Ariel +Atreyu +Bane +Benito +Bentlee +Blaine +Braeden +Branden +Brice +Brigham +Brighton +Brixton +Carl +Chad +Channing +Clay +Clinton +Dash +Deon +Deven +Dimitri +Eder +Edison +Edson +Ethyn +Everardo +Ford +Forrest +Fredrick +Gerard +German +Hank +Hernan +Irvin +Isaak +Isael +Isidro +Jaycob +Jaziel +Jerry +Jovan +Jovani +Juanpablo +Kael +Kale +Karim +Karson +Keenan +Kent +Khalil +Kolby +Kymani +Lance +Landry +Loki +Marc +Marlon +Matthias +Mayson +Mitchell +Nikola +Ramses +Rey +Reyes +Rigdon +Roland +Rolando +Ronnie +Samson +Santana +Seamus +Terry +Theo +Wayne +Willem +Yeshua +Yousef +Zahir +Adalberto +Addison +Adolfo +Adonis +Agustin +Aleczander +Alfred +Alvin +Anakin +Andrei +Antoine +Aram +Aric +Arnold +Augustus +Aydin +Blaze +Bobby +Braylen +Brecken +Brenden +Broderick +Brogan +Brysen +Cael +Cairo +Cedric +Chris +Clifford +Cristiano +Cristobal +Darrell +Darren +Daryl +Demitri +Dion +Dominique +Efren +Eliam +Eliazar +Eliseo +Ellis +Ely +Emery +Emmitt +Ezio +Geovanni +Gino +Giovanny +Haiden +Harper +Hassan +Helios +Hussein +Immanuel +Irving +Ishaan +Izaak +Jaceon +Jamie +Jasiah +Jasiel +Jaxx +Jaycen +Jaydin +Jaydon +Jedediah +Jeffery +Jencarlos +Jet +Jullian +Kaison +Kanon +Karl +Karlos +Kasen +Kaysen +Kayson +Keoni +Koa +Kole +Kolt +Ledger +Lennox +Lyndon +Mac +Makai +Marley +Miguelangel +Mike +Monroe +Montgomery +Nelson +Notnamed +Omari +Oskar +Osmar +Payson +Quinten +Ralph +Randall +Raylan +Remy +Reynaldo +Riggs +Rodney +Ronaldo +Royal +Ryatt +Ryden +Rylee +Sabastian +Sage +Sammy +Shaun +Siddharth +Simeon +Stetson +Steve +Stryker +Tayden +Titan +Trevin +Tristian +Tyce +Wes +Westen +Westyn +Willie +Yandel +Zayd +Zayn +Zephaniah +Noah +Liam +Alexander +Daniel +Jacob +Sebastian +Ethan +Michael +Elijah +Anthony +Jayden +David +Matthew +Aiden +Mason +Logan +Benjamin +Isaac +Angel +Adrian +Julian +William +Gabriel +James +Andrew +Joseph +Christopher +Dylan +Jesus +Jose +Samuel +Oliver +Isaiah +Joshua +Wyatt +Nathan +Christian +Luke +Damian +Jackson +Dominic +Aaron +Caleb +Jonathan +Jaxon +Hunter +Jack +Luis +Carlos +Eli +John +Ryan +Carter +Lucas +Santiago +Levi +Connor +Gavin +Henry +Josiah +Ian +Jordan +Brandon +Mateo +Nicholas +Jace +Evan +Juan +Landon +Owen +Austin +Xavier +Kevin +Leonardo +Adam +Jeremiah +Thomas +Lincoln +Robert +Ivan +Grayson +Roman +Ayden +Giovanni +Jaxson +Antonio +Brayden +Nathaniel +Cameron +Brody +Elias +Ezra +Hudson +Diego +Easton +Vincent +Parker +Zachary +Charles +Colton +Ryder +Francisco +Miguel +Alejandro +Jason +Asher +Carson +Jorge +Victor +Manuel +Andres +Blake +Emmanuel +Emiliano +Ezekiel +Nolan +Oscar +Miles +Tyler +Axel +Bentley +Abel +Tristan +Eric +Jameson +Jesse +Leo +Cole +Cooper +Gael +Iker +Ricardo +Lorenzo +Maximus +Javier +Alan +Abraham +Alex +Kayden +Maxwell +Micah +Everett +Richard +Zane +Derek +Ryker +Bryan +Fabian +Sawyer +Steven +Emmett +Greyson +Xander +Declan +Emilio +Max +Weston +Chase +Silas +Aidan +Jude +Bryce +Hector +Israel +Jase +Jax +Justin +Nicolas +Brian +Adriel +Brady +Camden +Eduardo +Preston +Zayden +Cruz +Fernando +Joel +Cristian +George +Maximiliano +Hayden +Jaden +Kai +King +Colin +Patrick +Cash +Damien +Erick +Josue +Mark +Maverick +Theodore +Edgar +Jonah +Riley +Sergio +Cesar +Grant +Jayce +Marco +Mario +Wesley +Ismael +Kenneth +Marcus +Bennett +Bradley +Gage +Kaleb +Kaden +Omar +Ruben +Braxton +Calvin +Esteban +Jeremy +Joaquin +Johnny +Martin +Roberto +Tucker +Paul +Bryson +Cody +Corbin +Harrison +Kaiden +Timothy +Jett +Maddox +Tanner +Ashton +Pedro +Raymond +Sean +Troy +Devin +Erik +Gerardo +Rafael +Armando +Cayden +Edward +Kingston +Kyle +Orion +Paxton +Avery +Dean +Dominick +Elliot +Jaiden +Luca +Shane +Zander +Archer +Beckett +Lukas +Adan +Nixon +Alexis +Alonzo +Andy +Brantley +Collin +Conner +Graham +Malachi +Andre +Dante +Julio +Seth +Angelo +Ramon +Raul +Remington +Enzo +Gunner +Jake +Peter +Caden +Charlie +Knox +Leonel +Marcos +Pablo +Simon +Arthur +Beckham +Chance +Noel +Romeo +Spencer +Stephen +Arturo +Brooks +Keegan +Peyton +Trevor +Abram +Enrique +Gustavo +Jaime +Jasper +Milan +Reed +Rodrigo +Rowan +Rylan +Alberto +Elian +Emerson +Garrett +Johnathan +Julius +Orlando +Zion +Aden +Finn +Jeffrey +Myles +Titus +Atticus +Beau +Ezequiel +Odin +Raiden +Ryland +Skyler +Alfredo +Clayton +Donovan +Kameron +Killian +Landen +Phoenix +Porter +Saul +Amir +Colt +Eden +Edwin +Elliott +Felix +Frank +Griffin +Jared +Kellen +Malakai +River +Salvador +Shawn +Yahir +Zaiden +Armani +August +Cade +Issac +Jayceon +Jaylen +Ronin +Tyson +Daxton +Drake +Emanuel +Izaiah +Judah +Leon +Matteo +Moises +Noe +Quinn +Tate +Crew +Dallas +Dustin +Eddie +Ernesto +Harvey +Jayson +Kyler +Talon +Taylor +Ace +Barrett +Brock +Caiden +Dillon +Holden +Hugo +Isaias +Luciano +Mathew +Nehemiah +Remy +Rhett +Uriah +Alec +Alijah +Anderson +Arian +Bruce +Bruno +Clark +Cyrus +Damon +Dominik +Kade +Ricky +Royce +Solomon +Travis +Walter +Albert +Azariah +Cannon +Castiel +Colten +Deacon +Dexter +Gideon +Gilbert +Giovani +Gregory +Jay +Kolton +Leonidas +Milo +Rene +Rudy +Vicente +Alexzander +Amari +Bodhi +Dalton +Dax +Drew +Gannon +Guillermo +Leland +Marshall +Maximilian +Misael +Nash +Nikolai +Philip +Ronald +Scott +Sterling +Tony +Uriel +Ari +Benson +Braden +Brett +Brigham +Darius +Derrick +Efrain +Finley +German +Jaxen +Kane +Kash +Louis +Mauricio +Messiah +Neymar +Phillip +Rayden +Roger +Santos +Zachariah +Alfonso +Alvaro +Emmitt +Gary +Gianni +Keith +Kian +Kolten +Korbin +Malcolm +Mathias +Moses +Prince +Rogelio +Ronan +Rory +Tatum +Thiago +Tobias +Tristen +Ty +Warren +Xzavier +Ben +Bronson +Cain +Cason +Darian +Desmond +Devon +Dorian +Grady +Gunnar +Hamza +Jakob +Jamison +Johan +Jonas +Karter +Kasen +Kayson +Landyn +Lawrence +Mariano +Matias +Matthias +Nathanael +Nico +Nikolas +Rex +Rey +Rocco +Sullivan +Ulises +Valentin +Van +Walker +Waylon +Zayne +Agustin +Ali +Allen +Arlo +Atlas +Boston +Brennan +Carlo +Cassius +Cohen +Conrad +Cristiano +Dawson +Enoch +Gilberto +Hendrix +Jalen +Jensen +Junior +Keaton +Kellan +Kristian +Lennox +Lewis +Lionel +Lucian +Madden +Marc +Micheal +Mitchell +Quentin +Randy +Rodolfo +Russell +Samson +Santino +Toby +Tommy +Trenton +Abdiel +Aldo +Alonso +Ariel +Axl +Brenden +Brixton +Brycen +Camilo +Colby +Colter +Dane +Danny +Dario +Davis +Dilan +Heriberto +Hezekiah +Izayah +Jaxton +Joe +Joey +Jordyn +Kamden +Karson +Kason +Kristopher +Lane +Louie +Lyric +Maximo +Muhammad +Oakley +Reid +Robin +Rocky +Royal +Stetson +Trey +Wade +Winston +Yael +Zackary +Alessandro +Ares +Aries +Asa +Conor +Curtis +Dakota +Dale +Dariel +Deandre +Demetrius +Donald +Draven +Duke +Ellis +Emery +Estevan +Finnegan +Francis +Grey +Jairo +Jamari +Jaziel +Jericho +Julien +Justice +Kendrick +Khalil +Kieran +Kobe +London +Magnus +Makai +Malik +Marley +Neil +Payson +Ramiro +Rhys +Rowen +Tillman +Tomas +Zechariah +Ahmed +Alden +Alvin +Amare +Blaine +Bobby +Brayan +Brendan +Callen +Camdyn +Chandler +Darren +Decker +Denzel +Douglas +Ezio +Felipe +Flynn +Franco +Frankie +Franklin +Gadiel +Gauge +Gibran +Gonzalo +Harley +Ignacio +Jagger +Jair +Jasiel +Jon +Joziah +Kody +Lance +Larry +Legend +Lennon +Major +Marvin +Maurice +Melvin +Morgan +Niko +Octavio +Otto +Pierce +Ramses +Ray +Reece +Ridge +Ronnie +Sage +Sammy +Sky +Skylar +Sylas +Tadeo +Theo +Thor +Urijah +Uziel +Vaughn +Westin +Zain +Abdullah +Achilles +Alexandro +Allan +Apollo +Arjun +Axton +Aydan +Boden +Braydon +Braylon +Byron +Carmelo +Casey +Cayson +Chris +Cristobal +Dangelo +Denver +Dereck +Diesel +Ephraim +Freddy +Gaige +Gibson +Gordon +Graysen +Hank +Hansel +Harlan +Humberto +Hyrum +Jacoby +Jasiah +Jerry +Jeshua +Jimmy +Jovanni +Justus +Khalid +Koda +Koen +Kyren +Kyrie +Layton +Lee +Lucio +Luka +Masen +Memphis +Miguelangel +Mohammed +Nickolas +Patricio +Payton +Reyes +Rohan +Roland +Roy +Rylen +Sam +Stanley +Stefan +Terrance +Thaddeus +Titan +Tyce +Valentino +Yasiel +Yousif +Zavier +Abdirahman +Ammon +Anakin +Ander +Augustine +Azael +Bailey +Bernardo +Bowen +Brent +Brodie +Callan +Callum +Cedric +Chad +Constantine +Corey +Cory +Crosby +Damion +Efren +Eliam +Ely +Ender +Ernest +Fox +Gavyn +Gerald +Giancarlo +Gionni +Hiram +Ibrahim +Isai +Jadon +Jamie +Jaxxon +Jeramiah +Jermaine +Johnathon +Jonathon +Jovan +Juancarlos +Kael +Kain +Karim +Kashton +Konnor +Kylan +Kyson +Lawson +Layne +Leif +Lucius +Marcelino +Marcelo +Matix +Maxton +Mayson +Mikel +Mohamed +Nasir +Quincy +Ralph +Randall +Reagan +Rico +Shaun +Sonny +Soren +Steve +Terrence +Tripp +Wayne +Yadier +Yahel +Yair +Yusuf +Zaid +Aaden +Aarav +Abbas +Adonis +Adrien +Aedan +Aidyn +Alfred +Anders +Arik +Arius +Arley +Aron +Atreyu +Aven +Aydin +Azriel +Braeden +Braiden +Brandt +Braylen +Bryant +Brysen +Cairo +Cam +Canyon +Carl +Case +Casen +Channing +Cian +Clay +Clifton +Cy +Dallin +Damari +Davian +Davin +Davion +Deegan +Dennis +Deshawn +Dion +Dutch +Edmund +Eiden +Eleazar +Fausto +Forrest +Foster +Fred +Frederick +Garrison +Giovanny +Glenn +Harper +Howard +Hugh +Irvin +Ismail +Jadyn +Jai +Jarrett +Jaydan +Jedidiah +Jefferson +Jerome +Jionni +Jones +Jordon +Juanpablo +Kaeden +Kaidyn +Kaison +Kannon +Kase +Kaysen +Keanu +Keenan +Kelton +Kendall +Kimball +Kole +Krish +Lamar +Lazarus +Leandro +Leighton +Maddix +Maison +Malaki +Markus +Mauro +Mccoy +Merrick +Nathanial +Nelson +Nestor +Nikko +Nikola +Nyjah +Ollie +Pierre +Quinton +Rigdon +Rigoberto +Rockwell +Ruger +Sami +Sheldon +Sidney +Stryker +Sulaiman +Terry +Todd +Trace +Tru +Truman +Tytus +Vance +Vladimir +Wallace +Yeshua +Yousef +Zayn +Zeke +Zuriel +Mary +Helen +Dorothy +Margaret +Frances +Ruth +Evelyn +Alice +Virginia +Elizabeth +Florence +Marie +Mildred +Rose +Hazel +Louise +Josephine +Lucille +Grace +Gladys +Edna +Eleanor +Marjorie +Bernice +Thelma +Edith +Doris +Irene +Lillian +Catherine +Ethel +Anna +Ann +Esther +Marion +Katherine +Betty +Elsie +Gertrude +Mabel +Beatrice +Clara +Marian +Violet +Jean +Laura +Jessie +Lois +Marguerite +Mae +Myrtle +Pauline +Ruby +Emma +Eva +Genevieve +Sarah +Anita +Ida +Julia +Martha +Viola +Bertha +Charlotte +Pearl +Barbara +Juanita +Vera +Alma +Ellen +Kathleen +Kathryn +Lena +Maria +Agnes +Anne +Norma +Jennie +Muriel +Patricia +Vivian +Carmen +Isabel +Nellie +Dolores +May +Ella +Emily +Geraldine +Henrietta +Ramona +Adeline +Annie +Claire +Jane +Lorraine +Madeline +Maxine +Bessie +Georgia +Irma +Leona +Lucile +Lucy +Sally +Velma +Alberta +Angelina +Caroline +Fern +Inez +Olive +Roberta +Verna +Jeanne +Mamie +Miriam +Phyllis +Rita +Theresa +Wilma +Winifred +Amelia +Blanche +Harriet +June +Lola +Nina +Stella +Ada +Carrie +Cecelia +Gloria +Helene +Isabelle +Minnie +Sadie +Angela +Constance +Eileen +Elinor +Estelle +Flora +Ina +Jeanette +Loretta +Lupe +Matilda +Merle +Rosalie +Rosie +Teresa +Victoria +Alyce +Angeline +Audrey +Carmelita +Carol +Carolyn +Cecile +Della +Freda +Goldie +Hilda +Marcella +Melba +Olga +Sylvia +Yvonne +Amy +Clarice +Daisy +Elma +Elvira +Fannie +Geneva +Iris +Janet +Jeannette +Joyce +Lottie +Margarita +Maude +Shirley +Aileen +Angie +Astrid +Beulah +Beverly +Cecilia +Consuelo +Dora +Etta +Eunice +Hattie +Joan +Lee +Lenore +Nora +Rachel +Rosa +Sara +Willie +Adelaide +Adele +Adrienne +Althea +Antonia +Billie +Celia +Elaine +Erma +Eve +Faye +Francis +Harriett +Ila +Isabella +Jacqueline +Katharine +Katie +Lila +Lina +Lydia +Mable +Margie +Mercedes +Peggy +Rena +Rosemary +Sophia +Sue +Tillie +Mary +Dorothy +Helen +Margaret +Ruth +Frances +Alice +Evelyn +Marie +Elizabeth +Florence +Virginia +Mildred +Grace +Lillian +Hazel +Marjorie +Doris +Rose +Louise +Eleanor +Josephine +Thelma +Bernice +Gladys +Catherine +Anna +Edna +Irene +Esther +Beatrice +Ethel +Barbara +Elsie +Lucille +Edith +Jean +Gertrude +Betty +Jane +Marian +Marion +Mabel +Pauline +Ann +Ida +Agnes +Julia +Martha +Vera +Anita +Katherine +Anne +Lois +Jennie +Leona +Dolores +Ellen +Kathryn +Clara +Emma +Eva +Marguerite +Bertha +Alma +Jessie +Ruby +Vivian +Viola +Bessie +Genevieve +Lorraine +Pearl +Laura +Lena +Maria +Myrtle +Nellie +Norma +Emily +June +Muriel +Harriet +Olga +Patricia +Phyllis +Claire +Geraldine +Isabel +Juanita +Kathleen +Wilma +Aileen +Constance +Blanche +Charlotte +Georgia +Irma +Velma +Angelina +Stella +Adeline +Audrey +Maxine +Alberta +Annie +Roberta +Theresa +Carmen +Cecelia +Eileen +Ella +Inez +Nadine +Sylvia +Violet +Winifred +Carol +Elva +Erma +Loretta +Lucile +Lucy +Lydia +May +Minnie +Rosie +Verna +Alyce +Caroline +Estelle +Henrietta +Isabelle +Rita +Rosalie +Sarah +Amelia +Annette +Antoinette +Cecilia +Eunice +Fern +Jeanne +Madeline +Mae +Nancy +Olive +Rosa +Angela +Ernestine +Janet +Jeanette +Sara +Shirley +Adele +Beulah +Elena +Hilda +Lupe +Miriam +Opal +Ramona +Victoria +Alta +Consuelo +Cora +Della +Eloise +Elvira +Flora +Gloria +Harriett +Helene +Lela +Lola +Naomi +Sally +Wanda +Wilda +Ada +Amy +Christine +Dora +Elaine +Fay +Geneva +Gwendolyn +Kay +Lila +Mable +Matilda +Mercedes +Nell +Teresa +Tillie +Ursula +Angie +Bonnie +Celia +Daisy +Donna +Dorothea +Elinor +Eugenia +Freda +Lenore +Luella +Margery +Maude +Maurine +Melba +Merle +Natalie +Nettie +Nina +Nora +Peggy +Susan +Zelma +Adrienne +Alda +Berniece +Beverly +Carrie +Clarice +Cornelia +Edwina +Edythe +Effie +Ethelyn +Faye +Ina +Jeannette +Joan +Joyce +Juliet +Leila +Lenora +Leola +Madge +Mamie +Mattie +Neva +Paula +Rachel +Regina +Rena +Sadie +Selma +Sue +Verda +Mary +Dorothy +Helen +Margaret +Ruth +Frances +Alice +Virginia +Evelyn +Elizabeth +Marie +Mildred +Florence +Rose +Josephine +Edith +Grace +Edna +Marjorie +Eleanor +Doris +Louise +Gladys +Lucille +Hazel +Lillian +Irene +Anna +Bernice +Ethel +Esther +Barbara +Gertrude +Katherine +Thelma +Lois +Catherine +Elsie +Jean +Betty +Marion +Emma +Laura +Genevieve +Pauline +Clara +Marguerite +Martha +Ann +Mabel +Beatrice +Ruby +Marian +Agnes +Vivian +Charlotte +Eva +Isabel +Nellie +Anita +Anne +Bertha +Viola +Kathryn +Maria +Julia +Lena +Alma +Geraldine +Jane +Maxine +Ellen +Georgia +Kathleen +Patricia +Juanita +Lorraine +Roberta +Emily +Phyllis +Ida +Vera +Verna +Claire +June +Madeline +Dolores +Myrtle +Pearl +Velma +Jennie +Sarah +Eileen +Jessie +Winifred +Carmen +Olive +Victoria +Blanche +Harriet +Irma +Minnie +Violet +Wilma +Dora +Theresa +Leona +Mae +Bessie +Ella +Muriel +Norma +Stella +Amelia +Audrey +Olga +Janet +Shirley +Ada +Elinor +Lucy +Sylvia +Alberta +Fern +Angela +Ernestine +Inez +Lola +Nancy +Rita +Adele +Carol +Constance +Dorothea +Erma +Henrietta +Jeanne +May +Annie +Carolyn +Alta +Antoinette +Gwendolyn +Hilda +Lucile +Lupe +Aileen +Angelina +Beulah +Flora +Isabelle +Jeanette +Ramona +Alyce +Annette +Caroline +Cecilia +Eunice +Fay +Harriett +Miriam +Sophie +Adeline +Amy +Cecelia +Christine +Elaine +Elisabeth +Estelle +Helene +Jeannette +Joan +Melba +Naomi +Sally +Della +Jacqueline +Lenore +Loretta +Lydia +Mamie +Regina +Eleanore +Elva +Freda +Gloria +Lee +Lila +Sue +Yvonne +Angie +Annabelle +Antonia +Cecile +Claudia +Cora +Donna +Eloise +Katie +Nina +Rena +Rosalie +Tillie +Aurelia +Celia +Edythe +Elvira +Enid +Eugenia +Juana +Laverne +Lorene +Luella +Mable +Merle +Nadine +Nora +Olivia +Peggy +Petra +Sara +Susan +Veronica +Alva +Bonnie +Carrie +Cleo +Daisy +Dorris +Elma +Faye +Francis +Geneva +Goldie +Iva +Ivy +Katharine +Kay +Margie +Masako +Matilda +Mona +Rebecca +Rosa +Rosemary +Sadie +Shizuko +Wanda +Arline +Aurora +Beryl +Beth +Carmelita +Dolly +Effie +Erna +Etta +Eula +Evalyn +Janice +Juliette +Lenora +Lillie +Linda +Marcella +Margery +Marianne +Mercedes +Monica +Natalie +Nettie +Opal +Rae +Adelaide +Avis +Bernadine +Billie +Catalina +Christina +Clare +Corinne +Elenor +Fannie +Ferne +Ila +Iris +Leatha +Lela +Leola +Lily +Lorna +Lulu +Madeleine +Margret +Maude +Molly +Myrle +Paula +Priscilla +Rachel +Teresa +Veda +Wilda +Mary +Dorothy +Helen +Margaret +Ruth +Frances +Virginia +Elizabeth +Alice +Marie +Evelyn +Mildred +Florence +Rose +Marjorie +Edna +Eleanor +Josephine +Barbara +Bernice +Louise +Lillian +Katherine +Thelma +Grace +Edith +Hazel +Jean +Esther +Doris +Irene +Anna +Betty +Catherine +Lois +Martha +Jane +Ann +Lucille +Ethel +Gladys +Gertrude +Pauline +Eva +Elsie +Marion +Vivian +Beatrice +Marian +Ruby +Vera +Charlotte +Kathryn +Emma +Agnes +Clara +Lena +Violet +Marguerite +Jessie +Laura +Alma +Bertha +Ellen +Mabel +June +Viola +Anne +Maria +Phyllis +Ida +Julia +Pearl +Jennie +Geraldine +Juanita +Patricia +Dolores +Theresa +Lorraine +Lucy +Myrtle +Nellie +Shirley +Anita +Carmen +Muriel +Isabel +Madeline +Maxine +Alberta +Blanche +Ella +Emily +Kathleen +Nancy +Velma +Wilma +Winifred +Genevieve +Sarah +Olga +Ramona +Norma +Claire +Mae +Sylvia +Dorothea +Elaine +Lola +Roberta +Sally +Georgia +Jeanne +May +Annie +Constance +Olive +Audrey +Caroline +Jeanette +Carolyn +Eileen +Henrietta +Inez +Leona +Loretta +Lupe +Minnie +Adele +Bessie +Joan +Lydia +Miriam +Rita +Verna +Victoria +Yvonne +Ada +Angelina +Gwendolyn +Rosie +Stella +Dora +Elinor +Eunice +Adeline +Janet +Amelia +Angela +Harriet +Hilda +Isabelle +Rosalie +Aileen +Carol +Freda +Irma +Nadine +Beulah +Billie +Cecelia +Cora +Ernestine +Lucile +Melba +Peggy +Sophie +Antoinette +Della +Erma +Lillie +Masako +Opal +Rosa +Wanda +Daisy +Estelle +Fay +Fern +Nora +Alyce +Annette +Beth +Consuelo +Helene +Lily +Naomi +Rosemary +Angie +Arlene +Bonnie +Christine +Edythe +Eloise +Harriett +Jacqueline +Jeannette +Kay +Lorene +Luella +Marcella +Natalie +Nina +Alta +Beryl +Celia +Flora +Geneva +Iris +Laverne +Rachel +Rena +Sara +Teresa +Cecilia +Eda +Etta +Faye +Gloria +Guadalupe +Ina +Leah +Maurine +Nettie +Sadie +Shizue +Sue +Veronica +Adelaide +Amy +Arline +Beverly +Donna +Eleanore +Elva +Elvira +Hattie +Iola +Janice +Joy +Joyce +Leola +Lila +Loraine +Margery +Rowena +Susan +Alva +Annabelle +Carrie +Cleo +Elsa +Eugenia +Frieda +Goldie +Gretchen +Iva +Kiyoko +Lenora +Lenore +Lilly +Linda +Lorna +Mable +Minerva +Neva +Rebecca +Rosalind +Susie +Vesta +Winona +Zelma +Alicia +Antonia +Carmelita +Connie +Dolly +Elma +Florine +Hope +Hortense +Johanna +Juana +Juliette +Katharine +Lee +Leora +Luz +Madeleine +Madelyn +Margarita +Margie +Mattie +Mollie +Sallie +Aida +Aletha +Amanda +Annabel +Augusta +Bernadette +Clare +Clarice +Cruz +Dorris +Elisabeth +Elvera +Esperanza +Eve +Fannie +Gene +Jewel +Lela +Leonora +Leota +Lorena +Marianne +Maude +Millie +Myra +Nelda +Nell +Priscilla +Regina +Robin +Rosemarie +Roxie +Selma +Shizuko +Tosca +Valerie +Zelda +Mary +Dorothy +Helen +Margaret +Ruth +Frances +Evelyn +Virginia +Elizabeth +Marie +Alice +Florence +Mildred +Barbara +Rose +Marjorie +Eleanor +Lillian +Josephine +Thelma +Jean +Louise +Betty +Doris +Edith +Grace +Irene +Gladys +Lois +Lucille +Bernice +Catherine +Hazel +Katherine +Esther +Anna +Edna +Elsie +Gertrude +Martha +Marion +Beatrice +Pauline +Ethel +Jane +Laura +Vivian +Ann +Emma +Marguerite +Anne +Ida +Marian +Geraldine +Alma +Juanita +Vera +Eva +Genevieve +Emily +June +Kathryn +Mabel +Patricia +Phyllis +Charlotte +Muriel +Nellie +Viola +Ellen +Agnes +Anita +Bertha +Clara +Dolores +Lena +Pearl +Blanche +Norma +Jessie +Kathleen +Maxine +Ruby +Julia +Lorraine +Myrtle +Violet +Eileen +Jeanne +Carmen +Inez +Sarah +Olga +Wilma +Winifred +Jennie +Maria +Roberta +Leona +Madeline +Mae +Velma +Audrey +Flora +Isabel +Lucy +Alberta +Ramona +Amelia +Lucile +Minnie +Rita +Sylvia +Annie +Claire +May +Angelina +Eunice +Georgia +Rosalie +Victoria +Carol +Erma +Miriam +Stella +Adeline +Dorothea +Harriet +Henrietta +Ada +Bessie +Elaine +Irma +Lydia +Melba +Sally +Lupe +Theresa +Verna +Constance +Fern +Jeanette +Nancy +Shirley +Elinor +Peggy +Adele +Elvira +Janet +Naomi +Olive +Teresa +Yvonne +Jeannette +Joyce +Lenore +Dora +Isabelle +Lily +Loretta +Sara +Christine +Della +Hilda +Lola +Nadine +Nora +Antoinette +Beth +Beulah +Aileen +Amy +Angela +Caroline +Cecelia +Cora +Ella +Sue +Bonnie +Carolyn +Cecilia +Eloise +Helene +Opal +Sophie +Annabelle +Estelle +Geneva +Guadalupe +Joan +Margery +Connie +Jacqueline +Laverne +Lee +Masako +Nina +Adelaide +Alyce +Consuelo +Dolly +Elvera +Lila +Margie +Merle +Rosa +Wanda +Antonia +Arlene +Beverly +Daisy +Eleanore +Eugenia +Faye +Gloria +Harriett +Harriette +Haruko +Janice +Lorene +Luella +Marcella +Matilda +Mona +Nettie +Rosemary +Rosie +Susan +Susie +Yoshiko +Angie +Annette +Aurora +Beryl +Carmel +Celia +Corinne +Elma +Erna +Ernestine +Fay +Freda +Frieda +Gwendolyn +Leah +Lenora +Lilly +Lorena +Lula +Margarita +Marjory +Maude +Phoebe +Regina +Rosalind +Selma +Toshiko +Veronica +Vivienne +Wilda +Alta +Donna +Eda +Elna +Elva +Enid +Estella +Evalyn +Evelyne +Ione +Lillie +Mamie +Maybelle +Melva +Rosemarie +Sadie +Zelda +Billie +Carrie +Cecile +Cleo +Edwina +Elena +Goldie +Ila +Josie +Joy +Lora +Mercedes +Rachel +Rae +Rowena +Vesta +Zelma +Althea +Bettie +Christina +Clarice +Cynthia +Edythe +Elda +Elisabeth +Elnora +Fannie +Isabell +Juana +Katharine +Kimiko +Kiyoko +Linda +Lulu +Madeleine +Margarette +Mollie +Nedra +Nell +Neva +Olivia +Ora +Petra +Shizuko +Wilhelmina +Yolanda +Alva +Amalia +Augusta +Bette +Chieko +Clementine +Concha +Delfina +Delores +Dena +Effie +Elsa +Eve +Florine +Gail +Gemma +Gwen +Hannah +Hisako +Hortense +Imogene +Iola +Iris +Katie +Kay +Leanore +Leila +Leola +Leonora +Lina +Loraine +Lorna +Lucia +Marcia +Marianne +Mercy +Nona +Paula +Rebecca +Rena +Rhea +Rosamond +Rosina +Sophia +Tomiko +Mary +Dorothy +Helen +Margaret +Ruth +Virginia +Frances +Evelyn +Alice +Elizabeth +Marie +Florence +Josephine +Eleanor +Barbara +Rose +Mildred +Marjorie +Betty +Louise +Bernice +Lillian +Jean +Grace +Lois +Doris +Edith +Esther +Irene +Hazel +Jane +Lucille +Marion +Anna +Catherine +Katherine +Thelma +Gladys +Edna +Ann +Marian +Martha +June +Pauline +Ethel +Elsie +Eva +Patricia +Lorraine +Lena +Phyllis +Gertrude +Vivian +Charlotte +Emma +Clara +Juanita +Ruby +Beatrice +Anita +Vera +Ellen +Genevieve +Anne +Laura +Geraldine +Ida +Violet +Kathleen +Pearl +Agnes +Maxine +Kathryn +Julia +Viola +Marguerite +Annie +Jennie +Mabel +Harriet +Maria +Wilma +Emily +Muriel +Jessie +Inez +Myrtle +Alma +Bertha +Nellie +Norma +Angelina +Winifred +Janet +Madeline +Theresa +Eileen +Jeanne +Isabel +Lucy +Audrey +Nancy +Elaine +May +Olive +Alberta +Dolores +Olga +Blanche +Carmen +Claire +Sarah +Sylvia +Rita +Velma +Leona +Roberta +Carol +Lucile +Mae +Caroline +Stella +Bessie +Georgia +Minnie +Rosalie +Irma +Shirley +Adeline +Jeanette +Lydia +Ada +Adele +Carolyn +Ella +Flora +Aileen +Fern +Helene +Hilda +Amelia +Eunice +Henrietta +Melba +Ramona +Verna +Victoria +Sally +Constance +Dora +Lola +Elvira +Jeannette +Antoinette +Elva +Isabelle +Joan +Miriam +Naomi +Sara +Amy +Angie +Beverly +Donna +Erma +Gwendolyn +Harriett +Jacqueline +Loretta +Nora +Peggy +Teresa +Beulah +Bonnie +Cecelia +Rosie +Sophie +Wanda +Alta +Alyce +Angela +Elinor +Frieda +Sue +Annette +Beth +Celia +Christine +Gloria +Lily +Rena +Yvonne +Cora +Geneva +Jewel +Laverne +Lupe +Rachel +Selma +Annabelle +Daisy +Ernestine +Freda +Lorene +Rosemary +Susan +Adelaide +Consuelo +Dorothea +Elma +Estelle +Joyce +Lillie +Marcella +Nadine +Opal +Rosa +Eleanore +Georgina +Linda +Margie +Marjory +Billie +Eloise +Iris +Kay +Mamie +Mercedes +Merle +Toshiko +Della +Edythe +Eugenia +Faye +Fumiko +Goldie +Janice +Lenore +Regina +Carmelita +Chiyoko +Eda +Elsa +Emilia +Francis +Guadalupe +Haruko +Lee +Marcia +Margery +Mollie +Natalie +Shizuko +Susie +Wilda +Betsy +Diane +Fay +Iola +Kimiye +Leah +Millie +Sadie +Andrea +Aurora +Bettie +Carrie +Cecilia +Clarice +Claudia +Connie +Elisabeth +Enid +Evangeline +Hattie +Hope +Hortense +Jewell +Joy +Julie +Lorna +Luella +Mable +Margarita +Matilda +Maybelle +Melva +Millicent +Neva +Ora +Paula +Rebecca +Rosemarie +Veronica +Angeline +Arlene +Arline +Bernardine +Carmel +Carmela +Cynthia +Delphine +Dolly +Dorris +Gretchen +Harriette +Isabell +Katie +Lauretta +Leila +Lenora +Leota +Lottie +Lula +Madeleine +Masako +Matsuko +Molly +Myra +Nina +Petra +Rowena +Suzanne +Tillie +Yoneko +Zelda +Albina +Alda +Alvera +Belle +Bernadine +Camille +Cecile +Erna +Esperanza +Fannie +Gene +Grayce +Ina +Juana +Kiyo +Lina +Lora +Loraine +Meta +Nelda +Sybil +Verla +Addie +Adrienne +Benita +Beryl +Catalina +Chiyo +Delia +Delphina +Edyth +Elvera +Emilie +Etta +Evalyn +Ferne +Frankie +Georgette +Gwen +Haruye +Helena +Jerry +Judith +Leone +Lila +Lorena +Louella +Marcelina +Marilyn +Maryann +Mattie +Mona +Nita +Nona +Norine +Olivia +Shizu +Shizue +Sophia +Tomiko +Veda +Velda +Vivienne +Winona +Yolanda +Yoshiko +Zelma +Angelita +Antonia +Astrid +Avis +Ayako +Bette +Birdie +Carolina +Cathryn +Christina +Cleo +Delfina +Dixie +Effie +Elna +Erlinda +Ester +Faith +Fumi +Hannah +Hatsuko +Hellen +Idell +Ilene +Iona +Ione +Ivy +Josie +Jovita +Juliette +Katharine +Kimiko +Kiyoko +Lela +Leola +Lilly +Lucia +Lulu +Madelyn +Madge +Marianne +Martina +Maryellen +Mayme +Michiye +Mickey +Mignon +Misao +Nell +Nicolasa +Odessa +Ollie +Polly +Priscilla +Rosalind +Rosamond +Roxie +Sadako +Sheila +Theodora +Tina +Toshi +Trinidad +Wilhelmina +Willie +Winnifred +Yoshimi +Yukiye +Zita +Mary +Dorothy +Margaret +Helen +Ruth +Frances +Virginia +Evelyn +Alice +Elizabeth +Marie +Marjorie +Rose +Eleanor +Barbara +Josephine +Florence +Betty +Jean +Doris +Mildred +June +Grace +Louise +Lillian +Bernice +Edith +Thelma +Lois +Lucille +Anna +Gladys +Elsie +Jane +Esther +Irene +Catherine +Katherine +Marion +Edna +Marian +Ann +Hazel +Patricia +Gertrude +Pauline +Ethel +Martha +Kathryn +Marguerite +Clara +Phyllis +Anita +Beatrice +Lorraine +Vera +Geraldine +Agnes +Vivian +Emma +Ida +Charlotte +Ruby +Anne +Mabel +Norma +Jessie +Viola +Wilma +Audrey +Dolores +Ellen +Pearl +Eva +Myrtle +Jennie +Nellie +Julia +Juanita +Kathleen +Carol +Laura +Genevieve +Muriel +Violet +Carmen +Jeanne +Olga +Alma +Maxine +Winifred +Constance +Elaine +Emily +Lucy +Bertha +Harriet +Inez +Lena +Rita +Velma +Georgia +Sylvia +Janet +Sarah +Claire +Henrietta +Roberta +Annie +Madeline +Eileen +Leona +Maria +Nancy +Ramona +Theresa +Amelia +Olive +Alberta +Ella +Ada +Angelina +Victoria +May +Blanche +Caroline +Minnie +Shirley +Verna +Jeanette +Aileen +Lola +Hilda +Isabel +Laverne +Lucile +Melba +Peggy +Sally +Stella +Irma +Jeannette +Alta +Dora +Joan +Adeline +Fern +Miriam +Bessie +Rosalie +Flora +Mae +Consuelo +Dorothea +Loretta +Amy +Billie +Carolyn +Erma +Lydia +Rosie +Beverly +Elvira +Estelle +Helene +Isabelle +Lupe +Della +Elinor +Adele +Angela +Rachel +Cecilia +Christine +Nadine +Sophie +Cora +Eunice +Kay +Nina +Opal +Annette +Bonnie +Ernestine +Joyce +Angie +Antoinette +Elva +Gloria +Naomi +Natalie +Frieda +Lila +Mamie +Rena +Sadie +Teresa +Donna +Freda +Lily +Susan +Antonia +Eloise +Gwendolyn +Paula +Rosemary +Sara +Beulah +Cleo +Fumiko +Luella +Mable +Merle +Nora +Selma +Yvonne +Bettie +Cecelia +Connie +Eleanore +Geneva +Rosa +Toshiko +Alyce +Beth +Bette +Dolly +Faye +Ione +Joy +Kimiko +Kiyoko +Leah +Wanda +Yoshiko +Annabelle +Arlene +Aurora +Daisy +Eugenia +Jewel +Jewell +Linda +Lorene +Millie +Olivia +Theda +Yolanda +Cecile +Eda +Elda +Elvera +Fay +Georgette +Guadalupe +Haruko +Ila +Leila +Louisa +Masako +Mercedes +Regina +Shizuko +Sue +Carrie +Cynthia +Evalyn +Harriett +Hattie +Iris +Janice +Lela +Madeleine +Margery +Margie +Priscilla +Yaeko +Althea +Beryl +Christina +Clare +Clarice +Elsa +Enid +Fannie +Ivy +Jacqueline +Jayne +Katharine +Lenore +Leola +Lilly +Loraine +Lula +Marcella +Nell +Neva +Rae +Susie +Wilda +Alicia +Carmel +Chiyoko +Delores +Elma +Estella +Evelyne +Gene +Hannah +Hortense +Ina +Josefina +Juliette +Lucia +Madelyn +Margarita +Matilda +Mitsuye +Mollie +Myra +Petra +Winona +Aida +Aiko +Angeline +Belle +Bethel +Camille +Chiyeko +Edwina +Esperanza +Etta +Eve +Florine +Goldie +Judith +Julie +Katie +Kazuye +Lenora +Lottie +Marianne +Maybelle +Melva +Michi +Mitsuko +Molly +Nelda +Pansy +Phoebe +Rosella +Tillie +Trinidad +Wilhelmina +Yoshiye +Adelaide +Adrienne +Andrea +Annabel +Aurelia +Bernadine +Celestine +Claudine +Delphine +Dina +Dominga +Edythe +Effie +Elena +Elisabeth +Eula +Francine +Francis +Fumi +Georgina +Helena +Hisako +Hope +Kate +Kazuko +Lillie +Lorna +Lura +Marcia +Mattie +Michiko +Nettie +Nola +Pat +Rosalind +Rosaline +Rowena +Shizue +Shizuye +Sumiko +Teruko +Tina +Tomiko +Venus +Zelda +Zella +Addie +Aimee +Albina +Alda +Aletha +Aline +Alvina +Amalia +Arleen +Arline +Asako +Augusta +Ayako +Betsy +Carmelita +Carmella +Catharine +Cathryn +Celeste +Celia +Claudia +Corinne +Delia +Dixie +Elna +Eulalia +Ferne +Gretchen +Ilene +Isobel +Johanna +Kiyo +Leora +Leota +Lina +Lorena +Lorenza +Magdalena +Marcelle +Mariana +Mariko +Marina +Marjory +Maryann +Mina +Nan +Nobuko +Nona +Noreen +Paz +Polly +Rhoda +Rosemarie +Rosetta +Tatsuko +Thais +Tosca +Valerie +Veda +Veronica +Willa +Winnifred +Yoneko +Yukiko +Zelma +Zora +Mary +Dorothy +Helen +Margaret +Virginia +Ruth +Frances +Evelyn +Alice +Elizabeth +Barbara +Betty +Marie +Rose +Mildred +Florence +Eleanor +Marjorie +Josephine +Jean +Doris +Jane +Lillian +June +Grace +Louise +Bernice +Lois +Irene +Lucille +Anna +Edna +Patricia +Catherine +Gladys +Phyllis +Marian +Marion +Katherine +Edith +Thelma +Pauline +Hazel +Esther +Elsie +Gertrude +Martha +Ethel +Geraldine +Ann +Emma +Agnes +Lorraine +Eva +Anita +Beatrice +Vivian +Dolores +Charlotte +Laura +Clara +Mabel +Norma +Jessie +Muriel +Audrey +Ellen +Julia +Kathryn +Winifred +Vera +Genevieve +Ida +Lena +Kathleen +Marguerite +Violet +Juanita +Viola +Nellie +Jeanne +Jennie +Alma +May +Ruby +Shirley +Anne +Wilma +Carmen +Emily +Janet +Maria +Pearl +Lucy +Maxine +Isabel +Madeline +Sylvia +Roberta +Theresa +Blanche +Claire +Harriet +Nancy +Carol +Jeanette +Leona +Rita +Velma +Bertha +Sarah +Stella +Beverly +Eileen +Elaine +Georgia +Lupe +Olive +Adele +Joan +Mae +Miriam +Verna +Minnie +Myrtle +Olga +Angelina +Melba +Alberta +Annie +Flora +Lucile +Ramona +Bessie +Billie +Caroline +Ella +Lola +Adeline +Constance +Henrietta +Irma +Peggy +Antoinette +Fern +Sally +Dorothea +Ada +Inez +Victoria +Joyce +Loretta +Janice +Lydia +Connie +Isabelle +Rosalie +Laverne +Teresa +Dora +Eloise +Eunice +Helene +Nina +Carolyn +Christine +Della +Beulah +Elvira +Bette +Hilda +Gloria +Margie +Nadine +Naomi +Sara +Wanda +Alta +Amelia +Angela +Ernestine +Jeannette +Kay +Rosie +Aileen +Elva +Freda +Mamie +Sophie +Sue +Yvonne +Amy +Cecilia +Donna +Estelle +Angie +Carrie +Cecelia +Consuelo +Daisy +Jewel +Opal +Rachel +Rosemary +Susie +Annette +Beth +Elinor +Harriett +Jacqueline +Cora +Erma +Lily +Margery +Annabelle +Fumiko +Leola +Lila +Luella +Marcella +Margarita +Mercedes +Olivia +Paula +Susan +Toshiko +Aurora +Ayako +Geneva +Juana +Matilda +Nora +Rena +Yoshiko +Adelaide +Alyce +Bettie +Elena +Evalyn +Gwendolyn +Harriette +Lenore +Mable +Natalie +Shizuko +Theodora +Aiko +Arline +Edythe +Elvera +Enid +Estella +Eugenia +Frieda +Hope +Joy +Lenora +Lilly +Linda +Lorena +Lorene +Miyoko +Molly +Bonnie +Eleanore +Elise +Fay +Gail +Guadalupe +Kimiko +Leah +Marilyn +Mitsuko +Mollie +Nell +Sadie +Tillie +Valerie +Antonia +Arlene +Augusta +Carmel +Cecile +Celia +Clare +Cleo +Delores +Elisabeth +Elma +Faye +Ferne +Francis +Haruko +Hideko +Hortense +Iola +Josie +Katharine +Lela +Marcia +Marietta +Masako +Neva +Petra +Sybil +Willa +Yukiko +Adrienne +Avis +Christina +Faith +Francisca +Iris +Isabell +Kiyoko +Lee +Lora +Loraine +Miyeko +Polly +Priscilla +Rae +Rebecca +Rosa +Rowena +Shizue +Yoneko +Adela +Carmelita +Clarice +Concepcion +Dolly +Effie +Elsa +Helena +Hisako +Kimiye +Manuela +Marjory +Michiko +Mitsuye +Selma +Tomiko +Trinidad +Wilda +Winona +Alicia +Angeline +Aurelia +Catalina +Deloris +Delphine +Dina +Dixie +Esperanza +Ethelyn +Evangeline +Gene +Hattie +Ina +Ione +Ivy +Jayne +Josefina +Katie +Louisa +Maybelle +Melva +Nobuko +Rosina +Sallie +Sheila +Winnifred +Yolanda +Zelma +Aloha +Alva +Amalia +Bettye +Chiyoko +Claudia +Dorthy +Eda +Elna +Elnora +Emiko +Emilia +Erna +Goldie +Harumi +Ila +Iona +Jewell +Juliet +Kate +Leila +Lillie +Lottie +Lou +Lura +Madge +Mavis +Ora +Rufina +Sumiko +Suzanne +Toshi +Verda +Veronica +Vesta +Vivienne +Wilhelmina +Alvina +Belle +Bernadette +Berniece +Beryl +Bethel +Beverley +Celeste +Corinne +Diane +Diva +Dominga +Edwina +Eiko +Elda +Elynor +Emilie +Etta +Eula +Felipa +Florine +Fumiye +Fusaye +Garnet +Gretchen +Gwen +Hanako +Hannah +Haruye +Hulda +Iva +Janis +Johanna +Julie +Juliette +Kathlyn +Kazuko +Laurel +Leonor +Leslie +Lina +Lorna +Louella +Lucia +Lulu +Madelyn +Marianne +Marina +Maude +Meredith +Merle +Misako +Myra +Nettie +Nobu +Nona +Phoebe +Rafaela +Reba +Setsuko +Shizu +Taeko +Tina +Toshiye +Yasuko +Mary +Dorothy +Margaret +Helen +Virginia +Frances +Ruth +Barbara +Betty +Evelyn +Alice +Elizabeth +Marjorie +Marie +Jean +Eleanor +Rose +Mildred +Florence +Josephine +Doris +Jane +Lorraine +Lois +June +Lillian +Lucille +Esther +Patricia +Phyllis +Louise +Bernice +Edna +Grace +Catherine +Marian +Edith +Irene +Thelma +Anna +Marion +Martha +Ethel +Pauline +Elsie +Hazel +Gladys +Katherine +Dolores +Jeanne +Norma +Ann +Beatrice +Vivian +Geraldine +Anita +Violet +Ellen +Kathryn +Ida +Julia +Clara +Shirley +Gertrude +Emma +Mabel +Laura +Charlotte +Vera +Agnes +Wilma +Carmen +Marguerite +Eva +Jessie +Maria +Roberta +Viola +Emily +Rita +Ruby +Anne +Kathleen +Juanita +Nancy +Audrey +Genevieve +Lucy +Myrtle +Isabel +Maxine +Theresa +Winifred +Madeline +Alma +Jennie +Joan +Stella +Pearl +Alberta +Leona +Muriel +Carol +Sarah +Velma +Annie +Beverly +Lena +Janet +Angelina +Eileen +Bessie +Victoria +Claire +Elaine +Lupe +Nellie +Blanche +Flora +Verna +Harriet +Georgia +Joyce +Carolyn +Laverne +Adele +Janice +Yvonne +Bertha +Constance +Inez +Peggy +Gloria +Sally +Caroline +Mae +Olive +Ramona +Jeanette +May +Irma +Sylvia +Adeline +Eunice +Angie +Elva +Miriam +Hilda +Opal +Donna +Elvira +Rosie +Billie +Dora +Erma +Fern +Lola +Minnie +Teresa +Ella +Lydia +Olga +Rosalie +Amelia +Bette +Consuelo +Cora +Melba +Nadine +Nora +Antonia +Beth +Margie +Rosemary +Bonnie +Dorothea +Elinor +Eloise +Lily +Sophie +Aurora +Celia +Kay +Lucile +Ada +Alyce +Cecelia +Aileen +Annette +Bettie +Daisy +Helene +Cecilia +Jeannette +Loretta +Sara +Sue +Susan +Angela +Beulah +Fay +Frieda +Gwendolyn +Toshiko +Arlene +Christine +Connie +Della +Dolly +Elena +Freda +Luella +Marcella +Rena +Amy +Elisabeth +Guadalupe +Naomi +Alta +Antoinette +Catalina +Enid +Jacqueline +Leah +Lenore +Margarita +Nina +Rachel +Yoshiko +Aiko +Annabelle +Edythe +Eleanore +Esperanza +Harriett +Henrietta +Hope +Jewel +Lela +Lillie +Mamie +Masako +Olivia +Suzanne +Wanda +Camille +Elma +Fumiko +Geneva +Lorene +Mable +Margery +Matilda +Miyoko +Carrie +Cecile +Ernestine +Estelle +Haruko +Isabelle +Kazuko +Theda +Betsy +Beverley +Carmelita +Chiyoko +Delia +Harriette +Iola +Jenny +Judith +Lila +Linda +Maude +Merle +Mitsuko +Rebecca +Rosa +Shizuko +Trinidad +Augusta +Elsa +Eugenia +Faye +Gail +Georgina +Joy +Julie +Lula +Marjory +Vivienne +Ayako +Cleo +Delfina +Francis +Georgette +Hannah +Helena +Juana +Katharine +Madeleine +Mercedes +Neva +Ora +Paula +Adelaide +Alicia +Arline +Clarice +Claudia +Delphine +Dominga +Edwina +Elise +Elvera +Fannie +Hortense +Ione +Iris +Judy +Katie +Lee +Leola +Manuela +Marcia +Natalie +Nettie +Pat +Rae +Selma +Shizue +Teruko +Tomiko +Wilda +Yolanda +Althea +Ana +Aurelia +Beryl +Christina +Cornelia +Eula +Evangeline +Fumi +Georgene +Ivy +Jayne +Jewell +Josie +Leota +Lorena +Madge +Marcelle +Marianne +Marietta +Michiko +Mollie +Nola +Priscilla +Sachiko +Valerie +Veronica +Yoneko +Angeline +Avis +Belle +Corinne +Cynthia +Daphne +Dena +Dixie +Dorthy +Erna +Evalyn +Ferne +Fusaye +Gwen +Ila +Imogene +Joanne +Kiyoko +Leora +Loraine +Lynn +Marilyn +Marvel +Miyeko +Myra +Nathalie +Nell +Reba +Regina +Sadie +Setsuko +Sumiko +Theodora +Tillie +Veda +Verda +Winnifred +Zelda +Adela +Alvera +Andrea +Bernadine +Carmel +Carole +Catharine +Chizuko +Clare +Claudine +Concepcion +Diana +Diane +Elinore +Emilia +Emilie +Erlinda +Estella +Francine +Georgiana +Hanako +Hattie +Jerry +Juliet +Kimiko +Leila +Lenora +Leonora +Liberty +Lilly +Lorna +Luz +Madelyn +Marina +Maudie +Mavis +Melva +Millie +Misao +Mitsuye +Molly +Nadene +Natividad +Olympia +Ona +Petra +Refugio +Rhoda +Rosamond +Shizuye +Socorro +Stephanie +Susie +Toshiye +Vicenta +Yukiko +Addie +Adelle +Adrienne +Angelita +Antonette +Asako +Bobbie +Bruna +Carnation +Cathryn +Charlene +Chiyeko +Claribel +Corrine +Dorris +Eda +Elnora +Faith +Flossie +Francisca +Iona +Isabell +Isabella +Iva +Jacquelyn +Janette +Janis +Jesus +Josefina +Kimie +Lea +Lelia +Leonor +Leslie +Lora +Lottie +Lou +Marcelina +Maybelle +Mayme +Minerva +Mitsue +Miye +Mona +Nobuko +Norine +Pilar +Polly +Renee +Thais +Tina +Vesta +Willa +Winona +Mary +Dorothy +Helen +Margaret +Ruth +Virginia +Frances +Betty +Barbara +Evelyn +Alice +Marie +Mildred +Jean +Elizabeth +Florence +Doris +Marjorie +Rose +Eleanor +Josephine +Lois +June +Esther +Lorraine +Patricia +Lillian +Grace +Lucille +Louise +Jane +Bernice +Catherine +Irene +Phyllis +Thelma +Anna +Marian +Edith +Gladys +Elsie +Hazel +Martha +Geraldine +Marion +Edna +Jeanne +Norma +Violet +Vivian +Katherine +Maria +Ethel +Ann +Pauline +Anita +Eva +Dolores +Clara +Juanita +Charlotte +Ruby +Vera +Anne +Beatrice +Rita +Pearl +Gertrude +Lucy +Ellen +Alma +Shirley +Carmen +Emma +Kathryn +Genevieve +Lupe +Audrey +Ida +Laura +Mabel +Emily +Jennie +Agnes +Muriel +Nancy +Jessie +Maxine +Isabel +Wilma +Julia +Myrtle +Roberta +Kathleen +Lena +Marguerite +Viola +Bertha +Nellie +Bette +Janet +Sarah +Sylvia +Beverly +Constance +May +Blanche +Claire +Georgia +Peggy +Carol +Eileen +Madeline +Theresa +Adeline +Elaine +Joan +Alberta +Angelina +Gloria +Victoria +Annie +Flora +Velma +Amelia +Olive +Rosie +Ramona +Harriet +Dora +Laverne +Stella +Lola +Rosemary +Mae +Bessie +Carolyn +Dorothea +Leona +Janice +Jeanette +Minnie +Winifred +Donna +Esperanza +Irma +Joyce +Rosalie +Wanda +Fern +Verna +Sally +Caroline +Consuelo +Elva +Elvira +Miriam +Yoshiko +Bonnie +Cecelia +Cecilia +Margie +Aurora +Billie +Connie +Hope +Aileen +Annette +Ella +Erma +Inez +Adele +Amy +Angie +Antoinette +Elinor +Nadine +Sue +Teresa +Fumiko +Hilda +Lily +Loretta +Helene +Henrietta +Lucile +Yvonne +Celia +Faye +Jacqueline +Jeannette +Melba +Lydia +Mamie +Marcella +Margery +Olga +Sara +Susan +Angela +Christine +Daisy +Guadalupe +Marilyn +Arlene +Eleanore +Eunice +Isabelle +Jewel +Margarita +Ada +Alyce +Arline +Cleo +Gwendolyn +Haruko +Lorene +Rachel +Rebecca +Toshiko +Trinidad +Beth +Beulah +Della +Ila +Masako +Alta +Lila +Mercedes +Merle +Natalie +Nina +Opal +Susie +Estelle +Juana +Kay +Naomi +Nora +Paula +Regina +Annabelle +Antonia +Clare +Edythe +Eugenia +Fay +Frieda +Joy +Kiyoko +Rena +Rosa +Aiko +Carmel +Carmelita +Cora +Dolly +Ernestine +Harriett +Ayako +Christina +Delia +Ferne +Gail +Lenore +Lillie +Luella +Mona +Priscilla +Shizuko +Andrea +Beverley +Clarice +Corinne +Eloise +Iris +Josefina +Madelyn +Marina +Matilda +Petra +Rae +Sadie +Shizue +Beryl +Bettie +Dawn +Elsa +Goldie +Kimiko +Leah +Marcia +Nell +Sophie +Tillie +Veronica +Wilda +Yolanda +Adela +Adelaide +Camille +Carrie +Delores +Diana +Elisabeth +Elvera +Enid +Evangeline +Geneva +Harriette +Judith +Katie +Lela +Loraine +Marjory +Maybelle +Misao +Myra +Myrna +Nettie +Selma +Suzanne +Benita +Bernadette +Bernadine +Catalina +Chiyoko +Cruz +Diane +Dorris +Eda +Estella +Etta +Freda +Fumiye +Georgette +Ivy +Judy +Lee +Leola +Lottie +Lucia +Mable +Marietta +Mitsuko +Reba +Rosemarie +Socorro +Soledad +Teruko +Tomiko +Toshiye +Yaeko +Carole +Chieko +Chiyeko +Claudia +Edwina +Elma +Emiko +Fannie +Hannah +Hatsuye +Helena +Hisako +Isabell +Iva +Jayne +Josie +Katharine +Lorena +Mavis +Mollie +Neva +Nobuko +Olivia +Rowena +Sadako +Theodora +Wilhelmina +Winona +Adrienne +Aida +Alva +Amalia +Aurelia +Berniece +Cecile +Dominga +Effie +Elise +Francis +Georgina +Hortense +Ilene +Jacquelyn +Johanna +Kikuye +Lilly +Madeleine +Nona +Sachiko +Tomasa +Toni +Yoshiye +Zelma +Addie +Aletha +Alpha +Amparo +Ana +Belle +Betsy +Celeste +Charlene +Concha +Delfina +Dena +Felicia +Florine +Francisca +Fusako +Hiroko +Ione +Jewell +Jovita +Julie +Kazuko +Kimiye +Kimiyo +Leota +Leslie +Linda +Lolita +Lou +Louisa +Luz +Madge +Maida +Manuela +Matsuye +Maude +Melva +Meredith +Michiko +Midori +Mitzi +Molly +Patsy +Phoebe +Sumiko +Sybil +Takako +Valerie +Adelina +Akiko +Alba +Alda +Alicia +Althea +Ardis +Armida +Augustina +Avis +Bethel +Carroll +Cornelia +Dixie +Dollie +Dortha +Eldora +Elena +Elisa +Elna +Eloisa +Emilie +Erlinda +Erminia +Eula +Eulalia +Frank +Fumi +Geannie +Gene +Grayce +Herlinda +Hortencia +Ignacia +Imelda +Ines +Kimi +Lavonne +Leonore +Letha +Louella +Lura +Marcelle +Mariko +Mercy +Meta +Miyako +Miyeko +Miyoko +Monica +Nita +Ora +Phylis +Renee +Rosalind +Sallie +Sayoko +Setsuko +Shigeko +Sumi +Susana +Sydney +Una +Velda +Yoneko +Yukiko +Mary +Dorothy +Margaret +Helen +Virginia +Betty +Ruth +Barbara +Frances +Evelyn +Alice +Elizabeth +Marjorie +Doris +Jean +Marie +June +Mildred +Eleanor +Josephine +Florence +Patricia +Lois +Rose +Lillian +Lorraine +Jane +Irene +Phyllis +Lucille +Marian +Edith +Anna +Louise +Bernice +Marion +Esther +Geraldine +Edna +Grace +Shirley +Norma +Maria +Catherine +Pauline +Charlotte +Thelma +Gladys +Katherine +Martha +Ann +Jeanne +Beatrice +Dolores +Elsie +Hazel +Ethel +Gertrude +Eva +Carmen +Anita +Julia +Juanita +Vivian +Ellen +Muriel +Ruby +Genevieve +Emma +Kathryn +Vera +Kathleen +Clara +Audrey +Maxine +Beverly +Jennie +Rita +Alma +Gloria +Viola +Marguerite +Jessie +Laura +Nancy +Violet +Isabel +Anne +Wilma +Pearl +Agnes +Elaine +Ida +Janet +Angelina +Annie +Harriet +Sarah +Emily +Velma +Carol +Mabel +Nellie +Georgia +Bertha +Lupe +Lucy +Roberta +Bette +Constance +Dora +Joan +Winifred +Rosemary +Lena +Peggy +Ramona +Joyce +Bonnie +Jeanette +Stella +Yvonne +Alberta +Bessie +Verna +Claire +Wanda +Rosie +Jacqueline +Theresa +Victoria +Consuelo +Eileen +Eunice +May +Myrtle +Ella +Mae +Naomi +Olive +Sylvia +Antonia +Blanche +Carolyn +Jeannette +Sally +Annette +Caroline +Leona +Miriam +Dorothea +Laverne +Loretta +Billie +Connie +Elvira +Flora +Margie +Minnie +Rosalie +Amelia +Hilda +Erma +Guadalupe +Inez +Janice +Lola +Madeline +Bettie +Olga +Ada +Sara +Adeline +Fern +Yoshiko +Adele +Henrietta +Lydia +Teresa +Aurora +Cecilia +Eloise +Esperanza +Marcella +Mercedes +Antoinette +Della +Angie +Lila +Marilyn +Melba +Beulah +Gwendolyn +Margarita +Opal +Paula +Amy +Cecelia +Fay +Juana +Lucile +Nadine +Aileen +Irma +Kay +Kiyoko +Rachel +Frieda +Lily +Natalie +Cora +Elva +Fumiko +Margery +Sophie +Arline +Elinor +Hope +Mable +Angela +Celia +Elvera +Joy +Rosa +Susan +Susie +Arlene +Christine +Donna +Isabelle +Lenore +Nora +Olivia +Faye +Lillie +Alta +Freda +Manuela +Petra +Adelaide +Beth +Daisy +Dolly +Elma +Ernestine +Linda +Matilda +Millie +Miyoko +Rebecca +Sue +Carmel +Christina +Edythe +Enid +Estelle +Eugenia +Francisca +Harriett +Jayne +Michiko +Yuriko +Carrie +Eleanore +Josie +Lee +Masako +Ora +Regina +Rena +Selma +Tillie +Trinidad +Angelita +Aurelia +Francis +Geneva +Helene +Katharine +Luella +Madelyn +Mamie +Marjory +Merle +Nina +Patsy +Shizuko +Veronica +Alicia +Alyce +Catalina +Elena +Georgina +Jewell +Judy +Marianne +Priscilla +Carmelita +Carolina +Corinne +Delores +Elisabeth +Fumi +Ila +Ivy +Lenora +Louisa +Marcia +Mavis +Myra +Sadie +Socorro +Suzanne +Valerie +Yasuko +Adela +Ayako +Beryl +Fannie +Hideko +Judith +Kimiko +Leah +Loraine +Lorna +Lucia +Lula +Mitsuko +Sheila +Soledad +Vivienne +Aiko +Alvina +Amalia +Ana +Annabel +Beverley +Clarice +Colleen +Dixie +Elise +Eloisa +Eula +Goldie +Hattie +Iris +Kazuko +Leila +Leota +Luisa +Martina +Molly +Mona +Neva +Rae +Toshiko +Wilda +Zelma +Annabelle +Beatriz +Clare +Cleo +Diane +Edwina +Estella +Ferne +Frankie +Jeane +Jerry +Josefina +Leola +Lorene +Lucie +Maryann +Melva +Misao +Phoebe +Rosemarie +Sumiko +Alda +Avis +Berniece +Bruna +Cecile +Chiyoko +Claudia +Concha +Cruz +Dorthy +Emilie +Etta +Florine +Fusako +Hannah +Ina +Ione +Isabell +Isabella +Julie +Juliette +Katie +Leonore +Lilly +Luz +Marcelle +Maurine +Maybelle +Sachiko +Shizuye +Terry +Teruko +Velda +Yoshiye +Zelda +Antonette +Camille +Chizuko +Dawn +Delphine +Eda +Elsa +Emiko +Emilia +Evelyne +Fusaye +Georgette +Gregoria +Hatsumi +Hisako +Hortensia +Jewel +Jovita +Kiyo +Lavina +Leonor +Lora +Madge +Margot +Mariana +Marina +Matilde +Midori +Mitsuye +Nelda +Nettie +Nobuko +Norine +Pilar +Sadako +Shizue +Sonia +Tomasa +Tomiko +Willie +Yukiko +Adella +Alvera +Ava +Belen +Bernadine +Blossom +Carlota +Carole +Concepcion +Cynthia +Diana +Dortha +Earlene +Edyth +Elenore +Gene +Grayce +Hiroko +Hisaye +Hortense +Iva +James +Jenny +Jesus +Joanne +Johanna +Katheryn +Kazue +Kikue +Lela +Leonora +Lorenza +Madeleine +Magdalena +Marye +Maryjane +Mayme +Minerva +Nita +Pat +Paz +Refugio +Rosella +Rosetta +Veda +Vesta +Vina +Winona +Yoneko +Aletha +Althea +Amanda +Andrea +Angeline +Augustina +Bernadette +Betsy +Chiyeko +Claudine +Crystal +Delfina +Erminia +Ester +Evalyn +Faith +Fumie +Gemma +Georgiana +Germaine +Haruko +Hatsuko +Herminia +Ilene +Iola +Jo +Joanna +Kaoru +Kate +Kathrine +Kimiye +Laurel +Leone +Leslie +Lidia +Lorena +Lottie +Lucretia +Margarite +Marge +Mari +Marylouise +Maureen +Meredith +Micaela +Millicent +Natalia +Nicolasa +Nola +Polly +Reba +Renee +Reva +Rhoda +Rosalind +Rowena +Sakaye +Sandra +Satsuki +Shizu +Sybil +Tazuko +Theda +Theodora +Tina +Toshiye +Toyoko +Tsuyako +Ursula +Wilhelmina +Yolanda +Yuri +Zella +Zoe +Mary +Dorothy +Betty +Helen +Margaret +Virginia +Barbara +Ruth +Frances +Marjorie +Evelyn +Alice +Jean +Elizabeth +June +Marie +Doris +Patricia +Mildred +Eleanor +Florence +Josephine +Lorraine +Rose +Lois +Phyllis +Lillian +Lucille +Shirley +Irene +Catherine +Jane +Esther +Grace +Norma +Louise +Anna +Pauline +Bernice +Marion +Geraldine +Maria +Edith +Martha +Marian +Carmen +Jeanne +Gladys +Katherine +Gloria +Edna +Juanita +Anita +Thelma +Vivian +Dolores +Beatrice +Elsie +Ann +Elaine +Ethel +Kathleen +Audrey +Hazel +Maxine +Nancy +Rita +Vera +Eva +Beverly +Jennie +Julia +Laura +Gertrude +Viola +Charlotte +Muriel +Ruby +Bette +Genevieve +Lucy +Violet +Constance +Emma +Lupe +Mabel +Clara +Isabel +Winifred +Annie +Ida +Marguerite +Agnes +Nellie +Peggy +Dora +Anne +Emily +Kathryn +Sarah +Eileen +Pearl +Wilma +Angelina +Ellen +Lena +Carol +Janet +Myrtle +Roberta +Velma +Carolyn +Joyce +Alma +Theresa +Jessie +Margie +Rosie +Harriet +Rosemary +Verna +Bertha +Joan +Leona +Ramona +Victoria +Bessie +Claire +Georgia +Jacqueline +Consuelo +Alberta +Sylvia +Yvonne +Inez +Laverne +Miriam +Caroline +Donna +Jeanette +Stella +Bonnie +Elvira +Lydia +Sally +Antonia +Connie +Olga +Adeline +Blanche +Janice +Madeline +Sara +Ella +May +Wanda +Lola +Aurora +Flora +Minnie +Teresa +Amelia +Henrietta +Mae +Olive +Lily +Rosalie +Bettie +Eunice +Erma +Natalie +Adele +Amy +Angie +Elinor +Yoshiko +Billie +Hilda +Eloise +Fern +Marilyn +Nadine +Naomi +Hope +Margarita +Melba +Ada +Annette +Kiyoko +Margery +Dorothea +Jeannette +Angela +Celia +Gwendolyn +Lila +Esperanza +Guadalupe +Mable +Masako +Arlene +Beulah +Cecilia +Shizuko +Antoinette +Eugenia +Irma +Joy +Kay +Marcella +Rosa +Sophie +Christine +Rebecca +Aileen +Beth +Faye +Isabelle +Lucile +Nina +Opal +Petra +Toshiko +Ernestine +Loretta +Marjory +Mercedes +Elma +Elva +Juana +Lenore +Merle +Rachel +Socorro +Susan +Suzanne +Alta +Beverley +Della +Eleanore +Helene +Iris +Paula +Chiyoko +Emiko +Estelle +Fumiko +Josie +Lilly +Neva +Sue +Susie +Zelda +Catalina +Cora +Elena +Enid +Estella +Harriett +Katharine +Manuela +Michiko +Mitsuko +Nora +Sumiko +Adelaide +Elvera +Fay +Jewel +Leila +Molly +Nettie +Rena +Andrea +Daisy +Delia +Freda +Linda +Madelyn +Olivia +Tillie +Trinidad +Adela +Arline +Avis +Beryl +Carmel +Carrie +Cecelia +Concha +Delores +Diana +Dolly +Edythe +Francisca +Josefina +Judith +Lillie +Lorena +Magdalena +Matilda +Midori +Mitsuye +Mollie +Priscilla +Regina +Shizuye +Theodora +Yolanda +Adrienne +Bernadine +Carmelita +Carolina +Clarice +Corinne +Effie +Eldora +Evangeline +Francis +Frieda +Georgette +Gwen +Leola +Mamie +Phoebe +Rowena +Yoshiye +Alyce +Angelita +Bettye +Elisabeth +Emilia +Fumi +Geneva +Ila +Ione +Jayne +Lorna +Luella +Madeleine +Marcelle +Marianne +Marina +Maryjane +Misao +Tomiko +Wilda +Yuriko +Alicia +Amparo +Annabelle +Cecile +Chizuko +Christina +Concepcion +Cruz +Delfina +Delphine +Eda +Eiko +Elisa +Erna +Felicitas +Gail +Gene +Goldie +Harriette +Lavonne +Lorene +Louisa +Marcia +Maureen +Mona +Myra +Nelda +Nobuko +Noreen +Rosamond +Sadie +Selma +Terry +Valerie +Veronica +Zelma +Aida +Albertina +Allene +Alvera +Ayako +Bernadette +Camille +Clare +Claudia +Cleo +Colleen +Dawn +Dixie +Dorris +Etta +Eula +Herminia +Iva +Jackie +Jesus +Jewell +Jo +Julie +Juliette +Leah +Loraine +Mariko +Mavis +Patsy +Rae +Rosemarie +Sachiko +Teruko +Verda +Addie +Amalia +Ana +Belle +Betsy +Carole +Cornelia +Elinore +Elise +Faith +Hisako +Hortense +Hortensia +Ilene +Imogene +Ivy +Jacquelyn +Jovita +Kaoru +Leslie +Leta +Marilynn +Maurine +Meredith +Nona +Rhoda +Shigeko +Toshi +Yaeko +Aiko +Alda +Blossom +Catharine +Charlene +Chiyeko +Clarissa +Claudine +Cynthia +Dena +Doreen +Dorthy +Edyth +Elda +Elna +Elsa +Florine +Fusako +Georgina +Hideko +Hortencia +Ina +Joanne +Kaye +Kazue +Kimiko +Lenora +Leonor +Leonora +Lottie +Lucia +Luisa +Lula +Madge +Marietta +Masaye +Maybelle +Miyoko +Rosalia +Soledad +Sumiye +Thais +Tina +Toyoko +Vida +Yasuko +Akiko +Aurelia +Belen +Benita +Berniece +Bobbie +Bruna +Carmella +Corrine +Daphne +Dominga +Edwina +Eloisa +Emilie +Felipa +Fumiye +Fusaye +Gayle +Glenna +Jan +Joann +Josefa +Judy +Lee +Lela +Leora +Lidia +Lolita +Lora +Lynn +Martina +Matilde +Millie +Mitsue +Nedra +Nell +Reba +Reva +Rosalind +Ruthe +Sadako +Sharon +Sheila +Shizue +Sophia +Sybil +Takako +Veda +Vesta +Willie +Winona +Yoshie +Abbie +Alva +Alvina +Beatriz +Berta +Bonita +Candelaria +Carmela +Delphina +Dina +Dollie +Elayne +Erlinda +Erminia +Evalyn +Ferne +Georgene +Gina +Hana +Hattie +Jenny +Joaquina +John +Kathryne +Katie +Kikuye +Kimi +Kiyo +Lina +Livia +Madalyn +Margo +Marvel +Marylou +Marylouise +Merilyn +Michi +Millicent +Miyeko +Nada +Natividad +Nila +Norine +Ofelia +Ophelia +Palma +Pat +Raquel +Rosalee +Rosaline +Rosalyn +Rosella +Sallie +Setsuko +Tokie +Tomasa +Toshiye +Trini +Velda +Vivienne +Yoshi +Yuki +Yukiko +Mary +Dorothy +Betty +Margaret +Helen +Barbara +Virginia +Frances +Ruth +Marjorie +Elizabeth +Alice +Evelyn +Jean +Patricia +Doris +June +Marie +Florence +Josephine +Gloria +Eleanor +Mildred +Phyllis +Lorraine +Rose +Lois +Shirley +Lillian +Irene +Jane +Grace +Lucille +Louise +Esther +Catherine +Bernice +Marian +Gladys +Dolores +Geraldine +Norma +Anna +Jeanne +Katherine +Edith +Carmen +Marion +Beatrice +Edna +Beverly +Thelma +Maria +Elsie +Martha +Pauline +Ann +Nancy +Juanita +Ethel +Lupe +Marilyn +Elaine +Audrey +Vivian +Anita +Kathryn +Bette +Gertrude +Anne +Charlotte +Ruby +Eva +Julia +Clara +Muriel +Jessie +Rita +Hazel +Nellie +Vera +Genevieve +Marguerite +Violet +Laura +Kathleen +Jennie +Peggy +Viola +Lucy +Jacqueline +Roberta +Isabel +Ellen +Emma +Bertha +Pearl +Carol +Joan +Constance +Janet +Emily +Alma +Ida +Wilma +Carolyn +Dora +Maxine +Rosemary +Myrtle +Rosalie +Sarah +Harriet +Lena +Annie +Claire +Eileen +Margie +Agnes +Wanda +Winifred +Angelina +Georgia +Joyce +May +Consuelo +Laverne +Mabel +Donna +Sylvia +Rosie +Amelia +Alberta +Leona +Theresa +Verna +Yvonne +Bonnie +Madeline +Jeanette +Olga +Velma +Caroline +Nadine +Lola +Victoria +Mae +Stella +Blanche +Flora +Sally +Bessie +Minnie +Olive +Antonia +Elvira +Lydia +Naomi +Teresa +Bettie +Fern +Margarita +Ella +Miriam +Ramona +Guadalupe +Hope +Jeannette +Adeline +Annette +Connie +Lily +Aurora +Celia +Antoinette +Billie +Elva +Lila +Angie +Cecilia +Esperanza +Eunice +Inez +Loretta +Dorothea +Gwendolyn +Hilda +Isabelle +Ada +Daisy +Margery +Melba +Eloise +Janice +Marcella +Rachel +Henrietta +Irma +Sara +Angela +Arlene +Masako +Natalie +Toshiko +Yoshiko +Corinne +Erma +Mamie +Marilynn +Paula +Adele +Amy +Faye +Josefina +Eleanore +Elinor +Emiko +Kay +Sophie +Aileen +Annabelle +Arline +Priscilla +Beverley +Della +Jewel +Joy +Matilda +Merle +Rebecca +Geneva +Helene +Juana +Lucile +Rosa +Veronica +Alta +Beulah +Cecelia +Christine +Cora +Diana +Dolly +Lenore +Mable +Nina +Nora +Petra +Sadie +Susie +Carmelita +Concha +Ernestine +Harriett +Iris +Kiyoko +Lillie +Loraine +Lorna +Yolanda +Alyce +Beth +Carole +Catalina +Elma +Francis +Lorene +Mercedes +Mitsuko +Myra +Patsy +Cleo +Estelle +Haruko +Ina +Jacquelyn +Judith +Lucia +Marcia +Marjory +Opal +Rae +Rosalind +Socorro +Susan +Yuriko +Alicia +Angelita +Carrie +Clare +Colleen +Doreen +Elsa +Fay +Marianne +Michiko +Miyoko +Rosario +Sumiko +Bernadette +Chiyoko +Eda +Edythe +Elena +Luella +Manuela +Nettie +Neva +Nobuko +Olivia +Regina +Willa +Amalia +Antonette +Betsy +Bettye +Camille +Claudia +Dixie +Elvera +Fumiko +Goldie +Kimiko +Lenora +Sue +Trinidad +Winona +Yoshiye +Amparo +Andrea +Clarice +Cynthia +Edwina +Elisa +Emilia +Faith +Frieda +Jewell +Mavis +Midori +Molly +Pat +Polly +Sachiko +Sheila +Soledad +Theodora +Wilda +Yoneko +Aiko +Augustina +Cruz +Elisabeth +Eloisa +Enid +Eugenia +Evangeline +Fannie +Francisca +Gail +Georgette +Hideko +Hisako +Ila +Julie +Leah +Leila +Lottie +Madelyn +Magdalena +Melva +Mollie +Renee +Rosemarie +Selma +Setsuko +Suzanne +Adela +Adelaide +Bernadine +Christina +Dorthy +Ilene +Jayne +Jerry +Josie +Katie +Linda +Louisa +Luisa +Luz +Marge +Maryann +Misao +Nelda +Tillie +Aida +Ayako +Carmel +Carolina +Catharine +Diane +Effie +Ernestina +Freda +Hortencia +Isabell +Katharine +Kazuko +Lee +Lela +Lorena +Margret +Maryjane +Marylou +Shizue +Shizuko +Terry +Winnifred +Althea +Ana +Angeline +Beryl +Bobbie +Carlota +Carmela +Charlene +Chiyeko +Chizuko +Concepcion +Delphine +Enriqueta +Estella +Fumiye +Georgiana +Georgina +Harriette +Haruye +Imogene +Isabella +Joanne +Judy +Juliette +Kikuye +Leola +Leota +Lilia +Lynn +Maggie +Mariana +Marina +Maureen +Minerva +Mona +Peggie +Penelope +Phoebe +Prudence +Rena +Teruko +Veda +Verda +Adrienne +Alvina +Ardis +Arleen +Avis +Beatriz +Chieko +Claudine +Cornelia +Daphne +Delfina +Delores +Elda +Enes +Etta +Eula +Evelyne +Fusako +Hortense +Hortensia +Ignacia +Janis +Jeane +Jenny +Joann +Kazue +Leonor +Leslie +Leta +Lilly +Lora +Lula +Madeleine +Masaye +Mattie +Maurine +Mayme +Merilyn +Merry +Mitsuye +Ollie +Ora +Rhoda +Robert +Robin +Rosella +Rosetta +Santos +Shirlee +Shizuye +Valentina +Violette +Vivienne +Yukiko +Zelda +Zella +Adella +Aimee +Akiko +Alexandria +Audree +Bebe +Berneice +Berniece +Bruna +Charlyne +Darlene +Dominga +Dona +Elinore +Emilie +Ester +Evalyn +Felicitas +Florine +Francine +Fujiko +Gayle +Gene +Gerry +Grayce +Hannah +Hattie +Helyn +Herlinda +Iona +Ivy +Janette +Josefa +Justine +Kaoru +Kathlyn +Kimi +Kimiye +Kimiyo +Lavern +Leone +Letha +Lidia +Lina +Lura +Marcelle +Mari +Mariko +Marylee +Marylouise +Maybelle +Melvina +Miyeko +Monica +Natalia +Nell +Noreen +Ofelia +Ophelia +Palma +Patti +Roma +Rosalyn +Roselyn +Sakaye +Sandra +Shigeko +Simona +Sofia +Sumiye +Sybil +Tamiko +Tina +Tomasa +Toshiye +Tsuyako +Valerie +Verla +Vernice +Vida +Yaeko +Yasuko +Yayeko +Yuri +Mary +Betty +Dorothy +Barbara +Margaret +Helen +Virginia +Ruth +Frances +Patricia +Marjorie +Alice +Jean +Elizabeth +Evelyn +Marie +Doris +Shirley +Eleanor +June +Gloria +Josephine +Lois +Florence +Lorraine +Phyllis +Rose +Mildred +Maria +Norma +Lillian +Esther +Dolores +Carmen +Lucille +Irene +Marian +Bernice +Grace +Thelma +Catherine +Anna +Louise +Jeanne +Geraldine +Beverly +Marilyn +Pauline +Martha +Jane +Katherine +Edith +Marion +Edna +Charlotte +Vivian +Nancy +Beatrice +Hazel +Elsie +Gladys +Ann +Anita +Laura +Juanita +Ethel +Jacqueline +Audrey +Maxine +Bette +Eva +Lupe +Elaine +Ruby +Muriel +Rita +Kathleen +Kathryn +Gertrude +Jennie +Lucy +Carol +Consuelo +Julia +Violet +Vera +Clara +Emma +Jessie +Wilma +Agnes +Nellie +Peggy +Anne +Joyce +Isabel +Joan +Roberta +Sarah +Ellen +Eileen +Angelina +Rosemary +Janet +Genevieve +Pearl +Rosie +Constance +Emily +Ida +Winifred +Annie +Laverne +Marguerite +Carolyn +Wanda +Ramona +Bonnie +Mabel +Sylvia +Viola +Dora +Velma +Alberta +Yvonne +Margie +Bertha +Alma +Theresa +Inez +Lena +Aurora +Claire +Amelia +Elvira +Stella +Bessie +Jeanette +Nadine +Victoria +Donna +Janice +Madeline +Connie +Leona +Sally +Bettie +Lola +Guadalupe +Georgia +May +Myrtle +Harriet +Mae +Lila +Rosa +Lily +Lydia +Blanche +Esperanza +Loretta +Margarita +Miriam +Olga +Adeline +Antonia +Teresa +Verna +Eloise +Rosalie +Cecilia +Flora +Marcella +Arlene +Celia +Joy +Adele +Henrietta +Paula +Angie +Rachel +Sara +Christine +Ella +Eunice +Olive +Yoshiko +Aileen +Colleen +Ernestine +Linda +Margery +Opal +Ada +Cecelia +Lucile +Minnie +Dorothea +Melba +Naomi +Delores +Fern +Mercedes +Petra +Priscilla +Suzanne +Angela +Antoinette +Caroline +Elinor +Erma +Hilda +Rebecca +Beverley +Jeannette +Nora +Sophie +Toshiko +Arline +Gwendolyn +Hope +Irma +Marilynn +Nina +Cora +Elva +Harriett +Merle +Beulah +Doreen +Iris +Lorene +Socorro +Dolly +Eleanore +Susan +Annabelle +Estelle +Fay +Georgette +Jewel +Tillie +Yolanda +Billie +Carole +Emiko +Juana +Kiyoko +Natalie +Shizuko +Alyce +Annette +Aurelia +Eugenia +Fumiko +Josefina +Leah +Luella +Rena +Yuriko +Amy +Daisy +Elena +Elma +Elvera +Faye +Jesus +Katharine +Kay +Marcia +Rosemarie +Susie +Clarice +Gerry +Jacquelyn +Lorna +Manuela +Marianne +Molly +Tomiko +Alta +Concepcion +Concha +Enid +Frieda +Hisako +Isabelle +Laurel +Lillie +Masako +Matilda +Midori +Myra +Patsy +Aiko +Ana +Carrie +Delfina +Edythe +Elsa +Harriette +Joanne +Lee +Lenore +Lucia +Michiko +Olivia +Pat +Rowena +Veronica +Carolina +Catalina +Christina +Clare +Corinne +Diana +Georgina +Helene +Kimiko +Mavis +Melva +Soledad +Trinidad +Alicia +Angelita +Beth +Camille +Carmel +Carmelita +Cleo +Della +Freda +Geneva +Ina +Judith +Judy +Lenora +Maurine +Mona +Sachiko +Shirlee +Sue +Amalia +Bettye +Cynthia +Erlinda +Estella +Haruye +Jayne +Leslie +Lilly +Magdalena +Marina +Marjory +Mitsuko +Ofelia +Selma +Wilda +Yoneko +Andrea +Berniece +Chiyoko +Chizuko +Claudia +Francisca +Gene +Hideko +Hortense +Isabell +Mable +Madelyn +Maureen +Natividad +Polly +Sumiko +Valerie +Veda +Bobbie +Cecile +Cornelia +Diane +Francis +Hortensia +Jewell +Kate +Kazuko +Leatrice +Lorena +Lottie +Madeleine +Madge +Maryann +Sadie +Sandra +Teruko +Adelina +Beryl +Beverlee +Carlota +Cruz +Crystal +Dawn +Emilia +Evangeline +Georgiana +Glenna +Goldie +Julie +Leila +Leonor +Louisa +Mamie +Mariko +Millicent +Miyoko +Neva +Phoebe +Rae +Rosalind +Tomasa +Toni +Ursula +Vivienne +Yasuko +Adelaide +Adrienne +Amparo +Avis +Ayako +Charlene +Delia +Dixie +Eldora +Emilie +Enriqueta +Evalyn +Florine +Frankie +Fusako +Gail +Grayce +Herlinda +Ila +Ione +Iva +Jo +John +Josie +Juliet +Lavonne +Lora +Loraine +Marcelina +Margarette +Marietta +Marybelle +Mattie +Nan +Nelda +Nettie +Nona +Ophelia +Ora +Patty +Renee +Rhoda +Rosario +Sallie +Willa +Yaeko +Yoshiye +Yukiye +Adela +Allene +Armida +Beatriz +Bebe +Billee +Bruna +Camilla +Carmela +Chiyeko +Daphne +Dorris +Eda +Effie +Elda +Elisa +Eulalia +Faith +Felicitas +Fumi +Gayle +Hannah +Herminia +Imogene +Jenny +Laverna +Lela +Leota +Maryellen +Merry +Mina +Mitsuye +Mollie +Nell +Nita +Rafaela +Regina +Sharon +Terry +Tosca +Velda +Wilhelmina +Yuri +Abbie +Akiko +Alda +Alvina +Angel +Becky +Belen +Belva +Betsy +Blossom +Carmella +Dale +Dollie +Earline +Eiko +Elnora +Ester +Etta +Eula +Fannie +Gilda +Gwen +Hester +Janis +Jeannie +Katheryn +Katie +Kiyo +Leola +Leonora +Lilia +Luana +Marcelle +Marge +Martina +Matilde +Mayme +Melvina +Mercy +Millie +Misako +Misao +Mitzi +Nobuko +Pamela +Pansy +Shizue +Shizuye +Silvia +Theodora +Toshiye +Verda +Yoshie +Albina +Alva +Angeline +Antonette +Antonio +Ardath +Belia +Bella +Belle +Bernadette +Bernadine +Berta +Carolyne +Carroll +Cathleen +Celestine +Charline +Chieko +Concetta +Delphina +Delphine +Dena +Dominga +Earlene +Elenore +Elinore +Eloisa +Emelia +Erna +Estela +Felipa +Ferne +Fusaye +Georgianna +Ginger +Gregoria +Hanako +Helena +Hilaria +Hiroko +Hisaye +Holly +Ines +Iola +Ivy +Jackie +Jacklyn +Janette +Jeane +Joann +Juliette +Kazuye +Kimi +Lavon +Letha +Lotus +Lula +Luz +Madalyn +Margret +Marna +Maryjane +Marylouise +Masae +Maudie +Merilyn +Meta +Micaela +Mieko +Natalia +Patti +Paulina +Refugio +Rosina +Sabina +Sheila +Sonia +Sumiye +Suzan +Sybil +Trini +Winnifred +Winona +Yukiko +Zelma +Zoe +Mary +Betty +Dorothy +Barbara +Helen +Margaret +Virginia +Patricia +Ruth +Frances +Marjorie +Jean +Doris +Alice +Shirley +Evelyn +Elizabeth +Lois +Gloria +June +Eleanor +Marie +Mildred +Lorraine +Josephine +Florence +Phyllis +Maria +Rose +Norma +Irene +Esther +Beverly +Lillian +Marian +Grace +Lucille +Louise +Marilyn +Carmen +Marion +Geraldine +Dolores +Jane +Bernice +Jeanne +Anna +Catherine +Martha +Jacqueline +Beatrice +Edith +Pauline +Eva +Elaine +Edna +Juanita +Carol +Nancy +Anita +Audrey +Joyce +Vivian +Gladys +Ann +Ethel +Vera +Maxine +Katherine +Elsie +Thelma +Laura +Peggy +Kathleen +Ruby +Lucy +Charlotte +Joan +Julia +Violet +Rita +Lupe +Jessie +Kathryn +Jennie +Hazel +Ida +Carolyn +Bette +Viola +Isabel +Clara +Consuelo +Emma +Dora +Eileen +Roberta +Gertrude +Emily +Rosemary +Bertha +Wanda +Agnes +Anne +Donna +Elvira +Ellen +Rosie +Wilma +Laverne +Muriel +Nellie +Genevieve +Sally +Claire +Angelina +Annie +Sarah +Stella +Marguerite +Janet +Constance +Pearl +Aurora +Georgia +Bonnie +Harriet +Ramona +Margie +Sylvia +Bettie +Yvonne +Mabel +Connie +Janice +Victoria +Lena +Rosalie +Nadine +Rosa +Leona +Jeanette +Theresa +May +Celia +Olga +Antonia +Verna +Alberta +Amelia +Madeline +Sara +Alma +Elinor +Lydia +Blanche +Lola +Bessie +Flora +Henrietta +Margarita +Myrtle +Teresa +Velma +Mae +Olive +Rachel +Inez +Naomi +Caroline +Ella +Jeannette +Amy +Angie +Billie +Loretta +Winifred +Joy +Esperanza +Fern +Irma +Lila +Lily +Ada +Colleen +Miriam +Patsy +Aileen +Antoinette +Gwendolyn +Socorro +Catalina +Guadalupe +Hilda +Hope +Margery +Minnie +Rebecca +Sophie +Adeline +Eunice +Josefina +Mercedes +Arlene +Cecilia +Corinne +Jacquelyn +Linda +Yoshiko +Cecelia +Erma +Iris +Marcia +Melba +Annabelle +Annette +Cora +Priscilla +Suzanne +Adele +Alicia +Daisy +Dorothea +Ernestine +Paula +Yolanda +Beulah +Doreen +Juana +Alta +Angela +Marcella +Susan +Christine +Elena +Nora +Shirlee +Delores +Elva +Isabelle +Marilynn +Beverley +Kay +Natalie +Nina +Opal +Tillie +Aiko +Dolly +Estella +Helene +Lorene +Ofelia +Petra +Toshiko +Trinidad +Amalia +Delia +Eleanore +Jewel +Lucile +Manuela +Masako +Della +Edythe +Elisa +Lenore +Lillie +Beth +Carolina +Carrie +Hortense +Joanne +Josie +Kiyoko +Leah +Lenora +Molly +Nettie +Pat +Andrea +Angelita +Charlene +Diana +Eloise +Georgette +Luz +Olivia +Sheila +Claudia +Eugenia +Evangeline +Leatrice +Loraine +Rena +Soledad +Sue +Amparo +Carmel +Etta +Fumiko +Hortensia +Iva +Jo +Lela +Rosario +Theodora +Velia +Adela +Ana +Concha +Haruko +Jackie +Jovita +Katharine +Lee +Lorna +Merle +Michiko +Miyoko +Myra +Regina +Selma +Susie +Terry +Valerie +Alyce +Ayako +Bernadette +Beryl +Christina +Diane +Elvera +Estelle +Harriett +Jenny +Judith +Kimiko +Leila +Lilly +Louisa +Luella +Mable +Madelyn +Marjory +Melva +Ophelia +Adelina +Bettye +Bruna +Carmelita +Clarice +Cleo +Concepcion +Emiko +Fannie +Fay +Faye +Freda +Geneva +Ila +Imogene +Isabell +Joann +Leola +Leora +Maybelle +Rosemarie +Sachiko +Sadie +Shizuko +Sumiko +Cynthia +Darlene +Dixie +Francisca +Gene +Hideko +Jeane +Jerry +Laurel +Leslie +Mamie +Matilda +Mitsuko +Nelda +Zelda +Augustina +Delphine +Elsa +Frieda +Gail +Helena +Janis +John +Julie +Juliet +Juliette +Luisa +Madeleine +Marianne +Mariko +Maureen +Mercy +Millie +Misao +Mona +Neva +Nobuko +Sybil +Toni +Wilda +Adrienne +Arline +Aurelia +Belen +Blossom +Camille +Carmela +Chiyoko +Elisabeth +Emilie +Francis +Georgina +Goldie +Grayce +Ina +Judy +Kazuko +Lolita +Lorena +Magdalena +Maryann +Maryjane +Merilyn +Rosaline +Verda +Winona +Yukiko +Adelaide +Akiko +Ardis +Arleen +Daphne +Effie +Elise +Eloisa +Emilia +Faith +Felicitas +Georgiana +Gregoria +Ione +Joanna +Leonor +Lucia +Maggie +Millicent +Norine +Phoebe +Rae +Rafaela +Ruthe +Sadako +Shizue +Veronica +Vivien +Aline +Armida +Avis +Bernadine +Berta +Celestine +Corrine +Dawn +Denise +Dollie +Dorris +Edwina +Elma +Erlinda +Francine +Gerry +Glenna +Gwen +Herlinda +Hisako +Jayne +Katie +Lauretta +Lula +Marilouise +Micaela +Midori +Miyo +Mollie +Ora +Refugio +Rhoda +Rosalia +Shirlie +Sophia +Tina +Tomiko +Vicenta +Winnifred +Angeline +Annabell +Ardith +Betsy +Bobbie +Carole +Chiyeko +Clotilde +Cornelia +Cruz +Dana +Dina +Ernestina +Eve +Fumi +Georgie +Harriette +Hattie +Ileen +Jesus +Leta +Lora +Lottie +Lucretia +Lynn +Marcheta +Marietta +Marina +Marvel +Maurine +Mitsuye +Naoma +Nita +Noreen +Pilar +Reba +Robert +Rosalyn +Santos +Sharon +Shigeko +Sofia +Susana +Tomasa +Velda +Willa +Winnie +Yoshiye +Albertina +Ardath +Asako +Augusta +Bebe +Benita +Cecile +Chizuko +Clare +Dale +Delfina +Delma +Dorthy +Elda +Enes +Enid +Estela +Felipa +Fusaye +Gay +Gayle +Georgianna +Gilda +Hanako +Helyn +Herminia +Ilene +Janie +Jeannie +Johanna +Justine +Kimiye +Laurene +Lavon +Lelia +Letitia +Lilia +Lyla +Margarite +Masae +Merry +Mickey +Miyeko +Myrna +Natividad +Nona +Otilia +Pamela +Pola +Polly +Renee +Robin +Romelia +Rosella +Rowena +Sabina +Sonia +Sumi +Teruko +Therese +Vida +Willie +Yasuko +Yuriko +Zoe +Aimee +Allene +Alva +Amanda +Audre +Barbra +Beatriz +Belia +Candelaria +Carlota +Carlotta +Carmella +Caryl +Cecil +Celeste +Dena +Eiko +Elenor +Elenore +Elidia +Emmy +Enriqueta +Erna +Ethyl +Eugenie +Eula +Evangelina +Evelyne +Florine +Glenora +Gracie +Gretchen +Hannah +Jewell +Kikuye +Lauraine +Lavonne +Leota +Letty +Lina +Louella +Lura +Marcelina +Marcelle +Marge +Margret +Martina +Marylouise +Maude +Mavis +Natalia +Nola +Ollie +Pansy +Patty +Paulina +Penelope +Phebe +Reyes +Roma +Rosalind +Rosina +Rosita +Ruthie +Sakaye +Tayeko +Vesta +Vickie +Zella +Zelma +Mary +Betty +Barbara +Dorothy +Helen +Virginia +Margaret +Patricia +Ruth +Gloria +Frances +Shirley +Jean +Alice +Doris +Marjorie +June +Lois +Evelyn +Elizabeth +Maria +Lorraine +Marie +Eleanor +Josephine +Phyllis +Beverly +Mildred +Norma +Rose +Dolores +Florence +Irene +Marilyn +Esther +Carmen +Marian +Lillian +Nancy +Lucille +Louise +Anna +Joyce +Martha +Katherine +Jeanne +Jane +Jacqueline +Geraldine +Grace +Marion +Pauline +Carol +Beatrice +Catherine +Thelma +Bernice +Joan +Ann +Edith +Juanita +Peggy +Anita +Eva +Audrey +Elaine +Maxine +Gladys +Roberta +Elsie +Edna +Laura +Lupe +Sally +Violet +Vivian +Vera +Lucy +Kathryn +Rita +Bette +Charlotte +Hazel +Kathleen +Janet +Angelina +Jennie +Ruby +Emma +Janice +Anne +Wilma +Donna +Dora +Ethel +Carolyn +Consuelo +Julia +Clara +Isabel +Jessie +Gertrude +Bonnie +Wanda +Constance +Theresa +Genevieve +Rosie +Sarah +Viola +Connie +Ellen +Annie +Ida +Rosemary +Bertha +Eileen +Marguerite +Alma +Muriel +Ramona +Stella +Aurora +Sylvia +Claire +Margie +Bettie +Pearl +Yvonne +Nellie +Amelia +Victoria +Celia +Leona +Elvira +Georgia +Agnes +May +Harriet +Emily +Margarita +Alberta +Guadalupe +Laverne +Patsy +Winifred +Velma +Flora +Lola +Jeanette +Lydia +Rosalie +Colleen +Myrtle +Esperanza +Lily +Mabel +Arlene +Inez +Lila +Loretta +Rosa +Madeline +Nadine +Billie +Mae +Socorro +Antonia +Corinne +Lena +Verna +Cecilia +Joy +Miriam +Olga +Paula +Blanche +Henrietta +Teresa +Bessie +Caroline +Angela +Eunice +Hilda +Aileen +Ofelia +Ada +Adeline +Erma +Natalie +Gwendolyn +Sara +Irma +Pat +Rachel +Yoshiko +Annette +Beverley +Faye +Christine +Estelle +Fern +Petra +Susan +Suzanne +Cora +Dorothea +Jeannette +Kay +Linda +Adele +Joanne +Naomi +Nora +Olive +Rebecca +Alta +Catalina +Ernestine +Iris +Jacquelyn +Mercedes +Sue +Amy +Elinor +Ella +Minnie +Angie +Darlene +Francisca +Helene +Hope +Nina +Priscilla +Cecelia +Tillie +Eloise +Jackie +Shirlee +Daisy +Elena +Estella +Marcella +Melba +Rosemarie +Alyce +Christina +Delia +Diana +Harriett +Isabelle +Antoinette +Beulah +Carole +Della +Elisa +Fay +Josefina +Juana +Mable +Margery +Sheila +Yolanda +Alicia +Delores +Eleanore +Jewel +Luella +Beth +Clarice +Doreen +Gene +Judy +Merle +Sophie +Toshiko +Aiko +Arline +Elvera +Jesus +Josie +Molly +Olivia +Susie +Amparo +Carmel +Carmelita +Concha +Delfina +Elva +Enid +Eugenia +Jo +Lillie +Lorna +Bettye +Carolina +Fumiko +Hortensia +Jerry +Laurel +Loraine +Lucile +Marcia +Marianne +Tomasa +Adrienne +Angelita +Concepcion +Dolly +Etta +Francis +Ila +Kiyoko +Leatrice +Lenora +Lorene +Manuela +Maryann +Michiko +Veronica +Adela +Andrea +Cecile +Cleo +Dawn +Frieda +Georgette +Goldie +Jewell +Leola +Mamie +Ophelia +Regina +Rena +Soledad +Annabelle +Charlene +Hisako +Hortencia +Jenny +Judith +Lela +Lucia +Marjory +Masako +Midori +Millicent +Nona +Sandra +Arleen +Cornelia +Dona +Ilene +Imogene +Lee +Louisa +Luisa +Magdalena +Marilynn +Matilda +Mavis +Santos +Terry +Trinidad +Adelaide +Aurelia +Cruz +Frankie +Jayne +Joann +Katie +Leah +Lenore +Lorena +Madelyn +Nettie +Neva +Paulina +Rae +Setsuko +Teruko +Adelina +Akiko +Angeline +Bernadette +Betsy +Bobbie +Clare +Claudine +Corrine +Dixie +Dorris +Eiko +Elenore +Eulalia +Georgina +Ina +Julie +Kazuko +Laverna +Lavonne +Lidia +Lynn +Marina +Miyoko +Mona +Opal +Rosario +Sadie +Ana +Armida +Bernadine +Chizuko +Edythe +Elda +Elma +Eloisa +Emiko +Ernestina +Estela +Freda +Gail +Geneva +George +Gwen +Haruko +Hortense +Iva +Katharine +Lora +Madeleine +Marietta +Marylou +Melva +Mercy +Mollie +Natividad +Nita +Nobuko +Noreen +Ora +Patty +Polly +Raquel +Refugio +Shigeko +Sumiko +Sybil +Wilda +Willa +Willie +Yuriko +Aleen +Allene +Bella +Berniece +Beverlee +Carrie +Cathryn +Celeste +Denise +Edwina +Effie +Elisabeth +Emilie +Erlinda +Felipa +Florine +Gayle +Hideko +Isabell +Ivy +Joanna +Justine +Lauretta +Leila +Leora +Lilly +Lina +Marylee +Maybelle +Mitsuko +Myra +Myrna +Nanette +Renee +Rosalind +Sachiko +Sallie +Theodora +Toni +Winona +Aida +Althea +Amalia +Annamae +Ayako +Belen +Carlota +Carmela +Claudia +Crystal +Diane +Dollie +Dominga +Dorothey +Eda +Enriqueta +Ester +Faith +Fumiye +Hattie +Jacquelin +Kimiko +Lea +Leonor +Lilia +Lolita +Lucretia +Luz +Margarite +Mariana +Mickey +Misao +Noel +Nola +Peggie +Rafaela +Rhoda +Roselyn +Rowena +Sharon +Sofie +Ursula +Valerie +Verda +Vida +Winnifred +Zelma +Abigail +Annabel +Annetta +Benita +Berta +Beryl +Chiyeko +Dana +Delphine +Earline +Elodia +Elsa +Emi +Erminia +Etsuko +Fannie +Floy +Fumi +Gerry +Guillermina +Harriette +Helena +Herminia +Hiroko +James +Jeane +Jerrie +Johanna +Juliette +Kikuye +Kimi +Kitty +Kiyo +Leonora +Leonore +Leta +Lottie +Lou +Lula +Lupie +Maggie +Marilynne +Marta +Maurine +Merilyn +Merry +Mitzi +Miyeko +Natalia +Nelda +Robert +Ruthe +Sadako +Thalia +Tina +Toyoko +Verla +William +Yaeko +Yoneko +Zella +Zona +Addie +Albertina +Albina +Aline +Alvera +Alvina +Ardith +Asako +Augusta +Augustina +Avis +Blanca +Camille +Carlotta +Carmella +Chiyoko +Conception +Dagmar +Dahlia +Dale +Daphne +Darleen +Dee +Dorene +Dorthy +Earlene +Elia +Elinore +Emilia +Encarnacion +Enedina +Erna +Evalyn +Evangeline +Evelyne +Felice +Freida +Fujiko +Gale +Haruye +Herlinda +Ignacia +Isabella +Jack +Janette +Janis +Jeanie +Jeannie +Jeri +Karen +Kate +Kikue +Laurette +Lavina +Lavon +Louella +Madge +Magdalene +Marcelina +Margo +Mariko +Marilee +Maude +Maureen +Maxene +Meredith +Minerva +Miyo +Nannette +Nathalie +Noemi +Norine +Pamela +Patti +Penny +Rachael +Rebeca +Robin +Roma +Rosalee +Rosalia +Rosamond +Rosaura +Rosella +Rufina +Selma +Sherry +Shirlie +Shizue +Shizuko +Shizuye +Sophia +Susanna +Susanne +Thais +Thora +Tomiko +Tomoko +Yayoi +Yukiye +Mary +Betty +Barbara +Dorothy +Margaret +Helen +Patricia +Virginia +Ruth +Shirley +Gloria +Frances +Jean +Alice +Doris +Beverly +Marjorie +Lois +Evelyn +June +Marie +Dolores +Elizabeth +Maria +Norma +Josephine +Marilyn +Eleanor +Rose +Phyllis +Joyce +Irene +Lorraine +Nancy +Esther +Mildred +Lillian +Carmen +Martha +Florence +Louise +Marian +Jacqueline +Lucille +Joan +Grace +Anna +Geraldine +Pauline +Audrey +Marion +Bernice +Carol +Juanita +Jane +Catherine +Elaine +Edith +Jeanne +Charlotte +Katherine +Sally +Beatrice +Elsie +Ethel +Peggy +Roberta +Ann +Lucy +Vera +Gladys +Lupe +Edna +Thelma +Julia +Ruby +Eva +Maxine +Vivian +Donna +Kathleen +Anita +Nellie +Rita +Clara +Hazel +Laura +Ramona +Jennie +Jessie +Rosie +Bonnie +Carolyn +Isabel +Kathryn +Wanda +Ellen +Angelina +Consuelo +Violet +Bertha +Emma +Yvonne +Bette +Connie +Dora +Wilma +Elvira +Georgia +Constance +Annie +Janet +Margie +Muriel +Stella +Viola +Rosemary +Janice +Gertrude +Anne +Laverne +Theresa +Pat +Esperanza +Sarah +Aurora +Celia +Emily +Patsy +Antonia +Claire +Colleen +Nadine +Genevieve +Joanne +Marguerite +Agnes +Velma +Victoria +Alma +Eileen +Guadalupe +Harriet +Leona +Lydia +Paula +Ida +Rosa +Alberta +Pearl +Sylvia +Bettie +Jeanette +Lola +Mabel +Winifred +Billie +Joy +Myrtle +Amelia +Lena +May +Rosalie +Mae +Teresa +Lily +Miriam +Aileen +Bessie +Josefina +Madeline +Rachel +Sara +Suzanne +Beverley +Margarita +Olga +Priscilla +Catalina +Corinne +Linda +Caroline +Ella +Inez +Juana +Loretta +Verna +Cecilia +Christine +Della +Flora +Socorro +Arlene +Henrietta +Elinor +Lila +Faye +Gwendolyn +Rebecca +Adeline +Angie +Rosemarie +Blanche +Jackie +Jeannette +Alicia +Cecelia +Eloise +Angela +Annette +Elena +Eunice +Nina +Petra +Antoinette +Hilda +Jacquelyn +Susan +Ernestine +Marcia +Cora +Yoshiko +Erma +Estella +Irma +Margery +Nora +Olive +Beth +Elisa +Mercedes +Naomi +Natalie +Ada +Diana +Hope +Melba +Patty +Adele +Andrea +Arline +Daisy +Delores +Eugenia +Helene +Iris +Lee +Sue +Christina +Lenore +Sophie +Alta +Amy +Annabelle +Concha +Eleanore +Fern +Francisca +Isabelle +Jewel +Joann +Lillie +Marcella +Ofelia +Tillie +Adrienne +Aurelia +Doreen +Elva +Gene +Jenny +Kay +Opal +Toshiko +Ana +Darlene +Elvera +Ernestina +Merle +Molly +Trinidad +Alyce +Amalia +Amparo +Carmelita +Clarice +Dorothea +Erlinda +Estelle +Imogene +Jerry +Jo +Lavonne +Lorna +Manuela +Michiko +Minnie +Raquel +Soledad +Adelina +Angelita +Beatriz +Bettye +Corrine +Enid +Estela +Fumiko +Gwen +Harriett +Jovita +Judy +Marilynn +Masako +Shigeko +Yolanda +Cynthia +Dona +Fay +Leila +Leota +Lorene +Luella +Magdalena +Marina +Marylou +Neva +Shirlee +Wilda +Armida +Bobbie +Carmel +Carole +Charlene +Delia +Dorris +Elma +Eloisa +Freda +Georgette +Hisako +Katie +Laurel +Leah +Leatrice +Marjory +Rena +Rosario +Sharon +Dixie +Dolly +Frankie +Gail +Georgina +Goldie +Hortencia +Hortense +Jeane +Jewell +Judith +Lilly +Louisa +Lula +Maryann +Mollie +Nona +Olivia +Ophelia +Teruko +Tomasa +Adela +Dawn +Edythe +Geneva +Gerry +Hortensia +Lela +Lilia +Mable +Matilda +Rae +Regina +Susie +Therese +Belen +Beulah +Carrie +Cecile +Emilia +Fumi +Glenna +Ina +Iva +Julie +Katharine +Leonor +Loraine +Lucia +Natalia +Sadie +Aiko +Carolina +Dale +Delfina +Elsa +Faith +Felipa +Jacklyn +Janis +Joanna +Josie +Leola +Leslie +Luz +Maureen +Mona +Myra +Nettie +Polly +Renee +Tomiko +Winona +Alvina +Claudia +Claudine +Cleo +Darleen +Deloris +Dorthy +Enedina +Etta +Francis +Gayle +Georgene +Herminia +Leora +Lou +Lucile +Madelyn +Marylyn +Natividad +Refugio +Rhoda +Rosetta +Sadako +Sandra +Selma +Sheila +Valerie +Willie +Allene +Carla +Carmela +Concepcion +Cruz +Diane +Edwina +Elisabeth +Ester +Eulalia +Evangeline +Fannie +Gilda +Herlinda +Iola +Isabell +Juliet +Juliette +Karen +Kimiko +Kiyoko +Maggie +Maryellen +Mattie +Mercy +Mitsuko +Miyoko +Myrna +Nanette +Noreen +Ora +Rosalind +Sachiko +Sallie +Shizuko +Terry +Velia +Veronica +Willa +William +Adelaide +Aida +Akiko +Althea +Amada +Augustina +Bettylou +Beverlee +Clare +Conchita +Darline +Dorene +Eda +Emilie +Frieda +Georgiana +Helena +Hideko +Ivy +Jayne +Jesus +Kazuko +Lenora +Letitia +Lidia +Lolita +Lora +Lynn +Marge +Marietta +Marillyn +Maryan +Meredith +Millie +Nada +Nan +Nobuko +Rosaline +Rufina +Setsuko +Sofia +Sybil +Toni +Velda +Vilma +Yoneko +Addie +Alene +Altagracia +Ardis +Belia +Beryl +Candelaria +Charleen +Cherie +Chiyeko +Chiyoko +Cornelia +Corrinne +Delphina +Dominga +Eldora +Elise +Elnora +Enriqueta +Eula +Evalyn +Felicitas +George +Georgie +Harriette +Hiroko +Ila +Ilene +Jeanie +Jeannie +Kathy +Lauretta +Lelia +Leta +Lorena +Lucretia +Luisa +Marcelina +Mariana +Marianne +Melva +Monica +Nell +Nita +Nola +Ollie +Pamela +Reva +Robert +Rowena +Roxie +Ruthe +Shizue +Vivien +Winnifred +Alda +Aline +Alva +Annabell +Annetta +Arleen +Artie +Athena +Benita +Berta +Betsy +Bonita +Camille +Carmella +Carroll +Cathryn +Chieko +Clotilde +Daphne +Delma +Dorcas +Earlene +Earline +Edward +Effie +Elayne +Elinore +Elna +Emiko +Erminia +Erna +Etsuko +Evangelina +Evelyne +Feliciana +Florencia +Graciela +Gregoria +Greta +Guillermina +Haruko +Ignacia +Ione +Joaquina +Jocelyn +Julieta +Junko +Keiko +Laverna +Letha +Lorenza +Loris +Lura +Madge +Mamie +Marcelle +Marilee +Martina +Maude +Maudie +Maurine +Mavis +Merilyn +Mickey +Millicent +Modesta +Nannette +Norine +Palmira +Pansy +Patti +Phoebe +Rafaela +Reba +Rhea +Rina +Ruthie +Sabina +Sachi +Santos +Sophia +Tessie +Theo +Theodora +Toshie +Toyoko +Twila +Ursula +Verda +Verla +Vicenta +Ysabel +Yuriko +Yvette +Zella +Mary +Barbara +Betty +Dorothy +Patricia +Helen +Margaret +Shirley +Virginia +Gloria +Ruth +Beverly +Frances +Alice +Jean +Dolores +Doris +Evelyn +Lois +Maria +Marjorie +Marilyn +Phyllis +Josephine +Elizabeth +Lorraine +Joyce +Marie +June +Eleanor +Norma +Rose +Nancy +Esther +Mildred +Irene +Joan +Carmen +Florence +Jacqueline +Lucille +Anna +Marian +Lillian +Marion +Louise +Lupe +Audrey +Geraldine +Grace +Carol +Jeanne +Ann +Sally +Martha +Pauline +Jane +Donna +Juanita +Bernice +Roberta +Charlotte +Elaine +Eva +Katherine +Peggy +Edna +Thelma +Catherine +Vivian +Rosie +Edith +Beatrice +Lucy +Anita +Carolyn +Violet +Jennie +Elsie +Julia +Laura +Bonnie +Ethel +Rita +Clara +Janet +Ellen +Consuelo +Connie +Vera +Kathleen +Gertrude +Maxine +Patsy +Emma +Gladys +Janice +Isabel +Jessie +Kathryn +Wilma +Yvonne +Wanda +Rosemary +Dora +Pat +Aurora +Genevieve +Nellie +Bertha +Ida +Margarita +Ruby +Sarah +Ramona +Anne +Georgia +Angelina +Marguerite +Eileen +Stella +Claire +Hazel +Billie +Colleen +Nadine +Annie +Jeanette +Theresa +Viola +Alma +Constance +Elvira +Laverne +Velma +Muriel +Bette +Celia +Harriet +Pearl +Teresa +Joy +Leona +Antonia +Margie +Beverley +Guadalupe +Joanne +Esperanza +Olga +Rachel +Agnes +Rosa +Amelia +Emily +Rosalie +Angie +Elena +Lydia +Sylvia +Victoria +Socorro +Arlene +Ella +Lola +Winifred +Paula +Mabel +Susan +Verna +Alberta +Rebecca +Loretta +Rosemarie +Cecilia +Ernestine +May +Suzanne +Lena +Inez +Sara +Alicia +Bettie +Caroline +Flora +Juana +Eunice +Henrietta +Lila +Catalina +Cecelia +Elinor +Lily +Minnie +Angela +Delores +Myrtle +Bessie +Gwendolyn +Jeannette +Christine +Corinne +Darlene +Irma +Jackie +Kazuko +Mae +Mercedes +Naomi +Natalie +Adele +Madeline +Miriam +Petra +Aileen +Blanche +Diana +Francisca +Joann +Adeline +Estella +Hortensia +Jacquelyn +Linda +Marcella +Charlene +Doreen +Hope +Jo +Olive +Tillie +Delia +Erma +Faye +Laurel +Cora +Iris +Marcia +Margery +Nina +Beryl +Beulah +Eloise +Josefina +Kay +Lenore +Clarice +Hilda +Josie +Terry +Amy +Dona +Dorothea +Helene +Opal +Priscilla +Teruko +Ada +Diane +Fern +Isabelle +Manuela +Nora +Amparo +Ana +Antoinette +Dolly +Estelle +Lee +Luz +Magdalena +Ofelia +Patty +Concha +Della +Gail +Marylou +Molly +Raquel +Rosario +Sue +Adelina +Annette +Christina +Eleanore +Judith +Leola +Melba +Sumiko +Yolanda +Yoshiko +Alyce +Arline +Aurelia +Francis +Geneva +Regina +Valerie +Angelita +Armida +Elvera +Ernestina +Eugenia +Evangeline +Fay +Judy +Lavonne +Lillie +Lilly +Lorna +Luella +Mamie +Ophelia +Sadie +Selma +Soledad +Sophie +Alta +Andrea +Annabelle +Carmelita +Eloisa +Frieda +Georgette +Herlinda +Hortencia +Lorene +Lucile +Mable +Adela +Amalia +Bobbie +Claudia +Daisy +Delfina +Dixie +Janis +Jerry +Lynn +Matilda +Mickey +Shirlee +Velia +Adrienne +Akiko +Concepcion +Dawn +Emiko +Emilia +Fumiko +Ila +Ina +Jewel +Jewell +Johanna +Leatrice +Leta +Lucia +Marianne +Masako +Michiko +Myrna +Sandra +Sheila +Trinidad +Adelaide +Alexandra +Arleen +Beth +Carolina +Elisa +Elma +Elva +Estela +Faith +Glenna +Harriett +John +Marceline +Marilynn +Melva +Mona +Noreen +Olivia +Refugio +Rhoda +Rowena +Therese +Tomasa +Toshiko +Yuriko +Bernadette +Camille +Cleo +Denise +Edythe +Frankie +Freda +Gwen +Hannah +Harriette +Katharine +Kiyoko +Lita +Lou +Maureen +Mavis +Merle +Nola +Nona +Sachiko +Shizuko +Winona +Aiko +Althea +Augustina +Carrie +Chiyoko +Claudine +Cruz +Eula +Gene +Gregoria +Jeane +Jenny +Katie +Leila +Lenora +Leora +Lolita +Luisa +Lura +Marietta +Merilyn +Micaela +Myra +Natalia +Nelda +Neva +Polly +Rena +Renee +Sharon +Willa +Beatriz +Bettye +Beverlee +Carmel +Eda +Effie +Elisabeth +Enriqueta +Evangelina +Goldie +Greta +Haruko +Hattie +Hideko +Hortense +Imogene +Joanna +Jovita +Kazue +Lilia +Loraine +Lorena +Madge +Marina +Mitsuko +Mollie +Patti +Sallie +Susana +Theodora +Vesta +Vickie +Yoneko +Zelda +Aloha +Berta +Betsy +Cherie +Clare +Corrine +Darleen +Delphine +Elsa +Enid +Erlinda +Etta +Gilda +Hermelinda +Hisako +Iva +Leah +Leonor +Leslie +Lidia +Lora +Madeleine +Maryann +Mercy +Monica +Rae +Robert +Rosita +Susie +Tina +Toni +Vilma +Wilda +Aida +Annabel +Ayako +Belen +Bruna +Carla +Carole +Cristina +Dale +Earlene +Edwina +Gayle +Georgina +Gerry +Helena +Iola +Jacklyn +Jayne +Julie +Juliet +Kathrine +Lela +Leota +Marilou +Marjory +Marta +Matilde +Maurine +Maybelle +Nobuko +Norine +Reva +Robin +Rosalind +Rosella +Rufina +Sofia +Sybil +Velda +Verda +Allene +Alvina +Antonette +Ardith +Belia +Belva +Bernita +Carmela +Charleen +Chizuko +Conception +Cynthia +Dana +Dina +Dorris +Earline +Elda +Elinore +Eliza +Emilie +Enedina +Ester +Florine +Francine +Herminia +Ione +Jesus +Kimiko +Lauretta +Lavern +Leonora +Lona +Lucretia +Madelyn +Margret +Margy +Marlyn +Marvel +Maryjane +Mattie +Maude +Midori +Mignon +Mina +Nanette +Nettie +Otilia +Shigeko +Stephanie +Veronica +Vivien +Willie +Winnifred +Yoshiye +Yukiko +Zelma +Zoe +Albertina +Albina +Alvera +Amada +Ardis +Ardys +Berneice +Birdie +Blossom +Candelaria +Carmella +Cecil +Claris +Concetta +Conchita +Consuela +Coralie +Darline +Dorene +Eleanora +Ethyl +Etsuko +Eugenie +Eulalia +Evalyn +Evelyne +Fannie +Felicitas +Gay +Gretchen +Henry +Hilma +Hiroko +Holly +Ilene +Iona +Isabella +Jan +Janette +Jeannie +Jeraldine +Jose +Juliette +Kitty +Lina +Lorenza +Louisa +Lynne +Maggie +Marcelina +Margarette +Meredith +Millicent +Misako +Mitzi +Nell +Ora +Rafaela +Romelia +Rosamond +Sadako +Sandy +Sophia +Susanne +Tayeko +Tessie +Tomiko +Valencia +Velva +Verla +Vivienne +William +Mary +Barbara +Betty +Dorothy +Patricia +Helen +Shirley +Virginia +Margaret +Beverly +Gloria +Dolores +Alice +Ruth +Frances +Doris +Jean +Lois +Maria +Marilyn +Joan +Joyce +Marjorie +Evelyn +Elizabeth +Esther +Nancy +Phyllis +Lorraine +Norma +Josephine +Eleanor +Marie +Rose +Carmen +June +Irene +Mildred +Jacqueline +Geraldine +Carol +Lucille +Florence +Lillian +Sally +Donna +Marian +Anna +Martha +Marion +Louise +Ramona +Janet +Grace +Elaine +Juanita +Anita +Bernice +Lupe +Beatrice +Roberta +Edith +Audrey +Pauline +Peggy +Jane +Ann +Jeanne +Catherine +Charlotte +Vera +Elsie +Maxine +Thelma +Ruby +Carolyn +Consuelo +Rosie +Jennie +Katherine +Kathleen +Patsy +Eva +Lucy +Laura +Vivian +Joanne +Dora +Pat +Bonnie +Ethel +Rita +Colleen +Connie +Hazel +Violet +Julia +Edna +Ellen +Elvira +Gladys +Isabel +Georgia +Jessie +Wanda +Diane +Aurora +Nadine +Angelina +Wilma +Bertha +Emma +Rosemary +Theresa +Anne +Celia +Clara +Margarita +Sylvia +Viola +Yvonne +Janice +Nellie +Joy +Constance +Esperanza +Sarah +Stella +Kathryn +Teresa +Billie +Annie +Laverne +Gertrude +Rachel +Emily +Genevieve +Guadalupe +Pearl +Victoria +Claire +Marguerite +Velma +Ida +Antonia +Jeanette +Rosalie +Agnes +Angela +Arlene +Margie +Harriet +Alicia +Joann +Linda +Madeline +Muriel +Amelia +Rosa +Verna +Beverley +Eileen +Lydia +Alberta +Bette +Leona +Lola +Delores +Olga +Angie +Myrtle +Christine +Lily +Caroline +Lena +Darlene +Paula +Loretta +Sara +Diana +Lila +Mabel +Natalie +Cecilia +Charlene +Irma +Mercedes +Rosemarie +Eunice +Flora +Jo +Delia +Mae +Suzanne +Elena +Elisa +Gwendolyn +Henrietta +Winifred +Jackie +Rebecca +Ernestine +Estella +Josefina +Petra +Priscilla +Alma +Bessie +Catalina +Doreen +Francisca +Socorro +Adeline +Aileen +Annette +Hilda +Inez +Miriam +Blanche +Cecelia +Antoinette +Corinne +Jeannette +Cora +May +Ofelia +Adele +Ella +Juana +Kay +Patty +Sue +Hope +Jacquelyn +Marcia +Dona +Elinor +Lenore +Lorna +Manuela +Naomi +Nina +Susan +Bettie +Jerry +Myrna +Soledad +Evangeline +Sharon +Yolanda +Carolina +Christina +Eloise +Erma +Faye +Georgette +Iris +Nora +Sophie +Carmelita +Lorene +Marcella +Raquel +Alta +Annabelle +Arline +Beulah +Dolly +Erlinda +Josie +Judith +Melba +Ada +Cynthia +Della +Eleanore +Estelle +Helene +Lillie +Luz +Minnie +Olive +Opal +Amy +Dixie +Fern +Imogene +Lee +Leonor +Lou +Luella +Margery +Merle +Molly +Rena +Adela +Daisy +Delfina +Elva +Hortensia +Judy +Lilia +Loraine +Magdalena +Tillie +Trinidad +Amparo +Carole +Concepcion +Dawn +Ernestina +Evangelina +Jewel +Michiko +Renee +Rhoda +Sheila +Valerie +Amalia +Ana +Betsy +Dorothea +Enid +Glenna +Janis +Jesus +Marylou +Rae +Sandra +Alyce +Angelita +Aurelia +Beatriz +Beryl +Camille +Claudine +Concha +Francis +Ina +Isabell +Leah +Lela +Lenora +Lolita +Marceline +Marianne +Marilynn +Maureen +Mercy +Olivia +Robert +Cruz +Dale +Elma +Fay +Felicitas +Georgina +Jeannine +Jenny +Julie +Lavonne +Lilly +Matilda +Mollie +Myra +Susie +Terry +Berta +Beth +Bobbie +Charmaine +Clarice +Etta +Freda +Frieda +Graciela +Gwen +Harriett +Johanna +Kazuko +Leota +Lidia +Mable +Natividad +Nelda +Neva +Regina +Rosario +Shirlee +Teruko +Armida +Cleo +Emilia +Greta +Leila +Lucia +Luisa +Maggie +Marcelina +Marina +Maryann +Mona +Monica +Nettie +Richard +Sachiko +Setsuko +Therese +Tomasa +Wilda +Yoshiko +Aiko +Andrea +Carrie +Corrine +Cristina +Daphne +Eda +Elsa +Gayle +Gene +Geneva +Jan +Jovita +Leola +Mamie +Marietta +Micaela +Rafaela +Shizuko +Willa +Adrienne +Amanda +Arleen +Delma +Dorthy +Edythe +Enedina +Estela +Eugenia +Faith +Felipa +Florine +Frankie +Helena +Isabelle +Janie +Jewell +John +Leta +Lula +Nona +Noreen +Ophelia +Polly +Rosina +Selma +Veronica +William +Aida +Berniece +Bertie +Carmel +Cecile +Charles +Darleen +Dorris +Earline +Elvera +Enriqueta +Ester +Francine +Gail +Goldie +Ilene +Jeannie +Juliana +Juliette +Laurel +Lora +Lynn +Marlene +Martina +Masako +Melva +Miyoko +Nan +Norene +Pamela +Pansy +Patti +Pilar +Refugio +Rosella +Rufina +Tina +Tomiko +Vilma +Winona +Yukiko +Zoe +Abigail +Adelaide +Adelina +Avis +Belia +Bernadine +Bernardine +Bettye +Carlene +Carmela +Carroll +Cherie +Clare +Claudia +Conception +Consuela +Dianne +Dominga +Dorene +Edwina +Elisabeth +Elise +Eliza +Eloisa +Erna +Eve +Gerry +Herlinda +Herminia +Hortencia +Ila +Iva +Josefa +Joseph +Julieta +Karen +Keiko +Kiyoko +Leonora +Leslie +Librada +Madelyn +Marjory +Maurine +Mavis +Mitsuko +Nobuko +Nola +Norine +Sofia +Thais +Theodora +Verda +Yoshiye +Agripina +Akiko +Alba +Alexandra +Ardis +Ayako +Belen +Bernadette +Camilla +Charline +Chiyoko +Deloris +Delphina +Donald +Elinore +Eulalia +Evelyne +Florene +Frank +Gilda +Hermelinda +Hideko +Ione +James +Jeanie +Joye +Juliet +Katie +Kenneth +Lavina +Leora +Lita +Lorelei +Louisa +Lucile +Marcie +Marillyn +Marolyn +Marylee +Mattie +Millie +Nancie +Nanette +Natalia +Nicolasa +Nita +Noel +Ortensia +Rebeca +Sadako +Sadie +Sallie +Sonia +Susana +Toni +Vickie +Winnie +Yuri +Yvette +Zelda +Alda +Alison +Aloha +Alvera +Angeline +Annabell +Antonette +Antonio +Arden +Ardith +Athena +Beverlee +Candelaria +Carlotta +Chizuko +Chris +Clementine +Coralie +Cornelia +Deborah +Denise +Dollie +Emiko +Eula +Fumiko +Georgene +Georgie +Germaine +Glenda +Gregoria +Gretchen +Henry +Hisako +Hortense +Jacklyn +Jayne +Jeane +Katharine +Kitty +Lavon +Leonarda +Letty +Lucila +Lucinda +Madeleine +Madge +Marilu +Marna +Marta +Maude +Merilyn +Meryl +Mitzi +Ora +Paulina +Phillis +Phoebe +Romana +Rowena +Ruthie +Santos +Sherry +Silvia +Stephanie +Sumiko +Susanne +Ursula +Velda +Velia +Verla +Vivienne +Yuriko +Zelma +Mary +Barbara +Betty +Patricia +Dorothy +Shirley +Helen +Dolores +Margaret +Virginia +Beverly +Gloria +Joan +Doris +Alice +Frances +Ruth +Marilyn +Jean +Joyce +Maria +Lois +Nancy +Evelyn +Carol +Phyllis +June +Marjorie +Josephine +Eleanor +Lorraine +Elizabeth +Norma +Rose +Carmen +Marie +Esther +Louise +Jacqueline +Irene +Geraldine +Florence +Mildred +Donna +Joanne +Sally +Anna +Marian +Lillian +Lupe +Martha +Janet +Peggy +Ann +Grace +Jane +Audrey +Carolyn +Charlotte +Juanita +Marion +Anita +Diane +Bernice +Lucille +Pauline +Ramona +Rita +Beatrice +Elaine +Katherine +Patsy +Thelma +Bonnie +Jeanne +Roberta +Catherine +Laura +Vera +Elsie +Ruby +Clara +Pat +Edna +Maxine +Rosie +Jennie +Kathleen +Eva +Dora +Vivian +Consuelo +Janice +Rachel +Isabel +Edith +Rosemary +Connie +Emma +Julia +Lucy +Stella +Wanda +Ellen +Eileen +Ethel +Gladys +Billie +Sylvia +Yvonne +Hazel +Wilma +Anne +Arlene +Aurora +Elvira +Jessie +Margarita +Teresa +Theresa +Victoria +Bertha +Annie +Joann +Angelina +Georgia +Joy +Esperanza +Nadine +Kathryn +Nellie +Rosa +Celia +Jeanette +Marguerite +Laverne +Alberta +Diana +Genevieve +Leona +Viola +Violet +Pearl +Amelia +Claire +Gertrude +Beverley +Guadalupe +Alma +Delores +Loretta +Constance +Darlene +Rosalie +Sarah +Antonia +Jo +Agnes +Bette +Colleen +Emily +Ida +Muriel +Delia +Paula +Marianne +Naomi +Margie +Socorro +Jacquelyn +Lila +Lydia +Sharon +Cecilia +May +Velma +Harriet +Lola +Suzanne +Alicia +Angela +Angie +Caroline +Elena +Linda +Lily +Olga +Charlene +Rebecca +Christine +Henrietta +Susan +Verna +Priscilla +Jackie +Juana +Mercedes +Sara +Blanche +Ella +Raquel +Sue +Madeline +Irma +Jeannine +Natalie +Ernestine +Patty +Flora +Gwendolyn +Miriam +Myrtle +Rosemarie +Adele +Adeline +Hilda +Mabel +Myrna +Catalina +Annette +Bessie +Corinne +Elisa +Inez +Sheila +Amparo +Antoinette +Cora +Estella +Jeannette +Doreen +Bettie +Dona +Iris +Josefina +Lena +Aileen +Elinor +Eloise +Eunice +Fern +Judith +Winifred +Beulah +Cecelia +Cynthia +Elva +Estelle +Lenore +Luella +Mae +Melba +Nina +Nora +Olive +Petra +Ana +Molly +Ofelia +Yolanda +Ada +Amy +Arline +Dolly +Fay +Jerry +Marcia +Renee +Velia +Carla +Concha +Evangeline +Francisca +Hope +Tillie +Alyce +Bobbie +Lee +Manuela +Margery +Maryann +Minnie +Sophie +Armida +Carmelita +Clarice +Erma +Gwen +Helene +Hortensia +Ina +Judy +Lillie +Magdalena +Mercy +Susie +Trinidad +Adela +Amalia +Cleo +Ester +Janis +Lorna +Luz +Marcella +Ophelia +Robert +Andrea +Angelita +Annabelle +Concepcion +Corrine +Dixie +Faye +Gay +Harriett +Natalia +Nettie +Valerie +Yoshiko +Adrienne +Alta +Carole +Christina +Dawn +Dorothea +Earlene +Evangelina +Gerry +Greta +Jewel +Josie +Kay +Leola +Lora +Marcelina +Rena +Sandra +Beatriz +Belen +Benita +Carmel +Elma +Ernestina +Joanna +Lavonne +Lidia +Lorene +Marceline +Marylou +Mollie +Opal +Polly +Toni +Cruz +Delfina +Della +Edwina +Enedina +Erlinda +Eugenia +Gail +Georgette +Jenny +Johanna +John +Lilia +Louisa +Mona +Olivia +Richard +Sofia +Willie +Adelina +Ardis +Aurelia +Claudia +Edythe +Emilia +Felicitas +Geneva +Glenna +Iva +Jesus +Lilly +Loraine +Lucia +Marilynn +Masako +Maureen +Michiko +Rowena +Shirlee +Sumiko +Theodora +Beth +Betsy +Beverlee +Carolina +Dana +Dorris +Earline +Elda +Elsa +Elvera +Emiko +Felicia +Frank +Goldie +Gregoria +Hortencia +Ila +Ilene +Isabelle +Julie +Kazuko +Leila +Lela +Leonor +Lucile +Marjory +Melva +Mitsuko +Nola +Nona +Rosita +Sallie +Tomasa +Arleen +Bernadine +Beryl +Carrie +Cecile +Cherie +Cherry +Claudine +Daisy +Darline +Eleanore +Elouise +Enriqueta +Fannie +James +Janette +Jovita +Leslie +Luisa +Margo +Marina +Merilyn +Merle +Miyoko +Myra +Neva +Otilia +Refugio +Regina +Soledad +Terry +Therese +Willa +Winona +Caryl +Charleen +Darleen +Dominga +Effie +Enid +Faith +Frieda +Fumiko +Gayle +Georgina +Graciela +Helena +Hisako +Jacklyn +Jacquelin +Leah +Leonora +Mable +Mamie +Margret +Mina +Nelda +Nobuko +Noreen +Norine +Rae +Sachiko +Selma +Susana +Toshiko +Aida +Aiko +Arden +Asako +Belle +Berniece +Bertie +Clare +Coralie +Cornelia +Cristina +Deloris +Dena +Earleen +Eliza +Elodia +Etta +Eula +Francis +Haruko +Herminia +Hortense +Ione +Karen +Katie +Keiko +Kiyoko +Lenora +Leora +Lou +Lynn +Madeleine +Madelyn +Martina +Matilda +Matilde +Ora +Pamela +Patti +Rebeca +Rosalind +Rosella +Sadie +Sherry +Sophia +Veronica +Vickie +Adelle +Agustina +Albina +Alejandra +Althea +Alva +Avis +Ayako +Belia +Bettye +Bonita +Carlota +Carrol +Conchita +Donald +Dorene +Dorine +Dorthy +Elise +Elna +Emilie +Estela +Ethelyn +George +Gilda +Harriette +Hideko +Imogene +Isabell +Isabella +Jeane +Joe +Juliet +Juliette +Katharine +Kimiko +Laverna +Lavina +Leonore +Lorena +Louella +Lula +Lulu +Margy +Mariana +Marvel +Mavis +Meredith +Meta +Mignon +Millicent +Robin +Roselyn +Simona +Sonya +Una +Ursula +Verda +Wilda +Ysabel +Angeline +Ardith +Berta +Camilla +Camille +Carlene +Carlotta +Carmella +Chiyeko +Coral +Deborah +Dianne +Erminia +Erna +Florine +Frankie +Freda +Fujiko +Gene +Gracie +Gretchen +Herlinda +Hiroko +Janie +Jayne +Jeannie +Jewell +Laurel +Leatrice +Letha +Lita +Lolita +Lorayne +Lyla +Marlene +Marta +Mattie +Maurine +Monica +Nan +Nedra +Norene +Paulina +Peggie +Reba +Rene +Rhea +Rochelle +Rosaline +Rosario +Rosenda +Setsuko +Shirlie +Sonia +Susanna +Tina +Trudy +Vilma +Vivien +Vivienne +William +Winnifred +Yasuko +Yoshiye +Yuriko +Zelma +Mary +Barbara +Betty +Patricia +Dorothy +Shirley +Joan +Dolores +Virginia +Beverly +Helen +Margaret +Marilyn +Gloria +Alice +Nancy +Ruth +Joyce +Jean +Frances +Doris +Lois +Maria +Norma +Carol +Evelyn +Marjorie +Donna +Elizabeth +Phyllis +Marie +Rose +Josephine +June +Eleanor +Carmen +Jacqueline +Lorraine +Esther +Joanne +Irene +Louise +Sally +Geraldine +Janet +Florence +Marian +Carolyn +Lillian +Mildred +Lupe +Martha +Anita +Ann +Juanita +Anna +Jane +Lucille +Patsy +Bonnie +Catherine +Pauline +Diane +Marion +Beatrice +Elaine +Jeanne +Peggy +Audrey +Rita +Roberta +Janice +Vivian +Consuelo +Charlotte +Grace +Jennie +Kathleen +Ramona +Pat +Bernice +Lucy +Eva +Anne +Clara +Katherine +Elsie +Rosie +Jeanette +Joy +Thelma +Jessie +Edith +Joann +Laura +Rosemary +Yvonne +Edna +Maxine +Delores +Dora +Angelina +Vera +Georgia +Annie +Connie +Ellen +Rachel +Loretta +Theresa +Elvira +Julia +Kathryn +Nellie +Darlene +Isabel +Gladys +Ruby +Jo +Celia +Emma +Arlene +Amelia +Hazel +Billie +Violet +Claire +Margarita +Laverne +Ethel +Rosa +Diana +Teresa +Victoria +Wanda +Stella +Susan +Wilma +Gertrude +Nadine +Sylvia +Angie +Bertha +Rosalie +Aurora +Esperanza +Emily +Marguerite +Suzanne +Antonia +Guadalupe +Pearl +Margie +Colleen +Ida +Marianne +Eileen +Harriet +Alicia +Lola +Alma +Lila +Sarah +Sue +Constance +Genevieve +Sharon +Lydia +Viola +Jackie +Sara +Agnes +Angela +Bette +Beverley +Jeannette +Velma +Olga +Catalina +Leona +Paula +Charlene +Rosemarie +Jacquelyn +Caroline +Delia +Cecilia +Lena +Verna +Winifred +Bessie +Alberta +Armida +Kay +Natalie +Gwendolyn +Henrietta +Hilda +May +Mercedes +Naomi +Rebecca +Doreen +Elena +Eloise +Mae +Marcia +Maureen +Muriel +Raquel +Socorro +Christine +Elisa +Juana +Lily +Linda +Nina +Inez +Mabel +Madeline +Ofelia +Ella +Josefina +Patty +Dona +Ernestine +Gwen +Irma +Myrna +Nora +Priscilla +Adele +Clarice +Concha +Dorothea +Myrtle +Petra +Adeline +Cynthia +Judith +Corinne +Dixie +Elinor +Estella +Flora +Minnie +Della +Dolly +Fern +Greta +Mona +Annette +Bettie +Carmelita +Iris +Amy +Antoinette +Christina +Evangeline +Fay +Janis +Joanna +Josie +Miriam +Sheila +Arline +Cecelia +Erma +Geneva +Jerry +Marlene +Aileen +Annabelle +Carolina +Eunice +Evangelina +Francisca +Gerry +Hortensia +Ina +Magdalena +Marcella +Ana +Blanche +Carole +Daisy +Elva +Erlinda +Helene +Hope +Lilly +Sophie +Alta +Dawn +Estelle +Faye +Frieda +Gay +Loraine +Lorna +Olive +Valerie +Angelita +Cherie +Glenna +Jeannine +Jenny +Jewel +Jovita +Lee +Lorene +Luella +Margery +Rena +Yolanda +Yoshiko +Adrienne +Bobbie +Cleo +Gail +Judy +Karen +Katharine +Leonor +Mable +Masako +Melba +Molly +Pamela +Velia +Beth +Beverlee +Carla +Cora +Corrine +Emiko +Jesus +Myra +Soledad +Therese +Adela +Alyce +Andrea +Ardith +Beatriz +Beulah +Carmel +Darleen +Freda +Hortencia +Lora +Louisa +Lucia +Lynn +Maryann +Ophelia +Rosario +Shirlee +Terry +Tillie +Ada +Adelina +Arleen +Elma +Emilia +Herlinda +Lenore +Meredith +Nannette +Natalia +Nona +Olivia +Rae +Sofia +Susie +Trinidad +Arden +Carrie +Concepcion +Delfina +Deloris +Edwina +Felicitas +Florine +Gayle +Harriett +Jeanine +John +Laurel +Lilia +Lillie +Lorena +Lou +Lucile +Manuela +Mercy +Mickey +Nita +Noreen +Ora +Regina +Sallie +Willa +Amalia +Ardeth +Beryl +Clare +Dianne +Dorris +Eloisa +Ernestina +Eugenia +Felipa +Gretchen +Jewell +Lavonne +Lela +Leola +Leslie +Mamie +Marilynn +Marylou +Michiko +Neva +Norene +Opal +Renee +Richard +Rosita +Setsuko +Tina +Toshiko +Alvina +Amparo +Aurelia +Bernadine +Claudine +Dale +Edythe +Elvera +Estela +Isabelle +Ivy +Joe +Johanna +Julie +Kazuko +Luz +Margot +Marjory +Marvel +Merle +Nelda +Rafaela +Sadie +Zelma +Aida +Akiko +Belia +Blanca +Claudia +Cristina +Denise +Dorla +Earlene +Eda +Effie +Enedina +Enriqueta +Etta +Eulalia +Francis +Georgina +Hideko +Jan +Juliet +Juliette +Justine +Katie +Lauretta +Lea +Leila +Lenora +Lolita +Luisa +Marceline +Marietta +Marilee +Maurine +Mavis +Maybelle +Millicent +Peggie +Refugio +Robert +Rowena +Veronica +Vicky +Vilma +Aline +Augustina +Candelaria +Carmella +Cruz +Dana +Dorene +Earline +Elisabeth +Eve +Fumiko +Genoveva +Gracie +Graciela +Hisako +Ilene +Ines +Jack +Janette +Jeannie +Lavon +Leah +Leatrice +Leonora +Lita +Mariana +Matilda +Melva +Modesta +Nadean +Nettie +Norine +Pattie +Rosalind +Sandra +Sherry +Sonya +Susana +Toni +Veda +Zoe +Angelica +Avis +Barbra +Belva +Bernadette +Bettye +Bonita +Carmela +Carolee +Cecile +Charleen +Cheryl +Chiyoko +Conchita +Delphine +Donald +Eiko +Elinore +Eliza +Enid +Eula +Evalyn +Francine +Gina +Goldie +Idella +Imelda +Imogene +Iola +Jacklyn +Jacquelin +Janie +Katheryn +Keiko +Kimiko +Lidia +Lona +Loris +Lucinda +Marcelina +Marge +Margy +Mariko +Marina +Marylin +Midori +Nan +Natividad +Nola +Pansy +Pilar +Robin +Rosella +Sachiko +Sumiko +Sybil +Tomasa +Tomasita +Yasuko +Zelda +Agripina +Allene +Ardis +Ascension +Benita +Berta +Bettylou +Bobby +Caryl +Clair +Conception +Cornelia +Daphne +Deborah +Dian +Dina +Elda +Eleanore +Elidia +Elsa +Ermelinda +Erna +Ester +Frank +Frankie +Gene +Hattie +Henry +Herminia +Hiroko +Hortense +Ila +Ione +Jayne +Jeane +Jill +Jose +Joycelyn +Juliana +Laurie +Leda +Lorine +Louella +Lula +Madeleine +Madelyn +Margo +Marsha +Marylee +Marylyn +Mattie +Maude +Merilyn +Merna +Micaela +Noel +Noemi +Ona +Robbie +Rosalee +Ruthe +Santos +Tanya +Teruko +Theodora +Trudy +Verda +Vida +Vivien +William +Willie +Yaeko +Yoshiye +Ysabel +Mary +Barbara +Betty +Patricia +Dorothy +Joan +Shirley +Marilyn +Beverly +Margaret +Gloria +Virginia +Helen +Nancy +Dolores +Joyce +Ruth +Alice +Frances +Jean +Lois +Carol +Donna +Doris +Norma +Evelyn +Maria +Phyllis +Joanne +Marjorie +Elizabeth +Josephine +Esther +Eleanor +June +Janet +Marie +Rose +Ann +Irene +Marlene +Sally +Carmen +Lorraine +Louise +Jacqueline +Geraldine +Lupe +Martha +Carolyn +Lillian +Jane +Diane +Marian +Mildred +Florence +Peggy +Bonnie +Patsy +Joann +Anita +Audrey +Grace +Charlotte +Catherine +Rita +Juanita +Anna +Roberta +Pat +Katherine +Beatrice +Lucille +Pauline +Janice +Darlene +Elaine +Connie +Jeanne +Vera +Marion +Edna +Eva +Wanda +Yvonne +Anne +Rosie +Rachel +Vivian +Jennie +Bernice +Consuelo +Elsie +Julia +Rosemary +Edith +Ramona +Ruby +Laura +Kathleen +Thelma +Loretta +Joy +Maxine +Dora +Ellen +Emma +Arlene +Teresa +Georgia +Isabel +Theresa +Wilma +Billie +Clara +Constance +Jeanette +Diana +Lucy +Amelia +Ethel +Bertha +Jo +Celia +Delores +Sylvia +Genevieve +Gladys +Kathryn +Margie +Stella +Angelina +Charlene +Sharon +Annie +Jessie +Violet +Doreen +Nadine +Laverne +Guadalupe +Nellie +Carole +Emily +Sarah +Beverley +Hazel +Margarita +Claire +Viola +Alberta +Alma +Ida +Jackie +Rosalie +Antonia +Kay +Lydia +Susan +Victoria +Dona +Rebecca +Angie +May +Marianne +Pearl +Caroline +Colleen +Paula +Aurora +Esperanza +Gertrude +Leona +Lola +Suzanne +Velma +Agnes +Cecilia +Elvira +Harriet +Maureen +Eileen +Jeannette +Muriel +Bette +Marguerite +Rosa +Alicia +Ella +Ernestine +Naomi +Sara +Inez +Lorna +Lila +Sheila +Socorro +Linda +Rosemarie +Adeline +Annette +Blanche +Delia +Marcia +Nina +Olga +Verna +Lily +Sue +Bessie +Eloise +Jerry +Flora +Mabel +Raquel +Antoinette +Armida +Dixie +Elinor +Gail +Petra +Yolanda +Angela +Elena +Gwendolyn +Judith +Lena +Madeline +Mae +Estella +Catalina +Cecelia +Eunice +Faye +Irma +Lee +Adele +Christine +Dawn +Josefina +Myrna +Olive +Winifred +Dianne +Henrietta +Jacquelyn +Josie +Molly +Patty +Priscilla +Bettie +Erma +Gayle +Helene +Hilda +Juana +Myrtle +Ofelia +Bobbie +Carla +Corinne +Cynthia +Judy +Susie +Ada +Amy +Elisa +Marcella +Mercedes +Mona +Natalie +Sandra +Valerie +Aileen +Arline +Beth +Cora +Evangeline +Geneva +Julie +Lillie +Melba +Annabelle +Della +Fern +Hope +Karen +Lenore +Lora +Lynn +Beryl +Christina +Daisy +Erlinda +Gwen +Manuela +Marilynn +Olivia +Opal +Pamela +Renee +Alyce +Amalia +Claudia +Cruz +Dorothea +Edwina +Eugenia +Isabelle +Lenora +Lorene +Maryann +Miriam +Rena +Amparo +Carmelita +Carolina +Clarice +Cleo +Fay +Georgina +Greta +Ina +Janis +Katie +Lucia +Neva +Tillie +Adela +Earlene +Eleanore +Elisabeth +Iris +Minnie +Rae +Velia +Belia +Concha +Darleen +Elma +Francisca +Freda +Gerry +Jeannine +Leah +Leila +Aiko +Alta +Ana +Ardis +Cherie +Dale +Delfina +Dolly +Elsa +Enid +Estelle +Etta +Eula +Francine +Glenna +Lela +Louella +Margery +Mitzi +Nelda +Nora +Rafaela +Setsuko +Soledad +Sophie +Therese +Betsy +Camille +Carrie +Charleen +Deborah +Dollie +Elvera +Emilia +Fumiko +Jewel +Johanna +Kazuko +Lavonne +Leonor +Lorena +Luella +Matilda +Michiko +Noreen +Regina +Rosario +Shirlee +Sofia +Trinidad +Adelina +Adrienne +Angelita +Bernadette +Carmel +Clare +Concepcion +Francis +Hortensia +Jenny +Jesus +John +Laurel +Lilly +Marietta +Mavis +Natalia +Patti +Toni +Andrea +Beatriz +Belen +Benita +Bernardine +Beverlee +Dorene +Eldora +Ernestina +Eulalia +Evangelina +Felicitas +Gay +Herlinda +Hortense +Jacklyn +Jan +Janette +Jeanie +Joanna +Jovita +Joycelyn +Lavon +Lilia +Lita +Lou +Luisa +Magdalena +Mercy +Merle +Natividad +Noel +Norene +Robert +Rosalee +Rowena +Sallie +Sonia +Tomasa +Willa +Adelaide +Aida +Antonette +Ardith +Bonita +Corrine +Crystal +Daphne +Denise +Donald +Edythe +Elenore +Frank +Janie +Jewell +Jimmie +Jocelyn +Joe +Katharine +Kimiko +Leslie +Lidia +Lina +Lolita +Louisa +Loyce +Mable +Madelyn +Madge +Margret +Marylou +Maurine +Myra +Nettie +Ophelia +Richard +Roselyn +Rosita +Ruthie +Sadie +William +Yasuko +Zoe +Akiko +Alene +Bettye +Beulah +Bobby +Carlota +Caryl +Celeste +Charline +Conception +Cornelia +Deloris +Dena +Effie +Elodia +Eloisa +Elva +Emiko +Enriqueta +Estela +Florine +Frankie +Georgene +Graciela +Harriett +Helena +Iva +Jeannie +Jill +Kim +Lauretta +Leonora +Leora +Leta +Letha +Loraine +Madeleine +Maggie +Marceline +Margot +Mariana +Marilee +Marjory +Mollie +Nita +Nona +Pattie +Peggie +Reva +Rhea +Rhoda +Sofie +Sumiko +Susana +Theodora +Toshiko +Veronica +Vilma +Yoko +Yoshiko +Alida +Allene +Althea +Alva +Arden +Ardeth +Avelina +Bernadine +Bruna +Carrol +Colette +Delphine +Elayne +Elise +Ester +Eve +Faith +Felice +Fusaye +Gretchen +Haruko +Hermelinda +Hortencia +Ila +Isabell +Janine +Jeanine +Jerrie +Juliette +Junko +Karla +Keiko +Lavina +Leatrice +Lorine +Lula +Luz +Lynne +Mamie +Marianna +Marsha +Marta +Martina +Masako +Melva +Mickey +Millicent +Millie +Monica +Nan +Nola +Ollie +Patrica +Phoebe +Polly +Reiko +Rosalind +Selma +Sonya +Stephanie +Ursula +Vicki +Wilda +Winona +Zelda +Barbara +Mary +Patricia +Betty +Joan +Dorothy +Shirley +Beverly +Margaret +Marilyn +Helen +Gloria +Nancy +Dolores +Virginia +Joyce +Carol +Alice +Frances +Donna +Ruth +Jean +Lois +Doris +Joanne +Norma +Janet +Evelyn +Diane +Eleanor +Sally +Marjorie +Marlene +June +Phyllis +Rose +Irene +Elizabeth +Carmen +Josephine +Marie +Ann +Esther +Lorraine +Carolyn +Geraldine +Maria +Jacqueline +Anita +Louise +Martha +Pat +Marian +Joann +Peggy +Bonnie +Florence +Mildred +Janice +Lillian +Anna +Roberta +Lupe +Patsy +Elaine +Kathleen +Connie +Charlotte +Jane +Juanita +Catherine +Jeanne +Grace +Audrey +Marion +Rita +Darlene +Arlene +Sylvia +Eva +Lucille +Edith +Jeanette +Pauline +Clara +Julia +Constance +Diana +Yvonne +Beatrice +Rachel +Wanda +Anne +Carole +Rosie +Katherine +Loretta +Sharon +Thelma +Theresa +Laura +Georgia +Margie +Bernice +Joy +Vivian +Dora +Elsie +Ethel +Delores +Isabel +Lucy +Edna +Rosemary +Charlene +Ellen +Ruby +Wilma +Susan +Claire +Jennie +Linda +Teresa +Billie +Ramona +Jo +Gladys +Nadine +Emma +Kay +Stella +Judith +Elvira +Kathryn +Maureen +Victoria +Nellie +Sarah +Caroline +Genevieve +Maxine +Alberta +Bertha +Vera +Angie +Consuelo +Ida +Violet +Angelina +Bette +Hazel +Jackie +Laverne +Rosa +Rosalie +Sue +Jessie +Amelia +Annie +Jeannette +Sara +Marguerite +Suzanne +Lila +Marcia +Olga +Angela +Emily +Eileen +Harriet +Muriel +Jacquelyn +Paula +Rosemarie +Beverley +Agnes +Alma +Velma +Aurora +Colleen +Sandra +Lorna +Cecilia +Margarita +Ernestine +Gayle +Celia +Dona +Doreen +Estella +Gertrude +Lola +Viola +Dixie +Pearl +Guadalupe +Henrietta +Janis +Lydia +Myrna +Antonia +Eloise +Marianne +Sheila +Verna +Elena +Gwendolyn +Leona +Adrienne +Delia +Esperanza +Mabel +Armida +Judy +Lynn +Annette +Erma +Gail +Madeline +Valerie +Adeline +Cynthia +Dianne +Helene +Iris +Karen +Lenore +May +Bobbie +Carla +Christine +Evangeline +Faye +Flora +Lena +Mae +Naomi +Rebecca +Socorro +Winifred +Antoinette +Arline +Elisa +Inez +Marilynn +Mona +Petra +Bessie +Dolly +Ella +Elva +Irma +Myra +Priscilla +Susie +Tillie +Catalina +Cecelia +Hilda +Renee +Ada +Alicia +Beth +Dawn +Faith +Fay +Fern +Julie +Lily +Myrtle +Natalie +Nina +Rae +Raquel +Bettie +Eunice +Hope +Lillie +Margery +Mercedes +Miriam +Sonia +Yolanda +Adele +Corinne +Dorothea +Edwina +Jeannie +Maryann +Minnie +Patty +Amy +Betsy +Carlene +Christina +Cora +Della +Eugenia +Gerry +Glenna +Hortensia +Joanna +Juana +Sondra +Andrea +Annabelle +Carmel +Lee +Lou +Luella +Marcella +Marylou +Melba +Pamela +Regina +Toni +Velia +Adela +Aileen +Daisy +Elinor +Erlinda +Gay +Gretchen +Gwen +Ina +Lilly +Loraine +Molly +Nola +Olivia +Sherry +Alyce +Amparo +Delfina +Francine +Jenny +Leila +Noreen +Robert +Sonya +Alta +Ana +Bernadine +Carrie +Darleen +Frankie +Jan +Josie +Matilda +Nora +Ofelia +Sallie +Shirlee +Stephanie +Sydney +Amalia +Angelita +Carolina +Clarice +Cleo +Concha +Elvera +Estela +Francisca +Greta +Jerry +Josefina +Jovita +Lenora +Leonor +Magdalena +Mickey +Opal +Robin +Adelina +Belia +Belva +Blanche +Claudine +Dorene +Emilia +Frieda +Herminia +Lavonne +Lita +Lucile +Marlyn +Nettie +Ophelia +Richard +Ardis +Camille +Claudia +Colette +Concepcion +Deborah +Denise +Elsa +Geneva +Harriett +Imogene +Isabell +Janette +Jeannine +Jewel +Jill +Kazuko +Leatrice +Lorene +Martina +Millie +Refugio +Rosario +Terry +Yoshiko +Yuriko +Aida +Beatriz +Beverlee +Bonny +Clare +Corrine +Dale +Darline +Georgiana +Glenda +Helena +Hortencia +Kathy +Lilia +Lolita +Louisa +Lynne +Madelyn +Merilyn +Mollie +Olive +Polly +Rena +Sophie +Susanne +Toshiko +Veronica +Yoko +Adella +Alene +Ayako +Benita +Beryl +Carmelita +Cherie +Coral +Dorthy +Effie +Eleanore +Elisabeth +Elise +Eliza +Etta +Eulalia +Evangelina +Georgette +Georgina +Germaine +Herlinda +Ila +John +Lela +Leslie +Louella +Lucia +Margot +Margret +Marina +Marta +Mercy +Midori +Rhoda +Rosita +Sophia +Susana +Zelma +Arden +Arleen +Augustina +Aurelia +Bernadette +Bobby +Carmela +Caryl +Charline +Chiyoko +Cornelia +Dian +Dorcas +Dorine +Earlene +Eloisa +Elouise +Ernestina +Estelle +Eula +Gracie +Harlene +Harriette +Hermelinda +Ignacia +Ilene +Jewell +Kitty +Laurel +Leta +Lidia +Lora +Lorena +Luz +Mamie +Manuela +Marcelina +Marietta +Marylyn +Melva +Michiko +Millicent +Mina +Nadene +Nedra +Noel +Nona +Norine +Paulette +Rosalind +Rowena +Setsuko +Sumiko +Sybil +Teruko +Therese +Velda +Vicki +Wilhelmina +Willie +Yukiko +Zoe +Adelle +Alejandra +Allene +Alva +Alvina +Avis +Belen +Berta +Camilla +Carleen +Carolee +Carrol +Charleen +Clarissa +Conchita +Daphne +Delma +Elma +Emiko +Enid +Enriqueta +Freda +Gearldine +Gene +Geri +Gilda +Hiroko +Hisako +Holly +Hortense +Iola +Ione +Isobel +Jacklyn +Jacquelin +Jeri +Jesus +Josefa +Juliet +Juliette +Karla +Lauretta +Lea +Lida +Lisa +Lorita +Lucinda +Lucretia +Lula +Mara +Margo +Marilee +Marilou +Marjory +Maryanne +Marylin +Mavis +Meredith +Mitzi +Miyoko +Nan +Natalia +Nelda +Norene +Ora +Patti +Phoebe +Rafaela +Reva +Rosalee +Roselyn +Rosetta +Sadie +Selma +Theodora +Tomiko +Wilda +Willa +Winona +Barbara +Mary +Patricia +Betty +Joan +Shirley +Dorothy +Beverly +Margaret +Nancy +Gloria +Marilyn +Carol +Helen +Virginia +Dolores +Joyce +Donna +Jean +Frances +Janet +Alice +Ruth +Diane +Doris +Marlene +Carolyn +Lois +Phyllis +Sally +Evelyn +Joanne +Ann +Marjorie +Eleanor +Elizabeth +Irene +Marie +Norma +Rose +Josephine +Carmen +Lorraine +Esther +Geraldine +Jacqueline +Louise +Maria +Pat +Martha +Darlene +June +Carole +Jane +Bonnie +Joann +Anna +Florence +Roberta +Anita +Marian +Janice +Lillian +Sylvia +Patsy +Arlene +Lupe +Peggy +Elaine +Jeanne +Kathleen +Pauline +Juanita +Rita +Audrey +Charlotte +Grace +Mildred +Catherine +Sharon +Loretta +Margie +Rachel +Laura +Jennie +Bernice +Lucille +Connie +Diana +Beatrice +Marion +Theresa +Vivian +Anne +Jeanette +Eva +Katherine +Kathryn +Julia +Kay +Lucy +Susan +Edith +Yvonne +Rosie +Clara +Ellen +Edna +Joy +Wilma +Rosemary +Dora +Sarah +Wanda +Elsie +Georgia +Maxine +Charlene +Delores +Thelma +Judith +Nadine +Sue +Jo +Sandra +Stella +Vera +Jessie +Lydia +Annie +Claire +Ramona +Consuelo +Ruby +Bette +Constance +Gladys +Hazel +Marcia +Emily +Judy +Maureen +Nellie +Amelia +Angelina +Emma +Caroline +Jackie +Linda +Rosalie +Jacquelyn +Paula +Suzanne +Teresa +Ethel +Isabel +Eileen +Lola +Alma +Billie +Sara +Bertha +Gail +Ida +Victoria +Violet +Cecilia +Claudia +Laverne +Rosa +Celia +Dixie +Genevieve +Marianne +Aurora +Jeannette +Olga +Angela +Angie +Beverley +Karen +Leona +Elvira +Harriet +Inez +Nina +Sheila +Gwendolyn +Alberta +Doreen +Velma +Verna +Delia +Lynn +Rosemarie +Viola +Lila +Margarita +Christine +Colleen +Dona +Lorna +Rebecca +Annette +Guadalupe +Valerie +Agnes +Antonia +Esperanza +Myrna +Winifred +Adrienne +Eloise +Muriel +Alicia +Eunice +Faye +Gwen +Priscilla +Elinor +Ernestine +Gertrude +Irma +Josie +Lily +Maryann +Myrtle +Pearl +Rae +Armida +Dianne +Mae +Marguerite +May +Adele +Henrietta +Jerry +Julie +Lee +Naomi +Bobbie +Catalina +Elena +Ella +Hilda +Mabel +Socorro +Bessie +Carla +Christina +Cynthia +Ernestina +Leah +Terry +Arline +Dorothea +Fay +Helene +Hope +Marilynn +Miriam +Natalie +Aileen +Cecelia +Corinne +Estella +Lena +Madeline +Nora +Yolanda +Bettie +Concha +Evangeline +Leila +Margery +Patty +Adeline +Blanche +Elva +Flora +Gayle +Glenda +Lavonne +Molly +Mona +Myra +Noreen +Ofelia +Renee +Antoinette +Claudette +Dolly +Elisa +Estelle +Harriett +Janis +Leslie +Lora +Mercedes +Olive +Regina +Ada +Dawn +Della +Gretchen +Iris +Jeannine +Lilly +Marylou +Melba +Petra +Raquel +Amy +Clare +Fern +Joanna +Josefina +Juana +Lynne +Nona +Robin +Susie +Alta +Beryl +Carlene +Carmelita +Edwina +Erlinda +Erma +Laurel +Lenore +Loraine +Lorene +Marcella +Opal +Sonya +Sydney +Toni +Adela +Allene +Annabelle +Beulah +Cora +Earlene +Eugenia +Faith +Ina +Jan +Jeanie +Jeannie +Jenny +Katie +Lucia +Magdalena +Michiko +Minnie +Olivia +Sondra +Velda +Winona +Adelina +Andrea +Ardith +Beth +Carrie +Clarice +Darline +Dee +Delfina +Denise +Georgina +Glenna +Jeanine +Johanna +Katharine +Lela +Lou +Matilda +Meredith +Ophelia +Rosalind +Stephanie +Sumiko +Wilda +Amparo +Bernadine +Berta +Camille +Carmel +Charleen +Darleen +Elsa +Frankie +Geneva +Greta +Hortencia +Hortensia +Imogene +Janette +Lillie +Louella +Luella +Margot +Marina +Millicent +Nelda +Nell +Neva +Sherry +Sophie +Theodora +Tillie +Toshiko +Aloha +Alyce +Amalia +Belen +Belva +Bernadette +Betsy +Carolee +Cherie +Daisy +Dorthy +Earline +Elma +Elvera +Enedina +Gerry +John +Jovita +Lolita +Louisa +Lucile +Lynette +Millie +Mollie +Nira +Norine +Rhoda +Ruthie +Shirlee +Sofia +Sonia +Susanne +Willa +Ana +Angelita +Benita +Brenda +Carolina +Charline +Claudine +Cleo +Concepcion +Cruz +Daphne +Deloris +Eleanore +Francine +Francisca +Frieda +Jacquelin +Janie +Jayne +Jewell +Jill +Juliet +Kiyoko +Luz +Mable +Madge +Manuela +Marylin +Maybelle +Merle +Michelle +Monica +Nanette +Patti +Richard +Robert +Sharlene +Willie +Yoshiko +Aida +Aurelia +Avelina +Camilla +Carmela +Carroll +Cherry +Chloe +Colette +Conception +Dale +Dollie +Dorene +Evonne +Gay +Gene +Georgette +Hiroko +Ilene +Jewel +Joe +Julianne +Kimiko +Kitty +Lavon +Lea +Lenora +Lilia +Maggie +Marietta +Marjory +Marlyn +Marylyn +Maurine +Melva +Merry +Nadene +Nan +Nedra +Nettie +Norene +Pamela +Peggie +Phoebe +Rochelle +Rosalyn +Rosario +Rowena +Sadie +Sallie +Soledad +Trinidad +Vesta +William +Yoko +Zoe +Abigail +Aline +Althea +Amanda +Arden +Arla +Avis +Becky +Belia +Bennie +Bertie +Bettye +Blanca +Bonita +Carleen +Carmella +Conchita +Corrine +Dana +Deborah +Dian +Dinah +Dorcas +Earnestine +Eiko +Elodia +Eloisa +Emiko +Estela +Evangelina +Florine +Freda +Georgene +Georgie +Gerald +Goldie +Gracie +Herminia +Ines +Iva +Jacklyn +Janine +Jeane +Karin +Kaye +Kazuko +Lavina +Lelia +Leta +Lidia +Lorena +Loyce +Lula +Lyla +Madeleine +Margy +Mariann +Marilee +Mercy +Merna +Mickey +Minerva +Mitzi +Miyoko +Natalia +Nola +Oma +Pattie +Ray +Roma +Rosita +Sachiko +Sharleen +Sherrie +Therese +Tommie +Ursula +Velia +Veronica +Zella +Mary +Barbara +Patricia +Shirley +Joan +Betty +Carol +Nancy +Dorothy +Margaret +Helen +Beverly +Marilyn +Gloria +Virginia +Donna +Joyce +Dolores +Janet +Jean +Ruth +Diane +Alice +Frances +Joanne +Sally +Arlene +Ann +Carolyn +Elizabeth +Lois +Doris +Norma +Evelyn +Irene +Marjorie +Marlene +Eleanor +Phyllis +Lorraine +Darlene +Marie +Josephine +June +Louise +Carmen +Joann +Esther +Pat +Rose +Geraldine +Elaine +Carole +Martha +Sylvia +Jacqueline +Maria +Kathleen +Sandra +Janice +Anna +Sharon +Charlotte +Anita +Peggy +Bonnie +Marian +Connie +Pauline +Lupe +Patsy +Jane +Lillian +Roberta +Yvonne +Beatrice +Diana +Susan +Rita +Catherine +Grace +Juanita +Jeanne +Rosie +Jo +Audrey +Katherine +Florence +Anne +Laura +Linda +Loretta +Margie +Judith +Theresa +Jackie +Jessie +Marion +Lucille +Rachel +Kay +Julia +Ramona +Wanda +Jeanette +Kathryn +Charlene +Gail +Jennie +Suzanne +Eva +Edith +Ellen +Maureen +Mildred +Clara +Joy +Myrna +Dixie +Eileen +Emma +Ruby +Judy +Rosemary +Dora +Elsie +Nadine +Vera +Ethel +Georgia +Gladys +Billie +Amelia +Constance +Edna +Sarah +Marcia +Rosalie +Wilma +Annie +Lydia +Sue +Thelma +Victoria +Emily +Teresa +Caroline +Delores +Claire +Ida +Isabel +Lola +Lucy +Maxine +Laverne +Beverley +Celia +Sheila +Hazel +Lynn +Bernice +Nellie +Paula +Rosa +Bertha +Karen +Vivian +Claudia +Jeannette +Sara +Angie +Delia +Leona +Naomi +Stella +Violet +Adrienne +Alberta +Consuelo +Dianne +Dona +Harriet +Bette +Glenda +Julie +Valerie +Verna +Angelina +Jacquelyn +Nina +Arline +Genevieve +Olga +Rebecca +Marguerite +Marianne +Viola +Guadalupe +Lorna +Agnes +Alma +Aurora +Cynthia +Margarita +Rosemarie +Adele +Armida +Colleen +Madeline +Priscilla +Velma +Annette +Cecilia +Flora +Muriel +Alicia +Antonia +Christine +Dorothea +Esperanza +Lily +Eloise +Irma +Natalie +Adeline +Doreen +Elisa +Elvira +Gertrude +Josie +Lee +Lila +Myrtle +Ella +Gayle +Leah +Lenore +Monica +Ofelia +Shirlee +Cecelia +Faye +Hilda +Maryann +Miriam +Renee +Ernestine +Estella +Fay +Joanna +Lena +Bettie +Hope +Mona +Patty +Pearl +Aileen +Christina +Claudette +Erma +Gwendolyn +Henrietta +Inez +Jenny +Lynne +Mae +Della +Helene +Janis +May +Rae +Socorro +Antoinette +Blanche +Daisy +Estelle +Eunice +Marilynn +Molly +Angela +Carla +Darleen +Dorene +Gay +Mabel +Sallie +Tillie +Clarice +Corinne +Earlene +Elena +Lela +Myra +Nora +Opal +Winifred +Yolanda +Alyce +Bernadette +Beth +Cora +Georgina +Gretchen +Jeannine +Jill +Leila +Marcella +Marylou +Nola +Benita +Bobbie +Catalina +Dale +Deborah +Denise +Dolly +Fern +Francisca +Janette +Josefina +Margery +Olivia +Raquel +Velia +Andrea +Bessie +Cleo +Dawn +Elinor +Faith +Gerry +Glenna +Gwen +Ina +Lavonne +Lillie +Loraine +Lou +Lucia +Meredith +Nona +Olive +Selma +Sydney +Beverlee +Evangelina +Evangeline +Hortencia +Iris +Jerry +Johanna +Katharine +Noreen +Petra +Rosario +Sondra +Terry +Allene +Amy +Carolee +Eugenia +Jan +Jeanie +Jeannie +Juana +Lenora +Leslie +Polly +Toni +Ada +Ana +Annabelle +Betsy +Carmelita +Charleen +Clare +Concha +Edwina +Elvera +Erlinda +Freda +Frieda +Geneva +Laurie +Lynda +Mable +Margot +Natalia +Pamela +Regina +Vickie +Willa +Arleen +Aurelia +Bernadine +Beulah +Bonita +Carlene +Celeste +Concepcion +Delfina +Enid +Estela +Florine +Hortensia +Ila +Jeri +Lilly +Lona +Lora +Matilda +Mercedes +Nan +Ophelia +Robin +Rosalind +Sharlene +Sophie +Stephanie +Alvina +Arden +Beatriz +Carmel +Charles +Cheryl +Corrine +Crystal +Deloris +Elva +Emilia +Francis +Frankie +Ginger +Jacklyn +Lea +Leonor +Lorene +Luanne +Marietta +Millicent +Neva +Norine +Robert +Rosita +Sadie +Sherry +Susanne +Susie +Trinidad +Yoshiko +Aida +Akiko +Alva +Amparo +Beryl +Cathryn +Cecile +Cherie +Dana +Delma +Eiko +Eleanore +Elma +Felicia +Georgiana +Isabelle +Janie +Jewel +Kathy +Laurel +Magdalena +Marilou +Marina +Masako +Millie +Minnie +Mollie +Nanette +Nita +Ola +Rochelle +Setsuko +Sonia +Sonya +Veronica +Wilda +Winona +Adela +Adelina +Alexandra +Aline +Angelita +Belia +Carlotta +Carrol +Caryl +Charmaine +Conchita +Darline +Diann +Effie +Emiko +Enedina +Erlene +Francine +Gene +Georgette +Georgine +Greta +Herlinda +Imogene +Jewell +Judie +Justine +Karin +Kazuko +Leone +Lita +Luann +Luella +Madeleine +Marcelina +Margo +Marilee +Marna +Marylin +Marylyn +Maurine +Maybelle +Melba +Melva +Michiko +Mickey +Mitzi +Nelda +Nettie +Patt +Reba +Reva +Rosalee +Sherrill +Shigeko +Tomasa +Toshiko +Trudy +Valeria +Vida +Zelda +Adelle +Alta +Amalia +Amanda +Angeline +Ardis +Belva +Billee +Brenda +Camille +Carmela +Carmella +Carolina +Cruz +Daphne +Dawna +Dee +Dian +Dione +Donald +Dottie +Elise +Eloisa +Elsa +Erna +Etta +Eula +Felicitas +George +Gina +Glory +Hannah +Heather +Helena +Herminia +Hiroko +Iva +Jacquelin +Jennifer +Jerrie +Joe +Juliana +Karla +Karol +Katie +Kaye +Keiko +Lavon +Leonora +Leora +Leta +Luana +Lyla +Lynette +Madelyn +Marcy +Marita +Marjory +Marsha +Melinda +Mercy +Merilyn +Merle +Merlene +Midori +Mimi +Minerva +Noralee +Patti +Paulina +Rosella +Roxana +Sachiko +Sonja +Susana +Tanya +Therese +Ursula +Velda +Wilhelmina +Yoko +Zola +Barbara +Mary +Shirley +Patricia +Joan +Carol +Betty +Nancy +Marilyn +Beverly +Margaret +Dorothy +Donna +Helen +Virginia +Dolores +Gloria +Frances +Janet +Diane +Joyce +Jean +Ruth +Joanne +Alice +Marlene +Sally +Carolyn +Darlene +Sandra +Lois +Norma +Ann +Phyllis +Elizabeth +Doris +Sharon +Janice +Roberta +Marjorie +Rose +Arlene +Evelyn +Eleanor +Irene +Marie +Martha +Carmen +Esther +Geraldine +Jacqueline +Carole +Josephine +Pat +Joann +Kathleen +Maria +Sylvia +Jane +Yvonne +Elaine +Lorraine +June +Louise +Bonnie +Juanita +Judith +Anita +Susan +Anna +Marian +Loretta +Lupe +Charlotte +Connie +Judy +Sheila +Lillian +Grace +Patsy +Anne +Jo +Lucille +Claudia +Peggy +Audrey +Katherine +Florence +Rachel +Gail +Pauline +Jeanette +Diana +Rita +Catherine +Beatrice +Linda +Karen +Rosie +Wanda +Ellen +Georgia +Joy +Jeanne +Mildred +Theresa +Julia +Kathryn +Laura +Suzanne +Charlene +Kay +Margie +Jennie +Maureen +Marcia +Nadine +Eva +Marion +Dixie +Wilma +Edith +Rosemary +Vera +Vivian +Bertha +Elsie +Teresa +Lucy +Bernice +Ramona +Ruby +Sue +Emily +Maxine +Sarah +Stella +Annette +Edna +Jackie +Myrna +Dora +Jessie +Valerie +Angelina +Delores +Beverley +Clara +Ethel +Lydia +Emma +Rosa +Celia +Isabel +Thelma +Christine +Caroline +Gladys +Ida +Hazel +Claudette +Eileen +Genevieve +Claire +Constance +Nellie +Alma +Angie +Jeannette +Josie +Margarita +Victoria +Doreen +Naomi +Verna +Annie +Muriel +Amelia +Cecilia +Laverne +Paula +Adrienne +Harriet +Arline +Billie +Dona +Leona +Rosalie +Esperanza +Irma +Sara +Dianne +Glenda +Lynn +Violet +Lola +Angela +Consuelo +Cynthia +Marianne +Nina +Olga +Ernestine +Marguerite +Colleen +Lynne +Rosemarie +Agnes +Antonia +Carla +Jacquelyn +Julie +Aurora +Gertrude +Henrietta +Pearl +Rebecca +Armida +Faye +Mabel +Yolanda +Alicia +Antoinette +Gayle +Lorna +Mona +Velma +Alberta +Bette +Guadalupe +Lee +Lenore +Lily +Marilynn +Pamela +Winifred +Gwendolyn +Myrtle +Gwen +Viola +Delia +Estella +Madeline +Terry +Cora +Dawn +Gretchen +Helene +Leah +May +Mercedes +Miriam +Shirlee +Adeline +Bessie +Cecelia +Dale +Elvira +Flora +Leslie +Priscilla +Rae +Socorro +Adele +Evangeline +Janis +Lena +Maryann +Natalie +Patty +Renee +Sherry +Stephanie +Toni +Adela +Amy +Bobbie +Carlene +Gay +Inez +Lila +Marsha +Susie +Beth +Blanche +Ella +Hilda +Joanna +Lorene +Molly +Rochelle +Christina +Dolly +Jerry +Jill +Marcella +Margery +Monica +Noreen +Sondra +Andrea +Bettie +Catalina +Denise +Earlene +Elena +Eloise +Gerry +Jeannie +Josefina +Lou +Marylou +Sonia +Charleen +Della +Dorene +Erma +Fay +Hope +Ina +Olivia +Sallie +Dana +Deborah +Estelle +Eunice +Greta +Iris +Jeanie +Lavonne +Margo +Nora +Patti +Raquel +Regina +Robin +Sonya +Alta +Angelita +Bernadine +Cheryl +Dorothea +Elisa +Elva +Florine +Katharine +Kathy +Lenora +Mercy +Minnie +Norine +Ofelia +Ophelia +Rhoda +Rosalind +Sharlene +Susanne +Sydney +Tillie +Ada +Amparo +Carmelita +Carolee +Carrie +Clarice +Corinne +Erlinda +Etta +Evangelina +Fern +Lea +Luanne +Marylyn +Myra +Petra +Sandy +Alyce +Daisy +Deloris +Elinor +Freda +Ginger +Harriett +Hortencia +Jacklyn +Jan +Lynda +Magdalena +Merle +Nola +Nona +Rosario +Rosita +Sachiko +Willa +Yoshiko +Aida +Allene +Cherie +Claudine +Eleanore +Faith +Glenna +Heather +Imogene +Janette +Janie +Jeannine +Jenny +Jeri +Jewel +Jovita +Katie +Leora +Lucia +Lula +Manuela +Marge +Margot +Mollie +Nan +Opal +Sidney +Therese +Adelina +Aurelia +Belva +Betsy +Camille +Carleen +Concepcion +Darleen +Edwina +Elvera +Francine +Frankie +Geneva +Georgina +Goldie +Herminia +Ione +Iva +Johanna +Kazuko +Laurel +Lillie +Luella +Mable +Mae +Matilda +Melba +Meredith +Michiko +Paulette +Rosetta +Zoe +Ardith +Arleen +Beatriz +Belia +Beverlee +Blanca +Carmela +Carolina +Carroll +Celeste +Clare +Cleo +Cordelia +Ernestina +Estela +Eugenia +Francis +Gaye +Gracie +Helena +Herlinda +Jayne +Jewell +Juliet +Kiyoko +Laurie +Leila +Leota +Lilia +Marina +Maryellen +Masako +Merry +Michelle +Millie +Nannette +Norene +Rena +Robert +Rowena +Saundra +Setsuko +Shelby +Veronica +Winnie +Adell +Aileen +Ana +Arden +Ardis +Augustina +Benita +Bettye +Carmel +Cathy +Concha +Corrine +Cristina +Darline +Delphine +Dian +Dorris +Elise +Elma +Emiko +Enedina +Francisca +Frieda +Gale +Georgiana +Gerda +Graciela +Hattie +Hiroko +Hortensia +Ilene +Isabelle +Janelle +John +Lavern +Lela +Leonor +Lilly +Lora +Loraine +Louella +Luana +Lucile +Lynnette +Maggie +Mari +Marjory +Marlyn +Maryjo +Maurine +Melody +Merlene +Olive +Otilia +Richard +Sharron +Sigrid +Trinidad +Verda +Vicki +Vickie +Winnifred +Winona +Yoko +Adelia +Aiko +Alpha +Alva +Andree +Antonette +Asako +Astrid +Ava +Beryl +Bonita +Brenda +Carolynn +Carrol +Caryl +Charline +Chiyoko +Darlyne +Delma +Dominga +Dorine +Edythe +Eilene +Felicia +Harlene +Isabell +Jacquelin +Jacqulyn +Juana +Julianne +Karin +Karleen +Kimiko +Kitty +Lenna +Lina +Lorena +Loris +Madeleine +Mardell +Marilee +Martina +Marylin +Melinda +Merilyn +Mikell +Mitzi +Nanette +Nelda +Nettie +Neva +Nobuko +Penny +Raylene +Rosanne +Roslyn +Sadie +Shelley +Shirlene +Shirly +Silvia +Sophie +Sumiko +Tania +Tanya +Terrie +Tonia +Trini +Vanessa +Yuriko +Mary +Barbara +Patricia +Carol +Shirley +Joan +Nancy +Betty +Beverly +Marilyn +Donna +Margaret +Virginia +Helen +Dorothy +Gloria +Joyce +Dolores +Diane +Janet +Frances +Sharon +Sandra +Alice +Carolyn +Marlene +Ruth +Joanne +Sally +Janice +Jean +Darlene +Ann +Lois +Norma +Elizabeth +Irene +Phyllis +Eleanor +Carole +Arlene +Roberta +Rose +Marie +Sylvia +Pat +Judith +Doris +Esther +Geraldine +Evelyn +Maria +Yvonne +Anita +Kathleen +Jacqueline +Carmen +Martha +Jane +Gail +Joann +Josephine +Louise +Elaine +Lorraine +Marjorie +Peggy +Linda +Susan +June +Karen +Bonnie +Judy +Connie +Loretta +Jo +Charlotte +Lupe +Anna +Jeanette +Pauline +Rachel +Charlene +Lillian +Grace +Katherine +Marian +Patsy +Kay +Catherine +Rita +Wanda +Joy +Florence +Juanita +Suzanne +Julia +Rosie +Jeanne +Anne +Myrna +Claudia +Marcia +Sue +Georgia +Margie +Laura +Diana +Beatrice +Jackie +Marion +Lucy +Dixie +Sheila +Jennie +Maureen +Rosemary +Ramona +Mildred +Annette +Audrey +Lydia +Ellen +Edith +Maxine +Theresa +Kathryn +Thelma +Paula +Wilma +Delores +Lucille +Elsie +Jessie +Stella +Bernice +Caroline +Edna +Hazel +Isabel +Emma +Gayle +Angelina +Dora +Sarah +Arline +Ruby +Vera +Nadine +Teresa +Vivian +Claire +Clara +Glenda +Amelia +Cynthia +Jeannette +Rosemarie +Cecilia +Christine +Dianne +Valerie +Angie +Claudette +Consuelo +Julie +Margarita +Bertha +Colleen +Eva +Lola +Beverley +Lynn +Sara +Celia +Constance +Emily +Nellie +Genevieve +Leona +Bette +Rosalie +Annie +Billie +Ethel +Gladys +Jacquelyn +Alma +Eileen +Josie +Velma +Yolanda +Aurora +Harriet +Marsha +Adrienne +Victoria +Angela +Dona +Faye +Marianne +Naomi +Verna +Alicia +Janis +Lynne +Rosa +Sherry +Viola +Violet +Dawn +Estella +Ida +Pearl +Gay +Muriel +Bobbie +Cecelia +Ernestine +Gertrude +Gretchen +Laverne +Madeline +Nina +Priscilla +Alberta +Della +Doreen +Henrietta +Marguerite +Mona +Antonia +Elvira +Gwendolyn +Olga +Rebecca +Carla +Delia +Esperanza +Hope +Lee +Maryann +Patty +Rochelle +Agnes +Inez +Nora +Olivia +Guadalupe +Iris +Lorna +Marylou +Merle +Myrtle +Noreen +Armida +Ella +Gerry +Stephanie +Adeline +Leslie +Natalie +Raquel +Terry +Antoinette +Christina +Dale +Denise +Erma +Fern +Helene +Irma +Lily +Molly +Renee +Beth +Carlene +Earlene +Flora +Gwen +Ina +Kathy +Leah +Pamela +Rae +Sharlene +Blanche +Clarice +Eloise +Sherrill +Cora +Elisa +Jerry +Lila +Marilynn +Shirlee +Socorro +Sonia +Adele +Bettie +Fay +Geneva +Lena +Monica +Nona +Ofelia +Rosalind +Sallie +Tillie +Catalina +Faith +Ginger +Hilda +Jan +Jill +Lenore +Lilly +Mabel +May +Mercedes +Miriam +Myra +Rosario +Sharron +Sondra +Dorene +Eunice +Glenna +Marina +Nola +Sonja +Winifred +Adelina +Allene +Arleen +Corinne +Darla +Delfina +Elena +Elinor +Elva +Evangeline +Hortencia +Lorene +Magdalena +Susie +Ada +Alta +Carroll +Darleen +Deborah +Eleanore +Erlinda +Gracie +Isabelle +Jeanie +Joanna +Kaye +Lora +Marcella +Margot +Melba +Melva +Meredith +Petra +Regina +Susanne +Wendy +Adela +Aileen +Alison +Amy +Ana +Bessie +Beverlee +Carmelita +Cherie +Deanna +Dolly +Edwina +Jenny +Luella +Marcelina +Opal +Penny +Sydney +Toni +Andrea +Beryl +Betsy +Camille +Cecile +Cheryl +Cleo +Darline +Dorothea +Estela +Eugenia +Francine +Jeannie +Katie +Laurie +Louella +Margery +Margo +Marietta +Marilee +Marta +Marva +Melinda +Millie +Nelda +Robin +Sonya +Tonya +Carrie +Cathy +Charleen +Cruz +Deloris +Estelle +Felicia +Fumiko +Gaye +Georgette +Helena +Hortensia +Ilene +Jacque +Janette +Juana +Katharine +Lela +Mae +Maryanne +Matilda +Patti +Alva +Amalia +Angelita +Beulah +Carolina +Dana +Dee +Enedina +Ernestina +Etta +Geri +Herminia +Jeri +Lillie +Lisa +Louisa +Lucia +Lula +Lynda +Madeleine +Manuela +Marjory +Marleen +Mickey +Millicent +Neva +Olive +Penelope +Rhoda +Roxie +Sophie +Velia +Aida +Brenda +Carolee +Caryl +Celeste +Chloe +Concepcion +Cornelia +Daisy +Dorine +Elma +Elvera +Evangelina +Florine +Francis +Frieda +Harlene +Harriett +Holly +Joe +Johanna +Lavonne +Leila +Leola +Lita +Loraine +Lou +Louann +Lucretia +Lynette +Marylin +Mavis +Michele +Michelle +Michiko +Mollie +Nita +Noel +Ophelia +Paulette +Reba +Rosita +Rowena +Roxanna +Sandy +Selma +Sherrie +Shiela +Soledad +Tanya +Therese +Vicki +Vida +Wilda +Adriana +Amparo +Ardith +Bea +Beatriz +Bernadette +Bernadine +Bonita +Carmel +Carrol +Chris +Concha +Coralie +Darlyn +Dian +Earline +Effie +Elia +Elsa +Emiko +Erlene +Frankie +Gale +Georgie +Greta +Herlinda +Ingrid +Jacklyn +Jeanine +Jeannine +Jeraldine +John +Jovita +Karol +Keiko +Lavina +Lidia +Luann +Mable +Madge +Maurine +Merry +Mimi +Norine +Ora +Robyn +Roselyn +Roxanne +Saundra +Sheryl +Sigrid +Susanna +Sybil +Toby +Veronica +Vickie +Virgie +Winona +Zelda +Alexandra +Alyce +Belva +Benita +Berta +Camilla +Cecily +Charmaine +Claudine +Debbie +Delma +Dena +Diann +Dianna +Earleen +Elise +Elissa +Eliza +Elnora +Emilia +Erin +Erna +Ester +Evalyn +Francisca +Gaylene +Georgene +Harriette +Imogene +Ines +Janie +Jayne +Jerrie +Jewel +Karin +Karla +Karlene +Katheryn +Laureen +Lauretta +Lenora +Leonor +Leonora +Leta +Lolita +Lona +Lorretta +Luanne +Lucile +Luisa +Mamie +Marilyne +Marlyn +Martina +Masako +Merilyn +Minnie +Mitzi +Nada +Nancie +Nanette +Natalia +Nettie +Phoebe +Polly +Reiko +Rena +Ruthie +Setsuko +Shirlene +Sumiko +Toshiko +Trinidad +Velda +Velta +Vicky +Willa +Yoshiko +Zoe +Mary +Barbara +Patricia +Carol +Shirley +Nancy +Betty +Joan +Donna +Beverly +Margaret +Marilyn +Virginia +Dorothy +Diane +Helen +Joyce +Carolyn +Sharon +Gloria +Janet +Frances +Sandra +Janice +Dolores +Alice +Linda +Darlene +Elizabeth +Joanne +Carole +Jean +Ruth +Ann +Marlene +Norma +Sally +Judith +Roberta +Marie +Arlene +Rose +Evelyn +Eleanor +Irene +Doris +Phyllis +Pat +Lois +Judy +Jacqueline +Gail +Martha +Joann +Susan +Sylvia +Kathleen +Peggy +Anita +Geraldine +Elaine +Yvonne +Deanna +Loretta +Bonnie +Diana +Karen +Maria +Esther +Connie +Marjorie +June +Jane +Charlotte +Jeanette +Josephine +Anna +Carmen +Louise +Katherine +Suzanne +Catherine +Charlene +Jo +Rachel +Rita +Juanita +Patsy +Anne +Marcia +Wanda +Lupe +Kay +Lorraine +Lillian +Sue +Marian +Kathryn +Jeanne +Laura +Paula +Dixie +Margie +Myrna +Julia +Sheila +Beatrice +Pauline +Ruby +Georgia +Dianne +Claudia +Grace +Lucille +Maureen +Wilma +Eva +Mildred +Ellen +Florence +Lydia +Rosalie +Rosemary +Rosie +Jennie +Theresa +Billie +Jackie +Vera +Audrey +Clara +Constance +Ramona +Edith +Maxine +Caroline +Elsie +Glenda +Lucy +Vivian +Delores +Emily +Isabel +Lynn +Bernice +Joy +Gayle +Edna +Jessie +Colleen +Lynne +Eileen +Marion +Valerie +Rosemarie +Annette +Dora +Nadine +Cecilia +Rosa +Arline +Christine +Jeannette +Victoria +Bertha +Celia +Lola +Verna +Gladys +Angie +Stella +Teresa +Ida +Julie +Nellie +Toni +Beverley +Emma +Marianne +Thelma +Cynthia +Hazel +Jacquelyn +Yolanda +Ethel +Harriet +Marsha +Sara +Bette +Marguerite +Sarah +Angelina +Claudette +Violet +Claire +Leona +Naomi +Pamela +Amelia +Laverne +Sonja +Faye +Janis +Margarita +Velma +Alma +Angela +Annie +Henrietta +Antoinette +Antonia +Deanne +Alberta +Cecelia +Doreen +Flora +Madeline +Mona +Lorna +Gay +Adele +Genevieve +Pearl +Irma +Lee +Olga +Rebecca +Sherry +Consuelo +Guadalupe +Nina +Renee +Jan +Olivia +Patty +Priscilla +Adrienne +Dona +Joanna +Maryann +Molly +Terry +Viola +Bobbie +Delia +Elvira +Esperanza +Eunice +Marylou +Vicki +Alicia +Ella +Gertrude +Gwendolyn +Inez +Jacklyn +Melba +Muriel +Armida +Carla +Dawn +Denise +Eloise +Francine +Gretchen +Lynda +Noreen +Sondra +Winifred +Cora +Darleen +Dianna +Estella +Josie +Lenore +Leslie +Nora +Ofelia +Sonya +Deborah +Della +Ernestine +Helene +Leah +Sharron +Beth +Christina +Glenna +Mae +Marcella +Margery +May +Penelope +Rochelle +Sharlene +Aurora +Charleen +Marilee +Mercedes +Miriam +Amy +Carlene +Corinne +Elinor +Elva +Erma +Kathy +Lou +Marilynn +Merle +Myra +Penny +Petra +Regina +Susanne +Cheryl +Lila +Myrtle +Natalie +Nola +Patti +Raquel +Shirlee +Stephanie +Adeline +Andrea +Bessie +Carolee +Dale +Dana +Earlene +Eugenia +Evangeline +Hope +Janette +Jeannie +Jerry +Leilani +Lora +Lorene +Margo +Rhoda +Sonia +Bernadine +Camille +Celeste +Clarice +Dolly +Erlinda +Frankie +Ginger +Gwen +Harlene +Laurel +Lena +Lily +Norita +Rosalind +Saundra +Sherrill +Alyce +Brenda +Cathy +Cleo +Dee +Dorothea +Harriett +Ilene +Iris +Jeannine +Jolene +Laurie +Lavonne +Lynette +Mabel +Magdalena +Neva +Robin +Susie +Sydney +Agnes +Arleen +Carroll +Cecile +Claudine +Cruz +Fern +Judie +Leota +Letha +Lidia +Lucia +Marietta +Meredith +Rae +Sandy +Veronica +Ada +Aileen +Becky +Beulah +Corrine +Darline +Dorene +Elma +Fay +Freda +Greta +Hilda +Hortencia +Jill +Juana +Lenora +Madelyn +Melva +Merry +Ophelia +Tanya +Amparo +Ardith +Carmelita +Catalina +Deloris +Ernestina +Iva +Jewel +Juliet +Leila +Marylyn +Mavis +Melinda +Norene +Polly +Sallie +Socorro +Tillie +Tina +Vickie +Wendy +Alta +Blanche +Carleen +Carrie +Caryl +Concha +Eleanore +Elena +Geneva +Gerry +Janelle +Jenny +Johanna +Juliette +Leola +Lilly +Louisa +Luella +Mable +Margot +Marla +Mercy +Mickey +Nan +Nona +Rena +Rosita +Selma +Ana +Belen +Berta +Betsy +Bettie +Beverlee +Carmella +Charline +Coleen +Cornelia +Darla +Delfina +Dian +Dina +Dottie +Earline +Edwina +Faith +Georgianna +Goldie +Graciela +Imogene +Ina +Jeanine +Judi +Katharine +Katie +Leora +Lorena +Madeleine +Marina +Maryanne +Maryellen +Michele +Mollie +Monica +Nanette +Norine +Paulette +Rosalyn +Shari +Sybil +Zoe +Adela +Annabelle +Carolina +Elda +Elisabeth +Elsa +Elvera +Emilie +Enid +Evangelina +Gale +Gaye +Gracie +Herlinda +Janie +Jayne +Jerrie +John +Josefina +Kitty +Leonor +Leonora +Leta +Lita +Lolita +Louella +Lucretia +Mamie +Olive +Ora +Rafaela +Rosario +Silvia +Velia +Velva +Vida +Addie +Adelina +Aletha +Allene +Alva +Angelita +Arden +Ardis +Aurelia +Camilla +Carolynn +Charlaine +Charles +Crystal +Daisy +Dorine +Effie +Elisa +Elnora +Erlene +Eulalia +Freida +Gayla +Georgene +Georgiana +Georgie +Georgina +Hannah +Harriette +Ila +Jeane +Jeri +Jesus +Jewell +Jocelyn +Karin +Karla +Karol +Katheryn +Kaye +Leanne +Lilia +Lillie +Lucinda +Luz +Manuela +Marge +Margy +Marjory +Marleen +Marta +Maryjane +Matilda +Merlyn +Millie +Minnie +Nell +Opal +Raylene +Roseann +Sherrie +Sheryl +Shirlene +Soledad +Theodora +Tommie +Trinidad +Twila +Vonda +Willie +Yoshiko +Aida +Althea +Amalia +Belia +Belva +Bernadette +Beryl +Bettye +Bobbe +Bobby +Bonny +Cherie +Darlyne +Daryl +Deann +Delma +Diann +Dortha +Dorthy +Earleen +Estelle +Eve +Floy +Francis +Francisca +Frank +Garnet +Georgette +Gina +Haruko +Hattie +Helena +Ione +Jeanie +Jessica +Joe +Keiko +Kim +Lauralee +Lauretta +Lavelle +Leanna +Lela +Loraine +Louann +Lyn +Lynnette +Maralyn +Marlyn +Marna +Marolyn +Maybelle +Micaela +Michiko +Mimi +Mina +Natalia +Nita +Pattie +Peggie +Phoebe +Rachael +Reba +Reiko +Retha +Robert +Romelia +Ronald +Ronda +Rosetta +Ruthie +Sachiko +Sadie +Shiela +Sophie +Starlene +Suzy +Theda +Toby +Treva +Trudy +Venita +Vicky +Virgie +Willa +Winona +Zelda +Zona +Mary +Barbara +Patricia +Carol +Nancy +Betty +Shirley +Joan +Donna +Marilyn +Margaret +Sandra +Sharon +Beverly +Linda +Virginia +Diane +Judith +Joyce +Janet +Dorothy +Helen +Carolyn +Gloria +Frances +Janice +Judy +Alice +Carole +Norma +Dolores +Darlene +Elizabeth +Sally +Jean +Susan +Ann +Joanne +Marlene +Phyllis +Roberta +Ruth +Irene +Rosalie +Marie +Kathleen +Lois +Martha +Rose +Jacqueline +Arlene +Karen +Doris +Loretta +Eleanor +Evelyn +Elaine +Deanna +Pat +Geraldine +Maria +Marjorie +Sylvia +Esther +Gail +Anita +Bonnie +Joann +Peggy +Yvonne +Diana +Carmen +Wanda +Connie +Jane +Josephine +Charlene +Louise +Catherine +Jeanette +Lorraine +Lupe +Jo +Marcia +Patsy +June +Suzanne +Rachel +Anne +Charlotte +Kay +Laura +Anna +Katherine +Pauline +Margie +Rita +Sheila +Sue +Juanita +Marian +Florence +Kathryn +Jeanne +Rosemary +Ellen +Julia +Ramona +Georgia +Lillian +Grace +Beatrice +Claudia +Jackie +Myrna +Rosie +Paula +Ruby +Delores +Glenda +Lynn +Gayle +Joy +Valerie +Dianne +Dixie +Annette +Audrey +Cheryl +Eva +Edith +Lucy +Maureen +Mildred +Sonja +Constance +Lucille +Lydia +Lynne +Jessie +Maxine +Clara +Edna +Marsha +Sarah +Vera +Julie +Wilma +Eileen +Marion +Bernice +Christine +Stella +Jennie +Nadine +Theresa +Billie +Emma +Jeannette +Rosemarie +Bette +Caroline +Verna +Emily +Isabel +Rebecca +Vivian +Hazel +Pamela +Colleen +Priscilla +Yolanda +Teresa +Victoria +Cecilia +Celia +Cynthia +Dora +Lynda +Olga +Sara +Claire +Leona +Thelma +Gladys +Lola +Angie +Bertha +Elsie +Ethel +Gwendolyn +Harriet +Amelia +Naomi +Andrea +Annie +Arleen +Laverne +Beverley +Josie +Marianne +Sherry +Angelina +Margarita +Nina +Penny +Toni +Claudette +Mona +Nellie +Ida +Vicki +Adrienne +Brenda +Doreen +Muriel +Jacquelyn +Patty +Antoinette +Delia +Ernestine +Janis +Madeline +Rosa +Arline +Alberta +Antonia +Consuelo +Lorna +Marguerite +Melba +Velma +Dona +Gertrude +Kathy +Maryann +Sharron +Angela +Carlene +Genevieve +Jan +Nora +Alma +Cecelia +Dian +Sondra +Estella +Gretchen +Guadalupe +Laurel +Marilynn +Molly +Agnes +Armida +Gwen +Sonia +Viola +Carla +Darleen +Irma +Joanna +Pearl +Rochelle +Violet +Deborah +Elvira +Jeannie +Jill +Lavonne +Miriam +Terry +Aurora +Dawn +Deanne +Gay +Leilani +Lila +Lora +Margo +Marylou +Merle +Olivia +Renee +Stephanie +Veronica +Bobbie +Dorene +Fay +Lorene +Wendy +Winifred +Cora +Esperanza +Faye +Geneva +Henrietta +Lena +Leslie +Penelope +Sheryl +Beth +Erma +Flora +Ilene +Inez +Jeannine +Judie +Natalie +Noreen +Sandy +Saundra +Bessie +Betsy +Dianna +Leah +Lee +Myra +Robin +Cecile +Eunice +Francine +Hilda +Hope +Jolene +Marietta +May +Monica +Susie +Adele +Christina +Dale +Dorothea +Eloise +Helene +Jeri +Lily +Lou +Regina +Sherrie +Alicia +Della +Denise +Elinor +Gerry +Harriett +Jerry +Louella +Nelda +Patti +Petra +Sharlene +Socorro +Sonya +Adela +Amy +Ella +Erlinda +Glenna +Gracie +Heather +Jenny +Mae +Marina +Mercedes +Rae +Rosario +Susanne +Vickie +Bernadine +Corinne +Danielle +Dee +Harlene +Janie +Laurie +Lenora +Margery +Margot +Marilee +Nona +Rosalee +Ada +Adeline +Blanche +Camille +Clarice +Daisy +Elena +Evangeline +Lenore +Marla +Nola +Rhoda +Rosalind +Alyce +Ana +Catalina +Charleen +Cleo +Dolly +Elisabeth +Elva +Eugenia +Fern +Freda +Ginger +Iris +Katie +Lela +Lillie +Madeleine +Magdalena +Manuela +Marcella +Melinda +Meredith +Minnie +Raquel +Rosita +Shirlene +Tillie +Alta +Belva +Carrie +Carrol +Caryl +Claudine +Georgiana +Janette +Lorena +Mabel +Melva +Merilyn +Mickey +Myrtle +Ofelia +Sallie +Aileen +Annabelle +Bonita +Carleen +Darla +Emilia +Emilie +Imogene +Janine +Johanna +Katharine +Lauretta +Leila +Louisa +Marjory +Maurine +Velia +Vonda +Althea +Bernadette +Bettie +Carmelita +Carolee +Carolyne +Carroll +Concha +Darline +Estelle +Faith +Gene +Jacklyn +Jayne +Juana +Kaye +Leola +Loralee +Lucia +Madelyn +Marta +Mercy +Merry +Nan +Nanette +Roxanne +Sherrill +Shirlee +Sydney +Willa +Beatriz +Cathleen +Deann +Delfina +Earlene +Elvera +Evonne +Florene +Gale +Harriette +Hattie +Hortencia +Hortensia +Ina +Jeraldine +Jewel +Jewell +Leone +Lilly +Lolita +Luella +Luz +Maggie +Neva +Sybil +Tanya +Yoshiko +Amalia +Bettye +Bobby +Carolina +Cathy +Cherie +Corrine +Dorthy +Edwina +Edythe +Enid +Estela +Felicia +Florine +Francisca +Frieda +Georgina +James +Jeanine +Joane +Joellen +John +Josefina +Jovita +Judi +Julianne +Lavada +Leota +Leta +Lidia +Luana +Lynette +Michael +Millie +Mollie +Ollie +Opal +Polly +Reba +Rosanne +Rosetta +Shari +Sherron +Sophie +Tina +Toshiko +Vada +Vicky +Willie +Zelda +Zona +Aida +Allene +Alvina +Becky +Berta +Beulah +Carolynn +Celeste +Charmaine +Cherry +Colette +Conchita +Cornelia +Deana +Deloris +Dena +Eleanore +Elsa +Erlene +Etta +Francis +Gayla +Georgette +Helena +Herlinda +Isabelle +Iva +Jeanie +Jerrie +Jessica +Juliet +Juliette +Karla +Katheryn +Kathrine +Kazuko +Leora +Lina +Lorelei +Lucinda +Mamie +Marcelina +Mari +Marleen +Marty +Marvel +Maryanne +Maryellen +Matilda +Melissa +Minerva +Mitzi +Nancie +Noel +Norene +Olive +Raylene +Reva +Richard +Ronda +Rosalia +Rosalyn +Setsuko +Shannon +Sigrid +Terri +Therese +Trudy +Velda +Wilda +Winona +Aiko +Amanda +Amparo +Angelita +Ardith +Arlyne +Aurelia +Bea +Benita +Carolann +Charla +Chloe +Clare +Concepcion +Cruz +Dana +Darlyne +Dina +Dorine +Dottie +Eilene +Elisa +Eloisa +Ena +Enedina +Frankie +Georgene +Gilda +Graciela +Grayce +Hallie +Heidi +Janeen +Janyce +Jennifer +Joella +Justine +Karin +Kim +Kimiko +Lelia +Letha +Lilla +Lona +Loraine +Loreen +Lori +Loris +Margarite +Marianna +Marva +Maryjo +Marylin +Mattie +Mavis +Michele +Mimi +Nada +Nadene +Natividad +Nettie +Nita +Norine +Ophelia +Ora +Patrica +Rachael +Ronnie +Rosaline +Roseann +Rosella +Sadie +Serena +Shelby +Sofia +Suzette +Teddy +Tomiko +Tonia +Trinidad +Twila +Verda +Vesta +Zoe +Mary +Barbara +Patricia +Carol +Linda +Nancy +Sharon +Joan +Judith +Betty +Shirley +Sandra +Donna +Marilyn +Margaret +Judy +Diane +Virginia +Carolyn +Beverly +Dorothy +Joyce +Susan +Janice +Helen +Janet +Frances +Gloria +Carole +Jean +Alice +Sally +Elizabeth +Darlene +Joanne +Irene +Kathleen +Dolores +Ruth +Ann +Norma +Karen +Roberta +Pat +Evelyn +Marie +Bonnie +Phyllis +Lois +Gail +Martha +Marlene +Arlene +Maria +Loretta +Rose +Elaine +Eleanor +Marjorie +Diana +Peggy +Jacqueline +Joann +Geraldine +Sylvia +Jo +Anita +Deanna +Yvonne +Esther +Louise +Suzanne +Jane +Rosalie +Brenda +Charlotte +Connie +Doris +Anne +Carmen +Juanita +Josephine +Anna +Rita +Wanda +Katherine +Kay +Charlene +Patsy +Marcia +Sue +Jeanette +June +Lorraine +Rachel +Sheila +Ellen +Rosemary +Margie +Lynn +Lupe +Marian +Catherine +Florence +Laura +Grace +Myrna +Glenda +Georgia +Claudia +Pauline +Rosie +Jeanne +Kathryn +Dianne +Julie +Lynne +Beatrice +Lucille +Paula +Ramona +Annette +Julia +Jackie +Christine +Dixie +Lillian +Stella +Edith +Eva +Edna +Caroline +Priscilla +Vivian +Lydia +Lynda +Billie +Lucy +Marion +Ruby +Valerie +Jeannette +Gayle +Isabel +Maureen +Sarah +Theresa +Cecilia +Delores +Mildred +Audrey +Joy +Thelma +Jennie +Teresa +Cynthia +Emily +Nadine +Wilma +Clara +Colleen +Victoria +Maxine +Rebecca +Yolanda +Constance +Jessie +Marsha +Leona +Penny +Bertha +Ethel +Harriet +Kathy +Andrea +Penelope +Vera +Angie +Bernice +Cheryl +Rosemarie +Bette +Eileen +Sherry +Sonja +Terry +Angelina +Laurel +Antoinette +Pamela +Sharron +Hazel +Beverley +Dora +Gladys +Sandy +Sondra +Emma +Marianne +Nina +Sara +Toni +Ida +Laverne +Nellie +Verna +Vicki +Arleen +Claire +Marguerite +Olivia +Elsie +Stephanie +Angela +Jan +Lorna +Madeline +Rosa +Naomi +Carla +Cecelia +Jacquelyn +Janis +Josie +Melinda +Alma +Gretchen +Delia +Annie +Genevieve +Gwen +Gwendolyn +Doreen +Jill +Margo +Patty +Olga +Wendy +Alicia +Corinne +Dawn +Irma +Marilynn +Robin +Velma +Bobbie +Celia +Gay +Hope +Jeannie +Judie +Maryann +Viola +Adrienne +Margarita +Faye +Guadalupe +Lila +Lola +Violet +Adeline +Alberta +Amelia +Aurora +Beth +Carlene +Christina +Elvira +Flora +Renee +Rosalind +Claudette +Dona +Ernestine +Esperanza +Helene +Nora +Ana +Denise +Lee +Molly +Rochelle +Adele +Agnes +Cora +Earlene +Gerry +Leslie +Saundra +Susie +Antonia +Cecile +Consuelo +Elinor +Eloise +Inez +Leah +Mercedes +Armida +Geneva +Gertrude +Henrietta +Laurie +Pearl +Sherrill +Winifred +Dale +Deanne +Elena +Lenore +May +Miriam +Patti +Betsy +Darla +Dorene +Ilene +Jeannine +Mabel +Melba +Meredith +Mona +Muriel +Veronica +Arline +Clarice +Deborah +Dee +Fay +Gale +Jeanie +Jerry +Leilani +Lillie +Lou +Lucia +Marylou +Michelle +Nona +Raquel +Sonia +Alyce +Ella +Ginger +Ina +Lavonne +Lorene +Rae +Sallie +Socorro +Bessie +Dian +Dianna +Dolly +Edwina +Erma +Eunice +Iris +Myra +Neva +Ofelia +Petra +Cleo +Estella +Freda +Hilda +Hortencia +Jacque +Joe +Lenora +Lily +Merle +Monica +Sharlene +Susanne +Amy +Becky +Camille +Cathy +Della +Francine +Frankie +Joanna +Judi +Marcella +Mercy +Minnie +Myrtle +Shirlee +Ada +Bernadine +Carmel +Cherie +Cruz +Darleen +Eugenia +Janie +Lena +Louella +Luana +Rena +Adela +Carolynn +Carroll +Catalina +Coleen +Dana +Elisa +Elsa +Elva +Evangelina +Francis +Glenna +Janalee +Janette +Jenny +Jeri +Jewel +Jolene +Louisa +Luella +Madeleine +Mae +Marilee +Marla +Noreen +Rosita +Sheryl +Silvia +Alta +Bettie +Carolee +Carrie +Daisy +Diann +Georgiana +Johanna +Julianne +Karin +Katharine +Lora +Lorelei +Margery +Marina +Melva +Regina +Shirlene +Willa +Annabelle +Bernadette +Carrol +Chloe +Claudine +Crystal +Deloris +Dorothea +Evangeline +Frieda +Georgene +Gerrie +Harriett +Heather +Helena +Jacklyn +Jacquie +Jeanine +Jessica +John +Jovita +Karla +Laurene +Leila +Leonor +Lorena +Lynette +Margot +Maryanne +Maryellen +Michael +Millie +Natalie +Nola +Opal +Polly +Rosalee +Rosalyn +Shannon +Sonya +Vickie +Aileen +Allene +Beverlee +Blanche +Carleen +Carolina +Charleen +Clare +Corrine +Elma +Emiko +Emilia +Emilie +Erlinda +Francisca +Georgann +Georgina +Kathie +Lela +Leora +Leta +Lilly +Loraine +Lyn +Madelyn +Magdalena +Marcelina +Marietta +Marleen +Marylyn +Merry +Michele +Mollie +Reiko +Rosario +Ruthie +Selma +Susana +Sybil +Tanya +Teri +Tina +Trinidad +Velda +Adelina +Alexandra +Angelita +Beatriz +Belva +Berta +Bonita +Cathleen +Charlyn +Concha +Cordelia +Danielle +Delfina +Earline +Eleanore +Enid +Ernestina +Faith +Freida +Gerri +Gracie +Hortensia +Imogene +Karlene +Katy +Keiko +Kitty +Lauralee +Lauretta +Lea +Leota +Loralee +Marge +Mariann +Michiko +Mickey +Nancie +Nelda +Nita +Norine +Reba +Rhoda +Rosetta +Sachiko +Sharleen +Sheri +Terrie +Tillie +Toby +Tommie +Tonia +Velia +Willie +Yoshiko +Adelaide +Alene +Amalia +Amanda +Andree +Angeline +Beulah +Bobbi +Camilla +Colette +Concepcion +Dawna +Delma +Eloisa +Elvera +Erlene +Erna +Estela +Evonne +Fern +Florine +Gaye +Gaylene +Gearldine +Georgette +Georgianna +Hannah +Harlene +Heidi +Herminia +Holly +Jayne +Jennifer +Jeraldine +Jerri +Jerrie +Joellen +Juana +Karol +Kathlyn +Katie +Kaye +Kim +Lana +Lesley +Letha +Lona +Loreen +Lorretta +Loy +Lucile +Lula +Maralyn +Marlyn +Marolyn +Mavis +Merna +Micaela +Nan +Nanette +Nettie +Ora +Robert +Rowena +Sharen +Susanna +Sydney +Vivien +Winnie +Zelda +Adella +Aline +Alison +Amparo +Andra +Ardelle +Ardis +Ardith +Avis +Belen +Blanca +Carmelita +Celeste +Cheri +Chris +Conchita +Coral +Cornelia +Daphne +Deann +Dorine +Dorthy +Dottie +Edythe +Elisabeth +Elissa +Elnora +Estelle +Eula +Fran +Francene +George +Geri +Gregoria +Herlinda +Hiroko +Hortense +Ima +Isabelle +Ivy +Janyce +Jeanene +Jesus +Joycelyn +Juliann +Karole +Kristin +Kristine +Laureen +Lelia +Leola +Leticia +Lisa +Luz +Lyla +Mable +Madge +Maggie +Manuela +Marilynne +Marline +Marlys +Marta +Maryalice +Marylin +Matilda +Merilyn +Merrilee +Nanci +Nedra +Neoma +Neomi +Noel +Olive +Paulette +Phoebe +Racheal +Raelene +Refugio +Retha +Rheba +Ronna +Roxanne +Sherrie +Tamara +Theda +Trudy +Vicky +Virgie +Vonda +Wilda +Ysabel +Zoe +Zola +Mary +Patricia +Barbara +Linda +Carol +Judith +Sharon +Nancy +Sandra +Judy +Susan +Donna +Margaret +Betty +Joan +Diane +Shirley +Carolyn +Marilyn +Joyce +Virginia +Gloria +Beverly +Janice +Janet +Dorothy +Bonnie +Frances +Kathleen +Helen +Alice +Karen +Carole +Jean +Elizabeth +Ann +Dolores +Irene +Ruth +Darlene +Martha +Joanne +Phyllis +Gail +Pat +Sally +Norma +Diana +Brenda +Marie +Roberta +Elaine +Evelyn +Rose +Marjorie +Lois +Loretta +Marlene +Arlene +Anita +Peggy +Geraldine +Charlotte +Jacqueline +Sylvia +Joann +Jo +Sue +Connie +Eleanor +Louise +Doris +Katherine +Maria +Carmen +Charlene +Catherine +Suzanne +Esther +Yvonne +Jane +Jeanette +Deanna +Josephine +Rosemary +Jeanne +Rachel +Lynda +Kay +Marcia +Wanda +Ellen +Juanita +Patsy +Rosalie +Anne +Dianne +Lorraine +Maureen +Julie +June +Julia +Sheila +Rita +Kathryn +Lupe +Lynn +Claudia +Lynne +Gayle +Anna +Marian +Lillian +Cynthia +Paula +Priscilla +Valerie +Georgia +Pauline +Grace +Lucille +Laura +Rebecca +Vivian +Christine +Jackie +Kathy +Margie +Pamela +Rosie +Beatrice +Glenda +Edna +Theresa +Edith +Myrna +Penny +Wilma +Dixie +Florence +Ramona +Cecilia +Constance +Sarah +Yolanda +Victoria +Clara +Lydia +Marsha +Jennie +Caroline +Annette +Delores +Eva +Jessie +Teresa +Jeannette +Ruby +Andrea +Lucy +Melinda +Joy +Mildred +Stella +Maxine +Nadine +Sherry +Angie +Bernice +Emily +Bette +Lana +Rosemarie +Vicki +Billie +Colleen +Rosa +Terry +Vera +Dora +Madeline +Sara +Marion +Annie +Ida +Stephanie +Bertha +Eileen +Audrey +Gladys +Carla +Harriet +Thelma +Cecelia +Marianne +Sharron +Celia +Robin +Wendy +Elsie +Penelope +Sondra +Toni +Cheryl +Hazel +Olivia +Jill +Lorna +Margarita +Naomi +Christina +Gwen +Leona +Lola +Sandy +Alma +Amelia +Emma +Nina +Nora +Genevieve +Isabel +Verna +Ethel +Jan +Patty +Denise +Gwendolyn +Beth +Dona +Laurel +Nellie +Beverley +Jacquelyn +Judie +Marguerite +Natalie +Antoinette +Henrietta +Muriel +Myra +Sonja +Tamara +Angelina +Claire +Dale +Delia +Earlene +Alberta +Elvira +Josie +Leslie +Marcella +Olga +Susanne +Bobbie +Dianna +Faye +Gretchen +Jeannie +Maryann +Molly +Saundra +Sheryl +Arleen +Dawn +Judi +Adele +Carlene +Flora +Irma +Janis +Lee +Rae +Viola +Cathy +Della +Doreen +Esperanza +Francine +Gay +Gerry +Jeanie +Marilynn +Miriam +Agnes +Alicia +Amy +Antonia +Ernestine +Joanna +Myrtle +Pearl +Sherrill +Velma +Violet +Adeline +Consuelo +Guadalupe +Lenore +Marylou +Socorro +Armida +Claudette +Cora +Deborah +Jerry +Laverne +Lila +Marla +Adrienne +Arline +Dee +Margo +Patti +Veronica +Aurora +Cecile +Dian +Helene +Lenora +Noreen +Vickie +Angela +Becky +Eloise +Erlinda +Geneva +Ginger +Jenny +Laurie +Lorene +Melanie +Mona +Renee +Rochelle +Betsy +Darla +Erma +Estella +Gale +Hope +Iris +Karin +Lily +Michele +Regina +Rosalind +Ana +Dana +Diann +Harriett +Heather +Janie +Jeanine +Lynette +Nola +Winifred +Camille +Clarice +Deanne +Inez +Kaye +Lonna +Monica +Ardith +Bettie +Bonita +Dorene +Fay +Gertrude +Leila +Madeleine +Magdalena +Marina +Marta +Melba +Melva +Opal +Paulette +Raquel +Rosario +Susie +Vicky +Carolee +Cathleen +Dorothea +Elisa +Ella +Estelle +Leah +Leilani +Lona +Lora +Mae +Mercedes +Nelda +Ofelia +Sharlene +Sonia +Alta +Bessie +Charleen +Deloris +Fern +Hilda +Jeannine +Jennifer +Jolene +Kathie +Katie +Marietta +May +Rena +Sallie +Ada +Adela +Aileen +Bernadine +Carmelita +Carolynn +Claudine +Elinor +Elva +Evangeline +Frankie +Lavonne +Leanna +Letha +Lillie +Lou +Lucia +Lyn +Margery +Michael +Reba +Rosetta +Sonya +Sophie +Tina +Beulah +Carrie +Carroll +Catalina +Crystal +Daphne +Darleen +Dolly +Eleanore +Elena +Eunice +Faith +Georgene +Helena +Ilene +Jacklyn +Janette +Juana +Laraine +Lena +Lilly +Louisa +Madelyn +Marleen +Maurine +Merle +Michelle +Nedra +Pam +Petra +Rosalyn +Willa +Carrol +Celeste +Cherie +Corinne +Cruz +Enid +Ernestina +Eugenia +Evangelina +Jacque +Karla +Leanne +Lela +Lorena +Marylyn +Mattie +Nan +Nona +Olive +Robert +Theodora +Alene +Angelita +April +Daisy +Edwina +Georgina +Glenna +Gracie +Isabelle +Jovita +Kristine +Ladonna +Lori +Lucretia +Lynnette +Mabel +Mardell +Marilee +Maryanne +Matilda +Mercy +Rhoda +Shirlee +Shirlene +Velda +Willie +Zoe +Adelina +Aida +Alyce +Amparo +Annabelle +Carleen +Carolina +Clare +Corrine +Danielle +Dorthy +Elise +Elsa +Etta +Georgette +Geri +Gina +Herlinda +Imogene +Jacquelin +Jayne +Jewell +Johanna +Juliet +Katharine +Kristin +Lea +Lidia +Linnea +Loraine +Louella +Marge +Margot +Marva +Meredith +Mickey +Millie +Polly +Rachael +Rosalee +Rowena +Sharleen +Sherrie +Silvia +Susanna +Terri +Toby +Verla +Bernadette +Camilla +Carmel +Caryl +Darline +Debra +Dena +Emiko +Emilie +Florine +Floy +Francisca +Gaye +Holly +Ina +Jessica +Joni +Josefina +Kitty +Lani +Laureen +Leonor +Leota +Leta +Lisa +Lorelei +Luana +Luella +Luz +Mari +Marlyn +Merry +Michiko +Minnie +Nanette +Richard +Rosalinda +Selma +Suzann +Sybil +Sydney +Tanya +Tillie +Velia +Yvette +Adelaide +Adella +Allene +Alva +Belinda +Belva +Beryl +Bettye +Blanche +Bonny +Charline +Chris +Cleo +Colette +Concha +Dina +Earline +Emilia +Erlene +Erna +Freda +Gabrielle +Gaylene +George +Georgie +Gerri +Goldie +Greta +Herminia +Ilona +Janine +Jeri +Johnnie +Julianne +Kimiko +Kyoko +Laurene +Lawanda +Leora +Lonnie +Loralee +Luanne +Marianna +Marilou +Marolyn +Marylee +Marylin +Merlene +Mollie +Neoma +Neva +Norene +Ophelia +Prudence +Reta +Roma +Rosella +Ruthie +Shannon +Shari +Sunny +Suzy +Therese +Trudie +Veda +Zella +Addie +Amanda +Antonette +Arletta +Belen +Carlotta +Catharine +Charlette +Christie +Coral +Cordelia +Cornelia +Cristina +Deana +Deeann +Deirdre +Delfina +Dinah +Donald +Dottie +Drucilla +Effie +Elisabeth +Elma +Eula +Eulalia +Francis +Freida +Frieda +Gary +Graciela +Isabell +Ivy +Jerri +Joellen +John +Juliann +Karel +Karol +Katy +Launa +Lauralee +Lauretta +Leola +Letitia +Letty +Liana +Liz +Luann +Lucinda +Luisa +Lyla +Mable +Madge +Manuela +Mariann +Marilynne +Marjory +Merilyn +Merrilee +Micaela +Mickie +Nanci +Nancie +Nannette +Nelly +Nikki +Norine +Reiko +Romona +Ronda +Rosanne +Roselyn +Roslyn +Roxie +Sadie +Sammie +Sharen +Shelia +Shelley +Sheri +Sheridan +Sherilyn +Sherri +Sherron +Shiela +Sigrid +Sofia +Soledad +Susann +Suzette +Teddy +Tommie +Tonya +Tracy +Trinidad +Trudy +Vivien +Winnie +Mary +Linda +Patricia +Barbara +Carol +Sharon +Judith +Nancy +Sandra +Judy +Susan +Carolyn +Donna +Margaret +Diane +Joan +Betty +Karen +Joyce +Marilyn +Shirley +Virginia +Janice +Janet +Bonnie +Gloria +Dorothy +Kathleen +Beverly +Helen +Frances +Jean +Alice +Elizabeth +Carole +Irene +Darlene +Dolores +Martha +Ann +Joanne +Ruth +Diana +Sally +Gail +Marie +Pat +Phyllis +Norma +Geraldine +Roberta +Anita +Peggy +Suzanne +Elaine +Evelyn +Maria +Joann +Charlotte +Rose +Katherine +Lois +Jo +Charlene +Sue +Connie +Jacqueline +Arlene +Sylvia +Pamela +Jane +Doris +Marjorie +Marlene +Rita +Catherine +Brenda +Eleanor +Kay +Lynn +Louise +Loretta +Julie +Anna +Ellen +Carmen +Esther +Kathryn +Anne +Patsy +Wanda +Marcia +Josephine +Juanita +Yvonne +Maureen +Sheila +Rachel +Jeanette +Deanna +Christine +June +Jeanne +Lynda +Rosemary +Georgia +Rebecca +Lillian +Lynne +Julia +Laura +Claudia +Lorraine +Pauline +Glenda +Valerie +Dianne +Kathy +Paula +Penny +Rosalie +Margie +Cynthia +Jackie +Priscilla +Wilma +Gayle +Marian +Sherry +Vivian +Delores +Grace +Marsha +Victoria +Annette +Lupe +Cecilia +Beatrice +Eva +Terry +Myrna +Ramona +Rosie +Theresa +Jennie +Yolanda +Caroline +Florence +Lucille +Lydia +Mildred +Ruby +Edith +Marion +Sarah +Constance +Clara +Sharron +Joy +Andrea +Edna +Toni +Emily +Jeannette +Melinda +Olivia +Sandy +Stephanie +Madeline +Maxine +Vicki +Jessie +Rosemarie +Lorna +Marianne +Nadine +Teresa +Bernice +Colleen +Wendy +Rosa +Penelope +Thelma +Isabel +Lucy +Jeannie +Nellie +Sara +Bertha +Eileen +Hazel +Bette +Billie +Cecelia +Cheryl +Dixie +Leslie +Stella +Angie +Verna +Cathy +Vera +Veronica +Leona +Sondra +Audrey +Jill +Robin +Arleen +Carla +Dona +Lana +Amelia +Celia +Christina +Doreen +Emma +Claire +Harriet +Margarita +Nina +Jacquelyn +Jerry +Marguerite +Alma +Antoinette +Delia +Myra +Elsie +Ethel +Ida +Irma +Maryann +Patty +Angelina +Annie +Armida +Dawn +Genevieve +Gwendolyn +Janis +Marilynn +Michele +Naomi +Nora +Bobbie +Dianna +Gladys +Jan +Josie +Renee +Sheryl +Claudette +Denise +Estella +Judie +Margo +Antonia +Dora +Lola +Marcella +Muriel +Olga +Sherrill +Earlene +Laurie +Pearl +Elena +Beth +Betsy +Carlene +Henrietta +Judi +Laurel +Patti +Alberta +Alicia +Angela +Beverley +Guadalupe +Lee +Lynette +Tamara +Velma +Violet +Adrienne +Dale +Ella +Ernestine +Gay +Lila +Marylou +Melanie +Miriam +Rae +Saundra +Sydney +Becky +Della +Flora +Gale +Laverne +Leah +Deborah +Erma +Jennifer +Rochelle +Ana +Consuelo +Faye +Helene +Jeri +Marla +Adele +Dana +Darleen +Eloise +Francine +Gertrude +Joanna +Molly +Susanne +Vickie +Amy +Carleen +Gretchen +Lavonne +Paulette +Sallie +Sonja +Susie +Viola +Arline +Charleen +Cora +Sonia +Esperanza +Freda +Geneva +Minnie +Natalie +Adela +Carrol +Dian +Eunice +Fern +Gwen +Hilda +Jeanie +Katharine +Michelle +Monica +Regina +Adeline +Agnes +Darla +Elvira +Faith +Gerry +Heather +Inez +Iris +Jeannine +Karin +Kathie +Leilani +Lillie +Melba +Mona +Aurora +Carrie +Claudine +Dee +Glenna +Jenny +Jolene +Judyth +Lora +Meredith +Ofelia +Ardith +Deanne +Erlinda +Ginger +Hope +Ina +Janette +Janie +Jeanine +Louella +Madelyn +Melva +Nelda +Rosalind +Sheri +Tillie +Trudy +Winifred +Bettie +Blanche +Bonita +Carolynn +Clarice +Dorothea +Frankie +Georgene +Jacklyn +Lenora +Lorena +Mae +May +Mercy +Merle +Nanette +Nita +Raquel +Sandi +Sharlene +Alyce +Beryl +Bessie +Carroll +Christie +Eugenia +Geri +Gina +Ila +Ilene +Jovita +Lenore +Lorene +Mabel +Marva +Mercedes +Nona +Polly +Shari +Socorro +April +Cathleen +Cherie +Corrine +Deloris +Harriett +Herlinda +Ingrid +Karol +Lani +Lela +Leta +Lona +Margery +Maryellen +Nannette +Neva +Nola +Terri +Yvette +Ada +Bernadette +Dorene +Eleanore +Elva +Eve +Georgina +Karla +Katie +Kitty +Kristin +Ladonna +Lauretta +Lily +Marina +Nanci +Nicole +Rena +Rosalee +Sherrie +Tanya +Therese +Alta +Bobbi +Caren +Carolina +Cathryn +Corinne +Diann +Dolly +Edythe +Elinor +Elsa +Etta +Evangeline +Holly +Iva +Jayne +Jerilyn +Kaye +Kristine +Lori +Lucinda +Marietta +Marilee +Millie +Mollie +Nan +Rhoda +Ronda +Rosanne +Rosario +Sharyn +Sherron +Shirlee +Sybil +Zoe +Amalia +Bonny +Carmelita +Carolee +Caryl +Celeste +Colette +Danielle +Darline +Debbie +Dena +Earline +Evangelina +Graciela +Heidi +Jacque +Jerrie +Keiko +Leanne +Lena +Loraine +Lou +Luanne +Lucia +Lyn +Lynnette +Mable +Manuela +Margot +Melissa +Myrtle +Noreen +Opal +Pam +Phoebe +Reta +Sachiko +Sidney +Sonya +Tina +Aileen +Angelita +Catharine +Cecile +Charmaine +Cindy +Coralee +Cruz +Fay +Francis +Georgiana +Gracie +Greta +Helena +Janine +Jeraldine +Jewel +Jimmie +John +Leanna +Magdalena +Marta +Martina +Marylin +Maurine +Michael +Noel +Ophelia +Raylene +Reiko +Rosetta +Rowena +Roxanna +Roxanne +Sherri +Valarie +Vicky +Winnie +Adelina +Alfreda +Andra +Caroll +Charline +Coralie +Cornelia +Crystal +Daphne +Dinah +Edwina +Enid +Estela +Frieda +Imogene +Isabelle +Jamie +Jerri +Jewell +Joellen +Johanna +Juliana +Karolyn +Kim +Leota +Lidia +Lisa +Lolita +Lorelei +Luana +Mardell +Mariana +Marilou +Marty +Micaela +Mickey +Millicent +Portia +Robert +Sadie +Sandie +Sharilyn +Sherryl +Suellen +Susana +Tonya +Twila +Valorie +Vonnie +Adelaide +Adrianne +Allene +Alvina +Amanda +Angel +Antonette +Bunny +Camilla +Camille +Carlotta +Catalina +Charla +Chris +Christy +Clare +Conception +Daisy +Elda +Elinore +Elise +Eloisa +Elouise +Erin +Eula +Freida +Germaine +Ione +Isabell +Janalee +Josette +Karon +Kelly +Lanette +Laraine +Lea +Lonna +Lonnie +Lu +Madeleine +Marge +Mari +Melody +Nikki +Norene +Pennie +Rene +Rhea +Richard +Rosalyn +Roxana +Selma +Sherill +Susanna +Suzan +Thea +Theodora +Toshiko +Velia +Wilda +Winona +Alva +Annabelle +Arla +Arleta +Asenath +Aurelia +Barbra +Barrie +Belinda +Belva +Benita +Berniece +Bettye +Beulah +Camelia +Cara +Carmela +Carolyne +Cathie +Cleo +Concha +Danette +Danna +Daryl +Dawna +Deana +Deena +Delfina +Delma +Delphina +Dina +Dollie +Elisa +Emilia +Fran +Francisca +Gary +Gayl +Gene +Georgianna +Gerri +Harlene +Helaine +Hilary +Hortencia +Jacquie +James +Jannette +Jeane +Jerilynn +Jessica +Joane +Josefina +Juana +Juliann +Julianne +Justine +Karlene +Karyn +Katheryn +Kristina +Laurine +Lavina +Leann +Leila +Leni +Leonor +Leora +Letitia +Lilly +Linnea +Louann +Lucretia +Luella +Lula +Luz +Marcy +Marianna +Marjory +Maryalice +Matilda +Mattie +Melvina +Merlyn +Michiko +Mina +Mitzi +Nettie +Noelle +Norine +Olive +Prudence +Rachael +Randi +Rhonda +Romelia +Ronnie +Rosalinda +Rosanna +Roseanne +Sabra +Saralee +Sharen +Shelby +Silvia +Sophia +Sophie +Starr +Sumiko +Sunny +Teri +Toby +Tomasa +Una +Willa +Willie +Zona +Linda +Mary +Barbara +Patricia +Sharon +Carol +Sandra +Nancy +Judith +Judy +Karen +Susan +Donna +Carolyn +Diane +Joan +Margaret +Kathleen +Shirley +Betty +Janet +Marilyn +Virginia +Carole +Joyce +Gloria +Janice +Bonnie +Beverly +Helen +Dorothy +Frances +Diana +Elizabeth +Alice +Jean +Joanne +Dolores +Ruth +Ann +Darlene +Martha +Phyllis +Sally +Pamela +Marie +Roberta +Irene +Gail +Connie +Maria +Charlotte +Pat +Norma +Jo +Elaine +Peggy +Rose +Sue +Rita +Sylvia +Jacqueline +Geraldine +Lynda +Katherine +Kathryn +Anita +Jane +Joann +Loretta +Sheila +Lois +Suzanne +Louise +Dianne +Charlene +Christine +Julie +Kathy +Lynn +Catherine +Marlene +Evelyn +Kay +Marcia +Arlene +Marjorie +Doris +Esther +Claudia +Anne +Ellen +Yvonne +Rosemary +Marsha +Maureen +Jeanne +Carmen +Jeanette +Sherry +Eleanor +Juanita +Patsy +Wanda +Josephine +Georgia +Lynne +Brenda +Terry +Anna +Rachel +Deanna +Vicki +Julia +Marian +Penny +Victoria +Rebecca +Cecilia +Paula +Rosalie +Valerie +Jackie +Pauline +Cynthia +Michele +Theresa +Lorraine +Glenda +Teresa +June +Margie +Priscilla +Florence +Vivian +Joy +Gayle +Eileen +Andrea +Caroline +Laura +Toni +Grace +Billie +Lydia +Olivia +Sarah +Cheryl +Delores +Leslie +Lillian +Annette +Melinda +Yolanda +Colleen +Jessie +Stephanie +Jeannette +Beatrice +Ramona +Ruby +Marion +Robin +Rosemarie +Penelope +Eva +Lucille +Wendy +Jan +Mildred +Edith +Jill +Lupe +Jennie +Maxine +Sharron +Edna +Lucy +Sandy +Stella +Audrey +Constance +Emily +Wilma +Myrna +Rosie +Cathy +Dixie +Bette +Lana +Leona +Gwendolyn +Janis +Marianne +Bernice +Lorna +Christina +Elsie +Emma +Jacquelyn +Sara +Vera +Rosa +Carla +Bertha +Nadine +Antoinette +Madeline +Saundra +Dianna +Nellie +Patty +Sondra +Cecelia +Clara +Judie +Judi +Ethel +Michelle +Dora +Margo +Verna +Genevieve +Maryann +Paulette +Sheryl +Irma +Thelma +Dawn +Dona +Gwen +Harriet +Denise +Isabel +Lee +Lola +Veronica +Hazel +Jeri +Bobbie +Delia +Gladys +Naomi +Nina +Angie +Beverley +Karin +Adrienne +Alma +Josie +Marilynn +Amelia +Claire +Dale +Gay +Marcella +Vickie +Alberta +Jeannie +Joanna +Marylou +Renee +Angelina +Celia +Jerry +Kathie +Laurie +Margarita +Dana +Deborah +Della +Ida +Laurel +Nora +Viola +Annie +Becky +Doreen +Molly +Olga +Patti +Susanne +Angela +Arleen +Francine +Henrietta +Melanie +Pearl +Cora +Eloise +Glenna +Gretchen +Laverne +Marguerite +Velma +Beth +Elena +Ella +Rochelle +Rosalind +Vicky +Claudette +Earlene +Geneva +Sherrie +Susie +Sydney +Tina +Alicia +Bessie +Camille +Clarice +Dee +Faye +Lorene +Lynette +Natalie +Consuelo +Dorene +Ernestine +Melody +Rae +Regina +Sonja +Tanya +Terri +Antonia +Aurora +Candace +Elvira +Fay +Flora +Inez +Leah +Michael +Trudy +Agnes +Darleen +Estella +Eunice +Gale +Guadalupe +Kaaren +Marilee +Mona +Myra +Bonita +Carlene +Christie +Eugenia +Helene +Leilani +Lenore +Meredith +Pam +Tamara +Adele +Armida +Charleen +Cindy +Deanne +Janette +Jeanie +Jennifer +Kaye +Sallie +Carolynn +Esperanza +Iris +Jenny +Jerilyn +Lavonne +Lillie +Melba +Muriel +April +Arline +Betsy +Dian +Elinor +Erma +Faith +Karla +Lucia +Lucinda +Mabel +Madeleine +Myrtle +Nona +Shari +Sheri +Cathleen +Corinne +Erlinda +Kristine +Marla +Nola +Rena +Sherrill +Violet +Carleen +Carrie +Georgina +Gerry +Hope +Jayne +Katharine +Miriam +Sandi +Winifred +Alta +Blanche +Carmelita +Georgette +Jerri +Merrily +Merry +Sherri +Ada +Cherie +Frankie +Ginger +Holly +Jacklyn +Jolene +Lenora +Marietta +May +Mickey +Noreen +Ofelia +Ana +Ardith +Bernadette +Carolee +Carrol +Delilah +Elisa +Harriett +Katie +Lily +Lora +Margot +Michaele +Nelda +Socorro +Sonya +Suzy +Adeline +Caryl +Cathryn +Cheri +Chris +Christy +Diann +Dorothea +Edwina +Fern +Hilda +Janie +Jerrie +Leanne +Leola +Merle +Monica +Nan +Neva +Sidney +Suellen +Sunny +Terrie +Charmaine +Deana +Jana +Jerilynn +Lena +Mercy +Sonia +Suzan +Teri +Willa +Amy +Bettie +Cassandra +Cathie +Crystal +Dolly +Etta +Georgiana +Geri +Gertrude +Gracie +Ingrid +Jeannine +Jeraldine +Jimmie +Joellen +Kristin +Lani +Lidia +Lilly +Lou +Lynnette +Marlys +Marta +Maryanne +Nanette +Petra +Reba +Adela +Alyce +Bettye +Caren +Catalina +Darline +Dorthy +Evangeline +Francis +Georgene +Gerri +Hannah +Ina +Jacque +Julianne +Ladonna +Lila +Lorena +Luanne +Mable +Madelyn +Marleen +Melissa +Nikki +Noel +Norene +Polly +Rhoda +Ronda +Sheron +Aileen +Carolyne +Charline +Coral +Daisy +Daphne +Darla +Deloris +Dena +Elma +Elsa +Elva +Emilie +Ginny +Heather +Jeanine +Johnnie +Josefina +Juliet +Karon +Kitty +Lauretta +Manuela +Marjory +Robbie +Ronna +Rosalyn +Rowena +Ruthie +Shannon +Sharen +Sharlene +Susanna +Theodora +Tommie +Alison +Caroll +Cecile +Corrine +Cruz +David +Debbie +Estelle +Evangelina +Evonne +Freda +Hilary +Ila +Imogene +James +Jonnie +Juana +Karolyn +Karren +Karyn +Kim +Lavon +Leora +Louisa +Luella +Mae +Marcy +Margery +Marilou +Marlyn +Marva +Marylyn +Maurine +Mavis +Merrilee +Michal +Nannette +Nita +Pennie +Portia +Randi +Rene +Robert +Robyn +Rosalee +Roxie +Shelley +Silvia +Therese +Zelma +Aloma +Belva +Bobette +Carolina +Carroll +Cleo +Elvera +Erna +Gene +Georgianna +Harlene +Helena +Ilene +Isabelle +Jamie +Jewel +Jewell +Johanna +Kirsten +Laurene +Leila +Lela +Lonna +Loraine +Melodie +Mercedes +Millie +Minnie +Mitzi +Nedra +Ophelia +Ora +Phoebe +Randy +Robbin +Rosario +Roxann +Sandie +Sharyn +Sherryl +Shirlee +Tracy +Winnie +Abigail +Adelaide +Adelina +Ardis +Beryl +Bobbi +Candy +Carlotta +Carmela +Charla +Cherry +Clare +Claudine +Debra +Delfina +Dinah +Eleanore +Enid +Florine +Francisca +Greta +Herlinda +Hortencia +Janine +Jerrilyn +Jessica +Jody +John +Lesley +Lisa +Loreen +Lucile +Lura +Luz +Lyn +Madelaine +Magdalena +Marge +Margret +Margy +Marianna +Marina +Maryellen +Marylouise +Melva +Merilyn +Nettie +Pamala +Pattie +Rhea +Rhonda +Ronnie +Roslyn +Roxanne +Sherilyn +Sophie +Tillie +Twila +Velia +William +Willie +Adrianne +Aleta +Alexandra +Alexis +Aline +Amanda +Bea +Beatriz +Berta +Beulah +Bonny +Carolann +Coralie +Danielle +Darlyne +Delois +Earleen +Earline +Elisabeth +Erlene +Frieda +Gearldine +Georgann +George +Georgeann +Georgetta +Georgiann +Gina +Graciela +Janeen +Jocelyn +Joetta +Johnna +Joni +Jovita +Justine +Karleen +Keiko +Kerry +Leonor +Linnea +Liz +Lorenza +Louann +Louella +Loyce +Luann +Lyndell +Mariana +Mariann +Matilda +Mattie +Maudie +Merilee +Millicent +Mimi +Nada +Nanci +Nicki +Nicole +Norine +Ona +Raelene +Raquel +Rosalinda +Rosaline +Rosanne +Roselyn +Rosetta +Rosita +Sandee +Sharan +Sharla +Shirlene +Sigrid +Tonya +Trina +Valentina +Verla +Vikki +Vivienne +Vonda +Zoe +Adrian +Aletha +Allison +Alvina +Angelita +Annetta +Astrid +Avelina +Avis +Benita +Bernita +Beverlee +Billye +Blanca +Bobby +Bonni +Bridget +Carlyn +Charlyne +Colette +Deann +Doretta +Dottie +Earnestine +Effie +Emilia +Erica +Ester +Eula +Eulalia +Gary +Gaylene +Georgie +Gerrie +Guillermina +Gwynn +Heidi +Hortense +Iva +Jacquelynn +Janelle +Jannette +Jeanetta +Joanie +Joleen +Juliana +Julianna +Karol +Kate +Kathi +Kathlene +Katy +Kazuko +Kimiko +Kris +Kristen +Lavera +Leeann +Leigh +Leslee +Lolita +Lona +Lonnie +Lori +Lorrie +Luana +Lucretia +Malinda +Mamie +Margarett +Marjie +Marlena +Marolyn +Maryjane +Marylee +Michaela +Michel +Mollie +Nickie +Olive +Opal +Patrica +Penney +Rebeca +Reta +Rosalia +Roxanna +Sammie +Sharol +Sharone +Shelia +Sherie +Sherill +Sherril +Shiela +Susana +Suzanna +Sybil +Tamra +Trinidad +Victory +Mary +Linda +Patricia +Barbara +Sharon +Carol +Sandra +Judith +Susan +Nancy +Judy +Karen +Donna +Carolyn +Diane +Margaret +Kathleen +Shirley +Betty +Marilyn +Janet +Virginia +Joan +Joyce +Janice +Gloria +Pamela +Beverly +Bonnie +Frances +Dorothy +Diana +Carole +Helen +Elizabeth +Martha +Alice +Cheryl +Darlene +Jean +Sally +Ruth +Irene +Ann +Phyllis +Joanne +Connie +Dolores +Gail +Peggy +Roberta +Suzanne +Charlotte +Rita +Jo +Joann +Jacqueline +Marie +Elaine +Norma +Pat +Kathy +Rose +Katherine +Sue +Sylvia +Maria +Anita +Christine +Lynn +Kathryn +Charlene +Catherine +Jane +Evelyn +Louise +Lynda +Paula +Geraldine +Julie +Marsha +Sheila +Doris +Dianne +Jeanne +Lois +Anne +Marjorie +Ellen +Carmen +Marcia +Loretta +Marlene +Wanda +Arlene +Claudia +Juanita +Kay +Sherry +Deanna +Brenda +Georgia +Esther +Julia +Victoria +Yvonne +Penny +Cynthia +Eileen +Terry +Anna +Lorraine +Vicki +Eleanor +Patsy +Gayle +Rebecca +Josephine +Rosemary +Lynne +Maureen +Glenda +Laura +Leslie +Theresa +Michele +Pauline +Rachel +Rosalie +Toni +Billie +Teresa +Andrea +Jackie +Jeanette +Marian +June +Vivian +Cecilia +Valerie +Constance +Margie +Stephanie +Caroline +Yolanda +Annette +Joy +Ramona +Lydia +Ruby +Sarah +Lillian +Grace +Sharron +Lupe +Melinda +Stella +Sandy +Edith +Florence +Delores +Priscilla +Colleen +Mildred +Jill +Marion +Olivia +Paulette +Sheryl +Christina +Marianne +Rosie +Beatrice +Cathy +Edna +Lana +Cecelia +Lucille +Sondra +Lucy +Eva +Penelope +Wilma +Maxine +Sara +Robin +Jennie +Dianna +Dixie +Myrna +Thelma +Wendy +Emily +Jan +Gwendolyn +Jeannette +Vera +Bertha +Carla +Nadine +Rosa +Rosemarie +Jacquelyn +Janis +Leona +Bernice +Bobbie +Bette +Michelle +Pam +Saundra +Antoinette +Dona +Patty +Ethel +Judi +Isabel +Audrey +Clara +Harriet +Jerry +Beth +Jessie +Margarita +Dora +Gladys +Vickie +Denise +Hazel +Judie +Verna +Vicky +Angie +Celia +Emma +Madeline +Maryann +Veronica +Annie +Irma +Joanna +Tina +Jeri +Dawn +Renee +Ida +Laurel +Nora +Trudy +Alicia +Cherie +Dana +Doreen +Gay +Jeannie +Alberta +Angelina +Delia +Lorna +Margo +Marguerite +Gretchen +Laurie +Naomi +Patti +Claire +Edwina +Francine +Gwen +Rosalind +Sonja +Guadalupe +Karin +Nellie +Susanne +Elsie +Josie +Lee +Viola +Arleen +Beverley +Charleen +Ernestine +Susie +Amelia +Faye +Gale +Jenny +Nina +Regina +Sydney +Alma +Deborah +Laverne +Lola +Miriam +Olga +Pearl +Sheri +Tamara +Velma +Darleen +Hope +Kathie +Melanie +Terri +Antonia +Earlene +Ella +Marcella +Aurora +Consuelo +Della +Genevieve +Ginger +Henrietta +Janette +Jennifer +Lynette +Nikki +Violet +Angela +April +Dale +Estella +Lenore +Melody +Molly +Natalie +Rae +Cora +Eloise +Jeanie +Meredith +Rochelle +Sherrie +Tanya +Bettie +Camille +Cindy +Claudette +Elvira +Erlinda +Inez +Lavonne +Leah +Lorene +Marilee +Marilynn +Sherrill +Dee +Elena +Janie +Mona +Muriel +Roxanne +Adele +Betsy +Carolee +Leilani +Winifred +Carlene +Carrie +Cathleen +Dian +Erma +Fay +Holly +Ilene +Myra +Adrienne +Bonita +Helene +Marla +Marylou +Michael +Monica +Agnes +Carroll +Christie +Frankie +Glenna +Jana +Sharlene +Socorro +Sonia +Ana +Arline +Carleen +Cassandra +Darla +Esperanza +Harriett +Jayne +Lila +Nola +Noreen +Sharyn +Alyce +Becky +Candace +Diann +Dorene +Hilda +Jeannine +Jerri +Kaye +Kristin +Kristine +Lenora +Lucinda +Melba +Mercedes +Merry +Ada +Carmelita +Carolynn +Cheri +Corinne +Eunice +Faith +Gerry +Iris +Jolene +Julianne +Karla +Marietta +Marleen +Sharen +Suzan +Teri +Aileen +Freda +Ingrid +Katharine +Kerry +Kitty +Lyn +Mabel +Madeleine +Marva +Merle +Mollie +Nanette +Nita +Amanda +Armida +Bernadette +Blanche +Dorothea +Fern +Georgina +Lela +Lorena +Nancie +Nelda +Raquel +Sallie +Sandi +Yvette +Celeste +Elisa +Gaye +Geneva +Karol +Ladonna +Lena +Leola +Lillie +Lora +Madelyn +Mae +Marcy +Margery +Maryanne +Minnie +Rosalyn +Roseann +Shari +Sherri +Shirlee +Susann +Adeline +Carolina +Carrol +Caryl +Catalina +Cathryn +Chris +Clare +Crystal +Eugenia +Francis +Georgette +Johnnie +Linnea +Luana +Marina +Mickey +Nicole +Petra +Roxie +Shannon +Shelley +Tana +Terrie +Amy +Belinda +Cheryle +Corrine +Deloris +Evangelina +Frieda +Gerri +Gertrude +Gracie +Heather +Heidi +Jacklyn +Jeanine +Jeraldine +Jerilyn +Jerrie +Juliet +Kathi +Leila +Lori +Lynnette +Melva +Nanci +Nedra +Opal +Robyn +Rosalee +Sidney +Sybil +Trinidad +Alexis +Alta +Cecile +Claudine +Estelle +Flora +Ina +Janine +Lisa +Lonnie +Lucia +Mari +Marylin +Melissa +Mercy +Merrilee +Millie +Nicki +Rhoda +Ronda +Rosanne +Rosario +Sherron +Therese +Tommie +Ardith +Bessie +Cathie +Colette +Daphne +Deanne +Elva +Emilie +Etta +Florine +Jewel +Kaaren +Lesley +Maryellen +Mavis +Mimi +Rena +Rosalinda +Sherryl +Silvia +Trina +Velda +Adela +Alexandra +Angelita +Caron +Cherry +Deana +Debbie +Dolly +Dottie +Francisca +Georgiana +Greta +Harriette +Herlinda +Jaclyn +Janelle +Jimmie +Juana +Karolyn +Karon +Katie +Kristen +Lani +Laraine +Magdalena +Marlys +Marta +Marylyn +Nan +Ophelia +Polly +Randi +Reba +Rosetta +Susanna +Suzette +Tillie +Adelina +Alana +Candy +Danielle +Elise +Fran +James +Janyce +Jody +John +Launa +Laurene +Lea +Lou +Louella +Lucretia +Madonna +Marge +Maryjo +Marylouise +Melodie +Michaele +Natasha +Neva +Nona +Ofelia +Rhonda +Richard +Robbie +Robert +Roxanna +Shelia +Sophie +Tonia +Tonya +Valarie +Willa +Adrianne +Alison +Andra +Antonette +Arla +Belva +Bernadine +Bettye +Camilla +Caroll +Carolyne +Charmaine +Christy +Coralee +Darline +Debra +Dena +Dinah +Dorthy +Elisabeth +Eve +Gary +Gaylene +Georgie +Geri +Gina +Ginny +Hannah +Hellen +Isabelle +Jacquelin +Joe +Jonnie +Josefina +Juliana +Justine +Karren +Kim +Lawanda +Leta +Letha +Lonna +Lorrie +Luz +Madalyn +Manuela +Margot +Marianna +Marilynne +Marylee +Matilda +Maurine +May +Merlene +Michal +Noel +Norene +Pamala +Paul +Pennie +Prudence +Ronnie +Rosita +Sandie +Serena +Sharleen +Shelly +Sherie +Sherilyn +Virgie +Willie +Winona +Adriana +Alona +Annabelle +Belen +Bonny +Caren +Carlotta +Charline +Clarice +Cleo +Coleen +Corine +Corliss +Delphine +Dollie +Elouise +Elvera +Estela +Eula +Evangeline +Evon +Francesca +Gabrielle +Gene +Georgianna +Gerrie +Glory +Helena +Hortencia +Ila +Iva +Jacque +Jamie +Janeen +Jerrilyn +Jovita +Karlene +Karyl +Kathrine +Leanna +Leanne +Lelia +Leora +Libby +Lona +Luann +Maggie +Margret +Marlyn +Marty +Myrtle +Nadene +Nettie +Ora +Pamella +Pattie +Phoebe +Portia +Rachelle +Raylene +Reva +Roseanne +Rosella +Ruthann +Sharilyn +Sonya +Stefanie +Suzann +Tammy +Teddy +Tracy +Vonnie +Winnie +Zandra +Zelma +Aida +Annalee +Annetta +Aurelia +Barry +Beatriz +Belia +Beryl +Beulah +Billy +Bobbi +Carlyn +Carmel +Caryn +Cathrine +Charlyne +Chloe +Coral +Cornelia +Cruz +David +Deann +Delfina +Dennis +Dina +Earline +Edythe +Elma +Erin +Ester +Freddie +Freida +Gayla +Georganne +Goldie +Hortensia +Isabell +Jeane +Jerilynn +Johanna +Johna +Joye +Judee +Judyth +Juliette +Kathe +Katy +Lael +Lanette +Larry +Lauretta +Leigh +Leota +Lily +Lolita +Loraine +Louisa +Luella +Mable +Maralee +Maralyn +Maren +Mariana +Marjory +Marvel +Merrily +Oleta +Patrica +Peggie +Rene +Reta +Rhea +Sharie +Sharol +Sheridan +Susana +Suzie +Suzy +Thomas +Vickey +Victory +Vivienne +Vonda +Zelda +Zoe +Adelaide +Aleta +Alfreda +Alvina +Amalia +Amparo +Ardis +Avis +Benita +Berta +Beverlee +Bridget +Brooke +Catharine +Charles +Cheryll +Concepcion +Conception +Coralie +Cristina +Daisy +Darcy +Denice +Dorris +Earleen +Eddie +Elda +Eleanore +Elissa +Elsa +Elvia +Emilia +Enid +Erlene +Ernestina +Evelyne +Florene +Georgiann +Graciela +Hedy +Ilona +Imogene +Isabella +Jenifer +Jessica +Jewell +Jocelyn +Joellen +Josette +Julianna +Karyn +Katheryn +Kelly +Kendra +Kristi +Lanita +Laureen +Lidia +Louann +Louanne +Luanne +Lula +Madge +Maida +Mariann +Maribeth +Marilou +Marita +Martina +Mattie +Maurene +Megan +Merilyn +Mickie +Millicent +Minerva +Nyla +Ona +Oralia +Orlene +Patrice +Pauletta +Rafaela +Ronald +Rosalia +Rosalina +Roselyn +Rowena +Roxana +Roxann +Royce +Rozanne +Ruthie +Sadie +Saralee +Selma +Shaaron +Shanna +Shara +Sharyl +Sheron +Stacy +Suzanna +Thalia +Theda +Theo +Theodora +Tracey +Vada +Valorie +Velia +Vivien +Wilda +William +Linda +Mary +Patricia +Barbara +Carol +Sharon +Sandra +Susan +Judith +Nancy +Donna +Judy +Karen +Carolyn +Kathleen +Margaret +Diane +Pamela +Shirley +Gloria +Janet +Cheryl +Betty +Marilyn +Joan +Virginia +Janice +Joyce +Bonnie +Beverly +Diana +Carole +Elizabeth +Dorothy +Frances +Helen +Martha +Sally +Jean +Ann +Connie +Alice +Christine +Gail +Darlene +Ruth +Suzanne +Maria +Dolores +Roberta +Irene +Jo +Kathy +Phyllis +Charlotte +Marie +Rose +Joanne +Catherine +Jane +Peggy +Elaine +Claudia +Sue +Kathryn +Paula +Victoria +Anita +Lynn +Katherine +Pat +Louise +Rita +Dianne +Jacqueline +Joann +Sylvia +Lois +Marsha +Lynda +Norma +Vicki +Jeanne +Charlene +Sherry +Evelyn +Ellen +Wanda +Penny +Julie +Marcia +Brenda +Doris +Juanita +Sheila +Andrea +Marjorie +Geraldine +Anne +Eileen +Michele +Marlene +Rebecca +Cynthia +Kay +Lorraine +Carmen +Leslie +Terry +Maureen +Rosemary +Arlene +Glenda +Esther +Georgia +Theresa +Yvonne +Rachel +Jeanette +Loretta +Lynne +Teresa +Anna +Eleanor +Patsy +Yolanda +Josephine +Gayle +Constance +Laura +Deanna +Toni +Julia +Sarah +Jackie +Lupe +Cecilia +Vivian +Jill +Stephanie +June +Christina +Delores +Caroline +Priscilla +Valerie +Annette +Lillian +Rosalie +Billie +Olivia +Sharron +Cathy +Marian +Dianna +Joy +Margie +Pauline +Grace +Lydia +Sandy +Beatrice +Edith +Mildred +Paulette +Rosie +Sheryl +Ruby +Stella +Lucille +Jennifer +Carla +Jeannette +Lana +Maxine +Deborah +Jacquelyn +Marion +Wilma +Jan +Melinda +Jennie +Jessie +Robin +Rosemarie +Penelope +Vickie +Clara +Colleen +Edna +Marianne +Bertha +Florence +Ramona +Thelma +Eva +Wendy +Dixie +Janis +Hazel +Patty +Renee +Pam +Vera +Cecelia +Laurie +Lucy +Emily +Michelle +Judi +Trudy +Sara +Nadine +Bobbie +Rosa +Saundra +Antoinette +Beth +Laurel +Bernice +Dana +Gwendolyn +Harriet +Madeline +Maryann +Lee +Nina +Alma +Emma +Marguerite +Bette +Dawn +Angela +Claire +Ethel +Leona +Lola +Gladys +Dora +Elsie +Judie +Lorna +Margo +Bonita +Denise +Jeannie +Veronica +Celia +Margarita +Nellie +Patti +Ida +Nora +Marcella +Myrna +Tina +Verna +Vicky +Delia +Dona +Genevieve +Annie +Cathleen +Sondra +Bernadette +Eloise +Janie +Naomi +Camille +Regina +Terri +Alberta +Alicia +Angelina +Gay +Gretchen +Josie +Marta +Susanne +Angie +Antonia +Cheri +Elena +Jeri +Melody +Adrienne +Beverley +Henrietta +Holly +Kathie +Cherie +Ernestine +Francine +Jerry +Dee +Ginger +Guadalupe +Velma +Viola +Ana +Candace +Faye +Gale +Joanna +Sherrill +Della +Iris +Irma +Pearl +Rochelle +Susie +Audrey +Becky +Charleen +Cheryle +Melanie +Sonja +Tanya +Teri +Betsy +Deloris +Ella +Jeanie +Marilynn +Miriam +Shelley +Sherri +Violet +Gertrude +Gwen +Helene +Lora +Tamara +Armida +Faith +Inez +Isabel +Jenny +Myra +Amelia +Consuelo +Erlinda +Hope +Laverne +Nikki +Aurora +Chris +Cora +Doreen +Earlene +Frankie +Lucinda +Marilee +Winifred +Adele +Arleen +Carlene +Carolee +Cindy +Claudette +Erma +Flora +Freda +Karin +Lynette +Terrie +Bettie +Carrie +Geneva +Kaye +Kristin +Leah +Lena +Lenora +Lisa +Marla +Mercedes +Jerri +Karla +Marylou +Melba +Meredith +Merry +Monica +Muriel +Natalie +Nola +Rosalind +Sandi +Shari +Adeline +Candy +Dale +Eugenia +Eunice +Gerry +Katharine +Lily +Noreen +Rae +Roxanne +Sheri +Sherrie +Suzan +Agnes +Bernadine +Dian +Jolene +Leilani +Michael +Olga +Carroll +Estella +Ilene +Molly +Nan +Nelda +Shannon +Sharyn +Willa +Amy +Edwina +Esperanza +Glenna +Janette +Kristine +Lani +Lou +Marva +Sharlene +Sherryl +Socorro +Sonia +Sydney +Theodora +Carolynn +Carrol +Corinne +Daphne +Darleen +Diann +Francis +Jeannine +Lavonne +Lenore +Mona +Ofelia +Sallie +Therese +Alta +Arline +Charla +Darla +Debbie +Fay +Geri +Jerilyn +Johnnie +Katie +Lila +Lorene +Mickey +Nita +Nona +Rena +Roseann +Sharen +Bessie +Deanne +Debra +Elisabeth +Gaye +Gracie +Heidi +Jana +Kerry +Lea +Leanne +Leta +Louella +Lyn +Marina +Melissa +Myrtle +Suzette +Alana +April +Caren +Cassandra +Cecile +Christie +Dorene +Elsa +Elvira +Evangeline +Herlinda +Ingrid +Johanna +Katheryn +Kim +Lillie +Mabel +Melva +Mercy +Ada +Alison +Alyce +Carmelita +Etta +Harriett +Iva +Jacklyn +Juana +Juliet +Lela +Mae +Magdalena +Marylee +Nanette +Nicole +Polly +Tracy +Willie +Aileen +Blanche +Camilla +Cathryn +Crystal +Dorinda +Dorthy +Dottie +Elva +Georgette +Georgina +Gerri +Janine +Jessica +Laraine +Leanna +Leila +Lesley +Lonnie +Lori +Lynnette +Margery +Marietta +Opal +Raquel +Rhoda +Ronna +Rosalee +Rosalinda +Rosalyn +Shirlee +Sybil +Alexandra +Carolina +Carolyne +Catalina +Celeste +Charline +Clarice +Daisy +Dena +Dorothea +Earline +Estela +Gene +Georgene +Graciela +Hilda +Kathi +Kristi +Kristina +Loraine +Lorena +Luz +Mari +Marti +Maryellen +Maryjane +Merle +Millicent +Millie +Retha +Rhonda +Robyn +Rosario +Sherron +Silvia +Alexis +Annetta +Ardith +Benita +Caryl +Catharine +Cathie +Colette +Concepcion +Deana +Denice +Dinah +Evangelina +Gina +Ina +Janelle +Jewell +Jimmie +Joellen +Jonnie +Karolyn +Kitty +Louisa +Luana +Luella +Merrilee +Mollie +Pattie +Randi +Robert +Ronda +Ronnie +Sherilyn +Suellen +Sunny +Virgie +Winnie +Alene +Amalia +Belinda +Christy +Claudine +Cleo +Danielle +Danna +Darline +Delfina +Elisa +Estelle +Georganne +Ginny +Heather +Isabelle +James +Jayne +Jewel +Julianne +Karren +Kathryne +Kris +Letha +Lilly +Lucia +Manuela +Margot +Marilou +Marlys +Mattie +Maurine +Melodie +Mimi +Nanci +Nancie +Nedra +Nicki +Patrice +Pennie +Reba +Robbie +Sonya +Sophie +Suzie +Tana +Velia +Vonda +Allene +Angelita +Antonette +Beryl +Brooke +Cherri +David +Elinor +Ester +Eve +Francisca +Frieda +Ila +Jacquline +Jamie +Janeen +Jerrie +Jody +Joella +Juliana +Karan +Karyn +Kathlyn +Leigh +Loyce +Luanne +Mable +Madeleine +Madelyn +Maggie +Marcy +Margret +Marianna +Marty +Maryanne +Merilyn +Nettie +Nickie +Niki +Norene +Pamala +Raylene +Reiko +Rene +Rhea +Rosanne +Roxie +Ruthie +Sammie +Sharyl +Sidney +Suzann +Tommie +Trina +Trudie +Adela +Adelina +Alfreda +Bernardine +Bettina +Bobbi +Carlotta +Carolann +Cherilyn +Clare +Corrine +Dolly +Elyse +Evonne +Gaylene +George +Harlene +Harriette +Hortensia +Janell +Jeanine +Jerrilyn +Josefina +Judyth +Karol +Kathe +Kathlene +Kathrine +Kelly +Larraine +Lavon +Leone +Lidia +Linnea +Lolita +Lonna +Mariann +Martina +Maryjo +Marylyn +May +Merlene +Michaele +Minnie +Nell +Nyla +Ora +Pamella +Patrica +Peggie +Portia +Roseanne +Roselyn +Roxana +Sheron +Sheryll +Sophia +Susanna +Suzanna +Treva +Trinidad +Twyla +Vickey +Vida +Viki +Vikki +Winona +Alida +Aline +Aloha +Amanda +Ava +Babette +Bettye +Beulah +Beverlee +Bonny +Carlyn +Carolin +Caryn +Cathrine +Charlyn +Cherry +Cheryll +Coleen +Coral +Cristina +Cruz +Darlyne +Deirdre +Dennis +Dina +Donnie +Dyanne +Earleen +Eilene +Fern +Francesca +Freddie +Georgetta +Georgiana +Gerrie +Greta +Hattie +Isabell +Jaclyn +Jacque +Janey +Joanie +John +Julene +Julieta +Kaaren +Kate +Kathaleen +Katy +Kit +Kristen +Laurene +Leann +Leni +Leota +Lita +Lona +Loralee +Lorelei +Luann +Marge +Marjory +Marleen +Marlyn +Mavis +Merilee +Merrie +Mickie +Neva +Ollie +Ophelia +Petra +Randy +Reina +Reta +Rosetta +Selma +Shelia +Sherre +Susana +Tillie +Tonya +Trudi +Twila +Valorie +Verla +Vesta +Vivienne +Adrian +Akemi +Andria +Annabelle +Ardis +Avis +Bobby +Bobette +Callie +Caroll +Cassie +Charmaine +Cherlyn +Cherryl +Christene +Coralee +Cordelia +Courtney +Dawna +Deena +Dorine +Dortha +Dyann +Elayne +Eleanore +Elise +Elma +Emilie +Erin +Evie +Felicia +Floy +Freida +Georgianna +Georgianne +Germaine +Goldie +Gwenda +Hannah +Helena +Hortense +Imogene +Jacquelin +Jacquelynn +Jann +Janna +Jannette +Jennette +Jeraldine +Jocelyn +Jodie +Kandy +Kirsten +Ladonna +Lanette +Leonor +Leora +Leticia +Lindy +Louanne +Madelaine +Madge +Madolyn +Mamie +Marcelle +Marline +Maryhelen +Marylin +Maudie +Melodee +Merrily +Nannette +Noel +Pauletta +Phylis +Prudence +Rachael +Raelene +Rosanna +Rosella +Rosita +Rowena +Roxanna +Royce +Sandie +Serena +Sharilyn +Sharol +Sherrell +Signe +Sigrid +Starr +Susann +Tammy +Tonie +Unknown +Vanda +Veda +Venita +Vernetta +Yvette +Zelda +Zoe +Linda +Mary +Patricia +Barbara +Carol +Susan +Sharon +Sandra +Nancy +Donna +Karen +Judith +Judy +Kathleen +Diane +Carolyn +Margaret +Gloria +Pamela +Janet +Cheryl +Shirley +Betty +Janice +Virginia +Marilyn +Diana +Joyce +Joan +Bonnie +Elizabeth +Dorothy +Beverly +Frances +Martha +Helen +Ann +Carole +Gail +Christine +Connie +Kathy +Jean +Jane +Alice +Victoria +Sally +Suzanne +Catherine +Darlene +Peggy +Phyllis +Sue +Maria +Kathryn +Joanne +Lynn +Paula +Irene +Elaine +Ruth +Rose +Marie +Dolores +Jacqueline +Roberta +Sylvia +Jo +Vicki +Laura +Katherine +Rosemary +Jeanne +Charlotte +Dianne +Anita +Lynda +Claudia +Brenda +Norma +Charlene +Sherry +Julie +Evelyn +Pat +Anne +Marsha +Sheila +Cynthia +Louise +Marcia +Joann +Geraldine +Rita +Doris +Penny +Kay +Toni +Ellen +Leslie +Lois +Loretta +Marjorie +Marlene +Yolanda +Andrea +Lorraine +Theresa +Georgia +Michele +Anna +Maureen +Wanda +Yvonne +Esther +Gayle +Rebecca +Lynne +Carmen +Jeanette +Juanita +Teresa +Valerie +Arlene +Eileen +Constance +Terry +Robin +Sheryl +Patsy +Stephanie +Jan +Josephine +Glenda +Jill +Pauline +Cathy +Laurie +Rachel +Christina +Jackie +Lupe +Vivian +Sandy +Deborah +Janis +Lillian +Annette +Julia +Lydia +Vickie +Carla +Deanna +Paulette +Colleen +Dianna +Delores +Cecilia +Jennifer +Eleanor +Beatrice +Lucille +Billie +Rosalie +June +Caroline +Joy +Margie +Michelle +Olivia +Wendy +Grace +Gwendolyn +Judi +Marian +Priscilla +Maxine +Eva +Jeannette +Lana +Candace +Denise +Stella +Ruby +Sarah +Sharron +Edith +Rosie +Florence +Ramona +Dixie +Sara +Jacquelyn +Melinda +Mildred +Guadalupe +Marianne +Dana +Rosemarie +Trudy +Marion +Renee +Sharyn +Audrey +Lucy +Janie +Rosa +Terri +Thelma +Claire +Patty +Veronica +Vicky +Edna +Penelope +Laurel +Lorna +Margo +Saundra +Jennie +Pam +Bernice +Wilma +Bobbie +Vera +Antoinette +Dora +Jeannie +Lee +Bertha +Doreen +Tina +Jessie +Angela +Cecelia +Annie +Becky +Dawn +Emily +Lynette +Beth +Alicia +Harriet +Nellie +Nora +Susanne +Teri +Marguerite +Maryann +Patti +Bette +Cherie +Jeri +Lauren +Madeline +Melody +Naomi +Sondra +Cathleen +Faye +Gretchen +Monica +Angie +Clara +Francine +Margarita +Velma +Verna +Dale +Emma +Kathie +Sherrie +Bernadette +Cindy +Ethel +Antonia +Elsie +Nadine +Nina +Adrienne +Alma +Josie +Leona +Lisa +Myrna +Gladys +Hazel +Isabel +Janette +Angelina +Delia +Gale +Gwen +Regina +Celia +Ginger +Irma +Lola +Marcella +Rhonda +Amelia +Judie +Cheri +Gay +Ida +Sandi +Ella +Sherri +Alberta +Ana +Consuelo +Dona +Elena +Ernestine +Jenny +Jerry +Lorene +Melanie +Susie +April +Aurora +Camille +Chris +Estella +Joanna +Laverne +Dee +Sonja +Betsy +Beverley +Eloise +Esperanza +Genevieve +Kristine +Marilynn +Miriam +Mona +Noreen +Olga +Rosalind +Sheri +Candy +Cheryle +Erma +Glenna +Holly +Cora +Jeanie +Lora +Meredith +Nikki +Charleen +Iris +Jeannine +Kim +Molly +Myra +Natalie +Pearl +Rae +Roxanne +Sallie +Armida +Elvira +Henrietta +Lucinda +Marla +Shannon +Sydney +Tamara +Viola +Violet +Adele +Agnes +Bonita +Carroll +Cherry +Diann +Erlinda +Katharine +Rochelle +Tanya +Carrie +Earlene +Hilda +Jamie +Jayne +Karla +Merry +Shelley +Claudette +Della +Gerry +Gertrude +Helene +Karin +Kathi +Marina +Melba +Michael +Muriel +Nita +Robyn +Sharlene +Alta +Carolina +Eunice +Heather +Jerri +Karol +Leilani +Lela +Marta +Marylou +Nola +Rena +Sherrill +Socorro +Terrie +Winifred +Dian +Eugenia +Frankie +Kristin +Myrtle +Nona +Ofelia +Susanna +Adela +Bettie +Darleen +Debra +Edwina +Geneva +Inez +Jeanine +Katie +Leah +Mercedes +Sharen +Shari +Tracy +Aileen +Cathryn +Corinne +Dena +Kitty +Lani +Lavonne +Lenore +Lila +Lily +Nelda +Sonia +Amy +Belinda +Carlene +Cathie +Celeste +Charla +Christy +Elisabeth +Harriett +Ingrid +Jacklyn +Lyn +Marietta +Marilee +Maryellen +Sherryl +Adeline +Deanne +Faith +Geri +Hope +Kerry +Lena +Leta +Lucia +Therese +Willie +Ada +Candice +Carolyne +Flora +Gina +Heidi +Joellen +Julianne +Karon +Karyn +Marva +Melissa +Merle +Opal +Rosario +Sheron +Suzan +Tonya +Carleen +Carolee +Cecile +Claudine +Deloris +Eve +Freda +Herlinda +Jana +Johanna +Johnnie +Kaaren +Karren +Kaye +Lesley +Lillie +Lou +Lynnette +Margery +Maryanne +Melva +Nanci +Nicki +Beatriz +Beryl +Christie +Clarice +Crystal +Dorothea +Earline +Elva +Ina +Jonnie +Juana +Katheryn +Laraine +Lenora +Lonnie +Loraine +Magdalena +Nan +Noel +Pamala +Rene +Sidney +Silvia +Suellen +Sybil +Trudi +Adelina +Alexis +Bernadine +Blanche +Carolynn +Carrol +Cheryll +Deena +Elinor +Elsa +Etta +Ginny +Gracie +Ilene +Janelle +Janine +Jewell +Jimmie +Jolene +Josefina +Kristina +Lauretta +Leanne +Leila +Lilly +Linnea +Lona +Lori +Madelyn +Mae +Mickey +Nanette +Neva +Richard +Roseann +Roxanna +Trina +Aleta +Alexandra +Alison +Angelita +Carmel +Danielle +Debbie +Dorene +Eddie +Elisa +Fran +Gaye +Jay +Marcy +Margot +Mimi +Minnie +Nicole +Polly +Raquel +Ronnie +Sandie +Shelia +Sherilyn +Sonya +Tana +Tommie +Tonia +Willa +Allison +Arline +Bettye +Bobbi +Caren +Carmela +Carmelita +Catalina +Clare +Daisy +Daphne +Daryl +Deidra +Deirdre +Dina +Fay +Fern +Georgette +Georgina +Gerrie +Jerilyn +Jewel +Karyl +Lea +Leticia +Lorena +Melodie +Norene +Pamella +Patrice +Rhoda +Robert +Ruthie +Susann +Tammy +Theodora +Toby +Yvette +Alana +Alyce +Amanda +Amber +Bessie +Caryl +Cassandra +Dinah +Dolly +Erin +Evangelina +Francis +Georgene +Harriette +Ila +Isabell +Jacquelynn +James +Jerrie +Judee +Ladonna +Loreen +Luanne +Luz +Madeleine +Manuela +Mari +Marylin +May +Mercy +Mickie +Nannette +Ora +Pennie +Randee +Rosalinda +Sharolyn +Sharyl +Shirlee +Sunny +Zelma +Althea +Benita +Bonny +Catharine +Charmaine +Cherilyn +Collette +Cornelia +Cristina +Danna +Darla +Darline +Deana +Deidre +Denice +Elayne +Elise +Elnora +Enid +Ernestina +Estela +Felicia +Freddie +Gaylene +Genie +Gilda +Hilary +Jannie +Jessica +Juliana +Juliette +Karan +Laureen +Letha +Lonna +Luana +Luella +Lula +Mable +Marge +Margret +Marleen +Marna +Mavis +Millie +Ollie +Retha +Reva +Ronda +Ronna +Rosalee +Rosalyn +Rosetta +Roslyn +Sharilyn +Sherian +Susana +Suzann +Suzi +Treva +Vada +Veda +Vikki +Alene +Ardith +Avis +Bridget +Brooke +Cathi +Charlette +Cinda +Concepcion +Delfina +Devon +Dollie +Dottie +Eliza +Elma +Erica +Estelle +Evangeline +Georgiana +Georgianna +Graciela +Hattie +Helena +Iva +Jacquelin +Jade +Janell +Janey +Jaqueline +Juliet +Kathrine +Kit +Kris +Kristen +Larraine +Laurene +Lavada +Leanna +Leora +Letitia +Louisa +Marianna +Marlyn +Marlys +Marty +Matilda +Mattie +Melodye +Merrie +Micaela +Patt +Pattie +Rachael +Randa +Ricki +Robbie +Roxie +Ruthann +Sadie +Sharol +Sheryll +Shirlene +Sophia +Suzette +Suzy +Teddy +Verda +Vonnie +Abigail +Adella +Adelle +Adrian +Adrianne +Allene +Antionette +Antonette +Arleen +Bernie +Blanca +Cameron +Camilla +Cassie +Colette +David +Dawna +Deann +Delma +Doretha +Dorinda +Earnestine +Elaina +Eloisa +Elouise +Elvera +Emilie +Francene +Francisca +Freida +Frieda +Gena +George +Gerri +Hannah +Hortencia +Jacque +Jacqulyn +Janalee +Janeen +Jenifer +Jeraldine +Jody +John +Jovita +Judyth +Kathlyn +Kelly +Kendra +Kristan +Kristi +Lanell +Lauri +Leeann +Leigh +Lita +Loni +Mabel +Mamie +Mariann +Marti +Maryjane +Maurine +Millicent +Mitzi +Nancie +Nicola +Norine +Pauletta +Petra +Prudence +Racheal +Randy +Raylene +Reba +Rebeca +Rosanne +Roselyn +Roxana +Sandee +Sharla +Sharleen +Shelby +Sherril +Sherron +Shiela +Signe +Suzie +Terryl +Teryl +Trinidad +Trudie +Velda +Velia +Winnie +Winona +Zelda +Zona +Aida +Annetta +Ava +Beulah +Beverlee +Billy +Camila +Candida +Cara +Carlota +Carola +Caroll +Cecily +Charline +Cherlyn +Christa +Christopher +Cleo +Coralee +Delora +Deon +Donnie +Drena +Drinda +Earleen +Effie +Eilene +Emilia +Enedina +Erna +Eula +Eulalia +Fannie +Florene +Francie +Gearldine +Georganne +Glinda +Golda +Hiroko +Hortense +Hortensia +Imogene +Ivy +Janett +Jann +Jeralyn +Jerrilyn +Joella +Jonell +Kandy +Karleen +Karolyn +Kathlene +Katrina +Laurena +Lavern +Lavon +Leann +Lettie +Lilia +Loralee +Lorenza +Lorrayne +Lucile +Lucretia +Lura +Lyla +Madaline +Mara +Marcelina +Marcie +Mardell +Mardi +Marilou +Marline +Marlo +Marquita +Marybeth +Marylee +Maudie +Melodee +Merrily +Michiko +Minerva +Nada +Phillis +Phoebe +Raelene +Raymond +Reiko +Reta +Rickie +Roma +Rosalia +Roselee +Rosita +Roxann +Sabina +Selma +Sharri +Shelly +Sigrid +Stephany +Suzanna +Tania +Tanna +Tara +Tomi +Valorie +Velvet +Vida +Virgie +Vivien +Wynona +Linda +Mary +Patricia +Susan +Barbara +Sharon +Carol +Sandra +Nancy +Kathleen +Karen +Donna +Judy +Judith +Diane +Pamela +Cheryl +Carolyn +Margaret +Janet +Janice +Gloria +Shirley +Marilyn +Betty +Diana +Virginia +Joyce +Christine +Joan +Beverly +Elizabeth +Bonnie +Kathy +Dorothy +Cynthia +Martha +Suzanne +Frances +Jean +Connie +Helen +Ann +Alice +Phyllis +Gail +Sally +Maria +Catherine +Jane +Darlene +Kathryn +Peggy +Lynn +Ruth +Carole +Marsha +Jo +Paula +Laura +Sue +Katherine +Roberta +Elaine +Irene +Sherry +Vicki +Anita +Joanne +Dolores +Jacqueline +Marie +Claudia +Jeanne +Rita +Sheila +Brenda +Yolanda +Sylvia +Charlene +Rosemary +Charlotte +Ellen +Victoria +Pat +Norma +Dianne +Julie +Lynda +Evelyn +Marcia +Anne +Leslie +Cathy +Rose +Terry +Janis +Rebecca +Theresa +Toni +Yvonne +Loretta +Lois +Denise +Joann +Teresa +Andrea +Maureen +Louise +Penny +Lorraine +Geraldine +Esther +Lynne +Kay +Anna +Marlene +Stephanie +Constance +Valerie +Wanda +Doris +Jill +Gayle +Michele +Eileen +Marjorie +Jeanette +Jackie +Juanita +Arlene +Deborah +Robin +Sandy +Jan +Jennifer +Paulette +Glenda +Patsy +Carla +Carmen +Georgia +Christina +Vivian +Sheryl +June +Rachel +Josephine +Vickie +Laurie +Joy +Wendy +Julia +Lupe +Michelle +Eleanor +Colleen +Lydia +Marian +Renee +Deanna +Rosalie +Annette +Margie +Gwendolyn +Cecilia +Pauline +Billie +Dianna +Candace +Lana +Delores +Lillian +Pam +Stella +Sarah +Caroline +Olivia +Terri +Grace +Edith +Cheri +Priscilla +Ruby +Rosie +Mildred +Melinda +Jeannie +Guadalupe +Judi +Laurel +Melody +Patty +Sharron +Wilma +Beatrice +Jeannette +Marianne +Maxine +Rosa +Dawn +Jacquelyn +Marion +Ramona +Lucille +Eva +Florence +Kristine +Jennie +Penelope +Angela +Cecelia +Cherie +Emily +Janie +Francine +Trudy +Dana +Rosemarie +Sara +Doreen +Antoinette +Dale +Nadine +Becky +Bobbie +Nina +Nora +Vera +Cathleen +Cindy +Tina +Bertha +Edna +Dixie +Rhonda +Sherrie +Vicky +Audrey +Beth +Emma +Harriet +Susie +Patti +Lucy +Bette +Irma +Madeline +Susanne +Bernadette +Jessie +Maryann +Myrna +Veronica +Clara +Gale +Dora +Kathie +Candy +Margo +Melanie +Thelma +April +Gay +Lee +Teri +Claire +Leona +Marcella +Sheri +Angelina +Ethel +Faye +Ida +Alicia +Ginger +Isabel +Lynette +Jeri +Olga +Sharyn +Dona +Suzette +Alma +Bernice +Bonita +Margarita +Monica +Candice +Darla +Saundra +Hope +Marguerite +Sherri +Kim +Roxanne +Angie +Gladys +Henrietta +Lisa +Adrienne +Della +Eloise +Jeanie +Myra +Heidi +Holly +Karin +Lauren +Laverne +Lorna +Nikki +Pearl +Rochelle +Annie +Celia +Delia +Mona +Naomi +Amelia +Beverley +Regina +Sandi +Sondra +Gretchen +Joanna +Judie +Chris +Erma +Ernestine +Gwen +Jerry +Kristin +Suzan +Tamara +Terrie +Adele +Antonia +Betsy +Camille +Hazel +Janette +Josie +Marilynn +Ella +Estella +Geneva +Miriam +Nellie +Tanya +Verna +Debbie +Dian +Elsie +Georgette +Karla +Lori +Meredith +Genevieve +Lora +Sonja +Alberta +Alison +Ana +Dee +Helene +Jessica +Velma +Alana +Aurora +Claudette +Ingrid +Jeannine +Jenny +Lola +Merry +Nanci +Sherrill +Carlene +Consuelo +Cora +Gilda +Leah +Lucinda +Muriel +Rena +Cheryle +Earlene +Elena +Esperanza +Glenna +Iris +Janine +Johnnie +Kimberly +Noreen +Sydney +Viola +Armida +Carrie +Darleen +Flora +Heather +Lenore +Shari +Shelley +Agnes +Arleen +Christy +Diann +Hilda +Jana +Jayne +Lila +Michael +Rosalind +Cathie +Cecile +Georgina +Inez +Jamie +Kitty +Lyn +Marla +Robyn +Socorro +Winifred +Adela +Alexis +Elvira +Katharine +Katie +Lavonne +Lou +Mercedes +Rae +Shelia +Therese +Violet +Ada +Adeline +Carrol +Danielle +Erlinda +Geri +Jeanine +Josefina +Kaye +Kristina +Luana +Madelyn +Melba +Molly +Patrice +Sherryl +Amy +Cassandra +Edwina +Kathi +Lela +Lena +Lorene +Rosalinda +Debra +Eugenia +Evangeline +Ilene +Jolene +Lucia +Natalie +Polly +Sallie +Bettie +Elisa +Kris +Lily +Marilee +Marina +Melissa +Nanette +Sandie +Sharlene +Willie +Christie +Corinne +Crystal +Dorene +Frankie +Gina +Jerri +Karon +Lani +Lenora +Loraine +Lynnette +Madeleine +Marylou +Pamala +Aileen +Aleta +Caren +Carolynn +Carroll +Cherryl +Elva +Gerry +Juana +Kristi +Lesley +Lillie +Lorena +Magdalena +Ofelia +Rene +Yvette +Alta +Blanche +Cathryn +Charleen +Colette +Eunice +Faith +Lonnie +Margot +Mari +Marianna +Maryanne +Minnie +Roseann +Shannon +Shirlee +Sonia +Tonya +Benita +Bessie +Clare +Corrine +Deanne +Deloris +Francis +Gene +Janeen +Janelle +Jerilyn +Mae +Marty +Marva +Nita +Nona +Randi +Rosario +Roslyn +Roxie +Silvia +Alyce +Annabelle +Bridget +Catharine +Celeste +Corliss +Deana +Dena +Dolly +Fay +Ina +Jacklyn +Jimmie +Jody +Karol +Kerry +Ladonna +Lilly +Lonna +Lorrie +Marietta +Marta +Veda +Willa +Carmelita +Cristina +Denice +Dorothea +Erica +Erin +Frieda +Gaye +Gracie +Isabelle +Jacque +Julianne +Katheryn +Lea +Lura +Marcie +Melva +Mercy +Nelda +Nettie +Pennie +Reba +Robert +Sherilyn +Tracy +Valarie +Amanda +Antonette +Belinda +Cherlyn +Claudine +Coleen +Danna +Deirdre +Dinah +Elisabeth +Estela +Francie +Gertrude +Harriett +Karlene +Kristen +Lauretta +Leanne +Louella +Lucretia +Luz +Myrtle +Nannette +Nicki +Nola +Robbie +Roxanna +Susanna +Suzi +Tommie +Alexandra +Bernadine +Carolina +Charla +Cherry +Cherylene +Clarice +Cruz +Daphne +Delfina +Felicia +Gayla +Georgiana +Gerri +Jerrie +Jewel +Joe +Karolyn +Lilia +Lourdes +Mattie +Mollie +Petra +Raquel +Rhoda +Rosanne +Sheron +Sonya +Sunny +Susana +Suzann +Trina +Trinidad +Trudi +Zelma +Allison +Angelita +Beverlee +Camilla +Carolee +Caryl +Catalina +Cherilyn +Cherri +Cleo +Concepcion +Dawna +Deidre +Donita +Eve +Fern +Freda +Freddie +Gaylene +Jerrilyn +Jewell +Johanna +Jonnie +Juliette +Karan +Kathe +Leslee +Leta +Linnea +Luann +Mamie +Marylin +Maurine +May +Merle +Millie +Mimi +Mitzi +Nicola +Noel +Pattie +Rhea +Ronnie +Rosalee +Rosalia +Sherron +Andra +Annetta +Avis +Bobbi +Bonny +Candis +Charlyn +Cheryll +Cornelia +Dayle +Debby +Deena +Dina +Donnie +Dorris +Dorthy +Dottie +Elma +Elvia +Ernestina +Ester +Evangelina +Herlinda +Hortencia +Jacalyn +James +Justine +Kaaren +Laureen +Laurene +Leila +Leilani +Leola +Lona +Lula +Mable +Manuela +Marcy +Marlys +Melodie +Mickey +Nickie +Opal +Rachael +Raylene +Ronna +Rosella +Sandee +Sharen +Sharilyn +Sidney +Tammy +Tana +Treva +Amparo +Beatriz +Bettye +Carolyne +Cherrie +Darline +Darlyne +Deann +Diedre +Earline +Edythe +Emilie +Estelle +Francisca +Georgene +Graciela +Helena +Jacki +Janell +Jann +Jannie +Janyce +Jenifer +Joetta +Joette +Kandy +Laraine +Lavern +Leanna +Leota +Letha +Lidia +Liza +Lolita +Luanne +Margery +Margret +Marilynne +Meri +Michaele +Michel +Minerva +Nedra +Neva +Norine +Phylis +Randee +Retha +Ronda +Ruthie +Sadie +Shelly +Susann +Suzy +Twila +Valorie +Verona +Vikki +Winnie +Zandra +Zoe +Adrianne +Aida +Alanna +Aletha +Alix +Amalia +Ardith +Arla +Arline +Ava +Bennie +Blanca +Brooke +Candi +Cathi +Charmaine +Cindi +David +Dennis +Denyse +Eleanore +Elissa +Etta +Evonne +Frederica +Gaile +Gena +Georgianna +Georgie +Hedy +Janey +Joleen +Joni +Juliana +Karren +Kathlyn +Kathryne +Katy +Kelly +Kit +Lanette +Lavon +Mabel +Maggie +Maren +Marilou +Marylouise +Marylyn +Marylynn +Mavis +Merilyn +Micaela +Nan +Nicole +Norene +Pamella +Peggie +Penni +Randa +Randy +Reta +Richard +Ricki +Rosalina +Roselyn +Rosetta +Rowena +Roxana +Sheilah +Sherie +Stacy +Starr +Stefanie +Suellen +Suzie +Terrill +Theodora +Tonia +Vada +Valeria +Verla +Vonnie +Adelina +Allene +Althea +Amber +Antionette +Barbra +Belen +Berta +Beryl +Bettina +Candelaria +Carleen +Carmel +Cathlene +Charles +Charline +Coralee +Daisy +Darcy +Deedee +Dollie +Dorcas +Dortha +Drew +Eddie +Edris +Elayne +Elyse +Enid +Fran +Georganna +George +Georgetta +Hellen +Hermelinda +Ilona +Iva +Jacquelin +Jacqulyn +Janiece +Jannette +Jay +Jeraldine +Jocelyn +Joellen +Jonna +Jorja +Joye +Karyn +Kathrine +Kimberley +Liana +Libby +Loralee +Lorie +Louisa +Mardell +Mariana +Mariann +Marleen +Marti +Maryjo +Megan +Melodee +Merilee +Merlene +Merrie +Merrily +Monique +Nadene +Nancie +Ora +Patsie +Patt +Refugio +Reva +Rickie +Robbin +Ronald +Roseanne +Sammie +Shelby +Sherian +Sheridan +Shiela +Sophie +Stacey +Suzanna +Sybil +Teddy +Tillie +Velda +Velia +Wendie +Winona +Addie +Adelita +Adriana +Aleda +Alene +Artie +Barrie +Beckie +Belia +Bethany +Bobby +Bobbye +Bunnie +Bunny +Cara +Carmela +Carolann +Caroll +Carolynne +Cathrine +Cecily +Charlesetta +Chere +Chloe +Christeen +Christopher +Clarissa +Collette +Conchita +Cristine +Dalene +Darlyn +Deetta +Delois +Donald +Dorinda +Dovie +Drena +Dusty +Earnestine +Elana +Elenor +Ellyn +Elouise +Erika +Essie +Florine +Freida +Garnet +Gary +Georganne +Georgeann +Ginny +Glennda +Glennis +Goldie +Greta +Guillermina +Harlene +Honey +Jacquelynn +Jade +Jayme +Jeane +Jeanene +Jerlene +Jodi +Jonell +Jonni +Judee +Justina +Kari +Karma +Karyl +Katheleen +Kathlene +Katrina +Kendra +Kittie +Larrie +Lauri +Lenny +Lina +Lindsay +Lita +Liz +Loni +Lorretta +Lottie +Lucrecia +Lurline +Lyda +Lynnda +Lynnea +Mandy +Margarette +Marge +Maribeth +Marjory +Marlena +Marnie +Marquita +Maryellen +Maryjane +Maura +Mercie +Michaelyn +Mickie +Mike +Nance +Nell +Nena +Olive +Oma +Ona +Ophelia +Paige +Paul +Peg +Phillis +Phoebe +Portia +Ranae +Rhona +Rilla +Rosalyn +Roxann +Selma +Serena +Sharleen +Sharlyn +Shellie +Sherrilyn +Sheryn +Shirlene +Simone +Sofia +Stephen +Stephenie +Susannah +Tamra +Tena +Teresita +Toby +Tomi +Trisha +Twyla +Valentina +Willow +Zelda +Linda +Mary +Patricia +Susan +Barbara +Sharon +Carol +Sandra +Nancy +Kathleen +Donna +Karen +Judy +Pamela +Diane +Judith +Margaret +Janet +Cheryl +Carolyn +Janice +Christine +Shirley +Gloria +Marilyn +Cynthia +Virginia +Joyce +Diana +Beverly +Elizabeth +Kathy +Bonnie +Betty +Joan +Gail +Catherine +Dorothy +Martha +Frances +Lynda +Suzanne +Maria +Connie +Kathryn +Paula +Ann +Peggy +Helen +Laura +Alice +Jean +Lynn +Phyllis +Jane +Jo +Sally +Katherine +Darlene +Brenda +Sue +Joanne +Cathy +Marsha +Sherry +Deborah +Vicki +Julie +Sheila +Dolores +Ruth +Irene +Rose +Roberta +Elaine +Yolanda +Marie +Victoria +Janis +Rebecca +Claudia +Jeanne +Terry +Sylvia +Teresa +Rita +Anita +Jacqueline +Charlene +Ellen +Charlotte +Carole +Norma +Yvonne +Toni +Leslie +Pat +Theresa +Gayle +Louise +Evelyn +Michele +Rosemary +Lorraine +Penny +Marcia +Christina +Marjorie +Maureen +Anne +Dianne +Loretta +Valerie +Denise +Stephanie +Marlene +Geraldine +Lois +Wanda +Doris +Anna +Andrea +Juanita +Glenda +Joann +Esther +Eileen +Carmen +Constance +Jeanette +Jill +Robin +Jan +Lynne +Georgia +Patsy +Lydia +Jennifer +Josephine +Vivian +Jackie +Kay +Annette +Rachel +Sheryl +Sandy +Cecilia +Vickie +Michelle +Arlene +Julia +June +Carla +Cindy +Joy +Priscilla +Margie +Wendy +Colleen +Gwendolyn +Terri +Renee +Melinda +Olivia +Pauline +Eleanor +Laurie +Kristine +Lillian +Lupe +Stella +Ramona +Candace +Delores +Paulette +Sarah +Rosalie +Dianna +Laurel +Marian +Cheri +Lana +Lucille +Grace +Billie +Rosie +Jeannie +Melody +Eva +Edith +Candy +Ruby +Caroline +Cathleen +Rosa +Pam +Jacquelyn +Jeannette +Deanna +Angela +Penelope +Marianne +Chris +Marion +Emily +Dawn +Janie +Lucy +Tina +Beatrice +Becky +Edna +Maxine +Sara +Trudy +Lee +Claire +Patty +Jessie +Lynette +Patti +Antoinette +Gale +Guadalupe +Judi +Debbie +Francine +Margarita +Jennie +Kathie +Veronica +Alicia +Audrey +Clara +Mildred +Susie +Vera +Lorna +Sharyn +Sharron +Thelma +Bertha +Ginger +Nora +Dale +Rosemarie +Vicky +Adrienne +April +Bobbie +Holly +Florence +Maryann +Cecelia +Gay +Susanne +Gwen +Margo +Wilma +Emma +Karin +Robyn +Teri +Irma +Jeri +Saundra +Dana +Madeline +Bernice +Dixie +Doreen +Nina +Sherri +Beth +Isabel +Debra +Sherrie +Dora +Ethel +Marguerite +Nadine +Cherie +Harriet +Regina +Candice +Joanna +Lucinda +Melanie +Rhonda +Sheri +Dona +Leona +Lisa +Olga +Sandi +Kim +Kristin +Christy +Della +Ella +Angelina +Angie +Bette +Ida +Verna +Celia +Faye +Tanya +Bernadette +Josie +Noreen +Velma +Alma +Marilynn +Ana +Bonita +Erlinda +Jenny +Jessica +Marla +Cathie +Claudette +Hazel +Janette +Molly +Myra +Naomi +Lauren +Monica +Aleta +Annie +Gladys +Janine +Jayne +Rochelle +Antonia +Delia +Beverley +Consuelo +Dee +Genevieve +Rosalind +Terrie +Eloise +Esperanza +Gretchen +Laverne +Nellie +Sonja +Tamara +Aurora +Cathryn +Elena +Jeanie +Marcella +Rosalinda +Cheryle +Christie +Mona +Rae +Katharine +Shannon +Socorro +Ernestine +Helene +Meredith +Nanci +Roxanne +Alana +Charleen +Elsie +Judie +Kristen +Lenore +Myrna +Suzette +Amelia +Carrie +Estella +Kimberly +Pearl +Sondra +Alberta +Darla +Diann +Heidi +Hilda +Jody +Kitty +Suzan +Violet +Betsy +Cora +Corinne +Glenna +Henrietta +Karyn +Natalie +Shari +Sonia +Therese +Adele +Alison +Celeste +Eunice +Flora +Inez +Jeannine +Jerry +Karla +Kris +Leah +Lola +Lora +Muriel +Viola +Caren +Carlene +Kathi +Katie +Lenora +Lorene +Luana +Lyn +Marilee +Miriam +Shelley +Earlene +Geneva +Gilda +Gina +Hope +Lesley +Sharlene +Sydney +Aileen +Amy +Crystal +Erma +Gertrude +Ilene +Ingrid +Lillie +Melissa +Nicki +Adela +Alexis +Deana +Elva +Lori +Nikki +Raquel +Ronda +Sherrill +Sherryl +Arleen +Belinda +Camille +Carroll +Darleen +Elvira +Heather +Jacklyn +Jeanine +Kerry +Leanne +Merry +Winifred +Alexandra +Freda +Jerilyn +Johnnie +Lavonne +Lou +Marylou +Nita +Willie +Armida +Carolynn +Cassandra +Elisabeth +Frankie +Geri +Iris +Johanna +Margery +Mercedes +Ofelia +Pamala +Rena +Adeline +Carrol +Dorene +Jerri +Jewel +Karon +Lynnette +Marina +Michael +Nona +Pamella +Rene +Sharen +Sidney +Carolina +Deloris +Dena +Jolene +Kristina +Laraine +Melva +Tracy +Yvette +Alyce +Cristina +Dolly +Edwina +Fern +Lani +Lena +Lila +Lucia +Marta +Melba +Sallie +Cherryl +Clare +Denice +Elsa +Gaylene +Georgette +Georgina +Graciela +Ina +Jamie +Josefina +Kathlyn +Kaye +Loraine +Lura +Myrtle +Nola +Patrice +Pennie +Trudi +Ada +Amanda +Arline +Bernadine +Clarice +Corrine +Danielle +Elise +Estelle +Fay +Gaye +Janelle +Karol +Kristy +Lily +May +Mickey +Norene +Shelia +Sherron +Agnes +Allison +Colette +Debby +Dian +Dorothea +Jerrie +Julianne +Leslee +Luz +Magdalena +Mari +Melodie +Nanette +Nelda +Rosalyn +Rosario +Roxanna +Sandie +Bettie +Candi +Carmelita +Charla +Cherry +Dinah +Ernestina +Evangelina +Faith +Gerrie +Gerry +Hortencia +Jana +Lorena +Madeleine +Marva +Mercy +Petra +Polly +Rachelle +Richard +Silvia +Amparo +Blanca +Carleen +Coleen +Danna +Deidre +Elinor +Elisa +Eugenia +Eve +Harriett +Jewell +Karolyn +Ladonna +Leticia +Lonna +Luanne +Mae +Marcy +Marleen +Maryanne +Mattie +Melodee +Ophelia +Rachael +Randy +Reba +Robert +Shirlee +Suzy +Velda +Angelita +Ava +Bridget +Candyce +Carolee +Caryl +Cecile +Charmaine +Cheryll +Cornelia +Daryl +Erica +Erin +Fran +Georgene +John +Karan +Lauretta +Leilani +Loreen +Lorie +Mable +Marianna +Merrie +Merrilee +Minnie +Neva +Noel +Opal +Rosanne +Sherilyn +Sheron +Shiela +Susanna +Tammy +Bessie +Bettye +Carlotta +Caryn +Cathi +Claudine +Cleo +Concepcion +Corliss +Dayle +Emilia +Evangeline +Francisca +Genie +Gerri +Ginny +Helena +Ila +Isabelle +Jimmie +Joellen +Juliet +Kendra +Lela +Letha +Lidia +Liz +Maggie +Margot +Marietta +Marna +Mollie +Nickie +Ola +Rhoda +Roslyn +Roxie +Shelly +Sherril +Suzie +Theodora +Adrianne +Allene +Ardith +Belen +Blanche +Candis +Cara +Catalina +Cherrie +Cinda +Cleta +Darline +Elma +Erika +Frieda +Gene +Herlinda +Joella +Joni +Juliette +Katheryn +Leila +Leora +Leta +Lilia +Lonnie +Louella +Louisa +Lourdes +Manuela +Marlyn +Maryellen +Merle +Mimi +Nancie +Peggie +Randi +Robbie +Ronna +Ronnie +Roseann +Sharleen +Sheryle +Sophia +Suzanna +Toby +Valorie +Veda +Willa +Winona +Aida +Alta +Amber +Andra +Benita +Cassie +Charline +Christi +Clarissa +Darcy +Deena +Deirdre +Dina +Dorinda +Earline +Elayne +Elyse +Etta +Eula +Freddie +Georgiana +Georgianna +Gracie +James +Janell +Jannette +Jonnie +Juana +Kandi +Kathrine +Kristi +Laureen +Lilly +Lorine +Luisa +Lynnda +Mabel +Madelyn +Mariann +Marlys +Maurine +Mavis +Nan +Nannette +Nedra +Patrica +Reta +Rory +Rosella +Rosita +Roxann +Sharyl +Valarie +Vickey +Vilma +Wendie +Alexa +Bari +Belva +Beverlee +Brooke +Camilla +Carmel +Carolyne +Catharine +Christopher +Collette +Dawna +Deanne +Debora +Dede +Deidra +Delfina +Delois +Dorthy +Eloisa +Ester +Felicia +Francesca +Francis +Georganne +Goldie +Ilona +Isabell +Iva +Jacquelin +Janene +Jodie +Johnetta +Kathaleen +Kathleene +Kathlene +Kelly +Lessie +Lindsay +Lita +Loralee +Lorelei +Luann +Margret +Marjory +Marti +Marybeth +Marylin +Marylyn +Merilee +Merilyn +Michaele +Michal +Millie +Nell +Nettie +Portia +Randee +Raylene +Ricki +Rosalee +Roseanne +Ruthie +Sammie +Shirlene +Star +Sybil +Tommie +Twyla +Vada +Vikki +Zella +Adrian +Alene +Aletha +Alida +Allyson +Annetta +Aurelia +Beatriz +Berta +Bonny +Caron +Charlyn +Cherri +Coralee +Cristine +Cruz +Daphne +David +Debrah +Diedre +Donnie +Elna +Elvia +Estela +Gayla +Glynda +Hillary +Hollis +Ivy +Jacquelynn +Jacquie +Janeen +Janey +Joseph +Jovita +Kaaren +Kandy +Karel +Katy +Lavon +Leigh +Linnea +Lizabeth +Lolita +Lona +Luella +Madelon +Malinda +Mara +Marcie +Maribeth +Maryjane +Micaela +Michel +Mickie +Mignon +Nancee +Nena +Nicole +Pauletta +Rebeca +Retha +Rhea +Rosanna +Sandee +Shanna +Sharan +Sharlyn +Sunny +Suzi +Terese +Twila +Velia +Velva +Winnie +Zoe +Alva +Angelica +Annabelle +Artie +Barbra +Bennie +Bertie +Bev +Bunny +Cameron +Cathey +Cathrine +Cherilyn +Corine +Daisy +Dara +Daria +Delora +Dennis +Devon +Dottie +Dyanne +Eda +Edward +Edythe +Effie +Elana +Evalyn +Evonne +Gabrielle +Glinda +Greta +Jacalyn +Jacki +Jaclyn +Jacque +Janna +Jeanetta +Jerrilyn +Joe +Jonell +Jose +Josette +Judee +Karlene +Kimberley +Kirsten +Kristie +Lawana +Lawanna +Leana +Leanna +Leola +Leota +Letitia +Liana +Lucina +Lula +Marcene +Margene +Marilou +Marilynne +Marolyn +Marty +Marylynn +Merrilyn +Minerva +Monique +Niki +Noelle +Ollie +Oralia +Pattie +Phillis +Raelene +Randall +Rebekah +Reva +Rise +Robbin +Romelia +Rosetta +Rosslyn +Sadie +Sheridan +Sherlyn +Sheryll +Sheryn +Signe +Simone +Sonya +Stacey +Stacy +Susana +Tana +Tania +Theda +Tillie +Tonia +Trinidad +Trudie +Val +Verda +Vesta +Viki +Abigail +Alaina +Alanna +Alejandra +Alfreda +Amalia +Andre +Angeline +Anitra +Antionette +Ardis +Ascencion +Asenath +Avis +Bea +Becki +Bedelia +Beryl +Betti +Bettina +Beulah +Bobbi +Bobby +Bobette +Bronwyn +Carmela +Caroll +Charlette +Christene +Conception +Concha +Darlyne +Dayna +Deedee +Delene +Delilah +Delma +Donetta +Donnalee +Doreene +Dorine +Dorris +Drucilla +Eddie +Eleanore +Elissa +Emilie +Enedina +Fredericka +Freida +Gaile +Gary +Gena +Georgie +Glee +Gwenn +Gwyn +Hannah +Harlene +Harriette +Hattie +Hermelinda +Hilary +Hortensia +Jacquelyne +Jacqulyn +Janyce +Jeana +Jeane +Jeanene +Jeffrey +Jere +Joelle +Joetta +Joleen +Jorja +Joycelyn +Juliana +Juliann +Keri +Kevin +Kit +Kittie +Lanita +Lauri +Lea +Leeann +Lezlie +Lilah +Lina +Lindsey +Lindy +Lorinda +Lorretta +Lottie +Luanna +Lucretia +Lynell +Mamie +Marcelina +Mardell +Maren +Margarette +Marge +Mariana +Mariellen +Marlane +Marlena +Martina +Marvis +Maryjo +Marylouise +Matilda +Meg +Merrily +Michaela +Michiko +Natasha +Nicola +Ora +Paige +Penni +Phylis +Raye +Rickie +Rolinda +Rosalia +Rosamond +Roselinda +Roxana +Roxane +Selena +Selma +Serena +Sheran +Sherian +Shireen +Sigrid +Starla +Suzann +Tamera +Tamra +Teddie +Teddy +Teena +Tena +Thea +Thora +Tomi +Tonya +Trina +Valentina +Verla +Vida +Vivien +Wilda +William +Zandra +Zora +Linda +Mary +Susan +Patricia +Barbara +Kathleen +Sandra +Nancy +Carol +Sharon +Karen +Donna +Pamela +Judy +Diane +Margaret +Judith +Christine +Cheryl +Janet +Cynthia +Carolyn +Janice +Gloria +Shirley +Marilyn +Diana +Elizabeth +Deborah +Catherine +Virginia +Kathy +Joyce +Betty +Beverly +Bonnie +Joan +Maria +Martha +Kathryn +Peggy +Cathy +Brenda +Paula +Frances +Helen +Gail +Laura +Katherine +Victoria +Ann +Lynn +Suzanne +Connie +Lynda +Alice +Vicki +Ruth +Dorothy +Rebecca +Phyllis +Teresa +Theresa +Sally +Marsha +Jacqueline +Jo +Jean +Marie +Joanne +Jane +Rose +Darlene +Julie +Sherry +Yolanda +Irene +Elaine +Claudia +Sue +Rita +Sylvia +Anita +Roberta +Dolores +Sheila +Marcia +Stephanie +Carole +Janis +Charlene +Leslie +Jeanne +Yvonne +Norma +Terry +Charlotte +Maureen +Denise +Valerie +Rosemary +Ellen +Lorraine +Evelyn +Robin +Anna +Christina +Gayle +Anne +Toni +Carmen +Andrea +Dianne +Michele +Loretta +Constance +Esther +Marlene +Wanda +Penny +Joann +Jeanette +Jill +Wendy +Marjorie +Vivian +Geraldine +Juanita +Louise +Lois +Doris +Colleen +Lydia +Josephine +Vickie +Pat +Glenda +Kristine +Carla +Arlene +Eileen +Jennifer +Candace +Michelle +Georgia +Gwendolyn +June +Rachel +Melinda +Kay +Renee +Lynne +Sheryl +Annette +Laurie +Paulette +Priscilla +Julia +Terri +Jan +Cecilia +Patsy +Sarah +Cathleen +Margie +Eleanor +Olivia +Regina +Jackie +Jacquelyn +Cindy +Lupe +Rosalie +Pauline +Sandy +Eva +Joy +Guadalupe +Lillian +Melanie +Ramona +Stella +Rosa +Edith +Dianna +Rosie +Grace +Ruby +Candice +Angela +Lucille +Delores +Jeannette +Marian +Antoinette +Debra +Lana +Marianne +Debbie +Lynette +Laurel +Lucy +Melody +Penelope +Sara +Chris +Deanna +Jeannie +Janie +Beatrice +Margarita +Audrey +Becky +Caroline +Florence +Cecelia +Doreen +Maxine +Tina +Dawn +Robyn +Cheri +Emily +Shelley +Wilma +Billie +Dana +Jennie +Pam +Alicia +Nora +Irma +Patty +Rhonda +Vera +Bertha +Candy +Madeline +Isabel +Lee +Nina +Melissa +Lucinda +Trudy +Vicky +Dora +Veronica +Lisa +Marion +Cherie +Olga +Beth +Patti +Saundra +Teri +Judi +Kathie +Susie +Jessie +Dixie +Edna +Emma +Rosemarie +Bobbie +Leona +Dale +Maryann +Sharron +Jenny +Adrienne +Monica +Erlinda +Ethel +Myrna +Clara +Mildred +Gale +Gretchen +Angie +Ginger +Kristin +Claire +Francine +Holly +Karin +Marguerite +Delia +Kimberly +Nadine +April +Myra +Sheri +Jeri +Molly +Antonia +Bette +Celia +Heidi +Lauren +Rochelle +Elena +Margo +Sherrie +Gwen +Kerry +Nellie +Terrie +Bernice +Christie +Dona +Ida +Janette +Susanne +Tanya +Adele +Ana +Annie +Carrie +Della +Gina +Pearl +Thelma +Hazel +Jessica +Katharine +Rosalind +Cathie +Esperanza +Genevieve +Gladys +Iris +Joanna +Ella +Faye +Jamie +Kristina +Lori +Lorna +Sharyn +Sherri +Velma +Alberta +Belinda +Bonita +Consuelo +Kim +Suzan +Alma +Bernadette +Beverley +Marcella +Natalie +Alison +Amelia +Christy +Claudette +Glenna +Jeanie +Karyn +Leah +Lenore +Lola +Noreen +Alana +Estella +Harriet +Janine +Jerry +Shari +Tamara +Verna +Helene +Jayne +Karla +Lena +Rosalinda +Roxanne +Sondra +Cathryn +Ernestine +Jacklyn +Jana +Marla +Miriam +Therese +Angelina +Eloise +Rae +Kris +Naomi +Cheryle +Cora +Hope +Lora +Marina +Sandi +Dee +Gay +Henrietta +Ilene +May +Merry +Mona +Amy +Camille +Caren +Darla +Elsie +Corinne +Kathi +Kristen +Nikki +Viola +Betsy +Cassandra +Flora +Georgette +Janelle +Jolene +Laverne +Lorene +Rena +Socorro +Aleta +Crystal +Elvira +Hilda +Josie +Karol +Lani +Lavonne +Madelyn +Mari +Susanna +Adela +Heather +Lyn +Nanci +Raquel +Sherrill +Sydney +Carlene +Charleen +Coleen +Edwina +Elisa +Ladonna +Lesley +Lillie +Marilynn +Muriel +Randy +Sharlene +Armida +Aurora +Frankie +Inez +Jeanine +Kitty +Luana +Ronda +Shannon +Willie +Alexis +Cristina +Deidre +Dena +Eunice +Gaye +Ingrid +Jeannine +Lila +Mae +Marta +Nanette +Nita +Violet +Yvette +Alyce +Debby +Dolly +Elise +Elvia +Geneva +Lily +Lou +Ofelia +Sonia +Suzette +Darleen +Diann +Earlene +Erma +Gertrude +Jody +Meredith +Mimi +Nelda +Shelia +Sonja +Tracy +Amanda +Carolynn +Cherry +Gilda +Graciela +Johanna +Johnnie +Judie +Julianne +Katie +Linnea +Lynnette +Marilee +Nan +Patrice +Silvia +Valarie +Arleen +Deana +Estelle +Etta +Gerry +Herlinda +Kathrine +Leticia +Loraine +Madeleine +Marietta +Marylou +Melba +Mickey +Petra +Sallie +Sherryl +Ada +Carlotta +Dian +Dorothea +Georgina +Greta +Janna +Juliana +Karon +Kaye +Kristi +Kristie +Lucia +Manuela +Margery +Polly +Ronna +Sharen +Agnes +Barbra +Bernadine +Caryl +Celeste +Eugenia +Gayla +Jerrie +Kelly +Mercedes +Merrilee +Susana +Winifred +Aileen +Carleen +Carolee +Caryn +Clarice +Corrine +Danielle +Deirdre +Dinah +Dorene +Elva +Francis +Francisca +Jewel +Jimmie +Josefina +Laurene +Lonnie +Magdalena +Margot +Maurine +Michael +Mollie +Rene +Shelly +Shirleen +Trudi +Adeline +Alta +Beatriz +Benita +Blanca +Charmaine +Corliss +Deedee +Elsa +Fay +Gracie +Jerilyn +Lela +Lilia +Lorrie +Luella +Malinda +Marva +Melva +Millie +Nicki +Peggie +Pennie +Randi +Rhoda +Roxie +Sandie +Sharleen +Alexandra +Annabelle +Antonette +Ava +Carrol +Carroll +Cassie +Debora +Deena +Denice +Estela +Faith +Fern +Geri +Hortencia +Jerri +Karan +Leanne +Lenora +Lucretia +Marcy +Mercy +Nola +Pamala +Rosanne +Roxana +Tammy +Toby +Willa +Arline +Bessie +Daphne +Deloris +Erica +Freda +Hilary +Kathlyn +Kendra +Lea +Leigh +Leilani +Lorena +Luz +Margret +Maryanne +Maryellen +Neva +Noel +Nona +Roxanna +Sadie +Starr +Vikki +Addie +Allison +Angelita +Bonny +Brooke +Camilla +Carmela +Carolina +Cecile +Clare +Colette +Daria +Deanne +Devon +Dina +Earline +Erin +Eve +Felicia +Fran +Georgiana +Isabelle +Janeen +Janell +Jewell +Leila +Leta +Lidia +Lindsay +Loreen +Lorinda +Maura +Nancie +Nicole +Opal +Ophelia +Reba +Ronnie +Rory +Rosetta +Shawn +Sherilyn +Shirlene +Signe +Sybil +Tommie +Andra +Bridget +Candis +Carmelita +Catalina +Cathrine +Cleo +Dawna +Delfina +Elisabeth +Ernestina +Harriett +Helena +Hillary +Ina +Iva +Jacalyn +James +Janey +Jodie +Juana +Kathe +Katheryn +Kimberley +Lita +Louisa +Marilou +Marleen +Mickie +Minnie +Ora +Rachelle +Reta +Robbie +Rosario +Ruthie +Sharyl +Sherida +Shiela +Shirlee +Sophia +Suzi +Theodora +Tonia +Trudie +Venita +Vonnie +Alene +Bettie +Candi +Cathey +Charla +Cherri +Cherrie +Christi +Clarissa +Claudine +Danna +Darcy +Daryl +Dorthy +Earnestine +Elayne +Elissa +Evangeline +Gerri +Jacquelyne +Joe +Katy +Lavern +Leann +Leslee +Louella +Luanne +Mabel +Maggie +Marci +Marcie +Mariann +Marlys +Marti +Marty +Merle +Nedra +Norene +Odessa +Pattie +Rosalyn +Sonya +Stefanie +Suellen +Suzanna +Suzie +Vanessa +Veda +Velia +Winona +Adella +Adrianne +Aida +Allene +Allyson +Amalia +Angel +Blanche +Cathi +Cinda +Daisy +Dayle +Deberah +Dede +Deidra +Delois +Denyse +Diedre +Edie +Elnora +Elyse +Evangelina +Gaylene +Hollis +Ila +Isabell +Jaclyn +Jocelyn +Jonnie +Juliet +Kandace +Kathaleen +Kathlene +Kristy +Laraine +Letha +Lilly +Lina +Lindsey +Lolita +Lona +Loralee +Luann +Lula +Mamie +Marianna +Marlane +Mattie +Mavis +Melodee +Melodie +Minerva +Myrtle +Nell +Nicola +Nicolette +Portia +Rebeca +Reva +Rhea +Richard +Ricki +Robbin +Robert +Rosalee +Roseann +Roselyn +Roslyn +Sophie +Stephany +Stephenie +Sunny +Suzann +Tana +Terese +Tricia +Trina +Valorie +Wilda +Abigail +Annetta +Antionette +Aurelia +Berta +Bettina +Beverlee +Bobbi +Bobby +Charles +Charline +Cherryl +Chrystal +Collette +Cornelia +Darnell +David +Dortha +Earleen +Eleanore +Eloisa +Emilia +Eula +Evonne +Fannie +Francesca +Gena +Georganne +Georgene +Hannah +Hattie +Jacki +Jacque +Jade +Janene +Janiece +Jodi +Johnna +Joni +Kandy +Karolyn +Karren +Kevin +Laureen +Lauretta +Lennie +Leora +Loni +Lu +Lyndia +Lynell +Mable +Madonna +Mariana +Marjory +Marlena +Marlyn +Marna +Martie +Merilyn +Merrie +Micaela +Millicent +Mina +Nannette +Nettie +Pamella +Rachael +Randee +Roxann +Rozanne +Sandee +Sharie +Sheridan +Sigrid +Stacy +Tonya +Trinidad +Twila +Unknown +Vivien +Adelina +Adriana +Alanna +Alva +Angelica +Angeline +Arcelia +Ardis +Ardith +Belen +Carey +Carmel +Carolann +Caroll +Carolyne +Catharine +Cecily +Charolette +Christeen +Coralee +Danette +Darline +Dayna +Deann +Debrah +Dollie +Elinor +Ellyn +Elma +Erlene +Eugenie +Evon +Felipa +Gaylen +Gene +Georgann +Georgeanna +Glynda +Goldie +Gwendolynn +Hallie +Herminia +Jacquelin +Jann +Janyce +Jerrilyn +Joelle +Joetta +Joleen +Kandi +Karleen +Karlene +Larry +Lawanna +Lelia +Leola +Lindy +Lonna +Loree +Lorelei +Lorie +Lottie +Louann +Luisa +Lynnda +Madge +Marcelina +Marlee +Marybeth +Marylyn +Marylynn +Merilee +Merlene +Merrily +Michaela +Michaele +Mitzi +Noelle +Odette +Ola +Ollie +Prudence +Retha +Rickie +Rosina +Rosita +Rowena +Salli +Sharlyn +Sheron +Sherril +Sherrilyn +Sherron +Thomas +Tillie +Tomasa +Treva +Vana +Velda +Viki +Wendie +William +Zelma +Adelaida +Alexa +Alexia +Andria +Arlinda +Arnetta +Babette +Bebe +Beryl +Bethany +Betti +Bettye +Bobette +Callie +Candyce +Cara +Carin +Caron +Ceceilia +Celine +Charlyn +Cheryll +Concepcion +Concha +Coreen +Cristine +Cristy +Cruz +Dahlia +Debbi +Debbra +Diedra +Doretha +Dorinda +Dorrie +Drusilla +Dyane +Eddie +Edythe +Effie +Felice +Floretta +Francene +Frieda +Gabrielle +Gaynell +George +Georgianna +Germaine +Gigi +Ginny +Glinda +Jacquline +Jannette +Jenifer +Jennette +Jeraldine +Jesus +Jinx +Joellen +John +Jorene +Josefa +Joye +Judee +Kathryne +Kit +Lajuana +Larue +Latricia +Launa +Laverna +Leandra +Leanna +Leonor +Liane +Libby +Lin +Lizabeth +Lizbeth +Loma +Lorretta +Louanna +Luanna +Lyndell +Lynna +Madelon +Manya +Margarite +Marily +Marita +Marlaine +Marlynn +Marquita +Martina +Maryjane +Marylin +Michel +Midge +Nancee +Nena +Nickie +Niki +Patrica +Patt +Phillis +Phoebe +Phylis +Racheal +Raelene +Raye +Rayleen +Romona +Rosaline +Rosann +Rosella +Ruthanne +Sharee +Sharla +Sharol +Shauna +Sheilah +Shelby +Sherian +Stacey +Star +Starla +Suzy +Tania +Tanna +Tara +Teddy +Teresita +Terryl +Thea +Theo +Tisa +Tisha +Tomi +Tona +Tonie +Tracey +Valeria +Valli +Vernell +Zoe +Zoila +Linda +Mary +Susan +Patricia +Kathleen +Barbara +Nancy +Sandra +Sharon +Carol +Karen +Pamela +Donna +Christine +Deborah +Diane +Margaret +Janet +Judith +Cynthia +Judy +Janice +Cheryl +Gloria +Carolyn +Shirley +Elizabeth +Marilyn +Catherine +Kathy +Diana +Virginia +Joyce +Kathryn +Beverly +Brenda +Bonnie +Maria +Laura +Gail +Betty +Joan +Katherine +Peggy +Martha +Rebecca +Victoria +Lynn +Paula +Suzanne +Teresa +Frances +Cathy +Connie +Vicki +Ann +Sally +Theresa +Helen +Alice +Irene +Joanne +Marsha +Ruth +Jane +Dorothy +Rita +Terry +Stephanie +Julie +Jacqueline +Jean +Yolanda +Lynda +Sylvia +Jo +Michele +Phyllis +Sherry +Denise +Elaine +Anita +Darlene +Roberta +Rose +Marie +Christina +Jeanne +Charlene +Claudia +Leslie +Wendy +Valerie +Yvonne +Dolores +Sheila +Ellen +Norma +Marcia +Janis +Constance +Lorraine +Gayle +Charlotte +Rosemary +Anne +Wanda +Sue +Maureen +Carole +Anna +Robin +Jennifer +Evelyn +Carmen +Marlene +Loretta +Esther +Louise +Joann +Debra +Andrea +Dianne +Geraldine +Michelle +Eileen +Laurie +Colleen +Jeanette +Jill +Lydia +Toni +Penny +Lynne +Candace +Josephine +Rachel +Vickie +Vivian +Juanita +Glenda +Lois +Arlene +Terri +Kristine +Marjorie +Melinda +Renee +Sheryl +Jan +Shelley +Carla +Doris +Cindy +Julia +Priscilla +Georgia +Rhonda +Cecilia +Rosalie +Melanie +Gwendolyn +Eleanor +Joy +Angela +Rosa +Cathleen +Annette +Paulette +June +Lupe +Sarah +Lillian +Debbie +Olivia +Patsy +Dianna +Regina +Margie +Pauline +Rosie +Marianne +Caroline +Jackie +Candice +Lynette +Guadalupe +Stella +Melody +Kay +Ramona +Beatrice +Sandy +Eva +Belinda +Laurel +Edith +Lucy +Pat +Jeannette +Melissa +Billie +Jennie +Lana +Lucille +Tina +Becky +Emily +Lisa +Beth +Shari +Jeannie +Sara +Delores +Dana +Florence +Penelope +Bertha +Grace +Teri +Dawn +Deanna +Lucinda +Marian +Nora +Cecelia +Monica +Claire +Francine +Alicia +Lee +Cheri +Irma +Vicky +Antoinette +Doreen +Isabel +Jacquelyn +Robyn +Ruby +Edna +Margarita +Marion +Vera +Audrey +Madeline +Nina +Patti +Janie +Dora +Maryann +Clara +Kimberly +Pam +Veronica +April +Angelina +Bonita +Patty +Jessie +Margo +Maxine +Mildred +Sherrie +Bernadette +Emma +Gale +Ginger +Jeri +Rosemarie +Trudy +Bobbie +Christie +Lori +Cherie +Dixie +Harriet +Holly +Adrienne +Dale +Delia +Lauren +Heidi +Marguerite +Nadine +Sherri +Susanne +Janette +Kerry +Lorna +Marcella +Rochelle +Adele +Gay +Verna +Candy +Cathryn +Jessica +Wilma +Natalie +Sharron +Alma +Naomi +Tamara +Bernice +Elena +Gretchen +Thelma +Ida +Kim +Saundra +Ana +Consuelo +Cora +Ella +Gwen +Jenny +Kristina +Olga +Angie +Annie +Carrie +Chris +Christy +Dee +Dona +Leona +Nellie +Susie +Bette +Erlinda +Faye +Gladys +Kathie +Kristin +Sheri +Alison +Antonia +Celeste +Ernestine +Noreen +Rosalinda +Amelia +Ilene +Iris +Jeanie +Joanna +Celia +Estella +Ethel +Lola +Glenna +Karin +Katharine +Meredith +Miriam +Molly +Amy +Corinne +Eloise +Erma +Hazel +Jayne +Terrie +Karla +Lora +Jamie +Jeannine +Judi +Marina +Claudette +Darla +Lesley +Marla +Marta +Mona +Shannon +Rae +Armida +Jerry +Kristi +Leah +Myrna +Nikki +Pearl +Sharyn +Tanya +Violet +Genevieve +Heather +Myra +Sonja +Suzan +Therese +Velma +Aurora +Carlene +Cassandra +Cathie +Georgette +Gina +Hilda +Hope +Jerri +Laverne +Alana +Camille +Henrietta +Josie +Lillie +Lyn +Rene +Esperanza +Lynnette +Nanci +Sandi +Winifred +Betsy +Della +Jana +Ofelia +Rena +Rosalind +Sondra +Sonia +Suzette +Valarie +Alberta +Juana +Kelly +Magdalena +Randy +Roxanne +Sydney +Tracy +Caren +Cheryle +Debby +Elvira +Flora +Janine +Johnnie +Kitty +Lavonne +Lenore +Ronda +Sharlene +Shelly +Socorro +Viola +Beverley +Daphne +Ingrid +Jacklyn +Jeanine +Jolene +Kristen +Marilee +Alexis +Blanca +Carolynn +Cristina +Crystal +Fay +Leanne +Lorene +May +Rosario +Sherrill +Agnes +Darleen +Elsie +Lucia +Mari +Merry +Nanette +Bessie +Caryn +Coleen +Diann +Dorene +Earlene +Estela +Jody +Johanna +John +Madelyn +Muriel +Sallie +Blanche +Cecile +Charleen +Dena +Dorothea +Etta +Evangelina +Georgene +Helene +Janelle +Kaye +Lena +Lenora +Lorrie +Lou +Melva +Michael +Polly +Yvette +Carleen +Cristine +Denice +Evangeline +Frankie +Karyn +Katheryn +Katie +Letitia +Lila +Loraine +Lorena +Marilynn +Melodie +Nan +Ada +Barbra +Bettie +Elsa +Estelle +Eugenia +Georgina +Gerry +Gertrude +Graciela +Judie +Leilani +Marylou +Mickey +Nona +Sharen +Amanda +Cathrine +Daryl +Deena +Deidre +Geneva +Herlinda +Julianne +Kathrine +Kimberley +Lela +Lindsay +Mae +Maryanne +Neva +Nola +Patrice +Peggie +Shelia +Silvia +Adela +Adeline +Aleta +Allison +Bridget +Candyce +Carolina +Cherry +Concepcion +Elisa +Elise +Geri +Gilda +Helena +Hortencia +Josefina +Kathi +Kathlene +Kris +Ladonna +Melba +Roxanna +Stacy +Willie +Aileen +Alyce +Ava +Brooke +Carmelita +Catalina +Charmaine +Eunice +Gaye +Jacque +Kristie +Leigh +Lidia +Linnea +Luana +Marcy +Margery +Millie +Pamala +Randi +Reba +Ronnie +Susana +Althea +Benita +Camilla +Carolee +Catharine +Deloris +Francisca +Inez +Juliana +Kathlyn +Leticia +Lonnie +Madeleine +Marva +Maryellen +Merrilee +Mickie +Minnie +Nancie +Robert +Susanna +Vikki +Winona +Adrianne +Aida +Alexandra +Alta +Alva +Beatriz +Beryl +Caryl +Charla +Clarice +Claudine +Darcy +Deedee +Elva +Freda +Gayla +Gracie +James +Janene +Karol +Lark +Laureen +Lea +Leila +Lily +Lindy +Lorie +Manuela +Marlys +Mollie +Norene +Ophelia +Patrica +Pennie +Petra +Raylene +Rhoda +Robbie +Ronna +Rosalyn +Rosita +Roxie +Sharyl +Wendi +Alene +Carrol +Corrine +Danielle +Darline +David +Debora +Dinah +Dolly +Erika +Faith +Francesca +Ina +Janell +Janyce +Juliette +Lani +Laraine +Leanna +Lindsey +Louisa +Luanne +Mabel +Michal +Nannette +Nicki +Nita +Rachael +Rachelle +Randee +Rory +Roseann +Roseanne +Sherryl +Sidney +Suzann +Trina +Candis +Carmela +Clare +Daisy +Edwina +Elinor +Elvia +Erin +Ernestina +Harriett +Hilary +Jewel +Juliet +Karon +Letha +Lorelei +Maurine +Mercedes +Pamella +Portia +Rosalina +Roseanna +Rosetta +Ruthie +Sandee +Shirlee +Stacey +Tana +Trudi +Valorie +Amber +Antonette +Arline +Belen +Carroll +Cassie +Cherrie +Cheryll +Christene +Colette +Deann +Deanne +Eddie +Freida +Frieda +Georgetta +Janna +Jenifer +Jodi +Jodie +Karan +Laurene +Leslye +Lilia +Lilly +Lorinda +Lory +Louella +Marcie +Margot +Marleen +Marti +Mimi +Mitzi +Nedra +Raquel +Rosanne +Shawn +Sheron +Tammy +Willa +Abigail +Alida +Bettye +Bobbi +Carlotta +Cecily +Christi +Collette +Delfina +Delinda +Dorinda +Elisabeth +Felicia +Fern +Fran +Gemma +Gene +Janey +Jerilyn +Jimmie +Jocelyn +Joellen +Jonnie +Justine +Kathyrn +Katrina +Kristy +Lizabeth +Lona +Loree +Luz +Margret +Merlene +Nicole +Noel +Opal +Ora +Pauletta +Rhea +Rosalee +Roslyn +Selma +Shauna +Sonya +Terese +Tonya +Trinidad +Twila +Unknown +Vickey +Vonda +Winnie +Aletha +Amparo +Angelita +Ardith +Arleen +Bennie +Bernadine +Beverlee +Bonni +Cathi +Charles +Cherri +Christa +Christeen +Clarissa +Cleo +Cruz +Danelle +Danna +Deana +Deirdre +Donald +Dorthy +Ester +Georganne +Greta +Hollis +Ilona +Jacquline +Jerrilyn +Joleen +Kathern +Krista +Lanette +Lauretta +Leonor +Lisbeth +Lita +Loreen +Lura +Lynelle +Malinda +Marcelina +Marty +Marylyn +Matilda +Megan +Melodee +Mercy +Merrily +Michaele +Minerva +Paige +Richard +Rosalia +Rowena +Roxy +Sharilyn +Sherida +Sherilyn +Sheryll +Suellen +Tara +Tommie +Adrian +Annetta +Cara +Carmel +Carmella +Carolann +Dayle +Debera +Dian +Edythe +Elyse +Emilie +Erica +Eula +Evonne +Florine +Francis +Freddie +Gabrielle +Gaylene +George +Iva +Janeen +Jannette +Jannie +Jeraldine +Johnette +Kate +Kathaleen +Larry +Lauri +Lavern +Leann +Liane +Lourdes +Luella +Lynnda +Mardi +Marianna +Marietta +Maryjo +Marylee +Merle +Micaela +Millicent +Myrtle +Nicola +Niki +Phillis +Rebekah +Renae +Reta +Retha +Ricki +Rickie +Roxana +Sharleen +Sharman +Sharol +Shiela +Signe +Sophie +Stefanie +Tamra +Theodora +Toby +Twyla +Velia +Vida +William +Addie +Adelina +Alexandria +Alfreda +Alyson +Andree +Annabelle +Arlinda +Beckie +Berta +Bettina +Bobbe +Brandy +Candi +Carolyne +Carolynne +Caron +Cathlene +Celestine +Charlyne +Cleta +Cordelia +Corine +Dagmar +Dara +Dawna +Earleen +Earline +Eilene +Eleanore +Elouise +Ermelinda +Erna +Francene +Gena +Georgiana +Georgianna +Ginny +Guillermina +Gwenda +Hattie +Helaine +Hillary +Hortensia +Isabelle +Ivy +Jacquelin +Janise +Jerrie +Joe +Joni +Jonna +Josette +Juliann +Julianna +Kandy +Katy +Kendall +Kevin +Laural +Lawanda +Leslee +Leta +Libby +Loyce +Luisa +Lynell +Marci +Maribeth +Marilou +Marlena +Marlyn +Martie +Martina +Marya +Mattie +Michaela +Michel +Monique +Nelda +Nicolette +Noelle +Penni +Phylis +Prudence +Rebeca +Ronald +Rosella +Sandie +Sharan +Sharie +Sherril +Shirlene +Suzanna +Suzi +Tami +Terryl +Thomas +Tillie +Treva +Valeria +Vanessa +Vesta +Vonnie +Wilda +Zenaida +Adelaide +Adelle +Adriana +Allene +Allyson +Alvina +Amalia +Angel +Annabella +Arla +Audra +Babette +Berna +Bethany +Blythe +Bonny +Brigid +Carey +Caroll +Charline +Charlyn +Charolette +Cherryl +Cinda +Clorinda +Conni +Coral +Coralee +Cornelia +Cris +Cyndee +Daria +Dayna +Debbra +Dede +Delilah +Delora +Denna +Dina +Dollie +Donita +Dorine +Drusilla +Elayne +Elissa +Elma +Eloisa +Enedina +Eve +Fatima +Felicitas +Georgeann +Georgianne +Georgine +Gigi +Hallie +Harlene +Hedy +Hermelinda +Imelda +Jacalyn +Jaclyn +Jaime +Janetta +Jann +Jay +Jerene +Jewell +Joellyn +Joetta +Joette +Jonell +Joseph +Jovita +Kandace +Karleen +Karlene +Karolyn +Kathryne +Kirsten +Lajuana +Lanell +Launa +Lauralee +Lavada +Leora +Lina +Linette +Lise +Liza +Loralee +Lorita +Lorretta +Lottie +Luann +Lula +Lupita +Lyndell +Mable +Mallory +Mamie +Maralee +Marcelle +Marcellina +Maren +Margy +Marquita +Maura +Meg +Melvina +Merideth +Merri +Merrie +Meryl +Natalia +Nickie +Norine +Odessa +Oralia +Pattie +Paulina +Phoebe +Pilar +Raelene +Randie +Rea +Regan +Reggie +Retta +Rise +Robbin +Romona +Rona +Rosamaria +Rosanna +Roxann +Sabra +Samantha +Santa +Serena +Sharry +Shelby +Sheree +Sheridan +Sigrid +Sofia +Starr +Stephen +Suzie +Tamera +Tania +Tari +Teena +Teresita +Teressa +Terrell +Tomi +Tonia +Trisha +Val +Valencia +Valery +Velda +Venus +Verla +Vernita +Viki +Virgie +Zelma +Zoe +Linda +Susan +Mary +Patricia +Kathleen +Barbara +Nancy +Sandra +Deborah +Karen +Sharon +Carol +Pamela +Christine +Donna +Diane +Janet +Margaret +Cynthia +Janice +Judith +Cheryl +Elizabeth +Shirley +Gloria +Judy +Carolyn +Catherine +Kathryn +Marilyn +Diana +Kathy +Virginia +Gail +Debra +Joyce +Brenda +Maria +Rebecca +Beverly +Laura +Martha +Katherine +Paula +Joan +Bonnie +Peggy +Victoria +Betty +Denise +Teresa +Theresa +Suzanne +Frances +Sally +Marsha +Ann +Lynn +Vicki +Cathy +Alice +Helen +Sherry +Connie +Jacqueline +Irene +Elaine +Jane +Sylvia +Stephanie +Robin +Jean +Joanne +Rita +Dorothy +Wendy +Julie +Darlene +Rose +Ruth +Jo +Yolanda +Lynda +Marie +Christina +Terry +Yvonne +Marcia +Sheila +Maureen +Phyllis +Jeanne +Michele +Anita +Leslie +Valerie +Lorraine +Roberta +Colleen +Norma +Anne +Ellen +Charlene +Laurie +Evelyn +Charlotte +Claudia +Constance +Michelle +Dolores +Anna +Rosemary +Wanda +Jennifer +Gayle +Marlene +Janis +Carmen +Shelley +Louise +Eileen +Carole +Lynne +Rachel +Loretta +Jill +Sue +Jeanette +Rhonda +Kristine +Renee +Geraldine +Jan +Vickie +Andrea +Cindy +Esther +Glenda +Dianne +Juanita +Candace +Joann +Lois +Gwendolyn +Melinda +Carla +Lisa +Doris +Sheryl +Penny +Marjorie +Arlene +Julia +Terri +Rosa +Toni +Vivian +Cecilia +Annette +Lydia +Priscilla +Sarah +Josephine +Joy +Ramona +Kay +Debbie +Guadalupe +Laurel +Paulette +Lillian +Georgia +Olivia +Rosalie +Melissa +Melanie +Pauline +Eva +June +Mona +Belinda +Jacquelyn +Melody +Margie +Marian +Stella +Candice +Dana +Cathleen +Rosie +Beatrice +Lana +Nora +Dawn +Regina +Angela +Patsy +Alicia +Lupe +Tina +Lucy +Monica +Caroline +Grace +Jeannette +Marianne +Irma +Delores +Dianna +Edith +Antoinette +Jackie +Lucille +Lynette +Teri +Olga +Cheri +Penelope +Jeannie +Marion +Kimberly +Vicky +Audrey +Sara +Becky +Holly +Cecelia +Deanna +Janie +Bertha +Emily +Billie +Dora +Margarita +Trudy +Lucinda +Ruby +Corinne +Francine +Eleanor +Jennie +Marguerite +Marla +Sheri +Isabel +Marta +Patti +Florence +Beth +Rochelle +Veronica +Patrice +Gale +Lorna +Doreen +Nadine +Maxine +Robyn +Angelina +Celia +Margo +Lee +Rosemarie +Ginger +Kim +Shari +Edna +Nina +Sherrie +Sandy +Sherri +Verna +April +Claire +Patty +Vera +Bobbie +Christy +Janette +Kerry +Lora +Pat +Gay +Heidi +Susie +Angie +Bonita +Lauren +Madeline +Dale +Kathie +Cherie +Delia +Naomi +Genevieve +Jenny +Kristin +Susanne +Celeste +Jessie +Nellie +Roxanne +Adrienne +Alma +Clara +Faye +Ida +Ana +Mildred +Sondra +Terrie +Adele +Carrie +Bernadette +Lola +Marcella +Alison +Amelia +Betsy +Elena +Janine +Jeri +Shannon +Thelma +Wilma +Bernice +Candy +Chris +Emma +Ethel +Jamie +Jody +Molly +Shelly +Antonia +Maryann +Tamara +Tanya +Gretchen +Saundra +Karin +Myra +Cassandra +Consuelo +Della +Erlinda +Ernestine +Gladys +Karla +Kristina +Lori +Velma +Amy +Annie +Jessica +Rosalinda +Amanda +Suzan +Therese +Blanca +Dona +Harriet +Jeannine +Rosalind +Suzette +Coleen +Cora +Hazel +Jayne +Pearl +Sonja +Camille +Cheryle +Darla +Debora +Glenna +Hope +Ilene +Karyn +Laverne +Leona +Meredith +Rae +Cathryn +Flora +Heather +Hilda +Iris +Myrna +Rena +Sharron +Christie +Gwen +Kitty +Rene +Sydney +Ella +Eloise +Estella +Joanna +Lynnette +Marina +Mercedes +Nanette +Sonia +Cristina +Crystal +Dee +Jana +Jeanine +Randi +Ronda +Tracy +Althea +Carlene +Elvira +Georgette +Jeanie +Katharine +Leticia +Merry +Pam +Caren +Lorene +Nikki +Roseanna +Susanna +Elsie +Esperanza +Helene +Josefina +Julianne +Kristi +Lucia +Nanci +Natalie +Rosanne +Aurora +Bridget +Dixie +Gilda +Gina +Lena +Lorie +Lyn +Miriam +Noreen +Bette +Henrietta +Jerri +Jolene +Leah +Lily +Marilynn +Silvia +Viola +Violet +Adela +Claudette +Earlene +Elsa +Faith +Fay +Gertrude +Jacque +Judi +Lesley +Melodie +Sharlene +Alberta +Beverley +Charleen +Daphne +Deidre +Dena +Dolly +Eugenia +Hilary +Josie +Kristen +Lenore +Lila +Lindsay +Rosalyn +Susana +Armida +Geri +Kelly +Lillie +Mari +Nola +Rosanna +Willie +Denice +Dorene +Jacklyn +Janelle +Kathlene +Ladonna +Lani +Lorrie +Lou +Luanne +Petra +Shelia +Socorro +Yvette +Adeline +Aleta +Caryl +Caryn +Clarice +Daryl +Debby +Inez +Kristy +Leilani +Magdalena +Marleen +Muriel +Ofelia +Rachael +Randy +Raquel +Rosario +Stacy +Ada +Agnes +Alexis +Benita +Carmelita +Catalina +Cathie +Corrine +Elisa +Frankie +Geneva +Graciela +Jerry +Johnnie +Karon +Kathrine +Mae +Marietta +Michael +Nona +Roseann +Sherryl +Aileen +Allison +Barbra +Brooke +Dian +Erica +Eunice +Helena +Janell +Leigh +Marilee +May +Mickey +Rachelle +Alana +Carolynn +Cecile +Deana +Erin +Erma +Estelle +Georgina +Jodi +Juliana +Katie +Lark +Madeleine +Marty +Nan +Nancie +Ophelia +Pamala +Sallie +Sandi +Sharyn +Alexandra +Arleen +Carmela +Cristine +Deloris +Diann +Edwina +Estela +Evangelina +Evangeline +Johanna +Juana +Karol +Lea +Leanne +Marva +Neva +Nita +Polly +Sherrill +Stacey +Starlene +Trudi +Valorie +Winifred +Alta +Carey +Carolina +Cinda +Deanne +Dorothea +Elise +Elva +Ernestina +Gaye +Gracie +Herlinda +Judie +Katheryn +Kathlyn +Linnea +Lonnie +Madelyn +Manuela +Marcy +Marylou +Nicki +Randee +Rhoda +Roseanne +Sharman +Tana +Trina +Vikki +Blanche +Candis +Carleen +Danielle +Dawna +Deirdre +Dinah +Elyse +Gerry +Hannah +Jerilyn +Kendra +Kyle +Laureen +Lavonne +Leanna +Lenora +Leslee +Letitia +Lorelei +Lorena +Louisa +Melva +Mimi +Myrtle +Nicolette +Pennie +Robert +Roxana +Sharen +Shellie +Sherilyn +Sonya +Suzanna +Tommie +Unknown +Velia +Adrian +Adrianne +Beatriz +Beverlee +Candyce +Charla +Clare +Darleen +Devon +Francisca +Freda +Gayla +Greta +Herminia +Ina +Janeen +Kathi +Leila +Lela +Luana +Luann +Marcie +Margery +Ora +Pamella +Patrica +Reba +Ronnie +Roxanna +Shawn +Shiela +Tara +Valeria +Ava +Belen +Bessie +Bettie +Bobbi +Carlotta +Colette +Francis +Frieda +Gigi +James +Jewel +Kandy +Kate +Katrina +Kaye +Kristie +Leonor +Leta +Lidia +Lilly +Lindsey +Lolita +Lona +Loraine +Luz +Mabel +Maurine +Melba +Micheline +Mindy +Minnie +Nedra +Nicole +Robbie +Ronna +Rory +Rosita +Theodora +Tonya +Adelina +Aida +Angelita +Carroll +Cathrine +Darcy +Debrah +Delilah +Dina +Elma +Felicia +Hattie +Hortencia +Janene +Jann +Juliette +Kandra +Kathaleen +Lauri +Letha +Maryanne +Millie +Niki +Portia +Richard +Rosetta +Sidney +Valarie +Wilhelmina +William +Amalia +Babette +Berta +Beryl +Bonny +Carolee +Catharine +Cathi +Cherry +Clarissa +Collette +Coral +Corliss +Darline +Deann +Debbra +Deena +Elisabeth +Elvia +Etta +Evonne +Gaylene +Georgiana +Hillary +Ingrid +Isabelle +Jodie +John +Joleen +Joni +Kelley +Kimberley +Laraine +Lauretta +Lavon +Leann +Louann +Louella +Malinda +Mara +Margot +Margret +Martina +Mattie +Mickie +Nancee +Nannette +Noel +Norine +Phillis +Raylene +Rebeca +Rebekah +Rosalee +Rosaline +Sharilyn +Sharyl +Sherie +Shirlene +Suzann +Suzie +Sybil +Tammy +Tari +Teena +Teryl +Trinidad +Twila +Vivienne +Wendi +Alfreda +Allyson +Alyce +Amber +Antionette +Antonette +Ardith +Bernadine +Bunny +Carmella +Cecily +Charmaine +Cheryll +Christene +Claudine +Daisy +Danna +Delfina +Dennise +Drucilla +Georgene +Ginny +Iva +Jerrie +Justine +Karan +Kathyrn +Kimberlee +Krista +Lin +Lindy +Lita +Lizabeth +Lory +Luella +Lynelle +Mable +Marci +Maryellen +Marylin +Mavis +Megan +Melodee +Merrie +Millicent +Mollie +Nelda +Peggie +Randie +Renita +Rhea +Ruthie +Shanna +Sharleen +Shelby +Sherlyn +Soledad +Starla +Starr +Stefanie +Terese +Tracey +Trisha +Vernetta +Viki +Vita +Willa +Adriana +Alanna +Aline +Belva +Bethany +Bettye +Camilla +Candi +Carmel +Caron +Catheryn +Charolette +Christi +Cleo +Corina +David +Debera +Dede +Deedee +Donita +Dottie +Elia +Elissa +Emilie +Eve +Gary +Georganne +Georgie +Goldie +Hollis +Jacalyn +Jacqulyn +Janel +Jannette +Jannie +Joanie +Julianna +Kathryne +Katy +Leola +Leslye +Liane +Lida +Lina +Lise +Loreen +Lourdes +Lucie +Marybeth +Mitzi +Nada +Norah +Ona +Ricki +Risa +Rowena +Sandie +Sheree +Sheridan +Sherron +Sheryle +Shirlee +Sophia +Stephany +Suellen +Susann +Tena +Tonie +Twyla +Vanessa +Velda +Vickey +Wendie +Yolonda +Adella +Alvina +Amparo +Annabel +Arline +Bari +Bernita +Cameron +Cara +Carin +Caroll +Carolynne +Carrol +Cathey +Charles +Charlie +Charlyn +Cherilyn +Cherrie +Cherryl +Conchita +Corine +Cruz +Dayle +Deborrah +Deidra +Donelle +Dorcas +Drusilla +Elayne +Elinor +Ellie +Elvera +Emilia +Ester +Florine +Fran +Genie +Georganna +Gerri +Glynda +Harlene +Harriette +Hollie +Imelda +Jacquelin +Jacquline +Jaime +Janyce +Jeane +Jocelyn +Joe +Joelle +Jolie +Joycelyn +Juliann +Kandi +Kandice +Kris +Lane +Lanita +Larae +Laurene +Layne +Lenda +Lennie +Libby +Lilia +Lizbeth +Lorinda +Lorri +Lynell +Madonna +Mamie +Margarite +Mariana +Mariann +Marianna +Marjory +Marlys +Marti +Matilda +Mercy +Nettie +Odette +Pauletta +Randa +Retha +Richelle +Robbin +Roslyn +Selma +Serena +Sherill +Sofia +Sunny +Suzzane +Tamera +Tobi +Treva +Trudie +Valentina +Vallorie +Virgie +Vonda +Vonnie +Winona +Zoe +Adelaide +Adelle +Alba +Alene +Angelica +Annabelle +Ardis +Arla +Aurelia +Avelina +Beckie +Bennie +Bettina +Blanch +Brigid +Candee +Candise +Carlyn +Cherri +Christa +Chrys +Cydney +Darlyn +Diedre +Doretha +Dorine +Dorthy +Douglas +Eddie +Edythe +Effie +Eleanore +Ellyn +Elodia +Enid +Erna +Fabienne +Fern +Francene +Francesca +Frank +Freddie +Gena +Gene +Georgianna +Geralyn +Giovanna +Hortensia +Ila +Ivy +Jacquelyne +Jacquie +Janise +Janna +Jenifer +Jimmie +Joellen +Joetta +Jonnie +Julienne +Katherin +Kathern +Kenneth +Kit +Lanette +Lari +Laure +Lawana +Lawanda +Leonora +Lesa +Lissa +Londa +Loree +Lucretia +Madalyn +Manya +Mardi +Maren +Margene +Marlyn +Marna +Marolyn +Maryjo +Merri +Merrily +Michaela +Midge +Moira +Nickie +Nila +Noelle +Ollie +Opal +Penni +Rona +Roselyn +Roxann +Roxie +Sabra +Sadie +Sandee +Sharla +Shauna +Sheena +Sherida +Sibyl +Signe +Sigrid +Star +Suzi +Tamra +Terrea +Terryl +Thea +Tomasa +Tonia +Trena +Vallerie +Valli +Veda +Verla +Vesta +Vida +Vilma +Winnie +Zelda +Zona +Linda +Patricia +Susan +Mary +Deborah +Kathleen +Karen +Barbara +Nancy +Sandra +Sharon +Christine +Carol +Debra +Pamela +Donna +Diane +Cynthia +Janet +Margaret +Janice +Cheryl +Elizabeth +Catherine +Judith +Judy +Gloria +Denise +Gail +Rebecca +Carolyn +Shirley +Kathryn +Brenda +Katherine +Diana +Marilyn +Victoria +Maria +Teresa +Laura +Virginia +Kathy +Beverly +Joyce +Peggy +Joan +Martha +Bonnie +Paula +Lynn +Betty +Ann +Theresa +Robin +Vicki +Sally +Jacqueline +Irene +Suzanne +Helen +Laurie +Alice +Rose +Julie +Jane +Frances +Rita +Jean +Valerie +Sylvia +Connie +Ruth +Marsha +Cathy +Terry +Dorothy +Joanne +Yolanda +Christina +Elaine +Leslie +Darlene +Sheila +Sherry +Anita +Wendy +Ellen +Marie +Anne +Yvonne +Jo +Phyllis +Marcia +Claudia +Michele +Lorraine +Stephanie +Gayle +Jeanne +Roberta +Jennifer +Anna +Norma +Vickie +Dolores +Colleen +Evelyn +Maureen +Janis +Constance +Lisa +Lynda +Michelle +Charlene +Rhonda +Wanda +Eileen +Rosemary +Shelley +Terri +Jill +Esther +Melinda +Carmen +Marlene +Cindy +Charlotte +Jan +Kristine +Lynne +Jeanette +Renee +Candace +Vivian +Penny +Carla +Glenda +Debbie +Lydia +Toni +Dianne +Loretta +Andrea +Arlene +Rachel +Louise +Carole +Josephine +Marjorie +Joann +Julia +Juanita +Annette +Sue +Georgia +Lois +Geraldine +Gwendolyn +Doris +Joy +Monica +Sarah +Rosa +Sheryl +Regina +Ramona +Kay +Cecilia +Tina +Dawn +Cathleen +Lori +Priscilla +June +Marianne +Stella +Dana +Paulette +Eva +Jackie +Melody +Guadalupe +Antoinette +Alicia +Melissa +Candice +Roxanne +Sara +Melanie +Pauline +Angela +Jacquelyn +Belinda +Laurel +Lynette +Patrice +Eleanor +Nina +Holly +Lillian +Nora +Ruby +Mona +Vicky +Teri +Kimberly +Marian +Jeannette +Rosie +Beatrice +Beth +Bertha +Olivia +Patsy +Rosalie +Gale +Margarita +Irma +Marla +Caroline +Cecelia +Edith +Kerry +Lupe +Lucille +Margie +Robyn +Sheri +Christy +Claire +Dianna +Margo +Sherri +Deanna +Francine +Grace +Jeri +Becky +Lucinda +Veronica +Lucy +Maxine +Cheri +Lorna +Emily +Kim +Patti +Amy +Doreen +Lana +Delores +Karin +Olga +Rosemarie +Audrey +Florence +Jenny +Lee +Marion +Bonita +Janie +Jennie +Madeline +Billie +Dale +Jeannie +Jessie +Edna +Gretchen +Marta +Celia +Heidi +Marguerite +Cherie +Nadine +Sandy +Sherrie +Clara +Penelope +April +Delia +Dora +Ida +Trudy +Debora +Kristin +Mildred +Dixie +Molly +Ana +Kristina +Nanette +Vera +Annie +Patty +Shannon +Therese +Corinne +Hope +Isabel +Janette +Jody +Marcella +Naomi +Bernice +Emma +Jamie +Thelma +Adrienne +Ginger +Janine +Adele +Carrie +Karla +Kathie +Candy +Crystal +Alma +Celeste +Wilma +Amelia +Caren +Maryann +Betsy +Christie +Ethel +Gwen +Shelly +Alison +Darla +Dona +Elena +Gay +Hilda +Jessica +Miriam +Rochelle +Antonia +Bobbie +Della +Eloise +Lyn +Susie +Angelina +Bernadette +Estella +Harriet +Jeanie +Lauren +Ronda +Shari +Susanne +Tamara +Erlinda +Jeannine +Pat +Tanya +Cassandra +Erin +Gina +Hazel +Meredith +Myrna +Natalie +Chris +Glenna +Jerri +Ella +Faith +Kelly +Marilynn +Rosalind +Sonia +Terrie +Allison +Kristi +Leona +Silvia +Sydney +Verna +Gladys +Ofelia +Velma +Benita +Caryn +Cathryn +Consuelo +Dee +Denice +Heather +Janelle +Lola +Lora +Blanca +Elsa +Faye +Jana +Lena +Lesley +Nanci +Nikki +Randi +Rene +Coleen +Ernestine +Genevieve +Iris +Joanna +Kristen +Lorrie +Saundra +Sondra +Armida +Bette +Camille +Ilene +Kris +Leah +Leticia +Nellie +Violet +Angie +Esperanza +Inez +Laverne +Magdalena +Myra +Rae +Sallie +Graciela +Jeanine +Juana +Katharine +Marina +Pearl +Sharron +Beverley +Dena +Elva +Erma +Helene +Lucia +Mari +Tracy +Amanda +Georgette +Lorene +Polly +Yvette +Aurora +Cheryle +Clare +Eve +Henrietta +Kristie +Lily +Lorie +Lynnette +Suzan +Viola +Agnes +Carlene +Josie +Kathrine +Lila +Rosanna +Stacy +Colette +Cristina +Debby +Leanne +Rosanne +Shelia +Sonja +Alana +Arleen +Elvira +Gertrude +Judi +Kristy +Marcy +Marylou +Mercedes +Mimi +Socorro +Aileen +Alberta +Cathie +Charleen +Claudette +Daphne +Diann +Estela +Evangeline +Jerry +Kathi +Lavonne +Mindy +Nona +Pam +Randy +Rena +Sherrill +Sherryl +Suzette +Valarie +Alexis +Alta +Cecile +Cora +Danielle +Darcy +Deloris +Elsie +Freda +Geneva +Jayne +Karyn +Lauri +Lenora +Lillie +Lilly +Lindsay +Melodie +Ophelia +Rosalyn +Roxanna +Shellie +Ava +Carolina +Catalina +Cristine +Elisa +Elisabeth +Elise +Eugenia +Gaye +Georgina +Gilda +Karon +Kaye +Ladonna +Lani +Loraine +Marcie +Marietta +Marva +Michael +Petra +Roseann +Sharlene +Valorie +Vikki +Earlene +Elvia +Fay +Gracie +Helena +Herlinda +Jacalyn +Johnnie +Karol +Katheryn +Leslee +Madelyn +Muriel +Noreen +Rosario +Roseanna +Shawn +Susanna +Tonya +Abigail +Adela +Bettie +Deana +Deidre +Dina +Flora +Jacque +Johanna +Jolene +Julianne +Kathlyn +Leilani +Merry +Aleta +Blanche +Carolynn +Corrine +Danna +Evangelina +Hilary +Josefina +Kimberley +Lenore +Lonnie +Lorena +Louisa +Luz +Madeleine +Mara +Marilee +Marty +Maurine +May +Melba +Mickey +Nicolette +Nola +Rhoda +Rosalinda +Trina +Unknown +Adrianne +Alexandra +Barbra +Bridget +Clarice +Edwina +Eunice +Fern +Greta +Jocelyn +Kathlene +Lilia +Malinda +Marci +Margot +Marleen +Nannette +Nedra +Neva +Nicki +Noel +Rachelle +Raquel +Rosetta +Roxann +Sherilyn +Terese +Adeline +Althea +Cathrine +Debbra +Debera +Delilah +Dolly +Francis +Iva +Jacklyn +Janna +Jenifer +Juliet +Katrina +Leigh +Loreen +Marianna +Myrtle +Nelda +Pamala +Sharyl +Shirlee +Beryl +Brooke +Candyce +Carmelita +Charmaine +Daria +Darleen +Daryl +Deirdre +Dian +Dorothea +Ernestina +Francisca +Gayla +Hortencia +Ina +Kendra +Kitty +Lauretta +Nan +Nita +Ronnie +Rosita +Sharyn +Starr +Susana +Tara +Tracey +Adelina +Alyce +Catharine +Cherry +Cinda +Darline +Dinah +Georgiana +Geri +Ginny +Jacquline +Janell +Jodie +Joni +Juliana +Kathaleen +Krista +Lea +Leann +Leta +Lorelei +Lorinda +Lou +Marlys +Maryanne +Melodee +Mercy +Merrie +Nicole +Patrica +Pennie +Rebeca +Roseanne +Thea +Tommie +Trudi +Allyson +Avis +Beatriz +Bobbi +Bonny +Candi +Candis +Cherrie +Deanne +Drucilla +Elinor +Gerri +Gerry +Hattie +Ivy +Jacquelin +Jann +Jerilyn +Jewel +Kari +Kellie +Lark +Laureen +Letitia +Linnea +Lourdes +Margery +Mollie +Nena +Norene +Robbie +Rosella +Rowena +Ruthie +Tana +Tricia +Winifred +Winona +Zoe +Adrian +Aida +Allyn +Belen +Carleen +Caryl +Claudine +Corliss +Daisy +Dayle +Deborha +Francesca +Hollis +Jodi +Joellen +Josette +Katie +Leanna +Lela +Libby +Lizabeth +Luana +Madonna +Mae +Martina +Megan +Melva +Minnie +Nancie +Nettie +Pamella +Peggie +Raylene +Roxane +Shiela +Sophie +Vanessa +Viki +Wendi +Willie +Zandra +Ada +Camilla +Carrol +Cary +Cher +Cherryl +Concepcion +Deedee +Dorinda +Elissa +Esmeralda +Etta +Frankie +Freddie +Georgie +Glinda +Ingrid +Kandy +Kelley +Kenna +Kevin +Kristeen +Leila +Lidia +Lissa +Loren +Luann +Lucile +Mabel +Marcelina +Maren +Maura +Merlene +Millicent +Opal +Penni +Rachael +Rona +Ronna +Roselyn +Roxie +Serena +Sharleen +Stacey +Starla +Suzanna +Tammy +Toby +Treva +Velia +Adriana +Amber +Angel +Angelita +Annamarie +Antonette +Bethany +Candie +Cara +Carmela +Carolee +Cathi +Cherri +Cheryll +Christi +Danelle +Dara +Deann +Deborrah +Debrah +Dede +Dedra +Deena +Delma +Devon +Elnora +Emilia +Emilie +Erica +Ermalinda +Gaile +Gena +Georganne +Georgianna +Hermelinda +Judie +Juliette +Kate +Kathyrn +Kimberlee +Laurene +Leora +Lezlie +Liane +Lindy +Liz +Lona +Loralee +Lorri +Lucretia +Lura +Manuela +Margret +Mariann +Maribeth +Matilda +Mattie +Micki +Phoebe +Reba +Rebekah +Reva +Richard +Robbin +Rosalee +Roslyn +Sandi +Sharen +Sherril +Shirlene +Suzann +Tami +Tari +Tonia +Vickey +Willa +Adella +Alanna +Alva +Andree +Angeline +Annabel +Arlette +Aurelia +Bettina +Brigid +Carin +Carroll +Charla +Chere +Christopher +Cindi +Collette +Coral +Corina +Corine +Cornelia +Danette +David +Dawna +Debi +Deidra +Dorcas +Dorene +Earline +Eddie +Elayne +Estelle +Eula +Evon +Evonne +Felicia +Fran +Frieda +Gaylene +Georgiann +Hannah +Harriette +Hortensia +Janeen +Janetta +Janey +Jeanene +Jeraldine +Jesus +Joe +Joette +Joleen +Jovita +Justine +Kyle +Lane +Lanette +Laurette +Lawana +Leola +Liana +Lina +Lonna +Loree +Luanne +Luella +Lynell +Lynnda +Maricela +Marna +Marnie +Marylin +Mavis +Merle +Pattie +Reina +Rhea +Robbyn +Roni +Rory +Roxana +Sharman +Sherie +Sofia +Sonya +Sophia +Starlene +Sunny +Susann +Tamera +Teddy +Teena +Tonie +Trena +Trudie +Val +Valeria +Veda +Velda +Aletha +Alexa +Amalia +Amparo +Angelica +Annetta +Ardith +Arline +Bennie +Bessie +Bettye +Bobette +Bunny +Candelaria +Carey +Carmella +Caroll +Carolyne +Cassie +Celestine +Charity +Charlette +Charline +Christa +Christene +Clarissa +Cleo +Cruz +Deeann +Delfina +Ellyn +Ester +Fatima +Felice +Florine +Fredda +Georgann +Geralyn +Glory +Gwenda +Harriett +Hillary +Imogene +Iola +Jaclyn +Jaime +James +Janel +Janene +Jewell +Jimmie +Joanie +Jodene +Jonnie +Karleen +Karlene +Karolyn +Karyl +Kathern +Kathryne +Kerrie +Layne +Lelia +Lianne +Lita +Lory +Mable +Manuel +Manya +Marguerita +Marijane +Marilou +Marjory +Marti +Meri +Michel +Mickie +Millie +Minerva +Moira +Nadene +Niki +Noelle +Paige +Portia +Randie +Regenia +Rickie +Robert +Rosalia +Rosaline +Rozanne +Sabra +Selina +Shireen +Signe +Soledad +Star +Sybil +Tania +Teddi +Theodora +Tia +Twila +Verda +Zella +Abby +Addie +Alejandra +Alexandria +Alyson +Antionette +Ardell +Bernadine +Bernita +Berta +Bonni +Brinda +Callie +Cameron +Carlotta +Carmel +Cecily +Charolette +Christeen +Clementina +Cory +Cristy +Darcey +Darlyne +Dea +Deane +Debborah +Dennis +Donita +Donnette +Dori +Dorthy +Dyanne +Elda +Elin +Eliza +Ellie +Enriqueta +Fonda +Frank +Freida +Georgeann +Georgene +Gigi +Goldie +Gregory +Gwynn +Hallie +Hopie +Isabell +Isabelle +Jannette +Jay +Jene +Jerrie +Jesse +Joane +Johnetta +Johnna +Jonna +Josefa +Kandace +Karel +Kenneth +Kerri +Kirsten +Kit +Kristene +Lanna +Larae +Larry +Launa +Laure +Lawanda +Leda +Leonor +Leslye +Letha +Lindsey +Lizbeth +Londa +Louella +Lynna +Maggie +Mamie +Margarette +Marlee +Maryhelen +Meg +Mia +Micaela +Michaela +Micheline +Mitzi +Natasha +Nathalie +Neta +Norah +Noralee +Penney +Phyliss +Prudence +Retha +Retta +Ricky +Rilla +Sandie +Scarlett +Shanon +Sharlet +Sharol +Sherlyn +Sheryle +Taffy +Terresa +Timmie +Troy +Ursula +Valentina +Vida +Vilma +Virgie +Vivien +Vonda +Vonnie +Wilhelmina +Windy +Zelda +Linda +Patricia +Deborah +Susan +Mary +Kathleen +Karen +Debra +Nancy +Barbara +Christine +Sandra +Pamela +Carol +Cynthia +Sharon +Diane +Donna +Janet +Margaret +Elizabeth +Janice +Cheryl +Denise +Catherine +Judith +Judy +Gloria +Rebecca +Marilyn +Laura +Carolyn +Kathryn +Brenda +Teresa +Gail +Victoria +Kathy +Diana +Katherine +Paula +Maria +Virginia +Joan +Joyce +Shirley +Martha +Robin +Bonnie +Peggy +Beverly +Leslie +Theresa +Cathy +Vicki +Connie +Laurie +Ann +Lynn +Suzanne +Julie +Betty +Jacqueline +Rose +Sally +Jane +Roberta +Valerie +Sherry +Lisa +Jean +Christina +Michele +Dorothy +Yolanda +Alice +Michelle +Sheila +Anita +Frances +Marsha +Terry +Ruth +Jo +Anne +Stephanie +Sylvia +Irene +Elaine +Wendy +Helen +Darlene +Claudia +Jennifer +Rita +Yvonne +Vickie +Marie +Jeanne +Joanne +Lorraine +Terri +Ellen +Phyllis +Maureen +Colleen +Marcia +Anna +Jan +Charlene +Constance +Lynda +Gayle +Melinda +Norma +Cindy +Renee +Toni +Rhonda +Jill +Evelyn +Marlene +Dolores +Wanda +Andrea +Debbie +Janis +Eileen +Charlotte +Carla +Kristine +Loretta +Shelley +Carmen +Louise +Rosemary +Lynne +Jeanette +Penny +Esther +Candace +Kim +Vivian +Lydia +Doris +Rachel +Sue +Lois +Lori +Julia +Dianne +Glenda +Marjorie +Annette +Carole +Juanita +Joann +Melissa +Rosa +Tina +Sarah +Gwendolyn +Sheryl +Arlene +Angela +Roxanne +Geraldine +Kimberly +Ramona +Monica +Joy +Melody +Cathleen +Cecilia +Josephine +Guadalupe +Melanie +Priscilla +Teri +Laurel +Dana +Eva +Kay +Nina +Belinda +Dawn +June +Regina +Becky +Holly +Jackie +Pauline +Lillian +Vicky +Candice +Patti +Paulette +Georgia +Jeri +Olivia +Stella +Marianne +Nadine +Patrice +Rosalie +Alicia +Jody +Lucy +Marian +Veronica +Christy +Emily +Jeannie +Margo +April +Irma +Jacquelyn +Lorna +Grace +Sheri +Marla +Sherrie +Delores +Lucinda +Rosie +Sara +Jeannette +Ruby +Caroline +Sherri +Dianna +Beatrice +Eleanor +Jennie +Lucille +Nora +Robyn +Antoinette +Kerry +Beth +Claire +Carrie +Cheri +Francine +Lynette +Audrey +Janine +Lupe +Margarita +Heidi +Marion +Bertha +Debora +Doreen +Amy +Billie +Margie +Isabel +Ginger +Edna +Edith +Janie +Jenny +Jessie +Mona +Gale +Maxine +Olga +Patsy +Terrie +Shelly +Dora +Marta +Celia +Elena +Cecelia +Deanna +Delia +Karla +Bonita +Jeanine +Bernadette +Corinne +Dale +Florence +Kelly +Rochelle +Therese +Vera +Penelope +Trudy +Alison +Gretchen +Cherie +Heather +Lauren +Adrienne +Ana +Annie +Shannon +Antonia +Darla +Kristina +Lee +Rosemarie +Sondra +Betsy +Clara +Susie +Chris +Dee +Jamie +Marguerite +Molly +Alma +Dixie +Emma +Lana +Janette +Rene +Bobbie +Kristin +Mildred +Patty +Wilma +Angelina +Della +Gay +Hope +Jessica +Randi +Tamara +Kathie +Susanne +Amelia +Christie +Karin +Tracy +Verna +Bernice +Celeste +Ida +Candy +Adele +Hazel +Denice +Jana +Lora +Madeline +Sandy +Thelma +Kristy +Marcella +Angie +Cathryn +Lorrie +Maryann +Shari +Elisa +Ethel +Gwen +Gina +Leticia +Myra +Naomi +Ronda +Saundra +Harriet +Pat +Yvette +Charmaine +Jayne +Lesley +Natalie +Estella +Glenna +Hilda +Janelle +Marcy +Nellie +Rosario +Blanca +Camille +Cassandra +Genevieve +Jerri +Joanna +Julianne +Kathrine +Leona +Sydney +Crystal +Erlinda +Faye +Rosanne +Claudette +Jeannine +Nanette +Silvia +Suzan +Arleen +Bette +Consuelo +Corrine +Elsa +Jeanie +Nanci +Pearl +Sharlene +Gilda +Kristen +Rena +Sharron +Armida +Aurora +Cora +Dona +Eloise +Esperanza +Kristi +Laverne +Lena +Lila +Suzette +Dena +Elvira +Georgina +Iris +Judi +Lola +Lyn +Sallie +Caren +Daphne +Henrietta +Marina +Nona +Raquel +Valarie +Amanda +Charleen +Elisabeth +Ella +Faith +Gladys +Kristie +Leah +Lorene +Lynnette +Magdalena +Nita +Rosalind +Rosalinda +Sonia +Tanya +Colette +Geneva +Helene +Ilene +Mari +Miriam +Myrna +Nikki +Noreen +Alexandra +Allison +Darcy +Elsie +Erma +Gracie +Josefina +Kris +Lorie +Marilynn +Pam +Velma +Viola +Aileen +Beverley +Cathie +Katharine +Ofelia +Bridget +Johanna +Karol +Lenore +Lillie +Mercedes +Meredith +Shelia +Sonya +Danielle +Ernestine +Eugenia +Graciela +Karyn +Lauri +Leanne +Lucia +Marilee +Mindy +Robbie +Tonya +Violet +Cheryle +Estela +Freda +Geri +Josie +Kathi +Lavonne +Marcie +Muriel +Nannette +Randy +Roxanna +Alana +Alberta +Caryn +Coleen +Debrah +Erin +Jacalyn +Jocelyn +Katrina +Nola +Pamala +Rae +Roxann +Valorie +Abigail +Agnes +Benita +Cecile +Deirdre +Diann +Ingrid +Jolene +Juana +Lani +Loraine +Lou +Rosanna +Sherrill +Stacy +Aleta +Carlene +Christi +Deanne +Debby +Elise +Elva +Jacklyn +Juliana +Lea +Madelyn +May +Melodie +Merry +Socorro +Terese +Allyson +Cathi +Cristina +Deana +Deloris +Dian +Evangeline +Georgette +Inez +Johnnie +Lindsay +Margery +Michael +Minnie +Nicki +Ophelia +Paige +Petra +Roslyn +Stacey +Adela +Alexis +Althea +Blanche +Clare +Eunice +Felicia +Georgianna +Greta +Ivy +Janeen +Janell +Jann +Jodi +Lorena +Shawn +Vikki +Adeline +Catalina +Cristine +Elissa +Elyse +Gerry +Jodie +Katie +Kaye +Kimberley +Leann +Lenora +Leslee +Lorelei +Mabel +Malinda +Marci +Marylou +Maura +Nelda +Polly +Rachelle +Valentina +Vickey +Winifred +Angelita +Catharine +Debera +Dolly +Dorothea +Earlene +Edwina +Evangelina +Francisca +Frankie +Jacque +Janna +Katheryn +Kathlyn +Kellie +Ladonna +Lela +Lonnie +Louisa +Maryanne +Nan +Rachael +Ruthie +Susana +Susanna +Tana +Trina +Vanessa +Ada +Alyce +Ava +Avis +Bernadine +Carlotta +Charla +Cherry +Clarice +Debbra +Deidre +Flora +Hortencia +Kate +Lily +Luanne +Madeleine +Mae +Maggie +Melba +Mickey +Mollie +Nancie +Pennie +Rhoda +Roseanna +Rosita +Suzann +Tommie +Trudi +Aida +Amber +Carey +Carleen +Carolina +Collette +Elvia +Eve +Fay +Francesca +Gayla +Herlinda +James +Leilani +Lindsey +Marty +Marva +Megan +Pandora +Robbin +Rosalyn +Roxie +Sherilyn +Sonja +Suzanna +Tami +Tammy +Viki +Bonny +Brooke +Candyce +Carrol +Daisy +Dinah +Dorene +Fern +Gwenda +Helena +Jerilyn +Jerry +Jonnie +Leanna +Leigh +Lilly +Lissa +Lizabeth +Lorinda +Lourdes +Lura +Mamie +Mara +Marietta +Mattie +Mercy +Mimi +Nicole +Opal +Raylene +Ricki +Roseanne +Rosetta +Roxane +Shirlee +Unknown +Willie +Zoe +Alta +Alyson +Bobbi +Camilla +Caron +Cinda +Cornelia +Danette +Darleen +Daryl +Dawna +Deedee +Deena +Dorinda +Emilie +Erika +Estelle +Gaylene +Gertrude +Glinda +Hilary +Ina +Jaclyn +Juliet +Kelley +Kitty +Krista +Kristeen +Leila +Lise +Luann +Margot +Margret +Millie +Myrtle +Niki +Patrica +Randee +Roseann +Rosella +Sharyl +Sharyn +Shellie +Velia +Willa +William +Allyn +Alva +Beatriz +Beverlee +Callie +Candi +Carmela +Celestine +Cherrie +Cheryll +Cindi +Claudine +Concepcion +David +Debbi +Deborrah +Delfina +Francis +Geralyn +Ginny +Hannah +Hermelinda +Janene +Janyce +John +Jonna +Kandi +Kandy +Karan +Kendra +Kimberlee +Lawanda +Liane +Lindy +Lucie +Luz +Merrie +Nedra +Nettie +Nicolette +Norine +Reba +Rhea +Richard +Rondi +Ronna +Rosalee +Rosann +Sherie +Sheryle +Sidney +Starla +Starr +Sybil +Tara +Theodora +Tracey +Trinidad +Val +Allene +Amalia +Ardith +Barbra +Bettie +Candis +Cara +Cathrine +Danna +Darline +Dede +Delilah +Ellena +Emilia +Erica +Ernestina +Fran +Frieda +Georgiana +Janel +Janey +Joleen +Karolyn +Kathaleen +Laureen +Lavern +Letitia +Lidia +Loreen +Lorri +Luisa +Madonna +Marcelle +Marilou +Marleen +Martina +Maude +Mina +Pauletta +Renae +Rona +Ruthann +Sharman +Simone +Tena +Tonia +Tricia +Twyla +Wendi +Abby +Alida +Angel +Antionette +Arlinda +Babette +Belia +Berta +Carmelita +Caryl +Cassie +Cathey +Cherilyn +Clarissa +Corina +Cyndi +Danita +Dara +Dayle +Dayna +Devon +Dollie +Donita +Dorthy +Earline +Gaye +Genie +Gerri +Hattie +Hollis +Isabelle +Jacquelynn +Janetta +Jenifer +Jerrie +Jewel +Karon +Kathern +Kevin +Laraine +Laurene +Lauretta +Laurette +Lavon +Leola +Leonor +Leta +Libby +Lita +Loren +Louella +Lyla +Marianna +Maribeth +Marna +Marti +Maryjo +Matilda +Maurine +Mavis +Melva +Merri +Merrilee +Mia +Mitzi +Nadene +Neva +Ora +Pattie +Paulina +Peggie +Phillis +Randie +Rebekah +Reina +Rickie +Robert +Roni +Ronnie +Roselyn +Rowena +Roxana +Sharen +Sherryl +Sheryll +Soledad +Sophia +Stacie +Stefanie +Sunny +Velda +Vida +Zandra +Adrian +Adrianne +Alanna +Alecia +Alene +Aletha +Aline +Alvina +Antonette +Arline +Aurelia +Belen +Bennie +Bettye +Bunny +Caprice +Carmel +Carolyne +Carolynn +Cary +Chrystal +Cleo +Corine +Danelle +Delois +Delphine +Dennise +Denyse +Dottie +Eugenie +Fawn +Francene +Gae +Georganne +George +Georgene +Gigi +Hortensia +Ila +Jacquline +Jami +Janett +Jimmie +Joetta +Joette +Joni +Joseph +Josette +Judie +Keri +Kerri +Lark +Lavada +Lesli +Lilia +Linnea +Loree +Lucretia +Mariann +Marisela +Marjory +Maryellen +Meg +Melodee +Michaela +Monique +Nancee +Nickie +Palma +Pamella +Pansy +Penni +Retha +Ronald +Sadie +Sari +Shana +Shawna +Sophie +Steven +Thomas +Trisha +Trudie +Twila +Venita +Vivien +Wendie +Abbie +Adella +Alexa +Alfreda +Amparo +Annamarie +Bessie +Bianca +Blythe +Brandy +Carletta +Carlyn +Carolin +Cathlene +Celina +Cherri +Christa +Cindie +Coral +Corliss +Cory +Cristy +Dalia +Deann +Devra +Dina +Dorcas +Edythe +Elia +Elinor +Ester +Evonne +Fatima +Felice +Gabrielle +Gary +Guillermina +Gwyn +Harriett +Iva +Jacki +Jacquelin +Jeraldine +Jerilynn +Joe +Joycelyn +Juliann +Justine +Karlene +Karole +Kathyrn +Kerrie +Kirsten +Kit +Krystal +Kyle +Leota +Liana +Lianne +Lili +Lin +Linell +Lolita +Loma +Lonna +Lorretta +Lory +Luana +Mable +Manuela +Marlyn +Maryl +Marylyn +Mickie +Nell +Octavia +Phoebe +Piper +Portia +Reta +Rosalia +Rosalva +Rosina +Rozanne +Selma +Serena +Sheril +Shiela +Shirleen +Shirlene +Sigrid +Sofia +Stephenie +Treva +Una +Valli +Vernita +Vonda +Winona +Zella +Adriana +Adriane +Alisa +Andre +Angelica +Ardis +Arthur +Belle +Billy +Bobbette +Bobette +Bonni +Brenna +Cameron +Candance +Candie +Carin +Carolee +Casey +Cecily +Chari +Charlesetta +Christiane +Cindee +Clair +Coreen +Cruz +Cydney +Darnell +Debbe +Delinda +Dell +Denese +Deniece +Devin +Doretta +Dorie +Dorrie +Dru +Dyan +Dyann +Effie +Elda +Eloisa +Elvera +Emelia +Enid +Esmeralda +Etta +Felipa +Florine +Freddie +Gayl +Glennda +Glory +Glynda +Gregory +Hillary +Imelda +Jacklynn +Jacqulyn +Janiece +Jannette +Jesus +Jewell +Jil +Joelle +Johna +Johnna +Johnny +Jolynn +Jonell +Jonelle +Judyth +Julee +Julianna +Kari +Kathlene +Kathryne +Korla +Kym +Lanell +Lanette +Lanora +Lauraine +Lauralee +Leora +Letha +Lezlie +Linette +Lizbeth +Lona +Lottie +Lu +Lula +Lynell +Manon +Mardel +Margarite +Maricela +Marlena +Marnie +Martie +Marylin +Merle +Micaela +Micky +Mliss +Noel +Noella +Ona +Oralia +Page +Phylis +Racheal +Raelene +Randa +Rebeca +Renata +Reyna +Ricci +Rikki +Robbi +Romona +Rosalba +Rosalina +Sabina +Samantha +Sandi +Santos +Scott +Sharan +Sheilah +Shelby +Shelli +Signe +Star +Starlene +Stefani +Stephani +Susann +Susette +Suzie +Tamra +Tania +Tari +Teena +Theresia +Tobi +Tonie +Trish +Valeria +Verda +Vesta +Virgie +Whitney +Zelma +Linda +Deborah +Susan +Mary +Patricia +Debra +Karen +Cynthia +Kathleen +Pamela +Nancy +Barbara +Sandra +Sharon +Carol +Donna +Diane +Janet +Elizabeth +Denise +Cheryl +Margaret +Janice +Christine +Rebecca +Catherine +Laura +Teresa +Robin +Judith +Gloria +Brenda +Marilyn +Judy +Diana +Kathy +Kathryn +Paula +Maria +Gail +Victoria +Carolyn +Julie +Katherine +Shirley +Theresa +Martha +Joyce +Joan +Virginia +Beverly +Laurie +Leslie +Peggy +Suzanne +Rose +Valerie +Vicki +Lynn +Ann +Lisa +Bonnie +Michelle +Cathy +Roberta +Sally +Betty +Connie +Jane +Sherry +Terry +Anita +Joanne +Sheila +Michele +Jo +Jean +Ruth +Jacqueline +Dorothy +Darlene +Irene +Wendy +Jennifer +Stephanie +Helen +Frances +Terri +Marsha +Anne +Rita +Yolanda +Elaine +Alice +Rhonda +Sylvia +Yvonne +Cindy +Anna +Jeanne +Colleen +Vickie +Marie +Lorraine +Renee +Christina +Gayle +Jan +Jill +Phyllis +Ellen +Debbie +Lori +Claudia +Charlene +Marcia +Melinda +Maureen +Dolores +Norma +Evelyn +Wanda +Constance +Carla +Eileen +Lynda +Rachel +Kim +Toni +Carmen +Jeanette +Shelley +Loretta +Doris +Kimberly +Marlene +Louise +Penny +Lydia +Dawn +Lynne +Lois +Julia +Sheryl +Esther +Melissa +Annette +Sarah +Dianne +Candace +Marjorie +Sue +Gwendolyn +Andrea +Angela +Charlotte +Monica +Arlene +Rosemary +Dana +Joy +Glenda +Ramona +Sherri +Juanita +Rosa +Vivian +Tina +Guadalupe +Roxanne +Janis +Josephine +Melanie +Teri +Joann +Carole +Patti +June +Georgia +Cecilia +Melody +Marianne +Becky +Cathleen +Cheri +Geraldine +Holly +Jackie +April +Pauline +Lucy +Paulette +Sheri +Regina +Kay +Carrie +Belinda +Ruby +Nina +Vicky +Marla +Heidi +Rosie +Eleanor +Janine +Jeri +Nora +Veronica +Beth +Lillian +Kerry +Priscilla +Laurel +Olivia +Sara +Grace +Marian +Rosalie +Dianna +Mona +Patrice +Jacquelyn +Emily +Gale +Stella +Alicia +Eva +Antoinette +Candice +Deanna +Delores +Lucille +Patsy +Joni +Kristine +Margie +Amy +Irma +Sherrie +Lynette +Jeannie +Robyn +Karla +Lorna +Audrey +Jeannette +Beatrice +Jody +Margarita +Caroline +Lucinda +Lupe +Jennie +Marion +Isabel +Cherie +Jamie +Rochelle +Edith +Janie +Doreen +Therese +Dora +Vanessa +Celia +Debora +Delia +Jenny +Trudy +Shelly +Adrienne +Francine +Shannon +Billie +Cecelia +Jana +Clara +Ginger +Susanne +Karin +Nadine +Patty +Alma +Janette +Lee +Marta +Vera +Bertha +Gay +Jessie +Rene +Tanya +Gina +Leticia +Olga +Terrie +Candy +Darla +Margo +Bonita +Corinne +Lora +Bernadette +Celeste +Kristin +Elena +Florence +Christy +Crystal +Heather +Nanette +Claire +Leah +Marguerite +Hope +Tracy +Dale +Jeanie +Sandy +Angelina +Bernice +Lana +Madeline +Naomi +Thelma +Jeannine +Kelly +Ronda +Sondra +Susie +Denice +Lauren +Lou +Jessica +Mildred +Tamara +Alison +Elisa +Maxine +Molly +Bobbie +Randi +Shari +Wilma +Annie +Edna +Lorrie +Cassandra +Gwen +Pearl +Suzan +Ana +Dixie +Kimberley +Kristi +Myra +Penelope +Sonja +Bridget +Emma +Gretchen +Jeanine +Lesley +Cathryn +Christie +Dee +Della +Antonia +Coleen +Erlinda +Marcella +Betsy +Caren +Kristen +Chris +Ethel +Gladys +Joanna +Kathi +Kathie +Sonia +Maryann +Nellie +Dona +Ella +Faith +Gayla +Ida +Rena +Rosanne +Verna +Adele +Carlene +Charmaine +Hilda +Luann +Rosemarie +Estella +Janelle +Amelia +Angie +Colette +Ernestine +Hazel +Kristina +Lorie +Marina +Nanci +Natalie +Noreen +Sharron +Blanca +Camille +Eloise +Esperanza +Helene +Robbin +Velma +Yvette +Leona +Aurora +Cora +Debby +Erma +Iris +Jayne +Raquel +Allison +Arleen +Bette +Glenna +Jolene +Lyn +Rae +Rosalind +Sydney +Georgina +Jerri +Jodi +Lynnette +Mindy +Myrna +Shelia +Stacey +Stacy +Tonya +Valarie +Claudette +Elvira +Ofelia +Susana +Carolina +Caryn +Elsie +Faye +Genevieve +Julianne +Leanne +Marcy +Miriam +Rosalinda +Saundra +Tricia +Aileen +Danielle +Daphne +Darcy +Elsa +Gaye +Georgette +Gilda +Kristy +Lena +Rachelle +Susanna +Tammy +Consuelo +Dena +Elisabeth +Eugenia +Kathrine +Lauri +Lenora +Lola +Lucia +Marilynn +Polly +Randy +Amanda +Blanche +Deana +Deirdre +Geneva +Josefina +Kris +Lila +Lorene +Luanne +Marilee +Pamala +Rachael +Shawn +Corrine +Elise +Erin +Inez +Katrina +Meredith +Merry +Nikki +Suzette +Viola +Aleta +Cheryle +Debrah +Diann +Dorene +Eve +Ivy +Karyn +Laverne +Marva +Mercedes +Roxann +Alberta +Benita +Freda +Jocelyn +Katharine +Kristie +Lily +Lorri +Marcie +Michael +Nola +Roseann +Tracey +Venita +Antonette +Cathie +Clarice +Deedee +Elva +Flora +Henrietta +Jann +Juana +Kathlene +Lavonne +Madelyn +Mae +Pam +Valorie +Violet +Alexis +Ava +Clare +Geri +Graciela +Harriet +Ilene +Janeen +Juliana +Kimberlee +Lillie +Luz +Mari +Melodie +Mickey +Mollie +Nicole +Robbie +Rosalyn +Rosario +Adela +Carey +Dolly +Dorothea +Elvia +Jacklyn +Janene +Johnnie +Lorinda +Madeleine +Nita +Shauna +Sherryl +Terese +Alexandra +Brooke +Christi +Cindi +Debbra +Dina +Gertrude +Janell +Leanna +Lorelei +Sallie +Sharlene +Sherrill +Adrian +Agnes +Amber +Armida +Charleen +Cristina +Danna +Deanne +Debera +Deena +Edwina +Erica +Estela +Francisca +Frankie +Ingrid +Kari +Kaye +Kelley +Lenore +Margot +Melba +Noel +Nona +Silvia +Socorro +Cathi +Danette +Felicia +Francesca +Gracie +Hilary +Josie +Laureen +Lela +Leta +Lindy +Loraine +Magdalena +Mara +Muriel +Rhoda +Rosanna +Trina +Vikki +Ada +Alana +Beverley +Bobbi +Earlene +Karon +Kitty +Lark +Leann +Lidia +Louisa +Marci +Margery +May +Megan +Mercy +Mimi +Nancie +Patrica +Reba +Robert +Roxanna +Sonya +Suzanna +Tara +Twila +Unknown +Abigail +Cecile +Charline +Daisy +Darleen +Deidre +Delilah +Deloris +Elyse +Evangeline +Gerri +Jacalyn +Jenifer +Jerry +Johanna +Judi +Katheryn +Lea +Margret +Marleen +Nicki +Pat +Vickey +Winifred +Adeline +Cathrine +Deann +Doretta +Ernestina +Fay +Georgiana +Ginny +Hillary +Hortencia +Jacque +Jodie +Karol +Katie +Kyle +Lani +Leigh +Manuela +Marietta +Nan +Neva +Petra +Roseanne +Sherilyn +Adrianne +Aida +Allyson +Beverlee +Caron +Catalina +Cheryll +Cinda +Estelle +Eunice +Gigi +Herlinda +Ina +Iva +Judie +Juliet +Kate +Kathaleen +Ladonna +Lilly +Lise +Luisa +Mabel +Maggie +Melva +Mickie +Mitzi +Moira +Nannette +Richard +Rowena +Roxie +Sofia +Wendi +Alene +Althea +Barbra +Beatriz +Bessie +Bettie +Carleen +Carmelita +Catharine +Dayle +Evangelina +Gaylene +Geralyn +Greta +James +Janiece +Janna +Jerrie +Karan +Kerri +Laronda +Laurene +Leila +Leilani +Lesa +Linnea +Lita +Ophelia +Paige +Rebekah +Ricki +Ronnie +Ruthie +Sandi +Shirlee +Winona +Alta +Annamarie +Berta +Carolynn +Casey +Cherrie +Cherry +Corliss +Dawna +Elissa +Etta +Fern +Guillermina +Jewel +Joette +Kathyrn +Kendra +Krista +Kristeen +Lesli +Letitia +Liane +Lindsay +Lissa +Lizabeth +Lona +Lonnie +Loreen +Lorena +Lourdes +Lu +Malinda +Mariann +Minerva +Pamella +Pennie +Prudence +Rebeca +Rosalia +Rosita +Sharen +Sharla +Tania +Tena +Tommie +Trudi +Willie +Alisa +Angelita +Antionette +Bambi +Candyce +Carroll +Cary +Charisse +Cherri +Clarissa +Danita +Debi +Dennise +Ellyn +Jacquline +Jay +Jerilyn +Jimmie +Kathlyn +Kirsten +Lanette +Lawanda +Libby +Maricela +Marlys +Maryanne +Merrie +Monique +Nedra +Nelda +Niki +Renae +Rickie +Ronna +Sharyn +Shellie +Sunny +Tonie +Viki +Willa +Alanna +Aletha +Allyn +Angelique +Ardis +Arline +Bobette +Brandy +Carmela +Carmella +Carrol +Cathey +Charla +Claudine +Corine +Dara +Dede +Delma +Dinah +Dorian +Dorinda +Georgann +Georgene +Goldie +Hermelinda +Imelda +Janey +Jewell +Joanie +Jonnie +Juliette +Kandy +Kathryne +Kelli +Letha +Liana +Lonna +Madonna +Marylin +Marylyn +Merlene +Penni +Phoebe +Randa +Rhea +Roselyn +Rosetta +Roxane +Royce +Sharilyn +Sheree +Sherie +Sidney +Sophia +Tami +Velda +Adella +Alida +Amparo +Angel +Annemarie +Babette +Beckie +Bernadine +Camilla +Candi +Candis +Carmel +Cherlyn +Christal +Collette +Cruz +Daria +David +Davida +Debbi +Deborha +Delfina +Donita +Dori +Enid +Erika +Eugenie +Eula +Francis +Freddie +Frieda +George +Gerry +Helena +Hortensia +Isabelle +Janel +Jannette +Jeanene +Jenice +Jeraldine +Joe +Joleen +Jorja +Juli +Julianna +Kellie +Keri +Lane +Leeann +Leonor +Leonora +Lida +Loree +Louann +Madaline +Marianna +Marlena +Martina +Marty +Mattie +Maurine +Mavis +Melodee +Meri +Michaele +Myrtle +Nicola +Opal +Ora +Portia +Racheal +Randie +Rayna +Reta +Rosann +Roslyn +Sadie +Serena +Sharyl +Sheron +Sherril +Shiela +Starla +Starr +Stefanie +Teena +Theodora +Tracie +Velia +Vonnie +Zelda +Zoe +Adriana +Alyce +Amalia +Angelica +Annabelle +Annetta +Bettina +Bonny +Callie +Carolee +Cathlene +Cecily +Chloe +Cristine +Cristy +Dayna +Deeann +Denyse +Devon +Dorie +Elaina +Elinor +Enriqueta +Gabrielle +Georganne +Georgetta +Georgianna +Hattie +Ila +Jaclyn +Jacquelin +Janett +Janetta +Janise +Jenine +Joetta +Jonell +Jovita +Juliann +Kandi +Kara +Karlene +Kathern +Kevin +Kit +Lajuana +Lavern +Lawana +Leola +Leslee +Lianne +Lilia +Lina +Lindsey +Lolita +Loren +Lory +Luana +Marita +Marlyn +Marti +Marylou +Matilda +Maura +Merri +Merrilee +Micaela +Millie +Mina +Piper +Raylene +Reina +Rise +Rona +Rory +Rosalee +Roseanna +Suzann +Tana +Tani +Tillie +Tonia +Trinidad +Val +Valencia +Vida +Zandra +Abbe +Abbie +Agustina +Alane +Alexa +Alexandria +Andria +Annabel +Arletta +Aurelia +Belen +Belva +Brigid +Bronwyn +Cara +Carin +Carletta +Cassie +Cherryl +Christa +Cinthia +Clarinda +Cleo +Cornelia +Cydney +Damita +Daryl +Debborah +Deborrah +Debroah +Delphine +Desiree +Dian +Diedre +Earline +Eda +Elayne +Elda +Elia +Elida +Eliza +Elouise +Emilia +Erline +Esmeralda +Eulalia +Gayleen +Genoveva +Giselle +Glynis +Griselda +Hannah +Hollis +Jacki +Jacquelyne +Jacquelynn +Jaime +Janyce +Joane +John +Jonda +Joseph +Josette +Joye +Karel +Karren +Karrie +Kym +Lanita +Laraine +Lauretta +Laurette +Laurinda +Lawanna +Lelia +Linette +Loralee +Lorin +Lorita +Lupita +Lyla +Mamie +Marilou +Marisela +Marlynn +Maryellen +Merle +Minnie +Nicolette +Norene +Norine +Nyla +Oma +Pauletta +Rafaela +Renita +Reva +Roni +Rosaline +Rosella +Roxana +Sharlee +Sharleen +Shawna +Simone +Suzie +Sybil +Tamra +Tari +Teresita +Thomas +Tia +Trisha +Valentina +Veda +Wendie +Zina +Addie +Adelina +Adell +Aimee +Allena +Andra +Angelia +Ardith +Avis +Beryl +Bobbe +Bobby +Cam +Cari +Carlotta +Carola +Charlesetta +Cher +Cherilyn +Christeen +Christene +Christianne +Clorinda +Concepcion +Concha +Coral +Cordelia +Corina +Cozette +Cyd +Daina +Dalia +Deberah +Delois +Denese +Denisa +Dodie +Dyanne +Edythe +Elana +Elba +Elma +Elvera +Emilie +Enedina +Enola +Ermelinda +Ester +Evette +Fae +Felecia +Francie +Gena +Genie +Georgiann +Gisele +Glinda +Gwyneth +Holli +Hollie +Jannie +Jayme +Jeane +Jenise +Joey +Johnetta +Jonna +Josephina +Joycelyn +Julee +Julienne +Kandace +Kandice +Karleen +Kayla +Kenda +Kiki +Kimberlie +Lauree +Lavada +Lavera +Lavonda +Lavonna +Leatha +Leesa +Lenna +Lili +Lin +Liz +Lorilee +Lorretta +Lottie +Louanne +Louella +Luci +Lucie +Luella +Lynell +Marcelina +Marcelle +Mardell +Margarete +Marjory +Mark +Marya +Maudie +Melisa +Merced +Meridith +Mia +Michal +Micheline +Mirna +Nancee +Natividad +Nell +Nena +Noelle +Noemi +Pamla +Peggie +Raymond +Renea +Renetta +Renette +Retha +Ricci +Richelle +Ricky +Roslynn +Sabra +Salli +Shana +Shanna +Sharan +Shaun +Sheena +Sheridan +Sindy +Sonjia +Star +Suanne +Susann +Teddi +Teryl +Thea +Tresa +Treva +Troy +Twyla +Ursula +Valery +Valinda +Valli +Vernell +Vernice +Virgie +Vonda +Vonna +Winnie +Linda +Susan +Debra +Deborah +Mary +Patricia +Karen +Cynthia +Pamela +Nancy +Kathleen +Barbara +Sandra +Carol +Donna +Diane +Sharon +Janet +Cheryl +Elizabeth +Denise +Rebecca +Margaret +Teresa +Robin +Catherine +Laura +Janice +Maria +Gloria +Diana +Brenda +Lisa +Paula +Kathy +Judy +Theresa +Marilyn +Judith +Gail +Julie +Kathryn +Katherine +Carolyn +Victoria +Vicki +Rose +Leslie +Christine +Joan +Joyce +Lynn +Beverly +Lori +Martha +Virginia +Suzanne +Terri +Laurie +Ann +Stephanie +Michelle +Valerie +Peggy +Sherry +Terry +Michele +Shirley +Connie +Yolanda +Sally +Cathy +Sheila +Elaine +Bonnie +Roberta +Wendy +Marie +Debbie +Jacqueline +Jo +Jane +Jennifer +Cindy +Ruth +Jean +Darlene +Sylvia +Vickie +Alice +Betty +Rhonda +Anna +Anita +Kim +Anne +Helen +Frances +Irene +Renee +Dorothy +Joanne +Yvonne +Colleen +Ellen +Lorraine +Jill +Rita +Melinda +Dolores +Toni +Marsha +Sheryl +Kimberly +Marcia +Wanda +Jeanne +Phyllis +Jan +Maureen +Loretta +Claudia +Norma +Eileen +Evelyn +Rachel +Angela +Constance +Gayle +Charlotte +Carla +Marian +Charlene +Jeanette +Teri +Dawn +Andrea +Carmen +Dianne +Lydia +Lynda +Christina +Esther +Julia +Shelley +Lynne +Lois +Sue +Marlene +Annette +Monica +Vivian +Juanita +Melody +Roxanne +Melissa +Glenda +Ramona +Doris +Arlene +Gwendolyn +Sarah +Melanie +Tina +Louise +Penny +Rosa +Cecilia +Candace +Holly +Marla +Joy +Marianne +Josephine +Dana +Sheri +Heidi +Janis +Marjorie +Rosemary +Jackie +April +Geraldine +Regina +Sherri +Robyn +Cathleen +Guadalupe +Nina +Carole +Becky +Joann +Patti +June +Eva +Gina +Beth +Jeri +Lucy +Amy +Vicky +Mona +Lillian +Pauline +Cheri +Sherrie +Olivia +Sara +Deanna +Debora +Irma +Veronica +Audrey +Georgia +Kay +Stella +Grace +Jody +Kerry +Belinda +Joni +Lynette +Jeannie +Paulette +Vanessa +Carrie +Margie +Priscilla +Eleanor +Jacquelyn +Ruby +Laurel +Rosalie +Alicia +Antoinette +Caroline +Lee +Lauren +Lupe +Nora +Rosie +Jana +Rochelle +Dianna +Emily +Jeannette +Patrice +Claire +Olga +Jamie +Margarita +Beatrice +Gale +Janine +Doreen +Terrie +Jennie +Lorna +Lucille +Shannon +Tracy +Therese +Cherie +Jenny +Lucinda +Nadine +Bobbie +Delores +Margo +Alison +Ana +Bertha +Christy +Naomi +Sheree +Delia +Kathie +Patsy +Sandy +Shelly +Candice +Corinne +Dora +Francine +Janie +Leticia +Edith +Heather +Janette +Kelly +Patty +Vera +Adrienne +Dale +Marcella +Elena +Kathi +Alma +Jeanine +Karla +Tamara +Celia +Lora +Marion +Stacey +Antonia +Karin +Rene +Angelina +Candy +Cecelia +Ginger +Isabel +Sonia +Edna +Shawn +Crystal +Kristine +Marina +Maryann +Ronda +Stacy +Gwen +Marguerite +Shari +Susanne +Billie +Marta +Tanya +Betsy +Florence +Jessie +Susie +Celeste +Darla +Emma +Dena +Jerri +Rosanne +Rosemarie +Suzan +Annie +Bonita +Jessica +Lorie +Caren +Erin +Mildred +Trudy +Leah +Amelia +Bernice +Ida +Maxine +Chris +Della +Joanna +Denice +Dixie +Lorrie +Yvette +Adele +Hilda +Hope +Camille +Dee +Gretchen +Lauri +Myra +Nanette +Kristin +Lana +Lorene +Penelope +Tracey +Bridget +Dona +Jayne +Leona +Susana +Clara +Miriam +Noreen +Jeannine +Lesley +Lou +Luann +Mari +Randi +Gay +Elsa +Lena +Angie +Christie +Faye +Jeanie +Nellie +Pearl +Rosario +Colette +Jolene +Julianne +Kimberley +Lola +Molly +Shelia +Luanne +Natalie +Verna +Allison +Genevieve +Hazel +Iris +Lyn +Shauna +Sonja +Cassandra +Debbra +Estella +Faith +Georgette +Leanne +Madeline +Sondra +Wilma +Ava +Bernadette +Esperanza +Gladys +Nanci +Nikki +Robbin +Rosalind +Arleen +Corrine +Darcy +Elise +Ella +Ethel +Katharine +Rena +Suzette +Graciela +Ilene +Kathrine +Kristy +Myrna +Tricia +Blanca +Caryn +Elisa +Gayla +Glenna +Harriet +Henrietta +Kimberlee +Kristen +Kristi +Lucia +Raquel +Roxie +Beverley +Coleen +Kristina +Rae +Silvia +Thelma +Valarie +Alberta +Benita +Bette +Cathryn +Danette +Elisabeth +Gilda +Josefina +Katrina +Lynnette +Polly +Sharron +Tonya +Vikki +Aurora +Cora +Debby +Dorene +Geneva +Janelle +Laverne +Marcie +Merry +Mindy +Pamala +Rosalinda +Roxann +Sabrina +Sharlene +Cheryle +Elsie +Elva +Karyn +Lani +Marilee +Melba +Mercedes +Pam +Roxanna +Sallie +Sherrill +Valorie +Velma +Erlinda +Jacalyn +Jodi +Johanna +Leslee +Marcy +Meredith +Michael +Aileen +Amanda +Bobbi +Charmaine +Clare +Debrah +Dina +Felicia +Georgina +Ladonna +Laureen +Lily +Marilynn +Melodie +Nola +Sonya +Susanna +Alexandra +Alisa +Danielle +Elvira +Erica +Ernestine +Eve +Freda +Geri +Helene +Lenora +Rosalyn +Tara +Viola +Carlene +Eloise +Juana +Lorelei +Magdalena +Ophelia +Pat +Alexis +Deirdre +Estela +Flora +Kitty +Lavonne +Leila +Loraine +Lorena +Marylou +Nita +Rachelle +Randy +Renae +Starla +Suzanna +Unknown +Ada +Cathie +Deanne +Erma +Gaye +Jerilyn +Lea +Leann +Leigh +Lillie +Mara +Mimi +Mitzi +Rachael +Terese +Adela +Carolina +Claudette +Consuelo +Debi +Dorothea +Elyse +Hilary +Jacklyn +Katie +Leta +Lidia +Lila +Lindy +Megan +Mercy +Noel +Ofelia +Shellie +Socorro +Aida +Alana +Deena +Diann +Janel +Janell +Karol +Kerri +Kristie +Lauretta +Lorinda +Malinda +May +Muriel +Myrtle +Sandi +Saundra +Sherryl +Tami +Aleta +Beatriz +Carmelita +Cherryl +Clarice +Earlene +Inez +Ingrid +Jerrie +John +Kris +Luz +Marva +Maryanne +Merle +Micki +Rosanna +Rowena +Violet +Adeline +Catalina +Cathrine +Christi +Daphne +Eugenia +Janeen +Janna +Jenifer +Jodie +Josie +Judi +Juliet +Kaye +Lanette +Lenore +Lorri +Luana +Rebekah +Robbie +Robert +Sherie +Viki +Willie +Abigail +Agnes +Alyce +Armida +Blanche +Cara +Caryl +Cristina +Delilah +Francisca +Johnnie +Keri +Lela +Leonor +Madelyn +Marci +Merrilee +Neva +Nona +Pennie +Petra +Sherilyn +Trina +Angelita +Bambi +Carey +Cecile +Charleen +Deana +Deann +Debbi +Elissa +Eunice +Gracie +Helena +Hollie +Ivy +Janene +Jocelyn +Juliette +Leilani +Lilia +Lindsay +Linnea +Lonnie +Lu +Margery +Pamella +Rosetta +Roslyn +Shawna +Suzann +Sydney +Tammy +Velda +Angelica +Aurelia +Brooke +Candyce +Cathi +Cheryll +Cinda +Cindi +Dawna +Desiree +Edwina +Emilia +Evangelina +Fay +Gertrude +Herlinda +Jannette +Josette +Juliana +Kate +Kelley +Lark +Laronda +Laurene +Leanna +Leeann +Leola +Mickey +Nicki +Pattie +Reba +Ruthie +Sidney +Sophia +Tonia +Veda +Vickey +Willa +Adrian +Althea +Amber +Babette +Bessie +Bettina +Callie +Carleen +Catharine +Charisse +Claudine +Dara +Dede +Dian +Dori +Estelle +Evonne +Fern +Francesca +Georgiana +Jacki +Janey +Jerry +Jolie +Kandy +Karolyn +Karon +Kathaleen +Katheryn +Katy +Kelli +Louisa +Luisa +Mabel +Mae +Maggie +Marlena +Maryellen +Maura +Merri +Nicole +Portia +Randie +Roseanna +Stefanie +Valencia +Wendi +Zoe +Abby +Avis +Barbra +Beckie +Berta +Bettie +Caron +Charla +Cherri +Coral +Cordelia +Darleen +Deborha +Donita +Doretta +Dorinda +Ernestina +Evangeline +Felice +Frankie +Ina +Jacquline +Joetta +Kari +Kathe +Kellie +Lawanda +Letitia +Lissa +Lona +Loree +Loreen +Lory +Madeleine +Marcelle +Margot +Mariann +Maribeth +Marietta +Marleen +Marti +Micaela +Minnie +Nan +Nicola +Patrica +Rhoda +Richard +Roseanne +Sharee +Stacie +Sunny +Tamera +Trisha +Adriana +Annetta +Ardith +Athena +Carmella +Carolynn +Carrol +Cherry +Collette +Daisy +Danna +Daryl +David +Dayna +Debera +Deedee +Delfina +Elvia +Erika +Evon +Francis +Gaylene +Hillary +Imelda +Jacque +Jann +Joellen +Latanya +Louann +Mariana +Mavis +Melodee +Moira +Mollie +Monique +Nancie +Nannette +Norine +Phoebe +Richelle +Roxane +Sheryle +Shirlee +Taryn +Teena +Twila +Val +Winifred +Allyson +Alta +Amalia +Angel +Angeline +Antionette +Beverlee +Charline +Christa +Danelle +Deeann +Deidra +Deidre +Deloris +Dinah +Dolly +Earline +Gary +Ginny +Hortencia +Jacquelynn +Jeanene +Jewel +Jimmie +Juli +Julianna +Kathlene +Kathyrn +Kirsten +Krista +Kyle +Lawana +Lesa +Leslye +Lili +Lindsey +Lise +Lourdes +Marjory +Maryjo +Merrie +Mia +Nelda +Paige +Peggie +Rebeca +Reva +Ricki +Ronna +Sharen +Sharla +Shelli +Sherree +Stacia +Ursula +Valentina +Vonda +Vonnie +Alba +Alene +Alfreda +Alva +Amparo +Antonette +Arcelia +Becki +Belen +Blythe +Brinda +Carlotta +Carma +Carmela +Chere +Cherilyn +Cherrie +Clarissa +Corina +Corliss +Cory +Cruz +Cydney +Dalene +Daria +Dayle +Denese +Dennise +Elayne +Eleanore +Elia +Emilie +Frieda +Georgene +Georgetta +Harriett +Jodee +Joella +Joette +Jonni +Jonnie +Juliann +Kandis +Karie +Kerrie +Kevin +Lanell +Laraine +Launa +Lesli +Lezlie +Lilly +Lizabeth +Lonna +Loralee +Lorry +Lynell +Margret +Marisa +Marita +Marylin +Matilda +Mattie +Merilee +Mickie +Millicent +Mina +Nedra +Noelle +Raylene +Renita +Rhea +Roni +Rosaline +Roseann +Roxana +Serena +Sharyn +Shaun +Sheryll +Sigrid +Suanne +Tana +Tari +Tena +Thea +Theodora +Tommie +Tresa +Valeria +Velia +Winona +Wynona +Zelma +Addie +Adrianne +Anthony +Arnita +Bernadine +Bernita +Bonny +Camilla +Carletta +Cathlene +Charlesetta +Chrystal +Cleo +Cyndy +Danita +Darci +Debhora +Delaine +Dru +Drusilla +Earleen +Ermelinda +Esmeralda +Fran +Germaine +Gerri +Gerry +Gigi +Hortensia +Janetta +Joycelyn +Karlene +Kenna +Kimberlie +Kittie +Laurice +Laurine +Liane +Libby +Liza +Loni +Lucie +Lucretia +Mamie +Marianna +Marisela +Marlys +Marna +Meri +Millie +Mirna +Nettie +Nickie +Nicolette +Reta +Rona +Ronnie +Rosalia +Rozanne +Sabina +Sharman +Sharol +Sheridan +Sherril +Shirleen +Sofia +Sophie +Susann +Tamra +Terryl +Tonette +Tracie +Treva +Trinidad +Valinda +Virgie +Vivianne +Adelaide +Aimee +Alexandria +Aline +Allene +Alvina +Alyson +Andra +Antoniette +Autumn +Bennie +Bobette +Bonni +Brigid +Candee +Candida +Caprice +Carroll +Casandra +Casey +Charlette +Charolette +Cherlyn +Corby +Cristi +Cyd +Dahlia +Darcel +Dava +Debborah +Deborrah +Delphine +Denyse +Devin +Devon +Dorian +Dorthy +Dottie +Elba +Elda +Elida +Ellyn +Elma +Elouise +Essie +Etta +Eugenie +Evelia +Fannie +Gabrielle +Georgiann +Georgianna +Gerrie +Glennda +Guillermina +Isabelle +Iva +Jacquelin +Jaime +James +Jaye +Jayme +Jeane +Jenine +Joanie +Johnette +Jorja +Julene +Kara +Karan +Karleen +Kathryne +Kendra +Kit +Larraine +Laury +Lavon +Lavonna +Leana +Leatha +Leesa +Letha +Lisbeth +Lizbeth +Lorine +Louella +Lynelle +Mable +Madalyn +Manuela +Marilou +Maritza +Martina +Melodye +Melva +Michaela +Minda +Monika +Nadia +Nena +Pandora +Penni +Piper +Rayna +Renay +Renea +Rikki +Romelia +Rosalina +Rosann +Rosita +Sadie +Sari +Shanna +Shanon +Shelby +Shirlene +Starr +Steven +Suellen +Tani +Tanis +Teddy +Terre +Teryl +Theda +Vivien +Wannetta +Wendie +William +Zona +Adella +Adelle +Alyse +Annabelle +Annemarie +Ardis +Arlette +Belia +Beryl +Bobby +Bronwyn +Candi +Candis +Candise +Cari +Carin +Carmel +Carolee +Cary +Cassie +Cathe +Chandra +Charis +Christal +Cinthia +Cleta +Clorinda +Corine +Cornelia +Cosette +Cristine +Cristy +Dallas +Darice +Deette +Denette +Deniece +Deon +Devra +Donald +Donetta +Dorita +Drucilla +Dusty +Earnestine +Edward +Elaina +Elana +Elinor +Eloisa +Evie +Flavia +Fredda +Gena +Georgeann +Georgi +Glinda +Goldie +Greta +Gwenn +Gwyn +Hallie +Helga +Ileen +Iona +Isabell +Jacolyn +Janalee +Janina +Janise +Jenene +Jesse +Joani +Joe +Joel +Joelle +Joey +Jolynn +Jonette +Julee +Julienne +Justine +Jyl +Kandice +Karel +Karren +Kathlyn +Kenneth +Lael +Larita +Lauralee +Lavada +Leisa +Lia +Liana +Lilli +Lolita +Lottie +Luci +Luella +Lula +Lyla +Lyndi +Lynnell +Madonna +Marilynne +Maris +Marlyn +Marquita +Marty +Meichele +Michaele +Miranda +Missy +Nancee +Nidia +Niki +Odessa +Odette +Ollie +Ona +Opal +Peggi +Peri +Raelene +Rafaela +Randee +Rebecka +Renata +Renie +Reyna +Ricky +Roselyn +Roxan +Royce +Ruthann +Selma +Sharlyn +Sharyl +Shaunna +Shawnee +Shayne +Sherrell +Simone +Soledad +Star +Starlet +Stefani +Stephenie +Suzi +Tandy +Tania +Teresita +Teressa +Tomi +Valeri +Velinda +Verla +Vernice +Vernita +Vienna +Wende +Willette +Windy +Zelda +Debra +Susan +Linda +Mary +Deborah +Patricia +Karen +Cynthia +Nancy +Pamela +Kathleen +Barbara +Sandra +Donna +Carol +Cheryl +Diane +Sharon +Janet +Denise +Elizabeth +Teresa +Robin +Laura +Lisa +Catherine +Margaret +Rebecca +Janice +Brenda +Kathy +Theresa +Julie +Lori +Diana +Katherine +Victoria +Maria +Paula +Gloria +Debbie +Kathryn +Judy +Judith +Laurie +Carolyn +Leslie +Gail +Christine +Valerie +Vicki +Terri +Virginia +Lynn +Martha +Kim +Terry +Michelle +Ann +Rose +Joyce +Beverly +Connie +Cathy +Marilyn +Shirley +Peggy +Suzanne +Cindy +Stephanie +Wendy +Joan +Michele +Bonnie +Yolanda +Sheila +Kimberly +Sherry +Renee +Elaine +Jennifer +Rhonda +Betty +Sally +Anita +Vickie +Anna +Roberta +Sylvia +Darlene +Jo +Jill +Jean +Anne +Marie +Alice +Colleen +Jacqueline +Jane +Yvonne +Melinda +Tina +Helen +Rita +Frances +Dorothy +Joanne +Ruth +Ellen +Sheryl +Lorraine +Jeanne +Loretta +Irene +Dawn +Maureen +Toni +Carla +Christina +Jan +Marcia +Wanda +Teri +Dolores +Rachel +Eileen +Norma +Gayle +Charlene +Melissa +Carmen +Claudia +Lydia +Charlotte +Holly +Julia +Marsha +Phyllis +Angela +Marla +Melanie +Evelyn +Melody +Andrea +Gina +Vivian +Debora +Sue +Lynda +Esther +Sarah +Marlene +Dana +Jeanette +Monica +Constance +Lynne +Shelley +Annette +Ramona +Regina +Joy +Rosa +Doris +Roxanne +Dianne +Glenda +Louise +Gwendolyn +Vicky +Joann +Heidi +Juanita +Lois +Sheri +Cathleen +Jeri +Sherri +Penny +Lee +Marianne +Arlene +Janis +June +Becky +April +Cecilia +Jackie +Eva +Rosemary +Jody +Joni +Cheri +Amy +Marjorie +Patti +Beth +Josephine +Lucy +Sherrie +Tracy +Carole +Nina +Sheree +Audrey +Robyn +Belinda +Candace +Guadalupe +Sara +Marian +Laurel +Veronica +Ruby +Lynette +Carrie +Geraldine +Jana +Jamie +Jacquelyn +Shannon +Stella +Kelly +Alicia +Deanna +Emily +Kerry +Doreen +Sabrina +Grace +Olivia +Christy +Dianna +Pauline +Terrie +Jeannie +Kay +Rochelle +Therese +Priscilla +Desiree +Janine +Lillian +Lorna +Patrice +Rosie +Antoinette +Cherie +Lauren +Kristine +Irma +Francine +Mona +Darla +Jennie +Vanessa +Georgia +Lucille +Gale +Paulette +Rosalie +Stacey +Nora +Adrienne +Bertha +Karin +Alison +Eleanor +Karla +Margarita +Ronda +Margie +Nadine +Sandy +Ana +Candice +Delores +Janie +Jeannette +Jenny +Patty +Shelly +Heather +Susie +Bobbie +Celia +Isabel +Lupe +Olga +Vera +Elena +Janette +Patsy +Silvia +Claire +Corinne +Jayne +Naomi +Chris +Caroline +Nanette +Leticia +Marta +Rene +Stacy +Cecelia +Ginger +Kimberley +Marion +Tamara +Beatrice +Dora +Jeanine +Clara +Leah +Rosemarie +Alma +Lorrie +Shawn +Trudy +Marcella +Billie +Christie +Edith +Kristi +Delia +Edna +Emma +Maxine +Suzan +Candy +Marguerite +Molly +Pam +Yvette +Dena +Lucinda +Celeste +Sonia +Bonita +Denice +Florence +Lorie +Susanne +Crystal +Lora +Marcy +Marina +Bernice +Jessie +Angelina +Dee +Gwen +Ida +Jeannine +Kathie +Tanya +Gretchen +Katharine +Blanca +Madeline +Shari +Colette +Dona +Erin +Faith +Jolene +Kristin +Lana +Maryann +Bernadette +Bridget +Dale +Elisa +Rena +Rosanne +Lorene +Lynnette +Betsy +Leanne +Luann +Margo +Verna +Joanna +Kimberlee +Lyn +Natalie +Antonia +Randi +Shelia +Aurora +Janelle +Jessica +Lola +Myra +Myrna +Tracey +Adele +Annie +Elsa +Mildred +Nanci +Rae +Wilma +Angie +Estella +Nellie +Noreen +Tara +Cassandra +Hope +Lesley +Darcy +Jodi +Kathrine +Melodie +Pat +Pearl +Thelma +Amelia +Camille +Cheryle +Gay +Jerri +Kathi +Leigh +Sondra +Suzette +Valarie +Helene +Megan +Merry +Polly +Coleen +Rosalind +Sherrill +Allison +Cathryn +Della +Dixie +Hilda +Iris +Kristina +Lila +Mari +Debby +Eve +Kristen +Lauri +Lily +Lou +Miriam +Roxann +Saundra +Ava +Laverne +Luanne +Cora +Corrine +Faye +Genevieve +Gladys +Henrietta +Johanna +Julianne +Lea +Lorelei +Mindy +Sonja +Amanda +Ella +Elva +Georgette +Geri +Ingrid +Jocelyn +Kristie +Lenora +Meredith +Sharron +Shauna +Trina +Alisa +Caren +Danielle +Elsie +Ethel +Gracie +Kari +Kristy +Lucia +Penelope +Sonya +Caryn +Debbra +Harriet +Hazel +Jeanie +Michael +Nikki +Nita +Raquel +Aileen +Alberta +Alexandra +Bobbi +Bonny +Charmaine +Cristina +Danette +Elvira +Esperanza +Frankie +Hilary +Jodie +Karyn +Katie +Katrina +Mitzi +Rachelle +Arleen +Carlene +Diann +Elisabeth +Felicia +Georgina +Kris +Lindy +Luz +Mimi +Rosalinda +Tammy +Vikki +Violet +Dayna +Deana +Eugenia +Gayla +Geneva +Kelley +Marcie +Pamala +Robbie +Susana +Valorie +Adela +Bette +Consuelo +Elise +Erma +Flora +Gertrude +Laureen +Leann +Lena +Lenore +Melba +Susanna +Velma +Beverley +Christi +Claudette +Daphne +Erlinda +Ernestine +Karol +Kerri +Lela +Leona +Leslee +Lilly +Lorri +Ronna +Tonya +Agnes +Clarice +Deirdre +Janell +Juana +Karan +Lilia +Mara +Mercedes +Ofelia +Robbin +Rosario +Roxane +Tami +Tricia +Viola +Cathie +Cindi +Corine +Deidre +Dina +Gaye +Gilda +Inez +Josie +Loraine +Madelyn +Magdalena +Marci +Marilee +Noel +Rhoda +Rowena +Aleta +Deanne +Francesca +Graciela +Ilene +Janeen +Janna +Juliana +Lorena +Melodee +Nicki +Nona +Randy +Roni +Rosalyn +Sherryl +Alana +Alexis +Dinah +Dolly +Eunice +Jann +Josefina +Karon +Kelli +Marilynn +Rosanna +Roxanna +Socorro +Amber +Beatriz +Catalina +Cathrine +Debrah +Dorene +Elissa +Freda +Jacque +Judi +Kitty +Laurene +Maryanne +Merri +Monique +Pamella +Teena +Terese +Ada +Allyson +Bambi +Benita +Charleen +Clare +Eloise +Erica +Estela +Felice +Gena +Greta +Joanie +Lavonne +May +Mercy +Nola +Aida +Carolina +Catharine +Cherryl +Daisy +Darleen +Deann +Debbi +Deena +Elvia +Fay +Francis +Geralyn +Helena +Herlinda +Jami +Katheryn +Kirsten +Leeann +Lita +Liz +Lizabeth +Lourdes +Nicole +Rachael +Robert +Rosetta +Sharlene +Shawna +Sherree +Sydney +Viki +Willie +Abigail +Brooke +Cheryll +Coral +Dawna +Dori +Dorothea +Ernestina +Giselle +Glenna +Jacklyn +Janene +Lanette +Lawanda +Leila +Lillie +Lise +Lonnie +Malinda +Nan +Patrica +Rebekah +Roseann +Sallie +Sherie +Shirlee +Taryn +Adrianne +Aline +Barbra +Carleen +Caron +David +Debi +Evangelina +Hollie +Jacalyn +Kellie +Lani +Lauretta +Lesa +Lina +Lorinda +Mae +Marylou +Maura +Richard +Sandi +Serena +Valentina +Velda +Adeline +Alyce +Armida +Candyce +Cinda +Dede +Edwina +Ivy +Jerry +Jeryl +Johnnie +Ladonna +Latanya +Leanna +Loree +Louisa +Luisa +Madeleine +Martina +Marva +Petra +Reba +Rebeca +Rhea +Rosalina +Rosita +Sharyn +Sidney +Sophia +Stacie +Tonia +Wendi +Avis +Camilla +Carlotta +Carmel +Cherri +Collette +Cristi +Danita +Danna +Daria +Daryl +Dayle +Delilah +Deloris +Earlene +Francisca +Gabrielle +Iva +John +Juliann +Karolyn +Kathlene +Kaye +Kendra +Krista +Lesli +Luana +Maggie +Marty +Neva +Roslyn +Ruthie +Sharen +Sherilyn +Tania +Trudi +Ursula +Venus +Winifred +Alta +Athena +Bianca +Carey +Carmela +Cary +Caryl +Cathi +Cleo +Concepcion +Corina +Danelle +Donita +Dorinda +Elyse +Gerri +Gigi +Ginny +Jacki +Jacquline +Jenifer +Josette +Keri +Leola +Liane +Lidia +Lindsey +Lizbeth +Loni +Marianna +Marisa +Mickey +Micki +Moira +Myrtle +Nedra +Raylene +Ronnie +Starla +Tana +Unknown +Venita +Vickey +Zoe +Alene +Amalia +Angelica +Angelita +Annamarie +Bettie +Cara +Carmelita +Casey +Cassie +Cher +Cherry +Christiane +Clarissa +Clarisse +Cory +Cyndi +Dani +Deedee +Denese +Erika +Etta +Hortencia +Imelda +Ina +Isabelle +James +Jaye +Jerilyn +Joannie +Jodee +Julianna +Juliet +Juliette +Kara +Kit +Kyle +Leonor +Letha +Loreen +Maricela +Marisela +Marti +Mattie +Melva +Merrilee +Michaela +Muriel +Nannette +Paige +Pennie +Santa +Sari +Sharyl +Sheryll +Suzann +Tonie +Winona +Adriana +Alexa +Alyson +Amparo +Angel +Antonette +Candi +Candis +Carolynn +Cecile +Celestine +Charla +Christal +Corliss +Debera +Devon +Dru +Estelle +Fern +Gaylene +Jaclyn +Jacquelynn +Jewel +Jewell +Joette +Joleen +Kate +Kathaleen +Kerrie +Kym +Lark +Lindsay +Loren +Lucila +Madonna +Mamie +Margery +Maribeth +Marietta +Marleen +Marlys +Maryjo +Micaela +Millie +Mollie +Nettie +Norene +Ophelia +Raelene +Renita +Reta +Rosann +Roseanna +Roseanne +Roselyn +Sheilah +Simone +Stefanie +Suzanna +Sybil +Tamra +Tari +Tena +Teresita +Thea +Twila +Val +Valeria +Velia +Vonnie +Willa +Aletha +Althea +Angelique +Annetta +Bennie +Berta +Bessie +Bettina +Blanche +Cari +Carolee +Chandra +Charline +Cookie +Cristine +Delma +Denita +Donald +Dorian +Dottie +Earline +Eden +Eliza +Fatima +Felecia +Florine +Fonda +Freida +Gabriela +Georgiana +Glinda +Hannah +Janel +Jannette +Joellen +Judie +Justine +Kenneth +Kimberlie +Kimi +Larhonda +Laurette +Lavern +Lawana +Leilani +Letitia +Linnea +Lonna +Louella +Margot +Margret +Matilda +Meg +Melonie +Nancie +Nelda +Noelle +Nova +Regan +Romona +Rosalee +Rosalia +Rosalva +Roxie +Rozanne +Shanna +Sherril +Sheryle +Silvana +Sophie +Suzie +Tia +Tommie +Tori +Traci +Treva +Trinidad +Trisha +Veda +Andria +Angelia +Angeline +Aurelia +Babette +Becki +Beckie +Belen +Bethany +Beverlee +Bobette +Cathey +Cecily +Celina +Charles +Charlesetta +Christa +Cindee +Claudine +Corby +Cydney +Dara +Darice +Demetria +Edythe +Elda +Elinor +Enedina +Evangeline +Fannie +Fawn +Francie +Freddie +Frieda +Germaine +Glynda +Hortensia +Jacquelin +Janey +Jeanene +Jenine +Jimmie +Jolynn +Jonell +Kandace +Kandee +Kandy +Karleen +Karrie +Kathryne +Latonya +Leta +Libby +Linette +Lyla +Mariann +Mark +Marlyn +Melony +Meri +Merle +Mickie +Nadia +Nickie +Nicolette +Norine +Ona +Pamila +Pattie +Paul +Randee +Randie +Raye +Renea +Reva +Reyna +Ricki +Roxana +Scheryl +Shelby +Shellie +Sofia +Spring +Star +Stephani +Susann +Tonette +Tressa +Valery +Vienna +Vonda +Wendie +Zandra +Abbie +Abby +Addie +Adrian +Alanna +Alesia +Allyn +Alva +Anamaria +Antionette +Arcelia +Bridgette +Cameron +Carin +Cathlene +Cindra +Cyndie +Danice +Dann +Darby +Darcel +Darci +Darline +Dea +Deborra +Delphine +Denee +Deon +Dian +Dorcas +Doretta +Dorthy +Eleanore +Elia +Erna +Evalyn +Gayleen +Georgene +Georgianna +Gerry +Gisele +Glynis +Gwyn +Heide +Hollis +Jaime +Janett +Jenell +Jere +Jolie +Jonna +Jonnie +Jose +Jovita +Judyth +Julee +Juli +Kandice +Kathe +Kathlyn +Kathyrn +Katy +Kevin +Laure +Laurine +Laury +Lavina +Leatha +Lezlie +Lianne +Lisbeth +Liza +Londa +Lucretia +Lula +Mabel +Mable +Malia +Mariana +Marlena +Marya +Maurine +Mechelle +Melonee +Millicent +Minerva +Monte +Ollie +Ora +Paris +Penni +Phillis +Piper +Rafaela +Rayna +Retha +Robbi +Roy +Ruthann +Sadie +Salli +Sandee +Shaun +Shiela +Starr +Taffy +Tammie +Teressa +Toby +Tracie +Tresa +Trudie +Tyra +Valeri +Vena +Adel +Adelia +Adelina +Adelle +Alix +Anastasia +Anthony +Arla +Arnetta +Audra +Autumn +Bari +Belia +Bella +Bernadine +Blair +Calleen +Callie +Cammy +Carma +Catheryn +Charise +Charisse +Charmayne +Chere +Cherilyn +Cherlyn +Cherrie +Cordelia +Coreen +Cori +Corrinne +Cosette +Courtney +Craig +Cris +Cruz +Damita +Danni +Darcey +Darcie +Darnell +Davina +Debroah +Deeann +Deette +Delfina +Delinda +Dennise +Dodie +Dollie +Donnell +Dorie +Earnestine +Eda +Elana +Eloisa +Emilia +Emilie +Esmeralda +Evie +Evon +Felicitas +Florita +Georgann +Georgeann +Georgeanne +Georgine +Gregoria +Griselda +Guillermina +Gwenda +Gwenn +Hallie +Hattie +Helaine +Ilona +Imogene +Ira +Isabell +Janise +Janyce +Jayme +Jeana +Jeannetta +Jenise +Jerrie +Joe +Joeann +Joella +Johnetta +Jonette +Josephina +Joye +Kandis +Karlene +Kittie +Laraine +Latricia +Laurinda +Leesa +Leonora +Lettie +Liana +Lindi +Lizanne +Lolita +Loralee +Lorry +Lory +Louann +Luanna +Lupita +Lura +Lynelle +Malea +Marcela +Mardi +Maren +Marna +Marylin +Maryrose +Maudie +Mavis +Melisa +Merilee +Merlene +Merrie +Michal +Mina +Minnie +Mirna +Missy +Misty +Nancee +Nena +Nicola +Noemi +Nyla +Opal +Peggie +Prudence +Racheal +Regena +Renae +Renetta +Rennie +Romelia +Ronald +Ronnah +Roseana +Sanna +Selina +Sharleen +Sherian +Sherrell +Sindy +Stefani +Stephenie +Suzi +Sydnie +Synthia +Tani +Teddi +Terilyn +Terisa +Terra +Tessie +Theodora +Tiffany +Tillie +Tiny +Valli +Vangie +Veta +Wende +Zenobia +Susan +Debra +Linda +Mary +Deborah +Karen +Patricia +Cynthia +Pamela +Nancy +Kathleen +Barbara +Sandra +Donna +Sharon +Cheryl +Carol +Diane +Denise +Lisa +Janet +Elizabeth +Teresa +Lori +Laura +Robin +Catherine +Julie +Kathy +Rebecca +Margaret +Janice +Diana +Debbie +Theresa +Kim +Cindy +Brenda +Maria +Laurie +Katherine +Victoria +Kimberly +Kathryn +Valerie +Michelle +Judy +Terri +Paula +Cathy +Martha +Christine +Leslie +Vicki +Lynn +Gloria +Gail +Carolyn +Rose +Ann +Rhonda +Terry +Judith +Tina +Stephanie +Joyce +Virginia +Sherry +Jennifer +Beverly +Suzanne +Peggy +Connie +Shirley +Anita +Bonnie +Renee +Yolanda +Joan +Wendy +Vickie +Anna +Michele +Sylvia +Roberta +Marilyn +Darlene +Sheila +Elaine +Jane +Jill +Sally +Betty +Yvonne +Jean +Dorothy +Alice +Annette +Jacqueline +Sheryl +Jo +Ruth +Colleen +Anne +Rita +Lorraine +Helen +Dawn +Melinda +Marie +Jan +Ellen +Joanne +Frances +Jeanne +Maureen +Irene +Andrea +Phyllis +Angela +Dana +Toni +Loretta +Christina +Norma +Carmen +Teri +Julia +Carla +Monica +Wanda +Eileen +Gayle +Melody +Janis +Charlene +Jeanette +Debora +Evelyn +Sue +Dolores +Gina +Sheri +Lydia +Joy +Marcia +Melanie +Melissa +Tracy +Esther +Charlotte +Vivian +Holly +Regina +Rachel +Shelley +Penny +Sarah +Lynne +Roxanne +Joann +Claudia +Lynda +Juanita +Marlene +Carrie +Constance +Sherri +Arlene +Becky +Dianne +Rosa +Doreen +Ramona +Louise +Marsha +Amy +Rosemary +Heidi +Marla +Cecilia +Eva +Patti +Vicky +Darla +Grace +Jeri +Jody +Cathleen +April +Doris +Jackie +Glenda +Robyn +Beth +Guadalupe +Gwendolyn +Audrey +Joni +Lois +Josephine +Alicia +Belinda +Deanna +Marianne +Marjorie +Cheri +Laurel +Geraldine +Jeannie +Veronica +Kelly +Sherrie +June +Emily +Pauline +Lee +Cherie +Carole +Kerry +Nina +Sheree +Lynette +Sara +Mona +Candace +Dianna +Jana +Ruby +Lillian +Terrie +Rene +Candy +Karin +Lucy +Nora +Dora +Therese +Jamie +Shannon +Kay +Leticia +Margie +Priscilla +Stella +Shelly +Ana +Christy +Marian +Sandy +Jennie +Rosie +Sabrina +Vanessa +Antoinette +Georgia +Susie +Irma +Janine +Stacey +Rochelle +Beatrice +Eleanor +Nanette +Rosalie +Alison +Delores +Heather +Jeannette +Nadine +Desiree +Lauren +Pam +Tanya +Candice +Francine +Kristi +Olga +Tamara +Jacquelyn +Kimberley +Edith +Edna +Karla +Olivia +Isabel +Stacy +Lucinda +Bertha +Erin +Margarita +Alma +Janie +Lorna +Lorrie +Vera +Corinne +Delia +Adrienne +Celeste +Ginger +Natalie +Cecelia +Patrice +Shawn +Gale +Ronda +Shari +Claire +Jayne +Kristine +Celia +Janette +Jenny +Lorie +Patty +Chris +Marta +Jeanine +Clara +Lora +Paulette +Rosemarie +Billie +Bobbie +Lucille +Bernice +Caroline +Mildred +Tracey +Gretchen +Kristin +Lupe +Jodi +Silvia +Crystal +Dena +Yvette +Jessie +Estella +Naomi +Susanne +Marion +Patsy +Elena +Trudy +Antonia +Jeannine +Maryann +Annie +Cassandra +Elsa +Gwen +Jessica +Kathie +Allison +Dale +Miriam +Rosanne +Denice +Kathi +Kimberlee +Angelina +Bernadette +Christie +Dee +Jolene +Marcella +Angie +Florence +Kristina +Kristy +Madeline +Margo +Marguerite +Bridget +Marisa +Rosalinda +Gay +Ida +Jerri +Melodie +Cathryn +Della +Verna +Bonita +Caren +Lynnette +Myra +Amelia +Joanna +Katharine +Leanne +Molly +Betsy +Emma +Lauri +Mari +Sonia +Suzan +Amanda +Darcy +Marina +Rosalind +Camille +Felicia +Pearl +Penelope +Polly +Danielle +Hope +Jocelyn +Lorri +Lyn +Randi +Shelia +Suzette +Thelma +Colette +Katrina +Kristen +Leah +Maxine +Rachelle +Robbin +Consuelo +Debby +Lana +Myrna +Nellie +Rae +Sonja +Caryn +Dixie +Francesca +Jeanie +Kathrine +Wilma +Daphne +Ingrid +Laureen +Lenora +Ernestine +Faith +Georgina +Janelle +Kelley +Ladonna +Megan +Tammy +Debbra +Jodie +Lavonne +Lou +Marcy +Noreen +Roxanna +Viola +Adele +Armida +Aurora +Bobbi +Coleen +Dina +Erlinda +Hilda +Leigh +Lesley +Lorene +Mindy +Susana +Tonya +Alberta +Ava +Christi +Cindi +Corrine +Danette +Dona +Eve +Sherie +Deana +Elsie +Geri +Janell +Kari +Karyn +Leann +Leona +Lola +Tara +Charmaine +Elisa +Elise +Kris +Magdalena +Nicole +Rena +Sherrill +Trina +Blanca +Deanne +Iris +Lani +Lila +Luanne +Mitzi +Sonya +Cheryle +Deena +Deirdre +Dorene +Elvira +Faye +Genevieve +Hilary +Julianne +Lena +Sharlene +Alisa +Carlene +Cora +Eloise +Esperanza +Henrietta +Johanna +Nanci +Nita +Raquel +Roxann +Tami +Gladys +Graciela +Kerri +Kristie +Laverne +Lucia +Pat +Rosanna +Ella +Georgette +Helene +Janna +Juliana +Luann +Mercedes +Pamala +Robbie +Susanna +Valarie +Carey +Cathie +Dorinda +Gracie +Marcie +Meredith +Merry +Shauna +Valorie +Velma +Vikki +Debi +Gayla +Juli +Katie +Alexis +Cathrine +Elisabeth +Harriet +Katheryn +Lesa +May +Sondra +Terese +Vickey +Darleen +Jerilyn +Josie +Kaye +Lilia +Lily +Lourdes +Melba +Nikki +Nona +Rosario +Shawna +Socorro +Tonia +Violet +Arleen +Beverley +Dayna +Dinah +Dolly +Erica +Fay +Flora +Inez +Judi +Kandy +Luz +Malinda +Nannette +Roslyn +Sherryl +Tricia +Aleta +Alexandra +Bambi +Carolina +Claudette +Ethel +Gilda +Glenna +Ilene +Keri +Leeann +Lenore +Letha +Lorelei +Marci +Saundra +Sharron +Wendi +Abigail +Aileen +Carmela +Dani +Janeen +Kirsten +Kitty +Latanya +Lea +Petra +Rosalyn +Roxane +Shellie +Stacie +Adeline +Aida +Bette +Candi +Corina +Cristina +Deidre +Dian +Emilia +Gaye +Geneva +Greta +Helena +Jacque +Jerry +Kellie +Liane +Lillie +Lorena +Marti +Marty +Rebekah +Sandi +Adela +Agnes +Cara +Clarice +Deedee +Diann +Elva +Freda +Glynis +Ivy +Karan +Karon +Kelli +Lilly +Liz +Loraine +Marilee +Marilynn +Nola +Ofelia +Patrica +Rossana +Valencia +Willie +Angelita +Benita +Bettina +Bonny +Candis +Cari +Caron +Cary +Cathi +Cherry +Christa +Corine +Dori +Estela +Etta +Francisca +Gigi +Gisele +Jacki +Janel +Jann +Kandi +Leesa +Louisa +Maura +Melodee +Melva +Rachael +Sophia +Teena +Tracie +Twila +Viki +Yolonda +Amber +Angelica +Avis +Carmelita +Casey +Catharine +Clare +Danita +Dara +Dawna +Debrah +Delilah +Dorothea +Erika +Gena +Jewel +Joanie +Josefina +Krista +Leila +Lindy +Pennie +Randy +Reba +Renita +Robert +Roni +Roseann +Ruthie +Sallie +Sydney +Unknown +Beatriz +Blanche +Caryl +Coral +Danna +Elvia +Eugenia +Evangelina +Frankie +Hazel +Hollie +Jacklyn +Jacquline +Jami +Karrie +Kathlene +Lawanda +Leilani +Lela +Leora +Lindsay +Lise +Lita +Lu +Michael +Mollie +Renae +Starla +Suzanna +Tana +Tommie +Ursula +Val +Winifred +Ada +Adelina +Alyce +Carin +Charleen +Collette +Debbi +Edwina +Erma +Guillermina +Hillary +John +Juana +Laurene +Lizabeth +Loree +Margery +Margret +Mimi +Nancie +Noel +Rhoda +Trudi +William +Adriana +Althea +Athena +Charla +David +Deann +Hortencia +James +Jannette +Jeanna +Karol +Kate +Lauretta +Lezlie +Lidia +Lindsey +Luisa +Madeleine +Manuela +Mara +Maryanne +Moira +Muriel +Nedra +Nettie +Paige +Pamella +Raylene +Rosetta +Roxie +Sharyn +Sheena +Suzie +Alana +Allyson +Bessie +Camilla +Carleen +Catalina +Deborha +Deeann +Fern +Geralyn +Gerri +Ginny +Giselle +Jaye +Jenifer +Jolie +Jonnie +Julee +Katy +Leslee +Loreen +Lorinda +Marva +Maryellen +Mattie +Neva +Nicolette +Peggie +Reva +Sharen +Sheryll +Sofia +Traci +Trisha +Twyla +Valentina +Aletha +Brooke +Carolynn +Cecile +Cheryll +Cristy +Debera +Delfina +Earlene +Elyse +Eunice +Francis +Frieda +Gertrude +Jaime +Jayme +Joe +Johnnie +Joycelyn +Juliet +Kendra +Linnea +Lorretta +Luana +Mae +Martina +Marylou +Mickey +Norene +Ronna +Sheril +Tobi +Velda +Venita +Venus +Abbie +Adrianne +Alanna +Alexandria +Annetta +Antonette +Arline +Autumn +Beckie +Beryl +Brinda +Cherri +Coreen +Deloris +Dennise +Dionne +Ernestina +Evangeline +Felecia +Georgiana +Janene +Jewell +Jonna +Juliann +Lanette +Linn +Lissa +Loni +Loren +Mandy +Maren +Mariann +Marna +Matilda +Meri +Merri +Merrilee +Mickie +Millicent +Mina +Minerva +Monique +Myrtle +Ophelia +Rhea +Sarita +Sharla +Sheryle +Shirlee +Tena +Teressa +Wende +Wendie +Adrian +Amalia +Angel +Aurelia +Belia +Brigid +Candyce +Caprice +Carmel +Cherryl +Cinda +Cindie +Cinthia +Cydney +Cyndee +Danelle +Darcie +Daria +Dede +Deon +Donald +Edward +Elba +Elia +Ester +Harriett +Isabelle +Jani +Jerrie +Jeryl +Joella +Judie +Kandice +Kara +Karleen +Karlene +Kathlyn +Laurette +Laurinda +Leta +Letitia +Lianne +Libby +Lina +Mabel +Madonna +Maggie +Malia +Mark +Martine +Melodye +Merrie +Noelle +Pattie +Raelene +Richard +Rikki +Ronald +Rosalia +Roxana +Selina +Serena +Sherree +Sherril +Sophie +Terrea +Toby +Tonie +Veda +Winnie +Zoe +Alane +Alfreda +Babette +Bernadine +Berta +Carolee +Carroll +Cassie +Charisse +Cindee +Cindra +Corinna +Darline +Darnell +Daryl +Denese +Dollie +Elda +Evon +Fran +Gabrielle +Georgene +Glendora +Ina +Isabell +Johnna +Jovita +Karie +Kevin +Kimber +Kimi +Larry +Leanna +Leonor +Lesli +Linette +Lonnie +Lyla +Lynell +Madelyn +Mamie +Margot +Marguerita +Maricela +Marietta +Marlys +Micki +Millie +Minnie +Nan +Rafaela +Rebeca +Ronni +Rosalba +Rosana +Rosaura +Rowena +Selma +Sharie +Sherilyn +Sidney +Sindy +Steven +Susann +Suzann +Suzy +Tamera +Tari +Tawny +Thea +Tresa +Treva +Valeri +Winona +Zelda +Alejandra +Alene +Alida +Aline +Alvina +Anastasia +Annamarie +Arla +Bobby +Carlota +Carmella +Carrol +Charline +Chere +Cherilyn +Cherlyn +Cherrie +Clarissa +Cornelia +Corrina +Cristi +Cyndi +Dayle +Debborah +Debie +Delena +Dorian +Dorthy +Dru +Edythe +Evette +Fannie +Flavia +Francene +Freddie +Gaylene +Georganne +Georgie +Glinda +Holli +Jacalyn +Jacklynn +Jaclyn +Jacquelyne +Janetta +Janiece +Jeana +Joelle +Joellen +Joi +Juliette +Justine +Karren +Kathey +Kenna +Laraine +Larita +Lavonda +Lia +Lili +Liza +Lolita +Lonna +Luanna +Lucila +Lucile +Lura +Lynelle +Mariana +Marianna +Maribeth +Marisela +Marita +Marleen +Maurine +Meg +Mercy +Michaela +Misty +Nelda +Nicki +Oleta +Randee +Reta +Ricki +Risa +Rosalee +Roseanna +Roseanne +Sharol +Shelli +Shirlene +Soledad +Star +Stephani +Tamra +Tania +Terre +Terresa +Theodora +Tonette +Tori +Trinidad +Velia +Vernita +Vonda +Yasmin +Zandra +Zina +Abby +Adell +Adelle +Adriene +Amparo +Angelia +Antionette +Arcelia +Bernita +Bethany +Bettye +Blair +Brandi +Bunny +Carie +Carlotta +Catheryn +Cecily +Charles +Cheree +Christiane +Chrystal +Claudine +Cleo +Corliss +Cory +Cris +Cristie +Cruz +Cyndie +Daisy +Dalene +Danell +Darcel +Demetria +Deniece +Denyse +Devon +Dorie +Dorine +Effie +Emilie +Enedina +Ermelinda +Estelle +Evonne +Felice +Francie +Gaile +Garnet +Georgeanne +Georgianna +Gwenn +Hannah +Herlinda +Hortensia +Ilona +Imelda +Isela +Jacquelin +Jeni +Jenise +Jere +Jerilynn +Jodene +Joleen +Jolyn +Jolynn +Jonni +Julianna +Julienne +Kathaleen +Katherina +Kathryne +Kenneth +Kerrie +Kimberle +Kimberli +Kit +Kym +Lacey +Lajuana +Lavon +Lawana +Lenda +Lesia +Lesly +Liana +Londa +Lory +Lottie +Lucretia +Lula +Machelle +Manuel +Marijo +Marjory +Maryjo +Mavis +Melisa +Merilee +Merle +Merrily +Michel +Miki +Miranda +Natalia +Nelly +Nena +Nickie +Nicky +Nila +Opal +Ora +Oralia +Page +Penney +Penni +Philomena +Racheal +Renata +Renda +Renea +Rise +Robbi +Roma +Ronnie +Rosalva +Sabra +Sandie +Sharilyn +Sharman +Sharyl +Sherlyn +Sheron +Shiela +Stephen +Stephenie +Susette +Teddi +Tonja +Vada +Valeria +Vonnie +Adelita +Adella +Alta +Alyson +Andree +Andria +Angelique +Anthony +Araceli +Augusta +Barbra +Betti +Bettie +Bev +Beverlee +Bobette +Bridgett +Brooks +Cammie +Candie +Carlyn +Carri +Cathey +Centhia +Chandra +Charlette +Charolette +Cheryal +Christen +Christopher +Concepcion +Coni +Conni +Corrie +Corrinne +Courtney +Dannette +Darby +Darcey +Davida +Dawne +Deboraha +Delene +Delphine +Denita +Dennis +Donette +Doni +Dorcas +Doree +Dory +Dottie +Edie +Elaina +Elayne +Elissa +Elma +Eloisa +Enriqueta +Erlene +Eugenie +Eula +Evie +Fawn +Felipa +Freida +Gabriela +Gabriella +Gaynell +George +Germaine +Gerry +Guadelupe +Gwenda +Gwynne +Hallie +Haydee +Hellen +Herminia +Ila +Iva +Jacqulyn +Janeth +Janise +Jannie +Janyce +Jasmine +Jeanene +Jeani +Jina +Joannie +Jodee +Joline +Jonell +Jose +Joye +Julene +Junie +Justina +Kandee +Karey +Karlyn +Karolyn +Kary +Kathe +Kathern +Kelle +Kendis +Kimberlie +Koreen +Kyle +Lanora +Larraine +Laure +Lauree +Laury +Leatrice +Leisa +Lennie +Leola +Leonora +Lindi +Lisbeth +Lizbeth +Lona +Louanne +Ltanya +Lynetta +Lynnell +Maralee +Marcel +Mardi +Marilou +Marily +Maritza +Marlena +Marlinda +Marlyn +Melani +Melony +Merrilyn +Mia +Micaela +Michal +Midge +Monika +Nadia +Nancey +Natasha +Norine +Ollie +Pandora +Petrina +Randie +Regan +Regena +Reyna +Richelle +Rickie +Robbyn +Robynn +Rocio +Rona +Rosann +Rosita +Sandee +Santa +Sari +Shan +Shaun +Shawnee +Sheilah +Shelby +Stacia +Stefani +Stefanie +Sunday +Tammie +Tani +Taryn +Tenley +Terra +Thais +Thomas +Tonnie +Trena +Trish +Trudie +Tyra +Valery +Vena +Venetia +Vienna +Vita +Susan +Linda +Mary +Cynthia +Debra +Karen +Deborah +Patricia +Nancy +Pamela +Kathleen +Cheryl +Julie +Sandra +Barbara +Cindy +Carol +Lisa +Diane +Sharon +Donna +Laura +Elizabeth +Denise +Lori +Janet +Debbie +Teresa +Kathy +Brenda +Robin +Kim +Diana +Catherine +Theresa +Rebecca +Margaret +Maria +Leslie +Laurie +Kimberly +Terri +Janice +Carolyn +Michelle +Judy +Christine +Cathy +Valerie +Vicki +Victoria +Paula +Kathryn +Gloria +Katherine +Jennifer +Martha +Virginia +Ann +Lynn +Rhonda +Gail +Tina +Terry +Joyce +Rose +Darlene +Connie +Sherry +Annette +Stephanie +Judith +Anna +Sylvia +Wendy +Bonnie +Yolanda +Anita +Suzanne +Joan +Shirley +Peggy +Beverly +Michele +Vickie +Renee +Jill +Roberta +Anne +Marie +Yvonne +Betty +Elaine +Colleen +Sheila +Sheryl +Lorraine +Ruth +Jean +Sally +Tammy +Rita +Jacqueline +Jane +Maureen +Helen +Marilyn +Dawn +Christina +Joanne +Dorothy +Melinda +Dana +Frances +Ellen +Jeanne +Angela +Loretta +Alice +Sue +Teri +Jo +Irene +Monica +Andrea +Carla +Jan +Kelly +Julia +Tracy +Phyllis +Wanda +Carmen +Carrie +Becky +Jeanette +Rachel +Toni +Gina +Norma +Marianne +Eileen +Sheri +Melody +Regina +Charlene +Tamara +Vivian +Sherri +Heidi +Lydia +Melissa +Dolores +Debora +Lynne +Ramona +Evelyn +Holly +Shelley +Esther +Gayle +Jody +Joy +Melanie +Charlotte +Sandy +Penny +Amy +Beth +Dianne +Erin +Rosa +Sarah +Patti +Rosemary +Jackie +Vicky +Pam +Deanna +Lynda +Gwendolyn +Marlene +Juanita +Marcia +Cecilia +Claudia +Grace +Glenda +Doris +Veronica +Doreen +Roxanne +Dianna +Irma +Darla +Louise +Sherrie +Arlene +Jeri +Alicia +April +Jeannie +Audrey +Constance +Marla +Tami +Eva +Belinda +Joann +Janis +Patty +Carole +Guadalupe +Cheri +Christy +Robyn +Shelly +Josephine +Mona +Joni +Laurel +Stacy +Lucy +Marian +Tanya +Cathleen +Marsha +Lauren +Caroline +June +Kerry +Pauline +Sara +Stacey +Shannon +Kay +Lois +Jenny +Lee +Tracey +Dora +Jamie +Lillian +Terrie +Chris +Lynette +Lorna +Jennie +Leticia +Nina +Jodi +Ronda +Kimberley +Rochelle +Stella +Rosie +Ana +Geraldine +Candace +Jana +Crystal +Janine +Margie +Delia +Marjorie +Therese +Vanessa +Emily +Lorrie +Priscilla +Ruby +Heather +Karla +Eleanor +Susie +Gale +Georgia +Karin +Shawn +Nadine +Olivia +Lucinda +Shari +Lupe +Nora +Antoinette +Delores +Alison +Beatrice +Bertha +Claire +Jeannette +Margarita +Natalie +Isabel +Alma +Candy +Corinne +Rosemarie +Sabrina +Rosalie +Paulette +Cherie +Nanette +Maryann +Jayne +Yvette +Adrienne +Patrice +Rene +Sonia +Kristi +Edith +Lora +Elena +Janette +Janie +Marta +Ginger +Jacquelyn +Lauri +Lorie +Jeanine +Olga +Sheree +Clara +Lucille +Patsy +Amanda +Gay +Susanne +Angie +Candice +Celeste +Celia +Christie +Desiree +Francine +Kristin +Jessie +Naomi +Silvia +Bobbie +Trina +Betsy +Colette +Janelle +Bernadette +Cindi +Debi +Elsa +Leah +Cecelia +Debby +Dena +Ida +Joanna +Kelli +Kristine +Lesley +Caren +Cassandra +Edna +Kristina +Marion +Vera +Lorri +Marina +Denice +Gwen +Bernice +Jessica +Kathi +Marguerite +Marcella +Allison +Felicia +Mari +Mildred +Molly +Trudy +Camille +Jerri +Margo +Rosalind +Sonja +Annie +Kari +Angelina +Bridget +Liz +Dee +Billie +Miriam +Blanca +Bobbi +Kelley +Tammie +Emma +Genevieve +Jeannine +Jolene +Kris +Rosanne +Wilma +Florence +Kimberlee +Lynnette +Suzan +Danette +Gretchen +Jodie +Leigh +Pat +Elisa +Leona +Kathie +Leann +Lyn +Rena +Susana +Deanne +Esperanza +Jeanie +Katharine +Lana +Suzette +Adele +Dale +Graciela +Marcy +Tonya +Geri +Jocelyn +Julianne +Kathrine +Myra +Randi +Susanna +Deana +Della +Hilda +Johanna +Kristy +Lena +Myrna +Robbin +Rosanna +Cathryn +Christi +Iris +Katie +Luann +Nellie +Pearl +Amelia +Cora +Geneva +Robbie +Tricia +Alisa +Arleen +Bonita +Coleen +Lenora +Lorene +Verna +Darcy +Debbi +Dorene +Faye +Ingrid +Janell +Kerri +Leanne +Melodie +Nikki +Rae +Shauna +Thelma +Traci +Tracie +Vikki +Aurora +Carlene +Caryn +Corrine +Deena +Katrina +Kellie +Lola +Madeline +Maxine +Megan +Rachelle +Shelia +Antonia +Deirdre +Elvira +Estella +Eugenia +Eve +Hope +Socorro +Dawna +Raquel +Tamra +Charmaine +Faith +Glenna +Lorena +Luanne +Sharron +Tara +Vickey +Aileen +Deann +Debbra +Dina +Erica +Gladys +Laverne +Lenore +Penelope +Rosalinda +Valorie +Ava +Bambi +Consuelo +Elva +Estela +Flora +Juli +Kristen +Kristie +Lucia +Mindy +Sandi +Viola +Hazel +Hilary +Ilene +Jami +Lea +Marcie +Mitzi +Valarie +Candi +Cathie +Josie +Lily +Luz +Sherrill +Claudette +Danita +Dixie +Dona +Dori +Ella +Frankie +Jenifer +Ladonna +Magdalena +Suzanna +Alberta +Bernadine +Cheryle +Danielle +Dayna +Dorinda +Georgette +Harriet +Helena +Helene +Henrietta +Janna +Josefina +Kandy +Kendra +Lani +Lila +Lorinda +Merry +Polly +Roxann +Sondra +Terese +Corina +Deedee +Eloise +Erlinda +Gayla +Gracie +Greta +Juliana +Latanya +Leeann +Noreen +Pamala +Petra +Saundra +Wendi +Ada +Cari +Daphne +Elisabeth +Karol +Karyn +Laureen +Leanna +Lesa +Maura +Nicole +Sherie +Stacie +Agnes +Armida +Bette +Cyndi +Dani +Diann +Elise +Elsie +Ernestine +Ethel +Evangelina +Inez +Judi +Kitty +Lilia +Malinda +Marilee +Melba +Monique +Nanci +Nannette +Nita +Rebekah +Renae +Velma +Alexandra +Alexis +Amber +Clare +Juana +Lou +Marci +Marty +Mercedes +Meredith +Michael +Ofelia +Robert +Sophia +Aida +Althea +Annamarie +Beverley +Cathi +Joanie +Katy +Lindy +Loraine +Maryanne +Raylene +Reba +Roxane +Sallie +Shawna +Tammi +Abigail +Adela +Angelica +Cara +Carin +Cyndy +Elvia +Gabrielle +Georgina +Ginny +Lavonne +Leisa +Lesli +Loree +Manuela +Marisa +Marylou +Pattie +Ruthie +Sonya +Tamera +Twila +Yolonda +Beatriz +Carolina +Clarice +Collette +Dolly +Edwina +Ernestina +Francisca +Gerri +Gisele +Janeen +Jannette +Jerry +Keri +Mariann +Nona +Violet +Carleen +Carmelita +Catalina +Cathrine +Cristina +Debrah +Deidre +Dinah +Juliet +Leila +Leilani +Leslee +Lorelei +Marti +Marva +Melodee +Mimi +Neva +Renita +Rhoda +Ronna +Rosalia +Roseann +Roslyn +Sharyl +Shiela +Starla +Alyce +Angelita +Antionette +Beckie +Benita +Krista +Lawana +Lilly +Lourdes +Mara +Rosario +Suzie +Tana +Tonia +Trena +Abbie +Amalia +Bettina +Caryl +Clarissa +Darleen +Erma +Eunice +Francesca +Gabriela +Gena +Geralyn +Kate +Kaye +Kirsten +Liza +Meg +Mercy +Minerva +Muriel +Nelda +Rachael +Serena +Sharlene +Sherryl +Winifred +Carey +Caron +Cherri +Deborha +Fay +Felecia +Gilda +Ivy +James +Jann +Jayme +Jerilyn +Karrie +Lauretta +Leta +Lindsey +Lise +Lonnie +Madeleine +Mandy +May +Noel +Nola +Pennie +Rebeca +Roxanna +Sheena +Sindy +Sydney +Valentina +Venus +Adriana +Adrianne +Anastasia +Cecile +Cindie +Coral +Corine +Danna +Erika +Freda +Gaylene +Gerry +Gertrude +Janene +Joleen +Julianna +Lanette +Lawanda +Lela +Lia +Lillie +Lita +Merri +Nancie +Nicki +Rosalyn +Shellie +Tena +Zoe +Antonette +Carmella +Carolynn +Catharine +Charleen +Cheryll +Cinthia +Cory +David +Delilah +Deloris +Donita +Eliza +Evangeline +Evonne +Gaye +Jacklyn +Janel +Jerrie +Jewell +Karolyn +Karon +Katheryn +Kathyrn +Kym +Laurene +Lezlie +Lona +Lonna +Madelyn +Madonna +Marilynn +Marlena +Millie +Miranda +Nedra +Pamella +Rhea +Rosita +Sharla +Sherilyn +Sofia +William +Willie +Adrian +Allyson +Avis +Becki +Bessie +Cameron +Charisse +Daisy +Debera +Dottie +Elyse +Fern +Herlinda +Hortencia +Jaime +Jaye +John +Johnnie +Karan +Karlene +Kerrie +Leora +Lidia +Lizabeth +Marisela +Marissa +Mavis +Mickey +Mickie +Nan +Penni +Roseanne +Rosetta +Rowena +Sherree +Teena +Twyla +Velda +Vilma +Abby +Adeline +Alana +Athena +Chandra +Cinda +Cleo +Concepcion +Cori +Dorothea +Gigi +Jacki +Jacque +Jodee +Juliann +Karleen +Kimber +Laural +Letitia +Lilian +Lindsay +Linnea +Loren +Louann +Luana +Marietta +Moira +Nickie +Norine +Paige +Patrica +Pilar +Richard +Ronald +Roni +Rosana +Sandie +Shelli +Simone +Stephany +Tonie +Trisha +Val +Venetia +Wendie +Winona +Aleta +Alfreda +Angel +Beryl +Bianca +Bonny +Brooke +Carmela +Cary +Casey +Charla +Charles +Cyndie +Dorian +Elida +Eloisa +Eula +Evette +Hillary +Imelda +Joetta +Julee +Kimi +Laraine +Lavon +Leesa +Leonor +Leslye +Libby +Lili +Linette +Loreen +Lory +Louisa +Mae +Margot +Margret +Merilee +Noemi +Ophelia +Peggie +Phylis +Reta +Richelle +Rosalee +Roselyn +Rossana +Shelby +Sherril +Staci +Star +Suzann +Suzy +Tamela +Tia +Valeri +Viki +Alita +Angelia +Araceli +Berta +Bethany +Blanche +Bunny +Carmel +Cecily +Cherrie +Cindee +Cris +Cydney +Dalene +Darcie +Dede +Delfina +Delphine +Deniece +Devon +Doretha +Dru +Edie +Elaina +Estelle +Etta +Hannah +Harriett +Heide +Holli +Jeana +Jeanene +Joi +Jonna +Kara +Kathaleen +Kimberle +Krystal +Laurinda +Lorretta +Luisa +Marilou +Mark +Martina +Mattie +Melva +Mia +Millicent +Mollie +Nena +Piper +Randy +Romona +Rosalva +Roxie +Sadie +Sammie +Sari +Shanda +Sharen +Taryn +Theodora +Toby +Trinidad +Ursula +Vivien +Wilda +Adriane +Aimee +Autumn +Bernardine +Bernie +Bettie +Camilla +Candie +Candis +Candyce +Cassie +Cher +Cherlyn +Cherry +Claudine +Cristy +Dara +Daria +Daryl +Deidra +Dian +Dorie +Dorine +Earlene +Edythe +Elayne +Elissa +Emilia +Ester +Francis +Giselle +Hermelinda +Hortensia +Ilona +Isabell +Jacquline +Janetta +Janey +Jeanna +Jodine +Joellen +Judie +Kary +Kathlyn +Kit +Lajuana +Lanell +Larita +Letha +Lida +Lissa +Lynell +Maricela +Marlys +Marna +Martine +Maurine +Merrilee +Miki +Nettie +Niki +Opal +Penney +Peri +Reva +Ricki +Robbi +Ronni +Ronnie +Roxana +Shanna +Sharyn +Sheilah +Sheryle +Signe +Siobhan +Stefanie +Susann +Tamie +Tania +Tasha +Thea +Tobi +Tomi +Tommie +Tori +Troy +Trudi +Valencia +Vonda +Winnie +Adella +Alejandra +Alene +Alexandria +Alta +Alva +Annmarie +Arcelia +Arnetta +Barbie +Barbra +Belva +Brigid +Carolann +Celestine +Charlesetta +Christene +Corliss +Cristine +Danell +Delaine +Delana +Delma +Dennise +Dorthy +Eden +Elia +Elnora +Enriqueta +Esmeralda +Fawn +George +Germaine +Gini +Gregory +Guillermina +Gwyn +Hallie +Hollie +Isabelle +Jacquelin +Jeanetta +Jenell +Jenelle +Jeni +Jewel +Joannie +Jolie +Jonni +Josette +Jovita +Julienne +Karie +Katharyn +Kathern +Kevin +Kimberli +Kimberlie +Kimmie +Kyle +Lark +Launa +Laure +Laurey +Lavern +Leatrice +Liana +Lin +Lolita +Lore +Loyce +Luella +Lynnell +Mabel +Machelle +Maggie +Mamie +Marcelina +Margery +Marianna +Marleen +Maryjane +Marylee +Merle +Merrie +Michel +Minnie +Mirna +Missy +Misty +Nada +Nelly +Pamelia +Rachell +Raelene +Raye +Retha +Rosalina +Samantha +Sandee +Sarita +Shaun +Sheryll +Shirlee +Soledad +Sophie +Starr +Suzi +Sybil +Teddy +Thalia +Thomas +Tona +Tonette +Tony +Treva +Unknown +Valda +Venita +Vida +Vonnie +Abbe +Addie +Adelina +Alanna +Aleen +Aletha +Andree +Annetta +Anthony +Belen +Billy +Bobette +Boni +Brigit +Candee +Carlotta +Carrol +Cece +Charity +Cherilyn +Chrystal +Chyrl +Cinde +Cornelia +Cruz +Cyndee +Dalia +Dann +Darline +Deeann +Deedra +Denese +Dollie +Donald +Donnell +Dorcas +Dovie +Elene +Elinor +Elma +Fatima +Felipa +Flor +Francie +Freddie +Frieda +Gaile +Garnet +Georgine +Goldie +Gwenda +Imogene +Isabella +Jannie +Jasmine +Jenine +Jenise +Jesusita +Jil +Jonelle +Jonette +Jonnie +Joycelyn +Julieta +Juliette +Kandi +Kandice +Karren +Karri +Kathey +Kathlene +Lavonna +Lawanna +Lenette +Lina +Loralee +Lorenza +Loris +Lu +Lupita +Magda +Mardi +Maribeth +Mechelle +Melonie +Meta +Michaela +Mila +Natalia +Nicolette +Norene +Octavia +Olive +Petrina +Phoebe +Pixie +Rafaela +Renata +Rina +Rona +Rosalba +Rosann +Roseanna +Sharie +Sharri +Shawnee +Sheryn +Shirlene +Sidney +Steven +Tamora +Tawny +Teressa +Terra +Tessie +Theda +Tillie +Timothy +Trini +Trude +Vannessa +Velia +Venessa +Wende +Whitney +Zelma +Zina +Alaine +Alix +Alyson +Anabel +Angeline +Annabelle +Apryl +Ardis +Ardyce +Arline +Armanda +Aurelia +Babette +Belle +Candida +Carma +Carolee +Carroll +Cathe +Cathey +Celine +Chantal +Charis +Charline +Charyl +Cherryl +Christa +Christin +Coreen +Corrie +Cristie +Danelle +Danise +Dannette +Darcel +Darice +Deborrah +Delinda +Delisa +Delora +Demetra +Dennis +Desi +Dierdre +Donella +Dorthea +Eda +Eddie +Edward +Elda +Eleanore +Elenor +Ellyn +Emmy +Eugenie +Eulalia +Evelyne +Evie +Fran +Francene +Gabriella +Gayleen +Genie +Georgeann +Georgene +Gianna +Glynis +Hattie +Hollis +Ila +Ina +Ione +Ivory +Jacalyn +Jacky +Janae +Janean +Janiece +Janise +Jay +Jenice +Jennette +Jennine +Jeraldine +Jesus +Jodene +Joelle +Joey +Justine +Kathren +Kathrin +Kathryne +Kayla +Kayleen +Kellee +Kendall +Kenna +Kenneth +Kimm +Lane +Larae +Latonya +Lauralee +Laurette +Lavada +Leola +Lianne +Linnette +Lizbeth +Lorette +Lorilyn +Lourie +Ltanya +Lucretia +Lynelle +Machele +Malia +Maralee +Marcelle +Maren +Marge +Marjory +Marya +Maryellen +Matilde +Melia +Melony +Meri +Micki +Mikki +Mina +Minda +Monika +Myrtle +Nancee +Nila +Noelle +Oleta +Ollie +Perri +Raeann +Ranae +Randall +Randee +Randie +Ray +Rayna +Regan +Risa +Rise +Roanne +Robynn +Rolanda +Rosina +Selma +Sharan +Sharilyn +Sharleen +Sharolyn +Shela +Sherlyn +Shirl +Starlene +Stefani +Sunny +Susi +Tambra +Tammara +Tari +Teddi +Terisa +Terrill +Terrilyn +Thais +Tracee +Tresa +Veda +Velina +Vernetta +Vicci +Vienna +Willa +Zelda +Zena +Susan +Karen +Mary +Linda +Cynthia +Debra +Patricia +Lisa +Julie +Deborah +Cheryl +Pamela +Kathleen +Nancy +Lori +Sandra +Kathy +Barbara +Debbie +Diane +Elizabeth +Laura +Donna +Carol +Denise +Cindy +Sharon +Teresa +Janet +Diana +Brenda +Robin +Kim +Theresa +Michelle +Catherine +Maria +Rebecca +Margaret +Terri +Kimberly +Laurie +Cathy +Christine +Leslie +Tammy +Jennifer +Janice +Judy +Tina +Valerie +Carolyn +Kathryn +Katherine +Rhonda +Paula +Peggy +Vicki +Kelly +Victoria +Lynn +Martha +Gloria +Annette +Darlene +Ann +Renee +Virginia +Terry +Yolanda +Connie +Sylvia +Anna +Stephanie +Joyce +Wendy +Michele +Anita +Shirley +Bonnie +Jill +Suzanne +Rose +Gail +Beverly +Judith +Elaine +Joan +Ruth +Christina +Tamara +Anne +Dana +Dawn +Helen +Colleen +Sherry +Lorraine +Vickie +Joanne +Jane +Sally +Sheila +Sheryl +Angela +Yvonne +Alice +Roberta +Sue +Teri +Marie +Betty +Jean +Becky +Irene +Marilyn +Tami +Andrea +Monica +Carrie +Melinda +Tracy +Jeanne +Jo +Julia +Frances +Toni +Dorothy +Rita +Loretta +Gina +Carla +Jacqueline +Jan +Wanda +Phyllis +Maureen +Carmen +Heidi +Melissa +Pam +Sandy +Ellen +Joann +Norma +Eileen +Patty +Regina +Jeanette +Lydia +Rachel +Sheri +Amy +Evelyn +Beth +Charlene +Jackie +Penny +Vivian +Patti +Rosa +Sherri +Charlotte +Erin +Melody +Vicky +Dolores +Belinda +Melanie +Joy +Sarah +Rosemary +Shelley +Gayle +Holly +Jody +Lynne +Doreen +Lynda +Marianne +Esther +Stacy +Debora +Veronica +April +Deanna +Christy +Dianne +Marcia +Arlene +Darla +Stacey +Juanita +Marlene +Ramona +Cecilia +Irma +Dianna +Eva +Shelly +Glenda +Joni +Claudia +Grace +Jenny +Sara +June +Alison +Audrey +Susie +Carole +Cheri +Louise +Chris +Lucy +Doris +Alicia +Guadalupe +Jeri +Marla +Robyn +Cathleen +Natalie +Tanya +Jeannie +Roxanne +Constance +Lee +Marsha +Sherrie +Shannon +Lorrie +Laurel +Gwendolyn +Lynette +Allison +Janis +Kerry +Lauren +Shari +Tammie +Jamie +Kay +Jeannette +Jodi +Josephine +Karla +Lupe +Nina +Lois +Ronda +Patrice +Caroline +Geraldine +Crystal +Lorna +Olivia +Rene +Shawn +Mona +Kristi +Rosie +Jennie +Margarita +Pauline +Rochelle +Ruby +Terrie +Ana +Lillian +Margie +Nora +Sonia +Leticia +Therese +Cherie +Vanessa +Elena +Karin +Tracey +Edith +Liz +Pat +Sabrina +Adrienne +Heather +Lorie +Priscilla +Marjorie +Delia +Dora +Jana +Kathi +Emily +Marian +Yvette +Georgia +Stella +Alma +Lucinda +Nanette +Candy +Bernadette +Kristine +Debi +Jacquelyn +Kimberley +Celia +Lora +Marta +Bertha +Kelli +Kristin +Kelley +Amanda +Antoinette +Celeste +Eleanor +Nadine +Beatrice +Gale +Paulette +Rosalie +Rosemarie +Angie +Delores +Naomi +Bobbie +Candace +Dena +Kari +Bridget +Trina +Ginger +Christie +Colette +Kris +Claire +Janette +Joanna +Francine +Janine +Marion +Cassandra +Desiree +Molly +Isabel +Kellie +Trudy +Corinne +Janie +Lauri +Susanne +Tamra +Debby +Denice +Olga +Vera +Bernice +Elisa +Kristen +Betsy +Cindi +Christi +Jayne +Jeanine +Marcella +Maryann +Clara +Kristy +Cecelia +Megan +Felicia +Jeannine +Jessie +Lynnette +Silvia +Annie +Candice +Deena +Gwen +Jerri +Jessica +Sheree +Edna +Gretchen +Kimberlee +Margo +Traci +Blanca +Patsy +Tonya +Elsa +Kathie +Susanna +Susana +Billie +Dee +Katie +Katrina +Lorri +Mari +Suzette +Antonia +Lucille +Marguerite +Marina +Rosalind +Kerri +Lana +Kristina +Myrna +Sonja +Della +Emma +Juli +Leann +Leanne +Myra +Deanne +Hope +Leah +Leona +Lesley +Madeline +Miriam +Camille +Debbi +Genevieve +Lorene +Melodie +Amelia +Estella +Florence +Geri +Ingrid +Jolene +Tammi +Angelina +Dina +Suzan +Bobbi +Coleen +Sandi +Shelia +Tamera +Tara +Danette +Elise +Jeanie +Julianne +Leigh +Lola +Marcy +Raquel +Rena +Alisa +Elisabeth +Katharine +Mildred +Nellie +Dona +Faith +Judi +Maxine +Monique +Dorene +Gay +Lesa +Adele +Esperanza +Ida +Jodie +Marisa +Mindy +Sonya +Valarie +Cheryle +Claudette +Nicole +Pearl +Rae +Randi +Robbin +Vikki +Gladys +Hilda +Kathrine +Mercedes +Polly +Saundra +Verna +Cathryn +Dale +Faye +Luann +Luz +Marcie +Tricia +Wilma +Ava +Caryn +Elvira +Ethel +Janelle +Laverne +Pamala +Aurora +Bonita +Deirdre +Erma +Lenora +Lyn +Rosanna +Sophia +Alexis +Caren +Ella +Merry +Rosalinda +Sharlene +Cora +Ernestine +Helene +Juliana +Keri +Lorena +Lourdes +Noreen +Penelope +Rachelle +Rosanne +Cathie +Charmaine +Consuelo +Deana +Gracie +Kristie +Nikki +Robbie +Sherrill +Socorro +Thelma +Valorie +Adela +Aileen +Benita +Cathrine +Clare +Collette +Darcy +Dori +Ginny +Glenna +Jocelyn +Johanna +Latanya +Lena +Shawna +Violet +Beatriz +Corrine +Kirsten +Laureen +Loraine +Luanne +Marci +Roxann +Sondra +Tamie +Tracie +Alberta +Cyndi +Danita +Dayna +Elsie +Erlinda +Estela +Gabrielle +Georgina +Harriet +Hazel +Kitty +Lani +Lea +Lilia +Malinda +Nita +Suzy +Allyson +Cari +Daphne +Erica +Eugenia +Eve +Gerri +Katy +Krista +Leanna +Lenore +Lou +Ofelia +Rosario +Angelica +Carmelita +Evangelina +Francisca +Graciela +Inez +Iris +Karyn +Katheryn +Ladonna +Leeann +Lindy +Nanci +Roxane +Sherie +Alexandra +Amber +Flora +Francesca +Georgette +Jami +Keely +Leisa +Magdalena +Roxanna +Stacie +Vickey +Viola +Ada +Arleen +Bernadine +Cristina +Danielle +Deann +Gayla +Gigi +Ilene +Ivy +Lise +Maggie +Marilee +Michael +Nicki +Rachael +Wendi +Bambi +Bonny +Cathi +Charla +Jaime +Josie +Lucia +Mara +Marilynn +Pattie +Zoe +Antonette +Candi +Carey +Carlene +Catalina +Diann +Dorothea +Elvia +Gaye +Geneva +Greta +Hilary +Jenifer +Josefina +Karon +Karrie +Lillie +Louisa +Nona +Rosalyn +Val +Aleta +Armida +Christa +Debbra +Dixie +Janell +Juana +Leslee +Lidia +Lila +Lily +Marisela +Mimi +Mitzi +Ronna +Suzanna +Terese +Agnes +Brigitte +Clarice +Danna +Erika +Imelda +Janel +Janna +Joanie +Lizabeth +Luana +Maryanne +May +Rhoda +Roseanne +Ruthie +Serena +Starla +Suzie +Tambra +Angelita +Bessie +Carolina +Cary +Deidre +Gena +Gisele +Henrietta +Janeen +Jayme +Karol +Lindsay +Lissa +Lonnie +Loreen +Mariann +Perri +Richard +Roseann +Sharron +Teena +Velma +Aida +Cherrie +Elva +Felecia +Fern +Leila +Leilani +Lesli +Mandy +Manuela +Marylou +Maura +Missy +Mollie +Neva +Roslyn +Sandie +Shauna +Sofia +Starr +Tana +Alfreda +Bette +Beverley +Casey +Cherri +Coral +Cori +Dani +Darleen +Dawna +Dede +Eloise +Fay +Gilda +Helena +Kandy +Kevin +Liane +Lorelei +Meredith +Natasha +Ophelia +Rosetta +Staci +Twila +Viki +Adrianne +Alana +Athena +Bridgette +Brigette +Cara +Cecile +Chandra +Charleen +Cinthia +Corine +Cory +Cyndy +David +Dottie +Ernestina +Juliet +Kerrie +Lavonne +Lorinda +Merrilee +Nannette +Noel +Renae +Rowena +Sabra +Shelli +Thea +Venita +Winona +Aimee +Angel +Carmela +Corina +Delilah +Freda +Gabriela +Gaylene +Geralyn +Liza +Margot +Marty +Melisa +Noelle +Patrica +Peggie +Rebekah +Robert +Sherryl +Tia +Tonia +Ursula +Willie +Winifred +Althea +Alyce +Andra +Annamarie +Annetta +Carleen +Cinda +Cindie +Concepcion +Daisy +Deedee +Dorinda +Edwina +Gertrude +Giselle +James +Jerrie +Joellen +Kandi +Karan +Kendra +Lanette +Laurene +Lauretta +Leonor +Libby +Linnea +Madeleine +Mamie +Margret +Maricela +Marietta +Mark +Marva +Maryellen +Melodee +Nan +Nicolette +Nola +Pennie +Reba +Rosalia +Sharyl +Sheena +Sindy +Soledad +Trena +Treva +Valeria +Abigail +Adriana +Brooke +Cammie +Charisse +Coreen +Darline +Dian +Dolly +Elida +Frankie +Hermelinda +Hortencia +Jacki +Jacklyn +Jacque +John +Johnnie +Julee +Kathaleen +Kathlene +Kimber +Lela +Letha +Lita +Lolita +Lory +Melba +Nedra +Penni +Petra +Raylene +Rebeca +Sallie +Shellie +Sherilyn +Suzi +Sydney +Tamela +Trisha +Trudi +Venus +Vonda +Yolonda +Adrian +Angelia +Beckie +Blanche +Brigid +Carlotta +Carolynn +Caron +Caryl +Cassie +Clarissa +Cristy +Danelle +Daryl +Deborha +Debrah +Delinda +Enedina +Etta +Eunice +Evangeline +Frieda +Isabelle +Jerry +Jovita +Juliann +Kara +Karee +Kyle +Laurette +Lavon +Leesa +Letitia +Lorry +Louann +Lynell +Maritza +Mattie +Mercy +Merri +Micki +Moira +Nancie +Paige +Perla +Rosalina +Rosita +Sharla +Shelby +Shirlee +Tammara +Tari +Tena +Twyla +Valencia +Velia +Adelina +Alida +Alta +Amparo +Barbra +Becki +Belen +Bettina +Carie +Carmel +Carri +Catharine +Celestine +Celine +Cherryl +Corey +Cristine +Dara +Darci +Deloris +Earlene +Edie +Georgiana +Gerry +Ina +Jerilyn +Jewel +Joi +Joleen +Judie +Kaye +Kendall +Kori +Lawanda +Leta +Loren +Madonna +Marlena +Mickie +Miki +Mina +Minerva +Muriel +Opal +Pamella +Phillis +Phoebe +Randy +Roni +Sabina +Samantha +Sandee +Shaun +Sidney +Taryn +Unknown +Veda +William +Abbie +Adriane +Anastasia +Annabelle +Antionette +Brinda +Carrol +Chantal +Chrystal +Cyndie +Darcie +Debera +Deeann +Dinah +Dodie +Edward +Elizebeth +Elyse +Estelle +Fran +Georgianna +Herlinda +Isabella +Janene +Jann +Jeanna +Jesus +Jewell +Jodee +Josette +Juliette +Justine +Karie +Karlene +Karri +Kate +Lark +Leonora +Lezlie +Lilly +Lina +Lona +Loni +Lorita +Lucretia +Mariana +Marissa +Marleen +Merrie +Mickey +Monika +Myrtle +Nelda +Nena +Pilar +Portia +Raelene +Renata +Renita +Retha +Reyna +Robbi +Romona +Rona +Rosana +Rosella +Shana +Shanna +Sharen +Sherlyn +Stephani +Thomas +Tomi +Tommie +Tonja +Trudie +Abby +Adeline +Alyson +Araceli +Avis +Barbie +Bev +Bianca +Cecily +Cherlyn +Cheryll +Christopher +Claudine +Cristi +Cruz +Daria +Dennise +Devon +Donita +Dorie +Dorthy +Eilene +Elda +Enid +Genoveva +Georgene +Helga +Ila +Jona +Kareen +Kathryne +Kathyrn +Keli +Kimberlie +Lajuana +Latonya +Liana +Lianne +Lisette +Lizanne +Loree +Lorretta +Loyce +Lu +Lula +Lupita +Machelle +Malia +Marilou +Melva +Michaela +Michaele +Nickie +Noemi +Reina +Rory +Roselyn +Selena +Selina +Sherill +Sherree +Star +Tamy +Tania +Teressa +Theodora +Tracee +Troy +Valentina +Vida +Wendie +Aline +Amalia +Anitra +Barb +Bernita +Callie +Cammy +Candis +Candyce +Carin +Celina +Chari +Charlette +Cherry +Cookie +Cornelia +Courtney +Cris +Darnell +Dominique +Doretta +Doria +Dorine +Elaina +Elinor +Elissa +Ellyn +Emilie +Esmeralda +Ester +Evonne +Fatima +Fawn +Felice +Gary +Genie +Germaine +Glinda +Glory +Goldie +Griselda +Gwenda +Hillary +Iva +Jacalyn +Jani +Jannette +Jeana +Jeanice +Jeffrey +Jenni +Joetta +Kaylene +Kellee +Kimberli +Kimbra +Larhonda +Laure +Lawanna +Leana +Leslye +Lettie +Lindsey +Louella +Lowana +Lucina +Madelyn +Mae +Mallory +Marcela +Marianna +Marquita +Marti +Martina +Mechelle +Meg +Merilee +Michel +Milissa +Nettie +Nicola +Odessa +Paul +Penney +Peri +Richelle +Rosalva +Roxie +Sharleen +Shawnee +Shayne +Sheilah +Sherril +Sheryll +Shiela +Shirlene +Sophie +Starlene +Stephany +Susann +Susy +Sybil +Tani +Tori +Tressa +Trinidad +Valene +Valeri +Valery +Venetia +Vita +Willa +Abbe +Adella +Alba +Alexa +Alexandria +Alva +Andre +Andria +Anthony +Arcelia +Ardis +Astrid +Augustina +Balinda +Berta +Bettie +Bonni +Bunny +Cameron +Camilla +Candie +Carma +Carolee +Charline +Cher +Christiana +Concetta +Consuela +Cydney +Cyndee +Daniel +Danise +Dannette +Deb +Deboraha +Delaine +Delfina +Demetria +Deniece +Denita +Denna +Deon +Donette +Drusilla +Earline +Effie +Elayne +Elia +Ellie +Emilia +Evette +Eydie +Francie +Francis +Hattie +Heide +Hortensia +Isabell +Jacquelyne +Janey +Jeani +Jenine +Jina +Joe +Jolie +Jonell +Jonie +Jonna +Julienne +Justina +Karel +Karolyn +Kathyleen +Kristan +Kym +Lanita +Lauralee +Lavina +Lawana +Layne +Leandra +Lelia +Letty +Lida +Lizbeth +Lonna +Loralee +Lore +Louanne +Lucila +Luisa +Lura +Mabel +Mable +Manon +Margery +Maribeth +Marna +Maryjo +Maurine +Mavis +Melvina +Merlene +Mike +Miranda +Mirna +Misty +Nancee +Nila +Norine +Paulina +Ranae +Reva +Rhea +Ricki +Ronni +Rosalee +Rosina +Rozanne +Sharman +Sharri +Sigrid +Stanley +Steve +Steven +Tammera +Teddi +Terra +Teryl +Tessie +Tomasa +Trish +Vanita +Virgie +Vonnie +Zelda +Alejandrina +Alene +Aletha +Allene +Anamaria +Andree +Annalee +Annmarie +Arden +Autumn +Babette +Blair +Blythe +Bobby +Bridgett +Caprice +Carletta +Carmella +Carolann +Carroll +Christal +Christene +Christiane +Christianne +Clair +Cleo +Conni +Corinna +Corliss +Corrie +Criselda +Curtis +Darlena +Dayle +Deatrice +Debie +Delene +Denae +Denese +Doni +Donnell +Dorcas +Dyann +Eddie +Eden +Elma +Enriqueta +Eugena +Evon +Fonda +Francene +Frank +Freida +Gia +Ginnie +Gregory +Gwenn +Hallie +Holley +Holli +India +Jacquelynn +Jaimie +Janan +Janella +Jay +Jayna +Jeane +Jenene +Jil +Joelle +Jolyn +Jonni +Julianna +Karina +Karma +Karren +Karry +Kary +Karyl +Kasey +Kathe +Kathern +Kenda +Kimberely +Kit +Kolleen +Koreen +Kyra +Lane +Larae +Launa +Laural +Laurice +Laurinda +Lavern +Leatrice +Leeanne +Lenna +Lilli +Linette +Lottie +Luanna +Lucie +Lynelle +Lynnda +Manette +Marcelle +Mardi +Mariellen +Marilu +Marita +Marjory +Marlinda +Marlys +Maya +Melodi +Melony +Merle +Meryl +Millicent +Millie +Minnie +Mitzie +Niki +Norah +Nyla +Octavia +Ola +Ollie +Ora +Oralia +Peggi +Pier +Piper +Rachele +Rayma +Rayna +Renea +Risa +Rise +Robbyn +Roben +Roberto +Rolanda +Ronnette +Rosalba +Roseanna +Sari +Selma +Shanda +Shannan +Sharyn +Shellee +Sherre +Shonda +Suanne +Susannah +Suzann +Sylvie +Synthia +Tajuana +Tam +Tamar +Tamarah +Tammey +Tamre +Tawni +Terilyn +Thresa +Toby +Toya +Tresa +Tyra +Valda +Valinda +Vallerie +Vicci +Victor +Vivien +Willette +Wynona +Zina +Zoila +Mary +Karen +Susan +Linda +Lisa +Cynthia +Patricia +Debra +Deborah +Donna +Sandra +Julie +Lori +Pamela +Debbie +Laura +Nancy +Cheryl +Elizabeth +Kathleen +Kathy +Diane +Cindy +Denise +Carol +Barbara +Sharon +Teresa +Robin +Michelle +Janet +Kim +Diana +Brenda +Kimberly +Terri +Theresa +Maria +Tammy +Catherine +Rebecca +Kelly +Margaret +Laurie +Cathy +Christine +Leslie +Judy +Tina +Valerie +Rhonda +Jennifer +Janice +Kathryn +Carolyn +Katherine +Annette +Paula +Anna +Stephanie +Victoria +Dawn +Ann +Wendy +Martha +Renee +Gloria +Vicki +Jill +Suzanne +Lynn +Connie +Michele +Sherry +Peggy +Sylvia +Terry +Beverly +Anne +Dana +Yolanda +Joyce +Sheila +Bonnie +Tamara +Tracy +Anita +Shirley +Virginia +Darlene +Carrie +Colleen +Rose +Gail +Elaine +Yvonne +Teri +Becky +Judith +Angela +Roberta +Christina +Tami +Lorraine +Ruth +Joan +Sheryl +Marie +Andrea +Vickie +Monica +Sally +Helen +Sandy +Joanne +Pam +Alice +Jane +Toni +Gina +Betty +Julia +Sue +Jean +Ellen +Dorothy +Carla +Sheri +Frances +Maureen +Jeanne +Loretta +Irene +Melinda +Marilyn +Carmen +Sherri +Melissa +Rita +Heidi +Beth +Stacy +Amy +Eileen +Jacqueline +Shelly +Wanda +Jan +Rachel +Norma +Erin +Jo +Deanna +Jeanette +Regina +Dolores +Rosa +Phyllis +Shelley +Patty +Lydia +Jackie +Penny +Esther +Evelyn +Melanie +Ramona +Joann +Melody +Vivian +Charlene +Joy +Patti +Holly +Stacey +Lynne +Rosemary +Veronica +Lynda +Cecilia +Gayle +Jamie +Charlotte +Irma +Belinda +Roxanne +Alicia +Sarah +Arlene +Jody +Juanita +Debora +Grace +April +Chris +Sara +Marlene +Vicky +Tammie +Darla +Audrey +Doreen +Eva +Shannon +Claudia +Glenda +Dianna +Leticia +Marianne +Dianne +Marcia +Cheri +Shari +Louise +Tanya +Lynette +Heather +Kelley +Jenny +Lauren +Nora +Sonia +Christy +Joni +Jodi +Nina +Alison +Rochelle +Carole +Natalie +Mona +Jeri +Sherrie +Allison +Doris +Kimberley +Ronda +Vanessa +Guadalupe +Josephine +Terrie +Cathleen +Liz +Crystal +Caroline +June +Gwendolyn +Kerry +Lillian +Shawn +Lorrie +Marla +Jana +Laurel +Candy +Janis +Lois +Kelli +Therese +Jeannette +Cherie +Constance +Robyn +Susie +Ana +Jeannie +Marjorie +Stella +Bernadette +Pauline +Tracey +Jennie +Lupe +Patrice +Yvette +Geraldine +Margarita +Margie +Marsha +Rene +Sabrina +Kristi +Lucy +Ginger +Edith +Kay +Lee +Bridget +Dora +Kristin +Eleanor +Karla +Kristen +Joanna +Lora +Beatrice +Emily +Marian +Rosie +Lorie +Olivia +Delia +Jeanine +Francine +Kristine +Lorna +Nadine +Candace +Marta +Debby +Janine +Karin +Trina +Antoinette +Kari +Maryann +Rosalie +Ruby +Bertha +Claire +Delores +Leanne +Paulette +Celeste +Priscilla +Tamra +Elena +Olga +Leah +Isabel +Betsy +Amanda +Kathi +Angie +Corinne +Kellie +Pat +Alma +Felicia +Katie +Monique +Tamera +Cassandra +Sonya +Nanette +Rosemarie +Tonya +Christie +Georgia +Lauri +Kris +Tammi +Ingrid +Danette +Desiree +Elisa +Katrina +Lucinda +Colette +Gretchen +Patsy +Sandi +Lucille +Margo +Dee +Janette +Janie +Silvia +Debi +Dena +Naomi +Camille +Janelle +Adrienne +Cecelia +Celia +Clara +Della +Gwen +Kathie +Molly +Bobbie +Traci +Jeannine +Lorri +Marina +Coleen +Edna +Elsa +Emma +Jerri +Jessie +Vera +Cindi +Dina +Judi +Kerri +Susanne +Bernice +Julianne +Suzette +Ida +Jacquelyn +Gale +Alisa +Candice +Kristy +Rosalind +Amelia +Lynnette +Marcella +Myra +Jayne +Jessica +Jolene +Annie +Blanca +Denice +Jodie +Kristina +Sonja +Trudy +Billie +Florence +Jeanie +Lorena +Miriam +Myrna +Deanne +Kimberlee +Lesley +Marion +Susana +Marguerite +Melodie +Tricia +Valarie +Antonia +Sheree +Angelina +Erica +Hope +Keri +Robbin +Shelia +Tara +Darcy +Geri +Ladonna +Madeline +Mildred +Verna +Faith +Karyn +Lana +Leigh +Lorene +Nicole +Rena +Suzan +Cyndi +Leona +Raquel +Rosanne +Susanna +Tracie +Bambi +Bobbi +Gay +Gigi +Malinda +Mari +Thelma +Caren +Deann +Dona +Marcy +Christi +Deena +Deirdre +Eve +Genevieve +Juli +Luz +Marcie +Pearl +Rachelle +Angelica +Caryn +Esperanza +Estella +Graciela +Venus +Vikki +Brigitte +Cari +Carlene +Lucia +Magdalena +Maxine +Deana +Elisabeth +Gladys +Katharine +Lea +Rosanna +Corrine +Dori +Gracie +Leann +Mercedes +Charmaine +Lena +Lenore +Marci +Shauna +Adele +Elsie +Kirsten +Lenora +Mindy +Mitzi +Wilma +Adela +Aileen +Arleen +Dayna +Debbi +Elise +Johanna +Maura +Megan +Rosario +Shawna +Danielle +Georgina +Hazel +Hilda +Leeann +Meredith +Stacie +Tori +Alberta +Aurora +Cathryn +Dixie +Ella +Geneva +Jenifer +Josie +Karrie +Kathrine +Katy +Kitty +Lola +Lourdes +Maggie +Nellie +Polly +Randi +Tamie +Alexandra +Amber +Cora +Eugenia +Hilary +Kendra +Roseann +Saundra +Viola +Allyson +Dorene +Iris +Jami +Kristie +Lesa +Ofelia +Pamala +Rae +Rosalinda +Sherrill +Socorro +Claudette +David +Elvira +Erika +Juana +Lilia +Lindy +Luann +Robbie +Roxane +Cathie +Danita +Elva +Gabrielle +Helene +Henrietta +Inez +Juliana +Laverne +Lyn +Nikki +Roxanna +Sharlene +Tamela +Carey +Cary +Cheryle +Consuelo +Greta +Keely +Lawanda +Leanna +Nanci +Ruthie +Sherie +Clare +Cristina +Deidre +Elvia +Freda +Lavonne +Lizabeth +Marisa +Noreen +Roxann +Staci +Starla +Suzy +Sydney +Valorie +Athena +Beatriz +Bernadine +Ernestine +Frankie +Gaye +Janna +Joanie +Kandy +Kerrie +Lani +Merry +Michael +Nita +Sophia +Tonia +Antionette +Bridgette +Candi +Cathi +Cathrine +Diann +Dorothea +Erma +Harriet +Helena +Lily +Rosalyn +Roslyn +Sondra +Tania +Velma +Armida +Ava +Carolina +Cherri +Daphne +Dinah +Dorinda +Edwina +Estela +Faye +Georgette +Josefina +Laureen +Liza +Penelope +Rachael +Robert +Serena +Tari +Terese +Vickey +Cassie +Dale +Flora +Johnnie +Juliet +Kyle +Lou +Mae +Mara +Marilee +Marilynn +Millie +Patrica +Pennie +Angelita +Carmelita +Catalina +Daisy +Dawna +Erlinda +Janell +Jocelyn +Karol +Latanya +Lila +Lise +Loraine +Maryanne +Maryellen +Tambra +Violet +Wendi +Agnes +Angel +Cecile +Debbra +Deedee +Dorian +Eunice +Evangelina +Gayla +Gerri +Glenna +Ilene +Ina +Kara +Katheryn +Kimber +Kym +Liane +Lillie +Mandy +Mariann +Marti +Marylou +Merri +Muriel +Pamella +Renita +Rhoda +Shelli +Shellie +Suzie +Taryn +Adriana +Alyce +Beckie +Benita +Bonita +Cara +Carleen +Casey +Danna +Debrah +Ethel +Ginny +Jaime +Kate +Kellee +Leila +Leilani +Lidia +Lorelei +Manuela +Meg +Pattie +Petra +Sandie +Shanna +Tena +Aida +Alexis +Annemarie +Barrie +Carin +Carmela +Caron +Corina +Cory +Dani +Darleen +Eloise +Francisca +Gabriela +Gilda +Herlinda +Karon +Krista +Leslee +Louisa +Luana +Luanne +Martina +Mercy +Mimi +Nannette +Neva +Nola +Paige +Rebeca +Ronna +Sharron +Suzanna +Veda +Amalia +Bettie +Bonny +Chandra +Clarice +Dara +Edie +Ernestina +Francesca +Guillermina +Jacki +John +Juliette +Kaye +Lita +Loren +Lorinda +Luisa +Madeleine +Merrie +Monika +Peri +Tana +Velda +William +Ada +Alana +Anastasia +Andra +Annamaria +Annamarie +Bianca +Brigette +Clarissa +Deloris +Dominique +Felecia +Gena +Ivy +Janene +Kendall +Latonya +Lezlie +Lianne +Lindsay +Mamie +Marva +May +Melba +Niki +Rebekah +Renae +Rosetta +Simone +Theodora +Adelina +Alfreda +Blanche +Cammie +Cindie +Collette +Cristy +Cyndie +Dolly +Donita +Iva +Janeen +Janel +Juliann +Karan +Karie +Karri +Leonor +Lilly +Lina +Linnea +Lory +Marisela +Melodee +Michell +Nicki +Nicolette +Perri +Raelene +Roni +Selina +Shirlee +Stefanie +Val +Yolonda +Adriane +Antonette +Babette +Brooke +Carroll +Caryl +Christa +Cindee +Cristi +Dede +Deeann +Elida +Ester +Fay +Fran +Gisele +Hannah +Isabelle +James +Jodee +Jonnie +Kathlene +Lavon +Lesli +Letty +Machelle +Maricela +Marty +Misty +Noel +Pilar +Rhea +Rosalva +Sallie +Shelby +Teddi +Torey +Trudi +Winifred +Abigail +Adeline +Adrian +Aleta +Alexandria +Allene +Bette +Bridgett +Carmel +Carolynn +Catharine +Charisse +Concepcion +Coral +Coreen +Courtney +Cyndy +Daria +Deborha +Dian +Dorine +Etta +Evangeline +Evonne +Francie +Gaylene +Geralyn +Hortencia +Jacque +Joi +Justine +Laurene +Leisha +Libby +Lindsey +Louann +Meri +Mickey +Mollie +Noelle +Nona +Penni +Randy +Romelia +Ronnie +Rosalia +Roseanne +Sandee +Sharyl +Sherryl +Sofia +Tommie +Tonette +Twila +Ursula +Valentina +Venita +Viki +Zina +Araceli +Belen +Berta +Beverlee +Beverley +Camilla +Charleen +Charles +Cherry +Cori +Daniel +Daryl +Debie +Deidra +Delfina +Delphine +Doretta +Dorthy +Earlene +Eden +Elissa +Evette +Imelda +Jacklyn +Jannette +Jerry +Joellen +Joetta +Judie +Julee +Julianna +Kimberli +Lajuana +Laronda +Leesa +Lela +Lia +Loree +Marietta +Melodi +Mia +Mickie +Mirna +Reba +Reina +Richard +Risa +Rona +Rosita +Rowena +Sharla +Shaun +Sherilyn +Shirlene +Siobhan +Steven +Tomi +Trena +Tresa +Treva +Trinidad +Trisha +Venetia +Wendie +Willie +Zoe +Abby +Adrianne +Alesia +Alida +Angelia +Avis +Becki +Carrol +Charlette +Cheryll +Christiane +Cris +Elaina +Elia +Elma +Emilia +Enriqueta +Esmeralda +Estelle +Fawn +Freida +Frieda +Griselda +Heide +Hortensia +Jacquline +Jeanna +Jenni +Jerilyn +Jewel +Jolynn +Joseph +Kandi +Kandis +Karey +Karolyn +Kelle +Kimi +Lanette +Lissa +Lona +Lore +Lorretta +Lulu +Lynetta +Margot +Mark +Marlena +Maya +Millicent +Minerva +Minnie +Nedra +Portia +Princess +Raylene +Reyna +Sean +Sharee +Sharen +Sherril +Shiela +Star +Stefani +Suzann +Suzi +Terre +Thea +Tonie +Tonja +Vonnie +Adriene +Alejandra +Alta +Althea +Alva +Alyson +Annabelle +Barbra +Bev +Blair +Bobby +Brandy +Carolee +Cecily +Chana +Charla +Cherise +Cherrie +Claudine +Cleo +Corey +Corine +Cornelia +Cruz +Darci +Darcie +Dayle +Devon +Eulalia +George +Gertrude +Gia +Giselle +Glynis +Jacqulyn +Jaye +Jayme +Karyl +Kathlyn +Kathryne +Kevin +Kit +Laure +Leanora +Leatha +Leta +Loni +Lucie +Madonna +Marcelle +Marianna +Marissa +Maritza +Marybeth +Maryjo +Micaela +Miranda +Missy +Moira +Nancie +Natasha +Noemi +Norine +Paris +Paul +Raymond +Renea +Richelle +Ronald +Rosana +Roxan +Selena +Sharilyn +Sheryll +Sindy +Sophie +Sybil +Synthia +Tammara +Tani +Teena +Thomas +Timothy +Trish +Tyra +Valencia +Vernice +Vilma +Vonda +Adelita +Alvina +Amparo +Anamaria +Andree +Andria +Annetta +Astrid +Barbie +Bettina +Bobette +Brian +Brigid +Candie +Carlota +Carri +Casandra +Celine +Cherlyn +Christel +Chrystal +Cindra +Cinthia +Conni +Cristie +Cydney +Dalene +Delene +Dennis +Dion +Dollie +Dorie +Dorrie +Dottie +Drucilla +Earline +Eliza +Eloisa +Fonda +Francis +Gemma +Georgetta +Gidget +Haydee +Isabell +Jann +Jeanene +Jenelle +Jenine +Jerrie +Jolyn +Jonelle +Julieta +Kathern +Kathey +Kenneth +Kimberlie +Kristal +Lanita +Laraine +Larhonda +Lark +Latricia +Lelia +Leonore +Lolita +Lonna +Lonnie +Lottie +Lyndi +Lynelle +Lynnel +Mabel +Madelyn +Margret +Mariana +Marna +Maryjane +Matilda +Michel +Monette +Nelda +Penney +Raeann +Rafaela +Randie +Regan +Ricki +Romona +Rozanne +Samantha +Sarita +Shana +Sharyn +Shawneen +Sherill +Sherree +Sheryle +Sidney +Stephenie +Tamy +Tamyra +Tanja +Tia +Tisha +Tommi +Tony +Valeria +Valinda +Valli +Velia +Viveca +Wende +Winnie +Wynona +Alba +Aline +Alisia +Alondra +Alycia +Arcelia +Autumn +Bessie +Bonni +Brita +Callie +Cameron +Cammy +Candyce +Celina +Charline +Chere +Cherryl +Cristine +Danae +Dannette +Darcel +Darilyn +Darline +Darlyn +Debera +Demetria +Denna +Donalee +Doni +Dru +Edythe +Elayne +Elicia +Emilie +Eric +Evie +Fatima +Felice +Fern +Gema +Genise +Genny +Georgianna +Germaine +Gerry +Giovanna +Glory +Gretta +Hillary +Holli +Hollie +Irasema +Jaylene +Jeane +Jeanetta +Jeffrey +Jenise +Jewell +Joe +Jonna +Jovita +Julieann +Karlene +Kary +Kathaleen +Kenna +Kimmie +Kristan +Lanora +Larae +Laree +Latonia +Lauralee +Lauretta +Lawana +Leeanne +Leisa +Letha +Letitia +Linn +Lizzie +Lorenza +Loriann +Lorilee +Lorin +Lula +Manuel +Maribeth +Marlys +Marylynn +Melani +Melonie +Melony +Melva +Merrilee +Micheal +Nena +Nonie +Odette +Ollie +Opal +Ora +Oralia +Phillis +Pia +Piper +Raeleen +Renda +Ricky +Rosaline +Rosamaria +Rosaura +Rosella +Sabina +Salli +Selma +Shan +Sharol +Sheena +Shereen +Sherlyn +Shona +Soledad +Stormy +Susann +Susy +Tawnya +Teresita +Terra +Torri +Torrie +Tressa +Troy +Twyla +Unknown +Velina +Vonna +Willa +Zelda +Zella +Zelma +Abbie +Adella +Aide +Alane +Aletha +Alethea +Alexia +Alysia +Andi +Andy +Annabel +Annalisa +Anthony +Aracely +Arline +Arnita +Belia +Belle +Bennie +Bethany +Brandi +Bruce +Bunny +Candida +Candis +Carie +Cathlene +Celene +Celestine +Charise +Charlesetta +Christal +Christin +Cinda +Clementina +Cordelia +Cozette +Crista +Daina +Dalia +Dallas +Danelle +Danise +Darby +Daryn +Deby +Deeanna +Delilah +Delinda +Delora +Demetra +Denese +Denette +Deniece +Denyse +Dionne +Dodie +Donetta +Dorri +Drusilla +Dyan +Dyanna +Eilene +Elana +Elda +Eleanore +Elinor +Ellyn +Ermelinda +Evelia +Evelynn +Francene +Frank +Freddie +Frederica +Gary +Gaylynn +Genelle +Gerald +Gerrie +Gianna +Ginette +Gwenda +Gwyn +Helga +Ila +Inger +Jade +Janean +Janey +Jani +Janiece +Janise +Janyce +Jeanice +Jena +Jenee +Jenell +Jennette +Jennine +Jesus +Johnna +Joleen +Jolinda +Jonie +Josefa +Josette +Joycelyn +Justina +Kandice +Karleen +Kasey +Keli +Kendis +Kenya +Kimberely +Kimberlyn +Kitt +Kristeen +Krystal +Lanetta +Laquita +Lara +Lari +Larisa +Laurette +Lavonna +Lawanna +Leana +Leatrice +Lei +Lenette +Leola +Leonora +Lindi +Linette +Lolly +Loreen +Lorianne +Lorilyn +Luanna +Lucretia +Lupita +Margery +Mariaelena +Marilou +Marleen +Marlyn +Martine +Marylee +Mattie +Mechelle +Merrily +Midori +Mignon +Miki +Mireya +Myrtle +Nan +Nathalie +Nicola +Norene +Octavia +Olinda +Pamelia +Phoebe +Prescilla +Rachele +Ranae +Rebbecca +Refugio +Reta +Retha +Reva +Rina +Robbi +Rosalina +Roseanna +Rossana +Rosslyn +Roxana +Rudy +Ruthy +Sadie +Seaneen +Sharan +Sharie +Sharmaine +Sharolyn +Shayne +Shellee +Soraya +Stacia +Starr +Stephani +Summer +Sunny +Susi +Tama +Tamarah +Teressa +Terilyn +Terresa +Thalia +Tillie +Tobi +Tona +Tracee +Valeri +Victor +Wilhelmina +Winona +Yvonnie +Zandra +Karen +Susan +Lisa +Mary +Linda +Cynthia +Patricia +Sandra +Debra +Lori +Laura +Deborah +Julie +Donna +Debbie +Elizabeth +Cheryl +Nancy +Pamela +Barbara +Teresa +Denise +Diane +Kathy +Cindy +Kathleen +Kimberly +Carol +Sharon +Brenda +Michelle +Robin +Janet +Kelly +Maria +Kim +Diana +Tammy +Theresa +Laurie +Terri +Rebecca +Tina +Catherine +Jennifer +Christine +Margaret +Rhonda +Leslie +Cathy +Tracy +Carolyn +Annette +Valerie +Stephanie +Judy +Wendy +Janice +Renee +Katherine +Paula +Jill +Suzanne +Anna +Gloria +Sherry +Dawn +Victoria +Kathryn +Michele +Ann +Lynn +Vicki +Connie +Martha +Sylvia +Yolanda +Teri +Joyce +Angela +Carrie +Anita +Colleen +Tamara +Andrea +Terry +Christina +Beverly +Sheila +Dana +Monica +Yvonne +Peggy +Virginia +Bonnie +Ruth +Sandy +Anne +Darlene +Rose +Marie +Sheri +Elaine +Gina +Tami +Lorraine +Shirley +Judith +Jacqueline +Becky +Gail +Alice +Shelly +Sally +Toni +Joan +Jane +Heidi +Joanne +Regina +Deanna +Roberta +Melissa +Carla +Helen +Julia +Jeanette +Sherri +Vickie +Pam +Frances +Maureen +Rita +Sue +Melinda +Sheryl +Beth +Loretta +Shelley +Carmen +Ellen +Betty +Amy +Melanie +Jeanne +Jean +Eileen +Marilyn +Norma +Penny +Irene +Dorothy +Melody +Sarah +Veronica +Stacy +Erin +Patty +Lydia +Rosa +Jackie +Jamie +Wanda +Joann +Rachel +Alicia +Phyllis +Charlene +April +Dolores +Esther +Roxanne +Jan +Evelyn +Arlene +Charlotte +Lynne +Vivian +Patti +Ramona +Rosemary +Shari +Stacey +Joy +Holly +Jo +Eva +Vicky +Juanita +Tracey +Belinda +Leticia +Dianna +Janine +Audrey +Irma +Jody +Darla +Lynda +Chris +Tanya +Cecilia +Natalie +Jenny +Cheri +Alison +Sara +Susie +Kimberley +Doreen +Grace +Marianne +Yvette +Glenda +Christy +Jodi +Carole +Louise +Marlene +Tammie +Dianne +Nina +Crystal +Heather +Kelley +Shannon +Ronda +Kerry +Lynette +Rochelle +Marcia +Kelli +Kellie +Sherrie +Marla +Lois +Nora +Vanessa +Constance +Debora +Caroline +Jeannette +Jeri +Margie +Felicia +Jeannie +Rene +Robyn +Ana +Kari +Allison +Gwendolyn +Sonia +Antoinette +Doris +Guadalupe +Joni +Claudia +Sabrina +June +Gayle +Lorie +Bridget +Cathleen +Karla +Monique +Emily +Lauren +Lee +Liz +Marsha +Lorrie +Marian +Jana +Pauline +Terrie +Kristin +Jennie +Karin +Kristen +Mona +Kay +Marjorie +Josephine +Kristi +Lillian +Patrice +Rosemarie +Gretchen +Kristine +Lora +Lupe +Priscilla +Cassandra +Bernadette +Desiree +Joanna +Laurel +Margarita +Shawn +Traci +Beatrice +Bertha +Celia +Janis +Geraldine +Candace +Dora +Jeanine +Lorna +Marcella +Ruby +Adrienne +Rosalie +Elena +Therese +Delia +Nadine +Tonya +Corinne +Lucy +Stella +Amanda +Nanette +Ginger +Isabel +Eleanor +Olga +Candy +Claire +Francine +Janette +Trina +Suzette +Alma +Angie +Celeste +Jessica +Lauri +Marina +Naomi +Sonya +Vera +Cherie +Rosie +Elisa +Edith +Katrina +Dina +Leanne +Dena +Georgia +Katie +Leah +Olivia +Betsy +Christie +Bobbie +Ingrid +Maryann +Paulette +Janie +Sonja +Patsy +Danette +Deanne +Marta +Silvia +Della +Jayne +Kris +Cindi +Dee +Kathi +Rosalind +Alisa +Jacquelyn +Clara +Delores +Gwen +Emma +Pat +Tamra +Debi +Elsa +Sandi +Kristina +Cecelia +Darcy +Marisa +Megan +Tara +Tracie +Blanca +Hope +Jeannine +Jessie +Kerri +Kristy +Mari +Miriam +Rosalinda +Tammi +Camille +Edna +Lucinda +Molly +Myra +Trudy +Amelia +Bernice +Christi +Debby +Lynnette +Margo +Tamera +Ida +Kirsten +Leann +Lucia +Keri +Lana +Lucille +Susanne +Florence +Gigi +Jerri +Kimberlee +Marion +Nicole +Robbin +Danielle +Noreen +Valarie +Billie +Deana +Leigh +Lorena +Angelina +Colette +Jodie +Leona +Rachelle +Faith +Janelle +Lorri +Raquel +Amber +Caren +Juli +Shelia +Stacie +Susana +Thelma +Lourdes +Rena +Coleen +Deirdre +Gay +Josie +Judi +Cari +Lena +Marguerite +Annie +Aurora +Bobbi +Denice +Jeanie +Kathie +Magdalena +Marcy +Mindy +Robbie +Wendi +Candice +Cathryn +Lola +Luz +Madeline +Antonia +Bonita +Bridgette +Brigitte +Genevieve +Hilda +Johanna +Juana +Melodie +Shawna +Sondra +Vikki +Dori +Maxine +Polly +Shellie +Corrine +Elisabeth +Jolene +Lorene +Luann +Pearl +Angelica +Benita +Cristina +Estella +Gale +Gladys +Graciela +Deena +Elvira +Ladonna +Lenora +Arleen +Candi +Esperanza +Eve +Laureen +Nellie +Nikki +Tricia +Velma +Wilma +Dayna +Ella +Erica +Iris +Julianne +Karrie +Leeann +Marcie +Mildred +Roxanna +Tori +Aileen +Georgina +Geri +Josefina +Karyn +Mercedes +Michael +Randi +Shelli +Alexandra +Ava +Deann +Helene +Jenifer +Kristie +Simone +Tamie +Caryn +Juliet +Lesley +Maryanne +Myrna +Paige +Socorro +Dixie +Geneva +Glenna +Jami +Janna +Jocelyn +Viola +Charmaine +Cora +Cyndi +Janell +Lesa +Maricela +Pennie +Verna +Dale +Debbi +Dorene +Marci +Mitzi +Pamala +Susanna +Suzan +Adriana +Cara +Danita +Deedee +Francisca +Greta +Lani +Lenore +Misty +Penelope +Rosario +Terese +Abigail +Cheryle +Consuelo +Dona +Elise +Erika +Henrietta +Hilary +Jaime +Katharine +Katy +Leisa +Lilia +Lyn +Robert +Sharlene +Suzie +Tana +Tonia +Angel +Daphne +Elvia +Eugenia +Gracie +Krista +Laverne +Rosanna +Rosanne +Saundra +Sherie +Tania +Dawna +Elsie +Gabrielle +Hazel +John +Lea +Lila +Loraine +Luanne +Roxann +Sheree +Sofia +Adela +Adele +Allyson +Bambi +Beverley +Carlene +Clare +Collette +Danna +Diann +Elva +Frankie +Inez +Karie +Kathrine +Lawanda +Liane +Roxane +Beatriz +Bettina +Carolina +Corina +Darci +Deidre +Gayla +Georgette +Kendra +Kitty +Marylou +Maura +Mercy +Merry +Ofelia +Rebeca +Rosalyn +Suzanna +Violet +Aleta +Brooke +Cathi +Christa +Estela +Faye +Flora +Kandy +Kellee +Lanette +Leanna +Letitia +Maggie +Mandy +Rebekah +Shauna +Sophia +Suzy +Athena +Casey +Claudette +David +Deeann +Edie +Ernestina +Gaye +Ilene +Justine +Katheryn +Kerrie +Kimber +Latanya +Mimi +Nanci +Patrica +Pattie +Renae +Ronna +Sallie +Staci +Tamela +Alberta +Alexis +Annamarie +Carin +Cathie +Cherri +Cori +Evangelina +Kandi +Kate +Leilani +Lindy +Loreen +Louisa +Malinda +Moira +Monika +Perri +Sydney +Tonja +Andra +Bridgett +Carri +Cathrine +Ernestine +Felecia +Gena +Gerri +Juliana +Latonya +Lavonne +Libby +Lidia +Lily +Liza +Martina +Meredith +Nona +Sharron +Sherilyn +Sherrill +Shiela +Twila +Carey +Clarice +Debbra +Francesca +Freda +Gabriela +Harriet +Helena +Juliann +Kyle +Leslee +Lorelei +Manuela +Marilee +Minerva +Nannette +Noel +Noemi +Rachael +Roseanne +Alana +Alyce +Babette +Becki +Belen +Bernadine +Coreen +Dorothea +Eloise +Erlinda +Ethel +Gaylene +Ginny +Hillary +Lorinda +Mark +Marti +Melva +Nita +Petra +Rae +Raylene +Rosana +Roseann +Roslyn +Sharyl +Trudi +Twyla +Valorie +Vida +Aida +Anastasia +Avis +Caron +Cary +Chandra +Clarissa +Cristi +Dinah +Dorian +Fawn +Hortencia +Isabelle +Ivy +Janeen +Janene +Jannette +Kendall +Lilly +Mara +Margot +Meg +Mickey +Nicki +Nola +Reba +Renita +Serena +Sherryl +Starla +Tammara +Thea +Tia +Tresa +Trisha +Vickey +Abby +Ada +Adrian +Agnes +Althea +Amalia +Angelita +Antionette +Carlotta +Cassie +Celina +Charleen +Darleen +Erma +Fay +Guillermina +Jacki +Joanie +Joellen +Juliette +Lesli +Lita +Luana +Machelle +Marva +Nancie +Pamella +Richard +Rosalia +Sandie +Sharyn +Taryn +Tracee +Valencia +Venetia +Adeline +Adriene +Aimee +Carie +Carmela +Carmelita +Charla +Concepcion +Cyndee +Dalene +Danelle +Daria +Esmeralda +Francis +Karlene +Lezlie +Lia +Lillie +Lizabeth +Lonnie +Lou +Lucretia +Luisa +Marty +Maryellen +Melba +Muriel +Neva +Raelene +Tambra +Trish +Valeria +Veda +Zoe +Alesia +Alyson +Angelia +Barbra +Brandy +Catalina +Coral +Cory +Dede +Delilah +Dolly +Emilia +Gilda +Griselda +Janel +Johnna +Judie +Kara +Kaye +Keely +Kelle +Laurene +Lianne +Lise +Loree +Madelyn +Maryjo +May +Melisa +Micki +Missy +Mollie +Nicolette +Peri +Rhoda +Richelle +Roxana +Ruthie +Stacia +Steven +Tari +Tena +Teressa +Venita +Venus +Alejandra +Anette +Arcelia +Bev +Brigid +Carmel +Caryl +Corey +Cruz +Dara +Darcie +Elana +James +Jewel +Karol +Karri +Kimberlie +Kym +Leesa +Leila +Leonora +Letha +Lindsay +Linnea +Lissa +Marietta +Marissa +Merri +Nickie +Penni +Romona +Roseanna +Rosella +Rosetta +Selina +Sindy +Tammera +Teena +Teresita +Torri +Troy +Willie +Annemarie +Bessie +Brigette +Cris +Daisy +Deloris +Dorinda +Eden +Edwina +Elissa +Eloisa +Ester +Eunice +Fern +Fonda +Fran +Geralyn +Germaine +Gisele +Hannah +Jacque +Jayme +Jerry +Jodee +Joseph +Julene +Kirstin +Lark +Lawana +Letty +Lina +Londa +Lory +Mae +Mariann +Maribel +Marisela +Marleen +Marybeth +Maya +Melodee +Randy +Reva +Rosita +Selena +Sharla +Abbie +Adella +Adrianne +Alanna +Alta +Alyssa +Annmarie +Anthony +Antonette +Armida +Barbie +Berta +Camilla +Carleen +Cecile +Christal +Christene +Cristy +Darline +Debrah +Deidra +Dennis +Dian +Dorie +Evangeline +Felice +Imelda +Ivonne +Jacquline +Jaye +Jenine +Johnnie +Joi +Jolynn +Jovita +Kathaleen +Kimmie +Kori +Lavon +Leta +Lisha +Lolita +Lore +Mabel +Martine +Mavis +Melonie +Millicent +Pandora +Pilar +Renata +Renate +Renea +Rhea +Roni +Ronnie +Rosalina +Sandee +Sari +Sarita +Shana +Shanna +Shirlee +Siobhan +Stefanie +Suzann +Thomas +Tisha +Valentina +Zina +Adriane +Alene +Alfreda +Andria +Annamaria +Bari +Barrie +Bianca +Bonny +Carolee +Cecily +Celine +Cheryll +Christiane +Chrystal +Cinthia +Cyndie +Cyndy +Dawne +Delfina +Donald +Dottie +Ellie +Fatima +George +Giselle +Herlinda +Hermelinda +Holli +Hortensia +Ina +Jacklyn +Janett +Jann +Jeanene +Jonna +Julee +Julieta +Karon +Karren +Kathlene +Kimberli +Lauretta +Laury +Licia +Lili +Lizbeth +Loni +Louann +Lupita +Marcela +Marlena +Maryjane +Matilda +Mattie +Merrie +Merrilee +Micaela +Michell +Mila +Mirna +Nelda +Nelly +Odette +Sharilyn +Sheena +Shelby +Stephani +Tamala +Tawnya +Teddi +Tomi +Tommie +Tonette +Trena +Winona +Yolonda +Alecia +Angelique +Beckie +Belia +Belle +Bette +Cameron +Camie +Candis +Carmella +Charisse +Chere +Cinda +Claudine +Corine +Corrie +Courtney +Daniel +Dannette +Denyse +Devon +Diedre +Elaina +Elda +Elida +Etta +Gerry +Herminia +Isabella +Jannet +Jannie +Jeffrey +Jenni +Joleen +Jolie +Jonnie +Justina +Kimi +Kristal +Krystal +Lajuana +Laree +Larhonda +Larissa +Leandra +Lenette +Lilian +Lorayne +Lorenza +Lorina +Lucie +Lynetta +Madeleine +Madonna +Marcelle +Maritza +Maryhelen +Michaela +Michel +Nan +Natasha +Oralia +Phoebe +Retha +Ricky +Risa +Robbi +Rona +Roxie +Samantha +Sharri +Sherill +Sunday +Suzi +Synthia +Tammey +Tamyra +Tonie +Toya +Unknown +Vilma +Wendee +Willa +William +Adelle +Adina +Alane +Alena +Alex +Alexandria +Andree +Annalisa +Barb +Bethany +Bettie +Blair +Callie +Candie +Carroll +Catharine +Cherlyn +Cherrie +Cherry +Cherryl +Cindie +Corinna +Cristie +Dani +Darin +Darryl +Dayle +Dean +Deb +Debera +Debie +Deeanne +Deitra +Delphine +Denna +Dorcas +Doree +Dru +Edythe +Elayne +Elisha +Elma +Elyse +Eula +Eulalia +Evette +Francie +Gia +Hattie +Isabell +Iva +Janee +Janey +Jani +Jeana +Jenne +Jesse +Joetta +Johnny +Jose +Josefa +Joycelyn +Julienne +Karleen +Kymberly +Laquita +Lari +Larry +Laurette +Laurine +Lavada +Leana +Lei +Lela +Linette +Loida +Lona +Loren +Loriann +Lorianne +Lottie +Lourie +Luanna +Lucila +Lura +Lynell +Margery +Marianna +Maribeth +Marilou +Melani +Melany +Melodi +Mina +Monette +Nedra +Nila +Norene +Nova +Peggie +Pricilla +Reina +Renay +Ronald +Rossana +Rowena +Sophie +Susannah +Sybil +Tamar +Tedi +Tillie +Tyra +Val +Valeri +Vannessa +Velda +Velvet +Vernice +Viki +Vina +Vonda +Zena +Addie +Adelina +Alida +Alisha +Alondra +Alva +Amada +Ami +Amparo +Anamaria +Araceli +Aracely +Autumn +Beryl +Birgit +Blanche +Brandi +Bridgitt +Carlyn +Carolann +Catherina +Chanda +Chantay +Charles +Cindee +Conni +Cordelia +Cornelia +Dalia +Daniela +Dannelle +Deby +Dedra +Deeanna +Delana +Delene +Delisa +Demetra +Demetria +Denita +Dennise +Dollie +Dominique +Donelle +Donnell +Dorina +Drusilla +Earlene +Elmira +Evelia +Evon +Fannie +Genie +Genine +Gertrude +Gianna +Goldie +Heide +Inga +Jacalyn +Jade +Janetta +Jaylene +Jeanna +Jena +Jil +Joannie +Joe +Joella +Jordana +Josette +Julianna +Julieanne +Karan +Karolyn +Karry +Kathryne +Kathyrn +Kayla +Kelleen +Kerstin +Laila +Lanita +Larae +Lauran +Laurinda +Leatha +Leeanna +Leisha +Leonor +Liana +Lindi +Loura +Loyce +Lu +Magda +Mamie +Maren +Margarite +Mariana +Marlys +Marna +Maryalice +Meghan +Melony +Melynda +Mia +Millie +Mirian +Myrtle +Nada +Nena +Niki +Noelle +Norine +Opal +Paris +Pauletta +Pixie +Princess +Racheal +Ranee +Rebbecca +Renell +Rosalva +Rosann +Rosaura +Rosenda +Sammie +Sean +Selma +Sharee +Sharen +Shella +Shonda +Sidney +Stephany +Stormy +Tamy +Tani +Tanja +Tawna +Tawni +Tera +Terra +Teryl +Tobi +Trinidad +Velia +Venise +Whitney +Wilhelmina +Winifred +Zelda +Ailene +Alissa +Alix +America +Annetta +Arline +Aurelia +Belva +Betina +Beverlee +Bobette +Brian +Briana +Brita +Bryn +Caprice +Carrol +Cherilyn +Chrissy +Christel +Christen +Christopher +Clementina +Coni +Corliss +Corrinne +Cristine +Cyntha +Danise +Daryl +Deborha +Delicia +Delinda +Delora +Dene +Denese +Denette +Denny +Detra +Dietra +Dione +Dionne +Dody +Donell +Doni +Donita +Donya +Doretha +Doria +Dorise +Dorthy +Dyanne +Eddie +Elba +Elia +Eliza +Enedina +Essie +Estelle +Eugenie +Evalyn +Fabiola +Felicitas +Francene +Frank +Freddie +Frieda +Gabriella +Gayleen +Gemma +Genia +Ginette +Gini +Glynis +Gregory +Gricelda +Gwyn +Hellen +Henry +Hester +Hollie +Ilona +Ines +Inger +Isela +Jacqui +Jamey +Janalee +Janan +Janean +Janella +Jaqueline +Jeanetta +Jeanmarie +Jenise +Jennette +Jerilyn +Jerrie +Joani +Jonette +Judee +Julieann +Kandace +Kandis +Karel +Karl +Kary +Kathe +Kathlyn +Kati +Kayleen +Kaylene +Keli +Kenna +Kevin +Kimbra +Kimie +Kimm +Kit +Kolleen +Kyla +Kyra +Lanell +Lannette +Lara +Laronda +Lavette +Layne +Lecia +Leda +Lelia +Lenita +Leola +Leora +Lesia +Lisbeth +Lizanne +Lonna +Lorin +Louella +Lucina +Luella +Mable +Malia +Marcel +Marcelina +Margret +Mariaelena +Marilynn +Maurine +Mechele +Melvina +Meri +Merilee +Michaele +Mickie +Milissa +Mindi +Miranda +Mischelle +Mitzie +Mylene +Natividad +Nell +Nicky +Nikita +Ninfa +Ola +Ophelia +Ortencia +Page +Pati +Paulene +Pollyanna +Raeann +Raymond +Rechelle +Reiko +Reyna +Ricarda +Ricki +Roger +Rosalee +Rosette +Rosina +Roxan +Rozanne +Sabra +Scarlett +Shaun +Shawnda +Sheilah +Shellee +Shereen +Sherree +Sherrell +Sherril +Sheryll +Shirleen +Silvana +Soledad +Sonjia +Star +Stephaine +Stephen +Stephenie +Susi +Susy +Tatiana +Teddie +Terresa +Tessie +Tiffany +Tinamarie +Tish +Tomasa +Tressa +Treva +Trinette +Ursula +Vangie +Yadira +Yulanda +Yumi +Lisa +Susan +Karen +Linda +Mary +Sandra +Patricia +Julie +Cynthia +Lori +Laura +Deborah +Elizabeth +Donna +Debra +Denise +Pamela +Cheryl +Nancy +Debbie +Teresa +Kathleen +Kimberly +Barbara +Michelle +Diane +Robin +Sharon +Brenda +Cindy +Carol +Kathy +Kelly +Janet +Maria +Jennifer +Tammy +Diana +Kim +Tina +Rebecca +Theresa +Laurie +Terri +Christine +Catherine +Tracy +Rhonda +Margaret +Leslie +Michele +Valerie +Wendy +Stephanie +Carolyn +Suzanne +Cathy +Jacqueline +Angela +Annette +Katherine +Dawn +Jill +Renee +Judy +Paula +Connie +Janice +Christina +Dana +Martha +Anna +Gloria +Ann +Vicki +Sherry +Victoria +Sylvia +Lynn +Yvonne +Kathryn +Teri +Yolanda +Sheila +Carrie +Tamara +Virginia +Andrea +Monica +Bonnie +Gina +Colleen +Anne +Sheri +Terry +Joyce +Ruth +Anita +Rose +Peggy +Regina +Marie +Shirley +Sherri +Carla +Lorraine +Shelly +Deanna +Sandy +Joan +Elaine +Sheryl +Melinda +Melissa +Tami +Jackie +Beverly +Becky +Gail +Toni +Julia +Joanne +Darlene +Vickie +Judith +Heidi +Amy +Roberta +Sally +Beth +Helen +Penny +Stacy +Veronica +Maureen +Melanie +Alice +Irene +Shelley +Dorothy +Jane +Jeanne +Pam +Rachel +Shari +Melody +April +Ellen +Jeanette +Rita +Marilyn +Frances +Jean +Betty +Loretta +Carmen +Jamie +Sarah +Caroline +Eileen +Norma +Sue +Charlene +Patty +Leticia +Lydia +Holly +Erin +Joann +Alicia +Wanda +Stacey +Tracey +Dolores +Belinda +Rosemary +Evelyn +Rosa +Charlotte +Shannon +Vivian +Esther +Phyllis +Yvette +Ramona +Darla +Jan +Joy +Juanita +Chris +Janine +Jo +Cheri +Eva +Kelli +Lynne +Heather +Natalie +Roxanne +Dianna +Crystal +Gayle +Grace +Carole +Kelley +Audrey +Jenny +Lynda +Alison +Cecilia +Arlene +Jody +Doreen +Tanya +Vicky +Rochelle +Christy +Kari +Marcia +Kellie +Sara +Susie +Tammie +Irma +Marlene +Jana +Lynette +Patti +Kimberley +Marianne +Jodi +Sherrie +Ronda +Dianne +Felicia +Traci +Claudia +Doris +Robyn +Gretchen +Joni +Glenda +Louise +Pauline +Rene +Sonia +Kerry +Shawn +Liz +Nina +Antoinette +Nora +Bridget +Kristi +Lauren +Marla +Josephine +Terrie +Nanette +Ana +Danielle +Guadalupe +Jeannette +Tonya +Karla +Lorrie +Jeri +Laurel +Karin +Kay +Allison +Lucy +Dena +Kristine +Lillian +Vanessa +Cathleen +Dina +Marjorie +June +Sabrina +Therese +Angie +Lois +Francine +Lorie +Cherie +Jeannie +Margie +Lee +Constance +Delia +Sonya +Celeste +Ginger +Joanna +Margarita +Debora +Lorna +Mona +Trina +Desiree +Gwendolyn +Janis +Lora +Stella +Dora +Cassandra +Amanda +Ruby +Kristin +Lupe +Candy +Marian +Adrienne +Jennie +Eleanor +Olga +Tara +Alma +Jeanine +Monique +Naomi +Bernadette +Kris +Nadine +Patrice +Rosie +Celia +Kristen +Rosalie +Beatrice +Bertha +Emily +Priscilla +Jessica +Marsha +Rosemarie +Olivia +Sonja +Deanne +Edna +Jolene +Maryann +Silvia +Lauri +Kristy +Lucinda +Corinne +Darcy +Katie +Tammi +Candace +Amelia +Geraldine +Janette +Kristina +Tracie +Jacquelyn +Susanne +Claire +Georgia +Leah +Tamera +Debby +Edith +Elena +Isabel +Marcella +Rosalind +Cecelia +Colette +Dee +Jeannine +Marta +Tamra +Ingrid +Marina +Suzette +Christie +Elisa +Leanne +Trudy +Kerri +Paulette +Amber +Camille +Daphne +Lorena +Sandi +Deirdre +Lorri +Betsy +Deana +Kathi +Kimberlee +Alisa +Janie +Katrina +Rachelle +Bobbie +Cindi +Elsa +Jodie +Juli +Megan +Clara +Patsy +Janelle +Jerri +Judi +Margo +Molly +Pat +Blanca +Danette +Della +Delores +Gigi +Gwen +Lourdes +Angelina +Keri +Lana +Leann +Leona +Lucille +Annie +Deena +Stacie +Angel +Marcy +Polly +Susana +Debi +Florence +Mari +Marion +Marisa +Myra +Lynnette +Nikki +Noreen +Cari +Emma +Kathie +Leigh +Shelli +Cara +Caren +Estella +Jayne +Katharine +Tricia +Vera +Coleen +Cristina +Lena +Antonia +Christi +Elisabeth +Sophia +Bernice +Denice +Janna +Kristie +Luz +Marci +Miriam +Paige +Pearl +Caryn +Esperanza +Graciela +Hilda +Jeanie +Raquel +Rosanne +Shelia +Erika +Ida +Julianne +Marcie +Shellie +Angelica +Bobbi +Deann +Elise +Johanna +Lucia +Misty +Rena +Valarie +Billie +Genevieve +Madeline +Nicole +Carolina +Charmaine +Elvira +Geri +Hope +Juliana +Deidre +Iris +Mara +Myrna +Adriana +Aurora +Corina +Georgina +Ladonna +Liza +Marguerite +Michael +Robbin +Wendi +Cyndi +Hilary +Krista +Lesa +Lilia +Magdalena +Rosario +Shawna +Simone +Sondra +Johnna +Juliet +Karyn +Katy +Kendra +Kirsten +Lani +Leeann +Lesley +Mindy +Rosanna +Dori +Jessie +Kate +Randi +Rosalyn +Shauna +Suzie +Thelma +Annamarie +Bridgette +Erica +Gay +Juana +Latanya +Lea +Lola +Rosalinda +Tonia +Babette +Brigitte +Debbi +Lanette +Lilly +Candice +Corrine +Greta +Josie +Maxine +Roxanna +Verna +Cathryn +Consuelo +Faith +Gabrielle +Helene +Janell +Laureen +Letitia +Lyn +Sallie +Susanna +Wilma +Allyson +Cora +Dale +Dawna +Dayna +Dorene +Georgette +Gladys +Hazel +Jenifer +Mandy +Mimi +Mitzi +Renita +Aileen +Elva +Faye +Gayla +Lorene +Maryanne +Mercedes +Robbie +Velma +Adele +Arleen +Athena +David +Deedee +Evangelina +Gale +Jami +Janeen +Josefina +Karrie +Kathrine +Kitty +Leila +Lenore +Maricela +Tori +Carri +Cary +Clare +Claudette +Danita +Francisca +Gracie +Jaime +John +Kandy +Lavonne +Lenora +Luann +Nannette +Suzanna +Malinda +Marilee +Meredith +Mildred +Robert +Roseann +Saundra +Socorro +Suzan +Suzy +Terese +Vikki +Alana +Candi +Carlene +Christa +Erlinda +Eunice +Ofelia +Patrica +Rachael +Sharlene +Sharron +Tamie +Alesia +Bambi +Beatriz +Benita +Bonita +Bridgett +Cathi +Collette +Deidra +Edwina +Ella +Ernestine +Eugenia +Laverne +Lily +Lorinda +Luana +Melodie +Penelope +Sherie +Amalia +Catalina +Dixie +Eve +Helena +Ilene +Justine +Kerrie +Latonya +Lindy +Merry +Shelby +Sherrill +Sofia +Tania +Tonja +Viola +Agnes +Alexandra +Angelique +Ava +Carie +Cathie +Cathrine +Coral +Dona +Edie +Elvia +Ethel +Henrietta +Jacquline +Kara +Kimberli +Loreen +Maggie +Margot +Marylou +Maura +Rae +Rebeca +Rebekah +Roxann +Sandie +Staci +Aida +Barrie +Cassie +Charleen +Diann +Dolly +Erma +Felecia +Flora +Francesca +Gaye +Hillary +Lawanda +Lidia +Lila +Nellie +Sheree +Ursula +Adela +Antionette +Clarissa +Dede +Elda +Gaylene +Glenna +Kandi +Karri +Leilani +Lela +Loraine +Monika +Roslyn +Venus +Alyce +Beckie +Carey +Concepcion +Corinna +Darleen +Debbra +Elana +Gerri +Gilda +Ginny +Inez +Jacki +Jocelyn +Leanna +Libby +Luanne +Mariann +Marti +May +Renae +Rhoda +Starla +Sydney +Valorie +Velvet +Violet +Aleta +Angelia +Autumn +Bernadine +Bettina +Carmela +Casey +Cori +Cyndy +Eloise +Elsie +Estela +Evette +Geneva +Janel +Janene +Joanie +Leisa +Marybeth +Minerva +Pamala +Pattie +Petra +Richelle +Ronna +Serena +Shanna +Shiela +Twila +Abby +Adrian +Alexis +Althea +Anthony +Carleen +Catharine +Cecile +Courtney +Danna +Darci +Frankie +Jacque +Lesli +Maryellen +Missy +Roxane +Selena +Selina +Adrianne +Charisse +Cherri +Cheryle +Corine +Dani +Deeann +Dorothea +Gabriela +Guillermina +Isabelle +Ivy +Jonna +Juliette +Karie +Katheryn +Kimber +Madeleine +Mae +Marisela +Marissa +Martina +Melisa +Merri +Rhea +Roseanne +Roxana +Stefanie +Abigail +Alyson +Angelita +Annabelle +Bonny +Brigette +Brooke +Cinthia +Daria +Dorinda +Dottie +Freda +Geralyn +Hannah +Herlinda +Iva +Johna +Kathlene +Kaye +Keli +Kimberlie +Lizabeth +Lolita +Lorelei +Louisa +Madonna +Meri +Nanci +Natasha +Nita +Peri +Raylene +Rosalia +Sabra +Sharyl +Siobhan +Tawny +Tena +Vickey +Annemarie +Barbie +Bethany +Brigid +Chandra +Corrina +Emilia +Ester +Fawn +Gena +Jacklyn +Karol +Kary +Kym +Leta +Liane +Luisa +Mabel +Martine +Meg +Millie +Penni +Pilar +Tana +Trena +Trinidad +Andra +Araceli +Armida +Beverley +Carolynn +Darcie +Deloris +Earlene +Elida +Esmeralda +Estelle +Fay +Francis +Harriet +Judie +Juliann +Julianna +Karlene +Karon +Kendall +Kyle +Lise +Lissa +Maritza +Melba +Moira +Nickie +Reba +Richard +Rosana +Star +Starlene +Suzi +Tamela +Timothy +Valencia +William +Ada +Alexandria +Anastasia +Becki +Carin +Carmel +Celine +Chrystal +Corey +Daisy +Dannette +Dedra +Dinah +Dorie +Eloisa +Fran +Frieda +Gregory +Heide +Hortencia +Imelda +Jewel +Laurene +Leslee +Lindsey +Lonna +Loree +Machelle +Madelyn +Mark +Mollie +Pandora +Paris +Raelynn +Renea +Rona +Rosalina +Ruthie +Sherril +Sherryl +Soledad +Tani +Teena +Tomi +Tracee +Tresa +Treva +Troy +Valeria +Viki +Vonda +Aimee +Ashley +Bessie +Camilla +Caron +Coreen +Cris +Cristy +Dara +Demetria +Denese +Dennise +Diedre +Dionne +Elia +Etta +Fern +Gertrude +Janey +Janiece +Jeanna +Jena +Jerilyn +Johnnie +Joleen +Jonette +Keely +Laronda +Leonor +Lia +Linette +Lita +Loni +Loriann +Manuela +Margret +Marty +Melodee +Mia +Minnie +Nedra +Neva +Nicolette +Perla +Portia +Randee +Reyna +Ronnie +Rowena +Sari +Sharyn +Sheril +Tobi +Trisha +Venetia +Zelda +Alberta +Alejandra +Andria +Anitra +Annmarie +Antonette +Astrid +Bianca +Candis +Caprice +Cathlene +Chantal +Cindee +Cory +Debrah +Denita +Dierdre +Eden +Ellyn +Eric +Jacquelin +Jacquie +James +Jannette +Jayme +Jenni +Jodee +Jolynn +Julee +Karan +Kellee +Kori +Lauretta +Leonora +Lezlie +Lory +Lou +Marietta +Mercy +Merilee +Michel +Misti +Monette +Nelda +Noel +Pamella +Pennie +Raelene +Reina +Rossana +Samantha +Stephani +Tari +Tawnya +Thea +Tonda +Trudi +Val +Valinda +Whitney +Zena +Zoe +Adelita +Aletha +Arlette +Berta +Bev +Blanche +Carlotta +Carmelita +Carolee +Cecily +Charline +Claudine +Cristal +Cristine +Deeanna +Delinda +Elaina +Elizebeth +Elyse +Enedina +Ernestina +Evonne +Fonda +Gabriella +Germaine +Gwyn +Jaclyn +Jeana +Jeanene +Jewell +Joi +Karolyn +Kelle +Kenneth +Kevin +Lanita +Latricia +Laurette +Leesa +Lesly +Letha +Lianne +Lillie +Lina +Loralee +Louann +Lucretia +Margery +Marilynn +Matilda +Nicki +Niki +Noelle +Phoebe +Randy +Renata +Rina +Risa +Roxie +Sabrena +Sean +Shanon +Shara +Sharilyn +Sharla +Sharri +Shereen +Sherilyn +Shirleen +Soraya +Suzann +Tamala +Tambra +Tammara +Terresa +Tia +Torri +Trish +Valentina +Virgie +Zandra +Adelina +Alanna +Alene +Alta +Amparo +Aurelia +Belen +Bette +Blair +Briana +Bronwyn +Bryn +Callie +Cameron +Celina +Charla +Cherilyn +Cherrie +Cinda +Clarice +Corrie +Cristi +Cyndee +Danelle +Daniel +Dawne +Delilah +Devon +Diedra +Donita +Doria +Dorian +Dorthy +Eddie +Elissa +Felice +Felicitas +Fiona +Hermelinda +Ina +Jenelle +Jeni +Jesus +Jimmie +Joellen +Jolie +Jose +Joycelyn +Kathyrn +Kellye +Kimberle +Kimberlyn +Kimbra +Kimi +Lavon +Lawana +Lelia +Letty +Lindi +Linnea +Lisha +Lorina +Luanna +Lucila +Marcelle +Marianna +Marleen +Marva +Maryhelen +Mavis +Melva +Mickey +Mignon +Miranda +Morgan +Myrtle +Nova +Opal +Ora +Perri +Phylis +Romona +Rosalva +Rosaura +Ruthann +Sabina +Shannan +Shawnee +Sherree +Shirlene +Sidney +Starr +Sunday +Synthia +Tammera +Tawni +Teresita +Tisha +Toby +Tomasa +Tommie +Tonette +Tory +Vannessa +Vida +Vilma +Winifred +Zina +Adeline +Adriene +Alecia +Alina +Alyssa +Aretha +Arline +Bari +Brandy +Britta +Cammie +Carlyn +Carmella +Celestine +Charity +Cheryll +Christopher +Cornelia +Cydney +Dalene +Daniela +Darice +Darlynn +Debie +Deborha +Dian +Dominique +Donald +Donnell +Edward +Elba +Emilie +Ermelinda +Eula +Felisa +Francene +Georgianne +Gillian +Helga +Ila +Isabella +Jacqui +Jacqulyn +Jann +Jayna +Jenice +Jenise +Jennine +Jordana +Josefa +Jovita +Kandice +Karren +Kathlyn +Kelleen +Kimberely +Kristal +Krystal +Lavada +Leeanna +Liana +Lonnie +Lorenza +Lorianne +Lyla +Marcela +Maryjane +Maryjo +Maurine +Melonie +Merrie +Michaela +Michell +Mina +Muriel +Natalia +Nena +Noemi +Norene +Peggie +Raina +Raymond +Robynn +Ronald +Roni +Roselyn +Rosetta +Rosslyn +Salina +Sandee +Scarlett +Selma +Shanda +Sharlyn +Shaun +Shellee +Sherill +Sherrell +Sheryll +Shirlee +Sigrid +Stephany +Taryn +Tasha +Teressa +Terisa +Tessie +Thomas +Torrie +Treasa +Twyla +Veda +Willa +Windy +Addie +Adria +Alondra +Amie +Andree +Annalisa +Annetta +Barbra +Beulah +Birdie +Brandi +Brook +Cami +Carma +Carola +Chana +Chantay +Charyl +Chere +Cherry +Christeen +Christianne +Cindie +Cruz +Dann +Darline +Darnell +Debera +Deedra +Delfina +Delisa +Delphia +Delphina +Denette +Denine +Desire +Doni +Doree +Doretta +Dovie +Evangeline +Evelia +Evelina +Fabiola +Florinda +Gemma +George +Georgetta +Georgiana +Georgianna +Gerry +Gisele +Glynis +Gwenda +Hattie +Herminia +Hollie +Ilona +Inga +Iona +Ione +Jacquelyne +Jerrie +Joette +Jona +Jonelle +Jonnie +Julieann +Julieta +Kathe +Kathryne +Keith +Kenda +Lara +Laraine +Larhonda +Larita +Larry +Lauralee +Laure +Lavern +Leanora +Lesia +Linnette +Lore +Loren +Lorine +Lorretta +Luella +Lula +Lulu +Lura +Malia +Mamie +Margit +Mariaelena +Marita +Marline +Marquita +Mellissa +Melodi +Melony +Melynda +Micheline +Micki +Miki +Mila +Mirella +Nan +Nancie +Nola +Nona +Octavia +Paul +Piper +Rachele +Raeann +Raeanne +Rayna +Regenia +Renate +Renay +Rodney +Rosalee +Rosita +Sadie +Sanjuanita +Sherise +Sheron +Shona +Shonda +Silvana +Sondi +Sonjia +Stacia +Stefani +Tamar +Tammey +Tamura +Terra +Terre +Tessa +Theresia +Tiana +Tonie +Torie +Tracye +Tressa +Tuesday +Unknown +Valeri +Vallerie +Velda +Victor +Vienna +Vivien +Vonnie +Wendee +Willie +Winona +Zenaida +Adella +Adriane +Agustina +Alaina +Alaine +Alane +Alethea +Alex +Alfreda +Aline +Anabel +Andre +Annabel +Annamaria +Antonina +Apryl +Aracely +Arden +Barri +Belia +Bobette +Bunny +Caitlin +Carina +Caterina +Charissa +Chelle +Chery +Christel +Christiana +Christiane +Conchita +Consuela +Cordelia +Corie +Cosette +Craig +Daina +Dalila +Danica +Darien +Darlena +Darryl +Daryn +Davida +Dayle +Daylene +Debborah +Delma +Dene +Deon +Dody +Dollie +Donnette +Donnie +Dorcas +Doreena +Dorina +Douglas +Drusilla +Eda +Eliza +Enid +Evon +Felipa +Frank +Frederica +Gary +Gaylyn +Genie +Gia +Gisela +Giselle +Griselda +Gwynne +Haydee +Hedy +Hiedi +Holli +Honey +Hortensia +Ines +Inger +Ivory +Jackqueline +Jacquelynn +Janae +Janean +Jani +Janise +Jannie +Jasmine +Jaye +Jaymie +Jeanetta +Jeffrey +Jerry +Jillian +Joane +Joel +Joella +Joetta +Joline +Joseph +Josephina +Julienne +Kai +Kandie +Kareen +Karyl +Kathaleen +Katina +Kayla +Kayleen +Kendal +Kerstin +Kitt +Kiva +Koni +Kristan +Kristeen +Lacey +Laila +Lanna +Larae +Latonia +Laurena +Lawanna +Leana +Leeanne +Lenna +Lesha +Leslye +Letticia +Lili +Lilli +Lizette +Lona +Lorenda +Lorilee +Lorin +Lorre +Lorry +Lottie +Louanne +Louella +Lourie +Lynell +Machele +Magda +Maralee +Mardi +Mariana +Maribeth +Marilou +Marji +Marlena +Marlyn +Marya +Maudie +Maya +Mayra +Mechelle +Meghan +Melani +Mendy +Merle +Merrilee +Meta +Micaela +Micky +Milinda +Milissa +Millicent +Mindi +Mireya +Mischelle +Mitzie +Nana +Nettie +Nicola +Norine +Novella +Ophelia +Paulina +Phillip +Pollyanna +Racheal +Raeleen +Ramie +Ranae +Regan +Retha +Rhona +Rinda +Ronelle +Roseanna +Rosella +Rozanne +Scott +Seana +Serina +Sharleen +Shaunna +Sheena +Shelle +Sheralyn +Sheridan +Shonna +Sindy +Siri +Sonna +Sophie +Stephenie +Steven +Suanne +Suellen +Sybil +Sylvana +Tanja +Teddi +Tera +Tereasa +Tereza +Terilyn +Theodora +Torey +Vada +Valery +Velia +Vena +Venessa +Venita +Verda +Veronique +Vicenta +Viviana +Vivienne +Winnie +Yasmin +Zora +Lisa +Karen +Susan +Mary +Linda +Cynthia +Julie +Lori +Patricia +Deborah +Laura +Sandra +Kimberly +Donna +Teresa +Debra +Elizabeth +Pamela +Michelle +Denise +Debbie +Kelly +Nancy +Cheryl +Barbara +Kathleen +Maria +Robin +Kathy +Brenda +Sharon +Diane +Jennifer +Tina +Tammy +Cindy +Carol +Kim +Tracy +Diana +Christine +Janet +Theresa +Rebecca +Laurie +Terri +Suzanne +Leslie +Catherine +Rhonda +Margaret +Michele +Stephanie +Wendy +Renee +Carolyn +Angela +Valerie +Sherry +Cathy +Dawn +Jill +Annette +Anna +Jacqueline +Katherine +Dana +Gina +Christina +Connie +Judy +Sheri +Victoria +Gloria +Monica +Ann +Janice +Martha +Paula +Sheila +Kathryn +Tamara +Yvonne +Sylvia +Sherri +Lynn +Vicki +Carrie +Andrea +Melissa +Teri +Yolanda +Bonnie +Carla +Virginia +Shelly +Colleen +Deanna +Anita +Lorraine +Darlene +Anne +Regina +Shelley +Beverly +Tami +Amy +Heidi +Sheryl +Jane +Veronica +Terry +Ruth +Jamie +Julia +Rose +Stacy +Toni +Melinda +Shari +Marie +Sandy +Jeanette +Judith +Joyce +Stacey +Peggy +Shirley +Maureen +Gail +Tracey +Becky +Elaine +Helen +Alice +Joanne +Roberta +Melanie +Joan +Irene +Norma +Holly +Penny +Jackie +Rita +Yvette +Beth +Pam +Carmen +Sarah +Sally +Vickie +Rachel +Sue +Jeanne +Jean +Dorothy +Alicia +Eileen +Erin +Charlene +Rosa +April +Marilyn +Frances +Wanda +Evelyn +Natalie +Melody +Ellen +Rosemary +Shannon +Lydia +Juanita +Heather +Dolores +Joann +Betty +Cheri +Loretta +Phyllis +Kimberley +Caroline +Patty +Joy +Darla +Ramona +Belinda +Cecilia +Leticia +Chris +Tammie +Eva +Kelley +Ronda +Tanya +Audrey +Lynda +Lynne +Charlotte +Sara +Janine +Kelli +Crystal +Robyn +Jenny +Vivian +Esther +Roxanne +Irma +Alison +Dina +Marianne +Sherrie +Dianna +Kari +Kerry +Jodi +Tonya +Christy +Arlene +Jan +Jana +Grace +Marcia +Patti +Marlene +Marla +Vicky +Kellie +Doreen +Nina +Jody +Rene +Dianne +Jo +Glenda +Traci +Ana +Guadalupe +Rochelle +Lynette +Sonya +Susie +Kristi +Margie +Sonia +Karin +Kristin +Felicia +Lucy +Antoinette +Dena +Jeannette +Kristine +Karla +Trina +Gayle +Jessica +Vanessa +Doris +Sabrina +Allison +Gwendolyn +Tracie +Leah +Lorie +Carole +Cathleen +Louise +Desiree +Lauren +Cherie +Cassandra +Danielle +Lorrie +Joni +Josephine +June +Bridget +Joanna +Lillian +Shawn +Claudia +Terrie +Katrina +Leanne +Kay +Kristen +Liz +Marjorie +Gretchen +Lupe +Pauline +Alma +Debora +Monique +Priscilla +Emily +Jeannie +Lois +Lora +Candace +Celeste +Nora +Dora +Nicole +Daphne +Eleanor +Kris +Kristina +Suzette +Amanda +Constance +Isabel +Janette +Rosemarie +Deanne +Jennie +Nadine +Adrienne +Jeanine +Mona +Geraldine +Margarita +Silvia +Angie +Jeri +Lee +Stella +Tara +Beatrice +Marcella +Rosalie +Marian +Bertha +Corinne +Laurel +Francine +Ginger +Bernadette +Delia +Edith +Olivia +Ruby +Elena +Lorna +Olga +Celia +Therese +Kerri +Sonja +Kimberlee +Kristy +Lauri +Blanca +Marta +Naomi +Marsha +Sophia +Susanne +Deena +Nanette +Elisa +Gwen +Tammi +Candy +Georgia +Jeannine +Lorena +Elsa +Marina +Claire +Ingrid +Amber +Betsy +Judi +Margo +Cecelia +Shellie +Camille +Deana +Susana +Lana +Molly +Angelina +Christie +Ida +Jacquelyn +Katie +Lorri +Patrice +Rosalind +Tamra +Annie +Cara +Colette +Dee +Kathi +Megan +Miriam +Tamera +Trudy +Cindi +Maryann +Gigi +Keri +Lesa +Amelia +Erika +Marcy +Paige +Paulette +Rosie +Shelli +Sondra +Stacie +Cari +Jodie +Rena +Sandi +Shawna +Angel +Bobbie +Clara +Danette +Leann +Lucinda +Deirdre +Janie +Janis +Rachelle +Emma +Suzy +Vera +Alisa +Delores +Jami +Johanna +Darcy +Elisabeth +Erica +Jolene +Kara +Angelica +Ladonna +Lourdes +Lynnette +Noreen +Coleen +Pat +Hilda +Karyn +Lena +Magdalena +Valarie +Brigitte +Shauna +Billie +Debby +Edna +Esperanza +Juli +Kirsten +Luz +Marci +Rosalinda +Jenifer +Kristie +Latanya +Marion +Raquel +Saundra +Allyson +Arleen +Bernice +Faith +Janelle +Julianne +Madeline +Mercedes +Thelma +Cristina +Denice +Juliet +Kendra +Nannette +Corina +Jayne +Jessie +Leigh +Lesley +Mari +Marisa +Michael +Tricia +Christi +Dawna +Genevieve +Marguerite +Verna +Aurora +Dayna +Debi +Della +Elvira +Lola +Misty +Shelia +Caren +Caryn +Deidre +Florence +Leeann +Lucille +Marcie +Suzie +Adriana +Athena +Carolina +Cora +Dorene +Gena +Leona +Melodie +Tania +Adela +Alexandra +Bridgette +Consuelo +Deann +Hope +Janell +Myra +Polly +Robbin +Staci +Tiffany +Antonia +Bonita +Debbi +Graciela +Janna +Jerri +Maxine +Rae +Bobbi +Jeanie +Katy +Mildred +Susanna +Wendi +Bridgett +Collette +Georgina +Juliana +Katharine +Laureen +Nikki +Randi +Rosanne +Rosario +Elise +Elva +Inez +Josefina +Mindy +Pearl +Rebekah +Suzanna +Carey +Danna +Dona +Gabrielle +Helene +Hilary +Krista +Lorene +Meredith +Myrna +Socorro +Adele +Aileen +Alesia +Beatriz +Candice +Cathie +Elvia +Eugenia +Eve +Gay +Kathie +Lea +Leilani +Maura +Patsy +Tonja +Christa +David +Estella +Gladys +Jocelyn +Juana +Juliette +Lilia +Ernestine +Felecia +Francesca +Jaime +Kerrie +Lenora +Lyn +Mitzi +Ada +Annamarie +Armida +Dale +Dori +Josie +Latonya +Letitia +Mara +Mimi +Pamala +Penelope +Robert +Roxane +Sherie +Tonia +Tori +Angelique +Ava +Bettina +Cathryn +Charmaine +Dixie +Karrie +Leanna +Lily +Marylou +Ofelia +Roxanna +Carmela +Kate +Leila +Maggie +Marisela +Melisa +Agnes +Cathrine +Cori +Corrine +Gale +Helena +Henrietta +Iris +John +Karri +Liza +Missy +Renae +Rosanna +Suzan +Catalina +Clarissa +Claudette +Courtney +Deedee +Dorinda +Edie +Elsie +Evangelina +Flora +Gracie +James +Jannette +Johnna +Kandi +Karol +Lolita +Marti +Merry +Nellie +Petra +Roseann +Sherryl +Tamie +Adrian +Aida +Brooke +Carleen +Cyndi +Justine +Lavonne +Libby +Robbie +Roxann +Selina +Serena +Velma +Abigail +Alexis +Benita +Candi +Carie +Ella +Erma +Francisca +Frankie +Georgette +Ilene +Janeen +Lise +Luanne +Lucia +Maryanne +Rachael +Rosalia +Sharlene +Sofia +Stefanie +Trisha +Valencia +Adriene +Cary +Clare +Estela +Faye +Gabriela +Lenore +Lilly +Luana +Mandy +Rebeca +Sharron +Starla +Sydney +Tana +Tena +Whitney +Wilma +Annmarie +Carolynn +Cassie +Danelle +Judie +Kitty +Lani +Paris +Renita +Shanna +Shelby +William +Amalia +Bambi +Cherrie +Cheryle +Cristy +Dede +Eloise +Esmeralda +Geri +Glenna +Kaye +Laverne +Lawanda +Loreen +Machelle +Margot +Maribel +Martina +Mia +Sallie +Simone +Tammara +Trena +Alberta +Annemarie +Carlene +Charla +Corinna +Darleen +Gayla +Gerri +Hazel +Jacquie +Kandy +Karie +Kathrine +Kimberli +Malinda +Mariann +Maricela +Marissa +Minerva +Rhoda +Rosalyn +Selena +Sharyn +Tracee +Valorie +Vickey +Adrianne +Aleta +Babette +Carin +Cristi +Diann +Erlinda +Ginny +Hillary +Leonor +Lorelei +Lou +Luisa +Manuela +Michell +Monika +Nanci +Natasha +Nita +Shana +Ursula +Vikki +Viola +Caron +Dara +Debbra +Deeann +Dinah +Emilia +Ethel +Geneva +Gwyn +Jonna +Karina +Kimberlie +Lindy +Loraine +Moira +Patrica +Pilar +Raylene +Ronna +Sandie +Violet +Abby +Alyce +Angelia +Carmel +Carmelita +Carri +Cathi +Chandra +Charleen +Cherri +Darci +Dolly +Dorothea +Evangeline +Jerilyn +Joleen +Katheryn +Kelle +Lanette +Lawana +Lela +Louisa +Margret +Marilee +Marybeth +Maryellen +Pattie +Richard +Sheree +Star +Tia +Venus +Vida +Annetta +Araceli +Brigette +Cheryll +Corrina +Cory +Danita +Edwina +Ester +Eunice +Fatima +Gaylene +Geralyn +Herlinda +Isabelle +Jacki +Jeanna +Krystal +Latonia +Lesli +Lia +Lonnie +Marcelle +Meg +Ophelia +Raelene +Rosalee +Tambra +Tari +Terese +Thea +Adeline +Alana +Alanna +Anthony +Antionette +Beckie +Beverley +Brandy +Brigid +Casey +Charisse +Cornelia +Darcie +Devon +Dorie +Felice +Georgianna +Gilda +Jayme +Juliann +Kimber +Lezlie +Lillie +Loren +Lorinda +Luann +Lucila +Marlena +Marva +Melina +Melva +Michel +Mickey +Reba +Roseanne +Rowena +Samantha +Sharla +Sherilyn +Sherrill +Stacia +Starr +Suzann +Tamela +Tawny +Tonette +Trudi +Valentina +Zina +Adelina +Alecia +Alejandra +Annamaria +Antonette +Bernadine +Bethany +Bianca +Callie +Cindie +Clarice +Corey +Daniel +Daria +Deborha +Delilah +Donita +Elia +Ernestina +Evette +Giselle +Gregory +Jacque +Jacquline +Janel +Jenise +Johnnie +Julianna +Karey +Kayla +Leisa +Letha +Lidia +Lizabeth +Loriann +Madelyn +Mae +Magda +Maritza +May +Nedra +Nena +Noemi +Nona +Page +Peri +Randy +Reina +Rhea +Richelle +Rona +Ronnie +Roslyn +Roxie +Ruthie +Sabra +Sharilyn +Sharyl +Sophie +Suzi +Sybil +Venita +Alene +Althea +Amparo +Anastasia +Annabelle +Barbie +Belen +Bonny +Debrah +Deidra +Dominique +Elaina +Evonne +Fay +Freda +Gabriella +Gaye +Greta +Harriet +Hollie +Ivy +Jeana +Jerry +Julee +Kyle +Lauretta +Leesa +Lila +Lisha +Lissa +Loree +Lory +Marcela +Margery +Marty +Meri +Natalia +Nicki +Nola +Penney +Risa +Rocio +Rosita +Scott +Sharie +Shaun +Stephani +Tammera +Tani +Teena +Tresa +Troy +Velvet +Winifred +Zena +Zoe +Adina +Andra +Andria +Autumn +Avis +Barrie +Berta +Bette +Camilla +Chrystal +Cyndy +Dahlia +Darline +Debie +Denette +Denine +Dottie +Elba +Etta +Fonda +Gia +Gillian +Hallie +Ines +Janey +Jenine +Joanie +Jovita +Kathaleen +Keli +Kimberle +Kristal +Laronda +Laurette +Laurinda +Leslee +Letty +Lianne +Lindsay +Linette +Lorretta +Lynelle +Madonna +Marianna +Martine +Maya +Mercy +Mignon +Mollie +Nan +Nicolette +Norene +Oralia +Penni +Phoebe +Portia +Rosalba +Rosetta +Rossana +Roxana +Sandee +Selma +Shiela +Sindy +Tawnya +Teresita +Teressa +Tobi +Twyla +Val +Veda +Angelita +Becki +Briana +Cammie +Cecile +Charles +Cinthia +Concepcion +Cristie +Daina +Dalene +Dani +Dannette +Dawne +Delfina +Dennise +Elissa +Eliza +Ermelinda +Germaine +Griselda +Hortencia +Jena +Jeni +Jenna +Jennette +Jenni +Jolie +Jose +Josette +Julene +Kasey +Kathlene +Kellee +Kendall +Kymberly +Larhonda +Leeanne +Leora +Linnea +Lorine +Lucretia +Madeleine +Maia +Malia +Marietta +Maryjane +Mayra +Mechelle +Melba +Melodee +Merri +Misti +Muriel +Nelda +Nettie +Nichole +Noelle +Odette +Pandora +Pennie +Reva +Reyna +Romona +Ronald +Rosalina +Rosalva +September +Shannan +Sharen +Sharolyn +Sheli +Shirlee +Steven +Susann +Tamora +Thomas +Tomi +Twila +Yolonda +Adria +Alyson +Annabel +Bev +Cameron +Caprice +Cathey +Cherise +Cherry +Cindee +Conni +Darlena +Davida +Dedra +Delana +Delinda +Denna +Dollie +Donell +Eloisa +Enedina +Eric +Ericka +Estelle +Giovanna +Glynis +Guillermina +Hayley +Ina +Ione +Isabella +Iva +Jacklyn +Jacquelin +Jannell +Jeffrey +Jerrie +Jewel +Jodee +Joycelyn +Karlene +Karolyn +Karry +Kevin +Kolleen +Kym +Laila +Laraine +Launa +Lawanna +Leta +Lonna +Mariaelena +Marleen +Maryhelen +Maryjo +Melodi +Micaela +Michaela +Millicent +Millie +Nancie +Nicola +Nova +Ranae +Rayna +Rosaura +Seana +Sharee +Soledad +Stefani +Suzana +Synthia +Tommie +Treva +Trish +Valeria +Viki +Vonda +Vonnie +Willie +Yevette +Zelda +Adelaida +Aimee +Alethea +Alexa +Alexandria +Alycia +Anette +Barbra +Beatris +Blair +Brinda +Britt +Cami +Candis +Carina +Carolee +Celestine +Celina +Chana +Christal +Christiane +Cinda +Concetta +Coral +Coreen +Cyndie +Daisy +Dann +Debera +Deeanna +Deedra +Delphine +Dian +Diedre +Donald +Donelle +Dorian +Edward +Elayne +Elida +Elonda +Fawn +Francie +Georgine +Imelda +Jacqui +Jamey +Jammie +Janean +Jasmine +Jeanene +Jeanetta +Jenell +Jenelle +Jewell +Joelle +Joi +Julieann +Karan +Kary +Kathe +Keely +Kellene +Kellye +Kenneth +Lacey +Lafondra +Laurene +Lavada +Lavonna +Lenette +Leonora +Liana +Loralee +Lus +Maile +Mamie +Maribeth +Maricella +Marilou +Marisol +Marnie +Marnita +Mavis +Merilee +Micki +Mina +Minnie +Mischelle +Nadia +Nickie +Paulina +Pia +Piper +Pricilla +Princess +Raymond +Regena +Renea +Ricki +Robbyn +Roni +Roselyn +Sarita +Shara +Sharri +Shelle +Siobhan +Starlene +Stephenie +Susy +Taryn +Timi +Tonie +Tracye +Velda +Venetia +Xochitl +Alena +Alfreda +Aline +Alyssa +Anamaria +Anamarie +Anitra +Arlette +Bennie +Bethann +Blanche +Brandi +Brett +Brigit +Camie +Candee +Carmella +Caryl +Cathlene +Chantal +Chari +Charlena +Cheree +Cherryl +Chimene +Christene +Christopher +Corena +Cris +Cristal +Deadra +Deeanne +Deette +Demetria +Denee +Detra +Dodie +Dorcas +Dorrie +Dory +Earlene +Earline +Eden +Ellie +Enid +Eraina +Eugenie +Felicitas +Fiona +Francis +Frank +Frieda +Glynnis +Hali +Hattie +Haydee +Heide +Ileen +Irasema +Ivonne +Jaimie +Jani +Janina +Janise +Jaylene +Jenice +Jesse +Johnny +Jolynn +Jonette +Jonnie +Joseph +Justina +Kandace +Kemberly +Kenna +Kimi +Kimm +Kimmie +Kira +Kirstin +Kit +Koni +Kori +Lanae +Lanetta +Lanita +Lara +Larraine +Lauralee +Laure +Leisha +Leola +Lesia +Liane +Lina +Lindsey +Lisabeth +Lisbeth +Lita +Lu +Luanna +Lulu +Luwana +Marcelina +Maren +Marguerita +Marilynn +Mark +Marquita +Maryalice +Marylin +Melani +Melonie +Melony +Merrie +Mickie +Milissa +Miranda +Mirna +Monette +Myriam +Neva +Noel +Peggie +Perla +Raeann +Renay +Retha +Rina +Rosamaria +Rosann +Rosella +Ruthann +Sharleen +Shellee +Shereen +Sherre +Sherrilyn +Shonna +Sidney +Sunday +Susannah +Susi +Suzzanne +Tamar +Tanja +Terre +Tess +Toby +Tyra +Valeri +Venessa +Vivien +Adelaide +Adelia +Adriane +Alaina +Alan +Alba +Alisha +Alissa +Alta +Alva +Amada +Amie +Anastacia +Andre +Angelika +Angeline +Arcelia +Ardith +Arlyn +Audry +Barri +Bernita +Bessie +Blythe +Brian +Brita +Bronwyn +Carlota +Carlotta +Carlyn +Carolyne +Casandra +Catharine +Catrina +Charise +Charlyn +Charyl +Christel +Claudine +Corine +Corrie +Cosette +Cristela +Cristine +Cruz +Cyndee +Dalia +Danetta +Dania +Daphine +Darlynn +Daryl +Davina +De +Deanie +Deby +Deloris +Denell +Denese +Devi +Diannia +Dionne +Donetta +Donya +Dore +Doretta +Douglas +Drusilla +Elizebeth +Elodia +Elouise +Ena +Eulalia +Evelia +Fanny +Felipa +Fran +Francene +Gari +Gary +Gaylyn +Genelle +Gerry +Hedy +Holli +Hollis +Honey +Hortensia +Ilda +Isabell +Ivette +Jackqueline +Jamee +Janalee +Jannie +Jaye +Jayna +Jeane +Jeanmarie +Jeannett +Jennell +Jodene +Jon +Jona +Jonni +Josephina +Kami +Kandis +Karlyn +Karole +Karoline +Karon +Katheleen +Kathrin +Kathryne +Kelleen +Kimberely +Kimbra +Kimiko +Korinne +Lacy +Lajuana +Lanell +Lashaun +Lavina +Lawrence +Lecia +Lili +Lilian +Lizette +Lona +Loni +Lorenza +Lorry +Louann +Lupita +Lynell +Mardell +Marge +Mariana +Marilu +Marivel +Mattie +Maurine +Melynda +Mitzie +Myrtle +Nelly +Ninfa +Nyla +Odessa +Olive +Pamella +Paul +Perri +Phillip +Racheal +Rachele +Raina +Renata +Rhona +Ricarda +Richele +Ricky +Rise +Rodney +Rondi +Roseanna +Sabina +Serafina +Shanda +Shaunna +Sherrin +Sheryll +Sigrid +Simona +Stephen +Steve +Stormy +Summer +Tacy +Taffy +Tama +Tamy +Tasha +Teddi +Terie +Terisa +Terresa +Tessie +Thalia +Tillie +Timothy +Tinamarie +Tisa +Tish +Tisha +Tony +Torri +Tory +Toya +Trenna +Tressa +Trudie +Tyla +Valinda +Vanda +Vandy +Vannessa +Virgie +Viviana +Wenda +Wende +Wendie +Willa +Wynona +Yasmin +Zandra +Lisa +Susan +Karen +Mary +Linda +Laura +Cynthia +Julie +Patricia +Lori +Sandra +Kimberly +Deborah +Elizabeth +Michelle +Teresa +Kelly +Denise +Tammy +Maria +Donna +Pamela +Debra +Jennifer +Nancy +Cheryl +Kathleen +Robin +Debbie +Tina +Christine +Barbara +Diane +Sharon +Brenda +Cindy +Tracy +Kim +Kathy +Rebecca +Diana +Carol +Theresa +Wendy +Janet +Laurie +Terri +Stephanie +Catherine +Angela +Michele +Leslie +Suzanne +Rhonda +Gina +Paula +Margaret +Valerie +Renee +Christina +Dawn +Dana +Annette +Jill +Katherine +Sherry +Monica +Carolyn +Anna +Martha +Ann +Melissa +Jacqueline +Andrea +Sheila +Tamara +Shelly +Sheri +Connie +Sylvia +Stacy +Janice +Cathy +Judy +Sherri +Yvonne +Deanna +Gloria +Victoria +Yolanda +Kathryn +Stacey +Colleen +Virginia +Amy +Vicki +Anita +Teri +Carrie +Heidi +Anne +Lynn +Carla +Regina +Marie +Shelley +Melinda +Darlene +Veronica +Bonnie +Tami +Julia +Sheryl +Becky +Melanie +Irene +Terry +Shirley +Heather +Helen +Lorraine +Yvette +Jane +Ruth +Elaine +Beth +Joyce +Judith +Jamie +Shannon +April +Jeanette +Toni +Holly +Joanne +Rachel +Beverly +Alicia +Shari +Maureen +Sarah +Erin +Gail +Rita +Penny +Alice +Sandy +Tracey +Roberta +Carmen +Rose +Peggy +Jackie +Norma +Frances +Vickie +Charlene +Ellen +Joan +Darla +Jeanne +Rosa +Melody +Jean +Sally +Kristin +Leticia +Natalie +Eileen +Tanya +Marilyn +Dorothy +Betty +Pam +Crystal +Eva +Caroline +Evelyn +Kristine +Alison +Belinda +Dolores +Lydia +Loretta +Patty +Vivian +Phyllis +Esther +Kelley +Ronda +Joann +Ramona +Irma +Kimberley +Sara +Traci +Audrey +Kristi +Roxanne +Tonya +Leah +Sonia +Kristen +Sue +Cheri +Jessica +Jo +Joy +Robyn +Rosemary +Dianna +Kelli +Susie +Wanda +Dina +Juanita +Lynne +Ana +Jenny +Kerry +Kellie +Chris +Marlene +Shawn +Tammie +Dena +Sherrie +Grace +Kari +Charlotte +Allison +Arlene +Cecilia +Sonya +Janine +Jody +Lynette +Marianne +Doreen +Jodi +Lynda +Claudia +Monique +Patti +Bridget +Dora +Guadalupe +June +Marcia +Nina +Vicky +Cherie +Rene +Karla +Lora +Marla +Christy +Jan +Felicia +Desiree +Jana +Kristina +Ruby +Glenda +Danielle +Dianne +Karin +Lorie +Sabrina +Antoinette +Elena +Kirsten +Nadine +Nora +Trina +Nicole +Olivia +Carole +Marjorie +Rochelle +Josephine +Louise +Terrie +Constance +Priscilla +Lucy +Debora +Ginger +Lillian +Emily +Therese +Tracie +Katrina +Alisa +Pauline +Doris +Kristy +Margie +Tara +Angie +Delia +Joanna +Jeannie +Lauren +Sonja +Deanne +Kris +Cassandra +Elisa +Gayle +Joni +Suzette +Gretchen +Lee +Margarita +Kerri +Lorrie +Mona +Vanessa +Alma +Candy +Jeannette +Jennie +Cathleen +Gwendolyn +Jeri +Laurel +Amanda +Janette +Stacie +Celeste +Nanette +Sophia +Beatrice +Jeannine +Marcella +Bernadette +Marian +Rosemarie +Marsha +Rosalie +Tammi +Candace +Celia +Georgia +Jeanine +Lois +Edith +Elsa +Molly +Liz +Amber +Lupe +Lynnette +Isabel +Maryann +Silvia +Kay +Paulette +Rosie +Susanne +Tamera +Betsy +Katie +Daphne +Karyn +Shawna +Lorena +Naomi +Adrienne +Ingrid +Trudy +Cara +Corinne +Eleanor +Zina +Coleen +Lauri +Marina +Tamra +Amelia +Leanne +Tricia +Edna +Erica +Olga +Kara +Miriam +Stella +Colette +Jodie +Bertha +Deena +Angelina +Kimberlee +Susana +Vera +Christie +Marta +Paige +Rachelle +Cecelia +Claire +Deana +Debby +Francine +Leann +Megan +Delores +Geraldine +Jolene +Lucinda +Luz +Shelli +Trisha +Angelica +Blanca +Keri +Lorri +Patrice +Janie +Janis +Lana +Lorna +Staci +Camille +Darcy +Shellie +Clara +Emma +Elisabeth +Janelle +Krista +Margo +Cristina +Dayna +Ladonna +Bobbie +Jacquelyn +Danette +Jerri +Christi +Lesley +Marion +Marisa +Bernice +Cari +Johanna +Rosalind +Sandi +Cindi +Lena +Liza +Dee +Erika +Gwen +Johnna +Juliet +Karrie +Madeline +Nikki +Valarie +Graciela +Judi +Lucia +Misty +Noreen +Shelia +Tiffany +Wendi +Hilda +Leona +Myra +Rena +Deirdre +Della +Marcie +Marcy +Raquel +Tania +Antonia +Billie +Deann +Ida +Leigh +Michael +Myrna +Rosalinda +Angel +Bridgette +Consuelo +Georgina +Latanya +Shauna +Sondra +Allyson +Annie +Deidre +Denice +Estella +Faith +Genevieve +Josefina +Lourdes +Debi +Caryn +Dori +Elise +Hope +Martina +Arleen +Gabrielle +Lesa +Marci +Patsy +Whitney +Alesia +Corina +Cyndi +Elvira +Eve +Julianne +Lea +Mari +Gena +Juli +Mindy +Nannette +Thelma +Bobbi +Jayne +Jessie +Maxine +Polly +Rachael +Susanna +Benita +Florence +Gladys +Janna +Juliana +Kathi +Kristie +Latonya +Lucille +Stefanie +Suzie +Tonia +Adriana +Chandra +Katharine +Kendra +Magdalena +Mildred +Rae +Randi +Aurora +Caren +Cathryn +Jami +Pearl +Sharlene +Simone +Dorene +Edie +Esperanza +Juana +Leeann +Mercedes +Shelby +Carolina +Danna +David +Dona +Flora +Inez +Saundra +Brigitte +Christa +Dixie +Gigi +Lorene +Socorro +Sydney +Aileen +Alexandra +Ava +Elva +Geri +Hilary +Katy +Leanna +Lilia +Mitzi +Rosario +Suzan +Alexis +Cora +Elvia +Eugenia +Gale +Laureen +Marguerite +Maribel +Nellie +Robbie +Rosanne +Suzy +Tonja +Venus +Adela +Charmaine +Corrine +Debbi +Estela +Evangelina +Francisca +Glynis +Helena +Helene +Jenifer +Kathie +Leila +Lenora +Maggie +Robbin +Terese +Zena +Adele +Annamarie +Cary +Dawna +Elaina +John +Jonna +Lani +Lola +Lorinda +Maura +Rebekah +Renae +Rosanna +Suzanna +Twila +Beatriz +Clarissa +Janell +Jeanie +Roxane +Ursula +Abigail +Aida +Brandi +Carey +Claudette +Deedee +Ernestine +Georgette +Gracie +Ilene +Josie +Lanette +Ofelia +Shana +Sofia +Tori +Valencia +Verna +Candi +Candice +Catalina +Clare +Gabriela +Greta +Iris +Jocelyn +Justine +Lavonne +Luann +Luanne +Melisa +Richelle +Roseann +Sharron +Tamie +Amalia +Brooke +Carie +Cathie +Cheryle +Danelle +Ginny +Jacquline +Janene +Kandi +Kathrine +Kerrie +Lissa +Malinda +Mimi +Nanci +Roxanna +Serena +Sheree +Alyce +Angelique +Cathi +Dale +Dani +Diann +Gay +Jaime +Janeen +Lesli +Lily +Mara +Mia +Petra +Trena +Violet +Alana +Alyson +Angelia +Brandy +Carlene +Cassie +Danita +Evette +Francesca +Harriet +Hillary +Juliette +Kitty +Leilani +Leisa +Lillie +Lou +Maricela +Melodie +Meredith +Patrica +Robert +Roxann +Sherie +Athena +Bonita +Bridgett +Cori +Devon +Dorothea +Elsie +Erlinda +Felecia +Geneva +Glenna +Jaimie +Kandy +Karri +Lawanda +Leesa +Lila +Lina +Pamala +Pat +Ronna +Rosalyn +Shanda +Sherilyn +Sherrill +Trish +Wilma +Alberta +Faye +Gayla +Isabelle +Jayme +Jeanna +Kate +Kimber +Letitia +Lidia +Lise +Loraine +Loree +Luana +Lyn +Manuela +Margot +Maryellen +Marylou +Merry +Monika +Pennie +Rebeca +Rhoda +Rona +Selina +Vikki +Ada +Antonette +Armida +Barbie +Catharine +Cory +Dolly +Eunice +Holli +Juliann +Karie +Katheryn +Kellee +Lilly +Louisa +Marti +Michell +Richard +Shanna +Sharyl +Shiela +Viola +Agnes +Annemarie +Bambi +Bettina +Brigette +Carri +Collette +Darci +Deeann +Ernestina +Freda +Hazel +Imelda +James +Joanie +Julianna +Karol +Kym +Laverne +Mandy +Noel +Noelle +Noemi +Penelope +Roseanne +Rowena +Tena +Annamaria +Araceli +Bernadine +Bethany +Charla +Dara +Dinah +Elissa +Henrietta +Jewel +Karon +Lia +Lorelei +Mariana +Marilee +Marty +Maryanne +Meg +Missy +Paris +Starla +Tari +Trudi +Valorie +Velma +Velvet +Zoe +Anastasia +Barrie +Carleen +Carmela +Carmelita +Casey +Cathrine +Charisse +Cherise +Concepcion +Cristine +Debrah +Delfina +Dorinda +Erma +Ethel +Evangeline +Gaye +Gerri +Griselda +Jolynn +Lanita +Larae +Leslee +Lindy +Lonnie +Marianna +Marisela +Marissa +Rosaura +Roslyn +Roxana +Adrianne +Aleta +Alexandria +Anthony +Antionette +Carin +Celine +Daisy +Daria +Deidra +Eloise +Fawn +Gaylene +Hollie +Hortencia +Jeana +Liana +Lolita +Mark +Natasha +Nona +Raelene +Raylene +Rina +Ronnie +Sallie +Sybil +Tamela +Tawnya +Tracee +Troy +Twyla +William +Abby +Adeline +Adriene +Alecia +Alejandra +Alyssa +Andria +Angelita +Belen +Chrystal +Corrina +Courtney +Edwina +Ester +Gabriella +Geralyn +Gwyn +Hannah +Janina +Jena +Kathlene +Kori +Lela +Liane +Libby +Lita +Marietta +Marlena +Melba +Michaela +Mollie +Nicki +Niki +Renita +Samantha +Selena +Shaun +Sherryl +Stefani +Tani +Tia +Tresa +Treva +Annmarie +Becki +Brigid +Caryl +Cherri +Chrissy +Cindie +Clarice +Corey +Corine +Corinna +Cris +Cristy +Dominique +Elana +Eliza +Ella +Esmeralda +Frankie +Gilda +Herlinda +Ilona +Ivy +Jacki +Joetta +Judie +Kaye +Kevin +Kimberlie +Kyra +Latonia +Laurene +Lawana +Leeanne +Letty +Loreen +Loriann +Lory +Lucretia +Luisa +Madonna +Meghan +Michel +Mickey +Moira +Pattie +Sharyn +Shirl +Taffy +Tammera +Thea +Tyra +Valentina +Vickey +Adelina +Adrianna +Aimee +Alba +Annetta +Bessie +Beverley +Blair +Bonny +Chantel +Dannette +Darcie +Deeanna +Eden +Fay +Jacquelin +Jenni +Joellen +Karina +Kenna +Kenneth +Krystal +Lynelle +Marcelle +Marnie +Mavis +Mercy +Meri +Minerva +Misti +Nancie +Pilar +Portia +Reba +Rocio +Ronald +Rosalia +Ruthie +Sabina +Susannah +Tammara +Tasha +Tawny +Teena +Teressa +Thomas +Timothy +Vida +Vonda +Winona +Alane +Amparo +Annabelle +Autumn +Avis +Babette +Briana +Carmel +Charleen +Cherrie +Cinthia +Darline +Enedina +Ericka +Eugenie +Fonda +Germaine +Gia +Gisele +Gregory +Jerilyn +Jesus +Jewell +Johna +Joleen +Jose +Keli +Kerstin +Kimberely +Kimberli +Larhonda +Lavern +Lenore +Lizette +Madeleine +Mae +Mariann +Maritza +Marva +Marybeth +Mechelle +Melony +Merri +Millie +Mirna +Nan +Neva +Nickie +Nicola +Nicolette +Opal +Pandora +Peri +Reina +Renata +Sharie +Steven +Tambra +Timi +Velda +Vonnie +Yolonda +Zelda +Zenaida +Alfreda +Alisha +Alissa +Aurelia +Barbra +Berta +Camilla +Chantal +Charles +Cherilyn +Cheryll +Christal +Claudine +Corrie +Cydney +Cyndy +Dalene +Darleen +Davina +Debbra +Delilah +Delinda +Dennise +Dian +Donette +Dorian +Dorie +Earlene +Eloisa +Emilia +Evonne +Francis +Georgianna +Gianna +Gillian +Hortensia +Jacque +Janel +Janey +Jerrie +Jodee +Joelle +Jolie +Joseph +Josette +Jovita +Kami +Kary +Kasey +Katina +Kendall +Kimberlyn +Kimi +Leonor +Lezlie +Londa +Louann +Madelyn +Maryjane +May +Myrtle +Nadia +Nathalie +Nedra +Nita +Nola +Penni +Randy +Rebbecca +Reyna +Romy +Roni +Rosalba +Rosana +Scarlett +Sharla +Shaunna +Siobhan +Siri +Soledad +Sophie +Stephani +Stephany +Tamala +Tana +Tanja +Teresita +Terisa +Tommie +Tona +Winifred +Yevette +Alena +Alondra +Althea +Andra +Beryl +Brandee +Bronwyn +Carrol +Cecily +Christiana +Christopher +Coreen +Cristi +Danell +Darcey +Denese +Donnette +Ermelinda +Guillermina +Ina +Janetta +Jenine +Jenna +Johnnie +Karolyn +Karren +Kelle +Kira +Kristal +Kristan +Kyle +Laurette +Leana +Leora +Lilian +Liliana +Lisha +Lizabeth +Lona +Lonna +Lorine +Lorita +Lucila +Lynell +Mamie +Marcela +Marcelina +Marisol +Maya +Melani +Melina +Muriel +Natalia +Nova +Pamella +Piper +Princess +Rafaela +Reva +Rosalee +Rosann +Roxie +Sandie +September +Sharri +Sharrie +Shona +Sindy +Star +Suzann +Tamar +Terilyn +Terryl +Tomi +Trini +Trinidad +Trudie +Veda +Adrian +Alida +Alina +Alycia +Ashley +Beckie +Britta +Callie +Cameron +Cammy +Carl +Carlyn +Carolee +Carolynn +Caron +Carroll +Celina +Charlyn +Christian +Coral +Cornelia +Cruz +Darcel +Daryl +Dawne +Dedra +Delisa +Demetria +Denette +Dessa +Diedre +Donnell +Elda +Elicia +Eric +Evelia +Fanny +Felicitas +Genise +Georgiana +Giselle +Heide +Isabella +Jacklyn +Jaye +Jaymie +Jeanene +Jeanetta +Jennette +Jerry +Jillian +Joette +Jonnie +Jordana +Joslyn +Julene +Karleen +Karlyn +Kellye +Kenda +Kimberle +Lara +Laronda +Launa +Leandra +Luanna +Mabel +Machelle +Maia +Maribeth +Maryjo +Mattie +Melodee +Mendy +Merilee +Merrie +Micaela +Micheline +Mickie +Mindi +Minnie +Nelda +Nena +Odette +Ophelia +Page +Perla +Randa +Ronni +Rosamaria +Roseanna +Rosetta +Rossana +Roy +Rozanne +Seana +Shannan +Shawne +Shawnee +Sidney +Stacia +Summer +Sunny +Synthia +Tamiko +Terra +Tisha +Tobi +Vernice +Vilma +Vita +Vivien +Wendie +Willie +Abbie +Adina +Alanna +Alejandrina +Aline +Alva +Alyse +Amie +Anamaria +Annalee +Aracely +Arcelia +Bari +Birgit +Blanche +Brian +Britt +Cammie +Candis +Carisa +Carletta +Carlotta +Charline +Cheree +Cherlyn +Chevelle +Christene +Cinda +Conni +Cyndee +Daina +Dawnette +Dea +Dede +Delaine +Delphina +Delynn +Destiny +Devin +Diedra +Dion +Dione +Dodie +Donald +Doni +Donita +Dorthea +Estelle +Felice +Gary +George +Gidget +Glynda +Greer +Ines +Inger +Irasema +Ivette +Ivonne +Jackqueline +Jaclyn +Janiece +Janise +Jann +Jannette +Jaylene +Jayna +Jeffrey +Jenean +Jenee +Jenell +Jimmie +Joi +Jolyn +Jona +Josephina +Karan +Kaylene +Keely +Kelleen +Kit +Kristyn +Ladana +Lamona +Lanae +Latasha +Laurinda +Lavon +Lavonna +Leia +Lesia +Leslye +Letha +Lianne +Lindsay +Lindsey +Linnea +Lizbeth +Loni +Loren +Loria +Lorilee +Lottie +Louella +Loura +Lurdes +Mable +Maeve +Mandi +Margret +Mariam +Marika +Marlyn +Marni +Maryhelen +Marylynn +Melia +Melonie +Mike +Mikki +Monalisa +Morgan +Norah +Octavia +Oralia +Patrick +Penney +Perri +Phaedra +Phillis +Prudence +Rachell +Raymond +Rayna +Regena +Ricki +Rochell +Rosalina +Rosaline +Sabra +Sabrena +Sammie +Sandee +Scott +Sharee +Sharilyn +Sharolyn +Shawnda +Sherell +Sheril +Sherre +Sherrell +Sherrilyn +Sheryll +Sloan +Steffanie +Susann +Susy +Sutton +Suzi +Tandy +Tanna +Taryn +Tatiana +Terresa +Theodora +Theressa +Toi +Toya +Tracye +Troylene +Val +Vernita +Wenda +Wende +Windy +Zandra +Adelia +Adella +Anabel +Andrew +Angeline +Angella +Annabel +Annalisa +Anya +Armandina +Astrid +Audry +Avelina +Benjamin +Bernita +Bette +Billy +Brenna +Brett +Brigitta +Cami +Caprice +Cathlene +Cecile +Chanel +Charlette +Cherese +Cherry +Christena +Corene +Crista +Cybele +Dalia +Dalila +Danetta +Danny +Daphane +Darlean +Darnell +Daryn +Davida +Debera +Deborra +Delana +Deloris +Denia +Denine +Denita +Deonna +Deserie +Dierdre +Donetta +Doretta +Dorine +Dorrie +Dottie +Drucilla +Dyana +Edward +Elia +Ellisa +Elyse +Ermalinda +Etta +Felicita +Fidelia +Fran +Fredricka +Gilbert +Gini +Giovanna +Glory +Goldie +Gregoria +Gwyneth +Haydee +Hedy +Helga +Herminia +Ileana +Inga +Ione +Jade +Janae +Jani +Jennell +Jodine +Joe +Joelene +Joella +Johnny +Jolinda +Jonette +Jonie +Joycelyn +Julieann +Juliene +Julienne +Justina +Kamala +Kamela +Kandice +Karry +Kassandra +Kathaleen +Katherin +Kathern +Kathryne +Kellene +Keren +Kerin +Kiersten +Kimmy +Kirstin +Konnie +Lacey +Lajuana +Lanell +Laquita +Laraine +Lashawn +Lavette +Leisha +Leone +Leonora +Lesly +Lin +Lisbeth +Lore +Lorretta +Lourie +Lupita +Lynnda +Lynnetta +Malia +Maralee +Margarite +Marleen +Martine +Marylee +Mayra +Melva +Michaele +Michal +Micheal +Michon +Miki +Millicent +Milly +Mirtha +Mitzie +Nelly +Paul +Pauletta +Petrina +Quinn +Racheal +Raeann +Raeleen +Raven +Regan +Renate +Rhea +Rhonna +Ricky +Robbi +Robynn +Rolanda +Rolinda +Rondi +Rosalva +Rosella +Ruthann +Sadie +Selene +Shara +Sharra +Sharry +Shay +Shayne +Sheridan +Sherita +Sherly +Sheryle +Shirleen +Silvana +Sloane +Sonjia +Soraya +Stephenie +Stormy +Tam +Tameria +Tangie +Tawnie +Terina +Terrisa +Tessie +Thalia +Thersa +Thresa +Toby +Torrie +Tressa +Una +Unknown +Valentine +Valinda +Vanetta +Velia +Veronique +Victor +Vienna +Violeta +Vivienne +Wendee +Willa +Winnie +Yasmin +Zaida +Lisa +Mary +Karen +Susan +Kimberly +Patricia +Laura +Cynthia +Julie +Linda +Michelle +Sandra +Deborah +Elizabeth +Denise +Lori +Maria +Jennifer +Kelly +Donna +Teresa +Pamela +Christine +Debra +Tammy +Robin +Kathleen +Nancy +Cheryl +Brenda +Tracy +Tina +Barbara +Sharon +Diane +Carol +Debbie +Diana +Cindy +Rebecca +Dawn +Angela +Kim +Stephanie +Wendy +Theresa +Jacqueline +Kathy +Christina +Catherine +Janet +Rhonda +Michele +Gina +Suzanne +Terri +Jill +Leslie +Laurie +Dana +Margaret +Valerie +Paula +Renee +Monica +Anna +Annette +Katherine +Sherry +Sheila +Andrea +Carolyn +Ann +Shelly +Stacy +Tamara +Melissa +Martha +Deanna +Heidi +Sylvia +Yolanda +Anne +Yvonne +Kathryn +Amy +Sheri +Colleen +Cathy +Stacey +Connie +Sherri +Regina +Carla +Victoria +Carrie +Gloria +Janice +Shannon +Veronica +Judy +Yvette +Lynn +Virginia +Heather +Melinda +Julia +Marie +Anita +Darlene +Melanie +Bonnie +April +Teri +Rose +Alicia +Shelley +Sheryl +Jeanette +Toni +Holly +Vicki +Lorraine +Carmen +Ruth +Joanne +Judith +Maureen +Beth +Shirley +Roberta +Erin +Joyce +Sarah +Jackie +Jamie +Tami +Beverly +Rachel +Elaine +Irene +Leticia +Tracey +Alice +Natalie +Rosa +Helen +Norma +Sally +Peggy +Kristine +Rita +Becky +Caroline +Jane +Joan +Gail +Kristin +Frances +Traci +Terry +Eileen +Ellen +Allison +Penny +Tanya +Sandy +Crystal +Dorothy +Patty +Darla +Charlene +Jodi +Monique +Vickie +Charlotte +Joann +Sonia +Betty +Jean +Kelli +Danielle +Lydia +Kimberley +Melody +Janine +Kristen +Ramona +Ronda +Robyn +Shawn +Leah +Joy +Phyllis +Shari +Loretta +Eva +Dolores +Tonya +Audrey +Christy +Jessica +Arlene +Felicia +Wanda +Evelyn +Chris +Juanita +Alison +Kellie +Kristina +Dianna +Doreen +Marilyn +Jeanne +Kristi +Vivian +Cecilia +Dina +Irma +Kari +Ana +Belinda +Rosemary +Sara +Pam +Sherrie +Dianne +Kelley +Nicole +Lynda +Jo +Rochelle +Kerry +Cathleen +Desiree +Jody +Pauline +Esther +Roxanne +Lynette +Trina +Bridget +Marlene +Lynne +Sonya +Kirsten +Karin +Tammie +Jana +Nina +Guadalupe +Sue +Carole +Jenny +Margarita +Dena +Cheri +Dora +Grace +Antoinette +Elena +Cherie +Claudia +Katrina +Lauren +Trisha +Vicky +Elisa +Lorie +Angie +Josephine +June +Marla +Sonja +Cassandra +Karla +Marianne +Adrienne +Patti +Nadine +Suzette +Tracie +Amanda +Ginger +Shawna +Tara +Tricia +Gretchen +Joanna +Susie +Nora +Doris +Delia +Emily +Jan +Jeannette +Lora +Kris +Candace +Stella +Debora +Jeanine +Kerri +Vanessa +Alma +Marcia +Nanette +Rene +Sabrina +Alisa +Deanne +Lee +Marsha +Ruby +Constance +Edith +Janette +Olivia +Joni +Kimberlee +Louise +Tiffany +Glenda +Gwendolyn +Kristy +Angelica +Lupe +Marjorie +Margie +Olga +Patrice +Terrie +Lillian +Lorena +Lorrie +Lucy +Hope +Marina +Geraldine +Jacquelyn +Karyn +Marcella +Mona +Silvia +Erica +Gayle +Rosemarie +Ingrid +Isabel +Leanne +Marian +Deneen +Elsa +Jennie +Staci +Lois +Lorna +Susanne +Bertha +Stacie +Amber +Angelina +Danette +Priscilla +Candy +Leann +Lucinda +Paulette +Beatrice +Celeste +Celia +Corina +Cristina +Kara +Marci +Rosalie +Bernadette +Deana +Georgia +Janelle +Jeannie +Molly +Eleanor +Francine +Shelli +Sophia +Tamera +Colette +Darcy +Jeri +Therese +Tammi +Christi +Lana +Laurel +Liz +Megan +Bridgette +Carolina +Christie +Krista +Naomi +Rosie +Billie +Erika +Maryann +Misty +Cari +Kay +Lynnette +Shellie +Tamra +Camille +Daphne +Katie +Lauri +Marta +Miriam +Shelia +Jeannine +Leigh +Marcy +Corinne +Rachelle +Edna +Hilda +Keri +Sondra +Zina +Adriana +Amelia +Dee +Deirdre +Susana +Betsy +Blanca +Deann +Samantha +Jodie +Wendi +Cara +Elisabeth +Margo +Marion +Valarie +Denice +Paige +Sandi +Bobbie +Claire +Coleen +Gena +Graciela +Liza +Lorri +Lourdes +Rena +Shauna +Angel +Cecelia +Delores +Georgina +Martina +Mia +Noreen +Trudy +Annie +Deena +Esperanza +Janie +Allyson +Elise +Latanya +Polly +Raquel +Bobbi +Jolene +Lesley +Luz +Cindi +Leona +Marisa +Mindy +Nikki +Jami +Julianne +Ladonna +Lucia +Patsy +Vera +Aurora +Dayna +Florence +Judi +Kendra +Kristie +Emma +Gabrielle +Latonya +Mari +Brigitte +Caryn +Clara +Elvira +Jessie +Lesa +Lucille +Alana +Madeline +Magdalena +Myrna +Eugenia +Faith +Rosalind +Bernice +Della +Gabriela +Gwen +Janell +Aileen +Caren +Debby +Hilary +Johanna +Juliet +Genevieve +Janis +Nellie +Saundra +Alesia +Antonia +Elvia +Lea +Mitzi +Jenifer +Jerri +Juliana +Kerrie +Lena +Maricela +Maxine +Nannette +Alexandra +Athena +Corrine +David +Deidre +Estella +Helena +Ida +Kathie +Lola +Lorene +Michael +Mimi +Myra +Shanna +Estela +Geri +Josie +Letitia +Lilia +Mandy +Randi +Rosalinda +Catalina +Gay +Karrie +Marguerite +Sherie +Tonia +Arleen +Danna +Kathi +Marcie +Mercedes +Noelle +Pearl +Tori +Annamarie +Charmaine +Christa +Consuelo +Jayne +Josefina +Laureen +Lenora +Ofelia +Rae +Susanna +Whitney +Beatriz +Francesca +Gigi +Meredith +Stefanie +Thelma +Evangelina +Gladys +Iris +Justine +Robbie +Verna +Candice +Claudette +Elva +Gracie +Kecia +Melisa +Robbin +Rosanna +Rosanne +Roxane +Suzan +Abigail +Brandy +Dawna +Dori +Hazel +Helene +Hillary +John +Lawanda +Maribel +Mildred +Serena +Sharlene +Socorro +Armida +Carlene +Debbi +Debi +Eve +Jeanie +Mara +Maura +Rosario +Suzy +Tania +Cora +Francisca +Gale +Jacquline +Sheree +Simone +Ursula +Adrian +Brandi +Brigette +Chandra +Courtney +Cyndi +Danelle +Darci +Dixie +Johnna +Juana +Juli +Katy +Leilani +Lily +Robert +Sofia +Suzanna +Tonja +Vikki +Cherri +Dominique +Dorene +Geneva +Gerri +Kate +Leeann +Lenore +Malinda +Patrica +Rachael +Valencia +Violet +Amalia +Anastasia +Anjanette +Araceli +Babette +Benita +Bettina +Bridgett +Clare +Clarissa +Danita +Dona +James +Janeen +Janene +Janna +Karol +Katharine +Lila +Luann +Pamala +Penelope +Rebeca +Viola +Zena +Adela +Annmarie +Antionette +Ava +Bonita +Deedee +Edie +Ilene +Kimberlie +Leonor +Marisela +Maryanne +Renae +Rocio +Tamie +Trish +Velma +Alejandra +Annemarie +Bambi +Carri +Cathryn +Cristy +Daisy +Ella +Greta +Juliette +Kendall +Lanette +Lani +Marissa +Nona +Roxann +Shana +Shelby +Ada +Agnes +Angelique +Brooke +Carin +Carmela +Casey +Chrystal +Erlinda +Esmeralda +Glynis +Jocelyn +Lavonne +Lilly +Lolita +Margot +Rosalyn +Sandie +Thea +Alecia +Bethany +Brigid +Cathrine +Cheryle +Corrina +Deidra +Diann +Dorothea +Ernestine +Flora +Jaime +Jonna +Juliann +Julianna +Karri +Kathrine +Kimberli +Leila +Lyn +Maggie +Marlena +Merry +Petra +Reyna +Roseann +Roslyn +Sallie +Shiela +Sydney +Tamela +Adriene +Aimee +Aleta +Alyson +Becki +Carey +Charisse +Corinna +Deeann +Eloise +Faye +Gayla +Glenna +Janina +Jewel +Kimber +Leanna +Lidia +Loreen +Lorinda +Michell +Natalia +Noel +Pat +Rebekah +Romy +Selina +Starla +Teresita +Aida +Barbie +Cammie +Cassie +Charla +Cori +Dale +Daneen +Djuna +Edwina +Elissa +Emilia +Ethel +Ginny +Inez +Isabelle +Jacque +Katheryn +Kimi +Kitty +Laverne +Lesli +Lina +Luisa +Maritza +May +Moira +Pennie +Rhoda +Roseanne +Rowena +Roxanna +Sharla +Valentina +Candi +Catharine +Concepcion +Dani +Dara +Debbra +Erma +Ester +Eunice +Karie +Kira +Leisa +Machelle +Minerva +Noemi +Nola +Paris +Raylene +Rona +Sherilyn +Sherrill +Trudi +Valorie +Adele +Adrianne +Alexis +Angelia +Angelita +Barbra +Carie +Chantal +Cinthia +Dorinda +Georgette +Hannah +Herlinda +Kathlene +Kevin +Libby +Lorelei +Louisa +Marnie +Marylou +Millie +Monika +Muriel +Nanci +Nita +Renita +Roxana +Sandee +Sarita +Sharron +Shirl +Shirlee +Steven +Suzie +Twila +Alissa +Antonette +Ashley +Bronwyn +Cathie +Cherrie +Dedra +Dinah +Elana +Evette +Felecia +Ivy +Jeffrey +Kandi +Lashawn +Latonia +Leesa +Marilee +Marybeth +Merri +Natasha +Ronna +Rosalia +Sharyl +Shaun +Sophie +Stefani +Tawnya +Terra +Terresa +Tresa +Venus +Vonda +William +Alisha +Angeline +Annalisa +Autumn +Camilla +Carmella +Celina +Christen +Corey +Darleen +Diedre +Dionne +Djuana +Elaina +Elsie +Fawn +Frankie +Freda +Gia +Henrietta +Inger +Janel +Jannette +Jeana +Jeanna +Jerry +Jolynn +Justina +Krystal +Kym +Latricia +Lauretta +Lela +Luana +Marcela +Mariana +Marti +Maryellen +Melonie +Misti +Mollie +Nicki +Renata +Rosita +Selena +Star +Terese +Tessa +Thomas +Wilma +Beverley +Candie +Carmelita +Carolynn +Caron +Cary +Charles +Clarice +Collette +Cornelia +Cristi +Debrah +Dennise +Devon +Elia +Ericka +Gisele +Griselda +Jena +Jenni +Kandy +Kyle +Liane +Lindy +Lissa +Loraine +Madeleine +Mark +Mayra +Melodie +Mercy +Micaela +Nadia +Niki +Pattie +Romona +Rosalva +Ruthie +Sabina +Sabra +Stacia +Sybil +Tana +Tomi +Tracee +Trena +Abby +Adeline +Adriane +Alane +Alisia +Althea +Alyce +Annamaria +Barrie +Beckie +Cathi +Catrina +Celine +Charise +Cherise +Christin +Coral +Dannette +Dede +Delilah +Dorie +Germaine +Gilda +Hallie +Holli +Hollie +Imelda +Ivette +Jaqueline +Jayme +Jesus +Joi +Kayla +Kenda +Kirstin +Lavon +Leta +Letha +Loree +Lou +Lucila +Mae +Marcelle +Margret +Marianna +Marni +Maryjane +Melba +Melina +Missy +Reina +Renay +Richard +Roni +Ronni +Sean +Soledad +Stephani +Suzi +Tammara +Tommie +Velia +Zelda +Alberta +Andree +Bette +Blanche +Bonny +Brenna +Britt +Charleen +Christene +Claudine +Dalia +Daniel +Darcie +Dawne +Dea +Demetria +Denine +Diedra +Dottie +Eliza +Ermelinda +Evonne +Gaye +Hermelinda +Jacquelin +Julee +Kamala +Kandace +Karina +Kellee +Kenna +Kenneth +Laronda +Latisha +Laurette +Leonora +Lillie +Linnea +Lita +Lonnie +Loren +Lucretia +Madonna +Magda +Marcelina +Mariann +Marty +Maryjo +Maya +Meg +Melynda +Mickey +Mindi +Mirna +Monette +Neva +Rhea +Richelle +Rosalba +Shannan +Shara +Sharyn +Sheril +Sherril +Sherryl +Susannah +Tanja +Tera +Timi +Trinidad +Twyla +Velvet +Aline +Amparo +Andra +Anthony +Aurelia +Bernadine +Berta +Bessie +Bianca +Callie +Cami +Carleen +Carmel +Carolee +Cecily +Coreen +Cristine +Cynde +Daina +Dalene +Daniela +Daria +Denese +Detra +Dorina +Eden +Eloisa +Ernestina +Estelle +Francene +Francis +Gaylene +Genoveva +Giselle +Harriet +Jacki +Joanie +Joellen +Johna +Kami +Karlene +Keely +Keli +Kelle +Kimberely +Kimberlyn +Lajuana +Lawana +Leeanne +Lia +Lianne +Linette +Lisette +Lorine +Lura +Lus +Mandi +Marietta +Marva +Meghan +Melony +Michaela +Minnie +Nathalie +Nelly +Paul +Raelene +Regan +Rossana +Roxie +Shaunna +Sheli +Shirlene +Siobhan +Tambra +Tawni +Tonette +Velda +Viki +Vilma +Wendee +Wendie +Zoe +Adaline +Adelina +Alba +Alexandria +Alycia +Amie +Anette +Annabel +Arcelia +Belen +Bev +Bonni +Cameron +Caryl +Cecile +Chrissy +Cindie +Cris +Cruz +Davina +Delana +Delfina +Delinda +Denette +Denita +Dierdre +Dolly +Donita +Ellie +Elyse +Enedina +Evelia +Fiona +Gianna +Guillermina +Heide +Jacquelyne +Jacquie +Jammie +Jannine +Jenna +Jerilyn +Jewell +Johnnie +Joleen +Jolie +Jona +Jose +Joseph +Joycelyn +Karan +Kasey +Kathyrn +Keisha +Kellene +Kristan +Ladawn +Latrice +Laure +Laurene +Lavonda +Leda +Lelia +Lenette +Letty +Lindsey +Lisha +Lizabeth +Lonna +Manuela +Marisol +Marleen +Matilda +Mattie +Merrilee +Michaele +Michel +Millicent +Nedra +Nicolette +Ophelia +Pandora +Penney +Phoebe +Pia +Pilar +Piper +Raelynn +Rafaela +Reba +Risa +Robbi +Rolanda +Ronald +Rosamaria +Roseanna +Rosetta +Shanda +Shellee +Sherene +Stormy +Tammera +Teena +Tena +Tereasa +Teressa +Tia +Tiffani +Tish +Tisha +Treva +Valeri +Valeria +Vita +Windy +Adelia +Alena +Alina +Alyssa +Anabel +Annett +Aracely +Caitlin +Camie +Caprice +Carlotta +Casandra +Charity +Cherry +Cheryll +Christal +Cindra +Corine +Corliss +Cory +Delma +Deloris +Donald +Dorian +Dyan +Elda +Elicia +Elodia +Evangeline +Felice +Felisa +Flor +Gabriella +Georgianna +Gidget +Gillian +Glynnis +Gwyn +Haydee +Hayley +Hortencia +Ileana +Ina +Isela +Janean +Jann +Jeanetta +Jeni +Jenine +Jina +Jodee +Joelle +Jovita +Julene +Julieanne +Karleen +Karon +Karren +Kaye +Kaylene +Kimmie +Laila +Larae +Lark +Launa +Laurinda +Lavette +Leeanna +Leslee +Leslye +Letisia +Lezlie +Lona +Loralee +Loriann +Luanne +Luci +Lucina +Lupita +Mabel +Malissa +Marchelle +Mariam +Marlo +Mavis +Miki +Mikki +Nancie +Nelda +Nichole +Nicola +Norene +Opal +Paulene +Penni +Raymond +Reagan +Ricki +Ronnie +Rosana +Rosaura +Shan +Sharleen +Signe +Stephany +Stephenie +Tammra +Tani +Tari +Tasha +Tessie +Toi +Tonnie +Tuesday +Tyra +Yolonda +Abbie +Adella +Alica +Allen +Alysia +America +Andria +Arlette +Bobby +Brandie +Brett +Brook +Camelia +Carolyne +Caterina +Catherina +Cathlene +Charlette +Christel +Christiana +Christopher +Cina +Cinda +Cristal +Cybele +Cydney +Cyndee +Cyndie +Dahlia +Daniele +Dannielle +Darcey +Daryl +Davida +Dawnette +Delora +Denelle +Denene +Denna +Deserie +Dominica +Doria +Dorine +Dyana +Edythe +Elba +Elida +Elke +Emilie +Enid +Eric +Eugina +Fatima +Florinda +Frank +Gary +Gayleen +Genice +Gertrude +Haley +Holley +Hortensia +Ilona +Ines +Inge +Jackeline +Jacklyn +Jaimi +Janetta +Janiece +Jasmine +Jaylene +Jenette +Jenniffer +Jerrie +Jimmie +Joey +Jonelle +Jonette +Jordana +Juliane +Karey +Karlyn +Karolyn +Karry +Katina +Kenya +Kiersten +Kimiko +Kindra +Krissy +Kyra +Lanita +Lannette +Lanora +Lara +Lavinia +Lawanna +Lesia +Lindsay +Linnette +Lise +Livia +Loni +Lorin +Lory +Louann +Lourie +Lynell +Lynelle +Mamie +Marcel +Margery +Mariaelena +Martin +Meri +Merrie +Michal +Micki +Monalisa +Nena +Norah +Norine +Odilia +Peri +Portia +Raeann +Rayna +Renate +Renea +Renetta +Rhona +Rina +Rosalee +Rosalina +Ruthann +Scarlett +September +Sharilyn +Sharrie +Sheilah +Shonna +Sidney +Sonjia +Starlene +Starr +Sunny +Suzana +Suzann +Synthia +Taunya +Terisa +Theodora +Tobi +Toby +Torri +Troy +Trudie +Twana +Vickey +Vivien +Adina +Adria +Alaina +Albert +Alene +Alethea +Anamaria +Annetta +Antoniette +Antonio +Ariane +Aviva +Beatris +Belle +Billy +Brinda +Bronwen +Candida +Candis +Candise +Carl +Celestine +Chana +Chanel +Charolette +Clarise +Cleo +Cristie +Danell +Dania +Daniella +Danise +Danya +Darcel +Daun +Deadra +Deatrice +Deeanna +Deedra +Delisa +Delise +Demaris +Denyse +Devra +Dia +Dian +Dion +Dollie +Donya +Dulce +Dusty +Earlene +Elayne +Elma +Emelia +Ermalinda +Ernest +Evie +Fay +Felicitas +Flavia +Fonda +Fran +Gabriel +Georgianne +Gerald +Geralyn +Gerilyn +Gerry +Gisela +Hedy +Helaine +Hellen +Ilda +Ileen +Isabella +Iva +Jacqui +Jaimie +Janae +Jani +Jaymie +Jeanene +Jeanmarie +Jeffery +Jenee +Jenell +Jesse +Jil +Jillene +Jillian +Joane +Jodene +Johnette +Jolanda +Jonell +Josette +Judie +Julieann +Kaaren +Kamela +Kelleen +Kellye +Kimbra +Kolleen +Kori +Ladena +Lanetta +Laraine +Latina +Lavena +Leasa +Leatrice +Leonore +Liana +Licia +Lisabeth +Lizette +Londa +Lorenza +Lorianne +Lorilee +Lorina +Lorretta +Lorry +Louella +Lucrecia +Lynetta +Manya +Marcine +Marguerita +Maribell +Marielle +Marika +Marilynn +Marita +Marsi +Martine +Maryalice +Mechelle +Melani +Meryl +Michelene +Michella +Michon +Midge +Mina +Mira +Mischelle +Mishelle +Modesta +Nell +Nohemi +Nova +Odelia +Odette +Oralia +Otilia +Paulina +Peggi +Perla +Perri +Phyliss +Portland +Precious +Rana +Randee +Rashelle +Ray +Rebbeca +Rebbecca +Rebecka +Renette +Rickey +Ronette +Ronica +Rosann +Sanjuanita +Santa +Sarina +Selene +Shae +Shanon +Shareen +Sharen +Sharie +Sharol +Shawnee +Shawnna +Shay +Sheron +Sherron +Shona +Sloan +Stephaine +Suanne +Summer +Sunday +Susette +Suzzette +Sylvie +Tama +Tammey +Tandi +Tangie +Tawnia +Tawny +Tere +Teryl +Theda +Thersa +Thresa +Tinamarie +Tippi +Tomasa +Tonda +Tonie +Toya +Tressa +Valinda +Vallerie +Violeta +Virgie +Vonnie +Wenda +Willa +Willie +Willow +Yasmin +Zonia +Lisa +Karen +Kimberly +Mary +Julie +Patricia +Susan +Cynthia +Michelle +Laura +Elizabeth +Linda +Jennifer +Deborah +Sandra +Maria +Christine +Denise +Kelly +Donna +Teresa +Tammy +Lori +Tina +Wendy +Tracy +Stephanie +Debra +Pamela +Kathleen +Angela +Cheryl +Rebecca +Nancy +Robin +Brenda +Dawn +Diane +Sharon +Kim +Barbara +Diana +Christina +Cindy +Theresa +Carol +Rhonda +Michele +Gina +Jill +Monica +Catherine +Jacqueline +Suzanne +Debbie +Melissa +Laurie +Margaret +Andrea +Paula +Renee +Annette +Janet +Kathy +Leslie +Anna +Valerie +Katherine +Dana +Carolyn +Stacy +Sheila +Yvonne +Sherry +Stacey +Deanna +Sylvia +Amy +Shelly +Heidi +Terri +Yolanda +Tamara +Victoria +Martha +Ann +Shannon +Veronica +Kathryn +Heather +Regina +Sheri +Gloria +Yvette +Kristin +Kristine +Anne +Connie +Marie +Carrie +Alicia +Colleen +Jamie +Sherri +Virginia +Carla +Janice +Shelley +Melinda +April +Cathy +Darlene +Judy +Anita +Irene +Tracey +Julia +Holly +Lynn +Bonnie +Rachel +Teri +Melanie +Ruth +Lorraine +Allison +Monique +Erin +Rosa +Sheryl +Vicki +Norma +Rose +Alice +Tami +Rita +Helen +Toni +Shirley +Sarah +Joanne +Leticia +Roberta +Judith +Elaine +Jeanette +Beverly +Traci +Natalie +Charlene +Tanya +Carmen +Kimberley +Maureen +Kristen +Becky +Samantha +Joyce +Jane +Ellen +Sonia +Kristina +Danielle +Peggy +Sally +Jodi +Beth +Jessica +Jackie +Melody +Frances +Lynette +Penny +Shari +Eileen +Ronda +Crystal +Gail +Joan +Leah +Shawn +Betty +Caroline +Kelli +Sonya +Vickie +Irma +Tonya +Janine +Eva +Terry +Charlotte +Jean +Joann +Juanita +Dorothy +Jeanne +Esther +Sara +Kelley +Ramona +Sandy +Ana +Joy +Arlene +Lydia +Mia +Marilyn +Felicia +Desiree +Darla +Dina +Audrey +Cecilia +Guadalupe +Tiffany +Doreen +Phyllis +Alison +Marlene +Amanda +Bridget +Kristi +Belinda +Cheri +Trina +Vivian +Wanda +Constance +Grace +Loretta +Lynda +Evelyn +Rochelle +Tammie +Dolores +Kari +Jenny +Roxanne +Dianna +Patty +Sonja +Karin +Sabrina +Jo +Nina +Robyn +Christy +Nicole +Chris +Kellie +Katrina +Sherrie +Dena +Cassandra +Karla +Jana +Antoinette +Emily +Kerry +Marla +Tracie +Silvia +Angie +Kirsten +Shawna +Ginger +Josephine +Margarita +Claudia +Olivia +Cathleen +Dianne +Rene +Suzette +Alisa +Rosemary +Cara +Jody +Nadine +Pauline +Cherie +Kris +Lorie +Marjorie +Gayle +Lillian +Pam +Angelica +Nora +Angelina +Joanna +Kristy +Mona +Stacie +Erica +Erika +Lynne +Trisha +Glenda +June +Marianne +Sue +Elisa +Lora +Patti +Sophia +Leanne +Lorena +Marcia +Alma +Deanne +Jeanine +Doris +Krista +Lauren +Stella +Elena +Jeannette +Tara +Vicky +Candace +Carole +Kara +Cristina +Vanessa +Candy +Amber +Gretchen +Molly +Lee +Marta +Adrienne +Bernadette +Jennie +Lorrie +Ruby +Adriana +Therese +Celeste +Lucy +Staci +Susie +Debora +Elsa +Hope +Bobbie +Dora +Janette +Jeannie +Kimberlee +Lesley +Marina +Tricia +Ingrid +Jacquelyn +Jan +Louise +Naomi +Susana +Marcella +Margie +Megan +Priscilla +Tammi +Olga +Kerri +Lupe +Nanette +Wendi +Francine +Maryann +Patrice +Bertha +Delia +Geraldine +Gwendolyn +Isabel +Danette +Georgia +Jeannine +Laurel +Paulette +Marsha +Blanca +Edith +Raquel +Deana +Lana +Leann +Rosalind +Bridgette +Joni +Kecia +Keri +Shellie +Susanne +Darcy +Janelle +Latanya +Lucinda +Terrie +Beatrice +Eleanor +Jeri +Lois +Rosemarie +Amelia +Celia +Deann +Lorna +Marci +Shauna +Corinne +Deena +Gabriela +Sandi +Corina +Georgina +Caryn +Rosalie +Allyson +Misty +Rachelle +Claire +Kristie +Betsy +Julianne +Lauri +Christi +Christie +Elisabeth +Lena +Marian +Trudy +Antonia +Carolina +Liz +Daphne +Johanna +Noelle +Edna +Hilda +Kay +Leigh +Paige +Rena +Stefanie +Colette +Emma +Faith +Hilary +Jessie +Ladonna +Latonya +Angel +Dayna +Karyn +Miriam +Noreen +Rosalinda +Tamra +Cari +Liza +Lorri +Rosie +Shelia +Aileen +Alexandra +Brigitte +Jerri +Katie +Lourdes +Martina +Rosanna +Tamera +Ursula +Dee +Denice +Janis +Juliana +Lea +Leeann +Lilia +Lucia +Marnie +Shelli +Dawna +Justine +Marcy +Michael +Vonda +Billie +Deirdre +Gabrielle +Magdalena +Jodie +Luz +Mindy +Valarie +Cecelia +Delores +Elise +Estella +Tonia +Vera +Caren +Esperanza +Ida +Juliet +Shana +Camille +Catalina +Consuelo +Leona +Lynnette +Mari +Marion +Meredith +Debby +Elva +Judi +Kendra +Sondra +Tania +Elvira +Graciela +Josefina +Myra +Myrna +Shanna +Aurora +Beatriz +Bernice +Bobbi +Elvia +Gena +Janell +Maricela +Robbin +Genevieve +Gwen +Ofelia +Candice +Clara +Francisca +Janna +Jolene +Josie +Juana +Pearl +Rae +Arleen +Bridgett +Charmaine +Cindi +Coleen +Geri +Gigi +Jami +Juli +Letitia +Lidia +Christa +Courtney +Deidre +Janie +Lesa +Margo +Nikki +Patsy +Randi +Vikki +Alesia +Brandi +Della +Estela +Lenora +Lucille +Saundra +Thelma +Whitney +Annemarie +David +Eugenia +Helene +John +Kathi +Marcie +Mimi +Petra +Rosario +Sheree +Socorro +Angelique +Annie +Deneen +Felecia +Jenifer +Jocelyn +Maribel +Marisa +Rachael +Susanna +Brandy +Cora +Danita +James +Robert +Terese +Aimee +Alana +Cathryn +Chandra +Dori +Helena +Iris +Jayne +Madeline +Maxine +Melisa +Mitzi +Sydney +Wilma +Bettina +Evangelina +Eve +Karrie +Katharine +Leanna +Renae +Zina +Adela +Adele +Alyson +Angelia +Athena +Danelle +Dionne +Dorene +Evette +Kathie +Katy +Mandy +Mercedes +Penelope +Rebekah +Roxann +Serena +Tana +Debi +Diann +Hazel +Jaime +Jeanie +Kandi +Kimberli +Lorene +Maritza +Maura +Melodie +Polly +Sharron +Simone +Suzy +Ada +Brooke +Claudette +Collette +Cyndi +Gay +Gladys +Gracie +Janeen +Leonor +Lola +Monika +Nannette +Pennie +Richard +Rosanne +Roseann +Suzanna +Tonja +Trena +Alisha +Brigette +Carey +Carlene +Deedee +Dominique +Hillary +Julianna +Lanette +Lavonne +Lawanda +Luisa +Mildred +Suzie +Violet +Alejandra +Alexis +Amalia +Annamarie +Barbra +Bonita +Dixie +Dolly +Dorothea +Frankie +Gaylene +Ilene +Janene +Joelle +Kate +Kathrine +Marguerite +Minerva +Nellie +Noel +Roslyn +Selena +Anthony +Antionette +Araceli +Benita +Bernadine +Chrystal +Corinna +Danna +Devon +Erlinda +Jacquline +Juliette +Laureen +Lillie +Lilly +Natasha +Rebeca +Rhoda +Roxanna +Sharla +Shiela +Starla +Valorie +Adelina +Autumn +Carin +Darci +Esmeralda +Florence +Georgette +Kasey +Lani +Lashawn +Leilani +Lia +Maggie +Marisela +Marni +Moira +Mollie +Pilar +Reina +Rina +Sarita +Sharlene +Shaun +Stephani +Timi +Zena +Agnes +Angelita +Carmela +Charisse +Concepcion +Cori +Corrine +Cristine +Deidra +Elsie +Gia +Johnna +Karie +Kathlene +Kimi +Michell +Patrica +Roxane +Selina +Sherie +Sofia +Tamie +Venus +Adrian +Aida +Anastasia +Ava +Cassie +Corrina +Debbi +Debbra +Demetria +Ella +Eloise +Ernestina +Ernestine +Faye +Francesca +Janel +Jeanna +Kandy +Latrice +Lesli +Lina +Lorinda +Louisa +Malinda +Mara +Maryanne +Raylene +Robbie +Rosalyn +Ruthie +Shelby +Suzan +Tisha +Tori +Anjanette +Annmarie +Ashley +Bethany +Charla +Clare +Clarissa +Daisy +Edwina +Ethel +Eunice +Gabriella +Geneva +Jonna +Keli +Kendall +Kerrie +Loriann +Madeleine +Marissa +Merry +Romy +Tracee +Verna +Viola +Adriene +Aleta +Carie +Christene +Deeann +Gayla +Gilda +Inger +Jeana +Johnnie +Kevin +Kira +Laronda +Lily +Linette +Lizabeth +Loreen +Luana +Margot +Mariann +Mark +May +Nanci +Pat +Richelle +Sharyl +Shereen +Valencia +Adrianne +Antonette +Astrid +Brenna +Catrina +Cristy +Dara +Dede +Evonne +Giselle +Inez +Leesa +Linnea +Lizette +Loraine +Luann +Lyn +Marcelle +Marlena +Michaela +Millie +Mirna +Nathalie +Noemi +Penni +Rosalia +Rowena +Shonna +Sybil +Tambra +Tammara +Tena +Timothy +Tonie +Tresa +Abby +Alexandria +Annabelle +Camilla +Candi +Carri +Chantal +Claudine +Dale +Denine +Dona +Dorinda +Elaina +Eliza +Eric +Ermelinda +Evangeline +Fawn +Fern +Flora +Glenna +Greta +Hannah +Herlinda +Imelda +Jena +Jenna +Joanie +Juliann +Karol +Karon +Kimber +Kimberlie +Lashon +Laverne +Lavette +Lenore +Lila +Loree +Lorelei +Luanne +Manuela +Marleen +Marti +Marybeth +Maryjane +Meghan +Neva +Nola +Pamala +Paul +Renita +Reyna +Rona +Sallie +Shonda +Stacia +Tanja +Tari +Tawnya +Tia +Velma +Andria +Brigid +Caron +Cathrine +Celina +Charity +Corine +Dani +Daniela +Dannette +Delisa +Edie +Elda +Eloisa +Estelle +Gerri +Guillermina +Holli +Ivy +Jacki +Jammie +Janina +Jayme +Justina +Kamala +Karri +Katheryn +Kellee +Kimberely +Kristal +Krystal +Lianne +Lynelle +Maryellen +Mayra +Melina +Miranda +Rhea +Rocio +Rosalva +Sharyn +Sherryl +Sonji +Tamela +Teena +Trinidad +Abigail +Adriane +Alecia +Audra +Babette +Callie +Carleen +Carmelita +Casey +Cherise +Chrissy +Coral +Emilia +Fay +Francis +Gale +Gidget +Griselda +Hermelinda +Hollie +Ina +Isabelle +Jonelle +Jose +Karina +Karlene +Kelle +Kelleen +Kenneth +Leila +Leslee +Lou +Lucretia +Mercy +Misti +Raelene +Renata +Roni +Roseanna +Sandie +Scott +Sherilyn +Sherrill +Suzann +Tamar +Tammera +Terra +Toya +Tyra +Valentina +Alyssa +Aracely +Aretha +Armida +Beckie +Bessie +Bianca +Blanche +Britt +Chere +Cherri +Cherrie +Cherry +Coreen +Daneen +Daniella +Davina +Delinda +Earlene +Elia +Elissa +Elyse +Erma +Freda +Gregory +Hallie +Henrietta +Jenine +Joseph +Kami +Kirstin +Lara +Lela +Liane +Loren +Mabel +Mae +Malia +Margret +Maribeth +Marva +Marylou +Melba +Merri +Millicent +Missy +Nita +Pandora +Renea +Romona +Rosalina +Rosana +Shannan +Shanon +Sharri +Simona +Siobhan +Sunday +Tawny +Teresita +Thea +Tuesday +Vida +Violeta +Wende +Adria +Alaina +Alberta +Althea +Alyce +Amparo +Anamaria +Anette +Annamaria +Barbie +Bonny +Cami +Cammy +Carmel +Carolynn +Casandra +Charles +Cheryle +Christal +Cristi +Danica +Darleen +Debrah +Denean +Denyse +Dhana +Fonda +Gianna +Ginny +Hortensia +Jacquie +Jaimie +Jannette +Jenise +Jerry +Jewel +Joellen +Joi +Joleen +Julee +Juliane +Julieta +Karry +Kaye +Kenya +Kerin +Kimmie +Kitty +Kori +Krissy +Kymberly +Laraine +Larissa +Leeanne +Liana +Libby +Lissa +Louann +Lupita +Lynell +Marcelina +Marianna +Marietta +Marilee +Marisol +Marty +Meg +Melva +Micaela +Minnie +Morgan +Nadia +Natalia +Nickie +Niki +Nona +Octavia +Otilia +Paris +Renay +Rolanda +Ronette +Ronna +Rosalee +Roxana +Seana +Shanda +Shani +Sharee +Shaunda +Shawnee +Stormy +Thomas +Tiffani +Treva +Vickey +William +Aaron +Adeline +Adelita +Alena +Alina +Alisia +Alycia +Amie +Angeline +Annett +Becki +Briana +Caprice +Cary +Caryl +Cathi +Charleen +Christen +Christiana +Clarice +Danell +Daniel +Dawne +Dedra +Deeanna +Deloris +Denee +Elisha +Elke +Enedina +Enid +Fiona +Gemma +Genelle +Haley +Hayley +Jacque +Jacquelin +Jacqui +Jaqueline +Jeffrey +Jennette +Jodee +Josette +Jovita +Judie +Karey +Karolyn +Kisha +Kristan +Kym +Kyra +Laticia +Latonia +Latrina +Launa +Lauralee +Laurinda +Lawanna +Lecia +Leisa +Letha +Lindy +Lise +Lisette +Lita +Lolita +Loni +Machelle +Margery +Mariaelena +Mariana +Marilynn +Maya +Melodee +Melodi +Melonie +Michel +Micki +Mignon +Nicolette +Perla +Piper +Raeann +Regan +Rikki +Risa +Ronnie +Roselyn +Shandra +Sharleen +Shaunna +Shirl +Shirlene +Soraya +Stefani +Summer +Susannah +Taunya +Teddi +Teressa +Tessa +Tobi +Tressa +Trudi +Twila +Twyla +Vilma +Viviana +Wendie +Winnie +Yevette +Adelaida +Alane +Alanna +Aline +Ami +Andra +Annabel +Anneliese +Aurelia +Belen +Bette +Blair +Candie +Carissa +Carletta +Carmella +Celestine +Celine +Chantel +Cherryl +Christiane +Christopher +Cris +Cyndee +Dalia +Danya +Darcie +Darlena +Dawnette +Delfina +Denna +Dia +Diona +Dione +Donald +Donetta +Dorthea +Edward +Elida +Emilie +Eula +Florinda +Gaye +Gema +Gerry +Gertrude +Gillian +Harriet +Heide +Ines +Janae +Jenelle +Jerilyn +Jerrie +Jewell +Jimmie +Jodene +Jolynn +Josephina +Julienne +Karren +Keisha +Kristeen +Laila +Lannette +Latisha +Latricia +Laure +Laurene +Leandra +Leora +Lesia +Leta +Letty +Lindsay +Lona +Lonna +Loralee +Lorine +Luci +Marcela +Mariela +Martin +Maryhelen +Maryjo +Matilda +Merrie +Mindi +Nedra +Nena +Nicki +Nicola +Ophelia +Portia +Princess +Randa +Rosalba +Rosaura +Roseanne +Rosina +Sabra +Sari +Sebrina +Sharrie +Shawnda +Sheron +Shireen +Shirleen +Shona +Soledad +Sophie +Suzi +Tawna +Toby +Tracye +Trini +Valeri +Wendee +Yolonda +Alene +Alessandra +Alfreda +Alissa +Alvina +Alysia +Anabel +Angelena +Anja +Annetta +Ariana +Avis +Bambi +Berta +Beverley +Birgit +Brandie +Caitlin +Camellia +Camie +Candis +Carina +Carlyn +Charlena +Cher +Cheryll +Christeen +Christel +Christin +Cinderella +Cindie +Cinthia +Corrie +Crista +Cristin +Daina +Dania +Daniele +Darcel +Daria +Deedra +Delilah +Delphia +Demetra +Denette +Denita +Dennise +Deon +Desi +Devra +Diedra +Dinah +Dodie +Dominica +Dorrie +Dottie +Elba +Elenore +Ellie +Felisa +Frank +George +Germaine +Giovanna +Gisela +Gisele +Glynis +Gregoria +Hanna +Holley +Hortencia +Ileana +Iva +Jeanene +Jennine +Jillene +Jillian +Jina +Joe +Johnny +Jolanda +Jonnie +Joselyn +Joslyn +Julieann +Kaylene +Keely +Kenna +Kimberlyn +Kimmy +Kolleen +Ladona +Lanora +Lasonya +Laurette +Leisha +Lesha +Lilian +Lindsey +Lisha +Londa +Lorianne +Lorilei +Lorina +Lourie +Machele +Malissa +Mamie +Mandi +Mariam +Marjory +Marnee +Marya +Matilde +Mechelle +Melita +Meta +Michaelle +Micheal +Micheline +Mickie +Mina +Mireya +Monette +Nani +Noelia +Odette +Ona +Oralia +Pattie +Paulina +Pia +Rachell +Randy +Regena +Renate +Renda +Romelia +Ronald +Rosamaria +Rosetta +Sabine +Selma +September +Shara +Shawnna +Sheena +Sheilah +Shellee +Sherrell +Sherril +Sheryll +Shiree +Steven +Tamala +Tamora +Tamura +Tani +Taryn +Tasha +Tawni +Tawnia +Tereza +Terina +Terresa +Thalia +Tiffanie +Toi +Tomi +Tommie +Venessa +Wilhelmina +Willie +Windy +Zandra +Adelia +Alba +Alexia +Alona +Alva +Analisa +Anastacia +Andre +Angelika +Angella +Angi +Barb +Bobby +Bonni +Bronwyn +Brook +Cameron +Cammie +Carlette +Carman +Carolee +Carrol +Caterina +Catharine +Cecile +Cecily +Chantelle +Charis +Charise +Charissa +Charyl +China +Clementina +Colene +Contessa +Corie +Cornelia +Cristal +Curtis +Damita +Dann +Darcey +Darline +Deane +Deborha +Delynn +Demetrius +Denese +Deonna +Deserie +Detra +Dierdre +Dollie +Donelle +Donnetta +Donya +Doree +Dorie +Dorina +Dorthy +Dyan +Eden +Ericka +Etta +Evie +Evon +Fabiola +Fatima +Felisha +Fran +Franchesca +Francie +Genine +Georgetta +Georgie +Gretta +Hedy +Herminia +India +Jackeline +Jaclyn +Jade +Jann +Jaye +Jeanetta +Jenette +Jeni +Jeryl +Joetta +Jolie +Jon +Jona +Jonette +Jonni +Joycelyn +Joylyn +Juan +Kandace +Karan +Karoline +Kathaleen +Kathren +Kimm +Kimmi +Kristiane +Kristyn +Kyla +Lajuana +Lanita +Latania +Latrenda +Laurice +Lavern +Lavina +Lavonda +Leana +Leda +Leia +Lenee +Lenette +Letricia +Lili +Lisabeth +Lisbeth +Livia +Lore +Lorretta +Lorry +Lucila +Luzmaria +Lynna +Magda +Maia +Marcey +Maricruz +Marita +Marna +Martine +Mellisa +Meri +Mikki +Monalisa +Monet +Natalee +Nia +Ninette +Opal +Parrish +Patrina +Petrina +Phaedra +Phoebe +Racheal +Randee +Raymond +Rayna +Rea +Reba +Rima +Rochele +Rochell +Romi +Rosita +Rossana +Roxie +Ruthanne +Sabina +Sean +Shan +Sharilyn +Sharmaine +Shawne +Shawnette +Sherise +Sherlyn +Sherron +Shirelle +Shirlee +Sian +Sidney +Sindy +Starr +Stephany +Stephenie +Suellen +Suzzette +Sylvie +Synthia +Tama +Tamiko +Tamira +Tammra +Tandy +Tatia +Terryl +Tillie +Timmie +Tonette +Tonna +Trish +Troy +Valery +Vichelle +Victor +Virgie +Willa +Winona +Xan +Zoe +Zoila +Zulema +Lisa +Michelle +Kimberly +Karen +Jennifer +Julie +Mary +Susan +Cynthia +Patricia +Laura +Elizabeth +Christine +Sandra +Deborah +Maria +Tina +Kelly +Denise +Linda +Tammy +Teresa +Tracy +Stephanie +Lori +Angela +Kathleen +Michele +Nancy +Donna +Gina +Wendy +Debra +Cheryl +Dawn +Rebecca +Christina +Pamela +Barbara +Brenda +Sharon +Diana +Diane +Kim +Melissa +Monica +Andrea +Jill +Catherine +Theresa +Robin +Rhonda +Suzanne +Cindy +Jacqueline +Carol +Amy +Dana +Leslie +Anna +Renee +Stacy +Paula +Margaret +Stacey +Shannon +Janet +Debbie +Victoria +Heidi +Katherine +Kathy +Sherry +Carolyn +Deanna +Shelly +Veronica +Valerie +Laurie +Sheila +Terri +Yolanda +Yvonne +Tamara +Ann +Kristine +Heather +Martha +Kristin +Annette +Kathryn +Sheri +Regina +Sylvia +Yvette +April +Jamie +Gloria +Carrie +Anne +Kristen +Shelley +Alicia +Holly +Virginia +Julia +Tracey +Darlene +Nicole +Melinda +Carla +Bonnie +Connie +Rachel +Sherri +Colleen +Erin +Natalie +Traci +Cathy +Leticia +Marie +Anita +Janice +Tiffany +Lynn +Rosa +Ruth +Vicki +Judy +Monique +Rose +Carmen +Sarah +Irene +Kristina +Tanya +Lorraine +Sonia +Toni +Kimberley +Sheryl +Teri +Maureen +Helen +Sonya +Judith +Melanie +Jeanette +Norma +Tami +Danielle +Beth +Joyce +Tonya +Joanne +Eva +Jessica +Charlene +Rita +Jodi +Roberta +Shirley +Samantha +Alice +Kelli +Frances +Joan +Elaine +Jane +Ana +Shawn +Joy +Dorothy +Kristi +Felicia +Penny +Charlotte +Bridget +Caroline +Crystal +Amanda +Janine +Irma +Joann +Sally +Allison +Becky +Kelley +Lynette +Trina +Jean +Leah +Sandy +Juanita +Eileen +Evelyn +Jackie +Betty +Melody +Beverly +Dolores +Ronda +Sara +Cheri +Dina +Nina +Kirsten +Kellie +Lydia +Gail +Esther +Guadalupe +Jeanne +Kari +Christy +Marilyn +Robyn +Terry +Cassandra +Shari +Darla +Ellen +Peggy +Ramona +Desiree +Sonja +Antoinette +Sherrie +Vickie +Karin +Katrina +Audrey +Claudia +Margarita +Shawna +Wanda +Loretta +Cecilia +Dianna +Kerry +Marlene +Rosemary +Mona +Vivian +Arlene +Marla +Dena +Grace +Jody +Elisa +Emily +Alma +Belinda +Doreen +Jenny +Joanna +Lynda +Jana +Dianne +Elena +Tracie +Karla +Lorena +Sabrina +Candace +Jo +Rochelle +Megan +Stacie +Kristy +Phyllis +Adrienne +Angelica +Mia +Cherie +Alison +Angelina +Pauline +Roxanne +Audra +Christie +Debora +Lillian +Paige +Rene +Shauna +Erika +Ginger +Kris +Marina +Silvia +Dora +Lorie +Tammie +Trisha +Kimberlee +Sophia +Angie +Krista +Tara +Amber +Cathleen +Lana +Lauren +Alisa +Bernadette +Elsa +Marianne +Staci +Vicky +Vanessa +Adriana +Constance +Lucy +Jeannie +Francine +Gretchen +Louise +Suzette +Chris +Deana +Misty +Josephine +Tricia +Isabel +Leanne +Susanne +Susie +Beatrice +Colette +Doris +Marcia +Naomi +Nora +Priscilla +Cristina +Nadine +Patty +Stefanie +Deanne +Edith +Erica +Ingrid +Jeannette +Carole +Glenda +Lupe +Molly +Olivia +Bertha +Kerri +Olga +Cara +Jacquelyn +Janelle +Lesley +Delia +Lee +Patrice +Ruby +Wendi +Lena +Susana +Jeanine +Lora +Marcella +Paulette +Celeste +Corina +Danette +Hope +Joelle +Laurel +Raquel +Sue +Celia +Janette +Marta +Patti +Elisabeth +Pam +Blanca +Marjorie +Bridgette +Gayle +Darcy +Gabriela +Gwendolyn +Leann +Rachelle +Shana +Tamra +Candy +Graciela +Katie +Lorrie +Lynne +Marisa +Noelle +Corinne +Rosemarie +Gena +Geraldine +Jeri +Margie +Hilda +Kara +Keri +Latonya +Luz +Karyn +Therese +Jodie +Stella +Julianne +June +Kendra +Lea +Georgina +Jeannine +Margo +Nanette +Terrie +Deann +Kristie +Liza +Bobbie +Camille +Cari +Christi +Elise +Janie +Lucinda +Marci +Marsha +Maryann +Tamera +Tania +Vera +Angel +Dawna +Deena +Lucia +Valarie +Amelia +Daphne +Jennie +Joni +Latanya +Rosalind +Emma +Jan +Miriam +Alexandra +Georgia +Lynnette +Rosalinda +Shelli +Tabatha +Tammi +Billie +Carolina +Deirdre +Tonia +Aurora +Consuelo +Eleanor +Maricela +Coleen +Jessie +Marcy +Sandi +Lourdes +Rosie +Shelia +Shellie +Simone +Estella +Jami +Lorri +Marion +Brigitte +Cecelia +Juliana +Lauri +Marian +Myrna +Beatriz +Brandi +Charmaine +Delores +Edna +Janis +Johanna +Mindy +Myra +Nikki +Aimee +Caryn +Jolene +Josefina +Marnie +Martina +Rosalie +Clara +Dee +Della +Ida +Lois +Magdalena +Trudy +Annie +Chandra +Genevieve +Hilary +Katharine +Lorna +Madeline +Ursula +Vikki +Courtney +Elvira +Jaime +Judi +Lashawn +Leigh +Noreen +Randi +Aileen +Florence +Jenifer +John +Mercedes +Michael +Shanna +Sheree +Bridgett +Dayna +Esperanza +Gladys +Jocelyn +Karrie +Lucille +Marisela +Rena +Dominique +Evangelina +Janna +Juana +Lesa +Sharlene +Sondra +Susanna +Tatia +Antonia +Candice +Denice +Francisca +Gabrielle +Juliet +Melisa +Tasha +Bobbi +Brigette +Carey +Cindi +Corrine +Eugenia +Leona +Lilia +Mari +Shelby +Thelma +Claire +Estela +Letitia +Rachael +Sofia +Anastasia +Barbra +Betsy +David +Deidre +Dionne +Gwen +Justine +Kay +Ladonna +Ofelia +Polly +Angelique +Brooke +Catalina +Dona +Elva +Inez +Lily +Marcie +Marni +Alana +Caren +Christa +Danna +Dara +Elvia +Esmeralda +Faith +Liz +Robert +Serena +Tia +Angelia +Bernice +Janell +Lani +Penelope +Rosario +Aida +Arleen +Collette +Eve +Juli +Kathi +Kerrie +Lanette +Lorene +Mechelle +Mildred +Mitzi +Noel +Petra +Saundra +Venus +Alexis +Athena +Carlene +Casey +Danita +Leanna +Leeann +Maribel +Marissa +Maxine +Monika +Nannette +Patsy +Adrianne +Brandy +Caprice +Evette +Geri +Hillary +Iris +Lara +Maggie +Michell +Mimi +Richelle +Rosalyn +Socorro +Ada +Ava +Francesca +Greta +Jerri +Meredith +Rhoda +Shiela +Trena +Charla +Clarissa +Darci +Georgette +Leila +Mandy +Marguerite +Rebeca +Rosanna +Suzanna +Whitney +Adela +Armida +Camilla +Danelle +Ella +Gigi +Jeana +Josie +Kimberli +Laureen +Lavonne +Leilani +Lenora +Reina +Roxanna +Sydney +Tabitha +Tonja +Vonda +Alesia +Anthony +Bernadine +Bethany +Bettina +Cora +Dannette +Devon +Emilia +Felecia +Gidget +Griselda +James +Kasey +Katy +Lola +Lorinda +Mara +Pearl +Renae +Rocio +Rosanne +Stacia +Stefani +Tori +Velma +Adele +Angelita +Carri +Chrystal +Diann +Geneva +Gracie +Janeen +Karri +Kate +Marcela +Patrica +Roxann +Trudi +Viola +William +Abigail +Alisha +Allyson +Antionette +Araceli +Ashley +Benita +Candi +Cathryn +Chantal +Concepcion +Edie +Elsie +Jonna +Julianna +Kellee +Latrice +Lawanda +Margot +Pamala +Rona +Sharron +Shaun +Sherie +Suzie +Tamatha +Tana +Valencia +Annamarie +Babette +Bonita +Carin +Charisse +Dale +Dorene +Ernestina +Evonne +Hollie +Imelda +Ivy +Jayne +Kimberlie +Lilly +Lolita +Marianna +Maritza +Marlo +Marylou +Maura +Melodie +Nanci +Nichole +Noemi +Rae +Rebekah +Richard +Sean +Shannan +Tawnya +Adrian +Alissa +Annemarie +Autumn +Carmela +Claudine +Cyndi +Debby +Deidra +Dorothea +Edwina +Gabriella +Giselle +Guillermina +Helena +Helene +Inger +Jeanie +Joell +Juliette +Kimi +Kirstin +Leonor +Lesli +Lia +Liana +Lina +Linette +Lizabeth +Machelle +Malinda +Marlena +Michaela +Robbin +Roseann +Sallie +Selena +Siobhan +Steven +Verna +Cami +Carmelita +Cherise +Christian +Dori +Elba +Elyse +Ethel +Faye +Flora +Holli +Kathrine +Kecia +Kevin +Kimberely +Kira +Latonia +Lissa +Luisa +Marti +Natasha +Nellie +Pilar +Raylene +Roslyn +Selina +Sharla +Sonji +Tamar +Tamela +Teresita +Tisha +Tracee +Valentina +Becki +Brandie +Brigid +Cherri +Daisy +Eliza +Ernestine +Gale +Gianna +Gillian +Isabelle +Jacquline +Janel +Jayme +Jeanna +Jolie +Karie +Krystal +Laverne +Leesa +Lidia +Lise +Lyn +Mae +Malissa +Micaela +Niki +Nita +Portia +Romy +Sophie +Stephani +Tawny +Tessa +Tiffani +Tressa +Tyra +Zena +Zoe +Adrianna +Alecia +Aleta +Alyssa +Annamaria +Annmarie +Antonette +Barbie +Bianca +Brenna +Carie +Carleen +Christiane +Corine +Debbra +Deeann +Deedee +Dixie +Dorinda +Erlinda +Erma +Evangeline +Fabiola +Frankie +Gia +Heide +Jerilyn +Karine +Laurene +Leslee +Lillie +Lorelei +Marilee +Miranda +Natalia +Sharyn +Starla +Suzy +Tamie +Tresa +Violet +Wendie +Willie +Yolonda +Alexandria +Alina +Amparo +Andria +Berta +Charleen +Cheree +Cinda +Clarice +Corinna +Daria +Dawnette +Deneen +Dinah +Elaina +Elia +Elissa +Eunice +Fiona +Gayla +Gaylene +Hannah +Hazel +Jacque +Jena +Jenelle +Joel +Karol +Kenya +Kimber +Larissa +Lashon +Latricia +Lawana +Leisa +Lela +Lisette +Loraine +Loreen +Luana +Maya +Michaelle +Nicki +Renita +Ronna +Rosalia +Ruthie +Sharyl +Sunday +Tammara +Tomi +Trish +Wilma +Adriane +Anjanette +Annabelle +Beverley +Cary +Cathi +Chrissy +Christin +Corey +Corrina +Cristine +Cristy +Daniela +Debi +Debrah +Dorie +Dyan +Eden +Eloisa +Eloise +Fawn +Fay +Gay +Ginny +Hayley +Ina +Ines +Janene +Jeanetta +Johnna +Jordana +Joycelyn +Justina +Karina +Kathie +Kendall +Kym +Leta +Libby +Lizette +Lonnie +Loree +Loren +Magda +Marcelle +Mark +Maryanne +Melina +Moira +Nedra +Regan +Robbie +Ronnie +Rosana +Rosaura +Roxane +Sabina +Sandie +Sarita +Shanda +Sherilyn +Shirlene +Suzan +Tanja +Toya +Valorie +Zina +Adriene +Alanna +Alva +Amalia +Amie +Annalisa +Arcelia +Ariana +Belen +Candis +Carmel +Cathie +Cathrine +Catrina +Charise +Cherlyn +Cherrie +Cornelia +Dani +Debbi +Delfina +Demetria +Denita +Dia +Elana +Elisha +Eric +Gerri +Glenna +Ilene +Inga +Ivonne +Jacki +Jacquelynn +Juliann +Kandy +Kathlene +Keli +Kenneth +Kristal +Kristeen +Larae +Laronda +Laurette +Lenore +Lesly +Liane +Lila +Lindsay +Linnea +Lona +Luanne +Lucretia +Madeleine +Mariana +Matilde +Mechele +Melynda +Mercy +Merry +Michaele +Minerva +Paul +Pennie +Piper +Raelene +Romona +Roni +Ronnette +Roseanne +Rosetta +Seana +Shanon +Shara +Stephenie +Sybil +Synthia +Trinidad +Twila +Vida +Wende +Windy +Winona +Adelina +Adeline +Adina +Alberta +Alyce +Alycia +Angella +Beckie +Bettie +Carina +Carlotta +Cassie +Catharine +Celestine +Celina +Chanel +Charlette +Cherilyn +Cherry +Cherryl +Christianne +Cindie +Cruz +Dalia +Daneen +Daniel +Darleen +Dawne +Dedra +Delisa +Denese +Dorena +Enid +Ericka +Genia +Genie +Gilda +Giovanna +Gisela +Harriet +Haydee +Hermelinda +Herminia +Hortencia +Ivette +Jacklyn +Jaqueline +Jeffrey +Jenell +Jenna +Jennette +Jesus +Joellen +Joi +Joleen +Joseph +Kandace +Katina +Kaye +Keely +Kiersten +Kristan +Lachelle +Lashaun +Liesl +Lilian +Lonna +Loriann +Lory +Louisa +Madonna +Marisol +Marleen +Marva +Mickie +Miki +Nadia +Nathalie +Nicola +Nola +Ophelia +Penni +Peri +Randee +Randy +Rhea +Rina +Risa +Rosalba +Sandee +Shonda +Sidney +Suzann +Tamala +Teena +Terese +Teressa +Thea +Tiffanie +Timi +Tosha +Treva +Velvet +Alane +Alondra +Alyson +Anette +Aracely +Arline +Bambi +Bessie +Brian +Britt +Bronwyn +Caitlin +Candie +Casandra +Chantel +Charles +Cheryle +Christal +Christopher +Clare +Coreen +Cori +Cristi +Daina +Daniele +Daniella +Deonna +Deserie +Diedra +Donald +Earlene +Ester +Evelia +Jannette +Jasmine +Jenni +Jerry +Jewel +Joey +Jovita +Kamela +Kandi +Karolyn +Karren +Kayla +Kimberlyn +Larry +Latasha +Latisha +Lauretta +Lavina +Letisia +Lou +Luann +Lucila +Maia +Martine +Marybeth +Maryjane +Maryjo +Mellissa +Micheal +Michel +Mirna +Missy +Oralia +Pat +Patrina +Perla +Renay +Rosalva +Shonna +Soledad +Tashia +Taunya +Timothy +Tobi +Tonie +Troy +Valeria +Vickey +Vilma +Yasmin +Yevette +Zenaida +Abby +Agnes +Alejandra +Alena +Andra +Andre +Angelika +Angeline +Annett +Arlette +Avis +Barrie +Belia +Bella +Brett +Brook +Cammie +Cecile +Charolette +Cher +Christene +Cleo +Cristin +Cyndee +Dalene +Danae +Danica +Danise +Dannielle +Davina +Debera +Dede +Deeanna +Deeanne +Delilah +Deloris +Demetra +Dennise +Devonne +Dian +Dolly +Elizebeth +Elke +Enedina +Ermelinda +Felipa +Francie +Gala +Geralyn +Germaine +Haley +Herlinda +Honey +Ila +Isabella +Jacquelin +Janae +Janina +Jeanene +Jenette +Jesusita +Joanie +Jodee +Jonell +Jonnie +Jose +Julee +Julene +Juliane +Kacey +Kandis +Karon +Kary +Katheryn +Keshia +Kimmie +Krysti +Larhonda +Latina +Leeanne +Lianne +Liliana +Lisha +Loni +Lorine +Lorretta +Louann +Lourie +Lupita +Lynelle +Malia +Margery +Margret +Mariaelena +Marquita +Meg +Meghan +Melonie +Melony +Millicent +Millie +Mina +Mischelle +Misti +Monette +Muriel +Nickie +Nicolette +Pamella +Pattie +Raymond +Reba +Renata +Rolanda +Romana +Ronette +Roselyn +Rosita +Rowena +Selene +Serina +Shandra +Sharie +Sharleen +Shawnee +Shea +Soraya +Starr +Susannah +Susette +Tavia +Tena +Terra +Tommie +Tory +Valeri +Velia +Vena +Viki +Yesenia +Zandra +Adelaida +Agustina +Alfreda +Amada +America +Ami +Anabel +Analisa +Anja +Antoniette +Beatris +Billy +Blanche +Bonny +Brandee +Briana +Bridgit +Candance +Carissa +Carl +Carolynn +Celine +Chanda +Chantelle +Charis +Chere +Cherice +Christen +Christiana +Claudette +Coral +Danne +Darline +Dava +Davida +Deedra +Dene +Denean +Denine +Deon +Detra +Dion +Dione +Doni +Doretha +Dorina +Dorthea +Dorthy +Dottie +Emilie +Fatima +Felice +Felisa +Gary +Genoveva +George +Gisele +Glynis +Helaine +Henrietta +Janetta +Jayna +Jewell +Jina +Joella +Johnnie +Kamala +Katherina +Keisha +Kelle +Kimberle +Kimmy +Kisha +Kyla +Kymberly +Kyra +Laila +Latrisha +Launa +Leandra +Leatha +Letha +Lindsey +Lita +Londa +Luci +Lynell +Maren +Mariann +Maribeth +Marlyn +Marna +Marty +Maryellen +Maryhelen +Matthew +Mavis +Mayra +Merri +Mollie +Neva +Nona +Norine +Odette +Pandora +Paulina +Quinn +Rachell +Reiko +Renea +Reyna +Robbi +Robynne +Ronald +Roseanna +Sabra +Shane +Shanta +Sharee +Sheilah +Shellee +Shirleen +Susann +Susy +Tabetha +Tambra +Tari +Tawnia +Tera +Theodora +Thomas +Thomasina +Thresa +Tonna +Tosca +Tracye +Valisa +Veronique +Aaron +Adelita +Adella +Agena +Akemi +Alejandrina +Aletha +Alexia +Alise +Alisia +Alona +Anamaria +Andera +Anitra +Anneliese +Annelise +Anya +Arianne +Aura +Aurelia +Bernardine +Blair +Bobbette +Callie +Candelaria +Carlos +Carlota +Carma +Caron +Carrin +Cecily +Charity +Charline +Charlynn +Cherish +Chloe +Christeen +Christel +Cindee +Cinthia +Corrinne +Cory +Cozette +Cris +Dahlia +Danetta +Danine +Darlynn +Deette +Delinda +Delma +Delphine +Denae +Denee +Denell +Denelle +Denyse +Devra +Dodie +Donita +Donnette +Donya +Dorine +Dyana +Dyann +Earleen +Eddie +Edward +Eugenie +Evie +Felicitas +Florinda +Fonda +Francis +Freda +Frieda +Genelle +Genice +Georgiana +Greer +Gricelda +Gwyn +Hortensia +Isela +Jackqueline +Jade +Janett +Janiece +Jason +Jaymie +Jeaneen +Jeneen +Jenice +Jenine +Jerrie +Joetta +Johnette +Jon +Jori +Josefa +Josephina +Josette +Karey +Karlene +Kasandra +Kathaleen +Katherin +Kathryne +Kayleen +Kelleen +Kimmi +Kindra +Kitty +Koren +Kori +Krissy +Kristene +Laina +Lajuana +Lanita +Lanora +Larisa +Larue +Lashone +Lasonya +Laticia +Lavena +Lavern +Lavonna +Lawanna +Lecia +Leda +Lesia +Lezlie +Liesel +Lilliana +Lisanne +Lizbeth +Lorenda +Lorin +Lorita +Louanne +Loura +Mabel +Mamie +Mandi +Margit +Marnee +May +Melba +Merrilee +Michaella +Mickey +Micki +Mignon +Mirella +Monet +Morgan +Myriam +Nan +Nancie +Nelly +Nia +Nichelle +Nicol +Nicolle +Ninfa +Nohemi +Opal +Paris +Phoebe +Princess +Ranae +Raven +Renate +Richele +Ronica +Rosalina +Rosina +Rossana +Rusty +Sami +Samira +Sanjuanita +Scott +Seanna +Sharilyn +Sharri +Shawnda +Sherice +Sheril +Sherill +Sherrill +Shona +Sloane +Stephaine +Stephany +Steve +Sulema +Summer +Sundra +Suzi +Tamberly +Tammee +Tammera +Tandy +Taryn +Tawni +Teddi +Theressa +Tiffiny +Tona +Tony +Trini +Trudie +Twyla +Unknown +Vada +Veda +Violeta +Viviana +Wendolyn +Yadira +Youlanda +Zelda +Lisa +Michelle +Kimberly +Julie +Jennifer +Karen +Susan +Cynthia +Laura +Mary +Patricia +Elizabeth +Christine +Maria +Stephanie +Sandra +Tina +Denise +Kelly +Deborah +Tammy +Wendy +Tracy +Lori +Angela +Linda +Christina +Gina +Michele +Teresa +Melissa +Dawn +Rebecca +Nancy +Cheryl +Pamela +Kathleen +Donna +Debra +Diana +Amy +Andrea +Monica +Barbara +Diane +Brenda +Theresa +Sharon +Catherine +Stacy +Rhonda +Jill +Renee +Kim +Suzanne +Shannon +Anna +Carol +Robin +Tamara +Stacey +Cindy +Leslie +April +Heather +Paula +Dana +Valerie +Heidi +Jacqueline +Victoria +Deanna +Katherine +Margaret +Nicole +Yvonne +Kathy +Veronica +Ann +Yvette +Carolyn +Kristin +Sherry +Laurie +Sylvia +Sheila +Annette +Debbie +Shelly +Yolanda +Janet +Kathryn +Terri +Rachel +Regina +Martha +Carrie +Kristen +Tiffany +Sheri +Jamie +Kristine +Alicia +Tanya +Gloria +Lynn +Melinda +Anne +Sarah +Tonya +Carla +Sabrina +Monique +Colleen +Erin +Holly +Shelley +Sherri +Darlene +Rosa +Julia +Anita +Leticia +Tracey +Kimberley +Marie +Danielle +Bonnie +Kristina +Melanie +Traci +Virginia +Connie +Janice +Toni +Sonia +Tami +Norma +Jessica +Irene +Sheryl +Cathy +Lorraine +Ruth +Carmen +Rose +Vicki +Jeanette +Samantha +Natalie +Roberta +Sonya +Judy +Teri +Jodi +Helen +Judith +Charlene +Alice +Sara +Shawn +Ana +Crystal +Felicia +Elaine +Leah +Shirley +Cheri +Rita +Joanne +Kelli +Kristi +Amanda +Kari +Ronda +Beth +Joyce +Maureen +Caroline +Dina +Frances +Joy +Irma +Beverly +Eva +Guadalupe +Shari +Trina +Juanita +Penny +Audrey +Becky +Katrina +Charlotte +Lorena +Sally +Dorothy +Lynette +Cecilia +Marilyn +Evelyn +Melody +Jean +Christy +Ellen +Gail +Kelley +Sonja +Kirsten +Antoinette +Joann +Cherie +Esther +Lydia +Rochelle +Claudia +Dianna +Eileen +Jackie +Allison +Janine +Dena +Marlene +Sandy +Betty +Peggy +Ramona +Tammie +Vickie +Lara +Terry +Shawna +Jeanne +Kellie +Belinda +Cassandra +Dolores +Jane +Margarita +Bridget +Erica +Erika +Adrienne +Karin +Jody +Amber +Desiree +Alma +Kerry +Vanessa +Bernadette +Nina +Angelica +Joan +Loretta +Robyn +Vivian +Joanna +Tracie +Roxanne +Candace +Arlene +Jenny +Kristy +Angie +Elena +Grace +Karla +Staci +Stacie +Elisa +Rosemary +Mia +Jana +Darla +Emily +Ginger +Lora +Wanda +Alisa +Christie +Sophia +Deana +Raquel +Audra +Isabel +Lynda +Paige +Stefanie +Krista +Lillian +Mona +Marla +Sherrie +Alison +Jo +Tara +Trisha +Lorie +Nora +Pauline +Rachelle +Gretchen +Wendi +Silvia +Dianne +Kara +Rene +Ingrid +Tammi +Celeste +Doreen +Marina +Phyllis +Shauna +Cathleen +Kerri +Kimberlee +Marianne +Patty +Josephine +Francine +Lana +Lynne +Vicky +Chris +Marcia +Marta +Deanne +Jeanine +Jeannette +Cristina +Megan +Dora +Lucy +Marcella +Marisa +Naomi +Tonia +Adriana +Angelina +Kristie +Leigh +Molly +Luz +Nanette +Leanne +Lupe +Olivia +Tricia +Darcy +Graciela +Lauren +Lesley +Misty +Gayle +Jeri +Kris +Olga +Stella +Constance +Keri +Marlo +Susana +June +Ruby +Candice +Debora +Geraldine +Jeannie +Susanne +Christi +Delia +Laurel +Louise +Noelle +Aurora +Cara +Elsa +Jan +Maricela +Nadine +Priscilla +Aimee +Bridgette +Lea +Patrice +Shelli +Bertha +Latonya +Beatrice +Blanca +Jami +Sue +Susie +Deann +Janelle +Lee +Lourdes +Rachael +Shana +Jacquelyn +Kendra +Latanya +Marci +Marian +Suzette +Doris +Gena +Lena +Paulette +Candy +Celia +Elisabeth +Gabriela +Tamera +Carole +Corina +Gwendolyn +Jodie +Cari +Janette +Lynnette +Marsha +Patti +Shanna +Bobbie +Georgia +Georgina +Jeannine +Marjorie +Nichelle +Camille +Edith +Glenda +Tania +Deena +Hope +Jennie +Miriam +Tamra +Leann +Billie +Colette +Katie +Carolina +Nikki +Daphne +Liza +Marcy +Alexandra +Emma +Hilary +Joelle +Michael +Rosie +Shellie +Brandi +Corinne +Karyn +Rosalie +Beatriz +Brandy +Edna +Lorna +Maryann +Sondra +Chandra +Jolene +Rosemarie +Simone +Angel +Estella +Hilda +Noel +Rosalind +Tabatha +Terrie +Danette +Julianne +Lorrie +Annie +Cami +Christa +Joni +Margo +Claire +Dionne +Estela +Marissa +Martina +Melisa +Mercedes +Sandi +Cecelia +Coleen +Courtney +Ida +Juana +Ladonna +Lilia +Lois +Lucia +Marion +Marnie +Alana +Amelia +Faith +Antonia +Eleanor +Esperanza +Greta +Magdalena +Rena +Serena +Shelia +Angelique +Athena +Bernice +Dawna +Deirdre +Delores +Eugenia +Johanna +Juli +Marcie +Margie +Marisela +Pam +Rae +Socorro +Tasha +Vera +Brigitte +David +Geri +Jenifer +Kay +Myrna +Therese +Genevieve +Meredith +Mindy +Valarie +Carey +Charmaine +Consuelo +Karrie +Mari +Maribel +Monika +Sofia +Tia +Bobbi +Claudine +Danelle +Dee +Florence +Jaime +Josefina +Richelle +Robert +Brooke +Clara +Dominique +Elva +Elvira +Jessie +John +Katharine +Michell +Sharlene +Susanna +Tabitha +Thelma +Cindi +Corinna +Dayna +Jocelyn +Juliet +Lorene +Lucinda +Mechelle +Myra +Petra +Anastasia +Bridgett +Denice +Elise +Janie +Jeanna +Juliana +Justine +Lashawn +Lauri +Lesa +Rosalinda +Rosanna +Shelby +Allyson +Catalina +Dorene +Lanette +Mitzi +Nellie +Ursula +Annmarie +Della +Elvia +Evangelina +Gwen +Janis +Kathrine +Leanna +Rocio +Trudy +Brigette +Francisca +Gabrielle +Imelda +Janna +Karie +Leona +Rebeca +Rosario +Angelia +Annemarie +Bethany +Caren +Caryn +Cathryn +Deidra +Ethel +Francesca +James +Leeann +Lidia +Luisa +Madeline +Penelope +Rebekah +Roxanna +Tiffani +Tonja +Venus +Alexis +Araceli +Collette +Eve +Evette +Janeen +Jeanie +Jerri +Josette +Kimberlie +Lily +Liz +Patsy +Polly +Randi +Selina +Suzy +Verna +Abigail +Amalia +Annamarie +Ashley +Barbra +Betsy +Danna +Darci +Gladys +Gracie +Ilene +Kerrie +Malinda +Mara +Marni +Pearl +Renae +Selena +Sherie +Carri +Janell +Jeana +Josie +Leilani +Mandy +Marguerite +Maritza +Nannette +Natasha +Nichole +Noemi +Noreen +Saundra +Sharron +Tawnya +Vikki +Adrian +Alissa +Carmela +Clarissa +Corrina +Esmeralda +Janel +Kami +Lina +Lorri +Ofelia +Shannan +Stacia +Suzanna +Tamatha +Whitney +Aileen +Alesia +Corrine +Davina +Elissa +Emilia +Griselda +Helena +Inez +Iris +Judi +Keisha +Lani +Latrice +Lia +Mildred +Starla +Windy +Adrianne +Alisha +Amie +Angelita +Buffy +Carlene +Christian +Claudette +Deedee +Dori +Ericka +Hillary +Kate +Kathie +Kimberli +Minerva +Robbin +Sheree +Tana +Tori +Anissa +Antionette +Benita +Carin +Cathrine +Cherise +Concepcion +Cori +Deidre +Elaina +Gia +Gidget +Jayne +Kirstin +Laronda +Lenora +Maryanne +Maura +Mimi +Roni +Thea +Valencia +Abby +Adela +Carleen +Charla +Daisy +Dara +Debby +Demetria +Dona +Gale +Georgette +Gigi +Janene +Joell +Laureen +Lesli +Lola +Maxine +Melodie +Nanci +Patrica +Richard +Ronna +Tanja +Adriene +Aida +Anthony +Carmelita +Celina +Charisse +Cherri +Juliann +Kira +Larissa +Leila +Letitia +Loreen +Missy +Nicola +Pamala +Suzan +Sydney +Velma +Bettina +Carie +Casey +Catrina +Clare +Debi +Gabriella +Helene +Jolie +Jonna +Kandi +Karri +Kathi +Katy +Kellee +Latasha +Latonia +Loraine +Lorinda +Lupita +Marylou +Merry +Nicki +Reyna +Romy +Rosalva +Rosanne +Seana +Shanda +Sophie +Suzie +Tisha +Tresa +Ada +Alejandra +Andria +Berta +Bonita +Carmel +Cristine +Dixie +Elsie +Erlinda +Geneva +Isabelle +Kandy +Katheryn +Kristan +Lavonne +Leisa +Leonor +Loriene +Louisa +Luana +Lucille +Marcela +Marisol +Maya +Melina +Mina +Niki +Rosalia +Roseann +Roslyn +Sharyl +Tiffanie +Wendie +Adrianna +Alecia +Alexandria +Aracely +Arleen +Ava +Bianca +Cameron +Daniella +Danita +Dolly +Ella +Eloisa +Gilda +Hannah +Hollie +Johnna +Kevin +Lolita +Machelle +Manuela +Mariann +Mark +Marlena +May +Paul +Ronald +Rosalba +Roxann +Sabina +Shaun +Sherilyn +Shonna +Stephani +Terese +Timothy +Tressa +Valentina +Vonda +Wende +Yolonda +Zena +Zoe +Alaina +Althea +Alyson +Armida +Babette +Brandie +Brian +Candi +Chantel +Christin +Chrystal +Cristi +Cristy +Cyndi +Delfina +Devon +Elia +Elke +Fiona +Glenna +Guillermina +Harriet +Hermelinda +Janina +Joey +Kecia +Kymberly +Lashon +Latricia +Launa +Laverne +Lavette +Lawanda +Leesa +Leslee +Liana +Liane +Lilly +Lise +Lucila +Maggie +Margot +Marilee +Pilar +Robbie +Rona +Rosalyn +Rosana +Roxana +Roxane +Scott +Sharla +Sherryl +Tamar +Taunya +Teresita +Tracee +Trena +Adele +Alberta +Alina +Ami +Anjanette +Annabelle +Annalisa +Aretha +Beckie +Belen +Caitlin +Cassie +Charlette +Christopher +Cora +Daniel +Daniela +Darcie +Dedra +Deserie +Edwina +Ernestine +Ester +Fabiola +Felecia +Gayla +Herlinda +Ina +Ivette +Jacque +Jacquline +Jaqueline +Joseph +Karol +Kathlene +Kelle +Kimber +Kimmie +Krystal +Libby +Lorelei +Magda +Malissa +Miranda +Nathalie +Nicolle +Nita +Renita +Romona +Ronnie +Shanon +Siobhan +Stacee +Stefani +Summer +Susannah +Tambra +Tamie +Tammera +Tena +Tera +Thomas +Adelina +Andra +Antonette +Autumn +Callie +Carina +Cathie +Cecile +Cecily +Chantal +Cheree +Cherice +Cherrie +Cherry +Christiane +Cinthia +Corine +Cristin +Dalia +Danica +Dawnette +Dorothea +Edie +Elisha +Eliza +Erma +Ernestina +Eunice +Fatima +Faye +Gay +Gaylene +Hortencia +Ivy +Jonelle +Jordana +Jose +Julianna +Keli +Kendall +Kristal +Lauretta +Leandra +Leeanne +Lenore +Lillie +Melba +Merri +Mireya +Mirna +Morgan +Oralia +Page +Rachele +Rana +Rhoda +Shawnna +Shonda +Soledad +Steffanie +Stephen +Stephenie +Steven +Tamela +Tammara +Tammra +Tonette +Valorie +Violet +William +Willie +Yevette +Adriane +Amparo +Anisa +Cherilyn +Clarice +Dale +Darleen +Dawne +Delaine +Diedra +Dinah +Dorinda +Eden +Elida +Etta +Fawn +Felice +Georgiana +Gerri +Gillian +Hayley +Hazel +Iliana +Jayme +Jeffrey +Jenna +Jerry +Joleen +Juliette +Karey +Karlene +Lanita +Larisa +Latina +Latisha +Lawana +Liesl +Lila +Lilian +Lindsay +Lisette +Loree +Lyn +Madonna +Marianna +Marti +Maryellen +Michaelle +Neva +Nicolette +Rina +Roseanne +Rossana +Salina +Serina +Shiela +Stephany +Sunny +Tamala +Tiffiny +Treva +Troy +Trudi +Viola +Wilma +Xochitl +Alena +Anabel +Annamaria +Annetta +Astrid +Aundrea +Bernadine +Camie +Candie +Catharine +Charise +Cher +Christal +Christene +Cyndee +Danae +Danyelle +Debbra +Delisa +Dennise +Donielle +Donya +Dyan +Dyana +Eloise +Eric +Evangeline +Frankie +Gricelda +Jacquelin +Jenine +Jina +Jolynn +Kary +Keely +Kenya +Kitty +Kristian +La +Lela +Lindsey +Lindy +Mariana +Melani +Mellissa +Melynda +Michaele +Milissa +Misti +Moira +Natalia +Nedra +Nola +Paris +Phoebe +Raymond +Ronette +Rosamaria +Roseanna +Sari +Sarita +Shane +Sharee +Sonji +Tobi +Toi +Tonie +Trinidad +Tyra +Velia +Velvet +Agnes +Aleta +Angeline +Barbie +Becki +Blanche +Bobby +Brandee +Brigid +Britt +Caprice +Carissa +Carlyn +Cassaundra +Charleen +Charles +Christen +Christianne +Cruz +Danell +Dannette +Dannielle +Darice +Debbi +Debrah +Dede +Denette +Denna +Diann +Edward +Erinn +Eulalia +Flor +Gayleen +Georgianna +Gianna +Holli +Hortensia +Ila +Ileana +Jacki +Jaimie +Janae +Jennette +Jerilyn +Jerrie +Jesus +Jewel +Joie +Jonnie +Justina +Katherin +Kaye +Kimmy +Kindra +Lavon +Lavonda +Lenette +Lissa +Luanne +Luci +Lynelle +Mabel +Mae +Marivel +Mayra +Meghan +Mercy +Micaela +Michel +Miko +Nadia +Pia +Randa +Randee +Rebel +Reina +Renea +Rhea +Ricki +Risa +Rosaura +Sandie +Sherice +Shireen +Shonta +Suanne +Suzann +Sybil +Tani +Tatia +Teena +Tosha +Toya +Twila +Twyla +Zelda +Alycia +Anamaria +Arianne +Bambi +Belia +Bessie +Briana +Britta +Brook +Carlotta +Caron +Cary +Celene +Chana +Chanda +Chanelle +Charline +Chere +Cheryle +Christiana +Cinda +Coreen +Dani +Darby +Delinda +Deneen +Denyse +Devra +Dione +Donelle +Donyale +Earlene +Elana +Elba +Enedina +Evonne +Felisa +Frank +Germaine +Ginny +Gisele +Hanna +Haydee +Heide +Henrietta +Honey +Ilda +Inga +Inge +Iona +Jacqualine +Jeanetta +Jena +Jenee +Jenelle +Jenette +Jenise +Joanie +Joel +Johnnie +Joi +Jona +Juliane +Kamala +Karlyn +Kellene +Kenneth +Kimberely +Kimberlyn +Kimi +Kristene +Kym +Kyra +Lainie +Lashaun +Latonja +Letecia +Lezlie +Lianne +Linette +Lizette +Loni +Loralee +Luann +Lucretia +Madeleine +Maile +Malina +Marcelle +Marna +Mellisa +Mickie +Millicent +Minnie +Mirella +Mollie +Nelly +Ophelia +Portia +Racheal +Renata +Robbi +Rosaisela +Rosetta +Ruthann +Ruthie +Sabrena +Sandee +Sean +Selma +Shara +Sharilyn +Shaunna +Shawnda +Shawnee +Sherlyn +Tawni +Teressa +Terisa +Terra +Tisa +Tressie +Valinda +Vilma +Viviana +Willa +Yasmin +Zina +Adina +Alane +Alanna +Alexa +Alondra +Alyssa +Analisa +Anastacia +Andera +Andre +Angelena +Annabel +Arianna +Camela +Camilla +Cammy +Candelaria +Carolynn +Casandra +Cathlene +Chanel +Chrissy +Conni +Coral +Corey +Cris +Dalene +Dalila +Daneen +Danya +Danyell +Darlynn +Deeann +Deedra +Delana +Demetra +Denee +Deonna +Devin +Donald +Dusty +Dyann +Elizabet +Ermelinda +Eydie +Fay +Flora +Francis +Freda +Gari +Gary +Georgie +Giselle +Herminia +Hiedi +Ilona +Inger +Isabella +Isela +Iva +Ivonne +Jaclyn +Janee +Jannette +Jeanell +Jeneen +Jesusita +Jewell +Jillian +Joetta +Jolee +Josephina +Jozette +Julissa +Kaaren +Kai +Karleen +Karolyn +Kayleen +Kellye +Kenna +Kerstin +Kiersten +Kisha +Kyla +Lanna +Larae +Larhonda +Lasonya +Lauralee +Leane +Leia +Leighann +Leondra +Letty +Liliana +Lona +Lonna +Lonnie +Loren +Lorina +Lory +Madelyn +Mamie +Maricruz +Marietta +Marika +Mariza +Marlina +Martine +Maryjane +Matthew +Melodi +Melonie +Melony +Meri +Merrie +Michaela +Micki +Mika +Mila +Mindi +Mischelle +Muriel +Myla +Nicol +Nidia +Nona +Nova +Obdulia +Pat +Patrick +Pattie +Pennie +Perla +Piper +Princess +Quinn +Rachell +Raelene +Randy +Raul +Raylene +Raynette +Rikki +Roma +Ronnette +Rosalina +Rowena +Sallie +San +Santa +Sebrina +Shellee +Sherita +Sherril +Sherrill +Shirlee +Shirlene +Siria +Stacye +Star +Suzi +Sylvie +Tamila +Tammey +Tawnia +Tessa +Tessie +Tiana +Tish +Tresha +Trini +Valeria +Venice +Vickey +Viki +Vivien +Yadira +Adeline +Adria +Albertina +Alejandrina +Alene +Alex +Alexia +Alise +Alva +Alyce +Alysa +Andree +Anjeanette +Annett +Antonieta +Antonietta +Arcelia +Arminda +Arnetta +Aura +Beatris +Beverley +Birgit +Bobbette +Brenna +Bronwyn +Cammie +Candyce +Carlette +Carolee +Casie +Caterina +Chante +Charity +Cherish +Cherisse +Cherly +Cherlyn +Cheryll +Christel +Christena +Cindie +Cinnamon +Corie +Cornelia +Cozette +Cristal +Cristie +Cydney +Cyndy +Dahlia +Danika +Dann +Daria +Deeanna +Deette +Deirdra +Delena +Delene +Delphine +Denene +Deniece +Denine +Dennis +Denyce +Destiny +Devera +Dian +Diedre +Donita +Donnetta +Dorian +Dorrie +Dorthy +Dottie +Dreama +Drena +Dulce +Elicia +Ena +Eugenie +Evelia +Evelina +Fonda +Frieda +Gaye +Gerry +Glynda +Hallie +Ines +Ivana +Jacinta +Jacklyn +Jacquelynn +Jade +Jammie +Janay +Janey +Jani +Jannie +Jaylene +Jeanene +Jenell +Jeni +Jimmie +Jodee +Johnette +Jolyn +Jon +Jonell +Joycelyn +Julene +Julienne +Kacy +Kandace +Kareen +Karene +Kassandra +Katerina +Kathren +Kathryne +Kaylene +Kelsey +Keshia +Kimberle +Kori +Krissy +Kristel +Kristyn +Kyle +Lacey +Lachelle +Lasandra +Lasaundra +Lashanda +Laticia +Laurinda +Leasa +Leeanna +Lelia +Leonora +Letica +Ligia +Linnea +Linnette +Lisha +Lou +Lourie +Lucina +Lus +Lynetta +Lynna +Lysa +Maia +Makeba +Malia +Marcelina +Marcey +Maren +Margery +Marguerita +Mariam +Marline +Marsi +Marty +Marya +Maryhelen +Matilda +Maurine +Mayumi +Meagan +Mechele +Merritt +Mignon +Miki +Mirtha +Mishelle +Natalee +Nelda +Pandora +Paola +Patrina +Penni +Peri +Petrina +Racquel +Raeann +Rashell +Rayna +Rechelle +Renay +Romi +Romina +Ronica +Rosalynn +Rosella +Roselyn +Rosina +Rozanne +Saadia +Sarina +Sasha +Scarlet +Shanta +Sharie +Sharleen +Sharyn +Shayna +Shereen +Sheril +Sheron +Sheryn +Shonte +Sonjia +Soraya +Susette +Syliva +Synthia +Tabetha +Taffy +Tahnee +Talitha +Taryn +Tawny +Teresia +Tess +Theodora +Tiffaney +Tommie +Torrie +Tory +Treasa +Veda +Vita +Wendee +Winifred +Winona +Yumi +Zenaida +Lisa +Michelle +Jennifer +Kimberly +Laura +Julie +Christine +Karen +Patricia +Maria +Elizabeth +Kelly +Mary +Tina +Cynthia +Susan +Sandra +Stephanie +Angela +Christina +Melissa +Deborah +Michele +Wendy +Tammy +Denise +Tracy +Linda +Lori +Dawn +Teresa +Gina +Rebecca +Shannon +Kathleen +Amy +Nancy +Monica +Pamela +Andrea +Donna +Cheryl +Debra +Diana +Stacy +Heather +Barbara +Brenda +Jill +Theresa +Robin +Stacey +Sharon +Diane +Tamara +Rhonda +Catherine +Renee +Nicole +Carol +Suzanne +Veronica +Paula +Victoria +Katherine +Dana +Kim +Deanna +Anna +Leslie +Cindy +Jacqueline +Kristin +Carrie +Yolanda +Ann +Yvonne +Heidi +Rachel +Valerie +April +Tanya +Regina +Carolyn +Shelly +Alicia +Sheila +Margaret +Kristine +Yvette +Sylvia +Tiffany +Kristen +Laurie +Sherry +Annette +Janet +Martha +Erin +Sheri +Danielle +Sarah +Anne +Kathryn +Melinda +Debbie +Kristina +Monique +Kathy +Jamie +Terri +Tonya +Gloria +Julia +Leticia +Traci +Rosa +Colleen +Melanie +Tracey +Jessica +Shelley +Holly +Samantha +Sherri +Sonia +Anita +Norma +Vicki +Jeanette +Natalie +Carla +Kimberley +Tami +Carmen +Lynn +Connie +Virginia +Darlene +Ana +Marie +Jodi +Bonnie +Kristi +Toni +Sara +Irene +Christy +Crystal +Kelli +Sabrina +Rose +Ruth +Claudia +Frances +Janice +Lorraine +Cathy +Cassandra +Raquel +Sonya +Alice +Kari +Lara +Dina +Kelley +Elaine +Leah +Teri +Kellie +Kirsten +Sheryl +Kerry +Charlene +Beth +Joanne +Amanda +Caroline +Charlotte +Helen +Shawn +Judy +Cheri +Rita +Joy +Trina +Jody +Roberta +Rochelle +Amber +Lynette +Maureen +Eileen +Erika +Judith +Ramona +Eva +Allison +Lorena +Lydia +Irma +Adrienne +Shawna +Shirley +Cecilia +Marlene +Beverly +Erica +Sally +Becky +Tara +Guadalupe +Sandy +Felicia +Rachelle +Ronda +Katrina +Dena +Stacie +Antoinette +Robyn +Tammie +Bridget +Juanita +Audrey +Desiree +Joyce +Vanessa +Adriana +Staci +Melody +Trisha +Angelica +Gail +Jackie +Terry +Angelina +Janine +Belinda +Joanna +Marla +Penny +Betty +Ellen +Kristy +Dianna +Evelyn +Karin +Sonja +Alma +Deana +Rene +Shari +Candace +Cristina +Jane +Angelique +Jeanne +Margarita +Dolores +Tracie +Krista +Marilyn +Peggy +Jana +Vickie +Alisa +Emily +Jean +Joann +Elena +Cherie +Dorothy +Alison +Vivian +Arlene +Christie +Lora +Darla +Brandi +Esther +Rosemary +Jenny +Loretta +Silvia +Karla +Tricia +Elisa +Joan +Roxanne +Isabel +Megan +Nina +Sophia +Bernadette +Keri +Mia +Kerri +Lucy +Shauna +Ginger +Grace +Lynda +Wendi +Darcy +Olivia +Laurel +Marcella +Kristie +Lillian +Marina +Marcia +Tammi +Angie +Celeste +Deanne +Lorie +Tonia +Gabriela +Jeannette +Lauren +Leanne +Olga +Sherrie +Susanne +Josephine +Lupe +Vicky +Cari +Cathleen +Mona +Audra +Shana +Susana +Alexandra +Dianne +Leigh +Naomi +Nora +Jeannie +Jo +Blanca +Christi +Janelle +Stefanie +Tania +Luz +Marianne +Kimberlee +Pauline +Priscilla +Wanda +Gena +Molly +Doreen +Jodie +Suzette +Delia +Francine +Georgina +Jeanine +Misty +Sue +Constance +Gretchen +Kara +Kendra +Brandy +Candice +Candy +Paige +Bobbie +Dora +Janette +Marlo +Marnie +Noelle +Nichelle +Aimee +Elsa +Ingrid +Serena +Susie +Chris +Lynne +Marisa +Bertha +Camille +Christa +Elisabeth +Tamra +Danette +Dionne +Jennie +Lesley +Carolina +Celia +Courtney +Hope +Jacquelyn +Lana +Leann +Nadine +Nanette +Beatrice +Latonya +Lena +Marta +Georgia +Marjorie +Mindy +Debora +Jeri +Lee +Colette +Deena +Kris +Latanya +Lea +Bridgette +Graciela +Julianne +Rachael +Amelia +Edith +Glenda +Jenifer +Shanna +Tabatha +Angel +Chandra +Gayle +Jeannine +Ruby +Geraldine +Karyn +Shelli +Eleanor +Gwendolyn +June +Liza +Marsha +Patty +Shellie +Ashley +Corinne +Doris +Lashawn +Lourdes +Patrice +Aurora +Miriam +Nikki +Cara +Patti +Stella +Carole +Jessie +Josette +Maribel +Billie +Josefina +Katharine +Lynnette +Michael +Phyllis +Annmarie +Beatriz +Brooke +Jami +Lilia +Louise +Marci +Maricela +Araceli +Brigette +Consuelo +Deirdre +Jan +Karrie +Ladonna +Maryann +Claudine +Marcy +Pam +Rosemarie +Bernice +Lucia +Lucinda +Melisa +Brigitte +Lauri +Paulette +Rosalinda +Ursula +Cecelia +Dawna +Edna +Juli +Lorrie +Margie +Therese +Valarie +Angelia +Esperanza +Natasha +Rena +Tabitha +Tamera +Tiffani +Anissa +Carey +Corina +Daphne +Emma +Jerri +Jocelyn +Katie +Robert +Rosie +Sandi +Shelia +Caryn +Claire +David +Elise +Janell +Joelle +Evangelina +Gabrielle +Hilda +Mara +Margo +Vikki +Buffy +Deann +Hilary +Juliet +Justine +Lois +Mari +Elvia +Janis +Juana +Marissa +Meredith +Terrie +Aileen +Athena +Dara +Della +Jaime +Johanna +John +Joni +Juliana +Marian +Rosanna +Tamatha +Clara +Coleen +Dayna +Deidre +Denice +Elvira +Estella +Jolene +Leeann +Lorna +Marisela +Marni +Rosalie +Sondra +Susanna +Tamiko +Tasha +Abigail +Catalina +Estela +Griselda +Iris +Marcie +Mitzi +Tonja +Annie +Dee +Imelda +Latrice +Noel +Rosalind +Simone +Corrina +Dominique +Genevieve +Gwen +Hillary +Ida +James +Kay +Kerrie +Richelle +Shanon +Shelby +Suzanna +Tawnya +Aida +Amie +Cami +Janeen +Jolie +Nichole +Vera +Alana +Antonia +Elva +Faith +Malinda +Michell +Robbin +Windy +Alisha +Anastasia +Angelita +Annemarie +Bobbi +Eve +Leona +Mercedes +Polly +Rocio +Rosario +Tia +Adrianne +Alejandra +Allyson +Bridgett +Carie +Corrine +Francisca +Janel +Josie +Kami +Lanette +Leanna +Liana +Marion +Martina +Rae +Tisha +Adrian +Alissa +Delores +Esmeralda +Eugenia +Janna +Krystal +Latonia +Leilani +Mechelle +Randi +Rebekah +Renae +Socorro +Caren +Carin +Charmaine +Cindi +Corinna +Ericka +Francesca +Janie +Jeanna +Kate +Kimberlie +Lesa +Lidia +Magdalena +Nicolette +Petra +Sofia +Cassie +Greta +Lily +Myra +Nanci +Rosalyn +Sabina +Venus +Adriane +Alexis +Annamarie +Aretha +Kathrine +Kimberli +Kirstin +Larissa +Lorinda +Mariana +Marlena +Roni +Saundra +Sheree +Alexandria +Bethany +Bettina +Caprice +Clarissa +Dani +Deedee +Devon +Florence +Jeana +Kandi +Lia +Marcela +Maura +Ofelia +Pearl +Sharlene +Sharron +Sherie +Tamie +Betsy +Daniel +Darci +Evette +Geri +Hazel +Helena +Joey +Karina +Kasey +Lani +Lenora +Lucille +Mandy +Marisol +Maya +Monika +Nannette +Noemi +Patsy +Penelope +Roseann +Roxanna +Stephani +Alyssa +Antionette +Candi +Christian +Cristi +Cristine +Davina +Elissa +Elke +Jeanie +Kecia +Madeline +Minerva +Myrna +Richard +Rosalia +Shannan +Sydney +Thelma +Trena +Velma +Whitney +Ava +Carmel +Cristin +Cyndi +Danelle +Danita +Debby +Eden +Georgette +Janene +Karie +Karri +Kellee +Lavonne +Manuela +Maritza +Miranda +Rosalva +Rosana +Selena +Stefani +Tamela +Trudy +Ada +Alesia +Amalia +Arleen +Casandra +Casey +Catrina +Celina +Chantal +Dori +Eunice +Johnna +Kam +Kimber +Kristan +Leonor +Letitia +Lola +Luisa +Lupita +Mellissa +Nellie +Noreen +Pilar +Rebeca +Robbie +Seana +Suzan +Valorie +Verna +Yevette +Alecia +Armida +Barbra +Brandie +Carri +Chantel +Chrystal +Claudette +Collette +Cora +Danna +Debi +Deeann +Dorene +Eliza +Erma +Ernestine +Geneva +Gigi +Hannah +Jillian +Kathi +Keisha +Kimberely +Kristal +Larisa +Lenore +Liz +Loree +Lorri +Malissa +Margot +Mimi +Pennie +Rosanne +Roseanne +Shona +Stephenie +Suzie +Tiffanie +Tori +Adela +Anthony +Brenna +Cathryn +Cherise +Darcie +Eric +Gia +Julianna +Latisha +Machelle +Marguerite +Mildred +Nicola +Niki +Roslyn +Selina +Trudi +Alberta +Andria +Antonette +Arcelia +Cameron +Carina +Carissa +Carmela +Cheryle +Cinnamon +Concepcion +Daisy +Deidra +Elaina +Fabiola +Frankie +Gidget +Gillian +Jenelle +Jonna +Judi +Justina +Keli +Latasha +Leesa +Lorene +Mark +Melina +Michel +Missy +Pamala +Reina +Rosalba +Roxana +Roxann +Shantel +Shawnna +Shiela +Shonna +Summer +Sybil +Tamala +Zoe +Alba +Althea +Angeline +Benita +Coreen +Corey +Danica +Daniele +Darleen +Ella +Ethel +Flora +Gay +Ginny +Ilene +Joell +Juliette +Kathie +Kisha +Kori +Latricia +Laverne +Leila +Liane +Lila +Lolita +Louisa +Marti +Maxine +Meghan +Mirna +Ronna +Roxane +Sharla +Sunny +Suzy +Tammara +Tena +Terese +Thomas +Valentina +William +Adriene +Angelic +Aracely +Autumn +Caitlin +Cammie +Carmelita +Cary +Chere +Christiana +Christopher +Cinthia +Diann +Dixie +Dolly +Emilia +Erinn +Ernestina +Evangeline +Faye +Gladys +Hayley +Heide +Inez +Ivette +Ivy +Jayme +Jayne +Jenni +Jolynn +Julieann +Kamela +Katy +Kimi +Kyra +Laureen +Lawanda +Lela +Loraine +Marty +Melodie +Mina +Mindi +Phaedra +Raylene +Reyna +Rhea +Rona +Ruthie +Shaun +Stacee +Stacia +Star +Steven +Tana +Tessa +Timothy +Tracee +Yael +Adina +Alanna +Ami +Annabelle +Berta +Candie +Carleen +Charisse +Charla +Charles +Clare +Cori +Cristy +Debbra +Deeanna +Demetria +Denese +Elida +Erlinda +Felisa +Gayla +Giselle +Gracie +Guillermina +Hollie +Isabelle +Jacquline +Jamee +Jannette +Jasmine +Joel +Johnnie +Karolyn +Kelle +Kevin +Kira +Kristyn +Liliana +Lina +Lizette +Lonnie +Lucretia +Marianna +Maryanne +May +Michaele +Moira +Natalia +Nickie +Nicol +Nita +Patrica +Paul +Perla +Piper +Racquel +Rolanda +Romona +Ronnie +Sarina +Shayne +Shereen +Tanja +Tobi +Tresa +Troy +Adelina +Agnes +Alycia +Alyson +Ariana +Belen +Brian +Camilla +Carlene +Cathi +Cecile +Chantell +Chantelle +Charity +Charleen +Chrissy +Christen +Clarice +Coretta +Crista +Daniela +Dannette +Dawne +Dedra +Dyan +Edie +Elsie +Felecia +Gale +Helene +Inga +Jacquelin +Janae +Jaqueline +Jenise +Jerry +Jodee +Jona +Kassandra +Kathlene +Kendall +Kitty +Laronda +Lashon +Lavon +Leisa +Liesl +Lilly +Lissa +Loreen +Lorelei +Lory +Luanne +Lyn +Madonna +Magda +Nadia +Raelene +Rana +Renay +Sheli +Shonda +Stephany +Tambra +Valeria +Venessa +Yolonda +Adele +Aleta +Alisia +Alyce +Briana +Britt +Cathrine +Cheree +Cindee +Corine +Corrie +Daniella +Dannielle +Delana +Deonna +Dione +Dona +Dorothea +Elia +Eloisa +Enedina +Hallie +Henrietta +Hortencia +Ina +Isela +Ivonne +Jacki +Joi +Joleen +Kiersten +Larhonda +Leandra +Lilian +Lisette +Lisha +Maggie +Mariann +Marybeth +Marylou +Mellisa +Milissa +Nathalie +Nicki +Nicolle +Pia +Rachell +Raina +Reba +Renea +Ricki +Ronette +Sallie +Shirlene +Soledad +Stephaine +Stephen +Suzann +Teena +Teresita +Tiffiny +Toi +Toya +Treva +Tuesday +Twyla +Violeta +Vonda +Wende +Wilma +Adrianna +Aletha +Annalisa +Annamaria +Annetta +Ariel +Aundrea +Bambi +Bernadine +Bessie +Bonita +Bonny +Brook +Carlotta +Catharine +Celena +Chana +Cherri +Cherrie +Cindie +Danae +Danell +Deandra +Debbi +Delilah +Deloris +Demetra +Denna +Dyana +Ester +Evelia +Fatima +Francis +Gabriella +Gary +Gianna +Gisela +Jaclyn +Jacque +Jammie +Jenna +Jerilyn +Jerrie +Jewel +Joe +Joellen +Joycelyn +Julissa +Kamala +Kandy +Karena +Karol +Katheryn +Keith +Kenna +Kenneth +Laticia +Lavonda +Leeanne +Lesli +Lindsay +Lindy +Lise +Lonna +Luci +Lucila +Madelyn +Malia +Marchelle +Marleen +Marna +Matthew +Mayra +Meagan +Mercy +Mika +Millie +Minette +Page +Pat +Portia +Quincy +Racheal +Ranae +Rochell +Roseanna +Scott +Sean +Shane +Sharleen +Sharyn +Sophie +Starla +Steffanie +Sunday +Susannah +Synthia +Tawnia +Tawny +Terrell +Thea +Tinamarie +Tressa +Tyra +Valencia +Veda +Viola +Violet +Willie +Windi +Zulema +Alaina +Alexa +Alta +America +Amparo +Andra +Andre +Annabel +Bianca +Bronwyn +Carolynn +Charon +Christal +Christiane +Christin +Cristal +Cristen +Cristie +Dale +Dalia +Darby +De +Delisa +Dennise +Diedra +Dinah +Donald +Dorinda +Dusty +Freda +Gaylene +Gerri +Gilda +Glenna +Haley +Ilda +Ileana +Inger +Janee +Jaymie +Jenell +Joely +Jolyn +Jose +Josefa +Joseph +Jovita +Julieta +Karleen +Kenya +Kirstie +Kyla +Kym +La +Laila +Latina +Lillie +Lita +Lona +Lorretta +Luana +Malisa +Mandi +Marsi +Martine +Marva +Marya +Melynda +Merry +Mireya +Mollie +Neva +Nona +Princess +Renita +Rikki +Rosalina +Rosetta +Roshawn +Salina +Sarita +Sasha +Shandra +Shanta +Sharee +Sheena +Sherilyn +Sherrill +Shireen +Sirena +Soraya +Starr +Tamika +Tatiana +Teressa +Terina +Terra +Tomika +Tonie +Tosha +Vilma +Xochitl +Zena +Aisha +Alane +Alejandrina +Alena +Alexia +Alica +Anastacia +Andrew +Anette +Anisa +Astrid +Aurelia +Babette +Beckie +Bette +Brandee +Brigid +Cammy +Candelaria +Carmella +Cathie +Cathlene +Catrice +Celestine +Cherilyn +Christianne +Cleo +Corie +Cyndy +Dania +Danise +Deshawn +Detra +Diedre +Diona +Donelle +Elba +Eloise +Elyse +Eulalia +Evie +Felica +Fonda +Freya +Georgiana +Giovanna +Hattie +Herminia +Ilana +Janina +Joanie +Julee +Julisa +Karey +Karry +Kary +Kayleen +Kellye +Kena +Kesha +Kimberlyn +Kimmie +Kristian +Kymberly +Lainie +Larae +Leda +Leora +Leslee +Letisia +Lianne +Libby +Linette +Lizabeth +Loriann +Luann +Lynell +Mabel +Mae +Marcelle +Maricruz +Marielle +Mario +Marne +Merri +Michaela +Michaelle +Mila +Mirella +Mischelle +Morgan +Nichele +Nicholle +Pandora +Pattie +Petrina +Rachele +Randee +Randy +Raquelle +Raymond +Romy +Roselyn +Rosio +Rowena +Sabra +Sandie +Serina +Shanda +Shara +Sharman +Sharyl +Shawnee +Sigrid +Siobhan +Spring +Starlene +Susann +Tamar +Tammera +Tawni +Terisa +Thalia +Tiffney +Todd +Adeline +Adena +Albertina +Alethea +Anabel +Angele +Anja +Anneliese +Audrea +Barbie +Bella +Beverley +Billy +Brett +Caryl +Chanda +Chanel +Cher +Cherry +Conni +Coral +Cory +Cris +Cruz +Cydney +Cyndie +Damaris +Daneen +Danika +Danyelle +Daria +Daryl +Dava +Dawnell +Debrah +Delma +Denita +Dondi +Earlene +Edwina +Elicia +Ena +Ermelinda +Eryn +Estelle +Evon +Fawn +Fay +Felice +Felicitas +Fiona +Florencia +Francie +Genoveva +Gregory +Henry +Hermelinda +Hiedi +Honey +Iliana +Ilona +Jacinda +Jada +Janean +Jeanetta +Jeffrey +Jesus +Joette +Jon +Julene +Julieanne +Jullie +Kasandra +Katherina +Kayla +Kaylene +Kerie +Khristine +Kimiko +Kindra +Koreen +Kyle +Lacey +Lannette +Lashan +Lashanda +Lashaun +Lashonda +Launa +Laurene +Leatha +Lei +Leta +Leza +Lezlie +Lindsey +Londa +Loren +Lorianne +Lou +Maren +Margret +Mariaelena +Maribeth +Marline +Melany +Melonie +Micheal +Mignon +Mira +Misti +Nerissa +Ninette +Olympia +Ophelia +Paris +Patrick +Patrisia +Paulina +Raeann +Rebecka +Remi +Rhoda +Rhona +Rina +Risa +Roberto +Ronnette +Rosamaria +Rosita +Sabine +Sabrena +Sacha +Samara +Shannen +Shantell +Sharen +Sharolyn +Shaunna +Shellee +Sherita +Sherryl +Silva +Sona +Sonjia +Suann +Susette +Suzi +Tabetha +Tarina +Tayna +Tera +Toby +Tomasa +Trista +Tyla +Vita +Wendee +Wendie +Winifred +Abby +Addie +Adelia +Adelita +Adella +Albert +Alethia +Alina +Anamarie +Andree +Angella +Ani +Anthea +Antonina +Antonio +Arthur +Balinda +Becki +Betina +Blythe +Bobby +Brianna +Bridgitte +Brittany +Buffie +Bunny +Callie +Cameo +Camie +Candyce +Carlos +Carmina +Caron +Celestina +Charise +Cherisse +Christel +Cinda +Daena +Daina +Danyel +Darice +Dawnn +Delfina +Delinda +Demetrius +Dennis +Deserie +Dhana +Dian +Djuana +Domenica +Dominica +Donia +Donielle +Donya +Doretha +Dwana +Edward +Eilene +Elayne +Erik +Fern +Franki +Gala +Glynis +Gretel +Gricelda +Gwyn +Herlinda +Holli +Isabell +Ixchel +Jacinta +Jacklyn +Jacquelynn +Jade +Janea +Janett +Janiece +Janise +Jannet +Jason +Jeanice +Jeanmarie +Jeneen +Jenette +Jeni +Jenice +Jennefer +Jeralyn +Joana +Johnny +Jolanda +Jolee +Joley +Jonelle +Jonette +Jordana +Josephina +Joya +Jozette +Juliann +Kandace +Kandice +Karlene +Karlyn +Karon +Kassie +Katerina +Kathryne +Kelene +Kellene +Kendal +Kerith +Kerstin +Kia +Kimberle +Koren +Kriss +Kriste +Kristeen +Lachelle +Ladawn +Lahoma +Lanetta +Lannie +Larry +Lashone +Lashun +Latonja +Latosha +Laure +Lauretta +Lavern +Lavette +Lavinia +Lavonna +Lawana +Leeanna +Leshawn +Letha +Letty +Liese +Linnea +Lorenza +Lucie +Lulu +Lynnae +Lysa +Magaly +Maile +Marcee +Marnee +Marvella +Maryellen +Maryjo +Mauricia +Maurine +Meg +Melba +Melodi +Melony +Melva +Micaela +Michelene +Millicent +Mireille +Mishelle +Monet +Mya +Myriam +Nedra +Nelly +Nena +Nichola +Nicky +Nikole +Nola +Norine +Norman +Penni +Peri +Phoebe +Rafaela +Rayna +Rebbecca +Regena +Renata +Robynne +Ronald +Rosina +Roxie +Rudy +Ruthann +Samone +Seanna +Shalon +Shanell +Sharilyn +Shawnte +Shelene +Sherice +Sherlyn +Sherron +Sheryle +Shoshana +Sidney +Sloane +Stephane +Stephine +Steve +Tama +Tamarra +Tammatha +Tammra +Tani +Tanna +Taryn +Terresa +Timi +Tomi +Tommie +Tonette +Toy +Trace +Tracye +Treasa +Trini +Trinidad +Valeri +Velia +Velvet +Vickey +Victor +Xochilt +Yesenia +Zandra +Zina +Lisa +Michelle +Jennifer +Kimberly +Julie +Laura +Christine +Maria +Christina +Patricia +Cynthia +Elizabeth +Stephanie +Shannon +Karen +Mary +Sandra +Melissa +Tina +Angela +Kelly +Susan +Tracy +Heather +Denise +Amy +Wendy +Dawn +Rebecca +Michele +Lori +Deborah +Gina +Tammy +Nicole +Teresa +Monica +Linda +Kathleen +Andrea +Pamela +Stacy +Donna +Nancy +Diana +Stacey +Debra +Cheryl +Brenda +Tamara +Barbara +Dana +Sharon +Theresa +Heidi +Catherine +Diane +Katherine +Leslie +Renee +Deanna +Rachel +Victoria +Veronica +Robin +Suzanne +Anna +Rhonda +Jill +Erin +Tanya +Kristin +Ann +Cindy +Tiffany +Jacqueline +April +Carol +Kim +Alicia +Carrie +Valerie +Danielle +Kristen +Paula +Carolyn +Yolanda +Yvonne +Julia +Margaret +Laurie +Regina +Sarah +Sheila +Kristine +Shelly +Kristina +Holly +Jamie +Yvette +Kathryn +Sherry +Melinda +Jessica +Gloria +Sylvia +Sonia +Monique +Kathy +Rosa +Tonya +Anne +Sheri +Martha +Leticia +Terri +Melanie +Traci +Christy +Samantha +Janet +Tara +Tracey +Kelli +Annette +Raquel +Virginia +Kristi +Debbie +Natalie +Carla +Shelley +Tricia +Colleen +Norma +Kellie +Sherri +Jodi +Sara +Anita +Ana +Lynn +Crystal +Jeanette +Irene +Vanessa +Kimberley +Darlene +Marie +Lorraine +Erika +Carmen +Bonnie +Claudia +Sabrina +Guadalupe +Ruth +Shawna +Elaine +Tami +Dina +Kirsten +Connie +Charlene +Felicia +Kari +Rochelle +Erica +Toni +Trina +Cathy +Rose +Shawn +Janice +Alice +Vicki +Adriana +Dena +Amber +Robyn +Joanne +Sonya +Judith +Amanda +Lara +Sheryl +Becky +Beth +Frances +Rita +Trisha +Teri +Lorena +Leah +Allison +Cassandra +Jody +Roberta +Katrina +Helen +Kelley +Krista +Kristy +Rachelle +Beverly +Bridget +Judy +Irma +Kerry +Angelica +Eva +Juanita +Caroline +Eileen +Alison +Esther +Joann +Ramona +Sonja +Staci +Joanna +Tammie +Margarita +Cheri +Tracie +Marlene +Angelina +Emily +Joyce +Shari +Silvia +Dolores +Dianna +Ronda +Charlotte +Lydia +Cecilia +Ellen +Audrey +Desiree +Lynette +Priscilla +Cristina +Evelyn +Joy +Stacie +Karin +Maureen +Megan +Shirley +Deana +Candace +Sally +Alma +Kerri +Alisa +Betty +Roxanne +Arlene +Christie +Shana +Antoinette +Marla +Belinda +Janine +Jean +Jenny +Nina +Bernadette +Gabriela +Terry +Adrienne +Cherie +Dorothy +Melody +Jeanne +Karla +Penny +Brandi +Sandy +Jackie +Kristie +Marilyn +Blanca +Candy +Loretta +Shauna +Jeannette +Mona +Serena +Sophia +Vivian +Elena +Peggy +Rene +Olivia +Rosemary +Vickie +Wendi +Marcella +Lora +Meredith +Audra +Keri +Elisa +Joan +Josephine +Jane +Ginger +Lynda +Nichole +Misty +Leanne +Candice +Grace +Janelle +Angelique +Isabel +Kendra +Celeste +Marina +Pauline +Rachael +Aimee +Dionne +Kara +Molly +Gail +Jana +Jo +Kimberlee +Maricela +Gretchen +Luz +Natasha +Deanne +Doreen +Laurel +Lillian +Darla +Jeannie +Angie +Delia +Jeanine +Alexandra +Latanya +Olga +Sherrie +Susana +Bertha +Dianne +Lauren +Shanna +Stefanie +Bobbie +Jodie +Marianne +Katie +Naomi +Tonia +Cathleen +Gwendolyn +Jennie +Leann +Camille +Corina +Edith +Elsa +Paulette +Tamra +Debora +Francine +Nora +Brandy +Ruby +Darcy +Dora +Gayle +Paige +Tania +Chandra +Christi +Jenifer +Lee +Wanda +Cara +Georgina +Jacquelyn +Leigh +Suzette +Jami +Lana +Latonya +Lesley +Janette +Jeannine +Lucy +Lupe +Marci +Marisa +Marlo +Vicky +Noelle +Bridgette +Ingrid +Cari +Deena +Emma +Jeri +Marcia +Tammi +Angel +Annmarie +Beatrice +Graciela +Mia +Johanna +Christa +Doris +Kris +Marnie +Lea +Lena +Nikki +Susanne +Deann +Louise +Susie +Tamera +Tisha +Beatriz +Celia +Courtney +Danette +Rosalinda +Tabatha +Consuelo +Joelle +Marcie +Marsha +Lorrie +Maribel +Miriam +Carolina +Lorie +Michael +Deirdre +Hope +Karyn +Nanette +Nichelle +Patrice +Billie +Constance +Julianne +Marjorie +Marta +Shelli +Tasha +Amelia +Chris +Corinne +Mindy +Hilary +Nadine +Rosalie +Rosemarie +Sondra +Anissa +Gabrielle +Genevieve +Lashawn +Marcy +Shellie +Stella +Tabitha +Brooke +Lourdes +Alisha +Bobbi +Liza +Maryann +Phyllis +Araceli +Hilda +Jolene +Juliana +Karrie +Lynne +Magdalena +Marisela +Elvia +Janeen +Lucia +Malinda +Margo +Rena +Antonia +Claire +Dayna +Ericka +Jan +Delores +Eleanor +June +Justine +Lilia +Lucinda +Margie +Patty +Denice +Elisabeth +Gena +Georgia +Geraldine +Janel +Terrie +Allyson +Athena +Aurora +Colette +Jocelyn +Juana +Juliet +Shannan +Sue +Susanna +Alejandra +Claudine +Latasha +Myrna +Noemi +Annie +Carole +Caryn +Edna +Elvira +Lauri +Marni +Carey +Elise +Francisca +Lynnette +Marissa +Rosario +Imelda +Josette +Katharine +Rebekah +Simone +Tawnya +Ursula +Annemarie +Bernice +Bethany +Buffy +Esperanza +Janie +Mara +Melisa +Valarie +Alyssa +Estela +Gia +Ida +Janell +Kerrie +Leeann +Mercedes +Richelle +Robert +Therese +Brigitte +David +Glenda +Jessie +Kathrine +Sofia +Adrianne +Dawna +Iris +Jaime +Josefina +Marian +Patti +Penelope +Rae +Rosanna +Tiffani +Alexis +Catalina +Coleen +Corinna +Faith +Griselda +Lidia +Marlena +Rocio +Sandi +Sharlene +Suzanna +Vera +Vikki +Alissa +Angelia +Anjanette +Cecelia +Charmaine +Chelsea +Clara +Daphne +Darci +Latrice +Liana +Monika +Noel +Sheree +Carin +Elva +Janna +Josie +Keisha +Lorna +Marion +Maritza +Meghan +Rosie +Shani +Shanon +Aileen +Annamarie +Casey +Hillary +John +Kenya +Maya +Anastasia +Ashley +Cindi +Daisy +Dominique +Florence +Karri +Kimberlie +Ladonna +Leanna +Leona +Michell +Ofelia +Roxanna +Shelby +Shelia +Whitney +Corrina +Danelle +Estella +Jerri +Juliette +Kami +Racquel +Tonja +Dara +Deidre +Gladys +James +Jeana +Karina +Lorinda +Maura +Renae +Shonda +Trudy +Aida +Amie +Carri +Christian +Cinnamon +Evette +Gabriella +Joni +Kate +Lily +Lorene +Nellie +Polly +Rosalind +Abigail +Cameron +Dee +Eve +Jolie +Kay +Kirstin +Larissa +Leilani +Lia +Lina +Mechelle +Myra +Nicolle +Pam +Tamatha +Bettina +Bridgett +Christopher +Cori +Geneva +Juli +Julianna +Kameron +Lanette +Lani +Latonia +Lila +Sherie +Socorro +Stacia +Alana +Candi +Danna +Della +Elissa +Erinn +Francesca +Gwen +Janis +Jeanie +Karie +Liz +Lucille +Madeline +Marcela +Mitzi +Pearl +Randi +Rona +Saundra +Shanda +Summer +Tori +Alexandria +Annabelle +Anthony +Antionette +Brian +Caprice +Hazel +Helena +Janene +Lois +Martina +Minerva +Reina +Thelma +Windy +Adela +Angelita +Britt +Chantel +Darcie +Davina +Georgette +Jason +Kathie +Latricia +Lesa +Lola +Marguerite +Mariana +Petra +Rebeca +Seana +Tia +Trena +Betsy +Brigette +Carie +Charla +Christal +Collette +Daniel +Deeann +Delilah +Dori +Elia +Holli +Inez +Lashon +Letitia +Liliana +Lolita +Lorri +Mandy +Marisol +Reyna +Selena +Tamela +Tyra +Venus +Viviana +Angeline +Autumn +Ava +Bianca +Cassie +Cherise +Daniela +Dione +Evangelina +Greta +Helene +Judi +Katy +Kellee +Kimberli +Leila +Lilly +Margret +Maxine +Melodie +Michaela +Mildred +Rory +Rosalba +Starla +Tamiko +Adrian +Angelic +Caitlin +Charisse +Chrystal +Corey +Corrine +Cristine +Deidra +Demetria +Dona +Edie +Ernestina +Faye +Frankie +Gillian +Ilene +Isela +Kathi +Kecia +Kelle +Lavonne +Leonor +Lesli +Michel +Mirna +Richard +Rosalia +Serina +Shonna +Tatia +Valencia +Valorie +Ada +Carlene +Cathryn +Daniele +Daniella +Dixie +Eric +Ernestine +Evonne +Hannah +Kandi +Kira +Kyra +Latisha +Lenore +Linette +Machelle +Mark +Mindi +Morgan +Nannette +Nicki +Nicola +Noreen +Pilar +Roxana +Sean +Tanja +Adriane +Adrianna +Andra +Antonette +Brenna +Chantal +Charity +Corrie +Cyndi +Danita +Eden +Emilia +Eugenia +Hollie +Ivy +Jayne +Jeanna +Joey +Johnna +Julissa +Kassandra +Kevin +Kori +Laureen +Lenora +Lucila +Margot +May +Mellisa +Miranda +Missy +Rosamaria +Rosanne +Roslyn +Shawnna +Stefani +Stephenie +Steven +Susannah +Suzie +Suzy +William +Alesia +Carmela +Chanda +Charleen +Christen +Christin +Clarissa +Deedee +Dorene +Fiona +Francis +Jenna +Jonna +Kisha +Loriann +Louisa +Maggie +Nicol +Raylene +Rina +Shandra +Sunny +Suzann +Tamie +Tawny +Verna +Adele +Annamaria +Armida +Cami +Carissa +Cary +Catrina +Chantelle +Crista +Cristin +Darleen +Dinah +Dorinda +Elaina +Ella +Esmeralda +Felecia +Geri +Glenna +Guillermina +Hortencia +Jacquline +Jasmine +Jayme +Jena +Jeni +Kathlene +Lawanda +Lela +Magda +Malissa +Melina +Raina +Rhoda +Robbie +Rosalina +Sasha +Selene +Sharron +Sophie +Stephaine +Sybil +Sydney +Terra +Tiffanie +Tommie +Tosha +Trinidad +Vilma +Violet +Violeta +Alecia +Amalia +Ami +Andre +Bonita +Brandie +Caren +Cathrine +Charles +Christene +Christiana +Cristi +Cristie +Dani +Debi +Devon +Diann +Elke +Gayla +Jammie +Janae +Janean +Jennette +Joely +Juliann +Kesha +Krystal +Latrina +Leisa +Liane +Loreen +Loren +Mari +Marianna +Marti +Meagan +Nanci +Patsy +Portia +Robbin +Ronna +Rosalyn +Rosana +Roxann +Sarina +Shaun +Shona +Soledad +Tabetha +Terese +Teresita +Tracee +Trinette +Alyson +Belen +Berta +Carina +Carleen +Celina +Christianne +Cora +Dannette +Debbra +Debby +Diedre +Elisha +Erlinda +Erma +Flora +Gerri +Gigi +Gilda +Honey +Inga +Jenelle +Johnnie +Jolynn +Joseph +Kasey +Keli +Laronda +Lashanda +Laticia +Leeanne +Letty +Lissa +Lona +Lupita +Malia +Mayra +Natalia +Nita +Patrica +Paul +Pia +Rachele +Richele +Roni +Siobhan +Sirena +Tambra +Tammara +Thea +Thomas +Tonette +Tresa +Alberta +Alyce +Arcelia +Aurelia +Carmel +Carmelita +Chantell +Christiane +Claudette +Concepcion +Cristy +Denna +Dionna +Elana +Elyse +Fawn +Gale +Henrietta +Herlinda +Jannette +Jeanene +Jerry +Jina +Joanie +Jodee +Jonelle +Julee +Julieta +Karena +Katheryn +Kendall +Kenna +Kenneth +Kiersten +Kimber +Krishna +Kristal +Lashonda +Leesa +Leonora +Lindsey +Lizette +Lorelei +Lucretia +Maile +Mariann +Marilee +Mercy +Mimi +Mireya +Misti +Nadia +Nickie +Paulina +Racheal +Rachell +Renita +Romy +Rosita +Sarita +Shanta +Shantell +Shaunna +Sherice +Sherilyn +Starr +Steffanie +Tana +Tera +Terina +Terresa +Tessa +Twila +Valeria +Venessa +Vonda +Wendie +Wilma +Adelina +Adina +Adria +Alanna +Alina +Althea +Amparo +Anabel +Anya +Aretha +Ariel +Arleen +Bambi +Benita +Buffie +Camilla +Cammie +Casandra +Cherri +Cherrie +Cory +Danae +Darcey +Demetra +Dolly +Donielle +Dorothea +Earlene +Eloisa +Eunice +Flor +Gary +Gay +George +Gracie +Ina +Ivette +Jacquelin +Jade +Janina +Jenni +Jenniffer +Joe +Jose +Karleen +Karol +Katrice +Larhonda +Leandra +Leslee +Libby +Lizabeth +Luanne +Luisa +Lyn +Marva +Marya +Maryanne +Matthew +Mellissa +Merry +Millie +Nichol +Niki +Nikole +Perla +Raymond +Renay +Renea +Ronnie +Roseanne +Rosetta +Roxane +Ruthie +Selina +Shantel +Shara +Shawnda +Shiela +Stacee +Tamika +Taunya +Timothy +Treva +Trish +Trista +Trudi +Velia +Xochitl +Yolonda +Zena +Adelita +Adena +Alethea +Alisia +Alondra +Alta +Alysia +Aracely +Bernadine +Briana +Camie +Candie +Candis +Carmella +Catharine +Charline +Cherice +Cherish +Clare +Cristal +Cyndee +Dalia +Dannielle +Dawne +Deeanna +Deedra +Detra +Devin +Edward +Edwina +Eliza +Elma +Elsie +Freda +Gidget +Hallie +Harriet +Jacki +Jada +Jamey +Jaqueline +Jeffrey +Jene +Jenine +Jerilyn +Joleen +Jon +Joycelyn +Kandace +Kandy +Karon +Khristine +Kimberely +Kindra +Koren +Kyla +Lachelle +Lannette +Larisa +Larry +Lashaun +Laverne +Lilian +Lisette +Lonnie +Loraine +Loree +Lorry +Mae +Mamie +Marcelle +Melynda +Micaela +Mignon +Mila +Paola +Rayna +Regena +Rolanda +Ronald +Ronette +Rosalva +Rosaura +Roseann +Ruthann +Shela +Sloane +Stephani +Suzan +Tanisha +Tiffiny +Tobi +Valentina +Zoe +Abby +Adelia +Agnes +Aide +Alaina +Alba +Aleta +Allegra +Alycia +Andria +Annalisa +Arlena +Ayesha +Barbie +Bonny +Cammy +Celine +Charlena +Cheree +Cherry +Chrissy +Cinthia +Claudina +Coreen +Danell +Danise +Danyelle +Darby +Denell +Denette +Dennise +Denyse +Deserie +Donnell +Dyan +Elicia +Elisia +Eydie +Fabiola +Faviola +Felice +Gaye +Genoveva +Ginny +Giselle +Gricelda +Hayley +Janee +Jenise +Jewel +Justina +Kamala +Kasandra +Kayla +Keely +Kristan +Kyle +Lamonica +Lanita +Lashan +Latrisha +Launa +Laurinda +Lawana +Leana +Leta +Letisia +Letticia +Lianne +Licia +Lizbeth +Luana +Maia +Maisha +Malisa +Manuela +Maren +Maricella +Mario +Marivel +Marleen +Martine +Mechele +Melodee +Michaelle +Milissa +Mirella +Nelly +Neva +Nichele +Pamala +Pennie +Quincy +Raeann +Rani +Rashell +Rayleen +Rhea +Rochell +Ronica +Ronnette +Sabina +Salina +Scott +Selma +Senta +Shanin +Shante +Sharla +Sharyn +Shay +Sherise +Steffani +Stephany +Sunday +Synthia +Temre +Teressa +Timi +Toby +Tressa +Velma +Velvet +Wendee +Yevette +Aaron +Adeline +Adriene +Alexa +Anamaria +Angelena +Arlette +Barbra +Bari +Bobette +Brandee +Britta +Brittany +Bronwyn +Brook +Cam +Carlotta +Carolee +Chanel +Chante +Charise +Charissa +Charmain +Chloe +Clarice +Corine +Daina +Danya +Daria +Davida +Dawnielle +Delfina +Delinda +Deneen +Denese +Diahann +Donald +Donelle +Donita +Donya +Dorina +Dyana +Eliana +Elida +Ena +Ester +Evangeline +Evon +Fatima +Felisha +Gaylene +Gianna +Glynda +Heide +Ilana +Ileana +Jacque +Jaimie +Jamee +Jannie +Jaymie +Jeniffer +Jennine +Jesse +Jesus +Joell +Josephina +Julene +Karl +Karlene +Katherina +Kati +Kaylene +Kia +Kimbra +Korin +Kory +Kristian +Kymberly +Lacey +Lakisha +Lanie +Laquita +Lashawnda +Lashun +Laurette +Lavette +Letha +Lisamarie +Lise +Luann +Lynelle +Madeleine +Manuel +Margery +Marna +Marty +Mattie +Melvina +Mickey +Mickie +Mikel +Moya +Muriel +Necole +Nerissa +Noelia +Oralia +Ricki +Rikki +Rima +Romelia +Ronni +Rori +Roseanna +Rosio +Sabra +Sandie +Sanjuanita +Santa +Scarlett +Shalonda +Shannah +Sharyl +Shaunda +Shayna +Sheli +Sheridan +Sherrill +Shondra +Simona +Sonjia +Stormy +Susy +Tamala +Tammera +Tausha +Tisa +Toi +Tuesday +Valery +Yadira +Yumi +Zabrina +Zandra +Zoraida +Zulma +Alaine +Alene +Alesha +Alfreda +Alise +Alvina +America +Anastacia +Andree +Angella +Anitra +Anjelica +Ariana +Arianne +Arline +Asia +Audrea +Barrie +Becki +Beckie +Bernardette +Bessie +Billy +Brett +Brianna +Brynn +Camela +Casie +Chanin +Charlette +Charmane +Chere +Cheryle +China +Cinamon +Cindie +Corie +Cruz +Dale +Dalila +Daneen +Dania +Daniell +Danny +Deane +Debborah +Deeanne +Delisa +Deshawn +Dia +Diedra +Donella +Donyale +Ethel +Farah +Felipa +Felisa +Fonda +Francina +Genia +Germaine +Gisele +Gregory +Gwenn +Hedy +Hermelinda +Ilda +Iliana +Ilona +Inger +Jaclyn +Janiece +Jeanelle +Jewell +Jodine +Joel +Joellen +Joette +Johnette +Joi +Joli +Jonette +Juan +Juliane +Julieann +Kandice +Karey +Kariann +Kimiko +Krissy +Kristyn +Lalena +Lanae +Lashanna +Lashune +Latina +Lavonda +Lawanna +Leane +Leeanna +Leighanne +Leora +Liesl +Lita +Lorianne +Lorien +Lurdes +Mandi +Marcelina +Mariza +Marlana +Maryellen +Marylou +Matilde +Melonie +Mendy +Merritt +Micheal +Minnie +Mischelle +Misha +Monalisa +Natascha +Nena +Nicolette +Nona +Ora +Page +Pandora +Paris +Patrisia +Phaedra +Piper +Prudence +Raelene +Randa +Ranee +Rebbecca +Renata +Renne +Rhondalyn +Robbi +Robynn +Rosaline +Sabine +Samira +Sandee +Sarena +Sari +Sharee +Sharice +Shawnee +Shea +Sheena +Sherina +Sheron +Sherryl +Shoshana +Spring +Star +Sulema +Suzi +Tari +Tatiana +Tawana +Tawni +Tawnie +Teena +Tena +Thomasina +Tiana +Tiara +Tinamarie +Todd +Tonie +Toshia +Tyler +Valinda +Willette +Windie +Xochilt +Yesenia +Zoila +Zulema +Afton +Aisha +Aissa +Albert +Albertina +Alena +Aliza +Alonda +Alysa +Ananda +Annabel +Anneliese +Araseli +Arianna +Arminda +Aura +Bess +Bethanie +Beverley +Bradley +Brigid +Camila +Carl +Carly +Carmina +Cassondra +Cecile +Celene +Celestine +Charolette +Cherese +Cherisse +Cinda +Cleo +Coral +Crissy +Cristen +Dalene +Dann +Dannelle +Danyel +Darrell +Daryl +Daryn +Dawnell +Dea +Debbi +Debrah +Dede +Dedra +Deitra +Delma +Denae +Deon +Deva +Dian +Dion +Dollie +Donnetta +Donnette +Dorie +Dyanna +Earline +Ebony +Elan +Elba +Freida +Gala +Gerald +Haley +Herminia +Ila +India +Inge +Isabella +Isabelle +Ivonne +Jackeline +Jacquelynn +Jacqulyn +Janetta +Jannelle +Jaylene +Jeaneen +Jeanett +Jenai +Jenee +Jenell +Jenice +Jennefer +Jerrie +Joana +Johna +Jonnie +Jovita +Jozette +Kacey +Kamela +Kamron +Karine +Karissa +Kathlyn +Kathrin +Kaye +Kelsey +Kemberly +Kimi +Kirstie +Kitty +Kristiann +Krysta +Lalanya +Lashelle +Lashone +Latania +Latrece +Lauralee +Lavina +Leasa +Leda +Leena +Leigha +Leighann +Lelia +Lenette +Leyla +Ligia +Lili +Lilliana +Lindsay +Linnea +Lisha +London +Lorenza +Lorilyn +Lorriane +Lory +Lou +Louann +Lucie +Lucrecia +Maira +Margarett +Maribell +Marita +Marlyn +Marne +Marney +Marsi +Martin +Marybeth +Meadow +Melany +Merilee +Merri +Mesha +Michaele +Moira +Monic +Nancie +Nathalie +Nichola +Nila +Nohemi +Nydia +Opal +Ophelia +Patrick +Pattie +Peter +Petrina +Phoebe +Raguel +Rain +Ramie +Randy +Rechelle +Reva +Roberto +Robyne +Roma +Romana +Rosann +Roselyn +Ruben +Rudy +Ryan +Sabrena +Sadie +Samone +Seanna +Shalia +Shalon +Shanan +Sharie +Sharilyn +Sharlyn +Sharonda +Sharrie +Shaylene +Sheilla +Sherelle +Sherrell +Shira +Shirelle +Sindy +Skye +Steffany +Stephine +Subrina +Sunnie +Suzannah +Sylvie +Tammey +Tani +Tarra +Taryn +Taura +Terrell +Tesha +Tess +Thalia +Theresia +Tomi +Tonnette +Tracia +Trese +Tresha +Trini +Tunisia +Valeri +Verena +Vida +Viki +Viola +Winona +Youlanda +Yumiko +Jennifer +Michelle +Lisa +Kimberly +Julie +Maria +Laura +Shannon +Christine +Heather +Elizabeth +Stephanie +Cynthia +Angela +Christina +Melissa +Tracy +Amy +Patricia +Mary +Karen +Tina +Sandra +Nicole +Dawn +Kelly +Susan +Wendy +Denise +Tammy +Michele +Rebecca +Lori +Gina +Monica +Deborah +Teresa +Andrea +Stacy +Rachel +Linda +Kathleen +Nancy +Diana +Pamela +Tamara +Renee +Catherine +Stacey +Brenda +Deanna +Donna +Katherine +Erin +Theresa +Carrie +Dana +Kristin +Veronica +Tiffany +Anna +Victoria +Barbara +April +Jessica +Cheryl +Debra +Heidi +Alicia +Tanya +Diane +Robin +Kristina +Sharon +Jill +Cindy +Sarah +Leslie +Suzanne +Danielle +Ann +Rhonda +Regina +Kristen +Yvonne +Jacqueline +Yolanda +Paula +Holly +Kristine +Sabrina +Jamie +Melanie +Valerie +Tonya +Monique +Margaret +Yvette +Carol +Sheila +Sherry +Carolyn +Kathryn +Leticia +Kim +Tara +Martha +Traci +Julia +Shelly +Laurie +Melinda +Janet +Raquel +Sylvia +Crystal +Gloria +Claudia +Anne +Erica +Annette +Sonia +Rosa +Krista +Carla +Erika +Tracey +Sara +Christy +Shawna +Norma +Vanessa +Natalie +Kelli +Tricia +Kathy +Kristi +Virginia +Terri +Shelley +Jodi +Colleen +Amber +Sheri +Ana +Debbie +Amanda +Carmen +Dina +Samantha +Marie +Darlene +Connie +Kimberley +Bonnie +Cassandra +Felicia +Kellie +Tami +Katrina +Sherri +Anita +Dena +Allison +Lorena +Jeanette +Toni +Rose +Irene +Lorraine +Kari +Trina +Angelica +Guadalupe +Joanne +Cathy +Shawn +Ruth +Alison +Charlene +Emily +Lynn +Tracie +Alice +Jody +Lara +Leah +Elaine +Rochelle +Stacie +Joanna +Lydia +Adriana +Helen +Roberta +Eva +Sonya +Bridget +Jenny +Cheri +Kerry +Rachelle +Tammie +Deana +Aimee +Cecilia +Juanita +Vicki +Kirsten +Janice +Beth +Judy +Karla +Charlotte +Desiree +Becky +Caroline +Lynette +Margarita +Dolores +Kristy +Joann +Joyce +Frances +Candice +Esther +Irma +Robyn +Sheryl +Angelique +Judith +Sandy +Brandi +Elisa +Jean +Rita +Teri +Arlene +Christa +Megan +Kelley +Adrienne +Maureen +Shana +Shirley +Cherie +Alma +Nina +Joy +Ramona +Roxanne +Shari +Sonja +Isabel +Kristie +Sally +Grace +Evelyn +Jeannette +Eileen +Kerri +Marlene +Dianna +Shauna +Loretta +Janine +Karin +Maribel +Trisha +Beverly +Staci +Audrey +Belinda +Alisa +Antoinette +Penny +Silvia +Sophia +Jeanne +Nichole +Bernadette +Christie +Elena +Angelina +Dorothy +Brandy +Brooke +Candace +Cristina +Ginger +Misty +Ronda +Vivian +Betty +Serena +Mona +Peggy +Blanca +Jana +Kimberlee +Angie +Camille +Ellen +Marla +Molly +Priscilla +Stefanie +Gabriela +Wendi +Jane +Kara +Rosemary +Celeste +Deena +Lillian +Keri +Bobbie +Rachael +Gretchen +Melody +Natasha +Rene +Jeanine +Olivia +Tasha +Elsa +Jeannie +Kendra +Meredith +Nora +Lora +Marisol +Marilyn +Chandra +Deanne +Gail +Marina +Tamra +Jackie +Jennie +Susana +Dianne +Pauline +Bertha +Gwendolyn +Joan +Jodie +Luz +Marlo +Francine +Marcia +Ruby +Angel +Darla +Leigh +Shanna +Terry +Laurel +Marisa +Marcella +Naomi +Candy +Delia +Georgina +Paulette +Dionne +Marianne +Amelia +Janelle +Celia +Jacquelyn +Alexandra +Audra +Vickie +Courtney +Cari +Dora +Jo +Leanne +Jenifer +Liza +Lynda +Jami +Lana +Maricela +Tania +Christi +Ingrid +Latanya +Lauren +Nadine +Tonia +Cara +Hilda +Josephine +Tammi +Araceli +Ericka +Paige +Sherrie +Cathleen +Corina +Gabrielle +Juliet +Marta +Nikki +Olga +Lea +Lucy +Darcy +Johanna +Suzette +Billie +Marci +Mia +Tabitha +Elisabeth +Katie +Lashawn +Wanda +Edith +Hope +Marisela +Joelle +Lilia +Carolina +Graciela +Lupe +Patrice +Ashley +Lourdes +Maryann +Julianne +Latonya +Alisha +Aurora +Constance +Genevieve +Jeannine +Marsha +Miriam +Hilary +Marjorie +Stella +Susanne +Beatrice +Beatriz +Corinne +Doreen +Lesley +Lucia +Rena +Bridgette +Janette +Justine +Lorie +Louise +Caryn +Danette +Emma +Josefina +Lena +Marnie +Cecelia +Nanette +Annmarie +Doris +Karyn +Lee +Lynne +Marcy +Noelle +Chris +Vicky +Anissa +Elvira +Gena +Jocelyn +Katharine +Lorrie +Marcie +Tamera +Ursula +Deirdre +Juana +Magdalena +Mindy +Robert +Rosemarie +Rosie +Antonia +Athena +Latasha +Mercedes +Rosalinda +Charmaine +Jaime +Lynnette +Rocio +Anjanette +Annie +Deann +Debora +Geraldine +Leann +Shannan +Claudine +Faith +Glenda +Jolene +Karrie +Lucinda +Rosalie +Susie +Liliana +Maya +Rosario +Shelli +Alexis +Chelsea +Corinna +Dawna +Dayna +Janel +Keisha +Kenya +Shellie +Consuelo +David +Gabriella +Hillary +Imelda +June +Margo +Marni +Shanon +Alyssa +Bethany +Carole +Colette +Esperanza +James +Marian +Alissa +Bobbi +Deidre +Eleanor +Janell +Karina +Michael +Sondra +Tawnya +Tisha +Carey +Esmeralda +Gayle +Juliana +Kris +Lani +Latrice +Mara +Meghan +Melisa +Phyllis +Alejandra +Buffy +Estela +Evangelina +Kerrie +Ladonna +Leanna +Margie +Myrna +Sue +Jeri +Jessie +Lidia +Lorna +Marissa +Myra +Richelle +Sandi +Shani +Susanna +Tia +Abigail +Denice +Elvia +Georgia +Janeen +Krystal +Leona +Patty +Simone +Tiffani +Alana +Amie +Claire +Delores +Josette +Lauri +Malinda +Sharlene +Sheree +Tanisha +Allyson +Autumn +Cassie +Cindi +Daisy +Danelle +Daphne +Edna +Estella +Eugenia +Iris +Jeanna +Joey +Richard +Stacia +Terrie +Candi +Catalina +Elva +Karie +Nichelle +Rebeca +Shelia +Sofia +Tabatha +Therese +Valarie +Angelita +Bernice +Bridgett +Clara +Cori +Dee +Elise +Francisca +Inez +Janie +Leeann +Noel +Penelope +Rebekah +Rosalind +Saundra +Aileen +Alyson +Bianca +Corrine +Dominique +Gladys +Griselda +Janis +Jeanie +John +Juli +Kasey +Lois +Mechelle +Miranda +Rosanna +Trista +Evette +Florence +Ida +Marion +Rae +Randi +Shelby +Socorro +Tonja +Adela +Adrianne +Casey +Catrina +Christian +Darci +Davina +Jan +Jason +Jolie +Larissa +Reina +Shonda +Summer +Vera +Zoe +Aida +Charity +Crista +Eve +Gia +Janna +Julianna +Juliette +Maxine +Monika +Pilar +Shawnna +Terra +Alexandria +Anastasia +Anthony +Cory +Jerri +Joni +Latisha +Leila +Mandy +Maritza +Renae +Rosalva +Tori +Whitney +Windy +Chrystal +Clarissa +Collette +Deidra +Kathrine +Mari +Raina +Roxanna +Stefani +Amalia +Antionette +Brandie +Brigitte +Cary +Karri +Lanette +Luisa +Minerva +Nicolle +Ofelia +Patsy +Reyna +Selina +Thelma +Annemarie +Chanda +Charla +Charleen +Christen +Coleen +Delilah +Fabiola +Helena +Johnna +Josie +Julissa +Kate +Katy +Leilani +Lina +Lola +Lucille +Madeline +Misti +Racquel +Sarina +Tamatha +Tanja +Tyra +Adrianna +Angelia +Carie +Carin +Carri +Cherise +Darcie +Della +Dyan +Elissa +Emilia +Francesca +Hazel +Kay +Kimberli +Kirstin +Letitia +Marcela +Mariana +Martina +Michell +Noemi +Patti +Roxann +Shanda +Adriane +Alina +Angeline +Brigette +Cathryn +Charisse +Christopher +Cristy +Dara +Eliza +Geneva +Georgette +Kassandra +Lainie +Lashonda +Latonia +Pearl +Petra +Polly +Tera +Trudy +Ada +Adrian +Andria +Bettina +Cora +Danna +Deedee +Dori +Elsie +Fawn +Greta +Isela +Janene +Jeana +Judi +Latricia +Lila +Selena +Steven +Tessa +Tisa +Vikki +Ami +Annamarie +Aracely +Corrina +Cyndi +Eden +Elaina +Eric +Geri +Hannah +Hollie +Jeffrey +Jenna +Juliann +Kandi +Karna +Kesha +Kisha +Kristal +Lawanda +Malissa +Rosalia +Serina +Spring +Starla +Stephani +Tiffanie +Alecia +Cameron +Carlene +Celina +Claudette +Concepcion +Ella +Felecia +Guillermina +Jose +Kevin +Lashon +Lavonne +Lia +Lily +Nellie +Sasha +Shiela +Shonna +Angelic +Antonette +Barbra +Caren +Cinnamon +Corrie +Deeann +Dona +Erinn +Evangeline +Flora +Jayme +Jenni +Julee +Kami +Kimberlie +Lolita +Lorene +Mildred +Mindi +Mireya +Nannette +Nicki +Noreen +Paul +Rosanne +Roxana +Sharron +Shona +Sunny +Tamar +Treena +Benita +Brian +Caitlin +Carissa +Casandra +Cathrine +Chantel +Christal +Cristi +Dalia +Dannielle +Daria +Elia +Ernestina +Fatima +Gillian +Gwen +Iliana +Kathi +Kellee +Kimber +Kira +Lanita +Larisa +Latrina +Loraine +Lorri +Louisa +Maisha +Maura +Mimi +Nanci +Natalia +Roslyn +Teresita +Thea +Timothy +Trena +Trudi +Viola +Viviana +Vonda +Aaron +Adele +Ariel +Arleen +Armida +Ava +Britt +Candida +Carina +Carmel +Corey +Francis +Gilda +Hallie +Henrietta +Jena +Jesus +Johnnie +Kathie +Kayla +Keli +Liana +Liz +Loriann +Magda +Maia +Mark +Marlena +Mellissa +Nichol +Nikole +Pam +Robbin +Ronna +Shawnee +Shea +Sherie +Tosha +Tracee +Tressa +Velma +Venus +Verna +Wendie +William +Xochitl +Amparo +Annalisa +Arcelia +Berta +Bobby +Brandee +Carmela +Carolynn +Chimene +Corie +Demetria +Devon +Flor +Frankie +Holli +Ivy +Jeni +Jenine +Joleen +Jonna +Kandy +Kecia +Kenna +Kindra +Kristan +Lakeisha +Latoya +Lela +Lesa +Lisette +Mariaelena +Marivel +Michaela +Mitzi +Pamala +Patrica +Renita +Rhea +Robbie +Rona +Roxane +Scott +Shaunna +Susannah +Suzanna +Tamela +Tamiko +Tana +Tawny +Terese +Thomas +Twila +Twyla +Valencia +Valorie +Zulema +Alexa +Alisia +Andra +Belen +Bernadine +Cristal +Daniela +Danita +Delana +Diann +Dionna +Donielle +Enedina +Erlinda +Ernestine +Faye +Fiona +Hortencia +Inga +Inger +Jenelle +Jeniffer +Jennette +Jenniffer +Kameron +Karena +Kendall +Kiersten +Kyla +Lenora +Lissa +Lonnie +Maggie +Marguerite +Marianna +Mayra +Mirna +Missy +Nicol +Racheal +Rayna +Roseann +Roseanna +Rosio +Rowena +Shanti +Shay +Shondra +Steffanie +Toby +Treva +Trinidad +Adelina +Adina +Alanna +Alberta +Alejandrina +Alysia +Anabel +Annabelle +Betsy +Bonita +Buffie +Carisa +Celena +Chantal +Chantelle +Cherri +Dale +Dixie +Elida +Elisha +Eloisa +Felisa +Ileana +Ilene +Ivette +Janee +Jerry +Jina +Jona +Julieta +Koren +Krishna +Kyle +Kyra +Larhonda +Lashan +Lenore +Lindsey +Lupita +Maile +Marna +Marti +Marva +Muriel +Perla +Phoebe +Piper +Rachele +Rana +Ronnette +Rosalba +Rosalyn +Roseanne +Sean +Seana +Sebrina +Shaun +Shawnda +Star +Suzie +Suzy +Tamie +Tuesday +Valentina +Wende +Alycia +Annamaria +Ariana +Bessie +Camilla +Caprice +Catharine +Chanin +Cheryle +Christin +Clare +Cristine +Dahlia +Danica +Daniella +Dolly +Dyana +Elicia +Eunice +Frank +Gaylene +Gidget +Gracie +Gricelda +Ivonne +Jacki +Jaqueline +Jerilyn +Jewel +Jodee +Justina +Kori +Leeanne +Letisia +Lili +Lilly +Loren +Lucretia +Machelle +Marilee +Marylou +Melina +Melonie +Mercy +Merry +Nadia +Nathalie +Nelly +Nicola +Ronette +Ronnie +Sabina +Shalonda +Sharyn +Shayna +Shiloh +Stephany +Stephen +Stephenie +Sunday +Yesenia +Yolonda +Abby +Alane +Alesha +Alethea +Alvina +America +Ananda +Angella +Aretha +Brenna +Carlotta +Caron +Charles +Christianne +Cruz +Dalila +Dani +Darleen +Darnell +Deeanna +Deedra +Delisa +Dione +Donya +Dusty +Elba +Erma +Felice +Gayla +Gigi +Giselle +Jaimie +Jeanene +Jennefer +Joe +Josephina +Julieann +Karey +Karlene +Karma +Karolyn +Kristyn +Lacey +Laticia +Laureen +Laverne +Leonor +Leslee +Liane +Lianne +Lilian +Lizabeth +Loni +Lorinda +Lory +Mabel +Marcelina +Margot +Mariah +Mellisa +Merri +Mikki +Milissa +Misha +Morgan +Necole +Raelene +Raylene +Rosita +Sabrena +Sacha +Selene +Shane +Shannen +Sharie +Sharla +Shaunda +Sheena +Sherice +Sloane +Suzann +Sydney +Tameka +Tari +Tashia +Tatia +Tatiana +Tiffiny +Trinette +Valeria +Violeta +Willie +Alena +Aliza +Analisa +Andre +Asia +Astrid +Briana +Bronwyn +Brook +Bryan +Cami +Cammie +Candee +Chantell +Charissa +Chastity +Cheree +Cherish +Christel +Christene +Cinthia +Cristin +Daniel +Daniele +Debby +Dedra +Destiny +Detra +Devona +Donelle +Dorene +Dorinda +Dyanna +Edie +Edward +Elda +Eloise +Enid +Ester +Eugena +Evonne +Gerri +Ina +Isabelle +Jacquline +Jade +Jenette +Johna +Josefa +Kamala +Karol +Kathlene +Kelle +Kenneth +Kia +Kiesha +Kimberely +Lashanda +Lashun +Lavette +Libby +Lillie +Lindsay +Loree +Lorelei +Luana +Lynelle +Malisa +Marne +Marty +Melany +Melba +Melynda +Mica +Micaela +Michel +Niki +Ninette +Oralia +Paris +Paulina +Rachell +Rani +Raymond +Rosana +Sandie +Shanin +Shante +Shaundra +Shena +Sophie +Stacee +Stephaine +Stormy +Susy +Tabetha +Tambra +Tena +Tess +Tobi +Tonette +Tristan +Troy +Venessa +Winifred +Zina +Agnes +Aide +Aleta +Aletha +Anamaria +Annabel +Annika +Aura +Ayesha +Bonny +Callie +Candelaria +Candie +Carleen +Carmella +Chanel +Charmane +Cher +Christiane +Clarice +Coreen +Dallas +Damaris +Danae +Danny +Danyelle +Dawnette +Debbra +Debi +Delaine +Deonna +Deserie +Dinah +Dorina +Dusti +Effie +Elke +Elodia +Emilie +Erina +Ethel +Florinda +Hayley +Helene +Herlinda +Herminia +India +Iva +Jammie +Janae +Janean +Jenell +Jenise +Jennine +Jillian +Joel +Joell +Joseph +Kama +Kandace +Kary +Kasandra +Kimberlyn +Kymberly +Lakisha +Larry +Lashaun +Latina +Leane +Leisa +Letha +Lindy +Linette +Lizbeth +Luann +Madonna +Maren +Maricruz +Martie +Martine +Maryanne +Melani +Melodie +Melony +Michaele +Mika +Miki +Mollie +Monalisa +Nicholle +Nicolette +Nova +Octavia +Page +Patience +Petrina +Phaedra +Portia +Renata +Romelia +Roni +Shalene +Shantell +Sharleen +Sharonda +Shellee +Soledad +Tammara +Tanna +Tawnia +Tesha +Tiffini +Toya +Tresa +Veda +Velvet +Zandra +Zulma +Adeline +Adria +Alex +Alonda +Alyce +Alysa +Amee +Andreana +Arlinda +Augustina +Aundrea +Aurelia +Bambi +Barbie +Becki +Brigid +Candance +Carlyn +Carmelita +Carolann +Casie +Cecily +Celine +Chana +Charise +Charline +Chere +Chrissy +Christinia +Coretta +Crissy +Danell +Dannette +Darby +Darcey +Debrah +Delicia +Denell +Denna +Dia +Dion +Dominica +Donald +Dorie +Dorothea +Elana +Elisia +Elizebeth +Emelda +Eryn +Evelia +Evie +Gabriel +Gema +Genoveva +Germaine +Gianna +Glenna +Gwyn +Hana +Harriet +Haydee +Hector +Heide +Ilana +Ilona +Irasema +Jesse +Jewell +Jimmy +Joana +Joanie +Jolee +Jolynn +Joycelyn +Juliane +Kacey +Katheryn +Kelleen +Kimi +Kirstie +Kitty +Korey +Krissy +Lachelle +Lalena +Laree +Lavon +Lawana +Leesa +Lesli +Ligia +Lissette +Lizette +Lona +Loreen +Lorien +Lucila +Madeleine +Madelyn +Makeba +Malaika +Malia +Manuela +Margret +Mariann +Marleen +Marya +Mattie +May +Meagan +Mechele +Meridith +Michaelle +Micheline +Mickie +Millicent +Mirella +Mishelle +Moira +Myriam +Nelda +Nell +Nena +Nickie +Nyla +Pia +Rikki +Rochell +Romona +Rosalina +Rosaura +Rubi +Ruthie +Sabine +Sadie +Santa +Shanan +Shandra +Shantel +Shara +Sharee +Sharilyn +Shaunte +Shereen +Sherrell +Shilo +Sirena +Soraya +Stefania +Stephannie +Taura +Teressa +Tessie +Trinity +Veronika +Viki +Violet +Yuri +Zena +Adelle +Ali +Alta +Althea +Anabelle +Angelena +Anjeanette +Apryl +Aracelia +Araseli +Babette +Bradley +Brandon +Cammy +Carl +Carletta +Cassaundra +Cassondra +Celestine +Celinda +Cherry +Christelle +Christiana +Cinda +Conchita +Coral +Cornelia +Cristen +Danya +Darnisha +Daun +Dawne +Deandra +Debbi +Delma +Deloris +Denelle +Denese +Denisha +Derinda +Desirae +Devin +Dodie +Donella +Dorena +Dottie +Eilene +Emmy +Eula +Farah +Felisha +Francie +Franki +Genia +Gennifer +Glenn +Goldie +Gregory +Gwyneth +Hether +Hiedi +Isha +Isis +Jamee +Jannette +Jasmine +Jayne +Joellen +Joi +Jolyn +Jori +Jovita +Julienne +Julisa +Karianne +Karry +Katerina +Kathyrn +Keely +Keesha +Kimberle +Kimiko +Kym +Lanee +Lanie +Laronda +Lashane +Lashawna +Lashawnda +Latashia +Latosha +Latrece +Launa +Lauretta +Lavonda +Leandra +Leighann +Leonora +Lesia +Lesly +Leta +Lisha +Lorenza +Lorianne +Lorretta +Lurdes +Lus +Mae +Mandi +Marcel +Maribell +Maricella +Marlina +Marybel +Marybeth +Meg +Melissia +Meri +Mignon +Mina +Miroslava +Natascha +Nita +Nona +Ophelia +Patrisia +Precious +Rafaela +Rain +Raul +Reba +Rechelle +Regan +Renea +Reva +Rima +Risa +Rosamaria +Roselle +Roshelle +Sabra +Samatha +Sarita +Savannah +Scarlett +Shae +Shalon +Shavonne +Shawne +Shaylene +Sherron +Sierra +Simona +Sommer +Starr +Subrina +Sunshine +Suzi +Tamika +Tauna +Taunya +Tausha +Tawna +Teena +Terresa +Thalia +Tiana +Tiara +Tifani +Timberly +Tinamarie +Tomika +Tory +Toshia +Tyna +Tysha +Veronique +Vida +Virjinia +Wenonah +Wilma +Adam +Adelaide +Adriene +Aisha +Alaina +Alesia +Allegra +Allena +Almadelia +Alondra +Alora +Amada +Ammie +Anamarie +Andrew +Anette +Anisa +Anjenette +Annelise +Antonio +Audry +Avis +Barbi +Brianna +Brittany +Bronwen +Camelia +Caralee +Carlota +Carmina +Caryl +Cassy +Cathie +Celestina +Chanelle +Channon +Charis +Charlesetta +Charmian +Cherrie +Cheyenne +China +Chiquita +Craig +Cristie +Daina +Dalene +Dania +Dann +Darlyn +Dava +Davida +Delena +Delina +Denine +Dennise +Deshawn +Desire +Diedra +Diedre +Dollie +Dominga +Donette +Donita +Donnetta +Douglas +Dove +Drina +Dulce +Earlene +Echo +Ellie +Emi +Ernest +Estrella +Eulalia +Evon +Felicity +Fern +Fonda +Fredericka +Gala +Gale +Gary +George +Georgiana +Georgianna +Gerald +Gertrude +Gita +Glynis +Henry +Hermelinda +Idalia +Isa +Jacklyn +Jaclyn +Jacqualyn +Jacquelene +Jacquie +Jacqulyn +Jada +Jahna +Janetta +Janey +Janiece +Janina +Jayna +Jillene +Joette +Johnny +Joie +Jonni +Julene +Kacy +Kareen +Karmen +Karon +Kasie +Kathaleen +Kathryne +Katina +Katrena +Katrine +Kaye +Kelsey +Kiana +Kierstin +Kimmie +Kina +Korina +Kristene +Lagina +Lajuana +Lamonica +Lanae +Lasandra +Lashone +Latunya +Laurice +Lavina +Leana +Lecia +Leighanne +Lelania +Lesha +Letty +Lezlie +Lilliana +Linnea +Lise +Lonna +Loralee +Lorrene +Lorriane +Lou +Louann +Love +Luanne +Ludivina +Lyn +Malika +Malina +Marchelle +Mardi +Marika +Marilou +Marilynn +Mariza +Marlys +Marney +Martin +Marysol +Melita +Melodee +Merideth +Meshell +Micheal +Michella +Mickey +Mija +Mike +Millie +Mirian +Mistie +Monet +Monigue +Natacha +Nelia +Nereida +Niccole +Nichele +Nickole +Nilda +Nissa +Nola +Odessa +Ola +Opal +Patrick +Peter +Pricilla +Rabecca +Raeann +Raeanne +Ramie +Ranae +Ranee +Rashell +Rayleen +Ricardo +Ricki +Riki +Rina +Robynn +Roger +Romy +Ronnell +Ronni +Rori +Rosaisela +Rosalynn +Roselyn +Roshawn +Rosina +Rossana +Rusty +Sage +Salina +Salome +Sandee +Sanjuana +Sanjuanita +Sativa +Shamra +Shan +Shaneen +Shanie +Shanyn +Sharice +Sharmaine +Shawndra +Shawnie +Shayne +Sherilyn +Sherrill +Shindana +Shiree +Shireen +Shirlee +Sidra +Signe +Siobhan +Stephine +Sueann +Sulema +Sybil +Synthia +Tammera +Tamy +Tanis +Tatanisha +Tawana +Taya +Terina +Terisa +Tiffiney +Tira +Todd +Toi +Trish +Tyla +Valeri +Vanetta +Velda +Velia +Victor +Viva +Wendee +Wilhelmina +Yadira +Yevette +Yumiko +Zaida +Zelda +Zoila +Jennifer +Michelle +Lisa +Kimberly +Maria +Julie +Heather +Shannon +Christina +Amy +Elizabeth +Angela +Laura +Christine +Stephanie +Cynthia +Melissa +Patricia +Sandra +Tina +Nicole +Mary +Rebecca +Karen +Tracy +Dawn +Monica +Denise +Andrea +Kelly +Susan +Tammy +Wendy +Gina +Teresa +Stacy +Deborah +Lori +Michele +Rachel +Carrie +Diana +Tiffany +Jessica +April +Dana +Veronica +Linda +Nancy +Kathleen +Tamara +Heidi +Erin +Anna +Renee +Stacey +Pamela +Danielle +Catherine +Brenda +Tanya +Alicia +Katherine +Kristin +Deanna +Donna +Sarah +Cindy +Debra +Tara +Theresa +Kristina +Victoria +Robin +Cheryl +Sharon +Melanie +Leslie +Barbara +Yolanda +Diane +Suzanne +Jill +Yvonne +Regina +Rhonda +Valerie +Crystal +Paula +Jacqueline +Sonia +Shelly +Kristen +Claudia +Martha +Monique +Erica +Kristine +Leticia +Jamie +Ann +Holly +Tonya +Melinda +Amber +Rosa +Yvette +Sara +Vanessa +Sherry +Sylvia +Laurie +Julia +Kathryn +Sheila +Erika +Amanda +Norma +Gloria +Margaret +Tricia +Carolyn +Allison +Ana +Kristi +Annette +Carol +Anne +Janet +Christy +Traci +Kim +Sabrina +Carmen +Krista +Virginia +Raquel +Jenny +Sheri +Natalie +Shawna +Anita +Marie +Samantha +Felicia +Shelley +Jodi +Jeanette +Irene +Angelica +Kathy +Katrina +Ruth +Tracey +Trina +Lorena +Alison +Guadalupe +Carla +Colleen +Debbie +Tami +Terri +Leah +Stacie +Bonnie +Joanna +Sherri +Cassandra +Connie +Emily +Kari +Lorraine +Aimee +Darlene +Janice +Kimberley +Toni +Eva +Sonya +Adriana +Kelli +Elaine +Alma +Kristy +Joy +Rose +Rachelle +Rochelle +Shawn +Charlene +Juanita +Frances +Kerry +Margarita +Megan +Esther +Alisa +Dina +Tracie +Cristina +Beth +Dena +Cecilia +Lydia +Joanne +Irma +Rita +Robyn +Alice +Bridget +Teri +Jody +Judith +Lynn +Kellie +Angelina +Charlotte +Evelyn +Becky +Lara +Roberta +Belinda +Caroline +Keri +Cheri +Kirsten +Cathy +Karin +Marlene +Shirley +Maribel +Roxanne +Angelique +Gretchen +Kristie +Silvia +Judy +Adrienne +Sophia +Trisha +Blanca +Kerri +Natasha +Sheryl +Antoinette +Brandi +Dolores +Sally +Candice +Kendra +Stefanie +Arlene +Brandy +Eileen +Elena +Gabriela +Celeste +Helen +Christa +Karla +Desiree +Elisa +Kelley +Lynette +Misty +Naomi +Sonja +Candace +Ronda +Tammie +Tisha +Bernadette +Tasha +Vicki +Maureen +Dorothy +Serena +Ramona +Sandy +Molly +Nichole +Susana +Marisa +Priscilla +Jean +Nina +Ginger +Nora +Shana +Staci +Ericka +Jeannette +Shauna +Jennie +Brooke +Ruby +Grace +Loretta +Maricela +Melody +Beverly +Cherie +Isabel +Jeanne +Jenifer +Joann +Joyce +Kara +Rachael +Deana +Audrey +Marilyn +Peggy +Marci +Olga +Angel +Araceli +Betty +Christie +Janine +Jeannie +Rosemary +Tonia +Yesenia +Penny +Jana +Jeanine +Meredith +Hope +Marcella +Gabrielle +Josephine +Ellen +Vivian +Delia +Tania +Darla +Gail +Lora +Marcia +Marla +Angie +Jodie +Pauline +Shari +Dianna +Georgina +Jackie +Marisol +Alexandra +Camille +Jane +Marina +Christi +Latasha +Mindy +Ingrid +Nikki +Elsa +Katie +Lillian +Mia +Olivia +Terry +Miriam +Candy +Lana +Luz +Marianne +Shanna +Amelia +Chandra +Francine +Marta +Cari +Corina +Courtney +Lesley +Juliet +Ashley +Dionne +Janelle +Rene +Vicky +Wendi +Bobbie +Dianne +Genevieve +Lucy +Patrice +Bertha +Deanne +Dora +Elisabeth +Kimberlee +Marcy +Marisela +Rebekah +Vickie +Audra +Latanya +Laurel +Leanne +Marcie +Beatrice +Jacquelyn +Janette +Lauren +Lupe +Darcy +Joan +Josefina +Lilia +Paulette +June +Lourdes +Lynda +Paige +Alisha +Mona +Karyn +Lea +Marlo +Wanda +Carolina +Cathleen +Corinne +Hilda +Johanna +Keisha +Celia +Imelda +Jami +Shelby +Tanisha +Faith +Graciela +Lorie +Stella +Susanne +Aurora +Doris +Gwendolyn +Julianne +Leigh +Rocio +Suzette +Anjanette +Beatriz +Michael +Athena +Carey +Consuelo +Marsha +Nadine +Alyssa +Elvia +Summer +Edith +Hilary +Jeannine +Lee +Lena +Liza +Lynnette +Nanette +Noelle +Sherrie +Latonya +Tabitha +Abigail +Constance +Jo +Kerrie +Lucinda +Maryann +Tammi +Tamra +Cara +Louise +Mercedes +Rosemarie +Terra +Alexis +Corinna +Emma +Glenda +Lucia +Rosalie +Doreen +Edna +Estella +Liliana +Sofia +Susie +Geraldine +Juliana +Rosalinda +Tawnya +Annie +Chelsea +Deena +Isela +Justine +Latrice +Shellie +Susanna +Anissa +Autumn +Bridgette +Colette +Danette +Deann +Estela +Marjorie +Rosie +Antonia +Cori +Gena +Jeri +Lashawn +Latisha +Marissa +Marnie +Shanda +Tamera +Ursula +Francisca +Jaime +Leilani +Lorrie +Margie +Maya +Noemi +Rosario +Alissa +Billie +Casey +Eugenia +Hillary +Juana +Karrie +Leann +Mari +Amie +Cecelia +Chantel +Elvira +Jocelyn +Katharine +Magdalena +Shannan +Sue +Windy +Clara +Esperanza +Ida +Jessie +Mandy +Selena +Shelli +Alejandra +Bernice +Brandie +Caryn +Catalina +Davina +Kenya +Myrna +Trista +Daphne +Dara +Elva +Esmeralda +James +Jeanna +Jolene +Kris +Mariana +Myra +David +Delores +Dominique +Juliette +Karina +Lynne +Richelle +Socorro +Tiffani +Allyson +Gayle +Gladys +Janell +Lauri +Mara +Margo +Noel +Shanon +Terrie +Adrian +Betsy +Candi +Clarissa +Daisy +Evangelina +Francesca +Griselda +Iris +Melisa +Rebeca +Alysia +Catrina +Cherise +Chris +Danelle +Dayna +Delilah +Helena +Janel +Karri +Leeann +Malinda +Rena +Robert +Tabatha +Tera +Alyson +Angelia +Annmarie +Bethany +Carin +Claudine +Corrina +Dawna +Della +Janna +Josie +Kendall +Leanna +Phyllis +Randi +Rosanna +Valarie +Vikki +Anastasia +Aracely +Buffy +Christopher +Chrystal +Dee +Deirdre +Denice +Elise +Florence +Juli +Kisha +Leila +Nicolle +Renae +Sondra +Aida +Annemarie +Candida +Cassie +Charity +Claire +Crista +Janie +Janis +Joey +Katy +Kesha +Lanette +Lesa +Lola +Martina +Mayra +Michell +Polly +Adrianne +Charisse +Charmaine +Cindi +Josette +Kate +Lani +Larissa +Lidia +Marian +Patty +Pearl +Petra +Stefani +Bobbi +Brigitte +Carole +Celina +Danna +Eve +Kira +Krishna +Lily +Maritza +Nichelle +Reina +Rosalind +Shara +Shelia +Tyra +Vera +Darcie +Deidre +Eleanor +Julissa +Marni +Minerva +Roxanna +Stacia +Tessa +Tia +Trena +Xochitl +Corrine +Demetria +Gabriella +Hollie +Jeni +Jerri +Ladonna +Leandra +Letitia +Marcela +Ofelia +Roxana +Sandi +Simone +Venus +Carri +Cristy +Eden +Georgia +Inez +Jason +Jeana +John +Kathrine +Kristal +Marion +Monika +Shonna +Stephenie +Sunny +Therese +Adela +Adria +Adrianna +Aileen +Alana +Alina +Alycia +Brenna +Darci +Debora +Emilia +Evette +Ivonne +Jan +Jeanie +Lorene +Lorna +Nanci +Rachele +Reyna +Rosalyn +Sharla +Sharlene +Shay +Shonda +Whitney +Angelic +Belen +Chanda +Christian +Concepcion +Cora +Corey +Elida +Elisha +Geri +Gia +Jenni +Krystal +Lia +Lila +Mechelle +Nicolette +Racquel +Rosalba +Rosalia +Roseann +Soledad +Stephani +Thea +Tosha +Violeta +Alecia +Alexandria +Ami +Angelita +Carmela +Chantal +Christen +Christin +Dione +Ebony +Elsie +Geneva +Jayme +Jenna +Jenniffer +Joelle +Jolie +Kali +Latricia +Leona +Lorinda +Madeline +Patrica +Robbie +Rosalva +Rosio +Shani +Sheree +Tamatha +Violet +Andria +Brandee +Carie +Cathryn +Cristi +Daniella +Deedee +Elissa +Eloisa +Eric +Ernestina +Hannah +Joni +Julianna +Karie +Lindsay +Lucille +Meghan +Raina +Robbin +Selina +Sharron +Steven +Suzanna +Thelma +Tresa +Trudy +Ada +Annamarie +Anthony +Ayanna +Brian +Brigette +Brittany +Carmel +Cary +Christal +Cinnamon +Coleen +Cristal +Devon +Flora +Freda +Gilda +Giselle +Holli +Jaqueline +Jasmine +Katheryn +Kay +Lawanda +Maisha +Maura +May +Mildred +Patsy +Rosanne +Sasha +Shea +Sherie +Tamika +Tanja +Tracee +Winona +Amalia +Antionette +Aurelia +Benita +Casandra +Cyndi +Daniel +Elaina +Ester +Evelia +Gwen +Haydee +Ivy +Julieta +Justina +Kirstin +Latrina +Leonor +Liana +Liane +Lina +Lizabeth +Lois +Maggie +Malissa +Maxine +Mercy +Mindi +Miranda +Mirna +Mitzi +Nadia +Natalia +Nathalie +Nellie +Patti +Pilar +Rae +Richard +Rowena +Roxane +Salina +Shayla +Tamar +Tana +Zulma +Ali +Amparo +Armida +Carina +Charleen +Daria +Dusty +Dyan +Evangeline +Fawn +Greta +Helene +Hortencia +Inga +Ivette +Janeen +Judi +Kami +Karma +Lakeisha +Linette +Lisette +Liz +Luisa +Maryanne +Mirella +Phoebe +Rayna +Roxann +Shawnda +Tiffanie +Tonja +Yadira +Adriane +Alesia +Britt +Caprice +Caren +Collette +Corrie +Danita +Dolly +Dorinda +Elana +Eliza +Ella +Georgette +Ginny +Hallie +Jannette +Jillian +Kimberlie +Kindra +Lakisha +Lilly +Loraine +Lupita +Mandi +Mireya +Misti +Nannette +Nicola +Niki +Sadie +Star +Tamiko +Velia +Viviana +Wendie +Adele +Adina +America +Anabel +Andrew +Annamaria +Antonette +Ava +Bettina +Bridgett +Carmelita +Chanel +Charissa +Charla +Cory +Cristie +Cristine +Damaris +Dani +Danica +Debby +Dori +Elyse +Felecia +Frankie +Ilene +Jacquline +Janae +Jena +Jose +Kellee +Kimber +Kimberli +Kristyn +Lainie +Latonia +Laureen +Lavonne +Letisia +Lissa +Lorri +Mariah +Marivel +Mark +Marlena +Melina +Melonie +Morgan +Niccole +Nicol +Noreen +Perla +Renita +Rosana +Rosita +Roslyn +Samara +Sarina +Serina +Shandra +Shantel +Shanti +Shawnna +Sunshine +Sydney +Tameka +Tatanisha +Tatiana +Tisa +Tori +Valorie +Velma +Adelina +Alethea +Annabelle +Araseli +Barbra +Bianca +Briana +Callie +Chantell +Christel +Corie +Cristin +Dalia +Deshawn +Edie +Emilie +Erma +Ernestine +Fatima +Faye +Francis +Gaylene +Gracie +Isabelle +Jammie +Jenelle +Juliann +Kandy +Karena +Karolyn +Kecia +Kyra +Lenora +Lenore +Libby +Lilian +Lindy +Lolita +Magda +Marylou +Mellissa +Melodie +Melynda +Merry +Nichol +Piper +Portia +Rachell +Rosamaria +Senta +Stacee +Stormy +Susannah +Tamu +Tiffiny +Trinidad +Twila +Verna +Willow +Winnie +Yasmin +Adelita +Aide +Alyce +Angeline +Arcelia +Berta +Christiane +Cinthia +Daniela +Dinah +Erlinda +Eunice +Fabiola +Gillian +Hayley +Hazel +Heide +Ina +Jade +Jennine +Johnna +Johnnie +Joleen +Joseph +Josephina +Karey +Leesa +Lela +Lianne +Loren +Maia +Maren +Mariza +Michaela +Pricilla +Renea +Rona +Roseanne +Saundra +Shalonda +Shona +Suzan +Taryn +Taunya +Teena +Terresa +Toby +Treena +Twyla +William +Zoe +Andra +Anika +Ariana +Aundrea +Aura +Caitlin +Carissa +Charles +Cherice +Cherrie +Cheryle +Christiana +Christianne +Claudette +Corine +Daina +Dawnette +Dedra +Delfina +Dennise +Donya +Dorene +Fiona +George +Glenna +Guillermina +Holley +India +Jaimie +Jamee +Jayne +Jenette +Jesus +Jolynn +Jonna +Jovita +Julee +Kandi +Kasey +Kathlene +Keli +Kenna +Kristan +Ladawn +Latosha +Lesli +Linnea +Lizette +Louisa +Marti +Missy +Mollie +Nikole +Nola +Oralia +Pamala +Penelope +Racheal +Rana +Rina +Rosaura +Sarena +Seana +Shalon +Sharonda +Shaunna +Shawnee +Siobhan +Skye +Starla +Suzy +Tamela +Tamie +Tammara +Teressa +Tiffaney +Valentina +Veronique +Alba +Alejandrina +Aletha +Alexa +Amoreena +Annabel +Annalisa +Asia +Brook +Carmella +Cathrine +Charise +Cher +Cheree +Cherry +Cheyenne +Clare +Consuela +Crissy +Dacia +Dale +Dannette +Dannielle +Danya +Delicia +Demetra +Donica +Elke +Erinn +Felicity +Flor +Gianna +Gregory +Haley +Harriet +Herminia +Iliana +Ivon +Jacque +Janene +Jene +Jennefer +Karry +Kayla +Kelsey +Kia +Kori +Kymberly +Lacey +Laronda +Lashanda +Lashon +Lashonda +Latoya +Lawana +Ligia +Lillie +Lise +Lissette +Lizbeth +Lonna +Lucretia +Machelle +Maile +Malaika +Marcelina +Marianna +Matilde +Matthew +Melba +Mimi +Misha +Peter +Petrina +Rolanda +Romy +Sabina +Sean +Shane +Sharee +Sharie +Soraya +Stephany +Stephine +Sunni +Susy +Suzie +Synthia +Teresita +Tiffini +Tobi +Toya +Zandra +Aaron +Abby +Adelaida +Aisha +Aleta +Alysha +Amina +Ashli +Aviva +Ayesha +Bobby +Brett +Cameron +Carlotta +Carma +Caron +Catharine +Chante +Chantelle +Chari +Chrissy +Clarice +Danae +Danny +Danyelle +Dawne +Deeann +Denine +Destiny +Dia +Dixie +Dona +Dyana +Elia +Elicia +Eloise +Estelle +Ethel +Gabriel +Gary +Gidget +Gigi +Gypsy +Ines +Inger +Jeanelle +Jenell +Jodee +Joel +Juliane +Kacy +Kameron +Kendal +Kiersten +Kiesha +Kimberely +Kimi +Lalena +Lanna +Larhonda +Laticia +Lavonda +Leisa +Lona +Loree +Lorelei +Lucila +Malia +Malika +Maricella +Mario +Melani +Melva +Merideth +Meridith +Michel +Michon +Mika +Miko +Myisha +Pam +Paris +Patrisia +Paul +Phaedra +Raeann +Raymond +Ronnie +Sacha +Sallie +Shalene +Shanta +Sharise +Shasta +Shawnie +Sheena +Shiela +Sophie +Tabetha +Tamica +Tawny +Thomas +Timothy +Tish +Tonie +Trudi +Velvet +Venessa +Vonda +Willie +Xiomara +Yolonda +Abbie +Adeline +Alaina +Alberta +Alise +Alva +Amiee +Analisa +Andreana +Angella +Antonio +Aretha +Arleen +Beatris +Beronica +Brigid +Camilla +Candelaria +Carlene +Carletta +Carman +Carolee +Cecily +Celena +Chanin +Charis +Charlette +Corena +Dahlia +Daneen +Daniele +Danika +Danyel +Darleen +Daun +Debroah +Deidra +Delana +Delinda +Denna +Detra +Deva +Donelle +Edward +Eugenie +Faviola +Felice +Felisa +Felisha +Gayla +Gennifer +Genny +Genoveva +Germaine +Gricelda +Honey +Iesha +Ilda +Imani +Jaclyn +Janella +Janey +Janiece +Janina +Jannine +Jaye +Jeffrey +Jeniffer +Jerilyn +Jesse +Jewel +Joana +Joi +Joycelyn +Julieanne +Kandace +Karna +Kary +Kassandra +Kathie +Katina +Keisa +Kenyatta +Kirstie +Kyle +Lashone +Lashun +Latesha +Laurinda +Lavette +Lavina +Leslee +Lindsey +Lizet +Lorita +Luana +Lurdes +Makeba +Manuel +Manuela +Margot +Marguerite +Maricruz +Marilee +Marilynn +Marquita +Marty +Meagan +Melony +Micaela +Michaelle +Michiko +Micki +Miki +Mirian +Moira +Nerissa +Neva +Nona +Nova +Opal +Paola +Paulina +Pennie +Raelene +Randy +Reba +Reiko +Rhoda +Rikki +Romona +Rosalina +Roseanna +Scott +Selene +Serene +Shanae +Shantell +Shayne +Sherice +Sierra +Simona +Tandy +Tatia +Tausha +Tena +Tereasa +Terese +Tiana +Tomika +Tressa +Treva +Trinette +Valencia +Veda +Venetia +Venita +Zabrina +Zaneta +Adena +Akemi +Alena +Alondra +Amada +Anamaria +Ananda +Anastacia +Angelena +Angelene +Anitra +Anya +Argelia +Ariel +Arnetta +Avelina +Bambi +Benjamin +Bernadine +Bonita +Brandon +Candyce +Carisa +Carleen +Carlyn +Carolynn +Caterina +Chelsey +Cherish +Cherisse +Cherri +Christene +Clover +Cody +Cristen +Danell +Dannelle +Danyell +Darby +Darcey +Davida +Davonna +Dawnell +Debbi +Deeanna +Devona +Diann +Diona +Douglas +Dulce +Earlene +Echo +Elba +Ena +Enedina +Enid +Evonne +Francisco +Gaynell +Gene +Gerri +Gisela +Gregoria +Gwyn +Helga +Herlinda +Ivana +Ivory +Jacinda +Jacquelin +Jamey +Janay +Jenee +Jenel +Jenine +Jennette +Jeremy +Jerusha +Jesusita +Joe +Joellen +Julieann +Jurea +Kacey +Kandice +Karol +Kasandra +Kathi +Kaylene +Keely +Keiko +Kellye +Kevin +Keya +Korina +Kristeen +Kyla +Lachelle +Laini +Lakeesha +Lanita +Larisa +Larry +Lashan +Latrece +Laverne +Lawanna +Leatrice +Leeanna +Leeanne +Lenita +Leta +Letisha +Liberty +Lisha +Loreen +Lorenza +Lus +Malisa +Marcelle +Mariam +Maribell +Mariela +Marizela +Marlyn +Marna +Mendy +Michela +Michella +Mikelle +Mila +Millie +Monette +Muriel +Myesha +Natascha +Necole +Nikol +Patience +Penney +Poppy +Princess +Raguel +Rain +Rani +Ray +Rhea +Rhona +Ricki +Rima +Risa +Rodney +Roni +Ronit +Rory +Rosalee +Rosella +Rubi +Ryan +Sanjuanita +Sarita +Scarlet +Sergio +Shaleen +Shanette +Shanita +Sharleen +Shayleen +Shayna +Shellee +Shena +Shereen +Sherilyn +Shyla +Sirena +Soila +Stephen +Tamala +Tamarah +Tanesha +Tani +Tanishia +Tawna +Temple +Thalia +Tiffiney +Tomi +Tommie +Treasa +Trish +Tristine +Troy +Tuesday +Valeria +Valinda +Vilma +Wendee +Windi +Yalonda +Yevette +Yolando +Zara +Adam +Agnes +Akiko +Alene +Alesha +Alex +Alia +Alica +Aliza +Althea +Alvina +Amee +Anette +Anisa +Anja +Anjannette +Anjeanette +Anmarie +Annastacia +Anthea +Antonina +Aprille +Arielle +Arminda +Ashlee +Ashleigh +Babette +Blanche +Bonny +Brianna +Brita +Brittney +Buffi +Buffie +Cammy +Candie +Carmina +Casie +Cecile +Celestina +Celinda +Chanell +Channon +Chantil +Charon +China +Christena +Christinia +Coral +Corin +Cortney +Cruz +Dalila +Dania +Danise +Darlynn +Darnell +Deandra +Debbra +Delaine +Deserie +Dierdre +Dodie +Donald +Donell +Donetta +Elayne +Elda +Elinor +Elisabet +Elodia +Erryn +Evan +Fannie +Fanny +Fay +Felicitas +Florinda +Gale +Gay +Gemma +Geralyn +Gisselle +Guinevere +Harmony +Henrietta +Hiedi +Ilana +Ileana +Ira +Ivan +Jackeline +Jacki +Jada +Jamillah +Janean +Janise +Jaymi +Jenean +Jennifier +Josefa +Juan +Julienne +Julisa +Kaci +Kama +Kandie +Kandis +Karan +Kasia +Kasie +Kassie +Katherin +Katherina +Kerensa +Kerstin +Kimya +Kristel +Kristena +Kristian +Lakesha +Lannette +Laquita +Larena +Lashelle +Lashondra +Lashunda +Launa +Laure +Laurice +Leana +Leighann +Letha +Lianna +Lilliana +Lisbeth +Lita +Loni +Lonnie +Luanne +Luis +Lynelle +Lynetta +Lynnae +Mabel +Madonna +Mae +Magdalene +Marcey +Marchelle +Margery +Margret +Mariaelena +Marialuisa +Mariann +Marilou +Marlise +Marnee +Marsi +Martine +Marya +Marybell +Marybeth +Marylee +Marysol +Meliza +Mellisa +Melvina +Meri +Mesha +Micah +Mickie +Miesha +Mistie +Mitra +Monet +Moriah +Myrtle +Nancie +Nelly +Nicki +Nickie +Nidia +Nieves +Octavia +Onica +Ophelia +Pamelia +Patrina +Pia +Porsha +Precious +Prudence +Quinn +Raechel +Rafaela +Randee +Randie +Rashawn +Rayann +Raye +Raylene +Rebbecca +Rechelle +Renay +Richele +Robbyn +Rochell +Rocquel +Roma +Romana +Ronna +Ronnette +Roselyn +Rosetta +Rosina +Sabrena +Salena +Samatha +Sami +Samuel +September +Shae +Shanell +Shannah +Sharilyn +Shaun +Shawana +Shawnette +Shawnta +Shelle +Shenise +Sherelle +Sherene +Sherrell +Shila +Shiloh +Shira +Shonta +Shoshana +Sina +Steffani +Stephaine +Stephannie +Suanne +Sukari +Sunday +Suzana +Suzann +Suzzanne +Sybil +Talitha +Tamarra +Tammera +Tamsen +Tamura +Tamyra +Tarra +Tashia +Tawnia +Taya +Tesha +Tessie +Tianna +Tifani +Timika +Tinna +Toi +Tomeka +Tony +Tory +Tristan +Vannessa +Vickey +Wednesday +Willette +Wilma +Yana +Yasmine +Zenaida +Zoila +Jennifer +Michelle +Lisa +Kimberly +Maria +Nicole +Heather +Amy +Julie +Stephanie +Christina +Elizabeth +Melissa +Cynthia +Angela +Laura +Shannon +Christine +Rebecca +Patricia +Sandra +Monica +Tina +Mary +Andrea +Karen +Denise +Tracy +Kelly +Veronica +Dawn +Rachel +Wendy +Tammy +Michele +Jessica +Teresa +Susan +Lori +Tiffany +April +Stacy +Gina +Tanya +Diana +Deborah +Sarah +Danielle +Anna +Carrie +Brenda +Linda +Kathleen +Nancy +Heidi +Katherine +Alicia +Tamara +Melanie +Renee +Erin +Catherine +Theresa +Stacey +Kristin +Tara +Deanna +Victoria +Leticia +Robin +Dana +Kristina +Claudia +Pamela +Cheryl +Crystal +Suzanne +Erica +Yolanda +Rosa +Barbara +Monique +Erika +Donna +Cindy +Leslie +Gloria +Brandi +Sonia +Jill +Yvonne +Debra +Christy +Sharon +Valerie +Regina +Jacqueline +Amber +Melinda +Martha +Kristen +Sara +Amanda +Diane +Brandy +Shelly +Jenny +Tonya +Holly +Yvette +Sylvia +Ana +Natalie +Jamie +Kathryn +Vanessa +Rhonda +Paula +Samantha +Shawna +Kristine +Norma +Laurie +Sherry +Ann +Kristi +Angelica +Janet +Tricia +Sheila +Carolyn +Katrina +Margaret +Raquel +Carol +Virginia +Shelley +Allison +Julia +Lorena +Anne +Annette +Carmen +Emily +Carla +Guadalupe +Traci +Aimee +Irene +Krista +Sheri +Sabrina +Jeanette +Misty +Cassandra +Kari +Felicia +Marie +Kim +Anita +Gabriela +Nichole +Colleen +Stacie +Jodi +Alison +Ruth +Tami +Leah +Megan +Alma +Adriana +Kristy +Darlene +Connie +Sherri +Joanna +Kelli +Kerry +Natasha +Tracey +Sonya +Terri +Trina +Kathy +Keri +Angelina +Rochelle +Joy +Cecilia +Nikki +Lynn +Debbie +Lorraine +Rose +Eva +Frances +Judith +Kirsten +Charlene +Helen +Kimberley +Molly +Bonnie +Elaine +Rachelle +Toni +Bridget +Silvia +Lydia +Maribel +Rita +Dena +Susana +Esther +Jody +Stefanie +Dina +Desiree +Elena +Margarita +Belinda +Eileen +Juanita +Shawn +Robyn +Blanca +Marlene +Roxanne +Alice +Cristina +Kristie +Sonja +Angel +Tracie +Charlotte +Cheri +Lynette +Angelique +Beth +Joanne +Rachael +Kellie +Caroline +Irma +Judy +Elisa +Kendra +Alisa +Becky +Christie +Kara +Katina +Nina +Araceli +Janice +Bernadette +Trisha +Ramona +Shirley +Teri +Candice +Dolores +Jenifer +Olivia +Roberta +Staci +Delia +Maricela +Christa +Lara +Sally +Sandy +Jean +Arlene +Karla +Kerri +Adrienne +Tasha +Candace +Isabel +Shauna +Shana +Sheryl +Cathy +Meredith +Alexandra +Jeannette +Rosemary +Naomi +Olga +Shelby +Antoinette +Celeste +Audrey +Gretchen +Jennie +Tanisha +Dianna +Joyce +Luz +Ginger +Joann +Kelley +Maureen +Priscilla +Serena +Vicki +Ruby +Alejandra +Cherie +Ericka +Latasha +Melody +Josephine +Sophia +Tammie +Deana +Evelyn +Jeannie +Vivian +Brooke +Dora +Georgina +Dorothy +Grace +Keisha +Marisa +Marisol +Tania +Francine +Karin +Katie +Beverly +Jane +Loretta +Marcella +Hope +Candy +Marla +Nora +Lillian +Mindy +Mona +Tisha +Jana +Ashley +Corina +Elsa +Peggy +Shanna +Yesenia +Ellen +Janelle +Jeanine +Laurel +Wendi +Alisha +Gail +Graciela +Jeanne +Miriam +Betty +Chandra +Gabrielle +Lauren +Marcia +Rocio +Carey +Genevieve +Ingrid +Marisela +Rene +Bobbie +Carolina +Kimberlee +Lourdes +Edith +Bertha +Lena +Marilyn +Marina +Susie +Tammi +Amie +Brandie +Janine +Latanya +Marcy +Marsha +Hilda +Jodie +Lucia +Lucy +Terry +Cara +Griselda +Leanne +Leigh +Marci +Melisa +Ronda +Charity +Elisabeth +Lora +Lupe +Marianne +Summer +Aurora +Casey +Jackie +Michael +Tonia +Wanda +Estela +Jeannine +Noelle +Marta +Stella +Vickie +Emma +Jenna +Penny +Rosalinda +Bethany +Cari +Faith +Tamra +Deanne +Hilary +Jacquelyn +Josefina +Karyn +Lynda +Rosario +Joan +Marcie +Maryann +Shari +Autumn +Jo +June +Lilia +Nadine +Pauline +Chelsea +Corinna +Darla +Esmeralda +Latisha +Liliana +Mercedes +Nanette +Angie +Audra +Ayanna +Consuelo +Johanna +Lana +Lesley +Marlo +Rosie +Tabitha +Alexis +Amelia +Antonia +Beatriz +Billie +Camille +Christi +Corinne +Courtney +Darcy +Liza +Paulette +Terra +Windy +Beatrice +Celia +Lea +Patrice +Isela +Mia +Rebeca +Rebekah +Bridgette +Doris +Janel +Karrie +Latonya +Marissa +Sherrie +Tawnya +Vicky +Anissa +Charmaine +Doreen +Esperanza +Julianne +Karina +Leann +Lynnette +Suzette +Hillary +Rosalie +Rosemarie +Catina +Cecelia +Danette +Jami +Kenya +Noemi +Socorro +Susanne +Dayna +Gena +Janette +Jeri +Juliet +Latrice +Lee +Mireya +Athena +Catalina +Deena +Dianne +Georgia +Glenda +Juliana +Malinda +Noel +Sofia +Brandee +Cathleen +Dionne +Evangelina +Imelda +Jason +Jolene +Maritza +Paige +Tiffani +Annie +Clarissa +Claudine +Eleanor +Juana +Kasey +Lorie +Margo +Pearl +Sunny +Susanna +Elise +James +Jocelyn +Lashawn +Sheree +Tamika +Abigail +Clara +Elva +Elvia +Kisha +Leanna +Margie +Marian +Richelle +Tamera +Vera +Marjorie +Monika +Rena +Bernice +Gwendolyn +Jessie +Kerrie +Lucinda +Robert +Shellie +Trista +Alyssa +Angelita +Constance +Eve +Iris +Janie +Katharine +Krystal +Lily +Magdalena +Marni +Tera +Annmarie +Catrina +Edna +Elvira +Gabriella +Jaime +Lorna +Louise +Mandy +Ofelia +Shanon +Violeta +Amalia +Aracely +Ida +Juliette +Mara +Myrna +Sasha +Caryn +Cori +Francisca +Lauri +Lidia +Maya +Phyllis +Rosalind +Rosanna +Sandi +Ursula +Valarie +Xochitl +Anastasia +Anjanette +Cherise +Deann +Evette +Hannah +Ivy +Josie +Julissa +Justine +Kristal +Lakeisha +Lorrie +Marcela +Marnie +Niki +Petra +Simone +Stefani +Tessa +Venus +Alana +Allyson +Bree +Buffy +Claire +Davina +Debora +Dominique +Janna +Kami +Lynne +Miranda +Randi +Reina +Shelli +Sondra +Aileen +Alissa +Bobbi +Carie +Cassie +Chanda +Estella +Florence +Francesca +Leila +Maisha +Mechelle +Penelope +Perla +Shannan +Sue +Angelia +Angelic +Chantel +Christopher +Cristy +David +Eloisa +Jolie +Kesha +Larissa +Leilani +Mariana +Martina +Mayra +Michell +Myra +Polly +Sunshine +Annemarie +Brenna +Carole +Chris +Daisy +Daniel +Daphne +Denice +Geraldine +Helena +Ladonna +Leona +Luisa +Maura +Micaela +Rosalva +Roxanna +Tabatha +Trudy +Annamarie +Candi +Danelle +Darci +Deirdre +Elisha +Gladys +Inez +Jan +Janeen +Janell +Jenni +Maggie +Malissa +Mildred +Richard +Selena +Shani +Stacia +Tia +Vikki +Alysia +America +Andria +Antonette +Belen +Betsy +Christal +Corrine +Dani +Dawna +Demetria +Eugenia +Flora +Giselle +Kirstin +Loraine +Meghan +Mirella +Sharla +Tamiko +Viviana +Adrian +Anika +Briana +Candida +Dara +Devon +Ebony +Elissa +Gayle +Hollie +Janis +Joey +Josette +Lakesha +Lanette +Lavonne +Lois +Nellie +Nicol +Nicolle +Patsy +Rosanne +Shanda +Adrianne +Armida +Bridgett +Brook +Carissa +Carri +Cher +Corey +Corrina +Crista +Daniella +Dori +Georgette +John +Justina +Karri +Kris +Lawanda +Lia +Liz +Minerva +Nicola +Patti +Racquel +Reyna +Rowena +Shane +Shelia +Susannah +Suzanna +Tanja +Therese +William +Zoe +Adela +Adele +Alexandria +Alina +Annamaria +Camisha +Carin +Carina +Casandra +Cherilyn +Christian +Coleen +Colette +Deidre +Delores +Eliza +Eunice +Fabiola +Guillermina +Jerri +Julianna +Kandi +Karie +Kyla +Lenora +Lesa +Lilian +Madeline +Mari +Marion +Nichol +Nicolette +Nikole +Patty +Racheal +Renae +Saundra +Sharlene +Sharron +Terrie +Tori +Tosha +Anthony +Brigitte +Cindi +Cory +Daniela +Dusty +Emilia +Francis +Gia +Gillian +Jeanie +Jeanna +Jenniffer +Johnna +Jose +Juan +Kate +Lakisha +Lani +Layla +Leeann +Leonor +Lina +Magda +Marivel +Misti +Natalia +Rosio +Selina +Starr +Stephani +Tobi +Valentina +Whitney +Berta +Cary +Corrie +Cristal +Dannielle +Gwen +Ivonne +Jena +Joelle +Jonna +Kathrine +Kira +Lela +Letitia +Lila +Lisette +Lizbeth +Lola +Matthew +Mercy +Prudence +Rachele +Raina +Ronnie +Stephany +Tamela +Tana +Tiffanie +Tonja +Tyra +Valorie +Adrianna +Ali +Amparo +Aurelia +Ava +Celina +Charla +Cherish +Christen +Christin +Claudette +Concepcion +Cora +Darcie +Della +Evonne +Jade +Jasmine +Jeana +Jesus +Joseph +Juli +Kyra +Latricia +Lenore +Liana +Mirna +Rhoda +Rosalba +Shawnee +Shonna +Tamie +Tedra +Trena +Adriane +Aide +Alecia +Angeline +Ariana +Brian +Brigette +Caitlin +Cameron +Caren +Celena +Chrystal +Collette +Cristin +Cyndi +Dalia +Daniele +Eric +Fatima +Ivette +Jayne +Karena +Latosha +Lindy +Lupita +Malia +Marlena +May +Mindi +Rae +Roseanna +Shawnna +Sherie +Shiela +Shiloh +Skye +Alyson +Andra +Anjelica +Antionette +Carmelita +Cathrine +Cruz +Dee +Deidra +Delilah +Dixie +Dolly +Elida +Ernestine +Evelia +Gisela +Ina +Joni +Kimberlie +Kori +Lashonda +Leyla +Libby +Louisa +Melonie +Mollie +Myisha +Nicki +Poppy +Renita +Robbin +Rosana +Rubi +Steven +Tameka +Tarra +Thelma +Trinity +Verna +Ada +Aida +Aisha +Ami +Anabel +Asia +Aura +Cambria +Caprice +Chantal +Danita +Deserie +Dorene +Eden +Edwina +Erlinda +Evangeline +Ginny +Jillian +Judi +Laila +Letisia +Lillie +Lindsay +Lorene +Lucretia +Malisa +Marylou +Mendy +Myesha +Nanci +Nannette +Nissa +Nova +Pilar +Rina +Roseann +Rosetta +Serina +Star +Stephenie +Suzy +Sydney +Toya +Tracee +Tressa +Trinidad +Vilma +Viola +Wendie +Yadira +Adelina +Adria +Alejandrina +Alisia +Althea +Arcelia +Ariel +Bianca +Brittany +Carly +Cathryn +Celestina +Chana +Charisse +Christiane +Cinnamon +Cinthia +Danna +Delfina +Erma +Ester +Ethel +Fiona +Geneva +Giovanna +Haydee +Holli +Hortencia +Ilene +Jennette +Julee +Karey +Kay +Kellee +Kendall +Kindra +Latonia +Leana +Liane +Lilly +Lucille +Mae +Malaika +Marianna +Maricruz +Mark +Missy +Nadia +Nathalie +Pam +Phaedra +Portia +Renata +Rosalia +Rosalyn +Rosaura +Shanee +Shaunna +Shay +Shayna +Sherilyn +Shona +Shonda +Stephaine +Suzie +Tamala +Tamatha +Tenisha +Tiana +Tisa +Velma +Anel +Angelene +Annabelle +Aretha +Ayana +Benita +Britt +Charise +Charleen +Charles +Cheree +Cheyenne +Christel +Christiana +Corine +Cristine +Danica +Delicia +Detra +Dionna +Dona +Donielle +Ena +Erinn +Ernestina +Fawn +Faye +Felice +Geri +Greta +Gricelda +Ilda +Iliana +India +Isabelle +Jaqueline +Kandice +Katheryn +Kathie +Katy +Keli +Kia +Kimberli +Koren +Lakeysha +Latoya +Leonora +Linette +Lissa +Lizette +Lolita +Loren +Mabel +Maia +Marti +Maxine +Melina +Mellissa +Milissa +Mimi +Nona +Precious +Raylene +Rona +Roni +Rosalina +Rosita +Roxana +Sabina +Sacha +Sadie +Salina +Sarina +Soraya +Stacee +Starla +Sunday +Tabetha +Tamar +Tatanisha +Thomas +Toby +Treva +Twyla +Velia +Violet +Aaron +Adelita +Agnes +Alberta +Alexa +Alycia +Blythe +Bobby +Carisa +Carmela +Cecily +Celine +Chante +Chantelle +Cherry +Consuela +Corie +Dahlia +Davida +Deedee +Denita +Destiny +Dinah +Dione +Dyan +Elia +Elicia +Elke +Ella +Enedina +Flor +Gabriel +Gigi +Hazel +Helene +Hiedi +Ines +Jamila +Janey +Jayme +Jenelle +Jeni +Jenine +Jenise +Jonelle +Jovita +Kary +Kasandra +Kathi +Keya +Kristian +Latesha +Latrina +Lavonda +Lorinda +Luana +Lyn +Margot +Mariaelena +Marilee +Melani +Mellisa +Melodie +Merry +Miesha +Morgan +Nickie +Nickole +Nydia +Octavia +Ophelia +Phoebe +Piper +Rana +Rebecka +Rhea +Risa +Romona +Rossana +Scarlett +Scott +Sean +Shalene +Shalonda +Shanelle +Shante +Shanti +Shawntel +Shayne +Sherrill +Shira +Sierra +Siobhan +Soledad +Spring +Suzan +Sybil +Tamu +Tawana +Terese +Teresita +Tessie +Thea +Theodora +Tommy +Tresa +Willow +Winifred +Alanna +Alesha +Alesia +Allegra +Angella +Annabel +Aundrea +Bonny +Callie +Carlene +Chanel +Charissa +Chasity +Chastity +Chenoa +Cherrie +Clarice +Cristi +Dale +Dalila +Daria +Dawnelle +Demetra +Desire +Elaina +Elda +Elizabet +Eloise +Estelle +Frankie +Gianna +Hallie +Jannette +Jeanene +Jesse +Johnnie +Jonathan +Juliane +Juliann +Julienne +Julieta +Kathlene +Keena +Keesha +Keshia +Keysha +Kiesha +Kila +Kimi +Krissy +Lacey +Lanie +Lashanda +Letisha +Lianne +Liberty +Loreen +Lory +Madelyn +Manuela +Marcelle +Margret +Mariah +Mariela +Maryanne +Merideth +Michel +Mitzi +Moira +Mya +Natascha +Noelia +Noreen +Rachell +Rayna +Ronna +Rosamaria +Roseanne +Rosina +Roslyn +Sarita +Selene +Shalon +Shandra +Shantel +Shara +Shareen +Shawnette +Shea +Sophie +Steffanie +Tashia +Tiffiny +Timothy +Tomi +Tomika +Wendee +Xochilt +Yolonda +Zandra +Abby +Adina +Africa +Alba +Amee +Amina +Amira +Ammie +Ananda +Andreana +Anette +Angelena +Anitra +Annalisa +Asha +Azucena +Barbra +Becki +Bettina +Bonita +Brett +Brianna +Bryan +Buffie +Cameo +Camilla +Carmella +Carolynn +Caryl +Catharine +Charlyn +Charmain +Christene +Christianne +Coral +Cornelia +Damaris +Darcey +Darleen +Debi +Desha +Dulcie +Dusti +Edie +Edward +Elana +Elba +Elma +Elsie +Elyse +Fanny +Faviola +Felisha +Francie +Freda +Gayla +Genoveva +Gilda +Glenna +Hayley +Ileana +Indira +Jada +Jammie +Jeanetta +Jeneen +Jeniffer +Jennefer +Jesica +Joe +Jordana +Kacy +Kai +Kamala +Kameron +Kamisha +Karma +Karna +Katrin +Kayce +Keely +Kelsey +Kenda +Kenneth +Kevin +Kimberely +Kimberlyn +Kimya +Krishna +Kristyn +Laronda +Lasandra +Latashia +Laticia +Lawana +Lesli +Ligia +Lilliana +Lizet +Love +Lucila +Lucina +Maile +Makeba +Marguerite +Maricella +Mario +Mariza +Marleen +Maryjane +Meg +Melannie +Miguel +Mina +Misha +Mistie +Muriel +Natividad +Nelly +Nena +Neva +Nia +Nichele +Norah +Norine +Odessa +Odette +Pamala +Paola +Patrica +Raymond +Robbie +Ronald +Ronica +Ruben +Ruthie +Sabine +Sabrena +Samara +Sandee +Seana +Sharyn +Shaun +Shellee +Sherrell +Shonta +Stephine +Sunnie +Suzann +Synthia +Tamica +Tamisha +Tamora +Tanika +Taunya +Tawny +Taya +Tiara +Tiffini +Tuesday +Valencia +Wilma +Winnie +Zaida +Zulema +Adam +Adelaida +Albert +Alena +Alexandrea +Aliza +Amoreena +Anya +Bambi +Betina +Candelaria +Carleen +Carley +Carmel +Che +Cherese +Clementina +Cristen +Dacia +Dania +Dannette +Dawne +Dennise +Doria +Dorthy +Dyana +Echo +Elysia +Emi +Felecia +Felicitas +Fernanda +Gary +Gema +Germaine +Harriet +Heide +Hilarie +Inga +Ivana +Jacquelin +Jacquline +Jamey +Janae +Janean +Jaylene +Jeffrey +Jene +Jenee +Jennipher +Jerry +Johnette +Johnny +Joi +Josefa +Kacey +Karianne +Karissa +Kassandra +Katrena +Keitha +Kenna +Kenyatta +Kimber +Kimiko +Kirstie +Laina +Lakiesha +Laquita +Laree +Larry +Laureen +Laurice +Lavon +Leandra +Leeanne +Leisa +Leora +Letrice +Licia +Lili +Lonna +Lonnie +Loree +Malynda +Marcelina +Mariama +Marybel +Maryellen +Mattie +Meadow +Meagan +Meegan +Meka +Melynda +Merrilee +Michaele +Michal +Mickey +Micole +Mikki +Mindee +Minnie +Mira +Mirtha +Moon +Moriah +Nana +Nedra +Nichelle +Nicholle +Ona +Patrick +Petrina +Pia +Rani +Rayleen +Reba +Rochell +Rolanda +Romy +Ronni +Rory +Rosella +Roshawn +Roxane +Roxann +Rusty +Ryan +Sandie +Savina +Scarlet +Sharie +Shasta +Shawndra +Shayla +Shilo +Shyla +Sima +Simona +Sky +Sommer +Stephen +Tammra +Tandra +Tangela +Taryn +Tawnia +Tiffiney +Tish +Todd +Torri +Torrie +Treena +Trini +Trudi +Verenice +Vida +Vonda +Windi +Winona +Yanira +Yecenia +Zina +Zonia +Aidee +Alaina +Alfreda +Alishia +Alyce +Amada +Anamaria +Anastacia +Andre +Angeles +Anglea +Anisa +Anjeanette +Annissa +Ariane +Arianne +Arleen +Astrid +August +Ayesha +Babette +Barbie +Belia +Beronica +Bessie +Beverley +Carlos +Caron +Casie +Cassidy +Cathi +Chandrika +Charline +Cherice +Cherri +Cheryle +Corena +Cozette +Cristie +Cyndy +Danae +Davette +Dawana +Deangela +Debbi +Debby +Dede +Deeann +Deeanna +Delena +Delila +Deloris +Demetrius +Denisha +Dennis +Desirae +Diedre +Donita +Donya +Dulce +Eboni +Eddie +Elesha +Ellie +Emiko +Emilie +Ermelinda +Ernesto +Estee +Eugenie +Eulalia +Faustina +Felipa +Florinda +Francisco +Frank +Freya +Gale +Genelle +Gennifer +Gerri +Gracie +Gregory +Harmony +Hector +Hermelinda +Holley +Honey +Hortensia +Ilona +Isadora +Jacie +Jacinta +Jackeline +Jacki +Jacque +Jacquelynn +Jamee +Jamillah +Janessa +Janina +Jeanelle +Jennifier +Jennine +Jodee +Jolynn +Julieann +Kacie +Kandace +Karli +Karmen +Karolyn +Karrin +Kathryne +Kayla +Kaylene +Keisa +Keith +Kellye +Kerstin +Kianga +Kristan +Kristel +Kristiana +La +Lacy +Ladawn +Lashawnda +Lashon +Lashun +Latrece +Laverne +Lavette +Lavina +Leigha +Leola +Letty +Linnea +Lorelei +Lorina +Lorri +Luann +Luanne +Lynelle +Machelle +Madeleine +Madonna +Mai +Mandi +Manuel +Manya +Maren +Maribelle +Marietta +Marika +Mariko +Marisella +Marlys +Marne +Marsi +Marva +Marybeth +Maryhelen +Melaine +Mesha +Mica +Micah +Michaelle +Mignon +Mika +Millie +Myriam +Nelida +Nettie +Niccole +Nicky +Niesha +Nikita +Nneka +Patrina +Prescilla +Raeann +Raelene +Raena +Rafaela +Raguel +Rainbow +Randy +Ranee +Rashelle +Raychelle +Rebbecca +Renea +Rhodora +Rikki +Romelia +Ronette +Rosalee +Roselia +Roselle +Ruthann +Sabra +Sallie +Sammi +Sarai +Sebrina +Shae +Shameka +Shanta +Sharise +Sharonda +Shawndee +Shawntay +Shereen +Shiree +Shirlene +Shontae +Shonte +Shree +Sina +Sirena +Steffany +Susy +Tamasha +Tammara +Tamy +Taneisha +Tatiana +Tavia +Teena +Tereasa +Tesha +Thalia +Tiesha +Tira +Tonette +Toshia +Travis +Trishia +Twila +Valency +Velvet +Venessa +Virna +Yasmin +Zena +Zinnia +Zulma +Jennifer +Michelle +Lisa +Maria +Kimberly +Heather +Amy +Melissa +Christina +Stephanie +Nicole +Elizabeth +Rebecca +Julie +Veronica +Cynthia +Shannon +Laura +Angela +Monica +Christine +Patricia +Sandra +Andrea +Mary +Jessica +Kelly +Dawn +Karen +Wendy +Sarah +Denise +Rachel +April +Tina +Tracy +Gina +Michele +Stacy +Danielle +Tiffany +Tammy +Lori +Susan +Teresa +Carrie +Diana +Alicia +Erin +Tanya +Claudia +Anna +Brandy +Nancy +Brenda +Tamara +Melanie +Katherine +Heidi +Deborah +Victoria +Kristen +Amanda +Linda +Stacey +Crystal +Kathleen +Kristina +Leticia +Amber +Catherine +Sonia +Renee +Brandi +Theresa +Tara +Robin +Kristin +Melinda +Ana +Sara +Dana +Yolanda +Erica +Holly +Rosa +Monique +Erika +Valerie +Barbara +Suzanne +Pamela +Sylvia +Martha +Yvonne +Jill +Gloria +Cheryl +Leslie +Cindy +Deanna +Jamie +Emily +Jacqueline +Vanessa +Regina +Sharon +Norma +Diane +Angelica +Lorena +Natalie +Yvette +Donna +Shawna +Tonya +Christy +Guadalupe +Debra +Misty +Samantha +Ann +Rhonda +Shelly +Allison +Aimee +Laurie +Anne +Irene +Kristine +Jenny +Krista +Paula +Julia +Sheila +Margaret +Raquel +Adriana +Katrina +Carmen +Kristi +Carolyn +Sherry +Traci +Janet +Kathryn +Jeanette +Carol +Megan +Gabriela +Shelley +Tricia +Alma +Bridget +Leah +Carla +Alison +Joanna +Virginia +Annette +Anita +Natasha +Robyn +Jodi +Susana +Angelina +Sheri +Colleen +Trina +Blanca +Marie +Ruth +Connie +Cecilia +Cristina +Desiree +Bonnie +Joy +Kari +Lorraine +Marisa +Kathy +Molly +Tracey +Felicia +Margarita +Sabrina +Maribel +Sonya +Irma +Kim +Kristy +Rose +Juanita +Rachelle +Rita +Ruby +Tami +Charlene +Nichole +Rochelle +Esther +Cassandra +Eva +Caroline +Elisa +Helen +Keri +Kelli +Kerry +Elaine +Kimberley +Araceli +Stacie +Joanne +Kara +Terri +Belinda +Darlene +Alice +Kristie +Toni +Alisa +Jody +Silvia +Lynn +Sally +Elena +Frances +Naomi +Rachael +Debbie +Joyce +Kellie +Maricela +Marisol +Tracie +Alexandra +Cheri +Karla +Adrienne +Kirsten +Trisha +Christie +Roberta +Priscilla +Rosemary +Antoinette +Janice +Judith +Dina +Sherri +Angel +Arlene +Olga +Sophia +Beth +Candice +Jenifer +Jennie +Melody +Becky +Lydia +Nikki +Shirley +Ramona +Stefanie +Celeste +Isabel +Kendra +Staci +Sandy +Candace +Griselda +Jean +Dolores +Gretchen +Katina +Meredith +Brooke +Evelyn +Tasha +Nora +Shelby +Charlotte +Kerri +Roxanne +Shana +Shawn +Eileen +Judy +Nina +Tanisha +Bernadette +Cathy +Esmeralda +Joann +Yesenia +Angelique +Bertha +Corina +Grace +Olivia +Beverly +Kelley +Christa +Dena +Latasha +Maureen +Lara +Audrey +Brandie +Charity +Jeannette +Liza +Vicki +Marlene +Rebekah +Shauna +Elsa +Hilda +Marina +Mindy +Miriam +Sonja +Angie +Casey +Josephine +Amelia +Carolina +Consuelo +Ericka +Jackie +Lynette +Marcella +Rocio +Camille +Cherie +Ellen +Graciela +Janelle +Katie +Tania +Delia +Ginger +Jenna +Loretta +Marcia +Marla +Teri +Lilia +Noemi +Pauline +Shanna +Tammie +Vivian +Celia +Karin +Lucia +Courtney +Georgina +Janine +Keisha +Lauren +Serena +Betty +Lourdes +Marisela +Sheryl +Christi +Josefina +Lillian +Luz +Rene +Tisha +Wendi +Cara +Chandra +Jeanne +Alejandra +Beatriz +Kenya +Elisabeth +Jeannie +Kimberlee +Summer +Amie +Deana +Genevieve +Lena +Liliana +Peggy +Imelda +Jodie +Antonia +Jana +Shari +Dianna +Dora +Marissa +Aurora +Edith +Karina +Carey +Marilyn +Tonia +Bobbie +Gail +Jane +Jeannine +Johanna +Lupe +Marci +Mia +Penny +Alisha +Alyssa +Elva +Juana +Marsha +Marta +Terry +Alexis +Bethany +Elvia +Ingrid +Melisa +Ashley +Cari +Dorothy +Faith +Hilary +Jeanine +Leanne +Rosario +Candy +Esperanza +Janette +Rosie +Alethea +Karrie +Laurel +Tabitha +Tammi +Francisca +Latonya +Lesley +Billie +Emma +Estela +Hope +Ronda +Susanne +Suzette +Corinne +Leann +Michael +Mona +Terra +Athena +Chelsea +Gabrielle +Hannah +Lea +Maryann +Susie +Vickie +Claire +Deanne +Iris +Autumn +Beatrice +Catina +Francine +Tawnya +Vicky +Bridgette +Juliet +Latanya +Lora +Lucy +Myra +Noelle +Abigail +Corinna +Estella +Jacquelyn +Karyn +Lorie +Magdalena +Marianne +Meghan +Mireya +Bernice +Darcy +Dionne +Elise +Malinda +Marcie +Paige +Rosalinda +Sasha +Susanna +Tamika +Tamra +Gwendolyn +Lakeisha +Lakisha +Maya +Minerva +Patrice +Stella +Tera +Alissa +Allyson +Audra +Cathleen +Deena +Elvira +Marcela +Marjorie +Ursula +Alana +Celina +Jami +Julianne +Mercedes +Rena +Sofia +Aida +Amalia +Bianca +Cecelia +James +Leigh +Lynda +Marcy +Rebeca +Sherrie +Tracee +Darla +Eleanor +Gena +Jason +Joan +Kasey +Marlo +Nadine +Rosalie +Charmaine +Jessie +Jocelyn +Juliana +Latisha +Leilani +Maritza +Mayra +Paulette +Angelita +Daisy +Danette +Francesca +Hillary +Isela +Janel +Janell +Jasmine +Jo +Josie +Julissa +Justine +Latrice +Lee +Louise +Socorro +Wanda +Adela +Caryn +Clara +Doreen +Leanna +Lidia +Maisha +Mari +Mirella +Misti +Bobbi +Corey +Edna +Glenda +Shellie +Suzanna +Valarie +Ami +Aracely +Constance +Dianne +Kerrie +Ladonna +Mirna +Pearl +Rosanna +Shanda +Sheree +Xochitl +Davina +Doris +Evangelina +June +Karie +Kate +Mandy +Nanette +Rosalva +Rosio +Sunshine +Tessa +Annie +Bridgett +Carissa +Carly +Chanda +Cory +Fabiola +Fatima +Genea +Georgia +Ida +Jaime +Janna +Jolene +Krystal +Lana +Maggie +Mariana +Ofelia +Selena +Simone +Aisha +Catalina +Concepcion +Corrina +Eliza +Jaqueline +Jeri +Margie +Margo +Mariah +Monika +Natalia +Poppy +Rosemarie +Sandi +Shannan +Shanon +Tameka +Tia +Venus +Aileen +Brandee +Carie +Cassie +Delilah +Eugenia +Gladys +Katharine +Lashawn +Lily +Lucinda +Lynnette +Mara +Marion +Marnie +Patty +Randi +Shane +Vera +Anissa +Casandra +Catrina +Christian +Christopher +Chrystal +Daphne +David +Dominique +Florence +Josette +Kori +Leila +Lynne +Miranda +Noel +Penelope +Perla +Reina +Rosalba +Alexandria +Cori +Dara +Deann +Eloisa +Gayle +Gricelda +Ivonne +Ivy +Kisha +Lina +Lorrie +Myrna +Richelle +Roxanna +Shelli +Windy +Yadira +Buffy +Candida +Caren +Clarissa +Danelle +Janie +Juli +Kristal +Latoya +Leeann +Lisette +Malissa +Robert +Tosha +Violeta +Anabel +Anel +Betsy +Chantel +Chastity +Cher +Cristy +Deirdre +Delores +Kirstin +Larissa +Letitia +Nichol +Tabatha +Adrian +Adrianne +Alia +Alycia +Anastasia +Briana +Colette +Corrie +Denice +Dusty +Elia +Francis +Gabriella +Jenni +Juan +Juliette +Justina +Katy +Layla +Leona +Lizette +Lorna +Marian +Martina +Renae +Rosanne +Roseann +Shelia +Stacia +Terrie +Therese +Trudy +Annmarie +Aubrey +Brigitte +Chris +Cicely +Corrine +Daniel +Daniela +Daniella +Dayna +Eve +Hollie +Inez +Jeana +Jena +Joni +Karri +Lakesha +Lia +Luisa +Michell +Rosalia +Sue +Tamera +Tonja +Trista +Alyson +Angeline +Annamaria +Anthony +Antionette +Ayanna +Brigette +Callie +Cameron +Carina +Christal +Christel +Cindi +Cora +Elissa +Eunice +Jamila +Janeen +Jannette +John +Jose +Julianna +Kami +Kesha +Kris +Lashonda +Lila +Marylou +Melodie +Mitzi +Reyna +Rosaura +Roxana +Saundra +Stefani +Stephenie +Sunny +Thelma +Tiffani +Tyra +Valorie +Alina +Andria +Anitra +Annemarie +Belen +Brittany +Claudine +Crista +Debora +Deserie +Ebony +Evette +Geraldine +Jan +Janis +Jesus +Kiersten +Lauri +Lilly +Lindsay +Lucretia +Marivel +Maxine +Pilar +Richard +Shantel +Sierra +Sondra +Tamar +Trena +Vikki +Adina +Alysia +Amparo +Anjanette +Annamarie +Arcelia +Carole +Cary +Cherise +Dalila +Darci +Darcie +Della +Elsie +Ernestina +Fanny +Georgette +Guillermina +Jeanie +Kathrine +Leslee +Letisia +Lucille +Manuela +Miesha +Raina +Rayna +Sheena +Sherie +Valentina +Adrianna +Alanna +Annabelle +Armida +Berta +Brook +Carin +Cathryn +Chanel +Dalia +Dani +Delfina +Demetria +Elisha +Flor +Flora +Geneva +Gillian +Ivette +Jayme +Julieta +Maricruz +Marlena +Myesha +Nicki +Nicol +Petra +Selina +Shawnna +Shonda +Starla +Tamiko +Tana +Althea +America +Angelic +Annalisa +Brian +Carmela +Carmelita +Collette +Cristi +Cristine +Cyndi +Dee +Dori +Elaina +Elida +Emilia +Fawn +Giselle +Helene +Jerri +Jolie +Jonna +Karena +Kimberlie +Kyra +Laticia +Lawanda +Leonor +Liz +Lorri +Lucila +Lupita +Maia +Marni +May +Mercy +Micaela +Mindi +Morgan +Myisha +Nellie +Piper +Racheal +Shani +Shara +Shawnee +Soledad +Tiffanie +Valeria +Viviana +Asia +Blythe +Bree +Candi +Cecily +Charleen +Clare +Deidre +Destiny +Devon +Dolly +Herlinda +Hortencia +Jeni +Joey +Johnna +Joleen +Karey +Kira +Lanette +Lani +Latosha +Lilian +Louisa +Madeline +Magda +Nelly +Nichelle +Nicola +Niki +Nikole +Patience +Rosana +Sharron +Stacee +Susannah +Tisa +Toby +Whitney +William +Zoe +Anika +Antonette +Astrid +Bambi +Brenna +Britt +Candelaria +Candie +Carlene +Charissa +Cherry +Cheyenne +Cristin +Cruz +Danica +Dannielle +Delicia +Dona +Dorene +Ella +Erlinda +Ethel +Evangeline +Felecia +Gabriel +Gracie +Greta +Haydee +Helena +Holli +Iliana +Jade +Jenniffer +Joi +Kindra +Lashanda +Lashon +Latonia +Lela +Liane +Lola +Lolita +Mark +Maura +Melonie +Mimi +Nadia +Nathalie +Roslyn +Sabina +Sadie +Sarina +Selene +Shawnda +Shilo +Shiloh +Steven +Susy +Tamatha +Tamisha +Tanesha +Violet +Willow +Zulema +Abby +Alberta +Ali +Alyce +Analia +Argelia +Aurelia +Ava +Belia +Caitlin +Camilla +Caprice +Carri +Catharine +Celena +Cherish +Christiana +Cinthia +Darleen +Dawna +Deidra +Donald +Donielle +Eden +Elana +Eric +Geri +Giovanna +Jeanna +Jene +Jenelle +Jerry +Joelle +Julisa +Kandi +Karna +Kevin +Latrina +Lavonne +Lenore +Lindsey +Lindy +Linnea +Lizabeth +Malaika +Malia +Mariela +Michaela +Nicolle +Noreen +Oralia +Patrica +Phaedra +Polly +Racquel +Rana +Roxann +Scott +Shonna +Steffanie +Stephaine +Stormy +Sydney +Tanja +Treva +Trinity +Tuesday +Yasmin +Alisia +Allegra +Araseli +Aura +Benita +Beronica +Bettina +Charisse +Cheree +Claudette +Daniele +Danyel +Dennise +Dyan +Elda +Emilie +Evonne +Faye +Genoveva +Hana +Hazel +Ilene +India +Janene +Jasmin +Jewel +Jonathan +Jonelle +Juliann +Kacey +Kandice +Kandy +Karma +Keshia +Larisa +Latricia +Leyla +Liana +Libby +Lizbeth +Lois +Lorene +Marianna +Mellisa +Mistie +Mollie +Nena +Nyree +Portia +Rachele +Rachell +Rae +Rafaela +Renata +Rhea +Robbin +Rona +Rosalind +Rosamaria +Sacha +Salina +Seana +Shameka +Sharee +Shay +Shea +Shondra +Shoshana +Star +Tawana +Tiffiny +Trinidad +Yanira +Ada +Adelina +Alecia +Alesha +Aleta +Anamaria +Angelia +Annika +Apryl +Ashlee +Ayesha +Azucena +Barbra +Britta +Brittney +Cambria +Charla +Charles +Chasity +Chere +Christin +Coleen +Danna +Dannette +Dawne +Edward +Elizabet +Enedina +Ernestine +Felicity +Franchesca +Freda +Ginny +Gisela +Haley +Hayley +Hermelinda +Ileana +Isabelle +Janae +Jeffrey +Jenea +Jenee +Jesse +Jillian +Jolynn +Joseph +Joshua +Julee +Julene +Kali +Kasandra +Kay +Kellee +Kendall +Kia +Kimiko +Krishna +Larhonda +Laronda +Leonora +Lesa +Letisha +Luana +Machelle +Malisa +Marcelina +Mariaelena +Marika +Mariza +Marti +Melina +Miki +Millie +Misha +Missy +Moriah +Nicolette +Noelia +Nydia +Patsy +Paul +Petrina +Phyllis +Precious +Risa +Rosalina +Roselyn +Ryan +Shae +Shalonda +Sharla +Sharlene +Shiela +Skye +Sophie +Spring +Stephani +Sulema +Suzie +Tamie +Tanika +Taunya +Tawny +Tedra +Thea +Tobie +Tori +Tressa +Twyla +Valencia +Velvet +Venessa +Viola +Yessenia +Zulma +Adria +Adriane +Aide +Alba +Albert +Alexa +Alexia +Alishia +Alondra +Alysha +Amee +Aundrea +Brande +Brianna +Cami +Carisa +Carlotta +Casie +Chantelle +Charis +Charise +Chekesha +Cherilyn +China +Christen +Cinnamon +Coral +Coreen +Corie +Cristie +Dania +Danyelle +Daria +Davida +Demetra +Devona +Diedra +Dorian +Ena +Erma +Farah +Frankie +Gigi +Herminia +Ines +Jacquelin +Jacquline +Jaimie +Jazmin +Jenell +Jennefer +Jennette +Jesica +Josephina +Kamie +Karissa +Kathi +Kimber +Kimberely +Lacey +Lakenya +Lakeshia +Lanita +Laureen +Laverne +Leandra +Lenora +Lissa +Lissette +Lizeth +Loraine +Maile +Mandi +Mario +Maryellen +Matilda +Matthew +Mellissa +Melony +Mendy +Mildred +Millicent +Nell +Neva +Otilia +Patti +Paulina +Pia +Pricilla +Randee +Rashell +Roseanna +Roseanne +Serina +Shanan +Shanta +Shanti +Shawana +Shayla +Shereen +Shona +Starr +Susann +Suzan +Sybil +Talitha +Tenisha +Terese +Thomas +Thomasina +Tobi +Tonisha +Velia +Wendie +Winona +Yolonda +Adele +Adelita +Alejandrina +Alena +Alessandra +Aliza +Amoreena +Analisa +Angelena +Arianna +Ariel +Babette +Bonny +Brandon +Brigid +Cameo +Cassaundra +Celestine +Celine +Chantal +Chloe +Cristal +Daina +Danae +Danell +Darice +Dione +Dulce +Edie +Elba +Elodia +Erendira +Ester +Evelia +Felisa +Fiona +Gale +Gia +Gianna +Gregory +Gwen +Hallie +Hanna +Ina +Isaura +Janay +Janean +Jayne +Jenette +Jenine +Jennell +Jovita +Juliane +Kamilah +Karly +Kayla +Keysha +Kiesha +Krissy +Kristan +Kyla +Kyndra +Lainie +Laquita +Lashawnda +Lashunda +Leana +Linette +Lonnie +Luciana +Mabel +Mae +Magaly +Maricella +Meagan +Mechelle +Melani +Melany +Melia +Meridith +Mila +Moira +Necole +Nidia +Nisha +Nita +Pamala +Paola +Patrina +Patrisia +Phoebe +Prudence +Raelene +Randy +Rashida +Raymond +Regan +Renita +Robynn +Rosita +Rowena +Roxie +Ruthann +Sagrario +Sandee +Sean +Sharonda +Shayna +Shayne +Shellee +Shonte +Sommer +Stephany +Tamala +Tamela +Teresita +Tomika +Tommie +Trudi +Tunisia +Verna +Willie +Windi +Yevette +Zoila +Abbie +Agueda +Alaina +Altagracia +Alvina +Amiee +Amity +Anabell +Andra +Anette +Anjelica +Ara +Arianne +Arleen +Augustina +Beatris +Bella +Bethanie +Bobby +Brett +Bronwyn +Bryan +Brynn +Buffie +Camisha +Carl +Carlota +Carmel +Cassondra +Cecile +Chad +Cherene +Cherrie +Chrissy +Cinda +Clarice +Consuela +Crissy +Crysta +Cybil +Dalene +Danita +Dannell +Dedra +Deeanna +Delila +Deloris +Demetrius +Denna +Deshawn +Diahann +Dinah +Dionna +Dixie +Dorinda +Dustie +Echo +Elidia +Eloise +Elyse +Ember +Estelle +Faviola +Felica +Felice +Gayla +Genny +Georgiana +Georgianna +Germaine +Gerri +Gilda +Gisele +Glenna +Glory +Goldie +Harmony +Honey +Hortensia +Ilda +Inga +Ivana +Jacki +Jamey +Jamilah +Jamillah +Janea +Janett +Javier +Jaymi +Jeanelle +Jeanene +Jeniffer +Jennelle +Jeremy +Jesenia +Jewell +Jina +Jodee +Johnnie +Julian +Justin +Kai +Karolyn +Kasie +Kassandra +Katheryn +Kelsey +Kenneth +Khristina +Kitty +Kristel +Kristian +Kyle +Kymberly +Laila +Lashaun +Latesha +Lavon +Lesli +Lillie +Livia +Lorina +Lorinda +Loukisha +Madeleine +Madelyn +Madonna +Malina +Marilynn +Marleen +Marty +Maryanne +Marybel +Meadow +Melba +Melita +Meri +Michaelle +Michal +Michel +Michi +Mickie +Micole +Milissa +Minda +Monalisa +Mylene +Myriam +Nannette +Natacha +Natascha +Nereida +Nereyda +Nicolasa +Nissa +Octavia +Pam +Ramon +Rani +Rebbecca +Rochell +Romana +Ronald +Rosalyn +Roxane +Rubi +Rudy +Sabra +Sacheen +Samia +Santina +Sarita +Sasheen +Shala +Shalene +Shanell +Shantell +Shantelle +Shasta +Shaun +Shaunna +Shelbi +Sherrell +Shontel +Shyla +Sian +Starlene +Steffani +Tamyra +Tanasha +Tandra +Tayna +Terisa +Tifany +Tinisha +Tristin +Twila +Velma +Zena +Zenia +Aaron +Adelaida +Agnes +Aime +Alayna +Alethia +Alida +Alix +Ammie +Ananda +Andreana +Angella +Anglea +Anisa +Anjeanette +Annabell +Annalee +Anya +Aria +Ariana +Arline +Armando +Asha +Ashanti +Ayana +Bari +Becki +Berenice +Bessie +Bethel +Blanche +Bonita +Brea +Breanna +Brita +Britney +Bronwen +Bryn +Cammie +Cammy +Carlee +Carley +Carli +Carlie +Carlyn +Cathrine +Celestina +Cesilia +Chantell +Charlette +Cherice +Christiane +Christol +Claribel +Clarisa +Cleo +Criselda +Dacia +Dale +Damaris +Danetta +Danika +Danyell +Dawnelle +Deeann +Deedee +Delphine +Demitra +Denita +Denyse +Deseree +Desirae +Desirie +Dinora +Diona +Dusti +Dustin +Eddie +Edelmira +Elicia +Elisabet +Elke +Ellie +Emelia +Enid +Ermelinda +Errin +Felisha +Fernando +Florentina +Francisco +Frank +Genie +Gerald +Grabiela +Gregoria +Gypsy +Henrietta +Hilaria +Holley +Idalia +Ilona +Imani +Iona +Jaclyn +Jamee +Jammie +Janella +Janey +Janina +Jannet +Jenean +Jenene +Jennafer +Jenne +Jenney +Jennine +Jesseca +Jocelyne +Joe +Joetta +Jolyn +Joselyn +Julieann +Kaci +Kacie +Kamisha +Kanika +Kanisha +Kasha +Katrice +Kecia +Keely +Keiko +Kenyatta +Keren +Kerie +Kerstin +Kirstie +Korie +Krisinda +Kristyn +Lakeysha +Lakiesha +Lanetta +Lashawna +Lavina +Leena +Liduvina +Ligia +Lonna +Lorelei +Loren +Lorien +Lorretta +Lorriane +Love +Lyn +Lynell +Magnolia +Malena +Manuel +Marcelle +Maren +Marlen +Marlies +Marquita +Marysol +Matilde +Mayte +Melodee +Mendi +Merry +Michaele +Micki +Milinda +Mina +Mischa +Mishelle +Muriel +Nedra +Neysa +Nickole +Nilda +Nohemi +Nonnie +Nyla +Ola +Page +Paloma +Pascha +Pebbles +Rabecca +Radiah +Rainbow +Randa +Rashelle +Raylene +Rebecka +Reva +Rhoda +Ricki +Rima +Robbie +Robbyn +Ronnie +Rosaisela +Rosetta +Roshell +Salena +Samara +Samuel +September +Sequoia +Serenity +Shaina +Shanee +Shanel +Shareen +Sharese +Sharleen +Shawnette +Shawntel +Shelina +Shera +Sherron +Shontell +Simona +Siobhan +Soraya +Stephen +Sumiko +Sundae +Suzana +Suzy +Synthia +Taj +Takisha +Talya +Tamanika +Tameca +Tamieka +Tammara +Tamura +Tarah +Taryn +Tatanisha +Tatum +Tausha +Tavia +Tawna +Taya +Tenaya +Teressa +Tereza +Tess +Tiffiney +Tiffini +Tinamarie +Tobey +Todd +Toi +Tomeka +Tosca +Trini +Tristen +Valisa +Veroncia +Vianey +Vickey +Vonetta +Wendee +Winnie +Xochilt +Yecenia +Yumi +Zaida +Zina +Jennifer +Michelle +Heather +Maria +Amy +Lisa +Kimberly +Melissa +Christina +Elizabeth +Stephanie +Angela +Veronica +Nicole +Rebecca +Julie +Jessica +Shannon +Laura +Monica +Patricia +Cynthia +Sandra +Sarah +Christine +Andrea +Kelly +Rachel +April +Mary +Wendy +Erin +Tiffany +Tina +Dawn +Danielle +Denise +Karen +Tracy +Claudia +Gina +Stacy +Diana +Susan +Amber +Carrie +Teresa +Alicia +Nancy +Heidi +Tanya +Michele +Anna +Tamara +Lori +Amanda +Kristen +Sara +Katherine +Melanie +Brenda +Deborah +Linda +Tammy +Erica +Leticia +Ana +Sonia +Brandy +Renee +Stacey +Crystal +Valerie +Angelica +Catherine +Emily +Kristin +Kristina +Dana +Victoria +Vanessa +Holly +Kathleen +Martha +Tara +Leslie +Theresa +Jacqueline +Rosa +Yolanda +Robin +Cindy +Norma +Melinda +Brandi +Jill +Deanna +Lorena +Jamie +Yvonne +Misty +Erika +Sylvia +Natalie +Shawna +Barbara +Regina +Gloria +Cheryl +Suzanne +Monique +Kathryn +Megan +Sharon +Christy +Pamela +Donna +Guadalupe +Gabriela +Yvette +Debra +Tonya +Carmen +Diane +Irene +Joy +Jenny +Allison +Julia +Margaret +Ann +Samantha +Janet +Leah +Shelly +Kristi +Paula +Alison +Carolyn +Courtney +Aimee +Kristine +Adriana +Anne +Raquel +Sheila +Katrina +Angelina +Carla +Kari +Anita +Cristina +Virginia +Alma +Joanna +Natasha +Maribel +Rhonda +Annette +Jeanette +Laurie +Carol +Jodi +Sherry +Desiree +Marie +Silvia +Ruth +Cecilia +Kristy +Susana +Araceli +Blanca +Colleen +Kara +Robyn +Sheri +Christie +Juanita +Krista +Felicia +Traci +Shelley +Joanne +Priscilla +Eva +Kristie +Nichole +Tricia +Helen +Sabrina +Cassandra +Stacie +Margarita +Bonnie +Kendra +Irma +Kim +Darlene +Elaine +Tracey +Bridget +Lorraine +Tami +Jody +Rochelle +Ruby +Charity +Esther +Jolene +Lydia +Marisol +Sonya +Connie +Esmeralda +Marisa +Molly +Trisha +Isabel +Judith +Maricela +Jenifer +Charlene +Elena +Trina +Katie +Caroline +Elisa +Karla +Angie +Joann +Luz +Rachael +Kathy +Adrienne +Kirsten +Melody +Olivia +Tasha +Rose +Candace +Alice +Brooke +Debbie +Naomi +Rita +Charlotte +Frances +Kellie +Marlene +Audrey +Celeste +Rachelle +Terri +Hilda +Kerri +Sally +Arlene +Dina +Kimberley +Roxanne +Shawn +Stefanie +Alexandra +Kelli +Kerry +Rebekah +Toni +Antoinette +Eileen +Ashley +Shauna +Angel +Olga +Rocio +Yesenia +Bernadette +Brandie +Keri +Sherri +Kelley +Autumn +Beth +Janelle +Nora +Rosemary +Janice +Roberta +Tanisha +Belinda +Lynn +Shirley +Candice +Gretchen +Jennie +Lauren +Teri +Angelique +Jeannette +Joyce +Staci +Corina +Tania +Alisa +Keisha +Latasha +Lilia +Mindy +Shana +Becky +Evelyn +Marina +Nina +Ramona +Sandy +Summer +Beatriz +Bertha +Edith +Cheri +Delia +Dena +Josephine +Grace +Nakia +Vicki +Meredith +Shelby +Tracie +Ginger +Judy +Marisela +Alejandra +Casey +Miranda +Nikki +Amelia +Cara +Jeannie +Lena +Sophia +Cathy +Graciela +Elisabeth +Elsa +Georgina +Maureen +Dianna +Dolores +Jana +Lara +Marissa +Vivian +Bethany +Christi +Jeanne +Loretta +Sonja +Antonia +Beverly +Emma +Liliana +Alexis +Cherie +Christa +Ericka +Lillian +Griselda +Hilary +Marcia +Wendi +Alisha +Lourdes +Miriam +Sheryl +Celia +Chelsea +Marsha +Jenna +Juana +Amie +Jane +Marcella +Pauline +Tisha +Carolina +Dorothy +Lynette +Mia +Aurora +Betty +Consuelo +Jean +Hope +Jackie +Peggy +Beatrice +Cari +Noemi +Serena +Sunshine +Ellen +Elvia +Imelda +Josefina +Karin +Marianne +Chandra +Latoya +Myrna +Audra +Karina +Michael +Mirna +Esperanza +Deana +Elvira +Gabrielle +Tabitha +Tammie +Jodie +Rene +Bobbie +Clara +Dora +Estela +Jeanine +Kenya +Liza +Marla +Mayra +Melisa +Tonia +Kimberlee +Leigh +Lesley +Marilyn +Marta +Sasha +Shanna +Carey +Isela +Jasmine +Jocelyn +Lakeisha +Lakisha +Leanne +Rosalinda +Sofia +Carly +Catalina +Darcy +Evangelina +Francine +Gail +Jacquelyn +Joan +Lucia +Mona +Penny +Susanna +Johanna +Lora +Lucy +Marci +Maryann +Tamra +Abigail +Genevieve +Glenda +Ingrid +Lea +Lupe +Gwendolyn +Hillary +Janine +Laurel +Marcela +Nadine +Shari +Candy +Francisca +Gladys +Juliet +Rosario +Stella +Terra +Camille +Claire +Corinne +Ebony +Tera +Alissa +Athena +Bernice +Janette +Latanya +Latonya +Maya +Vickie +Alyssa +Angelita +Cherish +June +Mireya +Tamika +Allyson +Latisha +Socorro +Aracely +Dominique +Faith +Janel +Maritza +Paige +Anabel +Davina +Jamila +Lana +Lindsay +Lorie +Maggie +Mercedes +Robert +Anastasia +Billie +Bridgette +Cathleen +Daisy +David +Gabriella +Latrice +Malinda +Ronda +Susie +Cori +Darla +Gena +Jaime +Katharine +Marcie +Marcy +Meghan +Myra +Noelle +Susanne +Tiffani +Annie +Fabiola +Patrice +Wanda +Xochitl +Carie +Corinna +Francesca +Ida +Jeri +Julianne +Lidia +Magdalena +Marjorie +Paulette +Randi +Rebeca +Bianca +Danelle +Jason +Kasey +Lucinda +Lynda +Maisha +Alana +Lina +Mara +Rosalie +Rosemarie +Sherrie +Windy +Aileen +Ami +Charmaine +Dayna +Doris +Edna +Estella +Hannah +Hollie +Janell +Natalia +Rena +Rosalva +Sheree +Bobbi +Demetria +Elise +Jeannine +Josie +Karrie +Kate +Kisha +Lindsey +Michell +Ofelia +Reyna +Rosalba +Rosio +Vicky +Yadira +Alyson +Annmarie +Chantel +Fatima +Jami +Krystal +Leann +Patty +Tameka +Terry +Tessa +Aisha +Alethea +Anel +Anitra +Catrina +Deanne +Deena +Jo +Julissa +Kami +Katy +Lashawn +Richelle +Rosanna +Suzette +Tammi +Tawnya +Adela +Brande +Chanda +Chrystal +Clarissa +Dianne +Ernestina +Gricelda +Jena +Juliana +Karie +Karyn +Kori +Marlo +Selena +Shanda +Venessa +Aida +Corrina +Jaqueline +Joey +Justine +Lorrie +Marian +Racheal +Tanesha +Alexandria +Christen +Eleanor +Geneva +Georgia +Jessie +Katina +Lakesha +Leilani +Lily +Mandy +Mariana +Rosalia +Rosie +Sadie +Ursula +Belen +Caren +Caryn +Cecelia +Celina +Christopher +Dionne +Iris +Ivy +Jeana +Jeanie +Kira +Leanna +Lee +Lorna +Lynnette +Misti +Petra +Roxana +Suzanna +Ada +Alexa +Angelia +Anjanette +Brandee +Chastity +Colette +Corey +Corrie +Cory +Deann +Elva +Janna +Larissa +Leila +Lilian +Penelope +Reina +Shane +Shanon +Sierra +Tamera +Amalia +Cecily +Constance +Danica +Daniella +Daphne +Doreen +Elissa +Eugenia +Eve +Gayle +Geraldine +Helena +Lila +Lola +Mariah +Marni +Minerva +Perla +Valarie +Violeta +Carissa +Cicely +Danette +Ivonne +Kerrie +Nellie +Shellie +Sue +Viviana +Adrianne +Arcelia +Betsy +Bridgett +Candida +Cristy +Dara +Denice +Elaina +Georgette +Inez +James +John +Joleen +Kathrine +Margie +Marnie +Noel +Rosana +Sondra +Valeria +Venus +Vikki +Alina +Antionette +Brenna +Carri +Jasmin +Layla +Liana +Louise +Marion +Nanette +Rhoda +Rosaura +Ryan +Selina +Stefani +Vera +Angeline +Anjelica +Annemarie +Berta +Brittany +Carin +Chanel +Christian +Cristine +Dalia +Dawna +Debora +Destiny +Elana +Guillermina +Janeen +Janis +Joni +Lashonda +Leona +Malissa +Patsy +Phyllis +Shannan +Shawnda +Shonna +Tia +Alia +Briana +Buffy +Casandra +Christiana +Concepcion +Corrine +Dayanara +Deirdre +Delilah +Faviola +Florence +Jenni +Jesse +Jose +Kesha +Lani +Lia +Luisa +Malia +Margo +Martina +Meagan +Micaela +Pearl +Sandi +Shonda +Stephenie +Tobi +Trista +Trudy +Zoe +Adina +Adria +Aide +Ava +Bree +Carmela +Cary +Chasity +Coleen +Cortney +Daniel +Darcie +Deidre +Elida +Elisha +Emilia +Eric +Eunice +Evette +Fawn +Gillian +Haydee +Jeanna +Jenelle +Julianna +Kristal +Lanette +Leandra +Lela +Lisette +Marivel +Maxine +Miesha +Mirella +Rosalina +Shani +Tabatha +Tamar +Therese +Tyra +Andria +Annabel +Annamarie +Araseli +Armida +Aubrey +Carole +Cherise +Claudine +Deidra +Dorian +Elia +Harmony +Hazel +Hortencia +Jade +Jan +Janie +Joelle +Jolie +Kris +Latosha +Lenora +Manuela +Marcelina +Mildred +Monika +Nathalie +Nichelle +Nikole +Pilar +Shea +Shelia +Simone +Soledad +Stacia +Taryn +Tenisha +Whitney +Adele +Adelina +Adrian +Adrianna +Alisia +America +Angelic +Antonette +Cami +Cristin +Danna +Delores +Felecia +Flor +Frankie +Julieta +Juliette +Letitia +Liberty +Lois +Louisa +Lynne +Maile +Marguerite +Melodie +Mendy +Michaela +Myisha +Nelly +Nia +Nicol +Niki +Noreen +Roxanna +Seana +Shantel +Sharlene +Shawnna +Skye +Stephani +Thea +Thelma +Violet +Zulma +Alecia +Alena +Alesha +Alysia +Arianne +Ayana +Berenice +Blythe +Brook +Cameron +Carina +Cassie +Chantelle +Charisse +Cindi +Cinnamon +Corie +Daniela +Devon +Eden +Ginny +Iliana +Jada +Karena +Kelsey +Lindy +Mabel +Mariza +Mark +Marylou +Mechelle +Melonie +Mercy +Morgan +Nissa +Polly +Rae +Renae +Richard +Spring +Tamie +Terrie +Tiffanie +Tori +Valentina +Akilah +Alanna +Alycia +Amparo +Andra +Annalisa +Benita +Beronica +Brigette +Brigitte +Casie +Christin +Cora +Danya +Delfina +Dusty +Holli +Ina +Isaura +Jayme +Juli +Justina +Kam +Karri +Kay +Kia +Kimberlie +Lakeshia +Lauri +Lawanda +Lenore +Leonor +Maia +Maira +Marlena +Mellissa +Myesha +Nadia +Poppy +Rashida +Rosalyn +Roseann +Salina +Sheena +Star +Sunny +Tamiko +Tana +Tanika +Trinidad +William +Adelita +Alejandrina +Anika +Asia +Aundrea +Aurelia +Celestina +Charissa +Cherilyn +Chris +Christal +Coral +Dani +Dannielle +Dee +Donald +Elda +Ella +Eloisa +Enedina +Ester +Flora +Gisela +Ileana +Janene +Jerri +Johnna +Kacey +Kandy +Keely +Kellee +Kirstin +Ladonna +Lashanda +Lillie +Lizbeth +Lorelei +Luana +Lucila +Lupita +Mari +Maricruz +Maryanne +Maura +Mindi +Monalisa +Nona +Nova +Rafaela +Raina +Rhea +Rina +Rosalind +Shalonda +Shandra +Shante +Shelli +Sherie +Shoshana +Starla +Tanja +Tatanisha +Teresita +Viola +Yasmin +Zulema +Aletha +Ali +Anamaria +Aretha +Ariana +Bronwyn +Carley +Cathryn +Chantal +Charleen +Christel +Cinthia +Cristal +Darleen +Eliza +Elizabet +Elsie +Erlinda +Estrella +Gigi +Giselle +Gwen +Herlinda +Ivette +Jeffrey +Josette +Juliane +Kassandra +Kenna +Kevin +Kristan +Lacey +Latricia +Leeann +Lesli +Lissa +Lizette +Loraine +Lorinda +Lorri +Mellisa +Mitzi +Mollie +Nicolle +Nikita +Noelia +Nola +Nyree +Oralia +Robbie +Rosanne +Roxann +Sharron +Shiloh +Starr +Steven +Susannah +Tamisha +Tawana +Tosha +Toya +Valorie +Zoila +Adriane +Alba +Analia +Annabelle +Candelaria +Carisa +Carlene +Carmel +Carmelita +Cherry +Chloe +Cristie +Daniele +Danita +Dedra +Delicia +Della +Deserie +Dinah +Dori +Emilie +Evelia +Fanny +Francis +Harriet +Hayley +Ilda +Isabelle +Jacinda +Janae +Jeniffer +Jennefer +Jennette +Jeremy +Jesus +Jewel +Josephina +Jovita +Kameron +Kimberli +Kindra +Kyle +Latashia +Lesa +Leyla +Liane +Loren +Lucretia +Luis +Magda +Mandi +Marilu +Marysol +Matilde +Matthew +May +Merry +Mirian +Patience +Patti +Piper +Rachell +Racquel +Regan +Rolanda +Rosita +Roslyn +Sarina +Season +Shameka +Shanika +Sharla +Shaunna +Shay +Shiela +Stephany +Tamala +Tomeka +Tracee +Trinity +Velia +Verna +Willow +Xochilt +Abby +Alaina +Alexia +Althea +Alva +Alysha +Amee +Anastacia +Anthony +Apryl +Aura +Barbra +Bobby +Brian +Britt +Caitlin +Callie +Candi +Carleen +Carlos +Catharine +Catina +Celena +Cheyenne +Crista +Cristen +Cruz +Dacia +Danika +Danyel +Danyelle +Daria +Deeann +Deedee +Dennise +Desirae +Dixie +Elicia +Emmy +Enriqueta +Erendira +Gabriel +Giovanna +Gladis +Iesha +Ines +Jamaica +Jeni +Jenniffer +Jillian +Joi +Jordan +Joshua +Joslyn +Karey +Karissa +Karna +Kasandra +Kathi +Kendall +Kimya +Kyla +Lacy +Larry +Lashon +Latesha +Letisia +Lonnie +Lorene +Madeleine +Malika +Margot +Melony +Meridith +Misha +Nannette +Nedra +Neva +Nicki +Octavia +Paola +Patrisia +Paul +Rana +Rebecka +Rikki +Rosaisela +Roseanne +Rosina +Rubi +Sarita +Shanta +Shanti +Shara +Shawana +Sophie +Suzy +Takisha +Tamanika +Tamatha +Tamela +Tamica +Taunya +Terina +Tomasa +Tomika +Winnie +Yecenia +Adelaida +Alida +Alyse +Amiee +Amina +Annamaria +Annika +Antonio +Augustina +Ayanna +Ayesha +Azucena +Bonny +Bryna +Cambria +Carolynn +Chekesha +Chenoa +Cher +Cherice +Clare +Claudette +Collette +Cristi +Cyndi +Dahlia +Dalila +Danyell +Darci +Debby +Denisha +Dorene +Erinn +Ernestine +Errin +Eryn +Evangeline +Evonne +Felisha +Gia +Gilda +Haley +Ilene +Imani +Jacquelin +Jaimie +Jazmin +Jeanene +Jenine +Jonathan +Joycelyn +Juliann +Julisa +Kai +Kali +Kandice +Kecia +Kimber +Kimi +Koren +Kyra +Lanita +Latonia +Lawana +Lilly +Lorenza +Luciana +Malaika +Margret +Mariela +Marti +Melia +Melina +Mignon +Milissa +Mistie +Nichol +Nicola +Nicolette +Princess +Rachele +Raelene +Rashelle +Reena +Ricardo +Rowena +Sacheen +Scarlett +Serina +Sharonda +Shasta +Shawnee +Sherice +Shilo +Shira +Shona +Stacee +Steffanie +Stephen +Synthia +Talisha +Tammara +Terese +Thomas +Tiffaney +Tobie +Tommie +Tony +Trena +Tristan +Victor +Xochil +Yessenia +Acacia +Adam +Alberta +Alishia +Andreana +Andrew +Annalee +Annetta +Anya +Argelia +Ariel +Audrea +Becki +Bessie +Brett +Camelia +Cameo +Camilla +Camisha +Carlee +Carmella +Carmina +Charis +Charla +Charlyn +Cherisse +Christianne +Clarice +Clover +Corine +Damon +Daniell +Danny +Darby +Darice +Dasha +Deeanna +Demetra +Dione +Dulce +Edelmira +Ethel +Faye +Felisa +Germaine +Glory +Gracie +Greta +Hallie +Inger +Jackeline +Jacy +Janee +Jannette +Jeanetta +Jesica +Joanie +Jodee +Jolynn +Jonette +Jordana +Joseph +Juan +Kacy +Kamilah +Kandi +Karly +Karma +Kathie +Katrena +Keesha +Keira +Keshia +Kiera +Kiersten +Kiesha +Kiley +Kimberely +Kimiko +Krisha +Kristel +Lakiesha +Larisa +Lashawnda +Laureen +Libra +Ligia +Linette +Livia +Liz +Lizabeth +Machelle +Madeline +Malena +Malisa +Maranda +Mariaelena +Mariam +Maricella +Mattie +Mayte +Melynda +Mesha +Mika +Miki +Millie +Mira +Miroslava +Necole +Nickie +Otilia +Paris +Patrica +Peter +Portia +Rayna +Renita +Robbin +Roni +Rosalee +Rosamaria +Roseanna +Ruthie +Sage +Selene +September +Serene +Shaleen +Shalene +Shanell +Sharleen +Sherita +Shondra +Shyla +Stephannie +Sulema +Susy +Sybil +Talia +Talitha +Tatum +Tiffiny +Tira +Tressa +Trini +Velvet +Vonetta +Yanira +Yolonda +Zaida +Zandra +Adena +Alta +Aminah +Amity +Analisa +Anetra +Angeles +Angella +Ani +Anjeanette +Annabell +Arianna +Arin +Arleen +Arlena +Arwen +Asusena +Babette +Bambi +Beatris +Beckie +Bonita +Brianna +Brigid +Candance +Carlota +Carlotta +Chantell +Charlette +Chelsey +Cherlene +Clarisa +Criselda +Damaris +Danae +Dania +Dawne +Delana +Delena +Delisa +Devin +Dolly +Dyan +Dyana +Edie +Elma +Ena +Erik +Erma +Ermelinda +Eydie +Florencia +Franchesca +Gemma +Genea +Genoveva +Geri +Gerri +Gianna +Gypsy +Herminia +Ilana +Irasema +Isa +Jaimee +Jamey +Jenea +Jenette +Jenne +Jesseca +Jewell +Jinny +Johna +Jolyn +Jonna +Justin +Kacie +Kamala +Kandace +Karlee +Karli +Katheryn +Kati +Kayce +Kenneth +Kera +Krishna +Kristiana +Laila +Laquita +Larhonda +Lashanna +Launa +Lavonne +Lawanna +Leatrice +Leola +Leonora +Lilliana +Lisha +Lissette +Loni +Lucero +Lus +Mae +Makisha +Marcelle +Mario +Marquita +Meegan +Meg +Mendi +Michal +Michela +Miko +Mimi +Missy +Myla +Nakisha +Natalee +Nena +Nickole +Nikia +Ninfa +Nita +Noriko +Nubia +Nydia +Odessa +Pennie +Phaedra +Precious +Pricilla +Qiana +Ranee +Raylene +Renata +Renne +Rossana +Roxane +Sabina +Sabra +Sacha +Samara +Saundra +Shanie +Shannen +Shawndra +Sherilyn +Sherryl +Shiree +Silbia +Steffany +Stephine +Sulma +Suzan +Suzana +Tahirah +Takesha +Tamia +Tamura +Tarina +Tausha +Taya +Temeka +Tena +Theodora +Tiana +Tirzah +Toi +Tomi +Troy +Valencia +Vannessa +Verenice +Veronika +Wendie +Aaron +Abbey +Abbie +Abigayle +Adella +Afton +Alejandro +Alessandra +Alex +Alexander +Allie +Amara +Amira +Anabell +Ananda +Anette +Angelo +Angelyn +Anissa +Anja +Anjali +Anneliese +Antonina +Aracelia +Arasely +Areli +Arika +Asha +Baby +Benjamin +Bethann +Bettina +Billi +Billiejo +Brandice +Brandon +Bryan +Brynn +Calandra +Cali +Carl +Carli +Carlyn +Caron +Cecile +Chaka +Charlena +Charles +Charline +Cheree +Cherrie +Christeen +Christena +Christiane +Christinia +Claribel +Consuela +Coreen +Corena +Crystle +Dalene +Danell +Davida +Deedra +Denielle +Dennis +Deshawn +Dessie +Detra +Diann +Dionna +Donielle +Dorinda +Dusti +Eboni +Eduardo +Edward +Edwina +Elba +Elidia +Ellie +Elodia +Elyse +Ema +Emilee +Esperansa +Estelle +Farrah +Feather +Fiona +Frank +Freda +Gale +Gema +George +Gerardo +Glenna +Grasiela +Gregory +Halima +Hanna +Heaven +Hermelinda +Hiedi +Hollee +Honey +Hortensia +Isis +Jacinta +Jacquline +Jaimi +Jammie +Janay +Janea +Janella +Janina +Jannett +Jay +Jaylene +Jayne +Jeanett +Jenee +Jenene +Jenice +Jenise +Jennelle +Jermaine +Jessika +Joel +Johana +Johnnie +Jorge +Josefa +Judi +Kanisha +Karima +Karlene +Karley +Kasi +Kasie +Katherin +Kaye +Keli +Keysha +Khristina +Kina +Kitty +Kourtney +Kristeen +Kristene +Kristyn +Krysti +Kyndra +Lacresha +Lakia +Lalena +Lanisha +Laquisha +Larina +Latausha +Latina +Latrina +Leana +Leeanne +Leighann +Leondra +Leshawn +Leslee +Lety +Libby +Lili +Lizeth +Lolita +Loriann +Lorianne +Lory +Luann +Lucrecia +Lyla +Lyra +Madelyn +Maegan +Manda +Marbella +Marcus +Maren +Mariadelourdes +Marialuisa +Mariann +Marianna +Maribell +Marietta +Marlee +Maryjane +Meadow +Meaghan +Meika +Melaine +Melani +Melany +Mele +Melodee +Mica +Micheal +Mickey +Mikki +Moncia +Monette +Morning +Myriam +Nana +Nelda +Nelida +Nell +Neomi +Niccole +Nicholle +Nidia +Nikol +Nisha +Ocean +Ona +Ophelia +Pandora +Patrcia +Patrina +Perri +Phoebe +Randa +Randie +Rebbeca +Rebbecca +Refugio +Reginia +Resa +Risa +Robynn +Rona +Ronica +Ronnie +Rosella +Roshawn +Roshon +Ruben +Sabah +Salena +Samatha +Samira +Santos +Sari +Scott +Senaida +Sergio +Shae +Shantell +Sharee +Sharhonda +Sharlyn +Shaun +Shawnte +Shayna +Shayne +Shelbi +Shireen +Shonte +Sian +Simona +Sina +Siobhan +Sonda +Soraya +Stephaine +Sunday +Sunni +Sydney +Tameca +Tameika +Tamesha +Tanda +Tangi +Tarah +Tatiana +Tawni +Taylor +Terasa +Teressa +Tiesha +Tiffeny +Tiffiney +Tika +Timothy +Tobey +Toby +Torrey +Toshiba +Tova +Treva +Trish +Tritia +Trudi +Vilma +Wednesday +Yadhira +Yael +Yessica +Zenia +Zina +Jennifer +Michelle +Amy +Maria +Heather +Melissa +Christina +Lisa +Kimberly +Elizabeth +Angela +Nicole +Stephanie +Jessica +Veronica +Rebecca +Sarah +Laura +Patricia +Monica +Julie +Shannon +Christine +Erin +Cynthia +Andrea +Sandra +Rachel +Kelly +Amanda +Amber +Mary +April +Karen +Wendy +Erica +Danielle +Tiffany +Alicia +Stacy +Carrie +Dawn +Tina +Tracy +Diana +Gina +Teresa +Sara +Susan +Denise +Nancy +Katherine +Michele +Anna +Claudia +Tanya +Angelica +Emily +Brandy +Erika +Brenda +Melanie +Ana +Crystal +Jamie +Megan +Lori +Victoria +Rosa +Linda +Tammy +Valerie +Tamara +Heidi +Tara +Kristen +Sonia +Kristina +Stacey +Leticia +Vanessa +Renee +Catherine +Deborah +Kristin +Leslie +Robin +Misty +Jill +Norma +Martha +Kathleen +Brandi +Dana +Theresa +Jacqueline +Yolanda +Lorena +Natalie +Yvonne +Holly +Gloria +Christy +Guadalupe +Monique +Deanna +Regina +Adriana +Sylvia +Allison +Shawna +Melinda +Yvette +Cindy +Samantha +Courtney +Barbara +Kathryn +Julia +Cheryl +Raquel +Leah +Alison +Carmen +Suzanne +Cristina +Anne +Angelina +Gabriela +Virginia +Aimee +Ann +Sharon +Margaret +Jenny +Kari +Donna +Pamela +Carolyn +Christie +Joy +Kristi +Janet +Diane +Mandy +Blanca +Joanna +Tonya +Annette +Kristine +Summer +Susana +Olivia +Shelly +Rhonda +Laurie +Anita +Alma +Irene +Maribel +Katrina +Marie +Carla +Desiree +Yesenia +Kara +Paula +Jodi +Cecilia +Jeanette +Tricia +Trisha +Debra +Lorraine +Sheila +Ruth +Silvia +Traci +Adrienne +Esmeralda +Colleen +Margarita +Sherry +Natasha +Araceli +Carol +Felicia +Karla +Stacie +Angie +Irma +Krista +Keri +Joanne +Rachael +Brooke +Marisa +Nichole +Sabrina +Eva +Ruby +Sonya +Caroline +Lauren +Maricela +Juanita +Kristy +Robyn +Elena +Autumn +Charity +Esther +Marisol +Naomi +Rachelle +Rita +Isabel +Shelley +Bonnie +Kristie +Connie +Jolene +Rose +Trina +Kendra +Rebekah +Alexandra +Rochelle +Kelli +Melody +Angel +Charlene +Lydia +Molly +Elisa +Katie +Ashley +Cassandra +Frances +Tamika +Arlene +Darlene +Elaine +Marlene +Sheri +Kimberley +Tanisha +Helen +Tania +Marina +Cara +Kerry +Sally +Tami +Janelle +Jody +Judith +Rosemary +Kathy +Kirsten +Candice +Becky +Janice +Olga +Alice +Jenifer +Kellie +Alexis +Grace +Roxanne +Priscilla +Jaime +Joann +Tracey +Antoinette +Mindy +Sandy +Bridget +Marisela +Shana +Staci +Evelyn +Hilda +Judy +Candace +Debbie +Angelique +Mayra +Meredith +Nina +Dora +Delia +Joyce +Toni +Audrey +Dena +Georgina +Amelia +Belinda +Casey +Kelley +Rocio +Alejandra +Beth +Celeste +Charlotte +Luz +Amie +Bernadette +Edith +Eileen +Kim +Kerri +Latasha +Lynn +Shirley +Juana +Shelby +Terri +Alisa +Carolina +Jana +Jennie +Cheri +Elsa +Lilia +Marcella +Miriam +Ramona +Shauna +Liliana +Stefanie +Corina +Karina +Tracie +Graciela +Gretchen +Roberta +Lourdes +Alisha +Dolores +Johanna +Lara +Nakia +Sophia +Bethany +Elvia +Gladys +Griselda +Jeannette +Nora +Dina +Dorothy +Lucia +Sherri +Aurora +Jasmine +Jenna +Marissa +Loretta +Serena +Hilary +Josephine +Mia +Miranda +Rene +Taryn +Tasha +Bertha +Elisabeth +Ellen +Ginger +Maureen +Audra +Brandie +Christa +Christi +Josefina +Lillian +Marla +Beatriz +Betty +Beverly +Ebony +Lakisha +Latoya +Lena +Shanna +Shawn +Teri +Chandra +Chelsea +Jeanne +Noemi +Candy +Janette +Lynette +Cari +Ericka +Genevieve +Imelda +Jodie +Kenya +Lupe +Marta +Melisa +Sonja +Cherie +Hope +Lindsay +Sofia +Abigail +Celia +Jane +Marcia +Vivian +Cathy +Pauline +Karin +Nikki +Sunshine +Tisha +Catalina +Gabrielle +Magdalena +Elvira +Consuelo +Deana +Jami +Mercedes +Sheryl +Tabitha +Terra +Alana +Athena +Bobbie +Esperanza +Hannah +Marilyn +Stella +Aracely +Emma +Faith +Jean +Maya +Susanna +Vicki +Antonia +Corinne +Darcy +Fabiola +Lea +Bianca +Carey +Jackie +Lucy +Aisha +Ingrid +Lesley +Meghan +Myrna +Wendi +Alyssa +Carly +Daisy +Isela +Kimberlee +Lakeisha +Myra +Catrina +Dianna +Marcela +Mirna +Rosalinda +Allyson +Jeannie +Maritza +Rena +Tameka +Jeanine +Keisha +Laurel +Leanne +Liza +Mandi +Michael +Tamra +Annie +Francine +Jacquelyn +Rosario +Tammie +Yadira +Aida +Beatrice +Billie +Camille +Iris +Janell +Lashonda +Lora +Marcy +Marianne +Terry +Alyson +Ami +Gail +Gwendolyn +Joan +Marci +Noelle +Tonia +Cori +Doris +Elva +Kira +Lakesha +Sunny +Inez +Janine +Marcie +Maryann +Nadine +Rosalie +Rosie +Sherrie +Windy +Darla +Hillary +Jessie +Latisha +Mariah +Natalia +Ronda +Wanda +Cathleen +Harmony +Lana +Leann +Mariana +Peggy +Gena +Latanya +Luisa +Marsha +Penny +Rosalba +Whitney +Clara +Dominique +Estela +Francisca +Jason +Karrie +Lidia +Sasha +Alissa +Claire +Clarissa +Katharine +Lindsey +Mona +Ofelia +Randi +Danette +Davina +Deanne +Evangelina +Jeannine +Jocelyn +Juliet +Kate +Minerva +Rosio +Selena +Vicky +Chantel +Doreen +Francesca +Janel +June +Krystal +Martina +Rosalva +Rosemarie +Shari +Tamera +Tera +Tia +Adela +Carina +Chrystal +Fatima +Gricelda +Ivonne +Kasey +Leigh +Maggie +Mireya +Socorro +Tamiko +Betsy +Briana +Bridgette +Cassie +Eleanor +Julissa +Karyn +Latonya +Leilani +Lila +Patrice +Perla +Rebeca +Sierra +Susie +Tiana +Tiffani +Adrianne +Anastasia +Christopher +Cristy +Edna +Josie +Karie +Lacey +Latrice +Leila +Lynda +Maisha +Malinda +Marjorie +Marlo +Michell +Sadie +Shanon +Sheree +Suzette +Tessa +Ursula +Vickie +Adrian +Aileen +Angeline +Angelita +Bernice +Bobbi +Carissa +Corey +Dionne +Glenda +Juliana +Lee +Misti +Noel +Rosanna +Anabel +Arcelia +Brittany +Carie +Charmaine +Danelle +Janie +Julianne +Myesha +Paige +Reina +Sandi +Viviana +Anjanette +Annemarie +Aubrey +Bree +Corinna +Destiny +Eugenia +Flor +Hortencia +Jose +Lina +Lorie +Lynnette +Mara +Nanette +Tawnya +Tori +Adrianna +Alexandria +Anel +Annamarie +Annmarie +Corrine +Dalia +Deena +Elia +Elise +Elisha +Gabriella +Geneva +Janna +Jena +Jo +Kristal +Lily +Lizette +Mabel +Micaela +Mirella +Pearl +Simone +Suzanna +Alysia +Anitra +Beronica +Carmela +Christin +Concepcion +Corrie +Cory +Elissa +Fawn +Ivy +Jaqueline +Julianna +Lacy +Meagan +Monika +Reyna +Richelle +Roxana +Roxanna +Sondra +Spring +Trinity +Valarie +Venus +Alexa +Alycia +Bridgett +Cecelia +Chantal +Daniel +Dianne +Dusty +Estella +Joleen +Kerrie +Kisha +Larissa +Marnie +Maxine +Miesha +Nicolle +Petra +Shellie +Tammi +Teresita +Adria +Amalia +Andria +Anthony +Chasity +Delilah +Helena +Joni +Katy +Lashawn +Robert +Shanda +Tiffanie +Ada +Chanda +Elaina +Emilia +Giselle +Haydee +Jade +Jamila +Jayme +Jesus +Katina +Kirstin +Layla +Leanna +Lisette +Margo +Susanne +Thelma +Therese +Vera +Angelia +Carin +Christal +Cristal +Dara +Delores +Denice +Deserie +Elida +Evette +Georgia +James +Lucinda +Margie +Mariaelena +Rosanne +Stefani +Violeta +Alanna +Alina +Armida +Brandee +Brenna +Carole +Chastity +Colette +Cortney +David +Dayna +Demetria +Francis +Geraldine +Hollie +Jeana +Lorrie +Marivel +Matthew +Mellisa +Oralia +Penelope +Pilar +Rosalia +Shannan +Tobi +Valeria +Xochitl +Antionette +Ayanna +Caryn +Cecily +Cherise +Christen +Cinthia +Claudine +Constance +Corrina +Daniela +Daniele +Daniella +Dawna +Eloisa +Eunice +Janis +Jeanna +Jeri +Jesse +Justina +Justine +Kathrine +Liana +Lizbeth +Lola +Louise +Mandie +Mari +Marian +Morgan +Nidia +Paulette +Phyllis +Rosana +Selina +Sharla +Sharlene +Soledad +Starr +Tanesha +Tenisha +Tosha +Caren +Danica +Danita +Darcie +Deidre +Eliza +Ivette +Lupita +Malissa +Michaela +Mitzi +Nellie +Racquel +Regan +Rosalind +Roxann +Salina +Sherie +Sommer +Susannah +Tana +Trista +Valentina +Zoe +Aaron +Adina +Angelic +Belen +Celina +Cherish +Darci +Erlinda +Faviola +Ginny +Jan +Jenine +Jenniffer +John +Jolie +Julisa +Kesha +Kyra +Ladonna +Lauri +Leonor +Letisia +Lilian +Manuela +Marni +May +Melonie +Myisha +Nelly +Noelia +Polly +Racheal +Shani +Shantel +Shonda +Tabatha +Tyra +Ariana +Ayana +Brigitte +Candida +Carri +Casandra +Chanel +Cheyenne +Chris +Cristi +Daphne +Emilie +Ernestina +Flora +Gisela +Guillermina +Hallie +Ida +Joshua +Kori +Leona +Louisa +Marcelina +Marlena +Mildred +Nichol +Rashida +Roni +Shawnna +Stacia +Stephani +Stephenie +Syreeta +Tamar +Tanika +Aurelia +Azure +Benita +Blythe +Cameron +Carisa +Cherice +Chloe +Cinnamon +Coral +Dalila +Dannielle +Deirdre +Devon +Georgette +Jasmin +Jeanie +Joey +Kirstie +Lakeysha +Lanette +Leeann +Lia +Mariela +Melodie +Mindi +Paola +Renae +Rosalina +Serina +Shamika +Shanta +Shayla +Sue +Trudy +Adele +America +Annalisa +Brandon +Brook +Candelaria +Cary +Charisse +Charles +Cheree +Cherilyn +Corie +Danika +Deann +Debora +Eden +Elsie +Ester +Eve +Faye +Hazel +Janene +Jenni +Kami +Karri +Keely +Letitia +Lucila +Lucille +Lynne +Maira +Maren +Melina +Niki +Nikia +Qiana +Rhea +Richard +Shara +Trena +Valorie +Vilma +Addie +Alethea +Araseli +Ariel +Berta +Camelia +Chaka +Charla +Christiane +Cicely +Deidra +Delfina +Elda +Ethel +Evelia +Florence +Gilda +Gillian +Gwen +Jaimie +Janae +Jenelle +Jeniffer +Joelle +Kelsey +Lani +Lashanda +Leandra +Madeline +Mollie +Nakisha +Nicola +Nikole +Patty +Raina +Rana +Rosamaria +Roseann +Scott +Selene +Shameka +Shanti +Shayna +Starla +Sybil +Tesha +Thea +Toby +Violet +Yasmin +Adelina +Amee +Anika +Asia +Aura +Buffy +Carlene +Cher +Christel +Cora +Coreen +Dani +Danna +Danyelle +Daria +Deedee +Dinah +Dixie +Elana +Erinn +Evonne +Frankie +Geri +Herlinda +Holli +Jaimee +Jamee +Jina +Johnna +Joi +Joseph +Josette +Jovita +Julieta +Kacey +Karena +Kay +Lakeshia +Lakiesha +Larhonda +Laticia +Lawanda +Lela +Lenora +Marianna +Maricruz +Marion +Mercy +Mistie +Nadia +Nicki +Octavia +Patrisia +Patsy +Pepper +Roseanne +Rowena +Sabina +Shane +Shante +Shantell +Shawnda +Shilo +Star +Tamatha +Tenaya +Terrie +Yecenia +Zandra +Zulema +Zulma +Adena +Adriane +Aide +Akilah +Alexia +Alia +Amparo +Analisa +Anamaria +Angella +Annabel +Ava +Azucena +Berenice +Carmelita +Clare +Collette +Cristine +Danae +Della +Elicia +Eric +George +Gianna +Haley +Janeen +January +Jeffrey +Jonelle +Justin +Kamilah +Kiana +Kindra +Kourtney +Kristyn +Lashawnda +Latricia +Lelia +Lesa +Liberty +Linette +Lissette +Lizet +Lois +Lorna +Mae +Magda +Malia +Malisa +Marylou +Maura +Mellissa +Nanci +Nicolette +Paulina +Rae +Rhoda +Robbin +Rosalyn +Rosaura +Rosina +Rubi +Sarina +Sarita +Shandra +Shanell +Shanika +Shawnee +Sophie +Tiffiny +Tomeka +Tristan +Xochilt +Yanira +Agnes +Alba +Alisia +Amiee +Amity +Andra +Antonette +Asha +Barbra +Brande +Brett +Caitlin +Cambria +Camilla +Candi +Carli +Carlos +Chanelle +Charleen +Cindi +Cruz +Dyan +Edward +Glenna +Gracie +Isabelle +Isis +Jacquline +Jennette +Jerry +Jillian +Julee +Juliette +Karmen +Keira +Kimberlie +Krishna +Latashia +Latrina +Liane +Lilly +Linnea +Malina +Maricella +Maryanne +Maryjane +Micah +Misha +Myeshia +Nannette +Nia +Otilia +Pamala +Rachele +Rebbecca +Roseanna +Roxane +Season +Shea +Steven +Susy +Sydney +Talia +Tamica +Tiffaney +Timothy +Tracee +Zenia +Altagracia +Antonio +Beatris +Brianna +Britt +Carmella +Cathryn +Celena +Christene +Christian +Christiana +Claudette +Coleen +Corine +Danell +Danyel +Darleen +Dayanara +Dionna +Eboni +Elba +Elisia +Enriqueta +Gayle +Goldie +India +Ines +Isaura +Jamey +Jammie +Jazmin +Jeneen +Jerri +Jesica +Juan +Kacy +Kary +Kayla +Kellee +Kendall +Kenyatta +Kia +Kiley +Kris +Lacie +Lashon +Latosha +Lesli +Letisha +Lindy +Lorinda +Lorri +Luciana +Lus +Mandee +Mika +Nikita +Nilda +Patti +Phoebe +Poppy +Portia +Rebecka +Renata +Roselia +Rosita +Ryan +Saundra +September +Serene +Shalonda +Sharron +Shay +Shelli +Shiela +Skye +Tamira +Tatum +Tennille +Toya +Twyla +Velia +Willow +Ysenia +Zenaida +Alecia +Alejandrina +Althea +Anabelle +Analilia +Ananda +Anissa +Anjelica +Annabelle +Annamaria +Arianne +Armando +Arwen +Ashlee +Asusena +Bambi +Belia +Bettina +Brian +Britta +Bryn +Callie +Candie +Carolynn +Casie +Catharine +Chantelle +Chekesha +Chelsie +Cherisse +Crista +Dahlia +Dania +Dee +Denisha +Denita +Deonna +Detra +Dione +Dori +Dorian +Ema +Emmy +Erendira +Ernestine +Farah +Felecia +Francisco +Hayley +Ilda +Ilona +Jacquelynn +Jannette +Jenette +Jesenia +Johnnie +Juli +Juliann +Kacie +Kameron +Kandi +Kassandra +Kati +Kecia +Keesha +Kimberli +Laronda +Livier +Lizeth +Loraine +Lorelei +Loren +Maile +Manuel +Margret +Marguerite +Mariza +Marti +Marybel +Merry +Minnie +Moira +Monet +Myriam +Nathalie +Necole +Nereida +Nichelle +Nikol +Nissa +Noreen +Nova +Nubia +Olympia +Patience +Piper +Precious +Ranee +Raymond +Rayna +Rikki +Rina +Rosaisela +Samara +Samuel +Santa +Sari +Shanelle +Shasta +Sherell +Sherilyn +Soraya +Takisha +Talisha +Tamie +Tawny +Terese +Tiffini +Tomika +Tonja +Tory +Trish +Valencia +Vania +Vannessa +Vikki +Wendie +Wenona +Yolonda +Zoila +Abby +Adeline +Allegra +Amara +Annika +Arica +Arleen +Ashleigh +Aubree +Aundrea +Avelina +Ayesha +Bonny +Breanna +Cammie +Carlie +Carlotta +Cassondra +Charmayne +Chiara +China +Corissa +Cristie +Damaris +Dannette +Danya +Danyell +Dawnelle +Delma +Desirae +Devina +Dona +Echo +Edie +Elyse +Emi +Farrah +Felisa +Fernanda +Gayla +Georgiana +Ginette +Gregory +Hanna +Helene +Honey +Iesha +Ilana +Inga +Jacy +Jamilah +Janett +Jannifer +Jennafer +Jeremy +Jerusha +Johnny +Jonna +Josefa +Julene +Karissa +Karly +Katheryn +Kaycee +Keli +Kevin +Kiersten +Kimber +Korina +Kory +Kristan +Kyla +Kyle +Kym +Laquita +Latonia +Lavina +Lavonne +Leesa +Leighann +Leora +Letecia +Libby +Liz +Lolita +Lorene +Luana +Lula +Machelle +Madelyn +Maegan +Maia +Malena +Malika +Mariam +Mario +Marisha +Maritsa +Marya +Meadow +Mechelle +Meggan +Melaine +Melony +Melynda +Mendi +Miki +Milissa +Mimi +Mirian +Niccole +Nickie +Nickole +Ninette +Nola +Nuvia +Opal +Ophelia +Peaches +Quiana +Rachell +Rafaela +Rasheda +Rashonda +Reena +Renea +Ricardo +Rolanda +Rosalee +Salena +Sallie +Santos +Shae +Shanita +Shantelle +Shaunna +Shawana +Shelbi +Shenee +Shira +Shonna +Shoshana +Simona +Siobhan +Starlene +Stefany +Stephany +Stormy +Sumer +Suzana +Tabetha +Tamala +Tarah +Tenesha +Tobie +Tonisha +Treasure +Tressa +Tunisia +Tyesha +Velma +Venessa +Verenice +Aime +Aleta +Alta +Alva +Amina +Anamarie +Andrew +Andrina +Angelena +Angle +Anya +Apryl +Areli +Aretha +Arin +Azalia +Barbie +Bonita +Brigette +Cami +Carl +Carmel +Carmina +Cassidy +Cathrine +Catina +Celine +Chante +Charissa +Cherrie +Clarisa +Cristin +Cybil +Cyndee +Cyndi +Dacia +Daniell +Darcey +Deeann +Delicia +Demetra +Diona +Dolly +Donielle +Dorene +Dulce +Dusti +Elizabet +Ella +Emiko +Ena +Enedina +Erma +Evangeline +Fernando +Fiona +Giovanna +Greta +Gypsy +Hattie +Henrietta +Hermelinda +Herminia +Ileana +Ilene +Iliana +Irasema +Isa +Jacinda +Jaclyn +Jacob +Jada +Jamaica +Jamillah +Janessa +Jayne +Jene +Jenee +Jewel +Joe +Joie +Jolyn +Jonathan +Jordan +Julian +Julienne +Juniper +Junko +Kaci +Kamala +Kandice +Karma +Kena +Kenna +Kenneth +Kerra +Keysha +Kiera +Kimberlina +Koren +Krisha +Kristene +Kylee +Lashawna +Lasonya +Latrece +Leana +Lesly +Ligia +Lillie +Linsey +Lita +Loni +Lonnie +Lucina +Lucretia +Magaly +Malaika +Maranda +Marcelle +Marika +Marty +Mayte +Meegan +Melani +Melita +Meridith +Michaelle +Micheal +Millie +Moncia +Nacole +Nailah +Natacha +Natividad +Neda +Nena +Nerissa +Nicol +Ninfa +Nita +Nohemi +Patrica +Paul +Pollyanna +Princess +Prudence +Raelene +Raul +Rechelle +Reem +Refugio +Reva +Robbie +Romana +Ronica +Ronnie +Roslyn +Sabrena +Sage +Sanjuanita +Sariah +Seana +Shaina +Shannen +Sharice +Sharita +Sharonda +Sheela +Sheena +Sheilah +Shelia +Sherisse +Sherita +Sherrell +Shona +Shondra +Silva +Stacee +Steffanie +Stephaine +Stephannie +Suzy +Tambra +Tameika +Tamekia +Tanasha +Tangela +Tanja +Tarra +Tashia +Taunya +Tausha +Tavia +Tawana +Tawni +Teena +Terah +Terrell +Tiara +Tiesha +Tomi +Tony +Torrie +Treena +Trinette +Trini +Trinidad +Trudi +Tyler +Valery +Verna +Victor +Viola +Vonetta +Wilma +Xiomara +Yara +Yasmine +Zaida +Zara +Zina +Adelita +Alaina +Alberta +Alesha +Ali +Alishia +Almadelia +Alvina +An +Analia +Andee +Andera +Andreana +Andriana +Andy +Angele +Angeli +Anica +Anisa +Antoniette +Antonina +Argelia +Armanda +Artemisa +Arturo +Ashanti +Aziza +Bella +Belle +Bevin +Billy +Blossom +Brandalyn +Brianne +Brisa +Caprice +Carlena +Carletta +Carlyn +Celestina +Chantell +Chari +Charis +Charise +Charlyn +Cherlyn +Cherry +Cheryle +Cheyanne +Ciara +Clair +Claribel +Cleotilde +Clifford +Colby +Danetta +Danny +Delisa +Denelle +Dennise +Deshawn +Desire +Devona +Dion +Disa +Eduardo +Elishia +Elita +Ellie +Elodia +Eloise +Ember +Emelda +Erendida +Ermelinda +Estelle +Eugene +Flavia +Gaylene +Genee +Genesis +Genna +Genoveva +Gerardo +Gigi +Gregoria +Halima +Hector +Heidy +Hiedi +Hortensia +Idalia +Ieshia +Ina +Irena +Iva +Ivon +Ixchel +Jacinta +Jackeline +Janee +Jannet +Jannie +Jaymi +Jeanene +Jemima +Jenean +Jennifier +Jermaine +Jimmy +Jobina +Jodee +Jonette +Jonnie +Jordana +Joya +Joycelyn +Jubilee +Judi +Julio +Kali +Kamika +Kandy +Kanika +Karine +Karleen +Kathie +Kathlene +Katia +Keiko +Kelee +Kenisha +Keva +Keya +Kiesha +Kimiko +Kimmie +Kinya +Kitty +Kiva +Kristeen +Kristel +Kyndra +Lacresha +Lacretia +Laila +Lanell +Lanita +Larisa +Lashana +Lashaun +Lashell +Lashelle +Latesha +Launa +Lavon +Lawanna +Leeanna +Leeanne +Leena +Lenna +Leslee +Leslieann +Lilliana +Lisabeth +Lisha +Lorenza +Lucero +Luis +Lurdes +Lynna +Madeleine +Makisha +Mandisa +Margot +Mariadelcarmen +Mariko +Marin +Mark +Marleen +Marysol +Matilda +Megin +Melany +Melodee +Melva +Michel +Mina +Monalisa +Naima +Nakeisha +Nedra +Neisha +Nelida +Nicholle +Obdulia +Oliva +Oscar +Passion +Pat +Patrina +Porsche +Porsha +Pricilla +Quincy +Rashada +Raylene +Reagan +Rebekka +Ricki +Risa +Ronisha +Rossana +Rufina +Ryann +Sacha +Sandee +Sanya +Sativa +Sean +Secilia +Seema +Shala +Shaleen +Shalita +Shanay +Shanel +Sharee +Sharie +Sharyl +Shawndra +Shawnta +Shawnte +Shayne +Shenandoah +Sherese +Shireen +Shontay +Shyla +Shyra +Somer +Stephnie +Steve +Sunita +Sunni +Suzan +Suzann +Suzie +Tajuana +Takesha +Taleen +Tamela +Tamisha +Tamu +Tanea +Taneshia +Taneya +Teana +Tereza +Theodora +Thomas +Thuy +Tiffney +Tikisha +Tisa +Torrey +Unknown +Valeri +Vanesa +Venicia +Vida +Vivianne +Wendee +William +Winnie +Winona +Xochil +Yadhira +Yajaira +Yessenia +Yvett +Zakia +Zuleyka +Jennifer +Amy +Michelle +Maria +Melissa +Heather +Jessica +Lisa +Christina +Elizabeth +Nicole +Sarah +Angela +Kimberly +Rebecca +Stephanie +Shannon +Veronica +Laura +Monica +Jamie +Julie +Amanda +Christine +Erin +Kelly +Andrea +Amber +Sara +Sandra +Patricia +Rachel +Cynthia +Erica +Jaime +Danielle +Mary +Wendy +Tiffany +Carrie +April +Karen +Dawn +Alicia +Stacy +Diana +Nancy +Claudia +Anna +Teresa +Emily +Crystal +Katherine +Brandy +Susan +Tracy +Denise +Melanie +Angelica +Sonia +Tina +Gina +Erika +Michele +Valerie +Victoria +Leticia +Vanessa +Brenda +Ana +Megan +Natalie +Renee +Heidi +Linda +Tanya +Misty +Stacey +Rosa +Kristin +Leslie +Holly +Jacqueline +Kristina +Tamara +Tara +Lori +Norma +Brandi +Catherine +Allison +Tammy +Christy +Kristen +Yolanda +Guadalupe +Dana +Kathleen +Theresa +Martha +Jill +Lorena +Deborah +Jenny +Cindy +Adriana +Courtney +Kathryn +Monique +Robin +Samantha +Melinda +Deanna +Lindsay +Yvonne +Cristina +Gloria +Leah +Regina +Suzanne +Yvette +Olivia +Sylvia +Barbara +Aimee +Maricela +Sharon +Julia +Shawna +Susana +Marie +Alison +Irene +Raquel +Carmen +Angelina +Desiree +Gabriela +Sabrina +Joanna +Alma +Mandy +Kari +Margaret +Diane +Donna +Maribel +Marisa +Summer +Virginia +Yesenia +Carla +Paula +Cheryl +Anne +Blanca +Kristine +Lauren +Carolyn +Joy +Katrina +Annette +Kristi +Natasha +Ann +Pamela +Anita +Cecilia +Adrienne +Janet +Margarita +Silvia +Kristy +Esmeralda +Araceli +Shelly +Jodi +Krista +Eva +Alejandra +Marisela +Debra +Elena +Rita +Kendra +Brooke +Molly +Ruth +Darlene +Ruby +Sheila +Carol +Juanita +Karla +Stacie +Tonya +Felicia +Colleen +Jeanette +Trisha +Rachelle +Kelli +Laurie +Christie +Shana +Angie +Robyn +Keri +Rose +Kara +Sherry +Tania +Irma +Katie +Nichole +Priscilla +Traci +Lydia +Melody +Naomi +Rachael +Sheri +Caroline +Helen +Isabel +Judith +Marisol +Cassandra +Elaine +Karina +Kristie +Shelley +Bonnie +Lorraine +Rhonda +Jennie +Rocio +Autumn +Esther +Connie +Rochelle +Luz +Sonya +Rebekah +Sandy +Trina +Marissa +Hilda +Candice +Frances +Toni +Arlene +Joanne +Dora +Kathy +Liliana +Marina +Audrey +Dolores +Elisa +Marlene +Tricia +Charlene +Janelle +Angel +Belinda +Lindsey +Beth +Bridget +Charity +Delia +Tracey +Alice +Ashley +Meredith +Bethany +Evelyn +Kellie +Olga +Sally +Tami +Elisabeth +Ramona +Alexis +Candace +Cara +Grace +Roxanne +Jenifer +Johanna +Kirsten +Lucia +Miriam +Nadia +Griselda +Latoya +Roberta +Chelsea +Graciela +Janice +Kerri +Rosemary +Tasha +Jody +Jolene +Shirley +Staci +Alexandra +Antoinette +Latasha +Amie +Jasmine +Kelley +Lara +Abigail +Kerry +Nina +Shauna +Carolina +Miranda +Camille +Ericka +Kim +Lourdes +Marcella +Tamika +Beatriz +Brandie +Christa +Dena +Farrah +Sophia +Casey +Corina +Edith +Elsa +Alisha +Lilia +Rosalinda +Tanisha +Stefanie +Angelique +Dina +Genevieve +Gretchen +Lynette +Amelia +Kimberley +Mindy +Shelby +Alyssa +Celeste +Jami +Joann +Lillian +Alisa +Aurora +Charlotte +Debbie +Ebony +Eileen +Georgina +Bertha +Marcia +Nora +Joyce +Lena +Mayra +Aisha +Bernadette +Judy +Maureen +Cathy +Dorothy +Jodie +Betty +Dianna +Jane +Juana +Nikki +Vivian +Becky +Lucy +Jeannette +Bianca +Bobbie +Consuelo +Jana +Sofia +Teri +Antonia +Jenna +Josephine +Marta +Mercedes +Emma +Liza +Rosario +Francisca +Maritza +Melisa +Hannah +Josefina +Ellen +Hope +Loretta +Serena +Terri +Chandra +Marilyn +Pauline +Tabitha +Cherie +Karin +Lakisha +Lynn +Marianne +Meghan +Nadine +Sunshine +Tennille +Catalina +Cheri +Jocelyn +Rhiannon +Shanna +Darcy +Estela +Gladys +Liberty +Marsha +Celia +Esperanza +Isela +Jayme +Marla +Sherri +Wendi +Cari +Ginger +Jean +Michael +Beverly +Janette +Mia +Noemi +Shawn +Sonja +Imelda +Laurel +Selena +Sheryl +Alana +Janine +Jeannie +Ronda +Tracie +Cori +Jackie +Leanne +Marcela +Beatrice +Carey +Carly +Keisha +Kimberlee +Larissa +Latisha +Lesley +Maya +Noelle +Celina +Gabrielle +Hilary +Iris +Jacquelyn +Jeanne +Lidia +Tiana +Audra +Candy +Dominique +Kenya +Lea +Sunny +Terra +Carissa +Hillary +Peggy +Rene +Anabel +Carina +Claire +Daisy +Deana +Faith +Francine +Gwendolyn +Harmony +Kate +Magdalena +Mandi +Marci +Melina +Myrna +Rosie +Sherrie +Tori +Karrie +Sasha +Susanna +Tonia +Yadira +Clara +Ingrid +Penny +Susie +Tameka +Adrianne +Annie +Jessie +Lora +Mariah +Reyna +Sierra +Stella +Vicki +Athena +Aubrey +Darla +Elva +Jeanine +Mirna +Ofelia +Tisha +Amalia +Brandee +Janel +Luisa +Minerva +Mireya +Myra +Vickie +Xochitl +Aida +Christal +Christi +Corrie +Jaimie +Janna +Jeannine +Lakeisha +Lupe +Tiffani +Anitra +Betsy +Billie +Elvira +Janell +Lily +Mara +Maryann +Mona +Rosio +Tammie +Allyson +Alyson +Aracely +Belen +Brittany +Clarissa +Corinne +Elvia +Fabiola +Katharine +Latanya +Leanna +Rebeca +Rosanna +Taryn +Ursula +Whitney +Alissa +Brook +Carie +Evangelina +Kasey +Salina +Bernice +Bridgette +Charmaine +Corrina +Davina +Doris +Edna +Hollie +Janie +Joan +Krystal +Leigh +Lucinda +Mariana +Shari +Alexandria +Anastasia +Annmarie +Cory +Danelle +Emilia +Francesca +Lakesha +Malinda +Paige +Rosalie +Sommer +Tiffanie +Corinna +Estella +Eugenia +Inez +June +Karyn +Lashonda +Lee +Marcie +Marjorie +Morgan +Nakia +Tia +Windy +Ami +Catrina +Chantel +Cortney +Cristy +Gena +Ivette +Jaqueline +Juliana +Leann +Lynda +Myesha +Noel +Pearl +Tessa +Adrianna +Delilah +Georgia +Glenda +Gricelda +Lizette +Malissa +Myisha +Nellie +Perla +Reina +Rosalva +Rosemarie +Suzanna +Viviana +Angelita +Briana +Geneva +Jason +Jo +Julianne +Kerrie +Lacey +Lynnette +Maisha +Manuela +Randi +Sadie +Tammi +Vicky +Aileen +Bobbi +Bree +Brianna +Cheyenne +David +Dayna +Dusty +Eleanor +Jamila +Kristal +Lina +Maggie +Margie +Meagan +Roxana +Susanne +Tamra +Violeta +Adrian +Cecelia +Daphne +Eunice +Flor +Jose +Juliet +Lorie +Marcy +Marivel +Marlo +Misti +Rena +Rosalba +Tanika +Anissa +Anjelica +Corey +Destiny +Eliza +Fawn +Ivonne +Jammie +Joni +Leila +Leilani +Marlena +Qiana +Tawnya +Vera +Alexa +Araseli +Chrystal +Corrine +Elia +Gail +Guillermina +Hortencia +Kira +Kisha +Lisette +Rosalia +Shanon +Tanesha +Annabelle +Elise +Josie +Karie +Liana +Natalia +Selina +Sheree +Simone +Socorro +Alysia +Danette +Evette +Jeanna +Jillian +Juliette +Julissa +Kami +Lashanda +Leeann +Mirella +Monika +Nelly +Robert +Soledad +Spring +Tenisha +Venus +Wanda +Adela +Chanda +Chasity +Cherise +Colette +Cora +Dara +Deena +Dionne +Elisha +Eve +Gabriella +Geraldine +Helena +Jaclyn +Jaimee +James +Janae +Jesica +Leonor +Martina +Patrice +Pilar +Rayna +Richard +Roxanna +Sandi +Valarie +Angelic +Armida +Carmela +Christopher +Corie +Daniella +Dawna +Devon +Doreen +Erlinda +Ida +Jasmin +Kori +Layla +Letisia +Lia +Louisa +Micaela +Paulette +Rashida +Richelle +Rosaura +Shasta +Valeria +Venessa +Adriane +America +Amparo +Annamarie +Buffy +Candida +Cary +Cassie +Celena +Cherilyn +Dalia +Daniel +Daniela +January +Joelle +Lana +Lani +Louise +Mabel +Michaela +Michell +Mildred +Nidia +Racheal +Salena +Shannan +Starr +Teresita +Terry +Ada +Caryn +Chanel +Constance +Faviola +Jeri +Joleen +Joseph +Justine +Kirstin +Lanette +Lashawn +Leona +Lois +Lola +Madeline +Marian +Miesha +Raina +Renae +Ryan +Shameka +Shanda +Shayla +Star +Tabatha +Therese +Aide +Annemarie +Arcelia +Ariana +Beronica +Brenna +Caitlin +Charla +Chastity +Christin +Deann +Elaina +Flora +Florence +Francis +Jesus +Kathrine +Kellee +Latonya +Lila +Lilian +Lorrie +Lupita +Malia +Maura +Rosalind +Rosanne +Rosita +Shellie +Stefani +Sujey +Susannah +Thelma +Adina +Alanna +Andria +Antonette +Ayana +Benita +Cameron +Carmina +Concepcion +Coral +Farah +Frankie +Jaimi +Janis +Jaymie +Jeana +Lorna +Mariaelena +Mitzi +Nanette +Nikole +Rosalyn +Sharla +Sharlene +Stacia +Stephenie +Tosha +Valencia +Velia +Angelia +Anthony +Azucena +Berta +Brian +Chloe +Christen +Danica +Daniele +Deanne +Debora +Deirdre +Eboni +Elissa +Elsie +Emilie +Fatima +Isis +Jade +Jamey +Jan +Jeanie +Jesse +Julianna +Katina +Kelsey +Kesha +Khalilah +Lacy +Letitia +Lizbeth +Margo +Marnie +Nicolle +Oralia +Patty +Petra +Rhea +Roseann +Shantel +Shawnna +Shelli +Sue +Sydney +Tamiko +Tana +Tera +Trinity +Violet +William +Adria +Akilah +Alethea +Alexia +Alina +Analisa +Andra +Anika +Annabel +Antionette +Ariel +Aurelia +Brigette +Caren +Carlos +Cathleen +Claudette +Danita +Dianne +Eloisa +Ernestina +Gillian +Gwen +Iliana +Ivy +Jena +Jenelle +Joey +John +Justina +Kiana +Kimberlie +Mari +Matilde +Mellisa +Mellissa +Mindi +Paul +Rhianna +Rosalina +Rosana +Shiloh +Starla +Tamisha +Tiffiny +Yanira +Adelina +Angeline +Ayanna +Carisa +Carole +Chantelle +Cherish +Chris +Christian +Cinthia +Danika +Danyelle +Darci +Deserie +Eden +Elida +Enedina +Eric +Faye +Gisela +Ines +Ivon +Jenell +Jennette +Jenni +Jenniffer +Juan +Kacey +Kandi +Kandy +Karri +Katy +Kiersten +Kirstie +Ladonna +Linnea +Luciana +Mackenzie +Mandie +Marni +Maryanne +Maxine +Mercy +Nakisha +Nichol +Reanna +Rosamaria +Sarita +Selene +Shante +Sondra +Stephaine +Suzette +Torrie +Trinidad +Tynisa +Yasmin +Zoe +Alejandrina +Alena +Alycia +Anel +Bridgett +Camelia +Carin +Carri +Casandra +Casie +Chantal +Chenoa +Crista +Dannielle +Danyel +Darcie +Deeanna +Delfina +Denice +Elyse +Georgette +Haydee +Janeen +Johnna +Joi +Kindra +Kyla +Kyra +Lashawnda +Lenora +Lindy +Magda +Marguerite +Matthew +Micheal +Mollie +Nia +Nohemi +Patrisia +Phyllis +Rana +Roseanna +Rowena +Saundra +Serina +Shamika +Shani +Shawnda +Shonna +Skye +Stephani +Talia +Tinisha +Vikki +Alia +Allegra +Amee +Berenice +Blythe +Brett +Britt +Carlee +Carmelita +Chaka +Christel +Christiana +Cindi +Claudine +Coleen +Collette +Danna +Denisha +Dulce +Edelmira +Elda +Evangeline +Evelia +Evonne +Giovanna +Gracie +Ilana +Ilda +Ilene +Inga +Jerri +Jolie +Josette +Kiesha +Latrina +Lauri +Linette +Lolita +Lorene +Lucila +Lynne +Manuel +Maricruz +Mendy +Nereida +Nichelle +Niki +Nubia +Quiana +Rina +Sacha +Santa +Season +Serenity +Shawnee +Shiela +Shonda +Stephany +Tamera +Tomika +Valentina +Willow +Abby +Adele +Alba +Alecia +Alysha +Arianna +Ashleigh +Aura +Bettina +Brigitte +Brittney +Cathryn +Cecily +Clare +Corine +Cristal +Cristine +Dania +Della +Delores +Ella +Ester +Fanny +Gabriel +Greta +Jayne +Juli +Kamilah +Karena +Karey +Karissa +Kenisha +Kristyn +Latrice +Lawanda +Lilliana +Lizeth +Lorelei +Marianna +Mariela +Marysol +Melodie +Melonie +Micah +Mimi +Nisha +Noelia +Patrica +Rachell +Racquel +Rasheda +Rhoda +Ronnie +Samara +Sarina +Shalon +Shara +Sharee +Shawana +Shayna +Shilo +Shoshana +Tamica +Tenille +Tracee +Trudy +Tyra +Xochilt +Yecenia +Alesha +Alisia +Amity +Anamaria +Anastacia +Aubree +Azure +Bessie +Callie +Carolynn +Cicely +Cristi +Davida +Dee +Deidra +Deidre +Edward +Estrella +Fiona +Giselle +Iesha +Ileana +Janee +Jannette +Jenee +Jenette +Joshua +Justin +Kay +Keren +Lanesha +Latosha +Latricia +Lavonne +Leana +Leslee +Lesli +Lucille +Maile +Mark +Marylou +May +Meridith +Mistie +Moriah +Naima +Nanci +Nena +Nicola +Phaedra +Phoebe +Poppy +Pricilla +Regan +Rosalynn +Shakira +Shalonda +Shandra +Shanta +Shaunna +Shay +Shea +Shelia +Shyla +Somer +Soraya +Suzan +Takisha +Tawana +Taylor +Thea +Tomeka +Toya +Viola +Yessenia +Aaron +Anjanette +Annalisa +Anya +Ashlee +Ava +Billy +Brea +Candelaria +Candi +Carlene +Charise +Charisse +Charlie +Chekesha +Cherri +Chrissy +Cristen +Cristie +Cristin +Daina +Danae +Danisha +Darcey +Desire +Dionna +Dixie +Dominic +Elma +Erinn +Florentina +Gayle +Geri +Gilda +Ginny +Gypsy +Hermelinda +Holli +Ilona +Isabelle +Jackeline +Jameelah +Jeniffer +Karolyn +Kasie +Kendall +Kevin +Laila +Lakeshia +Lakiesha +Lavonda +Leandra +Lela +Loraine +Lorinda +Maren +Mario +Marybel +Melani +Misha +Myeisha +Nathalie +Nicki +Nikita +Noreen +Nova +Ophelia +Paola +Rachele +Rae +Rasheedah +Raymond +Renata +Roni +Roseanne +Roxann +Rubi +Seana +Shaina +Shanika +Shantell +Susy +Sylvie +Tamar +Tamela +Tatiana +Tawny +Temeka +Tenaya +Terrie +Tiara +Tony +Trista +Tuesday +Tyesha +Velma +Wendie +Winnie +Yolonda +Yvett +Aime +Alejandro +Aline +Alondra +Alyse +Andreana +Anisa +Annika +Antonio +Arianne +Asha +Aundrea +Benjamin +Bibiana +Brande +Brie +Bryn +Camilla +Carleen +Carley +Carli +Celestina +Chantell +Charleen +Cher +Cheree +Cheyanne +Cruz +Dani +Danya +Dawnelle +Dolly +Dorene +Dori +Dorinda +Dusti +Edwina +Elba +Eloise +Ena +Evelin +Freedom +Genna +Giovana +Gladis +Gregory +Hallie +Hazel +Herlinda +Herminia +Iraida +Jeneen +Jeni +Jeremy +Jerry +Jerusha +Jesenia +Jessika +Joie +Jonathan +Jonelle +Jonna +Jovanna +Judi +Julieta +Julisa +Kaci +Kassandra +Kayla +Keli +Keysha +Kia +Kimber +Kris +Ladawn +Lakenya +Latesha +Leesa +Libby +Linsey +Lisamarie +Lissa +Livia +Llesenia +Lorina +Luis +Lurdes +Lyndsay +Malena +Manya +Marialuisa +Mariam +Maricella +Marika +Michel +Midori +Milissa +Moira +Myriam +Nannette +Necole +Neva +Nydia +Nyree +Patsy +Randee +Ranee +Rashell +Raylene +Ronald +Roxane +Sabina +Scott +Shanel +Shanell +Shayne +Sherie +Shira +Shonte +Simona +Stephen +Sunni +Tamesha +Taneka +Timothy +Toby +Torri +Tory +Travis +Valorie +Verna +Wenona +Acacia +Adelaida +Akia +Akiba +Alberta +Alishia +Althea +Amberly +Amiee +Analilia +Annamaria +Anneliese +Asia +Astrid +Autum +Bambi +Beatris +Brandice +Britney +Cameo +Carlie +Carlye +Cassidy +Chana +Chante +Cherisse +Cherry +Clarice +Clarisa +Clementina +Corrinna +Cyndi +Dawnielle +Demetria +Detra +Dia +Dinah +Dione +Donald +Elana +Elicia +Elysia +Enriqueta +Erma +Eryn +Fancy +Felecia +Felisha +Francisco +Freda +Gema +Gemma +Genie +Gia +Gianna +Grabiela +Isaura +Ivory +Jamaica +Janene +Jeffrey +Jesusita +Jolynn +Julieanne +Kali +Karisa +Karma +Karmen +Katheryn +Kavita +Keesha +Kenneth +Kera +Kimiko +Kimya +Korrie +Lakishia +Lalita +Lanisha +Larisa +Laureen +Lawana +Leeanna +Letisha +Lissett +Lissette +Lizzette +Lucretia +Machelle +Magaly +Maia +Malina +Mandisa +Marcelina +Margaux +Margret +Marion +Marisha +Marlen +Marlyn +Maryellen +Maryjane +Melany +Melvina +Michal +Mika +Mina +Mirian +Monet +Monisha +Nailah +Natalee +Nicholle +Nissa +Nita +Noami +Octavia +Opal +Oscar +Paloma +Patience +Paulina +Pepper +Polly +Prudence +Raeann +Raelene +Randa +Rashanda +Reagan +Rebbecca +Rebecka +Rona +Ronica +Roshanda +Sabra +Sage +Sakinah +Santina +Shalene +Shalimar +Shanti +Sharmaine +Sharonda +Sheena +Sherice +Sherrell +Silva +Siobhan +Sophie +Sparkle +Starlene +Sybil +Syreeta +Taisha +Tambra +Tammara +Taya +Tena +Tenesha +Tiffaney +Tobi +Tonette +Tonisha +Tonja +Torie +Toshia +Tresa +Tynisha +Zenaida +Zulma +Abra +Adelita +Adena +Adriene +Agnes +Albert +Alberto +Ali +Alva +Alyce +Ameerah +Amey +Ammie +Andera +Angelika +Angella +Ariane +Arwen +Ayesha +Becki +Camellia +Cami +Cammie +Carlyn +Carry +Cathrine +Catina +Charles +Charlyn +Chelsie +Chirstina +Cinnamon +Clover +Dannette +Daria +December +Deeann +Deedee +Devina +Dyan +Dyana +Dyann +Elisabet +Elizebeth +Estelle +Fannie +Felice +Felicitas +Felicity +Florinda +Genelle +Genoveva +Germaine +Gigi +Gita +Grasiela +Haley +Hector +Helene +Ina +Isabella +Jacinda +Jacquelyne +Jacquelynn +Janay +Janessa +Janett +Jazmin +Jeanene +Jenae +Jenel +Jenica +Jordan +Jori +Julieann +Kameron +Kanisha +Karry +Kary +Katia +Katrena +Kecia +Kelsi +Kenna +Khristina +Kiera +Kimberli +Kimi +Kortney +Kory +Kourtney +Kyle +Lacie +Lakeysha +Laquisha +Larhonda +Leia +Leighann +Livier +Lizzet +Loren +Lorien +Lorin +Lucrecia +Lynnae +Madelyn +Magan +Mahogany +Maira +Malaika +Malika +Malisa +Mandee +Marbella +Marcelle +Margot +Marin +Mariza +Marti +Mechelle +Melba +Melida +Memory +Meranda +Miguel +Mikki +Milagros +Missy +Moria +Natisha +Natividad +Nelida +Nicol +Nikia +Odessa +Paris +Pedro +Penelope +Peter +Rafaela +Rashonda +Raven +Remy +Renea +Rhiana +Ricki +Rikki +Robbie +Robbin +Ronee +Roselia +Roslyn +Ruben +Sarai +Sean +Sequoia +Sergio +Shanan +Sharie +Sharleen +Shawnette +Shawnte +Shereen +Shilpa +Shona +Shonta +Sienna +Signe +Soila +Stacee +Steffanie +Stormy +Syliva +Talisa +Talitha +Tamekia +Tashia +Tatanisha +Tausha +Tavia +Teanna +Tessie +Tianna +Tiffini +Torrey +Treva +Trish +Tristan +Tunisia +Vianey +Victor +Vilma +Wendee +Xiomara +Xochil +Yessica +Zakiya +Zoila +Zulema +Abbey +Abril +Adelia +Afton +Alda +Alica +Alida +Alysa +Amada +Amberlyn +Amina +Amira +Amoreena +Anetra +Angelena +Anica +Anisha +Anneke +Annelise +Arasely +Aretha +Argelia +Aria +Arielle +Arin +Arleen +Artemisa +Ashlie +Audrea +Avery +Barbie +Barbra +Blair +Bonny +Brandon +Brandye +Britta +Bronwen +Bronwyn +Bryan +Bryna +Candis +Carl +Carmel +Caterina +Celica +Chanell +Channing +Charis +Charissa +Charlette +Cherrie +Chiara +Christeen +Christene +Christiane +Colby +Colene +Consuela +Courtnie +Dacia +Dalila +Danell +Danyell +Delaina +Delisa +Denelle +Denielle +Dennise +Devin +Diamond +Dimple +Dionicia +Donielle +Donita +Dyanna +Ebonie +Eddie +Eduardo +Elizabet +Eneida +Enid +Erendira +Erik +Ernestine +Faline +Fay +Florita +Franchesca +Francoise +Frank +Gale +Genea +Genesis +Georgiana +Gerardo +Gilbert +Glori +Goldie +Gregoria +Guinevere +Hayley +Honey +Ignacia +Iran +Isha +Ivana +Jacque +Jael +Janey +Janina +Jannet +Jared +Jaymee +Jeanny +Jenice +Jenise +Jennafer +Jennel +Jennell +Jennelle +Jennine +Jessamyn +Jessi +Jewel +Jimmy +Joel +Johnnie +Johnny +Jolena +Jonnie +Jordana +Josephina +Jovana +Julee +Julene +Kacy +Kai +Kandace +Kanika +Karine +Karlene +Karli +Katherin +Kathie +Kati +Katisha +Keely +Keira +Keith +Kenia +Keshia +Kesia +Kitty +Korie +Korina +Lanetta +Lanie +Lanita +Lannette +Laquita +Larena +Larina +Laronda +Lashaunda +Lashay +Latania +Latashia +Latausha +Latoshia +Launa +Laurene +Lavina +Leeanne +Leisha +Liane +Lianne +Lilly +Lizet +Lonna +Lorenza +Luana +Lucero +Lucina +Lyn +Lynnetta +Lynsey +Madonna +Magali +Maisie +Maranda +Maribell +Marilu +Marisella +Marita +Marquita +Martinique +Maryam +Meesha +Meggan +Mickie +Mikelle +Monalisa +Monette +Myeshia +Nakesha +Nakeya +Naomie +Nashira +Natosha +Neely +Nickie +Nickole +Niesha +Nika +Niya +Noemy +Olympia +Patti +Rania +Rashawn +Rashelle +Raul +Rebekkah +Reena +Renita +Rima +Risa +Rochell +Romelia +Romina +Rosalee +Roselyn +Rosenda +Rosina +Rozanna +Rusty +Sami +Sanjuana +Shaleen +Shalena +Shanay +Shane +Shanelle +Shanette +Shanita +Shannah +Shannen +Shaunte +Shawntel +Shemika +Shera +Sherilyn +Sherita +Sherree +Sindia +Sirenia +Sobeida +Sonnet +Sonny +Sulma +Sumer +Sunday +Tacy +Tai +Takiyah +Talisha +Tamala +Tamarra +Tameko +Tamie +Tanaya +Taneil +Tannia +Tarsha +Teena +Terah +Teressa +Tiffiney +Tirzah +Tisa +Tobie +Tommie +Trang +Tressa +Troy +Twila +Vanesa +Vicenta +Vida +Vivien +Winter +Yana +Zabrina +Zoey +Zoraida +Zuleika +Jennifer +Michelle +Jessica +Melissa +Sarah +Maria +Heather +Elizabeth +Christina +Lisa +Amy +Nicole +Kimberly +Angela +Stephanie +Kelly +Monica +Veronica +Rebecca +Shannon +Jamie +Amanda +Laura +Andrea +Amber +Julie +Erin +Sara +Rachel +Patricia +Christine +Sandra +Cynthia +Erica +Danielle +Mary +April +Wendy +Tiffany +Crystal +Alicia +Vanessa +Nancy +Karen +Carrie +Katherine +Jaime +Diana +Emily +Sabrina +Anna +Stacy +Erika +Gina +Megan +Natalie +Claudia +Brandy +Susan +Denise +Dawn +Ana +Tara +Leticia +Teresa +Melanie +Angelica +Tracy +Brenda +Valerie +Misty +Sonia +Michele +Kristina +Rosa +Jill +Leslie +Tamara +Stacey +Tina +Tanya +Holly +Summer +Heidi +Kathleen +Victoria +Jacqueline +Renee +Linda +Allison +Catherine +Adriana +Kristy +Kristin +Kristen +Monique +Kathryn +Shawna +Cindy +Dana +Jenny +Lindsay +Robin +Brandi +Theresa +Martha +Guadalupe +Lorena +Lori +Melinda +Samantha +Christy +Tammy +Julia +Leah +Deborah +Marisa +Deanna +Courtney +Yvette +Cristina +Regina +Norma +Desiree +Suzanne +Yolanda +Janet +Yvonne +Gabriela +Kristi +Maricela +Carmen +Gloria +Aimee +Marie +Alison +Kristine +Barbara +Irene +Olivia +Nichole +Sharon +Sylvia +Katie +Mandy +Carolyn +Raquel +Alma +Diane +Virginia +Adrienne +Marisol +Angelina +Margaret +Joanna +Natasha +Donna +Trisha +Yesenia +Ann +Carla +Felicia +Kari +Karla +Katrina +Lauren +Esmeralda +Maribel +Annette +Susana +Anne +Cheryl +Blanca +Araceli +Joy +Silvia +Brooke +Kelli +Cecilia +Jeanette +Anita +Priscilla +Kendra +Aisha +Elaine +Caroline +Marisela +Margarita +Marissa +Shelly +Pamela +Naomi +Krista +Ruth +Elisa +Karina +Darlene +Debra +Lydia +Angel +Autumn +Kara +Robyn +Candice +Isabel +Carol +Eva +Cassandra +Molly +Rachael +Elena +Kathy +Shauna +Shanna +Jaclyn +Keri +Rebekah +Ruby +Tricia +Ashley +Jodi +Alejandra +Kristie +Lindsey +Nadia +Paula +Bonnie +Melody +Rose +Esther +Rachelle +Sheila +Beth +Colleen +Juanita +Laurie +Lorraine +Connie +Helen +Marina +Janelle +Jasmine +Kelley +Kellie +Trina +Toni +Tonya +Cara +Rhonda +Marlene +Sherry +Irma +Rocio +Sophia +Alexandra +Roxanne +Bridget +Casey +Christie +Alisha +Arlene +Luz +Lisette +Olga +Stacie +Angie +Kirsten +Rochelle +Alexis +Carolina +Charlene +Beatriz +Ramona +Stefanie +Tania +Ebony +Judith +Meredith +Candace +Tanisha +Traci +Charity +Dolores +Evelyn +Joanne +Rita +Farrah +Latoya +Sandy +Shana +Alisa +Brandie +Frances +Selena +Jennie +Griselda +Lucia +Serena +Jenifer +Salina +Sheri +Eileen +Jocelyn +Maya +Roberta +Rosemary +Sonya +Audrey +Miriam +Bianca +Ericka +Johanna +Shirley +Rhiannon +Bernadette +Jeannette +Mindy +Bethany +Christa +Celia +Kerry +Mayra +Selina +Alice +Delia +Graciela +Joyce +Tamika +Janice +Terri +Shelley +Celeste +Chelsea +Nora +Tasha +Grace +Jillian +Liliana +Elsa +Hilary +Jami +Jana +Sally +Jody +Cathy +Corina +Latasha +Meghan +Antoinette +Lara +Joann +Mia +Janette +Juana +Judy +Kerri +Noemi +Tabitha +Angelique +Becky +Christi +Lourdes +Belinda +Elisabeth +Faith +Georgina +Nina +Hannah +Jean +Jenna +Lynn +Amelia +Ellen +Hilda +Jane +Lena +Taryn +Genevieve +Lilia +Miranda +Gretchen +Kim +Amie +Jolene +Lesley +Lynette +Teri +Tracey +Betty +Marcella +Vivian +Bertha +Josephine +Debbie +Dena +Tami +Alyssa +Marilyn +Yadira +Edith +Michael +Sasha +Briana +Carina +Charlotte +Esperanza +Gladys +Janine +Nadine +Sofia +Abigail +Claire +Dina +Jeanne +Kate +Laurel +Lizette +Noelle +Chandra +Cherie +Maritza +Carly +Catalina +Corinne +Hope +Jacquelyn +Kizzy +Beatrice +Hillary +Jamila +Lakisha +Magdalena +Mariah +Aurora +Cari +Dora +Dorothy +Estela +Imelda +Jodie +Liza +Lupe +Marla +Maureen +Mercedes +Tracie +Camille +Cori +Josefina +Kimberley +Mandi +Marlena +Rosalba +Shelby +Staci +Cheri +Lea +Marcela +Pauline +Rosalinda +Tameka +Antonia +Celina +Karin +Kimberlee +Sommer +Emma +Iris +Jaimie +Lora +Sunshine +Alissa +Beverly +Jackie +Lucy +Terra +Allyson +Krystal +Lillian +Melisa +Myra +Sonja +Wendi +Consuelo +Janna +Keisha +Sierra +Dianna +Isela +Jeanine +Latisha +Marcia +Candy +Daisy +David +Jeannie +Leanne +Loretta +Carissa +Chantel +Lynda +Miesha +Reyna +Daniel +Mireya +Myrna +Rosio +Susanna +Bobbie +Ginger +Jessie +Melina +Peggy +Rosalva +Athena +Audra +Janel +Leilani +Maggie +Rene +Rosario +Rosie +Shawn +Sherri +Whitney +Adrianna +Aracely +Charmaine +Katharine +Maryann +Mirna +Nikki +Rena +Ryan +Sheree +Alana +Alyson +Dominique +Elvia +Hollie +Jayme +Penny +Vicki +Adrianne +Aileen +Anastasia +Annie +Chrystal +Elisha +Elissa +Francine +Janell +Marianne +Marta +Rashida +Brittany +Clara +Francesca +Marsha +Noel +Rosalie +Rosanna +Susie +Tori +Xochitl +Cathleen +Cory +Elvira +Justine +Kenya +Lana +Minerva +Morgan +Talia +Tiffani +Vickie +Gwendolyn +Mariana +Rosemarie +Bree +Corrie +Devon +Evangelina +Francisca +Gabrielle +Juliana +Kasey +Luisa +Marci +Susanne +Cassie +Deana +Elise +Geneva +Glenda +Karrie +Katy +Leann +Maisha +Malinda +Marjorie +Mona +Rebeca +Socorro +Tammie +Valarie +Corey +Corrine +Fabiola +Georgia +Leanna +Liana +Patrice +Reina +Ami +Anabel +Brandee +Catrina +Corinna +Darcy +Karyn +Lakeisha +Lakesha +Stella +Billie +Darla +Destiny +Edna +Ingrid +Larissa +Lina +Mariela +Meagan +Natalia +Roxana +Tisha +Tonia +Aida +Anissa +Bobbi +Fawn +Harmony +Ida +Inez +Ivette +Latanya +Ofelia +Randi +Ronda +Shawnte +Adela +Aubrey +Brianna +Christopher +Clarissa +Davina +Doreen +Estella +Jasmin +Joey +John +Lidia +Marivel +Paige +Sheryl +Tennille +Terry +Tiffanie +Venessa +Vicky +Annmarie +Ariana +Chanda +Corie +Cortney +Cristal +Joleen +Julissa +Kirstin +Leila +Lily +Roxanna +Suzanna +Amalia +America +Anel +Angelita +Elva +Haley +Haydee +James +Jason +Malia +Malissa +Perla +Qiana +Tawnya +Ursula +Windy +Carey +Carie +Chanel +Cheyenne +Flor +Gena +Joelle +Lizeth +Marcie +Mellissa +Myisha +Nicolle +Rosalia +Violeta +Alina +Brook +Caitlin +Concepcion +Constance +Cora +Corrina +Danica +Delilah +Elaina +Elia +Florence +Helena +Ivy +Joan +Jose +Karie +Kristal +Misti +Nakia +Nellie +Tammi +Tamra +Tiana +Viviana +Alena +Andria +Anitra +Azucena +Caryn +Doris +Gail +Giselle +June +Kori +Lashonda +Latrice +Leigh +Mara +Rosalyn +Shamika +Shante +Shari +Sujey +Sunny +Suzette +Tera +Tessa +Trinity +Angelia +Belen +Cecelia +Cristy +Danelle +Dayna +Fatima +Janie +Jeannine +Joni +Kerrie +Kira +Kisha +Leia +Mari +Pearl +Rosalind +Rosaura +Sadie +Star +Tabatha +Tanesha +Tia +Berenice +Christal +Christiana +Christin +Coral +Eleanor +Eve +Gricelda +Jaqueline +Jenelle +Juliet +Lacey +Layla +Liset +Marcy +Martina +Paola +Shannan +Starr +Tamar +Tanika +Adriane +Aide +Angeline +Anthony +Arcelia +Claudine +Eunice +Evette +Ivonne +Jade +Janae +Jenni +Julianne +Kathrine +Lucinda +Lynne +Lynnette +Petra +Raven +Reanna +Renae +Robert +Violet +Wanda +Alysia +Amparo +Daniella +Elida +Eloisa +Guillermina +Jan +Jeanna +Josie +Karissa +Lee +Lia +Lindy +Lorie +Mandie +Micaela +Myesha +Nanette +Nichol +Raina +Sandi +Shanon +Shawnna +Sherrie +Shonna +Tamera +Tenisha +Thelma +Cameron +Cherish +Iliana +Jammie +Janis +January +Jeri +Jesus +Juliette +Kay +Manuela +Mirella +Nelly +Salena +Selene +Shayla +Soledad +Sondra +Stefani +Sumer +Zoe +Adrian +Alexandria +Anjelica +Annemarie +Brenna +Bridgette +Carisa +Carmela +Chante +Colette +Dalia +Darci +Darcie +Deanne +Demetria +Deserie +Eliza +Emilia +Emilie +Faviola +Francis +Gabriella +Hayley +Hazel +Jaimee +Jeana +Jo +Johnna +Kami +Lucille +Mackenzie +Matthew +Maxine +Michell +Monika +Racheal +Richard +Simone +Tyra +Venus +Zulema +Alanna +Alecia +Alexa +Alia +Brian +Charise +Cicely +Dalila +Debora +Deena +Dianne +Eugenia +Holli +Iesha +Jayne +Jonelle +Jordan +Kamilah +Kevin +Leeann +Lila +Lupita +Lyndsay +Margie +Margo +Marian +Mellisa +Pilar +Rhianna +Rosana +Ryann +Shanda +Shayna +Starla +Sue +Tamisha +William +Yanira +Zulma +Adina +Alejandrina +Anika +Annabel +Annalisa +Ariel +Asha +Bernice +Betsy +Brie +Carin +Chastity +Delfina +Denisha +Evelia +Justina +Kindra +Kirstie +Kyla +Lashanda +Latonya +Louise +Madeline +Marguerite +Melodie +Nidia +Nova +Rachell +Rhea +Rosalina +Shameka +Shaunna +Shellie +Sugey +Valeria +Adelina +Alba +Bambi +Berta +Brigitte +Casandra +Casie +Charisse +Cherise +Coreen +Dania +Daniela +Delores +Dusty +Felecia +Flora +Ileana +Ilene +Jada +Jameelah +Jonna +Juan +Kacey +Kesha +Lanette +Lani +Lela +Leona +Lissette +Lola +Louisa +Mabel +Marcelina +Maricruz +Marion +May +Polly +Regan +Richelle +Rosanne +Roseanna +Shalon +Shani +Shasta +Skye +Sophie +Stacia +Therese +Vera +Adria +Angelic +Ashlee +Aurelia +Beatris +Bridgett +Caren +Celena +Christian +Daphne +Dara +Dionne +Erinn +Ernestina +Gillian +Gisela +Hortencia +Jesse +Joseph +Lakiesha +Lizbeth +Lizet +Mark +Maryanne +Mindi +Mollie +Patrisia +Penelope +Spring +Stephani +Steven +Valentina +Velia +Xochilt +Yasmin +Yecenia +Aaron +Aime +Alycia +Araseli +Ayesha +Beronica +Breanna +Callie +Carole +Chantal +Chantelle +Chris +Coleen +Danette +Elsie +Estrella +Farah +Georgette +Gia +Hanna +Jeremy +Joana +Jolie +Jovita +Keely +Keli +Lacy +Ladonna +Lashawn +Latricia +Leonor +Loraine +Lucila +Maile +Marlo +Maura +Michaela +Moriah +Nikole +Paulette +Princess +Rayna +Rosamaria +Rosita +Samara +Shandra +Shanta +Sharlene +Shavon +Shira +Taylor +Tyesha +Vanesa +Abby +Alexia +Alva +Amberly +Andra +Angelena +Arianna +Armida +Ayana +Carlene +Carlos +Carri +Chasity +Dannielle +Deidre +Denice +Devin +Elana +Elicia +Gracie +Honey +Janeen +Jeanie +Josette +Julianna +Kaci +Kellee +Kiana +Kimberlie +Lizett +Lorrie +Luis +Marin +Mercy +Milissa +Mimi +Nanci +Paloma +Patty +Paul +Phyllis +Rachele +Serina +Shanell +Shaunte +Shelli +Shiloh +Sybil +Teresita +Addie +Agnes +Akilah +Alida +Alisia +Amiee +Anastacia +Annamarie +Antonette +Benita +Blythe +Brigette +Bronwyn +Camilla +Candi +Carleen +Charissa +Chloe +Christen +Cindi +Cristi +Danell +Daniele +Danika +Desire +Dulce +Eden +Eryn +Evonne +Fiona +Gisel +Gwen +Herlinda +Ilda +Isabelle +Isis +Jacquelin +Janett +Jannette +Jaymie +Jesenia +Jesica +Jewel +Joi +Joshua +Joslyn +Kacie +Kameelah +Kasandra +Katina +Kristyn +Latosha +Leandra +Lorene +Mariann +Mistie +Natividad +Nelida +Nicolette +Nikia +Nissa +Phoebe +Quiana +Rae +Sabina +Sage +Shara +Sharee +Sherie +Shonta +Somer +Susannah +Tamesha +Tatiana +Terrie +Tobi +Willow +Winnie +Adelita +Amee +Annamaria +Antionette +Anya +Argelia +Brianne +Brittney +Candie +Cathrine +Cathryn +Cecily +Christel +Christiane +Cinthia +Dahlia +Danita +Dawna +Desirae +Dolly +Eboni +Ella +Elyse +Faye +Felisa +Frankie +Jacklyn +Jaimi +Jazmin +Jeffrey +Jena +Jessika +Joel +Johnnie +Julieta +Karri +Kayla +Kelsey +Kenisha +Kia +Kristiana +Latesha +Lavonne +Lawanda +Liberty +Lilian +Lilliana +Lisett +Lisset +Lorna +Luciana +Lucretia +Maia +Mariaelena +Marilynn +Marti +Melonie +Mendy +Micheal +Mina +Nereida +Nubia +Nydia +Oriana +Rana +Ronnie +Roseann +Rowena +Sarina +Sebrina +Shanika +Sharla +Sheena +Siobhan +Tamekia +Timothy +Tonisha +Trinidad +Victor +Vikki +Zenaida +Ada +Anamaria +Ariane +Arica +Ashleigh +Barbra +Britt +Buffy +Caron +Catharine +Charleen +Clarisa +Crista +Danya +Daria +Deandra +Deann +Deidra +Della +Edelmira +Emilee +Enedina +Erlinda +Gayle +Gilda +Ginny +Gisele +Hermelinda +Jeni +Kanika +Karey +Kenneth +Khalilah +Lauri +Letisia +Lissa +Lois +Lorelei +Manuel +Mariza +Matilde +Mckenzie +Michel +Mika +Milagros +Moira +Myla +Nakisha +Nannette +Nicola +Paulina +Piper +Rory +Roxann +Scarlett +Shawnee +Shea +Shelia +Shonda +Sparkle +Suzy +Tana +Tarah +Thea +Tomeka +Torrie +Tory +Tracee +Trista +Zakiya +Aaliyah +Adam +Adele +Alberta +Aleta +Alishia +Alysha +Amada +Analilia +Andrew +Anjanette +Arianne +Asia +Aundrea +Aura +Ava +Breezy +Brisa +Cary +Cassidy +Celestina +Charlie +Cherisse +Cody +Cristine +Danae +Daniell +Danyelle +Davida +Dee +Deirdre +Dinah +Dorian +Elisabet +Francisco +George +Geraldine +Geri +Gianna +Idalia +Jamey +Jamilah +Jeanene +Jenae +Jenee +Jina +Jodee +Juli +Katheryn +Khara +Lakeshia +Lanisha +Larisa +Leana +Liane +Llesenia +Lolita +Malisa +Maranda +Marlana +Marleen +Marni +Marnie +Marysol +Meaghan +Mechelle +Micah +Mitzi +Moria +Myiesha +Natacha +Nathalie +Natisha +Noelia +Rani +Renita +Rikki +Roberto +Roselia +Roslyn +Sariah +Sarita +Scott +Shanti +Shawnda +Shawnta +Shawntae +Shayne +Shona +Stephany +Stephen +Stephenie +Tawni +Tenesha +Terah +Tiesha +Tiffiny +Valorie +Vannessa +Yessenia +Adelaida +Adriene +Akisha +Alethea +Allegra +Amity +Analisa +Andre +Angella +Annabelle +Armando +Aryn +Ayanna +Azure +Bessie +Carmel +Carmelita +Charla +Clarice +Claudette +Corine +Danyell +Darline +Dinora +Dorothea +Eddie +Edward +Elda +Ellie +Eloise +Enriqueta +Eric +Estelle +Ethel +Evangeline +Giovanna +Greta +Haidee +Ilana +Iran +Jacinda +Janee +Janessa +Jeniffer +Jennine +Jerri +Jessi +Johnny +Josephina +Julee +Justin +Kacy +Kameron +Kandi +Kandice +Karena +Karli +Karly +Karolyn +Kelle +Kimber +Kris +Krisha +Krysta +Kymberly +Lakeysha +Lashanna +Leslee +Letisha +Libby +Lorenza +Lorina +Lucrecia +Lurdes +Lus +Magnolia +Maira +Margot +Mariko +Mario +Martine +Maryam +Meggan +Merry +Mildred +Miroslava +Naima +Nicki +Niki +Nikisha +Nikkia +Nola +Nona +Oralia +Patrica +Precious +Raegan +Rafael +Rafaela +Rasheda +Raylene +Riann +Ricardo +Rina +Rosalynn +Ruben +Sandie +Serenity +Shakira +Shanelle +Shantae +Shantell +Shareen +Shaunda +Shavonne +Shereen +Shonte +Sienna +Stephaine +Stormy +Sulema +Susy +Taisha +Takisha +Tandra +Tarrah +Tashia +Tenille +Thalia +Thomas +Tianna +Tiara +Tiffaney +Tomika +Tonja +Trish +Twyla +Valery +Vida +Xochil +Alesha +Alvina +Amina +Anabell +Andreana +Anisa +Anneliese +Annika +Arleen +Ashanti +Ashlie +Asusena +August +Bernadine +Bettina +Bobby +Bonita +Bonny +Brandon +Brett +Bryan +Cambria +Candis +Carlie +Carman +Carmina +Celine +Chaka +Chara +Charles +Chere +Cherry +Chiara +Chrissy +Claribel +Cruz +Dani +Danisha +Danna +Darleen +Delana +Delicia +Delila +Deseree +Dione +Dorene +Dori +Dustie +Elba +Elma +Emmy +Erendira +Erma +Ernestine +Esperansa +Eulalia +Fanny +Fara +Fernando +Gabriel +Goldie +Gregoria +Hailey +Herminia +Ines +Janene +Jenell +Jennefer +Jenniffer +Jolynn +Joselyn +Jovana +Jovanna +Julieann +Karma +Kathie +Kathryne +Kati +Kendall +Kiara +Kiera +Kimiko +Kizzie +Laila +Lakeesha +Lakenya +Larhonda +Larry +Lashawna +Latrina +Lauralee +Leighann +Lenore +Letecia +Lilly +Linnea +Lisbeth +Lisha +Lizabeth +Loreen +Lyla +Lynsey +Madeleine +Madelyn +Magda +Malika +Maren +Margret +Mariam +Marianna +Maricella +Marika +Marilu +Marlina +Marsela +Maryjane +Marylou +Matilda +Melodee +Melva +Melynda +Merissa +Missy +Monet +Monic +Naila +Nichelle +Niesha +Noemy +Octavia +Patti +Petrina +Priya +Raeann +Rebecka +Rebeka +Rebekka +Renea +Rhiana +Ria +Robbie +Rona +Roseanne +Santa +Sarai +Serene +Shalonda +Shantel +Shaun +Shaunta +Shawntay +Shawntee +Sita +Sky +Soraya +Sydney +Tanaya +Tawny +Thais +Tinisha +Torri +Trudy +Twila +Vilma +Winona +Xenia +Yasmine +Yesica +Alaina +Alayne +Albert +Alesia +Althea +Analia +Andrina +Anessa +Anjela +Annel +Antonio +Armanda +Aubree +Aviva +Aya +Aziza +Bibiana +Brandice +Brigid +Britta +Camelia +Cami +Carley +Celene +Celestine +Cerissa +Chanelle +Charline +Cheree +Christene +Christianne +Chrystie +Ciara +Cinnamon +Cristin +Cyndi +Dafina +Dallas +Damaris +Debby +Deeann +Deedee +Deja +Delaney +Denita +Dionna +Dixie +Dominque +Dorina +Ebonie +Eduardo +Elizabet +Elizebeth +Enrique +Ester +Fay +Feather +Felice +Franchesca +Frank +Gema +Genny +Gerardo +Giana +Ginamarie +Gladis +Gregory +Hallie +Harriet +Helene +Jackeline +Jacki +Jaclynn +Jacque +Jacquline +Jamaica +Jaymi +Jazmine +Jene +Jenine +Joelene +Joellen +Jordana +Kathia +Katrice +Keesha +Keila +Kenna +Khadijah +Kristel +Kristian +Kylie +Kyra +Lacresha +Lanita +Laquisha +Lashana +Latrisha +Lavinia +Lawana +Leeanna +Leora +Lindsy +Linette +Lissett +London +Loriann +Louann +Love +Luana +Lucina +Machelle +Maegan +Malaika +Malisha +Marbella +Mariella +Marilee +Marisha +Marva +Marybel +Maryellen +Maryrose +Meadow +Melani +Melany +Melony +Melvina +Melyssa +Mica +Michal +Mila +Milena +Mira +Misha +Mya +Nailah +Nakesha +Nakita +Niccole +Nicholle +Nicol +Ninfa +Nohemi +Noreen +Nyesha +Prairie +Priscila +Raeanne +Ranee +Rasheedah +Rashelle +Raymond +Reba +Reena +Renata +Renisha +Rheanna +Rima +Robbin +Rochell +Roni +Rosalee +Roselyn +Roshawn +Rudy +Sacha +Scarlet +Sean +Senaida +September +Shaina +Shalanda +Shalene +Shanan +Shanee +Shaneka +Shanise +Sharmaine +Sharron +Shawntel +Shay +Shiela +Shoshana +Shyla +Silbia +Steffanie +Sunday +Tamatha +Tamica +Tamiko +Taneisha +Taneka +Tavia +Tegan +Teneka +Tequila +Tesha +Tirzah +Tora +Tosha +Toya +Tressa +Tritia +Troy +Tyree +Venita +Veronika +Xiomara +Yael +Yanet +Yasmeen +Yicel +Zandra +Zoila +Adelia +Adriann +Aesha +Aimie +Alex +Alexander +Alfredo +Ali +Alondra +Alysa +Ammie +Amoreena +Anarosa +Andres +Angelene +Anica +Anisha +Annetta +Antonietta +Antonina +Apryl +Aqueelah +Aretha +Arika +Arline +Arturo +Astrid +Autum +Ayisha +Azalia +Billy +Blake +Breana +Breanne +Brigit +Bryna +Candida +Carli +Cassaundra +Chana +Chanell +Chantell +Charisma +Charlena +Chenoa +Cherri +Cheryle +Chistina +Clare +Collette +Corin +Corissa +Cristen +Cristie +Cybil +Cydney +Dacia +Dale +Dannie +Danyel +Dava +Dedra +Delma +Denika +Denisse +Dennis +Dennise +Denyse +Desere +Detra +Diamond +Dominic +Dorthy +Douglas +Dyana +Elayne +Elidia +Elysia +Ericca +Estee +Felipa +Felisha +Flavia +Freedom +Galadriel +Gale +Genoveva +Germaine +Heide +Heidy +Hermila +Hortensia +Ileen +India +Isabell +Jamia +Janise +Jannet +Jenessa +Jenise +Jesseca +Johana +Jonathan +Joya +Julene +Juliane +Juliann +Juniper +Kachina +Kai +Kanisha +Karah +Kareemah +Kariann +Karine +Karisa +Karna +Kary +Kasha +Kasia +Kathlene +Kathlyn +Katia +Kaycee +Keith +Kelleen +Kellye +Kenesha +Kenyetta +Keshia +Keturah +Kimberlyn +Kiran +Korie +Korina +Krystina +Kyle +Kylee +Laci +Lacie +Lady +Lakia +Lanae +Laneisha +Lanika +Laquita +Larina +Laronda +Lashaun +Lashawnda +Lashon +Lashunda +Laticia +Latonia +Laureen +Leatha +Leeanne +Lenee +Leon +Leondra +Letha +Letticia +Lianna +Lianne +Licet +Lili +Lisamarie +Liz +Lonnie +Lorri +Lory +Lou +Lovina +Luann +Lyndsey +Lynea +Mae +Mahogany +Mai +Maida +Margaux +Mariateresa +Maricel +Mariel +Marquetta +Marsi +Marty +Marvin +Marybeth +Mattie +Mayte +Mele +Memory +Meri +Micheline +Mieko +Mignon +Miki +Minnie +Mirian +Miya +Moana +Monalisa +Moncia +Myeisha +Myeshia +Myriah +Myshia +Nadya +Natalee +Natascha +Natosha +Neely +Neha +Neisha +Nena +Neomi +Nia +Nickole +Nicky +Nikesha +Nikita +Ninette +Nisha +Nita +Noelani +Noni +Noriko +October +Odessa +Oliva +Olympia +Orquidea +Patience +Phillip +Pia +Pricilla +Racquel +Raelene +Rashonda +Raul +Remy +Rian +Rica +Ricci +Risa +Romelia +Romina +Ronisha +Roshanda +Roxane +Royce +Rubi +Salvador +Sanya +Sarena +Sascha +Saundra +Seema +Shala +Shaleen +Shalimar +Shalyn +Shamara +Shanae +Shane +Shanette +Shannel +Shantee +Sharise +Sharona +Sharonda +Shavonda +Shawnie +Shekinah +Shellee +Sherene +Sheridan +Sherrill +Shireen +Shree +Simona +Sindy +Sirena +Siri +Starlett +Steffany +Sunnie +Syreeta +Takiyah +Tali +Talin +Talisa +Tameca +Tamia +Taneshia +Tanna +Tarra +Tatum +Tawanna +Tawna +Teasha +Temeka +Tenaya +Teressa +Tessie +Thuy +Tierney +Tiffiney +Tommi +Treena +Tresa +Treva +Tristan +Tuesday +Tunisia +Twanna +Tyeisha +Tyisha +Tynesha +Tynisha +Tyresha +Vashti +Velma +Wendee +Yancy +Yezenia +Yisel +Zaida +Zenia +Zuleika +Jennifer +Melissa +Jessica +Michelle +Sarah +Christina +Nicole +Maria +Elizabeth +Heather +Lisa +Angela +Amy +Stephanie +Kimberly +Kelly +Rebecca +Veronica +Amanda +Monica +Amber +Andrea +Laura +Shannon +Erin +Christine +Rachel +Crystal +Julie +Sara +Jamie +Danielle +Patricia +Cynthia +Vanessa +Erica +Sandra +April +Mary +Tiffany +Alicia +Nancy +Katherine +Wendy +Emily +Anna +Diana +Karen +Carrie +Megan +Erika +Natalie +Gina +Kristina +Brandy +Stacy +Denise +Claudia +Melanie +Sabrina +Teresa +Angelica +Valerie +Desiree +Susan +Tina +Tracy +Linda +Tara +Ana +Kristen +Jaime +Tanya +Leslie +Leticia +Stacey +Brenda +Kristy +Dawn +Jacqueline +Michele +Allison +Julia +Kathryn +Monique +Kristin +Sonia +Jill +Rosa +Adriana +Brandi +Misty +Tamara +Catherine +Heidi +Victoria +Renee +Kathleen +Lindsay +Holly +Martha +Samantha +Courtney +Katie +Cheryl +Theresa +Summer +Melinda +Lorena +Christy +Jenny +Lauren +Deborah +Gabriela +Cristina +Robin +Guadalupe +Lori +Cindy +Yvonne +Mayra +Leah +Yolanda +Dana +Regina +Nichole +Katrina +Marisa +Barbara +Sharon +Gloria +Deanna +Brooke +Suzanne +Olivia +Carmen +Marie +Kristine +Yvette +Tammy +Sylvia +Janet +Kristi +Alison +Raquel +Marissa +Maricela +Alma +Irene +Shawna +Natasha +Anne +Norma +Cecilia +Aimee +Carolyn +Susana +Priscilla +Angelina +Ann +Blanca +Adrienne +Margaret +Virginia +Yesenia +Mandy +Karina +Maribel +Lindsey +Ashley +Esmeralda +Kari +Karla +Carolina +Carla +Elena +Kelli +Trisha +Jeanette +Jaclyn +Debra +Joy +Candice +Joanna +Ruth +Shauna +Paula +Rachael +Felicia +Colleen +Janelle +Silvia +Marisol +Diane +Alejandra +Darlene +Laurie +Pamela +Cassandra +Naomi +Araceli +Autumn +Alexandra +Caroline +Kara +Krista +Eva +Annette +Marlene +Mindy +Molly +Rochelle +Elisa +Ruby +Rocio +Anita +Juanita +Kendra +Donna +Elaine +Angel +Meghan +Melody +Rita +Alisha +Margarita +Bonnie +Jasmine +Esther +Shanna +Marisela +Rachelle +Sandy +Lorraine +Rose +Cara +Robyn +Helen +Isabel +Casey +Corinne +Lydia +Rebekah +Trina +Bethany +Carol +Charlene +Ebony +Roxanne +Shana +Luz +Connie +Judith +Candace +Sheila +Shelly +Frances +Traci +Kellie +Latoya +Angie +Jodi +Tonya +Evelyn +Irma +Kirsten +Lucia +Sophia +Stacie +Chelsea +Kelley +Alexis +Meredith +Tabitha +Kristie +Toni +Arlene +Audrey +Marina +Jillian +Rhonda +Griselda +Tricia +Alice +Devon +Beatriz +Christie +Jenifer +Keri +Miriam +Sherry +Bernadette +Bianca +Eileen +Aja +Charity +Noemi +Grace +Jennie +Olga +Nadia +Amelia +Elisabeth +Genevieve +Serena +Beth +Corina +Jocelyn +Dolores +Lacey +Jana +Joyce +Nora +Stefanie +Tamika +Alisa +Debbie +Kerry +Shelley +Tanisha +Delia +Janice +Kathy +Aisha +Elsa +Jeannette +Joanne +Hilary +Graciela +Lynette +Rosemary +Tania +Belinda +Christa +Liliana +Sonya +Bridget +Faith +Lisette +Beverly +Jane +Lourdes +Sheri +Hilda +Judy +Kimberley +Rosalinda +Jolene +Marcella +Nina +Noelle +Jacquelyn +Krystal +Lynn +Abigail +Alyssa +Antoinette +Juana +Kate +Amie +Brandie +Ericka +Ginger +Hillary +Iris +Melisa +Myra +Selena +Tasha +Aurora +Celia +Ellen +Lizette +Mia +Rhiannon +Dena +Janine +Jessie +Nikki +Ramona +Edith +Imelda +Marcia +Miranda +Annie +Latasha +Lena +Lesley +Roberta +Sofia +Carly +Dianna +Esperanza +Hannah +Marcela +Staci +Becky +Celina +Joann +Josephine +Maureen +Dorothy +Jami +Mercedes +Michael +Ryan +Sierra +Camille +Jody +Rosario +Sasha +Angelique +Jenna +Marta +Rene +Sally +Sheryl +Taryn +Alana +Briana +Consuelo +Harmony +Johanna +Bertha +Georgina +Kim +Tami +Carina +Jackie +Latisha +Laurel +Liza +Shelby +Vivian +Cathy +Katharine +Marilyn +Betty +Chandra +Isela +Jean +Marla +Teri +Terri +Tracey +Celeste +Chrystal +Janette +Lea +Magdalena +Sonja +Athena +Christi +Josefina +Lilia +Maritza +Shirley +Antonia +Carissa +Claire +Francine +Keisha +Leanna +Salina +Yadira +Charlotte +Dina +Francisca +Lara +Maira +Marianne +Maya +Perla +Rebeca +Cheri +Cherie +Dora +Elvia +Lakisha +Alissa +Evangelina +Jeanne +Selina +Brittany +Dominique +Emma +Jamila +Kerri +Leilani +Terra +Candy +Catalina +Fabiola +Kasey +Kenya +Marjorie +Marsha +Nadine +Sherri +Aubrey +Beatrice +Elvira +Gretchen +Jeanine +Karin +Bobbie +Elisha +Katy +Lacy +Pauline +Allyson +Corrine +Cory +Hollie +Hope +Leanne +Marlena +Mireya +Whitney +Audra +Cassie +Gladys +Janel +Lidia +Mariah +Stella +Anabel +Janell +Lillian +Mariana +Violeta +Alyson +Joan +Rosio +Viviana +Brianna +Clarissa +Jodie +Kimberlee +Melina +Tiffani +Vicki +Vicky +Adrianne +Caryn +Gisela +Janna +Mandi +Mara +Mirella +Tera +Cari +Chrissy +Cristy +Darcy +Gabrielle +Jayme +Jeannie +Juliana +Lakeisha +Lucy +Meagan +Rena +Rosie +Shawn +Sommer +Daisy +Estella +Lana +Loretta +Luisa +Lupe +Morgan +Aracely +Destiny +Natalia +Peggy +Tawny +Wendi +Adrianna +Ariana +David +Davina +Estela +Inez +Karyn +Larissa +Latanya +Malinda +Mona +Myesha +Reina +Tracie +Catrina +Danelle +Jasmin +Maryann +Nichol +Tori +Angelita +Brenna +Deana +Liana +Marci +Noel +Paige +Rosalba +Susie +Talia +Azucena +Carey +Dalia +Fatima +Lynda +Myrna +Paola +Qiana +Reyna +Socorro +Sunshine +Susanna +Alexandria +Bree +Cori +Eleanor +Gwendolyn +Helena +June +Lina +Mirna +Ofelia +Penny +Tameka +Tammie +Tia +Yajaira +Aileen +Cortney +Dayna +Elva +Gail +Ingrid +Juliet +Robert +Susanne +Venus +Xochitl +Amalia +Bobbi +Chanel +Christopher +Giselle +Karrie +Leigh +Lizbeth +Lizeth +Malissa +Rosemarie +Tamra +Tisha +Anastasia +Belen +Cathleen +Edna +Francesca +Julianne +Latrice +Leia +Maisha +Raven +Tawnya +Valarie +Aime +Charmaine +Clara +Danette +Devin +Glenda +Haley +Jose +Kristal +Kyla +Leann +Leila +Lora +Rosalyn +Sadie +Sheree +Simone +Tanesha +Vickie +Abby +Corinna +Gabriella +Jade +Jaimie +Jeannine +Jenelle +Lakesha +Marcie +Marcy +Meghann +Pearl +Randi +Rosalie +Rosanna +Tabatha +Adriane +Brandee +Bridgette +Christal +Corey +Dianne +Doreen +Eunice +Farrah +Gricelda +Latonya +Monika +Nelly +Rashida +Rosalva +Shanon +Sherrie +Sunny +Tiana +Tonia +Trinity +Adela +Andria +Brianne +Darla +Elise +Georgia +Ivy +Janie +Jesus +Kenisha +Malia +Mariela +Minerva +Quiana +Roxana +Suzanna +Alysia +Anel +Anthony +Ariane +Cecelia +Colette +Delilah +Doris +Elaina +Elissa +Ivonne +Jena +Kori +Lani +Lily +Misti +Rosalia +Ursula +Bernice +Billie +Carmela +Chantel +Christen +Danica +Eliza +Gena +Geneva +Jacklyn +Joseph +Kirstin +Lupita +Lyndsey +Mellisa +Nicolle +Patrice +Ronda +Shante +Shari +Star +Suzette +Terry +Tessa +Venessa +Windy +Adrian +Alanna +Alycia +Anissa +Annamarie +Breanna +Dara +Deidre +Eugenia +Faye +Joleen +Joni +Justine +Kathrine +Kellee +Kylie +Lilian +Maxine +Mellissa +Rhianna +Shanika +Shaunna +Starla +Stephenie +Thelma +Yasmin +Aida +Alexa +Annemarie +Christian +Corrie +Daniela +Deanne +Fawn +James +Janae +Jason +Jo +Lee +Lindy +Louise +Lucinda +Maggie +Margo +Marian +May +Myisha +Nellie +Salena +Shannan +Shasta +Shayla +Shiloh +Soledad +Sondra +Valeria +Vera +Ariel +Betsy +Casandra +Daniella +Eloisa +Iesha +Ivette +Jaqueline +Jeanna +Kindra +Kisha +Kizzy +Kyra +Miesha +Penelope +Richelle +Rina +Rosanne +Serina +Shawnta +William +Ada +Alena +Brook +Caren +Crissy +Danae +Daphne +Desirae +Dulce +Faviola +Flor +Gayle +Gwen +Holli +Ida +Janis +John +Juan +Kira +Leona +Lorie +Mindi +Paulina +Petra +Rosaura +Shameka +Shani +Shayna +Tamera +Tennille +Armida +Berenice +Beronica +Callie +Cameron +Corrina +Daniel +Denice +Dusty +Eboni +Gillian +Jammie +Jesse +Jordan +Josie +Justin +Ladonna +Leana +Leeann +Michaela +Racheal +Rayna +Reanna +Shanta +Shavon +Shawnte +Starr +Sumer +Tanika +Tenisha +Zulema +Alina +Brian +Cathryn +Chasity +Chloe +Cora +Coral +Corie +Cristine +Emilia +Emilie +Eric +Francis +Ginny +Giovanna +Ileana +Jan +Janeen +Jeana +Jeanie +Kacey +Keely +Kiley +Lissette +Mandie +Martina +Maura +Phyllis +Pilar +Rhea +Rosita +Roxanna +Shara +Thea +Therese +Yanira +Aide +Alecia +Annika +Annmarie +Arianna +Arianne +Carri +Chantal +Chastity +Christel +Concepcion +Constance +Eve +Guillermina +January +Joey +Julissa +Kai +Karie +Kelsey +Kerrie +Kris +Lawanda +Layla +Loraine +Maile +Manuela +Margie +Mari +Marivel +Mildred +Mirian +Nanette +Rosalina +Roseanna +Shamika +Shavonne +Shawnna +Shellie +Shonna +Susannah +Teresita +Aaron +Adelina +Alisia +Caitlin +Carie +Carlos +Carmelita +Corine +Dalila +Dannielle +Darci +Deena +Demetria +Estrella +Geraldine +Gilda +Haydee +Hayley +Hortencia +Iliana +Jesica +Juliette +Kesha +Kiana +Krissy +Leandra +Linsey +Lola +Melodie +Micaela +Michel +Mollie +Nathalie +Nicholas +Nikia +Nikole +Quinn +Rachell +Regan +Richard +Rosana +Roseann +Rubi +Ryann +Sandi +Sarina +Sarita +Shaunte +Sheena +Spring +Stephany +Tana +Tiffanie +Alba +Alejandrina +Alia +Angelic +Anika +Araseli +Arcelia +Ava +Ayesha +Bridgett +Carole +Chante +Charissa +Cherise +Ciara +Cinthia +Cristal +Elida +Evette +Flora +Florence +Gracie +Hazel +Ilene +Jameelah +Kanika +Lacie +Lashonda +Letitia +Lia +Lila +Linnea +Lisbeth +Liset +Lorelei +Lucila +Mabel +Maren +Marion +Marylou +Nicolette +Paul +Rafaela +Renae +Sharlene +Shea +Siobhan +Tammi +Tonisha +Violet +Adina +Adria +Alaina +Alesha +Ami +Angeline +Anjanette +Ashlee +Asia +Aurelia +Bambi +Barbra +Brittney +Camilla +Charisse +Cheyenne +Christiana +Christin +Dania +Deirdre +Delfina +Deserie +Elia +Enedina +Gianna +Jaimee +Jeri +Jesenia +Joshua +Karissa +Kassandra +Katheryn +Kayla +Kyle +Lanette +Latosha +Letisia +Malika +Marcelina +Michell +Nakia +Niki +Roxann +Shanda +Shanell +Sharonda +Sue +Tamica +Tamisha +Wanda +Winter +Anitra +Anjelica +Anya +Ayanna +Berta +Brandon +Brigitte +Coleen +Danika +Danita +Dionne +Elsie +Ernestina +Gabriel +Georgette +Gisel +Jeffrey +Jeniffer +Jennefer +Jenni +Jenniffer +Jolie +Julianna +Kami +Kamilah +Karri +Khalilah +Lorna +Louisa +Lynnette +Madeline +Marine +Mark +Maryanne +Matthew +Melynda +Mistie +Patty +Precious +Racquel +Rae +Rosalind +Rosamaria +Roseanne +Selene +Sharla +Steven +Taylor +Tyra +Willow +Zoe +Adelita +America +Amina +Andrew +Angelia +Ayana +Beatris +Carisa +Carleen +Carlie +Cecily +Celena +Chanda +Clare +Danna +Deidra +Ella +Genoveva +Greta +Hailey +Herlinda +Jacquelin +Jamaica +Janee +Janessa +Jazmin +Jenae +Jorge +Josette +Jovita +Juli +Justina +Karena +Karey +Kay +Lenora +Leonor +Lissa +Lizet +Lolita +Lorinda +Lucero +Lus +Lynsey +Mackenzie +Maegan +Marianna +Marlana +Meaghan +Melonie +Nakisha +Nanci +Nicholle +Niesha +Nydia +Paloma +Paulette +Raina +Rosalynn +Sabina +Shanti +Stefani +Tarah +Trinidad +Valentina +Yecenia +Yisel +Adele +Alishia +Anamaria +Annabel +Ashleigh +Benjamin +Carmina +Charleen +Charles +Chelsey +Cherish +Cicely +Cindi +Claudine +Damaris +Debora +Delores +Diamond +Elana +Evonne +Genesis +Gia +Ina +Jaclynn +Jennette +Joi +Jonelle +Jonna +Kacy +Katina +Keli +Kimberli +Kimberlie +Kristan +Kristel +Laila +Lashanda +Lashawn +Latricia +Lela +Leonora +Lynne +Maricruz +Mario +Marni +Micah +Micheal +Monet +Moriah +Myeshia +Natosha +Nereida +Neva +Niccole +Nichelle +Nicola +Nisha +Noreen +Nubia +Octavia +Patrica +Porsha +Portia +Princess +Raylene +Renata +Season +Serene +Serenity +Shanelle +Shantel +Shantell +Shelli +Skye +Sophie +Sydney +Tatiana +Torrie +Zoila +Alexia +Alida +Annabelle +Annalisa +Arleen +Bettina +Brigette +Cameo +Candi +Carin +Carli +Chana +Cheree +Cherry +Chris +Clarice +Corissa +Corrin +Dani +Darcie +Deann +Desire +Donielle +Eden +Elba +Erinn +Erlinda +Ester +Evelia +Holley +Ivory +Janay +Janene +Janina +Jazmine +Jenee +Jenell +Jessi +Joelle +Johnna +Joslyn +Juliann +Kacie +Kandice +Kaylene +Kenneth +Keren +Kristyn +Kylene +Larhonda +Linette +Lorrie +Luana +Magnolia +Mariaelena +Mariko +Marlina +Marnie +Mechelle +Melaine +Mercy +Mika +Milagros +Mimi +Myiesha +Ophelia +Patrisia +Rachele +Rana +Rikki +Rowena +Roxane +Samara +Santa +Seema +Shane +Shanee +Shaun +Shay +Shelia +Shila +Somer +Stacia +Stephani +Sujey +Tamar +Terrie +Tomeka +Trena +Tuesday +Tyesha +Tyler +Xenia +Yael +Yahaira +Zandra +Akilah +Alethea +Alexander +Allegra +Amee +Amparo +Andra +Ani +Apryl +Argelia +Arturo +Asha +Astrid +Brett +Cambria +Carlene +Celine +Chantelle +Cinnamon +Cristin +Daniele +Della +Denae +Dennise +Devan +Dia +Ebonie +Edward +Eleni +Erma +Genelle +Gisele +Heidy +Jada +Janeth +Janett +Jannet +Josephina +Kandi +Karolyn +Kathryne +Kati +Kendall +Kenyatta +Kevin +Kia +Kiersten +Latishia +Laureen +Lauri +Lenore +Leyla +Libby +Liberty +Lizabeth +Loriann +Magda +Mai +Maia +Margot +Marika +Marlo +Maryjane +Miguel +Mitzi +Moira +Nerissa +Nidia +Nova +Oralia +Piper +Polly +Raelene +Rasheedah +Ricardo +Ronald +Ronnie +Roselyn +Sage +Scarlett +Shawana +Shawnee +Shilo +Shoshana +Suzy +Takisha +Tamie +Tiffiny +Timothy +Tony +Tracee +Trish +Trista +Tyisha +Vanesa +Verenice +Yasmine +Zakiya +Zenaida +Adeline +Adriann +Ali +Alondra +Amada +Anastacia +Annamaria +Ashlie +Bessie +Blythe +Breezy +Brie +Brigid +Bryan +Carmel +Carmella +Cary +Casie +Catharine +Chanelle +Chrissie +Christiane +Cleopatra +Coreen +Cristi +Dahlia +Dallas +Daniell +Danyel +Danyell +Dawna +Denisha +Dusti +Eddie +Elicia +Elisabet +Elke +Emi +Eryn +Ethel +Fay +Feather +Frankie +Gema +Genia +Herminia +Idalia +Ilana +Imani +Ines +Isis +Jameka +Jamilah +Janai +Jannette +Jeremy +Jerri +Jessika +Joanie +Jodee +Johnny +Jovanna +Julieann +Julieanne +Julieta +Kandace +Keesha +Khara +Kimiko +Korin +Kylee +Lakeshia +Lan +Lanisha +Latesha +Leslee +Letha +Letisha +Liz +Lois +Lucretia +Luis +Mariam +Marin +Marybel +Melani +Meliza +Mendy +Michal +Mira +Nailah +Naima +Nannette +Nathan +Nekia +Nickole +Nicol +Nuvia +Nyesha +Odessa +Patsy +Pricilla +Priya +Rasheda +Rashelle +Raul +Rebecka +Rhiana +Rica +Risa +Roberto +Ronni +Roshawn +Sabra +Sacha +Samira +Sergio +Shaneka +Sharee +Sharmaine +Sharron +Shereen +Simona +Stephen +Sulema +Sunnie +Tabetha +Tamala +Tamekia +Tawana +Thu +Thuy +Tiffaney +Tobi +Tosha +Valorie +Winnie +Yessica +Zakiyyah +Zara +Abbey +Abbie +Aiesha +Alayna +Aleesha +Aleta +Alvina +Amaris +Amity +Annalee +Antonette +Arin +Aubree +Aura +Aziza +Benita +Blair +Bobby +Buffy +Candelaria +Candie +Candis +Caprice +Carlee +Carolynn +Caron +Cassidy +Chantell +Charis +Charlette +Charline +Charmain +Chaya +Chenoa +Cheyanne +China +Clarisa +Claudette +Collette +Corin +Corinn +Corrinne +Daina +Danyelle +Darby +Davida +Dawnell +Deandra +Dee +Deedee +Deja +Delana +Delicia +Deniece +Deseree +Desirea +Dionna +Dominic +Dorian +Elda +Elodia +Eloise +Ernestine +Essence +Fanny +Felecia +Felice +Felisa +Gigi +Grabiela +Hanh +Honey +Ilda +Irasema +Jacinda +Jackeline +Jamey +Jayna +Jene +Johana +Jonathan +Jovan +Julee +Kali +Katia +Kerstin +Khadijah +Kirstie +Kirsty +Laci +Lakiesha +Lanita +Larae +Lashanna +Laticia +Lawana +Lawanna +Leeanne +Lilah +Lilliana +Lillie +Lizbet +Lizzette +Loni +Lorene +Lorenza +Luciana +Lucille +Lucrecia +Malina +Mamie +Manuel +Maranda +Marguerite +Mariann +Marquita +Maryjo +Matilde +Melyssa +Mignon +Misha +Naimah +Nikisha +Nita +Nohemi +Opal +Peaches +Pepper +Perlita +Phillip +Raeanne +Rasheeda +Rianna +Roni +Rory +Ruthie +Sarra +Shae +Shanay +Shanel +Sharleen +Shemeka +Shira +Shonda +Shonta +Sindy +Sparkle +Suzie +Tanasha +Tarra +Tiara +Torie +Tritia +Veronika +Victor +Vilma +Wenona +Wilma +Zulma +Agnes +Alejandro +Altagracia +Alva +Anamarie +Antionette +Ashanti +Asucena +Asusena +Aubrie +Belia +Bethanie +Brea +Brigit +Camellia +Candida +Carinne +Carley +Cecile +Celestina +Cesar +Channon +Charise +Charisma +Charon +Cherice +Cody +Crista +Cristen +Cristie +Danay +Danell +Danisha +Debby +Delaina +Delina +Demetra +Denisse +Deonna +Desarae +Deserae +Dinah +Dione +Dolly +Dona +Dyana +Elina +Elizabet +Elizebeth +Elma +Elysia +Ema +Emmy +Ena +Erendira +Estee +Evangeline +Farah +Felipa +Felisha +Fiona +Franchesca +Frank +Freda +Gale +Gemma +Gennifer +Geri +Glory +Gregory +Ha +Halima +Hallie +Hector +Helene +Hollee +Ilona +Isabella +Jacob +Jacqulyn +Jaimi +Janea +Jenessa +Jeni +Jenice +Jenie +Jenise +Jesseca +Jessenia +Jina +Joel +Jolynn +Jovana +Joya +Joycelyn +Julisa +Kandy +Kanisha +Karl +Karlie +Karly +Karmen +Katerina +Keshia +Khristina +Kimber +Koren +Korina +Kortney +Kourtney +Kyna +Lacee +Laney +Laquita +Larisa +Lasandra +Lashaun +Lashaunda +Lashawna +Lashea +Latashia +Lateefah +Leena +Leesa +Letecia +Lili +Lilly +Liseth +Lisha +Lisset +Loren +Lorien +Louis +Lucina +Lyndsay +Mae +Malaika +Malena +Marcelle +Maricella +Marilu +Mariza +Marja +Marlaina +Marleen +Mckenzie +Melia +Memory +Merissa +Miki +Miracle +My +Myla +Myriam +Nacole +Natascha +Natisha +Nichola +Nissa +Noelia +Peter +Phoebe +Porsche +Ragan +Randa +Rania +Rebeccah +Rebeka +Rebekka +Reena +Renea +Renita +Rheanna +Ria +Romelia +Romina +Roselia +Rosina +Ryanne +Sanjuana +Sarai +Saundra +Sebrina +September +Shakira +Shala +Shaleen +Shalini +Shanae +Shanita +Shareen +Sharika +Sheba +Shenika +Shera +Shianne +Shireen +Shona +Sidney +Silvana +Stacee +Stephine +Sugey +Syreeta +Tahnee +Tali +Talitha +Tamarah +Tameca +Tarrah +Tatum +Taunya +Tawanna +Tenesha +Teressa +Terina +Tesha +Thomas +Tiffney +Tinisha +Tory +Toya +Tresa +Trudy +Unique +Valinda +Vannessa +Velia +Vianey +Vikki +Vincent +Wendie +Winona +Yanet +Yessenia +Zenia +Abra +Addie +Adelaida +Adella +Adia +Agustina +Aidee +Aletha +Alexandrina +Alfredo +Aliza +Ambur +Aminah +Amira +Ammie +Analisa +Ananda +Andreana +Anette +Angeles +Angella +Angelyn +Anica +Annalise +Annisa +Aqueelah +Arica +Ariella +Arnetia +Arwen +Aryn +Audrea +Aundrea +Ayde +Betina +Bevin +Breanne +Brisa +Britt +Britta +Cami +Cassia +Celene +Celestine +Cesilia +Chad +Chanell +Chekesha +Chevon +Cinthya +Claribel +Colby +Corri +Criselda +Cristalle +Cruz +Cyndi +Danille +Daria +Darleen +Darline +Debrah +Deeanna +Delaney +Delila +Delinah +Delmy +Deven +Dominque +Donita +Donnetta +Dorothea +Dwan +Eboney +Edgar +Elisia +Elyssa +Enjoli +Erina +Estelle +Estrellita +Eulalia +Evelina +Fatimah +Felicitas +Felicity +Geralyn +Gesenia +Ginette +Gisella +Gregoria +Guisela +Hanna +Hermelinda +Hillery +Idania +India +Isaac +Isabell +Isabelle +Itza +Jacinta +Jacquelene +Jacquline +Janella +Jani +Jannelle +Jaquay +Jaquelin +Jaquelyn +Jaymie +Jayne +Jenai +Jenay +Jenea +Jenica +Jenine +Jennafer +Jenney +Jennica +Jermaine +Jerry +Jerusha +Jewel +Jimmy +Johannah +Jonette +Jordana +Josefa +Joshlyn +Judi +Julienne +Julio +Kaci +Kamala +Kamika +Karisa +Kasandra +Kassie +Katherin +Kathie +Kaycee +Kayleen +Kenna +Kera +Keturah +Keyana +Kianna +Kitty +Kiyoko +Korinne +Krisha +Krishna +Kristeen +Kristene +Kristian +Kyoko +Kyrsten +Lainie +Lalani +Laneshia +Larry +Lashawnda +Lashundra +Latina +Latrina +Launa +Lavonne +Leighann +Lelani +Leo +Lesli +Liane +Linh +Lisamarie +Lisbet +Livia +Livier +Lizett +Lluvia +Lyla +Lynee +Machelle +Magaly +Magan +Mahogany +Maida +Maja +Manisha +Marbella +Margret +Marialuisa +Marizol +Markisha +Martine +Marya +Marybeth +Mayte +Mayumi +Meegan +Meggan +Mei +Melba +Melissia +Melony +Meranda +Merideth +Mesha +Michella +Milinda +Milissa +Minnie +Missy +Miya +Modesta +Moncia +Moria +Muriel +Mya +Myrian +Nadya +Natashia +Nefertiti +Nelida +Nia +Nickie +Nicolasa +Nikesha +Nilda +Noemy +Nola +Norah +Olympia +Oriana +Ortencia +Oscar +Phaedra +Quanisha +Raechel +Raegan +Rainbow +Ranae +Raymond +Reagan +Reba +Reiko +Rema +Remy +Rian +Riki +Risha +Robbin +Rochell +Ronesha +Ronica +Ronisha +Ronit +Roshanda +Roslyn +Rudy +Saba +Sahar +Saira +Sallie +Salvador +Samehesha +Samuel +Santos +Sarabeth +Sariah +Sarrah +Scherrie +Seana +Seanna +Sera +Shabnam +Shaina +Shalene +Shalonda +Shanea +Shannel +Shantae +Shaundra +Shaunta +Shauntay +Shawne +Sherice +Shilpa +Shirlene +Shiva +Shondra +Shontel +Shyla +Silbia +Sirena +Sky +Stephaine +Stephannie +Stormi +Sunni +Susy +Suzan +Tahlia +Takesha +Talisha +Tamanika +Tamarra +Tamesha +Tamiko +Taneisha +Taneka +Tani +Tanishia +Tashia +Tawni +Teneka +Terese +Tiesha +Tomasa +Tonja +Torrey +Tressa +Twila +Tyeshia +Tyronda +Valencia +Vida +Xiomara +Xochilt +Yolonda +Zuleika +Jennifer +Melissa +Jessica +Michelle +Nicole +Sarah +Maria +Christina +Elizabeth +Lisa +Heather +Amanda +Angela +Stephanie +Kimberly +Amy +Amber +Monica +Rebecca +Laura +Veronica +Kelly +Andrea +Jamie +Erin +Crystal +Shannon +Sara +Rachel +Erica +Christine +Julie +Patricia +Vanessa +Tiffany +April +Danielle +Sandra +Mary +Cynthia +Alicia +Megan +Katherine +Emily +Nancy +Diana +Erika +Natalie +Wendy +Anna +Claudia +Kristina +Karen +Valerie +Desiree +Monique +Brandy +Angelica +Kathryn +Gina +Stacy +Teresa +Gabriela +Carrie +Tracy +Sonia +Brenda +Jacqueline +Lauren +Adriana +Denise +Susan +Leticia +Leslie +Tara +Melanie +Ana +Dawn +Julia +Sabrina +Kristen +Samantha +Linda +Kristin +Rosa +Victoria +Misty +Jaime +Stacey +Tina +Cindy +Allison +Courtney +Holly +Renee +Katie +Catherine +Tanya +Heidi +Lorena +Brooke +Kristy +Kathleen +Lindsay +Dana +Nichole +Brandi +Jenny +Melinda +Jill +Mayra +Tamara +Cristina +Michele +Leah +Summer +Cheryl +Robin +Yvonne +Theresa +Alison +Katrina +Guadalupe +Christy +Martha +Carmen +Gloria +Regina +Janet +Angelina +Marisa +Irene +Norma +Sylvia +Sharon +Mindy +Karla +Yolanda +Priscilla +Lori +Marissa +Susana +Yvette +Deanna +Anne +Ashley +Alejandra +Raquel +Suzanne +Deborah +Olivia +Marie +Candice +Karina +Maribel +Tammy +Alma +Margaret +Carla +Cecilia +Barbara +Lindsey +Yesenia +Kristine +Virginia +Shawna +Carolyn +Esmeralda +Adrienne +Janelle +Kristi +Diane +Meghan +Krista +Joy +Natasha +Autumn +Maricela +Trisha +Aimee +Ann +Brianne +Jasmine +Marisol +Carolina +Blanca +Colleen +Naomi +Araceli +Pamela +Sandy +Rachael +Ruth +Silvia +Caroline +Jeanette +Elena +Jaclyn +Joanna +Cassandra +Eva +Kendra +Molly +Felicia +Viviana +Bonnie +Melody +Ruby +Kari +Donna +Mandy +Margarita +Alexis +Annette +Kara +Shauna +Esther +Juanita +Rebekah +Anita +Kelli +Rocio +Darlene +Paula +Alexandra +Isabel +Robyn +Candace +Evelyn +Lydia +Roxanne +Tricia +Elisa +Lorraine +Luz +Marisela +Miriam +Audrey +Rachelle +Rita +Sophia +Carol +Marina +Angie +Debra +Irma +Griselda +Charlene +Elaine +Shanna +Shelly +Laurie +Sheila +Brianna +Jillian +Rose +Alisha +Corinne +Rochelle +Marlene +Casey +Ebony +Christie +Eileen +Nadia +Frances +Annie +Liliana +Alyssa +Noemi +Toni +Bethany +Kellie +Grace +Bianca +Lucia +Kirsten +Meredith +Tonya +Amelia +Connie +Genevieve +Jana +Janice +Keri +Nina +Serena +Angel +Stacie +Elisabeth +Judith +Alissa +Kate +Beatriz +Graciela +Helen +Alice +Alisa +Beth +Christa +Jenifer +Latoya +Hilary +Jennie +Sonya +Kelley +Krystal +Shana +Vivian +Yadira +Jacquelyn +Tamika +Rosemary +Traci +Alana +Athena +Corina +Debbie +Devon +Dolores +Sherry +Abigail +Bridget +Kimberley +Joanne +Tasha +Arlene +Ericka +Hannah +Kristie +Maureen +Miranda +Rosalinda +Stefanie +Carly +Kathy +Trina +Antoinette +Briana +Noelle +Olga +Tania +Brandie +Celeste +Edith +Hilda +Nora +Rhonda +Tabitha +Bertha +Hillary +Jocelyn +Marcia +Maritza +Bernadette +Charity +Chelsea +Delia +Jenna +Lesley +Melisa +Sally +Selena +Shelley +Tracey +Judy +Mia +Tanisha +Angelique +Jodi +Maya +Amie +Jane +Jeannette +Ramona +Latasha +Cara +Claire +Katharine +Aja +Carissa +Jolene +Charlotte +Laurel +Elsa +Rosalia +Belinda +Janette +Joann +Rhiannon +Tawny +Camille +Carina +Georgina +Janine +Johanna +Joyce +Lilia +Ellen +Josefina +Lillian +Shirley +Aubrey +Gladys +Lourdes +Josephine +Marilyn +Esperanza +Roberta +Aurora +Domenica +Faith +Magdalena +Marcella +Beverly +Marcela +Rosio +Becky +Emma +Ginger +Iris +Lucy +Rosario +Sofia +Adrianne +Celia +Juana +Kerri +Lea +Lynn +Morgan +Natalia +Reina +Tami +Celina +Jami +Lacey +Lara +Michael +Nikki +Audra +Dianna +Jean +Kerry +Kim +Perla +Reyna +Clara +Fabiola +Jasmin +Lynette +Whitney +Cheri +Dena +Gabrielle +Jody +Sheri +Betty +Lizette +Chrystal +Janell +Leanne +Mercedes +Tiana +Breanne +Daisy +Lena +Salina +Aisha +Francisca +Mireya +Allyson +Dora +Latisha +Liza +Sierra +Terra +Antonia +Dina +Estela +Mariana +Mirna +Ryan +Staci +Susanna +Cathy +Gretchen +Jeanine +Maryann +Myra +Taryn +Aracely +Darcy +Destiny +Dorothy +Jodie +Kasey +Pauline +Consuelo +Patrice +Adrianna +Jessie +Keisha +Bobbie +Chandra +Katy +Rosalie +Brittany +Kenya +Lidia +Maira +Marianne +Marlena +Nadine +Cassie +Elvia +Imelda +Josie +Kristal +Rosanna +Candy +Catalina +Christi +Elvira +Jamila +Luisa +Marcie +Rosalba +Teri +Vicky +Francine +Jackie +Rosemarie +Selina +Shelby +Terri +Clarissa +Deana +Jeannie +Karin +Leilani +Loretta +Lupe +Maggie +Meghann +Sasha +Sommer +Sonja +Tracie +Valarie +Corrine +David +Elisha +Kimberlee +Lakisha +Marsha +Melina +Minerva +Penny +Tisha +Evangelina +Gabriella +Joan +Leanna +Mariela +Rebeca +Sherri +Billie +Cori +Dominique +Elissa +Francesca +Jose +Juliana +Randi +Shavon +Talia +Tiffani +Andria +Catrina +Cherie +Harmony +Hollie +Jeanne +Marta +Rene +Susie +Violeta +Breanna +Doris +Dulce +Eleanor +Isela +Justine +Larissa +Lina +Lizeth +Lora +Mariah +Miesha +Sheryl +Tammie +Yajaira +Aida +Beatrice +Cari +Cristy +Jade +Lynda +Marjorie +Meagan +Alina +Ariana +Chantel +Chrissy +Juliet +Marla +Paige +Peggy +Rena +Tameka +Tamra +Alyson +Ami +Fatima +Haley +Hope +Lana +Maren +Myesha +Terry +Adrian +Anastasia +Brenna +Davina +Delilah +Edna +Glenda +Janna +Lakeisha +Leann +Lindy +Mirella +Stella +Corinna +Corrie +Ivette +Ivy +Janae +Lisette +Lizbeth +Qiana +Tanesha +Wendi +Aileen +Angelita +Anthony +Bobbi +Bridgette +Brook +Georgia +Ingrid +Lacy +Leeann +Micaela +Misti +Mona +Quiana +Raina +Roxanna +Sherrie +Simone +Xochitl +Abby +Caitlin +Chanel +Charmaine +Christal +Elise +Eunice +Jason +Lily +Malissa +Marivel +Richelle +Rosie +Shanon +Venus +Dalia +Darla +Elva +Estella +Gricelda +Gwendolyn +Ivonne +Janel +Jaqueline +Jeannine +Juan +June +Leigh +Leila +Mara +Nicolette +Shawn +Tera +Windy +Constance +Cortney +Dalila +Dayna +Devin +Geneva +Helena +Janie +Jayme +Kathrine +Latanya +Liana +Racheal +Robert +Alexandria +Amalia +Anabel +Bambi +Faviola +Gena +Ida +Inez +Jeri +Karyn +Kisha +Louise +Pearl +Rosalva +Rosalyn +Venessa +Alysia +Ariel +Armida +Cheyenne +Corey +Danette +Daniel +Elia +Jesus +Kellee +Kylene +Kylie +Malinda +Marcy +Meaghan +Myrna +Nichol +Noel +Ofelia +Paola +Raven +Roxana +Shari +Tessa +Adela +Beronica +Betsy +Brandee +Carey +Danelle +Danica +Deanne +Doreen +Gail +Jaimie +Julissa +Kelsey +Latrice +Martina +Maxine +Mellisa +Sheree +Starr +Tawnya +America +Annemarie +Bernice +Cathleen +Cherise +Christen +Christin +Christopher +Cinthia +Cora +Daniella +Darci +Desirae +Dianne +Elaina +Eliza +Eve +Jesse +Joni +Julianna +Latonya +Lee +Mellissa +Serina +Shameka +Shante +Siobhan +Sunny +Susanne +Anissa +Cecelia +Charisse +Colette +Cory +Daniela +Iliana +Jazmin +Justina +Kyla +Lani +Lyndsey +Madeline +Margie +Mari +Maricruz +Maura +May +Myisha +Sandi +Sunshine +Suzette +Tanika +Tia +Tiffanie +Winter +Cameron +Dara +Eboni +Eloisa +Flor +James +Kirstin +Lilian +Nikole +Rhianna +Rina +Shanika +Shannan +Shasta +Shaunna +Shayla +Shayna +Socorro +Suzanna +Tabatha +Yasmin +Alejandrina +Alexa +Asia +Belen +Caryn +Casandra +Jaimee +January +Julianne +Karissa +Kerrie +Leona +Leonor +Lia +Lila +Marian +Marianna +Mindi +Monika +Nellie +Rayna +Sondra +Star +Starla +Tamar +Tori +Alia +Alycia +Annabel +Annamarie +Araseli +Ashlee +Bree +Corrina +Gisela +Giselle +Jeanna +Joseph +Kori +Lanette +Loni +Lucinda +Malia +Mandi +Shara +Soledad +Tenisha +Therese +Valeria +Adriane +Alesha +Amparo +Antionette +Arcelia +Caren +Crista +Delores +Demetria +Emilia +Eric +Eugenia +Fanny +Gillian +Gwen +Haydee +Jannette +Jesica +Jo +Kami +Karrie +Letisia +Lupita +Marci +Michaela +Nicolle +Paulina +Richard +Shamika +Shonna +Tatiana +Tracee +Vicki +Wanda +Alexia +Azucena +Brian +Charissa +Chastity +Concepcion +Cristal +Erinn +Evelia +Evette +Francis +Gayle +Hazel +Jenelle +Jorge +Jovan +Kacey +Kiley +Kristyn +Lakeshia +Latosha +Micah +Michell +Mollie +Nathalie +Nicola +Rashida +Reanna +Renae +Rosaura +Shavonne +Tammi +Thelma +Zulema +Ada +Adria +Angeline +Brittney +Carlos +Chris +Coral +Crissy +Cristin +Elida +Emilie +Enjoli +Farrah +Georgette +Jacklyn +Jeana +Joleen +Joshua +Karie +Leia +Mabel +Milissa +Paloma +Phoebe +Phyllis +Racquel +Rikki +Ronda +Rosalina +Roseann +Rowena +Roxann +Sharlene +Tana +Taylor +Tianna +Tonia +Ursula +Valentina +Vera +Zoe +Alanna +Ariane +Arianna +Aura +Bryn +Carmela +Chantal +Christian +Elicia +Elsie +Ester +Fawn +Geraldine +Ginny +Guillermina +Hayley +Holli +Iesha +Jena +Jeniffer +Jenni +Joelle +John +Juliette +Katheryn +Kenisha +Kira +Lola +Lorene +Louisa +Luis +Magda +Manuela +Nanci +Nelly +Patty +Paulette +Petra +Regan +Sadie +Salena +Sarina +Saundra +Shanda +Sharla +Shawnte +Shea +Skye +Sue +Suzana +Yahaira +Alysha +Anel +Ayesha +Berenice +Berta +Bridgett +Brienne +Callie +Dannielle +Dusty +Elana +Elyse +Ilene +Janeen +Jayne +Jessika +Kacie +Krissy +Layla +Lucila +Maisha +Matthew +Mercy +Mildred +Nanette +Niesha +Noreen +Nova +Rachele +Rachell +Rosana +Serenity +Shani +Shanta +Shaunte +Sheena +Shiloh +Spring +Tritia +Tyesha +Violet +Abbie +Adelina +Aide +Alba +Alena +Angelia +Angelic +Anjelica +Asha +Ashleigh +Breann +Brie +Chasity +Cheree +Cindi +Dallas +Dionne +Ernestina +Giovanna +Janee +Janina +Joey +Jordan +Josette +Julieta +Justin +Kaci +Kiana +Kindra +Kristian +Liane +Nidia +Nydia +Portia +Quinn +Rhea +Sarai +Season +Shantel +Shellie +Sindy +Suzy +Tosha +Trinity +Vanesa +Vickie +Yecenia +Alaina +Anamaria +Andrew +Annika +Annmarie +Asusena +Aurelia +Beatris +Carmelita +Chloe +Danae +Daphne +Deidre +Delfina +Deserie +Evangeline +Jammie +Jaymie +Kacy +Kamilah +Katina +Kayla +Lacie +Lashonda +Leandra +Lisamarie +Liz +Lizabeth +Lucero +Lynne +Lynnette +Lynsey +Mariel +Marion +Nubia +Rosanne +Shoshana +Tamera +Teresita +Thea +Tyra +Yanira +Aaron +Adam +Adele +Aime +Alisia +Antonette +Anya +Ava +Bettina +Brigette +Brigitte +Camilla +Candi +Candida +Carmel +Carmina +Chanda +Charis +Christiana +Corine +Cristine +Denisha +Desire +Eden +Farah +Janis +Jannet +Jessenia +Jolie +Kandice +Keli +Kesha +Kristan +Kylee +Lizet +Lolita +Lorie +Lyndsay +Mandie +Mariaelena +Marlo +Marlyn +Matilde +Miguel +Mirian +Monet +Niki +Porsche +Rosalynn +Rosita +Rubi +Ryann +Samara +Selene +Shalon +Shanell +Somer +Stacia +Stefani +Sydney +Tyisha +Vannessa +Yessica +Akilah +Alondra +Amee +Anisa +Brigid +Brisa +Carlie +Carole +Celena +Chante +Charla +Ciara +Clare +Coleen +Dania +Denice +Elizabet +Evonne +Francisco +Genoveva +Gia +Gianna +Helene +Ilda +Janea +Janett +Jeanie +Jeffrey +Jenee +Jenell +Joana +Kia +Kizzy +Kyra +Laquisha +Lissette +Lizett +Lois +Lucille +Mackenzie +Madeleine +Maia +Malika +Mamie +Manuel +Marcelina +Moriah +Nakia +Nereida +Nicholas +Nita +Nohemi +Paul +Penelope +Precious +Rae +Renita +Roslyn +Shanae +Sophie +Stephaine +Stephany +Susannah +Tarah +Tonisha +Trinidad +Trish +Trista +Wendie +William +Xochil +Yanet +Alecia +Alishia +Alysa +Anika +Annalisa +Apryl +Aundrea +Ayana +Ayanna +Cambria +Cami +Carli +Cassidy +Chanelle +Charise +Chavon +Chelsey +China +Christel +Cruz +Dani +Deann +Debora +Deena +Elba +Elda +Elisabet +Ella +Ernestine +Estrella +Faye +Fiona +Florencia +Gabriel +Gracie +Hortencia +Ines +Jan +Janeth +Jenette +Johnna +Jovita +Juli +Kai +Karri +Kassandra +Kendall +Kory +Laila +Lakesha +Lashawn +Leeanna +Lesli +Lili +Lisbeth +Luana +Maegan +Magali +Margo +Marilu +Marlen +Maryanne +Melony +Melynda +Mimi +Mina +Mistie +Nakisha +Octavia +Rana +Raylene +Roni +Roseanne +Roxane +Sage +Santa +Shawnna +Sherie +Steven +Tawni +Tenaya +Thomas +Trudy +Valencia +Willow +Winnie +Yessenia +Zoila +Abbey +Aleta +Andra +Anh +Anitra +Annabelle +Antonio +Arianne +Ashanti +Benjamin +Brynn +Cameo +Candelaria +Candis +Cary +Casie +Cathryn +Cherish +Chevonne +Christianne +Cicely +Cinnamon +Claudine +Corie +Corin +Cyndi +Danika +Danisha +Danita +Danyelle +Deirdre +Dominica +Domonique +Ema +Enedina +Felicitas +Freda +Gladis +Grabiela +Hallie +Hanna +Ileana +Ina +Iran +Jenae +Jennette +Jenniffer +Joi +Kanika +Kay +Keely +Kiesha +Kimberli +Kimberlie +Kristel +Larisa +Lela +Lenora +Liberty +Linette +Lonnie +Lus +Marguerite +Marin +Mario +Marni +Maryam +Marybel +Maryjane +Marylou +Melonie +Merissa +Nathan +Nicol +Nisha +Oralia +Patrisia +Priya +Raelynn +Randee +Sabina +Scarlett +Shane +Shanti +Shay +Shelia +Shelli +Sparkle +Stormy +Takisha +Tamiko +Tamisha +Vianey +Vida +Xiomara +Zakiyyah +Adelaida +Adia +Adina +Alethea +Ali +Alida +Amada +Amberly +Amiee +Amina +Andriana +Annel +Arica +Barbra +Bessie +Blythe +Bonita +Bonny +Brandon +Brett +Brieanna +Carie +Chantell +Chantelle +Charlie +Charon +Cherilyn +Christiane +Cody +Dacia +Daniell +Danya +Daria +Deva +Diandra +Dionna +Edward +Erlinda +Estelle +Estrellita +Ethel +Florence +Genesis +George +Greta +Hector +Herlinda +Hiedi +Isaura +Isis +Ivana +Ivory +Jacquline +Jacqulyn +Jada +Jamilah +Javier +Jenessa +Jeni +Jennefer +Jerusha +Jesenia +Jodee +Josephina +Joslyn +Julisa +Kanisha +Kati +Kevin +Khalilah +Kyle +Lauri +Lawanda +Leana +Leeanne +Lesa +Libby +Liset +Lorrie +Malisa +Marisha +Mariza +Mechelle +Meggan +Natosha +Nelida +Niccole +Nicholle +Oriana +Perlita +Pilar +Pricilla +Princess +Rasheeda +Reagan +Rochell +Ronald +Rosamaria +Rosina +Roxie +Shaneka +Sharina +Shaun +Shereen +Stephani +Stephenie +Stephine +Syreeta +Tamica +Taneka +Tavia +Thalia +Trang +Twila +Velvet +Verna +Viola +Wilma +Xochilt +Yasmine +Zakiya +Zulma +Adelita +Agnes +Agustina +Aliza +Althea +Amaris +Ambrosia +Amity +Andre +Ani +Anisha +Annamaria +Astrid +Aubree +Benita +Blair +Breana +Britney +Carisa +Carri +Cathrine +Cecily +Celestina +Chere +Cherry +Clarice +Claudette +Coreen +Crysta +Dahlia +Daniele +Danyell +Darcie +Deandra +Deidra +Della +Dennise +Desirea +Donielle +Donya +Ebonie +Echo +Eryn +Felecia +Frankie +Hermelinda +India +Inga +Isabelle +Jacinta +Jacquelin +Jaimi +Jamaica +Jameelah +Janai +Janene +Jeremy +Jerilyn +Jessi +Jesusita +Jewel +Jina +Jordana +Jovanna +Julieann +Julio +Katelyn +Katia +Kelle +Kenneth +Kortney +Laci +Ladonna +Lakeysha +Laquita +Lashawnda +Laticia +Latrina +Leta +Letitia +Lianna +Lilly +Linh +Linsey +Lissa +Loraine +Loren +Lorina +Lorinda +Lorna +Mai +Maida +Maranda +Margret +Markisha +Martin +Melva +Meridith +Merry +Misha +My +Myeshia +Myiesha +Myriam +Naima +Natashia +Natisha +Nena +Nerissa +Nichelle +Nicholette +Nickole +Nikia +Noelia +Noemy +Paris +Porsha +Rani +Rashawn +Rebbecca +Reena +Ricardo +Roberto +Rosalind +Rosetta +Sacha +Samira +Senaida +Shaina +Shalonda +Shandra +Shanee +Shanelle +Sharice +Sharleen +Sharron +Shavonda +Sherita +Shilo +Shira +Sienna +Soila +Stephen +Stevie +Suzan +Talisha +Talitha +Taneisha +Tawnie +Tegan +Terese +Terrie +Tiesha +Tiffiny +Tomi +Unique +Velia +Veronique +Vivianna +Yara +Yazmin +Zaida +Alejandro +Amira +Anastacia +Angelena +Angella +Anica +Arely +Aubrie +August +Aziza +Barbie +Breeann +Britt +Carin +Carlene +Carmella +Cassondra +Cesar +Cesilia +Chanell +Charleen +Chavonne +Chenoa +Cheron +Cheyanne +Chimere +Chrissie +Christianna +Collette +Corrin +Cristi +Damaris +Dawna +Dee +Deonna +Desarae +Detra +Dinah +Dixie +Elma +Elodia +Emilee +Essence +Evie +Felice +Felisha +Flora +Florentina +Franchesca +Frank +Gavriela +Gema +Gilda +Gregoria +Idania +Ieshia +Indira +Israel +Jacinda +Jacquelynn +Janay +Jeanett +Jenai +Jennell +Jennelle +Jennine +Joel +Johana +Johnnie +Joscelyn +Joycelyn +Kameelah +Kameron +Kandy +Karena +Karly +Karolyn +Kaycee +Keila +Kenna +Kenyatta +Khadijah +Khristina +Koren +Kris +Lashanda +Laureen +Leigha +Letty +Lilliana +Lillie +Liseth +Livia +Lucrecia +Lynnae +Mae +Maresa +Margot +Mariam +Maricella +Mariella +Marika +Mariko +Mark +Marysol +Melani +Melodie +Memory +Mikaela +Milagros +Millicent +Nika +Nyisha +Pamala +Patrica +Phoenix +Polly +Prisilla +Rafaela +Rasheda +Rebekka +Rianna +Rima +Risha +Ronni +Ronnie +Roseanna +Ruben +Ryanne +Sarrah +Sean +Seanna +Shantelle +Sharee +Sharie +Sharonda +Shauntae +Shavone +Shawnda +Shawnta +Shera +Shonda +Silva +Stacee +Sujey +Sulema +Sunni +Susy +Tammara +Taneshia +Tarrah +Tatum +Tennille +Thuy +Timothy +Tinisha +Torrey +Trena +Tressa +Tristen +Venita +Vienna +Wynter +Yeni +Yesica +Zenaida +Alberto +Alegandra +Aline +Andreana +Aneesah +Anette +Annalee +Areli +Argelia +Arielle +Arika +Arleen +Ashlie +Austin +Azadeh +Baby +Berenise +Bobby +Brande +Briza +Bryna +Buffy +Camellia +Candyce +Caridad +Carleen +Carlota +Cassia +Cerissa +Channel +Cherice +Cheryll +Chevon +Chiara +Clarisa +Cordelia +Corena +Daina +Danell +Dannette +Darleen +Darlin +Davida +Dawnielle +Dayana +Debby +Dedra +Deja +Denita +Deseree +Diamond +Dolly +Dominque +Dorinda +Dusti +Ebone +Edwina +Eleni +Ellie +Eloise +Emiko +Erendira +Feather +Felicity +Fern +Flavia +Gary +Genessa +Gennifer +Geri +Gisella +Glenna +Guinevere +Hana +Heidy +Hoa +Ila +Ilana +Jackeline +Jacob +Jael +Jamee +Jamela +Jamelia +Jamillah +Jenene +Jenica +Joie +Jonathan +Kaley +Kali +Kamisha +Kandis +Kassie +Kenia +Keona +Keya +Kiersten +Kimiko +Kirstie +Korin +Kourtney +Kristeen +Krysta +Laina +Lakia +Larhonda +Lavina +Lelia +Leslee +Letisha +Letticia +Lianne +Licet +Linnea +Llesenia +Loree +Luciana +Magaly +Magan +Mahogany +Maile +Malina +Manda +Marnie +Martiza +Melany +Melia +Mendy +Mika +Miki +Minnie +Mischa +Myla +Naimah +Naisha +Nannette +Nedra +Neisha +Nereyda +Neva +Nia +Nicholl +Nilda +Odessa +Oscar +Patrick +Phaedra +Piper +Porscha +Queen +Quyen +Raeann +Raegan +Ranae +Randy +Rashaun +Rashell +Rashelle +Raya +Rayanna +Remy +Renata +Renisha +Rheanna +Rian +Risa +Robynn +Romelia +Ronica +Rudy +Ruthie +Sahara +Sapna +Saralyn +Sarita +September +Sequoia +Serene +Shalyn +Shanay +Shanel +Shaunta +Shavonna +Shawnee +Shelbi +Shemeka +Shiree +Shonte +Shyla +Simona +Sol +Soraya +Sterling +Sunday +Suzann +Suzannah +Synthia +Tabetha +Tai +Tamela +Tanja +Tarra +Tawanna +Thao +Tiffaney +Tomeka +Tony +Toya +Tynesha +Tynisha +Vilma +Willa +Xenia +Yolonda +Yovana +Zahra +Zara +Acacia +Addie +Adelaide +Adella +Adena +Adreana +Adriene +Agatha +Aidee +Aiesha +Aimie +Aiyana +Albert +Alea +Aleida +Aleisha +Alene +Aleshia +Alica +Allegra +Allissa +Almarosa +Alona +Alva +Alyce +Alyse +Amara +Ambre +Amita +Anabelle +Anacani +Analilia +Andera +Angelene +Angelika +Anja +Anjali +Anjanette +Anndrea +Aprille +Arasely +Arin +Armando +Autum +Ayde +Belia +Bethanie +Billy +Brea +Breezy +Calista +Camelia +Camila +Carlee +Carley +Carlyn +Carolann +Carolynn +Cassi +Catharine +Celene +Celine +Chaka +Chandi +Channon +Charae +Cinthya +Claribel +Cleo +Colby +Comfort +Cortnie +Criselda +Cristen +Cristie +Crystle +Curtis +Daisie +Damian +Danna +Danyel +Darby +Darice +Darya +Debi +Deedee +Denay +Denee +Denesha +Deniece +Denielle +Denishia +Denisse +Deon +Devan +Diedra +Diedre +Dione +Dominga +Donald +Dorcas +Dorene +Dorian +Ebelia +Edelmira +Eduardo +Elonda +Elysia +Elyssa +Emelia +Enid +Erendida +Evelin +Fatimah +Felipa +Felisa +Freedom +Gabriele +Gemma +Genea +Genie +Genny +Gerardo +Graviela +Gypsy +Halima +Haven +Henry +Herminia +Hien +Hillery +Holland +Idalia +Ieasha +Isabella +Janey +Jaymee +Jayna +Jazmine +Jeanelle +Jeanmarie +Jene +Jenea +Jeny +Jerri +Jerry +Jessamyn +Jimmy +Jocelynn +Joelene +Joella +Johnny +Jolina +Joline +Jonelle +Jonna +Jovana +Julienne +Kadie +Kaitlin +Kama +Kamille +Kandi +Karah +Kasandra +Kathie +Katiria +Keiko +Keisa +Kellye +Kena +Kendrah +Keren +Keysha +Khara +Kiara +Kimi +Kimya +Kiyomi +Korina +La +Lakeesha +Lakenya +Lakiesha +Lanita +Lareina +Larina +Lashana +Lashonna +Latina +Latricia +Lauralee +Laurinda +Lavon +Lawanna +Leighann +Lety +Liesl +Lilah +Lisandra +Lisett +Lizbet +Lizzette +Lorissa +Lorri +Lucretia +Lurdes +Lyn +Lynelle +Macrina +Madelyn +Magen +Maki +Marcelle +Maressa +Margaux +Mariadejesus +Mariaisabel +Marilynn +Marites +Marizol +Marlaina +Marleen +Marline +Marya +Maurissa +Mavis +Melyssa +Mesha +Mi +Michal +Micheal +Michel +Misa +Mitzi +Monigue +Myriah +Nada +Nana +Nashira +Natalee +Natascha +Neha +Nikisha +Nikita +Nila +Nisa +Noella +Nuvia +Nyesha +Osiris +Page +Patience +Patti +Phillip +Phuong +Pia +Prudence +Raelene +Rain +Rainbow +Ramon +Randa +Ranee +Ray +Raymond +Reannon +Rebeccah +Rebecka +Reem +Reginald +Rhoda +Ria +Rica +Ricki +Riki +Roselle +Roselyn +Roya +Santina +Sari +Savannah +Scarlet +Scott +Seema +Sena +Sergio +Sha +Shalini +Shanah +Shanea +Shantae +Shantell +Sharell +Sharmaine +Sharyl +Shavaun +Shavona +Shavonn +Shawana +Shelena +Sherell +Sherene +Sherise +Sherrel +Shevonne +Shonta +Sky +Solange +Sueann +Sumer +Takiyah +Taliah +Talina +Tarin +Tashina +Tausha +Tawnia +Terina +Tessie +Tomika +Trishia +Twyla +Tyiesha +Van +Vannesa +Vi +Vita +Yobana +Zelma +Zenia +Zenobia +Jennifer +Melissa +Jessica +Sarah +Michelle +Maria +Nicole +Elizabeth +Christina +Amanda +Stephanie +Lisa +Heather +Amber +Kimberly +Tiffany +Veronica +Rebecca +Laura +Angela +Amy +Erin +Sara +Monica +Crystal +Andrea +Kelly +Jamie +Vanessa +Erica +Rachel +Danielle +Shannon +Sandra +Megan +Patricia +Christine +April +Mary +Julie +Cynthia +Alicia +Katherine +Emily +Nancy +Lauren +Kristin +Natalie +Erika +Monique +Anna +Angelica +Kristen +Wendy +Diana +Claudia +Valerie +Mayra +Ana +Jacqueline +Kristina +Katie +Leslie +Karen +Brenda +Adriana +Teresa +Linda +Brooke +Denise +Desiree +Kathryn +Leticia +Julia +Rosa +Stacy +Sonia +Courtney +Allison +Brandy +Samantha +Susan +Ashley +Tracy +Melanie +Victoria +Lindsay +Carrie +Gina +Catherine +Lorena +Tara +Heidi +Jenny +Renee +Maribel +Tanya +Candice +Sabrina +Brandi +Joanna +Cindy +Leah +Kathleen +Dawn +Stacey +Holly +Tina +Nichole +Martha +Katrina +Karina +Cristina +Tamara +Misty +Theresa +Gabriela +Irene +Alison +Guadalupe +Melinda +Dana +Robin +Lindsey +Alejandra +Michele +Gloria +Jill +Alma +Cheryl +Angelina +Yvette +Janet +Kristy +Summer +Yolanda +Priscilla +Marisol +Raquel +Yvonne +Jaime +Norma +Christy +Margaret +Marissa +Natasha +Regina +Suzanne +Susana +Krista +Marie +Johanna +Sylvia +Sharon +Meghan +Anne +Carmen +Virginia +Deborah +Karla +Deanna +Cecilia +Marisa +Yesenia +Jasmine +Lori +Olivia +Blanca +Barbara +Aimee +Jeanette +Esmeralda +Janelle +Kristine +Eva +Pamela +Carla +Trisha +Rocio +Araceli +Nina +Bonnie +Cassandra +Naomi +Tammy +Shawna +Adrienne +Alexis +Candace +Diane +Kristi +Elisa +Silvia +Carolina +Maricela +Sandy +Ruth +Rachael +Robyn +Carolyn +Elena +Isabel +Rose +Colleen +Paula +Jillian +Esther +Alexandra +Anita +Alisha +Autumn +Beth +Rebekah +Darlene +Felicia +Mindy +Kelli +Ann +Bethany +Rachelle +Kari +Annette +Luz +Melody +Joy +Donna +Morgan +Jaclyn +Caroline +Kara +Kendra +Margarita +Ruby +Sophia +Brianne +Irma +Debra +Roxanne +Jennie +Marina +Miranda +Grace +Mandy +Elaine +Evelyn +Miriam +Charlene +Rochelle +Latoya +Molly +Stefanie +Kellie +Rita +Sheila +Liliana +Ariana +Shauna +Tasha +Alyssa +Frances +Marlene +Brianna +Eileen +Beatriz +Hannah +Juanita +Lorraine +Carol +Ebony +Amelia +Angie +Angel +Brittany +Arlene +Audrey +Connie +Lydia +Corina +Griselda +Janice +Casey +Yadira +Serena +Jenna +Joanne +Briana +Kirsten +Helen +Jane +Annie +Abigail +Genevieve +Noemi +Sonya +Celeste +Elisabeth +Laurie +Toni +Cara +Jacquelyn +Judith +Shelly +Tonya +Krystal +Meredith +Kathy +Jeannette +Edith +Maritza +Shanna +Shirley +Alice +Anabel +Christa +Graciela +Rosemary +Bianca +Latasha +Lucia +Nadia +Stacie +Carina +Kate +Sally +Tanisha +Chelsea +Daisy +Mariana +Nora +Antoinette +Josephine +Kelley +Noelle +Gladys +Marisela +Camille +Dolores +Elsa +Jodi +Shelley +Amie +Celia +Juana +Maira +Emma +Laurel +Rosalinda +Corinne +Judy +Reyna +Alissa +Jami +Tricia +Janine +Ramona +Tania +Brandie +Carly +Whitney +Traci +Athena +Rhonda +Sasha +Shana +Tabitha +Bernadette +Bridget +Debbie +Leilani +Marcella +Maya +Vivian +Alana +Dorothy +Georgina +Iris +Jana +Mia +Christie +Lacey +Leanne +Lillian +Caitlin +Carissa +Hilda +Hillary +Alisa +Jolene +Aracely +Faith +Jocelyn +Lesley +Lourdes +Maureen +Angelique +Claire +Janette +Sheri +Lucy +Myra +Devon +Lara +Melisa +Celina +Johana +Josefina +Lilia +Mercedes +Nicolette +Aisha +Aurora +Catalina +Jenifer +Lizette +Lynn +Belinda +Ellen +Hilary +Lena +Olga +Sherry +Dena +Keri +Staci +Tiana +Ericka +Meagan +Melina +Ryan +Cherie +Ginger +Sofia +Adrianna +Jean +Katharine +Tamika +Aja +Bertha +Jasmin +Pauline +Becky +Charity +Charlotte +Clara +Esperanza +Marilyn +Trina +Beatrice +Breanne +Joyce +Kerry +Marcela +Natalia +Aileen +Audra +Beverly +Delia +Dianna +Elvia +Jessie +Kristie +Patrice +Reina +Tawny +Antonia +Latisha +Magdalena +Salina +Shelby +Gabrielle +Gretchen +Maryann +Rhiannon +Tiffani +Viviana +Kimberley +Perla +Estela +Kerri +Sierra +Selena +Tami +Consuelo +Dina +Janel +Liza +Lynette +Rebeca +Tia +Catrina +Jayme +Joana +Joann +Lea +Lizeth +Marianne +Nadine +Rosio +Tracey +Tracie +Hope +Marla +Nikki +Randi +Susanna +Breanna +Dominique +Mariah +Mariela +Marta +Michael +Roberta +Rosario +Socorro +Teri +Betty +Bobbie +Elise +Francisca +Lily +Marcia +Rosemarie +Sheryl +Violeta +Cathy +Justine +Karin +Chrystal +Katy +Fabiola +Jeannie +Kim +Terri +Allyson +Chanel +Cheri +Dora +Jeanine +Jody +Kristal +Lakisha +Rene +Rosalba +Selina +Terra +Alanna +Elisha +Imelda +Julianne +Lidia +Lizbeth +Mireya +Myrna +Roxana +Sherri +Aubrey +Keisha +Kimberlee +Leanna +Adrianne +Alyson +Candy +Elvira +Francine +Janae +Juliana +Leigh +Lina +Loni +Sonja +Chandra +Christi +Kenya +Lacy +Lana +Larissa +Lynda +Marci +Paige +Adrian +Elissa +Fatima +Francesca +Gwendolyn +Joan +Lakeisha +Lupe +Mandi +Mirna +Susie +Cassie +Christen +Cori +Eunice +Harmony +Leila +Rosalia +Stella +Kelsey +Leann +Lisette +Marlena +Talia +Venessa +David +Jeanne +Jesse +Lee +Mara +Marcie +Tabatha +Abby +Alexandria +Brenna +Brittney +Brook +Darcy +Dayna +Ivette +Jamila +Jaqueline +Jodie +Jose +Rosanna +Christin +Marcy +Sommer +Aida +Alina +Angelita +Christopher +Glenda +Haley +Janell +Kasey +Malissa +Mirella +Raven +Rena +Vicky +Andria +Daniel +Deana +Destiny +Devin +Evangelina +Flor +Isela +Jackie +Jade +Lora +Luisa +Maggie +Rosie +Tiffanie +Christian +Clarissa +Doris +Faviola +Inez +Jazmin +Jordan +Malinda +Mari +Marivel +Noel +Rosalie +Rosalva +Shavon +Starr +Alaina +Chantel +Cortney +Daniela +Tameka +Billie +Davina +Dulce +Eliza +Emilia +Hollie +Mellissa +Ofelia +Shari +Sheree +Valarie +Anya +Belen +Bree +Delilah +Janie +Juliet +Marsha +May +Raina +Tatiana +Taylor +Tisha +Amalia +Bridgette +Corrie +Desirae +Elva +Gabriella +Geneva +Gricelda +Jacklyn +Kira +Lucinda +Mabel +Monika +Pearl +Penny +Richelle +Sadie +Sunshine +Taryn +Vickie +Wendi +Alena +Ariel +Bambi +Cheyenne +Danica +Darla +Estella +Flora +Georgia +Giselle +Quiana +Robert +Rosalyn +Sunny +Tanesha +Terry +Betsy +Christal +Corinna +Edna +Eugenia +Jeannine +Jo +Latrice +Martina +Michaela +Minerva +Myisha +Peggy +Serina +Shawn +Tamra +Venus +Annamarie +Ashleigh +Brandee +Carey +Cari +Charmaine +Corrina +Domenica +Doreen +Gail +Hazel +Helena +John +Liana +Nidia +Xochitl +Berenice +Caryn +Corey +Dara +Eleanor +Gena +Ingrid +Ivonne +Janna +Jeanna +Joelle +Joleen +Joni +Justina +Leia +Lissette +Loretta +Michell +Miesha +Nichol +Shasta +Tawnya +Vicki +Alba +Anastasia +Ashlee +Constance +Cristy +Dalila +Danelle +Jason +Lupita +Lynnette +Marjorie +Mona +Nicolle +Shayna +Siobhan +Anjelica +Bobbi +Carmela +Concepcion +Coral +Dionne +Dusty +Hayley +Jaimie +Jeanie +Karyn +Kisha +Latanya +Lia +Lilian +Louise +Malia +Qiana +Reanna +Ronda +Sondra +Starla +Adina +Aide +Cecelia +Colette +Corrine +Daniella +Eric +Jenelle +June +Kandice +Kendall +Kyla +Letisia +Manuela +Marian +Mariel +Myesha +Petra +Rashida +Rosita +Therese +Ursula +Violet +Adelina +Adriane +Alia +Annemarie +Araseli +Ashanti +Beatris +Cathleen +Chloe +Cora +Elaina +Eloisa +Geraldine +Juan +Karrie +Kathrine +Lizet +Mellisa +Monet +Sarina +Shavonne +Simone +Soledad +Star +Tanika +Yasmin +Adela +Alejandrina +Cameron +Charissa +Cristal +Daphne +Darci +Ivy +Joshua +Lani +Lorie +Lyndsey +Nellie +Paola +Paulina +Rikki +Selene +Shante +Shayla +Sherrie +Suzette +Syreeta +Tammie +Tera +Tracee +Windy +Alysia +Ami +Anthony +Arcelia +Cinthia +Crista +Dania +Deidra +Deidre +Dianne +Eboni +Eve +Francis +Iliana +James +Joseph +Julissa +Kami +Kerrie +Leeann +Margie +Marianna +Meghann +Micaela +Nikole +Nydia +Paulette +Pilar +Rayna +Renae +Rina +Roxanna +Shanda +Tamar +Tammi +Tori +Trista +Annabel +Beronica +Blair +Chrissy +Elida +Ernestina +Fawn +Gracie +Janeen +Julianna +Kacey +Katheryn +Kia +Kori +Liset +Maren +Mariko +Misti +Reena +Regan +Sarai +Shameka +Somer +Stefani +Susanne +Tessa +Tianna +Tiffiny +Ada +Alexa +Angeline +Anh +Asia +Brisa +Candi +Cory +Dalia +Danna +Delores +Deserie +Emilie +Evelia +Evita +Ida +Jacquelin +Jesus +Josie +Kellee +Kirstin +Ladonna +Leona +Leonor +Marion +Nakia +Nanci +Nichelle +Racquel +Renata +Rosalina +Sandi +Shanon +Stephaine +Sydney +Tarah +Yara +Zulema +Ambrosia +Annabelle +Ariane +Arianna +Azucena +Chante +Charisse +Charla +Chasity +Cherise +Christiana +Damaris +Elia +Elisabet +Faye +Giovanna +Hortencia +Janessa +Janis +Jena +Julieta +Kristyn +Lacie +Lakesha +Latosha +Lila +Lindy +Loren +Marcelina +Marysol +Mollie +Nanette +Nelly +Nicholas +Nubia +Racheal +Rachele +Rosanne +Rosaura +Roseann +Shanika +Shannan +Shoshana +Sue +Vanesa +Vera +Aaron +Ambar +Annmarie +Brian +Casandra +Casie +Cassidy +Chantal +Deanne +Denice +Ester +Estrella +Gisela +Guillermina +Jazmine +Jenise +Jeri +Jesica +Juliette +Karissa +Kylie +Lanette +Linh +Louisa +Madeline +Matthew +Niesha +Precious +Pricilla +Rhea +Richard +Sabina +Sarita +Shaunna +Shaunte +Trinity +Valeria +Wanda +Zoe +Adele +Akilah +Anabell +Anika +Aundrea +Brynn +Carin +Delfina +Denisse +Enedina +Erendira +Erinn +Fiona +Gillian +Gladis +Jammie +Jaymie +Jeana +Jenniffer +Jesenia +Jessika +Joi +Jovana +Justin +Kindra +Lashonda +Latonya +Maranda +Mariam +Meaghan +Melonie +Michel +Mimi +Misha +Miya +Phuong +Princess +Roseanna +Rubi +Sharlene +Sophie +Suzanna +Tamera +Tawni +Thelma +Tonia +Tritia +Winter +Adria +Alesha +Anissa +Asha +Ayesha +Bernice +Breann +Callie +Carlos +Carmelita +Chanelle +Cristen +Dahlia +Debora +Deja +Dixie +Elana +Elba +Florence +Haydee +Iesha +Jovita +Kasie +Kayla +Keely +Kenia +Kyra +Lucila +Lucille +Mackenzie +Maegan +Maia +Maisha +Maura +Melodie +Noelia +Phyllis +Rhianna +Ryann +Scarlett +Skye +Soraya +Sparkle +Steven +Tamisha +Thanh +Yecenia +Yessenia +Yessica +Zoila +Anamaria +Anel +Angelic +Antonette +Apryl +Bettina +Breana +Brigette +Britney +Cambria +Carlene +Carmina +Celena +Chavon +Cheree +Cristin +Cruz +Darcie +Ella +Elsie +Enjoli +Ha +Hanna +Holli +Irasema +Jenell +Jenni +Kacy +Kamilah +Kassandra +Kiley +Lizabeth +Lizett +Loraine +Lorna +Lyndsay +Lynne +Margo +Maryanne +Mercy +Miguel +Missy +Paloma +Renita +Rosana +Shantel +Shawnna +Shea +Shellie +Spring +Stacia +Stephenie +Tenisha +Valencia +Valentina +Yoana +Alecia +Alethea +Alycia +America +Ashly +Asusena +Aubrie +Aura +Ayana +Bridgett +Brie +Brigitte +Candida +Cesilia +Chantelle +Chastity +Cherry +Danae +Danette +Daniele +Deena +Denisha +Elicia +Gabriel +Gemma +Ilda +Isis +Jaimee +Jayne +Jeffrey +Jenee +Jeni +Jonelle +Jorge +Jovanna +Kali +Karly +Katina +Kesha +Kevin +Kiana +Lakeshia +Lashawn +Lisett +Lisset +Magali +Marguerite +Marlen +Marlyn +Maxine +Mildred +Natalee +Nicholle +Paul +Porsche +Rae +Rana +Rowena +Shalonda +Shamika +Shanita +Shara +Stephani +Trinidad +Tyra +Willow +Xochil +Yajaira +Yanira +Alejandro +Alishia +Alva +Amiee +Amparo +Angelia +Arianne +Ashlie +Brandon +Brieanna +Candelaria +Candis +Carie +Carisa +Carmel +Chi +Chris +Cindi +Cristine +Danita +Dawna +Deirdre +Demetria +Denae +Desire +Desirea +Eden +Eryn +Gayle +Georgette +Gianna +Ilene +Jan +Janett +January +Josette +Kacie +Kandace +Karie +Karli +Katia +Keli +Kenneth +Kristel +Kristian +Krysta +Kyle +Kylene +Laila +Leandra +Liseth +Liz +Luciana +Maile +Mariaelena +Maricruz +Mario +Mariza +Michal +Milissa +Nereida +Nova +Nyesha +Paris +Patience +Portia +Roxann +Sacha +Season +Shaina +Sharla +Shilo +Shonna +Thuy +Viola +Agnes +Aleta +Alexia +Ani +Anisa +Antonio +Aurelia +Benita +Berta +Camilla +Candie +Carley +Carli +Chanda +Charlie +Ciara +Corine +Dannielle +Deann +Dennise +Dolly +Edwina +Elysia +Emi +Estelle +Evangeline +Evette +Fanny +Farrah +Gema +Geri +Gilda +Herlinda +Hermelinda +Jackeline +Janene +Jannette +Jenae +Joey +Jolie +Jonna +Jordana +Jovan +Krissy +Kristan +Laquita +Latoyia +Lauri +Layla +Leena +Lilliana +Linsey +Llesenia +Lola +Lolita +Lucretia +Madeleine +Malika +Mandie +Marin +Marisha +Mindi +Nelida +Nena +Nickole +Nicola +Noreen +Oriana +Patrisia +Phoebe +Rainbow +Randa +Rasheedah +Raylene +Rosina +Saundra +Shanell +Shani +Shelli +Stephany +Tenaya +Teresita +Thomas +Tinisha +Victor +Aime +Alondra +Antionette +Arika +Arleen +Ava +Ayanna +Brittania +Candyce +Cathryn +Chantell +Cody +Daina +Della +Dominica +Erlinda +Farah +Felecia +Francisco +Genesis +Gia +Gisel +Honey +Isabelle +Janina +Jeremy +Jerri +Johnna +Julieann +Kaci +Kandi +Katiria +Keyana +Kimberli +Kimiko +Kortney +Laquisha +Larisa +Lashanda +Liberty +Mai +Maida +Margot +Maricella +Mark +Marylou +Melani +Melony +Mirian +Mitzi +My +Nia +Nicki +Niki +Patrick +Piper +Polly +Priscila +Quinn +Rebecka +Roni +Rosamaria +Sarabeth +Shalon +Shanelle +Sharonda +Sheena +Shyla +Suzy +Tana +Tawnee +Tennille +Thao +Thea +Tiesha +Tosha +Tyesha +Van +Yasmine +Abbie +Alysa +Alysha +Anacani +Anastacia +Angelena +Anjanette +Annamaria +Ariella +Armida +Baby +Brynne +Cameo +Caren +Carole +Cecily +Celestina +Charleen +Claudette +Claudine +Coreen +Corie +Dallas +Danika +Danyell +Delicia +Demetra +Desarae +Dorothea +Erik +Ethel +Felisha +Genoveva +Grabiela +Greta +Ilana +Ivana +Jacquelynn +Jamee +Janeth +Jayna +Jennell +Jennette +Jolynn +Kandis +Karena +Karima +Kenisha +Kimberlie +Laci +Laneisha +Latesha +Laticia +Latricia +Leana +Lenora +Lesa +Leslee +Letitia +Liane +Libby +Loan +Logan +Lorenza +Lucero +Lucina +Luis +Lynsey +Margaux +Marika +Marilu +Matilde +Meggan +Melva +Mira +Nacole +Nathan +Ngoc +Nicol +Nikita +Nuvia +Opal +Pia +Priscella +Randee +Remy +Rosalind +Rosalynn +Ryanne +Salena +Samara +Selma +Tai +Tamiko +Tatum +Tierra +Timothy +Tomika +Tonisha +Toya +Vannessa +Wilma +Xochilt +Yazmin +Zakiya +Zulma +Abbey +Adeline +Alisia +Allegra +Amara +Anabelle +Analisa +Anette +Anitra +Anjuli +Annika +Argelia +Arielle +Brienne +Cami +Cathrine +Celine +Charise +Chaya +Cherilyn +Cherisse +China +Christianne +Cicely +Colby +Dani +Danya +Danyel +Danyelle +Daria +Dee +Delma +Destini +Devina +Dinah +Donisha +Dorian +Dustie +Eduardo +Eliana +Elyse +Ginny +Gwen +Hana +Hanh +Holley +Ines +Jaimi +Jenea +Jerilyn +Jessamyn +Jesseca +Josephina +Jovon +Juli +Julisa +Kaitlin +Kameron +Kamisha +Karine +Kasandra +Kathlene +Kati +Kay +Kaycee +Kenda +Kerianne +Kezia +Kylee +Lakenya +Lan +Lanae +Laniece +Ligia +Lillie +Lilly +Lindsy +Linette +Linnea +Lisbeth +Lisha +Lois +Lorina +Mae +Mahogany +Maral +Maribell +Mariella +Marilynn +Maritsa +Marybel +Mayela +Mecca +Meisha +Mina +Moira +Monisha +Natashia +Natisha +Necole +Nisha +Noemy +Nohemi +Octavia +Patrisha +Patsy +Patty +Raelene +Rafaela +Raymond +Roberto +Rodolfo +Rolanda +Roseanne +Roselyn +Ruthie +Sabra +Saira +Samira +Serene +Shady +Shandra +Shantell +Shanti +Shaun +Shawnee +Shay +Sherie +Sherita +Shona +Shonda +Sienna +Simona +Sirena +Stormy +Sulema +Sumer +Tabetha +Taisha +Taniesha +Tenille +Tiara +Tory +Treva +Tyler +Valorie +Vilma +Wynter +Yael +Yanet +Yesica +Zakiyyah +Acacia +Addie +Alex +Ali +Amberly +Amity +Ammie +An +Andrew +Annalisa +Arlette +Arwen +Barbie +Belia +Benjamin +Bernadine +Bessie +Blake +Blythe +Bo +Britta +Bronwyn +Bryan +Bryanna +Bryn +Bryna +Buffy +Carlota +Carri +Caterina +Cecile +Celica +Cerissa +Charis +Charline +Chau +Chere +Clarisa +Crissy +Delana +Deserae +Deven +Diamond +Donya +Dori +Edelmira +Elma +Elyssa +Emiko +Emilee +Eneida +Essence +Estrellita +Evonne +Flavia +Florencia +Frankie +Georgiana +Goldie +Gregoria +Hailey +Hector +Helene +Herminia +Hong +Isabell +Jameka +Jamilah +Janai +Janay +Janea +Janee +Jannet +Jenette +Jennefer +Jessi +Jonathan +Juliann +Julieanne +Karisa +Karmen +Keiko +Kenyetta +Keren +Kizzy +Koren +Korin +Kristiana +Lacresha +Lakeya +Lanisha +Larhonda +Leeanne +Leesa +Leyla +Lisamarie +Lizzette +Loree +Lorien +Lorrie +Lus +Magaly +Magda +Malina +Mariann +Marielena +Marilou +Markisha +Marlina +Marya +Marybeth +Maryellen +Marygrace +Maryjane +Mattie +Mayda +Melaine +Melany +Melyssa +Merissa +Micah +Mika +Miki +Milagros +Monic +Monigue +Myeshia +Myriam +Nailah +Natascha +Nathalie +Natividad +Nedra +Nereyda +Niccole +Nicholette +Otilia +Penelope +Raelynn +Rafael +Rashell +Rashelle +Raynelle +Reagan +Rebbecca +Rica +Ricki +Risa +Ronisha +Ronni +Ronnie +Rosella +Rosenda +Roslyn +Roxane +Ruben +Samia +Scott +Sebrina +Sequoia +Serenity +Shanae +Shandi +Shanel +Sharee +Sharhonda +Sharona +Sharron +Shawana +Shawnta +Shelbie +Sherene +Shira +Siria +Stacee +Stevie +Sunnie +Talitha +Tameika +Tashia +Telisha +Tianne +Tiffney +Torrey +Trang +Unique +Verenice +Vianey +William +Winnie +Xiomara +Yahaira +Yasmeen +Zandra +Zinnia +Adelaida +Adrien +Adrina +Agustina +Ai +Aidee +Alene +Alessandra +Alida +Aline +Aliya +Alvina +Amada +Amal +Amee +Amina +Anahi +Anjali +Annabell +Annita +Areli +Arica +Armando +Astrid +Aubree +Autum +Azadeh +Betina +Bonita +Brea +Brett +Britt +Camellia +Carleen +Cary +Celene +Chantay +Charito +Charlee +Chelsey +Chelsie +Chenoa +Cheyanne +Chimere +Christiane +Cinnamon +Claribel +Coleen +Collette +Corin +Crystalyn +Crystel +Crystle +Damara +Darcey +Dayana +Desiray +Destinie +Deva +Devan +Diandra +Dione +Divina +Dona +Donielle +Echo +Elbia +Elina +Elizabet +Elly +Elodia +Emelia +Emely +Erendida +Erma +Ernest +Ernestine +Evan +Felicity +Fernanda +Genese +Genie +Germaine +Giana +Ginna +Grizelda +Hallie +Hang +Heidy +Ileana +Indira +Ivon +Jacinta +Jackelyn +Jacklynn +Jacob +Jacque +Jalene +Jamaica +Jameelah +Jannelle +Jene +Jenica +Jennelle +Jina +Joel +Johna +Johnnie +Jolyn +Jonell +Joslyn +Judit +Julienne +Kanika +Kanisha +Karoline +Karri +Katee +Katelyn +Katerina +Kathi +Kathie +Katya +Kaylene +Kecia +Keena +Kelle +Kenna +Keysha +Kiera +Kiesha +Kimber +Kimberlyn +Kionna +Kory +Kymberly +Lachelle +Lareina +Laronda +Lashawnda +Latrisha +Lavette +Lavonne +Leeanna +Lekisha +Lili +Lisandra +Lisanne +Lluvia +Lonnie +Lucrecia +Luna +Maegen +Malisa +Manuel +Marbella +Marcelle +Marica +Maricel +Marites +Marja +Marlo +Martin +Maryam +Marybell +Mayte +Melita +Minna +Minnie +Miracle +Moises +Moriah +Mya +Myriah +Naima +Natosha +Neha +Neisha +Neomi +Nerissa +Nga +Nikia +Nikisha +Nikkia +Oralia +Pa +Pam +Patrica +Pennie +Phillip +Raeanna +Randy +Rayleen +Rheanna +Rhiana +Ria +Romelia +Rosalee +Rosaline +Roselia +Sabah +Sabrena +Sahar +Salvador +Samatha +Sarena +Sari +Seana +Selia +Sendy +Sergio +Shalini +Shanan +Shanay +Shane +Shaneen +Shaneka +Sharie +Shena +Shiloh +Shirin +Shondra +Shontay +Sky +Soila +Stefany +Stephen +Sueellen +Susannah +Synthia +Tahira +Talar +Talisha +Tam +Tamatha +Tamie +Tarin +Tarrah +Tawana +Tegan +Tenesha +Terah +Terese +Teressa +Terina +Thalia +Thu +Tifany +Toi +Tomeka +Toshia +Tovah +Tran +Trudy +Tyisha +Tynisha +Velia +Winona +Yohana +Zenaida +Zully +Aarti +Abril +Adelita +Adena +Adrena +Agueda +Aiesha +Aiyana +Akisha +Alayna +Aleen +Aleesha +Aleisha +Aletha +Alexander +Alica +Allana +Althea +Amberlee +Amira +Anabella +Andra +Andriana +Angeles +Angelika +Anica +Annel +Annissa +Ari +Aria +Arin +Avelina +Avery +Aviva +Bao +Bari +Brandalyn +Breeann +Brena +Brooks +Caitlyn +Carlie +Carlyn +Carolynn +Caron +Carrissa +Cassondra +Cassy +Catarina +Cedar +Channon +Charlena +Chavonne +Cher +Cherish +Cherlyn +Chisa +Clare +Clarice +Cleo +Consuela +Contessa +Correne +Corrinne +Cortni +Courtenay +Courtnie +Cristel +Cristela +Crysta +Dacia +Dale +Danesha +Danisha +Darleen +Deandra +Dedra +Deedee +Delina +Denay +Dennis +Dionna +Donia +Dottie +Dustin +Eboney +Ebonie +Elda +Elidia +Eloise +Ema +Ember +Emerald +Enid +Enrique +Erikka +Estee +Eulalia +Felisa +Fernando +Frieda +Genelle +Genessa +Gennifer +George +Gerardo +Grasiela +Halima +Hattie +Henry +Hoa +Huong +Ian +Idalia +Ilea +Ilia +Iman +Imani +India +Isabella +Isaura +Isha +Jacinda +Jaclynn +Jacquelyne +Jacquline +Jacqulyn +Jaycee +Jaye +Jayleen +Jeniffer +Jennett +Jesika +Jessenia +Jewel +Joanie +Johnny +Joycelyn +Julio +Kacee +Kai +Kaila +Kaitlyn +Kalani +Kamaria +Kameelah +Karlie +Katey +Kathrina +Kathryne +Katrice +Kayce +Keira +Keith +Keona +Kerstin +Kesia +Khadija +Khadijah +Kianna +Kiara +Kiersten +Kimberely +Kimbra +Kimi +Koral +Kris +Kyndra +Laina +Lanesha +Lanita +Larry +Lashana +Lashunda +Latina +Latoi +Latrina +Laureen +Laurice +Laurin +Lavon +Lawanda +Leighanne +Leisha +Lenee +Leondra +Leonora +Leora +Lesli +Leslieann +Letisha +Letrice +Letticia +Lianne +Lilah +Lin +Lisbet +Lissa +Livier +Lloana +Lorelei +Lorene +Lorinda +Lorrine +Loryn +Ly +Lynetta +Lynnea +Machelle +Macy +Madelyn +Manda +Mariateresa +Marielle +Marisabel +Marlana +Marlayna +Marti +Marvella +Mckenzie +Mechelle +Mele +Melissia +Merari +Merilee +Micheal +Mignon +Mila +Miriah +Mirtha +Mistie +Monette +Morena +Muriel +Myiesha +Nada +Nadina +Nadya +Najah +Nannette +Natoya +Neva +Nikeya +Ninette +Nola +Odessa +Payal +Peaches +Porsha +Prescilla +Puja +Rachell +Raechel +Raul +Reana +Rhoda +Ricardo +Ricci +Riki +Riva +Rochell +Ronald +Ronique +Ronna +Ronnisha +Rosetta +Roshelle +Rosy +Roxie +Rubicela +Saida +Sandee +Sarra +Savannah +Sayda +Sean +Seema +September +Serra +Shaila +Shamara +Shameika +Shanette +Shanta +Shantay +Sharina +Shaunta +Shawnda +Shawntae +Shawntay +Shawnte +Shayne +Shelia +Sherice +Shonte +Shoshanna +Shoshannah +Steffanie +Susy +Suzan +Suzann +Suzie +Sylvana +Tabita +Tahnee +Taleen +Talya +Tamarie +Tamela +Tamica +Tammara +Taneisha +Taneka +Taralyn +Tarra +Tausha +Tawna +Tawnia +Tawnie +Tequila +Thy +Tiare +Tiphanie +Tommie +Tonika +Tram +Travis +Trena +Tristan +Tuesday +Twila +Valeri +Vania +Veroncia +Veronika +Veronique +Vida +Vita +Wednesday +Yen +Youa +Yuri +Yuridia +Zabrina +Zaira +Zena +Zenia +Zoraida +Jennifer +Jessica +Melissa +Sarah +Michelle +Nicole +Elizabeth +Maria +Amanda +Christina +Stephanie +Amber +Lisa +Heather +Rebecca +Amy +Tiffany +Laura +Crystal +Kimberly +Erin +Angela +Andrea +Veronica +Monica +Danielle +Sara +Vanessa +Rachel +Kelly +Erica +Jamie +Shannon +Julie +Diana +Sandra +Megan +Christine +Cynthia +Lauren +April +Mary +Emily +Kristin +Patricia +Alicia +Katherine +Nancy +Kristen +Erika +Natalie +Jacqueline +Anna +Monique +Angelica +Wendy +Denise +Claudia +Ana +Valerie +Katie +Julia +Courtney +Ashley +Kathryn +Kristina +Brenda +Lindsay +Victoria +Linda +Teresa +Samantha +Adriana +Brooke +Karen +Leslie +Allison +Rosa +Melanie +Joanna +Brandy +Tara +Candice +Gina +Leticia +Desiree +Sonia +Martha +Lindsey +Sabrina +Leah +Tanya +Janet +Tina +Catherine +Lorena +Susan +Heidi +Renee +Brandi +Tamara +Stacy +Kathleen +Mayra +Cristina +Nichole +Carrie +Cindy +Gabriela +Guadalupe +Jenny +Katrina +Maribel +Misty +Karina +Tracy +Melinda +Theresa +Alejandra +Cassandra +Priscilla +Natasha +Holly +Dana +Irene +Alma +Stacey +Angelina +Jaime +Evelyn +Dawn +Cecilia +Deanna +Yolanda +Gloria +Yvonne +Alison +Sophia +Raquel +Susana +Jasmine +Robin +Marissa +Yvette +Alexis +Anne +Kristy +Regina +Marie +Jill +Virginia +Candace +Carmen +Marisol +Meghan +Norma +Liliana +Sylvia +Yesenia +Marisa +Pamela +Latoya +Margaret +Jeanette +Alexandra +Blanca +Esmeralda +Michele +Karla +Araceli +Summer +Deborah +Barbara +Krystal +Johanna +Sharon +Suzanne +Aimee +Cheryl +Carla +Lori +Olivia +Ann +Elena +Kristine +Nina +Christy +Krista +Shawna +Bonnie +Rebekah +Esther +Rachael +Rose +Morgan +Isabel +Naomi +Janelle +Eva +Carolina +Jillian +Trisha +Elisa +Diane +Ruth +Silvia +Kendra +Juanita +Tammy +Jaclyn +Margarita +Melody +Bethany +Kara +Kelli +Carolyn +Rachelle +Colleen +Roxanne +Beatriz +Molly +Rocio +Ruby +Sandy +Annette +Grace +Paula +Lydia +Darlene +Jenna +Casey +Stefanie +Adrienne +Anita +Charlene +Ariana +Marlene +Joy +Judy +Alisha +Hannah +Miranda +Kari +Autumn +Caroline +Robyn +Helen +Elaine +Maricela +Rita +Arlene +Kristi +Lacey +Abigail +Brianna +Donna +Judith +Rochelle +Jennie +Marina +Miriam +Irma +Mindy +Griselda +Lorraine +Audrey +Brittany +Carol +Frances +Rosemary +Mandy +Sheila +Tasha +Daisy +Meredith +Felicia +Lucia +Angel +Chelsea +Briana +Eileen +Joanne +Kellie +Amelia +Noemi +Shauna +Luz +Alyssa +Cara +Serena +Corina +Genevieve +Jacquelyn +Jeannette +Elisabeth +Annie +Ebony +Kate +Alice +Celeste +Connie +Sherry +Kathy +Antoinette +Bianca +Caitlin +Jane +Latasha +Olga +Maritza +Brianne +Jessie +Kirsten +Carina +Angie +Beth +Bridget +Debra +Hilda +Janice +Jolene +Toni +Carly +Josephine +Lillian +Tabitha +Whitney +Yadira +Janette +Laurel +Marisela +Camille +Dolores +Mia +Katharine +Tanisha +Traci +Bernadette +Corinne +Nereida +Celia +Christie +Joyce +Alexandria +Alissa +Brandie +Claire +Edith +Iris +Jenifer +Jocelyn +Maya +Shanna +Shelly +Sofia +Juliana +Kelley +Alana +Keri +Lesley +Marta +Laurie +Lourdes +Maureen +Sally +Sonya +Emma +Graciela +Mariana +Amie +Delia +Jodi +Tonya +Natalia +Nora +Tricia +Gladys +Juana +Charlotte +Chrystal +Dominique +Joann +Randi +Shirley +Antonia +Bertha +Elsa +Ericka +Leilani +Nadia +Tania +Josefina +Rebeca +Rosalinda +Rosio +Shelley +Alisa +Belinda +Cathy +Hilary +Noelle +Tawny +Dorothy +Lea +Lynn +Rhonda +Shana +Catalina +Janine +Pauline +Tiana +Vivian +Adrianna +Christa +Mercedes +Reyna +Stacie +Athena +Cari +Celina +Lily +Salina +Cassie +Charity +Devon +Lena +Betty +Consuelo +Ellen +Jana +Lara +Maira +Marcia +Myra +Beatrice +Beverly +Esperanza +Kristal +Kristie +Leanne +Marcella +Marilyn +Meagan +Trina +Aubrey +Clarissa +Faith +Marcela +Nicolette +Selina +Anabel +Aurora +Debbie +Dianna +Jasmin +Lacy +Lilia +Lizette +Ryan +Breanna +Dena +Hillary +Rosario +Selena +Ambar +Becky +Gabrielle +Lucy +Melisa +Roberta +Destiny +Estela +Kerry +Carissa +Chandra +Rhiannon +Audra +Dina +Elvia +Lynette +Tamika +Aisha +Evangelina +Georgina +Lynda +Magdalena +Nikki +Kim +Tessa +Tiffani +Angelique +Bobbie +Jami +Kasey +Paige +Reina +Liza +Ramona +Rosalie +Susanna +Daniela +Justine +Kerri +Lizbeth +Mariela +Michael +Nadine +Perla +Sheri +Tatiana +Viviana +Cherie +Dora +Katy +Melina +Roxana +Sierra +Ginger +Jackie +Kimberlee +Latisha +Tami +Violeta +Patrice +Sasha +Staci +Breanne +Elvira +Francisca +Jazmin +Krystle +Mandi +Rosie +Sheena +Tracey +Aileen +Alba +Isela +Jeannie +Johana +Fabiola +Francine +Kelsey +Kimberley +Lana +Aja +Cheri +Elisha +Gretchen +Joana +Paola +Simone +Brenna +Brittney +Darcy +Fatima +Imelda +Jayme +Jeanine +Keisha +Larissa +Lisette +Loretta +Marianne +Rosalia +Rosemarie +Terri +Allyson +Aracely +Candy +Elise +Francesca +Jaqueline +Jean +Jeanne +Jody +Karin +Mireya +Pearl +Teri +Leann +Terra +Rosanna +Tracie +Alexa +Ashleigh +Chantel +Denisse +Joan +Lee +Ofelia +Rene +Sherri +Talia +Taylor +Alyson +Ashlee +Casandra +Christin +Clara +Joni +Lupe +May +Tawnya +Aida +Andria +Angelita +Cecelia +Christal +Cortney +Emilia +Glenda +Hayley +Ingrid +Jacklyn +Julianne +Leigh +Lizeth +Marla +Adrianne +Alaina +Christian +Edna +Elva +Janel +Lakisha +Leanna +Taryn +Amalia +Eliza +Eunice +Giselle +Ivette +Janae +Kira +Lidia +Marlena +Shelby +Stella +Vicky +Belen +Christi +Jordan +Leila +Lora +Luisa +Nereyda +Socorro +Sunshine +Susie +Haley +Maryann +Sheryl +Alanna +Davina +Jodie +Marci +Mirella +Rosalba +Tameka +Valeria +Venessa +Brook +Catrina +Constance +Dulce +Gricelda +Jade +Jamila +Janell +Jenelle +Mai +Mara +Mariah +Marivel +Marsha +Noel +Rena +Alina +Anastasia +Bernice +Cameron +Cori +Desirae +Flor +Harmony +Inez +Janna +Kandice +Lilian +Lucinda +Maggie +Tia +Xochitl +Chanel +Christen +Doris +Faviola +Marian +Minerva +Racheal +Richelle +Roxanna +Sonja +Vera +Adela +Daniella +Dayna +Elaina +Estella +Gabriella +Gwendolyn +Hollie +Janie +Kenya +Kyla +Marjorie +Michell +Quiana +Shari +Tera +Tiffanie +Juliet +Malinda +Nidia +Penny +Raven +Rosalva +Serina +Sheree +Abby +Anya +Ariel +Beronica +Bridgette +Dianne +Jeannine +Jo +Loni +Mabel +Marcie +Mari +Micaela +Nubia +Shasta +Shayna +Sommer +Valarie +Cathleen +Cory +Dara +Deana +Georgia +Jesse +Josie +Martina +Mona +Monika +Paulina +Raina +Rosalina +Rosamaria +Wendi +Adrian +Arianna +Berenice +Corrine +Cristal +Danica +David +Eleanor +Emilie +Gail +Hope +Jaimie +Lina +Lyndsey +Tabatha +Tamra +Yuri +Azucena +Cherise +Cheyenne +Christopher +Danae +Evita +Julianna +June +Kori +Leeann +Lia +Miesha +Nakia +Peggy +Rhianna +Shavon +Sondra +Tanesha +Tenisha +Tierra +Adelina +Alysia +Betsy +Carey +Corey +Corinna +Corrina +Elissa +Eugenia +Francis +Geneva +Ivy +Joi +Jose +Joseph +Kristel +Lanette +Lani +Lila +Matthew +My +Myrna +Phuong +Ronda +Suzanna +Terry +Thea +Vanesa +Ami +Angeline +Blair +Cristin +Cristy +Darla +Deanne +Deirdre +Devin +Evette +Haydee +Jannette +Jesus +Juliette +Julissa +Karissa +Kiana +Latonya +Leonor +Lizet +Lupita +Malia +Mellissa +Michaela +Mirna +Myesha +Nicolle +Shayla +Sydney +Yessenia +Callie +Christiana +Concepcion +Daniel +Denice +Fawn +Helena +Jannet +Jesica +Kacie +Kristyn +Ladonna +Lakeisha +Latrice +Lissette +Marcy +Tashina +Tisha +Violet +Alena +America +Anjelica +Billie +Bobbi +Charmaine +Dalia +Elia +Hanna +Iliana +Janett +Jeanna +Kami +Kathrine +Latanya +Liana +Loren +Louise +Margie +Nelly +Sadie +Sarina +Sherrie +Thelma +Tiara +Adriane +Annika +Colette +Coral +Deann +Deserie +Eloisa +Geraldine +Ivonne +Karrie +Kirstin +Marianna +Mariel +Maura +Melodie +Nellie +Porsha +Racquel +Robert +Shanika +Somer +Starla +Starr +Stephenie +Suzette +Teena +Ursula +Annmarie +Cambria +Caryn +Charissa +Ciara +Danelle +Jayne +Jena +Kacey +Kia +Maisha +Malissa +Mollie +Rosaura +Shameka +Shanon +Shavonne +Shawn +Sunny +Tamar +Tammie +Winter +Yanet +Anel +Anh +Beatris +Candida +Daphne +Delilah +Elida +Gena +Gracie +Joshua +Karly +Kassandra +Lashonda +Lilliana +Lynnette +Madeline +Maren +Myisha +Petra +Pilar +Rosana +Shannan +Sharlene +Stefani +Tamera +Windy +Aaron +Ada +Akilah +Alexia +Araseli +Bree +Brisa +Carmela +Dannielle +Deidra +Fanny +Fiona +Flora +Florence +Gillian +Hazel +Ilene +Jenni +Joleen +Kacy +Kandace +Kenia +Lucila +Mariam +Mellisa +Misti +Paloma +Precious +Renae +Rhea +Roseann +Salena +Stephany +Tanika +Tori +Yanira +Yasmin +Amparo +Angelic +Anika +Annabel +Bridgett +Brynn +Candis +Celena +Chantal +Corrie +Danette +Deena +Dennise +Elana +Evelia +Evelin +Guillermina +Jesenia +Joelle +Jonelle +Jordana +Kisha +Latosha +Liset +Lizett +Lyndsay +Mackenzie +Magaly +Margot +Mirian +Ngoc +Nichol +Nikole +Nydia +Portia +Reanna +Renata +Rikki +Ryann +Samara +Sandi +Stephaine +Sue +Tarah +Vickie +Allegra +Anamaria +Annemarie +Aurelia +Brandee +Brie +Cathryn +Chantelle +Corin +Dania +Danna +Demetria +Dusty +Elizabet +Estrella +Fallon +Ha +Jeanie +John +Karyn +Kimiko +Leona +Lorna +Marysol +Niki +Nikia +Qiana +Rae +Regan +Shaina +Siobhan +Soledad +Taina +Tosha +Vicki +Zoe +Adina +Alejandrina +Alia +Annamarie +Anthony +Antionette +Asia +Brigitte +Carmelita +Charisse +Chloe +Corine +Darci +Ella +Ernestina +Eve +Felisha +Giovanna +Gisela +Huong +Ida +Janee +Janis +Jenilee +Jeri +Kanisha +Krysta +Lacie +Lilly +Luciana +Magda +Marcelina +Margo +Martine +Maryanne +Meaghan +Meghann +Michel +Paulette +Princess +Rayna +Rina +Roseanne +Shanae +Stacia +Taneisha +Thanh +Therese +Trista +Venus +Wanda +Yesica +Yessica +Alecia +Candi +Carisa +Carlie +Cassidy +Celine +Chante +Cinthia +Crista +Cristen +Deja +Delfina +Doreen +Eboni +Elba +Elisabet +Elyse +Eric +Evonne +Hortencia +Ilana +James +Janeth +Jeniffer +Jenniffer +Jovana +Justina +Kaitlin +Kati +Kendall +Kourtney +Laila +Lakesha +Layla +Lela +Linh +Liz +Lorie +Maile +Mariaelena +Marika +Mildred +Mimi +Patty +Roseanna +Scarlett +Shamika +Shanda +Sindy +Soraya +Susanne +Teresita +Tianna +Xochilt +Yajaira +Adria +Ani +Arcelia +Aubree +Ava +Berta +Blake +Brett +Carie +Carley +Carmina +Chana +Corie +Dallas +Dionne +Elda +Emerald +Ester +Janessa +Jewel +Kali +Lashawn +Leia +Letisia +Lien +Linsey +Lucille +Lynsey +Maranda +Maricruz +Marion +Maxine +Mistie +Nanette +Nelida +Nuvia +Rachell +Rafaela +Rosanne +Shaunna +Spring +Star +Tawni +Thuy +Trinity +Verna +Yara +Yecenia +Abbey +Aide +Alexander +Ali +Alycia +Andra +Andrew +Annalisa +Antonette +Arianne +Armida +Astrid +Bambi +Benita +Bettina +Blythe +Brandon +Britney +Britt +Casie +Chanell +Chastity +Cheree +Cherry +Clare +Clarice +Coleen +Dani +Deidre +Della +Delores +Denisha +Deseree +Dixie +Domenica +Emilee +Enedina +Erinn +Felisa +Gayle +Iesha +Isabelle +Janina +January +Jason +Jaymie +Jazmine +Jeana +Jenica +Jessi +Jovan +Justin +Kayla +Keyana +Kyra +Latricia +Leana +Leandra +Lenora +Louisa +Marlen +Nerissa +Niesha +Rachele +Rosita +Sabina +Sarita +Shani +Shanti +Sharee +Sharonda +Shawnta +Susy +Timothy +Tracee +Trang +Valentina +Vannessa +Vilma +Adelita +Ambrosia +Anisha +Anissa +Annabelle +Ashanti +Ayana +Ayesha +Bao +Brea +Breann +Camilla +Carli +Carole +Cesilia +Charles +Cody +Crissy +Dalila +Damaris +Denee +Desirea +Dustin +Erendira +Ginny +Hailey +Herlinda +Irasema +Jackeline +Jan +Janeen +Jeffrey +Jenee +Jessika +Joslyn +Juli +Kandis +Kandyce +Karie +Katelyn +Katheryn +Kellee +Kiara +Lan +Latesha +Laticia +Lenore +Letisha +Lolita +Luis +Marguerite +Marleen +Melynda +Mina +Nanci +Priya +Rashida +Raylene +Richard +Rosalind +Rubi +Selene +Serenity +Shanelle +Shelli +Shellie +Shoshana +Soraida +Syreeta +Tai +Tenaya +Thu +Tonisha +Tyesha +Velma +Xiomara +Zulema +Adrina +Alva +Andriana +Anitra +Anjuli +Aubrie +Aura +Breana +Brian +Charise +Chasity +Chrissy +Collette +Cora +Cristie +Dawna +Deandra +Denis +Dolly +Elicia +Elsie +Eryn +Faye +Fernanda +Georgette +Gwen +Jacquelynn +Jenell +Jolynn +Jovanna +Julieanne +Kaci +Kasandra +Keli +Kenna +Kerrie +Kyle +Kylee +Larisa +Leora +Lindy +Lisbeth +Llesenia +Lois +Lorina +Lynne +Mandie +Mariko +Marilu +Mariza +Marlo +Michal +Mika +Mikaela +Milissa +Misha +Nakisha +Nathalie +Neda +Nia +Nickole +Noelia +Noemy +Octavia +Paris +Pricilla +Raelene +Rasheeda +Reena +Rosalynn +Season +Shanel +Shante +Shantel +Sharron +Shaunte +Shelia +Shyla +Skye +Stacee +Tatum +Tonia +Toya +Tristan +Tyler +Valencia +Van +Verenice +Yen +Yuliana +Abbie +Adeline +Alexandrea +Alondra +Amara +Anastacia +Arielle +Arin +Brandis +Candie +Carlene +Carlos +Cecily +Chanelle +Charla +Chaya +Cherish +Cruz +Danika +Danyelle +Debora +Demetra +Desire +Ellie +Elysia +Felicity +Frankie +Gemma +Gladis +Greta +Hiedi +Jacquelin +Jaimee +Jenae +Jennelle +Joline +Jonathan +Jonna +Kameron +Kandi +Katina +Kiersten +Kiley +Kindra +Kristan +Kristian +Kylene +Kymberly +Laquisha +Lashanda +Le +Lesly +Letitia +Libby +Livier +Logan +Lola +Lucero +Magali +Mahogany +Maia +Malika +Marylou +Melany +Mercy +Mitzi +Myriam +Natosha +Nga +Nisha +Opal +Oralia +Phyllis +Porsche +Rana +Rowena +Roxann +Ruthie +See +Shalonda +Shanay +Shanell +Shereen +Shiloh +Sophie +Stephani +Sunnie +Tamisha +Thao +Thomas +Viola +Yael +Zenaida +Zoraida +Zulma +Abra +Agnes +Aime +Alesha +Aliza +Amberly +Ambra +Amina +Antonio +Ariane +Arika +Arleen +Asucena +Ayanna +Breeann +Cameo +Caren +Cathrine +Chenoa +Cherice +Chevonne +Clover +Cristine +Dale +Daniell +Davida +Denae +Devan +Donisha +Elisia +Emi +Enriqueta +Estee +Farah +Fernando +Franchesca +Gia +Hana +Hermelinda +Herminia +Idalia +Ileana +Ina +Jada +Jamey +Jammie +Janielle +Janisha +Jennefer +Jessenia +Jewell +Jimena +Josefa +Jovita +Juan +Kamilah +Karena +Kaycee +Keiko +Kera +Kimber +Kimberlie +Krissy +Kristle +Krysten +Kylie +Lashawnda +Leslee +Livia +Luana +Lucina +Lusia +Manuel +Manuela +Marcelle +Mariella +Marisha +Mark +Marlyn +Marybel +Mattie +Merissa +Natalee +Nena +Nhung +Nicholas +Nova +Rasheedah +Remy +Rori +Rosalee +Roxane +Safiya +Sahar +Sarrah +Sean +Shanta +Sharla +Shonna +Sienna +Sparkle +Stevie +Susannah +Tabetha +Tamala +Tammi +Tenesha +Tiffaney +Tiffiny +Tramaine +Uyen +Veronique +Yoana +Yohanna +Zaida +Adam +Aleah +Alisia +Althea +Alysha +Amee +Anabelle +Analilia +Analisa +Angelena +Anjanette +Ashly +Asusena +Azalea +Bailey +Brandalyn +Brandice +Brieanne +Brigid +Bryn +Carlotta +Carolynn +Cassia +Chanda +Chau +Chistina +Chris +Christianne +Cinnamon +Cyrstal +Dalilah +Daniele +Danisha +Danya +Dee +Denys +Dinah +Donielle +Estelle +Farrah +Felicitas +Francisco +Gabriel +Genna +Genoveva +Hallie +Hong +Jackelyn +Jael +Jamaica +Jannett +Jayna +Jenessa +Jenine +Jennilee +Jolie +Julieann +Julieta +Kai +Kanesha +Karey +Karlie +Kasie +Katerina +Katia +Keely +Keesha +Kenisha +Kevin +Khanh +Kitty +Kortney +Krystel +Lachelle +Laiza +Lanae +Lanisha +Laquita +Lashawna +Latia +Laureen +Lawanda +Leesa +Letha +Liane +Lianne +Linette +Lorelei +Lorene +Marlin +Maryellen +Matilde +Meggan +Melonie +Mira +Mya +Myla +Nacole +Neha +Nita +Nyisha +Oanh +Patrisia +Payal +Penelope +Polly +Quyen +Rheanna +Ricki +Riki +Roni +Rosalyn +Ryanne +Samira +Sarena +Shakira +Shara +Shay +Sherice +Sherie +Shonda +Simona +Sona +Steven +Suzie +Suzy +Tammara +Tana +Tawana +Teal +Tennille +Tess +Tiffini +Tinamarie +Tomasa +Tram +Tynisha +Vannesa +William +Willow +Zina +Adele +Adena +Adia +Akemi +Alessandra +Aletha +Alysa +Amaris +Andres +Angelene +Anica +Annamaria +Apryl +Asha +Ashli +Audrea +Aundrea +Avelina +Bessie +Blaire +Bobby +Brienne +Brina +Bryan +Bryana +Camelia +Candelaria +Candyce +Carin +Carlota +Cassy +Cecile +Celene +Celestina +Charleen +Cherisse +China +Cicely +Cindi +Claudette +Corena +Crysta +Crystle +Dahlia +Darcie +Darleen +Debby +Derek +Dinora +Dominica +Dona +Dorothea +Dusti +Dustie +Dyan +Dyana +Ebone +Ebonie +Eden +Edwina +Elodia +Enjoli +Eri +Erlinda +Ernestine +Evan +Evangeline +Evelina +Felecia +Gema +Genesis +Germaine +Gianna +Grabiela +Guinevere +Han +Holland +Holli +Isabella +Isis +Jannifer +Janny +Jaya +Jennell +Jesika +Johnna +Josephina +Kalani +Kallie +Kanika +Karri +Kasi +Keona +Korin +Korina +Kory +Kris +Kristiana +La +Lane +Lareina +Latoyia +Latrisha +Leeanne +Letticia +Liberty +Lillie +Linnea +Lisabeth +Lisamarie +Lisett +Loreen +Lurdes +Lus +Ma +Mae +Maegan +Malena +Manda +Maribell +Mario +Mele +Meridith +Merle +Mi +Micah +Mignon +Milagros +Missy +Miya +Monet +Monic +Myranda +Nadya +Natisha +Neysa +Niccole +Nichelle +Nicki +Nicola +Nikkia +Nneka +Noreen +Otilia +Pang +Parisa +Paul +Porche +Porscha +Raechel +Renita +Rhoda +Robbie +Romina +Roslyn +Roxie +Sabra +Saira +Salome +Samia +Sanjuana +Sarai +Scarlet +Shae +Shalene +Shane +Shanee +Shannah +Shavonda +Shawnna +Shawntae +Shawntee +Shera +Sherese +Sherilyn +Shira +Shonte +Siri +Stephane +Sujey +Sulema +Sulma +Suzana +Tamela +Tamesha +Tawnie +Tenille +Terah +Tierney +Toccara +Travis +Tressa +Trinidad +Tyra +Valery +Valorie +Velia +Vianey +Vy +Yasmeen +Yezenia +Yohana +Yumi +Zandra +Zena +Zenia +Abril +Akiko +Alda +Alea +Aleida +Alesia +Alethea +Alishia +Alona +Amal +Aminah +Ammie +Amoreena +An +Angella +Annelise +Areli +Arely +Argelia +Arlyn +Armando +Arwen +Ashlie +Barbra +Benjamin +Berenise +Billy +Bonita +Bria +Cami +Caressa +Carlee +Carlyn +Carmel +Carri +Catharine +Chantay +Charis +Chelsey +Chelsie +Christel +Christiane +Cierra +Cinthya +Conchita +Corinn +Corrin +Courtnie +Cyndi +Dacia +Daena +Daina +Danyale +Danyell +Daria +Darline +Dedra +Deedee +Delicia +Delmy +Deonna +Deserae +Devyn +Deyanira +Diona +Dione +Dionna +Dominque +Domonique +Donelle +Edit +Elishia +Ellena +Eloise +Elsy +Ena +Enid +Erma +Fatimah +Felice +Freya +Genelle +Hang +Hattie +Heidy +Helene +Hoa +Imee +Ines +Irais +Isa +Jacinda +Jaclynn +Jacqulyn +Jameelah +Janay +Janaya +Janea +Janella +Janene +Jannelle +Jaquelin +Jaymee +Jeanelle +Jeni +Jenne +Jennette +Jennine +Jeremy +Jerilyn +Jerri +Joella +Jori +Joselyn +Josette +Joya +Julee +Julisa +Ka +Kameelah +Kamisha +Karli +Kathlyn +Kathryne +Kay +Kelle +Kellen +Kenneth +Kerstin +Kesha +Khalilah +Kiera +Kiki +Kimberli +Kinsey +Krisha +Kristena +Lacee +Laci +Laina +Lakeysha +Lakiesha +Lanita +Lauryn +Lesa +Letty +Lindsy +Lisandra +Liseth +Lizabeth +Lizzette +Loan +Lonnie +Loreal +Lorenza +Loriann +Lorrie +Lura +Malaika +Malisa +Maral +Maricel +Maricella +Marin +Marinda +Marita +Marites +Martinique +Maryam +Maryjane +Melanee +Meloney +Merry +Mesha +Meuy +Miguel +Mirta +Misa +Myiesha +Natascha +Nicholle +Nikisha +Ninfa +Noelani +Nohemi +Nycole +Oliva +Pa +Patrica +Pennie +Perlita +Piper +Prescilla +Priscella +Priscila +Quinn +Quynh +Raelynn +Rashell +Rebbecca +Rebekkah +Rian +Risa +Robbin +Robynn +Rolanda +Ronnisha +Roselia +Roselyn +Sage +Samar +Santa +Scott +Seema +September +Shadonna +Shalana +Shandi +Shaneka +Shannel +Shawana +Shawnte +Shea +Sheetal +Shena +Shiela +Shireen +Sirena +Siria +Steffany +Stephen +Stephine +Stormy +Sumer +Takisha +Takiyah +Talea +Tamekia +Tamiko +Tarrah +Tashima +Tawanna +Tayna +Teana +Tena +Terese +Terrie +Tessie +Thi +Tiffeny +Tomeka +Tonja +Tran +Tynesha +Venesa +Veronika +Vi +Vida +Vina +Willa +Yazmin +Yeni +Yuka +Yury +Zabrina +Zakiya +Zenobia +Abelina +Adelle +Adrena +Aleisha +Alejandro +Aleta +Alida +Alise +Allana +Allie +Almadelia +Alvina +Alyce +Alyse +Amada +Amethyst +Amira +Ananda +Angelia +Angle +Anjali +Anjelina +Annabell +Annalee +Anneke +Annel +Anneliese +Anny +Antonietta +Aqueelah +Arasely +Arica +Ariela +Ashely +Aziza +Baby +Banessa +Barbi +Belia +Bernadine +Bevin +Binh +Bonny +Bridgit +Brigette +Brita +Britta +Brittanie +Britton +Bronwen +Bronwyn +Brooklyn +Bryanna +Bryanne +Bryce +Calina +Candance +Carlin +Cassey +Cassondra +Cesar +Chan +Channel +Charlette +Charlie +Charline +Chaundra +Choua +Ciera +Clarisa +Clarisse +Cristela +Cristi +Cristyn +Crystel +Daisey +Daisha +Danny +Dawnelle +Dawnette +Dayana +Daylene +Debrah +Deeann +Deirdra +Delana +Denay +Denesha +Denette +Denielle +Destinee +Destini +Diamond +Donita +Dyanna +Ebonee +Edie +Elbia +Eliana +Elidia +Ember +Emiko +Emmeline +Erendida +Erik +Erina +Ermelinda +Essence +Esthela +Evelynn +Felipa +Fern +Florinda +Frank +Gavriela +Gerardo +Geri +Gerri +Gilda +Glenna +Heide +Holley +Honey +Ignacia +Ilda +Ilia +India +Irina +Iva +Ivanna +Ivory +Jacinta +Jacquelyne +Jacquline +Jacy +Jamilah +Jamillah +Jannie +Javon +Jeanice +Jene +Jeniece +Jenille +Jenniefer +Jennipher +Jennyfer +Jerica +Jesseca +Joanie +Jocelynn +Joe +Joelene +Joey +Johna +Julene +Juliann +Julieanna +Kandy +Karinne +Karmen +Karra +Katharyn +Katrice +Katrin +Kaycie +Kaylan +Keosha +Kerin +Keryn +Keyona +Kiesha +Kiona +Koren +Kristianne +Krystin +Kyndra +Laine +Lakeesha +Lakeya +Lakia +Lasha +Lashaunda +Lashay +Latara +Latashia +Latina +Latrina +Lauralee +Lauran +Lavonna +Lawana +Leeanna +Leina +Leyla +Lianna +Ligia +Lillia +Lindsie +Ling +Lissa +Loraine +Lorin +Lorraina +Louann +Luzmaria +Lyn +Lyndee +Madonna +Magen +Malanie +Mandeep +Margret +Mariaisabel +Maricarmen +Marielena +Marielle +Marietta +Marivic +Marizol +Marja +Marlina +Marline +Marvella +Maryjo +Meena +Mei +Meisha +Melita +Meryl +Mey +Mica +Michiko +Mikala +Miki +Mindi +Minh +Mirabai +Mone +Monisha +Morena +Moria +Myeisha +Myia +Mylene +Nada +Naila +Nakeya +Nalani +Naseem +Nastassia +Nathan +Natividad +Negar +Neisha +Nevada +Nickie +Nicol +Nissa +Niya +Nola +Nona +Norah +Nyesha +Oneida +Oona +Patsy +Pepper +Quincy +Raeanne +Ragan +Randa +Randee +Rasheda +Rashelle +Reagan +Reana +Rhiana +Richele +Romelia +Romy +Ronisha +Ronni +Rosaisela +Roshanda +Rosibel +Rosina +Sacha +Sallie +Salvador +Samatha +Samuel +Sandee +Sandie +Santana +Santos +Sarahann +Seana +Sendi +Sequoia +Sha +Shalanda +Shamia +Shamica +Shandra +Shantae +Shantell +Sharah +Sharita +Shatoya +Shauntae +Shawnda +Shawnee +Shawntay +Shayne +Shenandoah +Sherah +Sherene +Sherrill +Shila +Sidney +Sky +Sokha +Starlene +Stefany +Stormie +Sully +Sunni +Talisha +Talitha +Tameika +Tamica +Tarin +Tarra +Tausha +Taya +Teagan +Terina +Tesha +Teshia +Thais +Thania +Tifany +Tira +Tisa +Tomika +Tova +Trinh +Tuyet +Twila +Valeri +Vania +Verenise +Victor +Vincent +Vonetta +Wendie +Winnie +Wren +Xochil +Yasmine +Yer +Yisel +Yoko +Yuridia +Zaira +Zakiyyah +Zoila +Jennifer +Jessica +Sarah +Melissa +Michelle +Nicole +Elizabeth +Amanda +Christina +Maria +Stephanie +Crystal +Vanessa +Amber +Tiffany +Heather +Amy +Kimberly +Rebecca +Lisa +Laura +Erin +Veronica +Andrea +Angela +Monica +Rachel +Danielle +Sara +Kelly +Erica +Lauren +Megan +Shannon +Emily +Jamie +Christine +Katherine +Natalie +Kristen +Patricia +Diana +Mary +Sandra +Nancy +Ashley +April +Kristin +Cynthia +Jacqueline +Julie +Erika +Alicia +Lindsay +Monique +Valerie +Victoria +Anna +Courtney +Claudia +Lindsey +Samantha +Kathryn +Katie +Linda +Adriana +Kristina +Julia +Angelica +Evelyn +Cassandra +Wendy +Ana +Brenda +Denise +Desiree +Tara +Teresa +Leslie +Alexis +Allison +Candice +Catherine +Kathleen +Cristina +Melanie +Susan +Karen +Rosa +Renee +Leticia +Cindy +Brandy +Brandi +Jenny +Gina +Nichole +Natasha +Carrie +Leah +Stacy +Tanya +Gabriela +Holly +Janet +Sabrina +Sonia +Lorena +Heidi +Katrina +Karina +Krystal +Joanna +Martha +Mayra +Tamara +Guadalupe +Tina +Theresa +Yvette +Maribel +Dana +Marissa +Brittany +Jillian +Stacey +Alejandra +Tracy +Priscilla +Angelina +Robin +Brooke +Jasmine +Alexandra +Alison +Irene +Melinda +Candace +Alma +Misty +Virginia +Deanna +Gloria +Pamela +Susana +Chelsea +Rachael +Yolanda +Marie +Kristy +Raquel +Marisa +Olivia +Cheryl +Michele +Cecilia +Marisol +Regina +Sharon +Meghan +Deborah +Yvonne +Stefanie +Dawn +Margaret +Norma +Karla +Sophia +Sylvia +Araceli +Jaime +Janelle +Lacey +Jeanette +Carolyn +Carmen +Esmeralda +Carla +Ebony +Yesenia +Rebekah +Blanca +Jaclyn +Shawna +Ruth +Sandy +Ann +Liliana +Lori +Jill +Anne +Kara +Summer +Barbara +Esther +Diane +Naomi +Kristine +Judy +Kristi +Caroline +Latoya +Rocio +Nina +Isabel +Krista +Morgan +Roxanne +Silvia +Bethany +Rachelle +Adrienne +Juliana +Margarita +Anita +Grace +Brianna +Trisha +Elena +Autumn +Johanna +Briana +Bonnie +Christy +Annette +Colleen +Eva +Ariana +Kari +Elaine +Elisa +Annie +Charlene +Kelli +Suzanne +Carolina +Tammy +Audrey +Carly +Ruby +Aimee +Judith +Marlene +Sheena +Casey +Alisha +Felicia +Jacquelyn +Melody +Beatriz +Marina +Rose +Angel +Bianca +Paula +Hannah +Lydia +Cassie +Darlene +Juanita +Molly +Robyn +Rochelle +Maricela +Abigail +Arlene +Irma +Kendra +Shauna +Helen +Miriam +Donna +Eileen +Krystle +Caitlin +Kellie +Lorraine +Lucia +Claire +Miranda +Frances +Joy +Jenifer +Brianne +Tasha +Jennie +Kate +Bridget +Daisy +Debra +Elisabeth +Toni +Corina +Jeannette +Kathy +Mindy +Amelia +Jane +Luz +Janette +Kira +Mandy +Serena +Alyssa +Gladys +Carol +Joanne +Alice +Olga +Rita +Tabitha +Antoinette +Cara +Connie +Jenna +Jessie +Kirsten +Celeste +Jolene +Meredith +Rosanna +Yadira +Genevieve +Tawny +Whitney +Vivian +Maritza +Sheila +Carina +Rosemary +Edith +Carissa +Dolores +Janice +Janine +Laurie +Sofia +Griselda +Kayla +Kelley +Christie +Katharine +Hilda +Josephine +Maureen +Noemi +Nora +Alexandria +Corinne +Mia +Alana +Bernadette +Camille +Alissa +Jodi +Mercedes +Randi +Shelley +Angie +Shanna +Tonya +Aurora +Beth +Daniela +Latasha +Tatiana +Belinda +Celina +Dominique +Lucy +Roxana +Sonya +Celia +Georgina +Jocelyn +Joyce +Stacie +Tanisha +Lara +Maira +Tricia +Lesley +Tania +Adrianna +Betty +Charlotte +Debbie +Laurel +Marilyn +Melina +Shirley +Traci +Alisa +Audra +Iris +Kelsey +Tiana +Ellen +Reyna +Rhiannon +Shelly +Sherry +Hillary +Emma +Hilary +Juana +Lacy +Lizette +Marcella +Tiffani +Athena +Esperanza +Kerry +Lillian +Natalia +Patrice +Breanna +Dorothy +Kim +Lena +Maya +Nadia +Amie +Brandie +Kristal +Lourdes +Meagan +Rosalinda +Salina +Tessa +Brittney +Chrystal +Joann +Kristie +Mariana +Trina +Dianna +Graciela +Nicolette +Taylor +Ericka +Evelina +Lilia +Marisela +Beverly +Clarissa +Josefina +Sally +Sierra +Bertha +Elise +Jade +Jayme +Antonia +Haley +Taryn +Aubrey +Consuelo +Jasmin +Nikki +Selina +Delia +Jody +Keri +Perla +Reina +Ryan +Elvira +Marcela +Angelique +Bobbie +Christa +Hayley +Jami +Katy +Leanne +Lyndsey +Ambar +Cathy +Elsa +Gabrielle +Jana +Leilani +Magdalena +Marcia +Nadine +Ramona +Staci +Ariel +Breanne +Devon +Francisca +Lily +Nereida +Sasha +Tia +Eunice +Kerri +Marta +Noelle +Selena +Terra +Viviana +Chandra +Faith +Melisa +Susanna +Aileen +Ashlee +Candy +Christin +Sheri +Charity +Ginger +Jackie +Lynn +Rosario +Marianne +Myra +Rebeca +Rhonda +Catalina +Terri +Tiffanie +Tracey +Estela +Marlena +Roxanna +Tami +Beatrice +Cherie +Christen +Destiny +Evelin +Fabiola +Francine +Kimberley +Larissa +Latisha +Leanna +Allyson +Alyson +Anabel +Elisha +Julianna +Maryann +Rosemarie +Becky +Dora +Ingrid +Lynette +Maggie +Paige +Tamika +Cortney +Cristal +Dina +Evangelina +Kimberlee +Lea +Rosio +Aisha +Arianna +Belen +Christopher +Constance +Leann +Lidia +Alaina +Casandra +Cheri +Dena +Mariela +Shana +Cari +Cheyenne +Christian +Clara +Fatima +Imelda +Jeanne +Luisa +Pauline +Rene +Roberta +Yuri +Doris +Janell +Jean +Jeanine +Mireya +Rosalie +Sherri +Stella +Adrianne +Alanna +Alondra +Francesca +Gretchen +Justine +Pearl +Shelby +Darcy +Emilia +Jacklyn +Jazmin +Lisette +Lynda +Mai +Marci +May +Michael +Simone +Violeta +Ashleigh +Bridgette +Desirae +Elissa +Eliza +Hollie +Jenelle +Kristyn +Malissa +Mariah +Rosalia +Yasmin +Chanel +Corrine +Daniel +Dayna +Leila +Fallon +Janae +Jeannie +Juliet +Marsha +Noel +Sonja +Valarie +Venessa +Abby +Aida +Aja +Aracely +Christi +Dulce +Joana +Kasey +Liza +Talia +Adrian +Daniella +Elvia +Gwendolyn +Harmony +Jaqueline +Kassandra +Lana +Loretta +Shayla +Alina +Cecelia +Chantel +Eleanor +Joan +Jordan +Lakeisha +Lia +Marian +Sheree +Sheryl +Susie +Valeria +Vanesa +Catrina +Helena +Ivette +Janel +Julianne +Lina +Marjorie +Nelly +Tameka +Tracie +Brenna +Christal +Corrina +Elva +Lizbeth +Lizeth +Mara +Mona +Paulina +Rena +Rosalina +Rosie +Teri +David +Gail +Jamila +Joelle +Liana +Micaela +My +Roseanna +Sommer +Yessenia +Anastasia +Blair +Dara +Deana +Elaina +Gillian +Jodie +June +Kendall +Lakisha +Lila +Malia +Mari +Myrna +Ofelia +Amalia +Asia +Brynn +Cameron +Chloe +Cori +Geneva +Inez +Karin +Latrice +Mirna +Sadie +Andria +Cristin +Dalia +Faviola +Flor +Gabriella +Georgia +Johana +Josie +Keisha +Leigh +Marcy +Mirella +Rosalba +Tamra +Wendi +Yuliana +Breann +Estella +Julissa +Kandice +Lee +Lora +Louise +Michaela +Myesha +Paola +Robert +Shawn +Suzette +Tabatha +Tamar +Violet +Ada +Alba +Angelita +Berenice +Ciara +Devin +Francis +Gricelda +Isela +Jeannine +Jose +Kyla +Lupita +Mellisa +Richelle +Rosanne +Vicky +Adela +Callie +Colette +Corinna +Danelle +Glenda +Ivy +James +Janna +Kaitlin +Kenya +Loni +Lupe +Mandi +Minerva +Phuong +Raven +Roxann +Soledad +Stephany +Tawnya +Tera +Trang +Yanira +Adriane +Charmaine +Cinthia +Elia +Emilie +Jesica +Jesus +John +Kathrine +Krysta +Leonor +Lucinda +Lynnette +Malinda +Martina +Nereyda +Nicholas +Quiana +Rosana +Shamika +Shari +Siobhan +Tarah +Tianna +Tiara +Tristan +Alexia +Chantal +Chelsey +Cherise +Christiana +Concepcion +Coral +Darla +Davina +Delores +Giselle +Lilian +Loren +Mabel +Manuela +Margie +Marylou +Meghann +Princess +Serina +Sunny +Ursula +Xochitl +Yajaira +Yessica +Anamaria +Anya +Billie +Bobbi +Brigitte +Brook +Doreen +Hope +Jenni +Kamilah +Lynsey +Mariam +Mollie +Nellie +Precious +Sarina +Shannan +Sondra +Susanne +Suzanna +Sydney +Alexa +Alia +Annalisa +Arielle +Bernice +Betsy +Bree +Candis +Cathleen +Corey +Danica +Deidra +Evelia +Kaleena +Karissa +Kori +Leeann +Linh +Linsey +Luisana +Madeline +Mariel +Mirian +Nathalie +Nydia +Peggy +Pilar +Shantel +Shayna +Syreeta +Thuy +Yanet +Aide +Annemarie +Carli +Charisse +Clare +Corrie +Delilah +Dianne +Hanna +Hortencia +Ida +Ivory +Janie +Juliette +Kirstin +Lacie +Lissette +Lyndsay +Marion +Nichol +Patrisia +Shasta +Tess +Tisha +Vicki +Brigette +Charissa +Deena +Edna +Elana +Ernestina +Estrella +Hana +Jannet +Jason +Kia +Lan +Lani +Lizet +Mackenzie +Maura +Mellissa +Mina +Nidia +Nikole +Penny +Terry +Adria +Anthony +Ava +Caryn +Chantelle +Daphne +Elyse +Evette +Gladis +Iliana +Jaimie +Joleen +Justina +Kisha +Lorie +Louisa +Marcie +Margo +Myisha +Nicolle +Nubia +Rosalva +Stephaine +Valentina +Anel +Angelic +Anika +Brandee +Dalila +Deanne +Emerald +Eryn +Fanny +Iesha +Janett +Jazmine +Jesse +Jo +Joni +Juan +Kiana +Ladonna +Maren +Marla +Richard +Rosalyn +Rosamaria +Shameka +Shanell +Shanon +Shiloh +Socorro +Starla +Tanesha +Trinity +Alysia +Anh +Annamarie +Araseli +Ariane +Aurelia +Breana +Carmela +Cody +Danae +Deirdre +Eboni +Emilee +Gena +Jannette +Kacey +Karie +Karrie +Keely +Kylie +Kyra +Latosha +Leona +Marivel +Maryanne +Mercy +Misti +Monika +Nichelle +Pricilla +Reanna +Reena +Rhea +Sarita +Stefani +Sue +Thu +Vannessa +Vera +Viridiana +Angeline +Anjelica +Azucena +Casie +Cassidy +Cassondra +Cathryn +Chante +Cherry +Chris +Debora +Denisha +Dionne +Eden +Erendira +Eric +Faye +Flora +Hazel +Jeanie +Jenilee +Jessenia +Joi +Joslyn +Katina +Kerrie +Kristel +Layla +Lindsy +Lizett +Magali +Maile +Mariko +Matthew +Moriah +Penelope +Portia +Racheal +Renae +Rina +Ronda +Roseann +Rosita +Rubi +Shara +Shaunte +Sherrie +Stevie +Tanika +Teena +Toccara +Tori +William +Windy +Alexander +Annabel +Asha +Blythe +Brisa +Candi +Carey +Carley +Cicely +Cora +Damaris +Edwina +Fiona +Geraldine +Gracie +Jena +Jesenia +Joshua +Julieann +Justin +Kandace +Karli +Latanya +Latonya +Lindy +Ngoc +Octavia +Oralia +Paulette +Rachell +Raylene +Shavon +Stacia +Starr +Sunshine +Tammie +Tenisha +Vickie +Yecenia +Yesica +Zulema +Alejandro +Alycia +Amberly +Andrew +Andriana +Annmarie +Brandon +Britney +Candelaria +Charla +Chelsie +Chrissy +Corine +Crista +Cristy +Dania +Elba +Elida +Eloisa +Elsie +Eugenia +Eve +Gisela +Hailey +Haydee +Ilene +Janina +Jenae +Jeni +Joseph +Julieta +Kacie +Kala +Kera +Lanette +Lien +Maegan +Maranda +Mariaelena +Marilu +Maryam +Meaghan +Michell +Mildred +Mimi +Phyllis +Porsche +Rachele +Renita +Sandi +Shaina +Shanda +Shanta +Shante +Star +Tashina +Tawni +Tenaya +Thao +Van +Vi +Wanda +Yer +Abbey +Adelina +Alejandrina +Andra +Ayesha +Bambi +Berta +Bridgett +Brie +Bryn +Carlos +Carmelita +Carolynn +Cassy +Chastity +Cherish +Chi +Collette +Cory +Darci +Darleen +Denae +Denice +Deserie +Enedina +Erinn +Ester +Ginny +Guillermina +Hallie +Hanh +Holland +Hong +Ines +Ivonne +Jan +Janee +Janeen +Jeana +Jenell +Jeniffer +Jessi +Jessika +Jovita +Juliann +Kami +Kassie +Keyana +Kiera +Korina +Larisa +Leana +Leandra +Lela +Lluvia +Lucila +Luis +Magaly +Marlen +Maxine +Melodie +Mitzi +Noelia +Paloma +Petra +Raina +Risa +Sarai +Shalonda +Shanelle +Shanika +Stephani +Tamera +Thea +Thelma +Therese +Tyler +Venus +Adam +Alecia +Alena +Angelia +Ani +Antionette +Armida +Ashlie +Aubree +Britni +Camilla +Celena +Charles +Chasity +Coleen +Cristine +Deidre +Delfina +Denisse +Elda +Fawn +Florence +Gayle +Genesis +Huong +Jackeline +Jaclynn +Jacquelynn +Janis +Jayne +Jenica +Jeri +Jonelle +Jonna +Karisa +Karly +Kasandra +Kati +Kiersten +Kymberly +La +Lashonda +Letisia +Lilliana +Linnea +Lolita +Maia +Marlyn +Nakia +Nga +Nisha +Racquel +Rhianna +Roseanne +Ryann +Shanae +Shanita +Shawnna +Sophie +Sparkle +Stephenie +Suzy +Tierra +Tosha +Tracee +Verenice +Victor +Xochilt +Yazmin +Zoe +Adina +Agnes +Alysha +Amada +Arianne +Asusena +Aubrie +Aundrea +Cami +Candida +Carie +Carin +Cassi +Chanda +Chavon +Christel +Cruz +Dallas +Danette +Deann +Elizabet +Ella +Erlinda +Herlinda +Jacquelin +Jameelah +Jenee +Joanie +Johnna +Jordana +Kali +Katheryn +Kristian +Krystin +Letitia +Lisamarie +Liset +Loraine +Luciana +Marguerite +Marianna +Marika +Miesha +Monet +Nanci +Natashia +Nicholette +Pang +Roni +Rosaura +Rowena +Sabina +Selene +Shanel +Sharleen +Sharlene +Shavonne +Shawnte +Sirena +Susannah +Teresita +Thanh +Yoana +Adriene +Afton +Amparo +Annika +Antonette +Arleen +Astrid +Brandice +Brett +Catharine +Chanelle +Cheree +Cheyanne +Corie +Destinee +Elisabet +Emi +Evita +Evonne +Falon +Farah +Felisha +Gianna +Gilda +Hang +Ilana +Isabelle +Janessa +Jenette +Jennefer +Jennette +Jenniffer +Josette +Jovana +Kaitlyn +Kalena +Kandi +Karyn +Kasie +Katelyn +Keli +Kellee +Kenisha +Keona +Kiley +Kindra +Kourtney +Kristan +Lacee +Lashawn +Le +Leyla +Lisbeth +Marcelina +Margot +Mariza +Marysol +Mistie +Monic +Nastassia +Nerissa +Noemy +Patty +Quinn +Renata +Salena +Serenity +Sharee +Sharita +Sharron +Shay +Shyla +Sindy +Skye +Steven +Tana +Tram +Travis +Trinidad +Tyra +Yara +Zoila +Aaron +Adele +Adelita +Aleah +Alesha +Alishia +Alisia +Amara +America +Ami +Analisa +Annalee +Aura +Bailey +Bao +Beatris +Beronica +Britta +Cambria +Carisa +Carleen +Carlene +Celine +Chana +Christiane +Clarice +Cristen +Danyel +Darcie +Dawna +Deandra +Demetria +Desire +Domonique +Dyan +Ebonee +Ebonie +Eliana +Farrah +Franchesca +Francisco +Genoveva +Ha +Imani +Janea +Janey +Jerri +Jolie +Jolynn +Juli +Jullian +Ka +Karena +Kay +Kelsie +Kesha +Laci +Lacresha +Laila +Lakesha +Larae +Leia +Lesly +Lilly +Lorrie +Lucille +Lucina +Lucretia +Mandie +Mariaisabel +Marisha +Martine +Maryjane +Melonie +Merissa +Micheal +Naima +Natosha +Neda +Nicola +Niesha +Niki +Nohemi +Noreen +Pa +Paris +Piper +Poonam +Rebecka +Ricardo +Rikki +Roshanda +Samara +Samira +Sarena +See +Seema +Shena +Shira +Silvana +Taina +Tamisha +Tammi +Tenika +Toya +Uyen +Veronika +Vy +Winter +Xiomara +Abbie +Adelaida +Aime +Akia +Aleasha +Allegra +Alva +Amina +Anastacia +Annamaria +Anny +Antonio +Apryl +Arcelia +Areli +Ashly +Benjamin +Brian +Brigid +Caren +Carole +Chau +Chimere +Cierra +Cyrstal +Danisha +Deseree +Dione +Dorina +Ellie +Elysia +Ena +Estelle +Frankie +Gabriel +Gemma +Heidy +Holli +Ilda +Isis +Jacob +Jaimee +Jamilah +Janene +Janeth +Jeanna +Jene +Jenessa +Jenine +Joey +Jorge +Josephina +Jovan +Kaci +Kacy +Kameron +Kaycee +Kelsi +Kiara +Kimberlie +Kylene +Laquita +Latesha +Lavina +Leeanne +Lenora +Liz +Lonnie +Lucero +Manda +Margaux +Maricruz +Marielena +Marlana +Martin +Mayela +Meggan +Meryl +Mi +Micah +Miguel +Mika +Milena +Milissa +Missy +Nai +Nena +Odessa +Phoebe +Phung +Prescilla +Rana +Rashida +Rayna +Sanjuana +Saundra +Savannah +Seana +Sequoia +Shani +Shelli +Shereen +Shoshana +Steffanie +Susy +Suzie +Tai +Tam +Tarin +Tawnie +Tiffini +Tiffiny +Tyesha +Velia +Verna +Winnie +Yael +Yasmine +Yen +Zena +Abril +Akilah +Alexandrea +Ali +Amethyst +Analia +Anisha +Annabelle +Anneliese +Augustina +Azure +Banesa +Barbra +Bethanie +Bettina +Brieanna +Brienne +Brittani +Bryanne +Cameo +Carlee +Carmel +Carmella +Carmina +Celene +Charlette +Choua +Corin +Cristie +Crystle +Dahlia +Daniell +Danika +Deisy +Desirea +Devina +Deyanira +Dinah +Dionna +Dori +Elicia +Elodia +Eloise +Emely +Erendida +Erik +Evangeline +Fernanda +Genie +Genna +Geri +Glory +Herminia +Hoa +Holley +Ileana +Irasema +Jacinda +Jacinta +Jackelyn +Jacquelyne +Jacqulyn +Jaymi +Jaymie +Jennilee +Jonathan +Josefa +Jovanna +Joycelyn +Julee +Kevin +Kimber +Kristle +Krystel +Krysten +Kyle +Lanisha +Lesa +Leslee +Letisha +Liesl +Lili +Lillie +Lisett +Lizzette +Lluliana +Loan +Lois +Lola +Lorelei +Lorna +Luana +Madeleine +Mahogany +Maisha +Maral +Marbella +Mariella +Mario +Megumi +Melani +Melia +Melynda +Mesha +Michal +Millicent +Minh +Mira +Moira +Monalisa +Nailah +Neena +Nelida +Neva +Oscar +Otilia +Pia +Polly +Porscha +Priscila +Priya +Qiana +Quyen +Randee +Rashell +Rashelle +Ricki +Rochell +Rosalind +Rosalynn +Rozanna +Sacha +Saira +Samatha +Sanam +Sean +Season +Shakira +Shaneka +Sharla +Shaunna +Shenna +Sherie +Shonte +Sia +Spring +Stefany +Subrina +Tabetha +Talitha +Tawney +Tenesha +Tesha +Timothy +Tisa +Tonia +Tran +Trinh +Trista +Tristen +Tritia +Valencia +Vannesa +Vilma +Xenia +Ying +Zenaida +Zoraida +Adrea +Agustina +Aiesha +Aiyana +Alene +Alesia +Alethea +Altagracia +Alysa +Amberlee +Ambrosia +Amee +Amira +Anabelle +Angelena +Anjuli +Annel +Antonieta +Autum +Ayanna +Bich +Blake +Bobby +Brooks +Bryana +Bryanna +Caitlyn +Cammie +Carlin +Cassia +Chan +Chantell +Chara +China +Christianne +Christyna +Cinthya +Coreen +Corrin +Cyndi +Daina +Danee +Dani +Daniele +Dannielle +Dayana +Deja +Delana +Delma +Diamond +Dolly +Dung +Ebelina +Eduardo +Elisia +Emmy +Evan +Genelle +Georgette +Gia +Giovanna +Helene +Isabella +Isaura +Jacquelina +Jacquline +Jaimi +Janai +Janella +Javier +Jenise +Jennell +Jeremy +Joelene +Julisa +Kaela +Kambria +Kameelah +Karis +Karmen +Karri +Kasha +Kathyrn +Kayleen +Keith +Kenia +Kenna +Kortney +Kris +Kyndra +Laronda +Lashanda +Lashaunda +Lashawnda +Laureen +Lauretta +Layne +Letha +Lianne +Linnette +Lizabeth +Lorene +Lorien +Luzmaria +Lyla +Lynne +Magda +Marcelle +Maribell +Maricar +Marin +Mark +Marlina +Marlo +Maryjo +Matilde +Mckenna +Meagen +Mechelle +Melodee +Mercedez +Milagros +Mindi +Misha +Miya +Myriam +Nada +Nakisha +Natassia +Neha +Nia +Nicholle +Patti +Quynh +Rae +Raelene +Rafaela +Rima +Ronni +Roselia +Roslyn +Rossana +Roxane +Seanna +Selma +September +Shalimar +Shalina +Shannah +Shantell +Sharese +Shaundra +Shawntae +Shelia +Starlene +Sulema +Suzan +Takisha +Tali +Talisha +Tamieka +Taren +Temika +Terese +Teressa +Thomas +Thy +Tiesha +Tifany +Tinesha +Tory +Trudy +Unique +Velvet +Vida +Xuan +Yanin +Yasmeen +Yeni +Zaira +Zulma +Aarika +Adeline +Aidee +Alida +Aliza +Alyse +Ambre +Amiee +An +Anisa +Anissa +Annalise +Aria +Armine +Arwen +Ashely +Aubry +Avelina +Aydee +Belia +Benicia +Blia +Bonita +Bonny +Brande +Brandis +Breeann +Breezy +Brieanne +Britt +Brittny +Cailin +Cali +Caressa +Carlena +Carlie +Carlina +Carlyn +Cecily +Chanell +Chari +Chenoa +Chere +Cindi +Cinnamon +Clarisa +Codi +Criselda +Crissy +Dacia +Damara +Danita +Daria +Delaney +Della +Demetra +Dene +Denee +Deseray +Destinie +Deven +Diem +Dominga +Donielle +Dorian +Dustin +Ebone +Echo +Eleni +Elidia +Elin +Elma +Ember +Estrellita +Ethel +Evanjelina +Felecia +Freda +Gema +Gennifer +George +Ginelle +Giuliana +Grabiela +Greta +Gwen +Hector +India +Inga +Isabell +Ivon +Jamica +Jammie +Janay +Janiece +Jannifer +Jaspreet +Jeffrey +Jere +Jesika +Jewel +Jihan +Jimena +Jodee +Joel +Jolena +Joselyn +Julietta +Kai +Kaila +Kandis +Kanesha +Kaori +Karah +Kariann +Karine +Katherin +Kathie +Kathryne +Kaylene +Keila +Kenda +Kenyatta +Keyonna +Khanh +Kiesha +Kimi +Kiran +Kirin +Kiyana +Korin +Krissy +Krystina +Lai +Lakenya +Lane +Lanesha +Laquisha +Lashay +Laticia +Lauri +Laurice +Lavonne +Lawanda +Leslieann +Leya +Lezlie +Liberty +Lin +Lita +Livia +Lorina +Lorinda +Lotoya +Ly +Lynnea +Madelyn +Magen +Maida +Maite +Mao +Margret +Mariade +Mariaguadalupe +Marielle +Markisha +Marline +Marni +Marrissa +Marti +Marybeth +Maryhelen +Melony +Meuy +Michel +Micole +Mirtha +Mya +Myriah +Natalee +Nathan +Natisha +Natoya +Nhu +Nita +Norah +Norine +Nova +Parveen +Patrick +Porsha +Radhika +Raeann +Raelynn +Rafael +Randa +Rania +Rasheeda +Reana +Rosina +Rubie +Ryanne +Sage +Scarlett +Sendy +Seneca +Serene +Shae +Shalini +Sharhonda +Shawnda +Shawnta +Shea +Shellie +Shemeka +Sheng +Shiela +Shirin +Shonna +Siomara +Somer +Stephen +Stephine +Stevi +Sueann +Sumer +Talina +Tameeka +Tameika +Tamira +Tari +Tarra +Tarrah +Tasia +Teal +Terrie +Tifani +Tinamarie +Todd +Tomisha +Trena +Tressa +Trish +Tu +Tyisha +Valorie +Vanesha +Veda +Veronique +Viola +Vivien +Yanette +Abelina +Addie +Adia +Adriann +Agatha +Aislinn +Albert +Albertina +Alea +Aleida +Aleshia +Alex +Alfredo +Aline +Almadelia +Amaya +Ambra +Ammie +Analaura +Analilia +Angelika +Anglea +Anica +Anjali +Anjanette +Annaliza +Anneka +Antonietta +Arely +Argelia +Ariella +Arin +Arturo +Ashanti +Ashia +Aspen +Asuzena +Audelia +Avery +Aviva +Ayana +Aysha +Benita +Blaire +Brea +Breeanna +Brieana +Britany +Britton +Briza +Brynne +Bryony +Candra +Candyce +Carri +Cassey +Cayla +Cecile +Cesilia +Channon +Charisma +Charleen +Charmain +Chavonne +Cherese +Cherice +Chevelle +Chistina +Chrissie +Chrysta +Chrystina +Claudette +Contessa +Corissa +Courtenay +Cozette +Cristi +Danna +Danyell +Danyelle +Dao +Darby +Davida +Daysi +Debby +Dedra +Dee +Dejah +Delena +Delicia +Delmy +Denis +Denita +Desirie +Deva +Devona +Devorah +Devyn +Diedra +Dixie +Dona +Dulcinea +Dunia +Dyana +Edward +Elina +Ema +Emerita +Enid +Enjoli +Errin +Esmirna +Eura +Evelynn +Fabiana +Farm +Felice +Felicitas +Fern +Fernando +Fonda +Gale +Genny +Gerald +Ginna +Gisselle +Goldie +Grasiela +Gregory +Harmonie +Heaven +Heide +Hermila +Hoang +Honey +Ina +Indira +Isha +Iva +Ivan +Ivet +Jacqlyn +Jamee +Jamey +Jamika +Janetta +January +Jaquelin +Jaquelyn +Jay +Jaylene +Jaymee +Jennelle +Jenniferann +Jerry +Jessalyn +Jilian +Jina +Julian +Julieanne +Julio +Kallie +Kammie +Kandyce +Karalee +Karisha +Karlee +Karlyn +Karolyn +Kary +Kasondra +Katerina +Katia +Keira +Kenneth +Keosha +Kerstin +Kierra +Kimberli +Kitty +Koren +Krisha +Lachelle +Laina +Laneisha +Larita +Lashaun +Latashia +Latia +Latina +Latishia +Latrese +Lauran +Laurene +Leigha +Leighann +Leonora +Lesli +Letica +Lianna +Libby +Lidya +Lissa +Lissett +Llesenia +Logan +Loida +Loriann +Lorianne +Loryn +Luna +Lus +Lyzette +Mae +Magnolia +Malisa +Malynda +Mamie +Manuel +Marialuisa +Mariann +Mariateresa +Maricarmen +Maricel +Maricella +Maricris +Marietta +Marites +Marnie +Marquetta +Marylu +Massiel +Mattie +Mckenzie +Mee +Meegan +Megann +Melaine +Melany +Mele +Melva +Michiko +Mikaela +Moraima +Mui +Myla +Mylinh +Nacy +Nanette +Naoko +Neomi +Niccole +Nicolet +Nikia +Nikol +Nila +Nilda +Nuria +Nuvia +Oanh +Oliva +Ophelia +Ortencia +Patrisha +Patsy +Paul +Perlita +Phebe +Porcha +Porche +Priscella +Prisilla +Puja +Raeanne +Raechel +Randy +Rani +Rebeka +Reema +Regan +Renea +Reva +Rhianon +Rhoda +Ricky +Riki +Rivkah +Romana +Rona +Ronesha +Ronica +Ronisha +Ronnie +Rori +Rory +Rosaisela +Rosalee +Rosangela +Roselle +Roselyn +Rosenda +Rosetta +Rupinder +Sabrena +Saida +Salma +San +Santa +Santos +Sarrah +Sergio +Shaleen +Shalena +Shamara +Shanee +Shanise +Shantal +Shantelle +Shaunta +Shavonn +Shawnee +Shawntee +Sheba +Shellee +Shemika +Sherice +Sheron +Sherree +Sherrell +Shila +Shilo +Shiree +Shona +Shonda +Shontae +Shoua +Sidney +Sienna +Sonal +Soraya +Stacee +Stepanie +Stormy +Sujey +Sully +Sulma +Taline +Tamica +Tamiko +Taniesha +Tanis +Tanja +Taralyn +Taraneh +Tashana +Tashia +Tawanna +Tawnia +Taya +Tenise +Teryn +Thalia +Thuan +Tiare +Tiffaney +Tiffiney +Tiffney +Tomasa +Tomika +Tonie +Trini +Tuyet +Twila +Tynisha +Valene +Valeska +Vania +Vivianna +Wendie +Wesley +Willow +Xee +Xochil +Yu +Yumi +Yuriana +Zabrina +Zainab +Zakiya +Zuleika +Jennifer +Jessica +Nicole +Melissa +Sarah +Elizabeth +Michelle +Stephanie +Christina +Ashley +Amanda +Heather +Crystal +Maria +Vanessa +Amber +Kimberly +Tiffany +Laura +Rebecca +Megan +Amy +Danielle +Rachel +Erin +Lisa +Lauren +Veronica +Erica +Angela +Andrea +Cynthia +Monica +Sara +Kelly +Jamie +Shannon +Katherine +Emily +Christine +Natalie +Diana +Jacqueline +Patricia +Erika +Alicia +Nancy +Mary +Kristen +Lindsay +Sandra +Julie +April +Lindsey +Victoria +Valerie +Kristina +Kristin +Monique +Samantha +Anna +Courtney +Desiree +Daisy +Kathryn +Mayra +Linda +Brenda +Claudia +Katie +Angelica +Wendy +Holly +Karen +Cassandra +Tara +Alexis +Adriana +Denise +Julia +Allison +Teresa +Ana +Cristina +Gabriela +Leslie +Catherine +Cindy +Brittany +Stacy +Evelyn +Sabrina +Candice +Krystal +Kathleen +Renee +Jenny +Melanie +Marissa +Joanna +Rosa +Leticia +Priscilla +Susan +Chelsea +Natasha +Tanya +Gina +Nichole +Meghan +Alejandra +Heidi +Dana +Leah +Sonia +Martha +Lorena +Tracy +Brandy +Brandi +Alexandra +Guadalupe +Jasmine +Carrie +Gloria +Karina +Theresa +Janet +Tamara +Katrina +Stacey +Candace +Stefanie +Tina +Angelina +Alison +Sophia +Brooke +Maribel +Yvette +Deanna +Alma +Irene +Yesenia +Jillian +Marisol +Melinda +Olivia +Michele +Misty +Jaclyn +Yvonne +Carmen +Marie +Sylvia +Yolanda +Karla +Susana +Pamela +Raquel +Margaret +Virginia +Adrienne +Regina +Sheena +Bethany +Anne +Brianna +Barbara +Dawn +Lacey +Cecilia +Marisa +Carolyn +Robin +Diane +Grace +Jaime +Caitlin +Esmeralda +Krista +Rocio +Deborah +Casey +Molly +Rebekah +Jeanette +Kristy +Norma +Jacquelyn +Kristine +Janelle +Rachael +Sharon +Carla +Ruth +Morgan +Aimee +Naomi +Colleen +Araceli +Lori +Rachelle +Shawna +Melody +Jill +Kara +Kelli +Liliana +Summer +Carolina +Nina +Blanca +Rose +Christy +Silvia +Ebony +Ariana +Cheryl +Hannah +Isabel +Sandy +Carly +Kari +Latoya +Alisha +Roxanne +Caroline +Esther +Elena +Audrey +Eva +Helen +Bonnie +Marina +Suzanne +Johanna +Margarita +Bianca +Eileen +Marlene +Abigail +Miranda +Robyn +Charlene +Elaine +Kristi +Elisa +Lydia +Frances +Kayla +Judy +Krystle +Ruby +Kathy +Ann +Kendra +Briana +Miriam +Anita +Annette +Rochelle +Beatriz +Trisha +Felicia +Autumn +Joy +Whitney +Alyssa +Kelsey +Tabitha +Kate +Paula +Alice +Jane +Marquita +Angel +Annie +Connie +Rita +Lucia +Serena +Darlene +Donna +Elisabeth +Arlene +Jenna +Juliana +Lorraine +Carol +Rosanna +Camille +Tasha +Ashlee +Luz +Cara +Kirsten +Angie +Joanne +Carissa +Celeste +Edith +Janice +Judith +Antoinette +Amelia +Bridget +Christie +Corina +Laurie +Rosemary +Shauna +Alana +Brianne +Cassie +Daniela +Janette +Kellie +Maritza +Noemi +Shelly +Claire +Marilyn +Debra +Jennie +Meredith +Vivian +Elsa +Randi +Tammy +Genevieve +Taylor +Griselda +Maira +Sofia +Juanita +Mia +Yadira +Alexandria +Kelley +Maricela +Stacie +Dominique +Breanna +Mariana +Meagan +Shanna +Tawny +Tessa +Hilary +Jenifer +Sonya +Brandie +Carina +Janine +Sheila +Joyce +Tonya +Juana +Lizette +Mandy +Irma +Jessie +Jocelyn +Katharine +Natalia +Toni +Beth +Celia +Graciela +Paola +Alissa +Jade +Josephine +Mindy +Tania +Sally +Charlotte +Marisela +Mercedes +Roxana +Brittney +Delia +Jolene +Lourdes +Ashleigh +Gladys +Sasha +Sherry +Athena +Justine +Shirley +Tanisha +Beverly +Ericka +Shelley +Audra +Corinne +Elise +Haley +Hilda +Selena +Angelique +Ellen +Iris +Jasmin +Lacy +Latasha +Shelby +Consuelo +Dolores +Laurel +Myra +Noelle +Reyna +Tatiana +Traci +Chrystal +Joann +Lena +Luisana +Maureen +Breanne +Lillian +Michael +Destiny +Hillary +Jeannette +Keri +Kerry +Kira +Kristie +Mai +Nora +Olga +Shana +Aubrey +Belinda +Charity +Lesley +Nikki +Debbie +Lara +Betty +Chanel +Jodi +Leanne +Patrice +Aileen +Emma +Nadia +Roxanna +Sheri +Catalina +Clarissa +Dorothy +Kim +Marcella +Melisa +Terra +Paige +Alisa +Anabel +Christa +Melina +Adrianna +Cristal +Esperanza +Jana +Josefina +Kristal +Lucy +Mallory +Maya +Rebeca +Tiana +Celina +Gabrielle +Leilani +Lynette +Perla +Sierra +Susanna +Bertha +Dianna +Larissa +Aracely +Becky +Devon +Lilia +Ramona +Salina +Selina +Tamika +Chandra +Faith +Georgina +Kaitlin +Kimberlee +Antonia +Aurora +Leanna +Lynn +Rosario +Amie +Kasey +Lily +Pauline +Taryn +Brenna +Dina +Elisha +Fabiola +Luisa +Rosalinda +Venessa +Ariel +Christin +Elvira +Katy +Tracey +Trina +Cathy +Francesca +Janell +Lyndsey +Marta +Rhiannon +Talia +Viviana +Bernadette +Jacklyn +Kimberley +Nicolette +Rene +Ryan +Tricia +Trista +Allyson +Alondra +Alyson +Beatrice +Cortney +Jaqueline +Maryann +Reina +Bobbie +Christen +Dora +Dulce +Elissa +Francisca +Jean +Mariela +Marlena +Violeta +Ambar +Belen +Hollie +Jackie +Maggie +Adrianne +Clara +Elvia +Fallon +Janae +Adrian +Estela +Sonja +Tracie +Valeria +Anastasia +Cinthia +Eunice +Imelda +Leann +Marianne +Staci +Tiffanie +Bridgette +Cherie +Christian +Constance +Dalia +Jeanne +Jody +Pearl +Stella +Terri +Aida +Hayley +Latisha +Mara +Noel +Rena +Roberta +Aja +Chelsey +Dayna +Jeanine +Lisette +Liza +Magdalena +Nadine +Tera +Catrina +Christal +Ingrid +Ivette +Ivy +Jazmin +Kaleena +Loretta +Chantel +Cheri +Christopher +Desirae +Ginger +Harmony +Jayme +Kassandra +Katelyn +Kerri +Lea +Lidia +Lina +Lizbeth +Marcela +Tarah +Tiffani +Alanna +Fatima +Jami +Jenelle +Liana +May +Mireya +Tia +Xochitl +Ashlie +Candy +Cheyenne +Daniella +Devin +Eliza +Gretchen +Jamila +Joana +Lizeth +Nereida +Rhonda +Roseanna +Tami +Valarie +Cori +Daniel +Deisy +Janel +Kirstin +Marjorie +Socorro +Susie +Arianna +Bernice +Chloe +Christi +Kacie +Kaitlyn +Leila +Rosie +Yasmin +Britney +Cari +Darcy +Delilah +Eleanor +Emilia +Jeannie +Joan +Jodie +Julianna +Leigh +Rosalie +Rosana +Rosemarie +Teri +Vanesa +Berenice +Blair +Edna +Elaina +Elyse +Marsha +Mirna +Monika +Shayna +Asia +Casandra +Dena +Evangelina +Francine +Glenda +Julianne +Malia +Martina +Rosalia +Shayla +Thuy +Yuri +Cathleen +Gricelda +Hanna +Lana +Phuong +Simone +Vicky +Andria +Cassidy +Cory +Deana +Gwendolyn +Jason +Jeannine +Juliet +Karin +Lee +Lynda +Lyndsay +Mariah +Marilu +Mona +Raven +Savannah +Serina +Sheryl +Viridiana +Abby +Anh +David +Dianne +Doris +Elva +Francis +Geneva +Jaimie +Janie +Kenya +Marcia +Paloma +Shaina +Shari +Shawn +Tabatha +Ashly +Estrella +Eugenia +Flor +Helena +Kandice +Marci +Michaela +My +Myrna +Nathalie +Paulina +Quiana +Rosalba +Rosalva +Sheree +Sophie +Suzanna +Tameka +Amalia +Billie +Bobbi +Callie +Danelle +Danica +Gabriella +Gail +Giselle +Iliana +Inez +Janna +Jesse +Jose +Kathrine +Mandi +Marla +Robert +Rosio +Shamika +Terry +Tori +Yessenia +Andrew +Elida +Evelin +Faviola +Hana +Jordan +Kandace +Marcie +Marcy +Ofelia +Precious +Stefani +Zoe +Adela +Aisha +Alina +Anthony +Betsy +Brandee +Christiana +Dalila +Doreen +Janessa +Johana +Kia +Louise +Lupe +Lupita +Madeline +Meghann +Siobhan +Sydney +Ada +Alaina +Annemarie +Carley +Cecelia +Chelsie +Ciara +Cristy +Davina +Deanne +Deisi +Denice +Isela +Ivonne +Jesus +Josie +Justina +Karyn +Loni +Maura +Sherri +Sue +Tiara +Ursula +Yanira +Arielle +Brigitte +Charmaine +Colette +Corrina +Deena +Denisha +Eloisa +Estella +Fawn +Holli +Hope +James +Joshua +Keisha +Kisha +Kyla +Leandra +Lila +Michell +Petra +Porsha +Portia +Tamar +Violet +Wanda +Adriane +Cameron +Carmela +Cassondra +Corinna +Gillian +Iesha +Joelle +Joleen +Karissa +Latrice +Marion +Micaela +Minerva +Penny +Richelle +Rosalina +Rosalyn +Shante +Shasta +Tamra +Tanesha +Tianna +Alba +Arcelia +Bree +Brynn +Cristin +Emilie +Evelina +Evette +Jenae +John +Juliette +Krysta +Lan +Lilian +Lora +Meaghan +Mellissa +Myesha +Rikki +Sadie +Sunny +Tammie +Tess +Annamarie +Annmarie +Candis +Casie +Chasity +Damaris +Deysi +Elana +Eve +Gena +Grisel +Jeanna +Lakeisha +Lakisha +Linh +Mabel +Mariam +Mirian +Myisha +Nelly +Pilar +Princess +Racheal +Renae +Sommer +Trang +Vera +Wendi +Alexa +Alexia +Alycia +America +Azucena +Dara +Deidra +Dennise +Hazel +Ivory +Janis +Jesenia +Kacy +Kristyn +Lani +Lia +Linsey +Lizet +Loren +Malinda +Marian +Matthew +Miesha +Mollie +Nellie +Peggy +Racquel +Reanna +Shanika +Shanon +Shantel +Shara +Shavon +Soledad +Starr +Stevie +Tawnya +Tenisha +Thao +Valentina +Yajaira +Angelita +Anjelica +Anya +Breana +Carlie +Cathryn +Charissa +Corey +Danika +Gianna +Haydee +Janeen +Jesica +Kendall +Kori +Kristel +Kylie +Lorie +Malissa +Nakia +Nichelle +Nikole +Rafaela +Richard +Sarina +Shani +Suzette +Tristan +Van +Ami +Analisa +Anamaria +Anel +Araseli +Ariane +Ashely +Chanelle +Cherish +Cody +Corrie +Dania +Denisse +Eboni +Erendira +Eric +Georgia +Isaura +Jazmine +Jessika +Joni +Joseph +Juan +June +Karly +Karrie +Keely +Kyle +Latanya +Leeann +Lindy +Lucille +Lucinda +Magda +Marcelina +Mari +Marlen +Marylou +Nanci +Nicholas +Nidia +Patty +Pricilla +Raina +Rina +Sarita +Shameka +Shellie +Star +Stephaine +Susannah +Tamera +Thelma +Trinity +Tyler +Yuliana +Afton +Alysha +Angeline +Annabel +Brie +Brigette +Chantelle +Charisse +Cherise +Corrine +Deirdre +Ebonie +Gabriel +Gemma +Gladis +Guillermina +Huong +Janett +Jenniffer +Jovana +Korina +Kyra +Layla +Lilliana +Lois +Mariaelena +Mariel +Marysol +Nydia +Porsche +Rosamaria +Roseann +Roseanne +Sarai +Shanae +Sondra +Stephani +Thu +Tiffaney +Tonia +Vickie +Yessica +Alejandro +Beronica +Breann +Carey +Clare +Corine +Crista +Daphne +Deseree +Florence +Ginny +Giovanna +Hoa +Jan +Janay +Jeana +Jenee +Jeniffer +Kanisha +Kati +Laila +Marika +Marivel +Maryanne +Mee +Meggan +Mikaela +Mimi +Nereyda +Nicola +Nisha +Rosaura +Roxann +Salena +Shanita +Sharlene +Shaunna +Sherrie +Stacia +Tanika +Therese +William +Yanet +Aaron +Alejandrina +Anissa +Antonette +Asha +Beatris +Brandon +Brian +Caitlyn +Chantal +Ciji +Cora +Coral +Cristine +Darla +Deserie +Dusty +Elsie +Enedina +Ilene +Jackeline +Jacqulyn +Jenni +Jessenia +Jovanna +Justin +Kacey +Kali +Kassie +Katia +Keli +Kenia +Latonya +Leia +Lela +Lucero +Maren +Marguerite +Marianna +Mirella +Monet +Nga +Nicolle +Pa +Pang +Paris +Rayna +Rosalind +Rosita +Rowena +Scott +Selene +Shanda +Shanee +Skye +Stephany +Steven +Tierra +Tisha +Vannessa +Vicki +Xiomara +Yesica +Adelina +Aide +Alysia +Amparo +Angelic +Anika +Armida +Bailey +Bao +Brook +Carli +Carole +Coleen +Daniele +Dannielle +Deidre +Elysia +Erinn +Ester +Farrah +Georgette +Jammie +Jeffrey +Jenilee +Jeri +Jolie +Julissa +Ka +Kami +Kellee +Kristian +Kristle +Kymberly +Ladonna +Lakesha +Lashawn +Lashonda +Lisbeth +Lissette +Lizett +Louisa +Maegan +Margie +Maricruz +Mellisa +Melodie +Mina +Niesha +Noemy +Noreen +Rachell +Rhea +Rosanne +Sean +Shiloh +Shira +Starla +Susanne +Tai +Tamisha +Tenaya +Thanh +Venus +Vilma +Alexander +Alisia +Annika +Antionette +Arianne +Benjamin +Bryn +Chastity +Chrissy +Ciera +Concepcion +Cristen +Darci +Delfina +Dorian +Evelia +Falon +Felisha +Fiona +Greta +Hailey +Hong +Jacquelin +Jayne +Jena +Joslyn +Karena +Karie +Kasandra +Kiana +Kiera +La +Lacie +Laquita +Leonor +Lilly +Manuela +Mark +Maxine +Merissa +Mildred +Misha +Nichol +Raylene +Sabina +Sequoia +Shanel +Shanell +Shannan +Steffanie +Stephenie +Taneisha +Victor +Yasmine +Yazmin +Zulema +Alesha +Alia +Amberlee +Andra +Annalisa +Ava +Bridgett +Brisa +Britni +Carmelita +Carmina +Dahlia +Desire +Dolly +Dustin +Echo +Elba +Elia +Elisabet +Elizabet +Emilee +Essence +Evangeline +Evita +Hanh +Heidy +Herlinda +Ida +Ilana +Ilda +Ines +Jacquelynn +Jannet +Jeanie +Jeni +Julieta +Kaila +Katheryn +Kevin +Kindra +Kortney +Kristan +Krystina +Laci +Lavonne +Le +Leona +Lianna +Lorna +Luis +Lynsey +Magen +Marielle +Miguel +Mika +Mira +Misti +Nataly +Niccole +Patrisia +Phyllis +Pia +Reena +Risa +Rubi +Sahar +Savanna +Shanelle +Sparkle +Teresita +Yuridia +Zahra +Adeline +Alecia +Alena +Aliza +Ayana +Blaire +Brittani +Bryana +Candi +Candie +Carlos +Cesilia +Chanell +Charla +Cierra +Cindi +Cintia +Danae +Danna +Danyelle +Darcie +Diem +Dixie +Dominque +Edwina +Emerald +Ernestina +Ernestine +Fanny +Farah +Felecia +Genoveva +Geraldine +Gisela +Helene +India +Isis +Jacquline +Janene +Jannette +Jonathan +Jonelle +Jovita +Juliann +Kallie +Karlee +Kourtney +Kylee +Lanisha +Laticia +Liberty +Lola +Lynnette +Madeleine +Maranda +Mariko +Marin +Marisha +Maritsa +Melaine +Melynda +Michel +Monigue +Moriah +Myriam +Nubia +Oralia +Patrick +Perlita +Phoebe +Quinn +Renita +Rosalynn +See +Shane +Shay +Shea +Shilo +Shirin +Shoshana +Sunshine +Tam +Tawni +Thomas +Uyen +Vi +Vianey +Windy +Winnie +Yer +Adam +Adele +Adina +Agnes +Akilah +Amira +An +Ani +Annamaria +Ariella +Arleen +Aurelia +Ayesha +Bambi +Benita +Bessie +Cambria +Candelaria +Carin +Carlee +Carleen +Carlene +Carri +Cary +Celena +Charise +Collette +Corrin +Cyrstal +Daisey +Danette +Davida +Dawna +Daysi +Deja +Demetria +Denae +Devan +Elicia +Ella +Faye +Franchesca +Genesis +Gennifer +Hang +Ileana +Janean +Janee +Janeth +Janina +Jenica +Johnna +Julian +Kala +Karli +Kasie +Kaylan +Krysten +Leighann +Letisia +Lien +Linnea +Liset +Lucila +Lynne +Mackenzie +Marbella +Margo +Margot +Mariaisabel +Matilde +Mercy +Micah +Monisha +Nanette +Natassia +Nelida +Nerissa +Ngoc +Nia +Nuvia +Octavia +Paulette +Quyen +Rana +Rebecka +Ronda +Roni +Ronisha +Ryann +Samira +Samuel +Sandi +Shaniece +Shena +Sintia +Talitha +Tammi +Tana +Teena +Tram +Tyesha +Valene +Viola +Winter +Xochilt +Abbey +Adena +Adia +Aleah +Alexandrea +Allegra +Ambrosia +Ananda +Anisha +Anitra +Anjali +Annalise +Ariela +Arin +Ashlea +Aubree +Belia +Bettina +Bonny +Brett +Brieanna +Camilla +Candyce +Carisa +Caryn +Cheree +Choua +Christel +Corie +Danisha +Danita +Daria +Desarae +Diamond +Dominica +Domonique +Drew +Eden +Elisia +Eryn +Evan +Evonne +Flora +Glory +Gregory +Gwen +Holland +Jacob +Jada +Janai +Jenette +Jennelle +Jordana +Josette +Julieann +Julieanne +Jury +Kaci +Kamilah +Kandis +Karolyn +Keosha +Kerstin +Keyanna +Kimber +Lachelle +Lanae +Lashanda +Layne +Lenora +Letisha +Lianne +Lillie +Lissa +Liz +Lorrie +Luciana +Lucina +Ma +Mae +Magaly +Marili +Mario +Marlaina +Marybeth +Maryellen +Monic +Nai +Nickole +Ninfa +Noelia +Paul +Rachele +Rae +Sari +Savanah +Scarlett +Serene +Shyla +Sindia +Sulema +Suzy +Talisha +Tawna +Tiesha +Tinisha +Tonisha +Torrey +Tosha +Tristen +Tyra +Verenice +Yeni +Adelaide +Adria +Alessandra +Althea +Alyce +Amada +Amberly +Andreana +Angelia +Angella +Annabelle +Areli +Ashli +Banesa +Bethanie +Brittny +Cameo +Cami +Caren +Cassaundra +Cecily +Chante +Charis +Charleen +Cherry +China +Cruz +Crystle +Dani +Dayana +Deann +Deepa +Delmy +Delores +Dennice +Dionna +Domenica +Donielle +Ember +Emi +Ethel +Farm +Felicitas +Frank +Gayle +Geri +Germaine +Hellen +Isabella +Jacquelyne +Jaimee +Jameelah +Jaymie +Jayna +Jerri +Jessi +Jessyca +Jesusita +Jo +Jodee +Julisa +Kacee +Kalena +Karri +Kay +Kayleen +Kelle +Kenisha +Kerrie +Keyana +Khristina +Kiley +Krystin +Lanette +Larisa +Leeanna +Lesli +Liseth +Livier +Lucretia +Lyndsie +Magali +Magan +Maia +Malika +Malisa +Mandie +Maricella +Marlyn +Marquitta +Martine +Marybell +Mckenzie +Melony +Milagros +Milissa +Mitzi +Nathan +Natisha +Polly +Raul +Rayleen +Rebbecca +Regan +Renata +Roxane +Sapna +Sarena +Sendy +Serenity +Shantal +Shaquita +Shavonne +Sherilyn +Somer +Soraya +Stefany +Syreeta +Talin +Tammara +Tatum +Tawney +Tawnie +Tiffiny +Tramaine +Travis +Tristin +Tuyen +Tyeisha +Tyisha +Valencia +Vania +Vannesa +Yara +Yen +Zara +Zena +Zoila +Zoraida +Alberta +Alida +Alishia +Alona +Amara +Amelie +Anais +Anastacia +Andera +Andrina +Angelene +Annel +Antonio +Arica +Ashanti +Aundrea +Aura +Azure +Breeann +Bryanna +Candise +Caridad +Carlyn +Carmel +Cassy +Celica +Cherisse +Chi +Chistina +Christianne +Cicely +Cinthya +Clarice +Contessa +Cristian +Daisha +Danyel +Darby +Deandra +Donald +Dyan +Elda +Enjoli +Erikka +Erlinda +Fernando +Florencia +Gema +Genna +Grabiela +Gracie +Gricel +Grissel +Haylee +Heide +Honey +Hortencia +Huyen +Idalia +Ivon +Jamee +Jamica +Jamilah +Janea +Janielle +Jannett +January +Jenay +Jenevieve +Jenine +Jennilee +Jewel +Joella +Joi +Jolynn +Josefa +Josephina +Jovan +Kai +Kang +Kanika +Karma +Katelin +Keara +Keeley +Kenneth +Kera +Keturah +Kiara +Kiran +Kris +Krystel +Lacee +Lakeshia +Lashawna +Latina +Latosha +Lauri +Leesa +Leslee +Lisamarie +Lisset +Lizabeth +Lolita +Lorin +Lyndi +Lynnea +Lysette +Mahogany +Maile +Mallorie +Manda +Marielena +Marilee +Marilou +Marily +Markeisha +Maryam +Marygrace +Massiel +Mele +Michal +Mindi +Miya +Mya +Nansi +Nastassia +Natalee +Neda +Nely +Nena +Nicholle +Nickie +Nika +Niki +Nikia +Patience +Penelope +Porscha +Priscila +Raelynn +Rashida +Rhianna +Riki +Rio +Robbin +Roslyn +Rossana +Saba +Saundra +September +Shandi +Shaneka +Shanetta +Shantell +Sharee +Sharie +Shaunte +Shauntel +Shawnee +Shawnna +Silva +Silver +Stephine +Suzana +Suzie +Tabetha +Tarra +Tatianna +Tegan +Thea +Thi +Thy +Tiffeny +Toccara +Twila +Valorie +Vanity +Velia +Velvet +Veronique +Wendie +Yael +Yaneth +Yecenia +Yee +Yury +Zenaida +Abra +Abril +Addie +Adelaida +Adreanna +Aime +Akiko +Alegandra +Alethea +Allisha +Alva +Alysa +Alyse +Amina +Analicia +Andre +Andriana +Anica +Annalee +Annelise +Anny +Antwanette +Arely +Aria +August +Avery +Aziza +Baby +Barbie +Barbra +Bo +Brienne +Brigid +Britany +Britt +Britta +Brittnee +Bryan +Brynne +Calli +Casondra +Catharine +Celene +Celine +Cendy +Cerise +Cesar +Chana +Chanda +Channa +Charisma +Charles +Charon +Chelsi +Chia +Chiara +Chris +Chrissie +Claudine +Colby +Coreen +Corrinne +Crissy +Cyndi +Daina +Daniell +Darlena +Deicy +Delaina +Delila +Della +Deserae +Desirea +Devi +Diandra +Divina +Dung +Dwan +Dyani +Edward +Ellie +Elsy +Erienne +Estelle +Fay +Felicity +Felisa +Felix +Genelle +Genie +George +Gia +Gilda +Ginamarie +Grasiela +Guinevere +Gustavo +Ha +Harpreet +Hattie +Herminia +Isabelle +Jacinda +Jacklin +Janey +Jannie +Jaylene +Jenea +Jenell +Jennette +Jeny +Jesscia +Jessia +Jina +Joe +Jonna +Jovonna +Joycelyn +Kaela +Kalani +Kalin +Kalina +Kandi +Kandra +Karlene +Karol +Katey +Katharyn +Katherin +Kathryne +Kaylene +Kaylin +Keiko +Keila +Kenna +Keren +Keyonna +Khanh +Kiersten +Kimberlie +Kirstie +Kriston +Kristyna +Kyleen +Lakeysha +Lanita +Lashawnda +Latricia +Latrina +Latrisha +Laureen +Lauryn +Lawanda +Leeanne +Leora +Letitia +Letticia +Libby +Liesl +Lili +Lindsy +Lissett +Loan +Logan +Lona +Lorene +Lory +Madalyn +Madelyn +Maegen +Maisha +Marcelle +Margaux +Marguita +Maricel +Mariza +Marlana +Marleen +Marni +Marnie +Martinique +Marylu +Mckenna +Mei +Melany +Melba +Melonie +Merry +Millicent +Mistie +Morgen +Myeshia +Natashia +Necole +Nhung +Nichele +Nicholette +Nicol +Nohemi +Nova +Nuria +Nyesha +Oanh +Ophelia +Oscar +Patrica +Phaedra +Priya +Qiana +Rafael +Randee +Rashelle +Rheanna +Rhoda +Ricardo +Rima +Rochell +Rosella +Roselyn +Rosy +Roya +Ruben +Saida +Sana +Sang +Seana +Sebrina +Shakira +Shalina +Shandra +Sharita +Sharleen +Sharonda +Sharron +Shawnte +Shela +Sheng +Sherie +Shona +Steffany +Stephen +Susy +Suzan +Synthia +Taisha +Tamira +Tanaya +Taneka +Tanja +Taren +Tashana +Tashina +Tawnee +Terah +Teryn +Theodora +Tiffini +Timothy +Tommie +Tory +Toya +Tran +Trena +Trinidad +Tuyet +Tynisha +Unique +Vita +Willow +Xee +Yahaira +Yumi +Abbie +Adreana +Adriann +Adriene +Aleisha +Alesia +Alix +Amani +Amaris +Amberlyn +Ambra +Amiee +Aminah +Ammie +Anabell +Anabelle +Analia +Analilia +Andreya +Angelena +Annaliese +Anneke +Antonella +Arasely +Argelia +Arlena +Armanda +Arminda +Arturo +Ashika +Ashlye +Ashlyn +Ashton +Asusena +Aubrie +Audelia +Audrina +Augustina +Austin +Avelina +Aya +Ayanna +Ayla +Banessa +Bella +Berenise +Berta +Bich +Biridiana +Blake +Blossom +Brandalyn +Brandice +Brea +Breeanna +Bria +Brittanie +Brittni +Bryanne +Caley +Camie +Caprice +Caressa +Carlena +Carlisha +Carmella +Carolann +Cassey +Cassi +Cathrine +Celestina +Chantell +Chau +Chaya +Cherilyn +Christan +Christena +Christene +Christiane +Christinia +Cinnamon +Clementina +Codi +Colene +Corissa +Courtnie +Cristi +Cristie +Crystalyn +Daicy +Daizy +Dalilah +Dallas +Danesha +Debby +Dee +Delisa +Denee +Deniece +Diedra +Dinah +Diona +Dionne +Donisha +Dorothea +Dyanna +Ebelin +Ebonee +Eddie +Edie +Elidia +Emely +Emmy +Essica +Frankie +Genea +Genny +Gerardo +Giana +Gianina +Giannina +Gigi +Giulia +Hallie +Han +Henrietta +Hermelinda +Hien +Hiromi +Hoai +Ina +Irasema +Isabell +Isha +Iva +Jacinta +Jackelyn +Jamesha +Janese +Janisha +Janny +Jared +Javier +Jeanelle +Jene +Jenessa +Jenise +Jennafer +Jennine +Jennyfer +Jeremy +Jerusha +Jhoanna +Jilliane +Jimmy +Jin +Joanie +Joellen +Jolena +Jorge +Judi +Judie +Judit +Juli +Julio +Jullian +Kaley +Kamille +Kamryn +Kandie +Kandyce +Kao +Karah +Kareen +Kariann +Karisa +Karlie +Kasondra +Katina +Kaycee +Keira +Kellye +Kelsie +Keona +Keysha +Kimberli +Kirby +Kirin +Krisann +Kristiana +Krysti +Kylene +Lacresha +Ladawn +Lakenya +Lakeya +Lakia +Lane +Laquisha +Lashaunda +Lashay +Latia +Latoyia +Laurinda +Lawren +Leena +Lelani +Leonora +Lesa +Lesly +Leyla +Lilah +Liliann +Lilianna +Lin +Linette +Ling +Linnae +Lisbet +Lizzette +Lluvia +Lonie +Lonnie +Loraine +Loree +Loreen +Loriann +Lorinda +Luana +Lurdes +Lus +Luzelena +Ly +Lyndie +Lyssa +Machelle +Malena +Manisha +Marcus +Mariann +Maribeth +Marilynn +Marine +Marita +Marizol +Markisha +Marlin +Marybel +Mavis +Mayela +Mayumi +Mecca +Melva +Mi +Micole +Mila +Milena +Minh +Miracle +Missy +Myeisha +Nailah +Nakisha +Natosha +Nechama +Neelam +Nhi +Nhu +Nida +Nikita +Nila +Noor +Nou +Oliva +Olympia +Osiris +Peter +Phillip +Promise +Raeann +Raguel +Rahcel +Ramandeep +Rania +Rasheedah +Rebeka +Rebekka +Reema +Remi +Remy +Reshma +Rianna +Ronelle +Ronica +Rosangela +Rosann +Roseana +Roselia +Rosina +Ruthann +Ryanne +Sabra +Sabrian +Sallie +Salvador +Samara +Samatha +Sandie +Saran +Seanna +Seema +Selia +Serrina +Shabnam +Shaleen +Shalini +Shalynn +Shaneen +Shanette +Shanise +Sharae +Shareen +Sharhonda +Sharla +Sharmaine +Shatara +Shawana +Shawnda +Shawnta +Sheana +Sheela +Shelia +Sherrell +Shireen +Shivani +Shonta +Shonte +Sienna +Sindi +Sindy +Sirena +Song +Stacee +Staphanie +Stephannie +Sumer +Sunni +Taina +Tala +Tali +Tangela +Taniesha +Tarrah +Tashiana +Tenea +Tessie +Tien +Tiffanee +Tiffiney +Tiona +Toi +Tonja +Tracee +Tressa +Trinh +Trudy +Tyiesha +Valentine +Valeri +Valery +Veda +Venesa +Veronika +Vianca +Vina +Violetta +Vivianna +Vy +Xenia +Xia +Xochil +Ying +Yoanna +Youa +Zainab +Zonia +Jennifer +Jessica +Ashley +Nicole +Melissa +Sarah +Stephanie +Amanda +Elizabeth +Michelle +Christina +Heather +Vanessa +Crystal +Maria +Megan +Danielle +Amber +Tiffany +Laura +Rachel +Kimberly +Lauren +Amy +Rebecca +Andrea +Cynthia +Lisa +Erin +Veronica +Angela +Erica +Natalie +Monica +Kelly +Christine +Emily +Sara +Katherine +Shannon +Jacqueline +Diana +Jamie +Alicia +Erika +Nancy +Kristen +Lindsay +Mary +Patricia +Julie +Brittany +Kristin +Lindsey +Mayra +Sandra +Courtney +Samantha +Victoria +Brenda +Joanna +April +Allison +Jenna +Daisy +Cassandra +Kristina +Anna +Kathryn +Valerie +Katie +Linda +Monique +Ana +Claudia +Tara +Denise +Julia +Alexandra +Desiree +Wendy +Alexis +Candice +Kathleen +Angelica +Leslie +Holly +Catherine +Cristina +Cindy +Krystal +Adriana +Karen +Teresa +Melanie +Chelsea +Sabrina +Gabriela +Stacy +Gina +Rosa +Natasha +Evelyn +Meghan +Marissa +Jasmine +Susan +Brandi +Tracy +Sonia +Priscilla +Renee +Leah +Janet +Tanya +Jenny +Karina +Sheena +Lorena +Brandy +Nichole +Heidi +Stacey +Dana +Tamara +Katrina +Gloria +Guadalupe +Jillian +Brianna +Irene +Leticia +Tina +Alison +Sophia +Angelina +Theresa +Alejandra +Raquel +Cecilia +Deanna +Rachael +Caitlin +Martha +Marisol +Alma +Carmen +Carrie +Lacey +Bethany +Stefanie +Yvette +Krista +Morgan +Susana +Brooke +Kristine +Latoya +Margaret +Sandy +Karla +Maribel +Misty +Olivia +Diane +Melinda +Candace +Jaclyn +Anne +Regina +Sylvia +Janelle +Robin +Jeanette +Ruth +Yesenia +Carla +Grace +Caroline +Michele +Yvonne +Alisha +Marisa +Virginia +Hannah +Shawna +Pamela +Johanna +Melody +Liliana +Marie +Summer +Yolanda +Carolyn +Sharon +Jaime +Casey +Dominique +Esther +Ebony +Barbara +Alyssa +Deborah +Nadia +Briana +Christy +Nina +Miranda +Rachelle +Kara +Kelsey +Dawn +Rebekah +Rocio +Kendra +Molly +Naomi +Whitney +Audrey +Silvia +Esmeralda +Jacquelyn +Kristy +Bonnie +Robyn +Carly +Eva +Felicia +Rose +Elena +Marlene +Adrienne +Blanca +Charlene +Isabel +Helen +Ruby +Araceli +Brittney +Kari +Margarita +Meagan +Carolina +Krystle +Colleen +Suzanne +Lydia +Elisa +Alexandria +Ann +Norma +Marina +Jill +Roxanne +Serena +Ariana +Miriam +Rochelle +Cheryl +Connie +Amelia +Judy +Kelli +Ashlee +Bianca +Joy +Aimee +Griselda +Mallory +Lucia +Frances +Tabitha +Anita +Darlene +Lori +Paula +Annie +Breanna +Kate +Taylor +Annette +Eileen +Elaine +Trisha +Kathy +Brianne +Claire +Corina +Abigail +Kirsten +Kristi +Maritza +Tammy +Kayla +Shauna +Arlene +Jane +Antoinette +Cara +Donna +Elise +Hilary +Juliana +Randi +Alice +Angel +Carissa +Janice +Vivian +Beatriz +Carol +Judith +Kellie +Noemi +Cassie +Luz +Maricela +Shelby +Grisel +Jennie +Sheila +Genevieve +Irma +Christie +Rita +Elisabeth +Perla +Emma +Lorraine +Rosemary +Toni +Camille +Carina +Maira +Shana +Celia +Juanita +Justine +Joanne +Reyna +Kira +Autumn +Tasha +Bridget +Marilyn +Debra +Lizette +Alana +Jocelyn +Mindy +Nora +Sonya +Viviana +Lucy +Beth +Daniela +Hillary +Jasmin +Alisa +Katharine +Keri +Jessie +Marisela +Mandy +Tessa +Edith +Tiana +Yadira +Ashleigh +Stacie +Celina +Sofia +Mariana +Roxana +Savannah +Natalia +Ericka +Jenifer +Lillian +Meredith +Mia +Shelly +Traci +Angie +Celeste +Corinne +Rosanna +Laurel +Mercedes +Trista +Chanel +Janine +Joyce +Noelle +Shanna +Sierra +Laurie +Maureen +Myra +Taryn +Clarissa +Destiny +Gabrielle +Kelley +Athena +Debbie +Elsa +Janette +Olga +Charlotte +Julianne +Tanisha +Dianna +Gladys +Iris +Lena +Paola +Sasha +Tatiana +Graciela +Josephine +Lacy +Marcella +Sally +Shirley +Tawny +Tracey +Georgina +Joann +Kim +Tania +Katy +Adrianna +Alissa +Beverly +Haley +Jolene +Kasey +Leanne +Selina +Trina +Breanne +Cristal +Hilda +Mai +Melisa +Nadine +Nikki +Tonya +Aubrey +Jade +Chrystal +Alyson +Ellen +Latasha +Marquita +Terra +Belinda +Cathy +Christa +Christian +Lynette +Rosalinda +Sherry +Aurora +Jeannette +Maggie +Pauline +Shelley +Ariel +Kaitlin +Leanna +Lourdes +Marcela +Patrice +Anabel +Bernadette +Elvia +Hayley +Lesley +Lynn +Sheri +Antonia +Brandie +Jordan +Staci +Tricia +Angelique +Ingrid +Jean +Lisette +Tracie +Chantel +Charity +Chloe +Dolores +Lara +Paige +Tamika +Vicky +Allyson +Amie +Catalina +Cherie +Jana +Lea +Shayna +Tiffanie +Aileen +Cheri +Devon +Dorothy +Fatima +Katelyn +Roxanna +Shari +Venessa +Betty +Candy +Juana +Larissa +Daniella +Fabiola +Lily +Francine +Josefina +Magdalena +Michael +Salina +Audra +Brenna +Casandra +Dina +Jami +Jaqueline +Kendall +Kerry +Kristie +Maya +Melina +Susanna +Vanesa +Cortney +Elyse +Francesca +Kristal +Latisha +Lilia +Lyndsey +Rebeca +Reina +Selena +Aracely +Becky +Blair +Chandra +Clara +Janae +Jodi +Lana +Rene +Sydney +Delia +Jazmin +Jenelle +Joan +Anastasia +Catrina +Dulce +Faith +Janell +Kimberley +Maryann +Rosario +Sonja +Beatrice +Esperanza +Hope +Kacie +Karissa +Malia +Tabatha +Tera +Zoe +Alanna +Ashly +Deisy +Dora +Jackie +Mariela +Ryan +Bertha +Bobbie +Chelsey +Kimberlee +Luisa +Nicolette +Cameron +Elvira +Jeannie +Kaitlyn +Mariah +Pearl +Valeria +Violeta +Bridgette +Consuelo +Fallon +Gabriella +Gricel +Joana +Nataly +Nathalie +Ramona +Rhiannon +Rosalie +Cinthia +Dayna +Estela +Janna +Mara +Marlena +May +Phuong +Rhonda +Teri +Tiffani +Aisha +Christen +Doris +Elisha +Elissa +Emilia +Jeanine +Kassandra +Marta +Rosalia +Shayla +Asia +Davina +Jeanne +Leila +Lidia +Lissette +Lora +Roberta +Shaina +Ashlie +Daniel +Darcy +Delilah +Jacklyn +Julianna +Lakeisha +Leilani +Liza +Rosemarie +Sarina +Stella +Tia +Belen +Christopher +Eunice +Hollie +Leann +Leigh +Lizeth +Mackenzie +Mireya +Rosio +Sherri +Susie +Terri +Viridiana +Constance +Gwendolyn +Janel +Madeline +Marcia +Marianne +Meaghan +Paloma +Yasmin +Alondra +Arianna +Britney +Ciara +Corey +Danica +Jayme +Jody +Kerri +Lia +Talia +Tami +Valarie +Xochitl +Adrian +Alina +Cari +Cathleen +Desirae +Devin +Flor +Ginger +Keisha +Lizbeth +Loren +Mirna +Sophie +Andria +Bobbi +Callie +Chantal +Christin +Cori +Dena +Gillian +Jesica +Justina +Matthew +Noel +Rosie +Simone +Tess +Adrianne +Berenice +Breann +Evelin +Ivette +Jena +Jose +Lynda +Mari +Precious +Sheryl +Suzanna +Violet +Aja +Amalia +Ambar +Arielle +Claribel +Colette +David +Dianne +Francisca +Ivy +Julissa +Kali +Karin +Lacie +Lee +Lyndsay +Marian +Martina +Michaela +Tarah +Yuri +Aida +Anthony +Cassidy +Christiana +Dalila +Gricelda +Hazel +Imelda +Jamila +Johana +Lina +Marci +Marla +Peggy +Roseanna +Shasta +Socorro +Tawnya +Yajaira +Alaina +Angelita +Candis +Christi +Cory +Eloisa +Evangelina +Georgia +Glenda +Harmony +Kristyn +Liana +Loretta +Rosalba +Sarai +Serina +Alba +Bree +Brittani +Cherish +Deana +Gail +Janie +Juliet +Kandice +Kristian +Lynnette +Monika +Natali +Ofelia +Raven +Shawn +Trang +Yesica +Christal +Danelle +Darla +Estrella +Giselle +Helena +Latrice +Louise +Lupita +Marjorie +Maura +Rena +Stevie +Tamra +Terry +Thuy +Tiara +Adela +Anh +Antionette +Azucena +Charissa +Cheyenne +Cora +Corrie +Geneva +Joelle +June +Kyla +Lakisha +Leeann +Lilian +Lupe +Nereida +Rayna +Vicki +Abby +Ashely +Cecelia +Cherise +Corrina +Daphne +Deena +Denice +Domonique +Eleanor +Haydee +Iliana +Janessa +Jessika +Karrie +Lizet +Loni +Malissa +Mandi +Mellisa +My +Pricilla +Princess +Robert +Sherrie +Stefani +Tamar +Thao +Yanira +Yessica +Bernice +Celisse +Cody +Edna +Elia +Evette +Ilene +Kirstin +Krysta +Maegan +Marianna +Mellissa +Michell +Porsha +Rosana +Shameka +Sharlene +Sue +Suzette +Tameka +Tristan +Yuliana +Alesha +Alexa +Angeline +Annemarie +Annmarie +Brigitte +Cambria +Charmaine +Clare +Danae +Emilie +Hanna +Inez +Jason +Jazmine +Jeanna +Jenae +Jesse +John +Joseph +Kasandra +Latanya +Marsha +Marylou +Myrna +Nakia +Nelly +Siobhan +Therese +Tierra +Tori +Windy +Alycia +Alyse +Bailey +Bao +Betsy +Britni +Damaris +Elaina +Geraldine +Gretchen +Jeannine +Jodie +Joshua +Juliette +Kassie +Kathrine +Kenya +Kyle +Lila +Maryanne +Miesha +Mollie +Nellie +Nubia +Penny +Quiana +Richelle +Rosalina +Shara +Sondra +Tanesha +Ursula +Antonette +Brandon +Dalia +Deidre +Denisse +Eliza +Ivonne +Kylie +Lucinda +Lynsey +Malinda +Maxine +Micaela +Mirian +Mona +Niki +Paulina +Petra +Salena +Shea +Thu +Tyler +Zulema +Anya +Caitlyn +Cathryn +Chelsie +Corinna +Dania +Doreen +Eboni +Elana +Elva +Estella +Faviola +Gena +Jacquelin +Jonathan +Kacey +Karly +Keely +Kenisha +Kia +Kiana +Kylee +Mabel +Marcie +Mirella +Myesha +Nikole +Portia +Racheal +Rhea +Rosalva +Rosanne +Sheree +Sunshine +Thelma +Tianna +Adelina +Alia +Annabel +Brynn +Carlie +Celine +Chantelle +Corrine +Dara +Deidra +Florence +Hang +Heidy +Jaimie +Jeniffer +Jessi +Josie +Jovanna +Laila +Lindy +Linh +Linsey +Meghann +Mimi +Nanci +Nicholas +Pa +Pang +Priya +Rosita +See +Shantel +Sommer +Starr +Stephaine +Wendi +Yecenia +Ada +Adriane +Alexia +Alisia +America +Ani +Breana +Brook +Ciji +Ernestina +Eugenia +Evan +Flora +Francis +Hailey +Jackeline +Jenee +Jeri +Jesenia +Justin +Ka +Karyn +Mariko +Marysol +Meggan +Renae +Rina +Rosalind +Shanell +Sharonda +Star +Steven +Tasia +Tonia +Vannesa +Adria +Alejandrina +Ami +Andrew +Araseli +Bryanna +Coral +Deysi +Fawn +Giovanna +Gracie +Isaura +Jannette +Kandace +Kyra +Laci +Layla +Leonela +Louisa +Manuela +Mariam +Melodie +Minerva +Nayeli +Nichelle +Nicolle +Nisha +Paris +Porsche +Rosalyn +Rosamaria +Shanelle +Shena +Stephani +Tammie +Teela +Teresita +Unique +Venus +Vera +Annamarie +Ashli +Brandee +Bridgett +Brigette +Carey +Carley +Carli +Cherry +Corine +Cristin +Daniele +Danika +Gabriel +Guillermina +Ida +India +Jayne +Jeana +Jenessa +Joni +Kirby +Korina +La +Latonya +Loan +Lucila +Lucille +Luisana +Madeleine +Mariaelena +Marlen +Marlyn +Mildred +Mina +Nena +Nichol +Nidia +Nydia +Pilar +Rachell +Racquel +Raina +Reena +Rowena +Shamika +Shanae +Shannan +Shante +Shavon +Soledad +Sunny +Tabetha +Tammi +Tisha +Wanda +Adina +Aide +Alecia +Anika +Arcelia +Aubrie +Blythe +Brian +Candi +Carmelita +Casie +Cassondra +Cierra +Corie +Crista +Crystle +Dallas +Demetria +Enjoli +Hallie +Hanh +Huong +Iesha +Jannet +Jesus +Juan +Kandis +Karli +Katheryn +Kati +Katia +Kiley +Kristel +Lindsy +Liset +Lizabeth +Marika +Miguel +Nereyda +Patty +Reanna +Richard +Ronda +Roseann +Sahar +Sarita +Shanel +Shanika +Shaunna +Shira +Susannah +Susanne +Tiffiny +Trinity +William +Xiomara +Yessenia +Adam +Agnes +Alena +Anamaria +Baby +Billie +Carin +Carlos +Carmela +Chelsi +Clarice +Coleen +Cristine +Cristy +Cyndi +Danna +Dannielle +Denae +Dennise +Desire +Dominque +Eliana +Elida +Emilee +Evelina +Gisela +Hana +Indira +Jacquelynn +Janay +Janeth +Jenette +Jennafer +Jo +Kami +Karena +Kaylee +Kori +Maile +Mallorie +Marcy +Margo +Mariel +Marilu +Marion +Marivel +Mira +Monet +Moriah +Ngoc +Octavia +Phoebe +Raelene +Remy +Rikki +Sadie +Samira +Sandi +Tawni +Tenisha +Terese +Tosha +Trinidad +Uyen +Van +Vickie +Alex +Alexander +Alysia +Anel +Angelic +Anjelica +Asha +Aura +Brittny +Camilla +Candyce +Celena +Chanelle +Charisse +Cintia +Cristen +Delores +Denisha +Erlinda +Evita +Evonne +Falon +Felisha +Gladis +Ilana +Isela +Janina +Jenica +Jessenia +Jewel +Joleen +Jovana +Kayleen +Kevin +Kindra +Krysten +Krystin +Ladonna +Latosha +Lisbeth +Lizzette +Lorina +Maren +Marleen +Mika +Natashia +Neda +Nickole +Nohemi +Ronnie +Roseanne +Rubi +Sequoia +Shawnna +Stacia +Stephany +Stephenie +Taneisha +Teena +Viola +Yanet +Yoana +Zoila +Alexandrea +Andriana +Annabelle +Antonio +Ashlyn +Aubree +Ava +Beatris +Beronica +Caryn +Cassaundra +Concepcion +Danyelle +Deirdre +Deisi +Devina +Dinah +Echo +Elicia +Emerald +Eric +Evelia +Gemma +Genesis +Ha +Hien +Holli +Ines +Jaimee +James +Janee +Janett +Jeanie +Jennefer +Jerri +Jovita +Joycelyn +Juliane +Kala +Katelin +Kaycee +Kera +Lani +Leana +Lela +Lien +Loraine +Lorna +Maia +Margaux +Margie +Marguerite +Maricel +Noreen +Olympia +Paul +Priscila +Rhianna +Ronisha +Rosaura +Roxann +Savanna +Selene +Shanon +Teanna +Thea +Vannessa +Winnie +Yael +Alejandro +Alesia +Anais +Analisa +Annalisa +Ashlea +Ayesha +Blaire +Brie +Britt +Catharine +Chanda +Chastity +Cheree +Choua +Christel +Cruz +Daniell +Darci +Debora +Diamond +Elina +Ella +Elysia +Essence +Evangeline +Eve +Fanny +Faye +Fiona +Franchesca +Gayle +Gia +Hortencia +Isis +Jacquelyne +Janeen +Jayna +Jolie +Julieanne +Kacy +Katelynn +Katina +Kay +Kaylan +Kellyn +Kenna +Lakesha +Lanette +Lanisha +Leandra +Leonor +Lianna +Lilly +Lorie +Malisa +Misha +Nai +Rachele +Rae +Regan +Ria +Samara +Saundra +Shiloh +Taisha +Tonisha +Tova +Vianey +Xochilt +Yazmin +Adele +Alysha +Amparo +An +Anastacia +Angelia +Anissa +Anjuli +Annika +Arely +Ariella +Armida +Aurelia +Breeann +Britany +Caren +Carlee +Cassi +Chante +Charise +Charleen +Chiara +Chrissy +Cicely +Collette +Dawna +Daysi +Drew +Ebonie +Elisabet +Ester +Farrah +Gianna +Gilda +Greta +Helene +Jamee +Jammie +Janis +Jenell +Jeni +Jenine +Jenni +Jenniffer +Joey +Juliann +Julieta +Kamilah +Kendal +Keyana +Kiera +Kiersten +Kiran +Kortney +Kristle +Krystina +Lai +Laquisha +Lashonda +Leia +Lisamarie +Lorene +Lynne +Magda +Marybel +Mechelle +Mee +Mindi +Myisha +Nicki +Niesha +Oanh +Puja +Qiana +Quinn +Rafaela +Rashida +Raylene +Rheanna +Rosangela +Ruben +Scarlett +Scott +Shakira +Shandra +Shani +Shaunte +Shoshana +Susy +Tai +Tracee +Tristen +Tyesha +Valencia +Velvet +Verenice +Xochil +Yasmine +Yer +Yuridia +Zina +Abbey +Adelaida +Alessandra +Alishia +Allegra +Althea +Amada +Amberly +Analicia +Andra +Angelena +Anisha +Argelia +Austin +Bonita +Bonny +Brisa +Brittanie +Brittni +Bryn +Calli +Carisa +Carlene +Carole +Cathrine +Cecile +Cecily +Celene +Chantell +Chasity +Ciera +Contessa +Darcie +Dee +Deserie +Dionna +Dionne +Dung +Elsie +Enedina +Erendira +Eryn +Fernanda +Grissel +Herminia +Isabelle +Jacinda +Jackelyn +Jacquelene +Janene +Jaymie +Jeffrey +Jene +Jenise +Jennette +Jeremy +Joel +Joi +Josette +Julienne +Julio +Julisa +Kai +Kaila +Karie +Kattie +Kaylene +Kenia +Kerrie +Kimber +Kristan +Kyndra +Lakiesha +Lan +Larisa +Lashay +Latoyia +Leigha +Lenora +Lili +Liz +Lois +Lorelei +Lucero +Maranda +Marcelina +Marialuisa +Marielle +Mario +Martin +Mckenzie +Melia +Merissa +Merry +Mi +Micah +Misti +Nadya +Nanette +Nathan +Neha +Nelida +Nikia +Noor +Nuvia +Paulette +Penelope +Piper +Pooja +Porscha +Ryann +Samuel +Shanda +Shantelle +Sharron +Shawnee +Shereen +Shonda +Sindy +Skye +Soraya +Starla +Steffanie +Sulema +Suzy +Tamera +Tashawna +Tenesha +Thanh +Torrie +Toya +Tram +Tristin +Tuyet +Tyra +Vi +Zulma +Aaron +Aleesha +Aleta +Ali +Allana +Alysa +Anny +Ariane +Arica +Arlin +Breeanna +Brieann +Bryana +Cameo +Candelaria +Candida +Carmel +Cassey +Celenia +Charla +Chau +Chenoa +Cherisse +Chi +Christiane +Christianne +Cindia +Claudine +Codi +Colby +Cortnie +Cristian +Crystina +Danny +Darleen +Dayana +Deandra +Deja +Delmy +Denelle +Destinee +Devora +Donisha +Dyan +Dyana +Dyanna +Edie +Elodia +Erik +Gisel +Gregoria +Hector +Hoa +Huyen +Imani +Isabella +Ivory +Jacinta +Jacqulyn +Jaimi +Jamia +Jan +Janean +Jannelle +Jasmyn +Jenea +Jennine +Jesseca +Jina +Jonna +Jordana +Josefa +Joslyn +Jovan +Juli +Kaci +Kandi +Karlie +Kassi +Katarina +Kathie +Keana +Kelsi +Kelsie +Keturah +Kierstin +Kiesha +Kisha +Kourtney +Krystel +Kylene +Kymberly +Lashawn +Latesha +Leena +Leighann +Lesli +Letitia +Lilliana +Lillie +Lisset +Lissete +Logan +Lolita +Luis +Ly +Lyndsi +Macy +Mae +Magaly +Magen +Maha +Mahogany +Malika +Malina +Malorie +Maricella +Mariella +Marily +Marlina +Marquisha +Marya +Maryrose +Matilde +Meagen +Mele +Melonie +Melynda +Mercy +Michel +Milagros +Milissa +Miracle +Monic +Myeisha +Myriah +Nallely +Nastassia +Nathaly +Navdeep +Nia +Ninfa +Noelia +Nova +Nycole +Nyssa +Peter +Phyllis +Polly +Prisma +Racine +Raeann +Rana +Rebeka +Renita +Roselyn +Roya +Samatha +Sapna +Shalina +Shane +Shanee +Shaniece +Shannel +Sharee +Shawnte +Shay +Shelia +Shyla +Sidney +Sintia +Tana +Tanika +Tashina +Tenaya +Thomas +Tiffaney +Tiffeny +Timothy +Victor +Vilma +Winter +Yahaira +Yen +Youa +Yury +Acacia +Afton +Aleah +Alise +Allie +Alona +Alvina +Amberlee +Anamarie +Anneliese +Apryl +Areli +Ariadna +Arin +Arleen +Arlette +Ashanti +Ashlei +Ashlynn +Ashton +Audrea +Audrina +Aviva +Azalia +Bambi +Bessie +Bria +Brittnie +Cali +Camelia +Cami +Candie +Candise +Carleen +Carlisha +Carlotta +Carolynn +Celestina +Chanell +Channel +Charis +Charles +Chelsy +Christianna +Cinnamon +Codie +Corrin +Courtnie +Cyndy +Daisey +Dani +Danisha +Danyel +Daria +Deanne +Debby +Delfina +Dennis +Deserae +Destini +Dixie +Dolly +Domenica +Dusty +Edelmira +Eden +Elba +Elspeth +Ember +Eveline +Georgette +Giana +Ila +Irais +Ivania +Jameelah +Janea +Janira +Jeanmarie +Johnna +Joselyn +Kaili +Kallie +Kanisha +Karis +Karisa +Karolyn +Kasie +Kassy +Katya +Keiko +Keli +Keona +Keren +Kiara +Kirstie +Kyleen +Lacee +Laquita +Laronda +Lashawna +Laticia +Latricia +Latrisha +Layne +Leona +Leslee +Lesly +Letisia +Linnea +Linsay +Liseth +Lissa +Lizett +Loriann +Lyndsy +Maegen +Mallori +Mandeep +Mariadelcarmen +Mariaisabel +Marilee +Mariza +Mark +Markisha +Marnie +Maryn +Melodee +Melodi +Meryl +Michal +Mila +Minh +Monette +Natalee +Natosha +Nicholle +Nicola +Nicolina +Nita +Page +Payal +Porche +Raelynn +Rashell +Rashelle +Rebbecca +Renata +Risa +Romina +Romy +Ronika +Rosy +Sabina +Sage +Saira +Sallie +Sandeep +Santana +Sascha +Savanah +Scarlet +Serene +Shamara +Sharhonda +Sharla +Shawnta +Shayne +Shellie +Sheng +Shenna +Sherice +Sherise +Shirin +Sindia +Sirena +Soila +Stefany +Sterling +Tali +Talin +Tamesha +Tamisha +Tammara +Tanaya +Taneka +Tatianna +Tawana +Tu +Tyeisha +Tyisha +Valentina +Vaness +Veronique +Wilma +Adaline +Addie +Agustina +Aime +Alannah +Aleece +Aline +Alivia +Amal +Amberle +Ambra +Andre +Angeles +Angelika +Angella +Anjali +Annalee +Aria +Arianne +Arlyn +Astrid +Asusena +Autum +Ayla +Benita +Berta +Bethanie +Bettina +Bobby +Brieanna +Brittaney +Bronwyn +Brynne +Cailin +Calista +Camile +Carlota +Carlyn +Carmina +Carolann +Catarina +Cendy +Chad +Charlette +Charlie +Chavon +Chaya +Clarisse +Concha +Corin +Dale +Danita +Danitza +Danya +Danyale +Darah +Darlyn +Dawnelle +Daysha +Deann +Delila +Delina +Denesha +Der +Derek +Desarae +Deseree +Devan +Devyn +Dione +Edward +Elda +Eleni +Elexis +Elidia +Elizebeth +Elma +Emelia +Emely +Emiko +Enriqueta +Ericca +Erinn +Felicity +Felisa +Francisco +Garrett +Genna +Gennifer +Genoveva +Geovanna +Griselle +Grizel +Honey +Hong +Ileana +Ina +Jacalyn +Jacey +Jackelin +Jaclynn +Jaquelyn +Jazzmine +Jenice +Jessyca +Jonell +Jonelle +Josephina +Josue +Julieann +Kaela +Kaelyn +Kailey +Kaleena +Kaley +Kalyn +Kanika +Karine +Karri +Katey +Kathryne +Katlyn +Kayle +Kaylie +Kaylin +Kecia +Keeley +Kelle +Kellee +Kendyl +Kenyatta +Kerstin +Keyanna +Keyonna +Kianna +Kieu +Kimberlie +Kimberlina +Kimbra +Kimiko +Kiri +Kolina +Korin +Kristiana +Krystyna +Lakeshia +Laquesha +Laquinta +Larhonda +Latia +Latrina +Leeanna +Letisha +Liane +Lianne +Liberty +Liesl +Linette +Livia +Llesenia +Lluvia +Luciana +Luna +Lus +Lynnae +Lyssa +Madison +Madonna +Mandie +Manuel +Maral +Marbella +Marcus +Mariadejesus +Maricruz +Marin +Maritsa +Marizol +Marlin +Marlo +Marly +Marquitta +Marrisa +Maryam +Marybeth +Maryelizabeth +Marylin +Mckenna +Melaine +Melani +Melany +Melyssa +Michaella +Mikaela +Mikayla +Miya +Myeshia +Narine +Nastassja +Nechama +Nery +Neysa +Nga +Nichola +Nicholette +Nicky +Nicol +Olimpia +Ophelia +Oralia +Oriana +Patience +Patrick +Quanisha +Raeanne +Rafael +Randee +Rani +Ricci +Ricki +Romana +Roni +Roslyn +Saba +Salma +Salvador +Sana +Sandee +Sandie +Santina +Sarena +Sarrah +Sean +Seana +September +Shalene +Shalyn +Shanta +Sharmaine +Shaun +Shauntel +Shavonne +Shawndra +Shawntel +Sherilyn +Sherryl +Shivani +Shoua +Simona +Somer +Stasia +Stephannie +Stormy +Sully +Surina +Suzana +Suzie +Tahnee +Tam +Tamela +Taren +Tawney +Tegan +Tereza +Teryn +Tesha +Thien +Tifany +Tiffney +Tiphanie +Tory +Trena +Trevor +Twyla +Valene +Vivianna +Vy +Willa +Xee +Yalitza +Yasmeen +Yuki +Zenaida +Zoraida +Abelina +Adelita +Adena +Adia +Adrien +Adrina +Aidee +Aisling +Aislinn +Akemi +Akilah +Akira +Alane +Alea +Alethea +Alida +Allisa +Almarosa +Alva +Amara +Ameerah +Amita +Ammie +Anabell +Anabella +Anai +Analilia +Analise +Andres +Anja +Annabell +Aretha +Barbie +Barrie +Bella +Berenise +Bo +Brent +Briann +Brieana +Briseida +Brittan +Brittnee +Callista +Camila +Candra +Carmella +Cassy +Cesilia +Chan +Chana +Channon +Chase +Chavonne +Cherelle +Cherice +Cheyanne +Cheyenna +China +Chiquita +Chris +Christena +Christinamarie +Claudette +Cleo +Colin +Cristie +Crysta +Dahlia +Daina +Daisi +Danesha +Danyell +Darcell +Deedra +Delena +Della +Denee +Denia +Denielle +Denita +Dian +Dinora +Dominic +Donielle +Dori +Dottie +Dru +Dylan +Earlene +Ebone +Eboney +Ednita +Elan +Elishia +Eman +Emmy +Ena +Engracia +Enid +Ernestine +Fallyn +Farah +Fatimah +Fernando +Freda +Genie +Ginny +Grisell +Gwen +Hali +Harmonie +Herlinda +Hermelinda +Ilse +Imogene +Indra +Isa +Jacqualyn +Jacquline +Jamilah +Jannel +Jannell +January +Jeanelle +Jenai +Jenay +Jenie +Jennilee +Jerilyn +Jerry +Jessamyn +Jesscia +Jimena +Joannie +Jocelynn +Joella +Johna +Joline +Jolynn +Jorge +Joscelyn +Julee +Kacee +Kalena +Kamisha +Kandy +Karah +Kariann +Karilyn +Karlee +Karley +Kassidy +Kateri +Kathyrn +Kaycie +Keanna +Keesha +Keiana +Keila +Kenneth +Keosha +Keriann +Keyona +Khristine +Kimberely +Kimberli +Kitty +Kiyoko +Korey +Kory +Kristene +Kristopher +Kymberlee +Lachelle +Lacresha +Ladawn +Laine +Lakenya +Lanika +Laraine +Lashae +Lashanda +Lashell +Lauri +Lavinia +Lavonne +Le +Lecia +Leeana +Leeanne +Lesa +Leyla +Ligia +Lilianna +Lindsie +Linna +Lisbet +Lisett +Lisha +Lonnie +Lorin +Lorinda +Lucina +Lusia +Magan +Magdalene +Maggi +Malerie +Marcelle +Margot +Marietta +Marilou +Marilynn +Marlana +Marquia +Marti +Maryjane +Meena +Meera +Megumi +Mehgan +Meiling +Meka +Mesha +Micole +Miki +Miko +Mitzi +Mya +Nadja +Naima +Najah +Nakeisha +Nannette +Natassha +Natassia +Natividad +Necole +Nerissa +Ngan +Nhi +Nhu +Niccole +Nickie +Nikita +Nila +Noelani +Noemy +Nou +Nyesha +Nyla +Pamala +Patrica +Patrisia +Porcha +Quianna +Rachelann +Radhika +Raechel +Raelyn +Raul +Rayanne +Reanne +Rebekka +Reem +Rhoda +Ricardo +Rima +Ronit +Rosalynn +Roselynn +Rosetta +Roxane +Ruthann +Sabra +Santa +Sarha +Saul +Savina +Seanna +Seema +Sergio +Seth +Shaena +Shala +Shalonda +Shanay +Shanise +Shanita +Shannah +Shantell +Sharita +Sharleen +Sheela +Shemika +Sherita +Sherrell +Shiela +Shireen +Shona +Shonna +Sivan +Song +Sophear +Sparkle +Starkisha +Starlene +Steffani +Steffany +Stehanie +Stepanie +Stephine +Stevi +Sujey +Sumer +Sun +Suzan +Suzzette +Sylvana +Tabbatha +Takara +Taleen +Talina +Talya +Tanna +Taralyn +Taran +Tarin +Tashia +Tavia +Taya +Temeka +Terah +Teressa +Theodora +Thy +Tinesha +Toi +Tomasa +Tommie +Torey +Truc +Tylene +Tynisha +Valeri +Vallerie +Vaneza +Velma +Verna +Veronika +Willie +Xenia +Xia +Yaminah +Yeni +Ying +Yizza +Zabrina +Zanetta +Zena +Jessica +Jennifer +Ashley +Amanda +Nicole +Stephanie +Melissa +Elizabeth +Christina +Sarah +Michelle +Vanessa +Heather +Megan +Maria +Laura +Crystal +Amber +Danielle +Rachel +Lauren +Brittany +Kimberly +Tiffany +Amy +Rebecca +Andrea +Sara +Erica +Veronica +Cynthia +Jamie +Natalie +Erin +Lisa +Monica +Angela +Katherine +Emily +Samantha +Nancy +Kelly +Christine +Diana +Jacqueline +Shannon +Kristen +Alicia +Erika +Patricia +Victoria +Allison +Mary +Mayra +Sandra +Brenda +Julie +Kristina +Lindsay +Krystal +Courtney +Jenna +Joanna +Lindsey +Valerie +Katie +Cassandra +Anna +Kristin +Kathryn +Cindy +April +Monique +Claudia +Ana +Tara +Denise +Linda +Desiree +Cristina +Wendy +Adriana +Angelica +Alexandra +Holly +Julia +Daisy +Kathleen +Priscilla +Catherine +Chelsea +Leslie +Karen +Evelyn +Stacy +Candice +Jasmine +Gabriela +Sabrina +Teresa +Katrina +Nichole +Dominique +Caitlin +Natasha +Gina +Rosa +Tanya +Marissa +Meghan +Krystle +Melanie +Janet +Guadalupe +Brittney +Alexis +Lorena +Leticia +Raquel +Renee +Alison +Tina +Sonia +Felicia +Jenny +Karina +Marisol +Tracy +Leah +Whitney +Yesenia +Alyssa +Dana +Susan +Martha +Brandy +Angelina +Rachael +Brianna +Karla +Tamara +Carla +Stacey +Gloria +Candace +Jeanette +Sheena +Brooke +Alejandra +Jillian +Brandi +Sophia +Heidi +Johanna +Theresa +Alma +Morgan +Yvette +Jaclyn +Margaret +Irene +Maribel +Pamela +Carmen +Deanna +Grace +Janelle +Liliana +Susana +Melinda +Sharon +Casey +Cecilia +Krista +Bianca +Carrie +Ruth +Juliana +Lacey +Yvonne +Diane +Kristine +Robin +Ashlee +Bethany +Isabel +Mallory +Rocio +Deborah +Hannah +Marisa +Yolanda +Sandy +Esmeralda +Esther +Olivia +Stefanie +Marisela +Sylvia +Anne +Naomi +Blanca +Summer +Virginia +Marlene +Shawna +Carolyn +Meagan +Marie +Jaime +Kara +Molly +Alisha +Barbara +Jacquelyn +Roxanne +Kristy +Misty +Regina +Silvia +Caroline +Latoya +Maricela +Rebekah +Colleen +Michele +Norma +Audrey +Carolina +Christy +Rachelle +Alexandria +Elena +Eva +Kelli +Margarita +Melody +Kelsey +Ariana +Aimee +Claire +Elisa +Araceli +Justine +Lucia +Rose +Taryn +Helen +Jasmin +Carly +Bonnie +Breanna +Hilary +Trisha +Angel +Kendra +Miranda +Nina +Marina +Annie +Kari +Tabitha +Kristi +Briana +Kayla +Adrienne +Abigail +Ruby +Sheila +Kellie +Eileen +Lydia +Suzanne +Jill +Amelia +Arlene +Judy +Maritza +Ebony +Elaine +Katelyn +Taylor +Annette +Camille +Darlene +Cassie +Cheryl +Elisabeth +Hillary +Jane +Charlene +Haley +Frances +Kate +Alana +Miriam +Ann +Serena +Tatiana +Shauna +Brianne +Joy +Lorraine +Dawn +Edith +Robyn +Donna +Lizette +Rochelle +Maira +Savannah +Lori +Kathy +Nadia +Paula +Autumn +Charlotte +Elise +Griselda +Carissa +Daniela +Emma +Judith +Noemi +Carina +Kaitlin +Connie +Luz +Vivian +Genevieve +Mercedes +Roxana +Kirsten +Alice +Britney +Cara +Corina +Ashleigh +Beatriz +Gabrielle +Hayley +Lucy +Antoinette +Sierra +Katharine +Marilyn +Tammy +Anita +Carol +Jeannette +Jessie +Yadira +Jocelyn +Julianne +Janette +Jenifer +Laurel +Rosemary +Bridget +Joyce +Rita +Ericka +Meredith +Joanne +Laurie +Natalia +Shana +Mariana +Violeta +Alissa +Debra +Janice +Sally +Tania +Elyse +Reyna +Tasha +Christie +Myra +Nora +Juanita +Lillian +Mai +Shelly +Viviana +Athena +Cathy +Noelle +Shelby +Valeria +Sherry +Sofia +Stacie +Angie +Aubrey +Shirley +Celia +Jazmin +Destiny +Gladys +Lena +Perla +Sasha +Cristal +Josephine +Leanne +Mandy +Randi +Ariel +Celeste +Kira +Nikki +Shanna +Christa +Irma +Rosanna +Jennie +Kaitlyn +Toni +Tanisha +Corinne +Jade +Dianna +Graciela +Melisa +Mia +Adrianna +Kelley +Olga +Sonya +Bernadette +Gabriella +Joana +Latasha +Traci +Elvia +Katy +Kasey +Michaela +Mindy +Paola +Clarissa +Dolores +Jordan +Chrystal +Iris +Lidia +Lourdes +Paige +Staci +Ellen +Hilda +Julianna +Allyson +Fabiola +Janine +Tricia +Brandie +Breanne +Lara +Tessa +Celina +Chanel +Cherie +Hope +Kim +Kristie +Lacy +Lesley +Tiana +Betty +Christian +Debbie +Dorothy +Francesca +Jayme +Micaela +Michael +Nadine +Chantel +Tonya +Aurora +Brenna +Casandra +Lily +Madison +Terra +Vanesa +Bertha +Cortney +Jena +Kassandra +Lynn +Maggie +Marcela +Tiffani +Alisa +Catalina +Daniella +Jodi +Kristal +Noel +Salina +Antonia +Beatrice +Charity +Chelsey +Elsa +Josefina +Maryann +Shayna +Yuliana +Francine +Larissa +Lisette +Anabel +Jolene +Lissette +Rebeca +Alyson +Angelique +Georgina +Keri +Leanna +Selena +Ashlie +Ashly +Faith +Janae +Jean +Kerry +Pauline +Amie +Beth +Blair +Clara +Delia +Jackie +Jami +Jaqueline +Kimberley +Lynette +Maureen +Reina +Shelley +Alina +Bridgette +Desirae +Krystina +Ramona +Vicky +Brittani +Chloe +Devon +Jana +Juana +Lyndsey +Mariela +Maya +Tawny +Aileen +Aracely +Cassidy +Dulce +Tiffanie +Belinda +Fatima +Rhiannon +Rosalinda +Roxanna +Sheri +Christopher +Domonique +Jacklyn +Latisha +Rosario +Talia +Yasmin +Cinthia +Daniel +Esperanza +Francisca +Patrice +Ryan +Tracey +Trista +Venessa +Alondra +Dina +Ingrid +Jody +Luisa +Melina +Sydney +Tamika +Catrina +Leilani +Marcella +Marlena +Nataly +Nicolette +Roberta +Anastasia +Doris +Ivy +Joann +Kyla +Lilia +Marianne +Rhonda +Sarai +Audra +Becky +Beverly +Christin +Devin +Eunice +Justina +Leila +Rosalie +Sophie +Tabatha +Cheyenne +Christen +Dora +Giselle +Kerri +Lana +Leann +Lora +Nathalie +Richelle +Rosio +Sade +Selina +Tiara +Yajaira +Adrianne +Bailey +Dalia +David +Lakeisha +Lizeth +Pearl +Shari +Susanna +Zoe +Adrian +Candy +Cori +Ginger +Gwendolyn +Jeanine +Raven +Shaina +Trina +Alanna +Danica +Joelle +Lea +Madeline +Mariah +Meaghan +Arianna +Belen +Berenice +Dena +Hailey +Jenelle +Karissa +Kendall +Lizbeth +Marcia +May +Natali +Tera +Teri +Asia +Bobbie +Caitlyn +Danelle +Dominque +Edna +Eleanor +Estela +Jazmine +Keisha +Magdalena +Shawn +Sonja +Betsy +Chandra +Colette +Consuelo +Darcy +Delilah +Elvira +Hazel +Ivette +Joan +Krysta +Rene +Terri +Tracie +Jeanne +Julissa +Kimberlee +Lina +Mellissa +Rosie +Ciara +Janell +Janie +Jesse +Kandice +Kristyn +Marta +Precious +Rosemarie +Stella +Tia +Valarie +Amalia +Arielle +Ashely +Brigitte +Cheri +Constance +Elisha +Evelin +Julieta +Mackenzie +Marquita +Shantel +Shayla +Tami +Corey +Elissa +Eliza +Emilia +Fallon +Gretchen +Lynda +Lyndsay +Maegan +Meghann +Pricilla +Alba +Geraldine +Imelda +Jose +Mireya +Mirna +Susie +Yessenia +Aja +Britni +Chantelle +Elva +Juliet +Kali +Kenya +Liza +Malia +Mariel +Marjorie +Marla +Minerva +Ofelia +Sarina +Sherri +Suzette +Abby +Brittni +Cherish +Christal +Cierra +Geneva +Hollie +Juliette +Kylie +Mirella +Nereida +Tarah +Ursula +Bernice +Bree +Corinna +Dayna +Jaimie +Jeannie +Johana +Kacie +Kiana +Loren +Lucero +Nelly +Savanna +Shante +Vannessa +Yanira +Aisha +Anais +Andria +Annabel +Annemarie +Brittny +Candis +Deidre +Emilie +Faviola +Iliana +Kacey +Kristian +Leigh +Mandi +Nia +Rosalva +Stephany +Suzanna +Yuri +Aida +Alaina +Andrew +Anthony +Breana +Gillian +Jamila +Janessa +Jessika +Karin +Kyle +Lee +Loretta +Porsha +Rosaura +Tamra +Alyse +Ashli +Cassondra +Cecelia +Chantal +Coral +Denice +Flor +Hanna +Helena +James +Jenae +Kia +Lia +Lilian +Linsey +Mara +Marcie +Marsha +Mikaela +Monika +Myrna +Rikki +Rosalyn +Sheryl +Siobhan +Tori +Valentina +Anh +Callie +Deana +Denisse +Elaina +India +Janna +Jeanna +Lani +Martina +Maura +Mona +Nicolle +Paulina +Princess +Raylene +Renae +Rosalba +Rosalia +Stevie +Tasia +Viridiana +Yesica +Alexander +Alia +Anjelica +Annamarie +Aubree +Cari +Cherise +Christi +Corrine +Cory +Crystle +Dannielle +Davina +Desire +Eric +Estrella +Giovanna +Glenda +Grecia +Ilene +Jeniffer +Jenniffer +Joseph +Josie +Kirstin +Lila +Lupe +Malissa +Marylou +Nikole +Paris +Racheal +Sadie +Serina +Shanae +Tawnya +Vicki +Angeline +Brittanie +Cameron +Chanelle +Cora +Corrina +Cristine +Denisha +Flora +Harmony +Inez +Isela +Ivonne +Jacquelynn +Janel +Jesica +Joshua +Kori +Mabel +Mollie +Paloma +Porsche +Shanika +Tamar +Teena +Terry +Tierra +Xiomara +Ada +Ambar +Anamaria +Bobbi +Carmela +Darla +Deanne +Dianne +Emerald +Eugenia +Hana +Linh +Lizet +Louise +Marcy +Mari +Mariaelena +Marilu +Roseanna +Sean +Sharlene +Simone +Stacia +Stefani +Tahnee +Tess +Xochitl +Adela +Alycia +America +Ariane +Breann +Cathryn +Charmaine +Corie +Cristy +Dalila +Daphne +Deisy +Gianna +Grisel +Janett +Jodie +John +June +Kaylee +Kayleigh +Keely +Kristan +Krystin +Laci +Lakisha +Latrice +Leeann +Liana +Madonna +Magen +Mallorie +Marian +Myesha +Octavia +Rosanne +Tristan +Yessica +Corrie +Crista +Damaris +Deena +Francis +Gail +Isis +Jaimee +Jannette +Kaila +Karyn +Leandra +Lynsey +Marysol +My +Nichelle +Nydia +Peggy +Rena +Richard +Robert +Sheree +Stephani +Alessandra +Alexa +Ami +Azucena +Brandon +Brigette +Britany +Cody +Cristin +Deandra +Deidra +Eboni +Edlin +Elida +Estella +Evangelina +Evette +Florence +Gena +Georgia +Jannet +Jeannine +Jessenia +Jesus +Joleen +Juliann +Kacy +Kasandra +Kiersten +Ladonna +Latanya +Leonela +Linnea +Liset +Lupita +Mariam +Maxine +Pang +Phoebe +Rhea +Selene +Shellie +Sondra +Stephaine +Steven +Sue +Tashina +Therese +Tyler +Alena +Alva +Alysha +Anika +Annmarie +Brandee +Brian +Brittnie +Brynn +Christiana +Clare +Danae +Debora +Dennise +Diamond +Elia +Elysia +Eve +Gabriel +Gricelda +Ilana +Indira +Jacquelin +Jonathan +Keshia +Kourtney +Krysten +Lisbeth +Lizett +Lucila +Marianna +Mariko +Marlen +Matthew +Meggan +Nakia +Porscha +Rosana +Sahar +Shira +Sommer +Thuy +Trang +Valencia +Van +Vickie +Violet +Alecia +Alesha +Ali +Angelita +Brook +Bryanna +Candi +Carlee +Charisse +Cyndi +Dani +Danyelle +Guillermina +Ida +Karli +Kassie +Kathrine +Kenisha +Lacie +Lilliana +Lizzette +Louisa +Lucille +Luis +Magali +Maile +Manuela +Marci +Maryanne +Mercy +Mimi +Nanci +Nereyda +Penny +Petra +Raina +Reanna +Shasta +Shawnte +Socorro +Thanh +Unique +Vy +Adria +Ani +Antonette +Anya +Ashton +Aurelia +Brieanna +Carlie +Cathleen +Celenia +Chante +Cristen +Deirdre +Eden +Elana +Elisabet +Elsie +Farrah +Felisha +Fiona +Gisela +Jayne +Jesenia +Karrie +Katheryn +Kenia +Kevin +Kirby +La +Layla +Lucinda +Mellisa +Miesha +Monet +Nellie +Nichol +Nidia +Pa +Phylicia +Priya +Racquel +Roseann +Rowena +Shavon +Shea +Soledad +Tawni +Tyra +Xochilt +Zoila +Alexia +Alysia +Bettina +Brittaney +Candyce +Carlene +Claribel +Dania +Dara +Elba +Ella +Eloisa +Erinn +Holland +Holli +Jackeline +Jaclynn +Jason +Jaymie +Jeanie +Jenessa +Jovanna +Justin +Kaci +Kady +Kathryne +Kati +Kaylin +Keli +Kristle +Kymberly +Lesly +Margie +Margot +Nicola +Noreen +Rhianna +Rina +Roseanne +Saira +Salena +Santana +Sequoia +Sheng +Sherrie +Shoshana +Star +Tammie +Teela +Thao +Tianna +Timothy +Tosha +Vera +Verenice +Yecenia +Yoana +Zahra +Zulema +Aide +Alexandrea +Alisia +Annalisa +Antionette +Araseli +Arely +Ashlea +Astrid +Ava +Bao +Beatris +Breeann +Casie +Chelsie +Cheree +Concepcion +Denae +Doreen +Drew +Elizabet +Enedina +Eryn +Evelia +Fanny +Fernanda +Genesis +Ha +Heidy +Janee +Janeen +Janis +Jessi +Juan +Julieann +Kelsie +Leana +Lilly +Lissa +Lisset +Loni +Ly +Lynne +Lynnette +Madeleine +Maia +Malorie +Maranda +Maren +Miguel +Mina +Misti +Nayeli +Neda +Nicholas +Patty +Phuong +Pilar +Reena +Roxane +Rubi +Shamika +Shani +Shanice +Shannan +Shara +Sharde +Shera +Sirena +Stephenie +Teresita +Wanda +Xenia +Yer +Adele +Adriane +Alex +Amina +Arcelia +Areli +Ashlyn +Aubrie +Ayesha +Beronica +Berta +Carey +Carley +Cassaundra +Charde +Chasity +Chela +Ciera +Colby +Deysi +Gladis +Herlinda +Hortencia +Ileana +Janeth +Jeana +Jonelle +Ka +Kaela +Kaley +Kandace +Kandis +Karisa +Karly +Katelynn +Kendal +Kyra +Lakeshia +Letisia +Lianna +Ligia +Lindsy +Lindy +Malinda +Marion +Merry +Michal +Niki +Paulette +Portia +Prisma +Rayna +Rosalind +Rosamaria +Ryann +Samara +Seanna +Shanda +Shanelle +Shena +Shirin +Tameka +Tonisha +Tran +Trinity +Tynisha +Vanity +Yazmin +Zena +Aaron +Adelina +Alejandro +Allegra +Alona +Antonio +Billie +Blaire +Brett +Bridgett +Cassey +Celine +Charissa +Charles +Cydney +Dallas +Daniele +Danna +Darci +Daryl +Erlinda +Ernestina +Ester +Evangeline +Fawn +Gayle +Genna +Halley +Hallie +Haydee +Isabelle +Ivory +Jan +Janay +Jeffrey +Jesseca +Julian +Kala +Kasie +Katey +Kaycee +Kellyn +Kindra +Laila +Laquisha +Laquita +Latosha +Lauryn +Lenora +Leonor +Lilibeth +Lorie +Magda +Marguerite +Marlyn +Maryam +Mele +Melodie +Mildred +Nisha +Phyllis +Poonam +Priscila +Randy +Rebecka +Saundra +Shala +Shanel +Shanell +Shardae +Shaunte +Shawntae +Shenna +Shyla +Sienna +Skye +Sparkle +Starr +Sunny +Tashia +Tatianna +Vannesa +Wendi +Yara +Yury +Abbey +Afton +Alishia +Allie +Amara +Analicia +Anamarie +Anel +Bessie +Blythe +Brie +Camilla +Caren +Carole +Chana +Chanell +Charleen +Chris +Clarice +Collette +Delfina +Elisia +Elyssa +Gema +Gracie +Hanh +Isaura +Jamee +Jammie +Jene +Jeni +Jenilee +Jennafer +Jenni +Jeri +Joselyn +Katelin +Kiley +Kimberlie +Kristel +Kylee +Lashawn +Leia +Letisha +Lien +Liz +Mallori +Marivel +Marybel +Meagen +Mercedez +Michell +Mirian +Natashia +Nubia +Paul +Rachele +Racine +Rae +Raelene +Rashida +Ricci +Rosalina +Sandi +Sarita +Scarlett +Shanon +Shantell +Sharron +Shavonne +Shayne +Shoua +Starla +Tanesha +Tayler +Tiffini +Trinidad +Venus +Adina +Agnes +Ahsley +Amparo +Analisa +Annabelle +Annamaria +Arleen +Austin +Ayla +Breeanna +Bria +Brielle +Brisa +Bryan +Cali +Cambria +Carli +Caryn +Cassi +Cayla +Celena +Cendy +Cherilyn +Choua +Christel +Cinthya +Cintia +Cyrstal +Danette +Daniell +Danika +Dayana +Deann +Della +Deseree +Dustin +Dusty +Ebonie +Elicia +Ermelinda +Evelina +Evonne +Gemma +Holley +Iesha +Jacquline +Janina +Jannett +Jenette +Jeremy +Jo +Jonna +Jorge +Joslyn +Jovan +Juliane +Kalyn +Kami +Katina +Kay +Kaylyn +Keena +Kellee +Kerrie +Korin +Korina +Krystel +Lakesha +Lakiesha +Lanette +Latonya +Lela +Leona +Lisett +Lizabeth +Lola +Lucerito +Lyndsie +Magaly +Marbella +Margo +Marika +Mario +Markisha +Markita +Matilde +Mckenna +Merissa +Micah +Michela +Nastassia +Nastassja +Nathaly +Nohemi +Penelope +Renata +Reva +Romina +Roya +Ruben +Sabina +Samatha +Samuel +Savanah +Shalene +Shameka +Shane +Shantelle +Shawntel +Shiela +Sunshine +Susanne +Susy +Tamera +Tana +Tanika +Thu +Vilma +William +Yahaira +Alyce +Alysa +Amira +Anastacia +Anisha +Anjali +Annika +Anny +Arianne +Arlette +Aryn +Avery +Blake +Bryana +Carleen +Catharine +Cecily +Cesilia +Chanda +Chantell +Cherry +China +Coleen +Corena +Cristian +Cruz +Danya +Danyell +Dasha +Delores +Demetria +Desarae +Destinee +Dinah +Dionna +Dung +Erendira +Estephanie +Evan +Hoa +Hong +Jannie +Jaquelyn +Jeanelle +Joanie +Joi +Josefa +Josephina +Josette +Kadie +Kaelyn +Karis +Katlyn +Kaylene +Kenna +Kimiko +Kyndra +Lanae +Lashonda +Leena +Leighann +Lisandra +Loan +Lorina +Lorissa +Mao +Marcelina +Marilou +Martine +Maryjane +Mechelle +Melany +Melony +Michel +Milena +Milissa +Nanette +Nicki +Nickole +Patti +Rachell +Raeanne +Raelynn +Randa +Ronisha +Rosita +Sacha +See +Shabnam +Shanay +Sharina +Shelli +Sherilyn +Shonte +Soraya +Suzie +Tabetha +Takisha +Tamesha +Taneisha +Taren +Tarrah +Tawnie +Theodora +Tonia +Torrey +Tory +Tracee +Tressa +Valorie +Vi +Windy +Agustina +Alejandrina +Amada +Amanada +Angelic +Angelika +Anissa +Apryl +Ashlei +Aundrea +Aziza +Baby +Benjamin +Blia +Bonny +Britt +Brittainy +Cami +Carlos +Celestina +Celisse +Channing +Charis +Charlie +Chau +Chi +Christiane +Coreen +Crystalyn +Crystina +Dahlia +Daisey +Danisha +Deisi +Deniece +Deserie +Destiney +Dionne +Dominica +Elsy +Emilee +Essence +Estrellita +Falisha +Felecia +Franchesca +Gia +Gilda +Gisselle +Hang +Huong +Jackelyn +Jacquelyne +Jaimi +Janey +Janiece +January +Jaquelin +Jenee +Jenise +Jennefer +Jennelle +Jennyfer +Jerri +Jesika +Joey +Jovana +Julieanne +Julienne +Jury +Kalee +Kamille +Kandyce +Karianne +Katerina +Katia +Katlin +Kellen +Kenneth +Keturah +Kiara +Kimber +Kirstie +Kisha +Krysti +Lanisha +Laureen +Le +Leonora +Liane +Lianne +Lili +Lillie +Lisamarie +Lois +Luciana +Maida +Maisha +Mariaguadalupe +Marialuisa +Maricella +Marielle +Maritsa +Mariza +Mark +Marleen +Marlo +Marti +Massiel +Meliza +Misha +Miya +Moriah +Myisha +Nacole +Nallely +Natassia +Nathan +Oralia +Patrisia +Phillip +Piper +Polly +Porcha +Puja +Raeann +Rashelle +Raymond +Renisha +Riana +Rio +Roxann +Samira +Sana +Sarena +Sascha +Season +Selenia +Serenity +Sergio +Shakira +Shanee +Shanta +Shaquita +Sharla +Shawnee +Sheana +Shelia +Shiloh +Shireen +Sindy +Sivan +Somer +Sorangel +Stephannie +Tarin +Tessie +Thelma +Tiffaney +Tiffiny +Tinisha +Topacio +Tova +Trinh +Tyesha +Uyen +Victor +Winnie +Yael +Yanet +Yanette +Zoua +Acacia +Adam +Alberta +Aleisha +Alethea +Alise +Almadelia +Amethyst +Anabell +Analia +Andre +Andreanna +Anessa +Annabell +Annalee +Annel +Annelise +Arika +Arin +Asha +Ashlynn +Aspen +Ayde +Bethanie +Bonita +Briann +Brienne +Britta +Bronwyn +Bryn +Brynne +Camelia +Camellia +Camila +Candelaria +Candise +Caprice +Carolynn +Carri +Chardae +Charday +Charla +Charlee +Chelsi +Cherice +Christianna +Christianne +Ciarra +Ciji +Corine +Courtnie +Danille +Darcie +Darleen +Debby +Delina +Dolly +Domenique +Eliana +Emelia +Erendida +Erik +Erma +Estefania +Farah +Faye +Felicity +Genevie +Genoveva +Gianina +Ginny +Grabiela +Greta +Helene +Ilda +Iman +Irasema +Isabell +Isabella +Isha +Ivon +Jacqulyn +Jael +Jamey +Jamilah +Jamilla +Jaymee +Jenea +Jennette +Jennica +Joel +Johnnie +Jolie +Joni +Jovita +Jullian +Kacee +Kai +Kailey +Kaleena +Kalie +Kalina +Kallie +Kameron +Kanisha +Karena +Karlie +Kaylan +Kaylie +Keeley +Keila +Kelsi +Kenesha +Keona +Keren +Keyonna +Khanh +Kiera +Kiran +Kortney +Kristiana +Krystyna +Lacee +Lakia +Larena +Lashanda +Lashell +Latricia +Lavinia +Letitia +Libby +Liberty +Linsay +Loraine +Loreal +Lorin +Lorna +Lucretia +Madelyn +Mae +Malina +Malori +Mandie +Margaux +Maricruz +Marilee +Marily +Marisabel +Markesha +Marleny +Marlina +Marrissa +Marybeth +Matalie +Matilda +Meera +Megen +Minh +Mira +Mistie +Myeisha +Myeshia +Nadya +Nai +Natalee +Niccole +Nicky +Nicol +Nika +Noemy +Nuvia +Oliva +Ophelia +Philip +Rana +Remy +Renita +Ronda +Rosangela +Roselyn +Rudy +Sahara +Sanam +Santina +Scott +Seema +Shade +Shalonda +Shalyn +Shamara +Shandi +Shanea +Sharday +Sharee +Sharmaine +Sharonda +Shauntel +Sherie +Sherika +Shonna +Sidney +Stefany +Steffanie +Steffany +Sulema +Susannah +Suzy +Taisha +Taraneh +Tavia +Tawana +Teila +Tenisha +Thea +Tony +Tristen +Valene +Veronique +Vianey +Vincent +Viola +Yasmine +Yuriana +Zaida +Zinnia +Abril +Adelaide +Adeline +Alayna +Alea +Alesia +Aline +Allisa +Allisha +Alysse +Ammy +An +Anacani +Andra +Andreana +Angelee +Anglea +Anisa +Anjuli +Annaliese +Annalise +Aria +Arian +Arica +Asheley +Asma +Asucena +Asusena +Audrina +Aura +Aysha +Banesa +Benita +Breeana +Brigid +Brionna +Britnie +Brittnay +Brittnee +Britton +Bryce +Camile +Candida +Carin +Carmel +Caylin +Channel +Channelle +Charlette +Chastity +Chelsy +Chrissy +Chrystina +Chyanne +Cindi +Clair +Clarisa +Clarisse +Claudine +Clementina +Cleo +Codi +Codie +Corissa +Danesha +Darby +Deja +Denielle +Desiray +Devina +Devyn +Diandra +Donielle +Donisha +Edlyn +Eleni +Eloise +Elyce +Emi +Ernestine +Ernesto +Felisa +Francisco +Frank +Georgette +Geri +Giannina +Ginelle +Gisele +Goldie +Gwen +Heaven +Huyen +Ines +Jacinta +Jacquelene +Jamielee +Jamika +Javier +Jaymi +Jenell +Jenica +Jennah +Jennell +Jewel +Jordana +Julisa +Kaleigh +Kalia +Kalli +Karlee +Kasondra +Katarina +Katryna +Keesha +Kelsy +Keosha +Kesha +Kierra +Kodie +Krystale +Lanesha +Larae +Larisa +Latashia +Latesha +Lean +Leesa +Lesa +Lin +Lissete +Lizbet +Logan +Lona +Lorelei +Luana +Luisana +Lyssa +Ma +Magdalene +Maghan +Mahogany +Makeda +Malisa +Mandeep +Marcelle +Mariadejesus +Mariaisabel +Maricel +Marisha +Mariya +Marline +Martin +Marty +Marylu +Marylyn +Mayte +Mckenzie +Mee +Melissaann +Melissia +Melyssa +Meridith +Merritt +Milagros +Mitzi +Mitzy +Monalisa +Monic +Montana +Montoya +Muriel +Nada +Nansi +Natividad +Neha +Nga +Ngoc +Nicholle +Niesha +Nikita +Nola +Noor +Porshia +Queena +Rabecca +Raeanna +Randee +Rashell +Reem +Ricki +Rika +Roberto +Rochel +Roma +Ronica +Ronnie +Rori +Roshelle +Roslyn +Rossana +Roxsana +Rut +Sabra +Sada +Saida +Sallie +Sari +Savana +Scarlet +Seana +Serene +Shalina +Sharhonda +Shatoya +Shaundra +Shawanna +Shay +Shenika +Sherina +Shondra +Sia +Silva +Sinthia +Sintia +Skylar +Stepanie +Stephane +Stephen +Stevi +Sunni +Taira +Talin +Tam +Tanea +Tarra +Tawney +Teal +Teala +Teara +Tegan +Terina +Terrie +Thavy +Thi +Thomas +Thy +Tifanie +Tinamarie +Tisha +Torie +Toya +Tram +Tristin +Velia +Velvet +Vianca +Yen +Young +Yumi +Zabrina +Zaira +Zara +Zarina +Zonia +Abbie +Abelina +Adia +Adrina +Agueda +Aleah +Aleece +Alexzandria +Alida +Aliya +Alizabeth +Almarosa +Alora +Alvina +Amani +Amaris +Ambrosia +Anabelle +Anahi +Anaiz +Angelena +Angelia +Anhthu +Anitra +Anneliese +Arelis +Argelia +Arlena +Armida +Ashanti +Ashlye +Aurea +Autum +Aviva +Azusena +Berenise +Bethann +Bobby +Breona +Brieanne +Brigida +Bristol +Britnee +Brittan +Brooklyn +Byanca +Cailin +Capri +Carlita +Carmella +Carmin +Casaundra +Cassy +Cayce +Champagne +Chantae +Cherelle +Cherlyn +Cheyanne +Chirstina +Contessa +Cordelia +Corin +Corvette +Coryn +Coty +Cristela +Cristiana +Cyntia +Czarina +Dakota +Damita +Danee +Darcey +Darlyn +Davida +Davonna +Dawnielle +Daysi +Deedee +Dejah +Delana +Delila +Delmy +Deonna +Deserae +Devan +Diann +Dinora +Dixie +Domenica +Dominic +Dorcas +Dulse +Echo +Eduardo +Edward +Elda +Essie +Estefany +Ethel +Evelynn +Evita +Falicia +Fatimah +Felica +Francia +Ger +Gisell +Gizelle +Gregory +Halie +Harriet +Hermelinda +Hien +Ibeth +Idalia +Ieshia +Ilaisaane +Itzel +Ivana +Ivett +Jacalyn +Jacey +Jacob +Jacquelina +Jacy +Jameika +Jamia +Jamilee +Janaya +Janea +Janean +Janene +Janiel +Janielle +Jannifer +Janny +Jasmaine +Jasmyn +Jayna +Jazzmin +Jazzmine +Jeanett +Jeneva +Jeniece +Jenine +Jennipher +Jerilyn +Jerrie +Jessa +Jessamyn +Jessicca +Jessyca +Jihan +Jimena +Jimmy +Jodee +Joellen +Johnisha +Johnna +Jordyn +Joycelyn +Kailee +Kailyn +Kaitlan +Kalani +Kaleen +Kalisha +Kamilah +Kanani +Kao +Karine +Karri +Kasha +Kassi +Katee +Katherina +Kathlene +Kathrina +Katrena +Kattie +Kaycie +Kaye +Kayleen +Keandra +Keanna +Kelliann +Kelsea +Kera +Keshana +Keyanna +Keyla +Khristina +Kianna +Kieu +Kimberli +Kimberlyn +Kory +Kristyna +Kyleen +Lachelle +Lael +Laiza +Lanita +Lareina +Latrina +Latrisha +Lauri +Leela +Leora +Leslee +Lesli +Licet +Lilah +Lindsie +Ling +Linna +Liseth +Lissett +Lizzete +Lluvia +Lolita +Lorene +Loriann +Luiza +Lurdes +Lusia +Luzmaria +Lyra +Macy +Magan +Maite +Mala +Malena +Malika +Manuel +Mariadel +Mariatheresa +Marisella +Marison +Marni +Marquisha +Marry +Marshay +Marybell +Maryelizabeth +Marygrace +Melani +Melania +Meleane +Melia +Melida +Memory +Meryl +Mikayla +Minnie +Miracle +Mirza +Monisha +Myranda +Myriam +Nadiyah +Nailah +Nakeisha +Nakisha +Nakita +Nary +Natacha +Natisha +Natosha +Nelida +Nickie +Nikkia +Nissa +Nita +Noriko +Nou +Nova +Nycole +Odette +Opal +Ora +Osiris +Otilia +Parisa +Patrick +Peter +Phuc +Pia +Porche +Prescilla +Quanisha +Quianna +Raechel +Raeleen +Rafaela +Raine +Raisa +Ranesha +Rani +Raquell +Rebbecca +Reema +Rekha +Riley +Rima +Roni +Rory +Rosalee +Rosalynn +Rosenda +Roshanda +Rosina +Rozanne +Rudi +Ryane +Sachiko +Salote +Samia +Saran +Sena +Sendy +Seng +Shabana +Shadae +Shalena +Shalimar +Shalon +Shanise +Shannah +Shantay +Sharda +Shardai +Shareen +Sharell +Shaunna +Shazia +Shekinah +Shereen +Sherelle +Sherice +Sheridan +Shila +Simona +Sindia +Siomara +Sokha +Song +Soyla +Spring +Steffani +Stepahnie +Stephine +Sulma +Sumer +Suong +Sylvie +Synthia +Taina +Takara +Talar +Talina +Talya +Tamica +Tamisha +Tammi +Taneshia +Tannia +Tarryn +Tasheena +Tatum +Tawna +Teanna +Tenika +Terah +Teressa +Tereza +Teryn +Tien +Tiera +Tierney +Tiffiney +Tirzah +Tonika +Triana +Trish +Tuyen +Twyla +Tyana +Tyisha +Tyla +Valery +Veronika +Vianney +Vienna +Vika +Whittney +Yajayra +Yamileth +Yaneth +Yang +Yaquelin +Yasmeen +Yoanna +Yoshiko +Yuridia +Zakiya +Zenaida +Zulma +Jessica +Ashley +Jennifer +Amanda +Sarah +Nicole +Stephanie +Melissa +Elizabeth +Christina +Vanessa +Michelle +Heather +Brittany +Lauren +Maria +Megan +Amber +Danielle +Crystal +Rachel +Laura +Kimberly +Tiffany +Samantha +Sara +Erica +Amy +Rebecca +Andrea +Emily +Natalie +Monica +Erin +Katherine +Angela +Veronica +Christine +Kelly +Diana +Lisa +Cynthia +Jacqueline +Nancy +Mayra +Jamie +Alicia +Shannon +Courtney +Erika +Patricia +Sandra +Allison +Victoria +Kristen +Whitney +Brenda +Katie +Mary +Kristina +Angelica +Cassandra +Anna +Kathryn +Lindsey +Valerie +Lindsay +Adriana +Kristin +Ana +Krystal +Monique +Jenna +Julie +Alexandra +Cristina +Claudia +Brittney +Jasmine +Denise +April +Cindy +Linda +Chelsea +Desiree +Joanna +Catherine +Leslie +Julia +Marissa +Wendy +Kathleen +Yesenia +Tara +Alyssa +Gabriela +Natasha +Caitlin +Sabrina +Karen +Priscilla +Daisy +Evelyn +Katrina +Janet +Holly +Melanie +Candice +Teresa +Rosa +Dominique +Nichole +Tanya +Guadalupe +Jeanette +Brianna +Felicia +Gina +Hannah +Sonia +Jenny +Lorena +Karina +Stacy +Tracy +Gloria +Mallory +Leah +Renee +Stacey +Alexis +Alison +Meghan +Martha +Krista +Susan +Karla +Yvette +Eliana +Leticia +Dana +Cecilia +Raquel +Alejandra +Brandy +Brooke +Maribel +Theresa +Kayla +Jillian +Tamara +Heidi +Kelsey +Morgan +Krystle +Candace +Tina +Robin +Margaret +Marisol +Rachael +Sophia +Alisha +Deanna +Johanna +Angelina +Briana +Carmen +Esmeralda +Carla +Cristal +Justine +Brandi +Molly +Liliana +Alma +Marisa +Grace +Bethany +Ashlee +Casey +Irene +Marlene +Alexandria +Ruth +Sharon +Susana +Sylvia +Michele +Olivia +Yvonne +Audrey +Janelle +Lacey +Anne +Virginia +Sandy +Jasmin +Pamela +Isabel +Diane +Melinda +Kendra +Maricela +Caroline +Regina +Kristine +Bianca +Carolyn +Jaclyn +Aimee +Silvia +Araceli +Elisa +Norma +Rachelle +Yolanda +Blanca +Summer +Tatiana +Esther +Katelyn +Savannah +Eva +Marisela +Marie +Ariana +Margarita +Daniela +Helen +Carolina +Kelli +Kristy +Marina +Meagan +Adrienne +Kara +Claire +Deborah +Rebekah +Rocio +Barbara +Taylor +Melody +Roxanne +Carly +Elaine +Maritza +Nina +Britney +Stefanie +Shawna +Elena +Lydia +Miranda +Robyn +Jordan +Kate +Elise +Kari +Carrie +Jacquelyn +Sierra +Breanna +Naomi +Jaime +Vivian +Misty +Angel +Lizette +Arlene +Abigail +Christa +Rochelle +Emma +Anita +Janette +Jeannette +Hayley +Latoya +Kristi +Roxana +Ashleigh +Jocelyn +Sheila +Darlene +Edith +Kaitlin +Ruby +Cassie +Cheryl +Juliana +Alice +Antoinette +Ebony +Paula +Trisha +Amelia +Charlene +Sheena +Colleen +Miriam +Suzanne +Ann +Christy +Joy +Lori +Maira +Griselda +Rose +Taryn +Sasha +Annette +Carol +Annie +Kellie +Eileen +Noemi +Brianne +Jazmin +Bonnie +Francesca +Haley +Jessie +Kathy +Luz +Frances +Judy +Lucia +Paige +Dawn +Elisabeth +Hilary +Iris +Nadia +Corina +Angie +Jane +Mercedes +Rosemary +Jade +Tabitha +Gabrielle +Lillian +Judith +Randi +Kirsten +Tania +Carina +Carissa +Josephine +Mindy +Jill +Serena +Viviana +Alissa +Beatriz +Camille +Donna +Elyse +Sade +Aubrey +Bridget +Jennie +Kelley +Lucy +Celia +Natalia +Myra +Shelby +Katharine +Cara +Chanel +Genevieve +Madeline +Shelly +Charlotte +Irma +Juanita +Destiny +Fabiola +Hillary +Kaitlyn +Meredith +Mia +Shauna +Rita +Autumn +Sally +Christian +Connie +Janice +Marcella +Ariel +Alana +Marilyn +Noelle +Clarissa +Madison +Tammy +Tiana +Perla +Sofia +Traci +Celina +Ellen +Joanne +Joyce +Paola +Toni +Chloe +Lorraine +Celeste +Julianne +Kasey +Nora +Reyna +Tasha +Sonya +Vicky +Allyson +Chelsey +Lourdes +Valeria +Dianna +Mandy +Olga +Adrianna +Alisa +Katy +Kendall +Aileen +Alexa +Belinda +Brittani +Kira +Lizbeth +Mai +Michael +Shana +Yadira +Ericka +Lacy +Rosanna +Christie +Larissa +Mariela +Tricia +Aurora +Corinne +Jacklyn +Lizeth +Antonia +Lena +Tessa +Gladys +Hilda +Ingrid +Lily +Magdalena +Marcela +Mariana +Nikki +Ryan +Iliana +Laurel +Maureen +Juana +Keri +Stacie +Angelique +Chantel +Shirley +Sydney +Tiffani +Lisette +Maggie +Debra +Elsa +Giselle +Jackie +Jenifer +Kassandra +Kristie +Melisa +Dolores +Faith +Jaqueline +Josefina +Nadine +Caitlyn +Dorothy +Joann +Laurie +Leanne +Ashlie +Jana +Janine +Latasha +Lissette +Tonya +Ashton +Breanne +Bridgette +Jayme +Reina +Shaina +Viridiana +Alyson +Bertha +Cortney +Delia +Jena +Kimberley +Rebeca +Shanna +Beatrice +Beverly +Devin +Joana +Kristal +Shelley +Talia +Ciara +Eunice +Jaimie +Kayleigh +Lilia +Maryann +Staci +Terra +Tracey +Bailey +Debbie +Cathy +Georgina +Lara +Maya +Nikita +Daniella +Graciela +Hailey +Michaela +Tanisha +Vanesa +Desirae +Roberta +Salina +Amie +Beth +Brandie +Casandra +Charity +Dora +Jodi +Julianna +Mackenzie +Roxanna +Selina +Anabel +Anastasia +Athena +Bernadette +Elvia +Kerry +Leanna +Paulina +Tiffanie +Alina +Brenna +Candy +Constance +Leilani +Lidia +Meaghan +Shayna +Catalina +Clara +Fatima +Janae +Kimberlee +Lesley +Rosalinda +Aracely +Ashly +Betty +Corey +Daniel +Elissa +Kim +Rosario +Sherry +Susanna +Trina +Consuelo +Gabriella +Jolene +Lyndsey +Lynette +Selena +Yasmin +Callie +Dina +Esperanza +Hope +Kylie +Liana +Liza +Nataly +Berenice +Blair +Dulce +Elvira +Ivette +Marlena +Pauline +Shayla +Tawny +Adrianne +Chantal +Francine +Monika +Sheri +Stephany +Trista +Belen +Flor +Jesse +Lina +Lizet +Marcia +Noel +Precious +Cheyenne +Christopher +Devon +Mari +Nathalie +Stevie +Violeta +Arianna +Catrina +Domonique +Faviola +Janel +Jenelle +Kacie +Kristyn +Patrice +Rhonda +Sophie +Yessenia +Adrian +Cherie +David +Estela +Janell +Jazmine +Karissa +Keisha +Lynn +Marianne +Micaela +Ofelia +Rosio +Tabatha +Venessa +Alaina +Alyse +Becky +Brittni +Cassidy +Cherish +Christen +Darcy +Elisha +Jean +Jeannie +Joan +Justina +Krystina +Lea +Marjorie +Mireya +Nicolette +Pearl +Savanna +Simone +Tamika +Britany +Chrystal +Gwendolyn +Halley +Hanna +Kaylee +Kyla +Marta +Paloma +Sheryl +Arielle +Asia +Geneva +Grecia +Jesica +Kerri +Krysta +Marian +Rosemarie +Sonja +Tracie +Zoe +Alysha +Janessa +Karin +Kori +Loren +Luisa +Melina +Rene +Rhiannon +Tori +Alexander +Andrew +Annamarie +Ashely +Cecelia +Cheri +Cierra +Dominque +Hollie +Janna +Jannette +Kacey +Malissa +Marla +Maura +Ramona +Terri +Anjelica +Fallon +Jessika +Joseph +Latisha +Lupita +Magaly +Richelle +Sadie +Tera +Alondra +Chandra +Christal +Danae +Delilah +Doris +Emerald +Keshia +May +Nicolle +Rosalie +Rosie +Sarai +Shantel +Tami +Tiara +Aida +Audra +Evangelina +Felisha +Ginger +Gretchen +Jeanine +Joelle +Lacie +Lynda +Mariah +Rena +Sarina +Sheree +Sherri +Aja +Alanna +Amalia +Anthony +Betsy +Christi +Danelle +Danica +Helena +Kandice +Kathrine +Lana +Leann +Leigh +Madeleine +Mona +Racheal +Valarie +Alycia +Ambar +Bobbie +Breana +Cora +Cory +Glenda +Jami +Jesenia +Kristian +Marsha +Mirna +Mollie +Myisha +Nelly +Pa +Susie +Vannessa +Xochitl +Alysia +Brigette +Chantelle +Christin +Cinthia +Corinna +Dena +Francisca +Hana +Isela +Jeanne +Johana +Lakeisha +Lilian +Maegan +Shante +Tess +Yessica +Yomaira +Yuri +Alba +Alia +Brigitte +Cassondra +Cori +Corrina +Elaina +Joshua +Loretta +Magali +Matthew +Natali +Tamra +Tanesha +Anais +Bernice +Dalia +Davina +Denice +Eleanor +Emilia +Fiona +Georgia +Hazel +Imelda +Ivy +Janie +Jody +John +Jose +Josie +Juliet +Leeann +Madelyn +Nikole +Rikki +Siobhan +Terry +Tia +Alessandra +Angeline +Corrie +Dalila +Denisse +Eliza +Francis +Giovanna +James +Krystel +Liset +Lupe +Mildred +Myesha +Porsche +Rhea +Teri +Yanira +Abby +Aisha +Anamaria +Ashli +Bree +Brian +Cameron +Cari +Chelsie +Eden +Jeniffer +Kirstin +Latrice +Leandra +Lizett +Lora +Malorie +Mariel +Marquita +Marylou +Mellissa +Minerva +Nereida +Pricilla +Rosalina +Rosalyn +Serina +Shari +Stella +Suzette +Tierra +Yuliana +Alexia +Allie +Breann +Britni +Candis +Chanelle +Cherise +Colette +Deana +Eloisa +Elva +Geraldine +Hallie +Jamila +Jessenia +Lyndsay +Marlyn +Meghann +Myrna +Nidia +Princess +Roxann +Sharde +Shasta +Stephani +Adela +America +Angelita +Annabel +Annalisa +Brittanie +Ciera +Coral +Damaris +Daphne +Dayna +Elia +Estella +Evelin +Isis +Jonathan +June +Kandace +Kasandra +Katelin +Kia +Kyle +Kyra +Leila +Marion +Martina +Paris +Portia +Rosalia +Sahar +Shanda +Shea +Stefani +Stephenie +Tianna +Vicki +Yajaira +Yanet +Ada +Ali +Andria +Deena +Denisha +Erinn +Genna +Gillian +Ileana +Inez +Jaimee +Janeth +Jeanna +Julieta +Kaley +Kourtney +Lee +Lucinda +Manuela +Marguerite +Maxine +Mirella +Penny +Phoebe +Porsha +Raven +Rayna +Rosalba +Savanah +Shanae +Shawn +Tarah +Tasia +Tawni +Tonia +Tyler +Unique +Yesica +Aaron +Brynn +Carley +Caryn +Charde +Charissa +Cody +Cristine +Danika +Dannielle +Diamond +Edna +Ester +Flora +Ilene +Ivonne +Jenni +Jodie +Joleen +Kaila +Kenia +Kenya +Lia +Lynsey +Mandi +Mara +Mariam +Marlen +Mellisa +Phylicia +Rosamaria +Rosanne +Steven +Violet +Adelina +Annemarie +Astrid +Cathleen +Charisse +Dayana +Desire +Eugenia +Franchesca +Gianna +Harmony +Janee +Juliette +Kelsie +Kiana +Korina +Laila +Linh +Mabel +Marci +Nallely +Nichelle +Racquel +Shardae +Thelma +Tyra +Vickie +Arleen +Aubree +Brandon +Bryana +Charmaine +Christiana +Darla +Deirdre +Eboni +Isabella +Jeana +Kenisha +Kristan +Krysten +Krystin +Lauryn +Lila +Luisana +Maren +Marianna +Maryam +Melodie +Mikaela +Nanci +Peggy +Porscha +Renae +Rosana +Roseanna +Shameka +Sunny +Ursula +Yecenia +Analisa +Annika +Annmarie +Antionette +Azucena +Bobbi +Brandee +Bryanna +Cambria +Casie +Cathryn +Clare +Cyndi +Darline +Daysi +Elana +Eric +Eve +Gricelda +Holli +Jerrica +Jocelyne +Juan +Kaleigh +Katheryn +Kay +Kiersten +Kortney +Kyrie +Latanya +Malinda +Mallorie +Monet +Muriel +Nisha +Petra +Raylene +Robert +Rubi +Samatha +Selene +Shanell +Sheng +Stacia +Stephaine +Tristan +Vannesa +Abbey +Alena +Ami +Annabelle +Anya +Ava +Billie +Bridgett +Brisa +Britnee +Carlie +Celena +Corie +Corrine +Cristian +Danyelle +Deidra +Doreen +Elsie +Gabriel +Gena +Iesha +Ivana +Jackeline +Jacquelin +Janett +Jesus +Jewel +Justin +Kady +Karli +Katelynn +Kindra +Lani +Louise +Luis +Malia +Michell +Nichol +Nydia +Patty +Ryann +Saira +Scarlett +Sharlene +Socorro +Suzanna +Tatianna +Alex +Areli +Ashlyn +Ayla +Brett +Brittaney +Chante +Cherelle +Dara +Deisy +Dianne +Elizabet +Erendira +Gisela +Gracie +Guillermina +Ilana +Jannet +Jaymie +Kalie +Karena +Kasie +Kati +Kaylie +Keely +Kylee +Ladonna +Lakesha +Liberty +Lilliana +Linsey +Lizzette +Marysol +Merissa +Misti +My +Nellie +Noemy +Phuong +Reanna +Rosalva +Rosaura +Shanelle +Shanika +Shanta +Sherrie +Starla +Tamar +Tameka +Therese +Vania +Vanna +Alesha +Alexandrea +Alisia +Araseli +Arianne +Asha +Ashlei +Aura +Berta +Bonny +Brook +Camilla +Carey +Cassaundra +Chana +Chasity +Cherrelle +Chris +Cristy +Dania +Debora +Dennise +Elicia +Eryn +Gemma +Ginny +Jovanna +Juliann +Kali +Karyn +Kaycee +Kelsi +Kiera +Kristle +Lakisha +Loni +Lucero +Marcy +Mariaelena +Mariko +Massiel +Mina +Nayeli +Nicholas +Pilar +Priya +Sable +Sarita +Sean +Shanel +Shara +Sherie +Star +Vera +Verenice +Xiomara +Yazmin +Yer +Zulema +Amparo +Arcelia +Brittnee +Carlos +Crista +Daniell +Danyell +Deidre +Drew +Elyana +Emely +Emilie +Ernestina +Genevie +Georgette +Ida +India +Jacquelynn +Jenae +Joni +Kaci +Kandis +Kassie +Keren +Latonya +Leonela +Leonor +Lilly +Lucila +Marielle +Marika +Marilu +Mercy +Mimi +Moriah +Natosha +Nicki +Octavia +Richard +Ronisha +Roseann +Rosita +See +Shani +Shoshana +Sommer +Sue +Susanne +Tahnee +Tana +Tenisha +Thao +Tisha +Trinity +Valentina +William +Acacia +Adria +Afton +Agnes +Ahsley +Alejandrina +Alejandro +Alise +Alishia +Allegra +Anabell +Anika +Antonette +Ashlea +Aundrea +Britta +Candelaria +Caressa +Carmela +Celine +Cheyanne +Claribel +Concepcion +Cristen +Daniele +Eleana +Elida +Elisabet +Enedina +Erlinda +Estrella +Evelia +Florence +Gladis +Holland +Isaura +Jason +Jennafer +Jennefer +Jessi +Julissa +Kacy +Kailey +Kaleena +Karly +Kenna +Kenneth +Kevin +Lan +Lianne +Lindsy +Lindy +Lisset +Lorene +Lorna +Lucille +Maia +Marcie +Margo +Marilynn +Mattie +Mckenzie +Mika +Mirian +Nakita +Nereyda +Nickole +Niki +Parisa +Patsy +Rhianna +Roseanne +Roslyn +Saundra +Shera +Tawnya +Teal +Teresita +Thea +Thuy +Tyesha +Wanda +Windy +Xenia +Yuridia +Aide +Althea +Amina +Amira +Anh +Ani +Anissa +Arely +Arica +Ashlynn +Avery +Benjamin +Blaire +Blythe +Camila +Carli +Carmin +Chanell +Channel +Danisha +Denae +Deseree +Desirea +Dolly +Ella +Evan +Felecia +Fernanda +Fiorela +Haydee +Hong +Isabelle +Ivan +Jamilah +Jaquelyn +Jayne +Jeffrey +Jenessa +Jerica +Jonelle +Joselyn +Joslyn +Julian +Katlyn +Kaylan +Kaylyn +Kesha +Kristel +Kymberly +Laci +Lanette +Larisa +Latosha +Layla +Leia +Liane +Ligia +Liz +Lois +Luciana +Lynnette +Magen +Marivel +Mee +Miesha +Nansi +Natassia +Neda +Nia +Nicola +Nuvia +Otilia +Rae +Raelene +Raina +Riley +Sabina +Sacha +Salena +Shannan +Sharday +Sharee +Soledad +Stephine +Tam +Tayler +Tracee +Vilma +Wendi +Xochilt +Yasmine +Yoana +Alecia +Alysse +Anarosa +Angelia +Antonio +Ariane +Austin +Bao +Beatris +Brittny +Bryn +Candra +Candyce +Carlyn +Carole +Carolynn +Charise +Cherry +China +Cindi +Cinthya +Clarice +Corine +Crystle +Cyrstal +Dallas +Deanne +Della +Demetria +Deysi +Diandra +Dionna +Dionne +Elba +Elysia +Elyssa +Falisha +Farrah +Faye +Gail +Gregory +Huong +Itzel +Jeannine +Jenell +Jenica +Jina +Jo +Johnna +Julieann +Ka +Kaela +Kami +Kandy +Kellee +Kerrie +Kirby +La +Lashawn +Lashawnda +Lashay +Lilibeth +Linnea +Lissa +Lola +Margie +Margot +Mariaguadalupe +Maricruz +Meggan +Melyssa +Monserrat +Nakia +Nastassia +Natalee +Natashia +Neha +Nelida +Pang +Rachele +Rachell +Rafaela +Randee +Rosalind +Samira +Scott +Seema +Sequoia +Shalonda +Shannel +Shira +Sidney +Spring +Stevi +Tammie +Tatyana +Thanh +Toya +Trinh +Venus +Vy +Zenia +Abril +Adriane +Allyssa +Alysa +Anahi +Andre +Anneliese +Arika +Arlette +Armida +Ayesha +Blake +Cali +Camelia +Carlene +Cayla +Celene +Chanda +Charleen +Charlie +Christianna +Collette +Danyel +Darci +Darcie +Daria +Deandra +Dyana +Edlyn +Elianna +Emilee +Ernestine +Essence +Evita +Evonne +Fanny +Genoveva +Gisselle +Heidy +Ivon +Ivory +Jaclynn +Jan +Jenniffer +Jordana +Kadie +Kala +Kalyn +Karine +Karisa +Karrie +Katarina +Katlin +Kayce +Kendal +Keyana +Kiley +Kirstie +Lakeshia +Laticia +Lawanda +Leeanna +Leslieann +Libby +Liseth +Lisseth +Lizabeth +Lorin +Lorina +Louisa +Lyna +Maricella +Maryanne +Meryl +Millicent +Mira +Myeisha +Ngoc +Nikia +Noreen +Nou +Phyllis +Priscila +Raeann +Raeanne +Raechel +Rebeka +Rina +Romina +Rowena +Sana +Shamika +Shane +Shanee +Shelli +Shena +Shoua +Sirena +Sondra +Sparkle +Stephen +Sulema +Sully +Susannah +Suzana +Suzy +Tabetha +Tawnie +Thu +Timothy +Trang +Winter +Yasmeen +Yee +Yeni +Zoila +Aime +Akilah +Aleah +Amal +Amberly +Ambrosia +Annamaria +Aria +Aubrie +Aurelia +Britt +Britteny +Carin +Carmella +Cassey +Cesilia +Chan +Chardae +Chelsi +Cheree +Chiara +Corissa +Danette +Dani +Deann +Delana +Delfina +Delores +Deserie +Devonne +Dorian +Ebonee +Edlin +Eleni +Emelia +Evette +Farah +Francisco +Genesis +George +Ha +Hali +Jacqulyn +Jammie +Janeen +Janey +Jaquelin +Jasmyn +Jenee +Jennelle +Jeri +Jesseca +Joel +Jovana +Julienne +Kallie +Karmen +Katee +Katerina +Katey +Katharina +Kaylene +Kaylin +Keila +Kellyn +Kelsea +Kimberlie +Lacee +Laquisha +Latrisha +Leigha +Lesly +Linette +Lisbeth +Lise +Livier +Madonna +Magan +Mallori +Mao +Mark +Markisha +Marybel +Marybeth +Mayela +Mckenna +Megann +Melaine +Melony +Micah +Misha +Monisha +Nicky +Ophelia +Oralia +Porche +Reena +Risa +Roberto +Roya +Saba +Samuel +Sandi +Sanjuana +Sergio +Shanay +Sharla +Sharonda +Shavon +Shavonne +Shawnee +Shawnte +Shelia +Shellie +Shiloh +Shyla +Soraida +Stefany +Tashina +Teena +Tenaya +Tierney +Tiffiny +Tory +Tram +Trinidad +Tristen +Valencia +Vanity +Vi +Vienna +Viola +Whittney +Zachary +Zaida +Adeline +Adina +Aislinn +Alix +Alyce +Alyshia +Amara +Amaris +Analicia +Angelena +Anisha +Annelise +Ariella +Aysha +Bethanie +Breeann +Brie +Brielle +Candi +Carmelita +Carrissa +Catlin +Cesar +Channing +Charla +Choua +Christinia +Clarisse +Claudette +Codi +Colby +Cortnie +Courtnie +Cristin +Danna +Debby +Destinee +Devan +Dinah +Dixie +Ebonie +Elda +Elliana +Elysse +Erendida +Estefania +Evelina +Felisa +Gema +Giana +Gilda +Grisel +Haleigh +Helene +Herlinda +Ilda +Ina +Ivania +Jada +Jamee +Janay +Jaylene +Jazmyn +Jenette +Jenise +Jennica +Jessy +Jessyca +Joey +Jorge +Jullian +Kalee +Kalena +Kanisha +Karie +Karlee +Kassi +Kathryne +Katia +Katty +Kaydee +Kayleen +Keeley +Keli +Kellye +Keosha +Khristina +Krystine +Lakia +Lanisha +Lashonda +Latavia +Latesha +Lean +Leana +Leena +Lisamarie +Lisett +Lorelei +Loriann +Lynsie +Mae +Magda +Maile +Malisa +Mariella +Marin +Maritsa +Marleen +Marrissa +Maryjane +Mele +Melonie +Melynda +Michel +Nathan +Nazia +Nicholle +Niesha +Noelia +Patrina +Paul +Peter +Quiana +Rashida +Rebeccah +Reem +Regan +Ricci +Riki +Ronda +Roni +Ronni +Roselia +Sadaf +Saran +Scarlet +Shalane +Shandra +Shantae +Shantelle +Shaquita +Sharina +Shaunna +Shaunte +Shaylene +Somaly +Sopheap +Sunshine +Synthia +Tanika +Taren +Tarra +Tavia +Terrie +Tiffaney +Tomasa +Tosha +Tristin +Tuyet +Vaneza +Velvet +Vianey +Wesley +Yomayra +Youa +Yury +Zakiya +Zenaida +Adam +Ainsley +Akira +Alayna +Aleshia +Aleta +Allyse +Almadelia +Alona +Amee +Anastacia +Andra +Andreana +Andriana +Anel +Angeles +Angella +Anisa +Anitra +Anjuli +Annalee +Banessa +Beronica +Bessie +Bettina +Biridiana +Bonita +Breeanna +Breonna +Brieana +Brieann +Britani +Britnie +Brittan +Brittnie +Cameo +Cammie +Carlee +Cassi +Cassy +Catharine +Cendy +Chantell +Charli +Chastity +Chau +Chaya +Chrystle +Cruz +Cydney +Daisey +Danesha +Dawna +Dee +Deja +Desarae +Destiney +Emi +Estephanie +Estrellita +Fawn +Felicity +Garrett +Gia +Gianina +Giovanni +Gizelle +Heaven +Henry +Hiedi +Holley +Hortencia +Huyen +Ian +Ivett +Jacquelyne +Jamela +Janiece +Janielle +Janina +Janira +Jasmina +Jeanelle +Jeni +Jenice +Jeremy +Jessalyn +Jolie +Joline +Jonna +Josephina +Juli +Kacee +Kaelyn +Kaitlynn +Kalani +Kalin +Kalina +Kamilah +Kamille +Kassidy +Kathie +Katya +Kayley +Keanna +Keesha +Kendyl +Kenesha +Kera +Kerstin +Kimber +Kory +Kristiana +Kylene +Lachelle +Laneisha +Lanesha +Larae +Leeanne +Leona +Leonora +Lesli +Lien +Lillie +Lissett +Loan +Logan +Lorie +Lucrecia +Malina +Manuel +Maranda +Mariadelcarmen +Mario +Marlin +Marlina +Marygrace +Mercedez +Mikala +Milagro +Mindi +Mitchell +Mya +Nalleli +Nathaly +Nieves +Nubia +Paulette +Rachal +Randall +Rhyan +Riana +Rochel +Rona +Rosalee +Roselyn +Rudi +Sabra +Samara +Santana +Sendy +Shandi +Shantal +Shantay +Sharayah +Sharda +Sharisse +Sharmaine +Shatoya +Shaun +Shawnna +Shawntae +Shirin +Sienna +Silvana +Sindy +Skye +Skyler +Starr +Steffanie +Steffany +Stevee +Taleen +Tamera +Tatum +Theodora +Titiana +Torrey +Travis +Valery +Vianca +Winnie +Yael +Yen +Yuko +Zahra +Zainab +Abbie +Adelaida +Aleece +Aleena +Aleida +Alesia +Alexi +Aliza +Alyssia +Amberlee +Amiee +Anaalicia +Analise +Andi +Andrina +Annalise +Annel +Apollonia +Argelia +Arin +Ashlin +Aspen +Aviva +Babygirl +Bliss +Brady +Breeana +Brienne +Brina +Brittiany +Bronwyn +Bryan +Brynne +Caitlan +Caren +Carie +Carmina +Cathrine +Cecily +Charday +Chaz +Cherese +Cherice +Cherisse +Cherrish +Chistina +Chrissy +Christel +Chua +Ciarra +Clarisa +Coleen +Corrin +Crysta +Crystalyn +Dahlia +Dale +Daneille +Danitza +Dannette +Darleen +Daryl +Davida +Deandrea +Deeanna +Deisi +Delaney +Delicia +Delila +Delmy +Denesha +Denielle +Dennis +Denyse +Deserae +Devorah +Deyanira +Diedra +Donisha +Eduardo +Edward +Edwina +Elodia +Elysa +Erik +Ethel +Evangeline +Faustina +Felice +Fernando +Fiorella +Frankie +Gardenia +Gayle +Genie +Genny +Ger +Gerardo +Geri +Gisel +Goldie +Greta +Gwen +Hadley +Hanh +Hector +Honey +Ilse +Ines +Irais +Jacinda +Jackelyn +Jacquelene +Janai +Janetta +Janis +Jannett +Jannie +Jaspreet +Jaymee +Jayna +Jazzmin +Jeanny +Jeffery +Jenay +Jennell +Jennette +Jennfier +Jennyfer +Jessamyn +Jihan +Joi +Joie +Jonnie +July +Kaeli +Kaleen +Kalisha +Kalynn +Kandi +Kandra +Kandyce +Kao +Karee +Karley +Karri +Karyna +Kathlyn +Kathrina +Katina +Kaylynn +Kelle +Kellyanne +Kendell +Keyonna +Kiara +Kimberlyann +Kimiko +Kisha +Kristyl +Krystyna +Lacresha +Lany +Larina +Latrina +Lavinia +Lenna +Leora +Letisia +Letticia +Lianna +Licette +Lilah +Lisandra +Llesenia +Lolita +Loreal +Loree +Luzmaria +Lyla +Lyndsi +Lynne +Lyric +Ma +Macy +Madalyn +Maddie +Maha +Makenna +Malika +Malori +Malory +Manpreet +Margeaux +Mariade +Mariadejesus +Mariadelourdes +Mariaisabel +Marialuisa +Maricarmen +Mariza +Marizol +Marlaina +Marni +Marquetta +Marrisa +Martiza +Maryrose +Mechelle +Meisha +Melissaann +Michaelle +Michal +Miki +Milissa +Missy +Monalisa +Monic +Mylene +Nai +Nanette +Nary +Natoya +Nga +Nicollette +Nyssa +Patrick +Patrisha +Patrisia +Pedro +Phung +Piper +Polly +Pooja +Prescilla +Prisma +Queena +Quinn +Racine +Raeanna +Raelyn +Rana +Randal +Rashell +Rashelle +Raul +Rebecka +Renita +Ria +Rivka +Romelia +Ronald +Rosangela +Roshni +Rozanna +Salvador +Samaria +Sammantha +Santa +Sarena +Sarrah +Savana +Sayra +Scarlette +Serene +Serenity +Shade +Shalon +Shanea +Shanette +Shaniqua +Shanisha +Shanon +Shardai +Sharron +Shay +Sheela +Sherelle +Sherrell +Sheyla +Sinead +Skylar +Stacee +Stephania +Taline +Tamarra +Tanaya +Tanna +Tannia +Tarina +Tashia +Tegan +Tenesha +Tereza +Teryn +Tesia +Thomas +Thy +Tiesha +Tran +Treasure +Trishia +Tritia +Tyana +Tynisha +Van +Vannary +Veronika +Veronique +Willie +Yahaira +Yara +Yohana +Zahira +Zandra +Zoraida +Zuri +Zyanya +Adelita +Adelle +Adi +Adriann +Aerial +Agueda +Agustina +Aisling +Alannah +Alea +Alethea +Alexsandra +Aliana +Alida +Aline +Aliya +Allissa +Alva +Alyss +Ambria +Amethyst +Amrit +Amrita +Anamarie +Anette +Angele +Anjali +Annabell +Anny +Apolonia +Apryl +Aquilla +Ara +Ariadna +Ariela +Arlyn +Arminda +Arturo +Ashtyn +Asuka +Augusta +Aya +Ayanna +Ayumi +Bailee +Barbie +Benita +Berenise +Bertina +Brandyn +Brieanna +Brieanne +Brionna +Brittnay +Bryanne +Bryce +Bryna +Cady +Caley +Callista +Camellia +Candance +Candie +Caprice +Carisa +Carleen +Carmel +Carolyne +Cassandre +Cerina +Chantae +Charis +Charlette +Chee +Chenin +Chenoa +Christianne +Christle +Cicely +Cira +Cleo +Corena +Corene +Corin +Courtnee +Cristie +Crystina +Cyndle +Dacia +Daina +Daisha +Daniesha +Darcel +Darlin +Darling +Dava +Davy +Deeann +Deedra +Delaina +Delma +Demi +Deonna +Der +Dezirae +Donielle +Dorothea +Dusty +Dylan +Ebelin +Eboney +Echo +Edgar +Eiliana +Eleanore +Elina +Elisse +Eloise +Elsy +Emilyann +Enjoli +Erick +Erienne +Erikka +Erma +Ermelinda +Estefani +Estelle +Eunique +Fabian +Fahm +Faren +Fatimah +Grabiela +Graviela +Gricel +Han +Hanan +Hang +Harriet +Haylee +Hilaria +Ila +Iman +Isabell +Iva +Jacklynn +Jacy +Jameelah +Jamelia +Jamesha +Jamey +Jamia +Jamica +Jamisha +Janica +Janin +January +Jaycee +Jazzmine +Jeanetta +Jeanie +Jenea +Jenilee +Jennae +Jennine +Jesika +Jessicca +Jessilyn +Jewell +Jilliann +Jillianne +Jinny +Joanie +Johna +Johnny +Jomayra +Joscelyn +Joshlyn +Jourdan +Jovan +Jovita +Joycelyn +Judit +Juliane +Julieanne +Julietta +Julyana +Kai +Kailee +Kaitlan +Kameron +Kanesha +Karess +Karessa +Karlyn +Kashmir +Kasia +Katrin +Katryna +Kaylen +Kayli +Kayliegh +Keana +Keara +Keena +Keiko +Keira +Kelleen +Kenyatta +Keriann +Khadija +Khadijah +Kiesha +Kimberli +Kimberlyn +Klarissa +Kourtnee +Krissy +Kristeen +Kristene +Kristianne +Kristyna +Krizia +Krystalyn +Krystie +Krystyn +Kyna +Kyndra +Lainey +Laiza +Lanae +Laquesha +Laren +Lark +Lashana +Lashanda +Latia +Latoyia +Lavon +Layne +Lela +Lenore +Lesa +Lin +Lindi +Lizzeth +Lluvia +London +Lonnie +Lorenza +Louella +Louis +Luana +Lucina +Lus +Lysette +Maddison +Madelaine +Madelynn +Maeghan +Magnolia +Mahogany +Maida +Malarie +Malena +Malerie +Manda +Margarete +Margaux +Mariadelosangel +Maribella +Maribelle +Maribeth +Maricel +Marili +Marinda +Marine +Marisha +Markita +Marlana +Marleni +Marley +Marquisha +Martin +Martine +Maryanna +Mayda +Mayraalejandra +Mccall +Megha +Melanieann +Melany +Micheal +Miguel +Milagros +Milan +Milena +Millie +Minh +Miracle +Mishell +Mitra +Mitzi +Molli +Monita +Myla +Mysti +Nada +Nadya +Naima +Nakisha +Nana +Natacha +Nathalia +Nathaniel +Nena +Neomi +Nhung +Nika +Nikkie +Nohemi +Norah +Nour +Olimpia +Omar +Onica +Ora +Oriana +Page +Patience +Peaches +Penelope +Pia +Poonam +Porschea +Puja +Qiana +Rachelann +Raguel +Rania +Rashonda +Rayleen +Reanne +Rebbecca +Rebekka +Rebekkah +Remy +Renea +Rheanna +Rickie +Rika +Robbie +Rolanda +Ronnie +Rory +Rosalynn +Rosibel +Roxane +Rupa +Rut +Ryane +Sada +Sadia +Sage +Saida +Sallie +Sandie +Sapna +Saray +Sascha +Seana +Shadae +Shadia +Shakia +Shakira +Shaleen +Shalini +Shalyn +Shaneka +Shanique +Shanise +Shannyn +Shantell +Shanti +Sharae +Sharice +Sharrell +Shawana +Shawnta +Shawntel +Shelbie +Sherice +Sherise +Shiree +Shireen +Shivani +Shonna +Shonte +Shyra +Sidra +Siera +Silvina +Sima +Simona +Sinthia +Soila +Sophea +Stepanie +Stephane +Stephannie +Suzann +Sybil +Sydnee +Sydni +Tacara +Tahlia +Tai +Taina +Talaya +Talin +Talisha +Tamia +Tamisha +Tammra +Taniesha +Tarin +Tawney +Taya +Terryn +Thalia +Tiarra +Tiera +Tiffinie +Tinamarie +Torri +Torrie +Tova +Trevor +Tyanna +Valorie +Velma +Veridiana +Verna +Victor +Vivianna +Whitnee +Xylina +Yanai +Yaneli +Yaneth +Ying +Yisel +Yumi +Zara +Zarina +Zenobia +Zoua +Jessica +Ashley +Jennifer +Amanda +Stephanie +Sarah +Nicole +Melissa +Elizabeth +Christina +Michelle +Vanessa +Brittany +Danielle +Heather +Samantha +Lauren +Megan +Amber +Maria +Laura +Rachel +Tiffany +Crystal +Kimberly +Rebecca +Emily +Erica +Andrea +Katherine +Amy +Sara +Diana +Natalie +Monica +Veronica +Angela +Kelly +Christine +Lisa +Jacqueline +Cynthia +Erika +Mayra +Nancy +Yesenia +Victoria +Alicia +Alexandra +Erin +Courtney +Jamie +Allison +Katie +Chelsea +Kayla +Patricia +Brenda +Shannon +Kristina +Sandra +Alyssa +Kristen +Mary +Anna +Jasmine +Brittney +Angelica +Whitney +Ana +Lindsay +Claudia +Lindsey +Cindy +Kathryn +Valerie +Jenna +Julie +Monique +Cassandra +Kristin +Krystal +April +Caitlin +Adriana +Linda +Denise +Desiree +Gabriela +Cristina +Leslie +Sabrina +Marissa +Kelsey +Julia +Kathleen +Natasha +Priscilla +Joanna +Hannah +Karen +Catherine +Wendy +Brianna +Katrina +Janet +Karina +Tara +Tanya +Evelyn +Nichole +Guadalupe +Jenny +Alexis +Raquel +Daisy +Melanie +Rosa +Jeanette +Holly +Teresa +Gina +Candice +Briana +Stacy +Leticia +Felicia +Martha +Yvette +Leah +Dana +Ashlee +Jillian +Morgan +Brooke +Alejandra +Kendra +Lorena +Susan +Alexandria +Renee +Stacey +Gloria +Dominique +Sonia +Sophia +Alison +Meghan +Grace +Justine +Margaret +Casey +Tina +Alisha +Karla +Esmeralda +Maribel +Carmen +Tracy +Angelina +Krista +Mallory +Olivia +Heidi +Rachael +Jaclyn +Marisol +Tatiana +Irene +Breanna +Deanna +Molly +Robin +Brandi +Taylor +Melinda +Tamara +Candace +Brandy +Susana +Carla +Roxanne +Jasmin +Bethany +Liliana +Johanna +Sasha +Alma +Kristine +Marie +Marlene +Bianca +Cecilia +Yvonne +Caroline +Pamela +Sandy +Katelyn +Marisa +Janelle +Lacey +Carolyn +Theresa +Emma +Ruth +Kaitlin +Yolanda +Anne +Ariana +Carolina +Rebekah +Jacquelyn +Ruby +Rocio +Britney +Eva +Sylvia +Blanca +Diane +Isabel +Regina +Naomi +Jocelyn +Norma +Virginia +Audrey +Kelli +Krystle +Sierra +Nina +Deborah +Sharon +Kara +Barbara +Lydia +Maricela +Ashleigh +Carly +Daniela +Esther +Helen +Elisa +Gabrielle +Melody +Stefanie +Claire +Cristal +Abigail +Elise +Margarita +Adrienne +Aimee +Rachelle +Paige +Shawna +Carrie +Donna +Marina +Silvia +Jazmin +Maritza +Ebony +Marisela +Kellie +Michele +Arlene +Savannah +Kristy +Paula +Elaine +Elena +Kari +Araceli +Colleen +Kaitlyn +Vivian +Roxana +Meagan +Edith +Marilyn +Frances +Lucia +Miriam +Alexa +Destiny +Kate +Miranda +Summer +Jaime +Kathy +Cassie +Rochelle +Trisha +Jordan +Juliana +Camille +Amelia +Noelle +Connie +Noemi +Kelley +Bridget +Robyn +Darlene +Randi +Rose +Angel +Charlene +Latoya +Lizette +Misty +Alice +Annette +Annie +Antoinette +Bonnie +Jeannette +Kirsten +Tammy +Ann +Elisabeth +Judith +Angie +Tania +Beatriz +Hillary +Kristi +Maira +Mercedes +Nadia +Anastasia +Judy +Luz +Sheena +Jessie +Allyson +Autumn +Elyse +Janette +Roxanna +Haley +Suzanne +Jane +Alissa +Carissa +Christy +Madison +Carol +Mindy +Natalia +Serena +Shauna +Shelby +Tabitha +Viviana +Yessenia +Anita +Carina +Madeline +Corina +Sheila +Reyna +Rita +Griselda +Brianne +Eliana +Janice +Josephine +Lucy +Yadira +Jade +Tiana +Cheryl +Eileen +Jill +Joy +Kasey +Hilary +Joanne +Lorraine +Aubrey +Cara +Celeste +Charlotte +Clarissa +Joyce +Sofia +Chanel +Hayley +Juanita +Lori +Nora +Rosemary +Christa +Dawn +Traci +Giselle +Iris +Belinda +Ellen +Ericka +Janae +Mariana +Ashly +Chelsey +Lillian +Myra +Toni +Adrianna +Katharine +Ryan +Brittani +Jenifer +Paola +Shana +Bernadette +Lizbeth +Mariela +Mia +Sydney +Celia +Gladys +Irma +Tasha +Alana +Stephany +Taryn +Tessa +Christian +Genevieve +Mackenzie +Daniella +Christie +Desirae +Shayna +Fabiola +Graciela +Jaimie +Lily +Perla +Stacie +Debra +Jazmine +Meredith +Aurora +Denisse +Kendall +Sally +Yasmin +Aileen +Jennie +Chloe +Jacklyn +Kassandra +Lissette +Shaina +Valeria +Alyson +Bailey +Francesca +Kira +Nikki +Sherry +Sonya +Cortney +Larissa +Vicky +Alisa +Debbie +Gabriella +Simone +Tracey +Tricia +Mandy +Olga +Hailey +Jaqueline +Latasha +Lisette +Chantal +Corinne +Nadine +Shelly +Shirley +Lara +Lena +Rebeca +Staci +Ariel +Ashely +Beverly +Celina +Dolores +Julianne +Kristie +Mai +Breanne +Grecia +Juana +Michaela +Alina +Caitlyn +Janine +Katy +Krystina +Lourdes +Maggie +Chantel +Hanna +Leanne +Marcella +Vanesa +Esperanza +Jean +Jolene +Lacy +Laurel +Noel +Talia +Tiffani +Devin +Dianna +Doris +Fatima +Ingrid +Leanna +Paulina +Rosanna +Shanna +Eunice +Georgina +Keri +Kim +Lesley +Marcela +Maya +Pauline +Tawny +Alysha +Ciara +Delia +Dorothy +Melisa +Viridiana +Antonia +Ashlie +Bertha +Betty +Brenna +Cherie +Jackie +Karissa +Beth +Devon +Julianna +Magdalena +Nathalie +Susanna +Clara +Jesica +Lea +Michael +Selina +Tanisha +Alycia +Ivette +Janay +Joana +Justina +Lyndsey +Lynette +Rosalinda +Tonya +Anabel +Arianna +Dulce +Joann +Kristal +Laurie +Angelique +Belen +Bridgette +Cathy +Chrystal +Consuelo +Dina +Elisha +Kerry +Mariah +Maureen +Ambar +Christopher +Lidia +Maryann +Salina +Tori +Zoe +Chelsie +Cierra +Daniel +Francine +Jodi +Kimberley +Leilani +Lizeth +Rhonda +Amie +Ashton +Athena +Charity +Cinthia +Dora +Jayme +Vannessa +Alyse +Becky +Casandra +Elvira +Jana +Luisa +Rhiannon +Shayla +Adrian +Berenice +Elsa +Jena +Jessika +Patrice +Cassidy +Josefina +Kaila +Rene +Stevie +Audra +Beatrice +Blair +Faith +Hilda +Jeannie +Lana +Lina +Marianne +Mariel +Meaghan +Reina +Sarai +Tiffanie +Asia +Catalina +Cheyenne +David +Francisca +Keisha +Adrianne +Candy +Catrina +Corinna +Janessa +Kaylee +Kayleigh +Kyla +Lilia +Micaela +Mireya +Nataly +Savanna +Shantel +Sophie +Tamika +Yessica +Aracely +Breana +Elvia +Estela +Hope +Joan +Rosario +Sadie +Alexander +Annamarie +Ayla +Eliza +Janel +Jesenia +Lynn +Martina +Melina +Mollie +Nicolette +Selena +Shelley +Angeline +Brittni +Constance +Edna +Joelle +Kylie +Lakeisha +Liana +Madeleine +Marcia +Sade +Stella +Susie +Terra +Venessa +Chandra +Corey +Davina +Evelin +Jeanne +Jenelle +Lilian +Monika +Ramona +Alysia +Brandie +Callie +Cheri +Ciera +Dayna +Giovanna +Iliana +Kacie +Kandice +Leann +Leila +Liza +May +Paris +Rosio +Tabatha +Tiara +Trista +Yuri +Aisha +Anjelica +Jannette +Krysta +Latisha +Porsha +Dominque +Evangelina +Gillian +Ginger +Ivonne +Phylicia +Rosemarie +Sheri +Sonja +Violet +Alexia +Arielle +Cecelia +Dalia +Faviola +Hazel +Precious +Trina +Anthony +Betsy +Brittanie +Cori +Danica +Felisha +Flor +Kali +Karin +Magaly +Alaina +Alanna +Alba +Ashli +Britni +Eden +Eleanor +Jami +Katelin +Nicolle +Pa +Sarina +Shante +Stefani +Sunny +Vicki +Violeta +Yanira +Adilene +Aja +Alessandra +Alex +Andria +Bobbie +Christal +Delilah +Dena +Denice +Diamond +Dianne +Geraldine +Ivy +Janell +Janna +Kimberlee +Lupita +Maegan +Mandi +Marla +Mirna +Rena +Rosalie +Terri +Damaris +Dennise +Estrella +Juliet +Kristyn +Lacie +Loretta +Marta +Nelly +Nikita +Roberta +Salena +Alondra +Bernice +Cherise +Cherish +Domonique +Elissa +Jeanine +Jessenia +Johana +Kacey +Kathrine +Lia +Mari +Marjorie +Marlena +Marlyn +Nereida +Paloma +Rikki +Scarlett +Shari +Shawn +Ashlyn +Brigitte +Bryanna +Deidre +Genesis +Imelda +Krysten +Kyle +Louise +Mara +Rosie +Sherri +Skye +Terry +Tess +Tierra +Yajaira +Yesica +Adela +Christen +Christin +Elia +Francis +Jesse +Jose +Lynda +Mellisa +Myrna +Nidia +Robert +Tera +Azucena +Carley +Cassondra +Cathleen +Corrina +Dalila +Danelle +Desire +Emilia +Georgia +Gretchen +Gwendolyn +Hana +Janie +Jonathan +Jovanna +Kaela +Kassie +Maxine +Nikole +Pearl +Racheal +Serina +Tracie +Valentina +Amalia +Bobbi +Brian +Cameron +Elva +Eric +Geneva +Hollie +Janett +June +Kerri +Keshia +Kia +Kirstin +Kristian +Krystin +Leigh +Lizett +Lucero +Luisana +Mabel +Mellissa +Minerva +Porsche +Tamra +Tawnya +Tia +Tianna +Ursula +Alexandrea +Anamaria +Annmarie +Breann +Chanelle +Clare +Colette +Cora +Corrine +Cory +Daphne +Darcy +Glenda +Jackeline +Jamila +Jannet +Jenae +Juliette +Justin +Kelsie +Kindra +Latrice +Lila +Marian +Marylou +Mikaela +Mona +Monet +Ofelia +Portia +Raven +Richelle +Socorro +Stephaine +Stephenie +Therese +Valarie +Abby +Aida +Alena +Annabel +Brittaney +Brittnie +Cambria +Cari +Casie +Channing +Danae +Estella +Fallon +Kaley +Leeann +Loren +Malorie +Marianna +Meghann +Peggy +Rosalba +Selene +Annalisa +Britany +Christiana +Emilie +Fiona +Gena +Ileana +Inez +Joseph +Joshua +Kacy +Karli +Kasandra +Katelynn +Lizet +Lucille +Lyndsay +Marcy +Marsha +Maura +Sharlene +Shea +Sheryl +Stormy +Suzette +Tyler +Ada +Antionette +Bree +Brittnee +Chantelle +Charissa +Coral +Dannielle +Darline +Franchesca +Ilana +India +Kandace +Katheryn +Kenya +Kimber +Kourtney +Lee +Linh +Linsey +Lucila +Marquita +Mika +Rosana +Ryann +Tarah +Unique +Vickie +Yecenia +Ali +Araseli +Brandee +Cody +Cristy +Farrah +Helena +James +Jody +Julissa +Lani +Malissa +Marysol +Matthew +Mimi +Mirella +Mirian +Natali +Octavia +Petra +Phoebe +Pricilla +Racquel +Richard +Shanae +Thuy +Xochitl +Yazmin +Zulema +Alyce +Antonette +Charmaine +Deidra +Drew +Emerald +Fanny +Florence +Gabriel +Gianna +Hallie +Ilene +Isabella +Isela +Jaymie +Jeniffer +Jocelyne +John +Josie +Katlyn +Kori +Kyra +Magali +Malia +Marcie +Mariaelena +Maryanne +Mckenzie +Nakita +Reanna +Roseann +Sheree +Stephani +Thao +Trang +Vilma +Xiomara +Yanet +Allie +Alysa +Andrew +Ariane +Brittny +Bryana +Cassaundra +Cayla +Celine +Chante +Christi +Daniele +Darla +Denisha +Eboni +Edlin +Elaina +Emilee +Erendira +Eryn +Eugenia +Felecia +Gracie +Jacquelin +Jenniffer +Julieta +Kaylin +Leonela +Lisamarie +Liset +Madelyn +Mallorie +Manuela +Mariam +Mina +Myesha +Nicholas +Patsy +Raylene +Rosalva +Shanell +Sherrie +Soledad +Tami +Teri +Vannesa +Yuliana +Ami +Angelita +Ani +Anika +Aubree +Candi +Candis +Carli +Caryn +Dara +Ester +Gricelda +Harmony +Jeanna +Jerica +Jerrica +Jesus +Jodie +Johnna +Kiley +Kylee +Lakisha +Lupe +Margo +Mariaguadalupe +Marion +Michell +Nayeli +Nichelle +Rhea +Rosalyn +Venus +Windy +Aide +America +Anastacia +Annemarie +Blake +Brandon +Bridgett +Brigette +Britta +Danna +Dayana +Deana +Deirdre +Doreen +Eleni +Emely +Haydee +Isabelle +Jennefer +Ka +Kala +Kelsea +Kiana +Korina +Laquisha +Lauryn +Leandra +Leonor +Lesly +Logan +Maryam +Miesha +Nanci +Natashia +Patty +Penny +Princess +Rae +Renae +Rosanne +Rubi +Saira +Samatha +Saundra +Sequoia +Shameka +Skylar +Stacia +Van +Verenice +Wendi +Yuridia +Alesha +Alia +Amparo +Annika +Austin +Billie +Carlie +Carole +Chanell +Cheyanne +Cristine +Danyelle +Deserie +Elida +Ella +Elsie +Isaura +Jacqulyn +Jaimee +Joslyn +Kaci +Kailey +Kalyn +Keely +Kirstie +Kymberly +Lilliana +Lindy +Lisset +Lora +Lucinda +Lynnette +Malinda +Maren +Margot +Marguerite +Markie +Merissa +Mildred +Moriah +My +Nallely +Neda +Pang +Phuong +Raelene +Rosamaria +Sacha +Samara +Shanelle +Shasta +Star +Trinidad +Tyesha +Vera +Yer +Areli +Ashlei +Bao +Camellia +Camilla +Cecily +Concepcion +Cristin +Crystle +Dallas +Danika +Debora +Elysia +Eve +Gladis +Jewel +Jordyn +Joselyn +Kati +Katlin +Kaycee +Kayleen +Kaylie +Kendal +Kenna +Kesha +Kimiko +Kortney +Lynsey +Magen +Maranda +Maricella +Nickole +Raina +Rina +Ronisha +Rosalia +Roseanna +Sabina +Shanel +Shanika +Sue +Suzanna +Tamar +Tawni +Tosha +Alysse +Amina +Anel +Anh +Aria +Ava +Britani +Caprice +Carmelita +Chanda +Chantell +Deanne +Demetria +Desirea +Eloisa +Frankie +Gema +Hanh +Ida +Ivory +Jacquelynn +Janeth +Jeannine +Jenni +Julian +Juliann +Kadie +Kady +Kaleigh +Kalie +Karly +Karyn +Katarina +Kellye +Kiersten +Kristan +Laci +Ligia +Lizabeth +Lizzette +Lois +Luis +Marci +Marivel +Marlee +Marleen +Mattie +Mckenna +Nia +Noemy +Nydia +Paulette +Pilar +Priya +Rachell +Rosalind +Shanon +Shaunte +Shyla +Steffanie +Tammie +Tatianna +Trinity +William +Winnie +Xenia +Zulma +Aaron +Addie +Adelina +Alecia +Alix +Anarosa +Asha +Aspen +Benita +Breeann +Brisa +Brook +Deonna +Dionne +Estephanie +Evette +Fawn +Faye +Gisselle +Holli +Isis +Janny +Jeana +Jenee +Jesika +Joni +Jovita +Julieann +Julieanne +Kallie +Kandis +Karlie +Kasie +Kerrie +Kirby +Laila +Lakesha +Latara +Latonya +Layla +Liane +Lilly +Lola +Loni +Malisa +Malory +Marlen +Mayte +Melodie +Micah +Monserrat +Nicki +Phyllis +Piper +Prisma +Rachele +Riley +Romina +Sahar +Shamika +Shanda +Shandi +Shane +Shani +Shantell +Sharleen +Shira +Shoshana +Skyler +Sommer +Sondra +Stephannie +Susanne +Tabetha +Tahnee +Tameka +Tenisha +Thelma +Tierney +Tristin +Valencia +Vianey +Yael +Alesia +Apolonia +Bria +Britnee +Carlee +Carmel +Celena +Charisse +Choua +Cristen +Dani +Dania +Danisha +Deena +Deja +Destinee +Elana +Gail +Gisela +Gregory +Jasmyn +Jason +Jenessa +Jennica +Jeri +Jessi +Jovana +Karlee +Karrie +Katia +Kelsy +Kenia +Keren +Kevin +Krizia +Lacee +Ladonna +Lisbeth +Magda +Malika +Mariadelcarmen +Maritsa +Meggan +Meliza +Mercy +Meryl +Nakia +Natalee +Nathaly +Natosha +Nereyda +Noreen +Oralia +Porche +Quinn +Roxann +Santana +Sean +Shakira +Shoua +Starla +Steven +Sunshine +Tanesha +Teanna +Torrey +Tyra +Vivianna +Yahaira +Yasmine +Yoana +Zenia +Agnes +Alejandro +Alise +Allegra +Allyssa +Amaris +An +Anais +Analisa +Andra +Annalise +Anya +Arely +Arianne +Armida +Astrid +Beatris +Bettina +Britny +Britteny +Brynn +Candie +Carmela +Carmina +Catharine +Cathryn +Charis +Chasity +Chelsi +Cindi +Cinthya +Clarice +Codi +Collette +Crystina +Cyndy +Darci +Daryl +Deisy +Denae +Desarae +Diandra +Donisha +Elicia +Enedina +Evelia +Flora +Genna +Haleigh +Hali +Halley +Heaven +Hector +Ivana +Jacey +Jammie +Janina +Jeanie +Jenay +Jenica +Jordana +Juan +Juliane +Karena +Kattie +Kellyn +Kelsi +Kenisha +Kiara +Kristle +Krystyna +Kyrie +Lanisha +Lorie +Lorin +Luzmaria +Magan +Marcelina +Marielle +Marika +Mario +Mariza +Marlin +Maylene +Miguel +Misti +Nelida +Nicholle +Quiana +Rana +Rayna +Rhianna +Rosalina +Rosita +Sable +Samira +Savanah +Sergio +Shanice +Sharde +Sharonda +Shawnee +Sherie +Sindy +Siobhan +Soraya +Suzie +Tasia +Teena +Thea +Thomas +Tiera +Tonia +Valorie +Vania +Wanda +Whittney +Yasmeen +Zahra +Zaida +Zuri +Acacia +Adrina +Ahsley +Alejandrina +Alisia +Alyssia +Angelia +Anisha +Annamaria +Arica +Arleen +Ashlea +Aubrie +Aurelia +Beronica +Bessie +Bonita +Brett +Britnie +Brittnay +Calli +Candelaria +Catlin +Cheree +Christiane +Clarisa +Crystel +Daniell +Danyell +Delina +Devan +Dinah +Elba +Elyssa +Ernestina +Evonne +Farah +Felisa +Fernanda +Gwen +Hortencia +Iesha +Ilse +Itzel +Jacinda +Jackelyn +Jacob +Jamee +Janee +Jasmina +Jazzmin +Joi +Jourdan +Julisa +Jullian +Karolina +Kassi +Keli +Kenneth +Kera +Khadija +Kiera +Lan +Larisa +Latanya +Laticia +Lela +Leona +Letisia +Lianna +Lianne +Liseth +Liz +Lorina +Lyndsie +Lynne +Macy +Maia +Malerie +Margaux +Margie +Mariella +Mariko +Marilynn +Myisha +Patrick +Priscila +Randall +Raymond +Reena +Rowena +Sabra +Shanti +Shara +Shatara +Shavon +Shena +Sherice +Sidney +Sky +Tamera +Tana +Tanika +Tarra +Tawnee +Tegan +Theodora +Tiffiny +Timothy +Tory +Tristan +Vi +Yara +Abbie +Adeline +Adina +Adria +Alannah +Aline +Alishia +Anahi +Annabelle +Antonio +Apryl +Arcelia +Arika +Baby +Berta +Bethanie +Bliss +Breeana +Breeanna +Cameo +Camila +Candyce +Carmin +Cassey +Cendy +Channel +Charline +Cintia +Colby +Corie +Corrie +Danette +Danyel +Deandra +Delmy +Delores +Dylan +Edwina +Elisabet +Erikka +Erina +Erinn +Estefani +Francisco +Genoveva +Giana +Greta +Heidy +Ines +Isha +Ivan +Jaclynn +Jael +Janai +Janea +Jayne +Jenell +Jeni +Jenice +Jennafer +Jeremy +Jessa +Jesseca +Jessyca +Joleen +Julienne +Julietta +Kaelyn +Kameron +Kami +Kandi +Karisa +Kathie +Kathryne +Kaylynn +Keanna +Keesha +Kellee +Kennisha +Krystie +Krystine +Kyndra +Lanette +Laquita +Latosha +Leia +Lilibeth +Lindsie +Linnea +Lisseth +Llesenia +Lluvia +Loan +Lonnie +Lorna +Marin +Martin +Maryjane +Mayraalejandra +Meagen +Melaine +Melyssa +Michel +Mira +Misha +Nakeisha +Nakisha +Natassia +Nena +Nerissa +Nga +Nichol +Nisha +Patience +Porscha +Rafaela +Rebeka +Reem +Regan +Renata +Ronni +Rosalynn +Rosaura +Rossana +Sana +Sarahi +Sarena +Shae +Shalonda +Shannel +Shardae +Shiloh +Shireen +Sirena +Sulema +Suzy +Tayler +Teryn +Thu +Travis +Tyisha +Vida +Vienna +Wesley +Winter +Zachary +Zoila +Abbey +Adelaida +Adelita +Adriane +Alayna +Aleah +Alexi +Alida +Allissa +Amada +Amberly +Amira +Anamarie +Angelena +Anjali +Annalee +Ashlynn +Aura +Avalon +Avery +Ayesha +Brea +Brieanna +Brienna +Bryn +Caitlan +Camelia +Cami +Caressa +Carey +Carlos +Carlyn +Carolynn +Cathrine +Celene +Charleen +Chastity +Chau +Chee +Christianne +Claudette +Corine +Cortnie +Crista +Cristian +Cyndi +Dakota +Dany +Denielle +Destini +Dionna +Dung +Dustin +Eduardo +Elizabet +Ellesse +Elsy +Emi +Ernestine +Estefania +Evan +Fatimah +Frank +Gayle +Georgette +Gia +Ginny +Helene +Hong +Jacquline +Jan +Jaquelin +Jayde +Jazmyn +Jeanelle +Jeanett +Jene +Jenette +Jennette +Jensine +Jerry +Jessalyn +Jessicaann +Jina +Jo +Johnny +Jolie +Jonna +Jovan +Kaitlynn +Karie +Karolyn +Katerina +Kaula +Kaylene +Kayley +Keila +Keith +Khristina +Kinsey +Lachelle +Lakeshia +Laquesha +Lashanda +Lashawn +Lashonda +Latia +Libby +Liberty +Lilianna +Linette +Lisett +Lissett +London +Louisa +Lucerito +Luciana +Lucrecia +Lyssa +Madalyn +Madonna +Maral +Marilu +Maryanna +Melissaann +Mi +Mikayla +Milagros +Monay +Nacole +Nadya +Nanette +Nellie +Nely +Nhi +Nhung +Niccole +Niki +Nubia +Page +Parisa +Pearla +Penelope +Porcha +Rachelann +Raechel +Remy +Renita +Riana +Risa +Roselyn +Sahara +Saida +Samuel +Sandi +Sarita +Scott +Sera +Shabnam +Shala +Shanay +Shandra +Shantal +Sharell +Sharla +Shelia +Shellie +Shereen +Sherrell +Shiela +Sienna +Silva +Soleil +Soraida +Susannah +Sylvie +Talisha +Tashina +Teresita +Tiona +Tisha +Tomi +Torie +Velma +Yelitza +Zaira +Zoua +Aarika +Abril +Adele +Alea +Alixandra +Ally +Allyce +Allyn +Allyse +Amandeep +Amara +Anitra +Annelise +Ashliegh +Ashten +Aya +Azalia +Bianka +Blaire +Blythe +Bradley +Brielle +Britanny +Brittanee +Cady +Cali +Carin +Carmella +Carolann +Caterina +Chana +Charise +Charles +Charlie +Chelsee +Chelsy +Cherelle +Cherice +Cherrelle +Cherry +China +Chris +Chrystina +Claribel +Codie +Courteney +Cyntia +Cyrstal +Cystal +Daisey +Daisha +Danesha +Danya +Darcie +Deann +Delena +Denee +Desiray +Devina +Devonna +Devyn +Dixie +Dolly +Domenica +Dominica +Donald +Dorian +Ebonie +Edlyn +Elayne +Elda +Elianna +Elisse +Ellie +Ellyse +Elysa +Emelia +Emmy +Erlinda +Erma +Estelle +Farren +Fernando +Francheska +Guillermina +Han +Haylee +Hellen +Hien +Idalia +Jamilah +Janella +Janis +Jeffrey +Jenise +Jennah +Joanie +Joelene +Joey +Johnisha +Jorge +Kaelin +Kailee +Kalani +Kaleena +Kalia +Kalina +Kamie +Kamilah +Kandyce +Kao +Karine +Katey +Kathlyn +Katina +Katrice +Kaya +Kayce +Kaylyn +Keeley +Kerstin +Kianna +Kimberlyann +Krystel +Lane +Lanita +Laporsha +Lareina +Lashawna +Lashea +Latricia +Lavinia +Leesa +Lenora +Lisandra +Lissa +Loraine +Lynna +Lysette +Mae +Maegen +Mallori +Malori +Manda +Mariade +Mariateresa +Maricarmen +Maricruz +Markita +Marlana +Martine +Marygrace +Marylyn +Mehgan +Melani +Melany +Mele +Melynda +Merry +Michal +Milissa +Monisha +Muriel +Myeisha +Nastassia +Natividad +Neva +Nicholette +Niesha +Noelia +Nohely +Noor +Oanh +Phung +Pia +Polly +Poonam +Puja +Raeann +Rafael +Randa +Randee +Reva +Ricardo +Roma +Ronda +Ronnisha +Roseanne +Rosetta +Roya +Ruben +Ryanne +Sadaf +Samar +Samia +Santa +Saskia +Sayra +Seanna +Shanee +Shannan +Shannen +Shanta +Sharayah +Shaunna +Shavonne +Shawnta +Shawntay +Shawntel +Sheela +Sheng +Shirin +Shivani +Shley +Shonte +Silvana +Sparkle +Stacee +Stefany +Stepahnie +Stepanie +Talisa +Tam +Tatum +Tenaya +Tenesha +Tereza +Tesia +Tonisha +Torri +Torrie +Tracee +Tressa +Trevor +Tristen +Tyla +Valene +Valeri +Veronika +Veronique +Victor +Winona +Xochilt +Yezenia +Yvett +Zenaida +Aaryn +Adam +Afton +Akira +Aleena +Aleisha +Aleta +Alfredo +Alvina +Ambrosia +Anabell +Analee +Andraya +Andriana +Andrina +Anissa +Annel +Anneliese +Antonina +Ari +Arlette +Asheley +Ashleymarie +Aubri +Audrina +Avital +Aviva +Aymee +Aziza +Benjamin +Berenise +Bibiana +Brenae +Brynne +Caley +Candida +Carisa +Carl +Carlene +Carolyne +Casara +Cassy +Cecile +Channa +Charde +Chavon +Cherisa +Cherisse +Cherrie +Chi +Chiara +Chrissie +Coreena +Corissa +Cristi +Daria +Darleen +Delaney +Delicia +Della +Denis +Deseree +Destinie +Deven +Divya +Dona +Donielle +Donnisha +Dori +Dusti +Dyana +Ebelin +Echo +Edward +Elidia +Elina +Elysse +Erendida +Essence +Falisha +Felicity +Florencia +Garrett +Gemma +Ginelle +Giovana +Ha +Hailee +Harpreet +Henry +Hermelinda +Hollis +Hollyann +Idania +Irina +Ivon +Jacinta +Jacklynn +Jaleesa +Jannelle +Jannett +Jasmyne +Jaymee +Jazmyne +Jemma +Jenine +Jennelle +Jesslyn +Jocelynn +Johna +Jonelle +Judit +Juli +Kailyn +Kaitlan +Kalah +Kamisha +Kanisha +Karianne +Karyna +Kassondra +Kaydee +Kc +Keana +Keara +Keiko +Kelcie +Kellen +Keriann +Khadijah +Khalilah +Kimberli +Kimberlie +Kiri +Kirstyn +Kiyana +Kory +Kristena +Kyleigh +Kylene +Lanesha +Larena +Lashay +Latrisha +Laurissa +Leana +Leora +Letticia +Leyla +Lillie +Lindsy +Lissete +Lita +Livier +Loreal +Lyna +Lyndsi +Lynnae +Macie +Maciel +Maddie +Maddison +Maha +Maile +Maisha +Makayla +Mallary +Manisha +Mariadejesus +Marisha +Marizol +Markeisha +Marlo +Marrisa +Martiza +Marva +Marybel +Marybeth +Maryellen +Maryjo +Matilde +Mayela +Mechelle +Mee +Meilani +Meranda +Mindi +Minna +Misa +Monae +Mylinda +Nathan +Nathaniel +Nickie +Nicola +Nida +Noelani +Nohemi +Norah +Nou +Oliva +Omar +Pooja +Porschea +Raelyn +Raelynn +Randy +Rania +Raylena +Raynisha +Rebeccah +Rianna +Robbie +Ronika +Ronnie +Rosella +Rosina +Rosy +Salvador +Samanthia +Sami +Sammantha +Santina +Saray +See +Serenity +Shaheen +Shahrzad +Shaleen +Shalynn +Shandy +Shanita +Shantelle +Sharae +Sharday +Sharee +Shawanna +Shawnna +Shawnte +Shay +Sheridan +Shina +Silver +Starr +Steffani +Sully +Sulma +Sumer +Suzana +Talar +Talitha +Tameika +Tamisha +Tanaya +Tasheena +Tavia +Teal +Tempest +Terese +Teressa +Terina +Tessie +Thalia +Thanh +Tiffanyann +Tomiko +Tony +Tranisha +Treasure +Tyanna +Valery +Vanna +Vincent +Vivien +Vy +Yanett +Yen +Yeni +Yuriana +Zaneta +Zinnia +Zury +Agueda +Aidee +Aime +Akilah +Alberta +Albina +Aleasha +Alegandra +Aleyda +Aliya +Aliza +Allisha +Alona +Amal +Amaya +Amberlee +Ambra +Ambria +Amee +Amiee +Amrit +Anaalicia +Analise +Anastassia +Anessa +Anisa +Argelia +Arlena +Arlinda +Arthur +Aryn +Ashlan +Ashle +Asley +Audriana +Aundrea +Ayana +Azalea +Azure +Belia +Bilma +Biridiana +Bo +Bonny +Breonna +Bricia +Brieann +Brionna +Briseida +Britne +Britt +Bryanne +Byanka +Cailin +Calista +Calley +Candra +Caren +Carleen +Carleigh +Carlin +Cary +Casaundra +Cassady +Celenia +Celestine +Cesilia +Chan +Chanae +Channell +Chantae +Chara +Charli +Charmayne +Chassidy +Chaunte +Chere +Chiquita +Christel +Christianna +Christyna +Clair +Coleen +Courtnie +Cruz +Crystall +Cydney +Dacia +Dahlia +Danee +Danita +Danny +Darby +Dawnielle +Deeanna +Delana +Denia +Dennice +Denys +Desaree +Devorah +Dinora +Divina +Domingue +Dominic +Dusty +Edgar +Eleana +Ember +Emilyann +Emmeline +Ermelinda +Eryka +Esperansa +Esthela +Felice +Gardenia +Garine +Gary +Genavieve +Goldie +Grabiela +Gresia +Grisel +Hang +Heba +Herlinda +Herminia +Hester +Hoa +Holland +Holley +Ian +Ina +Indira +Ivanna +Jacqlyn +Jacquelina +Jahaira +Jameka +Jamela +Jamelia +Jamika +Janaya +Janaye +Janene +Janey +Janiece +Janira +Janisha +Jany +Jaquelyn +Jasmen +Jaya +Jaycie +Jazzmine +Jenefer +Jera +Jewell +Jimena +Jimmy +Joe +Johnanna +Jonique +Jonni +Jordanne +Josselyn +Julio +Kadi +Kaili +Kaisha +Kalena +Kalin +Kalisha +Kally +Kalynn +Kamille +Kamryn +Kaori +Karia +Kariann +Karlyn +Karol +Karri +Kasaundra +Kasha +Kasondra +Kassy +Kateri +Katharyn +Katherin +Katheryne +Katiana +Kavita +Kay +Kaylen +Keegan +Keena +Keira +Kelcey +Kellyanne +Kendria +Kensey +Kersten +Kesia +Keyla +Khanh +Kiah +Kierra +Kiesha +Kimberlyanne +Kimberlyn +Kimmy +Kiran +Kirsty +Kitty +Korinna +Korrie +Kris +Krishna +Krissy +Kristeen +Kristianna +Krystelle +Lacresha +Laken +Lakiesha +Lakita +Laneisha +Laree +Lasha +Lashawnda +Latavia +Latonia +Lauralee +Laure +Lauri +Laurin +Lavren +Leeanna +Leeanne +Leigha +Leighann +Lenae +Leslee +Letisha +Letitia +Letty +Lezlie +Lien +Lili +Linna +Lisabeth +Lise +Lorelei +Lyn +Lynae +Lynsie +Machelle +Madelaine +Makenzie +Malarie +Malina +Mandeep +Mandie +Manuel +Marche +Mariaangelica +Mariadel +Mariann +Marielena +Marilin +Marily +Mark +Markesha +Marleni +Marqui +Marrissa +Martinique +Marvin +Maryhelen +Marylu +Marylynn +Mccall +Megen +Melissia +Melodee +Melonie +Mercedez +Michela +Mikki +Milan +Millie +Minnie +Miracle +Mitzi +Monette +Myeshia +Mylinh +Nai +Nansi +Nastassja +Natacha +Nazia +Nidya +Nikia +Nocole +Nova +Nuvia +Odette +Opal +Passion +Paul +Pedro +Perlita +Philip +Qiana +Quanisha +Quyen +Ramon +Rasheeda +Raul +Raychel +Reba +Rebbecca +Rebekkah +Rheanna +Ricci +Ricki +Rivka +Roberto +Ronald +Ronnesha +Rosaelena +Rosalee +Roslyn +Rufina +Ruthann +Sabryna +Salma +Sammy +Sandeep +Sandhya +Sarra +Savina +Scarlet +Seema +Sela +Shadae +Shade +Shalene +Shalina +Shalon +Shaneka +Shanette +Shaniece +Shanise +Sharina +Shaundra +Shawnice +Shayda +Shaylyn +Shayne +Shelli +Sherilyn +Sherine +Sheyla +Shonna +Shyann +Sindia +Skyla +Soila +Sokhom +Sophana +Sophy +Spencer +Steffany +Stephine +Stevi +Suzan +Taisha +Tanasha +Taniesha +Tanna +Tannia +Tashia +Tatjana +Tatyana +Tawana +Teaira +Teisha +Tiarra +Tiesha +Tiffney +Topacio +Tova +Toya +Tran +Tuesday +Turquoise +Tuyen +Tyresha +Valentine +Vaness +Vaneza +Vanity +Velvet +Venita +Vianca +Vivianne +Vivienne +Wilma +Xuan +Yaneli +Yasmina +Yee +Yeng +Ying +Yomaira +Yury +Zara +Zayra +Zenobia +Zoraida +Zuleyma +Jessica +Ashley +Jennifer +Amanda +Stephanie +Sarah +Elizabeth +Nicole +Melissa +Brittany +Vanessa +Michelle +Christina +Samantha +Lauren +Danielle +Tiffany +Megan +Heather +Amber +Maria +Crystal +Rachel +Laura +Emily +Rebecca +Kimberly +Katherine +Andrea +Erica +Sara +Diana +Natalie +Cynthia +Jacqueline +Amy +Alexandra +Chelsea +Courtney +Victoria +Monica +Lisa +Alyssa +Kayla +Christine +Angela +Veronica +Nancy +Kelly +Jasmine +Erika +Brenda +Alicia +Mayra +Jamie +Cassandra +Brittney +Erin +Allison +Angelica +Kristen +Caitlin +Anna +Mary +Katie +Patricia +Kathryn +Kristina +Sandra +Shannon +Daisy +Cindy +Ana +Monique +Adriana +Julie +Lindsay +Brianna +Karina +Denise +Lindsey +Yesenia +Kristin +Claudia +Kelsey +Leslie +Krystal +Marissa +Joanna +Desiree +Gabriela +Valerie +Karen +Priscilla +Jenna +Julia +Bianca +Cristina +Sabrina +Evelyn +Hannah +April +Kathleen +Catherine +Linda +Natasha +Wendy +Whitney +Alexis +Janet +Katrina +Guadalupe +Rosa +Briana +Holly +Tara +Melanie +Taylor +Jeanette +Teresa +Alexandria +Raquel +Nichole +Alejandra +Jenny +Brooke +Yvette +Olivia +Gina +Morgan +Felicia +Sophia +Justine +Tanya +Molly +Leah +Sonia +Meghan +Kaitlin +Alison +Stacy +Jillian +Martha +Katelyn +Kendra +Jaclyn +Candice +Gloria +Leticia +Susan +Dana +Breanna +Grace +Dominique +Stacey +Krista +Ashlee +Jasmin +Karla +Candace +Roxanne +Tina +Margaret +Renee +Kaitlyn +Angelina +Brandi +Marlene +Janelle +Kara +Liliana +Maribel +Gabrielle +Tracy +Irene +Rachael +Carla +Casey +Caroline +Ariana +Deanna +Esmeralda +Kristine +Brandy +Blanca +Britney +Carmen +Susana +Marisol +Emma +Theresa +Heidi +Lorena +Sandy +Tatiana +Bethany +Marisa +Melinda +Yvonne +Cecilia +Jazmin +Donna +Jocelyn +Alma +Marie +Jacquelyn +Alisha +Esther +Robin +Sasha +Abigail +Johanna +Mallory +Carolina +Audrey +Carolyn +Virginia +Beatriz +Sharon +Rocio +Tamara +Sierra +Rebekah +Norma +Ruth +Margarita +Claire +Araceli +Elaine +Kelli +Marina +Silvia +Barbara +Sylvia +Paige +Anne +Eva +Lacey +Ruby +Isabel +Carly +Pamela +Deborah +Yolanda +Roxana +Haley +Nina +Kirsten +Rachelle +Helen +Nadia +Elena +Alice +Daniela +Jordan +Lizette +Kathy +Regina +Adrienne +Jaime +Miriam +Carrie +Angel +Camille +Elise +Lydia +Shawna +Diane +Meagan +Melody +Mercedes +Maricela +Naomi +Rochelle +Ashleigh +Stefanie +Michele +Noemi +Ebony +Edith +Alexa +Rose +Chelsey +Marisela +Amelia +Aimee +Darlene +Maritza +Tania +Elisa +Carina +Robyn +Trisha +Janette +Kate +Bridget +Lucia +Savannah +Vivian +Anita +Carissa +Cristal +Elyse +Destiny +Frances +Viviana +Annie +Miranda +Bonnie +Jeannette +Corina +Summer +Allyson +Arlene +Clarissa +Judith +Krystle +Lillian +Marilyn +Kristy +Sydney +Autumn +Yadira +Charlene +Suzanne +Alana +Ariel +Juliana +Griselda +Hilary +Adrianna +Ann +Colleen +Caitlyn +Iris +Noelle +Connie +Jane +Kari +Annette +Jade +Judy +Elisabeth +Madeline +Roxanna +Yessenia +Brittani +Ellen +Tabitha +Antoinette +Cassie +Celeste +Kelley +Tasha +Carol +Eileen +Jazmine +Serena +Luz +Misty +Brianne +Chanel +Geraldine +Toni +Charlotte +Cheryl +Hillary +Janice +Natalia +Simone +Alissa +Maira +Meredith +Christy +Madison +Irma +Jessie +Kellie +Nora +Angie +Josephine +Mia +Paula +Randi +Sally +Genevieve +Latoya +Aubrey +Kylie +Mai +Christa +Francesca +Karissa +Lucy +Anastasia +Celia +Dawn +Juanita +Perla +Gabriella +Hayley +Joanne +Rita +Cara +Katharine +Sheila +Taryn +Gladys +Jaqueline +Lily +Reyna +Rosemary +Bailey +Lizbeth +Mariana +Julianne +Nadine +Shelby +Joy +Joyce +Kassandra +Sofia +Stephany +Tammy +Anabel +Nikki +Shauna +Jill +Olga +Shirley +Christian +Janae +Mariela +Paola +Tracey +Eunice +Ivette +Tiana +Breanne +Ericka +Kasey +Grecia +Adilene +Ashly +Chloe +Leanna +Alisa +Bridgette +Cortney +Kira +Larissa +Mindy +Myra +Nathalie +Belinda +Genesis +Kristie +Lesley +Valeria +Alina +Debbie +Jaimie +Jennie +Rebeca +Tessa +Daniella +Joana +Kristi +Laurel +Michaela +Shayna +Celina +Fabiola +Hailey +Maricruz +Staci +Stacie +Mackenzie +Alyson +Dorothy +Georgina +Kaylee +Lorraine +Brenna +Lena +Lizeth +Lori +Shaina +Sherry +Christie +Jacklyn +Juana +Keri +Maggie +Marcela +Beatrice +Fatima +Lara +Paulina +Sheena +Debra +Janine +Lourdes +Nicolette +Arielle +Graciela +Mandy +Sonya +Ashlie +Beverly +Leanne +Maya +Shanice +Aurora +Bernadette +Chantel +Katy +Lissette +Magdalena +Michael +Anais +Belen +Dianna +Flor +Kendall +Marcella +Clara +Corinne +Eliana +Ingrid +Melisa +Nataly +Pauline +Precious +Tiara +Antonia +Breana +Lyndsey +Asia +Dina +Kaila +Ryan +Shana +Alysha +Angelique +Chrystal +Cinthia +Elsa +Faith +Jenifer +Lisette +Shanna +Vicky +Aracely +Athena +Casandra +Chelsie +Ciara +Desirae +Devon +Kayleigh +Rosanna +Rosario +Salina +Devin +Jackie +Janessa +Berenice +Bertha +Delia +Justina +Tiffani +Tonya +Alexander +Alondra +Arianna +Cathy +Lacy +Lea +Dolores +Julianna +Viridiana +Zoe +Dalia +Esperanza +Giselle +Iliana +Jessika +Kimberlee +Kyla +Lynn +Maryann +Selina +Talia +Tiffanie +Tricia +Aileen +Ashely +Hilda +Josefina +Kim +Lilia +Becky +Catalina +Lynette +Sarai +Shelly +Alanna +Chantal +Elvia +Hanna +Jena +Kourtney +Luisa +Rosalinda +Shelley +Stevie +Traci +Jana +Joann +Jolene +Latasha +Thalia +Eliza +Francine +Johana +Kristal +Krysta +Mariel +Paulette +Sarina +Stella +Tawny +Yasmin +Candy +David +Doris +Julissa +Reina +Betty +Blair +Christopher +Ivonne +Jayme +Jodi +Maureen +Tanisha +Tori +Vanesa +Cheyenne +Daniel +Hope +Jean +Kerry +Leilani +Kacie +Latisha +Lidia +Susie +Terra +Yajaira +Brittanie +Catrina +Corinna +Danica +Dora +Elisha +Elvira +Laurie +Melina +Paris +Alba +Alexia +Alysia +Charity +Consuelo +Emerald +Jami +Kerri +Mabel +Ramona +Shayla +Sophie +Brittni +Brittny +Cassidy +Cierra +Dulce +Francisca +Jesenia +Marlena +Monika +Rosalie +Sade +Stefani +Tia +Alaina +Alessandra +Ashton +Brandie +Eden +Joan +Keisha +Lilian +Marianne +Noel +Alyse +Cecelia +Chandra +Denisse +Janay +Kimberley +Leann +Micaela +Rosemarie +Yessica +Audra +Bernice +Dayna +Elva +Evelin +Gillian +Janel +Jose +Lia +Adrian +Adrianne +Amie +Constance +Emilia +Kristyn +Magaly +Mariah +Martina +Nelly +Sadie +Savanna +Aisha +Betsy +Cherie +Elissa +Katelynn +Lana +Mona +Rhiannon +Violeta +Alycia +Beth +Breann +Bryanna +Ciera +Cori +Ivy +Jackeline +Jenelle +Leila +Liana +Lupita +Mariam +May +Natali +Selena +Tianna +Venessa +Vicki +Abby +America +Britni +Christen +Delilah +Jaleesa +Janell +Joshua +Katarina +Kathrine +Lizet +Madeleine +Mirna +Rene +Rosie +Sonja +Tabatha +Violet +Alexandrea +Brandee +Deja +Diamond +Jeannie +Jerrica +Kaley +Leandra +Mara +Meaghan +Nikole +Pa +Rena +Rosio +Serina +Xochitl +Yanira +Andreina +Andrew +Christin +Damaris +Estela +Fiona +Francis +Gwendolyn +Jesica +Kandace +Kelsi +Kyra +Lee +Liza +Shantel +Teri +Terri +Brittnee +Gretchen +Kali +Karly +Krystina +Mellissa +Nikita +Paloma +Rikki +Shea +Tierra +Tracie +Valarie +Alex +Annamarie +Brigitte +Britany +Christal +Davina +Georgia +Jannette +Jerica +Joelle +Katelin +Kyle +Lyndsay +Magali +Marla +Marta +Racquel +Richelle +Skye +Yuri +Alena +Allie +Brigette +Cassondra +Corrina +Cory +Emilie +Hazel +Janna +Jesse +Kacey +Loren +Malissa +Marjorie +Mireya +Mollie +Renae +Sheri +Tarah +Tyler +Ada +Ambar +Annabel +Ava +Brittaney +Cameron +Danae +Deisy +Domonique +Estrella +Jeanne +Kaitlynn +Rosalba +Tamika +Trina +Xenia +Amalia +Anjelica +Ashli +Corey +Deana +Deandra +Eleanor +Felisha +Hana +Hollie +Inez +Jeanine +Jody +Katlyn +Kiersten +Kylee +Lakeisha +Mari +Marlen +Maxine +Myrna +Patrice +Pearl +Phylicia +Portia +Susanna +Vannessa +Aja +Callie +Cecily +Chantelle +Cherise +Denisha +Dominque +Kirstin +Lina +Lucinda +Maegan +Rosalia +Sharlene +Siobhan +Socorro +Terry +Yesica +Allyssa +Christiana +Daphne +Farrah +Faviola +Jessenia +Julieta +Kaela +Karin +Krysten +Mandi +Porsha +Pricilla +Rhonda +Suzanna +Ali +Andria +Annika +Annmarie +Anthony +Asha +Cathryn +Cayla +Coral +Gianna +Harmony +Heidy +Janie +Josie +June +Kasandra +Kiana +Kirstie +Latrice +Leeann +Lesly +Lila +Malia +Marlyn +Raylene +Tawni +Aida +Anel +Angelita +Astrid +Cassaundra +Chanelle +Cheri +Cherish +Dalila +Danika +Darla +Deidre +Dianne +Edna +Eric +Fanny +Ginger +Glenda +Helena +Ida +Jaimee +James +Kala +Karli +Kelsie +Kenia +Kori +Lacie +Marcia +Mckenzie +Melyssa +Mimi +Minerva +Shawn +Sondra +Stephani +Xiomara +Yer +Alia +Angeline +Ashlyn +Azucena +Bree +Danna +Darcy +Diandra +Ileana +Ilene +Imelda +Jannet +Jenae +Jenniffer +Kia +Lauryn +Layla +Marian +Matthew +Maura +Mirella +Nereida +Richard +Rosalina +Tahnee +Tamra +Bao +Bobbi +Britnee +Carley +Charmaine +Cristine +Danelle +Dania +Edlin +Elaina +Evangelina +Giovanna +Isabelle +Jesus +Joselyn +Kandice +Lora +Lynda +Mckenna +Nidia +Princess +Raven +Roberta +Shanae +Shante +Tawnya +Vannesa +Amparo +Ariane +Ayla +Bobbie +Cari +Crista +Desire +Elana +Elia +Elida +Elsie +Erendira +Ester +Geneva +India +Isis +Jalisa +Janett +Jovanna +Kaci +Kassie +Krystin +Lisset +Loretta +Lupe +Margie +Marilynn +Marsha +Mellisa +Mirian +Ofelia +Priscila +Whitley +Yazmin +Yuliana +Alesha +Alix +Analisa +Anastacia +Annalisa +Cambria +Carlie +Caryn +Clare +Concepcion +Denice +Eloisa +Fernanda +Jazzmin +John +Juliet +Keila +Keshia +Kortney +Kristian +Loni +Madelyn +Mariadejesus +Mikayla +Monet +Nicolle +Nubia +Rosamaria +Rosana +Sequoia +Sherri +Stacia +Tayler +Tess +Trista +Ursula +Yasmine +Adela +Alecia +Annemarie +Antionette +Aubree +Austin +Billie +Carli +Cody +Darline +Dena +Denae +Elysia +Eve +Gisela +Gracie +Jacquelin +Jazmyn +Jeniffer +Jonathan +Juliette +Kalie +Karyn +Kati +Kenya +Lucille +Lynsey +Malinda +Malorie +Marcy +Marianna +Mikaela +Nellie +Noemy +Patty +Petra +Phoebe +Racheal +Rachele +Rayna +Reanna +Rosalyn +Roseann +Roseanne +Salena +Scarlett +Sue +Suzette +Unique +Yanet +Allegra +Alysa +Alyssia +Avery +Bridgett +Brittnie +Brook +Cathleen +Christi +Colette +Crystle +Dani +Destinee +Dolly +Elyssa +Fallon +Florence +Franchesca +Frankie +Gricelda +Isela +Jayne +Kailey +Lilly +Lizett +Lizzette +Louise +Marilu +Mildred +Mina +Nallely +Peggy +Riley +Rina +Robert +Sheryl +Sunny +Tamar +Tanesha +Tera +Therese +Winnie +Alisia +Annelise +Ashlei +Bryana +Carlos +Cindi +Corrine +Cristian +Dannielle +Dayana +Doreen +Estefania +Ilana +Janee +Jeannine +Jenee +Johnna +Justin +Kalyn +Katheryn +Kaylyn +Kerrie +Kevin +Kimber +Lilliana +Lisbeth +Lucero +Margo +Marquita +Michell +Moriah +Samatha +Saray +Sean +Selene +Shira +Stefany +Yecenia +Allysa +Amaris +Anahi +Ani +Anissa +Aurelia +Ayesha +Collette +Daniele +Dara +Deirdre +Estella +Gemma +Ilse +Isaura +Jeanna +Joleen +Joni +Joseph +Kailee +Karlie +Katlin +Kay +Keely +Krystine +Lianna +Lindy +Linh +Lucerito +Maile +Maryam +Marylou +Marysol +Nathaly +Patsy +Paul +Rosalva +Ryann +Saira +Samara +Saundra +Shari +Stevi +Taja +Tatianna +Tory +Zoila +Alysse +Anamaria +Anh +Areli +Brieanna +Cora +Corissa +Danyelle +Daryl +Evangeline +Gema +Haylee +Itzel +Jackelyn +Jaquelyn +Jasmyn +Jeana +Jessyca +Julian +Juliann +Kady +Kayleen +Ladonna +Larisa +Leana +Leonela +Lizabeth +Mariaelena +Mariella +Marion +Marleen +Mattie +Meghann +Monisha +Navil +Nayeli +Nisha +Octavia +Priya +Roni +Sheree +Tami +Tasia +Thelma +Verenice +Zulema +Zulma +Alise +Anya +Arely +Breeann +Brian +Brisa +Brittnay +Brynn +Carmela +Celena +Cinthya +Claribel +Corie +Danette +Debora +Deidra +Delfina +Emilee +Hallie +Holli +Jacob +Jacquelynn +Janeth +Jannie +Jenessa +Jennyfer +Jerika +Jesika +Juan +Julieann +Ka +Karisa +Kaylene +Kaylin +Kenna +Kyrie +Lani +Leigh +Leigha +Leonor +Lilibeth +Lisamarie +Lois +Luisana +Lynnette +Magen +Malisa +Mallorie +Mariko +Marivel +Markie +Melodie +Mika +Mitzi +Neyva +Pang +Phyllis +Porsche +Raechel +Rosaura +Rosita +Saida +Sascha +Shameka +Shanel +Shasta +Sirena +Susannah +Tashina +Tristan +Valentina +Vickie +Wendi +Adriane +Alejandro +Anika +Annabelle +Antonette +Ashlynn +Britteny +Candi +Candis +Carmina +Charissa +Chaya +China +Cydney +Daizy +Dallas +Dennise +Destinie +Francisco +Greta +Heaven +Isabella +Ivana +Jazmyne +Jenni +Jessi +Jovita +Kaitlan +Kathryne +Kaycee +Kellen +Logan +Louisa +Maranda +Marci +Marguerite +Mark +Marrissa +Mayte +Mercy +Myesha +Neda +Nicholas +Nicholle +Nohemi +Pilar +Raeann +Raina +Rhea +Romina +Ronni +Rosalind +Rosanne +Roseanna +Rubi +Shanee +Shani +Shanika +Shavonne +Soledad +Starla +Susanne +Susy +Tawnee +Tawney +Tenaya +Thea +Vania +Wanda +Yasmeen +Yen +Yeraldin +Yuriko +Acacia +Agnes +Alejandrina +Alesia +Ami +An +Anjali +Annalise +Aura +Babygirl +Berta +Britny +Camila +Candyce +Chelsi +Cintia +Clarice +Codi +Corine +Cristy +Cyrstal +Delmy +Elba +Ernestina +Eryn +Estephanie +Eugenia +Fawn +Flora +Grisel +Jammie +Janey +Jasmyne +Jolie +Joslyn +Kaelyn +Kelcie +Kelsea +Keren +Kiera +Kristan +Kyndra +Lacee +Laila +Lanette +Laquisha +Laquita +Lillie +Lisett +Lissett +Madalyn +Manuela +Margot +Meggan +Micah +Nakita +Natassia +Ngoc +Nhi +Nia +Nichelle +Niki +Porscha +Raisa +Raychel +Sabina +Shaniece +Shay +Sky +Skylar +Spencer +Stephenie +Tatum +Teena +Teresita +Thuy +Timothy +Trang +Vanna +Vianca +Xochilt +Yahaira +Zenia +Adina +Aide +Amberly +Amina +Amira +Arianne +Aubrie +Aundrea +Brandon +Briseida +Britta +Cameo +Carey +Carlee +Carole +Carolyne +Chanell +Channel +Corrie +Cruz +Danyel +Deisi +Delaney +Demetria +Deonna +Devina +Devyn +Deyanira +Eboni +Edlyn +Elicia +Erinn +Estefany +Evette +Gabriel +Gena +Haydee +Ines +Jacquelyne +Jan +Janai +Janiece +Jenica +Jesseca +Jodie +Jorge +Julienne +Kacy +Kadie +Kaleigh +Kami +Karie +Karlee +Kaylen +Kayley +Kiara +Kierra +Kimiko +Kindra +Kymberly +Lakesha +Leena +Leona +Lianne +Linnea +London +Luis +Magda +Marcelina +Marcie +Maryanne +Natalee +Nereyda +Nou +Penny +Phuong +Pooja +Porcha +Quinn +Rachell +Raelene +Reena +Rossana +Roxane +Roya +Sahar +Sarena +Shanda +Shanelle +Shantell +Shara +Shaunna +Shyla +Sindy +Starr +Stephaine +Synthia +Tameka +Thania +Tonia +Tonisha +Torrey +Tosha +Travis +Trinity +Valencia +Vera +Victor +Vilma +Wesley +Adeline +Afton +Ahsley +Amada +Analicia +Andra +Andreana +Annamaria +Annel +Antonio +Arleen +Aubry +Benjamin +Bianka +Blake +Brittini +Camilla +Carolann +Casie +Celene +Celine +Chana +Chanda +Chantell +Charleen +Charles +Chastity +Cheyanne +Chiara +Courtnie +Danisha +Deena +Devan +Deysi +Dionna +Elina +Elisabet +Ellie +Estelle +Felecia +Gia +Jalissa +Janny +Javier +Jeanie +Jenell +Jeremy +Jordana +Kalia +Karena +Kasie +Kaylie +Keeley +Kenisha +Kisha +Klarissa +Korina +Krystyna +Kyrsten +Lakisha +Leia +Linsey +Lisseth +Liz +Lynne +Marika +Marin +Marlee +Marycruz +Merissa +Midori +Minna +Mira +Muriel +Myeisha +Myeshia +Myisha +Nakia +Neha +Neiva +Nickole +Nuvia +Palmira +Raelyn +Rana +Rashelle +Rhianna +Sacha +Sahara +Sharde +Sharina +Shelli +Sherrie +Shiloh +Steven +Teal +Thomas +Tiera +Tisha +Tyra +Vanity +William +Windy +Zaira +Aaron +Abbey +Adelaida +Alayna +Alexi +Alixandra +Aliza +Amara +Andriana +Angella +Araseli +Arcelia +Ariella +Armida +Baby +Beatris +Blythe +Caitlan +Caprice +Carin +Carmel +Celestina +Charlee +Chasity +Cherry +Choua +Chynna +Cristin +Daniell +Danyell +Daysi +Delores +Dinora +Dionne +Dorian +Edwina +Elizabet +Emmy +Estefani +Evan +Giana +Iman +Jacklynn +Jacque +Jamika +Jazzmine +Jenise +Jocelynn +Kai +Kalina +Kallie +Katerina +Kathlyn +Katia +Katina +Kaylah +Kellee +Kera +Kiley +Kristiana +Krizia +Lakeshia +Lanae +Latonya +Leeanne +Lissa +Livier +Luciana +Lucila +Maia +Malori +Maral +Margaux +Mariaguadalupe +Maricella +Marielle +Marisha +Maritsa +Marley +Mele +Mercedez +Michal +Miguel +My +Natashia +Nydia +Penelope +Polly +Porche +Ronda +Ronisha +Samira +Sana +Sarita +Shae +Shala +Shalonda +Shanell +Shaunte +Shawnee +Sommer +Stacee +Steffanie +Stephine +Suzan +Tabetha +Tam +Tenisha +Thu +Tierney +Tiffiny +Tristen +Tristin +Veronique +Yanine +Yuka +Abril +Adelina +Aleah +Aline +Amethyst +Aria +Ashlea +Baylee +Berlin +Brett +Bria +Brie +Brigid +Brittanee +Brooklyn +Bryn +Cami +Carmelita +Catarina +Catlin +Channing +Chau +Chelsy +Clarisa +Daisey +Dakota +Darci +Darcie +Deedee +Deseree +Destiney +Donielle +Ebonie +Edgar +Ella +Elysa +Elysse +Emely +Erikka +Falisha +Farah +Faye +Felicity +Gail +Gilda +Gisel +Gisele +Guillermina +Hali +Hanh +Hortencia +Idalia +Iesha +Jacinda +Jamee +Jamesha +Jamila +Janina +Jannelle +Jasmina +Jaymie +Jessicca +Jina +Johnisha +Joi +Jordyn +Jovana +Juliane +Julisa +Kaitlen +Kalani +Kameron +Kamille +Kandis +Kanisha +Karol +Karrie +Kassondra +Katherin +Kattie +Kaycie +Kendal +Kenneth +Keyla +Kristel +Lanisha +Larae +Latanya +Laureen +Linette +Linna +Lola +Lorna +Mario +Markita +Maryjane +Mee +Mena +Misti +Monserrat +Montana +Naima +Nalleli +Niccole +Nika +Parisa +Patrick +Perlita +Rashell +Rayleen +Rebekka +Renita +Roberto +Sable +Sage +Samone +See +Shamika +Shannel +Shannen +Sharayah +Shardae +Sharee +Sharla +Sharleen +Shavon +Shawnta +Shoua +Sidney +Soraya +Steffany +Stephania +Sterling +Suzie +Sydnie +Talisa +Tawnie +Tiffaney +Tran +Veronika +Vianney +Whittney +Yoana +Zachary +Zahra +Zuri +Abbie +Adam +Adelaide +Adele +Adreana +Alan +Alberto +Alexsandra +Alyce +Alyshia +Amberlee +Amee +Anakaren +Anamarie +Angelia +Angelic +Anhthu +Anisa +Anisha +Aryn +Ashanti +Ashle +Ayana +Bailee +Benita +Berenise +Beronica +Brandice +Breeanna +Breonna +Brieana +Brielle +Bryan +Callan +Candance +Candida +Carlene +Cassi +Cesilia +Champagne +Chante +Charlena +Cherelle +Chris +Christianna +Chrystina +Colby +Crysta +Cyndi +Dafne +Daryn +Deserie +Desiray +Desirea +Deziree +Donisha +Drew +Echo +Eilene +Elora +Elysha +Ember +Eulalia +Genessis +Genna +Geri +Gisselle +Gladis +Hellen +Holland +Hong +Ilda +Imani +Indira +Isabell +Ivanna +Jacklin +Jacquline +Jacqulyn +Jamia +Janelly +Jannett +Jaquelin +Jason +Jehan +Jenevieve +Jeni +Jenine +Jeri +Jerry +Jo +Jocelyne +Jonelle +Jonna +Kaelin +Karyna +Kassi +Kavita +Kaya +Kayli +Kaylynn +Kaytlin +Keandra +Keanna +Keli +Kellyn +Keona +Kerstin +Keyana +Keyanna +Kianna +Kirby +Krysti +Laci +Lakia +Laporsha +Leeanna +Lesli +Lindley +Lindsy +Macy +Maddison +Mallori +Malory +Manuel +Marbella +Markesha +Marlin +Martin +Martine +Marybel +Marygrace +Marylin +Mayraalejandra +Meilani +Melia +Mi +Michela +Miesha +Mindi +Miracle +Monic +Montserrat +Mychal +Nadya +Nakisha +Nary +Neiba +Nicki +Ninfa +Noelia +Norah +Noreen +Oliva +Oriana +Oyuki +Puja +Queena +Quiana +Rabecca +Ramon +Raya +Rebecka +Remy +Roxann +Roxie +Ruthie +Salome +Sandi +Sarahi +Sarrah +Savana +Shane +Shaniqua +Shannan +Shaquita +Sharron +Shawnice +Shawntel +Shaylene +Shaylyn +Sheela +Shenelle +Sheng +Shereen +Shoshana +Sienna +Simona +Skyler +Steffi +Stormy +Taleen +Tannia +Thanh +Thao +Trinidad +Tyesha +Vaness +Vi +Vianey +Yareli +Yomaira +Yuridia +Zoua +Abilene +Akilah +Amanada +Ammy +Analise +Andrina +Apryl +Argelia +Arlette +Arlin +Armando +Armine +Ashleyann +Azalea +Bella +Blaire +Blia +Bliss +Brienna +Britani +Britt +Brittanny +Brittiany +Byanca +Caley +Candelaria +Carolynn +Carrissa +Cesia +Charisse +Charla +Charli +Chelsee +Chenoa +Cherrelle +Chrissy +Christyn +Clair +Claudine +Cleo +Coleen +Courtnee +Cyndy +Daisha +Danya +Darcey +Darleen +Dasha +Deicy +Demetra +Demi +Denys +Deondra +Desarae +Destini +Devonna +Dominica +Dung +Dustin +Dusty +Eleni +Elsy +Emalee +Eriko +Erlinda +Evelia +Fay +Genoveva +Gigi +Gizelle +Gregoria +Haidee +Hailee +Halie +Hang +Harpreet +Helene +Herlinda +Herminia +Hollyann +Houa +Irais +Jaclynn +Jamela +Jamisha +Janea +Jaymee +Jeanelle +Jenay +Jenice +Jennelle +Jennica +Joel +Joella +Josette +Jourdan +Joycelyn +Kalynn +Kandyce +Kao +Kareena +Karinna +Karolyn +Kathie +Katya +Kayci +Kellye +Kelsy +Khadijah +Kimberlie +Kiran +Kiri +Kitty +Kodi +Kristena +Kristle +Lan +Lanesha +Laquesha +Larhonda +Lashay +Laticia +Latina +Lawren +Leela +Leighann +Leora +Leslee +Letitia +Libby +Lisandra +Liset +Lissete +Lizzet +Lizzett +Lolita +Loraine +Lorene +Lorie +Lorissa +Maegen +Malina +Manda +Mandeep +Maren +Mariadelcarmen +Marialuisa +Mariann +Maricarmen +Marleny +Marlisa +Marquisha +Marrisa +Marsela +Marybeth +Maryellen +Marylynn +Mechelle +Melaine +Melissaann +Melonie +Meryl +Micole +Milagros +Mitzy +Mya +Myriam +Nga +Nichol +Nyesha +Nyssa +Odessa +Onica +Oralia +Page +Patrica +Prescilla +Prisma +Rae +Raeanna +Raeanne +Rafaela +Randee +Ranisha +Raymond +Renata +Riana +Rianna +Roneisha +Ronesha +Rosy +Rylee +Sabra +Sammantha +Samuel +Santana +Savanah +Seana +Seema +Serenity +Shalene +Shanay +Shandi +Shandra +Shanise +Shanta +Sharmaine +Sharonda +Shaundra +Shaunice +Shauntel +Shela +Shelia +Sherelle +Sheridan +Sherie +Sherilyn +Shivani +Silver +Sinead +Sona +Sotheary +Soua +Star +Stephen +Sydnee +Sylvie +Taisha +Tal +Tamica +Teagan +Tesia +Tommie +Torie +Tracee +Tyisha +Tynisha +Vaneza +Venus +Vivianna +Yael +Zaida +Zandra +Zaneta +Zara +Aarika +Adena +Adreanna +Aislinn +Alberta +Alea +Aleece +Alese +Alexzandria +Alivia +Allyse +Alva +Alvina +Alyx +Amarilis +Ambria +Ambur +Amrita +Anabell +Anai +Anali +Andee +Andi +Andy +Angelena +Annah +Anny +Antonina +Any +Apolonia +Ashante +Ashtin +Aspen +Asucena +Asusena +Audrianna +Autum +Aya +Aysha +Barbie +Bessie +Bessy +Bettina +Biridiana +Bonita +Bonny +Breeana +Brieanne +Brissa +Britanny +Britnie +Brittiney +Byanka +Calli +Candie +Candise +Candiss +Carrisa +Cary +Casara +Cassia +Cathrine +Caylee +Cendy +Chanae +Chanice +Chardae +Charise +Charisma +Chase +Chauntel +Chenelle +Cheree +Cherice +Christianne +Chrysta +Clorissa +Contessa +Coreen +Corin +Cornelia +Corrin +Cortni +Cortnie +Courteney +Criselda +Cristen +Crystina +Cyntia +Danita +Danny +Daria +Darnisha +Davida +Dawna +Deanne +Der +Desaree +Deserae +Deva +Deysy +Dixie +Donelle +Edelmira +Eduardo +Elisia +Elle +Ellesse +Ellyn +Ema +Emelia +Enedina +Essica +Evelyne +Felicitas +Gayle +Georgette +Gianina +Giavanna +Ginny +Giovanni +Haleigh +Hira +Hoa +Ivory +Jackelin +Jackqueline +Jada +Jalessa +Jalyssa +Janene +Janielle +Janira +Jaspreet +Jeanett +Jeanice +Jeffrey +Jenette +Jennah +Jeraldine +Jhoana +Jillianne +Jimena +Joline +Jonte +Josephina +Julee +Juli +Kacee +Kaily +Kailyn +Kaleen +Kanani +Kandra +Karessa +Karley +Karmen +Karri +Kasarah +Kasi +Kasia +Kasondra +Katryna +Kaydee +Kaylan +Kaysha +Kaytie +Keesha +Keiana +Keilah +Keira +Kelcey +Kelci +Kelle +Keosha +Khristina +Kimberely +Kimberlina +Kirra +Kirstyn +Kiyomi +Krishna +Krystel +Kyley +Lachelle +Laneisha +Lashanae +Lashonda +Latara +Lateisha +Latesha +Latosha +Latricia +Latrina +Latrisha +Letisia +Leyla +Lezlie +Lili +Lisbet +Liseth +Lorin +Loryn +Luna +Lusia +Luzmaria +Lyndsie +Madelaine +Magan +Maly +Margret +Mariaisabel +Marielena +Marilee +Mariza +Marjan +Markeisha +Marnie +Martiza +Marya +Melani +Melania +Melany +Melony +Melynda +Milagro +Missy +Monae +Morganne +Myla +Myriah +Nabil +Nanci +Natividad +Nayely +Nelida +Nhung +Nicky +Nicola +Nida +Nitasha +Osiris +Passion +Patrisha +Pia +Piper +Polette +Priscella +Randy +Raul +Rawan +Raynisha +Rebeka +Renisha +Rheanna +Ria +Riane +Rianne +Ricardo +Ronnie +Ronnisha +Roselia +Roselyn +Rosina +Ross +Rubie +Rudi +Ryanne +Sachi +Samia +Scarlet +Season +Shabnam +Shalise +Shalynn +Shanese +Shannell +Shanon +Shantal +Shantee +Sharay +Sharday +Sharlyn +Sharnae +Shawnna +Shilo +Shireen +Shonda +Shonna +Shyanne +Silvana +Sintia +Sneha +Stephanee +Sulema +Sunnie +Sunshine +Talina +Tamia +Taneisha +Tannya +Tarin +Tarrah +Tashia +Tawanna +Tereza +Theodora +Tiarra +Tiffanee +Tiphani +Tommi +Treasure +Triana +Valery +Valorie +Van +Vanisha +Venice +Verna +Vienna +Vikki +Vina +Whitnee +Xia +Ximena +Yee +Ysenia +Yurico +Yury +Zayra +Zena +Zoey +Addie +Aditi +Adrea +Adria +Adriene +Adrina +Aidee +Ainsley +Aleecia +Aleen +Aleena +Aleesha +Alessa +Alida +Alita +Allissa +Ally +Allyce +Allysha +Alta +Althea +Amal +Amandeep +Amando +Amani +Amanpreet +Aminah +Amirah +Ammie +Anahit +Anay +Andreanna +Angeli +Angelika +Angellica +Anjanette +Anneliese +Arica +Arin +Arline +Arti +Ashia +Ashleen +Ashlin +Audry +Austyn +Ayumi +Aziza +Bayley +Bethanie +Betsabe +Billy +Blaise +Branda +Brea +Breeanne +Breona +Brionna +Brittania +Brittiny +Bronwyn +Brynna +Cailin +Cali +Cameryn +Caressa +Caresse +Carleigh +Carlota +Carolanne +Casarah +Cassara +Cassy +Catelyn +Catherina +Caylin +Cecile +Celestine +Chalise +Chalon +Chanise +Channa +Charlie +Charlyn +Charnesha +Chassidy +Chaunte +Cher +Cherisse +Cherrell +Cherrie +Cherrish +Chioma +Christelle +Christena +Christna +Ciarra +Citlali +Cristie +Dalisa +Danesha +Danille +Darby +Davia +Davonna +Deandrea +Deann +Delena +Delicia +Delila +Delina +Delisa +Della +Delmi +Delora +Denia +Denielle +Devora +Dezarae +Diasy +Dinorah +Diona +Dioselina +Domenica +Dominic +Dominigue +Dona +Dulse +Dylan +Edwin +Elda +Eli +Elianna +Ellyse +Eloise +Emmanuelle +Enid +Enrique +Erendida +Eri +Ermelinda +Errin +Eun +Evamarie +Evelina +Eveline +Evon +Evonne +Fantasia +Farren +Fatema +Felicita +Florencia +Freda +Fritzi +Gao +Giuliana +Glenn +Glenna +Glory +Gregory +Ha +Hanah +Hector +Henry +Heydi +Hien +Holley +Hripsime +Huong +Ia +Ian +Ileen +Iva +Ivon +Ivone +Jaci +Jack +Jackelyne +Jacquelina +Jadira +Jaimi +Janaye +Janella +Janete +Janis +Jasdeep +Jasmeen +Jayde +Jaynae +Jeanae +Jelissa +Jenika +Jenita +Jennafer +Jennefer +Jennette +Jennine +Jeralyn +Jerri +Jerusha +Jesscia +Jesslyn +Jewel +Jiselle +Joceline +Joelene +Johnnie +Joie +Jolynn +Josefa +Joseline +Jovan +Julieanna +Julieanne +Kaeley +Kalee +Kalin +Kalisha +Kamara +Kamryn +Kang +Karianne +Karis +Karleen +Kasha +Kayle +Kaytlyn +Kc +Keena +Keiko +Keonna +Keriann +Kiesha +Kieu +Kimi +Kirsti +Komal +Korie +Korin +Korissa +Kory +Kris +Krystalyn +Krystalynn +Kylah +Laina +Laney +Lasha +Lashae +Lashanda +Lashawn +Lashawnda +Lauran +Laurin +Lavina +Layne +Leeza +Leighanna +Lela +Lenna +Leonora +Leslye +Lexi +Liane +Liberty +Ligia +Liliane +Lita +Livia +Lizbet +Llesenia +Loan +Lorina +Lorinda +Lucrecia +Luzelena +Lynae +Lyndi +Lynsie +Lyssa +Maeve +Mahogany +Maika +Maisha +Malerie +Mallary +Mandie +Maresa +Margeaux +Mariateresa +Maricel +Mariele +Markisha +Marnisha +Marvin +Maryn +Mccall +Meagen +Meg +Megumi +Melessa +Meliza +Merari +Meridith +Merry +Michel +Michella +Michelleann +Mikala +Mikki +Milissa +Millie +Minnie +Misha +Mitra +Moira +Monalisa +Monigue +Nacole +Nada +Nailah +Natalya +Natasia +Nathali +Nathan +Natisha +Natosha +Nena +Neomi +Nerissa +Nhu +Nicol +Nikkole +Nissa +Noor +Olympia +Paisley +Patience +Patrisia +Pebbles +Pegah +Penina +Philippa +Phoua +Polett +Poonam +Porshay +Raelynn +Rafael +Randall +Rathana +Ray +Rayann +Rebekkah +Reilly +Reyanna +Ricci +Ricki +Robbie +Robbin +Roslyn +Rowena +Royce +Ruben +Ruthanne +Saba +Sabah +Sabreena +Sada +Sagan +Sandie +Santa +Sapphire +Sareen +Sariah +Sayra +Selma +Sendy +Seng +September +Sera +Sergio +Shadae +Shaila +Shalena +Shaneice +Shania +Shanti +Sharice +Shastina +Shatoya +Shaun +Shawnda +Shawniece +Shawnte +Shayda +Shealynn +Shekinah +Sherell +Sherice +Sherita +Sheyla +Shiri +Shontel +Siedah +Silva +Sinai +Sindi +Skyla +Sloane +Soleil +Sonny +Sophy +Sparkle +Stephane +Stephanieann +Tai +Talin +Talya +Tamera +Tamiko +Tamisha +Tammi +Tammie +Tani +Tanika +Tarra +Tatyana +Tavia +Tawana +Teanna +Tegan +Terin +Teryn +Tiffeny +Timisha +Tiona +Tomi +Tristina +Tuesday +Turquoise +Tyana +Tyresha +Vanezza +Venecia +Verenise +Vernice +Virgina +Whitnie +Willow +Wilma +Xee +Xochil +Yanely +Yanin +Yeni +Yezenia +Ying +Yukari +Yukiko +Yumi +Yuriana +Yvett +Zarah +Zenaida +Zoraida +Zuleika +Zuly +Jessica +Ashley +Amanda +Jennifer +Stephanie +Elizabeth +Brittany +Sarah +Samantha +Nicole +Melissa +Michelle +Vanessa +Lauren +Christina +Maria +Megan +Danielle +Rachel +Emily +Amber +Laura +Tiffany +Rebecca +Heather +Crystal +Kimberly +Alyssa +Katherine +Andrea +Alexandra +Diana +Natalie +Cynthia +Jasmine +Sara +Jacqueline +Kayla +Erica +Courtney +Chelsea +Veronica +Monica +Amy +Erika +Nancy +Victoria +Angela +Christine +Ana +Kelsey +Kelly +Lisa +Brenda +Cassandra +Brittney +Alicia +Adriana +Angelica +Mayra +Anna +Kristen +Allison +Sandra +Brianna +Erin +Jamie +Patricia +Hannah +Marissa +Karina +Caitlin +Daisy +Mary +Kristina +Katie +Cindy +Karen +Yesenia +Monique +Bianca +Kathryn +Claudia +Shannon +Lindsey +Gabriela +Denise +Lindsay +Cristina +Alexis +Leslie +Joanna +Catherine +Alexandria +Krystal +Priscilla +Julie +Kristin +Desiree +Sabrina +Taylor +Linda +Briana +Alejandra +Wendy +Julia +Guadalupe +Melanie +Valerie +April +Jenna +Evelyn +Katrina +Janet +Rosa +Natasha +Kathleen +Brooke +Breanna +Morgan +Whitney +Jeanette +Tara +Olivia +Martha +Raquel +Karla +Teresa +Holly +Abigail +Gina +Gloria +Katelyn +Jordan +Tanya +Yvette +Leah +Jenny +Carolina +Sonia +Ariana +Alma +Kaitlin +Grace +Justine +Felicia +Jasmin +Maribel +Esmeralda +Kaitlyn +Molly +Candice +Gabrielle +Marlene +Marisol +Sandy +Liliana +Jillian +Jazmin +Nichole +Leticia +Lorena +Caroline +Jocelyn +Angelina +Blanca +Cecilia +Meghan +Brandi +Susan +Ashlee +Dana +Alison +Renee +Tracy +Alisha +Stacy +Carla +Britney +Lizette +Rachael +Carmen +Casey +Sophia +Irene +Susana +Margaret +Isabel +Jaclyn +Araceli +Candace +Krista +Roxanne +Marina +Kristine +Ruth +Beatriz +Elena +Kendra +Ruby +Kylie +Stacey +Claire +Haley +Heidi +Paige +Yvonne +Carolyn +Brandy +Dominique +Kara +Emma +Mercedes +Jacquelyn +Marisa +Janelle +Tatiana +Tina +Diane +Sierra +Maritza +Norma +Lacey +Deanna +Kirsten +Ariel +Daniela +Miranda +Robin +Audrey +Margarita +Rebekah +Bethany +Rocio +Tamara +Sasha +Adrianna +Carly +Esther +Juliana +Melinda +Alexa +Sylvia +Barbara +Maricela +Pamela +Mallory +Sharon +Marie +Camille +Theresa +Anne +Eva +Nina +Jazmine +Johanna +Rachelle +Silvia +Naomi +Helen +Meagan +Arielle +Virginia +Carina +Madison +Chloe +Michele +Miriam +Donna +Tania +Elaine +Janette +Nadia +Deborah +Marisela +Noemi +Edith +Jade +Angel +Colleen +Cristal +Yolanda +Elisa +Michaela +Melody +Regina +Savannah +Amelia +Annie +Carissa +Chelsey +Vivian +Elise +Kelli +Marilyn +Christian +Mariana +Carrie +Lucia +Madeline +Yadira +Bridget +Charlene +Darlene +Alice +Arianna +Destiny +Aimee +Kristy +Ashleigh +Griselda +Angie +Elisabeth +Karissa +Connie +Josephine +Roxana +Sydney +Arlene +Judith +Stephany +Kathy +Adrienne +Lydia +Carol +Kiara +Charlotte +Jane +Eileen +Hayley +Trisha +Jessie +Lizbeth +Brianne +Jeannette +Rose +Ebony +Tabitha +Mia +Summer +Frances +Gabriella +Irma +Jaime +Maira +Paula +Perla +Taryn +Annette +Fabiola +Luz +Paulina +Rochelle +Allyson +Anita +Bonnie +Robyn +Shawna +Corina +Shelby +Hilary +Celeste +Iris +Kelley +Lily +Genesis +Gladys +Kate +Krystle +Natalia +Stefanie +Clarissa +Paola +Kellie +Sally +Elyse +Suzanne +Alana +Brittani +Hillary +Joyce +Misty +Autumn +Kassandra +Lizeth +Anabel +Ann +Chantel +Christy +Ellen +Jaqueline +Judy +Julianne +Lillian +Alissa +Antoinette +Nathalie +Yessenia +Daniella +Chanel +Rita +Caitlyn +Iliana +Vicky +Cara +Nikki +Rosemary +Sofia +Anastasia +Lorraine +Lucy +Mai +Kasey +Toni +Yajaira +Kari +Alisa +Cassie +Catalina +Joanne +Juanita +Sheila +Joana +Kristi +Lissette +Tessa +Ivette +Laurel +Simone +Debbie +Genevieve +Graciela +Francesca +Joy +Rebeca +Shirley +Berenice +Janae +Janice +Kaylee +Olga +Tiana +Aurora +Ericka +Kendall +Tasha +Viviana +Larissa +Belinda +Cheryl +Dianna +Mariela +Nora +Roxanna +Alina +Asia +Jacklyn +Andreina +Serena +Sheena +Breanne +Celia +Katharine +Meredith +Tammy +Adilene +Bailey +Hailey +Noelle +Breana +Chelsie +Leanna +Yasmin +Cortney +Dawn +Reyna +Julianna +Kaila +Sonya +Celina +Fatima +Juana +Mackenzie +Viridiana +Casandra +Desirae +Kelsie +Aubrey +Dulce +Grecia +Ingrid +Geraldine +Nadine +Randi +Brenna +Corinne +Georgina +Lisette +Hanna +Leanne +Lori +Maya +Mindy +Shayna +Zoe +Cinthia +Danica +Lourdes +Valeria +Alyson +Christa +Selina +Belen +Dolores +Hilda +Jill +Talia +Aracely +Brittni +Cecily +Debra +Marcela +Bridgette +Devin +Jennie +Salina +Tracey +Ashly +Devon +Nataly +Ryan +Bertha +Katy +Magdalena +Sophie +Ashlie +Athena +Giselle +Jaimie +Lidia +Rubi +Sherry +Faith +Latoya +Lena +Lilia +Myra +Sarai +Shaina +Beverly +Ciara +Michael +Shelly +Tiara +Alysha +Jessika +Kim +Kira +Pauline +Clara +Janine +Flor +Jackie +Josefina +Maggie +Bernadette +Delia +Denisse +Eunice +Kyla +Lynette +Nicolette +Shauna +Ashely +Melisa +Reina +Rosario +Stacie +Vanesa +Alexander +Angelique +Katelynn +Shayla +Aileen +Betty +Lesley +Melina +Stefani +Cassidy +Chantal +Christie +Dina +Dorothy +Kerry +Staci +Alba +Alexandrea +Dora +Luisa +Tawny +Bree +Cheyenne +Esperanza +Keri +Lara +Laurie +Shana +Edna +Elvia +Francine +Hope +Justina +Krystina +Lacy +Mariah +Maricruz +Paulette +Shanna +Traci +Alanna +Elsa +Faviola +Kristie +Kylee +Shelley +Cathy +Lucero +Mara +Stevie +Tiffani +Brittnee +Candy +Chrystal +Eliana +Mikaela +Mireya +Sadie +Yanira +Damaris +Madeleine +Maureen +Paloma +Precious +Rosalinda +Alexia +Alysia +Diamond +Elissa +Elvira +Jean +Jesica +Latasha +Leilani +Lizet +Tanisha +Tricia +Brittanie +Daniel +Evelin +Lina +Liza +Lyndsey +Pearl +Shantel +Tiffanie +Abby +Ileana +Jena +Kristal +Marlena +Sade +Beatrice +Cassondra +Catrina +Imelda +Jenifer +Joann +Katlyn +Liana +Malia +Meaghan +Micaela +Patrice +Rhiannon +Rosie +Susanna +Thalia +Bernice +Blair +Bryanna +Dalia +Danika +Eden +Eleanor +Eliza +Francisca +Hazel +Ivonne +Ivy +Keisha +Marcella +Maryann +Rene +Tonya +Tori +Alaina +Antonia +Becky +Britni +Callie +Cherie +Jolene +Kasandra +Kayleigh +Kelsi +Lea +Sonja +Adrianne +Alondra +Alyse +Cayla +Gianna +Jesenia +Kristyn +Savanna +Serina +Vannessa +Anais +Cierra +Glenda +Isela +Jana +Joan +Kenia +Loren +Lynn +Minerva +Nayeli +Ofelia +Rosalie +Tess +Alycia +Consuelo +Coral +Felisha +Janie +Joelle +Jose +Julissa +Kiersten +Lana +Lupita +Marta +Richelle +Terra +Yazmin +Yessica +Alessandra +Annabel +Ashton +Brigitte +Brittny +Christopher +Isabella +Leandra +Mandy +Mariel +Pricilla +Rosemarie +Sarina +Azucena +Britany +Danae +Elisha +Emilia +Estela +Fiona +Johana +Leann +Leila +Magaly +Monika +Rosio +Selene +Shanice +Susie +Tabatha +Xochitl +Aja +America +David +Jesse +Kenya +Latisha +Tierra +Zaira +Amalia +Ashlyn +Betsy +Breeanna +Brittaney +Elaina +Giovanna +Gwendolyn +Jackeline +Juliet +Kimberley +Maxine +Natali +Amie +Cecelia +Constance +Dayna +Gillian +Janessa +Jayme +Katelin +Kathrine +Kourtney +Lilian +Melyssa +Mikayla +Phoebe +Ramona +Selena +Vicki +Angeline +Deisy +Gretchen +Hana +Kimberlee +Kristian +Marianne +Marlen +Pa +Terry +Tracie +Yuliana +Adrian +Allyssa +Alysa +Anakaren +Cori +Emerald +Jaleesa +Janel +Jannette +Krysta +Magali +Mari +Marlyn +Martina +Monet +Noel +Paris +Rena +Stella +Trina +Alex +Asha +Audra +Breann +Christiana +Darcy +Jannet +Joshua +Kaela +Kirstin +Korina +Lisbeth +Mirna +Tia +Yuri +Bobbie +Cameron +Cora +Dena +Doris +Eugenia +Francis +Hollie +Jessenia +Kacie +Karin +Kaylyn +Kyra +Lia +Marian +Phylicia +Racheal +Rosanna +Skye +Areli +Astrid +Audriana +Beth +Brandie +Chanelle +Charmaine +Ciera +Clare +Corinna +Denice +Dennise +Domonique +Emilie +Geneva +Georgia +Josie +Kailey +Kandice +Kiana +Mariam +Maura +Raven +Stephani +Tyler +Unique +Yasmine +Yecenia +Ada +Alyssia +Ambar +Anjelica +Brandee +Brigette +Danelle +Destinee +Emilee +Evangelina +Jami +Janay +Janeth +Jodi +Kaitlynn +Kali +Karli +Kirstie +Kortney +Lauryn +Rosalia +Shanae +Sheri +Violeta +Adela +Aida +Aisha +Alena +Anahi +Aubree +Ayla +Christin +Cory +Davina +Dianne +Elva +Janell +Jeannie +Jodie +Kala +Keely +Kyle +Malissa +Mckenzie +Merissa +Mina +Nelly +Nikole +Rikki +Shanelle +Tianna +Allie +Annalisa +Annamarie +Charity +Cherish +Corrine +Dayana +Eloisa +Elsie +Estrella +Jamila +Janee +Jeanine +Jenelle +Jerica +Jody +Jovanna +Kacey +Krystin +Leigh +Mollie +Mona +Myrna +Raylene +Sheree +Siobhan +Valentina +Venessa +Yahaira +Ava +Bryana +Chantelle +Elia +Estefany +June +Katlin +Kia +Lila +Liset +Reanna +Sunny +Vilma +Xiomara +Amaris +Ashli +Colette +Corrina +Dalila +Danyelle +Eric +Gladis +Gricelda +Ilene +Jesus +Katheryn +Kaycee +Lynda +Maegan +Marjorie +Marla +Mellisa +Mirian +Nereida +Nichelle +Portia +Princess +Roberta +Rosalba +Samatha +Shante +Tamika +Violet +Yanet +Andria +Anel +Audrianna +Daphne +Edlin +Erendira +Fallon +Inez +Jenae +Jeniffer +Karly +Kaylin +Kelsea +Kiley +Kori +Lacie +Leeann +Lizett +Loretta +Marianna +Mirella +Moriah +Peggy +Sidney +Valarie +Alix +Analisa +Anamaria +Andrew +Anthony +Antonette +Brittnie +Carli +Cheri +Corey +Darline +Elida +Elyssa +Fanny +Gabriel +Heidy +Helena +Jacquelin +James +Janna +Jeanne +Kaleigh +Kevin +Logan +Madelyn +Nikita +Priya +Suzanna +Winnie +Acacia +Alesha +Ali +Annemarie +Annmarie +Austin +Briseida +Brynn +Charissa +Danna +Denisha +Dominque +Gema +Hallie +Isis +Jonathan +Ka +Kandace +Krysten +Lilibeth +Lizzette +Lyndsay +Lynnette +Makayla +Matthew +Mckenna +Michell +Nicholas +Petra +Racquel +Rhonda +Riley +Robert +Shasta +Sherri +Tawni +Teri +Therese +Verenice +Allysa +Anika +Annika +Arely +Breeana +Cassaundra +Cherise +Christal +Cinthya +Dannielle +Daysi +Deja +Ellie +Franchesca +Harmony +Isabelle +Jerrica +Joselyn +Joseph +Karyn +Keshia +Kiera +Lilly +Lisset +Marcia +Neda +Raelene +Renae +Ryann +Tamar +Tayler +Tonisha +Trinity +Ursula +Brisa +Carlee +Carley +Chandra +Cody +Corrie +Deandra +Delilah +Itzel +Ivana +Jalisa +Jordyn +Juan +Juliette +Justin +Latrice +Lee +Lizabeth +Louise +Lucerito +Lucinda +Luis +Lynsey +Mariaelena +Misha +Pilar +Porsche +Raina +Rosaura +Sammantha +Suzette +Yoana +Zulema +Adelina +Alecia +Alejandro +Amina +Ani +Annabelle +Ashlynn +Breeann +Cari +Carlos +Chelsi +Christen +Cristian +Daisey +Doreen +Estephanie +Gail +Ida +Jacquelynn +Janett +Jaquelin +Jazmyn +Jenessa +Jessi +Kaci +Kacy +Lani +Linh +Lisamarie +Louisa +Lucille +Marielle +Marilu +Maryam +Mercedez +Mildred +Nellie +Nicolle +Nidia +Rosalva +Rosamaria +Rosana +Scarlett +Shanell +Shea +Soledad +Stephenie +Tami +Terri +Vannesa +Vianca +Allegra +Arianne +Brieanna +Britnee +Camila +Celene +Dania +Deana +Desire +Estefania +Estella +Ester +Frankie +Geena +Ginger +Gracie +Kaley +Kay +Kayleen +Lili +Mandi +Marcy +Mariaguadalupe +Marilynn +Mellissa +Nallely +Nanci +Nicola +Rosalyn +Saira +Sarahi +Sheryl +Shyla +Stefany +Tarah +Trang +Tyra +Valencia +Vera +Yaneli +Adriane +Alisia +Anastacia +Ariane +Brandon +Bridgett +Carlie +Cathleen +Deena +Demetria +Denae +Ella +Emely +Eryn +Eve +Jackelyn +Jacquline +Jaymie +John +Kallie +Kayley +Kerri +Lakeisha +Lupe +Mallorie +Marcie +Mariadejesus +Marion +May +Mimi +Patty +Priscila +Raisa +Rayna +Rebecka +Rhea +Roseanna +Roya +Sabina +Shamika +Sherrie +Steffanie +Sunshine +Thelma +Vania +Wanda +William +Yer +Alejandrina +Alia +Ami +Anai +Andriana +Anh +Antionette +Babygirl +Brian +Brittnay +Chantell +Cherelle +Daniele +Darci +Delaney +Devan +Eboni +Evelia +Farah +Gisela +Jaimee +Jewel +Juliann +Karlee +Katarina +Katerina +Kymberly +Lesly +Linette +Linsey +Liz +London +Loni +Magda +Marquita +Martika +Mayte +Monserrat +My +Myisha +Porsha +Raechel +Ronisha +Rosalina +Shani +Sharlene +Shawn +Stacia +Sue +Tatianna +Tera +Trinidad +Vianey +Victor +Wendi +Xenia +Yasmeen +Yesica +Alesia +Alise +Alora +Alva +Amberly +Angelia +Bianka +Billie +Blake +Cambria +Candyce +Carmela +Cathryn +Charleen +Christi +Concepcion +Corissa +Danisha +Dara +Darla +Deseree +Elana +Evette +Fernanda +India +Isaura +Jacob +Jasmyn +Jazzmin +Julisa +Kailee +Kati +Kaylie +Kirby +Krystyna +Leona +Lianna +Lilliana +Lindy +Lucila +Lyndsie +Manuel +Marci +Marsha +Maryanne +Patsy +Richard +Salena +Shari +Thao +Tristan +Van +Venus +Veronika +Winter +Amira +Anali +Ashanti +Bria +Britny +Cami +Carmina +Casie +Chante +Chyna +Cintia +Corie +Deidra +Dixie +Eleni +Elora +Estefani +Flora +Georgette +Guillermina +Ilana +Jasmyne +Jaymee +Jazzmine +Jenica +Jenni +Julieta +Kalie +Kalyn +Kaylene +Kenisha +Keren +Kiah +Kierra +Kristan +Leigha +Lorna +Mabel +Maia +Marika +Mario +Meghann +Mercy +Michel +Monisha +Myesha +Nathaly +Nisha +Pang +Penny +Phuong +Porscha +Rachell +Rashelle +Roseanne +Roxann +Sable +Savanah +Sean +Shantell +Sondra +Spencer +Susanne +Taja +Tatum +Tawnya +Trista +Vickie +Yuridia +Zena +Adele +Adina +Alayna +Angelita +Anjali +Annel +Arcelia +Ashlea +Avery +Bao +Britnie +Camilla +Caryn +Chelsy +Clarice +Crystle +Darian +Deirdre +Dorian +Drew +Elba +Elle +Essence +Farrah +Jenniffer +Jennyfer +Jorge +Karisa +Kelsy +Kerstin +Kianna +Kimiko +Krizia +Krystine +Larisa +Lashawn +Lashay +Leonela +Lora +Macy +Maddison +Maile +Makenzie +Manuela +Margie +Margot +Markie +Marlee +Micah +Nayely +Nia +Nika +Noemy +Noor +Rae +Raeann +Rianna +Rina +Romina +Samara +Samira +See +Shannan +Shoshana +Sindy +Socorro +Sommer +Sydnee +Tanesha +Tenaya +Zahira +Zayra +Adria +Afton +Anisha +Annalise +Annelise +Anny +Araseli +Aundrea +Ayesha +Beatris +Benita +Brielle +Britani +Brook +Caren +Corrin +Cristine +Dinah +Elicia +Emmeline +Erlinda +Evan +Haleigh +Haydee +Ilse +Imani +Jaclynn +Janea +Jannie +Jeanna +Joleen +Jourdan +Jovana +Kailyn +Kalani +Kaycie +Kaylynn +Kelcey +Kiani +Kindra +Laci +Lakesha +Lanae +Laquisha +Leana +Leonor +Lisseth +Marbella +Marcelina +Margo +Mark +Mattie +Melony +Natashia +Nicholle +Nohely +Nohemi +Nydia +Parisa +Quinn +Rheanna +Roseann +Sahar +Sandi +Sarita +Shaniqua +Shawnee +Shira +Shoua +Sirena +Skyler +Starla +Stephaine +Tahnee +Thea +Tiera +Yara +Abril +Adeline +Amara +Andra +Aubrie +Ayana +Berenise +Breena +Byanca +Cali +Candis +Catharine +Celine +Chasity +Claribel +Courtnie +Crista +Cristin +Darnisha +Debora +Devyn +Donisha +Edgar +Elizabet +Estelle +Genessis +Gisselle +Holli +Idalia +Janeen +Janiece +Janisha +Jason +Jeremy +Jesseca +Joslyn +Julian +Juliane +Karlie +Katia +Kayli +Keeley +Keila +Kimberlie +Kirstyn +Kyleigh +Ladonna +Laila +Lakisha +Leslee +Lolita +Luciana +Luisana +Makenna +Malina +Malisa +Maranda +Marguerite +Marylou +Mika +Milagros +Mitzi +Natalee +Nichol +Nuvia +Oralia +Rachele +Raelynn +Regan +Sahara +Sarena +Sequoia +Shae +Shanda +Shanika +Shay +Sheng +Skylar +Stephen +Steven +Tabetha +Tashina +Tonia +Torrey +Tran +Whitley +Abbie +Agnes +Aide +Aleah +Aline +Amada +Amani +Anabell +Anamarie +Andreana +Angelic +Anissa +Antonio +Anya +Arleen +Ashtyn +Aurelia +Bailee +Banesa +Berenis +Blythe +Bobbi +Brett +Brittini +Brooklyn +Bryce +Candida +Caprice +Carmelita +Carole +Cecile +Chanae +Chanell +Chee +Cherrelle +China +Chynna +Cindi +Codi +Colby +Cristy +Dahlia +Deanne +Delmy +Desiray +Desirea +Destini +Diandra +Dinora +Edlyn +Elisabet +Elysia +Ernestina +Ethel +Florence +Francisco +Gena +Genna +Giana +Greta +Heaven +Hortencia +Jacquelyne +Janina +Jaquelyn +Jayne +Jazmyne +Jenee +Johnna +Joseline +Kamille +Kasie +Kaylah +Kristel +Lacee +Layla +Liberty +Liseth +Lois +Lonnie +Loraine +Lynne +Magen +Margaux +Marine +Marlin +Marrissa +Marycruz +Mee +Meggan +Melany +Miesha +Milan +Mira +Miracle +Miya +Muriel +Nakita +Natassia +Nelida +Nicollette +Nubia +Octavia +Oriana +Polly +Rana +Reena +Remy +Riana +Ronnie +Rosita +Rossana +Shanel +Shaniece +Shara +Sheridan +Sienna +Simona +Susy +Talisa +Tamra +Tanika +Tenisha +Teresita +Thanh +Tiffiny +Tory +Tyanna +Vanna +Xochilt +Yael +Zoila +Aaron +Ahsley +Aleesha +Alexzandra +Alyx +Analise +Andres +Angelika +Annamaria +Argelia +Aria +Ariella +Arlette +Armida +Blaire +Brittanee +Bryn +Caitlan +Carmella +Casondra +Cathrine +Celena +Cera +Chana +Charla +Chelcie +Cheyanne +Choua +Christianne +Courteney +Dakota +Deidre +Delfina +Demi +Deysi +Donnisha +Elysse +Emmy +Francia +Gemma +Gisel +Gissel +Glory +Gregory +Haylee +Helene +Herlinda +Holley +Iesha +Jacinta +Jackelin +Jacquelina +Jacqulyn +Jahaira +Jamee +Jammie +Jeanie +Jennefer +Jerri +Jessalyn +Jessyca +Josephina +Julieann +Kai +Kandis +Karena +Kasondra +Kellee +Kimber +Kristiana +Kyndra +Lanette +Latonya +Latosha +Latricia +Letisia +Liane +Lindsy +Madalyn +Malorie +Marivel +Marley +Marysol +Mele +Melodie +Miguel +Mitzy +Natalya +Neiva +Nerissa +Nhi +Page +Quiana +Rebeka +Ronda +Roni +Rosalind +Roslyn +Ryanne +Sacha +Saray +Shanee +Sharee +Shaylee +Sherilyn +Sherrell +Siera +Star +Steffany +Stephine +Stevi +Susannah +Tameka +Teal +Tierney +Torie +Tristin +Tuesday +Zenia +Zuri +Aarika +Aidee +Aisling +Akilah +Alishia +Alysse +Anarosa +Anayeli +Angeles +Aries +Arturo +Asusena +Athina +Aura +Aziza +Biridiana +Bonita +Britteny +Brittiny +Bryanne +Caitlynn +Camellia +Cameo +Candie +Carleen +Carlene +Carrisa +Carrissa +Channel +Charis +Charisse +Chase +Chastity +Chaya +Coleen +Collette +Cruz +Danya +Danyell +Daryl +Dawna +Desarae +Dominica +Echo +Evonne +Felicitas +Frank +Gayle +Grisel +Hali +Ines +Ivon +Janis +Jayna +Jeana +Jeanelle +Jeni +Jo +Jocelin +Jolie +Jovita +Kaira +Kaitlan +Kalia +Kameron +Kamilah +Kandyce +Kao +Karolina +Karolyn +Kassi +Kassie +Katheryne +Kathie +Kathryne +Kayci +Keanna +Keira +Kelci +Kemberly +Krishna +Lacresha +Laureen +Leeanna +Leighann +Lillie +Linnea +Lisandra +Lisett +Lissete +Lizzett +Lluvia +Malinda +Mallori +Mariadelcarmen +Maricella +Mariella +Mariko +Mariza +Markeisha +Marrisa +Matilde +Melonie +Merry +Mica +Michaella +Midori +Millie +Montana +Nada +Nakia +Natosha +Noelia +Nou +Raeanne +Rafaela +Saida +Samone +Shanon +Shantal +Shardae +Shaunice +Shavon +Shavonne +Sherice +Shireen +Sigourney +Sona +Soraya +Stephania +Stephannie +Stormy +Tam +Tawnee +Tawnie +Teena +Tereza +Tesia +Thomas +Tiffaney +Torri +Torrie +Tosha +Tyesha +Vanity +Vi +Yaquelin +Yuriko +Zabrina +Zaida +Zulma +Adam +Aleksandra +Alivia +Aliza +Althea +Alyce +Amal +Amberlee +Amethyst +Amrita +An +Anabelle +Analilia +Analy +Apolonia +Apryl +Arika +Arlyn +Ashlei +Aspen +Aubriana +Autum +Baby +Baylee +Bella +Bessie +Betsabe +Bettina +Brea +Brettany +Breyana +Brissa +Britanny +Brynne +Calli +Cammie +Candra +Carolann +Chanda +Chandler +Channing +Chantalle +Charlie +Cheree +Cherisse +Christiane +Christianna +Cleo +Corin +Corine +Courtenay +Crystel +Cyndi +Dani +Danita +Danyel +Darcie +Daria +Debby +Deisi +Deonna +Deserie +Devina +Deyanira +Dionne +Diva +Ebonie +Eduardo +Elda +Ena +Ericca +Erinn +Estefanie +Eulalia +Evelynn +Falicia +Falisha +Felecia +Felicity +Geovanna +Gia +Gilberto +Gisele +Giuliana +Han +Hanh +Indira +Isha +Ivett +Janaye +Janey +Javier +Jeannine +Jenise +Jennah +Jennica +Jesika +Jimena +Jocelyne +Johnnie +Joi +Jordanne +Jordin +Jordon +Kalee +Kandi +Kanesha +Karah +Kassidy +Kassondra +Kathia +Kathrina +Katina +Kattie +Katya +Kayle +Kaylen +Kelcie +Kerrie +Khadijah +Kierstin +Krystyn +Laticia +Leesa +Leslye +Licet +Lissa +Lita +Livier +Lizzeth +Lorin +Lyla +Madelaine +Madonna +Maly +Manal +Marialuisa +Maricarmen +Marin +Marisha +Markisha +Marlana +Marleen +Martin +Marybeth +Marysa +Mayraalejandra +Michal +Mikaila +Milena +Mirtha +Misti +Mya +Nadya +Nalani +Nary +Nathan +Nereyda +Niesha +Nuria +Omar +Patience +Patrick +Phoenix +Phyllis +Rafael +Ranisha +Rashida +Rebekka +Reem +Reema +Ronni +Rosanne +Saba +Sage +Salma +Samanta +Santana +Sari +Saundra +Scarlet +Serene +Shalina +Shalisa +Shannel +Shiloh +Shyanne +Sia +Sky +Sloane +Soleil +Soraida +Starr +Steffi +Stepahnie +Suzan +Suzana +Sydni +Sydnie +Taelor +Talin +Talisha +Talitha +Talya +Tamera +Tamisha +Tana +Tyisha +Valeri +Valery +Viola +Vy +Xia +Yaneth +Yeraldin +Adara +Adelaida +Adelita +Adreanna +Adrina +Ainsley +Aislinn +Alaura +Aleisha +Alexi +Alitza +Alixandra +Allisha +Alvina +Alyshia +Amparo +Analaura +Analicia +Andrianna +Angelena +Annalee +Ariela +Aryn +Audrina +Aurielle +Aysha +Azalia +Bahar +Beronica +Branda +Breonna +Briceida +Brieana +Brienna +Brittainy +Brittiney +Brooklynn +Bryan +Cailin +Caley +Carey +Carin +Carisa +Carolanne +Carolynn +Cassi +Celestine +Cendy +Cesilia +Channelle +Charisma +Charlee +Chelsa +Cher +Cherice +Chole +Chrissy +Clarisa +Crissy +Cristen +Cristi +Cyntia +Dacia +Dafne +Daina +Dallas +Daniell +Dany +Darby +Darleen +Dee +Delicia +Delores +Dennis +Deserae +Destany +Dezirae +Deziree +Dionna +Divya +Dylan +Elina +Ellesse +Ema +Emelia +Enedina +Erendida +Esthela +Estrellita +Fantasia +Farm +Fawn +Gao +Giovanni +Halie +Hattie +Henry +Herminia +Imari +Jacalyn +Jacinda +Jacquiline +Jael +Janise +Jannelle +Jannett +Jazzmyn +Jeffrey +Jemma +Jene +Jenell +Jensine +Jerika +Jerrika +Jessa +Joey +Jonelle +Jonna +Josefa +Juanisha +Julio +Kadie +Kalina +Kalynn +Kambria +Kamisha +Karie +Karrie +Katey +Katryna +Katty +Kaysha +Keli +Kellyn +Kenzie +Kera +Khadija +Khrystyne +Kimberli +Kiran +Kirsty +Komal +Korey +Kory +Kristyne +Kyrie +Kyrstin +Laine +Lan +Laneisha +Lanesha +Lanisha +Laporsha +Laquita +Lashae +Lashonda +Lauran +Leeanne +Leena +Leia +Lesli +Letisha +Lianne +Lindsie +Loan +Lorina +Luana +Lyna +Ma +Maegen +Maeve +Manda +Maren +Mariaisabel +Marinna +Marquisha +Marybel +Marygrace +Maryjane +Marylyn +Mayela +Melynda +Meranda +Meryl +Minna +Mishelle +Mistie +Myranda +Nastasha +Neha +Nely +Neomi +Nhia +Niccole +Nicholette +Nicki +Noreen +Osmara +Otilia +Phillip +Prescilla +Pricila +Raeleen +Rakia +Raul +Raychel +Rebekkah +Rian +Ricci +Ricki +Robbie +Roselyn +Rowena +Roxane +Ruben +Rubie +Rylee +Sabreena +Sabrena +Sadaf +Sahra +Saleena +Sana +Sandeep +Sarha +Sascha +Seema +Serenity +Sergio +Shalyn +Shane +Shaneka +Shanese +Shanita +Shanti +Shaquita +Sharina +Shaylene +Shelbi +Shyann +Siara +Siena +Silvana +Skyla +Sonali +Stormie +Sulema +Suzy +Symphony +Takara +Tal +Tamarah +Tammie +Tatyana +Tawana +Terah +Theodora +Tiesha +Tiffney +Timothy +Tonie +Topacio +Torey +Uyen +Valorie +Vienna +Yee +Yenny +Zachary +Adena +Adreana +Ahlam +Aissa +Alanah +Alexandera +Alida +Aliya +Allyn +Allyse +Amaya +Amberlyn +Ambrosia +Anaiz +Andreanna +Andy +Angelea +Angelicia +Anica +Anitra +Anneliese +Antonina +Anum +Ariell +Arlen +Arlin +Aryana +Asley +Atenas +Azalea +Azure +Berlin +Bibiana +Bobby +Brandice +Brandilyn +Breeanne +Briahna +Brie +Britanie +Brittan +Cally +Camryn +Candi +Caressa +Carmel +Casaundra +Cassey +Cassy +Cathlene +Cecilie +Cesar +Chandni +Charlena +Charles +Charley +Charline +Cherokee +Cherry +Chiara +Chiquita +Christel +Chua +Ciarra +Corena +Corrinne +Criselda +Crystalyn +Cydney +Damariz +Daneille +Danny +Darlyn +Dasha +Dejanee +Delene +Denia +Denielle +Deondra +Derek +Deshawn +Destiney +Devonna +Dinorah +Dolly +Donielle +Dung +Edwina +Eleana +Elexis +Elma +Elsi +Enrique +Erikka +Eryka +Essica +Falon +Fannie +Faye +Felisa +Fernando +Gardenia +Gennifer +Genny +Genoveva +Gilma +Ginny +Gisell +Greer +Gurpreet +Hailee +Halley +Harpreet +Heba +Hector +Hoa +Holland +Honey +Huyen +Ibeth +Iman +Irasema +Irina +Italia +Jacelyn +Jacklynn +Jamesha +Jamisha +Jan +Janaya +Janira +Janny +Jasdeep +Jaspreet +Jazmen +Jeanett +Jenette +Jennette +Jeri +Jessicamarie +Jhoana +Jimmy +Joannamarie +Joellen +Johnisha +Jolynn +Joscelyn +Joselin +Josette +Josilyn +July +Kacee +Kaelyn +Kaile +Kaili +Kaleena +Kally +Kareen +Karely +Karis +Karishma +Katherina +Kathlyn +Kaylan +Kc +Keara +Keilani +Kellye +Kendal +Kennesha +Kerissa +Keyana +Keyanna +Keyla +Khristina +Kiesha +Kilee +Kirsti +Klarissa +Koren +Korie +Korinne +Korrie +Korrina +Kristyna +Kyara +Kylene +Lachelle +Lainey +Lakeshia +Lane +Laruen +Laryssa +Latrina +Laure +Lavonne +Lawrence +Leeana +Leiana +Leighanne +Lela +Lenora +Lien +Lilianna +Lilyana +Lola +Lorene +Lorenza +Lorissa +Lucie +Lusero +Ly +Lynae +Lyndsi +Macie +Madelein +Maguadalupe +Malaika +Malerie +Malory +Mariade +Mariadelosang +Marilou +Marizol +Markesha +Marlo +Marnie +Marsela +Maryssa +Mechelle +Melaine +Melani +Melia +Merari +Micheal +Miki +Minh +Mitchell +Monic +Myeisha +Myriam +Nabila +Najla +Nalleli +Naly +Nansi +Natascha +Natasia +Natividad +Navjot +Neelam +Nga +Nickole +Nicol +Niki +Nikia +Nikkita +Nikkole +Noelani +Nola +Norah +Nycole +Oscar +Paisley +Parris +Penelope +Perlita +Perry +Philicia +Pia +Pooja +Porcha +Porshia +Priscella +Prisilla +Randall +Rashel +Rayanna +Rayleen +Raynesha +Raynisha +Reana +Renata +Renea +Rhianna +Ricardo +Ricky +Romana +Romelia +Ronica +Roselia +Rosetta +Rosy +Rudi +Salome +Salvador +Sariah +Saul +Sayra +Scott +Selma +Sendy +Shabnam +Shadi +Shakira +Shala +Shalini +Shameka +Shanay +Shandra +Shantay +Shantelle +Sharaya +Sharday +Sharell +Sharika +Sharisse +Sharla +Sharleen +Sharmaine +Sharron +Shatoya +Shaunna +Shauntel +Shayleen +Shaylin +Shaylyn +Shelbie +Shelsea +Shereen +Sherie +Sherly +Sheyla +Shilpa +Shirin +Shivani +Shonna +Siomara +Siria +Solange +Soua +Sparkle +Spenser +Stephanee +Suzie +Sylvana +Taira +Taleen +Tanja +Tanna +Tannia +Tasia +Tawney +Teagan +Teanna +Tegan +Teisha +Teryn +Thania +Thi +Thu +Tiare +Tiarra +Tommie +Tova +Tracee +Tram +Treasure +Tressa +Tyana +Tyresha +Tyrisha +Verenise +Vina +Vincent +Wesley +Whittney +Willow +Yanina +Yareli +Yaritza +Yoanna +Yocelin +Zahara +Zainab +Zakiya +Zenaida +Zina +Zuleyma +Zully +Abbey +Addie +Addison +Adelaide +Adreena +Adriene +Adrienna +Aiko +Akila +Alannah +Alberta +Alda +Alea +Alegandra +Alesandra +Alessa +Alethea +Alexandrina +Alexie +Alexsandra +Alexx +Alexxis +Alexzandria +Aleyda +Alica +Alli +Alyxandra +Amanada +Amberlynn +Amor +Amorette +Anagabriela +Anahid +Anahit +Analiese +Andre +Andree +Andreya +Anette +Angella +Anjuli +Annastasia +Anndrea +Aracelia +Ari +Ariadna +Ariadne +Arica +Armando +Armine +Ashante +Ashten +Audreanna +Audrie +Augustina +Auriel +Austen +Avalon +Aviana +Aviva +Ayanna +Azaria +Barbra +Bee +Benjamin +Berlyn +Berta +Bethanie +Blia +Brigid +Brionna +Bryna +Byanka +Calvin +Camelia +Cameryn +Candelaria +Carinna +Carolyne +Carson +Catarina +Catelyn +Catlyn +Cerise +Chai +Champagne +Channy +Chantae +Chardae +Charday +Charice +Charisa +Charise +Charlisa +Charly +Charnae +Chelsee +Cherilyn +Chi +Chong +Chrissie +Christinamarie +Chyanne +Cindia +Cinnamon +Clarisse +Clarrissa +Corryn +Cree +Crystelle +Cyrena +Cyrstal +Daizy +Dalina +Dallana +Danesha +Danitza +Danyale +Darling +December +Deeanna +Delila +Denelle +Denika +Deniz +Denys +Denyse +Desaray +Diann +Diedre +Dominga +Dona +Dustin +Duyen +Ebonee +Edelmira +Egypt +Elinor +Elly +Elysha +Eman +Emi +Emmie +Eri +Erick +Erynn +Evangeline +Evelina +Evie +Evita +Fay +Florencia +Flory +Folasade +Gaby +Gayla +Ger +Gigi +Glenisha +Glenn +Grabiela +Grasiela +Gustavo +Ha +Haidee +Haily +Harley +Harriet +Hasmik +Haylie +Hollyann +Hunter +Ian +Idania +Ilda +Ileen +Ilyana +Irais +Ivanna +Ivet +Ivey +Jacqlyn +Jalessa +Jalissa +Jalyssa +Jamaica +Jamilah +Janai +Janica +Jannete +Janneth +Jaslyn +Javon +Jawanna +Jay +Jaya +Jaycee +Jayde +Jazmene +Jelisa +Jenika +Jennafer +Jeraldine +Jesselyn +Jessyka +Jewell +Joni +Jonisha +Jorden +Jori +Josselyn +Joycelyn +Justene +Kady +Kaeli +Kailah +Kailie +Kaiya +Kalena +Kalin +Kami +Kamryn +Kanisha +Kaori +Kareena +Karem +Karmen +Karoline +Kassaundra +Katalina +Katee +Katelynne +Kathyrn +Katieann +Katja +Kavita +Kaya +Kayce +Kaylani +Kaylia +Keandra +Keegan +Keiara +Kela +Kellen +Kelliann +Kelsee +Kennisha +Keturah +Keyona +Khrystyna +Kiandra +Kiarra +Kimia +Kiri +Kirra +Kiyana +Kodi +Kortnee +Kourtni +Kris +Kristeen +Kristle +Kristol +Kyana +Kyleen +Kyli +Kymberlee +Lai +Laina +Lakia +Lanita +Laquesha +Larae +Latanya +Latesha +Lauri +Lawren +Leesha +Letecia +Letty +Lexie +Leyla +Licette +Lindsee +Lisbet +Lissett +Lizbet +Llesenia +Loreal +Lucretia +Lynna +Lysa +Lyzeth +Lyzette +Macey +Madeley +Madina +Madisen +Mae +Maisha +Maite +Malaysia +Mandeep +Maral +Marche +Marco +Margret +Mariaesther +Marielena +Marily +Marinda +Markiesha +Marleni +Marlenne +Marlisa +Marquis +Marya +Maryalice +Massiel +Maylin +Mckayla +Meena +Mehgan +Mei +Melika +Mendy +Merisa +Merle +Michella +Migdalia +Milana +Mindi +Minnie +Missy +Mitra +Miyuki +Monalisa +Monigue +Montoya +Morgen +Myeshia +Myriah +Naara +Nai +Nailah +Naima +Nanette +Nassim +Navil +Navneet +Negin +Neyra +Ngoc +Ngozi +Nguyet +Nichele +Nicky +Nidya +Ninfa +Noell +Nyesha +Nyla +Nyssa +Passion +Patrica +Patrisia +Paul +Payal +Pedro +Peter +Piper +Porche +Puja +Queena +Rainey +Raissa +Randa +Rania +Raymond +Rayshawn +Reba +Rebeccah +Renisha +Rhiana +Ria +Riane +Risa +Roman +Rosaly +Rosella +Roshelle +Rowan +Rudy +Ruthie +Sahira +Sanam +Sanna +Santiago +Sapphire +Sarahy +Sarin +Sarra +Savana +Sebrina +Selia +Seng +Serra +Shada +Shaela +Shalee +Shaleena +Shalena +Shalene +Shamia +Shandi +Shantae +Sharae +Sharayah +Sharde +Sharise +Sharissa +Sharra +Shaunte +Shawne +Shawnta +Shaya +Shaye +Sheida +Shelena +Shelia +Sherlyn +Shianne +Shiree +Shirlee +Sian +Silva +Sina +Sinai +Sintia +Somer +Sonam +Sophea +Steffani +Stepanie +Stephane +Stephanieann +Stepheny +Sterling +Steve +Stormi +Sully +Sumer +Talar +Tamia +Tani +Taren +Tarra +Tarryn +Tashia +Taya +Taylar +Teela +Teila +Teressa +Terina +Terrisha +Tesla +Thuy +Tiffiany +Tiffini +Tiphani +Tisha +Tobi +Tony +Toya +Travis +Trinh +Tristen +Tristyn +Turquoise +Tyeisha +Tynisha +Vaness +Vaneza +Verena +Verna +Vianney +Vivianna +Ximena +Xochil +Yamileth +Yancy +Yen +Yezenia +Yomaira +Yuriana +Zandra +Zara +Zipporah +Zoraida +Zoua +Jessica +Ashley +Stephanie +Amanda +Jennifer +Elizabeth +Sarah +Brittany +Samantha +Michelle +Melissa +Nicole +Maria +Vanessa +Lauren +Megan +Christina +Emily +Danielle +Alyssa +Rebecca +Rachel +Laura +Amber +Andrea +Kayla +Kimberly +Crystal +Katherine +Jasmine +Tiffany +Alexandra +Heather +Diana +Chelsea +Cynthia +Natalie +Jacqueline +Victoria +Courtney +Erica +Ana +Erika +Brenda +Veronica +Sara +Monica +Nancy +Amy +Angela +Brianna +Yesenia +Kelly +Kelsey +Alicia +Hannah +Cassandra +Christine +Adriana +Taylor +Sandra +Daisy +Mayra +Angelica +Brittney +Alexis +Alejandra +Lisa +Anna +Karen +Bianca +Erin +Gabriela +Karina +Patricia +Cindy +Marissa +Jamie +Caitlin +Allison +Kristen +Mary +Kristina +Claudia +Joanna +Cristina +Monique +Kathryn +Julia +Denise +Leslie +Wendy +Katie +Catherine +Breanna +Lindsey +Olivia +Briana +Evelyn +Ariel +Desiree +Melanie +Shannon +Alexandria +Priscilla +Lindsay +Guadalupe +Janet +Sabrina +Julie +Morgan +April +Valerie +Kristin +Kathleen +Jordan +Rosa +Brooke +Krystal +Jenna +Katelyn +Liliana +Linda +Ariana +Katrina +Gabrielle +Karla +Martha +Natasha +Jeanette +Paige +Jasmin +Jazmin +Gloria +Kaitlyn +Jenny +Sonia +Whitney +Carolina +Raquel +Teresa +Leticia +Shelby +Justine +Molly +Grace +Gina +Leah +Maribel +Alma +Esmeralda +Ruby +Sandy +Tara +Yvette +Marlene +Lorena +Holly +Cecilia +Abigail +Kaitlin +Jocelyn +Blanca +Marisol +Carmen +Angelina +Felicia +Isabel +Jillian +Haley +Emma +Miranda +Dana +Dominique +Irene +Chloe +Susan +Alexa +Sophia +Meghan +Carla +Tatiana +Susana +Miriam +Britney +Nichole +Beatriz +Tanya +Caroline +Rachael +Margaret +Yvonne +Candice +Alison +Maritza +Camille +Marina +Sierra +Heidi +Rocio +Jaclyn +Stacy +Sydney +Candace +Araceli +Virginia +Mariana +Stacey +Claire +Mercedes +Casey +Rebekah +Ashlee +Daniela +Audrey +Brandi +Renee +Krista +Alisha +Kylie +Jazmine +Kirsten +Tracy +Elena +Deanna +Lizbeth +Arielle +Bethany +Esther +Melinda +Marisa +Brandy +Deborah +Margarita +Kristine +Kendra +Roxanne +Karissa +Sharon +Silvia +Isamar +Janelle +Juliana +Lizette +Madison +Carolyn +Norma +Chelsey +Helen +Tania +Carissa +Carly +Gabriella +Gladys +Kara +Jacquelyn +Yadira +Anne +Amelia +Vivian +Yolanda +Ruth +Noemi +Sylvia +Theresa +Pamela +Edith +Barbara +Darlene +Eva +Johanna +Cristal +Diane +Maricela +Meagan +Melody +Paulina +Tina +Lacey +Madeline +Carina +Jade +Marie +Nadia +Adrianna +Iris +Angel +Rachelle +Cheyenne +Perla +Janette +Sasha +Nina +Savannah +Naomi +Paula +Connie +Elaine +Judith +Lucia +Lydia +Paola +Roxana +Tamara +Kathy +Arianna +Marilyn +Caitlyn +Destiny +Marisela +Luz +Carol +Elisa +Irma +Rochelle +Kellie +Viviana +Elise +Genesis +Hayley +Aimee +Celeste +Hilary +Stephany +Ashleigh +Colleen +Josephine +Griselda +Mallory +Tessa +Anabel +Christian +Hillary +Autumn +Reyna +Alice +Annie +Mia +Robin +Clarissa +Regina +Sofia +Donna +Jaqueline +Michele +Summer +Alissa +Ellen +Joyce +Joana +Carrie +Corina +Eileen +Charlotte +Fabiola +Kelli +Kiara +Allyson +Jane +Maira +Stefanie +Yessenia +Shawna +Valeria +Angie +Bridget +Lizeth +Mariah +Brianne +Natalia +Rubi +Chanel +Iliana +Kassandra +Jessie +Lucy +Frances +Arlene +Elisabeth +Mariela +Alana +Ann +Jaime +Kate +Kristy +Nathalie +Serena +Tabitha +Ebony +Adrienne +Judy +Taryn +Charlene +Mai +Robyn +Shirley +Anita +Devon +Ericka +Ivette +Jeannette +Kaylee +Annette +Kendall +Sally +Breana +Brittani +Rebeca +Rose +Aurora +Hanna +Michaela +Tiana +Christy +Francesca +Yasmin +Maya +Zoe +Aubrey +Dulce +Lillian +Nora +Adilene +Hailey +Lucero +Genevieve +Lorraine +Raven +Daniella +Juana +Kelley +Celia +Rosemary +Alisa +Antoinette +Simone +Alina +Nataly +Noelle +Sheila +Bailey +Graciela +Lourdes +Melina +Rita +Trisha +Bonnie +Corinne +Giselle +Roxanna +Cara +Celina +Fatima +Tammy +Berenice +Lisette +Olga +Ingrid +Janae +Juanita +Julianne +Lily +Nicolette +Cheryl +Maricruz +Cortney +Kasey +Leanna +Misty +Toni +Randi +Thalia +Anastasia +Asia +Cinthia +Devin +Bertha +Kaila +Kristi +Mackenzie +Cassie +Debbie +Selene +Vicky +Viridiana +Chantel +Joanne +Larissa +Catalina +Dianna +Kari +Desirae +Janice +Lena +Magdalena +Suzanne +Alyson +Breanne +Chelsie +Elsa +Krystle +Alysha +Brenna +Pauline +Talia +Beverly +Delia +Faith +Belen +Eunice +Lori +Nadine +Shayla +Alanna +Aracely +Brittni +Johana +Julianna +Meredith +Nikki +Tess +Casandra +Elvia +Esperanza +Ivonne +Justina +Lesley +Marcela +Bernadette +Clara +Danica +Georgina +Jennie +Myra +Joy +Sarai +Candy +Ciara +Flor +Kylee +Leilani +Luisa +Sophie +Ashly +Dolores +Katharine +Lea +Bree +Hilda +Mindy +Belinda +Elvira +Jill +Julissa +Lidia +Madeleine +Maggie +Michael +Salina +Angelique +Athena +Chantal +Janine +Kelsie +Magali +Rosario +Aileen +Bridgette +Elyse +Hope +Kristal +Kristie +Reina +Dalia +Dorothy +Jordyn +Kyla +Laurel +Alexander +Alondra +Beatrice +Brianda +Cierra +Dawn +Estela +Jacklyn +Kirstie +Rosalinda +Selina +Shauna +Shayna +Sonya +Jessika +Shaina +Shelly +Tasha +Jenifer +Katy +Marcella +Nayeli +Rhiannon +Tiara +Tyler +Yessica +Josefina +Lacy +Lissette +Vanesa +Azucena +Bryanna +Jose +Stacie +Alexandrea +Alycia +Ashlie +Doris +Joann +Katelynn +Lizet +Sherry +Tia +Cathy +Christiana +Lara +Melisa +Shana +Angelia +Cecily +Christa +Jaimie +Lilian +Lynn +Maureen +Natali +Ryan +Sadie +Stefani +Tracey +Antonia +Geraldine +Grecia +Jackie +Loren +Precious +Rosie +Yajaira +Diamond +Evelin +Janessa +Kenia +Susie +Christie +Danika +Estefania +Kira +Lilia +Lyndsey +Edna +Emilia +Kaela +Kiana +Kimberley +Alexia +Christopher +Consuelo +Damaris +Daniel +Dina +Eliza +Faviola +Giovanna +Isabella +Ivana +Janeth +Stevie +Alaina +Amalia +Anais +Debra +Denisse +Jessenia +Latoya +Micaela +Tiffani +Violeta +Abby +Kailey +Kristyn +Meaghan +Traci +Yanira +Annabel +Betsy +Betty +Breann +Breeana +Callie +Emilie +Jackeline +Kim +Mikaela +Mireya +Paris +Patrice +Tanisha +Tawny +Breeanna +Elisha +Ileana +Jannet +Kacie +Kayleigh +Keri +Krystina +Marta +Yazmin +Ashely +Brittnee +Celene +Eliana +Fiona +Gianna +Kerry +Kirstin +Leanne +Phoebe +Sheena +Tierra +Xochitl +Blair +Cassidy +Charity +Francis +Hazel +Izamar +Jesica +Malia +Marlen +Pa +Paloma +Allyssa +Dianne +Elissa +Lauryn +Marla +Mirian +Shanna +Tianna +Yuliana +Zaira +Alba +Astrid +Bernice +Brittanie +Constance +Gwendolyn +Jesenia +Lia +Mara +Noel +Staci +Susanna +Xiomara +Aisha +Brittaney +Cherie +Coral +Dayna +Dora +Estrella +Kali +Kourtney +Liana +Lina +Lupita +Magaly +Mariam +Mariel +Monika +Pricilla +Savanna +Tiffanie +Tonya +Alessandra +Ashlyn +Gladis +Isela +Katlyn +Mirna +Mollie +Tori +Alysia +Ashton +Brandie +Brigette +Chantelle +Chrystal +Eden +Imelda +Ivy +Jana +Jean +Joselyn +Kimberlee +Lana +Lynette +Pilar +Tabatha +Britany +Cayla +Danae +Elaina +Eleanor +Elia +Janay +Jayme +Kasandra +Marian +Nikole +Terra +Ada +Alex +Brittny +Cameron +Fernanda +Francine +Francisca +Jodi +Kelsi +Latasha +Madelyn +Merissa +Mikayla +Phylicia +Zulema +Corey +David +Deja +Felisha +Jami +Kiley +Krysta +Mandy +Marlyn +Roberta +Stella +Tricia +Yecenia +Adrian +Angeline +Anjelica +Darcy +Dayana +Destinee +Georgia +Jalisa +Jeanine +Joelle +Josie +Kacey +Kandice +Kelsea +Maura +Minerva +Samatha +Shanae +Tayler +Yesica +America +Aubree +Christen +Corrine +Dalila +Estefani +Estephanie +Evangelina +Gricelda +Itzel +Jamila +Keely +Keisha +Nelly +Rene +Alyse +Anakaren +Becky +Beth +Bobbie +Britni +Bryana +Elva +Geneva +Jannette +Jesse +Juan +Juliet +Kaley +Karly +Katelin +Kenya +Lesly +Lilly +Liza +Malissa +Marlena +Mckenzie +Patsy +Riley +Rosio +Sade +Sarina +Selena +Skye +Areli +Corrina +Dakota +Jeannie +Lisbeth +Macy +Mari +Martina +Maryann +Richelle +Serina +Soledad +Stephani +Trina +Yuri +Yuridia +Aida +Amie +Anissa +Arely +Cecelia +Christin +Delaney +Eugenia +Glenda +Janell +Jena +Joan +Julieta +Kaitlynn +Kyra +Michell +Nallely +Pearl +Verenice +Adela +Aja +Alysa +Ambar +Audra +Charmaine +Cora +Eloisa +Elyssa +Isabelle +Jenelle +Kaleigh +Katarina +Kaylyn +Kyle +Leann +Mellissa +Nidia +Reanna +Rosalia +Vannesa +Vannessa +Violet +Adrianne +Andrew +Annemarie +Brigitte +Cheyanne +Cinthya +Corinna +Domonique +Emely +Emerald +Fanny +Jacquelin +Jovanna +Leandra +Maegan +Matthew +Shantel +Yahaira +Yanet +Analisa +Ani +Cassondra +Chanelle +Clare +Cristine +Daphne +Devan +Eryn +Estefany +Gillian +Ivanna +Janie +Jazzmine +Jesus +Ka +Kiersten +Korina +Makayla +Monserrat +Moriah +Nanci +Nellie +Rikki +Rosalie +Rosemarie +Valarie +Alena +Anali +Andria +Anel +Brittnie +Concepcion +Daysi +Deana +Deisy +Hana +Inez +Kathrine +Kristian +Leila +Lizett +Lupe +Marcia +Marianne +May +Nereida +Ofelia +Robert +Rosalba +Skylar +Tracie +Trinity +Carley +Cory +Delilah +Gisela +Heidy +Jolene +Juliette +Marysol +Maxine +Scarlett +Shelley +Socorro +Sonja +Tarah +Vicki +Annmarie +Ayla +Bao +Britnee +Cody +Dena +Denice +Haydee +Hollie +Jaimee +Joshua +Katheryn +Laurie +Lee +Leigh +Marjorie +Nathaly +Shea +Terry +Zuleyma +Alejandro +Amaris +Analy +Andreina +Annamarie +Britny +Brook +Chandra +Cori +Davina +Ellie +Elsie +Jazzmin +Jeanne +Kortney +Krysten +Lacie +Louise +Luis +Mabel +Mona +Princess +Ramona +Skyler +Teresita +Terri +Valentina +Yer +Acacia +Anahi +Anamaria +Angelita +Annalisa +Ariella +Ashli +Austin +Catrina +Ciera +Dominque +Fallon +Franchesca +Ilene +Imani +Janett +Janna +Jazmyn +Jeniffer +Kala +Kaylie +Lilliana +Lyndsay +Monet +Nicolle +Porsha +Racheal +Suzette +Tamika +Venessa +Alesha +Allie +Anisha +Anthony +Ava +Briseida +Carlie +Debora +Dennise +Emilee +Helena +Jazmyne +Jonathan +Kalyn +Karli +Lynda +Martika +Mirella +Raelene +Rayna +Rebecka +Rena +Sarahi +Sequoia +Shanell +Shari +Stefany +Thania +Trista +Vianey +Vickie +Alia +Alyssia +Arianne +Audriana +Avery +Carmina +Chelsi +China +Dannielle +Dara +Denisha +Diandra +Elida +Eric +Gisselle +Hallie +Jackelyn +Janel +John +Katlin +Kaycee +Kaylin +Keila +Kenisha +Laila +London +Lucinda +Marilu +Myrna +Paulette +Shaniqua +Shelbi +Spencer +Sunny +Tatianna +Unique +Yasmine +Alexi +Ali +Bianka +Brandee +Chanell +Charisse +Deandra +Deidra +Doreen +Ginger +Gracie +Heaven +James +Kayleen +Kelsy +Krystin +Marielle +Nia +Priscila +Rhea +Saira +Shanice +Shasta +Tawni +Vania +Carlee +Carli +Chantell +Cherise +Christal +Cristian +Demi +Jasmyne +Jenessa +Jerrica +Jourdan +Karin +Kerri +Kevin +Kia +Kiera +Kirstyn +Kori +Latisha +Layla +Lianna +Lila +Lizzette +Marianna +Marsha +Mildred +Noemy +Nydia +Renae +Rhonda +Rosanna +Shanee +Shante +Shawn +Shyla +Sindy +Sinead +Siobhan +Steffanie +Sue +Suzanna +Yoana +Annalise +Brisa +Britani +Brynn +Byanka +Carlos +Chante +Desire +Devyn +Ella +Enedina +Flora +Gail +Gema +Ilana +Jerica +Kaci +Kendal +Kenna +Kierra +Kymberly +Ladonna +Logan +Lucille +Manuela +Mariadejesus +Markie +Mckenna +Mimi +Navil +Nikita +Quinn +Rosana +Rosaura +Ryann +Salena +Tera +Teri +Trinidad +Vianca +Wendi +Alejandrina +Amara +Amira +Anai +Anika +Antionette +Beatris +Breeann +Brieanna +Carmela +Cathleen +Cheri +Danyelle +Eboni +Edgar +Elba +Erinn +Evette +Francisco +Geena +Ida +Janee +Jessi +Jovana +June +Kaelyn +Kailee +Karlie +Larisa +Liset +Lisset +Liz +Marycruz +Mercedez +Misha +Nohemi +Priya +Rosalina +Saray +Shara +Sidney +Stacia +Stephenie +Sulema +Ursula +Vilma +Yamilet +Yareli +Zoila +Zuleima +Aide +Alix +Amparo +Anh +Ashlynn +Aurelia +Casie +Danna +Deirdre +Deysi +Elle +Erendira +Jeanna +Jennefer +Joslyn +Julieann +Justin +Kandace +Lakeisha +Latrice +Lizabeth +Lucerito +Maryam +Nichelle +Nohely +Patty +Petra +Raeann +Raina +Rana +Raylene +Sahar +Samira +Shanelle +Shawnee +Sheri +Sheridan +Shira +Suleima +Sydnie +Talisa +Thao +Thelma +Tierney +Trang +Xenia +Yasmeen +Zachary +Abril +Alannah +Allegra +Alora +Anayeli +Annelise +Annika +Antonette +Antonio +Asha +Ashlei +Ayesha +Bobbi +Cari +Carlene +Cathryn +Channel +Charissa +Colette +Cristy +Dallas +Dania +Deena +Elana +Eleni +Eve +Frankie +Hailee +Harmony +Ines +Isis +Jayne +Jenae +Josselyn +Kalie +Kallie +Kassie +Kayley +Kayli +Krystyna +Loretta +Lynnette +Madalyn +Maia +Marlin +Mellisa +Mercy +Micah +Nereyda +Nisha +Pang +Racquel +Rina +Samanta +Samara +See +Shani +Shanika +Shivani +Sky +Stephaine +Symone +Tanesha +Thea +Tyesha +Xochilt +Yohana +Abbey +Adelina +Alayna +Aliza +Anastacia +Andriana +Arcelia +Billie +Brea +Brian +Cady +Cambria +Caren +Celine +Cherish +Claribel +Dani +Darla +Delanie +Haleigh +Ilse +India +Jaymee +Jewel +Kadie +Karisa +Kelcie +Kianna +Leana +Leeann +Lilibeth +Lindy +Lucila +Marcelina +Marguerite +Mariadelcarmen +Mariaguadalupe +Marilynn +Marion +Marrissa +Meghann +Monae +Nelida +Page +Rachele +Rhianna +Rosalind +Rosalyn +Sahara +Sana +Shanel +Shantal +Shelbie +Sheree +Suleyma +Tamar +Tamra +Tiera +Victor +Wanda +Whitley +Agnes +Aline +Alysse +Amberly +Anamarie +Annabelle +Anneliese +Araseli +Ariane +Berenise +Blake +Brandon +Brielle +Britnie +Chasity +Chelsee +Choua +Chyna +Cintia +Cyndy +Daniele +Deanne +Elda +Elicia +Elisabet +Georgette +Gretchen +Haylee +Herminia +Holli +Janina +Jaquelin +Jennyfer +Joseph +Kalia +Katerina +Kathryne +Kati +Kaylynn +Keren +Keshia +Lacee +Lani +Leona +Leonor +Linsey +Liseth +Lisett +Lluvia +Louisa +Lynsey +Magda +Malinda +Mallorie +Maren +Margo +Maricella +Marika +Marylou +Miesha +Miguel +Mitzi +Nicholas +Nicollette +Nika +Nisa +Rachell +Rosamaria +Sayra +Shamika +Sherri +Sherrie +Sondra +Steffany +Susy +Tameka +Torrey +Alecia +Aleena +Alishia +Anya +Ariela +Arleen +Audrianna +Aura +Ayana +Berta +Bridgett +Britteny +Brooklyn +Byanca +Camilla +Carmelita +Carole +Celena +Courtnie +Dahlia +Delores +Deziree +Elora +Iman +Isaura +Jacquelyne +Jenee +Jenniffer +Jessyca +Jimena +Jodie +Jody +Kami +Karlee +Lauri +Lizbet +Lyndsie +Macie +Magen +Marcy +Marlee +Maryanne +Meggan +Mika +Mina +Montana +Neda +Ngoc +Niki +Octavia +Peggy +Penny +Phuong +Piper +Raisa +Rebekka +Romina +Sage +Sammantha +Serenity +Sergio +Shakira +Shanay +Sharlene +Shay +Shiloh +Shireen +Sirena +Steven +Tasia +Tawnya +Tenaya +Thomas +Vera +Yaneli +Yaneth +Zaida +Zara +Alaura +Alexus +Amada +Analicia +Babygirl +Bria +Brionna +Brynne +Caitlan +Cassaundra +Cera +Chelsa +Chelsy +Cindi +Corrin +Courtnee +Crista +Cruz +Cydney +Deidre +Deseree +Deyanira +Eduardo +Evan +Farah +Gabriel +Guillermina +Jaclynn +Jahaira +Jeana +Jeanie +Jolie +Jordon +Josephina +Kaeli +Kandis +Karyn +Katlynn +Kiah +Kinsey +Kristan +Kristiana +Krystine +Lakisha +Leslee +Lissa +Lissett +Lyanne +Macey +Maddison +Mandi +Maranda +Mariaelena +Mario +Mayte +Mele +Melyssa +Nadya +Natalee +Natalya +Natashia +Noor +Nou +Nuvia +Penelope +Porscha +Rianna +Risa +Roxann +Rylee +Sabina +Shantell +Shoshana +Shoua +Siera +Starr +Stephine +Stevi +Timothy +Tory +Valencia +Vaness +Vivianna +Yezenia +Zahra +Alanah +Alivia +Almarosa +Alyshia +Amina +Angelena +Angeles +Ariell +Aubrie +Berlin +Breeanne +Breonna +Cali +Carisa +Clarice +Clarisa +Codi +Colby +Collette +Corie +Corin +Corrie +Danelle +Danette +Danya +Debby +Denae +Desiray +Destiney +Destini +Edlin +Elysia +Emelia +Ethel +Evelia +Farrah +Florence +Genna +Gisel +Grisel +Holland +Hortencia +Idalia +Irais +Janelly +Jasmyn +Jason +Jaspreet +Jaymie +Jenica +Jesika +Joni +Jorge +Joselin +Julian +Juliann +Julieanne +Kacy +Kalena +Kamille +Karie +Karley +Karolina +Kattie +Kayle +Kenneth +Keyana +Kimber +Kirsti +Lashay +Leeanna +Lili +Lillie +Lindsy +Lisseth +Lois +Lola +Lorin +Lorna +Maile +Makenna +Malika +Malina +Malorie +Malory +Margie +Marialuisa +Marquita +Matilde +Meliza +Michela +Millie +Mira +Myesha +Nakia +Neyva +Nicola +Noelia +Nubia +Phyllis +Portia +Rebeka +Remy +Rheanna +Roberto +Ronnie +Rosalva +Sacha +Sarrah +Shanise +Sheng +Sheryl +Silva +Skyla +Sloane +Sommer +Steffani +Thuy +Tiarra +Torrie +Velia +Windy +Yara +Aaron +Aleah +Allissa +Alvina +Ami +Analaura +Analise +Annalee +Armida +Ashlea +Ayanna +Brett +Brittnay +Candida +Candis +Candyce +Caressa +Caryn +Cheree +Cherelle +Christi +Danyell +Darci +Daria +Desirea +Dorian +Elizabet +Erlinda +Evangeline +Faye +Felicity +Fernando +Gayle +Gemma +Gena +Gigi +Halie +Hanh +Henry +Herlinda +Ian +Jacob +Jacquelynn +Jacqulyn +Jamee +Janaye +Janeen +Janely +Janiece +Jessa +Jorden +Jovita +Kalani +Kanisha +Karrie +Kasie +Katey +Katia +Kaylan +Kaylene +Keanna +Keeley +Lanae +Lane +Laquisha +Latesha +Laticia +Lisbet +Livier +Lizzet +Lizzeth +Lora +Loraine +Luciana +Lucina +Makenzie +Maricel +Mariza +Marleen +Martin +Mattie +Melaine +Melani +Melony +Miya +Myranda +Nalleli +Nhi +Noreen +Oriana +Oscar +Phoenix +Polly +Raechel +Richard +Rio +Ronda +Ronni +Roseanne +Rosita +Rosy +Roya +Sandi +Sapphire +Sarita +Saundra +Sharla +Soraya +Stefania +Stepanie +Stephane +Stephen +Susannah +Suzie +Sydnee +Synthia +Tami +Therese +Tonia +Tosha +Vanity +Veronika +Winnie +Yael +Zabrina +Zenia +Adele +Adeline +Ahsley +Akilah +Alexys +Alexzandra +Alise +Allysa +An +Anjali +Annel +Apolonia +Argelia +Aria +Ariadna +Aryn +Ashliegh +Aundrea +Aya +Baby +Baylee +Belem +Bella +Brigid +Brittanee +Brittini +Bryn +Calli +Cami +Candi +Charleen +Charlie +Cherry +Christiane +Christianna +Chrystina +Chynna +Codie +Corissa +Daniell +Daysy +Delmy +Deserie +Ebonee +Ebonie +Elysse +Emmeline +Ernestina +Estephany +Ester +Gardenia +Greta +Haylie +Huong +Indira +Irina +Jacquline +Jammie +Jaquelyn +Jaylene +Jayna +Jenette +Jenice +Jerika +Jerri +Jessy +Jocelin +Jocelynn +Joel +Johnisha +Joseline +Julisa +Karah +Karena +Karol +Kaytlin +Kierstyn +Kyara +Latanya +Laureen +Lianne +Linette +Linh +Linnea +Lissete +Loni +Madai +Malyssa +Maricarmen +Marizol +Marlina +Martiza +Maryssa +Milan +Miracle +Myriam +Navid +Nayelli +Nayely +Neelam +Noelani +Oliva +Patience +Peter +Pooja +Porsche +Rae +Raeanne +Regan +Riana +Ronisha +Samuel +Sean +Shandra +Shane +Shanita +Shannel +Sharae +Sharayah +Sharina +Shereen +Song +Soua +Stormie +Stormy +Sueling +Sully +Sulma +Sydni +Tabetha +Talin +Talya +Tatyana +Tegan +Tonisha +Tyra +Van +Vi +Vivien +Ximena +Xochil +Yee +Yoanna +Ysamar +Zenaida +Adelaida +Adelaide +Adina +Adrina +Alesandra +Alisia +Alva +Amberlynn +Amethyst +Anabell +Anabelle +Analilia +Andreana +Anisa +Annamaria +Anyssa +Arica +Aspen +Benjamin +Bessie +Bibiana +Blaire +Bonita +Breyanna +Briann +Brieana +Caitlynn +Camila +Candelaria +Catharine +Cesar +Chanice +Charise +Chase +Chee +Chi +Christianne +Clair +Cristen +Daina +Daisey +Danisha +Darling +Darlyn +Deonna +Deserae +Dezirae +Dinora +Dolly +Dyana +Edlyn +Elexis +Ellyn +Eulalia +Giana +Gilda +Gisell +Gizelle +Hanan +Helene +Illiana +Isamara +Isha +Ivan +Jacquelene +Jaleesa +Janai +Jaymi +Jazmen +Jeannine +Jeffrey +Jennette +Jennica +Jeri +Jesslyn +Jonna +Jordana +Jordann +Jordin +Kailyn +Kaitlan +Kalli +Kameron +Karine +Kassondra +Kathie +Katty +Kaya +Kc +Keilah +Kennisha +Keyanna +Kierstin +Kimberli +Kindra +Kirby +Kirsty +Krizia +Kyleigh +Lai +Lainey +Latonya +Layne +Leesa +Leigha +Lenora +Letty +Lexus +Liane +Libby +Liberty +Lilit +Lisandra +Lizandra +Lorie +Lorina +Ma +Manpreet +Marci +Marivel +Marleni +Meagen +Mechelle +Meg +Melany +Merry +Michel +Mikaila +Milagros +Milena +Nailea +Nakita +Neha +Nichol +Nickole +Niesha +Nikia +Paul +Prisma +Raeanna +Roni +Roselyn +Sabreena +Saida +Samia +Sarena +Savana +Seema +Sendy +Shanequa +Shaniece +Sharita +Shaylene +Sherell +Shyanne +Star +Talissa +Talitha +Tamera +Tatum +Teagan +Teena +Tempest +Tisha +Vikki +William +Winter +Yoselin +Youa +Zainab +Zaneta +Zina +Zoraida +Aarika +Adam +Adriane +Afton +Aidee +Alberto +Alexsandra +Allana +Althea +Alyce +Alyssamarie +Aminah +Ammy +Amrit +Anaid +Andra +Anja +Arlette +Arlin +Arlyn +Asley +Asusena +Azaria +Benita +Bethanie +Betsabe +Briauna +Brogan +Candie +Candra +Caprice +Carlyn +Carmel +Casondra +Cesia +Chana +Chanda +Chaya +Chelcie +Chenoa +Cher +Chrissy +Ciarra +Cleo +Corine +Cortnie +Cyndi +Darleen +Darline +Deisi +Dejanae +Delfina +Demetra +Dezarae +Dinah +Dixie +Drew +Eda +Edit +Erikka +Estefanie +Estella +Felecia +Frieda +Glenna +Gregory +Iesha +Jamisha +Janea +Janey +Janisha +Janneth +Jasmina +Javier +Jelisa +Jenise +Jennae +Jenni +Jesseca +Jocelyne +Johannah +Johnny +Joi +Kady +Kaily +Kaja +Kalin +Kandyce +Karyna +Karyssa +Kasha +Kasondra +Kassi +Katherina +Kathlyn +Kathrin +Kaysha +Kaytlyn +Kelci +Kemberly +Kennedy +Kerrie +Keyla +Khadija +Kristel +Kristle +Lan +Laney +Laquita +Lashanda +Lashawn +Lashonda +Latia +Latricia +Leia +Leighann +Leonela +Leora +Lesli +Leyla +Lindsie +Lisamarie +Lucie +Lurdes +Lynne +Maegen +Maly +Marbella +Mariaisabel +Mariko +Marilou +Marin +Marisha +Marquisha +Marya +Marylin +Meline +Melonie +Michaella +My +Nailah +Natividad +Nena +Oralia +Parisa +Precilla +Prescilla +Rabecca +Raelyn +Rebeckah +Reena +Renata +Ricardo +Roseanna +Roselia +Rosetta +Roslyn +Sable +Sadaf +Sandie +Sanjuana +Shabnam +Shanea +Shaneka +Shavon +Shavonne +Shaylyn +Siena +Sienna +Silvana +Sivan +Sonam +Stephania +Subrina +Sunshine +Suzana +Suzy +Taelor +Taira +Tana +Tawnie +Teal +Terrie +Tesia +Tesla +Tristan +Valery +Venus +Vy +Wilma +Yanina +Yarely +Yuriana +Zoey +Abbie +Addison +Adelita +Adreana +Adreanna +Aeriel +Aislinn +Alea +Aleesha +Alesia +Ally +Amairani +Amani +Amee +Amrita +Anabella +Anacaren +Analee +Anay +Andres +Andrina +Angelea +Angelika +Annalyse +Antonisha +Ariadne +Arial +Ariele +Arlet +Ashlin +Ashtyn +Audrie +Austyn +Autum +Aysha +Azalea +Banesa +Banessa +Biridiana +Biviana +Blythe +Bo +Breona +Brieann +Britt +Britta +Cally +Camellia +Carisma +Carrissa +Cassey +Catarina +Catheryn +Cecila +Celestina +Cendy +Charis +Charlee +Cherisse +Cherrell +Cherrelle +Chistina +Chyanne +Cinnamon +Coleen +Corrinne +Courteney +Criselda +Crystina +Daissy +Danny +Darcie +Dawna +Dee +Deicy +Della +Demetria +Denis +Der +Destany +Destinie +Dionne +Dona +Donielle +Dyanna +Ema +Emi +Emmalee +Erick +Eryka +Erynn +Esthela +Felisa +Flavia +Freda +Gabriele +Genessis +Genoveva +Glory +Grabiela +Hadley +Hali +Hector +Huda +Irasema +Ivon +Jacelyn +Jackelin +Jacklynn +Jacy +Jael +Jamesha +Janis +Jannelle +Jannett +Jasimine +Jasmeen +Jayde +Jeanelle +Jene +Jenesis +Jennah +Jessicaann +Jina +Jo +Joey +Johnna +Johnnie +Josalyn +Josette +Jullian +Justyne +Kaili +Kaira +Kalee +Kaleena +Kalina +Kalisha +Kamesha +Kamilah +Kandy +Kao +Kaori +Kassidy +Kathrina +Katina +Katja +Kay +Keara +Keli +Kellee +Kendell +Kendyl +Kenzie +Kerstin +Kesha +Khadijah +Kimberlie +Kimiko +Kirin +Kisha +Kitty +Korinna +Kortnee +Kristeen +Kristelle +Kristianna +Kristinamarie +Lachelle +Laci +Lakeshia +Lanisha +Latosha +Lavina +Lavinia +Leonora +Linzy +Lyla +Lyna +Lynnea +Maci +Madelaine +Mahogany +Malisa +Margot +Mariann +Mariateresa +Marisabel +Maritsa +Markia +Markisha +Marlenne +Marley +Marly +Marybeth +Matilda +Mayda +Megann +Mei +Melia +Melodie +Meranda +Merari +Michal +Micheline +Midori +Mikala +Mikki +Miriah +Miryam +Mitzy +Montserrat +Morganne +Myisha +Nai +Nathalia +Nemesis +Neyda +Nyisha +Paisley +Passion +Phoua +Porcha +Presley +Pricila +Qiana +Quanisha +Quiana +Raena +Randee +Rashida +Raynisha +Reanne +Reilly +Ria +Robbin +Rosenda +Ryanne +Saige +Salvador +Samone +Sandeep +Santana +Savanah +Shaela +Shala +Shalisa +Shalonda +Shalyn +Shanda +Shanique +Shantae +Shardae +Sharee +Sheyla +Shonna +Sina +Sindi +Sintia +Smantha +Sol +Stacee +Steffi +Stephannie +Sterling +Taja +Tal +Tamarra +Tanna +Tannaz +Tawnee +Tawney +Taylar +Teanna +Teryn +Thu +Tiffaney +Titiana +Treasure +Triana +Tyresha +Velvet +Vianna +Vina +Whittney +Xee +Yancy +Yeng +Yliana +Yuriko +Zakiya +Zeena +Zelene +Zulma +Zuri +Aaryn +Addie +Agustina +Aishah +Alexzandria +Allyse +Allysha +Almadelia +Alyxandra +Amal +Amberlee +Anacristina +Analuisa +Anam +Anarosa +Angeli +Anica +Anneke +Annessa +Anny +Antonina +Apryl +Areil +Arlenne +Armando +Arturo +Ashika +Ashle +Ashtin +Asucena +Asya +Athina +Audreanna +Avonlea +Azalia +Aziza +Azusena +Bee +Berlyn +Beronica +Bettina +Bianey +Bita +Bonny +Brieanne +Brigit +Briona +Briselda +Brittiany +Bryan +Bryanne +Brynna +Cailin +Capri +Carleigh +Carlina +Carmella +Cathrine +Catlin +Caylee +Cesilia +Champagne +Chan +Chardonnay +Charline +Chassidy +Christel +Claudette +Cleotilde +Cloe +Cortnee +Cortni +Cristin +Dacia +Dafne +Dalisha +Dallana +Danitza +Darnisha +Darrah +Daysha +Deedee +Deepika +Delma +Denia +Devi +Dylan +Eddie +Eman +Emelyn +Emilyann +Enid +Ernestine +Ernesto +Esli +Essence +Evelina +Evelyne +Evelynn +Evie +Fantasia +Fion +Gaia +Gao +Gennesis +Gia +Giovana +Gracy +Grissel +Haily +Haruka +Hermelinda +Houa +Ibeth +Idania +Ilona +Ina +Ismar +Ivett +Jacquilyn +Jalissa +Jamela +Jamey +Janica +Jannie +Janny +Jasleen +Jaycee +Jeannett +Jenay +Jenevie +Jenine +Jennelle +Jessalyn +Jessicamarie +Jessicca +Jessyka +Jimmy +Jissel +Joanie +Jordanne +Joscelyn +Josefa +Joslynn +Jossie +Kaitlen +Kanesha +Kareena +Karessa +Karri +Karrisa +Kasara +Kassaundra +Kateland +Katherin +Katheryne +Kathia +Katrin +Katryna +Kaycie +Kaydee +Kaylah +Keana +Keionna +Keira +Keiry +Kelcey +Kelcy +Kelsee +Kera +Keyonna +Khristina +Kiani +Kimberlyn +Kiona +Kiran +Kiya +Korie +Korin +Korri +Kyana +Kyrsten +Kyrstin +Laken +Lakesha +Lanie +Laporsha +Laquinta +Laraine +Laronda +Lashane +Lashawna +Latifah +Laurin +Lavonne +Lawren +Lela +Lelani +Lenore +Leonila +Liandra +Ligia +Lilianna +Lilyana +Lita +Lizzett +Llesenia +Loida +Lorelei +Lorraina +Lucky +Lysette +Lyssa +Madalynn +Madelin +Madelyne +Mae +Magan +Maha +Mailee +Makaela +Malerie +Manal +Mandie +Manuel +Mao +Marena +Margaux +Marili +Markeisha +Markita +Marlana +Marlet +Marlisa +Marybel +Marygrace +Marytza +Mayela +Mi +Miki +Milissa +Mirta +Misa +Mistie +Monserrath +Muriel +Mya +Mykel +Nabil +Naila +Nanette +Nary +Nazareth +Neftali +Neiva +Nicholette +Nicholle +Ninfa +Nyla +Palmira +Patrisha +Patrisia +Payal +Pebbles +Perri +Priscella +Prisilla +Quincy +Rafael +Rafaela +Raine +Rani +Raquelle +Raul +Rawan +Raya +Rayanna +Raynesha +Reba +Rebbeca +Rebekkah +Reem +Ricki +Rochell +Ronika +Roshelle +Rossana +Rudy +Saba +Sabra +Sada +Salma +Samanatha +Samaria +Samra +Sanam +Sarahann +Sarra +Sayda +Scott +Seanna +Selma +Serene +Shae +Shaelyn +Shalimar +Shameka +Shannan +Shanon +Shareen +Sharice +Sharie +Shatara +Shaterra +Shaun +Shaunna +Shaunte +Shawnie +Shawnna +Shayne +Shera +Sherina +Shirin +Silver +Simona +Sneha +Soleil +Soraida +Special +Starla +Susanne +Talina +Tam +Tanaya +Tarin +Tarra +Tashia +Tashina +Tawana +Tereza +Thy +Tiesha +Tony +Torey +Tram +Tran +Tressa +Tyneisha +Vaneza +Vashti +Verenise +Yanely +Yasaman +Yasamin +Ying +Yuka +Yunuen +Zahira +Zarah +Zena +Zully +Abelina +Adara +Adriene +Aerial +Aine +Ainsley +Airam +Alberta +Alda +Alegandra +Aleisha +Alene +Aleshia +Alethea +Alexcia +Alexie +Alexxis +Aleyda +Alin +Alissia +Alitza +Aliya +Alizabeth +Allanah +Allycia +Allyn +Altagracia +Alyssandra +Alyxandria +Amanada +Ambrosia +Amirah +Anacecilia +Anairis +Andrena +Angelie +Angella +Anitra +Anjela +Anjuli +Annais +Annaly +Anthea +Antonieta +Anum +Aprille +Arabella +Aries +Arika +Arlen +Arrianna +Arrielle +Ashia +Ashlan +Ashleen +Audelia +Avalon +Aviana +Avigail +Aviva +Aylssa +Bailee +Barbie +Barbra +Belia +Belkis +Belle +Benicia +Bionca +Blia +Bliss +Branda +Brendy +Briceida +Brienna +Brina +Britanny +Brittania +Brittiny +Brittnei +Camerina +Camile +Carey +Carin +Carmin +Carolann +Carolin +Carolyne +Carrisa +Cary +Catie +Cecile +Cedrina +Celestine +Celida +Cerise +Channa +Channell +Channing +Charisma +Charlette +Charly +Chau +Cherice +Cherokee +Chiara +Chioma +Chris +Chrysta +Claudio +Colin +Consepcion +Cordelia +Coryn +Cosette +Courney +Crysta +Crystle +Cyntia +Daisha +Danee +Danesha +Danille +Daryl +Dashanique +Deandrea +Deeana +Deeanna +Delila +Denay +Denee +Denika +Dennis +Desarae +Desaree +Deshawna +Destine +Devina +Diasy +Diem +Dimitra +Dinorah +Diona +Dionna +Dioselina +Divina +Divya +Dominic +Dung +Echo +Edelmira +Edie +Elaura +Electra +Elidia +Elisia +Elizeth +Ellyse +Elysa +Emelie +Emeline +Emery +Erandi +Eri +Erina +Esmerelda +Essie +Estrellita +Evon +Farren +Faustina +Felicitas +Felina +Frank +Gaby +Genesee +Genie +Geovanna +Gianina +Giannina +Gicela +Ginny +Giovanni +Gisele +Giuliana +Gizel +Gracia +Ha +Haidee +Halley +Harleen +Harley +Harriet +Hattie +Hayle +Heba +Heide +Hellen +Hermila +Hiliana +Hina +Hollee +Huyen +Ila +Ilda +Ilianna +Isabela +Isabell +Italia +Iveth +Ivory +Jacey +Jaide +Jaimi +Jalena +Jalyssa +Jameka +Jamilah +Jania +Janira +Janise +Jared +Jasminne +Jassmine +Javonna +Jazz +Jelissa +Jenea +Jennafer +Jennell +Jensen +Jensine +Jesscia +Jezabel +Jhoana +Joceline +Jodee +Joleen +Jori +Joycelyn +Judit +Julieanna +July +Kacee +Kacia +Kailin +Kaiulani +Kalei +Kamaria +Kandi +Kareen +Karely +Karem +Karis +Karolyn +Karrin +Kasaundra +Katelyne +Katharyn +Kathlene +Katrice +Katryn +Katya +Kayci +Kaylen +Keegan +Kellen +Kendahl +Kerianne +Keyaira +Khanh +Kiesha +Kimanh +Kimia +Kiri +Kiyana +Klara +Klarissa +Korey +Kourtni +Koy +Krisha +Krishna +Krislyn +Kristyne +Krystyne +Kylene +Kymber +Kymberlee +Kyndall +Kyndra +Lacresha +Laina +Laine +Lareina +Laryssa +Lashanae +Latiera +Latijera +Lauran +Lawanda +Leeanne +Leidy +Lenae +Lenna +Lesa +Leslieann +Letisha +Letitia +Lexi +Lida +Lien +Lilah +Lindsee +Lisabeth +Lolita +Lonnie +Lorisa +Lorrie +Loryn +Luana +Luci +Luisana +Luiza +Lyanna +Lynna +Lynsie +Maayan +Macrina +Madelene +Madina +Magdalene +Magnolia +Maida +Maisie +Maiya +Malaysia +Mana +Manda +Mandisa +Manisha +Marco +Maresa +Mariacristina +Maricsa +Marietta +Marilee +Marinna +Markesha +Marleny +Marli +Marlisha +Marnie +Marquesha +Marrisa +Martine +Marwa +Marycarmen +Maryelizabeth +Maryellen +Maryhelen +Marylu +Maryrose +Mayuri +Meilani +Melanee +Melinna +Mendy +Merced +Merisa +Merlin +Meshelle +Meuy +Milagro +Minnie +Mirtha +Moira +Morgane +Myeisha +Myrissa +Nachelle +Nahal +Nalley +Natassia +Nawal +Necole +Neesha +Nely +Nerissa +Neva +Nga +Nicki +Nicolina +Nida +Nikka +Niloofar +Nissa +Noa +Noely +Noheli +Norah +Noura +Obdulia +Odessa +Olympia +Osiris +Parissa +Patrina +Phung +Priyanka +Quyen +Rachal +Raeleen +Raelynn +Rainie +Raiza +Randy +Ranisha +Rasheeda +Rashel +Reana +Reann +Rebeccah +Rianne +Rima +Romy +Ronesha +Ronica +Rosalynn +Rosina +Rossy +Rowena +Roxane +Ruben +Rubie +Sabrena +Samanth +Samera +Santina +Saori +Saralyn +Sascha +Scarlet +Senaida +Sera +Shakiyla +Shalamar +Shaleen +Shalena +Shalene +Shalina +Shalini +Shanece +Shanesha +Shannen +Shantelle +Sharde +Sharleen +Sharnell +Sharonda +Sharrell +Shauni +Shaunice +Shavonna +Shawntell +Shaye +Shaylee +Shaylynn +Shefali +Shelli +Sherie +Sherine +Sherrell +Shiann +Shiree +Shirelle +Shiva +Sigrid +Sloan +Solina +Soo +Spring +Stasha +Stephanee +Stephanieann +Stephnie +Storm +Stphanie +Sumer +Tahlia +Talar +Taleen +Tali +Talisha +Tamisha +Tanay +Taneisha +Tannya +Taren +Tarryn +Tatjana +Taylour +Teara +Tenisha +Terah +Tessie +Thanh +Thi +Tien +Tiffanee +Tiffini +Tiffney +Tila +Tkeyah +Torie +Trevor +Tuyen +Twila +Valeri +Vanessamarie +Vanisha +Vannia +Velma +Venecia +Verena +Veronique +Vianney +Vienna +Waynisha +Wendie +Wesley +Willow +Witney +Wynter +Xavier +Yamileth +Yaquelin +Yenny +Yoshiko +Ysenia +Yu +Yuridiana +Yuritzy +Yury +Yvanna +Zarina +Zoya +Jessica +Ashley +Stephanie +Jennifer +Amanda +Elizabeth +Samantha +Sarah +Melissa +Maria +Michelle +Brittany +Nicole +Vanessa +Lauren +Megan +Christina +Emily +Rachel +Danielle +Jasmine +Rebecca +Laura +Andrea +Alyssa +Kimberly +Kayla +Alexandra +Katherine +Chelsea +Crystal +Victoria +Amber +Jacqueline +Cynthia +Natalie +Diana +Ana +Nancy +Tiffany +Sara +Brenda +Erica +Monica +Kelsey +Taylor +Veronica +Erika +Courtney +Hannah +Heather +Amy +Alexis +Brianna +Shelby +Gabriela +Adriana +Daisy +Alejandra +Angelica +Angela +Julia +Mayra +Yesenia +Cassandra +Karina +Marissa +Christine +Karen +Kelly +Alicia +Ariel +Sandra +Cindy +Bianca +Mary +Patricia +Claudia +Anna +Mariah +Alexandria +Brittney +Allison +Lisa +Erin +Leslie +Jamie +Caitlin +Catherine +Cristina +Monique +Briana +Olivia +Kathryn +Sabrina +Breanna +Katie +Kristina +Kristen +Wendy +Denise +Priscilla +Evelyn +Brooke +Lindsey +Joanna +Desiree +Guadalupe +Shannon +Melanie +April +Valerie +Julie +Morgan +Karla +Janet +Jenna +Jordan +Jazmin +Ariana +Linda +Lindsay +Haley +Molly +Rosa +Paige +Jeanette +Katelyn +Gabrielle +Krystal +Kathleen +Liliana +Jasmin +Raquel +Yvette +Sonia +Marlene +Ruby +Abigail +Martha +Jenny +Jocelyn +Alma +Gloria +Teresa +Miranda +Carolina +Cecilia +Marisol +Katrina +Grace +Dominique +Vivian +Tara +Esmeralda +Natasha +Kristin +Kaitlin +Isabel +Lorena +Kaitlyn +Sophia +Leah +Daniela +Carmen +Madison +Maritza +Emma +Maribel +Cheyenne +Blanca +Felicia +Alexa +Meghan +Justine +Holly +Sandy +Tanya +Whitney +Cristal +Leticia +Sydney +Miriam +Chloe +Carla +Sierra +Ashlee +Marina +Beatriz +Susan +Araceli +Gina +Margarita +Caroline +Jazmine +Angelina +Rachael +Claire +Irene +Rocio +Casey +Destiny +Mercedes +Tania +Yvonne +Jillian +Stacy +Margaret +Camille +Madeline +Susana +Brandi +Deanna +Alison +Marisa +Hayley +Carina +Kara +Gabriella +Nichole +Carly +Dana +Janelle +Mariana +Noemi +Eva +Krista +Arielle +Edith +Kendra +Heidi +Norma +Britney +Rebekah +Esther +Genesis +Candice +Audrey +Ivette +Renee +Elena +Meagan +Ruth +Bethany +Carolyn +Silvia +Tina +Lizbeth +Sharon +Tatiana +Adrianna +Kirsten +Kristine +Lizette +Virginia +Angel +Hailey +Johanna +Yadira +Alisha +Candace +Kylie +Pamela +Stacey +Iris +Dulce +Lacey +Anne +Diane +Barbara +Jaclyn +Roxanne +Juliana +Savannah +Viviana +Jacquelyn +Sylvia +Perla +Arianna +Darlene +Roxana +Marilyn +Chelsey +Maricela +Elisa +Theresa +Ashleigh +Celeste +Amelia +Melinda +Carissa +Judith +Stephany +Paulina +Robin +Tracy +Fabiola +Naomi +Nina +Alice +Paula +Karissa +Tamara +Hillary +Kathy +Lucia +Yolanda +Deborah +Griselda +Jade +Iliana +Luz +Nadia +Sasha +Sofia +Gladys +Melody +Lydia +Mariela +Annie +Colleen +Janette +Christian +Natalia +Helen +Chanel +Brandy +Caitlyn +Marie +Michele +Valeria +Jessie +Kelli +Kiara +Aimee +Arlene +Paola +Clarissa +Marisela +Carol +Kaylee +Regina +Ellen +Kristy +Maira +Rachelle +Tessa +Kellie +Rose +Zoe +Devon +Frances +Lucero +Reyna +Serena +Jeannette +Josephine +Charlotte +Estefania +Berenice +Elaine +Hilary +Donna +Summer +Rochelle +Allyson +Bailey +Corina +Aubrey +Autumn +Elisabeth +Connie +Juanita +Lillian +Irma +Tiana +Hanna +Jaqueline +Mallory +Sheila +Breana +Mackenzie +Devin +Eliana +Elise +Alissa +Anabel +Isamar +Rebeca +Yessenia +Annette +Sally +Anita +Kassandra +Noelle +Ericka +Mia +Angie +Lucy +Yasmin +Adrienne +Christy +Nataly +Sarai +Alana +Brianne +Charlene +Maya +Alina +Joana +Jane +Mai +Juana +Janice +Nicolette +Clara +Graciela +Lily +Nora +Raven +Bridget +Ebony +Kate +Melina +Rosemary +Ivonne +Lizeth +Nathalie +Kaila +Rita +Simone +Stefanie +Aurora +Eileen +Rubi +Celia +Julianne +Fatima +Joyce +Katharine +Shawna +Brittani +Celina +Michaela +Asia +Faith +Francesca +Georgina +Taryn +Ann +Aracely +Cara +Janae +Talia +Catalina +Nayeli +Olga +Joy +Robyn +Adilene +Daniella +Jaime +Kelsie +Lourdes +Shirley +Cinthia +Dianna +Iesha +Breanne +Misty +Julianna +Lena +Lidia +Vicky +Antoinette +Carrie +Elvia +Ingrid +Judy +Larissa +Pauline +Alisa +Katelynn +Rosario +Viridiana +Corinne +Genevieve +Tabitha +Beverly +Joanne +Tyler +Chantal +Chantel +Ciara +Madeleine +Melisa +Anastasia +Toni +Maricruz +Brenna +Casandra +Esperanza +Kasey +Kendall +Selina +Suzanne +Trisha +Alondra +Angelique +Belinda +Desirae +Yajaira +Bonnie +Cassie +Debbie +Kira +Shayna +Aileen +Athena +Bertha +Hope +Kari +Kristi +Roxanna +Tammy +Danica +Yessica +Elsa +Giselle +Isabella +Jenifer +Leanna +Marcela +Nikki +Tori +Grecia +Lilian +Magdalena +Anais +Eunice +Lisette +Sophie +Bryanna +Flor +Josefina +Lorraine +Paloma +Reina +Shaina +Thalia +Cierra +Kyla +Maggie +Alyson +Jennie +Moriah +Selene +Vanesa +Dalia +Elyse +Fiona +Janeth +Kelley +Leanne +Lesley +Randi +Tasha +Bridgette +Luisa +Tayler +Beatrice +Evelin +Gianna +Jacklyn +Lissette +Rosalinda +Destinee +Myra +Salina +Alanna +Cheryl +Tess +Ashly +Cortney +Diamond +Faviola +Hilda +Leilani +Mireya +Nadine +Sadie +Alysha +Antonia +Kristie +Marlen +Alexandrea +Ashlyn +Christa +Debra +Jordyn +Kelsi +Lilia +Lina +Shayla +Sonya +Ashlie +Candy +Cathy +Chelsie +Dawn +Micaela +Christie +Denisse +Eden +Ileana +Julissa +Magali +Meredith +Yesica +Belen +Brittanie +Brittni +Callie +Edna +Laurel +Lizet +Shelbi +Carley +Johana +Mindy +Precious +Ryan +Tia +Yazmin +Jackeline +Kourtney +Shauna +Bernadette +Bernice +Justina +Kali +Tiffani +Astrid +Betty +Cheyanne +Doris +Estefani +Jaimie +Janine +Kirstie +Lea +Lori +Magaly +Michael +Cassidy +Francine +Kim +Kylee +Natali +Savanna +Shanna +Alexander +Emilia +Giovanna +Jesenia +Jessika +Jill +Kayleigh +Kenia +Lacy +Marlyn +Alexia +Azucena +Cayla +Damaris +Daniel +Delia +Eliza +Estela +Janessa +Lara +Shelly +Anahi +Bree +Breeanna +Dolores +Keri +Tanisha +Violeta +Betsy +Brandie +Chanelle +Danae +Ivy +Jackie +Loren +Lyanne +Marta +Meaghan +Mikayla +Sarina +Sherry +Evangelina +Geraldine +Katlyn +Madelyn +Riley +Rosemarie +Rosie +Amalia +Anjelica +Coral +Elvira +Kirstin +Kristal +Krystle +Mariel +Tiara +Tierra +Yanira +Cameron +Dayana +Emilie +Francisca +Marcella +Nallely +Nelly +Paris +Selena +Stacie +Zaira +Aisha +Alex +Andreina +Becky +Elaina +Joann +Kaela +Kenya +Mikaela +Rosalie +Sheena +Stevie +America +Anissa +Consuelo +Dina +Dorothy +Jannette +Jessenia +Joselyn +Lesly +Lynn +Mandy +Marianne +Mckenzie +Pa +Alycia +Areli +Delaney +Kailey +Krystina +Marlena +Mirna +Staci +Tianna +Annabel +Breann +Chrystal +Estrella +Imelda +Itzel +Jayme +Kristyn +Liana +Mari +Maxine +Monika +Shana +Shelbie +Tricia +Xochitl +Dakota +Danika +Eleanor +Juliet +Kyra +Mara +Maureen +Pricilla +Stefani +Susanna +Tracey +Adela +Aja +Breeana +Brittnee +Devyn +Dora +Isis +Jesse +Jose +Kaylie +Kiana +Lauryn +Lupita +Minerva +Stella +Traci +Alaina +Celene +Dianne +Elsie +Estephanie +Georgia +Hana +Jannet +Katy +Lana +Makayla +Malia +Noel +Susie +Terra +Yuliana +Alysia +Arely +Charity +Corrina +Deja +Elisha +Emerald +Geneva +Ilse +Kasandra +Marian +Ofelia +Skye +Soledad +Vannessa +Anel +Ava +Bryana +Christiana +Demi +Hazel +Isela +Janel +Jolene +Josie +Katheryn +Lyndsay +Marla +Mirian +Mollie +Shanae +Sidney +Abby +Aubree +Brianda +Brittaney +Francis +Jacquelin +Jesica +Julieta +Kelsea +Kimberley +Krysta +Laurie +Macy +Yuri +Alba +Amie +Brigitte +Darcy +Dayna +Deana +Helena +Joan +Kacey +Kiley +Liza +Mariam +Maryann +Mckenna +Nikita +Princess +Richelle +Shantel +Tonya +Adrian +Allyssa +Angeline +Deisy +Devan +Elissa +Fanny +Gabriel +Jazmyn +Jean +Karli +Karly +Kevin +Lyndsey +Mirella +Monet +Phoebe +Rosio +Tiffanie +Zulema +Ada +Ashely +Blair +Brittnie +Carli +Clare +Domonique +Estefany +Gwendolyn +Haylee +Ivana +Janie +Jenelle +Kiersten +Latasha +Leila +Mona +Nanci +Serina +Xiomara +Alexus +Alix +Ani +Carlie +Cecily +Chantelle +Charmaine +Dennise +Emely +Felisha +Ilene +Jodi +Kaylin +Keisha +Kerry +Kimberlee +Maura +Nereida +Nikole +Patrice +Tabatha +Verenice +Vianca +Adrianne +Annamarie +Ayla +Chynna +David +Gillian +Janett +Jena +Jonathan +Kandice +Karlie +Leann +Lisbeth +Nayely +Nia +Rene +Sonja +Symone +Yasmine +Alessandra +Ambar +Audra +Beth +Brigette +Brittny +Cody +Constance +Corinna +Cristian +Fernanda +Imani +Janell +Jeannie +Kaleigh +Karin +Maegan +Marbella +May +Patsy +Pearl +Angelia +Annmarie +Ashton +Britany +Christopher +Cinthya +Gladis +Glenda +Heaven +India +Jami +Kaitlynn +Katelin +Kathrine +Kori +Latoya +Martina +Mayte +Myrna +Nidia +Ramona +Sarahi +Shelley +Skylar +Socorro +Suzanna +Xochilt +Aida +Andrew +Andria +Chandra +Delilah +Elia +Hollie +Jenae +Jesus +Kacie +Kaylyn +Korina +Kristian +Lia +Lilliana +Malissa +Nicolle +Raylene +Stefany +Terri +Abril +Alyssia +Amaris +Aundrea +Avery +Cintia +Daysi +Gisela +Heidy +Jalisa +Jana +Joshua +Katarina +Katerina +Louise +Merissa +Monserrat +Nathaly +Rhiannon +Scarlett +Stephani +Suzette +Tawny +Violet +Yanet +Alena +Allie +Alysa +Annalisa +Anthony +Bobbie +Briseida +Cassondra +Christal +Ella +Emilee +Evan +Ivon +Izamar +Jamila +Janna +Jovanna +Juliette +Mabel +Marcia +Marianna +Priya +Sharlene +Valentina +Vilma +Alyse +Annika +Carlee +Chelsi +China +Daphne +Denice +Gricelda +Joelle +Joseph +Jovana +Kaley +Lee +Marjorie +Priscila +Rena +Roberta +Shante +Unique +Vianey +Alia +Ariella +Aubrie +Britni +Catrina +Christen +Cori +Dalila +Eloisa +Elva +Flora +Gretchen +Jaquelin +Jeniffer +Kailee +Kaycee +Kia +Latisha +Leigh +Lila +Lizbet +Lizett +Lupe +Rosalba +Rosalia +Shanice +Sunny +Thania +Trina +Aria +Asha +Bao +Breeann +Celine +Cherie +Christin +Corrine +Dania +Desire +Elizabet +Erendira +Eryn +Jasmyne +Justin +Kalyn +Kandace +Keila +Lacie +Leandra +Liset +Marysol +Nubia +Porsha +Rebecka +Rikki +Rosaura +Sienna +Yahaira +Adelina +Alayna +Allegra +Anamaria +Corey +Hallie +Ivanna +Jazzmine +Juan +Kalie +Kaylynn +Kelsy +Kerri +Kiera +Lynda +Manuela +Marielle +Matthew +Regan +Rhonda +Rosalva +Sage +Saira +Shawn +Tarah +Alannah +Alexi +Anai +Analisa +Angeles +Brisa +Brook +Cathleen +Cherish +Ciera +Cora +Davina +Estella +Franchesca +Gema +Ginger +Gisselle +Halie +Isaura +Jackelyn +Janay +Jasmyn +Jazmyne +Jeanne +Kala +Katia +Laila +Latrice +Leeann +Luis +Lynette +Makenzie +Marsha +Mina +Mitzi +Phylicia +Pilar +Rebeccah +Rosana +Sahar +Sheyla +Valencia +Vicki +Yecenia +Alejandrina +Anika +Annelise +Annemarie +Ashli +Blake +Bobbi +Brandee +Cambria +Chanell +Cherise +Cristy +Danna +Elyssa +Eric +Isabelle +Jaimee +Jaquelyn +Jazzmin +Jennyfer +Katlin +Keely +Lilly +Lisbet +Lizabeth +Logan +Marilu +Melyssa +Mercedez +Michell +Mildred +Pang +Racquel +Rayna +Reanna +Rosalina +Shaniqua +Sindy +Skyler +Yoana +Zenaida +Anakaren +Angelita +Anisha +Antonette +Ariane +Cecelia +Cory +Cristine +Dara +Demetria +Destiney +Dominque +Elle +Eugenia +Fallon +Frankie +Gail +Inez +James +Jeanine +Jerica +Jessi +Jimena +Jodie +Karyn +Kati +Krysten +Lakeisha +Linnea +Lisset +Madalyn +Malinda +Maranda +Marlee +Maryam +Michel +Nellie +Noemy +Raina +Renae +Sabina +Samatha +Samira +Savanah +Sequoia +Shani +Siobhan +Sirena +Yuridia +Zuleima +Arianne +Arleen +Billie +Brea +Brieanna +Colette +Concepcion +Daniele +Danyelle +Deidre +Geena +Gracie +Haleigh +Karlee +Kelcie +Kirstyn +Kristiana +Linh +London +Markie +Marley +Marlin +Meranda +Myesha +Myriah +Nichelle +Nicollette +Noor +Pooja +Richard +Sade +Sammantha +Sean +Shanelle +Shannen +Stephenie +Tawni +Teresita +Terry +Yael +Yaneli +Yareli +Zuleyma +Zulma +Aaron +Acacia +Amparo +Anisa +Annalise +Ashlynn +Bianka +Britnee +Carlos +Cathryn +Channel +Elana +Ellie +Ester +Eve +Evette +Florence +Francisco +Hailee +Idalia +Jaymie +Jeanna +Ka +Kacy +Lesli +Lianne +Lilibeth +Lynsey +Makenna +Marcy +Maryssa +Mele +Mellisa +Mercy +Mimi +Myranda +Nydia +Samara +Shantell +Shasta +Sheri +Sinead +Tiera +Trista +Vania +Vickie +Alesha +Ali +Austin +Breonna +Brielle +Bryn +Cali +Celena +Cydney +Elida +Elisabet +Enedina +Evelia +Haydee +Ivory +Jaycee +Jewel +Juliann +Kaylah +Kayley +Kenisha +Kianna +Kyle +Lianna +Liz +Lois +Mariaguadalupe +Marion +Mellissa +Melodie +Miriah +Nelida +Nereyda +Noelia +Oriana +Ronisha +Shanel +Shea +Shereen +Stormy +Sydnie +Tamika +Tanesha +Tawnie +Thea +Tracie +Vivianna +Aliza +Alora +Ami +Anastacia +Ayana +Berlyn +Brian +Brittanee +Brittnay +Cassaundra +Danelle +Deandra +Debora +Deidra +Delfina +Denisha +Dolly +Dylan +Essence +Farrah +Haylie +Ida +Ivett +Janee +Janely +Joseline +Josette +Julisa +June +Kassie +Keeley +Kenna +Klarissa +Kortney +Krystin +Leonor +Lexus +Malina +Malorie +Mariadejesus +Marilynn +Maritsa +Marylou +Nicholas +Nohemi +Paulette +Peggy +Penelope +Robert +Saray +See +Shanika +Shannel +Shantal +Starla +Stephaine +Tatyana +Tera +Trinity +Tyra +Vannesa +Vera +Winnie +Xenia +Yanely +Zenia +Adeline +Alexsandra +An +Anayeli +Antionette +Anya +Araseli +Arcelia +Ashanti +Brionna +Cady +Caprice +Carmela +Carmelita +Carmina +Carson +Charissa +Cherelle +Cheri +Dahlia +Dani +Ernestina +Guillermina +Ines +Jamesha +Janina +Jeannine +Jenessa +Jocelyne +Jourdan +Joycelyn +Julian +Kaci +Kalee +Katya +Kayleen +Kayli +Keren +Kierra +Lashawn +Linette +Liseth +Lizzette +Lora +Loretta +Lucila +Macie +Mallorie +Maryanne +Meghann +Micah +Myisha +Natalee +Neda +Racheal +Raelene +Rana +Rebeka +Rhianna +Sacha +Sheng +Sheryl +Shyann +Soraya +Star +Stephania +Sydnee +Tamar +Thelma +Tonia +Venessa +Venus +Aide +Aline +Alixandra +Allysa +Alysse +Amberly +Anali +Anjanette +Annabelle +Arlette +Ashlei +Audriana +Audrianna +Ayanna +Azalea +Babygirl +Bella +Blaire +Brynne +Cari +Cesar +Chyna +Cinnamon +Destany +Destinie +Drew +Dyana +Eboni +Elsy +Emilce +Emmy +Fernando +Gardenia +Gemma +Harmony +Jacquelynn +Jeanie +Jessyca +Jody +Joel +John +Joselin +Joslyn +Karena +Karishma +Karley +Kiah +Kimber +Kyleigh +Layla +Leigha +Linsey +Lisett +Loni +Louisa +Lucille +Magen +Maile +Maite +Mandi +Margo +Marrisa +Miesha +Misha +Nhi +Nicola +Nisa +Penny +Prisilla +Rachell +Raechel +Raelynn +Rosanna +Rosita +Ryann +Saba +Salena +Sarena +Sayra +Shae +Shanell +Shantelle +Shawnee +Shayne +Shyla +Sky +Stacia +Stephannie +Sue +Suzy +Thuy +Wendi +Yara +Alishia +Alisia +Amada +Amara +Amira +Anaiz +Anay +Andie +Andriana +Anh +Ariela +Arika +Asusena +Biridiana +Britny +Camila +Caren +Catarina +Champagne +Christi +Cindi +Claribel +Corrie +Daniell +Deisi +Dena +Destini +Deysi +Elysia +Estefanie +Evie +Genna +Greta +Jaymee +Jenee +Jocelin +Kamille +Keira +Kimiko +Kymberly +Kyndra +Lanisha +Laquisha +Leona +Lucerito +Maia +Margie +Mario +Marleen +Marlenne +Miguel +Mika +Milagros +Nika +Nikia +Nou +Octavia +Oralia +Petra +Phuong +Piper +Rhea +Rina +Romina +Rosamaria +Rubie +Sonam +Talin +Tanairi +Tatianna +Teri +Therese +Yamilet +Yasmeen +Yer +Zaida +Zoey +Aidee +Alejandro +Alesia +Alyxandra +Andres +Anneliese +Aura +Avalon +Ayesha +Aysha +Azusena +Bailee +Bridgett +Caitlynn +Candi +Carey +Cesilia +Chante +Charlie +Chasity +Chaya +Chelsee +Christianna +Clarice +Codi +Danisha +Delanie +Delmy +Denae +Desiray +Diandra +Doreen +Edlin +Elda +Farah +Ha +Holli +Hortencia +Ilana +Jayne +Jeana +Jenniffer +Jessy +Jocelynn +Kailyn +Kallie +Kassondra +Katherina +Kaylene +Keyanna +Keyla +Krystyna +Lakisha +Lilit +Lillie +Lisamarie +Lissete +Livier +Loraine +Lorina +Luciana +Lucinda +Maddison +Madisen +Malisa +Mariaelena +Mariko +Marivel +Mariya +Marquisha +Marycruz +Matilde +Mattie +Melany +Meliza +Montana +Mya +Neha +Nisha +Noelani +Oscar +Paisley +Parisa +Priyanka +Rachele +Rae +Raeann +Riana +Ruben +Ryanne +Salma +Sandi +Sarita +Savana +Sendy +Shakira +Shay +Shaylee +Shianne +Shireen +Shyanne +Siera +Spencer +Steffanie +Steven +Stevi +Stormie +Tabetha +Tamra +Teal +Tenisha +Tierney +Trinidad +Veronika +Vianney +Yezenia +Abbey +Abbie +Adreana +Adria +Adriane +Agnes +Aislinn +Alyssamarie +Amrita +Analicia +Analise +Anneke +Antonio +Ariadna +Aryn +Aysia +Baylee +Benita +Berlin +Briann +Brieana +Britta +Britteny +Bronte +Bryan +Brynn +Camilla +Cecile +Chantell +Chastity +Cherry +Chia +Ciarra +Citlali +Corin +Corrin +Cruz +Dallas +Darlyn +Deserie +Deyanira +Dinora +Elicia +Ellyn +Emelia +Erinn +Estephania +Genova +Giana +Gigi +Herminia +Iman +Jaleesa +Janelly +Jaylene +Jeremy +Jerrica +Jessalyn +Josselyn +Kalia +Kandyce +Kanisha +Karleigh +Karolina +Katina +Kay +Kaya +Kaylen +Kaytlyn +Keilah +Kellee +Keshia +Keyana +Kindra +Kinsey +Lacee +Lanae +Lani +Lashanae +Leeanne +Lela +Lili +Lorna +Maci +Madelaine +Madelyne +Mae +Malena +Manuel +Mao +Marcelina +Marci +Marcie +Margot +Mariella +Marika +Marin +Marleny +Maryjane +Mee +Michela +Nalleli +Nicol +Nyssa +Prescilla +Risa +Roberto +Rosaisela +Rosalind +Rosalyn +Sahara +Sergio +Shanay +Shanon +Shivani +Sinai +Susanne +Tanika +Tesia +Torrie +Ursula +Valarie +Valery +Victor +Vy +Wanda +Whitley +Yamileth +Yaneth +Yanina +Yuriko +Zoila +Zoraida +Adelaida +Adrina +Allana +Alvina +Alyx +Analilia +Annamaria +Annel +Arlyn +Armine +Aurelia +Beatris +Berta +Bibiana +Brigid +Brittanny +Brittiny +Carin +Carmel +Channing +Chardonnay +Charli +Chelsy +Christiane +Chyanne +Clarisa +Claudette +Colby +Cree +Crista +Daina +Daisha +Danitza +Darla +Dasha +Deanne +Deena +Dennis +Deonna +Desirea +Donisha +Edgar +Eleni +Elexis +Erendida +Erik +Ernestine +Gena +Georgette +Gerardo +Gilda +Gisell +Hali +Harley +Herlinda +Huong +Ivone +Jacob +Jacquelyne +Jacquline +Jacy +Janaye +Janea +Jaspreet +Javier +Jesika +Jessa +Jesseca +Jordin +Judit +Kami +Karyssa +Kasie +Katheryne +Kathia +Kathryne +Kattie +Kaylan +Keli +Kendal +Kierstin +Kimberlyn +Laryssa +Latifah +Leana +Leeanna +Leena +Leonela +Leslye +Lexi +Lexie +Liane +Lien +Lilianna +Lindy +Lisseth +Lissett +Lluvia +Loryn +Lynnette +Macey +Malika +Manpreet +Mariyah +Merari +Milan +Myriam +Nickole +Niesha +Patty +Pebbles +Porsche +Quinn +Raeanne +Raymond +Roseanna +Roselia +Rosy +Samaria +Samone +Samuel +Shakiyla +Shamika +Shanequa +Shanique +Shari +Shaylene +Sheridan +Sherilyn +Shoua +Steffany +Suleyma +Suzie +Tami +Tana +Tatjana +Teanna +Thao +Tisha +Tkeyah +Tonisha +Tristan +Tyesha +Valorie +Van +Vivien +William +Winter +Xochil +Yanelly +Yoselin +Addison +Adele +Adreanna +Aiyana +Akemi +Alan +Alea +Aleena +Aleida +Alexsis +Alivia +Aliya +Alyce +Anahy +Analy +Andrina +Anette +Angelika +Apryl +Arial +Arlin +Autum +Aviva +Aziza +Benjamin +Berenis +Bianey +Brandon +Breauna +Breona +Brett +Bria +Brissa +Brooklyn +Carleen +Carole +Carolynn +Caryn +Ceara +Chantalle +Chong +Corine +Cornelia +Cristen +Daisey +Darcie +Darline +Darling +Deirdre +Dejanae +Deziree +Dixie +Ebonee +Eduardo +Eleana +Elina +Eman +Emilse +Esthela +Evelynn +Fantasia +Faye +Genelle +Ginny +Haide +Halley +Indira +Ivania +Jacinda +Jaclynn +Jael +Jalissa +Jannete +Jannett +Jenise +Jennah +Jennica +Joey +Johnisha +Julieann +Julieanne +Justeen +Kaitlan +Kalena +Kandis +Kao +Karely +Karisa +Katey +Katharina +Kathie +Kathrina +Katlynn +Kaydee +Keana +Kelsee +Kennia +Kirsti +Korin +Laci +Lan +Lashay +Layne +Leesa +Leslee +Llesenia +Lorie +Lyna +Madelynn +Magda +Magnolia +Maleni +Maren +Margaux +Marisabel +Mariza +Maryelizabeth +Marygrace +Megumi +Melia +Merry +Miki +Milena +Mirta +Miya +Monae +Myla +Nai +Nalani +Nerissa +Nicholle +Niki +Patience +Phyllis +Raelyn +Rafaela +Raisa +Raya +Rianna +Ricky +Ronni +Roseanne +Sami +Savina +Scarlet +Serenity +Shalyn +Shannan +Shara +Sharayah +Sharice +Sherrie +Shiela +Shiloh +Simona +Simran +Sondra +Soraida +Sulema +Susy +Suzana +Sydni +Tannia +Tasia +Travis +Tristin +Willow +Yanette +Zara +Zuri +Abilene +Addie +Adina +Ahsley +Alberta +Aleah +Alecia +Alixandria +Amandeep +Amberlee +Amina +Anabella +Analuisa +Anamarie +Annastasia +Argelia +Arica +Armando +Aryana +Ashia +Asley +Asya +Azia +Becca +Berenise +Bonita +Britnie +Bryanne +Byanka +Candelaria +Candyce +Carrissa +Casie +Cassey +Cesia +Chanda +Charlee +Charline +Chase +Chi +Chiara +Chole +Choua +Chyenne +Cleo +Codie +Collette +Conchita +Corie +Cortnee +Cosette +Courtnee +Crystle +Danya +Darci +Daysy +Debby +Derricka +Deven +Dominica +Donielle +Dorian +Dusty +Ebone +Elba +Elora +Ema +Emiko +Estelle +Estephany +Fabian +Felice +Felicity +Felisa +Geovanna +Gisele +Grisel +Gustavo +Haidee +Idania +Ieshia +Indigo +Irasema +Isabela +Ivan +Jacinta +Jamee +Jamisha +Janai +Janeen +Jaslyn +Jaya +Jaymi +Jayna +Jeanelle +Jenay +Jenette +Jenica +Jennefer +Jenni +Jerika +Johnna +Johnnie +Jorden +Jorge +Josephina +Julienne +Julio +Kailani +Kalani +Kanesha +Kaori +Karinna +Karol +Karoline +Kasondra +Kassidy +Kathya +Kayci +Kaytlin +Kc +Kelci +Kellyn +Khadija +Kimberli +Kimberlie +Kimia +Kirby +Kodi +Krystine +Kyrsten +Lachelle +Laina +Lanie +Laurin +Leeza +Ligia +Lizzet +Lizzeth +Loreal +Lorin +Lucretia +Lyla +Lynne +Lyzette +Madelin +Magally +Maleny +Marguerite +Marine +Markeisha +Marquita +Marybeth +Marylynn +Mckayla +Meena +Meggan +Melaine +Meriah +Midori +Mikala +Monisha +Nakia +Natashia +Natividad +Navjot +Olympia +Omar +Osiris +Paul +Porche +Porscha +Rashelle +Rashida +Rayanne +Raychel +Rayleen +Rayven +Reba +Rebekka +Reena +Remy +Ricki +Rosella +Rowan +Rowena +Rylee +Sanaz +Sarahjane +Sarahy +Shaelyn +Shaila +Shanda +Shane +Shanee +Shaylyn +Shelbey +Shelia +Shelli +Sherri +Shoshana +Silvana +Siomara +Soleil +Sommer +Stepanie +Suleima +Sulma +Taleen +Talisha +Tatum +Tawnya +Tayla +Taylar +Teara +Thanya +Tiffiny +Torey +Tosha +Tran +Trang +Trinh +Tynisha +Velia +Vi +Vivi +Winona +Xia +Ximena +Yarely +Yeni +Yohana +Zayra +Adena +Aeriel +Akilah +Alanah +Aleen +Alexiss +Alexsa +Alexys +Alexzandria +Alise +Alva +Amal +Amani +Amarilis +Amberlynn +Ambrosia +Amee +Amethyst +Anacaren +Anahid +Anarosa +Andre +Andy +Annaliese +Arin +Ashlea +Ashliegh +Aundria +Azure +Bahar +Barbie +Blythe +Braelyn +Breyana +Briauna +Brina +Briselda +Brittini +Brittnei +Caitlan +Calista +Camellia +Camile +Camisha +Cammie +Caresse +Carisa +Carlene +Carlisha +Carlyn +Carmin +Carolyne +Catharine +Catlin +Chandler +Chandni +Charis +Charisse +Charlette +Chelsa +Ciana +Clarrisa +Consepcion +Coty +Courtnie +Cyndy +Dafne +Daja +Dakotah +Dallana +Dannielle +Daria +Darian +Darnisha +Deann +Delicia +Delina +Delmi +Denia +Denis +Der +Devonna +Dorcas +Dyanna +Edit +Edlyn +Edward +Elianna +Elysse +Emalee +Emelyn +Emi +Erick +Erikka +Erynn +Evangeline +Evonna +Felecia +Felicitas +Freya +Gabriele +Gao +Genessis +Genoveva +Giavanna +Gwen +Hector +Hillery +Hunter +Irais +Irina +Isabell +Israel +Ivet +Jackelin +Jacqueleen +Jahaira +Jaimi +Janis +Janneth +Jason +Jazzlyn +Jeanett +Jeffrey +Jelisa +Jenell +Jennelle +Jewell +Jina +Joi +Joleen +Jolie +Jordana +Jordann +Jordon +Jori +Joscelyn +Josue +Joua +Julietta +July +Kady +Kaeli +Kalli +Karah +Karlyn +Kassi +Katalina +Kathlyn +Keanna +Keara +Keiko +Kelcy +Kellsie +Kenneth +Kera +Kerstin +Keyonna +Khadijah +Kitty +Kristan +Kristel +Kyana +Ladonna +Lai +Lanette +Lashae +Lashea +Latonya +Leia +Lexis +Lusine +Lyndsie +Maegen +Maggy +Malaysia +Malyssa +Maricarmen +Maricella +Marielena +Marinna +Markisha +Marlisa +Marquis +Marriah +Martika +Martin +Marylin +Marylu +Maurissa +Megann +Melony +Merary +Mi +Milagro +Mira +Mitzy +Mykia +Nadya +Nansi +Narissa +Nasim +Nastassia +Natally +Natalya +Nathalia +Neftali +Ngoc +Nhung +Nicolasa +Noely +Nohely +Nuvia +Odalis +Pachia +Patrick +Presley +Priscella +Rafael +Randa +Reann +Rebekkah +Reema +Reylene +Ria +Rica +Ricardo +Rio +Roni +Roselyn +Sabra +Salvador +Samar +Serene +Shalena +Shardae +Sharee +Shellby +Sheree +Shira +Solange +Sona +Starr +Stefania +Sunshine +Tahnee +Tal +Talar +Tameka +Tamera +Tammie +Teagan +Tenaya +Terese +Thu +Tiani +Tiffini +Tracee +Tuesday +Velma +Veronique +Wilma +Xee +Yasamin +Yee +Yeng +Yennifer +Ysenia +Yuritzy +Zabrina +Zoua +Zully +Aarika +Adelia +Adelita +Aerial +Agustina +Aiesha +Akira +Alda +Alegandra +Alexes +Alexxis +Allisa +Allissa +Almarosa +Altagracia +Alyshia +Amari +Ambra +Amunique +Analaura +Andreana +Anessa +Angelena +Annalee +Annaly +Antwanette +Arturo +Ashleymarie +Aspen +Asucena +Audrie +Auriel +Austyn +Avigail +Aya +Ayaka +Azalia +Banesa +Betsabe +Bettina +Blossom +Bonny +Breeanne +Briceida +Brie +Britani +Brittiney +Brooklynn +Brynna +Cailin +California +Cami +Carlye +Casondra +Catherin +Cathrine +Caylee +Cecille +Charleen +Chelcie +Cherrelle +Chrissy +Christel +Christyne +Clair +Corissa +Cristiana +Crystel +Crystina +Danny +Danyel +Dariana +Darleen +Darlena +Daryl +Dawna +Dee +Della +Desarae +Deserae +Deseray +Deshanae +Deshawna +Devina +Diona +Dionna +Dionne +Dominic +Dulse +Dung +Dunia +Ebonie +Echo +Eda +Emilyann +Emmaline +Erlinda +Eulalia +Evonne +Fabiana +Florentina +Francia +Franki +Gabby +Garrett +Genevie +Gennesis +Giovana +Giovanni +Giuliana +Goldie +Gregory +Hadassah +Haily +Halee +Han +Hang +Hayde +Helene +Henna +Hong +Ina +Iveth +Jacelyn +Jacklin +Jacquelene +Jaimy +Jakeline +Jamika +Jammie +Janaya +Janika +Janira +Jannelle +Jasmeen +Javon +Jayla +Jeneffer +Jennafer +Jennessa +Jeri +Jessicamarie +Jo +Johannah +Johnny +Jolynn +Joni +Jovita +Julieanna +Kacee +Kaelyn +Kai +Kaili +Kalah +Kaleena +Kalen +Kalina +Kambria +Kameron +Kamryn +Karis +Kathyrn +Katrice +Keiana +Kelcey +Kellye +Kena +Kendyl +Kenzie +Khrystina +Kiani +Kiely +Kiesha +Kisha +Kiyana +Kiyomi +Korey +Korinna +Korinne +Korrie +Kristeena +Kristell +Kristianna +Kristianne +Kristopher +Krizia +Kymberlee +Laken +Landy +Laney +Laren +Larisa +Latanya +Latiana +Laticia +Lawanda +Lesa +Letticia +Lian +Liberty +Lilyana +Linzy +Lita +Lorianne +Lucie +Lucina +Lucky +Lusero +Luzmaria +Ma +Madaline +Madalynn +Makena +Malka +Mandeep +Marco +Mareena +Mariaisabel +Marialuisa +Mariateresa +Marilin +Marilou +Maritssa +Marjani +Markita +Marlina +Marshae +Martiza +Maryah +Maryellen +Mayela +Melani +Michaella +Michal +Mikaila +Millicent +Millie +Miracle +Miryam +Monee +Montserrat +Myeisha +Nada +Najah +Nakita +Nandi +Naomy +Nayelly +Nazareth +Nely +Nery +Neyda +Nichol +Nicki +Nicoletta +Nikkia +Ninfa +Nissa +Oliva +Page +Parris +Perlita +Phoenix +Porcha +Porchea +Pricila +Raeanna +Raena +Raissa +Ravyn +Raynisha +Reem +Remi +Renea +Renita +Rheanna +Rhina +Ronesha +Rosi +Roxann +Roya +Rubicela +Rudy +Saige +Salome +Samanta +Samia +Sana +Santa +Sapphire +Saundra +Seana +Sebastian +Serra +Shalimar +Shanea +Shaniece +Sharae +Sharaya +Sharell +Sharnae +Sharonda +Shatara +Shaun +Shawnna +Shaye +Shelbee +Shenae +Shiva +Shyan +Skyla +Solana +Song +Sparkle +Staphany +Stephen +Stephnie +Sunnie +Svetlana +Sylvana +Taelor +Tai +Takara +Tanaya +Tasheena +Tesla +Tessie +Theodora +Thy +Tien +Torrey +Torri +Tram +Treasure +Tyanna +Tyresha +Valeri +Vianka +Vienna +Viola +Windy +Yevette +Yisel +Youa +Yvett +Zachary +Zahra +Zainab +Zaneta +Zuleika +Adara +Adrieanna +Adriene +Africa +Afton +Ahlam +Ainsley +Aissa +Akiko +Alaa +Alaura +Alberto +Alec +Aleisha +Aleshia +Alexanderia +Alexxa +Allyn +Alonna +Alyna +Alyxandria +Amairani +Amberlyn +Amena +Amorette +Amrit +Anabell +Anacristina +Anallely +Andi +Andreanna +Andreya +Angelee +Angelic +Angelicamaria +Angella +Anicia +Anja +Annais +Annissa +Anny +Antonella +Anyssa +Apolonia +Ara +Arabella +Aracelia +Aranza +Ariell +Arisbeth +Arlet +Arline +Armanda +Armida +Arpi +Arpine +Aryanna +Aryel +Ashante +Asiah +Audrina +Audry +Avilene +Avital +Baby +Berlynn +Bibi +Branda +Brandice +Brandilyn +Breahna +Brendy +Brennan +Breyanna +Briahna +Briannah +Brienna +Brit +Britanie +Brittainy +Bronwyn +Byanca +Cailey +Caludia +Camelia +Candida +Candis +Capri +Carleigh +Carrington +Catheryn +Caycee +Cera +Chana +Charde +Charise +Chayla +Chelse +Chenay +Chenelle +Cherika +Cherisse +Cherrie +Cheyanna +Chika +Chris +Claira +Clarie +Clariza +Claudine +Cloe +Concetta +Connor +Conny +Corryn +Cortnie +Cristin +Cyrstal +Daisi +Daizy +Danette +Davi +Davonna +Dayanna +Deedee +Dejanee +Denay +Dennice +Denys +Derrisha +Dezarae +Dezirae +Dia +Dian +Dillon +Dinah +Divinity +Doua +Edelmira +Egypt +Eli +Elian +Elidia +Eliset +Ellery +Ellisa +Ellyse +Eloise +Elspeth +Emelin +Emilly +Emmalee +Emmeline +Emy +Esmirna +Esteban +Evalyn +Eveline +Evett +Falicia +Flannery +Flavia +Florencia +Forrest +Frania +Georgiana +Geovana +Germaine +Gia +Gianina +Ginamarie +Gisel +Gissel +Giulia +Glendy +Gloriana +Grabiela +Gresia +Guillermo +Hadley +Hae +Hanh +Hattie +Haven +Hayleigh +Hayli +Heba +Henrietta +Hira +Hlee +Ia +Indiana +Indra +Irlanda +Isaac +Isadora +Italia +Jacky +Jacqulyn +Jamaica +Jameelah +Jameisha +Jamey +Jamia +Jamielee +Jamilah +Janella +Janelli +Jania +Janise +Jannel +Jannell +Jasmeet +Jasminne +Jayleen +Jazlyn +Jazz +Jazzmen +Jeena +Jene +Jenea +Jenesis +Jeni +Jennette +Jensine +Jericha +Jessilyn +Jewels +Jilian +Jin +Joceline +Joline +Jonathon +Jonelle +Joselyne +Jossie +Jovan +Juli +Jullian +Jully +Julyssa +Jyoti +Kaia +Kaija +Kaily +Kalea +Kameryn +Kamia +Kamilah +Karmen +Karri +Karry +Karyna +Kasha +Kathlene +Kaycie +Kaysie +Keandra +Keilani +Kennedy +Kerissa +Kerrie +Kesha +Kezia +Khalilah +Khrystyne +Kierstyn +Kimberlyanne +Kiran +Kiri +Kiya +Kodie +Korrine +Kortni +Kristeen +Kristyna +Kyanna +Kyara +Kyrie +Kyrstin +Lailani +Lainey +Lainie +Lakendra +Lakeshia +Lane +Lanea +Lanesha +Lashanay +Lashawna +Lashonda +Latecia +Laurena +Lavonna +Le +Leidy +Leighann +Lesslie +Lilyann +Lindsi +Lindsy +Lisandra +Lissa +Livia +Lola +Lorissa +Lucrecia +Lyndsi +Lynna +Lyric +Lysette +Madelene +Madilyn +Magdalene +Makala +Maly +Mamie +Mana +Manda +Manisha +Maral +Maraya +Marena +Margeaux +Mariadelcarmen +Mariha +Marilee +Marimar +Marinda +Marlaina +Marleni +Marly +Marlyne +Marrissa +Marya +Marylee +Maryrose +Meg +Meganelizabeth +Melaney +Meleah +Melysa +Merlin +Meryl +Mica +Michellee +Mikki +Milissa +Miraya +Mirtha +Mishelle +Mitra +Monzerrat +Morgann +Morganne +My +Myeshia +Mylissa +Mysti +Naila +Nalee +Narine +Natacha +Natosha +Navy +Nefertiti +Neli +Nickie +Nida +Niza +Nuria +Nycole +Olimpia +Olyvia +Otilia +Pahola +Pakou +Passion +Patrina +Patrisia +Petrina +Phillip +Pia +Porshia +Portia +Precilla +Prisila +Quanisha +Quincy +Quyen +Rabia +Rachal +Radhika +Raeleen +Randee +Rawan +Rayann +Raylynn +Raynesha +Reana +Rebbeca +Regine +Renata +Renay +Renika +Reshma +Riane +Rika +Rima +Ronda +Ronniesha +Ronnisha +Rory +Roshni +Rossana +Rossy +Roxane +Rubina +Rubit +Ruvi +Ryane +Rylie +Sabryna +Safa +Sakina +Samanth +Sandie +Sang +Sareen +Sariah +Schuyler +Schyler +Selenia +Shabnam +Shaela +Shaena +Shalisa +Shameka +Shandale +Shandell +Shania +Shanise +Shanley +Sharai +Sharde +Sharika +Shastina +Shauntae +Shavon +Shaylin +Sheela +Shellie +Sherita +Sherrell +Sheyanne +Sheyna +Shiane +Shiree +Sia +Siena +Sindia +Sintia +Siria +Sloan +Sonora +Soua +Sterling +Steve +Stormi +Subrina +Supriya +Synthia +Tamisha +Tarra +Tashina +Tawana +Tawney +Taya +Teana +Teressa +Teryn +Thanh +Tiarra +Tiffaney +Tinisha +Tory +Tova +Treanna +Tria +Tuongvi +Tyla +Tyree +Vanity +Vanna +Vasthi +Velvet +Venecia +Verenise +Vikki +Virdiana +Wesley +Yakira +Yohanna +Yomaira +Ysabel +Yunuen +Yurico +Zahara +Zaina +Zakiya +Zarina +Zaynab +Zina +Jessica +Ashley +Stephanie +Jennifer +Elizabeth +Amanda +Sarah +Samantha +Michelle +Nicole +Maria +Melissa +Vanessa +Emily +Lauren +Brittany +Megan +Danielle +Andrea +Chelsea +Christina +Rachel +Alexandra +Rebecca +Katherine +Jasmine +Kimberly +Victoria +Taylor +Alyssa +Monica +Kayla +Laura +Brenda +Jacqueline +Natalie +Crystal +Diana +Cynthia +Amber +Gabriela +Alejandra +Sara +Angelica +Veronica +Ana +Alexis +Hannah +Tiffany +Brianna +Erika +Nancy +Karen +Kelsey +Daisy +Erica +Courtney +Yesenia +Karina +Marissa +Adriana +Amy +Heather +Cassandra +Kelly +Mayra +Cindy +Shelby +Angela +Julia +Sandra +Bianca +Mary +Christine +Alicia +Alexandria +Claudia +Kaitlyn +Briana +Olivia +Anna +Allison +Patricia +Leslie +Jocelyn +Erin +Guadalupe +Shannon +Monique +Breanna +Evelyn +Mariah +Priscilla +Wendy +Brittney +Jamie +Sabrina +Morgan +Cristina +Haley +Lisa +Catherine +Valerie +Denise +Janet +Melanie +Kathryn +Brooke +Desiree +Karla +Katie +Joanna +Lindsey +Kristen +Ariel +Julie +Jasmin +Rosa +Jenna +Katelyn +Kristina +Caitlin +Linda +Paige +Jordan +Jazmin +Ariana +Dominique +Isabel +Gabrielle +Lindsay +April +Leticia +Liliana +Carolina +Ruby +Kathleen +Krystal +Emma +Katrina +Gloria +Cecilia +Abigail +Madison +Daniela +Jenny +Marlene +Molly +Grace +Miranda +Vivian +Teresa +Alma +Lorena +Martha +Jeanette +Sonia +Marisol +Yvette +Tania +Miriam +Raquel +Carla +Esmeralda +Kristin +Tanya +Sophia +Sierra +Hayley +Natasha +Sydney +Marina +Maribel +Holly +Carmen +Cheyenne +Blanca +Angelina +Ashlee +Chloe +Meghan +Valeria +Madeline +Gina +Maritza +Leah +Savannah +Destiny +Yvonne +Jazmine +Carly +Kassandra +Tatiana +Justine +Tara +Deanna +Beatriz +Alexa +Mariela +Rocio +Susana +Genesis +Audrey +Cristal +Mackenzie +Araceli +Caroline +Lizbeth +Margaret +Felicia +Mercedes +Camille +Hailey +Paola +Adrianna +Sandy +Carina +Kaitlin +Brandi +Margarita +Marisa +Marilyn +Irene +Claire +Naomi +Tracy +Gabriella +Dana +Esther +Kylie +Janelle +Noemi +Norma +Chelsey +Krista +Rachael +Rebekah +Yadira +Jacquelyn +Whitney +Jade +Silvia +Susan +Viviana +Alison +Elena +Heidi +Hillary +Kirsten +Stacey +Kara +Edith +Jaclyn +Jillian +Stacy +Casey +Clarissa +Yolanda +Britney +Nichole +Stephany +Eva +Theresa +Kendra +Melody +Helen +Amelia +Sharon +Carissa +Caitlyn +Candice +Renee +Arlene +Carolyn +Ruth +Iris +Kristine +Mariana +Virginia +Fabiola +Ivette +Tori +Bethany +Lizette +Christian +Marie +Dulce +Pamela +Paulina +Zoe +Alisha +Johanna +Sheila +Tina +Alice +Diane +Brandy +Candace +Sylvia +Perla +Angel +Berenice +Sofia +Angelique +Nina +Paula +Anne +Elaine +Maricela +Barbara +Estefania +Brianda +Lucia +Natalia +Celeste +Judith +Ashleigh +Juliana +Gladys +Tamara +Kaylee +Luz +Breana +Janette +Lydia +Deborah +Arianna +Melinda +Annie +Kathy +Chanel +Meagan +Roxana +Serena +Tessa +Bridget +Maya +Reyna +Summer +Kiara +Bailey +Yessenia +Connie +Lacey +Maira +Thalia +Alissa +Karissa +Regina +Arielle +Kelli +Rose +Autumn +Carol +Charlotte +Colleen +Corina +Elisa +Lizeth +Mallory +Michaela +Darlene +Michele +Shanice +Elise +Roxanne +Yasmin +Adrienne +Celina +Hilary +Kellie +Lourdes +Nicolette +Ingrid +Marisela +Aimee +Daniella +Josephine +Lily +Sally +Sasha +Robin +Frances +Irma +Nadia +Annette +Ciara +Ericka +Mia +Angie +Griselda +Kristy +Allyson +Ellen +Lucero +Devin +Isabella +Nayeli +Donna +Jessie +Kiana +Rachelle +Eileen +Kasey +Aubrey +Jaqueline +Alina +Joana +Juana +Kendall +Lillian +Melina +Stefanie +Clara +Nathalie +Tyler +Ivonne +Rita +Aurora +Catalina +Faith +Kristi +Nataly +Rebeca +Rosemary +Celia +Francesca +Judy +Lucy +Rochelle +Fatima +Tiana +Desirae +Hanna +Joyce +Mai +Iliana +Taryn +Bryanna +Jane +Olga +Janice +Noelle +Beverly +Diamond +Genevieve +Kate +Kenia +Ann +Brenna +Nikki +Raven +Tabitha +Adilene +Cassidy +Devon +Ebony +Mckenna +Shirley +Larissa +Brianne +Jeannette +Sarai +Selene +Anita +Elisabeth +Lisette +Marcela +Talia +Anais +Flor +Magdalena +Alisa +Christy +Graciela +Janae +Robyn +Selina +Chelsie +Eliana +Joy +Rubi +Alana +Brittani +Cierra +Joselyn +Katelynn +Leanna +Simone +Trisha +Charlene +Toni +Cassie +Julianne +Katarina +Nora +Tammy +Anastasia +Belen +Jaime +Juanita +Mireya +Viridiana +Asia +Corinne +Shawna +Sophie +Alondra +Anissa +Kaila +Kelsie +Lidia +Bonnie +Madeleine +Elsa +Pauline +Georgina +Katharine +Marlen +Alexandrea +Carrie +Joanne +Riley +Alanna +Cinthia +Giselle +Lesley +Tayler +Ashlyn +Gianna +Kailey +Lena +Aileen +Anabel +Bertha +Kira +Luisa +Paloma +Randi +Vicky +Cathy +Giovanna +Hope +Jessika +Jordyn +Maggie +Moriah +Rosario +Ashlie +Belinda +Chantel +Isamar +Melisa +Tess +Aracely +Cara +Dorothy +Evelin +Liana +Lorraine +Yessica +Bernadette +Breanne +Chantal +Tasha +Arely +Beatrice +Kari +Kelley +Shayla +Suzanne +Destinee +Eunice +Hilda +Jackeline +Josefina +Meredith +Nadine +Nelly +Kyla +Laurel +Magaly +Alyson +Danica +Jacklyn +Julissa +Lissette +Shaina +Sonya +Antoinette +Kristie +Kylee +Reina +Salina +Casandra +Johana +Kaitlynn +Magali +Mikayla +Savanna +Antonia +Dakota +Eden +Jennie +Maricruz +Precious +Alysha +Areli +Christa +Doris +Eliza +Elvia +Esperanza +Grecia +Kenya +Lina +Mariel +Shayna +Cortney +Estefany +Faviola +Janine +Lilia +Micaela +Myra +Sadie +Tiara +Xochitl +Alexia +Athena +Dianna +Jenifer +Jose +Lilian +Marcella +Mindy +Selena +Tia +Breann +Carley +Julianna +Leilani +Lupita +Roxanna +Ryan +Ashly +Bridgette +Cheryl +Dolores +Elyse +Janessa +Jessenia +Leanne +Loren +Misty +Yazmin +Ileana +Lesly +Michael +Zaira +Daniel +Vanesa +Cheyanne +Dalia +Elvira +Jaimie +Lara +Nallely +Alexander +Bernice +Betsy +Emilia +Haylee +Ivana +Justina +Karly +Kayleigh +Krysta +Marlena +Shauna +Debbie +Imelda +Isela +Ivy +Mckenzie +Pa +Stevie +Yajaira +Celene +Celine +Damaris +Dawn +Demi +Denisse +Estrella +Fernanda +Francisca +Mari +Shelly +Yanira +Adrian +Christie +Delaney +Delia +Dora +Georgia +Hazel +Lori +Meaghan +Tiffani +Betty +Bria +Callie +Candy +Elsie +Geraldine +Jackie +Janeth +Lacy +Lynn +Natali +Anjelica +Danae +Kourtney +Kyra +Mandy +Marielena +Tracey +Aisha +Alysia +America +Azucena +Danika +Estela +Katlyn +Kaylie +Mikaela +Sherry +Terra +Tierra +Ada +Alex +Coral +Jannet +Katy +Lea +Mirian +Ramona +Rosalinda +Alexus +Christiana +Estefani +Evangelina +Geneva +Jocelin +Kaleigh +Karli +Makayla +Mirna +Nathaly +Noel +Shantel +Stacie +Stella +Tanisha +Tonya +Xiomara +Becky +Blair +Breeanna +Devyn +Dina +Glenda +Itzel +Joan +Josie +Lizet +Madelyn +Mirella +Nidia +Paris +Tianna +Verenice +Alessandra +Chandler +Corinna +Debra +Heidy +Jill +Kaela +Lyndsey +Yoselin +Bree +Ciera +Dania +Isabelle +Kelsi +Maryann +Serina +Sheena +Shelley +Susanna +Andreina +Brandie +Brittni +Chanelle +Constance +Emilie +Janel +Jesus +Kaley +Kasandra +Kaylin +Kelsea +Malia +Pricilla +Rosie +Scarlett +Shelbi +Adela +Aida +Anahi +Brittanie +Cayla +Chantelle +Edna +Francis +Imani +Kali +Kim +Kristal +Lisbeth +Liza +Mariam +Marian +Skye +Yuliana +Alba +Ani +Briseida +Dianne +Fiona +Gardenia +Martina +Mollie +Ofelia +Rosio +Sarina +Sidney +Yesica +Alejandro +Clare +Jayme +Jesica +Joselin +Keila +Kiley +Kirstin +Lauryn +Lynette +Macy +Maureen +Minerva +Nicolle +Staci +Susie +Yanet +Alaina +Alysa +Amie +Astrid +Darian +Emely +Fanny +Gwendolyn +Jena +Jesenia +Jesse +Joann +Marjorie +Monet +Tawny +Yasmeen +Adrianne +Brigitte +Bryana +Chrystal +Elva +Emilee +Estephanie +Helena +Jacquelin +Joshua +Karlee +Marianne +Nikole +Shanae +Vannessa +Vianey +Violet +Allyssa +Amalia +Angeline +Annamarie +Anthony +Britany +Carlee +Carli +Christopher +Daphne +David +Deisy +Eleanor +Iesha +Juliet +Kimberley +Lupe +Makenna +Mara +Maxine +Phoebe +Andrew +Andria +Anika +Annmarie +Avery +Dallas +Deja +Eloisa +Elyssa +Francine +Heaven +Joseline +Katerina +Kerri +Kirstie +Kristyn +Laurie +Monika +Monserrat +Nayely +Nia +Nikita +Pearl +Reanna +Rosalie +Saira +Stefani +Stefany +Yasmine +Aide +Alycia +Ashlynn +Ashton +Austin +Ava +Brigette +Cori +Elia +Elisha +Janell +Jannette +Jazzmin +Joelle +Jovanna +Juan +Karlie +Kayley +Latoya +Leila +Lilly +Manuela +Marianna +Marlyn +Mitzi +Rhiannon +Shanna +Shea +Skylar +Terry +Tricia +Vicki +Zulema +Bobbi +Breeana +Bronte +Charity +Christal +Consuelo +Darcy +Dayana +Domonique +Hailee +Hana +Jaquelin +Jean +Keely +Makenzie +Marta +Raylene +Sage +Shelbie +Suzanna +Thelma +Yaritza +Alia +Allie +Anakaren +Catrina +Cinthya +Devan +Gladis +Kalyn +Karisa +Kerry +Noemy +Shana +Tiffanie +Unique +Abby +Anel +Aubree +Ayla +Brook +Cameron +Carlie +Chelsi +Cherie +Davina +Destiney +Dylan +Elissa +Emerald +Frankie +Haylie +India +Kacie +Kianna +Kiera +Kimberlee +Kristian +Latasha +Lia +Marla +Maura +Mayte +Rosemarie +Sarahi +Shanelle +Symone +Teresita +Trinity +Angelic +Annabel +Corrina +Dalila +Desire +Jackelyn +Justin +Katia +Keisha +Kelcey +Korina +Krystle +Lana +Leann +Maranda +Marcia +Mariaelena +Princess +Rene +Rosalba +Rosalva +Shannen +Stephani +Traci +Aaron +Abril +Anamaria +Angelita +Annalisa +Brittny +Celena +Christin +Chynna +Corey +Denice +Felisha +Franchesca +Haleigh +Hallie +Harley +Hollie +Jodie +Julieta +Kayleen +Krystina +Paulette +Rosalia +Saray +Socorro +Suzette +Trina +Zuleima +Alena +Ambar +Ashely +Brittnee +Cecelia +Cecily +Daysi +Dominque +Iman +Isis +Jaycee +Kacey +Karin +Katelin +Katheryn +Kierra +Lacie +Mabel +Madalyn +Marilu +Nohemi +Patrice +Pooja +Sahar +Siobhan +Soledad +Sydnie +Tabatha +Tawni +Thania +Valentina +Venessa +Aja +Annelise +Ashli +Bao +Christen +Danyelle +Dennise +Haydee +Jazmyn +Jovana +Kandice +Kiersten +Kori +Layla +Lilliana +Lizbet +Logan +Maddison +Misha +Nichelle +Peyton +Priscila +Sade +Samara +Sammantha +Shawnee +Tracie +Vania +Violeta +Yecenia +Alejandrina +Alix +Amparo +Beth +Bridgett +Britni +Brittnie +Cherish +China +Cintia +Cody +Cory +Dayna +Deana +Fallon +Gisela +Jamila +Janee +Janie +Janna +Jenae +Kailee +Kathrine +Kaylyn +Kaylynn +Kia +Klarissa +Krysten +Latisha +Leandra +Mimi +Mona +Myrna +Nanci +Nicholas +Nydia +Racquel +Sheyla +Skyler +Tatianna +Vianca +Allegra +Anai +Bianka +Brittaney +Cambria +Cherise +Cora +Danya +Deidre +Elda +Gema +Ida +Isaura +Ivanna +Jeannie +Jeniffer +Jolene +Juliette +Leigh +Leonor +Lisbet +Lyndsay +Matthew +Mellissa +Montana +Nereida +Priya +Rikki +Roberta +Yareli +Yer +Alyse +Anayeli +Asha +Aundrea +Ayana +Beatris +Brandee +Chelsy +Claribel +Clarisa +Delilah +Flora +Gabriel +Ginger +Jami +Jaquelyn +Jenelle +Jody +Kandace +Kevin +Kortney +Magda +Marbella +Mercedez +Miguel +Mildred +Neda +Rayna +Richelle +Shaniece +Shawn +Sindy +Stormy +Valarie +Wendi +Yahaira +Yuri +Alyssia +Amara +Amberly +Anyssa +Aria +Aura +Brisa +Cathleen +Charmaine +Chelsee +Cindi +Clarice +Colette +Cristian +Cristy +Dena +Elaina +Ella +Essence +Geena +Ilse +Janett +Jasmyn +Jodi +Kelsy +Keri +Lani +Lianna +Liz +Maegan +Malissa +Marilynn +Marley +Maryanne +Marylou +Micah +Mina +Nisha +Rhonda +Samatha +Shani +Shari +Sienna +Stephania +Sunny +Yarely +Zoey +Zuleyma +Acacia +Adelina +Aleena +Anisa +Annika +Ariella +Aubrie +Audra +Audrianna +Blake +Brandon +Breonna +Brooklyn +Chanell +Cheri +Dara +Elana +Erendira +Evan +Gillian +Hali +Jana +Janay +Jazzmine +Jeanine +Jennyfer +Jonathan +Josselyn +Kalie +Kamille +Karyn +Kenzie +Keren +Kyle +Lee +Leeann +Linsey +Marielle +Marika +Markie +May +Michell +Nellie +Nereyda +Nicola +Robert +Rosanna +Sequoia +Shyanne +Tatyana +Tera +Alayna +Alisia +Amira +Analisa +Analy +Annemarie +Anya +Aya +Brieanna +Brionna +Brynn +Candelaria +Carmela +Charissa +Corrine +Cydney +Dalena +Dejanae +Dorian +Ester +Francisco +Frida +Gretchen +Gricelda +Halie +Harmony +Ines +Jaclynn +Jazmyne +Jenni +Joleen +Jorge +Joslyn +Kelcie +Leonela +Lexus +London +Louise +Lynda +Maritsa +Merissa +Myranda +Raelene +Rhea +Rianna +Savanah +Sean +Serenity +Shira +Sonja +Starr +Steven +Tesla +Trang +Valery +Vannesa +Vilma +Winnie +Adeline +Amaris +Analise +Anisha +Ashanti +Aurelia +Bella +Bobbie +Brielle +Carlos +Cassondra +Chandra +Concepcion +Corrie +Danisha +Deyanira +Drew +Elida +Elle +Ellie +Estella +Eugenia +Evette +Ilene +Izamar +Jaimee +Jalisa +Jeanne +Jeffrey +Jocelyne +Kaelyn +Kailyn +Kasie +Kati +Kaya +Lilibeth +Lisset +Lora +Mandi +Mariza +Marquisha +Miracle +Paisley +Patsy +Petra +Rena +Ronisha +Rosana +Ryann +Sahara +Salena +Samira +Sayra +Stephenie +Tamar +Tatum +Vera +Vickie +Alesha +Anali +Angeles +Arcelia +Britnee +Bryn +Cathryn +Cesilia +Christi +Crysta +Danelle +Danna +Dasha +Denisha +Destini +Dixie +Edlin +Erinn +Estephania +Eve +Josette +Jourdan +Julisa +June +Ka +Kala +Katlin +Katya +Kaycee +Kaylen +Keana +Keyla +Kimberlyn +Kristiana +Kyleigh +Lakeisha +Linh +Lizzet +Lluvia +Lucila +Luis +Marilin +Marivel +Melyssa +Mercy +Nicollette +Niki +Nubia +Peggy +Rebecka +Renata +Rio +Rosalyn +Rosamaria +Sabina +Sharlene +Sondra +Tonisha +Trinidad +Tyra +Victor +William +Abbey +Alexsandra +Anastacia +Arlette +Ayesha +Baby +Bibiana +Blaire +Cady +Camila +Carson +Dani +Debora +Farrah +Faye +Gisselle +Ivon +Jacquelynn +Javier +Jaymie +Jesika +Jimena +Joseph +Julian +Kallie +Kamilah +Karena +Kathie +Kayli +Kirstyn +Laci +Laila +Lili +Lizzette +Macie +Madisen +Malika +Malina +Marguerite +Marion +Mellisa +Milagros +Myesha +Nely +Octavia +Oscar +Patty +Payton +Racheal +Rebeka +Renae +Rylee +Samuel +Savana +Shantell +Stacia +Star +Stephen +Sydnee +Taelor +Tarah +Teri +Terri +Vianney +Wesley +Zulma +Aidee +Alea +Ali +Angelia +Annalise +Antonio +Arianne +Arlyn +Aryana +Aryn +Baylee +Berenise +Caitlan +Candida +Cari +Darla +Deidra +Delmy +Divya +Doreen +Elisabet +Elizabet +Genna +Greta +Holland +Ilana +Indigo +Inez +Jaleesa +James +Janelly +Jaylene +Jerica +John +Jorden +Kassidy +Keeley +Kenisha +Keyana +Kiah +Kiani +Kinsey +Lacee +Leana +Liberty +Lila +Liset +Lucille +Maile +Malinda +Marcy +Marily +Maryjane +Marysol +Mika +Mitzy +Monae +Omar +Pang +Patience +Portia +Remy +Richard +Sapphire +Shaniqua +Sheri +Stefania +Therese +Tiera +Torie +Trista +Vivianna +Xochilt +Akilah +Alexys +Amani +Anaiz +Anaiza +Analicia +Annabelle +Araseli +Arleen +Avalon +Babygirl +Benita +Berlyn +Brea +Breauna +Breeann +Cali +Camilla +Candis +Carmina +Chia +Christianna +Codi +Connor +Crista +Cristine +Dajanae +Dannielle +Daria +Darlyn +Deandra +Dinora +Eboni +Eduardo +Eleni +Farah +Fernando +Florence +Gracie +Henna +Isabela +Israel +Jacob +Janis +Jayde +Jaymee +Jeanie +Jenee +Jenessa +Jessi +Jewel +Jocelynn +Jordana +Joycelyn +Juliann +Kathlyn +Kaylene +Keara +Keiko +Kenna +Kymberly +Lashawn +Lashay +Latrice +Lindy +Liseth +Loretta +Lynsey +Maia +Mariaguadalupe +Marlee +Martika +Martiza +Merari +Milan +Montserrat +Myriam +Nalani +Natalee +Nuvia +Penelope +Penny +Pilar +Presley +Priyanka +Rachell +Raechel +Raisa +Reena +Riana +Sana +Shanee +Sheree +Sky +Sonam +Steffany +Sue +Sulema +Suleyma +Suzy +Talisa +Tisha +Torri +Willow +Xochil +Yamilet +Yara +Yoseline +Yuridia +Zahra +Zully +Adina +Alexi +Alivia +Allysa +Alora +Ambrosia +Amethyst +Ami +An +Anaisa +Anjali +Annalee +Arlena +Audriana +Briauna +Britnie +Brittanee +Caitlynn +Carrissa +Cassaundra +Cera +Charisse +Chasity +Chaya +Cherry +Chiara +Ciarra +Colby +Cristin +Darien +Deanne +Deysi +Ellyn +Emmeline +Eric +Evelia +Felecia +Haidee +Hellen +Holli +Idalia +Jamesha +Jayne +Jeanelle +Jeannine +Jennefer +Joceline +Johnna +Joi +Jordin +Jordon +Julienne +Kai +Kalena +Kandy +Karah +Katey +Katheryne +Kathryne +Katlynn +Katty +Kayle +Kaytlin +Khadija +Kimia +Krystin +Latifah +Latonya +Leeanne +Lillie +Lizabeth +Lizett +Lorin +Lyndsie +Madelaine +Mallorie +Maren +Margie +Margo +Margot +Mariadejesus +Maricarmen +Marin +Marrissa +Maryah +Meliza +Melodie +Nakia +Nicholette +Noelani +Noor +Porsha +Rachele +Raina +Rana +Rebekka +Regan +Rhianna +Shane +Shanell +Shantal +Shante +Shasta +Sheridan +Silva +Spencer +Talar +Tami +Tiare +Torey +Ursula +Vanity +Veronika +Vivien +Xenia +Ximena +Yael +Yaneli +Zaida +Zoila +Adreanna +Aislinn +Andreana +Andres +Antionette +Antonette +Argelia +Ariane +Ariela +Armando +Aspen +Ayanna +Berenis +Beronica +Carmelita +Caterina +Channel +Channing +Chastity +Choua +Chyna +Cinnamon +Corie +Danyell +Darleen +Delfina +Demetria +Edgar +Edward +Elba +Elysia +Estephany +Evelina +Gaby +Gena +Genessis +Ger +Gisel +Guillermina +Hermelinda +Houa +Indira +Ivett +Jalissa +Janai +Janeli +Jaspreet +Jayna +Jennafer +Joey +Jolie +Kacy +Kameron +Karishma +Karolyn +Kassondra +Katalina +Kaylah +Keanna +Keshia +Kirsti +Lai +Leona +Lianne +Lisandra +Lois +Mackenna +Marcelina +Markeisha +Marlin +Maryssa +Matilde +Mattie +Mee +Meranda +Michel +Miesha +Miriah +Nelida +Ninfa +Nycole +Phylicia +Prisilla +Reem +Roni +Rosalina +Rosalind +Rosaura +Sandi +See +Selenne +Sergio +Shanel +Shanika +Shanise +Sharee +Shavonne +Sheng +Sherri +Sheryl +Shianne +Shoshana +Shyann +Shyla +Sinead +Sirena +Sloane +Stephaine +Sunshine +Susy +Suzie +Sydni +Talya +Tamika +Tannia +Tawnya +Thao +Tierney +Torrie +Venus +Vincent +Wanda +Whitley +Winter +Yenifer +Yezenia +Yoana +Zara +Adam +Adria +Ahsley +Alecia +Aliza +Allana +Alyx +Amada +Anahit +Andra +Anette +Anh +Anjanette +Anum +Arlin +Ashlea +Ashlei +Breyanna +Brian +Calli +Candyce +Carisa +Ceara +Charisma +Charlie +Chee +Chi +Cleo +Corissa +Daisey +Daniele +Darline +Deena +Dejanee +Delores +Denae +Destinie +Dionna +Dyanna +Emi +Emmy +Enedina +Eulalia +Felicity +Gail +Gemma +Geovana +Giana +Ginny +Gissel +Harpreet +Hasmik +Herminia +Jacelyn +Jackelin +Jacquline +Jada +Jael +Janea +Jannelle +Jasmyne +Jenice +Jenise +Jerrica +Jessyca +Jordann +Julieann +Kami +Karis +Karley +Karoline +Karyssa +Katherin +Kathia +Kaylea +Kaytlyn +Kiarra +Kimber +Kimberlie +Kindra +Kyrsten +Laken +Larisa +Laurissa +Lesli +Leslye +Lisett +Lorna +Louisa +Lucinda +Lyssa +Maleny +Manuel +Mariko +Mario +Marleen +Marsha +Marycruz +Meghann +Melany +Mychelle +Nailah +Nathan +Navneet +Nicki +Noelia +Pedro +Ricardo +Roseanna +Roslyn +Rosy +Roya +Sacha +Salma +Sarahann +Scarlet +Shabnam +Shamika +Shanea +Shanique +Sharice +Shay +Shaylee +Shaylene +Shivani +Sonora +Soraya +Tanairi +Taylar +Teal +Tenaya +Tien +Tory +Tyesha +Verenise +Winona +Yee +Yeng +Yoanna +Zenaida +Zuleica +Zuri +Adelaida +Adreana +Agnes +Aisling +Aleah +Alegandra +Alexxa +Alise +Alyce +Alysse +Ammy +Andriana +Andrianna +Andrina +Angella +Annaliese +Arantxa +Arika +Asusena +Bailee +Becca +Biviana +Breanda +Briann +Britny +Brittini +Brittnay +Bryan +Cailey +Caley +Candie +Caren +Carolann +Casaundra +Cassi +Celestina +Chante +Chyanne +Citlali +Citlalli +Coreen +Courtnie +Dafne +Deirdre +Denielle +Edlyn +Edwin +Elianna +Emmaline +Erick +Evangeline +Fannie +Geovanna +Gigi +Haily +Halee +Halley +Hanan +Honey +Imari +Irena +Ivania +Ivone +Ivory +Jacalyn +Jacey +Jacklynn +Jacquelyne +Janina +Jeana +Jenay +Jenica +Jeri +Jina +Joselyne +Josephina +Kalia +Kalina +Karely +Kaylan +Keiana +Kelci +Kirra +Kyley +Kyrstin +Ladonna +Lan +Lanesha +Lashanique +Liane +Lilianna +Lindsy +Linette +Linnea +Lola +Loni +Loraine +Lysette +Magen +Maisie +Malena +Malisa +Mao +Marcie +Maricella +Mariya +Markisha +Markita +Marlina +Marlo +Maryam +Marylin +Marylu +Mayela +Melaina +Melony +Mikala +Miya +Myriah +Nayelly +Nicholle +Nisa +Oriana +Paradise +Parisa +Piper +Polly +Porsche +Prescilla +Quinn +Radhika +Raelyn +Rafael +Rayven +Rheanna +Rina +Ronni +Roseanne +Roxane +Rudy +Saida +Sariah +Sarita +Shaila +Shantelle +Shaunice +Shavon +Shelsea +Sherilyn +Shireen +Silvana +Sinai +Suleima +Synthia +Tanesha +Tasia +Tenisha +Thanya +Thea +Torrey +Tristen +Tylar +Tyresha +Van +Vaneza +Vienna +Yamileth +Yaneth +Yaquelin +Yocelyn +Yohana +Yovana +Zoua +Abriana +Addie +Addison +Adriane +Aissa +Akira +Alannah +Alexsis +Alexxis +Alida +Alishia +Alli +Ally +Alvina +Alyxandra +Aminah +Anahy +Analuisa +Anay +Andy +Annissa +Arica +Arisa +Ashia +Aysha +Bailie +Banesa +Billie +Biridiana +Breena +Briahna +Brieana +Brigid +Brina +Briona +Britini +Britta +Bryce +Camellia +Cameo +Caprice +Carleen +Carlina +Carmella +Caryn +Casie +Cesia +Chanice +Chelcie +Chelse +Cherelle +Cherokee +Clarisse +Cleopatra +Codie +Corrin +Courtnee +Cruz +Dahlia +Daisi +Darling +Deeanna +Deisi +Dennis +Deserie +Deziree +Diandra +Dinah +Elicia +Elina +Elma +Emelia +Emmalee +Emy +Eryn +Evelynn +Francheska +Gao +Genisis +Giovanni +Grisel +Hanah +Herlinda +Huong +Irais +Ivan +Jacinda +Jahaira +Jamilah +Janiece +Jannel +Jazlyn +Jeanna +Jensen +Jessa +Jessalyn +Jesseca +Jessy +Jo +Joel +Josselin +Julieanne +Kady +Kaisha +Kalee +Kaleen +Karine +Karleigh +Karyna +Kassie +Katina +Keaira +Keira +Kellee +Kendal +Kierstin +Kimberli +Kirby +Krizia +Krystyna +Kyana +Laquisha +Leena +Lela +Leonardo +Letisia +Lexi +Lexis +Lorelei +Lorenza +Lucerito +Lyanne +Lynnette +Ma +Macey +Maci +Maiya +Malaysia +Malyssa +Marci +Marleny +Marrisa +Meisha +Merlin +Michela +Minnie +Mira +Monisha +Morganne +Muriel +Naomy +Nhi +Nichol +Nickole +Noreen +Nou +Oliva +Osiris +Passion +Peter +Phuong +Phyllis +Priscella +Raeann +Raelynn +Raquelle +Raul +Raychel +Raymond +Reagan +Reba +Reema +Remi +Rhiana +Risa +Rivka +Ronnie +Saba +Santana +Shakiyla +Shanese +Shannel +Shanti +Shara +Sharae +Shardae +Shawnice +Shayne +Shellie +Sheyenne +Sivan +Sommer +Sonali +Starla +Steffani +Stephannie +Sterling +Sulma +Susannah +Tabetha +Tal +Taleen +Tamra +Teagan +Terilyn +Theodora +Thi +Thu +Tonie +Tran +Treasure +Tristan +Valorie +Yanely +Yanette +Yasaman +Yazmine +Yenny +Yocelin +Zachary +Zakiya +Zayra +Zenia +Abilene +Adele +Aerial +Agustina +Aleida +Alixandria +Aliya +Aliyah +Allisa +Allyse +Alyssamarie +Amal +Anamarie +Andi +Anessa +Angelena +Annamaria +Annel +Annessa +Anny +Araya +Ariadna +Arisbeth +Armida +Ashtyn +Asma +Asucena +Audrina +Aundria +Averi +Aviana +Aviva +Benjamin +Berlin +Bethanie +Betsabe +Breona +Brett +Briselda +Bronwyn +Brooklynn +Byanka +Caila +Calla +Cami +Capri +Carleigh +Carlota +Carlyn +Carrisa +Cassey +Catarina +Catharine +Champagne +Chanae +Charis +Charles +Citlaly +Clair +Collette +Cortnie +Danitza +Darby +Darnisha +Daryl +Dayanna +Della +Desirea +Devina +Devonna +Devora +Dionne +Domenica +Dominica +Dunia +Edwina +Eleana +Elidia +Elsy +Elysa +Ema +Emelie +Emery +Ena +Erendida +Erik +Eryka +Estefanie +Fantasia +Francia +Freya +Fritzi +Gabriele +Gagandeep +Genevie +Genova +Giovana +Giulia +Giuliana +Glendy +Greer +Ha +Hailie +Hanh +Harriet +Hien +Hong +Hunter +Itzia +Ivet +Jacinta +Jacky +Jacy +Jadira +Jakeline +Janeen +Janely +Janielle +Janira +Jannely +Jennica +Jenniffer +Jerry +Jodeci +Joscelyn +Judit +Julio +Justice +Kadie +Kaeli +Kalin +Kareena +Karol +Kasi +Katharina +Kathya +Katryna +Kayci +Kaydee +Kemberly +Kennisha +Kennya +Keyanna +Keyona +Khadijah +Kierstyn +Kiran +Kirsty +Kiyana +Kodi +Korinne +Kristan +Kristel +Kristena +Kristyna +Kyanna +Kyara +Kymberlee +Kyrie +Laney +Latanya +Laureen +Laurin +Leighann +Libby +Ligia +Lilit +Livia +Livier +Lizzeth +Lolita +Loreal +Lorie +Luana +Lucina +Lusero +Lusine +Lynne +Mackenzi +Madelynn +Madyson +Mae +Maeve +Makena +Mariadelcarmen +Marialuisa +Marisabel +Marita +Marlayna +Marlissa +Marquesha +Martin +Marybeth +Maryelizabeth +Maryellen +Maurissa +Meena +Meera +Mele +Meriah +Michaella +Milena +Mitchelle +Nai +Naly +Narine +Nary +Natalya +Neha +Nhu +Nika +Nissa +Ondrea +Oralia +Parris +Patrisha +Perlita +Quanisha +Raeanne +Rashelle +Rashida +Ria +Rima +Roselia +Rosi +Ryanne +Samone +Santa +Sarahy +Sarena +Seana +Sedona +Selenia +Selma +Shadae +Shae +Shalonda +Shanay +Shandi +Shannan +Sharmaine +Shauni +Shaylyn +Shellby +Shereen +Shoua +Siena +Siera +Silver +Simona +Sindi +Sinthia +Solange +Soua +Spenser +Steffanie +Steffi +Susanne +Tailor +Tala +Talin +Tameka +Tanna +Tanzania +Taralyn +Tawnie +Tayla +Teanna +Tereza +Tiffiny +Tiyana +Tkeyah +Trinh +Tristin +Tyana +Tyanna +Tyla +Valencia +Varsha +Yanett +Yasamin +Yeni +Yuriko +Zarina +Zena +Adelita +Adi +Adrina +Alan +Alberto +Alesandra +Alessa +Alexzandra +Alexzandria +Alicea +Aline +Alixandra +Allen +Allissa +Alona +Alonda +Alva +Alyshia +Amarilis +Amrit +Anabell +Anabelle +Analilia +Anarosa +Anayely +Andie +Andreanna +Angelika +Ania +Anibal +Anise +Anjelika +Anjelina +Apryl +Arlen +Arturo +Ashlen +Ashten +Ashtin +Asley +Audrie +Autum +Ayde +Azalea +Azusena +Baleria +Bayley +Berta +Betzaida +Betzy +Bianey +Bonita +Briannah +Brienna +Britani +Britteny +Brynne +Byanca +Cailin +Caitlen +Camelia +Caresse +Carin +Carlene +Carlotta +Carolynn +Cassandre +Caylee +Caylie +Cesar +Chantell +Chelsa +Cheyanna +Chole +Chris +Christianne +Chyann +Claudette +Claudine +Coleen +Corinthia +Courtni +Cristela +Cyndi +Cyndy +Cynthya +Cyntia +Dacia +Dale +Danette +Dannah +Danny +Danyel +Darci +Darienne +Darlin +Dejanique +Delanie +Demitria +Desaray +Deseree +Desiray +Destany +Desteny +Devynn +Deysy +Dezirae +Dilia +Domenique +Donielle +Donisha +Dyana +Ebonee +Eddie +Elexis +Eli +Elisabel +Elysha +Eman +Ember +Eneida +Eugene +Fabian +Feliza +Franki +Gianni +Gilda +Glory +Goldie +Gracia +Gurpreet +Halle +Hannan +Harlee +Hattie +Helene +Hillarie +Hortencia +Ileen +Irina +Izabella +Jalina +Jamaica +Jamilla +Jamisha +Janaya +Janaye +Janneth +Janny +Jason +Jaylyn +Jazmen +Jelena +Jeni +Jerrika +Jewels +Jezabel +Johnnie +Johnny +Jolisa +Jordanne +Jordynn +Juliane +Kaelin +Kahla +Kaile +Kaili +Kaily +Kaitlan +Kalani +Kamryn +Kanani +Kaneisha +Kao +Kaori +Karie +Karlene +Karrie +Kasia +Katelynne +Kateri +Kathlene +Kenneth +Kennia +Keona +Kerianne +Kerrie +Kersten +Keyonna +Kimiko +Kiri +Korena +Kory +Krishna +Kristianna +Kylynn +Lakisha +Lanae +Lane +Lanisha +Lanita +Laquita +Lashae +Laticia +Lauran +Lavinia +Leesa +Lenora +Leora +Lesslie +Letitia +Letty +Leyla +Lida +Lisamarie +Lisseth +Lissett +Loryn +Luciana +Lucretia +Luisana +Lynna +Madelin +Madina +Mahsa +Maiquel +Maite +Makaila +Malorie +Malory +Mandeep +Maral +Mariajose +Mariella +Mariely +Marili +Marinna +Marline +Marsela +Marykate +Maryrose +Mayeli +Mccall +Meggan +Melia +Merly +Merlyn +Micayla +Mikela +Millicent +Mirta +Myisha +Na +Nadya +Nana +Nandi +Naseem +Natashia +Nathali +Neelam +Neiba +Nena +Nerissa +Ngoc +Niccole +Nikia +Noriko +Nour +Nuria +Nyssa +Orly +Otilia +Paul +Phoenix +Prisma +Quincy +Raeana +Randy +Ravyn +Rayanna +Reanne +Rebeccah +Rebekkah +Rigoberto +Ronesha +Roselyn +Rossy +Ruben +Rubicela +Rubie +Ryleigh +Sabreena +Saige +Samar +Sarra +Saundra +Scott +Shakila +Shalimar +Shalise +Shalynn +Shanta +Sharina +Shaunte +Shawnte +Shayanne +Sherrie +Shirin +Shreya +Siara +Simonne +Sloan +Soleil +Staphany +Stephane +Stephanee +Stevi +Stormie +Sully +Sydne +Tai +Talina +Tana +Tanairy +Taneisha +Taniesha +Tarra +Tashina +Tesa +Tesia +Tiarra +Tiauna +Titiana +Tomasa +Tommi +Tressa +Uyen +Veronique +Vivienne +Vy +Whittney +Wilma +Yanelly +Yenia +Ying +Ysabel +Yvett +Zainab +Zoraida +Zuleika +Abbie +Adileni +Afton +Ainsley +Airam +Akayla +Alda +Aleesha +Aleksandra +Aleshia +Alexes +Aliesha +Alin +Alisyn +Allyn +Allysha +Alonna +Althea +Amandeep +Amberlyn +Amina +Amna +Amorette +Amrita +Anacristina +Anahis +Analiese +Anastassia +Anastazia +Andera +Andre +Anique +Anjuli +Anneke +Annisa +Antonina +Arabella +Arden +Arilene +Arin +Arissa +Arline +Armanda +Arpine +Arriana +Aryanna +Ashleyann +Ashlin +Asya +Athina +Aubry +Audreanna +Augusta +Ayah +Aylin +Aziza +Bahar +Banessa +Belem +Belle +Breiana +Brenae +Briane +Briar +Briceida +Britanie +Brittiny +Briyana +Bryanne +Bryonna +Callan +Cally +Camillia +Candra +Caralee +Caressa +Carey +Carine +Carlin +Carolyna +Casondra +Cassy +Catelyn +Catherin +Catherina +Cathrine +Catlin +Ceaira +Cerise +Chandni +Charise +Charleen +Charnae +Chau +Chelcy +Chelesa +Cheree +Cherrelle +Cheyene +Christiane +Ciana +Cidney +Cienna +Clarita +Columba +Conchita +Corin +Corri +Corynn +Cristabel +Cristen +Cristiana +Crystina +Cydnee +Cymone +Daisha +Dalilah +Damali +Damisha +Daneisha +Daniell +Danita +Dao +Darcie +Darrian +Dashawn +Dasia +Davisha +Daysha +Dedra +Deeana +Deedee +Delina +Delmi +Delphine +Denia +Denis +Deonna +Desarae +Destanie +Dezarae +Dezaray +Dian +Dominic +Doneisha +Donya +Dustin +Ebonie +Echo +Edyth +Eloise +Enid +Erina +Erlinda +Ernestina +Esli +Estrellita +Ethel +Eun +Evann +Evie +Evita +Evonne +Fabiana +Felisa +Genesee +Gennesis +George +Georgette +Gerardo +Gicela +Glenna +Gregory +Gustavo +Gwen +Haneen +Haven +Hayde +Hayden +Hayli +Hector +Heena +Hira +Hlee +Huda +Italia +Jacie +Jaelyn +Jamey +Jamielee +Janesha +Janey +Jannine +Jaritza +Jasleen +Jaslyn +Jasmen +Jayla +Jaymi +Jazz +Jelisa +Jene +Jenell +Jenesis +Jennae +Jennette +Jensine +Jeremy +Jerri +Jessia +Jinny +Johna +Johnisha +Jolina +Jonell +Joni +Joselynn +Joslynn +Josue +Kacee +Kaci +Kaia +Kailynn +Kaitlyne +Kaleena +Kalli +Kalynn +Kamaria +Kana +Kandis +Kanisha +Kapri +Karime +Karinna +Karisma +Karmen +Karrah +Kassaundra +Kassey +Katerine +Kathleena +Kathrin +Kattie +Kayce +Kc +Kea +Keaton +Kebrina +Keiara +Keiry +Kela +Kellianne +Kelsee +Kena +Kendyl +Kenny +Keonna +Kera +Kesha +Keturah +Khristina +Kimberlyann +Kimmy +Kionna +Kirandeep +Kiya +Kiyomi +Kodie +Kortni +Krupa +Krystine +Kya +Kymberli +Kyndra +Kyrstie +Labrea +Lachelle +Laquesha +Laronda +Lashonda +Latesha +Latiana +Laurita +Layne +Leia +Leigha +Lessly +Levi +Libni +Lilybeth +Ling +Linzy +Lissete +Llesenia +Lorianne +Lucas +Luiza +Lurdes +Lus +Lyna +Lynae +Lyndsi +Lyric +Madelyne +Madilyn +Madisyn +Magan +Maha +Mahalia +Makala +Makeda +Maleni +Malikah +Manal +Manjot +Marah +Marco +Marena +Margaux +Margret +Mariaisabel +Mariann +Marietta +Marilee +Marimar +Maritssa +Mariyah +Marlana +Marleni +Marlenne +Marnee +Marquita +Martisha +Marvella +Marycarmen +Marylyn +Marysa +Max +Maygan +Mckayla +Mckinzie +Meagen +Mechelle +Medina +Megann +Melaine +Melania +Merina +Merisa +Mesha +Michal +Milagro +Miles +Minh +Mirtha +Moira +Molli +Monee +Monserat +Mya +Nadeen +Naira +Nairi +Najah +Namrata +Natividad +Navil +Nayelli +Nazia +Neftali +Neftaly +Neva +Niamh +Nicky +Nidhi +Nikkole +Nikolette +Niya +Noa +Nury +Ocean +Oyuki +Page +Pahoua +Palak +Parissa +Patrick +Patrisia +Peaches +Philicia +Porche +Porshay +Qiana +Queenie +Rae +Raeanna +Raena +Rahwa +Raine +Ramandeep +Ramon +Raveena +Raya +Rayleen +Raynisha +Rebeckah +Rianne +Ricki +Rika +Riki +Rilee +Rileigh +Romina +Rosalee +Rosalynn +Rosenda +Ruthie +Rylie +Sabine +Sabrena +Saki +Salome +Salvador +Samanth +Samaria +Samina +Savina +Sayuri +Selah +Semaj +Senaida +Sendi +September +Serah +Serene +Shaela +Shakia +Shameka +Sharai +Shareen +Sharleen +Shatara +Shaunna +Shawnie +Shayda +Shealyn +Sheeva +Shekinah +Shiela +Shiva +Simran +Soila +Sol +Sona +Soraida +Special +Stefanny +Susi +Sylvie +Taeler +Tahlia +Tali +Tam +Tammi +Tanea +Tanika +Taniqua +Taniya +Tarryn +Tatjana +Taya +Teena +Tempest +Teressa +Thanh +Thuy +Thy +Tijera +Tirzah +Tony +Toree +Triana +Trudy +Tuyet +Tyisha +Uriel +Vaness +Vanna +Vernice +Vikki +Violette +Vivianne +Whitnee +Xaviera +Xia +Xitlali +Xotchil +Yadria +Yajayra +Yaminah +Yancy +Yennifer +Yoselyn +Yosselin +Yunuen +Zakia +Zenobia +Zina +Zoie +Zoya +Zuly +Jessica +Ashley +Stephanie +Jennifer +Elizabeth +Sarah +Samantha +Amanda +Maria +Vanessa +Nicole +Michelle +Melissa +Emily +Jasmine +Taylor +Lauren +Brittany +Rachel +Victoria +Danielle +Alexandra +Alyssa +Andrea +Kimberly +Megan +Alexis +Rebecca +Diana +Katherine +Brenda +Christina +Cynthia +Jacqueline +Kayla +Laura +Crystal +Alejandra +Amber +Natalie +Brianna +Hannah +Gabriela +Monica +Karen +Angelica +Ana +Erika +Marissa +Sara +Courtney +Chelsea +Veronica +Tiffany +Kelsey +Karina +Erica +Daisy +Nancy +Adriana +Amy +Cindy +Yesenia +Guadalupe +Cassandra +Briana +Heather +Kelly +Bianca +Mayra +Allison +Shelby +Jocelyn +Julia +Breanna +Sandra +Mary +Alexandria +Leslie +Sabrina +Angela +Anna +Kassandra +Shannon +Haley +Olivia +Alicia +Claudia +Christine +Evelyn +Jazmin +Catherine +Wendy +Morgan +Patricia +Kaitlyn +Brooke +Priscilla +Jasmin +Erin +Monique +Karla +Cristina +Rosa +Abigail +Valerie +Mariah +Paige +Caitlin +Jordan +Desiree +Madison +Jamie +Katie +Lisa +Joanna +Brittney +Denise +Lindsey +Daniela +Kristen +Katelyn +Jenna +Janet +Emma +Kathryn +Savannah +Melanie +Isabel +Kristina +Linda +Sierra +Tania +Ariana +Cheyenne +Liliana +Alexa +Julie +April +Ruby +Raquel +Gabrielle +Vivian +Valeria +Jazmine +Krystal +Cecilia +Grace +Destiny +Esmeralda +Sophia +Katrina +Lindsay +Carolina +Kathleen +Jenny +Sydney +Marisa +Hayley +Sonia +Marlene +Chloe +Martha +Miranda +Tanya +Leticia +Dominique +Gloria +Teresa +Madeline +Marina +Marisol +Lorena +Miriam +Yvette +Alma +Carmen +Ariel +Susana +Maritza +Holly +Blanca +Kaitlin +Carla +Gabriella +Hailey +Beatriz +Molly +Angelina +Jeanette +Giselle +Mackenzie +Leah +Alison +Gina +Maribel +Mercedes +Caroline +Jade +Camille +Justine +Viviana +Whitney +Audrey +Kristin +Meghan +Araceli +Carina +Deanna +Margarita +Naomi +Ashlee +Margaret +Summer +Natasha +Tatiana +Rachael +Tara +Carly +Michaela +Rocio +Yvonne +Rebekah +Thalia +Claire +Perla +Yadira +Felicia +Lizbeth +Mariana +Marilyn +Susan +Edith +Brandi +Bethany +Tori +Irene +Heidi +Cristal +Dana +Angel +Elena +Sandy +Jillian +Kendra +Ruth +Sharon +Clarissa +Genesis +Noemi +Paulina +Yolanda +Janelle +Adrianna +Esther +Isabella +Krista +Stacy +Dulce +Berenice +Sofia +Caitlyn +Tina +Yaritza +Nichole +Zoe +Bailey +Helen +Maya +Casey +Juliana +Kathy +Kendall +Lucia +Mariela +Celeste +Jaclyn +Jacquelyn +Kylie +Arlene +Fabiola +Griselda +Roxana +Eva +Kara +Kaylee +Yasmin +Judith +Renee +Tyler +Celina +Lydia +Norma +Allyson +Annie +Kirsten +Virginia +Carolyn +Marie +Iris +Pamela +Stacey +Reyna +Silvia +Theresa +Alisha +Stephany +Serena +Amelia +Candice +Elaine +Lizette +Alissa +Nina +Paola +Melody +Alice +Charlotte +Daniella +Josephine +Luz +Tamara +Tiana +Yessenia +Anne +Arianna +Jessie +Meagan +Kiara +Autumn +Diane +Elisa +Ashleigh +Bridget +Candace +Chelsey +Devon +Darlene +Karissa +Carissa +Johanna +Melinda +Nicolette +Tessa +Brandy +Ciara +Aimee +Lily +Barbara +Kiana +Anissa +Janette +Deborah +Selina +Lizeth +Sylvia +Sheila +Gladys +Hanna +Lucero +Raven +Fatima +Rose +Connie +Natalia +Paula +Angie +Cierra +Tracy +Breana +Britney +Maricela +Angelique +Cassidy +Ellen +Francesca +Kristine +Faith +Maira +Irma +Kelli +Colleen +Roxanne +Sally +Aurora +Jane +Clara +Elise +Kellie +Sasha +Elisabeth +Jaqueline +Rebeca +Aubrey +Christian +Nadia +Selena +Viridiana +Graciela +Hillary +Nayeli +Selene +Alana +Madeleine +Lacey +Magdalena +Rachelle +Chanel +Corina +Michele +Nathalie +Ingrid +Katelynn +Marisela +Melina +Mia +Diamond +Ivette +Juana +Tayler +Ericka +Ivonne +Robin +Savanna +Tabitha +Adrienne +Giovanna +Joana +Larissa +Iliana +Bria +Kenia +Lucy +Mallory +Alina +Brenna +Bryanna +Mai +Riley +Shirley +Eileen +Frances +Mikayla +Chandler +Itzel +Lillian +Asia +Donna +Estefania +Nikki +Jordyn +Sarai +Shawna +Celia +Genevieve +Regina +Shanice +Coraima +Yazmin +Ashlyn +Kate +Lourdes +Rosario +Alexia +Carol +Kelsie +Noelle +Alondra +Anita +Nataly +Rubi +Taryn +Annette +Janice +Kira +Aileen +Ebony +Fernanda +Joanne +Talia +Kristy +Mckenna +Salina +Alexus +Bertha +Lorraine +Simone +Sonya +Devin +Toni +Adilene +Cinthia +Joselyn +Arielle +Jaime +Juanita +Lidia +Rita +Alisa +Beverly +Desirae +Kyra +Nora +Ann +Ivy +Joyce +Julianne +Kaila +Robyn +Sophie +Trisha +Catalina +Cheyanne +Christy +Belinda +Jeannette +Kasey +Bridgette +Mikaela +Pauline +Katharine +Mckenzie +Mireya +Stefanie +Tammy +Chantal +Destinee +Georgina +Shayla +Alyson +Anahi +Belen +Danica +Delia +Estefani +Leilani +Rosemary +Vanesa +Bonnie +Cassie +Esperanza +Reina +Rochelle +Aracely +Brianne +Chelsie +Corinne +Dalia +Grecia +Janae +Jennie +Magaly +Ryan +Anastasia +Casandra +Chantel +Dolores +Flor +Olga +Yajaira +Anais +Athena +Hilda +Hope +Charlene +Jacklyn +Makayla +Maricruz +Judy +Laurel +Bernadette +Cara +Carrie +Julianna +Layla +Nadine +Paris +Shayna +Brianda +Deyanira +Dianna +Joy +Kenya +Lesly +Vicky +Delaney +Kailey +Melisa +Micaela +Ciera +Eunice +Isamar +Lisette +Misty +Paloma +Suzanne +Tess +Areli +Beatrice +Debbie +Luisa +Precious +Yessica +Dorothy +Lena +Sherry +Breanne +Cathy +Damaris +Demi +Elsa +Josefina +Katarina +Kayleigh +Leanne +Lupita +Maggie +Betsy +Callie +Cortney +Eliza +Evelin +Jessenia +Jessika +Kyla +Lilian +America +Arely +Gianna +Haylee +Lesley +Magali +Myra +Alanna +Antoinette +Dakota +Daniel +Janine +Leanna +Moriah +Roxanna +Scarlett +Yasmine +Brittani +Candy +Isabelle +Janessa +Julissa +Kari +Kristi +Lissette +Marlena +Sadie +Xiomara +Alexandrea +Eden +Janeth +Karly +Katlyn +Kelley +Kylee +Lilia +Tiara +Verenice +Yoselin +Coral +Kaitlynn +Kasandra +Marcella +Shaina +Tiffani +Anabel +Celine +Denisse +Madelyn +Alexander +Alysha +Anjelica +Christa +Consuelo +Haleigh +Imani +Jovanna +Marcela +Mindy +Randi +Celene +Dayana +Eliana +Elvia +Emilie +Estefany +Jackie +Mariel +Azucena +Christie +Darian +Elvira +Emely +Emilee +Kristie +Nia +Tianna +Xochitl +Eleanor +Elyse +Lynn +Savanah +Serina +Dallas +Estela +Faviola +Jesenia +Jovana +Katelin +Kristal +Lea +Marielena +Mirian +Stefani +Tracey +Bernice +Dina +Domonique +Hailee +Jaimie +Jesse +Krysta +Maxine +Michael +Rosalinda +Ashlie +Ashly +Francine +Hazel +Jocelin +Josie +Juliet +Justina +Kali +Kelsea +Lara +Macy +Marlen +Thania +Antonia +Betty +Joselin +Lina +Nelly +Yanira +Yasmeen +Yesica +Ava +Avery +Breeanna +Christiana +Devyn +Emilia +Geraldine +Glenda +Jackeline +Liana +Mariam +Skye +Stella +Tasha +Tawny +Violeta +Alex +Amalia +Andreina +Brandie +Isela +Jazmyn +Jose +Joseline +Kaylyn +Nallely +Valentina +Bobbie +Cayla +Daphne +Deja +Dylan +Francisca +Heidy +Ilse +Jesica +Kim +Kourtney +Lizet +Mirna +Pa +Rhiannon +Stevie +Tia +Adela +Amairani +Ashlynn +Brigitte +Bryana +Carley +Ileana +Jocelyne +Johana +Kaley +Kiley +Makenzie +Sade +Vannessa +Zaira +Zulema +Abby +Aisha +Cheryl +Dora +Edna +Fiona +Hallie +Jenifer +Jesus +Kaylie +Lori +Lynette +Mandy +Mara +Rikki +Rosio +Shelly +Alysia +Gladis +Hana +Ivana +Jill +Kaylin +Kierra +Loren +Monika +Noel +Alba +Alysa +Astrid +Brook +Cameron +Gisela +Gisselle +Helena +Hilary +Jonathan +Joshua +Kaela +Lisbeth +Maryann +Nayely +Rosie +Terra +Tricia +Violet +Alejandro +Anthony +Blair +Breann +Celena +Dawn +Doris +Estrella +Georgia +Karli +Kelsi +Leila +Lexus +Mollie +Phoebe +Pricilla +Reanna +Shyanne +Sidney +Tanisha +Yaneli +Allie +Angeline +Cecelia +Cristian +Elsie +Jamila +Janel +Jena +Joan +Joelle +Kiersten +Kimberley +Lacy +Makenna +Malia +Marianna +Maureen +Meredith +Pearl +Skylar +Tiffanie +Chantelle +Corinna +Davina +Debra +Deisy +Elva +Jannet +Jolene +Lyndsey +Meaghan +Monserrat +Nikole +Raylene +Shauna +Stacie +Adrian +Amaris +Anyssa +Aubree +Becky +Charity +Christopher +Clare +Dayna +Fanny +Frankie +Janell +Katerina +Katy +Kristyn +Leann +Ofelia +Payton +Sage +Shana +Skyler +Soledad +Tatyana +Abril +Anisa +Carlie +Danika +Evangelina +Jacquelin +Karlee +Kimberlee +Krystina +Mirella +Tierra +Unique +Vianca +Yareli +Alaina +Alessandra +Anakaren +Ani +Annamarie +Brandon +Dania +David +Destiney +Elia +Francis +Jana +Kacey +Karley +Karlie +Kianna +Kiera +Marian +Mitzi +Sarahi +Shelbi +Staci +Yahaira +Yanet +Aida +Aundrea +Brea +Britany +Chante +Chrystal +Cori +Elissa +Eryn +Estephanie +Halle +Hollie +Hunter +Juliette +Kacie +Krystle +Marla +Marlyn +Marta +Martina +Raina +Trina +Trinity +Ambar +Angeles +Bree +Breonna +Cinthya +Corey +Deana +Dianne +Geneva +India +Jasmyn +Joann +Kia +Korina +Logan +Niki +Rosangelica +Salena +Saray +Sarina +Shantel +Vianey +Winnie +Ada +Anayeli +Annabel +Ashton +Bianka +Darcy +Gabriel +Jean +Josselyn +Khadijah +Lana +Maia +Marilu +Maura +Natali +Venessa +Brittanie +Brittni +Danae +Drew +Elaina +Erendira +Gema +Gillian +Gwendolyn +Hali +Karena +Kendal +Keri +Kevin +Kirstin +Lauryn +Marianne +Nathaly +Nicholas +Priscila +Rayna +Rosalba +Samara +Scarlet +Shawnee +Sheena +Susie +Tonya +Andrew +Anika +Annelise +Breeana +Brisa +Briseida +Chanelle +Constance +Ella +Iman +Janie +Jayme +Jenae +Joseph +Kathrine +Kaylah +Kerry +Kristian +Lilly +Liza +Manuela +Michell +Mina +Nou +Richelle +Therese +Vicki +Alena +Anai +Anamaria +Andria +Ayana +Ayla +Brittnee +Camila +Camilla +Carli +Catrina +Cherish +Corrine +Dalila +Desire +Ellie +Eloisa +Imelda +Ines +Kaycee +Lizabeth +Luis +Mildred +Minerva +Mona +Nidia +Robert +Rosalie +Rosemarie +Shanelle +Shanna +Shea +Sydnee +Tabatha +Tatianna +Alix +Alycia +Annalisa +Annemarie +Austin +Ayanna +Brittaney +Chelsi +Cintia +Corrina +Crysta +Devan +Elisha +Elyssa +Emerald +Fallon +Gemma +Jannette +Jodi +Jodie +Keila +Leandra +Leonor +Lizbet +Maegan +Marjorie +Maryam +Milan +Nanci +Nikita +Peyton +Roberta +Rylee +Shannen +Sienna +Thelma +Valarie +Aja +Alayna +Ali +Allegra +Allyssa +Amie +Analisa +Anel +Ariella +Asha +Audra +Brooklyn +Cambria +Carlee +Cherie +Delilah +Denice +Dominque +Frida +Harmony +Heaven +Isis +Ivanna +James +Jazzmin +Jessi +Jourdan +Juan +Kalyn +Karin +Lia +Lilliana +Macie +Maddison +May +Melyssa +Nubia +Sahar +Shelley +Tracie +Xochilt +Yoana +Aaron +Angelita +Arianne +Billie +Brittny +Christal +Cora +Daysi +Desiray +Evette +Gisell +Jackelyn +Jaycee +Jeannie +Kailyn +Karolina +Kassidy +Kaylene +Keisha +Kirstie +Kori +Latasha +Laurie +Lisset +Lupe +Madalyn +Merissa +Mimi +Nicollette +Noemy +Shelbie +Sonja +Stephani +Suzanna +Aleena +Alejandrina +Brielle +Brigette +Brionna +Colette +Danna +Dennise +Eve +Farrah +Harley +Iesha +Jaquelin +Jazzmine +Jenelle +Katheryn +Katia +Katlin +Kayley +Kaylynn +Linnea +Liset +Mari +Marilynn +Markie +Mayte +Miguel +Mikala +Monet +Pilar +Racheal +Racquel +Raelene +Shaniece +Spencer +Susanna +Symone +Thea +Torrey +Tyra +Alia +Anastacia +Anisha +Annabelle +Christen +Cory +Danya +Dorian +Eleni +Franchesca +Geena +Inez +Jaimee +Janay +Janett +Jocelynn +Jody +Justice +Lani +Latisha +Lee +Maci +Madisen +Maleny +Marcia +Mariaelena +Marlee +Matthew +Montana +Nohemi +Patrice +Patsy +Princess +Rebecka +Rena +Rhonda +Sabina +Saira +Savana +Sequoia +Stefany +Terry +Tiera +Traci +Vivianna +Yanely +Yuliana +Zuleima +Adelina +Alyse +Alyssia +Amani +Anaisa +Annika +Annmarie +Ashely +Baylee +Berenise +Brittnie +Charmaine +Christin +Clarisa +Daniele +Darlyn +Deidre +Elida +Felicity +Ginger +Gissel +Haylie +Janely +Jeniffer +Kelcie +Kyle +Lucinda +Lynda +Malinda +Malissa +Maranda +Marley +Mellisa +Oralia +Priya +Renae +Rene +Rosalva +Rosanna +Ryann +Samira +Shante +Sindy +Socorro +Sydnie +Tawni +Tera +Terri +Vania +Addison +Aide +Allysa +Angelic +Antonio +Arcelia +Blake +Bobbi +Bronte +Bryan +Bryn +Carlos +Cathleen +Dani +Danyelle +Elizabet +Eric +Essence +Estella +Felisha +Giovana +Gracie +Gricelda +Halie +Isaura +Jaquelyn +Jeanine +Joycelyn +Julieta +Kailee +Kalene +Kalie +Karisa +Kaya +Leeann +Lila +Linh +Marika +Marion +Marleen +Meliza +Mercedez +Nicolle +Petra +Ramona +Rosalia +Rosamaria +Rosaura +Sharlene +Shyann +Veronika +Wanda +Zuleyma +Acacia +Amara +Antionette +Audriana +Audrianna +Ayesha +Bao +Brieanna +Bryce +Cari +Cesilia +Charissa +Chiara +Cody +Concepcion +Cruz +Deirdre +Francisco +Gretchen +Halley +Herlinda +Jacquelynn +Jamesha +Jami +Janna +Jaritza +Jazmyne +Jeanne +Jennyfer +Kayleen +Keana +Keely +Kenna +Laila +Latrice +Leigh +Marbella +Maricarmen +Maricella +Marleny +Marquisha +Marylou +Milagros +Myranda +Myriah +Noor +Presley +Rheanna +Rhianna +Shani +Sheyla +Siena +Sirena +Sommer +Stephaine +Steven +Teresita +Thao +Valery +Vannesa +Yuridia +Abbey +Amethyst +Amparo +Analise +Anessa +Aubrie +Aurelia +Britnee +Chandra +China +Claribel +Cydney +Danelle +Darby +Demetria +Eboni +Emmeline +Eugenia +Florence +Genessis +Geovanna +Hadley +Haydee +Ilene +Ivon +Izamar +Jasmyne +Jayde +Juliann +Kaci +Kady +Kala +Kaleigh +Kandace +Keren +Kimberlyn +Klarissa +Kyleigh +Larisa +Lisbet +Lizett +Lucille +Lyndsay +Miracle +Nellie +Octavia +Oriana +Pooja +Quinn +Samatha +Samuel +Sana +Shae +Shawn +Sunny +Teri +Torri +Vilma +Yarely +Yecenia +Zayra +Amina +Andres +Andriana +Anjali +Aryana +Aspen +Aura +Beth +Brian +Brooklynn +Cassaundra +Cassondra +Catarina +Chelsee +Dena +Elisabet +Elysia +Evan +Flora +Georgette +Gisel +Guillermina +Holland +Ilana +Ivett +Jayne +Jenessa +Jimena +Joceline +Joslyn +Julian +Kaylen +Kayli +Kaytlin +Keanna +Keara +Kennedy +Krysten +Lesli +Lianne +Lilianna +Lilibeth +Lora +Loretta +Louise +Lyanne +Makena +Maleni +Malina +Marcelina +Myriam +Nereida +Nhi +Porsha +Regan +Rhea +Rio +Sammantha +Sayra +Shari +Sheng +Shianne +Shivani +Siomara +Soraya +Stephania +Synthia +Taelor +Tatum +Vera +Vickie +Yer +Agnes +Alexys +Amairany +Amira +Angelia +Anh +Antonette +Ariane +Arika +Arin +Arleen +Aryn +Ashlea +Avalon +Cathryn +Cherise +Cindi +Dayanna +Delanie +Delmy +Destany +Destini +Deysi +Estephany +Evangeline +Farah +Gardenia +Giana +Hector +Holli +Jacob +Jalisa +Jamee +Jayla +Jaymee +Joselyne +Ka +Kalia +Kellee +Kenzie +Kiah +Kindra +Kirby +Kyrsten +Lacie +Lakeisha +Leeza +Lizzette +Lois +London +Louisa +Mabel +Macey +Magda +Margo +Mariella +Marlin +Marrisa +Melany +Mellissa +Micah +Misha +Natalee +Neha +Nichelle +Penelope +Raelynn +Rayleen +Ronni +Rosana +Roselyn +Sean +Shantal +Sheri +Sheridan +Siobhan +Sulema +Tarah +Valencia +Vy +Wendi +Winter +Xenia +Yuri +Zoey +Zully +Adria +Akilah +Alesha +Amberly +Annalise +Araseli +Aria +Ashli +Babygirl +Bella +Biridiana +Breauna +Breeann +Bridgett +Britni +Cady +Carmelita +Casie +Channel +Charlie +Chasity +Chastity +Chaya +Chelsy +Chyna +Colby +Corrie +Courtnie +Crista +Cristine +Cristy +Dalena +Daria +Deandra +Deena +Deidra +Denae +Denisha +Doreen +Fernando +Haily +Isabela +Ivory +Jada +Janelly +Javier +Jazmen +Jessalyn +Jessyca +John +Jolie +Jordin +Kai +Kalina +Kandice +Karyn +Kassie +Katalina +Katharina +Keyana +Kimber +Kirstyn +Kortney +Lexi +Lucila +Malaysia +Malena +Malika +Margot +Mariaguadalupe +Marysol +Maryssa +Mckayla +Meghann +Mitzy +Miya +Morgen +Myrna +Nelida +Nereyda +Nika +Nisha +Nydia +Paulette +Rae +Rebeka +Ricardo +Rina +Romina +Rosalina +Sandi +Sarena +Serenity +Shane +Sheryl +Shira +Shyla +Stephenie +Sue +Tamika +Thanya +Yara +Yazmine +Yocelin +Zahra +Aislinn +Alannah +Alexi +Alisia +Aliya +Amari +Analicia +Andie +Anjanette +Arlette +Beatris +Brandee +Caitlynn +Camryn +Carisa +Celestina +Choua +Clarisse +Corrin +Dannielle +Deisi +Deziree +Edgar +Elana +Elexis +Elexus +Elle +Ernestina +Estrellita +Greta +Ivan +Jennica +Jenniffer +Johnnie +Joleen +Jonelle +Jorge +Julisa +June +Kacy +Kadijah +Kaelyn +Karely +Karlene +Kati +Kendyl +Kenisha +Kerri +Keshia +Keyla +Kimberlin +Kinsey +Kymberly +Lai +Liberty +Liseth +Lissa +Lisseth +Liz +Lluvia +Lorna +Marguerite +Marilin +Marin +Marrissa +Mayela +Monzerrat +Nicola +Rachell +Raeann +Raechel +Rayven +Rebekkah +Remy +Rosalyn +Samanta +See +Shay +Sky +Stacia +Starr +Sunshine +Suzette +Tamra +Tanner +Tien +Vianney +Victor +William +Yamilet +Yovanna +Zakiya +Zuri +Abriana +Adrianne +Aleida +Alexxis +Aliza +Alva +An +Annissa +Anya +Ashanti +Asucena +Autum +Avigail +Aya +Briauna +Carleen +Carmela +Carson +Caylee +Charisse +Chyanne +Chynna +Clarice +Collette +Corayma +Corine +Courtnee +Daisey +Dejanae +Der +Dinora +Dionne +Elayne +Emmy +Enedina +Genna +Giuliana +Halee +Hayleigh +Ida +Imari +Indira +Jalissa +Janneth +Jenine +Jerica +Jessa +Jessy +Jewel +Joey +Johnisha +Johnna +Jordon +Justin +Kaeli +Kalani +Kalena +Kalynn +Kami +Katelynne +Katey +Kathryne +Kay +Kelsee +Krystin +Lachelle +Laci +Lakisha +Leeanna +Leesa +Leonela +Lianna +Marci +Marcy +Margie +Mariadejesus +Marielle +Marlina +Martin +Marycruz +Melodie +Mercy +Michaella +Mitchell +Montserrat +Nathalia +Neida +Nicholle +Noelia +Oscar +Phyllis +Quiana +Rafael +Ricki +Roseanne +Sahara +Sariah +Shayne +Solmayra +Sterling +Suleyma +Tavia +Taylar +Trista +Yovana +Zuleika +Zulma +Abrianna +Adele +Aiyana +Aleah +Alexsandra +Ally +Alora +Amada +Analilia +Andreana +Angelika +Annel +Anneliese +Ashtyn +Berlin +Blaire +Breyana +Briann +Brynn +Brynne +Carolynn +Cecily +Cesia +Channing +Christi +Danesha +Darrian +Debora +Delores +Deseree +Destanie +Devina +Dionna +Eduardo +Evelynn +Frank +Gena +Geovana +Hellen +Houa +Idalia +Jackelin +Janina +Jaspreet +Jeana +Jenni +Jessyka +Joandra +Johannah +Josephina +Jossie +Kacee +Kandyce +Karol +Kathlyn +Kattie +Katya +Kelcey +Keyanna +Kiarra +Kimiko +Koraima +Kristiana +Kylene +Kyrie +Lacee +Lashae +Leana +Leia +Leslye +Lexie +Ligia +Lilit +Lindy +Linsey +Lynsey +Ma +Maile +Mandi +Marine +Marinna +Marivel +Meranda +Merari +Merlina +My +Nicholette +Paisley +Penny +Phoenix +Portia +Rafaela +Reena +Regine +Rianna +Rona +Rosita +Rowan +Ryanne +Rylie +Sacha +Salma +Sapphire +Shaila +Shanae +Shaylee +Sherri +Shoshana +Sinai +Sondra +Staphany +Star +Steffany +Stepanie +Stephannie +Stormy +Tisha +Tonisha +Tony +Torie +Treasure +Tyana +Venus +Vivi +Xochil +Yaneth +Yoseline +Yoselyn +Zandra +Zenaida +Abilene +Adelaida +Adina +Adreanna +Aime +Alberto +Alecia +Aleksandra +Alexsis +Alexzandra +Alivia +Anabelle +Anahy +Annamaria +Argelia +Asma +Aysha +Berlyn +Bethanie +Bianey +Breena +Brissa +Brittanee +Bryanne +Cailey +Cameo +Carey +Carlene +Catelyn +Cayley +Chanice +Charles +Chee +Cherry +Chris +Chyenne +Ciana +Codie +Corin +Dallana +Dara +Dayanara +Deanne +Debby +Dejanee +Desirea +Divya +Dixie +Donisha +Ema +Ember +Emili +Erendida +Ester +Evelia +Gabby +Giovanni +Grisel +Gurpreet +Hailie +Haneen +Hortencia +Italia +Itzayana +Izabella +Jacelyn +Janea +Janee +Jeannine +Jenay +Jennefer +Jerrica +Jewell +Joi +Jordynn +Jovita +Julienne +Kadie +Kalen +Kalin +Kameron +Kamilah +Kamille +Kanisha +Kassaundra +Kathya +Katlynn +Kaylan +Keiana +Keilani +Kelsy +Keyona +Kimberli +Kimberlie +Kyara +Lashawn +Leena +Leona +Linette +Lisett +Livier +Lorin +Lorissa +Lynnette +Lynzee +Madelaine +Madelin +Magen +Makala +Mallorie +Marialuisa +Mario +Maritsa +Mariya +Marshay +Maryjane +Mattie +Mayan +Melia +Micayla +Mika +Milena +Myesha +Myisha +Parisa +Patrick +Patty +Peggy +Prescilla +Raeanne +Raelyn +Raya +Rayanne +Rebekka +Richard +Roberto +Rosangela +Rossy +Saida +Saige +Sarafina +Savina +Seidy +Selenia +Shavon +Shavonne +Shireen +Shiva +Sia +Siera +Silva +Steffanie +Susannah +Tailor +Tana +Tawnie +Teanna +Tenaya +Theodora +Thuy +Tiarra +Tierney +Tonia +Torey +Tory +Tran +Tristan +Tuesday +Tyla +Vivianne +Vivien +Yarelyn +Yisel +Yoandra +Yohana +Zachary +Zeinab +Zenia +Zoila +Zuleyka +Adeline +Agustina +Alixandra +Allissa +Alonna +Alyshia +Alysse +Alyx +Amal +Amrita +Anabella +Anamarie +Anay +Annaliese +Anny +Armani +Ashlei +Azalea +Bailee +Belle +Benjamin +Bonita +Brett +Brieana +Caitlan +Calista +Candelaria +Caprice +Caren +Carolann +Chantell +Chardonnay +Charis +Charleen +Chong +Christianna +Coryn +Cosette +Cyndy +Daniell +Darci +Darien +Darlin +Dawna +Della +Demitria +Desteny +Dyanna +Ebone +Echo +Eloise +Elora +Emalee +Emelyn +Emi +Ena +Erynn +Estefanie +Estephania +Gaby +Gerardo +Gianni +Gigi +Gissell +Glory +Henry +Hien +Ikea +Ilda +Irais +Jacqlyn +Jacquelyne +Jahaira +Jalyn +Janaye +Jasmen +Jaylene +Jaymie +Jazlyn +Jeanna +Jenise +Jesika +Joel +Joline +Jordana +Jorden +Josette +Kailani +Kailie +Kalee +Kallie +Karine +Karmen +Karrie +Karyna +Kasie +Kassi +Kathia +Kaycie +Kaytlyn +Keilah +Keira +Kelci +Kemberly +Kierstin +Kiran +Kirra +Kyanna +Kyndra +Lashanae +Leighann +Liane +Lisamarie +Lissete +Lizzeth +Loreal +Lucrecia +Luna +Lusine +Lynsie +Lysandra +Madelyne +Madyson +Maeve +Magnolia +Maite +Manpreet +Manuel +Marcie +Marily +Marisabel +Markisha +Marleni +Marsha +Maryah +Maryanne +Marykate +Marylin +Melonie +Merlyn +Midori +Mikaila +Miryam +Monae +Monisha +Monserat +Myla +Myrissa +Nakia +Nalani +Nalleli +Natalya +Nely +Nerissa +Nickole +Nida +Noelani +Oliva +Panhia +Patience +Piper +Rashelle +Rashida +Raul +Rawan +Rayann +Reanne +Reba +Reema +Renata +Risa +Ronisha +Roseanna +Roslyn +Saba +Sanam +Sanjuana +Santana +Sarahy +Sarrah +Sergio +Shanda +Shanell +Shanika +Shanise +Shantelle +Shara +Shardae +Sharde +Shasta +Shereen +Soleil +Suleima +Sumer +Sydni +Talya +Tamar +Tarra +Tarryn +Tawnya +Trang +Tyesha +Ursula +Vi +Vianka +Viktoria +Willow +Yael +Yaquelin +Yunuen +Abbie +Adelaide +Aditi +Aissa +Alea +Alexie +Allyn +Almarosa +Alvina +Amayrani +Ami +Aminah +Anagabriela +Analaura +Andraya +Anette +Angelene +Anicia +Anise +Arabella +Arantxa +Ariadna +Ariela +Arriana +Aryanna +Ashia +Ashlan +Ashleynicole +Ashlynne +Asley +Asusena +Asya +Aysia +Azusena +Breona +Britnie +Brogan +Byanca +Byanka +Cailin +Cailyn +Caley +Cami +Candi +Caressa +Caryn +Champagne +Charise +Cherelle +Cheyann +Ciarra +Citlaly +Connor +Cyndi +Dacia +Dahlia +Daicy +Darion +Darla +Darling +Darya +Daryl +Dasia +Davonna +Daysy +Denesha +Denia +Deonna +Destine +Destinie +Dian +Diandra +Dillon +Domenique +Dusty +Ebonee +Edlin +Edward +Edwin +Elda +Elina +Elysha +Emani +Emelie +Emiko +Emmalee +Erick +Erinn +Fabian +Fantasia +Fatimah +Felecia +Felipe +Fiorella +Gail +Gayle +Gessica +Ginny +Gissele +Gizelle +Grabiela +Grissel +Ha +Haili +Hanah +Harlee +Harpreet +Hayden +Hong +Isabell +Jacklynn +Jaclynn +Jacqulyn +Jael +Jaimi +Jakeline +Jaleesa +Jameela +Janele +Janiece +Janis +Jasleen +Jaymi +Jeanie +Jelena +Jenee +Jenice +Jennelle +Jensen +Jessicamae +Jesslyn +Joscelyn +Josselin +Josseline +Judit +Julieann +Jullian +Kaia +Kailah +Kaiya +Kamryn +Kandy +Karem +Karisma +Katharyn +Katherin +Kathlene +Katilyn +Katryna +Kayleena +Kellen +Kenneth +Kennya +Keona +Korey +Kymberlee +Lakendra +Lane +Lanette +Lanie +Latoya +Laurissa +Lela +Lenora +Leyla +Libby +Lita +Livia +Lizzet +Lucerito +Luciana +Lynae +Lyssa +Mackenna +Madai +Malaika +Malisa +Malorie +Marco +Mariadelcarmen +Mariko +Marixa +Mariza +Markia +Martiza +Maryelizabeth +Marylynn +Maylin +Mckenzi +Mee +Miki +Milagro +Mira +Mykaela +Nadya +Nathali +Natividad +Navdeep +Nayelly +Nicki +Nicol +Nissa +Noah +Noreen +Nuvia +Omar +Pahola +Phuong +Prisma +Priyanka +Puneet +Quincy +Raquelle +Raveena +Rayanna +Raychel +Raynisha +Rebeccah +Remington +Rianne +Riki +Rosalind +Rosaline +Roshni +Ruben +Sabine +Sabra +Sahra +Sarin +Sarita +Serafina +Serene +Shannan +Shannel +Sharleen +Sharonda +Shavonna +Shaylene +Shaylynn +Sheree +Shiela +Shoua +Silvana +Simona +Siria +Skyla +Solana +Steffi +Storm +Susanne +Symphony +Tabbitha +Tajanae +Talisa +Tameka +Tannya +Tashawna +Tasia +Tatyanna +Tegan +Terrie +Teryn +Tesia +Tijera +Torrie +Travis +Uyen +Verenise +Vincent +Whitley +Ximena +Yang +Yasaman +Yeni +Yocelyn +Youa +Ysabella +Zaida +Zena +Zhane +Abagail +Abbigail +Abigayle +Adam +Adelene +Adreana +Adriane +Aidan +Aidee +Ainsley +Aisling +Ajia +Akila +Alan +Alaysia +Aleesa +Alesandra +Aline +Alise +Althea +Amanada +Anacaren +Analuisa +Analy +Andreya +Andy +Anjelika +Arlen +Arlin +Arline +Arlyn +Armando +Arrianna +Artisha +Aubrianna +Audree +Austyn +Ayah +Baleria +Banesa +Bee +Benita +Berniece +Bibiana +Bonny +Brianah +Briceida +Brigit +Briona +Britanie +Britta +Brittania +Brittini +Bronwyn +Caila +Cali +Calli +Camisha +Candyce +Carin +Carlina +Carmel +Carole +Catlin +Caylin +Celest +Celestine +Cera +Cesar +Chance +Chandni +Channa +Charisma +Chelcie +Cherokee +Cheyanna +Chi +Christiane +Chrystina +Citlali +Corie +Coty +Cyerra +Danisha +December +Denis +Destani +Deven +Devonna +Dezirae +Diego +Dinah +Dominga +Dominic +Dori +Dorothea +Dyana +Elba +Elianna +Elisheva +Ellesse +Emmanuel +Eriana +Erik +Erina +Erlinda +Estelle +Esthela +Eulalia +Evelina +Eveline +Everlyn +Evie +Evonne +Florencia +Francia +Gabriell +Garrett +Gayane +Genevie +Genisis +Genoveva +George +Georgianna +Georgie +Geselle +Gilda +Guiselle +Haidee +Hattie +Helene +Henna +Hermelinda +Indiana +Indigo +Irie +Isa +Isaac +Israel +Ixchel +Jacky +Jacquline +Jadira +Jalynn +Jalyssa +Jameelah +Jamela +Jammie +Janai +Janira +Janisha +Jannelle +Jasmina +Jaya +Jayda +Jayna +Jazzmyn +Jeanelle +Jenell +Jenica +Jennah +Jessamyn +Jesseca +Jhoana +Johnny +Jonae +Jori +Josefa +Julieanne +Kabao +Kaili +Kaily +Kaleen +Kaleena +Kandis +Karah +Karie +Karishma +Karmina +Karolyn +Kashmir +Kassondra +Kateri +Kathie +Katty +Kaytlynn +Kc +Keeley +Kellyn +Kenny +Kerrie +Khalilah +Kiani +Kierstyn +Kimberely +Kimia +Kitty +Kiyana +Krisha +Kristan +Kristel +Kyli +Laina +Lanae +Lanisha +Larena +Lashay +Lawren +Layne +Leeanne +Leigha +Leora +Liezl +Lili +Lillie +Lissett +Lizzett +Lolita +Loraine +Lorie +Lorraina +Lory +Luzmaria +Lynne +Mackenzi +Madalynn +Madelene +Madelynn +Makaela +Manisha +Mao +Marena +Margaux +Margret +Mariaisabel +Marisha +Markesha +Marlenne +Marybel +Marycarmen +Marylyn +Matilde +Mccall +Meg +Meggan +Mekayla +Melony +Melynda +Michela +Mikhaila +Min +Mirka +Mistica +Moncerrat +Morganne +Mya +Myrka +Nadeen +Nai +Nailah +Naomy +Nayelli +Negin +Nessa +Nikia +Nisa +Nour +Nyssa +Odalys +Ophelia +Page +Pallavi +Peri +Perlita +Perri +Phylicia +Porscha +Porsche +Puja +Rachelann +Rachele +Reagan +Reilly +Remi +Renisha +Rian +Riane +Rima +Rivka +Robbie +Ronesha +Roni +Ronnie +Rosaisela +Roselia +Rosenda +Rowena +Roya +Rudi +Ryane +Sabreena +Saleena +Sareen +Sascha +Selin +Shai +Shalisa +Shalon +Shalynn +Shandi +Shanee +Shanel +Shania +Shaniqua +Shanique +Shantell +Shaquille +Sharee +Sharron +Shaunice +Shaylyn +Sherice +Sherilyn +Sheyenne +Shian +Shyanna +Siara +Sindi +Sinead +Sloane +Sol +Sonam +Special +Stefania +Stephen +Stormie +Subrina +Sunni +Suzana +Suzie +Taira +Taja +Takara +Tala +Taleen +Talin +Talor +Tamera +Tammie +Tanesha +Taniya +Tannia +Taralyn +Tatiyana +Teal +Tereza +Terilyn +Tesla +Tessie +Tiare +Tomi +Tristen +Tyanna +Tylar +Tylyn +Vaness +Veronique +Vivienne +Wednesday +Willa +Yanelly +Yanina +Yenifer +Yenny +Yeraldin +Yoanna +Yohanna +Yosselin +Ysabel +Yuritzy +Yury +Abigael +Abigale +Adara +Adelita +Adelyn +Adi +Adrina +Agueda +Ahsley +Akasha +Alberta +Alesia +Alessa +Alexas +Alexzandria +Aleyda +Aliah +Alida +Alishia +Alixandria +Aliyah +Allen +Alyce +Alyssamarie +Alyxandra +Amandeep +Amanpreet +Amaya +Amrit +Anabell +Anaiz +Anali +Anarosa +Andrina +Angelie +Angellica +Angelyn +Anum +Any +Apryl +Arian +Arisa +Arlet +Armida +Arpi +Ashlen +Ashliegh +Atenas +Aubry +Audrina +August +Aundria +Austen +Avelina +Averi +Aviana +Avilene +Ayerim +Azia +Bahar +Berenis +Betsabe +Bliss +Breahna +Breiana +Brendan +Brennan +Breyanna +Briannah +Brigida +Brihana +Brionne +Britani +Britny +Brittanny +Brittiny +Bryanda +Brynna +Callan +Candida +Candie +Caralyn +Carleigh +Carlena +Carlyn +Carmella +Carrisa +Carrissa +Cassey +Cassia +Caterina +Caylie +Cecile +Celinda +Cerena +Cerina +Chabeli +Chana +Chelby +Cheng +Cheri +Cherice +Chevelle +Christianne +Chrysta +Cianna +Cicely +Clair +Claudine +Codi +Cortnee +Corynn +Cyrena +Dafne +Dajanae +Danette +Danitza +Danny +Danyell +Darline +Darnisha +Dayanira +Deicy +Delena +Delmi +Denika +Denys +Denyse +Deshonna +Destanee +Desteni +Devonne +Diamante +Diem +Diva +Donya +Drucilla +Dulse +Ebonie +Eli +Elika +Elizeth +Ellery +Elly +Ellyn +Elma +Elza +Emeli +Emelia +Emery +Emilyann +Emoni +Enrique +Erikka +Eryka +Esteban +Evin +Evy +Ezra +Fabiana +Falicia +Fannie +Farm +Faustine +Fidelia +Franki +Gabiela +Gennesis +Gennifer +Georgiana +Gerald +Gianina +Gissela +Graviela +Gudalupe +Guillermo +Guinevere +Haile +Han +Hang +Hanh +Hannan +Harleen +Harper +Heavenly +Heba +Heena +Hena +Herminia +Hoa +Holley +Hosanna +Hugo +Huong +Ian +Idania +Ilce +Ilyssa +Ina +Iqra +Irlanda +Isaiah +Ivania +Iveth +Jacey +Jaci +Jacie +Jacinda +Jackline +Jacquelynne +Jacquiline +Jahna +Jaida +Jalen +Jalessa +Jamia +Jamilah +Jamine +Jamisha +Janetta +Janisa +Janise +Janita +Jannett +Jarely +Jason +Jassmine +Jaynee +Jazz +Jeaneth +Jelisa +Jenah +Jenevieve +Jennae +Jerika +Jerri +Jerusalem +Jhoanna +Jianna +Jiselle +Jissel +Joaquina +Jocely +Jodeci +Johna +Jonna +Jordann +Jorgina +Joselynn +Juli +Julieanna +Julio +Kabrina +Kaelah +Kaelee +Kaelie +Kaelin +Kailin +Kaira +Kalah +Kaleah +Kally +Kana +Kandie +Karianne +Karime +Karis +Karleen +Karoline +Kasaundra +Kasi +Kasia +Kasondra +Katerin +Katheryne +Katrice +Katrin +Katryn +Kayce +Kaydee +Keianna +Keiara +Keiko +Keli +Kendahl +Khadija +Khalia +Khayla +Khristina +Kiona +Kionna +Kiri +Kirsti +Kisha +Kiya +Kodi +Kolby +Korin +Korissa +Kortni +Kortnie +Kory +Koryn +Kristell +Kristianna +Kristyna +Krystine +Kyana +Kylah +Ladonna +Lady +Laine +Lainey +Lan +Laneisha +Laney +Laryssa +Lashell +Latanya +Laticia +Latonya +Lauran +Lavinia +Leiana +Leonora +Lesslie +Letty +Lian +Lindsee +Lisha +Lizvette +Lola +Lorelei +Lorenia +Lorina +Luiza +Lusero +Lyndsie +Lysette +Maciel +Madalena +Mae +Magally +Magdalene +Maha +Maisie +Maleah +Maly +Malyssa +Marcos +Maren +Mariajose +Marilee +Marili +Marita +Marizol +Mark +Marlaina +Marquelle +Marquita +Marriah +Martika +Marygrace +Marykatherine +Marylu +Maryrose +Maurissa +Mckinley +Mckinzie +Mecca +Meera +Megha +Mei +Meilani +Mele +Melena +Merina +Merisa +Mica +Mikia +Mila +Milana +Millie +Mireille +Miriah +Miroslava +Misa +Mishelle +Mitchelle +Moana +Moira +Myeisha +Nada +Nana +Nandi +Nanette +Natassia +Navneet +Neda +Neftali +Neli +Nichele +Nicoleanne +Nikkole +Nikolette +Nirvana +Nita +Noami +Nohemy +Nona +Nycole +Odelia +Olive +Osiris +Pahoua +Pakou +Paradise +Paxton +Payal +Pearla +Piedad +Porcha +Precilla +Pricila +Queenie +Rabecca +Rachyl +Racine +Radhika +Raeanna +Raeven +Raisa +Randa +Randy +Ranisha +Raylena +Raynesha +Rebecah +Reem +Relina +Reylene +Ria +Rickie +Robynn +Roger +Roseann +Rosibel +Rosy +Roxsana +Rubie +Rudy +Rut +Ryanna +Sabryna +Safa +Saima +Sallie +Salvador +Samari +Samia +Sandeep +Sawyer +Saya +Seaira +Sedona +Sejal +Selah +Selenne +Sera +Shabnam +Shadae +Shakia +Shalene +Shamari +Shanon +Shanti +Shanyn +Sharae +Sharie +Sharmaine +Sharnell +Shealyn +Shela +Sherlyn +Sheyanne +Shreya +Sindia +Sneha +Somalia +Somer +Song +Sonora +Sophy +Spenser +Starla +Stephane +Steve +Stevi +Sulma +Syeda +Tabita +Tai +Tali +Taline +Tam +Tami +Tamlyn +Tanika +Tashiana +Tatjana +Tayla +Taylin +Taylore +Taylyn +Teana +Thi +Thuytien +Tiarah +Tiffaney +Timothy +Titianna +Tosha +Trena +Trenisha +Triana +Trinh +Tristin +Tyresha +Valentine +Valeri +Van +Vanity +Vanna +Velma +Venezia +Verna +Vianna +Viviane +Wesley +Windy +Xandria +Xitlali +Yajayra +Yanette +Yarissa +Yarithza +Yarixa +Yasamin +Yasmina +Yennifer +Yevette +Yobana +Yoko +Yosselyn +Yudith +Yuna +Zara +Zina +Zoraida +Zoua +Zoya +Zuleica +Zuly +Jessica +Ashley +Stephanie +Jennifer +Samantha +Elizabeth +Sarah +Amanda +Emily +Nicole +Vanessa +Maria +Kimberly +Jasmine +Melissa +Michelle +Taylor +Alexis +Lauren +Danielle +Rachel +Megan +Victoria +Alyssa +Andrea +Alexandra +Diana +Brittany +Jacqueline +Brianna +Kayla +Hannah +Rebecca +Natalie +Katherine +Monica +Gabriela +Brenda +Alejandra +Christina +Laura +Crystal +Cynthia +Marissa +Amber +Angelica +Tiffany +Karina +Sara +Ana +Courtney +Karen +Nancy +Veronica +Daisy +Adriana +Erica +Cassandra +Erika +Yesenia +Kelsey +Jocelyn +Guadalupe +Amy +Allison +Madison +Julia +Haley +Anna +Kelly +Morgan +Leslie +Briana +Olivia +Angela +Sabrina +Alicia +Bianca +Chelsea +Cindy +Breanna +Heather +Alexandria +Abigail +Mayra +Mariah +Jasmin +Sierra +Jazmin +Priscilla +Sandra +Miranda +Evelyn +Mary +Shelby +Erin +Shannon +Monique +Destiny +Savannah +Claudia +Jordan +Christine +Kaitlyn +Emma +Karla +Brooke +Ariana +Patricia +Joanna +Sydney +Rosa +Desiree +Catherine +Wendy +Kristen +Valerie +Gabrielle +Jamie +Katelyn +Denise +Isabel +Alexa +Daniela +Janet +Jenna +Madeline +Paige +Cheyenne +Liliana +Brittney +Caitlin +Kathryn +Lisa +Carolina +Cristina +Lindsey +Jazmine +Sophia +Melanie +Katie +Grace +Julie +Kassandra +Marisa +Cecilia +Vivian +Ruby +April +Esmeralda +Kristina +Genesis +Gabriella +Kathleen +Paola +Dominique +Valeria +Krystal +Kaitlin +Raquel +Linda +Celeste +Marina +Chloe +Carmen +Hailey +Lorena +Marisol +Gloria +Teresa +Isabella +Jenny +Lindsay +Alma +Katrina +Marlene +Yvette +Martha +Angelina +Caroline +Natasha +Sonia +Summer +Audrey +Mackenzie +Holly +Viviana +Claire +Clarissa +Kylie +Tatiana +Hayley +Susana +Michaela +Miriam +Cassidy +Leticia +Maritza +Ariel +Molly +Itzel +Selena +Alison +Justine +Lizbeth +Jade +Maribel +Blanca +Arianna +Edith +Tania +Irene +Araceli +Rocio +Deanna +Naomi +Leah +Carly +Mariana +Celina +Beatriz +Kristin +Elena +Margarita +Carina +Dalia +Kendall +Sandy +Angel +Camille +Jeanette +Carla +Meghan +Perla +Yvonne +Kendra +Margaret +Sharon +Aimee +Mikayla +Selina +Esther +Tori +Rachael +Noemi +Kaylee +Rebekah +Zoe +Ashlee +Bailey +Tara +Adrianna +Whitney +Autumn +Eva +Brandi +Gina +Heidi +Cristal +Caitlyn +Casey +Mercedes +Norma +Ruth +Dulce +Stacy +Dana +Felicia +Bethany +Helen +Susan +Yadira +Tanya +Kara +Renee +Silvia +Krista +Kathy +Jacquelyn +Jillian +Kiana +Madeleine +Melody +Lucia +Marilyn +Pamela +Natalia +Anne +Bridget +Janelle +Stephany +Anissa +Carolyn +Lydia +Sofia +Juliana +Tyler +Jessie +Lizette +Maya +Raven +Tina +Mariela +Paulina +Reyna +Nina +Theresa +Annie +Allyson +Fabiola +Elisa +Judith +Serena +Alexia +Johanna +Roxana +Kirsten +Nichole +Yolanda +Alissa +Yasmin +Amelia +Lucero +Stacey +Angie +Carissa +Dayana +Iris +Berenice +Brandy +Kristine +Nicolette +Connie +Lillian +Virginia +Lily +Jaqueline +Luz +Arlene +Hanna +Josephine +Maricela +Jaclyn +Tamara +Giselle +Marie +Britney +Yazmin +Yessenia +Barbara +Tiana +Mia +Cierra +Mikaela +Paula +Jane +Fatima +Griselda +Karissa +Deborah +Ellen +Gladys +Aaliyah +Alina +Breana +Corina +Sylvia +Alice +Alisha +Charlotte +Daniella +Elaine +Lizeth +Mckenna +Meagan +Kenia +Nataly +Diane +Kiara +Darlene +Angelique +Lucy +Maira +Nayeli +Rebeca +Ashleigh +Ciara +Joselyn +Colleen +Larissa +Janette +Tracy +Viridiana +Ashlyn +Aubrey +Nadia +Savanna +Alexus +Charlene +Joana +Kellie +Makayla +Rose +Candice +Francesca +Alana +Lacey +Tayler +Brenna +Destinee +Graciela +Ivette +Sarai +Casandra +Lourdes +Salina +Talia +Elisabeth +Tessa +Jordyn +Thalia +Donna +Frances +Mallory +Nohely +Roxanne +Asia +Catalina +Katelynn +Melinda +Tabitha +Clarisa +Eileen +Juana +Kira +Melina +Rochelle +Celia +Elise +Imani +Sophie +Anastasia +Candace +Clara +Diamond +Regina +Carol +Christian +Irma +Juanita +Aurora +Bryanna +Kristy +Marisela +Nathalie +Adilene +Genevieve +Julianna +Nikki +Devin +Hope +Katarina +Mckenzie +Rachelle +Robin +Shirley +Anita +Mai +Sasha +Ebony +Faith +Isabelle +Olga +Rosemary +Christy +Janae +Kaila +Magdalena +Iliana +Ivonne +Ivy +Kelli +Kenya +Sally +Adrienne +Chanel +Chelsey +Darian +Gianna +Ingrid +Joyce +Michele +Noelle +Alisa +Denisse +Eunice +Selene +Aliyah +Riley +Yajaira +Annette +Beverly +Delaney +Nora +Toni +Bonnie +Dakota +Ericka +Flor +Lidia +Maggie +Breanne +Celine +Estefania +Evelin +Joanne +Kelsie +Vanesa +Ann +Esperanza +Janice +Kristi +Khadijah +Micaela +Simone +Kasey +Leilani +Anahi +Fernanda +Kate +Paloma +Aileen +Belen +Sadie +Alondra +Aracely +Cinthia +Sidney +Belinda +Debbie +Katharine +Marcela +Corinne +Kylee +Kyra +Lisette +Taryn +Devon +Jacklyn +Lesley +Rosario +Shawna +Laurel +Marlen +Arielle +Brianne +Cheyanne +Jenifer +Judy +Kasandra +Lena +Lesly +Precious +Reina +Rubi +Elsa +Joy +Julissa +Magali +Mireya +Moriah +Stefanie +Tia +Tiara +Justice +Vicky +Alanna +Desirae +Dianna +Janessa +Kelley +Kyla +Lilian +Rita +Robyn +Yessica +Cassie +Georgina +Roxanna +Bernadette +Bridgette +Nia +Savanah +Tammy +Arely +Bertha +Ciera +Jaime +Xiomara +Yaritza +Danica +Dorothy +Melisa +Tess +Athena +Cara +Carrie +Cathy +Estefani +Hilda +Hunter +Lilia +Madelyn +Magaly +Sheila +Ashly +Haylee +Johana +Josefina +Lorraine +Luisa +Tianna +Chantel +Kaitlynn +Katlyn +Leanna +Shayla +Brittani +Candy +Helena +Jackeline +Kaylin +Maricruz +Ryan +Anabel +Eliza +Kailey +Lea +Makenna +Pauline +Randi +Rikki +Sarina +Tierra +Xochitl +Delia +Elvia +Emerald +Estefany +Jocelyne +Shayna +Skylar +Amairani +Antonia +Astrid +Damaris +Dolores +Isela +Julianne +Karli +Karly +Kaylie +Lizet +Lori +Rosalinda +Yasmine +Anais +Chandler +Giovanna +Grecia +Marlena +Michael +Rhiannon +Tiffani +Alyson +Areli +Bria +Emilia +Jeannette +Jesenia +Kennedy +Lupita +Misty +Paris +Shaina +Azucena +Christa +Elyse +Fiona +Josie +Leanne +Liana +Suzanne +Aime +Alaina +Avery +Betty +Callie +Cheryl +Eden +Eleanor +Mina +Nadine +Abby +Antoinette +Ashlie +Daniel +Daphne +Jackie +Jessenia +Kaylyn +Lara +Mindy +Myra +Valentina +Yasmeen +Ashlynn +Bernice +Celena +Chelsie +Dallas +Eliana +Lissette +Loren +Malia +Meredith +Yoselin +Adela +Alysha +Cortney +Hailee +Janine +Jazmyn +Jennie +Jose +Karlie +Katelin +Marcella +Serina +Betsy +Brandie +Brianda +Hillary +Joseline +Lynette +Makenzie +Mariel +Pricilla +Sonya +Alexandrea +Beatrice +Carley +Christiana +Emilee +Emilie +Faviola +Hazel +Isis +Ivana +Jessika +Katheryn +Nathaly +Nelly +Shelly +Cameron +Destiney +Francisca +Lauryn +Shanice +Sherry +Alessandra +Devyn +Hana +Heidy +Juliette +Kassidy +Macy +Mirian +Montana +Sydnie +Yanira +Alexander +Anjelica +Ashton +Chantal +Christie +Coral +Dina +Drew +Hallie +Heaven +Jesse +Justina +Kaela +Rosie +Sage +Allie +Amalia +America +Brittni +Dora +Isamar +Kaley +Katy +Kimberley +Lynn +Mara +Mari +Monika +Phoebe +Reanna +Trisha +Zaira +Consuelo +Corrina +Ileana +Ilse +Kali +Kelsea +Kierra +Kourtney +Maegan +Nallely +Natali +Bobbie +Brittanie +Cora +Elide +Elsie +Elvira +Estrella +Harley +Juliet +Kari +Kimberlee +Kristie +Lina +Mandy +Maxine +Violeta +Alysa +Aubree +Breeanna +Brigitte +Clare +Dawn +Deisy +Demi +Dianne +Domonique +Doris +Emely +Janeth +Joselin +Maddison +Monserrat +Pa +Scarlett +Aja +Alex +Allyssa +Breeana +Celene +Danika +Elissa +Estela +Evangelina +Geneva +Geraldine +Joelle +Kayleigh +Kelsi +Kiersten +Kiley +Kim +Mitzi +Noemy +Skye +Stefany +Susanna +Tatianna +Trinity +Anyssa +Ava +Ayla +Chrystal +Jill +Jovanna +Marlyn +Mirna +Nayely +Rosalia +Rosio +Sienna +Soledad +Stella +Tanisha +Yanet +Alia +Ambar +Bryana +Cori +Ellie +Eve +Haleigh +Jaimie +Jesus +Kiera +Marimar +Maureen +Meaghan +Mirella +Raylene +Vianey +Angeline +Annamarie +Austin +Cecelia +Cristian +Devan +Elaina +Francis +Halie +Jasmyn +Kerry +Kristal +Lila +Lisbeth +Liza +Maranda +Marianna +Marla +Nicolle +Niki +Noel +Rene +Shanna +Sonja +Stacie +Stevie +Yareli +Aisha +Andria +Angelita +Carlie +Davina +Delilah +Elva +Gisela +Gwendolyn +Jacquelin +Janel +Jazmyne +Jesica +Jocelin +Kacie +Kailee +Kaylynn +Kori +Lyndsey +Mariam +Raina +Shea +Tasha +Tracey +Trina +Xochilt +Yesica +Yuliana +Adrian +Alena +Anthony +Breann +Coraima +David +Georgia +Janie +Kaelyn +Katerina +Keana +Layla +Leandra +Lexus +Michell +Minerva +Myranda +Ramona +Terra +Zulema +Ada +Alba +Aleah +Amaris +Amie +Anisa +Annalise +Ayana +Itzayana +Jovana +Kianna +Lana +Leila +Lia +Ofelia +Payton +Princess +Rosalie +Shyanne +Tawny +Unique +Verenice +Violet +Yecenia +Zuleima +Aida +Anai +Annalisa +Cayla +Cinthya +Corinna +Debra +Dylan +Edna +Elia +Estephanie +Gisselle +India +Jayme +Jena +Jeniffer +Jessi +Joann +Julieta +Kaleigh +Kayleen +Korina +Tatyana +Tiffanie +Alysia +Anakaren +Anel +Breonna +Brook +Carlee +Danae +Destini +Deyanira +Glenda +Imelda +Jazzmin +Jodi +Kacey +Keila +Kia +Krysta +Lizabeth +Madalyn +Marian +Martina +May +Peyton +Priscila +Ricki +Rosemarie +Rylee +Salena +Sarahi +Skyler +Vania +Vannessa +Yahaira +Yoana +Amara +Annabel +Bree +Brittnee +Brooklyn +Frankie +Geena +Jamila +Joan +Karlee +Kaylah +Kayley +Kenna +Leann +Logan +Marley +Marta +Patrice +Pearl +Rianna +Saira +Shana +Sydnee +Tricia +Alexi +Annelise +Beth +Blair +Bobbi +Brittaney +Christopher +Darcy +Daysi +Deja +Elyssa +Francine +Gema +Harmony +Haylie +Isel +June +Kristyn +Lacy +Mabel +Marianne +Marielle +Nichelle +Sabina +Sade +Teresita +Yaneli +Alejandrina +Audra +Carli +Catrina +Chanelle +Charity +Danya +Dayna +Denisha +Ella +Fanny +Franchesca +Gladis +Ivon +Janell +Jannet +Joslyn +Juan +Kendal +Maryann +Mayte +Merissa +Mollie +Nereida +Rosalba +Shauna +Spencer +Stefani +Susie +Traci +Zhane +Acacia +Alycia +Anayeli +Annemarie +Becky +Briseida +Carmina +Cecily +Deana +Destinie +Elisha +Essence +Gretchen +Hilary +Jackelyn +Jaimee +Joshua +Karley +Katia +Laurie +Lilliana +Liz +Lupe +Marielena +Mckayla +Nikole +Petra +Rena +Ryann +Vicki +Ajee +Alayna +Alyse +Analisa +Araseli +Aryana +Bibiana +Brigette +Brisa +Camila +China +Christal +Christin +Colette +Cydney +Ester +Gillian +Jana +Jazzmine +Jean +Jodie +Jonathan +Kaylene +Krystina +Madisen +Marleen +Nanci +Nubia +Priya +Shelley +Terri +Amina +Anamaria +Andrew +Ani +Annabelle +Annika +Annmarie +Anya +Ariella +Asha +Ashely +Chantelle +Charmaine +Cherish +Cody +Dahlia +Dominque +Eryn +Felisha +Frida +Gardenia +Inez +Jimena +Jocelynn +Kailyn +Leeann +Madelaine +Malissa +Marjorie +Mikala +Natalee +Neha +Nikita +Octavia +Pilar +Pooja +Rayna +Sahar +Sequoia +Shanelle +Shannen +Shantel +Shari +Sheryl +Tarah +Addison +Adelina +Alexys +Alyssia +Amira +Aria +Britany +Bryce +Candelaria +Corrine +Gabriel +Gracie +Hali +Janna +Jaquelin +Jeanne +Jeannie +Joseph +Kalani +Kalie +Keely +Kerri +Klarissa +Kristian +Krystle +Larisa +Lilibeth +Macie +Makena +Marilynn +Miracle +Nohemi +Noor +Racheal +Regine +Rhianna +Samara +Serenity +Shelbi +Shelbie +Shyla +Sirena +Tabatha +Terry +Tonya +Winnie +Yarely +Adrianne +Aleena +Anika +Ashtyn +Aundrea +Baylee +Brieanna +Brielle +Cambria +Camilla +Catarina +Cesilia +Chasity +Christen +Dalila +Danyelle +Darby +Gemma +Iman +Jami +Janay +Janett +Jeanine +Jorge +Karolina +Kaycee +Keri +Lee +Lesli +Lynda +Marbella +Maricarmen +Maura +Milan +Paulette +Racquel +Savana +Sean +Shawn +Suzanna +Symone +Tatum +Valarie +Vannesa +Zana +Abbey +Abril +Aide +Amani +Angeles +Ayanna +Bella +Billie +Bridgett +Brittnie +Brynn +Carson +Claribel +Courtnie +Deena +Dennise +Elana +Elizabet +Eloisa +Fallon +Gricelda +Ines +Jamesha +Jenelle +Jorden +Kalyn +Kandice +Karin +Kathrine +Kenzie +Keyla +Kristiana +Latasha +Lianna +Lilly +Liset +Lucila +Luna +Makaila +Manuela +Mariaelena +Marilu +Monet +Noheli +Regan +Renae +Rosanna +Saray +Sarena +Scarlet +Sharlene +Shianne +Sindy +Sky +Torri +Aaron +Alannah +Alejandro +Allegra +Allysa +Andreina +Anisha +Aspen +Aubrie +Avalon +Bianka +Blake +Brandee +Brionna +Cailin +Caitlynn +Corey +Dalena +Deseree +Desire +Dionna +Evette +Gissel +Halle +Ilene +Isaura +James +Jannette +Jaquelyn +Joceline +Joycelyn +Ka +Kala +Katya +Kayli +Kevin +Kinsey +Kortney +Krysten +Kyle +Lisset +Lizzette +Maia +Maryssa +Matthew +Mercedez +Mimi +Myriam +Nicollette +Patsy +Priyanka +Raelene +Rosalva +Samatha +Siobhan +Socorro +Stephani +Thao +Tyra +Yarima +Yer +Yuri +Zoila +Ali +Alix +Anahit +Arcelia +Bao +Brittny +Chelsy +Chiara +Chyna +Cindi +Corie +Dania +Darrian +Dayanna +Debora +Denice +Elexis +Erendira +Felicity +Fernando +Gisel +Ida +Ivanna +Janely +Jasmyne +Jayne +Jenessa +Jody +John +Jolene +Jordin +Karely +Kiarra +Kirstin +Krystin +Leena +Leonor +Lexie +Luis +Lyndsay +Maile +Marcia +Marlee +Marycruz +Maryjane +Melodie +Mercy +Micah +Myrna +Nidia +Peggy +Quinn +Raeann +Rosalina +Rosy +Samanta +Sammantha +Shayne +Siena +Suzette +Thania +Therese +Tory +Treasure +Zoey +Zuleyma +Adeline +Anali +Anastacia +Annissa +Arika +Arleen +Aurelia +Breauna +Cassondra +Cathleen +Chante +Constance +Doreen +Eleni +Eugenia +Farrah +Gaby +Georgette +Guillermina +Holli +Jason +Jaycee +Jaymie +Jeana +Jourdan +Kadijah +Kalia +Kalina +Kalynn +Kamryn +Kandace +Katherin +Katlynn +Kaylen +Kimberlyn +Leeza +Liseth +London +Lora +Loretta +Malika +Marcelina +Margo +Mellissa +Meranda +Michaella +Nathalia +Penelope +Presley +Rhonda +Risa +Robert +Ronisha +Rosita +Shae +Shasta +Shawnee +Shiloh +Shyann +Siera +Tawni +Thelma +Trinidad +Vera +Vickie +William +Zayra +Aiyana +Alexsandra +Alisia +Aliza +Amparo +Analicia +Andie +Angelia +Angelic +Arianne +Arlette +Ayesha +Biridiana +Cari +Chole +Cristine +Dallana +Daniele +Darien +Deandra +Delanie +Desiray +Eduardo +Elida +Elisabet +Elle +Estella +Evelia +Geovanna +Giana +Grisel +Hector +Herlinda +Hollie +Iesha +Itsel +Ivory +Jacquelynn +Jada +Joscelyn +Josselyn +Julian +Juliann +Kacy +Kai +Karine +Kyana +Linnea +Linsey +Louise +Maci +Manpreet +Margot +Marivel +Marleny +Maryam +Marylou +Melyssa +Monae +Nellie +Nicholas +Nicholle +Nicola +Nisha +Noely +Oscar +Rebecka +Remy +Ricardo +Rosalind +Rosamaria +Rosaura +Samira +Serene +Shanell +Sharmaine +Sheena +Sommer +Steffany +Stormy +Tamar +Tamera +Tracie +Valery +Vianca +Vivianna +Winter +Yanely +Yaquelin +Yoseline +Zaida +Aidee +Ami +Anahy +Analise +Arissa +Ashli +Asusena +Audriana +Azalea +Brea +Bronte +Bryn +Carlos +Cera +Choua +Cintia +Corrie +Dannielle +Dejanae +Deysi +Elicia +Estephany +Farah +Florence +Ginger +Idalia +Jalisa +Jayla +Jessy +Joey +Joselyne +Julisa +Kaelin +Kamille +Kaylan +Kelcie +Kennia +Kierstin +Kimber +Latisha +Leigh +Lexi +Lizbet +Lizett +Lucille +Makaela +Malina +Marena +Marguerite +Maritsa +Maryanne +Mele +Mellisa +Mildred +Miryam +Mona +Neda +Nhi +Nou +Pang +Quincy +Raveena +Riana +Richard +Rina +Salma +Sayra +Shay +Shivani +Stephania +Suleima +Suleyma +Trista +Venessa +Xenia +Ximena +Yara +Yohana +Yuridia +Adele +Alea +Alyna +An +Angelika +Antionette +Antonio +Arlena +Bailee +Brandon +Brian +Briauna +Britnee +Britni +Cali +Carmela +Caryn +Chandra +Cory +Cristy +Danna +Darlyn +Delmy +Dena +Destany +Dyana +Emelia +Eric +Flora +Francisco +Gena +Grabiela +Halley +Hayden +Isabela +Itati +Izabella +Izamar +Janelly +Jaymee +Jessa +Jessyca +Kadie +Kaeli +Kayle +Kaytlyn +Keyana +Khadija +Kyleigh +Laila +Leona +Lexis +Lillie +Linh +Malaysia +Manuel +Marika +Mario +Marlin +Marrisa +Marsha +Miguel +Mikaila +Myriah +Nika +Omar +Rae +Raeanna +Raelyn +Raelynn +Rafaela +Roberta +Ronni +Roselyn +Rylie +Sahara +Sana +Sheridan +Sheyla +Shireen +Shoshana +Steven +Sue +Susannah +Taylar +Torie +Torrie +Ursula +Venus +Vianney +Wendi +Yocelyn +Zena +Zenia +Zoie +Agnes +Alexsis +Alexxis +Allana +Alliyah +Alora +Amairany +Anessa +Anjali +Ariadna +Aries +Aryanna +Caley +Chastity +Chelsee +Cheri +Cherie +Cherise +Cheyann +Chyenne +Citlaly +Colby +Crysta +Danyell +Deanne +Delfina +Dominic +Eboni +Elexus +Emani +Emilly +Emoni +Felecia +Genessis +Hanah +Ibeth +Ilana +Jacob +Jael +Jahaira +Janey +Jayna +Jeanie +Jenae +Jennyfer +Jewel +Josephina +Kalee +Karyn +Kasie +Katalina +Katty +Kaya +Keaira +Keanna +Kellyn +Kimberlin +Kiran +Kirstie +Leana +Livier +Lois +Lucinda +Luzmaria +Macey +Mahogany +Maraya +Mariadejesus +Mariaguadalupe +Marylin +Melany +Melia +Mikela +Moira +Nisa +Noelani +Noreen +Nydia +Oliva +Oralia +Page +Rayanna +Richelle +Rosana +Rosangelica +See +Shaniece +Stefania +Sulema +Sunny +Sunshine +Sydni +Taelor +Thea +Tiera +Tkeyah +Tyana +Valencia +Veronika +Willow +Winona +Yaneth +Yoselyn +Zahra +Zinnia +Abbie +Abriana +Adelaida +Adelaide +Aislinn +Alberto +Alesha +Alexzandra +Alexzandria +Alise +Aliya +Amberly +Amrita +Andres +Anh +Annamaria +Ashanti +Ashlei +Aura +Aya +Aysia +Beatris +Berta +Blaire +Brieana +Brina +Cady +Cailey +Camry +Caren +Caressa +Carmelita +Cathryn +Chantell +Chyanne +Ciana +Clarisse +Codi +Concepcion +Daisey +Dalina +Danesha +Dani +Darlin +Deidre +Delena +Delores +Dezirae +Dillon +Dominica +Dorian +Elina +Enedina +Erinn +Gabriele +Genisis +Gisell +Greta +Harlie +Harper +Henna +Herminia +Imari +Ivan +Izabel +Janira +Jasmeen +Jazelle +Jeannine +Jenell +Jesseca +Jordana +Kaili +Kassie +Kathryne +Kelci +Kelsy +Kendyl +Keren +Keyanna +Kiani +Kirstyn +Kristianna +Kyrie +Lanae +Lanisha +Liberty +Lili +Lilit +Linette +Lisbet +Lizzet +Lluvia +Lorna +Louisa +Lyzette +Mariella +Mariko +Marin +Mariza +Marrissa +Mattie +Meera +Meg +Merlin +Michel +Mika +Mira +Myesha +Nailah +Nalani +Nalleli +Natividad +Nayelly +Nuvia +Odalys +Paisley +Peri +Phoenix +Phuong +Piper +Reagan +Rebeka +Reena +Rhea +Romina +Rossy +Saba +Sadaf +Sandi +Sarita +Shakira +Sharleen +Sondra +Star +Steffanie +Stephaine +Talar +Tasia +Teagan +Terilyn +Tierney +Tonia +Tonisha +Torrey +Trang +Vivianne +Vy +Willa +Yajayra +Yenifer +Zainab +Zulma +Abrianna +Addie +Aishah +Alecia +Alesia +Analaura +Andrina +Annalee +Arden +Ariadne +Armando +Aryn +Ashlea +Austen +Avigail +Azalia +Baleria +Banesa +Belle +Berenis +Beronica +Bethanie +Betsabe +Breona +Britta +Caitlan +Carleen +Caterina +Caylee +Cesia +Chana +Chanell +Charissa +Charli +Chaya +Chelsi +Ciarra +Clarice +Collette +Connor +Corin +Crista +Danyel +Dara +Darla +Darline +Dennis +Elda +Emmy +Erendida +Erik +Estelle +Estrellita +Evangeline +Evelyne +Fabiana +Genna +Giulia +Glory +Haily +Harpreet +Haydee +Isabell +Ivett +Jaelyn +Jalissa +Jaliyah +Jeanna +Jennica +Jensen +Jerica +Jerrica +Joel +Johannah +Joi +Jolie +Julieanne +Justyne +Kailani +Kalene +Kalli +Kanisha +Karinna +Karis +Karishma +Karolyn +Katelynne +Katey +Kathia +Katlin +Keara +Keira +Keiry +Keisha +Kelsee +Kemberly +Kendell +Kenisha +Kera +Keyona +Kiah +Kodie +Krystel +Kyara +Kyndall +Kyndra +Lane +Latoya +Leslye +Lindy +Lynnette +Madelynn +Maiya +Malorie +Marcy +Margie +Maricella +Markie +Marlana +Martiza +Marysol +Meghann +Megumi +Mekayla +Meliza +Michela +Milena +Miriah +Misha +Mitzy +Miya +Mykala +Nely +Nereyda +Nicki +Nicky +Pahoua +Penny +Puja +Rachell +Raechel +Rana +Raychelle +Reilly +Remington +Rian +Rio +Ronnie +Roselia +Rowan +Rubie +Saleena +Seleste +Shaianne +Shane +Shani +Shanon +Shantal +Shante +Shanti +Sharron +Shaylyn +Silvana +Simran +Sintia +Staci +Stormie +Tal +Tawnie +Tera +Teryn +Tiare +Tisha +Tuesday +Vanity +Vivienne +Waverly +Xitlali +Yael +Yanel +Yocelin +Ysabel +Zachary +Abbigail +Abilene +Agustina +Ainsley +Airam +Akilah +Alanah +Alaura +Aleesa +Alize +Allissa +Amandeep +Amanpreet +Amayrani +Analleli +Analy +Andi +Anja +Annabella +Anny +Antonette +Arlin +Arlyn +Armida +Asucena +Audree +Audrianna +Avelina +Berenise +Bessy +Briahna +Briona +Brissa +Britny +Britteny +Bryan +Camellia +Carleigh +Carlyn +Carmella +Carole +Cassidee +Caylin +Celest +Chase +Citlali +Corayma +Corissa +Cosette +Dafne +Daisha +Danelle +Daniell +Danisha +Deisi +Deonna +Der +Deziree +Dolly +Edgar +Edward +Elodia +Elora +Ema +Emelie +Emery +Emmeline +Enid +Erina +Ernestine +Gabby +Galilea +Giovanni +Gissell +Giuliana +Hellen +Holland +Ia +Ina +Ivania +Jacquelyne +Janea +Janee +Janeen +Janis +Jaslyn +Jasmen +Jayde +Jayleen +Jazlyn +Jenee +Jonna +Jordann +Josseline +Jovita +Kaci +Kaelynn +Kalena +Kallie +Kameron +Kandy +Karena +Karol +Karoline +Katerin +Kattie +Kay +Kelcey +Keshia +Kindra +Kirby +Klarisa +Koraima +Krystine +Kylene +Lacie +Lainey +Lan +Lani +Layne +Liane +Lisamarie +Lisett +Lissett +Livia +Lorin +Lorissa +Lyna +Lysette +Madina +Madisyn +Maisie +Mallorie +Manisha +Margaux +Margret +Mariadelcarmen +Marinna +Marion +Markeisha +Marquisha +Martika +Matilde +Michala +Mickayla +Millie +Montserrat +Morgen +Naima +Nelida +Nena +Oksana +Osiris +Osmara +Paradise +Patrisia +Pebbles +Phylicia +Porsha +Portia +Prisilla +Quiana +Randee +Raquelle +Raya +Rebekka +Rianne +Riki +Rosalyn +Ruben +Ryley +Sabreena +Sabryna +Sachi +Saida +Saige +Santana +Sapphire +Seanna +Sergio +Shantell +Sharee +Shaylee +Sherri +Shoua +Shreya +Sinai +Sona +Starla +Stephane +Tala +Talisha +Tamika +Tamiko +Tesla +Teylor +Thuy +Tristan +Tyesha +Vaness +Vi +Wanda +Yamilet +Yanelly +Ysabella +Ysenia +Zaina +Zenaida +Zuly +Zuri +Abigayle +Adina +Adria +Alec +Aleksandra +Alessa +Aliah +Alli +Almarosa +Alyx +Amada +Amaranta +Amaya +Anamarie +Andreana +Andriana +Angelena +Anmol +Annel +Anneliese +Arabella +Argelia +Ariane +Ariela +Ashia +Ashlin +Aubrianna +Azusena +Babygirl +Benita +Berlin +Brett +Breyana +Briceida +Brigid +Brynna +Cailyn +Candra +Candyce +Carlene +Carolann +Carrissa +Cassaundra +Cassey +Caterin +Celestina +Cerina +Champagne +Channel +Channing +Charlie +Chenoa +Cherokee +Cherry +Cheyanna +Christelle +Christianne +Claritza +Czarina +Damariz +Darion +Darleen +Darnesha +Deedee +Della +Demetria +Desarae +Destanie +Devina +Dixie +Elayna +Elianna +Elma +Elysa +Emiley +Emmalee +Erick +Ernesto +Estefanie +Eulalia +Evonne +Fabian +Francheska +Gao +Garrett +Genevie +Genoveva +Gizelle +Glendy +Grasiela +Gurpreet +Haidee +Harleen +Hayli +Houa +Indira +Irina +Isadora +Israel +Jacinda +Jackelin +Jacklynn +Jaclynn +Jacy +Jalyn +Jamilah +Janai +Janina +Jazmen +Jazzlyn +Jazzmen +Jenica +Jeremy +Jesika +Jessyka +Joleen +Joni +Jordon +Josue +Judit +Justin +Kadi +Kaily +Kalei +Kami +Karisa +Karizma +Karleen +Karmen +Karyssa +Kassy +Katiana +Kaytlin +Kc +Keirra +Kelia +Kellee +Kennya +Keya +Keyonna +Kierstyn +Kiyanna +Komal +Kymberly +Lacee +Laine +Lashawna +Latrice +Leeanna +Lenora +Leonela +Letitia +Letticia +Leyla +Lilianna +Lynsey +Macaela +Maeghan +Magda +Makala +Malena +Mandi +Marinda +Mariya +Marlenne +Mecca +Merari +Mikeisha +Miki +Monay +Monisha +Morganne +Myah +Myrka +Nada +Nakia +Nalley +Natalya +Nickole +Nikolette +Nissa +Noeli +Nykia +Oriana +Pablo +Pakou +Parisa +Patience +Patrick +Perri +Precilla +Rainey +Rayleen +Rayne +Remi +Renata +Rheanna +Rima +Roberto +Rosina +Rudy +Sabrena +Sandeep +Sari +Savina +Selenne +Shaelyn +Shanae +Shanel +Shannan +Shannel +Shawnie +Shaylene +Shaylynn +Shereen +Sheri +Sheyenne +Shyan +Sindi +Skyla +Sloan +Smantha +Soraya +Stephannie +Stephen +Susy +Suzan +Suzy +Sylvana +Talitha +Taralyn +Tarra +Teanna +Tegan +Theodora +Tirzah +Tran +Venezia +Vienna +Vilma +Vina +Virdiana +Whitley +Wynter +Xochil +Yazmine +Yen +Yennifer +Yezenia +Yuka +Zeinab +Zoua +Zully +Abagail +Abigal +Abraham +Adam +Adrina +Alani +Aleida +Aleigha +Alexie +Alexiss +Alexius +Aleyah +Allyn +Alva +Alvina +Amal +Amari +Amberlee +Amethyst +Amorette +Anacaren +Analilia +Anarosa +Andreya +Anette +Angelyn +Anjanette +Annastasia +Antonina +Arionna +Arlen +Armani +Arturo +Aryssa +Ashlan +Aubriana +Aubry +Audrina +Austyn +Aziza +Baby +Barbie +Benjamin +Breena +Breyona +Brienna +Britani +Britnie +Brittini +Brittnay +Brooklynn +Cameo +Camryn +Candi +Candie +Candis +Carolynn +Casie +Cassady +Cathrine +Ceara +Cecile +Chai +Chance +Charisse +Charlee +Charnae +Cherelle +Chika +Chris +Christi +Christiane +Cienna +Clariza +Claudine +Codie +Cristin +Cyntia +Daria +Dasia +Dayanara +Deann +Delicia +Delina +Desaree +Deserae +Deserie +Destani +Desteny +Deven +Devynn +Dilcia +Dinora +Donielle +Dyamond +Dymond +Ebone +Edit +Edwin +Elba +Eleana +Elexia +Eli +Elin +Elisia +Elsy +Elysia +Ember +Emelyn +Enjoli +Enrique +Enya +Ernestina +Estephani +Evelynn +Faye +Forrest +Gail +Gennesis +George +Gerardo +Gia +Gianina +Gigi +Giovana +Hadley +Haide +Hanh +Haven +Helene +Hortencia +Icel +Icela +Idania +Indigo +Itza +Itzell +Ixel +Jacelyn +Jacquline +Jake +Jakeline +Jamee +Jameelah +Jamika +Janaye +Janiece +Jannelle +Jannett +Janny +Jaspreet +Jassmin +Javier +Jaylene +Jaylin +Jaylyn +Jaylynn +Jazman +Jazzmyn +Jeanelle +Jenay +Jenea +Jenette +Jenni +Jennipher +Jerika +Jessicaann +Jessicamarie +Jesslyn +Jonnie +Josette +Kady +Kaitlen +Kaleen +Kambria +Kameryn +Kamila +Kanani +Kao +Karem +Karima +Karisma +Karlyn +Karyna +Kassaundra +Kathie +Kathlyn +Kati +Kayce +Kaytlynn +Keani +Keaton +Keilyn +Kenneth +Kennisha +Kerstin +Kimi +Kimiya +Koral +Korinna +Kristan +Kya +Kyanna +Kymber +Laci +Laken +Lakia +Lanesha +Lanette +Laney +Lashay +Latia +Laurissa +Leesa +Leora +Letty +Leydi +Lilyanne +Limayri +Lindsy +Lisandra +Lissete +Loan +Loni +Loraine +Lucina +Luke +Lyla +Lysa +Macee +Madalynn +Madelin +Madelyne +Madilyn +Madyson +Mae +Magen +Maite +Malak +Malinda +Mandeep +Maren +Maricsa +Mariely +Marine +Marisabel +Mark +Marlaina +Martin +Martine +Maryan +Marygrace +Marykate +Marylyn +Mayraalejandra +Melaine +Melannie +Melisha +Mickaela +Midori +Mikhaila +Milagros +Milca +Millicent +Mirka +Moncerrat +Muna +Mykayla +Myrissa +Naja +Najah +Nana +Nandi +Naomy +Narissa +Natallie +Natashia +Nathan +Nava +Nayelli +Neftali +Nerissa +Ngoc +Nikkie +Ninfa +Nirvana +Nour +Nyla +Ocean +Odalis +Ophelia +Parker +Pedro +Pricila +Priscella +Promise +Queen +Rabecca +Rachele +Radhika +Raegan +Raeven +Rafael +Rainee +Raisa +Randa +Randie +Randy +Ranisha +Rashell +Rayana +Raychel +Raymond +Reanne +Rebeccah +Reem +Reynalda +Rhiana +Ria +Rilee +Ronnisha +Roseann +Roseanne +Roxann +Rudi +Ryanne +Sacha +Sanjana +Sanjuana +Santa +Saskia +Serra +Shabnam +Shakia +Shalynn +Shamika +Shaney +Shara +Shaunna +Shawnna +Shaye +Shaylah +Shaylin +Shira +Siara +Silver +Soleil +Somer +Sonali +Stacia +Starr +Stephenie +Stevi +Sumer +Suzana +Syndey +Tabetha +Tajanae +Taleen +Talin +Tamisha +Tammie +Tamra +Tana +Tanesha +Tanna +Tashawna +Tatyanna +Teal +Tereza +Tiarra +Tifani +Tiffiny +Timothy +Tommie +Vada +Vaneza +Verenise +Vianka +Victor +Viktoria +Viola +Wilma +Windy +Yamileth +Yaricza +Yudith +Yunuen +Yuriko +Zara +Zoraida +Aaryn +Abeer +Abigael +Abigale +Abrielle +Adelle +Adreana +Adrien +Adryanna +Aimme +Akela +Akira +Alan +Alberta +Alda +Alexandrina +Alexes +Aliana +Alizabeth +Alla +Alona +Alyshia +Alyxandria +Amee +Ammy +Anaissa +Anaiz +Analia +Analuisa +Anam +Anay +Andee +Andra +Andre +Andrena +Andrianna +Anett +Angele +Anhelica +Annah +Annalicia +Annisa +Aolani +Apryl +Ari +Ariauna +Arisa +Arlet +Armine +Ashlen +Ashlynne +Asma +Asuzena +Atiya +Atziri +Audrie +Audry +Averi +Aylin +Aysha +Azalie +Banessa +Bayley +Baylie +Bereniz +Blythe +Bradlee +Breeann +Brenae +Brennan +Breya +Breyanna +Briannah +Brighton +Brigit +Brionne +Brynne +Byanca +Cameryn +Carrisa +Cashmere +Cassidi +Cassy +Catherina +Catlin +Cayley +Celyna +Chan +Chandni +Charis +Charise +Charleen +Charles +Charline +Chayanne +Chenelle +Chia +Christinejoy +Chyann +Chynna +Citlalli +Clarivel +Claudette +Clementina +Coleen +Corena +Corine +Cornelia +Corrin +Coua +Courtnee +Cristen +Cristiana +Cristie +Cruz +Cyndi +Cypress +Daena +Daja +Dakotah +Dale +Danitza +Danniela +Danny +Darci +Darling +Davianna +Davonna +Dayanne +Debby +Deidra +Delaina +Delma +Dennice +Desirea +Destanee +Destine +Devine +Dezarae +Divya +Domanique +Donisha +Ebonee +Edlin +Elisse +Elizeth +Ellena +Ellisa +Elly +Elsi +Eman +Emmaline +Emmanuelle +Esli +Eternity +Eunique +Falicia +Faustina +Felisa +Florencia +Folasade +Frank +Genecis +Georgie +Ginamarie +Ginny +Gisele +Gisella +Glenna +Gracelyn +Gracey +Greer +Hala +Halee +Han +Harlee +Huyen +Icsel +Ikea +Ileen +Imalay +Iqra +Iracema +Irlanda +Isaac +Ivone +Izamary +Jacey +Jackelyne +Jacky +Jaden +Jaide +Jammie +Jannel +Janneth +Jayden +Jaylen +Jenesis +Jenika +Jenine +Jennafer +Jennah +Jennefer +Jesselyn +Jewels +Jezabel +Jezebel +Jimmie +Jisselle +Jo +Johnathan +Johnna +Joie +Joline +Jonah +Jori +Josefa +Jubilee +July +Justus +Justyce +Kacee +Kadisha +Kailin +Kalen +Kalynne +Kamara +Kamilah +Kanwal +Karah +Kareli +Karime +Karrie +Karrina +Kasondra +Katerine +Katharina +Kathya +Katina +Katja +Kaycie +Kaydee +Kaylamarie +Kaylia +Kaytee +Kazzandra +Keeley +Keianna +Keiko +Keilani +Kela +Kelcee +Kelcy +Kena +Kenesha +Khadejah +Kiely +Kimberlynn +Kimiko +Kiona +Kirra +Kiyana +Klaudia +Kodi +Kolleen +Kora +Korrina +Kris +Krishna +Kristyna +Kyler +Lailani +Lashae +Leandrea +Leanza +Leighann +Lela +Lenina +Leslee +Lexy +Leyda +Leyna +Lezly +Lianne +Lien +Liliane +Lilith +Lilybeth +Limairy +Lissa +Lita +Lizvet +Lizzete +Loida +Loreal +Loryn +Lurdes +Lus +Lusine +Lyly +Lyndsie +Lynna +Ma +Macayla +Maciel +Mackenna +Maeve +Magnolia +Makenzy +Malea +Maleni +Mallori +Manal +Mandalyn +Mao +Maral +Maram +Marci +Mariafernanda +Marialuisa +Mariama +Mariann +Marilin +Marixa +Marshae +Marty +Marybeth +Marycarmen +Matilda +Mayumi +Mechelle +Mee +Meggan +Mehgan +Meilani +Meisha +Melani +Melenie +Meliss +Melizza +Merlyn +Michaila +Michal +Michayla +Miesha +Mirza +Morghan +My +Mychelle +Myisha +Nairi +Nathali +Nechama +Neida +Nickie +Nikia +Noelia +Norah +Nuria +Nykole +Nyssa +Odessa +Olimpia +Olyvia +Paolina +Passion +Peter +Phyllis +Piedad +Polly +Porsche +Princesa +Quincey +Quinci +Rachelanne +Raeleen +Raiza +Rania +Rashelle +Rawan +Rayanne +Raylina +Rayven +Reana +Reann +Reyanna +Riane +Rickie +Romy +Rona +Ronda +Rory +Rubina +Sabine +Safia +Salem +Salome +Samone +Samuel +Sania +Saphire +Sarahgrace +Sarahjane +Sareena +Sariah +Sarrah +Sativa +Schuyler +Sebrina +Sedona +Seleni +Selma +Shadae +Shala +Shalyn +Shandra +Shanee +Shanie +Shaniqua +Shardae +Shaun +Shaunice +Shayda +Sheng +Sherrie +Shiann +Shilo +Silva +Sinead +Sinthia +Siria +Sneha +Solange +Spring +Staphany +Steffi +Stephanee +Stephaney +Sterling +Stormi +Sujey +Sukhpreet +Symphony +Synthia +Tahirah +Tahlia +Tahnee +Taja +Taliah +Talina +Talya +Tam +Tameka +Tanairi +Tanika +Tanner +Tashina +Tatiyana +Taylore +Teaira +Terah +Thu +Tien +Tiffini +Torey +Triana +Trini +Truc +Tyara +Tyrisha +Tytiana +Valeri +Vianna +Vida +Vita +Vivien +Xitlaly +Yanina +Yicel +Yomaira +Yovana +Yu +Yusra +Zabrina +Zahira +Zakiya +Zayna +Zina +Zitlaly +Jessica +Ashley +Stephanie +Jennifer +Samantha +Emily +Sarah +Elizabeth +Amanda +Maria +Vanessa +Kimberly +Melissa +Alexis +Jasmine +Taylor +Michelle +Megan +Rachel +Lauren +Nicole +Alyssa +Hannah +Alexandra +Andrea +Victoria +Brianna +Danielle +Natalie +Jacqueline +Kayla +Brittany +Diana +Karina +Rebecca +Katherine +Brenda +Monica +Daisy +Selena +Marissa +Christina +Gabriela +Madison +Cynthia +Amber +Angelica +Alejandra +Crystal +Jocelyn +Courtney +Laura +Tiffany +Nancy +Sara +Ana +Karen +Julia +Erika +Sydney +Veronica +Olivia +Angela +Adriana +Sierra +Yesenia +Amy +Kelly +Briana +Anna +Sabrina +Miranda +Breanna +Leslie +Guadalupe +Haley +Morgan +Mariah +Allison +Cassandra +Jazmin +Evelyn +Destiny +Kelsey +Cindy +Erica +Alicia +Chelsea +Abigail +Shelby +Savannah +Sandra +Valerie +Bianca +Mary +Erin +Brooke +Monique +Cheyenne +Jasmin +Alexandria +Alondra +Kaitlyn +Ariana +Claudia +Jordan +Emma +Heather +Desiree +Mayra +Patricia +Jamie +Christine +Madeline +Gabrielle +Priscilla +Wendy +Joanna +Shannon +Isabel +Catherine +Karla +Katelyn +Kylie +Denise +Paige +Melanie +Cristina +Jenna +Katie +Paola +Kristen +Grace +Sophia +Kassandra +Alexa +Cecilia +Kathryn +Janet +Liliana +Lisa +Caitlin +Brittney +Celeste +Julie +Rosa +Gabriella +Marisa +Ruby +Dominique +Valeria +Isabella +Daniela +Cassidy +Linda +Jazmine +Carolina +Raquel +Kaitlin +April +Esmeralda +Lindsey +Vivian +Hailey +Chloe +Clarissa +Kathleen +Kristina +Marina +Claire +Carina +Caroline +Lorena +Marisol +Hayley +Marlene +Bailey +Katrina +Genesis +Jenny +Leah +Martha +Michaela +Summer +Sonia +Tatiana +Mackenzie +Irene +Leticia +Teresa +Arianna +Lindsay +Miriam +Alma +Carmen +Viviana +Angelina +Gloria +Ariel +Carly +Mariana +Lizbeth +Yvette +Carla +Molly +Natasha +Edith +Krystal +Serena +Elena +Audrey +Angel +Dana +Maritza +Blanca +Holly +Selina +Zoe +Justine +Kiana +Naomi +Meghan +Mia +Jocelyne +Margaret +Dalia +Kaylee +Tara +Alison +Noemi +Rebekah +Camille +Mikayla +Tania +Araceli +Cristal +Susana +Casey +Tanya +Maribel +Autumn +Maya +Beatriz +Brandi +Sharon +Yadira +Celina +Adrianna +Yvonne +Perla +Gina +Natalia +Jade +Rachael +Sofia +Heidi +Margarita +Deanna +Kendall +Kristin +Brandy +Kendra +Helen +Amelia +Ruth +Bethany +Norma +Sandy +Caitlyn +Jeanette +Mercedes +Aimee +Annie +Madeleine +Rocio +Paulina +Esther +Juliana +Lizette +Cierra +Eva +Faith +Elisa +Janelle +Lily +Stacy +Berenice +Itzel +Kathy +Makayla +Reyna +Susan +Bridget +Fabiola +Ashlee +Jacquelyn +Stephany +Yasmin +Alina +Judith +Carolyn +Kiara +Mckenna +Melody +Krista +Tori +Jillian +Lydia +Hanna +Kirsten +Nina +Silvia +Whitney +Charlotte +Felicia +Marilyn +Alissa +Iris +Stacey +Kara +Lillian +Raven +Yolanda +Ciara +Mariela +Tyler +Arlene +Josephine +Alexia +Luz +Renee +Sarai +Alice +Deja +Breana +Diane +Jaclyn +Virginia +Lucia +Pamela +Tiana +Alana +Graciela +Anne +Daniella +Giselle +Johanna +Nadia +Nicolette +Riley +Tina +Angelique +Angie +Jessie +Elaine +Hope +Brenna +Ellen +Francesca +Nataly +Alexus +Savanna +Viridiana +Asia +Julianna +Dulce +Rose +Jaqueline +Theresa +Barbara +Carissa +Jordyn +Kristine +Lizeth +Tessa +Yessenia +Ashlyn +Karissa +Lucy +Mikaela +Clara +Lacey +Destinee +Gladys +Nathalie +Regina +Sylvia +Darlene +Rebeca +Candace +Connie +Dakota +Fatima +Paula +Roxana +Sophie +Lucero +Ivette +Delaney +Frances +Gianna +Griselda +Noelle +Katelynn +Larissa +Nichole +Bryanna +Eileen +Marie +Nayeli +Tabitha +Tracy +Desirae +Imani +Kellie +Kenia +Sadie +Allyson +Ashleigh +Donna +Aubrey +Devon +Sasha +Sidney +Rosemary +Britney +Mallory +Maricela +Nikki +Kelli +Kira +Kylee +Micaela +Tayler +Ivy +Thalia +Cheyanne +Jane +Kristy +Meagan +Melina +Roxanne +Corina +Joyce +Colleen +Deborah +Elisabeth +Iridian +Joselyn +Kenya +Maggie +Melinda +Anissa +Elise +Fernanda +Joana +Kaila +Kasey +Kate +Kennedy +Tamara +Maira +Salina +Alisha +Arielle +Emely +Mckenzie +Simone +Candice +Diamond +Ingrid +Shirley +Taryn +Chelsey +Aileen +Janette +Justice +Nora +Savanah +Eunice +Makenna +Marisela +Annette +Belen +Chandler +Kyra +Magdalena +Aliyah +Flor +Juana +Lourdes +Sally +Christian +Ericka +Joanne +Selene +Talia +Adilene +Anita +Aurora +Carol +Estefani +Irma +Lesly +Reina +Aaliyah +Casandra +Gisela +Helena +Isabelle +Joy +Juanita +Lesley +Toni +Alisa +Astrid +Katarina +Rachelle +Yessica +Celia +Judy +Sheila +Dianna +Ebony +Ivonne +Jaime +Julianne +Julissa +Leilani +Robin +Adrienne +Antonia +Evelin +Genevieve +Iliana +Anastasia +Chanel +Christy +Janice +Kailey +Katharine +Paloma +Tianna +Yazmin +Catalina +Damaris +Esperanza +Lidia +Precious +Rita +Roxanna +Tiara +Tiffani +Vanesa +Devin +Madelyn +Bertha +Eliza +Estefany +Kasandra +Alanna +Denisse +Janae +Michele +Yajaira +Sarina +Tierra +Giovanna +Kaitlynn +Katlyn +Xochitl +Athena +Emilee +Hunter +Mireya +Scarlett +Aracely +Brianne +Cinthia +Darian +Jada +Janessa +Baylee +Jackeline +Kassidy +Mai +Sonya +Cassie +Chantal +Kyla +Rubi +Ann +Cara +Danica +Jenifer +Lena +Lilian +Moriah +Phoebe +Christiana +Emilie +Jacklyn +Joceline +Kelsie +Luisa +Yasmine +Alyson +Breanne +Celena +Georgina +Haylee +Isela +Josefina +Marcela +Nadine +Olga +Rosario +Callie +Cathy +Corinne +Eden +Estefania +Joseline +Melisa +Pauline +Shawna +Antoinette +Ciera +Cortney +Delia +Leanna +Stefanie +Alex +Alexandrea +Grecia +Hailee +Macy +Tia +Celine +Debbie +Dolores +Lisette +Lissette +Lorraine +Shayla +Abby +Anabel +Areli +Avery +Azucena +Brandie +Brittani +Christa +Dorothy +Francis +Heaven +Myra +Trisha +Belinda +Elissa +Kaylin +Kelley +Laurel +Lea +Rochelle +Serina +Yasmeen +Alessandra +Bridgette +Jessika +Juliette +Kristal +Makenzie +Tammy +Yahaira +Alaina +Anjelica +Beverly +Cayla +Josie +Marlen +Nia +Salena +Shayna +Ashly +Ashlynn +Carrie +Corrina +Dayana +Elvia +Hilda +Kaela +Karly +Lilia +Magaly +Rosalinda +Tess +Xiomara +Ashlie +Bernadette +Chantel +Eleanor +Estephanie +Hazel +Jessenia +Justina +Lupita +Robyn +Rosie +Sienna +Skylar +Stevie +Tatyana +Yareli +Ava +Charlene +Elaina +Elvira +Kiley +Liana +Maddison +Zulema +America +Arely +Bria +Elsa +Fiona +Ileana +Johana +Leanne +Lina +Maricruz +Meredith +Misty +Reanna +Shyanne +Skyler +Amalia +Anais +Clare +Daphne +Elsie +Essence +Imelda +Karlee +Lilibeth +Rhiannon +Unique +Cameron +Demi +Estela +Hana +Heidy +Janeth +Janine +Kaylie +Lara +Lynette +Ryan +Sage +Trinity +Vicky +Yoselin +Carley +Darby +Eliana +Faviola +Gema +Gillian +Isis +Janel +Kaelyn +Kali +Kianna +Lisbeth +Marianna +Bernice +Bonnie +Clarisa +Emilia +Jeannette +Kaley +Kierra +Leila +Paris +Pearl +Valentina +Adela +Destiney +Elyse +Georgia +Jennie +Logan +Malia +Marcella +Mindy +Randi +Suzanne +Alena +Anyssa +Betsy +Betty +Carli +Cheryl +Dora +Jackie +Katia +Magali +Natali +Nathaly +Raylene +Zaira +Adrian +Deisy +Drew +Estrella +Francisca +Jacquelin +Jesse +Jose +Juliet +Kacie +Katelin +Kiera +Kristie +Madalyn +Maranda +Mari +Monika +Rosio +Sirena +Suzette +Sydnee +Amairani +Ani +Daniel +Ella +Ivana +Kari +Mara +Maxine +Mirian +Monserrat +Sherry +Skye +Tatianna +Aubree +Ayana +Breann +Brianda +Ellie +Frida +Haleigh +Kayleigh +Keana +Kelsea +Lia +Mariel +Marlena +Maureen +Mina +Nallely +Rikki +Samira +Shelly +Tyra +Yaritza +Yesica +Aida +Anahi +Anika +Bobbie +Chelsie +Devyn +Irania +Kiersten +Korina +Lizet +Maryann +Stella +Terra +Yanet +Alia +Biridiana +Candy +Carlie +Consuelo +Dallas +Doris +Harley +Jesenia +Jocelin +Lexus +Lyndsey +Lynn +Mckayla +Myranda +Nelly +Priscila +Rosemarie +Shaina +Tasha +Vianey +Violeta +Aisha +Ayla +Brisa +Delilah +Dina +India +Jazmyn +Jesica +Joan +Katy +Kristi +Krysta +Lori +Marla +Nereida +Noel +Susanna +Sydnie +Aime +Alycia +Alysia +Annabelle +Bella +Blair +Brittni +Charity +Christie +Dania +Geraldine +Jayme +Jazzmin +Joelle +Kailee +Kelsi +Kimberlee +Layla +Soledad +Alysha +Brigitte +Camila +Coral +Cori +Destini +Gretchen +Ilene +Marlyn +Meaghan +Pilar +Rosalba +Serenity +Stacie +Vannessa +Verenice +Yanira +Allie +Anisa +Annika +Ashli +Beatrice +Briseida +Chanelle +Cherish +Colette +Dawn +Elia +Emerald +Gwendolyn +Iman +Isamar +Janay +Jannet +Jaquelin +Jazzmine +Jeniffer +Jolene +Joselin +Kaylah +Kendal +Lana +Liza +Loren +Marta +Quinn +Raina +Sarahi +Alize +Allegra +Anakaren +Anthony +Becky +Bryana +Debra +Dennise +Hillary +Joselyne +Karli +Keila +Mandy +Minerva +Mollie +Peyton +Rosalia +Rylee +Tatum +Trina +Violet +Adrianne +Aleena +Alysa +Amaris +Anai +Analisa +Annabel +Ashton +Carlee +Concepcion +Cora +Corinna +Danae +Darla +Davina +Edna +Elana +Evangelina +Geneva +Glenda +Halie +Ilse +Mariam +Marjorie +Maryam +Maura +Montserrat +Nanci +Payton +Pricilla +Shea +Sydni +Tiffanie +Ada +Aja +Anamaria +Angeles +Cinthya +Daija +Danika +Danyelle +Dayna +Elisha +Francine +Gisselle +Jennyfer +Jesus +Joann +Kacey +Karin +Kayleen +Kourtney +Laila +Lilly +Maricarmen +Martina +May +Merissa +Ramona +Rayna +Shivani +Yaneli +Zuleima +Aide +Alba +Aleah +Alexander +Allyssa +Andie +Angeline +Annalisa +Ashely +Ayanna +Bailee +Cecelia +Christopher +Daysi +Elyssa +Franchesca +Gemma +Gladis +Iridiana +Jodi +Katheryn +Keri +Kevin +Kimberley +Klarissa +Kristyn +Lauryn +Louise +Maegan +Marian +Micayla +Mona +Montana +Shanice +Shelley +Stefany +Amie +Berenise +Brook +Daisha +Dalila +Dominque +Jasleen +Jazlyn +Jeannie +Jovana +Kaleigh +Karlie +Kaylyn +Kim +Makena +Marianne +Mirna +Mitzi +Nohemi +Pa +Ricki +Sequoia +Shana +Sheridan +Siena +Stefani +Tawny +Tracey +Valery +Yamilex +Yoana +Alyse +Amani +Ambar +Ariella +Billie +Brionna +Brittnee +Christen +David +Devan +Gabriel +Isabela +Jaimie +Jazmyne +Jena +Kailyn +Kalyn +Kaycee +Keanna +Kortney +Leandra +Leeann +Lianna +London +Lynsey +Marielena +Nidia +Noemy +Roberta +Sade +Shauna +Shelbi +Shelbie +Sommer +Sonja +Suzanna +Alayna +Anayeli +Annamarie +Breonna +Brooklyn +Bryce +Celene +Domonique +Dylan +Harmony +Janell +Jaquelyn +Jill +Karely +Karolina +Kathrine +Kori +Marielle +Melodie +Mika +Princess +Shantel +Thelma +Tiera +Tonya +Tricia +Abbey +Andria +Anel +Anisha +Annmarie +Ashanti +Blake +Breeanna +Cailin +Camilla +Courteney +Dahlia +Dani +Deana +Deyanira +Deysi +Dianne +Halle +Hallie +Ilana +Ivanna +Jean +Jessi +Julieta +Kalie +Katlin +Keely +Keren +Lacy +Lizzette +Madelaine +Maia +Marcia +Mariaelena +Mayte +Nayely +Neha +Odalis +Regan +Rena +Rhianna +Rosalie +Shania +Socorro +Valarie +Vania +Xochilt +Zoey +Abril +Adelina +Alexys +Amina +Aria +Asha +Bibiana +Brittanie +Chantelle +Chelsi +Cristian +Elva +Frankie +Geena +Hollie +Ines +Jackelyn +Janett +Jodie +Kalia +Katya +Kayley +Kendyl +Kerry +Keyla +Kristian +Lexie +Macie +Micah +Michael +Nikole +Ofelia +Petra +Rosalva +Rosamaria +Saray +Scarlet +Sky +Vicki +Alexi +Annalise +Annelise +Arlette +Aryana +Aspen +Aubrie +Bianka +Brandee +Bridgett +Brittnie +Cambria +Catrina +Cintia +Desire +Elexus +Eryn +Hali +Idalia +Isaura +Jana +Jonathan +Karinna +Kathie +Kristiana +Lila +Lilliana +Lizett +Lyric +Madelynn +Marbella +Mikaila +Mirella +Monet +Nohely +Rosaura +Saira +Shanelle +Shay +Sindy +Tabatha +Vannesa +Yarely +Yomira +Zhane +Zuleyma +Anjali +Anya +Aura +Britany +Brynn +Chiara +Christal +Citlali +Denisha +Elida +Fallon +Felicity +Katerina +Krystina +Laurie +Lizbet +Madyson +Manuela +Maryjane +Michel +Natalee +Nereyda +Niki +Nikita +Reagan +Sabina +Sana +Taelor +Tamera +Tanisha +Teresita +Yanely +Yer +Zayra +Acacia +Adeline +Alejandro +Aliza +Amairany +Amara +Angelita +Annemarie +Aundrea +Aylin +Bobbi +Brandon +Breeana +Brieanna +Brittny +China +Chrystal +Ciarra +Cydney +Dejah +Delanie +Destany +Fanny +Farah +Gisel +Haylie +Jasmyn +Jasmyne +Kaelin +Karena +Kassie +Kaylynn +Kelcey +Kerri +Keyanna +Leonor +Lynda +Madisen +Maile +Marcelina +Marlee +Marrissa +Mercedez +Mimi +Miracle +Neida +Paulette +Priya +Raelene +Rosita +Ryann +Sahara +Shannen +Symone +Thania +Vivianna +Winter +Alexxis +Alivia +Alix +Allysa +Arleen +Beatris +Cali +Carmelita +Cecily +Charmaine +Coraima +Dajah +Darrian +Dasia +Deena +Elina +Eve +Gardenia +Ivory +Jacinda +Jannette +Jayla +Jenae +Jenelle +Jocelynn +Joey +Josselyn +Juan +June +Kai +Kala +Kaya +Lacie +Lesli +Lexi +Lucila +Lucille +Marilu +Marleen +Marley +Meghann +Meranda +Mirka +Nathalia +Nubia +Patrice +Racquel +Rayleen +Renae +Rene +Richelle +Rylie +Sahar +Sarena +Shasta +Tamar +Tracie +Vianca +Yuri +Zahra +Aidee +Alannah +Alejandrina +Alyssia +Amira +Angelic +Aurelia +Bree +Brian +Bronte +Candelaria +Catarina +Chynna +Constance +Corey +Corrine +Darcy +Delfina +Desiray +Destinie +Eloisa +Eric +Eugenia +Hilary +Idalis +Izabella +Jamila +Janely +Janna +Jeanine +Jorden +Joscelyn +Joshua +Joslyn +Jovanna +Justin +Kalani +Kelcie +Kenna +Kinsey +Kirstie +Kyle +Larisa +Latasha +Lizabeth +Lizzet +Lluvia +Maci +Maren +Mariadejesus +Marylin +Matthew +Meliza +Melyssa +Michaella +Mikala +Milan +Odalys +Patty +Penelope +Racheal +Rebecka +Regine +Renata +Samara +Shanna +Shantell +Shawnee +Shianne +Sunny +Tristan +Tristen +Valencia +Vickie +Yamilet +Yecenia +Addison +Adina +Aidan +Ali +Amparo +Audra +Avalon +Brea +Brielle +Britnee +Cathryn +Chasity +Chastity +Chyanne +Claribel +Codi +Cody +Daijah +Dalena +Daria +Dena +Desteny +Dorian +Eboni +Eleni +Elle +Ester +Florence +Gisella +Gracie +Gricelda +Indira +Inez +Itsel +Itzayana +Jami +Jimena +Julian +Kaeli +Karah +Karley +Katlynn +Kayle +Kayli +Kia +Kimberlyn +Kirstin +Kyleigh +Lashay +Leeza +Lexis +Lisbet +Lois +Lora +Madisyn +Makaela +Mariajose +Marika +Mariza +Mattie +Mellissa +Michell +Miguel +Natalya +Nisha +Noor +Octavia +Oksana +Raelynn +Rayann +Risa +Ronnie +Rosanna +Shyla +Siera +Soraya +Spencer +Star +Starr +Stormy +Susie +Tristin +Venessa +Vilma +Xena +Yara +Aaron +Alesha +Alisia +Anahit +Analy +Andreina +Angelia +Angelika +Arcelia +Ayesha +Bao +Bayley +Cesilia +Charissa +Cherie +Daja +Danelle +Daniele +Danya +Darien +Deisi +Deonna +Deserie +Deziree +Elba +Elexis +Elizabet +Estephany +Evangeline +Felisha +Genna +Ida +Jaimee +Jaspreet +Jaylene +Jaymee +Jessa +Jordin +Jorge +Joseph +Julieanne +Kandace +Kaytlin +Kelsy +Kennia +Khadijah +Kyanna +Lani +Leia +Lili +Luis +Lyndsay +Malika +Malina +Malinda +Mercy +Miya +Myriam +Nellie +Nichelle +Nou +Patsy +Presley +Remy +Rhonda +Rianna +Rosalina +Rosana +Savana +Sheri +Sheyla +Tierney +Treasure +Yazmine +Zaida +Zainab +Zena +Adahli +Adele +Alea +Alora +Amari +Anali +Anastacia +Annamaria +Arissa +Aryn +Austin +Aysia +Celest +Chelsy +Cherokee +Citlalli +Citlaly +Courtnie +Crysta +Danyell +Darlyn +Deidra +Denice +Der +Deseree +Dezirae +Dionna +Divya +Emani +Emmalee +Enedina +Erendira +Estella +Giana +Ginger +Halley +Illiana +Janiece +Jayna +Jayne +Jazzlyn +Jeannine +Jewel +Jody +Joi +Kacy +Kandice +Katherin +Kaylene +Kaytlyn +Kiah +Krystle +Kymberly +Leann +Lee +Linnea +Louisa +Luna +Mackenna +Madelyne +Maiya +Malissa +Manpreet +Mariaguadalupe +Maricella +Marilynn +Marion +Maritsa +Maryssa +Mellisa +Mileena +Nhi +Nicolle +Pang +Penny +Raeann +Rana +Rhea +Ryanne +Saige +Seleste +Shani +Shantal +Shireen +Staci +Stephani +Storm +Sunshine +Synthia +Therese +Trista +Tyana +Vianney +Vivianne +Wynter +Xenia +Yuliana +Zenaida +Agnes +Alaysia +Aliya +Allissa +Ami +Anabelle +Andee +Andrew +Annastasia +Anneliese +Araseli +Asma +Banesa +Beth +Brigette +Brigid +Britni +Brittaney +Brynne +Caitlynn +Carlos +Charlie +Chase +Chelsee +Cianna +Clarisse +Cleo +Corissa +Cory +Danna +Darleen +Deandra +Debora +Desarae +Devynn +Dixie +Dyana +Gaby +Geovanna +Hanah +Holli +Imari +Irais +Jackelin +Jacquelynn +Jaelyn +Janelly +Janie +Jasmeen +Jayde +Jessalyn +Jolie +Joselynn +Josephina +Kaci +Kady +Kaily +Kalee +Kalli +Kamryn +Kanisha +Karisa +Kathia +Kati +Kaylan +Keara +Keiko +Keisha +Kemberly +Kenzie +Lanae +Latrice +Leana +Liberty +Lillie +Lisset +Lorna +Macey +Madilyn +Malena +Margo +Margot +Mariya +Maryanne +Marylou +Marysol +Milena +Myrka +Myrna +Natividad +Neda +Nika +Noelani +Oriana +Page +Patience +Peggy +Priyanka +Reba +Rebeka +Rio +Ronni +Salma +Sandi +Santana +Sapphire +Shanel +Sharlene +Shawn +Shaye +Shiloh +Shyann +Sinai +Skyla +Susannah +Talin +Terri +Terry +Thea +Traci +Veronika +Vivienne +Willow +Yoseline +Yuridia +Zara +Zoila +Abigale +Abriana +Adelaida +Aislinn +Alexsandra +Amberly +Analise +Annabella +Annaliese +Antionette +Ariane +Arianne +Arlyn +Armani +Armine +Aryanna +Ashlei +Asusena +Aubriana +Audrianna +Babygirl +Baylie +Britny +Cailey +Carmela +Carson +Celestina +Celestine +Cerina +Chaya +Christianna +Chyna +Cindi +Corrie +Corrin +Cristine +Cruz +Daisey +Dannielle +Dejanae +Desree +Elicia +Elide +Elsy +Ernestina +Evie +Flora +Francisco +Genessis +Gicela +Giovana +Gissel +Greta +Hadley +Haily +Haydee +Hayleigh +Helene +Irlanda +Ivon +Izamar +Jamee +Janee +Janis +Jenniffer +Joie +Juliann +Julieann +Julisa +Ka +Kailah +Karishma +Karyn +Katalina +Kathryne +Kathya +Kaylen +Keeley +Kerstin +Khaila +Kimberli +Kimiko +Kirby +Kristan +Leena +Lilyana +Lisamarie +Liz +Lola +Lupe +Mabel +Madaline +Madina +Maeve +Mallorie +Marcy +Marena +Marguerite +Marimar +Markie +Marleny +Marrisa +Maryah +Marycruz +Meg +Moira +Morganne +Nicola +Nisa +Oscar +Parker +Pooja +Quincy +Rae +Raeanna +Raechel +Rain +Rebekka +Riana +Rima +Rosalyn +Samatha +Sarita +Sarrah +Sergio +Shadi +Shalynn +Shayne +Sheena +Sheng +Shira +Shoshana +Sol +Starla +Steffanie +Sulema +Tamra +Tanner +Tarah +Tera +Torie +Tyanna +Venus +Vianna +Victor +Waverly +Xitlali +Yunuen +Abbigail +Abigayle +Aleida +Alexiss +Alliyah +Amethyst +An +Anamarie +Anay +Andi +Annissa +Arden +Argelia +Ariela +Ashlin +Ashtyn +Aya +Azusena +Brieana +Brienna +Bryn +Caitlan +Caleigh +Caprice +Carisa +Carleen +Catelyn +Caterina +Cathleen +Cera +Champagne +Chandra +Cherise +Cheyanna +Christin +Cidney +Cristy +Deija +Denae +Devina +Diandra +Dinah +Ema +Estefanie +Evan +Farrah +Galilea +Gayane +Gerardo +Giovanni +Gizelle +Grisel +Guillermina +Hayden +Iesha +Isabell +Isobel +Ivett +Jacquelyne +Jaden +Jael +Janai +Janneth +Jayda +Jaylen +Jeanna +Jeanne +Jennica +Jessy +Johnna +Jonnie +Jordann +Jordanne +Jovita +Joycelyn +Jurnee +Kaelynn +Kajal +Kamille +Kanani +Karine +Karisma +Karol +Karolyn +Karrie +Kasia +Kay +Keilani +Keira +Kelsee +Keyana +Keyonna +Kierstin +Kimberlin +Kirra +Kyana +Latisha +Lilianna +Lilybeth +Lindsy +Linette +Linsey +Liset +Lorissa +Luciana +Lucina +Lucinda +Macayla +Magnolia +Maha +Makaila +Mayela +Mccall +Meriah +Michal +Milagro +Milagros +Mildred +Mitzy +Monae +Myisha +Myriah +Nala +Nayelly +Noely +Odessa +Phoenix +Phyllis +Piper +Raegan +Raeleen +Raena +Rafaela +Raychel +Reem +Robert +Rossy +Roya +Saba +Sariah +Sean +See +Selma +Shabnam +Shae +Shaelyn +Sherri +Simona +Stephania +Suleima +Tasia +Tayla +Teanna +Tesia +Thao +Tisha +Trinidad +Tristyn +Vanna +Wendi +Winnie +Ximena +Xitlaly +Yaquelin +Yenifer +Addie +Aiyana +Akira +Alani +Alyce +Aminah +Anabell +Andriana +Anjela +Arlin +Asiah +Audriana +Aysha +Azalea +Berlyn +Blaire +Brett +Breyana +Briann +Briauna +Britnie +Britta +Britteny +Bronwyn +Brooklynn +Brynna +Cady +Cameryn +Camryn +Carlyn +Carmina +Casie +Cassaundra +Cassondra +Caylee +Ceara +Charisse +Charlee +Cheyene +Chyenne +Ciana +Clair +Claritza +Codie +Collette +Dajanae +Damariz +Deanne +Deirdre +Delany +Desirea +Destanie +Dinora +Dru +Elinor +Eloise +Elysha +Emelin +Emeline +Emelyn +Emmy +Fernando +Georgie +Gissela +Giuliana +Grayson +Hanan +Harpreet +Hosanna +Icela +Ileen +Iran +Isel +Ivania +Iyana +Jacey +Jadira +Jahaira +Jalyn +Jamilex +Janey +Jasmina +Jeanie +Jenessa +Jenica +Jerrica +Jesslyn +Jessyca +Jezebel +John +Johnnie +Joleen +Josselin +Josseline +Judit +Kaili +Kailynn +Kaitlan +Kalina +Karoline +Karyna +Kasie +Kathlyn +Katiana +Katty +Kaycie +Keiry +Kelci +Kellyn +Kennedi +Kera +Kiani +Kiya +Krysten +Kyara +Kymberli +Kyndra +Kyrsten +Laryssa +Leigh +Lianne +Lisandra +Lissa +Lorie +Lusine +Mae +Magen +Maiyer +Makala +Maleni +Malorie +Mariadelcarmen +Mariaisabel +Mariella +Marivel +Marlin +Martin +Marya +Marysa +Mekayla +Melany +Merari +Michala +Millie +Monzerrat +Myesha +Mykayla +Nadya +Nailah +Nakia +Nely +Nicholle +Nicki +Osiris +Prisilla +Raelyn +Raeven +Raevyn +Reana +Reema +Reena +Rheanna +Rian +Rina +Robbie +Sabreena +Samone +Samuel +Sanam +Sarahy +Selah +Seleena +Shakia +Shakira +Shane +Shanell +Shanika +Shayda +Shaylee +Shelbee +Sheryl +Siobhan +Steffany +Suleyma +Suzana +Svetlana +Talisha +Tami +Tarin +Tatiyana +Tawnee +Tenaya +Tesla +Tiare +Torri +Tory +Tyla +Verenise +Vivien +Wanda +Wesley +Xochil +Yanelly +Yuritzi +Zaina +Zoie +Zully +Abagail +Agustina +Alecia +Alexzandria +Alise +Alixandra +Almadelia +Alyx +Amrita +Analyssa +Andreana +Andreya +Anessa +Angelena +Anny +Antonio +Areana +Aries +Arin +Ashia +Aubry +August +Autum +Ayme +Azalia +Benjamin +Berenis +Berlin +Bethanie +Bianey +Brady +Breauna +Breena +Breona +Breyanna +Brinda +Caila +Caley +Camelia +Caren +Carleigh +Carlene +Cayley +Caylie +Cecila +Cesar +Cielo +Cinnamon +Cipriana +Clarita +Crystina +Dacia +Darling +Dasha +Dayanara +Dayanna +Daysia +Deeanna +Deidre +Delina +Demetria +Diego +Dolly +Dominica +Edgar +Elianna +Elijah +Elisabet +Elli +Elysa +Emelia +Emery +Emmeline +Ernestine +Estelle +Estephania +Evelia +Evelina +Evelynn +Evette +Ezra +Fayth +Francia +Genoveva +Georgette +Gisele +Gisell +Giulia +Glory +Haide +Hailie +Halee +Heba +Hortencia +Ibeth +Ilce +Indigo +Irasema +Irena +Irina +Ivone +Ixchel +Izabel +Jaclynn +Jacqualyn +Jalisa +Jamileth +Janaya +Jannie +Jason +Jaycee +Jaylyn +Jennah +Jennefer +Jerica +Jesika +Jewels +Jezabel +Josette +Jourdan +Justene +Justyce +Justyne +Kadie +Kaitlen +Kaitlynne +Kalah +Kallie +Kamaria +Kameron +Kamila +Kary +Karyssa +Katey +Keiana +Kelani +Kennya +Keonna +Kiely +Kierstyn +Kimber +Kiona +Kirstyn +Kyrah +Kyrie +Laken +Lanisha +Layne +Leeanna +Leighann +Leilanie +Leonela +Leslee +Leslye +Lissett +Livia +Livier +Luana +Luzmaria +Magda +Maja +Mandi +Margie +Mariadelaluz +Marin +Mario +Marleni +Marsha +Marygrace +Maryn +Mickayla +Miryam +Misti +Monisha +Mychaela +Mykaela +Najah +Nalleli +Naomy +Nava +Nena +Nicholas +Nicholette +Nida +Noreen +Nour +Nydia +Nyla +Ocean +Osmara +Pahoua +Paisley +Parisa +Peri +Phuong +Phylicia +Prisila +Rachele +Raeanne +Rajanee +Randie +Ravyn +Raya +Rayanna +Rayanne +Rayven +Rebekkah +Reilly +Reonna +Ria +Richard +Roseanna +Rosina +Rowan +Sabryna +Salvador +Samia +Sanjuana +Sawyer +Sayra +Seanna +Shanon +Shara +Shavon +Shaylynn +Sheree +Sherilyn +Shyenne +Silvana +Simran +Sloane +Sofie +Solana +Somer +Stacia +Stephane +Stephannie +Sujey +Susanne +Tahlia +Tala +Taline +Tamia +Tamika +Tamira +Tanaya +Tatyanna +Tavia +Tereza +Teri +Tiarra +Toriana +Tram +Ursula +Vera +Verenis +Vida +Viktoria +William +Winona +Yohana +Yoselyn +Zachary +Zakiya +Zana +Zaria +Zeinab +Zitlali +Zurisadai +Aanchal +Abrianna +Adelita +Adreana +Adreanna +Adrina +Ailyn +Aine +Ajanae +Alesa +Alessa +Alexius +Alida +Alixandria +Alliah +Alyssamarie +Amada +Amal +Amaya +Anahy +Anaisabel +Anaiza +Anh +Ania +Annais +Annalee +Annisa +Antonisha +Anysa +Arabella +Ariadne +Arian +Arisa +Arlena +Arline +Armando +Asucena +Audrie +Aurea +Austyn +Avigail +Aviva +Bailie +Baily +Baleria +Biviana +Breeann +Brenae +Brigitta +Brina +Brittanee +Brittiny +Briza +Bryan +Cailyn +Camellia +Cari +Carmel +Caryn +Cassi +Cassy +Cesia +Chana +Chanda +Chante +Chantell +Chardonnay +Charis +Charlette +Chioma +Chole +Christiane +Clarice +Claudine +Colby +Cortnie +Cosette +Cydnee +Cyrena +Dakotah +Dalilah +Damara +Danisha +Darlin +Darline +Daysha +Daysy +Dazhane +Delana +Della +Denia +Desaree +Desirey +Destanee +Destynee +Devine +Deysy +Dominic +Donisha +Dyanna +Eduardo +Elda +Elideth +Ellyn +Elysia +Eman +Emelie +Emiko +Emmaline +Erendida +Erik +Erinn +Estrellita +Fabiana +Falon +Fantasia +Faye +Felicitas +Florencia +Gabby +Gayle +Gena +Ger +Gia +Grabiela +Haileigh +Han +Harlee +Harlie +Haruna +Hasmik +Hellen +Henna +Ilda +Irie +Ismenia +Israel +Itati +Jacklin +Jacquline +Jakeline +Jamaica +Jamesha +Jamey +Jammie +Jarely +Jaritza +Jaslyn +Jasmaine +Jasminne +Jazelle +Jazlynn +Jazmen +Jelena +Jenine +Jennine +Jensen +Jerri +Jina +Jisela +Jo +Jolena +Jordana +Jordon +Jordynn +Julieanna +Kailie +Kaira +Kaliah +Kally +Kalynn +Kamari +Kana +Karry +Kasha +Kassaundra +Kateri +Katharyn +Katina +Keaira +Keeana +Kelcy +Keyona +Keziah +Kionna +Kitzia +Kodie +Koral +Korey +Korinne +Korissa +Kortni +Kylah +Kylene +Lakeisha +Lan +Lanee +Lanie +Latoya +Lela +Lenora +Leyla +Libby +Liesl +Lindy +Linh +Lisett +Lizandra +Lolita +Lorelei +Loretta +Lynnette +Lysette +Mackenzi +Madai +Madalynn +Madelin +Madisson +Mahogany +Mairani +Malaysia +Manon +Mareena +Marelyn +Mariadelosang +Mariafernanda +Marizol +Marline +Marriah +Martiza +Marybel +Mattison +Meera +Mekenna +Melani +Melida +Melony +Merry +Micheal +Michela +Mira +Misa +Misha +Mishelle +Muriel +Myeisha +Mykala +Nabila +Nai +Naila +Navneet +Nechama +Nelida +Niamh +Nickole +Nicollette +Nissa +Noeli +Noelia +Norah +Nuria +Nuvia +Otilia +Perlita +Perri +Polly +Porsha +Portia +Prescilla +Priscella +Rachell +Rania +Raquelle +Raveena +Rawan +Reann +Remi +Rivka +Roni +Roselyn +Roshni +Roslyn +Rosy +Ryanna +Sabah +Samaria +Sammantha +Sareen +Schuyler +Seana +Selin +Shalyn +Shaniece +Shaniqua +Shante +Shantelle +Shardae +Sharmaine +Sharron +Shawntel +Shereen +Sherlyn +Sheyanne +Sheyenne +Shiann +Shila +Shyanna +Sierrah +Silva +Sinclaire +Siomara +Soleil +Sonora +Stefania +Steffani +Stepanie +Stephenie +Steven +Stormie +Sue +Suzi +Suzzette +Tailor +Taja +Taliyah +Tana +Tanesha +Tarryn +Tashina +Taylin +Terilyn +Thanya +Theodora +Tiahna +Tichina +Tinamarie +Tirzah +Tonie +Torrie +Tosha +Tran +Tressa +Trini +Tyesha +Valentine +Van +Vanity +Vashti +Vasti +Vienna +Viola +Vy +Willa +Yael +Yalitza +Yaneth +Yezenia +Yocelin +Yoceline +Yocelyn +Zabrina +Zayna +Zenobia +Zia +Zoya +Zulma +Zuri +Zyanya +Abbygail +Abilene +Abrina +Adalhi +Adelle +Adena +Aditi +Adora +Adria +Afton +Ai +Aiko +Aissa +Ajah +Ajee +Alanah +Alaura +Aleesha +Aleeyah +Aleeza +Aleshia +Alesia +Alessia +Alexandrina +Alexes +Alexsis +Alexxa +Aleyah +Aleyda +Aleyna +Aliana +Aliea +Aline +Alishia +Althea +Alva +Alvina +Alyna +Alyshia +Amala +Ambrosia +Amena +Amirah +Amita +Amna +Anabelen +Anahid +Analicia +Analilia +Anallely +Anarosa +Andraya +Andy +Angele +Aniya +Anjanette +Annel +Annessa +Ansley +Antonella +Antonette +Aoife +Aranza +Ariadna +Arisbeth +Arlen +Arlet +Armida +Arnelle +Ashlan +Ashlen +Ashlynne +Ashna +Aubrianna +Augusta +Augustina +Austen +Ayah +Ayaka +Ayumi +Azhane +Aziza +Bayleigh +Becca +Belicia +Beronica +Berta +Betsabe +Betsaida +Blossom +Breaunna +Brie +Brieann +Brissa +Brookelyn +Byanca +Byanka +Calli +Cami +Camile +Camry +Candyce +Carin +Carmella +Carrina +Carrissa +Carsen +Cashmere +Cecile +Chanell +Channing +Charise +Chenoa +Chessa +Chris +Chrissy +Christel +Christinejoy +Claudette +Corena +Corie +Corin +Courtni +Cree +Cristen +Cristiana +Cristin +Cyndi +Daeja +Daesha +Daizhane +Daizy +Dajia +Dallana +Daniell +Danny +Dara +Darbie +Darci +Darion +Debby +Deicy +Delainey +Delila +Destyni +Deven +Dezaree +Dezhane +Divina +Domenique +Donia +Donielle +Donya +Dymond +Ebone +Ebonee +Edie +Edlyn +Elan +Elayna +Ellena +Elora +Elsi +Elysse +Emelina +Emi +Emilly +Emory +Erandi +Esly +Esmerelda +Fannie +Felisa +Flavia +Forrest +Franki +Gal +Genavieve +Genecis +Genelle +Genesee +Genevie +Gissell +Greer +Haidee +Harli +Harneet +Haruka +Haya +Hector +Holland +Holley +Honey +Idania +Ilianna +Inari +Iriana +Isaac +Isadora +Ivey +Ivonna +Jacinta +Jackqueline +Jacquelene +Jacqulyn +Jadine +Jadyn +Jailene +Jalea +Jalen +Jalynn +Jamielee +Jamilla +Jamisha +Janaye +Janina +Janira +Javier +Jayden +Jaymie +Jeanett +Jelissa +Jemma +Jenalyn +Jenee +Jenevieve +Jeni +Jensine +Jeri +Jesseca +Jessel +Jesselyn +Jhoanna +Jissel +Jocelynne +Jonae +Jonelle +Joni +Jonna +Jori +Jossie +Joya +Jubilee +Justus +Kabrina +Kadisha +Kahlia +Kailani +Kaile +Kalea +Kaleah +Kaleena +Kalei +Kami +Kamisha +Kamry +Karis +Karlene +Katerine +Katharina +Katherina +Katheryne +Katrin +Kattie +Kavita +Kayana +Kazandra +Kealani +Keianna +Kenisha +Keona +Kerissa +Kerrigan +Khadija +Khristina +Kiahna +Kiaira +Kiarra +Kimberlie +Kiyana +Klara +Kora +Koraima +Koryn +Koryna +Kristel +Krystin +Krystine +Kyia +Kyler +Kyli +Kyndall +Lai +Lanessa +Laney +Lashawn +Leea +Leighanna +Lesslie +Liane +Lilibet +Lindsie +Linnette +Lirio +Lissete +Love +Lovely +Lyna +Lyndsie +Lynna +Madaleine +Madelynne +Magdelena +Mahalia +Maisie +Malak +Mali +Manda +Mandie +Mao +Marah +Marco +Maresa +Maressa +Margaux +Marialuisa +Mariko +Marily +Marine +Markeisha +Markesha +Marki +Marlenne +Marlina +Marquisha +Marshay +Marylynn +Maryrose +Mathilda +Matilde +Mattea +Mckinley +Mckinzie +Meena +Megumi +Mei +Meilani +Mele +Melena +Melia +Meline +Memory +Merisa +Meron +Miah +Mica +Michayla +Mickaela +Midori +Mikelle +Mikyla +Minna +Miriah +Morena +Muna +Mya +Myla +Myrissa +Mystic +Nada +Nadja +Naima +Nalani +Nanette +Narine +Natassja +Nathali +Natsumi +Nayelie +Nayelli +Neelam +Negin +Neira +Nerissa +Neyra +Ngoc +Niara +Nikia +Nycole +Nyesha +Nyssa +Oceana +Odaliz +Oliva +Olyvia +Omar +Onika +Panhia +Payal +Pedro +Prudence +Qiana +Rafael +Rahel +Randa +Raylynn +Remington +Rickie +Roberto +Romelia +Romina +Ronit +Rosalind +Roselynn +Rudy +Ryley +Sable +Sabrena +Sahra +Saleena +Samanatha +Sandeep +Saphire +Sarafina +Sarin +Sascha +Sayuri +Scout +Seidy +Sela +Serene +Sevana +Shaela +Shai +Shaiann +Shalini +Shameka +Shanae +Shanique +Shanti +Shari +Shawnna +Shaylin +Shaylyn +Shelsea +Shilo +Shirin +Shreya +Sigrid +Silvina +Sonali +Sondra +Stephanny +Sterling +Sulma +Sumer +Suzan +Suzie +Suzy +Symantha +Tabytha +Tahnee +Taleah +Tannya +Tarrah +Tawni +Tawnya +Taya +Taylour +Teagan +Teaira +Teera +Tegan +Teja +Tempestt +Tessie +Thais +Thamara +Tiaira +Tiani +Tiffini +Tiffiny +Tomasa +Trianna +TRUE +Tuesday +Tyara +Uma +Unknown +Vi +Yajayra +Yamileth +Yared +Yarelli +Yasaman +Yeimi +Yen +Yeni +Yissel +Yoanna +Young +Yovanna +Yuki +Yvanna +Zeina +Zuleica +Jessica +Ashley +Stephanie +Jennifer +Emily +Samantha +Sarah +Vanessa +Elizabeth +Maria +Alexis +Jasmine +Kimberly +Melissa +Amanda +Alyssa +Michelle +Hannah +Rachel +Taylor +Andrea +Victoria +Natalie +Megan +Jacqueline +Brianna +Lauren +Nicole +Alexandra +Daisy +Sabrina +Kayla +Cynthia +Madison +Rebecca +Karina +Danielle +Diana +Katherine +Brenda +Monica +Brittany +Angelica +Marissa +Jocelyn +Alondra +Christina +Crystal +Gabriela +Alejandra +Julia +Savannah +Amber +Sara +Courtney +Leslie +Karen +Ana +Tiffany +Nancy +Veronica +Briana +Laura +Adriana +Destiny +Mariah +Erika +Sierra +Olivia +Abigail +Haley +Yesenia +Sydney +Amy +Guadalupe +Cassandra +Evelyn +Anna +Alicia +Angela +Bianca +Emma +Jasmin +Kelly +Allison +Erica +Brooke +Valerie +Cindy +Sandra +Shelby +Breanna +Ariana +Morgan +Kaitlyn +Kelsey +Cheyenne +Karla +Sophia +Mary +Madeline +Jordan +Selena +Miranda +Jazmin +Claudia +Erin +Alexandria +Desiree +Gabrielle +Christine +Melanie +Marisol +Paige +Monique +Isabel +Chelsea +Wendy +Shannon +Hailey +Katelyn +Dominique +Katie +Priscilla +Mayra +Patricia +Grace +Denise +Cristina +Isabella +Jamie +Kristen +Alexa +Catherine +Jenna +Rosa +Celeste +Heather +Joanna +Claire +Kathryn +Carolina +Ruby +Caitlin +Chloe +Caroline +Cecilia +Julie +Liliana +Vivian +Gabriella +Janet +Genesis +Bailey +Esmeralda +Daniela +Mackenzie +Valeria +Brittney +Arianna +Lindsey +Cassidy +Kassandra +Marisa +Lorena +Kylie +Lisa +Raquel +Paola +Jenny +Clarissa +Jazmine +Michaela +Angelina +Hayley +Kristina +Mia +Teresa +Audrey +Gloria +Katrina +Kathleen +Jade +Marina +Leah +Summer +Jocelyne +Irene +Marlene +Linda +Viviana +Tatiana +Maya +Miriam +Alma +Kaitlin +Mikayla +Serena +Carina +Kaylee +Sofia +Angel +April +Zoe +Martha +Kiana +Molly +Naomi +Yvette +Sharon +Lizbeth +Carmen +Krystal +Carly +Justine +Sonia +Ariel +Camille +Alison +Carla +Maritza +Elena +Lindsay +Cristal +Leticia +Faith +Susana +Mariana +Maribel +Adrianna +Margarita +Caitlyn +Kendra +Margaret +Casey +Natasha +Noemi +Blanca +Rebekah +Kristin +Mckenna +Natalia +Janelle +Marilyn +Lesley +Dana +Heidi +Paulina +Autumn +Holly +Rachael +Yvonne +Bethany +Edith +Tania +Madeleine +Nina +Araceli +Juliana +Meghan +Beatriz +Tanya +Yasmin +Helen +Jaqueline +Deanna +Kendall +Ruth +Annie +Tara +Stephany +Perla +Mercedes +Esther +Jeanette +Lily +Makayla +Pamela +Brandy +Elisa +Eva +Ciara +Kathy +Susan +Jacquelyn +Fabiola +Gina +Itzel +Riley +Rocio +Isabelle +Alexus +Amelia +Sandy +Stacy +Alana +Alexia +Alina +Alissa +Sarai +Angie +Reyna +Carolyn +Hanna +Virginia +Bridget +Estefania +Renee +Dulce +Julianna +Brandi +Kyra +Yadira +Daniella +Judith +Arlene +Berenice +Mikaela +Giselle +Lesly +Nadia +Elaine +Tiana +Deja +Lucia +Aimee +Cierra +Jillian +Melody +Odalys +Emely +Kiara +Meagan +Roxana +Yessenia +Dalia +Lizette +Nayeli +Silvia +Johanna +Ashlee +Alice +Imani +Nataly +Sophie +Asia +Lydia +Elise +Savanna +Nathalie +Tessa +Delaney +Josephine +Luz +Sarahi +Whitney +Jordyn +Charlotte +Kate +Kirsten +Larissa +Lillian +Tyler +Yolanda +Carissa +Graciela +Hope +Regina +Cheyanne +Darlene +Kennedy +Makenna +Anne +Marie +Talia +Gladys +Mariela +Tina +Destinee +Iris +Kyla +Allyson +Ellen +Kara +Kristine +Raven +Tabitha +Aileen +Aubrey +Joselyn +Brenna +Jessie +Theresa +Viridiana +Mckenzie +Krista +Norma +Sylvia +Eileen +Elisabeth +Fatima +Clara +Kylee +Deborah +Jane +Kira +Maricela +Stacey +Ashlyn +Diane +Paula +Noelle +Gianna +Kasey +Lucy +Melina +Selina +Breana +Felicia +Mireya +Shania +Tori +Anastasia +Ivy +Melinda +Francesca +Rosemary +Yasmine +Alisha +Lizeth +Micaela +Nicolette +Precious +Tracy +Angelique +Barbara +Ivette +Jaclyn +Lucero +Vanesa +Athena +Sadie +Bryanna +Denisse +Esperanza +Rose +Sasha +Annette +Carol +Kenia +Madelyn +Rebeca +Katelynn +Yajaira +Emilee +Estefani +Estefany +Joana +Tamara +Thalia +Antonia +Colleen +Diamond +Fernanda +Janette +Karissa +Sheila +Tayler +Ashleigh +Ebony +Ingrid +Nichole +Anissa +Chanel +Connie +Dania +Toni +Britney +Janice +Joyce +Shirley +Belen +Candice +Genevieve +Reina +Chelsey +Kaila +Kellie +Kristy +Leilani +Odalis +Arielle +Ivonne +Joy +Katia +Kenya +Cinthia +Elsa +Lacey +Mallory +Celina +Fiona +Haylee +Rachelle +Robin +Aurora +Casandra +Griselda +Aliyah +Catalina +Christy +Dakota +Juana +Julissa +Magdalena +Nia +Paloma +Simone +Rosario +Sally +Sidney +Yamilex +Astrid +Desirae +Irma +Lisette +Nikki +Phoebe +Janessa +Joanne +Kailey +Adilene +Celia +Frances +Marisela +Roxanne +Taryn +Yazmin +Damaris +Jackeline +Kelli +Nora +Ericka +Juanita +Kelsie +Lidia +Maggie +Maira +Sarina +Tatyana +Christian +Devin +Kaitlynn +Eliza +Lena +Marcela +Shayla +Stefanie +Tierra +Aracely +Areli +Celine +Lourdes +Alexandrea +Donna +Jada +Anita +Ashly +Corina +Flor +Kianna +Moriah +Olga +Rita +Skylar +Arely +Candace +Jacklyn +Peyton +Savanah +Xochitl +Alanna +Beverly +Consuelo +Eden +Janae +Tiara +Abby +Annika +Dayana +Emilie +Helena +Roxanna +Adrienne +Evelin +Hunter +Josefina +Suzette +Alisa +Eunice +Judy +Julianne +Marlen +Nadine +Ann +Ashlynn +Brianne +Devon +Johana +Josie +Juliette +Vicky +Aaliyah +Bonnie +Cameron +Dianna +Kasandra +Leanna +Lina +Lissette +Marianna +Sienna +Alyson +Iliana +Justice +Katharine +Lilian +Macy +Serina +Shayna +Baylee +Charlene +Christiana +Georgina +Hazel +Juliet +Yoselin +Ciera +Janeth +Jaquelin +Joceline +Lilibeth +Luisa +Mara +Rubi +Anabel +Hana +Heidy +Jaime +Jenifer +Joseline +Lea +Michele +Pauline +Robyn +Skyler +Tia +Tiffani +Cassie +Drew +Eliana +Katarina +Selene +Skye +Tess +Yasmeen +Yessica +Corinne +Emilia +Jessika +Kaela +Tianna +Aisha +America +Azucena +Iridian +Magaly +Malia +Melisa +Xiomara +Chantel +Isela +Lexus +Zulema +Breanne +Bridgette +Candy +Carrie +Clare +Delia +Dolores +Hailee +Hillary +Kaylin +Lilia +Mai +Myra +Paris +Ryan +Shawna +Sonya +Belinda +Debbie +Georgia +Kiley +Lara +Magali +Rochelle +Sage +Anahi +Anais +Clarisa +Estela +Estephanie +Jackie +Kelley +Makenzie +Natali +Nelly +Rosalinda +Tammy +Valentina +Bernice +Breann +Callie +Cathy +Eleanor +Gillian +Jocelin +Liana +Lorraine +Shyanne +Xena +Beatrice +Bertha +Cara +Chantal +Destiney +Dina +Jackelyn +Katlyn +Laurel +Meredith +Nathaly +Rayna +Avery +Christa +Danica +Daphne +Deisy +Elissa +Elyssa +Faviola +Francisca +Giovanna +Kari +Karly +Madalyn +Maricruz +Maryjane +Payton +Yahaira +Amairani +Bryana +Demi +Essence +India +Justina +Kiersten +Lynette +Maddison +Rosie +Shea +Antoinette +Brittani +Carley +Dora +Halie +Jessenia +Kaylie +Mariam +Pearl +Raylene +Susanna +Trinity +Tyra +Violet +Yaritza +Zaira +Alena +Alize +Betsy +Bria +Cecelia +Dorothy +Ella +Gisselle +Hilda +Kassidy +Kristal +Mari +Mindy +Reanna +Suzanne +Alaina +Chandler +Cortney +Estrella +Gisela +Isis +Kaley +Kiera +Marcella +Mariel +Randi +Alessandra +Aspen +Bailee +Bernadette +Elvira +Haleigh +Ivana +Jeannette +Jesenia +Joselyne +Kali +Kayleigh +Kelsi +Kristi +Leanne +Marlena +Rhiannon +Scarlett +Shelly +Unique +Verenice +Angeline +Coral +Devyn +Jacquelin +Jailene +Jazmyn +Jennie +Kacey +Kacie +Karlie +Kathia +Katya +Kaylyn +Keila +Kimberley +Kourtney +Lauryn +Lilly +Logan +Lyric +Saira +Stella +Yareli +Aida +Alysha +Alysia +Annamarie +Ashlie +Brooklyn +Carlee +Elvia +Emerald +Salina +Trisha +Anika +Annalise +Davina +Gema +Kailee +Leila +Lupita +Mariaguadalupe +Maxine +Monika +Monserrat +Rosio +Rylee +Shaina +Stevie +Sulema +Sydnie +Abril +Adela +Amaris +Annabelle +Ava +Bobbie +Dayna +Grecia +Harley +Heaven +Kaelyn +Kierra +Layla +Lexie +Loren +Nallely +Nayely +Zoey +Alex +Alycia +Aylin +Camila +Carlie +Dahlia +Domonique +Doris +Jacinda +Jolene +Jose +Liza +Meaghan +Mirella +Misty +Mona +Ramona +Sade +Samara +Simran +Soledad +Tatianna +Vianey +Yesica +Alia +Aubree +Brielle +Cayla +Charity +Chelsie +Danika +Darian +Delilah +Ellie +Elyse +Joselin +Karli +Kristyn +Lana +Marta +Siena +Sky +Ani +Becky +Betty +Carli +Cheryl +Christie +Corrina +Haylie +Ileana +Jazlyn +Joann +Kendal +Lia +Lisbeth +Mirian +Mollie +Noemy +Sydnee +Allie +Amalia +Amie +Ashely +Ashton +Ayla +Bianka +Breeana +Dianne +Elaina +Elisha +Evangelina +Francis +Geraldine +Gwendolyn +Halle +Iman +Joelle +Kelsea +Lexi +Lilliana +Lori +Marlyn +Maureen +Shyann +Tristan +Adrian +Aide +Aleah +Allegra +Amani +Anjelica +Blair +Brigitte +Cora +Dallas +Dylan +Janel +Janine +Jesse +Jill +Jodi +Katerina +Kim +Kirstin +Mackenna +Miracle +Mirna +Montana +Myranda +Ofelia +Pilar +Priya +Saray +Shantel +Shauna +Sherry +Stefany +Alyssia +Ashli +Darla +Kailyn +Katy +Kayli +Keely +Lizet +Lynn +Maegan +Michael +Noel +Regan +Tamia +Tasha +Terra +Anai +Anayeli +Annabel +Ayana +Chase +Edna +Janell +Jena +Jennyfer +Jesica +Karlee +Katelin +Katheryn +Maia +Mandy +Marley +Mckayla +Noor +Raina +Rikki +Rosalie +Serenity +Sirena +Stefani +Vannessa +Xochilt +Andreina +Armani +Brisa +Chynna +Concepcion +Cori +Cydney +Denice +Destany +Franchesca +Isabela +Jaquelyn +Kaleigh +Keana +Lesli +Madisen +Martina +Micah +Mina +Mitzi +Reagan +Sheridan +Soraya +Star +Susie +Yaneli +Alba +Aleena +Alysa +Annmarie +Aryana +Ashanti +Ayanna +Catrina +Christen +Cristian +Daija +Daisha +Delanie +Harmony +Izabella +Julieta +Kristie +Kyleigh +Luna +Marian +Marysol +Milan +Morelia +Quinn +Rosalia +Zaria +Ali +Aliya +Brianda +Britany +Brook +Cambria +Camilla +Cinthya +Daniel +Elsie +Francine +Frida +Hallie +Ilana +Isamar +Jamila +Jocelynn +Josselyn +Kaycee +Krysta +Krystina +Leann +Leeann +Lyndsey +Madisyn +Maranda +Mayte +Monet +Nereyda +Paulette +Petra +Richelle +Ryann +Sequoia +Shana +Tracey +Trina +Tristin +Yanet +Abbey +Acacia +Adrianne +Aime +Aja +Aliza +Amira +Analisa +Cherish +Chrystal +Corinna +Darby +Dawn +Dennise +Devan +Gladis +Glenda +Janely +Jannet +Karley +Kathya +Kayley +Kaylynn +Kerry +Kimberlee +Kinsey +Korina +Laila +Leana +Mercy +Merissa +Mimi +Priscila +Rosemarie +Shivani +Stacie +Symone +Tatum +Tristen +Valarie +Vianca +Yarely +Yomira +Ada +Annalisa +Annemarie +Anthony +Anyssa +Dalila +Dejah +Elia +Elizabet +Eloisa +Geneva +Jayme +Jessi +Jimena +Jovanna +Karena +Madelynn +Makaila +Maryam +Maryann +Natalee +Niki +Nikita +Nohemi +Pa +Princess +Raelene +Rena +Vicki +Zena +Addison +Aiyana +Alanis +Analy +Anisa +Blake +Bobbi +Brittni +Celena +Chasity +Chyna +Dajah +Danae +Eryn +Hollie +Ivanna +Jami +Jeniffer +Keren +Kia +Kristian +Leandra +London +Malaysia +Marilu +Marilynn +Meliza +Mikala +Piper +Rylie +Sabina +Sahar +Stephani +Tricia +Valery +Adeline +Alayna +Alexxis +Amari +Aria +Ariella +Aubrie +Austin +Bibiana +Brandee +Breonna +Caitlynn +Caren +Chanelle +Cintia +Colette +Daysi +Elexis +Hilary +Idalis +Ines +Irania +Jana +Jasmyn +Jean +Juan +Kaya +Klarissa +Lizbet +Louise +Manuela +Marbella +Mariaelena +May +Melia +Mira +Rianna +Rosamaria +Salena +Sariah +Sommer +Starr +Tawny +Violeta +Xenia +Yuliana +Ambar +Amberly +Anel +Anessa +Annelise +Anya +Aryanna +Avalon +Berenise +Biridiana +Brandie +Brigette +Bryce +Cassondra +Ciarra +Daja +David +Deana +Elva +Florence +Gretchen +Ilene +Ilse +Imelda +Jackelin +Janie +Jasleen +Jasmyne +Jaycie +Jazzmine +Jenelle +Kayleen +Kerri +Kimberlyn +Lacy +Linnea +Maritsa +Marla +Maura +Michela +Naomy +Pooja +Pricilla +Renae +Roberta +Shawnee +Sheena +Shelley +Socorro +Teresita +Thania +Thelma +Vannesa +Winter +Yamilet +Yamileth +Aislinn +Alexi +Alexys +Allysa +Allyssa +Amara +Angeles +Angelita +Anjali +Aurelia +Brina +Brittny +Cecily +Chantelle +Chelsy +Christopher +Chyenne +Constance +Desire +Elana +Emani +Estella +Ester +Gabriel +Giana +Gracie +Jaimie +Janett +Janna +Jaycee +Jayde +Joan +Jovana +Kaina +Karishma +Kenna +Kori +Lila +Louisa +Lynda +Macey +Marianne +Marielle +Marleny +Melany +Mercedez +Mildred +Myriam +Nidia +Nubia +Racquel +Reilly +Rene +Rhianna +Ricki +Rowan +Salma +Savana +Sayra +Sera +Shani +Shanice +Sheyla +Shyla +Sindy +Tamar +Vivianna +Winnie +Yalitza +Yanely +Yenifer +Alix +Amairany +Amina +Anamaria +Anisha +Asha +Audrianna +Azalea +Belle +Bree +Brieanna +Brooklynn +Brynn +Charmaine +Christal +Chyanne +Courteney +Cristy +Danya +Darcy +Dejanae +Destinie +Deyanira +Elle +Evan +Evangeline +Fallon +Gilda +Ireland +Jazmyne +Jewel +Joslyn +Kalia +Kalie +Kalyn +Karoline +Kathrine +Kaylah +Kaylene +Keisha +Kortney +Laurie +Lexis +Lisset +Lizett +Maile +Makena +Marjorie +Mellisa +Michel +Mikaila +Minerva +Nereida +Nisha +Patrice +Presley +Racheal +Rosalva +Sydni +Tamera +Tanisha +Thao +Tiffanie +Traci +Yanira +Zenaida +Aidee +Alexander +Alexsis +Alisia +Analicia +Andie +Arleen +Bella +Beth +Briseida +Cailin +Candelaria +Carmela +Citlali +Dara +Dena +Destini +Elysia +Eve +Farrah +Felicity +Frankie +Gemma +Ginger +Haven +Inez +Jamilex +Jayla +Jesus +Juliann +Julisa +Kadie +Kalina +Karely +Kyana +Liset +Lizzette +Lois +Mabel +Magda +Michaella +Michell +Monae +Myrna +Nayelli +Penelope +Priyanka +Rosaura +Saige +Terri +Veronika +Yajayra +Yaquelin +Zahra +Zuleyma +Amethyst +Anastacia +Angelia +Araseli +Cherokee +Christin +Coraima +Debora +Denisha +Devina +Eleni +Elianna +Felisha +Flora +Gaby +Gissel +Haily +Haydee +Hayden +Idalia +Jayda +Jaymee +Jazzmin +Jeanine +Jeanne +Jeannie +Jodie +Joycelyn +Kalani +Kalynn +Kamryn +Karin +Katlynn +Keanna +Keilani +Kelsy +Kennedi +Keri +Kevin +Khadija +Kristiana +Lianna +Liberty +Lili +Lorna +Lupe +Macie +Maiya +Marcia +Marialuisa +Miguel +Mika +Mitzy +Nichelle +Nicolle +Nika +Raeann +Rayanne +Rosalba +Sammantha +Sarena +Scarlet +Shanna +Sharlene +Shelbie +Stacia +Staphany +Stefania +Stephania +Susannah +Vania +Willow +Xochil +Yecenia +Yocelyn +Yoselyn +Abbie +Adelina +Alani +Alea +Alejandro +Anakaren +Analise +Anamarie +Aysia +Betsabe +Brittaney +Brittnee +Carmina +Celest +Cheyann +Cleo +Daijah +Danyelle +Dasha +Dasia +Dayanara +Dionna +Elicia +Erendira +Estephania +Greta +Gricelda +Hanah +Isabell +Isaura +Ivon +Jacquelyne +Jael +Jaylene +Joshua +Kai +Kaili +Karolina +Katlin +Keira +Kelcie +Keyana +Kirra +Kirstie +Layne +Leslye +Lillie +Lindy +Linsey +Madyson +Maha +Makaela +Malina +Mariadejesus +Maricarmen +Marily +Marlee +Marylin +Mellissa +Melyssa +Meranda +Micayla +Nanci +Nydia +Regine +Riana +Rosanna +Rosita +Saida +Sana +Sarahy +Shae +Shaelyn +Shay +Shayne +Siera +Sinai +Sonja +Spencer +Staci +Sunny +Suzanna +Synthia +Tasia +Thea +Tory +Venessa +Vianney +Viktoria +Vivien +Yoana +Yoseline +Aaron +Adelaide +Adina +Agnes +Akilah +Aliah +Anahit +Anali +Anaya +Andria +Arcelia +Arianne +Arriana +Audriana +Aura +Bailie +Billie +Brea +Cailey +Carlos +Carmelita +Cassaundra +Cathryn +Cristine +Daisey +Dannielle +Daysy +Debra +Demetria +Deziree +Emmalee +Geena +Genna +Gisella +Giuliana +Hali +Iesha +Itzayana +Jacey +Jahaira +Jaida +Janay +Janee +Jasmeen +Jayleen +Jaymie +Jenessa +Jonathan +Jordin +Julian +Kaeli +Katalina +Kelcey +Kendyl +Kiani +Kiran +Kyle +Lee +Leia +Leigh +Linh +Lola +Lucille +Lusine +Madaline +Madilyn +Maeve +Maleah +Malena +Malinda +Mariajose +Marin +Maryssa +Milagros +Moesha +Narda +Natalya +Nathalia +Nikole +Phoenix +Rayanna +Rayleen +Rayne +Rhea +Rio +Rosana +Roselyn +Selma +Shaniya +Shantal +Shelbi +Shianne +Shira +Sierrah +Sintia +Siobhan +Terry +Veda +Vera +Vilma +Xitlali +Yuridia +Abagail +Adele +Adreana +Alexsandra +Alora +Alyse +Amal +Amaya +Anabelle +Anahy +Andi +Angelika +Anh +Anneliese +Antonette +Ariadna +Aries +Aundrea +Ayesha +Aysha +Berlin +Breeanna +Brigid +Brittnie +Bryn +Cali +Camryn +Cari +Caryn +Caylee +Chantell +Chelsi +Cielo +Citlaly +Corey +Crisol +Daria +Denae +Desteny +Deven +Deysi +Dinah +Dominque +Dyanna +Emelia +Emmeline +Eric +Fanny +Genessis +Gisel +Gisell +Guillermina +Hortencia +Jaclynn +Janelly +Jenae +Jenise +Jennica +Jenniffer +Jessyca +Jourdan +June +Kaci +Kaelin +Kala +Kandice +Karisa +Karyna +Kenzie +Keyla +Khadijah +Kierstin +Kirby +Krystle +Kyrsten +Larisa +Leena +Leonor +Lilianna +Liz +Lora +Marcy +Maryah +Mileena +Mirka +Misha +Miya +Moira +Mykayla +Myriah +Najah +Neha +Nellie +Nicola +Nour +Octavia +Oriana +Patience +Patsy +Rana +Rebekka +Rina +Romina +Ronnie +Sabreena +Samira +Sedona +Selah +Seleste +Shanelle +Shaye +Shoshana +Silver +Sunshine +Tabatha +Taelor +Tarah +Teanna +Tiera +Trinidad +Venus +Wendi +Yulissa +Yuri +Abbigail +Abigale +Abrianna +Aditi +Ailyn +Alannah +Alecia +Alyna +Andrew +Angelena +Annamaria +Antionette +Ariane +Arlette +Arlyn +Aryn +Breeann +Brissa +Carson +Caylin +Cesilia +Champagne +Charisse +Cheri +Cherie +Cherry +Ciana +Cienna +Cody +Corrine +Danelle +Danna +Darien +Deena +Desirea +Devine +Dolly +Elida +Elisabet +Eloise +Emi +Enedina +Eugenia +Evelia +Evette +Farah +Gena +Irina +Ivania +Ivory +Izabel +Jacquelynn +Jaimee +Jalen +Jalyn +Jamesha +Janea +Janeen +Jannette +Jaslyn +Jaspreet +Jayna +Jensen +Jerica +Joleen +Josseline +Kacy +Kamaria +Kassie +Katty +Keara +Krysten +Lacie +Leeanne +Lilybeth +Lisandra +Lizabeth +Lizzet +Lluvia +Lucila +Luis +Maci +Madelin +Makala +Malorie +Maren +Margot +Mariadelcarmen +Marion +Marlin +Mattea +Melodie +Michal +Midori +Milagro +Montserrat +Nadya +Neftali +Nhi +Noelani +Odaliz +Osiris +Parker +Peggy +Raelynn +Raena +Remington +Remy +Renata +Rosalina +Rosalind +Rosalyn +Rosy +Sapphire +Sean +Shane +Shannen +Shante +Shasta +Shawn +Sheyenne +Suleyma +Talya +Tami +Tatyanna +Tera +Tereza +Tracie +Treasure +Tristyn +Vienna +Ximena +Xitlaly +Yuka +Zabrina +Zainab +Zara +Zariah +Zayra +Zoie +Zulma +Adrina +Ahtziri +Alanah +Aleesha +Alexes +Alexzandra +Alexzandria +Aleyna +Alyce +Amandeep +An +Angelic +Athziri +Aubriana +Audra +Azaria +Baylie +Beatris +Bethanie +Bianey +Breyanna +Briann +Bridgett +Brittanie +Caira +Catarina +Celene +Chance +Charlie +Chaya +Christianna +Claudette +Cruz +Crysta +Dani +Darlyn +Dayanna +Deserie +Dyana +Dyani +Eboni +Eduardo +Elba +Elexus +Emalee +Emeline +Evelina +Francisco +Gelsey +Giovanni +Gissell +Halley +Henna +Holland +Holli +Imari +Irais +Iran +Irasema +Ivett +Ivone +Jacob +Jaelyn +Janiece +Janneth +Jaylyn +Jazelle +Jazlynn +Jeanelle +Jennefer +Jody +Jorden +Jorge +Joseph +Ka +Kailah +Kaira +Kaitlan +Kalea +Kandace +Karol +Kasie +Kathie +Katina +Keyanna +Khalia +Kiarra +Kimberlin +Komal +Lani +Latasha +Leeza +Lela +Libby +Lilit +Lilyana +Linette +Lisamarie +Lisbet +Lissa +Loretta +Madalynn +Madelaine +Madelyne +Maisie +Malika +Manpreet +Mariafernanda +Marielena +Marili +Mariza +Marsha +Maryanne +Mason +Matilda +Mattie +Meena +Meera +Meg +Milena +Nailah +Noa +Noely +Nohely +Nyla +Odette +Oksana +Oralia +Oscar +Quincy +Rae +Rayana +Rebecka +Rebeka +Reema +Reese +Remi +Richard +Ronni +Saba +Sahara +Shanell +Shaniah +Sheryl +Shreya +Soleil +Sonali +Sterling +Talin +Teagan +Theodora +Torrey +Torri +Triana +Trista +Tyana +Valencia +Vianna +Yanitza +Yaqueline +Yelena +Yoceline +Ysabel +Ysabella +Zuleima +Abigayle +Adreanna +Aitana +Alaysia +Alesha +Alexie +Aliana +Allissa +Alpha +Amada +Amayrani +Ambrosia +Ami +Aminah +Analaura +Ananda +Anicia +Annais +Arantxa +Arlen +Armida +Ashtyn +Asma +August +Aziza +Banesa +Bayleigh +Breena +Brian +Bronwyn +Cameryn +Caprice +Catelyn +Cathleen +Cera +Cesia +Charis +Charissa +Chiara +Cindi +Claribel +Claudine +Codi +Connor +Corin +Corryn +Dajanae +Dalena +Darya +Deija +Deirdre +Dennis +Divya +Dixie +Elina +Emelyn +Emiley +Emmy +Esly +Estefanie +Estephany +Evonne +Gail +Genisis +Gennesis +Georgiana +Hailie +Helene +Ida +Ilianna +Indigo +Inna +Irlanda +Iveth +Jacquline +Jaden +Jakeline +Jamilah +Jayden +Jayne +Jesika +Jesslyn +Jestine +Jisela +Jo +Joely +Jordon +Josette +Jubilee +Judit +Julieann +Kaitlynne +Kaiya +Kalei +Kalin +Kalli +Kanani +Karinna +Karyn +Kaytlin +Keeley +Kennya +Keonna +Keyona +Khyla +Kimberli +Kiyana +Kyndra +Laina +Laney +Lexy +Leyla +Lorina +Lysette +Madina +Mae +Magdalene +Mahalia +Marcelina +Margaux +Marika +Marivel +Marlaina +Marrisa +Marycruz +Matthew +Mecca +Merari +Michala +Mickayla +Miryam +Nala +Neda +Neena +Nicholas +Niomi +Ophelia +Peri +Perry +Raeanne +Raegan +Ranya +Ravyn +Rayven +Rian +Ricardo +Rossy +Roya +Sabryna +Sachi +Samanta +Sami +Santana +Sarrah +Sativa +Savina +Secilia +Serene +Shanika +Shari +Sheng +Storm +Sulma +Susanne +Suzy +Tanna +Tawnee +Tayla +Therese +Tiare +Tien +Tierney +Tonya +Tressa +Vivianne +Wynter +Yara +Yazmine +Yohana +Yosselin +Zaida +Zoila +Zoya +Adara +Aidan +Aisling +Aleen +Alesia +Alexsa +Aline +Alivia +Alva +Alyissa +Alynna +Amaranta +Amparo +Amrita +Anacaren +Anay +Anecia +Anja +Annalee +Annissa +Arden +Areanna +Argelia +Arin +Arrianna +Ashante +Aya +Bayley +Beronica +Blaire +Brandon +Breahna +Briahna +Briauna +Britny +Bronte +Caila +Caley +Carlin +Caterina +Celestina +Chanell +Charisma +Chastity +Cherise +Cheyenna +Choua +Clarice +Cloe +Clorissa +Colby +Cyrena +Czarina +Dannia +Darlin +Deidra +Deidre +Delfina +Deonna +Desiray +Destanie +Devona +Devynn +Dezirae +Dinora +Domenique +Ebonie +Edit +Elda +Elexia +Elijah +Elliana +Elyssia +Emelie +Emilly +Erianna +Fabiana +Felicitas +Galilea +Gayle +George +Giulia +Gizelle +Grisel +Hadley +Harlie +Hellen +Herlinda +Hiba +Holley +Houa +Hydeia +Idania +Inessa +Iridiana +Ivan +Jacinta +Jacky +Jaela +Jaina +Jalisa +Janai +Jannel +Jaylin +Jazzlyn +Jeanie +Jeanna +Jenesis +Jenni +Jerrica +Jessalyn +Jessy +Jewell +Joey +Jolie +Joscelyn +Josephina +Kaelie +Kaija +Kailani +Kajal +Kaleah +Kameron +Kami +Kathlyn +Kathryne +Katilyn +Katryna +Kaylen +Keilah +Kelsee +Kemberly +Kennia +Kezia +Khaila +Kierstyn +Kimi +Kimiko +Kindra +Kodi +Korey +Kristel +Kyanna +Kylah +Lanae +Latisha +Latrice +Leeanna +Letticia +Leyda +Lizzeth +Lorissa +Loryn +Lucinda +Luzmaria +Lyndsay +Madai +Madysen +Magnolia +Maisee +Mallorie +Mareena +Maribell +Mariella +Mariko +Mariyah +Marleen +Marylou +Mccall +Megha +Mekayla +Melani +Melonie +Mi +Mikela +Millie +Miraya +Miriah +Misa +Mya +Mykaela +Nada +Nanette +Natally +Neida +Nickole +Nida +Noreen +Nou +Nuvia +Ocean +Pahoua +Pakou +Passion +Patty +Quiana +Raeanna +Raechel +Rain +Reba +Rhonda +Rianne +Riki +Roni +Ronisha +Roxann +Ryley +Sabrena +Sabrinna +Sahra +Saleena +Samar +Samia +Sanam +Sanjana +Seana +Sergio +Shaianne +Shalini +Shalyn +Shanti +Sharee +Sharmaine +Shaylyn +Shaylynn +Shellie +Sherri +Shiloh +Sirenia +Sloane +Special +Starla +Stephaine +Stormy +Sujey +Surina +Suzie +Suzzette +Symphony +Tala +Tamra +Tatiyana +Tawni +Terah +Tiarra +Tiona +Tyesha +Uma +Vaneza +Verenise +Vi +Wanda +Willa +Yanelly +Yilda +Yocelyne +Yovana +Yvonna +Zarina +Zayna +Abbigale +Adahli +Adelaida +Adria +Agustina +Ailene +Airiana +Ajanae +Ajia +Akila +Alaura +Alberta +Aleesa +Alessia +Alexas +Alexiss +Alida +Alli +Alliyah +Althea +Alyah +Alyza +Ambria +Ameera +Amirah +Analee +Analuisa +Analysa +Analyssa +Andres +Andriana +Anette +Anny +Ansley +Antonella +Apryl +Ariah +Arian +Arica +Arieanna +Arleth +Asante +Ashia +Ashleen +Ashna +Asiah +Asusena +Asya +Athina +Aujanae +Aviva +Ayde +Ayleen +Azul +Azusena +Bao +Becca +Berenis +Berlyn +Biviana +Breauna +Breona +Brett +Brienna +Brionna +Britni +Brookelynn +Callan +Camelia +Candi +Carisa +Carlyn +Carolann +Cassidi +Ceara +Chandra +Channing +Charise +Charlee +Cheyene +Chris +Christabel +Christi +Chrysta +Chrystina +Clair +Clarita +Codie +Cortnie +Cristiana +Cyntia +Cypress +Dacia +Dafne +Dalilah +Danisha +Dannya +Darcie +Davida +Deanne +Deasia +Debby +Delany +Delila +Demitria +Deserae +Dezarae +Diamonique +Dionicia +Domanique +Donya +Dorian +Echo +Edwin +Elodia +Elora +Elsy +Ema +Emeli +Emelin +Emery +Emili +Emoni +Erandy +Esli +Ethel +Evie +Gabriele +Geovanna +Gerardo +Gianni +Gigi +Gurleen +Haide +Haille +Halee +Harleen +Harper +Haruka +Heba +Herminia +Hira +Huda +Ilona +Imunique +Iriana +Irie +Isaiah +Isha +Italia +Itsel +Ixchel +Iyanna +Izamar +Jacelyn +Jakelin +Jamee +James +Jamia +Janise +Janisha +Jannely +Jasmina +Jassmin +Javier +Jaya +Jayline +Jazel +Jeana +Jeannine +Jennah +Jennelle +Jennipher +Jezabel +Jezebel +Jocelynne +Johnae +Johnnie +Joie +Jordann +Jordynn +Josefa +Joselynn +Josey +Julienne +Julyssa +Justin +Kady +Kaia +Kaile +Kalene +Kallie +Kamilla +Kandyce +Kareena +Karem +Karima +Karime +Karine +Karis +Katharina +Katherin +Katiana +Kayce +Kaylan +Kayle +Kaytlyn +Kaytlynn +Keiana +Keiona +Keli +Kellyn +Keona +Kerrigan +Khanh +Khayla +Kiah +Kimberlie +Kimia +Kirstyn +Kitty +Koraima +Kristan +Kristianna +Kyara +Kyrie +Laine +Lakeisha +Latanya +Latoya +Laurissa +Leida +Lelani +Leona +Leora +Libni +Liseth +Lorelei +Lorene +Lynnette +Macayla +Mackenzy +Madelene +Magan +Mairead +Makaylah +Malaya +Malissa +Malyssa +Manisha +Mao +Marguerite +Mariateresa +Maricella +Marilin +Marine +Maris +Marivi +Mariya +Marizol +Markayla +Marlenne +Marrissa +Marti +Marykate +Matilde +Mattison +Mayela +Mckenzi +Mckinley +Mekenna +Melony +Miki +Miroslava +Moncerrat +Monesha +Monisha +Monzerrat +Morganne +Naima +Nalani +Nalleli +Nandi +Natasia +Natassja +Natividad +Nelida +Nicollette +Noelia +Nohemy +Nyah +Opal +Pahola +Paisley +Parris +Peaches +Phyllis +Prisilla +Prisma +Promise +Queen +Rachal +Radhika +Raelyn +Randee +Reem +Reylene +Rilee +Riva +Rivka +Rosalee +Roslyn +Rudy +Ryane +Ryanne +Ryleigh +Sabra +Saki +Salome +Saloni +Samaria +Santina +Sareena +Sarita +Sawyer +Scout +Semaj +Shadi +Shady +Shaiann +Shaila +Shakira +Shanae +Shanon +Shantell +Shela +Sheri +Shirin +Sianna +Silvana +Sindi +Sindia +Sinead +Siomara +Siria +Skyla +Sondra +Steffany +Stephenie +Stormie +Suleima +Svetlana +Syeda +Tabetha +Tahlia +Taisha +Talar +Tanesha +Tanner +Teal +Tiahna +Trini +Tyanna +Ursula +Van +Vickie +Victor +Vina +Vivienne +Winona +Xochilth +Yahayra +Yancy +Yocelin +Zarria +Zhane +Zharia +Zoraida +Zoraya +Zully +Aarin +Abelina +Abreanna +Abriana +Adair +Adaline +Adrien +Agueda +Aiden +Ainsley +Aiza +Akayla +Akia +Akira +Aleecia +Alejandrina +Aleksandra +Alessa +Alethea +Alexiz +Alexxus +Alica +Alicea +Alijah +Alissia +Allana +Allisa +Alvina +Alyx +Amrit +Anabell +Analyse +Anareli +Aneesah +Angelee +Angelie +Angella +Angy +Anise +Aniya +Annaliese +Anneke +Annel +Annessa +Antonio +Anum +Arisa +Arisbeth +Arlena +Arlyne +Ashlei +Ashlen +Audrie +Audry +Augusta +Augustina +Aurea +Ayah +Azia +Babygirl +Baileigh +Baleria +Benita +Bessy +Bethlehem +Bita +Brienne +Britt +Brittanee +Brynna +Byanka +Cailyn +Caleigh +Camellia +Cameo +Camry +Candra +Caressa +Carleigh +Carole +Carolynn +Carrissa +Catharine +Caylie +Cecile +Cerina +Chabeli +Chaise +Chante +Chardonnay +Chassidy +Chelsee +Christianne +Chyann +Cianna +Collette +Corazon +Corie +Corinn +Correna +Corrin +Cory +Crista +Cyndy +Daeja +Daina +Daisia +Daizy +Dallana +Damara +Danelly +Danitza +Dariana +Darline +Darrian +Dayja +Deandra +Deise +Deisi +Della +Demetra +Denia +Denis +Desaree +Deseree +Destine +Dionne +Dulcinea +Dymond +Ebelin +Ebone +Edid +Edlyn +Eilene +Elisheva +Elisia +Ellena +Ellery +Ellis +Emmaline +Enid +Erick +Ernestina +Evalyn +Eveline +Evelyne +Evelynn +Faye +Francheska +Frank +Gardenia +Genevie +Georgianna +Georgie +Giannina +Giovana +Giulianna +Glory +Gracen +Greer +Guinevere +Gurpreet +Gustavo +Han +Hanh +Harlee +Harsimran +Hattie +Hayleigh +Hayli +Honesty +Icela +Illiana +Ilsa +Indira +Irazema +Itzell +Itzia +Jackelyne +Jadelyn +Jahnae +Jamaica +Jameelah +Jamisha +Janaya +Janaye +Janeli +Janella +Janelli +Janina +Janira +Jannah +Janny +Jasmeet +Jazleen +Jazzmyn +Jeanett +Jemma +Jenica +Jeralyn +Jerri +Jessa +Jesseca +Jessel +Jessyka +Jiana +Jianna +Jissel +Johannah +Johnesha +Joi +Jordana +Josalyn +Joslynn +Josselin +Josue +Jovita +Joya +Juliane +July +Justis +Kaelynn +Kailie +Kalee +Kamilah +Kamille +Kamri +Kanesha +Karinne +Karolyn +Karrah +Karyssa +Kassaundra +Katelynne +Kathrina +Kattie +Kavya +Kayci +Kaylani +Kaylea +Kazandra +Kealani +Kendel +Kendyll +Kerrie +Keyera +Keyonna +Kiaira +Kiely +Kiona +Kisha +Kiya +Korie +Krystin +Kymberly +Kyrstin +Lai +Lailani +Lane +Lanisha +Lashawn +Latricia +Lavinia +Leeana +Leiana +Lenette +Lenora +Letisia +Liat +Lilac +Lilyann +Lisett +Lisseth +Lita +Livier +Londyn +Lory +Luana +Luciana +Lyla +Lynne +Madalena +Malaika +Malea +Maleena +Malerie +Malin +Maliyah +Maraya +Marcie +Mariely +Marilee +Marilena +Marimar +Marinna +Marixa +Markie +Marleni +Marlie +Marlina +Marlo +Marnie +Marriah +Martin +Maryelizabeth +Maryellen +Maryrose +Mayan +Mayda +Meilani +Melania +Meriah +Michayla +Micheala +Micole +Mikaella +Mikalah +Mikhaila +Mila +Milana +Millicent +Minnie +Monik +Moniqua +Moranda +Myla +Myrka +Nadeen +Nadja +Nahla +Nahomi +Nai +Nairi +Naja +Najwa +Nakia +Nathan +Navneet +Nayla +Nelli +Nely +Nerissa +Neysa +Nicholle +Nicki +Nicky +Nicolasa +Nicolina +Nikkie +Ninfa +Noah +Nuria +Nyree +Oceana +Osmara +Page +Pang +Patrisia +Paxton +Payal +Pearla +Penny +Phoua +Phylicia +Portia +Queena +Rachelann +Raeleen +Rafaela +Rahel +Raine +Ramandeep +Randie +Randy +Raul +Raya +Rayann +Reece +Reed +Reya +Reyanna +Robert +Rory +Rosanne +Roselia +Roshni +Rufina +Rya +Ryanna +Sabah +Sabree +Sadia +Safia +Sahira +Samatha +Sandi +Sania +Santa +See +Selinda +Sendy +Seraphina +Serra +Shaela +Shamari +Shanel +Shannel +Shantelle +Shanya +Shara +Shareen +Sharina +Shavon +Shavonne +Shawntel +Shaylee +Shealyn +Shiann +Shilah +Shilo +Shireen +Shruti +Shyanna +Simona +Somer +Spring +Steffanie +Steven +Suhey +Sukhpreet +Sumaya +Suzana +Talea +Tamarah +Tana +Tanaya +Taylar +Taylour +Tea +Teena +Teri +Thanh +Thu +Thuy +Tianah +Tisha +Toby +Tyrah +Tyree +Vanessamarie +Vanna +Vianka +Vibiana +Vida +Vita +Viviane +Yael +Yamile +Yaneth +Yasaman +Yeni +Yer +Ysabelle +Yusra +Zaina +Zaire +Zarah +Zia +Zitlali +Zitlaly +Zuly +Zuri +Zyanya +Jessica +Jennifer +Ashley +Emily +Samantha +Sarah +Stephanie +Elizabeth +Vanessa +Alexis +Maria +Jasmine +Alyssa +Melissa +Hannah +Kimberly +Victoria +Taylor +Amanda +Lauren +Michelle +Natalie +Madison +Megan +Diana +Andrea +Brianna +Nicole +Jacqueline +Rachel +Sabrina +Kayla +Alexandra +Daisy +Katherine +Rebecca +Julia +Danielle +Leslie +Jocelyn +Monica +Crystal +Cynthia +Alondra +Angelica +Marissa +Alejandra +Gabriela +Brittany +Karina +Brenda +Olivia +Sara +Destiny +Christina +Amber +Sophia +Abigail +Emma +Ana +Briana +Sydney +Karen +Adriana +Guadalupe +Sierra +Laura +Cassandra +Savannah +Veronica +Anna +Haley +Tiffany +Evelyn +Valerie +Amy +Angela +Alicia +Isabel +Mariah +Esmeralda +Bianca +Kelly +Allison +Yesenia +Morgan +Ariana +Nancy +Miranda +Erika +Jordan +Brooke +Karla +Courtney +Breanna +Isabella +Jasmin +Erica +Gabrielle +Madeline +Jazmin +Erin +Cindy +Kaitlyn +Cheyenne +Grace +Shelby +Julissa +Daniela +Desiree +Mary +Sandra +Alexandria +Melanie +Claudia +Mia +Alexa +Hailey +Claire +Monique +Selena +Priscilla +Celeste +Joanna +Jamie +Wendy +Giselle +Paige +Catherine +Dominique +Kelsey +Shannon +Chelsea +Katelyn +Patricia +Carolina +Chloe +Jenna +Ruby +Bailey +Mayra +Valeria +Arianna +Denise +Gabriella +Kylie +Katie +Heather +Caroline +Genesis +Christine +Kathryn +Liliana +Rosa +Sofia +Angelina +Caitlin +Kassandra +Julie +Vivian +Mackenzie +Jade +Kristen +Jazmine +Janet +Cristina +Marisol +Cassidy +Audrey +Cecilia +Raquel +Brittney +Lindsey +Michaela +Serena +Mikayla +Maya +Naomi +Teresa +Clarissa +Lisa +Linda +Paola +Summer +Zoe +Ariel +Marina +April +Kiana +Lorena +Martha +Adrianna +Carmen +Faith +Molly +Carly +Marisa +Angel +Kristina +Irene +Autumn +Gloria +Makayla +Paulina +Sonia +Tatiana +Jenny +Katrina +Natalia +Jocelyne +Krystal +Leah +Leticia +Justine +Elena +Camille +Kaylee +Marlene +Mireya +Margarita +Viviana +Natasha +Alma +Meghan +Mariana +Juliana +Kathleen +Hayley +Lesley +Lizbeth +Maribel +Rebekah +Miriam +Kaitlin +Madeleine +Mckenna +Lily +Alison +Carla +Caitlyn +Hanna +Perla +Yulissa +Noemi +Riley +Dana +Esther +Maritza +Aileen +Luz +Ruth +Sharon +Cristal +Yvette +Lindsay +Alissa +Kendall +Kyra +Margaret +Yasmin +Alina +Bethany +Susana +Deanna +Holly +Jillian +Mariela +Sophie +Eva +Edith +Marilyn +Nina +Tara +Brandy +Melody +Araceli +Elisa +Casey +Blanca +Reyna +Gina +Renee +Julianna +Aaliyah +Annie +Dulce +Lydia +Kendra +Nadia +Destinee +Lizette +Yadira +Isabelle +Mikaela +Rachael +Helen +Pamela +Alexia +Carina +Fatima +Tanya +Janelle +Jordyn +Lesly +Tania +Amelia +Kathy +Kennedy +Kristin +Cierra +Jacquelyn +Arlene +Itzel +Lillian +Angie +Kirsten +Johanna +Tiana +Yvonne +Asia +Heidi +Kara +Rocio +Sarai +Beatriz +Daniella +Stephany +Anahi +Hope +Alexus +Iris +Mercedes +Sandy +Stacy +Bridget +Delaney +Elise +Yolanda +Alana +Jeanette +Josephine +Judith +Tessa +Ciara +Aimee +Ashlee +Lucia +Mckenzie +Nataly +Jaqueline +Nayeli +Norma +Charlotte +Fabiola +Alice +Anastasia +Celine +Anne +Deja +Kate +Susan +Whitney +Yasmine +Allyson +Yessenia +Aliyah +Carolyn +Graciela +Marie +Savanna +Theresa +Leilani +Berenice +Silvia +Madelyn +Emely +Nathalie +Kiara +Kira +Ashlyn +Diane +Gisselle +Ivy +Raven +Sadie +Tabitha +Carissa +Imani +Lisette +Makenna +Paula +Barbara +Breana +Kylee +Angelique +Clara +Dalia +Aylin +Bryanna +Elisabeth +Stacey +Darlene +Katelynn +Noelle +Sasha +Cameron +Casandra +Eileen +Gillian +Sienna +Tori +Larissa +Sidney +Tyler +Brenna +Francesca +Virginia +Belen +Jessie +Arielle +Lucy +Salma +Krista +Talia +Brandi +Gianna +Tina +Anissa +Rebeca +Aubrey +Esperanza +Aurora +Elaine +Gladys +Annette +Meagan +Estefania +Jada +Kyla +Sage +Avery +Diamond +Juliet +Roxana +Selina +Cheyanne +Dakota +Felicia +Griselda +Jailene +Sarahi +Tamara +Janette +Rose +Vanesa +Catalina +Deborah +Ashleigh +Joana +Joselyn +Lacey +Regina +Frances +Nia +Sally +Sylvia +Tracy +Anita +Athena +Baylee +Dayana +Kasandra +Shirley +Simone +Thalia +Estrella +Kenia +Ivette +Julisa +Magdalena +Maricela +Odalis +Karissa +Lizeth +Yulisa +Alisa +Fiona +Kailey +Marisela +Denisse +Estefany +Juanita +Melina +Nicolette +Taryn +Alanna +Janice +Nikki +Rosemary +Celina +Shayla +Kaila +Malia +Mallory +Melinda +Mirella +Reina +Eliza +Iliana +Joyce +Julianne +Kristy +Yajaira +Adilene +Christy +Ella +Ellen +Giovanna +Micaela +Tiara +Antonia +Cinthia +Jaclyn +Juana +Rosario +Alisha +Donna +Genevieve +Jackeline +Jazlyn +Kenya +Lilian +Peyton +Precious +Tayler +Toni +Tyra +Brianne +Haylee +Janae +Lourdes +Camila +Colleen +Juliette +Kassidy +Kristine +Nora +Adrienne +Annika +Astrid +Carol +Leanna +Macy +Roxanne +Candace +Celia +Ingrid +Kellie +Payton +Phoebe +Viridiana +Yasmeen +Beverly +Damaris +Devon +Irma +Jane +Kiera +Xochitl +Corina +Devin +Fernanda +Ivonne +Janessa +Joy +Kasey +Kelli +Moriah +Robin +Rylee +Tia +Chantal +Delilah +Emilee +Heaven +Lena +Lucero +Madalyn +Paloma +Makenzie +Judy +Lissette +Maggie +Pauline +Skylar +Arely +Ciera +Ebony +Georgina +Hazel +Jenifer +Johana +Marlen +Melisa +Shyanne +Tess +Valentina +America +Carley +Daphne +Eliana +Hana +Katarina +Kaylie +Lina +Nichole +Rita +Robyn +Skye +Stefanie +Tatyana +Britney +Emilie +Estefani +Joanne +Joseline +Kelsie +Aracely +Chelsey +Dianna +Kayleigh +Maia +Nadine +Odalys +Sarina +Trinity +Ashly +Delia +Estela +Eunice +Joceline +Josefina +Lauryn +Mckayla +Sonya +Ann +Cara +Chanel +Georgia +Isis +Jacklyn +Savanah +Violet +Yazmin +Alexandrea +Alysia +Desirae +Elissa +Helena +Kaitlynn +Laurel +Candice +Chantel +Charlene +Connie +Eleanor +Flor +Josie +Magaly +Tierra +Unique +Xena +Areli +Azucena +Brooklyn +Callie +Evelin +Justice +Katia +Katlyn +Kianna +Lilia +Shania +Shayna +Skyler +Tianna +Alyson +Ayleen +Eden +Maira +Rosie +Alaina +Anais +Bertha +Bryana +Elsa +Grecia +Hunter +Isela +Kaelyn +Lilly +Marcela +Marcella +Michele +Rachelle +Rosalinda +Tatum +Abby +Alessandra +Anika +Antoinette +Hillary +Leila +Liana +Lupita +Maddison +Paris +Simran +Alena +Anabel +Christian +Kaylin +Kaylyn +Luisa +Tammy +Bailee +Beatrice +Carrie +Clare +Consuelo +Danica +Kaela +Katharine +Lidia +Noel +Rubi +Ashlie +Bonnie +Dania +Ivana +Jaylene +Makena +Mina +Selene +Shawna +Sheila +Yessica +Ava +Bernice +Elsie +Ericka +Jessenia +Kali +Mariam +Ryan +Stella +Tamia +Vicky +Yoselin +Gwendolyn +Janeth +Jessika +Jewel +Kailee +Kierra +Lea +Scarlett +Serina +Shaina +Zulema +Ashlynn +Christie +Kiley +Lilibeth +Lynette +Xiomara +Annabelle +Carlie +Christiana +Davina +Debbie +Elyssa +Emilia +Francisca +Hailee +Heidy +Kelsi +Leanne +Lorraine +Maryjane +Nathaly +Yahaira +Adela +Betsy +Dolores +Jazmyn +Loren +Mara +Meredith +Monserrat +Roxanna +Serenity +Tiffani +Annalise +Bridgette +Darian +Destiney +Dina +Domonique +Dora +Maricruz +Marlyn +Nallely +Zaira +Belinda +Evangelina +Lexus +Olga +Rayna +Rhiannon +Susanna +Becky +Brittani +Candy +Ileana +India +Jaime +Janine +Leann +Marianna +Marlena +Mindy +Mira +Nikita +Pricilla +Rochelle +Zoey +Alize +Cambria +Chandler +Christa +Corinne +Cortney +Hilda +Jackelyn +Jennie +Joelle +Justina +Keely +Kelley +Lynn +Misty +Montana +Pearl +Raylene +Sydnee +Vianey +Alia +Amani +Cassie +Chelsie +Coral +Drew +Halle +Harmony +Izabella +Kaley +Karli +Karlie +Karly +Keila +Lara +Lia +Magali +Mariel +Myra +Randi +Salina +Shea +Shyann +Siena +Starr +Suzette +Aisha +Alycia +Alysa +Amari +Angeline +Ani +Carli +Cathy +Darby +Jeannette +Kristie +Laila +Lori +Reagan +Sheridan +Yareli +Yaritza +Aleah +Amaris +Bernadette +Deisy +Devyn +Dorothy +Elisha +Elvira +Frida +Jacquelin +Jesenia +Kelsea +Kiersten +Kourtney +Kristi +Maxine +Meaghan +Myranda +Priscila +Stefany +Sydnie +Allie +Angeles +Bobbie +Cherish +Cheryl +Dallas +Elvia +Elyse +Estephanie +Jackie +Kacie +Katy +Mirna +Natali +Nayely +Reanna +Trisha +Alex +Ashton +Aubree +Brielle +Emerald +Faviola +Haylie +Ivanna +Lana +Leandra +Lexi +Marley +Melany +Milan +Monet +Monika +Reilly +Rosio +Suzanne +Verenice +Amara +Annelise +Bella +Chase +Danika +Dayna +Destini +Francis +Halie +Joselin +Karlee +Luna +Madisen +Maegan +Maryann +Miracle +Rosalia +Salena +Shauna +Soledad +Valarie +Yaneli +Andreina +Anisa +Annabel +Annamarie +Corrina +Dahlia +Essence +Jayme +Jazmyne +Jeniffer +Joann +Karely +Katelin +Lilliana +Liza +Lyric +Madyson +Mai +Marbella +Mari +Penelope +Regan +Ryann +Yanet +Aja +Aliza +Amina +Annemarie +Ayanna +Breann +Breanne +Brigitte +Carlee +Danae +Dylan +Eryn +Geneva +Gisell +Harley +Jenelle +Joselyne +Kim +Logan +Maite +Malaysia +Mandy +Mercy +Mika +Nikole +Quinn +Raina +Rosalie +Rowan +Shivani +Tatianna +Violeta +Yazmine +Ada +Alanis +Aliya +Ambar +Analisa +Anjelica +Anyssa +Clarisa +Dayanna +Demi +Ellie +Erykah +Eve +Haleigh +Ilene +Iman +Iridian +Isabela +Jolene +Kalyn +Kamryn +Kari +Karolina +Katerina +Kaya +Louisa +Madisyn +Maranda +Noemy +Rylie +Star +Yuliana +Aime +Alayna +Allissa +Ayana +Bianka +Bobbi +Brisa +Camryn +Cecelia +Chrystal +Chyna +Dalila +Darla +Dianne +Francine +Gissel +Imelda +Inez +Jocelin +Kailyn +Kayleen +Keana +Kimberley +Layla +Macie +Mariaguadalupe +Mayte +Meliza +Micah +Mikala +Nelly +Princess +Shelbie +Shelly +Shianne +Tea +Adeline +Aida +Alexi +Allegra +Allyssa +Annalisa +Arlette +Aryanna +Brooklynn +Cayla +Charity +Citlali +Concepcion +Cora +Daysi +Destany +Elaina +Felicity +Frankie +Ilse +Janell +Jayda +Jose +Lila +Lyndsey +Marjorie +Marta +Martina +Maryam +Minerva +Saray +Savana +Soraya +Vivianna +Willow +Yanira +Abril +Alba +Aleena +Alysha +Anai +Annmarie +Aryana +Betty +Doris +Edna +Elia +Gisela +Hallie +Janay +Jasmyn +Jennyfer +Jesse +Jill +Kai +Karley +Kathie +Kayley +Kristal +Kristiana +Kyleigh +Micayla +Miya +Myriam +Priyanka +Rosemarie +Sade +Shakira +Sherry +Socorro +Sunshine +Valery +Vianca +Xochilt +Adrianne +Amalia +Ariella +Azalea +Bria +Carmela +Colette +Daniel +Desteny +Emani +Farrah +Gemma +Gissell +Ilana +Jaimie +Jaquelin +Jena +Kathrine +Korina +Kyle +Leeann +Lilianna +Linnea +Lisset +Marianne +Maura +Mollie +Montserrat +Ofelia +Piper +Shyla +Sunny +Susie +Suzanna +Yesica +Addison +Adrian +Alexxis +Ali +Amira +Anamaria +Blair +Camilla +Chiara +Cori +Dawn +Desire +Elexis +Elva +Gema +Giana +Ivon +Jacinda +Janelly +Kacey +Kathia +Katya +Kendal +Kirstin +Lili +Lizet +Madelynn +Madilyn +Manuela +Marilynn +Michell +Mimi +Priya +Rena +Rianna +Rosalba +Rosamaria +Saira +Samara +Sequoia +Shae +Shantel +Stevie +Tabatha +Trina +Yuliza +Acacia +Aidee +Ailyn +Alexzandra +Alyse +Anastacia +Anayeli +Ariadna +Aspen +Bree +Breeanna +Brigette +Christen +Cienna +Daija +Daria +Devan +Ester +Flora +Franchesca +Gracie +Hollie +Jacquelynn +Jana +Janel +Jaquelyn +Jayla +Jazzmin +Jensen +Josselyn +Jovanna +Kaleigh +Klarissa +Lexie +Lianna +Lisbeth +Mariaelena +Marielle +Mirian +Neha +Nellie +Oriana +Pooja +Renae +Rhianna +Sahar +Shelbi +Sheyla +Shreya +Stacie +Stefani +Tamera +Therese +Vannessa +Veronika +Winter +Ximena +Yamilet +Yenifer +Yocelyn +Aide +Alejandrina +Alexys +Ally +Allysa +Aya +Billie +Britni +Corinna +Dayanara +Deana +Destinie +Elle +Geraldine +Hilary +Idalia +Isabell +Jacey +Jael +Jannette +Jaslyn +Jazzmine +Jenae +Joan +Julian +Juliann +Julieta +Kalani +Karin +Kaylynn +Kaytlin +Kerry +Keyla +Marian +Marin +May +Neida +Nereida +Presley +Raelene +Rayleen +Sirena +Symone +Taya +Teagan +Vannesa +Yamilex +Yaquelin +Zahra +Abbey +Amie +Anel +Anisha +Aria +Ashely +Ashli +Ayla +Bibiana +Breeana +Catrina +Celena +Christal +Darcy +Deziree +Eloisa +Gladis +Isamar +Jamila +Jannet +Jesica +Jocelynn +Kalie +Kalina +Kaylah +Leana +Macey +Marla +Mercedez +Monae +Natalya +Nathalia +Neyda +Nicolle +Niki +Noor +Pa +Raegan +Ramona +Rosaura +Sabina +Saige +Shiloh +Sky +Tristan +Xenia +Yamileth +Zainab +Abagail +Abbie +Abriana +Aiyana +Analise +Angelika +Angelita +Anjali +Aries +Avalon +Aysia +Brianda +Brittni +Bryn +Chantelle +Ciarra +Cydney +Daisha +Danna +Dominque +Elana +Estella +Fallon +Gisel +Grisel +Hailie +Isaura +Jackelin +Jimena +Jodie +June +Kalia +Kimberlee +Kristyn +Kylah +Lola +London +Maile +Maryah +Meranda +Michela +Mitzi +Mona +Natalee +Paulette +Racquel +Raelyn +Rhea +Rikki +Sarena +Scarlet +Shana +Shanice +Shanna +Shayne +Sommer +Tasha +Teresita +Terra +Tiarra +Tiffanie +Valencia +Yuri +Abbigail +Adina +Adrina +Alexsandra +Alyssia +Anahy +Anya +Arabella +Arianne +Asha +Bailie +Biridiana +Brittanie +Brook +Chaya +Chelsy +Cherie +Chynna +Danya +Dara +Dennise +Emmalee +Eryka +Evangeline +Gretchen +Haven +Indira +Ivory +Janely +Janna +Jaycee +Jeanine +Jennica +Jolie +Joslyn +Kameron +Kaycee +Kaylen +Kenna +Keren +Kiah +Kiarra +Lacy +Lizbet +Lizzette +Lucille +Makaila +Maliah +Malissa +Maricarmen +Marlee +Maureen +Mellisa +Michaella +Mildred +Ocean +Parker +Patrice +Pilar +Rene +Ricki +Samanta +Samira +Sariah +Selma +Shani +Shawnee +Siera +Sonja +Thania +Tracey +Vania +Venus +Vicki +Yanely +Zaria +Zoie +Abrianna +Adelina +Alaysia +Alejandro +Alexsis +Aliah +Alisia +Alivia +Alix +Alora +Amairani +Amaya +Anakaren +Andie +Ariane +Arleth +Arlyn +Armani +Austin +Ayesha +Baylie +Belle +Brea +Breauna +Briseida +Cali +Cecily +Celene +Charmaine +Chyanne +Constance +Daja +Debra +Dejah +Delanie +Denice +Dinora +Emmy +Estefanie +Eugenia +Evette +Jacquelyne +Janie +Jayde +Jazzlyn +Jean +Jessyca +Jordin +Jovana +Julieanna +Katalina +Katheryn +Kaytlyn +Keara +Kevin +Kori +Kristian +Krysten +Lesli +Margaux +Mariella +Marleen +Merissa +Milagros +Nicola +Nohemi +Petra +Remy +Roberta +Rosalind +Rosalva +Sabine +Sabryna +Sana +Sayra +Shay +Sinai +Susannah +Tanisha +Tiera +Tricia +Winnie +Xitlaly +Yecenia +Adelaida +Adelaide +Alani +Alexander +Amberly +Amethyst +Annel +Ashanti +Audrianna +Ayah +Brandie +Breonna +Brittaney +Bryce +Brynna +Cailin +Christin +Ciana +Citlalli +Corrine +Danyelle +Deandra +Dejanae +Deserie +Elicia +Elida +Elizabet +Evelia +Gabriel +Galilea +Giulia +Gizelle +Glenda +Glory +Idalis +Jami +Janai +Jaspreet +Jayleen +Jeanne +Jodi +Joely +Jonathan +Julieann +Kaelin +Karyna +Keanna +Keeley +Kerri +Keyana +Khadijah +Kimberli +Lashay +Leonor +Leslye +Lizett +Lluvia +Lois +Loretta +Lupe +Lynda +Makaela +Makala +Mariajose +Marielena +Marilu +Melia +Michael +Morelia +Mykaela +Nalleli +Neda +Nereyda +Nidia +Nydia +Nyla +Octavia +Oralia +Racheal +Raeann +Rayanne +Rina +Saba +Shawn +Shelley +Shoshana +Spencer +Stormy +Sulema +Tehya +Traci +Treasure +Wynter +Yara +Zena +Abigale +Alea +Analicia +Andria +Anthony +Arissa +Aubrie +Berlin +Brionna +Brittny +Caitlynn +Cameryn +Carmelita +Chanelle +Charissa +China +Cinthya +Corey +Daijah +Daisey +Denae +Desiray +Doreen +Eboni +Erendira +Evan +Farah +Gianni +Giovana +Hayden +Janett +Jasleen +Jaycie +Jayden +Jaylin +Jesus +Jourdan +Kaliyah +Karena +Kati +Katlin +Kaylene +Kemberly +Kenzie +Leena +Leona +Libby +Linette +Liz +Lysette +Maeve +Maleah +Marcelina +Mariadelcarmen +Mariafernanda +Marika +Marily +Marivel +Marycruz +Marylou +Mason +Mattie +Melyssa +Mickayla +Myrna +Noelani +Patience +Quincy +Raeanne +Rayanna +Remi +Rosalina +Roselyn +Sarahy +Sharlene +Sharmaine +Shasta +Skyla +Tasia +Tawny +Tera +Terri +Terry +Trinidad +Tristen +Zayra +Adreanna +Ajanae +Alannah +Alecia +Alexzandria +Alliyah +Anaya +Anessa +Anette +Annabella +Arcelia +Ariela +Arleen +Averi +Bianey +Blythe +Bridgett +Brieanna +Carson +Cathleen +Chana +Charlie +Chasity +Cielo +Citlaly +Cory +Crista +Dalena +Dani +Dasia +Deena +Delmy +Devina +Divina +Divya +Eleni +Elexus +Elsy +Emalee +Emeline +Enedina +Erinn +Estephania +Estrellita +Geena +Ginger +Giovanni +Haily +Hali +Ida +Ines +Izabel +Jaida +Jaylynn +Jaymee +Jeannie +Jessi +Jonae +Joshua +Kailynn +Kalee +Kamila +Kayle +Kayli +Kaytlynn +Kennedi +Kia +Krysta +Lacie +Laurie +Leeza +Leigh +Lessly +Lexis +Liseth +Louise +Lucila +Luzmaria +Lynnette +Madelaine +Malena +Malika +Maren +Margo +Marleny +Marysol +Matilda +Meera +Mirka +Naila +Naomy +Nayelli +Neftali +Nubia +Parisa +Rayann +Rayven +Rheanna +Rosalyn +Roshni +Sahana +Sanam +Serene +Shaylee +Stephani +Tanner +Venessa +Vienna +Vivienne +Yael +Yuridia +Zuleima +Abigayle +Adele +Aliana +Aline +Ami +Aminah +Anabelle +Analaura +Anneliese +Argelia +Arlet +Arriana +Aubrianna +Audriana +Banesa +Beatris +Beth +Brandee +Brynn +Catarina +Catelyn +Caylee +Cera +Chastity +Christianna +Cintia +Clair +Claribel +Cristian +Darien +Debora +Delfina +Deseree +Devynn +Deyanira +Deysi +Dezirae +Dyani +Fanny +Gardenia +Georgianna +Geselle +Gigi +Grayson +Greta +Hadley +Italia +Itzayana +Iyanna +Jackelyne +Jaelyn +Jalyn +Jamilex +Jenessa +Jennefer +Jenniffer +Jessalyn +Josephina +Joslynn +Kaelynn +Kailah +Kaiya +Kalei +Kandace +Karishma +Kasie +Kassie +Kathryne +Kaylan +Kelci +Kendyl +Keri +Kiani +Kinsey +Kyler +Lani +Leia +Lexy +Leyla +Lianne +Linsey +Lora +Lorissa +Maci +Mackenna +Malina +Mallorie +Marena +Marguerite +Maricella +Marlin +Marrissa +Marylin +Maryssa +Megumi +Michel +Miriah +Mitzy +Mya +Nakia +Nerissa +Nika +Noah +Oksana +Prachi +Rae +Raelynn +Rhonda +Ria +Riana +Rio +Rosanna +Sahara +Sarita +Sera +Sheena +Sheryl +Sheyenne +Sindy +Starla +Stefania +Sydni +Tajanae +Tamar +Tami +Tayla +Thea +Tyanna +Ursula +Vianney +Vickie +Vivien +Xitlali +Xochil +Ysabel +Zara +Zuleyma +Zulma +Akilah +Alanah +Alexes +Alexiss +Alyx +Amairany +Amparo +Anahit +Angelic +Ania +Annalee +Annaliese +Annissa +Antonette +Areisy +Ariadne +Arika +Arin +Ashlynne +Audra +Aundrea +Baily +Berenise +Blake +Brenae +Brigit +Brittnee +Brittnie +Caleigh +Candelaria +Caren +Carleigh +Cayley +Celestina +Cerina +Chandni +Cherokee +Clarice +Cloe +Collette +Cruz +Dacia +Daeja +Dajah +David +Denisha +Deserae +Destanie +Elina +Elsi +Emelia +Emmaline +Emoni +Evelynn +Genisis +Gisele +Giuliana +Gricelda +Gwenyth +Halee +Han +Harleen +Heba +Honesty +Ileen +Ireland +Iveth +Jaden +Jaelene +Jailine +Janis +Jasmyne +Jayna +Jessy +Jody +Joey +Jordann +Jordynn +Josette +Jovita +Joycelyn +Juan +Judit +Julieanne +Julyssa +Kalena +Karinna +Karis +Kazandra +Keilani +Keira +Keisha +Kera +Kiely +Kirra +Kortney +Kristel +Krystina +Kyana +Laney +Larisa +Latasha +Lela +Lilit +Lilyana +Linh +Lorelei +Lucinda +Mabel +Macayla +Madysen +Mariadejesus +Mariadelosang +Mariyah +Mellissa +Melonie +Merari +Miah +Michala +Mikaila +Mikyla +Mila +Milena +Misha +Myla +Nadya +Nailah +Nhi +Nisha +Noelia +Nohemy +Oscar +Radhika +Raeanna +Renata +Romy +Ronni +Rosy +Ryley +Samaria +Sammantha +Sandi +Sedona +Shaelyn +Shantal +Shaye +Sierrah +Siobhan +Sloane +Stephania +Synthia +Taelor +Tatiyana +Taylar +Tegan +Tien +Trista +Uma +Valeri +Vilma +Yanitza +Yarely +Yoanna +Zaida +Zariah +Zenaida +Zhane +Zully +Zuri +Abbygail +Adara +Ahtziry +Aislinn +Aleesha +Alexie +Alexxa +Aleyah +Althea +Amayrani +Anayely +Anh +Annamaria +Arantxa +Araseli +Arly +Ashia +Aurelia +Aysha +Bayley +Brandon +Breona +Brigid +Brina +Cailey +Cailyn +Caitlan +Calli +Carlyn +Carmina +Cassaundra +Catharine +Caylin +Chandra +Channel +Charli +Cherise +Cheyann +Chioma +Cianna +Clariza +Claudette +Cody +Colby +Cristine +Danelle +Daniele +Deanne +Deidra +Deija +Delainey +Delila +Destine +Elisabet +Elora +Elysia +Eman +Ember +Emili +Emmanuelle +Erandy +Estephany +Evelina +Evonne +Florence +Francisco +Gail +Genessis +Gennesis +Georgiana +Gilda +Guillermina +Harlee +Harpreet +Haydee +Hayleigh +Hayli +Ilianna +Imari +Indigo +Isha +Isobel +Jamaica +Janaya +Jazlynn +Jeanelle +Jeannine +Joi +Jorden +Joscelyn +Josseline +Kacy +Kady +Kaily +Kanani +Kandice +Karah +Karisa +Karmen +Karolyn +Karyssa +Katerine +Katheryne +Kathya +Kelcie +Kiarah +Kyara +Kyrah +Laine +Leeanna +Liberty +Lillie +Lilybeth +Lizabeth +Lucina +Luis +Madalynn +Madelyne +Madina +Madisson +Magda +Magnolia +Mahogany +Makaylah +Malorie +Mariko +Marion +Maryn +Matilde +Melannie +Michayla +Moira +Myriah +Navdeep +Naya +Nichelle +Nicholette +Nicholle +Niya +Noa +Nya +Osiris +Payal +Raeven +Raisa +Ravyn +Rebeka +Reem +Roma +Roni +Ronnie +Rosana +Roya +Ryanne +Safa +Safia +Sahra +Salem +Samone +Santana +Sawyer +See +Shanel +Shanelle +Shaylyn +Sheng +Shirin +Sianna +Sintia +Sol +Sonali +Sue +Tanna +Tarah +Tonya +Topanga +Tracie +Tristyn +Varsha +Vera +Vi +Vida +Viviann +Vivica +Yaneth +Yocelin +Yoselyn +Zaire +Aaron +Abilene +Aditi +Airam +Aitana +Aleen +Alexiz +Aleyda +Alizabeth +Alonna +Amada +Ambria +Anabella +Analia +Ananda +Andi +Aneesah +Angelena +Anica +Aniyah +Ankita +Annahi +Anny +Anusha +Arden +Arlett +Arline +Asiana +Asucena +Asya +Audrie +Averie +Azusena +Briahna +Briann +Briannah +Brissa +Britanny +Byanca +Carlene +Cassey +Cassondra +Ceara +Cesia +Cesilia +Chanell +Chenoa +Clarisse +Cleo +Connor +Corie +Corrie +Daelyn +Dajanae +Daniell +Dannielle +Daysha +Dazhane +Deann +Deidre +Deonna +Devorah +Dilpreet +Dominic +Dyana +Ebonie +Elianna +Elisia +Ellis +Eloise +Emery +Emi +Emiley +Emilyann +Eric +Ericca +Erick +Ernestina +Erynn +Eveline +Gaby +Gena +Genna +Georgie +Gwen +Hellen +Hiba +Holland +Infinity +Irais +Irania +Irie +Ishani +Isla +Ivett +Jacob +Jahaira +Jailyn +Jakelin +Jalissa +Jamesha +Janee +Janiece +Jannett +Jarely +Jaya +Jayline +Jazzmyn +Jennah +Jerica +Jesika +Jewell +Jiselle +Johnae +Johnna +Julienne +Juliza +Kadie +Kaelee +Kaeli +Kailani +Kaili +Kala +Kamari +Kami +Kandy +Karrie +Kasha +Katana +Katerin +Katherin +Kay +Kaylamarie +Keala +Keani +Keiana +Keilah +Kelsee +Kimberlyn +Kiran +Kirstie +Kiyana +Komal +Kyah +Kyli +Kyrie +Latisha +Lee +Leesa +Leslee +Lilah +Lisamarie +Lisbet +Livia +Lizzeth +Lolita +Lyla +Lyndsay +Magdalene +Mahalia +Maiya +Makinzie +Malak +Maleny +Maliyah +Manpreet +Marcy +Marialuisa +Marilin +Marivi +Mariya +Maryanne +Matthew +Mattison +Mayela +Meghna +Melani +Mele +Melodie +Mykayla +Nalani +Nana +Nanci +Natassja +Neira +Neomi +Nikkie +Nou +Page +Pahola +Parris +Phoenix +Phyllis +Polly +Priscella +Prisilla +Rachell +Rafaela +Rebecka +Remington +Rian +Richelle +Riya +Romina +Roselia +Rosita +Sadaf +Samatha +Sapphire +Savina +Scout +Seleste +Shaila +Sharai +Shari +Shayda +Shelsea +Sherri +Shruti +Simranjit +Soleil +Sonal +Special +Stephenie +Sylvie +Tajah +Tavia +Tawni +Teanna +Teri +Tesia +Teya +Thao +Tierney +Tonia +Torrie +Tristin +Tuesday +Tyla +Verenise +Vianna +Viktoria +Viola +Vittoria +Wynne +Yisel +Yoana +Zarina +Zitlali +Aashna +Abigael +Abrielle +Adalia +Adelle +Agustina +Ahtziri +Akira +Aleisha +Aleksandra +Alessia +Alexxus +Alexyss +Alfa +Alijah +Alizae +Allana +Alona +Alyssah +Amal +Amberlee +Anay +Andreana +Andriana +Aneesa +Aniya +Annabell +Anneka +Annessa +Ansley +Aolani +Areana +Areanna +Arieana +Aris +Arisa +Arlin +Aryn +Ashlin +Ashna +Aubriana +Audree +August +Autum +Aviva +Azalia +Baby +Berenis +Bergen +Bethanie +Betsabe +Bettina +Bonita +Brett +Britany +Britnee +Britta +Britteny +Bronte +Bronwyn +Byanka +Camry +Candis +Capri +Caressa +Cari +Carisa +Carlos +Carole +Carolena +Carolynn +Carrissa +Casie +Catera +Caterina +Cathryn +Caylie +Celest +Cesar +Charis +Chelsi +Christopher +Chyenne +Cindi +Citlalic +Coco +Corynn +Cosette +Crisol +Cristy +Crysta +Cyan +Dallana +Darline +Darling +Darrian +Deisi +Delaina +Delana +Desirea +Destanee +Destynee +Devine +Dionne +Dorian +Dynasty +Elayne +Elda +Eleana +Elinor +Ellery +Ellisa +Emerson +Emmeline +Esly +Eulalia +Eunique +Evita +Fatimah +Fayth +Fernando +Gao +Genoveva +Giavanna +Gisella +Greer +Hanah +Hanako +Hanan +Harlie +Harmoni +Heavenly +Henna +Hennessy +Hortencia +Ina +Inna +Isaiah +Italy +Itsel +Itzia +Iyana +Jacelyn +Jacklynn +Jacqlyn +Jacquline +Jaiden +Jalene +Jalynn +Jammie +Janaye +Janeen +Janeli +Janina +Jasdeep +Jasmeen +Jasmen +Jassmine +Jerrica +Jesselyn +Jesslyn +Jisela +Joelene +Johnnie +Joleen +Jolissa +Jonelle +Joseph +Julietta +Julizza +Kaci +Kaia +Kaira +Kaitlan +Kalea +Kalli +Karisma +Karol +Karoline +Katlynn +Kattie +Keily +Kela +Kellianne +Kelsy +Kenny +Kennya +Kerra +Kierstin +Kimberlie +Kimberlin +Kimia +Kindra +Kora +Krishna +Krystle +Kyanna +Kyrsten +Lacee +Laci +Lanai +Laryssa +Latrice +Layne +Lilyanna +Lindy +Lissete +Lisseth +Livier +Lorna +Lorrie +Lucie +Luzelena +Lynna +Lynsey +Lynsie +Madelin +Madilynn +Mairin +Maisie +Makenzi +Malea +Mali +Manisha +Margot +Mariadelaluz +Mariaisabel +Marilee +Marisabel +Maritsa +Marlina +Marlo +Marsha +Marykate +Marylyn +Marysa +Meg +Mercede +Meriah +Micheala +Miguel +Mikaylah +Mikhaila +Milla +Minami +Miryam +Misa +Morena +Myrka +Nadeen +Najah +Natividad +Navneet +Nhu +Nicki +Nicollette +Nohely +Nour +Nuvia +Odaliz +Odette +Orianna +Paisley +Passion +Patsy +Patty +Peggy +Perlita +Phuong +Precilla +Prescilla +Pricila +Prisila +Promise +Quiana +Raevyn +Raychel +Rayne +Reese +Reylene +Richard +Risa +Rivka +Robert +Rory +Rosaisela +Roseanne +Sabrena +Schuyler +Selah +Shaden +Shamari +Sheetal +Shekinah +Shiann +Shyan +Siara +Sinthia +Siomara +Sloan +Solana +Staphany +Steffani +Steffanie +Steffi +Sterling +Steven +Sujey +Suzy +Taja +Tala +Taline +Tallulah +Talya +Tanaya +Teodora +Tereza +Tesla +Thelma +Tijera +Torie +Tory +Triana +Vanity +Viana +Vina +Vivianne +Wanda +Xitlalic +Yajayra +Yalitza +Yana +Yanelly +Yarelin +Yazmeen +Ynez +Yomira +Zaina +Zakiya +Zehra +Zenab +Zenia +Zina +Aaliya +Adi +Adreana +Agnes +Ahlam +Aidan +Aiko +Ailin +Ainsley +Aireana +Aireanna +Ajia +Akemi +Alaya +Albany +Aleesa +Alesandra +Alesha +Alexandrya +Aleya +Alianna +Alicea +Alise +Alisson +Alitza +Alli +Allisa +Almadelia +Almarosa +Alpha +Alyah +Alyna +Alynna +Alyssamarie +Alyza +Amanpreet +Amaryllis +Amayrany +Amberlyn +Amberlynn +Ameerah +Amirah +Amor +Amorette +Amrita +Anabell +Anaid +Anaiya +Analyssa +Andrew +Andreya +Andy +Anela +Angeli +Angelia +Anjanae +Anjelika +Annalicia +Anneke +Antionette +Antonio +Aoife +Apolonia +Aramis +Aranza +Arieanna +Ariyana +Arleene +Arlen +Arpi +Arrianna +Ashlea +Asiah +Aura +Avital +Aylene +Ayline +Azita +Aziza +Azul +Baillie +Baleria +Banessa +Bayleigh +Belicia +Betzy +Biviana +Breah +Breyana +Brezhane +Brieana +Brinda +Briona +Britani +Brookelynn +Bryan +Bryonna +Caeley +Cailee +Calista +Callista +Cally +Calyn +Candra +Carleen +Celestine +Cerena +Champagne +Chance +Charisma +Charisse +Charley +Chau +Chrissy +Cidney +Cierrah +Clairissa +Clementina +Codi +Coraima +Courtnee +Courtnie +Courtny +Cydnee +Cyndy +Cyntia +Daesha +Danessa +Dannia +Darlin +Darlyn +Darya +Daryl +Daryn +Davida +Daylene +Daysia +Dee +Deirdre +Della +Delphine +Dena +Deseray +Destani +Dezire +Diandra +Dionna +Domenique +Dulcemaria +Ebelin +Eduardo +Elliana +Ellison +Ellyse +Ema +Emalie +Emelyn +Emiko +Emme +Eneida +Erandi +Erina +Esme +Evon +Fabiana +Fadumo +Felisha +Florencia +Freya +Galen +Gayane +Genesee +Genessa +Genevie +Glenna +Guinevere +Hafsa +Haileigh +Harper +Harriet +Haruka +Hattie +Havana +Herlinda +Hien +Illiana +Ilyana +Iona +Iqra +Irena +Iridiana +Irina +Irlanda +Jadelyn +Jaelin +Jakeline +Jakia +Jalisa +Jalyssa +Jameisha +Jamilet +Jannel +Jannelle +Jannely +Janneth +Jasmeet +Jason +Jaylyn +Jaymie +Jazmen +Jeanie +Jelani +Jemma +Jenefer +Jenipher +Jensine +Jerika +Jessa +Jezebel +Ji +Jianna +Jissel +Joanie +Jocelynne +Johannah +John +Joie +Jorge +Jovonna +Jubilee +Julee +Juli +Julliana +Justis +Kacee +Kaija +Kailie +Kaitlynne +Kajal +Kamaria +Kambria +Kana +Karie +Karlene +Katharina +Katherina +Kathlene +Kathlyn +Kathrin +Katina +Katryna +Katty +Kaycie +Kaydee +Kaylea +Keaira +Kealani +Keegan +Keera +Keianna +Keirsten +Keiry +Kelcee +Kellee +Kennedie +Kerstin +Keyanna +Keyona +Kiahna +Kimiko +Kiona +Kionna +Kiya +Korena +Kristianna +Kristyna +Kylene +Kymberly +Lakeisha +Lamia +Lane +Lania +Latanya +Laureen +Leeanne +Leidy +Leigha +Leilany +Lilianne +Lilith +Lisandra +Lissa +Lissett +Lizzet +Loraine +Lorren +Loryn +Love +Lynnae +Lyssa +Mackinzie +Madelynne +Mae +Magen +Maguadalupe +Maha +Mahnoor +Maili +Maisha +Makeda +Maleni +Malisa +Malory +Manar +Manon +Manvir +Maraya +Marelyn +Margret +Mariaceleste +Marisha +Mariza +Markisha +Marli +Marly +Marsela +Maryhelen +Maryrose +Mecca +Megha +Meilani +Melizza +Mellanie +Merlyn +Meztli +Mi +Midori +Miesha +Mikenna +Milca +Millicent +Millie +Minnie +Mirta +Miyah +Molina +Monzerrat +Muna +Myah +Mykala +Mykel +Mylene +Naima +Nairi +Nakayla +Nathali +Natsumi +Navjot +Nayana +Nayelly +Neriah +Nevada +Nicholas +Nickole +Nikol +Nisa +Nitya +Noreen +Odessa +Omunique +Opal +Ophelia +Payten +Pebbles +Penny +Peri +Raine +Ramandeep +Randee +Raquelin +Reana +Rebekka +Reece +Regine +Rhyan +Rianne +Rilee +River +Rosalee +Rosenda +Ruchi +Ryleigh +Sabreena +Sahian +Saleena +Samia +Sarafina +Saraya +Sareen +Sarra +Sarrah +Sascha +Sativa +Savonna +Sean +Seanna +Secret +Seneca +Serrina +Shabnam +Shaiann +Shaianne +Shalom +Shalyn +Shanell +Shanika +Shantelle +Sharay +Sharee +Shaunna +Shaylah +Shaylin +Shelsey +Sheri +Sheyanne +Shira +Shruthi +Shyenne +Sian +Siarah +Silvana +Sinead +Skylynn +Smita +Sneha +Sofie +Stephannie +Sugey +Suhey +Sukhmani +Suzana +Syrena +Tabetha +Tahlia +Tahnee +Taia +Talisa +Tana +Teara +Tearra +Teryn +Thais +Tiaira +Tiffaney +Topacio +Torrey +Tova +Tran +Tyana +Unknown +Velen +Vernice +Wendi +Wesley +Whisper +Winona +Yailyn +Yancy +Yanelli +Yasaman +Yeni +Yennifer +Yer +Yissel +Ymani +Yohana +Yoseline +Ysabella +Yudith +Yulianna +Yumi +Yuritza +Yuritzy +Yvanna +Zakiyyah +Zaynah +Zeinab +Zuleika +Zurisadai +Jessica +Ashley +Emily +Samantha +Jennifer +Sarah +Alexis +Vanessa +Alyssa +Stephanie +Elizabeth +Jasmine +Hannah +Maria +Natalie +Madison +Victoria +Kimberly +Taylor +Melissa +Brianna +Amanda +Diana +Michelle +Nicole +Andrea +Lauren +Megan +Alexandra +Rachel +Kayla +Julia +Leslie +Daisy +Emma +Katherine +Esmeralda +Destiny +Jacqueline +Jocelyn +Danielle +Rebecca +Sabrina +Abigail +Cynthia +Angelica +Crystal +Alejandra +Karina +Sophia +Monica +Olivia +Brenda +Gabriela +Brittany +Sara +Isabella +Amber +Adriana +Marissa +Isabel +Briana +Savannah +Sierra +Tiffany +Alondra +Karen +Mariah +Sydney +Allison +Evelyn +Guadalupe +Valerie +Christina +Laura +Ana +Cassandra +Ariana +Veronica +Kaitlyn +Madeline +Jordan +Alicia +Angela +Haley +Amy +Grace +Erika +Jasmin +Nancy +Morgan +Anna +Brooke +Karla +Giselle +Kelly +Breanna +Claire +Gabrielle +Chloe +Yesenia +Miranda +Daniela +Jenna +Courtney +Priscilla +Jazmin +Alexa +Bianca +Alexandria +Maya +Hailey +Mary +Melanie +Erica +Katelyn +Mia +Valeria +Desiree +Sandra +Cindy +Erin +Shelby +Gabriella +Bailey +Cheyenne +Rosa +Ruby +Selena +Claudia +Paige +Celeste +Monique +Patricia +Jamie +Sofia +Wendy +Catherine +Denise +Mikayla +Kylie +Arianna +Kaylee +Joanna +Katie +April +Mayra +Audrey +Kelsey +Angelina +Caitlin +Serena +Dominique +Liliana +Mackenzie +Christine +Chelsea +Heather +Shannon +Paola +Tatiana +Jade +Jazmine +Michaela +Carolina +Julissa +Zoe +Makayla +Cassidy +Cecilia +Faith +Kassandra +Kathryn +Caroline +Julie +Vivian +Natalia +Genesis +Mariana +Summer +Janet +Autumn +Naomi +Kristen +Elena +Marisol +Lily +Ariel +Lindsey +Marina +Angel +Carmen +Cristina +Viviana +Leah +Isabelle +Clarissa +Brittney +Gloria +Lisa +Lizbeth +Raquel +Molly +Lorena +Lesley +Kaitlin +Caitlyn +Kiana +Aileen +Jenny +Juliana +Teresa +Katrina +Adrianna +Jillian +Kristina +Camille +Madeleine +Linda +Sonia +Nina +Krystal +Marisa +Marlene +Miriam +Julianna +Riley +Leticia +Kendall +Rebekah +Cameron +Hayley +Yvette +Hanna +Alison +Natasha +Perla +Kathleen +Margaret +Alissa +Alma +Irene +Madelyn +Nathalie +Martha +Alexia +Maritza +Lesly +Noemi +Sophie +Alana +Bethany +Carla +Carly +Cristal +Meghan +Allyson +Mckenna +Paulina +Lizette +Anahi +Jordyn +Kyra +Ruth +Luz +Lillian +Tania +Alina +Delaney +Maribel +Marilyn +Sharon +Amelia +Kate +Tara +Holly +Casey +Margarita +Araceli +Angie +Lydia +Melody +Hope +Helen +Iris +Jada +Arlene +Esther +Gianna +Lindsay +Mariela +Annie +Kendra +Rose +Susana +Deanna +Fatima +Kiara +Yasmin +Dana +Gisselle +Blanca +Edith +Graciela +Justine +Beatriz +Nadia +Rocio +Carina +Sarai +Eva +Celine +Janelle +Mikaela +Alexus +Daniella +Reyna +Nataly +Jocelyne +Marie +Pamela +Josephine +Judith +Berenice +Cierra +Heidi +Ivy +Mireya +Skylar +Elise +Jacquelyn +Savanna +Anastasia +Bryanna +Kira +Renee +Itzel +Katelynn +Ava +Brandy +Dulce +Sandy +Emely +Kylee +Rachael +Salma +Tiana +Kathy +Athena +Charlotte +Gina +Sienna +Eileen +Mercedes +Ashlee +Bridget +Leilani +Susan +Tanya +Destinee +Jeanette +Yasmine +Carissa +Elisa +Stephany +Kyla +Alice +Ashlyn +Deja +Kristin +Mckenzie +Talia +Yadira +Asia +Jane +Kirsten +Sidney +Stacy +Tessa +Aaliyah +Avery +Imani +Nayeli +Precious +Fabiola +Darlene +Gillian +Kailey +Kara +Makenna +Clara +Elaine +Kennedy +Larissa +Aimee +Johanna +Angelique +Jaqueline +Tatyana +Yessenia +Carolyn +Raven +Theresa +Frances +Francesca +Skyler +Tyler +Juliet +Lucia +Aliyah +Estrella +Karissa +Noelle +Yvonne +Camryn +Silvia +Rebeca +Anissa +Rosemary +Kristine +Sasha +Annika +Diane +Brenna +Sadie +America +Breana +Dalia +Fernanda +Heaven +Lizeth +Sylvia +Genevieve +Lucy +Maricela +Aylin +Ciara +Norma +Felicia +Simone +Virginia +Aubrey +Jessie +Julianne +Melina +Casandra +Cheyanne +Odalis +Paula +Diamond +Ella +Fiona +Juliette +Lauryn +Maggie +Micaela +Mya +Aurora +Belen +Nikki +Baylee +Leila +Lourdes +Jailene +Regina +Antonia +Dakota +Elisabeth +Esperanza +Lacey +Malia +Yolanda +Janette +Meagan +Stacey +Tatum +Tina +Annette +Roxana +Tabitha +Anita +Anne +Celia +Damaris +Nia +Odalys +Whitney +Deborah +Krista +Tori +Jaclyn +Mallory +Peyton +Tamara +Taryn +Abril +Arielle +Britney +Lena +Adrienne +Catalina +Eliza +Georgia +Hunter +Tayler +Haylee +Jenifer +Kasey +Barbara +Dianna +Joyce +Savanah +Yajaira +Adilene +Camila +Iliana +Ivette +Lucero +Nadine +Vanesa +Xochitl +Alisha +Donna +Ellen +Isela +Janice +Kaitlynn +Kenia +Lisette +Sheila +Arely +Celina +Eliana +Emilee +Joselyn +Kristy +Giovanna +Griselda +Kasandra +Nora +Reina +Anais +Connie +Denisse +Eden +Irma +Jazlyn +Jewel +Liana +Viridiana +Alize +Brooklyn +Corina +Gladys +Maia +Paris +Payton +Shirley +Alanna +Alisa +Brandi +Ebony +Ericka +Hana +Kassidy +Kaylie +Magdalena +Nichole +Nicolette +Roxanne +Sarina +Thalia +Tracy +Cara +Kaila +Kaylin +Rita +Sarahi +Shayla +Alena +Ciera +Estefany +Helena +Marcela +Melinda +Ally +Carol +Georgina +Joy +Madalyn +Phoebe +Rachelle +Rosario +Serina +Toni +Alyson +Ashleigh +Eunice +Grecia +Ingrid +Kellie +Lilian +Selina +Ashlynn +Christy +Skye +Delilah +Evelin +Jackeline +Jaylene +Kailee +Katarina +Kenya +Ryan +Sally +Trinity +Aracely +Estefania +Isis +Janessa +Leanna +Marisela +Rhiannon +Robyn +Yulissa +Eleanor +Frida +Hailee +Laurel +Macy +Tiara +Yazmin +Flor +Janae +Makenzie +Paloma +Rylee +Violet +Abby +Cassie +Daphne +Ivana +Juana +Juanita +Maira +Pauline +Tammy +Anika +Antoinette +Devon +Emilie +Lissette +Tianna +Katharine +Katlyn +Marianna +Rubi +Allie +Colleen +Joanne +Lilly +Meredith +Tia +Angeles +Chelsey +Ellie +Hazel +Ivonne +Tyra +Yasmeen +Anabel +Ayanna +Beatrice +Bonnie +Charlene +Joana +Kelsie +Mariam +Maryjane +Moriah +Nathaly +Tamia +Unique +Ann +Ashly +Candice +Destiney +Jackelyn +Katia +Lilia +Maddison +Marcella +Marlen +Mirella +Natali +Reanna +Betsy +Candace +Desirae +Heidy +Jazmyn +Kayleigh +Lea +Priscila +Scarlett +Valentina +Zoey +Aisha +Beverly +Brianne +Bridgette +Calista +Carley +Cathy +Clare +Delia +Devyn +Elsa +Madelynn +Robin +Simran +Tess +Yareli +Adela +Alessandra +Annabelle +Astrid +Devin +Elissa +Elyssa +Kiley +Layla +Luisa +Michele +Stefanie +Anya +Christian +Julisa +Lina +Melisa +Stella +Vicky +Bailee +Callie +Corinne +Emilia +Estefani +Hillary +Jacklyn +Josefina +Joseline +Kelli +Leanne +Lidia +Lupita +Nikita +Shania +Yulisa +Bertha +Dania +Judy +Kayley +Mara +Myra +Shayna +Star +Yessica +Alysa +Areli +Cinthia +Josie +Kianna +Logan +Madisyn +Raylene +Serenity +Shyanne +Tea +Carrie +Christiana +Danica +Dayana +Joelle +Kamryn +Lexi +Mckayla +Rosie +Sonya +Zaira +Estela +Joceline +Kaela +Magaly +Misty +Selene +Yahaira +Essence +Ilene +Justice +Keila +Kiera +Lilliana +Makena +Olga +Sage +Starr +Tatianna +Aleena +Azucena +Chanel +Cora +Corrina +Demi +Emerald +Gema +Gissel +Johana +Karly +Katerina +Madisen +Micah +Pearl +Rosalinda +Siena +Stevie +Alaina +Bernadette +Carlie +Darian +Elaina +Jennie +Jessenia +Keely +Lia +Maricruz +Marlena +Montana +Rochelle +Rylie +Savana +Suzanne +Tiffani +Alayna +Belinda +Cayla +Cecelia +Christa +Elvira +Janely +Kaley +Kristal +Lexie +Lyric +Neida +Ryann +Taya +Tierra +Alexandrea +Anai +Ayleen +Brisa +Chantal +Elvia +Ileana +Kacey +Kristi +Madyson +Milan +Noel +Regan +Reilly +Sydnee +Vivianna +Amari +Annalise +Annamarie +Aryana +Caitlynn +Clarisa +Daria +Hilda +Izabella +Jessika +Kaylyn +Lila +Lynette +Roxanna +Shea +Aleah +Annabel +Aubree +Bryana +Geneva +Harley +Haylie +Isabela +Janine +Karli +Karlie +Katy +Kierra +Leann +Lexus +Lisbeth +Monet +Yoselin +Zaria +Adrian +Allyssa +Bernice +Cambria +Chandler +Danika +Dawn +Franchesca +Gisel +Gisell +Ilse +Jacquelin +Kacie +Karlee +Kelsi +Marley +Maxine +Monika +Naidelyn +Reagan +Saira +Xiomara +Yaritza +Addison +Angeline +Brooklynn +Camilla +Candy +Dahlia +Davina +Doris +Evangelina +Gracie +Haleigh +Jaime +Janeth +Jesenia +Kailyn +Kali +Kiersten +Lorraine +Maegan +Magali +Mindy +Nallely +Rayna +Shaina +Valery +Abbey +Alysia +Ashlie +Ayana +Citlali +Citlalli +Dora +Dorothy +Elisha +Elyse +Geraldine +Gisela +Hallie +Harmony +Imelda +Jeannette +Kaylah +Macie +Martina +Quinn +Randi +Sky +Susanna +Verenice +Willow +Annalisa +Aryanna +Ayla +Dolores +Gwendolyn +Jesse +Joann +Kaelyn +Klarissa +Lizet +Loren +Nayely +Nelly +Princess +Suzette +Aiyana +Alia +Allegra +Amira +Anisa +Bella +Christie +Consuelo +Destini +Dianne +Dylan +Jana +Jazmyne +Jocelynn +Kayleen +Lara +Monserrat +Shreya +Xena +Yesica +Adeline +Amina +Betty +Dejah +Elsie +Ireland +Jaquelyn +Jayda +Jayla +Jesus +Jocelin +Leeann +Mari +Mariel +Maryam +Mina +Mira +Mirna +Pilar +Shawna +Shyann +Skyla +Trisha +Adelina +Alex +Amani +Cali +Carli +Chantel +Drew +Eve +Faviola +Felicity +Galilea +Halle +Iridian +Jackie +Janell +Justina +Kari +Katya +Kayli +Kaylynn +Kenna +Mai +Mariaguadalupe +Noemy +Rosaisela +Vianey +Violeta +Yaneli +Alexi +Aliya +Amalia +Anjelica +Ariella +Asha +Bria +Brielle +Chelsie +Chyna +Dina +Francine +India +Ivanna +Julieta +June +Kaleigh +Kaya +Kaycee +Kelley +Kristie +Lana +Lori +Maura +Michael +Natalya +Penelope +Presley +Raina +Rowan +Sabina +Samira +Stefani +Sydnie +Vannesa +Zulema +Alycia +Alysha +Amara +Anamaria +Annelise +Anyssa +Ariadna +Ashton +Breann +Brittani +Brook +Coral +Darby +Deisy +Dennise +Domonique +Francisca +Gemma +Ginger +Inez +Isabell +Jena +Jeniffer +Jolene +Jovanna +Keyla +Kristiana +Lesli +Lilianna +London +Marlyn +Milagros +Miracle +Mirian +Rene +Rhianna +Shivani +Yanet +Yanira +Aida +Alexys +Ani +Annmarie +Aria +Arleen +Ashanti +Baylie +Bianka +Bibiana +Bobbi +Brandie +Brynn +Cydney +Dalila +Debbie +Gwyneth +Jacinda +Jaelyn +Jasmyn +Jaylin +Joan +Joselin +Juliann +Karolina +Kathia +Korina +Kyleigh +Madilyn +Mariaelena +Marielena +Mercedez +Myah +Neha +Nereida +Oriana +Rosemarie +Samara +Sheridan +Stefany +Yarely +Aliza +Alyse +Analisa +Anel +Annabella +Billie +Cailey +Carlee +Chiara +Cinthya +Daijah +Danae +Darcy +Dayna +Desire +Elva +Eryn +Francis +Isamar +Jaquelin +Jennyfer +Kaytlin +Lianna +Luna +Maiya +Makaila +Marielle +Marta +Maureen +Meaghan +Myranda +Nathalia +Priya +Sahara +Salina +Sherry +Shianne +Soledad +Susie +Winnie +Xochilt +Aide +Ailyn +Amaya +Anayeli +Annemarie +Arlyn +Aspen +Breonna +Brianda +Carson +Celest +Charity +Chase +Cherish +China +Citlaly +Daija +Destinie +Gissell +Gizelle +Hayden +Jayleen +Jesica +Jose +Katheryn +Kaylen +Kori +Kourtney +Laila +Lilibeth +Lisset +Lyndsey +Lynn +Maeve +Maricarmen +Marin +Mariyah +Mikala +Mitzi +Miya +Mollie +Noor +Ofelia +Priyanka +Sana +Shelly +Sulema +Sunny +Tehya +Aja +Anisha +Ashely +Cameryn +Cheryl +Cori +Destany +Emani +Frankie +Gladis +Glenda +Haydee +Hilary +Jaden +Jaiden +Jenelle +Jodi +Josselyn +Kalyn +Karin +Katalina +Katelin +Katlynn +Kaylene +Kendal +Keren +Leslye +Liberty +Linnea +Macey +Marianne +Maricella +Marla +Marleen +Maryann +Melia +Nyla +Ramona +Rhea +Sahar +Sydni +Yanely +Yazmine +Ada +Agnes +Allissa +Amie +Anabelle +Angelic +Angelita +Becky +Breanne +Breeana +Brigitte +Bryn +Chrystal +Dajah +Daniel +Darla +Deyanira +Elexis +Estephanie +Giana +Jaida +Janel +Jaycee +Jenae +Jill +Jodie +Joslyn +Journey +Jovana +Kai +Kailani +Kalie +Kimberley +Kirstin +Leonela +Lili +Louisa +Maile +Malina +Maranda +Marian +Marjorie +Melany +Minerva +Pricilla +Raegan +Rayven +Rianna +Rosalyn +Saray +Shaelyn +Shanna +Shauna +Sheyla +Stephania +Tamera +Tiffanie +Zoie +Acacia +Adrianne +Alexxis +Alyssia +Angelika +Arlette +Aya +Belle +Cecily +Chasity +Chyanne +Ciarra +Cienna +Deana +Delanie +Elle +Eloisa +Farrah +Ilana +Jamila +Janelly +Janie +Jean +Jiselle +Kameron +Keilani +Kim +Lillie +Liza +Lizbet +Lizett +Mabel +Madelyne +Maisie +Makala +Monae +Montserrat +Neyda +Nicolle +Noelani +Raelene +Rosalia +Ryanne +Sammantha +Sarena +Shae +Sirena +Soraya +Tanisha +Teagan +Terry +Valarie +Venus +Vienna +Winter +Yelitza +Yuliana +Aislinn +Alani +Alexander +Amairani +Amaris +Anahy +Anthony +Aubrie +Audra +Breeanna +Constance +Cortney +Dallas +Debra +Divya +Edna +Gia +Gianni +Iman +Kayle +Keana +Keira +Kinsey +Kristian +Matilda +Mikaila +Nadya +Nubia +Parker +Racquel +Rena +Rosaura +Sade +Sayra +Sequoia +Serene +Shelbi +Shelley +Socorro +Stacie +Suzanna +Vannessa +Yenifer +Yisel +Zaida +Aime +Alexsis +Ali +Ambar +Amethyst +Anaya +Anjali +Arline +Avalon +Blair +Bryce +Christen +Christopher +Chynna +Colette +Debora +Dejanae +Elida +Erykah +Ester +Geena +Ivory +Jael +Jahaira +Janett +Janis +Janna +Jasmeen +Jayme +Jayna +Jazzmine +Jeanine +Jessi +Joey +Jolie +Jordin +Kalea +Kenzie +Kyle +Leandra +Lessly +Lilyana +Mackenna +Maite +Marbella +Merissa +Mona +Naomy +Nellie +Nydia +Octavia +Raelyn +Rayleen +Rebeka +Rosio +Sariah +Selah +Shana +Shantel +Shaylee +Siera +Taliyah +Terra +Vania +Venessa +Vera +Vivica +Vivien +Yecenia +Zayra +Abbie +Abbigail +Adina +Ahtziri +Alannah +Analicia +Anay +Andie +Ariadne +Arianne +Bianey +Bobbie +Brieanna +Brittanie +Catrina +Caylin +Chandra +Chanelle +Ciana +Corrine +Daisey +Danna +Desteny +Eleni +Elexus +Evette +Fallon +Faye +Francia +Gisele +Idalis +Ines +Jackelin +Jailyn +Jaimie +Jasleen +Jayline +Jazzmin +Jeannie +Joselyne +Kaia +Kailah +Kalani +Karely +Keeley +Kerry +Kimberlee +Lani +Leia +Lluvia +Lucille +Madelaine +Madelin +Makaela +Mandy +Margaux +Marilin +May +Mayte +Meliza +Miah +Mika +Nalani +Nanci +Nayelli +Noa +Petra +Quiana +Scarlet +Shelbie +Shira +Sonja +Spencer +Symone +Tabatha +Tracey +Trina +Tristan +Tristin +Tyanna +Viktoria +Aditi +Alanis +Alejandro +Alexyss +Alisia +Ami +Analise +Andrew +Andria +Anneliese +Ariane +Aryn +Ashli +Azalea +Britany +Brittnee +Brittni +Cailyn +Celena +Chelsy +Christal +Clarice +Danyelle +Dara +Dayanna +Devan +Deysi +Dominque +Dyana +Eboni +Elsy +Emmalee +Farah +Greta +Gretchen +Grisel +Hanah +Haven +Ivon +Izabel +Janay +Jasmyne +Jayden +Jaylynn +Jaymie +Jeanelle +Jimena +Julian +Kaiya +Karisma +Karley +Kelsy +Keri +Kimberlyn +Kiran +Komal +Krysta +Lacie +Lysette +Marion +Micayla +Michayla +Mickayla +Mildred +Mimi +Naya +Nereyda +Niki +Patience +Phoenix +Piper +Ravyn +Renae +Renata +Rikki +Riya +Romina +Rosalie +Samar +Shanice +Sierrah +Sommer +Stephani +Sunshine +Terri +Treasure +Tyana +Valencia +Xenia +Yaquelin +Yoseline +Yuri +Zahra +Zena +Abigayle +Aidan +Akira +Alea +Alejandrina +Alesha +Alise +Allysa +Amrit +Anamarie +Andi +Angelia +Annalee +Arcelia +Arriana +Aundrea +Austin +Ayesha +Bridgett +Brigette +Brionna +Briseida +Bronte +Callista +Catarina +Charisma +Cielo +Corey +Corinna +Deserie +Destanie +Elianna +Elicia +Eloise +Elora +Emmeline +Eryka +Estella +Eugenia +Fanny +Gabriel +Gurleen +Hadley +Halie +Hennessy +Ilianna +Jaileen +Jalyn +Jaslyn +Jayde +Joscelyn +Juan +Kaeli +Kaili +Katherin +Kathya +Kelcie +Kemberly +Kennedi +Keyana +Kia +Kimberli +Kristyn +Kyara +Lee +Leena +Leigh +Lexis +Lindy +Liz +Lucie +Luzmaria +Marilynn +Maritsa +Marlee +Marrissa +Mele +Mercy +Michela +Mila +Milena +Myla +Nohely +Oralia +Pooja +Pricila +Raeann +Rayann +Rosalva +Rosita +Saige +Sedona +Shannen +Shasta +Shaye +Shyla +Sinai +Sol +Suleima +Taelor +Talya +Tasia +Tatiyana +Teresita +Thania +Thea +Tiarra +Tristen +Vanity +Vicki +Vivienne +Xitlaly +Yamilex +Yuridia +Zainab +Zenaida +Abrianna +Alexsandra +Alora +Amal +Anessa +Ania +Aniyah +Annel +Ariah +Ariela +Armani +Ashleymarie +Aurelia +Bailie +Berenise +Berlin +Bethanie +Biridiana +Bree +Brittny +Cailin +Caleigh +Camden +Caren +Caylee +Celene +Cesia +Charlie +Claudine +Dalilah +Danya +Daysi +Denice +Dorian +Elana +Elia +Elijah +Ellis +Elysia +Emelia +Emmanuelle +Emoni +Estephany +Evelynn +Florence +Genessis +Holland +Idalia +Irlanda +Jannet +Jazzlyn +Jessa +Jewell +Josette +Jourdan +Jubilee +Julieann +Julieanne +Juliza +Kaelynn +Kalei +Kalena +Kalia +Kalynn +Kamila +Karine +Kasie +Kathrine +Katlin +Kaytlyn +Kendyl +Kiah +Krysten +Krystina +Kyndra +Laurie +Leana +Lexy +Libby +Liseth +Lorissa +Lyla +Lynda +Mae +Margo +Mariaisabel +Mariajose +Mariella +Maryanne +Melyssa +Michell +Mirka +Mykayla +Myriam +Nidia +Nika +Nikole +Noah +Ocean +Pa +Patsy +Rebecka +Remi +Riana +Rileigh +Rosalba +Rosalina +Roselyn +Rosy +Ryleigh +Sabine +Safa +Samaria +Santana +Shanelle +Shiann +Sofie +Tala +Tatyanna +Taylar +Thelma +Veronika +Vianca +Wendi +Xitlali +Yailin +Yamilet +Yara +Yocelin +Ysabel +Zaire +Abigale +Addie +Adelaide +Alaysia +Alba +Alyna +Amairany +Anakaren +Analy +Ananya +Anastacia +Anmol +Annabell +Arlet +Audrianna +Aysha +Banesa +Beth +Blake +Brigid +Briseyda +Brittaney +Carmela +Ceara +Chantelle +Charis +Charmaine +Cleo +Concepcion +Cordelia +Daisha +Danessa +David +Denisha +Desiray +Elliana +Emerson +Emery +Enedina +Esmerelda +Evelia +Gianina +Giavanna +Gricelda +Heavenly +Hollie +Jacquelynn +Jadyn +Jaelene +Jai +Jaimee +Jalen +Jannette +Jaya +Jeanie +Jenica +Jessalyn +Jody +Johnna +Johnnie +Jonathan +Joselynn +Joshua +Kacy +Kalina +Kallie +Kameryn +Karena +Karyn +Karyna +Kelsea +Khadija +Kiani +Kimia +Kindra +Kyanna +Kylah +Laisha +Leigha +Leonor +Lilah +Lilit +Lizzeth +Lizzette +Lois +Lola +Louise +Lupe +Lyndsay +Madalynn +Makenzi +Malaysia +Maleah +Manpreet +Manuela +Marguerite +Mariya +Marlin +Marlina +Marlo +Marylou +Marysol +Mattie +Mayela +Meg +Mekayla +Mellissa +Meriah +Michaella +Nicola +Nisha +Racheal +Raelynn +Rain +Rana +Raya +Rayanna +Reem +Reese +Rio +Roberta +Saba +Sadaf +Samanta +Sarahy +Sawyer +Sheena +Shiloh +Shoshana +Sianna +Sindy +Siobhan +Sonali +Starla +Stormy +Sujey +Tarah +Tawny +Teanna +Therese +Tricia +Ursula +Yoana +Yocelyn +Ysabella +Yuliza +Zara +Zoila +Abagail +Adamari +Adele +Aidee +Aleida +Alexiss +Alexzandra +Aliana +Alijah +Amayrani +Amberly +Amrita +Analaura +Andreina +Andreya +Annaliese +Annamaria +Ariyana +Arleth +Ashtyn +Audrie +Betzaida +Brandee +Briahna +Brieana +Caprice +Carmina +Catelyn +Charley +Chastity +Cherie +Chyenne +Cianna +Clarisse +Corissa +Corrie +Cosette +Cruz +Cyan +Dafne +Daizy +Dakotah +Damariz +Daryn +Dasha +Dasia +Deandra +Deena +Deisi +Demetria +Dena +Denae +Destine +Destyni +Devina +Devynn +Dezirae +Deziree +Diandra +Donielle +Elba +Elina +Emelyn +Emilyn +Evangeline +Flora +Hailie +Harriet +Hellen +Holli +Isaura +Itati +Jailine +Jakelin +Jaymee +Jazelle +Jazlynn +Jeanna +Jenessa +Josephina +Judit +Julieanna +Kaci +Kaeley +Kaily +Kala +Kalin +Kamari +Kamille +Kati +Kay +Kayce +Kaylan +Keanna +Keiana +Kendell +Kerri +Keyanna +Khadijah +Kirstie +Kora +Kyndall +Lacy +Larisa +Laryssa +Leeanna +Leyla +Lillianna +Lilyann +Lisbet +Liset +Livia +Lorna +Loryn +Luis +Magda +Malissa +Marcia +Marilu +Marleni +Maryah +Mattison +Michal +Michel +Morelia +Morganne +Myrna +Naja +Nathali +Nohemi +Patrice +Paulette +Quincy +Reanne +Remy +Rian +Ronni +Rosalind +Salena +Seleste +Selma +Serafina +Shai +Shakira +Shanel +Shawn +Sheyenne +Silver +Sugey +Tamar +Tayla +Torrey +Torri +Tory +Tristyn +Vi +Vianna +Yael +Yoselyn +Yunuen +Zulma +Zuri +Aaron +Abriana +Adreanna +Alexes +Alexzandria +Alli +Althea +Alvina +Amariah +Amelie +Aminah +Amirah +Andriana +Angella +Aniya +Antonina +Anusha +Araya +Aries +Arika +Ashia +Audree +Autum +Averie +Aysia +Azaria +Bayley +Brian +Caleb +Calli +Cami +Carlin +Carlos +Carmelita +Cassia +Celestina +Cera +Cerina +Cesilia +Chayanne +Cheyann +Christin +Colby +Cristen +Cristy +Crysta +Daja +Dani +Emonie +Erendira +Erynn +Estefanie +Evan +Evony +Fayth +Gaia +Gardenia +Genevie +Genna +Guillermina +Gurpreet +Haidee +Halee +Hali +Halley +Imari +Italia +Ivett +Ivey +Iyana +Iyanna +Jalynn +Jannelle +Janneth +Jarely +Jaylen +Jemma +Jenevieve +Jennah +Jensen +Jessyca +Jissel +Jonnie +Jordana +Jordynn +Julienne +Julyssa +Justin +Kaelah +Kailynn +Kaitlan +Kaleena +Kaliah +Kami +Kandice +Karah +Karinna +Karis +Karol +Kashia +Keisha +Kiarra +Kirstyn +Kiyomi +Kyana +Laine +Lianne +Linette +Lizabeth +Lizzet +Lynnette +Maci +Magdalene +Mahogany +Malaya +Malea +Malika +Maren +Margot +Mariadejesus +Marialuisa +Marika +Marisabel +Markie +Marlaina +Marycarmen +Marycruz +Maryssa +Melodie +Merari +Micheala +Midori +Mikah +Milagro +Millie +Minna +Morgen +Myia +Myka +Mykala +Mylene +Naibe +Natallie +Neda +Neftali +Nely +Nichelle +Nour +Odaliz +Olympia +Prisila +Rae +Raeanna +Raeanne +Raquelle +Rayanne +Reema +Richelle +Rickie +Rina +Rivka +Rosanna +Rosi +Rubie +Sahana +Sanjana +Scarlette +Selenia +Selin +Shaila +Shari +Shawnee +Shruti +Shyanna +Sloane +Steffany +Symphony +Tahlia +Taiya +Taleen +Taline +Tamra +Tanner +Tanvi +Tasha +Tayah +Teah +Topanga +Trista +Tyla +Vaneza +Vianney +Vivianne +Ximena +Yaneth +Yuka +Zariah +Zayda +Zhane +Zinnia +Adelaida +Adia +Adria +Aiko +Ailin +Aine +Ajanae +Alanah +Alandra +Alecia +Alix +Allana +Alliyah +Alyissa +Alyza +Amparo +Anahit +Anaiz +Analiese +Analuisa +Andres +Aneesa +Anette +Angelena +Annalia +Antonette +Aranza +Araseli +Arin +Arissa +Arlyne +Armine +Ashleynicole +Asusena +August +Aura +Avigail +Ayah +Betsabe +Brina +Britni +Britny +Brookelyn +Brooklin +Caley +Candelaria +Carleigh +Caryn +Cassey +Cassondra +Catera +Cayley +Caylie +Cerena +Chanell +Christianna +Cintia +Clair +Cristian +Cyrena +Czarina +Daeja +Daisia +Danelle +Daysy +Deanne +Deirdre +Delila +Delmy +Deseree +Desirea +Destanee +Devany +Dinah +Dolly +Donya +Elexa +Elisabet +Elisia +Ember +Emiko +Evelyne +Evie +Fabiana +Felisha +Francisco +Gabriele +Gaby +Georgette +Geovanna +Gissele +Giulia +Glendy +Graciella +Harlee +Harleen +Harlie +Harpreet +Helene +Henna +Ibeth +Ida +Iesha +Ileen +Irena +Isel +Isobel +Ixchel +Jacey +Jacob +Jacquelyne +Jaidyn +Jalissa +Jami +Janaya +Janee +Jaycie +Jaylah +Jeana +Jeanne +Jennafer +Jennica +Jenniffer +Jerica +Jesseca +Jesslyn +Jessy +Jiana +Joi +Joleen +Joseph +Josseline +Kacee +Kady +Kaelie +Kaelin +Kailie +Kaira +Kalee +Kandace +Kareena +Karime +Karishma +Karizma +Karleigh +Karoline +Kathryne +Katiana +Kaylea +Kaylei +Kealani +Keara +Keianna +Kiely +Kilee +Kirra +Kortney +Linsey +Lora +Loretta +Luci +Lynsey +Madysen +Magen +Malena +Maliyah +Manal +Marcy +Marijane +Marine +Marleny +Maryelizabeth +Matilde +Mckinley +Meena +Melida +Melonie +Michala +Mileena +Milla +Mitzy +Myriah +Nailah +Nakia +Natalee +Natassja +Natividad +Neftaly +Nicollette +Nidhi +Nisa +Nithya +Nuvia +Nya +Nyssa +Oceana +Penny +Peri +Polly +Prisma +Promise +Quincey +Raechel +Ravina +Rebekkah +Rheanna +Richa +Rilee +Romy +Roya +Sable +Salem +Samatha +Samia +Sammi +Sandi +Sapphire +Savina +Scout +Shadi +Shani +Sharlene +Shay +Shelsea +Sheree +Sherrie +Shireen +Simona +Sintia +Suhey +Suzannah +Taja +Tajah +Tera +Tommi +Tonya +Uma +Vianka +Vickie +Wynter +Yamileth +Yarelly +Yissel +Zakiya +Zully +Abigael +Adamaris +Adelyn +Adi +Adrina +Aerin +Aislynn +Akilah +Aleen +Aleeza +Aleia +Alessia +Alexcia +Alexie +Alexius +Aline +Alona +Alyssah +Amberlyn +An +Anabell +Anabella +Analilia +Analissa +Anam +Aneesha +Anicia +Anja +Anjelika +Annessa +Anny +Ansley +Antionette +Aparna +Arabella +Arieanna +Arisa +Arly +Armida +Arwa +Ashna +Avneet +Ayline +Azariah +Azusena +Bahar +Bracha +Brandon +Breena +Brookelynn +Brynne +Cady +Camellia +Cammie +Carrington +Cathleen +Cathryn +Cayleigh +Chardonnay +Charissa +Charli +Chaya +Chelsee +Cherise +Cherokee +Cherry +Christianne +Citlally +Cloe +Collette +Courtnee +Cozette +Crista +Cristiana +Cristin +Cristine +Cyndy +Danyel +Darling +Darya +Daryl +Dayanara +Dayja +Deidre +Deija +Dejia +Delayna +Denis +Deserae +Destynie +Devorah +Dezarae +Deziray +Doreen +Ebelin +Eli +Elizabet +Ely +Elyssia +Emelin +Emi +Emmaline +Emmaly +Emmely +Emmy +Enya +Erandy +Eric +Erick +Erlinda +Ernestina +Esli +Esme +Estelle +Esthela +Estrellita +Evelina +Ezra +Georgiana +Gisella +Giuliana +Grayson +Han +Hanan +Harper +Hattie +Hayleigh +Hayli +Herlinda +Hosanna +Indiana +Indira +Iqra +Iran +Isaac +Isha +Isla +Israel +Issabella +Izamar +Jacklin +Jamaica +James +Janai +Janea +Jaskiran +Jaspreet +Jassmine +Jelena +Jenesis +Jenise +Jennessa +Jerrica +Jewelia +Jewels +Jezebel +Jianna +Jizelle +Jodee +Jordann +Jorden +Joslin +Journee +Joycelyn +Juliane +Jurnee +Kadie +Kaely +Kaleah +Kalista +Kamilah +Kana +Karisa +Karma +Katana +Katheleen +Kathie +Katina +Katja +Katriana +Kavya +Kaylani +Kaysha +Kaytlynn +Kelcey +Kezia +Khalia +Kimani +Kimberlie +Kimiko +Kirby +Kitana +Kyrah +Lailani +Latijera +Letty +Leyna +Lilyanna +Lisseth +Lorelei +Lyzette +Madisson +Maiah +Makaylah +Malka +Mallorie +Mana +Manisha +Marah +Mariafernanda +Mariann +Marline +Marwa +Marybel +Maryrose +Mathilda +Mayah +Maylin +Medha +Meera +Meilani +Melani +Melannie +Melanny +Mellany +Melony +Meranda +Miguel +Miriah +Mishelle +Mone +Mykel +Myrka +Nala +Nautica +Nayelly +Nayla +Nelida +Nena +Nhi +Nicholas +Nickole +Noelia +Nyah +Nylah +Odessa +Parris +Payal +Pearla +Perry +Phyllis +Puneet +Radhika +Raeleen +Rafaela +Rania +Rayne +Reana +Rhiana +Ricardo +Rima +Risa +Robbie +Roisin +Roseanna +Roselynn +Roshni +Rosicela +Rosisela +Rossy +Ryley +Sabryna +Sanam +Sarita +Sativa +Sean +Sera +Sergio +Shabnam +Shanaya +Shanon +Shantal +Sharai +Sharleen +Sharron +Shayne +Siara +Siarra +Sidnee +Silvana +Sima +Sloan +Sterling +Sunnie +Susanne +Tai +Taiz +Talar +Tamika +Tanaya +Taytum +Teaira +Tenaya +Teri +Thao +Tiani +Tiera +Traci +Triana +Troi +Tylor +Varsha +Verenise +Victor +Victorya +Vida +Vilma +Waverly +William +Yalitza +Yanelli +Yanelly +Yareth +Yasaman +Yer +Yohana +Yomira +Ysabelle +Yvonna +Zamantha +Zitlali +Zitlaly +Zoya +Zuleyma +Abbygail +Abilene +Abygail +Adamary +Addyson +Adelita +Adora +Ailene +Aishwarya +Aisling +Ajah +Alauna +Aleeah +Aleeya +Aleigha +Aleja +Aleksandra +Alessa +Alexiz +Alexsa +Alianna +Alissia +Alivia +Alizae +Aloni +Alonna +Alysse +Amada +Amanpreet +Amberlee +Ambria +Ambrosia +Ammy +Amna +Amor +Amorette +Anah +Anali +Analyssa +Ananda +Andreana +Andreanna +Angelicamarie +Angelisa +Angelyna +Anh +Anneka +Annisa +Annissa +Aoife +Arden +Arian +Arion +Ariyan +Ashlan +Ashlei +Ashlin +Ashlynne +Asma +Audriana +Augusta +Avani +Aylene +Azalia +Azia +Baileigh +Baily +Banessa +Bayleigh +Bayli +Berta +Betzy +Blythe +Breauna +Brett +Briceida +Briget +Briona +Britnee +Brittnie +Briyana +Briza +Bronwyn +Byanca +Byanka +Cadence +Caila +Calie +Cammi +Candis +Caressa +Carlene +Carrigan +Carrissa +Cassady +Cassaundra +Celestine +Chana +Chance +Charlee +Chelsi +Chloee +Chole +Christi +Cilicia +Claribel +Claudette +Clementine +Corrin +Cydnee +Cypress +Daina +Dallana +Damara +Damiana +Danisha +Darien +Darleen +Daviana +Dayra +Daysia +Dejanay +Dejane +Delana +Delicia +Denia +Der +Desaree +Desirey +Destani +Deven +Devine +Dezaray +Dia +Dionna +Dionne +Dixie +Dominic +Dominica +Dyani +Dymond +Echo +Edgar +Eduardo +Ekaterina +Ellena +Ema +Emalie +Emanuel +Emeli +Emelie +Emelly +Emiley +Emili +Emmily +Enrique +Erikah +Eveline +Evonne +Fey +Gabby +Gail +Gayle +Geanna +Gemini +Genavie +Genessa +Genisis +Gennesis +Giovana +Glory +Greer +Gudelia +Gwen +Hadeel +Hafsa +Hafsah +Haily +Hania +Harkiran +Haruka +Hermelinda +Heydy +Holley +Honesty +Idalys +Ila +Indica +Indigo +Iona +Ione +Irais +Isaiah +Itsel +Itzayana +Iveth +Ivie +Izabelle +Jacelyn +Jaci +Jacie +Jacinta +Jacklynn +Jacy +Jadah +Jae +Jaeda +Jakeline +Jalene +Jaliyah +Jamela +Jamilah +Janani +Janey +Jannely +Jasminemarie +Jassmin +Jazmen +Jazzlynn +Jeniece +Jennell +Jennika +Jenyfer +Jeri +Jesika +Johannah +Jolissa +Jonna +Jordon +Jorge +Joshlyn +Kaetlyn +Kailen +Kajal +Kalen +Kaliana +Kalissa +Kaliyah +Kalli +Kamara +Kambria +Karsyn +Kassidi +Kassie +Kaycie +Kaydee +Kazandra +Keaira +Keegan +Keilah +Kelani +Kelci +Kendyll +Kennia +Kenzi +Kerstin +Kevin +Keyara +Kierstin +Kirandeep +Kitty +Komalpreet +Krislyn +Krystin +Kylea +Kyler +Kyli +Kymberly +Kyndal +Lacee +Laina +Laken +Lakia +Lanae +Lanette +Laney +Lashay +Latiana +Latrice +Laurissa +Lavanya +Layne +Leeana +Leeza +Leilany +Leona +Leora +Lian +Ligia +Lillyana +Lillyanna +Linh +Lissete +Liv +Lizzete +Lladira +Lolita +Loraine +Loreal +Lucinda +Lulu +Lusine +Luzelena +Lyliana +Lyndsie +Macayla +Macee +Mackenzi +Madai +Madaline +Madelynne +Magnolia +Maha +Maliah +Mandi +Manon +Maral +Marcelina +Marena +Mariaceleste +Mariko +Marlynn +Marriah +Marrisa +Marsela +Marsha +Marya +Maryellen +Marysa +Massiel +Maycee +Mayda +Mecca +Meggan +Meghana +Megumi +Mehgan +Mekenna +Mekenzie +Melodee +Memory +Merina +Merlyn +Mikaylah +Mikela +Mikhaila +Milani +Minnie +Miryam +Miyah +Moira +Molli +Monalisa +Monee +Montanna +Myesha +Mykaela +Nada +Nakayla +Nandi +Nanette +Natasia +Navneet +Naydelin +Nazareth +Neelam +Neena +Neomi +Niah +Nilah +Noely +Norah +Noreen +Nova +Nuri +Oksana +Orion +Oscar +Otilia +Pahoua +Paisley +Paradise +Parisa +Passion +Peggy +Persephone +Polina +Prisilla +Quetzalli +Quin +Rawan +Raylena +Raymond +Rebeckah +Rebekka +Reena +Remington +Rhonda +Rhyan +Ricki +Rika +Robbi +Rona +Roni +Rory +Rosaicela +Rosaysela +Roslyn +Rubina +Ryanna +Sacha +Sachi +Sahira +Santina +Sareena +Sela +Sereena +Serrena +Shaden +Shaela +Shala +Shane +Shaniah +Shaniya +Shannan +Shavon +Shawntel +Sheri +Sherlyn +Sheryl +Shian +Shiori +Sian +Sidra +Sinthia +Solana +Soleil +Sona +Sonora +Stacia +Steffi +Stephanny +Suleyma +Supriya +Susy +Syann +Synthia +Taia +Tais +Talea +Talisa +Tami +Tana +Tannia +Tavia +Tegan +Tenia +Teya +Thais +Theodora +Tiare +Tionna +Tiyana +Tobi +Tomi +Tram +Van +Velvet +Venecia +Venezia +Vy +Xochil +Yailyn +Yannely +Yareni +Yoanna +Yovana +Yvanna +Zarahi +Zari +Zariya +Zayna +Zaynab +Zion +Zoee +Zoha +Zohra +Zuleika +Emily +Samantha +Jennifer +Ashley +Jessica +Alyssa +Alexis +Sarah +Elizabeth +Vanessa +Stephanie +Hannah +Jasmine +Natalie +Maria +Victoria +Lauren +Madison +Brianna +Kimberly +Andrea +Michelle +Melissa +Nicole +Taylor +Amanda +Leslie +Julia +Kayla +Megan +Alexandra +Diana +Destiny +Jacqueline +Rachel +Emma +Katherine +Daisy +Sophia +Isabella +Olivia +Danielle +Jocelyn +Abigail +Karina +Grace +Isabel +Angelica +Savannah +Rebecca +Gabriela +Sydney +Alejandra +Angela +Brenda +Daniela +Esmeralda +Crystal +Cynthia +Marissa +Alondra +Sabrina +Sierra +Sara +Briana +Karen +Evelyn +Adriana +Brittany +Amber +Valerie +Veronica +Mariah +Christina +Ariana +Giselle +Kaitlyn +Allison +Cassandra +Guadalupe +Monica +Melanie +Anna +Tiffany +Ana +Amy +Laura +Chloe +Karla +Morgan +Haley +Brooke +Alexa +Kelly +Claire +Hailey +Alicia +Jordan +Yesenia +Breanna +Miranda +Jazmin +Jenna +Nancy +Priscilla +Mia +Jasmin +Maya +Sofia +Mary +Bianca +Cindy +Faith +Catherine +Katelyn +Erika +Kiara +Madeline +Gabrielle +Audrey +Gabriella +Paola +Courtney +Erica +Liliana +Valeria +Katie +Sandra +Zoe +Alexandria +Kaylee +Ruby +Desiree +Arianna +Cheyenne +Angelina +Serena +Mikayla +Joanna +Genesis +Kylie +Vivian +Erin +Bailey +Celeste +Wendy +Claudia +Cassidy +Shelby +Denise +Mackenzie +Viviana +Carolina +Makayla +Caitlin +Paige +Jade +Lizbeth +Monique +Elena +April +Jazmine +Kassandra +Brittney +Selena +Angel +Caroline +Kathryn +Naomi +Jamie +Natalia +Rosa +Julie +Patricia +Jillian +Lily +Mariana +Tatiana +Chelsea +Summer +Clarissa +Kelsey +Mayra +Cecilia +Isabelle +Christine +Lizette +Marisol +Julissa +Lindsey +Juliana +Cristina +Marina +Raquel +Paulina +Alexia +Autumn +Kate +Camryn +Kristen +Lesly +Heather +Molly +Carmen +Hayley +Teresa +Riley +Gisselle +Dominique +Shannon +Leah +Cameron +Jaqueline +Kiana +Lauryn +Michaela +Ariel +Jenny +Sophie +Britney +Lillian +Mckenna +Katrina +Gloria +Miriam +Julianna +Caitlyn +Rebekah +Fatima +Kathleen +Aileen +Irene +Adrianna +Alma +Janet +Lesley +Marlene +Kristina +Martha +Camille +Krystal +Delaney +Lisa +Bethany +Kaitlin +Hanna +Skylar +Linda +Lorena +Natasha +Trinity +Eva +Holly +Nina +Carla +Esther +Margaret +Rose +Carly +Madelyn +Alina +Lizeth +Luz +Angie +Noemi +Perla +Yasmin +Madeleine +Leticia +Ava +Sarai +Arlene +Daniella +Elise +Gianna +Iris +Lindsay +Nathalie +Ruth +Sonia +Alison +Allyson +Emely +Meghan +Kendall +Marisa +Alissa +Alana +Charlotte +Kennedy +Leilani +Casey +Cristal +Gina +Jada +Anahi +Carina +Heidi +Kylee +Savanna +Jordyn +Susana +Maritza +Yvette +Janelle +Amelia +Marilyn +Sharon +Araceli +Dana +Helen +Hope +Kyra +Maribel +Tania +Bryanna +Itzel +Blanca +Eileen +Tara +Athena +Deanna +Mikaela +Salma +Edith +Lydia +Annie +Avery +Jailene +Lisette +Nayeli +Skyler +Elisa +Josephine +Jacquelyn +Makenna +Carissa +Justine +Kendra +Mya +Rachael +Sandy +Gillian +Reyna +Nadia +Beatriz +Kira +Nataly +Alice +Pamela +Renee +Destinee +Francesca +Clara +Fiona +Judith +Kyla +Melody +Ashlyn +Carolyn +Katelynn +Kathy +Mercedes +Dulce +Lucia +Rocio +Virginia +Berenice +Cierra +Brandy +Estefania +Alexus +Margarita +Yasmine +Asia +Fernanda +Jocelyne +Larissa +Ciara +Deja +Johanna +Lucy +Sidney +Tiana +Anastasia +Malia +Mariela +Raven +Brenna +Celine +Stephany +Susan +Citlalli +Mckenzie +Melina +Aylin +Graciela +Karissa +Marie +Stacy +Fabiola +Aliyah +Odalys +Aubrey +Talia +Bridget +Ella +Jessie +Precious +Tanya +Yadira +Diamond +Janette +Breana +Genevieve +Mireya +Noelia +Amaya +Angelique +Elaine +Ivy +Phoebe +America +Tessa +Tyler +Felicity +Georgia +Kristin +Paula +Tori +Anne +Aurora +Brooklyn +Jeanette +Joselyn +Kailey +Shania +Eliana +Kamryn +Kara +Damaris +Esperanza +Peyton +Aaliyah +Abby +Kirsten +Sylvia +Tabitha +Darlene +Joy +Sienna +Silvia +Tina +Ashlee +Delilah +Galilea +Haylee +Jenifer +Joyce +Juliette +Annika +Jane +Juliet +Maricela +Shayla +Aimee +Diane +Kassidy +Dalia +Kaila +Krista +Sadie +Sasha +Eden +Noelle +Yvonne +Lena +Lourdes +Maggie +Annette +Casandra +Imani +Odalis +Rebeca +Rosemary +Tatyana +Viridiana +Abril +Heaven +Helena +Makenzie +Norma +Whitney +Yessenia +Belen +Elisabeth +Roxana +Theresa +Vanesa +Camila +Cheyanne +Emilie +Estrella +Mallory +Melinda +Arely +Kasandra +Yolanda +Arielle +Catalina +Nicolette +Stacey +Annabelle +Micaela +Rylee +Alisa +Emilia +Isis +Jewel +Julianne +Kaitlynn +Sage +Alyson +Celia +Chantal +Eliza +Ivette +Leila +Payton +Xochitl +Anissa +Barbara +Dakota +Kenya +Lilian +Paris +Savanah +Adrienne +Baylee +Jaylene +Maia +Nora +Rhiannon +Sarahi +Sheila +Taryn +Hallie +Ingrid +Jaclyn +Kenia +Alessandra +Devin +Donna +Flor +Kaylie +Reina +Rosario +Serenity +Stella +Zoey +Deborah +Frances +Gladys +Griselda +Janice +Kasey +Magdalena +Paloma +Tatum +Marcela +Nadine +Adilene +Areli +Elsa +Isela +Kaylin +Nikki +Tayler +Hunter +Lacey +Maddison +Alisha +Brandi +Dianna +Simone +Skye +Tracy +Violet +Anita +Felicia +Hazel +Joana +Kaela +Lexi +Tia +Alize +Antonia +Callie +Ellen +Ericka +Evelin +Irma +Jackeline +Juana +Lucero +Nia +Ryan +Sarina +Alena +Anabel +Aracely +Candace +Eleanor +Eunice +Janae +Joanne +Lilly +Nichole +Yajaira +Dayana +Josie +Kiley +Kristine +Lidia +Lizet +Selina +Tiara +Calista +Daphne +Layla +Luisa +Priscila +Roxanne +Thalia +Anika +Emilee +Giovanna +Ivonne +Kellie +Lissette +Meagan +Regina +Tamia +Tianna +Brianne +Christy +Connie +Hailee +Janessa +Kiera +Kristy +Mckayla +Shayna +Ann +Clare +Ellie +Georgina +Gracie +Kianna +Maryjane +Anais +Ayanna +Celina +Gwendolyn +Halle +Hana +Iliana +Leanna +Melisa +Tammy +Tyra +Yazmin +Alaina +Cora +Corina +Desirae +Devon +Tamara +Alanna +Cinthia +Gissel +Sally +Scarlett +Serina +Toni +Xiomara +Yasmeen +Frida +Jacklyn +Jazlyn +Kailee +Kaley +Kali +Marianna +Natali +Astrid +Beverly +Carol +Drew +Grecia +Hillary +Meredith +Rosalinda +Simran +Chelsey +Gema +Kaelyn +Lilliana +Yahaira +Yulissa +Azucena +Bernice +Cayla +Citlali +Denisse +Kierra +Lupita +Maira +Rachelle +Robin +Selene +Shirley +Ashly +Ciera +Heidy +Isabela +Jaden +Kelli +Lisbeth +Madalyn +Pauline +Robyn +Sonya +Tess +Unique +Annalise +Candice +Davina +Elissa +Jazmyn +Josefina +Joseline +Karly +Katarina +Kayley +Kelsie +Laurel +Lea +Lilia +Mariam +Mindy +Anya +Ashlynn +Bailee +Breanne +Cara +Dania +Delia +Devyn +Ebony +Leanne +Makena +Siena +Tierra +Vicky +Yessica +Bonnie +Bridgette +Cassie +Coral +Estefany +Eve +Gemma +Ilene +Ivana +Janeth +Juanita +Lina +Marisela +Mina +Myra +Nohely +Raylene +Regan +Reilly +Rochelle +Alexandrea +Annabel +Ayana +Bella +Bryana +Carley +Consuelo +Corinne +Elyssa +India +Izabella +Jaquelin +Julisa +Katlyn +Kayleigh +Kaylyn +Lexie +Lia +Monserrat +Nathaly +Olga +Star +Stefanie +Valery +Ally +Ashleigh +Charlene +Estefani +Estela +Jennie +Kailyn +Katelin +Katia +Liana +Lorraine +Michele +Moriah +Rylie +Shyanne +Valentina +Yareli +Aisha +Alia +Alysa +Angeles +Beatrice +Carlie +Carrie +Christiana +Citlaly +Dahlia +Jaelyn +Jazmyne +Joceline +Keely +Madisen +Maricruz +Quinn +Roxanna +Ryann +Chandler +Colette +Evangelina +Ileana +Kacey +Kayli +Macy +Madyson +Marcella +Rita +Sydnee +Yoselin +Adela +Ayleen +Bernadette +Colleen +Elaina +Elvia +Elyse +Gisell +Jacquelin +Johana +Judy +Katy +Marlen +Natalee +Pricilla +Reanna +Amara +Ariella +Aryanna +Aubree +Chanel +Chyna +Destiney +Dorothy +Harley +Jackelyn +Jaime +Jayla +Keila +Kristal +Lynette +Marley +Melany +Nathalia +Pearl +Piper +Rosie +Trisha +Zaira +Alexys +Alysha +Antoinette +Bertha +Camilla +Gisel +Harmony +Jasmyn +Justice +Kaleigh +Kaylah +Klarissa +Lara +Lila +Logan +Luna +Maxine +Mollie +Nayely +Raina +Addison +Allie +Alysia +Amari +Aria +Aryana +Asha +Ashlie +Danica +Jessenia +Joelle +Kaya +Leann +Miracle +Nelly +Samara +Savana +Shea +Verenice +Willow +Yaritza +Alex +Ayla +Belinda +Betsy +Brooklynn +Chantel +Corrina +Dejah +Dina +Hilda +Jayda +Lisset +Lucille +Lyric +Magaly +Maryann +Mira +Mona +Montana +Rubi +Sky +Abbey +Aliza +Allyssa +Bianka +Carli +Christa +Destany +Dolores +Elle +Elsie +Francis +Halie +Jayleen +Jesenia +Jesse +Laila +Lizett +Madisyn +Mari +Noel +Noor +Princess +Sheridan +Starr +Vianey +Xochilt +Ada +Alexi +Alycia +Anai +Angeline +Brisa +Cecelia +Chiara +Dalila +Danika +Daria +Gia +Kacie +Karlee +Karley +Kelley +Magali +Marlena +Maryam +Misty +Natalya +Shaina +Teagan +Adelina +Alayna +Amaris +Anjali +Annemarie +Bobbie +Debbie +Desire +Desteny +Eryn +Essence +Estephanie +Geneva +Haleigh +Janine +Jocelynn +Katharine +Liset +Lizzette +Macey +Mandy +Mara +Mirella +Neha +Shawna +Shivani +Sydnie +Aleah +Aline +Anaya +Aspen +Cathy +Catrina +Danae +Deisy +Dora +Giana +Gissell +Isabell +Jannet +Jayden +Julieta +Kiersten +Kristi +Lilianna +Lilibeth +Madelynn +Nikita +Pilar +Suzanne +Sydni +Alexsandra +Aliya +Ani +Annabella +Annalisa +Annamarie +Breann +Brianda +Charity +Christian +Citlally +Francisca +Haylie +Jackie +Janelly +Jeniffer +Justina +Kayleen +Lynn +Mai +Micah +Sammantha +Vivianna +Ailyn +Aiyana +Annmarie +Anyssa +Brynn +Cydney +Elvira +Emerald +Jena +Kalia +Kim +Kristie +Kyara +Macie +Mika +Miya +Priya +Rayna +Rosemarie +Shanice +Skyla +Violeta +Ximena +Acacia +Anamaria +Ariadna +Bobbi +Cambria +Destinie +Francine +Ireland +Ivanna +Jennyfer +Lana +Marbella +Marlyn +Mayte +Mercy +Montserrat +Neida +Rosalba +Sayra +Sherry +Shyann +Tiffani +Verania +Yaneli +Allegra +Alyssia +Anabelle +Analisa +Betty +Bryn +Cali +Candy +Chasity +Constance +Fallon +Franchesca +Geraldine +Gisela +Gizelle +Jaquelyn +Joselin +Jovanna +Katya +Kendal +Kenna +Kyleigh +Leandra +May +Monet +Noemy +Parker +Reagan +Rosio +Sabina +Sunshine +Tehya +Terra +Vannesa +Andie +Cameryn +Charisma +Cheryl +Dayna +Destini +Doris +Dylan +Faviola +Haven +Izabel +Jailine +Jaimie +Janel +Janely +Jolene +Jolie +Katerina +Keri +Kimberley +Lesli +Lori +Malaysia +Mariel +Martina +Micayla +Mirian +Nallely +Riana +Rianna +Rosalie +Sariah +Sequoia +Shauna +Soledad +Suzette +Yarely +Yulisa +Adeline +Amani +Arleth +Azalea +Brielle +Caleigh +Callista +Chelsie +Cortney +Dianne +Jana +Jayme +Jeannette +Jesus +Jocelin +Keana +Keara +Keyla +Liza +Lyndsey +Madilyn +Maegan +Marianne +Miah +Nicolle +Randi +Rosalia +Shreya +Stefany +Stevie +Yesica +Yuliana +Abbie +Alani +Aleena +Aliah +Anahy +Anayeli +Anisa +Anisha +Bria +Briseyda +Chase +Cherish +Cinthya +Darcy +Gladis +Jaida +Jasmyne +Jaycee +Jazzmin +Joslyn +June +Kalani +Kaylynn +Keilani +Lexus +Linnea +Mackenna +Makaila +Maranda +Mariafernanda +Maricarmen +Myranda +Reese +Salina +Samanta +Sheyla +Susanna +Symone +Tatianna +Taya +Xena +Yanet +Zulema +Aja +Alanis +Alyse +Amalia +Anthony +Caitlynn +Cielo +Clarisa +Cori +Corinna +Daja +Darby +Dasia +Dayanara +Divya +Elisha +Elva +Emmalee +Flora +Gwyneth +Jessalyn +Jessika +Jose +Kailani +Kameron +Karli +Katheryn +Katlynn +Kennedi +Kenzie +Kirstin +Leonela +Lexis +Lianna +Lili +Maile +Maite +Mariaelena +Marleen +Meaghan +Michael +Monika +Penelope +Rhea +Rosalyn +Rosamaria +Sahar +Saira +Sana +Sonja +Tea +Vianca +Adamaris +Aidan +Aide +Alea +Aliana +Allysa +Angelita +Anneliese +Arlyn +Ashanti +Audra +Baylie +Becky +Blair +Breeana +Britany +Carlee +Chastity +Christie +Chyanne +Ciarra +Daija +Daisha +Danna +Delanie +Gretchen +Iman +Jackelin +Jaiden +Joey +Journey +Kourtney +Lilyana +Lola +Loren +Louise +Lynda +Maeve +Maiya +Marta +Maureen +Milan +Minerva +Myah +Nubia +Ofelia +Presley +Pricila +Ryleigh +Selah +Sinai +Suzanna +Thania +Trina +Valarie +Vania +Vannessa +Xitlali +Zainab +Abigayle +Adrian +Aida +Amina +Amira +Anessa +Angelena +Anjelica +Arleen +Aubrie +Bree +Carson +Dara +Dariana +Emani +Inez +Jacey +Jalyn +Janell +Janie +Joan +Josselyn +Kaia +Kalista +Kerry +Kiarra +Linette +Lisbet +Lizbet +London +Mariyah +Mimi +Nayelli +Nellie +Nereida +Oriana +Racquel +Rayleen +Rena +Sarahy +Shana +Tabatha +Yamileth +Yazmine +Zaida +Adrianne +Alizae +Alora +Anabella +Analise +Aniyah +Arlette +Ashton +Bibiana +Brigitte +Candelaria +Cathryn +Charlie +Dallas +Darian +Debora +Denice +Elexis +Elia +Elizabet +Eloisa +Estelle +Evangeline +Farah +Frankie +Greta +Holland +Iridian +Isha +Jacinda +Jenessa +Joann +Juliann +Kaeli +Kai +Kalie +Kalina +Kallie +Kari +Karin +Kaycee +Kayle +Keeley +Kelsea +Kimberlee +Korina +Kylah +Laney +Leyla +Lillie +Liseth +Lyla +Makaela +Malina +Marian +Marjorie +Marla +Melia +Mila +Nautica +Noelani +Sade +Sahara +Saray +Shakira +Shyla +Soraya +Yailin +Yaquelin +Yara +Yisel +Zaria +Adia +Alaysia +Alexander +Allissa +Alliyah +Ambar +Amie +Annelise +Aries +Beth +Billie +Brittani +Brook +Cailey +Carolyne +Celena +Chanelle +Cianna +Daniel +Demi +Dennise +Desiray +Elana +Elicia +Ginger +Gissele +Jadyn +Jayde +Jayline +Joselyne +Kalea +Karlie +Karyna +Kathia +Kaylan +Kaylen +Kinsey +Kristian +Leonor +Liberty +Lucinda +Margot +Marilu +Mattie +Mercedez +Michell +Milagros +Mirna +Nadya +Nalani +Osiris +Priyanka +Rowan +Samira +Shantal +Shay +Shira +Soleil +Sommer +Stephania +Sunny +Talya +Tyana +Vianney +Vivien +Vivienne +Winnie +Winter +Yecenia +Zahra +Zara +Abbigail +Aiyanna +Alannah +Alba +Alexxis +Alise +Andria +Arabella +Armani +Avalon +Brigette +Ciana +Danyelle +Darla +Deandra +Deysi +Domonique +Edna +Elianna +Emery +Hailie +Hanah +Hilary +Isobel +Jamila +Jasleen +Jayne +Jazlynn +Jenelle +Jodie +Juan +Julienne +Kailah +Kalei +Kalena +Kalyn +Karisma +Keyanna +Maci +Makala +Malissa +Marcelina +Marielle +Maryah +Mitzi +Pooja +Raelene +Remy +Ricki +Riya +Sanjana +Shaelyn +Shani +Shaye +Shelly +Sindy +Socorro +Sonali +Starla +Sulema +Susie +Tatiyana +Tatyanna +Teresita +Therese +Tricia +Vienna +Yamilex +Ysabel +Zenaida +Zion +Zoie +Adina +Alisia +Alivia +Alyna +Ami +Analicia +Ananya +Anay +Andreina +Aniya +Arcelia +Ariah +Briann +Brionna +Briseida +Cailyn +Cathleen +Cecily +Celest +Denae +Dorian +Elysia +Emilly +Erendira +Evelynn +Evette +Gaby +Halley +Haydee +Hayden +Imelda +Isamar +Ivon +Jazzmine +Jean +Jeanine +Jenae +Jody +Josephina +Joycelyn +Kaci +Karely +Karol +Katlin +Kirstyn +Kori +Lacy +Leslye +Litzy +Livia +Lizzeth +Lluvia +Lois +Louisa +Malika +Marguerite +Marin +Marlee +Melani +Michela +Mikaila +Morelia +Mykayla +Myrka +Nohemi +Nyla +Ramona +Rhianna +Rosaisela +Saige +Serene +Shianne +Sirena +Sofie +Tamar +Tayah +Tera +Tristen +Vianna +Vy +Zariah +Abbygail +Abrianna +Adamari +Aditi +Adreana +Ahtziri +Aislinn +Alijah +Alix +Allana +Alysse +Anali +Anel +Arline +Arrianna +Ashtyn +Aubry +Aurelia +Aya +Berenise +Brea +Bryan +Carmela +Cheyann +China +Christopher +Clarice +Dallana +Deana +Deirdre +Destanie +Emalee +Estella +Estephania +Ester +Gabriel +Glenda +Harper +Hayleigh +Ilana +Isaura +Italia +Ivory +Jacquelynn +Jahaira +Janis +Jaylin +Jaylyn +Jayna +Jenniffer +Jimena +Jiselle +Jodi +Jonathan +Joscelyn +Julian +Kaelee +Kaelin +Kameryn +Kamille +Kaylene +Kaytlyn +Kendyl +Keren +Lani +Lee +Leeann +Leia +Luis +Maliyah +Matilda +Maura +Meg +Megha +Meghana +Melenie +Michel +Milena +Myriam +Naomy +Nereyda +Neyda +Phoenix +Rayanna +Richelle +Rosalina +Ryley +Saba +Sable +Savina +Saylor +Shae +Shasta +Shiloh +Siera +Siobhan +Tawny +Tracey +Vicki +Vivianne +Zena +Zitlali +Zuleyma +Adreanna +Aisling +Amairani +Andreana +Annaliese +Ashely +Avianna +Ayesha +Biridiana +Blake +Breauna +Breeanna +Brittaney +Cadence +Cailin +Celene +Dafne +Dawn +Deisi +Devan +Eboni +Eleni +Ellena +Emi +Emmy +Giavanna +Giuliana +Gricelda +Gwen +Hadley +Hali +Henna +Hollie +Ilse +Ines +Jailyn +Janai +Janay +Janett +Jaslyn +Jaspreet +Jaymee +Jeanie +Jessy +Jewell +Josseline +Juliane +Julieanna +Kaiya +Karime +Karyn +Katalina +Katey +Kathrine +Keanna +Keiana +Keira +Kelsi +Kemberly +Kennia +Kimberlyn +Kiran +Krysta +Kyana +Leena +Lisseth +Lizabeth +Lizzet +Lucie +Malaya +Mariya +Maryanne +Marysol +Meena +Melannie +Meranda +Mildred +Mirka +Nhi +Noa +Petra +Raeann +Raegan +Rana +Rania +Reece +Remington +Rheanna +Rosaura +Roselyn +Saida +Samone +Selma +Sera +Shanelle +Shaylee +Shelbie +Shelsea +Stacie +Stefani +Taliah +Tamera +Tasha +Terri +Tiera +Tonya +Tyanna +Veronika +Vilma +Xenia +Xochil +Yael +Yamilet +Yanira +Yenifer +Yissel +Yoana +Yocelyn +Yoselyn +Ysabella +Abygail +Akira +Alexsis +Alianna +Amada +Amairany +Amya +Anakaren +Anusha +Ariela +Arriana +Ashli +Athziri +Aviana +Avneet +Ayah +Ayline +Azul +Bailie +Bayleigh +Bayley +Bethanie +Brandie +Brittny +Camden +Caylee +Cesia +Chantelle +Charlize +Cherie +Christen +Cienna +Cintia +Cleopatra +Cruz +Daijah +Dani +Danya +Debra +Delila +Devany +Devina +Dyanna +Elida +Elina +Elora +Eman +Emerson +Erykah +Esme +Eugenia +Evan +Gardenia +Gisele +Iesha +Irais +Izabelle +Jaycie +Jeanne +Jennah +Jessa +Jessyca +Jewelia +Joely +Joslynn +Kaelynn +Kaili +Kaira +Kalee +Kami +Karinna +Karolina +Karyme +Katheryne +Kay +Kelsy +Kevin +Keyana +Khadija +Kimiko +Kristiana +Kristyn +Kyanna +Laurie +Lela +Lexy +Lilah +Lilith +Linsey +Lissete +Lora +Lucina +Madelin +Madisson +Mae +Mahogany +Makaylah +Malak +Maleah +Malena +Marcia +Maren +Margaux +Mariaguadalupe +Mariajose +Maricella +Marisabel +Maryanna +Mecca +Melena +Mellissa +Mikala +Miki +Monae +Nakia +Navneet +Naya +Nidia +Nikole +Noely +Octavia +Quiana +Quincy +Raelyn +Raelynn +Reanne +Reem +Rene +Rhyan +Rikki +Romina +Roni +Rosalva +Rosy +Salena +Sarena +Sedona +Shawnee +Shelbi +Shelley +Tala +Taliyah +Tammie +Tanisha +Tasia +Thais +Trista +Xitlalli +Zayra +Abagail +Abigale +Agnes +Ailene +Alanah +Alayah +Alecia +Alejandrina +Alejandro +Alexie +Allisa +Alona +Aminah +Amirah +Anastacia +Andres +Andreya +Angelika +Ania +Annalee +Arden +Arlin +Ashleynicole +Aysia +Betsaida +Breonna +Brynna +Campbell +Carleigh +Carmelita +Cate +Caylin +Ceara +Celestina +Charmaine +Chelsy +Cherokee +Christal +Christianna +Chynna +Colby +Crista +Dajah +Darien +Deena +Dejanae +Destani +Divine +Doreen +Dyana +Elayna +Elexus +Elly +Emelie +Emelyn +Fatema +Faye +Florence +Genessis +Genna +Geselle +Gianni +Guillermina +Heavenly +Hellen +Imari +Itzayana +Jaileen +Jaimee +Jakelin +Jakeline +Janeen +Janna +Jeannine +Jennica +Jesica +Johnna +Joie +Josselin +Jovana +Judit +Jurnee +Kacy +Kalli +Kalysta +Kamari +Karis +Katharina +Kaytlin +Kiahna +Kortney +Kyndall +Kyrsten +Laisha +Larisa +Leana +Lindy +Love +Luciana +Mabel +Madysen +Maisy +Maliah +Mandi +Manuela +Marion +Maritsa +Marycarmen +Marylou +Maryssa +Mattea +Mayela +Meleny +Mellisa +Merissa +Millie +Moira +Myla +Myrna +Nika +Nisha +Patience +Rachell +Radhika +Raeven +Raya +Rayanne +Renata +Ria +Roberta +Rosita +Sadaf +Samaria +Sarita +Shanna +Sharlene +Shayal +Shruti +Stephani +Suleyma +Suzy +Tahlia +Tayla +Tenaya +Tiffanie +Vera +Viktoria +Yanely +Yelitza +Yoseline +Yuliza +Zuleima +Zuri +Adelaide +Adele +Adrina +Aime +Alaura +Alexzandria +Ali +Alixandra +Althea +Amayrani +Amberly +Ammy +Amrit +Amrita +Analia +Analiese +Andrew +Anette +Angelic +Aranza +Arian +Ariane +Aubrianna +Aundrea +Azalia +Baileigh +Beatris +Belem +Belle +Bianey +Brieanna +Briza +Brookelynn +Cady +Cassia +Catarina +Cesilia +Cherise +Chevelle +Christiane +Chrystal +Chyenne +Cloe +Collette +Concepcion +Cosette +Daryn +Dayanna +Delicia +Dena +Denisha +Elba +Eloise +Elsy +Ema +Emelia +Emmeline +Emy +Enya +Erinn +Estephany +Evelia +Ezra +Fanny +Geena +Genevie +Irlanda +Isel +Ixchel +Iyana +Jacquelyne +Jael +Jaelynn +Jahnavi +Jalen +Jalynn +Jannette +Jaylen +Jaylynn +Jeanna +Jeannie +Jenica +Jensen +Jezebel +Jordynn +Josette +Jourdan +Julietta +Justyce +Kaelani +Kailynn +Kana +Karah +Karena +Karoline +Karyssa +Kasie +Katherin +Keaira +Keziah +Kiely +Kierstin +Kierstyn +Kimora +Kiona +Krysten +Kyarra +Kylene +Leyna +Licet +Lisandra +Lissett +Liz +Loretta +Lupe +Madalynn +Madelaine +Madelene +Madelyne +Mallorie +Manpreet +Marah +Mariadejesus +Mariaisabel +Mariely +Marilin +Marily +Marilynn +Marlin +Marylin +Mason +Mayah +Maylee +Mellanie +Melyssa +Michal +Milana +Mitzy +Nailah +Nakayla +Nawal +Nayla +Neftali +Nelida +Nicola +Noah +Nova +Oksana +Oscar +Patrice +Paulette +Peri +Portia +Preciosa +Prisila +Racheal +Raeanna +Raeanne +Raena +Rain +Ramya +Rashell +Ravyn +Rian +Ronni +Rosalind +Rosana +Roya +Ruthie +Ryen +Salome +Sanam +Sawyer +Scarlet +Seanna +Serafina +Serra +Shalyn +Shannen +Sheri +Shoshana +Spencer +Stephaine +Sujey +Suzana +Taelor +Tavia +Tegan +Theodora +Tiani +Tiarra +Tory +Treasure +Tristan +Ursula +Venessa +Vickie +Viola +Wanda +Yoanna +Yocelin +Zarah +Zulma +Aaron +Abriana +Abrielle +Adamary +Airam +Akela +Aleen +Alesha +Alessia +Alexes +Alida +Alyanna +Alyssamarie +Alyza +Amariah +Amethyst +Amor +Amparo +An +Anahit +Anaid +Analyssa +Anamarie +Anecia +Angeli +Angelisa +Anh +Anisah +Annissa +Anny +Arieanna +Arika +Arisa +Arisbeth +Arlet +Armando +Ashleymarie +Ashlin +Atziry +Aubriana +August +Aysha +Azia +Baily +Betsabe +Betzabeth +Biviana +Blythe +Breyanna +Briannah +Briauna +Brienna +Brigid +Britny +Brittni +Bronwyn +Bryanne +Bryce +Brynne +Caila +Calli +Camellia +Capri +Carlin +Carmina +Carrington +Carter +Casie +Caterina +Cayley +Cera +Champagne +Charley +Chaya +Chenoa +Christin +Cicely +Citlalic +Cleo +Cody +Corrin +Cory +Cristian +Daisey +Dalilah +Darya +Daysi +Deseree +Destine +Deysy +Divina +Dominque +Eduardo +Elan +Elinor +Elisia +Ellis +Emili +Emilyann +Erandy +Estefanie +Farrah +Fayth +Graciella +Guiselle +Hennessy +Idania +Ileen +Indira +Iqra +Irie +Iveth +Izel +Jacy +Jaela +Jamee +Jami +Janea +Janiece +Jannely +Jannett +Jarely +Jaritza +Jaylah +Jaymie +Jazzlyn +Jemma +Jessi +Jisel +Jizelle +Johannah +Joleen +Jordana +Jorden +Jori +Joseph +Jubilee +Kady +Kaliyah +Kallista +Kalynn +Kanani +Karishma +Karizma +Kassie +Katana +Kateri +Kathlynn +Keisha +Kenedi +Kera +Kia +Kiaira +Kiani +Kimia +Kirra +Komal +Krishna +Krystina +Krystle +Kya +Kyle +Kyndra +Laine +Lanae +Leeza +Leighann +Leilany +Lessly +Lezly +Lianne +Lilit +Lillyana +Lilyanna +Linh +Loraine +Lorin +Loryn +Luiza +Luzelena +Luzmaria +Lynnette +Mackenzi +Madelynne +Maha +Malaika +Margo +Marialuisa +Marielena +Marine +Marivel +Marrissa +Marycruz +Maryn +Megumi +Melodie +Melonie +Mickayla +Miguel +Mikyla +Milagro +Milly +Minna +Miyah +Mykala +Nada +Naila +Naiya +Naomie +Natally +Navpreet +Nerissa +Nichelle +Niki +Nohelia +Nour +Nya +Nydia +Ophelia +Paisley +Patsy +Patty +Polina +Rashel +Rayana +Rayven +Rebeka +Reyanna +Reylene +Rhonda +Ricardo +Roslyn +Ruben +Rubie +Ryanne +Sabine +Sabreena +Samia +Santana +Seleste +Shaila +Shanel +Shaniah +Shelsy +Sianna +Sierrah +Sloan +Sol +Sonora +Steffany +Stephenie +Stormy +Susannah +Susanne +Sylvie +Tajanae +Tana +Taniya +Tanner +Thao +Thea +Tionne +Torrey +Traci +Trinidad +Tristin +Valorie +Vanity +Vivi +Windy +Xitlaly +Yakelin +Yanelly +Yuritzi +Zia +Zitlaly +Zoya +Adalia +Adaly +Adara +Aidee +Ailani +Aishwarya +Ajah +Alandra +Alessa +Alexcia +Alexiss +Alexzandra +Alizabeth +Alla +Allia +Allyn +Alyssandra +Amal +Amayah +Anabell +Andraya +Andriana +Anely +Angelia +Angelie +Anja +Ankita +Annabell +Annalyse +Annamaria +Anneke +Annel +Antonette +Aolani +Araseli +Areanna +Arin +Arissa +Ariyanna +Arlenne +Ashia +Ashlen +Asiah +Asma +Asusena +Athziry +Atziri +Audriana +Audrianna +Aura +Austin +Avigail +Azariah +Aziza +Azure +Baleria +Becca +Berlin +Betzaira +Brandee +Brennah +Breyana +Briceyda +Brigit +Britnee +Brittanie +Brittnee +Caley +Calissa +Cami +Candyce +Caprice +Carlos +Carole +Caryn +Cassaundra +Cassidie +Cerina +Charleen +Charli +Chayanne +Cheri +Cindi +Clarisse +Claudette +Clementine +Cordelia +Corey +Corrine +Cyndy +Cyrena +Daelyn +Daisie +Daizy +Dakotah +Dalana +Daniele +Danni +Darcie +Darrian +Dasha +Davianna +Daysha +Delaina +Delainey +Delany +Delmy +Delyla +Desarae +Deseray +Desirea +Destenie +Destynee +Deyanira +Deziray +Dezire +Deziree +Diandra +Dimond +Dixie +Donya +Dymond +Ekaterina +Eli +Ellery +Elliana +Elysa +Emeli +Emelly +Emiko +Emmaline +Emmanuelle +Emoni +Enedina +Fernando +Francheska +Francisco +Gail +Georgette +Getsemani +Gisella +Giulia +Grisel +Gwendalyn +Han +Harleen +Harlie +Harneet +Harpreet +Harriet +Heydi +Holley +Ida +Imunique +Ina +Indiana +Iridiana +Isa +Israel +Issabella +Itzell +Iva +Ivett +Ivie +Ixel +Jacklin +Jadah +Jaelin +Jaide +Jaidyn +Jailenne +Jailyne +Jalisa +Jalissa +Jannel +Jassmine +Jaylee +Jazelle +Jazzmyn +Jeanelle +Jelena +Jenaya +Jianna +Jill +Jissell +Jo +Johnisha +Jolina +Jordin +Joshua +Journee +Julieann +Julyssa +Kadie +Kaile +Kaleah +Kalyssa +Kamya +Kandace +Karisa +Karrington +Karsyn +Kasia +Kati +Kayce +Kaycie +Kaylani +Kaytlynn +Keala +Kealani +Keiara +Keilah +Keily +Kennya +Keyera +Kezia +Khalia +Kiah +Kiarah +Kieran +Kilee +Kirandeep +Kitana +Kiyomi +Kloe +Koren +Kyrah +Laci +Lanette +Lashae +Latavia +Layne +Leela +Leigh +Leona +Liane +Libby +Liliann +Lilianne +Liora +Lisamarie +Lisett +Lucrecia +Lyndsay +Lyzette +Madilynn +Magnolia +Maiah +Makenzi +Malea +Maleny +Marcie +Marena +Mariadelcarmen +Mariella +Marifer +Marleny +Marsha +Maryelizabeth +Maryrose +Matilde +Matisse +Mele +Meliza +Melony +Merari +Michaella +Micheala +Midori +Mikhaela +Milca +Milla +Monserat +Monzerrat +Muna +Myka +Myriah +Nadeen +Naima +Nanci +Natividad +Nayelly +Neli +Nely +Neva +Nickole +Nicoletta +Niya +Nona +Nuvia +Nycole +Nyomi +Ocean +Olyvia +Oralia +Pa +Page +Parisa +Passion +Pia +Quynh +Raechel +Rafaela +Raveena +Ravin +Ray +Rayne +Rebecka +Rebeckah +Rio +Risa +Roma +Ronnie +Ryanna +Sabrena +Sabryna +Sachi +Samatha +Sandi +Sapphire +Saria +Sarin +Sascha +Scout +Sebastian +Shanti +Shavon +Shayne +Sheccid +Shefali +Shiann +Shilpa +Siana +Siara +Sicily +Sidra +Simona +Sintia +Sloane +Sneha +Soumya +Staci +Stacia +Stefania +Stormie +Sunnie +Susy +Syeda +Synthia +Taiz +Tajah +Takara +Tali +Talisa +Talitha +Tallulah +Tanzania +Teressa +Thelma +Tiahna +Topanga +Torri +Tuesday +Tyla +Uma +Vaneza +Veda +Verenise +Vi +Vivica +Willa +Yalitza +Yazmeen +Yoceline +Ysenia +Yuri +Yvanna +Zahira +Zaire +Zamantha +Zarina +Zayda +Zola +Zurisadai +Abbigale +Addie +Addyson +Adi +Adira +Aine +Aishah +Aislynn +Ajia +Alasia +Alayjah +Alaysha +Alayza +Alberto +Aleesa +Aleeza +Aleisha +Aleksandra +Alexsa +Alexxa +Aleyda +Aleyna +Alisandra +Alissia +Alisson +Alizay +Allysen +Aly +Alyah +Alyana +Amanpreet +Amauri +Amberlyn +Ambria +Amiyah +Amna +Amunique +Analee +Analleli +Analy +Anela +Angelli +Anmol +Antonio +Apryl +Areej +Ariannah +Arianne +Aris +Ariyana +Armida +Armine +Aryonna +Ashlynne +Ashna +Averi +Ayano +Ayden +Aylene +Bethsaida +Betzaida +Blessing +Bonny +Brady +Braelyn +Bridgett +Brieana +Brissa +Britani +Britni +Brittnie +Caileigh +Camry +Caressa +Carey +Carlyn +Carmella +Carolin +Carsen +Catriona +Chana +Chance +Charissa +Cherilyn +Christianne +Clair +Clarke +Claryssa +Claudine +Cloey +Codi +Coraima +Corie +Corrie +Courtnie +Cyan +Dajanae +Dalena +Damiana +Danette +Danyel +Daphney +Darlin +Darline +David +Dayja +Deeanna +Deija +Dejanee +Delaine +Delani +Delena +Delfina +Delmi +Demetria +Dennis +Deonna +Deserae +Desirey +Dezaray +Dharma +Dinah +Dionna +Dior +Edwin +Elani +Eliane +Eliyah +Emelin +Emiliana +Emilyanne +Emmely +Emmie +Empress +Erianna +Erick +Ernestina +Esli +Esly +Esthela +Eulalia +Evalina +Fantasia +Fatimah +Felisa +Felisha +Florencia +Gaia +Gelsey +Genavieve +Genelle +Gennifer +Geovanna +Giovana +Gizel +Grayce +Gretta +Gwenyth +Haile +Haily +Halee +Haruka +Haya +Hayli +Herlinda +Hiba +Hosanna +Huda +Ianna +Idalis +Ilyssa +Indya +Infinity +Iona +Iriana +Irina +Isadora +Isaiah +Itzia +Ivan +Iyanna +Jackelyne +Jaclynn +Jacquline +Jadie +Jadine +Jai +Jalene +Jalyssa +Jamara +Jamilah +Janeli +Janina +Jannessa +Javier +Jaydin +Jenavie +Jenesis +Jeni +Jennefer +Jennipher +Jerica +Jezabel +Jina +Jissel +Joi +Jonna +Josslyn +Jovani +Julieanne +Julya +Justin +Kaelah +Kaileigh +Kailie +Kaily +Kaitlen +Kally +Kamaria +Kamrie +Kareena +Karie +Karmen +Katelynne +Katerine +Katryna +Kattie +Katty +Kaydee +Kaysha +Kaysie +Keegan +Keelin +Keianna +Keiko +Kelcey +Keli +Kellsie +Kendell +Kendyll +Kerri +Khanh +Khayla +Kimberli +Kimi +Kirby +Kirsty +Kitty +Kiyana +Klaire +Kora +Koral +Kortni +Kyli +Kyrstin +Lacie +Lakeisha +Laken +Lan +Lane +Latanya +Latisha +Latrice +Lavender +Lavina +Lavinia +Leeana +Leeanna +Leeanne +Lenore +Leslieann +Lesslie +Letticia +Letty +Liah +Lian +Lillia +Lillianna +Lissa +Lorna +Lottie +Lovely +Lusine +Lylah +Lyliana +Lynne +Lynsey +Lysette +Madaline +Magdalene +Maggy +Maija +Mailyn +Malinda +Mandeep +Manjot +Mariadelosang +Mariann +Maribella +Mariha +Marleena +Marli +Marline +Marriah +Marygrace +Marykate +Marylee +Marylyn +Matthew +Maycee +Maylene +Maylin +Meadow +Meera +Meggan +Meilani +Melanny +Merina +Merisa +Messiah +Mica +Micaiah +Mikaylah +Miraya +Mirca +Miryam +Monserrath +Morgana +Morgen +Muriel +Mykaila +Mykenzie +Mystica +Najae +Najah +Naseem +Natasia +Nattalie +Nautika +Nayana +Naylea +Nazareth +Neda +Neena +Nena +Neomi +Nessa +Nicky +Nicol +Nicolemarie +Nidhi +Nikolette +Nirvana +Niyah +Noella +Noreen +Odaliz +Olive +Opal +Orianna +Osmara +Patzy +Paxton +Peggy +Perry +Phyllis +Princesa +Prisilla +Puneet +Queen +Rahma +Raissa +Raizel +Rama +Rayan +Raychel +Reiko +Remi +Renae +Rhiana +Riann +Richa +River +Rory +Rosanna +Roseanna +Roselani +Rosenda +Ryane +Safa +Sahana +Saki +Salem +Samiya +Sammie +Sean +Selin +Sequoyah +Shalini +Shamya +Shanaya +Shaniya +Shannan +Shantelle +Shari +Shauntel +Shawn +Shaylyn +Shealyn +Shellsea +Shelsey +Sheree +Sheyanne +Shriya +Shyan +Shyanna +Solana +Somer +Sona +Stephine +Sugey +Symphony +Taeya +Tai +Taija +Taja +Talar +Taleen +Tamika +Tamira +Tarryn +Tatem +Tesia +Teya +Thuy +Tiare +Tierney +Tionna +Tommi +Tonia +Toree +Tristyn +Tyrah +Vanna +Varsha +Velia +Victorya +Vida +Violette +Vittoria +Viviann +Waverly +Wendi +Yana +Yasemin +Yaxeni +Yennifer +Yezenia +Yohana +Yudith +Yuka +Yulianna +Yuritzy +Zaina +Zakiya +Zalma +Zareen +Zeinab +Zhane +Zoha +Zoila +Emily +Ashley +Samantha +Jessica +Jennifer +Alyssa +Alexis +Sarah +Hannah +Elizabeth +Vanessa +Jasmine +Stephanie +Natalie +Jacqueline +Maria +Brianna +Madison +Andrea +Kimberly +Lauren +Michelle +Victoria +Destiny +Nicole +Melissa +Leslie +Kayla +Amanda +Sophia +Taylor +Megan +Alexandra +Isabella +Emma +Rachel +Grace +Julia +Abigail +Katherine +Diana +Olivia +Jocelyn +Angela +Sydney +Hailey +Daisy +Chloe +Rebecca +Isabel +Savannah +Gabriela +Briana +Danielle +Kaitlyn +Evelyn +Alejandra +Anna +Karina +Sara +Alondra +Adriana +Haley +Ariana +Daniela +Angelica +Valerie +Melanie +Amy +Brenda +Crystal +Sabrina +Esmeralda +Sierra +Cynthia +Marissa +Ana +Karen +Erika +Giselle +Christina +Mia +Amber +Guadalupe +Maya +Tiffany +Allison +Catherine +Mariah +Monica +Kelly +Madeline +Jasmin +Morgan +Sofia +Cassandra +Laura +Alexa +Valeria +Veronica +Karla +Trinity +Jenna +Claire +Faith +Angelina +Katelyn +Zoe +Alicia +Jordan +Yesenia +Brooke +Nancy +Audrey +Bianca +Fatima +Arianna +Mary +Breanna +Priscilla +Gabriella +Erica +Jazmin +Gabrielle +Britney +Wendy +Miranda +Cindy +Jaqueline +Vivian +Ruby +Caroline +Kylie +Erin +Mackenzie +Serena +Brittany +Bailey +Katie +Alexandria +Caitlin +Celeste +Lily +Paola +Liliana +Desiree +Gisselle +Sandra +Kaylee +Makayla +Carolina +Isabelle +Natalia +Jade +Shelby +Joanna +Mikayla +Angel +Naomi +Paige +Denise +Courtney +Claudia +Genesis +Christine +Lizbeth +Rosa +Viviana +Kassandra +Jillian +Jazmine +Kathryn +Cecilia +Mariana +Juliana +Cheyenne +Jamie +April +Cassidy +Brittney +Monique +Sophie +Kiara +Cristina +Alexia +Leah +Anahi +Julissa +Chelsea +Kelsey +Elena +Patricia +Lindsey +Clarissa +Madelyn +Mayra +Julie +Heather +Kate +Summer +Riley +Marisol +Caitlyn +Miriam +Raquel +Irene +Tatiana +Janet +Camille +Carmen +Marina +Aileen +Molly +Marlene +Paulina +Ariel +Jenny +Lesley +Lesly +Kiana +Shannon +Emely +Lillian +Gloria +Mckenna +Selena +Jada +Amaya +Margaret +Martha +Ava +Kaitlin +Eva +Brisa +Julianna +Katrina +Skylar +Alissa +Kathleen +Litzy +Dominique +Linda +Autumn +Michaela +Yasmin +Annie +Hayley +Teresa +Bethany +Hope +Angie +Daniella +Lisa +Nina +Leilani +Kristen +Maritza +Alma +Itzel +Jordyn +Kristina +Adrianna +Krystal +Edith +Hanna +Kendall +Madeleine +Kyra +Helen +Alison +Lindsay +Lizette +Perla +Cameron +Fernanda +Rebekah +Yvette +Alina +Carla +Delaney +Nadia +Carly +Heidi +Josephine +Iris +Marisa +Nayeli +Lauryn +Meghan +Ashlyn +Lorena +Amelia +Elise +Kira +Melody +Mya +Sandy +Noemi +Jacquelyn +Kennedy +Kylee +Reyna +Alana +Camryn +Ruth +Sarai +Holly +Rose +Sonia +Charlotte +Cristal +Savanna +Araceli +Natasha +Ella +Sharon +Malia +Nathalie +Bryanna +Dulce +Lizeth +Lucia +Lucy +Peyton +Susana +Aliyah +America +Gianna +Janelle +Esther +Luz +Makenna +Aylin +Kyla +Maribel +Marilyn +Alice +Athena +Carina +Sidney +Johanna +Tanya +Deanna +Tania +Arlene +Marie +Nataly +Citlalli +Esperanza +Margarita +Gillian +Leticia +Aaliyah +Allyson +Justine +Angelique +Avery +Dana +Haylee +Melina +Casey +Kendra +Sienna +Aubrey +Blanca +Eileen +Katelynn +Payton +Skyler +Asia +Lydia +Carissa +Fiona +Monserrat +Berenice +Clara +Mikaela +Elisa +Renee +Rocio +Aurora +Carolyn +Genevieve +Ivy +Rachael +Georgia +Gina +Kristin +Phoebe +Darlene +Kara +Mckenzie +Tara +Destinee +Kathy +Stephany +Talia +Rebeca +Kailey +Anastasia +Annika +Beatriz +Diamond +Jackeline +Delilah +Francesca +Jane +Pamela +Precious +Susan +Tiana +Elaine +Judith +Sasha +Yadira +Bridget +Celine +Alexus +Noelle +Brandy +Ashlee +Graciela +Yvonne +Belen +Ciara +Cierra +Tessa +Macy +Aimee +Isis +Kassidy +Layla +Maggie +Joselyn +Kaila +Salma +Stacy +Arely +Serenity +Tina +Yasmine +Cielo +Diane +Fabiola +Paula +Regina +Dariana +Deja +Jessie +Dakota +Jeanette +Kamryn +Lisette +Rosemary +Joy +Joyce +Rosalinda +Sadie +Sage +Theresa +Eliana +Hailee +Joana +Juliet +Juliette +Mercedes +Shayla +Anne +Brenna +Celia +Estrella +Larissa +Mariela +Nikki +Virginia +Camila +Damaris +Iliana +Mallory +Raven +Catalina +Emilia +Janessa +Eliza +Jaquelin +Nia +Heaven +Karissa +Daphne +Jocelyne +Estefania +Silvia +Anissa +Elisabeth +Jaclyn +Leila +Rylee +Abby +Alisha +Anika +Imani +Stacey +Brooklyn +Hallie +Kenya +Noelia +Mireya +Paloma +Ashlynn +Cheyanne +Dayana +Kirsten +Nicolette +Alisa +Eleanor +Hana +Kaylie +Lilian +Sarahi +Violet +Abril +Breana +Eden +Kaitlynn +Yamilet +Alessandra +Annabelle +Casandra +Kaylin +Makenzie +Tracy +Yessenia +Annette +Tyler +Aracely +Barbara +Dalia +Ivette +Jenifer +Kasandra +Paris +Yolanda +Adilene +Janae +Kristine +Lilly +Roxana +Xochitl +Anya +Citlali +Desirae +Joanne +Johana +Julianne +Norma +Sarina +Skye +Bella +Emilie +Felicity +Jackelyn +Jacquelin +Janette +Jazlyn +Lacey +Thalia +Zoey +Carol +Ericka +Lena +Odalis +Tamara +Yajaira +Frida +Kiley +Simone +Stella +Tori +Viridiana +Dianna +Helena +Sylvia +Taryn +Hazel +Shania +Sheila +Yareli +Antonia +Christy +Janice +Kasey +Leanna +Mariam +Simran +Tabitha +Arielle +Candice +Gracie +Kenia +Laisha +Lourdes +Savanah +Alize +Ashleigh +Deborah +Elaina +Eve +Flor +Frances +Luisa +Madisyn +Micaela +Reina +Rhiannon +Siena +Tatyana +Ellen +Evelin +Gladys +Roxanne +Tatum +Alanna +Emilee +Griselda +Isela +Izabella +Lucero +Maia +Rita +Celina +Devon +Katia +Marian +Ivana +Lea +Marisela +Meagan +Melinda +Montserrat +Nathaly +Nichole +Alena +Grecia +Josie +Krista +Makena +Toni +Bryana +Denisse +Ellie +Ivonne +Jayda +Jewel +Katarina +Laila +Marlen +Melisa +Odalys +Piper +Shirley +Xiomara +Yazmin +Adrienne +Alaina +Alyson +Areli +Ayanna +Galilea +Georgina +Hunter +Kayleigh +Kianna +Anais +Charlene +Chelsey +Devin +Estefani +Felicia +Giovanna +Hillary +Isabela +Jaden +Katlyn +Kaylyn +Magaly +Melany +Nora +Reanna +Sydnee +Valentina +Whitney +Donna +Estefany +India +Ingrid +Jaylene +Kailee +Kaya +Magdalena +Neha +Selina +Shyanne +Baylee +Cara +Clare +Corina +Eunice +Julieta +Kayley +Lizet +Madelynn +Marcela +Maricela +Rubi +Sally +Anita +Colleen +Jaelyn +Jayla +Lilia +Maryjane +Nadine +Priscila +Tammy +Ani +Aryanna +Elyssa +Irma +Juana +Justice +Kaylah +Maddison +Magali +Pauline +Rosario +Stefanie +Yahaira +Yamile +Alia +Angeles +Brynn +Elissa +Gissel +Jacklyn +Juanita +Kristy +Lexi +Lilliana +Lissette +Marianna +Sayra +Anai +Ashly +Beatrice +Callie +Candace +Jayden +Jolie +Liana +Macie +Marley +Nelly +Tayler +Tess +Tianna +Tiara +Yoselin +Addison +Anabel +Anjali +Brandi +Ciera +Citlaly +Ebony +Elyse +Gissell +Heidy +Lara +Pearl +Rochelle +Ryan +Serina +Tia +Yasmeen +Ann +Delia +Destiney +Ivanna +Kelley +Luna +Raylene +Unique +Vicky +Harmony +Julisa +Lidia +Lisbeth +Logan +Marcella +Pricilla +Shayna +Tamia +Valery +Vanesa +Aliya +Analisa +Anyssa +Astrid +Jeniffer +Kailyn +Kali +Katelin +Madalyn +Selene +Verania +Allie +Bailee +Calista +Christian +Colette +Connie +Jailene +Jasmyn +Joseline +Keila +Laurel +Lina +Nayely +Presley +Reagan +Robin +Cayla +Danica +Devyn +Jazmyn +Kelli +Lupita +Mira +Miracle +Nyah +Saray +Ximena +Yulissa +Aleena +Azucena +Beverly +Briza +Carrie +Cinthia +Elsa +Halle +Joelle +Judy +Kaela +Karyme +Kiera +Leanne +Natali +Nathalia +Rosemarie +Scarlett +Tyra +Yulisa +Amalia +Brissa +Cassie +Chantal +Cora +Gwendolyn +Jaquelyn +Joceline +Kellie +Lynn +Madisen +Maryam +Mckayla +Noor +Olga +Robyn +Yaritza +Adela +Adeline +Alexandrea +Ally +Alysa +Anaya +Ayla +Ayleen +Betsy +Candy +Corinne +Dania +Francis +Haylie +Janeth +Kacie +Kaia +Katya +Lia +Maira +Miya +Regan +Adamaris +Alayna +Aleah +Angeline +Annabella +Carley +Charisma +Coral +Dahlia +Dalila +Desteny +Estela +Gisell +Kenna +Lynette +Mariel +Moriah +Princess +Rylie +Zaira +Abbey +Annalise +Bonnie +Josefina +Kaelyn +Katharine +Leann +Lexie +Micah +Mirian +Nallely +Penelope +Sheyla +Sonya +Aliza +Anabelle +Aniya +Annalisa +Antoinette +Aria +Aubree +Brianne +Cathy +Chanel +Chiara +Hailie +Jocelynn +Katerina +Mandy +Maricruz +Maxine +Meredith +Raina +Willow +Yarely +Aisha +Allyssa +Bernice +Carli +Charity +Chyna +Greta +Hayden +Jolene +Karime +Kiersten +Kim +Klarissa +Lorraine +Mara +Rachelle +Ryann +Savana +Shyann +Tierra +Zaria +Annamarie +Brooklynn +Carlie +Gema +Gisel +Jocelin +Kacey +Karlie +Katheryn +Kaylynn +Kierra +Lila +Madilyn +Madyson +Marlena +Martina +Mina +Rosie +Saira +Shaina +Shreya +Yaneli +Yuliana +Annabel +Bridgette +Cali +Cecelia +Citlally +Consuelo +Danika +Elsie +Evangelina +Halie +Jannet +Jesse +Kaley +Maiya +Mindy +Misty +Mollie +Rhea +Star +Sydnie +Yamileth +Alycia +Amara +Anayeli +Carlee +Dayanara +Dorothy +Drew +Essence +Gizelle +Ileana +Ilene +Jaiden +Jaime +Jana +Kaleigh +Karly +Keely +Kristal +Michele +Nikita +Quinn +Roxanna +Samira +Suzanne +Sydni +Verenice +Violeta +Yessica +Alex +Aliah +Amari +Ariella +Aspen +Cameryn +Dallas +Dawn +Francisca +Jessika +Joselin +Loren +Lyndsey +Macey +Milena +Pricila +Reese +Samanta +Samara +Sariah +Sherry +Skyla +Stefany +Winnie +Aline +Alysia +Amaris +Anamaria +Anisa +Arleth +Breanne +Brielle +Chandler +Christa +Dejah +Destany +Gwyneth +Hilary +Jackie +Jamilet +Janine +Jayleen +Karli +Keyla +Kyleigh +Monika +Montana +Parker +Priya +Riana +Sabina +Selah +Tatianna +Ailyn +Aiyana +Alexys +Arlette +Arriana +Bertha +Cambria +Daria +Destini +Dianne +Elvira +Emerald +Flora +Gemma +Haleigh +Iman +Jadyn +Jennie +Juliann +Kayleen +Kelsie +Kendal +Kyara +Lana +Lola +Maile +Maryann +Myra +Natalee +Pilar +Shea +Trisha +Vivianna +Xochilt +Yanira +Abbigail +Ada +Aryana +Avalon +Brianda +Chantel +Cheryl +Corrina +Dina +Eryn +Franchesca +Harley +Janel +Joan +Karolina +Katalina +Kayli +Lianna +Lillie +London +Mari +Maureen +Mercy +Mitzy +Monserrath +Noel +Shawna +Soleil +Suzette +Yaquelin +Adrian +Aja +Alora +Amira +Ashlie +Caitlynn +Clarisa +Darla +Dayna +Daysi +Deana +Estephanie +Fallon +Jaycee +Jazmyne +Jennyfer +Jesenia +Lyla +Malaysia +Malina +Monet +Phoenix +Rianna +Rosalie +Sade +Shaylee +Starr +Sunshine +Trina +Xitlaly +Zoie +Aditi +Alexsandra +Amina +Amya +Anisha +Ariadna +Arleen +Ashely +Ashton +Belinda +Brigitte +Camilla +Christiana +Cienna +Cinthya +Denice +Geraldine +Ines +Isabell +Jaida +Jalyn +Janelly +Jaylin +Jose +Kai +Kalyn +Kaylen +Kristi +Lisset +Maegan +Marlyn +Mika +Nadya +Natalya +Noemy +Raegan +Reilly +Rhianna +Saige +Sanjana +Shauna +Shivani +Stevie +Vannessa +Xitlali +Alani +Ayana +Bernadette +Briseida +Charlize +Cherish +Davina +Deisy +Demi +Divya +Dolores +Elisha +Gabriel +Ginger +Haily +Isha +Janell +Jayde +Joann +Karely +Karlee +Keana +Kourtney +Lilibeth +Lori +Lucille +Lyric +Maci +Maeve +Marbella +Maricarmen +Marin +Michell +Nyla +Remy +Sahar +Sunny +Tabatha +Venus +Yisel +Zayra +Adelina +Alexi +Alivia +Amani +Ananya +Asha +Azalea +Betty +Breann +Chelsie +Cydney +Danna +Destinie +Ester +Frankie +Geneva +Hilda +Jena +Jessenia +Jimena +Kalea +Katy +Kaylene +Keira +Keren +Kimberley +Krysten +Lexus +Leyla +Lilianna +Madalynn +Makaila +Mariyah +Melia +Mirna +Ofelia +Renae +Rowan +Sequoia +Sinai +Soraya +Taya +Terra +Vianey +Anjelica +Annemarie +Arabella +Aranza +Audra +Becky +Bianka +Breeana +Breeanna +Briseyda +Danae +Darian +Dayanna +Debbie +Dylan +Edna +Elle +Gia +Giana +Ireland +Jazlynn +Joslyn +Jovanna +Kailani +Kaili +Laney +Leslye +Litzi +Lizett +Lluvia +Mackenna +Malaya +Marianne +Marielena +Marla +Meaghan +Mitzi +Nanci +Nautica +Neida +Nubia +Sky +Sofie +Stephania +Susie +Yazmine +Zahra +Abigayle +Acacia +Adrianne +Alanis +Allysa +Angelika +Anthony +Aya +Carlene +Charlie +Cosette +Dafne +Delanie +Dennise +Dora +Elina +Elva +Gretchen +Izabelle +Jacey +Jayme +Jazzmin +Jonathan +Kalia +Keilani +Kori +Lesli +Liza +Madelyne +Mai +Makaylah +Milan +Mildred +Noa +Petra +Rayna +Riya +Rosalia +Scarlet +Shakira +Sheridan +Sol +Susanna +Yanely +Yatzari +Yoana +Aida +Allissa +Alyse +Anahy +Analise +Andie +Angelita +Ashanti +Cecily +Celest +Chanelle +Daisey +Danyelle +Deysi +Doris +Elianna +Elysia +Emelyn +Eugenia +Gisela +Gissele +Inez +Iyanna +Jackelin +Jania +Jasmyne +Jazzlyn +Jeannette +Jenessa +Jesica +Jill +Justina +Kameron +Kaycee +Keeley +Kinsey +Lili +Makaela +Michael +Milagros +Mirella +Mona +Myranda +Naomy +Noelani +Rachell +Raelene +Randi +Sana +Sarahy +Sarena +Shae +Shay +Shira +Sonali +Tais +Tamar +Valarie +Yanet +Yara +Ysabel +Zulema +Abrianna +Aide +Airam +Alaysia +Ali +Allegra +Annmarie +Armani +Bobbi +Bria +Cathryn +Chelsy +Dalilah +Dara +Debora +Desire +Eloisa +Glenda +Haydee +Holland +Imelda +Jacinda +Jailine +Jamileth +Jodie +Julian +Kimiko +Lacy +Laiza +Leana +Leia +Leyna +Lillianna +Mabel +Mariaguadalupe +Marlee +Marylou +Maura +Moira +Nellie +Reece +Rina +Rory +Salina +Sapphire +Shianne +Therese +Triniti +Xiana +Yesica +Aliana +Alix +Amairani +Amie +Aminah +Bobbie +Bryn +Carson +Christal +Ciana +Ciarra +Cortney +Daniel +Darby +Desiray +Deziree +Eleni +Emery +Estella +Harleen +Harper +Haven +Ilana +Ilse +Jaimie +Jalen +Jamila +Jasleen +Jean +Jiselle +Jordin +Joshua +Josselyn +Juan +Julyssa +Kaeli +Kaiya +Karley +Kathya +Keri +Kylah +Lilah +Liz +Lizzette +Maite +Maleah +Marleen +Melani +Merissa +Miah +Michaella +Naila +Rashel +Raya +Rene +Rosita +Sahara +Shana +Sonja +Tea +Teagan +Zara +Aislinn +Aiyanna +Alba +Alea +Alejandrina +Amberly +Anastacia +Aniyah +Annaliese +Arianne +Ariela +Ashli +Aubrie +Brook +Caren +Caylin +Chasity +Christie +Chynna +Constance +Darcy +Elana +Eman +Evelynn +Faye +Iyana +Jazlin +Jessalyn +Jesus +Joey +Journey +June +Kaci +Kalie +Kallie +Karena +Kari +Keara +Kennedi +Kiarra +Kortney +Kristian +Krysta +Liberty +Luciana +Luis +Marcelina +Maren +Mariajose +Mariella +Marysol +Minerva +Monae +Nikole +Rena +Rosalina +Rosaura +Samaria +Sela +Shelly +Sirena +Soledad +Terri +Tiffani +Venessa +Vianca +Viktoria +Vivica +Yamilex +Yocelin +Yoseline +Zion +Abigale +Adelaide +Ahtziri +Aishwarya +Alisia +Alliyah +Alysha +Alyza +Amairany +Ariyana +Aubriana +Blair +Blake +Cailin +Cailyn +Charlee +Chastity +Chyanne +Cori +Daija +Daijah +Danya +Darya +Debra +Domonique +Elexis +Elia +Emalee +Emani +Emelia +Erick +Halley +Hennessy +Ivon +Ivory +Jaya +Jaylen +Jazzmine +Jorden +Kalina +Karol +Kathia +Keanna +Kelis +Kelsea +Kelsi +Kiani +Kirstin +Kristie +Leandra +Lela +Linette +Lisbet +Louise +Lucie +Maisie +Malena +Mariaelena +Mattie +Melannie +Mikaila +Millie +Morelia +Naya +Nicolle +Nohemi +Nya +Paulette +Portia +Radhika +Ramona +Richelle +Rosalyn +Rosamaria +Sammantha +Shantal +Shasta +Shyla +Sindy +Stefani +Suzanna +Taniya +Thania +Tiffanie +Tyanna +Vania +Vera +Xenia +Xitlalli +Yenifer +Ysabella +Adina +Agnes +Aidan +Alannah +Amiyah +Analicia +Anessa +Angelic +Ankita +Anmol +Anneliese +Arcelia +Ariadne +Ariah +Arlin +Ashtyn +Averi +Berenise +Beyonce +Bree +Brieanna +Caleigh +Capri +Catrina +Cesia +Chase +China +Chrystal +Cleo +Cloe +Collette +Darianna +Deandra +Dejanae +Elayna +Elida +Emerson +Emmalee +Fayth +Gardenia +Gisele +Giuliana +Henna +Ileen +Indira +Irie +Ixchel +Izabel +Jaclynn +Jacy +Jahaira +Jakeline +Jayne +Jeanne +Joie +Joscelyn +Josette +Julietta +Kaelin +Kailah +Kalani +Kalena +Kaliyah +Kalysta +Karoline +Kassie +Kelsy +Kenzie +Laurie +Lilyanna +Linnea +Liset +Livia +Lizbet +Lucinda +Madilynn +Maranda +Marcia +Margaux +Marguerite +Mariafernanda +Maryanne +Melony +Melyssa +Micayla +Michel +Mickayla +Mikala +Mila +Myah +Nidia +Oriana +Rayleen +Reem +Ria +Rosio +Ryley +Seanna +Selma +Shaelyn +Shanna +Sharlene +Shawn +Sierrah +Tanvi +Tehya +Treasure +Tristan +Xochil +Yocelyn +Zaida +Zariah +Abbie +Ailene +Aine +Alyna +Alyssia +Amethyst +Ami +Anahit +Anakaren +Anali +Andreina +Anel +Angelena +Anisah +Anja +Annalee +Annelise +Audry +Ayah +Aysia +Azul +Bayley +Bibiana +Briceida +Bryce +Cailey +Callista +Carisma +Carrington +Caylee +Chaya +Clarisse +Cleopatra +Daisha +Darlyn +Dasia +Devina +Dezirae +Dyanna +Eloise +Elvia +Emeline +Emi +Emmaline +Emme +Esli +Estefanie +Estelle +Evangeline +Evelia +Fatimah +Florence +Giulia +Halee +Idania +Iran +Isamar +Italia +Ivett +Jailyn +Janely +Janis +Jaslyn +Jaylah +Jaymie +Jeannie +Jenelle +Jissel +Jodi +Jovana +Kalei +Katherin +Kaylan +Kayle +Kimberlee +Kirra +Korina +Krystle +Kyana +Leeann +Leilany +Lexy +Lisseth +Lizzet +Louisa +Lynda +Lyndsay +Madelaine +Madelin +Magnolia +Makyla +Maliyah +Margot +Marion +Marjorie +Mason +May +Meera +Mei +Melodie +Mercedez +Milly +Monzerrat +Myriam +Myrka +Nailah +Nevaeh +Nika +Niki +Odessa +Prisila +Queenie +Rebeka +Renata +Rio +Rosaisela +Rosy +Rubie +Ryanne +Ryleigh +Salena +Savina +Sawyer +Seleste +Shantel +Sheena +Shelbi +Siobhan +Sylvie +Symone +Tahlia +Tala +Talya +Tracey +Veronika +Vienna +Vivien +Vivienne +Winter +Xena +Yailin +Yoselyn +Yuliza +Yuri +Adamari +Adara +Adia +Aidee +Alejandro +Alexie +Alijah +Ambria +Amparo +Amrita +Anabella +Andria +Anette +Ania +Arlen +Arlyn +Athina +Aubrianna +Ayesha +Aysha +Bayleigh +Brigette +Brionna +Camelia +Cassondra +Charis +Cianna +Concepcion +Corrine +Cristian +Cristine +Cyan +Cyndi +Daizy +Daja +Danelle +David +Delila +Deyanira +Divina +Donya +Eboni +Elicia +Elisabet +Elizabet +Estephany +Evie +Francheska +Gaby +Geena +Gladis +Gurleen +Gwenyth +Hadley +Helene +Ilona +Irais +Isaura +Jacob +Jaeda +Jael +Jaidyn +Jalynn +Jamilah +Janett +Jasmeen +Jaylyn +Jaylynn +Jayna +Jenae +Jenica +Jessy +Jianna +Joycelyn +Kaelynn +Kaira +Kala +Kamille +Karah +Karenna +Karin +Karisa +Karishma +Karisma +Karsyn +Kathie +Katlin +Katty +Kaylani +Kaytlin +Kealani +Keiana +Keilah +Keiry +Keona +Kerry +Keyana +Kiran +Komal +Kristyn +Kya +Kyanna +Lani +Leena +Leilah +Leonela +Leonor +Lessly +Lilyana +Lilyann +Linsey +Maddie +Magda +Maha +Mahima +Maliah +Malika +Mariza +Meg +Meleny +Melonie +Milla +Moncerrat +Mykayla +Nalani +Nalleli +Nereida +Nereyda +Nisha +Niya +Noeli +Noely +Ocean +Raelynn +Rebecka +Rilee +Sabine +Santana +Sedona +Serene +Siera +Sole +Sommer +Tasha +Tasia +Teresita +Thea +Thelma +Torrey +Tristen +Vida +Yanelli +Zitlaly +Zuleima +Abagail +Abriana +Abygail +Adele +Aerin +Akira +Alanah +Alexcia +Alexsis +Alexzandra +Aleyah +Alli +Althea +Alyah +Amiah +Amit +Amiya +Anay +Anh +Anicia +Annabell +Araya +Arika +Arissa +Ariyanna +Audriana +Aura +Aurelia +Avani +Bianey +Biridiana +Brea +Bridgett +Britany +Brookelynn +Brooklin +Bryan +Brynna +Cadence +Calysta +Cerina +Cherie +Chyenne +Ciena +Crista +Dajah +Dani +Danitza +Darleen +Dasani +Daysha +Delicia +Dena +Desarae +Divine +Dominque +Dyani +Dymond +Egypt +Elora +Emmanuelle +Emmeline +Erandy +Eryka +Erynn +Esha +Evan +Farah +Faviola +Francine +Gianella +Grayson +Heavenly +Hollie +Ila +Jacquelynn +Jaelynn +Jaimee +Jakelin +Jami +Janay +Janiece +Janina +Janna +Jannette +Jaquelinne +Jaymee +Jennah +Jezebel +Joely +Jonae +Jordynn +Joselyne +Jubilee +Julieanna +Jurnee +Kailynn +Kalee +Kaliah +Kalista +Kalynn +Kamila +Kathrine +Kaylamarie +Kaytlyn +Kevin +Kristiana +Kymberly +Kyrah +Lainey +Larisa +Leela +Leona +Libby +Lorissa +Lucina +Lynsey +Lysette +Mackenzee +Madaline +Mae +Makenzi +Malaika +Maleia +Malissa +Mallorie +Manpreet +Marielle +Marika +Marleny +Marwa +Marybeth +Maryssa +Matilda +Melania +Michal +Miguel +Milca +Myla +Nailea +Nana +Nelida +Octavia +Pa +Pallavi +Peighton +Prisilla +Quiana +Raeanna +Rania +Rikki +Rosalba +Rosalva +Rosana +Rut +Sabryna +Sahana +Sammi +Semaj +Shaila +Shalyn +Sheccid +Shelsea +Shriya +Simona +Sloane +Socorro +Stacie +Starla +Sterling +Symantha +Symphony +Talin +Taliyah +Tamera +Tamya +Tanisha +Tanner +Tiera +Tonya +Vicki +Vickie +Wendi +Zulma +Addie +Adelaida +Adria +Aime +Aislynn +Alaya +Alecia +Alexxis +Alianna +Alona +Alya +Amayah +Amia +An +Anaiya +Analia +Analiese +Andi +Andrina +Aneesa +Angelyna +Annamaria +Anushka +Aolani +Arlet +Asiah +Assata +Asya +Audree +Audrie +Aurianna +Avigail +Baylie +Beatris +Belle +Breonna +Brian +Brynne +Cady +Camden +Carleen +Carlos +Carlyn +Carmela +Carsyn +Catarina +Cate +Catelyn +Cathleen +Celena +Celestina +Chana +Chantelle +Charissa +Charli +Christopher +Cintia +Clarice +Cloie +Coraima +Dakotah +Daniele +Dasha +Denae +Destani +Destanie +Devan +Dharma +Donia +Echo +Edie +Elliana +Elsy +Ember +Emelie +Emiko +Emili +Enedina +Erandi +Erykah +Eulalia +Evette +Fanny +Gena +Genessis +Genisis +Georgette +Geselle +Giavanna +Giovana +Gwen +Hali +Hanah +Hayleigh +Idalia +Irlanda +Ishani +Itati +Itzayana +Ivania +Jackelyne +Jacquelyne +Jaela +Jaelen +Jalene +Janie +Janneth +Jaquelyne +Jarely +Jaspreet +Jazelle +Jeanine +Jennefer +Jenniffer +Jensen +Jessa +Jessi +Jessyca +Jhoana +Johannah +Joi +Joleen +Jordon +Josephina +Josselin +Jude +Julieann +Kacy +Kami +Kamilah +Kandy +Karizma +Karmen +Katlynn +Kay +Kaycie +Keala +Kennya +Kenzi +Kiarah +Kierstin +Kimberlyn +Kimia +Kiyana +Krystina +Laisa +Latavia +Leeanna +Lilli +Lillyana +Lizzeth +Love +Macayla +Mackenzi +Mahnoor +Maizie +Manisha +Manon +Mariadejesus +Mariaisabel +Mariann +Marisleysis +Mariya +Marlin +Marycruz +Mattea +Mayah +Mckinley +Meadow +Meena +Megha +Meilani +Melenie +Meliza +Mellanie +Merari +Meriah +Michayla +Midori +Mirka +Mykala +Nayelli +Neyda +Nitya +Noah +Nour +Nydia +Olive +Osiris +Patience +Racheal +Rae +Raeann +Raevyn +Raveena +Reena +Regine +Rheanna +Rian +Rosalind +Roshni +Sanam +Sandi +Shanell +Shanelle +Sharai +Sheryl +Shiann +Sianna +Skylynn +Sneha +Stormy +Susannah +Suzie +Taiz +Taleah +Taliah +Tawny +Teah +Teanna +Tory +Tristin +Uma +Ursula +Vannesa +Varsha +Venecia +Victor +Vy +Xitlalic +Yael +Yelitza +Yoanna +Yulianna +Yunuen +Zaina +Zainab +Zamantha +Zoee +Zuleyma +Zully +Aarushi +Adi +Adreanna +Aiko +Ainsley +Ajah +Ajanae +Alaysha +Aleen +Alegra +Alessia +Alexzandria +Aleya +Aleyda +Alida +Alizabeth +Alonna +Alva +Alyana +Amaiya +Amal +Ambar +Amberlynn +Amelie +Amirah +Ammy +Anabell +Anallely +Analy +Anapatricia +Andra +Angelisa +Ansley +Antonette +Anusha +Apryl +Araseli +Arden +Ariane +Aries +Arrianna +Atziri +Aviana +Avni +Azalia +Baily +Belem +Berania +Betania +Brandie +Briar +Briauna +Brina +Brizeida +Bronwyn +Calla +Carmella +Casie +Cassidi +Cerena +Chassidy +Cherry +Christen +Christi +Clarise +Claryssa +Cloey +Coco +Cordelia +Cristy +Dajanae +Daryn +Deena +Deija +Deserae +Devany +Devynn +Dezarae +Dixie +Elexus +Elinor +Elisia +Ellyse +Emmily +Emmy +Estrellita +Freya +Georgiana +Getsemani +Gigi +Hanan +Hayle +Hayli +Hellen +Herlinda +Honesty +Huda +Ianna +Ida +Iriana +Iridian +Italy +Iveth +Jackqueline +Jadah +Jaedyn +Jaila +Jailynn +Jamile +Janaya +Jaritza +Jasmina +Jazzmyn +Jeannine +Jenesis +Jeri +Jeselle +Jezabel +Jizelle +Johnna +Jordann +Joselynn +Julienne +Kailin +Kallista +Kameryn +Kanani +Karalyn +Karinna +Karis +Karrie +Karsen +Kasie +Kathlyn +Kavya +Kayana +Kayce +Kaylea +Kaylei +Keegan +Keiara +Kela +Kemberly +Keziah +Khalia +Khloe +Kieran +Kitzia +Kiya +Kobe +Kolby +Kyndall +Lane +Latrice +Layne +Laysha +Leigh +Lezly +Lilit +Lilith +Lilyan +Linh +Liv +Loretta +Lorna +Luzmaria +Malea +Margo +Mariadelcarmen +Marijane +Marilin +Marisabel +Marlenne +Marsha +Marta +Maryah +Maryellen +Marylin +Matea +Mckinzie +Medha +Megumi +Mele +Michala +Mimi +Mitsy +Monserat +Monserratt +Morgen +Mykaela +Najah +Natallie +Nayelly +Neda +Niara +Nicola +Nidhi +Niyah +Nohely +Norah +Nuvia +Odaliz +Oralia +Orianna +Pooja +Raeleen +Rain +Raine +Rayanna +Rayven +Reanne +Rebekka +Reva +Rhonda +Romina +Salome +Samatha +Samaya +Sanika +Sean +Sera +Serrina +Shalom +Shani +Shanice +Shanya +Shawnee +Shaye +Shaylyn +Shealyn +Sherlyn +Shyan +Siomara +Solana +Spencer +Sulema +Talar +Tanaya +Tate +Tegan +Tenaya +Thais +Valencia +Vallerie +Veda +Viana +Vianna +Vilma +Vivianne +Winona +Wynter +Xitlally +Yajayra +Yamila +Yazmeen +Yliana +Yovana +Yuritza +Zalma +Zyanya +Abbigayle +Abbygail +Abrielle +Adali +Adamarys +Adora +Aishah +Aisling +Akilah +Alaa +Alajah +Alayah +Aleia +Aleksandra +Alene +Alesha +Alexsia +Alexza +Aleyna +Alise +Alisson +Alyce +Alysse +Amena +Amrit +Amulya +Anaiah +Analissa +Anayely +Andreana +Andromeda +Aneth +Angeli +Angelia +Angella +Angelmarie +Angely +Anica +Anjelina +Annahi +Annai +Annalicia +Annalyn +Annastasia +Annay +Anny +Antionette +Ara +Areanna +Arianah +Arieanna +Arin +Arline +Asucena +Aubry +Audrianna +August +Averie +Avianna +Avneet +Ayline +Aylinn +Azia +Banesa +Beatrix +Berenize +Berlin +Berlyn +Beth +Bethanie +Betzaida +Blaire +Brandon +Breahna +Breannah +Breauna +Breeze +Briann +Brieana +Brigid +Britny +Brittnee +Caila +Cailee +Cari +Carmina +Caryn +Cayley +Celene +Channing +Charmaine +Cherokee +Claribel +Colby +Corin +Corinna +Cozette +Cruz +Damarys +Darline +Daysy +Deisi +Delana +Delina +Denia +Deonna +Deseray +Deseree +Deserie +Desirea +Domenique +Elba +Eleana +Elijah +Elyana +Elysse +Emalie +Emeli +Emelly +Emilly +Emoni +Erendira +Evany +Evelina +Evelyne +Falyn +Farrah +Fionna +Gabriele +Genevie +Genna +Gracyn +Guinevere +Han +Hania +Harnoor +Harsimran +Haya +Helaina +Hermelinda +Heydi +Illeana +Ina +Indya +Inna +Isa +Isobel +Israel +Ivet +Izabell +Jacklin +Jadelyn +Jaileen +Jala +Janai +Janea +Janee +Janiya +Jannelle +Jannie +Jasline +Jason +Jayline +Jazel +Jeana +Jemima +Jemma +Jennipher +Jisel +Jodee +Jody +Jolee +Jolynn +Jonah +Josalyn +Josseline +Journee +Jovita +Julieanne +Juliza +Kady +Kalissa +Kalyssa +Kamaria +Kambria +Kandyce +Kareen +Karine +Karyn +Karyna +Kati +Katryna +Kaylina +Kenadee +Kendell +Kendyl +Kennady +Kennia +Keyara +Keyera +Khadijah +Kia +Kimberli +Klara +Koraima +Kyley +Kyli +Kylia +Kyndra +Kyrsten +Lacie +Lailah +Lailani +Leilanie +Leslee +Lesslie +Lexia +Lexis +Lezlie +Lillyanna +Lindy +Liora +Liseth +Lisha +Lupe +Lusine +Luzelena +Mable +Macee +Mackenzy +Madai +Madelene +Madina +Maelani +Magdalene +Mahogany +Mahum +Makala +Makiya +Maliya +Manaal +Marcy +Mareli +Marely +Mariali +Maricella +Marieli +Mariko +Marilynn +Maritsa +Marlo +Maryelizabeth +Matilde +Maylene +Mekenzie +Merina +Mikaylah +Mikenzie +Milenia +Millenia +Miyah +Miyu +Moncerrath +Monzerrath +Muskaan +Myka +Nada +Naima +Nariah +Natally +Natania +Naudia +Navdeep +Navya +Nayla +Nazareth +Neena +Neomi +Niamh +Nova +Nylah +Paisley +Paolina +Pearla +Peri +Polina +Priyanka +Promise +Puneet +Queen +Quincy +Raeanne +Raelyn +Raena +Raisa +Rani +Ranya +Ravyn +Rayne +Razan +Remington +Rianne +Rica +Richa +Roberta +Romy +Rosanna +Roselyn +Roxy +Saleena +Samari +Samia +Samya +Sania +Saskia +Saya +Sayaka +Sayla +Sebastian +Seneca +Senna +Serafina +Sereena +Sergio +Shaela +Shanaya +Shayne +Shefali +Shelbie +Shelley +Shelsy +Sheri +Sherly +Sherrie +Silvana +Sinead +Sintia +Sissi +Skie +Stefania +Steffany +Steffi +Stephani +Stephannie +Suleyma +Svetlana +Tatyanna +Tavia +Tayah +Tera +Tereza +Tionna +Topanga +Traci +Tracie +Trinidy +Trynity +Tuesday +Verena +Vianney +Yakelin +Yamilett +Yaneth +Yecenia +Yelena +Yennifer +Yosselin +Ysabelle +Yuna +Zakiya +Zayda +Zenaida +Zitlali +Zurisadai +Abbigale +Abegail +Adryanna +Ailani +Ailin +Airiana +Aixa +Ajane +Alahna +Alan +Aleeah +Aleigha +Alessa +Alexiss +Alexsa +Alexsys +Alexxa +Alexya +Alitzel +Alizae +Allana +Alliana +Almendra +Aly +Alyiah +Alyn +Alynna +Alyssah +Amada +Aman +Amayrani +Ambika +Amor +Amyah +Anagha +Anahita +Analilia +Ananda +Anasofia +Andriana +Anela +Aneliz +Angeleah +Angelene +Aniah +Annaly +Anysa +Aparna +Arantxa +Arian +Arica +Aris +Arisbeth +Arleene +Armida +Armoni +Arpi +Aryan +Ashleynicole +Ashlin +Ashna +Aundrea +Ayaka +Ayannah +Azaria +Aziza +Azusena +Bailie +Baleria +Betsabe +Betzy +Billie +Blythe +Brandee +Breeann +Briceyda +Brisamar +Brittni +Brittnie +Bushra +Caeley +Caitlan +Calli +Carey +Carolyne +Carrissa +Cassia +Caterina +Cayleigh +Caylie +Cera +Cesilia +Chance +Charlyne +Chau +Chayanne +Cher +Cherise +Cheyene +Chinyere +Chloie +Christabel +Christianna +Cidney +Cierrah +Cindi +Cinnamon +Clementine +Cole +Corie +Corrin +Coryn +Crimson +Cristiana +Cyann +Cyanne +Cydnee +Cyrena +Daejah +Daisie +Dallana +Damara +Danah +Dannia +Darlin +Darling +Daylene +Daysia +Dejanique +Delaina +Delaine +Delainey +Delfina +Della +Delmy +Denali +Destynee +Destyni +Deven +Devine +Deysy +Dezire +Dhamar +Dinah +Dinora +Diva +Dolly +Domenica +Dulse +Dunia +Dyana +Dynasty +Eduardo +Elda +Eliya +Ellena +Elyza +Emiliana +Emmaly +Emonie +Emylee +Eric +Ernestina +Esperansa +Estephania +Evalina +Faiza +Fathima +Faythe +Felicitas +Fiorella +Florencia +Francessca +Gelsey +Geovanna +Gilda +Gisella +Gracelyn +Gricelda +Grisel +Guillermina +Hadassah +Hafsa +Haile +Haili +Hallee +Halli +Hannia +Hasmik +Havana +Hera +Ilena +Imaan +Imara +Imari +Iqra +Isla +Itsel +Itzanami +Itzell +Ivori +Iyari +Jacalyn +Jaci +Jacie +Jacklynn +Jadelynn +Jaeden +Jahayra +Jakelyn +Jalisa +Jalissa +Jaliyah +Jalyssa +Jan +Janiah +Janise +Jannel +Jazleen +Jazmen +Jema +Jenevieve +Jenise +Jennalyn +Jennelle +Jennessa +Jerica +Jesseca +Jesselyn +Jesslyn +Jillianne +Jisselle +Jocelynne +Joei +Jonelle +Jorge +Joselinne +Judit +Justyne +Kaely +Kahlan +Kaile +Kailea +Kaily +Kaitlan +Kaleah +Kamara +Kamiah +Kamya +Kandace +Kandice +Kareena +Karolyn +Karrington +Karyssa +Kassey +Kassy +Katheryne +Kathryne +Katiana +Kaysee +Kearra +Keeli +Keianna +Keily +Kelcie +Kelsee +Kennedie +Kenzy +Kera +Kerri +Keyanna +Keyona +Khadija +Khristina +Kiah +Kiaya +Kieara +Kiely +Kierstyn +Kimmy +Kiora +Kirsty +Kitana +Kitty +Kla +Klaire +Kobi +Koryn +Krislyn +Kristel +Krystin +Lael +Laine +Lanay +Lanie +Lee +Leeah +Leeana +Leiah +Leiana +Leigha +Lenora +Leydi +Liat +Lida +Lilianne +Lillyan +Lilybeth +Lissett +Liyah +Lizabeth +Lizandra +Lizel +Lizzett +Lolita +Londyn +Lorenza +Lorin +Lovely +Luci +Lucine +Lulu +Lylah +Lynnette +Maddisen +Madysen +Magdalen +Magen +Maiah +Maili +Majesty +Malana +Mali +Mallika +Malorie +Manasi +Manuel +Manuela +Maraya +Marelyn +Marena +Mariadelosang +Marilu +Marlaina +Marlowe +Marlyne +Marriah +Marycarmen +Maryjo +Marykate +Maryn +Mataya +Mattison +Mayela +Mayte +Mazie +Meara +Mecca +Melaney +Melea +Meranda +Mickaela +Mikela +Milagro +Milana +Mili +Minami +Minnie +Mirabella +Misha +Mixtli +Mohini +Monalisa +Mone +Montanna +Montzerrat +Morganne +Mykaila +Mylene +Naja +Nalah +Nandi +Nandini +Nasia +Neeka +Neftali +Nerissa +Nhu +Nichelle +Niomi +Nissa +Nithya +Nuria +Nycole +Nyjah +Nyssa +Oceana +Oksana +Oliva +Oona +Oscar +Osmara +Pandora +Passion +Patsy +Payten +Penny +Perri +Perris +Phyllis +Pia +Porsha +Pyper +Rashell +Ravneet +Raychel +Reiko +Reya +Rheana +Rhyan +Ricki +Rima +Risa +River +Roma +Roni +Roslyn +Roxann +Roya +Rufina +Ryane +Saba +Sabreen +Sabrinna +Sadia +Saida +Saidy +Saja +Saleen +Salvador +Sama +Samone +Samuel +Sanya +Saraya +Sareena +Saria +Saylor +Seraiah +Seryna +Sevanna +Shaianne +Shanae +Shaniya +Shannel +Shaylin +Shereen +Shirin +Shyanna +Siana +Skyy +Sloan +Solei +Sora +Soumya +Spring +Sreya +Steffanie +Stephane +Stephenie +Steven +Storm +Story +Sugey +Sumaya +Sumayyah +Suraya +Susy +Suzy +Syeda +Tali +Talisa +Tallulah +Tamaya +Tayla +Teressa +Teri +Terry +Tiarra +Tirzah +Tommi +Torri +Tova +Trianna +Tricia +Trish +Tristyn +Tyana +Tyla +Ulyssa +Uriah +Vaneza +Vanity +Venice +Vi +Vianka +Vibha +Vina +Viola +Vivi +Wanda +Waverly +Wynne +Xcaret +Xianna +Yadhira +Yanelly +Yaqueline +Yaquelyn +Yareth +Yasamin +Yen +Yomara +Yudith +Yuma +Yuridia +Yuritzi +Yvanna +Zandra +Zarina +Zelda +Zhane +Zinnia +Zipporah +Zoya +Emily +Ashley +Samantha +Jessica +Alyssa +Jennifer +Natalie +Elizabeth +Alexis +Jasmine +Sarah +Hannah +Madison +Andrea +Stephanie +Isabella +Vanessa +Brianna +Kimberly +Maria +Kayla +Destiny +Michelle +Victoria +Jacqueline +Lauren +Sophia +Melissa +Leslie +Abigail +Nicole +Emma +Grace +Olivia +Julia +Alexandra +Katherine +Taylor +Diana +Megan +Amanda +Chloe +Rachel +Jocelyn +Angela +Daisy +Evelyn +Isabel +Sydney +Hailey +Angelina +Alondra +Mia +Anna +Ariana +Savannah +Kaitlyn +Karina +Gabriela +Crystal +Angelica +Alejandra +Melanie +Esmeralda +Valerie +Sara +Rebecca +Adriana +Sofia +Haley +Briana +Karen +Alexa +Daniela +Ana +Amy +Valeria +Faith +Nayeli +Cynthia +Sierra +Brenda +Guadalupe +Allison +Marissa +Zoe +Amber +Danielle +Maya +Christina +Jordan +Sabrina +Madeline +Mariah +Morgan +Jasmin +Karla +Katelyn +Giselle +Juliana +Catherine +Jenna +Arianna +Laura +Natalia +Trinity +Cassandra +Tiffany +Jazmin +Nancy +Monica +Brooke +Erika +Wendy +Veronica +Claire +Kelly +Audrey +Bianca +Fatima +Alicia +Gabriella +Joanna +Isabelle +Jade +Priscilla +Cindy +Ruby +Yesenia +Kaylee +Mary +Mackenzie +Miranda +Katie +Makayla +Gabrielle +Liliana +Alexandria +Erin +Jazmine +Alexia +Breanna +Lily +Ava +Kylie +Paola +Anahi +Angel +Desiree +Aaliyah +Caroline +Paige +Genesis +Denise +Mariana +Carolina +Caitlin +Gisselle +Vivian +Erica +Kassandra +Bailey +Sandra +Mikayla +Serena +Naomi +Shelby +Julianna +Cecilia +Celeste +Jillian +Riley +Lizbeth +Lesly +Britney +Clarissa +Kathryn +Cassidy +Christine +April +Courtney +Julissa +Kate +Kiara +Leah +Elena +Rosa +Emely +Chelsea +Claudia +Viviana +Jamie +Cheyenne +Julie +Jada +Marina +Lindsey +Sophie +Aileen +Melody +Paulina +Autumn +Brittany +Monique +Ella +Leilani +Summer +Cristina +Jaqueline +Lillian +Angie +Jenny +Carmen +Raquel +Ariel +Marisol +Patricia +Katrina +Irene +Itzel +Janet +Gianna +Camille +Heather +Nadia +Shannon +Kaitlin +Kelsey +Charlotte +Dulce +Marlene +Madelyn +Mayra +Caitlyn +Eva +Selena +Molly +Tatiana +Iris +Kristen +Jordyn +Yasmin +Kendall +Adrianna +Miriam +Alina +Lesley +Kristina +Margaret +Maritza +Mya +America +Perla +Hanna +Nathalie +Delaney +Kiana +Marilyn +Mckenna +Aliyah +Kennedy +Krystal +Martha +Teresa +Citlalli +Helen +Josephine +Noemi +Hayley +Nina +Malia +Linda +Michaela +Araceli +Rebekah +Ruth +Skylar +Yvette +Hope +Carly +Nataly +Alma +Bethany +Daphne +Gloria +Brisa +Brittney +Lizette +Natasha +Cristal +Kylee +Amelia +Alissa +Kathleen +Elisa +Madeleine +Monserrat +Daniella +Dominique +Heidi +Sarai +Avery +Johanna +Carla +Esther +Luz +Alison +Elise +Janelle +Lorena +Annika +Arlene +Bryanna +Jacquelyn +Kira +Marisa +Annie +Fernanda +Rose +Holly +Lisa +Amaya +Savanna +Kyra +Blanca +Phoebe +Sonia +Athena +Heaven +Ivy +Payton +Lucy +Camryn +Lindsay +Makenna +Tara +Yuliana +Ashlyn +Edith +Estefania +Lucia +Stephany +Aurora +Leila +Kailey +Kyla +Layla +Nevaeh +Sadie +Aubrey +Diamond +Melina +Susana +Cameron +Lauryn +Reyna +Sasha +Alana +Haylee +Peyton +Fiona +Margarita +Bridget +Precious +Tania +Clara +Lydia +Meghan +Renee +Tanya +Alice +Dana +Joana +Casey +Mckenzie +Carina +Francesca +Lizeth +Gillian +Joselyn +Juliet +Katelynn +Maribel +Mariela +Sharon +Kendra +Leticia +Rylee +Beatriz +Carissa +Litzy +Maggie +Stacy +Elisabeth +Mikaela +Susan +Angelique +Cierra +Esperanza +Pamela +Yasmine +Delilah +Eileen +Giovanna +Jane +Yadira +Anastasia +Annabelle +Gracie +Kathy +Nayely +Anne +Eliana +Tiana +Annette +Asia +Talia +Aracely +Brooklyn +Judith +Rachael +Sidney +Allyson +Anika +Arely +Bella +Mercedes +Citlali +Eliza +Marie +Tessa +Dalia +Fabiola +Darlene +Jaden +Eden +Genevieve +Berenice +Damaris +Deja +Noelle +Serenity +Skyler +Alexus +Ashlee +Cielo +Raven +Rebeca +Salma +Abby +Deanna +Izabella +Nallely +Noelia +Destinee +Ivette +Roxana +Sandy +Silvia +Ximena +Camila +Gina +Imani +Juliette +Kamryn +Tyler +Justine +Kasandra +Lisette +Hazel +Jessie +Sheila +Yazmin +Ciara +Kara +Aimee +Jeanette +Larissa +Virginia +Alize +Elaine +Joy +Paula +Rosemary +Hana +Kaila +Aylin +Kenia +Estrella +Kassidy +Celine +Graciela +Hailee +Tina +Yajaira +Zoey +Lourdes +Rocio +Sage +Tabitha +Tori +Brenna +Carolyn +Emilie +Isis +Janette +Jazlyn +Jovanna +Lilian +Sarahi +Belen +Frida +Jackeline +Laila +Lena +Lilly +Nathaly +Paloma +Sienna +Dafne +Dayana +Johana +Karissa +Paris +Skye +Felicity +Jimena +Kirsten +Makenzie +Nia +Catalina +Joyce +Melany +Violet +Adilene +Kenya +Kristin +Simone +Abril +Alessandra +Casandra +Emilia +Stella +Barbara +Diane +Jayden +Kaylie +Mireya +Piper +Reina +Rhiannon +Shayla +Xochitl +Angeline +Anissa +Eleanor +Melinda +Norma +Yvonne +Areli +Citlaly +Alisa +Emilee +Georgia +Kristine +Madisyn +Marlen +Nicolette +Priscila +Stacey +Ashlynn +Azucena +Dianna +Hallie +Ingrid +Lea +Makena +Montserrat +Rita +Anayeli +Ashleigh +Eve +Jaclyn +Janessa +Jewel +Julianne +Kaya +Regina +Sylvia +Brandy +Breana +Dakota +Hunter +Jayla +Josie +Lacey +Magdalena +Micaela +Nikki +Nyah +Ryan +Tatum +Thalia +Anya +Ashly +Ellie +Gladys +Helena +Joseline +Leanna +Sheyla +Yessenia +Yulissa +Deborah +Isabela +Jaylene +Liana +Macy +Mariam +Tamara +Evelin +Kaitlynn +Kiley +Maricela +Nichole +Nora +Odalis +Reagan +Shirley +Grecia +Lila +Viridiana +Whitney +Marcela +Rosalinda +Savanah +Vanesa +Alanna +Alisha +Ayanna +Cheyanne +Felicia +Lucero +Tamia +Yoselin +Ann +Donna +Ellen +Frances +Jaquelin +Jenifer +Luisa +Odalys +Theresa +Yolanda +Alyson +Destiney +Elsa +Galilea +Marley +Stefanie +Yahaira +Yareli +Arielle +Connie +Desirae +Hillary +Iliana +Logan +Roxanna +Charlize +Elissa +Jacquelin +Julieta +Keila +Roxanne +Selina +Alena +Callie +Eunice +Jadyn +Lilliana +Nelly +Janeth +Jayda +Joanne +Juana +Magaly +Taryn +Yamilet +Anais +Astrid +Cambria +Denisse +Devyn +Estefani +Katarina +Kelli +Kianna +Maryjane +Raylene +Sarina +Tammy +Tracy +Antonia +Christy +Estefany +Kasey +Katia +Lexi +Lexie +Lina +Nathalia +Valentina +Anjali +Ericka +Jackelyn +Jaelyn +Jovana +Justice +Kayleigh +Kaylin +Luna +Mallory +Nadine +Sally +Serina +Tayler +Addison +Alaina +Anaya +Ayana +Calista +Candice +Celia +Halle +India +Isela +Janae +Janice +Lara +Lidia +Lynette +Maia +Miracle +Brandi +Devin +Gwendolyn +Harmony +Kailee +Katelin +Madilyn +Mina +Shyanne +Siena +Simran +Xitlaly +Amari +Anabel +Aryana +Aryanna +Bryana +Georgina +Griselda +Jayleen +Julisa +Lilia +Maxine +Shreya +Yaritza +Delia +Gia +Kayley +Laisha +Lia +Lola +Maddison +Marisela +Mckayla +Meredith +Scarlett +Tatyana +Ainsley +Aliza +Brianne +Cara +Ciera +Flor +Gissel +Jolie +Krista +Lana +Xiomara +Xitlali +Aiyana +Alia +Aliya +Anai +Charlene +Colleen +Elaina +Elyssa +Maile +Natali +Shania +Valery +Vianey +Amalia +Amara +Angeles +Baylee +Beverly +Brissa +Camilla +Citlally +Danna +Jacklyn +Joelle +Keyla +Lupita +Marianna +Meagan +Penelope +Quinn +Aleah +Arlette +Chanel +Dayanara +Isha +Jessenia +Juanita +Karly +Katlyn +Kiera +Madyson +Myra +Princess +Rosario +Rubi +Tia +Yessica +Aisha +Alayna +Allie +Bridgette +Consuelo +Corina +Heidy +Ireland +Irma +Kaelyn +Melisa +Neha +Nikita +Olga +Rachelle +Regan +Rylie +Toni +Willow +Yaire +Yasmeen +Adamari +Adela +Anita +Aniya +Annabel +Annalise +Candace +Cora +Haylie +Jaiden +Kristy +Laurel +Lilianna +Marian +Michele +Neida +Robin +Ryann +Selene +Shayna +Tianna +Unique +Zoie +Annabella +Beatrice +Bonnie +Celina +Corinne +Ebony +Elyse +Jocelyne +Kristal +Leanne +Madalyn +Malena +Marcella +Priya +Saira +Tess +Yaneli +Aria +Ayla +Jailene +Jocelin +Katharine +Kiersten +Melia +Milagros +Monet +Pauline +Reese +Sade +Shea +Ada +Alani +Aleena +Beyonce +Cali +Cayla +Danica +Danika +Davina +Gissell +Jaime +Kali +Macie +Magali +Mara +Pearl +Sky +Sydnee +Tais +Adamaris +Alexandrea +Aubree +Bertha +Carley +Carol +Cathy +Charisma +Devon +Dylan +Estela +Gisel +Hailie +Ivana +Jazmyn +Jocelynn +Kaleigh +Karime +Katya +Lesli +Lissette +Mandy +Mindy +Nayelli +Rhea +Samara +Sonya +Tiara +Verenice +Yarely +Zaira +Aditi +Adrienne +Alysa +Anabelle +Bernice +Brooklynn +Dahlia +Danae +Deisy +Dolores +Evangelina +Gemma +Harley +Ivonne +Kaiya +Madelynn +Madisen +Maira +Micah +Milena +Miya +Rayna +Rosalie +Sydnie +Yulisa +Ani +Azul +Bailee +Brielle +Charity +Chiara +Emerald +Geraldine +Jasmyn +Kaela +Kaley +Katerina +Kellie +Lisbeth +Mariel +Pricilla +Rosie +Star +Trisha +Vivianna +Abbey +Anahy +Arleth +Clare +Clarisa +Dania +Divya +Dorothy +Gisell +Joselin +Kacie +Kaia +Kailyn +Kaylah +Keely +Kierra +Noor +Sanjana +Saray +Teagan +Ally +Amaris +Carrie +Chelsey +Jesenia +Kayleen +Kaylynn +Kelsie +Lluvia +Maryann +Natalya +Sariah +Sayra +Tierra +Adeline +Aliah +Amani +Anamaria +Anisa +Brook +Carlie +Cecelia +Dayna +Dina +Drew +Elsie +Emerson +Justina +Leia +Lorraine +Maci +Maricruz +Mira +Myla +Presley +Ria +Selah +Shivani +Stefany +Vicky +Yamileth +Yesica +Alex +Alexys +Alycia +Analisa +Belinda +Britany +Candy +Christiana +Colette +Dennise +Destini +Elvira +Hilda +Jackie +Jena +Kacey +Kalea +Karely +Karyme +Kyleigh +Leyla +London +Macey +Maleah +Sheridan +Abbie +Aniyah +Ariadna +Asha +Ashton +Asusena +Betsy +Betty +Chantal +Cinthia +Geneva +Ivanna +Jessalyn +Joan +Josefina +Kaliyah +Karlee +Kaylyn +Kenna +Maliyah +Marianne +Natalee +Noemy +Reilly +Rochelle +Sabina +Thania +Tyra +Amira +Annalisa +Annamarie +Ashlie +Ayleen +Bernadette +Brynn +Farrah +Franchesca +Ginger +Giuliana +Ilene +Jolene +Kalani +Karlie +Katy +Klarissa +Loren +Malaysia +Meadow +Milan +Mirna +Monika +Parker +Reanna +Robyn +Sana +Scarlet +Shyann +Soraya +Susanna +Suzanne +Sydni +Winter +Ailyn +Aislinn +Angelita +Antoinette +Aspen +Coral +Dalila +Elle +Gizelle +Janelly +Judy +Kaylene +Kayli +Kyara +Lyndsey +Marin +Marlena +Maryam +Mikaila +Myrka +Noel +Nya +Pricila +Skyla +Stevie +Tatianna +Yaquelin +Zara +Alysha +Amie +Amya +Ananya +Anisha +Anyssa +Avalon +Cassie +Christa +Christian +Chyna +Daria +Flora +Giana +Jaida +Jana +Janine +Jaquelyn +Jayde +Keana +Liberty +Lizet +Lucille +Mari +Marlyn +Marta +Myah +Salina +Savana +Violeta +Yanet +Yoana +Adelina +Amina +Annemarie +Ariella +Briseida +Caitlynn +Chantel +Chasity +Cherish +Darla +Desteny +Emani +Eryn +Gema +Gisela +Gisele +Gwyneth +Halie +Isabell +Jackelin +Jaylynn +Jenelle +Jesse +Joceline +Journey +Kailani +Kamila +Kaylen +Keilani +Kendal +Lacy +Leyna +Linnea +Makaila +Mariadelcarmen +Mattie +Mercy +Mila +Mirella +Mirian +Montana +Nyla +Pilar +Rianna +Shauna +Taya +Valarie +Yamile +Yanira +Alanis +Aline +Anjelica +Arleen +Armani +Brigitte +Chase +Daisha +Dalilah +Elianna +Faviola +Ileana +Janie +Jarely +Jazzlyn +Jennie +Kari +Lilah +Lynn +Michell +Mimi +Misty +Morelia +Naya +Prisila +Rayleen +Rena +Rosemarie +Zulema +Alexi +Allyssa +Alyna +Annelise +Brianda +Carson +Catrina +Cienna +Cortney +Daija +Dianne +Dora +Elia +Emmalee +Ester +Evangeline +Haily +Haleigh +Haven +Hayden +Inez +Jaidyn +Jailyn +Jenessa +Joleen +Juliann +Kalia +Karli +Keeley +Kennedi +Kimberley +Lillie +Lucinda +Maura +Moriah +Nikole +Ofelia +Raegan +Raelene +Raina +Randi +Riya +Shaylee +Shira +Sinai +Sirena +Soleil +Sunny +Suzette +Yara +Ysabel +Zainab +Zariah +Abbigail +Aidan +Aja +Alanah +Arabella +Aya +Briza +Chelsie +Cinthya +Darby +Dejah +Destanie +Evette +Frankie +Gissele +Glenda +Greta +Iman +Izabelle +Janell +Janely +Jannet +Jaya +Jazlynn +Jessika +Joann +Jose +Kalyn +Karisma +Katalina +Keren +Kim +Liza +Lyric +Madelyne +Maiya +Marielle +Miah +Nalleli +Ramona +Rhianna +Samanta +Shelly +Starr +Tiffani +Xochilt +Zaria +Zitlaly +Alaysia +Alea +Alysia +Alyssia +Aminah +Anabella +Anessa +Anusha +Bryn +Carli +Clarice +Dasia +Denice +Desire +Deysi +Edna +Elvia +Estephanie +Francisca +Gretchen +Imelda +Iyana +Janel +Jaycee +Jayme +Jazmyne +Jeniffer +Josselyn +Karin +Karizma +Kathia +Lianna +Maren +Mika +Mona +Nayelie +Priyanka +Rosalia +Sahar +Sanaa +Shaina +Shantal +Sunshine +Verania +Vianna +Yanely +Yazmine +Zahra +Ahtziri +Alexsandra +Alivia +Anastacia +Anel +Ariyana +Arlyn +Ashely +Belle +Celest +Cloe +Darcy +Dayanna +Delanie +Dixie +Estella +Francis +Hennessy +Hilary +Ida +Italia +Izabel +Jaedyn +Jaelynn +Jaylin +Jennah +Jesus +Joslyn +Kai +Kameron +Katheryn +Keara +Kya +Leann +Leeann +Leslye +Liset +Lizett +Louise +Maegan +Maranda +Marbella +Margot +Matilda +Mikala +Mitzi +Mollie +Nailea +Noa +Noelani +Nydia +Petra +Rosalba +Shani +Shawna +Sherlyn +Shyla +Susie +Venus +Vianca +Winnie +Yulianna +Zitlali +Aida +Alannah +Allysa +Alyse +Anette +Annmarie +Ayah +Bobbi +Breanne +Bria +Chanelle +Daniel +Darian +Dezirae +Doris +Elexis +Eloisa +Elysia +Heavenly +Izel +Jalissa +Janna +Jeanine +Jeannette +Joey +Kaily +Kathya +Keira +Kelsy +Lailah +Laney +Leilany +Leona +Lexus +Lilyana +Lizzeth +Lupe +Lynda +Maeve +Malaya +Mariaisabel +May +Melodie +Monserrath +Nadya +Ryleigh +Samira +Shakira +Shay +Sherry +Shiann +Soledad +Sonali +Suzanna +Tea +Tristen +Vania +Vianney +Vivien +Yael +Yoselyn +Yovana +Zaida +Zayra +Adamary +Adia +Adina +Adrian +Akira +Aliana +Alijah +Ambar +Anay +Anushka +Ariadne +Azalea +Bianka +Bryan +Brynna +Cailey +Cailin +Chandler +Christal +Cianna +Corrine +Danya +Dara +Demi +Elicia +Emelyn +Esme +Essence +Francine +Haydee +Iran +Ixchel +Iyanna +Jacquelyne +Jael +Jasleen +Jasmyne +Jesica +Jill +Joi +Kalista +Keanna +Kenzie +Kiarra +Kyah +Kyana +Leena +Lisbet +Lizbet +Lori +Luciana +Lyla +Mabel +Marcelina +Marla +Maureen +Meaghan +Millie +Myranda +Nautica +Osiris +Rachell +Rory +Sahara +Saige +Stefani +Sulema +Taina +Tamar +Tanvi +Teresita +Thais +Tiffanie +Wendi +Xitlalic +Abigayle +Abriana +Abrianna +Aide +Alix +Amberly +Aubrie +Audra +Azusena +Brieanna +Catarina +Caylin +Chelsy +Cheryl +Chrystal +Cydney +Dallas +Danyelle +Daysi +Debra +Destinie +Deziree +Domonique +Elana +Elva +Erendira +Esha +Evelynn +Hadley +Henna +Jaeda +Jalen +Jalynn +Jodie +Jordin +Julieanna +June +Kaylani +Kayle +Kerry +Kiah +Kristi +Kylah +Lani +Lessly +Lexy +Lillyanna +Liz +Lois +Lorelei +Louisa +Malina +Margo +Mariaelena +Mariafernanda +Maricarmen +Mariella +Mayte +Megha +Melani +Minerva +Monserat +Naomy +Nayelly +Nidhi +Phoenix +Rashel +Reece +Sela +Shae +Shaila +Sommer +Stacie +Stephania +Tahlia +Tallulah +Therese +Yelitza +Ysabella +Abigale +Acacia +Ailene +Aime +Aiyanna +Ali +Allegra +Amethyst +Amiya +Annaliese +Arriana +Austin +Aysha +Berenise +Biridiana +Brigette +Carlee +Cecily +Celestina +Chana +Christie +Chyanne +Ciarra +Corinna +Cosette +Cristy +Dawn +Deana +Divine +Elida +Elisha +Eloise +Elsy +Emalee +Emery +Emili +Eugenia +Evan +Evie +Giulia +Harleen +Holland +Ishika +Ivon +Ivory +Jacey +Jalyn +Jaslyn +Jaylen +Jean +Jeannie +Jhoana +Jiselle +Julian +Julieann +Julyssa +Kailah +Kailynn +Kalei +Karley +Kaycee +Kelley +Kelsi +Kirra +Kiya +Kourtney +Kristiana +Krysta +Krystina +Lisset +Lizzette +Lucie +Mariyah +Marlee +Mitzy +Nicola +Nicolle +Nidia +Niya +Nohemi +Nubia +Nylah +Rayven +Riana +Sahana +Salena +Sapphire +Sequoia +Shantel +Socorro +Starla +Trina +Vannesa +Vivienne +Zenaida +Zuri +Adara +Adelaide +Aiden +Alexzandria +Alliah +Alora +Amia +Amirah +Amisha +Analicia +Analise +Ananda +Anneliese +Arden +Ashanti +Aubrianna +Audriana +Audrie +Avani +Bayleigh +Baylie +Becky +Bianey +Brandie +Breann +Breeana +Brionna +Carmel +Celena +Charlie +Chaya +Corrina +Dajah +Daphney +Dasha +Debora +Emme +Fayth +Fiorella +Gianni +Giavanna +Gladis +Halee +Honesty +Indya +Ines +Irlanda +Isaura +Jacinda +Jacquelynn +Janay +Janett +Jaylyn +Jennyfer +Jewell +Jodi +Jonathan +Joselyne +Kaili +Kala +Karoline +Katlynn +Kaytlin +Kevin +Khalia +Kortney +Kyrah +Laysha +Leana +Lexis +Lezly +Lili +Lilibeth +Lilli +Lillianna +Lizabeth +Malika +Mansi +Manuela +Marielena +Marleen +Meera +Meghna +Melannie +Melony +Merari +Merissa +Michael +Moncerrat +Nalani +Nanci +Nellie +Niki +Oriana +Patience +Pooja +Prisilla +Quincy +Raelynn +Ravyn +Reem +Remy +Renata +Rina +Rowan +Sabine +Sakura +Sarahy +Saylor +Shana +Sharlene +Shayne +Sindy +Sonja +Stefania +Taliyah +Xitlalli +Yamilex +Yocelin +Yuriana +Zuleyma +Adele +Ajah +Alba +Alecia +Alesia +Alliyah +Amairany +Anahit +Anali +Analiese +Anela +Anh +Annabell +Aranza +Arlett +Autum +Ayesha +Bibiana +Billie +Briseyda +Caleigh +Candelaria +Cesilia +Charis +Citlalic +Clarisse +Cloey +Colby +Constance +Cori +Daysha +Deandra +Debbie +Desiray +Destany +Deyanira +Elina +Ellery +Elly +Emi +Emiko +Evelina +Farah +Faye +Florence +Geena +Gracelyn +Harper +Ilana +Isamar +Jacy +Jahaira +Jaila +Jannelle +Jayna +Jazzmin +Jolina +Joscelyn +Kaci +Kalina +Kamille +Kareena +Karol +Karolina +Katherin +Kathrine +Kealani +Kelsea +Korina +Kristie +Lacie +Leandra +Lela +Lilith +Lilyanna +Linette +Liseth +Lita +Lynnette +Macayla +Maite +Maliah +Mariadejesus +Mariajose +Marjorie +Maryanne +Marykate +Marylin +Melyssa +Midori +Monzerrat +Mylee +Neveah +Nisha +Nour +Rana +Remi +Renae +Rio +Romina +Rosalina +Rosalyn +Saba +Sachi +Sanam +Seanna +Serene +Shaye +Shruti +Sierrah +Siobhan +Sol +Steffany +Stephani +Stormy +Talya +Taniya +Tayla +Thea +Tricia +Venessa +Vera +Veronika +Xitlally +Xochil +Yenifer +Yoseline +Yuliza +Yuri +Yusra +Aarushi +Adelaida +Airam +Aleksandra +Alessia +Alexie +Alexxis +Alianna +Alin +Amal +Amelie +Aneesa +Angelika +Ania +Annamaria +Anthony +Arianne +Arisbeth +Asiah +Asucena +Atiana +Ayumi +Bobbie +Breeanna +Cailyn +Callista +Cameryn +Caren +Cathryn +Caylee +Celene +Charlee +Christianna +Chynna +Cleo +Cristian +Cyan +Dariana +Darya +Deena +Denae +Diya +Dulcemaria +Elisia +Eman +Emelia +Emelie +Emiley +Emmie +Emmily +Freya +Genevie +Hollie +Idalia +Idania +Irie +Irina +Jadah +Jalyssa +Janis +Jaymee +Jazelle +Jazlin +Jezebel +Jianna +Jisselle +Jordana +Josette +Kaelynn +Kaleah +Kalena +Kandyce +Kareli +Karena +Karmen +Karsyn +Karyn +Keona +Keyara +Khushi +Kiely +Kinsey +Kiran +Klara +Leigh +Lisseth +Luzmaria +Madysen +Magda +Magnolia +Maisie +Makaela +Makala +Malak +Malea +Mandi +Marguerite +Mariaguadalupe +Marlenne +Marlin +Maryah +Marylou +Marysol +Mele +Melenie +Micayla +Mikaylah +Mildred +Miyah +Moira +Monae +Myriam +Naia +Nailah +Nathali +Nereida +Niah +Niamh +Nichelle +Patty +Rania +Rayanna +Rikki +Rosaura +Roselyn +Roxy +Sascha +Savina +Selma +Sheccid +Shianne +Shriya +Sujey +Tabatha +Taelor +Tasha +Teah +Thelma +Trista +Vannessa +Venecia +Vivianne +Vivica +Xiana +Yadhira +Yocelyn +Yuridia +Zaina +Zion +Zoya +Ailin +Aleida +Alesha +Allissa +Alona +Alyssah +Anakaren +Andrew +Angelic +Anneke +Anoushka +Apryl +Arlin +Armine +Arya +Averi +Azaria +Beth +Betsaida +Blake +Brandee +Breonna +Cady +Carmella +Cesia +Chantelle +Chastity +Chloee +Christopher +Cindi +Collette +Cristiana +Damariz +David +Deija +Deseree +Dorian +Egypt +Elliana +Ellis +Emmy +Eriana +Estelle +Evelyne +Fabiana +Gala +Genessis +Georgiana +Geovanna +Giovana +Giulianna +Gricelda +Guillermina +Gurleen +Gwenyth +Halley +Huda +Idaly +Ilse +Imari +Ivett +Jaileen +Jamila +Jannette +Jaslynn +Jasmeen +Jazzmine +Jeana +Jenae +Jenica +Jenniffer +Jezelle +Jiana +Joely +Joshua +Josselin +Jules +Kaelin +Kalie +Kallie +Kambria +Karma +Katlin +Kayden +Kaylan +Kaytlyn +Keyana +Kia +Kitzia +Kiyah +Kristyn +Kyrsten +Lainey +Lanie +Laurie +Lilit +Livia +Lora +Lorna +Lusine +Madai +Madalynn +Madelin +Mae +Maha +Mai +Marion +Maryssa +Matthew +Maycee +Meghana +Mehak +Mekayla +Meliza +Mercedez +Naila +Naylea +Nely +Neomi +Nova +Novalee +Oceana +Paisley +Patrice +Portia +Promise +Queenie +Raeanna +Raya +Rayanne +Rene +Rheanna +Rileigh +Roberta +Romy +Roni +Rosamaria +Salem +Samia +Sammantha +Sedona +Shanell +Shanna +Shanya +Sheena +Sheily +Sneha +Solana +Susannah +Symone +Symphony +Tala +Taliah +Teri +Terra +Terri +Torri +Tracey +Treasure +Tristan +Vicki +Vy +Xenia +Yakelin +Yatzari +Zoila +Zulma +Abagail +Abbygail +Addie +Adria +Adrianne +Aishwarya +Aislin +Alaura +Aleeza +Alessa +Alizea +Allena +Amairani +Amiyah +Ammy +Anaiah +Anallely +Analy +Analyssa +Anayely +Andie +Andriana +Angelene +Angelia +Angelie +Ankita +Annalee +Areanna +Ariah +Ashleen +Ashli +Aubry +Aundrea +Aura +Aurelia +Aylene +Aysia +Azariah +Biviana +Braelyn +Brea +Bree +Briann +Brigid +Caira +Callan +Cambrie +Campbell +Caprice +Carlin +Casie +Catelyn +Caterina +Cerena +Channel +Charmaine +Christen +Christin +Cordelia +Daeja +Dani +Darlin +Delmy +Dymond +Dynasty +Eboni +Eduardo +Eesha +Elizabet +Ember +Emeli +Emeline +Emelly +Emilly +Emmaline +Enya +Erykah +Evelia +Ezra +Fallon +Fanny +Fatimah +Fionna +Gabriel +Gigi +Gisella +Grisel +Hadassah +Hanah +Haya +Hayli +Helene +Ibeth +Indigo +Indira +Itati +Jacklin +Jaeden +Jakeline +Jamison +Janai +Jaylah +Jaylee +Jazmen +Jeannine +Jenesis +Jenevieve +Jessa +Jessi +Jissel +Joie +Jorden +Jordynn +Julieana +Julyana +Jurnee +Kaile +Kalaya +Karinna +Karis +Karyna +Katey +Kathlyn +Keily +Keri +Keziah +Kilee +Kirstin +Kora +Krislyn +Kyndall +Laiza +Leilah +Leonor +Litzi +Lucila +Luis +Lulu +Mackenna +Maisy +Makaylah +Malaika +Malissa +Marcy +Margaux +Mariely +Maritsa +Marycarmen +Matilde +Mckinley +Mea +Meg +Meilani +Mellanie +Milca +Monserratt +Moorea +Nayla +Nereyda +Nerissa +Neyda +Nika +Nitya +Odette +Orianna +Peri +Rain +Rayann +Reema +Rhyan +Richa +Richelle +Rilee +Ronni +Rosy +Ryley +Samaria +Sanai +Sarena +Sarrah +Sawyer +Shaelyn +Shane +Shaylin +Shelbie +Shelley +Shelsea +Sheryl +Sheyenne +Shireen +Shruthi +Sianna +Sicily +Skylah +Svetlana +Sylvie +Tai +Taiz +Talisa +Tanisha +Tanner +Tawny +Tayah +Theodora +Tierney +Tonya +Triniti +Tristin +Uma +Vanity +Wynter +Yanelly +Yaneth +Yisel +Yoanna +Ysabelle +Zayda +Zhane +Zoee +Aaliah +Aaliya +Abbigale +Adriane +Akilah +Aleigha +Alejandrina +Alejandro +Alexes +Alexsis +Aleyda +Alise +Alisia +Alitzel +Alizabeth +Alizah +Allanah +Alysse +Alyza +Amaia +Amayrani +Ami +Amity +Amrit +Amrita +Anabell +Anaid +Anaiya +Andi +Andreana +Angelena +Angeli +Angelyna +Anja +Anjolie +Annalyse +Aolani +Araseli +Argelia +Ariela +Arissa +Arizbeth +Arlen +Arlet +Arline +Ashlin +Ashna +Asya +Audrianna +Austyn +Ayden +Ayiana +Azure +Beatris +Bethanie +Blair +Briannah +Briceida +Bryce +Camelia +Carisa +Carisma +Carolyne +Charissa +Cherie +Ciana +Ciclali +Daelyn +Daijah +Damiana +Darleen +Dasani +Daysy +Delana +Delany +Denver +Deserie +Devan +Devynn +Dinah +Dionna +Donya +Doreen +Elayna +Eleni +Elexus +Emmalyn +Estephania +Eternity +Eulalia +Francia +Francisco +Gena +Georgette +Giovanni +Gissela +Glory +Gracee +Grayson +Haidee +Haileigh +Hali +Hanan +Hannia +Hayle +Idalis +Ileen +Imogen +Ishani +Isobel +Itzell +Iveth +Iyari +Izabela +Jacquelene +Jadelynn +Jaide +Jailah +Jailine +Jaimie +Jakelin +Jalene +James +Jami +Janiece +Janina +Jannely +Jasmen +Jason +Jaspreet +Jassmin +Jaycie +Jaydy +Jayline +Jeanne +Jessy +Jessyca +Jewels +Jisel +Joelene +Josalyn +Joshlyn +Juan +Jullianna +Kaden +Kady +Kaileigh +Kailie +Kamari +Karenna +Karishma +Karolyn +Kassie +Katharina +Kavya +Kazandra +Kemberly +Keyanna +Kezia +Khadija +Khloe +Kiani +Kimberlyn +Kori +Lailani +Lania +Laniya +Layne +Leeah +Leela +Leonela +Leslee +Libby +Lilianne +Lillyana +Linsey +Loretta +Madilynn +Maiah +Malorie +Mana +Manasi +Martina +Marycruz +Marygrace +Marylu +Mason +Mattison +Meranda +Milly +Mirka +Miyu +Moncerat +Monserath +Muskaan +Myka +Nahomi +Naja +Nikhita +Nirvana +Noella +Nohely +Nola +Nuvia +Olyvia +Paulette +Phyllis +Preciosa +Queen +Racquel +Rae +Raeanne +Raelyn +Raena +Rashell +Rayne +Reana +Rebeka +Ricki +Rosalind +Roseanna +Roselia +Roshni +Rosita +Roya +Samaya +Samone +Samya +Sanaya +Saraya +Saskia +Secilia +Seema +Seleste +Semaj +Shara +Shelsy +Sherly +Siera +Sitlaly +Surena +Syann +Syeda +Tajanae +Talitha +Tarah +Tatyanna +Tegan +Tehya +Teya +Thanya +Tiani +Tiare +Tiarra +Torrey +Trinidad +Tyana +Veda +Vienna +Winifred +Xena +Yailin +Yaqueline +Yasamin +Yazmeen +Ynez +Yohana +Zena +Zia +Zina +Zinnia +Aalyah +Adalia +Adreanna +Agnes +Aidee +Ailani +Aine +Aisling +Akemi +Alaya +Alayah +Aleea +Aleia +Alesandra +Alethea +Alexcia +Alexx +Aleyah +Alida +Alissandra +Allisa +Alyanna +Alyce +Alynna +Alyssamarie +Alyvia +Amandeep +Ambria +Ameera +Amiah +Amparo +Anaiyah +Analaura +Andreina +Angelmarie +Anjelina +Anny +Anyah +Aparna +Arin +Arionna +Arshia +Arushi +Ashleynicole +Ashtyn +Asma +Asuzena +Athina +Averie +Azalia +Baby +Betzabeth +Betzy +Bita +Bliss +Blossom +Blythe +Brandon +Britania +Brithany +Bronte +Brookelynn +Brynne +Caley +Calli +Cami +Carey +Carlos +Carlyn +Carmelita +Carolynn +Ceanna +Chandra +Chante +Chantell +Christabelle +Clair +Concepcion +Cydnee +Dafney +Dalena +Dallana +Daniele +Danitza +Darien +Darline +Deirdre +Delaina +Delainey +Delani +Denyse +Desarae +Desirea +Devina +Devine +Dinora +Domenica +Dominic +Dulse +Dyamond +Dyani +Dyanna +Dyanne +Eli +Elijah +Elinor +Ellena +Elyza +Ema +Emelin +Enedina +Erandi +Erynn +Esly +Estefanie +Esthefany +Faythe +Felisha +Fiorela +Fiza +Gaby +Gianella +Giavonna +Gimena +Glendy +Gwen +Haile +Hala +Hallee +Harlee +Harlie +Harneet +Hasina +Hattie +Hayleigh +Ilianna +Illiana +Iona +Isadora +Italy +Iyonna +Izabell +Jacalyn +Jacquline +Jadelyn +Jaela +Jala +Jalena +Jamia +Jamilet +Janaya +Janiya +Jarelly +Jayne +Jensen +Jenyfer +Jewelia +Johannah +Johnna +Jolin +Jordann +Josephina +Josseline +Juliza +July +Julyanna +Kaetlyn +Kaiah +Kaleena +Kalli +Kallista +Kally +Kalyssa +Kamaria +Kamilah +Kamya +Karisa +Karyssa +Katelynne +Kateri +Katty +Kay +Kaytlynn +Kearra +Keelin +Keiry +Kellee +Kendyl +Kendyll +Kennia +Kiarah +Kimberli +Kimora +Kiona +Kloe +Krishna +Krysten +Krystin +Kylea +Kyli +Kylia +Kyndra +Kyrie +Laci +Lanae +Laritza +Laryssa +Leeanna +Liane +Lianne +Libni +Lior +Livier +Lolita +Madalin +Madelynne +Madylin +Mahek +Makenzi +Malerie +Manpreet +Maraya +Marelyn +Marialuisa +Marifer +Mariko +Markie +Marleni +Marleny +Marline +Maryanna +Maryn +Mayah +Maycie +Mayela +Mayeli +Maylene +Maylin +Megumi +Michel +Michela +Miguel +Mikenna +Mikyla +Milagro +Milla +Millicent +Mirabelle +Mixtli +Morgen +Mykaela +Mykaila +Nahomy +Naomie +Nariah +Nasia +Nena +Nhi +Niurka +Noely +Oliva +Oona +Osmara +Payten +Perri +Quiana +Racheal +Radhika +Raeann +Raisa +Rayana +Rebekkah +Rian +River +Rosio +Roslyn +Ruhi +Safia +Safiya +Saleen +Salome +Saloni +Samyuktha +Sayda +Sean +Secret +Seidy +Serafina +Shaelynn +Shai +Shanelle +Shannen +Shasta +Shawn +Shaya +Shealyn +Shekinah +Shiloh +Shyan +Shylah +Sinahi +Siomara +Sissi +Skyelar +Skylee +Skylynn +Sofie +Solange +Sona +Spencer +Stephenie +Taja +Tali +Talin +Tam +Tamera +Tami +Tasia +Teanna +Tereza +Tionna +Tommie +Tory +Tuesday +Tyanna +Tyla +Una +Vaishnavi +Valentine +Viviane +Vivika +Yaira +Yanelli +Yaslin +Yeimi +Yennifer +Yezenia +Yissel +Yobana +Yovanna +Yuna +Yunuen +Yuritzy +Zahira +Zamantha +Zarina +Zayla +Zayna +Zowie +Aanya +Aashna +Abilene +Abygail +Addy +Adelene +Adora +Adrina +Aerial +Africa +Aishani +Aislyn +Aixa +Akayla +Akhila +Alandra +Alaysha +Aleeya +Alenna +Alexander +Alexiss +Alexy +Alexzandra +Aleya +Aleyna +Alique +Alisandra +Alizae +Alizay +Allura +Allyn +Alyah +Alyssamae +Alyssandra +Alysson +Alyzza +Amada +Amanpreet +Amaria +Amariah +Amarilis +Ameena +Amna +Amyah +An +Andraya +Andres +Andreya +Andria +Andromeda +Angella +Angelle +Angellina +Angely +Anisah +Anise +Ankitha +Annalea +Annalia +Annastasia +Anneth +Annica +Apoorva +Areana +Arianah +Ariane +Arieanna +Aris +Arleene +Arrianna +Arsema +Ashira +Ashleymarie +Ashlynne +Athziry +August +Aunna +Avelina +Aviana +Avigail +Aviva +Avonlea +Ayannah +Aylen +Ayline +Ayushi +Azriel +Bayley +Belanna +Benita +Betsabe +Betzaira +Bonita +Breauna +Breena +Briahna +Bricia +Bridgett +Brithney +Britni +Brittani +Brittnee +Brookelyn +Bryna +Caelyn +Caila +Cailee +Caitlen +Calissa +Calla +Carmela +Carmina +Cassia +Cecile +Celestial +Celestine +Cerenity +Cerina +Charley +Charly +Chenoa +Cherise +Cheyanna +Cheyene +Chiana +Ciclaly +Claribel +Clarise +Coco +Corin +Corrinne +Corryn +Courteney +Cruz +Daena +Daina +Daissy +Daja +Danaya +Danni +Dannielle +Davianna +Dayja +Daysia +Deanne +Deasia +Deema +Deisi +Delila +Demetria +Dena +Denia +Destani +Destenie +Destyni +Diamonique +Disha +Divina +Donia +Dream +Eda +Eilleen +Ekaterina +Elani +Elba +Elexia +Ellison +Elona +Elora +Ely +Elysa +Emiliana +Emillie +Emmely +Erandy +Erianna +Erick +Erina +Erinn +Eris +Ernestina +Esli +Esmerelda +Esteffany +Estephany +Evalyn +Evany +Eveny +Evin +Faizah +Fathima +Fatma +Fion +Francheska +Frieda +Gabriele +Gardenia +Gelsey +Genisis +Genna +Gennifer +Gesselle +Gizell +Gracen +Gracia +Graciella +Greer +Guiselle +Gwendalyn +Hailei +Haili +Haillie +Halia +Halli +Han +Harnoor +Harpreet +Heavyn +Henry +Hiba +Honey +Ila +Ilda +Ina +Inaya +Indiana +Inga +Isa +Isla +Itzayana +Ivone +Jackelyne +Jadin +Jaelene +Jaidah +Jaina +Jaliyah +Jamaica +Jamee +Jamilah +Jamileth +Janee +Jania +Janiah +Jannah +Jannie +Jaselle +Jasminerose +Jazlene +Jazz +Jazzlynn +Jazzmyn +Jelissa +Jennafer +Jennalyn +Jerilyn +Jeslyn +Jestine +Jesyka +Jhoanna +Jhovana +Jina +Jisell +Jizelle +Jocelynne +Joclyn +Jolynn +Jonna +Joselinne +Joselynn +Jovita +Joycelyn +Judah +Julliana +Kacy +Kadie +Kaeley +Kaira +Kaitlynne +Kalynn +Kamea +Kandace +Kandice +Karah +Karine +Karrington +Kary +Kasia +Katerin +Katerine +Katherinne +Katheryne +Kathie +Kathrina +Katiana +Kaycie +Kaylea +Keaira +Keerthana +Keilah +Keisha +Kennedie +Kennya +Kieran +Kimber +Kimi +Kirstie +Kirstyn +Koral +Kory +Kris +Krissy +Kristianna +Kyler +Kyley +Kymberly +Laela +Lailoni +Laine +Lanette +Lariza +Lavinia +Leeanne +Leen +Leeza +Lelani +Lenora +Lesslie +Lexine +Leydi +Lezlie +Lillia +Lillyann +Lissete +Liyah +Lizzet +Lorely +Lorie +Loryn +Luana +Luca +Luzelena +Lya +Lynsey +Lysette +Lytzy +Madalyne +Maddie +Madelaine +Madisson +Magally +Mahalia +Mahi +Mahlia +Mahogany +Maja +Mallika +Mallorie +Manasa +Maram +Mariadelosang +Maricel +Marika +Marilin +Marilu +Mario +Marixa +Mariza +Marlie +Marnie +Marrissa +Marvella +Marwa +Maryelizabeth +Maylee +Mayson +Mazzy +Mckenzi +Mei +Melanny +Meleah +Meleny +Mellisa +Mena +Merelyn +Meron +Metzli +Mickayla +Milani +Minna +Mirabella +Miroslava +Misaki +Misha +Muriel +Mursal +Muskan +Mykayla +Mylene +Nada +Nadeen +Nadiah +Nadiya +Nairi +Naiya +Nandi +Nandita +Natalina +Natallie +Nathalya +Nathania +Nattalie +Nava +Navpreet +Nayah +Nayomi +Neda +Nessa +Neve +Nicholas +Nickie +Nickole +Nico +Nila +Niomi +Niyah +Noeli +Nohemy +Noreen +Octavia +Odaliz +Odyssey +Oksana +Oralia +Page +Paiton +Paityn +Paradise +Parris +Passion +Patsy +Polina +Polly +Porsche +Prachi +Prisma +Raechel +Raveena +Raylynn +Rebecka +Reena +Reya +Reyanna +Rhys +Richard +Ritika +Rivka +Roma +Ronnie +Rosaelena +Rosalva +Rosana +Rosanna +Roxane +Rubie +Ryanne +Sabreena +Sadey +Sadira +Sakina +Samatha +Samiya +Sanae +Sandhya +Sandi +Saniya +Saoirse +Sariya +Saydee +Sayuri +Sena +Sendy +Sera +Serenah +Shamara +Shamari +Shamila +Shantelle +Sharanya +Shawnee +Shelbi +Shereen +Shyanna +Siara +Siclali +Sidnee +Sitlali +Sivan +Skyllar +Skylyn +Sloan +Sloane +Sonora +Sreya +Staci +Stephannie +Sumayyah +Surabhi +Suraya +Susy +Suzy +Suzzette +Swetha +Synthia +Taeya +Tasneem +Tatiyana +Tesla +Thao +Thuy +Tova +Traci +Trish +Ursula +Valencia +Valorie +Van +Vanya +Velen +Vianka +Victor +Vida +Violette +Vita +Xotchil +Yahayra +Yairis +Yamila +Yamilette +Yana +Yareth +Yaretzi +Yecenia +Yenny +Yuritzi +Yuvia +Zabdi +Zabrina +Zaire +Zakiya +Zamira +Zanaya +Zelda +Zella +Zenia +Zenobia +Zianna +Zitlalli +Zully +Zurisadai +Emily +Ashley +Samantha +Jessica +Jennifer +Isabella +Alyssa +Elizabeth +Jasmine +Natalie +Alexis +Sarah +Madison +Hannah +Stephanie +Brianna +Andrea +Sophia +Maria +Emma +Michelle +Vanessa +Victoria +Kimberly +Lauren +Leslie +Kayla +Abigail +Olivia +Mia +Jacqueline +Melissa +Nicole +Grace +Alexandra +Destiny +Jocelyn +Megan +Katherine +Julia +Evelyn +Chloe +Rachel +Taylor +Daniela +Amanda +Hailey +Daisy +Lizbeth +Angela +Diana +Angelina +Melanie +Isabel +Sydney +Sofia +Ariana +Kaitlyn +Alondra +Gabriela +Alexa +Savannah +Anna +Valerie +Maya +Crystal +Angelica +Karen +Briana +Haley +Rebecca +Esmeralda +Sierra +Alejandra +Karina +Cassandra +Zoe +Amy +Allison +Sara +Danielle +Faith +Karla +Katelyn +Cynthia +Audrey +Jordan +Giselle +Marissa +Valeria +Ana +Kelly +Kylie +Amber +Adriana +Guadalupe +Aaliyah +Alicia +Natalia +Madeline +Jade +Jenna +Brenda +Kaylee +Jasmin +Arianna +Christina +Ruby +Jazmin +Brooke +Morgan +Sabrina +Laura +Wendy +Gabriella +Monica +Trinity +Bianca +Lily +Catherine +Ava +Tiffany +Nancy +Paige +Juliana +Mariah +Makayla +Fatima +Priscilla +Erika +Isabelle +Cindy +Mackenzie +Claire +Yesenia +Alexia +Katie +Kassandra +Veronica +Liliana +Breanna +Ella +Mary +Alexandria +Mariana +Joanna +Riley +Denise +Desiree +Naomi +Angel +Paola +Vivian +Nayeli +Sandra +Jazmine +Miranda +Britney +Leah +Caroline +Erin +Celeste +Gabrielle +Serena +Genesis +Erica +Jamie +Jillian +Anahi +Caitlin +Kate +Melody +Mikayla +Sophie +Cecilia +Shelby +Lillian +Carolina +Cheyenne +April +Paulina +Bailey +Julianna +Gisselle +Elena +Emely +Charlotte +Leilani +Jordyn +Amelia +Nadia +Julie +Clarissa +Monique +Viviana +America +Cristina +Julissa +Claudia +Marisol +Lindsey +Summer +Itzel +Kiara +Autumn +Lesly +Christine +Chelsea +Cassidy +Jenny +Kathryn +Angie +Jada +Eva +Aileen +Fernanda +Iris +Janet +Rosa +Avery +Gianna +Alina +Perla +Mayra +Camille +Ariel +Marlene +Caitlyn +Delaney +Aliyah +Dulce +Mya +Raquel +Courtney +Araceli +Daniella +Patricia +Kiana +Kylee +Madelyn +Malia +Miriam +Molly +Nevaeh +Teresa +Carmen +Heather +Irene +Jaqueline +Sasha +Nataly +Skylar +Margaret +Alana +Alissa +Selena +Carla +Helen +Tatiana +Gloria +Kelsey +Shannon +Linda +Litzy +Marina +Yasmin +Kennedy +Amaya +Sonia +Heidi +Kristen +Makenna +Maritza +Nina +Bethany +Lorena +Ashlyn +Kristina +Sarai +Jimena +Noemi +Tania +Natasha +Bryanna +Krystal +Elise +Esther +Hayley +Katrina +Lizeth +Annie +Kira +Lucy +Mckenna +Athena +Fiona +Allyson +Carly +Josephine +Michaela +Kyla +Madeleine +Adrianna +Lesley +Brittany +Leila +Lydia +Yvette +Eliana +Kaitlin +Marilyn +Serenity +Kathleen +Monserrat +Martha +Tanya +Janelle +Kendall +Alison +Nathalie +Angelique +Arlene +Anastasia +Rebekah +Alma +Dana +Camila +Genevieve +Holly +Hope +Lisa +Ximena +Kyra +Tamara +Clara +Savanna +Ashanti +Edith +Cameron +Marisa +Annika +Aurora +Izabella +Reyna +Rose +Ruth +Zoey +Hanna +Katelynn +Bella +Ellie +Jaden +Stephany +Belen +Sadie +Arely +Brooklyn +Kathy +Lizette +Annette +Jacquelyn +Kailey +Dominique +Bridget +Margarita +Susana +Brisa +Elisa +Francesca +Maribel +Estefania +Heaven +Kasandra +Marie +Cristal +Gracie +Layla +Peyton +Sharon +Anika +Joselyn +Aubrey +Rylee +Yadira +Nia +Cierra +Eliza +Johanna +Talia +Alice +Luz +Tara +Carissa +Lauryn +Leticia +Lucia +Ivy +Precious +Skyler +Daphne +Frida +Kendra +Sarahi +Blanca +Payton +Camryn +Judith +Noelle +Annabelle +Jayden +Paris +Tessa +Asia +Hazel +Laila +Melina +Evelin +Jane +Juliette +Mckenzie +Mikaela +Stacy +Tiana +Darlene +Justine +Lindsay +Mariela +Mercedes +Larissa +Meghan +Stella +Phoebe +Fabiola +Haylee +Paula +Roxana +Berenice +Maggie +Abby +Aracely +Alize +Eileen +Ashlee +Brenna +Carina +Damaris +Eden +Melany +Aimee +Deanna +Hailee +Juliet +Rocio +Beatriz +Delilah +Gina +Lisbeth +Renee +Rosemary +Casandra +Casey +Janessa +Karissa +Kaylie +Paloma +Elaine +Emilia +Emilie +Kenya +Iliana +Alexus +Esperanza +Hana +Susan +Yareli +Anne +Citlali +Estrella +Macy +Pamela +Yasmine +Brittney +Diamond +Galilea +Georgia +Lilly +Sage +Sandy +Yvonne +Ashleigh +Ingrid +Jazlyn +Kaya +Sidney +Tatum +Joana +Rachael +Alessandra +Imani +Kara +Celine +Joy +Lena +Carolyn +Dayana +Diane +Jadyn +Jessie +Kenia +Kristin +Maia +Azucena +Jaylene +Joyce +Priscila +Sienna +Skye +Virginia +Yuliana +Abril +Giovanna +Ashly +Catalina +Isis +Anissa +Deja +Kiley +Liana +Lisette +Nikki +Reagan +Salma +Shayla +Theresa +Alisa +Areli +Ashlynn +Dakota +Estefany +Kassidy +Kirsten +Makenzie +Stacey +Alyson +Ciara +Gladys +Julianne +Maryjane +Destinee +Graciela +Janice +Josie +Kaila +Tabitha +Alanna +Dalia +Georgina +Gwendolyn +Isabela +Jackeline +Jeanette +Nathaly +Penelope +Raven +Simone +Tina +Yessenia +Citlaly +Denisse +Eleanor +Tori +Alisha +Anya +Brandy +Elisabeth +Jenifer +Norma +Savanah +Vanesa +Xochitl +Yazmin +Adilene +Ivette +Jayla +Lourdes +Dania +Emilee +Gillian +Heidy +Kaylin +Lana +Lea +Ryan +Tyler +Violet +Annabella +Lilian +Mireya +Rebeca +Rylie +Sheyla +Aniya +Danna +Lina +Makena +Sylvia +Valentina +Amelie +Anabel +Arielle +Barbara +Kailee +Lilliana +Thalia +Yajaira +Eve +Halle +Helena +Jayda +Odalys +Aryanna +Lucero +Nicolette +Nora +Reese +Regina +Antonia +Cheyanne +Donna +Elle +Roxanne +Deborah +Hallie +Luisa +Sheila +Shirley +Yolanda +Addison +Anais +Breana +Felicia +Griselda +India +Marley +Piper +Tracy +Xiomara +Johana +Krista +Kristine +Lara +Rachelle +Shreya +Taryn +Viridiana +Xitlali +Aiyana +Aylin +Jaquelin +Kaiya +Reina +Rosalinda +Adrienne +Haylie +Jazmyn +Lacey +Leanna +Lola +Mina +Noelia +Nyla +Valery +Aisha +Angeline +Astrid +Felicity +Flor +Gissel +Jaiden +Kaitlynn +Kamryn +Kasey +Keyla +Maddison +Roxanna +Tayler +Ebony +Elsa +Frances +Harmony +Jaclyn +Janeth +Jolie +Kaia +Kaley +Laisha +Lilia +Luna +Madisyn +Mariam +Marlen +Raylene +Sarina +Willow +Yahaira +Ainsley +Julieta +Logan +Madalyn +Rita +Aniyah +Celia +Citlalli +Hailie +Janette +Joseline +Kristy +Lluvia +Nadine +Nichole +Scarlett +Tia +Alaina +Amari +Dylan +Juana +Katia +Lexi +Milagros +Nathalia +Rhiannon +Rosario +Selina +Whitney +Aleena +Alysa +Annabel +Camilla +Celina +Estefani +Jaelyn +Janae +Jayleen +Keila +Magali +Maricela +Mckayla +Nyah +Sonya +Arlette +Desirae +Hayden +Justice +Kiera +Lia +Magdalena +Rubi +Tammy +Adamari +Ani +Anita +Annalise +Cara +Charlize +Devin +Dianna +Eunice +Jewel +Jocelynn +Kali +Katelin +Kianna +Samira +Saray +Alia +Ann +Aria +Carol +Charlene +Gia +Hunter +Juanita +Kaela +Katlyn +Madelynn +Mallory +Mara +Marianna +Meagan +Silvia +Simran +Sky +Anette +Anjali +Christy +Connie +Jaylin +Joelle +Karely +Marisela +Melinda +Miah +Nelly +Unique +Alena +Allie +Chantal +Corinne +Elissa +Ericka +Esha +Irma +Joanne +Kellie +Lexie +Lidia +Lupita +Mandy +Marcela +Micaela +Riya +Serina +Stefanie +Tess +Bryana +Cali +Cielo +Cinthia +Cora +Ellen +Julisa +Kelli +Leyla +Liberty +Lizbet +Pauline +Pricilla +Shayna +Tatyana +Yoselin +Ada +Amara +Arleth +Betsy +Grecia +Madyson +Marcella +Maxine +Nailea +Sally +Siena +Stefany +Yaritza +Yasmeen +Aliya +Ally +Amani +Ayanna +Beverly +Calista +Corina +Dayanara +Devyn +Gwyneth +Jovanna +Katarina +Lynette +Nayely +Olga +Vicky +Violeta +Xitlaly +Chanel +Delia +Gemma +Gisel +Hillary +Kaelyn +Kayleigh +Lesli +Lila +Macie +Princess +Quinn +Scarlet +Shania +Zaira +Anaya +Brooklynn +Destiney +Isha +Jackelyn +Karli +Madilyn +Melisa +Meredith +Montserrat +Rhea +Ryann +Selene +Toni +Trisha +Yaire +Adeline +Alayna +Anabelle +Anisa +Baylee +Charity +Clare +Elaina +Elyse +Evangelina +Giana +Jacquelin +Jaime +Jeniffer +Jocelin +Jocelyne +Kayli +Kenna +Rosie +Tiara +Xochilt +Zoie +Amira +Angeles +Brissa +Danica +Devon +Ivanna +Ivonne +Katya +Kayley +Magaly +Nikita +Tianna +Ysabella +Anyssa +Brigitte +Callie +Chelsey +Colette +Dalila +Gema +Giuliana +Halie +Isabell +Ivana +Kailyn +Kaliyah +Neha +Tamia +Yazmine +Abbey +Adamaris +Adelina +Alani +Ayana +Bailee +Beatrice +Bertha +Brandi +Candace +Candice +Candy +Cathy +Elyssa +Harley +Izabel +Jaimie +Jasmyn +Joceline +Kacie +Keely +Lisbet +Lissette +Lorraine +Lyric +Maliyah +Mira +Natali +Presley +Rianna +Sanjana +Savana +Aleah +Aliza +Bridgette +Ciera +Emerald +Katharine +Kayleen +Kaylyn +Laurel +Monet +Odalis +Parker +Pilar +Priya +Sayra +Sheridan +Vivianna +Alexi +Anabella +Anai +Bria +Brynn +Cecelia +Christiana +Dafne +Dahlia +Desteny +Elvira +Emerson +Gisell +Jazlynn +Karime +Karly +Kaylah +Maile +Mirian +Myra +Regan +Robyn +Saira +Sariah +Teagan +Vianey +Yessica +Aditi +Anahy +Ariadna +Belinda +Brianne +Jolene +Lilyana +Lorelei +Madisen +Maleah +Marian +Maryam +Micah +Mindy +Neida +Raina +Shakira +Amalia +Anessa +Annalisa +Ayleen +Briseida +Cassie +Charisma +Colleen +Consuelo +Danika +Hilda +Jacklyn +Jaidyn +Kalea +Leyna +Lucille +Maira +Makaila +Maricruz +Melia +Nallely +Pearl +Sabina +Sade +Shaina +Susanna +Sydnee +Tyra +Yamilet +Yulissa +Aislinn +Alysha +Ananya +Aubree +Avalon +Azalea +Briza +Cambria +Chiara +Christa +Dayna +Dolores +Dora +Haleigh +Jaida +Jaylynn +Josefina +Joselin +Katerina +Katy +Klarissa +Lizet +Lynn +Mariel +Michele +Mila +Noor +Saige +Shea +Shyanne +Soleil +Tatianna +Aidan +Alanis +Amaris +Asha +Britany +Chandler +Coral +Danae +Drew +Gizelle +Ireland +Jaquelyn +Jayde +Jessenia +Kaleigh +London +Malena +Maryann +Miracle +Natalya +Noa +Reanna +Selah +Shyann +Stefani +Yulianna +Alexandrea +Aliah +Alivia +Aneesa +Aryana +Aya +Beyonce +Brielle +Carli +Carlie +Cayla +Dianne +Geneva +Jana +Jessika +Karlee +Kiersten +Kyleigh +Leann +Lilianna +Lyla +Myah +Noel +Rayna +Samanta +Sherlyn +Shivani +Valarie +Alex +Alycia +Anisha +Ayla +Bernice +Cadence +Carley +Cinthya +Doris +Elliana +Elsie +Evangeline +Greta +Haydee +Jackie +Jailene +Jennie +Jesse +Joslyn +June +Karlie +Kaylene +Kelsie +Lilah +May +Mikaila +Nayelli +Noemy +Rosemarie +Rowan +Sana +Starr +Stevie +Taliyah +Tierra +Zayra +Abbie +Adela +Ailyn +Aja +Alexsandra +Alyna +Amya +Analisa +Bonnie +Brianda +Cailin +Corrina +Darla +Dina +Eleni +Emmalee +Eryn +Estephanie +Frankie +Ilene +Isela +Iyanna +Jacey +Jailyn +Jena +Kacey +Kailani +Kaili +Kalia +Katalina +Katheryn +Kaylani +Kaylen +Kristal +Laney +Lani +Lianna +Lori +Lyndsey +Madalynn +Melannie +Mika +Milan +Monika +Rosalie +Ryleigh +Sherry +Soraya +Taya +Tea +Verenice +Zulema +Abbigail +Alexys +Amina +Analise +Annamarie +Annelise +Armani +Ashlie +Carlee +Cherish +Dalilah +Deisy +Dorothy +Evelynn +Franchesca +Gretchen +Jennah +Jennyfer +Jesus +Kaylynn +Kendal +Kierra +Marianne +Marla +Marlyn +Melani +Millie +Misty +Miya +Moriah +Natalee +Reilly +Rochelle +Sequoia +Skyla +Sydnie +Vianney +Zara +Adrian +Alannah +Amie +Angelie +Brook +Celest +Clarice +Davina +Dawn +Dayanna +Dennise +Elianna +Estela +Ginger +Gissell +Iman +Jaylyn +Jazmyne +Jeannette +Kai +Kim +Leanne +Leslye +Malaya +Mari +Merari +Mercy +Mona +Nadya +Nubia +Nya +Ofelia +Ria +Robin +Rory +Rosalia +Samara +Thaily +Winnie +Yanet +Zaria +Abigale +Aliana +Alliyah +Allyssa +Angelita +Ashely +Aubrie +Caitlynn +Chasity +Christian +Dallas +Inez +Ivory +Jackelin +Janine +Jannet +Jenessa +Jesenia +Kalani +Kalina +Keilani +Kenzie +Kya +Litzi +Loren +Macey +Malaysia +Mariyah +Meadow +Prisila +Rena +Sneha +Star +Yamileth +Yarely +Anastacia +Anushka +Aspen +Azul +Bernadette +Brea +Charlie +Clarisa +Elia +Elisha +Farah +Geraldine +Haily +Iyana +Jaelynn +Jalyn +Janell +Janely +Jayme +Joey +Kamille +Kaytlin +Kelley +Korina +Leena +Lili +Livia +Liza +Marbella +Maricarmen +Marlena +Myranda +Myriam +Nalani +Nereida +Pricila +Randi +Rayleen +Soledad +Sunshine +Treasure +Vania +Yulisa +Aida +Alora +Anamaria +Annaliese +Annemarie +Ashton +Ayesha +Belle +Bibiana +Caleigh +Chyna +Cienna +Darby +Daria +Desire +Destini +Edna +Essence +Faviola +Faye +Hilary +Jacinda +Jasleen +Jaycee +Jaylen +Jeannie +Judy +Justina +Kalyn +Kari +Kaycee +Kayden +Keana +Leia +Madelyne +Madilynn +Maiya +Marin +Maura +Milana +Minerva +Nikole +Rosalyn +Sakura +Sela +Shaylee +Shelly +Shyla +Sloane +Sydni +Thania +Tiffani +Veronika +Aiyanna +Alaura +Aline +Alysia +Aminah +Analy +Arabella +Ariella +Arly +Arlyn +Betty +Campbell +Carrie +Chaya +Chyanne +Cianna +Daijah +Diya +Elvia +Elysia +Emmy +Estella +Ester +Gisele +Harleen +Ines +Jalissa +Jazzlyn +Jorden +Jovana +Kaileigh +Kamila +Kourtney +Kristie +Kylah +Lillie +Louise +Mai +Meera +Mirna +Myla +Nautica +Osiris +Sirena +Suzanne +Tristan +Yara +Adelaide +Annmarie +Arissa +Aurelia +Ayah +Cailey +Cailyn +Catarina +Cecily +Christie +Danya +Debbie +Donya +Dyanna +Emelie +Emery +Farrah +Flora +Francis +Francisca +Gwenyth +Haven +Idaly +Izabelle +Janna +Joan +Jose +Kaily +Karolina +Keira +Keren +Lisset +Maegan +Maeve +Makaela +Marlee +Mitzy +Montana +Monzerrat +Myrka +Naila +Rosaura +Sahara +Serene +Shae +Sinai +Sonja +Sunny +Tamar +Terra +Yaneli +Yanira +Yenifer +Acacia +Adrianne +Akira +Alyah +Amiya +Angelic +Anjelica +Anneliese +Arleen +Arlin +Breanne +Cameryn +Chanelle +Chase +Dariana +Deana +Debora +Dejah +Divya +Emelia +Emmeline +Esme +Francine +Ileana +Imelda +Italia +Jadah +Jael +Janel +Jean +Josselyn +Karis +Kelsy +Kennedi +Kirra +Kyara +Leandra +Leeann +Leilany +Lexy +Loretta +Lucinda +Mabel +Mayeli +Melodie +Micayla +Michel +Monserrath +Nellie +Nidia +Noelani +Nylah +Paulette +Phoenix +Quincy +Raelynn +Rain +Ramona +Remy +Rosalba +Roselyn +Rosio +Roxy +Shriya +Sianna +Susie +Tabatha +Tracey +Vianca +Yadhira +Yael +Yanely +Yaquelin +Yesica +Yisel +Yoselyn +Zainab +Zuri +Abigayle +Abrianna +Adelle +Adina +Aixa +Alanah +Amethyst +Anali +Angelika +Angely +Antoinette +Azusena +Bryn +Caprice +Catrina +Caylee +Celene +Chrystal +Cydney +Daija +David +Delanie +Emeline +Emelyn +Emmaline +Enya +Geena +Gwen +Harper +Heavenly +Jaedyn +Jahaira +Jaliyah +Jamila +Janelly +Janie +Janis +Jesica +Jessalyn +Jianna +Joann +Joselyne +Journey +Kareena +Karmen +Kaylan +Kelsea +Keona +Kiran +Kiya +Kristiana +Laine +Larisa +Lexus +Liz +Lucie +Mackenna +Madysen +Maliah +Manuela +Margot +Marielena +Mattie +Maureen +Mikala +Mirka +Moira +Moncerrat +Nailah +Nandini +Naomy +Nicola +Portia +Prisilla +Raegan +Raelene +Rebeka +Riana +Sabine +Shaelyn +Shanna +Shelsy +Suzette +Tanvi +Thais +Thea +Trina +Trish +Venus +Vianna +Viktoria +Yamile +Zariah +Adamary +Adia +Ahtziri +Aide +Alaysia +Alessia +Allysa +Amirah +Anakaren +Anel +Angelena +Anica +Annissa +Aolani +Arcelia +Ariadne +Arianne +Audriana +Becky +Bianka +Briseyda +Callista +Carmela +Chantel +Cloe +Cyan +Dani +Dara +Darian +Darlyn +Darya +Denice +Destany +Destinie +Divine +Dorian +Elayna +Elexis +Elina +Eloise +Fiorella +Gisela +Glenda +Gracey +Hennessy +Hollie +Ilse +Irais +Jannette +Jarely +Jaymee +Jenelle +Jiselle +Jodie +Kacy +Kailah +Kalie +Kathrine +Kathya +Kayle +Keanna +Keara +Keeley +Kemberly +Kendyl +Lacy +Lailani +Laysha +Lilith +Lizzeth +Louisa +Luis +Madelaine +Magnolia +Malina +Mariafernanda +Marilu +Marjorie +Martina +Marylin +Matilda +Mayerli +Melonie +Melony +Mildred +Milena +Milla +Mirella +Mitzi +Mollie +Naya +Niki +Niya +Nour +Patience +Penny +Petra +Reem +Rhianna +Sarena +Shani +Shawna +Shay +Siobhan +Sofie +Symone +Tehya +Tristin +Vivienne +Wynter +Yoana +Yuri +Yuvia +Zahra +Zitlaly +Abriana +Alba +Alea +Amayrani +Amberly +Anahit +Anamarie +Anayeli +Anoushka +Anusha +Ariah +Ariela +Arushi +Arya +Asusena +Audrie +Bobbie +Brynna +Catelyn +Citlally +Cruz +Deena +Deyanira +Ember +Evelina +Georgette +Hafsa +Hali +Ileen +Irie +Ivon +Jalen +Jaylah +Jaylee +Jazzmin +Jessi +Jizelle +Jordynn +Jourdan +Kalista +Kallie +Kalysta +Kambria +Karisma +Kealani +Keilah +Kelsi +Keri +Kimberlyn +Kinsey +Kora +Kyah +Lainey +Leana +Leela +Lela +Linnea +Liyah +Luciana +Madelynne +Maliya +Maren +Marielle +Marleen +Marta +Mercedez +Michell +Nicolle +Nika +Nohemi +Nuvia +Patrice +Rayanna +Ritika +Romina +Safa +Seanna +Seleste +Shantel +Shayne +Shira +Shruti +Sonali +Tyana +Vera +Vienna +Vivianne +Xitlalli +Yocelyn +Yuliza +Zena +Zoee +Addie +Alayah +Alexxis +Alexyss +Ali +Alianna +Alizah +Alyanna +Alyse +Alyssia +Ambar +Amiyah +Anaiya +Angelyn +Annalee +Arden +Aries +Arlett +Ashlin +Asucena +Aubriana +Audra +Autum +Breonna +Candelaria +Caterina +Cesia +Charli +Cheryl +Ciana +Cleo +Cloey +Corrine +Cosette +Danitza +Darleen +Dasha +Daysi +Deysi +Elicia +Elora +Emani +Emi +Emillee +Evan +Evelia +Eveline +Fanny +Fayth +Giavanna +Gladis +Hadley +Haile +Halley +Hiba +Idalia +Ilana +Irina +Janneth +Jayne +Jeanine +Jezebel +Jill +Jolina +Joscelyn +Juan +Julian +Kaeli +Kaelin +Kalena +Kareli +Katherin +Kati +Kiarra +Kimberley +Kirstin +Krysta +Laina +Lane +Leilah +Lezly +Lilibeth +Lilyanna +Liv +Lizzette +Lois +Maci +Mariaelena +Mariella +Marilynn +Marleny +Maryah +Mikaylah +Mimi +Morelia +Nanci +Naylea +Neyda +Ocean +Priyanka +Rania +Renata +Rhyan +Ricki +Rosalina +Rosamaria +Rosanna +Rosy +Ryley +Sahar +Sania +Sera +Shauna +Shianne +Siera +Sindy +Suzanna +Tayah +Tayla +Teya +Triniti +Trista +Tristyn +Vicki +Violette +Vivien +Wendi +Willa +Winter +Xitlalic +Yaneth +Abbygail +Agnes +Ailani +Airam +Akasha +Akilah +Aleida +Alexie +Alisia +Alizae +Allana +Alyssah +Andie +Aniah +Ariyana +Arriana +Aysia +Billie +Bree +Brigid +Caelan +Calli +Carson +Chelsie +Clarisse +Constance +Cordelia +Cristy +Daisha +Dallana +Daniele +Darcy +Dasia +Debra +Dejanae +Desiray +Dezirae +Dyani +Elizabet +Emeli +Emiko +Estelle +Evalyn +Genessis +Genevie +Gissele +Hannia +Harlee +Helene +Honesty +Isaura +Ishika +Ixchel +Izabela +Jackelyne +Jadelyn +Jamileth +Janai +Janett +Jaspreet +Jayna +Jenesis +Jisselle +Jodi +Joleen +Josseline +Juliann +Kady +Kaelynn +Kamari +Karley +Karyme +Keiana +Keiry +Kennia +Kerry +Khloe +Kimberlee +Kimora +Kristi +Kyanna +Kyndall +Lailah +Laryssa +Laurie +Lexis +Libby +Lillyana +Luzmaria +Maha +Makyla +Marguerite +Mariaguadalupe +Mariajose +Mariya +Marleni +Maryanne +Marycruz +Mayte +Meaghan +Michael +Michela +Monserat +Niamh +Nisha +Nyomi +Oscar +Rana +Remi +Rheanna +Rina +Risa +Roberta +Rubie +Ryanna +Ryanne +Sahana +Sanaa +Sarahy +Scout +Shana +Shaye +Shelbie +Silvana +Skylee +Tamera +Tanisha +Taniya +Tiffanie +Vannesa +Veda +Xenia +Yamilex +Yana +Yuritzi +Zaida +Zion +Aiden +Ailene +Aishwarya +Aleksandra +Alexander +Amia +Analee +Analia +Analiese +Angeli +Angelia +Anjelina +Anyah +Arline +Atalie +Aubrianna +Audree +Audrianna +Austin +Austyn +Avani +Aysha +Azaria +Baby +Blair +Breann +Brigette +Brionna +Bryan +Caren +Carlos +Charis +Charissa +Cheyann +Chloee +Collette +Concepcion +Corey +Demi +Denae +Deseray +Deserie +Destanie +Deziree +Divina +Dixie +Dynasty +Elana +Eloisa +Elsy +Elva +Ema +Emalie +Emmie +Emoni +Evette +Fabiana +Fernando +Freya +Gardenia +Genavieve +Gianni +Gracyn +Harriet +Herlinda +Holland +Idalis +Iveth +Ivett +Ivie +Jacquelynn +Jacy +Jaeda +Jalynn +Jalyssa +Jamison +Janaya +Janiya +Jaslyn +Jaydin +Jeanne +Jisela +Joely +Joi +Joie +Josette +Joslynn +Josselin +Jude +Julieanna +Kaci +Kaira +Kameron +Kandace +Karena +Karin +Karsyn +Kathia +Kathlyn +Katlynn +Kavya +Kaylei +Keziah +Khushi +Kimberli +Kimi +Kloe +Kristyn +Krysten +Kyana +Kyrah +Lanaya +Lanie +Leeanna +Leona +Lessly +Lilli +Lilyan +Linette +Lorna +Luzelena +Mae +Maisie +Maite +Makaylah +Margaux +Mariadejesus +Mariaisabel +Marion +Marwa +Marycarmen +Maryssa +Meleny +Merissa +Misha +Muskan +Mykayla +Naia +Nalleli +Nayelie +Nayla +Nereyda +Neveah +Niyah +Noah +Nydia +Nyssa +Pooja +Queenie +Raelyn +Rene +Rian +River +Roma +Rosalind +Roya +Sachi +Sahira +Salena +Salina +Sammantha +Samya +Sanya +Savina +Sejal +Selma +Shaylin +Shelsea +Simona +Starla +Stephania +Sujey +Susannah +Talisa +Tallulah +Tera +Therese +Tristen +Valencia +Vanity +Vannessa +Viola +Vivica +Zully +Aarushi +Abagail +Abygail +Adele +Ailin +Aime +Aine +Aislyn +Alasia +Aleen +Alessa +Alexcia +Alexy +Alyssamarie +Alyza +Amada +Amairani +Amairany +Amarah +Amariah +Ammy +Amrit +Anayah +Angelee +Annabell +Anouk +Antonette +Aranza +Ariyah +Armoni +Ashante +Aubry +Audrina +Audry +August +Aura +Avigail +Avneet +Azalia +Baleria +Beatrix +Berlin +Betsaida +Brienna +Caley +Camden +Cassia +Cathleen +Chantelle +Clementine +Cristiana +Cristine +Daja +Dayra +Delany +Deseree +Devine +Domonique +Dulcemaria +Elinor +Ellena +Ellison +Emaan +Eman +Emelin +Emmily +Erandy +Estefanie +Estephania +Fay +Fiza +Gelsey +Getsemani +Giulia +Guillermina +Gurleen +Halee +Hanah +Hanan +Harini +Iran +Irlanda +Isamar +Jaileen +Jakeline +Jalene +Janani +Janey +Jasmeen +Jaya +Jenica +Jenin +Jenni +Jessa +Jezabel +Jissel +Jody +Jonathan +Jordin +Josalyn +Josephina +Joycelyn +Jules +Julieana +Juliett +Julietta +Kaelah +Kaely +Kailie +Kalee +Kalei +Kalen +Karizma +Katelynne +Katerine +Katherina +Kathryne +Kaylana +Kevin +Khalia +Kiah +Kiele +Kyndal +Leeah +Leonela +Lesslie +Lexia +Lilit +Lillianna +Lizett +Lorelai +Lotus +Lyanna +Lynsey +Maja +Malaika +Malanie +Malea +Mariadelcarmen +Marine +Marisabel +Marlin +Marly +Marysol +Mayerly +Maylene +Mele +Minna +Monae +Navneet +Nawal +Naydelin +Nayelly +Nena +Nidhi +Odette +Peri +Prescilla +Quetzali +Quetzalli +Raeann +Rayne +Reece +Reign +Rikki +Rilee +Roxann +Saba +Sadia +Samaria +Samiya +Saniyah +Sapphire +Sariyah +Sascha +Scarlette +Serafina +Seraphina +Shaila +Shane +Shanelle +Shanice +Shantal +Sharai +Shaylene +Shelbi +Shelley +Shoshana +Skyy +Sol +Solana +Sole +Sommer +Sona +Spencer +Sruthi +Stacie +Stefania +Steffany +Taina +Teresita +Tierney +Tuesday +Tyanna +Uriah +Vida +Xandria +Xiana +Yamila +Yanelly +Yelena +Yelitza +Yoseline +Yovana +Ysabel +Yuridia +Zenaida +Zulma +Aalyah +Adara +Adi +Adria +Ai +Aiko +Alaya +Aleesha +Aleeza +Alesha +Alethea +Alexsis +Alexxa +Alexzandria +Alix +Alizay +Alona +Alonna +Alyce +Amena +Ami +Amisha +Amrita +Anagha +Anaid +Analicia +Ananda +Anay +Andrew +Andreya +Andria +Angelisa +Ania +Anja +Anjolie +Ankita +Annamaria +Anthony +Anysa +Araya +Ariane +Ariatna +Arieana +Arizbeth +Arlet +Ashleen +Ashlei +Ashna +Ashtyn +Asma +Atiya +Aundrea +Averie +Avianna +Avni +Azariah +Azia +Basia +Bethanie +Betsabe +Bianey +Bobbi +Briauna +Brieanna +Britani +Brittny +Brookelynn +Brooklin +Bryanne +Cate +Cathryn +Cesar +Chelsy +Cherry +Christal +Chyenne +Citlalic +Claritza +Colby +Corie +Corinna +Cortney +Crista +Crysta +Dacia +Daira +Danyelle +Darlin +Daysha +Deisi +Delainey +Dena +Denis +Devan +Devina +Eilene +Elida +Elijah +Elisabet +Elisheva +Ellery +Elli +Ellianna +Ellis +Elyza +Emile +Emilly +Emonie +Emy +Ena +Erandi +Erendira +Eternity +Evie +Ezra +Fatimah +Genoveva +Georgiana +Gigi +Giovana +Guinevere +Han +Hasmik +Heavenlee +Heba +Heily +Huda +Ilianna +Imogen +Inaya +Isobel +Issabella +Isyss +Italy +Jacquelyne +Jadin +Jaeden +Jaina +Jamiah +Jamilah +Janay +Janene +Jaycie +Jenevieve +Jenniffer +Jesslyn +Jorja +Julitza +Julyssa +Kaiah +Kaile +Kailynn +Kaliana +Kalli +Kamara +Kameryn +Kami +Kamia +Kandice +Kathie +Kay +Kayanna +Kaycie +Kaytlyn +Keerthana +Keili +Khadija +Kiely +Kimiko +Kiyah +Kiyomi +Krisha +Krishna +Kyley +Kylia +Lacie +Laniya +Laylah +Layne +Lexington +Lillyanna +Linsey +Lissa +Lissete +Lizabeth +Lovely +Lyna +Lyndsay +Lynna +Lysette +Madai +Madaline +Magally +Makala +Malayah +Malika +Malinda +Mansi +Maranda +Maraya +Marcia +Marena +Maricella +Maritere +Maritsa +Marlenne +Marlina +Marykate +Mason +Mayleen +Maylin +Meena +Meghna +Mei +Mekayla +Mekenna +Meliza +Miguel +Milca +Miyah +Nahomy +Naraly +Natallie +Natally +Nayomi +Nely +Niah +Nikka +Niurka +Nova +Octavia +Odessa +Oriana +Page +Rachana +Rachele +Racquel +Radhika +Raeleen +Ravneet +Ravyn +Rayann +Richelle +Rio +Riva +Roslyn +Ruthie +Safiya +Saida +Sakina +Salome +Samaya +Samiah +Samiyah +Sandhya +Santana +Sawyer +Sedona +Shaelynn +Sharlene +Sheily +Shiloh +Sinead +Sissy +Sitlali +Sivan +Skylah +Stephenie +Synthia +Tala +Taleen +Tali +Tasha +Tatiyana +Terese +Teressa +Terri +Tiera +Tiona +Tricia +Uma +Violetta +Viviane +Vy +Yaira +Yazmeen +Yecenia +Yocelin +Yuna +Yunuen +Yuritza +Zaina +Zakiya +Zarina +Zenia +Zinnia +Zitlali +Zora +Aaliya +Aanya +Aaron +Aayushi +Adalia +Adanna +Adison +Aidee +Ailed +Aisling +Akina +Alaysha +Alazay +Aleesa +Alejandrina +Aleli +Alesandra +Alesia +Alexsa +Alexzandra +Aleyah +Aleyda +Alida +Alisson +Alitzel +Alli +Allissa +Althea +Alynna +Amal +Amberlee +Ambria +Ameerah +Anaiyah +Analeah +Analyssa +Andi +Andreina +Anela +Angelyna +Anjana +Anneke +Annel +Antonella +Arantxa +Arianah +Arin +Ariya +Arlena +Ashlynne +Asya +Aunika +Ayden +Ayiana +Belicia +Berenise +Berlyn +Betzy +Blake +Brandon +Breeana +Briahna +Brian +Bridgett +Brina +Brinley +Brittani +Bryce +Brynne +Cady +Cailee +Calla +Cami +Caricia +Carisma +Carmella +Casie +Cassey +Cassondra +Cedar +Celena +Charlee +Chenoa +Cherokee +Christopher +Cody +Cori +Cory +Cristin +Daesha +Danessa +Dannielle +Deasia +Delfina +Delila +Denali +Dennis +Deonna +Devynn +Dharma +Dominic +Doreen +Ekaterina +Eleana +Elliot +Elodie +Emalee +Emiley +Emilyann +Eryka +Estephany +Esthela +Fallon +Fionna +Francia +Gabby +Gabriel +Gaby +Gayane +Genna +Giovanni +Gisella +Graciella +Grayson +Hadassah +Haileigh +Harman +Hayde +Hellen +Holley +Honey +Idania +Ila +Illiana +Ilona +Imari +Indigo +Indira +Inessa +Isadora +Ithzel +Itzayana +Ivania +Jacalyn +Jacinta +Jacob +Jai +Jaila +Jaimee +Jamilet +Janea +Janee +Jania +Janiah +Janina +Janissa +Jaritza +Jassmine +Jaymie +Jazel +Jazelle +Jenae +Jenine +Jenise +Jensen +Jersey +Justyce +Kaeley +Kailei +Kaiyah +Kaleah +Kaleena +Kamilah +Kanani +Karah +Karisa +Karma +Karoline +Karyna +Katharina +Katja +Kaydence +Keala +Keegan +Keelin +Keilyn +Keisha +Kerstin +Keyanna +Keylee +Kia +Kierstin +Kilee +Kiona +Kloey +Kristian +Kyle +Kyliegh +Lariza +Lashanti +Leigha +Leilanie +Leiloni +Leonor +Leslieann +Libni +Lillith +Lilyann +Lilybeth +Lindy +Lisandra +Liseth +Lisseth +Lissett +Lizzet +Londyn +Luca +Luci +Lucienne +Lucila +Luiza +Lulu +Lyndsie +Lynne +Macayla +Mahalia +Mahnoor +Mahogany +Maiah +Makailah +Makana +Makenah +Malak +Malayna +Mallorie +Malorie +Manal +Manon +Marco +Marcy +Marelyn +Margie +Mariabelen +Marifer +Marilin +Marlie +Marylou +Matthew +Medha +Meghana +Megumi +Meilani +Melanny +Melenie +Mellanie +Melodee +Meranda +Metzli +Meztli +Micaiah +Michal +Mickayla +Midori +Miki +Milani +Millicent +Milly +Minnie +Mirabella +Monzerrath +Mylene +Myrna +Nada +Nadeen +Naima +Naiya +Naliyah +Nathan +Nattaly +Nayzeth +Neda +Neena +Neftali +Netanya +Nhi +Nikayla +Nirvana +Nisa +Odaliz +Olive +Olyvia +Oona +Opal +Paisley +Patsy +Peggy +Racheal +Raya +Reana +Reena +Reva +Rhonda +Riddhi +Rileigh +Rishika +Rochel +Romi +Romy +Roni +Roshni +Rosina +Rosita +Sabreena +Sacha +Sadaf +Sadee +Samari +Sanai +Sandi +Saniya +Saya +Sayaka +Saylor +Seidy +Seven +Shanel +Shante +Shasta +Sheccid +Sherlin +Sherly +Shruthi +Sinahi +Sloan +Sonora +Srija +Sriya +Staci +Starlene +Stephane +Sterling +Sumaiya +Supriya +Suzana +Taelor +Taliah +Tam +Tanner +Tasia +Tawni +Taylin +Teanna +Tegan +Teja +Tesla +Thanya +Torri +Trinh +Trinidad +Tya +Venecia +Venice +Vianne +Vilma +Wynne +Yailin +Yajahira +Yanelli +Yaretzy +Yasamin +Yosselin +Yuritzy +Zoha +Zoya +Zuleyma +Aaryn +Aashna +Abbigale +Abbygayle +Abigayl +Adali +Adelia +Adelyn +Adithi +Adrina +Adryanna +Aishah +Aislynn +Aizza +Alaiza +Alayjah +Alecia +Aleeya +Aleina +Alejandro +Alene +Alexiss +Alexius +Alexiz +Alijah +Alinna +Alisandra +Alise +Alizabeth +Alizey +Allegra +Allisa +Alva +Alvina +Alyana +Alyiah +Alysah +Alysse +Amaiya +Amayah +Ambrosia +Ameera +Ameyalli +Amilia +Amna +Amparo +Amyah +An +Anabela +Anaiah +Anasofia +Anevay +Angeleena +Angy +Anh +Anisah +Anise +Anjalee +Anjela +Annaliza +Annalyse +Annastasia +Anny +Ansley +Antara +Aoife +Aparna +Apoorva +Apryl +Araseli +Areen +Arelly +Ari +Ariannah +Arionna +Arisa +Arisbeth +Arista +Arlen +Arlyne +Arwen +Aryan +Aryn +Ashanty +Ashia +Ashlen +Asiya +Aslyn +Atziri +Avelina +Averi +Aviana +Avina +Ayaka +Aylene +Ayushi +Babygirl +Bahar +Bethel +Betzaida +Biridiana +Blessing +Breena +Briannah +Bricia +Brieana +Briley +Briona +Britain +Brittaney +Brizza +Bryonna +Caelyn +Calissa +Calysta +Camrynn +Candyce +Carmel +Carmelita +Carter +Caylie +Celestia +Celestine +Cerenity +Cerina +Chanell +Charisse +Charmaine +Chelsee +Cheyenna +Chioma +Chole +Chris +Christen +Chyann +Ciarra +Cierrah +Clair +Coco +Coraima +Crisol +Cyerra +Daisie +Daissy +Dajah +Dalyla +Damariz +Damarys +Danni +Darianna +Darline +Darling +Daylene +Deandra +Deija +Delayna +Delicia +Delina +Della +Delmy +Demetria +Desarae +Destyni +Dinah +Dior +Disha +Dreanna +Dulse +Dunia +Eboni +Electra +Elen +Elexia +Elizah +Elly +Elysha +Emari +Emerie +Emili +Emmalyn +Emme +Emmerson +Emylee +Erick +Erykah +Esbeidy +Estephani +Evelyne +Faythe +Felisha +Florence +Freda +Gena +Genisis +Gianella +Giulianna +Gizel +Grayce +Gretel +Gricelda +Gurpreet +Habiba +Haili +Hania +Harlie +Hayat +Hayle +Haylei +Heavyn +Henna +Hera +Ida +Ileene +Ilyana +Imaan +Indiana +Indya +Iqra +Isabellamarie +Ishani +Itati +Izamar +Jacquline +Jadeyn +Jaela +Jaelen +Jahayra +Jaide +Jaidy +Jailine +Jailynn +Jaiya +Jaleah +Jamee +Jammie +Janiyah +Jannel +Jaquelyne +Jaslin +Jasmyne +Jason +Jayana +Jaynee +Jazlin +Jeanie +Jenika +Jennefer +Jennessa +Jennica +Jennine +Jewelia +Jewell +Jewels +Jillianne +Johnae +Johnnie +Joline +Josalynn +Josefa +Joselynn +Josephyne +Joslin +Journee +Joya +Jubilee +Julieann +Julina +Jumana +Kaaliyah +Kadee +Kaden +Kaelee +Kaetlyn +Kaiden +Kailene +Kaithlyn +Kaitlan +Kalaya +Kalin +Kaloni +Kalynn +Kamea +Kamya +Kana +Kansas +Karalyn +Karicia +Karishma +Karsen +Karyn +Kasia +Katerin +Katheryne +Katina +Katlin +Kaye +Kaylamarie +Kaytlynn +Kazandra +Keaira +Keily +Kekoa +Kelcie +Kelis +Kennadi +Keyana +Keyara +Kiani +Kiannah +Kiarah +Kimani +Kimia +Kimiya +Kiyana +Klaire +Klara +Klaryssa +Kodi +Kodie +Kori +Kyli +Kymberly +Kyrstin +Laela +Laiba +Laken +Lamiya +Lanai +Larkin +Laya +Leeanne +Leianna +Leigh +Leiya +Letzy +Lexa +Lezlie +Liah +Liliann +Lilie +Lilliann +Lillianne +Lillyan +Lillyann +Liset +Lisett +Litsy +Lizbett +Lizveth +Lora +Loreli +Luana +Lupe +Lylah +Mackenzy +Maddie +Maddisen +Madelin +Madina +Magda +Magdalene +Mahika +Maisha +Maisy +Makenzi +Malani +Maleeha +Maleia +Maleny +Manaia +Manasvi +Mariadelosang +Marialuisa +Maribell +Maribelle +Mariely +Markayla +Marline +Marti +Marwah +Marylyn +Matea +Mathilde +Matilde +Mayah +Maycie +Mayela +Maylee +Mayrin +Mckinzie +Megha +Meilan +Mekenzie +Mel +Melaney +Melea +Mellissa +Melyssa +Merary +Merly +Meya +Michaella +Michayla +Mihika +Mikah +Mikenna +Milagro +Mileena +Miliani +Minami +Mireille +Miroslava +Mitali +Mitchell +Mitra +Moana +Monalisa +Morgen +Muriel +Muskaan +Mykaila +Mykala +Nadiya +Naidelyn +Naimah +Naja +Nala +Nana +Nanette +Naomie +Nathali +Niara +Ninel +Nitya +Noely +Nola +Noora +Oasis +Pahola +Preethi +Priscella +Rae +Raeanna +Rani +Rashel +Rawan +Rayana +Rebecka +Reghan +Reyanna +Rheana +Rida +Ronnie +Rori +Rosaelena +Rosalee +Rosalva +Rosana +Roselynn +Rossy +Ruchi +Ruhi +Ryane +Sahra +Samia +Samina +Sammi +Sammie +Samone +Samuel +Saraih +Sarita +Sarrah +Saskia +Sativa +Saumya +Schuyler +Seana +Sebastian +Selin +Semaj +Seren +Serinity +Serra +Sevanna +Shalini +Shanell +Shaniah +Shantell +Shanti +Sharanya +Shawn +Shayda +Shaylynn +Sheena +Shereen +Shireen +Shylah +Siah +Siara +Sidnie +Sierah +Sierrah +Simrat +Sincere +Sindi +Skylynn +Sofija +Sora +Stacia +Stefanny +Steven +Sulema +Sumaya +Sunnie +Surabhi +Suzie +Sylvana +Symantha +Tais +Taiya +Taiz +Tajanae +Talya +Tamanna +Tami +Tamyra +Tasnim +Tate +Teah +Tehani +Tehila +Teri +Terrie +Terry +Thelma +Thu +Tiare +Tionne +Torrance +Trinitee +Vani +Varsha +Venessa +Vi +Vianka +Vickie +Vincent +Vita +Wren +Xena +Xitllali +Xuan +Yajayra +Yareth +Yeni +Yliana +Ymani +Yohana +Ysabelle +Yulitza +Yuriana +Yusra +Yvanna +Zahira +Zahrah +Zayda +Zayna +Zenobia +Zina +Zipporah +Zitlalic +Zofia +Zoraya +Zowie +Zurisadai +Emily +Ashley +Samantha +Isabella +Alyssa +Emma +Natalie +Jessica +Jennifer +Elizabeth +Jasmine +Alexis +Sophia +Madison +Sarah +Kimberly +Hannah +Vanessa +Stephanie +Andrea +Brianna +Abigail +Michelle +Maria +Mia +Olivia +Victoria +Kayla +Leslie +Grace +Lauren +Evelyn +Nicole +Melissa +Katherine +Jocelyn +Jacqueline +Diana +Destiny +Alexandra +Chloe +Daniela +Hailey +Angelina +Sydney +Julia +Taylor +Isabel +Gabriela +Amanda +Melanie +Rachel +Sofia +Alexa +Daisy +Alondra +Lizbeth +Angela +Ariana +Maya +Megan +Giselle +Savannah +Kaitlyn +Ava +Valerie +Faith +Audrey +Karen +Amy +Kylie +Karina +Natalia +Angelica +Valeria +Arianna +Anna +Zoe +Esmeralda +Haley +Briana +Adriana +Jordan +Sara +Allison +Brooke +Alejandra +Crystal +Rebecca +Ella +Katelyn +Guadalupe +Kaylee +Karla +Ana +Kelly +Jade +Marissa +Trinity +Sierra +Danielle +Mariah +Jenna +Madeline +Ruby +Aaliyah +Bianca +Brenda +Jazmin +Amber +Juliana +Alicia +Jasmin +Cynthia +Gabriella +Lily +Paige +Claire +Morgan +Makayla +Tiffany +Fatima +Cassandra +Priscilla +Christina +Catherine +Monica +Sabrina +Wendy +Katie +Veronica +Liliana +Riley +Alexia +Mariana +Genesis +Nancy +Isabelle +Desiree +Breanna +Vivian +Cindy +Kate +Erika +Laura +Naomi +Mackenzie +Perla +Yesenia +Erin +Denise +Leah +Mary +Amelia +Paola +Gabrielle +Celeste +Joanna +Julianna +Lillian +Carolina +Leilani +Sandra +Jamie +Kassandra +Mikayla +Angel +Caroline +Emely +Jazmine +Alexandria +Avery +Miranda +Serena +Bailey +Viviana +Mya +Elena +Itzel +Nadia +Shelby +Caitlin +Paulina +Erica +Nevaeh +Jada +Julissa +Julie +Charlotte +April +Summer +Melody +Camila +Cecilia +Madelyn +Lindsey +Marisol +Alina +Nayeli +Jillian +Claudia +Kathryn +Anahi +Gianna +Cassidy +Clarissa +Sophie +Chelsea +Lesly +Molly +Monique +Kylee +Angie +Autumn +Eva +Kiana +Alana +Amaya +Marlene +Raquel +Carmen +Christine +Kendall +Kiara +Katrina +Cheyenne +Leila +Lucy +Aileen +Jordyn +Courtney +Heidi +Camille +Cristina +Kyla +Marina +Dulce +Aliyah +Ariel +Patricia +Bella +Brooklyn +Daniella +Layla +Annika +Gisselle +Iris +Nataly +Tatiana +Rosa +Teresa +Malia +America +Delaney +Fernanda +Ximena +Nathalie +Ashlyn +Britney +Sadie +Hayley +Mayra +Caitlyn +Kennedy +Noemi +Yasmin +Jenny +Heather +Mckenna +Sarai +Bethany +Jimena +Tania +Irene +Janet +Carly +Jaqueline +Serenity +Elise +Kelsey +Carla +Araceli +Miriam +Alison +Paris +Skylar +Yadira +Josephine +Laila +Margaret +Alissa +Allyson +Selena +Nina +Eliana +Ellie +Aubrey +Brittany +Esther +Krystal +Annie +Madeleine +Estrella +Luz +Fiona +Gloria +Martha +Bryanna +Sasha +Jaden +Elisa +Arely +Athena +Kristen +Maritza +Lydia +Genevieve +Linda +Makenna +Rylee +Gracie +Adrianna +Anastasia +Joselyn +Michaela +Natasha +Shannon +Kira +Aurora +Hanna +Heaven +Helen +Lucia +Frida +Marilyn +Izabella +Janelle +Lizeth +Rebekah +Sonia +Stella +Lorena +Alma +Hope +Kailey +Kaylie +Kathleen +Marisa +Arlene +Melina +Pamela +Lesley +Mariela +Talia +Melany +Reyna +Rose +Savanna +Eliza +Dana +Holly +Isabela +Kristina +Kyra +Blanca +Galilea +Lisa +Ruth +Stephany +Jayden +Kaitlin +Skyler +Alice +Aracely +Bridget +Edith +Ivy +Yvette +Carissa +Dominique +Eden +Alessandra +Belen +Cristal +Eileen +Katelynn +Lindsay +Delilah +Jacquelyn +Lilly +Payton +Clara +Reese +Annabelle +Peyton +Angelique +Monserrat +Zoey +Lana +Phoebe +Lizette +Tanya +Daphne +Jadyn +Casey +Yazmin +Anika +Berenice +Haylee +Johanna +Rebeca +Tessa +Abby +Brisa +Kendra +Maggie +Meghan +Valentina +Emilie +Justine +Cameron +Emilia +Joana +Yuliana +Aimee +Leticia +Yahaira +Dayanara +Hazel +Maribel +Stacy +Juliet +Susana +Francesca +Lola +Tara +Helena +Dalia +Kenia +Larissa +Sarahi +Sidney +Annette +Ashlee +Janessa +Mercedes +Noelle +Ryan +Sharon +Catalina +Kathy +Areli +Dayana +Gina +Virginia +Carina +Georgia +Lauryn +Renee +Citlali +Deanna +Esperanza +Jane +Jazlyn +Kenya +Casandra +Estefania +Evelin +Juliette +Rosemary +Sage +Violet +Xochitl +Yareli +Yasmine +Graciela +Lisbeth +Paloma +Rocio +Asia +Darlene +Mikaela +Nia +Raven +Simone +Judith +Rachael +Anissa +Ayanna +Diamond +Karissa +Kaya +Maryjane +Hailee +Julianne +Kailee +Lilian +Rylie +Margarita +Camryn +Jessie +Kaia +Lena +Makena +Makenzie +Marlen +Mireya +Shayla +Skye +Tiana +Alize +Dylan +Eleanor +Abril +Carolyn +Celine +Danna +Hana +Jenifer +Brenna +Kaila +Kirsten +Maia +Mckenzie +Priscila +Samara +Sienna +Susan +Yoselin +Ashly +Elisabeth +Emilee +Kara +Kasandra +Nora +Penelope +Precious +Citlaly +Elaine +Isis +Luna +Marie +Salma +Estefani +Iliana +Ingrid +Dakota +Jackeline +Johana +Lexi +Reagan +Sandy +Anne +Ashlynn +Ciara +Kiley +Liana +Litzy +Macy +Noelia +Roselyn +Yvonne +Cierra +Giovanna +Heidy +Piper +Tabitha +Tamara +Adilene +Jaylene +Nikki +Reina +Shirley +Yessenia +Anya +Deja +Imani +Kaylin +Kristin +Lilliana +Beatriz +Brittney +Denisse +Diane +Regina +Silvia +Jayla +Joyce +Shreya +Stacey +Gillian +Laisha +Tina +Alanna +Alisa +Fabiola +Hailie +Janette +Joy +Kaelyn +Mallory +Marley +Nathaly +Theresa +Amara +Barbara +Damaris +Alyson +Elsa +Gwendolyn +Jaelyn +Lea +Lina +Savanah +Amelie +Angeline +Azucena +Charlize +Destinee +Frances +Josie +Lucero +Mariam +Alaina +Aniya +Arly +Gia +Karyme +Kasey +Krista +Tracy +Valery +Aniyah +Cadence +Eve +Lacey +Paula +Sheila +Aleena +Arlette +Brynn +Eunice +Harmony +Jayda +Jeanette +Joseline +Kiera +Logan +Lourdes +Madalyn +Princess +Roxana +Roxanne +Sylvia +Tatum +Addison +Aylin +Brooklynn +Kassidy +Scarlett +Ainsley +Angeles +Cheyanne +Ellen +Janice +Kaitlynn +Kaley +Sherlyn +Yajaira +Alani +Alisha +Amari +Aryanna +Brandy +Donna +Elissa +Jaclyn +Lilianna +Luisa +Thalia +Alexus +Anais +Annabella +Ericka +Kamryn +Kayleigh +Leanna +Naydelin +Willow +Ashanti +Ashleigh +Cielo +Deborah +Jazmyn +Kailyn +Kianna +Micaela +Tyler +Yulissa +Ann +Annalise +Cora +Marianna +Riya +Tess +Vanesa +Vicky +Xitlali +Breana +Charlene +Estefany +Gladys +Haylie +Janeth +Jayleen +Marcela +Rachelle +Anaya +Arielle +Grecia +Hillary +Jaquelin +Lexie +Lia +Mandy +Nyla +Sarina +Trista +Alena +Aria +Christy +Ebony +Elle +Flor +Ivette +Jacquelin +Lila +Magdalena +Samira +Sydnee +Taryn +Xitlaly +Aiyana +Carol +Griselda +Jocelynn +Justice +Millie +Roxanna +Tayler +Yaritza +Anabel +Cali +Georgina +Harley +Jolie +Katarina +Laci +Liberty +Lynette +Madelynn +Madilyn +Quinn +Yolanda +Aliza +Anabelle +Devin +Elyse +Gissel +Halle +India +Katharine +Keira +Lilia +Magaly +Melisa +Miracle +Neha +Serina +Siena +Tori +Trisha +Viridiana +Alia +Arissa +Baylee +Brielle +Camilla +Dania +Felicia +Isela +Juanita +Kaiya +Kristine +Lara +Lisette +Montserrat +Shania +Shea +Tammy +Tia +Vianey +Xiomara +Aliya +Alysa +Amya +Ani +Antonia +Ayana +Celia +Ivonne +Jaida +Jaiden +Jocelin +Julisa +Nichole +Rhiannon +Rosalinda +Sheyla +Aisha +Elaina +Felicity +Irma +Janae +Juana +Kaylynn +Maddison +Maricela +Maxine +Meagan +Nathalia +Nicolette +Odalys +Rubi +Selina +Simran +Sky +Allie +Anette +Cayla +Corina +Devyn +Jacklyn +Jewel +Karly +Maile +Nadine +Nelly +Pauline +Raylene +Sonya +Stefanie +Tianna +Amani +Anita +Aryana +Connie +Dalila +Elianna +Joselin +Sariah +Azeneth +Bryana +Cara +Dahlia +Delia +Joanne +Kayleen +Kayley +Kristy +Kyleigh +Leanne +Lupita +Rory +Star +Abbey +Arleth +Bridgette +Callie +Dianna +Elyssa +Gisela +Ilene +Jackelyn +Janine +Joelle +Jolene +Kayli +Madisyn +Natalya +Sally +Shyann +Vivianna +Yasmeen +Brandi +Chelsey +Coral +Desteny +Devon +Kaili +Kali +Karime +Kaylah +Macie +Maliyah +Meredith +Ria +Rita +Rosario +Sanjana +Savana +Tamia +Yarely +Cinthia +Citlalli +Clare +Dora +Isabell +Jaylin +Kalani +Keila +Lissette +Mckayla +Milagros +Myra +Natalee +Presley +Regan +Rhea +Skyla +Whitney +Adeline +Alayna +Analise +Anjali +Anyssa +Belinda +Calista +Candice +Chantal +Evangelina +Kaela +Katlyn +Kaylyn +Kenna +Mina +Norma +Pearl +Adrienne +Anisa +Carlie +Danica +Desirae +Gemma +Gisel +Isha +Karely +Laurel +Lidia +London +Lyric +Marisela +Maryam +Melia +Natali +Nayely +Saira +Tatyana +Toni +Violeta +Yulisa +Anabella +Anastacia +Annabel +Bonnie +Christa +Destiney +Geraldine +Hallie +Hayden +Josefina +Kaliyah +Kelli +Makaila +Maricruz +Neida +Ryann +Selene +Ysabella +Zaira +Amaris +Amina +Ariadna +Brissa +Candy +Celina +Danae +Gizelle +Julieta +Lluvia +Marcella +Noa +Reanna +Saray +Shyanne +Abbigail +Alex +Alysia +Amira +Aubrie +Beverly +Cambria +Emerald +Emmalee +Gema +Joslyn +Kalia +Keyla +Lizet +Micah +Mirian +Nalani +Norah +Nyah +Pilar +Rosie +Shaina +Shayna +Adela +Aditi +Anai +Ananya +Ayla +Beatrice +Beyonce +Estela +Jaime +Jocelyne +Judy +Katia +Leyna +Lilyana +Lorraine +Madyson +Marlyn +Melinda +Mindy +Mira +Selah +Tiara +Yamilet +Yessica +Aleah +Astrid +Betsy +Colleen +Jackie +Jaidyn +Karolina +Keely +Keilani +Kristal +Lilah +Lizbet +Maci +Maryann +Milan +Priya +Rosalie +Rowan +Stevie +Tatianna +Taya +Unique +Zoie +Alexi +Alexys +Ally +Amalia +Analisa +Anisha +Aspen +Azul +Brook +Charlie +Colette +Davina +Diya +Esha +Jovanna +Keren +Leyla +Macey +Maleah +Miah +Naidelyn +Noelani +Olga +Parker +Rianna +Sydnie +Abbie +Adamaris +Anayeli +Anessa +Arlyn +Charity +Cherish +Cordelia +Dafne +Dorothy +Estella +Greta +Gwen +Halie +Ivanna +Jasleen +Jazmyne +Jiselle +Katerina +Katy +Kellie +Kendal +Leann +Lisbet +Lucille +Lyla +Noor +Oriana +Shaylee +Teagan +Yaneli +Yazmine +Zara +Anahy +Ashlie +Ayleen +Brigitte +Candace +Carlee +Carli +Chanel +Christian +Dayna +Deisy +Edna +Ema +Essence +Estephanie +Giana +Gisell +Gissell +Jaelynn +Jaylynn +Jennyfer +Josselyn +Kacey +Kalea +Lacy +Lorelei +Madisen +Meadow +Mila +Miya +Myla +Nallely +Nikita +Nya +Scarlet +Verenice +Yanira +Allyssa +Anamaria +Asha +Briseida +Cathy +Chiara +Corinne +Danika +Darla +Elvira +Emerson +Gisele +Giuliana +Gwenyth +Haven +Iman +Ireland +Jaquelyn +Justina +Lacie +Lillie +Loren +Lynn +Melani +Naidelin +Phoenix +Rayna +Sabina +Sequoia +Soleil +Susanna +Yaire +Yamileth +Zayra +Abigayle +Adelina +Alannah +Aliana +Alyna +Annalisa +Annmarie +Avalon +Brianne +Cassie +Christiana +Drew +Hilary +Ileana +Jasmyn +Jazlynn +Kailani +Karlie +Katheryn +Khushi +Lillianna +Magali +Malaya +Malaysia +Malena +Mara +Monserrath +Nayzeth +Reilly +Rhianna +Soledad +Soraya +Tierra +Vianney +Vivien +Xochilt +Abigale +Ada +Adamari +Annaliese +Britany +Carrie +Charisma +Clarice +Daija +Dawn +Emmy +Geneva +Ginger +Gwyneth +Jahaira +Jana +Jeniffer +Jennie +Karis +Karlee +Katelin +Kaylen +Keily +Kennedi +Klarissa +Lexus +Linnea +Marian +Marin +Nubia +Pricilla +Raina +Shakira +Stefany +Zahra +Aidan +Amirah +Arabella +Bernice +Cinthya +Dennise +Dina +Elia +Elliana +Evelynn +Francine +Haleigh +Idaly +Jaya +Jaycee +Jesse +Jessenia +Joceline +Kacie +Katya +Lori +Madalynn +Maeve +Marbella +Marlee +Maura +Michele +Mildred +Mollie +Pricila +Raegan +Rosaura +Saige +Tyra +Aislinn +Alexsandra +Alycia +Anh +Arianne +Aubree +Aya +Catrina +Chelsie +Ciera +Cloe +Dalilah +Dallas +Divya +Elsie +Hunter +Ilse +Izabelle +Kalena +Kaycee +Kierra +Laine +Leia +Lisset +Liza +Margot +Mariafernanda +Mariel +Mariyah +Noel +Odalis +Robin +Sana +Sirena +Taliyah +Tristen +Yanely +Ahtziri +Alexandrea +Angelita +Arleen +Bianka +Briza +Clarisa +Dayanna +Dolores +Elisha +Emeli +Emelie +Emery +Frankie +Harleen +Italia +Iyanna +Jacey +Janie +Jena +Joey +Joleen +Kailah +Karli +Kavya +Kayden +Keanna +Kelley +Kiersten +Laney +Laysha +Leslye +Lucie +Malina +Mayah +Mika +Milana +Milena +Misty +Monet +Moriah +Myah +Princesa +Rochelle +Romina +Ryleigh +Sarahy +Shyla +Stefani +Tanvi +Tristan +Zitlaly +Ailyn +Aliah +Aneesa +Anushka +Belle +Betty +Carley +Dasha +Delanie +Emi +Francisca +Gladis +Glenda +Haily +Ivana +Jayde +Jaylyn +Jenessa +Jesenia +Jessalyn +Joann +Kai +Kaleigh +Kalina +Kamille +Kaydence +Kimberley +Kristiana +Kya +Kyara +Lili +Lilyanna +Lyndsey +Madelyne +Maiya +Marianne +Mercy +Neyda +Patience +Robyn +Samanta +Suzette +Vera +Vivienne +Winnie +Yanet +Yoana +Zaria +Zulema +Abrianna +Aida +Alyssia +Annabell +Annelise +Anusha +Avril +Azalea +Bernadette +Cienna +Darya +Dianne +Eloise +Ivory +Jailyn +Jaylen +Jeslyn +Jessi +Jovana +Kamila +Keara +Keeley +Kenzie +Lailah +Leilany +Marta +Mason +Naya +Randi +Rosemarie +Shanti +Sofie +Sydni +Thea +Veronika +Vianca +Yara +Yelena +Yoselyn +Abbygail +Abygail +Acacia +Adrina +Akira +Alaysia +Alivia +Ambar +Arwen +Ashtyn +Bailee +Billie +Cailin +Chelsy +Dariana +Emalee +Emelyn +Farah +Farrah +Faviola +Giavanna +Hadley +Hennessy +Ines +Jaedyn +Jasmeen +Jayna +Jeannie +Journey +Kaelin +Katalina +Kaylani +Kayle +Kim +Kimberlee +Kristi +Kylah +Leena +Lesli +Lianna +Marla +May +Meera +Nellie +Neveah +Paulette +Priyanka +Sabine +Sade +Salina +Shauna +Sheridan +Sherry +Sunny +Valarie +Yaquelin +Adia +Aja +Alyza +Anel +Anneliese +Ariah +Ashton +Breanne +Brigette +Campbell +Cheryl +Dara +Daria +Divine +Elana +Emelia +Emili +Faye +Flora +Helene +Isyss +Izabel +Jaliyah +Janell +Janelly +Jayme +Jazzlyn +Jessika +Jesus +Jissel +Joan +June +Kirra +Kourtney +Lailani +Louise +Lucinda +Mari +Marysol +Minerva +Mirella +Mona +Myriam +Nailea +Paisley +Raelene +Rayleen +Sanai +Sayra +Shawna +Shira +Sinai +Sonja +Starr +Suzanna +Yadhira +Yulianna +Zainab +Adelaide +Adrianne +Aide +Alanis +Ali +Aline +Alora +Alysha +Anakaren +Anela +Annamarie +Ariella +Arlet +Armani +Averie +Chandler +Chase +Ciarra +Citlally +Consuelo +Darcy +Daysi +Doris +Eryn +Evalyn +Evette +Fanny +Franchesca +Haydee +Holland +Jalynn +Janely +Jannet +Jenelle +Jenesis +Jesica +Jodie +Kalyn +Karisma +Karley +Kathia +Kelsie +Kristie +Laylah +Leilah +Lela +Maegan +Maira +Marielle +Marjorie +Michell +Mirna +Nadya +Noemy +Ofelia +Prisila +Ramona +Rayne +Reece +Rina +Rosalyn +Saniya +Siobhan +Sunshine +Tamar +Tehya +Thania +Venus +Vienna +Xitlalic +Yesica +Yoseline +Adele +Alessia +Alexie +Alisson +Alliyah +Amairani +Amerie +Andria +Angeli +Angelika +Anjelica +Annemarie +Anoushka +Ariela +Ayden +Baylie +Bertha +Breann +Briseyda +Cailyn +Caitlynn +Cameryn +Carmela +Carson +Cecelia +Chantel +Clarisse +Cleo +Daja +Danya +Darby +Debbie +Dejah +Elayna +Elvia +Emme +Evelina +Gisella +Isaura +Jalissa +Jarely +Jaslyn +Jianna +Jordin +Josephina +Kaelynn +Kailynn +Kairi +Kalista +Kameron +Kari +Kaylene +Keana +Khloe +Lani +Leela +Leona +Lexy +Linette +Liyah +Lizzie +Mabel +Mai +Maren +Mariaelena +Melannie +Michel +Milca +Milla +Nika +Niya +Nola +Nyomi +Petra +Promise +Rebeka +Rena +Rosalind +Ryley +Sahar +Sanaa +Selma +Shani +Shivani +Shriya +Stephani +Sulema +Suzanne +Tea +Trish +Viktoria +Zaina +Zariah +Amberly +Anahit +Angelie +Anjolie +Aolani +Arden +Ariadne +Arisbeth +Ashely +Atziri +Audry +Bree +Breonna +Bryn +Cate +Chana +Charlee +Christal +Concepcion +Dani +Desire +Destini +Destinie +Dixie +Elva +Elysia +Emani +Emeline +Ester +Giulia +Harper +Heily +Hermione +Ixchel +Jaila +Jalen +Jalyn +Janel +Jaylee +Jeanelle +Jennah +Jizelle +Joely +Kaleah +Kalie +Kamilah +Khadija +Kimora +Kiran +Layne +Leana +Leonor +Libby +Lilli +Litzi +Lorelai +Lynda +Mahogany +Makaela +Mariaguadalupe +Maricarmen +Marlin +Martina +Mitzy +Montana +Myrka +Nahomi +Naia +Naomy +Nayla +Nereida +Nidia +Nikole +Nylah +Nyssa +Osiris +Richelle +Rosalia +Rosamaria +Sahara +Sakura +Samia +Sanya +Shana +Shantel +Sharlene +Shay +Shelly +Sheryl +Sindy +Skyy +Sol +Susie +Tala +Teresita +Terra +Tiffani +Uma +Vannessa +Vianna +Winter +Yuridia +Zitlali +Abriana +Adelyn +Adina +Adora +Adrian +Alyah +Amia +Anaiya +Angelena +Aniah +Arline +Arriana +Arya +Ashanty +Ashna +Audra +Aurelia +Averi +Ayah +Azaria +Bethanie +Bibiana +Brionna +Cailey +Carys +Daniel +Danyelle +Desiray +Destany +Devan +Deysi +Dyanna +Elexis +Elora +Elsy +Ember +Emelin +Erlinda +Evan +Evelia +Francis +Gaby +Gissele +Gretchen +Hannia +Hilda +Iyana +Jakelin +Jalyssa +Jamilet +Jamileth +Janna +Jayne +Jazlin +Jeannette +Jenae +Jisel +Joselyne +Julieanna +Kaeli +Karin +Kay +Kiya +Korina +Lessly +Lexis +Lilith +Lillyana +Livia +Lizett +Madelynne +Madilynn +Maisie +Maliah +Malika +Manuela +Mariajose +Marleen +Marlena +Maylin +Mayte +Melodie +Melony +Mercedez +Metzli +Mikala +Mikenna +Miroslava +Miyah +Monae +Monzerrat +Morelia +Mylee +Nandini +Nautica +Nayelli +Quetzalli +Quincy +Rachell +Raelynn +Raya +Rio +Roxy +Safa +Samiah +Samya +Sascha +Sela +Shae +Shianne +Shoshana +Shruthi +Sianna +Siya +Solana +Sonali +Tabatha +Tahlia +Tawny +Trina +Vannesa +Yamilex +Ysabel +Zion +Ailene +Aiyanna +Alanah +Alessa +Amarie +Amethyst +Amie +Amiya +Anaiah +Anali +Analiese +Angelic +Aranza +Araya +Audree +Aysha +Azalia +Becky +Betsabe +Breeanna +Bryce +Callista +Cesia +Charli +Chasity +Chaya +Christie +Cianna +Corrina +Corrine +Darian +Debora +Delila +Demi +Deziree +Divina +Ellery +Elly +Eloisa +Emmeline +Enya +Esme +Evangeline +Fallon +Genevie +Gurleen +Isadora +Jacinda +Jacquelynn +Jaimie +Jakeline +Jalene +Jasmyne +Jaycie +Jaymee +Jean +Jenevieve +Jill +Jorja +Joscelyn +Jose +Joslynn +Juliann +Kadence +Kailie +Kambria +Katerin +Kathrine +Kelis +Khadijah +Kiani +Kiarra +Kyanna +Lainey +Lanie +Leonela +Lilit +Lisandra +Lizabeth +Lizzet +Louisa +Mahalia +Makala +Marelyn +Mariella +Matilda +Mattie +Milly +Moira +Monika +Myrna +Nailah +Nariah +Naydelyn +Nicola +Nisha +Pooja +Raelyn +Rain +Rania +Remy +Rilee +Rosalba +Rosalina +Sachi +Samarah +Samaria +Saylor +Silvana +Sloane +Sriya +Stephania +Tarah +Treasure +Tyla +Vi +Vy +Yamila +Yamile +Zaida +Aanya +Aidee +Ailani +Akasha +Akemi +Alaya +Alexsis +Alexzandria +Alix +Allana +Alyssamarie +Amalie +Amiyah +Amrita +Andie +Andra +Angelia +Annalee +Anthony +Antoinette +Arlett +Arushi +Ashlin +Ashlynne +Austin +Ayiana +Baleria +Blythe +Brookelyn +Caleigh +Candelaria +Caren +Catarina +Cathryn +Chanelle +Charley +Chyanne +Ciana +Cortney +Cristy +Daijah +Darleen +Delina +Devina +Dezirae +Elani +Elicia +Ellyse +Emilly +Erendira +Estefanie +Eugenia +Fatimah +Fayth +Francia +Freya +Gigi +Hanah +Heavenly +Henna +Huda +Indigo +Indira +Inez +Itzayana +Izabela +Jackelin +Jacquelyne +Jamya +Janai +Jania +Jaylah +Jelena +Jenni +Jersey +Jisela +Jodi +Joi +Julieann +Julyssa +Kacy +Kaileigh +Kaily +Kaira +Kalei +Kalissa +Kamari +Kaycie +Keilah +Khalia +Kinsey +Kloe +Kristyn +Kyle +Kyndal +Laniya +Leandra +Lillyanna +Liz +Lora +Mackenna +Makaylee +Maranda +Marielena +Mariya +Maureen +Meg +Megha +Meilani +Melanny +Micayla +Mirka +Naila +Nicolle +Nova +Ophelia +Raeann +Rashel +Rayann +Reanne +Renata +Rubie +Rut +Sahana +Saleen +Santana +Sedona +Sheccid +Shelbie +Sherlin +Sherly +Simona +Stacie +Suhani +Sujey +Symphony +Taliah +Tamera +Tanisha +Tayla +Teah +Tenaya +Therese +Trinidad +Varsha +Venessa +Yaneth +Yatziri +Zenia +Zowie +Adena +Adi +Aiko +Ailin +Aime +Airam +Aishwarya +Alejandro +Alexes +Alianna +Alona +Alyce +Alyse +Alysse +Amal +Ami +Aminah +Amparo +Anabell +Analicia +Ania +Anisah +Annamaria +Arianah +Aryssa +Ashleen +Ashlei +Asucena +Asusena +Audrie +Ayesha +Bianey +Brea +Bria +Bridgett +Brynna +Caley +Calla +Camelia +Cassia +Catelyn +Caylee +Chance +Charis +Cintia +Colby +Constance +Daiana +Daisey +Daisha +Danitza +Darlyn +Daysha +Deana +Delyla +Destine +Dulcemaria +Dyani +Elina +Elizabet +Emiley +Emmaline +Erykah +Evelyne +Florence +Gabby +Gardenia +Gianni +Haruka +Hayle +Hellen +Honesty +Ilana +Ileen +Ilianna +Illiana +Imaan +Imari +Iran +Itzia +Jael +Jailynn +Jayline +Jaymie +Jazelle +Jazzmine +Jeanine +Jina +Jolee +Jolina +Joselynn +Joya +Juliett +Kaci +Kady +Kamea +Karah +Karmen +Karyn +Karyssa +Katherin +Kathlyn +Kaytlin +Kelsi +Keona +Keya +Kirstin +Kori +Kyli +Kyrah +Lane +Leeann +Lilianne +Lilyan +Lilyann +Liseth +Lois +Luciana +Lucila +Lyndsay +Macayla +Madelin +Makaylah +Malaika +Mansi +Marcelina +Maricella +Maritsa +Marleni +Maryrose +Mei +Melyssa +Michael +Moncerrat +Myranda +Nichelle +Niki +Nour +Odette +Parisa +Penny +Portia +Priscella +Prisilla +Quetzaly +Reem +Reena +Rheanna +Rishika +Rosio +Saloni +Saniah +Savina +Shanna +Shantal +Shayne +Shelley +Siana +Spencer +Sterling +Tallulah +Tegan +Tenley +Tiarra +Tristin +Yenifer +Yisel +Yocelyn +Ysabelle +Zayla +Zenaida +Zulma +Aaliya +Aalyah +Abbigale +Abigael +Adalyn +Agnes +Alba +Alea +Alexcia +Alexxis +Aleyda +Alin +Alizah +Alvina +Alyanna +Amaiya +Amarah +Amariah +Ammy +Amrit +Anacristina +Andreina +Angelle +Angely +Angelyna +Anneke +Arcelia +Ariane +Ariyana +Ariyanna +Arizbeth +Asma +Avani +Aviana +Aziza +Bebe +Berlin +Beth +Bobbi +Brandie +Brieanna +Bryan +Caelan +Caris +Cecily +Celest +Chantelle +Cherry +Chevelle +Christopher +Clementine +Corissa +Cydney +Daisie +Dajah +Dasia +David +Dayanira +Dayra +Deisi +Devynn +Deyanira +Dinah +Domonique +Donya +Dyana +Elijah +Elli +Elliott +Emelly +Emmely +Eriana +Estephany +Eternity +Evie +Florencia +Gabriel +Genessis +Gracelyn +Gricelda +Hafsa +Hali +Harlee +Harlie +Heydi +Hina +Idalia +Irais +Irina +Ismerai +Italy +Itzell +Jacinta +Jailene +Jamila +Janaya +Janett +Janis +Janiyah +Janneth +Jazzlynn +Jeanie +Jeanne +Jordana +Joshlyn +Joycelyn +Jubilee +Julian +Kalee +Kaleena +Kareli +Karena +Karol +Karsyn +Kathya +Kattie +Kaylea +Kaytlyn +Keala +Keiana +Kennia +Keyana +Keziah +Kiah +Kimberli +Kimia +Kitana +Kiyah +Kora +Kyah +Kylei +Kyrstin +Lamya +Larisa +Lelani +Lesslie +Lezly +Londyn +Lorna +Malak +Margaux +Mariadelosang +Mariaisabel +Maribella +Marilynn +Marion +Marleny +Marlo +Marwa +Maryah +Maryanne +Mattison +Mayerli +Maylene +Mayrin +Mea +Meaghan +Meena +Meliza +Merissa +Michaella +Midori +Mikyla +Miryam +Nahomy +Naidely +Najah +Navaeh +Navya +Nayana +Nayelly +Niamh +Nicki +Nikhita +Nitya +Niyah +Oceana +Olive +Pallavi +Pia +Polina +Ravyn +Rian +Riana +Rileigh +Risa +Romy +Ronnie +Roslyn +Roxie +Saida +Sailor +Salem +Sania +Shanya +Shirin +Siera +Sitlaly +Skylee +Sneha +Socorro +Steffany +Susannah +Sylvie +Tasneem +Tate +Tayah +Teri +Terry +Thais +Theodora +Topanga +Tricia +Trinidy +Triniti +Vallery +Vania +Veda +Viviann +Vivianne +Waverly +Wynter +Yahayra +Yailin +Yaira +Yennifer +Yissel +Yohana +Yuri +Yuritzi +Zia +Zinnia +Zoee +Zuri +Aaliah +Abagail +Adalia +Adreanna +Agustina +Aiden +Ailish +Aine +Aislynn +Akanksha +Akayla +Alahna +Alayah +Aleana +Aleen +Aleigha +Aleksa +Alexander +Alexya +Aleyah +Allegra +Allysa +Alyana +Amaia +Amairany +Amaria +Amayah +Amna +Amyah +An +Anaid +Analia +Analy +Andreana +Andrew +Angelly +Anjelina +Anjolina +Anmol +Annel +Arelis +Arelys +Ari +Arlin +Arpi +Atziry +Aubry +Austyn +Avianna +Avigail +Avneet +Aylene +Ayline +Aysia +Bahar +Berenize +Berlyn +Blake +Bobbie +Brandon +Briann +Caden +Caila +Caitlan +Calli +Calliope +Camden +Capri +Carmina +Carolyne +Carolynn +Carter +Cathleen +Caylin +Celestina +Charisse +Charmaine +Cherokee +China +Chloee +Chyna +Collette +Constanza +Cooper +Corinna +Corrin +Dajanae +Dayrin +Debra +Dena +Denia +Denice +Deserie +Desirey +Destanie +Dior +Elan +Elida +Elisia +Elizah +Ellianna +Ellis +Elysa +Elyza +Eman +Emmily +Emoni +Erandi +Estephania +Esthela +Evonne +Fabiana +Faythe +Fernando +Fiorella +Fiza +Gaia +Geena +Genna +Getsemani +Gianina +Gimena +Gissela +Giulianna +Glory +Gwenivere +Haili +Halia +Halley +Harjot +Haylei +Hayleigh +Heba +Hollie +Ida +Ileanna +Imelda +Irelynn +Irie +Irlanda +Ishani +Isobel +Ivon +Jadelyn +Jaeda +Jaela +Jahnavi +Jaileen +Jamilette +Janiya +Jaydin +Jazleen +Jazz +Jazzmin +Jeanna +Jonathan +Jorden +Jordynn +Josalyn +Josette +Jules +Julieana +Justyce +Kaile +Kailea +Kallie +Kameryn +Kareena +Karine +Karyna +Kassie +Katharina +Kathie +Kaydee +Kaylana +Kaytlynn +Kazandra +Keiko +Kelsy +Kendyl +Kennya +Kera +Kerri +Kerry +Kierstin +Klara +Krishna +Krysten +Kyler +Lacee +Lael +Laisa +Laya +Leeanne +Leilanie +Leiloni +Leslee +Lillyan +Liv +Luci +Madai +Madelaine +Magnolia +Maha +Mailani +Maite +Makenzi +Makyla +Malana +Malayah +Malin +Malorie +Manasa +Marely +Mariadelcarmen +Marilin +Marily +Maritere +Marrissa +Marygrace +Marylin +Mattea +Matthew +Mayela +Mazie +Meghana +Mekayla +Mellanie +Merlin +Meya +Micaiah +Michela +Mikaila +Miley +Miliani +Monserat +Monserratt +Mykayla +Nala +Nanci +Naydeline +Nayelie +Naylea +Nazareth +Niah +Nidhi +Nohemi +Novalee +Octavia +Olyvia +Persephone +Preslie +Pyper +Racheal +Radhika +Rana +Raylynn +Rebecka +Rene +Rhyan +Rida +Rivers +Roberta +Roni +Rosaisela +Rosalva +Rosy +Roxann +Ruhi +Ryanne +Saba +Sakshi +Salome +Samiyah +Sammantha +Sammi +Samone +Saniyah +Sarena +Scout +Semaj +Serafina +Shaelyn +Shaila +Shanell +Shanelle +Shaniya +Shannel +Shaya +Shaye +Shiann +Shiloh +Sloan +Solei +Sommer +Starla +Stormy +Sumaya +Sutton +Symone +Talisa +Talitha +Tanaya +Taniya +Teanna +Tera +Teya +Tiffanie +Tisha +Trinitee +Ursula +Vaishnavi +Vani +Wendi +Xiana +Xochil +Yael +Yahira +Yocelin +Yui +Yuki +Yzabella +Zahira +Zamira +Zarah +Zarina +Zayda +Zipporah +Zora +Zoya +Zurisadai +Aashna +Aastha +Adaly +Adamary +Aeryn +Akilah +Alasia +Alayjah +Aleesa +Alejandrina +Aleksandra +Alexxa +Alexyss +Alinah +Alitzel +Allissa +Althea +Alynna +Amayrani +Amena +Amiah +Anamarie +Ananda +Anasofia +Anay +Angeleah +Angelee +Angelene +Angella +Anica +Ankita +Annet +Anneth +Annissa +Antonella +Anvi +Aoife +Ara +Arantxa +Areana +Areanna +Aries +Aris +Arlen +Asiah +Asuzena +Atalia +Athina +Autum +Bayleigh +Brandee +Breauna +Brianda +Brooklin +Camile +Camily +Carlyn +Carmella +Chandra +Charlette +Chenoa +Chloie +Chole +Christianna +Ciena +Claudette +Cloey +Crista +Cytlaly +Czarina +Daizy +Danette +Daphney +Dasani +Dayan +Deirdre +Delicia +Della +Denae +Denali +Dulse +Dyamond +Dylann +Echo +Elda +Eleana +Eleni +Elinor +Ellee +Elliot +Ellison +Emiliana +Emmalie +Emmaly +Emmi +Erandy +Eric +Erick +Eryka +Erynn +Eveline +Evony +Fionna +Franceska +Gena +Georgette +Georgiana +Giovana +Gracey +Gracy +Grisel +Gweneth +Hadassah +Haide +Haidyn +Halina +Han +Harmonie +Harneet +Herlinda +Hermelinda +Hosanna +Ila +Ilyssa +Ishita +Isla +Issis +Iva +Ivania +Iveth +Jacie +Jacklynn +Jadah +Jadelynn +Jahzara +Jaidin +Jalena +Jamia +Janea +Jaritza +Jatziri +Jazel +Jenica +Jennica +Jensen +Jeralyn +Jessy +Jezabel +Jezebel +Joei +Johnna +Joie +Jossie +Jourdan +Jozlyn +Juniper +Kadyn +Kaelee +Kailen +Kala +Kalen +Kaliah +Kalin +Kallista +Kalynn +Kalyssa +Kalysta +Kamora +Kamya +Kana +Kandace +Kaori +Karleigh +Karoline +Katheryne +Katilyn +Kaylamarie +Kaylei +Kaylia +Kealani +Keaton +Keiry +Kelci +Kenadie +Kerrigan +Keyli +Kilee +Kimberlin +Kimi +Kimiko +Komal +Kylea +Kyrsten +Lakshmi +Laureen +Leigh +Leora +Lexia +Leylani +Libni +Lida +Lillia +Lillianne +Lilyanne +Lindy +Linsey +Liora +Liset +Lisseth +Lizzette +Lolita +Lucine +Luis +Luzmaria +Lyna +Lynna +Lysette +Madina +Madisson +Madysen +Mae +Magen +Mailey +Malanie +Malea +Manar +Mandi +Marcia +Margo +Marguerite +Mariadejesus +Marilu +Mariposa +Maris +Maryana +Marycarmen +Maryn +Maryssa +Matea +Mathilda +Matilde +Maylee +Mayleen +Mel +Melodee +Mena +Merina +Metztli +Mikaylah +Minh +Muskaan +Mylie +Nada +Naiya +Naja +Nanette +Naomie +Narissa +Navneet +Neda +Nereyda +Neriah +Neva +Nevada +Nhi +Nicky +Nijah +Ninel +Niobe +Niurka +Nivia +Nuria +Nuvia +Ocean +Opal +Oscar +Parris +Preeti +Rae +Ramandeep +Ramya +Raniyah +Rayanna +Rayven +Razan +Rhiana +Riddhi +Rivka +Roselin +Rosita +Rylan +Saanvi +Sabreena +Sahian +Sahira +Sahiti +Sakina +Samhita +Samuel +Sanaya +Saryah +Seanna +Sera +Shabnam +Shaden +Shaelynn +Shalini +Shamya +Shealyn +Shefali +Shelbi +Shelsey +Shruti +Sierrah +Sincere +Siomara +Siri +Sonora +Sreya +Srinidhi +Sruthi +Staci +Taja +Tamya +Tatyanna +Thelma +Timia +Tobi +Torrey +Torri +Tyana +Unknown +Valeri +Veena +Venice +Verena +Viana +Vianka +Vickie +Vina +Vittoria +Willa +Xenia +Xitlalli +Yamilette +Yana +Yasmina +Yazmeen +Yenny +Yoanna +Yohanna +Yunuen +Zaniya +Zianna +Zoila +Zuleima +Zuly +Aaron +Aarushi +Adara +Addie +Adelaida +Adelle +Adithi +Adylene +Agatha +Aila +Aira +Aislin +Aisling +Akane +Akansha +Akina +Alan +Aleeza +Alesandra +Alesia +Alexiz +Aleyna +Alicea +Aliciana +Alisia +Alizae +Alizay +Allexa +Allysia +Almadelia +Alonna +Alya +Alyissa +Amberlyn +Ameena +Ameerah +Amera +Amerika +Amilia +Amisha +Anagha +Anahita +Analee +Analilia +Analyn +Analyse +Andreah +Anelise +Angele +Angeleena +Angeni +Anicia +Anja +Annaka +Annalia +Annalina +Annaly +Annete +Anny +Anushree +Anyah +Aqsa +Arelly +Arieana +Arisa +Arlyne +Arrianna +Ashby +Ashia +Ashlen +Ashleynicole +Athziry +Aubriana +Aubrianna +Aubrielle +Audrianna +Avantika +Aydan +Ayme +Ayva +Azariah +Azia +Azusena +Baily +Banesa +Bayley +Beau +Betzabeth +Bibianna +Blair +Breeana +Breena +Brennan +Brian +Brigit +Britni +Britny +Briyana +Bronwyn +Brookelynn +Bryannah +Brynne +Bryonna +Cady +Caeli +Calie +Calysta +Carleen +Carlotta +Casie +Chantell +Chastity +Chayse +Christabel +Christi +Claryssa +Coco +Cori +Corin +Cristian +Cristiana +Cyana +Cyndi +Daelynn +Dagny +Dailyn +Dakotah +Dalena +Dalya +Damariz +Daniya +Darlin +Darling +Daylene +Deanne +Deeana +Delany +Deniz +Desaray +Deseree +Desteni +Destenie +Devany +Devorah +Dezaray +Diego +Dillan +Doreen +Dymond +Ebelin +Edie +Elanor +Elba +Elleanna +Elma +Elodie +Emiko +Emmalynn +Emmie +Emonie +Emy +Erianna +Ernestina +Estelle +Evalynn +Evy +Ezra +Fiorela +Florentina +Flynn +Galina +Geanna +Genavieve +Genessa +Gizzelle +Grabiela +Gracelynn +Gracen +Graciella +Grayce +Guillermina +Guinevere +Gwendalyn +Haiden +Haileigh +Hala +Hanan +Hayde +Hayli +Heidie +Honor +Ilani +Ileene +Ilyana +Ina +Iriana +Isaiah +Isamar +Issabella +Itsel +Itxel +Itza +Ivan +Ivett +Jacelyn +Jacy +Jaeden +Jaelene +Jahayra +Jaide +Jailah +Jailine +Jalani +Jami +Jamiah +Jamilah +Janay +Janeli +Janiah +Jannett +Jannette +Jaquelyne +Jared +Jareli +Jaslin +Jason +Jayah +Jayani +Jaydn +Jazlyne +Jeannine +Jenavie +Jennessa +Jeraldine +Jerica +Jessa +Jeweliana +Jewelissa +Jewels +Jiana +Jilian +Jisselle +Jocelynne +Joshua +Joslin +Josseline +Josselyne +Jude +Judit +Juliane +Julietta +Julliana +Julyana +Kadie +Kaelah +Kaiah +Kaithlyn +Kalayah +Kaliya +Kalli +Kanani +Karelly +Karicia +Karizma +Karma +Katelynne +Katerine +Katey +Kati +Katiana +Katlin +Kayanna +Kaylan +Keilana +Keili +Kelia +Kemberly +Kendel +Keri +Kevin +Keyara +Khushpreet +Kiele +Kierah +Kimani +Kindra +Kiyomi +Kobi +Kodi +Koral +Korinne +Koryn +Krysta +Krystina +Krystle +Kyleen +Kyley +Kymberly +Kyndall +Lailany +Laina +Lainie +Laiza +Lanae +Latrice +Laurie +Lavanya +Lelia +Lenore +Leonna +Leyah +Liah +Lian +Lianne +Liliann +Lilibeth +Liliya +Livier +Lorie +Lorien +Lorissa +Love +Luana +Lucienne +Lulu +Lux +Lylah +Lynne +Lynnette +Mackayla +Maelyn +Magdalene +Mahala +Maiah +Maija +Maily +Maisy +Makaya +Makenzy +Malani +Mali +Malissa +Manal +Manpreet +Manvir +Mar +Maraya +Marcy +Mariadelaluz +Marialuisa +Mariann +Marifer +Mariko +Marilee +Marisabel +Marly +Maryan +Marycruz +Mayeli +Mayson +Meah +Meghna +Mehek +Mekenzie +Melaney +Mele +Melenie +Meleny +Melonie +Merary +Mickayla +Mimi +Minna +Mirely +Misha +Mitra +Mitzi +Moncerat +Muskan +Mykaela +Mylene +Nadeen +Nairi +Naizeth +Najae +Nanami +Naraly +Nataley +Natally +Naydeli +Neena +Nelida +Nely +Nemesis +Neomi +Netanya +Nicholle +Nila +Niomi +Nirvana +Nisa +Nitza +Nivea +Noah +Nohely +Noreen +Oksana +Patrice +Patsy +Patty +Payal +Perris +Prerana +Prescilla +Prisma +Puneet +Queenie +Quetzali +Racquel +Raeanna +Raeleen +Raena +Raevyn +Rafaela +Raisa +Rani +Ranya +Reign +Remi +Renae +Reylene +River +Rohini +Rori +Rosalee +Rosella +Roya +Ryanna +Saffron +Salena +Samar +Samarra +Samatha +Samaya +Samirah +Samyra +Sanah +Sandhya +Sanika +Sapphire +Sawyer +Sayla +Sayuri +Scarleth +Secilia +Seidy +Selia +Selin +Senna +Serene +Serinity +Setareh +Seven +Shaliyah +Shalynn +Shamira +Shaniah +Shanice +Shantall +Shantelle +Sharai +Sharleen +Shasta +Shaylin +Shelsy +Shir +Shyan +Siara +Sierah +Simrat +Sindhu +Sitlali +Sivan +Sofiya +Solange +Sole +Sona +Soriah +Srishti +Stephenie +Sumedha +Swati +Syra +Taelor +Taeya +Taiz +Talina +Taline +Tamaya +Taniah +Tasha +Tesla +Tiera +Tierney +Tifanny +Tillie +Tiya +Tonya +Torie +Tova +Tracey +Traci +Tracie +Trang +Triana +Tristyn +Trixie +Una +Uriah +Vallerie +Vannia +Verenise +Vianne +Vicki +Viola +Vivica +Wanda +Wesley +Xochilth +Yahir +Yajayra +Yakelin +Yanelli +Yanitza +Yarissa +Yecenia +Yerania +Yuka +Yumi +Yuna +Yuvia +Zamantha +Zaniyah +Zariyah +Zaynab +Zola +Zoraya +Emily +Ashley +Samantha +Isabella +Natalie +Alyssa +Emma +Sophia +Jessica +Jasmine +Elizabeth +Madison +Jennifer +Alexis +Kimberly +Andrea +Abigail +Hannah +Sarah +Vanessa +Mia +Stephanie +Brianna +Olivia +Michelle +Kayla +Grace +Leslie +Maria +Victoria +Jocelyn +Diana +Lauren +Sofia +Alexandra +Angelina +Hailey +Katherine +Nicole +Destiny +Melissa +Evelyn +Chloe +Ava +Melanie +Jacqueline +Ariana +Julia +Alondra +Taylor +Daniela +Alexa +Sydney +Isabel +Kaitlyn +Rachel +Daisy +Ella +Amanda +Angela +Megan +Gabriela +Valerie +Maya +Giselle +Savannah +Kylie +Amy +Valeria +Audrey +Briana +Allison +Anna +Faith +Esmeralda +Marissa +Arianna +Lily +Natalia +Adriana +Crystal +Ruby +Karla +Karen +Mariana +Katelyn +Zoe +Alejandra +Celeste +Angelica +Jasmin +Brenda +Kaylee +Brooke +Jazmin +Sara +Haley +Trinity +Danielle +Jade +Rebecca +Guadalupe +Miranda +Karina +Madeline +Ana +Gabriella +Genesis +Paige +Catherine +Leah +Makayla +Jenna +Lizbeth +Kelly +Jordan +Aaliyah +Mariah +Morgan +Sierra +Liliana +Juliana +Naomi +Cynthia +Riley +Tiffany +Cassandra +Amber +Alexia +Bianca +Sabrina +Claire +Christina +Isabelle +Katie +Alicia +Monica +Wendy +Joanna +Kate +Vivian +Erika +Laura +Priscilla +Veronica +Carolina +Emely +Sandra +Nancy +Desiree +Lillian +Fatima +Nevaeh +Amelia +Camila +Yesenia +Mackenzie +Julianna +Breanna +Cindy +Mary +Leilani +Jazmine +Julissa +Charlotte +Gianna +Kassandra +April +Denise +Erin +Gabrielle +Itzel +Avery +Elena +Paris +Perla +Caroline +Jamie +Nadia +Paola +Alexandria +Mya +Sophie +Angie +Maritza +Nayeli +Alana +Summer +Angel +Eva +Viviana +Brooklyn +Shelby +Anahi +Chelsea +Marlene +Autumn +Marisol +Jada +Clarissa +Melody +Monique +Bailey +Paulina +Ximena +Ariel +Cecilia +Serena +Mikayla +Cassidy +Aliyah +Kiara +Bella +Kathryn +Claudia +Janet +Alina +Daniella +Dulce +Erica +Miriam +Nataly +Tatiana +Jimena +Yasmin +Aileen +America +Camille +Leila +Caitlin +Kylee +Madelyn +Marina +Carmen +Julie +Lindsey +Cheyenne +Molly +Iris +Lesly +Keira +Ashlyn +Delaney +Jordyn +Layla +Eliana +Kennedy +Katrina +Elise +Jillian +Caitlyn +Gisselle +Kendall +Serenity +Dayanara +Irene +Isabela +Kyla +Natasha +Sadie +Alison +Cristina +Fiona +Patricia +Lucy +Noemi +Peyton +Raquel +Rylee +Rosa +Bethany +Fernanda +Heidi +Jenny +Malia +Sarai +Araceli +Kiana +Stella +Britney +Courtney +Teresa +Zoey +Carly +Ashlee +Helen +Margaret +Amaya +Aurora +Christine +Josephine +Lucia +Krystal +Yadira +Aubrey +Madeleine +Skylar +Hanna +Athena +Kira +Joselyn +Arely +Payton +Yvette +Kailey +Lindsay +Ruth +Selena +Gracie +Ellie +Lizeth +Kelsey +Monserrat +Laila +Allyson +Esther +Sasha +Nina +Reese +Brittany +Gloria +Kaylie +Kyra +Rubi +Elisa +Cristal +Eden +Hope +Jaqueline +Kaitlin +Tania +Litzy +Jayden +Linda +Estrella +Shannon +Annie +Lydia +Mayra +Savanna +Heaven +Alma +Annika +Janelle +Marilyn +Melany +Roselyn +Samara +Abby +Bryanna +Clara +Izabella +Judith +Nathalie +Sonia +Adrianna +Alessandra +Carla +Reagan +Alissa +Hayley +Makenna +Lilly +Lizette +Rebekah +Mariela +Marisa +Ivy +Reyna +Anika +Alice +Heather +Tara +Brisa +Haylee +Bridget +Delilah +Stacy +Yareli +Larissa +Luz +Camryn +Eliza +Jaylene +Annabelle +Genevieve +Kristina +Lorena +Janessa +Katelynn +Kristen +Luna +Martha +Mckenna +Daphne +Kathleen +Lesley +Dana +Talia +Danna +Frida +Jadyn +Johanna +Maribel +Sherlyn +Dayana +Cameron +Lana +Rose +Arlene +Hazel +Jaden +Tessa +Eileen +Jessie +Annette +Asia +Dakota +Lisa +Stephany +Violet +Anastasia +Edith +Francesca +Galilea +Sage +Scarlett +Charlize +Jacquelyn +Kaya +Sharon +Citlali +Holly +Isis +Simone +Carissa +Celine +Lola +Nora +Belen +Cadence +Piper +Rylie +Sienna +Angelique +Pamela +Susana +Darlene +Eleanor +Emilie +Georgia +Graciela +Leticia +Phoebe +Yuliana +Helena +Jane +Noelle +Sarahi +Hana +Mikaela +Renee +Emilia +Juliet +Nia +Rebeca +Rocio +Valentina +Mallory +Maryjane +Mercedes +Michaela +Amelie +Casey +Melina +Paula +Ryan +Dominique +Joy +Tanya +Addison +Aimee +Diamond +Joana +Meghan +Marie +Yasmine +Dalia +Rosemary +Aracely +Catalina +Elle +Fabiola +Kaylin +Dylan +Juliette +Lila +Paloma +Sandy +Skyler +Tiana +Evelin +Ingrid +Skye +Alize +Areli +Damaris +Diane +Hailee +Justine +Kirsten +Macy +Mckenzie +Aniya +Esperanza +Maggie +Makena +Penelope +Heidy +Karissa +Kenia +Roxana +Jayla +Kaia +Kenya +Lena +Lisette +Makenzie +Xochitl +Alaina +Ciara +Giovanna +Kendra +Yvonne +Berenice +Carina +Jazlyn +Lilliana +Precious +Thalia +Gina +Julianne +Kiera +Salma +Yazmin +Kara +Roxanne +Tatum +Xiomara +Yajaira +Yoselin +Abril +Blanca +Deanna +Elaine +Emilee +Kaila +Kasandra +Lexi +Anya +Brenna +Carolyn +Kathy +Ashlynn +Elisabeth +Iliana +Janice +Kiley +Lauryn +Lea +Raven +Shayla +Angeles +Beatriz +Destinee +Sidney +Susan +Yahaira +Liana +Maia +Selene +Alisha +Anabel +Anissa +Ellen +Jolie +Kamryn +Marley +Nikki +Sheila +Yessenia +Aylin +Joyce +Kailyn +Laisha +Lilian +Micaela +Rachael +Tabitha +Taryn +Alayna +Cierra +Kassidy +Nathaly +Virginia +Aisha +Brittney +Casandra +Jenifer +Margarita +Reina +Xitlali +Alyson +Aniyah +Citlaly +Estefania +Eunice +Jackeline +Jayleen +Johana +Lina +Donna +Jaiden +Luisa +Tamara +Theresa +Tina +Adilene +Brooklynn +Flor +Haylie +Jeanette +Lilia +Xitlaly +Harmony +Hillary +Kaitlynn +Karime +Princess +Ashly +Gwendolyn +Jayda +Joseline +Silvia +Ainsley +Aleena +Amara +Anne +Astrid +Brandy +Briseyda +Elyse +Estefani +Frances +Gladys +Kayleigh +Magdalena +Marianna +Savanah +Shreya +Alanna +Alena +Anaya +Annabella +Belinda +Grecia +Lia +Shirley +Alisa +Aria +Cali +Dania +Geraldine +Kailee +Kali +Lara +Liberty +Marlen +Siena +Yolanda +Allie +Angeline +Nadine +Riya +Stacey +Ivette +Josie +Lexie +Madelynn +Nelly +Valery +Celia +Kaley +Mireya +Nathalia +Ryann +Alexus +Arielle +Ashleigh +Deborah +Georgina +Marcela +Mina +Nicolette +Priscila +Yaritza +Alani +Arlette +Ayanna +Barbara +Carol +Denisse +Dianna +Elsa +Imani +Julisa +Kaelyn +Kristine +Lourdes +Mariam +Montserrat +Pearl +Tyler +Yarely +Adeline +Aliza +Annabel +Azucena +Brielle +Brynn +Kaydence +Norma +Amani +Amari +Gia +Lucille +Maddison +Rosalinda +Sylvia +Teagan +Callie +Diya +Julieta +Kadence +Keila +Tess +Alysa +Amira +Amya +Breana +Deja +Gillian +Janeth +Joanne +Kayley +Kianna +Madalyn +Melisa +Miracle +Sally +Simran +Anabella +Aryanna +Coral +Dalila +Devyn +Halle +Janette +Jazmyn +Jocelynn +Laci +Lisbeth +Maricela +Nyla +Tracy +Vanesa +Viridiana +Yulissa +Bryana +India +Janae +Kalea +Kendal +Kristin +Presley +Tori +Trisha +Alia +Ani +Annalise +Charlene +Cora +Eve +Hilary +Jolene +Kaylynn +Madisyn +Maile +Rhea +Selina +Anita +Lupita +Melinda +Noelia +Quinn +Regan +Regina +Samira +Aliya +Amaris +Arleth +Estefany +Gizelle +Jaelyn +Jaquelin +Jewel +Kasey +Madilyn +Nichole +Calista +Chanel +Chantal +Cheyanne +Felicity +Jaclyn +Jacquelin +Krista +Natalya +Rosario +Tia +Zoie +Briseida +Drew +Elyssa +Jaylin +Katharine +Kayli +Kyleigh +Leanna +Lilianna +Lluvia +Magaly +Noelani +Ria +Yamilet +Anabelle +Camilla +Chiara +Connie +Corina +Danica +Jasmyn +Kayleen +Kiersten +Lidia +Lucero +Melia +Nayely +Parker +Rachelle +Rhiannon +Shania +Sheyla +Willow +Amalia +Ayla +Cassie +Cielo +Elaina +Gissel +Justice +Kalani +Karly +Karyme +Macie +Milan +Mira +Rita +Roxanna +Vivianna +Yulisa +Aiyana +Betzaida +Cambria +Charlie +Elianna +Isela +Kaiya +Keyla +Lilyana +Marisela +Neha +Raylene +Rowan +Unique +Zaira +Alexsandra +Candace +Citlalli +Devin +Devon +Dorothy +Elissa +Irma +Jacklyn +Joelle +Kamila +Katarina +Katia +Lynette +Mara +Mckayla +Meredith +Miah +Noor +Sariah +Sarina +Sydnee +Ally +Aryana +Carlie +Christy +Clare +Desteny +Hallie +Hayden +Isabell +Juana +Logan +Marian +Tammy +Toni +Vianey +Whitney +Yaretzi +Adamaris +Alivia +Anisa +Antonia +Ayana +Beverly +Cinthia +Dahlia +Delia +Evangelina +Joselin +Karlee +Katy +Kaylah +Kaylyn +Lacey +Lillie +Madyson +Mila +Tayler +Yadhira +Abbey +Aida +Anneliese +Asha +Betsy +Cayla +Ciera +Ebony +Gisela +Griselda +Jocelyne +Kaela +Kailani +Leanne +Lizet +Mandy +Marcella +Pilar +Saray +Adelina +Alexys +Anjali +Anyssa +Carley +Dalilah +Destiney +Gisel +Juanita +Kristy +Luciana +Milagros +Nalani +Nallely +Raina +Saniya +Shyanne +Soleil +Sonya +Taliyah +Tiara +Aleah +Aliah +Baylee +Beatrice +Bridgette +Celina +Darla +Desirae +Ericka +Ivanna +Kacey +Kalia +Kaliyah +Katlyn +Lilah +London +Ryleigh +Soraya +Tatyana +Violeta +Yaneli +Anahy +Ashely +Brissa +Colleen +Corinne +Danika +Dayanna +Estella +Harley +Jazlynn +Kaili +Karlie +Lesli +Leyla +Maci +Miya +Natali +Norah +Olga +Pauline +Pricilla +Rayna +Rosie +Serina +Shea +Yessica +Allyssa +Analise +Ashanti +Beyonce +Cara +Colette +Felicia +Hailie +Ilene +Ivana +Joslyn +Katya +Kellie +Kenna +Lorelei +Lyla +Maliyah +Moriah +Myra +Phoenix +Saira +Shayna +Skyla +Star +Tianna +Vicky +Ananya +Anette +Arabella +Ayleen +Azalea +Candice +Cecelia +Cherish +Dafne +Giana +Harper +Ireland +Katelin +Kaylene +Keilani +Kelsie +Leia +Lisset +Marjorie +Marlee +Maryam +Nya +Sabina +Stefanie +Trista +Adrienne +Alex +Alexi +Aspen +Belle +Candy +Cathy +Christiana +Eloise +Elsie +Frankie +Greta +Gwyneth +Karely +Laysha +Lexy +Marlyn +Melani +Michele +Millie +Mindy +Myla +Natalee +Neida +Raegan +Savana +Shyann +Stefany +Suzette +Ada +Aliana +Ann +Arissa +Betsabe +Elisha +Emerson +Jackie +Kayden +Kaylen +Kimora +Laney +Lissette +Maleah +Myah +Reanna +Rochelle +Rosalyn +Samanta +Selah +Shaylee +Tamia +Vianca +Zariah +Anais +Annaliese +Annalisa +Annelise +Aubree +Avril +Brianne +Chelsey +Deisy +Elia +Emery +Hannia +Jaylynn +Jazmyne +Jiselle +Kierra +Klarissa +Madisen +Magali +Makaila +Meagan +Mirian +Sky +Taya +Yamileth +Yoselyn +Zayra +Zulema +Adela +Analisa +Anayeli +Arya +Bailee +Chantel +Chase +Danya +Emmy +Franchesca +Gisele +Hilda +Jaida +Janine +Jocelin +Karli +Kelli +Kya +Laurel +Liyah +Loren +Mariyah +Nikole +Sanjana +Shyla +Tyra +Vianney +Yasmeen +Yazmine +Amie +Amina +Aminah +Ariadna +Arleen +Bonnie +Brandi +Campbell +Dayna +Edna +Emmalee +Ginger +Gissell +Ivonne +Izabel +Jasleen +Katerina +Lailah +Leann +Maira +Malena +Malina +Mika +Monet +Odalys +Patience +Remy +Sayra +Scarlet +Sol +Thea +Trina +Valarie +Yanira +Ysabella +Zara +Abbie +Abbigail +Ahtziri +Alyna +Anai +Anessa +Clarisa +Dolores +Doris +Eleni +Emeli +Estela +Gemma +Haily +Haven +Jaidyn +Janell +Janiya +Jeslyn +Joceline +Joey +Kai +Karis +Lainey +Lilith +Lyndsey +Marielle +Maxine +Maylin +Mirella +Randi +Rosalie +Sana +Shaina +Shay +Sinai +Tatianna +Treasure +Yesica +Adamari +Ailani +Ailyn +Aislinn +Alyza +Ashlie +Bernice +Brook +Carlee +Charlee +Christian +Dariana +Dina +Dora +Elvia +Francisca +Gwen +Jalissa +Jayde +Jenessa +Judy +Kailah +Kristal +Leena +Lizbet +Lynn +Lyric +Madalynn +Mai +Morelia +Naomy +Noa +Priya +Robin +Stevie +Susanna +Suzanne +Tanvi +Yael +Zitlaly +Alexandrea +Angelena +Annemarie +Arlyn +Aubrie +Aya +Carrie +Destany +Elysia +Emelyn +Gisell +Gissele +Giuliana +Halie +Inez +Italia +Iyana +Jaslyn +Jaylyn +Jessenia +Joann +Jovanna +Karolina +Keely +Keona +Kylah +Leyna +Macey +Marin +Minerva +Nikita +Romina +Roxy +Sade +Saige +Tierra +Tristan +Tristen +Vivien +Abigayle +Aditi +Alanis +Alannah +Aline +Amiya +Ania +Anisha +Annamarie +Bria +Celest +Charity +Christa +Davina +Essence +Flora +Francine +Gaby +Hunter +Jackelyn +Jaime +Jaquelyn +Jarely +Jennyfer +Kaleigh +Kalyn +Khushi +Kimberley +Kyara +Lacy +Leilany +Lezly +Lori +Lorraine +Mabel +Marbella +Maren +Meadow +Milena +Myriam +Princesa +Rayleen +Taniya +Xochilt +Yanet +Yocelin +Zahra +Acacia +Adamary +Anahit +Audra +Billie +Caitlynn +Danae +Delanie +Dennise +Elina +Elvira +Emelia +Ileana +Iyanna +Izabelle +Jaedyn +Jana +Jianna +Josefina +Josselyn +Kacie +Katheryn +Leeann +Leslye +Lianna +Lillianna +Livia +Malaya +Marianne +Maricruz +Maryann +Melannie +Mercy +Milana +Odalis +Paisley +Ramona +Renata +Rory +Salina +Sequoia +Shira +Sofie +Sydnie +Verenice +Yara +Abbygail +Abigale +Adelaide +Amiyah +Analy +Annmarie +Antoinette +Anushka +Ariah +Arwen +Azul +Berlin +Betty +Briza +Bryn +Cailey +Carmela +Carys +Cate +Caylee +Cienna +Demi +Ema +Eryn +Estephanie +Evelynn +Getsemani +Giavanna +Gisella +Hadley +Heavenly +Isha +Jaelynn +Janely +Jaylah +Jayme +Jazzlyn +Jesse +Joie +June +Kalena +Keily +Keren +Kirra +Malaysia +May +Micah +Misty +Mollie +Naidelyn +Nailah +Naydelin +Nellie +Ninel +Noel +Nubia +Raya +Robyn +Rosalia +Sahara +Sanaa +Shriya +Sunny +Thania +Vera +Yaquelin +Aidan +Aja +Alanah +Alysha +Amia +An +Annalee +Avalon +Averie +Bernadette +Bryce +Cailyn +Cameryn +Charisma +Charli +Cheryl +Christie +Constance +Delila +Elliana +Emelie +Emerald +Finley +Geneva +Honey +Iman +Ines +Jacey +Jalyn +Janel +Jannet +Jaylee +Jesenia +Kaelin +Kaily +Kalista +Kamille +Katalina +Kenzie +Kourtney +Krysta +Leilah +Lili +Liz +Lorelai +Mariajose +Mariel +Merari +Mirna +Nicola +Nyah +Nyssa +Osiris +Petra +Pricila +Rianna +Sharlene +Shivani +Soledad +Vannessa +Veronika +Zaria +Akira +Anaiya +Angelie +Anusha +Arlet +Ashlin +Azaria +Brigitte +Chanelle +Chaya +Chelsy +Cianna +Cinthya +Cloe +Emalee +Emani +Faviola +Hollie +Jackelin +Janie +Janiyah +Jeniffer +Jennie +Jordynn +Kaci +Kalei +Karisma +Keanna +Keara +Leona +Liza +Mari +Mariella +Martina +Mayrin +Melodie +Mercedez +Michell +Mildred +Mimi +Mona +Monika +Myranda +Naya +Neveah +Nova +Ofelia +Rosemarie +Ryley +Sanai +Sania +Sarahy +Shantal +Sunshine +Vienna +Xenia +Yoana +Zoya +Adele +Allysa +Alycia +Alyse +Amalie +Amethyst +Anamaria +Anela +Angelyna +Ariadne +Ariela +Ariella +Ariyana +Armani +Ayah +Aysha +Breann +Carli +Catrina +Charis +Charley +Chelsie +Christal +Cloey +Cosette +Darby +Darian +Desiray +Divya +Elayna +Elicia +Elora +Elva +Ester +Fallon +Gwenyth +Hermione +Ilana +Ileen +Imelda +Ivon +Ivory +Izel +Jaimie +Jasmyne +Jean +Jena +Jesica +Jessika +Journey +Karmen +Kaylani +Kiarra +Kim +Kinsey +Kori +Lailani +Laniya +Linnea +Litzi +Lizett +Makaela +Makaylah +Maliah +Marla +Marlin +Meera +Mikala +Monserrath +Mykayla +Priyanka +Quincy +Raelynn +Selma +Shanna +Sherry +Terra +Vania +Winter +Yuna +Zainab +Adrina +Aiyanna +Alayah +Alianna +Alliyah +Alysia +Amberly +Analicia +Anastacia +Aneesa +Angelic +Angelika +Arden +Arly +Ashli +Ayesha +Bertha +Bethel +Brynna +Cailin +Ciarra +Dallas +Destini +Destinie +Ember +Farah +Faye +Hennessy +Idalia +Ixchel +Jailene +Jalen +Janelly +Janna +Jaycee +Jayna +Jeannette +Jessi +Joscelyn +Joselyne +Kailynn +Kairi +Karma +Katherin +Keeley +Kelis +Lani +Laylah +Leandra +Lillyana +Lisbet +Madysen +Mariafernanda +Marleen +Marlena +Marysol +Milla +Nadya +Nayla +Nereida +Nuvia +Oriana +Rena +Roselin +Rosio +Sabine +Sarena +Shae +Shaila +Sindy +Sonja +Symone +Tanisha +Uma +Yana +Yulianna +Yuri +Zaida +Abygail +Aime +Alaysia +Amrita +Anaiah +Anali +Andie +Anel +Angelita +Anjelica +Anoushka +Aries +Audrie +Avani +Averi +Blessing +Britany +Catelyn +Cordelia +Daija +Daisha +Dara +Darlyn +Dawn +Deana +Debbie +Deyanira +Deysi +Dyana +Elana +Elly +Emi +Emiko +Emilly +Esha +Evan +Evette +Fiorella +Francis +Gema +Glory +Gracelyn +Gretchen +Harleen +Hayleigh +Ilse +Irlanda +Jalynn +Jaylen +Jenesis +Jizelle +Justina +Kalina +Karol +Kathrine +Kaycee +Kendyl +Kimberlee +Lilyan +Louisa +Mackenna +Maegan +Margot +Marilu +Mattie +Maura +Maureen +Mayte +Meah +Misha +Nidia +Ocean +Odette +Prisila +Raelyn +Rebeka +Reilly +River +Sahana +Saniyah +Sanya +Sera +Shanti +Sherlin +Silvana +Sloane +Stefani +Suhani +Tallulah +Vida +Yanely +Yocelyn +Ysabel +Yuliza +Adelynn +Alexie +Aleyda +Ali +Ambar +Angelia +Angely +Aranza +Araya +Arionna +Arizbeth +Arriana +Ashtyn +Ayden +Berlyn +Bianey +Bianka +Bobbie +Breanne +Brianda +Briceida +Brigette +Cameran +Capri +Chasity +Chyanne +Clarice +Consuelo +Daria +Daysi +Debra +Denali +Denice +Desire +Dior +Divina +Emiley +Evalyn +Fatimah +Florence +Haleigh +Harlee +Idaly +Jahaira +Jailyn +Jakelin +Jaliyah +Jaymie +Jenelle +Jessalyn +Joan +Jolina +Joshua +Joslynn +Jovana +Kaeli +Kamilah +Kari +Kavya +Kaytlin +Kelley +Kimberli +Kiya +Komal +Kristi +Lela +Lessly +Lilli +Lilyanna +Lizzette +Lucila +Lynda +Madilynn +Mae +Malak +Manuela +Maranda +Marcy +Maryah +Matilda +Mayah +Mayline +Meghana +Meleny +Mirka +Moncerrat +Naila +Nala +Nashaly +Natania +Nayelli +Nika +Nylah +Opal +Renae +Ryen +Samarah +Seleste +Shakira +Shelly +Sheridan +Shiloh +Sirena +Siri +Sriya +Stacie +Tehya +Therese +Trish +Tyanna +Vannesa +Vivienne +Vy +Willa +Wynter +Xitlalic +Yaire +Zaina +Aarushi +Agnes +Aishwarya +Alaya +Alba +Aleeza +Amairany +Amayah +Ameera +Ameerah +Amiah +Amirah +Anabell +Analia +Analiese +Anjelina +Ariane +Athziri +Aura +Aviana +Baylie +Betsaida +Brea +Bree +Breeanna +Breonna +Brinley +Camden +Candelaria +Cathryn +Chana +Daira +Dani +Dasia +Dayrin +Denae +Elli +Emili +Emmi +Esme +Evangeline +Freya +Gianni +Gimena +Glenda +Harlie +Holland +Isadora +Jael +Jamila +Janai +Jaya +Jayline +Jazlin +Jersey +Joleen +Jose +Jubilee +Judit +Juliza +Kacy +Kalie +Kareena +Karley +Kaylei +Keiry +Kelsea +Kennedi +Khloe +Kiani +Kiran +Kyley +Lacie +Larisa +Leela +Libby +Lillyanna +Linette +Lizzet +Macayla +Madelin +Maiya +Makala +Mandi +Maricarmen +Marta +Maryanne +Marylin +Maryssa +Medha +Meilani +Mel +Melenie +Merissa +Mitzy +Miyah +Muskaan +Naiya +Navya +Nidhi +Niya +Niyah +Noemy +Nour +Octavia +Paulette +Rian +Rio +Risa +Ryanne +Saanvi +Sakura +Samya +Samyra +Sandi +Sapphire +Serene +Shaelyn +Shanelle +Shaniya +Shoshana +Starla +Tayla +Tea +Triniti +Tru +Venus +Yelitza +Zion +Aaliah +Abagail +Abriana +Adalia +Adelyn +Adrian +Aide +Ailene +Alexcia +Alexzandra +Aleyna +Alisson +Allissa +Alora +Alyah +Alyana +Alynna +Alyssia +Amaiya +Amal +Amariah +Ammy +Amyah +Analyssa +Aniah +Anjolie +Anmol +Annabell +Anny +Arianne +Arlett +Arrianna +Aurelia +Azeneth +Betzabeth +Bobbi +Briceyda +Brithany +Caleigh +Carmella +Cecily +Cesia +Chantelle +Citlally +Cristine +Cruz +Cydney +Daizy +Danitza +Dasha +Dharma +Dianne +Elisabet +Evie +Gabriel +Genessis +Gigi +Gracee +Gracelynn +Graciella +Heily +Idalis +Ilyssa +Indigo +Isamar +Jadelyn +Jaeda +Jalene +Jamilet +Jatziri +Jaycie +Jazzmin +Jennah +Jesus +Julieanna +Julietta +Kailea +Kaleah +Kamora +Karsyn +Karyssa +Kathia +Kaylan +Kayle +Keziah +Kristiana +Kyah +Laine +Lelani +Liah +Liv +Loretta +Luca +Lyanna +Madelynne +Makiah +Malaika +Maraya +Margaux +Marguerite +Mariaelena +Maritsa +Mariya +Mariza +Marlenne +Maryn +Mason +Mele +Meleah +Melony +Michael +Michel +Mikaylah +Milani +Monserath +Montana +Monzerrat +Naima +Naylea +Neela +Portia +Princessa +Radhika +Rain +Reece +Remi +Rina +Samaria +Saniah +Scout +Sedona +Sela +Shani +Shantel +Sharlyn +Sheryl +Shianne +Stephani +Tahlia +Talya +Tatiyana +Tatyanna +Teanna +Teresita +Vanity +Wendi +Winnie +Xitlalli +Yaretzy +Yohana +Yuritzi +Zahira +Zamantha +Abrianna +Abrielle +Adara +Addyson +Adina +Adria +Adrianne +Aine +Ajah +Alea +Aleida +Alizah +Amairani +Anaiyah +Anamarie +Andria +Anh +Annalie +Arcelia +Areana +Arushi +Aryssa +Asiah +Ayiana +Bethanie +Bibiana +Braelyn +Brigid +Brookelynn +Caley +Caydence +Chevelle +Corinna +Corrina +Daijah +Darcy +Dejah +Delany +Denia +Denis +Devina +Edlyn +Elexis +Elida +Elinor +Elodie +Eloisa +Emelin +Emerie +Erandy +Estelle +Estephany +Fabiana +Fayth +Fernando +Genevie +Halley +Hanah +Haydee +Helene +Honesty +Huda +Ida +Ilianna +Imogen +Iriana +Irie +Itzia +Ivett +Jalisa +Janay +Jannah +Jannette +Jazelle +Jeanine +Jeanne +Jeannine +Jezebel +Jiya +Jocelynne +Jolee +Josephina +Julieana +Kadie +Kallie +Kamea +Kameron +Kameryn +Kamrin +Karena +Karisa +Kathie +Kathya +Kaydee +Kazandra +Keana +Kemberly +Kiah +Kora +Kylene +Lanaya +Leana +Leonela +Leslee +Lexis +Lilibeth +Lillyann +Louise +Lucinda +Lucine +Mackayla +Madelyne +Maeve +Mailee +Mailyn +Maisie +Maliya +Mariaguadalupe +Marygrace +Mattea +Megha +Meghna +Melyssa +Metzli +Micayla +Midori +Mikaila +Milly +Mischa +Monae +Nahomy +Naia +Naliyah +Nanci +Nandini +Nashali +Nautica +Neda +Nereyda +Nhi +Nicolle +Nisha +Nitya +Nohemi +Noura +Parris +Pearla +Penny +Prisha +Promise +Quetzalli +Rachell +Raelene +Rana +Richelle +Romy +Rosaura +Roselynn +Rosy +Rubie +Sahar +Salena +Samiyah +Scarlette +Shauna +Shawna +Shelbi +Siobhan +Siomara +Siya +Sneha +Solana +Sonali +Susie +Suzy +Sydni +Tala +Taliah +Tamar +Tasneem +Tera +Tracey +Tristin +Varsha +Venezia +Venice +Vivica +Yamile +Yaneth +Yenifer +Yoseline +Yuki +Zia +Aalyah +Adelaida +Aeris +Aishah +Aislynn +Aleina +Alessia +Alexsis +Alijah +Amerie +Ami +Amisha +Anay +Anely +Angeli +Angella +Anjolina +Annali +Annissa +Aolani +Arieana +Ariya +Arlen +Arlin +Atziry +August +Aylen +Aysia +Azalia +Beth +Biridiana +Blythe +Breeana +Caren +Carisma +Cassady +Catarina +Cayden +Chandler +Charlise +Christen +Chrystal +Chyna +Clarisse +Claudette +Cleo +Coco +Cori +Daniel +Dayra +Debora +Deisi +Delylah +Donya +Echo +Eleana +Ellianna +Emiliana +Emmely +Emory +Erandi +Evany +Gardenia +Genoveva +Giovana +Giulia +Gladis +Greer +Guinevere +Gurleen +Hellen +Illiana +Imari +Inaya +Indira +Jaileen +Jailynn +Jamileth +Janaya +Janett +Jania +Janis +Jassmin +Jazel +Jezelle +Jill +Jisela +Jodi +Joselynn +Josseline +Jurnee +Kadyn +Kaelani +Kaile +Kaileen +Kailie +Kaira +Kalaya +Kalissa +Kamara +Kandace +Kandice +Karizma +Kateleen +Keala +Kealani +Keegan +Kerry +Keyanna +Kimber +Kimberlie +Kimberlyn +Kimia +Kloe +Krystina +Kyana +Kyle +Laiba +Lanna +Leeanna +Leigh +Leigha +Leora +Lexus +Liliane +Lilit +Lillyan +Lillyanne +Lilyann +Lisamarie +Liset +Liya +Lizzie +Lulu +Maha +Maite +Malanie +Marielena +Marifer +Marisabel +Marwa +Marykate +Matilde +Mayela +Mazzy +Mckinley +Meena +Mehak +Mei +Merary +Meztli +Mikyla +Miryam +Mizuki +Moira +Monserat +Monserratt +Morgen +Myrna +Nadiya +Nahomi +Nailea +Naina +Nayelie +Nely +Nena +Niamh +Niki +Oceana +Olive +Racquel +Ramya +Reem +Rhianna +Richa +Rileigh +Rosamaria +Roxane +Rylan +Saachi +Sabreen +Sachi +Sadaf +Safa +Saleen +Samia +Sariyah +Savina +Sawyer +Shalini +Shaylah +Shreeya +Sia +Siana +Sicily +Simona +Skylee +Spencer +Starr +Stephania +Sterling +Sujey +Susannah +Sylvie +Symphony +Tabatha +Tais +Tanaya +Tasha +Tegan +Tiare +Tiffanie +Tyla +Vianna +Vicki +Vivianne +Xiana +Yamila +Yanitza +Yeraldin +Yisel +Yoanna +Yuritza +Yzabella +Zora +Aastha +Adalina +Adelle +Aiden +Aiko +Airam +Alaura +Alesandra +Allena +Alyn +Alysse +Amada +Amaia +Ambria +Amely +Amulya +Analaura +Analissa +Analiyah +Anayah +Andrew +Angelee +Angelene +Angelyn +Anja +Annahi +Annaka +Annalyse +Annel +Anneth +Antonella +Anyia +Arelly +Arisbeth +Ariyah +Ashanty +Ashleymarie +Ashna +Ashton +Asma +Autum +Avary +Avelina +Avigail +Ayelen +Ayva +Bethzaida +Betzabe +Betzayda +Betzy +Briannah +Brooklin +Caelan +Caelyn +Carson +Caterina +Caylin +Cera +Cerina +Charissa +Charmaine +Chayse +Cheyann +Ciana +Clair +Clover +Cody +Concepcion +Cooper +Cortney +Daiana +Daliyah +Dallana +Darci +Darya +Deandra +Delainey +Dena +Dorian +Dulcemaria +Dunia +Dyanna +Dymond +Eesha +Ekaterina +Elan +Eli +Elin +Ellia +Elsy +Ely +Elyana +Elysa +Emme +Emmily +Eowyn +Eryka +Esly +Evalynn +Evelina +Evelyne +Eveny +Farrah +Freedom +Geovanna +Gianina +Gracyn +Grayson +Hadassah +Halena +Hanan +Harmonie +Haruka +Hayli +Heavyn +Henessy +Henna +Herlinda +Hiromi +Ila +Ilona +Isa +Isobel +Issabella +Isyss +Itzayana +Iveth +Izabela +Izabell +Jacie +Jacinda +Jacinta +Jaila +Jaimee +Jaina +Jamey +Jami +Jamison +Janiah +Jareli +Jaselle +Jasmeen +Jatziry +Jaylie +Jayne +Jazzlynn +Jazzmine +Jeanna +Jenay +Jenise +Jodie +Joely +Jorja +Josalyn +Josslyn +Juli +Julyssa +Kaeley +Kaelynn +Kaiden +Kaileigh +Kailin +Kaleena +Kaliya +Kalynn +Kamari +Kamya +Karin +Karyna +Katana +Katey +Katlynn +Kaydance +Kaydin +Kaytlyn +Keilah +Keisha +Kenedi +Keyana +Khadija +Khalia +Kiaya +Kierstin +Kimberlin +Kimi +Kimiya +Kiona +Kirstin +Kortney +Kristie +Kristyn +Kymberly +Kymora +Kyndall +Kyrah +Laniyah +Lanya +Laryssa +Leiana +Leianna +Leiloni +Leina +Lesslie +Leylani +Lillia +Lilyanne +Linsey +Lisandra +Lissete +Lita +Lizabeth +Lizzeth +Lora +Luana +Lucie +Lupe +Lynnette +Lynsey +Madaline +Maddisyn +Madisson +Maelani +Magnolia +Mairin +Mallorie +Mana +Mariadelcarmen +Mariely +Marika +Marilynn +Marleny +Marycruz +Marylou +Maycie +Mayleen +Meaghan +Meliza +Melonie +Meranda +Metztli +Micaiah +Michayla +Miki +Milagro +Millicent +Mirabella +Mylie +Myrka +Namrata +Nareh +Natividad +Nayah +Nerissa +Neyda +Nila +Nithya +Noely +Nola +Noora +Olyvia +Ophelia +Peri +Philomena +Pyper +Rania +Rashel +Rayanna +Rayven +Reign +Rhyan +Riana +Roma +Rosalba +Rosalina +Rosalind +Rosita +Roslyn +Rosselyn +Rya +Salome +Sammie +Sariya +Sejal +Shana +Shanya +Shaye +Sheccid +Sheily +Shelley +Shiann +Shirel +Shirin +Shruti +Siera +Sinead +Sivan +Srinidhi +Staci +Suzanna +Taina +Takara +Taliya +Taniyah +Tenaya +Tiffani +Tommie +Tyana +Una +Veda +Viviann +Wren +Yamna +Yanelly +Yareni +Yovana +Yunuen +Yuriana +Yuridia +Yuritzy +Zaynab +Zenaida +Zuleyka +Aaliya +Aanya +Aariana +Aashna +Abegail +Addie +Addisyn +Adia +Adreanna +Ahtziry +Ai +Aila +Ainslee +Aisling +Akari +Akayla +Aleana +Alejandrina +Alesia +Alexander +Alexiss +Alexxia +Alexza +Alin +Alinna +Alis +Alise +Alix +Allura +Alona +Alyanna +Alyssamarie +Amarah +Anaid +Anakaren +Analucia +Ananda +Anasofia +Aneth +Anett +Angelyne +Anicia +Anisah +Anise +Annete +Anthony +Arayah +Ariannah +Ariba +Arieanna +Arline +Arpita +Aryah +Ashleen +Asiya +Asmaa +Asya +Athyna +Atziri +Aubrianna +Aubry +Audrianna +Austin +Austyn +Avi +Aviva +Avneet +Azra +Beatrix +Blair +Brandon +Brizeida +Brizeyda +Bronte +Bronwyn +Brooklynne +Bryan +Cadance +Cady +Caidence +Cailee +Calie +Calissa +Calla +Callista +Camile +Caprice +Carmel +Carrington +Cathleen +Caylah +Cayleigh +Caylie +Chiamaka +Chloee +Ciclaly +Citlalic +Coraima +Cyndi +Dailyn +Danelle +Danni +Danyelle +Darina +Darleen +Delaina +Delina +Delyla +Deserae +Deseray +Deserie +Desirea +Destyni +Devan +Dezarae +Dezirae +Disha +Divine +Domonique +Dynasty +Egypt +Elani +Elijah +Elisheva +Elizabet +Ellena +Ellery +Elliot +Emalie +Eman +Emillie +Emilyn +Emmaline +Emmamarie +Emmeline +Enid +Envy +Enya +Erianna +Estrellita +Eugenia +Eveline +Ever +Evita +Fantasia +Gabby +Gauri +Gayatri +Genavieve +Genna +Gianella +Guillermina +Hailley +Halina +Harini +Hattie +Havana +Havanna +Hayle +Haylei +Hennesy +Heydi +Imaan +Ina +Iona +Irelyn +Irina +Ishika +Isla +Italy +Itzell +Ivania +Jacalyn +Jacklynn +Jaeden +Jaela +Jaelin +Jailin +Jalina +Janiece +Jannelle +Janya +Jaslin +Jaslynn +Jaspreet +Jaydyn +Jaylean +Jeanelle +Jeanie +Jeannie +Jenae +Jenevieve +Jenica +Jennessa +Jessel +Jesslyn +Jewell +Jezreel +Jhoana +Jireh +Jisel +Jissel +Johnnie +Jonathan +Jorden +Josalynn +Josette +Juan +Juliann +Julieanne +Kalin +Kamaya +Kami +Kamia +Kamyla +Karah +Kareli +Karishma +Karoline +Karolyn +Katerin +Katerine +Kathelyn +Katheryne +Kati +Katja +Kattie +Kayra +Kaytlynn +Keiko +Keilly +Kendell +Kennia +Kennya +Keturah +Kiele +Kiely +Kilee +Kimiko +Kirstyn +Kitzia +Kiyomi +Klaire +Klara +Klarisa +Korina +Kristian +Kyanna +Lane +Lariza +Laylani +Layloni +Layna +Lexia +Lilie +Lindsy +Lizzett +Lois +Lolita +Londyn +Lorely +Love +Luiza +Lunna +Luzelena +Luzmaria +Lylah +Lyndsay +Lyra +Lysandra +Lyzette +Mahima +Mahlia +Maili +Maja +Makyla +Malayah +Malea +Malika +Marah +Marcelina +Marcia +Margie +Maribelle +Marivel +Marixa +Markayla +Marlina +Maryfer +Marylynn +Mathilda +Maylene +Melaina +Melana +Melaney +Messiah +Meya +Michaella +Mihika +Mikah +Minna +Mitzi +Myia +Mylee +Mylene +Nabiha +Nada +Nairi +Najah +Nanette +Naomie +Nariah +Nataley +Natally +Naudia +Neftaly +Neidy +Nemesis +Nevaeha +Niara +Nickole +Niobe +Nivea +Noeli +Nuria +Nyanza +Nyomi +Odessa +Paityn +Pari +Payten +Phaedra +Pia +Polina +Preslie +Queen +Quinlan +Rafaela +Raine +Ranya +Rayne +Rene +Reva +Rheanna +Rhian +Rikki +Rilee +Risha +Roisin +Roni +Rosalva +Rossy +Rozlyn +Sammantha +Sammi +Sanaya +Sandhya +Sarita +Saskia +Seanna +Senna +Serafina +Shamari +Shanell +Shanice +Shantelle +Sharleen +Shaya +Sherly +Sherrie +Sheyenne +Sian +Sianna +Sierrah +Siona +Skylynn +Sommer +Sona +Stefania +Steffi +Suleyma +Sunnie +Suraya +Suzie +Taleah +Taline +Talisa +Tamya +Tasia +Taylar +Tehila +Terri +Thais +Theodora +Tisha +TRUE +Valencia +Vallery +Vanna +Venecia +Verania +Vi +Viana +Vickie +Vilma +Viviane +Xiadani +Yailin +Yajayra +Yakelin +Yalitza +Yamilett +Yamilex +Yasmina +Yazlin +Yazmeen +Yecenia +Yeimi +Yelena +Ysabelle +Zaire +Zarahi +Zarina +Zinnia +Ziona +Zitlali +Zuleika +Zully +Zulma +Aaminah +Aarya +Aaryn +Adali +Adalie +Adaline +Addis +Adelyne +Adi +Adison +Adora +Adyson +Aeryn +Agustina +Ahmari +Ahna +Ailee +Ailin +Ajanae +Akemi +Alaa +Alessa +Alethea +Alexah +Alexas +Alexes +Alexsa +Alexsia +Alexyss +Alexzandria +Alisia +Alizee +Allana +Almira +Alonna +Althea +Alvina +Alys +Alyzza +Amaiyah +Amor +Amora +Anaiz +Analee +Analilia +Anapaula +Anastazia +Andi +Andrina +Angy +Annai +Annalea +Annalyn +Annamaria +Annastasia +Anthea +Antonina +Anvita +Anyah +Aoife +Aparna +Areanna +Argelia +Ariday +Ariona +Arista +Ariyanna +Armida +Armine +Ary +Ashby +Asiyah +Asusena +Athziry +Aubriana +Audree +Audriana +Avalina +Avamarie +Avarie +Avia +Avianna +Ayushi +Azia +Baby +Baleria +Bayleigh +Beautiful +Becca +Becky +Bela +Berlynn +Betzaira +Biviana +Braeden +Breeze +Breona +Bridgett +Briley +Brionna +Briselda +Caden +Caila +Cari +Carleigh +Carlene +Carmelita +Carmina +Carolyne +Carsyn +Celestina +Cesilia +Chance +Charleen +Charly +Cherie +Cherokee +Chloie +Christianna +Cidney +Cintia +Claira +Cloie +Codi +Collette +Cory +Crista +Cristy +Cyan +Daeja +Daina +Dajanae +Damara +Damariz +Danely +Dannae +Dannia +Darianna +Darling +Darlyne +Daryn +Davianna +David +Dayan +Daylin +Deeya +Defne +Deirdre +Delaila +Delana +Delani +Delara +Delfina +Della +Demetra +Deonna +Deseree +Destanie +Deviny +Devora +Deysy +Dia +Dinah +Dixie +Doreen +Dream +Ebonie +Elane +Elany +Elenoa +Elisia +Eliya +Elley +Elliott +Ellis +Ellyse +Ellyssa +Elysse +Emelly +Emmalie +Emmarose +Ena +Eriana +Erinn +Esli +Estefanie +Estephani +Eternity +Eulalia +Evanie +Ezra +Faustina +Fiorela +Francia +Gail +Geanna +Geetika +Genecis +Genisis +Georgie +Graceann +Gracen +Gracey +Grayce +Grettel +Gricelda +Gweneth +Haidee +Hailei +Halee +Hali +Halia +Han +Hania +Hannya +Harshini +Harumi +Hasmik +Holiday +Hollis +Ianna +Ibeth +Idania +Ilda +Ileanna +Imunique +Irania +Irena +Ireri +Isaac +Ishani +Ismerai +Ithzel +Iva +Ivan +Jacelyn +Jaci +Jackelyne +Jacquelyne +Jadah +Jadalyn +Jadelynn +Jaelene +Jahayra +Jala +Jaleah +Jalyssa +Jamia +Janeli +Janey +Janina +Janissa +Jaretzy +Jasline +Jasminerose +Jaydee +Jaymee +Jazline +Jazmynn +Jemima +Jemma +Jenavie +Jenin +Jennalyn +Jenni +Jennica +Jesselle +Jhoanna +Jiana +Jinny +Jisselle +Jocilyn +Jody +John +Joi +Joscelin +Joseph +Joycelin +Joycelyn +Juliane +Julieann +Juliett +Kady +Kaelee +Kahlia +Kaidence +Kala +Kaliah +Kalila +Kalyssa +Kambria +Kariana +Karima +Karine +Katharina +Kathlyn +Kay +Kayce +Kaycie +Kaylea +Kaysha +Keerthana +Keili +Kelani +Kevin +Keya +Keyara +Keylee +Khalea +Kia +Kiarah +Kieran +Kimani +Kinsley +Kirti +Kloey +Kodi +Koral +Korrina +Kortni +Krishna +Kylea +Lacee +Laela +Lailoni +Larae +Laurie +Lavinia +Laya +Leelee +Leidi +Leonor +Lexani +Lexine +Leylanie +Lianne +Libertad +Libni +Linh +Liseth +Lisseth +Lizandra +Lizvet +Lorenza +Lorna +Lovely +Lucca +Lucienne +Lucky +Lya +Lyna +Maayan +Maddie +Madelaine +Madylin +Mahnoor +Maille +Mairyn +Maison +Makailah +Makaiya +Makenzi +Malani +Mallika +Maniyah +Manjot +Manpreet +Mansi +Maral +Margo +Mariaceleste +Mariaisabel +Mariangel +Marjan +Marleni +Marlie +Marlo +Marylee +Marylu +Mattison +Mayerly +Maysa +Mckenzi +Mea +Meg +Mekayla +Melanny +Melanye +Melayna +Melena +Meleni +Melida +Mellany +Merlyn +Misaki +Muskan +Mylah +Mystique +Nadeen +Nakia +Nalleli +Nara +Nare +Nathali +Nathalya +Natsumi +Navneet +Nayzeth +Neri +Neva +Nisa +Noe +Nydia +Ona +Oona +Oscar +Osmara +Oyuki +Pallavi +Passion +Patrice +Persephone +Pooja +Quetzali +Quiana +Radha +Rae +Ramiyah +Rashell +Ravneet +Rayana +Raylynn +Reiley +Reya +Rhonda +Richard +Ricki +Roberta +Rori +Rosalee +Rosaline +Roseanna +Roshni +Roslynn +Roxie +Rudi +Saba +Sadye +Safiyah +Saida +Salem +Samaya +Samera +Samirah +Sanaiya +Sanika +Santos +Sarika +Sarine +Sativa +Sayda +Saydie +Sayuri +Sean +Seleen +Semaj +Seneca +Seraphina +Seriah +Serra +Seven +Shadae +Shaelynn +Shai +Shailyn +Shalom +Shalynn +Shandi +Shaniah +Shannen +Shantell +Sharai +Shariah +Sharlize +Shasta +Shayleen +Shaylyn +Shekinah +Sherilyn +Sheyanne +Shine +Shylah +Siara +Sindhu +Skarlett +Starlyn +Stephenie +Stevi +Stormy +Sukhmani +Sulema +Sumer +Swetha +Sylvana +Symantha +Syria +Tai +Tamra +Tana +Tanna +Tavia +Tawny +Taylin +Taytum +Tenzin +Terren +Teya +Thaily +Thelma +Tien +Timia +Tonya +Torie +Torrey +Tricia +Trinidad +Trinitee +Tristyn +Tuesday +Tylar +Unity +Ursula +Vallerie +Vana +Venessa +Viktoria +Wendolyn +Xochilth +Yarelli +Yaslin +Yasmen +Yatziri +Yatziry +Yeira +Yezenia +Yomara +Yukari +Yvett +Zamara +Zamyra +Zaniya +Zaniyah +Zariyah +Zayda +Zayna +Zeina +Zelda +Zhane +Zita +Zola +Zuleima +Zuleyma +Zuly +Zuri +Emily +Ashley +Samantha +Isabella +Mia +Natalie +Sophia +Emma +Alyssa +Madison +Jasmine +Elizabeth +Jessica +Kimberly +Abigail +Brianna +Jennifer +Ava +Sarah +Alexis +Hannah +Andrea +Angelina +Stephanie +Vanessa +Sofia +Olivia +Victoria +Grace +Kayla +Michelle +Maria +Evelyn +Destiny +Chloe +Hailey +Leslie +Alexandra +Jocelyn +Lauren +Alondra +Nicole +Diana +Katherine +Alexa +Melissa +Melanie +Valeria +Ella +Ariana +Jacqueline +Julia +Daisy +Savannah +Giselle +Maya +Daniela +Sydney +Isabel +Taylor +Valerie +Natalia +Mariah +Kaitlyn +Amy +Rachel +Ruby +Angela +Amanda +Faith +Audrey +Lily +Genesis +Gabriela +Katelyn +Allison +Esmeralda +Zoe +Arianna +Kaylee +Kylie +Megan +Marissa +Anna +Alejandra +Brooke +Crystal +Brenda +Jazmin +Mariana +Karen +Adriana +Briana +Trinity +Karina +Karla +Ana +Jade +Makayla +Gabriella +Jasmin +Sara +Madeline +Rebecca +Camila +Guadalupe +Liliana +Jenna +Riley +Naomi +Angelica +Fatima +Leah +Cynthia +Bianca +Alicia +Danielle +Sierra +Aaliyah +Nevaeh +Tiffany +Katie +Lizbeth +Haley +Catherine +Miranda +Kelly +Juliana +Amelia +Morgan +Isabelle +Celeste +Vivian +Cassandra +Jordan +Avery +Paige +Monica +Amber +Gianna +Lillian +Priscilla +Charlotte +Eva +Brooklyn +Kate +Claire +Christina +Sabrina +Julissa +Estrella +Itzel +Gabrielle +Sophie +Laura +Alexia +Bella +Leilani +Mya +Jazmine +Mackenzie +Erika +Emely +Jada +Veronica +Nancy +Mary +Nadia +Elena +Cindy +Perla +Paola +Paulina +Anahi +Wendy +Dayanara +Denise +Mikayla +Summer +Dulce +Erin +Julianna +Layla +Alana +Breanna +Kassandra +Ximena +Desiree +Melody +Kiara +Jamie +Joanna +Carolina +Jimena +Nayeli +Caroline +Viviana +Alexandria +Yesenia +America +Marisol +Fernanda +Maritza +Aileen +Alina +Sandra +Litzy +Ciara +April +Lesly +Ariel +Nataly +Rubi +Iris +Lucy +Julie +Angel +Rylee +Madelyn +Sienna +Shelby +Kira +Molly +Chelsea +Kathryn +Rosa +Stella +Clarissa +Katrina +Sadie +Zoey +Heidi +Jillian +Ashlyn +Gracie +Leila +Serenity +Cassidy +Marlene +Tatiana +Keira +Selena +Bailey +Amaya +Lindsay +Paris +Claudia +Monique +Peyton +Carmen +Daniella +Lindsey +Natasha +Yasmin +Angie +Erica +Cecilia +Kendall +Kennedy +Malia +Autumn +Miriam +Jordyn +Josephine +Kylee +Yadira +Kiana +Serena +Alison +Aliyah +Caitlin +Lucia +Eliana +Elise +Lilly +Caitlyn +Athena +Delaney +Kyra +Raquel +Janelle +Violet +Ivy +Laila +Sarai +Camille +Nina +Kyla +Hope +Joselyn +Lydia +Ellie +Sasha +Monserrat +Christine +Cristina +Esther +Irene +Marina +Aubrey +Hanna +Helen +Krystal +Madeleine +Skylar +Cheyenne +Danna +Linda +Nathalie +Jayden +Maribel +Ashlee +Jenny +Kaylie +Payton +Dakota +Heaven +Patricia +Scarlett +Gloria +Bethany +Elisa +Eden +Janet +Johanna +Dayana +Luna +Aurora +Carly +Kelsey +Teresa +Annika +Araceli +Mayra +Noemi +Alma +Arlene +Izabella +Lola +Makenna +Savanna +Alessandra +Courtney +Delilah +Jaqueline +Luz +Martha +Annabelle +Mckenna +Allyson +Hayley +Kailey +Margaret +Reyna +Tania +Yvette +Haylee +Melina +Dana +Hazel +Sonia +Genevieve +Gisselle +Marilyn +Melany +Talia +Lizeth +Adrianna +Eliza +Fiona +Cadence +Carla +Clara +Cristal +Judith +Jadyn +Reese +Tessa +Alissa +Brisa +Reagan +Ruth +Valentina +Francesca +Michaela +Annie +Brittany +Daphne +Kristina +Rebekah +Anika +Isis +Kendra +Britney +Tara +Lorena +Rose +Georgia +Jaden +Janessa +Lesley +Stephany +Abby +Alice +Arely +Cameron +Shannon +Bryanna +Darlene +Kaitlin +Kathleen +Damaris +Emilia +Lana +Lizette +Yareli +Heather +Jayla +Phoebe +Marisa +Camryn +Jaylene +Sharon +Sherlyn +Edith +Juliet +Juliette +Stacy +Aniyah +Bridget +Citlali +Addison +Eileen +Holly +Susana +Tanya +Anastasia +Isabela +Makenzie +Yazmin +Aylin +Paula +Galilea +Ingrid +Sarahi +Katelynn +Mckenzie +Paloma +Sage +Belen +Evelin +Kristen +Maggie +Roselyn +Dalia +Jacquelyn +Jayleen +Ryan +Angelique +Berenice +Frida +Lisa +Siena +Kaylin +Nathaly +Abril +Belinda +Elaine +Lia +Tatum +Alize +Catalina +Dominique +Jayda +Joy +Lila +Makena +Pamela +Samara +Skyler +Graciela +Carina +Fabiola +Mikaela +Nora +Penelope +Xiomara +Aimee +Alyson +Annette +Karol +Lilian +Mercedes +Montserrat +Brooklynn +Deanna +Eleanor +Jane +Lauryn +Rosemary +Yahaira +Blanca +Emilie +Estefania +Kara +Simone +Carissa +Kiera +Leticia +Lilliana +Piper +Tiana +Adilene +Asia +Margarita +Mariela +Maryjane +Precious +Estefani +Helena +Maia +Noelle +Ashly +Casey +Celine +Gizelle +Iliana +Skye +Valery +Anaya +Danica +Aleena +Hana +Kaya +Larissa +Rylie +Emilee +Lena +Meghan +Nia +Rachael +Yuliana +Carol +Mallory +Rebeca +Kenia +Ashlynn +Citlaly +Giovanna +Hailee +Jazlyn +Kirsten +Liana +Regina +Tabitha +Beatriz +Elle +Justine +Kamryn +Lucero +Marie +Marley +Roxanne +Gina +Grecia +Haylie +Joyce +Macy +Roxana +Sandy +Allie +Denisse +Harmony +Jolie +Josie +Kaia +Karissa +Kasandra +Rocio +Susan +Heidy +Lea +Marianna +Shirley +Sidney +Jessie +Johana +Kathy +Tina +Virginia +Angeline +Aniya +Joana +Kassidy +Presley +Xochitl +Yasmine +Anabel +Arielle +Brielle +Carolyn +Casandra +Esperanza +Natalee +Nyla +Anya +Dylan +Julieta +Yoselin +Annabella +Aracely +Areli +Destinee +Kenya +Yajaira +Amelie +Arleth +Brittney +Diane +Flor +Priscila +Alanna +Anne +Cali +Keila +Mina +Salma +Savanah +Shayla +Yamilet +Yaritza +Aria +Callie +Cierra +Diamond +Elisabeth +Jolette +Kiley +Mireya +Noelia +Annabel +Arabella +Briseyda +Donna +Ellen +Kaila +Kailee +Stacey +Sylvia +Alena +Magdalena +Laisha +Marlen +Miah +Nathalia +Reina +Silvia +Yuridia +Yvonne +Alisha +Astrid +Deborah +Elsa +Jazmyn +Lexi +Mariam +Theresa +Alani +Briseida +Charlize +Desirae +Gemma +Hayden +Imani +Logan +Princess +Brandy +Brenna +Gia +Jackeline +Jaiden +Joseline +Julianne +Kali +Kayleigh +Madisyn +Renee +Yolanda +Alaina +Amara +Barbara +Dianna +Eve +Isela +Jenifer +Kayley +Lilyana +Lisette +Madyson +Roxanna +Shreya +Thalia +Vanesa +Yessenia +Ainsley +Alisa +Anissa +Betzaida +Estefany +Kailyn +Kaitlynn +Tamara +Teagan +Jaelyn +Jaquelin +London +Maddison +Madelynn +Marcela +Milan +Natali +Viridiana +Chanel +Charlene +Emerson +Gladys +Gwendolyn +Ivette +Jeanette +Kaelyn +Anabelle +Ayanna +Juana +Kristin +Leanna +Luisa +Lupita +Nikki +Taryn +Anjali +Arlette +Harley +Janae +Janice +Kaydence +Kayleen +Lilianna +Madalyn +Natalya +Sariah +Yarely +Adeline +Celia +Danika +Hillary +Katarina +Maile +Rhiannon +Sheila +Tracy +Xitlali +Aliza +Azucena +Christy +Coral +Jaclyn +Katharine +Lexie +Macie +Selina +Aida +Aiyana +Aryanna +Celina +Giana +Janette +Kadence +Kaley +Kamila +Lourdes +Melia +Raven +Selene +Aisha +Annalise +Ayla +Geraldine +India +Julisa +Keyla +Melisa +Riya +Rosario +Amaris +Amya +Ani +Dahlia +Elissa +Halle +Joanne +Kailani +Kayden +Kaylyn +Liberty +Lynette +Maricela +Nicolette +Rachelle +Tiara +Yaneli +Angeles +Anneliese +Brynn +Camilla +Chiara +Evangelina +Frances +Kaylah +Krista +Lilia +Lina +Mandy +Marisela +Micaela +Mila +Nadine +Norma +Rowan +Ryleigh +Tia +Tori +Willow +Zaira +Alexus +Alysa +Jacquelin +Jewel +Kaiya +Leyla +Madilyn +Quinn +Samira +Skyla +Yamileth +Adamaris +Alayna +Charlie +Connie +Delia +Drew +Kaylen +Naima +Regan +Aliya +Anais +Anisa +Dalila +Dalilah +Gisele +Jaida +Janeth +Katia +Kristine +Lacey +Lidia +Maliyah +Noelani +Rosalinda +Tyler +Xitlaly +Adela +Candice +Cora +Diya +Ebony +Ivanna +Jaylin +Kasey +Lara +Pearl +Raylene +Rita +Sarina +Sky +Anai +Ayleen +Cielo +Corina +Dania +Elyse +Elyssa +Georgina +Haven +Makaila +Miracle +Nelly +Parker +Ryann +Saray +Scarlet +Tess +Unique +Vianey +Whitney +Yadhira +Yessica +Ananya +Antonia +Azalea +Baylee +Elsie +Emery +Ginger +Gisela +Gisell +Gissel +Isabell +Kianna +Lluvia +Luciana +Melinda +Mira +Simran +Yulissa +Amalia +Amani +Bryana +Citlalli +Deja +Desteny +Devin +Felicity +Hilary +Ireland +Justice +Kalia +Kayli +Maxine +Ria +Shania +Shayna +Shea +Anette +Ashleigh +Gillian +Greta +Kyleigh +Mckayla +Pilar +Alia +Alivia +Aryana +Aubree +Calista +Chantal +Elaina +Jaidyn +Jiselle +Jocelynn +Jolene +Lisbeth +Marian +Milagros +Myla +Nichole +Raina +Zoie +Ailyn +Anita +Ann +Cambria +Dayanna +Devyn +Irma +Joselin +Juanita +Kalea +Kiersten +Laney +Leanne +Leyna +Lilah +Malaya +Saira +Tayler +Zara +Amira +Ariadna +Breana +Chelsey +Clare +Corinne +Ivana +Izabel +Jackelyn +Jocelyne +Kalani +Katelin +Kaylynn +Laurel +Magaly +Maleah +Miya +Naydelin +Renata +Sheyla +Stefanie +Tatyana +Vianney +Vicky +Violeta +Anabella +Candy +Destiney +Kaili +Karime +Leilany +Lyric +Meredith +Samanta +Selah +Star +Zahra +Adamari +Aliah +Alyna +Analise +Annaliese +Annalisa +Arleen +Cinthia +Colette +Gissell +Journey +Karly +Karyme +Katy +Kristy +Laci +Lianna +Lillie +Lorelei +Lyla +Maci +Mika +Myah +Noa +Noor +Sally +Soraya +Sydnie +Toni +Trisha +Yaretzi +Abbey +Aleah +Anahy +Aubrie +Beatrice +Emmalee +Gwyneth +Ilene +Kaliyah +Karma +Keely +Keilani +Lailah +Leia +Nayely +Neha +Neveah +Pauline +Phoenix +Suzette +Tammy +Trina +Ysabella +Yulisa +Abigayle +Adelina +Adrienne +Arissa +Avalon +Bailee +Britany +Dafne +Devon +Elina +Ericka +Eunice +Harper +Jaylee +Jaylynn +Jazlynn +Jocelin +Joey +Karely +Kenna +Lesli +Mara +Mari +Myra +Pricilla +Saniya +Shyanne +Sonya +Sunny +Ada +Aditi +Alex +Analisa +Ariella +Avril +Ayana +Carlee +Cathy +Cheyanne +Griselda +Joelle +Joslyn +Josselyn +Kaela +Katheryn +Kirra +Lissette +Lizet +Maiya +Mercy +Mirian +Monserrath +Norah +Ofelia +Rhea +Sanjana +Sayra +Sinai +Stevie +Tamia +Tyra +Xochilt +Adelaide +Ally +Annelise +Bernice +Cienna +Dayna +Dennise +Eloise +Estephanie +Hunter +Izabelle +Janely +Jasmyn +Livia +Lucille +Mariel +Mariyah +Morelia +Nallely +Rosie +Roxy +Sabina +Sofie +Sydnee +Yasmeen +Alexsandra +Amari +Ashlie +Azul +Beverly +Bridgette +Brissa +Cara +Cassie +Christiana +Dallas +Dora +Elianna +Emmy +Felicia +Frankie +Hallie +Ileana +Isha +Jacklyn +Janine +Jasleen +Kacie +Karlee +Karli +Kaylani +Kimora +Leann +Macey +Malina +Melani +Melania +Mindy +Moriah +Romina +Savana +Taliyah +Alycia +Amerie +Amina +Andie +Annamarie +Ashanti +Charity +Ciera +Danae +Darla +Elvia +Emerald +Haily +Jaquelyn +Jessenia +Jessika +Josefina +Kai +Maryann +Nylah +Patience +Rayna +Serina +Tatianna +Tianna +Vera +Vienna +Aliana +Anisha +Aspen +Belle +Brandi +Brianne +Carley +Dorothy +Estela +Heavenly +Jackelin +Jackie +Jaelynn +Judy +Kendal +Laysha +Leilah +Marlee +Marlena +Matilda +Meagan +Nyah +Odalys +Rochelle +Rosalie +Shaylee +Shyla +Tea +Vivienne +Ailani +Alannah +Alexandrea +Amiya +Cherish +Clarisa +Deisy +Evangeline +Farrah +Hadley +Hailie +Harleen +Honey +Iman +Ivonne +Janie +Jayna +Jenessa +Jessalyn +Jizelle +Kaleigh +Loren +Lori +Madalynn +Micah +Reanna +Rianna +Stefany +Vivianna +Zulema +Abygail +Amiyah +Analy +Anayeli +Bonnie +Brigitte +Carlie +Chase +Cinthya +Destany +Donya +Elliana +Eryn +Estella +Gema +Giuliana +Jesenia +Karolina +Laylah +Leena +Lynn +Magali +Makaylah +Marcella +Marin +Marlyn +Melannie +Melony +Milana +Monika +Nika +Olga +Priya +Raegan +Reilly +Shelly +Sheridan +Shyann +Soledad +Sonja +Vianca +Yaquelin +Abbigail +Alanah +Alexi +Alisson +Alysha +Briseis +Candace +Cecelia +Charlee +Christa +Consuelo +Dina +Elvira +Esha +Gisel +Hilda +Jaime +Jannet +Jenelle +Joann +Joleen +Kalie +Kalina +Katerina +Katlyn +Keily +Kelli +Kristal +Lillianna +Lilyanna +Malena +Maren +Maryam +Mayah +Millie +Nadya +Nalani +Naomy +Noel +Nya +Sabine +Sahara +Saige +Stefani +Taya +Thania +Treasure +Yara +Yazmine +Abbie +Ahtziri +Aidan +Aislinn +Alanis +Alexys +Allyssa +Aniah +Annmarie +Ariah +Asha +Bertha +Betsy +Beyonce +Bree +Cailyn +Cayla +Davina +Eleni +Emeli +Emi +Evelynn +Finley +Giavanna +Giulia +Imelda +Jaedyn +Jahaira +Jailyn +Jennie +Jovana +Karlie +Katalina +Kenzie +Kya +Kylah +Liv +Mae +Maira +Marbella +Marleen +Mikaila +Misha +Mollie +Nellie +Susanna +Tierra +Verenice +Vivien +Zariah +Anamaria +Antoinette +Ashely +Aya +Berlin +Bianka +Brook +Campbell +Charley +Christian +Cianna +Colleen +Corrina +Elana +Elia +Francine +Gwen +Hennessy +Iyana +Izel +Jalyn +Janelly +Jayde +Jeniffer +Jesse +Justina +Kaeli +Kaelynn +Kamilah +Kiarra +Klarissa +Kyndall +Madilynn +Mariafernanda +Meadow +Neida +Ocean +Petra +Rory +Sade +Sequoia +Suzanne +Trista +Valarie +Yanet +Yesica +Abbygail +Adrianne +Aixa +Anabell +Anastacia +Audrie +Averie +Bernadette +Delanie +Destini +Deysi +Doris +Ema +Ester +Franchesca +Geneva +Gretchen +Halie +Italia +Janiya +Janiyah +Jaylen +Jazelle +Jennyfer +Joceline +Kallie +Kamille +Karis +Katya +Kaycee +Kierra +Kyara +Lacy +Lili +Lilyann +Litzi +Liyah +Mariajose +Marjorie +May +Maylin +Mikaylah +Milla +Mirella +Mona +Nikita +Nubia +Priyanka +Quetzalli +Randi +Rosalia +Rosalyn +Veda +Venus +Yanira +Aaliah +Aide +Alaysia +Alessia +Alyah +Alyssia +Amarie +Anessa +Anyssa +Atiana +Aura +Betty +Bryn +Cailin +Caitlynn +Carys +Caylee +Charisma +Dariana +Demi +Elisha +Ember +Emelyn +Essence +Faye +Flora +Gracelyn +Haleigh +Ines +Inez +Jana +Jena +Jianna +June +Kacey +Kaily +Kayle +Keara +Kinsey +Lacie +Lizbet +Lizett +Lynda +Makaela +Maricruz +Martina +Michel +Mildred +Monet +Nayelie +Rayleen +Rayne +Robyn +Saanvi +Sahana +Samarah +Sanaa +Sanai +Soleil +Uma +Vania +Winter +Yoseline +Yoselyn +Zitlaly +Abigale +Addyson +Alora +Amie +Amirah +Andria +Angelie +Ania +Armani +Arwen +Aviana +Carmella +Chanelle +Cheryl +Elora +Emalee +Emelie +Evan +Hannia +Haydee +Hellen +Holland +Irlanda +Jaliyah +Jaylyn +Jayme +Jovanna +Julieanna +Kaci +Kailie +Karisma +Kennedi +Keren +Khushi +Leslye +Lexy +Lillyana +Maeve +Mariaguadalupe +Marianne +Maura +Michele +Mirna +Misty +Nautica +Rilee +Rosemarie +Samia +Shantal +Shawna +Solana +Stephania +Sunshine +Thea +Tiare +Violette +Zaria +Zayra +Abagail +Alaya +Alayah +Alianna +Analiese +Angelia +Angelika +Ariyah +Arlyn +Arushi +Brookelyn +Carrie +Chantel +Ciarra +Deana +Destinie +Divine +Edna +Elly +Enya +Estelle +Evalyn +Evie +Genessis +Gissele +Glenda +Gurleen +Gwenyth +Idaly +Ilse +Isadora +Ivory +Iyanna +Jadah +Jalyssa +Janay +Jarely +Jaylah +Jazmyne +Jeslyn +Jiya +Jodie +Kaelin +Karmen +Kathya +Kavya +Keala +Keanna +Leona +Linnea +Lorelai +Lorraine +Mabel +Madysen +Malani +Mariella +Marleny +Marylin +Mikalah +Minerva +Mischa +Montana +Naidelyn +Odalis +Paisley +Portia +Pricila +Prisila +Remy +Saniyah +Sarahy +Seanna +Shaelyn +Starr +Tanisha +Taniya +Tanvi +Yuna +Zion +Adamary +Akayla +Alba +Amaia +Amia +Anaiya +Aneesa +Anel +Angelita +Anjolie +Anusha +Anushka +Arden +Ariela +Arlin +Aurelia +Avani +Ayah +Azalia +Betsaida +Bria +Briceida +Cailey +Caleigh +Carli +Carmela +Cate +Celene +Chelsie +Christie +Cloe +Cordelia +Daira +Dani +Darcy +Daria +Dawn +Debora +Divya +Elayna +Emelia +Emiley +Evelina +Farah +Gaby +Ila +Ilianna +Itzayana +Jacey +Jazzlyn +Jordynn +Julieann +Julyssa +Kailynn +Kaleah +Kamaya +Kamilla +Kathia +Kelsie +Khloe +Lainey +Lilith +Loretta +Louisa +Madisen +Malea +Mariza +Mayte +Mea +Meghana +Meilani +Mikala +Milena +Nahomi +Nayelli +Nyomi +Raelyn +Reece +Sania +Selma +Serafina +Shauna +Shay +Sherry +Terra +Triniti +Tristan +Venice +Veronika +Xenia +Yamile +Aaralyn +Acacia +Adrina +Airam +Aleksandra +Alyanna +Alyse +Amairani +Ami +Analia +Angelena +Arlett +Arya +Ashlin +Aubriana +Averi +Ayesha +Betsabe +Brea +Celest +Ciana +Clarice +Clementine +Constance +Danya +Dara +Debra +Ela +Elektra +Ellery +Eloisa +Estephany +Evany +Evelia +Faviola +Francis +Harlee +Ileen +Irie +Isla +Jamileth +Jamison +Kacy +Kassie +Kellie +Kimberley +Kimiko +Lani +Leilanie +Libby +Lyndsey +Malak +Malaysia +Marilu +Mattea +Mayela +Medha +Melyssa +Merissa +Mykayla +Naiya +Nidhi +Noemy +Nohemi +Nova +Ramona +Raya +Rhianna +Rina +River +Rosalba +Rosalina +Sachi +Salome +Samaya +Sana +Shana +Taliah +Tayla +Tegan +Tenaya +Tiffanie +Vy +Willa +Xitlalic +Yana +Yanely +Yenifer +Yuliza +Zahara +Zaida +Zaina +Zainab +Adrian +Aiden +Aja +Akira +Alea +Aleeza +Aleida +Ali +Alliyah +Alysia +Amberly +Amilia +Analyssa +Ankita +Annamaria +Anoushka +Apple +Ariadne +Arlet +Ashli +Audriana +Becky +Bethanie +Briley +Caprice +Catrina +Cecily +Charis +Chaya +Cristy +Cydney +Dayami +Denice +Deziree +Dianne +Dyanna +Egypt +Ellis +Emelin +Emerie +Emmi +Eris +Fallon +Fiorella +Giada +Gizel +Glory +Guinevere +Hermione +Ilana +Isa +Jaeda +Jaila +Jalissa +Janel +Janna +Jaya +Jaycee +Jayline +Jeannette +Jenesis +Jersey +Jia +Jorden +Jubilee +Kaden +Kaira +Kameron +Kari +Katlynn +Kaytlin +Keeley +Keilah +Kelis +Kim +Kloe +Korina +Leeann +Leiah +Lela +Leonor +Lexus +Lilli +Lillia +Lillyanna +Lisset +Lucie +Mackenna +Maegan +Mai +Maliah +Maliya +Marcia +Mariaelena +Marielena +Marielle +Marta +Maryah +Marysol +Meleny +Melodie +Merari +Monzerrat +Mylah +Nanci +Nisha +Nuvia +Olyvia +Passion +Payten +Remi +Robin +Rosy +Ryley +Samaria +Shani +Shaniya +Shivani +Sia +Sindy +Siya +Tamera +Tatiyana +Tatyanna +Tehya +Therese +Tristen +Varsha +Venecia +Yamila +Yanelly +Ysabel +Zaara +Aaniyah +Adelyn +Aiyanna +Alessa +Alida +Aline +Ameera +Aminah +Analee +Anali +Analicia +Angelyna +Annabell +Antonella +Arianne +Ariatna +Ariya +Athziri +Audra +Avelina +Azaria +Bibiana +Breeana +Brieanna +Bryce +Caelyn +Cesia +Cosette +Darby +Darleen +Darya +Dasha +Desire +Deyanira +Elsy +Elysia +Emalie +Emili +Emilly +Emme +Evette +Francisca +Gardenia +Getsemani +Gisella +Harlie +Harmonie +Hayleigh +Henna +Itzia +Jael +Jaimie +Janai +Janell +Jemma +Joan +Jodi +Josalyn +Joscelyn +Joselyne +Kalena +Kalista +Kamea +Kaniya +Kareena +Karizma +Kay +Kaylene +Keana +Keiry +Kelsea +Kelsy +Kiani +Kimberlyn +Kiran +Laurie +Lilibeth +Linette +Lisseth +Liz +Lovely +Luca +Lucinda +Madelaine +Maite +Marcelina +Margaux +Maricarmen +Marifer +Marlie +Maryanne +Meena +Melonie +Michell +Mimi +Moira +Moncerrat +Naya +Neela +Nidia +Niki +Niya +Nola +Nyssa +Olive +Parris +Polina +Poppy +Prisha +Rayven +Rhiana +Rubie +Sakura +Salem +Salina +Sammantha +Sanya +Shae +Shakira +Shanna +Sherlin +Shriya +Simona +Sloane +Sneha +Sol +Spencer +Susie +Sydni +Tallulah +Talya +Taytum +Tristin +Viktoria +Winnie +Yaretzy +Yeimi +Yulianna +Yuvia +Aarushi +Abriana +Addie +Ailin +Alexxis +Aleyda +Allana +Amayrani +Anay +Anyah +Aranza +Arin +Ashlynne +Ashton +Atianna +Atziry +Aylene +Azariah +Betzy +Bianey +Breann +Brooklynne +Cameryn +Caydence +Chantelle +Charlise +Christianna +Cloey +Corinna +Daizy +Delany +Delila +Desirey +Divina +Dolores +Elida +Emiko +Emiliana +Erendira +Esme +Evalynn +Evelyne +Genisis +Gennesis +Gimena +Gracelynn +Gricelda +Henessy +Irais +Ivett +Izabela +Jamilet +Janaya +Janiah +Jaslyn +Jenae +Jennah +Jhoanna +Jill +Joie +Jolee +Jordana +Josseline +Kailah +Kairi +Kalee +Kaleena +Karley +Kaylan +Kelsi +Kendyl +Keyanna +Khadija +Khalia +Kiya +Kori +Kyli +Leana +Leandra +Lessly +Lizzette +Lynnette +Makala +Malayna +Marilynn +Mariya +Marylu +Mason +Matilde +Melanny +Meliza +Milani +Miliani +Monserat +Myriam +Naidelin +Nelida +Nikayla +Ninel +Penny +Queen +Raelene +Rain +Rayanna +Rian +Rihanna +Rio +Rylan +Saloni +Saniah +Sawyer +Scarlette +Sela +Seleste +Shanelle +Shantel +Shaylynn +Shayne +Shiloh +Shira +Shruti +Siara +Sicily +Sirena +Stacie +Stefania +Suzanna +Sylvie +Symphony +Tanner +Trinidad +Tyla +Vaishnavi +Vicki +Vivica +Yajayra +Yelena +Yoana +Yocelin +Yuri +Zamira +Aanika +Abrianna +Adelle +Adia +Adison +Alexie +Alexzandra +Aleya +Alinna +Alonna +Alynna +Alysse +Amal +Amariah +Ambar +Ameena +Amyah +Anahit +Anakaren +Analyse +Anapaula +Angellina +Annemarie +Araya +Ari +Ariyanna +Audrianna +Avigail +Ayden +Ayiana +Ayva +Aziza +Blessing +Bobbi +Bobbie +Breeanna +Brinley +Briza +Brizeida +Callista +Camden +Caris +Carson +Caterina +Caylie +Charli +Chasity +Chelsy +Chevelle +Christal +Christopher +Chrystal +Citlally +Clover +Daijah +Daisha +Darian +Deena +Denia +Edie +Eliyah +Emani +Ezra +Florence +Gaia +Gladis +Hiromi +Honesty +Illiana +Issabella +Itati +Ixchel +Izabell +Jacinda +Jadelyn +Jadelynn +Jaela +Jaelene +Jahzara +Jaidan +Jalynn +Jaydyn +Jaymie +Jazira +Jazzlynn +Jeanine +Jeannie +Jenavieve +Jenaya +Jenica +Jennalyn +Jenni +Jessi +Jesslyn +Jezebel +Jocelynne +Jolina +Joycelyn +Juan +Kala +Kalissa +Kamara +Karoline +Katana +Katharina +Kathrine +Kaylei +Kelani +Keziah +Kiarah +Kimani +Kimberli +Krishna +Kristi +Kristiana +Krystina +Kyah +Lanaya +Laniya +Leidy +Leslee +Lesslie +Leylani +Liah +Lilit +Lilyan +Lindsy +Linsey +Liset +Liza +Lizzeth +Lorna +Madai +Magdalene +Magnolia +Maiah +Malayah +Mariko +Marla +Marlin +Marwa +Maryn +Maryssa +Mattie +Medina +Mena +Mercedez +Meya +Milly +Miyah +Myrna +Nandini +Nayla +Nazareth +Neftaly +Neyda +Nickole +Nikole +Nirvana +Odette +Oriana +Paradise +Paulette +Payge +Quincy +Rafaela +Rania +Rashel +Reana +Rebeka +Reem +Remington +Rida +Rileigh +Roberta +Rosaura +Roselin +Roya +Saba +Saraya +Sarita +Sascha +Saydee +Sedona +Shaina +Sharleen +Sharlene +Sheccid +Shianne +Siera +Siobhan +Skyy +Starla +Suhani +Symone +Tala +Taniyah +Tristyn +Tru +Vannesa +Verena +Xochil +Yanelli +Yanitza +Yarisbel +Yocelyn +Yunuen +Yuriana +Zurisadai +Adalie +Addisyn +Adina +Adria +Adriane +Aeris +Agnes +Aiko +Aila +Ailene +Aine +Aislyn +Alexiah +Alise +Alizay +Alyn +Amairany +Amayah +Amayrany +Amiah +Amrit +Amrita +Analucia +Anamarie +Anasofia +Angelee +Angelene +Angelic +Angelyn +Annalee +Annel +Aolani +Aralyn +Arieana +Aries +Ariyana +Arizbeth +Aryssa +Aubrielle +Audree +August +Avianna +Avneet +Beatrix +Blair +Braelyn +Brianda +Briar +Bridgett +Brigette +Britny +Brookelynn +Brooklin +Cady +Calla +Calliope +Candelaria +Carter +Catarina +Cathryn +Caylin +Celena +Charly +Chyanne +Coco +Concepcion +Cortney +Daiana +Daniel +David +Dayra +Deandra +Debbie +Desiray +Dharma +Drea +Dulcemaria +Eesha +Ekaterina +Elexis +Elisia +Elliot +Elliott +Elyana +Emmalyn +Emmily +Erandi +Fayth +Francheska +Gabriel +Gagandeep +Giovana +Grayson +Hania +Havana +Helene +Heydi +Ianna +Idalia +Inaya +Isamar +Italy +Iveth +Ivon +Jacy +Jadynn +Jalia +Jalisa +Jania +Jannah +Jasmeen +Jasmeet +Jasmyne +Jatziry +Jaydin +Jaymee +Jean +Jeanne +Jessa +Johnnie +Joi +Jordin +Jorja +Josette +Jules +Justyce +Kailea +Kalei +Kaliah +Kamari +Kamora +Kamya +Karine +Kasia +Katey +Katherin +Kathlyn +Kaytlyn +Keaton +Keilyn +Keyana +Kiely +Kieran +Kimberlee +Kirah +Kora +Kristyn +Krysta +Kyrsten +Laela +Lamya +Lanie +Laryssa +Lezly +Liel +Lisbet +Londyn +Louise +Love +Lyna +Madelyne +Mahek +Maili +Maisie +Makyla +Malaika +Marayah +Margot +Mariadejesus +Marialuisa +Mariann +Marilin +Mayrin +Meera +Megha +Melenie +Melodee +Metzli +Miabella +Minnie +Mitzy +Muskan +Mylee +Naila +Nakayla +Naraly +Navya +Neftali +Nereida +Niyah +Noely +Nour +Nydia +Odessa +Ophelia +Parisa +Persephone +Promise +Rachell +Raelynn +Raena +Rebecka +Reena +Rena +Rene +Reya +Riana +Rikki +Ritika +Rosalynn +Rosamaria +Ruthie +Safiya +Sakina +Saleen +Samari +Samiah +Samika +Samiyah +Sanam +Sapphire +Sariya +Scout +Semaj +Shanell +Sharlyn +Shelbi +Shelsy +Siana +Sianna +Silvana +Stephani +Sulema +Synthia +Taliya +Tamar +Tasneem +Teresita +Tiffani +Tricia +Tyanna +Vi +Vida +Yahira +Yoanna +Yuritzi +Zada +Zamara +Zayda +Zayna +Aalyah +Abbygale +Abigael +Abrielle +Adali +Adalyn +Adele +Adithi +Adylene +Afton +Aishwarya +Akasha +Alany +Alara +Alaura +Aleen +Alexxa +Alexzandria +Allysa +Althea +Aly +Alyana +Alyssandra +Alyvia +Alyza +Amarissa +Amethyst +Ameya +Amor +An +Anaiah +Anaiyah +Ananda +Andra +Angelle +Angy +Aniela +Anisah +Anishka +Anjelica +Anneka +Aoife +Aparna +Arian +Arianah +Arisbeth +Arwyn +Ashanty +Ashleen +Ashna +Atziri +Audri +Austyn +Aysia +Baleria +Baylie +Berlynn +Betzayra +Billie +Brandie +Breanne +Briceyda +Britanny +Brithany +Calissa +Calli +Callia +Capri +Catelyn +Cayden +Chayse +Chiamaka +Chyna +Corrine +Corryn +Danay +Danni +Dasia +Daysha +Daysi +Dejah +Delani +Delicia +Della +Delyla +Denae +Deserie +Devika +Devina +Doreen +Ebelin +Elani +Elda +Eleana +Elicia +Elinor +Elisabet +Ellianna +Ellison +Elva +Elysa +Emmely +Emy +Enid +Eowyn +Eryka +Esli +Eugenia +Ezmeralda +Fabiana +Fanny +Freya +Freyja +Gabby +Genevie +Genna +Georgiana +Gianni +Giulianna +Gretel +Gretta +Guillermina +Hadassah +Haidee +Halia +Hattie +Havanna +Herlinda +Huda +Ida +Illeana +Ilona +Imari +Indigo +Indira +Ivania +Ivie +Izela +Jaci +Jacklynn +Jadeyn +Jailah +Jailene +Jailynn +Jaimee +Jakelin +Jaleen +Jamaica +Jamila +Janea +Janeen +Janett +Janey +Jannette +Janya +Jayleene +Jayne +Jaynie +Jazlin +Jazzmin +Jazzmyn +Jesus +Jewels +Jiana +Jolynn +Jonathan +Josefine +Josslyn +Journee +Jude +Judit +Julieanne +Julietta +Juniper +Jurnee +Kadance +Kady +Kadyn +Kadynce +Kaiden +Kaleia +Kalin +Kalyn +Kambria +Kameryn +Kana +Kandy +Kareli +Karin +Karolyn +Karyssa +Katelynne +Kaylea +Keilana +Keisha +Kendy +Keona +Keya +Kiah +Kierstin +Kimberlie +Kirstyn +Kiyomi +Klara +Kourtney +Krysten +Kylene +Kyrah +Lailoni +Laniyah +Lanna +Lavinia +Laylani +Layne +Leeah +Leigha +Leya +Leylah +Lilyanne +Lisandra +Liseth +Lissa +Loryn +Lotus +Lucila +Lula +Luzmaria +Lyndsay +Mahika +Mailee +Makalah +Makiah +Malika +Manya +Marely +Marijane +Marily +Marion +Maritsa +Marlenne +Maryanna +Maureen +Maycee +Maylee +Meah +Meghna +Melanee +Melaney +Michal +Mickayla +Miku +Milca +Mileena +Mireille +Momoka +Monroe +Nadiya +Nahomy +Nailah +Naina +Naliyah +Nalleli +Natania +Navaeh +Nayelly +Naylea +Nayomi +Nevaeha +Nicolle +Nicollette +Nila +Nisa +Nitya +Octavia +Odyssey +Osiris +Patty +Persia +Pooja +Ramya +Ranya +Rayann +Raylynn +Roni +Safa +Samirah +Samiya +Sariyah +Saylor +Sejal +Shalini +Shane +Shanya +Sherly +Shoshana +Shylah +Siomara +Sivan +Skylee +Sruthi +Suraya +Tabatha +Tahlia +Tamana +Tamyra +Tawny +Taylin +Teah +Tera +Terri +Teryn +Tyana +Una +Vannia +Vanya +Vianna +Viola +Wendi +Yaire +Yatziry +Yliana +Yui +Yuki +Yuritza +Yzabella +Zahira +Zamantha +Zaniyah +Zarina +Zenia +Zofia +Zora +Zoraya +Zyanya +Aaliya +Aashna +Aastha +Abilene +Acelyn +Adaly +Adelaida +Adelene +Adelia +Adelynn +Adreana +Aeryn +Ahtziry +Akari +Alaysha +Alexcia +Alexsa +Aliciana +Alix +Alizah +Allena +Alli +Alona +Alyissa +Alyssah +Alyssamarie +Ameerah +Amparo +Analeah +Anayah +Anela +Angely +Anicia +Anja +Annali +Annalicia +Annalie +Annalyse +Antonette +Arabelle +Argelia +Arline +Arrianna +Aryan +Asucena +Aubrianna +Aundrea +Avah +Aviva +Aylen +Aysha +Azure +Belicia +Bethel +Blythe +Bo +Briannah +Brighton +Brylee +Brynna +Cadance +Caden +Cally +Caren +Carmina +Catharine +Chana +Chance +Chastity +Chesney +Chloee +Clair +Clarisse +Claryssa +Collette +Cori +Daija +Dailyn +Dakotah +Danely +Danyelle +Daphnie +Dayan +Deisi +Dejanae +Delaina +Delainey +Delfina +Delina +Demarie +Desaree +Destanie +Devan +Devynn +Dezirae +Dixie +Dyana +Dynasty +Elizah +Elodie +Emarie +Emeline +Emmaline +Emmerson +Emylee +Erynn +Fantasia +Faythe +Gauri +Georgie +Geovanna +Gigi +Gizell +Gracia +Graciella +Gracyn +Gwendalyn +Hadeel +Hafsa +Hali +Halley +Harini +Havyn +Haylei +Hazell +Heavenlee +Heavyn +Hollie +Idalis +Idania +Ileanna +Imogen +Indya +Inessa +Ishani +Ishita +Isobel +Itzela +Itzell +Itzy +Iva +Izamar +Jacelyn +Jacie +Jackelyne +Jaclynn +Jadin +Jaeden +Jakeline +Jalene +Jami +Jamilette +Janis +Janneth +Jaslin +Jasminemarie +Jaycie +Jazmen +Jeanna +Jeannine +Jeimy +Jelani +Jelena +Jenavie +Jenevie +Jenevieve +Jesica +Jhoana +Jody +Johnna +Joshua +Josilyn +Joslynn +Jozlyn +Julian +Juliann +Julieana +Juliza +Kadie +Kahlen +Kaiah +Kaileigh +Kaithlyn +Kalli +Kamaria +Kamiya +Kandace +Kandice +Kaori +Karena +Karisa +Katerin +Kathryne +Kayra +Keani +Keeli +Keiley +Keilly +Kellyn +Kemberly +Kennady +Kennia +Keyli +Kiele +Kimberlin +Kirstin +Kristie +Kyana +Kyanna +Kymberly +Lael +Lailani +Laina +Laine +Lakshmi +Lanea +Lavender +Layna +Leela +Leiana +Lelah +Leora +Lexa +Lexis +Lilianne +Liliya +Lillyan +Lizzet +Lizzie +Lucianna +Lucienne +Lupe +Lylah +Lyra +Lysette +Macayla +Maddox +Madelin +Madelynne +Mahima +Maisy +Makailah +Malana +Mali +Malissa +Mallika +Mallorie +Malorie +Mandi +Manpreet +Maranda +Marelyn +Margie +Marly +Maryan +Maryana +Matea +Matisse +Maycie +Maylene +Mayumi +Mckenzi +Meaghan +Mele +Merilyn +Metztli +Micaiah +Micayla +Midori +Mikyla +Miliana +Miroslava +Mitzi +Morgyn +Muskaan +Myia +Myka +Mykaela +Mykala +Mykenzie +Myracle +Nadira +Naia +Naomie +Narali +Nariah +Nashaly +Nataliya +Natally +Nathan +Naudia +Naydelyn +Nena +Nerissa +Niah +Niamh +Nichelle +Nicola +Nijah +Noah +Noe +Paityn +Parneet +Pranavi +Preslee +Quetzali +Ramsey +Raquelle +Rashelle +Ravyn +Rhyan +Riona +Risha +Romy +Rori +Rosanna +Rosely +Roselynn +Roslyn +Rosselyn +Rozlynn +Rut +Rya +Ryanne +Rylei +Rylin +Saachi +Sadia +Samah +Sammy +Sandi +Seraphina +Shadia +Shamya +Shaniah +Shannen +Shasta +Shaya +Shaylin +Sheily +Shelbie +Siri +Sloan +Socorro +Sofiya +Sommer +Sophya +Sujey +Sukhman +Sunnie +Surabhi +Suzan +Suzie +Tais +Tali +Talisa +Tarah +Tasia +Teairra +Teanna +Teya +Thy +Tiani +Tionna +Tonantzin +Triana +Trish +Tuesday +Tylee +Valencia +Verenise +Veronique +Vianne +Vidhi +Vielka +Vilma +Vivianne +Waverly +Wren +Xiana +Yael +Yaira +Yamilett +Yamilex +Yaribeth +Yazmeen +Yeni +Yohana +Yovana +Yulia +Yuritzy +Yusra +Zelda +Zitlali +Zitlalli +Zoya +Zuleima +Zuleyka +Aasha +Aashi +Abbigale +Abegail +Abra +Adalia +Adara +Adelayda +Adelin +Adi +Adora +Adreena +Advika +Ahniah +Aidee +Aika +Ailany +Aili +Aime +Aisling +Aiza +Akaylah +Akemi +Akshara +Alaia +Aleeya +Aleeyah +Aleisha +Alexsia +Alexsis +Alexy +Alexya +Aleyah +Aleyna +Alicen +Alisia +Aliyana +Alizabeth +Alizae +Allegra +Allisyn +Amaiyah +Amarachi +Amberlyn +Aminata +Amora +Anadalay +Anagha +Anahita +Anaid +Anaisa +Andreina +Andy +Anely +Anett +Angeleena +Angeli +Angelin +Angella +Anh +Anjelina +Anmarie +Anmol +Annete +Annica +Anny +Anyiah +Anyla +Anysia +Apoorva +Arayah +Arcelia +Arial +Ariane +Arieanna +Arika +Arisa +Arriana +Arshdeep +Asa +Aseel +Ashby +Ashlan +Ashlen +Ashtyn +Astha +Audry +Augusta +Austin +Avalee +Aven +Avni +Ayumi +Ayushi +Azeneth +Bailie +Bayley +Beatris +Bentley +Berlyn +Betzaira +Betzayda +Bijou +Biridiana +Blake +Bracha +Brady +Brayden +Briauna +Bricia +Brie +Brienna +Brina +Brionna +Brooklyne +Bryanah +Brynne +Cailynn +Caley +Calysta +Camdyn +Camelia +Carisa +Carmelita +Carolyna +Carsyn +Cassia +Cecile +Cecy +Cerina +Chandra +Channel +Channing +Charisse +Charmaine +Chelsi +Cherokee +Cherry +Chloey +Claribel +Claudette +Cleo +Coraima +Corey +Corrie +Cristiana +Cruz +Dagny +Daisey +Daisie +Daliah +Darianna +Darling +Darlyn +Dasani +Davia +Dayani +Dayannara +Dayla +Daylin +Dayrin +Deeya +Deija +Deirdre +Delmy +Delylah +Denali +Deserae +Deseree +Destani +Destine +Destyni +Devanie +Dia +Disha +Divinity +Domonique +Dream +Dylann +Eliah +Elidia +Elizabet +Elizaveta +Ely +Emari +Emelly +Emmah +Emmaly +Emmeline +Eniyah +Erandy +Ernestina +Esly +Estephania +Estrellita +Eulalia +Eveleen +Evelen +Evy +Felisha +Francia +Galia +Geena +Genavieve +Genesee +Genesys +Genevy +Georgette +Geselle +Gianina +Giavana +Gissela +Graceann +Gracen +Gracy +Gweneth +Haeley +Haillie +Hala +Halee +Hanah +Harlow +Harmoni +Harshini +Hayle +Hayli +Heily +Hiba +Hikari +Hila +Hosanna +Ilaria +Ileene +Ilyanna +Imunique +Inari +Indiana +Irena +Iriana +Irina +Ishika +Isra +Itcel +Itxel +Itza +Jacquline +Jadzia +Jahnavi +Jala +Jamaya +Janee +Janeli +Janiece +Janina +Jannie +Jareli +Jaslynn +Jasmen +Jasmina +Jasminne +Jazalyn +Jazmynn +Jazzmine +Jeanelle +Jenay +Jenise +Jennavie +Jennessa +Jennica +Jenniffer +Jesika +Jessy +Jestine +Jewell +Jezel +Jilian +Jinelle +Jisel +Jisselle +Joely +Johannah +John +Joleena +Jolin +Joline +Jonelle +Joselynn +Josephina +Josselin +Julliana +Julyana +Julyanna +Justeen +Kaavya +Kaelani +Kaeley +Kaelie +Kaely +Kaidence +Kaidyn +Kaija +Kalaya +Kalila +Kalise +Kalynn +Kalyssa +Kamden +Kami +Kanisha +Karah +Karsyn +Katheryne +Kati +Katlin +Kattie +Katty +Kaycie +Kaydee +Kaysie +Kaytlynn +Kazandra +Kelley +Kemora +Kenadee +Kenisha +Kennedie +Kerri +Kerry +Keylin +Keyra +Kezia +Kimia +Kitana +Kloey +Komal +Krystel +Kyaira +Kylea +Kyleen +Kyndra +Laelani +Laiba +Lainee +Laiza +Lanae +Larisa +Laritza +Leeanna +Leeanne +Lelani +Leonora +Leyah +Leyda +Leylanie +Lillith +Linsy +Linzy +Lizabeth +Lois +Lonnie +Lorien +Lucca +Lunna +Luzelena +Lya +Lynae +Lynna +Lynzie +Maayan +Maddie +Maddyn +Mahogany +Mairany +Makiya +Malaina +Maleena +Malini +Manaia +Manasvi +Maniyah +Manmeet +Manuela +Maraya +Mariadelcarmen +Mariaisabel +Maricella +Marilena +Marivel +Marleni +Marli +Marriah +Marsha +Marycruz +Marylou +Mataya +Mathilde +Mayeli +Mayla +Maylen +Mecca +Mei +Meliah +Melinna +Melodi +Merlyn +Meztli +Michaella +Milagro +Milania +Milenka +Mirabel +Mixtli +Monae +Moncerat +Moncerrath +Montserrath +Morgen +Mylene +Myranda +Myrka +Nadiyah +Nailea +Naiomi +Nairi +Nakia +Nana +Nashley +Nasia +Nataley +Nathalee +Natividad +Nautika +Naydeline +Nayleen +Naysa +Neeka +Nelia +Nereyda +Nevada +Neve +Nicholette +Nikka +Nirel +Noemie +Nyana +Oceana +Oceanna +Oralia +Orianna +Pallavi +Polly +Precilla +Preciosa +Prescilla +Presleigh +Priseis +Prisilla +Racquel +Radha +Raeann +Raechel +Rafaella +Raine +Raisa +Ramiyah +Rana +Raneem +Raychel +Renae +Rheanna +Rilyn +Rishika +Roma +Ronnie +Roxane +Ryanna +Sabreen +Sachiko +Safia +Sahar +Saiya +Salena +Samaira +Samaiya +Sammi +Samya +Sandie +Sanika +Sarena +Satya +Selin +Sena +Sera +Serene +Shai +Shaira +Shanaya +Shanice +Shannel +Shante +Shantell +Shanti +Shawn +Shaylah +Shelley +Shiann +Shree +Shreeya +Shylee +Siddhi +Simranjit +Sinahi +Sinead +Sitlali +Skylynn +Smriti +Sofi +Solange +Soriah +Spring +Sriya +Starlyn +Steffany +Swetha +Sylvana +Syncere +Tabetha +Talula +Talulah +Tamya +Tate +Tayah +Taylar +Teagen +Teia +Tenley +Tereza +Tiera +Tommie +Topacio +Torrance +Traci +Troi +TRUE +Tulsi +Vada +Valentine +Valeri +Vallerie +Venessa +Venezia +Violetta +Viviann +Wynter +Xiclaly +Yalitza +Yaneth +Yanette +Yanina +Yareni +Yareth +Yatana +Yatziri +Yelitza +Yennifer +Yohanna +Yoltzin +Ytzel +Yulitza +Yumi +Yuridiana +Zakiya +Zariya +Zariyah +Zaylee +Zenaida +Zuleyma +Emily +Isabella +Ashley +Mia +Samantha +Natalie +Sophia +Emma +Abigail +Ava +Madison +Elizabeth +Alyssa +Kimberly +Brianna +Jasmine +Andrea +Jessica +Alexa +Olivia +Hannah +Valeria +Sarah +Angelina +Jocelyn +Jennifer +Alexis +Chloe +Victoria +Vanessa +Stephanie +Sofia +Michelle +Evelyn +Maria +Kayla +Melanie +Grace +Destiny +Alexandra +Hailey +Valerie +Leslie +Natalia +Maya +Lauren +Ariana +Katherine +Julia +Savannah +Melissa +Isabel +Ella +Diana +Giselle +Nicole +Jacqueline +Audrey +Daniela +Alondra +Taylor +Daisy +Angela +Mariah +Kaitlyn +Gabriela +Ruby +Sydney +Arianna +Lily +Jazmin +Allison +Katelyn +Zoe +Rachel +Amy +Kaylee +Liliana +Adriana +Amanda +Nevaeh +Briana +Esmeralda +Karen +Gabriella +Brooke +Faith +Camila +Sara +Jasmin +Megan +Crystal +Genesis +Jade +Gianna +Kylie +Guadalupe +Mariana +Fatima +Karla +Alejandra +Madeline +Rebecca +Marissa +Naomi +Anna +Ana +Angelica +Katie +Aaliyah +Sienna +Brenda +Makayla +Karina +Miranda +Claire +Riley +Avery +Cynthia +Bianca +Juliana +Trinity +Isabelle +Keira +Leah +Jenna +Alicia +Lillian +Julissa +Danielle +Brooklyn +Charlotte +Amelia +Anahi +Catherine +Haley +Alexia +Jazmine +Eva +Kate +Leilani +Layla +Morgan +Sierra +Dulce +Jordan +Tiffany +Bella +Breanna +Monica +Sophie +Aubrey +Addison +Mackenzie +Paige +Emely +Paola +Amber +Lizbeth +Cassandra +Priscilla +Elena +Wendy +Mya +Christina +Melody +Carolina +Joanna +Vivian +Sabrina +Estrella +Veronica +Julianna +Nataly +Alana +Itzel +Celeste +Nancy +Desiree +Mary +Erika +Marisol +Mikayla +Kelly +Serenity +Kiara +Laura +Alina +Gabrielle +Cindy +Sadie +Zoey +Viviana +Perla +Ximena +Denise +April +Nayeli +Fernanda +Lesly +Jamie +Nadia +Ariel +Leila +Madelyn +Autumn +Caroline +Bailey +Lucy +Yesenia +Marlene +America +Dayanara +Kassandra +Summer +Alexandria +Violet +Chelsea +Jada +Joselyn +Sherlyn +Ashlyn +Erin +Heidi +Iris +Aileen +Angel +Janelle +Yasmin +Angie +Lilly +Tatiana +Scarlett +Jordyn +Stella +Izabella +Molly +Jayla +Elise +Jimena +Maritza +Daniella +Kennedy +Kaylie +Aliyah +Josephine +Amaya +Cecilia +Reese +Rylee +Lucia +Malia +Alessandra +Helen +Serena +Carmen +Kylee +Sasha +Lindsey +Rosa +Jayden +Sarai +Clarissa +Eliana +Lola +Marina +Annabelle +Jenny +Sandra +Johanna +Kathryn +Cassidy +Laila +Camille +Paulina +Savanna +Peyton +Caitlin +Erica +Noemi +Melany +Gracie +Julie +Ellie +Jillian +Cheyenne +Dana +Gisselle +Kiana +Cristina +Irene +Aurora +Jaqueline +Luna +Monique +Ashlee +Shelby +Fiona +Hazel +Kyra +Alison +Madeleine +Adrianna +Kira +Lindsay +Ruth +Dakota +Miriam +Arely +Nathalie +Selena +Caitlyn +Margaret +Raquel +Claudia +Annika +Kyla +Marilyn +Athena +Payton +Janet +Delilah +Kailey +Alice +Ciara +Natasha +Nina +Araceli +Delaney +Heaven +Kendall +Monserrat +Bethany +Ivy +Rubi +Yadira +Allyson +Alma +Gloria +Skylar +Tania +Alissa +Christine +Linda +Phoebe +Brisa +Carla +Hope +Tessa +Clara +Danna +Hayley +Lizeth +Danica +Isabela +Luz +Siena +Kelsey +Hanna +Penelope +Cristal +Krystal +Melina +Piper +Valentina +Lydia +Katelynn +Maggie +Rose +Yareli +Anika +Elisa +Makenna +Mayra +Paris +Annie +Edith +Valery +Bryanna +Dayana +Brittany +Reagan +Abby +Eden +Genevieve +Judith +Juliet +Britney +Jaden +Yaretzi +Yvette +Belen +Juliette +Kendra +Patricia +Eileen +Samara +Citlali +Lila +Tatum +Arlene +Jadyn +Kaitlin +Kathleen +Martha +Teresa +Cameron +Lana +Sarahi +Stacy +Talia +Eleanor +Esther +Katrina +Maribel +Mckenna +Reyna +Janessa +Lisa +Pamela +Isis +Shayla +Carly +Dalia +Tara +Ayla +Brooklynn +Francesca +Evelin +Anastasia +Angelique +Georgia +Holly +Rocio +Michaela +Roselyn +Aniyah +Rebekah +Camryn +Haylee +Ingrid +Lilian +Nathalia +Nathaly +Sonia +Adilene +Emilia +Heather +Iliana +Jayleen +Amelie +Lorena +Courtney +Jaylene +Aimee +Betsy +Cadence +Daphne +Esperanza +Helena +Nia +Paloma +Tanya +Yazmin +Abril +Damaris +Darlene +Barbara +Galilea +Kiera +Marley +Susana +Anya +Aracely +Bridget +Harmony +Kaelyn +Mercedes +Presley +Yoselin +Lilliana +Makenzie +Stephany +Elaine +Eliza +Lesley +Annabella +Jacquelyn +Jayda +Kristina +Mckenzie +Rylie +Blanca +Haylie +Jazlyn +Margarita +Paula +Shannon +Emilie +Jane +Noelle +Alize +Ashlynn +Kaya +Kaylin +Kristen +Belinda +Kamryn +Lia +Nora +Sage +Tiana +Berenice +Maryjane +Diamond +Mariela +Mikaela +Bethzy +Emilee +Fabiola +Gia +Citlaly +Frida +Larissa +Rosemary +Sharon +Simone +Xiomara +Anaya +Annette +Lauryn +Lizette +Makena +Roxana +Kamila +Kenia +Jessie +Kara +Kathy +Leticia +Rebeca +Regina +Skyler +Aylin +Joy +Karissa +Salma +Ashly +Evangeline +Kenya +Lexi +Maddison +Mayte +Renee +Sidney +Yahaira +Catalina +Giovanna +London +Allie +Donna +Flor +Mila +Yuliana +Aniya +Carissa +Casey +Hailee +Susan +Xochitl +Lea +Lilyana +Litzy +Ainsley +Areli +Carina +Emerson +Grecia +Hana +Hayden +Adamaris +Kaia +Lena +Liana +Lilianna +Marisa +Mireya +Alaina +Joana +Josie +Roxanne +Selene +Dahlia +Kiley +Maia +Noelia +Precious +Skye +Yolanda +Angeline +Celine +Charlize +Jolie +Lexie +Lucero +Luisa +Lyla +Macy +Natalee +Rihanna +Thalia +Danika +Denisse +Elisabeth +Jaelyn +Janice +Mallory +Meghan +Teagan +Anabelle +Arleth +Heidy +Johana +Kassidy +Rachael +Sandy +Sheyla +Yuridia +Anabel +Aria +Asia +Julieta +Marie +Yadhira +Yamilet +Yaretzy +Aleena +Alena +Amara +Aubree +Betzy +Dominique +Madyson +Scarlet +Taryn +Virginia +Alanna +Elle +Graciela +Isabell +Jackeline +Magdalena +Yasmine +Cali +Kailyn +Savanah +Alyson +Beatriz +Carol +Dylan +Estefani +Estefania +Gina +Justine +Yaritza +Adeline +Arielle +Deanna +Joyce +Kayleen +Natalya +Stacey +Sylvia +Yajaira +Alisha +Ellen +Keyla +Kristin +Marianna +Marlen +Ryan +Violeta +Celia +Estefany +Kasey +Montserrat +Silvia +Aisha +Anne +Camilla +Eve +Gladys +Miah +Sariah +Yarely +Yulissa +Arabella +Imani +Jaiden +Joselin +Keila +Lina +Anais +Carolyn +Giana +Kaila +Katia +Luciana +Melinda +Riya +Tabitha +Theresa +Tyler +Brielle +Charlene +Harper +Leyla +Madalyn +Mariam +Reina +Alani +Alayna +Brittney +Chanel +Dania +Gizelle +Ivanna +Jaquelin +Jazmyn +Jenifer +Kaitlynn +Kianna +Mandy +Natali +Nikki +Ryleigh +Tiara +Xitlali +Aiyana +Alisa +Annalise +Aryanna +Azucena +Brenna +Callie +Dianna +Elyse +Felicity +Kaydence +Madisyn +Priscila +Soraya +Baylee +Celina +Desteny +Gissel +Ivette +Kailee +Leanna +Lilia +Logan +Nyla +Suri +Elaina +Gwendolyn +Jaidyn +Jocelynn +Kasandra +Maricela +Princess +Rosalinda +Yvonne +Angeles +Briseida +Cara +Cienna +Dalila +Diane +Ericka +Micaela +Selina +Shirley +Zara +Cherish +Destinee +Gisele +Hilary +Kayleigh +Kayley +Maryam +Ryann +Shreya +Vanesa +Xitlaly +Zaira +Arlette +Deborah +Hillary +Isela +Joseline +Kaiya +Kimora +Kirsten +Lara +Madilyn +Parker +Roxanna +Anabella +Anissa +Aryana +Jaylin +Jolene +Julianne +Lidia +Mina +Adamari +Adelina +Alexsandra +Ayanna +Elissa +Griselda +Janeth +Kali +Krista +Meredith +Odalis +Quinn +Alia +Alivia +Amaris +Aubrie +Beatrice +Brandy +Deja +Elsa +Eunice +Evangelina +Jackelyn +Karol +Leia +Lupita +Maile +Melisa +Nelly +Raylene +Sheila +Unique +Anjali +Cora +Coral +Frances +Ilene +Ivonne +Kailani +Tori +Viridiana +Anneliese +Bryana +Elianna +Gillian +Janette +Kristine +Lourdes +Madelynn +Maite +Shyanne +Yessenia +Ayleen +Breana +Brigitte +Cierra +Jiselle +Kaylyn +Kaylynn +Mariyah +Naima +Noelani +Norma +Vianey +Willow +Yamileth +Aliya +Brynn +Casandra +Devyn +Georgina +Jeanette +Jocelin +Juana +Kalia +Kayden +Kaylah +Liberty +Lluvia +Lucille +Macie +Malaya +Maliyah +Melia +Nadine +Renata +Selah +Amira +Ananya +Ani +Dalilah +Desirae +Jacklyn +Kaylen +Mira +Nallely +Nichole +Saray +Tess +Vivianna +Aliza +Annabel +Bridgette +Briseyda +Cecelia +Colette +Harley +Jaelynn +Kadence +Kalea +Karyme +Leilany +Lillie +Marcela +Shayna +Skyla +Tamara +Vianney +Ada +Aliana +Anita +Astrid +Cielo +Diya +Hallie +Josselyn +Kaley +Kristy +Kyleigh +Lacey +Myah +Raven +Rita +Rosario +Sky +Tianna +Yaneli +Amalia +Ariadna +Candice +Charlie +Cheyanne +Leyna +Lizet +Milan +Norah +Pearl +Rianna +Sahara +Saniya +Tatyana +Tina +Trisha +Aspen +Clare +Hailie +Jaylynn +Kaili +Karime +Keilani +Keren +Lilah +Marcella +Mckayla +Melani +Miracle +Nicolette +Rachelle +Rosie +Rowan +Soleil +Tracy +Alexus +Amani +Elsie +Gemma +Izabelle +Jessenia +Katarina +Lisette +Lorelei +Marisela +Mika +Regan +Rhea +Rhiannon +Sally +Samira +Toni +Whitney +Abbie +Amya +Antonia +Deisy +Elina +Estella +Giuliana +Hennessy +Jaclyn +Janae +Maleah +Marian +Noa +Star +Stevie +Vianca +Yessica +Zoie +Aliah +Ann +Beverly +Destiney +Elyssa +Franchesca +Jaida +Jaylyn +Jazlynn +Jewel +Joelle +Kirra +Laurel +Leilah +Lillianna +Lillyana +Lyric +Macey +Magaly +Marbella +Myla +Phoenix +Priya +Raegan +Saira +Stefanie +Tatianna +Adela +Adrienne +Analisa +Ashleigh +Ayana +Candy +Cassie +Chantal +Cianna +Gisel +Gwen +Haven +Jacquelin +Kaela +Kalani +Karis +Karly +Laisha +Lianna +Liz +Malina +Meadow +Noor +Rhianna +Serina +Shania +Shyla +Vicky +Ahtziri +Amari +Amia +Analise +Anisa +Annalisa +Carley +Chiara +Darla +Dayanna +Devon +Drew +Italia +Joanne +Jocelyne +Julisa +June +Kacey +Keely +Lesli +Lilyanna +Makaila +Mara +Milagros +Milena +Millie +Miya +Myra +Nayely +Olga +Patience +Sanaa +Sarina +Shea +Sonya +Zuleyka +Alexi +Aundrea +Cayla +Christy +Delia +Ema +Geraldine +Greta +Gwyneth +Irma +Jaylah +Justice +Klarissa +Laney +Marlee +Matilda +Micah +Neha +Nola +Roxy +Yoselyn +Zainab +Abbigail +Ailyn +Aleah +Alyna +Amiyah +Anai +Ariella +Arleen +Avalon +Averie +Azul +Britany +Calista +Citlalli +Dayna +Devin +Ebony +Elliana +Hilda +Jaquelyn +Jasleen +Jasmyn +Jenelle +Joslyn +Katy +Lynette +Mari +Pricilla +Ria +Taliyah +Tyra +Ally +Alysa +Amina +Anessa +Asha +Cinthia +Corina +Dafne +Eloise +Emery +Felicia +Isla +Jazelle +Joceline +Kaliyah +Karolina +Kaylani +Kenzie +Kiersten +Leanne +Loren +Magali +Maiya +Mariel +Mirian +Shaylee +Tamia +Yara +Yoseline +Abbey +Abigayle +Abygail +Aida +Anahy +Bonnie +Cailyn +Charity +Evelynn +Giada +Halle +Ireland +Jaretzy +Jennyfer +Jianna +Kalina +Katharine +Kayli +Keily +Laci +Malena +Meagan +Miley +Misty +Nadya +Nya +Rayna +Sydnie +Tayler +Yocelin +Ysabella +Alannah +Alex +Alexys +Allyssa +Amerie +Anushka +Aya +Cambria +Charley +Corinne +Emmy +Gisela +Ivana +Jailyn +Lainey +Lorelai +Madalynn +Maryann +Michell +Milana +Mischa +Nalani +Naomy +Neveah +Raina +Sabina +Sanjana +Simran +Yasmeen +Yulisa +Zahara +Abbygail +Adelaide +Alianna +Aniah +Annmarie +Ashely +Bailee +Belle +Bertha +Bryce +Carlee +Charlee +Charli +Cinthya +Dayra +Dennise +Elana +Emmalee +Evie +Jaime +Jaycee +Josefina +Kaelynn +Leann +Marin +Milla +Pauline +Pilar +Romina +Sabine +Saige +Sanai +Shaila +Sherlin +Sunny +Sydnee +Tammy +Zayra +Zion +Abigale +Addyson +Ailani +Alanis +Alisson +Amarie +Anisha +Annelise +Atiana +Beyonce +Brandi +Cailin +Cloe +Dariana +Davina +Dolores +Dulcemaria +Hadley +Haily +Haydee +Iyana +Izabel +Jalissa +Jana +Jaylen +Kamora +Katerina +Lisbeth +Maylin +Mindy +Nyah +Paisley +Reece +Robyn +Rosalyn +Sana +Scarlette +Shiloh +Tia +Winter +Amie +Annamarie +Bernice +Bianka +Bree +Brissa +Christiana +Ciana +Constance +Dorothy +Ellery +Emi +Ginger +India +Izel +Jaeda +Karely +Katheryn +Khloe +Laylah +Leena +Lillyanna +Lynn +Madisen +Maren +Monserrath +Nayelli +Odalys +Rena +River +Rosalie +Saanvi +Sahana +Savana +Tanvi +Vivienne +Xochilt +Abagail +Abrianna +Alyza +Amirah +Amiya +Annaliese +Arden +Armani +Arya +Berlin +Candace +Cathy +Colleen +Debbie +Edna +Essence +Farrah +Frankie +Geneva +Gisell +Irie +Isha +Jaedyn +Jaya +Jazzlyn +Jenessa +Jennie +Jeslyn +Kai +Kaleigh +Kalena +Kamari +Karlee +Karlie +Kaycee +Kierra +Kyara +Londyn +Marleen +Marlyn +Maryah +Michele +Rory +Sania +Saniyah +Shaina +Sharlene +Soledad +Suzette +Trina +Vida +Yazmine +Yulianna +Yuri +Zuri +Aanya +Alba +Ashanti +Aurelia +Briseis +Ciera +Dallas +Danae +Delanie +Elva +Emerald +Heavenly +Inez +Jackie +Janell +Janelly +Jaymie +Jazmyne +Journey +Kairi +Karma +Katalina +Katya +Kayle +Kelsie +Linnea +Lissette +Lizbet +Lois +Lorraine +Mabel +Maci +Maliah +Margot +Marlena +Martina +Melannie +Milani +Mona +Moriah +Nailea +Naya +Nikita +Nylah +Osiris +Ramona +Rian +Robin +Rosemarie +Rylan +Samanta +Sayuri +Sinai +Valarie +Vania +Vivien +Zariah +Addisyn +Aditi +Alexandrea +Anamaria +Annabell +Anusha +Aranza +Azalea +Brianne +Carrie +Chanelle +Chantel +Connie +Consuelo +Daira +Deysi +Dora +Elia +Fallon +Ileana +Iman +Ivory +Jaimie +Jeanelle +Jessalyn +Jizelle +Juanita +Kalie +Kamilah +Kenna +Kristal +Lela +Leslye +Lessly +Liyah +Lori +Makaylah +Monika +Nala +Nohemi +Ofelia +Saleen +Sarahy +Sequoia +Shyann +Verenice +Yana +Zahra +Adison +Aiden +Alora +Amaiya +Anayeli +Anette +Ania +Carlie +Chase +Chelsey +Darcy +Demi +Divya +Elly +Elvia +Elvira +Emelyn +Estela +Halie +Jaela +Janiyah +Jaylee +Jayna +Joey +Joselyne +Jovanna +Joycelyn +Karli +Katelin +Keara +Kellie +Kendal +Keona +Kim +Lili +Linette +Madelyne +Mae +Malaysia +Melania +Meleny +Michel +Miyah +Nailah +Neida +Petra +Rebeka +Samaria +Sayra +Shelly +Sherry +Sianna +Tahlia +Taya +Tea +Acacia +Adrianne +Adrina +Analiese +Ariah +Arianne +Ariela +Aris +Arlyn +Audrina +Aviana +Braelyn +Breanne +Briza +Brook +Carmela +Carys +Chaya +Clarisa +Coco +Dina +Dior +Eleni +Ember +Emelia +Evalyn +Hellen +Holland +Honesty +Honey +Hunter +Janiah +Janiya +Jarely +Jasmyne +Jayme +Jesse +Judy +Julyssa +Kacie +Keala +Kiarra +Kimberli +Lilith +Liv +Madilynn +Malaika +Mariafernanda +Marianne +Marlie +Maxine +Mercy +Mylee +Nika +Nuvia +Olive +Rosalia +Selma +Shivani +Shriya +Sofie +Sunshine +Tallulah +Tegan +Vienna +Yanet +Yaquelin +Zaniyah +Zaria +Aixa +Aja +Ali +Alyse +Amairani +Anali +Analy +Anastacia +Angelie +Anja +Annemarie +Arwen +Campbell +Caydence +Christian +Delila +Desire +Dianne +Elisha +Farah +Finley +Flora +Haleigh +Ila +Ixchel +Jalynn +Jamila +Jayde +Jodie +Joie +Karisma +Keana +Keilah +Kinsey +Kylah +Laylani +Leela +Leilanie +Lisset +Louisa +Lucinda +Makaela +Maricarmen +Maricruz +Mayah +Melony +Mikaila +Mollie +Morelia +Mylie +Noel +Pricila +Prisha +Quincy +Raya +Rilee +Romy +Samya +Seanna +Shakira +Sirena +Siya +Stefany +Thea +Trista +Tristan +Yesica +Yocelyn +Zulema +Aiyanna +Akira +Alanah +Aline +Allegra +Alona +Alyah +Ameerah +Amethyst +Anaiya +Analicia +Aneesa +Angelika +Anyssa +Arushi +Aubrianna +Aura +Ayah +Bernadette +Betsabe +Betzaida +Bryn +Catelyn +Charis +Chelsie +Christa +Christal +Dani +Daria +Eesha +Elliot +Emalee +Emani +Emelin +Genessis +Gracelyn +Harleen +Idaly +Imelda +Imogen +Ines +Jacey +Jalyn +Jorja +Josslyn +Justina +Kalyn +Kameron +Kaylei +Kennedi +Kimberley +Kristie +Lacie +Lani +Leandra +Lexy +Lucie +Lylah +Mai +Mariajose +Marlin +Marta +Mildred +Misha +Nidhi +Noemy +Prisila +Rio +Sawyer +Shae +Sol +Suzanna +Tayla +Teresita +Tierra +Tiffani +Vera +Veronika +Yael +Yamile +Yelena +Yoana +Aaralyn +Aarushi +Adina +Aidan +Aislinn +Alessa +Alycia +Amberly +Anahit +Anaiyah +Angelita +Annalyse +Antoinette +Ariya +Arlin +Ayesha +Ayva +Bibiana +Brianda +Brigette +Cailey +Caren +Cayden +Caylee +Citlally +Cordelia +Dejah +Ela +Elayna +Elora +Esha +Ester +Evalynn +Evette +Faviola +Gissell +Helene +Irlanda +Isamar +Jahaira +Jaliyah +Janel +Janie +Jaymee +Jeniffer +Jill +Jolette +Kaden +Kailah +Kaily +Kaira +Kareena +Kelis +Kimberlyn +Lailah +Leeann +Lexus +Livia +Maeve +Malak +Mariaguadalupe +Marielle +Miabella +Mirna +Moira +Monet +Montana +Naia +Naiya +Nellie +Nereida +Nova +Payten +Rain +Rayven +Reilly +Rhiana +Rochelle +Ryley +Samarah +Samaya +Samia +Samiyah +Sariyah +Shantal +Shianne +Sia +Siara +Starr +Stefani +Susanna +Sydni +Tanisha +Terra +Uma +Vianna +Viola +Violette +Willa +Yeimi +Zora +Adrian +Alexzandra +Alysha +Alysia +Alyssia +Ammy +Anaid +Anel +Arissa +Ariyah +Arriana +Ashlie +Audra +Averi +Avril +Caleigh +Cameryn +Charisma +Cheryl +Chrystal +Clementine +Dara +Darlyn +Dasia +Destany +Destini +Dezirae +Eloisa +Emelie +Esme +Evany +Faye +Fiorella +Florence +Francis +Freya +Gema +Glenda +Guinevere +Harmonie +Ilana +Izabell +Jackelin +Jadah +Jadelyn +Jamileth +Janna +Jaslyn +Jazlin +Jennah +Jersey +Jhoana +Joann +Joscelyn +Jovana +Kalista +Kallie +Karley +Katerin +Kathrine +Kavya +Kaydee +Kloe +Leonor +Maira +Maliya +Marjorie +Mason +Maura +Meah +Melodie +Melonie +Merari +Merissa +Minerva +Nadiya +Naila +Nautica +Naydelin +Nereyda +Nitya +Oriana +Priyanka +Raelyn +Rayleen +Rayne +Reanna +Remi +Salina +Samiya +Shana +Shawna +Susie +Symone +Taniya +Teya +Therese +Treasure +Varsha +Yanira +Yaretsi +Yatziri +Yisel +Yuna +Yuritzi +Adamary +Adyson +Aidee +Akayla +Alaya +Alayah +Alaysia +Alyanna +Amiah +Amyah +Andie +Angelia +Angely +Atianna +Audrianna +Audrie +Avah +Becky +Betsaida +Betty +Blythe +Caden +Caelyn +Caitlynn +Camden +Cecily +Ciarra +Corrina +Danitza +Danya +Darby +Darleen +Darya +Debra +Dyana +Elda +Elexa +Elysia +Emmie +Francine +Genevie +Gladis +Gracey +Gretchen +Gwenyth +Hayleigh +Hermione +Illiana +Isadora +Italy +Jaydin +Jena +Jenesis +Jenica +Jesica +Jezebel +Johannah +Jordynn +Jose +Josselin +Kaileen +Kambria +Karena +Katherin +Kathia +Kaylan +Kelley +Kelli +Kiya +Kori +Kyndra +Laniya +Leona +Leylani +Liza +Louise +Lovely +Luzmaria +Lyndsey +Maegan +Mariella +Marwa +May +Meghana +Mei +Melanny +Mikaylah +Miliani +Neela +Nyomi +Ocean +Pearla +Preslee +Rachell +Raelynn +Rania +Remy +Rhyan +Rosalba +Sachi +Sakura +Salem +Shaniya +Shanna +Shira +Sloane +Sonja +Starla +Suraya +Talya +Tamar +Taniyah +Vanity +Yenifer +Ysabel +Zariyah +Zoya +Abriana +Adamariz +Adelynn +Adylene +Ailin +Airam +Aleesha +Aleyda +Aleyna +Alijah +Alyssamarie +Amaia +Ami +Anayah +Anela +Aniela +Ankita +Annalie +Anoushka +Aolani +Araya +Arieanna +Arlet +Asma +Aubry +Audree +August +Aylen +Azariah +Billie +Bria +Brookelyn +Celene +Chevelle +Clarice +Daiana +Darlin +Dasha +Destinie +Donya +Emalie +Emeli +Emiko +Emiliana +Emmely +Eriana +Esbeidy +Estrellita +Evelina +Francheska +Francisca +Genavieve +Giavanna +Gisella +Gissele +Grayson +Gurleen +Ileen +Ilianna +Ishika +Itzia +Jamya +Janett +Janine +Jayline +Jeannette +Jennessa +Jenni +Jubilee +Julian +Julietta +Kaelin +Kalissa +Katerine +Kathya +Kattie +Kaylene +Kemberly +Keyra +Kiyomi +Lacy +Leana +Leidy +Lilibeth +Lilit +Lynda +Maisie +Makyla +Marcia +Mariaelena +Matilde +Mattea +Mattie +Mercedez +Midori +Milly +Mirella +Myriam +Naidelyn +Nicolle +Nidia +Ninel +Nubia +Opal +Paulette +Penny +Persephone +Pia +Riana +Roberta +Roshni +Rosselyn +Saba +Sade +Sanya +Saraya +Savina +Saylor +Scout +Shanti +Sharlyn +Shylah +Skylee +Sneha +Stacie +Tatiyana +Thania +Trinidad +Tristen +Wendi +Yahira +Yamila +Zadie +Zaida +Zitlaly +Zofia +Zury +Aaliah +Abbigale +Abrielle +Adria +Alea +Aleksandra +Alessia +Alexcia +Alitzel +Alliyah +Allysa +Alyana +Alyvia +Amariah +Amayah +Amayrani +Ambar +Analia +Andria +Angelyn +Anjelica +Annalicia +Apple +Arisbeth +Arlett +Ashanty +Audriana +Avianna +Avneet +Ayden +Beth +Bethanie +Bobbi +Briannah +Brigit +Brinley +Bronwyn +Brooklynne +Callia +Caprice +Carli +Carter +Chantelle +Charlise +Chasity +Chelsy +Ciena +Cleo +Dailyn +Dawn +Deena +Desiray +Devan +Devine +Deyanira +Deziree +Diego +Divine +Domonique +Elektra +Elinor +Elizabet +Elsy +Emaly +Emili +Emme +Emmily +Enya +Estelle +Estephanie +Eternity +Eveny +Evony +Gabby +Ilse +Indira +Irais +Isaura +Iyanna +Jael +Jakelyn +Jareli +Jaretzi +Jeanna +Jesenia +Jessa +Jessi +Julieana +Julieanna +Julliana +Kaida +Kailin +Kailynn +Kamilla +Kamille +Kamya +Kari +Karoline +Keiry +Kelsy +Khalia +Kirstin +Kourtney +Kya +Kyley +Lanae +Larkin +Layan +Lezly +Libby +Lizzet +Loretta +Magnolia +Mariya +Marla +Marylin +Marylou +Maylene +Mckinley +Meztli +Mihika +Minna +Mylah +Nanami +Nayla +Niki +Nikole +Nour +Promise +Quetzalli +Rori +Rosy +Roxie +Salome +Sammantha +Sela +Seneca +Sera +Serene +Shani +Shaya +Shelsy +Shruti +Sicily +Solana +Stephania +Taleah +Taliah +Talyn +Tristyn +Vaishnavi +Valencia +Vallerie +Viktoria +Winnie +Xenia +Xitlalic +Yosselin +Yuriana +Zahira +Zelda +Zuleyma +Aalyah +Adalyn +Adelaida +Adele +Adelle +Aeris +Agnes +Aila +Akeelah +Akemi +Alexie +Alise +Alix +Alizabeth +Aly +Alyce +Ameena +Anabell +Anaiah +Analee +Analiz +Anay +Angelena +Annalee +Ashton +Aubriana +Ayari +Ayiana +Aylene +Azaria +Baleria +Beautiful +Betzabeth +Bianey +Breeana +Briceida +Briley +Brithany +Brylee +Cady +Caidence +Carleigh +Carson +Caterina +Celest +Chayse +Cosette +Darianna +Dasani +Dayan +Delylah +Dena +Elicia +Ellianna +Ellison +Elyanna +Emerie +Emmalyn +Evalina +Fanny +Florencia +Glory +Gracelynn +Gracy +Hadassah +Harnoor +Havana +Hollie +Ianna +Idalia +Itzayana +Jacinda +Jahzara +Jailynn +Jannet +Jannette +Jaydah +Jemma +Jia +Jiya +Jodi +Joleen +Jolina +Jordana +Josefine +Julieann +Kalee +Kaniya +Karah +Katheryne +Katlyn +Katlynn +Kaytlin +Kendyl +Kennya +Khushi +Kiela +Kiely +Kilee +Kiyah +Klara +Kyah +Kyndall +Laina +Laniyah +Larisa +Laryssa +Lavender +Leonela +Linsey +Lisseth +Lizzette +Lucianna +Lyanna +Lyna +Mackenna +Madysen +Makenzi +Makiah +Manuela +Maraya +Marilin +Marilu +Marleni +Marysol +Maureen +Meena +Meilani +Melinna +Metzli +Michael +Mikala +Mitzi +Monserat +Natally +Navya +Nayomi +Neva +Nhi +Niah +Nisha +Niya +Noah +Nohelia +Nyssa +Oceana +Persia +Polina +Racheal +Raelene +Randi +Raniyah +Rayann +Rilynn +Rina +Ryanne +Rylin +Safa +Sahasra +Sailor +Sanaiya +Sapphire +Sarena +Seleste +Serafina +Serinity +Shaelyn +Shanice +Shantel +Shay +Shayne +Sheccid +Silvana +Sindy +Sofiya +Sruthi +Sujey +Sury +Suzanne +Symphony +Syriana +Tiare +Vannesa +Vanya +Vivianne +Yanely +Yarethzy +Yunuen +Zarela +Zayda +Zenaida +Zinnia +Zitlali +Zoee +Zyanya +Aanika +Aaniyah +Abella +Abilene +Adah +Adia +Adora +Aeryn +Agatha +Aidyn +Aiko +Aileth +Aishwarya +Akasha +Akilah +Aleeza +Alexxa +Alin +Allana +Alynna +Ameera +Aminah +Amrita +Analyssa +Andi +Andra +Anh +Anicia +Annaly +Antonella +Anvi +Aralyn +Argelia +Ari +Arial +Ashlin +Ashna +Atalia +Athalia +Athziri +Athziry +Atziry +Avani +Avary +Avigail +Aviva +Aysia +Bethsy +Betzi +Brea +Briceyda +Bridgett +Brookelynn +Caelan +Caliana +California +Calla +Calli +Cayley +Caylin +Chance +Charly +Cintia +Claira +Clarisse +Cloey +Clover +Corinna +Dahlila +Daisha +Dalyla +Damariz +Damiana +Daysi +Delany +Denice +Divina +Dixie +Dream +Dymond +Dynasty +Elida +Eliyah +Ellis +Emeline +Emersyn +Emmeline +Emoni +Erandi +Eryn +Esabella +Evanie +Fatimah +Fayth +Gianni +Gimena +Giulia +Hafsa +Hanah +Hanan +Hannia +Harini +Hayli +Heydi +Himani +Ida +Ilona +Indigo +Isa +Jackelyne +Jacklynn +Jaila +Jailene +Jalyssa +Janai +Janay +Janaya +Janely +Janiece +Janya +Jayce +Jaydyn +Jayne +Jeanne +Jesslyn +Jesus +Jordin +Josephina +Kaci +Kadance +Kadynce +Kaeli +Kaleah +Kaleia +Kalli +Kamara +Kamea +Kaori +Karizma +Kaylea +Keanna +Keeley +Keilana +Kelsea +Kendell +Khadija +Kiah +Kitzia +Krystina +Kyrah +Kyrie +Laine +Lamya +Lanie +Lesslie +Levi +Lillyann +Lillyanne +Lindsy +Lindy +Liset +Lizzeth +Lizzie +Loraine +Luella +Madden +Madisson +Makailah +Makala +Malana +Malani +Mannat +Maranda +Marayah +Margo +Marializ +Marlenne +Matea +Maycie +Melane +Melenie +Melyssa +Memphis +Merary +Micayla +Muskaan +Mykah +Mykayla +Nahomy +Nakayla +Nanci +Nandini +Nelida +Neyda +Nicollette +Noely +Odaliz +Odette +Passion +Poppy +Portia +Prisilla +Rayana +Rayanna +Renae +Reya +Rikki +Rileigh +Rishika +Roni +Rosalina +Rosamaria +Roselin +Rylynn +Saniah +Sanika +Sanyah +Sedona +Seidy +Seraphina +Shannen +Siomara +Sloan +Sonali +Stefania +Talitha +Tanaya +Taytum +Tenaya +Tiffanie +Tracey +Triana +Triniti +Tristin +Tru +Tyla +Vannessa +Venessa +Venezia +Venice +Venus +Vina +Wren +Yareni +Yaretsy +Yelitza +Yeraldin +Ysabelle +Yuliza +Zamara +Zaniya +Zarah +Zaryah +Aadya +Aaliya +Adalia +Adella +Adisyn +Africa +Afton +Ailed +Alasia +Alaura +Aleesa +Aleeya +Aleksa +Alexsa +Alexzandria +Aleyah +Aliyana +Alli +Allissa +Alonna +Alyiah +Alyn +Alyne +Alysse +Amisha +Amora +Analucia +Anamarie +Angelyna +Anneka +Annissa +Anny +Antonette +Anyah +Anyla +Arayah +Aries +Ariyana +Aryssa +Ashlei +Atziri +Audry +Austen +Avalyn +Avamarie +Avelina +Ayelen +Azari +Baylie +Beatrix +Bennett +Berlyn +Bethzi +Betzabe +Blake +Briauna +Brooklin +Bryan +Byanca +Callista +Carmella +Caylie +Celestina +Cesia +Chana +Chandler +Channel +Charleen +Chayla +Christie +Concepcion +Cristy +Cruz +Czarina +Daizy +Daylin +Daysha +Deana +Deandra +Debora +Della +Dorian +Doris +Dyani +Dyanna +Ebelin +Edie +Elin +Elizah +Elliott +Emireth +Emmalynn +Emmanuelle +Emmerson +Emonie +Erandy +Eugenia +Gardenia +Gelsey +Gena +Genisis +Gracen +Gricelda +Haidy +Halley +Haruka +Hayle +Heavyn +Imari +Inara +Inaya +Indiana +Iona +Irina +Isobel +Issabella +Itati +Ivie +Ivon +Jacquelyne +Jaide +Jakayla +Jami +Jamilet +Jania +Jannah +Janneth +Jasmen +Jaylean +Jazel +Jazzelle +Jean +Jeanine +Jeannie +Jeimy +Jissel +Jisselle +Joan +Jocelynne +Jolee +Jolin +Jonathan +Josilyn +Jude +Jules +Kaiden +Kaithlyn +Kalaya +Kaliya +Kameryn +Kamiah +Karin +Karishma +Karmen +Kassie +Katlin +Katty +Kay +Kayci +Kaydance +Kaylana +Kayra +Kaytlyn +Keilly +Kelsi +Keri +Keyanna +Kiarah +Kimberlee +Kimberlin +Kinley +Kiran +Kitana +Kloie +Komal +Kora +Koral +Krisha +Kristi +Kyana +Lael +Lailani +Laniah +Laylonie +Laysha +Leiah +Leigha +Liah +Lilee +Linh +Liora +Liya +Lorna +Luana +Luci +Lulu +Lynna +Lyra +Mackenzy +Madai +Madelaine +Mahalia +Maja +Malayah +Malea +Maleena +Maleia +Malinda +Margaux +Marialuisa +Marielena +Marion +Maritsa +Marleigh +Marlowe +Maryana +Maryn +Mayrin +Mazzy +Mckinzie +Mea +Meaghan +Medha +Meera +Megha +Megumi +Meher +Melanye +Meya +Micaiah +Mickayla +Miki +Milagro +Mileena +Mimi +Moana +Myka +Myranda +Myrna +Naibe +Nariah +Nathali +Nava +Naylea +Naylene +Neve +Niharika +Nila +Nirvana +Nuria +Odessa +Patrice +Pooja +Quinlan +Rana +Rashelle +Reema +Rheanna +Richelle +Rida +Ritika +Roselynn +Rubie +Sadaf +Safia +Sahar +Samirah +Sareena +Sari +Sariya +Saydee +Shanelle +Shanya +Shauna +Shaye +Shealyn +Sheily +Sheridan +Sheryl +Shruthi +Skyy +Solei +Sonora +Sophya +Sriya +Steffany +Sterling +Stormy +Suhey +Sylvie +Synthia +Tabatha +Tala +Tasia +Tasneem +Tehya +Tesla +Tula +Tyrah +Vada +Vanna +Verena +Vilma +Violetta +Vivica +Yajayra +Yamilett +Yarethzi +Yarexi +Yecenia +Yuritzy +Yusra +Zaniah +Zaynab +Zena +Zia +Zipporah +Zola +Zurisadai +Aarya +Aashna +Adara +Agustina +Aide +Ailene +Aisling +Aislyn +Ajah +Alahna +Alanie +Aleen +Aleida +Aleiyah +Alexah +Alinah +Alisi +Alisia +Alissandra +Alizae +Allyn +Alysson +Ameya +Amrit +Anakaren +Analyse +Ananda +Anasophia +Andreya +Angelee +Angelene +Angelisa +Anjani +Annalynn +Annastasia +Anyia +Aparna +Araseli +Ariadne +Arin +Arionna +Ariyanna +Arizbeth +Arshia +Aryam +Ashli +Ashlynne +Ashtyn +Asiya +Athina +Aubreyana +Austin +Ayline +Azalia +Bela +Belicia +Berenize +Berkley +Bhavya +Biridiana +Blair +Blossom +Bobbie +Breann +Briahna +Brieanna +Brizeida +Cailee +Calia +Calissa +Calliope +Camdyn +Cameran +Cami +Candelaria +Carmina +Cate +Cathryn +Catrina +Cayleigh +Celena +Charisse +Charmaine +Chastity +Cherry +Chisom +Chloee +Christin +Christopher +Chyanne +Clair +Claribel +Cloie +Constanza +Cori +Corynn +Cyan +Dagny +Dajah +Dallana +Dannia +Dannika +Danyelle +Darian +Darina +Daviana +Daysy +Dejanae +Delainey +Delmy +Delyla +Denali +Denia +Denisha +Deserie +Devina +Dezerae +Dhalia +Disha +Elani +Eleana +Eli +Elie +Ely +Elyana +Elysa +Eman +Emillie +Emilly +Emilyn +Emmaly +Emmi +Ena +Envy +Esli +Estephani +Eulalia +Evelia +Everly +Evy +Fabiana +Francia +Gabryella +Gaby +Gayathri +Geena +Genoveva +Geovanna +Getsemani +Gigi +Gizel +Gyselle +Haidyn +Haile +Hala +Hali +Halia +Haneen +Harshita +Hattie +Havanna +Hawa +Hermelinda +Idania +Ilette +Ina +Ivania +Iveth +Ivey +Izellah +Jacie +Jackson +Jaclynn +Jacquline +Jadalyn +Jaeden +Jaelah +Jaelene +Jaelin +Jai +Jaileen +Jaimee +Jakeline +Jaleah +Jalen +Jalene +Jalina +Jameson +Janeli +Janis +Jaritza +Jaslin +Jaslynn +Jatziri +Jatziry +Jaydee +Jazzmyn +Jeannine +Jenavieve +Jenise +Jennalyn +Jerika +Jessika +Jett +Jewell +Jezabel +Jiana +Jina +Jisel +Jisela +Johnna +Johnnie +Jorden +Josalyn +Joselynn +Josette +Jozlyn +Juniper +Kaavya +Kadie +Kady +Kadyn +Kaeleigh +Kaeley +Kaely +Kaileigh +Kala +Kalei +Kaliah +Kalynn +Kalyssa +Kamaya +Kamiyah +Kana +Kandice +Karleigh +Karolyn +Karyn +Katelynne +Katja +Kaytee +Kazandra +Keili +Keirra +Keisha +Kemora +Kerry +Kevin +Keya +Keyana +Kezia +Kierstin +Kimiko +Kinberly +Kinsley +Kloey +Korina +Kristiana +Kriti +Krysta +Lanna +Launa +Laurie +Layne +Leeana +Leeanna +Leen +Leiana +Leonora +Liani +Lilie +Lilli +Lillith +Lilyann +Lisandra +Lisbet +Livier +Love +Lucienne +Lupe +Luzelena +Lya +Madaline +Mahala +Mahealani +Mahek +Mahogany +Mailee +Makiya +Makya +Malayna +Malibu +Maliha +Mana +Manaia +Manasi +Manon +Maram +Marely +Marguerite +Maribella +Marlo +Maryanne +Marygrace +Maryssa +Matisse +Mattison +Mayela +Mayleen +Mayson +Meili +Mekayla +Melanee +Mele +Mellany +Memory +Merlyn +Miana +Michaella +Michela +Mikaella +Mikenzie +Mili +Mirabella +Mirabelle +Mirka +Miroslava +Monserath +Monserratt +Monzerrat +Nadeen +Naidelin +Nakiya +Naliyah +Nandi +Naomie +Naraly +Nareh +Nashla +Nayah +Nayana +Nayelie +Naysa +Nely +Neriah +Nerissa +Niamh +Nicola +Nikitha +Niyah +Noreen +Noya +Nyima +Nysa +Octavia +Odelia +Oona +Ophelia +Osmara +Paislee +Paiton +Paityn +Palak +Phebe +Preslie +Racquel +Raylee +Reanne +Rene +Reva +Riannah +Rika +Roma +Rosalind +Rosalva +Rosio +Roslyn +Rya +Samari +Samina +Sanam +Sascha +Sayde +Seren +Shantell +Sharleen +Shaylin +Shiann +Shirin +Sieanna +Simar +Siobhan +Siona +Sitara +Sora +Steffani +Suhani +Sulema +Sumaya +Sumayah +Susannah +Svetlana +Sylvana +Tasha +Teairra +Teryn +Tierney +Torrie +Trinidy +Trinitee +Trish +Ursula +Valeri +Vedika +Vianka +Vielka +Vy +Wynter +Xena +Yamilette +Yamilex +Yanelly +Yaneth +Yaris +Yennifer +Yoanna +Yohana +Zaina +Zania +Zayna +Zenobia +Zina +Zuly +Aalia +Abbygale +Abegail +Adalay +Adaly +Adanna +Adelyn +Adelyne +Adreanna +Adryana +Ahana +Ahriana +Ahtziry +Ailany +Airi +Akela +Akirah +Akshara +Akshaya +Akyra +Albina +Aleli +Alesha +Alexander +Alexsis +Alexza +Aliena +Alizah +Alizay +Allena +Allisyn +Allysen +Althea +Alya +Alyssah +Alyssandra +Amada +Amairany +Amaiyah +Amarachi +Amarah +Amberlyn +Amberlynn +Amery +Amilia +An +Anagabriela +Anagha +Anaiz +Analeah +Anarosa +Anely +Angeleen +Angeliah +Angelic +Angelynn +Aniyha +Anjela +Anjelina +Annaka +Annaliz +Anneke +Annel +Annica +Anureet +Anysa +Aoife +Apryl +Arantza +Arcelia +Arianah +Ariane +Ariani +Arihanna +Arika +Ariona +Arlynn +Arpi +Arrianna +Aryah +Ashland +Ashleen +Ashmita +Asya +Aubrielle +Austyn +Avni +Ayumi +Azeneth +Aziza +Azra +Bellarose +Bethani +Bethel +Betzayda +Bliss +Bo +Brady +Brayden +Brazil +Breeanna +Breonna +Breyana +Brianny +Brie +Brigida +Brihanna +Brionna +Brissia +Brizeyda +Cadance +Cammie +Candie +Carely +Carlene +Carlos +Carmel +Carolynn +Cayenne +Cera +Chantell +Cheyann +Chidera +Christen +Christianna +Ciarah +Ciel +Claritza +Clariza +Corrine +Cortney +Cristiana +Cristine +Cydney +Daija +Daijah +Dakoda +Dakotah +Dallanara +Damara +Damya +Danah +Danaly +Danelle +Darline +Dayani +Dayannara +Dayjah +Delayna +Delina +Demetria +Denae +Denis +Denyse +Deserae +Destenie +Devika +Devorah +Deysy +Dezaray +Dezeray +Divinity +Dominika +Dorismar +Drea +Dulcinea +Dyanara +Eimy +Elanie +Elen +Elidia +Elijah +Ellena +Ellia +Ellyana +Elodie +Elonna +Emelly +Enedina +Estefanie +Estephany +Estreya +Etta +Evan +Eveline +Evelynne +Evenny +Ever +Eviana +Flavia +Gabriel +Genna +Giannah +Giulianna +Gracee +Graciella +Gracyn +Guillermina +Gypsy +Hadar +Haiden +Halee +Halina +Halo +Han +Hanalei +Harmoni +Haya +Haylen +Heily +Helaina +Ilaria +Ileene +Inaaya +Indra +Iran +Ishani +Ishita +Issa +Isyss +Itzelle +Ivett +Izabela +Jacky +Jacquelynn +Jacy +Jadalynn +Jadin +Jae +Jaidy +Jaina +Jaira +Jaiya +Jakelin +Jalena +Jalia +Jalisa +James +Jamia +Janee +Janelli +Jannelle +Jannely +Janvi +Janyah +Jarethzy +Jaselle +Jasmina +Jaspreet +Jaydenn +Jazleen +Jazmynn +Jazzmin +Jazzmine +Jeidy +Jemimah +Jenice +Jenine +Jennessy +Jenyfer +Jessilyn +Jewels +Jilliana +Jody +Joline +Jonae +Jordann +Jordanna +Josalynn +Joslin +Joslynn +Josseline +Journee +Jovita +Joya +Juliann +Julieanne +Julieth +Kahlia +Kaidence +Kaidyn +Kailie +Kalayah +Kaliana +Kalin +Kallista +Kamani +Kami +Kandace +Karyna +Karyssa +Katalyna +Katana +Kathie +Kathrynn +Katriel +Kaylina +Kealani +Keiana +Keiko +Keilee +Kelani +Kenadie +Kenyah +Kenzy +Keyli +Keylin +Keyonna +Keysha +Keziah +Khaliyah +Kieran +Kiki +Kimani +Kindra +Kiona +Krishna +Kylei +Kyli +Kymberly +Laia +Lailoni +Lakshmi +Lanai +Lanaya +Latoya +Leala +Leelah +Leilana +Leina +Lelia +Leni +Lenore +Leslee +Lexine +Lexis +Lezlie +Lida +Liliann +Lillia +Lilyanne +Liseth +Lissa +Lizbett +Lizett +Lorely +Lorin +Loryn +Lotus +Lucila +Luiza +Lux +Lynelle +Lynsey +Lysette +Maayan +Madalena +Maddalena +Maddox +Madeira +Madelin +Madelynne +Magda +Magdalene +Mahika +Maily +Mailyn +Mairyn +Malissa +Malorie +Manal +Manasa +Mar +Marcelina +Marcy +Marelyn +Mariadejesus +Mariaisabel +Marifer +Marli +Marrissa +Maryanna +Mathilda +Mayla +Maylee +Mayumi +Mckenzi +Meeya +Melayna +Meliza +Melyna +Mena +Merlin +Metztli +Mikah +Mikalah +Mikela +Miko +Mikyla +Miraya +Mireille +Miriah +Mitzy +Mizuki +Monae +Moncerrat +Monzerrath +Moorea +Muriel +Mylene +Myriah +Nada +Nahomi +Nalleli +Nare +Narissa +Nasya +Nataliah +Nataliya +Natania +Nathalya +Nayra +Neftali +Neli +Nelli +Nena +Nevada +Nevaeha +Nicholette +Niomi +Nisa +Nishika +Nissi +Nithya +Noe +Noeli +Nuha +Nyasia +Nydia +Olyvia +Page +Parisa +Parneet +Percilla +Phaedra +Polly +Pranathi +Preciosa +Priscella +Quetzali +Rae +Raeanna +Railey +Raine +Rajdeep +Ramya +Rayanne +Razan +Rebekka +Reem +Reyanna +Rianne +Riddhi +Rima +Rona +Ronnie +Rosaline +Rosanna +Rosaura +Rosita +Rossy +Rozlynn +Ruthie +Ryder +Ryland +Sabah +Sacha +Saida +Saja +Samarra +Samayah +Sammie +Sanah +Sanaia +Sandhya +Santana +Saoirse +Saskia +Satya +Sebastian +Secilia +Selin +Sensi +Seraphine +Seriah +Sevilla +Shawnee +Shaylyn +Shellsea +Shelsea +Sherlyne +Sheylin +Shilah +Shilo +Shirel +Siana +Sierrah +Simona +Sina +Siri +Sivan +Skylynn +Socorro +Soha +Solange +Solimar +Sonoma +Sophiamarie +Soren +Srishti +Stephani +Stephenie +Suleyma +Sumedha +Suzan +Syra +Tabytha +Taegan +Taliya +Talyah +Taniah +Tatyanna +Taylin +Teah +Teri +Terri +Thais +Tiera +Torrey +Traci +Tracie +Tvisha +Tyanna +Una +Uriah +Valerya +Valorie +Veronique +Vicki +Vickie +Yakelin +Yanitza +Yarelly +Yareth +Yarisbel +Yatziry +Yazmeen +Yoali +Yohanna +Yosselyn +Yudith +Yuki +Yuli +Yzabel +Zaara +Zakiah +Zarina +Zeenat +Zeina +Zienna +Zoila +Zuleika +Zuleima +Emily +Isabella +Sophia +Ashley +Samantha +Mia +Natalie +Emma +Alyssa +Elizabeth +Jocelyn +Ava +Abigail +Kimberly +Madison +Olivia +Brianna +Sofia +Jasmine +Andrea +Vanessa +Hannah +Chloe +Alexa +Victoria +Valeria +Melanie +Evelyn +Hailey +Jennifer +Sarah +Alexis +Jessica +Angelina +Kayla +Maria +Stephanie +Grace +Michelle +Alexandra +Giselle +Valerie +Destiny +Audrey +Diana +Daniela +Ella +Ariana +Leslie +Savannah +Maya +Natalia +Lily +Katherine +Lauren +Ruby +Camila +Jacqueline +Isabel +Melissa +Nevaeh +Taylor +Allison +Nicole +Arianna +Julia +Daisy +Amy +Addison +Zoe +Kaylee +Genesis +Gabriela +Alondra +Angela +Briana +Sydney +Kaitlyn +Esmeralda +Gabriella +Brooke +Mariah +Alina +Amanda +Karen +Jade +Sophie +Madeline +Katelyn +Jazmin +Anna +Liliana +Naomi +Faith +Riley +Aaliyah +Sara +Adriana +Kylie +Rachel +Gianna +Guadalupe +Charlotte +Mariana +Julissa +Miranda +Sienna +Isabelle +Fatima +Makayla +Ana +Alejandra +Claire +Jasmin +Leah +Karla +Megan +Crystal +Katie +Layla +Juliana +Aubrey +Eva +Bianca +Brooklyn +Karina +Marissa +Avery +Bella +Lillian +Haley +Danielle +Leilani +Jordan +Angelica +Amber +Kate +Tiffany +Amelia +Dulce +Alexia +Lizbeth +Brenda +Sadie +Alicia +Rebecca +Trinity +Jazmine +Paige +Anahi +Bailey +Morgan +Melody +Keira +Itzel +Breanna +Joselyn +Delilah +Emely +Ariel +Mackenzie +Alana +Elena +Sabrina +Scarlett +Joanna +Priscilla +Vivian +Mya +Catherine +Kelly +Jenna +Christina +Denise +Sierra +Wendy +Cynthia +Serenity +April +Cassandra +Leila +Gabrielle +Monica +Julianna +Nataly +Violet +Ximena +Aileen +Paola +America +Izabella +Celeste +Zoey +Lucy +Veronica +Jordyn +Daniella +Aliyah +Estrella +Laila +Jamie +Mary +Stella +Desiree +Nadia +Nayeli +Perla +Luna +Lilly +Iris +Carolina +Madelyn +Laura +Chelsea +Cindy +Alexandria +Amaya +Dayanara +Nancy +Marisol +Autumn +Erika +Eliana +Mikayla +Molly +Paulina +Viviana +Kiara +Angie +Summer +Janelle +Kassandra +Angel +Marlene +Caroline +Jada +Peyton +Lesly +Rylee +Reese +Fernanda +Gracie +Angelique +Erin +Jimena +Alessandra +Melany +Tatiana +Heidi +Serena +Julie +Yesenia +Jayden +Yasmin +Hazel +Josephine +Alison +Tessa +Cecilia +Lola +Sarai +Ashlyn +Lucia +Abril +Ellie +Carmen +Sandra +Eden +Kennedy +Kathryn +Adrianna +Jayla +Madeleine +Marina +Annabelle +Kiana +Maritza +Nathalie +Valentina +Cheyenne +Yoselin +Cassidy +Gisselle +Helen +Irene +Sasha +Rosa +Arely +Danica +Ivy +Kyra +Aurora +Kylee +Miriam +Elise +Lindsey +Yareli +Caitlyn +Delaney +Clarissa +Erica +Jaqueline +Clara +Raquel +Athena +Nina +Jenny +Linda +Malia +Marilyn +Caitlin +Genevieve +Penelope +Shelby +Kaylie +Esther +Hayden +Kailey +Lila +Camille +Kendall +Natasha +Payton +Phoebe +Skylar +Carla +Dakota +Kira +Dayana +Kendra +Krystal +Lindsay +Yadira +Gloria +Melina +Abby +Alice +Miley +Aleena +Claudia +Fiona +Monique +Cristina +Janet +Jillian +Ruth +Alissa +Annika +Siena +Jayleen +Jaylene +Jazlyn +Allyson +Aniyah +Jaslene +Makenna +Eileen +Heaven +Noemi +Savanna +Araceli +Danna +Hanna +Hayley +Isabela +Johanna +Juliette +Brooklynn +Brittany +Cadence +Emilia +Audrina +Christine +Elisa +Tania +Haylee +Lana +Patricia +Sherlyn +Dana +Katelynn +Kyla +Maribel +Reyna +Selena +Brisa +Lydia +Shayla +Angeline +Hope +Mayra +Reagan +Belen +Belinda +Cristal +London +Nathaly +Monserrat +Stephany +Bethany +Marley +Arlene +Mckenna +Aylin +Bryanna +Eleanor +Janessa +Kiera +Luz +Rubi +Valery +Jane +Margaret +Rose +Talia +Isis +Juliet +Sonia +Anastasia +Kelsey +Teresa +Courtney +Judith +Maryjane +Annie +Sarahi +Damaris +Presley +Yuliana +Ashlee +Anya +Dalia +Martha +Daphne +Kaelyn +Lizeth +Piper +Azul +Lilliana +Nora +Cali +Cameron +Evelin +Harmony +Mckenzie +Camryn +Maggie +Rebekah +Yaretzi +Alma +Francesca +Ingrid +Jaelyn +Stacy +Carly +Frida +Georgia +Jadyn +Darlene +Lilian +Marisa +Ashly +Ashlynn +Citlali +Eliza +Kaylin +Sage +Anika +Evangeline +Amelie +Britney +Dahlia +Edith +Kaia +Kenya +Lesley +Adeline +Paloma +Allie +Ciara +Danika +Marely +Bridget +Holly +Iliana +Jacquelyn +Kamila +Lexi +Regina +Yvette +Catalina +Celine +Jayda +Noelle +Rihanna +Shannon +Simone +Yazmin +Annette +Ryan +Blanca +Galilea +Haylie +Karissa +Kathleen +Larissa +Lyla +Paula +Ayla +Callie +Heather +Jaden +Lena +Makenzie +Nia +Pamela +Tanya +Esperanza +Aubree +Kristina +Lorena +Skyler +Emerson +Hana +Heidy +Alanna +Alyson +Elaine +Samara +Josie +Lisa +Xiomara +Gia +Aracely +Ayleen +Graciela +Mariela +Xochitl +Elle +Fabiola +Jessie +Kenia +Kristen +Rylie +Aniya +Annabella +Hailee +Helena +Jackeline +Kaydence +Keyla +Lexie +Lia +Marie +Tatum +Charlize +Emilie +Jolie +Kaitlin +Lilyana +Maddison +Anaya +Chanel +Lucero +Rebeca +Scarlet +Tiana +Anabelle +Areli +Denisse +Kaila +Alaina +Johana +Kara +Luciana +Skye +Alize +Camilla +Citlaly +Dylan +Kassidy +Margarita +Marlen +Rachael +Teagan +Dalilah +Flor +Joana +Joy +Sharon +Adamaris +Kali +Kathy +Lea +Leyla +Litzy +Madyson +Paris +Roselyn +Sandy +Yamilet +Zara +Aria +Berenice +Grecia +Joyce +Kamryn +Maia +Susana +Yasmine +Brynn +Carina +Dania +Justine +Katrina +Kiley +Madelynn +Mercedes +Precious +Sidney +Aimee +Barbara +Beatriz +Dominique +Joselin +Liana +Lilia +Makena +Sheila +Yahaira +Aryanna +Janice +Joseline +Kailee +Mikaela +Sariah +Yuridia +Yvonne +Alani +Anabel +Asia +Luisa +Nelly +Reina +Addyson +Brielle +Imani +Kailyn +Kaya +Kayleen +Alayna +Alena +Amira +Deanna +Emilee +Giovanna +Jocelynn +Lacey +Lauryn +Lizette +Michaela +Rosemary +Salma +Selene +Silvia +Sylvia +Aisha +Alisha +Aryana +Carissa +Cora +Gemma +Kaitlynn +Magdalena +Marianna +Miah +Mireya +Nathalia +Roxana +Sheyla +Yarely +Casey +Elisabeth +Estefani +Julianne +Kimora +Madilyn +Roxanne +Anais +Arabella +Aubrie +Brissia +Diamond +Elsa +Giana +Jaylynn +Julieta +Mariam +Nikki +Shirley +Violeta +Virginia +Adilene +Emery +Gizelle +Lilianna +Montserrat +Natali +Renata +Renee +Ivana +Lupita +Mallory +Priscila +Rhianna +Taryn +Yara +Amara +Brenna +Kasandra +Leanna +Nadine +Noelia +Shyla +Tara +Yaritza +Charlie +Gwendolyn +Lina +Mina +Sally +Stacey +Thalia +Vianey +Beatrice +Calista +Clare +Giada +Gina +Hillary +Kalia +Kirsten +Leticia +Lilah +Macy +Maile +Mila +Vanesa +Vania +Willow +Alivia +Jaquelin +Josselyn +Leia +Leilany +Milan +Susan +Annabel +Anne +Deborah +Felicity +Jacklyn +Kaylah +Maite +Mayte +Pearl +Quinn +Yulissa +Betsy +Diya +Ellen +Elyse +Harper +Jordin +Lluvia +Macie +Marleen +Rocio +Selina +Tabitha +Aiyana +Isabell +Jazlene +Kaiya +Maricela +Melinda +Miracle +Princess +Savanah +Soraya +Anissa +Beyonce +Estefania +Nyla +Olive +Viridiana +Brissa +Celia +Charlene +Estefany +Gisele +Jaiden +Jocelin +Khloe +Micaela +Riya +Yessenia +Aditi +Ailyn +Aliana +Alisa +Anabella +Briseida +Diane +Donna +Elaina +Eve +Hilary +Keila +Phoenix +Selah +Xitlali +Adelina +Arielle +Jazelle +Kayleigh +Logan +Madisyn +Neveah +Parker +Sarina +Tamara +Yajaira +Cheyanne +Dalila +Desirae +Jaelynn +Jewel +Kadence +Kailani +Lorelei +Ryann +Saray +Shaila +Shreya +Xitlaly +Zariah +Amani +Brittney +Dianna +Giuliana +Jaylin +Jazlynn +Jenifer +Kayley +Kristine +Maleah +Yolanda +Yoselyn +Adela +Annalise +Cambria +Cherish +Evangelina +Gissel +Ivanna +Janeth +Jazmyn +Jocelyne +Karol +Kaylyn +Lyric +Maryam +Natalee +Natalya +Rosalinda +Tori +Tracy +Tyler +Yamileth +Alia +Amaris +Ani +Ayanna +Carolyn +Destinee +Elyssa +Eunice +Finley +Frances +Ireland +Isela +Janae +Janette +Naima +Rita +Rowan +Roxanna +Tess +Aliya +Alyna +Azucena +Dayanna +Desteny +Geraldine +Gladys +Jackelyn +Kasey +Kayden +Kristin +Lourdes +Madalyn +Malaya +Meghan +Melani +Meredith +Myah +Nicolette +Regan +Ryleigh +Skyla +Amya +Bryana +Coral +Joelle +Jolene +Keilani +Leilah +Lisette +Mckayla +Norah +Simran +Tianna +Aliah +Ally +Candy +Casandra +Cienna +Corinne +Deja +Evie +Kaylani +Kianna +Marlyn +Melia +Melisa +Ysabella +Zoie +Adelaide +Adrienne +Aliza +Amari +Anjali +Bailee +Baylee +Brandy +Breana +Carol +Cielo +Devyn +Gillian +Halle +Jaidyn +Joanne +Karime +Kenzie +Klarissa +Noa +Ada +Ainsley +Amina +Ananya +Arlette +Emmy +Italia +Jackie +Jacquelin +Jazzlyn +Justice +Karely +Katia +Lorraine +Miya +Mylie +Nayely +Rhea +Rianna +Shiloh +Star +Theresa +Tina +Zaira +Delia +Drew +Ivette +Izabel +Joslyn +Kaela +Lidia +Lucille +Mandy +Norma +Rosario +Rosie +Shyanne +Aanya +Candice +Davina +Harley +Jasleen +Jaslyn +Jaylah +Journey +Karly +Kayli +Kirra +Magaly +Mareli +Mika +Milagros +Shania +Soleil +Aleah +Angeles +Antonia +Elissa +Evelynn +June +Kalea +Kaley +Kaylen +Kaylynn +Keily +Krista +Laisha +Liberty +Maliyah +Mira +Naomy +Raven +Romina +Roxy +Samira +Sonya +Tamia +Trisha +Zahra +Amerie +Cassie +Celina +Ebony +Elianna +Estella +Hailie +Juana +Karis +Lara +Lilyanna +Mariyah +Rachelle +Raegan +Saniya +Sayuri +Tatianna +Tayler +Abygail +Alannah +Alysa +Analise +Anisa +Ariadna +Arleth +Chiara +Elina +Emi +Jaida +Jasmyn +Joceline +Julisa +Katarina +Kylah +Kyleigh +Leyna +Lillie +Lillyanna +Marcela +Marisela +Maxine +Melony +Reanna +Ria +Shayna +Sky +Tia +Vianney +Yulianna +Abbey +Abbigail +Amalia +Astrid +Dariana +Darla +Elliana +Gisel +Ixchel +Jaclyn +Joey +Kalani +Karyme +Kristy +Leena +Lynette +Maeve +Noor +Paisley +Saniyah +Vivianna +Yocelin +Yoseline +Abbygail +Ailani +Arya +Avalon +Belle +Briseyda +Cara +Carley +Chelsey +Ericka +Hadley +Haven +Janiyah +Jizelle +Kaliyah +Laney +Laylah +Londyn +Matilda +Mylee +Rhiannon +Suri +Unique +Yaneli +Zion +Analisa +Ayana +Candace +Corina +Georgina +Griselda +Jana +Janiya +Jaylen +Jiselle +Joselyne +Lianna +Lisbeth +Makaylah +Mariel +Myla +Pauline +Shyann +Tammy +Toni +Vivienne +Yessica +Zuleyka +Alanah +Allyssa +Ann +Aya +Bridgette +Carlie +Cecelia +Chantal +Cierra +Deisy +Dorothy +Estela +Haily +Ilene +Jaeda +Jaquelyn +Jaya +Karolina +Kyara +Leilene +Lillianna +Milena +Neha +Raylene +Sahara +Savana +Stefany +Aniah +Anita +Annelise +Avril +Betzy +Beverly +Bree +Cinthia +Dafne +Estephanie +Gisell +Gwyneth +Irma +Jayde +Kalina +Leann +Leanne +Makaila +Milana +Milla +Nallely +Nichole +Nyah +Sabina +Abbie +Adison +Aixa +Alex +Amiyah +Anessa +Betzaida +Colette +Dina +Dora +Elia +Greta +Hallie +Judy +Katharine +Kenna +Kiersten +Kim +Kristal +Lillyana +Liz +Lorelai +Maliah +Meadow +Mindy +Monserrath +Moriah +Noemy +Scarlette +Sinai +Stefanie +Susanna +Vida +Adamari +Addisyn +Aiyanna +Alexsandra +Alexys +Anai +Anastacia +Asha +Elisha +Elvira +Emerald +Gema +Ginger +Honey +India +Ivonne +Izabelle +Izel +Jalissa +Janell +Mariajose +Maryann +Meagan +Michell +Mischa +Patience +Pricilla +Shaylee +Sol +Stevie +Vicky +Whitney +Zulema +Abigale +Amberly +Ashely +Aubriana +Avani +Cianna +Daira +Dayna +Destiney +Devin +Devon +Isla +Jailyn +Jazmyne +Jeanette +Kaelynn +Karlie +Kaycee +Keren +Kierra +Laci +Lailah +Laurel +Lesli +Livia +Lizet +Macey +Maci +Mara +Marbella +Nalani +Nola +River +Rosalie +Saige +Saira +Sanjana +Shea +Shriya +Sofie +Yadhira +Alexus +Anayeli +Angely +Antoinette +Ariah +Arissa +Berlin +Bianka +Cathy +Citlalli +Cloe +Dallas +Dasha +Delila +Doris +Elsie +Ema +Gisela +Hadassah +Isadora +Jaycee +Kamilah +Kaylene +Keely +Lainey +Lori +Maiya +Malina +Micah +Noelani +Olga +Rayna +Robyn +Saanvi +Samaya +Sloane +Yocelyn +Adalyn +Adelyn +Alexi +Amairany +Amirah +Angelie +Anisha +Anneliese +Baylie +Bonnie +Charlee +Ciana +Connie +Elysia +Gracelyn +Haydee +Ileana +Iyana +Jaedyn +Janely +Jenessa +Joleen +Kallie +Kayle +Kennedi +Lynn +Madalynn +Maylin +Melania +Mildred +Millie +Naya +Reece +Rosalyn +Sahana +Samarah +Samaria +Serene +Sunny +Tanvi +Vera +Vienna +Zuri +Abigayle +Abrianna +Adyson +Alisson +Annalisa +Annmarie +Antonella +Ashleigh +Aspen +Azalea +Brook +Cayla +Cheryl +Dulcemaria +Edna +Emeli +Flora +Iyanna +Janine +Jennyfer +Jianna +Joscelyn +Josefina +Juanita +Kacie +Karma +Katerina +Kendal +Lexy +Linnea +Magali +Mari +Marianne +Mariella +Marielle +Marlee +Mercy +Milani +Mona +Nellie +Priya +Raina +Sabine +Sanai +Sydnee +Yamile +Yulisa +Zayra +Aida +Akira +Amiya +Ariyana +Arleen +Ashlie +Aundrea +Cailyn +Carlee +Carrie +Danae +Dani +Dennise +Deysi +Farah +Frankie +Gretchen +Hennessy +Hilda +Isha +Janelly +Jazleen +Katalina +Katy +Katya +Madisen +Malena +Myra +Ofelia +Osiris +Pilar +Rayne +Remy +Samanta +Sana +Sanaa +Tatyana +Taya +Thania +Tiara +Tyra +Vivien +Yana +Yasmeen +Yazmine +Adrina +Alaya +Alessia +Annabell +Ariella +Averie +Bria +Brianne +Briseis +Charity +Charli +Christiana +Dayra +Elsy +Emelia +Felicia +Franchesca +Francisca +Gissell +Imelda +Ines +Jahaira +Jovanna +Kaili +Kairi +Katelin +Kelis +Kimberley +Lilli +Marcella +Marian +Nahomy +Nailah +Nubia +Nylah +Paulette +Raya +Stefani +Sunshine +Thea +Treasure +Vianca +Xochilt +Yesica +Zaida +Adrian +Ahtziri +Amariah +Angelyn +Annamarie +Arwen +Bernadette +Betty +Caelyn +Charley +Christy +Ciera +Eloise +Esha +Ester +Gwen +Hunter +Jackelin +Jael +Jaliyah +Jaylyn +Jayme +Jessenia +Jodie +Kaleah +Kalie +Kalli +Karley +Lani +Madelin +Maren +Maricarmen +Marjorie +Miabella +Mikaylah +Minerva +Mirian +Monet +Nayelli +Nova +Pricila +Prisila +Rayleen +Rory +Sade +Sapphire +Sayra +Sharlene +Tallulah +Taniya +Valarie +Violette +Yaquelin +Zoya +Aislinn +Alayah +Alessa +Alexandrea +Ambar +Amiah +Anahy +Anaiah +Analy +Anel +Anette +Angelic +Anushka +Ashanti +Atiana +Aviana +Ayesha +Billie +Britany +Clementine +Daysi +Dior +Elvia +Emelie +Esme +Evalyn +Evette +Haleigh +Hellen +Henna +Isaura +Jailene +Janaya +Jannet +Jayna +Jesenia +Jessalyn +Jordynn +Kaelin +Kaily +Kamille +Keilah +Keiry +Lacy +Laysha +Leona +Lilith +Lucie +Madysen +Mai +May +Mikaila +Mollie +Moncerrat +Monika +Navya +Nikita +Nya +Ocean +Quincy +Raelynn +Rania +Saphira +Serina +Shaelyn +Soledad +Symphony +Tayla +Trista +Uma +Veronika +Yaretzy +Yuritzi +Zaniyah +Adelynn +Alba +Alexie +Alyssia +Alyvia +Amayah +Anabell +Analia +Anayah +Aneesa +Angelita +Ariela +Brandi +Brianda +Cailin +Cate +Chantel +Chaya +Cinthya +Danya +Dolores +Essence +Evelina +Fallon +Freya +Genessis +Glenda +Halie +Harleen +Iman +Inez +Jaydin +Jolette +Josslyn +Kaleigh +Kalista +Karlee +Kimberli +Kloe +Leela +Leilanie +Leslye +Lisset +Madilynn +Malaysia +Marla +Mattea +Melannie +Meleny +Morelia +Neida +Nika +Paityn +Robin +Shira +Sydnie +Taliyah +Trina +Venus +Zahira +Zainab +Zariyah +Aaliah +Alysha +Amie +Anaiya +Annalyse +Anusha +Arden +Arlet +Ashlin +Aubrianna +Aubrielle +Audrianna +Averi +Ayah +Ayden +Bernice +Brigitte +Brookelyn +Brooklin +Carmela +Caylee +Chyanne +Darlyn +Dejah +Desire +Ellison +Elly +Emelyn +Emili +Emme +Farrah +Faviola +Faye +Gaby +Gladis +Gurleen +Heavenly +Ileen +Inaya +Ivory +Jacey +Jaela +Janie +Jarely +Jaslynn +Jasmyne +Jaymie +Jennie +Jesslyn +Josette +Kamari +Kathrine +Katlyn +Katlynn +Kelsie +Kya +Kyndra +Libby +Liv +Lucinda +Mae +Maira +Margot +Mariafernanda +Mattie +Melodie +Michel +Michele +Montana +Nicolle +Persia +Petra +Prisha +Rebeka +Rosalina +Sakura +Samiya +Samiyah +Sania +Sawyer +Sheccid +Sirena +Suzette +Taniyah +Tea +Tegan +Tierra +Yanely +Yuna +Yuri +Zia +Zuleima +Zury +Abagail +Addisen +Aide +Aiden +Ailin +Akeelah +Alianna +Alin +Aline +Alora +Alynna +Alyza +Amarie +Anali +Analicia +Analiese +Anela +Ania +Annalee +Aranza +Araya +Arlyn +Avah +Avigail +Azalia +Bertha +Braelyn +Briley +Brookelynn +Brylee +Callista +Chasity +Christa +Citlally +Consuelo +Corrine +Deana +Elana +Eleni +Ember +Emiko +Emmalee +Eryn +Ezra +Giavanna +Jaila +Jalynn +Jalyssa +Janai +Janiah +Janna +Jayline +Jean +Jenelle +Jordana +Josselin +Justina +Kacey +Kai +Kailah +Kailynn +Kamya +Keanna +Keyli +Kinsey +Kori +Lailani +Lanae +Leana +Lexus +Lilyan +Lissette +Lizbet +Louisa +Lylah +Lyra +Mabel +Madelyne +Marin +Marlie +Marwa +Mayah +Mayeli +Mayrin +Melyssa +Misty +Miyah +Myriam +Naila +Naiya +Niya +Oceana +Rain +Ramona +Rosalia +Rosita +Rylan +Sahar +Sariyah +Selma +Shani +Shelly +Sherry +Starr +Suhani +Susie +Tahlia +Tanisha +Trish +Willa +Winter +Zahara +Aaniyah +Alanie +Alaysia +Allegra +Ami +Anamaria +Angelly +Annaliese +Aolani +Arisbeth +Audree +Ayva +Bianey +Bibiana +Briza +Caleigh +Cleo +Colleen +Dara +Debra +Delylah +Demi +Divine +Divya +Ellery +Emani +Evelyne +Geneva +Hayleigh +Hermione +Ilianna +Illiana +Irie +Italy +Izzabella +Jalyn +Jaylee +Jeannie +Jeniffer +Jeslyn +Juniper +Kaeli +Kalena +Kamilla +Kavya +Keara +Kristyn +Kyndall +Lacie +Laniyah +Lillyann +Loren +Love +Luella +Maegan +Makaela +Maricruz +Mei +Misha +Neela +Nereida +Nereyda +Nidhi +Nour +Preslee +Rihana +Rosemarie +Saleen +Salina +Samya +Sanvi +Sarahy +Shaina +Shana +Shay +Shruti +Shylah +Suzanne +Terra +Tristan +Venice +Vina +Yanira +Yatziri +Zaria +Abriana +Acacia +Adamary +Adia +Ailene +Aja +Alea +Alinah +Alise +Amia +Ananda +Angeli +Anja +Anjelica +Arianah +Aries +Arlin +Audrie +Aura +Azariah +Bobbie +Brea +Breanne +Brooklynne +Caren +Celest +Charisma +Chelsy +Chevelle +Danely +Darby +Daylin +Destany +Deyanira +Dianne +Divina +Ellianna +Elliot +Elodie +Emmi +Evan +Francis +Giulia +Gracelynn +Idalia +Imogen +Irlanda +Itzayana +Jamila +Jaretzy +Jazlyne +Jesse +Jessi +Jewell +Jezebel +Joann +Jolina +Journee +Jubilee +Julyssa +Kaci +Kaira +Kameron +Kameryn +Kamora +Karisma +Karoline +Kaylei +Keilana +Kellie +Kendyl +Khushi +Kiarra +Kimberlyn +Kimiko +Korina +Kourtney +Kyrie +Lanie +Lela +Lessly +Luzmaria +Lyanna +Mackenna +Magnolia +Mahi +Maisie +Malayah +Malea +Maleena +Mannat +Marion +Marlena +Marli +Marysol +Meghna +Monzerrat +Nadya +Neva +Nevaeha +Nirvana +Nyomi +Payten +Pia +Rachell +Riana +Rosamaria +Ryanna +Ryley +Samia +Sariya +Shae +Sherlin +Sherly +Shivani +Skylee +Starla +Sumaya +Suzanna +Sylvie +Verenice +Viktoria +Viola +Yanet +Yoana +Zaniya +Zuleika +Airam +Alanis +Aleyah +Ali +Alinna +Ameerah +Ammy +Amrita +Andi +Ariadne +Arriana +Ashton +Bayley +Betsaida +Bobbi +Brihanna +Bryce +Cailey +Calli +Carli +Chanelle +Chantelle +Chase +Clarisse +Coco +Constance +Cosette +Dallana +Danyelle +Deena +Delanie +Dyana +Eimy +Ela +Elayna +Elinor +Elli +Ellis +Elora +Emelin +Emilly +Eternity +Genevie +Hasini +Havana +Ilse +Isa +Izabela +Jacinda +Jahzara +Jaime +Jaina +Janel +Jelena +Jemma +Jenni +Jiya +Joan +Jocelynne +Jody +Joely +Joslynn +Joycelyn +Jude +Julieana +Julienne +Katherin +Kaylina +Keana +Keegan +Keeley +Keilly +Keona +Kiran +Kiya +Laela +Laylani +Leylani +Liani +Lillyan +Linette +Lisseth +Lizania +Lois +Malani +Maliya +Margaux +Mariaelena +Mariaguadalupe +Mariya +Marleny +Marta +Maryah +Mayleen +Mckinley +Meah +Melonie +Merari +Mercedez +Mimi +Nailea +Quetzalli +Raelyn +Raine +Reilly +Rena +Romy +Rosalind +Samari +Sanah +Sanya +Savina +Sequoia +Shakira +Shaniya +Shantal +Shelley +Siomara +Sonja +Susannah +Tamar +Trinidad +Tristen +Varsha +Xenia +Yakelin +Yelena +Ysabel +Yudith +Yumalay +Zadie +Zoee +Zyanya +Aaralyn +Aarna +Aashna +Adina +Aeris +Aidan +Aila +Aime +Akasha +Akayla +Aleida +Aleyda +Allisson +Alyah +Alyana +Alycia +Amalie +Amberlyn +Amilia +Anaiyah +Anakaren +Analee +Analucia +Anay +Andie +Andria +Annemarie +Anyah +Anyssa +Ari +Aris +Ariyah +Armani +Atziry +Aubri +Audra +Aurelia +Avianna +Azaria +Brisia +Bryn +Calia +Camden +Campbell +Capri +Carmel +Carmella +Catarina +Cesia +Charly +Chloee +Christal +Christen +Clarisa +Cloey +Clover +Corinna +Daisha +Darcy +Daria +Darian +Darleen +Debbie +Desiray +Destinie +Disha +Elin +Elisabet +Emersyn +Estelle +Evany +Fatimah +Gissele +Graciella +Gwendalyn +Gwenyth +Haidyn +Hanah +Helene +Holland +Honesty +Idaly +Ila +Isobel +Jacy +Jaeden +Jaelene +Jailynn +Jaydah +Jaydyn +Jeanelle +Jena +Jersey +Jorja +Jovana +Judit +Kadyn +Kaeley +Kalaya +Kambria +Kandice +Kari +Katana +Kaydee +Kelsy +Kenadie +Kiarah +Kinsley +Kitzia +Kora +Leeann +Leigha +Lezly +Lilyann +Liset +Liya +Liyah +Liza +Lizett +Lotus +Lynda +Mailey +Makiah +Malak +Mariangela +Marilu +Maryn +Melenie +Metzli +Mykaela +Mykayla +Mylah +Mylene +Navaeh +Nayelly +Nayla +Nhi +Nikole +Nisha +Noah +Noel +Odalys +Odessa +Poppy +Prisilla +Priyanka +Rian +Rochelle +Roxane +Rubie +Salome +Samhita +Samiah +Saya +Sela +Serafina +Sevana +Shreeya +Sia +Siana +Sianna +Siri +Solana +Sonora +Stacie +Stephani +Talya +Tatyanna +Teya +Vianna +Xochil +Yael +Yanelly +Yelitza +Yenifer +Ysabelle +Yuriana +Yzabella +Zayna +Zitlaly +Aalyah +Aarya +Adele +Adora +Adylene +Aidsa +Alexsa +Aleya +Alizay +Allena +Alliyah +Alona +Alyanna +Alyse +Alysia +Alyssandra +Amal +Ameena +Aminah +Amyah +Anahit +Analiyah +Aneth +Angelena +Anishka +Anny +Ariane +Ariya +Aryam +Ashleen +Ashlynne +Athziri +Aubriella +Audry +Avary +Aylen +Baleria +Berenise +Berlyn +Blessing +Brigette +Calla +Calleigh +Cayden +Caylin +Cecily +Chandler +Chelsie +Clarice +Constanza +Cyan +Dailyn +Daizy +Damariz +Dasia +Deasia +Dena +Denae +Denice +Devany +Devine +Dixie +Ebelin +Eesha +Eleana +Elicia +Ellena +Ellia +Elva +Emaan +Emeline +Emiley +Emmely +Erandy +Eveline +Evey +Fabiana +Fanny +Francheska +Freyja +Gianni +Giulianna +Guinevere +Harlie +Hiba +Hollie +Ilana +Inara +Iveth +Ivett +Izabell +Jadelyn +Jadelynn +Jamya +Jayci +Jaylinn +Jazzelle +Jazzlynn +Jazzmine +Jesica +Jessa +Jessika +Jhoana +Jolee +Joline +Jovie +Juliann +Julieann +Julieanna +Kacy +Kailie +Kalyssa +Kareena +Karsyn +Katheryn +Kathia +Kathya +Kayly +Kaytlin +Kelani +Kelley +Keyana +Kimberlin +Kimia +Kiyomi +Kloey +Kyana +Lakshmi +Larisa +Leandra +Lelani +Leonor +Leya +Liah +Lilibeth +Lilla +Linsey +Loretta +Louise +Lupe +Lyndsey +Maelynn +Magda +Makyla +Malana +Malika +Mallorie +Marielena +Marlin +Martina +Maura +Maylene +Meera +Mele +Micayla +Monserat +Myranda +Nadeen +Naia +Nanami +Naomie +Nayelie +Nazareth +Nely +Niah +Nohemi +Nuvia +Odette +Olyvia +Parneet +Polina +Portia +Quetzali +Racheal +Racquel +Remi +Rhiana +Rhyan +Richelle +Rikki +Rileigh +Rio +Roberta +Roselynn +Rosy +Sachi +Saffron +Samaiya +Saraya +Saskia +Saylor +Scout +Shanti +Shawna +Shelsy +Sheridan +Sicily +Silvana +Simona +Sivan +Sneha +Symone +Tate +Tatiyana +Taylin +Teresita +Therese +Vaishnavi +Vannesa +Vannessa +Vianka +Vivianne +Wednesday +Xitlalic +Yamila +Yatziry +Yoceline +Zaina +Zenaida +Adalynn +Adelaida +Adelia +Ahtziry +Aiko +Ailany +Aishwarya +Aisling +Alany +Aleigha +Aleksa +Alexxa +Alexxis +Alix +Alynah +Amairani +Amayrani +Angelee +Angeleen +Angelise +Angella +Anjelina +Annica +Anniyah +Areanna +Ariatna +Ariyanna +Arushi +August +Austyn +Avneet +Avni +Ayari +Aylene +Azure +Beautiful +Berlynn +Bethzy +Betzabeth +Bindi +Biridiana +Blythe +Brady +Breeanna +Britani +Carson +Catelyn +Christie +Chrystal +Clair +Cody +Colby +Cori +Cydney +Daffne +Dahlila +Daliah +Danitza +Daphnie +Darlin +Dawn +Debora +Dejanae +Destini +Echo +Edie +Egypt +Elani +Elexis +Elisia +Elyana +Elyanna +Elyza +Emerie +Emiliana +Emmery +Emy +Estephany +Fayth +Francine +Gabriel +Getsemani +Gigi +Gimena +Giovana +Gizel +Glory +Grisel +Halia +Harini +Harlee +Harriet +Hayle +Heydi +Ida +Indigo +Ivon +Jackelyne +Jaidan +Jaimie +Jalene +Jamilet +Jamileth +Jamiyah +Janett +Jaycie +Jaydy +Jaymee +Jazlin +Jeannette +Jenevieve +Jennah +Jezabel +Jia +Jodi +Joscelin +Josefine +Joselynn +Josephina +Joshlyn +Jozelyn +Jozlyn +Kaely +Kahlia +Kalei +Kalissa +Kalyn +Kamea +Kaniya +Karin +Karisa +Karli +Karyna +Kaydance +Keala +Keili +Keisha +Kemberly +Kennadi +Kennia +Kilee +Klara +Kloie +Krishna +Krysta +Kyah +Kyrah +Lanya +Lashay +Leiah +Leidy +Leyah +Lili +Liliane +Linzy +Lisania +Lovely +Luca +Lucila +Lulu +Lynnette +Makailah +Maranda +Marcelina +Marelin +Marlenne +Marycarmen +Matea +Mayumi +Mea +Meena +Melanee +Melaney +Merissa +Meztli +Michela +Mikyla +Miliani +Milly +Mirella +Miroslava +Nanci +Natania +Naveah +Nayleen +Nicky +Nicol +Nila +Ninel +Novalee +Odalis +Oona +Ophelia +Oriana +Paradise +Patty +Promise +Raeanna +Randi +Rheanna +Roma +Rosaisela +Rosio +Roxie +Ryah +Sadee +Safa +Sahasra +Samah +Saniah +Sari +Shanelle +Shianne +Shilah +Shylee +Sinead +Siobhan +Skyy +Socorro +Sonali +Sophya +Sora +Suzy +Svetlana +Sydni +Taleah +Talitha +Talula +Thelma +Tiffani +Valentine +Vannia +Vanya +Venecia +Venessa +Vy +Wendi +Yahira +Yarelli +Yuliza +Zada +Zohar +Aaliya +Adalee +Adara +Addie +Adi +Adisyn +Adrianne +Agatha +Agnes +Ailed +Aine +Akemi +Alaia +Aleen +Aleenah +Aleeyah +Aleeza +Althea +Aly +Alyn +Amaia +Amberlee +Amore +An +Analaura +Analie +Analyssa +Andy +Angelin +Angelyna +Anh +Ankita +Annalie +Anshika +Anvita +Apple +Arelie +Arlen +Arlett +Aryah +Ashanty +Ashli +Ashtyn +Aubry +Audriana +Austin +Avamarie +Avelina +Ayanah +Ayda +Ayumi +Belicia +Betsabe +Betzayda +Bo +Breann +Brennan +Breonna +Briannah +Bridgett +Brinley +Britanny +Caitlynn +Calliope +Cameryn +Camile +Carmelita +Carter +Cassia +Caydence +Cayley +Celena +Chana +Cherry +Ciarra +Collette +Cooper +Cordelia +Dalyla +Dalylah +Darya +Delina +Delyla +Denia +Destanie +Devan +Devina +Dezirae +Donya +Dream +Eleyna +Elliott +Emalee +Emaly +Eman +Emmah +Emmalynn +Emmie +Emmily +Emoni +Esthela +Estrellita +Eugenia +Evelia +Evonne +Fallyn +Fiorella +Gabby +Galia +Gauri +Gisella +Gracey +Gracyn +Gyzelle +Hala +Hali +Hannia +Harneet +Harshita +Hawa +Heily +Holley +Idania +Ilona +Ily +Ilyssa +Indie +Indira +Inessa +Iona +Irelyn +Isamar +Ishani +Issabella +Itzia +Jacelyn +Jahayra +Jakayla +Jamison +Janina +Janis +Jannelle +Jatziry +Jaydee +Jaylie +Jayne +Jeana +Jeanie +Jeanine +Jenavie +Jenesis +Jisselle +Joie +Jorden +Jori +Josalyn +Jose +Julian +Kadie +Kadynce +Kaedyn +Kailei +Kaliah +Kalynn +Kamara +Kamiya +Kareli +Karena +Karolyn +Kayliana +Keani +Keidy +Kensington +Keya +Keyara +Khadija +Kiely +Kimberlee +Kinzie +Kiyana +Lamiyah +Lamya +Laylanie +Lindsy +Lizzet +Loraine +Luana +Lya +Macee +Madaline +Madelaine +Madelene +Mahalia +Mahika +Malaika +Mane +Manpreet +Margo +Marguerite +Mariska +Maryanne +Marycruz +Marylin +Maryssa +Maylee +Mckinzie +Meaghan +Meghana +Meher +Meilani +Melena +Merelyn +Metztli +Michael +Michaella +Mikaella +Mikala +Mirna +Mishelle +Mitzy +Moira +Monae +Monroe +Monserath +Nakayla +Nalanie +Nalleli +Nariyah +Natally +Nathali +Naydelin +Nidia +Niki +Nyasia +Nydia +Nyema +Octavia +Oliviah +Opal +Parisa +Prachi +Pranavi +Precilla +Presleigh +Pyper +Rae +Rana +Rayanna +Reem +Rhian +Rianne +Richa +Rosalba +Rosaura +Roslyn +Rossy +Rowen +Ruhi +Ruthie +Ryanne +Sabella +Sahira +Saja +Samar +Saphire +Sareena +Saydee +Sedona +Seleste +Semaj +Semira +Sereniti +Shaianne +Shanell +Shanna +Sharai +Sharlyn +Shasta +Shauna +Siara +Siria +Skylie +Solimar +Sriya +Stefania +Sury +Tala +Teaghan +Teah +Tera +Terry +Thao +Theodora +Torrey +Trinidy +Tristyn +Vallerie +Vallery +Vanity +Viana +Vickie +Winnie +Wisdom +Xitlally +Yamilette +Yareni +Yareth +Yeimi +Yoanna +Yosselin +Ytzel +Zamara +Zarina +Zipporah +Zitlali +Zofia +Zora +Aahana +Aarushi +Aashi +Abbigale +Abbigayle +Abella +Adalia +Adalie +Adaline +Adaly +Adamariz +Adamarys +Addy +Adelene +Aden +Ahlam +Aidyn +Airiana +Aishani +Aislin +Aislyn +Aitana +Akshara +Alajah +Alaura +Alegria +Alesha +Alexiah +Aleyna +Alisia +Alizabeth +Alizae +Alizee +Allana +Alley +Allina +Allysa +Alya +Alysson +Amaiah +Amaiya +Amarissa +Ameera +Amely +Ameya +Amparo +Amreen +Amrit +Anagha +Analiz +Analyse +Anamarie +Andreya +Andriana +Angelene +Angelia +Annaly +Annasophia +Anneke +Annel +Anoushka +Ansley +Anthony +Anvi +Anyeli +Aralyn +Ariannah +Arie +Arin +Arlyne +Aryel +Ashna +Asma +Atziri +Avalynn +Avila +Avital +Ayde +Ayline +Ayram +Ayushi +Banesa +Becky +Bettie +Blair +Blake +Braelynn +Breeana +Brennen +Breyanna +Briahna +Briceyda +Bricia +Brieanna +Brithany +Brizeyda +Brylie +Brynna +Cady +Caley +Calie +Camelia +Cami +Candelaria +Caris +Carys +Caterina +Cathleen +Catrina +Celene +Charis +Chihiro +Chole +Christian +Ciena +Cindi +Claudette +Cristy +Cruz +Daija +Daisie +Damarys +Danelle +Daniya +Dannielle +Dasani +Davianna +Dayani +Dayannara +Daylene +Deisi +Delani +Delany +Della +Denis +Dennis +Desirey +Destanee +Dhalia +Diara +Diego +Dominic +Doreen +Dymond +Elektra +Elianah +Eliyah +Elizabet +Elizah +Ellamae +Emilyn +Emireth +Emmanuelle +Emmerson +Emory +Ena +Erandi +Evana +Evee +Evy +Ezri +Florencia +Gaia +Genavieve +Genesys +Genevive +Genisis +Genna +Genoveva +Gianella +Giannah +Gionna +Giorgia +Gracee +Gurnoor +Halena +Han +Hanan +Hania +Harmonie +Havyn +Husna +Ianna +Ina +Iran +Irelynn +Isolde +Isra +Itza +Itzell +Ivet +Jacquelynn +Jadah +Jadie +Jaileen +Jakeline +Jakelyn +Jaleah +Jameson +Jamilah +Janesa +Jania +Jannah +Jannette +Jaritza +Jaselle +Jasmeen +Jaspreet +Jatziri +Jayah +Jayanna +Jaydn +Jazzmin +Jeimy +Jenavieve +Jenice +Jenise +Jessel +Jiana +Jill +Johannah +Jolin +Joselinne +Julina +Justyce +Kaavya +Kaelani +Kaelly +Kaiah +Kaidence +Kaliana +Kami +Kamrynn +Kaori +Karah +Karine +Karishma +Karizma +Karyssa +Kasie +Kassie +Katerin +Katerine +Katharina +Kathlyn +Kaycie +Kaylan +Kaylana +Kaylia +Kelsi +Kemora +Kennya +Keylee +Keylen +Keziah +Khaliah +Kiani +Kiele +Kieran +Kirin +Kitana +Kristi +Kristianna +Kristie +Kyler +Kymani +Laina +Laine +Laniah +Lawren +Leilanni +Leileen +Lennon +Leylanie +Liesel +Lillee +Linden +Lisbet +Lizabeth +Lorna +Luci +Lucianna +Maila +Makala +Mali +Maliha +Maneh +Maniah +Manjot +Maram +Marializ +Marialuisa +Mariangel +Maribelle +Mariely +Marily +Marilynn +Mariza +Marleni +Marlo +Marly +Maryana +Mayrani +Medha +Mehak +Merlina +Miarose +Midori +Mikah +Mirabel +Mirabelle +Mitzi +Mykah +Myriah +Myrna +Naibe +Nakia +Nalia +Natalye +Naudia +Neena +Neftali +Neomi +Niamh +Nichelle +Nicola +Nisa +Nissi +Nithya +Nivea +Niyah +Noe +Noely +October +Orianna +Penny +Peri +Princessa +Quinlan +Radha +Ramya +Raniyah +Rashel +Rayann +Rhema +Rida +Rilee +Rina +Risha +Ronni +Rosalin +Rosanna +Roselin +Rosella +Roya +Rut +Rylin +Saliha +Samayah +Saori +Sascha +Seanna +Selin +Senna +Sephora +Shai +Shaniyah +Shantell +Shara +Shaya +Shaylin +Shayne +Sheena +Shelsea +Shia +Sierrah +Sinthia +Siona +Siya +Smriti +Steffany +Stephania +Sterling +Storm +Story +Sujey +Sumayah +Suraya +Suzan +Syriah +Tamyra +Tanaya +Tehya +Tesla +Thais +Una +Uriah +Valerya +Veda +Verity +Vibha +Wren +Wynter +Xcaret +Yaqueline +Yazmeen +Yeneisy +Yoltzin +Yulia +Yumalai +Yumi +Yunuen +Zaire +Zarah +Zella +Ziana +Zully +Aadhya +Aaleyah +Aaliyha +Aalyiah +Aarohi +Abeer +Abegail +Abrielle +Adah +Adalynne +Adelin +Adelle +Adelyne +Adilyn +Adithi +Adysen +Ahana +Ahlana +Ainara +Aireanna +Aislynn +Ajanae +Akilah +Akina +Akshaya +Akshita +Alahna +Alayjah +Aleana +Alecia +Aleiyah +Alejah +Alesandra +Alesia +Alethea +Alexcia +Alexiss +Alexiz +Alexsis +Alexzandra +Alijah +Aliyana +Allanah +Alliana +Allura +Allyna +Alyce +Alyiah +Alyzza +Amaiyah +Amayrany +Amethyst +Amna +Amor +Anacristina +Anadalay +Analeah +Analis +Analissa +Analiza +Anapaula +Anasofia +Andee +Andrina +Angelik +Angelinah +Angelynn +Angy +Anica +Anicia +Aniela +Anijah +Anina +Annalyn +Annamaria +Annaya +Annya +Anouk +Antonieta +Aoife +Aolanis +Araseli +Arelis +Arelly +Arial +Arianne +Aribella +Ariele +Arihana +Arisa +Arisha +Arista +Arlynn +Arrianna +Aryn +Aryona +Ashby +Ashleynicole +Ashwika +Asusena +Athziry +Audri +Aulani +Aurea +Auria +Avarie +Aveline +Aviv +Avrie +Ayala +Ayane +Ayiana +Aylet +Ayleth +Azelia +Aziyah +Aziza +Azusena +Beatrix +Bela +Bowie +Bradie +Breanah +Breena +Briar +Briella +Brienna +Brigid +Britny +Brittanny +Brizeida +Caden +Caelin +Candise +Carleigh +Caterin +Cathryn +Caylie +Ceanna +Cecile +Cerenity +Channel +Charissa +Charlyn +Cherlyn +Chiamaka +Christabel +Christabella +Christin +Cidney +Ciella +Clarise +Claritza +Cloie +Corie +Cristine +Dacia +Daelyn +Daiana +Daijah +Daila +Dakotah +Damary +Daphney +Daviana +David +Dayanne +Dayleen +Daysha +Deirdre +Delfina +Delicia +Delmy +Desarae +Deseray +Destynee +Dezarae +Deziree +Dinah +Divinity +Dolly +Dyllan +Edyn +Effie +Eila +Elah +Elanie +Elexa +Elida +Eliora +Eliya +Ellyana +Eloisa +Ely +Elysse +Emberly +Emmaleigh +Emmaline +Emry +Enya +Eriana +Ermelinda +Erynn +Eshal +Evalina +Evalynn +Evamarie +Evanie +Evanna +Everly +Fergie +Fianna +Francia +Gabryella +Gala +Gayane +Gena +Genevy +Gennesis +Georgette +Georgiana +Georgie +Goretti +Graysen +Grayson +Greer +Gwynneth +Gyanna +Haasini +Haiden +Haidi +Halima +Halley +Halyn +Haruka +Hattie +Haya +Hayli +Heydy +Hina +Ilani +Ileanna +Ilyana +Iriana +Irina +Isabellah +Ishita +Ismerai +Israel +Ivania +Ivanka +Ivannia +Iyannah +Jacklin +Jadin +Jadzia +Jakelin +Jalisa +Jami +Jamiya +Janea +Janise +Jannely +Janvi +Jaquelinne +Jarelly +Jaslyne +Jassmin +Jayana +Jaylean +Jaylenne +Jazel +Jazell +Jazmeen +Jazmynn +Jazz +Jeidy +Jemima +Jenae +Jenaveve +Jennessy +Jennica +Jeraldin +Jewelisa +Jezel +Jezelle +Jissel +Jizel +Joelie +Jolyn +Joni +Joseph +Josilyn +Jossalyn +Josselyne +Julieanne +Julietta +Juliza +Julyana +Juno +Justyne +Kaden +Kaiden +Kaidyn +Kaile +Kaithlyn +Kamaria +Kamaya +Kamyla +Karalynn +Karmen +Katelen +Katlin +Kattie +Katty +Kaylanie +Kayra +Kaytlyn +Keaton +Keirra +Kelli +Kellyn +Kenadee +Kennady +Kera +Keri +Kerry +Keyly +Kimara +Kinley +Kona +Kristiana +Krystina +Kyanna +Kyle +Kyleen +Kylin +Kymberly +Kyndal +Lanai +Lanaya +Landyn +Laniya +Lariyah +Larkin +Launa +Lavinia +Layal +Layna +Leeanna +Leidi +Leighann +Leighla +Leiloni +Leina +Leonela +Lexis +Lezlie +Lianne +Lilya +Linh +Lizzeth +Lolita +Lovette +Luiza +Lundyn +Luzelena +Lyliana +Lynelle +Lynnea +Lysette +Macayla +Mackayla +Mackenzi +Madai +Madden +Madelynne +Madilynne +Madina +Magdalene +Maha +Mahati +Mahealani +Maiah +Mailee +Mailyn +Mairin +Maisy +Majestic +Majesty +Makalah +Makenzy +Makiya +Malaia +Malaina +Mana +Maniya +Maraya +Marcia +Marelyn +Mariaisabel +Mariateresa +Marieli +Marilin +Maris +Maritsa +Marixa +Marlaina +Marlina +Maryanna +Marylou +Mason +Matilde +Maybelline +Mayla +Maylea +Mecca +Megha +Meiling +Mekenzie +Melanny +Meleah +Meleena +Meliza +Merlyn +Meyah +Micaiah +Micel +Mikalah +Mikeyla +Milania +Mileena +Miliana +Mily +Miryam +Misa +Misel +Muskaan +Nadiah +Nahomi +Naidelyn +Naiema +Naina +Naira +Nairi +Naisha +Nala +Naliyah +Nara +Naraly +Narely +Nariah +Nataley +Natividad +Nawal +Nayana +Naydeen +Nelia +Nerissa +Neyda +Niara +Nico +Nishka +Nissa +Nita +Nitya +Noella +Noora +Noya +Nuria +Nyree +Nyssa +Oralia +Osmara +Padma +Pari +Persephone +Pressley +Queenie +Raengel +Rafaela +Raisa +Ranya +Ravneet +Rayana +Raylynn +Rayonna +Rayven +Rebekkah +Reema +Reena +Rehanna +Rilynn +Risa +Rosalva +Rosalynn +Rosi +Rosselyn +Ryen +Sadey +Safiyah +Sailor +Salem +Sameera +Sami +Samirah +Sammantha +Sammi +Samyra +Sanae +Sanaiya +Sanam +Sanaya +Sanyah +Sarena +Saria +Sativa +Sayda +Sayler +Seneca +Seriah +Seriyah +Seven +Shaela +Shaira +Shantelle +Shellsea +Sheyenne +Shireen +Shivali +Shoshana +Shyanna +Sibylla +Simrat +Sincere +Sindy +Sloan +Solange +Sona +Sonal +Sophi +Starlene +Stormy +Stuti +Sua +Sugey +Suhana +Suheidy +Sukhpreet +Sulema +Surina +Susy +Sutton +Suzie +Svea +Syanna +Syncere +Syniah +Syra +Taegan +Tais +Talaya +Taliah +Talise +Tamera +Tanner +Tatevik +Tawny +Tayde +Taytum +Teagen +Teanna +Tereza +Thy +Tiani +Tiffanie +Tova +Triniti +Tru +Tvisha +Tyla +Tylee +Ulani +Vaneza +Vianet +Vilma +Waverly +Xandria +Xitlalli +Yaira +Yamilett +Yamilex +Yanell +Yaretsi +Yaris +Yaritzi +Yashvi +Yaslin +Yasmen +Yeimy +Yohanna +Yolette +Yudany +Yuki +Yuritza +Yuritzy +Yzabel +Zakiya +Zamantha +Zamiah +Zaraya +Zaylee +Zelda +Zinnia +Ziva +Zoila +Zola +Zuleyma +Zuly +Isabella +Emily +Sophia +Samantha +Ashley +Natalie +Mia +Emma +Abigail +Ava +Olivia +Elizabeth +Madison +Valeria +Alyssa +Chloe +Sofia +Kimberly +Brianna +Victoria +Andrea +Camila +Jocelyn +Jasmine +Vanessa +Alexa +Evelyn +Kayla +Hailey +Alexis +Valerie +Sarah +Melanie +Audrey +Genesis +Giselle +Jessica +Hannah +Allison +Angelina +Grace +Maria +Lily +Destiny +Jennifer +Stephanie +Michelle +Ella +Maya +Natalia +Ariana +Savannah +Alexandra +Katherine +Daniela +Leslie +Kaylee +Lauren +Ruby +Melissa +Zoe +Isabel +Arianna +Taylor +Jacqueline +Mariah +Diana +Leah +Daisy +Julia +Nicole +Gabriella +Nevaeh +Addison +Amy +Kaitlyn +Sophie +Gabriela +Gianna +Angela +Layla +Alondra +Kylie +Madeline +Makayla +Brooke +Aubrey +Briana +Sydney +Delilah +Riley +Aaliyah +Liliana +Naomi +Charlotte +Claire +Katelyn +Brooklyn +Jazmin +Karen +Bella +Esmeralda +Adriana +Jade +Anna +Rachel +Alina +Faith +Sara +Leilani +Avery +Amanda +Eva +Fatima +Amelia +Guadalupe +Miranda +Lillian +Mariana +Jasmin +Alejandra +Karina +Juliana +Madelyn +Isabelle +Karla +Megan +Miley +Crystal +Ana +Bailey +Sienna +Marley +Sadie +Katie +Rebecca +Sabrina +Trinity +Haley +Kate +Peyton +Emely +Violet +Jazmine +Paige +Marissa +Ximena +Amber +Keira +Danielle +Zoey +Morgan +Tiffany +Angelica +Leila +Lucy +Alicia +Bianca +Dulce +Itzel +Mackenzie +Melody +Scarlett +Alexia +Paola +Serenity +Audrina +Jenna +Cynthia +Elena +Julianna +Julissa +Mya +Vivian +Denise +Joanna +April +Catherine +Valentina +Brenda +Jimena +Aileen +Izabella +Gabrielle +Ariel +Eliana +Lizbeth +Monica +Priscilla +Sierra +Jaslene +Nayeli +Christina +Hayden +Celeste +Nataly +Payton +Kelly +Jordan +Mikayla +Aliyah +Breanna +Autumn +Wendy +Cassandra +Laila +Nancy +Rylee +Stella +Lilly +Marely +Angie +Veronica +Daniella +Alana +Jordyn +Mary +Hazel +Jayden +Luna +Fernanda +Joselyn +Jayla +Amaya +Chelsea +Viviana +Nadia +Ashlyn +Allyson +Janelle +Molly +Anahi +Jamie +London +Perla +Allisson +Carolina +Desiree +America +Lucia +Caroline +Alexandria +Estrella +Malia +Laura +Yaretzi +Lila +Dayana +Gracie +Lesly +Alison +Iris +Alessandra +Khloe +Sarai +Cindy +Madeleine +Marlene +Tatiana +Erika +Jayleen +Kennedy +Danna +Marisol +Kassandra +Serena +Cecilia +Ellie +Josephine +Reese +Jada +Kylee +Erin +Kiara +Sasha +Eden +Summer +Noemi +Angel +Julie +Kira +Jillian +Gisselle +Lola +Carmen +Nathalie +Annabelle +Heidi +Jaylene +Caitlin +Irene +Aurora +Rosa +Dayanara +Shelby +Elise +Kendall +Helen +Camille +Jazlyn +Kaylie +Genevieve +Lyla +Yesenia +Clara +Maritza +Clarissa +Melany +Cassidy +Monserrat +Tessa +Athena +Gloria +Penelope +Adrianna +Delaney +Paulina +Carly +Yasmin +Abril +Kamila +Marilyn +Azul +Nina +Rubi +Sandra +Kailey +Reagan +Rose +Jaqueline +Miriam +Linda +Yareli +Alice +Danica +Kiana +Heaven +Caitlyn +Brooklynn +Cheyenne +Dana +Krystal +Lindsey +Melina +Piper +Fiona +Hope +Juliet +Johanna +Belinda +Erica +Kathryn +Esther +Jaelyn +Kendra +Katelynn +Lydia +Rihanna +Emilia +Mckenzie +Aniyah +Belen +Brisa +Kara +Tania +Marina +Raquel +Aleena +Lizeth +Siena +Yadira +Ivy +Jenny +Arely +Janessa +Maggie +Selena +Shayla +Annika +Christine +Mareli +Cadence +Kelsey +Lindsay +Paloma +Phoebe +Aylin +Makenna +Ruth +Claudia +Dahlia +Eileen +Savanna +Mckenna +Yoselin +Haylee +Hayley +Luz +Presley +Abby +Areli +Elisa +Milagros +Alissa +Annie +Eleanor +Ingrid +Madilyn +Makenzie +Jane +Skylar +Cali +Darlene +Kyra +Paula +Valery +Yaritza +Camryn +Cristina +Danika +Jayda +Juliette +Kyla +Monique +Natasha +Anaya +Arlene +Stacy +Brittany +Mikaela +Teresa +Georgia +Harmony +Lia +Margaret +Maribel +Aubree +Carla +Daphne +Hanna +Lilian +Lilliana +Talia +Adeline +Cameron +Janet +Noelle +Patricia +Anya +Bethany +Lexi +Mayra +Simone +Angelique +Camilla +Eliza +Sonia +Xiomara +Bryanna +Jazlene +Kaylin +Sarahi +Elaine +Nathaly +Reyna +Sherlyn +Yuliana +Holly +Nora +Alisson +Ashlee +Emerson +Francesca +Judith +Liana +Rosemary +Elle +Evangeline +Isis +Lilah +Alma +Ashlynn +Dalilah +Haylie +Kaelyn +Maryjane +Angeline +Catalina +Cristal +Dakota +Dalia +Edith +Harper +Lexie +Martha +Yazmin +Ciara +Denisse +Kathleen +Marie +Michaela +Araceli +Bridget +Frida +Isabela +Kaya +Pamela +Anika +Citlali +Lorena +Maddison +Mila +Teagan +Brielle +Dylan +Hillary +Joy +Tanya +Rylie +Yvette +Lea +Lena +Susana +Kaia +Lana +Allie +Aria +Ayla +Callie +Kenya +Scarlet +Tatum +Casey +Iliana +Kaitlin +Lizette +Samara +Anabelle +Kiley +Stephany +Aimee +Amelie +Ayleen +Britney +Jacquelyn +Jolie +Kristina +Rebekah +Dayami +Leyla +Anastasia +Courtney +Damaris +Isla +Keyla +Luciana +Kimora +Nathalia +Regina +Alyson +Ashly +Jessie +Madalyn +Kaydence +Kayleen +Kristen +Alaina +Celine +Hailee +Helena +Kayden +Lisa +Lucero +Roselyn +Carina +Emery +Heidy +Jaden +Leticia +Madelynn +Roxana +Sage +Sharon +Adilene +Brynn +Elsa +Jadyn +Larissa +Makena +Mariela +Carissa +Gizelle +Keila +Margarita +Skye +Alanna +Dominique +Galilea +Heather +Kathy +Macy +Quinn +Roxanne +Aryanna +Emilee +Kailyn +Kenia +Sandy +Arielle +Elisabeth +Leanna +Rachael +Savanah +Yamilet +Annabella +Barbara +Evelin +Graciela +Alize +Aracely +Chanel +Charlize +Imani +Kiera +Lesley +Lyric +Marlee +Rowan +Cora +Justine +Kaiya +Gia +Lilyana +Maite +Mercedes +Shannon +Yahaira +Addyson +Alena +Jackeline +Lina +Litzy +Montserrat +Nyla +Salma +Sylvia +Yasmine +Aniya +Estefania +Julianne +Madisyn +Mireya +Nia +Paris +Sariah +Anabella +Aryana +Ellen +Emilie +Marisa +Rocio +Shaila +Skyler +Willow +Xochitl +Anabel +Annette +Jasleen +Lluvia +Maliyah +Noelia +Olive +Yuridia +Zara +Alayna +Aubrie +Berenice +Estefany +Josie +Kayleigh +Mina +Rebeca +Tara +Alisa +Aliya +Amira +Destiney +Giovanna +Jaelynn +Jaidyn +Kalia +Kamryn +Leilah +Maia +Nelly +Parker +Elyse +Gwendolyn +Kali +Lidia +Miah +Ryan +Susan +Yarely +Yvonne +Ailyn +Azucena +Celia +Charlie +Gisele +Joana +Kailee +Kayley +Logan +Mallory +Renata +Sheyla +Alani +Amara +Baylee +Fabiola +Johana +Joseline +Kailani +Lucille +Anita +Anne +Dania +Esperanza +Gina +Kaila +Leia +Madyson +Shirley +Taryn +Adelaide +Beatriz +Blanca +Dalila +Diane +Donna +Flor +Frances +Gemma +Harley +Joyce +Julieta +June +Marlen +Matilda +Natalee +Precious +Selina +Tabitha +Virginia +Aiyana +Amari +Ayanna +Diamond +Isabell +Ivanna +Jaylin +Kaitlynn +Karissa +Lilia +Macie +Melinda +Shiloh +Sidney +Asia +Caylee +Jaiden +Janice +Jazleen +Kadence +Natali +Ryleigh +Sarina +Tiana +Zaira +Alia +Cara +Elina +Eloise +Finley +Geraldine +Jazlynn +Jordin +Josselyn +Kaliyah +Kassidy +Kaylyn +Lauryn +Malaya +Mariam +Marianna +Paisley +Roxanna +Selene +Xitlali +Aliana +Alivia +Ananya +Cielo +Deanna +Destinee +Elaina +Kaylani +Lupita +Maile +Renee +Saanvi +Thalia +Vanesa +Annalise +Citlaly +Elianna +Giana +Hana +Jocelynn +Kaylah +Lacey +Mckayla +Micaela +Milan +Nicolette +Soleil +Stacey +Tina +Yamileth +Amina +Betsy +Brandy +Brissia +Gissel +Ivette +Karly +Katrina +Lailah +Leilany +Magdalena +Mariyah +Mylee +Riya +Sheila +Shyla +Yessenia +Amani +Amaris +Briseida +Diya +Eunice +Eve +Giuliana +Grecia +Jacquelin +Janeth +Kalea +Karis +Kasey +Noa +Silvia +Suri +Aditi +Ainsley +Aisha +Alisha +Bailee +Carol +Charlene +Cheyanne +Jackelyn +Jizelle +Lianna +Lilianna +Millie +Myla +Princess +Arabella +Carolyn +Jaylynn +Jocelyne +Kasandra +Kaylen +Kenzie +Marcela +Meghan +Naima +Noelani +Pearl +Raegan +Rhianna +Violeta +Adamaris +Adelina +Aleah +Annabel +Celina +Clare +Coral +Desirae +Elissa +Felicity +Giada +Jaslyn +Jaylah +Jazmyn +Kyleigh +Miya +Reina +Rosalinda +Selah +Vivienne +Ada +Beatrice +Cailyn +Cambria +Darla +Elsie +Estefani +Karyme +Kaylynn +Lara +Lorelei +Mayte +Shreya +Vivianna +Anjali +Astrid +Brenna +Ireland +Londyn +Lorelai +Lourdes +Mika +Myah +Phoenix +Tamara +Aliah +Analia +Dayanna +Deborah +Elliana +Jenifer +Jewel +Kirsten +Maleah +Melani +Mylie +Nadine +Priscila +Xitlaly +Yaretzy +Aliza +Amiyah +Ani +Ariadna +Calista +Haven +Ivana +Janae +Janiyah +Jaylen +Joelle +Krista +Neveah +Norah +Sanai +Tori +Alannah +Bryana +Candy +Carlie +Colette +Davina +Desteny +Dianna +Emmy +Jaida +Jeanette +Jolene +Kallie +Kristin +Kristine +Natalya +Nola +Raylene +Rosario +Ryann +Sahara +Tyler +Zariah +Zoie +Aanya +Abbigail +Amya +Anais +Anissa +Ariella +Aya +Cherish +Dafne +Estella +Gisel +Griselda +Janette +Jaylyn +Jiselle +Keilani +Keily +Liberty +Livia +Madalynn +Meredith +Naomy +Sky +Skyla +Sofie +Vicky +Abbey +Devyn +Evangelina +Halle +Isela +Italia +Jaquelin +Journey +Justice +Karime +Katia +Melia +Mira +Rosie +Shayna +Taliyah +Trisha +Yajaira +Breana +Briseyda +Chiara +Ericka +Gillian +Irma +Izabel +Joselin +Lilyanna +Luisa +Magaly +Maryam +Maxine +Nikki +Rhea +Shea +Sloane +Soraya +Tatyana +Viridiana +Yulissa +Alyna +Amiya +Arleth +Asha +Bonnie +Candice +Casandra +Chantal +Citlalli +Dani +Evelynn +Evie +Jackie +Joanne +Juanita +Kianna +Laylah +Lillie +Maeve +Marlie +Milly +Saniya +Vania +Venus +Vera +Amalia +Angeles +Antonia +Arlette +Arya +Ayana +Deja +Delia +Izabelle +Kamilah +Karely +Kirra +Madilynn +Mara +Milla +Nichole +Rianna +Samira +Saniyah +Star +Yaneli +Aideliz +Akira +Analise +Avani +Brissa +Elia +Emme +Gisell +Ilene +Jazelle +Jocelin +Lesli +Lisette +Maricela +Miracle +Nyah +Roxy +Sahana +Saira +Tatianna +Vianney +Ann +Beverly +Cecelia +Cienna +Georgina +Ginger +Hilary +Kayli +Lynette +Meadow +Nalani +Rachelle +Sabina +Unique +Vianey +Adela +Adelyn +Alanah +Annelise +Avril +Brittney +Corinne +Dayanira +Greta +Hennessy +India +Jaliyah +Jana +Jaycee +Jayde +Jaylee +Joslyn +Klarissa +Lyra +Mandy +Norma +Scarlette +Tiara +Yolanda +Adrienne +Arleen +Charlee +Delila +Emelia +Geneva +Gladys +Hadley +Harlow +Janely +Janiya +Juana +Kaela +Karlee +Leanne +Leena +Mariajose +Mayah +Mischa +Moriah +Neha +Rayna +Shaylee +Shyanne +Stefanie +Theresa +Tianna +Tracy +Trina +Vienna +Adison +Amie +Anai +Anisa +Annabell +Annmarie +Antonella +Audriana +Aundrea +Charley +Christiana +Deisy +Devon +Jianna +Katy +Keren +Magnolia +Mona +Raina +Ria +Rosalie +Sayra +Tamia +Yoselyn +Zion +Adalyn +Aida +Ailani +Alaya +Ally +Annaliese +Aubry +Audree +Aurelia +Averie +Cassie +Cayla +Chelsey +Dallas +Elyssa +Ester +Gwen +Haydee +Ivory +Izel +Jasmyn +Kalani +Katarina +Kristy +Laurel +Lori +Marlyn +Maylin +Mayrin +Melisa +Nylah +Olga +Saige +Savana +Shriya +Sonya +Sunny +Whitney +Zahra +Abbie +Addisyn +Alayah +Alexi +Alexus +Audrie +Avalon +Connie +Dariana +Dorothy +Emmalee +Frankie +Hallie +Jackelin +Jacklyn +Jaedyn +Kai +Leela +Leona +Malina +Mercy +Monika +Myra +Raven +Rhiannon +Samanta +Shania +Tess +Yadhira +Zoya +Abygail +Adamari +Aiyanna +Amberly +Amia +Amirah +Anabell +Analisa +Anamaria +Angely +Bernice +Brisia +Christy +Cinthia +Delylah +Devin +Gema +Hailie +Janell +Jenesis +Jordynn +Julisa +Karma +Katalina +Kaylene +Keely +Laney +Lillianna +Maiya +Marbella +Melannie +Melony +Milana +Milena +Mindy +Nayely +Noor +Regan +Rylan +Sally +Serina +Ysabella +Yuri +Acacia +Anette +Aniah +Avah +Carrie +Danae +Dina +Ebony +Emi +Farah +Faye +Isha +Janelly +Jaquelyn +Jazzlyn +Judy +Kaili +Kalina +Karlie +Kloe +Lillyana +Linnea +Lucinda +Makaylah +Maliah +Mariel +Marisela +Meagan +Pilar +Pricilla +Rayleen +Rita +Sana +Sinai +Tegan +Winter +Yanely +Yara +Yocelin +Yuna +Ahtziri +Amerie +Analy +Anayah +Anisha +Anneliese +Aspen +Azalea +Berlin +Campbell +Cate +Coco +Danya +Elliot +Ember +Gwenyth +Honey +Ines +Isadora +Josefina +Kailynn +Kairi +Kaleah +Kaley +Kamora +Katerina +Kelsie +Kyara +Lexy +Lizzet +Lylah +Marian +Misha +Nova +Priya +Saray +Sayuri +Serene +Shaina +Simran +Zahara +Zuri +Abbygail +Allysson +Alynna +Annamarie +Ariah +Ayden +Beatrix +Betty +Bianka +Braelyn +Bree +Cailin +Candace +Capri +Chanelle +Cloe +Eleni +Emerald +Flora +Freya +Gisela +Gissell +Haily +Jennie +Kacey +Karol +Kaycee +Kendyl +Kenna +Kourtney +Kylah +Maci +Madisen +Makaila +Marcella +Maryann +Mirella +Petra +Prisha +Shivani +Stefany +Toni +Verenice +Yessica +Adyson +Alysa +Alysson +Amiah +Anaiya +Angelie +Annalisa +Armani +Briseis +Calleigh +Caydence +Charity +Clover +Darby +Dayna +Doris +Elora +Ema +Hadassah +Ilana +Jaeda +Jaslynn +Joey +Jovanna +Kaily +Katharine +Katya +Kierra +Leslye +Lillyanna +Magali +Mariella +Paityn +Raelynn +Romina +Rory +Sariyah +Solana +Stevie +Susanna +Yazmine +Zaria +Abigale +Allyssa +Anahy +Betzy +Blake +Charli +Darleen +Demi +Dolores +Elayna +Elisha +Eloisa +Emani +Gwyneth +Haleigh +Ileana +Irie +Ivonne +Iyana +Jaclyn +Jailyn +Jaya +Jayme +Jiya +Joceline +Juniper +Kaelynn +Karli +Keeley +Kendal +Lilith +Lissette +Mildred +Payten +Quincy +Sanaa +Shyann +Starr +Susie +Taliah +Valarie +Vianca +Vida +Yamile +Zaina +Zayra +Adelynn +Aleksandra +Alessia +Ali +Allegra +Anali +Anayeli +Arwen +Ashleen +Ayesha +Belle +Beyonce +Caitlynn +Carys +Corina +Darlyn +Dianne +Divina +Elin +Emalee +Emelyn +Emmie +Felicia +Genevie +Jacey +Jadelyn +Jael +Jalissa +Jazmyne +Joscelyn +Jubilee +Kaleigh +Kameron +Kennedi +Kim +Lili +Liv +Liz +Lucie +Maren +Marin +Marjorie +Marleen +Marli +Melania +Noel +Nya +Patience +Promise +Quetzalli +Ramona +Robin +Robyn +Sabine +Samaria +Saya +Soledad +Suzanne +Tallulah +Tea +Winnie +Zainab +Abigayle +Abrianna +Adrina +Amariah +Ameera +Anaiah +Anessa +Anyssa +Aranza +Ashely +Brianne +Bridgette +Brook +Cathy +Consuelo +Danitza +Dennise +Desire +Dulcemaria +Emmalyn +Eryn +Esme +Estela +Estephany +Hilda +Hunter +Ixchel +Jaimie +Jalyssa +Janiah +Janie +Jayline +Karolina +Katelin +Kayle +Kristal +Laci +Leighton +Libby +Lilyann +Lisbeth +Lizet +Lorraine +Macey +Mackenna +Mari +Maricarmen +Meena +Merari +Micah +Monserat +Nikita +Nour +Odalis +Pauline +Raya +Rosemarie +Samaya +Sanjana +Sharlene +Taniyah +Tanvi +Tayler +Trista +Xochilt +Yulianna +Zaniyah +Abagail +Adalynn +Adele +Aiden +Ailene +Alex +Alexsandra +Alexys +Alora +Ariyah +Ashanti +Ashleigh +Ashlie +Aubriana +Avianna +Ayva +Azaria +Bria +Briza +Brookelyn +Caleigh +Carley +Chase +Chelsy +Cierra +Danni +Edna +Emelie +Emmeline +Estephanie +Genessis +Gurleen +Iyanna +Jenelle +Jolina +Kailah +Kimberley +Kimberli +Kinsey +Lailani +Lainey +Laniya +Leana +Leann +Leilanie +Lela +Leyna +Lilli +Lilyan +Lynda +Malak +Maricruz +Marielle +Maryah +Nadya +Naila +Naraly +Naya +Neela +Nellie +Noemy +Nuvia +Odalys +Ofelia +Pricila +Raelyn +Remi +Rosalyn +Sarahy +Sawyer +Selma +Tia +Aaniyah +Aislinn +Alaysia +Alexie +Aleyah +Alianna +Aline +Alona +Alyse +Amyah +Anaiyah +Andie +Angeli +Angelika +Antoinette +Ariyana +Azariah +Billie +Carmela +Chaya +Christa +Cianna +Clarisa +Daira +Daria +Dawn +Emiko +Emili +Evalyn +Fallon +Fanny +Gracelyn +Heavenly +Hermione +Holland +Ila +Jalyn +Jamila +Jaydin +Jenessa +Jennah +Jesse +Kaira +Kalista +Kambria +Kamille +Katheryn +Kathrine +Keiry +Laniyah +Laylani +Lilit +Louisa +Lulu +Mabel +Madelin +Madelyne +Makaela +Mariafernanda +Marlo +Maylee +Meleny +Michele +Michell +Nahomi +Nailah +Nubia +Remy +Rhyan +Rilee +River +Sade +Saleen +Scout +Shira +Siya +Sydnee +Tiffani +Viola +Vivianne +Yelena +Yoseline +Yulisa +Zariyah +Adina +Alexandrea +Alix +Alyanna +Amayah +Ammy +Angelena +Angelia +Annalee +Araya +Arden +Arianne +Arissa +Arlyn +Aubrianna +Aubrielle +Baylie +Bernadette +Bibiana +Britany +Bryce +Camden +Carlee +Carli +Chantel +Cheryl +Ciana +Cinthya +Clementine +Colbie +Darcy +Dasha +Daysi +Destany +Deziree +Divine +Divya +Drew +Elliott +Elsy +Evette +Evolet +Ezra +Farrah +Francine +Gennesis +Giulia +Gretchen +Hayleigh +Honesty +Idaly +Iman +Jailynn +Janel +Jarely +Jaretzy +Jaymee +Jeanine +Jenavieve +Jenni +Jessalyn +Joleen +Joslynn +Josslyn +Julyssa +Kamyla +Karley +Keilah +Kelsea +Khushi +Lyanna +Lynn +Mae +Malayah +Malaysia +Mannat +Marianne +Marlena +Marta +Martina +Mattea +Mckinley +Melanny +Mimi +Minerva +Naia +Naina +Nallely +Nika +Reanna +Reece +Rio +Samiyah +Sol +Suzette +Sydnie +Tamar +Tammy +Tehya +Thea +Tyra +Viktoria +Yasmeen +Yuvia +Zulema +Zully +Aarya +Adrian +Aidan +Aislynn +Alessa +Alizee +Alliyah +Alyana +Amaia +Amarah +Amarie +Ambar +Anastacia +Annemarie +Anushka +Arieanna +Ariela +Ariya +Arriana +Ashtyn +Ayah +Betsabe +Blair +Brigitte +Callista +Constance +Dayani +Delaila +Delanie +Dior +Eesha +Elvia +Emeli +Evalynn +Evelina +Fatimah +Faviola +Franchesca +Francisca +Gracelynn +Hellen +Ileen +Imelda +Jamilet +Janaya +Janea +Janine +Jayna +Jeniffer +Jessa +Jessy +Jezebel +Joann +Joie +Joselyne +Josephina +Jovana +Jurnee +Justina +Kacie +Kadyn +Kaelin +Kaiden +Katlyn +Kaylan +Kelis +Keziah +Kinsley +Kori +Kristie +Kya +Lacy +Laisha +Louise +Luca +Lyndsey +Maira +Maisie +Malena +Maliha +Marlin +Meilani +Milani +Mollie +Monserrath +Navya +Nayla +Nevaeha +Niyah +Rana +Riana +Rina +Rochelle +Roselynn +Ryley +Safa +Sahar +Sania +Sanvi +Saoirse +Shruti +Sindy +Sloan +Sophya +Suzanna +Sylvie +Tanisha +Uma +Veronika +Violette +Willa +Xochil +Yael +Yocelyn +Zia +Aalyah +Abriana +Adia +Aleyna +Alizah +Alyza +Amairany +Aminah +Analeah +Analee +Analiese +Anoushka +Aolani +Ariadne +Aubri +Audrianna +Averi +Aviana +Betsaida +Brandi +Chasity +Dara +Dora +Ellianna +Ellis +Emelin +Emmaline +Essence +Evan +Francis +Gabby +Grayson +Harlee +Hasini +Heily +Ilse +Inaya +Inez +Irelynn +Isobel +Jaela +Jaelene +Jaime +Jaleah +Jamileth +Jannet +Jazlin +Jazlyne +Jennyfer +Jesenia +Jessi +Jolee +Kalena +Kalli +Kamiah +Karisma +Katherin +Kathia +Kathya +Kenley +Kiersten +Krishna +Lacie +Laurie +Lindy +Linette +Liyah +Loren +Mai +Makenzi +Malaika +Medha +Melodie +Mily +Mirian +Moncerrat +Monet +Mylah +Myranda +Nahomy +Nathali +Nayelli +Neida +Nohemi +Penny +Raine +Rashel +Rebeka +Rian +Roxie +Sailor +Sakura +Samiah +Saniah +Saylor +Sequoia +Serafina +Seraphina +Shaelyn +Shantal +Shay +Shayne +Sherlin +Silvana +Sonja +Starla +Story +Suhani +Thania +Therese +Triniti +Vaishnavi +Venice +Vianna +Vy +Yanira +Yarel +Yuritzi +Zayna +Zurisadai +Aila +Ailin +Alba +Alinah +Alyvia +Ami +Amilia +Amrita +Anahit +Analiz +Angelene +Angelli +Ania +Anja +Ari +Arionna +Athziri +Audra +Berlyn +Bertha +Betzaida +Bobbi +Bryn +Caelyn +Camdyn +Cayden +Cecily +Celest +Chelsie +Christie +Ciera +Colleen +Cordelia +Dalyla +Dasia +Debbie +Deena +Delany +Della +Elana +Ellery +Elly +Elodie +Elva +Emeraude +Emerie +Emmalina +Emory +Estelle +Evy +Getsemani +Gisella +Harmoni +Holley +Hollie +Huda +Illiana +Imogen +Inara +Isaura +Ishika +Ivanka +Izabell +Izzabella +Jacquelyne +Jahaira +Jahzara +Jailah +Jannah +Jaselle +Jaslyne +Jasmyne +Jaycie +Jazzlynn +Jersey +Jessenia +Jia +Joi +Jorden +Jorja +Jules +Kamilla +Kamya +Kaori +Karmen +Karsyn +Keanna +Kelsy +Kenadi +Kiya +Kyndal +Lani +Liah +Lizett +Maddie +Mahika +Malea +Mariaguadalupe +Maribella +Marilynn +Marion +Maryanne +Maryn +Meliza +Melonie +Miabella +Mikaila +Minnie +Monzerrat +Nakayla +Nariah +Natally +Nila +Nyomi +Paulette +Rae +Rain +Rayann +Rayne +Richelle +Rosalina +Roslyn +Savina +Seanna +Sedona +Shanna +Shaylynn +Siri +Sneha +Sunshine +Suraya +Symphony +Tahlia +Talya +Taya +Treasure +Veda +Yenifer +Yoanna +Aarna +Aashna +Abrielle +Adrianne +Alanie +Aleen +Alijah +Alizae +Alyssia +Ameena +Ameerah +Amora +Andreya +Angelic +Angelyn +Anjelica +Atiana +Atziry +Audry +August +Avila +Avni +Aymar +Beautiful +Brookelynn +Caden +Calie +Carsyn +Cathryn +Celena +Charisma +Christal +Corrina +Cosette +Cruz +Darya +Daylin +Delyla +Denis +Dixie +Elvira +Eman +Emiley +Emilly +Etta +Evelyne +Geovanna +Giavanna +Gissele +Giulianna +Graciella +Gweneth +Halia +Harmonie +Irlanda +Issabella +Itzayana +Ivett +Jadeyn +Jaila +Jalynn +Janna +Jaymie +Jazzmin +Jeanelle +Jeannie +Jemma +Jena +Jennavecia +Jeslyn +Jolette +Joline +Joselynn +Julieana +Julieanna +Kaliah +Kamari +Kamea +Kameryn +Kareena +Kavya +Keana +Keilly +Keyra +Kyndall +Kyrah +Kyrie +Laya +Leiah +Lilyanne +Liya +Love +Luella +Makailah +Malorie +Marelyn +Margo +Margot +Marguerite +Marly +Marylin +Matea +Mattie +May +Meera +Mena +Mihika +Millicent +Minna +Misty +Moira +Myriam +Nailea +Nala +Naliyah +Nandini +Naydelin +Nereyda +Nico +Nicola +Nidhi +Niki +Octavia +Odette +Osiris +Parisa +Poppy +Raelene +Rafaela +Rhiana +Rileigh +Rosalia +Rosalva +Roya +Sabella +Sahasra +Sapphire +Shae +Shaniya +Sherry +Sheryl +Shylah +Stacie +Stephania +Symone +Tayla +Tenaya +Venecia +Wren +Yailin +Yaquelin +Yesica +Zaida +Zayda +Zitlaly +Zora +Zyanya +Abigael +Adamary +Addysen +Adria +Aeris +Ahana +Aide +Airam +Akemi +Alany +Alea +Aleida +Alexzandria +Alli +Aly +Amarissa +Analicia +Anel +Angelee +Angella +Anyah +Arlet +Aryssa +Ashlynne +Asiah +Athziry +Avelina +Ayelen +Ayvah +Bayley +Biridiana +Bliss +Breann +Breanne +Briahna +Briannah +Brooklin +Brylie +Cailey +Cameryn +Caprice +Chanell +Charis +Cherie +Christian +Chyanne +Clarice +Clio +Colby +Cori +Dahlila +Daisha +Dayamy +Debora +Desiray +Devina +Devynn +Deysi +Dinah +Doreen +Dyana +Dyanna +Edie +Ellia +Elyana +Elysse +Emmaly +Emoni +Enya +Esha +Eugenia +Evalina +Ever +Ezmeralda +Fayth +Gaia +Giovana +Gyselle +Halie +Halima +Halo +Harleen +Irelyn +Isa +Itzell +Ivon +Izabela +Jacinda +Jacquelynn +Jadelynn +Jakelin +Janay +Janey +Jasmeen +Jaydee +Jazel +Jazzlene +Jean +Jennavie +Jessika +Jewell +Josette +Jude +Kaeli +Kaely +Kaleia +Kalie +Kari +Kaylei +Kenzi +Keona +Kiani +Kiarra +Kodi +Kyah +Laela +Layne +Leeann +Leilene +Leya +Leylani +Lillyanne +Litzi +Lizbet +Luana +Lya +Maddilyn +Madisson +Maleena +Manya +Marelly +Marielena +Marleny +Marwa +Mayumi +Mazzy +Meah +Mercedez +Michel +Moana +Mykayla +Nariyah +Navaeh +Neriah +Nidia +Niya +Niyati +Oriana +Peighton +Pia +Ramya +Raniyah +Rayanna +Rebecka +Reem +Reilly +Rosita +Ryanna +Sachi +Safia +Safiya +Samarah +Samiya +Sammantha +Saphira +Sela +Semaj +Sharlyn +Shelly +Shia +Shianne +Shruthi +Siara +Soha +Sora +Stefani +Taylin +Terra +Tierra +Vanity +Xitlalic +Xitlalli +Yana +Yanitza +Yarelly +Yatziry +Yena +Yuritzy +Zadie +Zitlali +Zuleika +Zuleyka +Abbigale +Adalia +Addie +Adisyn +Afton +Aixa +Aiyanah +Akayla +Akshara +Akshita +Aleenah +Aleeza +Aleya +Aleyda +Alise +Aliyana +Alizon +Alya +Alycia +Analeigh +Anamarie +Andi +Andria +Angelin +Angelly +Annalyn +Arelly +Ariday +Arisbeth +Arrianna +Asiya +Austin +Austyn +Avary +Avneet +Ayline +Becky +Bela +Betzabeth +Bhavya +Brea +Breeana +Breena +Breyanna +Brighton +Briley +Brizeida +Brooklynne +Brylee +Calli +Camelia +Carmel +Carmella +Cassia +Catrina +Chana +Charmaine +Chevelle +Chloee +Chrystal +Citlally +Constanza +Cristine +Cydney +Daelynn +Daliah +Darian +Daviana +Deana +Deandra +Dejah +Destini +Devan +Devani +Eleanore +Eleny +Ellison +Elysia +Emaan +Emiliana +Emmah +Emmely +Emmerson +Emmily +Emonie +Eris +Eternity +Evanie +Evyn +Glenda +Gracy +Guinevere +Harlie +Havana +Haya +Hayli +Ida +Ileanna +Ileene +Indira +Isra +Italy +Jaclynn +Jaeleen +Jamia +Jaslin +Jasline +Jaylinn +Jazzmine +Jeanna +Jenevieve +Jesselle +Jesslyn +Jiana +Joan +Jodi +Jovie +Julietta +Juno +Kacy +Kady +Kaedyn +Kaidence +Kaidyn +Kailea +Kailie +Kalaya +Kalila +Kally +Kalyn +Karoline +Karyna +Kaytlyn +Keala +Kealani +Keegan +Keilyn +Kelsi +Kensington +Keylee +Kiran +Kiyana +Kiyomi +Klara +Kloie +Korina +Krisha +Leandra +Leianna +Lexus +Leylanie +Lezly +Lillyan +Lillyann +Liza +Loretta +Lucianna +Lula +Lyriq +Madden +Mahi +Maili +Malika +Maranda +Maraya +Marcia +Mariaelena +Marijane +Maura +Mayeli +Merary +Midori +Mirabelle +Mirna +Miroslava +Miryam +Miyah +Mykaela +Naidelyn +Naylea +Nayomi +Nazareth +Niamh +Nickole +Ninel +Nisha +Nishka +Odessa +Opal +Paiton +Persia +Queenie +Rania +Rena +Risa +Roberta +Rowen +Ryanne +Salina +Salome +Samirah +Samya +Saydee +Sephora +September +Seren +Seriah +Shana +Shaylah +Sheccid +Sia +Stormy +Sumaya +Tala +Tanner +Taytum +Tera +Teresita +Tyanna +Vallery +Varsha +Vivica +Vivien +Wynter +Yakelin +Yanet +Ytzel +Yudith +Yumi +Zahira +Zarah +Zena +Zuleyma +Aarushi +Adalee +Adalina +Addisen +Adelaida +Aerin +Aiko +Ailed +Ailey +Aime +Akasha +Akeelah +Alinna +Alyce +Amada +Amairani +Ameya +Anagha +Anakaren +Analyssa +Anarosa +Anay +Aneesa +Anh +Anica +Annalie +Anneke +Annel +Annet +Anyelin +Aoife +Apple +Arella +Arianah +Arushi +Aryn +Ashlan +Asma +Audryna +Aura +Autum +Avamarie +Avarie +Aylen +Aysha +Azalia +Bethanie +Brianah +Brianda +Briar +Briceida +Brihanna +Brinley +Brynne +Cady +Carleigh +Carter +Catarina +Charvi +Chole +Ciena +Cleo +Cristy +Cyan +Daijah +Dakoda +Dannika +Darianna +Darlin +Dayra +Deasia +Destanie +Deyanira +Dezirae +Disha +Dynasty +Egypt +Ela +Elizah +Elli +Emmi +Erandi +Eriana +Estrellita +Florence +Galia +Genevive +Glory +Gracey +Gracyn +Hafsa +Halley +Henna +Hiba +Idalia +Ilona +Imari +Ismerai +Itzia +Jacy +Jadine +Jadynn +Jaeden +Jaelah +Jaelle +Jaileen +Jaina +Jameson +Janiece +Jaydah +Jaydyn +Jaylenne +Jazell +Jeanne +Jelena +Jenell +Jennalyn +Jennica +Jesus +Jewels +Jezabel +Jolena +Jourdyn +Juliza +Kaci +Kahlia +Kalee +Kaleena +Kalei +Kalin +Kaliya +Kalynn +Kamiya +Kamiyah +Kanon +Karah +Karin +Karizma +Karyn +Katty +Kaytlin +Keili +Kelli +Kellie +Kemberly +Kenadie +Keya +Keyara +Keyli +Khadija +Khalia +Khianna +Kilee +Kimber +Kimberlee +Kimberlyn +Kimiko +Kinley +Kiona +Kloey +Koral +Kristyn +Kylin +Kyrsten +Lakshmi +Lanae +Laniah +Laryssa +Layleen +Leeah +Leiloni +Lian +Liani +Lilianne +Lillia +Lilliann +Linden +Lisset +Lotus +Lovely +Luci +Lunden +Macayla +Madaline +Madelynne +Madysen +Madysin +Maegan +Maika +Mailee +Maily +Makala +Makaylee +Malana +Malissa +Maliya +Manon +Maram +Margaux +Mariadelcarmen +Maribelle +Marilu +Marla +Marleigh +Maureen +Maycee +Maylyn +Mazie +Melanee +Melenie +Merlyn +Mikala +Milee +Myleen +Myrna +Nahla +Naiya +Nare +Narely +Natania +Nautica +Nayana +Nayelly +Nayleen +Nelli +Nely +Nicolle +Nydia +Ocean +Oceana +Olyvia +Prisilla +Priyanka +Puneet +Racheal +Randi +Raylynn +Reena +Rheanna +Riyana +Romi +Rosaura +Rosy +Rozlynn +Rubie +Ryland +Samhita +Sariya +Sascha +Satya +Seneca +Shai +Shanelle +Shani +Shanice +Shantel +Shanti +Shaylin +Shelley +Sherilyn +Sherly +Shirel +Sianna +Simar +Simona +Siomara +Sirena +Skylee +Socorro +Sofiya +Solei +Sonali +Sravya +Sterling +Sujey +Susannah +Sydni +Taelyn +Tatiyana +Teya +Theodora +Tiarra +Tristan +Tristyn +Valentine +Xitllali +Yahira +Yakira +Yaneth +Yaslin +Yazlin +Yazmeen +Yelitza +Yoana +Ysabelle +Yuriana +Yuritza +Yusra +Zarina +Ziya +Zofia +Zulma +Aahana +Aalayah +Aaliah +Aalyiah +Aaralyn +Aastha +Adaly +Adara +Adayah +Adelia +Adi +Aeva +Agatha +Agnes +Agustina +Aidee +Aishwarya +Aislin +Aisling +Aiva +Aja +Alaa +Alanis +Aleina +Alesandra +Alexsia +Alexya +Alisia +Allysen +Althea +Alva +Alyah +Alysha +Amberlyn +Ambria +Amreen +Amrit +Anaia +Analilia +Analyse +Ananda +Anela +Angy +Anicia +Aniela +Annalynn +Annia +Anshika +Anthony +Anvi +Anvita +Arcelia +Ariannah +Aries +Arin +Aris +Ariyanna +Arizbeth +Arlen +Aryam +Aryannah +Ashlin +Atziri +Aubriella +Aubryana +Aulani +Avalyn +Aveline +Ayari +Ayde +Aylene +Azusena +Baleria +Bayleigh +Belicia +Bellarose +Blaire +Bobbie +Brailyn +Braylin +Breeanna +Breelyn +Brigette +Britani +Britanny +Brithany +Candelaria +Caren +Cecile +Charleigh +Charlise +Chastity +Cherry +Chloey +Clarisse +Claritza +Corey +Corinna +Corrine +Cristiana +Daija +Dalylah +Damarys +Danay +Danelly +Daniah +Daniyah +Daphnie +Dasani +Dayla +Dayrin +Debra +Delayla +Delina +Destinie +Devany +Dhara +Diara +Dillon +Divinity +Dyani +Edeline +Edlyn +Elen +Elicia +Elijah +Elinor +Elis +Elizabet +Ellena +Emarie +Emersyn +Emilyn +Erandy +Erendira +Erianna +Esly +Esthela +Evany +Eveline +Fay +Finnley +Freyja +Gaby +Gizell +Gladis +Glendy +Grayce +Gretel +Gricelda +Haasini +Haiden +Haidyn +Hanan +Hania +Harini +Harnoor +Hattie +Hayle +Hazelle +Heydi +Idania +Indiana +Indigo +Iona +Irena +Isamar +Ishani +Itxel +Iveth +Iyanah +Jacee +Jacelyn +Jackelyne +Jacklynn +Jacky +Jadah +Jaidynn +Jailene +Jakeline +Jalena +Jalene +Jalia +Jalisa +Jamiyah +Janis +Jannelle +Jaslynne +Jasmen +Jaylani +Jayne +Jazline +Jazzelle +Jeidy +Jenavee +Jenaya +Jenise +Jhoana +Jizel +Jlynn +Joely +Josefine +Josilyn +Josselin +Joycelyn +Jozelyn +Julieann +Julliana +Kaelani +Kaelee +Kaiah +Kaileigh +Kailin +Kaithlyn +Kalissa +Kamara +Kamaria +Kami +Kana +Kandice +Kareli +Karine +Kashvi +Kasia +Katerine +Katherinne +Katiana +Kaydee +Kaydin +Kaylanie +Keara +Keiara +Keilany +Keilee +Keri +Kerry +Keyarah +Keyri +Khloee +Kieran +Kimani +Kora +Krystina +Kyanna +Kyleah +Kymani +Kyndra +Lael +Laiba +Lanaya +Landyn +Lane +Larisa +Lavender +Layah +Laylonie +Leeanna +Leighla +Lexine +Leyda +Lilee +Lilybeth +Lizabeth +Lizzette +Lois +Lora +Lynnette +Mackayla +Madalyne +Maddy +Madelaine +Mahathi +Mahima +Mailey +Maisy +Maja +Makiah +Makyla +Maleyah +Manuela +Marelie +Marelin +Mariadejesus +Maribell +Mariely +Marily +Maritsa +Marjan +Marline +Marry +Maryan +Marylou +Marysol +Mason +Mathilda +Maycie +Mayleen +Maylynn +Meaghan +Mei +Melaney +Meleah +Meliah +Merlin +Merlina +Metztli +Mica +Micayla +Mikenzie +Mileena +Miliani +Mirabel +Mirabella +Mishel +Monae +Muriel +Myli +Myriah +Nadeen +Naira +Nairi +Naleah +Nalleli +Nanami +Nanci +Naomie +Natalyn +Neena +Neomi +Nereida +Nessa +Neva +Neve +Nikole +Nirvana +Noura +Nyssa +Olivea +Persephone +Portia +Pragya +Preslee +Presleigh +Priseis +Prisila +Quetzaly +Rachell +Raeanna +Rahel +Rayah +Renae +Rene +Rhiley +Rhylee +Richa +Rikki +Romy +Rosamaria +Rosio +Ruthie +Rylin +Rylyn +Sadee +Saffron +Saida +Saidee +Sakina +Salem +Sam +Samaira +Sanaya +Sareen +Sari +Sarita +Saryah +Sejal +Senna +Sera +Serah +Sevana +Seven +Shakira +Shaniyah +Shawna +Shaya +Sheena +Sheily +Sheridan +Siera +Skylynn +Skyy +Sona +Steffany +Suhana +Sunnie +Suriya +Susy +Suzie +Svetlana +Synthia +Tabatha +Taina +Tali +Tanaya +Tatyanna +Teah +Tierney +Tiffanie +Tova +Triana +Trinidad +Trish +Tylee +Uriah +Vallerie +Vannesa +Vannessa +Vianka +Violetta +Yaindhi +Yamilett +Yamilette +Yamilex +Yanelly +Yennifer +Ysabel +Yuki +Yumalay +Zabrina +Zaya +Zayla +Zaylee +Zaynab +Zeina +Zoee +Zoha +Zury +Aaliya +Adali +Adalie +Adelene +Adelle +Adora +Ailanie +Ailany +Aileene +Aili +Ailish +Ailynn +Aimar +Aine +Aisley +Aislyn +Aiza +Akshaya +Alahna +Alaiyah +Alaura +Alaysha +Alegra +Aleia +Aletheia +Alexiah +Alexsis +Alexssa +Alexza +Alizay +Allana +Allysa +Alonna +Alyn +Alynah +Alysia +Alyssamarie +Amaiah +Amal +Amaree +Amayrani +Ambrielle +Amely +Amethyst +Amiee +Amor +Amore +Anabela +Anacamila +Anahis +Analaura +Analiah +Analis +Anapaola +Anareli +Anasofia +Andreah +Andrina +Aneli +Angelita +Angelyna +Angelynn +Anijah +Annaleigh +Annaly +Annastasia +Anneth +Anny +Anyla +Ara +Areanna +Argelia +Ariane +Ariatna +Arihanna +Arina +Arisa +Ashanty +Ashli +Ashna +Asucena +Atianna +Audreena +Audri +Audrinna +Avalina +Avari +Avi +Aviva +Ayani +Ayda +Ayiana +Ayushi +Bea +Bentley +Berlynn +Blessing +Bradie +Brady +Braelynn +Breeze +Briann +Brina +Brizia +Brooklyne +Brynlee +Brynley +Brynna +Calia +Cami +Camren +Carisma +Carlin +Carmelita +Carmina +Carolyne +Caterina +Catie +Cayenne +Ceara +Celene +Cera +Cesia +Chantelle +Charlette +Chassidy +Chisom +Christianna +Ciarra +Cicely +Claribel +Claudette +Cloey +Clowie +Collette +Contessa +Cooper +Corynn +Cozette +Crista +Cyanne +Dailyn +Dalina +Daniel +Dannah +Dannia +Danyela +Danyelle +Darline +Dayannara +Deepika +Deisi +Dejanae +Delaina +Delani +Dena +Destyni +Devine +Devora +Dillan +Donya +Dorian +Drea +Dulse +Dyanne +Echo +Eda +Eiliyah +Ekaterina +Eknoor +Eleana +Eleena +Elexa +Elexis +Elida +Elisabet +Eliyah +Ellah +Ellaina +Elyanna +Elysa +Emmajean +Emmalie +Emmalynn +Emmanuelle +Emylee +Ena +Eniyah +Erykah +Erynn +Esabella +Eshal +Esli +Evelynne +Ezabella +Fiorella +Francella +Francheska +Francia +Frankee +Gabryella +Gardenia +Gauri +Genavie +Genecis +Genelle +Genisis +Georgianna +Gimena +Gizel +Gizzelle +Gohar +Graci +Guillermina +Gwendalyn +Gwenevere +Gyzelle +Hadasa +Haidee +Haileigh +Hailyn +Hanah +Hansika +Harlan +Heba +Heiley +Hennessey +Hiliana +Hudson +Ibeth +Ily +Inessa +Ingris +Iniya +Isel +Isys +Isyss +Iyonna +Jaci +Jacie +Jadey +Jaelynne +Jaimy +Jamaya +Jami +Jamiah +Jamilett +Jamiya +Jammie +Jamya +Janai +Jannell +Janya +Jaritza +Jasia +Jayah +Jayanna +Jayce +Jaydan +Jaydeen +Jaylan +Jaylenn +Jazzmyn +Jeannette +Jenalee +Jenavie +Jeraldine +Jeri +Jesica +Jessilyn +Jeylin +Jezelle +Jill +Jisel +Jissel +Jisselle +Josalyn +Joshua +Josslynn +Journee +Judit +Julian +Julieth +Kadie +Kaeley +Kaelynne +Kailan +Kailana +Kaileen +Kala +Kalanie +Kamori +Kaniya +Karalyn +Karenna +Katerin +Katey +Katlynn +Kattie +Kaydance +Kaydince +Kaylena +Kayliana +Kayloni +Kayra +Keelie +Keelin +Keiko +Keiley +Keisha +Kelani +Kellyn +Kenadee +Kennia +Kensley +Kenzy +Keyana +Keyanna +Keyly +Khali +Khaliyah +Khloie +Khyla +Kiah +Kimari +Kimberlie +Kimberlin +Kimia +Kinberly +Kitty +Kitzia +Kloee +Komal +Kortney +Kristi +Krysta +Kyler +Kyli +Laina +Lakayla +Lamar +Lamaya +Lamees +Lan +Lanai +Lanessa +Lanie +Lariah +Larkin +Lashay +Launa +Lavinia +Laylene +Laysha +Leidy +Leigh +Leilaney +Lennon +Leonor +Lesslie +Lessly +Leyah +Leylah +Lezli +Liane +Lianne +Lielle +Liesl +Lilie +Lilyrose +Liora +Liseth +Lithzy +Lizandra +Londynn +Loraine +Loralei +Loryn +Lucca +Luiza +Lupe +Luzelena +Luzmaria +Lynna +Lyrik +Maayan +Mackenzee +Macyn +Madalena +Madalynne +Maddyson +Madelene +Maelyn +Mahalia +Mahlia +Mahogany +Maiah +Mairyn +Makalah +Malani +Malanie +Malayna +Maleya +Malinda +Mana +Manaia +Marayah +Mariaisabel +Mariann +Mariko +Marilin +Mariya +Marleni +Marlina +Marlow +Marlowe +Marlyne +Maryana +Maryelizabeth +Matilde +Meara +Meily +Melaina +Melena +Melinna +Mellanie +Melodee +Melyna +Merissa +Meryem +Meztli +Mialani +Michayla +Miguel +Mikeila +Mikhaela +Milagro +Mio +Mitzy +Miu +Miyu +Monroe +Monserath +Montana +Muskan +Nada +Naeemah +Naimah +Naisha +Nalia +Nami +Nani +Nathania +Naveen +Navreet +Nayelie +Naylani +Naylene +Neftali +Nelida +Neveen +Neviah +Neyda +Niah +Nikitha +Nitya +Niveah +Nivia +Nneka +Noah +Noemie +Nohemy +Nyema +Nyemah +Nyree +October +Olympia +Oona +Ophelia +Orion +Pandora +Paradise +Parneet +Patrice +Patrisha +Pixie +Polina +Pranavi +Preet +Prudence +Radhika +Raeanne +Rakel +Raleigh +Ramiyah +Raniya +Rayana +Reanne +Rebekka +Rehanna +Reign +Reyanna +Reylene +Rhian +Rianne +Riddhi +Risha +Rishika +Roma +Roni +Ronni +Rori +Rosalba +Roselin +Rossy +Roxane +Ruthann +Ryder +Rylynn +Sadaf +Sady +Sahily +Sama +Samanthamarie +Sanya +Saraya +Sarena +Sayde +Seleste +Senia +Shane +Sharleen +Shavon +Shaylene +Shelsea +Shilah +Shilo +Shreeya +Shylee +Sian +Simra +Skarlette +Sofi +Sparrow +Srinidhi +Sukhmani +Suki +Sulema +Suriah +Syria +Taja +Takara +Talea +Taleah +Taniah +Taniya +Tasnim +Tawny +Tayanna +Teegan +Teri +Tiani +Timia +Tressa +Trixie +TRUE +Tula +Tyla +Una +Valeri +Vanya +Venezia +Vibha +Vickie +Vidhi +Vilma +Viviane +Waverly +Wednesday +Wilhelmina +Xena +Xenia +Xiana +Yakeline +Yamila +Yamna +Yarelli +Yareni +Yarethzy +Yaritzi +Yashica +Yashika +Yatziri +Yen +Yeni +Yenna +Yeraldin +Yesmin +Yexalen +Yisel +Yissel +Yuridiana +Zaire +Zamaya +Zamora +Zanaya +Zaniya +Zenia +Zephaniah +Zina +Zinnia +Zyla +Zylah +Isabella +Sophia +Emily +Mia +Samantha +Natalie +Emma +Ashley +Abigail +Olivia +Ava +Elizabeth +Chloe +Valeria +Sofia +Madison +Alyssa +Brianna +Kimberly +Andrea +Camila +Alexa +Victoria +Alexis +Evelyn +Allison +Jocelyn +Jasmine +Hailey +Kayla +Melanie +Grace +Genesis +Kaylee +Vanessa +Valerie +Sarah +Angelina +Audrey +Giselle +Ella +Destiny +Lily +Michelle +Leah +Maya +Maria +Jessica +Zoe +Stephanie +Bella +Hannah +Arianna +Ruby +Savannah +Melissa +Natalia +Jennifer +Ariana +Daniela +Alexandra +Katherine +Gabriella +Taylor +Isabel +Layla +Leslie +Nevaeh +Daisy +Aaliyah +Liliana +Julia +Addison +Sophie +Amy +Gianna +Jacqueline +Charlotte +Sydney +Angela +Makayla +Diana +Riley +Aubrey +Delilah +Lauren +Claire +Avery +Brooklyn +Nicole +Kaitlyn +Naomi +Mariah +Kylie +Katelyn +Madeline +Eva +Briana +Khloe +Alondra +Gabriela +Faith +Lillian +Brooke +Adriana +Alina +Jazmin +Anna +Melody +Guadalupe +Fernanda +Megan +Amelia +Zoey +Jade +Rachel +Peyton +Leilani +Scarlett +Madelyn +Alejandra +Miranda +Sara +Esmeralda +Juliana +Stella +Valentina +Isabelle +Violet +Ana +Karen +Lucy +Sienna +Sadie +Mariana +Katie +Crystal +Serenity +Angelica +Aliyah +Fatima +Ximena +Rebecca +Paige +Trinity +Alicia +Elena +Mya +Bailey +Vivian +Amanda +Jazmine +Julianna +Luna +Jasmin +Keira +Marley +Emely +Karla +Ariel +Izabella +Itzel +Tiffany +Audrina +Priscilla +Miley +Karina +Alison +Julissa +Eliana +Mackenzie +Dulce +Leila +Kate +Marissa +Autumn +Jimena +Malia +Aileen +Sabrina +Laila +Lizbeth +Morgan +Iris +Amber +Alexia +Danielle +Molly +Viviana +Haley +Sierra +Hayden +Paola +Amaya +Jenna +Kelly +Lilly +Nataly +Angie +Catherine +Jayleen +Bianca +Joanna +London +Nayeli +Alana +Allyson +Ellie +Mikayla +Penelope +Jordyn +April +Chelsea +Payton +Lyla +Hazel +Rylee +Estrella +Jordan +Brenda +Cassandra +Cynthia +Daniella +Denise +Caroline +Danna +Eden +Lucia +Mary +Breanna +Aurora +Jaylene +Juliet +Melany +Monica +Janelle +Sasha +Yaretzi +Alice +Kennedy +Lila +Cecilia +Veronica +Lola +Annabelle +Elise +Gabrielle +Sarai +Genevieve +Alexandria +Anahi +Carmen +Joselyn +Summer +Erika +Nadia +Analia +Jayla +Camille +Melina +Kassandra +Marisol +Nathalie +Celeste +Nancy +Ashlyn +Carolina +Julie +Kendall +Angel +Laura +Reese +Christina +Heidi +Josephine +Brooklynn +Jayden +Kylee +Dayana +Desiree +Perla +Jada +Jillian +Kamila +Wendy +Yesenia +Erin +Jamie +Athena +Madeleine +Lesly +Gracie +Reagan +Irene +Kira +Yareli +Marilyn +Rosa +Serena +Nina +Fiona +Kiara +Lydia +Haylee +Ivy +Shelby +Lia +Sherlyn +Alessandra +Selena +Kailey +America +Natasha +Isla +Adrianna +Brisa +Gisselle +Helen +Cassidy +Tessa +Aniyah +Tatiana +Jazlyn +Kaylie +Marlene +Piper +Presley +Clarissa +Harper +Phoebe +Heaven +Noemi +Kendra +Aylin +Carly +Clara +Maritza +Paulina +Ruth +Mila +Cindy +Dahlia +Cheyenne +Johanna +Rose +Kiana +Allisson +Annie +Jaslene +Kelsey +Cadence +Caitlin +Maliyah +Abby +Gloria +Jaelyn +Danica +Lexi +Arely +Cali +Eleanor +Emilia +Lilah +Sandra +Maddison +Talia +Esther +Harmony +Juliette +Alisson +Cristina +Paloma +Annika +Belen +Abril +Dana +Delaney +Eliza +Kara +Kathryn +Margaret +Bethany +Isabela +Janessa +Anya +Daphne +Lana +Anika +Brielle +Camilla +Claudia +Evangeline +Hope +Savanna +Skylar +Yasmin +Aubree +Catalina +Makenna +Siena +Caitlyn +Marina +Monserrat +Brittany +Elisa +Holly +Jaqueline +Krystal +Eileen +Kaelyn +Mikaela +Teagan +Katelynn +Nora +Ashlynn +Jayda +Kaylin +Aleena +Amelie +Anabelle +Emery +Frida +Mckenzie +Miriam +Noelle +Alyson +Danika +Lilian +Maryjane +Mckenna +Patricia +Shayla +Teresa +Adeline +Lilliana +Scarlet +Carla +Makenzie +Sage +Sonia +Caylee +Elle +Luz +Reyna +Bryanna +Dayanara +Erica +Kyla +Michaela +Anastasia +Lena +Linda +Yuliana +Iliana +Janet +Liana +Rubi +Sarahi +Vivienne +Alma +Kaia +Maggie +Rihanna +Alissa +Azul +Belinda +Francesca +Georgia +Gia +Janice +Jenny +Dalilah +Darlene +Lilyana +Areli +Christine +Cora +Nathaly +Tania +Kyra +Allie +Gemma +Madilyn +Monique +Roxanne +Rylie +Hanna +Maribel +Alivia +Ayla +Lizeth +Callie +Camryn +Dakota +Rosemary +Angeline +Barbara +Jane +Raquel +Valery +Willow +Araceli +Judith +Kiera +Kristina +Aimee +Aiyana +Anaya +Kali +Miah +Milagros +Arlene +Bridget +Kaydence +Yoselin +Cameron +Citlali +Heidy +Kayleen +Yadira +Arabella +Cristal +Isis +Marely +Angelique +Dylan +Helena +Jessie +Lindsey +Madelynn +Marie +Mayra +Tatum +Ayleen +Joy +Quinn +Yaritza +Alani +Aryanna +Xiomara +Courtney +Dalia +Esperanza +Hayley +Julieta +Lilianna +Olive +Damaris +Paula +Ivanna +Julianne +Kathleen +Kiley +Paris +Stacy +Berenice +Kaya +Lexie +Lindsay +Rebekah +Samara +Alaina +Arleth +Kaitlin +Kristen +Paisley +Tiana +Yvette +Aracely +Celine +Elaine +Jadyn +June +Sharon +Aleah +Blanca +Gisele +Ingrid +Jacquelyn +Kayleigh +Larissa +Leyla +Maia +Makena +Xitlali +Zara +Charlie +Emilee +Jackeline +Keyla +Lizette +Martha +Susana +Aniya +Britney +Kayden +Kenya +Leanna +Lucero +Rebeca +Alanna +Cambria +Ciara +Jazlene +Jolie +Nyla +Yazmin +Annabella +Ashly +Jaylynn +Norah +Stephany +Tanya +Xochitl +Addyson +Adilene +Brynn +Charlize +Galilea +Giana +Giuliana +Graciela +Josie +Kassidy +Lisa +Luciana +Madisyn +Maite +Margarita +Nathalia +Ryleigh +Simone +Arielle +Gizelle +Kailyn +Londyn +Lyric +Marisa +Natalya +Pamela +Amira +Evelin +Haylie +Kailee +Lacey +Mallory +Mireya +Priscila +Rocio +Yarely +Alia +Aria +Casey +Deanna +Emerson +Emilie +Heather +Jaelynn +Jaylin +Kamryn +Lauryn +Mina +Sariah +Yamilet +Alena +Ashlee +Chanel +Destinee +Edith +Estefania +Jocelynn +Kamilah +Lorelei +Nia +Violeta +Zaira +Aliana +Annalise +Aubrie +Cara +Deborah +Donna +Geraldine +Jazlynn +Karissa +Keila +Leia +Madalyn +Milan +Aliya +Carissa +Diya +Elliana +Hana +Kaiya +Macy +Marlee +Pearl +Anabel +Aryana +Dalila +Darla +Gwendolyn +Kathy +Katrina +Lesley +Lilia +Roselyn +Skye +Ada +Dayanna +Denisse +Fabiola +Giovanna +Imani +Kaliyah +Kimora +Leilah +Logan +Mariam +Romina +Selah +Tara +Amiyah +Anabella +Elyse +Finley +Lea +Maliah +Salma +Shiloh +Skyla +Anne +Annette +Brissa +Candy +Jaylah +Kaylani +Maleah +Mariela +Marlen +Mercedes +Nelly +Parker +Roxana +Ryan +Sandy +Silvia +Alize +Annabel +Carina +Luisa +Renee +Adelyn +Elianna +Eve +Jazleen +Jolene +Kaylyn +Lupita +Mira +Miracle +Natalee +Rowan +Roxanna +Skyler +Abbigail +Alayna +Alisha +Ellen +Hailee +Jaden +Jasleen +Kenzie +Lina +Lorena +Madilynn +Savanah +Selene +Yamileth +Adrienne +Ailyn +Colette +Elsa +Joyce +Kalia +Malaya +Myla +Natali +Phoenix +Regina +Sidney +Aisha +Amara +Asia +Isabell +Janiyah +Johana +Leticia +Nadine +Rosalie +Shaila +Shirley +Soleil +Sylvia +Virginia +Yuridia +Adamaris +Aliah +Brenna +Dania +Evangelina +Evie +Harley +Jaiden +Jayde +Jazmyn +Kadence +Kaitlynn +Lucille +Lylah +Rachael +Renata +Saniyah +Sloane +Tabitha +Thalia +Xitlaly +Addisyn +Baylee +Citlaly +Dominique +Elisabeth +Ireland +Josselyn +Kalani +Lailah +Macie +Matilda +Mayte +Nova +Riya +Selina +Shreya +Vivianna +Yahaira +Zariah +Zoie +Adalyn +Amalia +Elyssa +Estefany +Flor +Grecia +Ivette +Jackelyn +Litzy +Madyson +Mareli +Mariyah +Micaela +Millie +Rhea +Adelaide +Anais +Elaina +Jaslyn +Joselin +Kaylen +Lilyanna +Madalynn +Magdalena +Mckayla +Myah +Naima +Princess +Rosario +Stacey +Yolanda +Ainsley +Amani +Ananya +Ayana +Diamond +Eloise +Elsie +Ivana +Justice +Kenia +Leilany +Mariajose +Marianna +Meghan +Melinda +Precious +Shannon +Shyla +Soraya +Whitney +Alisa +Aliza +Carolyn +Harlow +Justine +Kaylynn +Keilani +Liberty +Lillie +Noa +Rosie +Susan +Vianney +Abbie +Beatriz +Celia +Griselda +Hillary +Jazzlyn +Kailani +Kyleigh +Laylah +Leona +Lianna +Maryam +Montserrat +Reina +Adela +Betsy +Davina +Elissa +Esme +Joana +Kaila +Kirsten +Nylah +Sheyla +Suri +Tina +Vianey +Amaris +Astrid +Chiara +Clare +Estefani +Joslyn +Journey +Karis +Katia +Keily +Lluvia +Raylene +Saanvi +Analy +Anissa +Anjali +Ayanna +Cielo +Frances +Giada +Greidys +Jaliyah +Janiya +Kaylah +Lourdes +Maxine +Milana +Nicolette +Saniya +Unique +Adelina +Alyna +Devyn +Elina +Jaylen +Jazelle +Joelle +Kaily +Maricela +Milena +Sky +Stevie +Tamara +Trisha +Yessenia +Ahtziri +Aida +Analise +Brandy +Charlene +Dafne +Emmalee +Emmy +Isela +Jaylee +Jiselle +Karely +Katarina +Kayley +Miya +Sarina +Simran +Abbey +Anali +Anita +Cherish +Destiney +Farrah +Felicity +Izabel +Janeth +Joseline +Lara +Mika +Neveah +Roxy +Saray +Theresa +Vanesa +Winter +Yaneli +Yaretzy +Ariella +Avani +Corinne +Eunice +Evolet +Jaida +Kasandra +Kianna +Krista +Leighton +Lynette +Marlie +Meredith +Mylee +Myra +Neha +Noor +Raegan +Rhianna +Shriya +Taryn +Zahra +Aanya +Amari +Arya +Audriana +Berlin +Bridgette +Celina +Cheyanne +Coral +Delia +Demi +Ember +Gwen +Haven +Jeanette +Kalea +Lidia +Moriah +Nikki +Noelia +Ryann +Sahana +Abbygail +Aiyanna +Bryana +Capri +Chastelyn +Dianna +Ericka +Evalyn +Evelynn +Gina +Ginger +Izel +Jacquelin +Kallie +Kasey +Klarissa +Lillyana +Lorelai +Meadow +Nalani +Rita +Scarlette +Sofie +Tanvi +Tyler +Viridiana +Yasmine +Akira +Amerie +Amirah +Ani +Ariadna +Averie +Beatrice +Bonnie +Cailyn +Candice +Carlie +Charlee +Citlalli +Desteny +Genessis +Hailie +Jacklyn +Janae +Karime +Karly +Kayli +Kinsley +Leanne +Raina +Samira +Tamia +Tatianna +Abygail +Aya +Bailee +Brittney +Cienna +Dasha +Georgina +Halle +Harleen +Isha +Jacey +Jaylyn +Jizelle +Jocelyne +Juana +Kirra +Kristin +Marcela +Maylin +Nola +Odalys +Stefany +Tess +Tianna +Ysabella +Yuna +Yvonne +Zuri +Alanah +Alannah +Anneliese +Arlette +Calista +Candace +Gladys +Gwyneth +Jaquelin +Jewel +Kai +Katalina +Kristine +Lisbeth +Maeve +Mayrin +Rayne +Regan +River +Rosalinda +Saira +Ailani +Ailin +Alessia +Amiah +Avah +Dani +Deisy +Diane +Ebony +Elia +Gillian +Gissel +Jaclyn +Jaidyn +Kairi +Kaley +Kylah +Laney +Lisette +Macey +Makaylah +Malina +Marlyn +Mayah +Melani +Melia +Noelani +Rayna +Shayna +Yajaira +Aditi +Alysson +Amya +Anai +Anaiah +Angeles +Ariah +Aurelia +Aviana +Britany +Carol +Cassie +Delila +Desirae +Emerald +Frankie +Hadley +Janie +Janine +Juniper +Karol +Karolina +Karyme +Keren +Leena +Lyra +Norma +Raya +Sabine +Saige +Tatyana +Tegan +Tori +Vienna +Yara +Alaya +Ally +Aubrianna +Azucena +Casandra +Chantal +Danae +Eleni +Estela +Jackie +Janette +Kennedi +Leela +Lucinda +Maile +Melisa +Micah +Nellie +Nyah +Raven +Sally +Sanjana +Shea +Sinai +Starr +Sunny +Yoselyn +Yulianna +Amina +Aniah +Antonia +Audrie +Betty +Clementine +Deja +Emme +Gracelyn +Greta +Holland +Jaya +Joanne +Jocelin +Jordin +Karlee +Karma +Kaylene +Lillianna +Makaila +Mara +Mariella +Meagan +Patience +Petra +Ria +Sahara +Sydnee +Tia +Tracy +Vera +Abrielle +Adalynn +Aline +Amayah +Amberly +Anessa +Ann +Annalee +Arissa +Aspen +Avianna +Blair +Bree +Brylee +Corina +Devin +Greydis +Gwenyth +Haily +Hennessy +Italia +Izabelle +Janell +Jenifer +Kacey +Katya +Kenley +Kourtney +Lorraine +Mandy +Mindy +Paityn +Pricilla +Raelynn +Rayleen +Robin +Sahasra +Sana +Shania +Shyanne +Toni +Violette +Angelie +Arlyn +Breana +Briza +Caydence +Cayla +Chanelle +Coco +Constance +Dallas +Emelia +Emi +Emmalyn +Felicia +Ines +Jaedyn +Jana +Jessenia +Kaelynn +Kalina +Katy +Nallely +Olga +Rianna +Rory +Rylan +Sariyah +Sheila +Vida +Yazmine +Yulisa +Yulissa +Zulema +Alianna +Anayeli +Ariadne +Audree +Beatrix +Bernice +Braelyn +Briseida +Briseyda +Cecelia +Chelsey +Cierra +Dariana +Desire +Dior +Geneva +Gisel +Gisell +Honesty +Jaquelyn +Jaslynn +Jaycee +Jemma +Jenesis +Kailah +Kamora +Leann +Lexy +Liv +Livia +Lucie +Malak +Mari +Marisela +Miabella +Misha +Naomy +Nika +Nya +Remy +Rosalyn +Sakura +Sanai +Sonya +Stefanie +Tallulah +Thea +Adyson +Alayah +Anabell +Analeigh +Anayah +Anisha +Antoinette +Antonella +Aundrea +Avalon +Azalea +Belle +Blake +Christiana +Cianna +Cinthia +Elliot +Gema +India +Irma +Juanita +Julisa +Kailynn +Karlie +Katerina +Katharine +Kierra +Laniyah +Laurel +Lillyanna +Lovely +Magaly +Maiya +Marian +Maricruz +Payten +Ramona +Samanta +Sanaa +Saylor +Sol +Tahlia +Tiara +Vicky +Willa +Yadhira +Zainab +Zariyah +Zoya +Adele +Adelynn +Aleida +Alexus +Alyah +Amiya +Anisa +Annabell +Annalia +Annamarie +Annelise +Asha +Bria +Briseis +Caleigh +Cloe +Connie +Cosette +Daira +Dara +Dayami +Delylah +Elisha +Ema +Emelie +Essence +Giavanna +Hilary +Josefina +Kaela +Kaili +Kaleigh +Karli +Kenna +Kloe +Kristy +Magnolia +Malaysia +Malena +Maryann +Melony +Misty +Monserrath +Naila +Nariah +Nariyah +Nayely +Nichole +Pricila +Rachelle +Remi +Rosemarie +Samiyah +Serafina +Taliyah +Yarel +Yessica +Yuri +Zaniyah +Aaliah +Alexsandra +Ali +Alliyah +Alynna +Amariah +Amia +Annalisa +Annaly +Ariela +Arriana +Audra +Caitlynn +Campbell +Carley +Carrie +Christy +Daria +Dorothy +Edna +Estella +Haleigh +Hallie +Halo +Hilda +Ileen +Itzayana +Jailyn +Jazzlynn +Jessa +Jianna +Joscelyn +Kacie +Kaleah +Katheryn +Kimberley +Lailani +Lesli +Leylani +Maira +Malayah +Marcella +Maren +Marlena +Marwa +Milani +Nadya +Nailah +Prisha +Promise +Samya +Savana +Serina +Shira +Star +Winnie +Yanira +Abigale +Adrina +Alexandrea +Alizah +Alyvia +Ammy +Anaiya +Andie +Ariyah +Audrianna +Betzy +Braelynn +Breanne +Caelyn +Carlee +Carys +Cathy +Charley +Charli +Devon +Dixie +Drew +Elvia +Emeli +Emerie +Evalynn +Evelina +Everly +Franchesca +Gurleen +Hadassah +Harlee +Honey +Hunter +Iman +Irie +Jackelin +Jaelene +Janelly +Jia +Jordynn +Kaelin +Kaira +Katlyn +Kaycee +Lori +Lynn +Makaela +Marin +Mercy +Mollie +Naya +Nico +Noemy +Odalis +Rain +Sabina +Samaya +Sharlene +Symphony +Taniyah +Taya +Veda +Venice +Vivien +Yael +Yaquelin +Yocelyn +Zaria +Alexi +Alexie +Alexys +Aleyda +Ameera +Amie +Anushka +Aranza +Arleen +Ashlie +Aubry +Ayesha +Azaria +Azariah +Beverly +Bianka +Brihanna +Calleigh +Clover +Cordelia +Darby +Dina +Elvira +Emelyn +Estelle +Fallon +Farah +Flora +Francine +Freya +Gissell +Giulia +Heavenly +Ila +Ilene +Imelda +Irelyn +Ivory +Jael +Jaela +Jalissa +Janely +Jazmyne +Judy +Kamari +Kamya +Karoline +Katherin +Kayle +Kelsie +Kendal +Kiersten +Kimberlyn +Kristal +Laci +Layne +Lilith +Linnea +Lizet +Maci +Madaline +Madelin +Maliya +Marbella +Mariafernanda +Marlowe +Martina +Maylene +Mckinley +Melannie +Mylah +Nailea +Nayelli +Rilee +Ryley +Sanaya +Shaelyn +Siri +Tammy +Tayla +Tea +Vivianne +Wren +Yamile +Zaina +Abagail +Adina +Aislinn +Alea +Alysia +Amaia +Amairany +Analisa +Angelyn +Anoushka +Arden +Ashleen +Ashleigh +Baylie +Beyonce +Bibiana +Carmela +Cate +Chelsy +Cinthya +Corrina +Divine +Dora +Elana +Elly +Elora +Eryn +Eternity +Gissele +Gladis +Gretchen +Hayleigh +Ileana +Isadora +Iyana +Jaeda +Jalyssa +Janel +Jenessa +Jennie +Jennyfer +Jessalyn +Jesslyn +Jiya +Julieanna +Kalie +Kavya +Leilanie +Leyna +Libby +Lilyann +Love +Mabel +Madisen +Magali +Mariaelena +Marielle +Mayleen +Meah +Mei +Meilani +Michell +Milla +Nyomi +Pilar +Rania +Reanna +Reece +Reilly +Rosalia +Scout +Selma +Serene +Soledad +Sunshine +Sydnie +Yanely +Yoana +Zayra +Abrianna +Alessa +Alex +Anaiyah +Analiyah +Anel +Anyssa +Ari +Ariyana +Ashtyn +Audry +Avigail +Ayelen +Becky +Berlyn +Brigitte +Cailey +Charity +Cleo +Darleen +Divina +Ellery +Emmeline +Gisela +Gisella +Gracelynn +Hafsa +Haydee +Ilana +Issabella +Ivonne +Jailynn +Jaime +Jamileth +Janiah +Jenelle +Jersey +Julyssa +Kalyn +Kamille +Kaycie +Keely +Kelis +Keyra +Kinsey +Kya +Leana +Leeann +Lillyann +Lilyan +Liyah +Lizzet +Maegan +Marylin +Nahomi +Naia +Nikita +Ofelia +Paulette +Penny +Poppy +Randi +Rio +Robyn +Rochelle +Sade +Samaria +Saya +Sayra +Shay +Shaylee +Siya +Talya +Xochilt +Yoseline +Adamari +Adelaida +Aiko +Alizon +Allegra +Amaiya +Ami +Amilia +Aminah +Anette +Annaliese +Annmarie +Arianny +Ariya +Armani +Atiana +Aubriana +Aubrielle +Averi +Avni +Avril +Ayva +Brea +Brianne +Briley +Brookelynn +Camden +Cecily +Chana +Chelsie +Christian +Christie +Colby +Danya +Dawn +Debora +Doris +Dulcemaria +Ela +Elexis +Emmi +Ester +Evan +Faye +Francisca +Gaia +Haya +Imogen +Inez +Isaura +Izzabella +Jahzara +Jasline +Jayme +Jaymie +Jeanine +Jenevieve +Joann +Joceline +Joslynn +Jovana +Jovanna +Jude +Kamea +Kaori +Karah +Karisma +Katelin +Keeley +Keylee +Kyndall +Lainey +Laya +Liya +Louisa +Luella +Luzmaria +Madelyne +Mae +Margot +Meera +Meghna +Michel +Moira +Mylie +Natally +Navya +Neela +Nubia +Pauline +Pia +Preslee +Preslie +Prisila +Priya +Quetzalli +Quincy +Rhiannon +Rhyan +Richelle +Rubie +Sabella +Safa +Sawyer +Sayuri +Sequoia +Seraphina +Shylah +Sonja +Stefani +Susanna +Sylvie +Tala +Teya +Treasure +Trista +Uma +Valarie +Venus +Vianca +Yasmeen +Zofia +Aalyah +Aashi +Adelle +Ahtziry +Aja +Alanie +Alora +Alyse +Alyssandra +Amairani +Anahy +Analeah +Analiah +Analicia +Anamaria +Anela +Angely +Annalie +Anusha +Aura +Betsabe +Bristol +Brookelyn +Cailin +Caylin +Cesia +Chevelle +Cloey +Consuelo +Coraline +Darlyn +Daylin +Dayra +Delany +Devynn +Dianne +Edie +Elin +Ellianna +Elsy +Emmalina +Esha +Ever +Fanny +Gianni +Hadasa +Idaly +Ilianna +Iveth +Ixchel +Jailene +Jarely +Jaymee +Jazel +Jenavieve +Joleen +Julieana +Kaliah +Kalissa +Kamilla +Karleigh +Keanna +Keiry +Khushi +Kimani +Kinley +Kiyomi +Kyara +Lacy +Lani +Leeanna +Leiana +Leylah +Lilit +Liz +Louise +Luca +Madelynne +Malea +Maliha +Mariel +Marleen +Maryah +Mattie +Maura +Meena +Melania +Melenie +Meleny +Mercedez +Mikaylah +Miliani +Milly +Miyah +Monet +Naiya +Neriah +Nitya +Nohemi +Ocean +Ophelia +Rena +Romy +Rosy +Samiah +Sanvi +Saphira +Saydee +Shae +Shaina +Shilah +Shivani +Shyann +Sia +Sicily +Sloan +Tamar +Taylee +Tierra +Tyra +Viola +Zahara +Zion +Zitlali +Aaralyn +Adaline +Ailene +Akshara +Alanis +Alba +Allysson +Alona +Alysa +Ameerah +Amyah +Anahit +Analee +Anastacia +Andi +Angelena +Annasophia +Arianne +Ashlin +Aubri +August +Austyn +Avalyn +Ayumi +Bernadette +Bertha +Billie +Blessing +Brissia +Brittanya +Calliope +Camdyn +Carli +Cayden +Chyna +Ciana +Ciera +Dayla +Eesha +Emmerson +Emmie +Emmily +Enya +Evalina +Evette +Fatimah +Fayth +Gaby +Getsemani +Ilse +Ilyana +Irelynn +Isa +Isobel +Jadelyn +Jalynn +Jamila +Jamya +Jaretzy +Jayleene +Jeannette +Jennah +Jessika +Joey +Joselyne +Justina +Kadyn +Kalei +Kalista +Kameryn +Katheryne +Kaydee +Keilah +Kellie +Kelsi +Kendyl +Khadija +Khalia +Klara +Laylani +Leigha +Lela +Lili +Lois +Lulu +Lyndsey +Mai +Maisy +Malinda +Maribelle +Marjorie +Marli +Mazzy +Melodie +Michele +Monika +Nala +Nayelly +Neida +Nikole +Nishka +Noel +Nour +Nuvia +Raelyn +Raine +Rina +Sailor +Savina +Sedona +Seleste +Shianne +Sianna +Stacie +Starla +Symone +Tanisha +Taraji +Tayler +Temperance +Terra +Vallerie +Yocelin +Zaara +Zadie +Zahira +Zaniah +Zarah +Aarya +Acacia +Adamary +Adaya +Aeris +Aide +Aiden +Alaysia +Aleeza +Alexah +Alizee +Allyssa +Alycia +Ambar +Amery +Analie +Angelika +Angella +Anh +Ania +Anja +Annaleah +Annalyse +Arabelle +Araya +Aries +Aryah +Aviva +Ayah +Ayden +Bentley +Brandi +Briannah +Briceida +Brook +Carmella +Carolynn +Caylie +Cerenity +Charis +Charleigh +Chrystal +Clarisa +Colbie +Danni +Darianna +Debbie +Deziree +Elli +Ellison +Elyana +Emelin +Emelina +Emersyn +Emiko +Emmaline +Emmely +Emory +Emry +Erandy +Evelynne +Evony +Florence +Gardenia +Genevie +Harmoni +Isamar +Jaimie +Jakelin +Jariah +Jasmyn +Jaydin +Jayna +Jayne +Jazlin +Jazline +Jazlyne +Jean +Jelena +Jezelle +Jubilee +Julieann +Julienne +Kaci +Kamara +Kambria +Kamyla +Kareena +Karena +Karsyn +Kaydance +Kloey +Kora +Krisha +Kristie +Lacie +Laisha +Lamya +Larkin +Leeah +Lexus +Liah +Lian +Lillyan +Lilyanne +Lyanna +Lynda +Madysen +Maisie +Maja +Maleny +Margaux +Mariadejesus +Marleny +Marlo +Mattea +Medha +Melanny +Melonie +Minerva +Mirella +Mirna +Nahomy +Navaeh +Neala +Nyssa +Odessa +Oriana +Osiris +Rachell +Rihana +Rosalba +Rosio +Roslyn +Samirah +Sammantha +Saniah +Sapphire +Serinity +Shaela +Shanti +Shelly +Sirena +Skylah +Sonali +Suriya +Taelyn +Taleah +Tehya +Tru +Vanity +Vannessa +Verenice +Victory +Viviane +Vy +Xitlalli +Yanet +Zia +Zola +Zuleyka +Aarna +Abilene +Addelyn +Adison +Adisyn +Aila +Airam +Aleenah +Alesandra +Alexxa +Alizae +Alli +Allizon +Althea +Alysha +Alyssia +Amarie +Amely +An +Anay +Andria +Angeli +Ansley +Anvi +Arianah +Athziry +Aven +Azaleah +Betzaida +Breonna +Brianda +Briella +Brithany +Bryce +Cailee +Caliana +Calla +Callista +Carleigh +Carrington +Celena +Chaya +Cherry +Chloee +Christa +Colleen +Daiana +Danitza +Dasia +Daysi +Delanie +Denice +Devan +Devany +Dezirae +Dyana +Egypt +Elicia +Ellis +Elva +Elysia +Emani +Emiliana +Emilly +Emmalynn +Eris +Fiorella +Genavieve +Gennesis +Gianella +Giannah +Gimena +Haiden +Harlie +Harmonie +Havana +Haylen +Hellen +Hermione +Hollie +Illiana +Inaya +Indira +Ivanka +Ivon +Iyla +Izabela +Jaimee +Janai +Janay +Jannelle +Jannet +Janya +Jaslin +Jaycie +Jaydah +Jaydee +Jayline +Jeimy +Jemima +Jena +Jessi +Jisselle +Josalyn +Josslyn +Kamaria +Kamiyah +Kandice +Karley +Katerin +Katty +Kealani +Keara +Kelli +Kelsy +Kenadee +Keziah +Khloey +Kimber +Kitana +Krysta +Kyli +Laasya +Laniya +Laysha +Leilanni +Leilene +Leya +Lilli +Linette +Lizbet +Lizett +Lizzette +Lya +Lynnette +Mahi +Mailyn +Marcia +Mariaguadalupe +Mariely +Marilu +Mason +Maylee +Megha +Memphis +Mikaila +Milah +Mily +Mimi +Mirabelle +Mirian +Misaki +Monzerrat +Myriam +Nandini +Nayla +Naylene +Nayomi +Pari +Persephone +Quetzali +Rebeka +Reem +Reya +Ripley +Rowen +Roxie +Sachi +Safiya +Sahar +Saleen +Sania +Sarita +Sera +Shaniya +Shantal +Shayne +Sherry +Sindy +Soha +Story +Suhana +Suraya +Svetlana +Talitha +Thania +Therese +Trina +Vannesa +Vanya +Yailin +Yeraldin +Yesica +Ytzel +Yuritzy +Zaniya +Zayda +Zayna +Zitlaly +Zuleyma +Aaniyah +Abigael +Adah +Adalia +Adelia +Adelin +Adrian +Agnes +Ailed +Aine +Aislin +Alaia +Aleksandra +Aleyna +Alisia +Alizay +Aly +Alyana +Alyiah +Alyza +Amalie +Amarah +Amrit +Ananda +Aneesa +Angelia +Angelic +Anvita +Anyah +Arie +Arieanna +Ariyanna +Arlet +Arlett +Arline +Arshia +Ashanti +Asiah +Atziry +Avamarie +Avleen +Ayari +Aylene +Aysia +Azusena +Bethanie +Breann +Brinley +Brisia +Brooklynne +Brylie +Brynlee +Cailynn +Caliah +Calissa +Calli +Cameryn +Caren +Carson +Carter +Catelyn +Channing +Chantelle +Chase +Ciena +Cooper +Dagny +Dahlila +Dailyn +Daizy +Damya +Darcy +Dasani +Dayleen +Delailah +Delainey +Desiray +Devora +Deysi +Dia +Dinah +Dolores +Doreen +Dream +Elayna +Eleana +Elinor +Ellena +Elliott +Emalee +Emili +Emy +Estephanie +Etta +Evelyne +Fathima +Faviola +Gracey +Graciella +Gracy +Guinevere +Haidyn +Hansika +Hasini +Henessy +Inara +Ishanvi +Iva +Jacelyn +Jacinda +Jadeyn +Jadore +Jaeden +Jaia +Jasmeen +Jasmyne +Jeanne +Jeniffer +Jesse +Jodi +Jolina +Jolynn +Journee +Journi +Jovie +Joycelyn +Kaelah +Kaiden +Kaileigh +Kaleia +Kalli +Kameron +Kandy +Karin +Karisa +Kassidi +Katelynne +Kattie +Kaylana +Kaylei +Kenadie +Keyli +Kloie +Kyrie +Laela +Laiba +Lakshmi +Lavinia +Leeana +Leianna +Leonor +Leonora +Leslye +Lessly +Liani +Lissette +Loren +Luana +Luiza +Lula +Lyrik +Mackenna +Mackenzi +Madai +Marelyn +Marianne +Marla +Marly +Marta +Maryanne +Marysol +Mathilda +Maureen +Maycee +Mazie +Meliza +Melodee +Merari +Mihika +Mili +Mykah +Nahla +Naimah +Natania +Naydelin +Neila +Neve +Niah +Nila +Nisha +Niya +Noah +Noe +Noella +Octavia +Oona +Peighton +Queenie +Radhika +Rayanna +Reva +Riana +Rikki +Roya +Rozlyn +Ryah +Saidy +Salina +Samarah +Samone +Sanya +Sarahy +Saydie +Scarleth +Sherlene +Sherlin +Sofi +Suhani +Suzanna +Suzette +Taniya +Tesla +Tristan +Trixie +Valencia +Vallery +Vania +Yalitza +Yamila +Yareni +Ysabel +Yusra +Zoee +Zoila +Zooey +Zulay +Zully +Aadya +Aahana +Aaleyah +Aarohi +Aarushi +Aashna +Abella +Adalee +Adalina +Adara +Addie +Addysen +Adella +Adria +Advika +Ailany +Ailey +Aime +Aislynn +Aitana +Aixa +Alany +Aleeya +Aleina +Aletheia +Alexsa +Aleyah +Alinah +Allana +Alya +Alyanna +Alynah +Alyssah +Amayrani +Amberlee +Amberlyn +Ambrielle +Amiee +Amor +Amrita +Anagha +Anakaren +Analiese +Analucia +Analyn +Anamarie +Anapaula +Andrina +Anely +Angelee +Angelene +Anjolie +Annali +Annemarie +Anyla +Aolani +Ariane +Arlen +Arushi +Aryam +Aryan +Ashlan +Asiya +Asma +Avelina +Aymar +Beautiful +Bellarose +Berkeley +Betsaida +Blythe +Brieana +Brighton +Britanny +Brooklin +Brynna +Calia +Carmelita +Catarina +Cayleigh +Charisse +Charmaine +Chasity +Chloie +Christal +Cori +Daelyn +Daliyah +Daniyah +Darya +Daylene +Dayna +Deana +Debra +Deena +Dejah +Delaila +Delayla +Denae +Dennise +Deseray +Destany +Destini +Devine +Dhalia +Dilynn +Divya +Dyanna +Elektra +Eliyah +Elizabet +Elodie +Emaly +Emilyn +Emmanuelle +Eowyn +Estephany +Evamarie +Evany +Eveny +Evoleth +Ezri +Florencia +Francheska +Genevy +Genisis +Grisel +Gweneth +Hali +Halie +Harini +Harshita +Hawa +Hayle +Hayven +Hennessey +Hiba +Hiliana +Holley +Honor +Hudson +Ily +Ina +Inika +Irina +Itza +Jaeleen +Jaide +Jaina +Jalayah +Jaleah +Jamison +Jamiyah +Janaya +Janey +Janis +Jannah +Jannat +Jasmeet +Jazell +Jazlynne +Jeanelle +Jennavieve +Jenni +Jesenia +Jezebel +Jhoana +Jhoanna +Jiana +Jill +Johannah +Jolee +Jordana +Josette +Juliett +Julietta +Kaelee +Kaely +Kaidence +Kaithlyn +Kalaya +Kalayah +Kalena +Kamani +Kamia +Kari +Karyssa +Kashvi +Katana +Kaytlin +Keilana +Keilly +Keilyn +Kensington +Keyara +Khadijah +Khloee +Kiah +Kiarah +Kim +Kimberlee +Klaire +Kristiana +Kyana +Kylin +Kymani +Laine +Landry +Lariah +Laurie +Layal +Leiah +Lezly +Lilybeth +Lindsy +Lindy +Londynn +Loretta +Lotus +Lucca +Lucina +Maddie +Maddisyn +Maddyson +Mahlia +Makenzi +Makyla +Malayna +Maleia +Mannat +Marcelina +Marguerite +Mariadelcarmen +Matilde +May +Maylen +Mckenzee +Mekayla +Melanee +Melaney +Melyssa +Midori +Miki +Minnie +Mireille +Mischa +Monserat +Montana +Myleah +Myleen +Myranda +Nadiah +Naiomi +Naliyah +Naraly +Narissa +Nataliya +Nayelie +Naylea +Neomi +Nerissa +Neva +Nickole +Nicolle +Nidhi +Nidia +Nithya +Noely +Pepper +Pixie +Polina +Portia +Prudence +Racquel +Rae +Raelene +Raleigh +Reegan +Reign +Rhiley +Rhylee +Roberta +Roma +Rosalina +Rylynn +Sadhana +Samai +Samiya +Saoirse +Sariya +Saron +Sela +Seraphine +Sereen +Shaelynn +Shanelle +Shantel +Sharanya +Sharlyn +Shaya +Shaylin +Sheridan +Sherly +Shilo +Simar +Sincere +Siomara +Sora +Stefania +Stephani +Sunday +Sury +Suzanne +Suzy +Tamya +Tenzin +Thais +Tiffanie +Una +Uriah +Vaishnavi +Varsha +Vayda +Verena +Veronika +Vianna +Viktoria +Vita +Wynter +Xitlalic +Yana +Yanelly +Yelena +Yohana +Yuriana +Yuritzi +Zamora +Zayla +Zaynah +Zyanya +Aadhya +Aariyah +Abriana +Abriella +Adali +Adalie +Adaly +Addisen +Adilynn +Adrianne +Aeva +Afton +Ahana +Aidan +Aidee +Aili +Ailish +Aislyn +Ajah +Akasha +Akayla +Alara +Aleesha +Aleksa +Alexzandria +Allissa +Amada +Amaiah +Amaiyah +Amaryllis +Ameena +Ameya +Amisadai +Amparo +Anaid +Anaira +Analea +Analyssa +Angelin +Angelita +Angelynn +Anijah +Annaleigh +Annamaria +Annel +Aoife +Aolanis +Ara +Aralyn +Arayah +Arelie +Arihanna +Arin +Armoni +Arrianna +Arwen +Aryanah +Aryssa +Ashby +Ashely +Ashlynne +Athziri +Atianna +Audri +Audrinna +Avalynn +Ayaka +Ayane +Aysha +Azalia +Aziza +Bea +Bela +Bennett +Bethel +Bibi +Bijou +Breauna +Briceyda +Brigette +Brihana +Bronwyn +Cadance +Cady +Caeli +California +Callia +Camellia +Carlene +Carsyn +Cassidee +Cathleen +Cayley +Cesilia +Chandler +Charlette +Chastelin +Chastity +Chioma +Christianna +Chyanne +Ciarra +Claribel +Constanza +Daisey +Dalina +Dalylah +Danely +Danity +Darlin +Daysha +Deepika +Delina +Denis +Destanee +Destanie +Devika +Dezire +Dhanya +Dynasty +Echo +Edyn +Elisabet +Ellah +Ellee +Ellia +Ellyana +Eloisa +Elyanna +Elysse +Elyza +Emaan +Emalie +Emelly +Emersen +Emmery +Enna +Envy +Eviana +Francis +Gabby +Genavie +Genesiss +Gigi +Giorgia +Gizel +Grayson +Gricelda +Grier +Gurnoor +Gwendalyn +Hadia +Haifa +Halia +Hanan +Hennesy +Huda +Husna +Iana +Imaan +Indie +Indigo +Ione +Ira +Irais +Italy +Itxel +Jaelin +Jalyn +Jamilet +Janeli +Janiece +Japleen +Jaslyne +Jaylean +Jazzel +Jazzlin +Jazzmine +Jazzmyn +Jeannie +Jeslyn +Jewels +Jodie +Johnnie +Joie +Jorden +Joselynn +Josephina +Julieanne +Juno +Jurnee +Kailie +Kalynn +Kami +Kamillah +Kanani +Kapri +Karmen +Karrington +Karyna +Kassie +Katerine +Kathrine +Kaylan +Kaylanie +Kaylynne +Keana +Kelley +Kendyll +Kennia +Kennya +Kensley +Kenzi +Keona +Keya +Keyanna +Keylin +Khylee +Kiarra +Kierstyn +Kilee +Kingsley +Kiya +Kori +Korina +Ksenia +Kyah +Kymber +Laina +Lane +Lanette +Laniah +Layan +Layna +Leora +Lexine +Leyah +Leydi +Liel +Lilee +Lilibeth +Lillia +Lilliann +Lisbet +Liza +Lizzeth +Lolah +Lolita +Loreli +Lucianna +Lylia +Macayla +Maddyn +Madilynne +Madisson +Madylin +Maelynn +Mahathi +Maily +Makaylee +Makaylin +Makenzee +Malana +Malani +Maleena +Malika +Mandi +Marielena +Marion +Marlenne +Maryn +Matea +Mckenzi +Mckynzie +Meghana +Melanye +Mele +Meleah +Merlyn +Metzli +Meztli +Mikaella +Milagro +Mildred +Milee +Millicent +Mirabel +Miroslava +Mitzi +Monroe +Mykayla +Nadeen +Naisha +Nalia +Nanami +Nathalee +Nathali +Naveah +Nayleen +Nereida +Nereyda +Neri +Netra +Neyda +Niamh +Nicky +Niki +Nikitha +Nimrat +Nirvana +Niyah +Novalee +Oceana +Olyvia +Paetyn +Pressley +Priyanka +Raeanna +Rana +Rayann +Rayven +Rhian +Rilynn +Romi +Rosalynn +Roselin +Roselynn +Roshni +Rosita +Royal +Rut +Ryanna +Rylin +Saachi +Safia +Saisha +Salome +Sam +Samhita +Samia +Samyah +Samyra +Saori +Saraih +Sarena +Semaj +Seneca +Shalini +Shanell +Shani +Shastelyn +Shawna +Sheccid +Sheily +Shelsy +Sherlyne +Shia +Shir +Shreeya +Siana +Siara +Simona +Siobhan +Socorro +Sofiya +Solei +Stephania +Sterling +Stormy +Suki +Sunnie +Surya +Susie +Sutton +Suzana +Syriana +Taliah +Talula +Tasha +Tatiyana +Tatyanna +Taylin +Taytum +Theodora +Tierney +Trinidad +Triniti +Trish +Tristen +Tristyn +Tyla +Unity +Valentine +Vi +Viana +Vilma +Waverly +Xiclaly +Yaneth +Yaslin +Yeimi +Yeira +Yisel +Yudith +Yzabella +Zada +Zailyn +Zamara +Zaylee +Zella +Ziva +Zora +Zuleima +Aalyiah +Aaryn +Aashritha +Aastha +Abi +Addilyn +Adia +Adora +Adylene +Agam +Ai +Ailen +Aimar +Aishani +Alabama +Alayla +Aleen +Aleeyah +Aleigha +Aleiyah +Alekhya +Alexiana +Alexy +Alexza +Alexzandra +Alicen +Alijah +Alisandra +Alitza +Alitzel +Aliyana +Allanah +Allena +Allysa +Aloni +Alyn +Alyzah +Amal +Amena +Amethyst +Amillia +Aminata +Amoni +Amora +Amyiah +Analya +Anasofia +Andreah +Andreya +Aneth +Anevay +Aneya +Angy +Aniela +Anishka +Anjelica +Annalicia +Anniyah +Anny +Anouk +Anshika +Antonela +Areanna +Ariahna +Arina +Arionna +Aris +Arisa +Arista +Arlin +Arlynn +Arsema +Arwa +Asa +Atalia +Athina +Atzi +Atziri +Auden +Audreena +Audrena +Auriana +Avalina +Avantika +Avarie +Avelyn +Avia +Avila +Ayani +Ayda +Aylen +Ayline +Baileigh +Baleria +Baya +Becca +Bellah +Berenise +Berkley +Betzabe +Blaire +Bobbi +Bobbie +Braylee +Breeanna +Breezy +Brelynn +Bridgett +Brinlee +Brithanny +Brooklyne +Bryn +Byanca +Caden +Caia +Caiden +Caidence +Caley +Calie +Caliyah +Caralyn +Caris +Casie +Cassia +Caterina +Catherin +Chaniya +Charissa +Charly +Cherie +Chiamaka +Christabelle +Clair +Clarice +Cody +Collette +Corrine +Cristel +Cristine +Cristy +Daelynn +Daija +Dalya +Dalyla +Danah +Dannia +Dannielle +Dannika +Danyelle +Della +Delphine +Delyla +Demiana +Dena +Devanie +Dolly +Dorsa +Drea +Eila +Ekam +Elani +Elanna +Eleena +Elen +Eleny +Elexa +Eliannah +Elysa +Emarie +Emiley +Emoni +Ena +Eniyah +Erianna +Erilyn +Esly +Esmee +Eulalia +Euna +Evanna +Evelia +Ezabella +Ezmeralda +Fabiana +Fallyn +Fiza +Gala +Galilee +Gauri +Gianelle +Gwendolynn +Halyn +Han +Harriet +Havanna +Haylin +Helayna +Hermelinda +Heydi +Hila +Ianna +Ilani +Ileene +Indiana +Irlanda +Ishani +Ishika +Ishita +Issa +Ivania +Ivett +Iyanna +Iyonna +Izabell +Jackelyne +Jacklynn +Jaclynn +Jadelynn +Jadynn +Jai +Jaila +Jaiyana +Jakayla +Jakeline +Jalene +Jalia +Jaliah +Jamiya +Jania +Janise +Janna +Jannely +Jareli +Jasira +Jaydeen +Jaydyn +Jaye +Jaylenne +Jaylynne +Jaynee +Jazzelle +Jazzmin +Jeannine +Jenessy +Jenice +Jenise +Jennalyn +Jesica +Jessy +Jett +Jezabel +Jezebelle +Jireh +Jocabed +Joely +Joi +Jolin +Jolissa +Josalynn +Josey +Joslin +Josselin +Joya +Jules +Julian +Juna +Kaavya +Kadie +Kady +Kaelani +Kaeli +Kaileen +Kailei +Kailen +Kalee +Kallista +Kandace +Kaniya +Kareli +Karishma +Karizma +Karmina +Kashmere +Kathia +Kathya +Kayliana +Kayly +Kaytlyn +Keaira +Keani +Keegan +Keisha +Kenadi +Kenzy +Kera +Keri +Kevin +Keyana +Keylen +Khaliyah +Khamani +Kherington +Khylie +Kiari +Kimaya +Kimberli +Kimberlie +Kimi +Kimia +Kirstin +Kodi +Kohana +Krishna +Kristi +Kriti +Kyleen +Kylei +Kyndal +Kyrah +Landyn +Lania +Lanya +Laryssa +Lavender +Laynie +Leahna +Lee +Leeya +Leilanee +Leiloni +Leily +Leina +Lelani +Leni +Lenna +Leonie +Lexington +Lexis +Lillith +Liora +Lisandra +Liset +Logann +Lorenza +Louella +Lovette +Lucienne +Lupe +Lyana +Lynsey +Mackinzie +Madden +Madelaine +Maela +Maelani +Mahealani +Maheen +Mahnoor +Maiah +Maila +Maizy +Makala +Makennah +Makenzy +Makeyla +Makiah +Malaak +Malai +Maleiah +Maleya +Maleyah +Mana +Maneh +Manya +Maraya +Marcy +Margo +Mariapaula +Maricarmen +Marilin +Marilynn +Marleigh +Marlin +Marylu +Masha +Maylani +Mayli +Meher +Meira +Melea +Meliyah +Mellanie +Mena +Micayla +Michaella +Miette +Mikenna +Miku +Milca +Minna +Molli +Momoka +Mona +Monalisa +Myka +Myley +Myrah +Nadiya +Naina +Nairi +Nakayla +Nalah +Nalayah +Nathalye +Naudia +Nava +Naveen +Nazareth +Nazyia +Neema +Neftali +Neko +Nella +Nery +Nevaeha +Neveen +Nicol +Nicola +Nicoletta +Nicollette +Nikayla +Nilah +Nimrit +Ninel +Nivia +Noga +Noreen +Odette +Oliva +Orly +Paislee +Paradise +Parnika +Patty +Paz +Persia +Polly +Queena +Quinlan +Raeleen +Rafaela +Raniya +Raniyah +Rashel +Rayana +Raylynn +Rebecka +Reena +Remie +Rhiana +Riddhi +Rileigh +Rithika +Ritika +Rivka +Riyana +Rogue +Roisin +Roni +Rosabella +Rosamaria +Rowyn +Ruhi +Ruthie +Ryanne +Ryen +Ryhanna +Sadaf +Saiya +Samaira +Sanna +Santa +Santana +Saory +Saphire +Saraya +Sarayu +Saskia +Seidy +Selin +Sena +Seniyah +Seri +Seryna +Shakira +Shana +Shane +Shanice +Shaye +Shaylynn +Shealyn +Sheena +Shelsea +Shree +Silvana +Sima +Sivan +Siyona +Skylee +Skylynn +Solana +Sonnet +Sophea +Sophiarose +Sophya +Srinidhi +Stormie +Sucely +Sulema +Suriah +Suzie +Syniah +Syriah +Talaya +Taliya +Tallula +Tariah +Tasneem +Tayah +Tayana +Teah +Tenaya +Teresita +Thanya +Thelma +Thy +Tiare +Tilly +Tonia +Tuesday +Tylee +Valerye +Vanna +Verity +Vibha +Vivi +Viviann +Vivyana +Winifred +Xela +Xenia +Xoe +Xuan +Yannis +Yarelli +Yarethzy +Yarisbeth +Yatziri +Yazlin +Yehudis +Yexalen +Yosselin +Ysabelle +Yumiko +Yuritza +Yuvia +Zamaya +Zamya +Zarai +Zayana +Zaynab +Zelda +Zelia +Zena +Zenaida +Zinnia +Zohal +Zuly +Isabella +Sophia +Emily +Mia +Emma +Samantha +Olivia +Abigail +Natalie +Ava +Sofia +Chloe +Ashley +Camila +Elizabeth +Victoria +Alyssa +Brianna +Madison +Kimberly +Alexa +Evelyn +Valeria +Hailey +Zoe +Jocelyn +Bella +Ella +Kayla +Andrea +Melanie +Alexis +Allison +Grace +Lily +Audrey +Genesis +Jasmine +Leah +Valerie +Natalia +Kaylee +Maya +Sarah +Vanessa +Charlotte +Hannah +Destiny +Giselle +Savannah +Jessica +Stephanie +Angelina +Addison +Michelle +Nevaeh +Brooklyn +Khloe +Makayla +Alexandra +Maria +Ruby +Arianna +Layla +Aaliyah +Daisy +Zoey +Gianna +Ariana +Riley +Katherine +Melissa +Avery +Scarlett +Sophie +Jennifer +Taylor +Liliana +Amy +Gabriella +Daniela +Kylie +Aubrey +Delilah +Valentina +Julia +Jade +Isabel +Jacqueline +Amelia +Naomi +Claire +Nicole +Lauren +Leslie +Faith +Stella +Eva +Madeline +Lillian +Mariah +Adriana +Sydney +Violet +Diana +Esmeralda +Angela +Gabriela +Melody +Alondra +Kaitlyn +Katelyn +Alina +Anna +Ximena +Brooke +Juliana +Guadalupe +Yaretzi +Fatima +Leilani +Lucy +Briana +Miranda +Jazmin +Peyton +Isabelle +Izabella +Aliyah +Ellie +Sara +Danna +Alejandra +Bailey +Karen +Sadie +Elena +Jayleen +Vivian +Rachel +Alicia +Audrina +Eliana +Madelyn +Fernanda +Serenity +Karina +Megan +Trinity +Itzel +Amanda +Julianna +Leila +Crystal +Sienna +Mariana +Chelsea +Paige +Jimena +Ariel +Emely +Keira +Aileen +Penelope +Alice +Miley +Annabelle +Karla +Mya +Ana +Rebecca +Mackenzie +Marissa +Tiffany +Luna +Payton +Amber +Jasmin +Jazmine +Joanna +Katie +Morgan +Nataly +Autumn +Julissa +Sabrina +Amaya +Iris +Lilly +Sierra +Bianca +Caroline +Juliet +Laila +London +Alexia +Danielle +Hazel +Lyla +Lucia +Alana +Allyson +Molly +Alessandra +Angelica +Daniella +Jaylene +Rylee +Jayla +Priscilla +Dulce +Summer +Brenda +Denise +Jenna +Melany +Aurora +Brooklynn +Jordyn +Cassandra +Kate +Alison +Cynthia +Janelle +Catherine +Eden +Kamila +Kylee +Paola +Celeste +Kennedy +Lizbeth +Lola +Nayeli +Reese +Haley +Kelly +Mikayla +Mila +Monica +Athena +Brisa +Estrella +April +Eleanor +Malia +Reagan +Elise +Mary +Juliette +Josephine +Kassandra +Lila +Carolina +Christina +Cassidy +Viviana +Sarai +Yareli +Gabrielle +Jordan +Kendra +Isla +Kiara +Camille +Wendy +Breanna +Harper +Anahi +Gracie +Heidi +Piper +Ashlyn +Genevieve +Marley +Veronica +Angie +Desiree +Kaylie +Selena +Kendall +Clarissa +Hayden +Jayden +Tatiana +Cecilia +Dayana +Gia +Clara +Cali +Fiona +Joselyn +Dana +Sasha +Cindy +Makenna +Melina +Tessa +Brielle +Elisa +Erika +Johanna +Lesly +Lydia +Marilyn +Laura +Evangeline +Jamie +Presley +Vivienne +Helen +Jazlyn +Marisol +Sandra +Madeleine +Nadia +Jillian +Aria +Emilia +Giuliana +Anabelle +Lilah +Nancy +Quinn +Carmen +Julie +Noemi +Abby +Esther +Phoebe +Serena +Arely +Carly +Nathalie +Scarlet +Aniyah +Ivy +Lilliana +Miriam +Perla +Gisselle +Jaelyn +Aimee +Delaney +Erin +Jada +Mckenzie +Adrianna +Alexandria +Irene +Kira +America +Kailey +Katelynn +Paulina +Raquel +Aylin +Lia +Rosa +Natasha +Siena +Angelique +Camilla +Hope +Kaia +Maliyah +Brittany +Sherlyn +Aubree +Gloria +Nora +Aleena +Annie +Mikaela +Paloma +Makenzie +Adeline +Shelby +Nina +Rose +Eliza +Caitlyn +Cheyenne +Helena +Jaqueline +Angel +Heaven +Lexi +Amelie +Anya +Kathryn +Keyla +Noelle +Ruth +Tatum +Belen +Harmony +Kaelyn +Anabella +Ashlynn +Dahlia +Elle +Skylar +Annabella +Bethany +Darlene +Kara +Margaret +Talia +Danica +Yasmin +Yesenia +Annika +Daphne +Haylee +Marlene +Alisson +Jayda +Charlie +Janessa +Kyla +Regina +Rylie +Teagan +Ivanna +Mckenna +Anaya +Kelsey +Alyson +Dalilah +Hayley +Maggie +Marina +Maritza +Holly +Krystal +Savanna +Anika +Ayleen +Cadence +Gemma +Heidy +Lea +Olive +Alissa +Lilian +Elliana +Caitlin +Allisson +Camryn +Jane +Kaydence +Linda +Reyna +Abril +Allie +Lizeth +Luz +Aleah +Georgia +Iliana +Kiana +Ryleigh +Tiana +Anastasia +Arlene +Catalina +Emery +Liana +Lilyana +Sarahi +Willow +Danika +Maddison +Paris +Rubi +Dakota +Kiley +Londyn +Lana +Lexie +Ayla +Isabela +Madelynn +Claudia +Frida +Jazlynn +Madilyn +Nathalia +Paisley +Alani +Brynn +Isis +Jaslene +Julieta +Kathleen +Stacy +Belinda +Chanel +Nathaly +Shayla +Valery +Yvette +Adalyn +Alma +Araceli +Dayanara +Kaylin +Lindsey +Rosemary +Eloise +Joy +Lyric +Mayra +Sonia +Callie +Cora +Kyra +Teresa +Arielle +Bryanna +Eileen +Francesca +Monserrat +Patricia +Shaila +Stephany +Aryanna +Azul +Courtney +Cristina +Josie +Skye +Yaritza +Yuliana +Alivia +Arabella +Lilianna +Lizette +Kamryn +Leia +Martha +Milagros +Susana +Carla +Kailee +Kayleen +Nia +Rosalie +Addyson +Alaina +Emerson +Erica +Janet +Jessie +Kayleigh +Lindsay +Miah +Hana +Kali +Kiera +Michaela +Norah +Sariah +Simone +Yadira +Alayna +Kailyn +Leilah +Maia +Makena +Maryjane +Alanna +Dalia +Farrah +Giana +Gizelle +Jaelynn +Jenny +Kenzie +Kristen +Lisa +Violeta +Jacquelyn +Jayde +Myla +Aiyana +Damaris +Dylan +Joyce +Marie +Melinda +Rebekah +Tanya +Xitlali +Zara +Analia +Bridget +Citlali +Jaylin +Larissa +Maci +Monique +Sage +Alia +Angeline +Aubrie +Cameron +Dania +Lena +Anabel +Aniya +Aracely +Britney +June +Kaya +Yoselin +Edith +Emilee +Hanna +Mariam +Maribel +Alisa +Annalise +Brissa +Donna +Evelin +Jocelynn +Kristina +Madisyn +Mallory +Romina +Shiloh +Skyler +Sloane +Tabitha +Xochitl +Yamileth +Adelina +Celine +Elaine +Esperanza +Hailee +Harlow +Imani +Jaylah +Kassidy +Kenya +Roxanne +Tania +Aliya +Amira +Annette +Christine +Cristal +Denisse +Geraldine +Lilia +Natalya +Paula +Samara +Barbara +Karissa +Rihanna +Adelaide +Alena +Aliah +Elsa +Galilea +Giovanna +Ingrid +Janice +Lacey +Roselyn +Xiomara +Yazmin +Ailyn +Aryana +Eve +Kathy +Lina +Lylah +Rowan +Roxana +Selah +Sidney +Elianna +Jaylynn +Lauryn +Lesley +Leyla +Luciana +Mariela +Vivianna +Yamilet +Adelyn +Alize +Areli +Emilie +Finley +Jackeline +Jasleen +Leticia +Lorena +Madalyn +Mercedes +Nyla +Renata +Ryan +Ainsley +Amara +Beatrice +Elyse +Jolie +Journey +Kailani +Lucero +Macy +Madyson +Roxanna +Annabel +Graciela +Kaiya +Laylah +Leanna +Mina +Pearl +Salma +Zaira +Aisha +Casey +Evangelina +Harley +Janae +Lorelei +Natalee +Sharon +Virginia +Zariah +Dalila +Destinee +Hadley +Kinley +Liberty +Lucille +Marely +Mariajose +Milan +Sandy +Ariella +Ashlee +Berenice +Carina +Darla +Davina +Ivana +Judith +Kamilah +Kaylynn +Macie +Maleah +Matilda +Parker +Priscila +Tara +Adilene +Adrienne +Ally +Cambria +Elissa +Jaylee +Lilyanna +Margarita +Nalani +Riya +Rocio +Vienna +Averie +Charlize +Ellen +Frances +Gwendolyn +Johana +Kaylah +Kenia +Lluvia +Marisa +Paulette +Whitney +Ada +Amari +Ciara +Elina +Elisabeth +Estefania +Janiyah +Julianne +Kaliyah +Kayden +Lailah +Lara +Lilith +Lupita +Marlee +Micaela +Mireya +Pamela +Rebeca +Suri +Thalia +Yaretzy +Analy +Anne +Baylee +Caylee +Dominique +Evie +Gisele +Kaitlin +Karly +Kianna +Mckayla +Mika +Natali +Phoenix +Soraya +Sylvia +Yarely +Abbigail +Amaris +Amina +Anissa +Blanca +Deanna +Demi +Esme +Estefani +Jaslyn +Jazlene +Jazmyn +Kaitlynn +Kalea +Lillie +Mayte +Saniyah +Shannon +Sofie +Vida +Adalynn +Aliana +Arlette +Cara +Citlaly +Giada +Joana +Kaila +Kaylani +Kaylen +Kimora +Mira +Miracle +Nadine +Nelly +Felicity +Haylie +Jadyn +Jaiden +Kasey +Katia +Kinsley +Kyleigh +Logan +Marlen +Renee +Saanvi +Soleil +Taliyah +Adamaris +Dayanna +Dianna +Diya +Heather +Jolene +Justice +Kadence +Kourtney +Leilany +Litzy +Maite +Meghan +Montserrat +Rachael +Scarlette +Yahaira +Aditi +Amani +Ashly +Ayanna +Calista +Colette +Eunice +Isabell +Kaylyn +Leona +Luisa +Marianna +Millie +Rhea +Sally +Sarina +Sheila +Shreya +Susan +Tina +Aiyanna +Arya +Azucena +Deborah +Elaina +Emmy +Jaycee +Liv +Amya +Anali +Coral +Izabel +Jackelyn +Jaden +Justine +Kalia +Keily +Lyra +Madalynn +Maryam +Milana +Naima +Noa +Noelia +Reina +Rosie +Sheyla +Shyla +Skyla +Yaneli +Aanya +Aliza +Amiyah +Anushka +Arleth +Asia +Audriana +Carissa +Cielo +Ivette +Jaidyn +Jaylen +Jordynn +Joseline +Kayley +Lillyana +Malaya +Myah +Neveah +Selene +Selina +Taryn +Vera +Vianey +Zoie +Addisyn +Alayah +Anais +Britany +Delia +Elsie +Evelynn +Fabiola +Grecia +Hailie +Halle +Jacklyn +Kasandra +Katrina +Lianna +Lidia +Moriah +Princess +Raegan +Raylene +Savanah +Abbie +Amalia +Analise +Ananya +Avalon +Avani +Ayana +Brenna +Charley +Flor +Haven +Hennessy +Irie +Jaliyah +Jazleen +Jemma +Jewel +Kai +Karolina +Magdalena +Nikki +Precious +Regan +Rita +Sawyer +Shirley +Sunny +Yulissa +Celina +Charlene +Coraline +Emelia +Gwen +Kristine +Maxine +Milena +Noor +Rylan +Silvia +Sky +Xitlaly +Yuna +Zuri +Alyna +Amayah +Bailee +Charlee +Clare +Daira +Ember +Gladys +Ireland +Ivonne +Jazzlyn +Leighton +Nicolette +Nylah +Vianney +Adelynn +Ani +Anjali +Anneliese +Ariadne +Astrid +Aviana +Bonnie +Celia +Cherish +Diane +Elin +Elyssa +Frankie +Hillary +Jacquelin +Joelle +Kaily +Keila +Melia +Nova +Ryann +Yolanda +Ysabella +Zaniyah +Abbygail +Belle +Briseida +Dallas +Evalyn +Gracelyn +Katy +Keilani +Leanne +Miya +Mylee +Paityn +Raven +Samira +Shyanne +Stacey +Stevie +Tenley +Tianna +Yvonne +Abbey +Alisha +Amiya +Aspen +Aurelia +Aya +Beatriz +Emmalee +Ginger +Jaylyn +Jiselle +Joanne +Jocelyne +Joslyn +Josselyn +Karely +Kayli +Kirra +Lillianna +Lisette +Lorelai +Madilynn +Marcela +Mariyah +Rayna +Rosario +Tamara +Unique +Vianna +Yoselyn +Aime +Akira +Betsy +Blake +Candy +Capri +Chelsey +Dafne +Delylah +Diamond +Ericka +Estefany +Jaida +Jaquelin +Kamille +Karlie +Kenley +Leena +Nikita +Payten +Sahana +Sana +Tegan +Violette +Yessenia +Yuridia +Zahra +Abygail +Alannah +Avah +Bristol +Cailyn +Dani +Devin +Evelina +Faye +Gina +Isha +Jailyn +Janeth +Kaelynn +Karis +Karyme +Kloe +Lourdes +Lynette +Malina +Nichole +River +Sloan +Vanesa +Yajaira +Adamari +Alysson +Amie +Anita +Ariah +Avril +Carolyn +Cienna +Danae +Devyn +Emi +Jaedyn +Janette +Janiya +Josefina +Juanita +Klarissa +Leilanie +Maiya +Makaela +Marlyn +Micah +Raina +Saira +Tracy +Tyler +Vicky +Yara +Zainab +Zoya +Akshara +Alex +Amerie +Anabell +Angeles +Annabell +Annalee +Annelise +Antonella +Arleen +Aubrianna +Bryana +Cayla +Christiana +Cinthia +Dasha +Desirae +Ema +Everly +Gema +Gissel +Giulianna +Gwyneth +Ilene +Izel +Jackie +Jeanette +Julisa +Kacey +Kairi +Kaleigh +Kaley +Kallie +Lucinda +Marbella +Mayrin +Mckinley +Neha +Nya +Poppy +Ramona +Raya +Roxy +Sanvi +Star +Yasmine +Ariyana +Berlin +Brandy +Bridgette +Briza +Chiara +Dorothy +Elia +Estella +Geneva +Gillian +Haily +Italia +Itzayana +Izabelle +Jazelle +Jianna +Joselin +Juana +Kalani +Kaleah +Kenna +Lainey +Mabel +Malak +Maliah +Melisa +Naya +Rosalinda +Serene +Tori +Adela +Adele +Alexi +Allegra +Amiah +Analisa +Arden +Aubrielle +Audrianna +Azalea +Beatrix +Betty +Briella +Brittney +Coco +Corinne +Deisy +Elly +Emiko +Evolet +Flora +Gisell +Gracelynn +Halo +Isadora +Issabella +Janelly +Jaslynn +Karma +Katheryn +Kaylene +Lillyanna +Livia +Makaylah +Maricela +Mayah +Melodie +Mercy +Meredith +Myra +Nola +Shea +Tess +Theresa +Venus +Zayra +Ahtziri +Aida +Alba +Analee +Ann +Brinley +Caelyn +Caydence +Constance +Elisha +Hadassah +Isela +Janell +Jizelle +Kaili +Krista +Kylah +Laney +Maeve +Magaly +Mandy +Mara +Mariel +Marlie +Maylin +Ria +Sahara +Sahasra +Sanai +Shayna +Stefany +Tallulah +Viridiana +Ali +Allyssa +Arianny +Aubriana +Audree +Casandra +Desteny +Emmalyn +Estela +Evalynn +Greidys +Hallie +Hilary +Jamileth +Jasmyn +Kalena +Karime +Kelsie +Laniyah +Laurel +Leyna +Melani +Melony +Mona +Nahla +Nellie +Nyah +Odalys +Penny +Rayne +Remi +Sabina +Saige +Sinai +Sol +Sylvie +Willa +Zaria +Abigale +Ailani +Alessia +Aline +Azariah +Campbell +Cleo +Corina +Ela +Emme +Greta +Haydee +Holland +Hunter +India +Ixchel +Katalina +Kristal +Lisandra +Lucie +Mae +Makaila +Meadow +Milla +Miyah +Nika +Norma +Quetzalli +Raelynn +Robin +Saniya +Sariyah +Serafina +Taya +Tia +Toni +Winter +Zooey +Abrianna +Abrielle +Adrianne +Adrina +Alyvia +Amirah +Analiah +Andie +Anisa +Annaliese +Ariadna +Ariya +Asha +Aymar +Braelyn +Breana +Briseyda +Cheyanne +Clementine +Connie +Drew +Elliot +Emalee +Emerie +Ever +Farah +Freya +Georgina +Irma +Jocelin +Katerina +Kristin +Lesli +Mai +Margot +Mariella +Mindy +Mylah +Nailah +Priya +Promise +Rosalyn +Sabine +Saray +Sayuri +Sequoia +Stefanie +Tatianna +Trisha +Valarie +Alianna +Amia +Anaiah +Angelie +Antonia +Ariela +Ayva +Bree +Brylee +Carley +Destiney +Dina +Dior +Ellery +Elli +Fallon +Felicia +Gisela +Gurleen +Hayleigh +Honey +Isobel +Iyana +Janiah +Janie +Jayme +Jenesis +Jenifer +Jersey +Jessa +Jesse +Joey +Jovanna +Kailynn +Kaira +Karol +Katharine +Katya +Kaycee +Kayle +Khloee +Kyndall +Lexy +Lilyan +Mari +Marisela +Marjorie +Meera +Melannie +Mollie +Naia +Nariah +Nayelli +Noelani +Rhianna +Rio +Serina +Sonya +Suzette +Sydnee +Symphony +Tatyana +Uma +Yulianna +Zion +Aaleyah +Adelle +Ailin +Alaya +Alizay +Alora +Amberly +Ameera +Amyah +Analeah +Anayah +Annmarie +Ariyah +Arwen +Ayah +Ayesha +Bernadette +Cailin +Carlee +Carlie +Carol +Cassie +Cecelia +Charity +Cianna +Colbie +Dayra +Dennise +Emeli +Ester +Gisel +Giulia +Griselda +Imogen +Ivory +Jacey +Jael +Jaquelyn +Jenelle +Jiya +Josslyn +Jules +Juniper +Khadija +Kimberley +Kiyomi +Kristy +Libby +Lili +Maile +Malena +Marian +Marla +May +Milania +Naiya +Naomy +Patience +Pricilla +Quincy +Rain +Rayleen +Reece +Remy +Rory +Sakura +Sarahy +Simran +Tayla +Vania +Vivien +Yarel +Aarna +Abigayle +Ami +Aminah +Analiyah +Aniah +Anisha +Ari +Ashleigh +Avianna +Caitlynn +Carli +Carmella +Cecily +Chelsy +Christy +Ciana +Cierra +Clover +Cordelia +Daizy +Darlyn +Daysi +Deja +Essence +Ines +Jaclyn +Jana +Janely +Jaya +Jenavieve +Jennie +Joselyne +Kaliah +Kamilla +Karlee +Karli +Kavya +Keren +Kimber +Kirsten +Leylani +Lilyann +Lilyanne +Liya +Lori +Margaux +Marianne +Maycee +Melania +Nahomi +Navya +Pilar +Samiyah +Sanaa +Tanvi +Tehya +Temperance +Venice +Wren +Yana +Yasmeen +Yessica +Zariyah +Zulema +Abagail +Abella +Adison +Aimar +Alanah +Alanis +Anette +Aolani +Austyn +Averi +Braelynn +Brianne +Brookelynn +Brynlee +Caleigh +Candice +Charli +Danya +Delila +Dora +Doris +Ebony +Eleni +Ellis +Emerald +Emmalina +Emmaline +Emmie +Estelle +Everleigh +Genessis +Gwenyth +Haleigh +Ida +Iyanna +Jaymee +Jolee +Jordin +Journee +Kaylan +Lacy +Laylani +Loren +Louise +Lynn +Mackenna +Madelyne +Maegan +Magnolia +Mareli +Miabella +Milani +Milly +Nayla +Neve +Noel +Pepper +Rachelle +Raelyn +Rianna +Robyn +Samaria +Saylor +Shaelyn +Sherlin +Solange +Soledad +Sunshine +Tala +Treasure +Yanely +Aaliah +Aarushi +Aila +Alaysia +Alea +Alexandrea +Alexus +Alexys +Alyah +Amairany +Anaiya +Anastacia +Anayeli +Anessa +Angely +Angelyn +Ania +Annamarie +Bernice +Brigitte +Candace +Chana +Citlalli +Clarisa +Dara +Daria +Daylin +Debora +Elexis +Elva +Emani +Emelie +Giavanna +Gissele +Gissell +Honesty +Isa +Janis +Jaymie +Jennah +Jessi +Joan +Judy +Julietta +Kalista +Kamea +Karoline +Katarina +Keanna +Kya +Kyara +Lailani +Lariah +Leana +Liah +Lilit +Lillyann +Linnea +Lorraine +Love +Macey +Madaline +Maira +Malayah +Malaysia +Marcella +Marin +Maryann +Mayleen +Meagan +Merari +Michele +Nadya +Pauline +Petra +Prisha +Rilynn +Rosalina +Roxie +Rylin +Sahar +Saydee +Shae +Shania +Shaylee +Taraji +Thea +Trina +Viola +Xochilt +Yoana +Yocelyn +Yoseline +Zahara +Zora +Adaline +Addilyn +Aide +Aisling +Aislinn +Alayla +Amarah +Amilia +Arlett +Arlyn +Ashlie +Audrie +Ayari +Berlyn +Beverly +Bianka +Bria +Brithany +Bryce +Charis +Charleigh +Dayna +Delanie +Della +Divina +Divya +Elinor +Ellianna +Emmerson +Esha +Evan +Franchesca +Gaby +Gigi +Hafsa +Harleen +Heavenly +Ila +Ilana +Ileen +Illiana +Isamar +Jalissa +Jamila +Jazmyne +Joceline +Josephina +Joslynn +Kaci +Kahlan +Kamyla +Kareena +Karsyn +Kathya +Kennedi +Kyrie +Laci +Lani +Leela +Lillyan +Lisbeth +Lovely +Lucca +Magali +Malani +Mariafernanda +Marlowe +Martina +Marwa +Mihika +Mischa +Moira +Myriam +Naila +Neela +Nevaeha +Nyomi +Persephone +Raine +Reilly +Rosemarie +Saleen +Samanta +Samiah +Sanaya +Saniah +Sayra +Shaniya +Shay +Suhani +Sydnie +Tamia +Tiara +Vy +Yael +Yailin +Yazmine +Yocelin +Yulisa +Yzabella +Zahira +Ziva +Zofia +Aahana +Aashi +Ahana +Aleida +Aleksandra +Aleyna +Alysa +Alyse +Alysha +Amora +An +Anahy +Anai +Anaiyah +Anamaria +Anela +Annalisa +Antoinette +Armani +Avelina +Azaria +Bentley +Billie +Calleigh +Carys +Cathy +Charisma +Chaya +Chelsie +Darleen +Dayami +Debbie +Desire +Dolores +Ekam +Ellison +Elyana +Elysia +Fatimah +Florence +Getsemani +Grayson +Gretchen +Harlee +Jaimie +Jalynn +Janine +Jenessa +Jovana +Jubilee +Kailea +Kalina +Kalynn +Kamari +Kambria +Karisma +Karley +Keely +Keilah +Kendal +Kensington +Kora +Korina +Lacie +Laisha +Leandra +Leeah +Leiah +Lela +Lissette +Loretta +Luella +Maliya +Mallorie +Maren +Maribella +Marielle +Marleen +Mikaylah +Minerva +Nallely +Nariyah +Nava +Nayely +Niyah +Ofelia +Olga +Preslee +Rania +Rena +Rosalia +Rubie +Savana +Sedona +Selma +Sharlene +Shira +Shivani +Shriya +Shyann +Sunday +Surina +Suzanne +Taelyn +Taleah +Tammy +Taniyah +Vanya +Vivianne +Yamile +Yanet +Yusra +Zadie +Zulay +Acacia +Adina +Adyson +Ailey +Aleeah +Alexie +Alexsandra +Alycia +Alynna +Amaia +Amariah +Anay +Annalie +Anyssa +Arianah +Aries +Arisbeth +Arissa +Ashanti +Ashely +Ashleen +Atziri +Aubry +Audra +Ayda +Ayelen +Bibiana +Bobbie +Brandi +Breanne +Brianda +Briceida +Brihanna +Briley +Brissia +Brooklynne +Bryn +Cailey +Calliope +Camdyn +Cameryn +Carson +Cayden +Celena +Chanelle +Christal +Chyna +Cloe +Darby +Dariana +Dezirae +Donya +Elodie +Eloisa +Elvia +Elvira +Emersyn +Emiliana +Emmeline +Evany +Francheska +Genavieve +Georgiana +Graciella +Guiliana +Hartley +Hellen +Hilda +Honor +Ilianna +Inara +Irelynn +Isabellamarie +Izzabella +Jackelin +Jadelyn +Jaila +Jalaya +Janna +Jarely +Jaydee +Jayne +Jazzlynn +Jeannette +Jessalyn +Joleen +Jolina +Jozlyn +Justina +Kacie +Kaeli +Kalie +Kamiyah +Katelin +Kelsi +Khloie +Kiersten +Kimberlee +Laniya +Laylanie +Leeanna +Leen +Leiana +Leigha +Leora +Leyah +Liyah +Lyanna +Maily +Maliha +Marion +Marlena +Maryanne +Mattie +Maura +Maylee +Melanee +Melanny +Meleny +Melonie +Mirabelle +Mirella +Monserrath +Nala +Naomie +Naveah +Neriah +Niah +Nico +Nishka +Novalee +Ocean +Ophelia +Polina +Rayanna +Reem +Rhiannon +Rilee +Rishika +Rosabella +Roselynn +Roslyn +Roya +Ryley +Sabella +Sailor +Samia +Samya +Sanjana +Saraya +Shelly +Sherry +Sia +Sincere +Skylah +Tahlia +Tayler +Vanity +Veronika +Yamila +Yelitza +Yunuen +Zarah +Zariya +Aaniyah +Aarya +Abbygale +Adali +Aiden +Ailene +Airam +Aislynn +Aja +Aleenah +Alessa +Aleyda +Alinah +Alisia +Alyssah +Alyza +Amarie +Ambar +Anaid +Analiz +Ananda +Aneesa +Anevay +Angelia +Angelita +Annalia +Aralyn +Aranza +Arianni +Ashlan +Audry +August +Avalyn +Avni +Avonlea +Bayleigh +Becky +Bellah +Bethel +Blair +Briseis +Calia +Calla +Carmela +Carrie +Catelyn +Chloie +Colleen +Darcy +Deysi +Dianne +Dulcemaria +Eiza +Elana +Elani +Ellah +Ellena +Elora +Emeline +Emelyn +Emmaleigh +Emmalynn +Emmanuelle +Emmely +Eryn +Esmee +Estephanie +Eternity +Ezra +Fayth +Francine +Genevie +Gianni +Gurnoor +Gweneth +Hania +Ileana +Iman +Italy +Ivanka +Jahzara +Jaleah +Jalyssa +Janay +Jaylean +Jayline +Jeanine +Jenevieve +Jessenia +Jill +Joann +Jovie +Juliett +Julyssa +Kaela +Kailah +Kalaya +Kamiya +Kareli +Katherin +Katheryne +Kathia +Kaydance +Keiry +Kenadie +Keziah +Khushi +Kim +Kinsey +Leann +Leslye +Lisset +Luca +Maanya +Mahika +Mailyn +Maisie +Makeyla +Malaika +Malea +Mannat +Maricarmen +Maricruz +Marilynn +Marlo +Medha +Meena +Meilani +Michell +Mikaila +Mirna +Monet +Mykayla +Naisha +Naliyah +Nuvia +Paislee +Preslie +Pricila +Randi +Rhyan +Rileigh +Romy +Rosalba +Sama +Sanya +Sarayu +Sariya +Saya +Shantal +Shantel +Shayne +Sianna +Silvana +Siri +Skylee +Soriya +Susanna +Suzanna +Tamar +Tanisha +Tea +Teegan +Tinsley +Trish +Winnie +Xyla +Yuri +Zaara +Zurisadai +Aalyah +Aashna +Adalia +Addelyn +Addysen +Adelaida +Adelia +Adi +Aleina +Alesandra +Allizon +Allysson +Alyiah +Alyssandra +Analeigh +Analicia +Analie +Angeli +Annaleah +Ariannah +Athziry +Audrinna +Aundrea +Aylen +Azalia +Bertha +Betsabe +Betzy +Blythe +Britanny +Brookelyn +Calie +Camden +Camellia +Carleigh +Cesia +Chevelle +Cinthya +Daiana +Darya +Dawn +Deana +Denali +Devon +Deziree +Divine +Edie +Ekaterina +Elliott +Elsy +Elysse +Emaan +Emelina +Emory +Erandi +Eris +Evalina +Evana +Fabiana +Gennesis +Georgette +Gimena +Greydis +Halia +Hiba +Hollie +Idaly +Ilyana +Inaya +Ishita +Jaide +Jamilet +Janyah +Jaselle +Jasmeen +Jaycie +Jaydin +Jean +Jenavie +Jennyfer +Jessika +Jesslyn +Jezabel +Jezebel +Jiana +Joie +Jordana +Josalyn +Juno +Kaelani +Kami +Kari +Keeley +Keilana +Kendyl +Keyli +Khalia +Kimiko +Kiya +Kloey +Kyrah +Laniah +Laurie +Laya +Legacy +Leonor +Lexus +Linette +Lizet +Lizett +Luana +Luci +Lucianna +Lucila +Lulu +Lux +Maddie +Madelin +Makyla +Maleia +Marelyn +Mariadejesus +Mariya +Marta +Marysol +Maylene +Melenie +Melyssa +Metzli +Mikaella +Milah +Millicent +Mirian +Monika +Nahomy +Nairi +Nicol +Nicola +Nidhi +Nila +Nisha +Niya +Noah +Noeli +Noemy +Nour +Peighton +Pia +Prisila +Raylynn +Reya +Rhiley +Rhylee +Rina +Ritika +Rosy +Sachi +Samirah +Sanika +Saoirse +Saphira +Seraphina +Serinity +Shakira +Shani +Shelsea +Shoshana +Sicily +Siya +Sofiya +Solash +Sophya +Stacie +Starla +Starr +Stephania +Story +Suhana +Susie +Taliya +Tanner +Taytum +Yareni +Yuritzi +Zaida +Zaina +Zaniah +Zaylee +Zaynab +Zella +Zia +Zoee +Zyanya +Abriella +Adalie +Addisen +Adilyn +Adrielle +Advika +Aeryn +Aeva +Aiko +Ailish +Aiza +Alanie +Alanni +Alasia +Aleeyah +Aleiah +Alexzandria +Aliannah +Alise +Alizabeth +Alizon +Alli +Allysa +Alona +Alyanna +Alyssia +Amaiya +Amethyst +Anagha +Andi +Anely +Angelika +Annali +Annet +Anoushka +Anusha +Anvi +Arina +Arriana +Aryah +Ashlin +Ashton +Audri +Audryna +Avalynn +Avamarie +Aven +Avika +Ayden +Aylene +Baily +Beautiful +Bellarose +Bethanie +Blessing +Bowie +Brigette +Brigid +Bronwyn +Brook +Bushra +Catarina +Caylie +Caylin +Celene +Charly +Christa +Christie +Ciera +Citlally +Claira +Corrine +Cydney +Dakotah +Dasia +Delany +Desi +Dhalia +Dyana +Dylann +Elayna +Elijah +Elika +Elisheva +Elisia +Ellyana +Eman +Emiley +Emilyn +Emmily +Eriana +Erianna +Estephany +Evette +Georgianna +Gisella +Glory +Harlie +Harmonie +Hattie +Heiley +Henna +Ily +Imelda +Isaura +Ivania +Izabell +Jackelyne +Jacklynn +Jacquelynn +Jaeda +Jaela +Jaime +Jaina +Jalayah +Jameson +Janett +Jannelle +Jaylani +Jazlyne +Jazzelle +Jeslyn +Jia +Jisselle +Joscelyn +Jurnee +Kahlia +Kailana +Kailie +Kalei +Kamora +Kaniyah +Kay +Kayana +Kelley +Kelsy +Kenadee +Kenzi +Keyra +Khadijah +Kierra +Kitana +Laine +Lamya +Layah +Layne +Laysha +Leianna +Levi +Lexis +Lilianne +Lizzet +Mahi +Malanie +Maleena +Malika +Marcelina +Maribelle +Marleny +Marylin +Matea +Mathilda +Memphis +Metztli +Michel +Milca +Miliana +Mimi +Myranda +Nailea +Naimah +Navaeh +Naylea +Neida +Neva +Neyda +Nikole +Opal +Oriana +Osiris +Parisa +Prisilla +Queenie +Quetzali +Rayven +Richelle +Rihana +Rilyn +Rozlyn +Rozlynn +Ruhi +Saachi +Sade +Safiya +Saisha +Samiya +Saranya +Sarita +Scout +Seerat +Semaj +Shanaya +Shanelle +Sheena +Shelsy +Sherline +Solana +Sonja +Sruthi +Stefani +Stefania +Tanishka +Tatyanna +Taylee +Tera +Teyla +Thania +Tiffanie +Trista +Tristyn +Vannessa +Vianca +Victory +Violetta +Vita +Viviann +Vivica +Xenia +Xitlalli +Yanira +Yatzil +Yatziri +Yesica +Yuki +Yvanna +Zamira +Zayda +Zayla +Zeina +Zelda +Zinnia +Zuleika +Zuleyka +Aadya +Aaliya +Abbigale +Abriana +Adalina +Adaya +Agnes +Ailany +Ailed +Aishwarya +Aislyn +Akshita +Alahna +Aleesa +Aleeya +Aleeza +Alesha +Aliyana +Althea +Aly +Alyce +Amairani +Amaiyah +Amalie +Amayrani +Ameya +Amna +Amor +Analiese +Anam +Anamarie +Andreya +Angelena +Angelic +Angelin +Aniela +Annaly +Annalynn +Anny +Ansley +Aolanis +Ara +Arabelle +Aris +Arlin +Arushi +Aryn +Ashlynne +Asiya +Athalia +Aubri +Aubriella +Austin +Avi +Avigail +Ayanah +Ayme +Azaleah +Aziza +Azure +Baylie +Beyonce +Brea +Breeana +Brennan +Brighton +Brylie +Brynne +Brystol +Cadance +Caden +Carsyn +Cassia +Chantal +Charlette +Chiamaka +Chrisette +Clarisse +Collette +Consuelo +Daliah +Danitza +Danni +Dannia +Daphnee +Deena +Delainey +Desiray +Devina +Devynn +Dixie +Doreen +Echo +Edna +Eesha +Egypt +Eisley +Eleana +Eli +Eliyah +Ellia +Emelly +Emeri +Emmalie +Emylee +Ena +Eowyn +Eulalia +Evelia +Everley +Evy +Gaia +Gayane +Gladis +Glenda +Gracey +Gurneet +Hadassa +Haidyn +Halima +Harmonee +Harmoni +Havana +Heily +Hermione +Holley +Hosanna +Hudson +Ilona +Indiana +Ira +Issa +Izabela +Jacy +Jahaira +Jaidah +Jailynn +Jamiyah +Janai +Janey +Jaretzy +Jayna +Jaynie +Jazel +Jeanna +Jelissa +Jena +Jenavee +Jennalyn +Jewels +Jodie +Joelene +Joely +Johannah +Jorden +Journi +Julieth +Kaiden +Kaileah +Kaileigh +Kaiyah +Kalee +Kaliana +Kalli +Kameron +Karah +Karmen +Karter +Kaylanie +Kaysie +Keala +Keiana +Keyonna +Kiani +Kiarah +Kimberli +Kingsley +Kinslee +Kristiana +Kriti +Krystina +Kyndal +Laiba +Lanaya +Lariyah +Lasya +Leeann +Lexington +Leylah +Lezlie +Lilee +Lillee +Londynn +Loralei +Lotus +Lynnette +Maddisyn +Maddyn +Madina +Magdalene +Maja +Mali +Malin +Malorie +Marcia +Margo +Mariaguadalupe +Mayeli +Mayla +Mayrani +Mayumi +Mazzy +Meaghan +Meher +Meliah +Meliyah +Mercedez +Merlina +Mikala +Mildred +Mio +Mireille +Misha +Mitzi +Monroe +Morelia +Mylie +Naina +Nare +Natally +Naydelin +Nayomi +Neila +Nickole +Nicolle +Nilah +Nirvana +October +Odette +Oliviah +Olyvia +Passion +Quinlan +Rachell +Radhika +Raelene +Raena +Raniyah +Rebeka +Reena +Renesmee +Riona +Rivka +Rosalind +Rosalynn +Roshni +Ryder +Safa +Saiya +Samaira +Samaya +Sania +Sena +Shaina +Shanell +Shanti +Shaya +Shaylah +Sheily +Sheridan +Sheryl +Shia +Shruti +Silver +Siobhan +Sirena +Somaya +Sora +Sravya +Sumaya +Suraya +Talya +Taniya +Tasneem +Tayah +Terra +Tesla +Tierney +Tyana +Vaishnavi +Valeska +Vallery +Veda +Viana +Vibha +Viktoria +Waverly +Wilhelmina +Wynter +Xitllali +Yanelly +Yaquelin +Yazlin +Yeira +Yoanna +Zabrina +Zarai +Zarina +Zitlali +Aaryn +Abigael +Abilene +Adalee +Adamary +Addalyn +Addalynn +Adella +Adhya +Adora +Adria +Adrian +Adya +Aeris +Aidee +Aixa +Akayla +Alaia +Alegra +Alenna +Alexiah +Alexiz +Alexxa +Alexya +Aleya +Alitzel +Alizee +Alizey +Alliana +Alliyah +Alya +Alyana +Alysia +Amal +Amarissa +Amariyah +Amberlynn +Ameerah +Amreen +Anakaren +Analyssa +Aneli +Anelise +Angelisa +Anh +Anicia +Anja +Annalyn +Annalyse +Annemarie +Anylah +Aoife +Arelly +Ariani +Arianne +Arlet +Arlynn +Arshia +Ashli +Ashtyn +Audria +Auri +Avangeline +Belina +Bliss +Bridgett +Britton +Brodie +Brooklin +Bryleigh +Caidence +Cailee +California +Calli +Caren +Carter +Catelynn +Ceana +Chasity +Chloee +Chole +Christian +Clarity +Constanza +Coralee +Cosette +Cristy +Cruz +Dailyn +Dalyla +Danett +Danyelle +Daphnie +Darianna +Delailah +Delina +Delphine +Dena +Denae +Devany +Devi +Dhriti +Disha +Elianah +Elida +Eliot +Elizabet +Elyanna +Emili +Emilly +Emmalin +Emmarie +Emmersyn +Enedina +Enya +Esbeidy +Eshal +Evangelyn +Evanna +Evelyne +Eveny +Fanny +Finnley +Fiorella +Francisca +Genesee +Genesys +Gianelle +Giovana +Gizel +Gracee +Gracyn +Greidy +Grettel +Gypsy +Hadasa +Hala +Haleema +Halley +Harlynn +Hayle +Henley +Ileene +Imari +Indigo +Inez +Iniya +Iona +Irelyn +Isella +Ishani +Ishika +Isys +Itati +Itza +Itzia +Ivey +Ivie +Ivon +Jacinda +Jadah +Jaelah +Jaeleen +Jailene +Jakayla +Jaliah +Jalyn +Janayah +Jania +Jaritza +Jaslyne +Jayah +Jaydah +Jaydyn +Jayleene +Jaylie +Jazzmin +Jeimy +Jenni +Jeyla +Jocelynne +Jolette +Jonah +Jorja +Josey +Joycelyn +Juliann +Julieanna +Kaaliyah +Kaelin +Kaely +Kaileen +Kalyn +Kalyssa +Kamaya +Kamdyn +Kamia +Kandace +Kandice +Katana +Katty +Kealani +Kelis +Kelli +Kennedie +Keylee +Kherington +Khylee +Kiah +Kimani +Kiran +Kiyah +Kloie +Krislynn +Krystel +Kyleah +Kyli +Laasya +Larisa +Lavina +Laycee +Layna +Leilana +Leonna +Leonora +Lezly +Liahna +Lilibeth +Lindy +Ling +Lissandra +Lisseth +Liz +Lois +Lora +Lucciana +Lucine +Lula +Lya +Lyndsey +Macayla +Mackenzy +Madden +Madisen +Mahayla +Mahlia +Mailin +Maiyah +Maleiah +Manal +Maram +Mariely +Marly +Maryah +Maryelizabeth +Marylou +Mattea +Mattison +Mayela +Megha +Mei +Meira +Melaney +Meliza +Mellanie +Meztli +Miette +Mikah +Milagro +Mili +Miryam +Myleen +Nadeen +Nailani +Nalia +Nataley +Nathalee +Naydeen +Nayelie +Nayleen +Nelli +Nereida +Nerissa +Nethra +Nhi +Niara +Nidia +Niki +Nivea +Nohemi +Noora +Noya +Odessa +Perri +Persia +Portia +Pranavi +Radha +Rama +Ranya +Raychel +Reema +Reeya +Reign +Reva +Ripley +Risha +Rosita +Rowen +Royalty +Ryah +Ryanne +Sadee +Sakina +Saloni +Sapphire +Saryah +Satya +Scarleth +Seren +Shana +Shaniyah +Shantelle +Sharleen +Shasta +Shauna +Shaylin +Shirel +Shravya +Shreeya +Shylah +Simona +Simrat +Siona +Skylynn +Sneha +Stormy +Sukhmani +Suley +Susannah +Symone +Tabatha +Taleen +Tam +Taylin +Teanna +Tierra +TRUE +Tyanna +Tyra +Valencia +Valorie +Vannesa +Vannia +Vela +Vittoria +Wisdom +Xena +Xitlalic +Yaneth +Yarelie +Yeva +Ytzel +Yulia +Yuritzy +Zamora +Zaniya +Zaya +Zayna +Zaynah +Zenaida +Zoha +Zuleyma +Zuly +Zylah +Aalayah +Aaleah +Aalyiah +Aaniya +Aarohi +Adah +Adalena +Adylene +Aidan +Ailynn +Airianna +Aislin +Akane +Akemi +Alayjah +Alaynna +Alaysha +Aleigha +Alexah +Alexxis +Alexy +Alexza +Aleyah +Alinna +Aliyanna +Alizae +Alonna +Amana +Amariz +Amberlyn +Ameyalli +Amirrah +Ammi +Amyra +Anaia +Anaisha +Analucia +Anasofia +Andromeda +Angelee +Angelene +Angelyne +Angelynn +Anica +Anjelica +Annalea +Annasofia +Annasophia +Anvita +Anyah +Araya +Arayah +Arcelia +Archita +Arial +Arianie +Arie +Arieanna +Arihanna +Arionna +Arisa +Arisha +Artemis +Aryan +Ashanty +Atiana +Aubreanna +Aubryanna +Audreena +Aunika +Auria +Avarie +Aviyah +Avneet +Ayako +Aylah +Aylani +Aylee +Ayline +Aymee +Ayvah +Azelia +Azlynn +Barrett +Bayla +Bea +Becca +Bela +Bellina +Bennett +Betsaida +Bijou +Blaire +Blakely +Blayke +Brailyn +Breah +Briah +Briannah +Brihana +Brinlee +Brixton +Brynna +Bryssa +Cate +Caterina +Cathryn +Catrina +Chandler +Channing +Charleen +Chase +Chassidy +Clarabelle +Concepcion +Daelyn +Dafnee +Daina +Daisey +Dajah +Dallana +Damariz +Damya +Danity +Daniyah +Dannica +Dannielle +Darline +Darling +Dayani +Dayla +Dayleen +Deandra +Dejah +Delani +Delyla +Denia +Deonna +Deseray +Destinie +Devika +Devine +Dolly +Dorsa +Edyn +Elah +Electra +Eleny +Eleyna +Elizah +Elynn +Elysa +Elyza +Emanuela +Emarie +Embry +Emmah +Emy +Enalina +Eniyah +Evangaline +Evangelia +Evanie +Evelett +Evely +Evelynne +Everlee +Evita +Evolette +Ezri +Farida +Florencia +Flynn +Francis +Freyja +Gala +Ghazal +Gianella +Gracy +Greer +Gretta +Grissel +Guinevere +Gwenivere +Hadlee +Haide +Haidy +Haileigh +Hanan +Harini +Harlem +Harriet +Hazelle +Helene +Hermelinda +Heydi +Ilaria +Ilse +Inaaya +Indra +Inessa +Inika +Irena +Irina +Ishana +Itzelle +Iva +Jadelynn +Jadeyn +Jaeden +Jaelene +Jahira +Jahnavi +Jahniya +Jai +Jaidy +Jaimee +Jalene +Jalina +Jamilah +Jamya +Janaya +Janel +Janella +Jannet +Jasline +Jayanna +Jaylanie +Jaylinn +Jazline +Jazlynne +Jazzmine +Jeanelle +Jeannie +Jenica +Jennavecia +Jensen +Jeraldine +Jesica +Jessy +Jezelle +Jhoana +Jhoselyn +Jireh +Jisel +Jodi +Josilyn +Juliane +Julieana +Kaedence +Kaelee +Kaelie +Kaidence +Kalayah +Kaleena +Kalleigh +Kallista +Kalliyan +Kamara +Kameryn +Kana +Kandy +Kaori +Karalyn +Karelly +Karlyn +Karolyn +Kasia +Kassia +Kassidi +Katerine +Katiana +Katlyn +Kayah +Kaycie +Kaydee +Kayly +Keaira +Keaton +Keerthana +Keisha +Keisy +Kelani +Kellie +Kellyn +Keniya +Kennadi +Kenzy +Kera +Kezia +Khayla +Khloey +Khyla +Kierstyn +Kilee +Kinzie +Kirstin +Klara +Kolbie +Kori +Kristel +Krysta +Kyanna +Kyley +Kylia +Kyliee +Kymberly +Lake +Lanai +Lanyah +Larkin +Latrice +Layal +Leasia +Leidy +Leilene +Leina +Leiya +Lelani +Lenora +Lessly +Lexxie +Leydi +Leylanie +Leylany +Lian +Liat +Lielle +Liesl +Lilie +Lillianne +Lillith +Lillyanne +Lilu +Liora +Loraine +Louisa +Lua +Lunna +Luzmaria +Lyrik +Maaliyah +Maayan +Madalyne +Madelynne +Madisson +Maelie +Maelle +Maelynn +Maheen +Maisy +Makala +Makiah +Makinzie +Malerie +Malillany +Manasvi +Manuela +Maple +Maral +Marelin +Mariaelena +Maricella +Marifer +Marriah +Maryana +Marycruz +Maryn +Maylea +Mazie +Mea +Meah +Meg +Meghana +Meghna +Melodee +Merlin +Mery +Meyah +Meylin +Mianna +Micayla +Miia +Milee +Mileena +Miliani +Mily +Mirabella +Misty +Mitzy +Moana +Montana +Monzeratt +Morrigan +Muskan +Myka +Mykaela +Myleah +Mylene +Myriah +Nada +Naleah +Nareh +Nari +Nataliya +Natania +Nathania +Naveyah +Naylani +Neah +Neala +Neda +Nehemiah +Nella +Neya +Niharika +Niko +Nitika +Nitya +Noriah +Nubia +Nydia +Oona +Orly +Paetyn +Paradise +Paytyn +Perry +Polette +Prudence +Racheal +Rae +Raeann +Raelin +Rafaella +Raha +Rahma +Raleigh +Rana +Raneem +Rayann +Raylee +Raylena +Reegan +Remedy +Remington +Renae +Rhema +Rhys +Rian +Rida +Rikki +Rithika +Roberta +Rochel +Roma +Rori +Rosalee +Rosaura +Rosi +Rosio +Roxann +Roxi +Ruthie +Rya +Ryanna +Rylinn +Rylynn +Saba +Safia +Saida +Saina +Salome +Samar +Samarah +Sameera +Sammie +Saori +Saraiah +Sarena +Sascha +Sela +Sharlyn +Sharvi +Shawna +Shaye +Shayleen +Shaylynn +Sherly +Sherlyne +Sherlynn +Shya +Siddhi +Simra +Sina +Sindy +Sitara +Siyona +Skarlett +Skylyn +Sofi +Soha +Solay +Sommer +Sophiamarie +Srinika +Stevi +Surya +Swara +Sylvana +Syrah +Talise +Talula +Tarynn +Tasha +Tasia +Tatiyana +Tavia +Terry +Teya +Teyanna +Thais +Tianah +Tilda +Tilly +Timia +Tirzah +Torrey +Tracey +Tracie +Trinitee +Triniti +Truly +Twyla +Tylee +Ursula +Vada +Vana +Varsha +Verena +Xcaret +Xochil +Xymena +Yaira +Yakelin +Yamilex +Yaremi +Yari +Yaritzi +Yaslin +Yasmina +Yatziry +Yen +Yenifer +Yennifer +Yeraldin +Yeslin +Yizel +Yosselin +Ysabel +Yui +Yulie +Zaire +Zaryah +Zeba +Zeynep +Zophia +Zyanna +Sophia +Isabella +Emily +Mia +Emma +Olivia +Sofia +Abigail +Samantha +Natalie +Camila +Ava +Victoria +Chloe +Elizabeth +Ashley +Madison +Evelyn +Kimberly +Alyssa +Andrea +Hailey +Ella +Alexa +Zoe +Audrey +Genesis +Jocelyn +Allison +Brianna +Lily +Kaylee +Melanie +Leah +Valeria +Bella +Charlotte +Grace +Kayla +Maya +Brooklyn +Aubrey +Valerie +Aaliyah +Alexis +Scarlett +Giselle +Arianna +Katherine +Zoey +Ariana +Jasmine +Natalia +Avery +Angelina +Savannah +Vanessa +Nevaeh +Destiny +Layla +Sarah +Khloe +Hannah +Sophie +Addison +Amelia +Gianna +Stephanie +Alexandra +Delilah +Jade +Jessica +Gabriella +Ruby +Nicole +Maria +Liliana +Michelle +Riley +Valentina +Daisy +Jennifer +Taylor +Amy +Melissa +Stella +Eva +Makayla +Naomi +Julia +Daniela +Kylie +Ximena +Jacqueline +Violet +Faith +Isabel +Claire +Lillian +Angela +Katelyn +Sydney +Lauren +Mariah +Melody +Alondra +Leilani +Juliana +Madeline +Diana +Jayleen +Kaitlyn +Gabriela +Anna +Leslie +Izabella +Mila +Alina +Aliyah +Ellie +Peyton +Lucy +Penelope +Esmeralda +Elena +Sadie +Serenity +Brooke +Yaretzi +Luna +Miranda +Alice +Isabelle +Eliana +Adriana +Harper +Guadalupe +Bailey +Audrina +Fatima +Madelyn +Vivian +Sara +Mackenzie +Fernanda +Aria +Itzel +Ariel +Autumn +Trinity +Alejandra +Mya +Hazel +Julianna +Annabelle +Aubree +Jazmin +Rachel +Crystal +Julissa +Rebecca +Lucia +Rylee +Briana +Karen +Allyson +Paige +Aurora +Lilly +Sienna +Keira +Brielle +Juliet +London +Katie +Amanda +Catherine +Karla +Leila +Ana +Emely +Aileen +Megan +Jazmine +Alicia +Kennedy +Iris +Tiffany +Amaya +Chelsea +Molly +Angelique +Jaylene +Kate +Alexia +Lyla +Athena +Payton +Alison +Morgan +Elise +Jimena +Mariana +Janelle +Dulce +Brooklynn +Danielle +Daniella +Marissa +Bianca +Reese +Danna +Mary +Alana +Nayeli +Priscilla +Summer +April +Camille +Karina +Caroline +Kamila +Lola +Jordyn +Mikayla +Alessandra +Jayla +Amber +Gia +Juliette +Monica +Laila +Genevieve +Sabrina +Haley +Angelica +Joanna +Kendall +Quinn +Sierra +Alexandria +Clara +Jenna +Scarlet +Kailey +Estrella +Malia +Reagan +Veronica +Viviana +Celeste +Eden +Christina +Josephine +Paola +Eleanor +Gracie +Lila +Lizbeth +Melany +Piper +Cynthia +Gabrielle +Cali +Hayden +Ashlyn +Carolina +Kylee +Presley +Nataly +Emilia +Giuliana +Kelly +Kiara +Cecilia +Selena +Madeleine +Sasha +Anahi +Isla +Jasmin +Jordan +Joselyn +Denise +Kassandra +Marilyn +Cassandra +Sarai +Ivy +Nathalie +Fiona +Brenda +Dayana +Jazlyn +Arely +Evangeline +Lilah +Skylar +Vivienne +Angie +Lexi +Breanna +Cassidy +Dahlia +Erin +Haylee +Lydia +Nancy +Rose +Aleena +Bethany +Heidi +Laura +Marisol +Noemi +Tatiana +Clarissa +Elisa +Phoebe +Serena +Siena +Miley +Carmen +Mckenzie +Tessa +Gemma +Nadia +Perla +Cora +Makenzie +Marley +Yareli +Abby +Aniyah +Camilla +Carly +Eileen +Hope +Aylin +Wendy +Kaylie +Mikaela +Brynn +Kira +Angel +Adrianna +Ayleen +Daphne +Nina +Anabelle +Teresa +Jamie +Nora +Irene +Jillian +Julie +Delaney +Elle +Jaylah +Savanna +Emery +Jane +Katelynn +Gisselle +Harmony +Natasha +Anabella +Annie +Esther +Ivanna +Lesly +Ayla +Desiree +Lilliana +Makenna +Noelle +Brittany +Liana +Melina +Ruth +Eliza +Teagan +Helen +Janessa +Miah +Aimee +Alyson +Erika +Johanna +Olive +Belen +Adeline +Amelie +Sandra +Kali +Paulina +Arabella +Jayden +Reyna +Elliana +Jada +Charlie +Hayley +Marina +Miriam +Willow +Ashlynn +Dakota +Brisa +Gloria +Jessie +Anaya +Cheyenne +Lilyana +Linda +Annabella +Holly +Kendra +Marlene +Abril +Alaina +Arielle +Cindy +Cadence +Danica +Dylan +Francesca +Kara +Paisley +Talia +Lia +Tatum +Adalyn +Aleah +Kathryn +Kaydence +Caitlin +Callie +Jaqueline +Kenzie +Lea +Raquel +Camryn +Isis +Nathaly +Rosa +Catalina +Julieta +Margaret +Heaven +Londyn +Maggie +Maliyah +Shelby +Anya +Hanna +Iliana +Josie +Lexie +Maddison +Alissa +Dana +Darlene +Isabela +Kelsey +Maritza +Regina +Shayla +Kaia +Kyla +Kiana +Michaela +Alani +Caitlyn +Dalilah +Galilea +Harlow +Jazlynn +Monserrat +Paloma +America +Aubrie +Jenny +Lilian +Rylie +Sarahi +Alisson +Jaelyn +Lindsey +Allie +Angeline +Cristina +Heidy +Kaelyn +Lana +Hadley +Keyla +Lena +Luz +Macie +Madilyn +Rosalie +Yasmin +Aryanna +Kailyn +Mckenna +Renata +Sherlyn +Kaylin +Lyric +Maryjane +Valery +Georgia +Janet +June +Rosemary +Selah +Skye +Annika +Cameron +Erica +Joy +Alayna +Charlee +Esperanza +Jayda +Lucille +Nathalia +Yuliana +Belinda +Giana +Krystal +Maci +Alivia +Araceli +Arlene +Bryanna +Leyla +Luciana +Milagros +Rubi +Addyson +Christine +Judith +Kaya +Madelynn +Marie +Roselyn +Carla +Darla +Geraldine +Kayleen +Kyra +Maite +Mayra +Parker +Adelina +Aisha +Anastasia +Anika +Aracely +Elaina +Eloise +Mallory +Paris +Yaritza +Alma +Azul +Finley +Hana +Jocelynn +Lilianna +Yamilet +Amara +Claudia +Eve +Imani +Norah +Rebekah +Saanvi +Sage +Tiana +Xiomara +Yazmin +Zara +Emerson +Kiley +Leia +Maribel +Mina +Nyla +Paula +Violeta +Bridget +Dalia +Emilee +Kamryn +Kiera +Laylah +Patricia +Sonia +Vera +Yesenia +Arya +Elsa +Evelynn +Helena +Kristina +Roxanne +Simone +Susana +Vienna +Yamileth +Adalynn +Adele +Ainsley +Alanna +Caylee +Damaris +Elianna +Lizeth +Nia +Sloane +Yvette +Chanel +Courtney +Hailee +Jayde +Kailee +Kayleigh +Leilah +Yoselin +Adelyn +Amira +Annalise +Edith +Elsie +Gwendolyn +Lindsay +Maia +Cristal +Kathleen +Lina +Sharon +Soraya +Adilene +Amani +Donna +Elaine +Emilie +Emmy +Kayden +Kinley +Lilia +Lisa +Lucero +Samara +Zariah +Anabel +Briella +Cara +Danika +Leanna +Pamela +Stacy +Yarely +Amiyah +Celine +Charlize +Kamilah +Kassidy +Noa +Zoie +Aiyana +Aliana +Analia +Dania +Dayanna +Elissa +Frida +Jackeline +Journey +Kaylani +Keily +Mariam +Ryleigh +Annette +Evangelina +Farrah +Julianne +Keila +Larissa +Lylah +Ada +Aliya +Averie +Citlali +Elina +Elyse +Ingrid +Izel +Jaelynn +Jolie +Madalyn +Makena +Nylah +Pearl +Scarlette +Yadira +Areli +Barbara +Cambria +Ivana +Kristen +Lizette +Madisyn +Rihanna +Riya +Aviana +Jaslene +Milana +Montserrat +Myah +Natalee +Stephany +Abbigail +Ariella +Beatrice +Kailani +Karis +Monique +Roxanna +Skyler +Adelaide +Alia +Alize +Annabel +Casey +Davina +Kenia +Maleah +Rebeca +Renee +Rowan +Ryan +Salma +Sariah +Shiloh +Sylvia +Tania +Adelynn +Amalia +Carol +Charley +Jasleen +Jazleen +Jolene +Joyce +Lacey +Leilany +Macy +Roxana +Skyla +Tabitha +Vivianna +Yahaira +Alisa +Dayanara +Haylie +Heather +Kenya +Kourtney +Madilynn +Martha +Addisyn +Aniya +Colette +Diya +Jewel +Kaila +Lianna +Lorelei +Maliah +Raina +Sidney +Vida +Xochitl +Yaretzy +Baylee +Evelin +Giovanna +Jaylynn +Kaiya +Kalea +Liv +Margarita +Mira +Mireya +Myla +Nalani +Neveah +Reina +Selene +Shaila +Tanya +Zuri +Ailyn +Alena +Aliah +Carissa +Deborah +Giada +Gizelle +Jaylin +Karissa +Kaylah +Kinsley +Mariela +Milania +Saniyah +Shreya +Soleil +Suri +Susan +Virginia +Amari +Britney +Ciara +Isabell +Kaitlynn +Kathy +Madalynn +Matilda +Melinda +Mercedes +Milan +Yolanda +Adrienne +Alannah +Ariadne +Audriana +Elia +Ellen +Harley +Ivette +Jacquelyn +Jaslyn +Jaylee +Leona +Madyson +Marisa +Mayte +Silvia +Thalia +Xitlali +Aryana +Celia +Elisabeth +Kadence +Lara +Lilyanna +Magdalena +Maxine +Mika +Miracle +Nadine +Noor +Phoenix +Rylan +Whitney +Alayah +Braelyn +Frances +Jackie +Janice +Jazzlyn +Leela +Liberty +Lorena +Micaela +Naya +Raelynn +Rosie +Aanya +Abbey +Alianna +Avianna +Azalea +Bonnie +Destinee +Dianna +Estefania +Janae +Jazmyn +Kaliyah +Kyleigh +Leighton +Lesley +Nelly +Raegan +Selina +Sheila +Stacey +Aurelia +Ayanna +Bailee +Blanca +Ember +Emmalyn +Felicity +Jackelyn +Janeth +Jaycee +Jemma +Kairi +Kaitlin +Kaylyn +Kristel +Logan +Lupita +Mckayla +Nikki +Paulette +Shannon +Sheyla +Shyla +Sky +Abbie +Abbygail +Anne +Arianny +Cherish +Elin +Elyssa +Jazlene +Malaya +Nicolette +Priscila +Rosario +Sariyah +Adamaris +Ashlee +Carina +Emi +Esme +Kai +Lailah +Leticia +Marlee +Miya +Myra +Natalya +Rhea +Romina +Sana +Anais +Arlette +Ayana +Citlaly +Gwen +Itzayana +Jaylen +Jenesis +Joana +Jordynn +Kalia +Kaylen +Lillianna +Luisa +Lyra +Mariyah +Maryam +Princess +Savanah +Alyna +Amina +Aspen +Astrid +Calista +Candice +Denisse +Jaliyah +Joelle +Juniper +Kayley +Lidia +Lillie +Naima +Noelia +Nova +Sally +Star +Yara +Zaira +Zoya +Aditi +Amerie +Ananya +Beatriz +Demi +Diamond +Evalyn +Frankie +Gisele +Grecia +Haven +Joslyn +Katy +Keilani +Lorelai +Milani +Milena +Nichole +Rocio +Sahana +Samira +Shayna +Amayah +Analy +Arleth +Blake +Capri +Coral +Deanna +Fabiola +Izabelle +Jadyn +Johana +Justice +Kasey +Sarina +Sawyer +Shirley +Sofie +Tegan +Vianney +Ally +Anita +Chiara +Clare +Emelia +Everly +Jenelle +Jiselle +Justine +Karly +Kenley +Leanne +Mabel +Melia +Nikita +Rita +River +Violette +Alanah +Aliza +Alora +Amaris +Asha +Aubriana +Aubrianna +Avalon +Aya +Berenice +Betsy +Brenna +Candy +Carolyn +Estefani +Felicia +Hillary +Jocelin +Joselin +Kaily +Kaylynn +Kianna +Lauryn +Livia +Maylin +Noelani +Raelyn +Rory +Rosalinda +Ryann +Samaya +Stevie +Sunny +Tori +Aarna +Angelie +Anjali +Annalisa +Antonella +Avani +Brylee +Celina +Coraline +Dalila +Emmalee +Freya +Gissel +Gracelyn +Gwyneth +Ireland +Irie +Izabel +Karol +Kaycee +Kayle +Lilith +Magaly +Marely +Mariajose +Marlen +Melannie +Tara +Taryn +Vianey +Yasmine +Ailani +Alisha +Amiah +Anisa +Anissa +Annalee +Antonia +Aubrielle +Charlene +Diane +Dominique +Dorothy +Emme +Eunice +Evie +Farah +Flor +Graciela +Greta +Jaiden +Jaylyn +Jazelle +Jianna +Julisa +Kalani +Kenna +Laurel +Lillyana +Lourdes +Marianna +Nahla +Remy +Sloan +Temperance +Tina +Xitlaly +Yessenia +Yuna +Alysson +Amiya +Bridgette +Chelsey +Christy +Dallas +Devyn +Ericka +Jacklyn +Jaidyn +Janelly +Janely +Janiyah +Jeanette +Josslyn +Kaelynn +Karely +Litzy +Lynette +Mae +Magnolia +Marcela +Meadow +Mylah +Raylene +Rayne +Samiyah +Simran +Theresa +Yaneli +Zahra +Zaniyah +Adela +Aiyanna +Amya +Ani +Ann +Annabell +Audrianna +Averi +Bristol +Brynlee +Cielo +Ellery +Elliot +Emmie +Hennessy +Kamille +Katrina +Kirra +Kristine +Leena +Louisa +Maeve +Maren +Meghan +Rachael +Raya +Shyanne +Sinai +Tamara +Vania +Winter +Yulissa +Yvonne +Zion +Zooey +Abrianna +Ahtziri +Alaya +Aleeah +Amirah +Analise +Annelise +Ashly +Avah +Betty +Brissa +Bryn +Candace +Carlie +Charity +Corinne +Delia +Desirae +Genessis +Hadassah +Hailie +Jacquelin +Jiya +Jizelle +Karlee +Kayli +Laney +Mandy +Marian +Maricela +Mckinley +Miabella +Natali +Nola +Poppy +Saige +Sanaa +Saniya +Taliyah +Viridiana +Yoselyn +Abrielle +Adamari +Amie +Audrie +Belle +Berlin +Beverly +Breana +Bria +Bryana +Chantal +Dariana +Estela +Faye +Geneva +Ginger +Halle +Halo +Isha +Jenessa +Joanne +Jocelyne +Joseline +Karolina +Kennedi +Laylani +Lillyanna +Lisette +Melani +Micah +Milla +Mollie +Nayely +Paityn +Remi +Ria +Sandy +Savana +Shriya +Tess +Unique +Veda +Yuridia +Akira +Alexus +Ali +Annmarie +Ariah +Asia +Beatrix +Cecelia +Cheyanne +Clementine +Cristel +Devin +Estefany +Gina +Ivonne +Jaden +Jaya +Journee +Juana +Kailynn +Kaley +Kallie +Katia +Kierra +Kimora +Laniyah +Makaylah +Mayah +Nika +Nya +Quetzalli +Vivien +Yanely +Abigale +Aila +Alyanna +Anaiah +Anayeli +Ariyah +Arleen +Armani +Avril +Azucena +Brandy +Briseida +Campbell +Casandra +Charli +Emeli +Emersyn +Flora +Gema +Irma +Isadora +Isela +Issabella +Jaquelin +Josselyn +Kasandra +Katalina +Kinsey +Krista +Kristin +Lainey +Leilanie +Lorraine +Lucie +Makaila +Malaysia +Malina +Millie +Precious +Ramona +Sabina +Scout +Tenley +Tianna +Yajaira +Yasmeen +Adelle +Alaysia +Alysa +Amairany +Analeah +Aubriella +Cailyn +Cayla +Cienna +Daliah +Dani +Delylah +Destiney +Eleni +Elisha +Elly +Emmeline +Estella +Evalina +Evalynn +Giavanna +Gisela +Holland +Ilene +Jaclyn +Jaida +Karma +Katerina +Katya +Keren +Klarissa +Kora +Lillyann +Malani +Mara +Meredith +Mylee +Nailah +Nallely +Ofelia +Rachelle +Rayna +Rosalyn +Roslyn +Serene +Shaylee +Solange +Somaya +Sonya +Trisha +Tyler +Willa +Zainab +Adrina +Alessia +Anisha +Brigitte +Briseis +Brittney +Coco +Colbie +Desteny +Dior +Dulcemaria +Ema +Estelle +Evelina +Ever +Griselda +Guinevere +Gwenyth +Hallie +Inara +Ivory +Janell +Joey +Kalina +Kristal +Lexy +Lilyann +Lluvia +Macey +Maiya +Maliya +Marbella +Melania +Mercy +Nadya +Norma +Odalys +Priya +Promise +Rilynn +Rosalia +Saira +Saray +Shivani +Susanna +Symphony +Thaily +Yessica +Zariyah +Zayra +Abriana +Aida +Aliyana +Allisson +Amariah +Ameera +Anabell +Aniah +Carys +Cassie +Cathy +Cinthia +Citlalli +Cleo +Constance +Dafne +Dasha +Dina +Ellison +Emiko +Gladys +Harleen +Inaya +Janette +Jaymee +Juanita +Karime +Katarina +Lili +Lilyanne +Linnea +Lovely +Makaela +Marianne +Marlowe +Melodie +Monroe +Nellie +Payten +Penny +Quincy +Rania +Regan +Rhiannon +Roxy +Samiya +Serina +Susie +Sylvie +Theodora +Vanesa +Yazmine +Ysabella +Zaida +Zia +Ziva +Abagail +Abygail +Aislinn +Akemi +Aleyna +Allyssa +Anali +Ashtyn +Ayva +Brinley +Briseyda +Carrie +Charleigh +Connie +Debora +Dora +Doris +Ebony +Elora +Emerald +Genevie +Hellen +Hunter +Ines +Italia +Jana +Jenavieve +Jessalyn +Joleen +Julieanna +Kamari +Karlie +Karsyn +Kaylene +Kelsie +Kenadie +Kirsten +Kya +Lynn +Maile +Malak +Malayah +Mareli +Maryann +Mayleen +Moriah +Neha +Nikole +Rina +Robin +Sahara +Sakura +Sanai +Shania +Shylah +Tia +Tiara +Tracy +Vicky +Yarel +Aleeyah +Alexsandra +Alinah +Amia +Anayah +Annamarie +Anushka +Arden +Ariadna +Ariela +Audree +Ayesha +Bentley +Berlyn +Bernice +Billie +Bree +Cierra +Daira +Danya +Daria +Dayra +Drew +Emani +Emelie +Emmalynn +Ester +Everleigh +Fallon +Franchesca +Georgina +Gillian +Gisel +Giulianna +Ileana +Inez +Jailyn +Janiya +Kacie +Kahlan +Kailah +Kaleah +Kaleigh +Kaliah +Kamea +Kamilla +Karley +Keiry +Kendyl +Leeah +Liah +Liya +Louise +Margot +Marjorie +Marlie +Marlyn +Naia +Nayla +Pauline +Rhyan +Robyn +Rosalynn +Sanvi +Saylor +Selma +Sequoia +Seraphina +Sol +Tallulah +Tamia +Tatianna +Venus +Yatziri +Zadie +Zahara +Zaina +Zuleyka +Alba +Alexandrea +Amaia +Aminah +Amora +Anaiya +Analee +Annaliese +August +Avni +Bellarose +Blair +Brookelynn +Bryce +Cailin +Caydence +Daiana +Delanie +Devon +Dolores +Emmaline +Esabella +Genavieve +Gracelynn +Haydee +Illiana +Jacey +Jaslynn +Jayme +Jean +Jia +Jordin +Joslynn +Klara +Kylah +Lailani +Laisha +Leyna +Magali +Marcella +Mariella +Maryanne +Mayrin +Meera +Melisa +Milah +Mileidy +Misha +Miyah +Monika +Naimah +Nala +Noah +Nyomi +Pepper +Raven +Reece +Shea +Shira +Solana +Solara +Taya +Xochilt +Yamila +Yanet +Yulianna +Zarah +Adalina +Ahana +Akshara +Aleksandra +Alex +Alexi +Alyse +Alyvia +Amberly +Angeles +Araya +Ariya +Aviva +Bianka +Braelynn +Britany +Cailey +Calliope +Carter +Chantelle +Charis +Clover +Darleen +Darlyn +Darya +Elayna +Ellianna +Emerie +Estephanie +Evan +Evolet +Gretchen +Ixchel +Jaedyn +Janiah +Janie +Jaquelyn +Jazzlynn +Joceline +Josefina +Kaili +Keeley +Kendal +Kloe +Kyndall +Kyrie +Lennon +Lesli +Lori +Lucinda +Malena +Mari +Marisela +Minerva +Naomy +Nayomi +Nila +Nohemi +Nyah +Patience +Persephone +Petra +Pricilla +Prisha +Ryley +Sahasra +Sanjana +Saoirse +Sapphire +Sayuri +Seerat +Shay +Sherry +Siri +Starla +Stefanie +Sunshine +Tamar +Viktoria +Violetta +Yocelin +Yorley +Aaleyah +Aarya +Acacia +Adaline +Adrian +Aline +Allegra +Alyah +Alycia +Amairani +Amilia +Anamaria +Anette +Anneliese +Aolani +Ariyana +Ashleigh +Aubri +Audry +Aven +Azaria +Bayleigh +Betsabe +Breanne +Calli +Carlee +Cate +Christiana +Corina +Danae +Delila +Dezirae +Divya +Emelyn +Emiliana +Emmalina +Esha +Evette +Francine +Gissell +Haily +Harlie +Harnoor +Hilary +Iman +Ira +Iyanna +Jannah +Jayna +Jenifer +Jesse +Jezebel +Jordana +Jovanna +Judy +Kacey +Kaleia +Kalli +Kamiyah +Kamora +Katelin +Katheryn +Kaylan +Keyli +Kim +Kyara +Kyrah +Lasya +Lillyan +Malea +Mariel +Meah +Mellanie +Mildred +Mirabella +Mona +Naila +Nariah +Naveah +Neela +Noel +Rafaela +Rosemarie +Roxie +Ryder +Sade +Sailor +Samanta +Sayra +Seren +Stefany +Suzanna +Tanvi +Taraji +Toni +Viola +Wynter +Yael +Yana +Yocelyn +Yuri +Yuritzi +Zaynab +Aaniyah +Aaralyn +Adaya +Addie +Addilyn +Adyson +Aide +Ailin +Aime +Aleida +Alessa +Alexie +Alliyah +Alyana +Amalie +Ami +Amor +Analiah +Analicia +Analisa +Andie +Angelyn +Annalie +Antoinette +Anusha +Arissa +Ayelen +Azariah +Becky +Bibiana +Brianne +Brihanna +Briza +Caelyn +Caleigh +Carley +Carmela +Chevelle +Ciera +Cordelia +Daelyn +Dawn +Dayna +Deisy +Deja +Divina +Edie +Elinor +Finnley +Gretel +Grettel +Gurleen +Hollie +Honesty +Ileen +India +Iyana +Iyla +Izabell +Izzabella +Jael +Jaela +Jaymie +Jeanelle +Jennyfer +Jersey +Jessa +Kaely +Karisma +Karyme +Kavya +Kaylanie +Keziah +Kristy +Lael +Lani +Laya +Leann +Leeann +Leylani +Linette +Lisbeth +Liyah +Maisie +Mannat +Mariafernanda +Maribelle +Marielle +Marion +May +Maylee +Melanny +Mili +Misty +Monet +Nahomi +Nailea +Navya +Neriah +Neva +Olga +Rafaella +Rio +Rosalina +Ryanne +Sabine +Salina +Samiah +Saniah +Saydee +Sera +Serafina +Shanti +Siya +Skarlett +Sukhmani +Tali +Tatyana +Tehya +Vada +Wren +Yadhira +Yaneth +Zoee +Zyanya +Aadya +Abbigale +Abigayle +Adalia +Adara +Adina +Agnes +Ailene +Aliannah +Alynna +Alysha +Amarie +Ambar +Anai +Analeigh +Analiyah +Anela +Angelia +Anja +Annaleah +Annalia +Aolanis +Arianne +Arisbeth +Arwen +Audra +Austyn +Avarie +Ayari +Berkeley +Bernadette +Brandi +Brighton +Brithany +Camden +Cayden +Caylie +Chana +Charlette +Chelsy +Cheryl +Cloe +Consuelo +Divine +Ela +Ellia +Elodie +Emeline +Emmerson +Harmonie +Hayleigh +Heavenly +Ianna +Ida +Ilse +Indiana +Irelynn +Jackelin +Jailynn +Jaimie +Jaina +Jalynn +Jaycie +Jaylinn +Jazmyne +Jenevieve +Jennie +Jesslyn +Joann +Joselynn +Jubilee +Julyssa +Kaira +Kamyla +Kareena +Katlyn +Kaydee +Keely +Keilana +Kelsi +Khalia +Khloee +Kiersten +Kimber +Kiyomi +Krystel +Laniya +Leana +Libby +Lilli +Lois +Mackenna +Madelyne +Margaux +Marguerite +Marilynn +Marlo +Marwa +Maryah +Maycee +Melony +Melyssa +Metzli +Mikaella +Mileena +Mileydi +Mindy +Monzerrat +Naiya +Opal +Ophelia +Peighton +Portia +Raylynn +Reilly +Reya +Rilyn +Rosalind +Ryah +Samya +Sanaya +Sania +Sarahy +Seanna +Shanelle +Shyann +Sia +Siara +Skylee +Sonja +Sophya +Starr +Tahlia +Tala +Talya +Tammy +Taniyah +Tea +Terra +Thea +Vivianne +Yelena +Zaara +Zulema +Abilene +Adalie +Adi +Agatha +Ailany +Airam +Alanie +Alexys +Aleyah +Alyza +Amberlynn +Ameerah +Amyah +An +Anaiyah +Anamarie +Annalyse +Annemarie +Ari +Ariannah +Arina +Ariyanna +Arlet +Ashleen +Atziri +Aubry +Avelina +Aveline +Avigail +Avneet +Ayah +Baylie +Briar +Brook +Brynley +Carleigh +Carson +Cecily +Chandler +Chanelle +Chelsie +Cianna +Clarisa +Colleen +Daphney +Darina +Destini +Deysi +Dylann +Edna +Eesha +Ellena +Elvia +Emory +Eshal +Ezra +Francisca +Gisella +Guiliana +Gurnoor +Hermione +Hilda +Honey +Inaaya +Irelyn +Isa +Ishani +Itzia +Iveth +Jadelyn +Jalayah +Jalissa +Jannat +Jannelle +Jarely +Jasmyn +Jayne +Jelena +Jena +Jessenia +Jessy +Josette +Kaileen +Kalyn +Katharine +Kaytlin +Kensie +Khushi +Kori +Kyndal +Lakshmi +Lilianne +Lilibeth +Lillith +Liora +Liz +Loretta +Lucianna +Luella +Lulu +Madelin +Mai +Marin +Marleigh +Mattie +Maura +Meagan +Mehar +Meilani +Mihika +Milly +Mirabelle +Mykah +Neila +Nitya +Pricila +Randi +Rayleen +Rena +Rianna +Rosalba +Sahar +Samarah +Saya +Scarleth +Shae +Shayne +Sofi +Sofiya +Soledad +Suzie +Sydnee +Tayla +Taytum +Tinsley +Treasure +Trina +Tristan +Vaishnavi +Vanya +Veronika +Vianna +Yzabella +Aashna +Abella +Adamary +Adelaida +Adelia +Adella +Adrianne +Aeris +Ahtziry +Alizay +Alizon +Allana +Alli +Analiese +Anastacia +Angelika +Angely +Anvi +Anyssa +Aranza +Ariani +Ashanti +Ashely +Audryna +Aura +Avila +Ayden +Ayline +Azalia +Bellah +Bethel +Bianey +Bridgett +Briley +Brookelyn +Brynna +Caitlynn +Callia +Catelyn +Caylin +Celest +Christa +Christian +Claira +Collette +Cruz +Dagny +Danette +Danitza +Dara +Darcy +Darling +Delany +Dia +Dillon +Donya +Drea +Ekam +Elana +Elliette +Ellis +Elvira +Emelin +Emiley +Emmi +Everlee +Fatimah +Freyja +Galilee +Gennesis +Gigi +Giulia +Gladis +Glenda +Halia +Harmoni +Heily +Honor +Hosanna +Ilianna +Ione +Isamar +Italy +Jaileen +Jalyn +Jamila +Jamilah +Janai +Jaydah +Jazel +Jessika +Joie +Jolina +Jorja +Joselyne +Julietta +Jurnee +Kaela +Kaelin +Kaiyah +Kalaya +Kameron +Kamiah +Kamya +Karli +Karmen +Katherin +Keanna +Kiya +Laasya +Lanae +Leiah +Leighla +Lela +Lexington +Lilyan +Lissette +Liza +Lizet +Londynn +Maddie +Madisson +Magaby +Makyla +Malaika +Marelyn +Margo +Marla +Marleen +Maryn +Mercedez +Mily +Mischa +Myka +Myriam +Nahomy +Nayelli +Nazareth +Niamh +Niya +Novalee +Odalis +Oona +Orianna +Philippa +Pia +Prisila +Quetzali +Rae +Raine +Reet +Rivka +Romi +Roya +Rubie +Rut +Saleen +Samaria +Sammantha +Sandhya +Santana +Sephora +Shantel +Sharlene +Shelly +Siana +Stefani +Stormy +Sury +Suzanne +Taliah +Tanisha +Tristyn +Vibha +Wednesday +Xenia +Yamile +Yareni +Ysabel +Zayda +Zofia +Aadhya +Abriella +Addisen +Adison +Advika +Aiko +Aishani +Aixa +Aiza +Alanis +Alany +Alasia +Aleeya +Alegria +Aleina +Aleyda +Alliana +Alya +Amayrani +Anagha +Anahy +Anh +Ania +Aniston +Anjelica +Annalea +Annalicia +Annasophia +Anniyah +Ansley +Aoife +Arianah +Arianni +Aribella +Aries +Arriana +Arrianna +Ashton +Atziry +Aulani +Aundrea +Avelyn +Avonlea +Aylen +Bethanie +Bethanny +Blaire +Bobbie +Brea +Brianda +Britton +Cameryn +Carli +Carmel +Cataleya +Catarina +Celene +Charly +Christie +Dalyla +Danelly +Daniyah +Danyelle +Darby +Daylin +Debbie +Deena +Della +Delphine +Desiray +Devina +Dyana +Eisley +Elani +Eleana +Elisabet +Elli +Emalee +Erynn +Essence +Fanny +Francheska +Gaby +Gaia +Gisell +Gweneth +Harlee +Harlowe +Harriet +Hasini +Hudson +Ila +Imogen +Indie +Indigo +Iona +Isra +Jaelene +Jaila +Jailene +Jaimee +Jakayla +Jaleah +Jaleyah +Jalyssa +Janel +Jannet +Jaritza +Jazlyne +Jazlynne +Jazzlin +Jeanine +Jeannette +Jessi +Joan +Jodie +Jody +Jolee +Jolette +Jules +Justina +Justyce +Kaci +Kaeli +Kailan +Kailie +Kaiulani +Kalena +Kambria +Karah +Karoline +Kashvi +Katana +Katheryne +Kathia +Kattie +Kaydance +Kaylana +Keilah +Keilly +Keilyn +Kelis +Kelsy +Kensley +Kimberlyn +Kinzie +Kitana +Klaire +Kloey +Kyah +Larisa +Layah +Lezly +Liel +Lilit +Linh +Loralei +Loren +Lotus +Luzmaria +Madai +Maiah +Maily +Maira +Makinley +Malayna +Malorie +Manreet +Maribella +Maricruz +Marlin +Marlow +Martina +Mattea +Maylene +Medha +Mei +Mimi +Mirian +Mitzi +Naisha +Nishka +Odette +Oriana +Preslee +Prudence +Queenie +Quorra +Raelene +Rebeka +Reem +Reign +Rhianna +Rhylee +Ritika +Rosaline +Roselynn +Rosy +Rya +Rylin +Safa +Salem +Salome +Samaira +Savina +Shaina +Shaylah +Sianna +Silvana +Sirena +Skylah +Sonali +Sonora +Spencer +Sterling +Story +Suhana +Sumaya +Suzette +Talayah +Tayler +Taylin +Teresita +Thania +Valencia +Verenice +Vesper +Viana +Ximenna +Yanira +Yatzil +Yeimi +Yeraldin +Yoseline +Yui +Yulisa +Zaria +Zariya +Zaylee +Zinnia +Zoha +Zophia +Zuleika +Aahana +Aalayah +Aaliah +Abbagail +Adalee +Addelyn +Addysen +Adelyne +Adilynn +Aiden +Aislyn +Aja +Alaia +Alisia +Alizae +Alizah +Aly +Alysia +Amada +Ameya +Amisha +Andi +Andria +Angelyna +Annabeth +Annaleigh +Annalyn +Aralyn +Arlyn +Asiya +Audrinna +Avalyn +Avalynn +Ayannah +Aysha +Ayvah +Bellamy +Bennett +Berkley +Bertha +Beyonce +Brennan +Brienna +Brilynn +Brionna +Brooklin +Brooklynne +Caliana +Calie +Camellia +Camyla +Carmella +Carrington +Cecile +Cesia +Charisma +Chase +Chaya +Chloee +Chloey +Christal +Clarisse +Cooper +Crystel +Cydney +Dalya +Dalylah +Danett +Dasia +Dayami +Deetya +Delani +Dilynn +Dinah +Dunya +Elayne +Ellah +Elliotte +Ellyana +Elsy +Elva +Elyza +Emelly +Emersen +Emili +Emmanuelle +Emmery +Estrellita +Eternity +Evelynne +Evoleth +Fay +Fern +Gardenia +Georgiana +Getsemani +Gianni +Giovana +Hadasa +Hafsa +Hala +Haleigh +Helene +Idalia +Ilana +Ily +Imaan +Imelda +Indira +Inessa +Isobel +Ivee +Jaclynn +Jadie +Jaelah +Jahzara +Jalen +Janay +Janaya +Janeli +Janine +Jannette +Jayline +Jazell +Jazlin +Jazzmin +Jeanne +Jesenia +Jiana +Jodi +Josephina +Josselin +Jovie +Julieth +Kailea +Kalie +Kalynn +Kandy +Karizma +Kathrine +Keala +Keana +Keaton +Keegan +Kendyll +Kensi +Kenzy +Keona +Keylin +Khadija +Kimani +Kitzia +Kyleah +Kymani +Laelani +Laniah +Lavinia +Layan +Laylanie +Leonor +Leora +Lilyrose +Lizzet +Love +Lua +Luana +Luca +Lucienne +Lula +Lynda +Lyndsey +Macee +Madina +Maeva +Maisy +Maja +Makeyla +Makiyah +Maleena +Maleia +Mana +Manha +Maram +Mariaelena +Marika +Marleny +Mavis +Maybelline +Maylen +Meghana +Meleny +Micayla +Michele +Michell +Mikala +Mileah +Miliani +Minna +Mirella +Miyuki +Monserrath +Montana +Nadiya +Naiomi +Nalanie +Naliyah +Nara +Nare +Nareh +Nastassja +Nava +Nayelie +Nixie +Niyah +Oceana +Octavia +Osiris +Oviya +Parisa +Parneet +Pilar +Pippa +Priyanka +Pyper +Racquel +Raeanna +Raniyah +Rashel +Rayanna +Rene +Riana +Rilee +Ripley +Risha +Roberta +Romy +Rori +Rosalee +Roselia +Rowen +Ryanna +Rylinn +Saffron +Sama +Samia +Sammie +Saori +Saraya +Sarita +Saron +Sedona +Shaelyn +Shakira +Sheridan +Siona +Siyona +Skarlet +Sunnie +Susannah +Sydnie +Symone +Syra +Tanner +Teegan +Tenzin +Tonantzin +Tricia +Tristen +Truly +Tvisha +Uma +Vedika +Verena +Verona +Vianca +Vianka +Violett +Vita +Winnie +Xena +Xiclaly +Xyla +Yanelly +Yaquelin +Yetzali +Zaniah +Zaryah +Zayna +Zola +Zulay +Zully +Zuria +Zurisadai +Aaliya +Aalyah +Adabella +Addalyn +Adisyn +Adora +Adria +Agam +Aine +Aishwarya +Aislin +Aisling +Aislynn +Akayla +Akshita +Alea +Aleeza +Aleya +Alise +Alishba +Alitzel +Aliyanah +Alizee +Allyana +Allyna +Allysson +Alona +Alyssandra +Amarah +Amarissa +Amberlyn +Ameena +Ameenah +Amera +Ammy +Analea +Analena +Analiz +Anasofia +Anavictoria +Anely +Anessa +Angelic +Anjana +Annaly +Anneka +Anvita +Arabelle +Arelly +Arie +Aris +Arlen +Arlin +Aryah +Ashlin +Ashlynne +Ashna +Athziry +Avika +Avrie +Ayda +Aymee +Ayumi +Aziza +Azlyn +Bea +Becca +Berlynn +Betsaida +Betsey +Betzy +Blessing +Blythe +Bobbi +Bodhi +Brigette +Brynne +Caliyah +Camdyn +Camilah +Caris +Carmina +Carsyn +Cassia +Catelynn +Channing +Chantel +Chayse +Cherie +Christen +Ciana +Clair +Clarity +Claritza +Corrine +Cosette +Daila +Daliyah +Dannah +Darianna +Dayleen +Deasia +Deeksha +Delainey +Desire +Dianne +Disha +Dixie +Dream +Echo +Eknoor +Elexia +Elienai +Eliora +Elliott +Elyn +Elysa +Emaan +Emalyn +Eman +Emberly +Emeri +Emilyn +Emmylou +Enedina +Erinn +Eris +Estefanie +Etta +Evah +Evangelyn +Evelyne +Evy +Ezmeralda +Francis +Gauri +Genisis +Georgette +Geraldy +Gioia +Gissele +Gracen +Gracy +Gredmarie +Grethel +Haidee +Haidy +Hanalei +Harlyn +Harneet +Hattie +Havana +Heba +Hiba +Hollis +Irlanda +Israel +Issabela +Izabellah +Jacquelyne +Jadelynn +Jaime +Jalina +Jameson +Jamison +Janey +Janna +Janyah +Jareli +Jaretzy +Jasline +Jasnoor +Jayana +Jayleene +Jaylenn +Jayli +Jaylie +Jazzelle +Jenae +Jennessa +Jeraldine +Jezabel +Jocell +Joely +Josalyn +Joycelyn +Jude +Julina +Juna +Kacy +Kady +Kaelani +Kaidence +Kaidyn +Kailana +Kalei +Kalista +Kalyssa +Kamara +Karin +Katalyna +Katty +Kaylei +Kayloni +Kellie +Kensington +Kenzi +Khloey +Khylee +Kimberley +Kingsley +Kinslee +Kinzley +Krisha +Ksenia +Kynlee +Lacie +Lacy +Laelah +Lailany +Laina +Landry +Lariah +Layna +Leeana +Leeanna +Leiana +Leidy +Leiloni +Leyah +Leylah +Liani +Lielle +Lior +Lucca +Lucky +Lundyn +Lux +Luxe +Maddelyn +Madelaine +Maelee +Mahika +Maika +Maizie +Maizy +Makaylee +Makiah +Makiya +Maliha +Maneh +Maniyah +Mao +Mariadejesus +Mariaguadalupe +Maricarmen +Maricella +Marifer +Mariya +Marlena +Marta +Maryan +Marylin +Maycie +Mayson +Mazie +Megyn +Merari +Meyah +Meztli +Mikaila +Mikaylah +Millicent +Minnie +Mio +Miryam +Misa +Moira +Muskaan +Naileah +Naina +Naiyah +Nalia +Naudia +Navaeh +Navina +Nayana +Naydelin +Nevada +Nevaeha +Neve +Nhi +Nidhi +Nidia +Noemy +Noora +Nubia +Ocean +Odessa +Olyvia +Payson +Peyten +Polina +Pranavi +Prisilla +Quetzaly +Rain +Raylin +Rayven +Reanna +Reegan +Renae +Reva +Rian +Ricki +Riddhi +Ridhi +Risa +Rishika +Rochelle +Roma +Rosio +Royal +Rylynn +Sabella +Safiyah +Saina +Saiya +Sammi +Saphire +Sareena +Satya +Serinity +Shana +Sheena +Shelsy +Shia +Shoshana +Sicily +Simona +Simrat +Skylynn +Solei +Sora +Sorayah +Suhani +Suzy +Syrena +Tabatha +Taelyn +Talar +Taliya +Tesla +Thelma +Tiffani +Tiffanie +Tinley +Trish +Valorie +Venice +Vittoria +Wilhelmina +Yarelli +Yissel +Yohana +Ytzel +Yuki +Yumi +Yusra +Zaliyah +Zaniya +Zarina +Zayla +Zeena +Zelda +Zella +Zenaida +Zenia +Zipporah +Aalia +Aamina +Aariyah +Abigael +Adah +Adaleen +Adelie +Adena +Adhya +Adithi +Adyline +Ailey +Ailynn +Aira +Alahna +Aleana +Alecia +Aleenah +Aleigha +Alesha +Alexsa +Alexxa +Aliviah +Alley +Alonna +Alyce +Alyiah +Alyssah +Amaiya +Amal +Amauri +Amberlee +Amethyst +Amore +Amrit +Amyiah +Analeigha +Analie +Analucia +Anara +Anastasiya +Aneesa +Aneth +Angelene +Angeli +Angelin +Angelita +Angella +Anica +Aniela +Anisah +Anishka +Anjela +Anoushka +Anyeli +Anyelin +Anylah +Ara +Aralynn +Argelia +Arisha +Arlenne +Arlett +Arlyne +Artemis +Arushi +Aryssa +Ashby +Ashira +Ashli +Asma +Aubreigh +Aubreyana +Audri +Avaleigh +Avamarie +Avantika +Avary +Aylene +Aymar +Azari +Azriel +Baileigh +Baily +Bayley +Belicia +Beth +Betzaida +Bless +Bliss +Brazil +Briannah +Brie +Bryleigh +California +Calla +Caraline +Cayleigh +Chasity +Chesney +China +Christelle +Chyna +Ciena +Cintia +Colby +Collins +Constanza +Coralyn +Cyrene +Daizy +Daksha +Dannia +Danniela +Darlin +Dasani +Davinah +Dayla +December +Delayna +Delina +Demetria +Denali +Desirea +Destyni +Dhwani +Dominica +Dyani +Dyanna +Edyn +Eilene +Eleina +Eleny +Eleora +Eliah +Elida +Elika +Eliyah +Eloisa +Elvina +Elyana +Elyanna +Elysia +Elyzabeth +Emaly +Emberlynn +Emmah +Emmalie +Emmarie +Emmarose +Emmelyn +Emmersyn +Emmily +Emorie +Empress +Emry +Enalina +Eniyah +Erandy +Eryn +Estephany +Eulalia +Evanie +Evanna +Eveline +Eveny +Everlyn +Evolette +Ezri +Fancy +Farida +Fatema +Gabby +Gabryella +Giannah +Gimena +Gizel +Glory +Gohar +Graciella +Gracyn +Grayson +Gulianna +Hadassa +Haddie +Hadia +Halie +Halima +Hanah +Harmoney +Haruka +Harveen +Hayven +Henessy +Henna +Heydi +Iana +Idaly +Ilani +Ileanna +Ilyana +Imari +Inna +Irina +Isabellamarie +Isaura +Itzayanna +Iva +Iyanah +Izabela +Izamar +Izumi +Jadynn +Jaelin +Jahaira +Jakelyn +Jalaya +Jaliah +Jalisa +Jamilet +Jamya +Janayah +Janelli +Jania +January +Jasmyne +Jayah +Jaydee +Jaydy +Jaylani +Jaylean +Jaynie +Jeilyn +Jemima +Jennalyn +Jill +Jniyah +Joella +Johnnie +Jood +Jorley +Joscelyn +Joselle +Journi +Journie +Jozlyn +Judah +Juliann +Juliett +Kaelah +Kaeley +Kaiah +Kaiden +Kalayah +Kalleigh +Kamiya +Kandace +Karalyn +Kashish +Kay +Kaycie +Kaylina +Kayly +Kealani +Keiana +Keilany +Kennadie +Kennady +Kera +Kerrington +Ketzaly +Keyanna +Khaleesi +Khloie +Kiarra +Kierstyn +Kimaya +Kimberlee +Kimia +Kimiya +Kiyah +Klaryssa +Kloee +Kristell +Kristelle +Kristie +Kritika +Kyle +Kylia +Kymberly +Kymora +Kynslee +Laela +Laine +Lainie +Laksmi +Lalani +Lamya +Lanai +Lariyah +Lavina +Laylonie +Laynie +Laysha +Lee +Leea +Leianna +Leigha +Leighann +Lelani +Lenna +Lenora +Leonie +Leslee +Lexa +Lexii +Leylanie +Lezlie +Libni +Linsey +Lizbet +Lizett +Lucila +Lucina +Luka +Lya +Lynae +Macayla +Mackayla +Madden +Maddyson +Madysen +Maelyn +Magdalene +Mahi +Mailey +Mali +Malika +Manisha +Manuela +Maranda +Maraya +Mariaisabel +Mariely +Marilu +Marleni +Marli +Maryellen +Marylou +Marysol +Maryssa +Mason +Matea +Maureen +Maylani +Mayumi +Mckinzie +Meela +Meili +Meilyn +Mele +Melena +Meliah +Michaella +Mikah +Miliana +Minka +Miroslava +Mitzy +Moana +Momoka +Mursal +Mykayla +Myleah +Myleen +Mylie +Mysha +Naiara +Nairi +Nalah +Naomie +Nataliya +Natally +Natalynn +Navah +Navi +Naylani +Nayleen +Neda +Nehemiah +Neida +Nelli +Neomi +Nevah +Niah +Nicki +Nicol +Niharika +Nikayla +Nisha +Nizhoni +Noe +Noella +Noga +Noura +Nydia +October +Orla +Paetyn +Page +Paislee +Palmer +Paradise +Patty +Polly +Prabhleen +Praise +Quinley +Rachell +Railey +Raquelle +Ravleen +Rawan +Raygan +Rebekkah +Reed +Reema +Reena +Rei +Remedy +Remington +Ridhima +Rikki +Rileigh +Rima +Rinoa +Ronnie +Rosabella +Roselin +Roseline +Rosita +Rosslyn +Ryla +Ryleeann +Rylei +Ryli +Safiya +Sahori +Saida +Sakari +Sam +Samari +Sanaii +Sehaj +Semaj +Sevana +Shabnam +Shaelynn +Shalini +Shalyn +Shanell +Shani +Shaniya +Shauna +Shavon +Shawna +Shaya +Shaylin +Shealynn +Shekinah +Shianne +Shloka +Shraddha +Sidra +Sierrah +Sima +Simar +Simarpreet +Simra +Sindy +Sissi +Skyy +Smrithi +Sofiah +Solash +Sonakshi +Sophea +Stephania +Sunday +Surya +Sydni +Taelynn +Taj +Taleah +Tasha +Tasneem +Tatyanna +Taylynn +Teagen +Teya +Therese +Thu +Tierra +Tigerlily +Tommie +Tory +Tova +Tyanna +Tyla +Tyra +Ursula +Valarie +Vanity +Vannesa +Vannessa +Vela +Vina +Yahira +Yailin +Yamilett +Yanessa +Yarelie +Yarelly +Yaretzie +Yaritzel +Yatziry +Yeslin +Ysabelle +Yuli +Yuriana +Yuritza +Zahira +Zahraa +Zakiya +Zamira +Zamora +Zamya +Zari +Zaylie +Zeltzin +Zitlali +Zora +Zowie +Zuleidy +Zury +Zyanna +Zyla +Zyrah +Sophia +Isabella +Emma +Emily +Mia +Olivia +Sofia +Abigail +Samantha +Ava +Camila +Victoria +Natalie +Elizabeth +Chloe +Evelyn +Genesis +Ashley +Madison +Zoe +Charlotte +Hailey +Melanie +Audrey +Kimberly +Alexa +Alyssa +Allison +Aubrey +Zoey +Ella +Grace +Lily +Kaylee +Bella +Leah +Andrea +Aaliyah +Brianna +Hannah +Scarlett +Maya +Avery +Jocelyn +Brooklyn +Valeria +Kayla +Arianna +Jasmine +Ariana +Delilah +Amelia +Layla +Katherine +Vanessa +Alexis +Savannah +Valerie +Sophie +Natalia +Sarah +Gianna +Ruby +Amy +Giselle +Violet +Nicole +Alexandra +Addison +Angelina +Nevaeh +Mila +Naomi +Claire +Stella +Melissa +Jade +Eva +Maria +Riley +Kylie +Jessica +Khloe +Liliana +Destiny +Isabel +Faith +Daisy +Michelle +Gabriella +Aria +Ximena +Stephanie +Harper +Melody +Julia +Jennifer +Lillian +Valentina +Angela +Taylor +Makayla +Ellie +Leilani +Daniela +Alice +Serenity +Madeline +Sydney +Anna +Penelope +Juliana +Lauren +Jacqueline +Yaretzi +Elena +Aubree +Kaitlyn +Luna +Aliyah +Ariel +Katelyn +Alondra +Lucy +Alina +Madelyn +Jayleen +Bailey +Leslie +Mariah +Peyton +Eliana +Diana +Annabelle +Esmeralda +Isabelle +Mackenzie +Brooke +Athena +Paige +Adriana +Guadalupe +Kennedy +Izabella +Julianna +Vivian +Gabriela +Alexia +Autumn +Sadie +Sara +Hazel +Miranda +Alicia +Leila +Sienna +Brielle +Rachel +Aurora +Elise +Lilly +Iris +Rebecca +Allyson +Mya +Elisa +London +Trinity +Juliet +Reagan +Amber +Lucia +Molly +Itzel +Fatima +Jazmin +Ana +Megan +Aileen +Catherine +Fernanda +Julissa +Amaya +Kamila +Marilyn +Rylee +Amanda +Lyla +Nayeli +Chelsea +Keira +Katie +Alejandra +Ivy +Morgan +Angelique +Jordyn +Laila +Alessandra +Mariana +Kate +Alana +Brooklynn +Caroline +Briana +Eleanor +Summer +Audrina +Karina +Reese +Juliette +Skylar +Tiffany +Daniella +Eden +Cali +Perla +Priscilla +Sierra +Paisley +Bianca +Crystal +Josephine +Karla +Jaylene +Alison +Angelica +Fiona +Genevieve +Quinn +Cynthia +Payton +Rose +Camille +Clara +Jimena +Kendall +April +Karen +Joanna +Jazmine +Janelle +Jaylah +Mikayla +Sarai +Danielle +Jayla +Sabrina +Piper +Evangeline +Emely +Emilia +Isla +Celeste +Kylee +Kelly +Selena +Hayden +Lydia +Christina +Mary +Viviana +Madeleine +Camilla +Gia +Jazlyn +Marley +Phoebe +Presley +Vivienne +Adeline +Julie +Lola +Haley +Kailey +Melany +Cora +Angel +Danna +Giuliana +Cassandra +Marissa +Aylin +Cecilia +Malia +Jenna +Heidi +Dahlia +Gemma +Angie +Brenda +Anahi +Lila +Arabella +Kiara +Dayana +Alexandria +Cassidy +Annabella +Lizbeth +Nina +Gabrielle +Jordan +Olive +Siena +Brittany +Esther +Kira +Nora +Abby +Ashlyn +Carolina +Clarissa +Eliza +Jasmin +Veronica +Lilah +Nathalie +Shelby +Helen +Aleena +Emery +Monica +Paola +Kassandra +Lexi +Lia +Carmen +Dulce +Kenia +Serena +Denise +Gracie +Harmony +Noemi +Annie +Miley +Nadia +Lilliana +Yareli +Anabelle +Daphne +Hanna +Hope +Desiree +Arielle +Cataleya +Laura +Mckenzie +Catalina +Irene +Nataly +Willow +Arely +Ayleen +Eloise +Estrella +Makenzie +Bethany +Breanna +Jane +Aniyah +Ayla +Kaylie +Tatiana +Jamie +Sasha +Adrianna +Carly +Delaney +Galilea +Marisol +Miah +Noelle +Melina +Scarlet +Charlie +Jessie +Erin +Kenya +Alaina +Joselyn +Sherlyn +Kali +Margaret +Kara +Ruth +Allie +Alyson +Elle +Litzy +Belen +Erika +Natasha +Teresa +Tessa +Arya +Caitlyn +Adelyn +Anabella +Dakota +Elliana +Isis +Johanna +Miriam +Anaya +Anya +Danica +Maliyah +Amelie +Janessa +Heaven +Jayden +Kenzie +Lana +Madilyn +Regina +Rosalie +Hadley +Linda +Londyn +Nancy +Wendy +America +Emerson +Talia +Aimee +Angeline +Brynn +Georgia +Gloria +Hayley +June +Kyla +Mckenna +Mikaela +Teagan +Dana +Julieta +Cadence +Marina +Renata +Adele +Ashlynn +Eileen +Lilian +Callie +Cindy +Dylan +Gisselle +Ivanna +Lesly +Colette +Darlene +Kaydence +Norah +Abril +Adalynn +Anastasia +Christine +Jada +Kendra +Caitlin +Katelynn +Leia +Paloma +Parker +Raquel +Rylie +Adalyn +Aubrie +Dalilah +Helena +Myla +Reyna +Sandra +Alani +Brisa +Haylee +Kaia +Paula +Paulina +Adelaide +Aleah +Holly +Makenna +Rosa +Sage +Tatum +Kathryn +Maritza +Paris +Bridget +Josie +Kelsey +Lexie +Nia +Anika +Carla +Iliana +Isabela +Jillian +Joy +Annika +Harlow +Liana +Yasmin +Briella +Luz +Samara +Yesenia +Zara +Alayna +Annabel +Lea +Lilianna +Maddison +Marlene +Monserrat +Savanna +Elsie +Jaelyn +Kaylin +Lucille +Maggie +Nathaly +Nyla +Rosemary +Aryanna +Charlize +Francesca +Jenny +Sarahi +Chanel +Jaqueline +Rebekah +Addyson +Elaine +Giana +Kaelyn +Kayleen +Kiana +Raegan +Erica +Lena +Michaela +Selah +Tiana +Adelina +Camryn +Elyse +Jazlynn +Kyra +Leanna +Lilyana +Luciana +Skye +Bryanna +Finley +Haven +Patricia +Aliana +Alivia +Cheyenne +Darla +Judith +Kassidy +Kristina +Madelynn +Maryjane +Sloane +Adelynn +Celine +Keyla +Kristen +Pearl +Raelynn +Skyler +Sonia +Stacy +Yamileth +Dalia +Geraldine +Gwendolyn +Janet +Montserrat +Roselyn +Violeta +Alisson +Amiyah +Baylee +Elissa +Nylah +Sharon +Grecia +Hana +Makena +Simone +Cambria +Cristina +Jayda +Leyla +Claudia +Lisa +Lyric +Sariah +Elaina +Elsa +Maia +Shiloh +Alma +Belinda +Elianna +Emilee +Eve +Frida +Keily +Lina +Lylah +Marie +Thalia +Xochitl +Averie +Evie +Farrah +Jayde +Kinsley +Maite +Ryan +Shayla +Yaretzy +Journey +Kiley +Madalyn +Martha +Valery +Yuliana +Alanna +Aliya +Ally +Carissa +Emilie +Harley +Jaelynn +Kamilah +Kamryn +Maci +Ryleigh +Yaritza +Adilene +Azul +Coraline +Edith +Kailani +Laylah +Macie +Mina +Sylvia +Evelynn +Jaylin +Kinley +Larissa +Lindsey +Macy +Phoenix +Ada +Ailyn +Aiyana +Alissa +Amara +Britney +Esperanza +Itzayana +Kaliyah +Kathleen +Milagros +Roxanne +Vera +Aisha +Araceli +Ellen +Jaslene +Joyce +Kailyn +Kaya +Kayden +Lizeth +Scarlette +Vienna +Abbie +Alia +Aliah +Arlene +Charlee +Danika +Jacquelyn +Jazzlyn +Lindsay +Mariela +Rubi +Xiomara +Anabel +Aryana +Courtney +Emmalyn +Evangelina +Krystal +Matilda +Nathalia +Tania +Alena +Ariella +Azalea +Imani +Jocelynn +Jolie +Lorelei +Rebeca +Shaila +Yazmin +Areli +Kailee +Mariam +Maryam +Nova +Soleil +Yarely +Yvette +Anais +Annalise +Beatrice +Heidy +Kayleigh +Leilah +Lilia +Lucero +Mayra +Micaela +Selene +Ainsley +Analia +Braelyn +Cameron +Cristal +Dania +Donna +Jolene +Logan +Lupita +Milena +Rosie +Annette +Citlali +Clementine +Damaris +Gizelle +Izel +Milania +Tara +Yamilet +Zariah +Amira +Hailee +Ingrid +Jaylynn +Karissa +Lauryn +Lillyana +Maleah +Reina +River +Riya +Rowan +Astrid +Caylee +Kaila +Kaitlin +Kaitlynn +Kathy +Keila +Lara +Maribel +Maxine +Mayte +Milana +Mira +Noa +Salma +Skyla +Whitney +Xitlali +Abbey +Aniya +Aviana +Ember +Estefania +Julianne +Kadence +Kaylani +Keilani +Lianna +Melinda +Natalya +Pamela +Sunny +Yadira +Yoselin +Adela +Blake +Charley +Estella +Evelin +Frances +Janice +Kaiya +Kalea +Kiera +Myah +Saanvi +Sky +Abbygail +Amina +Anne +Carina +Fabiola +Giovanna +Jemma +Kataleya +Mallory +Mckayla +Monique +Renee +Susana +Aanya +Arianny +Audriana +Dayanna +Elina +Elisabeth +Livia +Madisyn +Malaya +Mercedes +Mika +Rihanna +Vida +Alannah +Ananya +Ivana +Jewel +Milan +Selina +Shannon +Adrienne +Amalia +Arlette +Bailee +Berenice +Carolyn +Coral +Elin +Emi +Eunice +Justice +Karis +Karol +Kaylah +Miracle +Soraya +Tanya +Aditi +Alayah +Aracely +Cara +Dariana +Frankie +Ivory +Kalani +Kalia +Kayley +Madilynn +Romina +Sawyer +Stephany +Tabitha +Tina +Barbara +Deborah +Emelia +Emmy +Giada +Jaylee +Kallie +Lillie +Marianna +Millie +Roxanna +Silvia +Sofie +Vivianna +Zooey +Amirah +Bonnie +Dalila +Destinee +Diya +Evalyn +Felicity +Graciela +Haylie +Jackeline +Kai +Kourtney +Lilyanna +Lizette +Maylin +Raylene +Stacey +Vianney +Willa +Zoie +Abbigail +Addisyn +Alisa +Amari +Ashlee +Aya +Casey +Denisse +Jaslyn +Jaylyn +Kairi +Leilany +Myra +Natalee +Yahaira +Yolanda +Yvonne +Zariyah +Amani +Calista +Celina +Ciara +Davina +Faye +Hadassah +Hillary +Juniper +Lesley +Leticia +Liberty +Liv +Lorena +Miya +Naya +Raina +Rocio +Amerie +Blanca +Cherish +Dorothy +Heather +Janiyah +Jordynn +Karly +Kaylen +Lacey +Leanne +Leona +Madalynn +Marisa +Paulette +Raelyn +Raven +Sarina +Suri +Yaneli +Zuri +Akira +Alisha +Aspen +Bridgette +Connie +Gwen +Hailie +Irie +Jasleen +Kaley +Katalina +Lailah +Leela +Leighton +Lilith +Lluvia +Margot +Mireya +Rhea +Zahra +Alanah +Alianna +Charlene +Dasha +Demi +Devyn +Emmalee +Jaylen +Joelle +Josselyn +Kaylynn +Luisa +Maeve +Meredith +Monroe +Penny +Sahana +Sally +Sandy +Shreya +Sidney +Sinai +Vanesa +Vianey +Virginia +Abrielle +Adrina +Anita +Annabell +Ayana +Betsy +Bristol +Candy +Carol +Celia +Cienna +Flor +Gisele +Jiselle +Kalina +Katrina +Lorelai +Magaly +Rita +Ryann +Wren +Yara +Amya +Anissa +Asha +Aubriella +Audrianna +Cielo +Dayanara +Estela +Harlee +Isabell +Jaycee +Kaelynn +Khaleesi +Laurel +Lynette +Lyra +Maliah +Miabella +Nelly +Noelani +Nyah +Rachael +Samira +Aliyana +Brynlee +Clare +Deanna +Diane +Elyssa +Esme +Halle +Jazleen +Jazmyn +Jenesis +Joslyn +Kasey +Kyleigh +Lidia +Mariajose +Mariyah +Marlee +Milah +Moriah +Nadine +Nala +Nalani +Neveah +Nola +Noor +Regan +Rosalinda +Tori +Zainab +Alize +Ann +Annelise +Arleth +Audree +Avianna +Beatriz +Blair +Brissa +Coco +Corinne +Elia +Everly +Gracelyn +Greta +Jana +Justine +Kianna +Malaysia +Paityn +Samiyah +Stevie +Susan +Tracy +Unique +Zaniyah +Ailani +Alyna +Amia +Amiah +Amiya +Analeah +Anayeli +Antonella +Ariyah +Bria +Elliot +Estelle +Flora +Italia +Izabelle +Janae +Janelly +Leena +Lexy +Magali +Margarita +Marlyn +Naima +Princess +Priscila +Rosario +Roxana +Saige +Sloan +Vivien +Winter +Zelda +Aiyanna +Amaris +Annalee +Ariah +Beverly +Cailyn +Capri +Citlalli +Dianna +Dominique +Drew +Eleni +Halo +Ireland +Isadora +Isela +Jaliyah +Jazelle +Joanne +Katia +Kora +Kristy +Lillianna +Mara +Marcela +Marlowe +Mayah +Rayna +Sheila +Shirley +Tenley +Abrianna +Alaya +Amberly +Anaiah +Anayah +Aubrielle +Aurelia +Avah +Ayanna +Ayva +Brigitte +Bryana +Cassie +Citlaly +Elly +Elodie +Ema +Emmaline +Farah +Freya +Jenelle +Marbella +Marely +May +Noelia +Pepper +Roxy +Sheyla +Taryn +Tia +Zaira +Adamari +Aida +Anjali +Ariadne +Ariya +Avani +Bree +Charli +Ellis +Emmalynn +Emmie +Gwyneth +Jazlene +Katy +Kaycee +Kaylene +Kaylyn +Keren +Lucinda +Malina +Mckinley +Meghan +Mercy +Nailah +Natali +Nicolette +Nikki +Saniya +Sonya +Tamara +Viola +Violette +Yulissa +Aarya +Adamaris +Aliza +Alysson +Amayah +Analise +Annamarie +Aubriana +Audrie +Berlin +Betty +Bryn +Cecelia +Cleo +Dallas +Delia +Emmeline +Estefany +Felicia +Gema +Geneva +Georgina +Jacquelin +Joana +Kailynn +Kamilla +Kenley +Kirra +Lillyanna +Linnea +Love +Lovely +Madyson +Malani +Meadow +Melisa +Milla +Miyah +Naomy +Pilar +Remy +Sabine +Samaya +Sana +Sylvie +Taliyah +Tegan +Vicky +Yuna +Aadhya +Aarna +Alaysia +Ali +Angeles +Ani +Antonia +Ashly +Aulani +Avalon +Brinley +Brittney +Cayla +Chiara +Desirae +Doris +Emme +Ivette +Ixchel +Izabel +Jackelyn +Jael +Jailyn +Johana +Julisa +Kaleah +Kamille +Karely +Karlee +Kayle +Kenna +Lainey +Laniyah +Magdalena +Marian +Melani +Micah +Naia +Olga +Poppy +Priya +Quetzalli +Rory +Tess +Xitlaly +Ysabella +Abygail +Aleeah +Amarie +Annalisa +Anneliese +Anushka +Azariah +Azucena +Billie +Brenna +Caelyn +Carlee +Chanelle +Cosette +Diamond +Gillian +Isha +Jackie +Janeth +Jaya +Jeanette +Jessa +Joslynn +Kaily +Kasandra +Kendal +Kinsey +Mandy +Maricela +Melia +Neriah +Precious +Ramona +Ria +Sabina +Sanvi +Savanah +Saylor +Shriya +Yasmine +Aaralyn +Ailin +Anali +Ari +Ariela +Arlet +Asia +Candice +Cattleya +Cheyanne +Dafne +Dani +Elisha +Elora +Emerald +Emersyn +Gladys +Gracelynn +Hallie +Harleen +Hattie +Honesty +Imogen +Irma +Jacklyn +Jadyn +Jaymie +Jazlin +Katerina +Kayli +Kim +Krista +Lisette +Louisa +Louise +Lourdes +Mae +Maisie +Makaylah +Malayah +Mari +Marlen +Mylah +Mylee +Nallely +Navya +Nya +Ophelia +Raya +Romy +Rosalyn +Rosemarie +Rylan +Sariyah +Serene +Shania +Shyla +Viridiana +Yuridia +Zahara +Abigale +Alyanna +Anabell +Aniah +Arden +Arleen +Arlyn +Aubri +Aubrianna +Beatrix +Belle +Briseida +Brylee +Calliope +Carlie +Chelsey +Christy +Cordelia +Delylah +Devon +Dora +Evolet +Giavanna +Griselda +Holland +Ilene +Inez +Jaidyn +Jaslynn +Jenessa +Jianna +Joseline +Josslyn +Journee +Jubilee +Karime +Karma +Kennedi +Laylani +Lilyann +Liya +Liyah +Mabel +Magnolia +Maliya +Marjorie +Marlie +Pia +Samarah +Saniyah +Serina +Shea +Sol +Star +Thea +Vania +Viktoria +Yatziri +Zaria +Aaleyah +Adalie +Addilyn +Alba +Alex +Alexi +Allisson +Alyah +Alynna +Avalyn +Blakely +Carley +Carrie +Cathy +Chaya +Devin +Ela +Emani +Evalynn +Gissel +Giulianna +Jaida +Jessenia +Jiya +Jocelyne +Josefina +Kensington +Kristin +Kristine +Kylah +Laisha +Leyna +Lucie +Luella +Macey +Malika +Maren +Maylen +Milani +Mindy +Misha +Nayely +Nayla +Nichole +Remi +Symphony +Toni +Yocelin +Aahana +Abella +Adelle +Alexus +Aleyah +Analy +Anisa +Armani +Avril +Briseyda +Cailey +Carter +Cecily +Christiana +Cianna +Clover +Daiana +Debora +Ellianna +Estefani +Evan +Evelina +Gisela +Hollie +Honor +Jaclyn +Janette +Jessalyn +Joselin +Kaleigh +Kaliah +Kirsten +Kiyomi +Laney +Maiya +Marcella +Mariella +Melania +Nellie +Pauline +Persephone +Preslee +Promise +Robin +Rosalind +Sanaa +Shayna +Shyanne +Sia +Susanna +Sydnee +Tallulah +Temperance +Terra +Trisha +Venus +Yael +Zia +Zoya +Abigayle +Adella +Airam +Alessia +Alyvia +Amariah +Ambar +Angely +Annaleah +Annaliese +Aolanis +Averi +Azaria +Berlyn +Briseis +Campbell +Carmella +Chantal +Charity +Chevelle +Constance +Delanie +Elliott +Elvira +Franchesca +Genessis +Gina +Hilda +Hunter +Jalayah +Jamilet +Janely +Janiya +Jenifer +Jude +Kacey +Kacie +Karsyn +Kavya +Keziah +Khushi +Kiersten +Kya +Leylani +Libby +Lili +Maisy +Marianne +Mayleen +Mollie +Nadya +Nahla +Nayelli +Neha +Nikita +Prisha +Rain +Rayleen +Reilly +Rena +Robyn +Roslyn +Ryder +Safa +Samya +Sanai +Serafina +Seraphina +Tanvi +Theresa +Vy +Yatziry +Yessenia +Yoselyn +Abilene +Adaline +Adley +Aiza +Allyssa +Ami +Analee +Anela +Annemarie +Arissa +Avalynn +Aven +Ayelen +Blythe +Breanne +Cayden +Cheryl +Darleen +Desteny +Ellery +Emeli +Emeline +Evalina +Ginger +Grayson +Gwenyth +Hellen +Hennessy +Hilary +Ila +Inara +Iyanna +Jenevieve +Jesslyn +Jizelle +Justina +Katya +Kyara +Kyndall +Lela +Lilyanne +Lisbeth +Maile +Maira +Malak +Maycee +Mayrin +Melannie +Melodie +Melony +Mona +Naveah +Patience +Rio +Roselynn +Sailor +Samanta +Samiya +Saoirse +Saray +Seven +Siri +Stefany +Theodora +Tianna +Tyler +Yarel +Zion +Agnes +Ahana +Aila +Aleenah +Aleyna +Alinah +Amrit +Analiyah +Angelyn +Ania +Annmarie +Araya +Audra +Briley +Brookelynn +Calla +Camden +Carmela +Cattaleya +Caydence +Colbie +Delany +Della +Divya +Eisley +Emiliana +Emmanuelle +Ericka +Etta +Ezra +Gaby +Gala +Ily +Irlanda +Isa +Ivonne +Izabell +Jacey +Jadelyn +Janiah +Janie +Jazzlynn +Joan +Joceline +Judy +Kaida +Karyme +Katarina +Kensley +Leann +Leeann +Liah +Lillia +Loren +Lorraine +Lotus +Lynn +Magaby +Marilynn +Marwa +Mattie +Milly +Monserrath +Nalah +Petra +Rayne +Reya +Rosalee +Rosalina +Saira +Sakura +Santana +Savina +Sequoia +Shanelle +Shanik +Skylee +Soledad +Somaya +Tala +Talya +Taya +Taytum +Treasure +Veda +Vianna +Yajaira +Yulianna +Zarah +Zoee +Zulema +Aadya +Acacia +Adalina +Aeris +Akemi +Alaia +Alanis +Aleyda +Alya +Alyana +Alysa +Alyse +Amairany +Angelia +Angelie +Ariannah +Ashtyn +Bellarose +Blessing +Brandy +Cailin +Camellia +Cierra +Cinthia +Collins +Darcy +Dior +Divine +Elayna +Emerie +Emiko +Emmarie +Essence +Fallon +Haily +Honey +Jaden +Jaela +Jahzara +Jaquelyn +Jatziry +Jayna +Jovie +Juana +Kailea +Kaili +Kamari +Kamea +Kamiyah +Karolina +Kelsie +Keyli +Kori +Leilanie +Lori +Lulu +Maricruz +Marisela +Marleen +Marlo +Maryah +Mavis +Maylee +Maylene +Medha +Meena +Nahomi +Nava +Nidhi +Nika +Opal +Rania +Rylynn +Sahara +Sapphire +Savana +Sharlyn +Skarlett +Sunshine +Winnie +Yana +Yasmeen +Yorley +Yuritzi +Zola +Abriana +Adalia +Adara +Adilyn +Adyson +Ahtziri +Aislinn +Akshara +Aline +Ameera +Amethyst +Amie +Aminah +Aneesa +Aubry +Ayvah +Braelynn +Breana +Briza +Caitlynn +Carys +Catelyn +Ciana +Daira +Danya +Darby +Daria +Darlyn +Dayra +Destiney +Ebony +Ekam +Elana +Elianah +Ellena +Ellison +Elvia +Elyana +Elyanna +Emelyn +Emmarose +Ester +Ever +Gisel +Henley +India +Ines +Ishani +Iyana +Jaiden +Jaime +Jazmyne +Jia +Joann +Joey +Jordin +Juno +Kalena +Karli +Katharine +Keeley +Keely +Keiry +Kelis +Khloee +Kierra +Kimber +Kimberley +Kimora +Klarissa +Lailani +Laniya +Layah +Mailyn +Maylani +Meilani +Misty +Myka +Nahomy +Nyomi +Paislee +Quincy +Rachelle +Rhiannon +Rina +Sahasra +Sayra +Scout +Shanti +Shira +Shivani +Siyona +Sophya +Tamia +Taraji +Tristyn +Uma +Wynter +Yanely +Yanilen +Yzabella +Abriella +Adalee +Adrian +Akari +Alessa +Alexsandra +Alora +Ameerah +Amilia +Amora +Analiese +Anamaria +Anevay +Anisha +Anja +Annalie +Aranza +Ashanti +Ashleigh +Atziri +Ayah +Ayesha +Beautiful +Betzy +Beyonce +Bridgett +Britany +Calie +Callista +Candace +Charis +Christa +Collette +Daliah +Dara +Darina +Dayna +Deisy +Delila +Dina +Elva +Elysia +Emalee +Emmerson +Eowyn +Everleigh +Florence +Gianella +Gigi +Gisell +Gretchen +Harnoor +Haydee +Heavenly +Ilana +Ileen +Iman +Ira +Iyla +Jalissa +Janine +Janney +Jocelynne +Johannah +Joselynn +Juanita +Juliett +Julietta +Julyssa +Kaela +Kaiah +Kalista +Kamyla +Karizma +Karmen +Katheryn +Kay +Keilly +Kitzia +Kyrie +Lacy +Leiah +Lesli +Leslye +Luca +Lynda +Magdalene +Maily +Makaela +Margaux +Marin +Marla +Mihika +Millicent +Nailea +Nikole +Niya +Noel +Nuvia +Ofelia +Olyvia +Pricila +Queenie +Rae +Reece +Remington +Rochelle +Rosalia +Ryley +Rylin +Sade +Sama +Sanjana +Saydee +Shaina +Shana +Sherry +Shyann +Simran +Taelynn +Tatianna +Tatyana +Taylin +Tiara +Ursula +Vaishnavi +Vanya +Vittoria +Yumi +Yuri +Zaniya +Zella +Ziva +Adamary +Addelyn +Addie +Addysen +Adina +Adylene +Aide +Aislynn +Aleen +Aleeya +Alinna +Alizay +Alona +Alonna +Amal +Amberlynn +Ammy +Anaiya +Anaiyah +Analicia +Andi +Annaleigh +Anoushka +Arianne +August +Aura +Avneet +Aylah +Aylene +Bayleigh +Baylie +Bellamarie +Bernadette +Betsabe +Bliss +Bobbi +Braylee +Brianne +Brihanna +Brynley +Camdyn +Cate +Caylin +Cherry +Chloee +Consuelo +Dianne +Divina +Dream +Elli +Elsy +Emalyn +Emilyn +Envy +Esha +Eternity +Everlee +Fatimah +Finnley +Gabby +Giulia +Guinevere +Ileana +Inaya +Indiana +Itzell +Itzia +Jailene +Jaimie +Jalynn +Jalyssa +Janell +Janna +Jaquelin +Jasmyne +Jaymee +Jean +Jocelin +Joie +Jolette +Jordana +Jovanna +Kaelani +Kailana +Kalei +Kalynn +Karley +Karlie +Katlyn +Keilana +Khadija +Khalia +Kristal +Kyndal +Lilyan +Lizet +Londynn +Madelaine +Madina +Mahi +Makaila +Malena +Marion +Marysol +Maybelline +Meagan +Mei +Mileena +Minerva +Mirella +Moira +Mykayla +Nashly +Nayomi +Nila +Norma +Odalys +Peighton +Pyper +Renesmee +Rhyan +Rian +Rianna +Rya +Saleen +Samaira +Sanaya +Sarahy +Sariya +Setareh +Shay +Shaylee +Shylah +Sicily +Stefanie +Susie +Sydnie +Tahlia +Taleah +Tayler +Tesla +Tinsley +Tonantzin +Vada +Valencia +Vanity +Varsha +Venice +Veronika +Vilma +Violetta +Vivianne +Yatzil +Zaya +Zayla +Zayra +Zena +Zora +Zury +Aashna +Adel +Adelia +Adilynn +Adrielle +Aiko +Ailey +Aleia +Aleida +Alyce +Alycia +Amairani +Amyah +Anahy +Anai +Analiah +Anastacia +Andie +Anette +Angelli +Annabeth +Annalia +Antoinette +Anusha +Anvi +Arabelle +Ariadna +Ariyana +Ariyanna +Arwen +Aryam +Asa +Avamarie +Ayden +Bentley +Berkeley +Bethel +Bianka +Brigette +Brooklynne +Bryce +Calia +Calli +Caylie +Chantelle +Charleigh +Chasity +Chyna +Claira +Daleyza +Danae +Danni +Dayami +Dayla +Daysi +Delani +Delphine +Deysi +Dezirae +Dia +Dixie +Easton +Eknoor +Elif +Eliyah +Ellee +Ellia +Elysse +Emmily +Esmee +Evette +Fayth +Francine +Gaia +Gennesis +Gissell +Goldie +Gurnoor +Heydi +Hudson +Ilianna +Ilyana +Imelda +Indigo +Isamar +Ishika +Issabella +Italy +Izzabella +Jadore +Janaya +Jannah +Jarely +Jaylean +Jayleene +Jayline +Jazlyne +Jeannette +Jesse +Jewels +Jezebel +Jolee +Joscelyn +Josephina +Josette +Jurnee +Kadyn +Kahlan +Kalayah +Kalliope +Kalyn +Kamya +Karoline +Kendyl +Kennia +Kingsley +Klaire +Kloe +Korra +Kristel +Lanaya +Laya +Leeah +Leyah +Lillyann +Lula +Lux +Mackenna +Madden +Maddie +Madisen +Maegan +Maiah +Maja +Maneh +Mareli +Marlena +Maryanne +Mattea +Mayumi +Meah +Meara +Melanny +Merari +Monet +Mylie +Naimah +Naisha +Naiya +Nariah +Nataliya +Naylah +Nilah +Niyah +Nubia +Odette +Pricilla +Queena +Rayah +Reena +Reign +Rhianna +Rilee +Rileigh +Rilynn +Rivka +Rosalynn +Salome +Samirah +Sammie +Saniah +Saori +Sarayah +Saya +Sedona +Seerat +Shae +Shayne +Silvana +Sivan +Siya +Skylynn +Skyy +Solange +Sutton +Suzette +Tammy +Taniyah +Tea +Tristan +Tuesday +Verenice +Vita +Xenia +Yessica +Yoana +Yohana +Yui +Yulisa +Zadie +Zaina +Zinnia +Zofia +Zuria +Zyanya +Aaliah +Aaliya +Aalyah +Aaradhya +Aashi +Abagail +Abbigale +Adanely +Adelaida +Adison +Akshaya +Alaiyah +Aleeyah +Aleiyah +Alexys +Aleya +Alitzel +Allegra +Alliyah +Allyana +Alyza +Amaia +Amaiya +An +Anaia +Analisa +Anamarie +Angeli +Angelika +Angelynn +Annalyn +Anniyah +Anvita +Ara +Arihanna +Ashleen +Asiya +Audrinna +Aundrea +Avonlea +Ayane +Ayme +Ayumi +Azaleah +Belladonna +Bernice +Bobbie +Brinkley +Brissia +Brook +Brynna +Carleigh +Carmelita +Catalaya +Channing +Charlette +Charlise +Chelsie +Constanza +Corina +Corrina +Darlah +Dawn +Deana +Delaila +Dhalia +Dianelly +Dulcemaria +Edie +Edna +Elika +Elliette +Ellyana +Emaan +Emoni +Emory +Eris +Esli +Evany +Fern +Francisca +Genevie +Genisis +Georgette +Georgiana +Getsemani +Glory +Gracey +Gracyn +Gurleen +Gyselle +Hadleigh +Harriet +Havana +Haya +Heily +Hermione +Ianna +Illiana +Ina +Iva +Jaide +Jaina +Jannat +Jatziri +Jayme +Jazlynne +Jeanelle +Jenavieve +Jennah +Jessi +Jessika +Jodi +Jody +Johnnie +Journie +Jules +Julieth +Kahlia +Kaira +Kalie +Kalli +Karah +Kareena +Kari +Karisma +Katelin +Katherin +Kaydee +Kealani +Kelli +Kensie +Kenzi +Khloie +Kimani +Kimiko +Krisha +Kristie +Lacie +Lavender +Lavinia +Leana +Legacy +Lennon +Leylah +Lilit +Linden +Linette +Lissette +Liyana +Lois +Lucca +Lynnette +Mackenzee +Madelyne +Makyla +Malaika +Maliha +Manha +Maribella +Mariel +Marielle +Martina +Maryann +Mason +Mattison +Mea +Meera +Meher +Melodee +Melonie +Mikaella +Mildred +Mimi +Minnie +Mischa +Monzerrat +Myriam +Nataley +Natania +Navaeh +Nayelie +Nazli +Neila +Neve +Neyla +Nithya +Noya +Odalis +Palmer +Pandora +Parisa +Payten +Polina +Pranavi +Preslie +Raeann +Raine +Rana +Raniyah +Rhylee +Richelle +Roberta +Rubie +Saffron +Saisha +Saiya +Salem +Salina +Samaria +Samiah +Sareen +Saskia +Satya +Semaj +Shanaya +Shanell +Sharlene +Sianna +Silver +Sirena +Sofi +Sonja +Sora +Srinidhi +Starla +Starr +Stefania +Story +Sumaya +Swara +Taelyn +Tanisha +Tierra +Tinley +Trina +Valentine +Vibha +Xena +Xitlalli +Xochilt +Yetzali +Yuki +Yulia +Yuritzy +Yuvia +Yvanna +Zamora +Zaynab +Zendaya +Zully +Adabella +Adalena +Adi +Advika +Ailen +Ailynn +Aina +Aira +Aishwarya +Aislyn +Alahna +Alanie +Alayla +Aleana +Aleeza +Aleksandra +Alexandrea +Alexxa +Alisia +Alitza +Aliyanna +Alizah +Alizee +Alyiah +Alysia +Alyssah +Amayrani +Amberlyn +Amisha +Anahit +Anahita +Analeigh +Anasofia +Andria +Anella +Angelee +Angelin +Annalicia +Annamaria +Anyssa +Aribella +Aries +Arina +Arriana +Ashton +Asma +Athziry +Audri +Austyn +Autum +Avrie +Aylen +Aysha +Becky +Bela +Bellamy +Bennett +Bertha +Beth +Blayke +Blossom +Bowie +Brandi +Brea +Briar +Brighton +Brithany +Brixton +Camelia +Caris +Carsyn +Cesia +Chandler +Chelsy +Chloie +Christie +Clarisa +Cyan +Dagny +Daijah +Dailyn +Daizy +Dakotah +Dalylah +Damara +Dannia +Dayani +Deja +Desire +Dinah +Dolores +Draya +Dylann +Edyn +Elani +Elanie +Eleana +Elexis +Elisabet +Elisia +Elizabella +Emelina +Emiyah +Emmah +Emmely +Emmi +Emonie +Ena +Erandi +Estrellita +Evanie +Evianna +Francheska +Francis +Frankee +Freyja +Galilee +Gardenia +Gladis +Grettel +Hadassa +Haddie +Haleigh +Halia +Hanah +Haneen +Harleigh +Harlyn +Harmonie +Hayleigh +Henrietta +Hiba +Hosanna +Ida +Ileene +Inessa +Irina +Ivanka +Jackelin +Jaclynn +Jaelene +Jalisa +Janett +Jaretzy +Jasmyn +Jayah +Jayana +Jaycie +Jaydah +Jaydee +Jaylinn +Jeanne +Jeimy +Jena +Jenni +Jeselle +Jesenia +Jolina +Joselyne +Juliann +Juliza +Kaavya +Kaedyn +Kaely +Kailah +Kailie +Kaiulani +Kalee +Kaleia +Kamara +Kambria +Kandy +Katalia +Katheryne +Kaydance +Kaylei +Kayloni +Keerat +Keeva +Kenadee +Kennya +Kenzy +Keylin +Khali +Khloey +Kimberlin +Kimi +Kiya +Klara +Kristiana +Krystel +Krystina +Kyah +Kyle +Laci +Laela +Lailany +Lakshmi +Lamya +Lani +Layna +Leeana +Leeanna +Leina +Leonie +Leonor +Leya +Lian +Lilibeth +Lillyan +Lindy +Liora +Lupe +Maha +Mailani +Malea +Maleia +Malin +Mana +Manreet +Marceline +Margo +Mariya +Marlow +Marylin +Mathilde +Mayla +Mazie +Mazzy +Melinna +Mercedez +Meryl +Metztli +Meztli +Mili +Mishka +Naevia +Naliyah +Nareh +Nariyah +Nashley +Nathania +Naydelin +Nazareth +Neva +Nimrat +Nishka +Noah +Noella +Nohely +Nohemi +Nyari +Oceana +Oona +Osiris +Pari +Prisila +Prudence +Queen +Radha +Raeanna +Raelene +Rashel +Raylee +Reanna +Rebeka +Reema +Reginae +Rithika +Roisin +Rosita +Rylei +Sabella +Sachi +Saphira +Saraya +Sayuri +Sejal +Selma +Sera +Shelly +Shoshana +Shreeya +Shylee +Simona +Simrat +Skylah +Sofiya +Solara +Spencer +Stacie +Sunday +Sylvana +Talitha +Teaghan +Tiffani +Tory +Tyanna +Verena +Verity +Waverly +Wednesday +Wilhelmina +Yanira +Yareth +Yashvi +Yeimi +Yocelyn +Zaida +Zamira +Zaniah +Zaylee +Zoraya +Zuleima +Aamiyah +Abigael +Adah +Adaliz +Addisen +Adiana +Adora +Ahtziry +Ailany +Ailee +Aily +Aime +Aisling +Aiva +Aja +Alania +Alara +Alea +Aleigha +Alenna +Alexah +Aliannah +Alise +Alizabeth +Althea +Alynah +Alysen +Alysha +Alyssandra +Amada +Amaiah +Amaira +Amaiyah +Amaryllis +Ameena +Amiliana +Amna +Amor +Anagha +Aneliz +Anessa +Angella +Angelyne +Anistyn +Annasophia +Anneke +Anshika +Ansley +Anvitha +Arantxa +Arantza +Arfa +Arianah +Arie +Arika +Arin +Arisa +Arisha +Arlett +Arlin +Artemis +Athziri +Atziry +Audreyana +Auria +Avalina +Avari +Avarie +Avary +Avia +Avika +Aviva +Avni +Avyanna +Ayari +Aylani +Azalia +Aziza +Azra +Baran +Batsheva +Beau +Benita +Betzabeth +Bibiana +Brianda +Britanny +Britton +Briyana +Bronwyn +Bryleigh +Brylie +Brynnley +Caeli +Caley +Calissa +Camilia +Carli +Catarina +Caterina +Chantel +Charisma +Charly +Chase +Chloey +Chrissy +Chrystal +Ciera +Cloe +Cloey +Coralyn +Corinna +Crimson +Cydney +Dalyla +Damya +Danitza +Daphnie +Darya +Dasia +Daylin +Deeksha +Denia +Donya +Dorian +Drea +Egypt +Eila +Eleanore +Eleyna +Elinor +Eliya +Ellington +Elysa +Elyzabeth +Emalie +Emarie +Emberlynn +Emeri +Emilly +Emmaleigh +Emmelyn +Emrie +Emry +Ensley +Eshal +Evanna +Ezmeralda +Fanny +Galia +Gauri +Genesee +Genesys +Giannah +Gisella +Gretel +Hafsa +Haile +Halen +Harini +Harlie +Hartley +Haruka +Idania +Indie +Indira +Iqra +Irelyn +Irelynn +Irena +Isaura +Isobel +Isra +Issa +Ivett +Izabela +Jacelyn +Jadah +Jadalyn +Jaeda +Jaedyn +Jaileen +Jaimee +Jaleah +Jalyn +Jamila +Jamilah +Jamileth +Jamison +Janai +Janey +Jayce +Jaylanie +Jaylenn +Jaylie +Jazel +Jeannie +Jelena +Jennavie +Jennica +Jennie +Jeslyn +Jezabel +Jiayi +Jimin +Joi +Joleen +Jolyn +Jovana +Kacy +Kaiden +Kailia +Kaleesi +Kaliya +Kallista +Kally +Kamaya +Kamdyn +Kamora +Kanna +Katana +Katara +Katharina +Kathya +Kattleya +Katty +Kaycie +Keegan +Keiko +Keilah +Keilyn +Keisy +Keona +Khaliyah +Kiani +Kiannah +Kimberlee +Kimberli +Kimberlyn +Kimia +Kinslee +Kloie +Kristyn +Krysten +Kymani +Kynlee +Kynzie +Laasya +Lamiyah +Lanae +Lanie +Laurie +Layloni +Lee +Leigha +Leni +Leora +Lexington +Lexus +Leylanie +Liannah +Lilli +Lilyanah +Lilybeth +Lissa +Lisset +Liz +Lizzette +Loretta +Lottie +Lovette +Luana +Lya +Lyriq +Mackayla +Madaline +Maddisyn +Madelynne +Madisson +Mahnoor +Mai +Maika +Mallorie +Manar +Mannat +Marelyn +Mariafernanda +Mariaguadalupe +Mariaisabel +Maribelle +Maricarmen +Maripaz +Marlin +Marly +Matea +Mathilda +Maura +Mayar +Mckenzee +Meili +Metzli +Mialani +Mikaylah +Miko +Milagro +Mirabelle +Myiah +Mykah +Naila +Naomie +Natallie +Nathali +Navi +Nayah +Nayleah +Nayleen +Naysa +Nazly +Neda +Neena +Nella +Nethra +Niah +Nicolle +Nimrit +Nirvana +Nisha +Nour +Novalee +Ocean +Odessa +Paizley +Paxton +Payden +Pippa +Portia +Priseis +Quincey +Quinlan +Ramiyah +Randi +Rayan +Rayana +Rayanna +Raylynn +Rayven +Reem +Reet +Renae +Reva +Rhema +Rikki +Rilyn +Riyan +Rosabella +Rosetta +Rosy +Rowen +Rozlynn +Ruhi +Saachi +Samayah +Samia +Samone +Sapphira +Saryah +Saydie +Scarleth +Seanna +Sela +Sephora +Seren +Shaelyn +Shaelynn +Shalom +Shanel +Sharleen +Siobhan +Skyelar +Skylie +Solana +Sona +Sophiah +Stefani +Stephania +Sugey +Suzanna +Suzy +Tabatha +Taleen +Tasneem +Tayla +Taylee +Taylen +Teah +Tehya +Thaily +Thora +Tova +Tristen +Una +Vallerie +Vayda +Violett +Yaiza +Yanelli +Yanelly +Yanet +Yarelie +Yareni +Yaritzi +Yasmina +Yelitza +Yisel +Yoseline +Yuhan +Yuritza +Yusra +Zabrina +Zahraa +Zaliyah +Zari +Zarina +Zayda +Zayna +Zenaida +Ziyah +Zurisadai +Zyla +Zyra +Aalayah +Aalyiah +Aamira +Aarika +Aayla +Acelynn +Adaly +Addalyn +Adelaine +Adelin +Adelyne +Adia +Adreena +Adrianne +Ailene +Aine +Aivy +Akayla +Alany +Alaura +Alecia +Alegra +Aleiah +Alesia +Aletheia +Alexcia +Alida +Aliviah +Alizon +Alli +Allina +Allisyn +Allysen +Allysson +Aly +Ameliya +Ameya +Amore +Amulya +Anabela +Anaid +Analea +Analie +Analis +Analucia +Analyse +Anapaula +Andraya +Anel +Anely +Aneya +Angelene +Angelic +Angelinne +Angelise +Angelita +Angelly +Anilah +Aniston +Annali +Annalyse +Annastasia +Anni +Anora +Anyiah +Anylah +Aoife +Aolani +Apollonia +Aralyn +Arianni +Ariannie +Ariany +Aris +Arisbeth +Arrianna +Aryah +Ashely +Ashlynne +Asiyah +Asmaa +Atalie +Aubreyana +Auriana +Avalee +Avelina +Avigail +Avree +Ayat +Azelia +Bea +Belicia +Bellah +Bentlee +Berlynn +Beryl +Bethanny +Bethlehem +Betsaida +Betzabe +Bracha +Braylyn +Breann +Brennan +Brilyn +Caila +Cailee +Caliana +Calina +Calise +Caliyah +Camiyah +Carmel +Carmina +Carrington +Cateleya +Catelynn +Cayleigh +Celene +Chance +Chanell +Charisse +Chassidy +Cherrish +Chole +Christabel +Ciel +Claribel +Clarice +Clarisse +Clarity +Colby +Colleen +Coralie +Corrine +Cristel +Cristy +Daelyn +Daelynn +Dahlila +Daliyah +Damariz +Darling +Debra +Deena +Delaynie +Desaray +Destinie +Devan +Devany +Devina +Devine +Devorah +Devynn +Deyanira +Dezi +Dezire +Divinity +Dua +Dyani +Dyanna +Echo +Edeline +Elayne +Eldana +Eleanna +Eleena +Eleny +Eleonora +Elicia +Elida +Elisheva +Elize +Ellah +Elleana +Elliotte +Ellora +Elsi +Emberly +Emelie +Emmersyn +Emmery +Eniyah +Esabella +Eshaal +Evalette +Evaline +Evangelyn +Evelyne +Evelynne +Ezabella +Galileah +Galina +Galya +Gentry +Gianni +Gimena +Glenda +Graysen +Hadiya +Haiden +Haidyn +Hala +Haleema +Halley +Hansika +Hareem +Harlem +Harlowe +Harmonee +Hasini +Hayzel +Hazelle +Heiley +Hiromi +Hiya +Holley +Hollyn +Idalia +Ilani +Ilany +Illyana +Ilona +Ilse +Imari +Ione +Issabela +Isyss +Itzae +Ivey +Iyanah +Izzy +Jadelynn +Jadzia +Jaelah +Jaidah +Jailynn +Jamiya +Janay +Janeli +Jannely +Jannet +Janneth +Jarelly +Jaselle +Jasmarie +Jaydin +Jazmeen +Jazzelle +Jazzy +Jeanine +Jeannine +Jenica +Jennyfer +Jeraldin +Jeraldine +Jessalynn +Jesselle +Jesslynn +Jett +Jezabelle +Jocabed +Joelene +Joella +Jolynn +Jovi +Kady +Kaidyn +Kailan +Kaileigh +Kalaya +Kalissa +Kaloni +Kamani +Kameron +Kamiah +Kandice +Kaniyah +Kapri +Karima +Karine +Karolyn +Kashvi +Kassie +Kataleah +Kathia +Kathlyn +Kaylanie +Kayliana +Kayly +Keani +Keanna +Keianna +Keilany +Kenleigh +Kensi +Kenzington +Keylee +Keyly +Kezia +Khadijah +Kiah +Kiki +Kindle +Kiran +Kitana +Kiyah +Kodi +Krysta +Kyleah +Kylei +Kylen +Kyli +Kyliee +Laiah +Laiba +Laine +Lareina +Lashae +Lasya +Layan +Laylanie +Laylonie +Leandra +Leelah +Leeya +Leeyah +Leidy +Leilanni +Lelani +Lenna +Lennox +Leonora +Levi +Leydi +Lezlie +Lianne +Lielle +Liesl +Lilee +Liliane +Lilla +Lillyanne +Lilyrose +Lincoln +Lior +Lisandra +Lisseth +Liza +Lizabeth +Lizbet +Lucianna +Luzmaria +Lyana +Lyndsey +Maahi +Maayan +Macee +Mackensie +Maddox +Madelin +Maelyn +Maelynn +Mahogany +Mailey +Makana +Makaylee +Makenzi +Maleigha +Mali +Malillany +Manaia +Mane +Maram +Marcelina +Markayla +Marleigh +Marleny +Marli +Maryan +Maryana +Maryn +Matilde +Maureen +Mehar +Melanee +Meleny +Meliah +Merida +Merry +Miaisabella +Miangel +Micaiah +Michal +Michele +Michell +Mikaila +Mikenzie +Minka +Mirai +Moksha +Montana +Muskaan +Mylin +Myrna +Nada +Nadiah +Nadiya +Nalayah +Nami +Nandini +Narely +Natally +Natalynn +Navreet +Nayana +Nazeli +Nhi +Nickole +Nicola +Niharika +Nikayla +Nilani +Ninel +Nisa +Nitya +Nomi +Octavia +Olina +Oliviah +Oralia +Paiton +Paitynn +Patty +Persia +Peytin +Quetzali +Rachell +Radhika +Raeleen +Rafaela +Rainie +Rawan +Rayanne +Raylin +Renatta +Rhylin +Riana +Rida +Riona +Risa +Risha +Rogue +Ronnie +Rori +Rosaly +Rosamaria +Rosanna +Rosella +Rosselyn +Rowyn +Roxie +Royce +Rozlyn +Rubee +Rut +Ryanne +Ryenn +Ryland +Saba +Sadiee +Safia +Safiya +Sahar +Samar +Samhita +Samika +Sammy +Sania +Sarena +Sarenity +Saria +Sayana +Sayler +Seleste +Sena +Sevana +Shai +Shani +Shanna +Shannen +Sheena +Sheily +Shilah +Siennah +Sincere +Siona +Sofiah +Solei +Sonali +Sophiamarie +Sorayah +Stephani +Stuti +Sujey +Sunnie +Susannah +Susy +Suzanne +Svetlana +Syriah +Taitum +Tali +Taliah +Tanner +Teegan +Teresita +Therese +Tigerlily +Tilly +Tirzah +Tiya +Tricia +Trish +Tula +Tyana +Umaiza +Unity +Uriah +Uriyah +Valarie +Vannessa +Vicktoria +Victory +Vidushi +Xiana +Ximenna +Yamilett +Yaneth +Yaretzie +Yazmine +Yelena +Yena +Yeraldin +Yu +Yuli +Yuliet +Yunuen +Yuriana +Yuval +Zahira +Zamantha +Zamiyah +Zariya +Zarya +Zaryah +Zeriah +Ziona +Zitlali +Zoha +Zuleika +Zuley +Zuleyka +Zuly +Zyana +Sophia +Isabella +Mia +Emma +Emily +Olivia +Sofia +Abigail +Camila +Samantha +Victoria +Ava +Natalie +Elizabeth +Charlotte +Chloe +Genesis +Audrey +Madison +Evelyn +Zoe +Melanie +Grace +Alexa +Scarlett +Ella +Avery +Zoey +Allison +Bella +Ashley +Aubrey +Nicole +Hannah +Leah +Lily +Ariana +Kimberly +Arianna +Penelope +Hailey +Aaliyah +Amelia +Layla +Andrea +Kaylee +Brooklyn +Alyssa +Aria +Delilah +Mila +Maya +Jocelyn +Kayla +Savannah +Brianna +Jasmine +Valerie +Valentina +Ruby +Violet +Ximena +Natalia +Harper +Alexis +Valeria +Amy +Sarah +Katherine +Sophie +Alexandra +Gianna +Jade +Addison +Nevaeh +Claire +Riley +Stella +Eva +Naomi +Isabel +Maria +Giselle +Kylie +Angela +Ellie +Jaylah +Lillian +Angelina +Melissa +Liliana +Jessica +Vanessa +Destiny +Madeline +Sadie +Melody +Gabriella +Luna +Michelle +Stephanie +Faith +Daisy +Alice +Lucy +Aubree +Alexia +Ariel +Leilani +Elena +Annabelle +Eliana +Anna +Julia +Makayla +Jennifer +Khloe +Alina +Jayleen +Madelyn +Taylor +Peyton +Mackenzie +Juliana +Serenity +Isabelle +Aliyah +Katelyn +Lauren +Yaretzi +Jacqueline +Sydney +Daniela +Kaitlyn +Vivian +Athena +Eleanor +Kendra +Mariah +Kennedy +Autumn +Ivy +Alondra +Bailey +Aurora +Hazel +Julianna +Leslie +Diana +Miranda +Leila +Elise +Paige +Quinn +Isla +Brielle +Cali +Esmeralda +Reagan +London +Marilyn +Lucia +Adriana +Rebecca +Catherine +Iris +Mya +Fatima +Juliet +Caroline +Alessandra +Izabella +Brooke +Lilly +Jayla +Julissa +Kamila +Sara +Skylar +Sienna +Lyla +Rachel +Kate +Keira +Emilia +Ana +Nora +Itzel +Gabriela +Rose +Juliette +Paisley +Morgan +Amaya +Trinity +Eden +Cora +Madeleine +Fiona +Guadalupe +Alicia +Audrina +Clara +Alana +Amber +Genevieve +Josephine +Kendall +Rylee +Molly +Mary +Katie +Allyson +Janelle +Chelsea +Jazmin +Lola +Daniella +Piper +Sabrina +Jaylene +Alison +Alejandra +Arabella +Aylin +Payton +Summer +Sierra +Mikayla +Amanda +Laila +April +Joanna +Melany +Tiffany +Jazmine +Kiara +Mariana +Viviana +Aileen +Jordyn +Olive +Brooklynn +Kelly +Karla +Celeste +Jimena +Presley +Camille +Elisa +Karina +Reese +Bianca +Camilla +Lila +Nayeli +Catalina +Charlie +Giuliana +Karen +Lydia +Marley +Dahlia +Emely +Emery +Vivienne +Adeline +Alexandria +Dulce +Briana +Priscilla +Angelica +Arya +Cecilia +Crystal +Danna +Malia +Megan +Annabella +Kylee +Lexi +Christina +Fernanda +Cassidy +Danielle +Julie +Cassandra +Eliza +Haley +Cataleya +Selena +Angelique +Ayla +Esther +Evangeline +Makenzie +Lilliana +Mckenzie +Serena +Phoebe +Annie +Marissa +Irene +Kaylie +Lilah +Abby +Jessie +Veronica +Willow +Gracie +Kira +Noemi +Gabrielle +Gia +Helen +Hope +Kali +Anastasia +Hanna +Sarai +Adelyn +Jazlyn +Sasha +Scarlet +Arielle +Kenzie +Angie +Kassandra +Noelle +Ruth +Anabelle +Ashlyn +Jenna +Jordan +Nathalie +Delaney +Desiree +Carolina +Cynthia +Angel +Monica +Amelie +Nina +Talia +Harmony +Heidi +Lana +Melina +Miley +Aniyah +Emerson +Erin +Perla +Rosalie +Anika +Carmen +Yareli +Anahi +Daphne +Georgia +Leia +Lia +Belen +Daleyza +Joselyn +Marina +Brittany +Eloise +Estrella +Brenda +Jasmin +Arely +Francesca +Gemma +Gloria +Tessa +Clarissa +Dayana +Norah +Tatiana +Anaya +Kailey +Miriam +Nataly +Paloma +Adalynn +Cindy +Lexie +Wendy +Dylan +Kelsey +Lizbeth +Paola +Margaret +Rosemary +Anabella +Everly +Heaven +Kyla +Parker +Brynn +Carly +Aimee +Aleena +Allie +Bethany +Briella +Eileen +Hayden +Joy +June +Paulina +Zara +Alani +Miah +Mikaela +Regina +Sage +Shelby +Finley +Galilea +Laura +Siena +Ayleen +Londyn +Aleah +Elle +Elliana +Hadley +Harlow +Maddison +Makenna +Marisol +Nadia +Sherlyn +Anya +Natasha +Jamie +Kara +Adelina +Haylee +Jane +Maggie +Adrianna +Alayna +Lena +Tatum +Alaina +Helena +Kathryn +Teagan +Celine +Danica +Mckenna +Savanna +Teresa +Cadence +Callie +Denise +Leyla +Alyson +Caitlyn +Elianna +Erika +Jenny +Jillian +Maliyah +America +Kaia +Reyna +Skyler +Adalyn +Breanna +Darlene +Johanna +Kaydence +Kenya +Mina +Adelaide +Belinda +Lea +Myla +Nancy +Annabel +Luciana +Rylie +Alma +Dakota +Ivanna +Lucille +Kiana +Nathaly +Nyla +Paris +Phoenix +Raquel +Rosa +Sarahi +Annalise +Charlee +Holly +Jada +Janessa +Kinsley +Lilyana +Selah +Elsie +Emilie +Josie +Michaela +Pearl +Ashlynn +Azalea +Chanel +Kaya +Lilian +Linda +Madelynn +Maia +Vera +Colette +Dalilah +Rosie +Yamileth +Harley +Hayley +Cheyenne +Gwendolyn +Isis +Kaelyn +Luz +Alivia +Brisa +Elaine +Gisselle +Kenia +Nia +Sandra +Aiyana +Alissa +Bryanna +Hana +Lyric +Sloane +Christine +Haven +Kayleen +Madilyn +Roselyn +Alanna +Anne +Annika +Caitlin +Darla +Katelynn +Liana +Elyse +Iliana +Isabela +Skye +Amiyah +Ariella +Cristina +Jayden +Joyce +Julieta +Laylah +Renata +Samara +Yaretzy +Adele +Beatrice +Lylah +Makena +Marlene +Monserrat +Sawyer +Sonia +Yesenia +Ada +Dana +Emmy +Jaelyn +Keyla +Rebekah +Roxanne +Aliana +Charlize +Eve +Kinley +Lilianna +Marie +Milana +Nylah +Paula +Raegan +Simone +Yasmin +Adilene +Esperanza +Frida +Abril +Elaina +Journey +Kamilah +Lacey +Mallory +Montserrat +Nathalia +Sharon +Aubrie +Averie +Jayda +Krystal +Lesly +Maryjane +Patricia +Adelynn +Amara +Angeline +Aryanna +Elsa +Danika +Evelynn +Janney +Nova +Yaritza +Ainsley +Alisson +Dalia +Juniper +Kailani +Kassidy +Leanna +Raelynn +Alia +Amira +Arlene +Jaelynn +Lindsay +Maribel +Noa +Ryan +Sariah +Ember +Kamryn +Lisa +Maritza +Scarlette +Shayla +Valery +Addyson +Jolene +Katalina +Kathleen +Kayleigh +Kiera +Maite +Milagros +Stacy +Thalia +Anabel +Araceli +Baylee +Cara +Elissa +Judith +Kaylin +Keila +Matilda +Bridget +Charley +Emilee +Erica +Itzayana +Kailee +Kyra +Lara +Mira +Violeta +Yuliana +Camryn +Elisabeth +Evie +Giana +Justice +Maci +Ailyn +Aisha +Aryana +Aurelia +Blake +Britney +Edith +Heidy +Rebeca +Rowan +Tara +Vienna +Yoselin +Casey +Emmalyn +Kailyn +Karissa +Kataleya +Kyleigh +Macie +Selene +Sky +Claudia +Jaylynn +Julianne +Keily +Lailah +Mayra +Milena +Natalee +Riya +Sofie +Tiana +Azul +Cambria +Elina +Jacquelyn +Carla +Gwen +Ivana +Jaylin +Kristen +Lina +Marianna +Naya +Ryleigh +Selina +Vida +Adela +Areli +Carolyn +Citlali +Deborah +Felicity +Jazlynn +Jolie +Kaliyah +Kaylah +Kristina +Macy +Mariam +Marjorie +Xiomara +Alena +Analia +Ciara +Imani +Leilah +Lindsey +Mabel +Milania +Myra +Aanya +Aliya +Amari +Ariah +Arianny +Dalila +Janet +Kairi +Maleah +Raelyn +Rubi +Saanvi +Salma +Shiloh +Skyla +Suri +Whitney +Carina +Dallas +Frances +Geraldine +Kalia +Liberty +Marlee +Monroe +Penny +Susan +Yadira +Barbara +Bonnie +Ellen +Evolet +Gracelyn +Jaqueline +Leilany +Lizeth +Logan +Lucero +Lupita +Martha +Mckayla +Miracle +Romina +Soraya +Zariah +Amina +Audriana +Coraline +Grecia +Hailee +Jayde +Liv +Margarita +Miabella +Renee +Shaila +Virginia +Abbey +Aliah +Amani +Ananya +Ariadne +Clementine +Courtney +Lorelei +Mercy +Sarina +Winter +Yamilet +Zoie +Zuri +Alayah +Ally +Caylee +Damaris +Dania +Elin +Estefania +Estella +Ivory +Izel +Kadence +Kiley +Maxine +Silvia +Stevie +Susana +Sylvia +Violette +Yvette +Zoya +Alisa +Annette +Astrid +Corinne +Evangelina +Farrah +Larissa +Luisa +Lynette +Madalynn +Madisyn +Maliah +Maryam +Pamela +Reina +Saige +Xochitl +Alanis +Arlette +Capri +Dariana +Denisse +Eiza +Emi +Faye +Gwyneth +Ingrid +Jaliyah +Kai +Kalea +Kaylani +Khaleesi +Marlowe +Mika +Raven +Yarely +Zaira +Aniya +Aracely +Demi +Diya +Flora +Jackeline +Jordynn +Kaila +Kayden +Leona +Lillie +Lillyana +Lilyanna +Madilynn +Miya +Nadine +Noor +River +Tania +Vivianna +Zahra +Abbygail +Alisha +Amayah +Anais +Beatriz +Carol +Coral +Dorothy +Giada +Heather +Jaycee +Jazzlyn +Kayley +Kourtney +Malaya +Mckinley +Milan +Myah +Sunny +Tabitha +Thea +Willa +Addisyn +Ani +Avalon +Ayana +Cristal +Donna +Elia +Greta +Janice +Kaitlin +Leela +Lilith +Maeve +Mariajose +Soleil +Tenley +Vianney +Wren +Aubriella +Aubrielle +Davina +Janeth +Jaylyn +Jeanette +Jocelynn +Kaleah +Lorena +Magdalena +Mariela +Millie +Mireya +Stephany +Tanya +Zuleyka +Abbie +Alize +Cameron +Celina +Clare +Dayanna +Esme +Graciela +Hallie +Jemma +Kaitlynn +Kathy +Katrina +Keilani +Leighton +Lilia +Mae +Neveah +Rhea +Taryn +Yaneli +Aadhya +Adrienne +Amalia +Anjali +Blanca +Candice +Carissa +Chiara +Diamond +Jana +Janae +Jenni +Jewel +Kalani +Kora +Lauryn +Madalyn +Mavis +Mercedes +Mylah +Nalani +Paulette +Rylan +Shannon +Sheila +Allisson +Averi +Ayanna +Bailee +Brynlee +Calista +Cielo +Destinee +Evalyn +Everleigh +Freya +Ines +Jazelle +Jazleen +Joelle +Judy +Kaley +Livia +Mara +Mayte +Melinda +Micaela +Neriah +Nichole +Poppy +Rayna +Regan +Sandy +Yulissa +Yvonne +Alianna +Anita +Asha +Aya +Berenice +Bristol +Coco +Eleni +Giovanna +Ireland +Jaclyn +Jazlene +Jenesis +Katarina +Kaylynn +Lesley +Lidia +Litzy +Madyson +Meera +Natalya +Sally +Xitlali +Yara +Yolanda +Abbigail +Abrianna +Aditi +Aspen +Ayva +Cienna +Dasha +Elly +Elodie +Hadassah +Izabel +Kaiya +Kalina +Kaylen +Lillianna +Margot +Marisa +Monique +Pepper +Remy +Rita +Rosalinda +Rosario +Vianey +Alannah +Annabell +Aviana +Beatrix +Bria +Brissa +Dani +Deanna +Emerie +Janiyah +Jasleen +Jaslene +Johana +Juana +Karly +Kenley +Kianna +Leticia +Lorelai +Malina +Marcela +Maylin +Nicolette +Nikki +Ramona +Saniyah +Shreya +Tina +Zaniyah +Abrielle +Adamaris +Amaris +Avianna +Bryn +Cassie +Celia +Delanie +Delia +Elyssa +Emersyn +Emmeline +Estelle +Fabiola +Irie +Jenicka +Karis +Kensington +Lourdes +Malaysia +Marely +Misha +Navya +Nelly +Nola +Roxana +Roxanna +Samira +Shirley +Taliyah +Tallulah +Venus +Vicky +Zia +Amia +Anabell +Ariela +Ariya +Ariyah +Aubriana +Aubrianna +Avani +Belle +Braelynn +Cattleya +Citlalli +Dominique +Eunice +Farah +Gisele +Gizelle +Hennessy +Hunter +Janely +Jaslyn +Jazmyn +Jiselle +Joslyn +Kallie +Louisa +Louise +Magnolia +Meadow +Milah +Naima +Sonya +Tamara +Yuna +Zariyah +Zelda +Zooey +Amerie +Anissa +Antonia +Anushka +Audree +Avah +Betty +Beverly +Brenna +Estefany +Gracelynn +Hailie +Haylie +Isabell +Jaylee +Jaylen +Jenelle +Journee +Kaylyn +Kennedi +Lennon +Linnea +Malayah +Marlen +Mollie +Natali +Nayla +Noelia +Raina +Rihanna +Rocio +Sahara +Saira +Sariyah +Shriya +Tess +Winnie +Yahaira +Adalina +Akira +Alanah +Alyna +Arleth +Aubri +Blair +Brinley +Calliope +Charlene +Cherish +Delila +Eisley +Emelia +India +Janette +Jiya +Justine +Karlee +Karolina +Kasey +Katia +Katy +Kaycee +Laurel +Leena +Leilanie +Precious +Robin +Rosalyn +Sahana +Seraphina +Shea +Shyla +Sidney +Siya +Sloan +Tegan +Theresa +Tracy +Unique +Veda +Viola +Yasmine +Zainab +Aaralyn +Alaya +Aleyna +Annalisa +Anneliese +Asia +Berlin +Brylee +Carter +Cecelia +Ellery +Evelina +Hillary +Italia +Izabelle +Joana +Joanne +Jubilee +Katerina +Lianna +Lillyanna +Lluvia +Magaly +Melia +Nahla +Noelani +Ophelia +Paityn +Quincy +Ria +Rory +Roxy +Saylor +Stacey +Zion +Aarya +Alba +Alessia +Amirah +Analiyah +Annelise +Audrianna +Doris +Drew +Ellianna +Ema +Emmalee +Emme +Frankie +Georgina +Heavenly +Hellen +Jackelyn +Janelly +Jianna +Joselin +Josselyn +Maisie +Marin +Mayah +Micah +Mona +Nikita +Nikole +Norma +Priscila +Priya +Rosemarie +Symphony +Tianna +Yazmin +Aislinn +Aleeah +Alysson +Amiah +Amie +Anaiah +Ann +Annalee +Ariyana +Audrie +Avril +Azucena +Cailyn +Cathy +Charli +Chelsey +Dafne +Delylah +Devyn +Dina +Ezra +Gina +Gwenyth +Imogen +Isha +Jenevieve +Kamilla +Kristine +Leanne +Lizette +Lorraine +Marlyn +Milla +Petra +Princess +Remi +Shanaya +Vanesa +Vivien +Aarna +Aliza +Anali +Analise +Antonella +Ashlee +Braelyn +Brandy +Briseis +Carrie +Citlaly +Cordelia +Dayanara +Emerald +Evalina +Genessis +Giavanna +Gurnoor +Hattie +Jurnee +Kamille +Karely +Lainey +Liah +Liya +Lovely +Lyra +Melodie +Milani +Naomy +Nika +Nyah +Persephone +Robyn +Ryann +Tamia +Tanvi +Vania +Xitlaly +Addilyn +Alessa +Alyanna +Anayeli +Andie +Arleen +Blakely +Blythe +Charis +Dior +Emiliana +Emmie +Henley +Holland +Ivonne +Jacklyn +Jocelyne +Kailynn +Klarissa +Lexy +Leyna +Lilyann +Maiya +Mandy +Mariyah +Meredith +Nala +Nya +Prisha +Raya +Raylene +Ryder +Samaya +Sinai +Spencer +Tia +Tyler +Ysabella +Yuri +Abigale +Abygail +Adaline +Adrina +Aida +Aiyanna +Amarie +Amberly +Amiya +Amya +Analeah +Analy +Arabelle +Avalyn +Ayvah +Bree +Briseida +Cailey +Cameryn +Carlee +Christiana +Clover +Debora +Deisy +Diane +Dora +Elisha +Ellison +Estela +Ester +Etta +Evalynn +Flor +Geneva +Gladys +Gretchen +Griselda +Ileana +Jackie +Janine +Josslyn +Juanita +Kaidence +Karsyn +Klara +Kristin +Kyara +Lili +Margaux +Maryann +Melania +Melanny +Merida +Moriah +Nailah +Rachael +Rain +Remington +Rosalee +Sana +Saniya +Serene +Shayna +Theodora +Trisha +Vanellope +Adamari +Agnes +Aleeyah +Alex +Althea +Alyvia +Anisa +Anisha +Arden +Bellarose +Billie +Bowie +Brittney +Carmela +Cleo +Cosette +Daleysa +Egypt +Elora +Emeli +Emory +Halle +Jadyn +Jaida +Jenessa +Kaelynn +Karlie +Kimora +Lotus +Lucinda +Macey +Mai +Makaila +Makaylah +Moira +Patience +Roselynn +Sahasra +Sakura +Sanai +Sequoia +Serafina +Sherry +Sheyla +Shira +Shyanne +Sutton +Yasmeen +Yatziri +Ziva +Aila +Akshara +Alaysia +Alitzel +Aliyana +Alora +Amora +Anaiyah +Angelie +Annmarie +Araya +Arissa +Aubry +Azariah +Brigitte +Bryana +Carmella +Cierra +Colbie +Daiana +Danae +Divina +Dolores +Elliott +Ellis +Evelin +Ever +Fallon +Halo +Harlee +Hartley +Honesty +Hosanna +Iman +Inara +Inez +Ivette +Jael +Jaya +Karma +Kelsie +Kiyomi +Kristy +Lailani +Londynn +Love +Mariel +Maylee +Melannie +Naila +Naiya +Neha +Nishka +Paislee +Rosy +Rubie +Rylynn +Safa +Sanvi +Saray +Simran +Skylee +Taytum +Tori +Veronika +Xenia +Yessenia +Zayra +Aaradhya +Alexxa +Amaia +Amairani +Amilia +Angelia +Ari +Arianne +Arwen +Aura +Ayah +Candy +Charity +Danya +Desirae +Dianna +Ebony +Estefani +Francisca +Freyja +Gaia +Gema +Giulianna +Isela +Ishani +Issabella +Jaedyn +Jaileen +Jaylani +Joey +Julietta +Kaela +Kaily +Karime +Kendyl +Keren +Kimber +Kirra +Kya +Kylah +Laney +Laniyah +Laylani +Lilyanne +Liyah +Liz +Luella +Maile +Marceline +Marilynn +Mayrin +Meghan +Melani +Melisa +Niyah +Nyomi +Reem +Rosalia +Sabina +Samaira +Samiyah +Sanaa +Santana +Sirena +Skarlett +Star +Tala +Tesla +Treasure +Viktoria +Wilhelmina +Yajaira +Yana +Zahara +Zaria +Aaliya +Abella +Adalia +Addelyn +Aeris +Ailani +Ailin +Aislynn +Akemi +Aleenah +Aleksandra +Alinah +Aline +Ambar +Amberlyn +Analee +Anayah +Angely +Betsy +Briseyda +Carlie +Cheyanne +Christy +Colleen +Dagny +Deja +Dixie +Elliot +Elvira +Elyana +Emani +Emmaline +Essence +Evan +Felicia +Florence +Gala +Gillian +Ginger +Havana +Hayleigh +Honey +Ilana +Ilene +Indigo +Jalissa +Janell +Janiah +Jaslynn +Julisa +Karol +Katharine +Kayli +Kenna +Kensley +Kim +Kimberley +Leana +Leylah +Leylani +Libby +Lucca +Lucianna +Lula +Lux +Lyanna +Magali +Maisy +Maren +Marianne +Mayleen +Mindy +Pauline +Pilar +Renesmee +Sailor +Sanjana +Saya +Scout +Shae +Susie +Tatianna +Tinsley +Zyanya +Adalie +Addilynn +Aislin +Aiza +Alysa +Aminah +Analisa +Angelyn +Annaliese +Annamarie +Anvita +Ariane +Arlyn +Armani +Ashanti +Ashly +Aulani +Avarie +Ayesha +Bridgette +Campbell +Candace +Carys +Cattaleya +Cecily +Chanelle +Charleigh +Destiney +Elinor +Elli +Elvia +Emalee +Emmi +Eshal +Eternity +Gabby +Georgiana +Giulia +Goldie +Haya +Hilary +Ilianna +Ira +Isadora +Jacey +Jaidyn +Jaquelyn +Jaydah +Jayme +Joleen +Joseline +Justyce +Kaleigh +Kalista +Kamya +Kamyla +Kasandra +Katheryn +Kaylene +Leann +Leiah +Lisette +Lynn +Maddie +Mailen +Mailyn +Malena +Maliya +Mannat +Mari +Maricela +Marleigh +Marlena +Martina +May +Mylee +Nahomi +Nayomi +Nellie +Niah +Nila +Noel +Pari +Queenie +Rayne +Reece +Rhylee +Rina +Ripley +Romy +Rosalind +Sabella +Sabine +Sama +Sanya +Sol +Stefany +Sunshine +Susanna +Sylvie +Tahlia +Talya +Temperance +Tiara +Toni +Yael +Yanet +Yarel +Ysabelle +Yulianna +Zendaya +Aarohi +Abriella +Adalee +Adelle +Ailee +Aishani +Alexi +Amairany +Ameera +Ameerah +Angeles +Anoushka +Ansley +Austyn +Aviva +Bayleigh +Bernadette +Caydence +Cayla +Chaya +Cheryl +Cianna +Collette +Connie +Corina +Danitza +Darcy +Dawn +Dia +Elayna +Ellena +Elysia +Emelie +Emelyn +Genevie +Gennesis +Grayson +Grettel +Guinevere +Harriet +Ila +Irelynn +Irma +Isa +Ixchel +Jaina +Janiya +Janna +Jean +Josefina +Joselyne +Jude +Juno +Kacey +Kaili +Kavya +Kenzi +Khadija +Kiersten +Kloe +Krista +Lavinia +Lucie +Madelin +Mahi +Maliha +Malillany +Marcella +Marion +Marlie +Melony +Merari +Meztli +Mihika +Miliana +Nariah +Navaeh +Nicky +Opal +Promise +Quetzalli +Reya +Rosalina +Sahar +Samia +Shaylee +Solana +Sonja +Stefanie +Swara +Taliah +Tanisha +Taylin +Teegan +Vianna +Yoselyn +Zaida +Zaina +Zaniya +Zayna +Aaleyah +Aaniyah +Abriana +Addalyn +Addie +Adyson +Aleigha +Alexus +Alizay +Alyana +Alyse +Amor +Ara +Ariadna +Arina +Ariyanna +Ashleen +Asiya +Atziri +Audra +Aveline +Aven +Avigail +Ayden +Azaleah +Briley +Brook +Bryleigh +Caelyn +Calla +Camdyn +Carson +Carsyn +Casandra +Catarina +Chana +Chandler +Channing +Chantal +Ciana +Daliah +Darby +Darina +Darlyn +Devon +Eliyah +Elva +Emaan +Emmah +Emmalynn +Everlee +Everley +Gracyn +Haily +Hollie +Honor +Ida +Ily +Inaya +Indiana +Irlanda +Italy +Iyana +Iyanna +Jailyn +Jaime +Jaleah +Jannat +Japji +Jaquelin +Jeannie +Jocelin +Joceline +Josephina +Kacie +Kaleia +Kalie +Kennia +Kensie +Keziah +Khadijah +Khloee +Kimberlee +Kinsey +Krisha +Lacie +Lamar +Lilyan +Lulu +Mackenna +Makaela +Malak +Malani +Marbella +Marian +Mariella +Marisela +Marlo +Marylin +Mattie +Mildred +Millicent +Minerva +Naia +Nicolle +Nidhi +Nirvana +Noella +Ocean +Odette +Orianna +Rachelle +Rayah +Reet +Rosabella +Rosalynn +Royal +Sapphire +Savana +Savina +Sharlyn +Shyann +Siyona +Sofi +Solange +Suzette +Taniya +Violetta +Yohana +Zayla +Zoee +Aadya +Aashi +Aashna +Abagail +Abigayle +Adilyn +Adina +Ahana +Ailene +Airam +Aleeya +Aleia +Aleida +Alexie +Alya +Alysha +Amethyst +Anaiya +Analicia +Anastacia +Anela +Angeli +Annalia +Annemarie +Aralyn +Ariani +Audrinna +Austin +Avalynn +Avelina +Avia +Azaria +Becky +Bennett +Bentley +Bernice +Brianne +Briar +Cailin +Caleigh +Carley +Cathleen +Chevelle +Christal +Claira +Cloe +Constanza +Daria +Dayami +Delany +Devin +Devina +Divya +Ela +Eliora +Eloisa +Emeline +Eowyn +Ericka +Franchesca +Gaby +Gisell +Gissel +Harleen +Indie +Isley +Jaeda +Jaimie +Jalayah +Jayna +Jenifer +Jessa +Jessi +Kaidyn +Kalena +Kaliah +Kamari +Karin +Karter +Katya +Kaylan +Kayle +Keely +Kendal +Keya +Keyli +Kierra +Kori +Kyndall +Kyrie +Lela +Leyah +Lian +Lillyann +Lissette +Loren +Lyrik +Madden +Madelyne +Maneh +Marguerite +Maribella +Maycee +Maylani +Medha +Meena +Meher +Michele +Michell +Mileena +Milly +Mirabelle +Miyah +Monserrath +Naydelin +Nhi +Noura +Novalee +Octavia +Ofelia +Preslee +Preslie +Queena +Rae +Rayanna +Rayleen +Rhiannon +Rian +Roslyn +Rowyn +Sade +Safia +Samiya +Saori +Savanah +Seanna +Shaelyn +Shaina +Shayne +Shivani +Sparrow +Sydnee +Trina +Vaishnavi +Valarie +Valencia +Venice +Vesper +Viridiana +Vivianne +Xena +Yeimi +Yessica +Yuridia +Zarah +Zaya +Zayda +Zaylee +Zenia +Aahana +Adhya +Adora +Adylene +Ahtziri +Aide +Aime +Akari +Alaia +Alayla +Alea +Aleeza +Aleyah +Aliannah +Alinna +Alyce +Amaiyah +Amayrani +Amery +Amyah +An +Anahit +Analiah +Annaly +Anyssa +Aralynn +Aranza +Arriana +Artemis +August +Ayelen +Aylah +Aylen +Azalia +Beau +Berkeley +Betsabe +Breanne +Britanny +Britany +Briza +Caitlynn +Caliana +Calirose +Callia +Carolynn +Cayden +Cinthia +Constance +Corrine +Daysha +Dejah +Della +Desteny +Echo +Edna +Eesha +Elanie +Elianah +Emberlynn +Emiko +Emmarose +Fatimah +Finnley +Gisel +Gurleen +Hafsa +Henrietta +Hermione +Hiba +Ileen +Ilyana +Inaaya +Irina +Isamar +Itzabella +Ivanka +Iyla +Jackelin +Jamileth +Janis +Jayleene +Jayline +Jaymie +Jazlin +Jessalyn +Joan +Johannah +Jovie +Kaelani +Kaira +Kaliana +Kari +Kathya +Keeley +Keiry +Keylen +Keylin +Khalia +Kinslee +Kitana +Kitty +Korra +Lael +Lavender +Layna +Leeanna +Leylanie +Liyana +Loretta +Luzmaria +Magdalene +Marlow +Marylou +Maylen +Mei +Mikaylah +Monika +Nalah +Nalia +Naliyah +Nandini +Nariyah +Naveen +Nayelli +Nazareth +Niamh +Nicol +Nitya +Noemy +Nour +Odalis +Odalys +Olga +Olyvia +Portia +Quetzaly +Raelene +Rania +Reanna +Rio +Rozlynn +Samirah +Sarahy +Serina +Shanice +Shay +Skarlet +Snow +Soledad +Somaya +Sophiarose +Sophya +Sora +Sterling +Sybil +Taya +Terra +Waverly +Yazmine +Yelitza +Yusra +Zoha +Zola +Zora +Zulema +Zuria +Zurisadai +Aalia +Aaliah +Aarushi +Acacia +Adah +Adalena +Adara +Adelia +Adya +Aiko +Aisling +Aitana +Aiva +Alethea +Alexandrea +Ali +Aliviah +Alliyah +Alycia +Amaiya +Amariah +Analeigh +Analucia +Anamaria +Andi +Anessa +Angelee +Ania +Anishka +Annabeth +Annaleigh +Annalynn +Anuhea +Aolani +Aolanis +Arella +Arianni +Aries +Arlet +Ashtyn +Audri +Audris +Auria +Avantika +Aylani +Azeneth +Batsheva +Bay +Beautiful +Bertha +Bethel +Beya +Blaire +Calissa +Cambrie +Camden +Camellia +Camilah +Candelaria +Carli +Caterina +Celena +Cesia +Charly +Chelsy +Cherry +Chyna +Ciena +Clarisa +Daizy +Darleen +Darya +Daylin +Dayna +Daysi +Debra +Deena +Delina +Devynn +Dianne +Dottie +Dulcemaria +Elana +Elani +Eleanora +Elicia +Elisheva +Eliyana +Elliette +Emalie +Emeri +Emmanuelle +Emmarie +Emmerson +Emonie +Eryn +Esha +Estephanie +Evelyne +Evy +Fiorella +Francine +Gayane +Giannah +Gretel +Haddie +Harnoor +Hera +Hudson +Imelda +Indira +Ishika +Isobel +Izzabella +Jacelyn +Jacquelin +Jaden +Jaela +Jamila +Janie +Jannah +Jarely +Jatziri +Jayani +Jazzlynn +Jeimy +Jelena +Jennah +Jennica +Jeslyn +Jessika +Jesslyn +Jia +Joscelyn +Journi +Julieth +Kaede +Kahlan +Kailea +Karisma +Karley +Karoline +Kashvi +Kassie +Kaydee +Keilah +Keilyn +Kenadee +Kensi +Khloey +Kimberlyn +Kimi +Kyrah +Lakshmi +Lani +Lark +Laurie +Laya +Layan +Laylonie +Leeann +Leigha +Lenna +Lenora +Leonie +Leora +Lilli +Lincoln +Liora +Liza +Lizzeth +Lois +Lori +Lynda +Mackayla +Maily +Maira +Mana +Maple +Marly +Marysol +Mason +Meghna +Mehar +Mellany +Milagro +Minnie +Myranda +Nahomy +Nallely +Nara +Naveah +Nereida +Neva +Nickole +Nisha +Nithya +Niya +Orly +Paradise +Phoenyx +Polina +Pricilla +Pyper +Raylynn +Reign +Rhianna +Rianna +Rileigh +Rivka +Roma +Ruhi +Rylin +Saiya +Samarah +Sanaya +Saoirse +Saphira +Sayler +Sayuri +Seerat +Selma +Shania +Sicily +Siobhan +Solara +Stacie +Sunnie +Symone +Taelyn +Tali +Tamar +Taraji +Tea +Uma +Vanity +Wynter +Ximenna +Xochilt +Yanelli +Yanelly +Yanely +Yazlin +Yuki +Zaniah +Zaynab +Abilene +Acelynn +Adabelle +Adalene +Adalynne +Adelene +Adella +Adelyne +Adi +Adrian +Advika +Aerabella +Aiden +Ailany +Aili +Akilah +Aleen +Alishba +Alitza +Aliyanna +Allegra +Allysson +Aly +Alyah +Alynna +Ami +Amiee +Ammy +Amna +Anasofia +Angelynn +Annaleah +Annalyn +Anniston +Anshika +Antoinette +Ariannah +Ariany +Aris +Asa +Audryna +Avary +Avaya +Avry +Azelia +Berlyn +Blessing +Blossom +Blue +Bobbi +Brea +Britton +Brixton +Caidence +Callista +Chanell +Chizaram +Cici +Clarisse +Daelyn +Daleyssa +Danely +Darling +Dayleen +Desire +Deysi +Divine +Divinity +Dominika +Dream +Edie +Edyn +Eleonora +Elisia +Elizaveta +Elliotte +Ellyana +Elyza +Emalyn +Emarie +Emberlyn +Emelin +Emiley +Emmalina +Emmaly +Ena +Enya +Esmee +Evah +Evey +Fay +Gisella +Gizzelle +Grayce +Hadleigh +Harlem +Harlie +Harmonie +Heydi +Inessa +Iva +Izabela +Jacky +Jadelyn +Jahzara +Jailynn +Janaya +Jannet +Jaretzi +Jaretzy +Jaydyn +Jaylinn +Jayne +Jaynee +Jeannette +Jenavieve +Jennie +Jeyla +Jill +Jireh +Jizelle +Jodie +Joely +Joie +Jordana +Justina +Kaci +Kaeli +Kaiden +Kailah +Kaileigh +Kaiyah +Kambria +Kamea +Kamiya +Kamora +Kandice +Karolyn +Katalea +Kaydance +Kealani +Kendyll +Kennedie +Keyra +Khali +Khamila +Khushi +Kimiko +Kingsley +Kiya +Klaire +Kristal +Kyler +Kynlee +Lacy +Lamaya +Lareina +Levi +Lexa +Lexington +Liel +Lilit +Lillee +Lilliann +Lisbeth +Lisset +Lucila +Luiza +Macyn +Madisen +Maelynn +Maiah +Maila +Maizy +Maleena +Maleia +Malika +Manreet +Marcy +Margo +Mariafernanda +Mariely +Marilu +Marta +Marwa +Maryah +Mattea +Mattison +Maura +Maylene +Mayumi +Meagan +Meleah +Mena +Mialani +Mica +Mimi +Minka +Miraya +Mirella +Mischa +Monae +Monet +Myka +Mylie +Naisha +Nayely +Naysa +Nella +Nessa +Niki +Nimrit +Novah +Novalie +Oona +Oriana +Philippa +Priyanka +Queen +Radha +Rafaela +Raquelle +Rayann +Rhyan +Rori +Rosio +Rozalyn +Ruhani +Ryah +Ryley +Rylinn +Sachi +Saleen +Samanta +Sammi +Samya +Sanika +Sarayu +Satya +Sayra +Scotland +Sejal +Sera +Seven +Sharlene +Shaya +Sheccid +Simona +Sincere +Sissi +Sitara +Skylah +Soliana +Starla +Stefani +Story +Suhana +Sujey +Sukhmani +Sunday +Suzie +Tanishka +Tanner +Tatyana +Tayla +Therese +Tristyn +Tyra +Vibha +Wednesday +Yaneth +Yanilen +Yanira +Yaritzi +Yatziry +Yocelin +Yocelyn +Yui +Yulisa +Yuritzi +Zaara +Zadie +Zamira +Zaylah +Zenaida +Zinnia +Abigael +Adaliz +Adalyne +Adelie +Adison +Adrianne +Ailey +Ailynn +Aislyn +Aixa +Aizah +Alabama +Alexiah +Aleya +Alix +Alizae +Allyssa +Alynah +Alysia +Amarah +Anagha +Analie +Anamarie +Aneya +Angelic +Aniah +Aniylah +Annaliyah +Annasophia +Anni +Anvi +Anvika +Aoife +Apollonia +Apple +Arayah +Arianah +Aribella +Arieanna +Ariely +Arpi +Arsema +Ashton +Asma +Auburn +Avalee +Aviella +Avneet +Avni +Avory +Avrie +Ayaka +Ayame +Aysha +Ayumi +Bani +Bea +Becca +Bellamy +Berkley +Berlynn +Betzy +Bianka +Blakeley +Brandi +Braylin +Brithany +Bryce +Brynley +Brynna +Caeli +Cailee +Calia +Calisi +Caliyah +Calli +Carleigh +Catalaya +Cataleah +Cedar +Chantel +Charisma +Chyanne +Ciel +Consuelo +Coralie +Daila +Dalylah +Daniyah +Dannika +Daphney +Dara +Defne +Delainey +Delsa +Demetria +Demiyah +Dennise +Devany +Dillon +Disha +Dorian +Dunya +Dyani +Dylann +Eila +Eldana +Eleanore +Elexa +Elisabet +Elizabella +Ellah +Ellee +Elsy +Emelina +Emilyn +Emmely +Emmery +Emry +Eriana +Eris +Esabella +Evany +Evoleth +Evony +Ezrah +Ezri +Flynn +Frieda +Galia +Gianella +Glory +Hadassa +Hadlee +Haleema +Hargun +Harini +Harlan +Harmoni +Hasini +Helene +Idalie +Iona +Ishana +Isra +Jailene +Jaimee +Jalaya +Jalisa +Jalyn +Jalynn +Jamilet +Janai +January +Jasnoor +Jatziry +Jayah +Jaylean +Jayliana +Jazmyne +Jazzmine +Jeanine +Jenavee +Jenica +Jenika +Jessenia +Jezabel +Jiana +Jocelynne +Jolin +Joline +Jordin +Josette +Joslynn +Joya +Jules +Julieann +Juliett +Julina +Julyssa +Juna +Kaely +Kahlia +Kalaya +Kalayah +Kaleena +Kalei +Kalyn +Kalynn +Kamiyah +Kandy +Karah +Karizma +Karleigh +Karyme +Katalaya +Kataleyah +Katherin +Kayra +Keagan +Keara +Keeva +Keiko +Keisha +Kellie +Kerry +Keylee +Khole +Kiarra +Kimbella +Kinzie +Kyle +Kyliee +Kynslee +Laela +Laisha +Lanae +Laniah +Laylanie +Layne +Lee +Leianna +Leidy +Lennox +Leonor +Lillith +Lillyanne +Linden +Lindy +Lora +Lorenza +Louella +Luana +Luca +Lynnette +Lyriq +Maahi +Madysen +Makenzi +Makiah +Makinley +Malana +Maleny +Malerie +Mali +Manha +Maribelle +Maricarmen +Maricruz +Maris +Mariya +Marla +Marlin +Marybelle +Marygrace +Maybelline +Mayeli +Mayla +Mea +Meah +Mele +Mellanie +Melrose +Memphis +Metztli +Micaiah +Miliani +Mirabella +Molli +Montana +Moxie +Myleah +Nadya +Nailea +Naiyah +Nalini +Nami +Nanami +Natalyn +Natania +Nava +Navy +Nayelie +Nayleen +Neela +Nena +Nilah +Nimrat +Nisa +Noah +Nohemi +Noora +Oceana +October +Odessa +Olina +Oliviah +Paizlee +Parneet +Philomena +Pixie +Polly +Quetzali +Rael +Raine +Raniyah +Rayven +Remedy +Rena +Reva +Rilynn +Roberta +Romi +Rooney +Roya +Ruthie +Rya +Ryanne +Saachi +Saba +Saina +Saisha +Salena +Salina +Samaria +Samreen +Saranya +Saydee +Sayla +Sehaj +Selin +Semaj +Sephora +Seylah +Shai +Shanelle +Sharanya +Shaylene +Shelly +Sherlin +Shruthi +Shruti +Sia +Simrit +Sona +Sonora +Starlett +Stellarose +Suhani +Sumaya +Susannah +Suzanne +Svetlana +Talula +Taniyah +Tinley +Tirzah +Tory +Tru +TRUE +Truly +Vaida +Vaughn +Veronique +Vianca +Vina +Wesley +Yasmina +Yatzil +Yeila +Yelena +Yena +Yulia +Yumi +Zarina +Zaryah +Zaynah +Zella +Zena +Zephyr +Zoelle +Zofia +Zoila +Zylah +Aalayah +Aamiyah +Aayla +Aberdeen +Adelin +Adelynne +Adilynn +Adira +Adria +Aerilyn +Aeva +Africa +Afton +Agatha +Ailish +Aine +Alahni +Alanie +Alaska +Alaysha +Aleksia +Alesana +Alida +Alin +Alizah +Alizea +Alizon +Allena +Alli +Allina +Allisyn +Alona +Alyssandra +Amal +Amberrose +Ameena +Amen +Amera +Amour +Amyiah +Anaeli +Anahy +Anai +Analayah +Analyssa +Andraya +Andromeda +Anevay +Angeleah +Angelene +Angelika +Angelita +Aniela +Aniston +Anja +Anjana +Anjolie +Annalea +Annalyse +Annamaria +Annarose +Anneke +Anniyah +Anthea +Aoi +Aradhya +Ariam +Arie +Ariell +Arihanna +Arin +Arisa +Arlett +Arlin +Arwyn +Aryiah +Ashira +Ashleigh +Ashlie +Ashna +Aster +Athalia +Atiana +Aubreanna +Aubriee +Avalina +Avaline +Avamarie +Averee +Aveyah +Avila +Avy +Avyanna +Ayat +Ayda +Ayline +Ayra +Azara +Baileigh +Basil +Beckett +Belem +Belladonna +Bettina +Beyonce +Birdie +Bliss +Bo +Braedyn +Briahna +Bridgett +Brighton +Brigid +Brilynn +Brina +Brizeyda +Brookelyn +Brooklynne +Brynleigh +Calie +California +Calleigh +Cami +Caprice +Cari +Caris +Carlota +Cataleyah +Cateleya +Cayleigh +Caylie +Chaitra +Chantelle +Charlette +Chasity +Cherie +Chidera +Chizara +Christian +Clarabelle +Collins +Coralyn +Corynn +Cozette +Cristel +Daelynn +Daena +Dahlila +Daira +Daisey +Dakotah +Daleah +Dalexa +Dalyla +Danelly +Dannia +Dannie +Dannielle +Darianna +Darlin +Delara +Delayza +Delphine +Dempsey +Denali +Destini +Devine +Devorah +Deziree +Donatella +Doreen +Draya +Drea +Dyanna +Eira +Ekaterina +Elah +Eleena +Eleina +Elektra +Elen +Elene +Eleny +Eli +Eliah +Eliannah +Elida +Elienai +Elize +Ellanore +Ellora +Elouise +Elyanna +Emalynn +Eman +Emari +Emilly +Emmalia +Emmamarie +Emmily +Emoni +Eniya +Envy +Essie +Eugenia +Evelynne +Everlynn +Evyn +Eztli +Feather +Francheska +Francis +Gali +Gardenia +Gracen +Gracey +Graciella +Greer +Gretta +Guiliana +Habiba +Hade +Hafsah +Haiden +Haleigh +Halia +Halina +Hanah +Haniya +Hannahgrace +Harleigh +Haruka +Havanna +Haydee +Hayle +Heily +Henna +Hilda +Ilah +Ilaria +Ilyanna +Imaan +Inayah +Inga +Iniya +Inna +Io +Ione +Irais +Israel +Issa +Ivey +Ivie +Izabell +Izelle +Jacie +Jacklynn +Jadore +Jaelah +Jaeliana +Jahaira +Jaiden +Jailia +Jameela +Jamilah +Jamiyah +Janett +Janey +Janissa +Jannette +Jaritza +Jaselle +Jaslin +Jasmyn +Jasper +Jaycie +Jaydin +Jaylenne +Jazlyne +Jeanne +Jena +Jennavieve +Jennika +Jesenia +Jesse +Jeylah +Jezebel +Jiaqi +Joann +Joella +Johnnie +Jolee +Joselynn +Josilyn +Jozlyn +Juli +Julian +Julieanna +Julliana +Kaelin +Kaileah +Kailin +Kaiulani +Kalee +Kallista +Kamaya +Kambree +Kameron +Katelin +Kathia +Katlyn +Kattaleya +Kattleya +Katty +Kaycie +Kayleah +Kayleeann +Kaylei +Kaytlin +Keelin +Kelis +Kelli +Kemily +Kenleigh +Kenzy +Keri +Ketzaly +Keylani +Khaliyah +Kimberli +Kimberlie +Kimia +Kiran +Kirsten +Klaudia +Kloey +Korina +Kyah +Kymberly +Laina +Landyn +Laniya +Larisa +Laritza +Lavina +Layah +Layal +Leandra +Leelah +Leiana +Lenya +Lesli +Lidya +Lielle +Lillianne +Lillyan +Lillybeth +Lilou +Lilyrose +Lisamarie +Lissandra +Lisseth +Livie +Lizzie +Lucciana +Luci +Lucile +Lumen +Lyah +Lyndsey +Lynnea +Maddy +Madisson +Maegan +Maha +Maika +Mailee +Makenzy +Makiya +Makyla +Mallorie +Malorie +Manasvi +Manon +Manuela +Manya +Marcelina +Mariadejesus +Mariaguadalupe +Mariann +Maricella +Marleen +Marlenne +Maryanne +Maryn +Mathea +Mayzie +Mazie +Mazzy +Mckinzie +Meenakshi +Melaney +Melanye +Melinna +Melyna +Melyssa +Mercedez +Metzli +Miarose +Mikenzie +Milka +Milliana +Mily +Mitzy +Moana +Monzerrat +Morelia +Morgen +Mulan +Mykah +Nabila +Nada +Naevia +Naimah +Nataley +Nayah +Nayana +Nayara +Nayelly +Naylea +Naylene +Nicki +Nirvi +Niyati +Nizhoni +Noemie +Nubia +Olympia +Ondine +Orla +Palmer +Payson +Payten +Perry +Persia +Phyllis +Pia +Pricila +Quetzally +Quorra +Racquel +Raena +Rainie +Rama +Randi +Razan +Reilly +Renatta +Rene +Renesmae +Rhema +Riana +Richelle +Riddhima +Ridhima +Roisin +Ronni +Rosanna +Rosselyn +Rosslyn +Roxie +Rozlyn +Rumi +Safiya +Saidee +Sakina +Salem +Samhita +Samiah +Sammie +Sammy +Saory +Saraya +Sareen +Saskia +Seren +Serinity +Shaily +Shaniah +Shaniya +Shantel +Shanzay +Sharvi +Shaylah +Shaylin +Sheryl +Shoshana +Shyloh +Sianna +Silvana +Silver +Siri +Sivan +Skylie +Skyy +Solstice +Sonam +Soriah +Soriya +Srinika +Srishti +Stephani +Sumayya +Sylvana +Taegan +Taelynn +Taleah +Tammy +Tatyanna +Teia +Tonantzin +Tristan +Tuesday +Una +Vada +Valkyrie +Vana +Vanya +Varnika +Varsha +Vayda +Venezia +Verona +Viana +Vittoria +Viva +Vivi +Wiley +Xaria +Xylina +Yamile +Yareni +Yareth +Yaritzy +Yeimy +Yeraldin +Yizel +Yohanna +Yuli +Yunuen +Yzabella +Zahira +Zaidee +Zailey +Zariya +Zenobia +Ziah +Zophia +Zoriah +Zuley +Zury +Zyla +Zyra +Sophia +Isabella +Emma +Mia +Olivia +Emily +Sofia +Victoria +Abigail +Camila +Ava +Samantha +Charlotte +Evelyn +Elizabeth +Natalie +Chloe +Madison +Genesis +Scarlett +Grace +Zoe +Melanie +Allison +Audrey +Ariana +Avery +Penelope +Alexa +Zoey +Aria +Ella +Aubrey +Amelia +Leah +Lily +Kimberly +Arianna +Bella +Maya +Aaliyah +Mila +Alyssa +Layla +Delilah +Hannah +Hailey +Brooklyn +Valentina +Ximena +Natalia +Savannah +Ashley +Harper +Andrea +Jasmine +Sarah +Kayla +Violet +Nicole +Luna +Brianna +Eva +Valeria +Amy +Ellie +Stella +Katherine +Jocelyn +Kaylee +Valerie +Ruby +Claire +Ariel +Naomi +Alice +Angela +Annabelle +Addison +Gianna +Riley +Sophie +Alexandra +Jade +Anna +Faith +Kylie +Liliana +Maria +Melody +Alina +Isabel +Giselle +Madeline +Lillian +Lucy +Nevaeh +Michelle +Melissa +Angelina +Elena +Eliana +Alexis +Daisy +Julia +Vanessa +Madelyn +Daleyza +Sadie +Stephanie +Hazel +Mackenzie +Aubree +Gabriella +Athena +Jessica +Leilani +Vivian +Khloe +Isabelle +Kennedy +Taylor +Daniela +Aurora +Juliana +Peyton +Autumn +Destiny +Serenity +Lauren +Eleanor +Jayleen +Jacqueline +Julianna +Isla +Aliyah +Ivy +Katelyn +Jaylah +Kaitlyn +Sydney +Jennifer +Bailey +Skylar +Yaretzi +Iris +Cali +Miranda +Leila +Mariah +Emilia +Paisley +Alexia +Esmeralda +London +Makayla +Nora +Diana +Itzel +Izabella +Quinn +Alondra +Lyla +Catherine +Lucia +Alessandra +Arabella +Elise +Marilyn +Sara +Paige +Everly +Eden +Leslie +Caroline +Piper +Rylee +Rebecca +Sienna +Adriana +Alison +Ana +Brielle +Jayla +Josephine +Juliette +Reagan +Keira +Cora +Rose +Fiona +Gabriela +Juliet +Summer +Vivienne +Brooke +Rachel +Clara +Presley +Fatima +Kendra +Adeline +Arya +Elsa +Kate +Amaya +Kamila +Alana +Amanda +Genevieve +Lilly +Guadalupe +April +Jimena +Mya +Kendall +Trinity +Aileen +Daniella +Camilla +Allyson +Amber +Tiffany +Nayeli +Alexandria +Mariana +Joanna +Chelsea +Priscilla +Angelique +Emery +Morgan +Jazmin +Laila +Alicia +Lydia +Annabella +Bianca +Dahlia +Jordyn +Reese +Camille +Olive +Mary +Montserrat +Julissa +Nina +Molly +Annie +Aylin +Brooklynn +Danielle +Adalynn +Crystal +Kiara +Lexi +Angelica +Gracie +Jaylene +Marley +Alejandra +Madeleine +Hope +Christina +Catalina +Cynthia +Kali +Sierra +Katie +Lola +Viviana +Evangeline +Nadia +Noelle +Emely +Kira +Mckenzie +Phoebe +Cassidy +Melany +Celeste +Jazmine +Cecilia +Sabrina +Adelyn +Elisa +Fernanda +Adalyn +Karina +Jordan +Anabelle +Charlie +Selena +Willow +Monserrat +Payton +Aleena +Audrina +Kelly +Lila +Cataleya +June +Lilah +Eliza +Janelle +Karla +Lia +Esther +Rosalie +Sarai +Daphne +Gemma +Haley +Mikayla +Arielle +Hayden +Lana +Megan +Heidi +Kassandra +Julie +Leia +Anastasia +Regina +Jessie +Kylee +Aniyah +Carolina +Jane +Gia +Adelynn +Angie +Renata +Ayla +Callie +Cindy +Tessa +Danna +Georgia +Helen +Irene +Malia +Abby +Emerson +Erin +Makenzie +Eloise +Norah +Talia +Jazlyn +Marissa +Serena +Colette +Kaylie +Giuliana +Karen +Kenzie +Lilliana +Briana +Noemi +Angel +Aimee +Anahi +Anaya +Scarlet +Aranza +Cassandra +Elle +Galilea +Melina +Zara +Alaina +Kaia +Anika +Brittany +Dulce +Margaret +Ruth +Veronica +Anabella +Gloria +Bethany +Gabrielle +Jenna +Kailey +Wendy +Maddison +Parker +Delaney +Carmen +Laura +Amelie +Celine +Finley +Harmony +Lucille +Marina +Yareli +Dylan +Jasmin +Monica +Alani +Arely +Francesca +Helena +Lizbeth +Maggie +Nova +Elliana +Perla +Sage +Denise +Linda +Averie +Joy +Nathalie +Paola +Alayna +Azalea +Skye +Annabel +Hadley +Paris +Brynn +Joyce +Kinsley +Londyn +Siena +Adelina +Ayleen +Shelby +Eileen +Harlow +Jamie +Tatiana +Adilene +Ashlyn +Clarissa +Dakota +Danica +Dayana +Madilyn +America +Elaine +Ariella +Hayley +Ivanna +Jillian +Sloane +Anya +Brenda +Haylee +Kenia +Lilian +Mikaela +Teagan +Adrianna +Elsie +Lena +Lexie +Mckenna +Rosemary +Sasha +Teresa +Alyson +Harley +Holly +Kelsey +Miah +Naya +Vera +Alivia +Allie +Chanel +Frida +Reyna +Johanna +Kara +Kyla +Liana +Luciana +Mina +Miriam +Paloma +Rylie +Desiree +Keyla +River +Adelaide +Carly +Julieta +Haven +Marisol +Nataly +Aryanna +Elaina +Nyla +Rosie +Skyler +Ashlynn +Erika +Estrella +Jenny +Lea +Myla +Yamileth +Ada +Belen +Christine +Hanna +Isabela +Makenna +Aleah +Briella +Cadence +Cheyenne +Leyla +Matilda +Raquel +Amira +Gwendolyn +Lindsay +Michaela +Amina +Amiyah +Anne +Dalilah +Gisselle +Hana +Heaven +Lilyana +Lyric +Nia +Phoenix +Rosa +Amara +Caitlyn +Elianna +Itzayana +Janessa +Marjorie +Nancy +Nathaly +Alma +Belinda +Caitlin +Laylah +Roselyn +Sarahi +Tatum +Dalia +Edith +Evelynn +Joselyn +Lesly +Madelynn +Abril +Josie +Kassidy +Leanna +Natasha +Pearl +Sawyer +Alena +Breanna +Bryanna +Isis +Juniper +Kiera +Ryan +Samara +Brisa +Emmy +Kailyn +Kaylin +Miley +Alisson +Katalina +Kaydence +Lisa +Paulina +Simone +Annika +Ariadne +Baylee +Jada +Kathryn +Mariam +Dana +Eve +Kenya +Romina +Thalia +Winter +Aliana +Anabel +Angeline +Felicity +Jayden +Jolene +Maia +Ryleigh +Sandra +Sherlyn +Kinley +Lylah +Marie +Milania +Raelynn +Selina +Cara +Elyse +Emmalyn +Journey +Kailani +Kamilah +Maritza +Milana +Mira +Annalise +Camryn +Jazlynn +Savanna +Beatrice +Charlee +Darlene +Deborah +Jaelyn +Lilianna +Lina +Maci +Nylah +Rowan +Yaritza +Ainsley +Alisa +Bonnie +Charlize +Danika +Esperanza +Jayda +Kaelyn +Kayleigh +Lindsey +Macy +Milena +Patricia +Vienna +Areli +Carla +Kiana +Lara +Maliyah +Maryjane +Miracle +Sonia +Alanna +Annette +Freya +Kayleen +Keila +Liv +Marlene +Nathalia +Paula +Shiloh +Coral +Frances +Iliana +Ivory +Jaylin +Justice +Raegan +Yuliana +Aisha +Emilie +Evie +Judith +Logan +Macie +Maisie +Rubi +Sharon +Sky +Xiomara +Aiyana +Amalia +Amia +Brynlee +Cameron +Carina +Emilee +Heather +Jaelynn +Katelynn +Khaleesi +Leilah +Lilia +Maryam +Reina +Selah +Aanya +Darla +Imani +Kaylani +Lacey +Leilany +Luz +Maribel +Penny +Rebekah +Yasmin +Aubrie +Barbara +Bridget +Ember +Farrah +Kristina +Makena +Scarlette +Tiana +Adele +Alia +Aviana +Blake +Emelia +Erica +Kamryn +Keily +Mabel +Miya +Aspen +Dania +Elin +Elisabeth +Elissa +Emi +Irie +Kataleya +Maite +Shanaya +Zahra +Zuri +Aleyda +Arantza +Aurelia +Cambria +Ciara +Claudia +Esme +Jaylynn +Lilith +Madilynn +Remi +Roxanne +Ailyn +Audriana +Dalary +Kaya +Millie +Monroe +Stevie +Sunny +Alayah +Aryana +Casey +Celina +Charley +Damaris +Ellen +Heidy +Jacquelyn +Jemma +Kadence +Kaliyah +Malaya +Malaysia +Selene +Tara +Tina +Belle +Evalyn +Jaqueline +Kyra +Lailah +Paislee +Poppy +Saanvi +Skyla +Violeta +Yoselin +Citlali +Clementine +Estella +Frankie +Giovanna +Jolie +Kaiya +Katy +Maxine +Riya +Yaretzy +Zariah +Alianna +Alissa +Astrid +Dallas +Davina +Faye +Kayden +Larissa +Lupita +Milagros +Noa +Renee +Salma +Sylvia +Xochitl +Yesenia +Amaris +Aniya +Demi +Geraldine +Janet +Julianne +Liberty +Luisa +Magdalena +Mallory +Mylah +Shayla +Stacy +Vida +Violette +Willa +Aliah +Alisha +Avianna +Charlene +Coraline +Cristina +Giana +Janice +Lorelei +Madalyn +Maeve +Maleah +Marlowe +Milah +Milani +Natalya +Virginia +Yvette +Zaniyah +Abbie +Ariah +Aubrielle +Aya +Delia +Evangelina +Jaylee +Kristen +Livia +Lizeth +Margot +Marlee +Martha +Mckinley +Micaela +Nelly +Raven +Saige +Sally +Tegan +Aliya +Azeneth +Capri +Charli +Courtney +Dalila +Grecia +Ingrid +Janney +Kailee +Kaley +Kallie +Kathleen +Kathy +Krystal +Lauryn +Lorelai +Melinda +Milan +Sidney +Silvia +Tania +Thea +Valery +Yamilet +Yaneli +Yolanda +Ally +Amari +Amirah +Ananya +Azul +Denisse +Diya +Holland +Izel +Kaitlin +Leona +Mercedes +Rebeca +Yvonne +Zoya +Addyson +Adela +Anais +Candice +Dafne +Dorothy +Elina +Eunice +Giada +Hailee +Joelle +Kairi +Lillie +Lucero +Mavis +Mayra +Ramona +Rosalyn +Shirley +Soleil +Zainab +Aadhya +Adrienne +Bria +Bristol +Elodie +Gwen +Gwyneth +Ireland +Jayde +Jewel +Jocelynn +Kora +Litzy +Magnolia +Marianna +Meera +Myra +Noor +Rhea +Sariah +Sloan +Aarna +Ailani +Amerie +Analia +Arlene +Elliott +Elly +Jasleen +Kasey +Leighton +Mariela +Mckayla +Myah +Nikki +Nola +Stephany +Whitney +Wren +Aarya +Blakely +Caylee +Dayanna +Doris +Emerie +Everleigh +Evolet +Florence +Gracelynn +Kalia +Katrina +Maliah +Mandy +Nadine +Remy +Rosalinda +Soraya +Vivien +Yazmin +Alannah +Alyna +Amani +Araceli +Ariya +Braelyn +Daleysa +Dariana +Jordynn +Kalea +Lilyanna +Lyra +Madyson +Margarita +Meadow +Sandy +Vicky +Zoie +Annabell +Aracely +Beatriz +Carolyn +Cielo +Corinne +Destinee +Elia +Ellery +Estefania +Georgina +Gizelle +Hillary +Hunter +Jazmyn +Jazzlyn +Josselyn +Kalani +Kaylen +Kenley +Madisyn +Marbella +Naima +Sheila +Tanvi +Tanya +Zelda +Addisyn +Ani +Anita +Beverly +Celia +Chiara +Clare +Jiselle +Katerina +Kaycee +Keilani +Lidia +Meredith +Rylan +Vivianna +Yarely +Amayah +Ann +Ayana +Bailee +Bree +Brinley +Brylee +Candy +Estefany +Estelle +Gracelyn +Hadassah +Hailie +Haylie +Ivana +Jaylyn +Judy +Kiley +Leela +Lianna +Mae +Mariajose +Mercy +Miabella +Mika +Mireya +Neriah +Neveah +Roxana +Ryann +Sarina +Shreya +Tabitha +Yulissa +Aida +Aliyana +Arianny +Avalon +Betty +Britney +Calista +Carrie +Devyn +Dianna +Elora +Emmeline +Flora +Gisele +Greta +Jackie +Jaylen +Kaelynn +Kayley +Laurel +Laylani +Mara +Marisa +Nala +Nalani +Pamela +Robyn +Saylor +Susana +Addilyn +Alba +Ariyah +Arleen +Ayva +Cathy +Cristal +Eiza +Emiliana +Evelina +Gina +Graciela +Isha +Jackeline +Jianna +Kai +Kaylynn +Leticia +Madalynn +Rachael +Raylene +Rayna +Rory +Rosemarie +Sheyla +Tess +Xitlali +Yuna +Alanis +Aliza +Alize +Anayah +Anjali +Antonella +Avah +Azariah +Braelynn +Brigitte +Donna +Emerald +Isadora +Izabelle +Jaslene +Jaycee +Lorena +Louisa +Paityn +Rita +Shaila +Sofie +Sonya +Vianney +Abbigail +Alessia +Anaiah +Arlette +Avalyn +Avani +Berlin +Blanca +Carissa +Cordelia +Diamond +Dora +Eleni +Emmalee +Flor +Jaliyah +Janae +Jubilee +Kaitlynn +Kamille +Lainey +Louise +Lucie +May +Persephone +Petra +Raelyn +Suri +Tori +Veda +Alaya +Andi +Asha +Aubriana +Aulani +Cassie +Cherish +Dani +Emersyn +Kamilla +Karissa +Kaylah +Lennon +Malina +Marceline +Monique +Ophelia +Robin +Roxanna +Sailor +Susan +Taliyah +Violetta +Yadira +Abbey +Abrianna +Aiyanna +Anneliese +Antonia +Arleth +Armani +Ayanna +Beatrix +Blair +Carol +Drew +Elliot +Estela +Evalina +Henley +Ines +Jaslyn +Jenesis +Katarina +Kirra +Kyleigh +Lillyana +Lluvia +Mayah +Nicolette +Nika +Queena +Royal +Sahana +Sinai +Tallulah +Vianey +Winnie +Yatziri +Zaira +Zuleyka +Aadya +Abrielle +Agnes +Alessa +Amiya +Avni +Connie +Dominique +Emmaline +Inez +Isa +Janeth +Jazleen +Joanne +Joey +Journee +Kalina +Karis +Karlie +Kenna +Laney +Lillianna +Lillyanna +Mayleen +Nailah +Nichole +Novalee +Princess +Renesmee +Rihanna +Rocio +Sana +Serafina +Sol +Sylvie +Tenley +Akshara +Aleeah +Annalisa +Ariadna +Aubriella +August +Bridgette +Calliope +Cecelia +Citlalli +Dayanara +Diane +Ema +Emani +Imogen +Isela +Italia +Izabel +Janelly +Janiyah +Jazlene +Kaila +Kaily +Kelsie +Kristin +Leanne +Leena +Lourdes +Marcela +Naia +Naomy +Noelani +Paulette +Raya +Rosario +Shea +Tracy +Vanellope +Xitlaly +Yasmine +Zaria +Aditi +Ahana +Analise +Annalee +Ashly +Averi +Berenice +Betsy +Billie +Brenna +Bryn +Dasha +Evelin +Gema +Hallie +Johana +Justine +Karlee +Karolina +Karsyn +Kennedi +Lesley +Mariyah +Melisa +Merida +Nellie +Nila +Noelia +Nyah +Saira +Scout +Seraphina +Stacey +Star +Tala +Tamara +Theresa +Treasure +Vivianne +Aarohi +Aleyna +Amberly +Aminah +Andie +Ariane +Audree +Audrianna +Bernadette +Carter +Cattleya +Christiana +Coco +Deisy +Emelyn +Honesty +Indigo +Ira +Ivette +Jael +Jeanette +Kaleah +Karol +Katia +Lori +Lorraine +Lux +Melia +Moriah +Natalee +Nya +Nyomi +Roxy +Sahasra +Shira +Vania +Zariyah +Zendaya +Abbygail +Alora +Alynna +Amiah +Amilia +Anabell +Anaiya +Ari +Audra +Avary +Avril +Carlie +Cecily +Christy +Citlaly +Devon +Emmalynn +Emmie +Evalynn +Fabiola +Heavenly +Ilene +Jaclyn +Jana +Janie +Jazelle +Karely +Kimora +Lailani +Laniyah +Layan +Leylani +Leyna +Linnea +Lucinda +Lynette +Magaly +Mannat +Marlyn +Maryann +Meilani +Melani +Milla +Milly +Nayla +Noel +Opal +Priya +Raina +Reece +Remington +Reya +Ria +Samira +Seerat +Shannon +Toni +Tyler +Viola +Yahaira +Abygail +Aitana +Akira +Alexi +Amya +Analeah +Anali +Aniah +Audrie +Ayah +Azucena +Cassia +Caydence +Charleigh +Daiana +Deanna +Delylah +Dolores +Elayna +Fallon +Harlee +Inaya +Isabell +Jackelyn +Jaya +Jessa +Kacey +Kailynn +Kensington +Kinsey +Kristy +Leilanie +Liah +Loretta +Lucianna +Lynn +Macey +Malak +Marcella +Marian +Monserrath +Odalys +Pepper +Prisha +Rilynn +Samaira +Samiyah +Saniyah +Sariyah +Sutton +Tia +Zooey +Adaline +Aiza +Alinna +Anayeli +Anisha +Anissa +Annelise +Arden +Asia +Avalynn +Avneet +Ayesha +Blaire +Cayla +Cheyanne +Clover +Estefani +Ezra +Halle +Harleen +Indiana +Jannah +Jocelyne +Karly +Karoline +Katya +Kori +Kourtney +Lilyann +Londynn +Lotus +Malayah +Malena +Marely +Maren +Marianne +Navya +Nayelli +Olga +Precious +Queenie +Rain +Regan +Rylynn +Sabina +Serene +Shyanne +Tesla +Trisha +Uma +Venus +Vianna +Waverly +Yanely +Yara +Zahara +Zion +Zuria +Aaleyah +Amora +Annabeth +Annaleah +Annaliese +Annamarie +Anvi +Ariela +Aubrianna +Austin +Briar +Briseida +Briseis +Brissa +Carlee +Cleo +Della +Dina +Elli +Ellison +Elyssa +Emmarie +Enya +Ever +Gurnoor +Halo +Haya +Honor +India +Indie +Irma +Isobel +Jaida +Josefina +Josslyn +Jude +Kaylyn +Kianna +Kim +Kloe +Kyara +Leen +Lexy +Liya +Maddie +Margo +Marilynn +Marion +Marlie +Maycee +Maylee +Mayte +Melannie +Mollie +Nahla +Niya +Preslee +Rosalind +Roya +Sakura +Sanvi +Sapphire +Savanah +Tamia +Temperance +Unique +Wynter +Aaradhya +Aaralyn +Adalie +Adella +Adina +Aeris +Alysson +Amie +Amor +Analy +Angelia +Anisa +Antoinette +Anushka +Artemis +Austyn +Avamarie +Aven +Brittney +Cailyn +Carys +Chaya +Cherry +Darya +Devin +Dixie +Eisley +Elani +Ellia +Ellianna +Emme +Ester +Finnley +Gaia +Geneva +Giavanna +Gisel +Goldie +Griselda +Haydee +Inara +Jaylani +Jenicka +Jizelle +Kaleigh +Katheryn +Kavya +Kayli +Keren +Khali +Khalia +Krisha +Leann +Libby +Maile +Maisy +Maliya +Maricela +Marlena +Maylene +Maylin +Micah +Naiya +Natali +Nikita +Patience +Promise +Rania +Roslyn +Sabine +Sahara +Sequoia +Shay +Shayna +Yael +Zayla +Zia +Adalina +Adamaris +Adelle +Adilynn +Ahtziri +Aila +Aislinn +Alanah +Alex +Allisson +Alyanna +Alysa +Alyse +Amairani +Amarie +Ameerah +Amethyst +Angelie +Arabelle +Araya +Arina +Arissa +Arlet +Arwen +Aysha +Brea +Cailey +Candace +Ciana +Cienna +Constance +Coralie +Cosette +Daliah +Dawn +Divina +Divine +Divya +Eila +Eleanora +Elinor +Ellyana +Emiko +Emmarose +Emmerson +Emy +Farah +Gwenyth +Harini +Hennessy +Ila +Janette +Jayna +Jenessa +Joann +Joselin +Joslyn +Juana +Julisa +Kaili +Kiyomi +Klara +Klarissa +Korie +Lennox +Leylah +Love +Magali +Malika +Mayrin +Nariah +Niyah +Ocean +Priscila +Quincy +Raelene +Ripley +Sama +Saray +Saydee +Sirena +Spencer +Symphony +Taryn +Terra +Yasmeen +Zora +Addie +Ailey +Aleyza +Anaiyah +Analiyah +Ania +Arisbeth +Ayvah +Azalia +Bay +Britany +Briza +Camellia +Chanelle +Chantal +Chevelle +Cianna +Colleen +Darcy +Daria +Dayami +Delanie +Desirae +Egypt +Ellis +Elyana +Emory +Ericka +Esha +Everley +Francisca +Genessis +Gladys +Guinevere +Hattie +Havana +Hudson +Ileana +Irina +Irlanda +Italy +Ivanka +Jannat +Jaquelin +Jaslynn +Jesslyn +Jiya +Jocelin +Joie +Joseline +Joslynn +Jovie +Jules +Jurnee +Kaira +Karma +Kasandra +Kiersten +Kimber +Kirsten +Kitana +Kristal +Kylah +Kyndall +Lissette +Loren +Mai +Mareli +Margaux +Marlen +Marlo +Maylen +Meghan +Melanny +Nahomi +Nahomy +Navy +Naydelin +Nayomi +Niki +Noah +Reign +Rhiannon +Rian +Rosalynn +Roselynn +Samaya +Sanaa +Sanaya +Sherry +Shriya +Sia +Stefany +Susie +Taliah +Tammy +Tianna +Venice +Yana +Yessenia +Zaina +Zarina +Abella +Abriana +Adalee +Addalyn +Alya +Alysia +Angeli +Annmarie +Anuhea +Aoife +Ashlee +Aubri +Aura +Avia +Avigail +Bennett +Blossom +Blythe +Bowie +Cattaleya +Collette +Corina +Danae +Darby +Doreen +Elisha +Emmalina +Emmanuelle +Emry +Eryn +Etta +Gala +Georgiana +Giulia +Gretel +Halima +Harlie +Hilary +Ida +Ixchel +Iyla +Jacey +Janely +Janna +Jaquelyn +Jean +Jenavieve +Joan +Jordin +Julieth +Kaliah +Katharine +Keziah +Korra +Kristine +Lincoln +Lisette +Lovely +Mari +Mariella +Marin +Maven +Milagro +Miraya +Miyah +Moira +Mona +Nada +Niah +Nour +Odette +Ofelia +Orion +Rafaela +Rayne +Reem +Ryder +Rylin +Saleen +Salem +Santana +Saoirse +Shylah +Simona +Simran +Skarlett +Solange +Stefanie +Story +Susanna +Tahlia +Talya +Teegan +Valencia +Valentine +Vanesa +Viktoria +Xenia +Yareni +Yulianna +Zadie +Zaida +Zaya +Zola +Aahana +Aaliya +Abriella +Adalia +Addelyn +Aime +Ainara +Aleksandra +Aleyah +Alinah +Alyah +Amarah +Amariah +Ami +Ammy +Angelic +Angely +Aolanis +Arianne +Ashton +Aveline +Azaria +Beau +Berlyn +Bernice +Bethel +Bianka +Brie +Brithany +Caleigh +Calissa +Caliyah +Carmela +Carmella +Charity +Colbie +Daenerys +Daila +Danya +Dara +Darlyn +Debora +Deja +Delila +Echo +Edie +Elvira +Elysia +Emalee +Eris +Essence +Evany +Freyja +Genavieve +Genevie +Gillian +Giulianna +Grettel +Hafsa +Illiana +Ilse +Inessa +Iona +Ishani +Jackelin +Jacklyn +Jacquelin +Jadelyn +Janell +Jaylinn +Jennah +Jenni +Jill +Juanita +Kaci +Kacie +Karli +Kaylene +Kensie +Kensley +Kenzi +Kyrie +Lacy +Lani +Lavinia +Leana +Lela +Liyah +Makaylah +Malani +Maribelle +Maricruz +Marisela +Martina +Maureen +Medha +Misha +Nava +Neve +Nirvana +Norma +Oona +Pauline +Pilar +Portia +Quetzalli +Rena +Romi +Rosalee +Rosy +Sedona +Serina +Shae +Shania +Siya +Sydnee +Tatyana +Theodora +Tinley +Vada +Vaishnavi +Violett +Viridiana +Ysabella +Zaylah +Aaryn +Abigale +Adamari +Adley +Ailany +Ailin +Aislin +Akemi +Alaysia +Alea +Aleida +Alitzel +Allana +Allegra +Alyza +Ameena +Analeigh +Analiah +Analicia +Analisa +Andromeda +Ansley +Aolani +Arantxa +Athziri +Aurielle +Avaya +Avila +Baylie +Becky +Bellarose +Bentley +Brandy +Braylee +Briley +Briseyda +Brynley +Caliana +Calla +Camdyn +Caterina +Celest +Charis +Cheryl +Ciel +Cooper +Darling +Dia +Eliyah +Eloisa +Elouise +Emmi +Eternity +Eugenia +Fatimah +Fayth +Gennesis +Glory +Haily +Hartley +Hermione +Hilda +Hollie +Honey +Ilana +Ily +Isamar +Ivonne +Iyanna +Jaiden +Jaina +Jaleah +Janis +Jaylenne +Jayne +Jenevieve +Jessalyn +Joana +Joya +Julieanna +Kaela +Kaidence +Kaidyn +Kaleia +Kalli +Kambria +Karley +Karmen +Karyme +Kay +Keilah +Kendal +Kennady +Kensi +Khadija +Khylee +Kinslee +Lacie +Lael +Laya +Lili +Lilyrose +Linh +Liz +Lizette +Lois +Luca +Lucca +Lynda +Madelyne +Marla +Marleny +Marta +Mei +Melodie +Melony +Millicent +Mindy +Minerva +Misty +Nadya +Naila +Nalayah +Nallely +Naveah +Nayely +Nico +Nicolle +Oriana +Preslie +Pricilla +Rachelle +Rae +Romy +Rosaline +Saachi +Samarah +Saniya +Sehaj +Sena +Shyla +Sicily +Silvana +Siobhan +Skylynn +Sonja +Sparrow +Starla +Suhani +Swara +Vanity +Vayda +Yatzil +Yazaira +Yuridia +Zayra +Zenaida +Zinnia +Ziva +Zulema +Zuleyma +Zyanya +Aashi +Acacia +Adalind +Adaliz +Adaly +Adara +Addilynn +Adelaida +Adelia +Adilyn +Adylene +Agatha +Aiko +Ailynn +Airi +Alany +Alayla +Aleen +Aleeyah +Alexie +Aliannah +Alise +Alliyah +Alycia +Alyvia +Amyah +An +Analee +Analie +Anela +Anessa +Angelee +Anja +Ara +Arianah +Aribella +Arie +Ariyana +Ashanti +Asma +Aubry +Avika +Aviva +Avleen +Aylen +Aylene +Azaleah +Betzy +Boston +Brighton +Caelyn +Carmel +Catarina +Cesia +Chana +Chandler +Charisma +Cinthia +Constanza +Debbie +Denali +Destiney +Dior +Ela +Elianah +Elienai +Ellah +Emeline +Eshal +Eveline +Everlee +Evette +Fanny +Fern +Gaby +Gianella +Ginger +Gisela +Gisella +Gissel +Gretchen +Harnoor +Ilianna +Ilyana +Irelynn +Ishika +Izabellah +Izzabella +Jailyn +Jaime +Jasneet +Jatziri +Jaymee +Jenelle +Jennie +Jessi +Jodie +Joleen +Juno +Kailah +Kalaya +Kalayah +Kalena +Kalie +Kateri +Keeley +Keely +Keyli +Khloee +Kimberley +Klaire +Kya +Kyrah +Laylanie +Leeah +Leoni +Leonora +Lillith +Lisbeth +Luella +Mahi +Mailen +Mailyn +Maiya +Makaila +Manuela +Maribella +Marleen +Mason +Meagan +Meah +Mildred +Mileena +Miliani +Naveen +Nazareth +Neela +Neha +Nikole +Oceana +Olyvia +Payten +Philippa +Pia +Queen +Rayanna +Rayleen +Raylynn +Rayven +Reet +Rhylee +Rosalia +Rosalina +Rowen +Saisha +Samia +Sanai +Sanya +Savvy +Sayuri +Shoshana +Skylee +Skyy +Taya +Tigerlily +Tinsley +Una +Veronika +Vesper +Yazmine +Yessica +Yetzali +Yocelyn +Yumi +Yuri +Zaylee +Zayna +Zoee +Zosia +Zuleika +Zyana +Zylah +Aalyiah +Acelynn +Adelynne +Airam +Aisley +Aiva +Alaia +Aleeya +Alenna +Ali +Alitza +Aliyanna +Alona +Alyana +Alyssah +Alyssia +Amairany +Amaiya +Ambar +Ameera +Anabeth +Anamarie +Anavictoria +Angelika +Angelyn +Annaleigh +Annaly +Annemarie +Anniston +Anoushka +Arlett +Arlyn +Atziri +Audri +Avarie +Avelina +Averey +Avonlea +Ayelen +Ayumi +Bellah +Berlynn +Betsaida +Bliss +Bostyn +Breanne +Britanny +Britton +Brylie +Calia +Calleigh +Campbell +Camrynn +Catelyn +Christa +Clair +Clarice +Corrina +Daelynn +Danni +Daphnie +Dasia +Desire +Dulcemaria +Ekam +Elicia +Ellena +Elliette +Elvia +Eman +Emili +Eshaal +Evan +Ezri +Fabiana +Felicia +Getsemani +Gisell +Grayson +Harlowe +Harmonie +Harriet +Henrietta +Idalie +Ileen +Iman +Imelda +Ina +Issabella +Jaden +Jaimie +Jalynn +Jamila +Jamileth +Janiah +Janiya +Jazmyne +Jenifer +Jessika +Jezabel +Jiana +Joi +Jovi +Joycelyn +Julietta +Justina +Kaileen +Kalissa +Kamdyn +Kamea +Kameron +Kaori +Karalyn +Kari +Karime +Karisma +Kataleah +Katty +Kaycie +Kaylana +Keegan +Kelis +Kendyl +Keya +Kierra +Kimiko +Kiran +Kitty +Krista +Kristiana +Kyndal +Lanna +Lavina +Layne +Leilanni +Lenora +Leya +Lilianne +Liora +Lua +Lya +Maddilynn +Madina +Maeva +Makenzi +Malillany +Maram +Mariel +Marilu +Mattie +Maura +Maytte +Meena +Mele +Memphis +Miliana +Milliana +Mily +Mirabelle +Mischa +Naisha +Navaeh +Niamh +Nilah +Nimrat +Nimrit +Nubia +Quetzaly +Radha +Riana +Rileigh +Rio +Roisin +Rosabella +Roselin +Rozlyn +Ruhi +Rya +Sabella +Safa +Saja +Salina +Samanta +Saphira +Saya +Selma +Senna +Shaina +Silver +Skylah +Snow +Sofiya +Solana +Somaya +Sonora +Stefani +Sterling +Sunnie +Surveen +Susannah +Suzanna +Suzette +Taelynn +Taleen +Tali +Taraji +Taytum +Therese +Tristyn +Vanya +Veera +Victory +Wilhelmina +Xena +Yanelli +Yelena +Yoselyn +Yuki +Yulia +Yuritzi +Zanna +Zarah +Zayah +Zyla +Aahna +Aalia +Aariyah +Aashvi +Abigayle +Adalene +Addalynn +Adison +Adrian +Adyson +Aerin +Ailene +Aira +Aislyn +Aixa +Akari +Alaska +Aleana +Aleenah +Aleeza +Aletheia +Alexus +Alexxa +Aleya +Alizay +Aly +Alysha +Alyssandra +Alyzah +Amila +Amour +Anapaula +Anastacia +Anel +Anette +Angeles +Anica +Anishka +Annalia +Annalie +Annaliyah +Annalynn +Annalyse +Anny +Anvita +Aradhya +Aralyn +Ariannah +Arianni +Ariany +Arohi +Asenath +Aseneth +Ashleen +Ashtyn +Asiya +Aubreigh +Avarose +Averee +Ayden +Aylah +Ayline +Bela +Belicia +Betsabe +Bettie +Beya +Blayke +Brianne +Brigette +Brookelynn +Bryana +Caia +Cailin +Camelia +Candelaria +Carley +Carson +Carsyn +Cate +Charlette +Chase +Chelsey +Chioma +Christal +Clarity +Collins +Consuelo +Cyrine +Dalylah +Danelly +Danitza +Daniya +Darina +Dayani +Daysha +Delayza +Dennise +Dinah +Easton +Elana +Eleana +Eleonor +Eleyna +Elif +Elika +Elva +Elyza +Emeli +Emmah +Emmely +Emmelyn +Emmery +Emmily +Esmae +Evah +Evianna +Ezmeralda +Florencia +Francis +Galileah +Georgette +Golden +Grey +Gurleen +Hadasa +Haddie +Haidyn +Hollis +Hosanna +Huda +Inaaya +Inayah +Indira +Isaura +Itzae +Iva +Iyana +Jailene +Jailynn +Jalayah +Jamee +Jameson +Jamilet +Jasmeet +Jaydah +Jaylanie +Jayleene +Jaylie +Jayme +Jaymie +Jazlin +Jazzlynn +Jazzmine +Jeanelle +Jesse +Jhene +Jolee +Joselynn +Justyce +Kaeley +Kaely +Kahlan +Kahlia +Kaiden +Kaleena +Kalynn +Kandace +Karah +Karter +Katalaya +Katalia +Katana +Katelin +Katherin +Kathia +Kaydee +Kayle +Kaylinn +Kealani +Keiry +Kenzington +Khadijah +Kimberlee +Kyliee +Laci +Larisa +Laurie +Layna +Leandra +Leigha +Leora +Lexington +Leyah +Liesel +Lilit +Liza +Lula +Mackayla +Madisen +Magdalene +Mailani +Maira +Malea +Mallorie +Manreet +Maple +Marguerite +Mariafernanda +Marielle +Marigold +Marijose +Marwa +Maryanne +Maryn +Mayar +Maycie +Mayzie +Melania +Melyssa +Mena +Meztli +Mireille +Mirella +Mizuki +Monika +Montana +Myka +Nailea +Nara +Nare +Nareh +Neva +Nidhi +Nohemi +Novah +Oakley +October +Onyx +Primrose +Rana +Rawan +Rayah +Rayanne +Rianna +Riona +Roberta +Roma +Roni +Rooney +Rosanna +Rowyn +Royalty +Ryanne +Salome +Samaria +Samirah +Sammantha +Sanjana +Sapphira +Savina +Scotland +Seleste +Sephora +Serah +Seren +Sevyn +Shanelle +Shantal +Shaya +Shaylee +Shayne +Shyann +Sianna +Skarlet +Sona +Srinika +Syeda +Syriah +Tanisha +Tanishka +Tatianna +Theia +Tiara +Tilly +Tonantzin +Trina +Varsha +Vella +Verenice +Yatziry +Yoana +Yuritza +Zaara +Zahira +Zariya +Zayda +Zaynab +Zofia +Zoha +Zophia +Zurisadai +Aaliah +Aarini +Aayla +Abagail +Abbigale +Abilene +Abrar +Adalyne +Adora +Adrielle +Adrina +Aiden +Aine +Akshaya +Alahni +Alanie +Alexsandra +Aliviah +Alizae +Alizah +Allysson +Alyannah +Amaia +Amaira +Amalya +Amayrani +Amberlynn +Amore +Amri +Anai +Analaya +Angelita +Angelli +Annahi +Anouk +Anshika +Aralynn +Arisha +Ariyanna +Arizona +Arliz +Arrow +Asa +Asenet +Ashely +Ashleigh +Ashlynne +Auria +Avaree +Avry +Avy +Ayra +Bayla +Berkeley +Bertha +Bethenny +Bobbie +Brinlee +Brookelyn +Brooklin +Brooklynne +Bryce +Brynlie +Brynne +Callista +Cambrie +Camden +Cameryn +Caris +Catalaya +Cayden +Chelsie +Chloey +Christianna +Ciela +Ciena +Ciera +Cierra +Claira +Clarisa +Clio +Coralee +Cyan +Cyra +Dagny +Dailyn +Daleyssa +Daphnee +Daphney +Darianna +Darleen +Dayna +Deema +Defne +Delaila +Delani +Delfina +Delphine +Demetria +Deniz +Denver +Desteny +Dezirae +Dharma +Dolly +Donya +Eimy +Elanie +Eleanore +Elisabetta +Elizabella +Elizaveta +Ellieana +Ellington +Elsy +Elysa +Emalyn +Emberlynn +Emelie +Emeri +Emilyn +Emmalin +Emree +Emsley +Ensley +Esbeidy +Evalena +Eviana +Evyn +Faustina +Fiora +Francine +Gauri +Giannah +Gigi +Graysen +Greenlee +Hala +Hanan +Haneen +Hania +Hannaley +Hargun +Hayven +Heily +Helene +Hellen +Ilaria +Indy +Irais +Isella +Isley +Israel +Jacie +Jaeliana +Jaidyn +Jakayla +Jalissa +Janai +Janay +Janey +Jannet +Japji +Jaselle +Jasmyn +Jasnoor +Jelena +Jenevie +Jenika +Jennyfer +Jeslyn +Jessy +Jewell +Joely +Johnnie +Jolin +Josephina +Journi +Judah +Julyssa +Kacy +Kaelah +Kaelani +Kailea +Kaliana +Kalyssa +Kamari +Karolyn +Kassie +Kathrine +Katniss +Kattaleya +Kaylanie +Keaton +Keerat +Keeva +Keiko +Keisha +Kelani +Kellie +Kenadee +Kennya +Keri +Kerrigan +Kimaya +Kimberlyn +Kingsley +Kiya +Kloey +Kolbie +Kristie +Kyah +Laasya +Lanah +Lanaya +Lanie +Lareen +Lariyah +Laveah +Layah +Leigh +Leni +Leonor +Letty +Lian +Liara +Liliann +Lilibeth +Lillianne +Lillyan +Lillyann +Lilyan +Lilyanne +Luci +Lucile +Lyah +Lyanna +Maddilyn +Maddy +Maddyson +Madelin +Madysen +Maelynn +Mahika +Maiah +Maisey +Maizie +Mandi +Mane +Maneh +Mariaelena +Mariko +Marleigh +Marlow +Marybella +Marylou +Marysol +Mayeli +Mayla +Maylani +Maysa +Mayumi +Mazie +Mehar +Mehr +Melrose +Merary +Mercedez +Michele +Milynn +Minka +Mirna +Mishika +Mithra +Monet +Monserat +Myriam +Naina +Naliyah +Nami +Navi +Naylah +Naylani +Neda +Nethra +Nhi +Nicky +Nihira +Nishka +Noemy +Noora +Nura +Odessa +Oliana +Oliviah +Olympia +Palmer +Pearla +Polina +Posey +Pyper +Raine +Rani +Raniyah +Reegan +Reema +Rene +Rheya +Rhyan +Rilee +Rina +Rishika +Rosalba +Rosella +Rosha +Roshni +Rosibel +Rozlynn +Rumi +Ryen +Sahar +Saidee +Samanvi +Sammi +Saori +Sariya +Scotlyn +Seven +Shaela +Shaylynn +Shelly +Sheryl +Shivani +Shylee +Sincere +Soliana +Sophy +Sophya +Sora +Spirit +Srishti +Sumaya +Suraya +Suzanne +Sydnie +Taelyn +Tamar +Tayler +Tehya +Tierney +Tova +Trinidad +Tristan +Tula +Unknown +Ursula +Vanna +Vanshika +Varnika +Verena +Veyda +Vibha +Vicki +Vittoria +Viviane +Wesley +Weslyn +Winifred +Xyla +Yailin +Yaiza +Yajaira +Yamila +Yanet +Yaslin +Yasmina +Yohana +Yoyo +Ysabelle +Yui +Yzabella +Zaila +Zamaya +Zaniah +Zaniya +Zeina +Zella +Zemira +Zixuan +Zoei +Zoejane +Zuley +Aalaya +Aaleah +Aalyah +Aaria +Aashna +Aby +Adalynne +Adeena +Adelaine +Adhara +Adria +Adriel +Aishani +Aleiyah +Alekhya +Alexah +Alexandrea +Alicen +Alik +Alika +Alix +Alizee +Alliana +Allyana +Alvina +Alyce +Alydia +Amada +Amal +Ambrielle +Ameliah +Amilya +Amorette +Amorie +Amreen +Amrita +Amyra +Anahit +Anahita +Anahy +Analayah +Analucia +Anasofia +Andreah +Andrina +Anely +Anett +Angeleen +Angelin +Angelmarie +Anh +Aniston +Aniyla +Anjelica +Anora +Anvika +Anwita +Anyla +Arayah +Argelia +Aries +Arisa +Arizbeth +Arlin +Arna +Arpi +Arriana +Aryah +Aryannah +Aryel +Aryn +Aseel +Asher +Ashna +Asmi +Atalia +Atiana +Atziry +Aubreyana +Audry +Augusta +Austen +Avaline +Avina +Ayala +Aylani +Aysia +Azaliah +Azayla +Baileigh +Bayleigh +Bea +Bellamarie +Bellamy +Benita +Berkley +Beryl +Betzaida +Bibiana +Bobbi +Braylynn +Breana +Breann +Breeanna +Brelynn +Brigid +Brilee +Bronwyn +Brook +Bryleigh +Caidence +Cailynn +Calina +Calli +Camilah +Casandra +Cassadee +Catelynn +Cathaleya +Celestina +Celestine +Chantel +Chantelle +Charm +Charmaine +Chelsy +Chrissy +Cloe +Cori +Corinna +Corra +Corrine +Cristiana +Crosby +Cruz +Cyrene +Daelyn +Dailynn +Daira +Dakoda +Dalina +Dalyla +Damiyah +Danay +Danely +Danilynn +Darely +Darlah +Dayleen +Daylin +Dayra +Daysi +Decklyn +Deeksha +Deena +Deleyza +Delina +Delta +Delyla +Demiana +Dempsey +Desi +Destinie +Devany +Devynn +Dilynn +Dream +Dunya +Dyanna +Ebony +Edelyn +Edna +Eesha +Eevee +Eira +Elara +Eldana +Eleena +Elisabet +Ellaina +Ellamae +Ellarose +Ely +Elza +Emaan +Emalie +Emalynn +Emarie +Emberly +Emiley +Emmagrace +Emmaly +Emmersyn +Emmylou +Emoni +Erabella +Erianna +Esmee +Eudora +Evalin +Evamarie +Evana +Evanie +Evanna +Eveleen +Evelynne +Fay +Fia +Franchesca +Freedom +Galia +Galina +Genavie +Genesys +Genevy +Gladis +Gohar +Gracy +Gray +Graycen +Gurjot +Gursirat +Hadassa +Hadlee +Hadleigh +Halley +Hareem +Harleyquinn +Harmoni +Harveen +Hasini +Hayleigh +Hedy +Hendrix +Henna +Hera +Hiyab +Husna +Ianna +Icey +Illyana +Imaan +Iqra +Irena +Isidora +Isolde +Isra +Itzia +Iyanah +Iza +Izabela +Izzy +Jaanvi +Jaclynn +Jadyn +Jaela +Jaelene +Jailah +Jalaya +Jalyssa +Jamiah +Janaya +Jannely +Jarely +Jaretzy +Jasmeen +Jasper +Jatziry +Jayce +Jaycie +Jaydalynn +Jaylean +Jaylynne +Jazel +Jazlynne +Jazzlene +Jeimy +Jena +Jennavie +Jerusalem +Jewels +Jeylin +Jireh +Jodi +Jody +Johannah +Joline +Jolynn +Jordana +Josette +Jovanna +Joyanna +Julian +Julienne +Juliett +Kaelin +Kaiah +Kailin +Kaiulani +Kaiyah +Kalila +Kalista +Kaliyanei +Kalliope +Kamora +Kamrynn +Kamya +Kana +Kareena +Karolynn +Kassidi +Kattleya +Kayana +Kayleena +Kaylonnie +Keagan +Keana +Keanna +Keilly +Keilyn +Keniyah +Kennadie +Ketzaly +Keyra +Kezia +Khalessi +Khiara +Khylie +Kiani +Kimi +Kinzley +Kitzia +Kiyah +Kodi +Krishna +Krysten +Kyli +Kynlee +Laina +Laine +Laiyah +Lakshmi +Landry +Landyn +Laniah +Leeann +Leelah +Leiana +Leonna +Liliya +Lindsy +Linette +Lisseth +Liyana +Lizzie +Loreal +Lorely +Lovella +Luana +Lunabella +Luzmaria +Mackenna +Madai +Maddalyn +Maddyn +Madelynne +Madisson +Maelyn +Maha +Mahalia +Mahathi +Mahnoor +Maila +Majesty +Malaika +Malaina +Malana +Malayna +Mali +Manvi +Marelyn +Mariaguadalupe +Maribell +Maricarmen +Marielena +Maris +Mariya +Marvel +Masyn +Mathilda +Mattea +Meara +Merritt +Meryl +Meyah +Miaa +Miarose +Michell +Mihika +Miia +Mikah +Miki +Minna +Miral +Miroslava +Mishka +Monzerrat +Moxie +Muriel +Mykayla +Nabila +Nahlia +Naleah +Nandini +Naomie +Naraly +Nataliya +Natalyn +Nathali +Navreet +Nayah +Nevaeha +Nickole +Nisa +Nitya +Noella +Noely +Nori +Nuvia +Nyree +Nyssa +Octavia +Odalis +Odyssey +Olina +Ora +Osiris +Paisleigh +Parisa +Paxton +Prajna +Preet +Puneet +Quetzal +Quetzali +Raeann +Rainbow +Raniya +Ravneet +Rayan +Raylee +Rebel +Renae +Renatta +Reva +Rhiley +Rhylie +Ridhi +Ridley +Rielle +Rithika +Ritika +Riva +Rochelle +Rogue +Ronnie +Rori +Roselie +Roslynn +Rowena +Roxie +Royale +Ruthie +Rylei +Ryley +Sade +Safiya +Saina +Samhitha +Samiya +Sammie +Samone +Saniah +Sarahy +Sarayah +Sarena +Saria +Savreen +Sayla +Sayler +Seanna +Semira +Setayesh +Shaniya +Shannel +Sharanya +Sharlene +Shruti +Siah +Siana +Simrat +Siri +Sloka +Soledad +Solei +Sophiagrace +Sophiamarie +Srinidhi +Starr +Stephania +Stevi +Sunday +Surina +Suzie +Svetlana +Swayze +Tahiry +Taleah +Taliya +Taylen +Taylin +Taylynn +Teddy +Tenaya +Tenzin +Teresita +Thania +Thelma +Tierra +Tirzah +Tora +Tracey +Tru +TRUE +Tylee +Tylie +Ulyana +Vaani +Vasilisa +Venecia +Videl +Vita +Viviann +Vy +Winona +Wisdom +Wynn +Xia +Xitlalli +Xylia +Yalitza +Yancy +Yaritzi +Yeilin +Yeimi +Yelitza +Yeva +Yihan +Yilia +Yoanna +Yohanna +Yuriana +Yuritzy +Yusra +Zamira +Zamora +Zanayah +Zareena +Zena +Zenobia +Zuly +Zuriel +Zyra +John +William +James +Robert +George +Frank +Joseph +Charles +Edward +Jack +Richard +Raymond +Albert +Harold +Henry +Louis +Walter +Arthur +Thomas +Harry +Joe +Paul +Ernest +Fred +Donald +Clarence +Manuel +Francis +Alfred +Ralph +Carl +Roy +Lawrence +Anthony +Eugene +Howard +Kenneth +Elmer +Andrew +Tony +David +Earl +Leonard +Melvin +Victor +Ray +Antonio +Edwin +Jose +Samuel +Glenn +Stanley +Clifford +Frederick +Norman +Everett +Herbert +Lee +Lloyd +Michael +Clyde +Patrick +Peter +Philip +Daniel +Jesus +Leon +Lewis +Milton +Sam +Theodore +Bernard +Bert +Cecil +Chester +Gene +Herman +Leo +Leroy +Phillip +Vernon +Wilbur +Bill +Gilbert +Gordon +Mike +Allen +Ben +Gerald +Harvey +Juan +Lester +Ronald +Ted +Carlos +Jerry +Leslie +Martin +Maurice +Vincent +Alvin +Angelo +August +Bob +Don +Elwood +Laurence +Matthew +Morris +Nick +Pedro +Steve +Wayne +Alex +Benjamin +Eddie +Floyd +Franklin +Guadalupe +Leland +Mario +Marion +Marshall +Nathan +Oliver +Pete +Russell +Stephen +Tom +Virgil +John +William +Robert +George +James +Charles +Frank +Joseph +Jack +Edward +Harry +Thomas +Arthur +Raymond +Paul +Albert +Richard +Fred +Louis +Harold +Henry +Joe +Walter +Ralph +Alfred +Lawrence +Carl +Donald +Kenneth +Roy +Stanley +Clarence +Ernest +Manuel +Francis +Leo +Earl +Edwin +David +Eugene +Victor +Andrew +Daniel +Elmer +Howard +Lloyd +Peter +Ray +Herbert +Jose +Leonard +Philip +Sam +Alvin +Frederick +Norman +Samuel +Vernon +Anthony +Floyd +Juan +Lewis +Milton +Tony +Gerald +Herman +Leslie +Melvin +Theodore +Everett +Marshall +Clifford +Clyde +Gilbert +Martin +Michael +Nick +Antonio +Chester +Gene +Gordon +Lee +Tom +Arnold +Ben +Bernard +Eddie +Glenn +Leroy +Mike +Patrick +Pete +Stephen +Warren +Wesley +Alex +Allen +Benjamin +Charlie +Don +Edgar +Laurence +Leland +Marion +Nicholas +Russell +Steve +Vincent +Wilbur +Alexander +Douglas +Emil +Emmett +Hugh +Irvin +Jesus +Leon +Lester +Mario +Maurice +Morris +Otto +Pedro +Wayne +Al +Alan +Alfonso +Bennie +Bruce +Emilio +Felix +Homer +Jerry +Louie +Marvin +Merle +Oliver +Phillip +Roger +Ronald +Rudolph +Willis +John +William +Robert +George +James +Frank +Charles +Joseph +Edward +Jack +Richard +Albert +Harold +Walter +Thomas +Donald +Raymond +Henry +Fred +Paul +Harry +Joe +Arthur +Kenneth +Alfred +Louis +Ernest +Howard +Ralph +Carl +Clarence +David +Edwin +Lawrence +Manuel +Herbert +Stanley +Earl +Francis +Eugene +Peter +Roy +Philip +Leonard +Ray +Theodore +Norman +Anthony +Frederick +Daniel +Glenn +Leo +Floyd +Lloyd +Vernon +Victor +Wilbur +Elmer +Leslie +Melvin +Tony +Andrew +Clyde +Gordon +Russell +Lester +Samuel +Herman +Jose +Martin +Michael +Clifford +Gilbert +Lewis +Maurice +Chester +Laurence +Milton +Tom +Vincent +Leroy +Sam +Willard +Benjamin +Bernard +Alvin +Everett +Gerald +Marion +Mike +Phillip +Rudolph +Sidney +Warren +Antonio +Claude +Lee +Leon +Pete +Wesley +Alfonso +Edgar +Juan +Woodrow +Alexander +Nick +Wallace +Wayne +Cecil +Franklin +Jesus +Max +Wilfred +Alex +Homer +Hugh +Jimmie +Roland +Stephen +Adolph +Allen +Bill +Byron +Eddie +Jesse +Marvin +Masao +Morris +Oscar +Reginald +Roger +Steve +Angelo +August +Ben +Bruce +Dan +Douglas +Hubert +Loren +Oliver +Pedro +Ted +Willie +Allan +Archie +Bert +Don +Dudley +Edmond +Elwood +Glen +Harvey +Horace +Karl +Keith +Louie +Lowell +Mario +Mark +Miguel +Nicholas +Arnold +Dale +Delbert +Edmund +Elbert +Fernando +Ivan +Jay +Jerome +Jess +Marshall +Mervin +Rolland +Steven +Wilbert +Burton +Carroll +Clayton +Dave +Earle +Elmo +Elvin +Felix +Francisco +Irving +Jacob +Jerry +Julius +Leland +Malcolm +Orville +Ross +Ward +Willis +Alan +Aubrey +Austin +Charlie +Chris +Dean +Dwight +Ellis +Ellsworth +Emile +Forrest +Fredrick +Gene +Guy +Harley +Larry +Lyle +Melville +Merle +Nathan +Orval +Percy +Randolph +Roscoe +Ruben +Sydney +Virgil +Wilson +Alden +Armand +Beverly +Bob +Carlos +Clifton +Clinton +Curtis +Darrell +Delmar +Dominic +Eldon +Emerson +Erwin +Frederic +Guido +Irwin +Jim +Julian +Luis +Lynn +Matthew +Morton +Myron +Neil +Noel +Owen +Patrick +Ricardo +Salvatore +Verne +John +William +Robert +George +Frank +James +Charles +Edward +Joseph +Jack +Richard +Arthur +Thomas +Walter +Albert +Harry +Harold +Fred +Raymond +Henry +Paul +Donald +Ralph +Carl +Joe +Louis +Howard +Alfred +Kenneth +Lawrence +Roy +Francis +Earl +Ernest +Eugene +Clarence +David +Herbert +Manuel +Anthony +Lloyd +Edwin +Norman +Stanley +Daniel +Ray +Vincent +Peter +Elmer +Frederick +Leonard +Theodore +Samuel +Alvin +Gordon +Glenn +Leo +Philip +Tony +Lester +Vernon +Andrew +Chester +Clifford +Milton +Russell +Melvin +Gerald +Leslie +Victor +Warren +Sam +Floyd +Leland +Marvin +Herman +Arnold +Everett +Lee +Maurice +Michael +Wesley +Angelo +Ben +Edgar +Martin +Mike +Pete +Rudolph +Bert +Jose +Leroy +Cecil +Clyde +Bernard +Bruce +Harvey +Lewis +Patrick +Marion +Roland +Wilbur +Alexander +Hugh +Jesse +Morris +Douglas +Karl +Laurence +Sidney +Allen +Benjamin +Irving +Nick +Wallace +Antonio +Claude +Don +Eddie +Franklin +Leon +Woodrow +Archie +Felix +Max +Virgil +August +Gilbert +Glen +Jerry +Kazuo +Marshall +Oscar +Roger +Steve +Tom +Adolph +Dan +Horace +Julius +Louie +Nathan +Ronald +Toshio +Willard +Dale +Emil +Jacob +Jesus +Juan +Lowell +Mario +Mark +Nicholas +Oliver +Rex +Wayne +Wilfred +Alex +Byron +Clifton +Cyril +Forrest +Gus +Hiroshi +Homer +Hubert +Irvin +Jean +Jerome +Otto +Phillip +Ross +Stuart +Willie +Willis +Wilson +Allan +Bill +Clinton +Dominic +Dudley +Earle +Edmund +Gene +Guy +Jay +Jimmie +Johnnie +Julian +Yoshio +Alfonso +Charlie +Chris +Ellis +Elwood +Hideo +Isamu +Masao +Merle +Noel +Reginald +Salvatore +Stephen +Takeo +Ted +Aldo +Antone +Augustine +Bruno +Burton +Calvin +Carlos +Dave +Dick +Elbert +Emery +Ferdinand +Francisco +Ivan +Jim +Joel +Larry +Luis +Lyle +Myron +Pedro +Ramon +Wilbert +Alan +Angel +Armand +Clair +Curtis +Dean +Dennis +Ellsworth +Elmo +Frederic +Fredrick +Geoffrey +Jess +Joaquin +Johnny +Lynn +Masami +Mervin +Adrian +Alton +Aubrey +Aurelio +Austin +Bob +Carlton +Conrad +Darrell +Donn +Eldon +Elton +Elvin +Emile +Emmett +Forest +Loren +Malcolm +Masaji +Matthew +Merrill +Mervyn +Nelson +Noboru +Orville +Rafael +Roderick +Rodney +Salvador +Takashi +Ward +Wendell +Winston +John +William +Robert +George +James +Frank +Charles +Edward +Joseph +Jack +Richard +Albert +Walter +Henry +Thomas +Donald +Fred +Harold +Raymond +Paul +Harry +Arthur +Louis +Joe +Kenneth +David +Alfred +Ralph +Ernest +Lawrence +Roy +Manuel +Howard +Stanley +Carl +Francis +Eugene +Clarence +Earl +Elmer +Anthony +Edwin +Frederick +Andrew +Herbert +Tony +Norman +Russell +Leonard +Ray +Lloyd +Peter +Victor +Gordon +Leo +Philip +Martin +Melvin +Milton +Vincent +Daniel +Floyd +Theodore +Everett +Lester +Leroy +Clifford +Leslie +Samuel +Willard +Glenn +Warren +Bernard +Michael +Herman +Chester +Gerald +Jose +Gilbert +Vernon +Alvin +Pete +Benjamin +Sam +Angelo +Claude +Clyde +Don +Wallace +Tom +Wilbur +Harvey +Lee +Mike +Arnold +Leland +Lewis +Oliver +Alexander +Marion +Wesley +Edgar +Homer +Allen +Antonio +Emil +Louie +Marvin +Nick +Ben +Mario +Oscar +Ted +Archie +Bert +Hugh +Julius +Laurence +Phillip +Sidney +Stephen +Douglas +Eddie +Edmund +Jerome +Masao +Nicholas +Alan +Alex +Cecil +Johnnie +Leon +Rudolph +Bill +Jesse +Myron +Ramon +Byron +Clinton +Delbert +Gene +Larry +Morris +Patrick +Pedro +Ronald +Wayne +Willie +Bob +Bruce +Horace +Juan +Luis +Malcolm +Max +Roger +Virgil +Bertram +Calvin +Franklin +Glen +Irving +Maurice +Nathan +Toshio +Chris +Curtis +Dominic +Emmett +Julian +Karl +Mark +Bruno +Dan +Hubert +Jesus +Roland +Salvador +Willis +Woodrow +Yoshio +Adolph +Allan +Carroll +Clifton +Dale +Ellis +Ellsworth +Erwin +Francisco +Hideo +Jimmie +Kazuo +Lowell +Steve +Austin +Carlos +Dick +Elden +Eldon +Elvin +Elwood +Guadalupe +Gus +Guy +Hiroshi +Irvin +Jackson +Jess +Mervin +Otto +Stuart +Verne +Wendell +Alton +Antone +Augustine +Beverly +Clayton +Cornelius +Dave +Earle +Ferdinand +Frederic +Guido +Hugo +Ivan +Jerry +Lyle +Orville +Reginald +Sydney +Tadashi +Ward +Wilfred +Alva +August +Bennie +Burton +Carlton +Darrell +Duane +Elbert +Elmo +Eric +Ervin +Fernando +Gino +Harrison +Irwin +Julio +Lionel +Luther +Marshall +Masaru +Nelson +Perry +Romeo +Ross +Salvatore +Steven +Takeo +Aaron +Akira +Alden +Alphonse +Basil +Charlie +Clark +Clement +Dean +Emery +Emile +Fredrick +Harlan +Jacob +Jean +Jimmy +Joaquin +Justin +Kermit +Kirk +Kiyoshi +Lincoln +Masami +Merle +Merrill +Miguel +Monroe +Owen +Reno +Rinaldo +Stewart +Tommy +Tsutomu +Wilson +Abraham +Adrian +Al +Aldo +Alfonso +Amos +Arden +Boyd +Chas +Conrad +Dante +Domingo +Edmond +Elton +Felix +Gregory +Grover +Harley +Isamu +Jay +Jim +Johnny +Keith +Kenji +Laverne +Lorenzo +Lupe +Lyman +Lynn +Marcus +Masato +Masayoshi +Matthew +Mervyn +Millard +Minoru +Mitchell +Neil +Reuben +Rex +Sherman +Shozo +Torao +Van +Waldo +Wilbert +John +William +Robert +George +James +Frank +Charles +Joseph +Edward +Jack +Albert +Richard +Harold +Arthur +Walter +Thomas +Donald +Henry +Joe +Paul +Fred +Harry +Raymond +Louis +Ralph +Ernest +Manuel +Kenneth +David +Alfred +Roy +Carl +Lawrence +Howard +Francis +Peter +Eugene +Stanley +Herbert +Edwin +Melvin +Clarence +Elmer +Tony +Earl +Norman +Anthony +Lloyd +Leo +Leonard +Victor +Andrew +Philip +Daniel +Frederick +Theodore +Vernon +Ray +Willard +Vincent +Chester +Russell +Alvin +Samuel +Bernard +Clifford +Martin +Gordon +Sam +Everett +Leroy +Lester +Milton +Warren +Gilbert +Glenn +Lewis +Tom +Michael +Benjamin +Herman +Jose +Leslie +Cecil +Gerald +Floyd +Marvin +Ben +Douglas +Marion +Allen +Wayne +Antonio +Leland +Mike +Arnold +Harvey +Lee +Leon +Wilbur +Clyde +Edgar +Maurice +Wallace +Alexander +Angelo +August +Don +Mario +Sidney +Laurence +Pete +Wesley +Louie +Nick +Oliver +Roger +Bill +Hiroshi +Homer +Julius +Gene +Horace +Hugh +Karl +Morris +Nicholas +Patrick +Bert +Bruce +Jesse +Alex +Irving +Roland +Stephen +Glen +Guido +Max +Phillip +Wilfred +Willis +Bruno +Clinton +Emil +Ivan +Loren +Allan +Dan +Elbert +Ellis +Franklin +Hubert +Willie +Yoshio +Dale +Johnnie +Minoru +Adolph +Archie +Byron +Johnny +Masao +Woodrow +Alan +Bob +Carlos +Eddie +Francisco +Kazuo +Keith +Mark +Merle +Ronald +Salvador +Ted +Charlie +Delbert +Irvin +Julian +Lowell +Malcolm +Pedro +Kiyoshi +Larry +Marshall +Miguel +Myron +Perry +Ramon +Wendell +Antone +Claude +Clayton +Conrad +Curtis +Darrell +Earle +Edmund +Elmo +Felix +Ira +Irwin +Jerry +Jess +Jim +Lyle +Neil +Oscar +Otto +Ross +Steve +Tadashi +Bertram +Carroll +Hugo +Jean +Jerome +Tommy +Toshio +Virgil +Alden +Aldo +Duane +Edmond +Elvin +Elwood +Jacob +Jesus +Mervyn +Nathan +Orville +Rudolph +Burton +Calvin +Carlton +Dave +Dean +Dominic +Elton +Emmett +Eric +Evan +Forrest +Gabriel +Guy +Jimmy +Joaquin +Luis +Matthew +Mervin +Percy +Reginald +Shigeru +Barney +Beverly +Clark +Clifton +Elwin +Emilio +Ervin +Grant +Gus +Harley +Ichiro +Jackson +Juan +Jules +Luther +Mitchell +Mitsuo +Ned +Owen +Rex +Salvatore +Sherman +Silvio +Sterling +Steven +Takashi +Wilbert +Armand +Armando +Austin +Chris +Cornelius +Dante +Frederic +Gino +Hideo +Jay +Lino +Merrill +Orval +Phil +Rafael +Roderick +Rowland +Rudy +Shirley +Simon +Takeshi +Wilson +Yukio +Aaron +Adrian +Alfonso +Alfredo +Augustine +Bennie +Benny +Billy +Bud +Christopher +Cyril +Dee +Delmar +Dennis +Dick +Eldon +Emile +Enrique +Ferdinand +Fredric +Fredrick +Guadalupe +Haig +Hal +Mathew +Matt +Miles +Noboru +Nobuo +Noel +Otis +Reno +Timothy +Vern +Waldo +Walton +Ward +Akira +Al +Americo +Anton +Charley +Clement +Dwight +Ed +Elio +Ellsworth +Elwyn +Emerson +Emery +Erwin +Gregory +Harrison +Isamu +Isao +Jasper +Jessie +Joel +Kermit +Mary +Masaru +Milo +Morgan +Rene +Ruben +Shigeo +Spencer +Stanton +Stewart +Susumu +Verne +Wright +John +Robert +William +George +James +Charles +Frank +Joseph +Jack +Edward +Richard +Donald +Albert +Arthur +Walter +Henry +Paul +Harold +Raymond +Thomas +Joe +Harry +Fred +Ralph +Ernest +Louis +Manuel +David +Kenneth +Alfred +Carl +Roy +Lawrence +Francis +Clarence +Howard +Eugene +Norman +Earl +Stanley +Edwin +Elmer +Lloyd +Herbert +Peter +Daniel +Leonard +Philip +Tony +Leo +Vernon +Frederick +Victor +Melvin +Andrew +Chester +Theodore +Sam +Russell +Anthony +Gerald +Clifford +Samuel +Warren +Glenn +Ray +Jose +Bernard +Milton +Alvin +Martin +Pete +Lester +Clyde +Gordon +Leslie +Lewis +Marvin +Mike +Vincent +Edgar +Ben +Bill +Wilbur +Floyd +Leroy +Willard +Allen +Hugh +Don +Nicholas +Tom +Arnold +Everett +Herman +Michael +Woodrow +Alexander +Eddie +Phillip +August +Benjamin +Claude +Douglas +Louie +Angelo +Antonio +Forrest +Oscar +Salvador +Cecil +Edmund +Harvey +Lee +Leon +Oliver +Wesley +Dan +Hiroshi +Nick +Bruce +Glen +Jim +Leland +Maurice +Wallace +Allan +Mario +Patrick +Stephen +Wayne +Yoshio +Gilbert +Jesse +Marion +Rudolph +Jerry +Malcolm +Alan +Bert +Adolph +Alfonso +Bob +Gene +Irving +Jesus +Laurence +Masao +Alex +Franklin +Hubert +Johnnie +Juan +Karl +Roger +Willis +Elwood +Ronald +Virgil +Calvin +Cyril +Delbert +Felix +Homer +Jess +Julian +Max +Ted +Clinton +Dale +Ellis +Kiyoshi +Marshall +Shigeo +Sidney +Steve +Byron +Elbert +Erwin +Guy +Jay +Ramon +Wilfred +Burton +Emil +Ivan +Julius +Merle +Otto +Roland +Aldo +Angel +Archie +Carlos +Clayton +Dave +Gus +Matthew +Willie +Charlie +Dante +Dean +Dick +Fredrick +Horace +Hugo +Irvin +Julio +Keith +Lowell +Luis +Morris +Myron +Sydney +Tatsuo +Wilbert +Wilson +Antone +Bruno +Carroll +Clark +Dominic +Earle +Hideo +Jimmie +Masaru +Rex +Wendell +Adrian +Attilio +Bennie +Conrad +Dario +Darrell +Guido +Harley +Jerome +Loren +Lorin +Lyman +Neil +Noel +Perry +Ross +Shigeru +Alden +Alfredo +Austin +Chris +Dudley +Elmo +Elvin +Emery +Emmett +Francisco +Jacob +Larry +Mark +Merton +Minoru +Murray +Noboru +Owen +Reginald +Timothy +Verne +Akira +Al +Billy +Elden +Eli +Emilio +Evan +Ferdinand +Frederic +Gabriel +Grant +Grover +Isamu +Jean +Joaquin +Jules +Katsumi +Lupe +Luther +Marcus +Mervyn +Nathan +Neal +Norris +Pedro +Roscoe +Toshio +Alton +Anton +Armando +Augustine +Dana +Eldon +Johnny +Lincoln +Percy +Refugio +Rodney +Rolland +Rollin +Ruben +Shirley +Silvio +Sterling +Takashi +Vern +Yutaka +Americo +Bertram +Boyd +Carlton +Christopher +Clement +Clifton +Curtis +Dwight +Eldred +Ellsworth +Elton +Emerson +Eric +Fernando +Gail +Gregory +Gustave +Haig +Harrison +Jake +Jimmy +Justin +Kazuo +Margarito +Mathew +Mervin +Miguel +Nathaniel +Nelson +Orville +Otis +Phil +Raul +Rufus +Salvatore +Sheldon +Sherman +Stewart +Tadao +Tommy +Trinidad +Aaron +Abraham +Adolfo +Amos +Bernardo +Beverly +Carleton +Claud +Darwin +Dennis +Desmond +Dino +Earnest +Enrique +Fredric +Gaylord +Guadalupe +Hal +Ichiro +Irwin +Isaac +Jackson +Joel +Kenichi +Kenji +Lou +Lyle +Lynn +Mack +Miles +Nello +Norbert +Norton +Orval +Pat +Preston +Rene +Reno +Reuben +Romeo +Santos +Spencer +Steven +Thornton +Tsutomu +Vaughn +Ward +Winfield +John +Robert +William +George +James +Frank +Charles +Richard +Edward +Joseph +Jack +Donald +Walter +Albert +Joe +Thomas +Arthur +Harold +Paul +Raymond +Henry +Harry +Ernest +Fred +Louis +David +Kenneth +Manuel +Ralph +Roy +Alfred +Lawrence +Howard +Francis +Clarence +Norman +Earl +Carl +Edwin +Herbert +Stanley +Eugene +Peter +Lloyd +Tony +Anthony +Daniel +Frederick +Elmer +Clifford +Philip +Ray +Leonard +Leo +Melvin +Andrew +Victor +Gordon +Lester +Milton +Russell +Chester +Sam +Vernon +Vincent +Gerald +Pete +Glenn +Warren +Leroy +Theodore +Douglas +Everett +Leslie +Martin +Jose +Leland +Clyde +Willard +Tom +Alvin +Bill +Bernard +Lee +Wesley +Benjamin +Mike +Floyd +Ben +Gilbert +Harvey +Marvin +Wilbur +Don +Allen +Homer +Jesse +Phillip +Antonio +Herman +Leon +Michael +Wayne +Hugh +Maurice +Nick +Samuel +Alexander +Edgar +Bruce +Emil +Lewis +Roger +Salvador +Angelo +Bob +Eddie +Gene +Jesus +Louie +Rudolph +Max +Oscar +Stephen +Allan +Jay +Jerry +Jim +Ted +Hiroshi +Steve +Wallace +Woodrow +Alan +Dan +Glen +Irving +Arnold +Bert +Cecil +Elwood +Franklin +Julian +Mario +Morris +Patrick +Johnnie +Johnny +Mark +Pedro +Roland +Carlos +Claude +Karl +Marion +Alfonso +Horace +Jess +Masao +Minoru +Oliver +Wilfred +Alex +Edmund +Felix +Forrest +Juan +Luis +Marshall +Ronald +Shigeru +Aldo +Eldon +Gus +Hubert +Laurence +Otto +Virgil +Willis +Adolph +Dudley +Fredrick +Hideo +Kazuo +Kiyoshi +Merle +Nicholas +Yoshio +Archie +Bruno +Clinton +Delbert +Jerome +Sydney +Calvin +Carroll +Domingo +Dominic +Elmo +Fernando +Francisco +Ignacio +Ivan +Larry +Myron +Owen +Clayton +Clifton +Dean +Dick +Elbert +Grant +Guy +Isamu +Loren +Masami +Sidney +Stuart +Takashi +Bertram +Charlie +Enrique +Erwin +Harley +Ira +Irvin +Malcolm +Matthew +Timothy +Toshio +Wendell +Willie +Antone +Curtis +Edmond +Jean +Jimmie +Julius +Lionel +Lowell +Masaru +Orville +Ramon +Rodney +Ross +Sherman +Tadashi +Aaron +Bud +Burton +Byron +Carlo +Dale +Ichiro +Irwin +Jimmy +Joaquin +Julio +Laverne +Miguel +Mitsuo +August +Austin +Carlton +Clement +Earle +Elton +Elvin +Emmett +Gabriel +Lorenzo +Lyle +Lynn +Masato +Nelson +Porfirio +Rudy +Alonzo +Angel +Benny +Billy +Conrad +Dante +Dave +Ellsworth +Grover +Guido +Harrison +Luther +Miles +Noboru +Otis +Rafael +Reginald +Royal +Satoru +Shigeo +Steven +Tadao +Verne +Yutaka +Abraham +Adrian +Agustin +Akira +Alden +Augustine +Barney +Dwight +Eric +Jacob +Kaoru +Keith +Merrill +Mervin +Nathan +Pablo +Roderick +Rodolfo +Rufus +Salvatore +Sebastian +Silvio +Spencer +Takao +Tomas +Toru +Vance +Wilbert +Wilson +Andy +Bennie +Ed +Eldred +Elias +Emilio +Forest +Frederic +Gail +Jackson +Joesph +Katsumi +Kazumi +Lyman +Marcel +Maynard +Mervyn +Milford +Milo +Neal +Neil +Orrin +Perry +Raul +Reno +Rex +Reynold +Scott +Stanford +Takeo +Toshiyuki +Trinidad +Tsutomu +Verner +Yukio +Abel +Al +Alberto +Alfredo +Alphonse +Aubrey +Bernhard +Bradford +Carmen +Charley +Chauncey +Chris +Christian +Cornelius +Dewey +Ellis +Elmore +Emile +Evan +Federico +Gino +Guadalupe +Hajime +Hal +Harlan +Harris +Haruo +Herschel +Jasper +Lincoln +Marcus +Mary +Masayuki +Mathew +Merritt +Millard +Nello +Nicolas +Noel +Orlando +Orval +Pat +Renato +Rene +Roberto +Roscoe +Rupert +Saburo +Santos +Shiro +Susumu +Truman +Waldo +Ward +Robert +John +William +George +James +Frank +Charles +Edward +Jack +Richard +Joseph +Donald +Albert +Raymond +Harold +Harry +Arthur +Walter +Joe +Thomas +Henry +Paul +Fred +David +Manuel +Louis +Ernest +Ralph +Kenneth +Howard +Alfred +Roy +Eugene +Carl +Stanley +Earl +Francis +Victor +Lawrence +Tony +Herbert +Clarence +Norman +Lloyd +Edwin +Peter +Anthony +Daniel +Elmer +Leonard +Jose +Melvin +Frederick +Andrew +Russell +Philip +Clifford +Gerald +Ray +Warren +Glenn +Gordon +Lester +Chester +Leo +Leroy +Vernon +Milton +Tom +Bernard +Theodore +Vincent +Samuel +Leslie +Martin +Sam +Clyde +Floyd +Douglas +Lewis +Alvin +Don +Pete +Bill +Bob +Jesus +Bruce +Phillip +Wayne +Wilbur +Harvey +Mike +Sidney +Hugh +Wesley +Willard +Ben +Benjamin +Nick +Wallace +Alexander +Herman +Antonio +Michael +Everett +Juan +Leon +Maurice +Oliver +Franklin +Leland +Marvin +Salvador +Woodrow +Arnold +Bert +Edgar +Allen +Gilbert +Irving +Lee +Carlos +Eddie +Louie +Glen +Jim +Masao +Claude +Marion +Roger +Allan +Angelo +Cecil +Felix +Jesse +Mario +Morris +Willis +Laurence +Ramon +Alan +Archie +Emil +Gene +Rudolph +Yoshio +Edmund +Jimmie +Roland +Virgil +Curtis +Homer +Kazuo +Max +Oscar +Ted +Charlie +Dan +Delbert +Jerry +Jess +Pedro +Dale +Loren +Merle +Nicholas +Ross +Clinton +Francisco +Fredrick +Ronald +Steve +Willie +Mark +Wilson +Johnny +Kiyoshi +Mervin +Minoru +Patrick +Wendell +Akira +Alex +August +Austin +Dave +Dick +Forrest +Jean +Stephen +Toshio +Aldo +Antone +Eldon +Emmett +Guido +Hideo +Jerome +Jimmy +Malcolm +Rafael +Calvin +Clayton +Domingo +Hiroshi +Ivan +Johnnie +Julius +Karl +Larry +Miguel +Orville +Perry +Reginald +Shigeru +Adolph +Burton +Chris +Dennis +Dominic +Guy +Hubert +Lyle +Marshall +Salvatore +Alfonso +Armando +Bertram +Bruno +Dean +Edmond +Erwin +Ignacio +Irvin +Julian +Luis +Neil +Alfredo +Bennie +Cruz +Darrell +Earnest +Elbert +Harrison +Horace +Isamu +Jay +Rodney +Benny +Byron +Clifton +Duane +Dudley +Ellis +Gus +Julio +Keith +Lorenzo +Mervyn +Owen +Sherman +Stuart +Trinidad +Angel +Augustine +Billy +Clair +Clark +Ellsworth +Elwood +Felipe +Gabriel +Iwao +Jiro +Lowell +Lupe +Mary +Matthew +Mitchell +Myron +Nathan +Noboru +Orval +Otto +Rex +Tadashi +Verne +Alberto +Carlo +Cyril +Earle +Eric +Evan +Grover +Joaquin +Lynn +Moses +Nathaniel +Neal +Phil +Rodolfo +Rolland +Shigeo +Stewart +Waldo +Wilfred +Yukio +Aaron +Abe +Abraham +Al +Anton +Attilio +Aubrey +Bud +Carlton +Carroll +Charley +Craig +Dwight +Elmo +Elvin +Ernesto +Fernando +Fletcher +Frederic +Gino +Grant +Gregory +Hal +Ira +Jacob +Jake +Kenichi +Kenji +Luther +Marcus +Masashi +Masato +Millard +Mitsuo +Newton +Pershing +Raul +Roberto +Romeo +Rudy +Silvio +Simon +Susumu +Takashi +Takeshi +Valentine +Vern +Wilbert +Yasuo +Abel +Adolfo +Alton +Americo +Armand +Basilio +Benito +Christopher +Dino +Ed +Emile +Emilio +Fidel +Frankie +Gardner +Gary +Gregorio +Harlan +Harley +Italo +Jackson +Ken +Lincoln +Lyman +Mack +Masaharu +Masami +Masaru +Merrill +Pablo +Preston +Refugio +Rene +Saul +Shirley +Sydney +Takeo +Terry +Tomas +Tommy +Ward +Wilber +Winston +Yoshiharu +Andres +Andy +Arden +Barney +Beverly +Bradford +Caesar +Conrad +Dante +Delmar +Elroy +Elton +Elwyn +Enrique +Ervin +Gerard +Giles +Henri +Hugo +Ichiro +Irwin +Isao +Jules +Kaoru +Kent +Laverne +Lino +Lionel +Loyd +Marcel +Marcelino +Marne +Mathew +Melbourne +Nelson +Nicolas +Nobuo +Noel +Orrin +Pat +Reuben +Roscoe +Ruben +Santos +Spencer +Sterling +Timothy +Vance +Weldon +Robert +John +William +George +James +Frank +Charles +Richard +Jack +Edward +Joseph +Donald +Raymond +Joe +Albert +Arthur +Harold +Thomas +Walter +Harry +Paul +Henry +Fred +David +Kenneth +Manuel +Ralph +Eugene +Roy +Ernest +Alfred +Lawrence +Louis +Carl +Stanley +Howard +Norman +Tony +Earl +Elmer +Clarence +Edwin +Francis +Herbert +Melvin +Leonard +Peter +Daniel +Anthony +Lloyd +Clifford +Jose +Ray +Vernon +Victor +Leo +Andrew +Leroy +Frederick +Theodore +Douglas +Glenn +Vincent +Gordon +Jesus +Milton +Benjamin +Russell +Gilbert +Philip +Tom +Warren +Floyd +Lester +Bill +Don +Clyde +Harvey +Lee +Martin +Marvin +Mike +Sam +Chester +Gerald +Leslie +Bernard +Michael +Antonio +Pete +Wallace +Wayne +Maurice +Salvador +Alvin +Samuel +Bruce +Juan +Leland +Phillip +Herman +Louie +Nick +Ben +Lewis +Willard +Luis +Dick +Everett +Wesley +Angelo +Johnny +Eddie +Oscar +Bob +Hugh +Oliver +Wilbur +Alex +Dan +Alan +Roger +Sidney +Allan +Franklin +Mario +Roland +Cecil +Edgar +Jesse +Jim +Jimmie +Pedro +Alexander +Bert +Glen +Max +Stephen +Arnold +Dale +Irving +Larry +Marion +Ted +August +Claude +Laurence +Leon +Carlos +Forrest +Johnnie +Marshall +Miguel +Willis +Allen +Emil +Felix +Francisco +Horace +Julius +Mark +Patrick +Hiroshi +Jerry +Julian +Keith +Kiyoshi +Calvin +Gene +Homer +Jess +Masao +Morris +Tommy +Virgil +Archie +Billy +Elwood +Guido +Kazuo +Minoru +Myron +Ramon +Yoshio +Clinton +Guadalupe +Nathan +Rudolph +Wilfred +Dave +Guy +Karl +Loren +Malcolm +Ronald +Steve +Ward +Woodrow +Augustine +Curtis +Dean +Edmund +Owen +Toshio +Wilson +Adolph +Clayton +Hideo +Jay +Jimmy +Lupe +Lyle +Merle +Steven +Willie +Bennie +Carroll +Charlie +Clifton +Dominic +Edmond +Jacob +Jerome +Lynn +Takashi +Burton +Clark +Cruz +Cyril +Delbert +Ivan +Julio +Lowell +Otto +Perry +Rafael +Rodney +Ruben +Takeo +Akira +Alberto +Domingo +Eldon +Emmett +Fredrick +Gino +Merrill +Neil +Refugio +Ross +Trinidad +Dudley +Ellis +Eric +Mervin +Noboru +Orville +Roberto +Shigeru +Tadao +Alfonso +Armand +Armando +Carmen +Conrad +Elton +Enrique +Haruo +Hubert +Kenji +Nicholas +Santos +Takeshi +Verne +Adrian +Alfredo +Boyd +Fidel +Gus +Jean +Luther +Neal +Nelson +Susumu +Sylvester +Teruo +Yukio +Antone +Benny +Bertram +Billie +Byron +Christian +Clement +Darrell +Ed +Elliott +Felipe +Freddie +Frederic +Gabriel +Grant +Ignacio +Irvin +Isao +Mac +Miles +Mitchell +Rene +Rex +Roscoe +Salvatore +Stuart +Agustin +Al +Aldo +Alton +Andres +Celestino +Chris +Claud +Earle +Elbert +Elmo +Fernando +Gonzalo +Harlan +Harley +Harrison +Ichiro +Ira +Isamu +Jackson +Joesph +Laverne +Lyman +Masato +Mervyn +Murray +Nicolas +Noel +Pablo +Pascual +Raul +Ricardo +Sammy +Sheldon +Simon +Sydney +Tadashi +Tsutomu +Vern +Yasuo +Alden +Alonzo +Americo +Anastacio +Angel +Aurelio +Bud +Burt +Charley +Cornelius +Dino +Elias +Emilio +Enrico +Fermin +Gregory +Grover +Hugo +Isaac +Joaquin +Leopoldo +Lionel +Lorenzo +Lorin +Marcus +Mary +Masaru +Mathew +Matthew +Melville +Millard +Newton +Otis +Pat +Saburo +Santiago +Sebastian +Sherman +Takao +Taro +Timothy +Wendell +Wilbert +Yutaka +Andy +Austin +Basil +Benito +Bruno +Carlton +Carrol +Cedric +Clare +Cristobal +Delmer +Dennis +Douglass +Duane +Elvin +Elwyn +Emery +Emile +Ernie +Ervin +Erwin +Forest +Genaro +Gerard +Guillermo +Hector +Hilario +Iwao +Jon +Kay +Kazuto +Ken +Kermit +Lucio +Mamoru +Marcel +Marcelino +Margarito +Masaji +Masami +Maynard +Milan +Mitsuo +Nickolas +Norris +Orlando +Palmer +Percy +Preston +Reuben +Royce +Rudolf +Sadao +Sanford +Satoshi +Seiichi +Shigeki +Shigeo +Stewart +Teddy +Tetsuo +Walton +Wilber +Robert +John +William +George +James +Charles +Frank +Richard +Jack +Edward +Joseph +Donald +Raymond +Harold +Albert +Joe +Thomas +Walter +Henry +Arthur +Paul +Harry +Kenneth +David +Manuel +Ralph +Fred +Louis +Ernest +Eugene +Alfred +Roy +Howard +Earl +Lawrence +Jose +Stanley +Herbert +Carl +Clarence +Norman +Warren +Leonard +Peter +Anthony +Francis +Tony +Vernon +Edwin +Melvin +Bill +Jesus +Daniel +Russell +Gordon +Leo +Lloyd +Ray +Theodore +Victor +Elmer +Gerald +Frederick +Philip +Andrew +Glenn +Clifford +Antonio +Leroy +Douglas +Leslie +Vincent +Clyde +Alvin +Milton +Bob +Martin +Chester +Sam +Tom +Wallace +Gilbert +Marvin +Mike +Wilbur +Leland +Pete +Salvador +Floyd +Lewis +Everett +Lester +Francisco +Benjamin +Bruce +Michael +Carlos +Samuel +Harvey +Juan +Wesley +Angelo +Ben +Bernard +Lee +Don +Jesse +Jim +Roger +Eddie +Wayne +Edgar +Herman +Phillip +Allen +Claude +Alan +Maurice +Alexander +Willard +Dale +Gene +Hugh +Ramon +Homer +Oscar +Roland +Louie +Morris +Nick +Oliver +Arnold +Bert +Cecil +Jerry +Leon +Allan +Mario +Dan +Jess +Johnny +Luis +Marshall +Max +Edmund +Forrest +Franklin +Alex +August +Kiyoshi +Pedro +Dick +Irving +Rex +Ted +Johnnie +Masao +Minoru +Stephen +Felix +Julius +Ruben +Alfonso +Billy +Byron +Elmo +Ignacio +Jimmie +Keith +Laurence +Charlie +Dave +Fredrick +Hubert +Jimmy +Sidney +Angel +Clayton +Fernando +Guy +Karl +Larry +Rudolph +Willis +Yoshio +Delbert +Kenji +Malcolm +Orville +Raul +Ronald +Wilfred +Alberto +Clinton +Emil +Emmett +Glen +Jay +Lowell +Merle +Nicholas +Rafael +Steve +Adolph +Burton +Dean +Elwood +Hiroshi +Julian +Owen +Patrick +Virgil +Wendell +Archie +Armando +Benny +Guadalupe +Hideo +Irvin +Jerome +Lynn +Mervin +Curtis +Darrell +Elbert +Erwin +Gus +Kazuo +Loren +Matthew +Calvin +Domingo +Edmond +Enrique +Jean +Joaquin +Marion +Masaru +Miguel +Tommy +Armand +Carlton +Chris +Dante +Harley +Jackson +Lorenzo +Lyle +Mark +Mitsuo +Neil +Rodney +Ross +Tadashi +Toshio +Trinidad +Willie +Bennie +Bertram +Cruz +Dominic +Earle +Emilio +Frederic +Gabriel +Horace +Ira +Mervyn +Otto +Pablo +Reginald +Roberto +Adrian +Gregory +Julio +Kay +Lupe +Myron +Norbert +Rene +Sherman +Shigeru +Steven +Stuart +Takeo +Carlo +Duane +Dwight +Earnest +Felipe +Gino +Jacob +Merrill +Neal +Refugio +Simon +Yukio +Augustine +Billie +Bruno +Bud +Carroll +Clare +Dennis +Elden +Eldon +Elliott +Ellsworth +Elton +Ernie +Gregorio +Isamu +Ivan +Laverne +Luther +Marcus +Melville +Murray +Ned +Noboru +Rudy +Saburo +Shigeo +Takeshi +Terry +Yutaka +Aldo +Arturo +Austin +Barney +Bernardo +Delmar +Dexter +Elias +Elvin +Grant +Hal +Hugo +Katsumi +Milo +Nelson +Nickolas +Nobuo +Otis +Pascual +Pat +Percy +Preston +Ricardo +Sammy +Santos +Truman +Wilbert +Winston +Agustin +Al +Andres +Aurelio +Bobby +Christopher +Cornelius +Danny +Darwin +Daryl +Duncan +Ellis +Elwin +Eric +Ernesto +Haig +Harrison +Haruo +Jessie +Jiro +Jorge +Lino +Reuben +Roderick +Rodger +Rolland +Rosendo +Rupert +Scott +Stewart +Tetsuo +Vicente +Waldo +Ward +Wilson +Abraham +Akira +Alfredo +Alton +Andy +Antone +Brian +Carleton +Clair +Clark +Clement +Clifton +Conrad +Darrel +Dudley +Ed +Eldred +Elwyn +Forest +Freddie +Fumio +Garth +Graham +Grover +Hans +Hisao +Irwin +Johnie +Junior +Kei +Kenichi +Lyman +Marcelino +Marcos +Masayuki +Merritt +Millard +Mitchell +Mitsuru +Nathan +Nathaniel +Newton +Nicolas +Noel +Randolph +Santiago +Susumu +Sydney +Sylvester +Tadao +Takao +Tim +Tomio +Tsugio +Adam +Adolfo +Alva +Aubrey +Bertrand +Boyd +Bradley +Burt +Buster +Carmen +Charley +Claud +Craig +Dallas +Delfino +Dewey +Dino +Emanuel +Emile +Enrico +Ervin +Eusebio +Fidel +Fredric +Gail +Gerard +Gilberto +Gonzalo +Guillermo +Hector +Ichiro +Isaac +Iwao +Jasper +Joel +Jonathan +Judson +Kaoru +Kermit +Leonardo +Mack +Mary +Masato +Masayoshi +Mateo +Maynard +Morgan +Nolan +Orlando +Orval +Phil +Porfirio +Reno +Reyes +Rodolfo +Roscoe +Russel +Sal +Salvatore +Seymour +Shigeto +Shirley +Shizuo +Silvio +Stanford +Takashi +Teddy +Terence +Tokio +Toshiro +Van +Vernal +Verne +Willian +Ygnacio +Robert +John +William +George +James +Frank +Jack +Richard +Charles +Donald +Edward +Joseph +Raymond +Albert +Harold +Joe +Paul +Thomas +Henry +Walter +Arthur +Harry +Kenneth +David +Manuel +Fred +Ralph +Eugene +Warren +Ernest +Howard +Louis +Alfred +Roy +Tony +Francis +Lawrence +Stanley +Earl +Clarence +Carl +Daniel +Leonard +Peter +Lloyd +Herbert +Jose +Norman +Theodore +Melvin +Anthony +Ray +Victor +Gordon +Elmer +Philip +Edwin +Bill +Clifford +Vernon +Bob +Gerald +Russell +Antonio +Jesus +Vincent +Milton +Sam +Andrew +Tom +Frederick +Gilbert +Leo +Chester +Glenn +Benjamin +Leroy +Douglas +Lester +Samuel +Wallace +Everett +Martin +Alvin +Bernard +Don +Mike +Leslie +Leland +Clyde +Wesley +Marvin +Wayne +Ben +Harvey +Juan +Michael +Wilbur +Floyd +Jesse +Nick +Pete +Salvador +Arnold +Lewis +Bruce +Jimmie +Johnny +Leon +Louie +Roger +Mario +Herman +Alexander +Carlos +Cecil +Ted +Eddie +Jim +Pedro +Gene +Laurence +Alfonso +Allen +Angelo +Edgar +Lee +Morris +Glen +Stephen +Willard +Delbert +Francisco +Phillip +Roland +Virgil +Bert +Franklin +Hugh +Luis +Maurice +Dale +Irving +Keith +Marion +Raul +Ronald +Claude +Ramon +Alan +Larry +Oscar +Billy +Felix +Jerry +Jess +Max +Neil +Ruben +Fredrick +Sidney +Oliver +Allan +Calvin +Forrest +Homer +Hubert +Kazuo +Patrick +Rudolph +Toshio +Edmund +Emil +Hiroshi +Jerome +Johnnie +Julian +Lowell +Mark +Merle +Steve +Dean +Fernando +Marshall +Masao +Minoru +Yoshio +Armando +Burton +Dick +Guadalupe +Rafael +Wilfred +Aldo +Dan +Kiyoshi +Miguel +Nicholas +Roberto +Shigeru +Tommy +Alex +August +Guy +Hideo +Irvin +Ivan +Willie +Charlie +Clinton +Curtis +Dave +Dominic +Elwood +Julio +Julius +Karl +Wendell +Willis +Clayton +Duane +Ignacio +Jean +Loren +Ross +Steven +Adolph +Akira +Angel +Byron +Carroll +Dwight +Felipe +Malcolm +Myron +Orville +Trinidad +Alfredo +Jay +Lyle +Otto +Owen +Perry +Rex +Stuart +Archie +Augustine +Elbert +Emilio +Enrique +Frederic +Grant +Harlan +Lorenzo +Pat +Rodney +Adrian +Darrell +Earle +Gabriel +Gregory +Ira +Jimmy +Pablo +Rene +Rolland +Salvatore +Takashi +Alden +Antone +Arturo +Clark +Dennis +Edmond +Eldon +Elliott +Ellis +Elwyn +Erwin +Guido +Gus +Hal +Harley +Harrison +Hector +Hugo +Junior +Lupe +Mervin +Nathan +Noboru +Sherman +Alberto +Barton +Clifton +Dante +Domingo +Elvin +Irwin +Lyman +Masaru +Matthew +Mervyn +Nelson +Ward +Yutaka +Abe +Amos +Bertram +Clement +Cruz +Dudley +Emmett +Isamu +Ken +Lynn +Merrill +Neal +Otis +Ricardo +Rodolfo +Santos +Stewart +Tetsuo +Alton +Barney +Bennie +Billie +Bruno +Bud +Ed +Enrico +Grover +Horace +Jessie +Joaquin +Joel +Lorin +Margarito +Reginald +Simon +Susumu +Takeo +Verne +Wilbert +Adolfo +Carlton +Chris +Craig +Cyril +Elias +Ellsworth +Eric +Ernie +Gail +Gino +Isao +Kenji +Luther +Marcos +Marcus +Merlin +Mitsuo +Murray +Nobuo +Noel +Percy +Sheldon +Shigeo +Stanford +Tadashi +Timothy +Vito +Agustin +Alejandro +Armand +Aurelio +Austin +Beverly +Boyd +Christian +Christopher +Conrad +Cornelius +Delmer +Dewey +Earnest +Eduardo +Elmo +Emile +Ernesto +Gregorio +Harris +Iwao +Kevin +Lino +Marcelino +Masashi +Miles +Millard +Milo +Mitchell +Neno +Randall +Reno +Reuben +Sammy +Shirley +Tsutomu +Vicente +Wilson +Aaron +Abel +Abraham +Al +Andy +Benito +Buddy +Carmen +Cedric +Clair +Danny +Elio +Emanuel +Emerson +Ervin +Ferdinand +Fidel +Florentino +Frances +Hajime +Ichiro +Jacob +Jerald +Justin +Loyd +Lucio +Mack +Mauro +Mickey +Nathaniel +Natividad +Orval +Pascual +Phil +Porfirio +Refugio +Romeo +Saburo +Sanford +Saul +Shiro +Sydney +Terence +Terry +Teruo +Tim +Vern +Weldon +Alonzo +Alphonso +Amado +Anastacio +Aram +Attilio +Aubrey +Bart +Bradford +Darrel +Daryl +Dorothy +Edwardo +Eli +Elton +Emmet +Ezequiel +Frankie +Franklyn +Gustavo +Harding +Haruo +Isaac +Jake +Joesph +Jorge +Jules +Junichi +Katsumi +Kay +Lauren +Laverne +Lincoln +Lonnie +Marco +Mariano +Merton +Monroe +Morgan +Nolan +Norbert +Norberto +Norris +Patricio +Ramond +Roderick +Rudy +Salvadore +Satoru +Scott +Sebastian +Sterling +Tad +Takeshi +Tatsuo +Tomas +Valentino +Weston +Winston +Yasuo +Ysidro +Yukio +Robert +John +William +George +James +Richard +Charles +Frank +Jack +Donald +Edward +Joseph +Harold +Thomas +Albert +Raymond +Arthur +David +Walter +Henry +Joe +Paul +Harry +Kenneth +Ralph +Manuel +Eugene +Fred +Howard +Ernest +Louis +Roy +Alfred +Stanley +Lawrence +Herbert +Carl +Tony +Warren +Jose +Clarence +Daniel +Earl +Francis +Gerald +Norman +Edwin +Leonard +Peter +Bill +Melvin +Anthony +Gordon +Victor +Leo +Jesus +Theodore +Vernon +Elmer +Ray +Lloyd +Philip +Andrew +Milton +Glenn +Russell +Leroy +Clifford +Don +Frederick +Bob +Gilbert +Vincent +Antonio +Wallace +Floyd +Sam +Martin +Tom +Marvin +Bruce +Chester +Juan +Clyde +Douglas +Pete +Wesley +Lester +Samuel +Benjamin +Mike +Bernard +Lee +Salvador +Carlos +Harvey +Michael +Wayne +Allen +Alvin +Leslie +Jesse +Oscar +Leland +Francisco +Willard +Eddie +Louie +Pedro +Phillip +Leon +Ted +Wilbur +Arnold +Jerry +Jim +Jimmie +Rudolph +Stephen +Ben +Edgar +Gene +Roger +Angelo +Lewis +Mario +Ramon +Alex +Nick +Clinton +Dick +Hugh +Dale +Billy +Everett +Keith +Luis +Alfonso +Herman +Johnny +Maurice +Rafael +Raul +Willis +Alexander +Allan +Franklin +Johnnie +Patrick +Alan +Claude +Felix +Irving +Larry +Max +Roberto +Oliver +Virgil +Dan +Ruben +Bert +Ross +Steve +Cecil +Edmund +Julian +Kazuo +Lowell +Marion +Sidney +Charlie +Glen +Homer +Laurence +Morris +Tommy +Calvin +Hiroshi +Joaquin +Merle +Roland +Grant +Jess +Kiyoshi +Lyle +Miguel +Forrest +Jimmy +Mark +Marshall +Rodney +Yoshio +Burton +Willie +Byron +Delbert +Guadalupe +Malcolm +Minoru +Pablo +Trinidad +Dean +Hubert +Masao +Neil +Nicholas +Angel +Jay +Julio +Myron +Orville +Akira +Clayton +Felipe +Fernando +Loren +Adolph +Armando +Bennie +Bruno +Hector +Ignacio +Mervin +Archie +Ellis +Fredrick +Gus +Guy +Irvin +Jean +Lorenzo +Neal +Rex +Ronald +Stuart +Dwight +Emil +Eric +Gabriel +Gino +Guido +Jerome +Curtis +Elwood +Hideo +Ivan +Julius +Mitchell +Otto +Wendell +Alfredo +Duane +Earle +Harley +Irwin +Takashi +Toshio +Ward +Yukio +August +Augustine +Domingo +Dominic +Elbert +Emmett +Isamu +Karl +Lupe +Rene +Rudy +Salvatore +Timothy +Aldo +Clark +Elias +Emilio +Gregory +Hal +Jacob +Santos +Steven +Verne +Wilbert +Wilfred +Billie +Bobby +Daryl +Dave +Elmo +Elton +Ervin +Evan +Harlan +Horace +Ira +Jackson +Kenji +Laverne +Lincoln +Matthew +Nathan +Owen +Phil +Sterling +Tadashi +Terry +Wilford +Alton +Benny +Conrad +Cornelius +Cyril +Darrell +Dino +Emery +Hugo +Kay +Lynn +Marcus +Margarito +Miles +Mitsuo +Noboru +Noel +Pascual +Pat +Refugio +Sammy +Shigeru +Simon +Takeshi +Aaron +Al +Carlo +Danny +Dudley +Ed +Edmond +Eldon +Erwin +Gail +Guillermo +Lionel +Masami +Ned +Ricardo +Rolland +Wilson +Adolfo +Agustin +Arturo +Bertram +Dennis +Earnest +Emile +Enrique +Jessie +Junior +Ken +Mariano +Merlin +Perry +Randall +Reginald +Shigeo +Shirley +Shiro +Shizuo +Tetsuo +Tomas +Amos +Antone +Armand +Art +Aurelio +Bryan +Bud +Carroll +Chris +Dana +Dario +Delmar +Dewey +Elvin +Ernesto +Fidel +Gilberto +Gregorio +Hobart +Ichiro +Isao +Joel +Luther +Makoto +Masayuki +Merrill +Murray +Nelson +Nicolas +Norbert +Orval +Porfirio +Reno +Rodolfo +Rollin +Roman +Roscoe +Saburo +Sheldon +Silvio +Stewart +Sydney +Tadao +Takao +Vicente +Yasuo +Yutaka +Adrian +Alberto +Austin +Benito +Christopher +Clement +Clifton +Cosme +Craig +Cruz +Deane +Enrico +Federico +Forest +Galen +Gustavo +Haig +Harrison +Isadore +Leopoldo +Lonnie +Lorin +Luciano +Lyman +Marcelino +Marcello +Marco +Mary +Masaru +Meredith +Merton +Milo +Morgan +Morton +Reuben +Reynaldo +Russel +Sadao +Santiago +Sol +Stanton +Sylvester +Teddy +Theadore +Vito +Walton +Will +Winston +Yoshiaki +Abel +Alejandro +Alonzo +Ambrose +Andres +Aubrey +Basil +Beverly +Boyd +Carleton +Carrol +Carter +Casper +Christian +Clay +Dante +Darrel +Denis +Donal +Eduardo +Elliott +Ellsworth +Freddie +Gonzalo +Hilario +Hisao +Josef +Justin +Kenichi +Kent +Loyd +Lucien +Marcos +Mathew +Maxwell +Melford +Mervyn +Michio +Mikio +Milford +Moses +Norton +Otis +Robin +Roderick +Rudolf +Salvadore +Satoru +Scott +Seymour +Susumu +Theron +Tsugio +Wellington +Weston +Wing +Yoneo +Yoshiro +Robert +John +William +James +George +Richard +Donald +Frank +Charles +Jack +Edward +Joseph +Harold +Thomas +Raymond +Paul +Joe +Albert +David +Walter +Kenneth +Henry +Arthur +Harry +Manuel +Ralph +Fred +Eugene +Roy +Ernest +Louis +Alfred +Howard +Jose +Stanley +Carl +Lawrence +Norman +Tony +Earl +Bill +Peter +Clarence +Warren +Herbert +Leonard +Daniel +Gordon +Anthony +Jesus +Ray +Edwin +Francis +Russell +Leo +Theodore +Clifford +Wallace +Lloyd +Bob +Frederick +Melvin +Philip +Don +Gerald +Antonio +Elmer +Victor +Vernon +Samuel +Juan +Andrew +Tom +Glenn +Bernard +Martin +Gilbert +Douglas +Marvin +Vincent +Leroy +Salvador +Mike +Bruce +Sam +Alvin +Francisco +Benjamin +Leslie +Harvey +Milton +Chester +Wayne +Pete +Wesley +Floyd +Lester +Leland +Carlos +Jim +Lee +Clyde +Rudolph +Allen +Calvin +Michael +Gene +Lewis +Luis +Louie +Ted +Alfonso +Claude +Everett +Alexander +Jerry +Leon +Mario +Roger +Wilbur +Ben +Eddie +Hugh +Jesse +Glen +Herman +Pedro +Steve +Nick +Arnold +Billy +Alan +Oscar +Edmund +Johnny +Keith +Phillip +Willard +Edgar +Franklin +Ronald +Jimmie +Laurence +Dick +Raul +Ruben +Dan +Willis +Cecil +Homer +Johnnie +Morris +Oliver +Alex +Dale +Roberto +Felix +Guy +Patrick +Roland +Sidney +Stephen +Jess +Maurice +Ross +Aldo +Malcolm +Ramon +Bert +Jimmy +Tommy +Hiroshi +Jay +Larry +Fredrick +Irving +Allan +Angelo +Byron +Irvin +Jerome +Max +Miguel +Julian +Delbert +Hubert +Marion +Neil +Rafael +Virgil +Angel +Armando +Fernando +Lowell +Nicholas +Dean +Merle +Adolph +Charlie +Ignacio +Loren +Darrell +Forrest +Lorenzo +Minoru +Steven +Guadalupe +Ivan +Julio +Kiyoshi +Pablo +Willie +Akira +Archie +Horace +Joaquin +Mervin +Rex +Rodney +Rodolfo +Duane +Guillermo +Hector +Lupe +Lyle +Augustine +Bennie +Bruno +Curtis +Elwood +Neal +Orville +Perry +Rudy +Alfredo +Benny +Clinton +Dave +Dominic +Emilio +Jean +Mark +Masao +Myron +Otto +Shigeo +Alberto +Burton +Carroll +Earle +Elbert +Fidel +Grant +Marshall +Wendell +August +Dennis +Emil +Gilberto +Harlan +Hideo +Julius +Refugio +Rene +Toshio +Trinidad +Andres +Bertram +Enrique +Felipe +Gabriel +Gregory +Kay +Wilfred +Yoshio +Arturo +Cruz +Guido +Junior +Karl +Nicolas +Dwight +Elias +Emmett +Evan +Frankie +Gino +Ira +Irwin +Kazuo +Margarito +Noboru +Pascual +Phil +Reginald +Santos +Tadashi +Abraham +Adrian +Dudley +Edmond +Eduardo +Ernesto +Ernie +Gail +Isamu +Jacob +Lionel +Miles +Ricardo +Aurelio +Beverly +Chris +Christopher +Daryl +Domingo +Gus +Katsumi +Lincoln +Lyman +Ned +Owen +Royal +Shigeru +Stuart +Tadao +Tomas +Wilbert +Aaron +Alden +Alejandro +Carlo +Clayton +Clement +Clifton +Dewey +Eldon +Elwin +Erwin +Gregorio +Harland +Harley +Jasper +Luther +Lynn +Marcus +Merrill +Mervyn +Murray +Otis +Reuben +Rolland +Saul +Simon +Stewart +Takashi +Takeshi +Armand +Bobby +Charley +Craig +Cyril +Danny +Darwin +Elliott +Ervin +Hal +Ichiro +Kenji +Merritt +Morton +Nathan +Nelson +Nobuo +Ramiro +Salvatore +Sammy +Sebastian +Sherman +Verne +Vicente +Adolfo +Al +Amador +Amos +Bud +Clark +Conrad +Cornelius +Dexter +Elmo +Florencio +Freddie +Gonzalo +Gustavo +Jorge +Lavern +Leonardo +Makoto +Masami +Masaru +Melville +Nathaniel +Reyes +Roderick +Rupert +Santiago +Sheldon +Stanford +Susumu +Sylvester +Terry +Tsutomu +Val +Ventura +Yukio +Yutaka +Abel +Adam +Alva +Bernardo +Bradford +Chauncey +Colin +Elton +Emile +Enrico +Gale +Gerard +Godfrey +Grover +Hollis +Isaac +Jackson +Jacques +Joel +Ken +Mack +Marcel +Mary +Matthew +Noel +Norbert +Orrin +Orval +Osamu +Saburo +Scott +Shirley +Sydney +Tamotsu +Teddy +Timothy +Valentine +Ward +Wilson +Alec +Anastacio +Aubrey +Austin +Blaine +Blas +Carlton +Carmen +Claud +Claudio +Dallas +Delfino +Desmond +Ellis +Ellsworth +Elvin +Eric +Esteban +Franklyn +Hiram +Jackie +Jessie +Jiro +Jun +Lane +Luciano +Masayuki +Mathew +Merton +Mickey +Mitchell +Moses +Omar +Pat +Preston +Reno +Reynaldo +Sanford +Teruo +Van +Weldon +Yoneo +Yoshito +Alonzo +Andy +Asa +Boris +Boyd +Burt +Buster +Cameron +Carrol +Christian +Cliff +Dario +Delmer +Dino +Donal +Donn +Doyle +Earnest +Edwardo +Eldred +Elgin +Eliseo +Elwyn +Epifanio +Filbert +Frederic +Fumio +Genaro +Herschel +Hiro +Ian +Ignatius +Joesph +Jonathan +Lino +Lonnie +Marcos +Maria +Merlin +Miller +Newell +Norris +Oakley +Percy +Randolph +Remo +Rey +Robin +Rolf +Roman +Rosalio +Rosendo +Rowland +Rufus +Russel +Sal +Satoshi +Shig +Shizuo +Sho +Silverio +Silvestre +Sol +Stan +Tetsuo +Toshiyuki +Valente +Vaughn +Vern +Victoriano +Wade +Wataru +Robert +John +William +James +George +Richard +Frank +Donald +Charles +Jack +Edward +Joseph +Joe +Raymond +Harold +David +Albert +Thomas +Kenneth +Arthur +Paul +Manuel +Henry +Walter +Ralph +Harry +Fred +Ernest +Eugene +Louis +Roy +Lawrence +Jose +Alfred +Howard +Stanley +Earl +Clarence +Norman +Carl +Jesus +Warren +Daniel +Tony +Leonard +Bill +Gordon +Ray +Edwin +Peter +Melvin +Lloyd +Glenn +Bob +Gerald +Herbert +Anthony +Russell +Andrew +Clifford +Don +Leo +Francis +Gilbert +Marvin +Theodore +Elmer +Victor +Philip +Leroy +Vernon +Alvin +Frederick +Juan +Douglas +Antonio +Tom +Calvin +Salvador +Wayne +Milton +Samuel +Benjamin +Jim +Martin +Mike +Vincent +Floyd +Lee +Wallace +Leslie +Carlos +Bruce +Clyde +Bernard +Lester +Lewis +Francisco +Jerry +Louie +Pete +Pedro +Raul +Allen +Dale +Johnny +Ruben +Alfonso +Roger +Wesley +Luis +Jesse +Johnnie +Billy +Leland +Patrick +Leon +Sam +Eddie +Nick +Chester +Everett +Gene +Arnold +Harvey +Ramon +Maurice +Rudolph +Edgar +Hugh +Jimmie +Oscar +Wilbur +Alexander +Dick +Ronald +Phillip +Allan +Oliver +Roland +Ben +Michael +Larry +Roberto +Alan +Cecil +Dean +Glen +Miguel +Ted +Willard +Keith +Bert +Franklin +Herman +Sidney +Lowell +Angelo +Stephen +Alex +Fernando +Tommy +Claude +Jay +Jimmy +Ross +Edmund +Rudy +Mark +Rafael +Steve +Irving +Julian +Virgil +Armando +Clayton +Felix +Jess +Willis +Dan +Delbert +Duane +Enrique +Hiroshi +Hubert +Laurence +Mario +Max +Willie +Dave +Darrell +Domingo +Homer +Julio +Aldo +Angel +Augustine +Ignacio +Morris +Neil +Nicholas +Byron +Clinton +Harlan +Horace +Loren +Rodolfo +Adolph +Benny +Karl +Lupe +Alberto +Curtis +Emilio +Forrest +Wilfred +Fidel +Lyle +Myron +Charlie +Gabriel +Guy +Julius +Marion +Neal +Rodney +Bennie +Elias +Emil +Fredrick +Wendell +Agustin +Alfredo +Arturo +Aurelio +Burton +Ivan +Marshall +Masao +Orville +Pablo +Reginald +Rex +Chris +Ira +Jerome +Merle +Stuart +Trinidad +Verne +Eldon +Elwood +Erwin +Felipe +Lorenzo +Owen +Yoshio +Archie +August +Elbert +Hector +Irwin +Malcolm +Morton +Ricardo +Billie +Bobby +Bruno +Dwight +Earle +Ernesto +Grant +Gregory +Guillermo +Harley +Irvin +Otis +Sherman +Simon +Wilbert +Carroll +Edmond +Gonzalo +Junior +Matthew +Miles +Minoru +Tomas +Abel +Andres +Dominic +Elmo +Eric +Gregorio +Guadalupe +Hideo +Kiyoshi +Perry +Takeshi +Adrian +Armand +Clifton +Dennis +Ellis +Elton +Emmett +Freddie +Gilberto +Gus +Joel +Marcelino +Pat +Rollin +Steven +Stewart +Bud +Clement +Conrad +Dewey +Donal +Isamu +Jean +Jessie +Joaquin +Lyman +Lynn +Milo +Otto +Refugio +Salvatore +Vern +Ward +Adolfo +Akira +Amado +Bertram +Carlton +Danny +Ed +Ernie +Guido +Hugo +Kazuo +Laverne +Mariano +Mitchell +Nicolas +Roderick +Roman +Toshio +Beverly +Clair +Cornelius +Cruz +Cyril +Eduardo +Hal +Isaac +Jackie +Jackson +Ken +Leopoldo +Luther +Marcus +Margarito +Masaru +Masato +Mervin +Monroe +Murray +Norbert +Phil +Silvio +Tadashi +Terry +Tetsuo +Vicente +Antone +Benito +Clark +Darrel +Elvin +Ervin +Frankie +Harris +Harrison +Jacob +Jorge +Kay +Lincoln +Mary +Merrill +Mervyn +Mitsuru +Nelson +Reynaldo +Sammy +Santiago +Sterling +Takashi +Tsutomu +Waldo +Abraham +Adam +Alton +Art +Austin +Barney +Carter +Christopher +Florencio +Frederic +Hilario +Isabel +Kenji +Leonardo +Lonnie +Loyd +Macario +Nathan +Nobuo +Orval +Preston +Scott +Sheldon +Shigeru +Sylvester +Timothy +Will +Wilson +Ygnacio +Yutaka +Al +Allison +Amos +Carleton +Carmen +Charley +Dino +Donn +Dudley +Duncan +Earnest +Elliott +Elwin +Faustino +Gail +Genaro +Gino +Gustavo +Haruo +Ichiro +Justin +Leandro +Lionel +Lorin +Morgan +Noboru +Norris +Orrin +Pasqual +Reuben +Reyes +Roscoe +Saburo +Sanford +Saul +Sebastian +Vance +Wilmer +Winston +Aaron +Alejandro +Augie +Bobbie +Boyd +Buddy +Candelario +Carlo +Christian +Colin +Cyrus +Daryl +Delmar +Desmond +Emerson +Enrico +Esteban +Federico +Florentino +Forest +Franklyn +Fumio +Hans +Hisashi +Hollis +Jasper +Lauren +Marcos +Mason +Melville +Merton +Millard +Moses +Nathaniel +Noel +Pascual +Primo +Raphael +Raymundo +Reno +Royal +Royce +Santos +Stanford +Takeo +Ventura +Vito +Wilford +Yoneo +Yoshiharu +Yoshiyuki +Ysidro +Abe +Albin +Alden +Alwin +Arlie +Aubrey +Barry +Basil +Basilio +Bertrand +Betty +Bradley +Buster +Carmelo +Celestino +Claire +Conrado +Cornelio +Dallas +Dana +Darwin +Delmer +Dolores +Doyle +Efrain +Ellsworth +Emanuel +Emery +Emile +Everette +Gale +Geno +Hiram +Isadore +Ismael +Jake +Jefferson +Jiro +Jordan +Jules +Lauro +Lavern +Lino +Luke +Mateo +Maynard +Merlin +Merlyn +Micheal +Mitsuo +Newell +Octavio +Pierre +Quentin +Ramiro +Randall +Raoul +Renato +Rogelio +Rolland +Rosario +Rosendo +Rowland +Satoshi +Seiji +Sharon +Shirley +Solomon +Stanton +Susumu +Theron +Tiburcio +Tomio +Wade +Werner +Ysabel +Robert +John +William +James +Richard +George +Donald +Charles +Frank +Jack +Edward +Joseph +Thomas +David +Raymond +Harold +Joe +Arthur +Kenneth +Paul +Manuel +Albert +Henry +Walter +Ralph +Harry +Eugene +Fred +Ernest +Roy +Alfred +Bill +Louis +Stanley +Howard +Norman +Daniel +Jose +Lawrence +Earl +Tony +Carl +Gerald +Bob +Jesus +Peter +Herbert +Ray +Leonard +Clarence +Melvin +Anthony +Edwin +Gordon +Lloyd +Don +Gilbert +Warren +Theodore +Francis +Victor +Glenn +Leo +Vernon +Wallace +Leroy +Philip +Tom +Juan +Elmer +Russell +Alvin +Andrew +Clifford +Antonio +Salvador +Gene +Douglas +Martin +Calvin +Marvin +Jim +Samuel +Mike +Milton +Vincent +Wayne +Leslie +Frederick +Sam +Carlos +Floyd +Leland +Lee +Ronald +Wesley +Benjamin +Dale +Dick +Francisco +Jesse +Michael +Ramon +Bernard +Lester +Raul +Johnny +Eddie +Jimmie +Jerry +Lewis +Luis +Billy +Bruce +Jimmy +Leon +Alan +Clyde +Louie +Phillip +Ruben +Allen +Oscar +Patrick +Hugh +Alfonso +Alexander +Harvey +Roger +Rudolph +Pedro +Ben +Everett +Johnnie +Roberto +Dean +Ted +Pete +Arnold +Cecil +Tommy +Stephen +Alex +Edgar +Chester +Jess +Keith +Wilbur +Willard +Allan +Roland +Steve +Glen +Mario +Maurice +Dan +Herman +Rodney +Angelo +Fernando +Miguel +Angel +Larry +Rafael +Rodolfo +Claude +Armando +Felix +Bert +Franklin +Irving +Jay +Loren +Hector +Julian +Julio +Laurence +Nick +Enrique +Hiroshi +Ignacio +Lowell +Rudy +Jerome +Mark +Sidney +Willis +Alfredo +Duane +Stuart +Willie +Byron +Max +Nicholas +Marion +Forrest +Merle +Steven +Delbert +Hubert +Bobby +Charlie +Clinton +Curtis +Guy +Wendell +Elias +Fredrick +Guadalupe +Hideo +Kiyoshi +Lorenzo +Lupe +Otto +Ricardo +Augustine +Bennie +Carroll +Dave +Morris +Pablo +Clayton +Homer +Matthew +Minoru +Myron +Oliver +Owen +Wilfred +Ivan +Joaquin +Neal +Conrad +Ervin +Felipe +Fidel +Jean +Karl +Kazuo +Virgil +Alberto +Alejandro +Benny +Burton +Dennis +Edmond +Lyle +Neil +Ross +Sherman +Adolph +Akira +Edmund +Eldon +Emilio +Grant +Gus +Harley +Marshall +Toshio +Vicente +Archie +Bruno +Cruz +Darrell +Elmo +Ernesto +Gabriel +Harlan +Isamu +Jacob +Malcolm +Santiago +Yoshio +Agustin +Arturo +Danny +Dwight +Earle +Irwin +Joel +Julius +Lynn +Mervin +Rex +Trinidad +Aldo +Armand +Bud +Chris +Elvin +Eric +Gregory +Harrison +Horace +Jackson +Katsumi +Simon +Takashi +Tomas +August +Carmen +Clifton +Dewey +Domingo +Dominic +Elwood +Erwin +Hugo +Irvin +Junior +Mitchell +Nicolas +Orville +Perry +Rollin +Sammy +Adolfo +Alton +Carlo +Christopher +Jackie +Jessie +Masao +Merrill +Phil +Reynaldo +Santos +Terry +Vern +Verne +Wilbert +Aurelio +Austin +Billie +Dudley +Ellis +Ellsworth +Emil +Emmett +Florentino +Frankie +Gino +Guido +Hal +Luther +Pat +Salvatore +Wilson +Aaron +Abel +Bernardo +Clement +Cyril +Eliseo +Gregorio +Guillermo +Ira +Isao +Kenji +Laverne +Marcos +Marcus +Mariano +Monte +Nelson +Porfirio +Refugio +Reginald +Rogelio +Teddy +Truman +Ysidro +Yukio +Amado +Andres +Andy +Barry +Betty +Boyd +Clair +Eusebio +Gale +Gonzalo +Mervyn +Nathan +Randolph +Roderick +Sheldon +Shigeru +Sydney +Timothy +Al +Buddy +Clark +Craig +Donal +Ed +Elbert +Forest +Freddie +Frederic +Harland +Kay +Kenichi +Kent +Loyd +Lyman +Marcelino +Mary +Masaru +Millard +Milo +Mitsuo +Noel +Rolland +Roman +Rosendo +Rudolfo +Scott +Tadashi +Winston +Alden +Alice +Allison +Amador +Antone +Bertram +Beverly +Brian +Dario +Dewitt +Eduardo +Esteban +Federico +Florencio +Fritz +Gaylord +Gilberto +Isaac +Jake +Jiro +Jon +Jorge +Lionel +Merton +Moses +Murray +Orrin +Otis +Percy +Preston +Rene +Robin +Royal +Rupert +Saul +Spencer +Susumu +Sylvester +Takeo +Vito +Wade +Ygnacio +Yoshiaki +Yutaka +Abraham +Adrian +Anselmo +Barney +Basil +Benito +Burt +Donn +Doyle +Elden +Emory +Evan +Fay +Genaro +Grover +Isadore +Ismael +Javier +Jordan +Kei +Lauro +Lew +Lonnie +Lorin +Lucien +Marco +Masato +Melville +Moises +Morgan +Nickolas +Noboru +Osamu +Reno +Reuben +Rubin +Russel +Saburo +Seymour +Shigeo +Stanford +Stewart +Takeshi +Teodoro +Teruo +Theron +Valentino +Vaughn +Wilber +Abe +Arland +Arnulfo +Art +Aubrey +Augustin +Baldomero +Blas +Bobbie +Bradford +Carol +Charley +Cipriano +Dalton +Darwin +Deane +Del +Dino +Dolores +Donovan +Eddy +Efren +Elliott +Elwyn +Ernie +Eulalio +Eulogio +Frances +Gail +Greg +Gustavo +Hajime +Hans +Haruo +Isabel +Jacinto +Jules +Justin +Ken +Leopoldo +Lino +Loran +Luciano +Lucio +Macario +Marcel +Masayuki +Miles +Monroe +Natividad +Orlando +Orval +Palmer +Pascual +Paulino +Ramiro +Raymon +Reyes +Rollie +Rosalio +Rosario +Salvadore +Sanford +Seferino +Seth +Shiro +Silvio +Sterling +Tatsuo +Terrence +Theadore +Tim +Toru +Tsutomu +Ward +Wiley +Robert +John +William +Richard +James +Donald +George +Charles +Frank +Jack +Edward +Raymond +Joe +David +Paul +Albert +Joseph +Thomas +Arthur +Kenneth +Walter +Harold +Henry +Manuel +Ralph +Eugene +Fred +Harry +Ernest +Louis +Bill +Stanley +Roy +Jose +Alfred +Bob +Norman +Howard +Peter +Lawrence +Daniel +Gerald +Carl +Don +Jesus +Earl +Tony +Ronald +Gordon +Leonard +Ray +Clarence +Herbert +Edwin +Antonio +Melvin +Anthony +Gilbert +Jim +Lloyd +Russell +Leroy +Francis +Gene +Victor +Theodore +Clifford +Glenn +Vernon +Martin +Philip +Wayne +Andrew +Jerry +Samuel +Marvin +Warren +Juan +Tom +Wallace +Johnny +Leo +Mike +Douglas +Elmer +Floyd +Frederick +Billy +Bruce +Salvador +Benjamin +Carlos +Ramon +Milton +Rudolph +Ruben +Lee +Dick +Leland +Vincent +Luis +Rudy +Allen +Raul +Alvin +Leslie +Ted +Arnold +Clyde +Eddie +Francisco +Roland +Michael +Jimmie +Pedro +Bernard +Alfonso +Jesse +Lester +Pete +Hugh +Keith +Larry +Wesley +Sam +Alan +Dale +Alexander +Jimmy +Lewis +Roger +Harvey +Oscar +Louie +Calvin +Glen +Patrick +Chester +Claude +Leon +Everett +Mario +Phillip +Cecil +Alex +Allan +Ben +Delbert +Roberto +Dean +Felix +Herman +Johnnie +Maurice +Tommy +Edmund +Willard +Armando +Dan +Guadalupe +Stephen +Wilbur +Angel +Enrique +Fernando +Miguel +Duane +Julian +Max +Nick +Rodolfo +Angelo +Bert +Hector +Ignacio +Laurence +Sidney +Alfredo +Arturo +Steve +Bobby +Byron +Irving +Marshall +Willie +Edgar +Rafael +Charlie +Alberto +Ernesto +Jess +Julio +Pablo +Curtis +Gabriel +Gregory +Guillermo +Gus +Guy +Jerome +Lowell +Rodney +Danny +Franklin +Fredrick +Oliver +Elias +Hubert +Jay +Jean +Neil +Benny +Elwood +Homer +Karl +Myron +Virgil +Darrell +Kiyoshi +Malcolm +Mark +Augustine +Clayton +Conrad +Joaquin +Marion +Rex +Willis +Adolfo +Loren +Lupe +Luther +Merle +Ross +Chris +Dave +Felipe +Ivan +Junior +Lorenzo +Lyle +Orville +Ricardo +Abel +Cruz +Domingo +Hiroshi +Mervin +Morris +Trinidad +Verne +Yoshio +Adolph +Burton +Emil +Hideo +Lionel +Minoru +Nicholas +Terry +Dewey +Ellis +Forrest +Gregorio +Irvin +Merrill +Pat +Wendell +Dennis +Dominic +Earle +Erwin +Frederic +Gilberto +Neal +Otto +Wilfred +Aldo +Barney +Bennie +Clifton +Clinton +Eduardo +Freddie +Harlan +Horace +Jacob +Ken +Murray +Salvatore +Santiago +Santos +Sherman +Stuart +Tomas +Agustin +Archie +August +Bud +Buddy +Carlo +Dwight +Edmond +Emmett +Gonzalo +Hal +Jackson +Jessie +Kazuo +Mary +Mitchell +Nathan +Refugio +Reginald +Wilbert +Daryl +Eldon +Ernie +Jorge +Lynn +Phil +Rosalio +Scott +Steven +Stewart +Teddy +Vicente +Akira +Alejandro +Aurelio +Carroll +Eliseo +Emery +Eric +Grant +Harley +Julius +Mariano +Morton +Raymundo +Reuben +Shigeru +Timothy +Toshio +Aaron +Benito +Ed +Elbert +Faustino +Fidel +Guido +Kay +Maynard +Orval +Owen +Porfirio +Rene +Roderick +Rosendo +Rudolfo +Russel +Sammy +Saul +Sheldon +Sylvester +Ward +Al +Andres +Austin +Billie +Carlton +Clark +Dudley +Elwyn +Gary +Humberto +Irwin +Jackie +Laverne +Leonardo +Masaru +Moses +Otis +Reynaldo +Robin +Takeshi +Wilford +Abraham +Adrian +Alden +Antone +Bennett +Bobbie +Boyd +Delmar +Diego +Dino +Elliott +Emilio +Eusebio +Jiro +Kenji +Mateo +Milo +Nelson +Rolland +Sebastian +Tadashi +Vern +Alton +Alva +Amado +Amador +Barbara +Barton +Basil +Bruno +Camilo +Charley +Christopher +Eli +Elmo +Elton +Elvin +Florencio +Florentino +Gale +Genaro +Gino +Javier +Joel +Kevin +Lonnie +Loyd +Lyman +Margarito +Masao +Mervyn +Mitsuo +Noboru +Pascual +Perry +Ramiro +Randall +Rodrigo +Rudolf +Saburo +Sydney +Tadao +Takashi +Wade +Yutaka +Agapito +Ambrose +Amos +Andy +Anton +Art +Barry +Beverly +Buster +Chuck +Darrel +Demetrio +Donn +Doyle +Edmundo +Efren +Ellsworth +Elwin +Fermin +Graham +Grover +Hitoshi +Hugo +Jerald +Jerrold +Jon +Joy +Leopoldo +Makoto +Marcelino +Marcos +Masami +Masato +Matthew +Mickey +Millard +Monte +Newton +Nickolas +Nicolas +Oren +Randolph +Rodger +Royal +Sadao +Silvio +Simon +Sterling +Susumu +Terrence +Tim +Torao +Toshiaki +Troy +Tsutomu +Vance +Wally +Abelardo +Allison +Alonzo +Anastacio +Armand +Arnulfo +Aubrey +Benton +Bernie +Bonifacio +Boris +Bradley +Brian +Casimiro +Chauncey +Christian +Clair +Clive +Cornelius +Craig +Cyril +Dallas +Dana +Darwin +Deane +Eleuterio +Emile +Esteban +Eugenio +Evan +Federico +Ferdinand +Frankie +Galen +Gavino +Gerard +Harrison +Haruo +Ira +Isabel +Isamu +Ismael +Jasper +Jonathan +Jordan +Kent +Koji +Laurance +Leandro +Leno +Lincoln +Lino +Lucas +Mamoru +Marie +Mathew +Matt +Merritt +Monroe +Nathaniel +Ned +Orin +Orlando +Orrin +Pasqual +Preston +Primo +Refujio +Reymundo +Rogelio +Rogers +Roman +Rowland +Rubin +Sanford +Sherwood +Shigeo +Sol +Spencer +Stanford +Teruo +Vaughn +Werner +Yasuo +Yoshiaki +Yukio +Robert +John +William +Richard +James +Donald +George +Charles +Frank +Jack +Edward +Raymond +David +Joe +Joseph +Paul +Kenneth +Thomas +Harold +Arthur +Henry +Albert +Manuel +Walter +Harry +Ralph +Eugene +Jose +Fred +Louis +Bill +Stanley +Ernest +Norman +Bob +Daniel +Roy +Gerald +Howard +Tony +Alfred +Lawrence +Ronald +Don +Earl +Jesus +Peter +Carl +Gilbert +Leonard +Herbert +Ray +Lloyd +Melvin +Gordon +Clarence +Victor +Jerry +Tom +Anthony +Francisco +Juan +Jim +Francis +Warren +Antonio +Leroy +Wayne +Marvin +Gene +Glenn +Philip +Edwin +Theodore +Clifford +Dick +Leo +Andrew +Vernon +Wallace +Alvin +Russell +Ruben +Salvador +Jimmie +Floyd +Frederick +Vincent +Mike +Johnny +Raul +Ramon +Samuel +Carlos +Billy +Milton +Martin +Bruce +Dale +Douglas +Elmer +Michael +Eddie +Jesse +Rudolph +Lester +Bernard +Pedro +Lee +Luis +Phillip +Rudy +Roger +Ben +Benjamin +Sam +Alan +Allen +Ted +Jimmy +Leland +Leslie +Tommy +Larry +Pete +Wesley +Harvey +Calvin +Everett +Keith +Hugh +Chester +Clyde +Herman +Johnnie +Lewis +Louie +Rodolfo +Patrick +Roberto +Allan +Dean +Edgar +Willard +Alfonso +Arnold +Fernando +Glen +Oscar +Mario +Miguel +Alex +Angel +Angelo +Armando +Hector +Wilbur +Laurence +Enrique +Nick +Leon +Charlie +Felix +Steve +Alfredo +Byron +Dan +Delbert +Merle +Morris +Stephen +Arturo +Maurice +Roland +Claude +Rodney +Alexander +Bobby +Cecil +Jerome +Julian +Shoji +Rafael +Duane +Franklin +Willie +Bert +Edmund +Ricardo +Akira +Neil +Virgil +Guillermo +Ignacio +Irving +Lyle +Max +Archie +Lupe +Mark +Felipe +Guadalupe +Jess +Ernesto +Grant +Homer +Nicholas +Adolfo +Burton +Clayton +Sidney +Alberto +Dennis +Fredrick +Gabriel +Guy +Julio +Loren +Steven +Tomas +Willis +Augustine +Clinton +Forrest +Marshall +Pablo +Darrell +Eldon +Elias +Hiroshi +Jay +Lowell +Otto +Reginald +Danny +Ivan +Nathan +Refugio +Benny +Curtis +Elwood +Harlan +Hubert +Julius +Malcolm +Myron +Sammy +Karl +Oliver +Owen +Ross +Dave +Dwight +Lynn +Marion +Santiago +Stuart +Alejandro +Andres +Bud +Emil +Gilberto +Jessie +Lorenzo +Perry +Wilbert +Wilfred +Abel +Carroll +Conrad +Cruz +Domingo +Earle +Edmond +Fidel +Freddie +Gale +Gregorio +Gregory +Gus +Joaquin +Orville +Pat +Wendell +Adolph +Bennie +Chris +Clark +Eduardo +Elton +Emilio +Jean +Lionel +Teruo +Yoshio +Adrian +Andy +Aurelio +Bruno +Clifton +Ellis +Eric +Harley +Horace +Mervin +Salvatore +Stewart +Takashi +Terry +Trinidad +Abraham +August +Ernie +Erwin +Hideo +Isabel +Jackie +Ken +Merrill +Monte +Rex +Reynaldo +Sherman +Sterling +Vicente +Aaron +Billie +Dewey +Dominic +Dudley +Florencio +Ira +Jorge +Marcos +Mary +Nicolas +Reuben +Robin +Susumu +Timothy +Valentino +Alton +Carlton +Darrel +Emmett +Kazuo +Leonardo +Margarito +Moses +Noel +Otis +Phil +Ramiro +Roman +Rosendo +Santos +Shigeru +Teddy +Vern +Ygnacio +Agustin +Barry +Beverly +Buddy +Ervin +Federico +Garth +Hal +Isamu +Joel +Justin +Kiyoshi +Lyman +Mariano +Minoru +Nelson +Rene +Rolland +Rudolf +Simon +Toshio +Ward +Akio +Alden +Andre +Armand +Bernardo +Carmen +Cyril +Delmer +Doyle +Earnest +Elbert +Evan +Gino +Gonzalo +Irvin +Irwin +Ismael +Jacob +Javier +Lindy +Lonnie +Lorin +Matthew +Maynard +Mickey +Morgan +Murray +Neal +Orval +Percy +Roderick +Scott +Sylvester +Tetsuo +Tsutomu +Waldo +Albin +Art +Bernie +Boyd +Claud +Clement +Craig +Ed +Forest +Gaylord +Hugo +Isaac +Jasper +Jonathan +Junior +Kenji +Laverne +Lincoln +Marcelino +Merton +Millard +Mitchell +Mitsuo +Sebastian +Serafin +Sherwood +Shirley +Silvio +Sydney +Tadashi +Wade +Al +Albino +Aldo +Alonzo +Amador +Armen +Augustin +Austin +Benton +Bertram +Bradley +Carol +Cipriano +Clemente +Dario +Dexter +Dominick +Donal +Donn +Efren +Elliott +Elvin +Emile +Faustino +Frankie +Gail +Gloria +Guido +Hans +Jackson +Katsumi +Kay +Kenny +Leopoldo +Lino +Loyd +Luther +Marcus +Margaret +Maria +Masao +Mauro +Mervyn +Miles +Morton +Parker +Pasqual +Raymon +Rodger +Ronnie +Russel +Spencer +Stanton +Valentin +Verne +Vito +Winston +Amado +Ambrose +Antone +Aristeo +Barney +Barton +Basilio +Benito +Bobbie +Bradford +Brian +Candelario +Carlo +Carmelo +Carrol +Cedric +Charley +Chauncey +Christopher +Cirilo +Clair +Clarke +Cornelius +Dallas +Dana +Daryl +Del +Dolores +Donovan +Duke +Edwardo +Eliseo +Ellsworth +Elmo +Elwin +Elwyn +Evaristo +Feliciano +Fortino +Fransisco +Frederic +Gary +Genaro +Harland +Harris +Herschel +Hilario +Isao +Isidoro +Joesph +Jun +Kent +Kevin +Lauren +Llewellyn +Luciano +Mac +Marcel +Marco +Masaru +Merlin +Merwin +Michio +Modesto +Ned +Nickolas +Noboru +Octavio +Pascual +Patricia +Porfirio +Randolph +Rey +Reyes +Rocco +Rodman +Rodrigo +Rogelio +Rosalio +Royce +Rudolfo +Rufino +Saul +Sheldon +Shiro +Stan +Stanford +Takeshi +Tamotsu +Truman +Vaughn +Victoriano +Virginia +Wally +Warner +Wilmer +Wilson +Yutaka +Robert +John +Richard +William +Donald +James +George +Charles +Frank +Jack +David +Joe +Edward +Raymond +Paul +Thomas +Kenneth +Joseph +Manuel +Albert +Arthur +Harold +Henry +Jose +Walter +Bill +Eugene +Ralph +Don +Fred +Bob +Harry +Roy +Ronald +Stanley +Norman +Alfred +Ernest +Louis +Herbert +Daniel +Howard +Gilbert +Gerald +Jesus +Tony +Jerry +Lawrence +Ray +Earl +Leonard +Carl +Peter +Antonio +Melvin +Juan +Ruben +Billy +Clarence +Jim +Lloyd +Gene +Leroy +Victor +Clifford +Douglas +Gordon +Dick +Glenn +Mike +Tom +Marvin +Philip +Warren +Wayne +Anthony +Raul +Bruce +Francis +Edwin +Martin +Theodore +Leo +Johnny +Russell +Salvador +Francisco +Vernon +Carlos +Pedro +Floyd +Ramon +Michael +Milton +Andrew +Alvin +Samuel +Dale +Lee +Benjamin +Wallace +Jimmy +Eddie +Frederick +Roger +Rudy +Jesse +Pete +Allen +Bernard +Elmer +Luis +Vincent +Phillip +Larry +Leslie +Clyde +Jimmie +Lewis +Louie +Rudolph +Tommy +Alan +Wesley +Leon +Alfredo +Hugh +Keith +Leland +Ted +Alfonso +Bobby +Willard +Alex +Ben +Enrique +Roland +Sam +Dean +Hector +Rafael +Roberto +Harvey +Oscar +Rodolfo +Dan +Arnold +Everett +Glen +Angel +Lester +Johnnie +Miguel +Patrick +Allan +Delbert +Maurice +Herman +Julian +Laurence +Wilbur +Armando +Chester +Claude +Rodney +Bert +Loren +Edgar +Nick +Alberto +Duane +Jerome +Calvin +Edmund +Gilberto +Irving +Alexander +Arturo +Felix +Neil +Sidney +Stephen +Benny +Fernando +Franklin +Jay +Jess +Mario +Ignacio +Ricardo +Curtis +Eduardo +Emilio +Marion +Pablo +Gabriel +Max +Steve +Akira +Cecil +Lorenzo +Mark +Virgil +Abraham +Burton +Morris +Angelo +Byron +Darrell +Edmond +Ivan +Lowell +Malcolm +Marshall +Ross +Adolfo +Elias +Guy +Julio +Clinton +Conrad +Guadalupe +Oliver +Charlie +Danny +Merle +Dave +Ernie +Hubert +Lupe +Lynn +Merrill +Myron +Refugio +Simon +Stuart +Tomas +Andres +Armand +Forrest +Nathan +Nicholas +Sammy +Vicente +Augustine +Eric +Gary +Harlan +Joaquin +Karl +Sheldon +Teddy +Willis +Buddy +Carlton +Clayton +Dwight +Emil +Felipe +Jean +Lyle +Orville +Wendell +Willie +Adolph +Aurelio +Bennie +Chris +Dennis +Earle +Ernesto +Gregory +Matthew +Owen +Santiago +Santos +Steven +Trinidad +Alejandro +Dominic +Fredrick +Gregorio +Guillermo +Isaac +Noel +Pat +Perry +Agustin +Aldo +Alton +Andy +Carmen +Cruz +Domingo +Erwin +Freddie +Gail +Hideo +Hiroshi +Homer +Horace +Jackie +Jackson +Reginald +Reyes +Tatsuo +August +Bud +Carroll +Eliseo +Elwood +Kazuo +Rex +Roderick +Terry +Al +Benito +Bobbie +Ed +Elbert +Eldon +Elvin +Gus +Lionel +Margarito +Mary +Neal +Phil +Reuben +Archie +Arnulfo +Barry +Boyd +Cyril +Ellis +Fidel +Florentino +Grant +Harley +Hugo +Ira +Irvin +Joel +Mickey +Morton +Murray +Nelson +Nicolas +Rene +Rolland +Sherman +Tsutomu +Wilfred +Brian +Bryce +Clement +Donn +Dudley +Elton +Emmett +Ervin +Gonzalo +Grover +Irwin +Ismael +Jessie +Jorge +Julius +Junior +Lucio +Masao +Roman +Rudolfo +Salvatore +Stewart +Toshio +Abel +Adrian +Art +Barney +Bertram +Cornelius +Dewey +Duncan +Edwardo +Hilario +Hoover +Isabel +Ken +Kent +Laverne +Marcelino +Maynard +Miles +Minoru +Otto +Porfirio +Ramiro +Randolph +Raymundo +Rogelio +Rudolf +Stanford +Valentine +Austin +Burt +Clark +Esteban +Fermin +Florencio +Freddy +Gale +Humberto +Isamu +Jiro +Kay +Kenji +Kiyoshi +Lavern +Mervin +Mervyn +Natividad +Norval +Ronnie +Rosalio +Rosario +Royal +Rufino +Teruo +Timothy +Ventura +Vern +Verne +Wilson +Yukio +Abelardo +Alden +Amador +Anton +Bernardo +Billie +Celso +Christopher +Craig +Dallas +Dana +Darold +Darrel +Daryl +Denny +Dolores +Edmundo +Efren +Emanuel +Emery +Federico +Frankie +Hal +Isadore +Leonardo +Leopoldo +Mariano +Merlin +Nobuo +Pascual +Reynaldo +Rosendo +Sanford +Shigeru +Shirley +Socorro +Waldo +Wally +Ward +Wilmer +Winston +Aaron +Agapito +Alvaro +Amado +Asa +Beverly +Bryan +Carol +Charley +Chuck +Clifton +Darwin +Donovan +Elliott +Faustino +Franklyn +Galen +Gayle +Gil +Gustavo +Hans +Ian +Ignatius +Jacinto +Jacob +Jaime +Johnie +Katsumi +Kenny +Loyd +Lyman +Mack +Masami +Merton +Millard +Mitchell +Moises +Ned +Raoul +Raymon +Rodrigo +Rupert +Scott +Susumu +Tadashi +Takashi +Val +Valentin +Van +Virginia +Wilbert +Yutaka +Adam +Andre +Ascencion +Bart +Barton +Bradley +Clemente +Cleo +Conrado +Delmar +Delmer +Demetrio +Doyle +Earnest +Eddy +Ellsworth +Emory +Epifanio +Esequiel +Eulalio +Evan +Ezequiel +Fausto +Forest +Fortunato +Fransisco +Frederic +Garry +Gaylord +Gerard +Geronimo +Guido +Harrison +Henri +Hisao +Inez +Isidro +Jon +Judson +Keiji +Kendall +Lauren +Lesley +Lino +Luther +Macario +Marcus +Masaru +Merritt +Micheal +Morgan +Moses +Nello +Newton +Nicky +Norbert +Octavio +Otis +Pasqual +Percy +Robin +Rollin +Sal +Satoshi +Sherwood +Shiro +Stan +Sydney +Sylvester +Teodoro +Truman +Warner +Werner +Wiley +Yoshiaki +Yoshio +Ysidro +Robert +John +Richard +William +Donald +James +George +Charles +Jack +Frank +David +Edward +Joe +Raymond +Joseph +Manuel +Thomas +Paul +Kenneth +Albert +Harold +Henry +Arthur +Ralph +Walter +Eugene +Bill +Harry +Ronald +Jose +Fred +Bob +Gerald +Stanley +Don +Roy +Louis +Herbert +Daniel +Norman +Gilbert +Alfred +Lawrence +Ernest +Carl +Jerry +Tony +Peter +Howard +Jesus +Leonard +Ray +Earl +Gordon +Juan +Victor +Jim +Billy +Lloyd +Antonio +Clarence +Melvin +Clifford +Edwin +Francisco +Gene +Anthony +Glenn +Raul +Douglas +Marvin +Philip +Dick +Theodore +Leroy +Salvador +Tom +Jimmy +Martin +Michael +Andrew +Johnny +Wayne +Carlos +Vernon +Bruce +Leo +Larry +Eddie +Ramon +Leland +Roger +Rudy +Luis +Mike +Russell +Vincent +Alvin +Jimmie +Ruben +Elmer +Francis +Pedro +Lee +Floyd +Samuel +Wallace +Alan +Jesse +Phillip +Sam +Warren +Allen +Tommy +Frederick +Alfredo +Benjamin +Dale +Leslie +Alfonso +Pete +Bobby +Keith +Ted +Gary +Roberto +Wesley +Harvey +Roland +Lewis +Milton +Arnold +Lester +Armando +Bernard +Rodolfo +Willard +Herman +Leon +Louie +Ricardo +Rudolph +Miguel +Wilbur +Clyde +Alex +Glen +Hugh +Rafael +Allan +Dan +Patrick +Nick +Ben +Cecil +Duane +Everett +Oscar +Arturo +Laurence +Mario +Chester +Hector +Maurice +Stephen +Rodney +Angel +Claude +Dean +Ignacio +Enrique +Steve +Dennis +Edgar +Felix +Johnnie +Julian +Lowell +Jay +Jerome +Angelo +Benny +Byron +Guadalupe +Pat +Jess +Delbert +Bert +Fernando +Neil +Virgil +Alexander +Danny +Darrell +Edmund +Gabriel +Calvin +Emilio +Marion +Mark +Alberto +Julio +Oliver +Conrad +Ernesto +Franklin +Irving +Lyle +Malcolm +Morris +Domingo +Karl +Willie +Clayton +Jackie +Sidney +Adolfo +Burton +Charlie +Frankie +Gregory +Guillermo +Homer +Rex +Dave +Elias +Fidel +Freddie +Gilberto +Guy +Loren +Augustine +Boyd +Emil +Max +Merle +Sammy +Ernie +Grant +Hubert +Marshall +Myron +Orville +Pablo +Stuart +August +Bennie +Buddy +Curtis +Fredrick +Gonzalo +Gregorio +Gus +Isaac +Jean +Perry +Phil +Tomas +Ed +Ken +Lupe +Nicolas +Reynaldo +Andres +Armand +Clinton +Cruz +Darrel +Donn +Earle +Mervin +Roman +Sherman +Simon +Teddy +Terry +Trinidad +Vicente +Wendell +Wilfred +Adolph +Akira +Amador +Archie +Carroll +Eric +Joaquin +Lorenzo +Lynn +Mary +Nathan +Neal +Noel +Otto +Yoshio +Aldo +Bud +Dwight +Eduardo +Harlan +Joel +Leopoldo +Raymundo +Roderick +Ross +Barry +Cornelius +Elwood +Faustino +Felipe +Hiroshi +Horace +Javier +Jerald +Jorge +Margarito +Merrill +Nicholas +Rolland +Santiago +Timothy +Willis +Alton +Billie +Bruno +Elbert +Ervin +Forrest +Gustavo +Ismael +Jessie +Luther +Ned +Nelson +Owen +Porfirio +Ramiro +Refugio +Rudolfo +Abel +Arnulfo +Art +Barney +Craig +Daryl +Doyle +Duncan +Eldon +Erwin +Hal +Ira +Julius +Kenji +Leonardo +Lionel +Lorin +Mickey +Morton +Moses +Rene +Reyes +Salvatore +Steven +Ward +Yukio +Adrian +Al +Alden +Alejandro +Bernardo +Candelario +Dallas +Dominic +Dudley +Edmond +Ellsworth +Federico +Fermin +Florentino +Hans +Harley +Hilario +Humberto +Irvin +Jacob +Marcos +Millard +Mitchell +Reginald +Rogelio +Ronnie +Sanford +Santos +Stewart +Vern +Wilson +Abraham +Alva +Andre +Andy +Arlen +Barbara +Basil +Carlo +Clement +Eddy +Edmundo +Ellis +Elton +Elvin +Esteban +Eusebio +Fredric +Galen +Hugo +Irwin +Isabel +Ivan +Jackson +Jaime +Jasper +Lucio +Marcus +Matthew +Maynard +Mervyn +Minoru +Noboru +Vaughn +Ventura +Ygnacio +Agustin +Amado +Anastacio +Aurelio +Benito +Bernabe +Brian +Clark +Cleo +Dexter +Dolores +Efren +Elmo +Freddy +Gaylord +Gerard +Gerardo +Grover +Kay +Kiyoshi +Lenard +Masao +Masaru +Norbert +Norris +Orrin +Preston +Reed +Rosendo +Rudolf +Sal +Shirley +Stanford +Sydney +Tadashi +Toshio +Wally +Wilmer +Winston +Ysidro +Akio +Arvid +Aubrey +Austin +Beverly +Charley +Chris +Clifton +Cyril +Denny +Dewey +Donato +Eli +Evan +Ferdinand +Florencio +Forest +Frederic +Garry +Genaro +Gino +Heriberto +Hideo +Jacinto +Jerrold +Kenney +Kent +Kevin +Laverne +Marcelino +Marcelo +Miller +Milo +Morgan +Norton +Otis +Pasqual +Raleigh +Randall +Robin +Rolf +Rosalio +Rosario +Roscoe +Rowland +Spencer +Stan +Sylvester +Teruo +Troy +Vance +Verne +Vito +Willian +Augustin +Blaine +Bradley +Buster +Carlton +Carol +Clair +Clay +Darryl +Davis +Derald +Donal +Donovan +Earnest +Eliseo +Elwin +Epitacio +Eulalio +Fletcher +Foster +Gail +Garland +Gerry +Harrison +Heraldo +Hoover +Isamu +Isidoro +Jere +Jon +Junior +Kenny +Lane +Lauren +Loyd +Luciano +Lucien +Macario +Mariano +Marilyn +Marino +Mas +Mathew +Mauro +Maxwell +Merlin +Michio +Miles +Murray +Narciso +Natividad +Octavio +Pierre +Rito +Rodrigo +Royce +Sammie +Scott +Sheldon +Shigeru +Socorro +Sterling +Takashi +Teodoro +Theron +Tim +Tsutomu +Valentine +Wilburn +Wiley +Wilford +Robert +Richard +John +William +Donald +James +Charles +George +Frank +Jack +David +Edward +Joe +Raymond +Thomas +Joseph +Paul +Kenneth +Ronald +Harold +Albert +Arthur +Manuel +Henry +Ralph +Walter +Don +Fred +Jose +Eugene +Bill +Louis +Bob +Gerald +Norman +Ernest +Harry +Daniel +Gilbert +Roy +Alfred +Stanley +Jerry +Howard +Lawrence +Tony +Peter +Leonard +Ray +Juan +Herbert +Earl +Billy +Jim +Gordon +Carl +Jesus +Douglas +Victor +Lloyd +Philip +Dick +Antonio +Wayne +Gene +Leo +Michael +Tom +Warren +Edwin +Leroy +Bruce +Larry +Clarence +Dale +Eddie +Roger +Anthony +Ruben +Johnny +Clifford +Jimmy +Melvin +Bobby +Salvador +Marvin +Russell +Carlos +Jimmie +Francis +Tommy +Mike +Theodore +Ramon +Roberto +Francisco +Glenn +Martin +Floyd +Raul +Vernon +Vincent +Leslie +Andrew +Allen +Bernard +Samuel +Alan +Lee +Luis +Rudy +Pete +Elmer +Pedro +Phillip +Ted +Wallace +Roland +Alvin +Jesse +Allan +Patrick +Alex +Wesley +Clyde +Benjamin +Frederick +Gary +Oscar +Rudolph +Sam +Armando +Harvey +Keith +Milton +Arnold +Leland +Lewis +Louie +Alfonso +Ben +Angel +Nick +Glen +Leon +Dan +Neil +Fernando +Maurice +Duane +Miguel +Alfredo +Danny +Hugh +Dennis +Jay +Lester +Mario +Edgar +Rafael +Chester +Dean +Edmund +Enrique +Everett +Herman +Hector +Johnnie +Ricardo +Stephen +Alexander +Claude +Willard +Benny +Franklin +Julian +Buddy +Gabriel +Pablo +Sidney +Darrell +Delbert +Felix +Fredrick +Rodney +Rodolfo +Willie +Steve +Bert +Cecil +Wilbur +Jerome +Loren +Angelo +Aurelio +Charlie +Julio +Laurence +Lupe +Malcolm +Teddy +Terry +Alberto +Arturo +Byron +Freddie +Guadalupe +Mark +Curtis +Ernesto +Lyle +Morris +Stuart +Virgil +Barry +Dave +Pat +Andres +Augustine +Bennie +Eduardo +Guy +Oliver +Calvin +Conrad +Ignacio +Irving +Joaquin +Sammy +Tomas +Clayton +Clinton +Felipe +Jackie +Steven +Burton +Lorenzo +Lowell +Max +Edmond +Elias +Homer +Jean +Karl +Monte +Myron +Rex +Adolph +Gregory +Jess +Merle +Vicente +Wilfred +Santiago +Willis +Adolfo +Boyd +Dwight +Guillermo +Owen +Perry +Simon +Agustin +Eldon +Ernie +Fidel +Jessie +Lynn +Marcelino +Orville +Ramiro +Wilbert +Carlton +Chris +Christopher +Elbert +Emilio +Gilberto +Harlan +Harley +Horace +Mary +Nicholas +Ross +Archie +Clark +Dominic +Emil +Forrest +Frankie +Gino +Grant +Murray +Nicolas +Refugio +Sanford +Stewart +Alejandro +August +Bruno +Carroll +Cornelius +Ellis +Hideo +Ira +Ivan +Jaime +Ken +Laverne +Lionel +Luther +Mervyn +Nelson +Phil +Ronnie +Adrian +Bud +Clifton +Domingo +Ed +Florentino +Gus +Hugo +Joel +Jorge +Junior +Marcus +Margarito +Marion +Marshall +Merrill +Neal +Reynaldo +Abel +Al +Dudley +Elwood +Erwin +Gustavo +Hilario +Javier +Kent +Lonnie +Sherman +Timothy +Trinidad +Ward +Wendell +Yoshio +Abraham +Bernardo +Carmen +Craig +Cruz +Delmar +Donn +Emmett +Eric +Guido +Harrison +Kazuo +Matthew +Merlin +Noboru +Noel +Reginald +Rolland +Rosendo +Sheldon +Wally +Akira +Aldo +Alton +Barney +Billie +Dana +Earle +Frederic +Gale +Gonzalo +Gregorio +Hal +Irvin +Julius +Lenard +Mariano +Millard +Randall +Raoul +Rollin +Rowland +Royal +Salvatore +Santos +Stanford +Verne +Aaron +Art +Bernie +Clive +Dario +Denny +Elton +Genaro +Humberto +Irwin +Isaac +Kay +Kevin +Leonardo +Leopoldo +Milo +Moses +Nathan +Otis +Otto +Randolph +Reno +Reuben +Reymundo +Roman +Rudolfo +Shirley +Teodoro +Van +Ygnacio +Adam +Anastacio +Andy +Anselmo +Arlen +Basil +Benito +Bertram +Blaine +Brian +Conrado +Cyril +Darrel +Earnest +Eddy +Ellsworth +Emile +Ervin +Gail +Grover +Hans +Hiroshi +Hoover +Hubert +Isamu +Jackson +Joan +Jon +Lavern +Marcos +Mervin +Micheal +Mickey +Percy +Roderick +Rudolf +Saul +Wilber +Alden +Alphonso +Antone +Apolinar +Armand +Aubrey +Bernabe +Bradford +Candelario +Carlo +Carol +Catarino +Delfino +Dino +Doyle +Duke +Elliott +Elvin +Esteban +Evan +Fidencio +Florencio +Gaylord +Graham +Herb +Ian +Ismael +Johnie +Kenji +Loyd +Magdaleno +Marcel +Maria +Mathew +Milan +Minoru +Mitchell +Mitsuo +Natividad +Norbert +Pascual +Pasqual +Porfirio +Rito +Robin +Rubin +Russel +Stanton +Sylvester +Terence +Teruo +Toshio +Val +Vern +Virginia +Waldo +Weldon +Wilford +Winston +Yukio +Alvaro +Amos +Andre +Anton +Austin +Barbara +Blas +Bonifacio +Bradley +Carrol +Cipriano +Dante +Darold +Darwin +Daryl +Denis +Denton +Dewey +Donnie +Elden +Emery +Eulalio +Federico +Fermin +Franklyn +Freddy +Garth +Gerard +Gerardo +Harris +Helen +Hoyt +Jeff +Jerald +Jere +Jerrold +Joesph +Josephine +Kiyoshi +Lamar +Lauren +Lino +Luciano +Lucio +Mac +Macario +Marco +Masao +Maynard +Merritt +Merton +Mitsuru +Moises +Morton +Ned +Noble +Norris +Omar +Oran +Orval +Patricio +Rene +Reyes +Rodrigo +Rojelio +Royce +Rupert +Shigeru +Sterling +Sydney +Tadashi +Takeshi +Tim +Tommie +Valentine +Willam +Winfield +Ysidro +Robert +Richard +John +William +Donald +James +Charles +George +Jack +David +Frank +Edward +Ronald +Thomas +Raymond +Joe +Joseph +Kenneth +Paul +Albert +Manuel +Henry +Arthur +Don +Harold +Ralph +Fred +Bill +Walter +Norman +Gerald +Eugene +Bob +Jerry +Harry +Jose +Lawrence +Stanley +Daniel +Louis +Ernest +Peter +Alfred +Howard +Roy +Gilbert +Ray +Carl +Tony +Douglas +Marvin +Jim +Leonard +Gordon +Herbert +Earl +Billy +Dick +Juan +Jesus +Lloyd +Glenn +Anthony +Melvin +Larry +Roger +Michael +Bruce +Jimmy +Leroy +Philip +Eddie +Theodore +Victor +Wayne +Clarence +Leo +Johnny +Russell +Tom +Edwin +Ruben +Bobby +Salvador +Rudy +Dale +Tommy +Antonio +Raul +Alan +Clifford +Vincent +Carlos +Vernon +Gene +Andrew +Pete +Milton +Allen +Martin +Mike +Keith +Jimmie +Warren +Ramon +Lee +Gary +Francis +Alvin +Jesse +Guadalupe +Ted +Arnold +Benjamin +Frederick +Samuel +Francisco +Patrick +Wallace +Elmer +Floyd +Alex +Dan +Luis +Miguel +Duane +Glen +Leland +Roland +Phillip +Roberto +Clyde +Hugh +Rudolph +Allan +Harvey +Bernard +Pedro +Stephen +Lester +Neil +Wesley +Leslie +Lewis +Armando +Maurice +Mario +Alfonso +Chester +Dean +Oscar +Jerome +Louie +Benny +Enrique +Rafael +Alfredo +Herman +Johnnie +Sam +Angelo +Charlie +Everett +Leon +Rodney +Ben +Danny +Jay +Felix +Edgar +Hector +Claude +Lowell +Mark +Steve +Delbert +Dennis +Willard +Alexander +Conrad +Darrell +Nick +Wilbur +Bert +Julian +Lupe +Lyle +Rodolfo +Angel +Franklin +Laurence +Loren +Virgil +Cecil +Jackie +Willis +Jess +Sammy +Curtis +Willie +Buddy +Edmund +Terry +Augustine +Dave +Felipe +Fernando +Hubert +Jean +Malcolm +Alberto +Barry +Julio +Marion +Ronnie +Sidney +Teddy +Dwight +Homer +Pablo +Ricardo +Clinton +Morris +Oliver +Ross +Byron +Calvin +Elias +Frankie +Irving +Ken +Lynn +Myron +Archie +Bud +Burton +Gabriel +Guillermo +Ignacio +Joel +Emil +Gregorio +Marshall +Max +Merle +Neal +Reginald +Al +Aurelio +Chris +Clayton +Ed +Ivan +Jessie +Karl +Kay +Pat +Arturo +Forrest +Freddie +Gregory +Ismael +Ramiro +Steven +Stuart +Wendell +Alejandro +Emilio +Eric +Ernesto +Grant +Kent +Lonnie +Mervin +Noel +Reynaldo +Timothy +Adolph +Agustin +Donn +Earle +Fredrick +Guy +Joaquin +Lorenzo +Perry +Phil +Santos +Sheldon +Tomas +Cruz +Eldon +Gilberto +Horace +Jorge +Mary +Nicholas +Adolfo +Alton +August +Bruno +Carroll +Edmond +Eduardo +Gus +Harlan +Mickey +Monte +Morton +Rex +Sherman +Stanford +Trinidad +Abel +Andy +Billie +Christopher +Darrel +Elbert +Elvin +Faustino +Irwin +Julius +Kevin +Lionel +Mariano +Merlin +Orville +Owen +Refugio +Rene +Salvatore +Valentine +Van +Verne +Ward +Akira +Barney +Bennie +Bobbie +Brian +Craig +Dallas +Dewey +Dudley +Ervin +Harley +Jaime +Javier +Ned +Reyes +Stewart +Warner +Yukio +Alden +Arlen +Armand +Barbara +Daryl +Elden +Ellis +Ernie +Fidel +Gonzalo +Gustavo +Hal +Hollis +Irvin +Jackson +Judson +Marcos +Margarito +Mitchell +Nicolas +Roman +Simon +Takashi +Wally +Wilfred +Andres +Bertram +Boyd +Dino +Elwood +Emmett +Erwin +Frederic +Gail +Gale +Hans +Hideo +Hiroshi +Junior +Kazuo +Mervyn +Murray +Nathan +Nelson +Raoul +Vicente +Wilson +Aldo +Allyn +Andre +Art +Austin +Benito +Beverly +Carlton +Clay +Clifton +Cornelius +Delmar +Denny +Dominic +Edmundo +Elwyn +Gaylord +Harrison +Hugo +Humberto +Ira +Jerrold +Maynard +Merrill +Miles +Otto +Rogelio +Roscoe +Rosendo +Sanford +Saul +Shirley +Sylvester +Tim +Wilbert +Alva +Amado +Barton +Basil +Bernardo +Bernie +Brooks +Charley +Clark +Clement +Cliff +Dario +Denis +Domingo +Fay +Fermin +Florentino +Forest +Genaro +Gerry +Gino +Isabel +Jasper +Jerald +Jerold +Jordan +Kenny +Kiyoshi +Leopoldo +Lincoln +Loyd +Luciano +Lucio +Luther +Margaret +Masami +Matthew +Minoru +Monty +Pascual +Randolph +Remo +Rodger +Rolland +Rollin +Royal +Rudolfo +Scott +Seferino +Stanton +Theadore +Valente +Vern +Wade +Wilford +Yoshio +Ysmael +Adelbert +Adrian +Betty +Blaine +Blas +Carlo +Carmen +Carrol +Chuck +Clair +Cyril +Darryl +Dell +Dolores +Donnie +Eddy +Elroy +Emery +Emile +Evan +Farrell +Fausto +Fransisco +Garland +Garry +Garth +Gayle +Guido +Hank +Ian +Isaac +Jacob +Joey +Jon +Jules +Kenji +Lino +Lyman +Marcello +Marcelo +Mathew +Micheal +Millard +Nathaniel +Natividad +Nels +Norbert +Osamu +Preston +Raymundo +Reuben +Robin +Roderick +Rudolf +Russel +Santiago +Satoru +Shigeru +Shiro +Spencer +Takeshi +Terrence +Urban +Virginia +Werner +Wilmer +Ysidro +Yutaka +Robert +John +Richard +William +James +Donald +Charles +George +Ronald +David +Frank +Jack +Edward +Kenneth +Joe +Raymond +Thomas +Paul +Joseph +Albert +Don +Arthur +Manuel +Ralph +Henry +Harold +Gerald +Bill +Bob +Jerry +Walter +Eugene +Fred +Norman +Gilbert +Daniel +Ernest +Harry +Louis +Stanley +Lawrence +Carl +Roy +Jose +Alfred +Ray +Peter +Leonard +Dick +Jim +Howard +Michael +Larry +Tony +Tom +Gordon +Roger +Philip +Anthony +Herbert +Billy +Eddie +Jimmy +Marvin +Earl +Bruce +Leroy +Victor +Douglas +Wayne +Clarence +Gary +Lloyd +Melvin +Gene +Jesus +Johnny +Glenn +Edwin +Ruben +Lee +Russell +Dale +Rudy +Tommy +Jimmie +Bobby +Clifford +Warren +Phillip +Ted +Vernon +Raul +Theodore +Mike +Wallace +Leo +Milton +Stephen +Carlos +Luis +Allen +Salvador +Alan +Antonio +Arnold +Floyd +Juan +Frederick +Martin +Alvin +Francis +Keith +Louie +Pete +Samuel +Andrew +Bernard +Vincent +Wesley +Ramon +Clyde +Elmer +Leon +Jesse +Alfonso +Dennis +Allan +Benjamin +Hugh +Lewis +Harvey +Patrick +Alex +Duane +Franklin +Herman +Lester +Pedro +Rodney +Ben +Roland +Glen +Wilbur +Barry +Danny +Leland +Dan +Jay +Leslie +Roberto +Dean +Francisco +Neil +Steve +Sam +Darrell +Maurice +Nick +Alexander +Armando +Cecil +Delbert +Rafael +Ronnie +Rudolph +Jerome +Jess +Karl +Edmund +Fernando +Miguel +Oscar +Ricardo +Everett +Mario +Angelo +Mark +Steven +Terry +Alfredo +Angel +Benny +Chester +Lowell +Bert +Dave +Charlie +Freddie +Guadalupe +Laurence +Rodolfo +Dwight +Max +Sidney +Byron +Claude +Felix +Ignacio +Joel +Johnnie +Clayton +Enrique +Jackie +Julian +Willard +Arturo +Burton +Edgar +Loren +Calvin +Ken +Malcolm +Noel +Teddy +Alberto +Buddy +Forrest +Homer +Stuart +Fredrick +Harlan +Hector +Lyle +Rex +Ross +Curtis +Julio +Virgil +Willie +Andy +Clinton +Ernie +Orville +Phil +Timothy +Clark +Conrad +Elton +Gale +Lionel +Lorenzo +Marshall +Morris +Myron +Nicholas +Refugio +Ernesto +Gregory +Lupe +Pat +Reynaldo +Willis +Clifton +Eduardo +Emmett +Eric +Grant +Hal +Harley +Hubert +Irvin +Irving +Ivan +Lynn +Al +Aldo +Augustine +Carroll +Chris +Chuck +Ed +Emil +Emilio +Gabriel +Gilberto +Guillermo +Jean +Marion +Neal +Sammy +Adrian +Earle +Edmond +Joaquin +Merle +Pablo +Rene +Roderick +Wilfred +Agustin +Alejandro +August +Bennie +Brian +Daryl +Dominic +Erwin +Garry +Guy +Jessie +Mickey +Morton +Oliver +Otis +Otto +Porfirio +Reginald +Stewart +Trinidad +Adolph +Archie +Aurelio +Bud +Cruz +Denny +Donn +Ervin +Fidel +Gregorio +Jerald +Julius +Kent +Lucio +Merrill +Micheal +Monte +Santiago +Sylvester +Tomas +Wendell +Arlen +Hideo +Irwin +Jacob +Jorge +Junior +Laverne +Mary +Mervin +Nelson +Owen +Perry +Rollin +Salvatore +Sheldon +Vicente +Alden +Amado +Armand +Art +Carlton +Doyle +Eddy +Elias +Harrison +Ian +Jan +Kazuo +Kenny +Leopoldo +Lonnie +Marcus +Meliton +Melvyn +Merlin +Mervyn +Millard +Mitchell +Nathan +Pascual +Rufus +Sanford +Sterling +Verne +Warner +Bertram +Billie +Charley +Craig +Darrel +Delmar +Dewey +Domingo +Dudley +Eldon +Frederic +Gustavo +Ira +Javier +Jon +Kevin +Marcelino +Masao +Miles +Murray +Percy +Robin +Rolland +Roman +Royce +Sherman +Stanford +Terence +Wilbert +Yoshio +Akira +Andres +Aubrey +Bruno +Burt +Cyril +Earnest +Eliseo +Frankie +Fredric +Genaro +Gus +Hans +Horace +Ismael +Justin +Lincoln +Luther +Morgan +Randall +Reuben +Rodger +Rosalio +Simon +Tad +Takashi +Takeshi +Vern +Abelardo +Adolfo +Austin +Barney +Boyd +Bradford +Carlo +Conrado +Courtney +Dallas +Frances +Gail +Galen +Gaylord +Humberto +Jaime +Jere +Kiyoshi +Mack +Marcelo +Marcos +Margaret +Matthew +Merlyn +Ned +Nolan +Norbert +Orval +Raymon +Rolf +Royal +Rudolf +Santos +Shirley +Stan +Troy +Wally +Wilford +Abel +Adam +Alphonso +Alvaro +Barton +Benito +Blaine +Bradley +Carleton +Carmen +Clement +Colin +Dario +Darryl +Darwin +Dee +Dickie +Dino +Dion +Doug +Dwain +Efren +Elbert +Ellis +Elwood +Emanuel +Felipe +Fidencio +Franklyn +Gerry +Gloria +Harland +Harris +Haruo +Hiroshi +Hugo +Isaac +Jason +Jerold +Kay +Kermit +Margarito +Mariano +Melville +Monroe +Natividad +Patricia +Ramiro +Randolph +Remo +Rosendo +Rowland +Scott +Seymour +Spencer +Sydney +Theron +Valentin +Wade +Ward +Yukio +Robert +Richard +John +James +William +Donald +Charles +George +Ronald +David +Frank +Jack +Edward +Thomas +Joe +Kenneth +Paul +Raymond +Joseph +Don +Arthur +Gerald +Albert +Fred +Henry +Bill +Jerry +Norman +Ralph +Harold +Manuel +Walter +Bob +Lawrence +Harry +Gary +Louis +Ernest +Eugene +Roy +Larry +Daniel +Peter +Gilbert +Alfred +Michael +Jim +Ray +Carl +Stanley +Gordon +Howard +Roger +Tony +Jose +Douglas +Dick +Leonard +Leroy +Victor +Philip +Wayne +Melvin +Earl +Tom +Anthony +Edwin +Eddie +Marvin +Lee +Bruce +Billy +Dale +Jimmy +Johnny +Herbert +Gene +Clifford +Phillip +Franklin +Carlos +Tommy +Clarence +Warren +Jimmie +Jesus +Glenn +Lloyd +Alan +Leo +Raul +Martin +Rudy +Allen +Theodore +Ruben +Russell +Mike +Vincent +Ben +Francis +Dennis +Jesse +Vernon +Alvin +Ted +Arnold +Rodney +Clyde +Leslie +Wallace +Bernard +Bobby +Patrick +Keith +Roland +Andrew +Antonio +Floyd +Pete +Alex +Ramon +Danny +Lewis +Frederick +Ronnie +Salvador +Samuel +Alfonso +Duane +Juan +Luis +Wesley +Dean +Harvey +Rudolph +Darrell +Leland +Benjamin +Dan +Stephen +Jay +Lester +Milton +Leon +Allan +Louie +Pedro +Sam +Felix +Francisco +Claude +Hugh +Neil +Terry +Jess +Nick +Barry +Benny +Elmer +Everett +Miguel +Armando +Mark +Delbert +Karl +Maurice +Oscar +Chester +Jerome +Laurence +Loren +Wilbur +Angel +Charlie +Fernando +Willard +Gabriel +Herman +Stuart +Glen +Hector +Johnnie +Lyle +Mario +Freddie +Lowell +Max +Steve +Calvin +Dave +Dwight +Julian +Rafael +Bert +Buddy +Ignacio +Joel +Lupe +Edgar +Noel +Roberto +Alfredo +Gregory +Homer +Jackie +Jon +Pat +Bud +Rodolfo +Ed +Grant +Marshall +Merle +Morris +Al +Cecil +Conrad +Fredrick +Orville +Phil +Sidney +Steven +Teddy +Edmund +Emilio +Forrest +Guy +Lynn +Malcolm +Nicholas +Rex +Ricardo +Virgil +Alexander +Angelo +Curtis +Eldon +Enrique +Eric +Ernie +Guadalupe +Hubert +Ken +Oliver +Ross +Sammy +Willie +Abraham +Alberto +Brian +Clayton +Elias +Elton +Emil +Felipe +Willis +Adolph +Augustine +Bennie +Irwin +Joaquin +Julio +Kent +Lorenzo +Owen +Carroll +Myron +Pablo +Alton +Art +Arturo +Burton +Daryl +Denis +Elvin +Gus +Harlan +Marion +Adolfo +Clark +Ernesto +Garry +Gilberto +Jacob +Jerrold +Jessie +Marcus +Monte +Sherman +Stewart +Timothy +Abel +Dominic +Donn +Gonzalo +Hal +Harley +Jean +Jerald +Julius +Kay +Neal +Refugio +Roderick +Salvatore +Ward +Wendell +Wilbert +Andy +August +Aurelio +Boyd +Byron +Delano +Doyle +Earnest +Faustino +Gale +Ismael +Jaime +Kiyoshi +Lionel +Mary +Mervin +Murray +Reginald +Reuben +Sheldon +Trinidad +Vern +Wilfred +Armand +Carol +Christopher +Clement +Darwin +Eduardo +Franklyn +Galen +Hiroshi +Ivan +Mervyn +Mickey +Otis +Robin +Rodger +Rolland +Scott +Simon +Vicente +Wally +Alejandro +Andres +Bruno +Carlo +Carlton +Carmen +Chuck +Clinton +Denny +Dudley +Fidel +Frankie +Fredric +Gail +Humberto +Isaac +Kevin +Leonardo +Marcos +Mitchell +Morton +Nelson +Perry +Randall +Randolph +Ron +Rudolfo +Sal +Santos +Sebastian +Sylvester +Troy +Yoshio +Agustin +Bernie +Clifton +Cruz +Darryl +Delmer +Edmond +Elbert +Erwin +Freddy +Garth +Genaro +Gustavo +Hans +Irving +Jerold +Kenny +Laverne +Lonnie +Marcelino +Mariano +Mathew +Matthew +Merrill +Moses +Nathan +Norbert +Otto +Rene +Verne +Arnulfo +Austin +Barbara +Bertram +Bobbie +Buster +Darrel +Dee +Delmar +Dewey +Dwain +Eliseo +Elwood +Esteban +Evan +Frederic +Gerard +Guillermo +Haruo +Horace +Irvin +Javier +Jorge +Junior +Kermit +Mac +Marcelo +Maximo +Nickolas +Pierre +Ramiro +Raoul +Reynaldo +Rogelio +Rollin +Ronny +Rosario +Royce +Sanford +Stanton +Tomas +Van +Xavier +Adam +Adrian +Alden +Amado +Anselmo +Anton +Bernardo +Betty +Billie +Burt +Caesar +Chauncey +Chris +Clarke +Craig +Dallas +Dino +Duke +Duncan +Dwaine +Elliott +Ellsworth +Elpidio +Ervin +Gaylord +Gustav +Harris +Jackson +Jan +Jeffrey +Jordan +Kenji +Kenton +Leighton +Leopold +Lucien +Lucio +Lyman +Masaru +Matt +Maynard +Micheal +Michel +Miles +Milo +Newton +Nicolas +Raymundo +Rod +Russel +Shigeru +Stan +Tad +Takashi +Vance +Warner +Wiley +Robert +Richard +John +James +William +Donald +Charles +Ronald +George +David +Frank +Jack +Edward +Paul +Joe +Thomas +Raymond +Kenneth +Don +Joseph +Gary +Fred +Jerry +Arthur +Bill +Albert +Gerald +Manuel +Ralph +Bob +Norman +Walter +Henry +Harold +Daniel +Larry +Michael +Roger +Jim +Carl +Lawrence +Peter +Louis +Harry +Eugene +Ernest +Gilbert +Ray +Alfred +Douglas +Stanley +Gordon +Roy +Bruce +Tony +Howard +Tom +Johnny +Leonard +Wayne +Philip +Jose +Earl +Dick +Leroy +Marvin +Dale +Gene +Anthony +Eddie +Melvin +Warren +Clifford +Billy +Jimmy +Dennis +Patrick +Victor +Carlos +Mike +Edwin +Ted +Tommy +Rudy +Lloyd +Glenn +Herbert +Martin +Theodore +Jesus +Alan +Phillip +Lee +Andrew +Raul +Russell +Vincent +Franklin +Pete +Ronnie +Allen +Leo +Ruben +Clarence +Alvin +Frederick +Samuel +Leslie +Francis +Leon +Vernon +Jimmie +Duane +Steve +Dan +Harvey +Allan +Jesse +Ramon +Benjamin +Clyde +Floyd +Glen +Terry +Bernard +Lewis +Neil +Rodney +Stephen +Hugh +Leland +Sam +Danny +Juan +Louie +Antonio +Jay +Lester +Milton +Arnold +Keith +Wesley +Salvador +Alfonso +Ben +Bobby +Francisco +Maurice +Pedro +Barry +Darrell +Dean +Everett +Herman +Luis +Roland +Wallace +Benny +Nick +Laurence +Mario +Armando +Jerome +Oscar +Calvin +Dave +Elmer +Hector +Jess +Alex +Bert +Gregory +Ricardo +Willard +Angel +Delbert +Felix +Joel +Miguel +Sidney +Alexander +Johnnie +Ken +Rafael +Angelo +Mark +Steven +Clark +Claude +Edgar +Roberto +Stuart +Julian +Karl +Rudolph +Pat +Phil +Augustine +Fernando +Fredrick +Lyle +Malcolm +Myron +Neal +Rodolfo +Byron +Cecil +Edmund +Jon +Marshall +Virgil +Bennie +Charlie +Chester +Curtis +Freddie +Ignacio +Jackie +Lynn +Alfredo +Gail +Lionel +Max +Teddy +Buddy +Clinton +Conrad +Dwight +Enrique +Ernie +Gabriel +Guy +Lupe +Morris +Timothy +Al +Carroll +Rodger +Wilbur +Edmond +Kent +Loren +Lowell +Willie +Willis +Clayton +Darryl +Felipe +Forrest +Grant +Harlan +Rex +Ross +Sheldon +Burton +Ed +Frankie +Homer +Hubert +Pablo +Adrian +Craig +Eric +Irving +Monte +Nicholas +Robin +Sammy +Sherman +Archie +Denny +Elias +Emilio +Joaquin +Marion +Merle +Mickey +Noel +Reginald +Stewart +Vicente +Adolfo +Arlen +Art +Austin +Bud +Cornelius +Daryl +Emil +Gregorio +Jan +Julio +Lorenzo +Mel +Morton +Oliver +Orval +Scott +Brian +Christopher +Ellis +Ernesto +Gilberto +Guillermo +Gustavo +Perry +Ramiro +Roderick +Spencer +Wilfred +Adolph +Alberto +Aurelio +Billie +Chuck +Dominic +Dudley +Eduardo +Eldon +Fidel +Ivan +Jean +Jorge +Mervin +Orville +Roman +Tim +Warner +Aaron +Akira +Armand +August +Bernie +Denis +Elbert +Elwood +Frederic +Hal +Hiroshi +Horace +Jacob +Kenny +Marcelino +Marcus +Nathan +Owen +Rolland +Ron +Sergio +Stan +Vance +Abraham +Alejandro +Alton +Andy +Arturo +Betty +Bradford +Carlton +Clifton +Dana +Darrel +Delmar +Domingo +Donn +Emmett +Erwin +Garry +Harrison +Ismael +Jerald +Jerold +Julius +Junior +Lauren +Leonardo +Mariano +Mervyn +Minoru +Mitchell +Reynaldo +Rollin +Ronny +Santiago +Sherwood +Terrence +Tomas +Trinidad +Wendell +Abel +Agustin +Andres +Bart +Benito +Carol +Chris +Dallas +Dewey +Dwayne +Gale +Harley +Heriberto +Hilario +Irwin +Lanny +Marco +Mitsuru +Nathaniel +Nickolas +Norberto +Patricia +Randolph +Refugio +Tetsuo +Truman +Vern +Wilbert +Wilson +Ygnacio +Amado +Anastacio +Arlin +Augustin +Boyd +Carlyle +Cruz +Dino +Donnie +Elliott +Elton +Fredric +Garrett +Gerard +Gerry +Gonzalo +Guadalupe +Gus +Hans +Harmon +Herb +Hugo +Irvin +Isaac +Jackson +Javier +Jerrold +Jessie +Kay +Kelly +Kenji +Kevin +Kirk +Kiyoshi +Lonnie +Lorin +Marcos +Mary +Merced +Morgan +Ned +Nicolas +Norbert +Pascual +Porfirio +Randy +Rod +Sandy +Stanford +Sydney +Travis +Troy +Yoshio +Alonzo +Alvaro +Barton +Bernerd +Bertram +Cary +Cliff +Delano +Douglass +Doyle +Earnest +Edmundo +Evan +Federico +Freddy +Fritz +Grover +Isamu +Isao +Janet +Jeff +Jo +Johnie +Kurt +Lawrance +Leopoldo +Lincoln +Loran +Luther +Margarito +Marlin +Marty +Masaaki +Matthew +Merlin +Milo +Monty +Murray +Nils +Norris +Otto +Pierre +Raymundo +Rene +Roque +Salvatore +Sanford +Santos +Shirley +Shiro +Simon +Sterling +Tadashi +Terence +Tommie +Wiley +Winston +Ysidro +Robert +Richard +John +James +William +Donald +Charles +Ronald +David +George +Frank +Jack +Joe +Thomas +Edward +Raymond +Gary +Paul +Kenneth +Joseph +Jerry +Don +Gerald +Fred +Albert +Michael +Bill +Bob +Arthur +Henry +Walter +Ralph +Larry +Norman +Manuel +Harold +Roger +Lawrence +Daniel +Stanley +Ernest +Eugene +Roy +Jim +Louis +Peter +Carl +Gilbert +Alfred +Harry +Tony +Douglas +Howard +Dennis +Tom +Ray +Wayne +Leonard +Philip +Leroy +Bruce +Victor +Anthony +Dale +Gene +Johnny +Warren +Marvin +Gordon +Jimmy +Jose +Dick +Glenn +Eddie +Phillip +Mike +Melvin +Russell +Ted +Earl +Ruben +Clifford +Alan +Lee +Rudy +Martin +Allen +Billy +Lloyd +Stephen +Tommy +Carlos +Clarence +Floyd +Edwin +Patrick +Herbert +Ronnie +Andrew +Pete +Jesus +Frederick +Vernon +Francis +Theodore +Clyde +Ramon +Alvin +Jesse +Raul +Samuel +Jimmie +Leo +Terry +Danny +Arnold +Dan +Keith +Antonio +Bobby +Vincent +Franklin +Leland +Lewis +Salvador +Ben +Leon +Glen +Alex +Alfonso +Duane +Jay +Leslie +Barry +Karl +Wesley +Harvey +Nick +Steve +Allan +Chester +Roland +Sam +Dave +Dean +Neil +Johnnie +Milton +Rodney +Benjamin +Jon +Luis +Hugh +Benny +Darrell +Lester +Wallace +Louie +Bert +Juan +Rudolph +Bernard +Pat +Elmer +Everett +Jerome +Mark +Herman +Alexander +Laurence +Roberto +Claude +Charlie +Lowell +Pedro +Willard +Myron +Wilbur +Delbert +Fernando +Loren +Phil +Steven +Cecil +Francisco +Angelo +Byron +Calvin +Ernie +Gregory +Jackie +Julian +Oscar +Sammy +Hector +Jess +Malcolm +Timothy +Maurice +Noel +Angel +Curtis +Ken +Lyle +Mario +Rex +Brian +Julio +Sidney +Edgar +Fredrick +Grant +Adolph +Buddy +Eric +Gabriel +Kent +Lynn +Max +Willie +Alfredo +Armando +Conrad +Ed +Edmund +Felix +Freddie +Guy +Monte +Nicholas +Ross +Chris +Clark +Frankie +Fredric +Marshall +Wilfred +Darryl +Edmond +Elias +Garry +Homer +Lionel +Lupe +Merle +Morris +Rafael +Robin +Abraham +Bennie +Clayton +Dwight +Ignacio +Joel +Rodolfo +Willis +Augustine +Enrique +Marion +Stuart +Burton +Craig +Abel +Clinton +Darrel +Elbert +Hal +Harlan +Jerrold +Kevin +Miguel +Neal +Sherman +Virgil +Ernesto +Irving +Ivan +Luther +Ricardo +Sheldon +Aaron +Andy +Art +Arturo +Boyd +Chuck +Emmett +Felipe +Forrest +Guadalupe +Irvin +Jan +Jessie +Joaquin +Leonardo +Lorenzo +Mickey +Nathan +Pablo +Randolph +Roderick +Sanford +Stan +Tomas +August +Bud +Dickie +Dudley +Eldon +Elwood +Emilio +Erwin +Gonzalo +Guillermo +Mary +Mervyn +Oliver +Orville +Otto +Perry +Rodger +Wendell +Adolfo +Agustin +Al +Alejandro +Alonzo +Carroll +Christopher +Daryl +Donn +Fidel +Gustavo +Harley +Herb +Irwin +Jorge +Kenny +Lonnie +Micheal +Murray +Otis +Ron +Terrence +Wilbert +Alberto +Alton +Barton +Dallas +Denis +Domingo +Dominic +Elliott +Gus +Jacob +Jerald +Jerold +Jonathan +Marcos +Mervin +Royal +Santos +Simon +Stewart +Adrian +Archie +Bart +Bryan +Charley +Cruz +Faustino +Frederic +Gail +Gale +Gerry +Horace +Ismael +Jean +Melvyn +Merrill +Orval +Randall +Raoul +Reynaldo +Santiago +Vern +Wade +Barbara +Burt +Cliff +Clifton +Darwin +Denny +Dewey +Earle +Ellis +Elton +Gerard +Hiroshi +Hubert +Hugo +Isaac +Jasper +Lyman +Mitchell +Morton +Nelson +Norbert +Pierre +Refugio +Ronny +Rudolf +Rudolfo +Salvatore +Scott +Shirley +Sterling +Teddy +Travis +Trinidad +Verne +Vince +Wally +Ward +Will +Wilson +Winston +Adam +Akira +Arnulfo +Basil +Bradley +Buster +Carlo +Clement +Cornelius +Cyril +Dino +Dolores +Doyle +Duncan +Dwayne +Eduardo +Ervin +Galen +Graham +Gregorio +Harland +Hideo +Hollis +Ian +Javier +Jere +Kirk +Margarito +Marlin +Matthew +Moses +Nathaniel +Octavio +Owen +Rollie +Stanford +Sydney +Tadashi +Terence +Troy +Warner +Ygnacio +Amos +Arlen +Armand +Barney +Bernardo +Bruno +Bryce +Carol +Dalton +Dana +Dario +Doug +Eddy +Efren +Elden +Eliseo +Elmo +Elvin +Emil +Esteban +Evert +Foster +Franklyn +Freddy +Gerold +Gilberto +Henri +Jaime +Jeff +Johnie +Kay +Kenton +Kerry +Kiyoshi +Laverne +Lorin +Loyd +Mack +Masao +Maynard +Merlin +Miles +Minoru +Newton +Nicolas +Norris +Orlando +Ramiro +Raymundo +Reuben +Riley +Rogelio +Rosendo +Rowland +Rupert +Sal +Seymour +Tetsuo +Tim +Val +Van +Vaughn +Waldo +Robert +Richard +John +James +William +Donald +David +Charles +Ronald +George +Frank +Edward +Thomas +Kenneth +Jack +Gary +Paul +Raymond +Jerry +Michael +Joe +Joseph +Larry +Don +Bill +Bob +Gerald +Henry +Albert +Walter +Arthur +Ralph +Fred +Manuel +Carl +Daniel +Lawrence +Roger +Jim +Norman +Peter +Harold +Harry +Gilbert +Ernest +Eugene +Stanley +Louis +Alfred +Roy +Wayne +Tony +Anthony +Gordon +Philip +Ray +Bruce +Dale +Eddie +Howard +Douglas +Dennis +Tom +Johnny +Leonard +Leroy +Marvin +Jimmy +Jose +Clifford +Mike +Phillip +Lee +Alan +Billy +Victor +Earl +Tommy +Gene +Melvin +Stephen +Dick +Russell +Warren +Patrick +Martin +Ronnie +Ted +Bobby +Ruben +Rudy +Edwin +Glenn +Allen +Frederick +Lloyd +Jesse +Floyd +Theodore +Francis +Vernon +Herbert +Terry +Jesus +Danny +Pete +Alvin +Dan +Raul +Arnold +Carlos +Vincent +Andrew +Jay +Keith +Leo +Leslie +Allan +Franklin +Clarence +Lester +Samuel +Bernard +Juan +Salvador +Wesley +Duane +Antonio +Milton +Barry +Darrell +Rodney +Harvey +Louie +Ben +Clyde +Neil +Benjamin +Brian +Glen +Leland +Wallace +Chester +Dave +Jimmie +Jon +Ramon +Roland +Steve +Joel +Dean +Leon +Luis +Steven +Alfonso +Nick +Sam +Francisco +Alexander +Karl +Johnnie +Lewis +Mario +Calvin +Claude +Phil +Alex +Armando +Elmer +Gregory +Jerome +Ken +Loren +Darryl +Hugh +Felix +Laurence +Maurice +Everett +Freddie +Herman +Mark +Stuart +Al +Fredrick +Lowell +Benny +Charlie +Delbert +Hector +Kent +Lynn +Marshall +Pedro +Ross +Rudolph +Ernie +Byron +Guy +Ricardo +Sidney +Curtis +Jess +Rex +Ed +Eric +Fernando +Jackie +Max +Monte +Pat +Scott +Clark +Gabriel +Julian +Nicholas +Lyle +Willis +Clayton +Edmund +Teddy +Virgil +Willard +Edgar +Ivan +Oscar +Alfredo +Angelo +Bert +Buddy +Burton +Cecil +Forrest +Kenny +Malcolm +Neal +Darrel +Garry +Guillermo +Jerald +Morris +Noel +Ramiro +Sheldon +Augustine +Carroll +Conrad +Eldon +Grant +Homer +Merle +Roberto +Roderick +Sammy +Timothy +Archie +Chris +Chuck +Craig +Irving +Perry +Rafael +Willie +Angel +August +Clifton +Dwight +Edmond +Hubert +Ignacio +Jan +Jessie +Mickey +Miguel +Nelson +Andy +Art +Daryl +Denny +Emil +Gilberto +Joaquin +Oliver +Orville +Rodolfo +Wilbert +Wilbur +Clinton +Elias +Gerry +Kevin +Marion +Mary +Preston +Ron +Sherman +Arlen +Denis +Eduardo +Emilio +Enrique +Frankie +Harley +Lorenzo +Myron +Salvatore +Abraham +Adrian +Bernie +Cliff +Gail +Gus +Jerrold +Kurt +Lupe +Micheal +Murray +Ned +Stewart +Tim +Warner +Wendell +Adolph +Barney +Barton +Bennie +Bud +Christopher +Cruz +Dwayne +Ellis +Elwood +Emmett +Ernesto +Hal +Harlan +Hiroshi +Javier +Jean +Julius +Kirk +Kiyoshi +Maynard +Melvyn +Mervyn +Owen +Randolph +Raoul +Robin +Terrence +Troy +Billie +Darwin +Dickie +Erwin +Frederic +Fredric +Gustavo +Irwin +Jonathan +Kim +Lonnie +Reginald +Reynold +Sergio +Spencer +Tomas +Verne +Ward +Wilfred +Wilson +Alberto +Armand +Brent +Carol +Cyril +Dominic +Doyle +Ervin +Freddy +Guadalupe +Herb +Hilario +Ira +Isaac +Jacob +Julio +Lionel +Mel +Mervin +Otis +Randall +Reggie +Rodger +Ronny +Rupert +Stan +Trinidad +Wally +Abel +Alejandro +Boyd +Brad +Bradley +Del +Domingo +Donn +Doug +Duke +Felipe +Gale +Geoffrey +Greg +Irvin +Kerry +Marcos +Marcus +Marilyn +Monty +Morley +Moses +Otto +Pasqual +Raymon +Reynaldo +Rod +Royal +Santiago +Truman +Van +Aaron +Amos +Arvin +Bobbie +Buck +Carrol +Clarke +Clay +Conrado +Cornelius +Dana +Dewey +Dudley +Eddy +Elbert +Gerard +Gregorio +Hans +Harland +Hideo +Jake +Jorge +Junior +Kay +Macario +Matthew +Merlin +Morton +Nicolas +Rogelio +Rosalio +Russel +Shirley +Sterling +Takashi +Terence +Terrance +Tracy +Val +Vicente +Virginia +Wade +Walt +Winston +Agustin +Alden +Antone +Aurelio +Benito +Bradford +Bruno +Bryan +Charley +Claudio +Cleo +Colin +Dayton +Delmar +Dino +Donnie +Elmo +Elton +Elwyn +Garrett +Gil +Gonzalo +Grover +Hank +Horace +Ismael +Jaime +Jerold +Jun +Kazuo +Kennith +Loran +Loyd +Luciano +Luther +Masaru +Millard +Milo +Minoru +Nathaniel +Norberto +Norris +Pablo +Patricia +Pierre +Porfirio +Refugio +Remo +Rick +Ricky +Rodrigo +Rojelio +Rolland +Sherwood +Simon +Sydney +Takeshi +Tommie +Vance +Vern +Robert +Richard +John +James +William +David +Donald +Ronald +Charles +George +Gary +Edward +Frank +Kenneth +Thomas +Michael +Jack +Paul +Larry +Jerry +Raymond +Gerald +Joe +Joseph +Don +Fred +Bob +Bill +Arthur +Jim +Albert +Daniel +Harold +Henry +Ralph +Norman +Roger +Manuel +Walter +Lawrence +Carl +Peter +Eugene +Dennis +Roy +Bruce +Alfred +Ray +Gilbert +Wayne +Anthony +Ernest +Stanley +Harry +Howard +Douglas +Louis +Tom +Philip +Tony +Gene +Gordon +Leroy +Dale +Johnny +Melvin +Leonard +Eddie +Marvin +Warren +Earl +Phillip +Billy +Mike +Stephen +Jimmy +Alan +Clifford +Tommy +Lee +Patrick +Glenn +Martin +Russell +Terry +Allen +Lloyd +Dick +Jose +Victor +Ted +Danny +Edwin +Bobby +Ronnie +Theodore +Allan +Ruben +Jesse +Andrew +Clarence +Leon +Jesus +Vernon +Harvey +Rudy +Frederick +Pete +Carlos +Leo +Steve +Vincent +Dan +Herbert +Jon +Floyd +Dave +Jimmie +Jay +Dean +Alvin +Darrell +Raul +Keith +Leslie +Lewis +Roland +Sam +Clyde +Samuel +Barry +Neil +Brian +Francis +Mark +Franklin +Louie +Wesley +Antonio +Arnold +Lester +Milton +Ben +Joel +Rodney +Herman +Steven +Timothy +Benjamin +Bernard +Leland +Salvador +Delbert +Glen +Juan +Johnnie +Marshall +Ramon +Benny +Jerome +Karl +Alex +Kent +Max +Duane +Nick +Armando +Edgar +Edmund +Ken +Laurence +Wallace +Craig +Freddie +Gregory +Lyle +Rudolph +Cecil +Roberto +Alexander +Lynn +Pedro +Stuart +Angel +Byron +Phil +Everett +Hugh +Luis +Mario +Calvin +Elmer +Fernando +Curtis +Alfonso +Francisco +Jackie +Ross +Chester +Maurice +Miguel +Sidney +Willard +Neal +Pat +Rex +Clark +Clayton +Conrad +Jess +Ron +Virgil +Bert +Claude +Eric +Loren +Ernie +Guy +Nicholas +Noel +Teddy +Angelo +Buddy +Darryl +Fredrick +Lonnie +Lowell +Malcolm +Melvyn +Monte +Wilbur +Clinton +Gabriel +Garry +Ignacio +Ivan +Julian +Julio +Sammy +Al +Charlie +Enrique +Merle +Wendell +Willie +Felix +Gerry +Hector +Kenny +Eldon +Forrest +Nathan +Ricardo +Clifton +Darrel +Gale +Nelson +Bennie +Boyd +Burton +Ed +Jerald +Marion +Orville +Oscar +Alfredo +Andy +Art +Augustine +Barney +Bud +Daryl +Dwight +Hubert +Jan +Lupe +Myron +Tim +Christopher +Doyle +Edmond +Mickey +Rafael +Reginald +Alton +Ernesto +Frankie +Gail +Guillermo +Hal +Harley +Irving +Jerrold +Mervyn +Oliver +Adolph +Brent +Chris +Eddy +Elias +Garland +Mervin +Micheal +Morris +Owen +Stan +Willis +Chuck +Dallas +Denis +Fidel +Jacob +Jeffrey +Kim +Lanny +Ned +Randall +Rodger +Scott +Alberto +August +Carlton +Elbert +Ellis +Elvin +Emmett +Grant +Homer +Horace +Jaime +Kevin +Kirk +Matthew +Roderick +Rodolfo +Sheldon +Stewart +Terrence +Trinidad +Wilfred +Abel +Adolfo +Adrian +Barton +Carroll +Darwin +Donn +Donnie +Earnest +Hiroshi +Irvin +Jean +Loyd +Mary +Miles +Pablo +Ramiro +Refugio +Reynaldo +Sherman +Simon +Terence +Troy +Vern +Aaron +Archie +Bernie +Carter +Dudley +Earle +Eduardo +Elliott +Emil +Errol +Gayle +Guadalupe +Joaquin +Lance +Monty +Otis +Rolland +Spencer +Tomas +Verne +Wilbert +Winston +Armand +Bernardo +Billie +Bryan +Carlo +Denny +Ellsworth +Emilio +Gerard +Irwin +Jere +Jerold +Jessie +Jonathan +Kermit +Lionel +Lorenzo +Mack +Marcus +Margaret +Margarito +Mitchell +Murray +Patricia +Perry +Robin +Roscoe +Royal +Waldo +Wally +Agustin +Arlen +Arturo +Aurelio +Austin +Bradley +Carrol +Christian +Clay +Del +Delfino +Delwin +Elton +Felipe +Forest +Freddy +Frederic +Geoffrey +Gilberto +Greg +Ira +Javier +Joan +Jorge +Julius +Kerry +Kurt +Lane +Mariano +Marty +Merritt +Pierre +Raoul +Rod +Sandy +Sanford +Santiago +Shirley +Stanford +Sterling +Takeshi +Terrance +Tommie +Val +Vicente +Ward +Wiley +Abraham +Andre +Andres +Bobbie +Bradford +Carmen +Carol +Cliff +Colin +Dana +Dewey +Domingo +Dwain +Dwayne +Edwardo +Elden +Erwin +Evan +Galen +Gaylord +Gil +Gino +Hugo +Isaac +Junior +Kennith +Leopoldo +Masao +Maynard +Mel +Millard +Nathaniel +Norbert +Otto +Randolph +Raymon +Rene +Ronny +Royce +Saul +Sylvester +Truman +Warner +Wilson +Woodrow +Alec +Alejandro +Alonzo +Amos +Angus +Barbara +Bart +Bruno +Bryant +Courtney +Coy +Cruz +Delmar +Dewayne +Diego +Dino +Dominic +Doug +Douglass +Duke +Duncan +Elmo +Elwood +Ervin +Florencio +Fredric +Fritz +Garold +Garth +Glendon +Grady +Gustavo +Joanne +Kay +Kazuo +Kenji +Kenton +Kiyoshi +Lavern +Laverne +Lawrance +Lon +Merton +Milo +Morton +Nicolas +Reynold +Rolf +Salvatore +Santos +Stanton +Takashi +Theron +Thurman +Walt +Werner +Wilburn +Wilford +Ygnacio +Ysidro +Robert +John +Richard +James +William +Ronald +David +Donald +Charles +Gary +George +Michael +Frank +Thomas +Kenneth +Larry +Edward +Jerry +Paul +Jack +Raymond +Joe +Joseph +Gerald +Bill +Don +Fred +Dennis +Arthur +Albert +Norman +Daniel +Ralph +Bob +Lawrence +Douglas +Jim +Roger +Walter +Wayne +Henry +Carl +Manuel +Harold +Peter +Anthony +Gilbert +Louis +Roy +Tom +Ernest +Bruce +Stanley +Dale +Eugene +Howard +Ray +Mike +Harry +Alfred +Stephen +Tony +Alan +Johnny +Leonard +Philip +Victor +Gordon +Eddie +Jimmy +Phillip +Billy +Melvin +Allen +Patrick +Earl +Terry +Gene +Warren +Ronnie +Leroy +Bobby +Russell +Jose +Lee +Marvin +Frederick +Clifford +Rudy +Tommy +Glenn +Martin +Jesse +Dick +Jon +Steve +Edwin +Vernon +Lloyd +Danny +Allan +Darrell +Rodney +Keith +Leslie +Carlos +Theodore +Clyde +Ted +Ruben +Arnold +Dave +Jay +Steven +Herbert +Jimmie +Leo +Samuel +Andrew +Leon +Milton +Dan +Wesley +Clarence +Alvin +Jesus +Vincent +Duane +Harvey +Pete +Francis +Antonio +Raul +Leland +Floyd +Dean +Timothy +Brian +Gregory +Louie +Bernard +Jerome +Barry +Neil +Salvador +Ben +Glen +Joel +Benjamin +Darryl +Benny +Claude +Jackie +Chester +Everett +Mark +Sam +Fredrick +Lester +Nick +Roland +Ross +Alex +Hugh +Delbert +Franklin +Luis +Mario +Alexander +Craig +Curtis +Laurence +Juan +Karl +Ken +Lynn +Willard +Jess +Virgil +Alfonso +Byron +Cecil +Eric +Lewis +Ramon +Armando +Freddie +Pat +Nicholas +Noel +Pedro +Rudolph +Calvin +Kent +Lonnie +Monte +Daryl +Ernie +Felix +Francisco +Herman +Johnnie +Loren +Marshall +Phil +Ed +Hector +Bert +Elmer +Lyle +Tim +Wallace +Eldon +Lupe +Oscar +Ricardo +Charlie +Clinton +Lowell +Bennie +Chris +Clark +Clayton +Darrel +Edgar +Garry +Jan +Max +Sidney +Marion +Al +Ivan +Julian +Maurice +Neal +Roberto +Sammy +Fernando +Guy +Harley +Melvyn +Rex +Willie +Edmund +Gabriel +Ron +Stuart +Buddy +Conrad +Errol +Jerald +Mickey +Myron +Robin +Wilbur +Christopher +Forrest +Kenny +Nelson +Oliver +Angel +Doyle +Miguel +Perry +Stan +Denis +Grant +Nathan +Arturo +Burton +Dwight +Frankie +Homer +Merle +Rodger +Willis +Kevin +Lance +Malcolm +Rodolfo +Sheldon +Stewart +Ward +Wendell +Adolph +Art +Barney +Cruz +Fredric +Guadalupe +Jeffrey +Lionel +Morris +Randolph +Alfredo +Angelo +Boyd +Carroll +Elias +Ignacio +Jean +Roderick +Andy +Anton +Arlen +Augustine +Bryan +Donnie +Elbert +Gus +Hubert +Lauren +Micheal +Ned +Rafael +Reginald +Rene +Terrence +Wally +Abraham +Alberto +Archie +August +Bud +Chuck +Donn +Fidel +Hans +Harlan +Joaquin +Lanny +Luther +Marcus +Owen +Scott +Barton +Bernie +Dallas +Dominic +Elwood +Emilio +Frederic +Gale +Gonzalo +Irvin +Lorenzo +Matthew +Norbert +Randall +Salvatore +Teddy +Wilfred +Adolfo +Brent +Carlton +Denny +Dewey +Ellis +Emmett +Enrique +Ernesto +Gail +Garth +Gerry +Grover +Ira +Javier +Jonathan +Jorge +Julio +Julius +Kay +Kerry +Laverne +Lorin +Loyd +Nolan +Pierre +Rick +Ronny +Sherman +Terence +Tomas +Travis +Will +Adrian +Armand +Barbara +Cary +Delmar +Dickie +Dudley +Dwayne +Erwin +Hal +Irving +Ismael +Jacob +Jessie +Kendall +Kurt +Mervin +Pablo +Rolland +Vern +Abel +Andre +Billie +Bradley +Clifton +Dana +Doug +Douglass +Earnest +Edmond +Eduardo +Elton +Emil +Felipe +Galen +Gustavo +Jerold +Jerrold +Lane +Marlin +Mitchell +Murray +Nathaniel +Orville +Otis +Preston +Reuben +Reynaldo +Reynold +Rod +Sanford +Spencer +Trinidad +Troy +Val +Wilbert +Wilson +Agustin +Amador +Amos +Aurelio +Bobbie +Carleton +Carol +Cliff +Cornelius +Del +Duncan +Elliott +Emery +Ervin +Evan +Freddy +Garland +Gearld +Gilberto +Greg +Irwin +Kim +Kirk +Lenard +Lyman +Mariano +Mel +Merlin +Milo +Monty +Morton +Otto +Reed +Refugio +Reyes +Royal +Royce +Santos +Sergio +Simon +Sydney +Terrance +Van +Ventura +Vicente +Wade +Warner +Abelardo +Andres +Betty +Carmen +Carrol +Charley +Clair +Dee +Dexter +Domingo +Eddy +Edmundo +Elvin +Elwin +Garrett +Geoffrey +Gregorio +Guillermo +Hugo +Humberto +Isao +Jaime +Jared +Jules +Kenji +King +Lindsay +Lon +Lonny +Mack +Marc +Marcelo +Marty +Mary +Masao +Mervyn +Nicky +Ollie +Patricia +Ricky +Rolando +Rowland +Russ +Russel +Sandra +Sandy +Santiago +Sherwood +Sonny +Stanford +Sterling +Truman +Tyrone +Vance +Verne +Woodrow +Aaron +Alden +Alton +Alva +Benito +Blake +Brooks +Burl +Burt +Carlo +Cesar +Darwin +Derrell +Dewayne +Duke +Earle +Elmo +Emanuel +Fritz +Gaylord +Graham +Herb +Herschel +Hilario +Hiroshi +Horace +Isaac +Jason +Jeff +Kermit +Kirby +Kiyoshi +Leeroy +Les +Lincoln +Loran +Mahlon +Merrill +Miles +Millard +Modesto +Nicolas +Norm +Orin +Orlando +Orval +Porfirio +Ramiro +Raoul +Raymundo +Rufino +Rufus +Rupert +Sal +Shirley +Susumu +Toby +Tommie +Vaughn +Vince +Wiley +Robert +Richard +John +James +William +David +Ronald +Donald +Charles +Gary +Michael +George +Thomas +Larry +Kenneth +Frank +Jerry +Paul +Edward +Dennis +Jack +Joseph +Raymond +Gerald +Joe +Bill +Roger +Arthur +Bob +Fred +Norman +Don +Daniel +Wayne +Ralph +Douglas +Jim +Walter +Albert +Henry +Peter +Harold +Lawrence +Carl +Manuel +Stephen +Bruce +Philip +Stanley +Eugene +Mike +Tom +Roy +Ernest +Anthony +Gilbert +Alfred +Leonard +Ray +Tony +Melvin +Howard +Alan +Dale +Harry +Louis +Gordon +Ronnie +Johnny +Patrick +Allen +Steven +Eddie +Earl +Clifford +Leroy +Marvin +Phillip +Danny +Lee +Russell +Jimmy +Jose +Victor +Gene +Billy +Terry +Glenn +Steve +Lloyd +Jesse +Jon +Tommy +Martin +Ted +Bobby +Edwin +Herbert +Frederick +Rudy +Barry +Keith +Rodney +Warren +Theodore +Vernon +Dan +Dave +Andrew +Carlos +Dick +Timothy +Arnold +Allan +Harvey +Leo +Brian +Darrell +Floyd +Alvin +Clarence +Pete +Jesus +Ruben +Vincent +Francis +Glen +Jay +Leslie +Clyde +Jimmie +Wesley +Leland +Leon +Ken +Lewis +Raul +Antonio +Neil +Laurence +Dean +Duane +Samuel +Alex +Curtis +Karl +Lester +Roland +Benjamin +Franklin +Joel +Lynn +Darryl +Jerome +Louie +Salvador +Alfonso +Bernard +Marshall +Ramon +Johnnie +Milton +Herman +Kent +Benny +Calvin +Everett +Gregory +Jess +Mark +Nicholas +Pat +Sam +Craig +Luis +Lyle +Rudolph +Chester +Elmer +Lonnie +Maurice +Francisco +Juan +Loren +Eric +Oscar +Phil +Byron +Ross +Virgil +Armando +Cecil +Jeffrey +Ron +Willard +Ed +Ernie +Max +Delbert +Roberto +Bert +Gabriel +Morris +Andy +Claude +Darrel +Felix +Freddie +Jackie +Nick +Stuart +Wallace +Hugh +Kenny +Neal +Noel +Pedro +Clayton +Lowell +Sammy +Tim +Alexander +Chris +Daryl +Edgar +Jerald +Charlie +Fredrick +Garry +Mario +Melvyn +Ricardo +Robin +Ben +Clark +Clinton +Denny +Forrest +Merle +Christopher +Denis +Perry +Bennie +Eldon +Grant +Homer +Malcolm +Miguel +Willie +Al +Buddy +Dwight +Edmund +Frankie +Guy +Joaquin +Lupe +Orville +Randall +Rex +Sheldon +Wendell +Angel +Donnie +Doug +Micheal +Monte +Scott +Alfredo +Angelo +Julian +Marion +Myron +Nelson +Sidney +Troy +Arturo +Ernesto +Hector +Jessie +Julio +Lance +Mickey +Rafael +Roderick +Willis +Chuck +Fernando +Harlan +Jerrold +Rene +Conrad +Gail +Ignacio +Ivan +Lionel +Nathan +Oliver +Sherman +Spencer +Teddy +Adrian +Alberto +Archie +Brent +Bryan +Carol +Cliff +Dallas +Errol +Frederic +Gus +Hal +Jan +Terrence +Wilbur +Armand +Art +Barton +Bradley +Doyle +Fredric +Gerry +Hubert +Jeff +Miles +Mitchell +Otto +Randolph +Randy +Rodger +Abel +Cruz +Dewey +Edmond +Eduardo +Enrique +Jonathan +Lorenzo +Luther +Matthew +Reginald +Rod +Stan +Adolfo +Carlton +Delmar +Dominic +Dudley +Dwayne +Ervin +Freddy +Garrett +Gerard +Guadalupe +Harley +Kay +Rodolfo +Adam +Boyd +Elias +Evan +Geoffrey +Jackson +Jean +Lanny +Marty +Merlin +Owen +Stewart +Toshio +Van +Vern +Abraham +Adolph +Aubrey +August +Augustine +Benito +Domingo +Elbert +Emmett +Fidel +Guillermo +Ian +Irvin +Irving +Jorge +Lyman +Marlin +Refugio +Ronny +Salvatore +Sanford +Sharon +Theron +Val +Alden +Barbara +Bart +Bennett +Bernie +Brad +Carroll +Darwin +Dewayne +Ellis +Emilio +Felipe +Gale +Gearld +Gilberto +Greg +Javier +Jerold +Kenji +Kevin +Lauren +Margarito +Mariano +Mel +Merrill +Nicolas +Preston +Reynaldo +Rick +Rolland +Sandy +Terence +Truman +Wade +Warner +Wiley +Alton +Aurelio +Bradford +Bud +Burton +Clifton +Curt +Dana +Del +Duncan +Dwain +Earle +Elden +Emil +Erwin +Fermin +Garold +Genaro +Grady +Gustavo +Horace +Isaac +Ismael +Jere +Kirk +Leighton +Marcelino +Mary +Maynard +Murray +Ramiro +Reggie +Rollin +Stanford +Sylvester +Terrance +Todd +Tyrone +Aaron +Arlen +Barney +Billie +Bobbie +Booker +Boris +Brooks +Cary +Clement +Dannie +Dee +Derek +Donn +Eddy +Edmundo +Elliott +Elwood +Erik +Humberto +Jared +Joey +Judith +Kennith +Kerry +Lon +Loyd +Marcos +Mervin +Mervyn +Minoru +Monty +Ned +Raymon +Rickey +Ronal +Sandra +Santiago +Sergio +Simon +Travis +Vaughn +Wally +Ward +Weldon +Wilbert +Wilfred +Wilson +Woodrow +Akira +Aldo +Andre +Arden +Austin +Bruno +Burl +Burt +Calvert +Carrol +Cesar +Clair +Colin +Cornelius +Darell +Delmer +Dennie +Denver +Duke +Elvin +Esteban +Garland +Garth +Gonzalo +Grover +Harrison +Jacob +King +Lincoln +Marcus +Merritt +Morgan +Nolan +Norbert +Norris +Pablo +Patricia +Porfirio +Rocky +Rogelio +Roscoe +Royce +Santos +Sebastian +Shirley +Sydney +Takashi +Terrell +Tomas +Tracy +Vance +Vicente +Vince +Xavier +Robert +John +Richard +James +William +David +Gary +Ronald +Michael +Charles +Donald +Thomas +Larry +George +Frank +Dennis +Kenneth +Jerry +Edward +Paul +Raymond +Gerald +Joe +Jack +Joseph +Bill +Roger +Stephen +Daniel +Fred +Arthur +Jim +Lawrence +Don +Henry +Bob +Peter +Douglas +Carl +Ralph +Wayne +Walter +Albert +Bruce +Norman +Mike +Harold +Manuel +Roy +Tom +Eugene +Philip +Stanley +Steven +Alfred +Leonard +Anthony +Terry +Phillip +Tony +Dale +Ernest +Patrick +Harry +Louis +Alan +Howard +Gilbert +Ray +Steve +Melvin +Johnny +Allen +Leroy +Ronnie +Billy +Victor +Jimmy +Gordon +Russell +Earl +Eddie +Barry +Lee +Danny +Clifford +Tommy +Jose +Marvin +Bobby +Edwin +Gene +Warren +Jon +Timothy +Frederick +Lloyd +Dick +Allan +Martin +Brian +Carlos +Glenn +Jesse +Dan +Keith +Ted +Andrew +Herbert +Rudy +Samuel +Vincent +Vernon +Darrell +Leo +Rodney +Harvey +Jay +Theodore +Dave +Glen +Mark +Ruben +Pete +Arnold +Clarence +Leslie +Louie +Leon +Lester +Duane +Floyd +Jesus +Benjamin +Gregory +Alvin +Juan +Raul +Antonio +Curtis +Joel +Bernard +Clyde +Lynn +Milton +Alex +Jimmie +Lewis +Salvador +Neil +Ben +Jeffrey +Laurence +Roberto +Wesley +Chester +Darryl +Dean +Francisco +Eric +Franklin +Ramon +Roland +Ross +Francis +Ken +Pat +Sam +Karl +Luis +Phil +Craig +Johnnie +Tim +Herman +Max +Jerome +Jess +Rudolph +Calvin +Ricardo +Everett +Kent +Lowell +Benny +Chris +Freddie +Leland +Alfonso +Claude +Gabriel +Lonnie +Loren +Mario +Nick +Ron +Wallace +Alexander +Byron +Cecil +Christopher +Delbert +Stuart +Fredrick +Garry +Hugh +Marshall +Nicholas +Jackie +Kenny +Scott +Daryl +Felix +Fernando +Hector +Clinton +Lyle +Bert +Brent +Elmer +Sidney +Jan +Morris +Noel +Oscar +Malcolm +Darrel +Ernie +Reginald +Robin +Virgil +Armando +Julian +Lance +Randall +Rex +Andy +Clayton +Dwight +Sammy +Wendell +Willard +Burton +Charlie +Edgar +Angelo +Clark +Doyle +Maurice +Arturo +Conrad +Grant +Marion +Merle +Micheal +Mickey +Myron +Neal +Pedro +Troy +Alfredo +Angel +Bradley +Edmund +Nelson +Ed +Guy +Jerald +Melvyn +Monte +Rafael +Wilbur +Bennie +Enrique +Hubert +Jessie +Miguel +Owen +Ellis +Frankie +Guadalupe +Ivan +Jeff +Oliver +Sherman +Art +Buddy +Gerry +Julio +Orville +Rodger +Stewart +Willie +Aurelio +Donnie +Doug +Dwayne +Errol +Freddy +Perry +Randy +Teddy +Al +Augustine +Boyd +Chuck +Eldon +Greg +Harley +Lanny +Lorenzo +Lupe +Stan +Ward +Abel +Alejandro +Cary +Clifton +Duncan +Gail +Ignacio +Kirk +Marcus +Reynaldo +Spencer +Terrence +Adrian +Carroll +Dallas +Elwood +Hal +Irving +Jeffery +Monty +Nathan +Ned +Ramiro +Randolph +Sheldon +Alberto +Archie +Barney +Carlton +Darwin +Elias +Emil +Jerrold +Jonathan +Kevin +Roderick +August +Austin +Carmen +Dewayne +Edmond +Forrest +Fredric +Gonzalo +Irvin +Javier +Jerold +Kay +Kurt +Preston +Rick +Rodolfo +Simon +Adolph +Alonzo +Bart +Barton +Bernie +Bryan +Cliff +Cruz +Denis +Denny +Dewey +Elbert +Emilio +Ernesto +Fidel +Frederic +Galen +Gaylord +Ira +Joaquin +Jorge +Mack +Matthew +Otto +Rene +Royce +Sergio +Terrance +Vern +Wilson +Adolfo +Armand +Bradford +Dana +Del +Dominic +Dudley +Erwin +Evan +Gale +Garland +Gilberto +Guillermo +Harlan +Herb +Julius +Lionel +Mary +Merrill +Mervin +Mitchell +Nathaniel +Pablo +Rod +Salvatore +Travis +Wade +Winston +Alva +Benito +Bernardo +Burt +Cleo +Dario +Dwain +Elliott +Elvin +Felipe +Gayle +Gearld +Gregg +Gus +Gustavo +Homer +Jackson +Jacob +Kenji +Kerry +Lane +Luke +Marty +Mervyn +Nicky +Ricky +Rollin +Sydney +Sylvester +Truman +Tyrone +Vaughn +Weldon +Woodrow +Alton +Billie +Colin +Dell +Dickie +Domingo +Earnest +Elton +Emmett +Ervin +Geoffrey +Gerard +Harris +Jaime +Loran +Mel +Michel +Miles +Milo +Murray +Nicolas +Nolan +Otis +Patricia +Ronny +Sal +Sanford +Terence +Terrell +Trinidad +Vance +Walt +Aaron +Agustin +Alden +Artie +Claud +Clay +Cyril +Dee +Erik +Florentino +Gregorio +Grover +Hans +Horace +Humberto +Irwin +Isaac +Ismael +Jean +Joey +Johnie +Junior +Laurance +Layton +Lenard +Lon +Loyd +Luther +Marco +Mathew +Melville +Merritt +Moises +Morgan +Norbert +Porfirio +Randal +Refugio +Riley +Rolland +Russel +Santos +Stanton +Stephan +Toby +Tommie +Verne +Vicente +Wilfred +Willis +Abraham +Adam +Andre +Anton +Arlie +Avery +Bennett +Brad +Brett +Brooks +Bryce +Bud +Carlo +Carol +Cedric +Christian +Curt +Deane +Delano +Delmar +Diego +Donn +Elden +Emery +Federico +Garrett +Gerold +Hideo +Hiroshi +Jason +Judy +Justin +Kelly +Kim +Kirby +Kyle +Lamont +Layne +Les +Lonny +Mahlon +Marcos +Mariano +Matt +Maynard +Merlin +Moses +Neill +Nickolas +Norton +Odell +Orval +Parker +Raoul +Reggie +Sean +Sid +Tad +Takashi +Theadore +Vic +Vince +Vito +Wally +Warner +Wilbert +Wilburn +Xavier +Robert +John +Richard +James +William +David +Gary +Ronald +Michael +Charles +Donald +Larry +Thomas +George +Dennis +Kenneth +Frank +Jerry +Paul +Edward +Raymond +Joseph +Stephen +Gerald +Jack +Bill +Joe +Roger +Daniel +Arthur +Fred +Don +Douglas +Lawrence +Peter +Jim +Wayne +Steven +Bob +Mike +Carl +Albert +Henry +Walter +Harold +Ralph +Tom +Anthony +Norman +Bruce +Philip +Roy +Stanley +Patrick +Manuel +Ronnie +Terry +Eugene +Gilbert +Dale +Steve +Howard +Leonard +Ernest +Melvin +Ray +Phillip +Louis +Harry +Victor +Alfred +Gordon +Alan +Jimmy +Barry +Timothy +Billy +Tony +Clifford +Johnny +Lee +Gene +Allen +Martin +Leroy +Earl +Jeffrey +Danny +Eddie +Russell +Tommy +Jon +Marvin +Lloyd +Glenn +Andrew +Brian +Jose +Mark +Bobby +Edwin +Vernon +Frederick +Darrell +Warren +Allan +Dick +Lynn +Ted +Rodney +Dave +Alvin +Dan +Ruben +Rudy +Jesse +Samuel +Clarence +Keith +Leslie +Herbert +Jimmie +Gregory +Theodore +Vincent +Wesley +Jay +Pete +Benjamin +Floyd +Carlos +Dean +Harvey +Lewis +Arnold +Leo +Alex +Francis +Glen +Calvin +Darryl +Eric +Jesus +Franklin +Milton +Clyde +Duane +Leon +Juan +Leland +Lester +Raul +Curtis +Kent +Neil +Joel +Antonio +Bernard +Craig +Ken +Salvador +Marshall +Loren +Lonnie +Louie +Ron +Benny +Pat +Ramon +Chester +Karl +Mario +Roland +Stuart +Sam +Christopher +Tim +Wallace +Freddie +Maurice +Alexander +Phil +Ross +Byron +Chris +Everett +Jerome +Lowell +Nicholas +Roberto +Cecil +Nick +Virgil +Delbert +Jackie +Alfonso +Jeff +Jess +Kenny +Scott +Hugh +Laurence +Noel +Sidney +Armando +Ben +Clinton +Fredrick +Herman +Jan +Willard +Willie +Micheal +Luis +Max +Garry +Lyle +Oscar +Rudolph +Conrad +Johnnie +Bradley +Clark +Francisco +Grant +Pedro +Rex +Brent +Claude +Guy +Daryl +Elmer +Jerald +Monte +Neal +Randall +Randolph +Sammy +Wendell +Bert +Edgar +Gabriel +Ricardo +Robin +Terrence +Andy +Charlie +Clayton +Ernie +Jessie +Mickey +Darrel +Felix +Geoffrey +Hector +Malcolm +Myron +Stan +Doyle +Ed +Fernando +Lance +Melvyn +Perry +Rodger +Burton +Chuck +Denis +Ignacio +Marc +Reginald +Angel +Edmund +Al +Bennie +Buddy +Forrest +Frankie +Julian +Matthew +Miguel +Stewart +Willis +Winston +Clifton +Errol +Kevin +Marion +Nelson +Sherman +Spencer +Harley +Ivan +Kirk +Oliver +Teddy +Angelo +Barton +Boyd +Gerry +Merle +Morris +Rodolfo +Sheldon +Aaron +Denny +Eldon +Hubert +Monty +Owen +Randy +Adolph +Art +Doug +Enrique +Jeffery +Julio +Murray +Eduardo +Emmett +Jerrold +Lorenzo +Loyd +Mary +Rene +Sanford +Woodrow +Augustine +Barney +Cary +Dwayne +Dwight +Elias +Hal +Harlan +Jonathan +Jorge +Luther +Nathan +Alfredo +Bernie +Carroll +Donnie +Eddy +Elwood +Emil +Homer +Irving +Joaquin +Lanny +Ned +Ricky +Vance +Vern +Abel +Arlen +Arturo +Bryan +Cruz +Dexter +Greg +Guillermo +Jacob +Jean +Mitchell +Preston +Tomas +Verne +Adrian +Alberto +Aurelio +Carlton +Donn +Elbert +Galen +Gerard +Ira +Milo +Rick +Ronny +Salvatore +Travis +Wilbur +Adolfo +Armand +Bart +Ellis +Elton +Ernesto +Freddy +Gail +Gregg +Guadalupe +Jere +Kurt +Lauren +Lionel +Mervin +Norris +Orville +Patricia +Reuben +Terence +Theron +Todd +Tracy +Van +Archie +Duncan +Frederic +Fredric +Horace +Javier +Julius +Kay +Kelly +Lincoln +Linda +Lupe +Merrill +Otis +Rod +Sandy +Sharon +Stanford +Troy +Vaughn +Wade +Andres +Antone +Aubrey +Barbara +Bud +Dallas +Delmar +Dewayne +Duke +Earle +Edmond +Emery +Emilio +Evan +Gale +Gaylord +Gilberto +Irvin +Jared +Jerold +Kim +Lon +Lorin +Marcus +Marty +Mel +Pierre +Rafael +Reyes +Royce +Santiago +Simon +Stephan +Takeshi +Wally +Will +Alonzo +Andre +Bobbie +Bradford +Clay +Darold +Dudley +Garrett +Gus +Herb +Irwin +Ismael +Jackson +Kirby +Kit +Len +Lyman +Marcos +Marlin +Morgan +Nolan +Orin +Reggie +Riley +Sheridan +Socorro +Sylvester +Truman +Val +Ward +Wilson +Alejandro +Alton +Arden +Arlan +Arvin +Basil +Benito +Brooke +Chad +Cliff +Dana +Darwin +Dewey +Earnest +Elden +Elliot +Elliott +Elvin +Erik +Fidel +Forest +Freeman +Garland +Gustavo +Isaac +Jake +Joey +Kyle +Les +Marcelino +Meredith +Michel +Moses +Pablo +Reed +Refugio +Reynaldo +Richie +Roderick +Rolland +Rollin +Rufus +Russ +Santos +Sergio +Sydney +Terrance +Thurman +Trinidad +Vito +Xavier +Adam +Alden +Anton +August +Billie +Blaine +Bryant +Bryce +Burt +Carmen +Carol +Carter +Charley +Christian +Clement +Clive +Colin +Cornelius +Curt +Dalton +Dannie +Dee +Dickie +Drew +Eldred +Elwin +Ervin +Florencio +Grover +Harrison +Hilario +Ian +Jaime +Jeffry +Joan +Judson +Kenney +Kennith +Kermit +Lane +Laverne +Leandro +Leigh +Loran +Lyn +Marco +Margaret +Masao +Maynard +Merlyn +Nathaniel +Nickolas +Nicolas +Norm +Oren +Orlando +Orrin +Orval +Peggy +Porfirio +Raleigh +Randal +Raoul +Raymundo +Reid +Roman +Russel +Shirley +Susumu +Tod +Tyrone +Vidal +Willam +Robert +John +James +Richard +William +David +Michael +Gary +Ronald +Charles +Thomas +Donald +Larry +Dennis +Kenneth +George +Jerry +Frank +Paul +Edward +Douglas +Stephen +Raymond +Joseph +Jack +Daniel +Gerald +Joe +Jim +Roger +Bill +Fred +Lawrence +Arthur +Bruce +Peter +Steven +Mike +Walter +Bob +Wayne +Harold +Don +Tom +Carl +Ralph +Terry +Anthony +Albert +Stanley +Henry +Steve +Manuel +Patrick +Norman +Philip +Roy +Eugene +Ray +Phillip +Ronnie +Dale +Harry +Ernest +Alan +Louis +Leonard +Howard +Victor +Barry +Johnny +Russell +Tony +Danny +Jimmy +Melvin +Alfred +Allen +Gordon +Gilbert +Tommy +Lee +Clifford +Timothy +Martin +Eddie +Gene +Glenn +Billy +Leroy +Mark +Marvin +Jeffrey +Dan +Brian +Jon +Lloyd +Earl +Andrew +Jose +Bobby +Frederick +Rodney +Jesse +Samuel +Dave +Warren +Keith +Darrell +Rudy +Dick +Edwin +Ted +Theodore +Craig +Jay +Gregory +Allan +Jimmie +Dean +Duane +Vernon +Floyd +Herbert +Clyde +Carlos +Harvey +Vincent +Curtis +Leslie +Ron +Christopher +Ruben +Leon +Lynn +Wesley +Eric +Glen +Leo +Ken +Alvin +Lewis +Arnold +Bernard +Clarence +Leland +Raul +Joel +Pete +Chester +Francis +Laurence +Lester +Alex +Jesus +Tim +Milton +Byron +Franklin +Neil +Roland +Benjamin +Benny +Calvin +Darryl +Sam +Antonio +Louie +Kent +Wallace +Guy +Nicholas +Cecil +Hugh +Garry +Max +Micheal +Chris +Ben +Lonnie +Nick +Randall +Ross +Rudolph +Jackie +Pat +Salvador +Edgar +Freddie +Karl +Loren +Stuart +Fredrick +Everett +Marshall +Randy +Darrel +Delbert +Jeff +Jerald +Ramon +Juan +Jerome +Mario +Francisco +Virgil +Dwight +Grant +Kenny +Armando +Jess +Lyle +Willie +Clark +Sammy +Sidney +Alexander +Alfonso +Angel +Gerry +Luis +Maurice +Rex +Willard +Charlie +Daryl +Ernie +Lance +Lowell +Neal +Roberto +Scott +Al +Clayton +Denis +Perry +Fernando +Doug +Johnnie +Phil +Randolph +Claude +Rodger +Clinton +Herman +Kevin +Noel +Oscar +Andy +Jonathan +Malcolm +Mickey +Bert +Chuck +Elmer +Forrest +Jan +Robin +Stan +Hector +Felix +Gabriel +Morris +Pedro +Art +Brent +Conrad +Ivan +Nathan +Donnie +Marc +Nelson +Reginald +Wendell +Jessie +Julian +Oliver +Sherman +Adrian +Doyle +Frankie +Freddy +Jeffery +Miguel +Orville +Ricardo +Terrance +Troy +Arturo +Bradley +Ed +Edmund +Lorenzo +Ricky +Denny +Rafael +Spencer +Terrence +Buddy +Colin +Eldon +Kelly +Matthew +Merle +Owen +Rick +Teddy +Terence +Willis +Archie +Gale +Geoffrey +Myron +Rene +Rodolfo +Ronny +Aaron +Bryan +Clifton +Hubert +Kurt +Loyd +Lupe +Monte +Rod +Sheldon +Tomas +Wilbur +Alton +Angelo +Enrique +Errol +Greg +Harlan +Kirk +Sterling +Trinidad +Barney +Emil +Gerard +Marion +Stewart +Val +Alberto +Bennie +Carlton +Carroll +Cliff +Dewey +Duncan +Edmond +Gail +Gaylord +Gregg +Hal +Harley +Humberto +Ignacio +Irving +Javier +Mel +Melvyn +Preston +Todd +Barton +Boyd +Dickie +Elliott +Emmett +Frederic +Galen +Irvin +Jorge +Kerry +Lionel +Miles +Monty +Bud +Ellis +Garland +Homer +Linda +Merrill +Salvatore +Stephan +Vern +Ward +Brad +Charley +Cruz +Domingo +Dwayne +Ervin +Erwin +Grady +Herb +Ira +Jacob +Jerold +Joaquin +Mary +Michel +Nolan +Patricia +Reed +Tommie +Vance +Wally +Woodrow +Abraham +Alden +Alfredo +Andres +Augustine +Cary +Dominic +Earnest +Eddy +Elias +Elton +Ernesto +Fidel +Kay +Kendall +Kim +Lanny +Luther +Marcus +Mervin +Mitchell +Murray +Ned +Roderick +Simon +Van +Walt +Armand +Austin +Bart +Bernie +Bobbie +Brooks +Burton +Cameron +Carol +Dallas +Darold +Dee +Donn +Dudley +Elvin +Elwin +Emilio +Evan +Fredric +Harrison +Jerrold +Julius +Kirby +Mac +Norris +Otis +Pablo +Raoul +Rocky +Royce +Sal +Sandy +Toby +Tracy +Wilfred +Winston +August +Clay +Cornelius +Dana +Darwin +Earle +Felipe +Fermin +Garth +Gil +Grover +Horace +Jaime +Jean +Joey +Julio +Mack +Mason +Matt +Nathaniel +Norbert +Orval +Reggie +Reuben +Reynaldo +Rolland +Vaughn +Wade +Will +Adolph +Benito +Guillermo +Gus +Hans +Isaac +Jefferson +Judson +Kermit +Marco +Marlin +Marty +Merlin +Olin +Otto +Porfirio +Rich +Sanford +Santos +Travis +Verne +Wiley +Xavier +Abel +Blaine +Blair +Bradford +Burt +Donovan +Edmundo +Elden +Emanuel +Gilberto +Gregorio +Guadalupe +Ian +Irwin +Jere +Kennith +Kenton +Lamont +Leigh +Lenard +Les +Lon +Lonny +Millard +Monroe +Morgan +Newton +Nickolas +Orlando +Trent +Vicente +Wilson +Adolfo +Alonzo +Augie +Aurelio +Billie +Carlo +Cedric +Cesar +Cole +Courtland +Cyril +Damon +Dannie +Dell +Derek +Dewayne +Dexter +Douglass +Elbert +Elroy +Elwood +Emmitt +Erik +Forest +Foster +Fritz +Garey +Gearld +Gustavo +Helen +Hugo +Ismael +Jackson +Johnie +Lane +Lauren +Lorin +Maynard +Merced +Mervyn +Morley +Nicky +Nicolas +Noah +Noble +Oran +Rand +Raymon +Reynold +Rickey +Riley +Rollin +Roman +Rufus +Russel +Valentine +Vince +Agustin +Alec +Alejandro +Andre +Arnulfo +Ashley +Aubrey +Basil +Betty +Blake +Bonifacio +Brooke +Bryant +Buster +Carleton +Cecilio +Chad +Christian +Clair +Clarke +Darell +Daryll +Dennie +Denton +Dolores +Ellsworth +Elmo +Elwyn +Emory +Farrell +Faustino +Federico +Fidencio +Franklyn +Garrett +Gayle +Genaro +Harris +Jason +Joan +Joshua +Karen +Kit +Laird +Lars +Lavern +Loran +Lynne +Mathew +Milo +Morton +Ollie +Patric +Rowland +Rufino +Sherwood +Sydney +Tad +Tadashi +Theron +Tod +Tyrone +Valentino +Waldo +Weldon +Wilmer +Robert +John +James +Richard +William +David +Michael +Ronald +Gary +Charles +Thomas +Larry +Donald +Dennis +George +Kenneth +Jerry +Paul +Frank +Edward +Joseph +Stephen +Raymond +Jack +Daniel +Roger +Douglas +Gerald +Joe +Steven +Jim +Bill +Arthur +Mike +Fred +Don +Peter +Terry +Lawrence +Bruce +Wayne +Harold +Walter +Ralph +Bob +Tom +Steve +Albert +Roy +Carl +Henry +Manuel +Patrick +Anthony +Alan +Stanley +Danny +Eugene +Johnny +Phillip +Philip +Norman +Ronnie +Jimmy +Ernest +Louis +Dale +Harry +Ray +Victor +Leonard +Timothy +Howard +Martin +Tony +Gilbert +Melvin +Russell +Barry +Billy +Glenn +Marvin +Alfred +Jeffrey +Mark +Tommy +Gene +Allen +Clifford +Earl +Bobby +Gordon +Frederick +Lee +Eddie +Keith +Brian +Dan +Jose +Jon +Warren +Lloyd +Leroy +Andrew +Samuel +Theodore +Dave +Craig +Ted +Rodney +Vernon +Edwin +Jesse +Jimmie +Allan +Jay +Darrell +Vincent +Eric +Herbert +Ruben +Leon +Christopher +Dean +Glen +Clarence +Curtis +Floyd +Gregory +Carlos +Ron +Pete +Leslie +Lewis +Lynn +Kent +Rudy +Tim +Dick +Duane +Randy +Antonio +Leland +Harvey +Clyde +Joel +Leo +Alvin +Dwight +Ken +Nick +Arnold +Benjamin +Francis +Lester +Calvin +Sam +Franklin +Jesus +Chester +Randall +Lonnie +Wallace +Loren +Raul +Juan +Chris +Alex +Luis +Neil +Roland +Johnnie +Jerome +Laurence +Wesley +Benny +Louie +Micheal +Milton +Karl +Oscar +Bernard +Delbert +Marshall +Maurice +Scott +Ross +Armando +Ben +Byron +Cecil +Jeff +Clark +Rudolph +Stuart +Hugh +Ramon +Nicholas +Darryl +Jess +Pat +Salvador +Fredrick +Garry +Lyle +Claude +Ed +Sidney +Willie +Ernie +Frankie +Rick +Roberto +Virgil +Alexander +Guy +Jackie +Jerald +Max +Willard +Freddie +Kenny +Mario +Randolph +Grant +Charlie +Darrel +Doug +Rex +Daryl +Francisco +Jan +Phil +Clayton +Clinton +Denis +Edgar +Everett +Jonathan +Brent +Conrad +Julian +Rodger +Terrence +Herman +Lowell +Malcolm +Alfonso +Angel +Fernando +Geoffrey +Hector +Lance +Perry +Andy +Sammy +Miguel +Chuck +Doyle +Forrest +Marion +Ivan +Monte +Noel +Bradley +Wendell +Bert +Edmund +Kevin +Morris +Owen +Pedro +Reginald +Ricardo +Terence +Buddy +Cary +Jessie +Kurt +Neal +Spencer +Stan +Clifton +Elmer +Greg +Homer +Julio +Sherman +Wilbur +Felix +Lupe +Robin +Al +Mickey +Nathan +Willis +Art +Donnie +Gabriel +Myron +Orville +Ricky +Teddy +Aaron +Eldon +Harley +Kirk +Marc +Denny +Dewey +Lorenzo +Monty +Oliver +Rafael +Rodolfo +Arturo +Frederic +Nelson +Rene +Roderick +Ronny +Troy +Carroll +Derek +Dwayne +Jeffery +Jorge +Matthew +Melvyn +Rod +Sheldon +Stewart +Archie +Barton +Bryan +Edmond +Jean +Jerold +Merle +Adrian +Alfredo +Bennie +Boyd +Carlton +Elton +Harlan +Mel +Preston +Reynaldo +Alberto +Burton +Colin +Ignacio +Kelly +Lionel +Mack +Wade +Wally +Alton +Angelo +Augustine +Dana +Darwin +Enrique +Garland +Gerry +Gilberto +Jacob +Joaquin +Marcus +Merrill +Mitchell +Vern +Woodrow +Barbara +Dallas +Earle +Elvin +Errol +Guadalupe +Guillermo +Gus +Irving +Lanny +Luther +Marty +Murray +Otis +Simon +Van +Wilson +Winston +Bradford +Carol +Charley +Duncan +Elbert +Elliott +Ernesto +Felipe +Fredric +Gale +Gregg +Hal +Hubert +Ned +Rollin +Salvatore +Sandy +Terrance +Todd +Vaughn +Austin +Blaine +Brad +Cruz +Donn +Eddy +Elias +Gail +Isaac +Javier +Jeffry +Jerrold +Joey +Kerry +Loyd +Miles +Royce +Tyrone +Aubrey +Barney +Dudley +Emmett +Gerard +Horace +Kim +Moses +Rich +Rickey +Russ +Sterling +Thurman +Tomas +Tracy +Trinidad +Vince +Weldon +Alden +Bud +Cliff +Elden +Ellis +Elwood +Emilio +Garrett +Garth +Ira +Kendall +Lauren +Linda +Mervin +Nicolas +Roman +Sanford +Tommie +Ward +Abel +Benito +Bernardo +Dexter +Earnest +Fidel +Florencio +Freddy +Gaylord +Gregorio +Julius +Kermit +Mary +Refugio +Santiago +Santos +Shelby +Stanton +Terrill +Vance +Wilbert +Andre +Bobbie +Burt +Christian +Dannie +Dee +Emil +Erik +Ervin +Gearld +Irvin +Lon +Loyal +Mac +Mervyn +Monroe +Nicky +Nolan +Orlando +Orrin +Randal +Sal +Sergio +Stephan +Truman +Val +Abraham +Alonzo +Amador +August +Aurelio +Damon +Delmar +Dewayne +Dirk +Domingo +Eduardo +Elliot +Emory +Galen +Grady +Jason +Jules +Lane +Leopoldo +Lincoln +Lonny +Loran +Marco +Norris +Riley +Sydney +Verne +Will +Woody +Adam +Adolfo +Adolph +Bart +Billie +Blair +Blake +Bryce +Burl +Cameron +Claud +Danial +Dickie +Dixon +Emile +Evan +Grover +Irwin +Jasper +Judson +Kirby +Lenard +Les +Lorin +Milo +Morgan +Morton +Nathaniel +Nickolas +Norbert +Odell +Orval +Pablo +Patricia +Ramiro +Reggie +Reuben +Reynold +Rocky +Rudolfo +Sharon +Sheridan +Valente +Vicente +Walt +Warner +Wiley +Wilfred +Xavier +Alejandro +Andres +Armand +Bennett +Bernie +Betty +Carlyle +Casey +Clarke +Clay +Cornelius +Coy +Cyril +Dominic +Dwaine +Erwin +Federico +Forest +Geary +Gerold +Gonzalo +Gustavo +Herb +Hiram +Hollis +Hugo +Ismael +Jake +Jerrel +Judith +Justin +Kelley +Kenney +Kenton +Leonardo +Lorne +Lucien +Mathew +Millard +Newell +Raleigh +Raymon +Reed +Rey +Rolland +Russel +Stevan +Terrell +Theadore +Tito +Toby +Travis +Walton +Ygnacio +Amado +Ambrose +Anton +Arne +Arvid +Barrett +Basil +Benson +Blas +Bonifacio +Bret +Brooke +Cal +Carmen +Carter +Cesar +Chet +Clair +Cleo +Collin +Darel +Darell +Daryle +Delano +Derrel +Dewain +Dewitt +Duke +Elijah +Elmo +Esteban +Faustino +Gino +Godfrey +Hershel +Hilton +Ian +Israel +Jackson +Jaime +Jeremy +Jerrell +Johnie +Josef +Karen +Kay +Kit +Ladd +Laird +Laurance +Laverne +Lawernce +Leigh +Lyn +Marcos +Marlin +Matt +Michel +Patricio +Percy +Quentin +Raoul +Rollie +Roscoe +Royal +Sandra +Saul +Sean +Shawn +Sonny +Tad +Terryl +Vito +Werner +Zane +Robert +John +James +Richard +William +Michael +David +Ronald +Gary +Charles +Thomas +Donald +Larry +Dennis +George +Kenneth +Jerry +Paul +Frank +Edward +Stephen +Joseph +Daniel +Raymond +Steven +Jack +Jim +Joe +Roger +Mike +Gerald +Bill +Douglas +Arthur +Fred +Terry +Lawrence +Bruce +Don +Ralph +Wayne +Peter +Steve +Tom +Walter +Alan +Albert +Harold +Roy +Patrick +Carl +Danny +Anthony +Henry +Bob +Johnny +Manuel +Stanley +Eugene +Ronnie +Norman +Dale +Philip +Ray +Timothy +Louis +Jimmy +Howard +Phillip +Ernest +Mark +Leonard +Harry +Russell +Billy +Jeffrey +Eddie +Victor +Glenn +Melvin +Tony +Gilbert +Marvin +Alfred +Lee +Gene +Barry +Craig +Allen +Tommy +Jose +Jon +Gordon +Clifford +Martin +Dan +Keith +Brian +Frederick +Earl +Andrew +Gregory +Leroy +Bobby +Warren +Lloyd +Samuel +Rodney +Ted +Dave +Jesse +Leslie +Tim +Edwin +Glen +Rudy +Christopher +Vernon +Ron +Darrell +Eric +Dean +Theodore +Allan +Joel +Jay +Clarence +Jimmie +Randall +Herbert +Curtis +Carlos +Vincent +Dick +Randy +Floyd +Alvin +Duane +Francis +Pete +Ruben +Harvey +Wesley +Chris +Jesus +Ken +Leon +Clyde +Leo +Lewis +Dwight +Kent +Bernard +Lester +Nicholas +Garry +Lynn +Rick +Scott +Roland +Arnold +Nick +Alex +Lonnie +Raul +Calvin +Benjamin +Micheal +Freddie +Salvador +Cecil +Karl +Guy +Hugh +Jeff +Darryl +Marshall +Neil +Claude +Jan +Johnnie +Milton +Pat +Wallace +Alfonso +Francisco +Juan +Sam +Alexander +Fredrick +Laurence +Leland +Loren +Antonio +Franklin +Jerome +Benny +Louie +Jackie +Virgil +Willie +Armando +Ernie +Rudolph +Jonathan +Ross +Lyle +Phil +Maurice +Ramon +Randolph +Ben +Delbert +Max +Stuart +Everett +Kirk +Luis +Perry +Ed +Sammy +Charlie +Jess +Chuck +Herman +Rex +Robin +Chester +Elmer +Lowell +Pedro +Ricky +Willard +Clark +Greg +Bert +Clayton +Doug +Fernando +Hector +Oscar +Clinton +Frankie +Lance +Malcolm +Sidney +Felix +Mario +Ricardo +Daryl +Geoffrey +Edmund +Kenny +Andy +Darrel +Donnie +Gabriel +Jeffery +Marc +Grant +Morris +Myron +Rodger +Willis +Al +Bradley +Forrest +Reginald +Troy +Byron +Eldon +Kurt +Miguel +Noel +Roberto +Stan +Conrad +Edgar +Kevin +Sheldon +Bennie +Cary +Terrence +Alfredo +Ivan +Terrance +Buddy +Denny +Nathan +Roderick +Van +Adrian +Archie +Homer +Julian +Marion +Mickey +Nelson +Sherman +Brent +Clifton +Doyle +Hubert +Jerald +Jorge +Preston +Ignacio +Kim +Mitchell +Neal +Spencer +Terence +Ward +Wendell +Arturo +Denis +Gerry +Matthew +Rafael +Stewart +Emilio +Gale +Monte +Rene +Rickey +Teddy +Angel +Art +Billie +Bryan +Bud +Gregg +Oliver +Barney +Burton +Earnest +Enrique +Isaac +Ned +Rodolfo +Todd +Wilbert +Wilbur +Carlton +Dwayne +Hal +Kelly +Kit +Lon +Lorenzo +Merle +Monty +Orville +Reynaldo +Ronny +Royce +Val +Alton +Andre +Angelo +Austin +Bradford +Domingo +Ervin +Galen +Joey +Kerry +Les +Lionel +Mack +Marcus +Otis +Reuben +Wade +Armand +Brad +Cliff +Dewey +Freddy +Gus +Irving +Luther +Owen +Alberto +Augustine +Carroll +Colin +Dexter +Dominic +Frederic +Jerrold +Miles +Nathaniel +Rod +Wiley +Winston +Woodrow +Adolph +Charley +Edmond +Ellis +Emil +Garland +Gerard +Harlan +Ira +Jessie +Lupe +Toby +Vaughn +Abel +Andres +Boyd +Dana +Duncan +Elliott +Guadalupe +Harrison +Jackson +Jaime +Javier +Julius +Merlin +Ramiro +Russ +Salvatore +Stephan +Thurman +Tyrone +Vern +Woody +Carter +Dudley +Elias +Emmett +Erwin +Guillermo +Harley +Jerold +Joaquin +Julio +Lanny +Loyd +Lyman +Maynard +Morgan +Murray +Nolan +Pablo +Randal +Rickie +Russel +Sanford +Tomas +Vic +Amos +Bernardo +Dannie +Dee +Delmar +Ernesto +Errol +Garth +Irvin +Jason +Jean +Kennith +Lane +Reed +Rich +Royal +Rufus +Sherwood +Tommie +Travis +Weldon +Aaron +Adam +August +Barbara +Carmen +Christian +Darwin +Delmer +Eddy +Elbert +Fidel +Forest +Grady +Grover +Ian +Jeffry +Lonny +Marco +Merrill +Otto +Reggie +Sandy +Tracy +Truman +Vance +Wilson +Abraham +Anton +Bart +Barton +Carol +Dallas +Derrell +Diego +Donn +Drew +Dwain +Erik +Fredric +Gail +Garrett +Horace +Humberto +Kendall +Mary +Norris +Refugio +Roscoe +Rosendo +Rusty +Sergio +Sharon +Simon +Skip +Tyler +Ysidro +Agustin +Alejandro +Alonzo +Arvid +Aurelio +Barrett +Bernie +Blair +Bruno +Carey +Chad +Cruz +Danial +Darell +Del +Derek +Elwood +Evan +Felipe +Gonzalo +Hiram +Hollis +Jefferson +Jeremy +Junior +Kenton +Kermit +Lamont +Laverne +Leigh +Lincoln +Mac +Marty +Melton +Melvyn +Monroe +Nickolas +Nicolas +Percy +Pierre +Quentin +Rocky +Terrell +Verne +Wally +Walt +Alden +Arlen +Arlie +Aubrey +Bobbie +Brooks +Bryant +Burl +Burt +Cameron +Carleton +Chet +Claud +Clement +Courtney +Curt +Cyril +Davis +Dennie +Donna +Douglass +Esteban +Freeman +Fritz +Gayle +Gaylord +Geary +Hilario +Irwin +Jacob +Karen +Kip +Lamar +Lawerence +Leighton +Leopoldo +Lyn +Mel +Merritt +Mervin +Milo +Moses +Murphy +Norbert +Orin +Patricia +Riley +Rob +Robbie +Rodrick +Rolland +Rosario +Sammie +Santos +Shelby +Sonny +Sterling +Stevan +Sydney +Theron +Tod +Valentino +Vince +Vito +Warner +Wilford +Wilfred +Will +Xavier +Allyn +Basil +Bertram +Brice +Cal +Carlyle +Casey +Clarke +Clay +Cleo +Cornelius +Cornell +Courtland +Curtiss +Damon +Darold +Denton +Dewayne +Dickie +Dion +Dominick +Donovan +Eduardo +Elmo +Emanuel +Erick +Faustino +Graham +Hayward +Herb +Ismael +Jake +Jere +Joesph +Johnie +Judd +Justin +Kay +Kirby +Lauren +Lenard +Lenny +Leonardo +Linda +Lorin +Mariano +Michel +Nancy +Norm +Odell +Oren +Orval +Raoul +Raymundo +Reid +Reyes +Rigoberto +Sal +Salvadore +Sean +Stanford +Stanton +Sylvester +Thad +Tino +Trent +Trinidad +Virginia +Robert +John +James +Richard +Michael +William +David +Gary +Ronald +Charles +Thomas +Dennis +Larry +Donald +Kenneth +George +Paul +Stephen +Edward +Jerry +Frank +Joseph +Steven +Daniel +Mike +Jack +Raymond +Joe +Jim +Roger +Bill +Terry +Douglas +Steve +Gerald +Bruce +Peter +Arthur +Wayne +Lawrence +Don +Alan +Tom +Bob +Fred +Danny +Ralph +Anthony +Patrick +Harold +Henry +Timothy +Roy +Carl +Walter +Albert +Mark +Philip +Gregory +Stanley +Dale +Manuel +Russell +Johnny +Louis +Victor +Phillip +Harry +Eugene +Jimmy +Norman +Ronnie +Ernest +Leonard +Craig +Jeffrey +Tony +Dan +Gilbert +Jon +Barry +Howard +Ray +Alfred +Allen +Rodney +Tommy +Jose +Martin +Brian +Gordon +Keith +Billy +Eddie +Lee +Clifford +Melvin +Glenn +Gene +Andrew +Frederick +Dave +Christopher +Earl +Lloyd +Marvin +Eric +Samuel +Warren +Jesse +Bobby +Jay +Ron +Leslie +Curtis +Herbert +Darrell +Tim +Vernon +Glen +Leroy +Theodore +Vincent +Edwin +Randy +Dean +Jimmie +Allan +Micheal +Carlos +Clyde +Duane +Ted +Chris +Rick +Clarence +Harvey +Randall +Ken +Scott +Antonio +Ruben +Joel +Rudy +Pete +Dwight +Bernard +Leon +Alvin +Francis +Jeff +Lynn +Floyd +Willie +Alex +Kent +Raul +Benjamin +Jesus +Louie +Juan +Neil +Dick +Darryl +Franklin +Wesley +Leland +Lance +Leo +Nicholas +Sam +Ben +Lonnie +Arnold +Salvador +Calvin +Lester +Nick +Garry +Greg +Luis +Marshall +Ramon +Chester +Ricky +Laurence +Cecil +Lewis +Marc +Milton +Pat +Roberto +Ross +Freddie +Johnnie +Alexander +Fredrick +Wallace +Alfonso +Byron +Everett +Francisco +Armando +Jonathan +Benny +Daryl +Ed +Guy +Kenny +Ernie +Herman +Karl +Loren +Lyle +Mario +Claude +Delbert +Doug +Miguel +Roland +Chuck +Jerome +Rudolph +Sammy +Fernando +Jeffery +Rodger +Kevin +Clark +Jackie +Jan +Randolph +Donnie +Hugh +Phil +Ricardo +Oscar +Robin +Willard +Maurice +Rene +Stuart +Felix +Jess +Jerald +Perry +Troy +Van +Rex +Sherman +Darrel +Sidney +Bradley +Brent +Clinton +Elmer +Hector +Max +Andy +Charlie +Forrest +Frankie +Geoffrey +Ivan +Lowell +Arturo +Bert +Grant +Teddy +Terrence +Virgil +Edmund +Mitchell +Pedro +Cary +Clifton +Conrad +Dana +Edgar +Malcolm +Morris +Neal +Clayton +Ernesto +Noel +Alfredo +Denis +Reginald +Kirk +Otis +Terrance +Julian +Lupe +Angel +Archie +Art +Bryan +Dwayne +Ignacio +Jorge +Stan +Wendell +Bennie +Denny +Doyle +Ira +Jessie +Joaquin +Marty +Myron +Barney +Gerry +Homer +Kerry +Mickey +Rickey +Al +Bradford +Kim +Nathan +Orville +Sheldon +Terence +Julio +Loyd +Marion +Matthew +Oliver +Todd +Willis +Aaron +Adrian +Cliff +Enrique +Harley +Hubert +Luther +Merle +Monte +Dewey +Gabriel +Gregg +Harlan +Lanny +Preston +Rafael +Tracy +Vern +Buddy +Eldon +Kurt +Monty +Nelson +Owen +Rod +Rodolfo +Stewart +Burton +Guadalupe +Hal +Jaime +Rocky +Roderick +Truman +Alberto +Spencer +Wilbur +Dannie +Edmond +Elliott +Freddy +Gil +Guillermo +Isaac +Kelly +Marcus +Tommie +Tyrone +Wade +Ward +Woodrow +Andre +Angelo +Barton +Billie +Boyd +Brad +Dudley +Earnest +Felipe +Fredric +Gale +Gus +Irving +Joey +Linda +Lionel +Sal +Tomas +Aubrey +Dewayne +Eddy +Elias +Frederic +Javier +Kendall +Nathaniel +Ronny +Sandy +Santos +Theron +Vance +Wilson +Abel +Alton +Andres +Augustine +Bart +Eduardo +Emmett +Erik +Galen +Humberto +Jean +Julius +Mack +Mary +Ramiro +Reggie +Royal +Sylvester +Trinidad +Vaughn +Armand +Cruz +Curt +Donn +Ellis +Gerard +Ian +Jacob +Jeffry +Jerold +Lon +Milo +Russel +Toby +Wilfred +Adolph +Alejandro +Carroll +Dexter +Dickie +Duncan +Emilio +Gail +Jason +Marlin +Matt +Ned +Reynaldo +Riley +Simon +Stephan +Sydney +Weldon +Bernie +Bud +Carlton +Cory +Domingo +Emil +Gaylord +Geary +Gilberto +Horace +Jackson +Jerrold +Joesph +Kermit +Lorenzo +Mathew +Maynard +Merrill +Morton +Nicolas +Norris +Sterling +Aurelio +Bernardo +Bobbie +Carol +Christian +Colin +Courtney +Donny +Gonzalo +Grover +Hershel +Kip +Kris +Lauren +Lyman +Mel +Millard +Murray +Nicky +Nolan +Orval +Otto +Percy +Reed +Refugio +Rich +Rollin +Roosevelt +Salvatore +Stanton +Travis +Val +Will +Xavier +Barrett +Butch +Caesar +Charley +Clarke +Dario +Douglass +Edmundo +Elmo +Elwin +Emery +Evan +Fidel +Garrett +Grady +Gustavo +Harrison +Hugo +Leopoldo +Les +Marcel +Marco +Randal +Reuben +Reyes +Reynold +Santiago +Vicente +Wally +Walt +Wilbert +Adam +Artie +August +Bertram +Blair +Cameron +Carey +Carrol +Casey +Cesar +Claud +Connie +Dallas +Damon +Danial +Darold +Denton +Donovan +Dustin +Earle +Emanuel +Erick +Errol +Ervin +Fermin +Garth +Gerardo +Irvin +Junior +Justin +Lucky +Melvyn +Mervin +Mikel +Miles +Pablo +Pierre +Royce +Russ +Sergio +Sharon +Sonny +Tad +Terrell +Tod +Verne +Vic +Winston +Woody +Abelardo +Abraham +Agustin +Amos +Antony +Augustus +Cleveland +Cornelius +Cyril +Darwin +Dee +Dennie +Dominic +Dwain +Edwardo +Elbert +Elwood +Emile +Everardo +Florencio +Herschel +Ismael +Jere +Kennith +Kit +Lane +Lawerence +Lonny +Marcos +Marshal +Mason +Maximo +Merl +Merlin +Michel +Myles +Orlando +Rand +Rickie +Roscoe +Saul +Sean +Shelby +Thaddeus +Thurman +Timmy +Tyler +Whitney +Wilburn +Wiley +Wilmer +Winfred +Alonzo +Alva +Alvaro +Amador +Anselmo +Arlen +Arvin +Austin +Betty +Blake +Brooks +Bruno +Burnell +Burt +Buster +Carlo +Cedric +Celestino +Clay +Cordell +Coy +Del +Duke +Dwaine +Eliseo +Elton +Everette +Ferdinand +Forest +Garland +Gay +Gerold +Gino +Hans +Harland +Harris +Ike +Isidro +Judd +Judy +Jule +Kenney +Kirby +Lamar +Leigh +Lenard +Lenny +Lincoln +Lorin +Marcelino +Mervyn +Milford +Murphy +Nestor +Nickey +Nickolas +Norval +Pamela +Pascual +Porfirio +Quentin +Raymundo +Richmond +Rickard +Robbie +Rolf +Roman +Rory +Sandra +Sanford +Sebastian +Stanford +Terrill +Thurston +Trevor +Ulysses +Vito +Waldo +Robert +John +Richard +James +Michael +William +David +Gary +Ronald +Dennis +Thomas +Charles +Larry +Donald +Kenneth +Paul +George +Steven +Stephen +Frank +Daniel +Jerry +Edward +Joseph +Mike +Terry +Bruce +Raymond +Steve +Jack +Joe +Jim +Gregory +Douglas +Roger +Bill +Gerald +Lawrence +Danny +Patrick +Wayne +Arthur +Timothy +Mark +Fred +Peter +Alan +Tom +Don +Ralph +Bob +Harold +Anthony +Roy +Walter +Albert +Philip +Carl +Dale +Jeffrey +Henry +Stanley +Craig +Johnny +Russell +Manuel +Dan +Howard +Ronnie +Phillip +Louis +Ray +Ernest +Leonard +Harry +Barry +Glenn +Gilbert +Norman +Eugene +Jimmy +Tony +Allen +Martin +Rodney +Lee +Alfred +Andrew +Keith +Victor +Brian +Jon +Eddie +Tommy +Christopher +Billy +Melvin +Tim +Eric +Jose +Gene +Dave +Clifford +Scott +Ron +Randy +Gordon +Jay +Frederick +Greg +Lloyd +Marvin +Bobby +Dean +Carlos +Samuel +Randall +Earl +Chris +Jesse +Rick +Leroy +Warren +Allan +Theodore +Ken +Leslie +Darrell +Ted +Edwin +Glen +Ruben +Joel +Curtis +Vincent +Jeff +Vernon +Clarence +Micheal +Jimmie +Floyd +Kent +Nicholas +Leon +Lynn +Francis +Rudy +Dwight +Herbert +Bernard +Harvey +Wesley +Dick +Neil +Willie +Pete +Raul +Duane +Sam +Jesus +Salvador +Alvin +Clyde +Arnold +Juan +Lewis +Benjamin +Antonio +Marc +Armando +Calvin +Jerome +Leo +Darryl +Jonathan +Loren +Stuart +Phil +Laurence +Pat +Alexander +Francisco +Garry +Lonnie +Johnnie +Lester +Leland +Ross +Alex +Karl +Benny +Brent +Louie +Nick +Ricky +Chester +Chuck +Luis +Randolph +Milton +Guy +Mario +Roberto +Robin +Claude +Wallace +Bryan +Hugh +Kim +Byron +Daryl +Miguel +Marshall +Doug +Jeffery +Alfonso +Ben +Kenny +Perry +Andy +Kevin +Lance +Oscar +Freddie +Jan +Neal +Roland +Franklin +Hector +Terrence +Ramon +Dana +Darrel +Jackie +Edmund +Jerald +Rex +Rodger +Rudolph +Gregg +Herman +Ed +Ernie +Lyle +Pedro +Sammy +Jess +Maurice +Max +Sidney +Everett +Fredrick +Reginald +Cecil +Clinton +Fernando +Al +Virgil +Willard +Forrest +Lowell +Morris +Rickey +Rod +Charlie +Delbert +Denis +Geoffrey +Stan +Bradley +Gabriel +Angel +Clark +Edgar +Ricardo +Adrian +Arturo +Felix +Jessie +Denny +Frankie +Kirk +Preston +Rene +Grant +Matthew +Rafael +Teddy +Terrance +Bennie +Bert +Cary +Enrique +Gerry +Mitchell +Roderick +Van +Buddy +Doyle +Marty +Mickey +Myron +Alfredo +Clayton +Kerry +Kurt +Malcolm +Art +Clifton +Oliver +Rodolfo +Lionel +Wendell +Brad +Hal +Julian +Troy +Archie +Elmer +Jorge +Luther +Monte +Nathan +Angelo +Noel +Randal +Donnie +Loyd +Lupe +Marcus +Sherman +Terence +Wade +Conrad +Edmond +Lanny +Nelson +Ronny +Vern +Aaron +Carroll +Emmett +Frederic +Guadalupe +Ivan +Monty +Orville +Drew +Duncan +Eldon +Ernesto +Evan +Gale +Hubert +Ira +Julio +Spencer +Tyrone +Dwayne +Eduardo +Freddy +Ignacio +Javier +Lorenzo +Merle +Tomas +Alberto +Alonzo +Barney +Boyd +Bud +Eddy +Homer +Owen +Sandy +Simon +Stewart +Vance +Willis +Burton +Dewey +Grover +Horace +Jacob +Jean +Ramiro +Russ +Todd +Abel +Billie +Bradford +Curt +Elliott +Harlan +Nathaniel +Sergio +Tommie +Travis +Wilbert +Wilbur +Alton +Andre +Augustine +Bobbie +Burt +Erik +Fredric +Galen +Gerard +Guillermo +Humberto +Joaquin +Julius +Kelly +Len +Les +Lon +Mack +Sheldon +Vaughn +Wilson +Aubrey +Bart +Blair +Donn +Dudley +Earnest +Elias +Erwin +Felipe +Garrett +Irvin +Jaime +Jerrold +Kendall +Lorin +Otis +Rickie +Stephan +Austin +Cliff +Colin +Dannie +Dewayne +Dominic +Herb +Jackson +Jason +Kennith +Kirby +Miles +Royce +Salvatore +Sanford +Ward +Alejandro +Andres +Barton +Clint +Damon +Del +Domingo +Douglass +Elton +Gail +Garland +Grady +Harley +Ian +Isaac +Jerold +Lenny +Marion +Marlin +Mel +Murray +Percy +Rocky +Terrell +Val +Wally +Wilfred +Bernardo +Bryce +Carol +Carter +Christian +Dallas +Dane +Elbert +Ellis +Elwood +Emil +Ervin +Hollis +Irving +Kermit +Kip +Lamont +Lary +Leigh +Matt +Merrill +Ned +Nicolas +Rand +Reynaldo +Rich +Truman +Weldon +Winston +Adolph +Agustin +Arlen +Carlton +Carson +Elvin +Fidel +Gaylord +Gus +Jefferson +Justin +Kris +Linda +Lonny +Mac +Pablo +Reed +Reynold +Rolando +Russel +Ryan +Stevan +Tracy +Trinidad +Verne +Vince +Walt +Blaine +Cameron +Danial +Darwin +Dell +Dickie +Doran +Emery +Errol +Gilberto +Gregorio +Jake +Jeffry +Joey +Marco +Mary +Mervin +Reuben +Roman +Sal +Sterling +Sydney +Adam +August +Bennett +Bernie +Brett +Cedric +Clay +Cruz +Delmer +Dexter +Dino +Donnell +Dwain +Emilio +Gerold +Graham +Irwin +Jeremy +Kenton +Marcos +Morgan +Nicky +Norbert +Riley +Rolland +Rory +Rosendo +Shannon +Sharon +Stanford +Stanton +Sylvester +Taylor +Thurman +Will +Woodrow +Woody +Antone +Basil +Davis +Dee +Federico +Fermin +Garth +Gil +Gustavo +Hank +Harmon +Herschel +Hugo +Jonathon +Jonnie +Kit +Lamar +Lane +Laverne +Lyn +Mariano +Maynard +Melvyn +Milo +Nolan +Norris +Odis +Orrin +Raoul +Robbin +Rusty +Santos +Sheridan +Skip +Susan +Timmy +Toby +Tyler +Wiley +Xavier +Adan +Alphonso +Anton +Aurelio +Barrett +Barrie +Blas +Burl +Carey +Chesley +Clair +Claud +Cleo +Cory +Dayton +Derrell +Donna +Drake +Dustin +Dwane +Earle +Eliseo +Elliot +Ellsworth +Erick +Ezequiel +Faustino +Foster +Freeman +Garold +Gayle +Gearld +Geary +Glynn +Harrison +Isidro +Jamie +Jared +Jere +Jody +Johnie +Judson +Jules +Junior +Lauren +Lino +Margarito +Merlin +Nancy +Nels +Ollie +Orval +Randell +Reggie +Rogelio +Rollin +Ronnald +Roscoe +Rudolpho +Santiago +Saul +Scot +Sean +Sebastian +Shirley +Sonny +Terrill +Theadore +Theron +Vic +Vicente +Abraham +Allyn +Alva +Alvaro +Arnulfo +Aron +Arvid +Barbara +Baron +Benson +Butch +Carmen +Cesar +Coleman +Derald +Dominick +Duke +Dusty +Eusebio +Garey +Gavin +Gaylon +Gino +Godfrey +Hayden +Hayward +Henri +Hershel +Hiram +Houston +Ismael +Israel +Jhon +Johney +Judith +Lawerence +Loran +Lou +Lyman +Macario +Mahlon +Marshal +Merritt +Michel +Mikel +Noble +Otto +Pamela +Patric +Patricia +Quentin +Raymon +Raynaldo +Rey +Rickard +Roderic +Rogers +Royal +Rufus +Ruth +Sammie +Thad +Thom +Tod +Valentin +Virginia +Vito +Wilford +Ysidro +Robert +John +Michael +James +Richard +David +William +Ronald +Gary +Larry +Thomas +Dennis +Charles +Donald +Steven +Kenneth +Paul +Stephen +George +Daniel +Frank +Edward +Gregory +Joseph +Jerry +Mike +Bruce +Steve +Terry +Raymond +Mark +Jack +Douglas +Joe +Jim +Timothy +Patrick +Bill +Lawrence +Roger +Danny +Gerald +Wayne +Peter +Alan +Anthony +Arthur +Tom +Fred +Ralph +Craig +Jeffrey +Philip +Carl +Albert +Don +Walter +Stanley +Dale +Henry +Harold +Johnny +Bob +Dan +Phillip +Manuel +Glenn +Russell +Roy +Barry +Brian +Howard +Ronnie +Ernest +Louis +Harry +Jimmy +Christopher +Norman +Leonard +Allen +Eugene +Ray +Jose +Tony +Randy +Tommy +Greg +Lee +Rodney +Keith +Martin +Eddie +Andrew +Gilbert +Alfred +Dave +Clifford +Jon +Scott +Gordon +Frederick +Randall +Eric +Tim +Earl +Victor +Gene +Billy +Chris +Melvin +Jay +Jesse +Ron +Marvin +Bobby +Ted +Samuel +Dean +Warren +Curtis +Rick +Darrell +Lloyd +Carlos +Ruben +Edwin +Vincent +Glen +Joel +Leslie +Theodore +Ken +Leroy +Rudy +Jeff +Micheal +Allan +Vernon +Clarence +Duane +Kent +Leon +Nicholas +Juan +Clyde +Herbert +Pete +Lonnie +Wesley +Lewis +Jimmie +Ricky +Marc +Floyd +Jesus +Lester +Alex +Calvin +Raul +Benjamin +Francisco +Mario +Willie +Neil +Lynn +Sam +Alvin +Arnold +Darryl +Armando +Dana +Nick +Antonio +Bernard +Jerome +Leo +Francis +Chester +Franklin +Guy +Karl +Kevin +Pat +Ross +Harvey +Dick +Jonathan +Randolph +Stuart +Laurence +Loren +Ernie +Johnnie +Marshall +Dwight +Jeffery +Robin +Salvador +Ben +Claude +Gregg +Alexander +Louie +Rickey +Phil +Sammy +Luis +Sidney +Jess +Kim +Lance +Milton +Roland +Terrence +Daryl +Fernando +Fredrick +Roberto +Bradley +Alfonso +Jackie +Leland +Byron +Clinton +Brent +Hugh +Rodger +Ramon +Chuck +Jan +Andy +Benny +Kenny +Rex +Bryan +Neal +Oscar +Doug +Everett +Garry +Perry +Cecil +Herman +Miguel +Rudolph +Clark +Hector +Kirk +Maurice +Wallace +Geoffrey +Kerry +Pedro +Ricardo +Rafael +Ed +Grant +Lyle +Max +Virgil +Freddie +Rod +Edgar +Kurt +Mitchell +Rene +Darrel +Forrest +Julian +Reginald +Troy +Donnie +Doyle +Felix +Gabriel +Stan +Delbert +Morris +Willard +Brad +Matthew +Cary +Denis +Lowell +Mickey +Roderick +Sherman +Al +Bert +Charlie +Clayton +Elmer +Frankie +Jorge +Teddy +Alberto +Malcolm +Alfredo +Conrad +Edmund +Hal +Monte +Ronny +Angel +Augustine +Dwayne +Lon +Myron +Nathan +Nelson +Arturo +Enrique +Gerry +Jessie +Noel +Randal +Terrance +Tyrone +Jerald +Preston +Todd +Bradford +Denny +Lupe +Rodolfo +Vance +Clifton +Guadalupe +Monty +Aaron +Adrian +Bennie +Cliff +Dane +Eldon +Joey +Marty +Mel +Evan +Frederic +Harlan +Ignacio +Jerrold +Kelly +Lorenzo +Marcus +Sheldon +Van +Vaughn +Carlton +Guillermo +Julio +Owen +Rickie +Rocky +Russ +Sterling +Art +Barney +Curt +Edmond +Ira +Jaime +Luther +Marion +Nathaniel +Spencer +Stewart +Lionel +Loyd +Otis +Tommie +Wendell +Wilbur +Angelo +Dewey +Emilio +Erik +Harley +Hubert +Les +Miles +Oliver +Terence +Travis +Ward +Adam +Archie +Bart +Dewayne +Ivan +Javier +Merle +Michel +Pablo +Ryan +Vern +Willis +Gerard +Lane +Reynaldo +Stephan +Agustin +Alejandro +Bobbie +Boyd +Dallas +Duncan +Marco +Sandy +Toby +Tomas +Val +Andres +Clay +Domingo +Earnest +Eduardo +Emmett +Felipe +Gilberto +Irvin +Jacob +Orville +Rory +Sergio +Tracy +Abel +Alton +Andre +Barton +Bernie +Clint +Donn +Elbert +Ellis +Elvin +Ernesto +Gale +Galen +Garland +Irving +Isaac +Joesph +Kermit +Lanny +Ned +Porfirio +Brett +Buddy +Burton +Carey +Christian +Colin +Dirk +Drew +Freddy +Fredric +Gail +Gus +Jerold +Linda +Sanford +Santos +Trinidad +Wade +Wilson +Blake +Cesar +Darwin +Dexter +Elias +Elliott +Ervin +Jeffry +Joaquin +Jody +Kendall +Morgan +Robbie +Sean +Verne +Wally +August +Billie +Blaine +Charley +Dudley +Geary +Horace +Humberto +Ian +Leigh +Leopoldo +Lonny +Mack +Mary +Merrill +Otto +Percy +Raymundo +Rich +Royce +Russel +Salvatore +Stevan +Wilbert +Will +Winston +Bryce +Burt +Dee +Dell +Dickie +Eddy +Gil +Grover +Gustavo +Homer +Jean +Kennith +Kenton +Lorin +Lyn +Maynard +Orlando +Reggie +Rolland +Rusty +Woodrow +Xavier +Adolph +Basil +Chad +Cleo +Cornelius +Coy +Danial +Errol +Garth +Gaylord +Harrison +Herb +Jake +Jason +Jere +Julius +Junior +Kirby +Kit +Kris +Len +Marcelino +Marlin +Melvyn +Murray +Nicky +Nicolas +Reed +Reuben +Roman +Roosevelt +Simon +Stanford +Woody +Zane +Adolfo +Alonzo +Alphonso +Austin +Benito +Booker +Bud +Cameron +Carol +Carroll +Carter +Casey +Cornel +Dannie +Del +Derek +Dominic +Douglass +Dwain +Earle +Grady +Hans +Hiram +Irwin +Ismael +Jackson +Jamie +Kip +Odell +Orval +Reyes +Royal +Santiago +Shannon +Sylvester +Vince +Walt +Alden +Aubrey +Bernardo +Bret +Brock +Brooks +Buck +Carlo +Damon +Darell +Darnell +Darold +Davis +Dayton +Elwood +Emil +Federico +Gayle +Genaro +Gonzalo +Graig +Harland +Harmon +Jordan +Logan +Lou +Luke +Marcel +Mariano +Mathew +Merlin +Orin +Patricia +Pierre +Ramiro +Randell +Raymon +Rollin +Sal +Skip +Sonny +Susan +Terrell +Trent +Vic +Vicente +Weldon +Wes +Wyatt +Abraham +Alec +Alva +Amos +Barbara +Bruno +Claud +Cruz +Edwardo +Elton +Emerson +Erick +Fidel +Florencio +Ford +Gearld +Graham +Hank +Hoyt +Jacques +Jock +Kelley +Leonardo +Lew +Mauro +Maxie +Maxwell +Millard +Nolan +Quentin +Raleigh +Reid +Rigoberto +Rogelio +Rollie +Rosalio +Sammie +Tod +Ty +Vito +Wilfred +Zachary +Alvaro +Anton +Armand +Bard +Blair +Brant +Butch +Christophe +Clemente +Cornell +Courtney +Creighton +Cris +Curtiss +Cynthia +Dalton +Dario +Dino +Donny +Duke +Elden +Elliot +Emile +Erwin +Esequiel +Faustino +Fermin +Forest +Garold +Gavin +Hilario +Jonnie +Kay +Lamont +Lawerence +Lincoln +Linn +Loran +Margarito +Marshal +Matt +Montie +Moses +Napoleon +Rand +Raphael +Reese +Rito +Rob +Roddy +Seth +Shelby +Sid +Silas +Solomon +Stanton +Thurman +Tyler +Warner +Wilmer +Winfield +Ysidro +Alvis +Amador +Arden +Artemio +Arther +Artie +Arvid +Bernhard +Bertram +Buster +Cal +Carrol +Cedric +Christine +Cleveland +Deane +Delmer +Denton +Deryl +Desmond +Diane +Dion +Dolores +Donnell +Elroy +Emanuel +Emery +Emmet +Ethan +Everette +Farrell +Felton +Garrett +Hampton +Harris +Henri +Herschel +Holly +Hugo +Jared +Jed +Johnie +Joshua +Justin +Kieth +Kimball +King +Kyle +Laron +Lauren +Laurie +Layton +Leandro +Lenard +Lenny +Lorne +Lyman +Lynwood +Malvin +Merritt +Mervin +Mikel +Mitchel +Nels +Norris +Norton +Octavio +Ollie +Orvil +Patric +Refugio +Reynold +Riley +Robb +Rodrick +Rudolfo +Rufus +Schuyler +Shawn +Sydney +Timmy +Valentino +Verlin +Wilburn +Wiley +Wilford +Robert +John +Michael +James +David +Richard +William +Ronald +Thomas +Gary +Steven +Larry +Charles +Dennis +Stephen +Donald +Kenneth +Daniel +Paul +George +Joseph +Gregory +Frank +Mark +Edward +Bruce +Jerry +Steve +Timothy +Mike +Raymond +Douglas +Terry +Patrick +Lawrence +Danny +Jack +Joe +Jim +Roger +Arthur +Peter +Alan +Gerald +Craig +Wayne +Jeffrey +Bill +Anthony +Tom +Ralph +Christopher +Philip +Stanley +Carl +Dale +Henry +Fred +Harold +Roy +Albert +Phillip +Walter +Russell +Don +Johnny +Manuel +Brian +Glenn +Randy +Ernest +Bob +Barry +Louis +Jose +Martin +Dan +Harry +Howard +Ronnie +Scott +Alfred +Allen +Eric +Rodney +Victor +Gilbert +Tony +Andrew +Randall +Jimmy +Leonard +Keith +Eugene +Ray +Frederick +Samuel +Norman +Lee +Chris +Eddie +Ruben +Tommy +Dave +Jon +Melvin +Jesse +Greg +Tim +Vincent +Rick +Earl +Gene +Gordon +Marvin +Clifford +Darrell +Theodore +Billy +Glen +Jay +Joel +Curtis +Ted +Bobby +Lloyd +Warren +Carlos +Ron +Allan +Rudy +Dean +Micheal +Leslie +Kevin +Duane +Benjamin +Ken +Marc +Jesus +Edwin +Willie +Vernon +Clarence +Antonio +Jeff +Floyd +Lynn +Raul +Arnold +Calvin +Jonathan +Sam +Alex +Francis +Herbert +Clyde +Jimmie +Leroy +Kent +Nicholas +Mario +Randolph +Harvey +Juan +Dana +Lonnie +Ricky +Pete +Wesley +Alexander +Leon +Darryl +Neil +Alvin +Jerome +Karl +Lewis +Francisco +Lance +Jeffery +Armando +Lester +Luis +Bradley +Fredrick +Loren +Rex +Salvador +Dwight +Laurence +Daryl +Bernard +Freddie +Leo +Guy +Johnnie +Rickey +Nick +Chester +Phil +Louie +Stuart +Fernando +Robin +Rudolph +Benny +Terrence +Ramon +Andy +Franklin +Garry +Ross +Claude +Jackie +Pat +Ernie +Miguel +Roberto +Roland +Alfonso +Leland +Marshall +Ricardo +Jess +Mitchell +Ben +Kurt +Oscar +Sammy +Bryan +Byron +Gregg +Hector +Brent +Dick +Milton +Wallace +Matthew +Reginald +Kim +Cecil +Geoffrey +Grant +Kirk +Perry +Pedro +Doug +Kenny +Terrance +Chuck +Lyle +Clark +Jan +Cary +Maurice +Clinton +Delbert +Hugh +Neal +Rodger +Elmer +Brad +Darrel +Ed +Everett +Herman +Jessie +Sidney +Virgil +Al +Alfredo +Charlie +Jerald +Rene +Roderick +Edmund +Rafael +Conrad +Gabriel +Max +Nelson +Troy +Angel +Arturo +Clifton +Denis +Edgar +Jorge +Julian +Willard +Kerry +Clayton +Stan +Gerry +Malcolm +Mickey +Teddy +Tyrone +Aaron +Bert +Morris +Stephan +Todd +Adrian +Kelly +Randal +Frankie +Sherman +Bradford +Donnie +Lowell +Archie +Forrest +Monte +Rocky +Wade +Edmond +Enrique +Ronny +Wendell +Dwayne +Felix +Hal +Ivan +Rod +Guadalupe +Lupe +Marcus +Myron +Rodolfo +Sheldon +Van +Barton +Brett +Doyle +Julio +Nathan +Noel +Travis +Willis +Angelo +Eddy +Guillermo +Jaime +Javier +Marty +Sean +Vance +Alejandro +Art +Carlton +Denny +Dewey +Ernesto +Ignacio +Ira +Vaughn +Alberto +Andre +Elliott +Galen +Loyd +Oliver +Owen +Preston +Boyd +Buddy +Christian +Eldon +Ellis +Freddy +Gale +Gerard +Harlan +Lanny +Lorenzo +Merle +Barney +Bennie +Clay +Cliff +Rory +Simon +Stewart +Tommie +Eduardo +Ismael +Jeffry +Joey +Lon +Luther +Marion +Nathaniel +Otis +Pablo +Reed +Terence +Vern +Augustine +Dane +Dominic +Gustavo +Harley +Horace +Lawerence +Rickie +Xavier +Abel +August +Homer +Hubert +Isaac +Jacob +Linda +Lionel +Michel +Miles +Monty +Moses +Reynaldo +Royce +Sergio +Spencer +Tracy +Armand +Cleveland +Donn +Emilio +Felipe +Marcos +Sanford +Tomas +Vince +Wilbert +Adolph +Alton +Bernie +Bud +Dewayne +Frederic +Jason +Jerrold +Lane +Ramiro +Rand +Russ +Russel +Salvatore +Santos +Wilfred +Del +Drew +Elias +Garrett +Irving +Joaquin +Julius +Marco +Ned +Pierre +Reuben +Shawn +Val +Benito +Brock +Carroll +Douglass +Evan +Fredric +Gus +Jackson +Les +Lonny +Mack +Matt +Nolan +Rich +Sterling +Trinidad +Ward +Wilson +Adam +Agustin +Alonzo +Carey +Casey +Cesar +Colin +Dallas +Earnest +Grover +Humberto +Justin +Lamont +Reid +Rufus +Rusty +Sandy +Timmy +Wally +Wilbur +Aubrey +Blake +Bryce +Danial +Duncan +Elbert +Erick +Erik +Ervin +Gaylord +Gilberto +Jerold +Kennith +Lenard +Marlin +Sammie +Stanford +Stanton +Sylvester +Verne +Will +Woodrow +Zachary +Abraham +Andres +Aurelio +Billie +Bobbie +Burton +Charley +Christophe +Cornelius +Dannie +Domingo +Emmett +Gerardo +Gil +Ian +Irvin +Jean +Jere +Jody +Johnie +Junior +Kendall +Kenton +Lorin +Luke +Millard +Murray +Orville +Randell +Raymundo +Robbie +Roosevelt +Stevan +Terrill +Adolfo +Alva +Austin +Bart +Bryant +Cameron +Cris +Curt +Dirk +Donal +Dudley +Dwain +Earle +Elton +Erwin +Faustino +Grady +Irwin +Jacques +Jake +Jamie +Jasper +Joesph +Jonathon +Lawrance +Marcelino +Mathew +Mitchel +Odell +Orlando +Reggie +Riley +Rolland +Shannon +Susan +Terrell +Vicente +Walt +Weldon +Winston +Zane +Baron +Brooke +Brooks +Burl +Burt +Carter +Damon +Darwin +Delmar +Denver +Derek +Donnell +Eliseo +Emery +Fritz +Garland +Garth +Gayle +Geary +Genaro +Harrison +Herschel +Hershel +Isidro +Kip +Kit +Kris +Lucio +Lyn +Margarito +Mel +Melvyn +Merlin +Myles +Percy +Quentin +Rayford +Refugio +Rosendo +Royal +Sal +Santiago +Tyler +Wiley +Ambrose +Augustin +Bartley +Basilio +Bernardo +Booker +Buck +Carlo +Carol +Carson +Cipriano +Clement +Cleo +Cody +Collin +Delmer +Dexter +Donny +Dorian +Duke +Dwane +Elijah +Elliot +Emile +Gaylon +Graham +Hank +Jeremy +Kermit +Kirby +Leigh +Loran +Lyman +Mariano +Mervin +Milo +Mitch +Morgan +Noble +Norris +Orval +Patricia +Ricki +Roddy +Rogelio +Rubin +Ryan +Sebastian +Skip +Truman +Vic +Alec +Allyn +Anton +Armond +Arvin +Bennett +Benson +Bertrand +Blair +Brady +Buford +Chad +Corey +Dee +Delfino +Deryl +Donna +Elmo +Elwood +Emil +Errol +Esteban +Federico +Forest +Gregorio +Hans +Harland +Herbie +Hollis +Jefferson +Laurance +Lazaro +Len +Levi +Linden +Maynard +Melton +Mikel +Nels +Newton +Nickolas +Nicolas +Oren +Porfirio +Randel +Reymundo +Richmond +Rob +Robb +Rodrigo +Rolando +Rolf +Rollin +Roscoe +Rudolfo +Sid +Stefan +Thom +Toby +Tod +Unknown +Weston +Alden +Alford +Allison +Alvaro +Amador +Antone +Arlen +Artis +Blaine +Brandon +Britt +Burke +Carleton +Chauncey +Clem +Cole +Cornell +Cory +Courtney +Cruz +Cyrus +Darell +Darnell +Darol +Darold +Davis +Desmond +Donovan +Durward +Dustin +Felis +Felton +Fidel +Freeman +Gail +Gearld +Gonzalo +Graydon +Hilario +Hiram +Horacio +Hoyt +Hugo +Isaiah +Israel +Jones +Jordan +Jules +Kathleen +Kenyon +King +Lauren +Leandro +Lincoln +Logan +Loy +Lynden +Mac +Major +Margaret +Marlo +Mary +Maury +Maxwell +Michal +Miller +Norbert +Orin +Otto +Pasqual +Raymon +Reyes +Ricci +Roman +Ronnald +Salvadore +Sandra +Scot +Seth +Shelby +Tad +Valentino +Warner +Wes +Woody +Robert +Michael +John +James +David +Richard +William +Steven +Thomas +Gary +Ronald +Charles +Stephen +Larry +Dennis +Donald +Kenneth +Daniel +Mark +Paul +George +Edward +Joseph +Gregory +Bruce +Frank +Timothy +Douglas +Jerry +Patrick +Raymond +Lawrence +Steve +Terry +Jeffrey +Jack +Roger +Danny +Craig +Anthony +Arthur +Peter +Christopher +Mike +Joe +Gerald +Wayne +Alan +Ralph +Philip +Brian +Henry +Stanley +Glenn +Dale +Phillip +Albert +Manuel +Carl +Jim +Roy +Harold +Walter +Bill +Randy +Louis +Fred +Ernest +Don +Johnny +Randall +Martin +Russell +Eric +Scott +Tom +Allen +Rodney +Dan +Jose +Keith +Victor +Andrew +Eugene +Leonard +Harry +Howard +Ray +Barry +Gilbert +Frederick +Tony +Norman +Ronnie +Alfred +Jimmy +Chris +Clifford +Lee +Kevin +Bob +Ruben +Samuel +Rick +Gordon +Jon +Jay +Glen +Jesse +Carlos +Melvin +Billy +Darrell +Marvin +Theodore +Dean +Eddie +Micheal +Vincent +Tommy +Earl +Dave +Lloyd +Gene +Rudy +Marc +Leslie +Greg +Curtis +Randolph +Bobby +Raul +Benjamin +Juan +Tim +Kirk +Allan +Edwin +Duane +Luis +Bradley +Kent +Jesus +Ted +Warren +Herbert +Lynn +Jonathan +Willie +Jeff +Joel +Francis +Karl +Calvin +Dana +Vernon +Darryl +Antonio +Clarence +Jeffery +Bernard +Leroy +Salvador +Leo +Neil +Ron +Alex +Lonnie +Ricky +Wesley +Mario +Louie +Alvin +Armando +Leon +Floyd +Lester +Rex +Alexander +Clyde +Nicholas +Marshall +Robin +Francisco +Roberto +Dwight +Fredrick +Guy +Jerome +Ken +Roland +Arnold +Harvey +Leland +Ross +Brent +Pete +Stuart +Grant +Rickey +Franklin +Kurt +Rudolph +Terrence +Johnnie +Ricardo +Oscar +Daryl +Jimmie +Lewis +Nick +Laurence +Loren +Matthew +Milton +Kerry +Sam +Alfonso +Jess +Benny +Garry +Gregg +Lyle +Geoffrey +Hector +Miguel +Ramon +Mitchell +Reginald +Rodger +Lance +Clifton +Freddie +Pat +Clark +Jan +Kim +Felix +Kelly +Cecil +Claude +Pedro +Bradford +Hugh +Max +Wallace +Charlie +Clinton +Andy +Brad +Phil +Todd +Bryan +Byron +Herman +Jackie +Doyle +Fernando +Gabriel +Maurice +Arturo +Ernie +Ernesto +Randal +Rocky +Sammy +Chester +Darrel +Doug +Neal +Ben +Edgar +Perry +Cary +Clayton +Delbert +Edmund +Rafael +Angel +Monty +Alfredo +Hal +Julian +Monte +Rene +Terence +Alberto +Chuck +Dick +Forrest +Ed +Kenny +Sidney +Jorge +Lowell +Malcolm +Roderick +Adrian +Everett +Tyrone +Rodolfo +Teddy +Terrance +Bert +Enrique +Isaac +Nathan +Christophe +Javier +Mickey +Myron +Rory +Stephan +Willard +Aaron +Donnie +Dwayne +Jessie +Julio +Nelson +Stan +Stewart +Boyd +Gerard +Jerald +Troy +Virgil +Denis +Ignacio +Noel +Preston +Van +Vance +Abel +Conrad +Marcus +Miles +Sheldon +Vaughn +Wendell +Edmond +Ivan +Jaime +Jeffry +Al +Felipe +Frankie +Gerry +Guadalupe +Lorenzo +Marty +Morris +Ronny +Sean +Travis +Christian +Denny +Donn +Elmer +Erik +Homer +Ira +Sergio +Guillermo +Lanny +Nathaniel +Sherman +Tracy +Angelo +Bennie +Elias +Harley +Jacob +Lupe +Marcos +Oliver +Owen +Archie +Augustine +Duncan +Marion +Michel +Murray +Nicolas +Reynaldo +Shawn +Val +Wade +Wilbert +Buddy +Dannie +Earnest +Eduardo +Elliott +Jerold +Nolan +Alejandro +Art +Carey +Colin +Danial +Dewey +Dominic +Frederic +Gilberto +Harlan +Joaquin +Otis +Spencer +Barney +Brett +Clay +Cornelius +Cruz +Dee +Domingo +Drew +Fredric +Gale +Galen +Hubert +Lionel +Lon +Merle +Pablo +Reed +Reid +Salvatore +Sterling +Alton +Andres +Bart +Casey +Curt +Eldon +Fidel +Gail +Gus +Gustavo +Jerrold +Marco +Orville +Ramiro +Sanford +Tomas +Ward +Wilfred +Abraham +Adam +Bobbie +Bud +Ian +Kris +Lorin +Mack +Rand +Rod +Santos +Sylvester +Willis +Woodrow +Armand +Cameron +Carter +Cliff +Dallas +Dane +Darwin +Derek +Emilio +Fermin +Garland +Horace +Lenard +Les +Mel +Reggie +Reuben +Rickie +Rogelio +Russ +Rusty +Carlton +Charley +Douglass +Elbert +Emmett +Evan +Humberto +Irving +Justin +Kirby +Lane +Robbie +Royce +Trinidad +Wilbur +Wilson +Andre +Bernardo +Burt +Coy +Del +Dirk +Freddy +Hans +Irvin +Jamie +Jean +Joey +Jonathon +Julius +Linda +Luther +Mathew +Melvyn +Milo +Ned +Roscoe +Ryan +Sal +Stevan +Taylor +Terrill +Wally +Wiley +Agustin +Barton +Billie +Blaine +Blair +Brooks +Carroll +Cesar +Dante +Eddy +Fritz +Genaro +Gil +Graham +Ismael +Jason +Joesph +Kip +Mary +Norbert +Randell +Sammie +Simon +Skip +Toby +Tommie +Vern +Winston +Xavier +Adolph +August +Benito +Bernie +Brant +Burton +Clement +Delmar +Dewayne +Dino +Ellis +Erick +Ervin +Garrett +Gerardo +Harrison +Hugo +Jeremy +Lamont +Lauren +Leigh +Leonardo +Lincoln +Loyd +Mitchel +Nickolas +Norris +Roman +Royal +Russel +Stanton +Verne +Alec +Alvaro +Benton +Cornell +Damon +Dudley +Duke +Dwaine +Edmundo +Elton +Emery +Emil +Fransisco +Garth +Gaylord +Gearld +Grady +Gregorio +Grover +Kendall +Kennith +Kenton +Kermit +Lawrance +Leopoldo +Lonny +Monroe +Moses +Rob +Santiago +Scot +Shelby +Stacy +Zachary +Adolfo +Antone +Arlen +Artie +Aubrey +Bret +Bryant +Carlo +Corey +Dexter +Donal +Donny +Dwain +Earle +Elvin +Elwood +Geary +Jackson +Jefferson +Jody +Jordan +Junior +Laird +Laurance +Leif +Luciano +Marcelino +Millard +Orlando +Pierre +Regan +Riley +Rufus +Shannon +Sydney +Tod +Tyler +Will +Alonzo +Alphonso +Arland +Austin +Basil +Bennett +Brock +Carmen +Clarke +Courtney +Cris +Curtiss +Cyril +Donovan +Dorian +Dustin +Efren +Eliseo +Emanuel +Emory +Errol +Erwin +Federico +Irwin +Isaiah +Jacques +Jared +Kathleen +Kimball +Lary +Lawerence +Lindsey +Mariano +Matt +Merrill +Morgan +Otto +Reyes +Rolando +Sandy +Saul +Stanford +Stefan +Trent +Vito +Webster +Abe +Abram +Alden +Antony +Blake +Britt +Buck +Caesar +Chad +Conrado +Cory +Cyrus +Dalton +Damian +Darnell +Davis +Denton +Elliot +Emerson +Everardo +Faustino +Fletcher +Forest +Franklyn +Herb +Hershel +Jerel +Judson +Kit +Kyle +Layne +Mac +Margarito +Mervin +Nicky +Odell +Patricia +Randolf +Raoul +Raymundo +Refugio +Rey +Rich +Rigoberto +Rollin +Ronney +Rosendo +Rubin +Rudolfo +Rueben +Solomon +Terrell +Thurman +Valentin +Vicente +Wilburn +Brandon +Bryce +Buford +Carleton +Chet +Christine +Clancy +Cleveland +Clint +Coleman +Collin +Connie +Cornel +Courtland +Danniel +Darell +Dario +Darold +Davey +Denver +Deryl +Dickie +Dusty +Elden +Eloy +Emmanuel +Emmitt +Esteban +Filiberto +Florencio +Glendon +Gray +Hank +Harland +Harmon +Herschel +Israel +Jake +Jere +Jeremiah +Jock +Kelley +Kenney +Kimberly +Leighton +Len +Lex +Lindsay +Lindy +Lory +Loy +Luke +Mahlon +Marcel +Marshal +Merlin +Mikel +Moises +Montgomery +Newton +Noah +Norberto +Olen +Ollie +Patric +Percy +Robby +Rocco +Rockey +Ronal +Roosevelt +Rosario +Rudolf +Sharon +Sheridan +Susan +Timmy +Tito +Truman +Ty +Unknown +Vince +Wayman +Weldon +Wilford +Winford +Woody +Ysidro +Zane +Robert +Michael +John +David +James +Richard +William +Steven +Thomas +Gary +Ronald +Charles +Stephen +Donald +Dennis +Daniel +Larry +Mark +Kenneth +Paul +Gregory +Joseph +George +Edward +Timothy +Bruce +Frank +Douglas +Raymond +Patrick +Lawrence +Jeffrey +Jerry +Christopher +Anthony +Gerald +Terry +Craig +Peter +Arthur +Alan +Jack +Roger +Danny +Scott +Wayne +Steve +Joe +Ralph +Dale +Philip +Albert +Henry +Glenn +Brian +Carl +Jose +Stanley +Randall +Phillip +Harold +Randy +Walter +Manuel +Roy +Keith +Martin +Ernest +Mike +Andrew +Russell +Rodney +Eric +Leonard +Fred +Gilbert +Barry +Victor +Kevin +Louis +Johnny +Allen +Howard +Don +Eugene +Lee +Frederick +Harry +Bill +Clifford +Jim +Gordon +Norman +Alfred +Ruben +Jay +Jimmy +Ray +Micheal +Chris +Samuel +Tom +Dan +Carlos +Darrell +Vincent +Ronnie +Rick +Glen +Jon +Jesse +Melvin +Tony +Dean +Theodore +Marc +Kirk +Billy +Curtis +Marvin +Benjamin +Tommy +Warren +Nicholas +Earl +Eddie +Mario +Bob +Bradley +Juan +Leslie +Kent +Bobby +Joel +Randolph +Ricky +Lloyd +Brent +Gene +Greg +Jonathan +Vernon +Allan +Antonio +Calvin +Duane +Darryl +Dave +Jeffery +Neil +Jerome +Rudy +Edwin +Herbert +Jesus +Leo +Raul +Francisco +Ted +Alvin +Lynn +Salvador +Bernard +Arnold +Lonnie +Dana +Wesley +Dwight +Tim +Lance +Clyde +Lester +Alex +Harvey +Robin +Daryl +Karl +Armando +Alexander +Guy +Matthew +Francis +Fredrick +Louie +Roberto +Garry +Kurt +Floyd +Leroy +Willie +Leon +Luis +Ramon +Kim +Laurence +Franklin +Jimmie +Miguel +Ricardo +Clarence +Kerry +Oscar +Lewis +Rudolph +Reginald +Terrence +Ross +Bradford +Bryan +Gregg +Rickey +Neal +Todd +Rex +Stuart +Geoffrey +Loren +Fernando +Pete +Mitchell +Pedro +Hector +Milton +Chester +Nick +Freddie +Grant +Perry +Byron +Christophe +Jeff +Leland +Roland +Alfonso +Gabriel +Ron +Terrance +Jess +Max +Benny +Rene +Ken +Arturo +Marshall +Ben +Hugh +Johnnie +Edmund +Maurice +Rodger +Clark +Delbert +Herman +Sidney +Wallace +Darrel +Edgar +Terence +Angel +Clifton +Brad +Forrest +Jackie +Jan +Jorge +Cecil +Lowell +Claude +Alfredo +Cary +Clinton +Sam +Lyle +Roderick +Troy +Ernesto +Julian +Kelly +Sammy +Guadalupe +Ignacio +Rafael +Andy +Bert +Conrad +Lorenzo +Clayton +Enrique +Felix +Rocky +Stephan +Wendell +Alberto +Javier +Randal +Rory +Brett +Monte +Nelson +Pat +Everett +Jerald +Ernie +Frankie +Monty +Nathan +Virgil +Aaron +Denis +Doug +Jessie +Rodolfo +Archie +Christian +Noel +Tyrone +Adrian +Chuck +Doyle +Dwayne +Eduardo +Morris +Phil +Donnie +Sheldon +Sherman +Willard +Charlie +Freddy +Isaac +Marcus +Myron +Spencer +Clay +Joey +Marcos +Stewart +Darwin +Dick +Kenny +Malcolm +Merle +Nathaniel +Preston +Edmond +Ivan +Jeffry +Mickey +Teddy +Van +Al +Augustine +Carey +Jaime +Jerrold +Joaquin +Julio +Marco +Otis +Rickie +Sean +Wade +Abel +Alejandro +Barton +Bennie +Buddy +Burton +Casey +Eldon +Gerry +Guillermo +Michel +Miles +Vance +Winston +Angelo +Dominic +Erik +Felipe +Hal +Harlan +Marty +Adam +Barney +Denny +Ed +Elias +Gustavo +Jason +Lionel +Pierre +Shawn +Tracy +Curt +Geary +Lane +Lon +Reynaldo +Salvatore +Simon +Tommie +Dane +Duncan +Elmer +Galen +Ira +Kris +Rod +Stan +Stanton +Andre +Damon +Danial +Gale +Gerard +Hubert +Jacob +Lanny +Ned +Ramiro +Reed +Sergio +Vaughn +Alonzo +Dexter +Domingo +Ian +Irving +Luther +Owen +Vern +Bart +Boyd +Carlton +Emmett +Evan +Fredric +Garrett +Harley +Homer +Humberto +Oliver +Orville +Russel +Toby +Tomas +Ward +Wilson +Xavier +Armand +August +Blake +Burt +Colin +Cruz +Derek +Donn +Garth +Joshua +Kennith +Kermit +Lupe +Nicolas +Pablo +Rogelio +Tyler +Wilbert +Wilfred +Willis +Art +Earnest +Eddy +Ellis +Emil +Hans +Julius +Morgan +Murray +Riley +Vicente +Alton +Andres +Del +Drew +Gonzalo +Grover +Gus +Jean +Lamont +Mack +Nolan +Stevan +Timmy +Unknown +Adolph +Aubrey +Bud +Carroll +Carter +Cesar +Charley +Emilio +Irvin +Jerold +Kip +Kyle +Lenard +Linda +Mathew +Merrill +Randell +Royce +Rudolfo +Sandy +Santiago +Shannon +Austin +Carson +Cliff +Dallas +Dirk +Elliott +Fidel +Gerardo +Grady +Ismael +Jonathon +Kirby +Kit +Rand +Reuben +Rigoberto +Ronny +Roosevelt +Rosendo +Ryan +Sanford +Saul +Stacy +Sterling +Benito +Blaine +Cedric +Dewayne +Donnell +Dwain +Frederic +Garland +Graham +Joesph +Johnie +Lindsay +Luke +Mac +Marion +Marlin +Mel +Reid +Robbie +Santos +Stanford +Val +Wilbur +Woodrow +Agustin +Aurelio +Bernardo +Bret +Cleveland +Cornell +Dewey +Elbert +Emery +Fermin +Gil +Gilberto +Jackson +Jake +Junior +Kendall +Lawerance +Lawerence +Leandro +Lorin +Mitchel +Reyes +Reynold +Rolando +Royal +Rusty +Scot +Sylvester +Travis +Trinidad +Alvaro +Anton +Bennett +Benson +Billie +Blair +Brady +Bruno +Bryant +Carmen +Corey +Cornelius +Dudley +Edwardo +Elliot +Esteban +Gail +Irwin +Leopoldo +Lex +Loyd +Luciano +Lyn +Mauricio +Moses +Nickolas +Nicky +Orlando +Percy +Regan +Reggie +Renaldo +Rich +Rolland +Roman +Shelby +Sonny +Susan +Sydney +Terrell +Thurman +Tod +Verne +Vince +Zachary +Abraham +Adolfo +Antone +Antony +Basil +Bonifacio +Booker +Brock +Bryce +Butch +Cameron +Carol +Cory +Cyril +Dannie +Danniel +Derrick +Dickie +Donovan +Douglass +Dwaine +Earle +Efren +Errol +Eugenio +Fritz +Gaylord +Gearld +Henri +Herschel +Horace +Hugo +Jame +Jamie +Jared +Jefferson +Kenton +King +Laird +Lary +Lauren +Lawrance +Lonny +Margarito +Mckinley +Merlin +Michiel +Mikel +Millard +Newton +Otto +Raoul +Rosalio +Rufus +Shelton +Taylor +Theron +Trent +Truman +Wally +Wiley +Will +Zane +Alonso +Bertram +Brandon +Brice +Brooks +Camilo +Clement +Coleman +Courtney +Dario +Darold +Deane +Dell +Denton +Dewitt +Dusty +Eliseo +Elton +Emanuel +Erick +Esequiel +Federico +Ford +Forest +Fransisco +Garey +Hayden +Jacques +Jere +Jody +Kelvin +Laurance +Les +Lucio +Marcelino +Margaret +Mariano +Matt +Maynard +Merritt +Michale +Monroe +Montgomery +Myles +Norbert +Norm +Randle +Raymundo +Reno +Ritchie +Robbin +Roddy +Rodrick +Rolf +Roscoe +Rowland +Sammie +Scotty +Shaun +Stefan +Tad +Terrill +Thad +Thaddeus +Ulysses +Valentino +Von +Warner +Woody +Adan +Addison +Alec +Amos +Artie +Arvid +Brant +Buck +Caesar +Carrol +Chauncey +Clarke +Cornel +Coy +Cris +Crispin +Curtiss +Darell +Delfino +Delmar +Delmer +Diana +Efrain +Elizabeth +Ervin +Erwin +Fidencio +Fletcher +Freeman +Geoffry +Gerold +Geronimo +Gino +Glynn +Greggory +Hank +Harris +Hiram +Houston +Israel +Ivory +Jasper +Jefferey +Jeremy +Johnathan +Jules +Justin +Kimberly +Lannie +Lars +Lavern +Leif +Leonardo +Leonel +Linden +Loran +Lucky +Lyman +Melton +Mervin +Michial +Mikael +Modesto +Nils +Norris +Norton +Omar +Patricia +Porfirio +Quentin +Rance +Randel +Rayford +Rexford +Rob +Robb +Rockwell +Rollin +Rudolf +Rueben +Sabino +Sandra +Sebastian +Sherwood +Silas +Timmothy +Tino +Valentin +Vidal +Weldon +Whitney +Michael +Robert +John +David +James +Richard +William +Steven +Gary +Thomas +Mark +Ronald +Charles +Stephen +Daniel +Donald +Dennis +Kenneth +Larry +Paul +Gregory +Joseph +Edward +Timothy +Bruce +George +Douglas +Frank +Jeffrey +Patrick +Christopher +Anthony +Raymond +Lawrence +Jerry +Craig +Peter +Alan +Terry +Roger +Jack +Scott +Arthur +Gerald +Brian +Randy +Wayne +Danny +Joe +Dale +Stanley +Randall +Steve +Ralph +Henry +Philip +Glenn +Phillip +Eric +Keith +Albert +Martin +Kevin +Russell +Rodney +Manuel +Walter +Jose +Carl +Roy +Leonard +Andrew +Harold +Fred +Gilbert +Mike +Barry +Allen +Ernest +Louis +Victor +Eugene +Howard +Frederick +Norman +Johnny +Alfred +Lee +Samuel +Don +Harry +Dean +Clifford +Gordon +Rick +Ruben +Jesse +Micheal +Carlos +Jimmy +Dan +Jim +Jay +Chris +Curtis +Jon +Darrell +Marc +Ray +Theodore +Glen +Vincent +Melvin +Ronnie +Rudy +Tommy +Randolph +Mario +Tom +Leslie +Ricky +Tony +Billy +Lloyd +Juan +Kirk +Benjamin +Jeffery +Bill +Kim +Bradley +Edwin +Jonathan +Nicholas +Allan +Darryl +Marvin +Earl +Dana +Eddie +Gene +Jesus +Warren +Bobby +Raul +Ted +Neil +Duane +Kent +Antonio +Joel +Matthew +Francisco +Guy +Luis +Willie +Greg +Salvador +Karl +Laurence +Wesley +Francis +Bernard +Clyde +Jerome +Calvin +Clarence +Rickey +Rudolph +Rex +Alexander +Alvin +Armando +Mitchell +Dave +Fredrick +Kurt +Dwight +Leroy +Lester +Lonnie +Vernon +Stuart +Bob +Fernando +Lewis +Roberto +Alex +Arnold +Robin +Brent +Herbert +Miguel +Daryl +Lance +Leo +Lynn +Bryan +Floyd +Hector +Ross +Brad +Franklin +Louie +Jimmie +Ricardo +Tim +Christophe +Kerry +Ramon +Loren +Leon +Pete +Neal +Reginald +Bradford +Kelly +Pedro +Todd +Garry +Harvey +Jeff +Oscar +Geoffrey +Sam +Claude +Jess +Terrence +Clark +Randal +Terrance +Clinton +Gregg +Leland +Byron +Nick +Johnnie +Roland +Milton +Nathan +Marshall +Arturo +Lyle +Perry +Darrel +Max +Rene +Alfonso +Benny +Edmund +Grant +Sammy +Gabriel +Jorge +Rodger +Julian +Chester +Hugh +Ron +Andy +Sidney +Andre +Freddie +Herman +Maurice +Virgil +Alfredo +Ben +Cecil +Charlie +Edgar +Everett +Adrian +Cary +Clayton +Felix +Jan +Javier +Wallace +Stephan +Angel +Donnie +Nelson +Brett +Jackie +Lorenzo +Rocky +Terence +Delbert +Morris +Conrad +Ken +Malcolm +Myron +Roderick +Rodolfo +Christian +Dwayne +Ernie +Marcus +Vance +Derek +Enrique +Kenny +Lowell +Bert +Ernesto +Forrest +Frankie +Sheldon +Clifton +Nathaniel +Pat +Tracy +Willard +Aaron +Jaime +Jessie +Monte +Rickie +Sherman +Teddy +Edmond +Eduardo +Rafael +Wendell +Carlton +Casey +Denis +Ignacio +Jeffry +Kyle +Monty +Abel +Gerard +Jerald +Mickey +Rory +Sergio +Stewart +Archie +Ira +Oliver +Joey +Julio +Noel +Alberto +Clay +Doyle +Lionel +Marco +Phil +Preston +Wade +Al +Bennie +Hal +Jerrold +Michel +Sean +Troy +Pablo +Alejandro +Chuck +Dick +Guillermo +Elmer +Felipe +Guadalupe +Gustavo +Ivan +Joaquin +Kris +Reuben +Shawn +Tyrone +Dominic +Donn +Doug +Eldon +Harley +Ian +Luther +Marty +Nicolas +Owen +Val +Barney +Cruz +Emmett +Galen +Ismael +Jason +Marcos +Marion +Salvatore +Stan +Sterling +Vaughn +Xavier +Barton +Blake +Evan +Isaac +Jackson +Julius +Reynaldo +Spencer +Van +Andres +Carey +Cornelius +Curt +Denny +Eddy +Erik +Ervin +Jerold +Lane +Lindsay +Ned +Travis +Agustin +Angelo +Armand +Burt +Cory +Dane +Earnest +Gale +Horace +Miles +Murray +Rod +Russel +Simon +Vern +Ward +Blair +Dexter +Garland +Gerry +Homer +Hubert +Jacob +Lanny +Rogelio +Boyd +Buddy +Burton +Cesar +Corey +Derrick +Dirk +Elias +Ellis +Freddy +Geary +Humberto +Kit +Lon +Morgan +Rand +Royce +Tomas +Willis +Abraham +Adam +Alonzo +August +Bart +Bruno +Damon +Dee +Elton +Frederic +Garrett +Gregorio +Jean +Kip +Lauren +Mathew +Otis +Randell +Reed +Santiago +Terrell +Wilfred +Alton +Austin +Blaine +Cleveland +Danial +Dewayne +Drew +Emil +Grady +Jake +Jeremy +Lawerence +Luke +Mack +Matt +Nolan +Randolf +Shannon +Tommie +Alphonso +Aubrey +Bryant +Carter +Darnell +Darwin +Del +Duncan +Emilio +Fredric +Gus +Harrison +Hugo +Jefferson +Jody +Justin +Kenton +Kurtis +Nickolas +Orlando +Patricia +Reid +Santos +Stanton +Sylvester +Trinidad +Vicente +Wilson +Bud +Cedric +Colin +Dewey +Donovan +Fidel +Gilberto +Grover +Loyd +Mel +Nicky +Pierre +Randel +Raoul +Refugio +Rigoberto +Roman +Saul +Stacy +Stevan +Theron +Toby +Winston +Anton +Dallas +Dannie +Ed +Edwardo +Errol +Garth +Genaro +Hollis +Joesph +Kirby +Lonny +Lupe +Marcel +Mervin +Percy +Ramiro +Raymundo +Rudolfo +Ryan +Sandy +Sanford +Zachary +Amos +Artie +Augustine +Brant +Cameron +Carroll +Chad +Cris +Darell +Domingo +Douglass +Erwin +Gil +Irving +Jamie +Joshua +Kendall +Kermit +Kimball +Lamont +Leonardo +Levi +Merle +Rollin +Timmy +Verne +Woodrow +Alden +Arnulfo +Art +Bennett +Billie +Bobbie +Brandon +Brock +Carol +Cliff +Cornell +Dudley +Duke +Dwain +Dwaine +Elbert +Elliot +Elliott +Emery +Erick +Gonzalo +Harlan +Herschel +Jonathon +Junior +Kelley +Kelvin +Laurance +Leigh +Len +Lex +Lincoln +Lindsey +Lyman +Mariano +Marlin +Mitchel +Norris +Orville +Otto +Rexford +Ricki +Rolf +Rudolf +Rufus +Scot +Skip +Stanford +Tod +Truman +Von +Wilbert +Antone +Benito +Benson +Bernardo +Bernie +Bryce +Butch +Carlo +Chet +Clarke +Cody +Cole +Coy +Darold +Delmar +Denver +Dickie +Gerardo +Hans +Israel +Jere +Kennith +Kristopher +Linda +Lorin +Margarito +Marlon +Maynard +Mitch +Montgomery +Moses +Newton +Norbert +Octavio +Orin +Quentin +Riley +Rito +Robbie +Rodrigo +Rolland +Sammie +Stefan +Weldon +Wes +Wilbur +Adolfo +Adolph +Aurelio +Benedict +Booker +Bret +Britt +Bryon +Buster +Clement +Courtney +Curtiss +Dalton +Daryle +Davis +Dino +Dixon +Donnell +Donny +Earle +Efrain +Eli +Elmo +Esteban +Faustino +Federico +Garey +Judd +Kimberly +King +Lenard +Les +Merlin +Mickael +Milo +Myles +Patric +Regan +Reggie +Richardo +Ritchie +Rob +Rocco +Rolando +Ronny +Rosalio +Rosario +Rubin +Rusty +Susan +Sydney +Terrill +Unknown +Vince +Zane +Alford +Allyn +Alvino +Amador +Anthoney +Aron +Barbara +Barre +Barrett +Bertram +Bertrand +Blain +Blane +Brady +Brendan +Brenton +Caesar +Carmen +Carson +Catherine +Clemente +Cleve +Connie +Dann +Dante +Dario +Deborah +Delvin +Domenic +Duffy +Dustin +Efren +Eliseo +Eloy +Elvin +Elwood +Emanuel +Emile +Forest +Fransisco +Fritz +Gaylen +Gaylord +Giles +Gloria +Hank +Hayward +Hershel +Hiram +Houston +Ike +Irwin +Jacky +Jared +Jed +Jerel +Johnie +Jordan +Kathleen +Layne +Loran +Lyn +Lyndon +Mahlon +Major +Mauricio +Melvyn +Michale +Mikel +Millard +Moises +Nels +Niles +Noah +Noble +Odis +Pascual +Raymon +Reyes +Ric +Robbin +Roosevelt +Rosendo +Royal +Rudolpho +Shane +Solomon +Stevie +Taylor +Trevor +Will +Woody +Michael +Robert +John +David +James +Richard +William +Steven +Gary +Thomas +Mark +Charles +Daniel +Ronald +Stephen +Dennis +Donald +Kenneth +Paul +Larry +Gregory +Timothy +Joseph +Bruce +Edward +George +Jeffrey +Douglas +Frank +Patrick +Anthony +Christopher +Lawrence +Raymond +Craig +Randy +Peter +Jerry +Scott +Alan +Terry +Roger +Arthur +Jack +Danny +Gerald +Wayne +Brian +Kevin +Dale +Randall +Keith +Joe +Ralph +Stanley +Eric +Albert +Martin +Philip +Steve +Henry +Phillip +Glenn +Russell +Andrew +Carl +Victor +Manuel +Jose +Roy +Johnny +Walter +Rodney +Leonard +Harold +Allen +Ernest +Micheal +Louis +Rick +Fred +Gilbert +Frederick +Howard +Barry +Eugene +Samuel +Clifford +Jay +Mike +Norman +Lee +Dan +Ricky +Jon +Alfred +Don +Ruben +Glen +Chris +Curtis +Dean +Darrell +Gordon +Jimmy +Theodore +Harry +Ray +Kim +Jesse +Jeffery +Carlos +Vincent +Ronnie +Leslie +Randolph +Mario +Bradley +Jim +Benjamin +Marc +Marvin +Tommy +Tony +Bill +Matthew +Melvin +Earl +Rudy +Antonio +Kent +Billy +Guy +Tom +Juan +Kurt +Nicholas +Raul +Jonathan +Joel +Lloyd +Duane +Kirk +Bobby +Dana +Eddie +Rickey +Edwin +Francisco +Wesley +Warren +Brad +Gene +Karl +Willie +Calvin +Alexander +Jesus +Mitchell +Alvin +Neil +Fredrick +Vernon +Allan +Robin +Armando +Brent +Herbert +Alex +Bernard +Ted +Arnold +Luis +Ricardo +Ross +Rudolph +Darryl +Laurence +Francis +Dwight +Leroy +Ramon +Lance +Rex +Salvador +Franklin +Greg +Leo +Daryl +Christophe +Jerome +Clyde +Lester +Oscar +Gregg +Miguel +Bryan +Kelly +Bob +Neal +Roberto +Lewis +Todd +Terrence +Kerry +Leon +Garry +Harvey +Lynn +Dave +Clarence +Pete +Stuart +Loren +Floyd +Marshall +Lonnie +Fernando +Jeff +Rocky +Jess +Louie +Byron +Chester +Milton +Perry +Nick +Arturo +Jimmie +Reginald +Randal +Lyle +Hector +Johnnie +Roland +Claude +Geoffrey +Leland +Grant +Hugh +Maurice +Javier +Clayton +Aaron +Alfredo +Benny +Darrel +Felix +Ben +Bert +Bradford +Edmund +Gabriel +Nathan +Angel +Enrique +Jackie +Roderick +Sam +Tim +Julian +Rodger +Ron +Ernesto +Herman +Jorge +Sidney +Stewart +Freddie +Marcus +Max +Rafael +Everett +Jessie +Pedro +Rene +Delbert +Dwayne +Monte +Alfonso +Clark +Rodolfo +Virgil +Willard +Derek +Edgar +Ken +Cary +Clifton +Tracy +Casey +Clinton +Denis +Forrest +Myron +Wallace +Terence +Terrance +Alberto +Cecil +Donnie +Nelson +Stephan +Charlie +Brett +Jaime +Erik +Jan +Joey +Sean +Sergio +Frankie +Noel +Spencer +Wendell +Christian +Doyle +Guadalupe +Mickey +Sheldon +Troy +Wade +Adrian +Conrad +Ernie +Morris +Andre +Andy +Hal +Jerald +Sherman +Tyrone +Abel +Blake +Edmond +Kenny +Marco +Eduardo +Gerard +Ivan +Kris +Kyle +Lionel +Malcolm +Michel +Owen +Val +Ira +Lowell +Pat +Rickie +Vance +Clay +Felipe +Freddy +Jeffry +Julio +Monty +Rory +Sandy +Isaac +Jacob +Sammy +Marty +Van +Augustine +Barney +Boyd +Dane +Donn +Elmer +Evan +Ignacio +Jerrold +Lorenzo +Otis +Reuben +Al +Joaquin +Kit +Lane +Marion +Merle +Preston +Angelo +Archie +Curt +Dirk +Frederic +Ismael +Teddy +Willis +Carlton +Danial +Lon +Phil +Salvatore +Shawn +Eldon +Emilio +Garrett +Kendall +Lupe +Murray +Nathaniel +Reed +Tommie +Unknown +Xavier +Carey +Chuck +Dewayne +Dexter +Dick +Elias +Harlan +Horace +Pablo +Randell +Sanford +Toby +Wilbert +Andres +Bart +Buddy +Dewey +Fidel +Geary +Jackson +Marcos +Miles +Oliver +Ronny +Royce +Ryan +Tomas +Adam +Adolph +Bennie +Blaine +Del +Joesph +Luther +Morgan +Rogelio +Simon +Trinidad +Alejandro +Alton +Barton +Cruz +Gerry +Irving +Kelvin +Loyd +Mathew +Matt +Mitchel +Ramiro +Rand +Rod +Roman +Terrell +Blair +Brock +Colin +Dominic +Doug +Guillermo +Gus +Ian +Reynaldo +Robbie +Stan +Tod +Vaughn +Bennett +Denny +Fredric +Garland +Garth +Gilberto +Gustavo +Harley +Hubert +Jean +Leopoldo +Ned +Reid +Stevan +Alonzo +Armand +Austin +Bernardo +Bret +Cameron +Darwin +Drew +Edwardo +Elliott +Leonardo +Nolan +Scot +Ward +Agustin +Anton +Bryce +Corey +Earnest +Ed +Ellis +Emil +Emmett +Errol +Gale +Galen +Gregorio +Humberto +Jason +Jeremy +Nicolas +Santiago +Sylvester +Vern +Wilfred +Woodrow +Abraham +Bernie +Carson +Cornelius +Cory +Cris +Domingo +Dudley +Elvin +Jake +Jefferson +Kennith +Kip +Lauren +Lawerence +Orlando +Rodrigo +Rusty +Seth +Stanford +Wilbur +Will +Benito +Brady +Bud +Carter +Charley +Cliff +Dallas +Derrick +Dickie +Douglass +Emery +Erich +Gonzalo +Grady +Grover +Hugo +Irvin +Israel +Justin +Lonny +Moises +Rigoberto +Sterling +Travis +Vince +Von +Wilson +Zachary +Adolfo +Alphonso +Art +Aubrey +August +Burt +Cesar +Dannie +Darnell +Elwood +Federico +Fritz +Genaro +Gerardo +Gil +Hank +Hans +Homer +Isidro +Kimberly +Kirby +Kurtis +Lanny +Lindsay +Marlon +Mikel +Pierre +Rolando +Roscoe +Rudolfo +Rufus +Russel +Stanton +Alec +Burton +Carroll +Dee +Donal +Donovan +Duke +Elbert +Elton +Ervin +Florencio +Garey +Kermit +Laurance +Lawrance +Michale +Norris +Orville +Otto +Rito +Rolf +Rosendo +Saul +Theadore +Timmy +Tyler +Vicente +Arne +Aurelio +Brant +Brice +Brion +Butch +Chip +Cleveland +Damon +Eddy +Edmundo +Forest +Fransisco +Houston +Jeremiah +Jerold +Jody +Johnie +Jonathon +Kirt +Lamar +Lesley +Luke +Mel +Milo +Nicky +Noah +Patricia +Reese +Riley +Roosevelt +Rudolf +Sal +Santos +Shannon +Terrill +Wally +Winston +Ysidro +Abelardo +Alden +Alvino +Antone +Antony +Arden +Artie +Bradly +Brandon +Bryant +Carleton +Carlo +Chad +Clarke +Cornell +Courtney +Darcy +Dennie +Doran +Duncan +Dwain +Earle +Elliot +Emanuel +Erick +Farrell +Gearld +Gino +Harrison +Herb +Irwin +Jamie +Jefferey +Joshua +Julius +Kathy +Kelley +Kenton +Kraig +Leigh +Len +Lindsey +Lino +Lorin +Newell +Noe +Omar +Percy +Prince +Randi +Randolf +Refugio +Reyes +Robbin +Rodrick +Ronaldo +Royal +Rueben +Shelton +Stacey +Taylor +Teodoro +Thaddeus +Vernell +Wiley +Alonso +Alvaro +Amador +Artis +Augustin +Basil +Bobbie +Brooks +Carmelo +Cedric +Cody +Cordell +Cort +Coy +Cristobal +Darren +Deryl +Dominick +Dorian +Dwane +Elden +Erwin +Florentino +Freeman +Gail +Gayle +Gaylord +Gorge +Greig +Jordan +Judson +Lamont +Lars +Layne +Lazaro +Leif +Levi +Linda +Loy +Luciano +Mariano +Mauricio +Maximino +Merlin +Michele +Montgomery +Napoleon +Nickolas +Norbert +Patric +Quentin +Raoul +Raymon +Reymundo +Ric +Rupert +Scotty +Sebastian +Shane +Shelby +Skip +Solomon +Sonny +Stefan +Stevie +Theron +Truman +Vincente +Addison +Alexandro +Anson +Arlen +Arnulfo +Audie +Barrett +Benedict +Blane +Britt +Bruno +Buck +Caesar +Carmen +Carol +Claudio +Clint +Cole +Connie +Conrado +Dalton +Damian +Darel +Darell +Dario +Davie +Delfino +Delmer +Devin +Dino +Drake +Dwaine +Efren +Eldridge +Emile +Ezequiel +Fabian +Farrel +Feliciano +Filiberto +German +Godfrey +Hilario +Howell +Hunter +Ivory +Jayme +Jere +Jerrell +Josh +Kathleen +Kennard +Kimball +Kristopher +Lannie +Lansing +Lenard +Lex +Linn +Llewellyn +Lucio +Lyman +Marcelino +Marcelo +Marlin +Matias +Merrill +Merritt +Michal +Montie +Moses +Nash +Neill +Oren +Orval +Parker +Philippe +Primo +Ramond +Randle +Renee +Richardo +Ricki +Rob +Robyn +Rocco +Russ +Stacy +Susan +Tad +Thad +Thurman +Timmothy +Tino +Tito +Trevor +Verne +Wendel +Wilford +Willam +Wilmer +Michael +Robert +David +John +James +Richard +Steven +William +Gary +Thomas +Mark +Daniel +Ronald +Charles +Donald +Kenneth +Paul +Stephen +Dennis +Gregory +Joseph +Larry +Jeffrey +Timothy +Edward +George +Bruce +Douglas +Frank +Anthony +Raymond +Patrick +Scott +Randy +Craig +Lawrence +Christopher +Peter +Terry +Jerry +Brian +Roger +Kevin +Arthur +Alan +Jack +Gerald +Dale +Danny +Wayne +Joe +Philip +Martin +Rodney +Ralph +Keith +Carl +Randall +Steve +Stanley +Jose +Phillip +Eric +Henry +Russell +Glenn +Andrew +Albert +Roy +Rick +Manuel +Victor +Walter +Louis +Ernest +Ricky +Allen +Johnny +Harold +Micheal +Fred +Gilbert +Jon +Leonard +Mike +Curtis +Barry +Clifford +Jay +Vincent +Jeffery +Ruben +Brad +Bradley +Dean +Frederick +Samuel +Howard +Don +Eugene +Alfred +Norman +Jesse +Lee +Dan +Tony +Marc +Gordon +Jimmy +Carlos +Darrell +Theodore +Ray +Leslie +Ronnie +Jim +Mario +Chris +Harry +Glen +Rickey +Jonathan +Benjamin +Billy +Melvin +Matthew +Kim +Kirk +Dana +Earl +Nicholas +Guy +Kent +Marvin +Randolph +Robin +Bobby +Antonio +Mitchell +Tommy +Juan +Duane +Eddie +Kurt +Tom +Edwin +Raul +Francisco +Lloyd +Bill +Jesus +Vernon +Rudy +Gene +Joel +Ricardo +Karl +Luis +Brent +Jerome +Calvin +Darryl +Warren +Francis +Armando +Ross +Ted +Wesley +Alexander +Dwight +Neil +Willie +Allan +Bryan +Salvador +Greg +Jeff +Lonnie +Bernard +Daryl +Fernando +Leroy +Leo +Lester +Lance +Clarence +Kelly +Stuart +Franklin +Todd +Rex +Alvin +Ramon +Bob +Fredrick +Laurence +Floyd +Herbert +Clyde +Louie +Christophe +Rudolph +Miguel +Bradford +Garry +Roberto +Roland +Arnold +Dave +Pete +Randal +Leon +Alex +Byron +Gregg +Hector +Reginald +Felix +Harvey +Kerry +Rocky +Lynn +Edmund +Neal +Oscar +Arturo +Marshall +Perry +Pedro +Rodger +Terrence +Loren +Gabriel +Geoffrey +Jimmie +Maurice +Terrance +Grant +Sam +Tim +Nick +Benny +Herman +Lyle +Javier +Jess +Jorge +Leland +Marcus +Freddie +Jackie +Milton +Shawn +Ron +Alfonso +Ben +Claude +Enrique +Roderick +Alfredo +Johnnie +Lewis +Andre +Dwayne +Nathan +Derek +Hugh +Max +Rene +Tyrone +Aaron +Cecil +Darrel +Chester +Everett +Sean +Rafael +Virgil +Adrian +Angel +Clark +Ernie +Jeffry +Rickie +Terence +Clinton +Guadalupe +Stephan +Troy +Jaime +Julian +Sidney +Wallace +Denis +Donnie +Vance +Wade +Cary +Jessie +Myron +Edgar +Rodolfo +Sammy +Clayton +Forrest +Wendell +Christian +Delbert +Ernesto +Ken +Abel +Alberto +Monte +Rory +Tracy +Andy +Clifton +Frankie +Jan +Stewart +Brett +Charlie +Lorenzo +Conrad +Morris +Preston +Gerry +Jerald +Jerrold +Malcolm +Doyle +Erik +Ivan +Joey +Jacob +Mickey +Teddy +Edmond +Ignacio +Lowell +Nelson +Blaine +Lionel +Casey +Jamie +Kenny +Boyd +Clay +Eduardo +Gerard +Hal +Michel +Pat +Van +Willard +Andres +Angelo +Bennie +Carey +Felipe +Freddy +Gustavo +Marco +Wilbert +Archie +Colin +Curt +Jason +Lane +Lon +Marty +Travis +Val +Dexter +Donn +Kyle +Nathaniel +Sergio +Sherman +Dirk +Earnest +Ellis +Gerardo +Guillermo +Ian +Monty +Noel +Otis +Reed +Sheldon +Xavier +Derrick +Evan +Miles +Augustine +Bert +Blake +Dane +Denny +Kirby +Luther +Mathew +Rusty +Ward +Al +Blair +Chuck +Elias +Frederic +Fredric +Ira +Isaac +Joaquin +Oliver +Salvatore +Stan +Sylvester +Tomas +Barney +Buddy +Dario +Dewayne +Dominic +Doug +Fidel +Humberto +Kris +Marcos +Moses +Ramiro +Roosevelt +Spencer +Alejandro +Bryce +Carlton +Damon +Elliott +Emilio +Emmett +Garth +Kurtis +Merle +Nicolas +Rand +Reynaldo +Abraham +Adolph +Burton +Dick +Elmer +Julio +Loyd +Lupe +Marion +Mikel +Pablo +Simon +Toby +Barton +Cameron +Dannie +Gus +Harley +Ismael +Jeremy +Kit +Phil +Sterling +Vince +Adam +Alton +Brandon +Cesar +Dell +Hans +Homer +Irving +Jerold +Lindsay +Lonny +Orlando +Owen +Rod +Ryan +Vern +Zachary +Alonzo +Bart +Danial +Del +Duncan +Eldon +Grover +Hubert +Murray +Randell +Reid +Rudolfo +Shane +Stevie +Vaughn +Willis +Wilson +Brooks +Burt +Cedric +Chad +Cliff +Drew +Emery +Federico +Geary +Gil +Jean +Joesph +Jordan +Justin +Kelvin +Kimberly +Matt +Otto +Rogelio +Wilbur +Will +Bernardo +Bud +Dallas +Darwin +Emil +Garland +Gilberto +Julius +Kip +Kraig +Lenard +Myles +Randel +Reuben +Riley +Royce +Sandy +Tod +Wilfred +Armand +Art +Bryant +Cornell +Cory +Dino +Fritz +Horace +Lanny +Lorin +Mel +Nolan +Robbie +Russel +Sanford +Scot +Shannon +Skip +Stanton +Timmy +Winston +Adolfo +Agustin +Aurelio +Benito +Billie +Carter +Corey +Darnell +Dewey +Ed +Eddy +Elton +Erick +Harlan +Jacques +Jody +Mitchel +Nickolas +Pierre +Ronny +Rufus +Santiago +Stevan +Unknown +Vicente +Anton +Arlen +Bret +Cal +Cleveland +Clint +Dee +Delmar +Douglass +Dudley +Duke +Galen +Harmon +Jefferson +Jonathon +Joshua +Kermit +Marcelino +Marlin +Ned +Patricia +Russ +Seth +Trinidad +Alphonso +Aubrey +Desmond +Donny +Elvin +Emile +Errol +Ervin +Erwin +Gaylord +Genaro +Gino +Hank +Jackson +Johnie +Kelley +Kendall +Kennith +Leopoldo +Lucio +Mack +Nicky +Orville +Percy +Rob +Robbin +Roman +Sammie +Santos +Shaun +Sonny +Tommie +Trent +Tyler +Valentino +Vito +Wiley +Alden +Antony +Carroll +Cordell +Cornelius +Cruz +Dominick +Efren +Elbert +Esteban +Gale +Garrett +Grady +Greggory +Gregorio +Harrison +Hiram +Hugo +Lawrance +Morgan +Norris +Octavio +Randolf +Reyes +Rocco +Rodrick +Rolando +Roscoe +Royal +Solomon +Stacy +Terrill +Ulysses +Vernell +August +Bennett +Bobbie +Bradly +Brock +Bruno +Courtney +Curtiss +Donnell +Drake +Eliseo +Elliot +Gail +Glynn +Gonzalo +Hilario +Irvin +Jacky +Jake +Jed +Jefferey +Leif +Leigh +Lincoln +Maria +Mariano +Maynard +Mervin +Michale +Nels +Refugio +Regan +Reggie +Sherwood +Sydney +Weldon +Wynn +Zane +Amado +Antone +Arnulfo +Audie +Augustin +Brendan +Claudio +Clemente +Dann +Darold +Domingo +Dwain +Dwaine +Fermin +Forest +Geoff +Gerold +Jeremiah +Kirt +Larwence +Levi +Linda +Linden +Lindsey +Luke +Lyman +Merlin +Merritt +Moises +Norberto +Ollie +Orin +Patric +Randle +Raoul +Raphael +Raymon +Ricci +Ricki +Rigoberto +Robby +Rock +Roderic +Rollin +Rubin +Sandra +Shelby +Thaddeus +Theadore +Tracey +Verne +Werner +Woodrow +Woody +Wyatt +Ambrose +Amos +Arden +Arlin +Blaise +Brant +Brien +Britt +Bryon +Buck +Caesar +Carlo +Cecilio +Chauncey +Clair +Clancy +Cleve +Collin +Dante +Deborah +Delfino +Derrell +Derwin +Donovan +Dusty +Edwardo +Elden +Felton +Fletcher +Fransisco +Hollis +Jere +Jules +Kimball +Lamont +Lamonte +Lauren +Lawerence +Layne +Len +Leonardo +Les +Lucas +Marciano +Marlon +Maxwell +Millard +Napoleon +Norbert +Omar +Parker +Raymundo +Reynold +Richardo +Rockey +Rogers +Rolf +Rolland +Rosalio +Rosendo +Rudolf +Rueben +Sal +Scotty +Sebastian +Stefan +Susan +Terrell +Thor +Truman +Ty +Ubaldo +Von +Warner +Welton +Wilford +Winfred +Ysidro +Alvaro +Amador +Anthoney +Arlie +Arne +Artie +Artis +Austin +Barbara +Basil +Basilio +Benedict +Benton +Blane +Brenton +Broderick +Carleton +Carmen +Carson +Charley +Chip +Cipriano +Clement +Cleo +Clete +Cody +Cornelio +Darell +Darryle +Debra +Devin +Dion +Dixon +Donell +Dorian +Duff +Ector +Edison +Emmitt +Emory +Erich +Ezequiel +Ford +Freeman +Gearld +German +Godfrey +Gorge +Graham +Harris +Hilton +Hoyt +Hunter +Israel +Ivory +Jasper +Jock +Junior +Karen +Kenton +King +Kristopher +Laine +Laird +Lamar +Laurance +Laurie +Laverne +Lemuel +Lex +Logan +Loran +Lucius +Lyn +Mac +Macario +Major +Margarito +Mauricio +Mauro +Maximo +Mckinley +Milo +Mitch +Morton +Nat +Nevin +Noble +Odis +Olin +Orrin +Quentin +Raynaldo +Reese +Rhett +Ric +Richie +Ritchie +Rodrigo +Ronaldo +Roque +Rosario +Rowland +Samual +Stanford +Tad +Thad +Thom +Timmothy +Valente +Vic +Wayman +Wes +Whitney +Michael +Robert +David +John +James +Richard +Steven +William +Mark +Thomas +Gary +Daniel +Ronald +Charles +Paul +Donald +Kenneth +Stephen +Jeffrey +Gregory +Dennis +Joseph +Timothy +Larry +Edward +George +Bruce +Douglas +Scott +Anthony +Kevin +Frank +Patrick +Raymond +Randy +Craig +Terry +Brian +Lawrence +Peter +Christopher +Jerry +Alan +Arthur +Wayne +Danny +Roger +Jack +Keith +Gerald +Dale +Joe +Stanley +Carl +Ralph +Steve +Jose +Russell +Glenn +Philip +Andrew +Eric +Rodney +Randall +Rick +Martin +Henry +Albert +Phillip +Jon +Walter +Ricky +Manuel +Jeffery +Roy +Victor +Ernest +Barry +Mike +Johnny +Fred +Micheal +Gilbert +Bradley +Harold +Curtis +Leonard +Allen +Ruben +Louis +Frederick +Eugene +Samuel +Vincent +Brad +Howard +Jay +Dan +Matthew +Don +Darrell +Tony +Glen +Jesse +Marc +Gordon +Jimmy +Alfred +Carlos +Clifford +Dean +Norman +Ray +Jonathan +Lee +Ronnie +Billy +Mario +Jim +Dana +Theodore +Rickey +Guy +Harry +Bill +Kirk +Bobby +Chris +Mitchell +Nicholas +Kim +Randolph +Tom +Earl +Kurt +Antonio +Juan +Robin +Melvin +Benjamin +Rudy +Kent +Edwin +Wesley +Tommy +Eddie +Duane +Leslie +Warren +Bryan +Francisco +Marvin +Joel +Ricardo +Raul +Gene +Calvin +Ted +Neil +Darryl +Jesus +Karl +Daryl +Lloyd +Armando +Todd +Luis +Bernard +Ramon +Brent +Jerome +Allan +Vernon +Lance +Franklin +Alvin +Leo +Stuart +Fernando +Alexander +Roberto +Willie +Jeff +Ross +Garry +Oscar +Francis +Salvador +Dwight +Neal +Greg +Alex +Rex +Clarence +Kerry +Lonnie +Gregg +Herbert +Loren +Leon +Miguel +Leroy +Marcus +Geoffrey +Harvey +Bob +Fredrick +Kelly +Lester +Terrence +Arnold +Reginald +Randal +Christophe +Lewis +Tim +Byron +Lynn +Ron +Louie +Jimmie +Grant +Perry +Rocky +Laurence +Marshall +Dave +Gabriel +Chester +Floyd +Roland +Hector +Rudolph +Bradford +Alfonso +Rene +Terrance +Clyde +Milton +Pete +Johnnie +Maurice +Pedro +Brett +Jorge +Rafael +Jess +Leland +Nick +Sean +Dwayne +Nathan +Ben +Dirk +Arturo +Lyle +Jeffry +Shawn +Roderick +Rodger +Clayton +Herman +Sam +Andre +Jackie +Jan +Stephan +Clark +Felix +Wallace +Angel +Darrel +Freddie +Hugh +Benny +Cecil +Aaron +Everett +Delbert +Enrique +Garth +Sidney +Edgar +Forrest +Jaime +Max +Sergio +Wade +Casey +Jessie +Alfredo +Edmund +Frankie +Ken +Rory +Terence +Andy +Cary +Julian +Lorenzo +Alberto +Clinton +Donnie +Ernesto +Javier +Troy +Tyrone +Wendell +Rodolfo +Marty +Virgil +Claude +Myron +Rickie +Charlie +Denis +Derek +Guillermo +Monte +Stewart +Willard +Abel +Jerald +Joey +Malcolm +Marco +Clifton +Curt +Gerard +Nathaniel +Christian +Guadalupe +Tracy +Clay +Jason +Sheldon +Adrian +Conrad +Mickey +Nelson +Van +Edmond +Morris +Ernie +Kris +Vance +Erik +Isaac +Jerrold +Julio +Shane +Ivan +Miles +Sammy +Bennie +Doyle +Kenny +Barney +Derrick +Ed +Jacob +Oliver +Preston +Vern +Al +Cameron +Marcos +Monty +Alejandro +Angelo +Bert +Blaine +Dexter +Hal +Ira +Marion +Noel +Otis +Reynaldo +Teddy +Buddy +Felipe +Galen +Ian +Michel +Owen +Ronny +Abraham +Carlton +Dewayne +Pat +Phil +Sherman +Blair +Dane +Danial +Evan +Gilberto +Kelvin +Kyle +Lionel +Lon +Mathew +Rod +Stan +Sylvester +Colin +Corey +Cornelius +Damon +Marlon +Nicolas +Ramiro +Stevan +Adam +Adolph +Archie +Brandon +Carey +Cory +Doug +Elmer +Emilio +Harlan +Ignacio +Ismael +Robbie +Scot +Tommie +Travis +Blake +Del +Donn +Gustavo +Kip +Matt +Mitchel +Reed +Salvatore +Alton +Barton +Bennett +Chad +Federico +Gerry +Harley +Lowell +Rand +Roman +Sandy +Tomas +Bret +Cesar +Eduardo +Fredric +Geary +Gus +Lane +Merle +Reuben +Royce +Vince +Boyd +Darwin +Elias +Freddy +Garrett +Gerardo +Homer +Humberto +Joaquin +Kelley +Lonny +Luther +Ned +Raymundo +Rudolfo +Rusty +Unknown +Armand +Chuck +Dewey +Domingo +Eddy +Frederic +Horace +Jefferson +Joesph +Julius +Kendall +Kenton +Morgan +Reid +Ryan +Shannon +Spencer +Sterling +Trinidad +Wilbert +Will +Zachary +Adolfo +Eldon +Hans +Jody +Marlin +Murray +Nicky +Pierre +Randell +Rigoberto +Rob +Vaughn +Ward +Xavier +Alonzo +Augustine +Benito +Cole +Denny +Dominic +Duncan +Dwain +Earnest +Ervin +Lenny +Leonardo +Lupe +Orlando +Percy +Rogelio +Toby +Andres +Aubrey +Bart +Bryant +Burt +Burton +Carter +Dick +Drew +Duke +Elliott +Ellis +Grady +Gregorio +Hubert +Jamie +Jonathon +Jordan +Joshua +Justin +Kirby +Loyd +Orville +Simon +Britt +Gil +Hugo +Lanny +Lawerence +Mel +Mikel +Moses +Nolan +Otto +Pablo +Riley +Sanford +Santiago +Sonny +Wilbur +Willis +Wilson +Winston +Woodrow +Alvaro +Antony +Brady +Cris +Dallas +Darell +Donny +Efrain +Efren +Faustino +Fidel +Irvin +Jacques +Kimberly +Kurtis +Lenard +Lex +Patricia +Rolando +Shaun +Stanton +Timmy +Austin +Bernie +Bryon +Cedric +Cliff +Clint +Cody +Emil +Erick +Garland +Hank +Jake +Jerold +Leopoldo +Lindsay +Lorin +Refugio +Ricci +Rufus +Skip +Stacy +Timmothy +Val +Vicente +Arlen +Audie +Barrett +Bradly +Bryce +Caesar +Dann +Dino +Elbert +Elton +Gale +Gonzalo +Greggory +Irving +Irwin +Jean +Jeremy +Kermit +Kimball +Kit +Lamont +Lindsey +Mack +Marcelino +Michale +Milo +Patric +Randel +Roosevelt +Royal +Rueben +Russ +Russel +Santos +Seth +Stefan +Tod +Trent +Wally +Wiley +Wilfred +Agustin +Alphonso +Aurelio +Bernardo +Brock +Cleve +Darnell +Davis +Dusty +Elwood +Erwin +Forest +Hollis +Israel +Jed +Layne +Lincoln +Lou +Michal +Raphael +Reyes +Robbin +Robby +Rock +Rosendo +Saul +Stanford +Thaddeus +Von +Weldon +Allyn +Antone +Arnulfo +Art +August +Brant +Brendan +Brooks +Buck +Cal +Carroll +Charley +Cornell +Courtney +Cruz +Diego +Donnell +Donovan +Dudley +Dwaine +Eliseo +Emanuel +Emery +Emmett +Emory +Errol +Esteban +Franklyn +Fransisco +Garold +Heriberto +Hunter +Jared +Jefferey +Junior +Kennith +Kraig +Leif +Merrill +Mitch +Norbert +Norris +Octavio +Rahn +Rocco +Thurman +Tyler +Vic +Alden +Aldo +Alec +Basil +Billie +Blane +Bobbie +Burl +Chet +Clarke +Clemente +Coy +Daren +Delmar +Demetrio +Demetrius +Donal +Douglass +Edwardo +Elvin +Emerson +Farrell +Florencio +Florentino +Fritz +Garrick +Gavin +German +Graham +Hershel +Isidro +Jackson +Jasper +Johnie +Lawrance +Les +Lesley +Lorne +Marcel +Mary +Merritt +Michele +Natividad +Nils +Olen +Raoul +Reese +Rodrick +Rodrigo +Rolf +Sammie +Solomon +Susan +Warner +Amador +Anderson +Anton +Armondo +Brandt +Bud +Butch +Carmen +Carson +Cecilio +Chauncey +Danniel +Dante +Dario +Dee +Derwin +Drake +Dustin +Earle +Edmundo +Eli +Gayle +Gearld +Huey +Ivory +Jeremiah +Karen +Lamar +Larwence +Laurance +Linda +Mauro +Montgomery +Napoleon +Newton +Nickolas +Odell +Paige +Quentin +Raymon +Renard +Rey +Reynold +Ricki +Ritchie +Roddy +Roscoe +Salvadore +Scotty +Tad +Terrell +Terrill +Theadore +Ty +Valentin +Valentino +Amado +Angus +Arlan +Armond +Artie +Benedict +Bertrand +Blaise +Boyce +Brien +Brooke +Bruno +Burke +Candelario +Celestino +Charlton +Christen +Clement +Dannie +Darcy +Darrol +Delton +Desmond +Dixon +Dolores +Dwane +Eldridge +Elliot +Eloy +Elwin +Ethan +Ezra +Fermin +Fredrik +Gail +Garret +Genaro +Gerhard +Gerold +Gifford +Gino +Glendon +Harmon +Hayward +Henri +Hilario +Horacio +Hoyt +Isidoro +Jacque +Jennifer +Jere +Joan +Johnathan +Jules +Kai +Kenney +Kenyon +Laird +Lars +Lary +Laverne +Lenord +Levi +Lucien +Lucky +Lyn +Manny +Mariano +Marlo +Mason +Merlin +Moises +Montie +Morton +Nels +Niel +Noble +Norberto +Octaviano +Ollie +Omar +Randle +Randolf +Raynaldo +Regan +Reggie +Rennie +Rito +Robb +Rohn +Rolland +Rosario +Rowland +Rudolf +Rudolpho +Sebastian +Stevie +Sydney +Terrel +Thad +Tor +Vidal +Vito +Winfred +Wynn +Zane +Michael +David +Robert +John +James +Richard +Steven +Mark +William +Thomas +Daniel +Gary +Ronald +Paul +Kenneth +Donald +Charles +Gregory +Jeffrey +Stephen +Timothy +Joseph +Dennis +Larry +Edward +George +Bruce +Douglas +Kevin +Scott +Anthony +Randy +Frank +Craig +Patrick +Brian +Christopher +Raymond +Terry +Peter +Lawrence +Alan +Keith +Jerry +Arthur +Danny +Roger +Eric +Dale +Russell +Steve +Jack +Joe +Martin +Gerald +Wayne +Rodney +Andrew +Jeffery +Randall +Ralph +Carl +Jose +Rick +Henry +Glenn +Phillip +Albert +Philip +Victor +Stanley +Roy +Ricky +Micheal +Manuel +Walter +Mike +Jon +Matthew +Curtis +Johnny +Barry +Ernest +Gilbert +Howard +Vincent +Bradley +Harold +Leonard +Louis +Samuel +Darrell +Jay +Ruben +Eugene +Allen +Jesse +Tony +Marc +Fred +Frederick +Ronnie +Alfred +Dan +Clifford +Jonathan +Norman +Don +Dean +Lee +Brad +Jimmy +Chris +Jim +Kim +Ray +Carlos +Mario +Billy +Kirk +Glen +Marvin +Mitchell +Tom +Kurt +Bill +Gordon +Theodore +Benjamin +Dana +Bobby +Jeff +Raul +Guy +Eddie +Harry +Melvin +Randolph +Bryan +Kent +Antonio +Joel +Duane +Earl +Leslie +Wesley +Karl +Ricardo +Greg +Lloyd +Rickey +Jesus +Rudy +Tommy +Robin +Ted +Warren +Luis +Juan +Brent +Gene +Calvin +Nicholas +Lance +Vernon +Edwin +Todd +Kelly +Darryl +Allan +Dave +Gregg +Armando +Tim +Francisco +Daryl +Ross +Neil +Alex +Alexander +Leo +Fernando +Salvador +Jerome +Oscar +Francis +Miguel +Herbert +Bernard +Alvin +Reginald +Willie +Bob +Clarence +Fredrick +Randal +Leon +Leroy +Stuart +Roberto +Franklin +Lonnie +Arnold +Roland +Christophe +Dwight +Rex +Terrence +Byron +Rudolph +Garry +Rene +Ron +Floyd +Perry +Clyde +Lester +Neal +Hector +Kerry +Marshall +Geoffrey +Rocky +Lewis +Jorge +Ramon +Harvey +Johnnie +Louie +Marcus +Gabriel +Jaime +Laurence +Bradford +Terrance +Grant +Sean +Jess +Lynn +Arturo +Clifton +Delbert +Maurice +Wade +Pete +Alfonso +Brett +Loren +Sam +Lyle +Pedro +Aaron +Joey +Darrel +Dwayne +Jackie +Andre +Andy +Gerard +Herman +Ken +Clark +Marty +Nick +Sidney +Alfredo +Claude +Derek +Edgar +Rafael +Stephan +Tracy +Cary +Casey +Corey +Kenny +Willard +Ben +Everett +Hugh +Julian +Max +Roderick +Chester +Clay +Derrick +Felix +Freddie +Leland +Milton +Terence +Enrique +Ernie +Donnie +Erik +Jessie +Shawn +Wendell +Angel +Clayton +Troy +Clinton +Dirk +Edmund +Jeffry +Jimmie +Rodger +Benny +Cecil +Javier +Jerald +Nathan +Scot +Adrian +Jan +Ivan +Rory +Stewart +Abel +Wallace +Alberto +Kris +Rodolfo +Tyrone +Denis +Doyle +Frankie +Marco +Bert +Forrest +Nathaniel +Sammy +Sergio +Carlton +Eduardo +Myron +Bart +Julio +Monte +Virgil +Conrad +Ernesto +Jason +Hal +Phil +Rickie +Rod +Sherman +Blake +Buddy +Christian +Guadalupe +Ian +Luther +Malcolm +Lorenzo +Pat +Sheldon +Xavier +Marlon +Bennie +Elmer +Kyle +Angelo +Cameron +Cory +Edmond +Guillermo +Ignacio +Kelvin +Preston +Charlie +Freddy +Garth +Lowell +Michel +Mickey +Donn +Doug +Eddy +Jacob +Matt +Reed +Shane +Alejandro +Darnell +Dominic +Hubert +Isaac +Nelson +Barney +Blaine +Curt +Dewayne +Jody +Marion +Monty +Noel +Stan +Vance +Al +Frederic +Gustavo +Kirby +Marcos +Rusty +Van +Armand +Duncan +Joesph +Carey +Chad +Dexter +Earnest +Elias +Felipe +Ismael +Lon +Orlando +Ramiro +Robbie +Ryan +Tomas +Vince +Zachary +Augustine +Kurtis +Morris +Oliver +Owen +Abraham +Adam +Alton +Cedric +Gerry +Humberto +Ira +Joshua +Reynaldo +Simon +Travis +Willis +Alonzo +Dane +Dewey +Domingo +Elliott +Emilio +Galen +Kimberly +Kip +Lane +Ronny +Andres +Archie +Dino +Duke +Jean +Mathew +Otis +Spencer +Stacy +Winston +Bret +Burt +Burton +Damon +Darwin +Harley +Jeremy +Royce +Russel +Salvatore +Sanford +Seth +Shannon +Vern +Bud +Drew +Emmett +Ervin +Evan +Fidel +Garrett +Hans +Merle +Morgan +Murray +Reuben +Sylvester +Teddy +Barton +Boyd +Chuck +Colin +Danial +Donovan +Ellis +Federico +Jamie +Lamont +Lionel +Marlin +Milo +Moises +Nicolas +Randolf +Toby +Val +Austin +Blair +Cesar +Denny +Ed +Edwardo +Elwood +Geary +Joaquin +Lindsey +Mikel +Ned +Rob +Rock +Santiago +Tad +Tommie +Unknown +Vicente +Wilson +Adolph +Davy +Del +Gerardo +Gil +Gilberto +Gregorio +Harlan +Jonathon +Kendall +Kennith +Lindsay +Mitch +Orville +Randell +Raymundo +Rudolfo +Sterling +Tod +Ty +Ward +Adolfo +Bernardo +Brady +Brant +Butch +Cliff +Dell +Dick +Elbert +Gino +Gus +Homer +Jerold +Jerrold +Kelley +Miles +Rand +Russ +Sandy +Wilbur +Wyatt +Zane +Art +Aurelio +Bryon +Damian +Eldon +Gearld +Irvin +Jed +Kit +Lanny +Mitchel +Pablo +Roscoe +Agustin +Alphonso +Arlen +Benito +Bennett +Brandon +Chip +Cornell +Cruz +Dallas +Edmundo +Efrain +Eliseo +Forest +Grady +Horace +Hugo +Jake +Jordan +Julius +Leigh +Michale +Nickolas +Otto +Reid +Rogelio +Saul +Shaun +Thad +Verne +Brendan +Debra +Dominick +Emil +Fletcher +Fredric +Garland +Jefferson +Johnie +Justin +Kevan +Les +Loyd +Mack +Nolan +Pierre +Randel +Roosevelt +Rosendo +Santos +Shelton +Timmy +Trent +Trinidad +Tyler +Weldon +Alden +Bryant +Bryce +Cleveland +Cole +Donnell +Donny +Drake +Dwain +Emanuel +Fritz +Harris +Irving +Irwin +Jackson +Jacques +Jared +Kenton +Lawerence +Lenard +Lonny +Lyndon +Merrill +Noah +Reggie +Ricki +Ritchie +Rolando +Roman +Sammie +Stacey +Stevan +Vaughn +Wally +Amos +Antone +Cris +Dann +Dario +Davis +Donal +Eli +Elvin +Erwin +Faustino +Genaro +Gonzalo +Greggory +Hiram +Jere +Lawrance +Layne +Lincoln +Logan +Moses +Myles +Nicky +Norbert +Raymon +Raynaldo +Ricci +Rolf +Skip +Stanford +Thor +Thurman +Valentino +Wilbert +Woodrow +Abelardo +Allyn +August +Barrett +Bertram +Bobbie +Brock +Carlo +Carter +Charley +Coleman +Cornelius +Deborah +Denver +Dustin +Dwaine +Fermin +Gale +Gavin +Israel +Kermit +Kieth +Kimball +Lamar +Lavern +Leighton +Lex +Lino +Mariano +Newton +Omar +Percy +Rey +Rigoberto +Robb +Roc +Rocco +Roque +Rueben +Sal +Stefan +Terrell +Thaddeus +Wiley +Aldo +Alvaro +Anton +Antony +Arne +Audie +Bernie +Blane +Bradly +Brice +Britt +Brooks +Buck +Burl +Cal +Carmen +Catarino +Chet +Clancy +Cordell +Coy +Curtiss +Daryll +Dee +Derald +Dorian +Douglass +Elton +Gerold +Isidro +Lauren +Lemuel +Leonardo +Lindon +Lorin +Luciano +Luke +Mac +Manny +Margarito +Maynard +Millard +Nels +Nils +Nino +Octavio +Odell +Porfirio +Prentice +Raphael +Refugio +Reyes +Rhett +Ric +Rodrigo +Romeo +Rufus +Tab +Trevor +Tye +Von +Wilford +Wilfred +Willam +Adan +Alec +Aubrey +Barron +Blas +Caesar +Candelario +Carroll +Clement +Clint +Cody +Crispin +Curley +Cynthia +Darell +Daren +Darold +Darren +Davey +Delmar +Derwin +Deryl +Desmond +Devon +Doran +Dwyane +Earle +Enrico +Erich +Erick +Errol +Esteban +Florentino +Franklyn +Garold +Garrick +Gaylord +Gorge +Graham +Grover +Hank +Hollis +Jasper +Jeffory +Keven +Kraig +Lavelle +Lesley +Lucas +Lucio +Lupe +Lyman +Marcel +Marcelo +Mauricio +Merlin +Mervin +Mickeal +Monroe +Norris +Odis +Ollie +Pascual +Porter +Prince +Reno +Reymundo +Richie +Rico +Riley +Robbin +Roderic +Rodrick +Rosario +Rubin +Scotty +Serafin +Serge +Stanton +Stevie +Teresa +Thane +Timmothy +Tino +Tito +Valentine +Vito +Wardell +Wes +Winfred +Woody +Alford +Amado +Ambrose +Anastacio +Arnoldo +Benton +Billie +Booker +Broderick +Buford +Cam +Candido +Carson +Cipriano +Clair +Clarke +Claud +Cleve +Corky +Cornelio +Corwin +Dannie +Danniel +Dante +Delmer +Dennie +Derrell +Dudley +Dusty +Dwane +Elliot +Eloy +Elvis +Emerson +Emmanuel +Ennis +Ethan +Felton +Fransisco +Hardy +Harmon +Herb +Herschel +Hobart +Isaias +Jacky +Jayme +Jefferey +Jens +Johnathan +Judd +Junior +Kai +Keenan +Kenney +Kirt +Lafayette +Lars +Lary +Leandro +Len +Levi +Lew +Linden +Lou +Loyal +Marcellus +Mary +Mason +Maury +Mel +Merritt +Montgomery +Napoleon +Narciso +Nash +Niels +Noble +Noe +Patricia +Quentin +Randi +Randle +Reese +Renee +Robby +Robinson +Rockey +Rollin +Sandra +Severo +Silverio +Silvestre +Sonny +Susan +Theron +Tobin +Truman +Vic +Walker +Walt +Warner +Wilburn +Will +Michael +David +Robert +John +James +Richard +Mark +Steven +William +Thomas +Daniel +Gary +Ronald +Paul +Donald +Kenneth +Charles +Timothy +Jeffrey +Gregory +Joseph +Stephen +Kevin +Scott +Larry +Edward +Brian +Dennis +Douglas +Anthony +Bruce +George +Randy +Frank +Raymond +Patrick +Peter +Craig +Christopher +Keith +Jerry +Terry +Alan +Lawrence +Russell +Steve +Danny +Eric +Arthur +Dale +Jack +Gerald +Joe +Martin +Mike +Wayne +Jeffery +Andrew +Ralph +Roger +Rodney +Rick +Matthew +Phillip +Randall +Carl +Glenn +Jose +Victor +Albert +Philip +Stanley +Henry +Ricky +Jon +Roy +Walter +Tony +Manuel +Curtis +Micheal +Darrell +Gilbert +Barry +Louis +Jay +Jim +Leonard +Samuel +Vincent +Johnny +Dean +Harold +Ernest +Bradley +Brad +Ruben +Ray +Fred +Allen +Chris +Don +Carlos +Jeff +Jimmy +Kirk +Jesse +Marc +Eugene +Howard +Dan +Glen +Mario +Frederick +Billy +Norman +Ronnie +Guy +Alfred +Lee +Clifford +Bryan +Kurt +Tom +Bill +Jonathan +Joel +Mitchell +Eddie +Greg +Benjamin +Duane +Bobby +Gordon +Tim +Marvin +Rickey +Robin +Theodore +Dana +Kent +Kim +Lance +Tommy +Dave +Melvin +Kelly +Karl +Todd +Wesley +Ricardo +Rudy +Antonio +Warren +Harry +Earl +Calvin +Raul +Armando +Leslie +Edwin +Nicholas +Lonnie +Stuart +Francisco +Ron +Gene +Vernon +Lloyd +Bob +Juan +Jesus +Brent +Darryl +Randolph +Gregg +Ted +Dwight +Alexander +Daryl +Allan +Luis +Alex +Neil +Perry +Alvin +Herbert +Willie +Salvador +Fernando +Jerome +Reginald +Ross +Byron +Clarence +Leroy +Fredrick +Randal +Rex +Clyde +Miguel +Lester +Francis +Ken +Freddie +Hector +Kerry +Leo +Oscar +Marcus +Leon +Maurice +Roberto +Geoffrey +Bernard +Garry +Rocky +Aaron +Floyd +Rene +Wade +Dwayne +Franklin +Grant +Joey +Arnold +Marty +Sam +Neal +Roland +Terrence +Nathan +Sean +Ramon +Christophe +Pedro +Derek +Lewis +Jimmie +Nick +Terrance +Jess +Pete +Rory +Arturo +Ernesto +Gabriel +Harvey +Andre +Andy +Rudolph +Bradford +Roderick +Shawn +Loren +Tracy +Marshall +Alfonso +Matt +Milton +Alfredo +Brett +Clinton +Jorge +Hugh +Javier +Johnnie +Laurence +Louie +Angel +Benny +Dirk +Jaime +Lynn +Charlie +Herman +Rafael +Terence +Clark +Jeffry +Leland +Lyle +Cary +Donnie +Gerard +Drew +Felix +Kenny +Chester +Doug +Troy +Casey +Claude +Clayton +Frankie +Jackie +Sammy +Ben +Ernie +Jason +Sheldon +Delbert +Edgar +Vance +Cecil +Corey +Edmund +Max +Stewart +Sidney +Chuck +Clay +Jerald +Tyrone +Virgil +Wallace +Wendell +Alberto +Cameron +Darrel +Erik +Abel +Christian +Everett +Myron +Phil +Rodolfo +Monte +Rodger +Stephan +Adrian +Derrick +Enrique +Guadalupe +Rickie +Denis +Jessie +Lorenzo +Mickey +Julian +Marco +Rod +Tomas +Nathaniel +Angelo +Bennie +Doyle +Forrest +Julio +Michel +Morris +Rusty +Sergio +Clifton +Al +Carlton +Guillermo +Ivan +Kelvin +Kris +Reed +Conrad +Eduardo +Willard +Blaine +Curt +Gustavo +Kyle +Orlando +Alejandro +Blake +Dane +Evan +Pat +Zachary +Cory +Jacob +Lionel +Lowell +Marlon +Monty +Rob +Shane +Freddy +Kendall +Mathew +Reynaldo +Ronny +Duncan +Gerry +Ignacio +Jan +Preston +Bart +Bert +Buddy +Morgan +Scot +Cliff +Ed +Felipe +Jamie +Lane +Malcolm +Robbie +Damon +Dexter +Elmer +Jody +Marion +Nelson +Sylvester +Dino +Donn +Hal +Hans +Ian +Ira +Noel +Ryan +Sterling +Adam +Andres +Barton +Ellis +Isaac +Kip +Miles +Oliver +Reid +Reuben +Russ +Santiago +Dominic +Edmond +Jerrold +Jonathon +Joshua +Luther +Marcos +Mitchel +Sherman +Toby +Archie +Art +Boyd +Colin +Dewayne +Elias +Ismael +Joaquin +Lon +Stan +Teddy +Adolfo +Audie +Clint +Frederic +Harley +Kirby +Merle +Murray +Ramiro +Randell +Simon +Wyatt +Brandon +Bryce +Cedric +Dallas +Eddy +Kurtis +Mikel +Pablo +Timmy +Tod +Van +Danial +Emilio +Fredric +Garrett +Justin +Nicolas +Sandy +Spencer +Vince +Abraham +Alonzo +Augustine +Bernie +Blair +Bryant +Carter +Denny +Dick +Earnest +Gus +Hubert +Jean +Luke +Mack +Owen +Roman +Royce +Shannon +Travis +Armand +Austin +Benito +Bret +Chad +Darnell +Darwin +Les +Lindsay +Rogelio +Saul +Vicente +Aubrey +Carey +Emmett +Garth +Gil +Kennith +Mitch +Roosevelt +Shaun +Stevan +Tyler +Vern +Alton +Barney +Broderick +Burton +Cris +Dwain +Genaro +Harlan +Julius +Keven +Lonny +Nickolas +Russel +Salvatore +Ward +Xavier +Brady +Cornell +Cruz +Dannie +Del +Efren +Fidel +Garland +Gilberto +Gino +Grady +Homer +Reggie +Seth +Stacy +Sydney +Tommie +Unknown +Wilson +Burt +Domingo +Edwardo +Greggory +Humberto +Irvin +Joesph +Marlin +Omar +Randel +Rich +Tad +Wally +Anton +Brooks +Bryon +Duke +Elliott +Erick +Faron +Gerardo +Len +Orville +Rodrick +Santos +Trent +Will +Willis +Zane +Alphonso +Billie +Bobbie +Britt +Bud +Cesar +Charley +Donnell +Dorian +Elbert +Eliseo +Elvis +Emanuel +Federico +Gregorio +Horace +Irving +Jared +Kenton +Kirt +Lamont +Lars +Loyd +Lupe +Merrill +Ned +Nolan +Norbert +Otis +Otto +Pierre +Raoul +Ric +Wilbur +Winston +Woodrow +Amos +Cal +Cornelius +Debra +Douglass +Edmundo +Elton +Errol +Erwin +Fritz +Gail +Gale +Johnie +Leigh +Lindsey +Lyndon +Maxwell +Rand +Raymundo +Reyes +Robb +Robby +Rock +Rolando +Sanford +Sonny +Stanton +Timmothy +Vaughn +Vito +Weldon +Adolph +Bennett +Brock +Carroll +Clement +Cole +Dewey +Dudley +Dusty +Eldon +Eli +Elliot +Emmanuel +Ervin +Freeman +Galen +Jefferey +Jerold +Johnathan +Jordan +Kimball +Kit +Kraig +Lenny +Leopoldo +Lorin +Mauricio +Moses +Nels +Nicky +Refugio +Rhett +Rufus +Ty +Val +Wilbert +Agustin +Aldo +Antony +August +Aurelio +Bernardo +Butch +Cyril +Damian +Dell +Devin +Drake +Dwaine +Efrain +Eloy +Elvin +Emery +Ethan +Fermin +Gavin +Geary +German +Gonzalo +Hugo +Jed +Jefferson +Jeremy +Kelley +Kevan +Kristopher +Leonardo +Lesley +Linda +Marcelino +Mary +Octavio +Paris +Renaldo +Rey +Riley +Rolf +Royal +Terrill +Trevor +Alec +Basil +Benson +Brion +Chip +Cleve +Cleveland +Coy +Curtiss +Dante +Darel +Davis +Donny +Donovan +Elmo +Emil +Erich +Esteban +Faustino +Forest +Garrick +Graham +Hank +Harrison +Jere +Lanny +Levi +Maynard +Murphy +Myles +Ollie +Robbin +Rudolfo +Sal +Sammie +Scotty +Stefan +Stevie +Susan +Woody +Amado +Amador +Andrea +Augie +Baron +Booker +Bradly +Brant +Bruno +Carleton +Carlo +Darell +Darold +Darren +Delvin +Desmond +Devon +Diane +Donaciano +Doran +Enrico +Everardo +Ezequiel +Gaylord +Grover +Huey +Irwin +Ivory +Jackson +Jacques +Jake +Jock +Josef +Kenney +Kimberly +Lamar +Lawrance +Lenard +Loran +Lyman +Macario +Mel +Millard +Monroe +Patric +Patricia +Percy +Quinn +Raphael +Renard +Reno +Rico +Ritchie +Rodrigo +Rolland +Rosalio +Skip +Thad +Thaddeus +Thor +Tito +Vic +Albino +Alden +Alexis +Allyn +Alonso +Andree +Anthoney +Antone +Arlan +Arlen +Artie +Barron +Berry +Blane +Brien +Buck +Chet +Coleman +Collin +Cynthia +Dayton +Dominick +Duff +Duwayne +Eldridge +Emory +Garey +Gerrit +Gunnar +Herschel +Hilario +Israel +Janet +Johnathon +Junior +Kerwin +Kory +Lary +Leif +Lino +Lucio +Mac +Marcel +Merl +Michal +Michale +Milo +Nils +Noah +Noe +Olin +Oran +Orin +Orrin +Porfirio +Quintin +Raynaldo +Ricki +Rito +Rocco +Rudolpho +Rueben +Shelby +Shelton +Solomon +Tab +Theron +Tino +Tracey +Valentin +Verne +Vincente +Wilford +Willam +Abe +Adan +Alvaro +Anastacio +Arden +Arnulfo +Barrett +Buster +Carmelo +Carol +Carson +Casimiro +Christen +Claudio +Cleo +Cordell +Cornel +Courtney +Cyrus +Daneil +Dann +Danniel +Dario +Davy +Deborah +Delmar +Delwin +Dionicio +Dwane +Earle +Edgardo +Eduard +Elden +Emerson +Eugenio +Farley +Farrell +Felton +Fernie +Foster +Fransisco +Gerold +Gill +Godfrey +Gorden +Granville +Heriberto +Hiram +Hobart +Hollis +Jacky +Janice +Kennard +Kern +King +Lavern +Lawerence +Layne +Leander +Lemuel +Lennie +Lex +Logan +Lou +Malcom +Margarito +Mariano +Mason +Mauro +Maxie +Merlin +Merlyn +Mervin +Mickel +Moises +Niel +Oren +Palmer +Parris +Pascual +Prince +Raleigh +Rance +Randolf +Reese +Rigoberto +Riki +Rodell +Rondy +Ronn +Roscoe +Salbador +Sebastian +Stacey +Stanford +Taylor +Terrel +Terrell +Timmie +Trinidad +Ulysses +Vernell +Warner +Wendel +Werner +Wilfred +Wilton +Winfred +Ysidro +Michael +David +Robert +John +James +Mark +Richard +Steven +William +Thomas +Daniel +Ronald +Gary +Paul +Kenneth +Donald +Charles +Gregory +Timothy +Kevin +Joseph +Jeffrey +Scott +Brian +Anthony +Stephen +Edward +Larry +Douglas +Dennis +Randy +George +Frank +Steve +Bruce +Christopher +Mike +Patrick +Raymond +Peter +Craig +Jerry +Keith +Eric +Terry +Danny +Lawrence +Joe +Alan +Russell +Dale +Rick +Arthur +Jeffery +Martin +Andrew +Gerald +Matthew +Jack +Jose +Ricky +Roger +Jim +Victor +Wayne +Phillip +Ralph +Rodney +Carl +Randall +Jeff +Glenn +Jon +Tony +Philip +Roy +Albert +Tom +Henry +Bill +Dan +Manuel +Greg +Johnny +Curtis +Micheal +Don +Gilbert +Vincent +Chris +Walter +Dean +Stanley +Ernest +Darrell +Louis +Leonard +Tim +Jay +Bradley +Allen +Ruben +Harold +Samuel +Carlos +Ray +Mitchell +Bryan +Ronnie +Fred +Barry +Kirk +Frederick +Norman +Marc +Eugene +Howard +Jimmy +Brad +Jesse +Alfred +Joel +Ron +Bob +Glen +Mario +Eddie +Dave +Billy +Bobby +Kurt +Guy +Clifford +Lee +Theodore +Gordon +Jonathan +Tommy +Juan +Kent +Dana +Kelly +Rudy +Harry +Brent +Raul +Rickey +Lance +Antonio +Marvin +Duane +Karl +Ken +Ricardo +Benjamin +Darryl +Ted +Earl +Todd +Robin +Luis +Jesus +Edwin +Vernon +Francisco +Warren +Armando +Calvin +Gregg +Melvin +Perry +Alexander +Randolph +Gene +Wesley +Alex +Daryl +Leslie +Nicholas +Lonnie +Willie +Lloyd +Neil +Salvador +Tracy +Miguel +Hector +Kim +Aaron +Allan +Fernando +Marty +Arnold +Randal +Andy +Jerome +Ross +Reginald +Alvin +Oscar +Doug +Leo +Bernard +Stuart +Leroy +Roberto +Herbert +Rex +Floyd +Sean +Clyde +Dwayne +Franklin +Brett +Neal +Ramon +Chuck +Francis +Fredrick +Gabriel +Pedro +Nick +Byron +Dwight +Kerry +Terrence +Matt +Garry +Cary +Marcus +Ben +Lyle +Roderick +Wade +Clarence +Derek +Jimmie +Andre +Javier +Roland +Shawn +Grant +Louie +Troy +Lester +Pete +Sam +Kyle +Rocky +Jaime +Clinton +Kenny +Geoffrey +Lewis +Alfonso +Leon +Arturo +Clayton +Benny +Nathan +Ernesto +Johnnie +Maurice +Freddie +Harvey +Edmund +Ernie +Rene +Marshall +Alfredo +Felix +Jorge +Phil +Laurence +Max +Clay +Joey +Lynn +Pat +Derrick +Leland +Mickey +Terrance +Angel +Christophe +Alberto +Enrique +Herman +Hugh +Curt +Darrel +Erik +Jess +Loren +Rafael +Monte +Clifton +Rudolph +Adrian +Bradford +Chester +Cory +Jessie +Scot +Casey +Milton +Cameron +Clark +Wendell +Cecil +Jerald +Dirk +Rod +Rory +Delbert +Ed +Sergio +Claude +Terence +Clint +Kris +Myron +Rodolfo +Charlie +Everett +Sidney +Vance +Donnie +Edgar +Rob +Rusty +Tyrone +Ryan +Corey +Eduardo +Jackie +Mitch +Rodger +Sheldon +Stephan +Stewart +Abel +Hal +Julian +Sammy +Julio +Monty +Robbie +Teddy +Wallace +Adam +Carey +Christian +Dane +Drew +Jamie +Morris +Nathaniel +Jason +Stan +Angelo +Edmond +Gerry +Ian +Marco +Mathew +Vince +Al +Conrad +Dino +Gerard +Preston +Bret +Evan +Forrest +Kelvin +Lorenzo +Shane +Frankie +Virgil +Alejandro +Dewayne +Doyle +Ivan +Jeffry +Reuben +Rickie +Carlton +Cliff +Elmer +Art +Elias +Felipe +Guillermo +Danial +Duncan +Kendall +Michel +Noel +Orlando +Ramiro +Reed +Reynaldo +Blake +Guadalupe +Gustavo +Malcolm +Owen +Russ +Bart +Bert +Cesar +Freddy +Jan +Augustine +Barney +Bennie +Garrett +Ira +Jody +Luther +Mitchel +Tomas +Buddy +Cedric +Isaac +Marcos +Nelson +Ronny +Spencer +Boyd +Dexter +Dick +Kip +Pablo +Wyatt +Xavier +Archie +Damon +Jordan +Les +Loyd +Sherman +Tad +Blaine +Darwin +Dominic +Fidel +Ignacio +Reid +Travis +Vern +Willard +Alton +Denny +Donn +Marlon +Russel +Stacy +Sterling +Zachary +Bud +Denis +Lane +Lionel +Lowell +Miles +Tod +Andres +Blair +Darnell +Hugo +Jean +Joshua +Julius +Kurtis +Royce +Shaun +Wilfred +Anton +Bennett +Billie +Colin +Del +Eddy +Gerardo +Gil +Humberto +Jacob +Joaquin +Justin +Pierre +Toby +Adolfo +Aubrey +Chad +Dallas +Dario +Emilio +Garth +Joesph +Lamont +Lenny +Lonny +Morgan +Nicolas +Norris +Orville +Rich +Santos +Timmy +Van +Abraham +Barton +Brady +Ellis +Federico +Jonathon +Lon +Luke +Murray +Shannon +Simon +Trent +Vaughn +Brandon +Erick +Gilberto +Harlan +Keven +Kirby +Rigoberto +Rock +Sanford +Saul +Winston +Zane +Alonzo +Burton +Erwin +Kirt +Lindsey +Marlin +Mel +Randell +Robby +Rogelio +Roman +Rudolfo +Sylvester +Agustin +Bryon +Cornell +Dwain +Edwardo +Elton +Errol +Fredric +Gino +Gonzalo +Gus +Ismael +Marion +Merrill +Nickolas +Salvatore +Unknown +Wilbur +Benito +Bernie +Bryce +Cruz +Domingo +Edmundo +Efrain +Frederic +Hans +Harley +Merle +Nicky +Oliver +Rand +Reggie +Santiago +Tommie +August +Dion +Emmett +Esteban +Galen +Genaro +Horace +Hubert +Jefferey +Jerold +Jerrold +Lawerence +Otis +Rodrick +Sandy +Seth +Trinidad +Val +Wes +Wilbert +Willis +Cal +Cornelius +Dewey +Duke +Greggory +Hank +Irving +Kenton +Kit +Mack +Mikel +Moses +Octavio +Randel +Stacey +Tyler +Ward +Adolph +Armand +Brooks +Cris +Eldon +Elliott +Jefferson +Lincoln +Noah +Raymundo +Skip +Stevie +Vicente +Von +Wally +Will +Bryant +Carroll +Darell +Darren +Dee +Derick +Donny +Dusty +Elbert +Emery +Emil +Ervin +Grady +Homer +Jeremy +Kennith +Lamar +Lars +Len +Leopoldo +Lesley +Lyndon +Mary +Nolan +Otto +Roderic +Roosevelt +Roscoe +Stefan +Theron +Ty +Weldon +Alvaro +Audie +Austin +Bradly +Brien +Britt +Bruno +Carmen +Chip +Cleveland +Coleman +Dalton +Darcy +Derwin +Donovan +Douglass +Elvis +Garland +Graham +Irvin +Isidro +Jacques +Jere +Kraig +Kristopher +Layne +Leigh +Leonardo +Lindsay +Marcelino +Mariano +Mauricio +Michale +Rodrigo +Rolf +Rolland +Tab +Wilson +Antony +Arlen +Arnulfo +Aurelio +Carter +Charley +Curtiss +Dannie +Devin +Donnell +Efren +Eli +Elvin +Erich +Gregorio +Harrison +Hiram +Hollis +Jacinto +Jake +Kimberly +Lorin +Lou +Lucio +Lupe +Marcel +Maria +Marshal +Ned +Odell +Percy +Raphael +Ricki +Robb +Rueben +Silas +Solomon +Sonny +Stevan +Thad +Tino +Abelardo +Basil +Bobbie +Broderick +Burt +Claudio +Damian +Dell +Delmar +Dwaine +Earle +Earnest +Eliseo +Elliot +Elwood +Emanuel +Erin +Fabian +Gearld +Gray +Jackson +Jared +Kermit +Merlin +Milo +Moises +Orrin +Riley +Rocco +Rolando +Rufus +Stanford +Terrell +Thaddeus +Verne +Whitney +Wiley +Willam +Woodrow +Alain +Aldo +Alec +Alphonso +Baron +Benson +Bernardo +Berry +Blane +Brice +Brion +Burl +Chet +Courtney +Coy +Cynthia +Dante +Darold +Derald +Dudley +Emory +Fermin +Forest +Frederico +Fritz +Gale +Guido +Heriberto +Josh +Karen +Kelley +Kennth +Kimball +Kory +Lafayette +Lanny +Lawrance +Leif +Lenard +Levi +Loran +Lyman +Marcelo +Mikeal +Nels +Niels +Omar +Paris +Patricia +Quinn +Refugio +Ricci +Ronnald +Sammie +Shelby +Sid +Stanton +Trevor +Vic +Vito +Warner +Alphonse +Amado +Amos +Antone +Arne +Barrett +Benedict +Booker +Brant +Butch +Cam +Candelario +Cardell +Chandler +Clement +Cole +Constantine +Cort +Crispin +Cyril +Delfino +Derrell +Devon +Dewitt +Dominick +Edgardo +Eleazar +Enos +Epifanio +Faron +Freeman +Gaylord +Geoff +Grover +Hilario +Irwin +Isaias +Israel +Jace +Jeremiah +Jock +Johnathan +Johnie +Judson +Junior +Kai +Lennie +Linda +Lindy +Lory +Lyn +Manny +Margarito +Maxwell +Melton +Mervin +Michiel +Myles +Noe +Pascual +Porfirio +Quentin +Raoul +Rennie +Reno +Reyes +Ric +Richmond +Robbin +Roc +Rojelio +Rudolf +Sal +Salvadore +Scotty +Susan +Sydney +Terril +Terrill +Timmothy +Valentin +Werner +Weston +Willy +Woody +Adan +Alvino +Amador +Antoine +Arcadio +Armond +Artie +Ashley +Augustin +Baltazar +Breck +Brendan +Brenton +Briant +Buster +Carleton +Carlo +Carol +Cheryl +Cheyenne +Cindy +Clem +Cleo +Cody +Corky +Cornelio +Crawford +Creighton +Cuauhtemoc +Dann +Danniel +Darel +Darin +Darius +Davey +Davis +Debbie +Debra +Denzel +Derryl +Desiderio +Desmond +Diane +Donal +Donell +Donna +Dorian +Drake +Eloy +Emerson +Eugenio +Everardo +Farrell +Gabe +Gaetano +Gavin +Gayland +Gaylen +Geary +German +Gerold +Harris +Herminio +Hunter +Ivory +Jacque +Jarvis +Jeffrie +Jewell +Jhon +Jodie +Judd +Kendal +Laird +Lambert +Lamonte +Lary +Lauren +Leighton +Lemuel +Leonel +Lex +Linden +Llewellyn +Loy +Luciano +Markus +Maynard +Mick +Mickel +Migel +Montie +Nicola +Nigel +Nils +Noble +Normand +Oren +Otilio +Primitivo +Quintin +Randol +Raynaldo +Renaldo +Renard +Rey +Rico +Rollie +Rosendo +Rowland +Royal +Rudolpho +Salomon +Samual +Serge +Shelton +Taylor +Tobin +Ulysses +Vincente +Walt +Welton +Michael +David +Robert +John +James +Mark +Richard +Steven +William +Thomas +Daniel +Ronald +Paul +Gary +Kenneth +Donald +Timothy +Charles +Scott +Kevin +Jeffrey +Gregory +Brian +Joseph +Anthony +Larry +Mike +Stephen +Steve +Dennis +Edward +Douglas +Randy +George +Frank +Christopher +Patrick +Eric +Bruce +Raymond +Craig +Keith +Jerry +Peter +Rick +Joe +Danny +Terry +Matthew +Ricky +Jeff +Russell +Alan +Dale +Jim +Arthur +Martin +Andrew +Lawrence +Jose +Bill +Tom +Chris +Wayne +Tim +Tony +Jack +Jon +Ralph +Rodney +Roger +Phillip +Greg +Gerald +Randall +Philip +Jeffery +Manuel +Victor +Dan +Carl +Roy +Glenn +Albert +Don +Vincent +Henry +Jay +Dean +Dave +Curtis +Johnny +Darrell +Carlos +Gilbert +Leonard +Bradley +Bryan +Ron +Micheal +Walter +Ruben +Bob +Fred +Louis +Todd +Stanley +Allen +Mitchell +Kirk +Ernest +Barry +Kurt +Ronnie +Brad +Alfred +Mario +Samuel +Jimmy +Marc +Ray +Howard +Harold +Billy +Jesse +Glen +Eddie +Norman +Bobby +Brett +Eugene +Clifford +Ken +Kelly +Lee +Jonathan +Joel +Juan +Frederick +Guy +Kent +Bret +Gordon +Benjamin +Duane +Ted +Theodore +Karl +Ricardo +Rickey +Tommy +Brent +Raul +Perry +Antonio +Darryl +Dana +Lance +Daryl +Earl +Marvin +Jesus +Rudy +Sean +Nicholas +Warren +Doug +Gene +Matt +Harry +Gregg +Luis +Alex +Willie +Armando +Edwin +Calvin +Lloyd +Francisco +Reginald +Vernon +Melvin +Wesley +Robin +Hector +Miguel +Neil +Ramon +Jerome +Roberto +Leslie +Marty +Andre +Aaron +Allan +Nick +Arturo +Fernando +Randolph +Derek +Dwayne +Alexander +Alvin +Andy +Salvador +Stuart +Tracy +Randal +Oscar +Leon +Bernard +Leo +Ross +Shawn +Clarence +Lewis +Lonnie +Pete +Francis +Jaime +Floyd +Chuck +Kim +Sam +Herbert +Louie +Arnold +Ernie +Lester +Pat +Cary +Kenny +Ed +Johnnie +Clayton +Gabriel +Garry +Javier +Roland +Ben +Rafael +Byron +Kerry +Leroy +Marcus +Pedro +Fredrick +Grant +Joey +Alfonso +Dwight +Geoffrey +Neal +Rene +Wade +Curt +Maurice +Rocky +Troy +Franklin +Rex +Casey +Nathan +Bradford +Jorge +Benny +Hugh +Jimmie +Bart +Kris +Clark +Jamie +Terrence +Clay +Clinton +Marshall +Alfredo +Freddie +Phil +Rudolph +Clyde +Edmund +Jess +Terrance +Lynn +Ernesto +Rod +Roderick +Rory +Angel +Chester +Jessie +Virgil +Charlie +Clifton +Eduardo +Herman +Christian +Kyle +Mathew +Sergio +Alberto +Claude +Enrique +Jason +Monte +Wendell +Abel +Cory +Laurence +Loren +Lyle +Tyrone +Felix +Max +Darrel +Jody +Leland +Darren +Terence +Harvey +Ivan +Marco +Milton +Scot +Derrick +Jerald +Lorenzo +Rickie +Art +Clint +Erik +Guillermo +Julian +Adrian +Edgar +Everett +Rob +Drew +Mitch +Rodolfo +Sammy +Stan +Timmy +Donnie +Jeffry +Russ +Cameron +Corey +Mickey +Sidney +Vance +Christophe +Gerard +Cecil +Ignacio +Jackie +Alejandro +Blake +Conrad +Dino +Bert +Gerry +Sheldon +Vince +Frankie +Stewart +Adam +Dominic +Julio +Kelvin +Nelson +Andres +Colin +Denis +Noel +Rusty +Wallace +Guadalupe +Gustavo +Robbie +Carlton +Reynaldo +Delbert +Dirk +Shane +Felipe +Marcos +Morris +Myron +Elias +Evan +Ian +Lionel +Malcolm +Ryan +Stephan +Al +Angelo +Ira +Orlando +Ramiro +Randell +Ronny +Ward +Hal +Jacob +Kendall +Sherman +Teddy +Willard +Damon +Joaquin +Luke +Rodger +Barney +Forrest +Garth +Tomas +Buddy +Denny +Dewayne +Doyle +Isaac +Ismael +Marion +Miles +Pierre +Shaun +Van +Alton +Dane +Gerardo +Mitchel +Preston +Toby +Blaine +Darnell +Nicolas +Pablo +Reed +Rich +Santiago +Boyd +Cesar +Dion +Joshua +Monty +Nathaniel +Owen +Travis +Adolfo +Blair +Bryon +Cedric +Dexter +Freddy +Garrett +Gilberto +Jan +Lane +Les +Luther +Marlon +Murray +Nicky +Augustine +Carey +Danial +Dick +Duncan +Gil +Humberto +Lon +Marlin +Mel +Sal +Salvatore +Cliff +Emmett +Gus +Harlan +Kip +Oliver +Saul +Tod +Alonzo +Bennie +Darwin +Eddy +Erick +Jonathon +Lowell +Skip +Willis +Archie +Barton +Benito +Kenton +Seth +Spencer +Sterling +Bryant +Donn +Erich +Hans +Harley +Irving +Kennith +Michel +Abraham +Edmond +Gino +Jordan +Justin +Keven +Leonardo +Lonny +Moses +Otto +Sylvester +Agustin +Bernie +Chad +Cruz +Donnell +Elliott +Fidel +Gonzalo +Lenny +Otis +Reggie +Roosevelt +Ty +Winston +Zachary +Austin +Erwin +Hugo +Rand +Robby +Royce +Russel +Simon +Thaddeus +Trinidad +Adolph +Brandon +Burt +Del +Devin +Duke +Dwain +Earnest +Elbert +Eldon +Elmer +Elton +Ervin +Garland +Grady +Hank +Kory +Kraig +Lanny +Mikel +Reuben +Tommie +Tyler +Armand +Burton +Emilio +Frederic +Gavin +Jefferson +Jeremy +Jerold +Kurtis +Modesto +Ned +Norbert +Rey +Rogelio +Shannon +Stacey +Stacy +Tad +Unknown +Von +Will +Aubrey +Brady +Bud +Dallas +Edwardo +Efren +Ellis +Galen +Geoff +Hubert +Jacques +Jean +Joesph +Julius +Kelley +Mack +Merle +Moises +Reid +Rolando +Roman +Sanford +Santos +Vern +Vic +Xavier +August +Aurelio +Bernardo +Billie +Courtney +Diego +Donny +Emanuel +Emile +Federico +Josh +Kermit +Kirby +Lars +Patricia +Reyes +Val +Vicente +Walt +Bennett +Blane +Britt +Carson +Carter +Cody +Cornell +Dell +Edmundo +Elvin +Genaro +Gregorio +Horace +Irvin +Jefferey +Kristopher +Lauren +Marcel +Mariano +Rigoberto +Rocco +Rosendo +Sandy +Terrell +Vaughn +Wes +Wilbert +Wilbur +Wilson +Arlen +Brendan +Bryce +Damian +Domingo +Greggory +Herb +Hollis +Kevan +Kit +Lindsay +Lupe +Lyndon +Merrill +Nickolas +Omar +Randel +Sonny +Stevie +Aron +Brooks +Cornelius +Dante +Darell +Delmer +Errol +Homer +Jace +Jared +Jerrold +Lamont +Lawerence +Linda +Lorin +Loyd +Luciano +Mauricio +Percy +Rueben +Theron +Wayde +Wilfred +Alvaro +Antoine +Arnie +Bruno +Charley +Chet +Clemente +Danniel +Darold +Denton +Derick +Drake +Dudley +Dwaine +Emery +Faron +Forest +Graham +Jackson +Junior +Levi +Lincoln +Lindsey +Manny +Markus +Merlin +Nels +Norris +Quintin +Raphael +Raymundo +Rock +Rodrigo +Rolf +Sammie +Solomon +Stevan +Susan +Timmie +Tobin +Trent +Valentino +Wally +Willam +Wyatt +Aldo +Alec +Amado +Amos +Antony +Avery +Brien +Cheryl +Cleveland +Cris +Dannie +Darius +Darrin +Denver +Diane +Eliseo +Elliot +Eloy +Emil +Florencio +Fredric +Gale +Gorge +Grover +Harrison +Heriberto +Hilario +Jake +Jere +Johnathan +Josef +Kipp +Lamar +Layne +Leif +Lenard +Leopoldo +Linden +Michale +Milo +Morgan +Myles +Noe +Reese +Ric +Roark +Roddy +Roderic +Rolland +Rosario +Rufus +Scotty +Sherwood +Stanton +Taylor +Thad +Vito +Wayland +Whitney +Willy +Zane +Alphonso +Aram +Arne +Basil +Benson +Bobbie +Bradly +Brice +Burl +Caesar +Courtland +Coy +Daren +Demetrius +Derald +Dereck +Devon +Dewey +Domenic +Dominick +Dorian +Douglass +Earle +Efrain +Elden +Eliot +Erin +Eusebio +Everardo +Farley +Faustino +Fermin +Filiberto +Franklyn +Isidro +Israel +Jamey +Judd +Kathleen +Kirt +Lennie +Marcelino +Mauro +Mervin +Narciso +Nolan +Odis +Orville +Philippe +Quentin +Randolf +Raoul +Raymon +Refugio +Rhett +Ricci +Robb +Rudolfo +Sebastian +Serge +Serjio +Stanford +Stefan +Timmothy +Trevor +Truman +Werner +Wiley +Alden +Alphonse +Benedict +Boris +Carlo +Carmen +Carol +Chauncey +Chip +Cole +Cordell +Corry +Cynthia +Dann +Darcy +Darrold +Davis +Delwin +Derwin +Desmond +Dusty +Elizabeth +Elvis +Esteban +Ethan +Ezequiel +Farrell +Fritz +Gaylord +Gillermo +Glynn +Herschel +Jacky +Jed +Johnie +Jules +Kary +Kerwin +Kimberly +Laura +Lavell +Lindy +Loran +Lori +Lyn +Marcelo +Margarito +Mart +Maynard +Mikeal +Norm +Octavio +Odell +Ollie +Oren +Quincy +Quinn +Rande +Renard +Renee +Richardo +Ricki +Riley +Rodrick +Salvadore +Sandra +Shelby +Shelton +Siegfried +Thurman +Thurston +Tino +Uriel +Vernell +Walton +Weldon +Wilford +Woodrow +Abelardo +Adalberto +Allyn +Alva +Amador +Ambrose +Andreas +Anthoney +Anton +Arden +Arlin +Arnulfo +Audie +Augustin +Barrett +Barron +Basilio +Brant +Brenton +Brook +Buck +Butch +Cal +Caleb +Calixto +Camilo +Carroll +Cindy +Cleve +Conrado +Cornelio +Curtiss +Damien +Dario +Darryll +Darwyn +Dawn +Delvin +Derrell +Donell +Donovan +Dwane +Dylan +Eleazar +Emmanuel +Epifanio +Erie +Ezekiel +Flint +Franz +Geary +Hilary +Hoby +Isaias +Jame +Jayme +Johnathon +Jude +Judson +Keenan +Kem +Kennedy +Kennth +King +Laurent +Leigh +Leighton +Len +Lew +Lisa +Lorne +Lovell +Mac +Marlo +Mary +Mason +Maxwell +Melvyn +Michal +Michiel +Napoleon +Niles +Nils +Noah +Noble +Norberto +Osvaldo +Ozzie +Paris +Parker +Parris +Parry +Pieter +Randle +Reinaldo +Rojelio +Sally +Samson +Severo +Sid +Simeon +Skipper +Sydney +Tab +Theadore +Timm +Toney +Ulysses +Ventura +Wardell +Warner +Winfred +Ysidro +David +Michael +Robert +John +Mark +James +Richard +Steven +William +Thomas +Daniel +Paul +Kevin +Ronald +Timothy +Jeffrey +Kenneth +Scott +Gary +Charles +Donald +Brian +Gregory +Mike +Joseph +Anthony +Steve +Edward +Dennis +Larry +Christopher +Eric +Stephen +Craig +Douglas +Frank +Randy +George +Patrick +Peter +Jeff +Raymond +Keith +Jim +Bruce +Jerry +Joe +Terry +Danny +Matthew +Dale +Rick +Chris +Tim +Ricky +Alan +Russell +Tony +Jose +Tom +Greg +Jon +Bill +Arthur +Martin +Roger +Andrew +Phillip +Jeffery +Victor +Lawrence +Wayne +Randall +Jack +Gerald +Dave +Vincent +Carl +Manuel +Dan +Rodney +Don +Henry +Ralph +Curtis +Philip +Albert +Dean +Johnny +Glenn +Bryan +Bob +Walter +Jay +Gilbert +Ruben +Ron +Leonard +Bradley +Roy +Fred +Jimmy +Kirk +Carlos +Todd +Darrell +Ernest +Micheal +Mitchell +Samuel +Barry +Louis +Ray +Marc +Ronnie +Brett +Allen +Jesse +Ken +Kurt +Stanley +Kelly +Billy +Eddie +Mario +Brad +Harold +Darryl +Bret +Juan +Joel +Eugene +Jonathan +Howard +Glen +Lee +Brent +Duane +Lance +Norman +Ricardo +Perry +Frederick +Bobby +Shawn +Ted +Alfred +Clifford +Jesus +Kent +Karl +Guy +Doug +Luis +Gordon +Tommy +Raul +Alex +Antonio +Benjamin +Theodore +Darren +Matt +Stuart +Rudy +Dana +Wesley +Nicholas +Marvin +Sean +Gene +Daryl +Harry +Edwin +Rickey +Dwayne +Francisco +Armando +Earl +Lloyd +Nick +Aaron +Chuck +Hector +Warren +Jaime +Melvin +Miguel +Robin +Gregg +Willie +Andre +Lonnie +Derek +Ramon +Reginald +Oscar +Sam +Calvin +Kenny +Tracy +Andy +Clarence +Marty +Salvador +Jerome +Marcus +Roberto +Leo +Neil +Ross +Leslie +Vernon +Byron +Fernando +Rene +Troy +Bernard +Pat +Allan +Alvin +Ed +Gabriel +Kerry +Randolph +Alexander +Pedro +Tyrone +Arnold +Cary +Herbert +Randal +Javier +Clinton +Clayton +Lewis +Ben +Ernie +Nathan +Floyd +Wade +Franklin +Francis +Christian +Jimmie +Joey +Pete +Bart +Leon +Neal +Arturo +Clay +Maurice +Roland +Alfredo +Leroy +Dwight +Erik +Sergio +Geoffrey +Jorge +Rex +Clyde +Rod +Angel +Phil +Rafael +Alfonso +Rory +Garry +Kim +Louie +Grant +Kyle +Derrick +Mathew +Roderick +Marco +Wendell +Hugh +Leland +Lester +Rocky +Herman +Jason +Jody +Casey +Kris +Loren +Alberto +Edmund +Freddie +Johnnie +Felix +Fredrick +Jamie +Rudolph +Russ +Stewart +Benny +Milton +Jess +Lyle +Abel +Enrique +Terrence +Chester +Claude +Ernesto +Scot +Adam +Blake +Curt +Laurence +Adrian +Bradford +Charlie +Dino +Harvey +Vince +Clark +Darrel +Jessie +Clifton +Cory +Dirk +Eduardo +Everett +Frankie +Max +Rodger +Gustavo +Julian +Marshall +Vance +Drew +Jackie +Mitch +Jeffry +Lorenzo +Stan +Gerard +Terence +Gerardo +Kelvin +Sammy +Virgil +Dane +Cameron +Corey +Nelson +Rodolfo +Shane +Terrance +Ivan +Rob +Ryan +Donnie +Monty +Sidney +Wallace +Forrest +Joshua +Felipe +Jerald +Lynn +Timmy +Cecil +Delbert +Mickey +Nathaniel +Damon +Doyle +Lane +Myron +Angelo +Bert +Cedric +Colin +Evan +Art +Guadalupe +Julio +Monte +Rickie +Alejandro +Carlton +Clint +Edgar +Gerry +Marcos +Orlando +Al +Rusty +Brandon +Carey +Ignacio +Kendall +Ramiro +Fidel +Ian +Mitchel +Stephan +Ty +Ward +Cliff +Dominic +Guillermo +Lowell +Morgan +Toby +Darwin +Gino +Malcolm +Abraham +Alonzo +Christophe +Gilberto +Ira +Jacob +Joaquin +Pierre +Andres +Boyd +Hans +Michel +Noel +Rich +Shannon +Teddy +Travis +Xavier +Ismael +Lionel +Nicolas +Stacy +Augustine +Denis +Lon +Randell +Robbie +Tod +Conrad +Layne +Miles +Reuben +Sheldon +Van +Bud +Justin +Otis +Salvatore +Archie +Bennie +Blaine +Bryon +Donn +Elmer +Humberto +Isaac +Nicky +Pablo +Santos +Vicente +Wes +Buddy +Cesar +Dexter +Elias +Kirby +Robby +Sherman +Barney +Freddy +Kurtis +Owen +Preston +Roman +Royce +Trent +Wayde +Willis +Alton +Barton +Denny +Ellis +Garth +Lonny +Luke +Lupe +Morris +Moses +Reed +Tomas +Willard +Darnell +Dewayne +Dick +Dion +Dwain +Edmond +Efrain +Emilio +Gus +Kip +Les +Loyd +Marlon +Mikel +Reynaldo +Sal +Saul +Trinidad +Val +Darin +Dewey +Domingo +Duncan +Homer +Marion +Murray +Oliver +Ronny +Shaun +Sylvester +August +Chad +Cruz +Dallas +Daren +Eddy +Elliott +Erick +Federico +Galen +Kennith +Leonardo +Rogelio +Rolando +Russel +Tommie +Tyler +Zachary +Armand +Blair +Burton +Del +Hal +Jerrold +Reggie +Santiago +Simon +Spencer +Wally +Bernie +Danial +Devin +Earnest +Fabian +Gil +Jonathon +Jordan +Lars +Luther +Sterling +Adolfo +Bennett +Bernardo +Brooks +Cornelius +Dario +Efren +Erich +Hugo +Jan +Kraig +Lamont +Vern +Wilbert +Zane +Bryant +Chip +Darrin +Donnell +Duke +Edwardo +Emmett +Hank +Joesph +Lyndon +Mel +Reid +Sanford +Seth +Will +Donny +Jefferey +Lenny +Merle +Rigoberto +Sandy +Skip +Stacey +Tad +Trevor +Vaughn +Wyatt +Adolph +Alec +Brady +Brendan +Bryce +Burt +Ervin +Frederic +Gregorio +Harlan +Hubert +Isidro +Jean +Jefferson +Marlin +Moises +Noah +Omar +Otto +Ric +Terrell +Billie +Bradly +Britt +Buck +Carter +Diego +Elbert +Errol +Flint +Garrett +Gavin +Grady +Graham +Jeremy +Keven +Lennie +Mauricio +Ned +Randel +Roscoe +Stefan +Vic +Woodrow +Agustin +Antoine +Aurelio +Austin +Benito +Cornell +Damian +Dwaine +Efrem +Elton +Emil +Esteban +Felton +Fredric +Garland +Gonzalo +Julius +Lamar +Lanny +Lawerence +Lindsay +Lorin +Merlin +Noe +Raoul +Rock +Rufus +Tracey +Wiley +Winston +Arlen +Aron +Brock +Butch +Courtney +Darell +Emanuel +Erwin +Greggory +Kit +Kristian +Leopoldo +Lucio +Mack +Marcel +Rey +Thad +Von +Wilfred +Wilson +Anton +Aubrey +Bobbie +Danniel +Devon +Domenic +Edmundo +Eldon +Genaro +Harley +Herb +Irvin +Israel +Jake +Karen +Kelley +Kenton +Kermit +Kirt +Linda +Lino +Marcelino +Mariano +Merrill +Milo +Myles +Nolan +Norris +Patricia +Percy +Porfirio +Rand +Ricci +Ricki +Timmie +Alphonso +Alvaro +Bartley +Candelario +Carmen +Charley +Cleveland +Cody +Coy +Dannie +Derwin +Desmond +Donell +Eli +Elvin +Ethan +Fermin +Florentino +Fritz +Gerold +Harrison +Horace +Irving +Jacque +Jacques +Jared +Kevan +Kimberly +Kory +Lawrance +Leif +Lucas +Marcial +Margarito +Maynard +Quentin +Reyes +Reymundo +Rodrigo +Roosevelt +Solomon +Sonny +Thaddeus +Wilbur +Winfred +Yancy +Adalberto +Alden +Berry +Blane +Brion +Broderick +Cal +Chet +Claudio +Clemente +Collin +Cris +Damien +Davis +Delano +Derrell +Donal +Farrell +Gale +Geoff +Jed +Jerold +Josh +Keenan +Lazaro +Len +Lenard +Lesley +Levi +Lincoln +Lisa +Lou +Lyn +Macario +Manny +Mason +Modesto +Nickolas +Octavio +Orville +Raymon +Raymundo +Refugio +Reynold +Riley +Ritchie +Rocco +Rodrick +Rolf +Sid +Silas +Theron +Timmothy +Walt +Waymon +Werner +Abelardo +Aldo +Amador +Amos +Anthoney +Antony +Arnulfo +Ashley +Audie +Augie +Barron +Benedict +Bonifacio +Brant +Bruno +Carlo +Cleve +Cole +Conrado +Corwin +Dante +Darby +Darcy +Darrick +Dustin +Dusty +Earle +Eliseo +Eugenio +Everardo +Forest +Isaias +Jerrel +Johnathan +Johnie +Junior +Kennth +Laine +Leandro +Maria +Marlo +Mauro +Micah +Michale +Miller +Ollie +Parker +Rico +Ronaldo +Ronn +Rueben +Salvadore +Stanford +Stanton +Stevie +Sydney +Tab +Thurman +Tobin +Vernell +Vidal +Vito +Warner +Wilford +Adan +Alexis +Arlie +Arne +Augustin +Avery +Benton +Boris +Brien +Caleb +Carol +Celestino +Chauncey +Cipriano +Cristobal +Cristopher +Darryle +Daryle +Dee +Denton +Derick +Donovan +Dorian +Drake +Eldred +Elizabeth +Eloy +Emmanuel +Erin +Everette +Faron +Filiberto +Fransisco +Freeman +Geno +Gerhard +Geronimo +Harris +Heriberto +Hiram +Horacio +Jamey +Jere +Kendal +Kerwin +Kristopher +Kym +Lauren +Leigh +Lemuel +Liam +Lovell +Marcelo +Markham +Maury +Michal +Monroe +Natividad +Nels +Nickey +Nino +Patricio +Primo +Raphael +Richardo +Robb +Rolland +Rollin +Rubin +Rudolfo +Salomon +Sammie +Sharon +Shelby +Sherwood +Stevan +Susan +Sven +Terri +Theadore +Tino +Titus +Tobias +Toney +Trenton +Unknown +Valentin +Wendall +Wendel +West +Alexandro +Alfonzo +Amado +Antone +Arlan +Armondo +Artemio +Artie +Beau +Benson +Bertram +Blaise +Blas +Brenton +Brice +Burl +Caesar +Camilo +Carroll +Casper +Ceasar +Clancy +Cordell +Corky +Dagoberto +Darold +Davey +Debbie +Debra +Delmar +Delmer +Delton +Delwin +Demetrio +Denise +Dennie +Deric +Derrel +Dewitt +Douglass +Elden +Eliot +Elliot +Elvis +Erie +Faustino +Feliciano +Ford +Fransico +Franz +Gabe +Garold +Garvin +Gaston +Geary +Gentry +Granville +Gregrey +Hayden +Hilario +Hollis +Hunter +Isadore +Ivory +Jacinto +Jackson +Jacky +Jenaro +Jock +Kipp +Konrad +Kreg +Laird +Laurie +Lorne +Lyndell +Marciano +Marius +Marven +Mat +Mickel +Montgomery +Napoleon +Narciso +Odell +Olen +Philippe +Rance +Renaldo +Rhett +Rito +Robbin +Roddy +Rojelio +Romeo +Scotty +Sheridan +Silverio +Taylor +Ulysses +Verne +Vincente +Vint +Weldon +Whitney +Willy +Wynn +David +Michael +John +Robert +Mark +James +Richard +Steven +William +Daniel +Thomas +Kevin +Paul +Kenneth +Jeffrey +Scott +Ronald +Brian +Timothy +Charles +Gary +Donald +Joseph +Gregory +Anthony +Mike +Christopher +Eric +Steve +Edward +Craig +Larry +Dennis +Stephen +Frank +Randy +Douglas +George +Jeff +Patrick +Raymond +Keith +Jerry +Peter +Jim +Joe +Bruce +Matthew +Chris +Danny +Jose +Tim +Andrew +Tony +Alan +Russell +Terry +Greg +Martin +Roger +Jon +Rick +Dale +Bill +Tom +Phillip +Victor +Ricky +Randall +Arthur +Carl +Lawrence +Jeffery +Bryan +Albert +Dan +Glenn +Wayne +Jack +Todd +Don +Gerald +Rodney +Bradley +Johnny +Vincent +Curtis +Manuel +Ralph +Dave +Bob +Darryl +Dean +Roy +Philip +Henry +Jay +Ron +Carlos +Gilbert +Ruben +Brad +Jonathan +Kurt +Leonard +Kelly +Kirk +Barry +Walter +Marc +Samuel +Eddie +Fred +Ernest +Lance +Jimmy +Billy +Darrell +Stanley +Louis +Micheal +Ray +Mario +Juan +Ken +Brett +Howard +Joel +Ronnie +Mitchell +Darren +Harold +Allen +Bobby +Lee +Jesse +Troy +Eugene +Karl +Tracy +Alfred +Shawn +Clifford +Alex +Ricardo +Jesus +Glen +Norman +Brent +Dwayne +Guy +Tommy +Francisco +Kent +Sean +Benjamin +Dana +Raul +Duane +Theodore +Stuart +Frederick +Antonio +Gordon +Marvin +Rudy +Bret +Aaron +Luis +Andy +Derek +Armando +Robin +Ted +Doug +Nicholas +Gregg +Marty +Perry +Chuck +Miguel +Nick +Willie +Kerry +Harry +Warren +Daryl +Roberto +Alexander +Matt +Kenny +Wesley +Earl +Edwin +Andre +Gene +Adam +Salvador +Javier +Calvin +Oscar +Ramon +Fernando +Allan +Lloyd +Reginald +Vernon +Jerome +Melvin +Jaime +Hector +Sam +Rene +Marcus +Rickey +Alvin +Byron +Lonnie +Neil +Gabriel +Jimmie +Leslie +Ross +Arnold +Randolph +Pat +Arturo +Bernard +Randal +Alfredo +Ben +Jorge +Leroy +Nathan +Roland +Grant +Pedro +Sergio +Clarence +Ed +Pete +Cary +Neal +Jason +Rex +Clayton +Maurice +Kyle +Christian +Bart +Curt +Leon +Angel +Francis +Wade +Floyd +Alberto +Herbert +Joey +Franklin +Charlie +Ernie +Fredrick +Geoffrey +Kim +Leo +Adrian +Enrique +Erik +Louie +Jess +Lewis +Phil +Jamie +Roderick +Rafael +Rory +Clay +Alfonso +Benny +Lyle +Lorenzo +Vince +Derrick +Rod +Clinton +Dino +Garry +Ernesto +Kelvin +Clyde +Darin +Dwight +Loren +Johnnie +Blake +Cameron +Felix +Darrel +Freddie +Rob +Casey +Lester +Rudolph +Jody +Julian +Rocky +Stan +Terrence +Laurence +Leland +Bradford +Drew +Eduardo +Hugh +Max +Tyrone +Everett +Kris +Marco +Mitch +Orlando +Shane +Frankie +Chester +Herman +Jessie +Clark +Bert +Milton +Cory +Dominic +Abel +Jerald +Rodolfo +Edmund +Mathew +Terence +Clint +Damon +Jackie +Marshall +Claude +Stewart +Timmy +Wendell +Alejandro +Nelson +Donnie +Ian +Julio +Scot +Evan +Ivan +Lynn +Sammy +Wallace +Russ +Corey +Vance +Art +Cecil +Clifton +Edgar +Garth +Guadalupe +Rusty +Virgil +Dane +Gerard +Gerardo +Felipe +Guillermo +Marcos +Noel +Ramiro +Robbie +Tod +Abraham +Forrest +Gustavo +Harvey +Lionel +Pablo +Rodger +Sidney +Terrance +Al +Bryon +Mickey +Myron +Teddy +Ryan +Dirk +Monte +Nathaniel +Cedric +Dewayne +Monty +Travis +Zachary +Ignacio +Miles +Pierre +Randell +Sheldon +Bennie +Cesar +Delbert +Gilberto +Joaquin +Kendall +Nicolas +Stacey +Angelo +Blaine +Carlton +Colin +Hal +Reynaldo +Bernie +Cliff +Conrad +Joshua +Michel +Moses +Darrin +Ira +Isaac +Rich +Rogelio +Stephan +Toby +Jacob +Jeffry +Rickie +Sherman +Justin +Malcolm +Morris +Otis +Owen +Royce +Barton +Denny +Van +Willard +Dexter +Dion +Oliver +Reuben +Shaun +Spencer +Trent +Will +Adolph +Denis +Freddy +Gerry +Hans +Humberto +Lowell +Luke +Marion +Morgan +Preston +Shannon +Ty +Xavier +Adolfo +Cornelius +Gino +Hugo +Ronny +Seth +Tomas +Tyler +Agustin +Andres +Bryant +Carey +Eddy +Edmond +Kurtis +Rolando +Stacy +Boyd +Brandon +Christophe +Earnest +Elliott +Elmer +Emilio +Ismael +Les +Marlon +Tommie +Wes +Barney +Chad +Danial +Darwin +Fidel +Kip +Kraig +Lane +Reggie +Alonzo +Blair +Buddy +Daren +Doyle +Kirby +Santiago +Simon +Vaughn +Benito +Brendan +Burton +Elias +Erich +Garrett +Jan +Lamont +Luther +Mitchel +Stevie +Tad +Theron +Britt +Ellis +Erick +Gregorio +Gus +Harlan +Josh +Lon +Murray +Russel +Sal +Wilfred +Devin +Domingo +Efrain +Eldon +Federico +Jeremy +Julius +Randel +Robby +Skip +Arnulfo +Bryce +Donn +Duke +Duncan +Efren +Fabian +Jean +Jonathon +Kelley +Keven +Lindsay +Lupe +Saul +Thaddeus +Val +Vito +Alvaro +Bennett +Burt +Chip +Dallas +Hank +Jefferson +Jordan +Marcelino +Reed +Rigoberto +Ward +Wilbert +Alton +Archie +Augustine +Bud +Cruz +Dannie +Dario +Darnell +Ervin +Galen +Jacques +Kennith +Mikel +Rodrigo +Salvatore +Sterling +Vicente +Anton +Aubrey +Aurelio +Del +Donny +Errol +Genaro +Harley +Jerrold +Kory +Lamar +Lars +Layne +Lenard +Lenny +Leopoldo +Butch +Chet +Damian +Dewey +Dick +Diego +Ethan +Gil +Gonzalo +Hubert +Jed +Lyndon +Marcel +Reid +Trinidad +Ashley +Dwain +Edmundo +Frederic +Geoff +Grady +Irwin +Jake +Jerold +Junior +Lonny +Marlin +Moises +Nickolas +Noe +Norbert +Octavio +Rosendo +Sebastian +Vern +Winston +Alphonso +Antoine +Antony +Armand +Austin +Courtney +Elliot +Emil +Erwin +Heriberto +Horace +Horacio +Isidro +Joesph +Kenton +Len +Leonel +Otto +Raymon +Raymundo +Rey +Rolf +Sanford +Santos +Sylvester +Terrell +Tracey +Vic +Wilbur +Willis +Zane +Alec +Amos +Bernardo +Billie +Brady +Bruno +Cal +Cris +Darrick +Forest +Garland +Gavin +Grover +Israel +Lanny +Loyd +Mauricio +Mel +Nicky +Nolan +Sandy +Scotty +Taylor +Tino +Von +Wally +Wayde +Davis +Desmond +Elbert +Ezequiel +Graham +Homer +Irving +Johnathan +Kermit +Kirt +Lauren +Lorin +Mack +Merle +Merritt +Montgomery +Myles +Omar +Rocco +Shelby +Stefan +Stevan +Tobin +Trevor +Unknown +Abelardo +Brien +Carroll +Carter +Coleman +Cornell +Damien +Daron +Dell +Drake +Edwardo +Eli +Emmett +Flint +Garret +Graig +Jefferey +Kimberly +Leif +Lennie +Leonardo +Lino +Michal +Noah +Norris +Rueben +Sonny +Stanford +Stanton +Susan +Warner +Anselmo +Arne +Avery +Bobbie +Bradly +Cleveland +Cody +Coy +Curtiss +Derick +Derwin +Donnell +Eloy +Fritz +Gale +Gorge +Greggory +Harris +Kennth +Kirkland +Lorne +Lou +Luciano +Mervin +Orville +Raoul +Raphael +Ric +Roman +Roosevelt +Roque +Roscoe +Rudolfo +Rufus +Sherwood +Thor +Timmothy +Wilson +Woodrow +Wyatt +Arnie +Barrett +Blane +Brant +Brice +Brock +Brooks +Caesar +Carlo +Cipriano +Dalton +Dann +Darell +Deryl +Dwaine +Eliseo +Erin +Esteban +Ezekiel +Faustino +Fermin +Florentino +Franz +Fredric +Hardy +Irvin +Jeremiah +Kai +Leigh +Linda +Lindsey +Maria +Mary +Modesto +Paris +Quentin +Regan +Renaldo +Reynold +Richardo +Rico +Robb +Rock +Rosario +Sammie +Shon +Sid +Tab +Tobias +Truman +Valentin +Abe +Alfonzo +Alonso +Alvino +Amado +Audie +Barron +Basil +Benedict +Bentley +Benton +Bertram +Boris +Brenda +Clemente +Cole +Darby +Darron +Darryle +Daryll +Daryn +Delfino +Devon +Duwayne +Eliot +Elvin +Emanuel +Emery +Everardo +Fletcher +Franco +Freeman +Gearld +Harrison +Hilario +Ivory +Jamey +Jared +Jayson +Judson +Kennedy +Kit +Kristopher +Leander +Levi +Lincoln +Lucas +Mariano +Mauro +Maury +Merrill +Milo +Nestor +Porfirio +Rand +Remi +Reyes +Richie +Rito +Rosalio +Thad +Thurman +Tito +Ulysses +Uriel +Verne +Vittorio +Wayland +Werner +Willy +Yancy +Adalberto +Adan +Alden +Allyn +Arnoldo +August +Brain +Carmelo +Charley +Chauncey +Collin +Cornelio +Dante +Darryll +Deborah +Debra +Delvin +Deon +Derrell +Dieter +Domenic +Douglass +Dylan +Earle +Eleazar +Ellery +Emile +Evert +Faron +Geary +Glendon +Herb +Hiram +Hollis +Jacky +Jens +Jonas +Jules +Julie +Keenan +Kerwin +Kevan +Lamarr +Lawrance +Lemuel +Lesley +Llewellyn +Lucio +Macario +Magdaleno +Malcom +Marcelo +Margarito +Markus +Mason +Maximo +Micah +Ned +Pascual +Reese +Refugio +Reno +Rhett +Rian +Riley +Romeo +Samual +Solomon +Trace +Trenton +Walt +Wiley +Wilton +Abram +Agapito +Aldo +Alexandro +Aloysius +Alvis +Antone +Ara +Arlie +Armondo +Aron +Asa +Augustin +Baltazar +Baron +Bartley +Benigno +Bernardino +Berry +Blain +Blaise +Brion +Brook +Buck +Burke +Candido +Carson +Cass +Cecilio +Celso +Clarke +Clem +Clement +Cletus +Danilo +Darcy +Darien +Darius +Darold +Daryle +Demetrius +Denzil +Dominick +Donal +Donato +Donovan +Dorian +Dusty +Dwane +Eduard +Elroy +Emmanuel +Erasmo +Felton +Flavio +Frederico +Gareth +Garold +Garvin +Gaston +Gaylen +Geronimo +Guido +Herbie +Ike +Jackson +Jef +Jonny +Josef +Karen +Kendal +Kimball +Kristen +Kristian +Lamonte +Landon +Laurent +Lawerence +Lazaro +Leighton +Lennis +Lex +Lisa +Loy +Lucian +Lucky +Lyman +Manfred +Marko +Marlo +Michelle +Monroe +Nate +Newton +Norberto +Orin +Orrin +Page +Patric +Patricio +Paulino +Percy +Primitivo +Randi +Randle +Raynard +Reg +Robbin +Rodrick +Rojelio +Rolland +Royal +Shelton +Stafford +Tammy +Tate +Timmie +Toney +Tyron +Vinton +Weldon +Wilford +Willam +Winfred +Wyman +Zoltan +David +Michael +John +Robert +Mark +James +Richard +Steven +William +Daniel +Kevin +Thomas +Scott +Jeffrey +Paul +Kenneth +Ronald +Brian +Charles +Gary +Timothy +Gregory +Donald +Joseph +Mike +Anthony +Christopher +Eric +Steve +Edward +Douglas +Craig +Stephen +Frank +Larry +Jeff +Patrick +George +Dennis +Raymond +Randy +Chris +Keith +Peter +Jerry +Bruce +Jim +Matthew +Joe +Todd +Danny +Tony +Andrew +Roger +Alan +Terry +Russell +Martin +Greg +Tim +Jose +Tom +Jon +Jeffery +Phillip +Lawrence +Dale +Victor +Rick +Ricky +Dean +Randall +Gerald +Arthur +Bill +Dan +Glenn +Bryan +Troy +Wayne +Carl +Darryl +Jack +Vincent +Manuel +Rodney +Curtis +Albert +Ralph +Jay +Bradley +Don +Ron +Roy +Philip +Henry +Johnny +Dave +Jimmy +Marc +Gilbert +Barry +Bob +Ruben +Carlos +Eddie +Mario +Kirk +Jesse +Juan +Darrell +Allen +Walter +Leonard +Brett +Louis +Ken +Ray +Fred +Tracy +Kurt +Ernest +Samuel +Jonathan +Joel +Ronnie +Shawn +Mitchell +Billy +Kelly +Micheal +Bobby +Brent +Lance +Brad +Benjamin +Sean +Norman +Alfred +Glen +Harold +Stanley +Lee +Jesus +Luis +Dwayne +Eugene +Karl +Raul +Ricardo +Guy +Doug +Aaron +Alex +Antonio +Howard +Duane +Kent +Rudy +Gordon +Frederick +Ted +Clifford +Dana +Darren +Marvin +Stuart +Derek +Theodore +Adam +Earl +Daryl +Perry +Matt +Andy +Andre +Tommy +Francisco +Armando +Alexander +Fernando +Gabriel +Gregg +Miguel +Robin +Wesley +Willie +Melvin +Chuck +Jaime +Gene +Hector +Calvin +Nick +Warren +Harry +Javier +Marcus +Reginald +Salvador +Edwin +Lloyd +Rene +Bret +Grant +Jerome +Marty +Oscar +Roberto +Vernon +Pat +Nicholas +Ramon +Joey +Kenny +Leslie +Neil +Derrick +Jason +Ross +Sam +Bernard +Kerry +Randolph +Pete +Allan +Ben +Clayton +Alvin +Byron +Arturo +Christian +Arnold +Clay +Lonnie +Erik +Roland +Adrian +Angel +Clarence +Dwight +Rafael +Ernie +Jorge +Geoffrey +Kyle +Louie +Franklin +Leo +Leroy +Nathan +Rex +Herbert +Leon +Pedro +Roderick +Alfredo +Randal +Tyrone +Rickey +Maurice +Alfonso +Floyd +Sergio +Rocky +Wade +Wendell +Neal +Alberto +Ed +Phil +Clark +Cary +Kelvin +Kim +Loren +Rod +Freddie +Fredrick +Marco +Clyde +Jess +Darin +Darrel +Drew +Enrique +Charlie +Lewis +Rodolfo +Lester +Francis +Rory +Vince +Bradford +Eduardo +Frankie +Rob +Ernesto +Damon +Jimmie +Max +Hugh +Julian +Marshall +Jamie +Terrence +Benny +Curt +Garry +Bart +Clinton +Everett +Orlando +Abel +Harvey +Cory +Evan +Tod +Jessie +Laurence +Dino +Felipe +Gustavo +Lorenzo +Blake +Donnie +Gerard +Herman +Casey +Corey +Vance +Mathew +Robbie +Ryan +Alejandro +Art +Cameron +Felix +Kris +Lyle +Mitch +Colin +Edgar +Edmund +Milton +Monty +Johnnie +Justin +Stewart +Clifton +Guillermo +Blaine +Ivan +Cecil +Stan +Rodger +Rudolph +Sammy +Leland +Monte +Shane +Timmy +Travis +Cesar +Myron +Terence +Jerald +Rusty +Scot +Sheldon +Gerardo +Jody +Julio +Lynn +Shaun +Stephan +Terrance +Van +Dewayne +Virgil +Bert +Carlton +Jackie +Marcos +Pablo +Guadalupe +Nelson +Noel +Xavier +Chester +Darrin +Joshua +Shannon +Sidney +Al +Nathaniel +Angelo +Jeffry +Bryon +Cedric +Dominic +Stacey +Delbert +Dirk +Miles +Russ +Toby +Alonzo +Forrest +Gerry +Saul +Spencer +Teddy +Ward +Zachary +Abraham +Claude +Conrad +Elias +Gilberto +Hugo +Jacob +Lionel +Simon +Ty +Willard +Clint +Ignacio +Eddy +Garth +Ian +Ira +Kendall +Lane +Wallace +Cliff +Freddy +Isaac +Luke +Preston +Bernie +Dane +Rich +Denny +Ramiro +Reynaldo +Blair +Buddy +Donny +Elliott +Gus +Jeremy +Malcolm +Marion +Morris +Barney +Brandon +Daren +Hal +Hans +Kirby +Lars +Lonny +Marlon +Mickey +Otis +Rolando +Stacy +Chad +Denis +Dion +Fabian +Kraig +Kurtis +Michel +Moses +Reuben +Rogelio +Archie +Augustine +Barton +Bennie +Boyd +Elmer +Erick +Gino +Humberto +Joaquin +Jonathon +Leonardo +Pierre +Ronny +Sterling +Trent +Andres +Doyle +Josh +Lamont +Luther +Oliver +Robby +Sherman +Tomas +Bryant +Emilio +Erich +Fidel +Gil +Gregorio +Lowell +Owen +Roman +Tyler +Adolfo +Carey +Damian +Dick +Geoff +Lon +Salvatore +Santiago +Brendan +Derick +Jordan +Les +Reed +Wally +August +Chet +Dante +Darwin +Devin +Edmond +Esteban +Garland +Grady +Joesph +Kennith +Lenny +Nicolas +Reggie +Sal +Vern +Wes +Efren +Rickie +Armand +Benito +Bennett +Courtney +Cris +Curtiss +Del +Dexter +Galen +Harley +Kip +Lupe +Merle +Murray +Val +Willis +Alton +Bryce +Burton +Christophe +Dewey +Donn +Edwardo +Federico +Garrett +Ismael +Jake +Julius +Morgan +Omar +Randell +Reid +Roosevelt +Santos +Vicente +Antony +Bernardo +Brook +Dallas +Eliseo +Ethan +Gavin +Gonzalo +Jan +Jefferey +Mack +Marcel +Mariano +Mitchel +Thaddeus +Vaughn +Wilfred +Will +Agustin +Antoine +Cruz +Danial +Drake +Duke +Efrain +Harlan +Israel +Jerold +Keven +Marcelino +Raymundo +Sandy +Seth +Tad +Thor +Tommie +Zane +Aurelio +Cornell +Earnest +Ellis +Elvin +Emmanuel +Hank +Jean +Loyd +Lyndon +Rolf +Russel +Terrell +Tracey +Alvaro +Arnulfo +Chip +Cornelius +Duncan +Elbert +Leif +Len +Ned +Nickolas +Octavio +Rodrigo +Royce +Rudolfo +Scotty +Toney +Vidal +Abelardo +Bradly +Brien +Dario +Emil +Emmett +Frederic +Hubert +Irvin +Jefferson +Jerrold +Kenton +Lamar +Marlin +Mel +Nicky +Otto +Rigoberto +Rodrick +Sebastian +Stefan +Wilbert +Alec +Brock +Bud +Caesar +Carlo +Carter +Cleveland +Cole +Coy +Delmar +Domingo +Elton +Graham +Jacques +Kelley +Kristopher +Lincoln +Lindsay +Lorne +Mauricio +Quentin +Rey +Rhett +Rico +Wilbur +Willy +Wilson +Winston +Adolph +Alden +Alphonso +Aubrey +Austin +Avery +Barrett +Britt +Brooks +Claudio +Darnell +Demetrius +Devon +Donnell +Douglass +Eldon +Elvis +Everardo +Hollis +Johnathan +Kirt +Leopoldo +Nolan +Norbert +Norris +Royal +Stanton +Stevie +Susan +Sylvester +Thurman +Tory +Valentin +Vito +Woodrow +Arne +Bobbie +Bruno +Butch +Clement +Clemente +Davis +Deric +Deron +Dwain +Eli +Elliot +Emery +Florencio +Garret +Geronimo +Irving +Jackson +Jed +Kerwin +Kevan +Kory +Layne +Markus +Maury +Moises +Myles +Orville +Randel +Raymie +Refugio +Reno +Ric +Richie +Rosario +Sid +Skip +Trinidad +Ulysses +Anton +Antone +Baron +Berry +Billie +Brady +Brice +Cody +Darius +Derwin +Diego +Dudley +Dwaine +Edmundo +Efrem +Ervin +Erwin +Fausto +Greggory +Heriberto +Homer +Jasper +Judson +Kermit +Lawrance +Leandro +Leigh +Lenard +Lew +Linda +Mason +Mauro +Montgomery +Noah +Ollie +Paris +Percy +Raphael +Raymon +Reynold +Rueben +Sonny +Taylor +Thad +Trenton +Trevor +Unknown +Alonso +Andreas +Anthoney +Apolinar +Ari +Armondo +Basil +Bertram +Blane +Brant +Burt +Cam +Carroll +Carson +Darryle +Dell +Desmond +Donovan +Doran +Dustin +Emile +Erin +Errol +Eugenio +Fermin +Fredric +Gabe +Gail +Gale +Genaro +Grover +Hiram +Isaias +Isidro +Jacque +Jared +Jennifer +Junior +Kit +Korey +Leonel +Lindsey +Lisa +Lou +Luciano +Margarito +Maria +Mary +Michale +Michelle +Nigel +Noe +Odell +Pascual +Rand +Raoul +Regan +Reymundo +Rowland +Sanford +Shon +Sydney +Timmothy +Vic +Von +Amos +Anastacio +Arlen +Benjie +Bernabe +Boyce +Breck +Brion +Burl +Caleb +Carmelo +Charley +Chauncey +Darell +Darrick +Darron +Darryll +Daryle +Daryll +Deborah +Deon +Dominick +Donal +Dusty +Emiliano +Erasmo +Ezequiel +Faron +Farrell +Faustino +Feliciano +Fritz +Harrison +Herschel +Horace +Hunter +Jacky +Josef +Jules +Kalvin +Kennedy +Kieran +Kimball +Konrad +Laird +Lauren +Lennie +Levi +Loran +Lorin +Manny +Nestor +Parrish +Patricia +Porfirio +Quintin +Rayford +Reyes +Riley +Robb +Rocco +Rock +Rojelio +Rolland +Roque +Sammie +Serge +Shelby +Solomon +Stevan +Theron +Walt +Warner +Weston +Whitney +Ysidro +Adalberto +Aldo +Amador +Arlan +Aron +Artie +Audie +Augusto +Beau +Benedict +Brenda +Buck +Cal +Carleton +Cipriano +Cleo +Colby +Collin +Concepcion +Cordell +Corwin +Cynthia +Darcy +Davey +Davin +Denver +Derryl +Deryl +Dieter +Dimitri +Dondi +Donell +Dru +Dwane +Dwyane +Edgardo +Eleazar +Elijah +Eloy +Emanuel +Evaristo +Flint +Forest +Fransisco +Gaylord +German +Gerrit +Glynn +Grey +Hardy +Jere +Johnie +Karen +Kenney +Kennth +Lanny +Lauro +Leobardo +Librado +Lino +Logan +Lori +Lucas +Lucky +Merlin +Merrill +Mervin +Micky +Milo +Oren +Paulino +Primo +Quincy +Raynard +Renard +Ritchie +Roddy +Ronney +Rosendo +Rufus +Salvadore +Sharon +Stanford +Talmadge +Teresa +Theodor +Valentino +Weldon +Werner +Woody +Alexis +Ali +Allison +Amado +Anselmo +Arno +Bentley +Bernhard +Booker +Brenton +Briant +Brooke +Bryn +Candelario +Carmen +Carol +Chistopher +Christoper +Clarke +Connie +Conrado +Conway +Cort +Cristobal +Cyril +Cyrus +Dain +Damien +Daneil +Darold +Davie +Dayle +Debra +Dee +Delano +Delvin +Delwin +Diana +Donavon +Dorian +Dorsey +Duwayne +Dylan +Edson +Elizabeth +Elwood +Emerson +Ernst +Florentino +Foster +Garrick +Gearld +Gerold +Giles +Giovanni +Gorge +Herminio +Hosea +Isabel +Jacinto +Jef +Jeffory +Jeronimo +Jodie +Juvenal +Kary +Kathy +Kristian +Ladd +Laurance +Lazaro +Leighton +Liam +Linden +Loy +Lucio +Lucius +Macario +Manley +Marcellus +Maximino +Maxwell +Maynard +Micah +Michal +Nash +Niles +Nino +Norm +Oral +Oswaldo +Paolo +Parker +Perrin +Quinn +Rance +Randi +Reinaldo +Renaldo +Rito +Robbin +Roderic +Rollin +Rudolf +Sandor +Sandra +Silvano +Silvio +Sven +Tab +Tedd +Teodoro +Terri +Thom +Timmie +Tino +Titus +Torrey +Wilfredo +Wyatt +Yvonne +David +Michael +John +Robert +James +Mark +Richard +Steven +William +Scott +Jeffrey +Daniel +Kevin +Thomas +Paul +Kenneth +Brian +Ronald +Gregory +Joseph +Gary +Charles +Anthony +Timothy +Christopher +Eric +Donald +Mike +Edward +Steve +Douglas +Stephen +Jeff +Frank +Todd +Craig +Patrick +Larry +George +Raymond +Randy +Keith +Dennis +Peter +Chris +Matthew +Andrew +Jerry +Joe +Bruce +Danny +Jim +Jose +Greg +Jon +Martin +Tony +Terry +Roger +Alan +Vincent +Jeffery +Glenn +Phillip +Russell +Dale +Tim +Tom +Victor +Troy +Lawrence +Ricky +Rick +Bill +Dean +Arthur +Carl +Wayne +Gerald +Darryl +Bryan +Jack +Rodney +Jay +Johnny +Ralph +Randall +Curtis +Dan +Albert +Henry +Manuel +Bradley +Philip +Carlos +Ron +Ruben +Marc +Walter +Roy +Jonathan +Gilbert +Dave +Don +Barry +Jimmy +Allen +Brett +Kurt +Shawn +Juan +Lance +Kirk +Bob +Samuel +Bobby +Billy +Ray +Sean +Mario +Brent +Eddie +Darrell +Glen +Harold +Ken +Jesse +Leonard +Fred +Micheal +Louis +Mitchell +Ronnie +Kelly +Adam +Ernest +Brad +Lee +Joel +Luis +Antonio +Eugene +Stanley +Tracy +Aaron +Darren +Dwayne +Derek +Kent +Howard +Alfred +Benjamin +Guy +Doug +Jesus +Francisco +Norman +Frederick +Karl +Tommy +Alex +Ted +Raul +Dana +Ricardo +Theodore +Clifford +Andy +Marvin +Duane +Rudy +Miguel +Stuart +Armando +Gabriel +Gregg +Roberto +Hector +Nicholas +Gordon +Matt +Willie +Fernando +Javier +Wesley +Daryl +Jaime +Edwin +Perry +Alexander +Earl +Warren +Andre +Nick +Jason +Robin +Rene +Ramon +Marty +Oscar +Ross +Lloyd +Arturo +Vernon +Chuck +Leslie +Marcus +Jerome +Kenny +Bret +Salvador +Allan +Reginald +Lonnie +Harry +Melvin +Sam +Byron +Leo +Derrick +Gene +Kerry +Arnold +Randolph +Ben +Geoffrey +Grant +Nathan +Pete +Adrian +Alvin +Angel +Calvin +Pedro +Joey +Rafael +Christian +Neil +Marco +Kyle +Roland +Maurice +Pat +Darin +Erik +Floyd +Jorge +Vince +Cary +Cameron +Herbert +Leroy +Casey +Clayton +Eduardo +Rickey +Dwight +Rex +Wade +Clarence +Ernesto +Leon +Loren +Sergio +Clark +Curt +Neal +Phil +Francis +Alberto +Bernard +Cory +Ed +Rod +Roderick +Alfredo +Franklin +Lewis +Orlando +Charlie +Randal +Tyrone +Enrique +Rory +Damon +Dino +Rob +Benny +Clay +Julian +Alfonso +Clyde +Evan +Jamie +Kelvin +Lester +Tod +Clinton +Ernie +Corey +Marshall +Everett +Bart +Blake +Herman +Felipe +Jimmie +Rocky +Terrence +Wendell +Freddie +Guillermo +Gustavo +Jess +Johnnie +Alejandro +Fredrick +Leland +Mitch +Shannon +Donnie +Ian +Jessie +Kim +Bradford +Claude +Lorenzo +Rodolfo +Stewart +Abel +Darrel +Harvey +Hugh +Russ +Scot +Shane +Timmy +Angelo +Laurence +Mathew +Max +Miles +Ty +Edgar +Felix +Garry +Louie +Rudolph +Sidney +Dominic +Marcos +Drew +Gerardo +Jackie +Pablo +Terence +Cedric +Cesar +Gerard +Ivan +Monte +Nelson +Ryan +Edmund +Julio +Kris +Terrance +Wallace +Dewayne +Nathaniel +Noel +Stephan +Virgil +Delbert +Lyle +Milton +Robbie +Vance +Jacob +Monty +Clifton +Frankie +Hugo +Justin +Stan +Zachary +Darrin +Cecil +Guadalupe +Travis +Chad +Chester +Denny +Dirk +Sammy +Bert +Ignacio +Lynn +Malcolm +Rodger +Gilberto +Rich +Van +Buddy +Forrest +Garrett +Sheldon +Al +Jerald +Myron +Ramiro +Rusty +Andres +Art +Hans +Joshua +Robby +Rogelio +Conrad +Shaun +Colin +Denis +Roman +Brandon +Dane +Ismael +Stacey +Toby +Tyler +Alonzo +Gerry +Joaquin +Jody +Mickey +Blaine +Erick +Freddy +Lionel +Reynaldo +Saul +Xavier +Carlton +Erich +Isaac +Kennith +Marlon +Trent +Bryant +Devin +Donny +Jonathon +Lane +Luke +Moses +Willard +Carey +Stacy +Tomas +Eddy +Garth +Kendall +Nicolas +Rickie +Ronny +Simon +Spencer +Clint +Dion +Elias +Ira +Jeffry +Lamont +Michel +Morris +Reuben +Sherman +Ward +Abraham +Bennett +Blair +Bryon +Cliff +Daren +Earnest +Edmond +Fidel +Gino +Jean +Morgan +Barton +Bernie +Boyd +Doyle +Jeremy +Luther +Santiago +Teddy +Burton +Dexter +Elmer +Gavin +Kurtis +Preston +Brendan +Danial +Efrain +Emilio +Leonardo +Lorne +Owen +Randell +Rigoberto +Vaughn +Alton +Edwardo +Humberto +Jordan +Kraig +Mauricio +Oliver +Sal +Sterling +Vicente +Barney +Gil +Grady +Jan +Kip +Kirby +Les +Norris +Pierre +Elliott +Ethan +Joesph +Kory +Lenny +Lowell +Lupe +Reggie +Rodrigo +Salvatore +Santos +Sebastian +Seth +Wes +Archie +Bryce +Darnell +Erwin +Garland +Hal +Kirt +Raymundo +Tad +Wilbur +Will +Willis +Winston +Alphonso +Bennie +Dallas +Darwin +Murray +Otis +Rolando +Royce +Stefan +Alvaro +Avery +Cruz +Damian +Domingo +Fabian +Galen +Hank +Jerold +Marcel +Merle +Moises +Octavio +Richie +Trevor +Wally +Wilbert +Brady +Brook +Christophe +Del +Federico +Harlan +Irvin +Jefferson +Kenton +Lars +Lonny +Marlin +Mel +Noah +Sonny +Adolph +Augustine +Austin +Carter +Cornelius +Cornell +Derick +Dewey +Eldon +Eliseo +Emmett +Esteban +Gus +Jake +Josh +Lamar +Mitchel +Nicky +Rosendo +Russel +Sandy +Stevie +Sylvester +Terrell +Theron +Zane +Adolfo +Brooks +Butch +Chip +Courtney +Deon +Desmond +Donovan +Duke +Emanuel +Ervin +Frederic +Greggory +Gregorio +Harley +Israel +Jerrold +Johnathan +Kelley +Lincoln +Lorin +Ned +Reed +Reid +Reyes +Rhett +Rueben +Trinidad +Von +Wilson +Armand +Aubrey +Benito +Claudio +Donn +Duncan +Efren +Emil +Erin +Homer +Julius +Keven +Leif +Mary +Noe +Nolan +Parrish +Robb +Rodrick +Val +Agustin +Alec +Brock +Burt +Carlo +Cris +Dante +Dick +Diego +Douglass +Dudley +Geoff +Gonzalo +Herb +Hubert +Jefferey +Kristopher +Len +Lenard +Leopoldo +Loyd +Nickolas +Renaldo +Tommie +Warner +Wilfred +Aldo +Anton +Aurelio +Brant +Charley +Chet +Cole +Donnell +Dwain +Elliot +Ellis +Elton +Fredric +Graham +Harrison +Jacques +Jed +Lanny +Layne +Lindsay +Mack +Marion +Maury +Randel +Ronn +Scotty +Shon +Stanford +Taylor +Vic +Woodrow +Adan +Amado +Arnulfo +August +Benedict +Bernardo +Billie +Bobbie +Bruno +Cody +Coy +Curtiss +Darrick +Dell +Demetrius +Deron +Drake +Emmanuel +Errol +Flint +Genaro +Jamey +Kimberly +Lisa +Lon +Montgomery +Orville +Reno +Rey +Roosevelt +Sandra +Sanford +Timmothy +Tracey +Vern +Wayland +Abelardo +Adalberto +Andreas +Antony +Barrett +Berry +Donal +Dusty +Elbert +Elvis +Fritz +Hoyt +Josef +Junior +Keenan +Kieth +Leonel +Lindsey +Marcelino +Merrill +Micah +Michale +Milo +Nestor +Otto +Parker +Percy +Rand +Raoul +Raynard +Renee +Rock +Roscoe +Rudolfo +Rufus +Shelby +Thad +Vito +Antoine +Bradly +Breck +Britt +Cal +Cort +Cynthia +Daryle +Demetrio +Dustin +Dwaine +Edmundo +Eloy +Emery +Epifanio +Eugenio +Garret +Gerhard +Giovanni +Jared +Jayme +Jere +Leighton +Linda +Lucas +Mariano +Mikel +Modesto +Myles +Omar +Pernell +Quintin +Reese +Refugio +Royal +Thaddeus +Thor +Ulysses +Valentine +Valentino +Waymon +Whitney +Wiley +Willy +Winfred +Ahmad +Alfonzo +Alonso +Aric +Aron +Ashley +Barron +Basil +Benton +Bertram +Blaise +Blane +Christen +Cleo +Coleman +Cornel +Cyrus +Dalton +Darcy +Darian +Dario +Darius +Darold +Davis +Dee +Delton +Deric +Derrell +Derwin +Devon +Diana +Dwane +Edison +Emile +Fausto +Fermin +Forest +Foster +Franz +Freeman +Gabe +Garrick +Geary +Glendon +Hollis +Irving +Jonny +Landon +Leigh +Luciano +Maria +Maximo +Merlin +Mervin +Norbert +Rance +Rojelio +Rollin +Rosalio +Shelton +Stanton +Thane +Trenton +Tyson +Walt +Weldon +Willian +Alden +Allyn +Alva +Amador +Ambrose +Amos +Anderson +Andrea +Anthoney +Arron +Artie +Avelino +Baudelio +Bjorn +Blain +Brennan +Brenton +Brice +Caesar +Carson +Celso +Clemente +Corby +Daneil +Danilo +Dann +Dannie +Danniel +Darron +Darryll +Darvin +Deborah +Dennie +Derrel +Dieter +Dominick +Earle +Efrem +Elgin +Eli +Everardo +Ezequiel +Faustino +Florentino +Franklyn +Garold +Gerold +Glyn +Gregor +Heriberto +Herschel +Hilario +Horace +Isaias +Isidro +Jarvis +Jeffory +Jeremiah +Jude +Jules +Kasey +Kendrick +Kenney +Kermit +Kerwin +Konrad +Lawrance +Lemuel +Levi +Lonnell +Luiz +Macario +Marcelo +Markus +Mason +Mauro +Nels +Norm +Orrin +Pascual +Quentin +Ric +Ricki +Rico +Riley +Robbin +Rolf +Romney +Roque +Rosario +Samson +Samual +Sharon +Shayne +Sherry +Silvestre +Skip +Susan +Sven +Theo +Thurman +Tino +Tito +Tobias +Tobin +Tristan +Tye +Vincente +Vinson +Wyatt +Alexandro +Anastacio +Andra +Armin +Arnie +Asa +Ascencion +Augustin +Baltazar +Baron +Basilio +Beau +Bentley +Brandt +Broderick +Bryn +Buck +Bud +Carmen +Carnell +Carroll +Chance +Chauncey +Cleveland +Conrado +Crawford +Damien +Daron +Darryle +Davy +Delfino +Delmar +Denton +Denver +Derryl +Deryl +Dionicio +Dodd +Domenic +Donell +Donna +Edgardo +Elden +Elijah +Elvin +Emory +Enoch +Enrico +Erasmo +Farrell +Ferdinand +Fletcher +Frederico +Gaspar +Gaylord +Geronimo +Grover +Hardy +Hayward +Hershel +Hiram +Homero +Ivory +Jeb +Jefrey +Johnathon +Johnie +Judd +Juventino +Kalvin +Karen +Keary +Kennth +Kevan +Lafayette +Lauren +Laurie +Lauro +Lavell +Leandro +Lex +Logan +Lucio +Malcom +Marcial +Marshal +Maxwell +Mickel +Milan +Miquel +Morton +Nate +Niles +Norberto +Olin +Onesimo +Orin +Osvaldo +Patricia +Pepe +Prentice +Price +Quinn +Raleigh +Randolf +Raymon +Rian +Rito +Rocco +Roderic +Romulo +Rowland +Rubin +Rufino +Sammie +Serjio +Sid +Siegfried +Silverio +Solomon +Tab +Tedd +Terrill +Thom +Timmie +Tory +Trace +Truman +Tyron +Valentin +Victoria +Wayde +Wilfredo +Woody +Michael +David +John +Robert +James +Mark +Richard +William +Steven +Scott +Kevin +Daniel +Jeffrey +Thomas +Paul +Brian +Kenneth +Ronald +Gregory +Joseph +Charles +Anthony +Timothy +Gary +Christopher +Eric +Donald +Mike +Edward +Todd +Steve +Stephen +Douglas +Patrick +Frank +Craig +George +Larry +Keith +Raymond +Jeff +Matthew +Peter +Andrew +Randy +Dennis +Jerry +Martin +Chris +Jose +Joe +Danny +Vincent +Tony +Bruce +Terry +Greg +Jim +Jon +Alan +Russell +Roger +Victor +Jeffery +Phillip +Troy +Glenn +Tom +Rick +Tim +Lawrence +Bryan +Dean +Arthur +Carl +Manuel +Dale +Gerald +Randall +Curtis +Bill +Ricky +Albert +Darryl +Carlos +Shawn +Bradley +Jack +Johnny +Wayne +Jonathan +Rodney +Philip +Ralph +Dan +Jay +Sean +Henry +Brett +Gilbert +Roy +Mario +Don +Marc +Walter +Juan +Jimmy +Ron +Allen +Eddie +Ruben +Brent +Barry +Lance +Kurt +Samuel +Adam +Dave +Ken +Aaron +Louis +Kirk +Kelly +Ray +Darrell +Jesse +Billy +Bobby +Micheal +Ricardo +Bob +Ernest +Fred +Joel +Mitchell +Leonard +Darren +Jesus +Derek +Antonio +Tracy +Lee +Benjamin +Luis +Raul +Ronnie +Alex +Harold +Stanley +Clifford +Eugene +Glen +Dwayne +Karl +Brad +Frederick +Theodore +Tommy +Alfred +Howard +Duane +Guy +Norman +Rudy +Andy +Hector +Kent +Wesley +Gordon +Francisco +Marvin +Jaime +Jason +Dana +Miguel +Ted +Alexander +Roberto +Armando +Doug +Gabriel +Stuart +Marcus +Rene +Andre +Fernando +Ramon +Warren +Harry +Matt +Jorge +Nicholas +Oscar +Javier +Melvin +Gregg +Jerome +Derrick +Gene +Nathan +Nick +Lloyd +Arturo +Bret +Damon +Daryl +Earl +Edwin +Marty +Ross +Robin +Salvador +Willie +Erik +Perry +Darin +Kenny +Reginald +Lonnie +Leroy +Arnold +Kyle +Marco +Grant +Vernon +Byron +Allan +Joey +Maurice +Sam +Alfredo +Sergio +Kerry +Christian +Leo +Geoffrey +Pat +Adrian +Chuck +Clarence +Enrique +Leslie +Pedro +Pete +Rafael +Wade +Ben +Leon +Angel +Herbert +Randolph +Ernesto +Neil +Tyrone +Roland +Vince +Shane +Bernard +Calvin +Ernie +Loren +Randal +Cary +Eduardo +Alfonso +Rob +Ed +Rex +Orlando +Clayton +Franklin +Francis +Jamie +Ryan +Jessie +Jimmie +Neal +Blake +Cameron +Dwight +Kelvin +Alvin +Dominic +Lorenzo +Dino +Floyd +Gerardo +Jess +Louie +Rickey +Roderick +Rod +Abel +Alberto +Alejandro +Curt +Lewis +Clark +Clinton +Gustavo +Terence +Corey +Shaun +Terrence +Robbie +Benny +Garry +Mathew +Timmy +Charlie +Kim +Rudolph +Tod +Casey +Julian +Phil +Lester +Fredrick +Harvey +Max +Bart +Travis +Freddie +Lyle +Bradford +Chad +Clay +Felix +Ivan +Marcos +Frankie +Nathaniel +Shannon +Wendell +Monte +Rodolfo +Terrance +Guillermo +Ian +Marshall +Rodger +Clyde +Julio +Laurence +Leland +Pablo +Vance +Herman +Kris +Rory +Donnie +Edmund +Scot +Garrett +Gerard +Angelo +Dirk +Edgar +Evan +Everett +Johnnie +Cedric +Felipe +Ty +Cory +Darrel +Joshua +Justin +Rich +Russ +Trent +Claude +Clifton +Colin +Myron +Ramiro +Stephan +Brandon +Hugh +Jackie +Rocky +Cesar +Forrest +Jerald +Darrin +Drew +Miles +Nelson +Reynaldo +Carlton +Milton +Mitch +Reuben +Robby +Art +Gilberto +Hans +Jody +Rusty +Sammy +Stewart +Cecil +Dion +Guadalupe +Kendall +Isaac +Sheldon +Tyler +Bert +Dewayne +Spencer +Stan +Ward +Zachary +Bryant +Clint +Devin +Hugo +Jacob +Joaquin +Sherman +Stacey +Chester +Garth +Tomas +Blair +Denny +Ignacio +Lionel +Marlon +Virgil +Daren +Mickey +Preston +Saul +Teddy +Toby +Andres +Cliff +Erick +Jeffry +Monty +Morgan +Sidney +Blaine +Conrad +Delbert +Lynn +Wallace +Elias +Kurtis +Nicolas +Noel +Stacy +Barton +Buddy +Rolando +Van +Alonzo +Boyd +Brendan +Bryon +Dane +Erich +Freddy +Luke +Moises +Donny +Edmond +Seth +Hal +Rogelio +Xavier +Abraham +Adolfo +Al +Benito +Bennie +Elliott +Gerry +Mitchel +Randell +Agustin +Archie +Augustine +Eddy +Emilio +Gus +Kip +Dallas +Doyle +Elmer +Gonzalo +Lamont +Lenny +Lowell +Michel +Will +Bernie +Darwin +Ira +Malcolm +Morris +Pierre +Raymundo +Simon +Alton +Darnell +Domingo +Earnest +Ismael +Julius +Lane +Lonny +Royce +Santiago +Wes +Bennett +Fidel +Hank +Jerold +Keven +Kristopher +Omar +Rigoberto +Rodrigo +Roman +Stefan +Bryce +Danial +Duke +Efrain +Efren +Emanuel +Garland +Jake +Jean +Leonardo +Luther +Ronny +Sterling +Willis +Antoine +Anton +Cruz +Eldon +Ervin +Gil +Hubert +Humberto +Jeremy +Jerrold +Joesph +Kennith +Kenton +Kirt +Oliver +Owen +Reggie +Reid +Stoney +Willard +Zane +Carey +Denis +Donnell +Federico +Garret +Gino +Israel +Jan +Jordan +Les +Marion +Murray +Nicky +Norbert +Richie +Santos +Tad +Val +Winston +Alvaro +Austin +Gavin +Isidro +Jefferey +Jefferson +Kory +Lorne +Otis +Rickie +Rolf +Sal +Tommie +Wally +Barney +Brant +Burton +Chet +Chip +Damian +Graham +Homer +Josh +Kirby +Lars +Marcel +Moses +Vaughn +Vicente +Antony +Armand +Aurelio +Avery +Bernardo +Brady +Brook +Christophe +Dante +Dario +Derick +Edwardo +Elbert +Frederic +Grady +Horace +Lon +Lupe +Mariano +Quintin +Reyes +Russel +Wilbert +Alphonso +Brock +Burt +Carlo +Dick +Duncan +Eliseo +Ellis +Emmett +Erwin +Greggory +Jonathon +Kraig +Lincoln +Merle +Ned +Octavio +Robb +Scotty +Trevor +Cody +Darius +Del +Emil +Fabian +Galen +Harlan +Jacques +Lamar +Mauricio +Otto +Salvatore +Vern +Aldo +Basil +Brooks +Butch +Charley +Darrick +Dwain +Ethan +Faustino +Gregorio +Johnathan +Johnie +Luciano +Marcelino +Nickolas +Nolan +Rey +Roosevelt +Rueben +Trinidad +Wilbur +Wilfred +Aron +Brandt +Bruno +Cal +Cleveland +Darryle +Deon +Dexter +Donn +Edmundo +Elliot +Emery +Erin +Fritz +Giovanni +Hiram +Kelley +Lorin +Noe +Raynard +Terrell +Tracey +Vic +Abelardo +Alden +Alec +Arne +Aubrey +August +Billie +Carroll +Carter +Clemente +Courtney +Dannie +Demetrio +Desmond +Dewey +Douglass +Dwane +Emmanuel +Esteban +Florencio +German +Keenan +Kennedy +Kristian +Leif +Lucio +Maria +Marlin +Maury +Mervin +Solomon +Stevie +Theron +Andreas +Arnulfo +Baron +Blane +Brien +Claudio +Cornell +Daron +Davis +Delmar +Demetrius +Donovan +Genaro +Irvin +Laura +Lauren +Liam +Lindsey +Lino +Mary +Maynard +Norris +Paris +Quinn +Rand +Reed +Roderic +Rodrick +Shelton +Skip +Sonny +Terrill +Thor +Tyson +Wilson +Woody +Adan +Basilio +Brice +Caesar +Dalton +Damien +Derwin +Diego +Dustin +Eloy +Ezequiel +Forest +Heriberto +Herschel +Horacio +Irwin +Kai +Kendal +Kermit +Lennie +Leonel +Levi +Lisa +Loyd +Mack +Margarito +Mason +Mauro +Micah +Milo +Noah +Pieter +Porfirio +Rance +Refugio +Regan +Renee +Roque +Rosendo +Rufus +Samual +Sandra +Sandy +Sebastian +Sydney +Tal +Thaddeus +Timmie +Tobias +Trenton +Weston +Ali +Arnoldo +Arron +Barrett +Brain +Britt +Chance +Cole +Corbin +Cornelius +Cris +Curtiss +Darron +Deborah +Delano +Delfino +Devon +Dominick +Donell +Earle +Eli +Felton +Flavio +Geoff +Guido +Karen +Kit +Konrad +Lanny +Layne +Lenard +Leopoldo +Lesley +Lyndon +Markus +Mel +Montgomery +Oren +Orville +Quentin +Raphael +Rhett +Ric +Rolland +Shelby +Stanford +Susan +Sylvester +Taylor +Thurman +Timmothy +Trace +Verne +Vincente +Von +Winfred +Alexis +Anastacio +Antone +Augie +Benton +Bobbie +Bradly +Brion +Christoper +Collin +Coy +Cyrus +Darel +Darell +Dee +Dieter +Dorian +Drake +Dylan +Elvin +Emory +Enrico +Errol +Estevan +Faron +Franz +Gabe +Gabino +Garrick +Gearld +Gorge +Grover +Henri +Isaias +Jackson +Jaimie +Jeremiah +Jonny +Jude +Judson +Julie +Kevan +Kieth +Landon +Leigh +Linda +Lindsay +Mac +Manny +Marcello +Maxwell +Michele +Michelle +Modesto +Myles +Newton +Ollie +Patricia +Philippe +Ramsey +Raoul +Reno +Rico +Rocco +Rock +Salomon +Sanford +Shayne +Shon +Tab +Thad +Tobin +Tyron +Walker +Walt +Warner +Whitney +Adolph +Alain +Amos +Apolinar +Aram +Ashley +Attila +Baltazar +Bartholomew +Bernabe +Brooke +Bud +Burke +Candido +Carnell +Carson +Cipriano +Clement +Conrado +Cordell +Cynthia +Cyril +Danniel +Darryll +Davey +Dell +Denton +Derik +Derrell +Domenic +Dwaine +Eliot +Fermin +Florentino +Franklyn +Fransisco +Gale +Gerhard +Gerold +Harley +Hilton +Hollis +Huey +Hunter +Jared +Jayson +Jed +Jens +Jerrell +Junior +Kary +Kennard +Kenyatta +Len +Lex +Marcellino +Marko +Marshal +Maximo +Merlin +Mikel +Milan +Nels +Norberto +Olen +Orrin +Osvaldo +Pamela +Randel +Rayford +Rebecca +Reymundo +Richardo +Ritchie +Rojelio +Romeo +Ronn +Rudolfo +Sabino +Sid +Silas +Socorro +Stevan +Tate +Teodoro +Tino +Tito +Vinson +Willy +Woodrow +Yale +Ace +Albino +Alfonzo +Amado +Amador +Anthoney +Ariel +Arlen +Arnie +Artis +Audie +Augustin +Baldwin +Barbara +Benigno +Benson +Bernardino +Blas +Boris +Brenton +Buck +Candelario +Carol +Cass +Chauncey +Clarke +Claud +Constantino +Damone +Darryn +Daryll +Deandre +Denise +Donal +Donavan +Donna +Eleazar +Elizabeth +Elmo +Elpidio +Elton +Emerson +Emile +Eugenio +Everette +Fausto +Fletcher +Frederico +Gardner +Gildardo +Graydon +Harrison +Hilbert +Hipolito +Hosea +Irving +Isadore +Jeanpierre +Jere +Jerone +Jeronimo +Joby +Jorje +Josue +Jules +Juventino +Keneth +Lamonte +Lazaro +Loran +Lyn +Manfred +Marcell +Marcelo +Michal +Millard +Monroe +Morton +Nancy +Nestor +Niels +Nigel +Nils +Percy +Pernell +Price +Quincy +Rande +Randolf +Reagan +Refujio +Ricci +Riley +Roddy +Roscoe +Rowland +Serge +Servando +Shirley +Stanton +Stephon +Tedd +Terri +Thane +Tristan +Tye +Valentin +Valentine +Valentino +Vidal +Vito +Webster +Weldon +Wendall +Westley +Wiley +Wilfredo +Wilhelm +Willian +Winford +Zack +Zoltan +Michael +David +John +Robert +James +Richard +Mark +William +Steven +Kevin +Scott +Daniel +Paul +Jeffrey +Thomas +Kenneth +Brian +Joseph +Eric +Ronald +Christopher +Gregory +Anthony +Timothy +Charles +Gary +Donald +Patrick +Edward +Todd +Stephen +Mike +Douglas +Frank +Matthew +Steve +George +Andrew +Raymond +Keith +Craig +Peter +Larry +Jose +Jeff +Dennis +Randy +Jerry +Martin +Danny +Chris +Tony +Joe +Jon +Victor +Alan +Vincent +Terry +Jeffery +Russell +Bryan +Lawrence +Roger +Phillip +Greg +Tim +Jim +Bruce +Sean +Troy +Shawn +Arthur +Dean +Carl +Rodney +Gerald +Tom +Manuel +Wayne +Curtis +Randall +Jack +Philip +Rick +Albert +Bill +Glenn +Juan +Bradley +Marc +Carlos +Dale +Adam +Jonathan +Henry +Johnny +Jay +Ricky +Ruben +Darren +Brett +Samuel +Darryl +Ralph +Gilbert +Mario +Lance +Roy +Jimmy +Aaron +Dan +Kurt +Louis +Darrell +Allen +Walter +Bobby +Leonard +Ernest +Billy +Jesse +Brent +Jesus +Kirk +Ron +Eddie +Jason +Joel +Eugene +Don +Luis +Harold +Erik +Antonio +Ricardo +Barry +Mitchell +Ray +Derek +Ken +Benjamin +Frederick +Lee +Micheal +Kelly +Alex +Ronnie +Tracy +Francisco +Fred +Karl +Dave +Duane +Glen +Brad +Dwayne +Tommy +Theodore +Bob +Alfred +Kent +Howard +Miguel +Andre +Raul +Guy +Hector +Jaime +Nicholas +Clifford +Marvin +Alexander +Gordon +Norman +Andy +Stanley +Fernando +Roberto +Wesley +Rudy +Stuart +Ted +Armando +Darin +Gabriel +Ramon +Derrick +Javier +Harry +Rene +Dana +Earl +Warren +Damon +Doug +Reginald +Matt +Oscar +Marcus +Nathan +Gene +Arturo +Salvador +Bret +Maurice +Nick +Edwin +Melvin +Kenny +Pedro +Willie +Perry +Wade +Jorge +Byron +Gregg +Lloyd +Geoffrey +Calvin +Daryl +Alfredo +Ross +Vernon +Jerome +Neil +Joey +Enrique +Leon +Leslie +Lonnie +Robin +Shane +Ben +Kyle +Pat +Adrian +Loren +Rafael +Leo +Allan +Christian +Darrin +Marco +Grant +Herbert +Sergio +Ernesto +Sam +Eduardo +Alejandro +Alfonso +Arnold +Roland +Tyrone +Pete +Roderick +Neal +Shaun +Kerry +Lewis +Marty +Jimmie +Angel +Chuck +Floyd +Abel +Alberto +Cary +Chad +Mathew +Randolph +Clinton +Franklin +Jamie +Ian +Rodolfo +Bernard +Francis +Louie +Fredrick +Julian +Leroy +Randal +Dominic +Rex +Rob +Shannon +Casey +Terence +Julio +Clarence +Robbie +Bradford +Rickey +Travis +Jessie +Lester +Dwight +Evan +Tod +Benny +Vince +Darrel +Ernie +Guillermo +Timmy +Alvin +Angelo +Cesar +Corey +Kelvin +Curt +Johnnie +Terrence +Clay +Frankie +Lorenzo +Rod +Ed +Max +Kim +Clark +Felix +Marshall +Orlando +Brandon +Charlie +Edmund +Guadalupe +Scot +Felipe +Herman +Laurence +Leland +Clayton +Edgar +Monty +Terrance +Cory +Freddie +Gustavo +Ivan +Ryan +Cedric +Gerardo +Jess +Garrett +Harvey +Monte +Sidney +Bart +Everett +Stewart +Trent +Blake +Colin +Garry +Marcos +Rudolph +Cameron +Clifton +Clyde +Dino +Justin +Kris +Nathaniel +Devin +Jerald +Joaquin +Phil +Teddy +Gerard +Hans +Jody +Rory +Sammy +Ty +Claude +Daren +Donnie +Jackie +Joshua +Milton +Rich +Erick +Vance +Dane +Dirk +Hugo +Myron +Russ +Dewayne +Cecil +Miles +Spencer +Alonzo +Hugh +Lyle +Morgan +Pablo +Andres +Bert +Ignacio +Nelson +Stephan +Wendell +Reynaldo +Rodger +Bryon +Clint +Drew +Isaac +Jacob +Kendall +Lionel +Stacy +Wallace +Chester +Kurtis +Marlon +Garth +Gilberto +Conrad +Elias +Forrest +Ismael +Noel +Ramiro +Robby +Sheldon +Simon +Tomas +Virgil +Art +Humberto +Luke +Preston +Rolando +Rusty +Tyler +Xavier +Bennie +Brendan +Buddy +Ethan +Lamont +Lynn +Rocky +Zachary +Blaine +Damian +Denis +Dion +Gerry +Gino +Lonny +Mickey +Adolfo +Al +Carey +Ira +Lane +Toby +Archie +Bryant +Denny +Emilio +Reuben +Roman +Ronny +Salvatore +Augustine +Danial +Darnell +Fabian +Kip +Mauricio +Mitch +Oliver +Pierre +Dexter +Donny +Lyndon +Omar +Reed +Sherman +Tad +Van +Alton +Barney +Benito +Delbert +Doyle +Josh +Lon +Nicolas +Santiago +Carlton +Erwin +Esteban +Jan +Jeremy +Jordan +Mitchel +Moises +Sterling +Ward +Abraham +Erich +Freddy +Hank +Julius +Lincoln +Lowell +Willard +Blair +Elmer +Jean +Jeffry +Kenton +Lamar +Rogelio +Royce +Seth +Bennett +Boyd +Bryce +Dante +Edmond +Efrain +Joesph +Lorne +Marcel +Rodrigo +Thad +Trevor +Agustin +Barton +Cliff +Edwardo +Fidel +Kennith +Keven +Otis +Richie +Santos +Tommie +Vaughn +Vicente +Alvaro +Antoine +Bernardo +Donovan +Earnest +Gavin +Gregorio +Hal +Harlan +Leonardo +Morris +Rigoberto +Saul +Stacey +Stan +Theron +Chip +Demetrius +Garret +Gonzalo +Luther +Mack +Mel +Owen +Raymundo +Aubrey +Bernie +Billie +Dallas +Darwin +Gus +Kory +Randell +Sonny +Terrell +Aldo +Cruz +Dick +Diego +Domingo +Elliot +Galen +Gil +Malcolm +Mauro +Rodrick +Sandy +Sanford +Bradly +Courtney +Daron +Deron +Derwin +Donn +Efren +Homer +Isidro +Jefferson +Jonathon +Kraig +Kristopher +Lars +Lenny +Leopoldo +Lorin +Marion +Michel +Quinn +Scotty +Tracey +Vito +Wes +Wilbert +Anton +Antony +Brock +Cody +Darius +Drake +Duke +Eldon +Eliseo +Elliott +Erin +Jerold +Kennedy +Les +Lisa +Myles +Paris +Quentin +Vic +Willis +Alec +Alphonso +Andreas +Arnoldo +Brady +Brooks +Cornell +Duncan +Federico +Fritz +Johnathan +Layne +Lindsey +Marlin +Merle +Otto +Rosendo +Shon +Tobin +Austin +Charley +Chet +Claudio +Dannie +Del +Derick +Dominick +Elbert +Elton +Emil +Fletcher +Frederic +Grady +Heriberto +Hubert +Jake +Jerrold +Ned +Nickolas +Noe +Norbert +Quintin +Regan +Rickie +Roosevelt +Sebastian +Solomon +Val +Avery +Burton +Carlo +Dario +Darold +Deon +Deric +Devon +Donnell +Eddy +Eli +Ellis +Emmett +Everardo +Genaro +Graham +Harrison +Manny +Montgomery +Nicky +Raphael +Reid +Rey +Rhett +Russel +Shayne +Stefan +Trinidad +Von +Will +Winston +Adolph +Alfonzo +Arnulfo +Augustin +Brien +Clemente +Cris +Denver +Desmond +Destry +Dewey +Harley +Israel +Jeremiah +Logan +Loyd +Michale +Mikel +Millard +Nolan +Octavio +Robb +Rojelio +Rueben +Rufus +Shelby +Stevie +Valentino +Whitney +Alden +Aron +Brook +Bud +Burt +Cynthia +Dee +Delano +Enrico +Errol +Filiberto +Giovanni +Gorge +Greggory +Hilario +Horace +Jacques +Jaimie +Jamey +Jefferey +Josef +Jude +Junior +Kirt +Leonel +Levi +Lou +Marcelino +Milo +Murray +Noah +Norberto +Raymon +Reggie +Sandra +Skip +Sydney +Timmothy +Wiley +Willy +Amado +Anthoney +Arron +Aurelio +Blane +Blas +Bobbie +Brant +Britt +Caesar +Cal +Christophe +Collin +Cornelius +Damien +Danniel +Darron +Douglass +Dwain +Emery +Ezequiel +Florencio +Gabe +Garland +Herb +Hiram +Jared +Karen +Keenan +Kelley +Kermit +Len +Lenard +Lennie +Lucio +Lupe +Marcellus +Marcelo +Maury +Maxwell +Micah +Nestor +Nils +Orville +Parrish +Quint +Randel +Raoul +Raynard +Refugio +Reyes +Rudolfo +Sal +Thaddeus +Tino +Valentin +Vidal +Walt +Wilbur +Alain +Alexandro +Alonso +Arne +August +Beau +Benedict +Carter +Chance +Chauncey +Darrick +Demetrio +Emile +Estevan +Faustino +Fausto +Fermin +Franz +Jackson +Jere +Laron +Laura +Leobardo +Loran +Luciano +Manfred +Marcial +Mary +Oren +Percy +Pernell +Reno +Ritchie +Rolf +Rolland +Royal +Tate +Thor +Tye +Uriel +Vern +Wally +Wilfred +Wilson +Abelardo +Adrain +Andrea +Armand +Barrett +Barron +Bartley +Berry +Brice +Brooke +Burl +Butch +Celso +Cleveland +Cristobal +Dalton +Davin +Deandre +Denise +Dereck +Donnel +Dorian +Dudley +Dusty +Earle +Edmundo +Eloy +Emanuel +Emmanuel +Eriberto +Everette +Fidencio +Fitzgerald +German +Horacio +Irving +Irwin +Jacinto +Kenyon +Kieth +Kirby +Konrad +Kristian +Lawrance +Lex +Linda +Lino +Milan +Moses +Nino +Odis +Philippe +Porfirio +Regis +Richardo +Rico +Rosalio +Roscoe +Shelton +Stoney +Susan +Sven +Tadd +Taylor +Thurman +Wyatt +York +Zoltan +Adan +Alexis +Allyn +Alphonse +Andra +Angus +Anson +Antone +Aram +Artemio +Asa +Audie +Basilio +Bertrand +Booker +Boris +Brennan +Bruno +Buck +Caleb +Carmelo +Carmen +Carroll +Cavin +Cleo +Cordell +Darell +Daryn +Deborah +Debra +Delmar +Domenic +Dominique +Durrell +Dustin +Duwayne +Dwane +Dylan +Efrem +Elgin +Elroy +Elvin +Emerson +Esequiel +Eugenio +Felton +Florentino +Flynn +Fredric +Garrick +Geno +Geoff +Giles +Grover +Hilton +Irvin +Jacque +Juventino +Kai +Kasey +Kimberly +Korey +Laird +Lanny +Leif +Leigh +Lindsay +Lucas +Lucky +Lyman +Mace +Margarito +Mason +Mateo +Merrill +Mervin +Michiel +Norris +Odell +Olin +Parris +Patrice +Patricio +Ramsey +Rand +Randle +Reymundo +Riley +Sabino +Sammie +Shan +Silvio +Thane +Trace +Trenton +Truman +Valente +Vincente +Waldo +Wilford +Wilfredo +Ace +Ali +Amador +Amos +Anderson +Arden +Ari +Arlie +Arlin +Armond +Arnie +Baltazar +Benton +Bertram +Blain +Bonifacio +Braden +Brandt +Brenton +Candelario +Catarino +Cecilio +Clarke +Clement +Cleve +Cole +Cort +Creighton +Cyril +Cyrus +Danilo +Darian +Demetrios +Derik +Derrell +Devlin +Dieter +Dodd +Domonic +Doran +Eamon +Edison +Eleazar +Elston +Elvis +Ephraim +Erasmo +Ervin +Eusebio +Feliciano +Forest +Francois +Franklyn +Fredy +Gale +Garren +Gillermo +Henri +Hollis +Ildefonso +Issac +Jacqueline +Jame +Johan +Jonas +Jonny +Joseluis +Julie +Justo +Kathy +Kendrick +Keneth +Kit +Kristofer +Lamonte +Landon +Lauren +Lazaro +Lennard +Lesley +Link +Lovell +Manual +Maria +Mariano +Marlan +Merlin +Michele +Monroe +Olen +Ollie +Parker +Pascual +Patricia +Perfecto +Prince +Quinton +Rayford +Raymondo +Renato +Renee +Robinson +Roby +Rocco +Roddy +Roderic +Roel +Ronaldo +Roque +Rosario +Rowan +Salvadore +Scottie +Shelley +Shelly +Silvano +Stanford +Stevan +Sylvester +Tal +Tammy +Titus +Tyron +Valentine +Warner +Werner +Westley +Woodrow +Yul +Zane +Zeke +Michael +David +John +Robert +James +Richard +Mark +Steven +William +Daniel +Kevin +Paul +Christopher +Scott +Jeffrey +Eric +Brian +Thomas +Timothy +Joseph +Kenneth +Anthony +Ronald +Gregory +Charles +Gary +Donald +Edward +Patrick +Stephen +Todd +Matthew +Douglas +Mike +Andrew +Frank +George +Raymond +Jose +Sean +Craig +Peter +Rodney +Keith +Steve +Larry +Dennis +Jerry +Darren +Jeff +Randy +Martin +Vincent +Danny +Chris +Jon +Victor +Tony +Shawn +Joe +Bryan +Troy +Jeffery +Russell +Terry +Phillip +Lawrence +Bruce +Arthur +Erik +Roger +Manuel +Gerald +Alan +Juan +Dean +Jonathan +Jim +Tim +Johnny +Carl +Darryl +Greg +Marc +Carlos +Bradley +Darrin +Albert +Curtis +Philip +Wayne +Jason +Ralph +Samuel +Ricky +Aaron +Roy +Glenn +Jack +Rick +Adam +Tom +Henry +Randall +Mario +Jimmy +Dale +Darin +Ruben +Darrell +Brett +Gilbert +Bill +Derek +Dan +Louis +Jesse +Walter +Lance +Kurt +Luis +Ricardo +Ernest +Jay +Leonard +Bobby +Billy +Allen +Antonio +Brent +Benjamin +Eddie +Jesus +Ron +Joel +Kirk +Alex +Don +Harold +Fred +Ray +Frederick +Micheal +Tracy +Barry +Andre +Glen +Ronnie +Norman +Hector +Roberto +Jaime +Kelly +Francisco +Gabriel +Alfred +Eugene +Nicholas +Karl +Raul +Mitchell +Dwayne +Theodore +Armando +Alexander +Miguel +Guy +Duane +Brad +Rudy +Stanley +Javier +Derrick +Lee +Tommy +Howard +Ken +Marcus +Oscar +Dave +Marvin +Kent +Ramon +Rene +Ryan +Clifford +Jorge +Wesley +Andy +Ted +Nathan +Salvador +Warren +Bob +Doug +Earl +Gordon +Jerome +Reginald +Arturo +Edwin +Alfredo +Damon +Eduardo +Melvin +Daryl +Fernando +Lonnie +Matt +Nick +Harry +Christian +Pedro +Geoffrey +Lloyd +Rafael +Adrian +Allan +Sergio +Perry +Dana +Leslie +Marco +Kenny +Ross +Stuart +Willie +Arnold +Chad +Ian +Byron +Tyrone +Alberto +Angel +Joey +Shane +Gregg +Alejandro +Shannon +Bret +Gene +Kerry +Neil +Alfonso +Ernesto +Loren +Grant +Vernon +Calvin +Daren +Maurice +Bernard +Enrique +Pete +Randolph +Franklin +Kyle +Dwight +Jimmie +Leroy +Travis +Wade +Gerardo +Herbert +Robin +Roderick +Jamie +Leo +Erick +Rod +Rodolfo +Abel +Cary +Leon +Marty +Mathew +Roland +Ben +Louie +Pat +Fredrick +Vince +Cesar +Orlando +Shaun +Rex +Sam +Brandon +Clayton +Gustavo +Clarence +Clinton +Randal +Floyd +Frankie +Julio +Alvin +Lewis +Francis +Rob +Scot +Toby +Bradford +Guillermo +Lorenzo +Ivan +Lester +Chuck +Evan +Marcos +Marshall +Terrence +Casey +Dominic +Herman +Julian +Clark +Clyde +Felix +Neal +Stacy +Curt +Edgar +Nathaniel +Cameron +Donnie +Joshua +Felipe +Guadalupe +Jessie +Colin +Kelvin +Pablo +Terrance +Wendell +Corey +Ernie +Miles +Charlie +Harvey +Hugh +Jess +Max +Vance +Freddie +Rickey +Ignacio +Monte +Robbie +Rudolph +Alonzo +Andres +Benny +Devin +Jody +Phil +Sidney +Dino +Stewart +Angelo +Edmund +Jeremy +Justin +Terence +Timmy +Milton +Noel +Cory +Dewayne +Sammy +Stacey +Trent +Dion +Johnnie +Trevor +Bart +Garrett +Leland +Tomas +Chester +Gino +Hugo +Isaac +Kim +Nelson +Rolando +Rory +Spencer +Blake +Darrel +Myron +Stephan +Ty +Tyler +Cedric +Gilberto +Ismael +Jerald +Lyle +Monty +Pierre +Kendall +Conrad +Dirk +Everett +Jacob +Laurence +Sheldon +Abraham +Clifton +Drew +Elias +Hans +Lamont +Reuben +Ed +Erich +Robby +Ramiro +Tod +Art +Bryon +Reynaldo +Rocky +Teddy +Wallace +Jean +Ward +Augustine +Cecil +Forrest +Gavin +Humberto +Jackie +Kip +Nicolas +Rich +Roman +Rusty +Saul +Bryant +Dane +Demetrius +Denny +Edmond +Joaquin +Lionel +Marcel +Marlon +Mickey +Rogelio +Adolfo +Bert +Freddy +Gerard +Kurtis +Agustin +Brendan +Derick +Ethan +Garth +Jeffry +Leonardo +Preston +Tad +Xavier +Blaine +Carey +Claude +Edwardo +Garry +Gonzalo +Owen +Simon +Stefan +Van +Willard +Boyd +Bryce +Emilio +Kris +Brock +Damian +Darnell +Domingo +Donnell +Morgan +Morris +Ronny +Santiago +Vicente +Zachary +Benito +Clint +Eddy +Otis +Rodger +Russ +Salvatore +Virgil +Antoine +Darron +Fidel +Gerry +Ira +Israel +Kristopher +Moises +Omar +Fabian +Galen +Jan +Jordan +Mauricio +Bennie +Deron +Johnathan +Lon +Malcolm +Oliver +Raymundo +Santos +Seth +Sherman +Carlton +Clay +Daron +Denis +Doyle +Elliott +Lane +Luke +Rodrigo +Alvaro +Blair +Buddy +Danial +Delbert +Donovan +Efrain +Jefferson +Lowell +Russel +Vaughn +Archie +Del +Gregorio +Harlan +Julius +Kory +Michel +Mitch +Stan +Tommie +Wes +Will +Winston +Antony +Avery +Bernardo +Cliff +Cornelius +Dexter +Gil +Hal +Jonathon +Lynn +Sandy +Wilfred +Willis +Barton +Bennett +Dante +Desmond +Ellis +Elmer +Federico +Kraig +Lorne +Luther +Moses +Reed +Rickie +Rigoberto +Scotty +Shon +Trinidad +Alec +Baron +Bud +Diego +Duncan +Emmett +Erin +Esteban +Jacques +Jayson +Jerrold +Noe +Sonny +Sterling +Billie +Burton +Carter +Courtney +Devon +Donny +Emanuel +Jefferey +Keven +Lorin +Nicky +Octavio +Reyes +Sal +Tracey +Zane +Austin +Bernie +Brady +Burt +Christophe +Cody +Dallas +Dewey +Efren +Eldon +Garland +Harley +Horace +Lamar +Leif +Reggie +Richie +Rodrick +Royce +Terrell +Wilbert +Al +Aldo +Alton +Arnoldo +Daryn +Emil +Franz +Garret +Gus +Hank +Hubert +Jackson +Jake +Jared +Kennith +Lenny +Marlin +Randell +Shayne +Theo +Vern +Arnulfo +Cornell +Dario +Gorge +Graham +Greggory +Heriberto +Isidro +Kimberly +Kirt +Lars +Lawrance +Lonny +Marcelo +Murray +Norbert +Quinn +Rudolfo +Tino +Wally +Alphonso +Andreas +Anton +August +Barney +Bobbie +Bruno +Cruz +Darwin +Donn +Elbert +Joesph +Josh +Kelley +Len +Lisa +Marion +Markus +Merle +Micah +Mikel +Mitchel +Ned +Parrish +Percy +Regan +Sammie +Timmothy +Val +Wilson +Andrea +Aubrey +Bradly +Cordell +Curtiss +Darius +Deandre +Deric +Dimitri +Drake +Dustin +Eloy +Erie +Errol +Ervin +Frederic +Fredric +Genaro +Jerold +Jonas +Layne +Logan +Luciano +Marcello +Noah +Parker +Pernell +Raphael +Roosevelt +Sebastian +Stevie +Thor +Tobias +Amador +Armand +Aron +Butch +Carlo +Cole +Collin +Cyrus +Darryn +Deon +Dwain +Earnest +Edmundo +Efrem +Eli +Eugenio +Farrell +Fermin +Forest +Geoff +German +Grady +Hilario +Junior +Kary +Kirby +Les +Lupe +Mariano +Mason +Myles +Nels +Paris +Robb +Roderic +Sanford +Solomon +Stanford +Sven +Thad +Trace +Adan +Adolph +Alden +Alexis +Alonso +Amos +Artie +Benton +Brant +Brien +Brooks +Buck +Chet +Cris +Damien +Danniel +Darrick +Deborah +Delmar +Dominick +Elizabeth +Elton +Esequiel +Giovanni +Johan +Johnie +Lenard +Leonel +Mel +Mervin +Milan +Patricio +Randel +Reymundo +Rosendo +Sylvester +Taylor +Tory +Vincente +Abelardo +Amado +Anselmo +Ari +Arne +Barrett +Basil +Beau +Darold +Davin +Derwin +Donal +Dudley +Emery +Emmanuel +Enrico +Florencio +Fransisco +Irvin +Jamey +Jeremiah +Jules +Karen +Kendrick +Kevan +Kieth +Kit +Kristian +Leandro +Lemuel +Marcelino +Margarito +Maury +Newton +Patric +Philippe +Quinton +Raynard +Refugio +Reid +Rollin +Rupert +Stanton +Theron +Thurman +Trenton +Valentine +Vic +Von +Ali +Arron +Augie +Aurelio +Brain +Brennan +Charley +Chip +Clement +Cynthia +Darcy +Darell +Dee +Derald +Dereck +Derik +Derrell +Destry +Dieter +Dondi +Dorian +Douglass +Dwaine +Edgardo +Eliseo +Elvin +Erwin +Felton +Florentino +Garett +Garrick +Harrison +Huey +Irving +Johnathon +Jude +Kai +Lanny +Leigh +Lincoln +Lindsay +Lino +Lucas +Lucio +Maria +Mary +Mauro +Mckinley +Merritt +Millard +Milo +Modesto +Montgomery +Nestor +Nolan +Otto +Porfirio +Quintin +Reece +Rolland +Romeo +Ronaldo +Rosalio +Rueben +Sabino +Shelby +Shelton +Skip +Stevan +Teodoro +Thaddeus +Truman +Tyson +Uriel +Vito +Whitney +Woodrow +Woody +Wyatt +Ysidro +Abram +Adalberto +Alain +Aric +Armon +Asa +Augustin +Barron +Bernabe +Bernardino +Blaise +Booker +Braden +Brandt +Brendon +Broderick +Burke +Cal +Carroll +Claudio +Cristobal +Dagoberto +Damion +Dannie +Darian +Darien +Davis +Denise +Derric +Derron +Deven +Dewitt +Dick +Dominique +Donna +Dorsey +Dylan +Ector +Eldridge +Elgin +Elvis +Eriberto +Fabio +Ferman +Fritz +Gaston +Gerhard +Granville +Hernan +Hunter +Josef +Kay +Keenan +Kennedy +Kenyon +Kieran +Lamarr +Lavell +Lazaro +Leeroy +Leopoldo +Lex +Lindsey +Loyd +Lyman +Lyndon +Mart +Nickolas +Nikolas +Odell +Quincy +Rand +Ric +Richardo +Ritchie +Rocco +Rodd +Roddy +Roel +Roscoe +Rowland +Sandra +Shanon +Sydney +Tedd +Teresa +Trey +Valentin +Valentino +Vidal +Warner +Wilbur +Wiley +Williams +Albino +Alexandro +Alfonzo +Alford +Alicia +Alvino +Americo +Amir +Anderson +Anson +Antione +Antonino +Ariel +Arnie +Blane +Bonifacio +Brice +Brook +Caesar +Camilo +Candelario +Carmelo +Chauncey +Christoph +Cindy +Cipriano +Clarke +Clemente +Constantine +Constantino +Cort +Courtland +Coy +Cyril +Dalton +Danilo +Daryle +Davie +Dawayne +Delano +Demetrio +Derrik +Derryl +Dmitri +Donavan +Donell +Duke +Dusty +Dwane +Earle +Eliasar +Elliot +Emory +Evaristo +Ezekiel +Ezra +Faron +Faustino +Feliciano +Fletcher +Fortino +Franklyn +Franky +Garfield +Gian +Graig +Grover +Gunnar +Gunther +Helmut +Homer +Horacio +Isaias +Issac +Ivory +Jennifer +Jens +Jodie +Johannes +Johnson +Josue +Kathleen +Kennth +Kenton +Kipp +Konrad +Korey +Kurk +Ladd +Landon +Laron +Laura +Lennie +Leobardo +Lesley +Liam +Linda +Llewellyn +Lonnell +Lori +Lucky +Lyn +Macario +Mack +Manny +Marcellus +Marque +Matias +Maximiliano +Maximino +Melton +Merrill +Michale +Michele +Micky +Morton +Napoleon +Nate +Natividad +Nevin +Norberto +Oren +Parnell +Paulo +Prince +Quentin +Rainer +Randle +Randolf +Raoul +Raymon +Raynaldo +Reese +Reginal +Renard +Renato +Renee +Reno +Rhett +Rolf +Rosario +Royal +Rufus +Salomon +Samual +Steffon +Teofilo +Timothey +Titus +Tor +Tye +Ulysses +Verne +Vernell +Vladimir +Weston +Wilfredo +Willam +Michael +David +Robert +John +James +Richard +Mark +Steven +William +Christopher +Daniel +Brian +Jeffrey +Paul +Scott +Eric +Kevin +Timothy +Anthony +Thomas +Joseph +Kenneth +Ronald +Charles +Gregory +Gary +Stephen +Matthew +Edward +Sean +Donald +Todd +Patrick +Andrew +Jose +Douglas +Frank +Keith +George +Raymond +Craig +Mike +Rodney +Peter +Shawn +Dennis +Steve +Larry +Jerry +Martin +Bryan +Troy +Chris +Jeff +Jason +Randy +Vincent +Joe +Tony +Jeffery +Darren +Jon +Victor +Juan +Danny +Phillip +Manuel +Roger +Dean +Jonathan +Bruce +Carlos +Lawrence +Arthur +Russell +Erik +Terry +Gerald +Aaron +Johnny +Jim +Albert +Marc +Alan +Samuel +Curtis +Tim +Carl +Ruben +Mario +Wayne +Brett +Bradley +Henry +Glenn +Dale +Greg +Jesse +Philip +Adam +Randall +Jack +Derek +Jesus +Ricky +Darin +Jimmy +Luis +Gilbert +Ralph +Walter +Brent +Roy +Darryl +Louis +Darrin +Joel +Benjamin +Antonio +Lance +Ernest +Ricardo +Jay +Rick +Raul +Francisco +Allen +Tom +Kelly +Kurt +Tracy +Darrell +Harold +Eugene +Jaime +Leonard +Bobby +Kirk +Eddie +Miguel +Don +Hector +Javier +Ray +Roberto +Norman +Fred +Lee +Alexander +Bill +Derrick +Billy +Tommy +Alex +Micheal +Andre +Nicholas +Ron +Gabriel +Frederick +Oscar +Barry +Jorge +Ronnie +Dan +Armando +Glen +Theodore +Dwayne +Ryan +Duane +Chad +Ramon +Kyle +Christian +Alfred +Marvin +Damon +Arturo +Karl +Salvador +Fernando +Brad +Howard +Wesley +Mitchell +Earl +Guy +Stanley +Rudy +Rene +Ken +Gordon +Marcus +Eduardo +Clifford +Kent +Dave +Marco +Shane +Matt +Bret +Warren +Nathan +Alfredo +Edwin +Pedro +Sergio +Shannon +Alberto +Byron +Daryl +Ian +Jerome +Enrique +Lonnie +Willie +Harry +Melvin +Nick +Reginald +Ross +Ted +Andy +Rafael +Geoffrey +Angel +Lloyd +Tyrone +Alfonso +Stuart +Bob +Adrian +Dana +Trevor +Cary +Maurice +Loren +Allan +Mathew +Alejandro +Travis +Gene +Gregg +Neil +Franklin +Calvin +Bernard +Wade +Ernesto +Leo +Leon +Ben +Jimmie +Leslie +Doug +Perry +Kenny +Gerardo +Jamie +Kerry +Joey +Arnold +Casey +Ernie +Grant +Randolph +Fredrick +Gustavo +Sam +Shaun +Vernon +Leroy +Lorenzo +Pete +Clarence +Lewis +Floyd +Frankie +Cesar +Dino +Roland +Erick +Robin +Dominic +Felix +Joshua +Daren +Francis +Julian +Randal +Andres +Roderick +Guillermo +Marty +Julio +Max +Orlando +Rodolfo +Terrence +Alvin +Corey +Rod +Brandon +Clayton +Ivan +Rudolph +Evan +Nathaniel +Neal +Abel +Brendan +Devin +Herbert +Jessie +Pablo +Clinton +Rex +Terrance +Jess +Marshall +Freddie +Garrett +Louie +Ramiro +Stephan +Dwight +Ignacio +Jeremy +Kelvin +Lester +Rob +Pat +Terence +Timmy +Bradford +Edgar +Jerald +Chuck +Clark +Jody +Reynaldo +Cameron +Felipe +Isaac +Leland +Charlie +Dion +Robbie +Harvey +Justin +Trent +Angelo +Ismael +Marcos +Everett +Lyle +Sammy +Colin +Herman +Johnnie +Alonzo +Cedric +Cory +Guadalupe +Phil +Sidney +Tyler +Vance +Vince +Wallace +Gilberto +Benny +Darrel +Dirk +Erich +Jacob +Morgan +Rickey +Tomas +Xavier +Abraham +Bart +Drew +Hugo +Scot +Curt +Deron +Edmund +Forrest +Garry +Rogelio +Zachary +Kim +Monte +Monty +Claude +Clifton +Denny +Jackie +Joaquin +Laurence +Milton +Sheldon +Stewart +Bryant +Cecil +Dewayne +Preston +Stacy +Agustin +Donnie +Elias +Esteban +Jared +Rodger +Tod +Ty +Clyde +Daron +Delbert +Hans +Hugh +Kurtis +Myron +Nelson +Noel +Roman +Simon +Blake +Bryon +Clint +Conrad +Ed +Heath +Jonathon +Marlon +Santiago +Virgil +Darnell +Fidel +Gerard +Kris +Spencer +Toby +Omar +Rory +Stacey +Wendell +Blaine +Edwardo +Humberto +Jordan +Lamont +Sherman +Dane +Fabian +Jarrod +Jeffry +Oliver +Pierre +Teddy +Bert +Carlton +Gavin +Kendall +Lorne +Lynn +Robby +Van +Vicente +Adolfo +Barton +Elliott +Kristopher +Leonardo +Mauricio +Miles +Reuben +Rocky +Rolando +Blair +Cliff +Dante +Derick +Donovan +Garth +Johnathan +Lowell +Mickey +Owen +Buddy +Chester +Elmer +Jean +Santos +Scotty +Archie +Darius +Nicolas +Reed +Salvatore +Bennie +Denis +Deon +Ethan +Ira +Jan +Leopoldo +Lionel +Marcel +Moises +Morris +Ronny +Seth +Stefan +Vaughn +Art +Carey +Damian +Eddy +Edmond +Efrain +Gino +Joesph +Kip +Luke +Rich +Tracey +Wilson +Alvaro +Danial +Darwin +Demetrius +Efren +Emilio +Gonzalo +Lane +Noah +Bernardo +Doyle +Erin +Federico +Gregorio +Marlin +Octavio +Royce +Rusty +Saul +Sterling +Willard +Brock +Bryce +Freddy +Jefferson +Mitchel +Otis +Stan +Tad +Alec +Beau +Julius +Rodrigo +Alphonso +Andreas +Antoine +Augustine +Aurelio +Cornell +Donnell +Eliseo +Heriberto +Josh +Lamar +Malcolm +Roosevelt +Tommie +Trinidad +Arnulfo +Darron +Diego +Donny +Duncan +Dwain +Earnest +Galen +Gerry +Hal +Hubert +Israel +Keven +Lon +Lonny +Luther +Michel +Nickolas +Otto +Randell +Rigoberto +Russ +Aron +Barney +Benito +Boyd +Brooks +Cody +Courtney +Dario +Dexter +Duke +Gil +Graham +Gus +Homer +Lars +Moses +Raymundo +Sandy +Sonny +Terrell +Thad +Adan +Bradly +Carlo +Clay +Domingo +Kennith +Marion +Rickie +Shon +Timmothy +Wilfred +Will +Armand +Austin +Billie +Brant +Claudio +Cruz +Dominick +Jerold +Kirt +Mack +Marcelino +Marcelo +Nicky +Reggie +Reid +Sebastian +Shelby +Stevie +Theron +Wilbert +Al +Anton +Antony +Aubrey +August +Carter +Eli +Eloy +German +Jacques +Jake +Jefferey +Kimberly +Kirby +Kraig +Lenny +Lino +Maria +Norbert +Percy +Quinn +Reese +Refugio +Rudolfo +Sylvester +Ulysses +Ward +Wes +Alexandro +Alexis +Arron +Bennett +Caesar +Chance +Christophe +Collin +Desmond +Donn +Dorian +Erwin +Florentino +Frederic +Grady +Hank +Harley +Isidro +Kai +Kristian +Lazaro +Lupe +Mauro +Maxwell +Micah +Ned +Patricio +Quintin +Raphael +Richie +Russel +Sal +Taylor +Tobin +Abelardo +Adolph +Aric +Avery +Berry +Bobbie +Brain +Brenden +Cornelius +Damien +Darrick +Daryle +Dell +Derwin +Douglass +Drake +Dylan +Eldon +Emmett +Ervin +Garret +Greggory +Jens +Jeremiah +Jerrold +Lafayette +Leif +Les +Lorin +Lucio +Marcell +Mason +Mel +Nestor +Porfirio +Quentin +Riley +Rodrick +Rufus +Sanford +Thaddeus +Val +Valentin +Vern +Wilbur +Winston +Aldo +Alvino +Arnoldo +Augustin +Bernie +Brien +Brook +Burt +Charley +Chet +Clemente +Cris +Dallas +Davis +Deandre +Destry +Devon +Dimitri +Elbert +Eliot +Elliot +Ellis +Emil +Eugenio +Ezequiel +Fermin +Geoff +Giovanni +Gorge +Hilario +Hiram +Jacinto +Jackson +Jayson +Johnathon +Jorje +Layne +Leonel +Lyndon +Mariano +Mitch +Myles +Orville +Reyes +Rolf +Rueben +Skip +Trace +Von +Wally +Weston +Alden +Ali +Alton +Antone +Audie +Baron +Bertram +Bruno +Celestino +Constantine +Damone +Dannie +Delmar +Edgardo +Elvin +Emanuel +Errol +Eusebio +Everardo +Fransisco +Franz +Garett +Garland +Genaro +Geno +Harlan +Henri +Horace +Kennedy +Kenton +Kit +Lavell +Lincoln +Mary +Merle +Michele +Michelle +Mikel +Montgomery +Murray +Randel +Regan +Rhett +Rojelio +Rosendo +Sandor +Titus +Trenton +Victoria +Willis +Yancy +Zane +Adalberto +Alfonzo +Blas +Boris +Brady +Brandt +Brice +Cedrick +Cordell +Cyrus +Darryn +Del +Denise +Deric +Derrell +Dewey +Dick +Elizabeth +Elvis +Enrico +Erie +Guido +Horacio +Ivory +Jules +Kelley +Kieth +Kory +Lanny +Lemuel +Len +Lucas +Margarito +Markus +Merrill +Michale +Milo +Nels +Nils +Noe +Nolan +Norris +Paris +Patricia +Raymon +Raynard +Reece +Reymundo +Ritchie +Robie +Romeo +Roque +Samual +Susan +Tito +Tyson +Walt +Woodrow +Abe +Anselmo +Anthoney +Ari +Arne +Arnie +Augustus +Barrett +Blaise +Brenton +Britton +Buck +Burke +Butch +Caleb +Candelario +Candido +Cleon +Conrado +Coy +Damion +Danilo +Darcy +Delano +Dereck +Derik +Derric +Dominique +Donell +Efrem +Elgin +Emery +Emiliano +Estevan +Faustino +Fletcher +Florencio +Fredric +Gaylen +Giuseppe +Irwin +Jarrett +Jarvis +Josef +Judson +Kendrick +Kevan +Kipp +Laroy +Levi +Liam +Lindsay +Manny +Marko +Mick +Monroe +Napoleon +Narciso +Oran +Orin +Parrish +Rand +Randle +Raoul +Robb +Rocco +Roddy +Roderic +Shad +Sid +Socorro +Solomon +Stevan +Teresa +Thor +Tristan +Valentino +Vincente +Vinson +Vito +Vittorio +Warner +Whitney +Abram +Agustine +Amir +Amos +Annette +Aram +Armen +Armondo +Arthuro +Basilio +Benedict +Benton +Brennan +Brooke +Cal +Cam +Carmelo +Carroll +Carson +Chadwick +Chauncey +Chip +Christofer +Cipriano +Cleve +Cole +Coleman +Cort +Darryll +Daryn +Davy +Deane +Demetrious +Dionicio +Donal +Dusty +Duwayne +Earle +Edd +Eligio +Elroy +Emile +Esequiel +Francois +Franklyn +Gale +Garrick +Geary +Gergory +Gideon +Gillermo +Gregor +Harris +Hoyt +Irving +Issac +Jade +Jamil +Jasper +Jeanpierre +Jerardo +Johnie +Joseluis +Justo +Juvenal +Keenan +Kenji +Kermit +Kieran +Kristofer +Landon +Laron +Laverne +Lawerence +Lawrance +Leeroy +Leigh +Lesley +Linda +Lindsey +Luciano +Macario +Marcello +Marin +Marshal +Martine +Maury +Merlin +Merritt +Mickel +Nigel +Norberto +Paulo +Philbert +Quinton +Raleigh +Ramin +Randolf +Reagan +Renato +Reynold +Richardo +Rito +Rolland +Romero +Rosalio +Rosario +Royal +Rubin +Sammie +Sandra +Seferino +Shayne +Shelley +Shelton +Silvestre +Simeon +Stanford +Terrill +Theadore +Thurman +Tory +Trey +Unknown +Vaughan +Verlin +Victoriano +Weldon +Wellington +Wess +Wiley +Willam +Willy +Woody +Ysidro +Michael +David +John +Robert +James +Richard +Mark +Steven +William +Christopher +Eric +Brian +Daniel +Scott +Jeffrey +Paul +Anthony +Kevin +Timothy +Thomas +Joseph +Kenneth +Ronald +Charles +Matthew +Gregory +Sean +Stephen +Donald +Patrick +Gary +Edward +Todd +Jose +Andrew +Douglas +Frank +Jason +George +Peter +Raymond +Craig +Dennis +Keith +Larry +Shawn +Troy +Mike +Jerry +Bryan +Martin +Steve +Rodney +Vincent +Jeffery +Chris +Victor +Jon +Manuel +Tony +Danny +Darren +Erik +Juan +Randy +Joe +Jonathan +Aaron +Jeff +Lawrence +Carlos +Roger +Phillip +Arthur +Russell +Derek +Terry +Albert +Dean +Gerald +Marc +Alan +Bruce +Mario +Jesse +Carl +Brett +Samuel +Johnny +Philip +Glenn +Wayne +Ruben +Jesus +Joel +Curtis +Bradley +Henry +Tim +Luis +Adam +Gilbert +Ricardo +Jack +Randall +Brent +Kelly +Jim +Lance +Jimmy +Benjamin +Greg +Kirk +Francisco +Roy +Jay +Dale +Antonio +Raul +Walter +Kurt +Louis +Darin +Darrell +Rick +Ernest +Ralph +Miguel +Ricky +Ryan +Alexander +Chad +Micheal +Allen +Billy +Andre +Roberto +Jaime +Lee +Darryl +Leonard +Bobby +Darrin +Gabriel +Javier +Jorge +Hector +Eugene +Alex +Christian +Shane +Tom +Nicholas +Duane +Don +Ronnie +Frederick +Alfred +Damon +Harold +Armando +Derrick +Tracy +Eddie +Norman +Theodore +Dan +Ian +Kyle +Marcus +Oscar +Ray +Glen +Ron +Fred +Fernando +Rene +Barry +Salvador +Mitchell +Howard +Rudy +Tommy +Wesley +Bill +Dwayne +Karl +Arturo +Marvin +Brad +Ramon +Guy +Clifford +Alfredo +Rafael +Adrian +Maurice +Warren +Stanley +Alberto +Geoffrey +Pedro +Nathan +Andy +Matt +Enrique +Shannon +Reginald +Sergio +Eduardo +Kent +Alfonso +Earl +Willie +Ted +Byron +Marco +Melvin +Nick +Daryl +Bret +Stacy +Angel +Alejandro +Dave +Harry +Trevor +Dana +Gordon +Travis +Joey +Ken +Tyrone +Dominic +Jerome +Lonnie +Neil +Gene +Roland +Ernesto +Shaun +Perry +Joshua +Brandon +Lloyd +Cesar +Leo +Mathew +Vernon +Rodolfo +Allan +Bernard +Franklin +Roderick +Bob +Calvin +Edwin +Leroy +Stuart +Wade +Gerardo +Guillermo +Gustavo +Justin +Loren +Alvin +Arnold +Doug +Fredrick +Jamie +Grant +Ross +Francis +Julian +Leslie +Erick +Julio +Terrance +Cary +Gregg +Jessie +Jimmie +Kenny +Leon +Randolph +Terrence +Abel +Bradford +Dion +Lorenzo +Clinton +Dino +Pete +Scot +Marcos +Casey +Freddie +Marty +Toby +Trent +Clarence +Morgan +Pablo +Corey +Felipe +Max +Stacey +Andres +Colin +Lewis +Orlando +Rod +Jess +Evan +Frankie +Devin +Floyd +Kerry +Noel +Sam +Cameron +Ernie +Louie +Jody +Nathaniel +Herbert +Robbie +Sammy +Ben +Daren +Neal +Angelo +Dwight +Edgar +Leland +Rickey +Gilberto +Ivan +Terence +Rogelio +Blake +Randal +Reynaldo +Timmy +Felix +Garrett +Laurence +Rudolph +Charlie +Curt +Guadalupe +Ignacio +Lester +Zachary +Chuck +Clayton +Clifton +Jonathon +Omar +Ty +Bryant +Clark +Cory +Marshall +Benny +Nelson +Rex +Tomas +Herman +Ismael +Jared +Pat +Ramiro +Sidney +Stephan +Vince +Darrel +Everett +Heath +Isaac +Kris +Clyde +Johnnie +Monte +Robin +Rodger +Simon +Virgil +Garry +Jacob +Jean +Rob +Bart +Dewayne +Hans +Hugo +Jeremy +Nicolas +Phil +Tod +Tyler +Brendan +Conrad +Drew +Jeffry +Elias +Hugh +Joaquin +Miles +Saul +Wendell +Cedric +Dirk +Donovan +Harvey +Lyle +Marlon +Wallace +Chester +Donnie +Kelvin +Sheldon +Spencer +Teddy +Cecil +Edwardo +Jerald +Milton +Stewart +Vicente +Abraham +Alonzo +Darnell +Demetrius +Derick +Xavier +Gino +Lionel +Rory +Adolfo +Bryon +Emilio +Devon +Gerard +Jordan +Kim +Lynn +Daron +Edmund +Humberto +Israel +Lamont +Octavio +Rolando +Carey +Claude +Dante +Erin +Marcel +Oliver +Rocky +Santiago +Vaughn +Clay +Clint +Erich +Garth +Gavin +Luke +Mickey +Rich +Seth +Tad +Vance +Buddy +Dane +Ed +Leonardo +Mauricio +Stefan +Agustin +Antoine +Bert +Carlton +Doyle +Ethan +Fabian +Federico +Forrest +Jackie +Myron +Otis +Robby +Sherman +Damian +Eddy +Esteban +Moses +Roman +Shon +Deon +Leonel +Leopoldo +Pierre +Rusty +Sebastian +Thad +Al +Blair +Desmond +Elmer +Jarrod +Kirt +Kurtis +Noah +Tracey +Willard +Anton +Earnest +Efrain +Gonzalo +Julius +Kendall +Malcolm +Monty +Preston +Bryce +Edmond +Fidel +Harlan +Lars +Raymundo +Reuben +Boyd +Darius +Denny +Deron +Domingo +Donnell +Frederic +Johnathan +Morris +Rodrigo +Salvatore +Terrell +Tommie +Van +Alec +Alexis +Alvaro +Blaine +Brady +Freddy +Jefferey +Jefferson +Josh +Richie +Aldo +Antony +Augustine +Benito +Bennie +Danial +Donny +Efren +Gerry +Gil +Heriberto +Ira +Kraig +Lon +Noe +Roosevelt +Will +Eli +Gregorio +Jerrold +Lamar +Lowell +Mariano +Michel +Nickolas +Owen +Ronny +Santos +Stan +Ward +Alphonso +Bernardo +Cliff +Erwin +Jan +Lane +Luther +Marcelino +Moises +Reed +Rosendo +Sanford +Scotty +Sonny +Trinidad +Adalberto +Alton +Barton +Britt +Chance +Darwin +Delbert +Dexter +Garret +Isidro +Jayson +Kennith +Keven +Leif +Lorne +Mack +Mary +Nicky +Rigoberto +Rodrick +Royce +Russel +Thaddeus +Timmothy +Wilbert +Adan +Archie +Armand +Aurelio +Austin +Bradly +Brennan +Brenton +Brock +Burton +Cornelius +Cornell +Derik +Diego +Eldon +Elliott +Emmett +Florencio +Graham +Hubert +Irving +Len +Nestor +Rojelio +Shayne +Alain +Arron +Art +Barney +Carter +Courtney +Dario +Emil +Gus +Jerold +Joesph +Kip +Lincoln +Lucio +Markus +Marlin +Myles +Percy +Theron +Ulysses +Willis +Arnulfo +Aubrey +Baron +Bernie +Brant +Brice +Brooks +Bruno +Caesar +Cruz +Darrick +Darron +Denis +Dewey +Eliseo +Faustino +Galen +Jacques +Jamey +Kelley +Kimberly +Kristopher +Lisa +Mikel +Murray +Porfirio +Quinn +Reid +Ritchie +Rufus +Sal +Sandy +Winston +Alexandro +Amado +Andreas +Aron +Augustus +Brien +Carlo +Carmen +Claudio +Dallas +Dick +Donn +Dwain +Dylan +Ellis +Errol +Eugenio +Garland +Horacio +Jake +Josef +Lenny +Les +Lupe +Merrill +Nolan +Quentin +Randell +Rickie +Russ +Solomon +Stanford +Sterling +Sven +Sylvester +Tino +Vito +Adolph +Arnoldo +Brendon +Burt +Charlton +Christophe +Cody +Dalton +Daryn +Del +Dominick +Duke +Emanuel +Everardo +Fredric +Garett +Geno +Geoff +Grady +Hilario +Kai +Lucas +Margarito +Michale +Michelle +Norberto +Osvaldo +Reggie +Rey +Robb +Tyson +Wilbur +Wiley +Wilson +Zane +Antone +Aric +Ariel +Avery +Bennett +Billie +Chet +Chip +Collin +Cyrus +Damien +Delvin +Deric +Dieter +Duncan +Elbert +Gorge +Greggory +Harris +Harrison +Herschel +Jere +Jerrod +Jude +Junior +Kermit +Kory +Lafayette +Laron +Merlin +Micah +Mitch +Raphael +Reyes +Rhett +Rudolfo +Rueben +Shelby +Stevie +Susan +Taylor +Von +Wally +Wes +Abelardo +Alfie +Alonso +Andrei +August +Celestino +Cleveland +Cole +Cordell +Cristobal +Cristopher +Darell +Dereck +Derreck +Derwin +Eloy +Enrico +Esequiel +Estevan +Florentino +Forest +Fritz +Gabe +Garrick +Genaro +Hal +Hank +Harley +Issac +Jackson +Kennth +Kenton +Klaus +Kristian +Kristofer +Lino +Lonny +Marcellus +Maxwell +Mel +Merle +Michele +Mitchel +Montgomery +Nigel +Prince +Quintin +Raymon +Richardo +Roque +Sandra +Shelton +Tobias +Tobin +Trenton +Trever +Tyron +Val +Vidal +Weston +Andrea +Antione +Ari +Baltazar +Benson +Benton +Brain +Brenda +Cynthia +Damion +Darel +Dawn +Dell +Demetri +Demetrick +Derk +Deryl +Dimitri +Donavan +Douglass +Drake +Edmundo +Elizabeth +Elton +Elvis +Ezequiel +Fidencio +Hiram +Homer +Horace +Houston +Illya +Jade +Jasper +Jefrey +Johnathon +Keenan +Kirby +Korey +Leandro +Lorin +Loyd +Lyman +Marcelo +Maria +Marion +Milo +Ned +Norbert +Otto +Pasquale +Ramsey +Refugio +Rico +Rocco +Roderic +Rolf +Stanton +Tadd +Tate +Tito +Tory +Tyree +Uriel +Whitney +Woodrow +Ysidro +Zoltan +Amos +Anderson +Angus +Ara +Artis +Ashley +Barrett +Barron +Bjorn +Blas +Branden +Brook +Brooke +Butch +Cedrick +Clemente +Cortland +Cyril +Dain +Danniel +Darek +Davis +Deandre +Derrell +Domonic +Donato +Dondi +Dorian +Dustin +Dusty +Edgardo +Efrem +Elgin +Elliot +Elvin +Emerson +Erie +Ervin +Ezra +Fausto +Fransico +Gareth +Garey +Garin +Gaylord +Georgie +German +Isaias +Jacinto +Jarvis +Jens +Jeremiah +Johnpaul +Jonny +Josue +Judson +Kendrick +Kevan +Lamonte +Lauren +Lauro +Layne +Lazaro +Lenard +Levi +Luciano +Luigi +Marcell +Mauro +Maximino +Maximo +Michal +Migel +Milan +Miller +Nels +Norris +Olaf +Oren +Orville +Paris +Parrish +Patrice +Patricia +Philippe +Pieter +Renato +Reymundo +Reynold +Riley +Rodd +Romeo +Rosario +Salomon +Sammie +Scottie +Severo +Sharon +Skip +Stace +Thane +Theo +Torin +Trini +Ubaldo +Umberto +Vern +Victoriano +Wilfredo +Wolfgang +Yusef +Alden +Ali +Amador +Anders +Angela +Aniceto +Ann +Apolonio +Arcadio +Armen +Armondo +Artemio +Audie +Bernardino +Bertram +Bobbie +Boris +Brandt +Brandy +Breck +Brenden +Caleb +Camilo +Carson +Ceasar +Chauncey +Christina +Christoper +Colby +Cris +Darryn +Daryle +Dee +Delton +Denise +Derric +Domenic +Dominique +Donaciano +Dudley +Dwaine +Dwane +Eleazar +Eliot +Emmanuel +Eulalio +Faron +Farrell +Felton +Fermin +Flavio +Fletcher +Garrison +Gaspar +Gearld +Gina +Giovanni +Godfrey +Herb +Hernan +Hershel +Hipolito +Inocencio +Irvin +Ivory +Jame +Jeb +Jennifer +Johny +Karlton +Kelton +Kendell +Kennon +Kenyatta +Kipp +Leeroy +Lemuel +Liam +Lindsey +Mac +Macario +Mallory +Manny +Martha +Montrell +Murphy +Nickey +Ollie +Oswaldo +Paulo +Philbert +Quincy +Rafe +Regan +Reginal +Reinaldo +Robbin +Roddy +Rolland +Ronaldo +Ronnell +Roscoe +Royal +Rudolf +Rufino +Seamus +Serjio +Shad +Skipper +Tammy +Terrill +Timmie +Trace +Tristan +Tucker +Tye +Valentin +Verne +Vincente +Weldon +Wellington +Williams +Michael +David +Robert +John +James +Richard +Mark +Steven +Christopher +Brian +William +Daniel +Eric +Scott +Jeffrey +Paul +Timothy +Kevin +Anthony +Thomas +Joseph +Matthew +Kenneth +Sean +Charles +Gregory +Ronald +Stephen +Todd +Gary +Edward +Jose +Patrick +Donald +Jason +Andrew +Douglas +George +Frank +Craig +Peter +Shawn +Dennis +Keith +Raymond +Larry +Bryan +Jerry +Troy +Martin +Aaron +Mike +Juan +Chris +Jonathan +Tony +Jeffery +Carlos +Steve +Victor +Jon +Jeff +Manuel +Rodney +Danny +Darren +Erik +Randy +Marc +Joe +Russell +Vincent +Phillip +Roger +Dean +Johnny +Alan +Lawrence +Brett +Derek +Terry +Gerald +Joel +Arthur +Jesus +Albert +Mario +Philip +Ruben +Bruce +Samuel +Luis +Benjamin +Bradley +Christian +Wayne +Carl +Ricardo +Jesse +Francisco +Glenn +Jack +Antonio +Curtis +Adam +Roberto +Miguel +Brent +Randall +Henry +Alexander +Jimmy +Lance +Raul +Kelly +Shane +Jim +Ralph +Ryan +Walter +Gilbert +Roy +Louis +Jay +Nicholas +Ernest +Greg +Tim +Dale +Hector +Jaime +Jorge +Allen +Darin +Kirk +Gabriel +Ricky +Darrell +Javier +Micheal +Damon +Ronnie +Alex +Armando +Darrin +Bobby +Rick +Kurt +Eddie +Leonard +Chad +Andre +Ray +Tom +Eugene +Lee +Billy +Don +Alfred +Adrian +Travis +Sergio +Glen +Arturo +Rafael +Theodore +Harold +Ramon +Stanley +Fernando +Eduardo +Derrick +Frederick +Rene +Bill +Norman +Salvador +Dan +Howard +Kyle +Shannon +Mitchell +Oscar +Nathan +Tracy +Tommy +Justin +Ron +Alejandro +Marcus +Fred +Guy +Alfredo +Rudy +Alberto +Geoffrey +Pedro +Clifford +Duane +Darryl +Daryl +Dwayne +Karl +Warren +Enrique +Barry +Joey +Matt +Ian +Marco +Wesley +Brad +Reginald +Marvin +Willie +Joshua +Corey +Edwin +Maurice +Bret +Earl +Alfonso +Ken +Gene +Trevor +Dana +Gerardo +Guillermo +Leon +Lonnie +Clinton +Harry +Kent +Angel +Jerome +Shaun +Andy +Brandon +Ted +Dave +Nick +Ernesto +Gordon +Erick +Gustavo +Stacy +Jeremy +Grant +Rodolfo +Byron +Mathew +Lloyd +Melvin +Calvin +Franklin +Vernon +Stuart +Wade +Neil +Tyrone +Roderick +Dion +Gregg +Clarence +Allan +Felipe +Jamie +Cameron +Francis +Cesar +Louie +Edgar +Julian +Bernard +Herbert +Randolph +Roland +Bob +Jody +Abel +Alvin +Arnold +Frankie +Ivan +Andres +Ben +Leo +Noel +Doug +Lewis +Loren +Lorenzo +Colin +Leslie +Ross +Dominic +Jimmie +Pete +Terrence +Dustin +Floyd +Leroy +Ty +Cory +Kenny +Cary +Felix +Julio +Casey +Devin +Marshall +Max +Spencer +Jessie +Marcos +Perry +Toby +Garrett +Marty +Terrance +Jared +Orlando +Fredrick +Jacob +Terence +Evan +Zachary +Dino +Ramiro +Robbie +Sammy +Seth +Dwight +Guadalupe +Nathaniel +Lester +Pablo +Rogelio +Bryant +Tod +Tyler +Brendan +Clayton +Bradford +Donovan +Freddie +Gilberto +Robin +Sam +Benny +Humberto +Kerry +Morgan +Timmy +Tomas +Daren +Ismael +Angelo +Heath +Hugo +Ignacio +Johnnie +Rickey +Scot +Sheldon +Stacey +Teddy +Johnathan +Dirk +Isaac +Jerald +Monte +Simon +Blake +Cedric +Laurence +Neal +Omar +Reynaldo +Clifton +Curt +Erich +Harvey +Jonathon +Rudolph +Stephan +Trent +Nelson +Clint +Demetrius +Randal +Alonzo +Charlie +Dane +Drew +Edmund +Herman +Jess +Leland +Nicolas +Xavier +Oliver +Clyde +Ernie +Joaquin +Luke +Lyle +Milton +Sidney +Bart +Darrel +Hans +Israel +Rob +Chester +Chuck +Dylan +Erin +Kelvin +Roman +Antoine +Devon +Edwardo +Fabian +Jarrod +Lamont +Rex +Saul +Clark +Claude +Ed +Everett +Santiago +Virgil +Damian +Donnie +Lionel +Marcel +Myron +Vicente +Blaine +Bryon +Rolando +Vance +Adolfo +Agustin +Bert +Clay +Dewayne +Forrest +Jeffry +Lamar +Phil +Wendell +Blair +Deon +Elias +Garry +Gavin +Gerard +Gonzalo +Malcolm +Scotty +Carlton +Efrain +Gino +Miles +Rod +Benito +Cecil +Emilio +Hugh +Josh +Shon +Abraham +Brenton +Conrad +Dante +Darnell +Esteban +Jackie +Mauricio +Morris +Otis +Preston +Rodger +Sterling +Thad +Antony +Domingo +Kendall +Kim +Leonardo +Mickey +Pat +Reed +Stewart +Noe +Rocky +Danial +Elliott +Ethan +Fidel +Lonny +Lowell +Robby +Ronny +Rory +Sherman +Tad +Vince +Alton +Brock +Freddy +Marlon +Raymundo +Reuben +Rigoberto +Leopoldo +Lorne +Moises +Nickolas +Octavio +Robb +Salvatore +Sebastian +Stefan +Vaughn +Courtney +Dexter +Eddy +Garth +Gregorio +Jake +Joesph +Kris +Lane +Lars +Leif +Monty +Van +Anton +Bennie +Bryce +Carey +Daron +Delbert +Deron +Donny +Doyle +Jordan +Keven +Micah +Wallace +Aldo +Boyd +Cruz +Damion +Desmond +Efren +Gerry +Jean +Jefferson +Lenny +Rusty +Shayne +Terrell +Trenton +Alec +Art +Dallas +Damien +Denny +Diego +Galen +Garret +Julius +Kurtis +Marion +Noah +Owen +Russel +Tommie +Adan +Al +Alvaro +Bernardo +Derick +Heriberto +Jan +Lynn +Michel +Pierre +Tracey +Archie +Denis +Donnell +Elliot +Federico +Judd +Mason +Quinn +Rodrigo +Santos +Will +Willard +Ariel +Aron +Brendon +Buddy +Cliff +Earnest +Frederic +Ira +Jefferey +Leonel +Mariano +Rich +Sal +Shelby +Thor +Alphonso +Augustine +Aurelio +Bradly +Darwin +Dewey +Duke +Emil +Giovanni +Kennith +Lisa +Lon +Mitchel +Richie +Rickie +Solomon +Stan +Taylor +Tyson +Armand +Ashley +Aubrey +Austin +Beau +Brain +Claudio +Colby +Cornell +Darrick +Duncan +Grady +Graham +Homer +Jacques +Jamal +Kimberly +Kip +Kirt +Kraig +Kristopher +Lucio +Lupe +Randell +Raphael +Reggie +Rosendo +Royce +Sanford +Thaddeus +Tobin +Trinidad +Ward +Woodrow +Arnulfo +Barney +Barton +Bennett +Bobbie +Carter +Dorian +Ervin +Kirby +Maria +Mikel +Nolan +Russ +Sandy +Sonny +Wes +Alfie +Arnoldo +August +Avery +Brady +Brennan +Britt +Bruno +Carlo +Darby +Darius +Darron +Donn +Drake +Edmond +Eliseo +Geoff +Harlan +Harley +Jayson +Jemal +Jerold +Josef +Kenton +Luther +Mack +Marcelino +Moses +Myles +Reid +Rhett +Theron +Timmothy +Tristan +Val +Valentin +Arron +Barrett +Bernie +Billie +Brook +Ceasar +Cody +Cole +Deandre +Del +Denver +Deshawn +Douglass +Elbert +Eli +Fermin +Franz +Hank +Hubert +Jude +Junior +Kristian +Lafayette +Marcello +Markus +Marlin +Michelle +Patricia +Romeo +Shad +Shea +Stevie +Sylvester +Tino +Tobias +Weston +Willis +Alexandro +Andrea +Baron +Britton +Chet +Cleveland +Cristobal +Davin +Dominick +Edgardo +Ellis +Elmer +Emmett +Errol +Fredric +Genaro +Gorge +Gus +Horace +Horacio +Hunter +Jade +Jeremiah +Jonah +Kendrick +Kenji +Lanny +Levi +Loyd +Luciano +Margarito +Mel +Mitch +Nicky +Oren +Parrish +Patricio +Paulo +Rocco +Rueben +Trever +Whitney +Alfonzo +Anderson +Anthoney +Branden +Brant +Bud +Burt +Butch +Che +Cornelius +Damone +Danilo +Deric +Edmundo +Eldon +Felton +Gabino +German +Hilario +Jackson +Jacque +Jerrod +Jonny +Jorje +Josue +Kelley +Lesley +Lincoln +Lorin +Malik +Marcell +Mauro +Michale +Nestor +Norberto +Otto +Parker +Quentin +Quincy +Raymon +Refugio +Rico +Rodrick +Ronaldo +Roosevelt +Rufus +Shanon +Tye +Wilbert +Winston +Alvino +Andreas +Brooks +Burton +Caesar +Caleb +Carnell +Carroll +Collin +Cordell +Cynthia +Cyrus +Dee +Demian +Derrek +Dieter +Eloy +Emanuel +Erwin +Ezequiel +Forest +Fransisco +Isaias +Isidro +Jasen +Jed +Judson +Klaus +Kory +Kristofer +Les +Lino +Logan +Lyn +Marcelo +Maxwell +Modesto +Norris +Rand +Reymundo +Roel +Salomon +Serjio +Toney +Tyron +Valentine +Vidal +Westley +Wilbur +Wiley +Wilfred +Yancy +Zane +Adalberto +Alexis +Ali +Alonso +Amado +Amador +Anastacio +Andra +Augustin +Brenden +Brien +Buck +Cal +Catarino +Channing +Christoph +Christophe +Clemente +Conrado +Dagoberto +Dalton +Darryn +Dell +Dru +Eduard +Elton +Elvin +Emiliano +Eron +Everardo +Ezra +Fausto +Flavio +Francois +Garrick +Georgie +Greggory +Hal +Hamilton +Hipolito +Hiram +Jamey +Jerardo +Jerod +Jerrold +Kai +Kenney +Korey +Lamarr +Landon +Lauro +Leandro +Leigh +Lenard +Mary +Migel +Milo +Nigel +Rey +Reyes +Ricci +Rolf +Rubin +Rudolfo +Scottie +Silverio +Simeon +Stanton +Tory +Tyree +Ulysses +Uriel +Wally +Wyatt +Ysidro +Ace +Ahmed +Alexandre +Amos +Anselmo +Anson +Antone +Ari +Armond +Artie +Asa +Barron +Bartholomew +Benson +Bo +Braden +Brandt +Carmen +Carson +Cecilio +Chance +Charley +Charlton +Chase +Chauncey +Chip +Claud +Coleman +Coy +Cris +Cristopher +Cullen +Daniele +Darcy +Darold +Daryle +Daryn +Delon +Devan +Dmitri +Donte +Dwaine +Elijah +Eliot +Emery +Esequiel +Estevan +Eusebio +Fletcher +Florencio +Florentino +Franklyn +Garland +Geno +Giuseppe +Harrison +Houston +Isreal +Jamison +Jarrett +Johnathon +Jonas +Joseluis +Laron +Lauren +Lawrance +Layne +Leander +Liam +Lonnell +Lucas +Marlo +Matthias +Maximilian +Mckinley +Melecio +Mikeal +Monroe +Nate +Ned +Nels +Osvaldo +Oswaldo +Percy +Petar +Philippe +Quinton +Ramsey +Raoul +Reese +Ric +Richardo +Riley +Roderic +Ronn +Rudolf +Sabino +Shann +Slade +Stanford +Teresa +Tyrell +Valentino +Vincenzo +Von +Willaim +Wilson +Yolanda +Abelardo +Abram +Ahmad +Alain +Alden +Ana +Apolonio +Ara +Arcadio +Armen +Arno +Augusto +Baltazar +Basilio +Benedict +Benjamen +Berry +Brandy +Brannon +Bron +Carleton +Christiaan +Colton +Conan +Constantine +Curtiss +Dain +Daivd +Danniel +Darick +Daryll +Dax +Delmar +Demarcus +Dereck +Derik +Derwin +Dewitt +Dondi +Donell +Dusty +Dwain +Eben +Eleazar +Emory +Enrico +Erie +Eugenio +Everette +Feliciano +Ferdinand +Fidencio +Franco +Gasper +Geraldo +Geronimo +Gil +Gildardo +Grabiel +Grover +Gustav +Hassan +Hayden +Hilton +Isaiah +Jabier +Jace +Jacinto +Jai +Jens +Johnie +Juventino +Kasey +Kenyatta +Kermit +Kevan +Khalid +King +Kjell +Lamonte +Lavern +Leonides +London +Lou +Lucien +Luiz +Marcellus +Maynard +Merle +Micahel +Michele +Michial +Mikael +Montgomery +Monti +Napoleon +Narciso +Nils +Olaf +Orville +Paco +Paolo +Paris +Parris +Pascual +Pasquale +Pernell +Pieter +Quintin +Raynard +Regina +Rigo +Rollin +Roque +Rosalio +Samson +Sanders +Serafin +Servando +Skip +Sven +Teodoro +Terance +Terrill +Theadore +Thornton +Tibor +Timmie +Toni +Trace +Trevin +Verdell +Weldon +West +Wilford +Wilfredo +Wilhelm +Young +Michael +David +Robert +John +James +Richard +Christopher +Mark +Brian +Steven +Jason +Eric +William +Daniel +Scott +Jeffrey +Paul +Anthony +Thomas +Joseph +Kevin +Matthew +Timothy +Charles +Gregory +Sean +Kenneth +Ronald +Stephen +Edward +Jose +Todd +Patrick +Gary +Andrew +Donald +Douglas +Shawn +Frank +Aaron +Raymond +Craig +George +Keith +Peter +Dennis +Juan +Bryan +Larry +Jonathan +Troy +Carlos +Marc +Erik +Jeffery +Jerry +Victor +Martin +Manuel +Darren +Jon +Joe +Mike +Chris +Tony +Mario +Steve +Vincent +Russell +Danny +Rodney +Jeff +Jesus +Lawrence +Samuel +Bradley +Phillip +Albert +Randy +Benjamin +Ricardo +Dean +Lance +Derek +Alan +Corey +Luis +Arthur +Ruben +Adam +Roger +Gerald +Johnny +Philip +Jesse +Brent +Joel +Brett +Francisco +Miguel +Christian +Antonio +Henry +Carl +Terry +Jeremy +Alexander +Shane +Glenn +Bruce +Roberto +Curtis +Ernest +Jack +Wayne +Kelly +Randall +Gilbert +Gabriel +Ryan +Travis +Jimmy +Jaime +Chad +Joshua +Hector +Raul +Roy +Greg +Damon +Jorge +Kirk +Ralph +Armando +Micheal +Oscar +Louis +Alex +Justin +Jay +Billy +Javier +Walter +Dale +Eugene +Nicholas +Derrick +Jim +Shannon +Allen +Ricky +Marcus +Andre +Darin +Bobby +Ray +Glen +Lee +Tim +Nathan +Darrell +Eduardo +Rick +Eddie +Fernando +Enrique +Rafael +Frederick +Ramon +Sergio +Kurt +Leonard +Salvador +Alfred +Harold +Rene +Kyle +Ronnie +Theodore +Arturo +Adrian +Cory +Tom +Darrin +Tommy +Wesley +Brad +Alejandro +Pedro +Alberto +Brandon +Ian +Marco +Norman +Don +Rudy +Barry +Geoffrey +Neil +Fred +Clifford +Bill +Alfredo +Marvin +Mitchell +Dwayne +Ron +Dan +Cesar +Warren +Stanley +Tyrone +Howard +Karl +Maurice +Ted +Edwin +Willie +Mathew +Andy +Trevor +Clinton +Daryl +Matt +Darryl +Guy +Reginald +Angel +Duane +Erick +Jerome +Earl +Gustavo +Ernesto +Gordon +Jamie +Kent +Byron +Melvin +Gene +Tracy +Joey +Nick +Alfonso +Dana +Dustin +Ross +Shaun +Dave +Gerardo +Loren +Zachary +Grant +Harry +Dominic +Julio +Leroy +Cameron +Colin +Wade +Bret +Casey +Dion +Leo +Sam +Francis +Julian +Donovan +Garrett +Jacob +Allan +Jody +Leon +Lonnie +Guillermo +Morgan +Rodolfo +Calvin +Andres +Stuart +Lloyd +Ben +Felipe +Alvin +Ken +Franklin +Jimmie +Roland +Gilberto +Marcos +Roderick +Stacy +Bernard +Dwight +Jared +Toby +Nathaniel +Omar +Vernon +Gregg +Bob +Clarence +Devin +Leslie +Lorenzo +Randolph +Arnold +Pablo +Cary +Clayton +Edgar +Pete +Spencer +Ivan +Perry +Felix +Lewis +Scot +Guadalupe +Jessie +Roman +Evan +Rogelio +Noel +Tyler +Frankie +Isaac +Marshall +Terrence +Dylan +Herbert +Ramiro +Fredrick +Hugo +Ignacio +Vance +Johnnie +Louie +Orlando +Sheldon +Terrance +Kenny +Lamont +Neal +Freddie +Jess +Saul +Blake +Clint +Marty +Rob +Mauricio +Randal +Abel +Angelo +Everett +Floyd +Nicolas +Trent +Brendan +Jamal +Ty +Ernie +Nelson +Erin +Josh +Stephan +Alonzo +Ismael +Terence +Clark +Doug +Jeffry +Kerry +Rickey +Abraham +Bradford +Bryant +Sidney +Erich +Heath +Joaquin +Max +Seth +Elias +Gavin +Herman +Noah +Shon +Antoine +Chuck +Donnie +Jerald +Johnathan +Lester +Luke +Malcolm +Robbie +Robin +Rudolph +Stacey +Cedric +Clifton +Fabian +Israel +Jordan +Sammy +Curt +Dirk +Edwardo +Humberto +Laurence +Milton +Bryon +Chester +Hans +Jean +Jonathon +Bart +Benny +Dino +Gino +Monte +Charlie +Damian +Edmund +Esteban +Forrest +Leland +Lionel +Oliver +Simon +Vicente +Xavier +Adolfo +Jemal +Tomas +Vince +Dewayne +Garry +Myron +Rocky +Daren +Demetrius +Reynaldo +Timmy +Tod +Wallace +Wendell +Emilio +Ethan +Harvey +Marcel +Miles +Rex +Rory +Santiago +Agustin +Cecil +Jayson +Jefferson +Lyle +Conrad +Dante +Darrel +Drew +Hugh +Kristopher +Sonny +Stewart +Teddy +Blaine +Clyde +Garth +Kris +Marlon +Noe +Raymundo +Scotty +Alvaro +Dane +Darnell +Devon +Gerard +Graham +Moses +Pat +Bernardo +Efrain +Jackie +Kendall +Lamar +Phil +Royce +Terrell +Virgil +Clay +Efren +Gerry +Kelvin +Kim +Preston +Rodrigo +Benito +Bryce +Courtney +Darwin +Donnell +Leonardo +Sebastian +Shayne +Aldo +Aron +Bert +Brady +Denny +Gonzalo +Gregorio +Ira +Jarrod +Julius +Leif +Pierre +Rigoberto +Deon +Diego +Doyle +Freddy +Mason +Moises +Robby +Rod +Sherman +Stefan +Sterling +Thad +Darius +Ed +Emmett +Garret +Kory +Kraig +Lowell +Mickey +Monty +Octavio +Owen +Raphael +Rodger +Tommie +Aurelio +Darrick +Derick +Fidel +Jefferey +Joesph +Leopoldo +Otis +Reggie +Reuben +Robb +Rodrick +Russel +Alphonso +Aubrey +August +Bennie +Caesar +Carlton +Damien +Federico +Geoff +Grady +Kristian +Kurtis +Lars +Lynn +Morris +Quentin +Tracey +Archie +Arnulfo +Augustine +Austin +Bradly +Buddy +Collin +Cruz +Deron +Duncan +Elliott +Errol +Jerrold +Jude +Marcelino +Reed +Tobias +Alexis +Carey +Carlo +Delbert +Denis +Emanuel +Emmanuel +Galen +Jan +Lane +Luther +Michel +Rolando +Vaughn +Al +Danial +Daron +Deandre +Donny +Edmond +Elijah +Eloy +Genaro +Jarrett +Lisa +Lucas +Theron +Trinidad +Tyson +Will +Willard +Andreas +Antony +Art +Beau +Claudio +Demian +Heriberto +Jamison +Kelley +Kip +Lonny +Lorne +Mikel +Renato +Richie +Santos +Shan +Stevan +Thaddeus +Abelardo +Ari +Barrett +Brant +Chance +Claude +Cliff +Dominick +Everardo +Frederic +Jacques +Lupe +Milo +Reyes +Ronny +Rusty +Salvatore +Trenton +Willis +Wilson +Adan +Alton +Anton +Arron +Bernie +Boyd +Cody +Cornelius +Dallas +Dario +Daryle +Derik +Dexter +Donavan +Eddy +Elbert +Eli +Hubert +Jake +Josue +Micah +Nolan +Quinn +Sal +Tobin +Ulysses +Valentin +Wilbert +Wilfred +Ariel +Barton +Brock +Che +Douglass +Dusty +Earnest +Elmer +Erwin +Gorge +Lincoln +Lorin +Marcelo +Markus +Percy +Refugio +Rich +Rocco +Rosendo +Shad +Shelby +Solomon +Thor +Burt +Colby +Darron +Dwain +Emiliano +Eugenio +German +Gus +Harlan +Jackson +Jed +Kennith +Keven +Lenny +Marcello +Michale +Michelle +Murray +Otto +Paris +Rhett +Rojelio +Stan +Val +Winston +Alexandro +Aric +Arnoldo +Blair +Burton +Carter +Charley +Clemente +Cole +Cornell +Cristian +Cyrus +Dimitri +Dorian +Duke +Elliot +Ezequiel +Ezra +Giovanni +Horacio +Isidro +Jeremiah +Jonas +Judd +Lucio +Nicky +Parker +Porfirio +Reid +Rey +Rico +Riley +Romeo +Roosevelt +Russ +Sandy +Scottie +Tad +Tory +Van +Weston +Zane +Adalberto +Antone +Billie +Brendon +Brennan +Carson +Cristobal +Darby +Davin +Del +Deshawn +Domingo +Dominique +Edgardo +Edmundo +Emil +Estevan +Garrick +Horace +Jasen +Junior +Kenji +Kimberly +Kirby +Lamonte +Landon +Maria +Nickolas +Rickie +Rufus +Sanford +Sylvester +Alec +Ashley +Barney +Benson +Brain +Bruno +Caleb +Chadwick +Demetrio +Eliseo +Ellis +Enrico +Ervin +Homer +Jamey +Jeromy +Jerrod +Kendrick +Laron +Lavell +Lazaro +Lon +Margarito +Mary +Maxwell +Mitchel +Myles +Osvaldo +Royal +Shelton +Taylor +Timmothy +Torrey +Wilbur +Wyatt +Alain +Aram +Britt +Buck +Candelario +Ceasar +Christoper +Christophe +Cris +Darian +Dax +Dee +Deric +Donte +Drake +Dwane +Florencio +Garland +Geno +Gil +Hiram +Isaias +Jennifer +Jerold +Jonah +Jonny +Josef +Kennth +Kenton +Kirt +Korey +Layne +Leonel +Marcellus +Mauro +Michele +Randell +Renee +Ronaldo +Sammie +Sandra +Serafin +Stevie +Vincente +Weldon +Wes +Amador +Armand +Bartholomew +Bobbie +Brandt +Brice +Brook +Brooks +Chet +Christine +Cleveland +Coby +Dannie +Dewey +Erie +Eulalio +Fausto +Feliciano +Fermin +Fletcher +Franco +Geoffery +Geraldo +Gideon +Harley +Homero +Irvin +Isaiah +Jacinto +Jameson +Judson +Juventino +Kai +Keenan +Lamarr +Leandro +Leigh +Liam +Lino +Logan +Marion +Mel +Milan +Nikolas +Norberto +Orion +Pascual +Patricia +Patricio +Richardo +Serjio +Stephanie +Tammy +Teodoro +Tino +Tito +Truman +Tyree +Ubaldo +Valentino +Vidal +Vito +Von +Walker +Ward +Wilfredo +Albino +Audie +Avery +Baron +Boris +Brenton +Brien +Christina +Clement +Coleman +Corbin +Corwin +Damion +Delano +Demarco +Demetri +Derrek +Donavon +Donn +Elizabeth +Elton +Elvin +Eriberto +Everette +Faustino +Filemon +Forest +Garett +Gildardo +Hank +Hayden +Huey +Jasper +Jeffory +Jimi +Julie +Kavin +Kermit +Kevan +Lambert +Lauro +Lemuel +Leobardo +Les +Levi +Macario +Mack +Manny +Marcell +Marlo +Marquis +Marshal +Matias +Maury +Maximiliano +Merrill +Mikeal +Modesto +Ned +Nestor +Norris +Orrin +Paolo +Parrish +Paulo +Philemon +Randel +Rito +Roddy +Rudolfo +Samson +Shea +Simeon +Terrill +Thurman +Timmie +Tristan +Tyron +Wally +Adolph +Ahmad +Alfie +Alfonzo +Ali +Allyn +Alvino +Amado +Amos +Anthoney +Antwine +Antwon +Apolonio +Armen +Augustin +Bennett +Butch +Byran +Cale +Clarke +Conan +Coy +Cyril +Danilo +Danniel +Darick +Daryn +Demetric +Demetrios +Deondre +Dereck +Derrik +Desmond +Dick +Donell +Eldridge +Esequiel +Ezekiel +Farrell +Filiberto +Flavio +Fritz +Gamaliel +Gareth +Geary +Hal +Harrison +Hassan +Jai +Jamel +Jeramy +Jerardo +Johnathon +Jomo +Justino +Juvenal +Kasey +Kenya +Klaus +Konrad +Kristen +Lanny +Lashawn +Lauren +Lavon +Len +Lenard +Lindsey +Luciano +Luigi +Lyndon +Malik +Merle +Merlin +Newton +Nigel +Nils +Nino +Norbert +Orville +Paulino +Rance +Raoul +Ravi +Raymon +Raymund +Reinaldo +Reymundo +Reynold +Ric +Ritchie +Robbin +Rolf +Ronnell +Rosalio +Sanjay +Shanon +Shay +Sheridan +Shonn +Skipper +Stanton +Sven +Taras +Theo +Torrance +Uriel +Valentine +Vern +Victoriano +Wiley +Woodrow +Yancy +Ysidro +Adrain +Alonso +Andra +Andrea +Arley +Armondo +Arnie +Asa +Axel +Baltazar +Barron +Basilio +Bo +Bonnie +Brannon +Brenden +Carmen +Carnell +Catarino +Cedrick +Chip +Chistopher +Cirilo +Corbett +Cordell +Crispin +Cristopher +Cuauhtemoc +Dal +Dalton +Damond +Deane +Delfino +Demitrius +Demon +Denise +Dennie +Derric +Derwin +Deshon +Deven +Dieter +Dionicio +Dondi +Dudley +Dwaine +Earle +Eduard +Efrem +Eldon +Eleazar +Elgin +Eliazar +Eliot +Emile +Enoch +Eusebio +Fidencio +Francesco +Fransisco +Gabe +Gale +Garvin +Gaston +Gentry +Geronimo +Greggory +Hamilton +Harris +Hernan +Herschel +Hilton +Hunter +Ike +Illya +Jacque +Jade +Jayme +Jeanpaul +Jens +Johannes +Johnie +Jory +Joseluis +Jubal +Jules +Junius +Kary +Kenyon +Kieth +Kit +Kristofer +Ladell +Lafayette +Lawrance +Leron +Lindsay +Lucien +Lyn +Marlin +Marques +Mateo +Mckinley +Melissa +Michal +Mickael +Mitch +Montgomery +Nels +Odell +Olen +Olin +Otha +Page +Paige +Patric +Philippe +Pilar +Ramsey +Rand +Rolland +Romel +Salvadore +Sandor +Shawnee +Silvestre +Sydney +Tavis +Tige +Titus +Tor +Ulises +Vicent +Vladimir +Warner +Wayland +Whitney +Williams +Willy +Zack +Michael +David +Robert +John +James +Jason +Christopher +Richard +Eric +Mark +Steven +Brian +William +Daniel +Jeffrey +Scott +Kevin +Joseph +Anthony +Matthew +Paul +Thomas +Timothy +Charles +Gregory +Sean +Kenneth +Jose +Edward +Ronald +Stephen +Andrew +Aaron +Donald +Shawn +Patrick +Todd +Gary +George +Frank +Craig +Douglas +Raymond +Peter +Juan +Jonathan +Carlos +Bryan +Dennis +Erik +Troy +Keith +Jeremy +Victor +Larry +Marc +Jerry +Adam +Chris +Manuel +Jeffery +Joe +Jon +Martin +Joshua +Tony +Derek +Mario +Vincent +Darren +Lance +Jesus +Ricardo +Benjamin +Luis +Phillip +Jesse +Antonio +Brandon +Ruben +Gabriel +Steve +Johnny +Randy +Chad +Albert +Danny +Samuel +Bradley +Christian +Marcus +Brent +Mike +Travis +Joel +Lawrence +Jeff +Russell +Brett +Rodney +Arthur +Alexander +Shane +Francisco +Raul +Gerald +Roberto +Ryan +Alan +Justin +Roger +Henry +Miguel +Carl +Philip +Jorge +Wayne +Damon +Dean +Terry +Nathan +Curtis +Jack +Roy +Jaime +Armando +Ralph +Javier +Bruce +Glenn +Ernest +Hector +Nicholas +Jimmy +Oscar +Jay +Gilbert +Greg +Billy +Fernando +Alex +Bobby +Walter +Louis +Randall +Allen +Corey +Derrick +Andre +Darrell +Eddie +Lee +Kyle +Kelly +Eduardo +Arturo +Eugene +Ramon +Adrian +Kirk +Leonard +Sergio +Shannon +Rafael +Dale +Ian +Geoffrey +Micheal +Rene +Ronnie +Jim +Salvador +Frederick +Ricky +Alejandro +Glen +Enrique +Alfred +Theodore +Harold +Marco +Kurt +Alberto +Pedro +Tommy +Dustin +Darrin +Ray +Cesar +Jamie +Alfredo +Clifford +Brad +Rick +Cory +Don +Rudy +Maurice +Tim +Barry +Bill +Fred +Gerardo +Tom +Angel +Darin +Wesley +Clinton +Ernesto +Jacob +Daryl +Dwayne +Tyrone +Edwin +Duane +Karl +Mathew +Jerome +Willie +Dan +Gustavo +Neil +Andy +Stanley +Alfonso +Guy +Marvin +Mitchell +Norman +Darryl +Julio +Warren +Marcos +Trevor +Earl +Grant +Ted +Byron +Howard +Matt +Melvin +Reginald +Garrett +Bret +Joey +Wade +Dominic +Edgar +Omar +Leon +Rodolfo +Zachary +Erick +Harry +Isaac +Casey +Ron +Shaun +Dana +Guillermo +Julian +Allan +Andres +Colin +Kent +Lloyd +Roman +Ben +Calvin +Dion +Gene +Toby +Seth +Jody +Pablo +Sam +Morgan +Nathaniel +Donovan +Ismael +Ross +Gordon +Ivan +Loren +Leo +Jared +Nick +Terrence +Clint +Felipe +Tracy +Ken +Noel +Dave +Noah +Abel +Roland +Devin +Leroy +Lonnie +Lorenzo +Pete +Clarence +Leslie +Saul +Damian +Vernon +Trent +Evan +Max +Alvin +Arnold +Gregg +Ignacio +Orlando +Francis +Frankie +Gilberto +Felix +Heath +Roderick +Cameron +Dylan +Jimmie +Joaquin +Kerry +Marshall +Bernard +Clayton +Tyler +Blake +Franklin +Hugo +Stuart +Floyd +Johnathan +Stacy +Herbert +Perry +Abraham +Bob +Louie +Doug +Jonathon +Rogelio +Freddie +Fredrick +Lewis +Josh +Kenny +Neal +Sammy +Ty +Dwight +Jessie +Luke +Robin +Terrance +Angelo +Johnnie +Kelvin +Ramiro +Randolph +Spencer +Ernie +Israel +Jess +Randal +Nicolas +Bradford +Emilio +Lamont +Marlon +Jamal +Scot +Brady +Bryant +Bryon +Deon +Fabian +Guadalupe +Nelson +Rolando +Stephan +Terence +Dante +Elias +Jayson +Rex +Rudolph +Dino +Ethan +Jarrod +Shon +Sidney +Tomas +Cary +Curt +Lester +Santiago +Brendan +Clifton +Harvey +Chester +Darnell +Erin +Jordan +Milton +Robbie +Antoine +Charlie +Herman +Lamar +Malcolm +Rodrigo +Cedric +Clark +Demetrius +Eli +Simon +Benny +Erich +Esteban +Gavin +Lyle +Marty +Daren +Devon +Everett +Reuben +Rigoberto +Xavier +Bart +Donnie +Garry +Gino +Monte +Rob +Tyson +Dewayne +Dirk +Hugh +Humberto +Kristopher +Laurence +Preston +Rickey +Stefan +Chuck +Hans +Jean +Reynaldo +Rod +Vicente +Adolfo +Clay +Garth +Gregorio +Jerald +Teddy +Agustin +Alvaro +Aron +Bryce +Clyde +Fidel +Jermaine +Micah +Jackie +Leland +Miles +Conrad +Edmund +Edwardo +Federico +Gerard +Gonzalo +Mauricio +Octavio +Sheldon +Vince +Alonzo +Carlo +Carlton +Efren +Marcel +Moises +Rory +Santos +Aldo +Benito +Darrel +Jake +Jefferson +Jeffry +Leonardo +Oliver +Beau +Blair +Drew +Efrain +Freddy +Ira +Leif +Noe +Owen +Rocky +Shayne +Stacey +Timmy +Vance +Virgil +Forrest +Kory +Shad +Sherman +Elliott +Jeremiah +Jonas +Kim +Myron +Stewart +Che +Claude +Diego +Domingo +Geoff +Jude +Lionel +Mason +Raymundo +Sebastian +Wallace +Adan +Archie +Bert +Damien +Demian +Graham +Kendall +Keven +Kris +Kurtis +Quentin +Quinn +Sonny +Tobias +Tod +Zane +Bernardo +Colby +Dane +Daryle +Earnest +Kristian +Nickolas +Ronny +Rusty +Al +Aurelio +Carey +Cecil +Damion +Darrick +Deandre +Denny +Edmond +Lucas +Robby +Anton +Ariel +Bennie +Blaine +Brant +Cody +Danial +Gorge +Jasen +Lynn +Nolan +Otis +Pat +Rodger +Scotty +Terrell +Aric +Arnulfo +Augustine +Austin +Cornelius +Derick +Jerrod +Lane +Luther +Michel +Morris +Raphael +Trinidad +Van +Andreas +Brendon +Donnell +Ed +Emanuel +Frederic +Giovanni +Isidro +Jacques +Joesph +Julius +Lonny +Monty +Moses +Pierre +Reid +Rhett +Tommie +August +Collin +Darius +Dax +Delbert +Duncan +Eddy +Emil +Heriberto +Judson +Lars +Mack +Robb +Tad +Trenton +Alec +Boyd +Brenton +Caesar +Ceasar +Cole +Cruz +Dallas +Edmundo +Emmanuel +Leopoldo +Russel +Sal +Tobin +Uriel +Alton +Arron +Billie +Brice +Brook +Cliff +Darwin +Derik +Donavan +Garrick +Jamey +Jeromy +Lon +Malik +Marcelo +Mickey +Salvatore +Thad +Thaddeus +Vaughn +Will +Wyatt +Adolph +Aubrey +Brain +Brandt +Cristopher +Cyrus +Daron +Denis +Deron +Dominick +Estevan +Genaro +German +Gerry +Greggory +Harley +Jefferey +Josef +Kelley +Lorne +Lowell +Marcelino +Nicky +Quinton +Rodrick +Thor +Ulysses +Wendell +Wilbert +Wilfred +Willard +Willis +Alphonso +Ari +Art +Barrett +Brien +Brock +Bruno +Burton +Caleb +Chadwick +Chance +Dario +Darron +Davin +Davis +Dewey +Douglass +Edgardo +Elmer +Erwin +Faustino +Garret +Hubert +Irving +Jackson +Jan +Jed +Kendrick +Kennith +Kenyatta +Leonel +Lino +Mariano +Michelle +Rosendo +Russ +Theron +Tracey +Winston +Abelardo +Adalberto +Antony +Armand +Barton +Christophe +Corbin +Cornell +Donny +Dorian +Eliseo +Fransisco +Galen +Horacio +Jamison +Jerrold +Jorje +Luciano +Marion +Murray +Nestor +Nils +Norberto +Paris +Phil +Roosevelt +Royce +Sanford +Shan +Sterling +Toriano +Tristan +Vito +Ward +Wes +Wilson +Alexandro +Arnoldo +Claudio +Darian +Desmond +Dexter +Donte +Doyle +Elbert +Elizabeth +Ervin +Everardo +Ezequiel +Fausto +Hal +Jarrett +Kraig +Landon +Lincoln +Lupe +Maxwell +Mikel +Refugio +Rey +Sandy +Scottie +Shanon +Travon +Weston +Andrea +Antione +Artemio +Ashley +Baron +Bennett +Bernie +Boris +Braden +Branden +Britt +Buck +Carter +Catarino +Cris +Dawn +Dereck +Eldon +Eleazar +Elgin +Elijah +Ellis +Erie +Errol +Grady +Hilario +Horace +Jade +Jayme +Jennifer +Judd +Korey +Lazaro +Len +Lucio +Marcellus +Maria +Marlin +Mitch +Mitchel +Ned +Otto +Pascual +Percy +Quincy +Reyes +Rico +Sandra +Shay +Shea +Adrain +Alexis +Bradly +Brooks +Courtney +Darby +Donn +Duke +Dwain +Eliot +Eloy +Florencio +Florentino +Forest +Garett +Harlan +Homer +Jeanpaul +Jerardo +Jerold +Johnathon +Jonah +Keenan +Lamonte +Laron +Marcello +Marquis +Mauro +Merle +Monroe +Napoleon +Odell +Reed +Reggie +Rojelio +Shelton +Sylvester +Taylor +Timmothy +Tory +Valentin +Alain +Antone +Armondo +Artie +Augustin +Bartholomew +Benson +Brennan +Carson +Chet +Clemente +Conrado +Del +Denver +Dimitri +Domenic +Donavon +Drake +Enrico +Eugenio +Ferdinand +Fermin +Garet +Garland +Gus +Hank +Isaiah +Kavin +Keir +Kenton +Kimberly +Lamarr +Leigh +Levi +Lindsey +Logan +Manny +Markus +Montgomery +Nathanael +Norbert +Paulo +Quintin +Renee +Rich +Roderic +Rosalio +Royal +Rubin +Salomon +Shiloh +Silas +Solomon +Stan +Yancy +Ali +Alonso +Avery +Barney +Brooke +Candelario +Carleton +Dannie +Darien +Davey +Demetrio +Dieter +Dominique +Dwane +Efrem +Elliot +Elvin +Emmett +Eriberto +Feliciano +Filiberto +Fletcher +Gale +Gentry +Graig +Hiram +Jomo +Joseluis +Junior +Kai +Kasey +Kenyon +Kieth +Lauren +Lisa +Lonnell +Marcial +Mateo +Mel +Milo +Monica +Myles +Oren +Parker +Parrish +Patricio +Prince +Rolf +Rudolfo +Rueben +Rufus +Samson +Sanjay +Shelby +Sky +Sven +Tino +Toney +Torrance +Trever +Tye +Yuri +Ahmad +Alicia +Apolonio +Aram +Armond +Bobbie +Carnell +Cassidy +Charley +Chase +Christiaan +Cipriano +Corwin +Courtland +Cristobal +Dameon +Daryll +Daryn +Demarco +Dudley +Dusty +Emile +Emiliano +Eulalio +Ezra +Franz +Gareth +Giancarlo +Gildardo +Hernan +Irvin +Isaias +Jeramy +Jimi +Josue +Kenji +Kenya +Kiley +Kip +Kirt +Kristen +Kristofer +Lauro +Lawrance +Leander +Leandro +Lenard +Lenny +Luigi +Marcell +Marquette +Mary +Maximiliano +Mikael +Modesto +Niels +Nigel +Norris +Olaf +Patric +Randell +Raoul +Raynaldo +Regis +Renato +Reymundo +Richardo +Rito +Ronaldo +Rosario +Roscoe +Sabino +Samir +Sammie +Seann +Stevie +Sydney +Tito +Ubaldo +Willy +Zak +Alvis +Amir +Amon +Angela +Anthoney +Arlo +Artis +Barron +Berry +Bowen +Braulio +Brion +Brodie +Bryn +Bud +Burke +Camilo +Carmelo +Cash +Cedrick +Chico +Chistopher +Christoper +Christoph +Cleveland +Corbett +Cornelio +Cuauhtemoc +Darcy +Delano +Dell +Denton +Desi +Diana +Dionicio +Elton +Epifanio +Erasmo +Evaristo +Fidencio +Flavio +Fritz +Gabe +Gabino +Gaspar +Geno +Germaine +Geronimo +Gil +Harris +Harrison +Hassan +Heather +Issac +Jarvis +Jasper +Jaysen +Jemal +Jeremey +Jhon +Josiah +Karsten +Kendal +Kermit +Kirby +Ladell +Lavell +Lemuel +Loyd +Lydell +Mace +Major +Marie +Marko +Maximo +Merlin +Mervin +Migel +Nate +Orville +Osvaldo +Porfirio +Rand +Ravi +Reese +Reginal +Renard +Richie +Rickie +Ritchie +Rocco +Romeo +Ronell +Ronnell +Samual +Serjio +Taj +Tammy +Teodoro +Titus +Torrey +Trace +Val +Valentino +Vincente +Von +Warner +Wayland +Wilbur +Wiley +Williams +Woody +Alden +Alegandro +Amador +Anastacio +Anders +Anselmo +Anson +Augustus +Axel +Basilio +Benedict +Bernabe +Bjorn +Blain +Blaise +Brandan +Brannon +Brenden +Britton +Buddy +Burt +Carmen +Carroll +Cecilio +Chaka +Chandler +Channing +Cheyenne +Chip +Christofer +Clarke +Clement +Cliffton +Coleman +Creighton +Curtiss +Daman +Dann +Danniel +Darold +Davy +Delmar +Deric +Derrell +Derric +Deshon +Dione +Doran +Eladio +Elisha +Emery +Engelbert +Erinn +Ernst +Eron +Erron +Everette +Fransico +Geraldo +Gideon +Glendon +Grayson +Grover +Hayden +Hilary +Homero +Huey +Hunter +Iain +Irwin +Isreal +Jacinto +Jamas +Jame +Jami +Jamil +Jarred +Jeanpierre +Jereme +Jerod +Johathan +Johnie +Jonny +Jonpaul +Jubal +Jud +Julie +Kane +Kennth +Kenric +Kevan +Konrad +Layne +Leighton +Leobardo +Lorin +Lucky +Macario +Margarito +Marius +Marlo +Matias +Melissa +Michaelangelo +Michale +Michele +Miquel +Muhammad +Nicole +Otoniel +Paolo +Parish +Patrice +Philippe +Raj +Ramsey +Randel +Reno +Richmond +Romel +Rosa +Rudolf +Serge +Silverio +Simeon +Sixto +Skip +Spence +Stanton +Stevan +Tarek +Teofilo +Terrill +Theadore +Theresa +Tyree +Tyron +Vern +Victoria +Vinson +Wally +Waylon +Weldon +Westley +Wilfredo +Willian +Wilmer +Wm +Woodrow +Zeke +Michael +David +Robert +John +Jason +James +Christopher +Richard +Brian +Daniel +Eric +Scott +Steven +William +Matthew +Jeffrey +Mark +Kevin +Joseph +Anthony +Paul +Thomas +Jose +Timothy +Sean +Charles +Aaron +Gregory +Kenneth +Edward +Stephen +Shawn +Chad +Andrew +Ronald +Todd +Patrick +Donald +Jeremy +Ryan +Juan +Gary +Frank +Jonathan +Raymond +George +Joshua +Peter +Carlos +Bryan +Craig +Adam +Douglas +Dennis +Keith +Erik +Larry +Jesus +Manuel +Victor +Troy +Mario +Jesse +Luis +Gabriel +Benjamin +Marc +Jeffery +Shane +Ricardo +Brandon +Chris +Justin +Derek +Jerry +Martin +Christian +Joe +Samuel +Ruben +Travis +Brent +Phillip +Danny +Francisco +Albert +Tony +Antonio +Jorge +Miguel +Jon +Arthur +Roberto +Marcus +Alexander +Vincent +Joel +Armando +Lawrence +Lance +Randy +Raul +Johnny +Nathan +Bradley +Steve +Brett +Henry +Carl +Jaime +Darren +Russell +Roger +Mike +Philip +Javier +Rodney +Fernando +Gilbert +Alan +Curtis +Hector +Gerald +Jack +Oscar +Louis +Micheal +Nicholas +Terry +Jeff +Damon +Billy +Corey +Adrian +Sergio +Salvador +Alejandro +Wayne +Eduardo +Ernest +Ramon +Andre +Dean +Jimmy +Alex +Roy +Derrick +Jay +Bobby +Kyle +Walter +Glenn +Shannon +Eugene +Arturo +Ralph +Bruce +Lee +Rafael +Alfred +Gerardo +Kelly +Ian +Eddie +Allen +Marco +Alberto +Greg +Geoffrey +Pedro +Randall +Alfredo +Jacob +Dale +Cesar +Darrell +Jamie +Enrique +Ray +Kurt +Frederick +Rene +Ricky +Leonard +Kirk +Dustin +Glen +Ronnie +Brad +Theodore +Tommy +Casey +Rudy +Clifford +Don +Angel +Maurice +Wesley +Harold +Ernesto +Cory +Duane +Mathew +Darrin +Erick +Daryl +Howard +Neil +Tim +Clinton +Gustavo +Willie +Darin +Trevor +Stanley +Jim +Julian +Zachary +Alfonso +Guillermo +Isaac +Tyrone +Jerome +Bill +Tom +Edwin +Fred +Karl +Mitchell +Reginald +Norman +Shaun +Bret +Matt +Dan +Marvin +Earl +Melvin +Jared +Wade +Warren +Dana +Julio +Rick +Rodolfo +Ted +Pablo +Joey +Seth +Garrett +Roman +Andres +Barry +Colin +Dominic +Dwayne +Nathaniel +Edgar +Noah +Calvin +Guy +Marcos +Ron +Gene +Leon +Pete +Andy +Jermaine +Noel +Gordon +Nick +Tyler +Clarence +Grant +Darryl +Byron +Tracy +Clayton +Harry +Omar +Toby +Felipe +Louie +Felix +Abel +Allan +Devin +Jessie +Joaquin +Lloyd +Lorenzo +Jimmie +Leo +Brendan +Ivan +Damian +Lonnie +Francis +Franklin +Ismael +Hugo +Jarrod +Simon +Donovan +Evan +Stuart +Abraham +Israel +Jody +Loren +Rogelio +Vernon +Dave +Clint +Ignacio +Leroy +Sam +Terrance +Arnold +Ethan +Floyd +Gilberto +Marlon +Cameron +Guadalupe +Johnnie +Shad +Alvin +Ben +Bernard +Dylan +Jonathon +Josh +Ross +Dion +Ramiro +Roland +Benny +Roderick +Trent +Frankie +Morgan +Johnathan +Luke +Robin +Vicente +Heath +Herbert +Oliver +Spencer +Gregg +Orlando +Bryant +Elias +Jess +Leslie +Perry +Esteban +Fredrick +Nelson +Saul +Kent +Lewis +Stacy +Alonzo +Erin +Jamal +Nicolas +Ty +Dwight +Herman +Jeremiah +Max +Marcel +Rolando +Terrence +Bob +Cary +Demetrius +Eli +Marshall +Monte +Everett +Freddie +Jean +Randolph +Xavier +Brady +Leonardo +Preston +Reynaldo +Rudolph +Tomas +Agustin +Angelo +Charlie +Scotty +Adolfo +Humberto +Jayson +Kenny +Moises +Rex +Santiago +Benito +Cecil +Dino +Doug +Lamont +Robbie +Beau +Darrick +Erich +Kristopher +Lamar +Shon +Augustine +Blake +Bryon +Emilio +Ernie +Ken +Noe +Sammy +Efren +Gavin +Mauricio +Randal +Reuben +Aron +Donnie +Edwardo +Hans +Micah +Rigoberto +Edmund +Forrest +Jordan +Malcolm +Milton +Carlton +Chester +Elliott +Fabian +Fidel +Hugh +Rob +Santos +Stefan +Virgil +Alvaro +Efrain +Harvey +Jackie +Kerry +Laurence +Leland +Lester +Myron +Bryce +Clay +Darnell +Dewayne +Dirk +Graham +Moses +Scot +Bradford +Julius +Kelvin +Kris +Miles +Stephan +Cedric +Gerard +Kendall +Mason +Neal +Royce +Sebastian +Sidney +Che +Conrad +Dante +Gino +Jeffry +Kurtis +Lionel +Raymundo +Sheldon +Terence +Tyson +Vance +Wendell +Will +Adan +Ari +Clyde +Damien +Garry +Gonzalo +Ira +Lyle +Mickey +Quincy +Rodrigo +Tod +Austin +Daren +Deon +Devon +Marty +Sonny +Timmy +Aldo +Antoine +Carey +Cody +Domingo +Leonel +Teddy +Al +Carlo +Clark +Dorian +Federico +Jonas +Stewart +Arron +Bart +Bert +Brant +Chadwick +Curt +Jasen +Mariano +Rocky +Aric +Darius +Darrel +Denny +Galen +Jake +Marcelo +Monty +Octavio +Quentin +Rickey +Robby +Vince +Bernardo +Clifton +Collin +Dane +Desmond +Garth +Jed +Joesph +Raphael +Rodger +Rusty +Wyatt +Brenton +Damion +Diego +Eliseo +Emmanuel +Freddy +Gerry +Gregorio +Jefferson +Kendrick +Quinn +Sherman +Solomon +Thor +Andreas +Antony +Chuck +Colby +Eldon +Erwin +Jennifer +Kim +Leopoldo +Nolan +Owen +Salvatore +Terrell +Thaddeus +Tristan +Vaughn +Wallace +Alec +Anton +Bennie +Blaine +Donny +Earnest +Elijah +Emiliano +Jerald +Lincoln +Lucas +Lynn +Morris +Stacey +Trinidad +Van +Alexandro +Alton +Archie +Bruno +Claude +Cruz +Delbert +Derick +Drew +Edgardo +Kristian +Lane +Levi +Nickolas +Otis +Rosendo +Russel +Tobias +Tobin +Wilson +Arnulfo +Brendon +Brock +Brook +Buddy +Caesar +Caleb +Courtney +Ezra +Heriberto +Leif +Lonny +Malik +Markus +Michel +Osvaldo +Oswaldo +Rico +Rod +Taylor +Tommie +Ulysses +August +Barrett +Carter +Dario +Demian +Elmer +Eloy +Genaro +Geoff +Hubert +Jamey +Jonah +Marlin +Pierre +Reggie +Rory +Shayne +Sterling +Sylvester +Adalberto +Brannon +Cole +Cristobal +Dallas +Deric +Dexter +Donavon +Donnell +Edmond +Giovanni +Hal +Issac +Jacques +Jerrod +Kelley +Refugio +Rhett +Rickie +Rojelio +Sal +Sandy +Theron +Trenton +Zachariah +Alexis +Ali +Alphonso +Anthoney +Armand +Avery +Barney +Blair +Claudio +Cliff +Danial +Eddy +Elbert +Elliot +Everardo +Gus +Harley +Jackson +Jamison +Jan +Johnathon +Jude +Luther +Mikel +Phil +Reid +Robb +Wilfred +Willard +Winston +Ahmad +Amos +Arnoldo +Art +Ashley +Boyd +Braden +Chance +Cornelius +Dominick +Donte +Doyle +Ed +Emil +Estevan +Eugenio +Grady +Isidro +Jeromy +Jerrold +Josue +Kennith +Keven +Kory +Landon +Loyd +Paulo +Rich +Russ +Sanford +Serjio +Shelby +Tracey +Valentin +Willis +Ariel +Bernie +Blas +Brooks +Chet +Coby +Cristopher +Dewey +Donavan +Edmundo +Elizabeth +Gorge +Jarrett +Jefferey +Jeremey +Johann +Lars +Lowell +Marcellus +Nathanial +Pat +Patricio +Aubrey +Aurelio +Bradly +Brien +Clemente +Cristian +Cyrus +Daryle +Daryn +Dax +Denis +Donn +Emmett +Forest +Hilario +Isaias +Jerardo +Kasey +Kirby +Lamarr +Lenny +Luciano +Mack +Marcelino +Maria +Maximo +Michale +Paris +Romeo +Roosevelt +Sky +Thad +Valentino +Wilbur +Wiley +Amado +Amador +Amy +Barton +Brain +Branden +Brody +Burton +Ceasar +Cleveland +Darwin +Davin +Deshawn +Duke +Duncan +Dusty +Ellis +Emanuel +Enrigue +Errol +Fausto +Fermin +Francesco +Fransisco +Gil +Harrison +Horace +Horacio +Irving +Jameson +Jeanpaul +Jeramy +Jerod +Judson +Korey +Kraig +Leandro +Liam +Lisa +Marcell +Marion +Maximiliano +Mitch +Myles +Nigel +Porfirio +Raoul +Reymundo +Richie +Sandra +Shanon +Timmothy +Tory +Travon +Abe +Alicia +Alonso +Aram +Bennett +Brice +Christofer +Conrado +Cornell +Daron +Elgin +Elton +Frederic +Garret +Greggory +Hassan +Hernan +Jeremie +Jonpaul +Josef +Joseluis +Junior +Juventino +Kai +Kip +Lamonte +Laron +Lon +Maceo +Marcello +Mauro +Migel +Milo +Ned +Nicky +Orion +Otto +Ramsey +Randell +Reyes +Rueben +Rufus +Scottie +Shay +Stevie +Tad +Toriano +Wes +Ysidro +Abram +Adolph +Ambrose +Antone +Arlo +Baron +Basilio +Brennan +Brodie +Buck +Camilo +Carson +Cecilio +Charley +Chase +Chip +Christina +Christoper +Christophe +Cipriano +Cordell +Cullen +Dalton +Darron +Dedrick +Derik +Deron +Deshon +Devlin +Dick +Ezekiel +Felton +Ferdinand +Filiberto +Flavio +Germaine +Hiram +Homer +Isaiah +Isreal +Jarod +Jorje +Kane +Keenan +Kenji +Kenton +Lavell +Logan +Lorne +Lucio +Macario +Maxwell +Michelle +Mitchel +Monica +Murray +Nathanael +Nestor +Norbert +Norberto +Orville +Ritchie +Rito +Rodrick +Rubin +Teodoro +Terrill +Titus +Ulises +Uriel +Val +Wilfredo +Zane +Alain +Arlen +Armen +Artemio +Berry +Bobbie +Britt +Carmelo +Cassidy +Catarino +Chandler +Christiaan +Corbett +Cornelio +Darek +Davis +Deandre +Denver +Devan +Ennis +Evaristo +Ezequiel +Fabio +Florencio +Fredric +Gabe +Garland +Garrick +Hayden +Hunter +Ishmael +Jacinto +Jacque +Jarred +Jeramie +Jimi +Johnie +Kareem +Kelsey +Kenya +Kenyatta +Kirt +Kristofer +Kristoffer +Kwame +Lazaro +Lejon +Luiz +Marquis +Merle +Modesto +Oren +Parrish +Pascual +Percy +Renato +Renee +Rey +Rodd +Rosalio +Rosario +Sammie +Samson +Sekou +Shelton +Shiloh +Simeon +Susan +Tarik +Tate +Teofilo +Tye +Tyree +Tyron +Vernell +Vladimir +Von +Whitney +Woodrow +Abelardo +Ahmed +Alvino +Amir +Anastacio +Armondo +Atiba +Audie +Augustus +Bartholomew +Benedict +Benson +Billie +Bonifacio +Burt +Butch +Cain +Candelario +Charlton +Christen +Clement +Conan +Cord +Cris +Curtiss +Cynthia +Daivd +Damond +Danniel +Darick +Deanna +Dedric +Demetrio +Denise +Derrell +Desean +Destry +Diallo +Dillon +Dominique +Drake +Dwyane +Eben +Ector +Eleazar +Emerson +Erasmo +Eriberto +Erie +Ervin +Eulalio +Eusebio +Gaetano +Gaylord +Geronimo +Grover +Hollis +Irvin +Jakob +Jarret +Jayme +Jaysen +Jereme +Jerold +Jomo +Juaquin +Judd +Jules +Karsten +Kennard +Kermit +Kevan +Khalid +Kieth +Kit +Krishna +Lauro +Layne +Leigh +Len +Les +Lino +Marciano +Marlo +Mary +Maynard +Mick +Monroe +Nicole +Norma +Osbaldo +Patricia +Philippe +Prince +Raymon +Reed +Richardo +Rommel +Ronnell +Rudolpho +Samual +Shanti +Sherwin +Stan +Stanford +Stanton +Stephanie +Sven +Taj +Toney +Tucker +Wilbert +Wylie +Yuri +Zackary +Zackery +Adrien +Alfie +Alfonzo +Amani +Anders +Andrea +Anibal +Antione +Antwan +Antwon +Arcadio +Arik +Armond +Arvin +Augustin +Baltazar +Benjiman +Bernardino +Booker +Brandy +Brooke +Bryn +Carroll +Cedrick +Cezar +Channing +Chistopher +Christropher +Clarke +Claudia +Crispin +Dain +Dameon +Darcy +Darian +Daric +Davy +Daymon +Dee +Del +Delaney +Delano +Delfino +Denton +Dereck +Derrek +Desi +Dietrich +Dimas +Diondre +Django +Domenico +Douglass +Dov +Dwane +Edvardo +Ehren +Eligio +Eliot +Enrico +Esequiel +Florentino +Frances +Franco +Franklyn +Fransico +Gabino +Gannon +Garett +Garey +Geno +Geoffery +German +Gideon +Gina +Grayson +Gunnar +Harlan +Harmon +Harris +Heather +Henri +Jacky +Jahmal +Jamel +Jasson +Jeronimo +Jhon +Joachim +Jodie +Johnney +Julie +Jun +Karim +Kelton +Kenyon +Kerwin +Kimani +Kimberly +King +Konrad +Lamon +Lanny +Lashawn +Lavelle +Librado +Lindsey +London +Lucius +Lupe +Marin +Markell +Marko +Mateo +Matias +Mattew +Maximino +Mel +Merlin +Micky +Miquel +Misael +Napoleon +Narciso +Nash +Nasser +Nat +Nate +Natividad +Nicholaus +Nicola +Nils +Nino +Odell +Olin +Otha +Porter +Rahsaan +Raymund +Reese +Renaldo +Riley +Rocco +Roel +Rogers +Rolland +Romel +Romulo +Ronell +Ronny +Rudolfo +Ryder +Sabino +Sage +Samir +Sanjay +Serge +Shain +Shea +Shonn +Shonte +Silas +Silverio +Sol +Tait +Tino +Tito +Tramel +Valdemar +Valentine +Vincente +Virgilio +Vito +Ward +Wayland +Weldon +Westley +Williams +Winfred +Woody +Zak +Zeke +Michael +David +Jason +Christopher +Robert +John +James +Brian +Daniel +Richard +Eric +Matthew +William +Steven +Jeffrey +Scott +Mark +Joseph +Anthony +Kevin +Jose +Paul +Thomas +Timothy +Ryan +Aaron +Gregory +Sean +Charles +Edward +Andrew +Kenneth +Chad +Joshua +Juan +Shawn +Jeremy +Patrick +Stephen +Jonathan +Ronald +Todd +Donald +Carlos +Justin +Bryan +Peter +Raymond +George +Frank +Adam +Brandon +Gary +Keith +Manuel +Erik +Douglas +Jesus +Jesse +Craig +Gabriel +Benjamin +Mario +Luis +Victor +Ricardo +Francisco +Dennis +Larry +Ruben +Miguel +Jerry +Christian +Shane +Antonio +Nathan +Samuel +Joel +Troy +Derek +Jorge +Phillip +Roberto +Jeffery +Joe +Albert +Marc +Travis +Martin +Raul +Brett +Jaime +Danny +Brent +Chris +Alexander +Tony +Johnny +Jon +Vincent +Hector +Javier +Jacob +Arthur +Armando +Marcus +Lawrence +Nicholas +Henry +Bradley +Oscar +Darren +Adrian +Sergio +Randy +Carl +Roger +Alejandro +Russell +Steve +Damon +Eduardo +Fernando +Lance +Jimmy +Salvador +Alan +Mike +Gilbert +Philip +Ramon +Jeff +Louis +Rafael +Arturo +Ian +Rodney +Walter +Alex +Curtis +Jack +Terry +Micheal +Wayne +Kyle +Ernest +Corey +Enrique +Alfredo +Billy +Ralph +Dustin +Jamie +Cesar +Andre +Ricky +Roy +Marco +Pedro +Rene +Bobby +Gerardo +Dean +Gerald +Lee +Shannon +Jay +Leonard +Allen +Alfred +Eddie +Randall +Glenn +Alberto +Eugene +Derrick +Geoffrey +Casey +Dale +Darrell +Zachary +Ernesto +Isaac +Greg +Rudy +Trevor +Maurice +Angel +Frederick +Kelly +Mathew +Tommy +Duane +Ray +Theodore +Clinton +Cory +Jared +Julio +Glen +Darin +Jerome +Tracy +Ronnie +Guillermo +Neil +Bruce +Kirk +Kurt +Marcos +Damian +Erick +Rodolfo +Ivan +Willie +Julian +Warren +Wesley +Alfonso +Brad +Don +Gustavo +Omar +Harold +Stanley +Edwin +Norman +Tyler +Karl +Mitchell +Nathaniel +Pablo +Rick +Abel +Jermaine +Seth +Clifford +Tyrone +Daryl +Edgar +Fred +Howard +Jessie +Jim +Dominic +Andres +Noah +Andy +Marlon +Reginald +Rogelio +Harry +Lamont +Shaun +Garrett +Ethan +Felipe +Leon +Lorenzo +Louie +Roman +Tim +Allan +Marvin +Bill +Evan +Melvin +Ted +Lonnie +Joey +Toby +Dwayne +Bernard +Cameron +Dana +Earl +Gilberto +Guy +Joaquin +Nick +Saul +Colin +Abraham +Barry +Ismael +Grant +Hugo +Noel +Calvin +Dan +Darrin +Israel +Loren +Alvin +Felix +Ignacio +Matt +Clint +Bret +Elias +Fredrick +Gene +Kent +Wade +Ben +Bryce +Byron +Darryl +Heath +Vernon +Clayton +Tom +Lloyd +Ross +Frankie +Jimmie +Josh +Spencer +Luke +Devin +Dylan +Roland +Adolfo +Gordon +Nicolas +Clarence +Esteban +Leslie +Terrence +Angelo +Dion +Emilio +Kristopher +Morgan +Jayson +Franklin +Leo +Moises +Ramiro +Sonny +Benny +Eli +Sam +Shad +Simon +Bryant +Damien +Donovan +Fabian +Humberto +Jamal +Jonathon +Pete +Gregg +Jody +Micah +Dave +Francis +Guadalupe +Rodrigo +Ty +Kerry +Orlando +Stephan +Brendan +Freddie +Herbert +Jess +Sammy +Terrance +Mauricio +Max +Ron +Rudolph +Jeremiah +Rolando +Arnold +Bryon +Jake +Roderick +Erin +Herman +Johnnie +Tomas +Bradford +Darnell +Efrain +Jasen +Johnathan +Leroy +Oliver +Stacy +Trent +Charlie +Clifton +Demetrius +Kenny +Lewis +Nelson +Randolph +Santiago +Alvaro +Cedric +Darrel +Floyd +Neal +Vicente +Dwight +Ernie +Jarrod +Ken +Leonardo +Noe +Preston +Reuben +Tyson +Jackie +Jordan +Lester +Marcel +Reynaldo +Cary +Lamar +Marshall +Quincy +Xavier +Federico +Malcolm +Adan +Antoine +Blake +Conrad +Damion +Gonzalo +Gregorio +Octavio +Rickey +Cody +Deon +Edmund +Edwardo +Genaro +Leland +Lucas +Milton +Stuart +Dante +Demond +Donnie +Erich +Forrest +Kris +Perry +Rigoberto +Robin +Terence +Darius +Agustin +Bernardo +Bob +Brady +Dane +Hans +Hugh +Marty +Raymundo +Aron +Carey +Darrick +Freddy +Scot +Stacey +Aurelio +Claude +Gavin +Gino +Graham +Jean +Joesph +Jonas +Laurence +Lionel +Robby +Rocky +Shon +Stefan +Beau +Denny +Efren +Heriberto +Leonel +Rex +Rusty +Thaddeus +Clyde +Colby +Derick +Dorian +Everett +Fidel +Harvey +Kareem +Miles +Scotty +Wendell +Austin +Benito +Daren +Drew +Garry +Issac +Jerald +Jerrod +Jonah +Randal +Sebastian +Sidney +Timmy +Bert +Curt +Jefferson +Leopoldo +Mariano +Monte +Myron +Otis +Sheldon +Tobias +Al +Arnulfo +Dallas +Dino +Garth +Jacques +Jamey +Jeffry +Leif +Lyle +Alonzo +Ariel +Blaine +Brenton +Chance +Clark +Cruz +Desmond +Devon +Elijah +Everardo +Gerard +Marcelino +Marlin +Owen +Robbie +Solomon +Stewart +Virgil +Zachariah +Arron +Augustine +Cecil +Cole +Courtney +Forest +Kim +Kristian +Mason +Moses +Rob +Tad +Terrell +Alexandro +Carlton +Chuck +Delbert +Dominick +Doug +Elton +Galen +Jan +Lincoln +Marcelo +Rosendo +Santos +Sterling +Trenton +Ali +Alton +Brock +Carlo +Clay +Cornelius +Denis +Edmond +Elliott +Emmett +Garrick +Ira +Kelvin +Shayne +Tod +Trinidad +Archie +Barrett +Branden +Brant +Caleb +Chadwick +Chester +Daron +Diego +Grady +Jefferey +Kendall +Levi +Lonny +Luther +Osvaldo +Oswaldo +Shelby +Tommie +Vince +Wilson +Wyatt +Alonso +Brain +Burton +Cristian +Dameon +Deshawn +Dirk +Edmundo +Elmer +Germaine +Gorge +Jennifer +Jeromy +Kory +Kurtis +Lars +Mickey +Ronny +Salvatore +Shea +Sherman +Taylor +Wallace +Will +Barton +Blair +Che +Collin +Donnell +Eloy +Fransisco +Jerardo +Jeremie +Josue +Kelley +Kraig +Lino +Monty +Nolan +Norberto +Quinn +Rahsaan +Raphael +Refugio +Vance +Winston +Abelardo +Aldo +Antony +Ari +Bart +Bennie +Buddy +Caesar +Carson +Domingo +Donavan +Donte +Emiliano +Estevan +Ezra +Filiberto +Gus +Jamison +Jarrett +Julius +Keven +Lon +Lowell +Mikel +Nigel +Stevan +Tobin +Ulysses +Adalberto +Alec +Anton +Aric +Art +Cornell +Danial +Dewey +Duke +Earnest +Emanuel +Fausto +Fermin +Garret +Gerry +Giovanni +Isaias +Jayme +Jed +Kenyon +Kwame +Lane +Luciano +Marcell +Maria +Marquis +Michelle +Nathanael +Nestor +Pierre +Reed +Rey +Rhett +Rodger +Royce +Rueben +Santino +Tracey +Tristan +Ulises +Willard +Zane +Amador +Brennan +Brice +Clemente +Cristopher +Danniel +Deandre +Diallo +Donny +Edgardo +Eliseo +Elliot +Ezekiel +Ezequiel +Horacio +Jerod +Johnathon +Josef +Jude +Kendrick +Kristin +Kristofer +Maxwell +Narciso +Nickolas +Paulo +Romeo +Rosario +Russel +Sal +Shelton +Teddy +Theron +Thor +Torrey +Valentin +Vidal +Apolonio +Arlo +Armondo +Aubrey +Augustin +Brook +Brooks +Bruno +Camilo +Ceasar +Chase +Christen +Claudio +Cliff +Darian +Dario +Dax +Dimitri +Eddy +Errol +Eusebio +Geoff +Geronimo +Isidro +Kip +Lafayette +Laron +Liam +Lorne +Lucio +Mauro +Michale +Milo +Nicky +Paris +Porfirio +Reid +Rodrick +Sky +Sylvester +Toney +Vaughn +Wilbert +Abram +Armand +Asa +Avery +Bradly +Buck +Christoper +Demian +Dewayne +Dominique +Donell +Donn +Douglass +Duncan +Ed +Eleazar +Emmanuel +Enrigue +Faustino +Flavio +Garett +Gil +Greggory +Hiram +Jeramy +Josiah +Kennith +Kenya +Kirby +Lenard +Lenny +Mack +Margarito +Milan +Mitchel +Modesto +Ned +Odell +Orion +Osbaldo +Quentin +Rebecca +Reyes +Richie +Robb +Rod +Roosevelt +Rudolfo +Serjio +Taj +Thad +Ward +Wilbur +Willis +Abdul +Ahmad +Alphonso +Amado +Andreas +Anthoney +Antione +Ashley +August +Bartholomew +Boyd +Christophe +Cleveland +Coy +Cristobal +Cyrus +Darron +Delton +Demetrios +Deric +Doyle +Dusty +Erwin +Harlan +Hunter +Jacinto +Jackson +Jade +Jaysen +Jereme +Jeremey +Jerold +Kirt +Leobardo +Lisa +Mateo +Michel +Migel +Napoleon +Patricia +Reggie +Renato +Reymundo +Rickie +Rory +Sandy +Seamus +Stanton +Stephon +Tino +Van +Wes +Yancy +Alain +Amos +Anselmo +Arnoldo +Artemio +Bernie +Brien +Candelario +Carter +Cecilio +Cipriano +Davin +Derric +Dontay +Elbert +Ellis +Enrico +Erasmo +Ervin +Esequiel +Florentino +Garland +German +Gillermo +Gonsalo +Hal +Harley +Hubert +Isaiah +Jarred +Jeanpaul +Jeramie +Jorje +Joseluis +Kenji +Kevan +Korey +Lamarr +Landon +Lazaro +Lupe +Lynn +Marcellus +Marlo +Mel +Michal +Nathanial +Natividad +Norbert +Odis +Patricio +Randel +Raoul +Renee +Reno +Rojelio +Ronaldo +Sage +Shan +Stephanie +Tito +Titus +Tory +Tyrell +Tyron +Val +Valentine +Vito +Abe +Akil +Alexis +Anderson +Anson +Antwan +Artis +Bennett +Bobbie +Braden +Brandan +Brandt +Brannon +Britt +Brodie +Cade +Candido +Carroll +Chadd +Chauncey +Clement +Crispin +Cuauhtemoc +Damond +Daryle +Dereck +Deron +Dexter +Donavon +Donta +Dwaine +Elgin +Emile +Feliciano +Frederic +Giuseppe +Hilario +Hollis +Jarod +Jerrold +Jevon +Jonpaul +Judah +Judd +Keenan +Kiley +Lamonte +Lavelle +Logan +Loyd +Marcello +Marcial +Marion +Merle +Merlin +Orville +Otto +Pat +Phil +Randell +Raymon +Rito +Rufus +Sabino +Samual +Scottie +Sekou +Shiloh +Stan +Teodoro +Trever +Truman +Weston +Wilfred +Wilfredo +Willy +Zoltan +Addison +Adrain +Adrien +Ahmed +Amando +Amir +Ara +Aram +Armen +Armon +Audie +Baron +Bernardino +Bo +Boris +Brendon +Carmen +Catarino +Cedrick +Chaka +Chandler +Charley +Christiaan +Christina +Christofer +Cleve +Conrado +Corbett +Damen +Danielle +Danilo +Darby +Dedrick +Denton +Derik +Derrek +Deshaun +Dionicio +Ehren +Eldon +Elisha +Emerson +Emil +Eron +Eugenio +Eulalio +Faron +Fredric +Fredy +Gabino +Gail +Gaston +Gavino +Geary +Gildardo +Harris +Hernan +Hilton +Homer +Horace +Iran +Irvin +Ivory +Jai +Jamar +Jedediah +Jered +Johan +Johnie +Judson +Julie +Justo +Juston +Kai +Kenton +Kieth +Kimberly +Kimo +Kristen +Laura +Lejon +London +Major +Malo +Marcoantonio +Miquel +Morris +Myles +Nicole +Niels +Norris +Olin +Oren +Paolo +Parker +Parrish +Percy +Philippe +Reese +Richardo +Riley +Rommel +Romulo +Roque +Salomon +Sandra +Sanford +Shamon +Shay +Simeon +Sunny +Tait +Tammy +Terrill +Toriano +Toussaint +Tremayne +Trevis +Trevon +Trey +Tye +Uriel +Valente +Valentino +Veronica +Vladimir +Young +Ysidro +Yuri +Adolph +Alfonzo +Ambrose +Anastacio +Andrea +Antonino +Arlen +Asher +Augustus +Avelino +Baldomero +Barney +Benson +Bertram +Bonifacio +Brandy +Breck +Brody +Bronson +Brooke +Burt +Cain +Canyon +Cesario +Channing +Charlton +Chet +Cheyenne +Christapher +Christin +Christoher +Coleman +Conan +Corbin +Cordell +Damone +Darel +Daryn +Davey +Davinder +Davis +Dawn +Demarco +Demetri +Demetrio +Derk +Deshun +Dick +Dietrich +Dimas +Dionisio +Domenic +Drake +Dru +Dwain +Eliazar +Elmo +Elvin +Enoch +Erie +Errick +Etienne +Favio +Feliz +Fidencio +Filimon +Fletcher +Franciso +Gabor +Galdino +Gamaliel +Gareth +Gaylord +Geoffery +Gideon +Gina +Gloria +Guido +Hank +Herminio +Heshimu +Ibn +Irene +Jabbar +Jabier +Jacque +Jami +Jamin +Jasper +Jassen +Jeb +Jens +Jerami +Jerel +Jermain +Jermon +Jeronimo +Jessy +Jhon +Jimi +Johannes +Jules +Junior +Juvenal +Juventino +Kahlil +Kameron +Kasey +Kavin +Keefe +Keri +Kermit +Khari +Kristofor +Lanny +Lashawn +Lauren +Lavell +Lemuel +Levon +Lorin +Lucien +Lyman +Macario +Maceo +Malcom +Manual +Markus +Martha +Matias +Maximiano +Maximiliano +Melecio +Meredith +Mervin +Michele +Misael +Monica +Moshe +Nazario +Nevin +Nino +Otha +Patric +Ramsey +Rasheed +Ric +Rich +Ritchie +Robet +Rocco +Ronell +Rosa +Roscoe +Rubin +Russ +Samson +Sandro +Selso +Servando +Silas +Silvio +Socrates +Sol +Stevie +Tarik +Tate +Teresa +Thurman +Tige +Tina +Tyree +Vernell +Vic +Victorino +Vincente +Wilmer +Yusef +Zack +Zackary +Michael +Jason +David +Christopher +Robert +John +James +Brian +Daniel +Matthew +Richard +Eric +Mark +William +Joseph +Jose +Jeffrey +Steven +Anthony +Scott +Kevin +Paul +Ryan +Joshua +Thomas +Aaron +Timothy +Gregory +Juan +Sean +Charles +Andrew +Jeremy +Kenneth +Jonathan +Edward +Shawn +Justin +Stephen +Chad +Adam +Bryan +Todd +Carlos +Patrick +Ronald +Donald +Brandon +Jesus +Raymond +Frank +George +Gary +Manuel +Luis +Gabriel +Peter +Nathan +Jesse +Benjamin +Keith +Mario +Victor +Erik +Francisco +Ricardo +Craig +Douglas +Dennis +Shane +Ruben +Miguel +Travis +Antonio +Larry +Jorge +Roberto +Joel +Samuel +Martin +Jerry +Joe +Christian +Derek +Phillip +Jaime +Javier +Hector +Eduardo +Marc +Danny +Armando +Jeffery +Jacob +Nicholas +Alexander +Raul +Oscar +Tony +Vincent +Albert +Alejandro +Troy +Brent +Sergio +Philip +Johnny +Russell +Damon +Fernando +Arthur +Rafael +Randy +Marcus +Adrian +Brett +Ramon +Darren +Bradley +Lawrence +Rodney +Henry +Chris +Jon +Salvador +Pedro +Gilbert +Cesar +Jack +Ian +Steve +Alan +Arturo +Enrique +Louis +Marco +Alex +Roger +Alberto +Curtis +Jimmy +Alfredo +Micheal +Gerardo +Carl +Kyle +Billy +Angel +Bobby +Jamie +Gerald +Terry +Corey +Lance +Ernest +Ralph +Wayne +Allen +Rene +Shannon +Walter +Derrick +Ernesto +Dustin +Eddie +Zachary +Jared +Roy +Rudy +Andre +Eugene +Nathaniel +Jay +Casey +Randall +Jeff +Julio +Mathew +Lee +Geoffrey +Isaac +Leonard +Mike +Ronnie +Alfonso +Gustavo +Theodore +Tommy +Guillermo +Glenn +Trevor +Cory +Julian +Marcos +Omar +Alfred +Clinton +Jeremiah +Frederick +Ray +Andres +Kelly +Ricky +Edgar +Seth +Dale +Darrell +Rodolfo +Tyrone +Damian +Neil +Dean +Brad +Abel +Dominic +Wesley +Bruce +Greg +Gilberto +Tracy +Darin +Kurt +Stanley +Kirk +Jermaine +Tyler +Erick +Fred +Howard +Clifford +Pablo +Edwin +Felipe +Maurice +Melvin +Andy +Willie +Ignacio +Mitchell +Clayton +Harold +Jerome +Devin +Earl +Marvin +Byron +Ismael +Ramiro +Duane +Joey +Rick +Jim +Warren +Cameron +Noah +Don +Felix +Leo +Ethan +Joaquin +Karl +Kristopher +Norman +Dwayne +Israel +Ivan +Roman +Garrett +Marlon +Saul +Clint +Colin +Noel +Glen +Jessie +Leon +Wade +Hugo +Simon +Toby +Daryl +Evan +Grant +Tim +Abraham +Dana +Nick +Luke +Micah +Donovan +Lorenzo +Shaun +Barry +Franklin +Rogelio +Harry +Louie +Max +Tom +Dan +Lonnie +Ben +Jonathon +Humberto +Allan +Calvin +Darryl +Dylan +Elias +Esteban +Matt +Reginald +Tyson +Guadalupe +Guy +Bret +Johnathan +Josh +Clarence +Rodrigo +Ross +Bernard +Eli +Jayson +Lamont +Nicolas +Orlando +Sam +Francis +Gene +Kent +Angelo +Devon +Fabian +Floyd +Jake +Octavio +Oliver +Rolando +Gordon +Herman +Lloyd +Santiago +Spencer +Alvaro +Dion +Herbert +Pete +Tomas +Moises +Neal +Stuart +Adan +Blake +Damien +Jimmie +Morgan +Roland +Terrence +Bill +Darrin +Gavin +Jody +Leslie +Loren +Reynaldo +Vernon +Arnold +Heath +Jess +Randolph +Agustin +Alvin +Brady +Efrain +Fredrick +Rudolph +Sonny +Johnnie +Rigoberto +Terence +Bryant +Erin +Leonardo +Marcel +Ted +Terrance +Perry +Ron +Bryce +Dwight +Everett +Marshall +Noe +Adolfo +Cary +Gonzalo +Leroy +Shad +Vicente +Cody +Donnie +Ernie +Freddie +Jamal +Jordan +Damion +Darnell +Freddy +Gregg +Moses +Robin +Stephan +Trent +Benny +Bernardo +Brendan +Ken +Kenny +Stacy +Xavier +Antoine +Aron +Edwardo +Jackie +Jefferson +Lewis +Roderick +Ty +Clyde +Dewayne +Emilio +Erich +Fidel +Jasen +Beau +Benito +Diego +Lester +Marty +Miles +Sammy +Sidney +Austin +Bob +Demetrius +Deon +Nelson +Raymundo +Santos +Arron +Bradford +Frankie +Lucas +Randal +Rex +Rickey +Bryon +Demond +Efren +Heriberto +Josue +Reuben +Stefan +Cedric +Deandre +Lionel +Caleb +Darrel +Eloy +Genaro +Jarrod +Julius +Osvaldo +Owen +Alonzo +Augustine +Cecil +Jonas +Laurence +Leopoldo +Sebastian +Brenton +Clifton +Colby +Desmond +Gerard +Kristian +Lamar +Leonel +Myron +Preston +Thaddeus +Drew +German +Gregorio +Harvey +Issac +Jean +Joesph +Mauricio +Daren +Darius +Darrick +Elliot +Jeromy +Jonah +Leif +Stacey +Tobin +Virgil +Carlo +Collin +Domingo +Everardo +Federico +Forrest +Fransisco +Jarrett +Kerry +Milton +Robbie +Scot +Aldo +Branden +Chester +Clay +Conrad +Dane +Dave +Emmanuel +Estevan +Hans +Horacio +Kurtis +Lyle +Monte +Raphael +Shayne +Arnulfo +Aurelio +Dante +Donny +Ezra +Hugh +Jeffry +Marcelo +Nolan +Otis +Rusty +Sherman +Teddy +Terrell +Vance +Aric +Dorian +Edgardo +Elijah +Elvis +Garth +Gorge +Harley +Ira +Leland +Rocky +Trenton +Zachariah +Alonso +Derick +Deron +Ezequiel +Jamison +Jennifer +Jorje +Kris +Scotty +Stewart +Ulysses +Abram +Brain +Che +Dino +Donnell +Garry +Giovanni +Hilario +Isidro +Jerald +Jerrod +Kelvin +Kendall +Kip +Malcolm +Marcell +Mason +Nathanael +Pierre +Quentin +Quincy +Renato +Rosendo +Tobias +Van +Wendell +Wyatt +Anton +Archie +Bennie +Carlton +Danial +Denny +Earnest +Eddy +Edmund +Eliseo +Elmer +Emiliano +Flavio +Garrick +Gino +Hernan +Kenyatta +Mariano +Myles +Nickolas +Norberto +Shon +Solomon +Valentin +Alexis +Ari +Carter +Charlie +Clark +Cruz +Dominick +Edmond +Elliott +Elton +Fermin +Hubert +Jade +Kim +Kory +Levi +Maria +Michel +Reed +Reggie +Renee +Reyes +Romeo +Rommel +Rory +Theron +Tod +Trinidad +Wallace +Alton +Billie +Blaine +Buddy +Caesar +Claude +Cole +Courtney +Curt +Daron +Emil +Enrico +Filiberto +Gus +Jan +Kareem +Kasey +Luther +Marion +Mauro +Santino +Sylvester +Tyree +Wilbert +Will +Avery +Bert +Carey +Claudio +Cornelius +Damond +Dario +Dax +Denis +Dereck +Derik +Duncan +Jed +Jedediah +Jeramy +Kristoffer +Lucio +Lynn +Mack +Monty +Refugio +Rickie +Riley +Rojelio +Roosevelt +Tristan +Ulises +Wilfredo +Adalberto +Adolph +Art +Bernie +Brant +Brice +Brock +Brooks +Chadwick +Cristobal +Dameon +Davin +Deshawn +Dexter +Doyle +Ellis +Garret +Isaias +Jabari +Jackson +Josef +Lars +Lonny +Marcelino +Marquis +Osbaldo +Rahsaan +Ramsey +Rico +Robby +Sandy +Shea +Shelby +Tad +Thad +Timmy +Tyron +Vidal +Wilson +Winston +Alfonzo +Amos +Andreas +Arnoldo +Bart +Brennan +Cain +Chuck +Cornelio +Cristian +Cristopher +Cuauhtemoc +Cyrus +Elbert +Esequiel +Forest +Isaiah +Jamey +Jeremie +Kraig +Mickey +Mikel +Rob +Stevie +Teodoro +Tory +Al +Alexandro +Antony +Ara +Blair +Boyd +Burt +Chase +Cleveland +Dallas +Donte +Doug +Erasmo +Erwin +Faustino +Geoff +Graham +Hal +Hiram +Johnathon +Kendrick +Kenyon +Kwame +Lafayette +Leandro +Lemuel +Lino +Lorin +Lowell +Reid +Salvatore +Silas +Sterling +Tino +Vince +Abelardo +Alec +Amador +Ariel +Armand +Ashley +Aubrey +Brien +Bruno +Burton +Caine +Chance +Chauncey +Coby +Darian +Delbert +Deric +Dirk +Dominique +Dwain +Ed +Emanuel +Ezekiel +Isreal +Joseluis +Jude +Kenji +Keven +Kirt +Logan +Lupe +Margarito +Markus +Marlin +Maximillian +Milo +Morris +Nestor +Nicky +Orion +Patricia +Paulo +Rey +Rodger +Rodrick +Russel +Salomon +Serjio +Taj +Taylor +Tommie +Ubaldo +Uriah +Vincente +Zachery +Zane +Antione +Barrett +Benigno +Blas +Brendon +Britt +Christina +Christoper +Cliff +Cornell +Darron +Demetrio +Denver +Dewey +Donn +Edmundo +Emmett +Errol +Franco +Gideon +Gil +Grady +Jacques +Jerardo +Jered +Jeremey +Jevon +Junior +Kahlil +Liam +Mac +Malik +Marcello +Maxwell +Michale +Michelle +Nino +Norris +Odell +Oswaldo +Rod +Roel +Rueben +Rufus +Sage +Shay +Sheldon +Sky +Stan +Thor +Torrey +Willis +Yohance +Ahmed +Alphonso +Amy +Antwan +Aram +Arcadio +Augustin +Barney +Bobbie +Bradly +Brion +Cedrick +Cord +Dedrick +Eben +Ector +Eugenio +Eulalio +Gale +Galen +Garett +Garland +Geronimo +Gerry +Greggory +Harris +Homer +Jamar +Jaron +Jerod +Jerrold +Josiah +Judd +Kane +Karim +Kennith +Lamonte +Laron +Lauren +Lenard +Marcellus +Monica +Quinton +Reno +Richardo +Richie +Royce +Rudolfo +Russ +Sandro +Shan +Shiloh +Tarik +Tremayne +Tye +Vito +Wes +Alden +Ali +Andrea +Anselmo +Armondo +August +Baron +Bo +Brandt +Brenden +Buck +Candelario +Catarino +Charley +Chet +Clemente +Coy +Cyril +Delmar +Dimitri +Donavan +Donta +Duke +Ferdinand +Francesco +Fredric +Gildardo +Giuseppe +Hakim +Harrison +Jacinto +Jamil +Jammie +Jarod +Jarvis +Jasson +Jeanpaul +Jefferey +Judson +Juventino +Kenya +Khalid +Korey +Lashon +Mateo +Maximiliano +Maynard +Nate +Nathanial +Prince +Rajesh +Randell +Raoul +Reymundo +Roque +Rubin +Sal +Sammie +Sanford +Shanon +Simeon +Sunny +Thurman +Uriel +Vaughn +Willard +Willy +Zackery +Abe +Ahmad +Alain +Albaro +Alegandro +Alvino +Anders +Andrei +Anson +Anthoney +Apolonio +Basilio +Benedict +Camilo +Carleton +Carson +Cheyenne +Cortney +Crispin +Cullen +Danilo +Darby +Davis +Demian +Deshaun +Deshon +Dick +Dwaine +Eldon +Eliot +Emerson +Emmitt +Enrigue +Eriberto +Erubey +Ervin +Gabe +Gaston +Geno +Gillermo +Hank +Harlan +Jamin +Jasper +Jelani +Jeramie +Jeremi +Jerold +Jethro +Jonpaul +Kamau +Kieth +Kimberly +Kristin +Lavell +Lazaro +Len +Lorne +Luciano +Luiz +Lyndon +Matthias +Maximilian +Merle +Merlin +Mervin +Migel +Mikael +Mitchel +Narciso +Nash +Nathen +Ned +Nils +Noble +Oren +Orville +Paolo +Pascual +Patricio +Quinn +Rhett +Ricco +Rocco +Ronny +Rosalio +Roscoe +Roverto +Rufino +Salvadore +Samson +Sasha +Serafin +Silverio +Sonia +Tai +Trever +Trevon +Val +Valentine +Valentino +Veronica +Vladimir +Walker +Wally +Wayland +Wilfred +Woodrow +Abran +Adrien +Akim +Alva +Amilcar +Angela +Antone +Antonino +Arik +Armond +Artemio +Baltazar +Bennett +Benson +Bernardino +Brandi +Burke +Candido +Carnell +Ceasar +Chadd +Chistopher +Christofer +Cipriano +Cirilo +Cisco +Claudia +Constantine +Cynthia +Dagoberto +Daivd +Dalton +Darell +Darick +Daryn +Dathan +Dayne +Dejuan +Del +Denton +Devan +Diallo +Diane +Dillon +Domenic +Drake +Dupree +Edgard +Edilberto +Efrem +Elden +Eleazar +Elvin +Ely +Emery +Emile +Errick +Esau +Fausto +Fidencio +Florencio +Florentino +Fortunato +Franky +Fritz +Geary +Germaine +Gill +Graig +Grover +Heather +Henery +Hodari +Homero +Horace +Ishmael +Jacobo +Jaysen +Jeb +Jerame +Jermain +Juaquin +Juston +Justus +Karsten +Keenan +Kennard +Kevan +Kimani +Kimo +Konrad +Kristofer +Landon +Lawrance +Lejon +Lesley +Levon +Librado +Lon +Lorena +Lovell +Magdaleno +Makoto +Malachi +Melchor +Merced +Micahel +Miguelangel +Miquel +Misael +Modesto +Montgomery +Niels +Nigel +Nikolas +Norbert +Orin +Pernell +Porfirio +Raffi +Rahman +Rakesh +Ravi +Raymon +Rian +Richmond +Roderic +Rolf +Rolland +Rosario +Royal +Sandra +Sanjay +Scottie +Sharif +Shem +Slade +Sol +Sydney +Tait +Terance +Terrill +Timmothy +Titus +Torey +Tracey +Tyran +Valente +Vicent +Victoriano +Westley +Whitney +Wilbur +Wilmer +Wyman +Young +Ysidro +Michael +Jason +David +Christopher +Robert +John +Brian +Daniel +James +Matthew +Eric +Richard +Jose +Joseph +Jeffrey +Steven +William +Joshua +Anthony +Mark +Scott +Ryan +Kevin +Aaron +Paul +Jeremy +Thomas +Juan +Timothy +Andrew +Sean +Charles +Justin +Gregory +Shawn +Adam +Kenneth +Jonathan +Carlos +Edward +Stephen +Bryan +Benjamin +Jesus +Chad +Patrick +Brandon +Manuel +Ronald +Luis +George +Jesse +Raymond +Gabriel +Peter +Victor +Donald +Nathan +Ricardo +Todd +Francisco +Gary +Frank +Mario +Keith +Jorge +Miguel +Samuel +Ruben +Erik +Antonio +Douglas +Roberto +Shane +Joel +Jacob +Oscar +Travis +Javier +Dennis +Phillip +Alexander +Jaime +Hector +Alejandro +Craig +Larry +Armando +Raul +Martin +Joe +Christian +Marcus +Salvador +Sergio +Nicholas +Jerry +Adrian +Marc +Derek +Cesar +Danny +Fernando +Johnny +Eduardo +Jeffery +Vincent +Arthur +Randy +Ramon +Troy +Bradley +Tony +Philip +Damon +Henry +Brent +Albert +Lawrence +Pedro +Rafael +Angel +Ian +Jon +Steve +Jared +Alfredo +Russell +Brett +Carl +Darren +Arturo +Marco +Louis +Alberto +Alex +Dustin +Gerardo +Jimmy +Jamie +Alan +Kyle +Chris +Jeremiah +Enrique +Casey +Rene +Gilbert +Ernesto +Jay +Ernest +Roy +Walter +Julio +Curtis +Terry +Cory +Gerald +Corey +Allen +Rodney +Micheal +Roger +Bobby +Andres +Edgar +Nathaniel +Seth +Isaac +Zachary +Jack +Wayne +Billy +Geoffrey +Randall +Ricky +Andre +Eugene +Derrick +Eddie +Glenn +Ralph +Gustavo +Rudy +Leonard +Damian +Kelly +Clinton +Trevor +Mathew +Alfonso +Lee +Shannon +Alfred +Lance +Marcos +Mike +Willie +Guillermo +Jeff +Ray +Omar +Pablo +Rodolfo +Dean +Frederick +Kristopher +Ivan +Ronnie +Tyler +Bruce +Dale +Kirk +Darrell +Damien +Gilberto +Julian +Tommy +Abel +Maurice +Neil +Brad +Harold +Clifford +Ramiro +Ismael +Marvin +Darin +Jessie +Tyrone +Dominic +Ethan +Rogelio +Saul +Clint +Theodore +Greg +Ignacio +Wesley +Clayton +Edwin +Felipe +Hugo +Jerome +Micah +Israel +Erick +Karl +Norman +Devin +Melvin +Kurt +Andy +Dylan +Evan +Noah +Guadalupe +Earl +Harry +Leon +Byron +Elias +Joaquin +Joey +Esteban +Toby +Duane +Fred +Jarrod +Cameron +Roman +Warren +Colin +Noel +Reginald +Rick +Garrett +Franklin +Howard +Jayson +Don +Shaun +Tracy +Felix +Grant +Leonardo +Jermaine +Mitchell +Stanley +Angelo +Louie +Glen +Lonnie +Donovan +Dwayne +Lorenzo +Orlando +Bret +Leo +Morgan +Barry +Tyson +Abraham +Eli +Heath +Johnathan +Marlon +Nick +Stuart +Wade +Dan +Humberto +Jim +Jonathon +Max +Octavio +Ross +Simon +Devon +Frankie +Bill +Nicolas +Santiago +Alvin +Cody +Efrain +Pete +Clarence +Daryl +Guy +Josh +Vernon +Brendan +Gene +Moises +Reynaldo +Tomas +Emilio +Rigoberto +Terrence +Allan +Ben +Calvin +Lamont +Rolando +Dana +Darrin +Gordon +Herbert +Marshall +Mauricio +Nelson +Xavier +Darryl +Dion +Lucas +Vicente +Fabian +Luke +Tom +Alvaro +Efren +Jamal +Roland +Damion +Freddie +Jess +Jody +Jordan +Loren +Sonny +Stacy +Bernard +Matt +Nakia +Adolfo +Benny +Bryant +Bryce +Erin +Francis +Herman +Randolph +Agustin +Caleb +Johnnie +Spencer +Trent +Dwight +Lloyd +Robin +Ron +Tim +Alonzo +Demetrius +Floyd +Raymundo +Benito +Gavin +Gonzalo +Lewis +Oliver +Ted +Terrance +Jake +Moses +Neal +Roderick +Rodrigo +Rudolph +Sam +Blake +Forrest +Owen +Ty +Bradford +Brady +Clay +Darnell +Gregorio +Harvey +Leslie +Charlie +Heriberto +Jimmie +Leroy +Arnold +Dante +Edmund +Fredrick +Kent +Kris +Stephan +Freddy +Genaro +Mason +Austin +Edwardo +Gino +Hans +Lionel +Shad +Aron +Noe +Reuben +Augustine +Colby +Diego +Gerard +Leopoldo +Lester +Shon +Terence +Bryon +Josue +Kristoffer +Antoine +Deon +Garry +Kristofer +Quincy +Sammy +Tobias +Bernardo +Desmond +Dewayne +Everett +Gregg +Myron +Rickey +Rusty +Santos +Scot +Sheldon +Dave +Elliott +Erich +Federico +Garth +Osvaldo +Perry +Stefan +Cary +Jed +Jeffry +Joesph +Preston +Sidney +Arnulfo +Aurelio +Bob +Cecil +Cedric +Clyde +Deshawn +Ernie +Fermin +Fidel +Gorge +Jasen +Ken +Kenny +Zachariah +Alonso +Chance +Cole +Donnie +Elliot +Fransisco +Graham +Jackie +Laurence +Leland +Levi +Monte +Rex +Taylor +Adan +Ariel +Carlton +Demond +Elijah +Isidro +Jean +Kelvin +Kerry +Kurtis +Marcel +Robbie +Virgil +Arron +Beau +Brock +Clifton +Courtney +Dino +Domingo +Donny +Drew +Edgardo +Elton +German +Jamison +Jefferson +Jonah +Lamar +Leonel +Lyle +Milton +Randal +Rocky +Branden +Carlo +Chester +Kristian +Marcelo +Oswaldo +Solomon +Ari +Carey +Darius +Estevan +Forest +Giovanni +Jeramy +Otis +Rosendo +Terrell +Conrad +Dane +Ira +Marcelino +Mauro +Mickey +Nolan +Quinn +Reed +Reid +Timmy +Vance +Aldo +Andreas +Arnoldo +Blaine +Brain +Brennan +Daren +Dario +Darrel +Denny +Emiliano +Harley +Jarrett +Jerod +Kareem +Marlin +Miles +Rodger +Sky +Wallace +Adalberto +Aric +Brook +Cristian +Darrick +Deandre +Eliseo +Esequiel +Everardo +Malcolm +Marty +Orion +Refugio +Valentin +Vidal +Wyatt +Brendon +Che +Cornelius +Cristobal +Dorian +Isaiah +Issac +Jeb +Jerardo +Jorje +Kendall +Nathanael +Paulo +Sebastian +Sherman +Vince +Will +Wilson +Alexandro +Brooks +Chet +Claude +Cruz +Curt +Dameon +Davin +Derick +Erwin +Horacio +Jennifer +Jonas +Josef +Julius +Kory +Lucio +Marquis +Michel +Pierre +Rory +Scotty +Shayne +Sterling +Stewart +Teddy +Alton +Anton +Ashley +Bart +Brant +Caesar +Carter +Chadwick +Daron +Demian +Dominick +Donnell +Hilario +Isaias +Jade +Jeromy +Jerrod +Mariano +Markus +Norberto +Osbaldo +Reggie +Rojelio +Royce +Sandro +Thaddeus +Winston +Alexis +Antione +Archie +Barrett +Blas +Clark +Damond +Dirk +Donte +Earnest +Eddy +Eloy +Emanuel +Ezekiel +Hernan +Kenyon +Lazaro +Luciano +Lupe +Mikel +Nickolas +Renato +Renee +Romeo +Shea +Silverio +Theron +Tito +Trenton +Ulysses +Uriel +Adolph +Ahmad +Bennie +Bernardino +Chase +Collin +Deron +Edmundo +Emmanuel +Emmett +Ezra +Geronimo +Hugh +Jackson +Jeremie +Josiah +Kenya +Landon +Logan +Mack +Malik +Raphael +Richie +Robby +Stevie +Trinidad +Wilbert +Willard +Zane +Abram +Al +Ali +Amir +Andrea +Antony +Avery +Blair +Brenton +Chuck +Danial +Doug +Elmer +Emil +Errol +Garland +Jabari +Jamin +Jeremey +Judd +Judson +Lincoln +Maria +Nathanial +Paris +Pascual +Rey +Reyes +Rico +Rod +Rodrick +Salvatore +Serjio +Stacey +Tad +Thad +Ubaldo +Vaughn +Willis +Abelardo +Alain +Alphonso +Amado +August +Barney +Brice +Bruno +Cristopher +Dallas +Denis +Dusty +Eleazar +Ellis +Elvis +Ervin +Ezequiel +Florentino +Galen +Garrick +Gerry +Gil +Gildardo +Jefferey +Jerald +Jeramie +Jered +Jereme +Kennith +Lisa +Lon +Marko +Patricia +Percy +Quentin +Robb +Roosevelt +Tobin +Torrey +Tristan +Tye +Tyree +Amos +Anibal +Anson +Carson +Christina +Clemente +Davis +Delbert +Duncan +Edmond +Elbert +Elizabeth +Geoff +Grady +Homer +Jamey +Jevon +Job +Kelley +Kim +Lamonte +Lane +Laron +Leif +Leobardo +Lowell +Mac +Marion +Michale +Michelle +Monty +Patricio +Raudel +Rob +Ronny +Silvestre +Tino +Tory +Ulises +Vito +Amador +Armen +Armondo +Barton +Billie +Butch +Camilo +Cedrick +Cheyenne +Cyrus +Davon +Delano +Denver +Dereck +Dillon +Dimitri +Donavan +Doyle +Eriberto +Eugenio +Faustino +Fausto +Florencio +Garret +Gaspar +Geoffery +Irwin +Ishmael +Jacinto +Jan +Jarod +Jaysen +Jedediah +Johann +Johnathon +Junior +Kane +Keenan +Lars +Lashawn +Lino +Lonny +Lynn +Marcell +Margarito +Maximo +Mervin +Mick +Myles +Ned +Nestor +Nicanor +Omari +Rahsaan +Randell +Rashad +Reymundo +Rhett +Roel +Rosalio +Sal +Salomon +Servando +Silas +Sunny +Tracey +Van +Weston +Wilfred +Wilfredo +Zachery +Antone +Apolinar +Ara +Asa +Baltazar +Bert +Boris +Braulio +Buck +Candelario +Cassidy +Christine +Christoper +Claudio +Coby +Cordell +Cuauhtemoc +Damone +Danniel +Darick +Dax +Deric +Desi +Dewey +Donta +Enrico +Fabio +Feliciano +Fransico +Frederic +Gale +Garett +Gus +Heather +Hipolito +Irvin +Jacque +Jasson +Jayme +Jerrold +Julie +Juventino +Kasey +Kendrick +Kenton +Keven +Kristin +Kwame +Leticia +Manny +Misael +Mitchel +Nicky +Nigel +Riley +Ronnell +Roscoe +Rueben +Samir +Sandy +Santino +Scottie +Shay +Sylvester +Teodoro +Toney +Wendell +Wes +Zack +Albaro +Anand +Angelica +Anselmo +Armand +Aubrey +Augustin +Baron +Baudelio +Boyd +Braden +Bradly +Brandt +Bronson +Catarino +Chandler +Chauncey +Cornell +Courtland +Danilo +Dannie +Darwin +Derik +Dexter +Domenic +Ed +Filiberto +Freedom +Gabino +Geraldo +Horace +Jacques +Jamar +Jamil +Jerad +Jerold +Joan +Jude +Justine +Kai +Kale +Khary +Kit +Kristen +Lafayette +Lamarr +Lenny +Lorne +Luther +Macario +Maceo +Marcello +Melchor +Michal +Michele +Miller +Miquel +Monica +Morris +Ramsey +Reinaldo +Richardo +Rickie +Rito +Rosario +Rubin +Russel +Rustin +Sabino +Stan +Telly +Timmothy +Tommie +Tremayne +Zackary +Adrain +Adrien +Ahmed +Alexandre +Alfonzo +Arden +Art +Artemio +Bartholomew +Benedict +Benigno +Bertrand +Brannon +Brien +Bryson +Burt +Cain +Candido +Carmelo +Carmen +Cecilio +Cleveland +Cliff +Cornelio +Crispin +Cy +Darian +Darron +Deangelo +Dejuan +Del +Delfino +Demetrios +Derwin +Deven +Dick +Dominique +Drake +Dwain +Eberardo +Eden +Eldon +Eliot +Elroy +Enoch +Ephraim +Erasmo +Germaine +Gideon +Grover +Hank +Harris +Hassan +Hiram +Homero +Ike +Jacobo +Jamel +Jasper +Jenaro +Jerone +Jerrett +Jessy +Joby +Josemanuel +Justen +Justo +Justus +Kenji +Khalid +Lavon +Levert +Lindsey +Londell +Lorin +Luiz +Malachi +Manual +Marcellus +Maxwell +Melissa +Merlin +Migel +Milo +Mohamed +Murray +Narciso +Nathen +Nathon +Nino +Olin +Oracio +Oswald +Otto +Padraic +Raoul +Romel +Royal +Rudolfo +Rufus +Sammie +Samson +Samual +Sesar +Shaka +Shan +Sherwin +Shiloh +Stevan +Tarik +Tavis +Terrill +Thurman +Titus +Tremaine +Trever +Trevon +Truman +Tyron +Tyrus +Valentine +Valentino +Vashon +Vladimir +Whitney +Williams +Young +Zion +Alden +Alessandro +Anastacio +Artis +Bardo +Basilio +Benjamen +Benson +Blue +Bobbie +Bonifacio +Brenden +Brion +Britton +Bud +Buddy +Burton +Buster +Cade +Cale +Carlson +Ceasar +Celestino +Christohper +Christos +Claudia +Cullen +Dagoberto +Dajuan +Damen +Darby +Daryle +Davion +Dedric +Demetrio +Demon +Desean +Duke +Edilberto +Eduard +Ehren +Elan +Eligio +Ely +Emery +Epifanio +Erie +Flavio +Franciso +Franz +Gabe +Gaylord +Gerold +Gianni +Gillermo +Giuseppe +Gonsalo +Gorje +Graig +Hal +Harlan +Harrison +Hunter +Irving +Jakob +Jame +Jarred +Jarret +Jarvis +Jeanpaul +Jelani +Jens +Jermain +Jerrell +Jessica +Jimi +Joao +Johnie +Josedejesus +Joseluis +Jovan +Juancarlos +Jules +Kareen +Karen +Karim +Kathleen +Kenyatta +Kermit +Khari +Kimberly +Kimo +Kip +Klaus +Kraig +Lamon +Lanier +Laszlo +Laura +Lavell +Leandro +Lenard +Leocadio +Leovardo +Levon +Librado +Lindsay +Loreto +Marcelle +Marcial +Marcoantonio +Marie +Martel +Matthias +Maximiliano +Michell +Modesto +Monico +Olegario +Paolo +Pascal +Porfirio +Quinten +Quinton +Raffi +Raleigh +Ramond +Randel +Rashid +Rian +Ritchie +Rocco +Rommel +Ronaldo +Ronell +Rufino +Ryon +Sabas +Sage +Sandra +Sasha +Serafin +Shant +Sharif +Sharon +Shelby +Shelton +Shilo +Silvano +Simeon +Soren +Stanford +Stephanie +Sunil +Susan +Sven +Tammy +Tao +Teofilo +Theo +Tod +Uriah +Veronica +Vijay +Vincente +Weldon +Welton +Wilbur +Willaim +Willy +Wilmer +Woodrow +Yvan +Zeke +Michael +Jason +David +Christopher +Robert +Daniel +John +James +Matthew +Brian +Jose +Richard +Ryan +Joshua +Eric +Joseph +Jeffrey +Steven +William +Anthony +Scott +Mark +Juan +Paul +Kevin +Jeremy +Aaron +Thomas +Timothy +Andrew +Justin +Sean +Charles +Carlos +Jonathan +Gregory +Adam +Benjamin +Brandon +Kenneth +Stephen +Edward +Bryan +Jesus +Nathan +Shawn +Patrick +Jesse +Manuel +Chad +Luis +Francisco +Gabriel +Peter +Ronald +Victor +Donald +George +Raymond +Miguel +Frank +Jorge +Mario +Ricardo +Todd +Jacob +Joel +Ruben +Roberto +Antonio +Gary +Jaime +Samuel +Oscar +Keith +Travis +Erik +Dennis +Larry +Armando +Javier +Hector +Phillip +Douglas +Shane +Alexander +Gerardo +Raul +Fernando +Sergio +Alejandro +Craig +Adrian +Christian +Martin +Jerry +Nicholas +Salvador +Eduardo +Danny +Marcus +Johnny +Brent +Ramon +Marc +Cesar +Philip +Vincent +Arthur +Rafael +Randy +Arturo +Bradley +Jared +Jeffery +Albert +Pedro +Tony +Joe +Russell +Dustin +Troy +Ian +Henry +Derek +Damon +Brett +Gilbert +Lawrence +Marco +Angel +Micheal +Alan +Enrique +Alfredo +Alberto +Kyle +Zachary +Alex +Darren +Jamie +Jon +Casey +Corey +Steve +Ernesto +Rene +Carl +Jeremiah +Edgar +Andre +Gerald +Cory +Louis +Jack +Terry +Geoffrey +Walter +Billy +Isaac +Roy +Jimmy +Julio +Chris +Bobby +Ernest +Marcos +Rodney +Nathaniel +Trevor +Wayne +Curtis +Omar +Roger +Seth +Lance +Jay +Randall +Alfred +Lee +Eugene +Mathew +Rudy +Andres +Rodolfo +Derrick +Ralph +Gustavo +Eddie +Alfonso +Damian +Ricky +Allen +Leonard +Glenn +Cameron +Guillermo +Mike +Ronnie +Theodore +Tommy +Willie +Ivan +Tyler +Brad +Darrell +Shannon +Felipe +Bruce +Frederick +Maurice +Kelly +Neil +Orlando +Pablo +Erick +Julian +Wesley +Jerome +Joaquin +Micah +Abel +Dean +Clinton +Edwin +Dale +Kristopher +Gilberto +Jarrod +Lucas +Rogelio +Dominic +Israel +Ramiro +Tyrone +Garrett +Guadalupe +Hugo +Andy +Damien +Kirk +Harold +Marvin +Esteban +Fred +Stanley +Ethan +Howard +Jeff +Jessie +Noah +Ray +Saul +Evan +Felix +Colin +Dwayne +Noel +Byron +Dylan +Joey +Karl +Roman +Clayton +Clifford +Grant +Ignacio +Mitchell +Devin +Reginald +Ismael +Toby +Greg +Heath +Leo +Darin +Lorenzo +Octavio +Rigoberto +Vicente +Wade +Ben +Darryl +Don +Max +Elias +Abraham +Leonardo +Louie +Sonny +Earl +Moises +Dana +Nicolas +Rodrigo +Efrain +Kurt +Noe +Tomas +Calvin +Norman +Leon +Tyson +Warren +Alvin +Bret +Lonnie +Nelson +Nick +Shaun +Humberto +Lloyd +Angelo +Frankie +Caleb +Glen +Melvin +Morgan +Santiago +Eli +Harry +Rick +Spencer +Dion +Clifton +Jake +Clint +Gavin +Mauricio +Roland +Terrance +Adolfo +Dan +Jimmie +Pete +Alvaro +Damion +Tracy +Cody +Fredrick +Bryce +Duane +Freddie +Johnathan +Luke +Ross +Bernard +Dwight +Francis +Franklin +Herbert +Marshall +Neal +Vernon +Allan +Aron +Daryl +Jamal +Jonathon +Jordan +Leroy +Rolando +Blake +Brendan +Herman +Jayson +Sam +Agustin +Emilio +Guy +Heriberto +Jim +Santos +Austin +Bill +Dante +Osvaldo +Simon +Moses +Oliver +Gene +Lewis +Ted +Xavier +Clarence +Robin +Erin +Fabian +Fidel +Gordon +Jess +Rickey +Rocky +Adan +Donovan +Jermaine +Lamont +Loren +Tim +Reuben +Arnold +Barry +Darrin +Kent +Marlon +Randolph +Ariel +Bryant +Colby +Demetrius +Freddy +Levi +Reynaldo +Stuart +Darnell +Efren +Gorge +Josh +Mason +Roderick +Leslie +Ernie +Lamar +Matt +Owen +Benny +Diego +Josue +Miles +Milton +Perry +Sammy +Benito +Eliseo +Genaro +German +Malcolm +Stacy +Stephan +Cary +Dewayne +Forrest +Johnnie +Leopoldo +Arnulfo +Brady +Cruz +Devon +Gonzalo +Gregg +Myron +Ty +Alonzo +Beau +Bradford +Branden +Federico +Raymundo +Ron +Tobias +Tom +Zachariah +Antoine +Arron +Bernardo +Cedric +Floyd +Gregorio +Jackie +Rudolph +Scot +Chester +Deon +Donnie +Graham +Jerrod +Lester +Maria +Nakia +Quincy +Terrence +Trent +Charlie +Harvey +Jody +Jonah +Terence +Carlo +Elton +Everett +Jeromy +Leonel +Terrell +Bryon +Clyde +Dave +Domingo +Dorian +Everardo +Lucio +Osbaldo +Raphael +Alexandro +Brock +Cole +Deandre +Donny +Elijah +Elliot +Elliott +Emmanuel +Kerry +Kris +Kristian +Lionel +Preston +Refugio +Salvatore +Sebastian +Chuck +Gerard +Giovanni +Isaiah +Isidro +Marcel +Sky +Taylor +Courtney +Drew +Edgardo +Erwin +Fransisco +Hans +Jasen +Kory +Rory +Sheldon +Stefan +Teddy +Aldo +Augustine +Aurelio +Cecil +Collin +Edmond +Garry +Jean +Ken +Laurence +Mariano +Monte +Reggie +Alonso +Bob +Cristian +Darrel +Donte +Edmund +Edwardo +Galen +Ira +Jerod +Joesph +Landon +Leland +Marcelino +Mauro +Rosendo +Virgil +Wendell +Wilson +Ali +Bennie +Jamison +Jarrett +Jed +Jorje +Kenny +Lyle +Marquis +Oswaldo +Shad +Sherman +Adalberto +Alexis +Clay +Dane +Darrick +Denny +Eloy +Erich +Estevan +Jennifer +Jeramie +Jerardo +Jevon +Julius +Marcelo +Marty +Otis +Quentin +Quinn +Randal +Rodger +Rusty +Solomon +Abelardo +Anton +Ashley +Bert +Carson +Demond +Emanuel +Ezequiel +Fermin +Issac +Jonas +Kareem +Kristofer +Nathanael +Nolan +Rex +Shiloh +Shon +Stewart +Tobin +Trenton +Trinidad +Valentin +Will +Wyatt +Ahmad +Amador +Brennan +Caesar +Carey +Chance +Claudio +Conrad +Cristobal +Dameon +Dominick +Marques +Michel +Paulo +Reed +Ronny +Santino +Tyron +Uriel +Vance +Wilbert +Abram +Antony +Armand +Bart +Blair +Chadwick +Dallas +Delbert +Donnell +Elmer +Esequiel +Ezra +Garth +Horacio +Jarod +Jerald +Kenyon +Kim +Kurtis +Leif +Robbie +Romeo +Sandro +Winston +Alec +Anibal +Antwan +Brendon +Buddy +Clemente +Daren +Dario +Darius +Dax +Earnest +Emiliano +Forest +Garrick +Gino +Hiram +Hugh +Jeffry +Jeramy +Joseluis +Josiah +Kelvin +Marion +Rico +Robby +Rojelio +Royce +Ubaldo +Ulysses +Vaughn +Wilfredo +Zane +Andreas +Arnoldo +Carlton +Che +Clark +Cornelius +Curt +Desmond +Dino +Gus +Harley +Jeremie +Kasey +Kenyatta +Kristoffer +Lonny +Mateo +Michelle +Nigel +Reid +Scotty +Sidney +Silvestre +Sterling +Amos +Archie +Aric +Brooks +Carter +Chet +Claude +Danial +Derick +Deshawn +Eldon +Florencio +Franco +Geronimo +Jabari +Jamar +Jayme +Jelani +Luciano +Monty +Myles +Paris +Rickie +Rod +Rufus +Russel +Shayne +Sylvester +Timmy +Torrey +Tyree +Wallace +Willard +Amado +Artemio +Barrett +Blaine +Brain +Brant +Brook +Cordell +Demian +Denis +Deron +Dirk +Dominique +Edmundo +Flavio +Gabino +Gildardo +Grady +Homero +Isaias +Jefferson +Junior +Kennith +Khalid +Lupe +Lynn +Malik +Mickey +Morris +Nestor +Norberto +Rashad +Simeon +Stacey +Tommie +Tory +Van +Willis +Abdul +Adolph +Al +Aubrey +August +Ceasar +Cleveland +Cornell +Cyrus +Dewey +Dexter +Donavan +Donta +Doug +Doyle +Duncan +Emmett +Eriberto +Ervin +Ezekiel +Filiberto +Florentino +Gil +Glendon +Hilario +Hubert +Jefferey +Josef +Juvenal +Keenan +Kendrick +Lenny +Liam +Mac +Margarito +Maxwell +Michale +Migel +Pierre +Reyes +Rosalio +Rueben +Sage +Shay +Tad +Teodoro +Titus +Tremayne +Tristan +Tyrell +Alphonso +Amir +Anselmo +Antione +Ara +Ari +Art +Bernie +Brandy +Brenden +Burt +Conrado +Damen +Darwin +Davis +Denver +Elbert +Emil +Fidencio +Hernan +Jacques +Jade +Jessica +Johnathon +Karim +Kelley +Kendall +Kirby +Korey +Lemuel +Lincoln +Logan +Luther +Malachi +Marcello +Maximiliano +Mohammed +Nickolas +Ramsey +Raudel +Rey +Reymundo +Richardo +Salomon +Shea +Thaddeus +Theo +Theron +Tito +Travon +Ulises +Uriah +Valentino +Veronica +Vidal +Vince +Adrain +Alton +Antone +Armondo +Aureliano +Avery +Baltazar +Barney +Benigno +Benjiman +Boyd +Bradly +Brenton +Carnell +Cheyenne +Coby +Cuahutemoc +Cuauhtemoc +Daron +Davin +Elisha +Emery +Epifanio +Evaristo +Fausto +Hipolito +Jacobo +Jamey +Jereme +Jeremey +Jerrad +Jerrold +Job +Kai +Kenya +Lenard +Maximino +Milo +Orion +Otto +Pascual +Raymon +Renee +Rommel +Sammie +Serjio +Shelby +Tavis +Wilbur +Woodrow +Alain +Ambrose +Anastacio +Brice +Brion +Burke +Carmelo +Cassidy +Celso +Cleo +Conan +Crispin +Danilo +Dannie +Davon +Dejuan +Delvon +Deric +Deshon +Deven +Eddy +Enrico +Erica +Eugenio +Faustino +Ferdinand +Fransico +Fredy +Gail +Gaston +Geoff +Geoffery +Harrison +Homer +Jamin +Jarred +Jedediah +Jedidiah +Judd +Jude +Kameron +Kieth +Lars +Leobardo +Lino +Lowell +Maceo +Marcell +Marlin +Mathias +Matias +Maximilian +Maximillian +Maximo +Mel +Melissa +Miquel +Mitchel +Nicole +Nikolai +Patricio +Philippe +Rahsaan +Randell +Rhett +Richie +Rito +Rufino +Samual +Sandra +Shanon +Sharif +Shomari +Silas +Tarik +Tavares +Terrill +Torrance +Tracey +Trever +Vito +Weston +Akili +Alden +Alfonzo +Andrae +Andrea +Anson +Arnel +Asa +Barton +Basil +Baudelio +Benton +Berry +Blas +Braden +Brandt +Buck +Bud +Bulmaro +Burton +Cale +Carmen +Chase +Christophor +Courtland +Dalton +Darian +Darron +Davey +Demetrio +Demon +Derrell +Derron +Desi +Dimitrios +Douglass +Duke +Ebony +Edgard +Eduard +Ellis +Enoch +Erasmo +Erie +Eusebio +Fletcher +Frederic +Garett +Gerry +Hank +Harlan +Herminio +Hunter +Isabel +Isreal +Jacinto +Jackson +Jamaal +Jarett +Jerad +Jered +Jerimiah +Jonny +Julie +Kenji +Kiley +Kristen +Lane +Laron +Lisa +Lorin +Lorne +Loy +Lucky +Mack +Marko +Matthias +Michele +Mikel +Monica +Oswald +Porfirio +Quinton +Raffi +Rajesh +Rand +Renato +Riley +Roel +Roque +Rosario +Royal +Rubin +Ryon +Sarah +Serafin +Sixto +Skye +Stanford +Thad +Timmothy +Victoriano +Willy +Yusef +Zachery +Zackary +Zackery +Alexandre +Amit +Ana +Anderson +Anival +Anthoney +Aram +Arlen +Armon +Armond +Arvin +Barret +Benson +Bobbie +Cade +Camilo +Camron +Charley +Christiaan +Cliffton +Colton +Cullen +Dameion +Damone +Danniel +Demetric +Derik +Devlin +Dietrich +Dillon +Eden +Elvin +Elvis +Emerson +Ephraim +Franky +Germain +Gerrit +Gillermo +Gonsalo +Grayson +Hamilton +Hassan +Ibrahim +Irving +Irwin +Isidoro +Jacque +Jameson +Jamieson +Jamil +Jamon +Jarret +Jarvis +Jasper +Jasson +Jordon +Jovan +Justus +Kamal +Kelsey +Kraig +Kristin +Kristofor +Lamarr +Lawerence +Lazaro +Lorena +Loyd +Luz +Macario +Marcial +Maurilio +Mikael +Misael +Mohammad +Narciso +Nicky +Nino +Norris +Omari +Oren +Orin +Pieter +Placido +Prescott +Raj +Rebecca +Rian +Rob +Rodrick +Romel +Roosevelt +Sal +Salbador +Sami +Samir +Samson +Saturnino +Taj +Telly +Thor +Unknown +Valente +Victorio +Virgilio +Wilfred +Yancy +Ysidro +Zack +Abdon +Abelino +Alvino +Amanda +Amar +Antwon +Aran +Arlo +Asher +Asim +Attila +Audie +Baron +Benjamen +Benji +Bennett +Bjorn +Bodie +Boris +Braulio +Brien +Britt +Brody +Bruno +Bryn +Candelario +Cass +Chadd +Chandler +Christen +Christina +Christine +Christoper +Cirilo +Ciro +Claudia +Clement +Coleman +Corbin +Cornelio +Coy +Cristopher +Dagoberto +Daryle +Dawn +Delano +Derrek +Dimitri +Dionisio +Dontay +Eladio +Eldridge +Eliot +Elizabeth +Elroy +Engelbert +Erika +Eulalio +Filemon +Francesco +Franz +Freeman +Gareth +Garret +Gaspar +Geary +Geoffry +Geraldo +Geremy +Gian +Gianni +Gideon +Giuseppe +Gloria +Glynn +Grabiel +Greggory +Gustave +Hal +Heather +Herschel +Hezekiah +Hiroshi +Isacc +Ivory +Jai +Jairo +Jamel +Jan +Jarad +Jarrid +Javon +Jaysen +Jericho +Jermain +Jeromey +Jeromie +Johan +Johann +Johnson +Jomo +Jory +Juancarlos +Judah +Jules +Kaleb +Kane +Keegan +Kenton +Kenyatte +Keon +Kimani +Lamonte +Laura +Lavelle +London +Lucien +Lucius +Luiz +Manny +Marcoantonio +Markus +Micha +Michaelangelo +Modesto +Nader +Napoleon +Nathanial +Nile +Norbert +Orville +Parker +Patricia +Primitivo +Rahul +Ramone +Ramses +Raoul +Rashid +Reese +Reno +Rich +Robb +Rodman +Roldan +Rolland +Ronaldo +Ronnell +Roverto +Rudolfo +Sandy +Sanford +Seamus +Sedrick +Semaj +Shain +Shan +Sheridan +Shilo +Silvio +Skip +Stevan +Sultan +Sunny +Tanner +Tate +Tino +Torin +Trinity +Truman +Tuan +Tucker +Tye +Vahe +Vern +Vincente +Vinson +Von +Wayland +Webster +Wendy +Wilber +Woody +Yolanda +Yusuf +Zaire +Zeke +Michael +David +Jason +Christopher +Robert +Daniel +James +John +Matthew +Brian +Jose +Joseph +Eric +Joshua +Ryan +Richard +Anthony +Steven +William +Juan +Jeffrey +Jeremy +Kevin +Mark +Scott +Aaron +Paul +Timothy +Thomas +Andrew +Justin +Benjamin +Sean +Adam +Jonathan +Charles +Gregory +Carlos +Brandon +Gabriel +Nathan +Edward +Stephen +Kenneth +Bryan +Jesus +Jesse +Shawn +Luis +Manuel +Jorge +Patrick +Francisco +Miguel +Chad +Jacob +Ronald +Victor +Ricardo +Raymond +Peter +Mario +Samuel +George +Antonio +Donald +Roberto +Frank +Keith +Ruben +Alejandro +Travis +Gary +Todd +Jaime +Joel +Erik +Oscar +Douglas +Armando +Eduardo +Jeremiah +Shane +Hector +Raul +Alexander +Sergio +Javier +Larry +Phillip +Nicholas +Salvador +Craig +Cesar +Dustin +Martin +Gerardo +Adrian +Dennis +Fernando +Christian +Johnny +Jerry +Joe +Vincent +Jared +Arthur +Zachary +Arturo +Rafael +Ramon +Randy +Enrique +Ian +Derek +Brent +Henry +Bradley +Philip +Marc +Damon +Albert +Kyle +Danny +Tony +Jeffery +Pedro +Omar +Alfredo +Steve +Angel +Alex +Marco +Alberto +Troy +Marcus +Casey +Cory +Jimmy +Lawrence +Alan +Brett +Corey +Gilbert +Ernesto +Rene +Darren +Edgar +Russell +Jon +Andre +Julio +Jamie +Nathaniel +Terry +Carl +Seth +Isaac +Curtis +Louis +Allen +Bobby +Jack +Rodolfo +Roy +Wayne +Eugene +Walter +Micheal +Roger +Eddie +Gerald +Jay +Billy +Geoffrey +Ernest +Trevor +Tyler +Kristopher +Rodney +Rudy +Alfonso +Lee +Leonard +Wesley +Guillermo +Marcos +Andres +Clinton +Damian +Randall +Mathew +Felipe +Ricky +Cameron +Lance +Ralph +Alfred +Gustavo +Pablo +Glenn +Neil +Chris +Israel +Abel +Dominic +Ronnie +Julian +Ivan +Tyrone +Kelly +Gilberto +Evan +Ramiro +Rogelio +Dale +Erick +Dean +Derrick +Edwin +Frederick +Noah +Shannon +Tommy +Colin +Darrell +Jerome +Maurice +Saul +Bruce +Ismael +Brad +Micah +Ray +Joaquin +Leon +Hugo +Theodore +Abraham +Joey +Fred +Stanley +Willie +Damien +Ignacio +Esteban +Garrett +Reginald +Lucas +Elias +Nelson +Guadalupe +Jessie +Rick +Andy +Jarrod +Rodrigo +Spencer +Clifford +Mike +Byron +Tomas +Calvin +Clayton +Darin +Harold +Melvin +Humberto +Mitchell +Tyson +Brendan +Bret +Dylan +Earl +Lorenzo +Moises +Orlando +Jeff +Kirk +Felix +Agustin +Ethan +Marvin +Vicente +Jamal +Jermaine +Jordan +Grant +Fabian +Roman +Duane +Nicolas +Noel +Octavio +Shaun +Devin +Don +Greg +Lonnie +Howard +Morgan +Noe +Norman +Kurt +Simon +Toby +Damion +Dwayne +Glen +Harry +Warren +Austin +Johnathan +Rigoberto +Santiago +Allan +Angelo +Efren +Gavin +Luke +Cody +Daryl +Karl +Leo +Efrain +Preston +Alvaro +Alvin +Clarence +Freddie +Heath +Mauricio +Franklin +Ben +Caleb +Loren +Nick +Clint +Jayson +Leonardo +Guy +Max +Osvaldo +Rolando +Sonny +Bernard +Dana +Frankie +Marlon +Donovan +Jonathon +Louie +Xavier +Adan +Jake +Jim +Roland +Adolfo +Fidel +Pete +Barry +Clifton +Eli +Jimmie +Ross +Tim +Wade +Gonzalo +Lloyd +Marshall +Moses +Darryl +Lewis +Ted +Donny +Dwight +Freddy +Blake +Darrin +Federico +Oliver +Reynaldo +Beau +Bill +Edwardo +Herbert +Jody +Josue +Levi +Robin +Terrence +Benito +Jess +Neal +Santos +Terrance +Gordon +Leroy +Demetrius +Francis +Heriberto +Johnnie +Randolph +Raymundo +Antoine +Emilio +Gene +Reuben +Arnold +Bryce +Dion +Ernie +Quincy +Rocky +Bryant +Dante +Gregorio +Sam +Terrell +Bradford +Herman +Lester +Osbaldo +Brock +Isidro +Lionel +Cedric +Isaiah +Josh +Kent +Lamar +Marcel +Charlie +Devon +Forrest +Kenny +Aron +Colby +Dan +Miles +Roderick +Sheldon +Tom +Zachariah +Benny +Bernardo +Darnell +Graham +Ali +Arnoldo +Bryon +Diego +Drew +Elijah +Sammy +Terence +Vernon +Ariel +Erin +Fredrick +Kareem +Lamont +Leonel +Leopoldo +Ron +Tracy +Clay +Domingo +Julius +Matt +Stephan +Alonzo +Branden +Emiliano +Genaro +Harvey +Issac +Joesph +Leslie +Milton +Rickey +Rudolph +Sidney +Solomon +Stuart +Taylor +Valentin +Arron +Aurelio +Carlo +Deon +Dewayne +Edmund +Everett +Fransisco +German +Gorge +Gregg +Stacy +Stewart +Tobias +Ty +Cary +Erich +Jackie +Kristian +Arnulfo +Brady +Cristian +Donte +Eliseo +Jarrett +Jasen +Conrad +Deandre +Edgardo +Ezequiel +Floyd +Josiah +Kerry +Nickolas +Wyatt +Augustine +Chester +Darius +Everardo +Gerard +Kory +Kristofer +Rory +Stefan +Bob +Courtney +Cruz +Emmanuel +Isaias +Kris +Leland +Rico +Trinidad +Alonso +Clyde +Dominick +Donnie +Elliott +Estevan +Fermin +Giovanni +Horacio +Jabari +Kurtis +Laurence +Marty +Mason +Nathanael +Randal +Rex +Robbie +Rojelio +Sandro +Sebastian +Aric +Clark +Denny +Desmond +Ezra +Gino +Jeffry +Johnathon +Jovan +Landon +Marcelo +Markus +Myles +Oswaldo +Travon +Wilson +Aldo +Alexis +Dario +Derick +Jerrod +Malcolm +Raphael +Royce +Salvatore +Trent +Tyree +Wendell +Alexandro +Brain +Braulio +Carey +Carlton +Carter +Claudio +Collin +Dane +Dino +Harley +Jean +Jerald +Jeramy +Jerardo +Jeromy +Marcelino +Reyes +Sterling +Abram +Brendon +Chuck +Cristobal +Darrick +Elliot +Emanuel +Garry +Hans +Jamaal +Jamison +Jed +Jefferson +Jonah +Ken +Laron +Leif +Maria +Monte +Quentin +Rusty +Virgil +Davin +Eloy +Ira +Kasey +Kendall +Mariano +Marquis +Mauro +Owen +Paulo +Sage +Scot +Shad +Vance +Winston +Zane +Anton +Bennie +Clemente +Cole +Dallas +Dameon +Donnell +Earnest +Elton +Eriberto +Jackson +Jamey +Jan +Jeramie +Jerod +Jorje +Logan +Lucio +Marques +Migel +Myron +Nolan +Scotty +Sherman +Tyron +Ulysses +Vince +Adalberto +Antony +Blair +Che +Edmundo +Jayme +Kelley +Kim +Lincoln +Lino +Mack +Orion +Renato +Roosevelt +Sal +Timmy +Ahmad +Antwan +Armondo +Ashley +Bobbie +Brook +Brooks +Caesar +Cecil +Chance +Darrel +Dorian +Elbert +Garth +Jarod +Jeremie +Leandro +Otis +Quinn +Refugio +Rodger +Shayne +Tobin +Tremayne +Tristan +Uriah +Valentino +Alec +Amador +Andreas +Anibal +Bart +Blaine +Blas +Brant +Camilo +Carson +Ceasar +Danial +Dax +Dominique +Edmond +Erwin +Filiberto +Garrick +Hugh +Jamar +Jarred +Jude +Kelvin +Luciano +Lyle +Michel +Nigel +Porfirio +Rahsaan +Reggie +Rey +Rommel +Rosendo +Teddy +Wilfred +Abdul +Al +Alfonzo +Amir +Artemio +Aubrey +Bert +Buddy +Chadwick +Curt +Dagoberto +Danilo +Daren +Daron +Dave +Delbert +Demond +Deshawn +Errol +Eugenio +Ezekiel +Florencio +Florentino +Galen +Gamaliel +Hilario +Jamil +Jennifer +Jonas +Joseluis +Lazaro +Leobardo +Long +Lowell +Nestor +Perry +Reed +Robby +Servando +Shon +Sky +Stacey +Tai +Taj +Trenton +Ulises +Uriel +Weston +Adolph +Anson +Archie +Barney +Barrett +Brice +Celso +Christoper +Claude +Cornelius +Ehren +Elmer +Emmett +Feliciano +Franco +Gabino +Garret +Hiram +Hubert +Jamin +Jedediah +Jeremey +Karim +Keenan +Kristoffer +Lenny +Lupe +Luther +Pascual +Ramsey +Serjio +Thaddeus +Theron +Tory +Van +Vincente +Antone +Augustin +Brennan +Cleveland +Cornelio +Darian +Davis +Demian +Denis +Denver +Eleazar +Esequiel +Forest +Heather +Jacques +Jered +Jereme +Jeromie +Johann +Margarito +Maxwell +Norberto +Raudel +Russel +Shay +Shea +Silvestre +Sylvester +Wallace +Wilbert +Zachery +Zackary +Alain +Amit +Antione +Ari +Armond +Avery +Baron +Basilio +Billie +Brenden +Brenton +Cliff +Conrado +Dexter +Doyle +Dusty +Edgard +Ervin +Faustino +Giancarlo +Gideon +Gillermo +Hernan +Jade +Jameel +Jefferey +Jelani +Jermey +Jeronimo +Juancarlos +Judd +Kaleb +Kendrick +Keyon +Khalid +Khristopher +Lane +Lars +Lauro +Malik +Mikel +Milo +Monty +Nathanial +Quinton +Rito +Romeo +Rosalio +Rudolfo +Samson +Silverio +Tad +Tremaine +Vaughn +Will +Willard +Alvino +Amos +Aram +August +Baltazar +Bernardino +Bruno +Chet +Christina +Conan +Cristopher +Cullen +Damond +Delfino +Demetrio +Derik +Deron +Dionicio +Domenic +Donavan +Dontae +Elizabeth +Elvin +Enoch +Fausto +Francesco +Franciso +Gildardo +Gorje +Gus +Hank +Harlan +Hayden +Homero +Jacinto +Jerrold +Jonpaul +Junior +Juvenal +Kenan +Korey +Lafayette +Lisa +Malachi +Marcell +Marlin +Michelle +Nicky +Oracio +Otto +Pierre +Reymundo +Rob +Sabino +Simeon +Tito +Tommie +Veronica +Vidal +Yuri +Adriel +Adrien +Agapito +Alphonso +Alton +Andrea +Ara +Art +Bernie +Brandt +Cain +Chase +Cheyenne +Chistopher +Cordell +Dashawn +Dewey +Dillon +Dionisio +Donato +Donta +Doug +Eddy +Efrem +Eldon +Elisha +Ely +Favian +Franz +Frederic +Fredy +Gabe +Gerry +Gil +Homar +Isreal +Jamall +Jarad +Jarett +Jevon +Justo +Kai +Kelsey +Kermit +Konrad +Kwame +Magdaleno +Marion +Marlo +Mickey +Ned +Nino +Patricio +Phil +Rhett +Rian +Rocco +Ronnell +Roque +Rosario +Rueben +Rufus +Sandra +Sasha +Sesar +Sigifredo +Silas +Sunny +Tarik +Theo +Tod +Torrey +Tracey +Viet +Vito +Westley +Whitney +Williams +Woodrow +Yusef +Aidan +Albaro +Americo +Amy +Andrei +Anthoney +Basil +Bjorn +Boris +Boyd +Braden +Brandan +Brien +Brody +Candelario +Cirilo +Cornell +Cy +Danielle +Dannie +Daryll +Davey +Davon +Dejuan +Devan +Dimitri +Domonic +Douglass +Eladio +Elio +Ellis +Enrico +Erasmo +Erie +Fidencio +Flavio +Fortino +Gabrial +Garett +Geremy +Geronimo +Giuseppe +Grady +Gualberto +Hassan +Hipolito +Homer +Irving +Jacobo +Jahmal +Jairo +Jamon +Jasper +Jeanpaul +Jedidiah +Jenner +Jensen +Jeramiah +Jerimy +Job +Johnpaul +Judson +Justino +Justus +Kennith +Kenyatta +Kevan +Kip +Kirby +Lamarr +Lavell +Liam +Lukas +Marcello +Mateo +Maximilian +Maximillian +Miguelangel +Morris +Nate +Nicole +Orin +Paulino +Raoul +Rashad +Reid +Renaldo +Renee +Reno +Richie +Rickie +Rubin +Sandy +Sarah +Scottie +Seneca +Tamir +Tarek +Terance +Terrill +Trever +Trevon +Ubaldo +Wes +Wilfredo +Woody +Ysidro +Abelardo +Ahmed +Albino +Alejo +Alicia +Alverto +Amar +Anastacio +Anderson +Antwon +Apolonio +Armand +Asher +Axel +Benjamen +Bernabe +Berry +Brando +Bryson +Buck +Burke +Cecilio +Cedrick +Charlton +Christofer +Cipriano +Cuauhtemoc +Cynthia +Cyrus +Daman +Dameion +Dandre +Danniel +Darien +Darwin +Derrek +Deven +Dru +Duncan +Dupree +Eliasar +Elvis +Emerson +Emery +Ephraim +Etienne +Evaristo +Fernie +Filemon +Fletcher +Gavino +Gian +Glendon +Greggory +Guido +Iran +Isacc +Jaimie +Jamarr +Jamel +Jaysen +Jerad +Jeramey +Jermain +Josef +Julien +Jun +Kenya +Keven +Kristen +Lamonte +Lavon +Leeroy +Lonny +Loyd +Luiz +Mac +Maher +Mahmoud +Marlow +Maximino +Maximo +Maynard +Merrill +Michele +Modesto +Nakia +Nathen +Niles +Nolberto +Norma +Olin +Rama +Rashaan +Rasheed +Rebecca +Reginal +Rodrick +Rolland +Ronaldo +Ronell +Ronny +Royal +Sammie +Sandeep +Santino +Sara +Seamus +Shanon +Shant +Sharif +Shelby +Sherwin +Shiloh +Sixto +Skye +Teodoro +Terrel +Thad +Thor +Titus +Trenell +Tyrell +Valdemar +Vern +Vicent +Ward +Weldon +Wiley +Zakary +Zoltan +Abran +Adonis +Adriano +Alexandre +Amado +Amando +Ammon +Anand +Andrae +Apolinar +Arlen +Armen +Arsenio +Artie +Artis +Asa +Austreberto +Baldemar +Barron +Baudelio +Benedict +Bonifacio +Bradly +Brannon +Brodie +Bulmaro +Burt +Cassidy +Cedar +Claudia +Cortney +Cris +Cyril +Dani +Daryle +Deangelo +Demetrios +Dereck +Derrell +Deshon +Django +Donavon +Donell +Doroteo +Drake +Dwaine +Ean +Ector +Eliot +Ellery +Elmo +Emil +Enrrique +Epifanio +Erickson +Fabio +Froylan +Geary +Geno +Geoff +Geoffery +Gerad +Gerrit +Gianni +Grover +Habib +Hal +Hasani +Heliodoro +Hoang +Horace +Hunter +Iain +Isabel +Isiah +Jai +Jameson +Jaron +Jarret +Jasson +Jeanpierre +Jebediah +Jerrell +Jerrick +Jessy +Jimi +Jimmey +Jobe +Johan +Johnie +Jovon +Juaquin +Justen +Justice +Juventino +Kalani +Kamau +Kane +Kareen +Khary +Kieth +Kito +Koby +Lateef +Laura +Lawrance +Leighton +Lejon +Lemuel +Lennard +Levell +Librado +Lon +Loreto +Lucian +Luigi +Lyndon +Macario +Marisol +Marius +Marko +Maximiliano +Mel +Melchor +Meliton +Merrick +Michale +Micky +Minh +Miquel +Misael +Mitch +Mohammed +Monica +Nahum +Newton +Odis +Ollie +Oren +Osualdo +Paris +Primitivo +Prince +Quang +Quintin +Quoc +Rahim +Rahman +Rakesh +Rashan +Raymon +Raynell +Rayshawn +Ricco +Robb +Rod +Rolf +Roshawn +Salome +Salomon +Sandor +Santana +Schuyler +Seferino +Sevag +Shaka +Shanti +Shawnn +Shomari +Sione +Soren +Stephane +Stevie +Syed +Tait +Tanner +Taron +Tate +Tavares +Teresa +Toriano +Travion +Trayvon +Tri +Tye +Valentine +Vittorio +Von +Waleed +Wilbur +Willian +Willis +Yancey +Yancy +Yolanda +Zackery +Zak +Zeke +Michael +David +Jason +Christopher +Robert +Daniel +Brian +James +Matthew +John +Ryan +Joshua +Jose +Joseph +Richard +Eric +Anthony +Kevin +Steven +Jeremy +William +Jeffrey +Juan +Scott +Andrew +Mark +Aaron +Timothy +Paul +Justin +Thomas +Jonathan +Benjamin +Sean +Charles +Carlos +Adam +Brandon +Bryan +Gregory +Nathan +Jesse +Gabriel +Kenneth +Jesus +Stephen +Edward +Shawn +Luis +Jacob +Manuel +Nicholas +Patrick +Jorge +Victor +Miguel +Raymond +Francisco +Mario +Peter +Ricardo +George +Samuel +Ronald +Donald +Roberto +Antonio +Chad +Frank +Travis +Jaime +Oscar +Alejandro +Joel +Ruben +Todd +Fernando +Gary +Keith +Jeremiah +Erik +Phillip +Alexander +Jared +Shane +Adrian +Eduardo +Douglas +Dustin +Raul +Javier +Hector +Armando +Cesar +Larry +Dennis +Arthur +Salvador +Vincent +Sergio +Ian +Christian +Bradley +Wesley +Zachary +Rafael +Martin +Joe +Corey +Albert +Jerry +Randy +Craig +Gerardo +Johnny +Ramon +Kyle +Casey +Danny +Cory +Brent +Alex +Philip +Shaun +Marc +Russell +Angel +Arturo +Omar +Jimmy +Marcus +Jeffery +Henry +Alfredo +Pedro +Tony +Alan +Derek +Steve +Trevor +Gilbert +Brett +Lawrence +Edgar +Rene +Nathaniel +Marco +Ernesto +Kristopher +Seth +Isaac +Troy +Jon +Julio +Alberto +Enrique +Damon +Jack +Tyler +Micheal +Louis +Rudy +Andres +Curtis +Walter +Andre +Ernest +Bobby +Darren +Roger +Roy +Carl +Dominic +Allen +Clinton +Derrick +Eugene +Gerald +Randall +Damian +Alfonso +Billy +Marcos +Eddie +Lee +Mathew +Rodolfo +Geoffrey +Ivan +Neil +Terry +Gustavo +Cameron +Ricky +Lance +Wayne +Ralph +Guillermo +Jamie +Rodney +Alfred +Bruce +Garrett +Abel +Abraham +Darrell +Jay +Damien +Noah +Pablo +Evan +Leonard +Frederick +Israel +Micah +Edwin +Glenn +Felipe +Gilberto +Maurice +Julian +Ronnie +Saul +Chris +Rogelio +Nicolas +Brad +Kelly +Ignacio +Erick +Hugo +Ramiro +Esteban +Mitchell +Willie +Elias +Clayton +Jerome +Devin +Dale +Jessie +Mike +Ethan +Shannon +Tyrone +Ismael +Colin +Stanley +Caleb +Joey +Nelson +Joaquin +Leon +Dean +Humberto +Tommy +Fred +Jordan +Andy +Theodore +Cody +Dylan +Reginald +Felix +Orlando +Ray +Jarrod +Duane +Brendan +Jermaine +Luke +Marvin +Moises +Byron +Johnathan +Lucas +Melvin +Kirk +Daryl +Don +Efrain +Fabian +Guadalupe +Agustin +Roman +Tomas +Clifford +Dwayne +Noe +Grant +Vicente +Damion +Eli +Harold +Kurt +Santiago +Austin +Tyson +Darin +Jeff +Noel +Spencer +Alvaro +Howard +Karl +Leonardo +Morgan +Jonathon +Marlon +Rolando +Simon +Toby +Ben +Bryce +Calvin +Greg +Barry +Franklin +Glen +Norman +Rodrigo +Beau +Clint +Earl +Jayson +Nick +Rigoberto +Emilio +Gene +Leo +Rocky +Francis +Jess +Rory +Max +Alvin +Bret +Lonnie +Mauricio +Ross +Warren +Antoine +Elijah +Harry +Jamal +Neal +Octavio +Adan +Blake +Heath +Lorenzo +Louie +Terrence +Angelo +Zachariah +Clarence +Dante +Lamar +Rick +Ted +Xavier +Darryl +Frankie +Moses +Terrance +Gordon +Loren +Roland +Quincy +Allan +Bernard +Devon +Oliver +Reynaldo +Forrest +Adolfo +Benny +Jake +Osvaldo +Diego +Freddy +Gonzalo +Levi +Donny +Guy +Bryant +Charlie +Freddie +Kristofer +Stuart +Clifton +Ernie +Jim +Jimmie +Josue +Leslie +Federico +Gavin +Marshall +Randolph +Heriberto +Ty +Bradford +Dana +Herman +Isaiah +Pete +Raymundo +Robin +Sam +Aron +Rickey +Vernon +Donovan +Kristian +Tobias +Efren +Johnnie +Lloyd +Ron +Wade +Alexis +Darrin +Fidel +Floyd +Herbert +Joesph +Leroy +Rudolph +Cedric +Dion +Donte +Dwight +Edmund +Lamont +Rashad +Branden +Dan +Domingo +Edwardo +Horacio +Lewis +Marques +Nickolas +Owen +Brock +Clyde +Courtney +Donnie +Logan +Santos +Terrell +Emmanuel +Gregg +Kent +Lester +Myron +Preston +Sammy +Arnold +Bill +Darnell +Fredrick +Isidro +Kristoffer +Leonel +Miles +Tim +Cristobal +Eliseo +Elvis +Erich +German +Gregorio +Leland +Leopoldo +Levar +Marcel +Reuben +Roderick +Sonny +Stefan +Tom +Bryon +Demetrius +Erin +Genaro +Josh +Aldo +Benito +Bernardo +Cristian +Deandre +Kory +Mason +Stephan +Tracy +Carlo +Cary +Everardo +Hans +Julius +Milton +Ahmad +Aric +Estevan +Laurence +Malcolm +Nathanael +Perry +Quentin +Sheldon +Wyatt +Brady +Colby +Dallas +Drew +Ezequiel +Graham +Jody +Kenny +Kris +Mariano +Oswaldo +Rex +Arnulfo +Blair +Clay +Elliott +Fransisco +Jedediah +Kelvin +Lionel +Marcelino +Rusty +Scot +Taylor +Uriel +Virgil +Aurelio +Darius +Jamar +Jarred +Jorje +Matt +Terence +Trinidad +Ali +Alonzo +Augustine +Blaine +Cruz +Gorge +Isaias +Jamaal +Jovan +Lyle +Marty +Nolan +Quinn +Rojelio +Trent +Ariel +Chester +Dave +Derick +Dorian +Emiliano +Josiah +Osbaldo +Salvatore +Stewart +Carlton +Dameon +Erwin +Gino +Giovanni +Jasen +Marcelo +Marquis +Teddy +Travon +Valentin +Dario +Desmond +Everett +Fermin +Garry +Gerard +Harley +Jackson +Jeramy +Jerrod +Kurtis +Reggie +Winston +Ari +Bert +Brendon +Clark +Conrad +Cristopher +Dewayne +Dominick +Edgardo +Edmond +Elmer +Harvey +Jeffry +Jeremey +Johnathon +Jonah +Jonas +Kerry +Lavar +Mickey +Randal +Raphael +Sebastian +Adalberto +Anson +Cecil +Chance +Deshawn +Filiberto +Forest +Ira +Jackie +Jan +Jefferson +Jeramie +Jeremie +Jeromy +Kai +Kareem +Kasey +Landon +Maria +Brennan +Brenton +Demond +Issac +Jarrett +Ken +Nestor +Otis +Reyes +Rhett +Romeo +Rosendo +Royce +Shayne +Shon +Sidney +Solomon +Stacy +Timmy +Wilson +Alexandro +Alton +Amador +Ashley +Bob +Brain +Braulio +Caesar +Claudio +Cole +Dominique +Jarod +Jean +Jerald +Kunta +Lucio +Luther +Markus +Monte +Refugio +Robbie +Sandro +Sherman +Thaddeus +Trenton +Ulysses +Zachery +Alonso +Anton +Arnoldo +Camilo +Carson +Eloy +Elton +Ezra +Gabino +Galen +Jed +Jedidiah +Josef +Margarito +Mauro +Sterling +Van +Vaughn +Wallace +Abelardo +Alfonzo +Arron +Che +Denny +Deon +Elisha +Emanuel +Hernan +Jayme +Jelani +Jennifer +Jerardo +Jereme +Karim +Liam +Nathanial +Paulo +Rico +Samson +Shad +Ulises +Valentino +Waylon +Zane +Abram +Amado +Amir +Bennie +Bradly +Brant +Collin +Cornell +Cyrus +Dane +Davis +Dusty +Edmundo +Fausto +Jamil +Lenny +Lonny +Porfirio +Reed +Renato +Serjio +Silas +Sky +Tyree +Vidal +Will +Willis +Amos +Antione +Archie +Armand +Chadwick +Cheyenne +Claude +Danial +Daren +Darrel +Darrick +Dax +Delbert +Dino +Dirk +Ellis +Ervin +Ezekiel +Geronimo +Hasani +Hassan +Joseluis +Junior +Leobardo +Lincoln +Lino +Luiz +Maxwell +Michel +Mohammed +Morris +Norberto +Patricio +Reymundo +Robby +Rodrick +Sage +Sylvester +Tariq +Teodoro +Tory +Uriah +Westley +Weston +Wilfredo +Alain +Amit +Anibal +Anselmo +Artemio +Avery +Barrett +Benedict +Brice +Brooks +Buddy +Conor +Demetrio +Donavan +Donnell +Eddy +Eleazar +Errol +Eugenio +Florentino +Garth +Jacques +Jefferey +Jeramiah +Jerimiah +Juancarlos +Juston +Lane +Mateo +Milo +Nikolas +Otto +Pierre +Ronny +Roosevelt +Russel +Scotty +Tanner +Tobin +Trever +Tristan +Wendell +Abdul +Adrain +Al +Antwan +August +Carey +Ceasar +Cipriano +Clemente +Cleveland +Davon +Denis +Derik +Dexter +Dimitrios +Donta +Duncan +Eldon +Elliot +Gildardo +Hilario +Hubert +Jabari +Jacobo +Jamin +Jamison +Jasper +Jered +Johnpaul +Jude +Khalid +Korey +Lavell +Lon +Marcell +Myles +Nigel +Oren +Orion +Roque +Serafin +Titus +Veronica +Wilbert +Wilfred +Zackery +Alec +Andrea +Andreas +Armen +Bernie +Blas +Bonifacio +Boyd +Braden +Buck +Candelario +Celestino +Chase +Clement +Curt +Daron +Delvin +Earnest +Elan +Ephraim +Flavio +Frederic +Greggory +Harlan +Hunter +Jade +Jameel +Jevon +Kenji +Kenya +Lisandro +Marion +Marlin +Omari +Quinton +Randell +Rickie +Rosario +Royal +Rudolfo +Rufus +Salomon +Santino +Shay +Sunny +Theron +Tommie +Zackary +Anastacio +Bobbie +Brenden +Bruno +Burton +Cade +Carter +Chauncey +Coby +Conan +Cornelius +Dalton +Damen +Damond +Danilo +Darian +Denver +Deshon +Doyle +Eliot +Enoch +Eriberto +Fredy +Garett +Garret +Germain +Hugh +Jameson +Jamey +Jeanpaul +Jermain +Jermiah +Jerod +Jerold +Jonpaul +Keenan +Keven +Kwame +Lars +Leif +Lisa +Luciano +Mack +Marcial +Maximo +Merrill +Migel +Mikel +Monty +Nicholaus +Nicole +Paris +Pascual +Ramsey +Raudel +Reid +Rey +Rito +Rommel +Rosalio +Rubin +Ryon +Sameer +Sarah +Simeon +Tarik +Terrill +Tye +Tyron +Viet +Ysidro +Abran +Adrien +Anthoney +Antony +Asa +Ashish +Aubrey +Baltazar +Bart +Bartholomew +Brannon +Brook +Bryson +Cecilio +Chuck +Cornelio +Crispin +Dagoberto +Darwin +Dedrick +Demian +Deshaun +Dontae +Elizabeth +Elvin +Emil +Enrigue +Esequiel +Geoffery +Gil +Glendon +Gorje +Heather +Hiram +Homar +Ivory +Jarvis +Javon +Jerad +Jeronimo +Judah +Judson +Justen +Juvenal +Kendall +Kendrick +Kinte +Kristen +Lamarr +Macario +Malachi +Malik +Prince +Rachel +Raffi +Rahsaan +Ravi +Remigio +Rian +Riley +Robb +Rod +Samir +Sandy +Sanjay +Shea +Sherwin +Shiloh +Stevie +Tavis +Tino +Ubaldo +Vernell +Vince +Wes +Adolph +Albaro +Amin +Andrez +Arik +Audie +Barney +Benigno +Benson +Bo +Brandt +Burt +Candido +Chet +Christoper +Coleman +Constantino +Corbin +Corry +Cortney +Davin +Dejuan +Delfino +Deven +Dewey +Dimitri +Doug +Douglass +Elbert +Ely +Emery +Enrrique +Faustino +Ferdinand +Franco +Gabe +Garland +Garrick +Germaine +Hasan +Hipolito +Homer +Homero +Horace +Iain +Jacinto +Jahmal +Jakob +Jamel +Jerame +Jessica +Jimi +Juaquin +Kalani +Kaleb +Kalen +Kamau +Kenyatta +Khalil +Khristopher +Kim +Konstantinos +Laron +Lazaro +Levon +Long +Lupe +Lynn +Mac +Misael +Modesto +Monica +Muhammad +Oracio +Percy +Quintin +Renee +Rodger +Roscoe +Salbador +Sandra +Sesar +Shan +Shant +Shelton +Silverio +Skyler +Stacey +Stephanie +Sven +Terance +Thor +Timmothy +Tito +Torrey +Tracey +Vito +Whitney +Abe +Agustine +Ahmed +Ajay +Alegandro +Alexandre +Alphonso +Amon +Amy +Ara +Araceli +Arcadio +Arian +Asher +Baron +Barton +Basil +Berry +Billie +Brody +Cain +Camron +Cedar +Christofer +Christoher +Claudia +Cliff +Cullen +Cyril +Darron +Dashawn +Deangelo +Delon +Desi +Dillon +Donell +Dontay +Drake +Dung +Dwane +Eberardo +Elpidio +Emerson +Emmett +Enrico +Eusebio +Favian +Feliciano +Fletcher +Francois +Gareth +Gavino +Gerrit +Gibran +Grady +Graig +Griffin +Hakim +Hank +Ike +Irving +Isabel +Ishmael +Jamall +Jarom +Jaron +Jaysen +Jens +Jericho +Joao +Juanito +Jules +Julie +Justus +Juventino +Kacy +Kc +Kenton +Kenyon +Kevan +Kieth +Kip +Kristin +Kwesi +Lauro +Lavelle +Leigh +Lowell +Manolo +Marcello +Marcellus +Marshawn +Maximiliano +Maynard +Melissa +Merced +Micahel +Michale +Michelle +Mikael +Milan +Mohamed +Moshe +Nam +Nancy +Ned +Nicholos +Nikola +Octaviano +Philippe +Rashaad +Rashid +Reese +Reginaldo +Richardo +Rob +Rocco +Rocio +Ronnell +Rudolpho +Rueben +Rufino +Salim +Scottie +Seneca +Servando +Shaka +Shamus +Shanon +Shelby +Sunil +Tad +Tal +Thad +Val +Valentine +Vashon +Vincente +Virgilio +Vladimir +Weldon +Willard +Woodrow +Yancy +Zaire +Akira +Alejo +Alessandro +Alexandros +Allyn +Alma +Alon +Amadeo +Amando +Ameer +Americo +Anders +Anh +Apolonio +Aram +Armondo +Art +Arvin +Augustin +Babak +Baldomero +Basilio +Benjie +Bennett +Benton +Booker +Brandan +Brien +Cale +Cassidy +Catarino +Chirstopher +Christain +Christin +Cisco +Cooper +Cord +Cordell +Coy +Dameion +Dandre +Daneil +Darby +Darek +Daven +Davey +Daymon +Dejon +Demar +Demarcus +Deondre +Deron +Derrek +Derrik +Devan +Dietrich +Donavon +Eben +Eladio +Elgin +Eligio +Emile +Erica +Etienne +Fidencio +Florencio +Francesco +Fransico +Franz +Froilan +Garon +Gaspar +Gerry +Giancarlo +Gus +Gustabo +Hannibal +Harrison +Imani +Isidoro +Jabbar +Jace +Jairo +Jamaine +Jaret +Jarid +Jeremi +Jerman +Jerrad +Jubal +Jun +Justice +Kamal +Kane +Karlos +Kennith +Kirby +Kito +Laura +Laurent +Leandro +Lesley +Librado +Lindsay +Lizandro +Marius +Markanthony +Markeith +Marko +Marque +Mathieu +Matias +Maximino +Micaiah +Minh +Monico +Monroe +Nader +Napoleon +Nate +Nathen +Nels +Nickolaus +Nicky +Nico +Nicola +Omero +Oran +Oswald +Otoniel +Paolo +Pascal +Patric +Phil +Quinten +Rahim +Raj +Rajesh +Rakesh +Rami +Ramin +Ramy +Raymund +Refujio +Reza +Richie +Rio +Rishi +Robinson +Rogerio +Romulo +Russ +Sabin +Salome +Sammie +Shaheed +Shanti +Silvestre +Skye +Stevan +Susan +Tai +Taj +Tanya +Taron +Telly +Teofilo +Terron +Theadore +Theo +Tod +Trinity +Truman +Tucker +Uri +Vance +Victoriano +Wally +Wayland +Wilmer +Yuri +Zechariah +Zeferino +Michael +David +Jason +Christopher +Daniel +Robert +James +Matthew +John +Brian +Joshua +Jose +Joseph +Ryan +Anthony +Eric +Richard +Steven +Nicholas +Kevin +William +Jeffrey +Juan +Andrew +Jeremy +Justin +Timothy +Mark +Aaron +Thomas +Scott +Paul +Adam +Jonathan +Benjamin +Charles +Sean +Gregory +Brandon +Carlos +Jesse +Nathan +Kenneth +Jesus +Stephen +Bryan +Edward +Gabriel +Patrick +Jacob +Manuel +Victor +Miguel +Jorge +Mario +Shawn +Luis +Ricardo +Francisco +Peter +Shaun +Erik +Raymond +Donald +Chad +Antonio +Roberto +Travis +Samuel +Ruben +George +Oscar +Frank +Ronald +Alejandro +Jaime +Phillip +Joel +Alexander +Fernando +Javier +Gary +Sergio +Adrian +Eduardo +Keith +Todd +Dustin +Jeremiah +Hector +Douglas +Kyle +Cesar +Shane +Jared +Vincent +Salvador +Larry +Raul +Armando +Christian +Angel +Dennis +Rafael +Omar +Johnny +Casey +Martin +Philip +Marcus +Zachary +Arturo +Joe +Randy +Jerry +Ramon +Brent +Danny +Ian +Jeffery +Nathaniel +Bradley +Alfredo +Craig +Arthur +Marc +Pedro +Tony +Wesley +Alberto +Alex +Albert +Henry +Derek +Enrique +Kristopher +Russell +Cory +Gerardo +Ernesto +Jimmy +Steve +Corey +Edgar +Isaac +Gilbert +Brett +Rene +Alan +Jon +Andre +Lawrence +Tyler +Julio +Marco +Curtis +Troy +Trevor +Damien +Roy +Rudy +Neil +Seth +Jack +Damon +Louis +Ernest +Carl +Eddie +Marcos +Lee +Micheal +Andres +Darren +Rodolfo +Luke +Roger +Allen +Lucas +Mathew +Geoffrey +Randall +Alfonso +Eugene +Nicolas +Billy +Gerald +Ricky +Lance +Jay +Terry +Walter +Bobby +Cameron +Derrick +Wayne +Dominic +Rodney +Leonard +Ivan +Pablo +Erick +Gustavo +Evan +Guillermo +Micah +Ralph +Felipe +Garrett +Jordan +Abraham +Bruce +Julian +Jamie +Alfred +Jerome +Chris +Cody +Theodore +Damian +Gilberto +Colin +Clinton +Devin +Andy +Jessie +Maurice +Abel +Israel +Kelly +Ramiro +Willie +Edwin +Mitchell +Ronnie +Dale +Hugo +Jarrod +Saul +Darrell +Grant +Tommy +Clifford +Glenn +Brad +Rogelio +Tyrone +Esteban +Marvin +Ignacio +Noah +Ray +Orlando +Rodrigo +Tyson +Frederick +Reginald +Ismael +Mike +Ross +Rigoberto +Rolando +Elias +Joey +Fabian +Harold +Humberto +Moises +Ethan +Kurt +Spencer +Felix +Leon +Morgan +Brendan +Joaquin +Daryl +Lorenzo +Stanley +Darryl +Karl +Kirk +Melvin +Barry +Vicente +Allan +Shannon +Jonathon +Oliver +Leo +Norman +Dylan +Clayton +Nelson +Noel +Dean +Efrain +Warren +Austin +Dwayne +Jayson +Jermaine +Johnathan +Leonardo +Noe +Glen +Josue +Alvin +Fred +Guadalupe +Caleb +Calvin +Don +Francis +Gavin +Harry +Howard +Alvaro +Octavio +Franklin +Bret +Roman +Tomas +Blake +Earl +Adolfo +Bernard +Simon +Elijah +Lewis +Xavier +Emilio +Jess +Nickolas +Dante +Louie +Sonny +Byron +Charlie +Clint +Greg +Lonnie +Rick +Duane +Efren +Frankie +Jamal +Heath +Moses +Robin +Angelo +Beau +Damion +Dana +Loren +Marlon +Rocky +Santiago +Agustin +Bryce +Emmanuel +Gonzalo +Jeff +Ben +Eli +Freddie +Roland +Gregorio +Stephan +Adan +Elvis +Jake +Lamar +Leslie +Mauricio +Toby +Wade +Darnell +Dion +Reynaldo +Antoine +Bryant +Clifton +Gordon +Herman +Neal +Rashad +Clarence +Ernie +Isaiah +Reuben +Sam +Bradford +Branden +Darin +Donovan +Fredrick +Terrance +Vernon +Dan +Drew +Estevan +Gene +Jim +Kristoffer +Leonel +Levi +Lloyd +Osvaldo +Randolph +Rory +Stuart +Terrence +Donte +Freddy +Jimmie +Johnnie +Nick +Ariel +Bernardo +Devon +Leroy +Cedric +Dallas +Edmund +Kristofer +Logan +Benny +Marshall +Max +Courtney +Perry +Quincy +Alonzo +Aron +Federico +Jody +Julius +Milton +Rickey +Ali +Arnold +Cruz +Deandre +Fidel +Floyd +German +Lester +Nolan +Tim +Tobias +Herbert +Heriberto +Taylor +Bryon +Desmond +Diego +Donny +Kenny +Kent +Lamont +Marcelo +Raymundo +Terrell +Deon +Dwight +Guy +Leopoldo +Miles +Ted +Trinidad +Ty +Aldo +Emiliano +Forrest +Graham +Jovan +Leland +Pete +Arnulfo +Chester +Demetrius +Dominick +Giovanni +Jackson +Jedediah +Kristian +Sebastian +Zachariah +Alexis +Carlo +Erin +Mason +Nathanael +Tom +Aurelio +Edwardo +Elliott +Harvey +Jerrod +Joesph +Josh +Kelvin +Preston +Sammy +Brock +Erich +Genaro +Landon +Randal +Rudolph +Benito +Domingo +Gregg +Horacio +Isidro +Jarrett +Mariano +Nestor +Ron +Alexandro +Alonso +Collin +Dane +Kory +Kris +Myron +Renato +Solomon +Trenton +Virgil +Arron +Bill +Blaine +Brendon +Eloy +Everardo +Fransisco +Gino +Ira +Marquis +Uriel +Adalberto +Emanuel +Everett +Jamaal +Johnathon +Marques +Nicholaus +Teddy +Ulysses +Will +Abram +Amir +Blair +Clay +Cyrus +Darrel +Darrin +Gorge +Jennifer +Jeromy +Josiah +Owen +Robbie +Roderick +Santos +Stefan +Terence +Wyatt +Ahmad +Conrad +Issac +Jeremie +Jonah +Paulo +Reggie +Tracy +Trent +Cornelius +Dave +Eliseo +Garry +Harley +Isaias +Jorje +Kasey +Marcello +Pierre +Quinn +Reyes +Ari +Brady +Claude +Conor +Cristian +Cristobal +Darius +Donnie +Edmond +Hans +Jamar +Jamil +Jarod +Jarred +Leif +Malcolm +Osbaldo +Sheldon +Ashley +Claudio +Clyde +Colby +Curt +Danial +Darrick +Dewayne +Edmundo +Ezekiel +Ezra +Faustino +Jan +Jed +Jeffry +Jonas +Kerry +Lionel +Marcel +Otis +Scot +Wendell +Wilson +Bob +Brennan +Brenton +Chance +Dameon +Derick +Filiberto +Galen +Jean +Jedidiah +Jerald +Jerod +Marcelino +Quentin +Raphael +Rex +Ronny +Rusty +Sky +Aric +Brant +Clark +Edgardo +Jeramie +Laurence +Lyle +Mauro +Nathanial +Oracio +Oswaldo +Rosendo +Stewart +Valentin +Anton +Antony +Arash +Caesar +Cary +Cecil +Daren +Ezequiel +Jacques +Jeramy +Josef +Kareem +Keven +Kurtis +Luciano +Mohammad +Norberto +Rico +Rojelio +Sherman +Sterling +Tanner +Tobin +Tyree +Alton +Cole +Dario +Dino +Duncan +Elmer +Eriberto +Errol +Giancarlo +Hernan +Hilario +Hugh +Jabari +Jasen +Jevon +Joseluis +Junior +Ken +Maria +Matt +Nikolas +Rahsaan +Reed +Santino +Scotty +Sidney +Sylvester +Thaddeus +Bert +Braden +Brain +Chase +Dorian +Emerson +Erwin +Gil +Laron +Malik +Mateo +Rhett +Sunny +Vidal +Abelardo +Amador +Archie +Arnoldo +Brice +Carlton +Cipriano +Deshawn +Dominique +Dusty +Eddy +Elizabeth +Emil +Fermin +Florencio +Garth +Gerry +Hubert +Jackie +Jefferey +Kenji +Khalid +Lars +Lucio +Mack +Marlin +Romeo +Royce +Shad +Shea +Silas +Stevie +Vance +Zackary +Al +Ara +Aubrey +August +Augustine +Boyd +Bruno +Buddy +Conrado +Cristopher +Davin +Davon +Denny +Doyle +Elliot +Garret +Griffin +Hassan +Jefferson +Johnpaul +Kai +Lukas +Michel +Mickey +Migel +Monte +Orion +Randell +Raudel +Robby +Salvatore +Shayne +Tad +Tristan +Uriah +Van +Vince +Westley +Weston +Wilfredo +Alec +Antwan +Avery +Brook +Carey +Clemente +Cornell +Davis +Denis +Dexter +Feliciano +Fidencio +Forest +Garett +Gildardo +Jade +Jamel +Jereme +Juancarlos +Lane +Marlo +Marquise +Maximino +Melissa +Mikel +Myles +Otto +Rasheed +Reid +Rocco +Rodger +Sandro +Torrey +Travon +Valentino +Winston +Ahmed +Armondo +Barrett +Billie +Blas +Carson +Cecilio +Che +Cynthia +Damen +Darwin +Deven +Dillon +Donnell +Earnest +Ellis +Emmett +Ervin +Gerard +Hiram +Irvin +Jerardo +Jered +Jerrad +Kendrick +Khristopher +Korey +Lazaro +Leandro +Leobardo +Luther +Macario +Marty +Maximiliano +Michale +Michelle +Porfirio +Ramsey +Renee +Reno +Riley +Roosevelt +Rosalio +Rosario +Rueben +Shon +Stacy +Teodoro +Timmothy +Tremaine +Ulises +Vito +Wallace +Willard +Zackery +Zane +Abdul +Albaro +Amado +Amos +Antione +Art +Bernardino +Burton +Christofer +Darian +Derrell +Elbert +Elvin +Epifanio +Eugenio +Flavio +Florentino +Francesco +Fransico +Fredric +Geronimo +Hayden +Ishmael +Jacoby +Jamin +Jaron +Jarvis +Jerrold +Juventino +Kaleb +Kenyatta +Kenyon +Lisandro +Long +Milo +Misael +Nicole +Oren +Parker +Quintin +Reza +Rickie +Rob +Rodrick +Sage +Samson +Samual +Shiloh +Skye +Stanton +Terrill +Theron +Tuan +Waylon +Wilbert +Willis +Augustin +Baron +Bart +Bjorn +Bradly +Brandt +Braulio +Candelario +Chauncey +Christina +Connor +Dain +Daivd +Dajuan +Dandre +Danilo +Daron +Delbert +Dionicio +Elan +Eleazar +Elton +Evaristo +Fausto +Franco +Harlan +Ike +Irving +Ivory +Jamey +Jeremey +Justen +Kim +Leighton +Levar +Liam +Lonny +Marion +Maxwell +Merlin +Milan +Omari +Patricio +Rashaad +Refugio +Regan +Reymundo +Royal +Rufus +Russel +Salomon +Sarah +Schuyler +Seamus +Serjio +Sesar +Tariq +Tory +Tracey +Trever +Tyrell +Tyron +Vern +Wilfred +Willy +Abran +Adolph +Adriel +Alden +Andrea +Anibal +Apolinar +Aram +Asa +Basilio +Benson +Bernie +Brandy +Brion +Cale +Camilo +Carter +Cassidy +Chet +Chistopher +Christoper +Chuck +Corbin +Cornelio +Dameion +Dax +Deangelo +Delvin +Demetrio +Derik +Deshaun +Desi +Dewey +Dontae +Elisha +Enrico +Esequiel +Garrick +Gerrit +Homer +Homero +Jamison +Jarrad +Jarret +Jensen +Jerad +Jonpaul +Kane +Karim +Keenan +Kelley +Kenya +Lamarr +Lamonte +Lavar +Lino +Lisa +Lynn +Margarito +Markus +Narciso +Nicklaus +Patricia +Phil +Raffi +Romel +Roque +Sanjay +Seferino +Shain +Simeon +Skyler +Tai +Tarik +Tito +Trayvon +Ubaldo +Vaughn +Veronica +Viet +Vincente +Abner +Adrain +Alfonzo +Alon +Amin +Anastacio +Andreas +Angela +Antone +Apolonio +Armond +Bennie +Brannon +Bryson +Camron +Carleton +Cliff +Coy +Cuauhtemoc +Dagoberto +Damond +Davey +Demarco +Demian +Demond +Deron +Donal +Donta +Emigdio +Flint +Fredy +Gabe +Gareth +Germaine +Giovanny +Hipolito +Homar +Hunter +Huy +Isiah +Jacinto +Jacobo +Jahmal +Jaimie +Jamon +Jarom +Javon +Jeanpaul +Jelani +Jeramiah +Jeremia +Jeronimo +Jessy +Joao +Judah +Justine +Keegan +Kendall +Kennith +Kenton +Kevan +Kit +Lenny +Lorne +Lupe +Lydell +Magdaleno +Marcell +Maximilian +Miguelangel +Mohammed +Monty +Nigel +Paris +Percy +Rami +Raoul +Rishi +Rito +Ronaldo +Rubin +Sabino +Sal +Sandy +Seneca +Servando +Shelby +Silvestre +Soren +Stanford +Stevan +Timmy +Valentine +Virgilio +Williams +Zachery +Zechariah +Adrien +Agustine +Ahren +Akil +Alain +Alphonso +Amy +Andrae +Andrei +Anson +Anwar +Aren +Arian +Aristeo +Armand +Armen +Artemio +Asher +Baudelio +Benedict +Benjamen +Bobbie +Boris +Brien +Brodie +Brooks +Candido +Catarino +Ceasar +Cedrick +Celso +Chadwick +Cheyenne +Coby +Cyril +Dedrick +Dejon +Delano +Delfino +Demario +Denver +Donavan +Edson +Eldridge +Elgin +Eliazar +Eligio +Erasmo +Erika +Gabino +Gamaliel +Gavino +Geraldo +Giuseppe +Greggory +Hamilton +Haven +Heather +Herminio +Ilan +Irineo +Jairo +Jameel +Jayme +Jeb +Jermain +Jerrid +Jessica +Jude +Jules +Justice +Kamal +Kameron +Kc +Kelsey +Kenan +Lafayette +Lavell +Leander +Leigh +Lejon +Lucus +Mackenzie +Malachi +Mandy +Marko +Mary +Maximo +Melchor +Merrill +Michele +Mikael +Monica +Moshe +Nader +Nancy +Nicky +Nimesh +Ollie +Orin +Prince +Quinten +Rashawn +Rashid +Raymon +Rey +Richardo +Robb +Robyn +Rommel +Rudolfo +Rufino +Rustin +Salbador +Serafin +Shadi +Shaunte +Sherwin +Silverio +Stephanie +Tate +Tavis +Teofilo +Thai +Titus +Tommie +Trey +Ventura +Verne +Vijay +Wes +Wilbur +Wiley +Zeb +Zebulon +Adonis +Albino +Alessandro +Alireza +Alvino +Amanda +Anastasios +Anil +Araceli +Arlo +Armon +Ashanti +Ashraf +Augusto +Augustus +Baltasar +Barney +Bernabe +Berry +Bo +Brannan +Brenda +Brenden +Brooke +Burke +Burt +Byran +Chadd +Christiaan +Christoher +Christophe +Cortney +Crispin +Dakota +Dalen +Dalton +Danielle +Danniel +Darell +Darien +Dashawn +Daymon +Demon +Dereck +Desiderio +Devan +Diana +Dimitri +Donavon +Donell +Dontay +Doug +Douglass +Duke +Dwain +Eamon +Ean +Eladio +Eliah +Eliot +Emery +Emile +Enoc +Enrigue +Erica +Fareed +Favian +Ferdinand +Fletcher +Francois +Fredi +Gage +Garland +Genesis +Geoffery +Gian +Grady +Gus +Hasan +Horace +Ines +Iran +Isabel +Jajuan +Jaret +Jeromie +Jerone +Johann +Johannes +Johnson +Jonte +Joseantonio +Joshuah +Judson +Justino +Juston +Kermit +Khari +Kimani +Kip +Kirby +Kofi +Kristofor +Lanny +Lashawn +Lateef +Lauren +Leeroy +Leron +Lincoln +Lindsay +Lizandro +Lon +Lorin +Lou +Lowell +Luca +Luiz +Mac +Manny +Marcial +Marciano +Marisol +Martell +Mica +Mikal +Minh +Mischa +Mitchel +Modesto +My +Napoleon +Nathen +Neftali +Nicholes +Nicholis +Niles +Noble +Norris +Paige +Pascual +Paulino +Primitivo +Rachel +Rahman +Raj +Rajesh +Ramzy +Randel +Rashaun +Raynard +Reginal +Remo +Rigo +Rod +Ronnell +Roscoe +Saleem +Selso +Shan +Shareef +Shelton +Shin +Sierra +Sione +Son +Stacey +Stefano +Tarek +Thor +Tizoc +Tod +Tremayne +Truong +Tucker +Tye +Tylor +Val +Valente +Vladimir +Vu +Weldon +Wendy +Yong +Young +Zack +Zeke +Michael +David +Christopher +Jason +Daniel +Robert +John +Matthew +James +Joshua +Ryan +Jose +Brian +Joseph +Nicholas +Eric +Anthony +Richard +Steven +William +Kevin +Jeffrey +Juan +Justin +Andrew +Adam +Jeremy +Aaron +Timothy +Scott +Jonathan +Mark +Paul +Thomas +Brandon +Benjamin +Carlos +Charles +Sean +Jesus +Nathan +Jesse +Jorge +Patrick +Gregory +Kenneth +Gabriel +Edward +Stephen +Luis +Jacob +Erik +Bryan +Manuel +Victor +Miguel +Francisco +Ricardo +Mario +Peter +Raymond +Travis +Samuel +Antonio +Alejandro +Shawn +Chad +Roberto +George +Frank +Jaime +Oscar +Ruben +Ronald +Donald +Hector +Joel +Alexander +Fernando +Dustin +Phillip +Shaun +Jared +Kyle +Adrian +Keith +Javier +Gary +Raul +Armando +Eduardo +Zachary +Jeremiah +Douglas +Vincent +Sergio +Cesar +Shane +Dennis +Bradley +Ian +Larry +Christian +Omar +Todd +Angel +Salvador +Martin +Arturo +Rafael +Ramon +Pedro +Gerardo +Philip +Derek +Nathaniel +Marcus +Albert +Alex +Randy +Casey +Edgar +Brent +Alfredo +Isaac +Danny +Johnny +Brett +Jerry +Joe +Russell +Alan +Enrique +Alberto +Arthur +Henry +Tony +Wesley +Craig +Jeffery +Julio +Steve +Jimmy +Lawrence +Rene +Curtis +Corey +Marco +Kristopher +Seth +Ernesto +Marc +Cory +Garrett +Jon +Tyler +Andres +Gilbert +Trevor +Rudy +Jordan +Carl +Andre +Evan +Walter +Troy +Luke +Darren +Roy +Erick +Louis +Micheal +Lucas +Ricky +Jay +Marcos +Alfonso +Gerald +Allen +Jack +Geoffrey +Roger +Cameron +Ernest +Eugene +Eddie +Guillermo +Israel +Damien +Rodney +Gustavo +Billy +Nicolas +Bobby +Randall +Rodolfo +Derrick +Hugo +Mathew +Abel +Ivan +Colin +Neil +Lee +Pablo +Wayne +Abraham +Terry +Alfred +Jarrod +Maurice +Rolando +Ronnie +Noah +Ismael +Frederick +Theodore +Cody +Dominic +Leonard +Bruce +Micah +Moises +Lance +Felipe +Jamie +Devin +Saul +Tommy +Brad +Esteban +Clinton +Rogelio +Ralph +Damon +Gilberto +Willie +Andy +Marvin +Dylan +Jessie +Darrell +Grant +Elias +Julian +Ramiro +Ray +Felix +Jerome +Orlando +Clayton +Edwin +Glenn +Chris +Morgan +Noe +Joaquin +Guadalupe +Reginald +Damian +Kelly +Efrain +Humberto +Austin +Dean +Vicente +Mitchell +Stanley +Dale +Johnathan +Elijah +Joey +Calvin +Jermaine +Mike +Brendan +Ethan +Noel +Shannon +Tyson +Byron +Ignacio +Levi +Simon +Caleb +Tyrone +Ross +Santiago +Spencer +Nelson +Oliver +Kirk +Melvin +Don +Jonathon +Kurt +Norman +Agustin +Rigoberto +Rodrigo +Harold +Leonardo +Lorenzo +Jayson +Leo +Warren +Francis +Karl +Fabian +Alvin +Frankie +Logan +Louie +Beau +Lonnie +Barry +Eli +Clifford +Nickolas +Glen +Allan +Howard +Robin +Alvaro +Darryl +Dwayne +Tomas +Leon +Daryl +Fidel +Lamar +Adan +Adolfo +Bret +Bryce +Earl +Jamal +Marlon +Rocky +Clarence +Octavio +Roman +Angelo +Antoine +Duane +Emmanuel +Fred +Josue +Taylor +Terrance +Blake +Mauricio +Diego +Marshall +Rick +Dante +Jim +Max +Miles +Clint +Harry +Moses +Benny +Emilio +Freddie +Loren +Neal +Franklin +Freddy +Gonzalo +Stuart +Terrence +Ali +Ben +Dana +Roland +Kenny +Wade +Aldo +Herbert +Preston +Raymundo +Drew +German +Terrell +Devon +Gavin +Gregorio +Leroy +Lewis +Randolph +Reynaldo +Darin +Efren +Jamar +Jeff +Lloyd +Nick +Pete +Vernon +Zachariah +Fredrick +Gene +Rory +Ariel +Benito +Bradford +Charlie +Donovan +Herman +Osvaldo +Toby +Bryant +Graham +Guy +Jorje +Leslie +Arnold +Bernardo +Forrest +Jake +Jarod +Jess +Deandre +Dwight +Federico +Rickey +Sonny +Xavier +Everett +Greg +Isaiah +Leonel +Terence +Aurelio +Gordon +Marcel +Darnell +Eliseo +Elvis +Heriberto +Johnnie +Owen +Alexis +Bernard +Bill +Donte +Edmund +Quincy +Branden +Clifton +Aron +Collin +Dane +Demetrius +Isaias +Jonah +Rashad +Roderick +Stephan +Alonso +Cedric +Dallas +Heath +Kurtis +Landon +Blair +Emanuel +Erin +Issac +Josh +Lionel +Rudolph +Rusty +Ted +Tobias +Alonzo +Ernie +Everardo +Giovanni +Gorge +Jeramy +Lamont +Milton +Reuben +Trenton +Bryon +Damion +Darrin +Floyd +Isidro +Leland +Pierre +Ty +Ari +Dion +Donny +Horacio +Mason +Nolan +Sebastian +Will +Wilson +Amir +Brock +Dan +Donnie +Gregg +Jody +Joesph +Julius +Kent +Kory +Lester +Trent +Tristan +Uriel +Conrad +Desmond +Genaro +Jarrett +Jerod +Kristofer +Leopoldo +Rex +Sammy +Santos +Alexandro +Colby +Dario +Lucio +Ron +Valentin +Arnulfo +Brady +Brendon +Clark +Edwardo +Fransisco +Jerrod +Jimmie +Leif +Maxwell +Sam +Sterling +Tom +Trinidad +Chester +Courtney +Cristobal +Cruz +Deon +Edmond +Estevan +Ezra +Garry +Gerard +Jabari +Jamaal +Jarred +Johnpaul +Kristian +Mariano +Nestor +Sheldon +Cristian +Elliot +Eriberto +Ira +Jovan +Marcelino +Osbaldo +Rosendo +Stewart +Ulysses +Ashley +Davin +Derick +Dominick +Ezequiel +Hans +Jeromy +Marquis +Matt +Nathanael +Nikolas +Ulises +Wyatt +Ahmad +Bennie +Claudio +Edgardo +Hugh +Jackson +Jerardo +Josef +Josiah +Kelvin +Kris +Kristoffer +Leobardo +Solomon +Tanner +Tracy +Anton +Barrett +Conor +Dusty +Elmer +Eloy +Fermin +Harley +Jasen +Junior +Kasey +Laurence +Luciano +Myron +Nicholaus +Reggie +Wilfredo +Adalberto +Augustine +Carlo +Darius +Jean +Jedediah +Refugio +Royce +Teddy +Thaddeus +Tyree +Waylon +Winston +Aric +Arnoldo +Bob +Cary +Chance +Daren +Darrel +Deshawn +Elliott +Emiliano +Gino +Harvey +Jan +Jeffry +Jered +Jeremie +Joseluis +Kareem +Perry +Randal +Reid +Reyes +Santino +Artemio +Clemente +Dave +Dewayne +Edmundo +Ezekiel +Faustino +Fausto +Filiberto +Florentino +Garret +Hilario +Jed +Jedidiah +Jeramie +Ken +Kendall +Mohammad +Quentin +Robbie +Stefan +Virgil +Abelardo +Amos +Andreas +Carlton +Carson +Clay +Clyde +Cole +Dillon +Dino +Dorian +Jonas +Kerry +Mack +Malcolm +Maria +Myles +Otis +Paulo +Rico +Romeo +Sherman +Sidney +Timmy +Vince +Aubrey +Darrick +Domingo +Donnell +Erich +Forest +Hernan +Jaron +Jerimiah +Johnathon +Korey +Melissa +Salvatore +Scotty +Van +Vidal +Alton +Armen +Arron +Bennett +Brennan +Celestino +Dominique +Earnest +Edgard +Galen +Jade +Kai +Liam +Lyle +Marcelo +Margarito +Marques +Milan +Nigel +Orion +Quinn +Rodger +Roosevelt +Roque +Scot +Vance +Weston +Amador +Anselmo +Avery +Brant +Brenton +Buddy +Chase +Eddy +Eugenio +Feliciano +Franco +Garth +Michel +Rhett +Sky +Stacy +Sylvester +Tuan +Tyrell +Abram +Alfonzo +Cecil +Daron +Davon +Hiram +Hunter +Jerald +Johann +Keenan +Kenji +Lenny +Luther +Marty +Mateo +Matias +Mauro +Monty +Nathanial +Oren +Parker +Percy +Raphael +Rojelio +Rosario +Russel +Serjio +Shea +Silvestre +Viet +Wilbert +Zachery +Zackary +Antwan +Armand +August +Brain +Braulio +Caesar +Candelario +Cornelius +Cyrus +Darwin +Denis +Duncan +Eleazar +Gabino +Garett +Grady +Jace +Jackie +Jeramiah +Justen +Lars +Long +Luiz +Merle +Mickey +Monte +Morris +Norberto +Quinton +Ramsey +Renato +Robby +Ronny +Sarah +Skye +Tad +Thanh +Willard +Zane +Al +Amado +Antony +Asher +Blaine +Brannon +Brody +Bryson +Christina +Dameon +Danilo +Davis +Delfino +Denny +Donavan +Dontae +Eliot +Emil +Ervin +Erwin +Flavio +Gerrit +Jacques +Jameel +Jamil +Jamin +Jarad +Jasper +Jefferson +Jereme +Jonpaul +Jude +Kendrick +Khalid +Lane +Lazaro +Lowell +Malachi +Marcello +Mikel +Nicky +Oracio +Philippe +Porfirio +Rey +Stevie +Tim +Tommie +Travon +Vaughn +Wilfred +Abran +Adriel +Archie +Asa +Bernabe +Bradly +Brooks +Cale +Chadwick +Che +Claude +Cliff +Dirk +Elbert +Emmett +Enrico +Epifanio +Esequiel +Favian +Fredy +Geronimo +Giancarlo +Hassan +Homero +Hung +Jessica +Jessy +Jevon +Judd +Juvenal +Keegan +Kenyon +Markus +Michelle +Migel +Milo +Monica +Oswaldo +Pascual +Raudel +Renee +Salomon +Samir +Shad +Shayne +Tobin +Tyrel +Veronica +Wendell +Alden +Alec +Andrea +Benigno +Bjorn +Blas +Cecilio +Charley +Chistopher +Cornell +Delvin +Derrell +Deshaun +Dexter +Donta +Doug +Elisha +Elvin +Gamaliel +Gil +Gillermo +Greggory +Irving +Ishmael +Isidoro +Jeanpaul +Jeremey +Jordon +Kennith +Khalil +Kim +Marquise +Minh +Mohammed +Nima +Otto +Prince +Rickie +Riley +Rommel +Rueben +Sage +Silas +Skyler +Titus +Torrey +Ubaldo +Valentine +Adolph +Apollo +Augustin +Bart +Bobbie +Braden +Brenden +Carey +Coby +Connor +Conrado +Cornelio +Curt +Damen +Dereck +Desi +Dimitri +Eladio +Emile +Eusebio +Fidencio +Florencio +Frederic +Garrick +Gideon +Gildardo +Jakob +Jamel +Jamison +Jelani +Jennifer +Jens +Juancarlos +Jules +Juston +Kelley +Kenyatta +Keven +Kristen +Laura +Levon +Lukas +Lupe +Marcell +Mathias +Maurilio +Micahel +Paris +Ramy +Randell +Reed +Reymundo +Rian +Samson +Sandro +Serafin +Silverio +Tai +Teodoro +Thad +Theron +Thor +Trever +Valente +Valentino +Vincente +Wallace +Willis +Abdul +Adrien +Ahmed +Ajay +Alexandre +Amar +Amin +Antwon +Apolinar +Baltazar +Billie +Boris +Brenda +Brice +Brien +Buck +Cassidy +Ceasar +Chauncey +Christoper +Cipriano +Dagoberto +Darell +Darian +Deron +Dewey +Dimas +Drake +Eden +Ellis +Elton +Emerson +Errol +Garland +Germaine +Giuseppe +Gus +Hamilton +Hank +Horace +Immanuel +Jacobo +Jamey +Jarret +Jayme +Jefferey +Jermey +Jerrad +Jerrold +Jerron +Kermit +Laron +Lashawn +Levar +Mac +Macario +Malik +Marion +Maximiliano +Mehdi +Mitchel +Modesto +Newton +Rajan +Raymon +Reza +Rocco +Rodrick +Sandra +Sarkis +Sesar +Shanon +Shant +Shay +Shelton +Simeon +Sir +Tyron +Vito +Wes +Zeke +Angela +Anibal +Anil +Anson +Antone +Arash +Arcadio +Arian +Armin +Armond +Armondo +Art +Bernie +Bo +Boyd +Brandt +Britton +Camilo +Cesario +Christofer +Christophe +Claudia +Courtland +Coy +Cristopher +Damond +Daneil +Dathan +Daunte +Delbert +Demond +Denver +Deric +Duke +Dung +Edson +Ehren +Elan +Erica +Esau +Gabrial +Gaspar +Geno +Gerry +Grayson +Huy +Ivory +Jacoby +Jamon +Jasson +Jeanpierre +Jerad +Jerold +Jerrell +Jimi +Johathan +Juaquin +Justyn +Juventino +Karim +Keon +Keyon +Kieran +Lavar +Lavell +Lenard +Lenin +Lon +Lonnell +Lou +Lucus +Lynn +Maceo +Marin +Markanthony +Michale +Misael +Mohamed +Muhammad +Nancy +Ned +Nicklaus +Nikolaus +Omero +Orin +Ravi +Reinaldo +Richardo +Richie +Rigo +Rito +Rosalio +Sal +Sameer +Samer +Shon +Stacey +Taj +Tarik +Tavis +Terrill +Tory +Trung +Tye +Whitney +Wilbur +Wiley +Williams +Woodrow +Zackery +Abner +Albaro +Alegandro +Alessandro +Alicia +Amit +Ante +Aram +Arik +Aristeo +Arnel +Artis +Ashton +Aziz +Baron +Basil +Benson +Bert +Bronson +Cain +Caine +Carter +Chadrick +Cooper +Cord +Cresencio +Cuauhtemoc +Cuong +Cyril +Daivd +Dajuan +Dandre +Danial +Darien +Davey +Davion +Delano +Demario +Demetrio +Deonte +Derik +Deshon +Donell +Douglass +Dov +Doyle +Ebon +Eligio +Emery +Enoch +Eran +Erasmo +Eron +Esteven +Fletcher +Francesco +Fransico +Fredric +Gabriela +Gareth +Griffin +Han +Harrison +Heraclio +Hubert +Irvin +Isai +Isaul +Jai +Jarrad +Jarron +Jarvis +Jenaro +Jeromey +Jerred +Joao +Johnie +Jomar +Jonmichael +Jovany +Juanpablo +Julie +Julien +Kameron +Kevan +Kirby +Kristin +Lamond +Lauren +Layne +Leandro +Leigh +Lino +Lisa +Lisandro +Lonny +Lovell +Lucky +Marius +Marlin +Marlo +Mary +Melchor +Mikal +Nicholes +Nicholus +Obed +Paolo +Patricio +Phil +Phuc +Quan +Raheem +Rahsaan +Rajesh +Rand +Raoul +Rashaad +Rashid +Regan +Remy +Reno +Reynold +Rich +Rod +Ryon +Salome +Sami +Samual +Sanford +Sara +Scottie +Seneca +Servando +Severo +Shamar +Shilo +Shiloh +Sione +Soren +Stanton +Stefano +Stevan +Sunny +Tara +Tariq +Tito +Tri +Uriah +Vijay +Virgilio +Vladimir +Vu +Wilfrido +Young +Ysidro +Yvonne +Zebulon +Abdullah +Adonis +Aidan +Akili +Alain +Alexi +Alireza +Alphonse +Alvino +Ameer +Ammon +Amy +Anastacio +Andrae +Andrei +Ankur +Antione +Ara +Ascencion +Augusto +Aureliano +Austen +Avi +Axel +Babak +Baldemar +Barret +Barton +Basilio +Bernardino +Bilal +Blaise +Boone +Branson +Brennen +Broderick +Brodie +Brook +Candido +Cardell +Cavan +Cedrick +Chadd +Chandler +Chaz +Cheyenne +Christine +Christoffer +Christpher +Chuck +Clement +Conan +Cordell +Corwin +Damaso +Damein +Daryn +Dashaun +Dashawn +Davy +Demarco +Deondre +Derrek +Desiderio +Dick +Dietrich +Domenico +Domonic +Donato +Donavon +Earle +Edison +Edric +Elgin +Eliazar +Elizabeth +Elpidio +Ely +Enrrique +Erika +Esgar +Froilan +Gaetano +Garrison +Germain +Golden +Gorje +Hagop +Hamed +Harlan +Hasan +Hayden +Heliodoro +Herschel +Hoang +Hodari +Ibrahim +Ike +Isabel +Isiah +Jacinto +Jaimie +Jairo +Jameson +Janson +Japheth +Jaren +Jarett +Jarom +Jaun +Jensen +Jeremias +Jericho +Jeron +Jeronimo +Jovon +Jun +Justine +Kacey +Kaleb +Kam +Kane +Karla +Karlo +Kennedy +Kimberly +Kimo +Kiyoshi +Krishna +Lauro +Lawrance +Leighton +Lemar +Lincoln +Lorne +Loyd +Lucien +Luigi +Lyndon +Mahmoud +Manny +Marcial +Marciano +Marko +Marquez +Marshawn +Maximino +Maximo +Mckinley +Medardo +Merrill +Mikael +Mikhail +Mondo +Murphy +Nabil +Nader +Nam +Narciso +Nathaneal +Nathen +Natividad +Neftali +Nehemiah +Nery +Nevin +Nickie +Nicole +Nikolai +Nino +Noble +Olaf +Ollie +Oswald +Payam +Phuong +Quintin +Raffi +Ramses +Rashawn +Rashon +Ravinder +Raynaldo +Remberto +Rishi +Robb +Rodel +Romel +Ronnell +Roscoe +Royal +Rubin +Ryland +Salem +Sandeep +Sandy +Sanjay +Sasha +Seferino +Severiano +Shaheed +Shain +Shaka +Shamus +Sharif +Sherwin +Silvano +Silviano +Sixto +Stan +Stevens +Tadd +Tam +Tate +Teron +Thunder +Timmothy +Tino +Tremayne +Trevis +Trevon +Truman +Uri +Uvaldo +Ventura +Victorio +Waldo +Westley +Yale +Zeb +Zev +Michael +David +Christopher +Daniel +Jason +Robert +Matthew +Joshua +John +James +Ryan +Jose +Joseph +Brian +Justin +Eric +Richard +Anthony +Nicholas +Steven +Juan +Andrew +Jonathan +William +Kevin +Jeffrey +Adam +Timothy +Jeremy +Aaron +Mark +Brandon +Scott +Paul +Thomas +Benjamin +Carlos +Charles +Sean +Luis +Jesus +Jesse +Jacob +Patrick +Gabriel +Nathan +Kenneth +Gregory +Jorge +Stephen +Bryan +Erik +Miguel +Edward +Ricardo +Manuel +Victor +Francisco +Mario +Raymond +Dustin +Peter +Travis +Antonio +Samuel +Roberto +George +Shawn +Alejandro +Derek +Jaime +Frank +Alexander +Ronald +Ruben +Joel +Chad +Donald +Jared +Oscar +Fernando +Hector +Raul +Phillip +Javier +Armando +Keith +Adrian +Eduardo +Sergio +Kyle +Vincent +Cesar +Gary +Ian +Salvador +Douglas +Omar +Jeremiah +Rafael +Zachary +Martin +Angel +Christian +Danny +Dennis +Shaun +Ramon +Casey +Randy +Shane +Edgar +Johnny +Albert +Bradley +Arturo +Joe +Nathaniel +Alfredo +Alex +Enrique +Alberto +Marcus +Philip +Brent +Larry +Tyler +Gerardo +Steve +Pedro +Todd +Henry +Tony +Brett +Cory +Isaac +Jerry +Marco +Russell +Arthur +Andres +Alan +Ernesto +Craig +Marc +Gilbert +Derrick +Jimmy +Jeffery +Julio +Wesley +Trevor +Luke +Rene +Lawrence +Andre +Lucas +Evan +Darren +Corey +Curtis +Seth +Troy +Marcos +Ivan +Jordan +Garrett +Louis +Carl +Jon +Rudy +Kristopher +Nicolas +Rodolfo +Bobby +Cameron +Eddie +Allen +Erick +Micheal +Ricky +Walter +Guillermo +Abraham +Gustavo +Jack +Roger +Hugo +Alfonso +Billy +Randall +Rodney +Mathew +Cody +Dominic +Jay +Abel +Gerald +Terry +Clinton +Colin +Roy +Alfred +Pablo +Israel +Noah +Eugene +Rolando +Felipe +Lee +Wayne +Rogelio +Ernest +Neil +Grant +Geoffrey +Leonard +Lance +Ronnie +Willie +Saul +Dylan +Theodore +Julian +Beau +Gilberto +Devin +Damien +Esteban +Jamie +Ignacio +Ismael +Brendan +Edwin +Morgan +Andy +Darrell +Jessie +Jarrod +Marvin +Jonathon +Clifford +Leonardo +Maurice +Brad +Orlando +Mitchell +Tyson +Bruce +Kelly +Humberto +Micah +Ralph +Jerome +Clayton +Moises +Glenn +Jermaine +Ray +Joaquin +Joey +Austin +Caleb +Chris +Rigoberto +Ramiro +Fabian +Levi +Noe +Dale +Guadalupe +Spencer +Frederick +Ethan +Kurt +Reginald +Karl +Tyrone +Elias +Johnathan +Mike +Noel +Rodrigo +Efrain +Emmanuel +Stanley +Vicente +Alvaro +Damon +Ross +Byron +Felix +Josue +Nelson +Darryl +Lorenzo +Santiago +Tommy +Damian +Diego +Howard +Logan +Adan +Daryl +Harold +Bryce +Leon +Calvin +Elijah +Kirk +Barry +Octavio +Alvin +Dean +Max +Blake +Clint +Mauricio +Tomas +Angelo +Leo +Melvin +Nickolas +Francis +Louie +Taylor +Warren +Rick +Terrance +Marshall +Rocky +Agustin +Loren +Don +Freddy +Franklin +Jayson +Oliver +Emilio +Eli +Marlon +Moses +Gonzalo +Fred +Glen +Kenny +Reynaldo +Shannon +Simon +Duane +Norman +Adolfo +Aldo +Allan +Earl +Dante +Efren +Leonel +Robin +Santos +Bernard +Clarence +Dwayne +Jamal +Lonnie +Emanuel +Freddie +Rickey +Roman +Bret +Devon +Heath +Sam +Ben +Dario +Darnell +Ernie +Frankie +Bernardo +Drew +Herman +Leroy +Stuart +Branden +Bryant +Dane +Graham +Isaiah +Lewis +Lloyd +Forrest +Nathanael +Osvaldo +Preston +Dana +Donte +Fredrick +Harry +Jamaal +Alonzo +Herbert +Jake +Roland +Stephan +Bradford +Gavin +Jamar +Pete +Raymundo +Terrence +Elvis +Lamar +Neal +Nolan +Arnulfo +Dan +Gordon +Heriberto +Lester +Nick +Terrell +Vernon +Benny +Donovan +Fidel +Gene +Jeff +Kurtis +Marcel +Miles +Reuben +Rory +Xavier +Ariel +German +Giovanni +Ali +Gregorio +Jess +Sammy +Antoine +Cedric +Cruz +Dallas +Deandre +Jim +Jonah +Julius +Valentin +Arnold +Bill +Estevan +Federico +Horacio +Isidro +Randolph +Wade +Ashley +Charlie +Clifton +Greg +Toby +Alexis +Darin +Demetrius +Derick +Edmund +Genaro +Guy +Rudolph +Zachariah +Alexandro +Benito +Brady +Edwardo +Johnnie +Leopoldo +Sonny +Ty +Jimmie +Kent +Cristian +Josiah +Courtney +Erin +Isaias +Ron +Conor +Eliseo +Gino +Jarred +Johnathon +Mason +Maxwell +Nestor +Perry +Rashad +Trent +Adalberto +Aron +Brock +Collin +Dwight +Jackson +Jarrett +Kristofer +Leslie +Ted +Tobias +Desmond +Dion +Issac +Lionel +Marquis +Sebastian +Tom +Erich +Jarod +Pierre +Augustine +Conrad +Cristobal +Donnie +Elliott +Hans +Kareem +Mariano +Quincy +Terence +Trinidad +Darrin +Dominick +Ezequiel +Floyd +Joesph +Marcelino +Marcelo +Roderick +Rosendo +Uriel +Abram +Bryon +Dave +Deon +Eriberto +Garry +Jed +Jonas +Josh +Leif +Marques +Milton +Sheldon +Anton +Carlo +Dillon +Fransisco +Jedediah +Jeramy +Kristoffer +Scotty +Tristan +Amador +Clyde +Darius +Elliot +Everardo +Ira +Jerrod +Jody +Ken +Landon +Myron +Norberto +Tracy +Amir +Aurelio +Blaine +Blair +Bo +Chester +Clark +Claudio +Cole +Dewayne +Edmundo +Emiliano +Ezra +Gerard +Jackie +Jennifer +Kory +Long +Rex +Sidney +Tanner +Waylon +Wilson +Alec +Ari +Arron +Clay +Colby +Edgardo +Gregg +Harley +Harvey +Jovan +Keenan +Luciano +Owen +Raphael +Curt +Daren +Deshawn +Edmond +Everett +Fermin +Gorge +Jered +Reyes +Robbie +Alonso +Barrett +Brendon +Cyrus +Darrel +Jan +Jerod +Jorje +Joseluis +Kendall +Kris +Lamont +Laurence +Maria +Nicholaus +Oswaldo +Otis +Renato +Royce +Rusty +Solomon +Vidal +Ahmad +Clemente +Damion +Domingo +Donny +Garret +Hilario +Jasen +Jean +Lyle +Quinn +Refugio +Rico +Ronny +Stefan +Stewart +Ulysses +Virgil +Bob +Brennan +Brice +Brooks +Carlton +Cary +Davin +Dorian +Dusty +Eleazar +Garth +Jerald +Jerardo +Jessy +Johnpaul +Kerry +Lazaro +Lucio +Marty +Nigel +Paulo +Shea +Sylvester +Zane +Antony +Aric +Bert +Dino +Erwin +Eugenio +Garett +Hung +Jairo +Jamil +Jefferson +Jerad +Josef +Kelvin +Luiz +Malcolm +Sterling +Teddy +Ulises +Vance +Vaughn +Wendell +Abelardo +Brain +Eddy +Fausto +Gildardo +Jasper +Jeffry +Kasey +Leland +Michel +Nikolas +Tim +Tuan +Westley +Wyatt +Arnoldo +Avery +Braden +Brenton +Bruno +Carson +Chase +Darrick +Elisha +Huy +Jacques +Jedidiah +Jeromy +Kristian +Matt +Migel +Mohammed +Omari +Reed +Richardo +Romeo +Shayne +Weston +Wilbert +Wilfredo +Andreas +Baltazar +Claude +Cuauhtemoc +Delfino +Dominique +Donnell +Elmer +Erasmo +Juancarlos +Leobardo +Markus +Nam +Osbaldo +Porfirio +Reggie +Reymundo +Russel +Skyler +Vince +Winston +Antwan +Caesar +Carey +Chance +Cliff +Cornelius +Cristopher +Danial +Denny +Deric +Elizabeth +Emil +Ezekiel +Flavio +Fredy +Garland +Hassan +Jabari +Lars +Lisandro +Maximilian +Mickey +Morris +Myles +Nathanial +Nicole +Pascual +Quentin +Salomon +Salvatore +Tyree +Van +Cecil +Chaz +Conrado +Davon +Delbert +Dereck +Errol +Esequiel +Faustino +Gil +Kai +Kaleb +Kim +Mohammad +Monte +Narciso +Orion +Quinton +Ramsey +Randal +Riley +Robby +Rodger +Samson +Santino +Serjio +Teodoro +Timmy +Travon +Trenton +Vinh +Zachery +Alton +Amado +Brenden +Buck +Camilo +Che +Davis +Demond +Dexter +Duncan +Eloy +Erika +Filiberto +Franco +Galen +Gerrit +Gideon +Homero +Hubert +Irving +Jaron +Jelani +Junior +Khalid +Lenny +Lino +Malachi +Mauro +Maximiliano +Melissa +Michelle +Monty +Rosalio +Rueben +Sarah +Shant +Shon +Tarik +Tommie +Ubaldo +Valentino +Wallace +Zackary +Alphonso +Anselmo +Aram +Archie +Armen +Art +Augustin +Bennett +Brien +Cornell +Daron +Deshaun +Dontae +Esau +Florentino +Giancarlo +Jade +Jamin +Jeramie +Jessica +Juvenal +Kelsey +Kenyon +Nicky +Prince +Rahul +Randell +Rhett +Rodrick +Rojelio +Sherman +Thanh +Zackery +Adonis +Alain +Amit +Angela +Asa +Bennie +Bjorn +Bradly +Brant +Carmelo +Cassidy +Ceasar +Chadwick +Cullen +Cuong +Danniel +Dejuan +Dimitri +Donavan +Ellis +Ervin +Feliciano +Fidencio +Harrison +Hayden +Homer +Ivory +Jevon +Judson +Juston +Keegan +Kendrick +Lavell +Liam +Lukas +Marcell +Minh +Nehemiah +Nikolaus +Oracio +Patricio +Quang +Raudel +Reid +Renee +Rey +Rocco +Rommel +Ronaldo +Sanjay +Scot +Shelby +Silverio +Simeon +Tyrell +Viet +Vincente +Willis +Adriana +Alfonzo +Ara +Aubrey +August +Bart +Benson +Bernardino +Brook +Catarino +Cecilio +Charlton +Cheyne +Cipriano +Conan +Connor +Darwin +Demetrio +Dirk +Ector +Eladio +Elvin +Florencio +Greggory +Hai +Hal +Hamilton +Jacobo +Jarett +Jefferey +Jereme +Jeremie +Jerrad +Kenji +Laron +Lauro +Lon +Malik +Marcial +Mikel +Modesto +Mohamed +Paris +Percy +Phong +Roosevelt +Rudolfo +Rufino +Samual +Sandro +Sandy +Sharif +Shelton +Sherwin +Silvestre +Sky +Stacy +Stevan +Stevie +Tai +Terron +Trever +Tye +Tyron +Uriah +Valentine +Veronica +Vito +Will +Zebulon +Agustine +Ahmed +Al +Amin +Amos +Anh +Ankur +Apolinar +Artemio +Augusto +Barney +Benigno +Brandan +Brandt +Braulio +Burton +Camron +Christina +Christoper +Cornelio +Dameon +Danielle +Darian +Derik +Derrell +Donell +Donta +Douglass +Doyle +Elio +Emmett +Forest +Franz +Froilan +Gabino +Grady +Hernan +Hiram +Imran +Isacc +Ishmael +Isreal +Jamison +Javon +Jeremey +Jerred +Johan +Johann +Jory +Justus +Juventino +Kao +Kelley +Kenya +Keon +Kevan +Kirby +Lauren +Lemuel +Lynn +Macario +Marcello +Marcoantonio +Marquise +Monica +Nathen +Nickolaus +Parker +Quoc +Ravi +Rishi +Roque +Sandra +Serafin +Shay +Shiloh +Tarek +Thaddeus +Tri +Trung +Tucker +Valente +Willy +Yusuf +Abner +Adolph +Alejo +Ameer +Anderson +Andrea +Anibal +Anson +Antwon +Armand +Arthuro +Austen +Baldomero +Barton +Benedict +Buddy +Cade +Candelario +Charley +Chauncey +Chet +Cheyenne +Christos +Constantino +Dajuan +Delvin +Deven +Duy +Earnest +Edgard +Edson +Eduard +Emerson +Enrico +Fabio +Frederic +Gaspar +Geraldo +Gerry +Gerson +Hoang +Irwin +Jameel +Jayme +Jeanpaul +Jeramiah +Jeremias +Jerimiah +Jerman +Jermey +Jude +Kennith +Keven +King +Laura +Lavar +Lenin +Levon +Lisa +Lorne +Lupe +Luther +Magdaleno +Mandeep +Margarito +Marion +Markanthony +Maximillian +Misael +Mitchel +Nancy +Napoleon +Phil +Rasheed +Renaldo +Rickie +Romulo +Ronnell +Rosario +Seneca +Servando +Shad +Shanon +Shomari +Silas +Son +Taj +Tito +Trevon +Vincenzo +Virgilio +Vu +Willard +Abran +Adrain +Alden +Alegandro +Alejandra +Amar +Amber +Anwar +Apollo +Apolonio +Armondo +Asher +Baldemar +Baron +Billie +Blas +Boris +Brandyn +Brannon +Broderick +Brodie +Bryson +Cain +Cale +Chadd +Chuck +Cirilo +Coleman +Cooper +Cristina +Dandre +Delvon +Demetrios +Denis +Denver +Domenic +Donavon +Dupree +Duran +Ed +Elton +Ely +Enoc +Enoch +Ephraim +Favian +Germain +Germaine +Gian +Harlan +Heather +Hermes +Hipolito +Hoa +Holland +Hugh +Hunter +Iman +Isiah +Isidoro +Jakob +Jamel +Jarom +Jarrad +Jeb +Jenny +Jensen +Jerid +Jerrett +Jessee +Johathan +Jonpaul +Jordon +Judd +Justen +Kahlil +Kalen +Kip +Kristin +Lateef +Leandro +Lenard +Lincoln +Lonny +Lou +Lucky +Luisalberto +Marko +Merlin +Michale +Mikael +Miquel +Muhammad +Nolberto +Paolo +Patricia +Raoul +Rashaad +Reza +Rigo +Rito +Rob +Robyn +Roel +Romel +Sage +Salbador +Sameer +Samir +Sandeep +Seferino +Silvano +Stacey +Stephanie +Theron +Timmothy +Vanessa +Vijay +Wes +Whitney +Ysidro +Yusef +Abdul +Abelino +Agapito +Alessandro +Alverto +Anand +Anastacio +Andrae +Andrei +Araceli +Arlen +Axel +Basil +Basilio +Bee +Benjamen +Bilal +Bobbie +Boyd +Britt +Bud +Burt +Carmen +Cedrick +Chandler +Chistopher +Constantine +Cordell +Cortney +Cuahutemoc +Dagoberto +Dakota +Danilo +Darek +Darick +Dartagnan +Dax +Deangelo +Delano +Deonte +Deron +Derrek +Derrik +Desi +Dimitrios +Dionicio +Domonic +Dontay +Dov +Eden +Elan +Elie +Eliezer +Elijio +Enrigue +Epifanio +Erica +Fletcher +Francois +Gabrial +Gavino +Giuseppe +Gonsalo +Gus +Gustabo +Hyrum +Ines +Jace +Jacoby +Jai +Jamon +Jarret +Jarvis +Jashua +Johannes +Johnie +Johnson +Jonmichael +Jonny +Josemanuel +Joshuah +Jovany +Jovon +Julien +Kabir +Kalani +Kellen +Kenton +Keyon +Kimberly +Koby +Kolby +Kraig +Kristen +Laurent +Leigh +Lemar +Liborio +Lizandro +Lucien +Lydell +Mack +Mackenzie +Major +Maribel +Marisol +Marlin +Maximo +Mayra +Megan +Mel +Micahel +Mikhail +Mitch +Nasario +Natividad +Ned +Nikolai +Nile +Nima +Norbert +Olaf +Otoniel +Paulino +Philippe +Prentice +Primitivo +Quintin +Raj +Reese +Rian +Ritchie +Rocio +Sal +Salim +Sasha +Sesar +Shan +Tam +Tan +Terrill +Thien +Thurman +Tino +Toan +Tobin +Torrey +Trinity +Truong +Tu +Vi +Victorio +Vinay +Wenceslao +Wilbur +Wiley +Wilfred +Ygnacio +Zechariah +Zeferino +Able +Adriano +Adrien +Aidan +Albaro +Alen +Alexandre +Alvino +Amanda +Amandeep +Ambrose +Ameet +Americo +Ammon +An +Ana +Angelica +Anna +Anthoney +Arcadio +Aren +Ashish +Avelino +Bassel +Bernie +Binh +Booker +Bulmaro +Burl +Candido +Carter +Cesario +Chi +Christine +Claudia +Cleveland +Concepcion +Cosme +Cris +Crisanto +Curtiss +Dani +Dashawn +Davey +Davie +Dawud +Deondre +Deshon +Diondre +Dionisio +Doug +Duke +Dwain +Eamonn +Ebony +Edilberto +Eliel +Eliot +Eliu +Ellery +Emery +Emile +Emory +Eran +Eron +Filemon +Flynn +Foster +Garen +Garet +Gareth +Garon +Garren +Garrick +Gaylord +Gerad +Geronimo +Gillermo +Gustav +Hagop +Hank +Hilda +Hollis +Horace +Ibn +Ike +Isac +Jabier +Jahmal +Jaison +Jamarr +Jameson +Jamey +Jasson +Jenaro +Jeremi +Jericho +Jermain +Jerone +Jeronimo +Jerrold +Josemaria +Julie +Justo +Kale +Kamran +Karim +Katherine +Katrina +Kentaro +Kerwin +Khalil +Khanh +Kody +Kristina +Lalo +Lashawn +Lavon +Linda +Lowell +Loyd +Lucian +Lucius +Lyndon +Makoto +Marcellus +Markell +Marquez +Marshal +Mateo +Matias +Matteo +Matthias +Maximino +Merle +Merrill +Milo +Mister +Mohamad +Moshe +Murray +Nabil +Nazario +Neftali +Nguyen +Nicholos +Nicklaus +Nino +Odell +Olen +Olin +Olivier +Omid +Orasio +Oren +Patric +Raffi +Raheem +Rahim +Raja +Rami +Randel +Rashid +Raymon +Reginaldo +Remy +Renard +Renne +Reuel +Reynold +Richie +Robb +Rock +Rowan +Royal +Rufus +Rustin +Sabas +Sachin +Saeed +Saleem +Salvadore +Sammie +San +Sang +Saro +Saulo +Severo +Shamar +Shanti +Sigifredo +Sione +Sol +Stan +Takashi +Teofilo +Tiffany +Tizoc +Tou +Tremaine +Ulisses +Vernell +Victoriano +Vikram +Vishal +Waldo +Weldon +Willian +Zeke +Zeth +Michael +Christopher +David +Daniel +Matthew +Robert +Jason +Joshua +John +Jose +Ryan +Joseph +James +Brian +Justin +Anthony +Jonathan +Richard +Eric +Nicholas +Steven +Brandon +Andrew +Juan +William +Jeffrey +Kevin +Adam +Aaron +Jeremy +Timothy +Paul +Thomas +Mark +Sean +Scott +Jesse +Benjamin +Carlos +Charles +Jesus +Luis +Kenneth +Patrick +Jacob +Nathan +Miguel +Gregory +Jorge +Francisco +Ricardo +Gabriel +Edward +Bryan +Stephen +Dustin +Manuel +Victor +Mario +Alexander +Raymond +Alejandro +Samuel +Travis +Peter +Antonio +Erik +Roberto +Ronald +Shawn +Frank +Joel +George +Kyle +Jared +Adrian +Oscar +Ruben +Sergio +Derek +Jaime +Chad +Raul +Donald +Javier +Fernando +Hector +Armando +Christian +Keith +Vincent +Cesar +Phillip +Gary +Arturo +Eduardo +Martin +Zachary +Salvador +Ian +Rafael +Douglas +Pedro +Bradley +Jeremiah +Ramon +Brett +Edgar +Casey +Philip +Angel +Shaun +Danny +Alberto +Johnny +Omar +Shane +Marcus +Randy +Dennis +Henry +Nathaniel +Tyler +Ivan +Larry +Alex +Jordan +Albert +Gerardo +Arthur +Joe +Jimmy +Alfredo +Tony +Ernesto +Enrique +Todd +Russell +Brent +Isaac +Alan +Evan +Steve +Craig +Julio +Jerry +Wesley +Garrett +Marco +Gustavo +Cory +Trevor +Andres +Curtis +Jeffery +Marc +Rodolfo +Derrick +Kristopher +Corey +Rene +Luke +Lawrence +Andre +Gilbert +Seth +Lucas +Cameron +Carl +Rudy +Hugo +Marcos +Mathew +Roger +Darren +Roy +Troy +Noah +Walter +Erick +Micheal +Abraham +Allen +Julian +Nicolas +Jack +Pablo +Dominic +Louis +Alfonso +Ricky +Abel +Bobby +Jon +Eddie +Lee +Neil +Saul +Emmanuel +Guillermo +Clinton +Cody +Felipe +Gilberto +Billy +Colin +Randall +Blake +Ernest +Edwin +Geoffrey +Wayne +Ismael +Terry +Jessie +Johnathan +Israel +Maurice +Gerald +Rodney +Moises +Leonard +Alfred +Austin +Esteban +Eugene +Jonathon +Rogelio +Andy +Micah +Ramiro +Ronnie +Grant +Mitchell +Morgan +Jay +Tommy +Caleb +Devin +Bruce +Frederick +Marvin +Ralph +Lance +Beau +Brendan +Theodore +Fabian +Clayton +Jamie +Jarrod +Ray +Ignacio +Clifford +Efrain +Willie +Leonardo +Rigoberto +Taylor +Calvin +Rolando +Jermaine +Kelly +Tyrone +Orlando +Reginald +Brad +Darrell +Damien +Santiago +Adan +Byron +Jerome +Josue +Ross +Glenn +Spencer +Dylan +Joey +Octavio +Elias +Lorenzo +Alvaro +Vicente +Humberto +Branden +Felix +Levi +Rodrigo +Ethan +Joaquin +Noel +Tomas +Damian +Dario +Noe +Guadalupe +Stanley +Dean +Tyson +Darryl +Logan +Mike +Barry +Leo +Chris +Melvin +Clint +Harold +Dale +Diego +Don +Kenny +Alvin +Max +Elijah +Kurt +Warren +Angelo +Emilio +Emanuel +Leon +Mauricio +Bryce +Karl +Rick +Adolfo +Marlon +Allan +Kirk +Simon +Francis +Dante +Howard +Norman +Roman +Daryl +Nelson +Oliver +Damon +Dwayne +Agustin +Leonel +Louie +Jeff +Bret +Drew +Eli +Glen +Heriberto +Earl +Freddie +Jayson +Moses +Roland +Gavin +Marshall +Nolan +Raymundo +Bryant +Jake +Jamal +Rickey +Shannon +Gonzalo +Graham +Clarence +Fred +Lamar +Cristian +Franklin +Lonnie +Loren +Neal +Nickolas +Santos +Robin +Terrance +Terrence +Clifton +Fidel +Giovanni +Lloyd +Reynaldo +Frankie +Gene +German +Harry +Miles +Vernon +Alexis +Bernardo +Gordon +Isidro +Osvaldo +Wade +Ben +Charlie +Johnathon +Pete +Jim +Rocky +Benny +Dana +Xavier +Bernard +Federico +Devon +Fredrick +Isaiah +Terrell +Antoine +Efren +Herman +Jairo +Tom +Aldo +Donte +Freddy +Julius +Kent +Stuart +Tristan +Dallas +Jarrett +Lewis +Preston +Randolph +Gregorio +Nick +Stephan +Darin +Derick +Josiah +Benito +Dan +Owen +Alexandro +Cedric +Eliseo +Ernie +Guy +Horacio +Jess +Johnnie +Landon +Reuben +Adalberto +Dane +Marcel +Rory +Sonny +Ted +Zachariah +Ashley +Bradford +Donovan +Lester +Marques +Milton +Perry +Sam +Ty +Darnell +Deandre +Heath +Alonzo +Ariel +Arnold +Aron +Domingo +Duane +Greg +Herbert +Jamar +Kurtis +Leroy +Ron +Skyler +Trent +Ali +Dwight +Elliot +Hans +Jackson +Lionel +Aurelio +Isaias +Marquis +Pierre +Sammy +Sterling +Bryon +Carlo +Erin +Estevan +Everett +Kristoffer +Stefan +Bill +Elvis +Kellen +Kelvin +Rudolph +Sebastian +Brendon +Conrad +Edmund +Jonah +Leslie +Rashad +Roderick +Ulysses +Brady +Collin +Dion +Nestor +Valentin +Arnulfo +Blair +Courtney +Cruz +Dominick +Donny +Ezequiel +Forrest +Fransisco +Genaro +Jarod +Jimmie +Kristian +Kristofer +Leopoldo +Maria +Toby +Arron +Huy +Jamaal +Marcelo +Amir +Cristobal +Demetrius +Dorian +Erwin +Garry +Gerard +Jovan +Terence +Weston +Brooks +Carson +Chester +Donnie +Elliott +Everardo +Issac +Lamont +Mason +Maxwell +Nikolas +Norberto +Wilson +Clyde +Darius +Dave +Kasey +Ahmad +Cyrus +Desmond +Filiberto +Joesph +Ken +Mariano +Nathanael +Rex +Uriel +Augustine +Cole +Conor +Darrin +Deshawn +Edwardo +Fermin +Garret +Gorge +Harvey +Jeremie +Marcelino +Nicholaus +Rojelio +Royce +Tobias +Tracy +Tuan +Virgil +Anton +Donnell +Dusty +Edmond +Gino +Jorje +Leif +Lyle +Migel +Rosendo +Tanner +Wyatt +Alonso +Bryson +Cary +Clark +Claudio +Floyd +Jasen +Jerald +Keenan +Luciano +Rey +Reyes +Clay +Denny +Deon +Joseluis +Kerry +Kory +Laurence +Leland +Markus +Randal +Salvatore +Sheldon +Solomon +Trenton +Trinidad +Ulises +Blaine +Cecil +Dillon +Elmer +Galen +Hilario +Jan +Jonas +Kim +Long +Minh +Myron +Quincy +Reggie +Reid +Robbie +Waylon +Abram +Alton +Claude +Cristopher +Emiliano +Ira +Josef +Josh +Marty +Serjio +Travon +Van +Vinh +Wendell +Ari +Braden +Bradly +Christoper +Darrick +Edgardo +Emil +Harley +Jackie +Jarred +Jerad +Jeromy +Keegan +Kris +Lucio +Refugio +Shea +Vidal +Alec +Arnoldo +Avery +Barrett +Clemente +Daren +Darrel +Dexter +Dontae +Eleazar +Eriberto +Ezekiel +Faustino +Flavio +Jasper +Jed +Jedidiah +Jennifer +Johnpaul +Kendall +Lino +Luiz +Quentin +Quinn +Renato +Santino +Teddy +Thaddeus +Vance +Wilfredo +Colby +Dominique +Eloy +Ezra +Fausto +Garett +Hung +Jefferey +Jerrod +Johnson +Margarito +Myles +Pascual +Paulo +Quang +Raphael +Rhett +Rocco +Rusty +Sidney +Stewart +Thanh +Tim +Tyrell +Willis +Winston +Alegandro +Amador +Brain +Brock +Caesar +Damion +Davon +Denis +Derik +Dewayne +Dino +Erich +Esequiel +Gabino +Hunter +Jabari +Jacinto +Jefferson +Jeramy +Jered +Jerod +Jessica +Jody +Kao +Kareem +Kendrick +Korey +Marcello +Orion +Osbaldo +Oswaldo +Raymon +Salomon +Sherman +Silas +Tommie +Trever +Ubaldo +Viet +Will +Amit +Andreas +Bart +Bennie +Buddy +Carlton +Charley +Cornelius +Duy +Franco +Gildardo +Gregg +Hernan +Hubert +Jacques +Jamison +Jean +Jedediah +Jessy +Lazaro +Lowell +Malik +Mauro +Nathanial +Otis +Patricio +Riley +Rufus +Sasha +Scotty +Skylar +Vince +Wilbert +Zachery +Zane +Archie +Artemio +Asa +Brenton +Britton +Cecilio +Conrado +Dagoberto +Davin +Demetrio +Earnest +Florentino +Irving +Jelani +Junior +Kai +Kenji +Keven +Leobardo +Luther +Mack +Malcolm +Matt +Michel +Mickey +Miguelangel +Mohammad +Mohammed +Monty +Nathen +Nigel +Parker +Phong +Reed +Rickie +Rico +Samson +Sarah +Servando +Simeon +Sylvester +Veronica +Vito +Antony +Bert +Brandan +Bruno +Ceasar +Danial +Danilo +Dat +Davis +Dereck +Donta +Duncan +Ellis +Emerson +Enrigue +Hugh +Khalil +Lars +Lauren +Maximiliano +Morris +Nam +Omari +Paris +Prince +Rami +Reymundo +Romeo +Rudolfo +Scot +Stevie +Trung +Wallace +Ahmed +Amado +Armand +Asher +August +Bjorn +Bo +Brant +Brenden +Brennan +Brook +Buck +Chase +Chistopher +Darwin +Deric +Drake +Eddy +Edmundo +Elizabeth +Elvin +Ervin +Feliciano +Florencio +Fredy +Giancarlo +Jacobo +Jakob +Jaron +Jeramiah +Jeramie +Jerardo +Jerimiah +Juston +Lane +Lindsey +Lukas +Marcell +Nehemiah +Otto +Ramsey +Rodger +Roosevelt +Rosario +Sarkis +Son +Timmy +Vu +Andrea +Apolinar +Apollo +Aram +Baltazar +Bernabe +Boris +Camilo +Candelario +Chadwick +Chance +Chauncey +Connor +Dalton +Delbert +Dirk +Donell +Dung +Elbert +Eugenio +Garth +Geronimo +Hank +Harlan +Hassan +Hipolito +Hoang +Isai +Jamil +Jeffry +Jereme +Jeremey +Jonpaul +Jordon +Justen +Juvenal +Kenyon +Laron +Lynn +Marion +Michelle +Misael +Monte +Oren +Percy +Phuong +Porfirio +Richardo +Robby +Ronny +Roque +Rosalio +Sandra +Teodoro +Vincente +Zackary +Adrien +Akil +Al +Anson +Antione +Arash +Arlen +Armen +Babak +Benedict +Bob +Braulio +Chaz +Curt +Daneil +Dashawn +Dionicio +Edgard +Eladio +Enoch +Erasmo +Favian +Garrick +Gaspar +Gerson +Isreal +Jade +Jameel +Jarret +Jayme +Jericho +Johathan +Justino +Kamal +Kennith +Keyon +Lenard +Linh +Marcial +Michale +Mikel +Milo +Muhammad +Nima +Quan +Quinton +Rishi +Romel +Rueben +San +Sanjay +Sharif +Shayne +Sky +Stephanie +Titus +Valentino +Vishal +Whitney +Willard +Young +Alain +Alphonso +Amos +Anwar +Aric +Art +Axel +Bernie +Brenda +Burt +Camron +Chet +Cheyenne +Cheyne +Chuck +Claudia +Cliff +Cullen +Cuong +Dameon +Darian +Dejuan +Deshaun +Elan +Eliazar +Eliezer +Emmett +Evaristo +Francesco +Gil +Grady +Hai +Harrison +Homer +Jamin +Jarad +Jeanpaul +Jerman +Job +Johan +Jovon +Juancarlos +Julien +Jun +Kaleb +Kelley +Kelsey +Kirby +Kristin +Lam +Lisandro +Lorne +Manny +Marlin +Marquise +Matias +Merlin +Mohamed +Monica +Nai +Nancy +Napoleon +Narciso +Nels +Nicole +Nils +Paolo +Quintin +Rodrick +Russel +Sandy +Sesar +Shad +Shant +Silverio +Sixto +Thien +Thong +Tiffany +Tremaine +Tung +Vaughn +Westley +Adriel +Amber +Anibal +Antone +Arian +Augustin +Bennett +Binh +Boyd +Brice +Burton +Cal +Carmelo +Carter +Catarino +Christofer +Christophe +Cipriano +Cooper +Corry +Cresencio +Crispin +Cyril +Davey +Denise +Denver +Eldon +Eusebio +Forest +Giuseppe +Homero +Imran +Isiah +Isidoro +Jameson +Jarrad +Javon +Jeb +Jermel +Jermey +Jeronimo +Jessi +Jevon +Joao +Josedejesus +Judah +Kalen +Kameron +Khalid +Lavell +Leandro +Lenny +Lupe +Malachi +Markanthony +Maximino +Maximo +Melissa +Mervin +Miquel +Nader +Nikolaus +Nolberto +Olegario +Phil +Philippe +Phu +Rajesh +Rasheed +Rigo +Roel +Rommel +Rosa +Rustin +Samir +Serafin +Shelby +Skye +Stevan +Tam +Tamir +Thai +Tino +Torrey +Tri +Tye +Tyrel +Valentine +Willy +Yuri +Abe +Abelardo +Ajay +Alireza +Amar +Arnel +Aubrey +Augustus +Austen +Bao +Basil +Baudelio +Bee +Benigno +Benjamen +Blanca +Brannon +Brien +Carmen +Carnell +Cassidy +Cedrick +Celso +Christina +Cindy +Clarke +Clement +Conan +Cornell +Dandre +Daron +Davion +Dayton +Deonte +Derrek +Derrell +Doyle +Edson +Ehren +Elisha +Enrico +Ephraim +Errol +Fidencio +Fransico +Gerry +Greggory +Gustabo +Horace +Iain +Isabel +Jabier +Janet +Jarvis +Jaysen +Jerel +Jerell +Jermain +Jerold +Jerrad +Jerrell +Johnmichael +Jovani +Justine +Justus +Kahlil +Kane +Karim +Kevan +Khang +Kong +Kou +Laura +Leigh +Lennon +Liliana +Luigi +Marcellus +Marlo +Mateo +Maximilian +My +Natividad +Nicky +Obed +Patricia +Paulino +Pheng +Raffi +Raheem +Ravi +Renee +Rowland +Ruperto +Sal +Samual +Sang +Shelton +Shomari +Shon +Silvestre +Skip +Stacy +Tarek +Tito +Tory +Tucker +Tyron +Valente +Vincenzo +Williams +Abrahan +Adolph +Adrain +Akira +Alejandra +Alfonzo +Alicia +Allyn +Amy +Ana +Anastacio +Andrae +Angelica +Anh +Anselmo +Antwan +Armondo +Arthuro +Artis +Ascencion +Audel +Augusto +Bakari +Barney +Baron +Basilio +Blas +Brandin +Brody +Cade +Cain +Cavan +Ceferino +Cezar +Chadd +Che +Chi +Chirstopher +Ciro +Constantino +Corbin +Cuauhtemoc +Dajuan +Dannie +Darron +Dejon +Delfino +Demond +Deondre +Deron +Dewey +Diana +Domenic +Donato +Duc +Duke +Duriel +Eberardo +Edan +Eden +Edison +Elton +Ely +Emery +Emile +Epifanio +Faisal +Fortino +Francois +Franklyn +Gamaliel +Garen +Garland +Garo +Gavino +Gillermo +Godfrey +Gonsalo +Gus +Habib +Harmon +Hiram +Irineo +Ishmael +Jai +Jamel +Jeron +Jerrold +Jestin +Johannes +Johnie +Juanmanuel +Jude +Judson +Julie +Kalin +Keon +Kieran +Kimberly +King +Kip +Lemar +Leovardo +Liam +Lincoln +Lorena +Mandeep +Marcoantonio +Marko +Maximillian +Michaelangelo +Mikael +Modesto +Mustafa +Nevin +Nicolaus +Nikhil +Niles +Nino +Ollie +Omid +Oracio +Pao +Quoc +Ranulfo +Raoul +Rashaad +Raudel +Refujio +Reinaldo +Reno +Rian +Salim +Seneca +Sevag +Shay +Sherwin +Shiloh +Silvio +Stan +Sunny +Sydney +Tai +Taj +Tate +Thang +Theron +Tien +Timmothy +Tj +Trayvon +Trevon +Tyree +Unknown +Vladimir +Walker +Wally +West +Wilfred +Ygnacio +Zackery +Ace +Aidan +Albaro +Albino +Alexandre +Alexi +Alon +Amanda +Ambrose +Ameer +Amilcar +An +Anders +Anderson +Andrey +Anival +Ankur +Anthoney +Antwon +Apolonio +Ara +Araceli +Arcadio +Arik +Aris +Arlo +Arnaldo +Arvin +Ashraf +Ashton +Asim +Aundre +Barbara +Barron +Bejamin +Benton +Bijan +Bobak +Bobbie +Bodie +Brando +Brandyn +Britt +Broderick +Brooke +Bud +Carey +Cha +Christen +Chung +Cleveland +Coby +Coleman +Constantine +Cosme +Damone +Dani +Danniel +Darcy +Darien +Davy +Dawayne +Delvon +Derwin +Deven +Dietrich +Dimitri +Donavan +Dontay +Dru +Dujuan +Dusten +Ector +Edilberto +Eduard +Efrem +Elgin +Elie +Eliot +Elpidio +Emigdio +Erika +Eron +Esau +Favio +Felton +Fong +Frederic +Gareth +Garren +Geno +Gerad +Geraldo +Germain +Gerrod +Gideon +Gilverto +Giovani +Gumaro +Hamed +Hao +Harris +Hasan +Hayden +Heber +Herminio +Herschel +Hieu +Hoa +Hollis +Houston +Iban +Ibrahim +Jacoby +Jacque +Jame +Jamey +Jamon +Jashua +Jaspreet +Jasun +Jaun +Jeanpierre +Jerame +Jerimy +Jerrid +Jessey +Jonthan +Jorel +Jorell +Joshuah +Jovanni +Jovany +Juanito +Juanjose +Julia +Justice +Juventino +Kale +Kalvin +Kamron +Karina +Katherine +Kavin +Kayvon +Kenton +Khai +Khanh +Khoa +Khoi +Kody +Kristofor +Lafayette +Lavar +Lavelle +Layne +Layton +Librado +Loc +Lon +Lorin +Lucien +Lucky +Lue +Luz +Macario +Man +Marisol +Mathias +Mayra +Melchor +Micahel +Michele +Mikhail +Mitch +Mitchel +Monroe +Moshe +Murray +Nareg +Navid +Ned +Nereida +Nguyen +Nickolaus +Nile +Omero +Onofre +Parrish +Payam +Peyton +Phi +Phillipe +Rahsaan +Rainier +Rajiv +Raleigh +Randell +Reagan +Reese +Reza +Rhyan +Richie +Ritchie +Rito +Rocio +Rod +Rolland +Ronnell +Royal +Ryann +Ryo +Sage +Sameer +Sandro +Santo +Sara +Schuyler +Scottie +Seamus +Seanpaul +Seferino +Severo +Sierra +Sigifredo +Sione +Sonia +Soren +Sten +Susana +Tad +Tariq +Terell +Terrill +Tevita +Theadore +Toan +Tobin +Tod +Tosh +Travion +Tristen +Tyrome +Ulices +Ulyses +Urbano +Val +Vanessa +Venancio +Ventura +Virgilio +Wayland +Wendy +Wiley +Yousef +Zebulon +Zechariah +Zenon +Michael +Christopher +David +Daniel +Matthew +Robert +Jason +Joshua +James +John +Ryan +Jose +Joseph +Brian +Justin +Anthony +Jonathan +Andrew +Richard +Nicholas +Eric +Steven +William +Brandon +Kevin +Juan +Adam +Jeffrey +Aaron +Thomas +Timothy +Sean +Mark +Paul +Scott +Jesse +Carlos +Jeremy +Benjamin +Luis +Miguel +Jesus +Charles +Jacob +Patrick +Gregory +Bryan +Kenneth +Nathan +Stephen +Jorge +Gabriel +Travis +Victor +Ricardo +Kyle +Edward +Alexander +Manuel +Samuel +Mario +Dustin +Francisco +Alejandro +Peter +Raymond +Roberto +Antonio +Erik +Christian +Frank +George +Shawn +Ronald +Jared +Adrian +Derek +Joel +Oscar +Fernando +Ruben +Vincent +Chad +Sergio +Hector +Ian +Jaime +Donald +Javier +Phillip +Keith +Raul +Eduardo +Tyler +Martin +Armando +Zachary +Cesar +Salvador +Jordan +Brett +Alex +Marcus +Rafael +Gary +Evan +Bradley +Pedro +Douglas +Angel +Philip +Alberto +Shaun +Danny +Johnny +Casey +Nathaniel +Arturo +Ramon +Omar +Shane +Larry +Randy +Dennis +Henry +Albert +Jeremiah +Gerardo +Tony +Edgar +Russell +Arthur +Ivan +Brent +Alan +Alfredo +Andres +Enrique +Ernesto +Marco +Jimmy +Joe +Isaac +Trevor +Andre +Steve +Jeffery +Craig +Jerry +Todd +Julio +Cory +Wesley +Blake +Kristopher +Garrett +Cameron +Cody +Marc +Curtis +Lawrence +Noah +Rene +Derrick +Gilbert +Gustavo +Marcos +Rodolfo +Mathew +Colin +Carl +Seth +Corey +Roger +Rudy +Nicolas +Allen +Erick +Bobby +Louis +Ricky +Troy +Lucas +Jack +Julian +Darren +Alfonso +Abraham +Dominic +Eddie +Austin +Jon +Roy +Guillermo +Hugo +Luke +Edwin +Abel +Pablo +Ernest +Walter +Jonathon +Jessie +Johnathan +Lance +Rodney +Gerald +Israel +Emmanuel +Devin +Lee +Mitchell +Geoffrey +Ismael +Brendan +Clinton +Leonard +Andy +Maurice +Rogelio +Saul +Alfred +Billy +Felipe +Gilberto +Eugene +Grant +Randall +Esteban +Jay +Micheal +Ralph +Bruce +Wayne +Moises +Bret +Terry +Tommy +Caleb +Jerome +Spencer +Ray +Clayton +Rigoberto +Jamie +Neil +Willie +Glenn +Ronnie +Morgan +Calvin +Marvin +Taylor +Micah +Theodore +Ramiro +Damien +Noe +Darrell +Frederick +Lorenzo +Orlando +Tyrone +Rodrigo +Noel +Branden +Clifford +Felix +Kelly +Elias +Fabian +Jarrod +Jermaine +Josue +Leonardo +Diego +Ross +Kurt +Dale +Joey +Stanley +Ethan +Alvaro +Reginald +Alvin +Dean +Levi +Vicente +Alexis +Darryl +Drew +Dylan +Ignacio +Rolando +Logan +Rory +Santiago +Brad +Joaquin +Melvin +Bryce +Cristian +Agustin +Humberto +Mauricio +Adan +Nelson +Guadalupe +Jake +Karl +Roman +Elijah +Harold +Tristan +Angelo +Beau +Franklin +Mike +Tomas +Damian +Rick +Max +Tyson +Don +Leo +Marshall +Simon +Byron +Oliver +Barry +Daryl +Kirk +Marlon +Warren +Efrain +Francis +Freddy +Jayson +Chase +Cole +Dante +Kellen +Nickolas +Terrence +Adolfo +Emilio +Louie +Nolan +Octavio +Rocky +Isaiah +Damon +Dwayne +Leon +Preston +Allan +Miles +Jamal +Bryant +Devon +Emanuel +Howard +Kenny +Loren +Robin +Freddie +Aldo +Clint +Moses +Norman +Eli +Gavin +Gordon +Jeff +Leonel +Duane +Glen +Jamaal +Chris +Elliott +Gregorio +Xavier +Antoine +Jim +Kent +Lloyd +Dana +Efren +Fred +Gonzalo +Terrance +Dario +Earl +Osvaldo +Bradford +Frankie +Graham +Reynaldo +Stuart +Vernon +Forrest +Charlie +Deandre +Heriberto +Leroy +Rickey +Sebastian +Cedric +Clifton +Collin +Fidel +Giovanni +Johnnie +Kristofer +Maria +Shannon +Terrell +Arnold +Bernard +Elliot +Jess +Lamar +Ben +Ernie +German +Isidro +Jamar +Johnathon +Roland +Herman +Lonnie +Nathanael +Neal +Santos +Ali +Ariel +Pierre +Stephan +Alonzo +Benny +Bernardo +Jackson +Jimmie +Josiah +Nick +Benito +Dan +Jarod +Leslie +Milton +Aron +Ashley +Bill +Darnell +Ezequiel +Randolph +Dwight +Hans +Harry +Pete +Raymundo +Ted +Clarence +Fredrick +Greg +Tom +Colby +Everett +Genaro +Gene +Herbert +Kelvin +Landon +Lewis +Roderick +Ron +Sonny +Ty +Uriel +Estevan +Guy +Huy +Kristian +Sam +Wilson +Cristobal +Demetrius +Donovan +Joseluis +Lester +Wade +Zachariah +Alonso +Amir +Clark +Federico +Jarrett +Marcelino +Marquis +Trenton +Aurelio +Dallas +Heath +Jasen +Marques +Maxwell +Nestor +Cruz +Eliseo +Erich +Kurtis +Long +Solomon +Carlo +Darin +Everardo +Jovan +Julius +Courtney +Deon +Edmund +Erin +Hung +Jairo +Tracy +Tuan +Brady +Brenton +Chester +Dane +Edwardo +Floyd +Gerard +Jan +Mason +Reuben +Rudolph +Sammy +Stefan +Stewart +Anton +Brain +Brenden +Derick +Desmond +Eder +Gino +Kory +Lamont +Leopoldo +Oswaldo +Reed +Terence +Toby +Bryon +Conor +Conrad +Domingo +Donte +Dorian +Kristoffer +Lionel +Marcel +Mariano +Owen +Perry +Rex +Gorge +Migel +Quincy +Robbie +Virgil +Bradly +Davis +Dominick +Jerad +Jonah +Keenan +Kerry +Mauro +Valentin +Alec +Denny +Donnie +Elvis +Isaias +Jackie +Johnson +Minh +Quinn +Royce +Viet +Ari +Brendon +Darius +Garret +Hilario +Horacio +Jessica +Leif +Nicholaus +Paulo +Sterling +Trent +Zane +Alexandro +Arnulfo +Blaine +Darrin +Leland +Nikolas +Norberto +Parker +Raphael +Reyes +Rusty +Skyler +Tim +Ulysses +Wyatt +Abram +Ahmad +Arnoldo +Brooks +Cecil +Clay +Dewayne +Dion +Garry +Jarred +Jerrod +Johnpaul +Juancarlos +Mohammad +Myles +Osbaldo +Otis +Rosendo +Trinidad +Weston +Ahmed +Augustine +Cary +Dave +Donny +Eloy +Erwin +Fausto +Flavio +Fransisco +Harrison +Hunter +Issac +Jerardo +Jorje +Ken +Malcolm +Marcelo +Rashad +Reymundo +Ulises +Wilfredo +Amado +Barrett +Clyde +Danilo +Dillon +Eddy +Edgardo +Elmer +Ezra +Harley +Junior +Luciano +Scotty +Tanner +Vidal +Vincente +Antwan +Archie +Blair +Braden +Carson +Daren +Jean +Jerod +Josef +Margarito +Nathanial +Quentin +Reggie +Rey +Rojelio +Russel +Sidney +Thanh +Vanessa +Zackary +Anibal +Carlton +Chaz +Danial +Duncan +Emiliano +Ezekiel +Jerald +Jody +Lazaro +Liam +Lyle +Markus +Myron +Ramsey +Randal +Robby +Sandra +Sylvester +Amit +Arash +Cuong +Dominique +Donnell +Dusty +Edmond +Eriberto +Filiberto +Galen +Jennifer +Jonas +Kasey +Keegan +Keven +Mohammed +Reid +Rommel +Samir +Tobias +Alton +Avery +Ceasar +Colt +Cyrus +Damion +Darrel +Dexter +Earnest +Edmundo +Eugenio +Jamison +Jedidiah +Jeramy +Laura +Laurence +Lenny +Marty +Nam +Rico +Salvatore +Sheldon +Teddy +Tory +Vito +Andreas +Antony +Armand +Armen +Arron +Bennett +Brandan +Cristopher +Darwin +Davon +Demetrio +Dung +Fermin +Florencio +Hubert +Ira +Kareem +Kenji +Kim +Kris +Lauren +Marion +Michelle +Miguelangel +Sarah +Shant +Vu +Wendell +Adalberto +Anselmo +Asa +Baltazar +Brice +Brock +Chance +Cliff +Colton +Duy +Edson +Elisha +Elizabeth +Esequiel +Faustino +Garett +Gregg +Harvey +Hugh +Jaron +Jered +Josh +Kai +Kendall +Kiel +Lincoln +Lucio +Melissa +Mikel +Orion +Phong +Quoc +Refugio +Romeo +Scot +Shayne +Shea +Skylar +Tou +Travon +Tyrell +Valentino +Abran +Brennan +Bruno +Buck +Cecilio +Cheyne +Christoper +Davin +Dereck +Dontae +Garrick +Garth +Hoang +Jabari +Jameson +Jamin +Jefferey +Joesph +Johathan +Kendrick +Leobardo +Lindsey +Lino +Luther +Marcial +Michel +Mitchel +Paris +Porfirio +Quang +Renee +Rhett +Riley +Samson +Skye +Veronica +Wallace +Wilbert +Abelardo +Adrien +Amanda +Aram +Aric +August +Bee +Claudio +Connor +Cornelius +Dandre +Daron +Diana +Elvin +Ervin +Evelyn +Forest +Fredy +Ishmael +Jacques +Jamil +Jarad +Jed +Jeremey +Jeromy +Jessy +Justen +Markanthony +Martel +Martell +Micahel +Mohamed +Monica +Morris +Nancy +Nigel +Nima +Otto +Pascual +Patricio +Roque +Shelby +Sherman +Sky +Son +Taurean +Uriah +Vance +Vaughn +Vince +Whitney +Willis +Winston +Anderson +Anthoney +Ashton +Brannon +Buddy +Christina +Claude +Claudia +Coleman +Curt +Derik +Deshawn +Dino +Emmett +Feliciano +Gareth +Gian +Giancarlo +Hassan +Jasper +Jefferson +Jordon +Jovany +Juvenal +Kaleb +Kalen +Kao +Luiz +Monte +Prince +Quintin +Quinton +Rodger +Sandro +Santino +Silvestre +Tam +Teodoro +Thaddeus +Thang +Timmy +Trever +Vinh +Will +Adonis +Al +Alain +Apollo +Bennie +Brandyn +Britton +Bryson +Carter +Chadwick +Cooper +Dajuan +Dang +Darron +Dat +Eleazar +Emerson +Errol +Florentino +Franco +Garland +Gerry +Gil +Hernan +Hoa +Ivory +Jacobo +Jeanpaul +Jensen +Jeramie +Kennith +Kenton +Khalid +Lindsay +Marcell +Michale +Mickey +Patricia +Raffi +Renato +Rian +Ronny +Rosa +Rosario +Tan +Titus +Tyron +Adriana +Alejandra +Amador +Amos +Antwon +Art +Artemio +Bart +Bernabe +Bjorn +Bo +Bob +Brandt +Cain +Cedrick +Clemente +Dalton +Dejuan +Delbert +Devan +Dimitri +Dirk +Eliot +Emil +Erasmo +Gerson +Hayden +Ibrahim +Imran +Javon +Jedediah +Jerimiah +Jessi +Judson +Juventino +Kelsey +Kenyon +Keyon +Lamarr +Lars +Lavelle +Leigh +Lupe +Mack +Marcello +Marko +Matt +Megan +Milan +Monty +Muhammad +Napoleon +Nehemiah +Nikolaus +Niles +Philippe +Phu +Raudel +Richardo +Rosalio +Rueben +Sabino +Sameer +Sanjay +Seng +Stevie +Tien +Tino +Tito +Toan +Tyree +Tyrel +Van +Westley +Zackery +Abdul +Adriel +An +Angela +Angelica +Anh +Antone +Anwar +Aubrey +Baldemar +Binh +Caesar +Cale +Carey +Chadd +Chauncey +Cornell +Dagoberto +Delfino +Deron +Derrell +Dionicio +Donavan +Duc +Edgard +Elbert +Elson +Enrigue +Erica +Favian +Fidencio +Gamaliel +Geronimo +Grayson +Harlan +Homero +Irvin +Irving +Jakob +Jayme +Jeffry +Jelani +Jeremie +Jerrold +Johan +Johann +Johannes +Joseantonio +Josemanuel +Jules +Katherine +Kc +Kevan +Kristofor +Lauro +Lemar +Lemuel +Levon +Loc +Luisalberto +Marin +Misael +Mohamad +Ned +Nicky +Nicole +Omid +Phuc +Rachel +Randell +Rasheed +Ravi +Raymon +Regino +Remy +Rudolfo +Salomon +Sasha +Schuyler +Serjio +Sharif +Silas +Tai +Tommie +Wes +Wilfred +Abrahan +Alden +Asher +Avi +Axel +Basilio +Baudelio +Blas +Brant +Braulio +Brook +Camilo +Candelario +Candido +Carmelo +Chasen +Christofer +Chung +Cirilo +Crystal +Darrick +Daryn +Demarcus +Denis +Deric +Deshon +Ean +Eliazar +Ellis +Elton +Ely +Emile +Emily +Enrico +Ephraim +Eran +Fletcher +Fortino +Gerrit +Gideon +Gildardo +Greggory +Hagop +Hai +Hasan +Hieu +Jace +Jarvis +Jeramiah +Jevon +Job +Johnmichael +Joshuah +Jospeh +Justo +Justyn +Kane +Karen +Khalil +Khanh +Kieran +Kip +Laron +Lavell +Leandro +Lenard +Lonny +Lorin +Macario +Malik +Marquise +Martha +Matias +Maximino +Nathen +Natividad +Nicanor +Nickolaus +Norbert +Omari +Oren +Pheng +Ramin +Raoul +Rebecca +Rocco +Roosevelt +Serafin +Silvano +Stacy +Stephanie +Trung +Tye +Valentine +Vijay +Wilbur +Willard +Ysidro +Abdullah +Ajay +Alegandro +Alessandro +Alicia +Alphonso +Andrae +Andree +Andrei +Apolinar +Arik +Armondo +Augustin +Bao +Barney +Barret +Barton +Basil +Benedict +Bijan +Billie +Bj +Blanca +Boris +Boyd +Carmen +Chandler +Chet +Christophe +Corbin +Cortney +Cristina +Dameon +Daneil +Dashawn +Daven +Delvon +Demetri +Domenic +Dominik +Doyle +Eden +Eladio +Eliezer +Emery +Enedino +Erika +Esau +Gavino +Gerad +Germain +Gianni +Grady +Harout +Harris +Herminio +Hipolito +Hong +Houston +Isacc +Isreal +Jacinto +Jame +Jamieson +Jarett +Jerel +Jereme +Jerrad +Jorel +Jory +Juanluis +Jude +Justine +Karina +Kelley +Keon +Kong +Korey +Kristin +Lafayette +Lam +Lane +Lucien +Lukas +Luz +Malachi +Mateo +Mayra +Milo +Min +Ming +Modesto +Mychal +Nabil +Nguyen +Obed +Otoniel +Paolo +Pascal +Percy +Phuong +Rafeal +Rakesh +Rami +Rashaad +Rashid +Reza +Rickie +Rito +Rodrick +Rolland +Romel +Roscoe +Russ +Ryann +Ryon +Saman +Sandy +Sarkis +Scottie +Servando +Shad +Shay +Sherwin +Sigifredo +Sione +Stephon +Sunil +Thai +Toney +Tucker +Ubaldo +Valente +Vartan +Vicent +Victoriano +Vishal +Wesly +Yancy +Yesenia +Zachery +Abner +Albaro +Alexandre +Allyn +Ameer +Ana +Anand +Anil +Anson +Antonia +Antonie +Arman +Austen +Belen +Benigno +Benson +Benton +Bernardino +Brenda +Bronson +Byran +Camron +Carla +Cassidy +Chistopher +Chong +Christoher +Chuck +Clement +Cosme +Coy +Crispin +Cynthia +Dabid +Darian +Dawayne +Deanthony +Denver +Deonte +Derrek +Derrik +Deshaun +Dominque +Dong +Doron +Duke +Duong +Dwain +Elan +Eldridge +Eliasar +Enoch +Eusebio +Farid +Ferdinand +Franklyn +Franky +Fransico +Fredi +Gabriela +Garo +Giuseppe +Griffin +Gualberto +Han +Harpreet +Homar +Horace +Isiah +Jacque +Jade +Jameel +Jamel +Janet +Jaret +Jarrad +Jarrell +Jarret +Jasson +Jaysen +Jeanpierre +Jermiah +Jerrell +Jin +Joan +Jonatha +Jonmichael +Jonpaul +Juanmanuel +Judah +Juston +Kalvin +Kameron +Karim +Karlos +Kellan +Kennth +Kenyatta +Kerwin +Khaled +Khoi +Khristopher +Kimberly +Kou +Kraig +Leighton +Leonidas +Leticia +Lisandro +Lorena +Lyndon +Maribel +Markel +Marlo +Maurilio +Merlin +Michele +Mikael +Mitch +Nader +Narciso +Nghia +Nikolai +Norma +Norris +Odell +Omero +Orville +Phil +Pilar +Quy +Raheem +Raman +Ramil +Raynard +Reece +Reinaldo +Rishi +Roel +Rohit +Sal +Samer +Sami +Sanford +Satoshi +Seamus +Semaj +Sesar +Shandon +Shelton +Shiloh +Shon +Smith +Sundeep +Syed +Taj +Taran +Tariq +Teresa +Thong +Timmothy +Tin +Torey +Torrey +Trayvon +Tremayne +Trevon +Tu +Va +Vang +Walker +Waylon +Wilmer +Wm +Yoshio +Young +Yuji +Adrain +Agustine +Aidan +Alexei +Alma +Alverto +Ambrose +Andrey +Angus +Antione +Antonino +Araceli +Arian +Arie +Aristeo +Arlen +Armond +Arnie +Arthuro +Arun +Arya +Aureliano +Avraham +Babak +Baby +Baldomero +Baron +Barron +Benjamen +Bernie +Bradlee +Brien +Broderick +Bud +Bulmaro +Calixto +Carlin +Celso +Charley +Charlton +Che +Christos +Cleveland +Conan +Connie +Conrado +Constantine +Cuauhtemoc +Cullen +Custodio +Cyril +Dakota +Damen +Dani +Danielle +Darell +Dashiell +Dax +Deangelo +Delano +Demario +Dijon +Dimitrios +Domonic +Donell +Donta +Doran +Douglass +Duran +Ector +Edilberto +Edison +Efrem +Ehren +Elio +Ellery +Elon +Esmeralda +Estanislao +Ever +Fong +Foster +Gabino +Gardner +Garren +Gaspar +Gaston +Geary +Geoffery +Geraldo +Germaine +Gerrad +Gloria +Griselda +Gustabo +Habib +Hakim +Hamed +Herberth +Hermes +Hiram +Hisham +Iain +Iran +Isac +Jacory +Jacqueline +Jahi +Jajuan +Jamall +Jamarr +Janson +Jenaro +Jeoffrey +Jerame +Jermel +Jeronimo +Jerred +Jerrid +Jerron +Jomar +Jonathen +Josha +Jourdan +Jovon +Joy +Jr +Julia +Kahlil +Kamran +Kha +Khoa +Kin +Kipp +Kristen +Laquan +Layne +Layton +Leandre +Linh +Lowell +Loyd +Lucky +Mahmoud +Man +Manny +Manpreet +Marcoantonio +Marlin +Marshal +Marta +Mary +Maximo +Meng +Mervin +Michal +Mikal +Millard +Miquel +Montgomery +Moshe +Murray +Mustafa +My +Nash +Nathaneal +Neftali +Nhan +Nicholos +Nikola +Nils +Nino +Nolberto +Onesimo +Oracio +Osualdo +Otilio +Ozzie +Paulmichael +Pedram +Phi +Quan +Ramses +Ramy +Rashawn +Raymund +Regan +Ricard +Richie +Rj +Rob +Rodel +Rufus +Rustin +Ryen +Rylan +Sage +Sammuel +San +Sandeep +Santana +Sara +Shamar +Sharon +Sher +Simeon +Sixto +Skip +Sol +Stevan +Sun +Sunny +Susana +Tamer +Tarek +Tarik +Terance +Terrill +Thao +Theron +Thor +Thuan +Tobin +Torin +Traveon +Tremaine +Tri +Triston +Tylor +Tynan +Vladimir +Wayland +Wilhelm +Yair +Zion +Michael +Christopher +David +Daniel +Matthew +Robert +Jason +Ryan +Joshua +Joseph +James +John +Jose +Brian +Andrew +Anthony +Jonathan +Justin +Eric +Nicholas +Steven +Richard +Brandon +William +Adam +Kevin +Jeffrey +Juan +Aaron +Sean +Thomas +Timothy +Mark +Paul +Kyle +Benjamin +Scott +Jeremy +Jesse +Carlos +Travis +Jacob +Patrick +Luis +Stephen +Charles +Jesus +Gregory +Bryan +Kenneth +Miguel +Nathan +Gabriel +Victor +Alexander +Manuel +Ricardo +Edward +Jorge +Dustin +Francisco +Peter +Samuel +Alejandro +Mario +Raymond +Erik +Derek +Antonio +Adrian +Joel +Ruben +Christian +Roberto +Tyler +Oscar +Frank +Ian +Zachary +Jared +Javier +George +Ronald +Sergio +Fernando +Vincent +Donald +Marcus +Jaime +Hector +Shawn +Phillip +Raul +Chad +Martin +Jordan +Evan +Keith +Armando +Eduardo +Bradley +Gary +Cesar +Edgar +Brett +Angel +Alberto +Danny +Douglas +Johnny +Philip +Salvador +Gerardo +Alex +Henry +Arturo +Rafael +Nathaniel +Tony +Dennis +Omar +Pedro +Rene +Ramon +Albert +Casey +Andres +Alan +Shane +Randy +Arthur +Enrique +Ernesto +Ivan +Jimmy +Trevor +Jeremiah +Todd +Steve +Craig +Alfredo +Cory +Joe +Jeffery +Shaun +Marco +Garrett +Isaac +Russell +Jerry +Larry +Cody +Brent +Blake +Andre +Cameron +Wesley +Julio +Devin +Marc +Luke +Austin +Gilbert +Bobby +Lawrence +Mathew +Curtis +Corey +Kristopher +Jack +Derrick +Allen +Erick +Louis +Troy +Darren +Carl +Marcos +Gustavo +Ricky +Nicolas +Roger +Seth +Eddie +Edwin +Grant +Rodolfo +Noah +Guillermo +Julian +Alfonso +Rudy +Abraham +Walter +Johnathan +Abel +Randall +Dominic +Felipe +Israel +Jessie +Micheal +Lance +Jon +Colin +Emmanuel +Lee +Lucas +Neil +Andy +Saul +Ismael +Pablo +Ernest +Hugo +Roy +Brendan +Billy +Chase +Geoffrey +Terry +Drew +Leonard +Mitchell +Spencer +Jonathon +Wayne +Moises +Rolando +Gilberto +Jay +Marvin +Eugene +Gerald +Taylor +Clayton +Orlando +Rogelio +Maurice +Alfred +Clinton +Ramiro +Rodney +Esteban +Frederick +Theodore +Caleb +Diego +Ralph +Josue +Lorenzo +Rigoberto +Dylan +Micah +Ignacio +Bruce +Darrell +Jerome +Willie +Cole +Branden +Elias +Glenn +Bryce +Jamie +Nelson +Morgan +Tommy +Calvin +Ronnie +Kelly +Tyrone +Fabian +Rodrigo +Damian +Damien +Efrain +Jermaine +Byron +Jarrod +Tristan +Dane +Vicente +Humberto +Joaquin +Alvaro +Karl +Reginald +Roman +Dean +Logan +Angelo +Clifford +Darryl +Kenny +Warren +Alexis +Jake +Ray +Adan +Dale +Felix +Cristian +Elliott +Guadalupe +Max +Noel +Oliver +Stanley +Kurt +Tomas +Ethan +Francis +Nickolas +Ross +Allan +Brad +Elijah +Noe +Santiago +Agustin +Isaiah +Moses +Marshall +Elliot +Fred +Simon +Leonardo +Rory +Emanuel +Howard +Chris +Daryl +Joey +Robin +Damon +Levi +Mauricio +Mike +Osvaldo +Alvin +Barry +Collin +Freddy +Tyson +Gavin +Harold +Kirk +Ashley +Devon +Loren +Don +Dwayne +Earl +Bryant +Leon +Melvin +Rick +Eli +Roland +Kellen +Marlon +Jim +Stephan +Beau +Giovanni +Norman +Preston +Stuart +Nolan +Terrance +Bret +Dan +German +Rocky +Clarence +Emilio +Octavio +Terrence +Xavier +Adolfo +Jamaal +Sam +Glen +Lamar +Leonel +Efren +Neal +Vernon +Deandre +Herbert +Josiah +Miles +Franklin +Kent +Louie +Terrell +Clint +Colby +Gonzalo +Harry +Jayson +Jeff +Pierre +Santos +Bernard +Charlie +Dana +Dante +Darnell +Raymundo +Reynaldo +Ali +Derick +Freddie +Jackson +Jamal +Leo +Alonzo +Frankie +Gordon +Graham +Johnathon +Julius +Amir +Landon +Rickey +Ernie +Lloyd +Shannon +Aurelio +Fidel +Gene +Kristofer +Antoine +Bill +Herman +Ariel +Carlo +Kelvin +Lewis +Marcel +Bernardo +Dario +Donte +Isidro +Jess +Kurtis +Tom +Wilson +Aron +Federico +Guy +Aldo +Alexandro +Ben +Benito +Clifton +Demetrius +Dwight +Estevan +Greg +Heath +Pete +Zachariah +Donovan +Duane +Jameson +Lonnie +Marquis +Perry +Randolph +Wade +Arnold +Benny +Bradford +Darrin +Gregorio +Heriberto +Jarred +Reuben +Rudolph +Sonny +Uriel +Marques +Roderick +Valentin +Barrett +Conrad +Isaias +Lionel +Mariano +Sammy +Brady +Dallas +Dorian +Everett +Forrest +Garret +Genaro +Leopoldo +Maria +Maxwell +Milton +Sebastian +Courtney +Fredrick +Kory +Lester +Owen +Dominique +Joseluis +Kiel +Leslie +Long +Weston +Brendon +Cedric +Cristobal +Edwardo +Ezequiel +Huy +Nathanael +Blair +Cristopher +Darin +Eliseo +Johnson +Jonah +Lyle +Sheldon +Ted +Bryon +Carson +Conor +Cruz +Eriberto +Erin +Everardo +Gerard +Mohammad +Nick +Tracy +Trent +Denny +Issac +Jairo +Jamar +Jennifer +Johnnie +Leroy +Luciano +Lucio +Minh +Osbaldo +Quincy +Rashad +Solomon +Ulysses +Van +Anton +Brain +Clark +Dion +Elmer +Elvis +Harrison +Jarrett +Juancarlos +Nestor +Skyler +Terence +Tou +Alonso +Anibal +Dillon +Edmund +Jean +Jerrod +Jimmie +Kristian +Arron +Brenton +Connor +Davis +Desmond +Donnie +Elizabeth +Fermin +Jan +Marcelino +Nikolas +Parker +Reed +Tanner +Tuan +Vinh +Arnulfo +Brock +Carey +Darius +Dave +Dominick +Horacio +Jarod +Jerardo +Jessica +Jonas +Jovan +Mason +Migel +Mohammed +Myron +Refugio +Sterling +Toby +Wilfredo +Abram +Eder +Edgardo +Erich +Jamil +Ken +Rex +Riley +Travon +Ty +Ulises +Zachery +Cecil +Clay +Daren +Domingo +Ezekiel +Hans +Jasper +Jeffry +Jerad +Jody +Leland +Tobias +Trenton +Virgil +Ari +Brenden +Brennan +Erwin +Gino +Gorge +Harley +Hunter +Kristoffer +Laurence +Oswaldo +Quentin +Royce +Amit +Arnoldo +Brice +Cary +Cassidy +Cheyne +Clyde +Davon +Dino +Hugh +Hung +Justen +Kareem +Pascual +Renato +Ron +Rusty +Will +Adalberto +Ahmad +Chester +Deshawn +Eliot +Kao +Keenan +Liam +Myles +Stewart +Trinidad +Wyatt +Zackary +Alec +Antony +Augustine +Chadwick +Colt +Cyrus +Dewayne +Fausto +Floyd +Garry +Harvey +Jeramy +Jorje +Josh +Kasey +Nicholaus +Phong +Raphael +Remington +Rojelio +Rosendo +Salomon +Sidney +Thanh +Trung +Vanessa +Abdul +Alejandra +Armand +Brooks +Cornelius +Deon +Donny +Erasmo +Galen +Ira +Kai +Kerry +Lamont +Lars +Melissa +Randal +Stefan +Teddy +Vidal +Ahmed +Chance +Chasen +Chaz +Donnell +Filiberto +Jasen +Jedediah +Joesph +Junior +Kim +Lino +Marcelo +Margarito +Monte +Nathanial +Nigel +Paulo +Reid +Reyes +Rueben +Stacy +Toan +Vance +Viet +Winston +Al +Bradly +Cuong +Hilario +Jamin +Jarret +Jefferey +Jerald +Jerod +Johathan +Kendall +Maximilian +Michel +Otis +Quinn +Ronny +Serjio +Shelby +Sherman +Sky +Tremaine +Wallace +Zackery +Abran +Aubrey +Brant +Cliff +Dagoberto +Deven +Dirk +Duncan +Fong +Giancarlo +Hoang +Jabari +Jacinto +Jamel +Jamison +Jashua +Jed +Luiz +Mack +Markus +Miguelangel +Morris +Nam +Norberto +Orion +Paolo +Rasheed +Reggie +Rico +Rodger +Son +Thai +Tyree +Tyron +Wilbert +Willis +Alfonzo +Amos +Antwan +Baby +Blaine +Danilo +Darrel +Delbert +Devan +Donato +Eddy +Edmond +Edmundo +Emiliano +Fransisco +Fredy +Hassan +Jackie +Johnpaul +Jordon +Josef +Kaleb +Kong +Marty +Mayra +Nikolaus +Porfirio +Prince +Rey +Richardo +Robbie +Rosalio +Sarah +Stephanie +Taurean +Tim +Whitney +Ajay +Bob +Braden +Brandan +Britton +Bruno +Christina +Christoper +Danial +Dejon +Dejuan +Demetrio +Dexter +Drake +Ellis +Eloy +Emil +Ezra +Gil +Gregg +Griffin +Ibrahim +Irving +Jedidiah +Jeramie +Juventino +Keegan +Korey +Kris +Laron +Leif +Malcolm +Malik +Martell +Meng +Rommel +Tai +Thaddeus +Wendell +Abdullah +Alton +Amado +Ameer +Ana +Andreas +Aric +Armen +Bao +Buddy +Caesar +Cedrick +Christoher +Clemente +Davin +Derik +Dimitri +Donta +Dontae +Dung +Dusty +Elisha +Emmett +Eugenio +Forest +Hai +Irvin +Jaron +Jensen +Jeremie +Jevon +Jonpaul +Kenton +Kevan +Keven +Lazaro +Lincoln +Lukas +Luther +Marcello +Markanthony +Marlo +Mikel +Monica +Patricio +Renee +Reymundo +Rickie +Rosa +Sami +Samson +Scotty +Shant +Skylar +Valentino +Vince +Vincente +Vito +Vu +Abelardo +Abner +Adriel +Agustine +Amador +An +Artemio +Bee +Bryson +Camilo +Candelario +Carlton +Ceasar +Charley +Claudio +Coleman +Damion +Dandre +Darrick +Delfino +Edgard +Ely +Emerson +Enrigue +Gabino +Garrick +Gildardo +Greggory +Hank +Hiram +Jacques +Jeremey +Jerred +Kameron +Lamarr +Lauren +Lowell +Malachi +Matt +Michelle +Misael +Muhammad +Nancy +Oren +Pao +Paris +Ramsey +Rhett +Robby +Romeo +Salvatore +Santino +Servando +Shea +Tommie +Tyrel +Tyrell +Ubaldo +Vicent +Westley +Anand +Anastacio +Antione +Arash +Asher +Avery +Benedict +Bennie +Boris +Brandin +Buck +Cale +Carter +Che +Cheng +Colton +Cornelio +Cynthia +Dalton +Denis +Devlin +Earnest +Elan +Erika +Esequiel +Flavio +Franco +Gabriela +Giovani +Heather +Jameel +Jarvis +Jered +Jessy +Johann +Khoa +Kirby +Levon +Lindsay +Lupe +Marcell +Mickey +Mohamed +Monty +Orrin +Philippe +Quang +Randell +Raudel +Rigo +Rocio +Sameer +Sandra +Shayne +Sherwin +Sunny +Sylvester +Titus +Vaughn +Veronica +Waylon +Yeng +Zane +Adriana +Akeem +Albaro +Alphonso +Amanda +Andrea +Anh +Ara +Arlen +Art +Asa +Baltazar +Barney +Baron +Benson +Bijan +Bo +Brannon +Braulio +Bud +Chauncey +Chuck +Claude +Cooper +Crystal +Dajuan +Daron +Demarcus +Dereck +Derreck +Derrell +Diana +Donavan +Dontay +Duke +Eleazar +Elvin +Erica +Errol +Evelyn +Francesco +Garett +Geovanni +Gillermo +Hernan +Ilan +Isacc +Isai +Jacqueline +Jarad +Jefferson +Jerel +Jerrad +Jovani +Jovany +Justine +Kalen +Kelley +Keon +Kody +Kou +Kunal +Lam +Laura +Lavelle +Lindsey +Marcellus +Marisol +Mateo +Mauro +Maximo +Megan +Melchor +Mitchel +Moshe +My +Nickolaus +Nicolaus +Nicole +Norma +Omari +Quoc +Reinaldo +Rodrick +Roel +Rosario +Sampson +Sandy +Sang +Scot +Silas +Simeon +Sione +Stevan +Tan +Thien +Tory +Trever +Vang +Walker +Wilfred +Zechariah +Adolph +Benigno +Benjamen +Burton +Carmelo +Carnell +Cecilio +Chandler +Cheyenne +Christen +Chue +Cindy +Cortney +Daisy +Dao +Darwin +Dat +Deangelo +Demond +Deshaun +Duc +Duy +Eberardo +Elton +Eusebio +Faisal +Feliciano +Fidencio +Fransico +Frederic +Garth +Geronimo +Gerson +Grady +Hamilton +Hayden +Hoa +Ishmael +Jade +Jakob +Jasson +Jayme +Jeromy +Johnmichael +Johny +Jory +Juston +Kamal +Karina +Kaveh +Kenji +Kristen +Lane +Liliana +Linda +Lon +Lusiano +Manolo +Maribel +Milo +Ming +Narciso +Natan +Neftali +Nicholes +Omid +Oswald +Otto +Phu +Ramses +Rishi +Robinson +Roque +Sara +Schuyler +Seng +Sigifredo +Silverio +Skye +Stevie +Tam +Teodoro +Theron +Tien +Tong +Trevon +Truong +Tucker +Tung +Ying +Yousef +Adrain +Adrien +Alain +Alden +Alvino +Amar +Andrez +Anival +Antone +Antonino +Antwon +Apolinar +Aram +Archie +Arik +Armondo +August +Aureliano +Bjorn +Blas +Boyd +Bradlee +Brandyn +Candido +Cher +Christophe +Cirilo +Claudia +Conrado +Cris +Curt +Cy +Dameon +Darell +Darris +Dayne +Denver +Deric +Desean +Dewey +Domenic +Doran +Dwain +Ector +Eladio +Ervin +Esteven +Faustino +Favian +Florentino +Geovanny +Gerad +Hakop +Henri +Hieu +Ivory +Janet +Jaren +Jeramiah +Jerimiah +Job +Johan +Jossue +Juanmiguel +Kalvin +Kamran +Kennith +Khaled +King +Klayton +Kraig +Lazarus +Leobardo +Lorne +Macario +Marquise +Martha +Mary +Mathieu +Mattew +Micahel +Nader +Nai +Nguyen +Nicky +Odell +Patricia +Quinton +Rajesh +Rashawn +Rashid +Remy +Ric +Rio +Ronell +Rufus +Sabino +Sai +Sal +Salbador +Samer +Samir +Sarkis +Serafin +Shamar +Shay +Stan +Syed +Tariq +Teng +Thao +Tj +Toua +Tri +Ulisses +Valente +Wes +Abdon +Abrahan +Adel +Adonis +Alexandre +Amandeep +Amber +Andrae +Angela +Anselmo +Anson +Antwone +Anwar +Araceli +Arnel +Avraham +Axel +Barret +Bart +Basil +Bennett +Bernabe +Bernardino +Bernie +Bert +Blong +Brandt +Brien +Brook +Burke +Canaan +Carmen +Cesario +Chace +Chao +Chi +Chong +Christofer +Christpher +Cleveland +Colter +Corbin +Cornell +Corry +Cosme +Cuauhtemoc +Daivd +Daneil +Danielle +Danniel +Daryn +Dashiell +De +Denise +Deshon +Dick +Donell +Doug +Duong +Eamonn +Ed +Edison +Ehren +Eitan +Elbert +Eldon +Ephraim +Ever +Fabio +Fletcher +Florencio +Francois +Fredric +Fritz +Gamaliel +Gareth +Garland +Garren +Gavino +Geraldo +Gideon +Gloria +Grayson +Gumaro +Hakim +Hamid +Hasani +Heber +Hong +Hubert +Iain +Isabel +Isauro +Isiah +Jai +Jarid +Javan +Javon +Jaysen +Jd +Jeanpierre +Jenaro +Jermy +Jeron +Jestin +Jimi +Jin +Jorel +Josemanuel +Joshue +Juanmanuel +Judson +Jules +Julia +Julie +Jun +Justus +Kamron +Kane +Kc +Kellan +Kelsey +Khristopher +Kieran +Kimo +Krikor +Kristofor +Laurent +Lavell +Lemar +Lenard +Leng +Lisandro +London +Lorin +Luz +Lyndon +Lynn +Mandeep +Manny +Marcial +Marciano +Marko +Marlin +Marshawn +Matias +Maximino +Michale +Mustafa +Nathen +Nicholai +Niles +Nima +Nino +Obed +Oracio +Ozzie +Paulino +Phil +Primitivo +Princeton +Rachel +Raffi +Rahim +Rainier +Raj +Rashaad +Raymon +Reece +Rian +Rocco +Ronaldo +Russel +San +Sandro +Sanjay +Shanon +Soloman +Sonia +Steffan +Tarik +Timmothy +Tito +Tobin +Tod +Tremayne +Trey +Trino +Tristen +Tye +Vern +Victoria +Warner +Wilbur +Woodrow +Yannick +Yesenia +Yusuf +Zebulon +Alegandro +Alen +Alexandra +Amin +Anderson +Angelito +Angus +Anil +Antuan +Aramis +Arcadio +Aren +Arian +Arjun +Arvin +Asad +Ashton +Atthew +Augustin +Augustus +Austen +Avi +Bailey +Baldomero +Basilio +Billie +Brandy +Brenda +Brennon +Brion +Broc +Brodie +Bulmaro +Cal +Carroll +Celestino +Chaim +Chang +Chau +Christohper +Ciro +Constantino +Crispin +Cullen +Dakota +Damone +Dani +Darron +Dashawn +Dashon +Daveon +Dax +Deonte +Derrik +Desi +Destin +Devaughn +Dietrich +Dijon +Dimas +Dimitrios +Dimitrius +Dionisio +Dionte +Dominque +Domonic +Domonick +Dru +Dustyn +Dwan +Eamon +Easton +Edder +Edvardo +Elgin +Eliazar +Emery +Emory +Epifanio +Evaristo +Everado +Fadi +Faheem +Ferdinand +Fortino +Frances +Franz +Fue +Gaston +Gaurav +Geovani +Germain +Gerrad +Gerry +Giovanny +Grabiel +Graeme +Gus +Gustabo +Hagop +Haig +Hart +Hasan +Herminio +Hien +Homer +Houston +Hussein +Immanuel +Imran +Isac +Ismail +Jace +Jacobo +Jacque +Jamall +Jarett +Jarrad +Jeanpaul +Jelani +Jens +Jereme +Jeronimo +Jessi +Joao +Johnathen +Johnie +Jonatan +Jonmichael +Joshuah +Jospeh +Jovanny +Juanito +Juanpablo +Juaquin +Judd +Jude +Juvenal +Kale +Karim +Katherine +Kavon +Keaton +Kee +Kendrick +Kenrick +Kenyon +Khalid +Khalil +Kian +Kimberly +Kip +Kofi +Koji +Konrad +Kwame +Ky +Lamonte +Landen +Laszlo +Lauro +Leandro +Leighton +Lemuel +Leticia +Linh +Lisa +Luigi +Ly +Magdaleno +Maher +Marcoantonio +Marie +Maritza +Marius +Matthias +Maurilio +Maximiliano +Merrill +Michal +Micharl +Michele +Miller +Mischa +Modesto +Mychal +Mynor +Nazario +Nehemiah +Nhan +Nikolai +Obryan +Omero +Osualdo +Othon +Peng +Percival +Pheng +Phi +Raheem +Rahul +Rami +Ramone +Raynard +Reagan +Renaldo +Renan +Reno +Reza +Richar +Robbert +Ronnel +Roshan +Rosio +Royal +Rufino +Russ +Rylan +Sachin +Sammie +Seneca +Shad +Shadi +Shon +Silvestre +Sixto +Skip +Soren +Sou +Stacey +Stanford +Sue +Sydney +Tad +Taj +Tal +Tavis +Terron +Thad +Thong +Thor +Thuan +Timmy +Tin +Toni +Torrey +Tramell +Trayvon +Tu +Victoriano +Vijay +Vinson +Vladimir +Waldo +Westin +Wilfrido +Williams +Willy +Yang +Yer +Yosef +Young +Yovani +Yuri +Yvan +Zaid +Zubin +Michael +Christopher +David +Daniel +Matthew +Robert +Joshua +Ryan +James +John +Joseph +Jason +Jose +Anthony +Andrew +Brian +Jonathan +Nicholas +Justin +Brandon +Eric +Steven +Richard +Adam +Kevin +William +Jeffrey +Juan +Timothy +Thomas +Aaron +Sean +Mark +Kyle +Paul +Carlos +Patrick +Scott +Jacob +Benjamin +Luis +Stephen +Jesus +Jesse +Alexander +Gregory +Travis +Miguel +Jeremy +Bryan +Kenneth +Charles +Victor +Nathan +Gabriel +Tyler +Jorge +Edward +Ricardo +Raymond +Dustin +Samuel +Peter +Francisco +Zachary +Manuel +Adrian +Joel +Erik +Christian +Antonio +Derek +Mario +Oscar +Roberto +Frank +Alejandro +Sergio +Fernando +Javier +Vincent +Jared +Ian +Ruben +Keith +Ronald +Shawn +Marcus +Chad +George +Hector +Phillip +Martin +Donald +Bradley +Alex +Cesar +Jordan +Raul +Eduardo +Brett +Jaime +Armando +Gary +Evan +Angel +Albert +Johnny +Trevor +Douglas +Cody +Casey +Pedro +Alan +Danny +Henry +Alberto +Salvador +Tony +Arturo +Rafael +Jimmy +Randy +Omar +Philip +Edgar +Ramon +Dennis +Ivan +Nathaniel +Andres +Julio +Blake +Shane +Rene +Cory +Arthur +Craig +Steve +Garrett +Isaac +Brent +Enrique +Russell +Larry +Jeremiah +Todd +Gerardo +Joe +Marco +Ernesto +Alfredo +Cameron +Jerry +Devin +Andre +Wesley +Curtis +Shaun +Lawrence +Mathew +Corey +Derrick +Erick +Marc +Marcos +Louis +Kristopher +Edwin +Gilbert +Nicolas +Jeffery +Emmanuel +Abraham +Austin +Colin +Allen +Troy +Dominic +Jack +Johnathan +Mitchell +Rudy +Taylor +Julian +Ricky +Eddie +Chase +Seth +Darren +Carl +Luke +Walter +Rodolfo +Jon +Gustavo +Guillermo +Roger +Ernest +Bobby +Jonathon +Randall +Grant +Hugo +Ismael +Terry +Drew +Lance +Alfonso +Gerald +Lee +Israel +Saul +Maurice +Roy +Eugene +Jessie +Ross +Felipe +Noah +Pablo +Marvin +Spencer +Josue +Dylan +Geoffrey +Lucas +Micheal +Andy +Alfred +Abel +Diego +Brendan +Clinton +Esteban +Billy +Leonard +Theodore +Micah +Orlando +Ramiro +Fabian +Noe +Wayne +Moises +Morgan +Neil +Lorenzo +Clayton +Glenn +Jay +Rogelio +Rolando +Nelson +Rodney +Bruce +Calvin +Tommy +Bryce +Noel +Cole +Darrell +Gilberto +Frederick +Tristan +Felix +Jerome +Darryl +Ray +Simon +Caleb +Kelly +Branden +Ronnie +Jamie +Logan +Willie +Ignacio +Joey +Adan +Devon +Vicente +Clifford +Leonardo +Max +Ralph +Rigoberto +Kurt +Santiago +Joaquin +Allan +Elias +Tomas +Byron +Emanuel +Freddy +Humberto +Alvaro +Damien +Karl +Reginald +Roman +Dean +Efrain +Tyrone +Giovanni +Beau +Stanley +Warren +Jarrod +Jermaine +Octavio +Rodrigo +Agustin +Ethan +Moses +Nolan +Mike +Alexis +Damian +Francis +Guadalupe +Leo +Melvin +Alvin +Chris +Dwayne +Isaiah +Jake +Marlon +Angelo +Kenny +Norman +Dale +Dane +Gavin +Mauricio +Xavier +Cristian +Elliott +Marshall +Charlie +Tyson +Dante +Preston +Franklin +Nickolas +Sam +Levi +Miles +Reynaldo +Rory +Brenton +Emilio +Graham +Howard +Leonel +Loren +Rick +Amir +Barry +Collin +Elijah +Harold +Terrance +Frankie +Jayson +Roland +Stuart +Adolfo +Deandre +Oliver +Robin +Darnell +Daryl +Gonzalo +Kirk +Brad +Josiah +Leon +Eli +Freddie +Glen +Lewis +Gordon +Harry +Bryant +Damon +Dana +Kent +Terrell +Antoine +German +Neal +Sebastian +Terrence +Ashley +Fred +Clarence +Dan +Heriberto +Kurtis +Brady +Bret +Jim +Johnathon +Kelvin +Efren +Nathanael +Raymundo +Don +Earl +Kellen +Lionel +Osvaldo +Duane +Dwight +Jackson +Jeff +Maxwell +Nick +Ben +Benny +Forrest +Bernard +Bernardo +Colby +Elliot +Landon +Aron +Julius +Lamar +Pierre +Randolph +Tom +Aldo +Ali +Ariel +Clint +Donovan +Isidro +Shannon +Cedric +Jamaal +Jamal +Owen +Santos +Federico +Leroy +Lonnie +Louie +Vernon +Zachariah +Lloyd +Marques +Marquis +Wilson +Bryon +Fidel +Fredrick +Rocky +Trent +Trenton +Alonso +Bill +Courtney +Donte +Ernie +Gene +Jarrett +Jess +Stephan +Terence +Weston +Carlo +Demetrius +Isaias +Jarred +Arnulfo +Clark +Clifton +Darin +Dario +Guy +Milton +Ted +Jimmie +Maria +Mason +Myles +Sammy +Tanner +Chance +Erich +Garret +Genaro +Kristofer +Nestor +Rickey +Ron +Skyler +Stefan +Alec +Benito +Cruz +Dillon +Estevan +Herbert +Leslie +Parker +Shea +Travon +Dallas +Marcel +Roderick +Sterling +Alonzo +Augustine +Darrin +Everardo +Gerard +Kristian +Markus +Toby +Aurelio +Bradford +Cristobal +Cristopher +Davis +Elvis +Greg +Gregorio +Herman +Jameson +Lester +Conrad +Leopoldo +Perry +Pete +Sidney +Solomon +Sonny +Tyrell +Ulysses +Valentin +Wade +Adalberto +Arnold +Deshawn +Desmond +Dominique +Eliseo +Harley +Jean +Kiel +Rex +Royce +Alexandro +Brendon +Everett +Heath +Huy +Jovan +Kasey +Lyle +Raphael +Reid +Ty +Uriel +Brock +Carson +Domingo +Ezequiel +Garry +Horacio +Jamison +Johnnie +Reuben +Ulises +Zackary +Derick +Elmer +Erwin +Jamar +Jennifer +Jerrod +Josef +Mohammad +Phong +Rudolph +Wyatt +Dominick +Ezekiel +Hung +Hunter +Jessica +Nam +Quinn +Randal +Tuan +Brennan +Clay +Darius +Dorian +Edmund +Erin +Floyd +Gorge +Jairo +Johnson +Kerry +Mariano +Minh +Paulo +Stewart +Tou +Tracy +Ahmad +Amit +Baby +Brain +Caesar +Cyrus +Duy +Fredy +Gino +Joseluis +Nathanial +Quentin +Refugio +Rojelio +Trinidad +Zachery +Chester +Dave +Harrison +Issac +Kory +Long +Luiz +Matt +Michel +Norberto +Scotty +Cheyne +Conor +Darrel +Deon +Dewayne +Eddy +Hans +Jan +Jefferson +Kim +Marcelo +Orion +Rashad +Renato +Rosendo +Van +Wilfredo +Aric +Blaine +Chaz +Clyde +Donnie +Duncan +Edgardo +Fermin +Johnpaul +Keegan +Ken +Quincy +Riley +Samson +Sheldon +Tobias +Virgil +Zackery +Zane +Asa +Ashton +Brenden +Cecil +Daren +Dion +Donnell +Edwardo +Elizabeth +Galen +Jarod +Josh +Laurence +Marcelino +Marty +Myron +Reyes +Sherman +Skylar +Stephanie +Thanh +Vinh +Winston +Ahmed +Bradly +Broc +Bryson +Camilo +Cassidy +Emil +Eriberto +Ezra +Fausto +Hernan +Ira +Kai +Kris +Luciano +Luther +Mohammed +Otis +Antony +Cale +Cary +Davon +Denny +Eder +Edmond +Fransisco +Jered +Jonah +Juancarlos +Keenan +Kong +Malcolm +Mateo +Mauro +Mickey +Nicholaus +Reed +Tam +Tim +Timmy +Vu +Wendell +Barrett +Bo +Brandan +Brooks +Bruno +Christina +Cuong +Danilo +Derik +Eloy +Hugh +Jefferey +Kody +Kristoffer +Lauren +Lucio +Marquise +Misael +Reggie +Robby +Rusty +Santino +Vance +Wilbert +Akeem +Christoper +Colt +Darwin +Dexter +Donny +Edgard +Emerson +Esequiel +Filiberto +Gregg +Harvey +Hoang +Jerardo +Jovany +Junior +Kendall +Kou +Lamont +Leland +Michelle +Miguelangel +Morris +Nehemiah +Osbaldo +Romeo +Salvatore +Scot +Sylvester +Viet +Aram +Ari +Armand +Armen +Arnoldo +Avery +Bennie +Binh +Blair +Brice +Carey +Chadwick +Cheng +Colton +Connor +Davin +Dejuan +Dino +Eleazar +Ervin +Ishmael +Jacobo +Jamel +Jaron +Jerad +Jonas +Justen +Kendrick +Korey +Lazaro +Leobardo +Liam +Marcial +Melissa +Nigel +Nikolas +Quoc +Ravi +Teddy +Toan +Will +Abram +Alphonso +Anh +Anton +Arron +Brant +Carmelo +Ceasar +Chandler +Clemente +Cornelius +Daisy +Darrick +Emiliano +Fabio +Garett +Gil +Jordon +Keon +Lane +Mikel +Nancy +Raudel +Remington +Rey +Rigo +Russel +Trever +Vanessa +Vidal +Wallace +Wilfred +Alton +Amos +An +Andreas +Antwan +Bennett +Carlton +Crystal +Danial +Deangelo +Diana +Dontae +Dung +Erika +Franco +Grayson +Jackie +Jody +Joesph +Kareem +Katherine +Kenji +Leif +Lincoln +Marcell +Margarito +Oren +Oswaldo +Porfirio +Quang +Ramsey +Rhett +Rommel +Samir +Sarah +Sarkis +Shayne +Silas +Son +Valentino +Waylon +Whitney +Willis +Adriel +Alain +Albaro +Amy +Andrea +Artemio +Aubrey +Bernabe +Carter +Claudio +Coleman +Cornell +Deven +Elan +Elvin +Flavio +Florentino +Garrick +Garth +Hieu +Hilario +Irvin +Jasper +Jeffry +Jeremey +Jerod +Johathan +Jorje +Kaleb +Keven +Lino +Markanthony +Maximilian +Migel +Milo +Mitchel +Patricio +Pheng +Rocio +Rueben +Salomon +Stevie +Sunny +Timmothy +Tito +Titus +Tyree +Vaughn +Adrain +Alden +Apolonio +August +Augustin +Austen +Baltazar +Bee +Billie +Brandin +Chas +Damion +Dandre +Delfino +Deonte +Donta +Edmundo +Eliot +Favio +Geronimo +Grady +Harlan +Hubert +Ibrahim +Jabari +Jacinto +Jamil +Jedediah +Jedidiah +Jerald +Jeramiah +Jeramie +Jevon +Joshuah +Justine +Kao +Laura +Leandro +Lukas +Marcello +Mathieu +Maximino +Nader +Nathen +Omari +Otto +Paolo +Prince +Richardo +Richie +Rico +Robbie +Rodrick +Roosevelt +Sandra +Theron +Tory +Ajay +Amador +Anibal +Anson +Antione +Baldomero +Benson +Blas +Bobbie +Braden +Burton +Camron +Chai +Chao +Charley +Chuong +Corbin +Delbert +Dimitri +Edson +Elio +Ellis +Errol +Faustino +Francesco +Gareth +Garland +Giuseppe +Hagop +Houston +Irwin +Jakob +Jarad +Jarrell +Jasen +Jeromy +Jessy +Jonmichael +Kalen +Kamal +Kc +Levon +Linh +Mathias +Meng +Mohamed +Muhammad +Napoleon +Nikolai +Paris +Quinton +Randell +Rasheed +Renee +Reymundo +Rod +Ronny +Ryne +Serafin +Stacy +Tri +Trung +Ubaldo +Veronica +Vishal +Young +Yusuf +Zechariah +Abner +Al +Ana +Anwar +Ara +Arash +Archie +Argenis +Arlen +Asher +Bao +Benedict +Bert +Bob +Brandt +Brannon +Braulio +Buddy +Celso +Chasen +Cynthia +Dannie +Darell +Denis +Dereck +Deric +Derrell +Dirk +Dusty +Elisha +Emery +Eugenio +Feliciano +Fletcher +Fong +Forest +Froilan +Gabino +Gerson +Giancarlo +Hai +Hank +Hassan +Hiram +Irving +Jacques +Jarrad +Jeanpaul +Jelani +Jensen +Jeramy +Jeremie +Jerrad +Johannes +Jovon +Jules +Juvenal +Juventino +Kennedy +Kenton +Kieran +Lam +Lars +Lauro +Marion +Marko +Martell +Mary +Mattew +Mayra +Megan +Melchor +Micahel +Modesto +Monte +Mustafa +Mychal +Pao +Percy +Phuong +Pierce +Raffi +Raymon +Reece +Reese +Romel +Roque +Ryon +Santana +Schuyler +Shelton +Silvestre +Sione +Thaddeus +Vahe +Vang +Vicent +Wilbur +Willard +Yer +Abran +Adrien +Alessandro +Alexandra +Andrae +Angela +Armond +Arnel +Art +Augusto +Benjamen +Bijan +Bronson +Buck +Chee +Christoher +Chue +Cooper +Cristina +Cuauhtemoc +Dajuan +Danielle +Deante +Del +Demario +Deshon +Devan +Dionicio +Domonic +Dontay +Duran +Evelyn +Fidencio +Florencio +Frederic +Garet +Garrison +Gillermo +Greggory +Hamilton +Imran +Isacc +Jace +Jamin +Jarett +Jed +Jereme +Jerimiah +Jermain +Jerron +Johann +Juaquin +Kashif +Kelsey +Kenyon +Keoni +Kristen +Lenny +Lindsey +Lupe +Macario +Magdaleno +Maribel +Maximiliano +Merle +Michal +Mikael +Mohamad +Newton +Nickolaus +Nicky +Nicole +Nikhil +Nima +Pascual +Phi +Ramin +Raynard +Reinaldo +Rian +Rickie +Rodger +Roel +Rosa +Rylan +Sabino +Sandeep +Sara +Sharif +Shelby +Shon +Sir +Sky +Tarik +Teng +Tevita +Thai +Thao +Thien +Tiffany +Tino +Tommie +Trevon +Tu +Tucker +Uriah +Veasna +Vikram +Vince +Vue +Westley +Willy +Abdul +Abdullah +Adonis +Alicia +Anderson +Angelica +Anival +Arman +Armondo +Augustus +Avraham +Barton +Benton +Blaise +Boyd +Cain +Calen +Camden +Carleton +Carmen +Cindy +Claudia +Cyril +Darcy +Davion +Dejon +Demetrio +Deron +Derrek +Devyn +Donavan +Donell +Doyle +Drake +Durell +Eliezer +Enrigue +Ephraim +Erasmo +Erica +Erron +Esgar +Ever +Fadi +Favian +Franz +Gerry +Gildardo +Giovani +Gonsalo +Graeme +Harout +Hayden +Ilan +Isidoro +Isreal +Ivory +Jacqueline +Jade +Jaren +Jarret +Jarvis +Jefrey +Jeronimo +Jerred +Johan +Jonpaul +Jospeh +Jovani +Jr +Juston +Kevan +Keyon +Khalid +Khalil +Khang +Kimberly +Kirby +Koji +Kraig +Kristofor +Kunal +Layne +Leigh +Loc +London +Lorena +Lorin +Lou +Lowell +Mack +Markeith +Marlin +Marquez +Matias +Maurilio +Milan +Mynor +Nolberto +Omer +Osama +Oswald +Parris +Patricia +Phil +Quintin +Rajan +Ramses +Rayvon +Remy +Rishi +Ronaldo +Rosario +Rufus +Sandy +Scottie +Seamus +Serjio +Servando +Silverio +Simeon +Stacey +Sung +Tad +Tai +Tan +Tarek +Teodoro +Thang +Tobin +Tristin +Tylor +Tyrel +Vincente +Waldo +Walker +Wayland +Wilfrido +Williams +Yancy +Yeng +Zack +Abelardo +Aj +Alegandro +Alejandra +Alfonzo +Alma +Amadeo +Amar +Ameer +Amilcar +Amin +Anders +Ansel +Antwon +Aris +Arsenio +Aureliano +Bailey +Barron +Bart +Bernardino +Bernie +Boris +Bradlee +Bradon +Brandy +Brenda +Britton +Bulmaro +Carlin +Cecilia +Chace +Chet +Christen +Christofer +Cipriano +Cliff +Conrado +Cornelio +Coy +Cullen +Dagoberto +Dalton +Daron +Darron +Dax +Demarcus +Demitrius +Denise +Deontae +Dionte +Domonique +Douglass +Dusten +Earnest +Eden +Elbert +Eliott +Emile +Emmett +Enoch +Enrrique +Eusebio +Fabien +Gable +Gage +Gamaliel +Geovanni +Ger +Geraldo +Gideon +Griffin +Grisel +Gus +Hakim +Hanh +Herminio +Hollis +Homar +Hong +Iain +Isai +Isiah +Jahaziel +Jarell +Jens +Jessi +Jhon +Jimmylee +Joanna +Joeseph +Joh +Johnmichael +Jonatan +Judith +Julien +Kale +Karim +Karla +Karlo +Kellan +Kelley +Kenan +Kenney +Khanh +Kip +Konrad +Kristin +Kue +Kyler +Lancelot +Laron +Lavell +Lenard +Leng +Levar +Lindsay +Lionell +Lon +Luigi +Luisangel +Lyndon +Malik +Marcellus +Markell +Martha +Michale +Micky +Mikkel +Monty +Moua +Musa +Nichols +Nikolaus +Niles +Osualdo +Patric +Pernell +Philippe +Rachel +Rahul +Rashid +Rayn +Rion +Rondell +Rosalio +Ryland +Sami +Sandro +Seanmichael +Sebastien +Seng +Sesar +Shaheed +Shakir +Stephane +Sundeep +Taurean +Terrel +Tong +Tremaine +Trey +Tung +Victorino +Vivek +Ward +Wes +Wiley +Wilmer +Wm +Yee +Yesenia +Yousef +Ace +Adolph +Agustine +Aidan +Alexandre +Amado +Amanda +Amber +Amer +Andrei +Andrey +Angus +Anselmo +Apolinar +Araceli +Aran +Ashish +Auston +Avedis +Avelino +Axel +Baron +Bartolo +Blain +Blong +Brennen +Brien +Candelario +Candido +Case +Cedrick +Cesario +Cezar +Chadd +Chang +Charleston +Chong +Christan +Christine +Christophe +Christpher +Chuck +Clement +Cleo +Cori +Cosme +Cristofer +Cuitlahuac +Curt +Dakota +Darien +Darion +Darryn +Dashawn +Davy +Deandra +Delano +Dell +Delvin +Demond +Demonte +Denton +Deondre +Diamond +Donato +Duc +Easton +Edric +Edvardo +Ehren +Eladio +Elgin +Eligio +Ellery +Elton +Evans +Evelio +Evin +Farhan +Felton +Franklyn +Fue +Galdino +Geary +Geovany +Germain +Germaine +Gerren +Gian +Gloria +Greyson +Grigor +Griselda +Gustabo +Hal +Hani +Heather +Hipolito +Hoa +Hussein +Hyrum +Idris +Ikenna +Jabbar +Jacoby +Jai +Jamall +Jameel +Jamey +Janet +Janmichael +Jarel +Jaret +Jerman +Jerrell +Jerret +Joao +Johnpatrick +Johny +Jonny +Joseantonio +Josedejesus +Joshue +Jovanny +Juanita +Juanluis +Juanmanuel +Juanpablo +Judah +Julia +Justino +Justo +Kalin +Kalvin +Kameron +Karen +Kawika +Keaton +Kennith +Kevyn +Khoa +Khoi +Khristopher +Kiley +King +Lajuan +Lamonte +Lang +Lavon +Layton +Lemar +Lenin +Lesley +Librado +Lisa +Lorne +Lucky +Luisalberto +Luz +Lydell +Lynn +Mackenzie +Mahmoud +Malachi +Mandeep +Marcanthony +Marino +Marque +Marquies +Maximo +Mehdi +Michele +Mick +Mina +Miquel +Monica +Natalie +Navin +Neema +Neeraj +Nery +Nguyen +Nicanor +Nicklas +Nicklaus +Nicolai +Niko +Nnamdi +Norris +Omid +Otoniel +Paola +Payam +Peng +Rainer +Rami +Raymund +Ren +Reno +Rito +Rob +Robinson +Rocco +Ronell +Ronnell +Rony +Rudi +Ruperto +Sage +Sal +Salbador +Salim +Salman +Sameer +San +Sang +Sedrick +Shad +Shadi +Shant +Shay +Silvino +Skye +Soren +Spenser +Stefano +Stephon +Stevan +Sumeet +Susan +Sydney +Talon +Terance +Terell +Teron +Terrill +Tin +Torrey +Tracey +Traveon +Travone +Trino +Tristen +Trumaine +Tye +Tyron +Ulices +Victoria +Vijay +Vinson +Vito +Wilber +Wilton +Yair +Yan +Yao +Yasir +Yoni +Yuri +Yusef +Zakary +Michael +Christopher +Daniel +David +Matthew +Robert +Joshua +Ryan +Andrew +James +Anthony +Jose +Joseph +John +Jonathan +Jason +Brandon +Nicholas +Brian +Eric +Steven +Justin +Kevin +Richard +William +Adam +Kyle +Juan +Jeffrey +Sean +Thomas +Timothy +Aaron +Alexander +Mark +Carlos +Paul +Luis +Benjamin +Patrick +Jesus +Scott +Jacob +Jesse +Jeremy +Charles +Stephen +Bryan +Gregory +Miguel +Victor +Tyler +Kenneth +Nathan +Jorge +Travis +Francisco +Samuel +Zachary +Gabriel +Edward +Manuel +Ricardo +Peter +Adrian +Dustin +Antonio +Oscar +Mario +Raymond +Christian +Alejandro +Joel +Alex +Shawn +Erik +Hector +Roberto +Derek +Sergio +Cody +Jared +Frank +Ruben +Ian +Jordan +Fernando +Marcus +Javier +George +Vincent +Phillip +Chad +Bradley +Keith +Ronald +Cesar +Eduardo +Martin +Raul +Armando +Jaime +Shane +Brett +Evan +Donald +Trevor +Angel +Tony +Danny +Pedro +Rafael +Alberto +Arturo +Nathaniel +Casey +Gary +Henry +Alan +Johnny +Cory +Philip +Garrett +Andres +Corey +Albert +Salvador +Edgar +Ivan +Randy +Jimmy +Douglas +Dennis +Alfredo +Julian +Gerardo +Cameron +Marco +Brent +Wesley +Julio +Omar +Arthur +Blake +Ramon +Craig +Ernesto +Derrick +Andre +Steve +Emmanuel +Larry +Enrique +Isaac +Russell +Jeremiah +Jerry +Joe +Rene +Johnathan +Austin +Todd +Shaun +Kristopher +Taylor +Curtis +Marc +Allen +Edwin +Darren +Nicolas +Mathew +Gustavo +Troy +Abraham +Dylan +Jeffery +Mitchell +Lawrence +Marcos +Devin +Erick +Luke +Grant +Louis +Walter +Jack +Carl +Ricky +Eddie +Seth +Guillermo +Chase +Drew +Gilbert +Dominic +Lance +Bobby +Colin +Jon +Jonathon +Rudy +Roger +Alfonso +Andy +Randall +Hugo +Rodolfo +Jessie +Alvaro +Lucas +Abel +Noah +Roy +Israel +Diego +Spencer +Josue +Ernest +Billy +Felipe +Ismael +Esteban +Bryce +Jay +Lee +Marvin +Pablo +Geoffrey +Gerald +Caleb +Max +Clinton +Saul +Brendan +Micheal +Tommy +Moises +Clayton +Rogelio +Terry +Neil +Alfred +Nelson +Bruce +Theodore +Elias +Rigoberto +Rodney +Maurice +Cole +Fabian +Ronnie +Calvin +Leonard +Devon +Ross +Orlando +Gilberto +Tristan +Eugene +Darrell +Glenn +Lorenzo +Dean +Wayne +Logan +Willie +Freddy +Jairo +Humberto +Morgan +Jake +Reginald +Ramiro +Darryl +Alexis +Dale +Jerome +Joey +Ralph +Noe +Ray +Ignacio +Mike +Tyrone +Leonardo +Micah +Frederick +Joaquin +Dane +Mauricio +Emanuel +Rolando +Santiago +Tomas +Byron +Cristian +Karl +Isaiah +Francis +Giovanni +Adan +Clifford +Simon +Angelo +Branden +Rodrigo +Tyson +Xavier +Noel +Vicente +Kenny +Kelly +Agustin +Franklin +Marlon +Damian +Leo +Deandre +Melvin +Miles +Damien +Kurt +Warren +Elliot +Felix +Jamie +Jayson +Beau +Brad +Chris +Efrain +Gavin +Maxwell +Roman +Elijah +Preston +Guadalupe +Johnathon +Nickolas +Nolan +Rory +Daryl +Loren +Sebastian +Stanley +Terrence +Allan +Emilio +Glen +Leon +Alvin +Don +Dwayne +Ethan +Harold +Stuart +Collin +Rick +Graham +Kent +Eli +Leonel +Octavio +Charlie +Frankie +German +Howard +Jarrod +Jeff +Levi +Moses +Brady +Bret +Earl +Harry +Kirk +Marshall +Antoine +Dante +Adolfo +Bryant +Nestor +Sam +Ulises +Wade +Jermaine +Kurtis +Roland +Barry +Damon +Harrison +Stephan +Darin +Louie +Oliver +Isidro +Jameson +Mason +Pierre +Robin +Terrell +Herman +Ali +Clarence +Elliott +Terrance +Dana +Herbert +Josiah +Osvaldo +Rocky +Skyler +Cedric +Darnell +Jim +Lamar +Neal +Wilson +Dallas +Freddie +Garret +Kory +Raymundo +Uriel +Gonzalo +Roderick +Clint +Dan +Donovan +Duane +Efren +Estevan +Tom +Trent +Desmond +Fred +Heriberto +Nick +Alonzo +Ariel +Ben +Clifton +Dillon +Dwight +Fidel +Jarred +Norman +Reynaldo +Alec +Bernardo +Colby +Courtney +Terence +Derick +Fredrick +Gene +Kelvin +Arnold +Kerry +Lewis +Lloyd +Santos +Trenton +Ashley +Bernard +Brock +Erich +Hunter +Kellen +Maria +Benito +Jamal +Jess +Marquis +Brendon +Brenton +Greg +Jackson +Jessica +Marcel +Marques +Amir +Dorian +Forrest +Owen +Randolph +Sonny +Brennan +Bryon +Demetrius +Gordon +Isaias +Jamaal +Kristofer +Rudolph +Stefan +Ulysses +Zachariah +Dominick +Elvis +Everardo +Federico +Guy +Nathanael +Ted +Vernon +Conrad +Donte +Milton +Wyatt +Zachery +Clark +Darius +Erin +Everett +Julius +Kristian +Perry +Benny +Cruz +Landon +Lionel +Pete +Solomon +Tanner +Valentin +Weston +Wilfredo +Bill +Darrin +Jarrett +Jerrod +Johnnie +Leroy +Lonnie +Misael +Parker +Reuben +Shannon +Tou +Aurelio +Carlo +Chance +Conor +Joseluis +Arnulfo +Arron +Blaine +Cary +Cristopher +Ernie +Kasey +Leland +Malcolm +Nikolas +Riley +Aldo +Braden +Dominique +Eliseo +Erwin +Gregorio +Kiel +Long +Lyle +Mohammad +Myles +Sammy +Sidney +Bradford +Dario +Dion +Elizabeth +Eriberto +Huy +Juancarlos +Marcelino +Rex +Royce +Salvatore +Abram +Aron +Brooks +Elmer +Jan +Jimmie +Rickey +Tracy +Travon +Zackary +Alexandro +Clay +Davis +Deon +Hans +Josef +Jovan +Kendall +Caesar +Connor +Donnie +Duncan +Gino +Gorge +Heath +Jarod +Johnson +Leslie +Shea +Sterling +Stewart +Tobias +Zane +Bryson +Claudio +Cristobal +Deshawn +Domingo +Eder +Harley +Jamar +Jamison +Jean +Kristoffer +Ron +Brice +Denny +Issac +Joesph +Ken +Lamont +Laurence +Lucio +Marcelo +Skylar +Ty +Floyd +Gerard +Keenan +Korey +Leopoldo +Markus +Mauro +Reid +Rusty +Tuan +Wendell +Albaro +Bradly +Carlton +Chaz +Chester +Eleazar +Garry +Genaro +Miguelangel +Nigel +Rhett +Robbie +Tyrell +Ahmad +Avery +Barrett +Brain +Brenden +Carson +Darrel +Davon +Dexter +Fransisco +Fredy +Grayson +Harvey +Jonah +Lester +Luciano +Quentin +Quinn +Randal +Raphael +Refugio +Rosendo +Samson +Vance +Winston +Armen +Augustine +Clyde +Damion +Dewayne +Emil +Horacio +Jasper +Julien +Leif +Mariano +Mohammed +Myron +Shayne +Adalberto +Alonso +Amit +Ashton +Christina +Cooper +Esequiel +Fausto +Gerson +Hernan +Migel +Salomon +Amador +Blair +Bruno +Carter +Duy +Eddy +Edgard +Edgardo +Ezequiel +Jerrad +Junior +Kai +Kody +Markanthony +Oswaldo +Paolo +Quinton +Reed +Reyes +Reymundo +Sheldon +Vidal +Zackery +Aram +Artemio +Brandyn +Cassidy +Cheyne +Clemente +Colt +Cyrus +Dave +Davin +Dino +Donnell +Edmund +Edwardo +Ezekiel +Jaymes +Jeffry +Jennifer +Laura +Quintin +Rocio +Romeo +Toby +Trung +Veronica +Anton +Brandin +Chadwick +Cheng +Cuong +Devan +Edmundo +Emerson +Ezra +Favian +Filiberto +Garett +Garrick +Griffin +Ira +Jackie +Jonas +Lino +Luiz +Margarito +Martell +Mickey +Nam +Norberto +Osbaldo +Otto +Quincy +Schuyler +Vinh +Bob +Ceasar +Dalton +Donny +Dontae +Emiliano +Gregg +Hilario +Jerald +Jered +Jody +Josh +Juanmanuel +Kareem +Kendrick +Kim +Lauren +Liam +Lukas +Maximilian +Michale +Michel +Mitchel +Nathanial +Orion +Paris +Porfirio +Prince +Samir +Tory +Trinidad +Valentino +Virgil +Alexandre +Amado +Andreas +Arnoldo +Asher +Aubrey +Camilo +Carey +Colton +Dagoberto +Deangelo +Durrell +Edmond +Eliot +Eloy +Erasmo +Faustino +Hai +Hamilton +Jamel +Jaron +Jedidiah +Jeremie +Jessy +Johnpaul +Jonerik +Kalen +Kennith +Keven +Laron +Lazaro +Malik +Marcoantonio +Marty +Mikel +Minh +Otis +Teng +Tommie +Vince +Vincente +Willis +Willy +Anson +Aric +Baby +Boris +Braulio +Brenda +Christoper +Cullen +Derik +Elvin +Errol +Fermin +Flavio +Fletcher +Franco +Galen +Hugh +Irving +Jacques +Kaleb +Keaton +Khoa +Kou +Leobardo +Marquise +Mohamed +Nima +Renato +Robby +Sarkis +Sherwin +Sylvester +Teddy +Tylor +Vito +Westley +Ahmed +Aidan +An +Anh +Anibal +Antony +Antwan +Brant +Cecil +Cliff +Coleman +Daisy +Danilo +Donavan +Dusty +Florentino +Giancarlo +Gil +Hayden +Hubert +Immanuel +Jarrell +Jed +Jedediah +Jefferson +Jerimiah +Jeromy +Jerrell +Johann +Jonmichael +Justine +Kenton +Luther +Mateo +Maximo +Melissa +Morris +Muhammad +Nicholaus +Pascual +Phong +Ravi +Rebecca +Rojelio +Sarah +Scot +Shant +Tyron +Van +Vaughn +Whitney +Will +Adrien +Ajay +August +Bennett +Bijan +Brandan +Broc +Cecilio +Celso +Charley +Chistopher +Conrado +Danial +Daren +Dejon +Delbert +Dereck +Derrell +Diana +Drake +Eugenio +Florencio +Isai +Jace +Jacinto +Jasen +Jayme +Jerad +Jordon +Jorje +Josemanuel +Jovani +Keegan +Lowell +Marion +Martha +Michelle +Mychal +Nader +Nehemiah +Paulo +Pheng +Rashad +Reggie +Rhys +Ronny +Roosevelt +Roque +Rosario +Rufino +Scotty +Sherman +Son +Stevie +Sunny +Tam +Tarek +Tim +Trever +Vanessa +Vang +Vu +Wallace +Waylon +Abelardo +Ace +Adrain +Adriel +Akeem +Alain +Alejandra +Alessandro +Alfonzo +Alton +Amanda +Anderson +Aris +Baltazar +Buck +Christofer +Christoher +Dandre +Daron +Darwin +Davion +Demario +Deron +Durell +Eamon +Edson +Elio +Elisha +Ellis +Ephraim +Feliciano +Gabino +Geovanni +Hagop +Harlan +Hung +Irwin +Jerod +Johathan +Jorden +Jovany +Juanjose +Justen +Juventino +Kris +Lars +Lauro +Lincoln +Madison +Marcell +Markeith +Marquez +Matt +Mayra +Mikael +Milo +Monica +Moshe +Mustafa +Nancy +Nathen +Pierce +Rayshawn +Reese +Richardo +Rodger +Romel +Ryne +Sandy +Silvestre +Stephanie +Thanh +Tri +Tristen +Tyree +Wilbert +Wilfred +Willard +Wilmer +Yesenia +Abran +Amin +Amos +Ana +Arash +Arlen +Armand +Armond +Arya +Bao +Baron +Bee +Binh +Brien +Cale +Chasen +Christen +Cornelius +Curt +Cyle +Dangelo +Dara +Darell +Darrick +Demarcus +Deonte +Desean +Dionicio +Earnest +Ever +Francesco +Gerry +Ishmael +Jarrad +Jeramy +Jerardo +Jeremey +Jerold +Karlo +Kimberly +Marisol +Maximiliano +Nickolaus +Oren +Patricia +Phuc +Quoc +Remington +Rodrick +Sang +Sara +Servando +Shelton +Stevan +Taurean +Thaddeus +Trey +Abner +Alden +Alegandro +Alphonso +Andrea +Angelica +Archie +Ari +Asa +Augustin +Austen +Babak +Blas +Brando +Bronson +Brook +Chan +Chi +Conner +Cornell +Coy +Cynthia +Danielle +Darron +Dayton +Denver +Deric +Derrek +Donta +Ely +Erica +Fong +Francois +Ger +Greggory +Hassan +Hieu +Hiram +Houston +Imran +Jabari +Jacqueline +Jade +Jamil +Jeron +Joanna +Johnmichael +Jonpaul +Joshuah +Kameron +Kennedy +Kevan +Kristen +Lane +Lindsey +Macario +Marcello +Matias +Maximino +Meng +Mikhail +Navid +Nicolaus +Obed +Paulino +Rajiv +Rayvon +Reece +Rey +Rigo +Sage +Seamus +Shelby +Shon +Silas +Sky +Timmothy +Toan +Trevon +Triston +Tucker +Tyrel +Wiley +Yee +Yer +Zechariah +Ameer +Anil +Anthoney +Antione +Antone +Ara +Argenis +Arman +Armondo +Art +Axel +Barret +Benedict +Benson +Bert +Blaise +Bo +Bobbie +Boyd +Brandt +Brannon +Brittany +Britton +Broderick +Cain +Camden +Catlin +Chandler +Chas +Chuck +Cirilo +Claudia +Daivd +Deepak +Denis +Deven +Dimas +Dimitri +Donavon +Ector +Eden +Edison +Elbert +Eliazar +Ervin +Esau +Favio +Gareth +Garland +Geovanny +Geronimo +Grady +Hank +Hoang +Homar +Homero +Ivory +Jacobo +Jair +Jamin +Janmichael +Jarett +Jarryd +Jashua +Jaysen +Jefferey +Jelani +Jensen +Jermain +Jerred +Jevon +Joao +Johnathen +Josedejesus +Justino +Kamran +Karen +Karim +Kenji +Khristopher +King +Kong +Kunal +Lafayette +Lan +Leandre +Leandro +Leng +Levon +Lonny +Lyndon +Mack +Marcial +Montana +Mynor +Nasir +Nicky +Osiel +Pao +Quan +Quang +Rachel +Raffi +Rami +Randel +Randell +Raymon +Reza +Rickie +Rocco +Rommel +Rosalio +Rueben +Russel +Samnang +San +Simeon +Stephon +Tan +Teodoro +Terron +Thai +Theo +Tito +Tong +Ulisses +Valente +Xue +Aj +Al +Aldrich +Amber +Andrae +Andrez +Ansel +Aren +Aryan +Ascencion +Bart +Barton +Bennie +Bernardino +Bladimir +Brayan +Bren +Byran +Calen +Carmelo +Cavin +Chia +Cindy +Coby +Coty +Dakota +Damar +Daryn +Dashawn +De +Dejuan +Delano +Demetrio +Demond +Denise +Derrik +Domonic +Duc +Dung +Enoc +Enoch +Erika +Eulalio +Evelyn +Evert +Fabio +Gaston +Giorgio +Giovani +Hal +Idris +Jahaziel +Jarvis +Javon +Jessi +Joan +Job +Joseantonio +Juston +Kale +Kalin +Kao +Karina +Kelley +Kelsey +Kolby +Konrad +Kraig +Lamarr +Lemuel +Leron +Librado +Lisandro +Lou +Lucky +Lue +Mahmoud +Marcellus +Maribel +Mathhew +Megan +Michaelanthony +Mikal +Miquel +Monte +Nabil +Narciso +Natividad +Nicholis +Nicole +Nikola +Niles +Nils +Omari +Omero +Oswald +Philippe +Rahim +Rahul +Rashaad +Reinaldo +Renee +Rico +Rudolfo +Rufus +Ryland +Ryon +Sal +Sami +Samual +Sandra +Santino +Sesar +Shay +Sheridan +Shiloh +Silverio +Silvia +Sol +Sopheak +Stacy +Sue +Tadd +Thang +Theron +Tien +Timmy +Tino +Torrey +Tremaine +Tu +Tung +Vahe +Vartan +Victoria +Viet +Vinay +Vinson +Williams +Wing +Yaniv +Abdul +Adams +Adriana +Akira +Alicia +Alma +Ammon +Angela +Anselmo +Antwon +Arnaldo +Benigno +Bernie +Bjorn +Blane +Blong +Bonifacio +Brion +Brody +Buddy +Burton +Cha +Chao +Chauncey +Clement +Corbin +Cristhian +Dameon +Darian +Darien +Darion +Dashiell +Daveon +Dax +Deandrea +Delmar +Delvon +Demar +Demetri +Demitri +Derwin +Deshaun +Dezmond +Domenic +Doua +Duran +Earvin +Ed +Eladio +Eligio +Emile +Emily +Emmett +Enrigue +Enrrique +Ferdinand +Fidencio +Forest +Franky +Garin +Garrison +Gerad +Gian +Gideon +Grabiel +Graeme +Grey +Greyson +Harris +Hasan +Heber +Henri +Iban +Isacc +Isidoro +Jairus +Jarad +Jarret +Jasdeep +Jayce +Jd +Jermel +Jermey +Jeronimo +Jerrett +Jerrid +Jhonny +Jihad +Joeseph +Johan +Jonny +Jonte +Jorel +Jospeh +Jovanni +Juanantonio +Juaquin +Judd +Judson +Julia +Juliana +Julie +Justyn +Juvenal +Kamron +Kane +Karla +Kaveh +Kevyn +Kieran +Lam +Lenard +Lenny +Leoncio +Lindsay +Luz +Malachi +Marin +Marino +Markell +Marshal +Martel +Mary +Maxfield +Maynard +Maynor +Merrick +Micahel +Mitch +Modesto +Nery +Nicanor +Nikhil +Nikolaus +Nino +Omer +Otoniel +Phuong +Ramone +Ramsey +Raquel +Rasheed +Raudel +Raven +Reilly +Richie +Roscoe +Ryen +Sachin +Sai +Salbador +Scottie +Shaheen +Shaine +Shan +Shervin +Sigifredo +Silvio +Soren +Stanton +Syed +Terrel +Tevita +Thong +Titus +Tobin +Tristian +Truong +Ubaldo +Ulices +Uriah +Va +Veasna +Vikas +Wilbur +Willian +Yannick +Yosef +Yu +Adel +Akram +Alexsander +Aman +Amilcar +Anjel +Antwain +Antwaine +Apollo +Araceli +Arcadio +Arian +Arick +Arvin +Ashkan +Augustus +Baldemar +Barclay +Barney +Benjamen +Berry +Brennen +Brodie +Cal +Calixto +Camron +Candelario +Carleton +Carroll +Casimiro +Chace +Chadd +Channing +Chirstopher +Chong +Christipher +Christoffer +Christon +Christophe +Cipriano +Claude +Cleo +Cleveland +Colter +Cortney +Cristina +Crystal +Cuauhtemoc +Dain +Dajuan +Dakotah +Damone +Dannie +Dao +Dayne +Delorean +Deondre +Dewey +Dionisio +Dirk +Djuan +Domenico +Donell +Dong +Doron +Douglass +Dustyn +Dwan +Dwane +Eberardo +Edurdo +Eldon +Eliceo +Eliel +Eliezer +Elton +Errik +Esteven +Eva +Evans +Evaristo +Frances +Fredi +Freeman +Froilan +Fue +Gaelan +Gage +Garo +Garth +Gavriel +Geoffry +Geraldo +Geremy +Gildardo +Gillermo +Gilverto +Giovanny +Gray +Gus +Hardy +Harout +Hayward +Heather +Hien +Hoa +Hollis +Homer +Hosea +Hovsep +Hudson +Iain +Ibrahim +Irvin +Isac +Jacoby +Jaison +Jamarr +Janet +Jc +Jeanpierre +Jeramey +Jeramiah +Jeramie +Jerell +Jereme +Jerid +Jermiah +Jeromie +Jestin +Jo +Joanthan +Johannes +Johnell +Jory +Jossue +Jovanny +Jovon +Judah +Jude +Jules +Juliocesar +Justice +Justus +Kacy +Kellan +Kenan +Kennard +Kermit +Khalid +Khalil +Khang +Kimo +Kip +Kue +Kye +Kyler +Lavell +Lavon +Layton +Le +Lemar +Leor +Les +Leticia +Liliana +Loyd +Lynn +Mai +Major +Malcom +Manolo +Marek +Marko +Mathias +Matthias +Maury +Melanie +Merle +Merlin +Mervin +Michaelangelo +Milan +Montgomery +Monty +Mychael +Mykel +Napoleon +Nathanel +Ned +Neel +Neftali +Nhia +Nikki +Nikolai +Nikolaos +Norma +Omid +Oracio +Osualdo +Ovidio +Paula +Percy +Princeton +Priscilla +Rakesh +Ramin +Randon +Rashawn +Raynaldo +Remy +Rian +Ricci +Rich +Rio +Rishi +Ritchie +Rithy +Romero +Rosa +Rowan +Royal +Salim +Sammie +Sarath +Sasan +Seng +Shad +Shahin +Shain +Sina +Socorro +Sou +Stefano +Stefen +Steffan +Susana +Sven +Tamer +Tarik +Tariq +Terance +Thao +Tj +Torey +Torin +Torrance +Trace +Tramaine +Travion +Tyjuan +Tyrus +Ulyses +Uvaldo +Valentine +Vern +Victoriano +Vikram +Vishal +Vue +Waldo +West +Wilfrido +Wm +Yancy +Yeng +Ying +Yonathan +Yoni +Yoshio +Young +Ysidro +Yuri +Yusef +Yusuf +Zack +Michael +Christopher +Daniel +David +Matthew +Andrew +Robert +Ryan +Joshua +Anthony +Jose +James +Joseph +Jonathan +John +Nicholas +Jason +Brandon +Eric +Steven +Kevin +Justin +Brian +Richard +Kyle +William +Juan +Jeffrey +Sean +Alexander +Thomas +Adam +Timothy +Aaron +Luis +Jeremy +Jacob +Mark +Benjamin +Carlos +Paul +Jesse +Patrick +Scott +Stephen +Bryan +Charles +Miguel +Tyler +Jesus +Gregory +Victor +Jorge +Kenneth +Samuel +Travis +Nathan +Zachary +Francisco +Edward +Alejandro +Manuel +Christian +Ricardo +Adrian +Gabriel +Peter +Mario +Antonio +Raymond +Oscar +Alex +Dustin +Jordan +Roberto +Joel +Derek +Shawn +Erik +George +Fernando +Ruben +Javier +Jared +Martin +Hector +Frank +Phillip +Sergio +Cody +Evan +Bradley +Chad +Angel +Brett +Ian +Marcus +Shane +Vincent +Jaime +Eduardo +Ronald +Armando +Edgar +Cory +Donald +Raul +Trevor +Cesar +Casey +Keith +Ivan +Alberto +Nathaniel +Rafael +Danny +Alan +Henry +Andres +Garrett +Albert +Philip +Corey +Gary +Johnny +Salvador +Pedro +Tony +Cameron +Randy +Omar +Alfredo +Arturo +Douglas +Julian +Julio +Gerardo +Craig +Enrique +Ramon +Rene +Marco +Isaac +Ernesto +Steve +Emmanuel +Jimmy +Austin +Blake +Mitchell +Brent +Abraham +Jerry +Arthur +Derrick +Johnathan +Russell +Andre +Marc +Taylor +Devin +Curtis +Dennis +Joe +Mathew +Edwin +Wesley +Larry +Gilbert +Jeremiah +Jeffery +Gustavo +Rodolfo +Rudy +Marcos +Allen +Troy +Dylan +Erick +Nicolas +Spencer +Walter +Alfonso +Todd +Shaun +Chase +Louis +Lawrence +Kristopher +Dominic +Guillermo +Jonathon +Darren +Hugo +Ricky +Luke +Jack +Jake +Bobby +Roger +Lance +Abel +Carl +Pablo +Diego +Drew +Seth +Ismael +Andy +Felipe +Eddie +Israel +Grant +Saul +Colin +Randall +Lee +Lucas +Jessie +Bryce +Maurice +Orlando +Roy +Ross +Micheal +Jay +Caleb +Josue +Geoffrey +Billy +Gerald +Fabian +Moises +Jon +Rogelio +Theodore +Marvin +Max +Adan +Calvin +Eugene +Noah +Neil +Esteban +Miles +Rodney +Alvaro +Terry +Elias +Ernest +Dane +Logan +Brendan +Clayton +Wayne +Bryant +Noe +Bruce +Cristian +Gilberto +Nelson +Tristan +Ignacio +Lorenzo +Devon +Dean +Rigoberto +Alfred +Efrain +Simon +Morgan +Giovanni +Tommy +Willie +Jerome +Ramiro +Cole +Frederick +Ray +Clinton +Kelly +Humberto +Leonard +Leonardo +Branden +Nickolas +Ronnie +Noel +Clifford +Darrell +Micah +Reginald +Glenn +Byron +Freddy +Mauricio +Mike +Rodrigo +Tyrone +Darryl +Ralph +Maxwell +Deandre +Joaquin +Allan +Kenny +Kurt +Levi +Preston +Felix +Roman +Warren +Rolando +Francis +Tomas +Beau +Guadalupe +Isaiah +Damian +Jamie +Karl +Alvin +Franklin +Joey +Dale +Daryl +Marlon +Santiago +Adolfo +Xavier +Emanuel +Angelo +Damien +Elijah +Nolan +Aldo +Don +Terrance +Tyson +Alexis +Emilio +Jairo +Rory +Eli +Agustin +Charlie +Dante +Elliott +Leonel +Loren +Oliver +Stuart +Chris +Graham +Leo +Vicente +Rick +Brad +Brady +Gavin +Wade +Gonzalo +Jamal +Stephan +Brenton +Bret +Gregorio +Kurtis +Sam +Sonny +Antoine +Collin +Dwayne +Fidel +Kirk +Terrell +Bernardo +Damon +Jayson +Mason +Colby +Moses +Octavio +Harold +Harrison +Reynaldo +Stanley +Efren +Ethan +Marshall +Skyler +Brock +Kent +Nestor +Robin +Donovan +Heriberto +Jarrod +Lamar +Melvin +Alec +Dillon +Hunter +Kelvin +Louie +Dana +Jermaine +Leon +Alonzo +Darnell +Marcel +Myles +Brendon +Fred +Sebastian +Arnold +Jim +Johnathon +Ali +Cedric +Frankie +Isidro +Josiah +Bernard +Clarence +Dan +Terrence +Trenton +Gordon +Harry +Landon +Santos +Amir +Freddie +Kory +Barry +Demetrius +Dominique +Glen +Jarrett +Neal +Norman +Pierre +Trent +Alexandro +Ariel +Dallas +Darin +Dominick +Kellen +Milton +Osvaldo +Rocky +Earl +Reuben +Tanner +Uriel +Wilson +Alonso +Howard +Marquis +Dario +Ernie +Fredrick +Lloyd +Parker +Pete +Rickey +Vernon +Zachariah +Forrest +Leroy +Lewis +Nick +Benito +Estevan +Jeff +Joseluis +Kristofer +Maria +Clifton +Herman +Jackson +Jameson +Marques +Raymundo +Riley +Roland +Shannon +Tom +Ulysses +Blaine +Brennan +Dwight +Elliot +Gene +Lionel +Lonnie +Perry +Davis +Duane +Guy +Herbert +Isaias +Kristian +Wyatt +Zachery +Bryon +Rashad +Weston +Gino +Nathanael +Roderick +Carlo +Donte +Everett +Jamar +Jovan +Shea +Stefan +Addison +Benny +Clark +Derick +Elvis +Garret +German +Lyle +Nikolas +Ben +Bradford +Clint +Conrad +Courtney +Cruz +Darius +Jessica +Sammy +Abram +Brenden +Cristopher +Eddy +Everardo +Ezequiel +Jarred +Juancarlos +Oswaldo +Solomon +Aron +Carson +Connor +Federico +Issac +Edmund +Eliseo +Greg +Jess +Rudolph +Sterling +Terence +Braden +Hans +Owen +Royce +Ulises +Darrin +Desmond +Dion +Edwardo +Genaro +Jamison +Jimmie +Kendall +Leslie +Quincy +Raphael +Stewart +Ted +Travon +Zackary +Dorian +Keenan +Korey +Leopoldo +Markus +Misael +Reid +Sheldon +Edgardo +Erin +Gerard +Johnnie +Julius +Lamont +Malcolm +Reed +Arron +Ashton +Aurelio +Conor +Dexter +Eriberto +Erich +Fredy +Galen +Ken +Kerry +Reyes +Skylar +Adalberto +Brice +Duncan +Erwin +Gorge +Maximilian +Mayra +Rex +Sidney +Barrett +Deshawn +Floyd +Johnpaul +Josef +Kasey +Kody +Lester +Mohammad +Ron +Ty +Wilfredo +Zane +Ashley +Cary +Deon +Elmer +Horacio +Jace +Jayce +Jefferson +Leland +Quentin +Randolph +Tracy +Tuan +Tyrell +Arnulfo +Avery +Jarod +Jaron +Jerald +Marcelo +Mariano +Norberto +Rico +Sunny +Sylvester +Tou +Augustine +Brandan +Carter +Clay +Davon +Denny +Eder +Jeramy +Johnson +Junior +Lucio +Miguelangel +Winston +Zackery +Antony +Armand +Chance +Chaz +Cornelius +Darrel +Drake +Ezekiel +Fransisco +Giancarlo +Jasper +Jaymes +Jean +Laurence +Lazaro +Luiz +Myron +Nathanial +Nicholaus +Nigel +Vince +Ahmad +Andreas +Artemio +Bill +Brandyn +Carlton +Chadwick +Daren +Garry +Jamaal +Jeremie +Jovani +Kai +Long +Mikel +Osbaldo +Quinn +Rosendo +Shayne +Tobias +Vance +Amit +Anibal +Ari +Bryson +Ceasar +Claudio +Cristobal +Cyrus +Domingo +Ellis +Shant +Teddy +Toby +Valentin +Van +Andrea +Anton +Antwan +Arnoldo +Blair +Edson +Eleazar +Elizabeth +Emiliano +Favian +Fermin +Fletcher +Hugh +Jackie +Jakob +Jeffry +Jennifer +Kareem +Kou +Kristoffer +Mauro +Randal +Rueben +Adrien +Alexandre +Bo +Christina +Clyde +Danilo +Davion +Donnie +Franco +Huy +Irving +Jasen +Jerod +Keegan +Kim +Mohammed +Refugio +Trayvon +Veronica +Alden +Brandin +Brenda +Cassidy +Cheyne +Colton +Crystal +Dakota +Dino +Donny +Ezra +Harley +Jan +Jered +Jonah +Jordon +Kiel +Kris +Lane +Lino +Lisandro +Morris +Otis +Robbie +Romeo +Ronny +Salomon +Sarah +Silvestre +Tory +Trinidad +Aubrey +Austen +Broc +Brooks +Cecil +Chester +Cornell +Cuong +Darwin +Denis +Eloy +Eugenio +Griffin +Hernan +Jamil +Jerad +Jerardo +Jerrod +Joesph +Jonas +Josh +Jovany +Justine +Juvenal +Kendrick +Marcelino +Markanthony +Mitchel +Nam +Nima +Phong +Quinton +Raffi +Randell +Rey +Rusty +Salvatore +Samson +Thai +Trever +Tyron +Vincente +Akeem +Arnaldo +August +Caesar +Camilo +Colt +Cooper +Dagoberto +Dandre +Dave +Derik +Emerson +Faustino +Harvey +Ira +Jacques +Janet +Jedidiah +Jessy +Josedejesus +Kelsey +Kenji +Kristen +Luciano +Marty +Michel +Michelle +Mickey +Muhammad +Paulo +Pheng +Prince +Rhett +Scotty +Tommie +Wendell +Wilbert +Will +Adrain +Alejandra +Amado +Amador +Amanda +Aram +Armen +Bee +Brain +Cale +Chasen +Christoper +Cordell +Daron +Desean +Devan +Deven +Dewayne +Durrell +Florentino +Hank +Heath +Jeramie +Jeremey +Kaleb +Kalen +Kalvin +Kameron +Kao +Kevan +Keven +Kong +Levon +Luther +Margarito +Russel +Sione +Sky +Thanh +Trung +Ubaldo +Ulisses +Vidal +Viet +Whitney +Ahmed +Alain +Anderson +Antwon +Axel +Bao +Benson +Cindy +Cordero +Demario +Deshaun +Donnell +Edmundo +Ervin +Fabio +Garrison +Grayson +Hassan +Irvin +Jade +Jonpaul +Jorje +Keaton +Kenton +Lamarr +Lars +Marcell +Martel +Matt +Minh +Otto +Pao +Pascual +Rayshawn +Reggie +Renee +Richardo +Robby +Rocio +Roque +Sherman +Simeon +Son +Tucker +Tylor +Vanessa +Vinh +Vu +Zechariah +Amos +Art +Bernardino +Bijan +Bradly +Britton +Brody +Bronson +Cain +Camron +Claude +Clemente +Davin +Dirk +Dusty +Earnest +Edmond +Erika +Fausto +Filiberto +Florencio +Forest +Garett +Gerson +Greggory +Hilario +Hung +Ibrahim +Jabari +Jed +Jerrell +Jody +Jonnathan +Justen +Lauren +Leif +Lowell +Malachi +Marquise +Nancy +Nehemiah +Nery +Orion +Paolo +Patricia +Pierce +Rojelio +Rommel +Sandeep +Sherwin +Silas +Torrey +Vaughn +Westley +Willis +Willy +Al +Andrez +Aric +Asher +Bennett +Bernabe +Blas +Bob +Brandt +Braulio +Bruno +Celestino +Chistopher +Christofer +Cristina +Cullen +Dajuan +Danial +Danielle +Dereck +Derrek +Derrik +Diana +Donavan +Dontae +Eliot +Emmett +Enoch +Erasmo +Esequiel +Gabriela +Gil +Grady +Gregg +Gus +Hubert +Isai +Jacobo +Jamel +Jamin +Jerel +Jereme +Jermey +Jeronimo +Jovanny +Julien +Kalin +Lauro +Luisalfredo +Mackenzie +Marcio +Martell +Matias +Maximillian +Meng +Michale +Navid +Nikhil +Nikolaus +Philippe +Quang +Rigo +Rony +Rosario +Ryne +Sandy +Scot +Shelby +Stephanie +Sven +Teodoro +Thaddeus +Titus +Uriah +Wallace +Abelardo +Apolonio +Baby +Baltazar +Barney +Benedict +Benigno +Bennie +Blane +Boris +Brannon +Brennen +Buck +Carmelo +Chauncey +Cheng +Coleman +Dalton +Dara +Darrick +Delbert +Demetri +Denver +Derrell +Donta +Elisha +Emil +Esau +Eusebio +Flavio +Fong +Franky +Gareth +Ger +Hai +Harris +Hoang +Isiah +Isreal +Jensen +Jeromy +Jerrad +Jhon +Jory +Joseantonio +Khoa +Kraig +Laron +Lavell +Leobardo +Liam +Lindsey +Lyndon +Marcoantonio +Nabil +Nathen +Nicole +Niles +Phi +Porfirio +Raudel +Reece +Reese +Reymundo +Rickie +Ronell +Roosevelt +Rosa +Ryon +Samer +Samual +Serjio +Shon +Stacy +Stephon +Talon +Terell +Tim +Virgil +Vladimir +Yeng +Abner +Adnan +Adriana +Adriel +Alton +Amar +An +Ana +Anders +Angelica +Anh +Antione +Antone +Ara +Arian +Arya +Augustin +Bert +Brien +Bryn +Burton +Cecilio +Charley +Chet +Christoher +Christophe +Cliff +Coty +Dang +Dangelo +Dejuan +Demetrio +Deonte +Diamond +Dimitri +Dionicio +Edgard +Eliezer +Elvin +Ephraim +Ever +Francesco +Garin +Genesis +Gian +Harlan +Harout +Harpreet +Isidoro +Jacinto +Javon +Jeanpierre +Jermain +Joanna +Job +Jorgeluis +Karim +Karina +Kc +Kennedy +Kimberly +Kimo +Madison +Malik +Manny +Marcello +Marlin +Marshal +Maximiliano +Megan +Melissa +Michaelanthony +Milan +Modesto +Monica +Monty +Nader +Narciso +Niall +Paris +Princeton +Quintin +Rahul +Rajiv +Ramsey +Rasheed +Rashid +Renato +Rishi +Sai +Samir +Santino +Sevag +Shelton +Spenser +Stevan +Sunil +Sydney +Taurean +Tevita +Theo +Timmothy +Timmy +Turner +Vicent +Vijay +Vishal +Waylon +Willard +Zack +Adolph +Ajay +Alessandro +Alphonso +Angela +Anson +Arash +Arin +Armon +Arnel +Asa +Bernie +Binh +Bjorn +Buddy +Candido +Carey +Chandler +Chao +Chong +Claudia +Coby +Coy +Cuauhtemoc +Cynthia +Daisy +Daneil +Danniel +Dao +Darcy +Darron +Demarcus +Dimas +Donell +Durell +Duy +Elbert +Elton +Enrico +Errick +Favio +Garrick +Geronimo +Gianni +Gideon +Giorgio +Giovani +Immanuel +Jacqueline +Jamelle +Jarrell +Jarryd +Jarvis +Jayme +Jenaro +Jerell +Jessi +Joan +Johathan +Johnmichael +Jonatan +Jorden +Joshuah +Juventino +Kellan +Khang +Kunal +Lavelle +Leandre +Leng +Lorena +Lue +Lukas +Ly +Marcial +Marino +Markell +Micahel +Michal +Migel +Milo +Mohamad +Mohamed +Monte +Nevin +Nolberto +Norbert +Percy +Ravi +Raymon +Rebecca +Rodger +Rohit +Rosalio +Roscoe +Sameer +Sandra +Sang +Seng +Serafin +Servando +Sesar +Shan +Shay +Silvano +Stevie +Syed +Tai +Teng +Theron +Trey +Tye +Tyree +Ulices +Valentino +Vikram +Virgilio +Vue +Walker +Wendy +Wilfred +Williams +Yer +Yonatan +Yousef +Aidan +Albaro +Alfonzo +Amer +Andrae +Angeldejesus +Antwone +Archie +Aristeo +Arlen +Arman +Armondo +Arvin +Auston +Avraham +Bart +Benton +Bobak +Brant +Britt +Brittan +Brook +Byran +Carmen +Cha +Chistian +Christen +Chue +Corbin +Cord +Cornelio +Cortney +Curt +Cyle +Daivd +Damion +Dayne +Dayton +Deangelo +Denise +Deondre +Deron +Destin +Devlin +Domenic +Domonique +Duc +Duran +Easton +Ed +Elan +Elio +Emery +Frederic +Fue +Geovanni +Gildardo +Hasan +Heather +Henri +Hiram +Houston +Iban +Ichael +Isabel +Jabier +Jair +Jarell +Jarret +Jashua +Jeanette +Jefferey +Jerred +Jethro +Jimi +Johan +Johann +Jonny +Jonthan +Josede +Jovon +Juaquin +Juston +Kahlil +Kane +Kenyon +Keoni +Khalid +King +Kori +Ky +Kyler +Laura +Lavon +Leandro +Lemuel +Leron +Leticia +Lincoln +Lisa +Luc +Lynn +Mack +Marko +Maxim +Michaelangelo +Mikael +Mychael +Mychal +Napoleon +Nguyen +Nhan +Ori +Peng +Quan +Ramone +Raquel +Remington +Reno +Richie +Rufus +Ryder +Rylan +Sabino +Sal +Sarkis +Saulo +Schuyler +Seamus +Shahin +Shaunt +Sundeep +Tam +Tarik +Tariq +Terron +Thien +Thor +Tien +Tiffany +Tito +Toni +Trevin +Trevon +Tyrel +Yosef +Young +Abdul +Akira +Alegandro +Alek +Alicia +Alison +Alphonse +Amandeep +Amilcar +Amin +Amy +Anand +Anastacio +Anselmo +Armond +Arnie +Augusto +Basil +Bladimir +Blain +Blanca +Blayne +Blong +Bonifacio +Bravlio +Brennon +Brion +Brittany +Cal +Carnell +Celso +Chan +Chrystian +Ciro +Codey +Constantino +Crispin +Cristhian +Dain +Dallin +Darell +Darian +Daryll +Dat +Daveon +Dax +Deante +Deanthony +Delano +Delvin +Deric +Derric +Deshon +Dionte +Dmitri +Dominque +Dung +Dupree +Edison +Ehren +Eldon +Eliazar +Elihu +Ellison +Emmitt +Erica +Errol +Evaristo +Evin +Fortino +Fransico +Gabino +Garland +Gaspar +Gaston +Gloria +Gumaro +Gurpreet +Haig +Hal +Han +Hansel +Hayden +Hipolito +Homero +Hong +Horace +Imran +Isac +Ishmael +Jafet +Jai +Jamarr +Jamon +Janmichael +Jarel +Jarom +Jarrad +Jaryd +Jedediah +Jenna +Jens +Jerick +Joeseph +Johannes +Jonmichael +Josemanuel +Juanito +Jude +Julia +Juliocesar +Justino +Kamron +Karla +Kendal +Khanh +Kieran +Lemar +Liliana +Linda +Linh +Macario +Magdaleno +Marcellus +Maribel +Marion +Mathieu +Maverick +Maximino +Mckinley +Michaeljohn +Mikal +Mikhail +Mitch +Mustafa +Mykel +Mynor +Nicholes +Nicholos +Nicklas +Nicklaus +Obed +Odell +Omid +Orry +Patricio +Paulino +Peyton +Philipe +Phu +Quinten +Rachel +Rainier +Raj +Ramzi +Rand +Randel +Randon +Rashaad +Rashawn +Reza +Rhys +Rod +Rodrick +Rohan +Romel +Rondell +Ronnell +Rudi +Rufino +Saeed +Sage +Salbador +Sami +San +Sawyer +Severo +Shad +Somnang +Tal +Terrel +Timoteo +Toua +Tramaine +Travell +Traveon +Travion +Tristen +Tristian +Triston +Truman +Valentine +Vang +Victoria +Vito +Vivek +Wiliam +Yancy +Yee +Zakary +Abdiel +Abelino +Able +Abrahan +Abran +Acie +Adeel +Adison +Adriano +Aj +Akash +Alberta +Alejando +Alexzander +Allison +Alverto +Ambrose +Andrey +Antuan +Antwain +Apollo +Aren +Aria +Ariana +Arie +Armin +Artin +Asad +Audel +Babak +Barak +Barton +Basilio +Bayron +Bilal +Blaze +Bobbie +Bradlee +Bradon +Brayan +Brayden +Brodie +Cade +Camden +Candelario +Carlin +Cervando +Chace +Charlton +Chay +Christan +Christapher +Christiaan +Christin +Christine +Christoffer +Cj +Clive +Cosme +Cuahutemoc +Dai +Dameon +Darien +Darion +Darris +Daunte +Delfino +Demar +Demond +Derron +Derwin +Devonte +Dewey +Domonic +Doyle +Dru +Ector +Egan +Eladio +Eliana +Eliceo +Emir +Ericson +Esgar +Esmond +Fabiola +Farid +Felton +Flint +Frisco +Froylan +Gaetano +Garo +Garth +Gavino +Geovanny +Germaine +Gerrit +Gerry +Giovanny +Glendon +Gonsalo +Gray +Gustabo +Ha +Hagop +Hakop +Halley +Hamilton +Herminio +Herschel +Hien +Hiep +Hieu +Homer +Hovsep +Iain +Ilan +Jacky +Jacoby +Jaison +Jamall +Jamey +Janathan +Jane +Jaret +Jarett +Jasmin +Jasson +Javan +Jayro +Jc +Jeancarlo +Jelani +Jeron +Jhonatan +Jimmylee +Jjesus +Joao +Jocob +Joell +Jomar +Jonatha +Jonerik +Jorel +Joseangel +Joselito +Jospeh +Jossue +Josua +Jourdan +Jovanie +Juanmanuel +Jules +Jun +Jushua +Kayvon +Kellin +Keon +Keone +Kerwin +Khristopher +Klaus +Konrad +Kourosh +Ku +Kwame +Kye +Lamberto +Lamonte +Lan +Landen +Lanny +Leighton +Lennon +Lenny +Lesley +Lindsay +Lizette +Loran +Lourdes +Luca +Lucky +Luigi +Luisalberto +Mac +Malcom +Mandeep +Marek +Marie +Marin +Markeith +Marqus +Marshawn +Mateo +Mattew +Maximo +Melchor +Mick +Mong +Moshe +Mostafa +Natividad +Naveen +Neftali +Nhia +Nicky +Nicolaus +Norris +Omero +Oren +Osiel +Osmin +Pascal +Patric +Paula +Payton +Phuong +Price +Quoc +Rajan +Raleigh +Rami +Randolf +Ratana +Raymund +Refujio +Renard +Ricard +Rich +Richmond +Rio +Rito +Robb +Robinson +Roel +Santana +Sarith +Shaine +Sharon +Shaughn +Sheridan +Shiloh +Siaosi +Silvino +Sina +Sixto +Skye +Smith +Sophal +Sophana +Stacey +Steffan +Steffen +Stepan +Takashi +Tavis +Terrill +Thad +Thao +Thong +Thuan +Toan +Tomer +Torian +Toribio +Torin +Torrance +Tramel +Tristin +Tu +Tung +Tyrus +Vernell +Vi +Vic +Vincenzo +Vinson +Vittorio +Waldo +Ward +Wes +Wilfrido +Willian +Yesenia +Yovany +Yusef +Yusuf +Michael +Christopher +Daniel +David +Matthew +Andrew +Joshua +Robert +Anthony +Ryan +Jose +Joseph +Jonathan +John +Justin +James +Kevin +Eric +Nicholas +Jason +Brian +Steven +Brandon +Kyle +Richard +William +Alexander +Juan +Jeffrey +Sean +Thomas +Timothy +Adam +Aaron +Luis +Jacob +Benjamin +Mark +Jeremy +Carlos +Scott +Paul +Jesse +Bryan +Jesus +Samuel +Tyler +Travis +Patrick +Miguel +Stephen +Zachary +Charles +Gregory +Kenneth +Victor +Francisco +Nathan +Jorge +Edward +Jordan +Manuel +Gabriel +Adrian +Derek +Christian +Alex +Antonio +Edgar +Ricardo +Mario +Peter +Raymond +Dustin +Alejandro +Cody +Oscar +Erik +Sergio +Joel +Hector +Martin +Vincent +Ruben +Frank +Ian +Roberto +Javier +Jared +George +Shane +Bradley +Angel +Chad +Fernando +Cameron +Shawn +Cory +Phillip +Brett +Trevor +Eduardo +Corey +Ronald +Evan +Raul +Armando +Casey +Marcus +Alan +Henry +Garrett +Jaime +Danny +Johnny +Austin +Keith +Rafael +Nathaniel +Pedro +Omar +Cesar +Donald +Arturo +Salvador +Ivan +Albert +Alberto +Philip +Devin +Tony +Andres +Julio +Randy +Julian +Douglas +Gary +Emmanuel +Ramon +Spencer +Dennis +Gustavo +Alfredo +Steve +Taylor +Isaac +Jimmy +Rene +Gerardo +Enrique +Marco +Wesley +Ernesto +Edwin +Derrick +Blake +Dylan +Johnathan +Russell +Mitchell +Andre +Arthur +Erick +Allen +Brent +Curtis +Max +Mathew +Abraham +Marc +Craig +Joe +Colin +Larry +Kristopher +Marcos +Nicolas +Shaun +Dominic +Jeremiah +Diego +Troy +Jerry +Todd +Gilbert +Louis +Ricky +Jonathon +Lawrence +Rudy +Jake +Jack +Andy +Chase +Bryant +Josue +Bryce +Darren +Walter +Lucas +Roger +Jeffery +Eddie +Grant +Rodolfo +Seth +Luke +Saul +Jessie +Randall +Guillermo +Lance +Brendan +Pablo +Bobby +Israel +Maxwell +Clayton +Alfonso +Calvin +Carl +Hugo +Micheal +Rogelio +Ismael +Caleb +Geoffrey +Abel +Marvin +Logan +Roy +Moises +Felipe +Fabian +Ernest +Orlando +Elias +Lorenzo +Gerald +Ross +Esteban +Jon +Billy +Drew +Theodore +Jay +Morgan +Rodney +Lee +Devon +Miles +Neil +Leonard +Alvaro +Byron +Ramiro +Terry +Alfred +Felix +Humberto +Freddy +Tommy +Gilberto +Nelson +Giovanni +Dean +Maurice +Ronnie +Xavier +Eugene +Ray +Leonardo +Reginald +Simon +Clinton +Nickolas +Tristan +Branden +Cole +Noah +Adan +Darrell +Frederick +Joey +Noe +Emanuel +Glenn +Wayne +Dale +Jamie +Jerome +Joaquin +Ralph +Willie +Alvin +Bruce +Noel +Deandre +Efrain +Ignacio +Allan +Rigoberto +Franklin +Isaiah +Oliver +Rodrigo +Cristian +Alexis +Vicente +Jamal +Levi +Micah +Elijah +Darryl +Kelly +Preston +Rolando +Dillon +Emilio +Francis +Gavin +Clifford +Mauricio +Tyson +Agustin +Collin +Santiago +Angelo +Dane +Nestor +Roman +Stanley +Charlie +Leo +Damian +Mike +Sam +Leonel +Nolan +Hunter +Kenny +Mason +Stephan +Frankie +Octavio +Tyrone +Daryl +Rick +Adolfo +Antoine +Sebastian +Wade +Warren +Brad +Ethan +Kurt +Terrence +Connor +Don +Stuart +Tomas +Kirk +Leon +Louie +Kurtis +Alec +Harold +Kelvin +Melvin +Chris +Damien +Donovan +Elliott +Gonzalo +Jairo +Karl +Lamar +Roland +Eli +Johnathon +Guadalupe +Moses +Myles +Rory +Bret +Landon +Marlon +Brennan +Damon +Dante +Howard +Marshall +Ulysses +Aldo +Bernardo +Reuben +Harrison +Harry +Arnold +Colby +Beau +Brady +Josiah +Kent +Loren +Skyler +Terrance +Fidel +Raymundo +Terrell +Lewis +Santos +Stefan +Alonzo +Cristopher +Freddie +Kory +Norman +Amir +Dominique +Elliot +Malcolm +Pierre +Wyatt +Jayson +Joseluis +Nick +Riley +Trenton +Zachariah +Brenton +Brock +Dallas +Heriberto +Reynaldo +Uriel +Blaine +Darnell +Jermaine +Osvaldo +Perry +Weston +Dwayne +Efren +Fred +Lionel +Wilson +Ali +Brenden +Clarence +Dario +German +Graham +Gregorio +Jeff +Julius +Marcel +Marquis +Nathanael +Deshawn +Dexter +Forrest +Kellen +Dan +Earl +Elvis +Jackson +Dana +Darin +Isidro +Rashad +Tanner +Zackary +Bernard +Dominick +Dwight +Glen +Lloyd +Trent +Barry +Cedric +Desmond +Jessica +Johnson +Terence +Ulises +Vernon +Ariel +Dorian +Ernie +Federico +Gordon +Isaias +Jarred +Jim +Mohammad +Dakota +Darius +Guy +Johnnie +Roderick +Ted +Tom +Estevan +Robin +Sammy +Brendon +Davis +Derick +Duane +Korey +Milton +Rocky +Sonny +Ashley +Benny +Brice +Clark +Johnpaul +Kody +Owen +Bryon +Chance +Demetrius +Donte +Gene +Juancarlos +Alexandro +Clint +Conrad +Jarrett +Jovan +Ken +Parker +Rickey +Sterling +Ben +Elmer +Garret +Herman +Quinn +Skylar +Jamar +Jess +Pete +Tyrell +Zachery +Alonso +Genaro +Jimmie +Kasey +Kristian +Miguelangel +Wilfredo +Carson +Edwardo +Jarrod +Lonnie +Maximilian +Bradford +Clay +Conor +Eliseo +Erwin +Jarod +Kristofer +Mychal +Nikolas +Ahmad +Avery +Carlton +Darrin +Lyle +Marcelino +Neal +Ty +Carlo +Floyd +Jean +Keven +Leopoldo +Randolph +Stewart +Valentin +Addison +Benito +Courtney +Cristobal +Cruz +Gino +Hans +Jamaal +Jaron +Maria +Randal +Reid +Shea +Tou +Zane +Chadwick +Dion +Everardo +Everett +Ezequiel +Fredrick +Gerard +Lester +Ron +Tracy +Antony +Erich +Hernan +Marcelo +Mariano +Markus +Shayne +Arnulfo +Aron +Arron +Chaz +Dave +Edgardo +Franco +Fredy +Rex +Shannon +Solomon +Andreas +Clifton +Cyrus +Denny +Deon +Devan +Elizabeth +Galen +Harvey +Herbert +Irvin +Issac +Jameson +Jasper +Jordon +Kaleb +Keenan +Leslie +Mackenzie +Raphael +Tuan +Vance +Amit +Anton +Ashton +Bryson +Colton +Grayson +Irving +Kendrick +Kristoffer +Oswaldo +Reed +Rosendo +Sheldon +Spenser +Teddy +Tobias +Tory +Travon +Will +Brain +Braulio +Chester +Colt +Darrel +Domingo +Dusty +Garry +Griffin +Junior +Kerry +Leroy +Luiz +Nigel +Rudolph +Toby +Westley +Zackery +Caesar +Giancarlo +Isiah +Jamison +Jeromy +Jessy +Josef +Lamont +Leland +Nima +Osbaldo +Royce +Adalberto +Brandan +Corbin +Davon +Dewayne +Eddy +Eriberto +Horacio +Jackie +Jennifer +Kendall +Lazaro +Luciano +Lucio +Marques +Mauro +Maximillian +Mohammed +Quentin +Quincy +Rhett +Rico +Sidney +Anibal +Aurelio +Claudio +Deven +Edmund +Filiberto +Gorge +Grady +Heath +Jeramy +Jerrod +Joesph +Keegan +Lane +Leobardo +Long +Robby +Trinidad +Alain +Arnoldo +Blair +Bradly +Brenda +Cooper +Cornelius +Eder +Jamil +Jefferson +Jeffry +Juanmanuel +Marquise +Myron +Norberto +Paris +Ramsey +Reyes +Salvatore +Titus +Virgil +Clemente +Ezra +Greg +Jamel +Jerald +Jessi +Jonah +Laurence +Romeo +Winston +Adriel +Alden +Alton +Augustine +Barrett +Bill +Braden +Brooks +Cary +Dalton +Danilo +Darwin +Demario +Donnie +Duncan +Emiliano +Erin +Fermin +Giovanny +Hugh +Kameron +Maximiliano +Mayra +Mitchel +Phong +Stephanie +Trever +Vidal +Alphonso +Arash +Arman +Baltazar +Bennett +Cheyne +Christina +Coleman +Dandre +Deonte +Donavan +Erasmo +Hilario +Jered +Josh +Kareem +Lino +Melissa +Mohamed +Pascual +Scotty +Tommie +Torrey +Vince +Yesenia +Armen +Brandyn +Camilo +Carter +Damion +Daren +Dejuan +Derik +Donnell +Ervin +Faustino +Jefferey +Jerardo +Jerrell +Kalen +Kao +Kenton +Marty +Michel +Michelle +Mikel +Nam +Paulo +Pierce +Rey +Ronny +Shant +Sylvester +Timmy +Ubaldo +Valentino +Vaughn +Anderson +Cassidy +Ceasar +Chandler +Conner +Diana +Edmond +Edson +Emerson +Fausto +Garett +Gil +Jerad +Kai +Kamran +Kou +Lauren +Madison +Marcial +Markanthony +Nancy +Nehemiah +Nery +Nicholaus +Quintin +Rueben +Samir +Samson +Thaddeus +Thanh +Trayvon +Van +Willy +Ahmed +Al +Amos +Ari +Armand +Cheng +Christoper +Cordero +Cornell +Derrek +Dontae +Edmundo +Ezekiel +Favian +Fransisco +Gerry +Gregg +Harley +Hassan +Jace +Jayce +Jayme +Jedidiah +Jerod +Johathan +Julien +Kyler +Malachi +Migel +Minh +Monte +Raymon +Rusty +Scot +Shelby +Sherman +Sunny +Tim +Tucker +Tylor +Wilmer +Artemio +Aubrey +Austen +Bee +Bernabe +Bronson +Cale +Daron +Deric +Drake +Edgard +Eloy +Huy +Jarell +Jeramie +Jonas +Jovani +Jovanny +Keaton +Kelsey +Kevan +Kiel +Laron +Leif +Lukas +Marcell +Mateo +Mickey +Mychael +Otto +Renato +Russel +Salomon +Sarkis +Serjio +Stephon +Trey +Tyree +Uriah +Vu +Abram +Amador +Andrea +Antione +Arnaldo +Bijan +Camron +Chasen +Clyde +Cyle +Dashawn +Denver +Eliot +Ellis +Elton +Florencio +Francesco +Gabino +Gabriela +Garth +Giovani +Hayden +Jacques +Javon +Jaymes +Johny +Juliocesar +Justen +Karen +Kennith +Kris +Manny +Martel +Misael +Nathanial +Nicole +Omid +Otis +Refugio +Renee +Richardo +Rojelio +Sang +Silas +Tad +Tong +Trung +Vanessa +Vincente +Ajay +Alexandre +Anders +Arian +Aric +Axel +Bao +Bo +Brandin +Brennen +Buddy +Cecil +Cedrick +Celso +Cordell +Dagoberto +Denis +Dino +Duke +Emmett +Fabio +Flavio +Greggory +Hagop +Heather +Hung +Isabel +Jan +Jarvis +Jasen +Jeremie +Jerimiah +Jody +Jonatan +Jonnathan +Justine +Justyn +Juvenal +Kim +Kraig +Marcellus +Marcoantonio +Mikael +Mitch +Muhammad +Nikhil +Pheng +Prince +Ramin +Reggie +Richie +Rodger +Ryland +Tito +Ulisses +Viet +Vito +Wendell +Willis +Abelardo +Aidan +Albaro +Amanda +Amar +Anson +Aram +Archie +Baron +Benedict +Bennie +Boris +Calen +Carey +Chan +Chistopher +Chong +Christen +Claudia +Cristina +Cuong +Curt +Darrick +Deandra +Delbert +Denise +Donny +Enoch +Enrico +Errol +Esequiel +Fong +Geraldo +Hank +Hoang +Immanuel +Jakob +Jamelle +Jerel +Jereme +Jeremey +Kane +Kellan +Leandro +Levon +Liam +Lowell +Luther +Margarito +Martell +Meng +Monica +Moshe +Nader +Orion +Pao +Philippe +Quang +Rachel +Rickie +Rigo +Ritchie +Robbie +Rohan +Rony +Rosalio +Sal +Sandra +Sarah +Schuyler +Stacy +Talon +Tarek +Timmothy +Williams +Zechariah +Ace +Adriana +Alejandra +Anselmo +Armond +Arvin +Billie +Brittany +Buck +Carlin +Daisy +Daneil +Davin +Davion +Dejon +Derrell +Derrik +Desean +Devyn +Dimitri +Dirk +Douglass +Eldon +Erika +Forest +Frederic +Garen +Geovanni +Gerson +Gian +Hamilton +Ira +Jabari +Jashua +Jed +Jeremias +Josedejesus +Jovany +Jovon +Juanjose +Juanpablo +Kong +Lars +Lauro +Lindsey +Lyndon +Macario +Marcello +Marquez +Mary +Matt +Mikhail +Morris +Nathen +Norris +Patricia +Peng +Percy +Reno +Reymundo +Rian +Rommel +Samer +Samual +Sasha +Servando +Shay +Shiloh +Shon +Son +Steffan +Thai +Travion +Trevin +Trevon +Tu +Whitney +Wilbert +Willard +Abrahan +Alfonzo +Amado +Antwan +Apollo +Aris +Arya +August +Baby +Bert +Blayne +Bob +Camden +Candelario +Candido +Carmen +Cecilio +Charley +Cheyenne +Claude +Conrado +Cord +Corwin +Danniel +Darian +Delfino +Dionte +Edison +Eleazar +Ely +Emil +Esau +Evelyn +Feliciano +Franklyn +Garrick +Garrison +Gaspar +Gaston +Ger +Gerrit +Gray +Hieu +Holden +Isrrael +Jarret +Jeanpaul +Joan +Joanthan +Johannes +Jorje +Jory +Joseangel +Josede +Josemanuel +Jourdan +Judah +Kimberly +Kirby +Kristen +Luismiguel +Lynn +Malik +Matthias +Moua +Neema +Nikolaus +Niles +Obed +Oren +Paolo +Porfirio +Quinton +Rahul +Ramses +Reece +Remington +Remy +Reza +Rob +Rocio +Roosevelt +Salman +Santino +Sara +Shan +Skye +Stefano +Steffen +Tai +Tam +Theo +Tino +Torin +Tristen +Tye +Tyron +Vang +Veronica +Vikram +Vishal +Abner +Adil +Adrain +Akeem +Alessandro +Ana +Angelica +Anil +Barron +Benton +Bobbie +Britton +Broc +Bruno +Christoher +Coby +Coty +Courtland +Crystal +Cuauhtemoc +Cynthia +Daivd +Dara +Deangelo +Demetri +Dereck +Deron +Deshaun +Deshon +Dimas +Dionicio +Domenic +Donell +Durrell +Dwain +Earnest +Eden +Elan +Elbert +Eliazar +Emily +Ever +Ferdinand +Fletcher +Fortino +Geno +Gianni +Gideon +Giorgio +Homero +Houston +Hubert +Iain +Ilan +Jacobo +Jacqueline +Jarrell +Jaysen +Jazmin +Jeanette +Jedediah +Jerrad +Jerred +Johnmichael +Jonny +Jovanni +Jules +Juston +Kale +Kevon +Khang +Khristopher +Kunal +Lamonte +Laura +Lincoln +Luisangel +Maritza +Matias +Maximino +Michaelanthony +Michale +Mikal +Milo +Mustafa +Mynor +Najee +Napoleon +Natalie +Paulino +Phillipe +Phuc +Quoc +Raj +Ravi +Rayshawn +Reese +Renzo +Rhys +Ricahrd +Rocco +Rod +Royal +Rufino +Ryne +Ryon +Samantha +Sameer +San +Serafin +Sharif +Sherwin +Sione +Sky +Stacey +Stanford +Sundeep +Tobin +Tyrel +Valente +Vicent +Vinh +Xiong +Yeng +Zack +Abdullah +Abran +Adnan +Adonis +Akira +Aleksander +Alexsander +Alicia +Anastacio +Andrae +Andranik +Angela +Angus +Anh +Anthoney +Antone +Aramis +Armondo +Arsenio +Art +Asa +Bailey +Barney +Barret +Benjamen +Bernie +Blas +Brandy +Brant +Braxton +Bretton +Brody +Brook +Cash +Chadd +Chauncey +Che +Christine +Christofer +Chue +Cindy +Corry +Cortney +Dain +Dameon +Danial +Daveon +Davy +Delton +Domonic +Duran +Eliezer +Elisha +Elvin +Erica +Esgar +Etienne +Eugenio +Eusebio +Florentino +Franz +Gerado +Gildardo +Graeme +Gumaro +Gurpreet +Harlan +Hasan +Herschel +Hipolito +Houa +Hue +Ibrahim +Imran +Isac +Isai +Isreal +Ivory +Jacinto +Jade +Jaimie +Jair +Jameel +Jaspreet +Jensen +Jerin +Jeshua +Jestin +Job +Jonthan +Jorel +Joseantonio +Joshuah +Juanito +Kalani +Kamal +Karim +Karlton +Kc +Kelley +Kenji +Keon +Khalid +Ky +Lamberto +Leandre +Lindsay +London +Lorne +Marcanthony +Marko +Marlin +Marlo +Mattew +Mckinley +Melchor +Micahel +Michaeljames +Mohamad +Montana +Montrell +Nabil +Nguyen +Nicklas +Nicklaus +Nicolaus +Norbert +Oracio +Osiel +Patricio +Peyton +Quan +Raffi +Raleigh +Raymund +Rito +Robbin +Ronnell +Roque +Rudolfo +Sandro +Seamus +Shadi +Shaka +Silvestre +Simeon +Stanton +Stevie +Sydney +Tan +Tariq +Teng +Thor +Tramaine +Tristian +Truman +Vinson +Vladimir +Waylon +Wendy +Westin +Ying +Adel +Adrien +Albino +Alexandra +Amandeep +Ambrose +Ameer +Amin +Amy +An +Anand +Andrei +Ansel +Antonia +Antuan +Arick +Arlen +Asher +Augusto +Aundre +Basil +Bejamin +Benson +Bernardino +Binh +Bjorn +Blaze +Booker +Brandt +Breck +Brennon +Brien +Broderick +Catarino +Cha +Chandara +Chantha +Charly +Chas +Christoffer +Christophe +Ciro +Conan +Constantine +Constantino +Cullen +Dajuan +Damen +Dao +Darryll +Davione +Dedrick +Demarcus +Deondre +Devion +Devonte +Dewitt +Dimitrios +Donato +Donta +Doug +Duc +Duy +Edsel +Eladio +Elgin +Elio +Emery +Ephraim +Estuardo +Evaristo +Farid +Fidencio +Franky +Gamaliel +Gareth +Garin +Garren +Geoffery +Geovani +Geroge +Geronimo +Giovannie +Grigor +Gunnar +Gustabo +Habib +Hai +Hakim +Hansel +Henri +Hiram +Holland +Homar +Irwin +Jame +Jamin +Janet +Janmichael +Jarad +Jaren +Jarrad +Jarryd +Jasmin +Jayro +Jenaro +Jermey +Jerrick +Jessee +Jevon +Jhon +Jhonathan +Jhonny +Johann +Jonahtan +Jonatha +Jorden +Jorgeluis +Josemiguel +Jossue +Joy +Jr +Juanluis +Justo +Kacey +Kaveh +Keane +Kegan +Kelton +Kenan +Kendell +Kenney +Kenyon +Keoni +Kieran +Kip +Kolby +Lafayette +Lamarr +Leigh +Lemar +Lisandro +Lo +Lon +Loreto +Lorin +Lovell +Luigi +Mahdi +Malek +Marciano +Markeith +Marshawn +Maxfield +Modesto +Nahum +Nash +Natividad +Neftali +Nicky +Nikolai +Norma +Obrian +Odell +Patric +Payton +Phi +Phil +Rami +Ramzi +Ramzy +Randel +Randell +Randon +Rashaad +Rebecca +Regan +Reinaldo +Ricki +Rishi +River +Romulo +Rosa +Rustin +Sabino +Sahil +Sai +Sampson +Sandy +Shain +Shelton +Stevan +Sue +Takashi +Taron +Teodoro +Terrel +Thang +Thien +Tiffany +Tj +Toni +Tracey +Tremayne +Virgilio +Waldo +Waleed +Wallace +Wilber +Wilfred +Winfred +Yousef +Yusuf +Zach +Abdul +Abelino +Abisai +Adams +Aditya +Aj +Alen +Allyn +Alvino +Alwin +Amadeo +Ambrosio +Amilcar +Andrez +Anjel +Anna +Arek +Aren +Arie +Aries +Arin +Aristides +Arjun +Arley +Armon +Artis +Ashwin +Audel +Augustin +Augustus +Aziz +Babak +Baldomero +Bart +Bayron +Blaise +Blane +Blong +Bobak +Brannon +Bravlio +Brayan +Burton +Byran +Cardell +Carmelo +Carnell +Casimiro +Cesario +Chang +Channing +Chet +Chirag +Chirstopher +Chrisopher +Christipher +Christos +Chrystopher +Colter +Cortez +Cosme +Cy +Dang +Darion +Darriel +Dashaun +Deante +Deanthony +Deaundre +Delano +Delvin +Demarco +Demetris +Derwin +Devaughn +Didier +Dijon +Djuan +Domonique +Edder +Edlin +Eduard +Eleno +Elie +Eligio +Elpidio +Emigdio +Emile +Enrigue +Enrrique +Erie +Errick +Evin +Farhan +Francisca +Franciscojavier +Francois +Garland +Genesis +Georgio +Geovanny +Geremy +Germain +Gibran +Giovany +Gloria +Glynn +Graig +Gyasi +Haig +Hamed +Hamid +Hao +Harout +Harpreet +Hawk +Hien +Hollis +Isacc +Ishmael +Jamari +Jamell +Jazz +Jd +Jelani +Jeramiah +Jerell +Jermiah +Jeron +Jerrel +Jerren +Jerrin +Joanna +Jocob +Joeseph +Johan +Johnanthony +Jonmichael +Josemaria +Josje +Jospeh +Juaquin +Judd +Jude +Julie +Kalvin +Kamron +Karlos +Katherine +Kelson +Kennan +Kennedy +Kevyn +Keyon +Kieth +Kile +Kingsley +Lam +Laszlo +Lavelle +Lawson +Leng +Lenin +Lenny +Liliana +Lisa +Loc +Lois +Lonny +Lou +Lucky +Luisalberto +Lupe +Lydia +Mack +Majid +Manual +Marion +Marisol +Marque +Marquel +Marten +Maurilio +Maverick +Maxim +Merced +Merritt +Miklos +Miquel +Montgomery +Mykel +Natanael +Ned +Nghia +Nicholes +Nicholis +Nichols +Nickolaus +Olin +Omari +Omeed +Osman +Padraic +Pascal +Paulmichael +Phu +Raheem +Rainier +Raja +Rajiv +Randeep +Rashid +Raudel +Rayn +Ren +Rich +Riki +Rio +Rj +Robinson +Rodrick +Roel +Romero +Ronaldo +Rondale +Rosario +Roshan +Rothana +Rudi +Rudolf +Rupert +Ryder +Rylan +Ryle +Saad +Sage +Sami +Saulo +Sayed +Sevag +Shae +Shahin +Shaw +Shomari +Sid +Silvano +Silvino +Silvio +Sixto +Smith +Socorro +Sonia +Sung +Syed +Takuya +Taurean +Teofilo +Theron +Thinh +Toan +Tonny +Toua +Traveon +Tremaine +Tri +Triston +Vahe +Valentine +Vannak +Vernell +Vinay +Watson +Wes +Wilbur +Woodrow +Yan +Yancy +Yee +Yonatan +Yonathan +Yosef +Zebulon +Zenas +Ziad +Michael +Christopher +Daniel +David +Matthew +Andrew +Joshua +Robert +Anthony +Jose +Jonathan +Ryan +Justin +Joseph +James +Nicholas +John +Kevin +Eric +Brian +Steven +Brandon +Alexander +Kyle +Richard +William +Jason +Juan +Thomas +Aaron +Sean +Timothy +Jeffrey +Adam +Luis +Jacob +Mark +Carlos +Jesse +Tyler +Benjamin +Jesus +Paul +Jeremy +Zachary +Samuel +Scott +Patrick +Bryan +Travis +Miguel +Victor +Charles +Stephen +Jorge +Francisco +Kenneth +Ricardo +Nathan +Christian +Edward +Gregory +Adrian +Gabriel +Alex +Cody +Jordan +Mario +Manuel +Antonio +Edgar +Derek +Cameron +Raymond +Erik +Vincent +Peter +Alejandro +Oscar +Martin +George +Sergio +Eduardo +Dustin +Hector +Jared +Austin +Ian +Ruben +Javier +Joel +Shane +Angel +Trevor +Fernando +Frank +Roberto +Evan +Cory +Chad +Phillip +Shawn +Bradley +Ivan +Raul +Corey +Marcus +Cesar +Taylor +Johnny +Danny +Ronald +Brett +Jaime +Garrett +Keith +Casey +Omar +Armando +Alberto +Pedro +Rafael +Alan +Henry +Andres +Marco +Salvador +Arturo +Nathaniel +Gerardo +Julian +Donald +Albert +Tony +Spencer +Gary +Philip +Edwin +Douglas +Randy +Devin +Ernesto +Mitchell +Isaac +Jimmy +Alfredo +Julio +Wesley +Dennis +Blake +Steve +Johnathan +Abraham +Joe +Enrique +Dylan +Curtis +Ramon +Nicolas +Andre +Troy +Emmanuel +Erick +Gustavo +Mathew +Rene +Brent +Jerry +Allen +Craig +Derrick +Diego +Marcos +Arthur +Ricky +Bryce +Roger +Lawrence +Russell +Bryant +Andy +Jonathon +Louis +Rudy +Jeremiah +Kristopher +Walter +Chase +Colin +Marc +Max +Logan +Guillermo +Josue +Seth +Eddie +Larry +Gilbert +Jack +Jake +Lucas +Dominic +Hugo +Maxwell +Alfonso +Grant +Abel +Luke +Todd +Jeffery +Israel +Darren +Saul +Marvin +Caleb +Carl +Calvin +Ismael +Brendan +Shaun +Jessie +Pablo +Randall +Felipe +Fabian +Rodolfo +Lance +Moises +Devon +Giovanni +Geoffrey +Lee +Bobby +Esteban +Gilberto +Gerald +Orlando +Noah +Rogelio +Xavier +Jay +Drew +Elias +Billy +Micheal +Ross +Miles +Nelson +Jon +Roy +Terry +Clayton +Ramiro +Rodney +Bruce +Byron +Ronnie +Irvin +Cristian +Freddy +Isaiah +Maurice +Noe +Dean +Ernest +Leonardo +Theodore +Tommy +Simon +Mason +Nestor +Eugene +Alfred +Rigoberto +Leonard +Efrain +Morgan +Roman +Mike +Neil +Ray +Alvaro +Lorenzo +Allan +Branden +Levi +Mauricio +Adan +Joey +Kurt +Dillon +Elijah +Humberto +Ignacio +Nickolas +Clinton +Francis +Reginald +Wayne +Connor +Dane +Franklin +Felix +Angelo +Darryl +Rodrigo +Ethan +Irving +Johnathon +Kirk +Jerome +Preston +Stanley +Noel +Deandre +Alexis +Alvin +Dominique +Emilio +Terrance +Willie +Cole +Kenny +Rolando +Damian +Kelly +Darrell +Sam +Vicente +Frederick +Glenn +Micah +Collin +Donovan +Harrison +Leonel +German +Terrence +Jamie +Octavio +Agustin +Ralph +Sebastian +Beau +Joaquin +Dale +Elliot +Emanuel +Melvin +Tomas +Jairo +Clifford +Jackson +Marlon +Nolan +Oliver +Rick +Tristan +Charlie +Harold +Leo +Sonny +Trent +Tyrone +Don +Jamal +Karl +Santiago +Kelvin +Tanner +Tyson +Brennan +Dante +Gonzalo +Marshall +Marquis +Moses +Ulysses +Guadalupe +Wade +Wilson +Earl +Estevan +Chris +Daryl +Eli +Elliott +Heriberto +Hunter +Stuart +Harry +Reynaldo +Adolfo +Darnell +Ariel +Frankie +Jim +Louie +Nikolas +Terrell +Zachariah +Arnold +Colton +Gavin +Rory +Bernardo +Damien +Kurtis +Landon +Spenser +Uriel +Osvaldo +Alec +Brady +Bret +Fred +Jayson +Stefan +Chaz +Jarrod +Riley +Warren +Damon +Donte +Fidel +Freddie +Josiah +Pierre +Roland +Stephan +Trenton +Amir +Antoine +Blaine +Clarence +Demetrius +Efren +Gordon +Lamar +Skyler +Alonzo +Kody +Dwayne +Kristofer +Leon +Lewis +Malcolm +Myles +Weston +Dallas +Ernie +Kory +Terence +Ali +Forrest +Joseluis +Kent +Marcel +Maria +Norman +Ulises +Howard +Long +Parker +Ben +Deshawn +Herman +Nick +Brad +Brendon +Sterling +Brenton +Dan +Everett +Isidro +Loren +Perry +Dorian +Glen +Isaias +Robin +Barry +Corbin +Jeff +Keenan +Neal +Aldo +Alonso +Dominick +Mariano +Rocky +Westley +Zackary +Bernard +Clark +Conor +Conrad +Derick +Dwight +Graham +Jarrett +Julius +Santos +Wyatt +Colby +Darin +Darius +Dexter +Elvis +Guy +Kellen +Kendall +Mychal +Roderick +Alexandro +Dakota +Garret +Jarred +Mohammad +Brenden +Herbert +Kameron +Rashad +Cedric +Cristopher +Dana +Elmer +Jermaine +Owen +Raymundo +Clifton +Gene +Kasey +Milton +Nathanael +Rickey +Sammy +Tom +Addison +Brock +Chance +Ezequiel +Jovan +Leland +Lloyd +Ty +Aurelio +Carlo +Dario +Desmond +Eddy +Eliseo +Johnnie +Marquise +Reuben +Vance +Vernon +Issac +Kristian +Lionel +Zackery +Brice +Caesar +Davis +Edgardo +Jessica +Korey +Leopoldo +Quinn +Shayne +Sheldon +Arnulfo +Aron +Bryon +Everardo +Lester +Shea +Fredy +Gregorio +Griffin +Leroy +Leslie +Miguelangel +Valentin +Duane +Genaro +Jaron +Kendrick +Pete +Samson +Skylar +Ted +Zachery +Devan +Dion +Erwin +Fredrick +Harvey +Horacio +Jamar +Jimmie +Lonnie +Markus +Mitchel +Nigel +Benito +Bill +Conner +Cruz +Erich +Ervin +Quentin +Shannon +Sidney +Tracy +Winston +Zane +Bryson +Clay +Clint +Courtney +Ezekiel +Gino +Juancarlos +Oswaldo +Paris +Randal +Ashton +Bennett +Benny +Bradford +Chandler +Cyrus +Domingo +Drake +Eriberto +Federico +Hernan +Jasper +Junior +Kerry +Marcelo +Solomon +Ahmed +Anton +Bradly +Brain +Braulio +Carter +Darrin +Davion +Edmund +Edwardo +Gerard +Giancarlo +Johnson +Jonah +Davon +Geraldo +Jamaal +Jessy +Ken +Reid +Travon +Antony +Arron +Ashley +Barrett +Carson +Cristobal +Denny +Eder +Erin +Jess +Jovani +Kai +Lamont +Mackenzie +Misael +Quincy +Ron +Royce +Stewart +Vidal +Adalberto +Avery +Cary +Dalton +Danilo +Dave +Deon +Isai +Keven +Rosendo +Vanessa +Carlton +Christina +Galen +Harley +Jameson +Jean +Jordon +Josh +Luiz +Mohammed +Ryon +Tyrell +Ahmad +Augustine +Braden +Bronson +Cooper +Darrel +Darwin +Edmond +Floyd +Franco +Johnpaul +Lukas +Norberto +Randolph +Rhett +Rudolph +Tou +Trinidad +Wilfredo +Chasen +Heath +Jonatan +Jovanny +Kaleb +Kim +Luciano +Markanthony +Mauro +Maximilian +Nathanial +Reed +Rex +Reyes +Toby +Trever +Valentino +Anibal +Claudio +Coty +Demario +Duncan +Emerson +Ezra +Garry +Greg +Jennifer +Joesph +Josef +Keegan +Kong +Marques +Osbaldo +Raphael +Richie +Tobias +Armand +Armen +Arnoldo +Bruno +Dandre +Davin +Donnie +Fausto +Grady +Hugh +Johan +Johathan +Jovany +Kareem +Lyle +Myron +Reggie +Ritchie +Romeo +Salomon +Wendell +Will +Abram +Adrien +Blair +Brennen +Cheyne +Eloy +Hayden +Jamel +Jamison +Jed +Jerald +Kelsey +Kristoffer +Quinton +Tuan +Tucker +Alexandre +Alton +Chadwick +Christoper +Daisy +Desean +Donnell +Erasmo +Fermin +Giovanny +Hans +Isiah +Jeffry +Leobardo +Maximillian +Migel +Salvatore +Sunny +Wallace +Wilmer +Andreas +Arsenio +Baltazar +Bijan +Cassidy +Deante +Deonte +Deven +Dontae +Elizabeth +Ellis +Esequiel +Gerson +Gorge +Hassan +Huy +Jakob +Jarod +Jeramy +Jeremie +Justen +Laurence +Lazaro +Liam +Marcelino +Matt +Pierce +Richardo +Rico +Ronny +Rusty +Schuyler +Shant +Sherman +Teddy +Trey +Alain +Arman +Brandyn +Chester +Damion +Dino +Donta +Edison +Eleazar +Forest +Garrison +Geovanni +Gildardo +Giovani +Grayson +Ira +Javon +Jefferson +Julien +Kenton +Lucio +Mack +Nicholaus +Nikolaus +Oren +Sami +Samir +Sione +Sylvester +Timmy +Trevon +Vince +Vincenzo +Virgil +Yesenia +Abelardo +Al +Amanda +Amit +Ari +Aric +Arley +Austen +Benedict +Bennie +Clyde +Cordero +Dangelo +Daron +Edgard +Edson +Emil +Faustino +Flavio +Franky +Geovanny +Jackie +Jerrell +Jovanni +Juvenal +Karim +Kris +Lino +Madison +Marty +Meng +Mikhail +Monte +Nico +Otto +Paolo +Porfirio +Raffi +Renato +Rito +Robbie +Robby +Stephanie +Tai +Tory +Van +Walker +Amado +Art +Asa +Brandan +Brannon +Brant +Brenda +Brooks +Carey +Cecil +Dereck +Diamond +Elvin +Emiliano +Esai +Favian +Filiberto +Fransisco +Gabino +Garett +Jacobo +Jody +Justyn +Kyler +Lane +Lauren +Leif +Marcial +Michelle +Moshe +Otis +Paulo +Russel +Sarkis +Scotty +Shelby +Titus +Trayvon +Tyree +Ubaldo +Vincente +Wilbert +Abran +Alphonso +Anders +Antwan +Arash +Benson +Blas +Camron +Cordell +Cornelius +Daren +Deangelo +Derrek +Eliot +Ger +Hieu +Irwin +Jace +Jamil +Jedidiah +Jefferey +Jeramie +Jerrod +Jonas +Josedejesus +Kou +Malachi +Margarito +Melissa +Michel +Mickey +Mikael +Mikel +Pascual +Pheng +Prince +Quintin +Rami +Rojelio +Ronnell +Sandra +Sarah +Thaddeus +Tim +Tong +Trevin +Ulisses +Vicent +Vu +Adriel +Alden +Artemio +Brandin +Ceasar +Charley +Claude +Claudia +Corwin +Cullen +Dagoberto +Darrick +Derik +Deshaun +Duke +Elbert +Elisha +Gil +Gregg +Harout +Hilario +Jessi +Joan +Jules +Kevan +Levon +Marcoantonio +Marion +Matias +Mayra +Mychael +Niles +Omid +Refugio +Rey +Rickie +Roosevelt +Sampson +Santino +Silvestre +Theo +Travion +Uriah +Vito +Vladimir +Abner +Amador +Arya +Aubrey +August +Blaze +Cheng +Chuck +Chue +Curt +Cynthia +Dejon +Dejuan +Dimas +Donny +Dusty +Edmundo +Enoch +Esau +Fong +Holden +Jasen +Jerardo +Jered +Jerel +Jeremey +Kamron +Keaton +Kenji +Kirby +Lars +Leng +Lindsay +Luigi +Marcell +Minh +Modesto +Mohamed +Morris +Nicklaus +Nickolaus +Nikko +Nima +Payton +Philippe +Ramsey +Raudel +Reece +Rueben +Sandy +Sherwin +Stacy +Sydney +Teodoro +Thai +Thanh +Torey +Vang +Vinson +Willy +Aidan +Aj +Alejandra +Alessandro +Alfonzo +Antione +Antwon +Ara +Aram +Archie +Arian +Arjun +Brandt +Celso +Christen +Coleman +Cornell +Dajuan +Deanthony +Denis +Denver +Diana +Dimitri +Dirk +Domenic +Donavan +Earnest +Elan +Erica +Fabio +Fidencio +Gabriela +Gamaliel +Gideon +Jabari +Jacinto +Jacqueline +Jade +Jan +Jarvis +Jaymes +Jerad +Jeromy +Jeronimo +Joanthan +Johann +Jorden +Jorgeluis +Joseantonio +Josemanuel +Juanmanuel +Justine +Juventino +Kalen +Kalvin +Kane +Kao +Kimberly +Lamarr +Lincoln +Lisa +Lowell +Mandeep +Marcello +Marisol +Marlin +Mateo +Milan +Monica +Muhammad +Mustafa +Nam +Nancy +Quang +Reese +Rigo +Rod +Roque +Rosario +Ryne +Sabino +Samantha +Scot +Talon +Torrey +Tylor +Yang +Adriana +Alexandra +Amber +Anderson +Anh +Bailey +Baron +Bernabe +Bo +Candelario +Clement +Crystal +Dallin +Damone +Dara +Darell +Dax +Delbert +Deron +Dewayne +Donavon +Eden +Eliezer +Emmett +Franciscojavier +Frederic +Gareth +Giorgio +Harlan +Harris +Houston +Hung +Jensen +Jerod +Johny +Joshuah +Jospeh +Kashif +Kristen +Lauro +Malcom +Markell +Martel +Maverick +Maximo +Micahel +Mynor +Nathen +Nery +Nevin +Nhan +Niko +Orion +Patricio +Peng +Phong +Quan +Ravi +Ric +Rocio +Rodrick +Rohit +Rosa +Royal +Serjio +Shelton +Sven +Tam +Thor +Trung +Tyron +Valente +Vaughn +Vinh +Williams +Zakary +Adnan +Albaro +Amar +An +Andrea +Angus +Anthoney +Aristeo +Arnaldo +Arvin +Babyboy +Bee +Bernardino +Blaise +Broc +Buddy +Camilo +Carmen +Chadd +Chan +Chas +Cliff +Codi +Colt +Dashawn +Deric +Derrik +Diondre +Eladio +Errol +Esteven +Eugenio +Evaristo +Faris +Gage +Garet +Geovani +Geronimo +Greggory +Gurpreet +Hank +Hao +Hollis +Ibrahim +Jarett +Jelani +Jericho +Jerimiah +Johnmichael +Jonmichael +Jonnathan +Jonthan +Jory +Joseangel +Joshue +Jullian +Jun +Juston +Kacey +Kalin +Kamran +Karen +Kc +Laron +Leovardo +London +Macario +Martell +Maurilio +Megan +Michale +Miquel +Napoleon +Navid +Nicole +Norris +Obed +Omari +Patric +Payam +Phil +Rachel +Ramses +Raymon +Rayshawn +Remington +Renee +Reymundo +Rishi +Rodger +Rony +Rubin +Rylan +Sage +Said +Sasha +Seng +Shon +Simeon +Sky +Stacey +Steffen +Stephon +Tito +Toan +Tobin +Torin +Torrance +Viet +Waylon +Whitney +Wilbur +Wilfred +Willis +Amilcar +Aren +Asher +Bob +Bradlee +Brando +Brayan +Cale +Camden +Cornelio +Cuong +Danielle +Davy +Dawayne +Dayne +Demitrius +Deontae +Devyn +Dominik +Duy +Edder +Ephraim +Eusebio +Farid +Florencio +Francesco +Fredi +Garland +Garrick +Gerrit +Gerry +Giuliano +Hai +Hansel +Homar +Immanuel +Jacques +Jae +Jamelle +Jarad +Jarell +Jarret +Jayme +Jedediah +Jerrett +Jonathen +Jonpaul +Jorje +Judah +Julia +Keon +Khalid +Khang +Kodi +Kolby +Kunal +Laura +Lavelle +Lenny +Lonny +Luca +Luismiguel +Luther +Lyndon +Lynn +Mac +Magdaleno +Manny +Matthias +Maxim +Michaelangelo +Michaelanthony +Michal +Mina +Mohamad +Nader +Nasser +Nehemiah +Nhia +Nikhil +Omer +Osualdo +Pao +Paulino +Percy +Phuc +Rahul +Raleigh +Ramin +Ramy +Rashaad +Raziel +Rebecca +Reinaldo +Rian +Ricahrd +Robinson +Rohan +Romel +Ryo +Sagar +Sal +Sameer +Sang +Silas +Skye +Syed +Tad +Tayler +Teng +Theron +Thien +Tien +Tiffany +Tj +Tracey +Traveon +Tri +Ulices +Veronica +Waldo +Wilber +Young +Yusef +Yusuf +Zack +Zechariah +Adolph +Ajay +Alvino +Amadeo +Angelica +Anna +Antwone +Aria +Aris +Artin +Aureliano +Avelino +Baldemar +Barron +Benjamen +Bert +Bilal +Blong +Bonifacio +Braxton +Brittany +Britton +Brook +Buck +Bud +Carmelo +Chao +Chee +Chistian +Chistopher +Chong +Christin +Christofer +Cipriano +Conrado +Cosme +Darby +Darek +Darion +Darrius +Darron +Daryn +Delfino +Delvon +Demetrio +Dennys +Deondre +Deshon +Dewey +Donell +Durrell +Dustan +Ellery +Elton +Erika +Estuardo +Eulises +Ever +Faisal +Franklyn +Gaston +Gaurav +Genesis +Geovany +Gibran +Hagop +Hakim +Heather +Heber +Henri +Hoang +Isreal +Jacky +Jamin +Jarid +Jarrel +Jase +Jashua +Jeanpaul +Jeanpierre +Jerrad +Jimi +Job +Jonte +Josejesus +Jovon +Juliocesar +Justus +Kale +Kelley +Kendell +Kiel +Kraig +Landen +Leandre +Leandro +Luc +Lue +Luisalberto +Luisangel +Malik +Marcanthony +Marcellus +Marlo +Mary +Mathias +Mattew +Maximiliano +Maynard +Mercedes +Milo +Mitch +Nabil +Neel +Neftali +Nghia +Osiel +Paige +Patricia +Randell +Remy +Ridge +Rio +Rommel +Rosalio +Sandeep +Santana +Shahin +Shan +Shay +Silverio +Sony +Stevie +Terance +Tristin +Tye +Vivek +Wiley +Willian +Yeng +Yovani +Zeke +Abrahan +Ace +Adams +Addam +Adonis +Adrain +Alek +Alyssa +Aman +Amer +Amin +Amos +Amy +Ana +Anand +Andrei +Anil +Anson +Anthonyjames +Apolinar +April +Arcadio +Argenis +Arie +Arik +Armani +Armon +Armond +Ashkan +Ashlee +Ashraf +Augustin +Auston +Baby +Bao +Bartholomew +Basil +Bejan +Benigno +Bernie +Berry +Blain +Blane +Boris +Brien +Candido +Carnell +Celestino +Cesario +Chauncey +Chet +Chirag +Clemente +Coby +Cori +Corin +Correy +Corry +Cortney +Crispin +Cristoval +Curtiss +Cyle +Dain +Daivd +Daneil +Danial +Darian +Darryn +Dashaun +Dashiell +Dat +Daunte +Daveon +Davey +Demarco +Demetri +Denzel +Derrell +Devaughn +Dezmond +Dijon +Dionicio +Dionte +Dominque +Donato +Doron +Doyle +Dru +Dung +Dwain +Eber +Elder +Elie +Ely +Enzo +Evin +Faraz +Feliciano +Felton +Florentino +Fue +Gevork +Gian +Gillermo +Giuseppe +Grigor +Gunnar +Gus +Hasan +Horace +Hubert +Isaul +Jairus +Jamall +Jamarr +Janathan +Jaren +Jarrad +Jarrell +Jarryd +Jasmine +Javan +Jayce +Jaziel +Jeovany +Jeremi +Jerid +Jermain +Jeron +Jerred +Jerrid +Jett +Joanna +Joeseph +Johannes +Jonatha +Jorel +Jorell +Josejuan +Josua +Juanantonio +Juanpablo +Judson +Justo +Kelby +Kendal +Keng +Kentrell +Kenyon +Khalil +Kieth +Kingsley +Kip +Konrad +Lafayette +Lavell +Leighton +Leticia +Liliana +Lisandro +Lonnell +Lucian +Lucky +Lupe +Marino +Markeith +Marko +Marquese +Marquice +Marshal +Martha +Maxx +Mick +Mikeal +Milagro +Moua +Murphy +Mykel +Nabeel +Najee +Natanael +Ndrew +Nguyen +Niall +Nicola +Nikki +Nyle +Omero +Osman +Pedram +Princeton +Randel +Randon +Rashaun +Raymund +Renaldo +Reynold +Rhys +Richar +Rob +Roel +Roscoe +Rufino +Rufus +Rustin +Ryanjoseph +Saeed +Samy +Servando +Shain +Sher +Shun +Silvino +Sina +Son +Sue +Taj +Terran +Thinh +Tommie +Toney +Toua +Tramell +Tristen +Tristian +Uziel +Vahe +Vandy +Vartan +Ventura +Vernell +Vi +Victorhugo +Victoriano +Vishal +Wesly +Westin +Xiong +Yonatan +Yousef +Yu +Yuji +Yvette +Zachari +Zain +Abisai +Adil +Akeem +Alegandro +Alen +Aly +Ambrose +Ameer +Ammar +Ammon +Anastacio +Andranik +Andrewjames +Andrez +Angela +Anish +Ankit +Ankur +Ansel +Antoni +Apollo +Apolonio +Arin +Arlen +Arren +Arun +Aryeh +Asad +Avinash +Baldomero +Barney +Bart +Basilio +Beatriz +Benjiman +Benton +Blanca +Blayne +Bora +Brennon +Brenten +Brianna +Briant +Brittan +Broderick +Brody +Calen +Cash +Catarino +Ceaser +Cecilio +Chadrick +Chantra +Charly +Christipher +Christoffer +Christoher +Christpher +Cindy +Cirilo +Cisco +Cj +Cleveland +Cord +Corderro +Cort +Cristal +Cristofer +Damario +Dameon +Damonte +Daniele +Darien +Daven +Deepak +Delano +Delon +Delvin +Demarcus +Demond +Denise +Derrel +Derron +Derwin +Devion +Devonte +Dillion +Dinh +Domenick +Domonic +Domonique +Doroteo +Douglass +Dragon +Dshawn +Duran +Dusten +Dustyn +Eamon +Earvin +Ector +Eitan +Eldon +Eliazar +Elpidio +Emily +Enrico +Epifanio +Esdras +Esgar +Etienne +Evelyn +Fabricio +Fadi +Ferdinand +Fletcher +Froylan +Fuad +Garen +Gavino +Georgio +Geraldine +Geroge +Greyson +Hamilton +Haroon +Harpreet +Hiram +Hoa +Homero +Hong +Hovannes +Iain +Ike +Imran +Iran +Isac +Isrrael +Jabril +Jacque +Jaimie +Jamaul +Jamon +Jarel +Jareth +Jarren +Jarron +Jaun +Jeanluc +Jefrey +Jefte +Jerell +Jereme +Jermey +Jerold +Jerone +Jerrick +Jerron +Jesusantonio +Jethro +Jhon +Jocelyn +Jonny +Jony +Joseramon +Jourdan +Juanjose +Judith +Juliano +Justinray +Kabir +Kamal +Karina +Katherine +Kayvon +Kegan +Keivon +Kellan +Kennith +Kevon +Khaled +Khanh +Khristopher +Kia +Kiefer +Kieran +Kiernan +Killian +King +Kourosh +Kristofor +Lavon +Lawson +Leander +Lemar +Lemuel +Lenin +Lon +Lorena +Lucius +Luisantonio +Maher +Major +Manolo +Manpreet +Marquel +Matteo +Maximino +Maynor +Melchor +Mena +Merlin +Michele +Milad +Ming +Mister +Molly +Monty +Muhammed +Nasir +Natalie +Natividad +Neng +Nicholis +Nichols +Nicklas +Nicolaus +Nidal +Nils +Noble +Obrian +Odell +Omeed +Oracio +Orson +Orville +Osmin +Ozzie +Paden +Phat +Pierson +Pritesh +Raheem +Rajiv +Rakesh +Ramzi +Randolf +Rayvon +Reagan +Regis +Reilly +Remi +Remigio +Reno +Ricco +Rich +Rikki +Romero +Roni +Ronnel +Rosio +Rudolpho +Ryananthony +Ryanjames +Ryland +Saad +Sacha +Sai +Samer +Sammie +Samual +Sandro +Sara +Sarath +Sayed +Seaver +Sebastien +Serafin +Sesar +Sevag +Sharif +Shayan +Shervin +Shoua +Silvester +Stanford +Stefon +Stepan +Sundeep +Takuya +Tarek +Tarik +Tariq +Tate +Terrill +Thompson +Thong +Thurman +Torrence +Trace +Tramaine +Tremaine +Tremayne +Tyan +Tyreece +Umar +Valentine +Vatche +Vinay +Wenceslao +Weslee +Willaim +Woodrow +Wylie +Yamil +Yobani +Yong +Yoni +Yosef +Zaid +Zev +Zion +Michael +Christopher +Daniel +David +Matthew +Andrew +Joshua +Jose +Anthony +Robert +Jonathan +Ryan +Joseph +Nicholas +Kevin +James +Justin +John +Eric +Steven +Kyle +Alexander +Brian +Richard +Brandon +William +Juan +Aaron +Thomas +Luis +Jacob +Jason +Sean +Adam +Timothy +Jeffrey +Carlos +Tyler +Jesus +Benjamin +Zachary +Jesse +Mark +Miguel +Samuel +Jeremy +Victor +Paul +Travis +Christian +Francisco +Patrick +Jorge +Bryan +Scott +Jordan +Edgar +Charles +Stephen +Ricardo +Nathan +Alejandro +Kenneth +Adrian +Eduardo +Edward +Alex +Antonio +Cameron +Gregory +Oscar +Cody +Manuel +Gabriel +Mario +Erik +Vincent +Derek +Roberto +Sergio +Martin +Peter +Fernando +Hector +Raymond +Javier +Angel +Ian +Austin +George +Cesar +Taylor +Dustin +Trevor +Evan +Jared +Joel +Ivan +Ruben +Corey +Shane +Frank +Raul +Cory +Omar +Garrett +Jaime +Danny +Pedro +Bradley +Marcus +Shawn +Edwin +Johnny +Phillip +Alberto +Armando +Andres +Julian +Brett +Spencer +Chad +Salvador +Rafael +Ronald +Nathaniel +Alan +Julio +Casey +Keith +Donald +Gerardo +Alfredo +Arturo +Henry +Dylan +Mitchell +Tony +Devin +Marco +Gustavo +Ernesto +Isaac +Diego +Albert +Randy +Ramon +Blake +Enrique +Nicolas +Gary +Jimmy +Dennis +Douglas +Erick +Wesley +Johnathan +Philip +Joe +Curtis +Troy +Emmanuel +Marcos +Steve +Brent +Andre +Abraham +Chase +Ethan +Jake +Allen +Ricky +Andy +Arthur +Hugo +Eddie +Rene +Derrick +Colin +Max +Louis +Mathew +Russell +Jerry +Logan +Kristopher +Bryce +Josue +Marc +Israel +Jeremiah +Walter +Rodolfo +Bryant +Guillermo +Pablo +Rudy +Craig +Dominic +Gilbert +Jonathon +Marvin +Jack +Lucas +Larry +Seth +Luke +Roger +Saul +Abel +Jeffery +Lawrence +Moises +Maxwell +Giovanni +Caleb +Alfonso +Esteban +Fabian +Calvin +Cristian +Darren +Gilberto +Ismael +Todd +Brendan +Felipe +Jessie +Devon +Rogelio +Randall +Grant +Rodney +Roy +Elias +Drew +Lance +Miles +Ernest +Byron +Clayton +Micheal +Nelson +Carl +Ramiro +Xavier +Alvaro +Freddy +Leonardo +Theodore +Gerald +Billy +Bobby +Geoffrey +Jay +Noe +Shaun +Alexis +Emilio +Isaiah +Efrain +Orlando +Jon +Colton +Maurice +Eugene +Felix +Ignacio +Noah +Nickolas +Noel +Rigoberto +Mauricio +Dean +Morgan +Ross +Alvin +Mike +Neil +Rodrigo +Deandre +Lorenzo +Alfred +Darryl +Humberto +Terry +Agustin +Lee +Simon +Tommy +Kirk +Leonard +Branden +Damian +German +Nestor +Sebastian +Dillon +Ronnie +Vicente +Adan +Darrell +Frederick +Ray +Roman +Mason +Kenny +Connor +Joey +Elijah +Bruce +Allan +Santiago +Angelo +Collin +Trenton +Willie +Tomas +Wayne +Joaquin +Johnathon +Harrison +Franklin +Tanner +Dane +Donovan +Elliot +Irving +Karl +Levi +Clinton +Oliver +Terrance +Tristan +Trent +Dominique +Glenn +Leonel +Preston +Reginald +Ralph +Adolfo +Jerome +Nolan +Irvin +Rolando +Cole +Elliott +Riley +Hunter +Aldo +Jamie +Rick +Damien +Eli +Guadalupe +Sam +Stanley +Charlie +Kurt +Micah +Chris +Francis +Leo +Osvaldo +Uriel +Warren +Alec +Dale +Jairo +Marlon +Octavio +Terrence +Tyrone +Harry +Kelly +Ariel +Clifford +Gavin +Beau +Frankie +Josiah +Ulises +Ali +Arnold +Kurtis +Melvin +Moses +Stuart +Dante +Emanuel +Fidel +Kelvin +Bernardo +Skyler +Stefan +Zackary +Kory +Elvis +Harold +Jarrod +Daryl +Fred +Howard +Darnell +Antoine +Dwayne +Gonzalo +Heriberto +Marquis +Malcolm +Jamal +Marshall +Nikolas +Alonzo +Estevan +Stephan +Bernard +Freddie +Parker +Reynaldo +Wade +Wyatt +Sonny +Wilson +Bret +Graham +Jayson +Zachery +Herman +Ulysses +Damon +Dan +Jackson +Joseluis +Kody +Amir +Efren +Robin +Cristopher +Forrest +Jim +Cedric +Chance +Demetrius +Dominick +Isaias +Kameron +Neal +Zachariah +Conrad +Don +Julius +Keenan +Kristofer +Louie +Blaine +Brock +Dallas +Myles +Perry +Weston +Brady +Gordon +Leon +Tyson +Ashton +Landon +Lewis +Nick +Terrell +Brad +Colby +Rory +Sterling +Barry +Dorian +Brendon +Dakota +Dana +Mychal +Rashad +Ben +Clarence +Corbin +Darius +Gregorio +Isidro +Jovan +Maximilian +Roland +Brenton +Derick +Garret +Norman +Valentin +Alonso +Benny +Brennan +Davis +Donte +Erwin +Ezequiel +Glen +Marcel +Reuben +Santos +Chaz +Eliseo +Federico +Guy +Jeff +Lamar +Lloyd +Maria +Nathanael +Raymundo +Cristobal +Kristian +Rickey +Aron +Dario +Desmond +Jarred +Kent +Rocky +Alexandro +Fredy +Johnnie +Owen +Benito +Clark +Darrin +Dexter +Elmer +Ernie +Everardo +Herbert +Loren +Oswaldo +Quinn +Roderick +Tom +Cruz +Deon +Dion +Earl +Mohammad +Nico +Pierre +Sammy +Addison +Bradford +Braulio +Conor +Fredrick +Issac +Jovanny +Korey +Milton +Terence +Tracy +Drake +Dwight +Lionel +Ted +Brenden +Dalton +Everett +Horacio +Jarrett +Jermaine +Jessica +Marquise +Shannon +Avery +Carson +Deshawn +Bennett +Bryon +Clifton +Jordon +Markus +Pete +Spenser +Armen +Devan +Edgardo +Johnson +Kaleb +Lester +Royce +Tucker +Vance +Zackery +Ahmad +Arnulfo +Courtney +Darin +Davon +Isai +Junior +Kellen +Kendall +Lonnie +Luiz +Lukas +Mitchel +Solomon +Arron +Brice +Kai +Mauro +Misael +Nigel +Rex +Ty +Armand +Blair +Denny +Garrick +Jasper +Jean +Juancarlos +Kerry +Leland +Travon +Westley +Adalberto +Aurelio +Davion +Duane +Genaro +Gene +Griffin +Harley +Leopoldo +Leroy +Leslie +Niko +Raphael +Tou +Winston +Ashley +Ceasar +Erin +Gerard +Hernan +Isiah +Marcelo +Rosendo +Eddy +Ezra +Fermin +Greg +Ken +Lucio +Reed +Reid +Sheldon +Skylar +Anibal +Antony +Arnoldo +Bryson +Dandre +Edwardo +Eriberto +Giancarlo +Hans +Jaron +Jennifer +Jovany +Kasey +Mackenzie +Romeo +Sidney +Will +Andreas +Braden +Cooper +Hayden +Jace +Justen +Lino +Rico +Robbie +Ahmed +Brandyn +Brennen +Caesar +Chandler +Edmund +Gerson +Jimmie +Kareem +Mariano +Rudolph +Samson +Shea +Tuan +Aric +Arnaldo +Carlton +Christina +Clint +Erich +Gino +Huy +Jovani +Keegan +Kelsey +Nicholaus +Tyrell +Vidal +Alessandro +Ari +Arley +Arsenio +Austen +Bill +Cary +Clay +Darrel +Derik +Domingo +Faustino +Jameson +Jovanni +Marcoantonio +Miguelangel +Mychael +Quentin +Quinton +Vernon +Anton +Carlo +Conner +Elizabeth +Ervin +Jamar +Jess +Keaton +Kendrick +Lyle +Myron +Randal +Randolph +Reyes +Tylor +Zane +Abram +Barrett +Bijan +Bruno +Chadwick +Clyde +Deven +Eder +Floyd +Hakeem +Jessy +Keven +Luciano +Mohammed +Quincy +Akeem +Chester +Cyrus +Danilo +Dave +Emiliano +Jerald +Johathan +Lamont +Laurence +Lazaro +Marcelino +Michel +Rey +Sandy +Shant +Shayne +Stephanie +Teddy +Tobias +Trinidad +Vaughn +Vladimir +Augustine +Axel +Brandan +Christoper +Darwin +Deonte +Edgard +Eleazar +Erika +Ezekiel +Filiberto +Franco +Hilario +Hugh +Jarod +Jonah +Josef +Michelle +Nikko +Osbaldo +Richie +Ron +Salomon +Scotty +Stewart +Tory +Van +Wilfredo +Bo +Broc +Carter +Chadd +Chasen +Cynthia +Damion +Dejon +Dereck +Duncan +Edmond +Genesis +Geovanni +Giovanny +Harvey +Jakob +Jan +Javon +Jefferson +Jered +Josh +Justyn +Liam +Marques +Paolo +Rhett +Shelby +Sherman +Stacy +Sunny +Sylvester +Tyree +Abner +Alton +Antione +Artemio +August +Bradly +Brooks +Claudio +Colten +Corwin +Favian +Geraldo +Gorge +Jamaal +Jamel +Jamison +Jerrell +Johnpaul +Justine +Kou +Norberto +Paris +Reymundo +Richardo +Timmy +Trevon +Trey +Virgil +Abelardo +Adrien +Bob +Chue +Clemente +Crystal +Danniel +Daren +Donavan +Eloy +Ever +Fransisco +Gage +Garrison +Grady +Grayson +Jackie +Jerad +Jerrod +Julien +Leobardo +Luther +Marcell +Marquez +Maximiliano +Meng +Micahel +Migel +Morris +Nam +Nathen +Otto +Paulo +Pierce +Reece +Remington +Ronny +Ryne +Thaddeus +Toby +Ubaldo +Vince +Vincente +Art +Brain +Cheng +Cullen +Darian +Darrick +Dusty +Ellis +Emmett +Galen +Hubert +Irwin +Jeramy +Jerel +Josedejesus +Kim +Kong +Kyler +Markanthony +Mateo +Mayra +Minh +Nathanial +Orion +Ramsey +Shon +Vanessa +Alain +Anderson +Antwan +Aram +Benson +Blayne +Brayan +Cecilio +Cornelius +Daron +Deante +Diamond +Diana +Elan +Emerson +Geovani +Gil +Hassan +Ira +Jarret +Jeffry +Jonas +Kristoffer +Long +Maximillian +Mikel +Napoleon +Nikhil +Nima +Renato +Roque +Russel +Rusty +Sami +Tommie +Trever +Veronica +Aidan +Alexandre +Alfonzo +Ara +Arash +Asa +Babyboy +Baltazar +Bernie +Brandin +Brant +Cecil +Demario +Dewayne +Dimitri +Edson +Ephraim +Florentino +Garett +Jacinto +Jamil +Jerardo +Jessi +Jody +Jonatan +Jorden +Juvenal +Kalvin +Kane +Kao +Kelley +Laron +Marko +Mickey +Mikael +Milan +Mohamad +Patricio +Quintin +Raffi +Raudel +Ravi +Ritchie +Robby +Rueben +Salvatore +Sarkis +Sione +Tito +Trayvon +Uriah +Valentino +Zechariah +Adriana +Alden +Alma +Alphonso +Amado +Amos +Angelica +Arya +Binh +Brannon +Brenda +Bronson +Camilo +Cassidy +Cheyne +Davin +Deangelo +Donnell +Fabio +Fausto +Gabino +Gerry +Greggory +Harout +Jabari +Jasen +Jasmine +Jed +Jedidiah +Jorgeluis +Juanmanuel +Kennedy +Kris +Lane +Laura +Leandre +Lenny +Marty +Pao +Pascual +Patricia +Refugio +Reggie +Ronaldo +Seamus +Silvestre +Syed +Teng +Tim +Wilber +Willy +Yesenia +Adrain +Alexandra +Amit +Ana +Andrea +Aubrey +Bee +Bernardino +Dejuan +Demarco +Denis +Derrell +Donny +Dontae +Edmundo +Eliot +Elton +Esau +Eugenio +Florencio +Franky +Garry +Giovani +Jacobo +Jade +Jefferey +Jeremie +Joanthan +Johan +Jory +Joseantonio +Josemanuel +Karim +Kenyon +Lavell +Leandro +Lisandro +Marcanthony +Martel +Matias +Melissa +Mohamed +Nikolai +Oren +Percy +Porfirio +Rickie +Ryon +Samir +Sandeep +Simeon +Stacey +Stephon +Stevan +Stevie +Torrey +Vang +Viet +Vincenzo +Vinh +Wilbert +Williams +Abdul +Abrahan +Al +Amanda +Arian +Arman +Bobbie +Braxton +Cedrick +Cordero +Daveon +Dayne +Deric +Derrik +Earnest +Elbert +Eliazar +Elvin +Emil +Erasmo +Fernie +Fong +Forest +Gamaliel +Geovanny +Geronimo +Holden +Ibrahim +Isacc +Jacky +Jerod +Jeromy +Joesph +Johnmichael +Jules +Kenji +Kevan +Kevyn +Khristopher +Kieran +Liliana +Mack +Malachi +Martell +Matthias +Mikhail +Nancy +Nehemiah +Nicole +Nikolaus +Omid +Otis +Pheng +Rodrick +Rojelio +Santino +Tarek +Titus +Travion +Ulisses +Wendell +Wilfred +Young +Zakary +Abran +Amador +Amilcar +Anastacio +Armani +Baby +Baldemar +Bilal +Camron +Carey +Christine +Christophe +Coleman +Cornell +Corry +Dajuan +Dangelo +Danial +Danielle +Dashawn +Demetrio +Derrek +Donnie +Fue +Gavino +Gildardo +Heber +Henri +Hiram +Houston +Hung +Jasson +Jeanpaul +Jereme +Jeronimo +Joshuah +Jourdan +Juanantonio +Julia +Justice +Kc +Kegan +Kennith +Kenton +Keon +Keoni +Khiry +Lauro +Macario +Marshawn +Matt +Maverick +Maxx +Megan +Michale +Mustafa +Nader +Najee +Nolberto +Osmin +Rahul +Rami +Rian +River +Rocio +Sage +Sal +Sandra +Schuyler +Shahin +Shay +Theron +Thien +Tino +Tong +Tristen +Ulyses +Vu +Yusef +Yusuf +Zacharia +Adriel +Ammar +Andrei +Anil +Antwon +Aris +Arlen +Arvin +Augustin +Avi +Baxter +Bennie +Blaise +Boris +Brando +Brandt +Brittany +Buddy +Chan +Charley +Charly +Chong +Christofer +Cindy +Colt +Cord +Cornelio +Cuauhtemoc +Darion +Deion +Delon +Deshaun +Deshon +Dimas +Dino +Dionte +Dominque +Donta +Duke +Elisha +Ely +Emery +Flavio +Froilan +Garet +Gaspar +Geovany +Gianni +Harris +Heath +Jaren +Jayro +Jeremey +Jessee +Jestin +Joan +Job +Jonmichael +Jonnathan +Joshue +Juliocesar +Juventino +Karen +Levon +Madison +Malik +Mattew +Milo +Moua +Mykel +Mynor +Nash +Neel +Patric +Paulino +Phong +Raynard +Remy +Roosevelt +Rosario +Sai +Sara +Sarah +Seanmichael +Serafin +Sherwin +Silas +Sydney +Thai +Trung +Victoriano +Wallace +Wilmer +Anders +Araceli +Aramis +Artis +Bailey +Blas +Brody +Brook +Camden +Carlin +Carmen +Celso +Cheyenne +Chistopher +Clement +Coby +Constantino +Courtland +Cyle +Daisy +Davonte +Delano +Demarcus +Desean +Devyn +Dijon +Dirk +Dontay +Douglass +Elio +Emigdio +Enzo +Esai +Evin +Franklyn +Frederic +Gabriela +Garland +Ger +Gerrit +Gian +Gray +Gregg +Greyson +Hagop +Immanuel +Jair +Jarvis +Jensen +Jeramie +Jerman +Jerred +Jin +Joseguadalupe +Jude +Kale +Kalen +Katherine +Kendal +Kiefer +Kwame +Lamarr +Luigi +Luisangel +Lyndon +Marcello +Marcial +Margarito +Marioalberto +Marlin +Marqus +Mathias +Melchor +Montana +Muhammad +Navid +Neftali +Nery +Nicholes +Nickolaus +Nicolaus +Obed +Ramses +Raymon +Rayshawn +Reese +Ren +Renee +Rocco +Rodger +Rohan +Salbador +Scot +Servando +Shayan +Shelton +Sky +Talon +Tam +Tayler +Tevita +Theo +Tye +Valente +Vicent +Vishal +Willis +Yeng +Adnan +Albaro +Alejandra +Amer +Anh +Antone +Archie +Armondo +Artin +Augustus +Baron +Benedict +Bernabe +Billie +Bladimir +Blain +Brittney +Calen +Candelario +Cha +Channing +Christan +Cleveland +Cordell +Coty +Cuong +Dagoberto +Dajon +Darien +Darrion +Dayton +Deanthony +Demond +Devaughn +Dillan +Domenic +Durrell +Duy +Ean +Edilberto +Eligio +Erica +Esequiel +Feliciano +Ferdinand +Fletcher +Franz +Garren +Gaston +Geremy +Geroge +Gevork +Graeme +Gurpreet +Hakop +Hal +Hank +Hue +Isac +Isidoro +Jayme +Jedediah +Jelani +Jerell +Jermey +Jeron +Jevon +Joanna +Jonathen +Jonny +Jorje +Jovon +Juanjose +Juanluis +Judah +Justo +Juston +Kamron +Karla +Kenyatta +Kevon +Keyon +Khalid +Khalil +Khoa +Killian +Kimberly +Kolby +Lafayette +Lamberto +Lars +Lauren +Lavelle +Leif +Lemar +Leoncio +Lincoln +London +Lonny +Lowell +Lucero +Lue +Luisalberto +Marcellus +Marino +Matteo +Maurilio +Maxim +Maximino +Maximo +Menachem +Michaelangelo +Michal +Moshe +Nabil +Naveed +Nevin +Nicklaus +Nicola +Nikki +Norris +Oracio +Osman +Paola +Payam +Prince +Quoc +Raheem +Rishi +Roel +Rosalio +Roscoe +Rudolfo +Rylan +Sahil +Samantha +Sameer +Samer +Sammuel +Samual +Seng +Shaheen +Sharif +Skye +Tarik +Thanh +Toan +Tobin +Torin +Trace +Tu +Tyron +Varun +Vito +Waldo +Wendy +Willard +Xiong +Xue +Yosef +Zeke +Abdiel +Ace +Adel +Adolph +Akira +Aman +Amando +Ambrose +Angus +Anna +Anson +Anwar +Arik +Arjun +Arun +Bao +Barron +Bjorn +Bradlee +Brien +Britton +Bulmaro +Cale +Carmelo +Carolina +Cash +Chai +Chas +Chauncey +Chayanne +Chistian +Christpher +Ciro +Claudia +Colter +Conrado +Crispin +Cristhian +Cy +Dallin +Damone +Dashiell +Declan +Deepak +Delfino +Delvon +Demar +Denise +Deron +Diante +Djuan +Dmitri +Dominik +Dontrell +Eamon +Eber +Emile +Enrico +Esgar +Farid +Francesco +Franciso +Garth +Geoffery +Gideon +Gualberto +Hansel +Hanson +Hieu +Hosea +Irvine +Isreal +Ivory +Jacqueline +Jameel +Janet +Jarad +Jarett +Jarrell +Jashua +Jaun +Jaysen +Jens +Jerrick +Jerson +Joeseph +Johann +Johnathen +Joseangel +Josecarlos +Jospeh +Justus +Kalani +Karina +Kayvon +Kellan +Khaled +Kiel +Kirby +Kourosh +Kraig +Lamonte +Major +Manolo +Marlo +Marquel +Mary +Mckay +Mick +Mina +Mitch +Modesto +Monica +Nareg +Nicko +Nicolo +Payton +Randell +Rashid +Reno +Rigo +Romel +Roverto +Ruby +Ryland +Ryo +Sabino +Sammie +Sang +Sedrick +Sesar +Shadi +Shan +Sho +Silverio +Sopheak +Tai +Taj +Tal +Teodoro +Terance +Thor +Timmothy +Tj +Toney +Torey +Truman +Vahe +Valentine +Victorhugo +Vinson +Walker +Ying +Abelino +Adonis +Aj +Aleksander +Alen +Alexzander +Alphonse +Amber +Ameer +Amy +An +Andree +Andrez +Aniel +Anish +Anselmo +Antuan +Aquiles +Argenis +Aria +Arick +Arie +Arin +Asher +Ashkan +Ashraf +Augusto +Auston +Avedis +Bartholomew +Benjamen +Benton +Blanca +Blaze +Brandy +Brayden +Bryn +Buck +Cain +Caitlin +Candido +Cezar +Chang +Chet +Christ +Chuck +Cipriano +Cirilo +Cj +Claude +Cliff +Codey +Codie +Collins +Correy +Cosme +Cristofer +Dain +Daivd +Damarcus +Dany +Dara +Daunte +Daven +Delbert +Demetri +Denver +Deondre +Devion +Devone +Dionicio +Donavon +Dupree +Duran +Duston +Dylon +Eden +Edison +Edvardo +Elie +Eliott +Enoc +Eron +Erving +Esaul +Estuardo +Evander +Evaristo +Evelyn +Fadi +Franciscojavier +Francois +Gerrell +Giorgio +Gloria +Gus +Hai +Harpal +Hasan +Homero +Houa +Hudson +Imran +Iran +Isauro +Jacoby +Jacques +Jad +Jamari +Jame +Jamey +Jarek +Jasmin +Jaspreet +Jatinder +Jayce +Jaycob +Jazmin +Jeancarlo +Jeanette +Jerold +Jerrad +Jerrett +Jeshua +Jhonathan +Joao +Johny +Josejuan +Jr +Juana +Juaquin +Jullian +Kalin +Kamran +Kashif +Keller +Keng +Kenney +Khang +Khanh +Khoi +Kingsley +Kip +Kristina +Ky +Kye +Kyron +Lang +Leng +Lenin +Levar +Linda +Lorne +Luismanuel +Mahmoud +Mandeep +Manny +Marquice +Martha +Maxfield +Michaelanthony +Michaelvincent +Mong +Monte +Narciso +Natanael +Neng +Neri +Neville +Nhan +Nichols +Noble +Omeed +Orel +Osiel +Osualdo +Pat +Peng +Phil +Philippe +Prentice +Prescott +Princeton +Quinten +Rahim +Rajan +Rajiv +Ramin +Ramond +Ramzi +Randolf +Rasheed +Reilly +Remigio +Rich +Richar +Rikki +Rohit +Rony +Rosa +Roshan +Rubin +Ruddy +Rudolf +Rupert +Ryann +Said +Salim +San +Sanjay +Sasha +Saulo +Saxon +Sayed +Scottie +Serjio +Sevag +Shiloh +Shmuel +Son +Stanton +Steele +Stefano +Sven +Sylvestre +Tad +Tan +Tariq +Tate +Teague +Terren +Thompson +Tiffany +Treavor +Trevion +Turner +Tyquan +Tyrus +Urbano +Vue +Waylon +Westin +Wiley +Woodrow +Yee +Yer +Yousef +Yovani +Yuri +Zack +Abdullah +Abe +Abisai +Able +Alejo +Alesandro +Alison +Alon +Aloysius +Alvino +Alyssa +Amadeo +Anand +Andrews +Angela +Anival +Ankit +Ante +Anthonie +Antjuan +Antoni +Antwain +Antwone +Anuj +Ariana +Aristeo +Armin +Artur +Aryan +Asad +Ashneel +Bacilio +Barnaby +Barrington +Basil +Bayardo +Belal +Benjamine +Blade +Blane +Blong +Brayant +Brion +Britt +Broderick +Cade +Carols +Cavin +Chace +Chadrick +Charle +Chauncy +Che +Chee +Chi +Chrisopher +Christain +Christepher +Christohper +Clarke +Corbett +Coy +Cristal +Cristina +Curran +Curt +Dakotah +Damen +Dameon +Daneil +Dang +Danie +Darcy +Darell +Darrius +Daryll +Davionne +Dayvon +Deandra +Deigo +Delvin +Demetris +Demitrius +Deonta +Deontae +Desi +Devonte +Dick +Diondre +Domonic +Domonique +Donaciano +Donell +Doyle +Duc +Dudley +Dung +Dusten +Dustyn +Easton +Eberardo +Ector +Ed +Edsel +Eduardoluis +Edvin +Elder +Eldon +Eliezer +Elwin +Ericberto +Eriverto +Errick +Esdras +Everado +Fahad +Faisal +Farbod +Farhad +Fidencio +Florian +Fransico +Fredi +Froylan +Garen +Gerado +Germain +Gibran +Giovany +Grabiel +Grey +Guido +Gumaro +Gyasi +Haris +Harlan +Herberth +Hermilo +Hipolito +Hoang +Hollis +Horace +Hovannes +Huriel +Iain +Ike +Issa +Jairon +Jarell +Jasdeep +Javan +Jaymes +Jayvon +Jazz +Jeanluc +Jeramiah +Jeremi +Jeren +Jerico +Jerid +Jermain +Jermiah +Jerrel +Jessey +Jimi +Johnie +Johnnathan +Jonpaul +Jordyn +Jorel +Josephmichael +Jossue +Jovanie +Julie +Jun +Juvencio +Kacey +Kaden +Karlos +Kathleen +Kavon +Kennard +Keshawn +Kia +Kile +Kiyoshi +Koby +Kodi +Kodie +Konrad +Krishna +Kristen +Kue +Lamon +Lancelot +Laquan +Laurent +Leeroy +Les +Librado +Linden +Lindsey +Lisa +Lorenz +Lou +Loyd +Luc +Lucky +Luisenrique +Lynn +Mac +Magdaleno +Magdiel +Malcom +Marcelle +Marcua +Maribel +Marion +Marisela +Marisol +Marissa +Markandrew +Markell +Marlene +Marshal +Martine +Matan +Mckenzie +Melecio +Mervin +Michaeljoseph +Micky +Milad +Montrell +Murphy +Murray +Nabeel +Nahum +Nathanel +Neiko +Newton +Nhia +Nicco +Niccolo +Nicholis +Nicky +Nikola +Niles +Norbert +Olegario +Omer +Ori +Oswald +Paco +Palmer +Pernell +Peterson +Phi +Quan +Rachel +Raj +Raleigh +Randon +Rashaad +Raymund +Raziel +Redmond +Regan +Reginal +Reginaldo +Regis +Richy +Ridge +Rio +Rob +Robinson +Rod +Ronnell +Rufino +Ryder +Sagar +Salesi +Saman +Saro +Semaj +Serge +Severo +Shaan +Shamus +Sher +Sheridan +Shimon +Shoua +Silvano +Sou +Stan +Steffan +Steffen +Stefon +Stetson +Susana +Tadeo +Tahj +Taurean +Terrel +Terron +Thao +Tien +Timoteo +Tosh +Tracey +Travell +Traveon +Tremaine +Tremayne +Tri +Ulices +Urian +Ustin +Uziel +Vahan +Vi +Victoria +Victormanuel +Virgilio +Von +Waleed +Wally +Wang +Wilbur +Wilfrido +Willem +Winson +Xeng +Yaniv +Yobani +Yoni +Yuuki +Zach +Zacharias +Zackariah +Zaid +Zain +Ziad +Michael +Christopher +Daniel +David +Jose +Matthew +Andrew +Joshua +Jonathan +Anthony +Ryan +Robert +Joseph +Nicholas +Kevin +James +Justin +Eric +John +Juan +Steven +Kyle +Alexander +Brian +Luis +William +Brandon +Jacob +Richard +Tyler +Carlos +Jesus +Christian +Thomas +Aaron +Sean +Jordan +Zachary +Miguel +Victor +Jason +Adam +Timothy +Cody +Jesse +Jeffrey +Francisco +Benjamin +Samuel +Jorge +Alejandro +Mark +Bryan +Edgar +Patrick +Travis +Eduardo +Paul +Oscar +Ricardo +Adrian +Jeremy +Gabriel +Stephen +Nathan +Charles +Manuel +Edward +Antonio +Cameron +Martin +Scott +Kenneth +Alex +Mario +Sergio +Angel +Gregory +Erik +Vincent +Hector +Taylor +Fernando +Austin +Trevor +Omar +Javier +Raymond +Cesar +Roberto +Ruben +Derek +Ian +Joel +Ivan +George +Peter +Evan +Julio +Raul +Jared +Pedro +Johnny +Rafael +Garrett +Jaime +Shane +Alberto +Frank +Edwin +Armando +Marcus +Dustin +Andres +Marco +Salvador +Julian +Dylan +Phillip +Danny +Erick +Gerardo +Arturo +Cory +Spencer +Corey +Alan +Henry +Brett +Nathaniel +Bradley +Ronald +Alfredo +Shawn +Casey +Mitchell +Chad +Ethan +Keith +Blake +Isaac +Enrique +Albert +Devin +Abraham +Ernesto +Donald +Tony +Ramon +Randy +Nicolas +Johnathan +Diego +Josue +Marcos +Jimmy +Gary +Emmanuel +Douglas +Gustavo +Dennis +Steve +Wesley +Philip +Rene +Andy +Max +Colin +Chase +Andre +Brent +Jake +Joe +Arthur +Mathew +Curtis +Hugo +Guillermo +Eddie +Troy +Maxwell +Dominic +Rudy +Jack +Louis +Bryce +Russell +Jerry +Cristian +Derrick +Jonathon +Israel +Lucas +Fabian +Felipe +Rodolfo +Allen +Walter +Kristopher +Marc +Marvin +Gilbert +Saul +Logan +Giovanni +Esteban +Abel +Craig +Pablo +Ismael +Alfonso +Caleb +Ricky +Luke +Xavier +Jeremiah +Lawrence +Gilberto +Leonardo +Jessie +Mason +Alexis +Larry +Moises +Rogelio +Nelson +Seth +Devon +Dillon +Grant +Bryant +Isaiah +Roger +Rodrigo +Brendan +Darren +Bobby +Connor +Elias +Roy +Lance +Calvin +Jeffery +Ramiro +Micheal +Drew +Humberto +Todd +Sebastian +Colton +Maurice +Roman +Alvaro +Byron +Noel +Carl +Lorenzo +Ignacio +Jay +Theodore +Clayton +Miles +Shaun +Emanuel +Noah +Rodney +Adan +Orlando +Randall +Gerald +Mauricio +Geoffrey +Noe +Ross +Joey +Tommy +Freddy +Felix +Dean +Nestor +Jon +Alfred +Neil +Allan +Ray +Ronnie +Damian +Ernest +Efrain +Emilio +Nolan +Rigoberto +Elijah +Lee +Angelo +Billy +Morgan +Simon +Alec +German +Collin +Jairo +Preston +Tanner +Terry +Joaquin +Mike +Alvin +Eugene +Kenny +Octavio +Oliver +Harrison +Cole +Agustin +Riley +Santiago +Tomas +Branden +Vicente +Nickolas +Frederick +Osvaldo +Uriel +Dalton +Kurt +Deandre +Dominique +Levi +Dante +Irvin +Gavin +Hunter +Dakota +Leonard +Leonel +Adolfo +Eli +Micah +Reginald +Jackson +Jamie +Clinton +Marquis +Skyler +Ulises +Dale +Donovan +Efren +Johnathon +Sam +Beau +Charlie +Damon +Elliott +Gonzalo +Arnold +Elliot +Guadalupe +Tristan +Willie +Wyatt +Bruce +Darrell +Franklin +Marshall +Chris +Dane +Melvin +Parker +Frankie +Kelly +Kelvin +Kirk +Karl +Terrance +Irving +Nikolas +Ralph +Rolando +Jerome +Wayne +Ali +Darryl +Josiah +Warren +Heriberto +Trent +Forrest +Glenn +Stanley +Damien +Marlon +Rick +Wilson +Bernardo +Ariel +Francis +Kody +Malcolm +Ulysses +Brendon +Marcel +Trenton +Kurtis +Reynaldo +Darius +Estevan +Graham +Louie +Kristian +Aldo +Antoine +Brock +Edgardo +Zachariah +Leo +Moses +Myles +Donte +Fidel +Raymundo +Wade +Zackary +Elmer +Kameron +Stuart +Terrence +Clifford +Dwayne +Hayden +Isaias +Joseluis +Zachery +Alonso +Blaine +Bret +Colby +Dominick +Jamal +Brennan +Terrell +Weston +Ezequiel +Glen +Eliseo +Harry +Stefan +Kory +Lewis +Perry +Rory +Tyrone +Daryl +Alexandro +Chance +Gage +Hernan +Kristofer +Raphael +Fred +Jordon +Stephan +Ashton +Harold +Alonzo +Demetrius +Gordon +Howard +Milton +Sonny +Derick +Don +Jeff +Jim +Keenan +Leon +Santos +Jarred +Kent +Lamar +Brenden +Elvis +Fredy +Garret +Isidro +Issac +Jayson +Sterling +Barry +Mohammad +Chaz +Cristobal +Ernie +Everardo +Ezekiel +Jean +Jovan +Norman +Robin +Tom +Clarence +Darnell +Dorian +Reuben +Amir +Ben +Desmond +Everett +Jarrett +Roland +Jermaine +Kendall +Maria +Miguelangel +Dan +Davis +Davon +Gino +Gregorio +Jovany +Neal +Benny +Deshawn +Genaro +Jarrod +Ty +Dario +Earl +Favian +Jessy +Keegan +Lloyd +Marquise +Mychal +Rashad +Rickey +Zane +Cruz +Eddy +Juancarlos +Kasey +Loren +Nathanael +Shayne +Valentin +Benito +Conrad +Drake +Liam +Quinn +Sammy +Bernard +Brad +Cristopher +Edwardo +Herman +Jasper +Markus +Rex +Ahmad +Dallas +Darin +Jovanny +Misael +Clark +Conor +Fredrick +Giovanny +Guy +Jess +Nico +Roderick +Tucker +Brady +Cedric +Conner +Julius +Nick +Pierre +Zackery +Adalberto +Arnulfo +Aron +Brice +Carson +Darrin +Herbert +Luiz +Lukas +Quincy +Quinton +Sidney +Ted +Greg +Landon +Quentin +Bruno +Carlo +Dion +Freddie +Korey +Mauro +Tou +Vance +Aurelio +Brenton +Corbin +Dwight +Erwin +Jefferson +Owen +Tyson +Vernon +Braulio +Duane +Eder +Hans +Horacio +Isiah +Jakob +Jamar +Johnnie +Kellen +Lonnie +Marcelino +Marcelo +Nigel +Rocky +Rosendo +Sheldon +Clifton +Federico +Griffin +Isai +Jaron +Jessica +Mariano +Osbaldo +Pete +Reyes +Addison +Antony +Avery +Eriberto +Gene +Harley +Lionel +Maximilian +Mitchel +Oswaldo +Skylar +Carter +Cooper +Devan +Jimmie +Leopoldo +Leslie +Mackenzie +Reid +Rey +Royce +Solomon +Stewart +Terence +Tylor +Tyrell +Anton +Denzel +Deon +Erin +Fermin +Jonah +Randolph +Wilfredo +Ashley +Camilo +Clay +Courtney +Franco +Jovanni +Ken +Shannon +Tracy +Alexandre +Argenis +Cary +Dana +Davion +Erich +Ervin +Giancarlo +Junior +Leroy +Quintin +Trey +Will +Arnoldo +Austen +Braden +Bradford +Caesar +Dexter +Domingo +Gerard +Jovani +Julien +Kaleb +Kerry +Marcoantonio +Maximiliano +Norberto +Stephanie +Sunny +Coty +Dave +Elizabeth +Filiberto +Geovanni +Harvey +Lane +Nikko +Niko +Ron +Westley +Winston +Adriel +Arman +Axel +Bryon +Bryson +Garrick +Leobardo +Luciano +Lucio +Lyle +Travon +Trever +Blair +Bo +Brayan +Carlton +Clint +Jennifer +Milo +Samson +Shea +Teddy +Vidal +Adrien +Aric +Gerson +Jace +Johnson +Josh +Justen +Kareem +Kendrick +Keven +Kristoffer +Mohamed +Nathanial +Reed +Silvestre +Thaddeus +Tobias +Trevon +Vince +Chandler +Edmund +Giovani +Javon +Kyler +Lamont +Marques +Mohammed +Ahmed +Akeem +Barrett +Chasen +Emerson +Fausto +Kai +Laron +Maximillian +Rico +Rigo +Robbie +Romeo +Shelby +Spenser +Van +Bill +Jameson +Jamil +Jorden +Keaton +Nima +Otis +Randal +Rojelio +Trinidad +Alden +Alejandra +Andreas +Artemio +August +Bradly +Danilo +Darian +Darrel +Dejon +Dino +Ezra +Gorge +Leland +Lester +Lino +Markanthony +Mikhail +Mychael +Paris +Paulo +Porfirio +Ronny +Sylvester +Tyree +Vincente +Abelardo +Abner +Aidan +Amador +Armand +Brooks +Chester +Christina +Christoper +Clyde +Dandre +Deangelo +Donnie +Floyd +Fransisco +Garett +Grayson +Hassan +Hugh +Ibrahim +Johny +Jonatan +Malik +Marcell +Melissa +Mickey +Richardo +Samir +Santino +Vaughn +Arnaldo +Arron +Baltazar +Brain +Brennen +Bronson +Denny +Deven +Donavan +Edson +Eloy +Harris +Jarod +Jeffry +Jerald +Johnpaul +Jonny +Josef +Juvenal +Kelsey +Lazaro +Margarito +Minh +Paolo +Reese +Sarkis +Stevie +Storm +Abram +Alphonso +Amit +Anibal +Arian +Bennett +Brandyn +Camron +Cassidy +Cheng +Claudio +Cyrus +Darwin +Deonte +Derik +Ellis +Elton +Feliciano +Gamaliel +Geovanny +Jamaal +Jered +Jerrell +Jonas +Justine +Kong +Long +Michaelangelo +Mustafa +Mykel +Rudolph +Syed +Tevin +Timmy +Toby +Tory +Valente +Valentino +Ana +Anselmo +Art +Bee +Brandan +Cheyne +Clemente +Darrick +Dimitri +Donny +Flavio +Galen +Hasan +Jacques +Jan +Justyn +Karim +Kiefer +Kou +Lauro +Michel +Michelle +Myron +Pierce +Renato +Willy +Ari +Arya +Cecil +Coleman +Colt +Damion +Dewayne +Dominque +Duncan +Esequiel +Faustino +Fidencio +Florentino +Gildardo +Houston +Jackie +Jessi +Juanjose +Kwame +Luigi +Marty +Mayra +Meng +Nader +Nancy +Nathen +Nikolaus +Otto +Ramses +Refugio +Reggie +Remington +Ritchie +Salomon +Sami +Stephon +Vang +Wilber +Antwon +Arley +Armen +Baron +Benson +Brandin +Chadd +Daren +Daron +Dayne +Eliot +Elvin +Ever +Gabino +Garry +Geraldo +Heath +Jacinto +Jourdan +Juanmanuel +Kalvin +Khalil +Laura +Levon +Marcial +Marlin +Matt +Morris +Nicholaus +Patricio +Raj +Randell +Shon +Skye +Thanh +Tyron +Ulisses +Vanessa +Virgil +Willis +Alain +Alessandro +Alfonzo +Amado +Amilcar +Anders +Arash +Bernabe +Boris +Brant +Ceasar +Chadwick +Chue +Dejuan +Dereck +Donnell +Dontae +Eleazar +Enoch +Jabari +Jerardo +Jeremey +Johathan +Joseantonio +Josedejesus +Jullian +Kalen +Leif +Malachi +Mateo +Matias +Mohamad +Reece +Rodrick +Roque +Shant +Silverio +Tuan +Ubaldo +Archie +Arik +Asher +Augustine +Bijan +Brannon +Carmelo +Celso +Christophe +Dagoberto +Dallin +Denis +Duke +Elio +Franky +Geovany +Geronimo +Hilario +Huy +Irwin +Jerad +Jeromy +Joan +Justino +Kennedy +Keon +Laurence +Lincoln +London +Micahel +Migel +Neftali +Nikolai +Pascual +Phong +Raudel +Raziel +Rhett +Rony +Sage +Sydney +Teodoro +Vladimir +Vu +Yesenia +Zechariah +Abrahan +Abran +Adonis +Amanda +Andrea +Antwan +Arsenio +Broc +Codi +Crystal +Daisy +Dangelo +Darion +Dashawn +Derrell +Edmundo +Erasmo +Erica +Erika +Esgar +Gabriela +Gareth +Ger +Greggory +Hakeem +Hiram +Holden +Homero +Isamar +Jacky +Jacobo +Jacqueline +Jade +Jamel +Jayme +Jeramy +Jereme +Kamron +Luther +Mikel +Mynor +Nam +Nickolaus +Obed +Omari +Rami +Raymon +Reymundo +Richie +Rohit +Roosevelt +Salvatore +Serafin +Serjio +Shay +Tim +Tommie +Trayvon +Ulices +Uziel +Valentine +Vincenzo +Wendell +Williams +Zakary +Aarron +An +Anderson +Anson +Aram +Arin +Arlen +Aubrey +Bailey +Blaze +Bob +Brenda +Clement +Cordell +Cornelio +Cornelius +Dajuan +Dayton +Delfino +Desean +Deshon +Dusty +Edmond +Edsel +Eliezer +Ely +Emil +Esau +Eugenio +Forest +Froylan +Gianni +Grady +Hank +Hubert +Jamison +Jarret +Jashua +Jedidiah +Jerrod +Juanantonio +Jules +Juliocesar +Kadeem +Kao +Kavon +Kenton +Kevan +Khalid +Khoa +Kian +Kiel +Kim +Kraig +Lauren +Leandro +Lenny +Lon +Luisalberto +Madison +Manny +Modesto +Murphy +Narciso +Nehemiah +Nicolai +Nolberto +Rahul +Rod +Rosalio +Rusty +Samantha +Samual +Schuyler +Sheridan +Stacy +Stevan +Timmothy +Tito +Torey +Travion +Trung +Vikram +Walker +Yeng +Yousef +Adrain +Adriana +Akash +Amin +Anh +Antione +Arjun +Blas +Candelario +Carey +Cedrick +Channing +Charley +Cynthia +Dajon +Dashiell +Dennys +Deondre +Deric +Diana +Dijon +Dimas +Dionte +Earnest +Edgard +Elisha +Emiliano +Evaristo +Ferdinand +Fue +Garland +Geovani +Gerry +Grigor +Hakop +Ira +Jarren +Jaymes +Jeremie +Jerod +Jhonny +Joshue +Jun +Khaled +Kieran +Lars +Leng +Malcom +Marcellus +Marko +Maximino +Michal +Michale +Muhammad +Najee +Nery +Nevin +Nicco +Paulino +Ramsey +Ravi +Robby +Rodger +Rommel +Rufino +Ryne +Said +Sal +Sasha +Semaj +Silas +Simeon +Sione +Talon +Tam +Teng +Tino +Ulyses +Wilmer +Zaid +Abdul +Abdullah +Al +Alma +Angela +Anna +Auston +Bennie +Bladimir +Brando +Braxton +Claudia +Colten +Cyril +Danniel +Davin +Deshaun +Devaughn +Eden +Edilberto +Elbert +Elder +Estuardo +Eusebio +Fadi +Fletcher +Francesco +Garrison +Garth +Gaspar +Gian +Graeme +Hansel +Harlan +Hung +Ishmael +Jair +Jasen +Jasmine +Jelani +Jericho +Jeronimo +Jessee +Jevon +Joanthan +Job +Jonmichael +Josemanuel +Juston +Kelley +Khiry +Killian +Kyron +Leandre +Luc +Lucky +Lue +Luisangel +Lyndon +Macario +Marquez +Matthias +Melchor +Michaelanthony +Mitch +Monte +Navid +Nicklaus +Omid +Oren +Orion +Rayvon +Renee +Rhys +Rocio +Rohan +Sabino +Sai +Saman +Sandra +Scot +Shaheen +Sherman +Tai +Theron +Tien +Tobin +Trevin +Truman +Tye +Vicent +Vinson +Wallace +Westin +Wilbert +Wilfred +Adiel +Ajay +Alexandra +Alton +Angelica +Anival +Antoniodejesus +Ara +Aramis +Armani +Arnel +Aryan +Babyboy +Belal +Bilal +Bobbie +Brandt +Brayden +Britton +Bryn +Cale +Carmen +Cha +Chan +Choua +Cipriano +Codey +Cornell +Cristina +Cullen +Danial +Darron +Dashon +Daveon +Deante +Delano +Demarcus +Demarea +Demetrio +Denver +Deontae +Derrek +Devonte +Devyn +Diamond +Dionicio +Dirk +Domenico +Domonic +Doyle +Dustyn +Duy +Edison +Eliazar +Emmett +Enrico +Evelyn +Faisal +Farhad +Franklyn +Fransico +Frederic +Fredi +Gerrit +Gibran +Giovannie +Hagop +Harpreet +Homar +Isabel +Isac +Jameel +Jarek +Jody +Joeseph +Joesph +Johnmichael +Jonnathan +Jorgeluis +Joshuah +Jude +Justo +Kamran +Kane +Keng +Kenji +Kenyon +Keoni +Kris +Lamonte +Lavell +Lindsey +Lisandro +Lowell +Marcello +Marisol +Markell +Marlo +Marshawn +Martell +Mary +Maxfield +Maxx +Maynor +Mckenzie +Michele +Monica +Moshe +Nahum +Natalie +Norris +Osiel +Osualdo +Pheng +Prince +Quinten +Rahim +Rashaad +Rayshawn +Rian +Rio +Robinson +Rosario +Ruby +Rueben +Russel +Ryon +Sagar +Stefano +Tan +Tariq +Terell +Theo +Tyre +Waldo +Wendy +Xiong +Yehuda +Yonathan +Yosef +Young +Yovani +Abimael +Abisai +Agustine +Alegandro +Alix +Alon +Amar +Amos +Ankur +Antone +Apolonio +Aria +Aris +Armin +Armondo +Arun +Arvin +Asa +Augustin +Avi +Baldemar +Bao +Basil +Basilio +Bejamin +Benigno +Benton +Bernardino +Bernie +Billie +Brandy +Broderick +Cain +Cameren +Candido +Catarino +Cecilio +Chauncey +Chet +Christapher +Christofer +Claude +Cord +Corwin +Cosme +Cuauhtemoc +Dameon +Dannie +Darrius +Demarco +Deron +Derrik +Devlin +Dillan +Diondre +Domonique +Dontay +Dung +Eber +Elan +Emily +Fahad +Farid +Franz +Froilan +Gaston +Gavino +Geoff +Germain +Gevork +Gil +Gregg +Hai +Hermilo +Hipolito +Hoa +Imran +Isacc +Isreal +Jalal +Jareth +Jarett +Jase +Jaspreet +Jasson +Jed +Jehu +Jeramie +Jerred +Johan +Johnathen +Jonathen +Jory +Juaquin +Kalin +Karan +Kc +Keenen +Kento +Khang +Khristopher +Kiet +Kimberly +King +Kirby +Klayton +Kristen +Krystopher +Lynn +Maribel +Marissa +Markeith +Maurilio +Maverick +Mick +Mikal +Napoleon +Narek +Nash +Nathon +Nicky +Nicolaus +Nikola +Niles +Osmar +Oswald +Pao +Patricia +Philippe +Ramin +Remy +Reza +Rickie +Rishi +Rocco +Romel +Rylan +Ryland +Sameer +Sandy +Shaine +Shan +Shayan +Sigifredo +Sixto +Stanford +Tania +Thang +Tong +Torin +Trace +Tramell +Tremaine +Triston +Victoralfonso +Vinh +Virgilio +Vishal +Wiley +Yang +Yonatan +Yoni +Aharon +Alek +Alexzander +Alicia +Amber +Ameer +Amer +Ammon +Amrit +Amy +Andranik +Andrez +Anil +Anwar +Ashwin +Asif +Augustus +Baby +Benedict +Benjamen +Bert +Blaise +Blanca +Blayne +Blong +Brayant +Brennon +Brittany +Brody +Buddy +Burton +Camden +Camryn +Celestino +Chang +Charly +Chistian +Chistopher +Chong +Cliff +Cliffton +Codie +Crisanto +Curt +Daivd +Dat +Dayvon +Deanthony +Dedrick +Deonta +Derron +Dietrich +Domenic +Donavon +Douglass +Dutch +Ean +Earvin +Edder +Eduard +Edy +Eladio +Eligio +Elpidio +Enrigue +Ephraim +Errol +Eulises +Filemon +Fong +Fortino +Geno +Gideon +Giorgio +Giovany +Giuseppe +Grey +Haig +Harout +Hollis +Hue +Ilan +Imani +Isidoro +Jahaziel +Jai +Jamon +Jaren +Jarrid +Jarvis +Jeanpierre +Jedediah +Jefferey +Jensen +Jerimiah +Jerman +Jerron +Jese +Jessey +Jhovany +Johann +Jonpaul +Jorje +Joseangel +Jospeh +Jr +Juanito +Juventino +Kacey +Kale +Kayvon +Kellan +Kendal +Kevion +Kevon +Kip +Kolby +Kunal +Laquan +Liliana +Lorne +Luisenrique +Lupe +Malek +Marcanthony +Marin +Marquese +Matthieu +Mckinley +Mikey +Moua +Natividad +Nazareth +Nazario +Neema +Nhia +Nicklas +Nicole +Nikki +Niklas +Omeed +Oracio +Osama +Osmin +Paden +Peng +Phi +Quoc +Raffi +Rakeem +Ranferi +Rasheed +Raven +Raynard +Reilly +Ricard +Ricco +Ronak +Rosa +Royal +Ryley +Samer +Sandeep +Seamus +Seanmichael +Selvin +Shae +Shayn +Sho +Sky +Tad +Tarek +Tarin +Tate +Tayler +Thai +Thong +Titus +Toni +Torrance +Tyrus +Viet +Vijay +Viliami +Whitney +Woodrow +Yair +Yama +Yia +Zack +Zain +Abdiel +Abelino +Adams +Adolph +Akil +Akira +Albaro +Amadeo +Aman +Anthoney +Anthoni +Antoni +Antwone +Aren +Arick +Aristeo +Arnie +Asael +Ashkan +Augusto +Avetis +Barron +Bartholomew +Bravlio +Breon +Britt +Camren +Carolina +Case +Chai +Chao +Christen +Christipher +Christoffer +Christos +Cindy +Cirilo +Ciro +Cisco +Cleveland +Conrado +Correy +Cortland +Cosmo +Coy +Crispin +Cristofer +Curran +Cyle +Dang +Daniela +Dara +Darell +Darien +Darrian +Darrion +Davie +Davonte +Davy +Delbert +Demario +Demetri +Demetrious +Demonte +Denzell +Desi +Devion +Dewey +Dionisio +Dmitri +Donato +Dru +Duc +Eberardo +Ed +Edan +Edvin +Elgin +Eliel +Enoc +Enrrique +Erron +Esai +Essa +Fabio +Favio +Francois +Fritz +Galo +Garren +Genesis +Ghassan +Gillermo +Gloria +Gonsalo +Greyson +Gunnar +Gurpreet +Haik +Hakim +Heber +Henri +Homer +Horace +Hovig +Iban +Isaak +Ismail +Issa +Jamall +Jamell +Jarrad +Javan +Jazmin +Jeanpaul +Jeramiah +Jermey +Jerrick +Jerson +Jett +Jimi +Joselito +Jossue +Josua +Jovon +Juanpablo +Julie +June +Karen +Kavin +Kevork +Kevyn +Khanh +Kimo +Kirt +Kongmeng +Krikor +Lamarr +Lamon +Leighton +Leticia +Lonnell +Mac +Mahmoud +Major +Mandeep +Marciano +Margarita +Marion +Markel +Marquell +Martel +Marwin +Maxim +Medardo +Mervin +Michelangelo +Mikael +Mikeal +Milan +Mina +Monico +Monique +Neftaly +Nicholai +Nicholis +Nicolo +Nikhil +Nikolaos +Olegario +Orel +Osiris +Osman +Otoniel +Patric +Percy +Phil +Quan +Quincey +Race +Ramond +Ramy +Rance +Randel +Rayan +Reinaldo +Reno +Reymond +Rhyan +Rowan +Rustin +Saddam +Sammuel +Sampson +Santana +Schyler +Scotty +Sebastien +Shahan +Shahin +Sharif +Shelton +Shiloh +Silvano +Son +Stacey +Sukhdeep +Sultan +Sumeet +Takayuki +Tarik +Thompson +Tigran +Torrey +Tosh +Toua +Tracey +Tremell +Trenten +Trino +Vernell +Veronica +Victoriano +Vito +Vivek +Waleed +Waylon +Wes +Yobani +Yusef +Zacarias +Adnan +Aiden +Akshay +Alaric +Aldrin +Alen +Alexi +Aljandro +Ameen +Anastacio +Andrei +Andru +Andrue +Antwoine +Arie +Armond +Aureliano +Avelino +Bacilio +Barret +Belen +Belisario +Binh +Bjorn +Blane +Bobak +Brion +Buck +Bulmaro +Byran +Calen +Cannon +Carina +Carlin +Carnell +Carrington +Cash +Catherine +Cervando +Cesario +Cezar +Chayanne +Che +Cher +Chirstopher +Christan +Christine +Christpher +Chritian +Cj +Colter +Concepcion +Constantino +Corry +Cort +Cristino +Cristo +Dakoda +Damonte +Daniele +Danielle +Dany +Danzel +Daryn +Dashaun +Dawson +Dax +Declan +Delmar +Delon +Delvin +Delvon +Demetric +Demetris +Demitri +Demond +Denise +Destin +Devron +Dhruv +Diante +Dillion +Djavan +Donell +Donta +Dontrell +Durrell +Dwain +Easton +Efrem +Eldon +Eliodoro +Emigdio +Emillio +Endy +Enzo +Eoin +Evelio +Fabricio +Fabrizio +Faraz +Florencio +Flynn +Fortunato +Fredis +Fredrik +Freeman +Frisco +Garen +Garin +Garreth +Gaudencio +Gaurav +Gentry +Gerado +Geroge +Giuliano +Graciela +Gumaro +Hamilton +Herminio +Hien +Hoang +Hudson +Iran +Ivory +Jaciel +Jae +Jalil +Jamari +Janet +Jarell +Jarrell +Jarryd +Jaryd +Jasmin +Jaswinder +Javonte +Jawan +Jayro +Jaysen +Jc +Jedd +Jenny +Jeovanni +Jerame +Jeremi +Jerid +Jeron +Jerrad +Jerret +Jerrid +Jeshua +Jiovanni +Jiovanny +Joanna +Joao +Jobany +Jocob +Johanna +Johncarlo +Jomar +Jonthan +Jordin +Josecarlos +Josedaniel +Josemiguel +Joshus +Jovante +Juanangel +Judson +Julia +Justus +Kabir +Kalani +Kamal +Karina +Karlo +Karo +Katherine +Kayle +Keandre +Kee +Keefe +Keisuke +Kendell +Kennan +Kenrick +Kiernan +Kollin +Konrad +Krishna +Kristin +Ky +Kylen +Langston +Lavon +Lenin +Lennon +Levy +Linda +Lizeth +Lonny +Lucia +Mack +Mandela +Manolo +Marcio +Maricela +Markie +Marquel +Marshal +Mathieu +Matteo +Matthews +Maximo +Menachem +Merlin +Michell +Mihir +Miller +Montana +Montgomery +Mykal +Nabil +Nabor +Nadeem +Naim +Neel +Neng +Neri +Niall +Nicholes +Niels +Nile +Nils +Nino +Olaf +Omero +Orrin +Ozzie +Pardeep +Parris +Parth +Pascal +Payam +Payden +Payton +Peyton +Phu +Porter +Prentice +Prescott +Primitivo +Primo +Raheem +Rain +Rajan +Rajiv +Rakim +Randon +Raquel +Rashawn +Raymondo +Razmig +Reginaldo +Remi +Renaldo +Renne +Rexford +Richmond +Robb +Romero +Ronaldo +Roshan +Rowland +Rumaldo +Rutger +Ryen +Ryo +Saad +Salome +Salvadore +San +Sang +Sanjay +Sarah +Seng +Sevag +Severiano +Shalom +Sina +Smith +Sonia +Sou +Stan +Steffan +Sue +Sullivan +Sung +Susan +Susana +Tajh +Takahiro +Tal +Tamer +Taurean +Terrace +Terron +Thao +Thinh +Thor +Tiffany +Timoteo +Traveon +Tristin +Turner +Tyrie +Uvaldo +Vahe +Vartan +Vicken +Vinay +Ward +Werner +Westly +Wilberto +Wilbur +Willaim +Willard +Willem +Wilton +Yan +Yee +Yehoshua +Yen +Yessenia +Ying +Yony +Yovanni +Yovany +Yu +Yusuf +Yusuke +Yuta +Zacharia +Zavier +Zohaib +Zubin +Michael +Christopher +Daniel +Jose +David +Matthew +Andrew +Joshua +Anthony +Jonathan +Kevin +Joseph +Ryan +Robert +Nicholas +James +Juan +Brandon +Eric +Alexander +John +Justin +Kyle +Luis +Steven +Jacob +Tyler +Christian +Jesus +Brian +William +Richard +Carlos +Aaron +Miguel +Zachary +Cody +Jordan +Thomas +Sean +Victor +Samuel +Jorge +Jason +Alejandro +Jesse +Timothy +Eduardo +Francisco +Jeffrey +Dylan +Bryan +Gabriel +Adrian +Benjamin +Adam +Edgar +Patrick +Oscar +Mark +Ricardo +Manuel +Nathan +Paul +Jeremy +Angel +Antonio +Erik +Edward +Alex +Cameron +Mario +Scott +Sergio +Taylor +Travis +Stephen +Martin +Charles +Austin +Omar +Fernando +Javier +Kenneth +Gregory +Trevor +Vincent +Roberto +Ivan +Cesar +Hector +Raymond +Ruben +Peter +Joel +Ian +Derek +Alberto +George +Raul +Edwin +Julian +Julio +Pedro +Armando +Rafael +Andres +Marco +Jaime +Jared +Evan +Erick +Johnny +Garrett +Gerardo +Salvador +Danny +Shane +Frank +Spencer +Alan +Marcus +Nathaniel +Enrique +Henry +Dillon +Devin +Dustin +Arturo +Blake +Gustavo +Phillip +Josue +Alfredo +Albert +Corey +Marcos +Ramon +Diego +Ernesto +Isaac +Shawn +Cory +Jake +Brett +Ronald +Bradley +Mitchell +Chad +Johnathan +Abraham +Andy +Tony +Casey +Emmanuel +Jimmy +Keith +Ethan +Nicolas +Chase +Donald +Dominic +Wesley +Rene +Randy +Dennis +Steve +Andre +Douglas +Gary +Hugo +Joe +Lucas +Cristian +Guillermo +Eddie +Philip +Israel +Jerry +Luke +Pablo +Max +Jack +Maxwell +Saul +Derrick +Ismael +Mathew +Allen +Connor +Giovanni +Curtis +Walter +Abel +Alfonso +Arthur +Cole +Logan +Moises +Alexis +Rudy +Fabian +Felipe +Lawrence +Rodolfo +Troy +Mason +Caleb +Devon +Leonardo +Louis +Marvin +Esteban +Seth +Gilbert +Bryce +Brendan +Jessie +Kristopher +Colin +Ricky +Gilberto +Jonathon +Jeremiah +Xavier +Tanner +Larry +Brent +Grant +Elias +Alec +Marc +Ramiro +Russell +Sebastian +Roger +Calvin +Nelson +Rodrigo +Rogelio +Clayton +Dakota +Efrain +Craig +Isaiah +Alvaro +Noah +Roy +Carl +Irvin +Noe +Nestor +Dominique +Bryant +Humberto +Darren +Emilio +Adan +Freddy +Drew +Randall +Jeffery +Simon +Todd +Elijah +Irving +Jackson +Miles +Lorenzo +Damian +Nolan +Angelo +Bobby +Colton +Ignacio +German +Joey +Lance +Collin +Branden +Shaun +Donovan +Noel +Oliver +Roman +Rigoberto +Dalton +Jay +Orlando +Theodore +Byron +Harrison +Mauricio +Morgan +Billy +Gerald +Hunter +Micheal +Clinton +Rodney +Felix +Leonel +Emanuel +Maurice +Tomas +Jairo +Allan +Parker +Ray +Ariel +Santiago +Chris +Darryl +Ross +Neil +Nickolas +Frederick +Malcolm +Octavio +Tommy +Franklin +Leonard +Uriel +Alfred +Vicente +Dean +Ronnie +Agustin +Alvin +Levi +Mike +Colby +Geoffrey +Osvaldo +Arnold +Ernest +Adolfo +Joaquin +Riley +Sam +Jon +Marlon +Bruce +Deandre +Kelvin +Tristan +Hayden +Preston +Stefan +Edgardo +Gonzalo +Micah +Beau +Reginald +Charlie +Efren +Heriberto +Jamie +Terry +Kenny +Ulises +Wayne +Guadalupe +Myles +Reynaldo +Darius +Lee +Ali +Dante +Eugene +Melvin +Terrance +Willie +Elliot +Rolando +Darrell +Weston +Josiah +Trenton +Zachariah +Frankie +Johnathon +Glenn +Jerome +Kody +Rick +Skyler +Tyrone +Gavin +Karl +Dallas +Isaias +Marquis +Ralph +Damien +Forrest +Gage +Nikolas +Conor +Dane +Jamal +Kameron +Kurtis +Marshall +Damon +Francis +Leo +Louie +Bernardo +Kurt +Stanley +Wilson +Joseluis +Kory +Moses +Wyatt +Brennan +Clifford +Alonzo +Eli +Kirk +Robin +Zachery +Brendon +Demetrius +Dominick +Dale +Kelly +Norman +Warren +Estevan +Raymundo +Zackary +Ashton +Harold +Isidro +Mohammad +Darnell +Deshawn +Fidel +Herman +Trent +Alexandro +Keenan +Aldo +Elliott +Elmer +Sonny +Alonso +Conrad +Hernan +Howard +Jordon +Kendall +Quinn +Stuart +Wade +Ezequiel +Jeff +Landon +Dwayne +Graham +Marcel +Valentin +Fred +Harry +Leon +Lewis +Terrence +Chance +Gregorio +Milton +Brenden +Jarrett +Bret +Brock +Sammy +Ulysses +Amir +Blaine +Corbin +Dario +Jovan +Ben +Braulio +Kent +Nico +Terrell +Arnulfo +Aurelio +Carson +Daryl +Devan +Don +Drake +Elvis +Everardo +Jayson +Roland +Antoine +Carlo +Clarence +Davion +Davis +Denzel +Glen +Cristopher +Eddy +Tevin +Ty +Cristobal +Issac +Maria +Stephan +Donte +Jakob +Perry +Santos +Benito +Cruz +Dorian +Garret +Julius +Oswaldo +Benny +Bernard +Carter +Earl +Giovanny +Juancarlos +Kristian +Lamar +Loren +Nathanael +Sterling +Braden +Edwardo +Federico +Gino +Jessy +Keegan +Neal +Clint +Conner +Dan +Erwin +Lloyd +Raphael +Everett +Fredy +Jessica +Jovani +Junior +Mariano +Markus +Owen +Quincy +Sheldon +Ahmad +Davon +Freddie +Gordon +Jean +Jim +Kristofer +Miguelangel +Reuben +Roderick +Rory +Jermaine +Kai +Lukas +Tom +Tucker +Aron +Axel +Barry +Eliseo +Genaro +Isai +Kendrick +Marquise +Misael +Mitchel +Shelby +Zane +Chandler +Chaz +Desmond +Gene +Jovany +Kaleb +Adalberto +Eriberto +Ezekiel +Guy +Isiah +Jovanny +Mauro +Shayne +Cedric +Fermin +Jarred +Johnnie +Lester +Luiz +Mohammed +Nick +Griffin +Jarrod +Ken +Leslie +Norberto +Pete +Tou +Bryson +Cooper +Dana +Derick +Elizabeth +Geovanni +Jefferson +Kyler +Leland +Leopoldo +Brady +Brice +Clay +Darin +Dion +Herbert +Pierre +Skylar +Solomon +Wilfredo +Arnoldo +Brad +Brenton +Eder +Harley +Jonatan +Leobardo +Lonnie +Niko +Rex +Rico +Stewart +Sunny +Trevon +Vidal +Zackery +Antony +Blair +Clark +Darrin +Denny +Deon +Fredrick +Kellen +Korey +Lamont +Lionel +Quinton +Rickey +Rosendo +Shannon +Sidney +Tylor +Tyree +Brayan +Darwin +Duane +Ernie +Javon +Jess +Kasey +Keven +Marcelo +Quentin +Sage +Timmy +Vernon +Arron +Grayson +Liam +Rashad +Terence +Vance +Addison +Brandyn +Cyrus +Gianni +Kong +Mohamed +Quintin +Reed +Rocky +Rudolph +Stephanie +Travon +Will +Caesar +Dejon +Deonte +Dexter +Galen +Jennifer +Jimmie +Jovanni +Nigel +Nikko +Osbaldo +Reid +Tracy +Trey +Tyson +Austen +Avery +Faustino +Irwin +Jameson +Pierce +Royce +Domingo +Dwight +Ervin +Gerson +Giancarlo +Horacio +Julien +Lucio +Sherman +Vince +Aidan +Bill +Bradford +Brennen +Bruno +Carlton +Edmund +Garett +Geovanny +Jasper +Jonas +Mackenzie +Michelle +Paulo +Randolph +Samson +Trever +Tyrell +Claudio +Erich +Franco +Gerard +Greg +Jaron +Lane +Malik +Marcelino +Maximilian +Paolo +Shant +Willy +Alexandre +Bijan +Brandan +Chester +Clifton +Dave +Emiliano +Mychal +Richie +Ronny +Ted +Trinidad +Ahmed +Augustine +Bennett +Dijon +Eleazar +Eloy +Forest +Giovani +Harvey +Jamaal +Jonah +Juvenal +Kareem +Keaton +Kerry +Lyle +Markanthony +Myron +Teddy +Amit +Anderson +Anton +Bryon +Damion +Dandre +Desean +Deven +Dillan +Dimitri +Erin +Hilario +Jamar +Leroy +Marcoantonio +Mikel +Nikolaus +Rey +Salvatore +Spenser +Stevie +Ubaldo +Ulisses +Walker +Winston +Abran +Aric +Brenda +Daron +Dashawn +Devante +Dewayne +Donavan +Edson +Filiberto +Geovany +Hans +Johnson +Jorden +Josh +Justen +Khalid +Laurence +Lazaro +Otis +Randal +Reyes +Samir +Silvestre +Vaughn +Abram +Argenis +Arman +Ashley +Bronson +Camron +Coty +Devonte +Dontae +Duncan +Edmond +Ever +Gunnar +Jacobo +Jamil +Josedejesus +Kevon +Luciano +Madison +Marques +Matias +Maximillian +Obed +Orion +Rocio +Vincente +Abelardo +Adriel +Alejandra +Alessandro +Alfonzo +Andrea +Ari +Artemio +Baltazar +Barrett +Bee +Brain +Chadwick +Chasen +Cheyne +Darian +Earvin +Edmundo +Emerson +Fausto +Jackie +Jair +Jerald +Johnpaul +Johny +Joshue +Kou +Kristoffer +Nicholaus +Nikolai +Reece +Reese +Ron +Santino +Adrien +Andreas +Anibal +Antwan +Arnaldo +Bo +Ceasar +Coleman +Courtney +Dino +Donnell +Donny +Elton +Emmett +Favian +Garrick +Gil +Holden +Hubert +Jerrell +Josef +Juanjose +Justyn +Kiefer +Lino +Margarito +Meng +Mikael +Nima +Paris +Rigo +Robbie +Shea +Westley +Wilbert +Zakary +Anders +Arian +Armand +Arya +Augustus +Boris +Brooks +Cecil +Cheng +Christoper +Clyde +Danilo +Darrel +Darrick +Deangelo +Demario +Edgard +Ellis +Flavio +Floyd +Genesis +Hugh +Ibrahim +Jace +Jamel +Jered +Jerrod +Mickey +Mikhail +Nathanial +Pao +Refugio +Rojelio +Romeo +Salomon +Toby +Torrey +Vanessa +Veronica +Aram +Brody +Celso +Deanthony +Diana +Elisha +Erica +Garrison +Garry +Harris +Hassan +Jade +Jamison +Kelsey +Kennedy +Long +Maximiliano +Nicky +Patric +Phong +Ramsey +Romel +Ryne +Stephon +Talon +Tobias +Van +Wilfred +Yovani +Amador +Bernabe +Bilal +Camden +Camilo +Christina +Dagoberto +Daren +Derik +Elvin +Emil +Franky +Fredi +Gabriela +Garth +Huy +Jefferey +Justice +Justine +Kalvin +Kunal +Leif +Mateo +Maximino +Migel +Nickolaus +Rami +Robby +Roque +Sarkis +Sione +Stefano +Tim +Viet +Vinh +Willis +Wilmer +Yeng +Zechariah +Abner +Alek +Archie +Arjun +Armen +Art +Asher +Codie +Cynthia +Denis +Derrik +Deshaun +Donnie +Dylon +Erasmo +Esequiel +Esgar +Eugenio +Ezra +Florentino +Jedidiah +Jeffry +Jerardo +Jerod +Josemanuel +Kamran +Lucky +Marcell +Marko +Maxx +Monica +Nader +Nancy +Nery +Nikhil +Omid +Osman +Rayshawn +Renato +Rhys +Sami +Shayan +Ulyses +Valente +Virgil +Adriana +Alain +Alton +Amos +Arash +Armani +Baby +Christain +Darion +Dayne +Devaughn +Domenic +Domonique +Dyllan +Edison +Errol +Esau +Fletcher +Gabino +Geovani +Gerry +Hakeem +Hansel +Ira +Johathan +Johnmichael +Khalil +Kian +Kieran +Lauren +Leandro +Luther +Malachi +Marcial +Micahel +Michel +Mohamad +Morris +Mynor +Narciso +Otto +Porfirio +Ramses +Reggie +Rhett +Rian +Rosalio +Rosario +Rueben +Russel +Sal +Shay +Silas +Tito +Torin +Travion +Trung +Valentino +Yee +Zack +Adrain +Akash +Amado +Aubrey +Brayden +Cassidy +Chan +Christofer +Clemente +Cornelius +Denzell +Derrek +Devyn +Eliazar +Elio +Florencio +Francesco +Ger +Gian +Gorge +Hamilton +Hieu +Jacques +Jeanluc +Jeramy +Jeronimo +Joesph +Jonny +Kalin +Laura +Lauro +Lincoln +Maverick +Mayra +Milo +Modesto +Mustafa +Nathen +Pascual +Raj +Richardo +Rony +Rusty +Rylan +Sawyer +Shon +Stacey +Stacy +Stevan +Sylvester +Taj +Tuan +Vincenzo +Vinson +Wendell +Westin +Abdul +Akeem +Albaro +Amilcar +Anselmo +August +Babyboy +Bennie +Benson +Brandt +Cary +Cheyenne +Chong +Colt +Corwin +Darrion +Dayton +Deshon +Erika +Eusebio +Evaristo +Fabio +Fransisco +Fue +Gamaliel +Gevork +Grady +Harpreet +Hung +Isreal +Jacky +Jessi +Jorgeluis +Jossue +Juventino +Kalen +Karim +Kenton +Keshawn +Laron +Lowell +Luigi +Marquice +Matthias +Mychael +Nam +Nicklaus +Nolberto +Pheng +Phi +Rahul +Renee +Royal +Sahil +Sandeep +Schuyler +Serafin +Servando +Storm +Syed +Torrance +Uriah +Vahe +Victoria +Vladimir +Wilber +Williams +Anson +Arin +Augustin +Blong +Bob +Bradly +Brando +Carmelo +Celestino +Chee +Chistopher +Christen +Chue +Claude +Cuauhtemoc +Danial +Darien +Demarcus +Demetri +Demetrio +Diamond +Dominque +Elbert +Eliott +Ely +Emile +Enoc +Feliciano +Germain +Henri +Houston +Ilan +Irbin +Isamar +Ishmael +Jamari +Jaquan +Jeremey +Jeremie +Jonnathan +Joseantonio +Jules +Juliocesar +Kadeem +Karen +Kc +Kegan +Kirby +Laquan +Leng +Lenin +Levon +Maynor +Miller +Minh +Monte +Prince +Raffi +Sabastian +Sameer +Sasha +Thaddeus +Tobin +Tory +Tyron +Wendy +Young +Alexandra +Amanda +Ana +Anand +Antwon +Ara +Asa +Auston +Bernie +Binh +Blas +Brant +Broderick +Candelario +Cezar +Chistian +Cipriano +Codi +Colten +Cristhian +Cristina +Cullen +Curt +Dallin +Darron +Delbert +Deondre +Dillion +Duke +Duy +Dyllon +Eulises +Froylan +Gaston +Gideon +Giuseppe +Hamza +Horace +Hudson +Jacinto +Jan +Jaren +Jasmine +Jasson +Jaymes +Jelani +Jerad +Jerel +Joan +Job +Johan +Jorje +Joshuah +Keanu +Keenen +Keng +Kenji +Kevyn +Khang +Lafayette +Lucero +Macario +Magdaleno +Maribel +Marion +Marlo +Marshal +Martel +Martell +Maxfield +Michale +Moshe +Mykel +Natanael +Navid +Nicolaus +Norris +Patricio +Rishi +Rodger +Rodrick +Rohan +Rohit +Rommel +Sandra +Sandro +Sarah +Scotty +Serjio +Shaquille +Silverio +Son +Tad +Tai +Tam +Tarek +Tariq +Tayler +Teodoro +Titus +Toni +Trae +Vikram +Yobani +Yosef +Zain +Abdullah +Abrahan +Adonis +Aman +An +Artin +Arvin +Aryan +Ashwin +Avi +Bailey +Benedict +Bert +Blaise +Blayne +Buddy +Cain +Cha +Chace +Chazz +Cirilo +Claudia +Cliff +Codey +Colter +Cordell +Cordero +Cornell +Courtland +Cristo +Cuong +Daisy +Damonte +Davonte +Demarco +Deontae +Dereck +Deric +Dirk +Dominik +Domonic +Duc +Earnest +Eber +Ed +Eden +Enoch +Esteven +Francois +Geroge +Gerrit +Gildardo +Gregg +Greggory +Gurpreet +Hagop +Heath +Hipolito +Hiram +Hue +Iban +Irvine +Isaak +Ismail +Jacqueline +Janet +Jarett +Jarod +Jayce +Jayme +Jazmin +Jed +Jericho +Jeron +Jhonny +Jihad +Johnathen +Jonthan +Juanmanuel +Jude +Kao +Khristopher +Killian +King +Kolby +Lamarr +Landen +Lisandro +London +Luisangel +Malcom +Marcellus +Markell +Marquese +Marshawn +Marty +Mary +Maximo +Miriam +Muhammad +Narek +Paulino +Payton +Perris +Phil +Rashaad +Raudel +Raziel +Remington +Ritchie +Rocco +Rowan +Rubin +Sabino +Seamus +Steffan +Tal +Teng +Trayvon +Trevin +Truman +Tylar +Ulices +Uziel +Waldo +Wallace +Wayland +Wilbur +Willian +Yair +Zaid +Zeke +Adriane +Ajay +Alen +Alexzander +Amando +Andranik +Angus +Antione +Apolonio +Basil +Baudelio +Blaze +Bradlee +Brandin +Brennon +Cale +Calen +Carey +Chai +Chang +Chauncey +Cher +Christan +Christiaan +Christoher +Constantino +Cristofer +Crystal +Cyle +Dawson +Dejuan +Denver +Deron +Desi +Dimas +Dionte +Donavin +Ector +Edrick +Elan +Eliezer +Eligio +Eliot +Enrrique +Ephraim +Estuardo +Eulalio +Fidencio +Gareth +Geronimo +Giovany +Gustabo +Harlan +Harout +Herminio +Homar +Immanuel +Irineo +Ivory +Jabari +Jaleel +Jameel +Jareth +Jarid +Jarvis +Jasen +Javan +Jaycob +Jeanette +Jeanpaul +Jeremi +Jeromy +Jerrad +Jonathen +Joseangel +Josua +Jovon +Kalani +Kavin +Keane +Keelan +Keifer +Kelby +Kelley +Kenyon +Kiel +Kim +Librado +Luc +Luisalberto +Mack +Mahmoud +Marcello +Marquez +Melchor +Melissa +Najee +Nhia +Nicola +Nicole +Niles +Osama +Osmar +Ozzie +Parris +Peyton +Priscilla +Quan +Raheem +Randell +Rasheed +Ravi +Remy +Reymundo +Robinson +Saad +Samantha +Sammie +San +Selvin +Shelton +Sheridan +Shiloh +Sho +Sky +Sou +Sumeet +Suraj +Sydney +Terrill +Tevita +Thai +Thanh +Tj +Tri +Tristen +Valentine +Vang +Vartan +Vito +Wiley +Wolfgang +Xeng +Yancy +Yusef +Zacary +Zacharia +Abimael +Ace +Adel +Agustine +Albino +Alden +Aldrin +Alegandro +Alexsander +Alicia +Alistair +Amadeo +Amer +Amin +Andrey +Angelica +Anish +Artur +Augusto +Bao +Bayron +Bernardino +Billie +Bjorn +Blain +Brandy +Brannon +Brittany +Britton +Cade +Carolina +Catarino +Charley +Christine +Ciro +Clement +Coby +Conrado +Corin +Dajon +Damar +Dangelo +Danniel +Danzel +Dao +Dara +Dashiell +Deante +Denise +Derrell +Diante +Dilan +Dillin +Diondre +Domenico +Donavon +Dru +Dung +Dusty +Dustyn +Ean +Eladio +Elder +Emily +Enrico +Ericberto +Evin +Fadi +Ferdinand +Fortino +Garland +Garo +Gaspar +Geraldo +Grey +Greyson +Hal +Hank +Hasan +Hien +Hussein +Imani +Isac +Jabril +Jahaziel +Jasdeep +Jashua +Jasmin +Jaspreet +Jensen +Jeovanny +Jerid +Jesusalberto +Johnatan +Jonmichael +Jonte +Jordin +Jorel +Jory +Jourdan +Juanmiguel +Judah +Julia +Kaden +Kamal +Kamron +Kane +Katherine +Kennith +Kenya +Kevan +Khanh +Khoa +Kris +Lars +Leandre +Lindsey +Lue +Maher +Major +Manolo +Marcanthony +Marioalberto +Marisol +Matt +Michaelangelo +Michaeljames +Mikal +Mikey +Montgomery +Murphy +Nabil +Natalie +Neema +Nevin +Newton +Niall +Nicco +Nichols +Nicolai +Olaf +Olegario +Omari +Paola +Percy +Raleigh +Ramin +Raquel +Rayan +Raymon +Rayvon +Reilly +Remigio +Reno +Renzo +Rolland +Ronnell +Rudolfo +Ryanchristopher +Ryder +Said +Salman +Samual +Sang +Scot +Semaj +Shae +Shan +Sonia +Soren +Stanford +Stetson +Sue +Tarik +Tate +Tavon +Thien +Thong +Tin +Toua +Tracey +Trevion +Tristin +Turner +Tyrus +Vicent +Victoriano +Virgilio +Waleed +Xiong +Yesenia +Yusuf +Zamir +Zeferino +Adnan +Adolph +Adrean +Aiden +Aj +Aleksander +Alexi +Alvino +Amar +Ameer +Ammar +Andrez +Anthoney +Antone +Aren +Arie +Arik +Armon +Armond +Arun +Aureliano +Austyn +Avelino +Azael +Basilio +Benigno +Blane +Bond +Boyd +Briant +Briar +Brien +Broc +Bulmaro +Byran +Campbell +Carlin +Catalina +Cedrick +Chancellor +Channing +Charly +Chelsea +Christophe +Cindy +Cord +Cornelio +Cy +Cyril +Dain +Dakoda +Damen +Danh +Darrius +Darvin +Daryn +Daveon +Davin +Declan +Delfino +Demetris +Destin +Detrick +Devlin +Dimitrios +Dionicio +Donell +Donta +Dontay +Dwain +Eamon +Edan +Edilberto +Eduard +Edvin +Eitan +Ellison +Emad +Epifanio +Esai +Esdras +Esmeralda +Estefan +Evander +Faisal +Frances +Franciscojavier +Franklyn +Froilan +Gaige +Garen +Garren +Gavino +Geno +Gibran +Gillermo +Graeme +Grigor +Hakop +Hannah +Herber +Hoa +Homer +Imran +Isabel +Isael +Jae +Jafet +Jai +Jairus +Jarad +Jarrell +Jazz +Jc +Jeancarlo +Jeramey +Jeramiah +Jerimiah +Jerman +Jessey +Jevon +Jilberto +Jjesus +Joab +Joeseph +Johnie +Jomar +Josias +Jr +Juanpablo +Judith +June +Justo +Juston +Kabir +Kale +Karina +Kayvon +Kei +Kendell +Keon +Kevork +Keyon +Khiry +Kimberly +Klye +Koji +Kourosh +Kristin +Krystian +Kue +Kylan +Leighton +Lenny +Liliana +Lucian +Luisalfredo +Lyndon +Mac +Macaulay +Magdiel +Mainor +Marino +Markel +Markese +Markis +Marley +Marlin +Marqus +Mckinley +Megan +Merlin +Michaelanthony +Michal +Michelangelo +Michell +Mick +Milan +Montana +Montel +Mostafa +Nabeel +Nahum +Napoleon +Nash +Nathon +Nazareth +Nils +Nou +Oracio +Oren +Oskar +Parsa +Patricia +Payam +Peng +Perla +Petros +Placido +Prescott +Quang +Quinlan +Rachel +Rajan +Ramzi +Rashawn +Riccardo +Richmond +Rickie +Rikki +Rio +Roosevelt +Rosa +Roscoe +Rufino +Ryley +Ryo +Saam +Saeed +Salim +Samy +Sandy +Sanjay +Sara +Sher +Shervin +Sherwin +Slade +Stan +Takashi +Tan +Taurean +Tavis +Terell +Terran +Terrel +Tiffany +Timmothy +Tonny +Torrence +Trace +Umberto +Vahan +Vernell +Vinay +Werner +Wil +Wilfrido +Woodrow +Yannick +Zoe +Aakash +Aamir +Abanoub +Abdiel +Abelino +Abisai +Agapito +Akram +Alam +Aleczander +Alejo +Aleksandar +Alexx +Alphonso +Amber +Andree +Andrei +Anival +Ankur +Ansel +Antjuan +Antwain +Apolinar +Araceli +Arcenio +Aris +Aristeo +Arley +Arlo +Arnie +Aroldo +Arsenio +Aviel +Avinash +Aviv +Avraham +Awet +Axcel +Bairon +Bakari +Baldemar +Barrington +Bartolo +Barton +Benjamen +Benton +Bertin +Bianca +Bijon +Billal +Bladimir +Bobbie +Boston +Bradon +Brallan +Bravlio +Brayton +Briana +Brittan +Brodie +Brook +Bryn +Canaan +Candido +Cass +Cassius +Ceaser +Cecilio +Cesario +Chadd +Chao +Che +Cheenou +Chet +Chia +Chima +Christipher +Christpher +Cj +Cortez +Dakotah +Damarcus +Dameon +Damond +Dang +Danielle +Danthony +Darby +Darrian +Daven +Dax +Deion +Deleon +Demar +Demetric +Demetrice +Deonta +Derrion +Devion +Donato +Donaven +Dontrell +Dorion +Edder +Edin +Edy +Ehren +Elber +Eldon +Elgin +Elihu +Eliu +Emeka +Emery +Endy +Enrigue +Esaul +Etienne +Eunice +Evelyn +Everado +Farhad +Felipedejesus +Felton +Fernie +Filip +Franciso +Frederic +Ge +Geoffery +Gianfranco +Giovannie +Giuliano +Gumaro +Gunner +Gus +Haden +Haik +Hansen +Heber +Hernando +Herson +Hiroki +Hisham +Honorio +Hovanes +Huriel +Ike +Isrrael +Izaiah +Jahmal +Jaimie +Jaiver +Jajuan +Jamon +Janathan +Janmichael +Jarel +Jarin +Jase +Jaskaran +Jayshawn +Jeanpierre +Jeovanni +Jerick +Jermey +Jerrett +Jerson +Jessejames +Jett +Jhon +Jhonathan +Jin +Joanna +Jody +Johann +Johndavid +Jonothan +Jonpaul +Joseguadalupe +Jospeh +Juanramon +Jullian +Justus +Karan +Karla +Karlo +Karlos +Kawika +Kayla +Keefe +Keita +Kellan +Kelton +Kendal +Kenrick +Kenta +Khaled +Khan +Khari +Kimo +Kirkland +Kole +Kolton +Kongmeng +Konrad +Krystal +Kyrie +Lam +Landis +Lang +Lavell +Lavelle +Lemuel +Leondre +Levy +Linda +Linh +Lorena +Lorenso +Luan +Luca +Luisenrique +Luismiguel +Luka +Lupe +Luz +Lynn +Maira +Marcelus +Markeith +Marlene +Marquan +Marque +Martine +Matteo +Matthews +Maurilio +Menachem +Michele +Mina +Murray +Murtaza +My +Nai +Nataniel +Nathaneal +Nefi +Neftali +Nikola +Nino +Ori +Osiel +Osmin +Otoniel +Parth +Pasha +Patrik +Paxton +Phu +Raciel +Rakim +Ranferi +Ratha +Raymund +Raynard +Reginaldo +Renne +Rich +Riki +Rithy +Roel +Romaldo +Romulo +Ronaldo +Ruby +Rustin +Ryanjames +Sabas +Sachin +Sai +Samer +Sampson +Saulo +Sayed +Seanmichael +Sebastiano +Sebastien +Sesar +Sevak +Shad +Shamar +Shannen +Shaya +Shlomo +Shue +Sia +Silviano +Sinjin +Skylor +Sosaia +Sundeep +Tait +Taran +Taron +Thang +Theron +Thor +Tomer +Tommie +Tomy +Tong +Tramell +Tre +Tremayne +Trevis +Tristian +Tyce +Tyre +Tyrel +Vanna +Varun +Ventura +Victoralfonso +Vijay +Vishal +Vue +Xao +Yonathan +Yousef +Yovanni +Yovany +Yvan +Zacharie +Zackariah +Zareh +Zavier +Michael +Daniel +Christopher +Jose +David +Andrew +Matthew +Anthony +Jonathan +Joshua +Kevin +Joseph +Ryan +Brandon +Nicholas +Robert +Juan +Christian +Alexander +James +John +Eric +Jacob +Tyler +Luis +Justin +Kyle +Jesus +Steven +Brian +William +Carlos +Zachary +Miguel +Richard +Aaron +Cody +Dylan +Alejandro +Victor +Jorge +Jesse +Samuel +Bryan +Sean +Jason +Jordan +Thomas +Francisco +Benjamin +Adam +Eduardo +Angel +Adrian +Timothy +Ricardo +Gabriel +Oscar +Patrick +Manuel +Austin +Edgar +Alex +Mark +Jeffrey +Nathan +Sergio +Paul +Cameron +Mario +Ivan +Omar +Martin +Erik +Edward +Antonio +Trevor +Javier +Fernando +Jeremy +Roberto +Charles +Taylor +Travis +Stephen +Hector +Cesar +Ruben +Scott +Vincent +Ian +Kenneth +Raymond +Andres +Pedro +Alan +Joel +Gregory +Raul +Evan +Gerardo +Derek +Peter +Edwin +Marco +Julio +Alberto +Jared +George +Garrett +Rafael +Armando +Jaime +Erick +Julian +Shane +Salvador +Dillon +Arturo +Spencer +Frank +Henry +Connor +Cristian +Isaac +Johnny +Jake +Marcus +Danny +Alfredo +Enrique +Nathaniel +Andy +Gustavo +Devin +Dominic +Dustin +Marcos +Shawn +Corey +Ramon +Mitchell +Blake +Phillip +Ernesto +Diego +Nicolas +Ronald +Josue +Bradley +Jimmy +Chad +Cory +Abraham +Tanner +Albert +Andre +Brett +Lucas +Emmanuel +Steve +Wesley +Luke +Tony +Casey +Keith +Hugo +Ethan +Pablo +Max +Johnathan +Israel +Randy +Guillermo +Donald +Rene +Dennis +Alexis +Chase +Gary +Douglas +Roger +Saul +Joe +Giovanni +Eddie +Cole +Logan +Caleb +Moises +Alec +Jack +Ricky +Derrick +Allen +Xavier +Philip +Rudy +Sebastian +Abel +Jerry +Ismael +Maxwell +Esteban +Mathew +Colin +Devon +Louis +Marvin +Jonathon +Arthur +Seth +Alfonso +Brendan +Bryce +Felipe +Rodolfo +Bryant +Fabian +Leonardo +Rodrigo +Troy +Gilberto +Jeremiah +Mason +Walter +Dakota +Isaiah +Rogelio +Elias +Lawrence +Ramiro +Russell +Curtis +Brent +Grant +Mauricio +Jessie +Marc +Colton +Larry +Elijah +Nolan +Gilbert +Kristopher +Noah +Humberto +Darren +Alvaro +Calvin +Jackson +Clayton +Damian +Nestor +Dalton +Craig +Adan +Emilio +Hunter +Nelson +Roman +Emanuel +Freddy +Irvin +Bobby +Felix +Simon +Morgan +Noe +Carl +Alvin +Noel +Dominique +Ignacio +Miles +Nickolas +Riley +Rigoberto +Branden +Jay +Tommy +Lorenzo +Uriel +Donovan +Joey +Parker +Angelo +Theodore +Efrain +Roy +Oliver +Allan +Joaquin +Santiago +Vicente +Harrison +Leonel +Rodney +Agustin +Byron +Drew +Levi +Preston +Billy +Lance +Todd +Collin +Gavin +German +Hayden +Alfred +Dean +Micah +Orlando +Jon +Kenny +Malcolm +Geoffrey +Osvaldo +Mike +Skyler +Tomas +Arnold +Gerald +Randall +Terry +Colby +Eugene +Jeffery +Maurice +Trenton +Wyatt +Ross +Shaun +Ulises +Conner +Forrest +Ronnie +Leonard +Zachery +Octavio +Clinton +Conor +Kelvin +Damon +Edgardo +Adolfo +Damien +Ernest +Franklin +Gonzalo +Ray +Sam +Charlie +Chris +Marlon +Micheal +Efren +Frederick +Kody +Darryl +Irving +Trent +Reginald +Rolando +Myles +Willie +Neil +Melvin +Elmer +Nikolas +Wilson +Leo +Dante +Elliot +Francis +Lee +Zackary +Dominick +Heriberto +Jairo +Jamie +Kristian +Ralph +Zachariah +Bruce +Devante +Marshall +Darius +Tristan +Jamal +Darrell +Hernan +Brennan +Raymundo +Jerome +Landon +Marquis +Moses +Weston +Deandre +Estevan +Johnathon +Ali +Ariel +Devonte +Elliott +Isaias +Terrance +Tyrone +Frankie +Dane +Fidel +Kameron +Misael +Eli +Ulysses +Warren +Alonso +Josiah +Rick +Glenn +Tevin +Wayne +Brenden +Dallas +Davis +Desmond +Karl +Kurt +Beau +Dale +Lewis +Terrence +Bernardo +Gregorio +Leon +Ezequiel +Kurtis +Brendon +Gage +Jovany +Reynaldo +Stephan +Stuart +Aldo +Garret +Stanley +Cooper +Drake +Jim +Keenan +Nico +Robin +Guadalupe +Harry +Carson +Fredy +Arnulfo +Chance +Jordon +Markus +Milton +Brady +Julius +Marcel +Cristopher +Dario +Deshawn +Kendall +Kristofer +Nathanael +Trevon +Graham +Harold +Jayson +Kelly +Kirk +Maximilian +Zane +Eddy +Sheldon +Ty +Wade +Benito +Dorian +Freddie +Kyler +Louie +Mackenzie +Santos +Antoine +Benny +Chandler +Clifford +Elvis +Isidro +Jeff +Stefan +Alexandro +Bret +Mohammad +Zackery +Alonzo +Genaro +Harley +Jakob +Jarred +Jermaine +Jovanny +Kaleb +Roland +Sammy +Sterling +Amir +Daryl +Eliseo +Federico +Gino +Kent +Quinn +Terrell +Tylor +Darnell +Griffin +Howard +Jovan +Raphael +Skylar +Axel +Dan +Derick +Dion +Everardo +Issac +Junior +Brock +Carter +Cristobal +Ernie +Ervin +Jean +Braulio +Clint +Corbin +Demetrius +Devan +Erwin +Keegan +Rory +Tom +Trey +Tucker +Aron +Brenton +Darian +Davion +Fred +Lukas +Nigel +Shayne +Blaine +Clarence +Cruz +Dwayne +Everett +Jasper +Joseluis +Jovani +Kory +Nick +Norman +Owen +Davon +Jessica +Juancarlos +Loren +Luiz +Quentin +Bernard +Conrad +Leopoldo +Malik +Perry +Valentin +Don +Jarrett +Reuben +Tyrell +Aidan +Dimitri +Horacio +Lamar +Marquise +Pierce +Sonny +Travon +Adalberto +Clark +Donte +Eriberto +Isiah +Leland +Lloyd +Marcelo +Maximiliano +Antony +Aurelio +Giancarlo +Gordon +Kasey +Keaton +Mariano +Mohammed +Solomon +Denzel +Dillan +Earl +Glen +Herman +Jaron +Jarrod +Jessy +Lester +Lonnie +Mauro +Reed +Eder +Edwardo +Gerson +Neal +Reid +Terence +Tyree +Austen +Avery +Bill +Dejon +Ezekiel +Isai +Jonatan +Lionel +Maria +Oswaldo +Quincy +Rocky +Ben +Bryson +Deon +Dwight +Geovanny +Giovanny +Keven +Liam +Royce +Sidney +Stephanie +Vance +Claudio +Cyrus +Fermin +Arnoldo +Brennen +Cedric +Davonte +Herbert +Jamison +Luciano +Nikko +Rashad +Rex +Rudolph +Sawyer +Wilfredo +Zechariah +Ahmad +Aric +Armand +Brayan +Chaz +Gene +Geovanni +Geovany +Jimmie +Kellen +Quinton +Rosendo +Tou +Vladimir +Anton +Ashton +Braden +Denny +Deven +Erich +Fausto +Fredrick +Giovani +Hans +Johnnie +Jovanni +Kai +Ken +Marcelino +Miguelangel +Brandyn +Ceasar +Emerson +Jonah +Kendrick +Long +Lucio +Markanthony +Osbaldo +Pierre +Ari +Bryon +Damion +Darin +Favian +Grayson +Jefferson +Lamont +Lazaro +Leroy +Mohamed +Niko +Rico +Roderick +Shelby +Abelardo +Addison +Armen +Bo +Brad +Caesar +Carlo +Clay +Clifton +Dana +Darien +Darrin +Eloy +Forest +Guy +Kareem +Mitchel +Samson +Vidal +Vince +Ahmed +Ashley +Bradford +Chester +Dexter +Edmund +Hilario +Holden +Irwin +Jalen +Julien +Kou +Leslie +Pete +Randolph +Sage +Timmy +Abram +Amador +Barry +Darion +Domingo +Donavan +Emil +Garrick +Greg +Jackie +Javon +Kong +Leobardo +Muhammad +Norberto +Ronny +Shannon +Arron +Augustine +Bijan +Blair +Brice +Dewayne +Emmett +Esequiel +Florentino +Franco +Jennifer +Johnson +Rey +Reyes +Ron +Samir +Shea +Silvestre +Sunny +Ted +Tre +Tyson +Valentino +Alexandre +Brandan +Cary +Cullen +Deonte +Duane +Dyllan +Dylon +Erin +Filiberto +Garrison +Harvey +Jerald +Jess +Korey +Lino +Melissa +Michelle +Sarkis +Trever +Vincente +Wilbert +Winston +Abrahan +Alden +Alejandra +August +Brooks +Carlton +Coleman +Dave +Deion +Diamond +Duncan +Elizabeth +Ezra +Faustino +Galen +Gianni +Gunnar +Justice +Justyn +Kennedy +Rami +Salomon +Santino +Shaquille +Shayan +Vernon +Vinh +Walker +Will +Adrien +Anibal +Arman +Bennett +Christina +Danilo +Donnell +Fransisco +Genesis +Huy +Jamar +Jameson +Laurence +Madison +Maximillian +Nathanial +Paris +Paulo +Payton +Richie +Rickey +Stewart +Tayler +Teng +Tracy +Ubaldo +Bronson +Bruno +Clemente +Darwin +Dashawn +Dillion +Dominque +Eden +Edson +Floyd +Garett +Gerard +Gil +Juvenal +Kao +Kerry +Michel +Myron +Rigo +Trinidad +Vaughn +Westley +Andreas +Boris +Davante +Deangelo +Edmundo +Eleazar +Elio +Flavio +Gabino +Jeffry +Johny +Reece +Ryne +Spenser +Stevie +Toby +Tory +Trayvon +Williams +Wilmer +Abner +Amado +Baltazar +Benson +Camilo +Courtney +Daisy +Davin +Denis +Donnie +Earvin +Garry +Ishmael +Jabari +Jamil +Jarod +Jerardo +Keanu +Kevon +Kieran +Refugio +Rommel +Silas +Talon +Tim +Wendell +Alain +Anderson +Aram +Asher +Aubrey +Brenda +Celso +Christofer +Christoper +Clyde +Daren +Elvin +Emiliano +Ever +Gerry +Ibrahim +Jair +Jeanluc +Jered +Josef +Kelsey +Lane +Luigi +Lyle +Mickey +Minh +Nicholaus +Otto +Quintin +Reese +Robbie +Titus +Valente +Vanessa +Willy +Zakary +Adriel +Andrea +Arvin +Bee +Brannon +Cheyne +Codie +Derik +Devyn +Elisha +Ellis +Eugenio +Fredi +Gorge +Hassan +Jacky +Joesph +Johan +Johathan +Johnpaul +Jorden +Juanmanuel +Justus +Kenji +Kiefer +Kris +Levon +Malachi +Marques +Maximo +Migel +Obed +Porfirio +Randal +Rocio +Sherman +Syed +Teddy +Thaddeus +Vikram +Wilber +Yeng +Abdul +Alton +Amit +Ana +Antwan +Armani +Barrett +Bernie +Bradly +Brando +Brody +Cassidy +Cecil +Chadwick +Chistian +Codey +Colt +Cornelius +Darrel +Daveon +Edmond +Esgar +Fabio +Geronimo +Hakop +Harris +Jace +Jensen +Jeremias +Jeronimo +Josh +Justine +Juventino +Kian +Luc +Marcial +Margarito +Mateo +Maxfield +Maximino +Meng +Mikhail +Narciso +Orion +Pascual +Patricio +Raheem +Salman +Tarik +Travion +Adrain +Akeem +Alphonso +Arjun +Arnaldo +Artemio +Arya +Asa +Brandin +Braxton +Chasen +Coty +Cynthia +Dandre +Dayton +Delfino +Demetri +Dereck +Deshaun +Dyllon +Elan +Eliazar +Enoch +Enrico +Gabriela +Garth +Ger +Greggory +Hagop +Hieu +Isabel +Jade +Javonte +Jonas +Jonnathan +Josedejesus +Justen +Karim +Keng +Khalil +Kirby +Laron +Laura +Maxx +Monica +Nima +Phong +Prince +Raffi +Rahul +Raudel +Sagar +Salvatore +Samantha +Sami +Stacey +Tuan +Van +Vito +Willis +An +Antone +Antwon +Argenis +Babyboy +Bilal +Cain +Danniel +Daron +Demetrio +Deshon +Diana +Domenic +Donny +Dontae +Earnest +Elbert +Elton +Evelyn +Feliciano +Gamaliel +Gevork +Grady +Henri +Hugh +Jamaal +Jefferey +Jeramy +Jerrod +Jessi +Kamran +Kane +Kevan +Kevyn +Kimberly +Kolton +Kristoffer +Kyron +Luisangel +Marcoantonio +Melchor +Mikel +Nevin +Nicklaus +Nicole +Nikhil +Osman +Pheng +Raziel +Rhett +Robby +Rojelio +Rony +Roque +Rueben +Sandra +Scot +Stephon +Thai +Tobias +Ulisses +Wolfgang +Aarron +Alexzander +Ashwin +Augustus +Benigno +Bennie +Carey +Cosme +Courtland +Dagoberto +Dajon +Dallin +Danielle +Deondre +Derrek +Devontae +Dijon +Elder +Erasmo +Francesco +Gildardo +Grigor +Hamilton +Hamza +Hank +Harout +Jaleel +Jan +Jasmine +Jedidiah +Jerrad +Jiovanni +Jonny +Jossue +Jovon +Kalvin +Karina +Kenton +Keyon +Kim +King +Lavell +Leng +London +Mack +Malcom +Mayra +Michaelangelo +Morris +Nancy +Narek +Nolberto +Omid +Paolo +Ramses +Raymon +Rayvon +Reggie +Reymundo +Richardo +Rusty +Scotty +Shant +Stevan +Tai +Varun +Abdiel +Adriana +Alek +Alfonzo +Aman +Ameer +Andranik +Baby +Bernardino +Bob +Camron +Cheng +Cindy +Clement +Coby +Coleton +Cristofer +Dany +Dara +Darrick +Deante +Denzell +Deric +Dino +Dominik +Dusty +Edgard +Edison +Froylan +Hansel +Harlan +Hasan +Heath +Isrrael +Jacques +Jamari +Jamel +Jarett +Jarret +Jasmin +Jayro +Jeremie +Jerod +Joan +Job +Juanantonio +Kamal +Kamron +Kolby +Leandro +Leif +Lenny +Lisandro +Luisenrique +Marcell +Menachem +Mychal +Nader +Natalie +Neftali +Nino +Paulino +Raj +Rasheed +Reilly +Remy +Royer +Rylan +Sahil +Sameer +Samer +Schuyler +Sione +Stacy +Steffan +Teodoro +Tien +Tj +Ulices +Vahe +Wilfred +Yovani +Abimael +Abran +Akash +Aleksander +Alessandro +Amanda +Amilcar +Andrei +Arash +Arik +Art +Bernabe +Camden +Christen +Cliff +Cyle +Danial +Darrius +Demonte +Devonta +Dilan +Dimas +Dionte +Dondre +Eliezer +Ely +Emery +Esau +Esteven +Eulises +Eusebio +Frederic +Gareth +Geraldo +Gian +Hakeem +Hakim +Hiram +Homero +Houston +Hubert +Iban +Isaak +Isac +Isreal +Jacinto +Jacobo +Jayce +Jeanpaul +Jed +Jelani +Jerad +Jevon +Jonte +Jorje +Joseantonio +Joshuah +Judah +Juliocesar +Karen +Kellan +Kendal +Khalid +Kiel +Kwame +Lincoln +Macario +Marcellus +Marion +Marty +Maxim +Maynor +Mikael +Montana +Moua +Mychael +Najee +Napoleon +Nathen +Navid +Nicky +Nicolaus +Otoniel +Patric +Randell +Renee +Rickie +Rio +Rishi +Ritchie +River +Rohan +Romeo +Ronell +Ruby +Sabastian +Sandeep +Sarah +Seamus +Seanpatrick +Servando +Shelton +Sherwin +Skye +Tino +Toney +Torin +Torrey +Tyron +Uziel +Viet +Vinnie +Virgil +Yang +Yesenia +Young +Yusuke +Aakash +Abigail +Adil +Adonis +Al +Alexandra +Amos +Anders +Anthoney +Arian +Arlen +Arsenio +Augustin +Avedis +Barron +Blayne +Brain +Brennon +Broderick +Carlin +Carmen +Cezar +Chang +Christain +Cristhian +Cristo +Damario +Darell +Deontae +Duy +Eduard +Ephraim +Erica +Ferdinand +Franky +Geovani +Geremy +Giuseppe +Hoang +Hung +Iain +Ira +Isacc +Isael +Jacqueline +Jameel +Jashua +Jaycob +Jericho +Jerico +Jerman +Jerrell +Jessee +Jessey +Joanthan +Jocelyn +Jody +Johann +Johannes +Jordyn +Jorgeluis +Jules +Justino +Kalani +Katherine +Kavin +Kegan +Kelley +Kenta +Khristian +Killian +Kimani +Kramer +Lars +Luca +Lucky +Lyndon +Manny +Marcello +Maribel +Marlin +Martel +Mathias +Matias +Matt +Matthias +Mervin +Milad +Milan +Missael +Murphy +Mustafa +Mynor +Nehemiah +Nickolaus +Nicola +Nikkolas +Nikolaus +Pao +Peyton +Phi +Quinten +Ramsey +Ravi +Renato +Rian +Rodger +Romel +Rosa +Rosario +Roshan +Rufino +Sal +Scottie +Seanmichael +Serafin +Shan +Shay +Sky +Sydney +Taj +Tariq +Tigran +Tong +Trevin +Turner +Uriah +Ventura +Vincenzo +Vinson +Wallace +Yair +Zack +Zain +Aiden +Albaro +Alegandro +Alon +Apolinar +Aryan +Asael +Auston +Bailey +Bert +Bladimir +Blong +Brant +Brayden +Buddy +Caden +Cale +Cecilia +Chace +Chan +Cheyenne +Ciro +Colten +Cornelio +Dakoda +Darron +Daunte +Davonta +Davontae +Delvon +Demario +Deonta +Derrell +Desean +Devaughn +Dimitrios +Dirk +Duke +Eladio +Eliott +Enoc +Ericberto +Errol +Esmeralda +Fadi +Fletcher +Florencio +Fong +Franklyn +Gaston +Germain +Gerrit +Greyson +Gunner +Gurpreet +Immanuel +Isidoro +Jaden +Jai +Jaquan +Jaren +Jarvis +Jasson +Jayme +Jaymes +Jedediah +Jerel +Jerred +Jhonatan +Joanna +Johnrobert +Joshue +Kadeem +Kc +Keifer +Kelton +Keshawn +Khang +Kodi +Konner +Lauro +Liliana +Luther +Marko +Marquel +Marwan +Micahel +Modesto +Nabeel +Nam +Nash +Natanael +Nhia +Nicklas +Nikolai +Omari +Oren +Osmin +Otis +Phil +Phoenix +Presley +Raven +Reinaldo +Richmond +Roel +Roosevelt +Rosalio +Russel +Ryder +Ryon +Sampson +Sasha +Sebastien +Semaj +Seng +Serjio +Shae +Shlomo +Shon +Silvano +Sixto +Stanton +Stefano +Stetson +Storm +Tam +Tevita +Theron +Thor +Toan +Traveon +Truman +Tye +Vang +Vicent +Vinay +Westin +Wilton +Yovanni +Ysidro +Zeus +Aamir +Ace +Adel +Ajay +Akshay +Alaa +Alexandria +Amando +Amar +Amer +Anand +Angus +Anselmo +Ara +Aramis +Archie +Aria +Aries +Aris +Arley +Artur +Ashraf +Austyn +Baldemar +Basil +Basilio +Benedict +Bjorn +Blas +Bradon +Brandy +Brittany +Brodie +Buck +Byran +Cade +Campbell +Candelario +Candido +Cedrick +Chadd +Charley +Chauncey +Che +Cher +Christoffer +Chrystian +Chue +Cirilo +Claudia +Conrado +Cornell +Corwin +Crispin +Cuauhtemoc +Dalvin +Damonte +Darrian +Dat +Dawson +Dax +Dejuan +Demarcus +Demitrius +Demond +Denise +Denver +Devonn +Dezmond +Diante +Diondre +Dolan +Donta +Eber +Ector +Ed +Edilberto +Edith +Edric +Edvin +Eleuterio +Ernan +Everado +Fahad +Francois +Gaven +Geno +Hamed +Han +Hao +Hoa +Homar +Hovhannes +Hudson +Hussein +Imran +Iran +Irvine +Jahaziel +Jasen +Jayvon +Jeanette +Jeovany +Jereme +Jeremey +Jeric +Jeromy +Jerson +Jeshua +Jimi +Joeseph +Johnmichael +Jonathen +Jory +Josias +Josua +Jourdan +Juanjose +Jullian +Kaden +Karapet +Karlo +Kavon +Kayla +Khaled +Ky +Lamarr +Lamberto +Lavonte +Layne +Lucero +Ludwig +Marcanthony +Maurilio +Maury +Megan +Mick +Milo +Miriam +Mizael +Montrell +Murad +Nadeem +Nahum +Nain +Neng +Niccolo +Nikita +Osama +Oskar +Oswald +Paige +Parth +Peng +Pietro +Prentice +Primitivo +Rakeem +Raleigh +Ramy +Raquel +Raynard +Rodrick +Rohit +Ronnell +Rowan +Rudi +Sandro +Sandy +Sang +Sanjay +Shiloh +Sigifredo +Simeon +Sina +Son +Tad +Taran +Tarek +Tate +Terell +Terran +Terrill +Terron +Thao +Theo +Thien +Timmothy +Tin +Tito +Tommie +Torrance +Trevell +Ulyses +Vartan +Veronica +Virgilio +Vivek +Willem +Woodrow +Yobani +Yonatan +Yoni +Yosef +Zacharia +Zaid +Zeke +Aaronmichael +Abdullah +Adolph +Aj +Akil +Akira +Alen +Alexei +Alexi +Alphonse +Amin +Amy +Angela +Anjel +Anthoni +Anthonyjames +Antione +Antoni +Antonia +Antonie +Anwar +Artin +Ashkan +Avetis +Avi +Bertram +Boaz +Brianna +Britton +Broc +Bryton +Caelan +Cal +Calen +Cameren +Camren +Carmelo +Cassandra +Celestino +Chai +Chas +Chet +Christos +Cian +Colter +Cordell +Corry +Cort +Cristina +Cy +Cyril +Dabid +Daisuke +Dalon +Damen +Damone +Dang +Dangelo +Darious +Darrien +Dashon +Dawit +Dayne +Declan +Delbert +Demetrios +Deron +Derric +Derrik +Dietrich +Dionicio +Diontae +Domonique +Donato +Dontrell +Doyle +Duc +Ean +Edder +Edsel +Elden +Eliel +Eligio +Eliodoro +Eliot +Emigdio +Estaban +Esther +Evaristo +Fabricio +Faisal +Faris +Fidencio +Fortino +Froilan +Gael +Garland +Geddy +Gideon +Giuliano +Graeme +Gregg +Gregor +Gustabo +Haden +Irbin +Ishan +Jacoby +Jamey +Jarel +Jarell +Jarid +Jarrid +Jaryd +Jaspreet +Javante +Jaycee +Jaylen +Jerell +Jermey +Jermy +Jerrick +Jerrid +Jhonny +Jihad +Jobani +Johnpatrick +Josemanuel +Jr +Juanpablo +Juaquin +Jun +Juston +Kade +Karan +Karla +Kawika +Kayvon +Kenia +Kenyon +Keoni +Keshaun +Kilian +Kingsley +Kodie +Kole +Konnor +Kunal +Laquan +Layton +Leighton +Lenin +Leticia +Lindsey +Loc +Lowell +Marino +Marisol +Marshal +Marvel +Massimo +Mathieu +Mazen +Merlin +Michaelvincent +Michelangelo +Mihran +Mikey +Mikhael +Mina +Mitch +Mohamad +Mong +Monte +Monty +Moshe +Mykel +Natan +Neel +Nguyen +Nicodemus +Niels +Nikki +Ociel +Olegario +Omeed +Oshae +Osualdo +Ozzie +Paden +Parris +Patricia +Phuc +Quaid +Rachel +Rainier +Rashawn +Rashid +Reno +Ricki +Ridge +Rocco +Rod +Rubin +Rush +Sabino +Sai +Said +Saman +Sammuel +Samual +Saxon +Schyler +Shaka +Sheridan +Sho +Shu +Sinjin +Skylor +Soren +Sultan +Sven +Tal +Tan +Teofilo +Terance +Terrel +Thang +Thanh +Theophilus +Thong +Torey +Trace +Trevion +Trino +Tristen +Victoria +Vijay +Wilder +Yannick +Yehuda +Yoseph +Yovany +Yusuf +Zacary +Zakery +Zong +Abdulrahman +Abrham +Adalid +Addam +Aditya +Aharon +Aksel +Alaric +Albino +Aldric +Alexandros +Alexsander +Alicia +Alireza +Alison +Allante +Amber +Ammon +Amritpal +Anastacio +Andree +Andrez +Angeldejesus +Angelica +Anh +Anson +Aren +Arie +Arin +Aristeo +Arjan +Arjuna +Armin +Arun +Asad +Ashish +Augusto +Avante +Avelino +Axl +Azim +Baldomero +Barney +Baron +Barret +Baudelio +Bayron +Beatriz +Belal +Benedicto +Bianca +Billie +Bodie +Brandt +Braydon +Bretton +Brien +Brigham +Brook +Brooke +Case +Cavan +Charly +Chirag +Chistopher +Chong +Christipher +Christoher +Cipriano +Cisco +Constantino +Cordero +Corin +Coy +Cristal +Cristoval +Crystian +Cuitlahuac +Dajuan +Dakotah +Damani +Damaris +Daniela +Danzel +Darith +Darrion +Darryll +Davey +Dawayne +Daylan +Dayon +Dayvon +Delton +Demetre +Demetrious +Demetris +Demitri +Denton +Derrion +Devion +Dilpreet +Dmitri +Domenico +Domonic +Donavon +Dong +Doran +Doron +Easton +Eberardo +Edvardo +Edy +Eleno +Elie +Ellery +Emily +Enrrique +Epifanio +Erika +Esai +Esdras +Estuardo +Faraz +Felton +Foster +Frances +Gannon +Gaspar +Ge +Georgio +Gerad +Gevorg +Gibran +Gillermo +Giorgio +Giovannie +Graydon +Gunther +Hasani +Hashim +Heather +Heber +Hernando +Hezekiah +Hiroshi +Hollis +Homer +Honorio +Horace +Huriel +Ike +Ilan +Imari +Irineo +Isaih +Isamar +Isauro +Issa +Issiah +Ivon +Ivory +Izaac +Izaak +Jahlil +Jairus +Jalil +Jareth +Jarome +Jarrad +Jarren +Jaspal +Javan +Jaziel +Jazmin +Jeancarlo +Jerimiah +Jerrel +Jerrold +Jett +Jevin +Jguadalupe +Jhon +Jiovanny +Joao +Johnatan +Johndavid +Jonpaul +Jonthan +Jordi +Jorel +Jovante +Judson +Juliano +Julie +Jupiter +Justo +Kacey +Kain +Kalan +Kale +Kalen +Kalin +Karlos +Karsten +Keenen +Kei +Kelby +Kenan +Kennith +Keon +Khoa +Khoi +Khristopher +Kiran +Kishan +Kodiak +Kohl +Kongmeng +Krishan +Kristen +Kylan +Kyrie +Lambert +Landen +Landry +Lashawn +Leandre +Levonte +Lexus +Librado +Linda +Lindsay +Linh +Lorena +Ludwin +Luisantonio +Luisfelipe +Mac +Mahmoud +Maison +Makoto +Malek +Manpreet +Mariela +Marin +Markel +Marque +Marquese +Marquez +Martell +Martha +Maverick +Mckenzie +Mehdi +Melecio +Merrick +Micaiah +Michaelanthony +Mickel +Mikal +Mikeal +Nabil +Nadim +Nasser +Natividad +Nehemias +Neill +Neko +Neri +Nicco +Nicolai +Niklas +Nikola +Niles +Nils +Norris +Olivier +Omer +Orin +Orrin +Osiris +Osmar +Palmer +Patrik +Paulmichael +Paxton +Perrin +Philippe +Phuong +Ponciano +Prescott +Rajan +Randeep +Randel +Randon +Rashaad +Redmond +Regino +Ren +Riki +Rion +Rob +Robel +Ronak +Ronaldo +Rondell +Royal +Rudolfo +Ruperto +Rustin +Ryker +Ryland +Ryley +Sammie +Santana +Sargon +Sayed +Sebastain +Sevag +Shad +Shadi +Shaheen +Shahin +Sher +Shimon +Shota +Slade +Slater +Sou +Sullivan +Suraj +Sutton +Sylvester +Tadeh +Taha +Tarun +Tavis +Terrion +Timoteo +Tlaloc +Tobin +Toni +Tracey +Travell +Treavor +Trong +Tu +Tynan +Tyrel +Valentine +Veasna +Venancio +Vi +Vivian +Vue +Wa +Walid +Waylon +Werner +Wilfrido +Willard +Xai +Xiong +Yadira +Yama +Yonathan +Yousef +Yuki +Zareh +Zev +Michael +Daniel +Jose +Christopher +David +Andrew +Anthony +Matthew +Joshua +Kevin +Jonathan +Ryan +Joseph +Nicholas +Brandon +Alexander +Christian +Jacob +Juan +Robert +Luis +Tyler +John +James +Eric +Justin +Jesus +Brian +Kyle +Carlos +Steven +William +Zachary +Miguel +Alejandro +Aaron +Richard +Austin +Cody +Victor +Jorge +Jordan +Jesse +Samuel +Eduardo +Oscar +Jason +Thomas +Sean +Francisco +Bryan +Gabriel +Angel +Dylan +Adrian +Benjamin +Ricardo +Adam +Timothy +Edgar +Alex +Mark +Manuel +Nathan +Jeffrey +Omar +Patrick +Jeremy +Antonio +Mario +Cesar +Javier +Erik +Sergio +Martin +Ivan +Paul +Andres +Cameron +Fernando +Hector +Edward +Charles +Cristian +Roberto +Ruben +Stephen +Taylor +Trevor +Kenneth +Connor +Travis +Raymond +Pedro +Vincent +Ian +Gerardo +Alan +Scott +Evan +Alberto +Joel +Raul +Armando +Jaime +Marco +Garrett +Isaac +Edwin +Peter +Erick +Julian +Marcus +Gregory +Derek +Henry +Jared +Julio +George +Salvador +Rafael +Gustavo +Alfredo +Spencer +Shane +Arturo +Johnny +Frank +Nathaniel +Jake +Blake +Devin +Marcos +Alexis +Dominic +Josue +Nicolas +Andy +Enrique +Danny +Mitchell +Luke +Abraham +Ernesto +Ramon +Diego +Lucas +Shawn +Dustin +Dillon +Jimmy +Bradley +Albert +Phillip +Emmanuel +Wesley +Tanner +Corey +Ronald +Casey +Caleb +Chad +Giovanni +Jack +Tony +Logan +Israel +Max +Guillermo +Fabian +Keith +Steve +Johnathan +Andre +Brett +Alec +Cory +Chase +Moises +Ethan +Pablo +Cole +Sebastian +Hugo +Esteban +Allen +Rene +Troy +Leonardo +Randy +Dakota +Joe +Eddie +Ricky +Mason +Dennis +Devon +Bryce +Grant +Felipe +Xavier +Philip +Colin +Gilberto +Hunter +Ismael +Douglas +Donald +Gary +Marvin +Arthur +Saul +Louis +Alfonso +Maxwell +Abel +Rudy +Elijah +Rodolfo +Seth +Elias +Jerry +Jessie +Mathew +Rogelio +Jonathon +Lawrence +Brendan +Jeremiah +Curtis +Derrick +Roger +Walter +Isaiah +Calvin +Dalton +Gilbert +Rodrigo +Brent +Colton +Roman +Noah +Bryant +Marc +Ramiro +Clayton +Kristopher +Larry +Jackson +Miles +Humberto +Darren +Lorenzo +Vicente +Emilio +Russell +Collin +Riley +Adan +Nestor +Mauricio +Ignacio +Freddy +Rigoberto +Damian +Nolan +Efrain +Felix +Conner +Alvaro +Billy +Bobby +Craig +Noe +Conor +Simon +Osvaldo +Joaquin +Joey +Kenny +Drew +Emanuel +Carl +Donovan +Santiago +Roy +Nelson +Uriel +Agustin +Noel +Alvin +Angelo +Parker +Allan +Leonel +Nickolas +Tommy +Theodore +Byron +Jay +Myles +Hayden +Oliver +Branden +Tomas +Orlando +German +Forrest +Dominique +Guadalupe +Jeffery +Harrison +Jairo +Dominick +Colby +Gerald +Lance +Levi +Alfred +Arnold +Preston +Shaun +Ulises +Adolfo +Zachery +Dean +Morgan +Dante +Gonzalo +Randall +Maurice +Sam +Trenton +Eli +Irvin +Ernest +Micah +Micheal +Octavio +Trent +Deandre +Jon +Skyler +Terry +Mike +Reginald +Todd +Darius +Heriberto +Zachariah +Dallas +Wyatt +Ray +Rodney +Zackary +Francis +Bernardo +Damien +Josiah +Chris +Franklin +Leo +Edgardo +Gavin +Kody +Marlon +Damon +Kelvin +Kristian +Leonard +Neil +Isaias +Johnathon +Brennan +Frederick +Geoffrey +Melvin +Ronnie +Brady +Gage +Marquis +Bruce +Charlie +Elliot +Eugene +Nikolas +Fidel +Moses +Ross +Alonso +Estevan +Darrell +Frankie +Lee +Willie +Malcolm +Marshall +Aldo +Brendon +Elvis +Kameron +Drake +Stanley +Ali +Davis +Rolando +Landon +Shaquille +Trey +Chance +Elmer +Ezequiel +Ralph +Wayne +Ariel +Wilson +Brenden +Gregorio +Issac +Jamal +Terrance +Zane +Efren +Jamie +Reynaldo +Dane +Darryl +Glenn +Carson +Devante +Elliott +Santos +Stefan +Alonzo +Griffin +Raymundo +Graham +Rick +Robin +Avery +Fredy +Kelly +Trevon +Jean +Jerome +Kendall +Zackery +Hernan +Irving +Milton +Mohammad +Quinn +Tristan +Jayson +Kurtis +Norman +Terrence +Weston +Chandler +Clinton +Eddy +Demetrius +Denzel +Erwin +Garret +Gino +Kurt +Nick +Ulysses +Louie +Maximiliano +Tyrone +Fred +Isidro +Jovani +Malik +Benito +Darian +Devonte +Ahmad +Cooper +Gordon +Jakob +Misael +Sonny +Warren +Beau +Dan +Harry +Jalen +Nathanael +Bryson +Harley +Jarrett +Juancarlos +Kirk +Leon +Ezekiel +Jarred +Jefferson +Joseluis +Julius +Mariano +Tevin +Ashton +Benny +Brock +Cristopher +Eliseo +Karl +Quincy +Reed +Aidan +Aurelio +Bernard +Derick +Desmond +Dion +Herman +Jonah +Jordy +Sterling +Terrell +Dale +Deshawn +Don +Dwayne +Giovanny +Jovanny +Kent +Lukas +Cristobal +Earl +Everardo +Kristofer +Nigel +Carter +Genaro +Harold +Keenan +Lionel +Owen +Tou +Ty +Wade +Aron +Cruz +Jeff +Alexandro +Clint +Conrad +Jessy +Jim +Axel +Cedric +Darien +Horacio +Mackenzie +Marcel +Skylar +Arnulfo +Dario +Dorian +Glen +Jessica +Kai +Kyler +Miguelangel +Oswaldo +Solomon +Eriberto +Jordon +Markus +Marquise +Nico +Osbaldo +Valentin +Amir +Ben +Clarence +Davon +Deon +Ernie +Federico +Kaleb +Lewis +Roderick +Sammy +Stephan +Adalberto +Barry +Bret +Isai +Jasper +Daryl +Howard +Jermaine +Liam +Sidney +Ahmed +Austen +Braulio +Devan +Jarrod +Junior +Neal +Roland +Tucker +Antoine +Brayan +Geovanni +Jovany +Kory +Maria +Norberto +Reuben +Clifford +Darnell +Dimitri +Marcelo +Niko +Stuart +Terence +Claudio +Corbin +Everett +Fermin +Freddie +Gerson +Jovan +Loren +Rocky +Tom +Caesar +Davion +Devyn +Donte +Javon +Kasey +Keaton +Lazaro +Lester +Lucio +Sage +Addison +Bruno +Forest +Giancarlo +Kendrick +Kong +Luiz +Mauro +Maximillian +Mitchel +Sheldon +Zechariah +Anton +Bill +Blaine +Brody +Geovanny +Jacky +Lonnie +Mohammed +Perry +Reid +Tre +Tylor +Arman +Clay +Darwin +Dejon +Donavan +Ellis +Herbert +Johnson +Kellen +Keven +Pete +Rex +Rickey +Sunny +Wilfredo +Braden +Denny +Eleazar +Giovani +Guy +Luc +Maximilian +Quentin +Raphael +Rosendo +Stewart +Valentino +Abelardo +Cyrus +Elizabeth +Emiliano +Ervin +Andreas +Carlo +Clark +Eloy +Jameson +Kieran +Madison +Marcelino +Rory +Thaddeus +Vance +Ari +Brandyn +Brennen +Domingo +Eder +Edson +Favian +Kareem +Leopoldo +Tyrell +Vidal +Walker +Adrien +Brad +Brayden +Brice +Darin +Darrin +Filiberto +Isiah +Keegan +Markanthony +Pierce +Anibal +Antony +Arron +Brandan +Coleman +Damion +Edmond +Fredrick +Galen +Greg +Jeffry +Johnnie +Justice +Leroy +Lloyd +Luciano +Quinton +Rashad +Rey +Shant +Tobias +Travon +Winston +Alexandre +Bradford +Chaz +Davonte +Dexter +Garrison +Jimmie +Jonas +Josef +Ken +Lamar +Lamont +Leobardo +Leslie +Nikko +Rico +Royce +Shayne +Abram +Armen +Augustine +Dana +Dave +Dillan +Duke +Duncan +Gene +Jennifer +Jonatan +Malachi +Roque +Stephanie +Toby +Ubaldo +Will +Armand +Bijan +Dandre +Darion +Dijon +Edmund +Fausto +Franco +Gabino +Grayson +Jorden +Jovanni +Julien +Pascual +Pierre +Tyson +Vaughn +Willy +Asher +August +Christina +Dagoberto +Deonte +Deven +Emerson +Faustino +Garett +Irwin +Jace +Jaron +Kristoffer +Nathanial +Nikhil +Ron +Silvestre +Timmy +Vincente +Ashley +Baltazar +Bee +Ceasar +Dillion +Erin +Feliciano +Gildardo +Gorge +Hassan +Ibrahim +Jamaal +Kalvin +Kou +Leland +Maximo +Mickey +Paolo +Quintin +Ronny +Samir +Samson +Shannon +Shea +Tate +Valente +Aric +Arik +Brenton +Clemente +Dominik +Donnell +Erich +Hans +Jacobo +Jan +Jerardo +Jess +Jessi +Lane +Long +Margarito +Marques +Matias +Meng +Minh +Mohamad +Mohamed +Randal +Randolph +Reece +Sawyer +Ted +Tory +Tracy +Vernon +Vladimir +Wilber +Yeng +Alejandra +Anderson +Andrea +Arley +Blair +Camilo +Cecilio +Darrion +Dashawn +Deric +Devaughn +Domenic +Eugenio +Gerard +Jabari +Jackie +Juventino +Kennedy +Kerry +Khalil +Lino +Mateo +Michelle +Morris +Paris +Raheem +Raymon +Romeo +Serafin +Shayan +Torrey +Trinidad +Alton +Aram +Bronson +Chadwick +Coty +Darrel +Dayton +Dino +Edwardo +Emmett +Geovany +Gian +Harvey +Holden +Kane +Korey +Nehemiah +Nima +Orion +Paulo +Payton +Reese +Rojelio +Sarkis +Trever +Wilbert +Wilmer +Zakary +Adriel +Akeem +Amos +Brandin +Brenda +Brooks +Bryon +Chester +Courtney +Diana +Donnie +Elton +Ezra +Flavio +Fransisco +Gabriela +Gerry +Grady +Hilario +Houston +Jamel +Jaylen +Jerald +Jerrell +Marcell +Migel +Muhammad +Reyes +Rhett +Robby +Santino +Trayvon +Vanessa +Vishal +Westley +Williams +Abner +Adonis +Alek +Alessandro +Ana +Bo +Carlton +Cassidy +Chasen +Clyde +Cornelius +Cullen +Elisha +Elvin +Gunnar +Harris +Jamar +Jamison +Jedidiah +Jeremie +Jeromy +Kelsey +Kendal +Kian +Lyle +Michel +Nathen +Patricio +Pheng +Refugio +Semaj +Stevie +Syed +Tayler +Tito +Tyree +Vince +Arnoldo +Barrett +Benson +Bradly +Brando +Brodie +Camron +Cary +Codey +Codi +Colten +Desean +Diante +Duane +Dwight +Elio +Emil +Floyd +Franky +Fredi +Ger +Gil +Jade +Jair +Jarrell +Jasmin +Jered +Jerrod +Joan +Juliocesar +Justyn +Keanu +Killian +Laron +Laurence +Levon +Lincoln +London +Marcoantonio +Najee +Obed +Otto +Reggie +Renato +Reno +Robbie +Rocco +Titus +Torin +Vinh +Yosef +Yovani +Alexandra +Anselmo +Arian +Asa +Brandt +Colt +Deangelo +Deante +Delfino +Demetrio +Derik +Donny +Esau +Fabio +Gaspar +Geovani +Gianni +Heath +Imran +Jamil +Johathan +Johnpaul +Jonnathan +Josh +Kalen +Kalin +Kamran +Karen +Kevyn +Khalid +Konnor +Marcial +Maxx +Monica +Monte +Nam +Nicholaus +Nicklaus +Raffi +Remington +Richie +Salomon +Salvatore +Sami +Stefano +Travion +Van +Viet +Abdullah +Alden +Alfonzo +Andrez +Antione +Aren +Bennett +Broc +Claude +Clifton +Cynthia +Deion +Denis +Deshon +Dustyn +Eden +Faisal +Florentino +Garrick +Genesis +Hieu +Jacques +Jaquan +Jasmine +Javonte +Jelani +Jossue +Justus +Kao +Kenyon +Lars +Manny +Markell +Mikael +Mikal +Myron +Neftali +Nevin +Nikolai +Paulino +Porfirio +Rodrick +Rohan +Rony +Roosevelt +Rosario +Ryley +Shelby +Sherman +Silas +Silverio +Spenser +Stacy +Thai +Thanh +Toua +Trae +Tuan +Vinson +Virgil +Vito +Wendell +Willis +Zakkary +Abimael +Ajay +Akshay +Amado +Amador +Amit +Antwan +Argenis +Art +Artemio +Arvin +Arya +Aubrey +Austyn +Benedict +Bernabe +Braxton +Camden +Candido +Cheng +Christofer +Chue +Claudia +Cuauhtemoc +Dakotah +Dallin +Danielle +Daren +Daron +Darrian +Darrien +Davante +Daveon +Demarco +Domonic +Edgard +Enoch +Harout +Hasan +Hung +Isrrael +Jaren +Jarvis +Jocelyn +Juanmanuel +Jun +Juvenal +Kenton +Khari +Kirby +Kris +Leng +Lucero +Luigi +Marcello +Marcellus +Marty +Michaelanthony +Mikel +Montana +Nancy +Reymundo +Rigo +Ritchie +River +Rudolph +Ryne +Santana +Scotty +Sydney +Sylvester +Teng +Teodoro +Torey +Trace +Ulisses +Vincenzo +Yesenia +Yovany +Abrahan +Abran +Arjun +Armani +Bailey +Bennie +Bladimir +Boris +Broderick +Cecil +Christoper +Cosme +Daisy +Dangelo +Danilo +Darrius +Demetris +Denver +Deshaun +Dionicio +Donta +Dontae +Edilberto +Edmundo +Eliazar +Esequiel +Eusebio +Evaristo +Ever +Geraldo +Hamilton +Hank +Henri +Hudson +Isacc +Isamar +Isidoro +Jacqueline +Jarod +Jazmin +Jed +Jeronimo +Jett +Jonny +Josedejesus +Jovon +Juanjose +Kalan +Karina +Kegan +Keng +Keon +Kunal +Laura +Leandro +Lucky +Mustafa +Nash +Nicky +Nikolaus +Osman +Patric +Phong +Rahul +Rashawn +Richardo +Rishi +Royal +Russel +Rusty +Ryder +Stevan +Taran +Tarik +Teddy +Tim +Tommie +Trevion +Treyvon +Yusuf +Abdul +Al +Alexi +Ameer +Amilcar +Andrei +Artin +Baby +Basil +Brain +Caden +Celestino +Chee +Cleveland +Conrado +Courtland +Daryn +Davin +Deanthony +Demetri +Deondre +Deontae +Devone +Dionte +Dmitri +Dyllan +Dyllon +Dylon +Earvin +Erika +Francesco +Frederic +Gareth +Garth +Gray +Greggory +Hiram +Hubert +Imani +Immanuel +Jagger +Jameel +Jashua +Jerad +Jerel +Jerson +Jessee +Jevon +Jhonatan +Johan +Jordi +Josealberto +Joseantonio +Julia +Justine +Kimberly +Lavonte +Luca +Mack +Malek +Marcanthony +Marino +Marion +Marley +Martell +Mayra +Melissa +Nicolaus +Nicole +Osualdo +Philippe +Quang +Quinten +Ramsey +Raudel +Rayshawn +Reagan +Richmond +Ruby +Sagar +Schuyler +Shakeel +Simeon +Soren +Stephon +Talon +Ulyses +Vang +Vicent +Waylon +Yousef +Adnan +Albaro +Alen +Alyssa +Augustin +Auston +Azael +Babyboy +Bilal +Binh +Bodie +Brandy +Brennon +Brien +Brook +Cale +Camren +Celso +Cheyenne +Cheyne +Codie +Crystal +Cy +Damarea +Daquan +Dara +Darrick +Darron +Dashaun +Dat +Davontae +Declan +Demarcus +Demonte +Deonta +Devion +Devontae +Dirk +Dominque +Donavon +Easton +Edder +Edy +Eliezer +Eliot +Enzo +Erasmo +Erickson +Estuardo +Everado +Fletcher +Froilan +Gamaliel +Gevork +Gibran +Giuseppe +Hagop +Hakeem +Haley +Huy +Iban +Isael +Ishmael +Isreal +Jacinto +Jalil +Jasen +Javan +Jayro +Jeanluc +Jeanpaul +Job +Joesph +Jorje +Josafat +Justen +Justino +Juwan +Kahlil +Karim +Kc +Keenen +Kelton +Keshawn +Kiernan +Kodi +Kongmeng +Lauren +Leif +Luther +Lyndon +Mahmoud +Manraj +Marlin +Marquez +Maxfield +Maxim +Maynor +Mckenzie +Merrick +Mychael +Mynor +Nabeel +Nery +Nicco +Nickolaus +Nikki +Otoniel +Phoenix +Prince +Rashaad +Raven +Rebecca +Rhys +Rickie +Rocio +Rosalio +Ryland +Sabino +Sahil +Sal +Samantha +Sameer +Sandy +Sarah +Shay +Shon +Sione +Tai +Tarek +Tariq +Tevita +Thompson +Timoteo +Tino +Tirso +Truman +Trung +Ulices +Yonathan +Yoni +Zong +Abisai +Adel +Alegandro +Aman +Amanda +An +Anders +Angus +Anjel +Antwon +Archie +Arin +Bob +Bryton +Cade +Carey +Cha +Chadd +Chang +Channing +Charley +Chet +Chistian +Chistopher +Christien +Clement +Cornell +Crystian +Daniela +Dany +Darious +Daulton +Daven +Dawson +Demond +Denton +Dereck +Derrell +Derrik +Desi +Devlin +Dewayne +Dilan +Domenick +Donavin +Dusty +Duy +Elder +Ely +Emery +Emily +Emir +Enoc +Eulises +Evin +Favio +Fidencio +Gael +Gannon +Gaston +Gentry +Giovany +Hansel +Hoang +Homero +Houa +Hugh +Huriel +Isac +Jaden +Jeanpierre +Jeramy +Jerman +Jesu +Jhon +Jihad +Jiovanni +Johann +Johnmichael +Jonte +Jordyn +Joshue +Juaquin +Justo +Kabir +Kaden +Kamron +Keane +Kenji +Kento +Kervin +Kevon +Kevork +Kia +Kiefer +Kiel +Lam +Lamonte +Leandre +Lindsey +Luisenrique +Lynn +Malcom +Massimo +Mathias +Mathieu +Matteo +Maverick +Maximino +Michaelangelo +Misha +Mister +Navid +Nicholis +Nicklas +Omari +Omero +Omid +Oskar +Osmar +Pao +Patricia +Quran +Rajan +Rami +Ravi +Rio +Rohit +Ronnell +Rowan +Rufino +Rylan +Ryo +Sai +Samer +Sandra +Sandro +Sanjay +Selvin +Shaan +Shai +Sherwin +Silvino +Sky +Sou +Timmothy +Toan +Tristen +Umar +Uziel +Veronica +Vivek +Wendy +Yobani +Yoel +Yonatan +Zaid +Aamir +Abigail +Ace +Adiel +Adriana +Akash +Alain +Alicia +Alma +Alphonso +Alvino +Amandeep +Amando +Amar +Amritpal +Anand +Antone +Anwar +Arash +Aries +Armon +Arnaldo +Arnel +Arun +Aryan +Ashanti +Ashwin +Augustus +Axl +Bao +Barney +Baron +Blas +Blaze +Blong +Braeden +Brannon +Brant +Bulmaro +Cain +Calder +Calen +Candelario +Cedrick +Chaim +Chancellor +Christ +Christain +Chrystian +Chuck +Ciro +Cornelio +Cristofer +Curran +Cyle +Dajon +Damond +Danniel +Dashon +Davian +Davy +Delano +Delbert +Demario +Demitri +Dequan +Diquan +Dondre +Dupree +Eamon +Ector +Elan +Elbert +Eleno +Ephraim +Erica +Estaban +Farid +Faris +Fernie +Florencio +Fong +Froylan +Fue +Garry +Gavino +Geno +Graeme +Gregg +Gus +Hakim +Hamza +Herminio +Hipolito +Isabel +Izaac +Jaycob +Jayden +Jens +Jeramie +Jericho +Jerrad +Jin +Jonpaul +Josemanuel +Joshuah +Josias +Josua +Juanantonio +Judah +Jude +Kalani +Kale +Kamal +Karan +Kavon +Kellan +Kendell +Kennith +Keoni +Khang +Khanh +Khristian +Khristopher +Kodie +Konner +Krystian +Laith +Leonides +Luka +Macario +Macklin +Martel +Melecio +Merlin +Mikhael +Mikhail +Milan +Montel +Montgomery +Moshe +Nader +Narek +Ned +Nicolai +Niles +Nino +Omer +Oracio +Oren +Osiel +Osmin +Oswald +Paige +Parrish +Rachel +Ramin +Ramses +Reilly +Remy +Renee +Rito +Rod +Romel +Rommel +Ryon +Sabastian +Salem +Sandeep +Sheridan +Shervin +Sixto +Soloman +Son +Stone +Storm +Sue +Sullivan +Taj +Tam +Terrel +Tonatiuh +Tong +Tray +Treshawn +Tyquan +Victoria +Viliami +Vinay +Von +Vong +Wallace +Westin +Wiley +Wilton +Woodrow +Xiong +Yair +Zack +Zev +Adin +Adrain +Aiden +Aldrin +Aleksander +Alexio +Alverto +Andree +Angelica +Anival +Anthoney +Anthoni +Apolinar +Ara +Aria +Aristeo +Asante +Aurash +Aviel +Avraham +Ayman +Bart +Belal +Benigno +Blayne +Bonifacio +Bradlee +Brianna +Buddy +Campbell +Carmelo +Carmen +Casimiro +Catarino +Cesario +Chace +Chai +Chauncey +Che +Christen +Christoph +Ciaran +Cindy +Cirilo +Coby +Coleton +Constantino +Cort +Cristhian +Cristoval +Cuong +Curt +Curtiss +Damonte +Daneil +Danial +Dashiell +Dedrick +Demondre +Denzell +Derron +Desiderio +Destin +Diamond +Donaven +Durrell +Dusten +Ean +Eber +Eligio +Elpidio +Enrigue +Errol +Esai +Esdras +Esteven +Eulalio +Fabiola +Firas +Fransico +Fredis +Geronimo +Guthrie +Hai +Hakop +Harlan +Harman +Heather +Heber +Henrry +Heraclio +Horace +Ike +Indalecio +Ira +Isaak +Jacoby +Jad +Jaelen +Jai +Jamari +Jamin +Jamon +Jarek +Jarren +Jarrid +Jasdeep +Jaspreet +Jaun +Javin +Jaylin +Jaysen +Jazz +Jeancarlo +Jedediah +Jensen +Jeremey +Jerick +Jerimiah +Jerrick +Joab +Johnjoseph +Johnluke +Johny +Jory +Joseangel +Josejuan +Jospeh +Jourdan +Jovante +Karla +Karlo +Katherine +Kavin +Kayvon +Keelan +Keifer +Kevan +Khaled +Khoa +Kimani +Kiran +Kohl +Kolby +Kole +Kraig +Kwame +Kwesi +Lafayette +Lalo +Laquan +Lavell +Lejon +Lenin +Leovardo +Lex +Librado +Lisandro +Lucien +Luisangel +Markel +Marko +Maurilio +Maximilliano +Megan +Melchor +Micahel +Michale +Michele +Mihir +Miller +Modesto +Mychal +Mykel +Nabil +Napoleon +Natanael +Nazario +Neng +Nephi +Nguyen +Nicholai +Nicholes +Nicko +Nile +Nolberto +Norris +Onesimo +Otis +Patrik +Paula +Pavan +Paxton +Phil +Pietro +Placido +Pratik +Prescott +Quan +Quoc +Ramzi +Randon +Rasheed +Rayvon +Raziel +Richy +Riki +Robinson +Rodger +Russ +Ruvim +Sabrina +Saman +Saxon +Scottie +Serjio +Servando +Shan +Shaunt +Sina +Sundeep +Suraj +Tadeh +Tal +Tania +Terell +Terrin +Theo +Theron +Thien +Thong +Thor +Tiffany +Tigran +Tin +Tj +Trevin +Tri +Tylar +Tyron +Uriah +Uvaldo +Vahe +Varun +Waleed +Wenceslao +Wilberto +Wilford +Wolfgang +Yadira +Yao +Yaseen +Yong +Zain +Zak +Zakariah +Zuriel +Aarron +Abdiel +Aden +Aditya +Aerick +Aharon +Aladdin +Alejo +Alexx +Alexzander +Alistair +Amaury +Amrit +Amy +Andranik +Anish +Antoni +Antonino +April +Arick +Aris +Arlen +Armin +Aroldo +Asad +Ashish +Avi +Avinash +Aziz +Bakari +Basilio +Belen +Benjamen +Benton +Berenice +Bernie +Bijon +Billal +Bobbie +Bodhi +Bradon +Bram +Branndon +Branson +Breon +Briana +Brycen +Bud +Byran +Carolina +Case +Cash +Catalino +Cecilia +Charlton +Chirstopher +Chong +Christipher +Cipriano +Constantine +Cordell +Correy +Crispin +Dajuan +Dakoda +Damen +Dameon +Damone +Dang +Danish +Danthony +Daylan +Deepak +Dejuan +Delvon +Demarea +Demitrius +Denise +Devonta +Didier +Dietrich +Dimitrius +Dj +Donnovan +Edsel +Eduard +Eian +Elad +Eladio +Eleuterio +Elgin +Elija +Eliud +Eliyahu +Emad +Emile +Endy +Enrico +Ericson +Erie +Ernan +Esther +Esvin +Fadi +Fortino +Fouad +Franklyn +Franz +Gaetano +Garen +Garland +Garo +Garren +Geoffery +Geovannie +Gerber +Gibson +Gideon +Gillermo +Giorgio +Giovannie +Glendon +Gonsalo +Grabiel +Greyson +Gunner +Gurpreet +Gustabo +Hamzah +Hannah +Hansen +Hardy +Haroon +Haroutun +Harutun +Harutyun +Hien +Hiroki +Hoa +Hollis +Hovanes +Hovhannes +Hrag +Hue +Iain +Ilan +Iman +Isaih +Isauro +Ismail +Izaak +Jaccob +Jahaziel +Jalin +Jareth +Jarett +Jarret +Jase +Jayce +Jaylan +Jazmine +Jc +Jd +Jehu +Jeovany +Jerid +Jermey +Jerod +Jerred +Jerrid +Jerron +Jhonny +Jhovani +Jhovany +Jjesus +Jobanny +Jobany +Jocob +Jody +Johannes +Johnchristopher +Jomar +Jonh +Jonothan +Jonthan +Josealfredo +Josemaria +Juana +Juanmiguel +Jules +Juliano +June +Kain +Kashif +Kassandra +Kaylen +Keandre +Kee +Kejuan +Kelby +Kenan +Kevonte +Keyon +Khai +Kim +Kiven +Koby +Kori +Krishan +Kriss +Kush +Kyleanthony +Kyron +Lake +Lang +Langston +Lauro +Lavelle +Layton +Lenard +Lenny +Leron +Liliana +Lorena +Lorne +Lovell +Luismiguel +Luz +Maclovio +Mariana +Marilyn +Marin +Marisol +Maritza +Marquell +Marquice +Matthias +Maury +Mckay +Michaela +Michaeljohn +Mickel +Mong +Montre +Monty +Morgen +Nahum +Nareg +Nasser +Naveed +Neftaly +Neko +Nhan +Nicanor +Nicola +Nieves +Nikkolas +Nikola +Niraj +Nishant +Orin +Osama +Oshay +Parth +Pascal +Pastor +Payne +Peyton +Phi +Princeton +Quade +Rahim +Rahsaan +Raj +Randel +Ranjit +Raoul +Raymar +Raymund +Redmond +Regino +Renard +Rich +Roel +Rogan +Ronaldo +Ronell +Roshan +Rueben +Ruperto +Ryanchristopher +Ryann +Ryker +Sabas +Said +Salman +San +Sandor +Sang +Sara +Scot +Seamus +Sevag +Shadi +Shahin +Shain +Shakir +Sharif +Shelton +Siaosi +Silvano +Skye +Sonia +Stacey +Stanton +Stavros +Stevens +Tad +Tamer +Taron +Thao +Tobin +Tod +Toren +Tori +Torrance +Tracey +Tramell +Tremaine +Tye +Tyrel +Tyshawn +Umberto +Uri +Usman +Valentine +Ventura +Vikram +Vinnie +Vinny +Vu +Vue +Waldemar +Wells +West +Wilbur +Wilfrido +Xai +Xang +Xue +Yordi +Yoshio +Yousif +Yousuf +Yusef +Yuta +Zachry +Zoe +Daniel +Michael +Jose +Christopher +David +Anthony +Andrew +Matthew +Joshua +Kevin +Jonathan +Brandon +Joseph +Jacob +Ryan +Nicholas +Juan +Christian +Alexander +Robert +Tyler +Luis +John +James +Justin +Jesus +Eric +Austin +Carlos +Kyle +Zachary +Brian +Steven +William +Aaron +Miguel +Alejandro +Eduardo +Richard +Angel +Jason +Jesse +Jordan +Victor +Jorge +Gabriel +Samuel +Thomas +Cody +Oscar +Francisco +Benjamin +Bryan +Ricardo +Adrian +Adam +Sean +Nathan +Cristian +Edgar +Dylan +Timothy +Manuel +Alex +Mark +Antonio +Erik +Jeremy +Patrick +Omar +Sergio +Javier +Cesar +Mario +Jeffrey +Cameron +Martin +Andres +Edward +Hector +Fernando +Roberto +Paul +Ivan +Charles +Ruben +Erick +Connor +Trevor +Vincent +Raymond +Pedro +Kenneth +Ian +Marcus +Stephen +Marco +Isaac +Raul +Taylor +Gerardo +Joel +Travis +Julian +Evan +Peter +Garrett +Edwin +Alberto +Alan +Rafael +Derek +Armando +Diego +Jaime +Jared +Nathaniel +Scott +Gregory +Salvador +Devin +George +Alexis +Frank +Jake +Arturo +Henry +Spencer +Blake +Johnny +Julio +Shane +Mitchell +Gustavo +Alfredo +Enrique +Dominic +Nicolas +Andy +Alec +Josue +Abraham +Marcos +Ernesto +Lucas +Danny +Dustin +Luke +Jack +Tanner +Ramon +Jimmy +Bradley +Caleb +Corey +Elijah +Hunter +Logan +Shawn +Phillip +Cole +Andre +Albert +Emmanuel +Giovanni +Dakota +Dillon +Chad +Guillermo +Pablo +Israel +Chase +Ethan +Brett +Tony +Moises +Xavier +Rene +Bryce +Casey +Mason +Ronald +Isaiah +Cory +Wesley +Noah +Troy +Fabian +Ismael +Jerry +Ricky +Max +Randy +Esteban +Hugo +Johnathan +Saul +Sebastian +Devon +Grant +Rodolfo +Dennis +Elias +Joe +Donald +Leonardo +Allen +Steve +Alfonso +Seth +Brendan +Jeremiah +Mathew +Eddie +Wyatt +Arthur +Rudy +Maxwell +Derrick +Colin +Keith +Philip +Douglas +Dalton +Gary +Felipe +Gilberto +Jackson +Darren +Abel +Marvin +Calvin +Louis +Rogelio +Curtis +Roger +Colton +Rodrigo +Jessie +Hayden +Lawrence +Damian +Jonathon +Gilbert +Miles +Noe +Clayton +Lorenzo +Ramiro +Mauricio +Riley +Emanuel +Marc +Drew +Harrison +Vicente +Brent +Roman +Emilio +Bryant +Humberto +Collin +Kenny +Nolan +Alvaro +Forrest +Kristopher +Larry +Tommy +Adan +Walter +Efrain +Billy +Oliver +Osvaldo +Donovan +Branden +Santiago +Freddy +Bobby +Jonah +Uriel +Conner +Nestor +Skyler +Russell +Jay +Levi +Ulises +Morgan +Orlando +Ignacio +Noel +Rolando +Tomas +Simon +Gavin +Nelson +Adolfo +Agustin +Leonel +Rigoberto +Dean +Joey +Joaquin +Nickolas +Roy +Preston +Felix +Darius +German +Angelo +Myles +Parker +Carl +Jairo +Micah +Ray +Dominique +Guadalupe +Theodore +Allan +Craig +Jeffery +Zackary +Dallas +Dominick +Eugene +Byron +Colby +Eli +Lance +Randall +Alvin +Dante +Trenton +Leonard +Alfred +Kristian +Maurice +Gerald +Zachariah +Deandre +Irvin +Marlon +Octavio +Gage +Bernardo +Damien +Damon +Josiah +Kelvin +Landon +Gonzalo +Griffin +Kody +Heriberto +Isaias +Jalen +Marshall +Raymundo +Zachery +Ezequiel +Melvin +Sam +Ali +Aidan +Frederick +Liam +Micheal +Nikolas +Rodney +Ariel +Brennan +Davis +Ernest +Ronnie +Shaun +Brady +Bruce +Charlie +Mike +Trent +Carson +Johnathon +Franklin +Lee +Marquis +Moses +Chris +Fidel +Jon +Leo +Conor +Geoffrey +Neil +Terrance +Avery +Estevan +Jamal +Todd +Chance +Reynaldo +Weston +Willie +Issac +Jamie +Malcolm +Malik +Darrell +Irving +Shaquille +Stefan +Terry +Alonzo +Drake +Efren +Stanley +Frankie +Glenn +Ross +Alexandro +Arnold +Harley +Leon +Ralph +Tevin +Wayne +Zane +Jayson +Francis +Terrence +Dane +Elliot +Kameron +Elliott +Gregorio +Kendall +Wilson +Brenden +Brock +Darryl +Misael +Aldo +Edgardo +Ty +Isai +Beau +Brendon +Cooper +Elmer +Harry +Hernan +Jerome +Kaleb +Quinn +Zackery +Chandler +Isidro +Jim +Reginald +Ashton +Cristobal +Jakob +Trevon +Trey +Deshawn +Genaro +Keenan +Sterling +Cruz +Kyler +Lukas +Rick +Devonte +Markus +Maximiliano +Darian +Darien +Kurtis +Wade +Amir +Maximilian +Robin +Valentin +Alonso +Cedric +Dion +Eliseo +Jarred +Juancarlos +Miguelangel +Nathanael +Santos +Tucker +Ahmad +Fredy +Giovanny +Joseluis +Kendrick +Milton +Mohammad +Stuart +Benito +Elvis +Roland +Tristan +Tyrone +Ulysses +Carter +Dario +Jarrett +Keegan +Kurt +Braden +Clarence +Demetrius +Jessy +Junior +Norman +Stephan +Benny +Derick +Garret +Gino +Karl +Leopoldo +Nigel +Conrad +Devante +Everett +Oswaldo +Skylar +Aron +Everardo +Gordon +Marcel +Mohammed +Reid +Arnulfo +Dale +Duncan +Jovani +Jovanny +Kai +Kelly +Marcelino +Austen +Deon +Erwin +Ezekiel +Harold +Keaton +Mitchel +Terrell +Tylor +Braulio +Bret +Clay +Cristopher +Darnell +Denzel +Desmond +Herman +Jordon +Nico +Daryl +Davon +Eddy +Graham +Louie +Quentin +Brayan +Dwayne +Marquise +Reed +Sammy +Ahmed +Grayson +Ibrahim +Jasper +Jovany +Julius +Mariano +Davion +Federico +Fermin +Jean +Justice +Keven +Niko +Reuben +Reyes +Clinton +Don +Forest +Fred +Howard +Jonatan +Khalil +Lewis +Perry +Raphael +Shayne +Warren +Abram +Bernard +Clifford +Cyrus +Dan +Geovanni +Kent +Lane +Marcelo +Quincy +Roderick +Sidney +Tyree +Carlo +Darin +Earl +Herbert +Horacio +Keanu +Kory +Lucio +Mackenzie +Terence +Antony +Aurelio +Dorian +Kristofer +Addison +Anton +Axel +Bryson +Freddie +Jermaine +Jessica +Jovan +Kirk +Lamar +Pete +Rory +Shannon +Walker +Devan +Jeff +Julien +Justyn +Leroy +Pierce +Quinton +Sage +Sonny +Blaine +Brenton +Chaz +Claudio +Clint +Dimitri +Ken +Madison +Royce +Zechariah +Deonte +Donte +Geovanny +Leobardo +Lionel +Loren +Rashad +Solomon +Arron +Bill +Brice +Davonte +Eleazar +Giancarlo +Isiah +Jefferson +Kasey +Lamont +Leland +Luciano +Maria +Nick +Rey +Silvestre +Winston +Adalberto +Andreas +Antoine +Ari +Dejon +Devyn +Diana +Donavan +Edmund +Eriberto +Ernie +Holden +Jace +Jarrod +Johnpaul +Jovanni +Nikko +Sawyer +Vidal +Arnoldo +Ben +Corbin +Gabino +Gene +Jaylen +Jimmie +Johnnie +Kane +Mauro +Maximillian +Owen +Sheldon +Stephanie +Tom +Tyrell +Vance +Dexter +Eder +Ezra +Glen +Jameson +Javon +Jessi +Jonas +Lonnie +Neal +Osbaldo +Rickey +River +Rocky +Rosendo +Brad +Brandyn +Darrin +Darrion +Deven +Jaron +Johnson +Josef +Khalid +Kong +Leslie +Orion +Stewart +Toby +Vince +Anderson +Bennett +Ceasar +Damion +Denny +Domingo +Eloy +Emiliano +Ervin +Faustino +Franco +Gerson +Greg +Kennedy +Luiz +Mateo +Romario +Stephon +Alejandra +Arman +August +Augustine +Brody +Darion +Dillan +Domenic +Gianni +Grady +Jabari +Jade +Mohamed +Nathanial +Samir +Samson +Shayan +Tobias +Tou +Will +Armen +Asher +Brennen +Brooks +Bruno +Darwin +Deion +Erin +Ever +Flavio +Giovani +Kieran +Marcoantonio +Markanthony +Pierre +Sarkis +Shelby +Sunny +Ubaldo +Wilfredo +Willy +Alessandro +Alexandre +Arjun +Artemio +Brayden +Clark +Darrien +Edson +Fredrick +Gunnar +Jacky +Jelani +Jorden +Korey +Lester +Lino +Muhammad +Payton +Rahul +Rex +Timmy +Travon +Abelardo +Alek +Aric +Baltazar +Barry +Bradford +Carlton +Dandre +Elvin +Galen +Guy +Lloyd +Quintin +Rico +Ryder +Shea +Ted +Trever +Aiden +Alden +Armand +Armani +Camden +Dwight +Edwardo +Eugenio +Fausto +Favian +Huy +Jair +Jamil +Jerald +Josedejesus +Lyle +Malachi +Marques +Norberto +Obed +Phoenix +Randolph +Rosalio +Syed +Trayvon +Valentino +Vernon +Abner +Aldair +Arvin +Bijan +Blair +Braxton +Camron +Courtney +Cullen +Dillion +Duane +Erich +Filiberto +Florentino +Fredi +Gerard +Hamza +Hans +Harvey +Jacobo +Jaquan +Jordy +Juvenal +Kareem +Lazaro +Mickey +Nikhil +Paolo +Reece +Reese +Ryland +Young +Adrien +Aram +Aubrey +Boris +Brandan +Cade +Caesar +Cheyenne +Coleman +Colten +Darrian +Davin +Declan +Deondre +Dominque +Duke +Emerson +Emil +Garett +Hilario +Ishmael +Jackie +Jan +Jayden +Jerrod +Kellen +Marty +Maverick +Osmar +Paris +Porfirio +Reno +Reymundo +Richie +Rigo +Santino +Sylvester +Tyson +Vaughn +Zakary +Adriel +Ashley +Brannon +Camilo +Cecil +Cynthia +Dana +Danilo +Dara +Dashawn +Deangelo +Elizabeth +Ellis +Garrison +Genesis +Geovany +Hassan +Jamar +Jennifer +Jess +Josemanuel +Josh +Justen +Justus +Kenton +Kimberly +Long +Michel +Omari +Ramsey +Refugio +Rhett +Ron +Salvatore +Thaddeus +Trace +Tyrin +Ulisses +Vladimir +Amador +Andrea +Anibal +Brando +Bronson +Cain +Christina +Christoper +Daron +Denis +Devaughn +Diamond +Dijon +Elton +Emmett +Enoch +Gabriela +Irwin +Johan +Lincoln +Michelle +Migel +Nery +Paulo +Romeo +Storm +Tate +Trinidad +Vinh +Abrahan +Adonis +Amit +Blaise +Chasen +Cheng +Codey +Dagoberto +Daren +Dave +Dayne +Donny +Edmond +Elisha +Florencio +Francesco +Ger +Hakeem +Homero +Isac +Jaleel +Jasmine +Jazmin +Juwan +Kevyn +Laura +Laurence +Marcellus +Markel +Melissa +Monte +Mynor +Myron +Raudel +Reggie +Rudolph +Salomon +Tracy +Vincente +Wilmer +Yonatan +Adriana +Akshay +Angus +Austyn +Bennie +Cassidy +Chadwick +Coby +Colt +Dallin +Dayton +Dominik +Esgar +Evaristo +Froylan +Garry +Geronimo +Gerry +Gildardo +Isaak +Joan +Joseantonio +Juanmanuel +Karan +Kerry +Kevon +Khari +Kristoffer +London +Margarito +Milo +Monica +Montana +Mustafa +Najee +Nicklaus +Nikolai +Rami +Randal +Remington +Renee +Sagar +Sameer +Schuyler +Semaj +Servando +Shant +Sky +Tevita +Tre +Valente +Westley +Yovani +Abran +Anders +Arian +Arin +Augustus +Bailey +Barrett +Bilal +Broderick +Celso +Chester +Cheyne +Clyde +Codie +Cornelius +Demetrio +Derrek +Diondre +Donnell +Donnie +Eliazar +Esequiel +Eusebio +Fabio +Floyd +Fortino +Franky +Gideon +Gil +Heath +Houston +Isreal +Jamel +Jasen +Javonte +Jerardo +Kade +Kalvin +Keshawn +Kou +Kris +Luca +Luigi +Markell +Meng +Minh +Mohamad +Morris +Mychal +Neftali +Nikolaus +Patric +Peyton +Pheng +Rayshawn +Rohit +Romel +Ronny +Rosario +Sami +Santana +Shay +Sherman +Tai +Taj +Tariq +Teddy +Tory +Tyron +Uziel +Van +Vincenzo +Wilber +Akash +Alton +Blas +Brain +Brodie +Bryon +Cary +Cristofer +Crystian +Darrel +Darrick +Dashiell +Deanthony +Dequan +Derik +Deshon +Dino +Dustyn +Edilberto +Eliezer +Gaspar +Gavino +Gevork +Hugh +Imran +Jagger +Jamison +Jude +Justine +Kaden +Kale +Kamran +Kao +Kelsey +Keng +Kian +Kim +Kirby +Kolby +Lafayette +Lauren +Leighton +Luc +Lucky +Marcell +Marcial +Matthias +Mayra +Mikal +Nader +Nehemiah +Osman +Otis +Otto +Pascual +Rowan +Ryne +Slater +Spenser +Steffan +Tarik +Tuan +Ulices +Uriah +Vahe +Vishal +Vivek +Wolfgang +Abimael +Akeem +Alexandra +Alexi +An +Asad +Baby +Bee +Bo +Brandin +Branson +Brenda +Bryton +Caden +Cale +Carmelo +Charley +Christofer +Ciro +Clemente +Clifton +Cornell +Cristo +Cyle +Dajon +Dakoda +Dakotah +Daquan +Daveon +Dawson +Delfino +Deric +Desean +Destin +Dionicio +Dirk +Domonic +Dyllan +Elan +Elder +Evin +Gamaliel +Garrick +Immanuel +Jacques +Jaden +Jamaal +Jeramiah +Jeramy +Jericho +Jin +Josias +Jun +Kamron +Kiefer +Kodi +Kunal +Lars +Matt +Maximino +Mikael +Mykel +Nahum +Nancy +Ocean +Oren +Quinten +Raffi +Raven +Rickie +Rocio +Roel +Rojelio +Ronaldo +Rusty +Rylan +Sal +Sandeep +Sarah +Sebastien +Stacy +Tayler +Thien +Titus +Travion +Truman +Virgilio +Zacharia +Aakash +Abdiel +Abdul +Aden +Ajay +Al +Alphonso +Amado +Amanda +Amin +Andrei +Andru +Apolinar +Argenis +Arlen +Asa +Ashwin +Augustin +Benson +Bernabe +Candido +Cedrick +Cuauhtemoc +Dangelo +Daulton +Demetri +Deontae +Dereck +Deshaun +Dionte +Dylon +Eamon +Earnest +Emmet +Erasmo +Geraldo +Gorge +Hamilton +Harlan +Harris +Hasan +Hieu +Hubert +Jacinto +Jamari +Jasson +Jaycob +Jed +Jedidiah +Jered +Jeromy +Jerson +Johathan +Johny +Jourdan +Juventino +Kc +Kelby +Kendal +Kenji +Kenyon +Keon +Keyon +King +Lamonte +Langston +Leandre +Leng +Lucero +Luisenrique +Mack +Marlin +Matias +Maximo +Maxx +Milan +Mitch +Modesto +Nabil +Nam +Nathen +Nevin +Nicholaus +Oshea +Patricio +Remy +Renato +Reymond +Richardo +Rohan +Rony +Royal +Rueben +Ryley +Sabino +Sahil +Sandro +Sione +Stevan +Stevie +Stone +Theron +Tim +Tito +Vanessa +Viet +Wilbert +Williams +Yeng +Yesenia +Yobani +Ysidro +Zack +Alexzander +Alfonzo +Amilcar +Amos +Anselmo +Ara +Arash +Arcadio +Aristeo +Bishop +Brandt +Brennon +Candelario +Charly +Chee +Chue +Codi +Coleton +Cristina +Danniel +Darell +Darrius +Davante +Dax +Demitri +Derrik +Dilan +Dimas +Domonique +Duy +Ean +Eber +Edgard +Edmundo +Eladio +Emery +Esteven +Estuardo +Fadi +Feliciano +Fransisco +Gaige +Garth +Gaston +Giorgio +Gregg +Grigor +Gunner +Hagop +Harman +Henri +Hipolito +Isacc +Jalil +Jarod +Jayme +Jaysen +Jeanluc +Jefferey +Jeronimo +Jessey +Jett +Joao +Joeseph +Johnmichael +Jonny +Jorgeluis +Jorje +Juanjose +Justis +Kaelin +Kahlil +Kalen +Killian +Korbin +Krishan +Leif +Leron +Lorne +Luisangel +Lyndon +Malcom +Marcanthony +Marcello +Marshawn +Mathias +Maynor +Mckay +Menachem +Missael +Nicolo +Niles +Ollie +Osiris +Otoniel +Phil +Phong +Rayan +Raymon +Rishi +Roque +Saif +Samantha +Saturnino +Seamus +Serafin +Silas +Sina +Sydney +Yosef +Yousef +Zain +Agustine +Aj +Akil +Alain +Albaro +Aldrin +Alexsander +Ammon +Archie +Armond +Armondo +Arya +Ashkan +Auston +Baron +Basil +Belal +Blayne +Blaze +Brant +Caelan +Callum +Carmen +Cash +Cisco +Cj +Claude +Clement +Cordell +Coty +Crystal +Dasean +Delvon +Demarco +Demarea +Denzell +Derrell +Devonta +Dmitri +Donavon +Dontae +Dontay +Eden +Edison +Eduard +Enrico +Enzo +Ephraim +Ernan +Errol +Esdras +Fletcher +Gagandeep +Garren +Geno +Gerrit +Gian +Gibran +Giuseppe +Greyson +Hakop +Hansel +Hudson +Iban +Ilan +Isidoro +Izaac +Jaccob +Jagdeep +Jaren +Jarret +Jarvis +Jasdeep +Jaspreet +Jeanpaul +Jeanpierre +Jereme +Jeremias +Jerrick +Jeshua +Jessee +Jesu +Jevon +Jihad +Jocelyn +Johann +Jonnathan +Joshuah +Jospeh +Juanantonio +Jurgen +Kalin +Karen +Karina +Keane +Keoni +Khachik +Khaled +Kishan +Kohl +Kyree +Leandro +Lenny +Maher +Marin +Marino +Marisol +Marquez +Marquice +Marshal +Martell +Matteo +Michaelangelo +Michaelanthony +Mikhail +Moshe +Muhammed +Nicolai +Niklas +Nikola +Ociel +Osiel +Raheem +Ramses +Ramzi +Raziel +Rio +Ritchie +Robbie +Romero +Rommel +Ronan +Rufino +Ryo +Samer +Sandra +Sanjay +Scotty +Shiloh +Silvano +Silvino +Stacey +Stefano +Tad +Talon +Thanh +Tobin +Torin +Traveon +Trevion +Tye +Tyquan +Ulyses +Valdemar +Victoria +Victoriano +Waleed +Westin +Youssef +Yusuf +Abdullah +Adnan +Akhil +Alexandros +Alistair +Alma +Aman +Amar +Ameen +Ameer +Ana +Andrey +Andrez +Andrue +Antone +Antwan +Antwon +Arie +Arley +Armon +Arno +Atanacio +Aureliano +Avetis +Avi +Baldomero +Bernie +Bladimir +Bodie +Bowen +Brianna +Camren +Carrington +Chace +Chai +Chan +Che +Ciaran +Cliff +Conrado +Courtland +Coy +Daisy +Danial +Dany +Darron +Darvin +Deante +Delon +Devontae +Dezmond +Diante +Duc +Dusty +Easton +Edric +Elbert +Elio +Ely +Emile +Eros +Esai +Eulalio +Eulises +Evelyn +Faisal +Fernie +Fidencio +Foster +Frederic +Froilan +Gannon +Gareth +Geovani +Gianluca +Giovany +Giuliano +Greggory +Gurpreet +Hank +Harjot +Harutyun +Homar +Jacobe +Jacqueline +Jarett +Jarrell +Jaskaran +Jasmin +Jaymes +Jayvon +Jeremi +Jerick +Jermey +Jeron +Job +Jody +Joesph +Jonte +Jossue +Jr +Juaquin +Judah +Justino +Kainoa +Karim +Keandre +Kelton +Kenyatta +Khalif +Khang +Khoa +Khristian +Khristopher +Kiel +Kodiak +Kole +Konrad +Kristen +Kylan +Kyron +Lam +Lang +Laron +Lashawn +Latrell +Lenin +Leondre +Levon +Librado +Lorena +Lou +Luisantonio +Macario +Malek +Marko +Marlo +Martel +Maurilio +Melchor +Mick +Miko +Mizael +Nash +Naveed +Navid +Nicklas +Nicole +Nile +Nils +Oskar +Paola +Parrish +Parth +Pascal +Paulino +Peng +Presley +Quin +Rashawn +Ravi +Reilly +Rodrick +Rosa +Ryker +Sabastian +Saeed +Salim +Sampson +Sang +Satchel +Serjio +Shaheed +Sharif +Sherwin +Shon +Shyam +Sigifredo +Simeon +Skye +Sol +Son +Steffen +Sundeep +Sutton +Takumi +Tanya +Tavis +Teng +Thai +Theo +Timmothy +Timoteo +Tong +Torrey +Travell +Treyvon +Trung +Tynan +Urbano +Usman +Victormanuel +Vijay +Vito +Walid +Wenceslao +Wendell +Willem +Xiong +Yazan +Yusef +Zaid +Abigail +Ace +Addam +Adil +Adrain +Akili +Alegandro +Aleksandr +Alen +Alexa +Alexei +Alvino +Amari +Anish +Anson +Antonino +Antoniodejesus +Araceli +Arik +Arnaldo +Ayrton +Barron +Bayron +Bernardino +Bob +Bradly +Braedon +Brendyn +Brittany +Britton +Byran +Calen +Cameren +Cannon +Carey +Cecilio +Celestino +Chadd +Chanse +Charlton +Chong +Christain +Christen +Christine +Christobal +Cirilo +Cobi +Constantino +Cosme +Daivd +Dakarai +Damond +Dannie +Darick +Davey +Daylon +Dejuan +Delaney +Delbert +Delvin +Demarcus +Demario +Demitrius +Demond +Dennys +Derrius +Deryk +Dewayne +Donaldo +Donta +Dontrell +Dyllon +Earvin +Edin +Eliab +Eligio +Elpidio +Enoc +Enrrique +Eoin +Epifanio +Eri +Erica +Esau +Faraz +Farhad +Flynn +Franz +Garen +Garet +Gus +Haig +Han +Harpreet +Harutun +Hiram +Hoang +Honorio +Hovanes +Hrag +Hussein +Idris +Ira +Isamar +Ismail +Issa +Itzel +Ivann +Izaak +Izaiah +Jaelen +Jakeb +Jameel +Jaryd +Javan +Javion +Jaziel +Jerod +Jhonny +Jiovanni +Jobany +Johnatan +Johnathen +Johnpatrick +Jordin +Jordyn +Jory +Joselito +Jovante +Juandaniel +Juanfrancisco +Juanpablo +Julie +Juliocesar +Kacey +Kaelan +Kaine +Kalani +Karlo +Karlos +Karsten +Kayvan +Keano +Keifer +Keion +Kellan +Kenan +Kevork +Khanh +Khiry +Kimani +Kingston +Konner +Kori +Krystian +Laith +Lake +Lamarr +Landen +Lauro +Lavell +Lavonte +Lejon +Lemuel +Lennard +Linda +Lupe +Maceo +Magdaleno +Makoto +Manpreet +Marek +Marion +Marley +Marquan +Mateen +Mattew +Mckinley +Megan +Mervin +Montel +Montgomery +Mykal +Napoleon +Nareg +Natan +Nhan +Nhia +Nicco +Niccolo +Nicolaus +Nino +Omero +Ori +Patricia +Percy +Pranav +Quang +Rajan +Randell +Rhyan +Richmond +Ridge +Rito +Robby +Rodger +Roldan +Romello +Roshan +Ruby +Rudolfo +Saad +Sabas +Sasha +Savon +Scot +Selvin +Shae +Shai +Shaquan +Shelton +Sinjin +Sou +Stanton +Stetson +Sullivan +Sumner +Sunil +Terance +Terell +Terron +Tevon +Thong +Tin +Tonny +Torey +Tracey +Trenten +Treshawn +Tristen +Tu +Tyren +Varun +Vikram +Virgil +Wallace +Waylon +Wilfrido +Wilton +Woodrow +Xai +Yair +Yanni +Yer +Yoni +Yuta +Zacary +Zackariah +Zaire +Zakkary +Zavier +Zion +Aaronjames +Adarius +Adin +Adonnis +Adrean +Adriano +Albino +Alecsander +Alejo +Aleksandar +Aleksander +Alexsis +Alexx +Amani +Anastacio +Andie +Andoni +Andranik +Aneesh +Angela +Anirudh +Ankit +Ankush +Anmol +Anna +Antione +Antoni +Antuan +Antwain +Apolonio +Aquil +Aren +Aria +Aries +Armaan +Arnel +Art +Artur +Arun +Asante +Athen +Augusto +Avinash +Baldwin +Baudelio +Bejamin +Benedict +Benigno +Benjamen +Benton +Bertin +Billie +Blade +Briana +Bridger +Brien +Brion +Burton +Caine +Cameran +Camrin +Cardell +Carlin +Case +Cassius +Cavan +Cayden +Ceaser +Cezar +Cha +Chancellor +Chang +Cher +Choua +Christien +Christin +Christoher +Christpher +Chrystian +Chukwuemeka +Cindy +Clancy +Constantine +Cortez +Corwin +Cosmo +Curren +Cutberto +Dallen +Dalvin +Damario +Damen +Damonte +Daneil +Daniela +Darryn +Darshan +Daven +Davidmichael +Davit +Davontae +Davy +Dawayne +Dayshawn +Dayvon +Dedrick +Deepak +Dejaun +Dejohn +Demonte +Denver +Deonta +Deontay +Deron +Derron +Deshone +Devlin +Diamante +Dilpreet +Domenico +Donavin +Dondre +Dong +Doron +Doyle +Edan +Edvin +Edwing +Elena +Eliott +Eliu +Emad +Emir +Emmitt +Eran +Eryk +Ezell +Fabiola +Faris +Fue +Gerado +Gevorg +Graciano +Gunther +Haik +Hairo +Hansen +Haroon +Harut +Hasani +Heber +Herson +Homer +Hosea +Houa +Huriel +Iman +Imani +Iran +Isabel +Isael +Isaih +Isrrael +Jabril +Jacoby +Jahaziel +Jalon +Jamall +Jamesryan +Jansen +Jarell +Jaret +Jarren +Jarron +Javen +Jaxon +Jaylan +Jaylin +Jaylon +Jayro +Jayshawn +Jeancarlos +Jedediah +Jeffry +Jensen +Jeovanny +Jeramie +Jeremie +Jeric +Jerrel +Jese +Jezreel +Jhon +Jhonathan +Joanna +Johnell +Jonathen +Jordi +Josafat +Josealberto +Joseguadalupe +Josemiguel +Josephmichael +Joshue +Jovanie +Jovonte +Julia +Justo +Juston +Kabir +Kaelen +Kain +Kalan +Kalyn +Kamari +Kamren +Karon +Kason +Kavin +Kayden +Kayon +Kayvon +Keelan +Kegan +Keilan +Keir +Kendell +Kennith +Kevan +Kevion +Keyan +Kijana +Kile +Kimball +Klayton +Koby +Kodey +Kodie +Kolten +Koua +Kraig +Lathan +Lennon +Leopold +Lex +Liliana +Lior +Lisandro +Lovell +Lowell +Luz +Maalik +Malique +Mandeep +Manolo +Marissa +Markeith +Markjoseph +Marquel +Marquell +Marquese +Marqus +Massimo +Mathieu +Maxmillian +Mckenzie +Merced +Micahel +Micky +Mikel +Moua +Murphy +Nabeel +Narciso +Natanael +Navdeep +Nazario +Neel +Neema +Nehemias +Niall +Nicandro +Nicholes +Noble +Nolberto +Noor +Norris +Omid +Oran +Oshay +Oswald +Othoniel +Ozzie +Pao +Payam +Philippe +Pierson +Polo +Prabhjot +Prince +Rachel +Rajdeep +Rajiv +Ramces +Rashaad +Rashaan +Rashid +Raymund +Raynard +Rebecca +Regan +Rian +Rod +Roosevelt +Rudolf +Rufus +Russel +Ryen +Ryon +Said +Saleem +Salem +Samual +Samvel +Sandy +Saxon +Sedrick +Seng +Sergey +Shaan +Shad +Shaine +Shan +Shaw +Sher +Sheridan +Shiv +Siddharth +Sierra +Silvester +Silvia +Silviano +Sixto +Sloan +Socrates +Soua +Steffon +Sven +Tadeh +Taha +Tam +Tan +Taran +Tarek +Tavon +Thao +Thor +Tino +Tj +Toan +Tremaine +Tremayne +Trevin +Tri +Tulio +Turner +Tylar +Tyreese +Umar +Vartan +Ventura +Victorio +Vong +Wayde +Wayland +Wes +Wilbur +Wiley +Wilver +Yael +Ying +Yoel +Zahir +Zev +Zubair +Daniel +Michael +Jose +Christopher +David +Anthony +Andrew +Matthew +Joshua +Jonathan +Jacob +Joseph +Kevin +Nicholas +Christian +Brandon +Ryan +Juan +Alexander +Justin +Tyler +Robert +Luis +Austin +John +Jesus +Eric +James +Carlos +Brian +Kyle +William +Zachary +Steven +Aaron +Angel +Eduardo +Miguel +Alejandro +Richard +Gabriel +Victor +Samuel +Jason +Jordan +Jorge +Bryan +Adrian +Thomas +Jesse +Francisco +Benjamin +Oscar +Ricardo +Adam +Nathan +Cody +Cristian +Alex +Dylan +Edgar +Sean +Antonio +Sergio +Manuel +Mark +Timothy +Erik +Omar +Mario +Patrick +Fernando +Cesar +Martin +Javier +Cameron +Jeremy +Isaac +Andres +Ivan +Hector +Roberto +Edward +Alexis +Charles +Jeffrey +Paul +Ruben +Trevor +Ian +Julian +Connor +Erick +Raymond +Armando +Vincent +Kenneth +Pedro +Evan +Marco +Raul +Isaiah +Nathaniel +Gerardo +Garrett +Stephen +Peter +Jared +Rafael +Joel +Elijah +Alberto +Alan +Marcus +George +Jaime +Diego +Edwin +Jake +Travis +Devin +Noah +Taylor +Salvador +Derek +Henry +Scott +Blake +Nicolas +Spencer +Alfredo +Gregory +Julio +Arturo +Enrique +Frank +Josue +Abraham +Jack +Gustavo +Johnny +Mitchell +Alec +Logan +Shane +Dominic +Grant +Ethan +Hunter +Wyatt +Caleb +Bradley +Lucas +Marcos +Andy +Dustin +Tristan +Tanner +Chase +Ramon +Luke +Dakota +Danny +Ernesto +Giovanni +Corey +Shawn +Albert +Andre +Jimmy +Cole +Emmanuel +Johnathan +Mason +Rodrigo +Israel +Saul +Brett +Sebastian +Esteban +Chad +Guillermo +Ismael +Moises +Pablo +Tony +Abel +Devon +Phillip +Jeremiah +Bryce +Calvin +Dillon +Troy +Randy +Steve +Jerry +Elias +Xavier +Max +Casey +Colin +Wesley +Cory +Seth +Ricky +Ronald +Dennis +Fabian +Allen +Rene +Mathew +Maxwell +Eddie +Arthur +Brendan +Jackson +Hugo +Keith +Lorenzo +Joe +Riley +Felipe +Damian +Leonardo +Jonathon +Rudy +Louis +Clayton +Malik +Mauricio +Alfonso +Rodolfo +Dalton +Gilbert +Derrick +Colton +Donald +Emilio +Curtis +Gilberto +Philip +Roger +Drew +Jessie +Douglas +Gary +Rogelio +Ramiro +Roman +Humberto +Marc +Marvin +Noe +Jonah +Adan +Chandler +Hayden +Darren +Brent +Uriel +Tommy +Parker +Larry +Lawrence +Emanuel +Efrain +Bryant +Kenny +Harrison +Santiago +Conner +Felix +Gavin +Alvaro +Joaquin +Liam +Noel +Osvaldo +Collin +Joey +Aidan +Kristopher +Morgan +Russell +Skyler +Nickolas +Alvin +Donovan +Nestor +Jay +Oliver +Simon +Vicente +Walter +Chris +Nolan +Tomas +Billy +Allan +Freddy +Miles +Rigoberto +Chance +Levi +Agustin +Charlie +Angelo +German +Branden +Gage +Ignacio +Dominick +Lance +Bernardo +Nelson +Trenton +Micah +Ray +Orlando +Rolando +Dante +Roy +Byron +Dallas +Ezequiel +Zackary +Preston +Deandre +Dean +Maurice +Theodore +Aldo +Bobby +Zachariah +Alfred +Carl +Irvin +Jairo +Kristian +Adolfo +Octavio +Damien +Ross +Bailey +Craig +Mike +Avery +Darius +Josiah +Trent +Colby +Ali +Damon +Ulises +Jalen +Kelvin +Marlon +Forrest +Gonzalo +Raymundo +Sam +Griffin +Isaias +Kody +Eli +Alonso +Brennan +Leonel +Todd +Brenden +Micheal +Stanley +Estevan +Jeffery +Dominique +Drake +Gerald +Myles +Nikolas +Zachery +Efren +Jon +Melvin +Randall +Ronnie +Willie +Terry +Frederick +Leonard +Ariel +Ashton +Alonzo +Jamal +Moses +Rodney +Leo +Santos +Conor +Cooper +Ty +Arnold +Frankie +Guadalupe +Heriberto +Cruz +Warren +Davis +Fidel +Landon +Leon +Malcolm +Shaun +Carson +Francis +Khalil +Brady +Bruce +Franklin +Issac +Marquis +Neil +Ralph +Austen +Brendon +Elmer +Kyler +Owen +Carter +Dane +Kai +Kameron +Alexandro +Eugene +Harley +Misael +Trevon +Cristopher +Ernest +Jakob +Jamie +Jerome +Johnathon +Weston +Elliot +Keanu +Zackery +Quentin +Bryson +Cedric +Elvis +Jayson +Terrance +Wilson +Zane +Deshawn +Justice +Lee +Hernan +Keenan +Ulysses +Graham +Kaleb +Marshall +Reynaldo +Tristen +Tyrone +Julius +Lane +Braden +Braulio +Garret +Geoffrey +Quinn +Rick +Wayne +Beau +Brock +Edgardo +Giovanny +Glenn +Marquise +Junior +Kurtis +Lukas +Markus +Stefan +Dan +Dario +Ezekiel +Jasper +Stephan +Devonte +Eliseo +Fredy +Genaro +Isai +Maximilian +Milton +Reginald +Reid +Tucker +Gregorio +Jovany +Nathanael +Nick +Skylar +Darrell +Darryl +Kelly +Quinton +Benito +Cristobal +Deon +Don +Everardo +Isiah +Jovanny +Kurt +Maximiliano +Reed +Sidney +Jordon +Joseluis +Keegan +Miguelangel +Sage +Darian +Deion +Demetrius +Elliott +Everett +Gino +Kendall +Louie +Anton +Desmond +Devante +Harry +Irving +Karl +Dale +Malachi +Sonny +Stuart +Tevin +Trey +Benny +Brad +Brayan +Brody +Flavio +Gordon +Isidro +Raphael +Robin +Terrence +Addison +Carlo +Emiliano +Jarred +Juancarlos +Kory +Marcelo +Amir +Clarence +Deven +Dwayne +Eddy +Jim +Jonatan +Jovani +Mackenzie +Sterling +Antony +Aron +Axel +Brenton +Conrad +Darien +Donte +Kirk +Marcel +Reuben +Ben +Bernard +Clay +Darnell +Dorian +Giovani +Jefferson +Lucio +Neal +Oswaldo +Rocky +Sheldon +Terrell +Valentin +Wade +Harold +Johnson +Kendrick +Kieran +Mohammad +Osbaldo +Perry +Roland +Tom +Tylor +Adalberto +Corbin +Cyrus +Freddie +Jovan +Kent +Keven +Romario +Derick +Favian +Fred +Herman +Jermaine +Lewis +Mateo +Mohammed +Nico +Royce +Tristin +Adonis +Arman +Arnulfo +Clifford +Davion +Davon +Dimitri +Johnnie +Nigel +Norman +River +Zechariah +Bret +Denzel +Devan +Geovanny +Jessy +Julien +Keaton +Mohamed +Eleazar +Erwin +Ezra +Federico +Howard +Leopoldo +Mariano +Niko +August +Blaine +Clark +Clint +Dejon +Jarrett +Jeff +Kellen +Maximillian +Quintin +Roderick +Tyson +Ahmad +Daryl +Dion +Giancarlo +Glen +Grayson +Lamont +Leobardo +Quincy +Rashad +Winston +Antoine +Aurelio +Cade +Clinton +Dillan +Ernie +Gunnar +Herbert +Javon +Jean +Ken +Lamar +Marcoantonio +Sammy +Shannon +Walker +Andreas +Bill +Brandyn +Caesar +Devyn +Duncan +Emerson +Horacio +Leroy +Solomon +Tyrell +Damion +Gene +Geovanni +Geovany +Jonas +Lester +Pierce +Vidal +Vince +Alexandre +Augustine +Brayden +Forest +Jaylen +Josh +Lionel +Luciano +Rey +Shayne +Timmy +Triston +Tyree +Vladimir +Adrien +Aric +Brennen +Darrin +Edson +Eloy +Esai +Hilario +Jaden +Jarrod +Jovanni +Kasey +Nikko +Sawyer +Shea +Tobias +Bennett +Bruno +Earl +Edwardo +Fermin +Gerson +Jace +Kane +Khalid +Luiz +Marcelino +Mauro +Nathanial +Paulo +Pete +Rohan +Rory +Shant +Stewart +Trayvon +Ari +Artemio +Brooks +Darion +Denny +Derian +Fredrick +Hans +Ibrahim +Jamison +Johnpaul +Kahlil +Kennedy +Kristofer +Layne +Marques +Mitchel +Norberto +Orion +Reece +Reyes +Toby +Tracy +Travon +Will +Ahmed +Bronson +Dandre +Eriberto +Franky +Guy +Jennifer +Keon +Luc +Pierre +Rony +Shaquille +Shelby +Spenser +Terence +Tou +Abelardo +Anibal +Arjun +Claudio +Dexter +Dominik +Eder +Esequiel +Harvey +Hugh +Jamil +Jaron +Korey +Laurence +Leland +Maria +Markanthony +Ramsey +Reese +Rico +Rosendo +Samir +Abran +Armand +Arron +Bradly +Darwin +Deonte +Dewayne +Dwight +Emmett +Erin +Jess +Jessica +Josef +Kalvin +Killian +Lazaro +Leslie +Long +Randal +Randolph +Rickey +Rudolph +Stephon +Abner +Armen +Bradford +Chaz +Darin +Elisha +Greg +Hassan +Jacky +Jameson +Justus +Kenji +Lloyd +Loren +Paolo +Pheng +Reymundo +Rhett +Rigo +Romeo +Samson +Syed +Tre +Vance +Alden +Anderson +Armani +Arnoldo +Arya +Austyn +Boris +Brando +Camilo +Ceasar +Chasen +Darrion +Davonte +Dijon +Domingo +Edmund +Fabio +Holden +Isaak +Jan +Jerardo +Jimmie +Johan +Justyn +Kian +Kong +Marcello +Markell +Muhammad +Nathen +Nima +Rahul +Renato +Ron +Salomon +Shayan +Trever +Abdul +Abram +Adriel +Aram +Brice +Eden +Emil +Gabino +Genesis +Gianni +Isac +Isacc +Jade +Jamar +Jasen +Jaycob +Juvenal +Kareem +Luca +Lyle +Patricio +Reno +Ryder +Salvatore +Sarkis +Valentino +Wilfredo +Aiden +Ajay +Alessandro +Aubrey +Auston +Codey +Colten +Deric +Ever +Grady +Harris +Jasson +Jelani +Jericho +Josedejesus +Kade +Kerry +Mickey +Mohamad +Omid +Phoenix +Reggie +Rex +Semaj +Sydney +Barry +Bijan +Brandan +Clemente +Domenic +Edgard +Emery +Erasmo +Filiberto +Garett +Garrison +Jasmine +Khari +Luigi +Marcell +Migel +Mynor +Nehemiah +Nikolaus +Pascual +Schuyler +Ted +Tito +Turner +Ubaldo +Valente +Willy +Asa +Asher +Ashley +Blair +Cornelio +Dangelo +Darrian +Dave +Davin +Deondre +Dylon +Elvin +Esau +Esgar +Eugenio +Fausto +Franco +Fransisco +Galen +Gerard +Geronimo +Gideon +Immanuel +Jacobo +Jeffry +Lincoln +London +Lonnie +Maverick +Montana +Nicklaus +Nicky +Richie +Santino +Servando +Silvestre +Sione +Stephanie +Tim +Trevin +Wilmer +Yovani +Aldair +Alton +Baltazar +Barrett +Blas +Camden +Christofer +Clifton +Clyde +Dana +Daquan +Daveon +Deangelo +Dereck +Donavan +Duke +Ervin +Faustino +Geovani +Giovany +Greyson +Gunner +Irwin +Jackie +Jacques +Jayden +Jerald +Johann +Jorden +Joseantonio +Justen +Kenton +Kris +Leif +Lino +Madison +Milan +Milo +Minh +Myron +Porfirio +Raymon +Rayshawn +Refugio +Remington +Sky +Stone +Tate +Teddy +Tristian +Ulisses +Vaughn +Vincente +Westley +Alfonzo +Amado +Anders +Argenis +Arvin +Augustus +Brenda +Brennon +Broderick +Bryon +Caden +Cassidy +Charley +Chue +Cristofer +Cuauhtemoc +Dakoda +Darrien +Dashawn +Delfino +Deshaun +Duane +Dusty +Elbert +Elizabeth +Emily +Garrick +Hakeem +Hamza +Hank +Jabari +Jai +Jedidiah +Jeronimo +Johnmichael +Jordy +Jourdan +Kaden +Kaelin +Kamal +Keshawn +Latrell +Leandro +Macario +Matthias +Mustafa +Najee +Obed +Paris +Quinten +Roque +Ryland +Silas +Tayler +Thaddeus +Thai +Theo +Van +Zack +Akash +Alejandra +Alexzander +Amador +Amit +Antwon +Archie +Bee +Brannon +Brodie +Cain +Camron +Cheng +Chester +Cornelius +Cullen +Dakotah +Dallin +Danilo +Dayton +Declan +Delvon +Demetri +Denis +Dionte +Easton +Edmond +Ellis +Elton +Gil +Gildardo +Gorge +Houston +Ishmael +Isreal +Jamaal +Jamari +Jamel +Jasmin +Jeramiah +Jessi +Job +Jorgeluis +Josemanuel +Juanjose +Kalen +Kamron +Karan +Kelsey +Keoni +Kevon +Kolby +Levon +Marquel +Marquez +Meng +Mikal +Montel +Nicholaus +Nikhil +Otoniel +Payton +Peyton +Phong +Rio +Rohit +Sal +Sherman +Sunny +Talon +Theron +Titus +Trace +Trae +Uriah +Varun +Vernon +Waleed +Yonatan +Yousef +Abdiel +Alexi +Amin +Andrea +Anfernee +Aren +Arian +Bao +Benton +Blaise +Braxton +Carmelo +Celso +Chazz +Cheyenne +Coleman +Coty +Dayne +Demitri +Deshon +Destin +Dino +Domonic +Donnell +Donnie +Donny +Dontae +Draven +Dyllan +Edison +Eladio +Esteven +Evaristo +Ger +Gian +Hakop +Homar +Ismail +Issa +Jaquan +Jaylin +Jett +Jevon +Joan +Johny +Jory +Kenyon +Kolton +Kristoffer +Landen +Lars +Mahmoud +Marshawn +Melissa +Missael +Nader +Natanael +Nathon +Nicolo +Nikolai +Osiel +Paulino +Rashaan +Raudel +Reilly +Rishi +Romello +Ronny +Sahil +Samer +Sherwin +Storm +Trenten +Trinidad +Tyron +Viet +Wilbert +Yesenia +Yosef +Zakary +Abrahan +Akshay +Anthoney +Aris +Arlen +Art +Augustin +Bernabe +Caelan +Cedrick +Chadwick +Coby +Codi +Constantino +Courtney +Dajon +Dajuan +Daren +Darrel +Davontae +Daylon +Deanthony +Demetrio +Derik +Ector +Edmundo +Eligio +Eliot +Ely +Eusebio +Fong +Fortino +Francesco +Hagop +Harman +Heath +Homero +Hudson +Huy +Iain +Jad +Jair +Jarvis +Javan +Javonte +Jered +Jerrad +Joesph +Jonny +Jorje +Josealberto +Joseangel +Joshuah +Juanmanuel +Judah +Kenyatta +Kevan +Konner +Kunal +Kylan +Laron +Lucky +Malek +Marcanthony +Marcial +Margarito +Marko +Matias +Maurilio +Mckay +Michaelangelo +Mikel +Nahum +Neftali +Peng +Prince +Raheem +Rami +Ramses +Rhys +Rian +Rickie +Robbie +Rojelio +Roosevelt +Rosalio +Ryen +Salim +Samantha +Santana +Seamus +Shay +Silvano +Silverio +Skye +Son +Stevan +Stevie +Sullivan +Taran +Tariq +Tobin +Truman +Tyus +Vikram +Vincenzo +Vinh +Virgil +Vishal +Westin +Wilber +Willard +Zaid +Adnan +Alek +Alijah +Aman +Ana +Apolinar +Aria +Babyboy +Baron +Benigno +Bishop +Braeden +Bulmaro +Candelario +Cecilio +Celestino +Christoper +Cordell +Cosme +Curt +Dagoberto +Damonte +Dara +Darrius +Dashiell +Demarcus +Demonte +Denver +Derrek +Diamond +Dillion +Donaldo +Donavon +Earnest +Edsel +Enzo +Errol +Esdras +Floyd +Geno +Geraldo +Giuseppe +Hubert +Izaak +Izaiah +Jalon +Jasdeep +Jashua +Jensen +Jeramy +Jerel +Jhovany +Jocelyn +Johathan +Johnathen +Joshue +Justis +Kale +Kalin +Kamran +Karim +Karina +Kegan +Kenan +Kendell +Keyon +Kyree +Leighton +Lyndon +Marshal +Maxx +Melchor +Michel +Michelle +Mikael +Modesto +Monte +Morris +Moshe +Mykel +Nam +Nash +Navid +Nicolai +Nicolaus +Osmar +Patric +Quang +Rashawn +Rocio +Rowan +Rusty +Rylan +Shiloh +Shon +Simeon +Stacy +Suraj +Sylvester +Tai +Teng +Thanh +Thor +Tino +Torin +Trystan +Tye +Ulices +Vanessa +Viktor +Vinson +Vito +Wilfrido +Willis +Yeng +Yobani +Aditya +Adriano +Alain +Amar +Ameer +Amer +Amos +Andru +Angus +Arash +Arik +Arnel +Aryan +Avraham +Baby +Benedict +Benjamen +Benson +Bilal +Bradon +Branson +Brook +Cal +Cale +Carlton +Cecil +Cha +Codie +Colt +Curran +Cyle +Danthony +Daron +Delvin +Demario +Dequan +Desean +Devaughn +Devontae +Dirk +Dmitri +Donavin +Dontay +Doran +Ean +Elder +Eliezer +Enoc +Erica +Erich +Eriq +Estuardo +Ferdinand +Fletcher +Florentino +Foster +Gamaliel +Gareth +Gerrit +Gevork +Graeme +Greggory +Gurpreet +Harjot +Harlan +Harout +Harpreet +Hiram +Ira +Jaleel +Jaren +Jarret +Jc +Jeanpaul +Jed +Jeovany +Jerad +Jeremi +Jeremias +Jerod +Jerrod +Jerson +Jessey +Jordyn +Jovon +Juanpablo +Justine +Kaelan +Kayvon +Kc +Keane +Keion +Keng +Kevyn +Khristian +Kiante +Kijana +Kirby +Kodie +Kole +Konrad +Kou +Krishna +Kwame +Lauren +Luisangel +Luther +Malique +Marino +Markel +Maxfield +Maxim +Maximo +Menachem +Mitch +Nabil +Natividad +Nikola +Omari +Omer +Oskar +Otis +Parth +Raffi +Rainier +Randell +Remy +Renzo +Rich +Ritchie +Rocco +Rod +Romel +Rueben +Ryo +Sabastian +Said +Saif +Sameer +Sami +Sandro +Sebastien +Selena +Sevag +Shivam +Slater +Stacey +Teodoro +Tigran +Tommie +Treyvon +Uziel +Vivek +Waylon +Williams +Yair +Yash +Yusuf +Zain +Zaire +Zion +Abdirahman +Abisai +Akeem +Aleczander +Aleksander +Alondra +Amanda +Amilcar +Andrei +Ansel +Anselmo +Arden +Aristotle +Arun +Augusto +Basilio +Blade +Blaze +Bo +Bodie +Bradlee +Brandin +Brandt +Brant +Bretton +Bryton +Chadd +Charly +Chauncey +Chong +Christoph +Cipriano +Cisco +Claude +Conrado +Cristo +Danial +Darby +Deante +Demitrius +Diana +Dionicio +Dusten +Eber +Eliceo +Emile +Evin +Fue +Garen +Garet +Garry +Gaspar +Grigor +Heber +Hosea +Hussein +Imran +Isabel +Isidoro +Jacinto +Jahaziel +Jalil +Jaspreet +Jeanluc +Jerell +Jereme +Jerico +Jerrell +Jessee +Jhonny +Jihad +Jimi +Jin +Jiovanni +Jody +Jomar +Jonnathan +Jonte +Jordin +Jr +Juanmiguel +Julia +Juliocesar +Jullian +Kain +Karen +Kawika +Keagan +Kelby +Khoa +Kiefer +Kimani +Kimberly +King +Kirkland +Kishan +Koby +Kohl +Kyron +Lake +Lamonte +Laura +Lenny +Linus +Lowell +Luisalberto +Luisenrique +Marcellus +Martel +Matteo +Maximino +Maynor +Mckinley +Megan +Melecio +Merlin +Michaelanthony +Mikhail +Monica +Montgomery +Nancy +Napoleon +Nery +Niklas +Nile +Nolberto +Oren +Pranav +Rajan +Rashaad +Rees +Remi +Remigio +Renee +Rito +Robby +Roemello +Ronnell +Rosario +Ryker +Ryley +Sabino +Sagar +Salman +Sandra +Sanjay +Seanmichael +Serjio +Shaan +Shae +Soren +Stefano +Taj +Tarek +Tarik +Tevita +Thien +Thong +Torrey +Tory +Trevion +Tuan +Usman +Vahe +Valdemar +Vang +Victormanuel +Vinay +Xzavier +Yuma +Aakash +Ace +Adel +Akil +Akira +Aldrin +Amandeep +Amari +Ammar +Amrit +Andrey +Andrez +Andrue +Angello +Anjel +Anmol +Anson +Aramis +Arie +Armin +Armon +Armondo +Ashraf +Ashwin +Atticus +Avelardo +Ayrton +Azeem +Bakari +Barak +Barrington +Barron +Baudelio +Baxter +Bayron +Bennie +Bert +Billie +Blue +Bobbie +Bram +Brandy +Britton +Brycen +Caelin +Calen +Candido +Carey +Catherine +Chace +Charlton +Cheyne +Christ +Christain +Christiaan +Christophe +Cj +Clarke +Corwin +Crescencio +Crystian +Cyril +Daisy +Dalvin +Davaughn +Dawson +Dedrick +Deepak +Dejuan +Delbert +Demetrious +Deron +Devlin +Devonta +Dominque +Dupree +Eitan +Elan +Elio +Eliott +Elyjah +Emmet +Enrico +Eros +Esaul +Estefani +Evelyn +Everado +Feliciano +Feras +Fredi +Froilan +Gabrielle +Gannon +Gaston +Gaven +Gavino +Geordan +Gerry +Gevorg +Gianluca +Gibran +Gillermo +Grabiel +Gray +Gregg +Gurtej +Hamilton +Hoang +Hovhannes +Hue +Hung +Iban +Iran +Isaiha +Issiah +Jacobb +Jacqueline +Jadon +Jael +Jagger +Jamin +Jarett +Jarid +Jarod +Jarren +Jayce +Jazmin +Jeancarlo +Jeanclaude +Jeanpierre +Jeremie +Jeric +Jerid +Jerrick +Jerron +Jian +Jobany +Johnatan +Johncarlo +Jonathen +Jonpaul +Josejuan +Josias +Jossue +Jozef +Judd +Jules +Juston +Kabir +Kalani +Kao +Karapet +Karlo +Kavin +Kenrick +Keyshawn +Khai +Khyree +Kingston +Kodi +Kodiak +Konnor +Krishan +Kristen +Kush +Lavell +Lazarus +Legend +Lemuel +Lenin +Lennon +Librado +Lucero +Luisfernando +Maalik +Mack +Malcom +Maleek +Mandeep +Manny +Marion +Marley +Martine +Marvyn +Mathias +Mckenzie +Mohit +Nadeem +Narciso +Natan +Nazario +Newton +Nicco +Nicholes +Nickolaus +Ori +Oswald +Otto +Oziel +Paola +Payam +Paymon +Petros +Rachel +Regino +Regis +Rhyan +Richmond +Robinson +Rondell +Roshawn +Royer +Rubin +Rudolfo +Russel +Ryon +Sandeep +Sandy +Saxon +Scotty +Serafin +Sharif +Sheridan +Skylor +Stirling +Tam +Taron +Terell +Tin +Tong +Toua +Travion +Trayveon +Tylar +Tyquan +Tyrelle +Tyren +Tyshawn +Vahan +Valentine +Ventura +Victoria +Vinny +Vivian +Wanya +Willem +Xai +Yanni +Yehuda +Yoni +Zacary +Zacharia +Aamir +Aaren +Aaryn +Abdullah +Adonay +Adrain +Adriana +Al +Aldrich +Aleksandar +Alen +Alexandar +Alexys +Alicia +Alika +Alix +Alize +Alphonso +Amadeo +An +Andranik +Angelica +Anirudh +Anish +Antonino +Arin +Aristeo +Aristides +Armond +Asad +Asael +Asim +Askari +Axl +Baldemar +Basil +Bernardino +Binh +Bladimir +Breon +Brittany +Broc +Brogan +Brysen +Buddy +Callum +Canyon +Cary +Cayman +Cezar +Chang +Chas +Chet +Chistian +Christan +Christien +Cian +Cirilo +Ciro +Clancy +Cobi +Coleton +Collen +Cordero +Courtland +Crispin +Crystal +Cy +Cynthia +Dallen +Damani +Damaria +Damen +Danniel +Darris +Darron +Darvin +Daulton +Daven +Davide +Davonta +Davontay +Dawayne +Daylan +Dayvon +Dejohn +Demetris +Deontae +Derrell +Deshun +Dimas +Dionisio +Domenick +Domonick +Domonique +Donato +Donaven +Donta +Doyle +Dreshawn +Duc +Duran +Dustyn +Eamon +Ed +Edin +Edvin +Eian +Eleno +Emigdio +Emmitt +Endy +Eneas +Enoch +Ephraim +Ericson +Eris +Ernan +Eulalio +Fadi +Faisal +Fernie +Fidencio +Ford +Franz +Frederic +Froylan +Gabrial +Gaetano +Gagandeep +Garth +Gelacio +Geremy +Giuliano +Gloria +Griffen +Gus +Harutun +Hasan +Hashim +Henri +Herminio +Honorio +Hovanes +Hovsep +Howie +Huan +Ilan +Iman +Irineo +Isael +Ivory +Izaac +Jabriel +Jacoby +Jacque +Jaedon +Jaelin +Jairus +Jameel +Janet +Jarom +Jarrell +Jaspal +Javion +Jaxon +Jaydon +Jaymes +Jayvon +Jaziel +Jazz +Jedediah +Jeramie +Jermiah +Jeromy +Jeron +Jerred +Jhonatan +Jhonathan +Jilberto +Joeseph +Johannes +Johnpatrick +Jonmichael +Jonnie +Josearmando +Juanantonio +Juanito +Jude +Jun +Justo +Juwan +Kainoa +Kamren +Kamryn +Karla +Karon +Karsten +Katherine +Kaylen +Kayne +Kean +Keifer +Keishawn +Kelton +Kendal +Kenta +Keshav +Kiel +Kilian +Kion +Kraig +Ladarius +Lamberto +Landin +Lauro +Lavelle +Leng +Linh +Lucus +Luisfelipe +Luka +Lupe +Mac +Manpreet +Manvir +Marcellous +Marciano +Maritza +Markos +Marlo +Marquese +Marsalis +Martinjr +Massimo +Mateen +Mathieu +Maury +Mayra +Mccoy +Mehran +Merrick +Micahel +Miller +Mina +Mizael +Monroe +Mychal +Nadav +Nareg +Narek +Nazar +Nethaniel +Niall +Nikita +Nils +Nino +Niraj +Nitin +Odilon +Omeed +Oseas +Oshea +Osiris +Ovidio +Ozzy +Padraic +Payne +Pearce +Peni +Phu +Pierson +Polo +Prabhjot +Quan +Quenton +Rashaun +Rasheed +Raven +Ravi +Ravneet +Rayshaun +Reymond +Riccardo +Ricki +Ridge +Rodrick +Roel +Rufino +Rufus +Ryne +Saad +Saeed +Samvel +Sasha +Satchel +Saulo +Sedrick +Shad +Shadi +Shiv +Shmuel +Siddharth +Sigifredo +Silvio +Simran +Sohrab +Sou +Stanton +Steffen +Tadeh +Tal +Talal +Teagan +Terin +Thatcher +Tien +Tj +Toney +Toni +Tracey +Tremaine +Trentin +Tresean +TRUE +Trung +Trustin +Tung +Tyran +Tyre +Tyrel +Ulyses +Vijay +Vinnie +Vong +Wallace +Wayde +Wei +Wendell +Werner +Wesly +Wilbur +Wolfgang +Woodrow +Xeng +Yannick +Yazan +Ying +Yobany +Yonah +Yonathan +Yoshio +Yusef +Zach +Zakariah +Zavier +Zayd +Zeferino +Daniel +Jose +Michael +David +Christopher +Anthony +Andrew +Joshua +Matthew +Jonathan +Joseph +Christian +Jacob +Nicholas +Brandon +Kevin +Juan +Ryan +Alexander +Justin +Luis +Austin +Tyler +Robert +Jesus +John +Eric +Brian +James +Carlos +Angel +William +Miguel +Alejandro +Kyle +Samuel +Aaron +Zachary +Steven +Gabriel +Eduardo +Richard +Jorge +Benjamin +Adrian +Jason +Jordan +Victor +Oscar +Bryan +Jesse +Thomas +Francisco +Nathan +Ricardo +Cristian +Antonio +Adam +Sean +Edgar +Alex +Mark +Manuel +Dylan +Sergio +Cody +Cameron +Isaac +Noah +Omar +Andres +Timothy +Isaiah +Cesar +Mario +Fernando +Javier +Ivan +Patrick +Erik +Hector +Roberto +Alexis +Jeremy +Gerardo +Martin +Edward +Jeffrey +Julian +Erick +Raymond +Vincent +Ruben +Ian +Connor +Charles +Elijah +Marco +Trevor +Nathaniel +Alan +Kenneth +Evan +Paul +Pedro +Raul +Tristan +Jared +Joel +Armando +Jack +Enrique +Jake +Rafael +Diego +Alberto +Peter +Marcus +Stephen +Logan +George +Julio +Jaime +Garrett +Nicolas +Ethan +Marcos +Arturo +Blake +Salvador +Edwin +Andy +Alfredo +Josue +Giovanni +Henry +Caleb +Travis +Abraham +Devin +Derek +Gustavo +Chase +Frank +Cole +Hunter +Dominic +Gregory +Spencer +Johnny +Scott +Alec +Taylor +Shane +Bradley +Luke +Lucas +Grant +Ramon +Emmanuel +Bryce +Danny +Mitchell +Tanner +Saul +Jimmy +Wyatt +Ernesto +Israel +Ismael +Albert +Mason +Sebastian +Dakota +Guillermo +Andre +Pablo +Jerry +Esteban +Brett +Dustin +Xavier +Moises +Johnathan +Shawn +Malik +Phillip +Ronald +Elias +Riley +Fabian +Rodrigo +Dillon +Steve +Calvin +Randy +Seth +Jackson +Max +Colin +Alfonso +Troy +Wesley +Damian +Chad +Corey +Jeremiah +Casey +Hugo +Osvaldo +Rene +Tony +Maxwell +Colton +Arthur +Brendan +Collin +Leonardo +Devon +Rodolfo +Allen +Lorenzo +Eddie +Mathew +Abel +Dennis +Emilio +Ricky +Keith +Parker +Joe +Rudy +Felipe +Liam +Bryant +Jonah +Cory +Harrison +Louis +Hayden +Derrick +Philip +Gary +Marc +Donald +Jessie +Marvin +Chandler +Jonathon +Gilberto +Roman +Drew +Mauricio +Gilbert +Noe +Clayton +Ramiro +Adan +Chance +Douglas +Rogelio +Roger +Skyler +Gavin +Uriel +Conner +Donovan +Emanuel +Aidan +Josiah +Curtis +Darren +Bailey +Efrain +Larry +Alvaro +Kenny +Dalton +Tommy +Brent +Angelo +Humberto +Lawrence +Felix +Miles +Tomas +Chris +Dante +Ignacio +Morgan +Levi +Nolan +Oliver +Ulises +Billy +Octavio +Preston +Joaquin +Santiago +Branden +Kristopher +Simon +Nickolas +Russell +Nelson +Trenton +Vicente +Zackary +Agustin +Dominick +Micah +Noel +Walter +Dean +Griffin +Leonel +Gage +Rigoberto +German +Isaias +Tristen +Darius +Roy +Alvin +Joey +Lance +Allan +Ariel +Ezequiel +Jay +Nestor +Owen +Eli +Orlando +Brenden +Jairo +Theodore +Byron +Bobby +Marlon +Dallas +Freddy +Mike +Adolfo +Kelvin +Frederick +Trent +Charlie +Quinn +Bernardo +Ali +Issac +Kristian +Carl +Moses +Estevan +Gonzalo +Raymundo +Ty +Myles +Terry +Guadalupe +Damien +Irvin +Brady +Drake +Efren +Malcolm +Alfred +Cooper +Craig +Franklin +Jon +Rolando +Avery +Bruce +Carson +Damon +Deandre +Jalen +Kody +Todd +Ernest +Kaleb +Neil +Conor +Jakob +Quentin +Rodney +Aldo +Carter +Johnathon +Leonard +Nikolas +Alonso +Jeffery +Maurice +Micheal +Ronnie +Sam +Brennan +Cruz +Dane +Marshall +Fidel +Leo +Tristin +Zachery +Arnold +Randall +Kameron +Landon +Ross +Alonzo +Frankie +Isai +Justice +Ray +Ezekiel +Santos +Cristopher +Zachariah +Colby +Heriberto +Misael +Davis +Jayson +Zane +Alexandro +Elliot +Marquis +Elmer +Nathanael +Ulysses +Zackery +Gregorio +Melvin +Amir +Dominique +Gerald +Jamal +Kai +Tyrone +Wilson +Bryson +Isiah +Jerome +Trey +Weston +Jamie +Brock +Eugene +Maximilian +Mohammad +Garret +Marcel +Shaun +Harold +Reginald +Willie +Francis +Geoffrey +Kent +Kyler +Lee +Ralph +Stanley +Edgardo +Hernan +Joseluis +Reynaldo +Warren +Junior +Oswaldo +Beau +Brayan +Cedric +Emiliano +Irving +Keenan +Mateo +Quinton +Braulio +Darryl +Eliseo +Elvis +Keanu +Louie +Terrance +Dangelo +Jonatan +Kurtis +Lane +Cristobal +Darrell +Lukas +Benny +Forrest +Graham +Jasper +Leon +Marcelo +Maximiliano +Trevon +Derick +Duncan +Fred +Jarrett +Skylar +Stefan +Tucker +Austen +Braden +Brendon +Dion +Elliott +Miguelangel +Quincy +Roland +Sage +Arnulfo +Benito +Cade +Cyrus +Desmond +Genaro +Geovanni +Harley +Julius +Karl +Malachi +Milton +Rick +Antony +Demetrius +Jovanny +Kurt +Ben +Deshawn +Jim +Reid +Valentin +Wade +Aron +Carlo +Dorian +Giovanny +Isidro +Jonas +Keegan +Kendall +Claudio +Darian +Gino +Marcelino +Sheldon +Terrence +Brody +Clay +Everardo +Fredy +Jovani +Juancarlos +Kelly +Khalil +Kieran +Sonny +Walker +Ashton +Devante +Eddy +Glenn +Jovany +Osbaldo +Reed +Dan +Darnell +Don +Gordon +Ken +Leopoldo +Markanthony +Nick +Norman +Reuben +Robin +Rory +Terrell +Triston +Clarence +Conrad +Dario +Wayne +Ahmad +Bernard +Brad +Brayden +Clifford +Deangelo +Donte +Giovani +Jarred +Mohamed +Sawyer +Sterling +Stuart +Winston +Deion +Federico +Flavio +Harry +Johnson +Kellen +Keven +Kory +Raphael +Axel +Davion +Devan +Ezra +Jefferson +Kendrick +Lamar +Luiz +Mackenzie +Dale +Deon +Jessy +Keaton +Kennedy +Quintin +Adalberto +Ahmed +Ari +Brandan +Deven +Fredrick +Jovanni +Maximillian +Solomon +Stephan +Bruno +Jacky +Lewis +Tylor +Tyree +Tyson +Abelardo +Arman +Aurelio +Brennen +Devonte +Eleazar +Ernie +Glen +Guy +Javon +Jeff +Johnpaul +Lucio +Marcoantonio +Marquise +Royce +Sidney +Horacio +Marques +Pierce +Tobias +Toby +Zechariah +Bret +Chaz +Damion +Darin +Everett +Geovanny +Howard +Julien +Kian +Lamont +Markus +Nigel +Rashad +Sammy +Abram +Antoine +Corbin +Darwin +Devyn +Earl +Edson +Eloy +Gerson +Jaden +Jordon +Mohammed +Niko +Orion +River +Shayne +Adonis +Ceasar +Davon +Denzel +Favian +Freddie +Herman +Jovan +Kasey +Lazaro +Leobardo +Mariano +Nico +Paris +Rey +Rohan +Semaj +Addison +Adrien +Anton +Daryl +Deshaun +Eriberto +Giancarlo +Grayson +Hilario +Hudson +Josef +Kirk +Mauro +Neal +Nikhil +Quinten +Reyes +Rickey +Roderick +Rosendo +Samson +Terence +Travon +Tyrell +Andreas +Armen +Bill +Brandyn +Clark +Clinton +Erwin +Garrison +Jackie +Jaron +Jaylen +Pierre +Reymundo +Richie +Romeo +Sunny +Tate +Tevin +Tristian +Vance +Vidal +Aiden +Alden +Argenis +Armand +Arnoldo +Arron +Austyn +Brenton +Caden +Chasen +Clemente +Dandre +Darion +Dayton +Derian +Erin +Hans +Ibrahim +Jean +Jermaine +Jimmie +Johnnie +Lionel +Luciano +Perry +Reese +Rocky +Vladimir +Abner +Armani +Asher +Bennett +Blaine +Emerson +Fermin +Greyson +Jarrod +Luca +Marcello +Mitchel +Nathanial +Peyton +Ron +Rudolph +Sami +Santino +Stone +Tom +Adriel +Augustine +Barry +Dashawn +Dejon +Dillan +Emmett +Fausto +Gene +Holden +Jamar +Justus +Kaden +Kolby +Reece +Shannon +Tou +Alexandre +Amador +Anderson +August +Braxton +Camden +Coby +Coleman +Dana +Darien +Dwayne +Elisha +Ervin +Esau +Esequiel +Forest +Franco +Garett +Gaspar +Grady +Greg +Jace +Jair +Jarod +Jayden +Jelani +Maverick +Reilly +Remy +Ronny +Ted +Timmy +Trinidad +Will +Yonatan +Aric +Arjun +Bradford +Caesar +Clint +Colt +Deonte +Edwardo +Ellis +Gunnar +Hakeem +Hugh +Jameson +Jerald +Kahlil +Keshawn +Kristofer +Obed +Phoenix +Rex +Shayan +Ajay +Blair +Danilo +Dexter +Dominik +Edmund +Esai +Galen +Giovany +Herbert +Isaak +Jess +Justyn +Juvenal +Laurence +Leroy +Leslie +Lino +Mickey +Payton +Samir +Shelby +Silvestre +Thaddeus +Alessandro +Angus +Aram +Brice +Clyde +Cullen +Darrin +Denny +Dwight +Isac +Jamil +Jennifer +Jerardo +Justen +Juwan +Kade +Kalvin +Kane +Lloyd +Marcell +Muhammad +Nery +Nikko +Reno +Rhett +Seamus +Shea +Sky +Syed +Wilfredo +Aris +Artemio +Bronson +Brooks +Cheyenne +Dawson +Dimitri +Domingo +Gabino +Gerard +Gildardo +Hassan +Irwin +Jamison +Jayce +Jaylin +Jorden +Joshue +Kareem +Korey +Lonnie +Maria +Matias +Pete +Silas +Simeon +Stephon +Talon +Titus +Yusuf +Abdul +Aditya +Akshay +Aria +Arian +Asa +Colten +Dallin +Davonte +Franky +Geovany +Gil +Jasen +Jaylon +Kelsey +Khalid +Kimberly +Leland +Lester +Luc +Marquez +Neftali +Nehemiah +Norberto +Otto +Paulo +Romario +Spenser +Tre +Abrahan +Alek +Anders +Anibal +Baron +Brycen +Camron +Cuauhtemoc +Dave +Davin +Domenic +Faustino +Genesis +Geovani +Gianni +Hakop +Homero +Jabari +Jade +Jan +Jered +Josemanuel +Juanmanuel +Karan +Layne +Loren +Lucky +Madison +Mahmoud +Maximo +Milan +Minh +Missael +Myron +Natanael +Nathen +Omari +Otis +Paolo +Refugio +Ryley +Stefano +Tim +Vaughn +Vince +Vishal +Wilmer +Yobani +Alain +Aldair +Ameer +Baltazar +Barrett +Bilal +Boris +Bradly +Candelario +Canyon +Cassidy +Christofer +Cristofer +Daquan +Darrion +Daylon +Deric +Dino +Donavan +Draven +Elton +Ever +Filiberto +Fredi +Jeffry +Job +Josemaria +Josias +Kamron +Keoni +Keyshawn +Kordell +Laron +Lars +Margarito +Mikel +Milo +Nikolai +Parth +Rahul +Raymon +Reggie +Rico +Stephanie +Stewart +Tai +Tarik +Trever +Tyus +Valentino +Vernon +Vikram +Westley +Willy +Yonathan +Yousef +Akash +Aleksander +Amado +Amin +Archie +Art +Arya +Ashley +Braeden +Brando +Brant +Camilo +Campbell +Dajon +Danniel +Darrien +Declan +Donnie +Dontae +Duane +Eden +Eder +Geronimo +Gunner +Hiram +Hubert +Iain +Isacc +Ishmael +Isreal +Jamaal +Jaskaran +Jessi +Joseangel +Josedejesus +Justis +Kevyn +Landen +London +Mack +Marshawn +Maximino +Mckenzie +Mikael +Montana +Nahum +Nicky +Pascual +Rian +Ronaldo +Ryder +Salvatore +Santana +Sarkis +Sasha +Shant +Sherman +Tariq +Theo +Tracy +Treyvon +Truman +Tyrus +Zakary +Andrei +Aren +Auston +Benson +Blaise +Bowen +Broderick +Candido +Codey +Dagoberto +Daveon +Dereck +Donavon +Ean +Elvin +Emil +Esdras +Hagop +Imani +Jamel +Jaren +Jaycob +Johan +Johannes +Jordi +Jordy +Joseantonio +Josh +Juventino +Kaelan +Kainoa +Keon +Khristian +Koby +Kolton +Kong +Kou +Kristoffer +Lincoln +Marcanthony +Markell +Marty +Menachem +Mustafa +Nash +Nikolaus +Porfirio +Raudel +Rhys +Robbie +Royal +Salomon +Shaquille +Thien +Trace +Trayvon +Trystan +Ulyses +Vincente +Wilber +Williams +Yovani +Zack +Abdullah +Abimael +Alfonzo +Alphonso +Alton +Antwan +Armon +Bladimir +Brandin +Braydon +Cain +Cale +Callum +Cedrick +Charley +Chauncey +Cobi +Courtney +Dakotah +Deante +Demetrio +Denis +Derrek +Destin +Dijon +Dylon +Edmond +Eliot +Enoch +Enrico +Erasmo +Ernan +Eugenio +Eusebio +Francesco +Ger +Harvey +Heath +Izaiah +Javonte +Jedidiah +Jerad +Jerrod +Jessica +Jiovanni +Joan +Johann +Juanjose +Karim +Kevon +Keyon +Killian +Kole +Kris +Kyree +Lake +Lenin +Long +Lyle +Manny +Michaelanthony +Michel +Mohamad +Najee +Osama +Raheem +Rasheed +Rigo +Rodrick +Rueben +Saad +Sabino +Sachin +Sahil +Sebastien +Shae +Shiloh +Shivam +Silverio +Soren +Stevie +Tayler +Teddy +Ulisses +Van +Waleed +Abisai +Abran +Amar +Amilcar +Andrea +Armaan +Ashwin +Augustus +Bo +Cecil +Cheng +Chet +Daron +Darrian +Davante +Demarcus +Dewayne +Diamond +Domonic +Donnell +Dusty +Edison +Edvin +Elan +Eriq +Fabio +Florencio +Florentino +Floyd +Froylan +Gannon +Garet +Hamza +Houston +Huy +Jadon +Jaleel +Jamari +Jaquan +Jasmine +Jaxon +Jerred +Jett +Josafat +Juanpablo +Jullian +Kalen +Kamal +Khang +Kim +Leandre +Manjot +Marko +Marlo +Maxim +Maxx +Maynor +Melissa +Migel +Mikey +Modesto +Moshe +Nader +Omer +Osiris +Pheng +Quinlan +Rajan +Ramses +Ramsey +Reagan +Rohit +Rosalio +Rowan +Rylan +Sal +Scottie +Servando +Shay +Shon +Silvano +Skye +Sydney +Sylvester +Theron +Travion +Trung +Tryston +Tyron +Vanessa +Vinh +Yovany +Zaire +Abdiel +Alen +Alexi +Alijah +Alondra +Amari +Amit +Ammon +Anastacio +Anthoney +Aristeo +Arnel +Arvin +Asante +Benigno +Bijan +Bradlee +Brandt +Cecilio +Celso +Chazz +Cordell +Cormac +Cornelius +Corwin +Daisy +Daren +Darrick +Demitri +Desean +Dominque +Edgard +Edmundo +Eliezer +Enzo +Esgar +Finn +Fransisco +Gareth +Gaven +Gerry +Gian +Gibran +Giuseppe +Gorge +Hamilton +Harout +Harris +Iban +Immanuel +Isael +Jakari +Jamon +Jarvis +Jeanpaul +Jeramiah +Jericho +Joeseph +Josejuan +Judah +Jude +Kao +Keane +Keelan +Kenji +Kenyon +Kevan +Khoa +Lauro +Luisenrique +Marcial +Markel +Maxfield +Michelle +Nabil +Neema +Nicklaus +Oren +Raj +Rami +Raven +Remington +Renee +Romel +Romello +Rony +Rylee +Sagar +Saxon +Sina +Tarek +Tito +Tory +Trevin +Ulices +Vinson +Wylie +Yash +Yuki +Zayne +Zion +Aden +Adriano +Alexzander +Alon +Aman +Amos +Amrit +Anjel +Ankit +Anselmo +Apolonio +Arash +Arlen +Asael +Atticus +Benedict +Bernabe +Boston +Briant +Bryon +Chace +Cris +Crispin +Cristhian +Dakoda +Dameon +Darrel +Dashiell +Dayne +Dayvon +Delfino +Demario +Demetri +Derik +Dillion +Duke +Dustyn +Dyllan +Easton +Eladio +Elder +Enrrique +Erich +Eron +Evaristo +Faisal +Fletcher +Franciscojavier +Garry +Geraldo +Giorgio +Grey +Grigor +Gustabo +Hank +Harjot +Harpreet +Hasan +Heber +Iman +Iran +Ivory +Jai +Jalil +Jarek +Jaspreet +Jawan +Jayro +Jazmin +Jeanluc +Jeanpierre +Jed +Jerrick +Joshuah +Juanantonio +Juliocesar +Kaelen +Kaelin +Kamran +Kavon +Kazuki +Keion +Kirby +Konnor +Konrad +Lavell +Leandro +Lemuel +Leng +Levon +Lisandro +Lucien +Luigi +Luisangel +Malique +Meng +Merrick +Michaelangelo +Michal +Montel +Mykel +Mynor +Nabeel +Navid +Nevin +Nicolai +Nima +Ocean +Omid +Oskar +Parsa +Pavel +Polo +Raffi +Randolph +Rashid +Rayan +Rio +Ritchie +Roosevelt +Roque +Rosario +Schuyler +Selvin +Shahin +Shai +Shelton +Sherwin +Storm +Suraj +Taj +Thai +Thanh +Tino +Turner +Ubaldo +Vahe +Valente +Valentine +Varun +Waylon +Wiley +Yair +Abe +Abelino +Ace +Adin +Amer +Anfernee +Anirudh +Antoni +Antonino +Arik +Aryan +Aryeh +Aubrey +Augustin +Ayden +Ayrton +Azael +Basil +Bee +Bernie +Bob +Brannon +Branson +Brodie +Cannon +Carlton +Cary +Cha +Cheyne +Chistopher +Christina +Cian +Codi +Coleton +Cyle +Demarco +Deontae +Dequan +Desi +Devaughn +Dimas +Dionte +Donaven +Dontay +Dupree +Earnest +Eliel +Elizabeth +Ely +Emile +Emily +Eros +Esteven +Frederic +Fue +Gagandeep +Gamaliel +Garrick +Gavino +Gevork +Giacomo +Gibson +Greggory +Griffen +Gurpreet +Hasani +Henri +Hipolito +Hovanes +Hussein +Ilan +Indiana +Ira +Isaih +Jacqueline +Jacques +Jayvon +Jerson +Jevon +Jhonathan +Jhonny +Joesph +Johnatan +Johnjoseph +Johnmichael +Jonnathan +Jordin +Jorgeluis +Jory +Jourdan +Jovon +Joy +Json +Juanluis +Juaquin +Justine +Kain +Kaine +Kalani +Kanan +Karen +Karlo +Kelton +Kenyatta +Kerry +Kesean +Khari +Kiante +Kiefer +Kiran +Kishan +Kollin +Kush +Latrell +Lex +Luisalberto +Luther +Lyndon +Magdaleno +Maleek +Maliek +Marck +Marquel +Marsalis +Mathias +Matthias +Maurilio +Maurisio +Mayra +Mel +Michale +Mihir +Mikal +Miller +Mitch +Natalie +Navjot +Nazario +Nicholaus +Nicolaas +Nicolaus +Osmar +Otoniel +Phil +Phong +Porter +Quin +Raekwon +Rakan +Raleigh +Randal +Randell +Rashaad +Ravi +Rayshawn +Reinaldo +Renato +Renzo +Rishi +Rito +Robby +Roel +Rufino +Sai +Salman +Samantha +Samer +Scotty +Serjio +Silvino +Stanton +Taha +Tam +Tavion +Teo +Terren +Thong +Tristyn +Tustin +Tyren +Uriah +Uvaldo +Victormanuel +Vincenzo +Vinny +Willem +Yoel +Yoseph +Zakery +Aamir +Adnan +Aj +Akeem +Akira +Al +Aleksandr +Alexei +Amen +Andranik +Andrey +Ankur +Anthonie +Anwar +Apolinar +Arcadio +Aries +Arin +Arlo +Asad +Ashish +Asim +Basilio +Baudelio +Baylee +Bernardino +Brandy +Brayton +Cameren +Canaan +Carey +Cash +Cayden +Cesareo +Chadwick +Chancellor +Che +Christiaan +Christianjames +Christon +Christoper +Christophe +Chrystian +Ciaran +Clement +Clifton +Codie +Constantino +Corin +Cortez +Courtland +Coy +Cristo +Cristoval +Cuahutemoc +Cyril +Daijon +Dajohn +Dajuan +Dalvin +Damani +Danielle +Darrius +Darryn +Deanthony +Deepak +Dejuan +Demetrious +Demitrius +Denver +Deondre +Derrell +Devonta +Dionicio +Donaldo +Donny +Edric +Eligio +Elihu +Emery +Emmet +Evin +Franz +Froilan +Garren +Gaston +Gaurav +Gideon +Giovannie +Gray +Gregor +Gurtej +Haig +Haik +Haley +Han +Hansel +Herson +Hosea +Hovsep +Ismail +Isrrael +Issa +Izaac +Jabril +Jacinto +Jacobo +Jacoby +Jameel +Jamir +Jarid +Jarret +Jarron +Jase +Jashua +Jasmin +Jasson +Jaycee +Jayke +Jayme +Jaysen +Jedediah +Jensen +Jeramy +Jeremias +Jeronimo +Jessee +Jhovany +Jihad +Jimi +Jjesus +Johny +Jomar +Jomari +Jordyn +Jorje +Josede +Justo +Kacey +Kalan +Karanveer +Karson +Kc +Keandre +Kee +Kendal +Keng +Kenrick +Kenton +Khaled +Kimani +King +Kobe +Konner +Krishan +Kunal +Kyrie +Laquan +Luisantonio +Luisfernando +Macario +Malek +Manolo +Marisol +Marley +Marquan +Marquese +Marqus +Martel +Mathieu +Mckinley +Micaiah +Mikhail +Misha +Mister +Mong +Montgomery +Nabor +Nam +Napoleon +Narciso +Nasser +Neel +Newton +Nickolaus +Nikita +Niklas +Nixon +Noa +Nolberto +Oshea +Osiel +Palmer +Pao +Philippe +Pranav +Prince +Quang +Quest +Rashawn +Reymond +Rich +Rickie +Robinson +Rocco +Rojelio +Rommel +Rondell +Rudolfo +Russel +Ryne +Sabas +Saige +Sameer +Sammuel +Sandro +Saulo +Seng +Shadi +Shemar +Sinjin +Sotero +Stacy +Tal +Taran +Taryn +Tevita +Tevon +Tien +Tigran +Timmothy +Timoteo +Tommie +Torin +Trae +Trenten +Tye +Tyquan +Tyre +Tyrik +Tyrique +Umar +Ventura +Viet +Vijay +Vivek +Wanya +Westin +Wilbert +Yee +Yobany +Yonah +Yosef +Young +Youssef +Yuta +Zain +Zaul +Zavier +Zeferino +Abdulrahman +Adham +Adryan +Akil +Aleck +Aleczander +Alejandra +Ameen +Anand +Andrez +Andru +Anh +Anish +Anson +Antone +Antwon +Arie +Aristotle +Arsenio +Atilano +Augusto +Aundre +Aureliano +Aydan +Ayinde +Baby +Babyboy +Barak +Bayley +Bayron +Belal +Benjamen +Bennie +Blade +Blayne +Bradon +Brain +Brenda +Brendyn +Brennon +Caelan +Cairo +Cal +Carlin +Carmelo +Case +Cesario +Chistian +Christ +Christain +Christan +Christen +Christien +Christin +Christoph +Cipriano +Cisco +Cj +Corban +Cornelio +Cortland +Cosme +Coty +Crisanto +Crystal +Curt +Cy +Cynthia +Daevon +Daichi +Dain +Damar +Damen +Danial +Danyal +Darek +Darell +Darron +Davit +Davontae +Delano +Delbert +Delon +Demian +Demond +Demonte +Deron +Derrik +Deshon +Dezmond +Diondre +Dirk +Domonick +Domonique +Donavin +Dondre +Donta +Dyllon +Edan +Edrick +Edsel +Edwing +Elbert +Eliott +Eliud +Elpidio +Emad +Emigdio +Emin +Emmanuelle +Emmitt +Enoc +Errick +Errol +Eryk +Estuardo +Eswin +Etienne +Eulalio +Favio +Ferdinand +Fernie +Fisher +Flabio +Fong +Ford +Fox +Francois +Gabriela +Gautam +Geary +Geno +Georges +Gerrit +Gianfranco +Graeme +Griffith +Gumaro +Hai +Hamid +Hamzah +Haris +Harman +Hazael +Heliodoro +Hendrik +Henrry +Herminio +Hezekiah +Higinio +Hovhannes +Humza +Hung +Idris +Jaccob +Jaciel +Jad +Jagger +Jahaziel +Jahlil +Jairus +Jajuan +Jalin +Jamarr +Jansen +Jarad +Jarrell +Jarren +Jarrid +Jasiel +Javin +Javion +Jawad +Jaylan +Jaymes +Jeancarlo +Jehu +Jens +Jeovanny +Jerel +Jereme +Jeremey +Jeric +Jerico +Jerimiah +Jerman +Jerold +Jeromy +Jeshua +Jessey +Jhonatan +Jhovanny +Jin +Joab +Jobani +Jobany +Johathan +Jonathen +Jonny +Joon +Joseandres +Josecarlos +Jossue +Journey +Jozef +Juandaniel +Jules +Julia +Jun +Justinmichael +Juston +Kaiden +Kale +Kalob +Kanyon +Karanvir +Karsten +Kaylon +Kayvon +Kean +Kenan +Kennith +Kento +Keonte +Keshon +Keyan +Khanh +Khristopher +Kia +Kiernan +Kijana +Koa +Kobie +Kodi +Krikor +Krystian +Kwame +Kyan +Kye +Kyron +Laine +Laith +Leif +Lennon +Lenny +Linus +Luka +Maceo +Mahad +Makai +Mandeep +Manpreet +Manraj +Marcellus +Marcelus +Marek +Mariana +Marin +Marino +Marlin +Marshal +Mayson +Melik +Merlin +Monica +Montrell +Musa +Naim +Nareg +Narek +Nate +Nathaneal +Neiman +Nels +Nhia +Nicklas +Nicodemus +Nile +Noble +Obadiah +Omero +Osmin +Patric +Patricio +Paulino +Perris +Presley +Prithvi +Quan +Race +Rahim +Rashaun +Rayce +Raymund +Raynard +Rees +Regan +Regino +Riku +Rishabh +Rocio +Rodger +Romar +Romero +Romulo +Ryker +Ryland +Ryon +Saeed +Said +Salim +Salome +Sandeep +Sarah +Serafin +Serge +Sevag +Sevan +Shad +Shahab +Shain +Shakur +Shamon +Shaquan +Sharif +Sheridan +Shervin +Silvio +Simran +Sixto +Slater +Stefen +Stetson +Sue +Sullivan +Sumeet +Sylas +Tad +Taron +Teng +Terell +Torrance +Torrey +Toua +Tracey +Travonte +Treshawn +Tri +Trystin +Tuan +Tyrin +Tyrrell +Tyshawn +Usman +Uziel +Valerio +Vartan +Vasilios +Vicent +Victoriano +Victorio +Vinay +Vinnie +Virgil +Vito +Walid +Wendell +Wendy +Wesly +Wilfred +Wolfgang +Yael +Yoni +Yousif +Yovanny +Yuji +Yusef +Zak +Zayd +Zeus +Zev +Ziad +Daniel +Michael +Jose +Anthony +David +Christopher +Andrew +Matthew +Jonathan +Jacob +Joshua +Joseph +Brandon +Nicholas +Christian +Kevin +Luis +Ryan +Juan +Alexander +Justin +Jesus +Austin +Tyler +John +Angel +James +Robert +Carlos +Brian +Eric +Kyle +William +Samuel +Alejandro +Miguel +Zachary +Gabriel +Aaron +Jordan +Jason +Steven +Alexis +Adrian +Benjamin +Bryan +Francisco +Richard +Oscar +Jorge +Jesse +Eduardo +Nathan +Victor +Ricardo +Thomas +Dylan +Adam +Noah +Antonio +Isaac +Fernando +Alex +Cameron +Sean +Isaiah +Mark +Manuel +Andres +Edgar +Cristian +Ivan +Sergio +Javier +Timothy +Cesar +Ethan +Julian +Mario +Diego +Omar +Hector +Jeremy +Edward +Roberto +Erik +Jared +Connor +Martin +Elijah +Nathaniel +Patrick +Evan +Cody +Marco +Jeffrey +Ruben +Charles +Erick +Raymond +Jack +Armando +Trevor +Vincent +Ian +Paul +Gerardo +Jake +Raul +Joel +Cole +Alberto +Pedro +Logan +Enrique +Kenneth +Nicolas +Alan +Dominic +George +Garrett +Henry +Rafael +Peter +Andy +Marcos +Devin +Caleb +Travis +Marcus +Salvador +Arturo +Blake +Abraham +Spencer +Jaime +Stephen +Edwin +Josue +Saul +Hunter +Julio +Scott +Chase +Gregory +Giovanni +Derek +Alfredo +Tristan +Frank +Gustavo +Tanner +Luke +Grant +Emmanuel +Jeremiah +Ernesto +Mason +Shane +Israel +Lucas +Sebastian +Johnny +Taylor +Bryce +Mitchell +Alec +Pablo +Bradley +Riley +Wyatt +Ramon +Elias +Danny +Xavier +Jimmy +Jackson +Albert +Fabian +Abel +Gavin +Guillermo +Moises +Brendan +Maxwell +Dakota +Andre +Seth +Calvin +Johnathan +Shawn +Ismael +Max +Brett +Dustin +Jerry +Esteban +Colin +Malik +Randy +Damian +Phillip +Chad +Dillon +Ronald +Devon +Wesley +Leonardo +Rodrigo +Liam +Hugo +Emilio +Alfonso +Arthur +Collin +Harrison +Rene +Steve +Mathew +Joe +Parker +Tony +Jonah +Lorenzo +Casey +Marc +Troy +Aidan +Dennis +Louis +Bailey +Eddie +Allen +Bryant +Noe +Ricky +Colton +Felipe +Osvaldo +Corey +Tommy +Jonathon +Mauricio +Marvin +Donovan +Roman +Rudy +Philip +Miles +Angelo +Clayton +Rogelio +Emanuel +Felix +Griffin +Keith +Dante +Drew +Rodolfo +Donald +Josiah +Cory +Conner +Gilbert +Gilberto +Nolan +Santiago +Hayden +Jessie +Vicente +Dalton +Douglas +Oliver +Chance +Jakob +Preston +Ramiro +Curtis +Skyler +Adan +Darren +Levi +Chris +Humberto +Lawrence +Derrick +Uriel +Noel +Simon +Freddy +Brent +Dominick +Micah +Tomas +Efrain +Gary +Kenny +Roger +Owen +Allan +Alvaro +Chandler +Trenton +Larry +Theodore +Agustin +Branden +Quinn +Carter +Issac +Morgan +Russell +Alvin +Ulises +Roy +Joaquin +Walter +Dean +Nickolas +Jay +Gage +Nikolas +Rigoberto +Trent +Kristopher +Darius +Marlon +Ignacio +Brenden +Ezequiel +Joey +Orlando +Aldo +Billy +German +Zackary +Adolfo +Nelson +Brady +Brennan +Eli +Estevan +Mike +Leonel +Byron +Charlie +Gonzalo +Myles +Quentin +Ty +Damien +Octavio +Drake +Kristian +Lance +Ali +Tristen +Avery +Carson +Cooper +Irvin +Misael +Isaias +Jairo +Nestor +Kaleb +Micheal +Bobby +Leo +Moses +Alonzo +Dallas +Jayson +Rolando +Colby +Alonso +Ariel +Bernardo +Craig +Kameron +Conor +Cruz +Ezekiel +Kai +Landon +Mateo +Sam +Zachariah +Braden +Dominique +Justice +Damon +Davis +Isiah +Jeffery +Efren +Jovanny +Kody +Ray +Ronaldo +Carl +Neil +Ulysses +Eugene +Gerald +Jarod +Jon +Kelvin +Maurice +Alexandro +Johnathon +Zane +Alfred +Deandre +Duncan +Frankie +Cristopher +Desmond +Sage +Terry +Brendon +Franklin +Giovanny +Melvin +Rodney +Bruce +Fidel +Lukas +Raymundo +Zachery +Marshall +Cedric +Ernest +Guadalupe +Malcolm +Dane +Elmer +Francis +Randall +Ronnie +Stanley +Bryson +Keenan +Weston +Kyler +Glenn +Heriberto +Romeo +Shaun +Edgardo +Eliseo +Emiliano +Leon +Maximilian +Maximiliano +Oswaldo +Todd +Valentin +Amir +Aron +Elliot +Ezra +Jamal +Marquis +Santos +Solomon +Brayan +Brock +Isai +Jalen +Julius +Ralph +Skylar +Cyrus +Darian +Isidro +Trevon +Warren +Ashton +Benito +Keven +Leonard +Miguelangel +Mohammad +Reed +Stephan +Zackery +Arnold +Elvis +Frederick +Genaro +Gregorio +Keaton +Mohammed +Sammy +Cristobal +Dario +Garret +Grayson +Jarred +Jarrett +Jonas +Malachi +Markanthony +Nathanael +Reginald +River +Trey +Willie +Austen +Harry +Joseluis +Louie +Arman +Deven +Kendrick +Stefan +Wilson +Antony +Jamie +Kurt +Lane +Gianni +Junior +Peyton +Deshawn +Dorian +Everett +Kobe +Lee +Reynaldo +Tristin +Demetrius +Forrest +Geovanni +Jefferson +Khalil +Quincy +Ross +Sterling +Terrance +Axel +Fred +Harley +Karl +Darrell +Fredy +Gino +Jasper +Osbaldo +Terrell +Ahmad +Braulio +Brody +Marcoantonio +Milton +Quinton +Tucker +Wayne +Antoine +Ben +Benny +Darryl +Howard +Irving +Jace +Jovany +Triston +Carlo +Clay +Dan +Harold +Jerome +Marcelo +Markus +Rohan +Tyrone +Beau +Devan +Geoffrey +Jacky +Jovani +Keegan +Kendall +Kirk +Norman +Quintin +Tyson +Bennett +Bruno +Devante +Elliott +Everardo +Freddie +Graham +Hernan +Jovan +Kent +Marcel +Mariano +Marquise +Raphael +Rick +Rory +Terrence +Tyree +Walker +Cade +Dion +Giovani +Jordon +Ken +Arnulfo +Brayden +Clifford +Deon +Gordon +Jovanni +Juancarlos +Kurtis +Maximillian +Pierce +Reid +Corbin +Ernie +Jarrod +Jayden +Roland +Ahmed +Dale +Dangelo +Edson +Federico +Julien +Robin +Tylor +Brad +Eriberto +Jaron +Nigel +Sidney +Adrien +Armand +Claudio +Coleman +Conrad +Darin +Devonte +Kelly +Nico +Reece +Reuben +Shea +Stuart +Sunny +Wade +Dejon +Donte +Dwayne +Eddy +Holden +Kennedy +Kian +Lisandro +Luisangel +Mohamed +Sheldon +Augustine +Bill +Caden +Davion +Denzel +Favian +Jackie +Jessy +Keanu +Marcelino +Orion +Samir +Sawyer +Sonny +Will +Winston +Abram +August +Bernard +Brennen +Clinton +Devyn +Don +Fermin +Flavio +Jeff +Jonatan +Kristofer +Lewis +Rashad +Rey +Shannon +Alexandre +Andreas +Darnell +Davon +Harvey +Jim +Johnnie +Mitchel +Nick +Rickey +Roderick +Barry +Clarence +Daryl +Earl +Elisha +Ellis +Erwin +Gunnar +Isaak +Jaylen +Johan +Kareem +Kieran +Mackenzie +Marques +Reyes +Santino +Toby +Vladimir +Bret +Darwin +Davin +Deangelo +Guy +Hassan +Herman +Kaden +Kasey +Luciano +Mauro +Nathen +Nikhil +Rahul +Tobias +Tom +Aiden +Alessandro +Armani +Clark +Damion +Denny +Derick +Edmund +Gerson +Horacio +Josh +Juwan +Kellen +Leopoldo +Luiz +Matteo +Sahil +Zechariah +Blaine +Brice +Ceasar +Domingo +Dominik +Fausto +Garett +Gene +Kory +Lucio +Neal +Payton +Rocky +Samson +Tate +Tevin +Tristian +Vidal +Abelardo +Adalberto +Addison +Anton +Arjun +Asher +Aurelio +Coby +Dashawn +Deion +Deonte +Dwight +Franco +Geovanny +Geovany +Glen +Ibrahim +Isac +Jaden +Jermaine +Jorden +Jordi +Juvenal +Kade +Korey +Loren +Stone +Talon +Tyrell +Ulices +Wilfredo +Ari +Aric +Braxton +Brooks +Caesar +Camilo +Erin +Giancarlo +Hans +Herbert +Immanuel +Izaiah +Javon +Josef +Justyn +Khalid +Koby +Leobardo +Leroy +Milan +Niko +Paolo +Rex +Reymundo +Tre +Ubaldo +Abdul +Aditya +Amari +Arnoldo +Arron +Brando +Chaz +Darien +Dimitri +Donavan +Duane +Eleazar +Filiberto +Galen +Greyson +Jean +Jerrod +Justus +Kane +Killian +Lamar +Lionel +Luc +Mohamad +Mustafa +Nikko +Paulo +Perry +Pete +Pierre +Reilly +Shayan +Stephon +Terence +Trever +Adonis +Akash +Armon +Braeden +Cuauhtemoc +Cullen +Darrius +Elton +Emmett +Jair +Jelani +Joan +Johnson +Joseantonio +Lloyd +Reese +Ron +Sami +Silvestre +Trinidad +Trystan +Valentino +Wilmer +Abner +Abran +Adriel +Ajay +Alek +Alexi +Anderson +Aram +Austyn +Baltazar +Brandyn +Bryon +Clemente +Darion +Darrin +Eden +Eloy +Enzo +Ervin +Esai +Geovani +Jabari +Jaycob +Jimmie +Keshawn +Layne +Lester +Lonnie +Marcello +Maverick +Nathanial +Paris +Phoenix +Rico +Romario +Salomon +Tariq +Ulisses +Vance +Aldair +Aren +Bijan +Brenton +Cordell +Dana +Darrion +Eliot +Eugenio +Greg +Hilario +Isacc +Jadon +Jerod +Jessica +Jordy +Joseangel +Kalvin +Kenji +Laurence +Mikel +Milo +Muhammad +Quinten +Ramses +Renato +Rhett +Travon +Van +Varun +Abdiel +Armen +Bilal +Clifton +Cristofer +Daquan +Destin +Dexter +Eder +Edmundo +Elan +Eliezer +Emerson +Garrison +Hudson +Jamison +Jaylon +Jess +Johnpaul +Josemanuel +Leslie +Nehemiah +Nicklaus +Obed +Omid +Rami +Rosendo +Schuyler +Semaj +Silas +Ted +Trace +Vincente +Yovani +Abrahan +Alden +Alexzander +Arik +Barrett +Carlton +Dillan +Domenic +Donnie +Duke +Dylon +Edmond +Enoch +Erich +Esequiel +Ever +Florentino +Grady +Hamza +Hasan +Hugh +Huy +Jade +Jaquan +Jennifer +Jerardo +Judah +Kahlil +Kolby +Kong +Lincoln +Lyle +Manny +Marcanthony +Matias +Maxim +Michel +Mickey +Neel +Osman +Randolph +Reagan +Rowan +Ryder +Rylan +Santana +Seamus +Shayne +Shelby +Simeon +Sky +Soren +Stephanie +Titus +Trayvon +Vernon +Vince +Vincenzo +Zakary +Blair +Broderick +Bronson +Callum +Camden +Camron +Clint +Colten +Dajon +Danniel +Dave +Daylen +Demetri +Edwardo +Fabio +Franky +Hieu +Ishmael +Jamar +Jameson +Jarett +Jaylin +Jensen +Jeromy +Josedejesus +Karim +Kole +Leland +Levon +Marquez +Michaelangelo +Nash +Nikolai +Nima +Norberto +Prince +Ramsey +Richie +Rony +Servando +Spenser +Tim +Tracy +Tyus +Yonatan +Abdullah +Akshay +Anson +Antwan +Arvin +Arya +Asa +Brandan +Celso +Cisco +Courtney +Dandre +Daren +Darrian +Dayton +Edgard +Forest +Fredrick +Gabino +Gareth +Gevork +Gian +Gil +Hank +Hiram +Isael +Jamari +Jamil +Jeronimo +Jerrick +Lamont +Luca +Lucky +Madison +Matt +Omari +Raffi +Roque +Shiloh +Timmy +Willem +Willy +Young +Alain +Amador +Angus +Artemio +Augustus +Auston +Bo +Chasen +Clyde +Colt +Darrel +Derik +Dillion +Dyllan +Elvin +Evander +Faustino +Floyd +Fransisco +Fredi +Griffen +Hagop +Hakeem +Jacobo +Jamel +Jered +Job +Juanjose +Kamran +Kenan +Kenton +Kerry +Khari +Kris +Kristoffer +Lars +London +Maria +Mckay +Mikael +Minh +Natanael +Neftali +Nicholaus +Nikolaus +Otto +Pranav +Raven +Raymon +Refugio +Remington +Rohit +Rudolph +Rueben +Sarkis +Sebastien +Shivam +Stevie +Tarik +Thaddeus +Uriah +Westin +Westley +Yousef +Zack +Aleksander +Alijah +Alton +Amado +Aman +Anders +Aryan +Ashwin +Baylee +Bishop +Bladimir +Bradly +Canaan +Chauncey +Chester +Christofer +Clement +Coleton +Cyle +Dajuan +Danilo +Darrien +Davonte +Dawson +Declan +Deondre +Dino +Domenico +Eamon +Emil +Eriq +Gamaliel +Ger +Gerard +Giovany +Gunner +Gus +Harris +Irwin +Jan +Jaret +Javan +Javin +Jerimiah +Jerson +Jihad +Jonathen +Jordyn +Jossue +Kalani +Kamron +Kelton +Keoni +Kevyn +Kiefer +Kolton +Landen +Lino +Marius +Markel +Maxx +Morris +Moshe +Nevin +Parth +Patric +Ravi +Rayshawn +Remy +Rigo +Robby +Rommel +Royce +Ryley +Samer +Sherman +Sione +Syed +Tayler +Tobin +Torin +Valentine +Vanessa +Vaughn +Vishal +Wiley +Yash +Yobani +Zaid +Alejandra +Amar +Amer +Amit +Andrei +Ara +Ashley +Avi +Bee +Bowen +Bradford +Brandin +Brandt +Broc +Buddy +Cain +Canyon +Conrado +Cristo +Dallin +Daron +Demetrio +Dereck +Derian +Deric +Deshaun +Donaven +Donavon +Dru +Eduard +Ely +Fabricio +Faris +Francesco +Geronimo +Harjot +Heber +Henri +Indiana +Isreal +Jaspreet +Jaycee +Jerad +Jerald +Jeremias +Jessi +Joesph +Johnmichael +Justen +Kaelin +Kale +Kayvon +Keandre +Keelan +Kenyon +Khang +Kishan +Kylan +Lazaro +Leandro +Lemuel +Livan +Malcom +Maleek +Marcell +Marko +Marshawn +Maximo +Monte +Montgomery +Myron +Narek +Navid +Noam +Oren +Oskar +Porfirio +Quinlan +Rashaad +Reggie +Reno +Robbie +Romello +Ronan +Roosevelt +Rosalio +Royal +Rylee +Salvatore +Sandeep +Shay +Skye +Taj +Thai +Treyvon +Truman +Tyrin +Ulyses +Uziel +Valente +Vikram +Vinay +Wilfrido +Zain +Zion +Adel +Adin +Akhil +Alfonzo +Amani +Amilcar +An +Anibal +Argenis +Aria +Arin +Armond +Asael +Asante +Atticus +Aubrey +Benson +Blaise +Blas +Blaze +Boris +Boston +Bradlee +Brannon +Brennon +Britton +Camren +Cannon +Cary +Case +Cecilio +Celestino +Dakoda +Dakotah +Deante +Deron +Desi +Dewayne +Diamond +Dijon +Dionicio +Draven +Easton +Edan +Elder +Eliazar +Esau +Esteven +Garrick +Giorgio +Hakop +Harman +Hussein +Iain +Ilan +Ira +Ismail +Issa +Izaak +Jacques +Jasen +Javonte +Jericho +Jessee +Jhonatan +Jhonny +Jhovany +Johnatan +Jonnathan +Jude +Juventino +Kacey +Kaelan +Keyshawn +Kodi +Konnor +Krishna +Latrell +Lavell +Mac +Marcellus +Marquel +Marshal +Mathieu +Maximino +Michaelanthony +Mitch +Mynor +Nery +Nicolaus +Niklas +Niles +Nino +Ocean +Osiel +Pascual +Paulino +Raudel +Rayce +Rhys +Rickie +Rocio +Rojelio +Ronny +Ryne +Sameer +Samual +Sasha +Shaan +Shant +Sharif +Shiv +Stewart +Sydney +Sylvester +Teddy +Theo +Tou +Unknown +Vinh +Wilbert +Yosef +Yusuf +Zacary +Zaire +Abhinav +Abhishek +Alecsander +Alen +Alexys +Alphonso +Amadeus +Ameer +Andrey +Andru +Anfernee +Asad +Augustin +Aydin +Baby +Baron +Benedict +Bennie +Bernabe +Bodie +Brant +Brycen +Caelan +Candelario +Carmelo +Carnell +Cash +Cecil +Cedrick +Chadwick +Chancellor +Chazz +Che +Cheyne +Claude +Conan +Cornelius +Dagoberto +Daven +Daveon +Dax +Daylan +Daylon +Dayne +Demarcus +Demitri +Deshon +Dimas +Dmitri +Domonic +Donnell +Dustyn +Edison +Eitan +Elio +Elizabeth +Enrico +Eros +Esdras +Feliciano +Ford +Gaspar +Gerry +Gildardo +Heath +Issiah +Jacqueline +Jajuan +Jameel +Jamir +Jaxon +Jayvon +Jed +Jefferey +Jeramiah +Jiovanni +Johann +Johnanthony +Johny +Jonny +Joshue +Juandaniel +Kalen +Kamal +Karan +Keenen +Kelby +Keshav +Khristian +Kirby +Kobi +Kohl +Leighton +Lejon +Lenin +Long +Malique +Marcial +Mathias +Matthias +Maxfield +Maynor +Michelle +Migel +Modesto +Montana +Mykal +Nickolaus +Nicky +Nikola +Noble +Osmar +Paxton +Rajan +Rashawn +Rosario +Rufus +Sabino +Sandro +Sanjay +Sayed +Serafin +Sherwin +Stevan +Tai +Taran +Tejas +Thor +Timmothy +Torrey +Tory +Trevin +Turner +Vivek +Williams +Yael +Yair +Yuri +Zuriel +Adarsh +Alejo +Amin +Amos +Ana +Anand +Anastacio +Andruw +Anish +Anselmo +Antone +Arcadio +Arian +Aries +Armin +Arun +Ayden +Baily +Blayne +Bob +Braedon +Branson +Crystian +Daijon +Dajour +Daman +Damonte +Darrick +Darron +Dashiell +Davey +Davy +Delfino +Demarco +Derrik +Desean +Devaughn +Devion +Diana +Dionisio +Dmitriy +Donato +Donny +Dontae +Drue +Dusty +Emani +Emory +Ephraim +Erasmo +Eusebio +Evaristo +Evin +Favio +Florencio +Fong +Froylan +Gannon +Garet +Gavino +Genesis +Gianfranco +Gideon +Giuseppe +Griffith +Grigor +Gurpreet +Hamilton +Hasani +Houston +Jad +Jaelin +Jafet +Jayce +Jeanpierre +Jeovany +Jermiah +Jett +Jjesus +Joeseph +Johannes +Johnathen +Jordin +Joshuah +Juanantonio +Juandedios +Juanluis +Juliocesar +Kadin +Karson +Karsten +Kedar +Kennith +Kentaro +Keon +Kevan +Keyon +Khaled +Kiran +Kunal +Lafayette +Langston +Lauren +Leopold +Luan +Luigi +Luisalberto +Luisenrique +Makai +Manpreet +Marion +Marley +Maurisio +Menachem +Meng +Mikal +Nabeel +Nader +Nicholes +Nicklas +Nils +Otis +Patricio +Presley +Raj +Raleigh +Rio +Ritchie +Rod +Rodrick +Ryon +Sai +Salim +Saxon +Shai +Shakur +Shmuel +Sina +Stefano +Sven +Takumi +Tal +Tarek +Teodoro +Tevita +Theron +Thien +Tien +Tiger +Tommie +Trae +Tye +Umar +Val +Virgil +Wilbur +Xzavier +Zacarias +Zayd +Aamir +Aayush +Abdulrahman +Abiel +Abisai +Akira +Alexsander +Alon +Amando +Ammon +Andranik +Ansel +Antoni +Antwon +Aris +Armondo +Arnel +Arsen +Art +Artur +Avelardo +Bayley +Bennet +Benton +Bjorn +Blade +Bodhi +Braydon +Brenner +Brevin +Brien +Brockton +Brodie +Burton +Campbell +Carey +Carlito +Cassius +Cayden +Chantz +Chayton +Cheng +Cheyenne +Chidi +Christan +Christiaan +Christoper +Cirilo +Cormac +Cornelio +Cortland +Coy +Cristhian +Curran +Dakari +Damani +Dameon +Danial +Deanthony +Dejohn +Dejuan +Demetrios +Demian +Demond +Demonte +Dequan +Devlin +Dezmond +Dilan +Domenick +Dominque +Donovin +Dontay +Dyllon +Earnest +Elden +Eldon +Eliasar +Emile +Emmet +Enmanuel +Estefan +Eulalio +Exavier +Faisal +Farid +Finn +Fletcher +Fortino +Gagandeep +Garen +Garland +Garry +Gaston +Geraldo +Gianluca +Giovannie +Giovonni +Gorge +Gurjot +Hakim +Hanson +Harout +Hayes +Henderson +Hezekiah +Hiroki +Hoang +Ildefonso +Ilya +Imran +Isaih +Ishan +Izaac +Jacinto +Jamaal +Jansen +Jaren +Jarvis +Jashawn +Jasmine +Jayro +Jeanclaude +Jeovanny +Jerel +Jestin +Jonte +Joon +Josealberto +Josemaria +Josias +Jovon +Jozef +Jr +Juanito +Juanmanuel +Jullian +Jun +Justo +Kalil +Kalob +Kamari +Kamren +Kanoa +Karla +Karlo +Karthik +Keagan +Kegan +Kelley +Kelsey +Kenta +Kerwin +Kiel +Kiernan +King +Kingston +Kodiak +Kou +Kye +Lamonte +Lavonte +Lazarus +Leif +Lizandro +Lucero +Lucien +Luisfernando +Luka +Lyndon +Macario +Magnus +Maison +Majid +Margarito +Markell +Marque +Maurilio +Michal +Mika +Milad +Missael +Mykel +Najee +Nam +Narciso +Neftaly +Nihar +Nixon +Nolberto +Nyle +Omer +Oracio +Oswald +Otoniel +Page +Pascal +Porter +Rahsaan +Randal +Rayjon +Rayvon +Raziel +Regino +Rian +Richmond +Rishi +Rocco +Rubin +Rufino +Rusty +Saad +Sabastian +Sachin +Said +Saleem +Saleh +Salem +Samantha +Sedrick +Sevag +Shakir +Shamar +Shelton +Shomari +Shon +Simran +Socrates +Storm +Suraj +Taha +Tahj +Talha +Tallon +Taron +Terrel +Tin +Tonatiuh +Travion +Trevaughn +Trysten +Tyren +Tyron +Tyrus +Viet +Vittorio +Waldo +Wilber +Yeng +Yisroel +Zacharia +Zackariah +Zarek +Zayne +Aakash +Able +Ace +Adil +Adnan +Adriano +Aedan +Ajani +Akil +Al +Alante +Alanzo +Albino +Aleksandr +Alessio +Alexey +Alexsis +Alias +Alize +Alverto +Alyssa +Amadeo +Ammar +Andersen +Andrea +Andrez +Andrue +Angelica +Anh +Anil +Anirudh +Anjel +Ankur +Anthoni +Antwoine +Aramis +Arash +Arie +Arnie +Ashkan +Avetis +Avinash +Avrohom +Ayman +Ayrton +Barrington +Beck +Bernardino +Bernie +Bonifacio +Bradon +Brandy +Brenten +Brigham +Burke +Buster +Calen +Callan +Calum +Carmen +Casper +Cassidy +Cayman +Chace +Chai +Charly +Chistian +Christion +Cian +Ciaran +Cobi +Codie +Constantino +Cornell +Cosmo +Courtland +Crispin +Cutler +Cy +Cynthia +Daejon +Daisy +Dalvin +Danthony +Dara +Darran +Darryn +Davian +Davit +Daymon +Delano +Dempsey +Denis +Derion +Derrek +Derron +Devonta +Dietrich +Diondre +Dmorea +Domonique +Donavin +Eber +Edilberto +Edmar +Edric +Eian +Elbert +Elijiah +Elisandro +Elpidio +Elyjah +Eman +Emmitt +Ennis +Enoc +Eoin +Ernan +Esmeralda +Estuardo +Etienne +Fahad +Fahim +Farris +Ferdinand +Fidencio +Fox +Franciscojavier +Franz +Frederic +Gabrial +Gabriela +Gaige +Garth +Gavyn +Giacomo +Gregg +Greggory +Hardeep +Harpreet +Heladio +Henrik +Hernesto +Hogan +Homero +Hovannes +Hung +Ilias +Iran +Irvine +Isa +Isidoro +Isrrael +Ivory +Izak +Jacari +Jae +Jaelen +Jahaziel +Jahi +Jai +Jamon +Jarek +Jarom +Jasdeep +Jase +Jaskaran +Jasmin +Jasson +Jax +Jaxson +Jaydon +Jayme +Jaymes +Jayshawn +Jaziel +Jazz +Jc +Jedd +Jeffry +Jerell +Jeric +Jerrell +Jerron +Jesusantonio +Jezreel +Jguadalupe +Joao +Jomar +Josealfredo +Joseeduardo +Juanpablo +Justino +Kabir +Kain +Kaine +Kaito +Kalin +Karen +Karina +Kaveh +Kavin +Kawika +Kayden +Kc +Keane +Keion +Keishawn +Kekoa +Keron +Keshon +Khaleel +Khristopher +Khyle +Kimani +Kimo +Klayton +Kobie +Kollin +Kongmeng +Konner +Konrad +Kyan +Kyree +Lakota +Lauro +Legend +Lennon +Leoncio +Linus +Luisantonio +Lynn +Maclean +Mahlon +Mahmoud +Manolo +Manveer +Manvir +Markos +Marlo +Marquice +Martel +Massimo +Matthewjoseph +Matthieu +Maximillan +Mckenzie +Mehdi +Melchor +Melissa +Mervin +Messiah +Michelangelo +Mikey +Mikie +Mikkel +Miko +Mizael +Mohit +Montel +Mychael +Nahum +Nakia +Napoleon +Nathon +Naveen +Nazaret +Nicanor +Nicco +Nicolaas +Nicolai +Nikita +Nile +Norris +Octavian +Odin +Odis +Omeed +Osiris +Ozzy +Parsa +Pheng +Phil +Pieter +Prashant +Quan +Quenton +Rachel +Raghav +Randon +Rashaun +Rasheed +Rashid +Renee +Renzo +Ridge +Rito +Roel +Romelo +Ronell +Roshan +Russel +Ryanchristopher +Ryland +Ryo +Sadiq +Saeed +Salman +Saulo +Scottie +Seanmichael +Sergey +Sesar +Sevan +Shad +Shadi +Shaheen +Shan +Shemar +Sheridan +Shilo +Shimon +Sid +Silverio +Slade +Slater +Sou +Stacey +Steele +Steffen +Tannor +Teo +Theophilus +Timoteo +Tino +Tito +Treshawn +Treven +Tristain +Tryston +Tuan +Tylar +Tyrek +Tyrique +Tyshawn +Victormanuel +Vineet +Vinson +Viraj +Vito +Waleed +Wallace +Warner +Wilfred +Wilton +Xander +Yahya +Yared +Yoel +Yonathan +Yovany +Yusef +Yvan +Zahid +Zakery +Zeferino +Zeke +Zong +Daniel +Jose +Michael +Anthony +Jacob +David +Matthew +Andrew +Christopher +Joshua +Jonathan +Joseph +Nicholas +Brandon +Ryan +Juan +Christian +Luis +Kevin +Alexander +Justin +Angel +Jesus +Tyler +Robert +John +Carlos +Adrian +James +Kyle +William +Gabriel +Eric +Austin +Brian +Samuel +Alejandro +Jason +Miguel +Zachary +Aaron +Jordan +Noah +Nathan +Bryan +Dylan +Steven +Jorge +Benjamin +Oscar +Richard +Victor +Ricardo +Cameron +Isaac +Thomas +Francisco +Eduardo +Isaiah +Adam +Jesse +Ethan +Antonio +Sean +Manuel +Alex +Alexis +Cristian +Mark +Fernando +Andres +Cesar +Sergio +Ivan +Nathaniel +Edgar +Elijah +Jack +Javier +Jared +Julian +Omar +Diego +Timothy +Connor +Mario +Hector +Trevor +Roberto +Jeremy +Charles +Raymond +Hunter +Erik +Ruben +Evan +Vincent +Ian +Edward +Gerardo +Cody +Martin +Patrick +Nicolas +Spencer +Joel +Pedro +Armando +Erick +Paul +Marco +Cole +Caleb +Kenneth +Alan +Henry +Jake +Andy +Devin +Jeffrey +Raul +Enrique +Alberto +Dominic +Jaime +Peter +George +Garrett +Chase +Rafael +Abraham +Marcus +Logan +Edwin +Giovanni +Blake +Luke +Derek +Leonardo +Marcos +Salvador +Mason +Stephen +Josue +Arturo +Julio +Jeremiah +Lucas +Israel +Tristan +Alec +Frank +Bryce +Emmanuel +Gustavo +Alfredo +Tanner +Travis +Jackson +Xavier +Sebastian +Saul +Gregory +Ernesto +Ramon +Wyatt +Maxwell +Moises +Seth +Shane +Johnny +Riley +Bradley +Scott +Gavin +Elias +Pablo +Grant +Max +Mitchell +Brendan +Guillermo +Taylor +Esteban +Danny +Shawn +Johnathan +Albert +Damian +Ismael +Dakota +Fabian +Aidan +Liam +Andre +Devon +Jakob +Phillip +Abel +Jimmy +Colin +Dillon +Dustin +Mathew +Hugo +Harrison +Steve +Emilio +Parker +Jerry +Brett +Rene +Arthur +Marc +Miles +Roman +Alfonso +Randy +Wesley +Casey +Lorenzo +Corey +Malik +Calvin +Colton +Rodolfo +Josiah +Angelo +Owen +Bryant +Eddie +Rodrigo +Collin +Chad +Joe +Dante +Troy +Gilberto +Jonah +Louis +Felipe +Gilbert +Ronald +Donovan +Jonathon +Bailey +Osvaldo +Tony +Keith +Hayden +Allen +Mauricio +Rogelio +Ulises +Clayton +Santiago +Cory +Dalton +Conner +Tommy +Emanuel +Griffin +Dennis +Nolan +Noe +Rudy +Efrain +Felix +Philip +Simon +Chris +Lawrence +Ramiro +Ricky +Marvin +Micah +Drew +Uriel +Oliver +Alvaro +Nikolas +Derrick +Chandler +Donald +Gary +Carson +Darius +Roger +Brenden +Chance +Issac +Jessie +Nickolas +Joaquin +Moses +Curtis +Skyler +Gage +Kristopher +Humberto +Levi +Adan +Ronaldo +Agustin +Darren +Douglas +Myles +Vicente +Damien +Kobe +Leonel +Trent +Brent +Dawson +Isaias +Kaleb +Eli +Preston +Jarod +Dominick +Ignacio +Rigoberto +Adolfo +Charlie +Cooper +Carter +Tomas +Branden +Dean +Theodore +Alvin +Joey +Kenny +Trenton +Walter +Zackary +Larry +Mike +Noel +Allan +Ariel +Jayson +Conor +Freddy +Morgan +Leo +Mateo +Tristen +Aldo +Carl +Roy +Brennan +Orlando +Kameron +Kristian +Rolando +Russell +Bobby +Colby +Ulysses +Zachariah +Billy +Estevan +Zane +Brady +Bruce +Cade +German +Jalen +Quinn +Marlon +Quentin +Alonso +Ezekiel +Ezequiel +Jay +Nelson +Maurice +Zachery +Kelvin +Damon +Nestor +Alonzo +Avery +Kai +Brendon +Drake +Lance +Ali +Irvin +Cyrus +Davis +Jon +Lukas +Byron +Dallas +Sam +Alfred +Kyler +Miguelangel +Bernardo +Octavio +Ray +Leonard +Franklin +Gonzalo +Micheal +Ty +Cruz +Jairo +Darian +Ezra +Leon +Malcolm +Misael +Fidel +Frederick +Jeffery +Landon +Dane +Raymundo +Shaun +Justice +Ahmad +Arnold +Giovanny +Maximilian +Terrell +Trey +Brock +Louie +Neil +Amir +Elliot +Jaylen +Keegan +Kody +Brayan +Craig +Cristopher +Efren +Frankie +Randall +Rodney +Romeo +Bryson +Corbin +Isiah +Jaden +Nathanael +Ronnie +Santos +Beau +Deandre +Elvis +Lee +Braden +Gianni +Orion +Desmond +Guadalupe +Jarrod +Skylar +Benny +Braulio +Glenn +Joseluis +Terry +Weston +Aiden +Brayden +Elmer +Jerome +Johnathon +Mohamed +Solomon +Alexandro +Gerald +Jasper +Jayden +Reed +Tristin +Axel +Gregorio +Marshall +Oswaldo +Stanley +Tucker +Wilson +Ashton +Graham +Grayson +Jovany +Juancarlos +Mohammad +Sage +Todd +Emiliano +Isai +Ralph +Tyson +Wade +Cristobal +Duncan +Maximillian +Sawyer +Antony +Brody +Clay +Conrad +Eugene +Jarrett +Keaton +Kent +Keven +Malachi +Marquis +Mohammed +Osbaldo +Tyree +Alessandro +Ernest +Everett +Heriberto +Jamie +Zackery +Aron +Francis +Julius +Marcel +River +Dan +Dario +Deshawn +Devan +Eliseo +Genaro +Isidro +Jovanny +Karl +Sterling +Caden +Elliott +Harry +Junior +Khalil +Melvin +Quinton +Reginald +Sonny +Stefan +Tobias +Aldair +Arman +Garret +Hernan +Jarred +Jovani +Maximiliano +Reece +Reynaldo +Trevon +Tyrone +Valentin +Damion +Derick +Giovani +Johan +Bennett +Demetrius +Edgardo +Forrest +Jamal +Kelly +Ross +Terrance +Wayne +Dangelo +Darryl +Julien +Leopoldo +Marcelo +Payton +Peyton +Raphael +Warren +Dorian +Giancarlo +Gordon +Holden +Kellen +Lane +Luiz +Quincy +Willie +Dominique +Jace +Jermaine +Jordi +Jovan +Leobardo +Lewis +Markus +Robin +Rory +Will +Ben +Benito +Harold +Jonas +Luisangel +Norman +Rohan +Armani +Cedric +Darrell +Davion +Dimitri +Dion +Jovanni +Mariano +Nick +Rick +Camden +Everardo +Harley +Jim +Jordon +Kendall +Kieran +Lisandro +Marquise +Quintin +Reid +Terrence +Vladimir +August +Camron +Deven +Izaiah +Nikhil +Sammy +Stephan +Antoine +Davon +Declan +Federico +Geovanni +Josef +Ken +Kurt +Pierce +Rey +Amari +Brennen +Ceasar +Dale +Earl +Geoffrey +Geovanny +Gino +Howard +Jackie +Javon +Koby +Nathanial +Reese +Roland +Triston +Walker +Andreas +Aurelio +Darien +Fredy +Horacio +Jacky +Kaden +Kurtis +Niko +Royce +Toby +Winston +Addison +Anton +Ari +Arjun +Austen +Clarence +Eleazar +Favian +Jefferson +Kade +Markanthony +Shayne +Carlo +Coby +Donte +Gunnar +Irving +Jordy +Kendrick +Kory +Luca +Milton +Sahil +Stone +Claudio +Edson +Elisha +Fred +Jaron +Kane +Keanu +Kian +Lionel +Lucio +Marcoantonio +Nigel +Pete +Ryder +Semaj +Tom +Tylor +Zion +Abelardo +Asher +Austyn +Brando +Brice +Clark +Clinton +Coleman +Freddie +Garett +Guy +Hassan +Jonatan +Kennedy +Rahul +Rashad +Sheldon +Sidney +Ahmed +Armand +Augustine +Blaine +Brad +Darion +Darwin +Don +Flavio +Hudson +Ibrahim +Josh +Justyn +Kirk +Luciano +Muhammad +Rosendo +Terence +Adonis +Bill +Braxton +Darnell +Daryl +Dejon +Deondre +Eloy +Fredrick +Hugh +Jaret +Kareem +Keenan +Nico +Pierre +Reuben +Rocky +Shant +Stuart +Taj +Tristian +Bernard +Denzel +Devyn +Donavan +Enzo +Ernie +Isac +Jaycob +Jeff +Lamar +Marcelino +Matteo +Mauro +Neal +Rylan +Tiger +Valentino +Zain +Abram +Bradly +Brandyn +Dexter +Domenic +Emerson +Erwin +Filiberto +Garrison +Gerard +Gerson +Gil +Glen +Jelani +Jorden +Marcanthony +Milo +Quinten +Samir +Santino +Tate +Trever +Vince +Abdullah +Alexandre +Baltazar +Bladimir +Braeden +Brenton +Bruno +Davonte +Deon +Elvin +Herbert +Herman +Isaak +Isacc +Justus +Kenji +Kristofer +Marquez +Milan +Rex +Turner +Vance +Adalberto +Adriel +Angus +Clemente +Clifford +Cordell +Cullen +Dereck +Devonte +Dwayne +Ellis +Eriberto +Gene +Greg +Hans +Jair +Jean +Jerod +Johann +Khalid +Nash +Nathen +Nicklaus +Ramsey +Raven +Sarkis +Tariq +Titus +Trinidad +Wilfredo +Abner +Aditya +Adrien +Aric +Arnoldo +Arnulfo +Boris +Colten +Cristofer +Darin +Dillan +Dominik +Fausto +Fermin +Hamza +Jadon +Jarett +Johnson +Kalvin +Kenyon +Lazaro +Leland +Maverick +Paris +Remy +Samson +Shannon +Shea +Shivam +Ulyses +Yusuf +Alden +Alek +Bret +Chasen +Dwight +Eddy +Edmundo +Edwardo +Esai +Franco +Jaylin +Jessi +Johnpaul +Juwan +Kamron +Korey +Lino +Marcell +Mathias +Mekhi +Mitchel +Natanael +Nehemiah +Omari +Perry +Reyes +Richie +Salomon +Shay +Thaddeus +Tyrell +Vaughn +Vernon +Zakary +Anderson +Asa +Caesar +Dallin +Darrin +Denilson +Deonte +Edmond +Edmund +Erin +Geronimo +Jamil +Jaylon +Jeramiah +Jett +Johnnie +Josedejesus +Josemanuel +Juanjose +Juanpablo +Lonnie +Luc +Matias +Mustafa +Paulo +Ramses +Rhett +Rigo +Ron +Silas +Sione +Sunny +Timmy +Vidal +Yonatan +Yousef +Arian +Barry +Bradford +Daron +Denny +Eugenio +Ever +Francesco +Geovany +Harvey +Hilario +Jameson +Lamont +Lars +Laurence +Mackenzie +Nicolaus +Nikko +Norberto +Phoenix +Rico +Roderick +Rowan +Savion +Silvestre +Xander +Zechariah +Amit +Bronson +Cassidy +Christofer +Dandre +Daren +Darrion +Dashawn +Davin +Derian +Devante +Domingo +Duane +Dylon +Eden +Ervin +Jamar +Jayce +Kalen +Karim +Kasey +Kenton +Kyree +Levon +Loren +Madison +Marty +Nima +Randolph +Rickey +Shayan +Stewart +Syed +Tracy +Varun +Wilbert +Yovani +Ajay +Alain +Amador +Aman +Armen +Arron +Cary +Celso +Christion +Cuauhtemoc +Deangelo +Denis +Derik +Elton +Esau +Fransisco +Gabino +Gannon +Gildardo +Gunner +Ishmael +Jade +Jamison +Jaren +Jarret +Jerald +Jeronimo +Jerrod +Jessy +Keon +Kobie +Kolby +Kole +Kong +Leroy +Marcellus +Markell +Morris +Najee +Nikola +Paolo +Reggie +Reilly +Renato +Rian +Rohit +Romario +Sami +Sammuel +Sky +Tevin +Theo +Ulices +Zander +Abdul +Akira +Akshay +Anders +Ara +Aren +Armon +Arya +Bijan +Bishop +Brandan +Branson +Campbell +Che +Clifton +Clint +Darrius +Demitrius +Destin +Diamond +Dino +Dmitri +Ean +Eder +Emmett +Enoch +Esequiel +Fabio +Faustino +Franky +Galen +Grady +Jaiden +Jedidiah +Jerardo +Jimmie +Joan +Johnmichael +Josias +Juventino +Kaelan +Kalani +Keyshawn +Konnor +Livan +Maxim +Michaelangelo +Migel +Mohamad +Montana +Nabil +Neftali +Nikolaus +Niles +Randal +Reagan +Rio +Rudolph +Ryley +Skye +Teodoro +Trace +Ubaldo +Wilmer +Zaid +Abdiel +Abran +Akash +Alexzander +Alijah +Amado +Ameer +Andrea +Anibal +Anson +Antoni +Aram +Ashwin +Ayden +Benson +Brannon +Caelan +Camilo +Camren +Cayden +Demetri +Devlin +Donnie +Emil +Erich +Finn +Garrick +Geno +Geovani +Greyson +Hakeem +Harris +Huy +Irwin +Isreal +Jaylan +Jensen +Jess +Job +Jonny +Jordyn +Joseantonio +Kamren +Kelton +Keoni +Kevon +Kylan +Marcello +Marques +Mikel +Nevin +Nicholaus +Nikolai +Omid +Patricio +Porfirio +Prince +Robbie +Romel +Ronny +Sagar +Sebastien +Spenser +Tarik +Tim +Truman +Trystan +Tyrese +Vincente +Vincenzo +Yash +Youssef +Abdulrahman +Abrahan +Alexei +Alexi +Alton +Amar +Amos +Armondo +Auston +Babyboy +Bo +Braydon +Canaan +Chester +Cisco +Clyde +Dajuan +Darrian +Dave +Deante +Deanthony +Deion +Deshaun +Dilan +Dyllan +Easton +Fidencio +Fletcher +Floyd +Forest +Genesis +Gianluca +Gideon +Giovany +Isael +Ismail +Jafet +Jaquan +Jasen +Jerimiah +Karthik +Khari +Killian +Konner +Kris +Landen +Leif +Leslie +Lincoln +Lucky +Matt +Matthias +Maximo +Mickey +Mikael +Modesto +Nicolo +Nikita +Omer +Oskar +Otis +Rayshawn +Remington +Rishi +Ronan +Seamus +Servando +Sherman +Siddharth +Slater +Talon +Ted +Tou +Ulisses +Yael +Abisai +Aden +Arvin +Atticus +Baron +Bilal +Blair +Brandin +Broderick +Camryn +Cedrick +Chaz +Cian +Cortez +Damani +Dana +Darell +Darrick +Darrien +Deron +Dillion +Donaven +Donavon +Dustyn +Earnest +Elan +Ely +Enrico +Hasan +Hiram +Iain +Jacques +Jai +Jaysen +Jennifer +Jeovany +Jerad +Jericho +Joesph +Juandaniel +Judah +Juliocesar +Justen +Juvenal +Kaelin +Kahlil +Karan +Keshawn +Kevyn +Kunal +Long +Lyndon +Magnus +Michaelanthony +Mikhail +Nino +Obed +Otto +Pascual +Rami +Ravi +Raymon +Renzo +Reymundo +Roshan +Sabastian +Santana +Shiloh +Stephon +Tavian +Trevin +Tye +Tyshawn +Uziel +Westley +Willis +Willy +Zuriel +Adnan +Amin +An +Anand +Andrei +Andru +Anirudh +Anthonie +Arash +Aria +Aries +Armaan +Art +Asante +Augustin +Blaze +Bowen +Braedon +Brodie +Bryon +Cale +Callum +Carlton +Charley +Charly +Cristhian +Cristo +Damond +Danial +Danilo +Darron +Dayton +Demarco +Denver +Dewayne +Dimas +Eladio +Eligio +Erasmo +Ernan +Fredi +Gaspar +Gaven +Gerry +Giovannie +Giovonni +Harlan +Immanuel +Ishan +Izak +Jabari +Jacoby +Jagger +Jaleel +Jan +Jarid +Jaskaran +Jasson +Jaxon +Jaydon +Jevon +Jiovanni +Josemaria +Juanantonio +Justis +Kadin +Kaiden +Kain +Keifer +Kekoa +Khyree +Kiran +Kishan +Kobi +Krishna +Kristoffer +Lenin +Lester +Lizandro +Lloyd +London +Luisfernando +Malique +Marko +Mathieu +Missael +Monte +Moshe +Nareg +Niklas +Noa +Osman +Osmar +Osmin +Patric +Pranav +Raffi +Raj +Rasheed +Raudel +Reno +Rickie +Rojelio +Ryland +Sandeep +Shan +Shelby +Shemar +Simeon +Stacy +Tai +Tal +Teddy +Tre +Trenten +Treyvon +Vikram +Vishal +Wallace +Yobani +Aakash +Abhinav +Akil +Al +Aleksander +Alexys +Amer +Ammar +Amrit +Andrey +Anselmo +Aris +Arlen +Armin +Artur +Babak +Barrett +Bayley +Bernardino +Blas +Broc +Brooks +Cain +Callan +Cheng +Colt +Conrado +Cy +Dagoberto +Dajon +Dakoda +Darby +Daveon +Daylan +Daylon +Dejuan +Demetrio +Deontae +Deric +Desean +Domenick +Donnell +Dru +Dupree +Dyllon +Edgard +Edison +Eliot +Emon +Enrrique +Eros +Eusebio +Evaristo +Fabricio +Fabrizio +Faisal +Faris +Feliciano +Finnegan +Florencio +Florentino +Fortino +Foster +Gaige +Garet +Garry +Gaurav +Giorgio +Giuseppe +Griffen +Grigor +Gurpreet +Haden +Haik +Hank +Jacobo +Jakeb +Jarren +Javan +Jax +Jeanpaul +Jeric +Jhovanny +Johny +Jonnathan +Joshuah +Jovon +Jun +Justine +Kenan +Kenta +Kerry +Kiefer +Kirby +Kou +Lake +Lemuel +Lenny +Luigi +Macario +Manpreet +Margarito +Marion +Markel +Marley +Marquel +Marshal +Martell +Mynor +Myron +Nahum +Nathon +Ori +Osiris +Parsa +Parth +Pasha +Paulino +Rhys +Ritchie +Rony +Roque +Rueben +Ryo +Sameer +Sayed +Shamar +Silverio +Soren +Stephanie +Storm +Tahj +Tayler +Tejas +Theron +Thor +Tonatiuh +Torin +Trae +Tyriq +Tyrique +Van +Vivek +Waylon +Wendell +Wilber +Abimael +Akhil +Aleksandr +Alphonso +Andrez +Ankit +Anuj +Apolinar +Argenis +Aristeo +Arvind +Aryan +Azael +Aziz +Basil +Bennie +Blaise +Bodhi +Bradlee +Brandt +Brayant +Brycen +Cal +Calum +Carmelo +Cassius +Cedar +Celestino +Christoper +Clement +Codey +Dakotah +Damaria +Dara +Darious +Dat +Dax +Dayshawn +Delano +Delfino +Delvon +Demitri +Derwin +Deshon +Dezmond +Dijon +Dionicio +Dontae +Draven +Eber +Ector +Eliazar +Elon +Emery +Emile +Emmet +Esdras +Esgar +Ethen +Etienne +Evin +Favio +Gagandeep +Gamaliel +Gavino +Gerrit +Gian +Gorge +Graeme +Hagop +Hazael +Henri +Henrik +Herminio +Homar +Imani +Imran +Iram +Isaih +Izaak +Jacinto +Jad +Jahaziel +Jalani +Jamaal +Jamari +Jamon +Jase +Jered +Jerick +Jerson +Jessica +Jihad +Joab +Jocelyn +Johnanthony +Johnatan +Jonte +Jordin +Jorgeluis +Joseangel +Josecarlos +Jossue +Jr +Juanmanuel +Jules +Kacey +Kainoa +Kanoa +Kasra +Keyon +Kiernan +Kimberly +Kimo +Kodi +Kohl +Kollin +Kordell +Kush +Laith +Lauro +Lavelle +Layne +Lowell +Luisenrique +Maksim +Malakai +Maliek +Marlin +Marlo +Maurisio +Melissa +Michelangelo +Mikhael +Mina +Minh +Montel +Mychael +Nam +Ocean +Ozzy +Pascal +Philippe +Rajan +Randell +Rishabh +Rito +Rodrick +Rosalio +Royal +Russel +Ryker +Samer +Sampson +Sanjay +Schuyler +Shaan +Sol +Stefano +Stevan +Stevie +Sultan +Surya +Sydney +Tarek +Terrill +Tino +Travon +Trayvon +Tyquan +Tyrus +Tyus +Umar +Usman +Valentine +Vanessa +Victormanuel +Virgil +Vito +Wes +Wiley +Xzavier +Yovanni +Yuki +Zaire +Zakaria +Zen +Abiel +Able +Adair +Adil +Adin +Ajani +Akaash +Alejandra +Aleksandar +Aleksei +Aly +Amadeo +Amandeep +Ameen +Amritpal +Andree +Andrue +Andruw +Angelino +Antwan +Aramis +Arie +Arlo +Artemio +Asad +Asael +Ashkan +Aubrey +Augusto +Augustus +Aviv +Azariah +Benjamen +Benton +Bernabe +Billie +Bjorn +Bodie +Brant +Brennon +Brigham +Canyon +Cecilio +Cezar +Chadwick +Christan +Christophe +Ciaran +Cinque +Cobi +Codie +Coleton +Colson +Conan +Corban +Cormac +Courtland +Courtney +Cyle +Daijon +Dalen +Damarco +Danniel +Danyael +Darrel +Dashiell +Deaven +Delbert +Delon +Demetre +Devaughn +Dewey +Dillen +Diondre +Domonic +Donnovan +Donny +Duke +Eathan +Eberardo +Edan +Edric +Edrick +Elder +Elie +Eliezer +Emily +Eulises +Everest +Fahad +Farhan +Franciscojavier +Froylan +Gabrial +Garland +Gavriel +Gavyn +Gevork +Giacomo +Gibran +Gumaro +Hamilton +Hansen +Hanson +Harman +Hasani +Hayk +Heath +Heber +Hipolito +Hoang +Homero +Houston +Humza +Ilias +Ilya +Irineo +Issa +Issiah +Izaac +Jaeden +Jajuan +Jakari +Jalon +Jamel +Jarron +Jeovani +Jeremias +Jerin +Jerrick +Jet +Jin +Johannes +Jonathanjoseph +Jonpaul +Josearmando +Jourdan +Jovannie +Juanluis +Jude +Justo +Juston +Kamari +Karson +Keelan +Keenen +Kegan +Kelson +Keng +Kennan +Kimani +Kingsley +Kingston +Kolton +Kongmeng +Lamberto +Lauren +Lorenz +Luka +Lyle +Mack +Magdaleno +Mahdi +Manolo +Marck +Markos +Maxfield +Maxime +Maxx +Mckinley +Merlin +Michel +Mihir +Mikail +Milad +Miller +Mizael +Monica +Montrell +Narciso +Narek +Naseem +Natan +Navid +Neel +Nickolaus +Nicky +Nicola +Nile +Nolen +Olin +Otoniel +Palmer +Paxton +Petros +Presley +Quang +Rahsaan +Reymond +Reza +Rich +Ridge +Rommel +Ronak +Rusty +Ryne +Saad +Sahib +Samantha +Satchel +Scot +Scotty +Serjio +Shae +Shon +Sigifredo +Simran +Stetson +Suraj +Sylvester +Tevita +Thien +Tiernan +Timoteo +Tito +Tyre +Tyren +Tyrin +Uriah +Val +Valente +Viet +Vinay +Vinson +Virgilio +Waleed +Walid +Westin +Willem +Williams +Wolfgang +Wylie +Yair +Yancy +Yonathan +Yosef +Young +Zakkary +Aaren +Aayush +Adhemar +Adrean +Adryan +Aj +Akili +Aldrin +Alen +Alfonzo +Alma +Alston +Anakin +Andhy +Anfernee +Angeles +Angello +Anish +Ankur +Anmol +Anthonyjohn +Antione +Arin +Aydin +Ayush +Baily +Barron +Baruch +Benigno +Benyamin +Bert +Blade +Blong +Brain +Brandy +Brenan +Brenner +Briant +Brogan +Burke +Cairo +Calder +Candelario +Carsen +Cash +Cayman +Ceaser +Cesario +Chace +Christ +Christien +Cirilo +Cobey +Colter +Constantine +Cornelio +Corry +Cris +Cross +Damaris +Dang +Dani +Danthony +Daquan +Dartagnan +Dashon +Davante +Davian +Daymon +Daymond +Dedrick +Deepak +Delvin +Demario +Demonte +Derrek +Derrion +Dezhon +Dhruv +Dimitrios +Dionte +Domonique +Donato +Duy +Eamon +Eben +Edilberto +Eduard +Eitan +Eldon +Elija +Eliott +Eliud +Emari +Emelio +Emory +Enoc +Errol +Esteven +Esvin +Eulices +Evert +Exavier +Ferdinand +Fernie +Fischer +Fox +Frederic +Froilan +Galdino +Gautam +Geordan +Ger +Gillermo +Grey +Gurjot +Hakop +Han +Harjot +Harout +Harut +Harutyun +Hezekiah +Hiroshi +Hovanes +Hrag +Hubert +Ilan +Indiana +Ira +Isaia +Isrrael +Itai +Ivory +Jabril +Jacquez +Jae +Jael +Jaelin +Jailen +Jairus +Jaison +Jameel +Jaryd +Jashawn +Jashon +Jaspreet +Javin +Javonte +Jayvon +Jaziel +Jazmin +Jc +Jeanluc +Jed +Jeovanni +Jerel +Jereme +Jerico +Jerred +Jerrett +Jeyson +Joao +Jobany +Jody +Joeseph +Johnathen +Johndavid +Johnjoseph +Jonathen +Josede +Joshuaray +Juanito +Kabir +Kadeem +Kaeden +Kaito +Kalin +Kamal +Kamran +Kamrin +Karsten +Kaya +Kayden +Kayvon +Keilan +Keller +Kelsey +Kendell +Kendric +Kennith +Kenrick +Kento +Kenyatta +Kesean +Keshaun +Kevan +Khaled +Khaleel +Khristian +Kirkland +Klayton +Kraig +Krystian +Kwame +Kyre +Laron +Lazarus +Leander +Leandro +Legend +Leovardo +Luisdavid +Mahmoud +Malcom +Manny +Marcial +Maria +Marlow +Marquese +Marquies +Marqus +Marshawn +Masen +Massimo +Matan +Maurilio +Maury +Maximillion +Maynor +Mckay +Mckenzie +Merrick +Micahel +Michelle +Mika +Mister +Mitch +Monty +Musa +Mykel +Nabeel +Nabor +Nadav +Nahom +Napoleon +Naveen +Nery +Niall +Niccolo +Nicolai +Nils +Nolberto +Noor +Norris +Nyles +Olivier +Omeed +Oren +Osama +Pavel +Percy +Piero +Pieter +Placido +Quinlan +Rajiv +Ramzi +Rashaun +Ravinder +Rayan +Rayvon +Refugio +Remi +Ric +Richmond +Rion +Rod +Romello +Romero +Rondell +Ruvim +Ryen +Ryon +Sachin +Saeed +Said +Sal +Saleh +Salman +Salvatore +Sander +Saxon +Schyler +Selvin +Serafin +Serge +Shad +Shadi +Sherwin +Sho +Silvano +Sina +Skylor +Slade +Sloan +Steele +Steffon +Sumeet +Takoda +Tam +Tamir +Tavion +Teofilo +Terell +Terran +Terrel +Thai +Torrey +Tory +Tray +Trejon +Tremaine +Trysten +Tyrek +Tyrel +Tyrice +Tyrik +Tyron +Vadim +Vicent +Wilfred +Willian +Xaiver +Yanni +Yaseen +Yehuda +Yeison +Yeng +Yusuke +Yvan +Zacharias +Zack +Zackariah +Zak +Zakery +Zamir +Zeke +Zephaniah +Daniel +Jose +Anthony +Michael +Andrew +David +Jacob +Matthew +Christopher +Joshua +Jonathan +Joseph +Nicholas +Ryan +Brandon +Juan +Christian +Kevin +Luis +Alexander +Justin +Angel +Jesus +Carlos +John +Tyler +William +Robert +Gabriel +Brian +Adrian +Eric +Nathan +James +Samuel +Alejandro +Kyle +Jason +Noah +Zachary +Dylan +Austin +Miguel +Benjamin +Bryan +Aaron +Jordan +Steven +Isaiah +Isaac +Ethan +Jorge +Victor +Oscar +Cameron +Thomas +Ricardo +Richard +Eduardo +Francisco +Antonio +Adam +Jesse +Sean +Andres +Alex +Fernando +Jack +Ivan +Mark +Diego +Elijah +Manuel +Alexis +Cesar +Julian +Omar +Javier +Sergio +Jared +Nathaniel +Mario +Evan +Trevor +Cristian +Edgar +Timothy +Connor +Erik +Roberto +Hector +Hunter +Raymond +Edward +Gerardo +Ruben +Ian +Erick +Nicolas +Vincent +Patrick +Jeremy +Joel +Martin +Charles +Luke +Caleb +Jake +Cole +Alan +Armando +Pedro +Cody +Sebastian +Henry +Garrett +Giovanni +Raul +Abraham +Andy +Marco +Rafael +Paul +Seth +Jeffrey +Kenneth +Devin +Blake +Enrique +Dominic +Logan +George +Mason +Spencer +Marcos +Jaime +Edwin +Leonardo +Josue +Chase +Peter +Marcus +Derek +Julio +Lucas +Arturo +Bryce +Alberto +Emmanuel +Salvador +Brendan +Jeremiah +Jackson +Ernesto +Xavier +Stephen +Israel +Tristan +Alfredo +Tanner +Frank +Johnny +Gustavo +Moises +Scott +Shane +Travis +Maxwell +Bradley +Fabian +Gavin +Wyatt +Elias +Gregory +Saul +Max +Pablo +Aidan +Andre +Albert +Alec +Ramon +Grant +Liam +Riley +Esteban +Damian +Johnathan +Guillermo +Jimmy +Shawn +Ismael +Dillon +Taylor +Mitchell +Phillip +Parker +Rodrigo +Abel +Danny +Hugo +Colin +Harrison +Emilio +Dakota +Josiah +Steve +Mathew +Marc +Casey +Calvin +Devon +Jerry +Hayden +Rene +Jakob +Carson +Dustin +Rodolfo +Donovan +Owen +Nolan +Randy +Troy +Lorenzo +Brett +Joe +Ricky +Jonah +Ulises +Mauricio +Chad +Miles +Roman +Alfonso +Tommy +Wesley +Collin +Santiago +Adan +Gilberto +Ronald +Simon +Tony +Colton +Angelo +Eddie +Bryant +Arthur +Felipe +Corey +Marvin +Larry +Dennis +Uriel +Emanuel +Noe +Drew +Chandler +Chris +Dante +Louis +Allen +Conner +Micah +Preston +Brenden +Jaden +Darren +Osvaldo +Rogelio +Malik +Nikolas +Issac +Felix +Clayton +Vicente +Efrain +Rudy +Joaquin +Bailey +Oliver +Philip +Skyler +Cade +Alvaro +Carter +Damien +Cory +Noel +Levi +Zackary +Branden +Ramiro +Adolfo +Humberto +Jalen +Jonathon +Leonel +Griffin +Mateo +Derrick +Kenny +Quinn +Darius +Gary +Ignacio +Kai +Keith +Charlie +Gage +Gilbert +Allan +Dominick +Donald +Dawson +Trenton +Ulysses +Moses +Jessie +Myles +Octavio +Dean +Trent +Cooper +Nickolas +Dalton +Kobe +Lawrence +Zane +Joey +Kelvin +Orlando +Curtis +Walter +Agustin +Alvin +Ezekiel +Isaias +Morgan +Tomas +Lance +Ali +Eli +Roger +Douglas +Ezequiel +Chance +Kaleb +Jayden +Nestor +Jarod +Kameron +Avery +Braden +Freddy +Nelson +Caden +Colby +Rigoberto +Roy +German +Brayden +Brennan +Damon +Theodore +Brady +Brent +Kristopher +Leo +Russell +Jayson +Dane +Jairo +Maximilian +Drake +Aldo +Alonzo +Eugene +Alonso +Marlon +Micheal +Zion +Byron +Efren +Kyler +Rodney +Rolando +Shaun +Brayan +Estevan +Jay +Landon +Ray +Ty +Guadalupe +Isiah +Johnathon +Nathanael +Trey +Alfred +Amir +Aiden +Conor +Davis +Mike +Neil +Quentin +Tyrese +Leon +Misael +Lukas +Tristen +Ariel +Brendon +Elvis +Gonzalo +Isai +Heriberto +Bobby +Kristian +Ronaldo +Stanley +Carl +Craig +Malachi +Zachariah +Cruz +Jaylen +Mohammad +Solomon +Alexandro +Bruce +Frankie +Sam +Bernardo +Raymundo +Sage +Brock +Dallas +Darian +Ezra +Jon +Zachery +Arman +Desmond +Fidel +Frederick +Gerald +Justice +Wilson +Ashton +Cristopher +Jovanny +Miguelangel +Terry +Giovanny +Grayson +Melvin +Orion +Duncan +Emiliano +Julius +Kaden +Santos +Jace +Francis +Irvin +Maurice +Oswaldo +Skylar +Axel +Billy +Bryson +Corbin +Elliott +Joseluis +Randall +Dario +Keven +Ralph +Reginald +Ahmad +Dorian +Elliot +Franklin +Jeffery +Leonard +Maximiliano +Willie +Jamal +Johan +Kody +Aron +Bennett +Conrad +Hernan +Jonas +Mariano +Raphael +Reece +Weston +Zackery +Damion +Deandre +Demetrius +Everardo +Payton +Ronnie +Valentin +Arnold +Jasper +Peyton +Romeo +Braulio +Cristobal +Derick +Graham +Isidro +Jarrett +Jovany +Keaton +Keegan +Reed +Ahmed +Camden +Garret +Gregorio +Jordi +Quincy +Reynaldo +Todd +Cedric +Harley +Harold +Harry +Jarrod +Jordon +Junior +Marcelo +Maximillian +Alessandro +Ernest +Kurt +Luciano +Nick +Rory +Trevon +Tyson +Devan +Genaro +Jefferson +Jordy +Marshall +Tucker +Beau +Dimitri +Giancarlo +Irving +Karl +Louie +Reese +Ross +Ben +Carlo +Deven +Everett +Holden +Jovani +Khalil +Rohan +Sonny +Terrance +Brody +Cyrus +Darrell +Favian +Fredy +Jamie +Malcolm +Warren +Benito +Clay +Davion +Milton +Nikhil +Terrell +Tyree +Anton +Eliseo +Giovani +Jarred +Keenan +Kian +Marcel +Mohammed +Roland +Sterling +Tobias +Wayne +Will +Antony +Elmer +Gianni +Jerome +Jovanni +Lewis +Markus +Mauro +Nico +Pierce +Quinton +Sawyer +Darien +Gino +Jean +Jessy +Juancarlos +Kendrick +Kieran +Mohamed +Rick +Tristin +Adrien +Arnulfo +Dale +Elisha +Glenn +Keanu +Kellen +Ken +Marcoantonio +Sahil +Stefan +Walker +Benny +Brennen +Camron +Darryl +Rey +Aldair +August +Bruno +Dan +Dangelo +Declan +Herman +Howard +Izaiah +Jadon +Kent +Nathanial +Nathen +Robin +Terrence +Tom +Winston +Andreas +Arjun +Aurelio +Ernie +Gordon +Jovan +Julien +Kade +Lee +Markanthony +Marquise +Nigel +Sammy +Sidney +Anderson +Davon +Devyn +Geovanni +Jair +Javon +Koby +River +Tylor +Tyrone +Valentino +Coby +Darion +Emerson +Fermin +Garrison +Luiz +Marcelino +Norman +Quintin +Rahul +Tariq +Adalberto +Braeden +Dejon +Gabino +Geovanny +Gerson +Gunnar +Jacky +Jaiden +Kareem +Luca +Muhammad +Osbaldo +Santino +Tate +Ulisses +Abram +Addison +Aditya +Antoine +Darin +Dion +Eddy +Forrest +Fred +Geoffrey +Jermaine +Lane +Pranav +Reid +Sheldon +Stephan +Wade +Armand +Clinton +Darnell +Deshawn +Federico +Gene +Jaylin +Johnpaul +Justus +Lamar +Reuben +Zechariah +Asher +Augustine +Austen +Coleman +Dayton +Deangelo +Dominik +Dominique +Elvin +Josef +Keoni +Leandro +Luisangel +Niko +Semaj +Vance +Ari +Braxton +Darwin +Dillan +Donavan +Dwight +Edgardo +Eleazar +Eriberto +Hamza +Josh +Leopoldo +Luc +Matteo +Maverick +Reyes +Ronan +Adonis +Aric +Blaine +Brice +Geovany +Jaxon +Marquis +Paolo +Perry +Pierre +Rosendo +Royce +Samir +Samson +Stone +Stuart +Abner +Ajay +Asa +Austyn +Bret +Claudio +Dexter +Finn +Flavio +Freddie +Grady +Horacio +Jaren +Kane +Kurtis +Lucio +Neal +Rocky +Shant +Silas +Ulices +Amari +Bernard +Ceasar +Demetrio +Deon +Edmund +Emmett +Hans +Ibrahim +Jaron +Jonatan +Karan +Kenji +Leroy +Monte +Nehemiah +Omari +Ramses +Rhys +Sami +Shayan +Sunny +Varun +Adriel +Alijah +Armani +Brad +Brandyn +Braydon +Caesar +Cayden +Daryl +Deion +Don +Gideon +Isaak +Jackie +Jeff +Jelani +Kasey +Kelly +Kirk +Kristofer +Leland +Mitchel +Mohamad +Rylan +Travon +Triston +Yusuf +Abdullah +Anakin +Andrei +Arnoldo +Ayden +Bill +Clarence +Cristofer +Cuauhtemoc +Denver +Donte +Edson +Emil +Erwin +Filiberto +Franco +Harvey +Isac +Judah +Jude +Kendall +Lamont +Lionel +Loren +Marcanthony +Marcello +Matias +Mekhi +Mustafa +Norberto +Pete +Reilly +Richie +Seamus +Silvestre +Tyrell +Vaughn +Vidal +Wolfgang +Anish +Armon +Clark +Dave +Davin +Devonte +Fausto +Harman +Jamar +Jaycob +Jensen +Jim +Joan +Josemanuel +Justyn +Kolby +Kole +Lazaro +Leslie +Levon +Mackenzie +Mikel +Paris +Ryder +Terence +Titus +Trinidad +Alden +Alek +Aman +Arvin +Camilo +Clifford +Glen +Guy +Hudson +Isacc +Isreal +Jamil +Jett +Johnnie +Karim +Kennedy +Milo +Nikko +Rashad +Rex +Rowan +Shea +Sione +Taj +Toby +Trever +Willy +Yousef +Zuriel +Aram +Arron +Bishop +Bradford +Chasen +Clemente +Clint +Dallin +Darrius +Easton +Eder +Edmundo +Eloy +Fransisco +Fredrick +Greg +Harris +Hassan +Jacinto +Jaydon +Jimmie +Johnson +Jonnathan +Jorden +Justen +Kalen +Keshawn +Khalid +Leobardo +Marques +Maxim +Mikael +Nikolai +Prince +Ramsey +Rickey +Ron +Shamar +Sky +Soren +Theo +Wilfredo +Xander +Alain +Anders +Andru +Andrue +Arian +Barry +Blaze +Broderick +Camren +Carlton +Cullen +Dyllan +Dylon +Eliot +Erich +Gildardo +Giovany +Herbert +Imanol +Jacobo +Jade +Jafet +Johnmichael +Kahlil +Kalvin +Keyshawn +Kory +Kunal +Leif +Lisandro +Lonnie +Marquez +Mikhail +Niklas +Nima +Parth +Phoenix +Quinten +Reymundo +Ronny +Suraj +Talon +Ted +Tre +Vincente +Vladimir +Wilmer +Zain +Zakary +Akshay +Armen +Benson +Brycen +Bryon +Colten +Dajon +Danilo +Demitri +Deshaun +Devante +Domenic +Dru +Eamon +Earl +Ellis +Enoch +Enzo +Faisal +Griffen +Huy +Jameson +Jordyn +Juanmanuel +Kainoa +Kalani +Kamron +Konnor +Lars +Laurence +Neel +Nikita +Noa +Osman +Porter +Raven +Remington +Rico +Rishi +Roderick +Ryley +Sameer +Sarkis +Simeon +Stephon +Taha +Vernon +Vince +Wilber +Yonatan +Zaid +Aleksander +Alexandre +Alexzander +Amado +Anson +Antwan +Aramis +Armaan +Artemio +Baltazar +Bernabe +Boris +Bradly +Brandan +Brenton +Brooks +Cain +Callum +Cannon +Dandre +Dashiell +Deondre +Donnie +Ean +Edmond +Erasmo +Erin +Esai +Francesco +Franky +Gamaliel +Immanuel +Ishmael +Jamel +Jamison +Jedidiah +Jerson +Jess +Johann +Joseangel +Joseantonio +Josedejesus +Juanpablo +Juvenal +Kenton +Keon +Kevyn +Latrell +Lino +Lloyd +London +Marcellus +Maximino +Maximo +Obed +Paulo +Rhett +Skye +Stefano +Stewart +Syed +Tai +Tim +Tyrique +Ubaldo +Willis +Zack +Andrey +Andrez +Aries +Ashley +Brando +Brennon +Christofer +Cisco +Daron +Darrien +Davian +Denny +Deonte +Derian +Dillion +Domingo +Donny +Duke +Dwayne +Eliezer +Feliciano +Giuseppe +Hugh +Iain +Isaih +Jad +Jaelen +Jennifer +Jered +Jerod +Jerrod +Juanjose +Kevon +Korey +Kylan +Landen +Lincoln +Linus +Lucky +Markel +Matt +Matthias +Michaelangelo +Milan +Moshe +Nader +Paxton +Quinlan +Rami +Raymon +Reggie +Renato +Rudolph +Ruvim +Santana +Savion +Servando +Seven +Shelby +Siddharth +Tevin +Trace +Truman +Tyreke +Uriah +Uziel +Vincenzo +Yael +Abran +Aden +Alfonzo +Amador +Ashwin +Augustin +Auston +Avi +Bo +Braedon +Brant +Clifton +Clyde +Cordell +Cristo +Dajuan +Damani +Darrel +Daylon +Demarco +Denilson +Dilan +Dontae +Edwardo +Ervin +Eugenio +Ever +Evin +Faustino +Florencio +Forest +Gareth +Gaspar +Gaven +Genesis +Geronimo +Gianluca +Hakeem +Hilario +Homero +Imran +Irwin +Isael +Izaac +Izayah +Jagger +Jarren +Jeromy +Jevon +Jihad +Job +Juaquin +Kaelan +Kaiden +Kain +Kamari +Karthik +Kenyon +Kerry +Kris +Langston +Layne +Lester +Madison +Marcell +Maria +Merrick +Migel +Mykel +Nahum +Najee +Nash +Otto +Parsa +Patricio +Rajan +Reagan +Remy +Rohit +Salomon +Serafin +Shayne +Shiloh +Sylvester +Tahj +Thaddeus +Timmy +Trayvon +Trystan +Abdulrahman +Abhishek +Adair +Aj +Akhil +Alexsander +Amar +Aren +Arya +Barrett +Basil +Bilal +Bronson +Camryn +Candido +Cassidy +Cedrick +Chaz +Chester +Christion +Conrado +Curren +Dameon +Daren +Darrian +Dartagnan +Davonte +Demetri +Donavon +Eden +Edison +Eitan +Elan +Eligio +Ely +Esau +Esequiel +Faris +Floyd +Galen +Gannon +Garett +Gerard +Gevorg +Henrry +Hiram +Jabari +Jaleel +Jasen +Jaskaran +Jasson +Jayvon +Jeronimo +Jjesus +Jordin +Josias +Kadin +Kale +Kamren +Kayden +Kekoa +Kyree +Long +Lyle +Maceo +Mahmoud +Malek +Manny +Marley +Mihir +Minh +Neftali +Nicholaus +Otis +Pavel +Reno +Ronin +Saif +Sebastien +Shivam +Stevan +Sullivan +Tavion +Tino +Tristian +Ulyses +Vahe +Vinh +Vivek +Westin +Yash +Yosef +Young +Yovani +Abelardo +Abisai +Akira +Amani +Ameer +Amit +Andranik +Andrea +Angus +Anirudh +Antwon +Aria +Aryan +Asad +Atticus +Azael +Benedict +Benton +Bijan +Bladimir +Bowen +Carmelo +Chancellor +Claude +Corwin +Damari +Darrin +Darrion +Dashawn +Demond +Denzel +Dereck +Deric +Derrik +Desean +Desi +Destin +Dewayne +Dino +Duane +Elder +Elian +Eliel +Elton +Emery +Ewan +Garren +Garrick +Geno +Gian +Greyson +Grigor +Gus +Heber +Iman +Ira +Ismail +Izaak +Jahaziel +Jamari +Jaylan +Jaylon +Jerald +Jerardo +Jiovanni +Johnatan +Jossue +Jr +Karson +Khoi +Khristian +Kiran +Kolton +Konner +Korbin +Krishna +Kyron +Lenny +Luisenrique +Mack +Marcial +Marino +Marshawn +Mathias +Mckay +Michelangelo +Natanael +Nikolaus +Niles +Norris +Omid +Osmar +Ozzy +Race +Randolph +Rasheed +Refugio +Renzo +Rich +Rigo +Rio +Ritchie +Robbie +Rojelio +Roque +Rosalio +Ryland +Rylee +Sabian +Sal +Salvatore +Samantha +Sanjay +Shan +Shannon +Silvano +Spenser +Stephanie +Tal +Tarik +Tevita +Tobin +Tou +Trevin +Treyvon +Tyriq +Vishal +Vito +Waleed +Wilbert +Williams +Youssef +Yovany +Yusef +Akash +Alexei +Alon +Amando +An +Andree +Antoni +Arash +Aristotle +Aubrey +Augustus +Azriel +Beck +Blair +Blaise +Bodie +Brannon +Brevin +Britton +Candelario +Cecilio +Celso +Charly +Chazz +Cian +Cobi +Coleton +Cornelius +Cristhian +Cy +Dakotah +Daveon +Denis +Dequan +Diana +Domonic +Donavin +Edgard +Ediberto +Fidencio +Finnegan +Gaston +Gaurav +Gerry +Gevork +Gil +Hakop +Hieu +Ishan +Issiah +Jaciel +Jacques +Jajuan +Jalil +Jan +Jaquan +Javonte +Jax +Jayce +Jaysen +Jeramiah +Jeron +Jerrell +Jessi +Jezreel +Jorje +Juanantonio +Jules +Juventino +Juwan +Kalin +Kamal +Kc +Kenan +Keshav +Khaled +Khang +Kimani +Kodi +Kohl +Laith +Lavell +Lazarus +Lemuel +Maison +Makai +Margarito +Marion +Markjoseph +Marty +Mateen +Maxime +Mckinley +Menachem +Nam +Neema +Nevin +Nikola +Nile +Osama +Osiel +Pascual +Porfirio +Rajiv +Romario +Romel +Rony +Rosario +Saad +Sachin +Sasha +Selvin +Shay +Shon +Silverio +Sixto +Sydney +Tito +Torrey +Van +Vinny +Westley +Willem +Yair +Yoel +Yousuf +Abdiel +Abrahan +Adiel +Adnan +Adrain +Albaro +Alejo +Alexi +Alistair +Amilcar +Amrit +Amritpal +Anibal +Anjel +Anselmo +Arin +Arnav +Arsalan +Art +Artin +Asael +Asante +Askari +Aviel +Ayman +Ayush +Baylor +Blas +Bodhi +Braiden +Caelan +Callan +Calum +Carey +Carlosdaniel +Cary +Cassius +Charley +Ciaran +Danial +Dax +Deanthony +Demario +Devlin +Diamond +Dimitrius +Donnell +Duy +Eian +Elio +Elyjah +Emory +Enrrique +Esdras +Ethen +Eusebio +Finnian +Florentino +Fredi +Garet +Gavan +Germain +Gerrit +Gibran +Gillermo +Gorge +Hamilton +Harout +Harpreet +Hasan +Henrik +Heron +Hiroki +Ishaan +Jaedon +Jai +Jalyn +Jarek +Jarell +Jarett +Javan +Jaxson +Jayro +Jeffry +Jeovany +Jeremias +Jericho +Jerimiah +Joesph +Jomar +Juliocesar +Jullian +Jun +Kabir +Kacey +Kaleo +Kamran +Kavon +Kellan +Kenta +Khari +Kiernan +Killian +Kishan +Koa +Konrad +Kush +Kwame +Lachlan +Lauren +Leandre +Lucian +Luigi +Lyndon +Macario +Magnus +Malakai +Malique +Marko +Marlo +Masen +Matin +Mattias +Maxx +Melissa +Messiah +Missael +Montgomery +Myron +Nabeel +Nabil +Narciso +Narek +Nasir +Neo +Nicky +Nicolai +Oswald +Pierson +Quan +Randal +Raudel +Ravi +Rayan +Reymond +Rickie +Ryen +Ryker +Salim +Sampson +Samual +Sandro +Saulo +Schuyler +Sequoia +Serjio +Sherman +Shiv +Steele +Stevie +Tadeo +Takumi +Tam +Teodoro +Terell +Thai +Thompson +Torin +Tracy +Trae +Tyrece +Tyreek +Tyus +Vahan +Valente +West +Xzavier +Yanni +Zaire +Zakaria +Zamir +Zeth +Zeus +Zev +Ab +Abdul +Abiel +Abimael +Able +Abrahm +Adel +Adryan +Aharon +Ajani +Akil +Alen +Alexes +Alexiz +Ambrose +Amer +Amin +Amos +Andi +Andrik +Andruw +Ankur +Anthoney +Apolinar +Arion +Armond +Arsh +Baily +Baron +Bernardino +Blane +Blayne +Brain +Brandin +Brandt +Brighton +Broc +Cameren +Campbell +Chace +Chadwick +Chauncey +Chet +Christophe +Cj +Codey +Codie +Corban +Cordel +Cornelio +Cornell +Cortez +Cosme +Courtney +Coy +Dade +Daijon +Dalen +Damarea +Damone +Damonte +Dany +Daquan +Darrick +Dasan +Daylen +Deante +Dedrick +Deepak +Delaney +Delvin +Delvon +Derik +Devonta +Dezmond +Dhruv +Dillen +Donaldo +Donovin +Duran +Earnest +Ed +Elijiah +Elyas +Emad +Emari +Emmanuelle +Enrico +Eriq +Etienne +Fahad +Fischer +Flynn +Foster +Franklyn +Gabriela +Garin +Geovani +Gibson +Gray +Grey +Gunner +Harutyun +Hasani +Hermilo +Hezekiah +Hubert +Humza +Huriel +Hussein +Hyrum +Ikenna +Indiana +Iran +Isaia +Isrrael +Issa +Issak +Jacorey +Jadin +Jaeden +Jahred +Jakub +Jalon +Jamin +Jaret +Jarron +Jasiah +Jasmeet +Jasmin +Jeancarlo +Jeanpaul +Jerad +Jeric +Jerman +Jerrick +Jeshua +Jhovany +Joao +Johannes +Johnathen +Johnpatrick +Johny +Jonny +Josealberto +Josejuan +Joshuah +Joshue +Jovanie +Jozef +Juanalberto +Juanito +Juanluis +Kaelen +Kaito +Karsten +Kavi +Kazuki +Keandre +Keelan +Kelley +Kelsey +Kelton +Kendell +Kesean +Kevan +Kevion +Keyon +Khristopher +Kiefer +Kile +Kordell +Kristoffer +Lamberto +Larenz +Laron +Lizandro +Lowell +Luisfernando +Lydell +Magdaleno +Malcom +Maleek +Manpreet +Manraj +Manveer +Marciano +Marwan +Matan +Maxfield +Maximillion +Maynor +Melquiades +Micaiah +Mickey +Mikah +Mikey +Miller +Min +Mohit +Montana +Napoleon +Navid +Nerses +Nery +Nicklaus +Nicolaus +Nils +Noam +Omero +Osiris +Otoniel +Oziel +Pavan +Perris +Philippe +Prateek +Raj +Randell +Rashawn +Renan +Renee +Rian +Richmond +Rishab +Rodger +Romello +Rommel +Rueben +Rusty +Ryne +Sabastian +Sabino +Saeed +Sagar +Sahib +Sai +Salman +Satchel +Scot +Shae +Shmuel +Slater +Stetson +Takashi +Takoda +Talha +Tan +Taron +Tavian +Teo +Thang +Thanh +Thor +Trentin +Tye +Tylar +Tyon +Tyreese +Tyrek +Tyrelle +Tyron +Tyshawn +Umar +Vaibhav +Vijay +Vikram +Viraj +Virgil +Vitaliy +Wayde +Waylon +Wilbur +Wilder +Yaakov +Yehuda +Yordi +Zabdiel +Zach +Zaki +Zander +Zyon +Abbas +Adin +Adrean +Aedan +Akili +Aleczander +Aleksei +Alexandros +Alireza +Alton +Amadeo +Anand +Anfernee +Angela +Anmol +Ara +Arcadio +Arden +Arik +Aristeo +Arjan +Armin +Armondo +Arsen +Arshdeep +Athan +Audel +Aydan +Aydin +Ayrton +Barron +Bennie +Bentley +Bonifacio +Brandy +Branson +Brigham +Brodie +Bryton +Caiden +Canyon +Case +Casper +Celestino +Cha +Chadd +Channing +Christen +Ciro +Clement +Colt +Constantino +Cosmo +Coty +Curtiss +Cyle +Dagoberto +Dakarai +Damond +Dani +Danieljohn +Dannie +Danniel +Dara +Darious +Dariush +Darron +Dashon +Daveion +Dayne +Delano +Delfino +Demarea +Derrek +Deshon +Devaughn +Diangelo +Didier +Dimas +Dirk +Dmitri +Domenico +Donaven +Donavyn +Dontay +Donyae +Draven +Duc +Dustyn +Dutch +Edan +Edilberto +Edvin +Edwardjames +Eladio +Elbert +Elie +Enoc +Ernan +Eros +Eryk +Esteven +Estuardo +Evaristo +Exavier +Fabricio +Fabrizio +Farhan +Favio +Fletcher +Ford +Fox +Frederic +Gaberiel +Gabrial +Gagandeep +Garen +Gavyn +Ger +Giovan +Giovannie +Govanni +Graeme +Grayden +Gurpreet +Habib +Hagop +Hamzah +Hansen +Hari +Haris +Harjot +Henri +Hien +Howie +Hussain +Iban +Ilan +Isais +Isauro +Iven +Ivory +Izac +Jabril +Jacari +Jaelin +Jailen +Jalani +Jamir +Janson +Jarel +Jarret +Jaskarn +Jasmine +Jaspreet +Jaylyn +Jayme +Jaymes +Jaziel +Jeanpierre +Jens +Jestin +Jet +Jhovanny +Jin +Jiovani +Joab +Jobani +Johnanthony +Johnie +Jomari +Jonathen +Jory +Josealfredo +Joshuajames +Jovon +Juandaniel +Jurgen +Justino +Justis +Justo +Kaelin +Kalan +Kalob +Kamryn +Kannon +Karapet +Karen +Karlo +Karon +Kavan +Kaven +Kaya +Kaylen +Kayvon +Keilan +Kejuan +Kento +Kenyatta +Keshaun +Khai +Khalif +Khoa +Khyree +Kiel +Kim +Kimo +King +Kingsley +Kingston +Kirby +Kong +Krystian +Kye +Kylin +Lamarr +Leighton +Lucca +Luisalberto +Makhi +Marck +Markell +Markos +Mathieu +Maximilliano +Michaelanthony +Michel +Mikeal +Milad +Mitch +Mizael +Moisses +Morris +Murphy +Naji +Nancy +Nasser +Nathanel +Nathon +Naveed +Naveen +Navjot +Nayib +Nevan +Newton +Niccolo +Noble +Obinna +Ocean +Olivier +Omeed +Ori +Oskar +Osmin +Palmer +Patric +Pearson +Pheng +Placido +Presley +Quaid +Raleigh +Reyhan +Reza +Richardo +Ridge +Rocco +Roel +Roosevelt +Rubin +Rustin +Ryo +Saketh +Salem +Saxon +Seena +Sesar +Shareef +Shelton +Shreyas +Shyam +Siddarth +Son +Sukhman +Sultan +Sumit +Taariq +Tahir +Taiki +Tarek +Tejas +Terran +Theron +Tien +Tiger +Tj +Tommie +Travell +Trenten +Treshawn +Trinity +Tyrus +Usman +Uzziel +Vicent +Victormanuel +Viktor +Viliami +Vinay +Von +Wallace +Watson +Wayland +Wendell +Yasin +Yasser +Yonathan +Yuuki +Zakariya +Zavier +Zayn +Zayne +Zen +Daniel +Anthony +Jose +Andrew +Michael +Jacob +Joshua +Christopher +David +Matthew +Jonathan +Joseph +Brandon +Nicholas +Ryan +Christian +Kevin +Angel +Luis +Juan +Alexander +Justin +Jesus +Carlos +Brian +Nathan +William +Gabriel +John +Tyler +Adrian +Jason +Bryan +Ethan +Robert +Miguel +James +Alejandro +Eric +Zachary +Benjamin +Dylan +Samuel +Noah +Aaron +Isaac +Isaiah +Sebastian +Jordan +Kyle +Steven +Eduardo +Victor +Jorge +Julian +Oscar +Thomas +Cameron +Austin +Richard +Ricardo +Francisco +Alex +Diego +Fernando +Adam +Jack +Alexis +Antonio +Elijah +Jesse +Sean +Manuel +Andres +Jared +Cesar +Ivan +Nathaniel +Evan +Omar +Mark +Sergio +Javier +Cristian +Hunter +Edgar +Connor +Ian +Timothy +Gerardo +Mario +Hector +Roberto +Cole +Erick +Logan +Erik +Vincent +Ruben +Luke +Alan +Edward +Andy +Caleb +Jeremy +Charles +Marco +Joel +Seth +Patrick +Martin +Trevor +Jake +Cody +Raymond +Devin +Nicolas +Armando +Mason +Abraham +Garrett +Pedro +Henry +Enrique +Raul +George +Gustavo +Giovanni +Jeffrey +Lucas +Rafael +Blake +Kenneth +Edwin +Dominic +Jackson +Spencer +Paul +Alberto +Jeremiah +Leonardo +Marcus +Aidan +Marcos +Chase +Salvador +Emmanuel +Xavier +Josue +Derek +Gavin +Peter +Jaime +Julio +Israel +Saul +Moises +Shane +Bryce +Elias +Arturo +Fabian +Maxwell +Alfredo +Max +Stephen +Esteban +Johnny +Riley +Wyatt +Frank +Tanner +Pablo +Damian +Grant +Tristan +Brendan +Scott +Ernesto +Carson +Albert +Liam +Travis +Andre +Owen +Ramon +Danny +Jakob +Jimmy +Johnathan +Colin +Parker +Bradley +Gregory +Abel +Josiah +Jalen +Alec +Marc +Shawn +Hugo +Mitchell +Guillermo +Ismael +Bryant +Taylor +Hayden +Jaden +Jerry +Emilio +Rodrigo +Mathew +Steve +Jonah +Harrison +Nolan +Preston +Axel +Devon +Miles +Rene +Calvin +Dillon +Dustin +Lorenzo +Phillip +Santiago +Rodolfo +Colton +Roman +Donovan +Angelo +Oliver +Arthur +Collin +Tommy +Mauricio +Randy +Allen +Ronald +Eddie +Uriel +Brett +Alvaro +Alfonso +Casey +Ulises +Kobe +Clayton +Emanuel +Micah +Wesley +Kai +Simon +Ricky +Dakota +Felipe +Louis +Rogelio +Tony +Troy +Joe +Chad +Rudy +Jayden +Adan +Dennis +Cade +Conner +Gilberto +Dominick +Noe +Gilbert +Trent +Keith +Darren +Lance +Osvaldo +Brenden +Carter +Corey +Drake +Eli +Felix +Marvin +Efrain +Kaleb +Damien +Gage +Joaquin +Leonel +Allan +Chris +Dante +Jonathon +Bailey +Griffin +Malik +Skyler +Cooper +Cory +Drew +Ramiro +Mateo +Trenton +Agustin +Isaias +Leo +Philip +Issac +Moses +Adolfo +Lawrence +Levi +Chance +Donald +Zane +Gary +Noel +Joey +Kenny +Myles +Caden +Orlando +Elian +Larry +Nickolas +Tomas +Ignacio +Roger +Vicente +Zackary +Derrick +Humberto +Alvin +Dalton +Octavio +Darius +Aiden +Brayan +Douglas +Jessie +Kristopher +Charlie +Emiliano +Roy +Ezekiel +Chandler +Jaylen +Theodore +Kameron +Ali +Freddy +Quinn +Rigoberto +Nelson +Nikolas +Dean +Curtis +Maximilian +Walter +Alonso +Avery +Branden +Ezequiel +Colby +Russell +Cristopher +German +Kaden +Morgan +Kelvin +Brayden +Eugene +Mike +Zion +Ashton +Gonzalo +Ty +Aldo +Brennan +Dawson +Estevan +Landon +Ezra +Braden +Peyton +Brent +Damon +Isiah +Misael +Byron +Giovanny +Lukas +Nathanael +Ray +Amir +Jairo +Raymundo +Alonzo +Ariel +Brock +Cruz +Marlon +Payton +Rolando +Brady +Guadalupe +Shaun +Tristen +Zachariah +Alfred +Davis +Elvis +Malcolm +Ulysses +Cyrus +Nestor +Darian +Jayson +Solomon +Dane +Dorian +Efren +Johnathon +Leonard +Trey +Sam +Bryson +Elliot +Jace +Jay +Justice +Kristian +Conor +Isidro +Alexandro +Deandre +Keven +Tucker +Bruce +Fidel +Leon +Maurice +Micheal +Quentin +Sage +Bobby +Irvin +Jeffery +Jon +Zachery +Brendon +Joseluis +Luca +Melvin +Neil +Billy +Carl +Kieran +Kody +Oswaldo +Craig +Dario +Franklin +Garret +Jarrett +Rohan +Valentin +Ernest +Frankie +Braulio +Mohammad +Corbin +Cristobal +Gerald +Julius +Stanley +Everett +Genaro +Harry +Rodney +Santos +Tyson +Aron +Deven +Jonas +Kyler +Orion +Romeo +Ronaldo +Desmond +Heriberto +Jarod +Jasper +Jovanny +Marcelo +Bernardo +Giancarlo +Gianni +Jovany +Malachi +Ahmad +Ahmed +Isai +Junior +Kendrick +Maximillian +Nick +Sonny +Arnold +Beau +Carlo +Dallas +Graham +Izaiah +Jovani +Keanu +Louie +Maximiliano +Miguelangel +Willie +Camden +Davion +Gregorio +Jarred +Randall +Reginald +Ronnie +August +Eliseo +Everardo +Frederick +Grayson +Rahul +Raphael +Stefan +Addison +Derick +Isaak +Wade +Will +Ben +Francis +Jadon +Juancarlos +Keegan +Marshall +Mauro +Tobias +Damion +Dominique +Giovani +Markus +Tyrone +Weston +Brody +Conrad +Dimitri +Holden +Lee +Milo +Reece +Skylar +Duncan +Gordon +Julien +Keenan +Kent +Khalil +Mohamed +Tylor +Wilson +Benito +Benny +Darrell +Howard +Johan +Mohammed +Pierce +Quinton +Stuart +Todd +Arman +Dangelo +Declan +Demetrius +Elmer +Reed +Reese +Rory +Terry +Tyrese +Ari +Cedric +Clay +Darin +Geoffrey +Harold +Jair +Kellen +Mariano +Reid +Rick +Devyn +Irving +Jovanni +Kendall +Marquis +Anton +Blaine +Elliott +Favian +Jordy +Kian +Maximus +Reynaldo +Sahil +Warren +Zackery +Antony +Asher +Jordon +Kade +Keaton +Koby +Ralph +Titus +Adalberto +Bennett +Ernie +Geovanni +Glenn +Joan +Jovan +Luc +Milton +Muhammad +Norman +Terrell +Alessandro +Bill +Cristofer +Dale +Darryl +Emerson +Jaron +Jerome +Josh +Marcanthony +Matteo +Osbaldo +Rey +Rylan +Terrence +Tyree +Walker +Adrien +Braeden +Jan +Nigel +Nikhil +Ramses +Roland +Coby +Forrest +Jamie +Lucio +Marcelino +Nico +Ronan +Ross +Ryder +Sammy +Tate +Winston +Arjun +Ayden +Edson +Erwin +Flavio +Geovanny +Hudson +Isac +Jamal +Jarrod +Jim +Long +Marcel +Nehemiah +Quincy +Sawyer +Terrance +Toby +Tristin +Aldair +Darien +Don +Fredy +Gerson +Harley +Hernan +Javon +Jefferson +Kareem +Ken +Quintin +Triston +Bruno +Camron +Davon +Dejon +Elisha +Enzo +Eriberto +Federico +Hamza +Ibrahim +Jaylin +Josef +Kane +Karl +Luciano +Niko +Robin +Ulices +Adriel +Andreas +Brennen +Brice +Dillan +Dion +Dwayne +Gino +Jackie +Jaiden +Jaxon +Marcoantonio +Maxim +Nathanial +Phoenix +Samson +Tariq +Alek +Dan +Darion +Devan +Dominik +Esau +Freddie +Isacc +Lane +Leobardo +Lewis +Perry +Reyes +River +Stephan +Talon +Abner +Abram +Anderson +Antoine +Cayden +Deangelo +Donte +Eddy +Gunnar +Jean +Jermaine +Jude +Justyn +Varun +Vladimir +Zaid +Adonis +Aman +Amari +Aram +Armen +Clark +Eloy +Finn +Jeff +Jordi +Kristofer +Kurtis +Nathen +Norberto +Obed +Reuben +Rocky +Theo +Tom +Ulisses +Claudio +Darnell +Glen +Jameson +Jaren +Jaycob +Jett +Kelly +Kurt +Lionel +Luiz +Marcello +Neo +Osmar +Paolo +Pranav +Royce +Santino +Sidney +Aditya +Asa +Bernard +Brenton +Cuauhtemoc +Darwin +Davin +Deshawn +Domingo +Donavan +Fermin +Geronimo +Jacky +Jamison +Johnson +Jorden +Kalvin +Lazaro +Mikel +Paris +Prince +Rex +Shannon +Sterling +Zechariah +Abdullah +Alden +Anish +Arian +Armani +Arnulfo +Daryl +Edgardo +Edmond +Franky +Greyson +Hassan +Keoni +Khalid +Kole +London +Mitchel +Neal +Shayan +Silas +Stone +Tim +Timmy +Trevon +Vaughn +Alexzander +Baltazar +Braxton +Eleazar +Ellis +Fredrick +Garett +Garrison +Horacio +Jabari +Jacobo +Johnpaul +Jonatan +Karson +Kolby +Lamar +Leif +Marko +Mustafa +Pete +Pierre +Rhys +Rickey +Semaj +Shamar +Truman +Vidal +Vikram +Vince +Alexandre +Amador +Armand +Bladimir +Brycen +Cullen +Domenic +Edmund +Franco +Grady +Guy +Imanol +Jaeden +Johnmichael +Keshawn +Leopoldo +Leroy +Luisangel +Markanthony +Mikael +Rami +Rowan +Samir +Shayne +Shea +Soren +Sunny +Tai +Uriah +Wayne +Ameer +Angus +Barry +Brad +Bret +Bronson +Caesar +Clifton +Dallin +Deon +Devonte +Ishmael +Jayce +Jedidiah +Jet +Johann +Justus +Kalani +Lonnie +Loren +Nash +Nima +Paulo +Ramsey +Reymundo +Rishi +Roderick +Salomon +Sarkis +Ubaldo +Valentino +Xander +Yair +Aurelio +Bilal +Blaise +Bradly +Brandan +Bryon +Dandre +Eden +Elvin +Enoch +Fred +Gerard +Harvey +Herbert +Isreal +Jessy +Job +Joseangel +Kamron +Kasey +Kenji +Keon +Kevon +Keyshawn +Laurence +Leandro +Leland +Madison +Matias +Neftali +Reilly +Renzo +Rosendo +Sheldon +Syed +Trinidad +Wilfredo +Aden +Ajay +Alijah +Arnoldo +Artemio +Austyn +Avi +Blair +Blaze +Ceasar +Chaz +Clemente +Cordell +Denis +Dereck +Dexter +Easton +Eliezer +Ervin +Gil +Ishan +Izaac +Izaak +Jamar +Jaydon +Jaylon +Jericho +Jevon +Johnnie +Kennedy +Kirk +Lamont +Lloyd +Luka +Milan +Nicklaus +Nikko +Niklas +Nikolai +Quinten +Santana +Shant +Sione +Terence +Tye +Yousef +Zaire +Zander +Abdul +Akhil +Amin +Anders +Aris +Brodie +Cain +Clarence +Clyde +Darrien +Darrion +Dave +Deonte +Destin +Earl +Esequiel +Finnegan +Gabino +Geovany +Gideon +Harris +Herman +Immanuel +Jelani +Jerardo +Jordin +Kainoa +Kory +Kylan +Lyle +Marques +Marquise +Moshe +Narek +Nicholaus +Omari +Ravi +Ryley +Sabastian +Salvatore +Sebastien +Shivam +Siddharth +Silvestre +Sydney +Valente +Van +Vance +Vincenzo +Vishnu +Yovani +Zack +Zain +Zakary +Akshay +Amar +Amit +Andru +Armon +Arron +Augustin +Augustine +Austen +Bradford +Chasen +Coleman +Danilo +Davonte +Dayne +Dayton +Draven +Dyllan +Elton +Greg +Kamren +Kevyn +Korey +Lars +Leslie +Maverick +Maximo +Neel +Porter +Remy +Richie +Rony +Seamus +Trystan +Uziel +Wilmer +Yash +Yonatan +Yonathan +Yusuf +Abhishek +Abran +Adin +Amos +Anson +Aric +Arvin +Arya +Benson +Boris +Braydon +Caelan +Daren +Dashawn +Deondre +Dino +Donnie +Ely +Erasmo +Filiberto +Gildardo +Hasan +Hilario +Iain +Irwin +Jaylan +Jeramiah +Jiovanni +Josemanuel +Jullian +Kadin +Kenyon +Keyon +Kiran +Lester +Manav +Marcell +Parth +Presley +Quinlan +Raven +Rian +Rio +Rohit +Roshan +Sami +Simeon +Skye +Stephon +Tobin +Tre +Vinh +Willem +Abdiel +Arath +Armin +Aubrey +Aydin +Blas +Bo +Brandyn +Caiden +Carlton +Chester +Cian +Clifford +Colten +Daron +Darrick +Dax +Demetri +Dhruv +Ean +Eder +Edison +Edwardo +Eliazar +Emil +Emmett +Erich +Erin +Esdras +Ever +Fletcher +Floyd +Forest +Haden +Hans +Hanson +Izayah +Jaedon +Jamari +Jasson +Jerod +Jessi +Juanpablo +Kahlil +Kaiden +Kain +Karim +Landen +Lucca +Lucian +Mackenzie +Marley +Massimo +Mohamad +Natan +Nicklas +Oskar +Otto +Pavel +Paxton +Rasheed +Rigo +Rudolph +Ryland +Ryu +Sameer +Shemar +Silverio +Spenser +Theron +Trace +Trevion +Wilber +Xzavier +Yosef +Abelardo +Abhinav +Ace +Adal +Akash +Akira +Amado +Andrey +Anirudh +Aramis +Ashwin +Augustus +Baron +Bjorn +Brando +Camilo +Camren +Canaan +Cash +Chace +Christofer +Cristo +Cristoval +Dashiell +Deion +Delfino +Denzel +Deron +Donny +Dorien +Duane +Duke +Eliot +Ethen +Gareth +Garry +Geovani +Gian +Humza +Ilan +Ishaan +Jafet +Jarett +Jayro +Jered +Jonathen +Joshue +Justen +Kayden +Keshaun +Kobi +Layne +Lenin +Manny +Matt +Maxime +Maxx +Mickey +Mykel +Myron +Nikola +Nikolaus +Osman +Otoniel +Patricio +Rashad +Reagan +Reggie +Rico +Romario +Roque +Rylee +Servando +Shaan +Shreyas +Stefano +Ted +Thai +Tigran +Trayvon +Trever +Tristian +Tyrell +Yuki +Alton +Amani +Ammon +Andrez +Andrue +Arik +Armaan +Arnav +Ashley +Atticus +Aviv +Benedict +Bijan +Bishop +Brooks +Campbell +Cannon +Charley +Ciro +Cisco +Darrian +Darrin +Demitrius +Dilan +Dionicio +Edgard +Eladio +Fausto +Flynn +Fransisco +Gamaliel +Gannon +Gene +Giorgio +Giuseppe +Heath +Hiram +Ira +Izak +Jeancarlo +Jennifer +Jensen +Jerrick +Jess +Jhonatan +Jimmie +Jonnathan +Judah +Keagan +Keandre +Kris +Kyree +Lauro +Levon +Lino +Luther +Makai +Malek +Marino +Marquez +Marshawn +Mathieu +Matthias +Mekhi +Merrick +Migel +Montgomery +Nicolo +Osmin +Rayan +Reno +Rhett +Rivaldo +Savion +Sherman +Shiloh +Silvano +Tayler +Thaddeus +Travon +Turner +Vernon +Vivek +Zavier +Zephaniah +Abdallah +Abdulrahman +Aleksander +Alen +Ambrose +Anibal +Aristeo +Armondo +Aryan +Aydan +Ayush +Braiden +Branson +Broc +Canyon +Clinton +Dajon +Darrel +Davian +Demetrio +Denny +Dylon +Edan +Ephraim +Esai +Esgar +Esteven +Fabricio +Farhan +Gaige +Gaurav +Geno +Giovany +Gunner +Hadi +Hakim +Harout +Houston +Hussein +Imran +Isael +Izac +Jacques +Jai +Jajuan +Jamel +Jamil +Jasen +Jaskarn +Jayvon +Jeric +Johnatan +Jonny +Jorgeluis +Juanmanuel +Kalen +Kamran +Karan +Kekoa +Kelsey +Kelton +Keshav +Lenny +Linus +Major +Marcellus +Markell +Maximillion +Menachem +Michaelangelo +Mihir +Miller +Missael +Mynor +Nam +Navid +Nikita +Nikolaos +Nomar +Odin +Omid +Parsa +Rajan +Rayshawn +Renato +Rojelio +Ron +Ronin +Ronny +Rufino +Sachin +Saif +Samer +Scotty +Shay +Sky +Soham +Stevan +Surya +Syrus +Taj +Takoda +Teddy +Tracy +Trae +Vinay +Vincente +Vishal +Vito +Westin +Westley +Wilbert +Willis +Youssef +Zeus +Abisai +Adithya +Alain +Alfonzo +Anakin +Andrei +Andruw +Ansel +Anuj +Archie +Arden +Aria +Arun +Asad +Brallan +Brandt +Brennon +Broderick +Cal +Cale +Callum +Canon +Carmelo +Cecil +Celso +Charly +Chauncey +Chayton +Chazz +Che +Chrystian +Cobi +Colt +Dagoberto +Dajuan +Dalen +Damani +Danniel +Darrius +Dasani +Daveon +Daylan +Delano +Demarco +Demonte +Denilson +Deshon +Devlin +Dewayne +Dezmond +Edrick +Elder +Eliel +Eliu +Elyjah +Emmet +Enoc +Eugenio +Eusebio +Faisal +Faraz +Francesco +Galen +Gautam +Gaven +Gevork +Hakeem +Hakop +Haris +Harjot +Harlan +Hezekiah +Hubert +Iman +Isaih +Isidoro +Issiah +Jaelen +Jailen +Jameel +Jarret +Javan +Jaydin +Jerrod +Jeshua +Joesph +Joseantonio +Joshuah +Jossue +Jovon +Jules +Jun +Juvenal +Kacey +Kale +Kalob +Kamryn +Karlo +Karlos +Karsten +Khari +Kingston +Kodie +Kristoffer +Langston +Lemuel +Luigi +Lyndon +Magnus +Malakai +Manpreet +Margarito +Marlin +Marlo +Maximino +Merlin +Michel +Mikey +Mohan +Monte +Nabil +Nahum +Natanael +Nazario +Ocean +Quin +Randolph +Reymond +Robbie +Rocco +Sal +Salman +Sanjay +Saxon +Schuyler +Shaquille +Shareef +Shelton +Sincere +Slater +Steele +Stewart +Sullivan +Sylvester +Taha +Tahj +Tenzin +Teodoro +Tevita +Thanh +Thor +Timoteo +Titan +Tylar +Ulyses +Ventura +Victormanuel +Williams +Yobani +Zacarias +Zeke +Abimael +Adair +Adnan +Adryan +Al +Alecsander +Ammar +Anand +Andrea +Anthoney +Anthoni +Armond +Art +Ashish +Athan +Azriel +Baldemar +Bashar +Bernardino +Bodie +Bowen +Brain +Brandin +Brigham +Calder +Cedrick +Christion +Christos +Cj +Cobey +Conan +Conrado +Cornelius +Corwin +Creed +Cristhian +Cyle +Daevon +Dain +Dameon +Dara +Dartagnan +Daven +Davit +Daylen +Demitri +Denver +Deontae +Derik +Devaughn +Devion +Dimas +Dmitri +Domenico +Domonique +Donaven +Donnell +Dontae +Dru +Dwight +Dyllon +Earnest +Ed +Edric +Ehsan +Elan +Eliud +Eoin +Eros +Ezekial +Faustino +Flint +Fredi +Garrick +Gavyn +Genesis +Gianluca +Graeme +Hakob +Hamilton +Hank +Hansel +Haroon +Hasani +Heber +Henri +Hieu +Homero +Iban +Imani +Iverson +Jacoby +Jadin +Jaedan +Jagger +Jakari +Jalani +Jaleel +Jalin +Jarell +Jarren +Jarvis +Javen +Jaxson +Jayme +Jaysen +Jeanluc +Jeanpaul +Jeovanny +Jerimiah +Jessica +Jhonathan +Joeseph +Johny +Jordyn +Josedejesus +Josias +Jr +Juandiego +Juanjose +Juaquin +Juwan +Kaito +Karthik +Keion +Kellan +Kenan +Kennith +Kenton +Kerry +Khaled +Khristian +Kobie +Kodi +Koji +Krishna +Kunal +Kyron +Latrell +Lazarus +Lincoln +Lizandro +Luisenrique +Maceo +Mahmoud +Marciano +Marck +Maria +Marty +Mateen +Maynor +Micaiah +Michelle +Milad +Minh +Mister +Napoleon +Naythan +Nicolaus +Nishant +Noa +Obadiah +Olivier +Omri +Oziel +Ozzy +Palmer +Payne +Percy +Perrion +Quan +Raffi +Rajiv +Rashid +Remington +Rickie +Rishab +Robby +Roel +Rommel +Rosalio +Royal +Rudolfo +Ryo +Ryon +Sagar +Sandro +Selvin +Serafin +Sergey +Sevastian +Sriram +Suraj +Tejas +Tommie +Tyriq +Tyron +Tyshawn +Umar +Vijay +Virgil +Waylon +Wiley +Wolfgang +Ysidro +Zacary +Zakaria +Zayne +Aakash +Aayush +Abbas +Abrahan +Adarsh +Adiel +Aedan +Aj +Ajani +Akeem +Aksel +Alecxis +Alexi +Alexsis +Anas +Anastacio +Anmol +Anthonie +Antoni +Antonino +Antwan +Arash +Aren +Arsen +Arsh +Artin +Artur +Asael +Ashkon +Asim +Avinash +Axell +Ayman +Barrett +Basil +Basilio +Bayron +Bernabe +Boaz +Bradlee +Bradon +Bradyn +Braedon +Brannon +Brayam +Brendyn +Bryton +Candido +Carlitos +Cary +Chadwick +Chancellor +Ciaran +Clint +Codi +Coleton +Colter +Coltrane +Cortez +Cosme +Crispin +Cutter +Cy +Damari +Dana +Deacon +Delvin +Delvon +Deric +Deshaun +Dragon +Dutch +Eathan +Edmundo +Elbert +Elio +Eliott +Enrrique +Eriq +Evander +Even +Ewan +Feliciano +Felipedejesus +Franciscojavier +Frederic +Froylan +Garen +Gaspar +Gray +Griffen +Haiden +Hugh +Igor +Isaiha +Ismail +Jacinto +Jacquez +Jade +Jakeb +Jamiel +Jaquan +Jaret +Javin +Jaxen +Jeffry +Jehu +Jerell +Jeremias +Jeremyah +Jerick +Jerico +Jeronimo +Jerson +Jesiah +Jezreel +Jhovany +Jin +Jjesus +Joao +Jorje +Josemaria +Kabir +Kaelan +Kaelen +Karen +Karo +Kasra +Kaveh +Kavon +Kayne +Keller +Keng +Khoa +Khoi +Kiel +Killian +Kingsley +Kirby +Kohl +Kolton +Konner +Konnor +Konrad +Krishan +Kush +Lakota +Laron +Lauren +Lavelle +Lawson +Leandre +Lejon +Lorenso +Lowell +Maleek +Markel +Martell +Mathias +Maurisio +Mavrick +Maximilien +Meelad +Merced +Michaelanthony +Mika +Mikah +Mikhail +Modesto +Morris +Muhammed +Mychael +Naman +Nasir +Naveen +Nevin +Nicky +Niles +Nolen +Octavian +Oracio +Osiris +Paige +Porfirio +Rain +Rajvir +Ramy +Rayvon +Raziel +Remi +Renan +Riku +Romel +Romello +Romero +Ronnell +Rueben +Russel +Sabino +Saige +Sammuel +Sandeep +Sander +Saulo +Scot +Scottie +Shadi +Shon +Sixto +Slade +Socrates +Tallon +Tanay +Taran +Tarek +Tavian +Tejon +Tevin +Tj +Tor +Tou +Trevin +Treyvon +Trystin +Tuan +Tyran +Tyreese +Tyrique +Tyus +Usiel +Val +Viet +Viktor +Walid +Wendell +Wyland +Yael +Yahya +Yaseen +Yordi +Yuma +Yusef +Zacharias +Zaki +Zayd +Zeth +Zev +Ziad +Aamir +Abigail +Adi +Adriano +Ahmir +Akili +Albino +Aldahir +Alejandra +Alejo +Aleksei +Alesandro +Alexandra +Alexei +Alexes +Alexsandro +Alexys +Alphonso +Aly +Amaan +Amadeus +Amilcar +Amogh +Andi +Andree +Aneesh +Angello +Anjel +Anselmo +Anwar +Ares +Argenis +Arie +Aries +Arin +Arjan +Arlo +Ashkan +Assael +Astin +Augusto +Auston +Avraham +Ayrton +Azad +Azael +Azrael +Babyboy +Bakari +Baxter +Beck +Benigno +Benjamen +Blaize +Bogdan +Boyd +Brydon +Caeden +Callahan +Camryn +Cassidy +Cassius +Cesario +Cezar +Chirag +Christan +Christianpaul +Christo +Christoper +Cipriano +Colson +Corban +Cormac +Cris +Dade +Daemon +Dakotah +Daquan +Darek +Darnel +Daylin +Dayveon +Deepak +Dejohn +Demarcus +Demond +Dennys +Dequan +Derian +Devante +Diamond +Dijon +Dillion +Donell +Donnovan +Duy +Eben +Eber +Edder +Edgerrin +Edrees +Eduard +Edvin +Eian +Eithan +Eldon +Eliab +Eligio +Elihu +Elija +Elizabeth +Elyas +Emery +Emir +Ennis +Enrico +Erron +Erubey +Estephan +Ethyn +Etienne +Evaristo +Eyan +Fabrizio +Favio +Filemon +Finley +Florentino +Florian +Ford +Foster +Freeman +Gagandeep +Galdino +Garren +Garrin +Gavino +Gibran +Gibson +Gurpreet +Haig +Haley +Hamzah +Harutyun +Hayes +Henrry +Hilton +Hipolito +Hisham +Hovanes +Indigo +Isa +Ivann +Jacari +Jacqueline +Jad +Jaedyn +Jaeger +Jaelin +Jaelyn +Jahari +Jahaziel +Jahir +Jairon +Jalon +Jamaal +Jamin +Jamir +Jasiah +Jaskaran +Jasmine +Javonte +Jax +Jaylyn +Jayven +Jaziah +Jaziel +Jedediah +Jens +Jeovanni +Jeovany +Jerad +Jeramy +Jerred +Jesusjr +Jhoan +Jihad +Jilberto +Jiovani +Johnathen +Josealberto +Jovannie +Juandaniel +Juandedios +Juanluis +Justine +Justo +Juventino +Kailer +Kaine +Kalin +Kamari +Kartik +Kasen +Kayvon +Kc +Keelan +Keilan +Kendric +Kentaro +Keondre +Kesean +Kevork +Keyshaun +Khang +Kiet +Kilian +King +Kishan +Klaus +Koa +Kolin +Korbin +Kordell +Krisna +Kye +Kylin +Kyrese +Laurent +Lawton +Leighton +Leonides +Leron +Levy +Lisandro +Lorenz +Lucky +Luisfernando +Malcom +Maliq +Manjot +Manvir +Markos +Marquel +Martel +Matan +Mattias +Maurilio +Maxfield +Maxton +Mckay +Michal +Michelangelo +Mikal +Millen +Mitch +Moyses +Murad +Nabeel +Nahun +Naseem +Nery +Niall +Nihal +Nile +Nolberto +Nyle +Omer +Oren +Oswald +Otis +Ozzie +Paden +Patric +Paulino +Pavan +Pieter +Ponciano +Prescott +Quran +Ransom +Rashawn +Rees +Refugio +Regino +Renee +Rich +Riki +Rion +Rishabh +Rithvik +Rito +Ritvik +Robinson +Rock +Rodger +Rohith +Rolan +Rushil +Ryen +Ryker +Sabian +Sabin +Saeed +Sasha +Semaje +Sevag +Severiano +Severin +Shae +Shaine +Shelby +Shiv +Shyam +Sina +Smith +Sohan +Sohrob +Srikar +Sylas +Tam +Tarik +Terrel +Thien +Toribio +Torin +Treyton +Tyre +Tyrek +Tyreke +Usman +Vaibhav +Valentine +Vineet +Vinnie +Vladislav +Wallace +Wilfrido +Willy +Yahir +Yamil +Yarden +Yasser +Yeng +Yoel +Yoni +Zach +Zarek +Zen +Zenon +Zuriel +Zyon +Daniel +Anthony +Andrew +Jose +Jacob +David +Michael +Joshua +Matthew +Christopher +Jonathan +Joseph +Angel +Kevin +Christian +Nicholas +Ryan +Brandon +Luis +Alexander +Jesus +Justin +Juan +Carlos +Ethan +Gabriel +Nathan +Jason +Dylan +William +Samuel +Tyler +Adrian +John +Brian +Bryan +Alejandro +Isaac +Robert +Benjamin +Miguel +James +Aaron +Isaiah +Eric +Noah +Zachary +Eduardo +Kyle +Julian +Jordan +Jorge +Sebastian +Steven +Thomas +Victor +Oscar +Elijah +Alex +Austin +Diego +Francisco +Fernando +Ricardo +Cameron +Ivan +Logan +Andres +Sean +Adam +Jack +Richard +Alexis +Cesar +Jesse +Jared +Antonio +Edgar +Cristian +Omar +Javier +Caleb +Manuel +Nathaniel +Luke +Ian +Connor +Evan +Mark +Sergio +Alan +Mason +Hector +Vincent +Erik +Ruben +Edward +Hunter +Cole +Joel +Marco +Roberto +Erick +Aidan +Devin +Andy +Mario +Timothy +Charles +Jake +Nicolas +Trevor +Giovanni +Abraham +Gerardo +Jackson +Pedro +Raymond +Patrick +Lucas +Armando +Seth +Martin +Dominic +Jeremy +Kenneth +Blake +Paul +Josue +Cody +Edwin +Gavin +George +Raul +Xavier +Jeremiah +Enrique +Henry +Alberto +Leonardo +Marcos +Rafael +Jaime +Damian +Garrett +Marcus +Spencer +Jeffrey +Gustavo +Saul +Chase +Emmanuel +Arturo +Derek +Salvador +Moises +Riley +Bryce +Julio +Maxwell +Elias +Johnny +Peter +Max +Shane +Axel +Israel +Liam +Wyatt +Alfredo +Fabian +Pablo +Tristan +Ernesto +Josiah +Owen +Colby +Jaden +Carson +Esteban +Jakob +Frank +Stephen +Travis +Andre +Scott +Ramon +Grant +Jonah +Tanner +Brendan +Albert +Alec +Miles +Jayden +Bradley +Ismael +Jimmy +Gregory +Johnathan +Parker +Colin +Rodrigo +Nolan +Danny +Bryant +Hayden +Hugo +Jalen +Abel +Shawn +Roman +Allen +Mauricio +Angelo +Santiago +Emilio +Phillip +Marc +Donovan +Dillon +Devon +Taylor +Preston +Mathew +Guillermo +Steve +Carter +Calvin +Mitchell +Jerry +Simon +Micah +Randy +Aiden +Kai +Adan +Harrison +Dustin +Oliver +Kaleb +Joe +Alfonso +Rene +Emanuel +Kobe +Mateo +Lorenzo +Arthur +Cooper +Rodolfo +Collin +Ronald +Caden +Uriel +Damien +Dante +Casey +Eli +Noe +Gage +Cade +Chris +Gilberto +Osvaldo +Maximus +Ulises +Wesley +Clayton +Ramiro +Rogelio +Darren +Felix +Jessie +Colton +Eddie +Felipe +Marvin +Tommy +Brett +Levi +Issac +Troy +Conner +Derrick +Jonathon +Louis +Rudy +Skyler +Vicente +Tony +Dennis +Emiliano +Malik +Ricky +Efrain +Humberto +Leonel +Dakota +Trent +Moses +Lance +Alvaro +Gilbert +Brayan +Isaias +Dominick +Joaquin +Leo +Theodore +Agustin +Noel +Nikolas +Brayden +Malachi +Trenton +Braden +Brenden +Corey +Rigoberto +Gary +Keith +Ezekiel +Philip +Dean +Drew +Griffin +Russell +Kenny +Nelson +Roger +Ignacio +Adolfo +Kaden +Zackary +Allan +Chad +Cory +Kameron +Alvin +Charlie +Darius +Drake +Jayson +Ali +Curtis +Maximilian +Larry +Orlando +Freddy +Johan +Jaylen +Aldo +Tomas +Myles +Nickolas +Jairo +Lawrence +Donald +Douglas +Dalton +Brady +Maximiliano +Walter +Peyton +Isiah +Joey +Octavio +Quinn +Roy +Amir +Ezequiel +Jay +Ulysses +Alonso +Chandler +Jair +Brent +Chance +Kristopher +Oswaldo +Zane +Zion +Ezra +Ty +Bryson +Damon +Bailey +Branden +Lukas +Brennan +Mike +Ashton +Marlon +Estevan +Dawson +Cristopher +Morgan +Nestor +Romeo +Avery +Cruz +Giovanny +Rolando +Carl +Davis +Cristobal +Tristen +Landon +Zachariah +Cyrus +Dane +Efren +German +Gonzalo +Luca +Alfred +Bruce +Eugene +Fidel +Kelvin +Leon +Ahmad +Alonzo +Dorian +Julius +Misael +Tyson +Alexandro +Deandre +Guadalupe +Elian +Kristian +Neil +Ronnie +Shaun +Melvin +Ariel +Billy +Darian +Jace +Reese +Tucker +Arnold +Bernardo +Elvis +Skylar +Brock +Dario +Frederick +Jordy +Sage +Isai +Jasper +Nathanael +Reece +Payton +Elliot +Elmer +Francis +Jovani +Kieran +Conor +Jarod +Jonas +Kyler +Leonard +Rohan +Tobias +Corbin +Hudson +Mohammad +Jon +Jovanny +Solomon +Trey +Brody +Camden +Frankie +Kody +Maurice +Orion +Quincy +Sam +Weston +Dallas +Declan +Franklin +Giancarlo +Craig +Devan +Jamal +Jett +Johnathon +Keanu +Kian +Quentin +Ray +Santos +Valentin +Zackery +Damion +Genaro +Heriberto +Irvin +Junior +Louie +Marcelo +Marshall +Micheal +Reed +Wilson +Ahmed +Desmond +Ernest +Jarrett +Jerome +Jovanni +Jovany +Miguelangel +Ben +Braulio +Eliseo +Justice +Terry +Tristin +Warren +Antony +Benny +Byron +Nikhil +Pranav +Raymundo +Stanley +Bobby +Coby +Duncan +Everett +Gordon +Izaiah +Jadon +Juancarlos +Julien +Kade +Harry +Joseluis +Keven +Khalil +Arman +Brendon +Demetrius +Elliott +Garret +Gerald +Holden +Muhammad +Ralph +Ronaldo +Deven +Jaiden +Jaron +Jeffery +Joan +Luciano +Milton +Sterling +Ayden +Imanol +Marcelino +Rodney +Aron +Benito +Bennett +Dale +Mariano +Mohammed +Nico +Sonny +Asher +Beau +Everardo +Isaak +Josh +Keaton +Semaj +Karl +Kolby +Maximillian +Milo +Rylan +Willie +Ari +Carlo +Cedric +Derick +Finn +Harold +Jude +Marcel +Rahul +Yusuf +Zachery +Deshawn +Gino +Hernan +Keegan +Malcolm +Marcoantonio +Marquis +Reginald +Reynaldo +Stefan +Todd +Arjun +Geoffrey +Gianni +Giovani +Koby +Nick +Quintin +Sebastien +Silas +Tyrone +Adrien +Horacio +Jermaine +Kendrick +Mauro +Nathen +Osbaldo +Randall +Tate +Braeden +Dominik +Favian +Graham +Grayson +Hassan +Jamie +Maximo +Roland +Ross +Sammy +Santino +Tom +Aditya +Blaine +Dominique +Forrest +Fredy +Geovanni +Jonatan +Jordi +Lee +Markus +Phoenix +Quinton +Raphael +Rey +Addison +Adriel +Alessandro +Anton +Bruno +Darwin +Dimitri +Elisha +Isidro +Jagger +Jan +Ken +Lewis +Reid +Sahil +Toby +Tyrese +Zechariah +Dan +Erwin +Gregorio +Jarred +Jessy +Kane +Kellen +Lucio +Pierce +River +Sidney +Stuart +Andreas +August +Bernard +Clay +Conrad +Dangelo +Devyn +Edson +Emerson +Irving +Josef +Jovan +Kareem +Luiz +Niko +Reuben +Samir +Stephan +Terrance +Titus +Walker +Will +Xander +Antoine +Aryan +Brennen +Dion +Isac +Jamar +Jarrod +Jaxon +Jefferson +Jim +Kendall +Lionel +Marcanthony +Mohamed +Stone +Triston +Tyree +Valentino +Abram +Aden +Darin +Davion +Dayton +Javon +Judah +Kurtis +Leopoldo +Paolo +Robin +Timmy +Abner +Cayden +Darien +Eddy +Edgardo +Jayce +Jaycob +Jean +Luisangel +Luka +Maverick +Sameer +Abelardo +Arian +Coleman +Flavio +Guy +Jaylin +Jeff +Kole +Leobardo +Maxim +Nehemiah +Neo +Rick +Rory +Terrell +Wayne +Ajay +Anderson +Arnulfo +Bill +Bret +Darrell +Davin +Hamza +Howard +Jaren +Jaydon +Jordon +Kristofer +Lino +Luc +Matteo +Mekhi +Obed +Richie +Rohit +Sabastian +Sawyer +Sheldon +Zain +Anson +Brad +Camron +Cristofer +Don +Gunnar +Ibrahim +Jackie +Kennedy +Kent +Lincoln +Ramses +Rocky +Trevon +Vance +Yash +Aldair +Alexandre +Amari +Augustine +Dallin +Dillan +Freddie +Harley +Ishaan +Jerald +Kris +Lane +Marcello +Markanthony +Nigel +Pierre +Reyes +Sky +Terrence +Tylor +Anish +Aurelio +Ceasar +Clarence +Darion +Darryl +Davon +Edmund +Eriberto +Filiberto +Fred +Geovanny +Glen +Keoni +Kory +Kurt +Lamar +Matias +Milan +Mustafa +Rhys +Rishi +Sami +Shayne +Sunny +Talon +Ulisses +Zander +Alek +Armen +Clark +Donte +Eleazar +Ellis +Emmett +Fermin +Gene +Geovany +Glenn +Jaeden +Jaylon +Jericho +Khalid +Leandro +London +Nikolai +Norberto +Perry +Salvatore +Samson +Seamus +Tariq +Abdullah +Aman +Armani +Ashwin +Clifford +Ernie +Federico +Franco +Fransisco +Gaven +Gerson +Jabari +Jai +Jameson +Jelani +Johnson +Jorden +Keenan +Korey +Nathanial +Ronan +Ryder +Salomon +Shayan +Tyrell +Varun +Vince +Vladimir +Wade +Winston +Adalberto +Adonis +Alijah +Amit +Armand +Armon +Blaise +Boris +Brice +Claudio +Demetrio +Eder +Emil +Ever +Gabino +Hilario +Isael +Jaheim +Johnpaul +Kalvin +Keon +Mohamad +Neel +Norman +Paulo +Randolph +Rashad +Rocco +Ulices +Vincenzo +Yovani +Alexzander +Angus +Aria +Bilal +Camren +Dajon +Darnell +Darrius +Dylon +Eden +Enzo +Gamaliel +Gannon +Ishmael +Jess +Kaiden +Kalani +Kayden +Lazaro +Leif +Leroy +Malakai +Paris +Rowan +Soren +Travon +Abhinav +Alden +Anirudh +Aric +Arnav +Brando +Bronson +Caesar +Cian +Darrin +Destin +Dwayne +Giovany +Gunner +Hiram +Immanuel +Jafet +Jet +Johann +Johnnie +Jordyn +Justus +Kenji +Keyshawn +Lars +Margarito +Marko +Mihir +Nikko +Omari +Remington +Ryley +Tai +Ted +Tejas +Tre +Vincente +Zakary +Anders +Andrey +Aram +Aries +Armaan +Arnoldo +Asa +Avi +Barry +Braxton +Darrion +Denzel +Dereck +Dexter +Ean +Earl +Gideon +Harvey +Izaac +Jevon +Joseangel +Kasey +Kelly +Kevyn +Kirby +Kirk +Maxx +Narek +Neal +Osiel +Osman +Quinten +Reagan +Reilly +Remy +Rex +Rico +Rivaldo +Rosendo +Shea +Simeon +Terence +Tim +Trace +Wilmer +Yair +Yonatan +Yousef +Zaid +Abrahan +Akhil +Andrik +Arath +Atticus +Barrett +Blaze +Camilo +Davian +Dejon +Denilson +Deon +Dhruv +Donnell +Dyllan +Edmond +Edmundo +Eloy +Elvin +Faustino +Fausto +Greg +Ishan +Jacobo +Jaret +Jaxson +Joahan +Josedejesus +Josemanuel +Jullian +Kainoa +Karim +Karson +Marcellus +Mathias +Mitchel +Myron +Prince +Renato +Rishab +Royce +Santana +Servando +Shaan +Shamar +Siddharth +Taj +Trinidad +Tyron +Wilfredo +Xzavier +Yosef +Ammon +Anjel +Arron +Arya +Augustin +Baltazar +Bishop +Brandyn +Brenton +Brycen +Caelan +Caiden +Callum +Carsen +Clemente +Colten +Cuauhtemoc +Dandre +Dave +Demetri +Denis +Deshaun +Devante +Devonte +Domingo +Donavan +Draven +Edwardo +Enoch +Garrison +Grady +Harout +Harris +Isacc +Izak +Jacky +Jade +Jaylan +Jensen +Jerimiah +Jimmie +Job +Kadin +Kamron +Karan +Karthik +Keshawn +Killian +Kolton +Krishna +Kylan +Kyree +Lamont +Marcell +Marley +Natanael +Nima +Pete +Refugio +Rickey +Roderick +Ryland +Thaddeus +Theo +Torin +Ulyses +Uziel +Vidal +Vikram +Zack +Zuriel +Akshay +Alton +Benson +Bladimir +Bo +Braedon +Brooks +Cannon +Celso +Chaz +Clinton +Daren +Daryl +Deanthony +Denny +Deonte +Dev +Donavon +Easton +Edison +Elton +Erich +Fletcher +Franky +Fredrick +Geovani +Gus +Hezekiah +Jaelen +Jamari +Jamison +Jedidiah +Johny +Jordin +Kamren +Korbin +Landen +Leslie +Lisandro +Luigi +Marcial +Nevin +Noa +Otto +Rami +Raven +Rhett +Sandro +Shannon +Shant +Shreyas +Silvestre +Tobin +Trever +Trystan +Vaughn +Willy +Zeus +Adin +Andrei +Aren +Art +Augustus +Ayush +Bjorn +Blair +Bradly +Celestino +Christofer +Clyde +Cullen +Daylen +Delfino +Duane +Dwight +Erasmo +Esdras +Ethen +Gael +Gildardo +Heath +Herman +Homero +Iverson +Jaedon +Jancarlo +Jaquan +Jaykob +Jonny +Josias +Jourdan +Juanmanuel +Justyn +Kabir +Kahlil +Kaleo +Kevon +Leland +Lester +Magnus +Marck +Markell +Marquise +Mathieu +Matthias +Menachem +Mikel +Nicholaus +Nile +Porter +Presley +Reymundo +Romario +Romel +Savion +Skye +Teddy +Vernon +Westin +Zeke +Amador +Ameer +Ammar +Amos +Aramis +Asael +Austyn +Bijan +Brennon +Cain +Cassius +Danniel +Devlin +Donnie +Eamon +Elan +Emery +Esau +Fabio +Garett +Gavyn +Geronimo +Gian +Gianluca +Hans +Hanson +Isreal +Izaak +Jacques +Jakub +Jerardo +Joseantonio +Juvenal +Keonte +Keyon +Konnor +Kylen +Langston +Layne +Lucian +Luisfernando +Makai +Maxime +Michaelangelo +Mikael +Nader +Nery +Nikola +Paulino +Raudel +Raymon +Rio +Rithik +Rommel +Ron +Ronin +Rony +Rudolph +Shemar +Shivam +Sincere +Sione +Slater +Sriram +Syed +Sylvester +Teodoro +Thai +Tommie +Truman +Turner +Valente +Vinh +Vishal +Wilbert +Wiley +Yonathan +Abdul +Abdulrahman +Akash +Akira +Alexei +Amar +Ankit +Antoni +Aris +Artemio +Arvin +Aydin +Beck +Benedict +Braiden +Brannon +Briant +Brodie +Caeden +Calum +Campbell +Camryn +Carlosmanuel +Charly +Chester +Coleton +Colt +Corwin +Cristo +Curran +Dashawn +Dashiell +Derik +Dilan +Domenic +Donny +Donovin +Duke +Edvin +Ely +Enrrique +Eugenio +Fabricio +Francesco +Gaspar +Gevork +Hadi +Heber +Hugh +Jadyn +Jasen +Jasson +Jayvon +Jeramiah +Jered +Jiovanni +Jules +Kalen +Kenan +Kenton +Kenyon +Kunal +Lloyd +Loren +Mackenzie +Mahmoud +Manav +Markel +Marlo +Mickey +Migel +Mykel +Nate +Nikita +Niklas +Niles +Quinlan +Sahib +Sidharth +Theron +Tino +Trenten +Tristian +Vishnu +Williams +Zacharias +Aayush +Abran +Adriano +Akili +Aleksei +Alekzander +Alen +Amani +Amin +Amogh +Andranik +Andru +Ansh +Antwan +Archie +Ashley +Azariah +Beckett +Benicio +Bernabe +Bodhi +Braydon +Caillou +Canyon +Carsten +Cezar +Chet +Christain +Ciaran +Ciro +Dajuan +Darrian +Dartagnan +Dayne +Demarco +Demitri +Dino +Donavin +Edgard +Elyjah +Eoin +Esai +Evaristo +Fabrizio +Fidencio +Finnegan +Florencio +Floyd +Flynn +Ford +Gaige +Garrick +Gaurav +Gerard +Gil +Giorgio +Harlan +Hasan +Huy +Iain +Imran +Iran +Iziah +Jad +Jamil +Jarren +Jaycee +Jayro +Jaysen +Jihad +Jovon +Juanjose +Juanpablo +Kalob +Kiran +Konner +Lenny +Lizandro +Lucca +Massimo +Matt +Mattias +Micaiah +Mikhail +Monte +Naim +Nils +Noam +Omid +Oskar +Osmar +Porfirio +Quan +Raj +Rayshawn +Rian +Ritvik +Ronny +Roque +Rueben +Ryker +Rylee +Saad +Sarkis +Schuyler +Selvin +Serafin +Shashank +Silvano +Stefano +Stevan +Stevie +Sullivan +Suraj +Tahj +Thanh +Tiger +Tracy +Tylan +Yuta +Abbas +Abhishek +Adil +Aj +Ajani +Alain +Alexys +Amadeo +Amadeus +Ana +Anakin +Anand +Andree +Andrick +Anwar +Arash +Aravind +Aristeo +Aristotle +Arlo +Augusto +Austen +Brandin +Branson +Cale +Cameren +Carlton +Case +Charley +Christianjames +Cisco +Corban +Cristhian +Damani +Danial +Darrick +Dasani +Daven +Daveon +Davonte +Deacon +Deangelo +Demario +Denver +Dezmond +Dijon +Dillion +Domenico +Donaven +Edan +Eliezer +Elio +Eliot +Ervin +Esteven +Fadi +Feliciano +Forest +Gentry +Gibson +Hagop +Hamilton +Hamzah +Herbert +Hubert +Humza +Hyrum +Iram +Irwin +Ismail +Issiah +Jalon +Jarek +Jarett +Jashua +Jax +Jeffry +Jennifer +Jeron +Jerrod +Johannes +Johnatan +Jossue +Justen +Juston +Juventino +Juwan +Kadyn +Kalib +Kavin +Keion +Kekoa +Kelton +Khang +Laurence +Layton +Long +Lucien +Macario +Magdiel +Manny +Marquez +Maximos +Mckinley +Michel +Mikal +Mizael +Modesto +Najee +Naveed +Naveen +Neftali +Nicklaus +Nikolaus +Omer +Ozzy +Pascual +Patricio +Paxton +Rajvir +Rayan +Ritchie +Rithvik +Royal +Sai +Sander +Sevastian +Shaheen +Shiv +Stephon +Sydney +Tevin +Thor +Trevion +Van +Viktor +Vinay +Virgil +Westley +Wilber +Yahya +Yaseen +Yazan +Youssef +Zavier +Aakash +Abdiel +Aksel +Amaan +Amado +Amandeep +Andrez +Aniket +Anselmo +Armond +Arun +Arvind +Aydan +Blas +Brandan +Broderick +Cecil +Cedrick +Chasen +Chayton +Clifton +Colson +Conan +Coy +Cristoval +Cuahutemoc +Damen +Dana +Danilo +Dany +Dax +Deegan +Delano +Demonte +Desean +Dmitri +Domonic +Dontae +Dupree +Dustyn +Elbert +Elder +Eliel +Enoc +Erin +Erubiel +Etienne +Eulises +Evin +Faisal +Faraz +Faris +Fredi +Gauge +Gautam +Gavino +Gehrig +Genesis +Giovan +Giuseppe +Gorge +Haden +Haider +Hakeem +Hakop +Harjot +Harman +Haydn +Hazael +Henri +Ilias +Isaih +Izac +Jaedyn +Jaelin +Jahmal +Jamel +Jareth +Jarin +Jarom +Jarret +Javan +Javen +Javion +Jaymes +Jayshawn +Jed +Jeovany +Jerad +Jerson +Jeshua +Jessi +Joeseph +Johnmichael +Jomar +Jonathen +Jonnathan +Joshue +Justine +Kaelan +Kaileb +Kale +Kamari +Karo +Kavon +Keandre +Kevion +Kimo +Kohl +Kristoffer +Kwame +Lenin +Lennon +Levy +Linus +Lonnie +Mack +Maher +Marek +Marion +Marius +Marshal +Marshawn +Masen +Mateen +Maurilio +Maxfield +Maximillion +Maynor +Memphis +Minh +Nabil +Nahum +Napoleon +Nathon +Naythan +Nehemias +Nolberto +Norris +Olegario +Olin +Oren +Parth +Percy +Raiden +Ramsey +Rashaad +Rasheed +Rayvon +Regan +Reggie +Renee +Robby +Roshan +Ryon +Sagar +Sal +Salim +Sammuel +Saulo +Scout +Shadi +Sherman +Sherwin +Silverio +Sina +Sol +Stewart +Storm +Tallon +Taran +Tarun +Tavian +Teagan +Tevita +Toribio +Uvaldo +Vitaliy +Vivek +Waylon +Willem +Yael +Yovany +Yuvraj +Zahir +Zaire +Zayd +Abimael +Abisai +Ace +Adryan +Akshat +Aleksander +Alfonzo +Amilcar +Andruw +Aneesh +Anibal +Anshul +Anthoni +Arin +Armin +Arshia +Askari +Atharva +Aubrey +Avraham +Axell +Ayaan +Baron +Bennet +Bentley +Bernardino +Boston +Bradford +Bryen +Callan +Carlosdaniel +Cary +Chauncey +Chazz +Christ +Christobal +Christos +Cobe +Cobi +Codey +Constantino +Cordell +Cornelius +Creighton +Dagoberto +Daichi +Dain +Damari +Danthony +Dara +Dariush +Daron +Darrel +Darrien +Dathan +Daylan +Daylon +Dedrick +Deion +Dejohn +Dejuan +Demarcus +Deontae +Derric +Devion +Dimitrios +Dionicio +Domenick +Dorien +Eber +Eberardo +Edilberto +Eladio +Eliaz +Emmet +Ephraim +Esequiel +Favio +Finlay +Finnian +Fisher +Fortino +Froilan +Froylan +Gagandeep +Galen +Gaston +Gerry +Giacomo +Gianmarco +Gregor +Greyson +Griffen +Hank +Haven +Henrik +Henrry +Hoang +Hovanes +Huriel +Ikaika +Ilan +Ira +Isaah +Jaccob +Jacinto +Jacoby +Jae +Jaeger +Jahleel +Jailen +Jaison +Jakeb +Jalin +Jamaal +Jashawn +Jasiah +Jasmine +Jaylyn +Jeremie +Jerrick +Jesiah +Jessica +Jeyson +Jhonatan +Joesph +Johncarlo +Joon +Jorell +Josafat +Josearmando +Josecarlos +Joshuah +Joziah +Jr +Juanluis +Juliano +Justinkyle +Justino +Kain +Kalin +Kamal +Kamran +Karandeep +Karsten +Kasen +Kason +Kaya +Kc +Keagan +Kellan +Kendric +Kerry +Khaled +Khari +Kimani +Kingsley +Kobi +Konrad +Lachlan +Laith +Lamberto +Latrell +Lauren +Lavonte +Luisalberto +Luisantonio +Magdaleno +Mahdi +Makoa +Malek +Manraj +Marino +Marquel +Marques +Matthieu +Maury +Mazen +Merlin +Merrick +Milad +Misha +Morris +Moshe +Moyses +Nam +Nasser +Nataniel +Navid +Niccolo +Nicklas +Niels +Obadiah +Ociel +Odin +Ori +Oseas +Oswald +Palmer +Pascal +Pavan +Pavel +Pheng +Philippe +Polo +Prabhjot +Quin +Raffi +Rajveer +Raziel +Ren +Rickie +Rigo +Roel +Ronit +Rudolfo +Rusty +Ruvim +Sabino +Sacha +Said +Samy +Sanjay +Sayed +Seiji +Shalom +Shan +Shaunt +Shelby +Siraj +Sixto +Srikar +Stacy +Stephanie +Sulaiman +Sultan +Syrus +Tal +Tarek +Tarik +Terance +Tiernan +Trevin +Trinity +Tye +Tyren +Uriah +Vadim +Vito +Waleed +Wes +Wilder +Yafet +Yahir +Yobani +Yordi +Yovanni +Yusef +Zach +Zakery +Zyan +Aamir +Aaronjoshua +Aaryan +Abdallah +Abdurrahman +Adiel +Adrean +Aedan +Akil +Akram +Al +Aleck +Aleksandar +Aleksandr +Alexi +Alias +Alondra +Alphonso +Amer +Andrea +Anmol +Anoop +Ansel +Anthonie +Antwon +Apolinar +Ara +Armoni +Arnel +Artin +Asim +Atom +Audie +Aundre +Auston +Avelino +Aven +Avishek +Axcel +Axl +Ayman +Aziz +Azriel +Baldomero +Baruch +Basil +Baylor +Bennie +Billal +Boaz +Bowen +Bradlee +Brain +Brallan +Brandt +Brayant +Broc +Broden +Brogan +Bryon +Bryton +Buddy +Caedmon +Cal +Calder +Canaan +Candelario +Candido +Carey +Carlitos +Carmelo +Cash +Cassidy +Cecilio +Cedar +Ceejay +Christoph +Cirilo +Clement +Clint +Codie +Conrado +Constantine +Cormac +Cornelio +Cornell +Cort +Cortez +Cosme +Crisanto +Cross +Curren +Cyle +Dabin +Daejon +Daemon +Dagan +Dakoda +Dakotah +Dalon +Damarea +Daniela +Davontae +Dayvon +Deante +Deaven +Demitrius +Demond +Derian +Dewayne +Dezmon +Dhillon +Dimas +Dimitry +Dionte +Dirk +Donyae +Drevon +Duy +Dyson +Eathan +Ed +Edin +Edwing +Eitan +Eliazar +Eligio +Elijha +Elijiah +Eliott +Eliu +Elon +Emily +Emir +Enrico +Erek +Eros +Eryk +Esgar +Ethyn +Faizan +Fionn +Florentino +Fox +Galvin +Garet +Gibran +Giovannie +Hansen +Hasani +Houston +Hussein +Imad +Iman +Imani +Isahi +Issa +Issaiah +Izayah +Jaciel +Jahaziel +Jahir +Jaidyn +Jairus +Jaleel +Jalil +Japheth +Jarell +Jarron +Javonte +Jaxen +Jazz +Jazziel +Jeancarlo +Jerrell +Jerron +Jessee +Jestin +Jhonathan +Jhonny +Jiovanny +Joao +Jorje +Josede +Josemaria +Josemiguel +Jovian +Juanantonio +Juandiego +Justinmichael +Kaelin +Kaito +Kali +Kalub +Kamar +Kamden +Kamryn +Kannon +Karapet +Karlo +Karlos +Karon +Karter +Kartik +Kaushik +Kavi +Kayleb +Keller +Kelley +Kendal +Kendale +Kennan +Kento +Kerwin +Keshav +Khoa +Khristopher +Khyree +Kilian +King +Kion +Koa +Kobey +Kodie +Kong +Kyran +Kyren +Lamonte +Laron +Larson +Lazarus +Lenard +Lennin +Leor +Logen +Logun +Maceo +Madison +Maison +Makoto +Maksim +Malaki +Malique +Manu +Marquan +Marquell +Martel +Marwan +Matan +Mathis +Maximino +Maxon +Mika +Mikhael +Missael +Mizraim +Montana +Mosiah +Muhammed +Muneeb +Mynor +Narciso +Nash +Natan +Neri +Nhan +Nicco +Nicolaus +Nicolo +Nikolaos +Nino +Nishant +Nomar +Omeed +Osama +Osmin +Otis +Oz +Patric +Payden +Phineas +Pierson +Race +Rafe +Raheem +Raheim +Rahman +Ralphie +Rashid +Ravi +Reinaldo +Renzo +Rishabh +Roan +Robbie +Robertanthony +Rodrick +Rojelio +Romen +Romero +Ronak +Roscoe +Rufino +Rury +Rustin +Ryen +Sachin +Saeed +Salem +Sartaj +Saxon +Seanpatrick +Sebastion +Seferino +Sequoia +Sevak +Seven +Sharif +Sho +Shon +Shravan +Shrey +Shubham +Sohail +Surya +Talib +Tavin +Tavion +Taylon +Tayvion +Teo +Terrion +Tito +Tomoki +Tonny +Tor +Tou +Trae +Trayvon +Treyton +Treyvon +TRUE +Tyon +Tyreek +Tyshaun +Tyshawn +Ubaldo +Urian +Uzziel +Viet +Vinayak +Vinnie +West +Wilberth +Wilbur +Wilfrido +Xaiver +Xavior +Yasser +Zacharia +Zahid +Zamir +Zamuel +Zephaniah +Zeth +Zev +Ziad +Daniel +Anthony +Andrew +Jose +Jacob +Joshua +Michael +David +Matthew +Christopher +Angel +Jonathan +Joseph +Alexander +Kevin +Ryan +Brandon +Ethan +Christian +Nicholas +Juan +Luis +Jesus +Nathan +Justin +Gabriel +Carlos +Adrian +Bryan +Jason +William +Samuel +Tyler +Brian +Dylan +James +Isaac +John +Diego +Miguel +Isaiah +Benjamin +Aaron +Alejandro +Robert +Eric +Julian +Zachary +Elijah +Noah +Jordan +Sebastian +Kyle +Eduardo +Victor +Jorge +Alex +Oscar +Steven +Austin +Jack +Thomas +Adam +Jesse +Richard +Francisco +Aidan +Ivan +Logan +Nathaniel +Ricardo +Andres +Cesar +Sean +Antonio +Fernando +Luke +Ian +Cameron +Manuel +Connor +Caleb +Dominic +Alexis +Evan +Cristian +Javier +Omar +Edgar +Jackson +Sergio +Jared +Alan +Vincent +Erick +Mario +Cole +Mason +Gavin +Lucas +Joel +Hunter +Roberto +Marco +Jeremy +Hector +Edward +Mark +Charles +Andy +Jeremiah +Devin +Erik +Nicolas +Ruben +Gerardo +Timothy +Abraham +Henry +Seth +Raymond +Giovanni +Trevor +Martin +Damian +Jake +Edwin +Xavier +Leonardo +Patrick +Jaden +Josue +Cody +George +Armando +Emmanuel +Rafael +Paul +Blake +Kenneth +Raul +Jeffrey +Alberto +Derek +Pedro +Owen +Jaime +Chase +Elias +Enrique +Gustavo +Liam +Peter +Marcus +Saul +Marcos +Tristan +Julio +Max +Shane +Salvador +Garrett +Arturo +Israel +Bryce +Riley +Spencer +Fabian +Josiah +Jayden +Ernesto +Maxwell +Moises +Johnny +Esteban +Aiden +Hayden +Wyatt +Alfredo +Pablo +Carson +Ramon +Danny +Travis +Andre +Grant +Johnathan +Kai +Stephen +Jimmy +Bradley +Ismael +Allen +Albert +Frank +Nolan +Tanner +Roman +Gregory +Miles +Brendan +Colin +Shawn +Axel +Donovan +Emilio +Scott +Angelo +Hugo +Jonah +Jakob +Bryant +Alec +Colby +Lorenzo +Mauricio +Phillip +Abel +Parker +Guillermo +Emanuel +Rodrigo +Oliver +Caden +Santiago +Simon +Emiliano +Damien +Osvaldo +Jalen +Harrison +Calvin +Mateo +Kaleb +Carter +Aldo +Melvin +Randy +Devon +Micah +Adan +Mathew +Cooper +Mitchell +Steve +Marc +Eddie +Chris +Gage +Leo +Dillon +Jessie +Joe +Noe +Rene +Alfonso +Darren +Eli +Casey +Collin +Dominick +Wesley +Dustin +Colton +Jerry +Cade +Louis +Rogelio +Ronald +Preston +Tony +Arthur +Ulises +Landon +Kobe +Griffin +Joaquin +Kaden +Taylor +Brayden +Issac +Maximus +Skyler +Brett +Yahir +Brayan +Clayton +Uriel +Levi +Ricky +Dakota +Dante +Conner +Felix +Allan +Alvaro +Tommy +Marvin +Noel +Rodolfo +Ty +Zane +Dennis +Derrick +Felipe +Gilberto +Johan +Lance +Malik +Ramiro +Rudy +Trent +Troy +Alvin +Ezekiel +Brady +Braden +Malachi +Adolfo +Maximiliano +Ashton +Jaylen +Philip +Russell +Freddy +Charlie +Lukas +Agustin +Ignacio +Corey +Cory +Gilbert +Zackary +Brenden +Donald +Kenny +Isaias +Orlando +Roger +Theodore +Efrain +Jonathon +Lawrence +Tomas +Dean +Vicente +Drew +Gary +Joey +Darius +Humberto +Larry +Octavio +Roy +Alonso +Keith +Leonel +Rigoberto +Quinn +Cristopher +Cyrus +Moses +Nelson +Nikolas +Trenton +Myles +Ali +Chance +Douglas +Jayson +Nickolas +Branden +Drake +Kameron +Luca +Jay +Ezequiel +Jair +Jairo +Kristopher +Rolando +Rohan +Dalton +Kyler +Alonzo +Ayden +Marlon +Maximilian +Trey +Gonzalo +Amir +Curtis +Julius +Byron +Mike +Oswaldo +Brennan +Brody +Chad +Nathanael +Damon +Jasper +Leon +Morgan +Bryson +Davis +Alexandro +Giovanny +Walter +Gael +Isiah +Joseluis +Brock +German +Isai +Tyson +Ulysses +Dawson +Eugene +Chandler +Ezra +Kelvin +Wilson +Ariel +Avery +Brent +Elliot +Justice +Reese +Tristen +Billy +Harry +Heriberto +Izaiah +Keven +Quentin +Cruz +Jace +Jonas +Nestor +Efren +Malcolm +Zion +Neil +Alfred +Bruce +Conor +Peyton +Ray +Romeo +Alessandro +Junior +Zachariah +Declan +Jadon +Johnathon +Jovanny +Misael +Tobias +Bailey +Hudson +Miguelangel +Orion +Ronnie +Braulio +Corbin +Fidel +Julien +Kody +Maximillian +Mohammad +Dorian +Guadalupe +Jovanni +Stanley +Brendon +Craig +Deven +Elvis +Jaiden +Leonard +Payton +Ronaldo +Sam +Zachery +Bernardo +Dane +Estevan +Jeffery +Kristian +Shaun +Beau +Darian +Deandre +Holden +Jovani +Warren +Asher +Kade +Keegan +Solomon +Ahmad +Ben +Camden +Eliseo +Frankie +Juancarlos +Marshall +Maurice +Micheal +Quincy +Sonny +Bennett +Bobby +Cristobal +Irvin +Reynaldo +Santos +Aron +Benny +Giancarlo +Rahul +Zackery +Bruno +Damion +Everett +Gerald +Jaxon +Joan +Jon +Josh +Reece +Sage +Silas +Aden +Arjun +Arman +Camron +Elmer +Enzo +Jude +Aditya +Braeden +Derick +Elliott +Ernest +Isaak +Lisandro +Raymundo +Frederick +Harold +Isidro +Kian +Raphael +Semaj +Skylar +Cayden +Dallas +Francis +Jarod +Milo +Nico +Ari +Dario +Gianni +Jamal +Jordy +Kieran +Markus +Randall +Terry +Willie +Amari +Carlo +Dominik +Everardo +Garret +Grayson +Irving +Jaydon +Jermaine +Lee +Nehemiah +Nikhil +Pranav +Santino +Stefan +Davion +Elian +Favian +Graham +Gregorio +Harley +Hernan +Jerome +Nick +Osbaldo +Reid +Rodney +Rylan +Sahil +Xander +Adriel +Adrien +Devan +Dominique +Gino +Jovany +Kent +Khalil +Leobardo +Luc +Maximo +Ralph +Rey +Ryder +Sammy +Titus +Valentin +Walker +Carl +Desmond +Keanu +Kellen +Milton +Pierce +Reginald +Anton +Antony +Arnold +Emerson +Genaro +Jaylin +Ken +Mariano +Mekhi +Sterling +Abram +Coby +Franklin +Geovanni +Gordon +Matteo +Weston +Arnav +Darwin +Eddy +Elisha +Jeff +Marcelo +Terrance +Terrell +Toby +Todd +Tom +Tristin +Darien +Glenn +Jett +Jovan +Judah +Mohammed +Phoenix +Reed +Roland +Ronan +Aryan +Brennen +Cristofer +Dexter +Freddie +Karl +Luciano +Rory +Addison +Coleman +Darin +Deshawn +Nathanial +Nathen +Quinton +Tucker +Cedric +Conrad +Duncan +Edgardo +Fred +Jaheim +Jaron +Jaycob +Kendrick +Lewis +Louie +Will +Antoine +Arath +August +Gunnar +Ibrahim +Jonatan +Kadin +Kennedy +Malakai +Marcel +Mohamed +Niko +Said +Winston +Ahmed +Akash +Anish +Brodie +Dangelo +Demetrius +Erwin +Esai +Giovani +Horacio +Jefferson +Kaiden +Keaton +Keoni +Koby +Marquis +Omarion +Ramses +Rishi +Rowan +Yash +Zander +Ajay +Dale +Edison +Federico +Franco +Kane +Lane +Marcoantonio +Maverick +Reilly +Rick +Vance +Abelardo +Abner +Alexandre +Camren +Clay +Cuauhtemoc +Davin +Finn +Fredy +Jaeden +Kayden +Keenan +Leopoldo +Marcelino +Marcello +Mauro +Paolo +Samir +Tate +Terrence +Wade +Darrell +Dashawn +Devyn +Donavan +Ernie +Geovanny +Hamza +Imanol +Jan +Jarrett +Jean +Jericho +Jordi +Jordon +Kurt +Paulo +Robin +Sebastien +Stephan +Trace +Vladimir +Ceasar +Dillan +Herman +Howard +Johann +Kalvin +Kareem +Landen +Nigel +River +Ross +Sarkis +Siddharth +Vince +Wayne +Alexzander +Anderson +Bill +Clarence +Clark +Dion +Flavio +Jagger +Johnnie +Jorden +Kole +Lincoln +Makai +Matias +Muhammad +Norman +Odin +Sawyer +Tyrese +Ulisses +Yair +Zechariah +Arnulfo +Bodie +Brad +Bronson +Darnell +Darryl +Davon +Dimitri +Ervin +Lazaro +Lizandro +Mathias +Obed +Omari +Tim +Tyree +Valentino +Xzavier +Arian +Benicio +Benito +Camilo +Darion +Darrin +Denzel +Donte +Edson +Ellis +Emmett +Ever +Gannon +Garrison +Hassan +Ishan +Jarred +Josef +Justus +Karson +Korey +Kristofer +Massimo +Mitchel +Mustafa +Nevin +Pierre +Rocky +Samson +Stuart +Tariq +Vidal +Zaid +Blaine +Fausto +Forrest +Geoffrey +Geovani +Gerson +Grady +Isac +Javon +Johnson +Juanpablo +Kalani +Kurtis +Maxim +Nikolai +Norberto +Reuben +Shea +Tyrone +Abdullah +Aldair +Alijah +Andreas +Aram +Asa +Caiden +Dallin +Eden +Elvin +Gideon +Guy +Jahir +Jamil +Jamison +Jayce +Jelani +Kamron +Kasey +Keon +Kolby +Leandro +Marcanthony +Osmar +Rami +Rhys +Rickey +Seamus +Shayne +Talon +Adalberto +Aurelio +Avi +Bradly +Cain +Dan +Dandre +Danilo +Easton +Edmond +Fermin +Izayah +Jaedon +Jai +Jameson +Jaxson +Jeremias +Jim +Justyn +Lionel +Lucio +Luisangel +Marques +Mihir +Nikko +Ozzy +Pete +Prince +Rashad +Remy +Rex +Rigo +Rocco +Roderick +Sky +Soren +Sunny +Trevon +Trinidad +Ubaldo +Zack +Zain +Zakary +Alden +Aman +Andrik +Anirudh +Blaze +Deon +Donnie +Earl +Eder +Eriberto +Filiberto +Gian +Immanuel +Jamie +Jaret +Jerimiah +Jessy +Job +Joseangel +Kendall +London +Lucca +Luka +Marley +Neal +Quintin +Raiden +Rohit +Sameer +Sami +Santana +Shreyas +Theo +Trever +Ulices +Varun +Yosef +Adonis +Alek +Anson +Bernard +Braydon +Damani +Dave +Devean +Domenic +Don +Dwayne +Dylon +Eleazar +Eloy +Ethen +Finnegan +Iain +Izaac +Jaren +Jarrod +Joahan +Josemanuel +Kenji +Keyon +Lester +Lino +Loren +Luiz +Marquise +Quinten +Raven +Reyes +Rosendo +Royce +Shaan +Shamar +Stone +Taj +Timmy +Vaughn +Westley +Yousef +Akhil +Alexsander +Ameer +Armand +Ashwin +Barrett +Barry +Bilal +Brando +Braxton +Caesar +Chaz +Claudio +Cullen +Demetrio +Emil +Faris +Fredrick +Geovany +Giovany +Greg +Heber +Herbert +Hezekiah +Isacc +Ishaan +Ishmael +Jacky +Jafet +Jedidiah +Jevon +Jiovanni +Josias +Jullian +Karim +Kylan +Lamar +Lenny +Lyle +Marion +Mikael +Myron +Neel +Porter +Raymon +Richie +Roque +Ryland +Savion +Shayan +Sidney +Syed +Tylor +Tyrell +Yonatan +Yusuf +Zaire +Abhinav +Abrahan +Adin +Ajani +Andrei +Armani +Braedon +Braiden +Brice +Brycen +Darrius +Dejon +Denis +Elan +Eugenio +Francesco +Gianluca +Glen +Harris +Harvey +Heath +Isael +Jabari +Jadin +Jareth +Jaylon +Jess +Kamari +Kevyn +Keyshawn +Khalid +Leland +Lonnie +Mikel +Nasir +Perry +Reagan +Rhett +Thaddeus +Triston +Van +Vivek +Zuriel +Aayush +Akshay +Amaan +Amar +Amit +Angus +Bradford +Cassius +Clifford +Daren +Deangelo +Deshaun +Dilan +Duane +Dwight +Enoch +Franky +Gabino +Gene +Hans +Jackie +Jamar +Jamari +Jaskaran +Jeramiah +Jonny +Kekoa +Kellan +Kenyon +Keshawn +Kirk +Kris +Kye +Kyree +Lamont +Lucien +Markanthony +Matthias +Nima +Noa +Osiel +Paris +Presley +Rasheed +Reymundo +Rio +Servando +Shant +Shay +Silvestre +Tejas +Terence +Wolfgang +Alton +Aren +Armen +Armond +Augustine +Caelan +Cale +Callum +Celso +Clemente +Daron +Dayton +Demetri +Denny +Dhruv +Donavin +Duke +Edmund +Eliot +Ely +Fletcher +Galen +Gerard +Hasan +Hilario +Hugh +Javen +Johnpaul +Joseantonio +Kainoa +Kamren +Kaya +Koa +Kory +Laurence +Lex +Marko +Mattias +Maxx +Mynor +Nash +Neftali +Otto +Raghav +Rayan +Rishabh +Romel +Ronit +Salvatore +Sheldon +Slater +Surya +Tai +Tristian +Uziel +Vincente +Willem +Alexys +Amarion +Amin +Anders +Ansel +Arvin +Arya +Asael +Atticus +Ayush +Aziel +Baltazar +Blas +Brandyn +Branson +Campbell +Clint +Colten +Daryl +Davian +Demitri +Diogo +Domingo +Dyllan +Edmundo +Erin +Esau +Feliciano +Garett +Gavyn +Gil +Giuseppe +Homero +Iverson +Izaak +Jabez +Jacobo +Jacoby +Jaheem +Jaydin +Jerardo +Jordin +Juandiego +Kahlil +Karthik +Kelly +Konner +Lars +Lucky +Marcial +Maximos +Niklas +Oskar +Osman +Parth +Raffi +Ramsey +Rico +Ronny +Rylee +Ryley +Saad +Torin +Valente +Vincenzo +Wilbert +Willy +Yael +Zavier +Adithya +Akira +Alexi +Alfonzo +Amos +Andrey +Apollo +Aramis +Aries +Arun +Aydan +Benson +Bodhi +Boris +Bret +Briant +Caeden +Cael +Canaan +Cash +Charly +Chester +Christofer +Clyde +Dashiell +Deion +Denilson +Destin +Devlin +Donnell +Ean +Edwardo +Eliezer +Eros +Evin +Fabio +Faustino +Fransisco +Gamaliel +Garry +Genesis +Gildardo +Haris +Houston +Isreal +Izak +Jadyn +Jamir +Jasson +Jensen +Jesiah +Jordyn +Karan +Karsten +Keandre +Kelton +Keyan +Kunal +Lawson +Leopold +Leroy +Macario +Manav +Marcellus +Margarito +Marshal +Michelangelo +Milan +Minh +Mohamad +Mychal +Narek +Nicolo +Patricio +Randolph +Rony +Salomon +Shannon +Simeon +Stephon +Tarun +Teddy +Thien +Trevin +Trevion +Trystan +Uriah +Viktor +Yovani +Abran +Adnan +Aleksander +Andru +Arden +Arnoldo +Austen +Austyn +Benedict +Bishop +Brandan +Bryon +Cal +Clifton +Colt +Dax +Devante +Devonte +Dino +Domonic +Donny +Draven +Eladio +Elton +Esdras +Fidencio +Gaven +Geronimo +Greyson +Hiram +Imran +Irwin +Isaih +Issak +Jamel +Jasiah +Jax +Jaysen +Jeanpaul +Jessi +Jimmie +Jonathen +Joshuah +Joziah +Kaeden +Kael +Kamal +Kamran +Kolton +Krish +Mahmoud +Malcom +Matt +Mikah +Monte +Morris +Navid +Ocean +Race +Raj +Rajan +Romario +Roshan +Sabastian +Shae +Shivam +Sincere +Stefano +Tanay +Ted +Turner +Ulyses +Vinh +Vishnu +Wilber +Wilfredo +Aakash +Abdul +Adair +Adiel +Adryan +Aedan +Alain +Alekzander +Amador +Anakin +Anand +Anjel +Anthonie +Aric +Armon +Arron +Augustus +Boden +Brannon +Carlton +Chasen +Cian +Colter +Cristo +Damari +Darrian +Darron +Deegan +Demarco +Dereck +Deric +Diamond +Elder +Elie +Elijiah +Fabrizio +Flynn +Ford +Fox +Gaige +Gibson +Griffen +Hakop +Hank +Hari +Harman +Huy +Issiah +Izac +Jalon +Jarett +Jarren +Jaymes +Jeshua +Josejulian +Josemaria +Juanangel +Juanjose +Justen +Juvenal +Kabir +Kasra +Kaushik +Keisuke +Kevon +Killian +Kiran +Laron +Layton +Lazarus +Leif +Leighton +Levon +Lloyd +Lucian +Malaki +Marcell +Marck +Mathieu +Maximino +Nahum +Nikita +Noble +Omid +Omri +Otis +Pascual +Raudel +Renato +Renzo +Ron +Roosevelt +Rudolph +Russel +Ryon +Sabino +Sandro +Sherwin +Shiloh +Sione +Sol +Stewart +Syrus +Tavion +Tigran +Treyvon +Truman +Vikram +Vishal +Williams +Yoel +Youssef +Yusef +Zeus +Abdiel +Abisai +Adal +Ammon +Angello +Anibal +Arik +Arion +Aris +Aristotle +Armaan +Artemio +Ashley +Aubrey +Azariah +Beck +Bernie +Bladimir +Blair +Bode +Boston +Candido +Carsen +Cecil +Cezar +Chazz +Clinton +Conan +Cormac +Dameon +Daniela +Daquan +Daven +Davonte +Daylen +Deacon +Demarcus +Denver +Dev +Dmitri +Donaven +Donovin +Doran +Eamon +Eben +Edrick +Erasmo +Erich +Etienne +Floyd +Gareth +Haden +Hanson +Hayk +Humza +Isrrael +Izack +Izaya +Jacinto +Jacques +Jade +Jaelen +Jaelin +Jahiem +Jamaal +Jaquan +Jasen +Jasmine +Javan +Javion +Jeffry +Jet +Jomar +Jonnathan +Jossue +Jun +Kaelan +Kailen +Kanan +Karlos +Kayvon +Khang +King +Kirby +Konrad +Krishna +Kristoffer +Kwame +Lenin +Luisantonio +Mahdi +Malek +Marquice +Maximilliano +Mehki +Micaiah +Michel +Mikhail +Moshe +Naim +Natanael +Neo +Omer +Osiris +Osmin +Otoniel +Ozzie +Percy +Rayvon +Raziel +Reggie +Rishab +Rivaldo +Robbie +Robby +Ronin +Rushil +Sachin +Sahib +Salman +Sanjay +Saulo +Shai +Shelby +Sherman +Sullivan +Tal +Teodoro +Terell +Tevin +Tevita +Theron +Tobin +Trung +Tyron +Vernon +Vinson +Waylon +Wiley +Wilmer +Zahid +Zeth +Aamir +Ab +Abimael +Adarsh +Adham +Aj +Aksel +Alexei +Alexsandro +Alphonso +Amadeus +Amado +Ameen +Amogh +Amr +An +Andree +Andrez +Andruw +Aneesh +Angelgabriel +Ansh +Archie +Arlo +Arshia +Artur +Augusto +Avraham +Aydin +Basil +Beckett +Bennie +Bentley +Blayne +Bowen +Brendyn +Brenton +Brooks +Chauncey +Ciro +Clement +Coleton +Cornelius +Cort +Curren +Dajuan +Damarion +Danial +Danthony +Darrien +Darrion +Daryn +Deontae +Derian +Derik +Desi +Dewayne +Eliel +Eligh +Eligio +Elio +Emery +Enoc +Ephraim +Ewan +Florentino +Gautam +Georgio +Geraldo +Germaine +Gerry +Giacomo +Giorgio +Gorge +Grigor +Gunner +Gus +Hagop +Haik +Hamid +Harout +Hussein +Issa +Jacen +Jad +Jahlil +Jalani +Jarvis +Jase +Jashawn +Jassiel +Javin +Jaylan +Jayvon +Jc +Jed +Jennifer +Jeovanny +Jerod +Jessejames +Jeyson +Jhonatan +Jhonny +Jin +Joao +Johny +Jorgeluis +Joshue +Juanmanuel +Jules +Juliano +Justine +Justis +Kacey +Kaelin +Kale +Kamden +Kamryn +Kavon +Kaydon +Keagan +Kegan +Kenzo +Kesean +Keshav +Kingsley +Kobi +Kobie +Kodi +Kohl +Laith +Legend +Lennon +Leslie +Linus +Luigi +Magnus +Maison +Manny +Marino +Mckay +Melvyn +Menachem +Merrick +Mikey +Miller +Min +Nareg +Niccolo +Nicklas +Oren +Oz +Pascal +Ramces +Ransom +Ravi +Rayden +Rayshawn +Rich +Roan +Roel +Rohin +Rosario +Sai +Sal +Sammuel +Samual +Sasha +Seiji +Shalom +Shiva +Siddarth +Sidharth +Skye +Soham +Steele +Stevie +Taha +Teagan +Tracy +Travon +Vedant +Viet +Vijay +Vinay +Warner +Wes +Yaakov +Yasir +Yobani +Zayn +Aaryan +Abdallah +Abhishek +Ace +Adel +Amando +Ambrose +Amiri +Ammar +Amritpal +Ankit +Anselmo +Anthonyjr +Antwon +Anuj +Armondo +Ashish +Avinash +Ayan +Azael +Azriel +Bijan +Blue +Brandin +Brayant +Brennon +Broden +Broderick +Bryton +Cairo +Calum +Cameren +Carey +Cary +Casen +Cason +Casper +Cavan +Ceaser +Cecilio +Che +Christan +Christos +Cipriano +Colson +Coltin +Cordell +Cornell +Crispin +Cristiano +Cyle +Dajon +Dakari +Dalen +Damen +Danniel +Darby +Dartagnan +Daunte +Davey +Daylin +Daylon +Dayne +Dejuan +Delbert +Delfino +Denim +Diesel +Dimas +Dirk +Domenick +Dustyn +Dylen +Eber +Eliazar +Elija +Emir +Emmet +Emory +Ethaniel +Eulises +Evaristo +Fadi +Faisal +Favio +Fisher +Florencio +Gadiel +Garrick +Gavino +Giovonni +Graeme +Gurshan +Haiden +Hakim +Harpreet +Haven +Hazael +Henri +Herson +Homer +Hubert +Iker +Iman +Imani +Indiana +Ismail +Iziah +Izik +Jael +Jalan +Jameel +Jarell +Jathan +Jatin +Jaydan +Jayro +Jayshawn +Jeanluc +Jeovany +Jerico +Jeronimo +Jerrod +Joeseph +Joesph +Johnmichael +Josaiah +Josmar +Juanluis +Kain +Kalen +Kaleo +Kalil +Kalob +Kamar +Kasen +Kelby +Kenan +Keneth +Kerry +Khristian +Kiefer +Kiernan +Kimani +Kishan +Korben +Krishan +Lachlan +Lamonte +Langston +Latrell +Layth +Long +Luiseduardo +Mack +Mackenzie +Maddox +Malachai +Manraj +Marciano +Markell +Maxfield +Maximillion +Maynor +Memphis +Messiah +Michaelangelo +Milad +Mina +Mister +Moroni +Nader +Nate +Naythan +Niall +Nils +Nino +Oleg +Olin +Om +Ori +Oziel +Pierson +Porfirio +Prateek +Quan +Quinlan +Rainer +Raleigh +Rameses +Randal +Rashaad +Refugio +Regan +Remington +Renee +Rian +Rickie +Ridge +Rojelio +Rolan +Rommel +Rosalio +Rufino +Rustin +Ryker +Ryo +Sabian +Sahid +Salem +Samantha +Sevastian +Shamir +Sharif +Shaunak +Slade +Sohail +Stevan +Sumeet +Suraj +Sylvester +Takumi +Tam +Taran +Teo +Tevan +Thanh +Tiernan +Titan +Tobey +Trae +Travion +Trenten +Valentine +Victormanuel +Vladislav +Wallace +Wilfred +Yasin +Yohan +Yonathan +Yoni +Yovany +Yuto +Yuvraj +Zach +Zacharia +Zayd +Zayne +Zeke +Zen +Zev +Abdurrahman +Adil +Adon +Ahmir +Ahren +Akshat +Al +Aldrin +Alen +Alistair +Alston +Alvino +Amani +Amer +Amrit +Anas +Anastasios +Andranik +Andrea +Andrick +Andrue +Angad +Anmol +Anshul +Antoni +Antwan +Anurag +Apolinar +Arash +Arav +Arham +Arie +Arsen +Art +Artin +Ashraf +Ashvin +Athan +Atharva +Attila +Augustin +Auston +Avant +Ayaan +Baron +Basilio +Berkeley +Blaise +Bo +Bob +Bonifacio +Boyd +Bradyn +Brant +Brogan +Buddy +Calder +Camrin +Cannon +Canon +Canyon +Carmelo +Case +Cassidy +Chaitanya +Charley +Christain +Christoper +Chrystian +Ciaran +Cisco +Clarke +Cobe +Cobey +Codi +Colbey +Connell +Cortez +Cristhian +Cyrille +Daemon +Daevon +Dana +Dany +Darshan +Daveon +Deante +Deaven +Delaney +Delvin +Demitrius +Deondre +Deonte +Deron +Devion +Dezmond +Diondre +Dionicio +Dionte +Donavon +Dontae +Dontay +Dorien +Dovid +Durrell +Ebenezer +Edin +Edric +Ehren +Eian +Eitan +Elad +Ellison +Elver +Emile +Emre +Errol +Eryk +Ethyn +Eusebio +Even +Everette +Evyn +Exavier +Faizan +Farid +Finlay +Francois +Frederic +Fredi +Froilan +Froylan +Gaston +Gauge +Gaurav +Gerardojr +Gevorg +Gevork +Gianfranco +Giovannie +Gor +Gurjot +Gurman +Haile +Hakeem +Hamilton +Hamzah +Harlan +Haroon +Haseeb +Hashim +Henok +Henrik +Henrry +Herberth +Hosea +Hyrum +Iban +Ibraheem +Ilan +Ilias +Imer +Ira +Isa +Isak +Issaiah +Izaiha +Jadan +Jaedyn +Jaeger +Jahan +Jahari +Jaidyn +Jakeb +Jalil +Jalin +Jalyn +Jamell +Jamin +Jarek +Jaylyn +Jaziel +Jeancarlo +Jeovanni +Jerald +Jeramie +Jermiah +Jeromy +Jessiah +Jhonathan +Jimi +Jiovani +Jjesus +Jobe +Josedejesus +Josemiguel +Josephanthony +Journey +Jovon +Jr +Juanantonio +Justino +Juventino +Juwan +Kaan +Kadon +Kaito +Kalib +Kalin +Kamrin +Kanoa +Karlo +Kaushal +Kavi +Kavin +Kawika +Keelan +Keion +Keiran +Keller +Kenta +Kentaro +Kento +Keshaun +Khaled +Khari +Khoi +Khristopher +Kong +Korbin +Kota +Ky +Kyre +Lake +Landin +Lathan +Lauro +Leander +Leonidas +Levy +Ludwin +Luisenrique +Lyndon +Mac +Mahir +Major +Makaio +Makhi +Makoa +Maksim +Malikai +Malique +Maria +Marius +Marquez +Marshawn +Matthieu +Maven +Maxamillion +Mckinley +Mika +Modesto +Mosiah +Musa +Nabil +Nam +Naman +Nazario +Neri +Neven +Nicanor +Niccolas +Nicholaus +Nicklaus +Nicky +Nicodemus +Nicola +Noam +Nolen +Parsa +Philippe +Piero +Pieter +Praveen +Princeton +Rajveer +Rajvir +Reef +Reno +Reymond +Reza +Rishav +Ritchie +Rito +Ritvik +Robel +Robinson +Rodrick +Rome +Roscoe +Rubin +Saahil +Saeed +Safwan +Saketh +Saleh +Salim +Satchel +Sayed +Schuyler +Scout +Serafin +Shelton +Shemar +Shiv +Sho +Silvino +Silvio +Sohum +Srikar +Sriram +Stanford +Sydney +Tadeo +Tahj +Takeo +Tarek +Tavis +Tayler +Tayvion +Tenoch +Tenzin +Terrel +Thai +Thatcher +Timoteo +Tommie +Tonatiuh +Toni +Tory +Trayvon +Treston +Treven +Treyton +Tye +Tylar +Tyreese +Tyrus +Tyus +Umar +Usman +Val +Viliami +Virgil +Vito +Waleed +Westin +Willard +Xaiver +Xavian +Yahya +Yazan +Yobany +Zabdiel +Zacary +Zakery +Daniel +Anthony +Andrew +Jose +Jacob +David +Joshua +Angel +Michael +Matthew +Christopher +Joseph +Jonathan +Ryan +Brandon +Alexander +Kevin +Ethan +Nathan +Juan +Luis +Christian +Nicholas +Gabriel +Jesus +Justin +Diego +Adrian +Dylan +Bryan +Isaac +Carlos +Jason +Tyler +William +James +Benjamin +Samuel +John +Brian +Julian +Aaron +Robert +Miguel +Isaiah +Alejandro +Noah +Zachary +Eric +Elijah +Aidan +Victor +Jordan +Jorge +Sebastian +Kyle +Eduardo +Jack +Alex +Adam +Steven +Oscar +Evan +Ivan +Logan +Thomas +Francisco +Jesse +Luke +Sean +Nathaniel +Fernando +Ricardo +Austin +Antonio +Richard +Cesar +Connor +Gavin +Alexis +Alan +Ian +Caleb +Dominic +Andres +Edgar +Omar +Manuel +Cameron +Cristian +Vincent +Jackson +Lucas +Sergio +Javier +Aiden +Mario +Hector +Jake +Erick +Charles +Nicolas +Erik +Xavier +Cole +Devin +Mason +Giovanni +Ruben +Joel +Mark +Roberto +Damian +Timothy +Abraham +Jeremy +Jared +Leonardo +Edward +Marco +Henry +Owen +Jaden +Hunter +Jeremiah +Jayden +Edwin +Kenneth +Colin +Josue +Martin +Andy +Emmanuel +Seth +Marcus +Gerardo +George +Raymond +Yahir +Trevor +Cody +Derek +Elias +Patrick +Rafael +Marcos +Armando +Pedro +Gustavo +Paul +Raul +Liam +Jaime +Jeffrey +Tristan +Carson +Enrique +Peter +Alberto +Hayden +Saul +Wyatt +Blake +Chase +Salvador +Josiah +Fabian +Max +Israel +Riley +Bryce +Garrett +Arturo +Johnny +Maxwell +Alfredo +Shane +Julio +Moises +Ernesto +Spencer +Pablo +Caden +Kai +Esteban +Donovan +Andre +Frank +Travis +Jimmy +Johnathan +Ismael +Tanner +Albert +Stephen +Ashton +Nolan +Jonah +Bradley +Miles +Grant +Danny +Bryant +Emilio +Oliver +Kaden +Micah +Parker +Roman +Landon +Ramon +Mateo +Hugo +Angelo +Santiago +Emanuel +Shawn +Rodrigo +Conner +Damien +Allen +Carter +Abel +Dillon +Brendan +Emiliano +Axel +Gregory +Kaleb +Scott +Adan +Guillermo +Collin +Mathew +Devon +Cooper +Preston +Alec +Jalen +Chris +Leo +Jakob +Simon +Calvin +Lorenzo +Brayan +Uriel +Brayden +Dominick +Joaquin +Troy +Allan +Steve +Eddie +Phillip +Mauricio +Alfonso +Dante +Darren +Dustin +Rene +Jessie +Felix +Osvaldo +Wesley +Marvin +Randy +Gage +Joe +Noe +Issac +Octavio +Tony +Gilberto +Taylor +Ayden +Braden +Eli +Jerry +Arthur +Derrick +Louis +Ricky +Ezekiel +Rodolfo +Levi +Mitchell +Griffin +Kobe +Marc +Rogelio +Harrison +Colby +Felipe +Zane +Colton +Dennis +Malachi +Ronald +Jaylen +Rudy +Ty +Alvaro +Jair +Keith +Leonel +Moses +Maximus +Efrain +Casey +Lawrence +Skyler +Charlie +Myles +Nickolas +Adolfo +Corey +Maximiliano +Trent +Nikolas +Ramiro +Clayton +Kenny +Quinn +Vicente +Cade +Gael +Isaias +Joey +Orlando +Jayson +Larry +Tommy +Darius +Trenton +Brady +Lance +Lukas +Zackary +Aldo +Dakota +Freddy +Drake +Gilbert +Humberto +Drew +Melvin +Theodore +Roger +Agustin +Brenden +Brett +Dean +Jay +Johan +Alonzo +Ignacio +Oswaldo +Philip +Tomas +Ulises +Donald +Estevan +Ezra +Russell +Cristopher +Jaiden +Jonathon +Ali +Brody +Alonso +Jairo +Noel +Xander +Rohan +Douglas +Avery +Marlon +Zion +Gary +Nelson +Roy +Amir +Luca +Walter +Yair +Chad +Gonzalo +Malik +Branden +Ezequiel +Irvin +Jasper +Rigoberto +Chance +Damon +Morgan +Bryson +German +Hudson +Curtis +Aden +Cruz +Julius +Alvin +Alessandro +Byron +Dorian +Jace +Misael +Sam +Cyrus +Elliot +Kameron +Leon +Brennan +Dane +Isiah +Orion +Ray +Ben +Izaiah +Kristopher +Maximilian +Jahir +Alexandro +Camden +Cory +Frederick +Giancarlo +Giovanny +Kyler +Rolando +Shaun +Tyson +Kristian +Tristen +Asher +Jon +Keegan +Corbin +Davis +Frankie +Jadon +Justice +Maurice +Mike +Nathanael +Payton +Romeo +Santos +Ariel +Brent +Elvis +Julien +Junior +Kelvin +Raymundo +Aditya +Chandler +Franklin +Heriberto +Isai +Peyton +Tobias +Bobby +Dalton +Elmer +Nestor +Ronaldo +Wilson +Zander +Beau +Cayden +Devan +Efren +Keven +Zachariah +Arnold +Bruce +Harry +Jonas +Kieran +Guadalupe +Marshall +Deven +Eugene +Miguelangel +Alfred +Jaxon +Jude +Kody +Leonard +Matteo +Stanley +Arjun +Davin +Everett +Jovanny +Kaiden +Toby +Amari +Bailey +Sage +Valentin +Braeden +Fidel +Jovani +Quentin +Trey +Aryan +Bennett +Gianni +Juancarlos +Phoenix +Quincy +Bernardo +Billy +Cristobal +Malcolm +Neil +Braulio +Brock +Finn +Josh +Sonny +Tucker +Dawson +Desmond +Harley +Jeffery +Kellen +Reese +Terrell +Adrien +Francis +Jovany +Osbaldo +Carlo +Damion +Enzo +Irving +Isidro +Jovanni +Nick +Ryder +Adriel +Ari +Demetrius +Elliott +Gerald +Gino +Grayson +Holden +Joseluis +Marcelo +Mohammad +Rylan +Skylar +Warren +Antony +Declan +Ernest +Kian +Maximillian +Reece +Silas +Terry +Conor +Deandre +Dominik +Duncan +Emerson +Isac +Micheal +Ronnie +Alexandre +Carl +Pierce +Pranav +Brendon +Bruno +Derick +Giovani +Harold +Jaylin +Keaton +Santino +Solomon +Ulysses +Zackery +Aron +August +Darian +Everardo +Gregorio +Jaydon +Johnathon +Landen +Mekhi +Nikhil +Rey +Jamal +Mariano +Markus +Nathen +Nico +Reed +Rodney +Rowan +Vince +Alijah +Benito +Craig +Hamza +Milo +Muhammad +Niko +Rahul +Sawyer +Ahmad +Arman +Camron +Cedric +Conrad +Eliseo +Federico +Kade +Ralph +Reid +Vance +Benny +Brennen +Jermaine +Kendrick +Khalil +Maximo +Paolo +Ronan +Sammy +Anton +Flavio +Fredy +Jordy +Kayden +Kent +Rory +Wayne +Zechariah +Arnav +Gannon +Glenn +Graham +Isaak +Reynaldo +Roland +Sahil +Stefan +Tyree +Addison +Ahmed +Cristofer +Dallas +Dexter +Freddie +Genaro +Geovanny +Johann +Keanu +Lewis +Luc +Mohammed +Raphael +Darien +Darin +Favian +Gunnar +Jeff +Kareem +Louie +Rick +River +Semaj +Siddharth +Willie +Zachery +Arya +Dario +Gordon +Jessy +Kadin +Marcel +Maverick +Randall +Weston +Arian +Caiden +Darwin +Davion +Donavan +Ibrahim +Jaycob +Kole +Lane +Lee +Leobardo +Mauro +Milton +Nehemiah +Reginald +Rex +Rocco +Wade +Abram +Andreas +Armaan +Arnulfo +Coby +Dan +Deshawn +Devyn +Garret +Jean +Jerome +Jett +Johnpaul +Kainoa +Marquis +Rocky +Sterling +Tate +Vaughn +Will +Zaid +Antoine +Arath +Dominique +Ethen +Hernan +Jaron +Jarrett +Jayce +Justus +Malakai +Mohamed +Yovani +Anish +Dimitri +Elian +Jaeden +Jaren +Keenan +Lincoln +Norman +Sebastien +Terrance +Titus +Tristin +Tyrone +Walker +Xzavier +Abner +Augustine +Aydan +Eddy +Edson +Elisha +Erwin +Franco +Howard +Jameson +Jan +Jaxson +Jovan +Ken +Keoni +Luciano +Marcelino +Nathanial +Zakary +Adonis +Akash +Bernard +Bilal +Blaine +Ceasar +Clark +Clay +Dayton +Dillan +Ernie +Geoffrey +Ilan +Jamari +Javon +Jonatan +Keon +Kory +Leopoldo +Maddox +Reuben +Rishi +Terrence +Amarion +Darryl +Dwayne +Jefferson +Jorden +Kurt +Makai +Markanthony +Quinton +Ramses +Triston +Tylor +Ajay +Alexzander +Armen +Dangelo +Davian +Deon +Edgardo +Ellis +Jaheim +Jamie +Jordi +Josef +Karl +Krish +Kurtis +Lamar +Robin +Shea +Winston +Yael +Yash +Armani +Brad +Cash +Claudio +Darrell +Dilan +Don +Finnegan +Harvey +Jagger +Joan +Jordon +Judah +Koby +Osmar +Remy +Soren +Terence +Tim +Todd +Trace +Zain +Abdullah +Brodie +Callum +Camilo +Clarence +Coleman +Devean +Dhruv +Eden +Fred +Geovanni +Gerson +Giovany +Jamison +Johnson +Kane +Kenji +London +Maxim +Norberto +Porter +Rami +Richie +Royce +Shayan +Stephan +Tai +Ulices +Alden +Atticus +Ayush +Benicio +Cuauhtemoc +Damarion +Darion +Edison +Ervin +Geovany +Hassan +Izaac +Jacky +Jericho +Leif +Lino +Lionel +Lucio +Marcanthony +Nikita +Omari +Pierre +Quinten +Rayan +Said +Samson +Simeon +Tristian +Valentino +Van +Vladimir +Angus +Arvin +Aurelio +Aydin +Dallin +Davon +Easton +Gavyn +Gideon +Glen +Hiram +Hugh +Isacc +Jabari +Josemanuel +Kelly +Keyon +Leroy +Marcoantonio +Mikel +Neal +Nigel +Quintin +Rashad +Rhys +Rigo +Samir +Sky +Skye +Sunny +Theo +Tyrese +Adin +Aldair +Amar +Anjel +Azael +Darnell +Denis +Domingo +Elan +Enoch +Esai +Fausto +Forrest +Gaven +Hans +Horacio +Jarod +Jim +Jordin +Marko +Mathias +Matias +Mihir +Mohamad +Mustafa +Nash +Nikolai +Omarion +Perry +Sabastian +Seamus +Sidney +Tyrell +Ubaldo +Ulisses +Yusuf +Akhil +Andrei +Asa +Baltazar +Beck +Blaise +Christofer +Dale +Darrion +Dev +Dion +Donte +Earl +Eleazar +Eliot +Emmett +Eros +Filiberto +Grady +Guy +Iain +Jacobo +Jai +Jamar +Jarrod +Jaylon +Jelani +Karan +Kasey +Kiran +Kirk +Kolby +Luisangel +Marquise +Osiel +Paulo +Shreyas +Syed +Trevon +Vidal +Vishal +Zahid +Abran +Adalberto +Aedan +Aman +Arron +Clyde +Daryl +Dave +Dereck +Eder +Ever +Evin +Fabio +Faustino +Gabino +Greyson +Gunner +Imanol +Isael +Jadyn +Jamil +Jet +Jullian +Kellan +Lisandro +Neo +Ozzy +Pete +Reilly +Rhett +Rosendo +Sheldon +Varun +Vikram +Anderson +Andrey +Anson +Augustus +Barrett +Bill +Blaze +Brandyn +Braydon +Brycen +Caesar +Chaz +Clinton +Demarco +Denzel +Domenic +Eloy +Elvin +Heath +Hilario +Izaak +Jackie +Jael +Joseangel +Josias +Kamari +Kamron +Kendall +Kennedy +Keshawn +Laron +Layne +Leandro +Leland +Marcello +Matthias +Neel +Nikko +Odin +Otto +Patricio +Ross +Salomon +Santana +Shayne +Taj +Tom +Truman +Zack +Abdul +Andrik +Artemio +Ashley +Bradly +Braxton +Canyon +Danilo +Deangelo +Dejon +Deonte +Destin +Dwight +Elio +Fletcher +Franky +Genesis +Hasan +Huy +Ishan +Jafet +Jarett +Jedidiah +Jeremias +Kale +Kalvin +Karim +Karson +Kristofer +Kyan +Lazaro +Makhi +Nahum +Neftali +Obed +Parsa +Rickey +Ron +Sameer +Sione +Stone +Tariq +Trinidad +Viet +Vincente +Waylon +Youssef +Adair +Alek +Amaan +Ameer +Aramis +Aren +Benson +Bodhi +Boris +Broderick +Cain +Camren +Clement +Clifford +Darrin +Darrius +Daven +Deion +Devlin +Ean +Edmund +Ely +Eriberto +Esau +Flynn +Greg +Herbert +Herman +Isreal +Jin +Juandiego +Kain +Kaleo +Kavin +Killian +Lamont +Lars +Lennon +Lloyd +Lucca +Luka +Massimo +Narek +Parth +Presley +Raj +Reyes +Rian +Roderick +Ryker +Shant +Slater +Stevan +Stuart +Taha +Talon +Tobey +Travon +Valente +Willem +Yonatan +Yousef +Abelardo +Aj +Akshay +Aldahir +Amare +Anders +Anirudh +Aram +Aric +Ashwin +Avi +Barry +Bronson +Cristo +Dandre +Daron +Dashiell +Demarion +Demian +Derik +Eamon +Eugenio +Forest +Gareth +Geovani +Harris +Hezekiah +Ishaan +Jade +Jarred +Jed +Jeramiah +Jerardo +Jessejames +Job +Johnmichael +Josedejesus +Juanpablo +Jun +Kamren +Kenton +Kenyon +Keyshawn +Kingston +Laurence +Lex +Lyle +Mack +Marques +Mikhail +Minh +Natanael +Niklas +Om +Raiden +Rohit +Ronny +Roque +Ryland +Rylee +Sullivan +Tobin +Uziel +Vernon +Zaire +Zeus +Aakash +Aarush +Ace +Alain +Amador +Aniket +Ares +Aries +Benton +Bishop +Brandan +Brando +Brenton +Celso +Charley +Cian +Dajon +Daren +Demetrio +Denny +Donnell +Donnie +Edmond +Eliazar +Enoc +Erin +Fermin +Gerard +Gianluca +Hank +Immanuel +Ishmael +Izayah +Jadin +Jamel +Jareth +Jaskaran +Jerald +Joahan +Johnnie +Kael +Kalani +Kamran +Kevyn +Kohl +Levon +Lucien +Luiz +Marion +Marius +Marley +Mikael +Nery +Ocean +Pavel +Prince +Ramsey +Reagan +Ronin +Sami +Servando +Silvestre +Teodoro +Trever +Tye +Westley +Yuvraj +Aaryan +Abdiel +Abrahan +Ajani +Alexsander +Alton +Armand +Artur +Asael +Bowen +Brice +Cassius +Clint +Colten +Darrian +Daylen +Delvin +Dillion +Dino +Dionicio +Domenico +Dylon +Eliezer +Emmitt +Florentino +Francesco +Garett +Garrison +Gene +Gian +Gibran +Hadi +Ismail +Izak +Jabez +Jacoby +Jacques +Jasiah +Jeancarlo +Jeffry +Johnathen +Jules +Kalen +Kamden +Kasen +Keagan +Koa +Kolton +Leslie +Lester +Luigi +Magnus +Malaki +Marcial +Marquez +Maurisio +Merrick +Morris +Mykel +Naythan +Nicolai +Nima +Nitin +Noa +Osman +Oswald +Paris +Raudel +Raven +Rayshawn +Renato +Reymundo +Rowen +Shaan +Srikar +Stefano +Stephon +Stewart +Suraj +Tarik +Teo +Torin +Vincenzo +Vinh +Wilfredo +Abhinav +Abhishek +Alexavier +Ameen +Amogh +Amos +Amrit +Antoni +Arden +Auston +Austyn +Avinash +Blas +Branson +Bret +Brooks +Canaan +Carsen +Chauncey +Chester +Ciaran +Cortez +Corwin +Cullen +Danial +Daveon +Delano +Denver +Deondre +Dmitri +Domanic +Domonic +Dorien +Draven +Duke +Edmundo +Eliel +Emil +Faris +Finley +Fransisco +Fredi +Galen +Gamaliel +Gibson +Giorgio +Hanson +Hieu +Iman +Irwin +Iverson +Jaelin +Jahiem +Jalil +Jarren +Jase +Jaydin +Jensen +Jess +Jonny +Joseantonio +Justyn +Kannon +Karlos +Karthik +Keelan +Keion +Kekoa +Keller +Kerry +Keshav +Khai +Khalid +Konner +Lachlan +Long +Loren +Maksim +Marcellus +Marlin +Matt +Mattias +Messiah +Michaelangelo +Milan +Myron +Nasir +Paulino +Reggie +Renzo +Rio +Rivaldo +Sammuel +Shannon +Shiv +Shivam +Syrus +Tavion +Tejas +Tigran +Timmy +Tre +Trevin +Uriah +Vinay +Yaseen +Yovany +Zayd +Zuriel +Abhiram +Aleksander +Alfonzo +Amadeo +Amado +Amaury +Amit +Andru +Angelgabriel +Anibal +Antwan +Archie +Arnoldo +Audric +Beckett +Bodie +Bradyn +Campbell +Cannon +Carmelo +Celestino +Constantine +Dara +Darrel +Deaven +Delfino +Demitri +Deric +Derrek +Desi +Devante +Devonte +Donavin +Dontae +Dyllan +Eben +Eitan +Elder +Emmet +Ewan +Favio +Finnley +Floyd +Ford +Gauge +Gevork +Gianmarco +Gil +Giovonni +Giuseppe +Hakop +Hamzah +Hasani +Henri +Hubert +Hyrum +Isak +Issa +Jacen +Jaret +Jasen +Javan +Jax +Jaylan +Jaylyn +Jayvon +Jeronimo +Jerson +Jevon +Jimmie +Joab +Jobany +Jordyn +Jossue +Juanluis +Juanmanuel +Kaito +Karlo +Kavon +Khang +Korey +Lawson +Leighton +Lemuel +Lev +Lucian +Luismario +Marck +Marvyn +Mathieu +Menachem +Michel +Mickey +Milad +Niall +Nikola +Noam +Oskar +Raffi +Rajveer +Randolph +Rashaad +Rayyan +Raziel +Remi +Rommel +Rony +Roshan +Rueben +Rushil +Spenser +Ted +Tenoch +Tevita +Theron +Tracy +Trentin +Treyton +Tyron +Wilber +Williams +Willy +Yosef +Yousuf +Zach +Adithya +Adonai +Alessio +Amilcar +Amin +Ammar +Andrea +Andruw +Aneesh +Archer +Arik +Arun +Arvind +Audel +Augustin +Avraham +Ayman +Basilio +Bradford +Braedon +Briant +Brogan +Caeden +Canon +Cisco +Clifton +Codey +Colson +Damani +Dameon +Damond +Daylon +Deacon +Dedrick +Duane +Dylen +Elia +Elijha +Esdras +Etienne +Gadiel +Garren +Gaurav +Gautam +Gautham +Gavino +Gerrit +Haiden +Harish +Harjot +Harlan +Hayk +Haziel +Houston +Hussein +Issak +Izik +Jahaziel +Javonte +Jaziel +Jesiah +Jiovanni +Josemiguel +Kabir +Kaeden +Konnor +Korbin +Krishna +Kunal +Kye +Kyree +Langston +Linus +Lucky +Malek +Manjot +Manny +Marcell +Marquel +Marshawn +Marwan +Maximilliano +Maxx +Memphis +Micaiah +Mikah +Mizael +Nabil +Naim +Nate +Naveen +Nevin +Nicco +Niccolo +Nicklaus +Noble +Osiris +Paxton +Race +Raheem +Ravi +Raymon +Remington +Rich +Rico +Rishab +Rishabh +Roan +Robbie +Rojelio +Romel +Royal +Russel +Ryley +Saeed +Saleh +Salvatore +Sanjay +Sarkis +Seven +Shamar +Shashank +Shay +Sherman +Shiloh +Silverio +Sriram +Tadeo +Tarun +Tevin +Trenten +Trystan +Vito +Vivek +Waleed +Wilmer +Yovanni +Abdulrahman +Abelino +Abiel +Abisai +Aeden +Akira +Alexandros +Alexei +Alexsandro +Amani +Anakin +Anas +Andon +Andrez +Angelus +Anthoni +Aris +Armin +Armon +Ashvin +Athan +Austen +Bao +Baron +Bennie +Blaize +Blane +Bo +Boden +Braiden +Brain +Brendin +Brighton +Broden +Burke +Cameren +Cezar +Chancellor +Charly +Christianjames +Cohen +Constantino +Cornelius +Cris +Curt +Damari +Dana +Danniel +Daquan +Deanthony +Demitrius +Demond +Denilson +Deshaun +Devontae +Diana +Diogo +Edan +Edvin +Eladio +Elton +Elver +Elyas +Emile +Erasmo +Erich +Erubiel +Eryk +Esteven +Fox +Gaige +Garrick +Gaspar +Gianfranco +Gildardo +Govanni +Haden +Harman +Heber +Henderson +Hendrick +Homero +Iker +Iram +Isaih +Issiah +Izac +Jaedon +Jaelen +Jailen +Jairus +Jakub +Jaleel +Jamaal +Jamarion +Jarell +Jarvis +Jaymes +Jaysen +Jered +Jeremie +Jerimiah +Jerrick +Jonnathan +Jovon +Kalib +Kalob +Kamryn +Karanvir +Kason +Keilan +Kenshin +Khari +Kiefer +King +Kodi +Koen +Konrad +Kristoffer +Landin +Latrell +Leyton +Lizandro +Lonnie +Luisantonio +Luther +Malakhi +Manolo +Margarito +Markel +Markell +Matisse +Maxime +Maynor +Mayson +Miko +Montgomery +Moshe +Mynor +Nader +Najee +Nathon +Natividad +Nicholaus +Nishant +Nixon +Nomar +Olin +Otis +Oziel +Pietro +Princeton +Rasheed +Refugio +Rider +Romario +Rudolph +Sabino +Sachin +Saketh +Sal +Savion +Shaya +Steele +Sylas +Tavin +Teagan +Teddy +Thaddeus +Thor +Tiger +Trayvon +Unknown +Usman +Uzziel +Victormanuel +Viktor +Wilbert +Wiley +Willis +Wolfgang +Yehuda +Yoni +Yovanny +Zavier +Zayne +Zephyr +Zev +Aadi +Aarav +Aaren +Abdelrahman +Abimael +Adarsh +Adiel +Adnan +Adrean +Adrik +Aharon +Akil +Aldrin +Alekzander +Alen +Alexsis +Alias +Amaree +Amiel +Andranik +Andrue +Anselmo +Anthonie +Antione +Antone +Apollo +Arlo +Arsen +Art +Asad +Askari +Atom +Aven +Ayan +Bakari +Bartholomew +Basil +Belal +Bernabe +Boston +Boyd +Brallan +Brandin +Brandt +Brayn +Britton +Cale +Calum +Camrin +Camryn +Case +Cason +Cecilio +Chace +Chan +Cobe +Coleton +Colter +Conrado +Corban +Corben +Cormac +Cornell +Cuahutemoc +Curran +Dain +Dajuan +Dakoda +Dariel +Darrien +Dartagnan +Dashawn +Dat +Dax +Deagan +Deegan +Demetri +Dewayne +Dezmond +Donovin +Dustyn +Dyllon +Eamonn +Edwar +Edwardo +Edwyn +Eliab +Elijiah +Emir +Emory +Enrico +Eoin +Ephraim +Esgar +Exavier +Ezekial +Fabrizio +Farid +Feliciano +Finlay +Finnian +Fisher +Foster +Fredrick +Germaine +Gerry +Giacomo +Gio +Giovannie +Graden +Hakeem +Haris +Harutyun +Haven +Hikaru +Hiroki +Ibraheem +Imran +Isaah +Isayah +Izaya +Jadan +Jahi +Jalal +Jalon +Jamir +Jasiel +Jathan +Javen +Jaythan +Jayvion +Jeevan +Jerico +Jessiah +Jhonathan +Jhonny +Jhovany +Joeseph +Johannes +Johnmark +Johny +Josealberto +Josemaria +Joshuah +Jovannie +Joziah +Juaquin +Juliocesar +Juvenal +Kahlil +Kailen +Kaine +Kalel +Kamal +Kanoa +Karter +Kayvon +Kelton +Kevon +Khoa +Kien +Kobi +Koji +Krystian +Kush +Kylematthew +Laith +Lamberto +Landyn +Lazarus +Leander +Lenny +Luisfernando +Madden +Mahmoud +Maison +Malachai +Manveer +Maria +Mateen +Mathis +Matthewjames +Maximino +Maximos +Mazin +Mckay +Migel +Mikey +Mitchel +Munir +Murphy +Napoleon +Nathaneal +Navid +Nicolo +Nils +Ociel +Omer +Oren +Ori +Palmer +Porfirio +Quinlan +Rashaun +Regino +Reinaldo +Reuven +Rhyan +Ritchie +Rodrick +Ronak +Rosalio +Ruby +Ruslan +Rylie +Ryu +Saad +Sahir +Saif +Sampson +Sander +Saulo +Scotty +Serafin +Shai +Shayden +Shelton +Sherwin +Sidharth +Sincere +Sylvester +Tamir +Taran +Tino +Tory +Treyvon +Trysten +Tylar +Tyrin +Valen +Vartan +Vinicio +Vishnu +Vladislav +Wendell +Wilder +Wilfrido +Yahel +Yanni +Yasir +Yonathan +Yuri +Yuto +Zacary +Zacharias +Zak +Zeke +Aamir +Abe +Adal +Adel +Adi +Adian +Adryan +Aidin +Aidyn +Aksel +Alaric +Albaro +Alistair +Alphonso +Amauri +Amine +Amon +Anand +Andi +Andree +Andrewjames +Ansel +Ansh +Anshul +Antonino +Antwon +Aran +Arash +Arek +Aria +Arie +Aristotle +Arjan +Arjay +Arlen +Aryaman +Assael +Aviel +Aviv +Ayaan +Ayrton +Ayub +Aziel +Aziz +Benjaminjoseph +Bentley +Benyamin +Bernie +Blain +Bodey +Brayant +Brennon +Brigham +Brooklyn +Bryon +Bryton +Cadence +Cael +Caelan +Caillou +Cairo +Cal +Calin +Carlton +Carver +Casen +Casper +Ceaser +Cecil +Cedrick +Chadwick +Chasen +Chayton +Che +Chirag +Christ +Chukwuemeka +Cj +Clemente +Cordell +Cosmo +Coty +Courtney +Cristhian +Curren +Cy +Cyril +Dagan +Dagoberto +Dalen +Damarcus +Damarea +Dany +Danyel +Darryn +Darvin +Daryn +Dashaun +Davonte +Daylan +Daylin +Dayvon +Dejuan +Delvon +Demarea +Demari +Demario +Dempsey +Desean +Deshon +Diante +Dillen +Dilpreet +Dimas +Dionte +Dolan +Domenick +Donavon +Donavyn +Donny +Dru +Dylin +Eathan +Ebin +Edder +Edric +Ekin +Eligh +Elija +Emily +Eri +Errol +Estefano +Evander +Everest +Farhan +Fidencio +Franklyn +Froylan +Fynn +Garry +Geno +Geraldo +Germain +Gorge +Graydon +Grey +Grover +Gurjot +Gurvir +Gus +Hagan +Hagop +Haig +Haik +Hamid +Hamilton +Hatim +Herson +Hisham +Hollis +Hovanes +Ikaika +Ilyas +Imari +Ira +Iran +Ivory +Jacinto +Jacory +Jad +Jaedyn +Jaheem +Jaison +Jakobe +Jamin +Jancarlo +Jasdeep +Jasson +Javion +Jeovany +Jermiah +Jeromy +Jese +Joaquim +Jobe +Joesiah +Joesph +Johnatan +Johncarlo +Johncarlos +Jonpaul +Jorel +Jorgeluis +Josaiah +Joshue +Jr +Juanangel +Juanjose +Justen +Kacey +Kadyn +Kartik +Kash +Kavi +Kawika +Kayleb +Keandre +Keiran +Kenan +Kendal +Kenzo +Kesean +Keshaun +Kevan +Khaled +Khristian +Kiel +Kilian +Kimberly +Kimo +Kincaid +Kion +Kleber +Kobie +Kourosh +Kris +Krishan +Kushal +Kyran +Kyrin +Kyron +Laine +Lathan +Layth +Lian +Lunden +Lyndon +Mackenzie +Makaio +Malachy +Maliq +Manraj +Manu +Manvir +Masaki +Masato +Mel +Merlin +Mher +Michelle +Mikail +Miqueas +Modesto +Monte +Monty +Mykah +Mylo +Nadir +Nain +Nam +Naman +Narciso +Nathanel +Naveed +Nazar +Neftaly +Neri +Nevan +Nicholai +Nicklas +Nicola +Nicolaus +Nolberto +Noor +Nour +Oliverio +Omero +Omid +Onyx +Oryan +Otoniel +Pharrell +Phi +Pratham +Prithvi +Qasim +Rafe +Raghav +Ramy +Rayhan +Reef +Rei +Ridge +Rito +Robinson +Rodger +Ronal +Ronit +Roscoe +Ryne +Saahil +Sahib +Sahid +Sahith +Sai +Salam +Samarth +Samual +Saxon +Seanpaul +Selvin +Sergey +Shae +Shan +Shubham +Sir +Slade +Stevie +Storm +Sulayman +Surya +Tahj +Taiki +Takai +Takoda +Takumi +Talha +Tallon +Tamer +Tarek +Tavian +Taylen +Tayo +Thanh +Tiago +Tiernan +Tj +Tobiah +Toren +Torrin +Trae +Tremayne +Trung +Trustin +Tryston +Turner +Tushar +Tyee +Tyrique +Vahe +Valerie +Valor +Vann +Vansh +Ved +Vedant +Vegas +Venancio +Veniamin +Wylie +Xavian +Yaakov +Yancy +Yared +Yeshua +Yoan +Yobani +Yordi +Yulian +Zabdiel +Zacharia +Zayn +Zen +Daniel +Anthony +Andrew +Jose +Jacob +Joshua +David +Angel +Michael +Matthew +Christopher +Jonathan +Ryan +Alexander +Joseph +Ethan +Nathan +Brandon +Kevin +Juan +Christian +Nicholas +Diego +Jesus +Luis +Adrian +Dylan +Gabriel +Isaac +Carlos +William +Bryan +Tyler +James +Benjamin +Justin +Samuel +John +Isaiah +Jason +Julian +Brian +Elijah +Miguel +Alejandro +Aaron +Alexis +Robert +Noah +Eric +Aidan +Zachary +Victor +Evan +Jack +Eduardo +Alex +Ivan +Adam +Jordan +Logan +Jorge +Oscar +Jesse +Kyle +Sebastian +Luke +Steven +Cesar +Thomas +Francisco +Sean +Nathaniel +Ricardo +Fernando +Antonio +Richard +Austin +Edgar +Ian +Andres +Gavin +Caleb +Aiden +Cristian +Manuel +Omar +Alan +Lucas +Connor +Dominic +Jackson +Mason +Vincent +Erick +Javier +Owen +Jake +Sergio +Jayden +Leonardo +Cameron +Joel +Damian +Charles +Emmanuel +Xavier +Hector +Erik +Nicolas +Abraham +Edwin +Mark +Mario +Jaden +Jeremiah +Ruben +Jeremy +Andy +Giovanni +Roberto +Henry +Marco +Devin +Cole +Josue +Seth +Wyatt +Rafael +Timothy +Cody +Jared +Armando +Edward +Hunter +Raul +Kenneth +Colin +Gerardo +Martin +Marcus +Marcos +Raymond +Adan +Paul +Pedro +George +Patrick +Israel +Chase +Enrique +Derek +Elias +Liam +Gustavo +Josiah +Trevor +Saul +Alberto +Salvador +Jaime +Riley +Arturo +Peter +Hayden +Tristan +Fabian +Max +Julio +Kai +Ashton +Maxwell +Blake +Alfredo +Garrett +Carson +Caden +Jeffrey +Johnny +Ernesto +Shane +Bryce +Kaden +Yahir +Emilio +Pablo +Roman +Moises +Spencer +Andre +Emiliano +Ismael +Damien +Nolan +Esteban +Santiago +Jonah +Ramon +Cooper +Angelo +Carter +Micah +Jimmy +Landon +Donovan +Mateo +Brayden +Hugo +Abel +Johnathan +Oliver +Frank +Axel +Joaquin +Stephen +Gregory +Miles +Tanner +Bryant +Emanuel +Allen +Travis +Danny +Parker +Brendan +Leo +Bradley +Albert +Collin +Lorenzo +Osvaldo +Devon +Grant +Eli +Guillermo +Mauricio +Mathew +Kaleb +Shawn +Dominick +Rodrigo +Troy +Gael +Scott +Arthur +Brayan +Calvin +Noe +Ezekiel +Ayden +Conner +Jerry +Ty +Eddie +Wesley +Issac +Dillon +Levi +Jakob +Dante +Felix +Uriel +Malachi +Marc +Dustin +Preston +Alec +Brady +Ronald +Simon +Rodolfo +Tony +Alfonso +Felipe +Leonel +Chris +Gilbert +Orlando +Harrison +Phillip +Louis +Nikolas +Rene +Casey +Vicente +Darren +Lukas +Marvin +Nickolas +Braden +Ramiro +Isaias +Joe +Steve +Ulises +Allan +Dakota +Derrick +Randy +Colton +Rudy +Jalen +Noel +Gage +Zane +Gilberto +Jaylen +Jessie +Maximiliano +Dean +Charlie +Rogelio +Brett +Luca +Ryder +Mitchell +Skyler +Lance +Ricky +Adolfo +Efrain +Keith +Philip +Brody +Griffin +Cristopher +Jayson +Asher +Myles +Theodore +Drew +Ezra +Clayton +Colby +Drake +Joey +Peyton +Trent +Taylor +Freddy +Moses +Alvaro +Quinn +Ignacio +Dennis +Oswaldo +Zackary +Xander +Agustin +Jairo +Hudson +Darius +Kenny +Morgan +Gary +Aden +Aldo +Cade +Jace +Jaiden +Jay +Johan +Jude +Lawrence +Roger +Brenden +Ezequiel +Ali +Maximus +Tommy +Alexandro +Douglas +Branden +Larry +Octavio +Rigoberto +Rohan +Brennan +Trenton +Alonso +Amir +Bryson +Chad +Corey +Humberto +Alessandro +Kobe +Marlon +Elliot +Kristopher +Zion +Alonzo +Curtis +Russell +Jair +Mike +Quentin +Donald +Giovanny +Junior +Zander +Alvin +Tomas +Jonas +Malik +Melvin +Avery +Cruz +Cyrus +Izaiah +Brock +Julius +Maximilian +Walter +Misael +Rolando +Damon +Jonathon +Nathanael +Orion +Payton +Roy +Sam +Tyson +Ariel +Isiah +Rylan +Braulio +Estevan +Romeo +Dorian +Eugene +Irvin +Chance +Ray +Kian +Kristian +Tristen +Brent +Deven +Joseluis +Kameron +Arjun +Bernardo +Dane +Gianni +Kyler +Nelson +Tobias +Ulysses +Wilson +Bruce +Cayden +Gonzalo +Jasper +Jaxon +Leon +Yair +Byron +Frankie +Giancarlo +Jadon +Rowan +Aryan +Corbin +Dawson +Declan +Braeden +Camden +Cory +Finn +Efren +Jovany +Kayden +Maddox +Neil +Shaun +Bobby +Holden +Josh +Keegan +Landen +Enzo +Everett +German +Julien +Maurice +Arman +Isai +Matteo +Reynaldo +Ben +Darian +Davis +Kieran +Stanley +Caiden +Carl +Juancarlos +Kelvin +Nico +Pranav +Rocco +Ronnie +Santino +Santos +Trey +Arnav +Bennett +Jovanny +Kody +Leonard +Billy +Derick +Heriberto +Jeffery +Nestor +Quincy +Dalton +Jovani +Kaiden +Toby +Aditya +Alfred +Davin +Desmond +Elvis +Khalil +Nikhil +Raphael +Ronaldo +Zachariah +Abram +Ari +Deandre +Aron +Ernest +Keven +Reece +Ronan +Sonny +Ahmad +Damion +Dario +Francis +Adriel +Amari +Antony +Conrad +Dallas +Elian +Fidel +Frederick +Grayson +Jeshua +Mekhi +Nathen +Pierce +Brendon +Elliott +Gino +Niko +Solomon +Yael +Harry +Jett +Maximillian +Maximo +Chandler +Cristobal +Devan +Harley +Marshall +Micheal +Milo +Tucker +August +Conor +Craig +Franklin +Jovanni +Justice +Keanu +Kellen +Miguelangel +Reed +Valentin +Weston +Zaid +Andreas +Arnold +Elmer +Ibrahim +Jan +Rey +Beau +Carlo +Emerson +Isaak +Jon +Keaton +Marcelo +Raymundo +Reese +River +Bailey +Benny +Eliseo +Irving +Kyan +Lewis +Tate +Adrien +Alden +Bruno +Camilo +Demetrius +Denzel +Everardo +Franco +Geovanny +Gregorio +Guadalupe +Jordy +Lane +Luciano +Rodney +Sawyer +Silas +Warren +Will +Armaan +Gerald +Jaydon +Jefferson +Jermaine +Judah +Luc +Nehemiah +Wade +Braxton +Gordon +Jamal +Milton +Phoenix +Vance +Zackery +Alexandre +Alijah +Aurelio +Davion +Devyn +Duncan +Glenn +Graham +Hamza +Jahir +Johnathon +Kurt +Marcel +Markus +Maxim +Terry +Walker +Addison +Mariano +Mathias +Mohammad +Sahil +Skylar +Stefan +Titus +Zachery +Abner +Anton +Cash +Eddy +Fredy +Jaylin +Jerome +Jessy +Ken +Reid +Roland +Zechariah +Garret +Genaro +Geovanni +Giovani +Isac +Joan +Marcelino +Matthias +Mohammed +Muhammad +Nick +Semaj +Valentino +Akash +Anish +Darwin +Favian +Jovan +Kade +Kadin +Keenan +Leandro +Marquis +Rahul +Rhys +Rishi +Sage +Sammy +Zain +Adonis +Benito +Dominique +Federico +Gunnar +Leobardo +Luka +Malakai +Mohamed +Neo +Omari +Reuben +Rick +Taj +Winston +Alexzander +Arya +Dominik +Hernan +Jameson +Jarrett +Lincoln +Paolo +Ralph +Rory +Said +Theo +Triston +Camron +Deshawn +Devean +Enoch +Geovany +Hassan +Isidro +Jaeden +Josemanuel +Kareem +Leopoldo +Makai +Matias +Norman +Obed +Quintin +Reginald +Yash +Amarion +Anderson +Antoine +Clark +Davian +Dhruv +Edgardo +Edison +Edson +Emmett +Jai +Kent +Lee +Quinton +Randall +Terrell +Trevon +Vince +Ahmed +Aydan +Cristofer +Eleazar +Franky +Jamari +Jaycob +Jean +Jonatan +Justus +Louie +Marcello +Mauro +Osbaldo +Sebastien +Tristin +Alek +Aydin +Draven +Guy +Johnpaul +Kainoa +Karim +Lucca +Lucio +Raiden +Ramses +Reagan +Samson +Sky +Soren +Ajay +Brad +Carmelo +Cohen +Davon +Dilan +Easton +Jamie +Jamison +Javon +Jaylon +Johnson +Kendrick +Kolby +Malcolm +Nathanial +Ryland +Todd +Tyree +Tyrone +Aren +Arnulfo +Augustine +Bill +Braydon +Cedric +Dan +Dangelo +Darrell +Domenic +Erwin +Ever +Harold +Howard +Jaron +Jayce +Johann +Keoni +Maverick +Remy +Siddharth +Terrance +Tom +Truman +Wayne +Willie +Yousef +Abdullah +Adalberto +Anson +Aram +Atticus +Ayush +Cannon +Darrin +Eder +Elisha +Fletcher +Gerson +Gunner +Ishaan +Jeff +Johnnie +Josef +Kylan +Marques +Mikel +Mustafa +Omarion +Robin +Aldair +Aman +Armani +Bilal +Brennen +Brice +Bronson +Callum +Claudio +Dillan +Dion +Eliot +Elvin +Flavio +Geoffrey +Immanuel +Isael +Ishmael +Jabari +Jagger +Jeramiah +Jim +Jordon +Kanye +Prince +Rex +Rico +Samir +Shea +Tai +Talon +Varun +Vaughn +Arvin +Ashwin +Blaine +Brycen +Ceasar +Dayton +Don +Dyllan +Ellis +Gian +Grady +Hank +Horacio +Jacky +Jaret +Jaydin +Jorden +Kasey +Lazaro +London +Luisangel +Luiz +Marcoantonio +Sameer +Shaan +Stephan +Sunny +Angus +Arian +Avi +Brodie +Clarence +Cuauhtemoc +Darnell +Deon +Dimitri +Ernie +Fausto +Finley +Gianluca +Glen +Greg +Hugh +Isacc +Kamron +Karl +Keon +Nigel +Roan +Sami +Seamus +Sterling +Stone +Trever +Vincenzo +Vladimir +Xzavier +Zakary +Andrey +Anirudh +Benson +Boston +Christofer +Clinton +Cristo +Dashawn +Eden +Esai +Gamaliel +Garett +Gavyn +Herman +Jaxson +Jedidiah +Marley +Mohamad +Oskar +Paulo +Reggie +Rio +Royce +Tariq +Yusuf +Zack +Andon +Arath +Benicio +Dale +Dallin +Danilo +Daryl +Deangelo +Dejon +Devlin +Dexter +Edmund +Eloy +Ervin +Fred +Iain +Jaren +Jarred +Jelani +Joseangel +Juanpablo +Kale +Karson +Kole +Krish +Kurtis +Lamont +Leroy +Lisandro +Lucky +Marko +Norberto +Porter +Reyes +Richie +Rickey +Ross +Shayne +Sidney +Terrence +Tobin +Abhinav +Abran +Alton +Asa +Baron +Brandan +Brenton +Broderick +Camren +Cian +Clay +Coby +Coleman +Cristhian +Dandre +Daren +Darien +Dashiell +Domingo +Eliazar +Emil +Eriberto +Esau +Gadiel +Gannon +Gene +Gideon +Harvey +Iker +Ishan +Jess +Kelly +Kenji +Kerry +Kory +Marquez +Nikita +Noa +Odin +Pete +Pierre +Presley +Rohit +Rosendo +Sandro +Shant +Stuart +Terence +Tyrese +Van +Waylon +Abdiel +Akshay +Anders +Andrei +Barry +Beckett +Bodhi +Brooks +Charly +Darion +Darryl +Demetrio +Donavan +Dwayne +Edmond +Ethen +Finnegan +Fredrick +Geovani +Heath +Jaedon +Jaidyn +Jensen +Kaeden +Kalani +Kamari +Kamran +Karan +Kendall +Kennedy +Kiran +Konner +Marquise +Maximino +Pavel +Rayan +Rocky +Roderick +Salomon +Shayan +Uriah +Vivek +Wilber +Yosef +Yovani +Ace +Adair +Aedan +Beck +Boris +Brando +Caesar +Daron +Dereck +Derik +Diogo +Elton +Ely +Evin +Fabrizio +Freddie +Gil +Hezekiah +Hilario +Izaac +Jackie +Jacques +Jamar +Jareth +Javen +Jet +Jordyn +Kane +Kekoa +Keyon +Koda +Koen +Lester +Lino +Merrick +Osiel +Otto +Quinlan +Rhett +Rider +Rigo +Ronin +Serafin +Silvestre +Simeon +Stephon +Ulisses +Vidal +Vincente +Willem +Yonatan +Yousuf +Abimael +Ajani +Armand +Bernard +Darin +Domonic +Donte +Duke +Ean +Edmundo +Elyjah +Eugenio +Ewan +Flynn +Forrest +Greyson +Hasan +Herbert +Hiram +Izaya +Jafet +Jamil +Jericho +Jonny +Joseantonio +Kalvin +Kamren +Kenyon +Kevyn +Konnor +Korbin +Krishna +Kyree +Lars +Lenny +Lionel +Markanthony +Mihir +Mikael +Milan +Nikko +Nikolai +Ocean +Patricio +Raj +Renzo +Roque +Sabastian +Sarkis +Sione +Tigran +Tim +Tobey +Torin +Trinidad +Vikram +Vinson +Akira +Ansel +Ansh +Arron +Asael +Augustus +Beckham +Brandyn +Bret +Canyon +Clemente +Colt +Damarion +Demian +Destin +Elan +Fermin +Francesco +Garrison +Gaven +Gus +Hans +Harris +Imanol +Issiah +Jacoby +Jamin +Jax +Jayvon +Jiovanni +Kadyn +Kalen +Kirk +Kris +Lamar +Lennon +Levon +Linus +Lloyd +Malaki +Marcellus +Michaelangelo +Moshe +Mykel +Narek +Nevan +Paxton +Rashad +Rasheed +Reilly +Roshan +Ryley +Santana +Shiloh +Shreyas +Syed +Travon +Tre +Tristian +Trystan +Turner +Zayd +Abisai +Alen +Amani +Arav +Aric +Arnoldo +Azael +Barrett +Bo +Braedon +Brooklyn +Celso +Chauncey +Clifford +Deonte +Erin +Faris +Faustino +Gabino +Galen +Gevork +Giuseppe +Haiden +Houston +Izaak +Jad +Jael +Jaheim +Jamarion +Jamir +Javin +Jaylan +Jaziel +Jevon +Jordi +Jordin +Joshue +Jullian +Juvenal +Kael +Karlo +Khang +Killian +Kingston +Leland +Leslie +Lex +Massimo +Messiah +Mikah +Myron +Nash +Nasir +Naythan +Neel +Nery +Om +Osmar +Perry +Rishabh +Ronny +Saif +Selvin +Syrus +Tevin +Timmy +Trace +Tye +Tyrell +Ulyses +Uziel +Viktor +Wilmer +Ab +Abhay +Adriano +Adryan +Amado +Amare +Anmol +Arion +Armen +Athan +Ayaan +Bishop +Bradford +Bradly +Bryon +Cain +Cecil +Charley +Chaz +Cy +Darrion +Dax +Denis +Dino +Dylon +Earl +Elder +Eliel +Elio +Erasmo +Froylan +Gerard +Harman +Haydn +Henri +Ilan +Isreal +Issa +Izayah +Jadyn +Jarod +Jaydan +Jaysen +Jeanpierre +Jerardo +Jeremias +Jerimiah +Juliocesar +Justyn +Juventino +Keshawn +Keyshawn +King +Koby +Kristofer +Kush +Lachlan +Landyn +Lawson +Luigi +Makaio +Maksim +Marcanthony +Mateen +Maximilliano +Michel +Montgomery +Naim +Natan +Natanael +Nate +Neftali +Osiris +Parth +Rami +Remi +Remington +Rony +Rowen +Ryker +Rylee +Salem +Salvatore +Sasha +Shiv +Sohan +Ted +Tino +Tyce +Ubaldo +Ulices +Vishal +Vishnu +Zahid +Zaire +Aaryan +Abdul +Abelardo +Abrahan +Aeneas +Alexi +Amar +Ameen +Amogh +Amrit +Aubrey +Azriel +Bernie +Blaise +Bodie +Bradyn +Braiden +Branson +Brevin +Caeden +Cezar +Clifton +Conan +Davonte +Daylon +Deegan +Demario +Dev +Domenico +Donnie +Edwardo +Eian +Emery +Emir +Enoc +Esdras +Floyd +Geno +Hakop +Ira +Irwin +Issak +Izael +Jase +Jc +Jessi +Joahan +Job +Johny +Juandiego +Kabir +Kamryn +Karlos +Kellan +Kenai +Kenton +Keshav +Konrad +Kristoffer +Kyran +Laurence +Layne +Loren +Lucian +Lucien +Luther +Lyle +Manny +Marcell +Marion +Marshawn +Matt +Maxx +Menachem +Mikhail +Missael +Monte +Murphy +Nahum +Nam +Nicklas +Nicolo +Nihal +Nikolaus +Nixon +Nomar +Ozzy +Porfirio +Reef +Ron +Servando +Shannon +Shay +Sincere +Slater +Sullivan +Teagan +Teddy +Tej +Tejas +Thaddeus +Thien +Tylor +Viggo +Vinh +Vinny +Wilfredo +Yaseen +Yoel +Yordi +Zavier +Aarav +Akhil +Aleksander +Ambrose +Amin +Amit +Ammar +Ammon +Anand +Andranik +Andrez +Andru +Aries +Arin +Armin +Arsen +Arun +Austyn +Baltazar +Bijan +Blaze +Bradlee +Caelan +Campbell +Cassius +Cisco +Clement +Clyde +Colten +Corban +Dakoda +Dave +Deacon +Demitrius +Denilson +Deondre +Deshaun +Devonte +Domenick +Dru +Dwight +Dylen +Elie +Eligh +Eros +Esequiel +Filiberto +Fredi +Gibson +Giovany +Haden +Hayk +Hazael +Isrrael +Izak +Jacobo +Jahaziel +Jaison +Jaleel +Jarrod +Jeronimo +Jessejames +Jhonathan +Jin +Jomar +Juandavid +Juaquin +Kaelan +Kalil +Kanoa +Karsten +Karthik +Kegan +Khalid +Kiernan +Koa +Korey +Kushal +Latrell +Leif +Librado +Luisenrique +Maceo +Marck +Marek +Margarito +Matan +Micaiah +Mickey +Minh +Mitchel +Naveen +Nazareth +Neal +Niccolo +Nikola +Paris +Pranay +Raghav +Raudel +Renato +Reymundo +Rishab +Romario +Rushil +Sheldon +Sina +Stevan +Tytus +Valente +Ved +Vernon +Virgil +Wallace +West +Westin +Yeshua +Youssef +Yovany +Zayden +Zeth +Zuriel +Aadi +Aakash +Aayush +Abhiram +Adi +Adithya +Alexiz +Alexys +Amaan +Ameer +Andi +Andrea +Antoni +Antwan +Antwone +Apollo +Archer +Armondo +Artemio +Ashten +Austen +Azariah +Boaz +Bowen +Briant +Brogan +Carsten +Coen +Coleton +Curren +Damari +Dameon +Danniel +Darrick +Demetri +Demitri +Denny +Denver +Dewayne +Dezmond +Donavon +Donnovan +Donny +Eamon +Eber +Edan +Eliezer +Elija +Elyas +Ephraim +Eyan +Fabricio +Florentino +Gauge +Genesis +Giancarlos +Gregor +Grigor +Hamilton +Henrik +Homero +Hubert +Hyrum +Isahi +Izel +Izrael +Jadan +Jadin +Jalil +Jamaal +Jarren +Jasiah +Jasiel +Javan +Jeancarlo +Jesiah +Jhonny +Johnmichael +Jorgeluis +Josedejesus +Josias +Jossue +Jovon +Joziah +Justen +Justis +Kahlil +Kaimana +Kaleo +Kasen +Khristian +Kiefer +Kodey +Kylen +Laron +Macario +Maddux +Makhi +Markel +Markell +Mattias +Mika +Nikos +Oswald +Otoniel +Palmer +Parsa +Paulino +Pierson +Quinten +Raven +Rayhan +Raymon +Rome +Rommel +Saeed +Samarth +Samvel +Saulo +Sevag +Stewart +Tayshaun +Trenten +Umar +Wendell +Williams +Willy +Wolfgang +Wylie +Yusef +Zayne +Zephaniah +Zev +Abhishek +Adiel +Adrean +Adyn +Ailton +Aj +Akshat +Aldrin +Alexavier +Amador +Amos +Anakin +Anden +Andruw +Aneesh +Anshul +Antwon +Aramis +Arden +Aris +Arshdeep +Atharva +Avraham +Benedict +Bennie +Bernabe +Blair +Brallan +Callahan +Callan +Canaan +Carlton +Cary +Cason +Cassidy +Ceaser +Chace +Chasen +Cordell +Cosmo +Cullen +Daemon +Dagoberto +Dajuan +Dakarai +Dakari +Dakotah +Damani +Darrien +Dat +Daylen +Degan +Demarco +Derian +Desi +Donato +Duane +Ector +Edder +Edu +Edvin +Eitan +Eshaan +Eshan +Esteven +Etienne +Ezrah +Finlay +Fisher +Ford +Garren +Gaurav +Gerry +Giacomo +Gildardo +Giovannie +Gor +Hamzah +Hasani +Haven +Heber +Huy +Iban +Ibraheem +Igor +Isaih +Isak +Iseah +Ismail +Itai +Jade +Jaelen +Jailen +Jarrell +Jashua +Jaskaran +Jaykob +Jayr +Jayven +Jed +Jeffry +Jezreel +Jimmie +Josmar +Jourdan +Juanjose +Jules +Kailash +Kailer +Kalin +Kavi +Kaya +Kayin +Kelton +Kenan +Keonte +Kevon +Khai +Khamani +Kolton +Kunal +Lauro +Lenin +Leyton +Lior +Lonnie +Lyndon +Magnus +Malikai +Manolo +Marius +Mateus +Mathieu +Mayson +Mervin +Mick +Mikal +Miller +Morris +Muhammed +Musa +Nadav +Narciso +Nareg +Nasser +Nevin +Nicklaus +Nicola +Niklas +Nithin +Oziel +Pascual +Piero +Rajan +Ramsey +Randolph +Rayshawn +Rayyan +Raziel +Richmond +Rickie +Romero +Rosario +Rueben +Russel +Rylie +Sachin +Sal +Sanjay +Saxon +Sayed +Schuyler +Seanmichael +Seven +Shan +Skye +Suraj +Sven +Tadeo +Tal +Taran +Tarun +Taye +Tenoch +Teodoro +Theron +Thor +Tito +Trayvon +Trustin +Viraj +Waleed +Wilbert +Wilfrido +Xaiver +Xavior +Yahya +Yamil +Yasir +Yonathan +Yoni +Yovanni +Yuvraj +Zac +Zach +Zade +Zakariya +Zeke +Zen +Zephyr +Abdulrahman +Adal +Adarsh +Adil +Adin +Adrik +Aksel +Akul +Alaric +Aleksandr +Alexsander +Alphonso +Amadeo +Andrik +Angelgabriel +Anjel +Anuar +Anuj +Ares +Aria +Aristeo +Armon +Arshia +Arvind +Ashley +Ashtin +Audel +Avant +Avian +Avin +Aziz +Baden +Bayron +Bernardino +Bladimir +Blaize +Blas +Bob +Boden +Braedyn +Brandin +Brandt +Brennon +Broc +Brodi +Buddy +Cage +Cale +Calum +Cecilio +Cedrick +Chet +Clint +Cortez +Cyril +Daelin +Danial +Danthony +Dany +Darrian +Darrius +Dartagnan +Daunte +Daven +Daylan +Dayne +Deion +Demarion +Derin +Devante +Devaughn +Devion +Devontae +Diallo +Dillion +Dmitri +Donavin +Dyllon +Dyson +Eathan +Ed +Edgard +Eladio +Eligio +Elijiah +Eliodoro +Emory +Enrico +Eren +Erich +Erickson +Ericson +Ethyn +Even +Evyn +Faisal +Finnian +Forest +Fox +Frederic +Gaige +Garo +Gavan +Geovannie +Gianmarco +Gibran +Giordano +Giuliano +Graeme +Gray +Gurpreet +Haik +Hanson +Haris +Harish +Harjot +Harlan +Harnoor +Haroon +Hovanes +Huber +Imran +Indiana +Iven +Izik +Jaciel +Jacinto +Jahmari +Jaidon +Jairus +Jakobe +Jakub +Jameer +Jancarlos +Jaquan +Jashawn +Jasson +Jeevan +Jens +Jerald +Jeron +Jerrick +Jese +Jessee +Jessiah +Jireh +Jody +Johnathen +Johncarlos +Johnpatrick +Joncarlo +Jorel +Josealberto +Jr +Justino +Kailen +Kamau +Kamden +Kannon +Kasper +Kayleb +Kean +Keane +Keller +Kelsey +Kentrell +Kimberly +Kimo +Kona +Leopold +Levy +Lizandro +Loic +Lucius +Lucus +Mac +Mahdi +Maison +Major +Malek +Maria +Matthieu +Maurisio +Memphis +Michelle +Migel +Milad +Mynor +Nabil +Nakai +Neri +Nicholaus +Nickolaus +Nima +Nishant +Ojani +Omid +Oren +Oryan +Ozzie +Raffi +Rahim +Rahman +Rajveer +Ram +Randell +Rashaun +Ravi +Rayden +Rithik +Robbie +Robby +Rojelio +Ronit +Royal +Ryo +Ryon +Ryu +Sabino +Sahid +Samari +Sandeep +Sander +Serjio +Shalom +Shamar +Shamus +Shaw +Sheridan +Shivam +Sidharth +Silverio +Slade +Soham +Sol +Sriram +Stefano +Stevie +Sukhman +Sukhraj +Surya +Sy +Sydney +Tad +Taiki +Tajon +Teo +Terren +Tevita +Tiago +Trae +Trevin +Tyshawn +Uzziel +Valentine +Vansh +Ventura +Viet +Vijay +Virgilio +Winson +Wyland +Yaakov +Yan +Yasin +Yobani +Zacharias +Zahir +Zak +Zakariah +Zavion +Zayvion +Zeus +Aarnav +Able +Achilles +Adeeb +Adian +Adnan +Adonai +Ahmari +Aidin +Aidyn +Alain +Aldahir +Aleks +Alexei +An +Aniket +Aniketh +Aran +Archit +Arlo +Artin +Arul +Aryeh +Asad +Asim +Aspen +Augusto +Avetis +Avo +Axl +Ayman +Barron +Benton +Bjorn +Bowie +Boyd +Bradon +Brayant +Braylon +Brayton +Brigham +Burton +Cael +Caillou +Caine +Camryn +Candelario +Carnell +Cavin +Cayleb +Chaim +Chester +Christ +Cj +Claude +Cleveland +Coda +Codey +Conlan +Conrado +Constantine +Cornelio +Cornelius +Corwin +Coy +Cris +Crispin +Daivon +Dajon +Damarcus +Damario +Damen +Dara +Darrel +Daveon +Dayron +Deanthony +Dedrick +Delvin +Demar +Demarcus +Dequan +Derrek +Derrik +Dhillon +Dillen +Dillinger +Django +Donaven +Donoven +Dontae +Dovid +Ebin +Edel +Edilberto +Edin +Edrei +Eduard +Eithan +Eldon +Elek +Eleuterio +Elgin +Eliab +Eliah +Eliud +Elizandro +Ellison +Elpidio +Elson +Emile +Emin +Emmet +Enrrique +Eoin +Ethaniel +Eulalio +Evander +Evans +Fabio +Fahad +Faiz +Faizan +Farhan +Farid +Filip +Fionn +Fortino +Francois +Garet +Gaspar +Georgio +Geremy +Geronimo +Haig +Hamlet +Harout +Hayes +Hermes +Homar +Humza +Iman +Indigo +Irfan +Issaiah +Jabril +Jacen +Jaedan +Jaelin +Jahiem +Jalani +Jalin +Jancarlo +Jarek +Jarett +Jarin +Jasen +Jashon +Jaspreet +Jaymes +Jeanluc +Jenner +Jeovanny +Jeramie +Jeric +Jerrod +Jerson +Jesusjr +Jesusmanuel +Jhovany +Jiovani +Jjesus +Joab +Joell +Joeseph +Johncarlo +Jonnathan +Joon +Joseguadalupe +Josemaria +Joshuajohn +Juanantonio +Juanluis +Juanmanuel +Judson +Kaelin +Kailan +Kaito +Kalel +Kalob +Kamal +Kamar +Kamarion +Kanan +Kash +Kason +Kaveh +Kaven +Kavin +Keagan +Keandre +Keshaun +Keshon +Kethan +Khamari +Kimani +Kiyan +Korbyn +Kou +Krishan +Ladainian +Laith +Landin +Langston +Lavell +Legend +Leighton +Lemuel +Leonidas +Leovardo +Lev +Linden +Luisantonio +Lupe +Mack +Madden +Mahad +Maika +Malacai +Manu +Markos +Marty +Masen +Mathis +Maurilio +Maurion +Maxfield +Mckinley +Mekai +Michelangelo +Mizael +Montana +Mykah +Nadeem +Nadim +Napoleon +Nason +Nathin +Nazar +Neftaly +Nicco +Nicolai +Nihar +Nikolaos +Nitin +Noam +Noble +Nolen +Nova +Obadiah +Obie +Ollin +Omeed +Omer +Ori +Osman +Otis +Pasha +Percy +Phineas +Puneet +Quang +Raheem +Rashawn +Rashid +Rian +Ridge +Riki +Ritchie +Ritvik +Rodrick +Ronak +Rondell +Ronen +Roni +Ronnell +Roosevelt +Rowdy +Rubin +Rusty +Ruvim +Ryen +Saad +Saahil +Saleem +Samar +Samay +Satvik +Saurav +Savion +Scout +Seanpatrick +Sebastion +Shai +Shalim +Shaunak +Shayden +Sherman +Shiven +Shrey +Sid +Sir +Sixto +Sohil +Stanton +Strider +Taha +Takumi +Tanay +Tanish +Tarek +Tarik +Taryn +Tavin +Tavis +Tayler +Tayvion +Tennyson +Thai +Tidus +Timmothy +Tin +Tj +Tlaloc +Tonatiuh +Tou +Treyton +Treyvon +Vahe +Vaibhav +Valerie +Vedant +Veer +Vinay +Vito +Vlad +Walid +Wes +Wilder +Wiley +Xaviar +Yehuda +Yisrael +Yohann +Yuki +Zacary +Zaden +Zaiden +Zakery +Zaven +Daniel +Anthony +Angel +David +Joshua +Jose +Andrew +Jacob +Matthew +Michael +Jonathan +Christopher +Joseph +Alexander +Nathan +Ethan +Ryan +Diego +Juan +Kevin +Brandon +Christian +Luis +Gabriel +Jesus +Adrian +Isaac +Nicholas +Carlos +Dylan +Noah +Tyler +Samuel +Bryan +James +Isaiah +Julian +Benjamin +William +John +Aaron +Justin +Alejandro +Miguel +Jason +Brian +Elijah +Jack +Robert +Eric +Aidan +Sebastian +Logan +Jordan +Victor +Evan +Zachary +Jorge +Luke +Eduardo +Alex +Ivan +Oscar +Jesse +Adam +Steven +Alexis +Nathaniel +Aiden +Lucas +Gavin +Francisco +Cesar +Thomas +Kyle +Manuel +Omar +Antonio +Andres +Richard +Ricardo +Jayden +Caleb +Alan +Fernando +Ian +Sean +Austin +Mason +Edgar +Dominic +Hector +Giovanni +Cristian +Jackson +Vincent +Javier +Damian +Leonardo +Erick +Charles +Owen +Sergio +Jeremiah +Abraham +Xavier +Connor +Emmanuel +Nicolas +Joel +Erik +Mario +Andy +Marco +Jake +Cameron +Henry +Roberto +Jaden +Cole +Edwin +Jeremy +Devin +Mark +Josue +Jared +Edward +Timothy +Hunter +Wyatt +Seth +Ruben +Pedro +Kenneth +Elias +Paul +Josiah +Martin +George +Raymond +Israel +Armando +Chase +Liam +Gerardo +Julio +Colin +Hayden +Rafael +Cody +Marcus +Riley +Raul +Landon +Trevor +Derek +Salvador +Marcos +Roman +Enrique +Arturo +Gustavo +Jaime +Adan +Peter +Saul +Fabian +Tristan +Patrick +Max +Alberto +Esteban +Emilio +Johnny +Kaden +Emiliano +Carter +Pablo +Kai +Blake +Andre +Moises +Oliver +Shane +Ernesto +Santiago +Bryce +Caden +Maxwell +Gael +Brayden +Jeffrey +Donovan +Axel +Alfredo +Carson +Mateo +Johnathan +Nolan +Micah +Frank +Ramon +Bradley +Emanuel +Jonah +Miles +Joaquin +Tanner +Angelo +Garrett +Hugo +Abel +Stephen +Ismael +Jimmy +Cooper +Damien +Spencer +Ayden +Parker +Danny +Brayan +Kaleb +Uriel +Leo +Yahir +Mauricio +Shawn +Travis +Ashton +Preston +Eli +Mathew +Rodrigo +Grant +Troy +Guillermo +Albert +Brady +Dominick +Ty +Brendan +Ezekiel +Malachi +Allen +Randy +Ryder +Dillon +Levi +Osvaldo +Calvin +Gregory +Conner +Collin +Noe +Braden +Lorenzo +Leonel +Ulises +Scott +Issac +Drew +Eddie +Wesley +Chris +Devon +Felipe +Harrison +Rene +Brody +Bryant +Tony +Alfonso +Arthur +Gage +Orlando +Dante +Jakob +Felix +Rodolfo +Ronald +Jaylen +Marvin +Steve +Isaias +Alec +Colton +Lukas +Nikolas +Dustin +Luca +Maximus +Jalen +Jessie +Joe +Rogelio +Taylor +Adolfo +Louis +Hudson +Jaiden +Jerry +Kenny +Rudy +Derrick +Ezra +Simon +Noel +Darren +Ricky +Vicente +Efrain +Gilberto +Jace +Lance +Skyler +Alvaro +Cruz +Oswaldo +Theodore +Jairo +Casey +Griffin +Ramiro +Maximiliano +Trenton +Zane +Phillip +Drake +Gilbert +Asher +Charlie +Dean +Quinn +Marc +Octavio +Philip +Allan +Avery +Brett +Cayden +Peyton +Jay +Dakota +Joey +Jayson +Dennis +Rohan +Zackary +Corey +Maddox +Trent +Izaiah +Lawrence +Johan +Darius +Gary +Roger +Aldo +Ignacio +Jonas +Alonso +Alonzo +Keith +Melvin +Myles +Aden +Cyrus +Moses +Nickolas +Zion +Colby +Humberto +Mitchell +Tomas +Cade +Ezequiel +Julius +Kaiden +Rylan +Ali +Braulio +Freddy +Rigoberto +Branden +Cristopher +Ariel +Bryson +Donald +Elliot +Frankie +Xander +Larry +Amir +Chance +Isai +Morgan +Russell +Brenden +Declan +Estevan +Jude +Ray +Tommy +Alvin +Maximilian +Walter +Elliott +Giovanny +Damon +Nelson +Alessandro +Alexandro +Brennan +Isiah +Kyler +Malik +Marlon +Roy +Rowan +Agustin +Irvin +Kristopher +Misael +Jaxon +Jonathon +Leon +Clayton +Dane +Finn +Chad +Yair +Douglas +German +Sam +Tyson +Bruce +Kian +Mike +Kayden +Kelvin +Landen +Curtis +Miguelangel +Tristen +Byron +Gianni +Junior +Gonzalo +Quentin +Trey +Braeden +Efren +Enzo +Nestor +Shaun +Giancarlo +Jasper +Aryan +Camden +Holden +Rolando +Dorian +Jovani +Juanpablo +Keegan +Nehemiah +Zander +Arjun +Brock +Dario +Jovanni +Romeo +Ronan +Sawyer +Sonny +Bruno +Dallas +Jovanny +Kameron +Matteo +Carlo +Jair +Nathanael +Orion +Phoenix +Silas +Solomon +Tobias +Zachariah +Kristian +Sage +Tate +Jadon +Johnpaul +Rocco +Dalton +Emerson +Eugene +Everett +Giovani +Grayson +Harry +Jett +Keven +Ulysses +Amari +Ari +Bennett +Cory +Davis +Deven +Elvis +Khalil +Santos +Aditya +Franklin +Kieran +Anderson +Ben +Bernardo +Caiden +Carl +Jon +Marcelo +Stanley +Brent +Corbin +Darian +Reese +Adriel +Ahmad +Billy +Fredy +Judah +Julien +Mekhi +Abram +Cash +Derick +Dominik +Jaydon +Maximo +Nathen +Payton +Rey +River +Alexzander +Alfred +Aron +Bobby +Fidel +Frederick +Leonard +Quincy +Ronaldo +Adrien +Arnav +Josh +Marcel +Terry +Tucker +Desmond +Gerald +Guadalupe +Heriberto +Jovany +Raymundo +Reece +Rodney +Davian +Eliseo +Graham +Ibrahim +Juancarlos +Micheal +Pierce +Ronnie +Wade +Wilson +Yael +Antony +Favian +Joan +Maverick +Nico +Toby +Valentin +Arman +Beau +Elmer +Kellen +Maurice +Titus +Elisha +Isidro +Keaton +Louie +Markus +Raphael +Rick +Weston +Cristobal +Emmett +Jaxson +Leandro +Luc +Malakai +Santino +Conor +Dawson +Deandre +Isaak +Kody +Milo +Nick +Varun +Walker +Jordy +Justice +Lincoln +Mohammad +Roland +Ryland +Semaj +Warren +Benny +Cohen +Hernan +Jerome +Leland +Luciano +Pranav +Atticus +Dangelo +Genaro +Gerson +Isac +Jefferson +Jeshua +Neil +Osbaldo +Valentino +Winston +Alijah +Armaan +Brendon +Davion +Donavan +Everardo +Malcolm +Marshall +Nikhil +Sunny +Tristin +Abdiel +Addison +Cristofer +Francis +Geovanni +Jaylin +Johann +Johnathon +Luka +Makai +Mariano +Ralph +Skylar +Will +Willie +Davin +Federico +Gino +Kadin +Keanu +Kobe +Niko +Ramses +Reed +Terrance +Ahmed +Bailey +Benicio +Chandler +Darin +Eddy +Ernest +Geovanny +Greyson +Harold +Jaeden +Jameson +Reynaldo +Sahil +Terrell +Zechariah +Braydon +Conrad +Craig +Glenn +Irving +Kade +Keenan +Kenji +Matias +Nasir +Rahul +Reid +Reyli +Talan +Andreas +Anton +August +Camron +Damion +Darien +Demetrius +Devan +Eder +Gunnar +Izaac +Jeffery +Jonatan +Kane +Lionel +Marcelino +Muhammad +Soren +Van +Zachery +Zackery +Antoine +Aydan +Benito +Dashiell +Easton +Elian +Elvin +Hamza +Harley +Joseluis +Lane +Lucca +Milan +Stefan +Terrence +Cedric +Damarion +Darryl +Edson +Freddie +Gregorio +Jovan +Kent +Maximillian +Sterling +Vaughn +Dan +Dereck +Duncan +Grady +Lamar +London +Mohamed +Mohammed +Quinton +Randall +Sammy +Sebastien +Xzavier +Abhinav +Clay +Darwin +Devyn +Dexter +Dominique +Eden +Erwin +Flavio +Jael +Jamal +Marquis +Mathias +Milton +Omarion +Paulo +Said +Siddharth +Theo +Vladimir +Abdullah +Abner +Anakin +Ayush +Camren +Ever +Franco +Jahir +Jayce +Jeff +Jorden +Lucio +Marcoantonio +Mauro +Obed +Paolo +Quintin +Rayan +Reginald +Rex +Royce +Seamus +Tom +Yonatan +Adonis +Benedict +Bronson +Dale +Dillan +Ellis +Geoffrey +Jacobo +Jamie +Ken +Kennedy +Marques +Nikko +Osmar +Rishi +Todd +Zaid +Alexandre +Amare +Andrey +Armen +Arnold +Camilo +Clark +Dhruv +Evin +Fred +Gideon +Iain +Jericho +Jermaine +Jet +Justus +Kasey +Krish +Lewis +Marcello +Nigel +Odin +Rhys +Tai +Yash +Yovani +Adair +Ajay +Anish +Arath +Beckett +Clarence +Deangelo +Donte +Esai +Finnegan +Howard +Izaak +Javon +Jensen +Kendrick +Keon +Kurt +Kyan +Lee +Omari +Prince +Reuben +Rory +Talon +Vince +Wayne +Adalberto +Asa +Bernard +Brennen +Cain +Darnell +Denzel +Deon +Dilan +Ernie +Ervin +Imanol +Jagger +Jamari +Jeramiah +Jordi +Kainoa +Lino +Luisangel +Mihir +Nathanial +Patricio +Pierre +Porter +Rami +Reyes +Rocky +Sameer +Taj +Ulices +Vincenzo +Yusuf +Amado +Aman +Blaine +Brodie +Danilo +Darrell +Daryl +Davon +Deshawn +Dimitri +Garret +Gordon +Ishan +Jarrett +Kalani +Kenyon +Kevyn +Lucian +Maxim +Ronin +Samir +Triston +Tyrone +Zack +Arya +Bodhi +Brooks +Brycen +Carmelo +Chaz +Christofer +Colten +Dwayne +Dyllan +Ethen +Francesco +Gannon +Jan +Jessy +Jordon +Karol +Keyon +Kurtis +Leopoldo +Neo +Quinten +Robin +Vance +Zeus +Anjel +Armani +Benson +Bill +Caesar +Carmine +Claudio +Daren +Domenic +Fermin +Gunner +Guy +Horacio +Isacc +Jase +Jayro +Joseangel +Josef +Kamron +King +Kory +Leif +Lisandro +Norberto +Osiel +Parsa +Roan +Rohit +Stephan +Tobin +Yosef +Zahid +Zain +Ace +Achilles +Alek +Andrei +Arnulfo +Bodie +Brad +Broderick +Ceasar +Edan +Eliel +Enoch +Finley +Franky +Gianluca +Hank +Harvey +Hassan +Izak +Jaydin +Jaylon +Jean +Jedidiah +Jiovanni +Kaeden +Kareem +Karl +Kekoa +Lucky +Matthias +Nikolai +Paris +Rhett +Richie +Shaan +Shea +Skye +Thaddeus +Trevon +Uziel +Vikram +Wilmer +Aarav +Adin +Aedan +Aren +Arian +Arnoldo +Aydin +Barrett +Braxton +Callum +Dayton +Dion +Gavyn +Gian +Heber +Hezekiah +Immanuel +Ishaan +Jadyn +Jamar +Jax +Johnson +Keoni +Koa +Merrick +Mikel +Osiris +Perry +Sidney +Vidal +Waylon +Akshay +Aldair +Andrik +Arvin +Austen +Beck +Bradly +Braiden +Branson +Cannon +Coleman +Darrin +Deion +Denis +Duke +Edison +Eleazar +Forrest +Geovany +Hans +Herman +Isael +Isreal +Jc +Josemanuel +Kalvin +Kamran +Karim +Lazaro +Leobardo +Malaki +Nash +Noam +Raiden +Reagan +Rigo +Rio +Ross +Rylee +Salvatore +Sky +Tyree +Viktor +Yeshua +Yousef +Abrahan +Anirudh +Aram +Archer +Asael +Augustine +Augustus +Bilal +Braedon +Brando +Canyon +Clinton +Deegan +Edmund +Ely +Esau +Ewan +Giovany +Glen +Greg +Iker +Ishmael +Izayah +Jai +Jessiah +Joshuah +Juanjose +Kaleo +Kamren +Kanye +Kelly +Killian +Kirk +Kole +Lenny +Magnus +Messiah +Musa +Mustafa +Reymundo +Rico +Roderick +Sammuel +Santana +Tariq +Timmy +Tyrese +Yasir +Ajani +Akash +Alton +Armand +Armon +Ashwin +Avi +Blaze +Braylon +Case +Cristo +Cuauhtemoc +Darrion +Demarcus +Demarion +Demian +Domingo +Don +Donavin +Elder +Eliezer +Eriberto +Faris +Fredrick +Herbert +Jad +Jafet +Jaycob +Jaysen +Jaziel +Jomar +Juanmanuel +Koen +Korbin +Lucien +Luiz +Marion +Marko +Marley +Marquise +Nate +Neel +Otis +Pete +Remy +Rickey +Shay +Tim +Trace +Truman +Vincente +Westley +Wilbert +Wiley +Zayd +Abelardo +Alden +Aleksander +Alen +Alexavier +Amarion +Ameer +Anson +Auston +Blas +Boden +Bradyn +Brighton +Cassius +Clemente +Cristhian +Dallin +Damari +Darion +Dave +Devlin +Draven +Eliot +Emir +Ephraim +Gaige +Greco +Gurshan +Haven +Jabari +Jadin +Jamir +Jamison +Jaren +Jasiah +Jaydan +Jevon +Keagan +Kendall +Kolby +Korey +Lars +Lester +Linus +Nahum +Narek +Nevin +Nikita +Otto +Presley +Ramsey +Reilly +Rishab +Ron +Ryker +Ryley +Sabastian +Salomon +Sami +Serafin +Shayan +Sheldon +Stone +Suraj +Syed +Sylas +Teagan +Thor +Tobey +Ulisses +Valente +Wallace +Wilfredo +Yobani +Zen +Adriano +Aidyn +Amar +Amos +Ansel +Aries +Arron +Azael +Boston +Brandyn +Brice +Cael +Campbell +Clyde +Coby +Cy +Dandre +Danniel +Daron +Dashawn +Daven +Dejon +Denilson +Donavon +Edgardo +Edric +Eloy +Fabrizio +Filiberto +Gadiel +Gamaliel +Gaven +Geronimo +Haiden +Hugh +Jaedon +Jamil +Jarrod +Javen +Jin +Johnnie +Jonny +Jordyn +Kael +Karlos +Kason +Kris +Lenin +Luigi +Marquez +Mikael +Noa +Parth +Pavel +Paxton +Ronny +Shrey +Shreyas +Simeon +Sincere +Sione +Tyrell +Zach +Zakary +Abran +Alain +Alexsander +Amin +Anders +Aneesh +Artemio +Athan +Aurelio +Austyn +Bishop +Bladimir +Bo +Bode +Bowen +Cale +Clifford +Clint +Constantine +Cormac +Curren +Darrius +Dax +Deacon +Demetrio +Elan +Emery +Eros +Esdras +Fabricio +Favio +Fransisco +Gauge +Gil +Haden +Harman +Heath +Hilario +Jamel +Jamin +Jaret +Jareth +Jaron +Jeovanny +Jerimiah +Jess +Jhonny +Johny +Josias +Kadyn +Kamari +Karan +Karlo +Karson +Konner +Konnor +Konrad +Kylan +Lachlan +Levon +Lex +Marcanthony +Marcellus +Mattias +Maxx +Nam +Naythan +Nicolo +Nixon +Noble +Ocean +Om +Raghav +Reef +Renato +Renzo +Ronit +Rosendo +Rudolph +Samson +Satvik +Teo +Tevita +Tiago +Tristian +Tylor +Vedant +Yordi +Zuriel +Aarush +Adarsh +Adithya +Akhil +Ammar +Ara +Arden +Arlo +Augustin +Basil +Boris +Brooklyn +Caeden +Calum +Charly +Chauncey +Cullen +Deanthony +Demetri +Denver +Desean +Donnie +Dwight +Ean +Elgin +Faustino +Fausto +Fletcher +Garett +Garrison +Geovani +Gianmarco +Hadi +Hakeem +Ilan +Isak +Jacky +Jamarion +Jeancarlo +Jim +Jr +Juandiego +Kale +Karsten +Kellan +Kerry +Keshawn +Kiran +Kohen +Krishna +Kyree +Lennon +Leroy +Lucius +Manny +Massimo +Natan +Natanael +Neal +Nile +Porfirio +Rayden +Raymon +Ren +Rishabh +Romario +Rony +Ryen +Sarkis +Savion +Shant +Shayne +Sullivan +Surya +Tanay +Ted +Tejas +Teodoro +Tigran +Travon +Tye +Vivek +Willem +Zahir +Zaire +Zavier +Zephyr +Abdulrahman +Aimar +Alekzander +Alessio +Alexi +Amit +Andranik +Andru +Antoni +Aramis +Arav +Aria +Arik +Ayman +Barry +Beckham +Brandan +Brandt +Braylen +Brennon +Carlton +Cedar +Celso +Che +Chester +Cian +Clement +Coen +Colt +Cornelius +Curran +Dagoberto +Dameon +Dash +Daylen +Demario +Denny +Derik +Eian +Elyjah +Emil +Eugenio +Flynn +Gabino +Gavino +Gene +Genesis +Gus +Hendrix +Henri +Isaih +Jahaziel +Jasiel +Javion +Jayshawn +Jed +Jerardo +Jeronimo +Josmar +Jozef +Jullian +Justyn +Kabir +Kanoa +Kash +Kelton +Kleber +Laird +Laron +Layton +Lloyd +Loren +Madden +Makaio +Manav +Marcell +Menachem +Myron +Neftali +Nikola +Oskar +Otoniel +Race +Rayyan +Romel +Ryu +Silverio +Stuart +Taha +Torin +Trenten +Trevin +Willis +Willy +Wolfgang +Yovany +Yuvraj +Zeke +Abhishek +Adiel +Akshat +Alston +Amadeus +Anas +Andi +Andrez +Andruw +Angelgabriel +Angus +Anselmo +Antwan +Antwon +Anuj +Aric +Avraham +Aziel +Baxter +Bijan +Bram +Brenton +Broden +Brogan +Cadence +Carsen +Cecil +Charley +Daunte +Demitri +Destin +Dillion +Dino +Diogo +Domenico +Eben +Edmond +Emory +Eshaan +Evaristo +Faisal +Faizan +Finnian +Florencio +Forest +Hakop +Hasan +Haziel +Henrry +Hiram +Hussein +Imran +Irwin +Issa +Jackie +Jaheim +Jalyn +Jasen +Javan +Javin +Jaylyn +Jaymes +Jayvon +Jerald +Jeremias +Jerrell +Jesiah +Jordin +Josemaria +Joshue +Juanluis +Juvenal +Kaelan +Kaito +Kavin +Kayvon +Khang +Koby +Koda +Koji +Kolton +Kristofer +Laith +Layne +Legend +Lonnie +Madison +Maison +Malakhi +Malek +Malikai +Manjot +Manolo +Marius +Marshawn +Masen +Memphis +Miller +Minh +Moshe +Mykel +Naithan +Nathon +Nehemias +Niklas +Nikolaos +Nima +Norman +Ozzie +Quinlan +Rajan +Rayvon +Raziel +Rian +Ritchie +Robbie +Rome +Roni +Roque +Rosario +Ruvim +Saahil +Sahib +Sal +Sanjay +Saulo +Selvin +Seven +Shannon +Sidharth +Silvano +Silvestre +Sir +Soham +Sol +Stevan +Stewart +Tarik +Tarun +Tavin +Theron +Tre +Ulyses +Uriah +Vahe +Vijay +Virgil +Vishal +Williams +Yahya +Yoel +Yohan +Yonathan +Zaiden +Zakaria +Zayden +Zeth +Zev +Aadi +Ab +Abdul +Abisai +Adyn +Aj +Aleck +Amaan +Amador +Amauri +Ammon +Andrick +Aniket +Anmol +Ansh +Anthoni +Anthonie +Anuar +Anwar +Arin +Arsh +Artin +Asaf +Ashley +Atharva +Atul +Ayaan +Azariah +Baltazar +Blaise +Brallan +Bret +Cason +Cavan +Cecilio +Chaim +Cisco +Cj +Clifton +Corban +Cortez +Cross +Danial +Dashaun +Demarco +Demetrious +Deric +Deron +Devante +Devonte +Domonic +Duane +Dylen +Dyllon +Dylon +Eamon +Eber +Edwardo +Eitan +Elijiah +Elton +Esequiel +Eshan +Finlay +Fox +Gaspar +Giacomo +Gibson +Gildardo +Gurshaan +Hari +Haris +Harjot +Harper +Harris +Hayk +Herminio +Homero +Houston +Hubert +Huy +Iban +Issaiah +Itai +Izrael +Jaciel +Jaelen +Jakai +Jalil +Jarod +Jarred +Jathan +Jaylan +Jeremyah +Jerick +Job +Jody +Johnbenedict +Jonnathan +Josecarlos +Josedejesus +Juanantonio +Justen +Kain +Kalel +Kamrin +Karon +Karthik +Kasen +Kasper +Keller +Kenton +Kevon +Kingston +Kona +Kunal +Kye +Kylen +Kyron +Landin +Lizandro +Lleyton +Maddux +Makhi +Malachai +Maliki +Marck +Margarito +Markanthony +Markel +Maximino +Mickey +Nabil +Nadav +Nevan +Niccolo +Nicklaus +Nicolai +Oren +Ori +Osman +Oziel +Raffi +Randolph +Rasheed +Raudel +Raven +Ravi +Reggie +Remi +Rommel +Ronak +Royal +Ryden +Salem +Samar +Samual +Sohan +Sriram +Steele +Talen +Talha +Tatum +Tayshaun +Trinidad +Trystan +Tynan +Tyrus +Umar +Vinay +Westin +Wilber +Xaiver +Yasin +Yovanni +Yusef +Aaryan +Aayush +Abimael +Adain +Adryan +Aeneas +Akira +Akiva +Aksel +Amrit +Anand +Apollo +Archie +Arion +Arshdeep +Arvind +Asahel +Ash +Aston +Atreyu +Aubrey +Aviel +Azriel +Basilio +Blue +Boaz +Bradon +Braedyn +Brandin +Bulmaro +Caius +Camryn +Chancellor +Chayse +Ciaran +Conan +Cosmo +Cris +Daemon +Dakarai +Dakotah +Damarcus +Darrien +Dasan +Daylin +Dayne +Dayshaun +Dejuan +Delano +Delfino +Deonte +Dmitri +Donaven +Donovin +Dusty +Dutch +Earl +Eldon +Eligh +Elio +Eliyahu +Emmet +Enrico +Erich +Ethyn +Etienne +Evander +Fidencio +Fisher +Frederic +Gareth +Garland +Garren +Gerard +Gevork +Hamilton +Haydn +Humza +Ilya +Iram +Isrrael +Issak +Izac +Jacoby +Jacy +Jadan +Jade +Jaedyn +Jaidyn +Jairus +Jamaal +Jancarlo +Jayse +Jeffry +Jeovanni +Jeovany +Jhonathan +Jhovany +Jiovanny +Johnathen +Jossue +Jovon +Joziah +Jules +Kailer +Kalen +Kamal +Kamryn +Karter +Kasra +Keion +Keneth +Kenzo +Keyshawn +Kiefer +Kodi +Lamont +Laurence +Lauro +Lowell +Luther +Lyndon +Macario +Maceo +Mack +Maddix +Mahmoud +Makani +Makoa +Maksim +Marek +Migel +Mikhail +Mohamad +Monte +Narciso +Navin +Nicholaus +Nicky +Omid +Pascal +Raheem +Raj +Rashawn +Remington +Rodrick +Roel +Rusty +Saeed +Sai +Saket +Samarth +Sathvik +Schuyler +Shivam +Sina +Slater +Srikar +Tamir +Tavon +Tayden +Teddy +Tegan +Thatcher +Thien +Tiger +Trever +Tri +Tyren +Ubaldo +Vaibhav +Valentine +Vernon +Vlad +Wes +Willian +Yaakov +Yamil +Yisroel +Yoni +Yousif +Youssef +Yovanny +Zacarias +Zakariya +Zaki +Zayne +Zephaniah +Aaditya +Aamir +Abdallah +Abdi +Abhay +Adal +Adel +Adrain +Aeden +Aidin +Ailton +Akil +Akul +Alaric +Albino +Aleks +Aleksandar +Alesandro +Alexandru +Alexys +Alon +Ameya +Amogh +Andersen +Andrue +Anshul +Antone +Antonino +Aran +Arhan +Aristotle +Armin +Artur +Ashten +Audel +Avian +Axell +Axl +Ayan +Baron +Baruc +Bennie +Bernie +Bradford +Brandy +Briant +Bryon +Brysen +Cadin +Cairo +Caron +Cervando +Christianjames +Christoper +Codey +Coltin +Dajon +Dajuan +Damani +Danieljr +Daquan +Darrian +Dartagnan +Daxton +Daylan +Deaven +Delvin +Demetrios +Deshaun +Dev +Devean +Dewayne +Dezmond +Didier +Django +Domanic +Donato +Donavyn +Donny +Dontae +Dontrell +Eathan +Edgard +Edu +Elden +Eliott +Emile +Emmitt +Erasmo +Ericson +Erin +Eron +Ethaniel +Exavier +Eyan +Fabrizzio +Facundo +Farid +Filip +Finnley +Ford +Franklyn +Garin +Gaston +Gautam +Gianpaolo +Giorgio +Giuseppe +Hamzah +Haroon +Hasani +Heraclio +Horatio +Hyrum +Indiana +Isa +Jacari +Jacques +Jae +Jaidan +Jailen +Jakub +Jalin +Jalon +Jameel +Jaquan +Jarell +Jarren +Jashon +Jaskaran +Jaskirat +Jasson +Jayceon +Jd +Jeanpaul +Jelani +Jeovani +Jeremi +Jeremie +Jeric +Jhonatan +Jimi +Joab +Joesph +Johncarlo +Johnmichael +Justine +Kaimana +Kalib +Kaya +Kaylen +Keane +Kenan +Kennith +Keshav +Kevan +Kevion +Khoa +Khristian +Khristopher +Kirin +Kolten +Kristoffer +Lawson +Leopold +Leslie +Lestat +Lyle +Lyric +Madhav +Magdiel +Mahdi +Malakhai +Malichi +Malique +Marlin +Marlo +Marquese +Martel +Mateen +Mateus +Matt +Maurilio +Maximilliano +Maximos +Maynor +Mckay +Melchor +Micaiah +Michel +Michelangelo +Mick +Montana +Montrell +Nabor +Naman +Nery +Nicholai +Nicholes +Nicola +Ociel +Olin +Omer +Ozzy +Pranay +Princeton +Rahim +Rajveer +Raleigh +Ramzi +Ransom +Rashad +Rayhan +Reinaldo +Rhyan +Rich +Robinson +Romello +Rosalio +Rufino +Rushil +Sabas +Sachin +Sahid +Samer +Sayed +Shashank +Sinjin +Stefano +Stellan +Stephon +Stevie +Sukhraj +Sultan +Sydney +Tadeo +Takoda +Tam +Tanish +Taran +Tarek +Tenzin +Terence +Tevin +Tien +Tor +Tou +Tracy +Turner +Tyshawn +Unknown +Ved +Veer +Vinh +Vinnie +Vito +Yandel +Yaseen +Yoseph +Yousuf +Yuki +Yulian +Zak +Zayn +Abelino +Abhiram +Adonai +Akshar +Alejo +Alekxander +Alexanderjames +Alexandros +Alexei +Alexes +Alfonzo +Amani +Amanpreet +Ambrose +Ameen +Amr +An +Anastacio +Andrea +Anguel +Anibal +Ankit +Anthonny +Apolinar +Ares +Argenis +Aris +Aristeo +Arjan +Arsalan +Arun +Asad +Ashish +Ashmit +Ashtin +Aspen +Assael +Attila +Avant +Avelino +Barak +Barron +Bastian +Bayley +Bayron +Benigno +Bennet +Bernabe +Blade +Blane +Booker +Boone +Bora +Bradlee +Brandom +Brayam +Brayant +Broc +Bryden +Caio +Callan +Canaan +Cardin +Carmello +Carnell +Casper +Caydon +Cezar +Charlton +Chazz +Chidubem +Christan +Cipriano +Ciro +Coleton +Conrado +Corwin +Crew +Cruise +Daegan +Daevon +Daimon +Damarea +Damario +Damen +Daniell +Darell +Darrick +Darron +Dashiel +Daveon +Davien +Davonte +Dayron +Delbert +Deontae +Derrik +Dijon +Dimitrius +Domanick +Domonick +Donnell +Dru +Duilio +Dyami +Ebenezer +Eberardo +Edmundo +Edrick +Edwing +Edy +Eithan +Eliah +Eligio +Elija +Elwin +Elyas +Eoin +Esgar +Eusebio +Everest +Evren +Ezekial +Feliciano +Fionn +Floyd +Fredi +Gabrial +Garet +Gaurav +Geno +Georgio +Gibran +Giovannie +Graydon +Greko +Han +Hansel +Hanson +Harim +Hashim +Hazael +Hieu +Idris +Indigo +Ioane +Ira +Iran +Isaiha +Iseah +Ismail +Issiah +Ivann +Izack +Izael +Izeah +Izek +Izel +Izeyah +Iziah +Izik +Jaaziel +Jabez +Jacksen +Jaidon +Jaison +Jamieson +Jarett +Jarrell +Jaykob +Jayvyn +Jenaro +Jenner +Jens +Jenson +Jeramy +Jeriko +Jerson +Jessi +Jesua +Jhon +Jiro +Joao +Jobani +Johncarlos +Josaiah +Joseantonio +Joseenrique +Josejr +Joshuamichael +Juventino +Kaedin +Kahlil +Kamar +Kamden +Kannon +Kayleb +Kaylon +Kayne +Kean +Keandre +Kenzie +Keshaun +Khai +Khaled +Khalid +Khoi +Khriz +Kien +Kollin +Krystian +Kushal +Kyren +Lake +Landan +Lazarus +Lemuel +Lennox +Lev +Levy +Linden +Lochlan +Logen +Luisenrique +Luismanuel +Mac +Mackenzie +Maddex +Maleek +Manveer +Manvir +Marquice +Marshal +Marvyn +Maurizio +Maxton +Mayson +Meir +Melik +Melvyn +Michaelangelo +Michaelanthony +Mikai +Mina +Monty +Murphy +Mychael +Myka +Naithen +Najee +Napoleon +Nathyn +Naveen +Nazareth +Nicklas +Nicodemus +Nihal +Nikolaus +Nishant +Nomar +Noor +Oleg +Olivier +Paden +Palmer +Pascual +Philippe +Piero +Quran +Radley +Rameen +Rashaad +Refugio +Regan +Reign +Rider +Rigel +Riki +Rito +Ritvik +Rock +Rogan +Rojelio +Romero +Rueben +Rylie +Ryo +Saad +Saif +Saleh +Salman +Sandro +Sasha +Seananthony +Seanmichael +Sesar +Shae +Shahid +Shai +Shamar +Shan +Shayaan +Sherman +Shon +Sid +Sirus +Sixto +Slade +Stacy +Stepan +Sutter +Sylvester +Takeshi +Tamer +Taron +Taveon +Taye +Tayo +Tayshawn +Teague +Tej +Timmothy +Titan +Trayvon +Trentin +Treyvon +Tristyn +TRUE +Tyre +Tyron +Tysen +Uday +Valen +Vardan +Victormanuel +Viggo +Vignesh +Viliami +Vinny +Vinson +Vir +Viraj +Wendell +Wilder +Wilfred +Wisdom +Yehuda +Yuto +Yvan +Zabdiel +Zac +Zacchaeus +Zade +Zakai +Zakk +Zamir +Zaylen +Zuri +Daniel +Anthony +Angel +Jacob +David +Andrew +Jose +Joshua +Christopher +Matthew +Diego +Michael +Jonathan +Alexander +Nathan +Ethan +Joseph +Christian +Adrian +Luis +Juan +Brandon +Ryan +Kevin +Jesus +Gabriel +Isaac +Noah +Carlos +Nicholas +Dylan +Isaiah +Samuel +William +Julian +Bryan +Benjamin +Tyler +James +Sebastian +John +Miguel +Aaron +Elijah +Justin +Logan +Brian +Alejandro +Jason +Aiden +Jack +Jordan +Aidan +Robert +Victor +Eric +Eduardo +Jorge +Oscar +Evan +Alex +Ivan +Adam +Luke +Gavin +Jayden +Zachary +Nathaniel +Alexis +Lucas +Jesse +Fernando +Steven +Omar +Alan +Francisco +Ricardo +Caleb +Sean +Thomas +Dominic +Austin +Mason +Antonio +Jackson +Damian +Giovanni +Manuel +Kyle +Andres +Cesar +Vincent +Richard +Edgar +Xavier +Cristian +Javier +Owen +Hector +Ian +Erick +Jeremiah +Joel +Sergio +Connor +Leonardo +Nicolas +Charles +Edwin +Mario +Cameron +Abraham +Josue +Henry +Emmanuel +Jaden +Landon +Jake +Jared +Roberto +Wyatt +Devin +Tristan +Ruben +Jeremy +Elias +Erik +Cole +Andy +Martin +Marco +Rafael +Liam +Edward +Mark +Pedro +Josiah +Israel +Riley +Gerardo +Armando +Oliver +Timothy +Seth +Hunter +Derek +Hayden +Marcus +Raymond +Kenneth +Chase +Enrique +Julio +George +Marcos +Raul +Roman +Saul +Joaquin +Johnny +Santiago +Cody +Paul +Jaime +Caden +Max +Fabian +Patrick +Gustavo +Emiliano +Blake +Carter +Trevor +Kai +Andre +Brayden +Peter +Alfredo +Arturo +Colin +Emilio +Travis +Esteban +Carson +Kaden +Mateo +Pablo +Alberto +Adan +Salvador +Axel +Moises +Maxwell +Ayden +Bryce +Emanuel +Micah +Johnathan +Damien +Gael +Jeffrey +Nolan +Ernesto +Ismael +Preston +Jonah +Angelo +Donovan +Shane +Rodrigo +Ezekiel +Parker +Abel +Brady +Brayan +Cooper +Frank +Kaleb +Danny +Eli +Miles +Hugo +Stephen +Ramon +Ryder +Grant +Lorenzo +Brody +Bradley +Tanner +Spencer +Uriel +Leo +Albert +Guillermo +Jimmy +Malachi +Shawn +Troy +Yahir +Dominick +Mauricio +Garrett +Levi +Gregory +Noe +Allen +Mathew +Ulises +Calvin +Ashton +Conner +Randy +Issac +Eddie +Colton +Chris +Oswaldo +Orlando +Phillip +Dillon +Felix +Darren +Devon +Jerry +Brendan +Braden +Osvaldo +Dante +Lukas +Alfonso +Drew +Scott +Simon +Jaiden +Marvin +Leonel +Ezra +Hudson +Jaylen +Gage +Asher +Ty +Aden +Theodore +Wesley +Felipe +Quinn +Gilberto +Rene +Tony +Arthur +Dean +Jakob +Rodolfo +Louis +Ricky +Luca +Maddox +Rogelio +Alvaro +Noel +Alec +Cristopher +Joe +Moses +Bryant +Jessie +Allan +Isaias +Jalen +Ronald +Jace +Harrison +Collin +Kayden +Maximiliano +Steve +Trent +Alonso +Maximus +Charlie +Cruz +Derrick +Drake +Keith +Dennis +Dustin +Ramiro +Rudy +Julius +Octavio +Taylor +Adolfo +Ariel +Ignacio +Marc +Trenton +Cash +Freddy +Jay +Kenny +Lincoln +Nikolas +Sawyer +Tomas +Jairo +Landen +Marlon +Nickolas +Walter +Roy +Agustin +Cayden +Darius +Vicente +Zion +Casey +Ezequiel +Gilbert +Giovanny +Alessandro +Lance +Bryson +Chance +Joey +Skyler +Zane +Declan +Philip +Roger +Zackary +Aldo +Alonzo +Jonas +Donald +Izaiah +Jayson +Junior +Peyton +Efrain +Alvin +Griffin +Melvin +Shaun +Cade +Clayton +Grayson +Myles +Avery +Xander +Dane +Finn +Frankie +Johan +Jude +Nehemiah +Branden +Kaiden +Matteo +Tommy +Dakota +Humberto +Rohan +Jadon +Morgan +Rylan +Amir +Larry +Estevan +Jaxon +Mitchell +Nelson +Rowan +Tyson +Kyler +Lawrence +Zachariah +Bennett +Kameron +Maximilian +Cyrus +Franklin +Isai +Kelvin +Misael +Elliott +Irvin +Jonathon +Rigoberto +Rocco +Romeo +Trey +Brenden +Brock +Colby +Talan +Douglas +German +Malik +Russell +Sam +Everett +Ali +Byron +Caiden +Elliot +Ray +Rolando +Anderson +Corey +Jovanny +Mike +Yair +Brennan +Bruce +Camden +Gary +Phoenix +Braeden +Nathanael +Nathen +Enzo +Julien +Curtis +Damon +Keegan +Keven +Miguelangel +Dallas +Judah +Santino +Wilson +Jovanni +Arjun +Brett +Gonzalo +Isiah +Nico +Orion +Santos +Tristen +Dorian +Efren +Harry +Jair +Bobby +Carlo +Jovany +Kristian +Quentin +Corbin +Gianni +Holden +Leland +Nestor +Tobias +Jasper +Kian +Leon +August +Billy +Chad +Justice +Kieran +Kristopher +Ulysses +Bruno +Elvis +Abram +Aryan +Cristofer +Jordy +Krish +Rey +Arman +Braulio +Jett +Markus +Ronan +Alexandro +Ronaldo +Dario +Eugene +Giovani +Josh +Deven +Frederick +Giancarlo +Jovani +Maximo +Aditya +Juancarlos +Quincy +Silas +Solomon +Benny +Bernardo +Elmer +Jaydon +Kody +Marcelo +Milo +Nick +Ben +Cristobal +Davis +Eliseo +Gerald +Jameson +Reese +Reynaldo +Ronnie +Sonny +Warren +Desmond +Johnathon +Malakai +Zander +Antony +Emerson +Kobe +Muhammad +Payton +Reid +Titus +Alijah +Ari +Dominik +Jeffery +Jon +Joseluis +Mauro +Maverick +Pranav +Rodney +Tate +Tucker +Vince +Beau +Carl +Eddy +Jaxson +Luciano +Nikhil +River +Davin +Favian +Isac +Juanpablo +Khalil +Leandro +Mohammad +Soren +Talon +Toby +Valentin +Yael +Adriel +Cory +Dawson +Devan +Fidel +Graham +Heriberto +Luka +Maurice +Micheal +Stanley +Weston +Brent +Mariano +Pierce +Valentino +Derick +Fredy +Keanu +Marcel +Osbaldo +Ramses +Semaj +Zachery +Ahmad +Amari +Benito +Conor +Jefferson +Kingston +Skylar +Ahmed +Alfred +Aron +Camron +Conrad +Leonard +Marshall +Niko +Raphael +Reece +Reed +Walker +Yandel +Alexzander +Damion +Davian +Porter +Dangelo +Harley +Jan +Louie +Raymundo +Beckett +Deangelo +Genaro +Gunnar +Imanol +Jaeden +Matias +Neil +Ryland +Brendon +Craig +Emmett +Geovanny +Hamza +Joan +Malcolm +Sage +Tyrone +Winston +Alek +Andreas +Braxton +Braydon +Brodie +Davion +Deandre +Elisha +Gregorio +Greyson +Isaak +Jeshua +Jordi +Kane +Maximillian +Ralph +Rex +Roland +Sammy +Santana +Xzavier +Adrien +Antoine +Atticus +Darian +Darrell +Eden +Everardo +Francis +Franco +Geovanni +Guadalupe +Ken +Marcelino +Mekhi +Mohamed +Royce +Taj +Addison +Arnav +Cedric +Demetrius +Eleazar +Isidro +Jaylin +Kellen +Nigel +Paulo +Reyli +Anton +Aydan +Dillan +Duncan +Edison +Ernest +Johnpaul +Matthias +Paolo +Reagan +Remy +Terrance +Theo +Vaughn +Zaid +Alden +Dalton +Darwin +Dayton +Grady +Harold +Ibrahim +Jai +Jayce +Jeramiah +Kendrick +London +Luisangel +Mathias +Randall +Devyn +Eder +Jamal +Jamari +Kainoa +Keenan +Lucca +Osmar +Rishi +Triston +Yusuf +Abner +Anish +Asa +Camren +Irving +Jamie +Jamison +Johann +Justus +Kareem +Lee +Lewis +Lucio +Nasir +Rocky +Said +Vance +Bailey +Bodie +Dan +Denzel +Dwayne +Easton +Elian +Federico +Gino +Javon +Jerome +Jovan +Kaeden +Kyan +Lane +Lazaro +Makai +Maxim +Tristin +Vladimir +Aarav +Andrei +Darryl +Deshawn +Erwin +Finnegan +Gideon +Hezekiah +Jaycob +Kalani +Luc +Marley +Quinton +Rayan +Sahil +Siddharth +Sidney +Terry +Will +Willie +Zechariah +Ace +Armani +Arya +Cassius +Dashiell +Dion +Franky +Geovany +Gianluca +Glenn +Isael +Keaton +Reuben +Ronin +Rory +Sebastien +Stone +Waylon +Yash +Zackery +Abdiel +Aedan +Aydin +Brando +Brice +Cohen +Domenic +Edson +Hernan +Izayah +Jabari +Jahir +Jericho +Josemanuel +Marcello +Marko +Mohammed +Reginald +Samson +Wade +Zack +Adonis +Benicio +Boston +Darin +Darnell +Dexter +Ernie +Freddie +Gerson +Immanuel +Jermaine +Jet +Lamar +Marques +Merrick +Neo +Nikolai +Obed +Rick +Tai +Trace +Van +Vincenzo +Wayne +Zaire +Achilles +Aram +Ceasar +Chandler +Clark +Colten +Davon +Flavio +Forrest +Guy +Ishaan +Jacky +Jadyn +Kade +Kamari +Karim +Kent +Koen +Kurtis +Milton +Nathanial +Noa +Rahul +Rio +Ryker +Sameer +Sky +Stephan +Zain +Adalberto +Ajay +Armaan +Camilo +Enoch +Ethen +Haiden +Hassan +Isreal +Jarrett +Jeff +Jordon +Josef +Kendall +Keoni +King +Lionel +Magnus +Nikko +Raiden +Shaan +Trevon +Abhinav +Antoni +Arian +Armen +Augustine +Ayush +Brad +Braiden +Chaz +Dimitri +Ever +Gannon +Garret +Gordon +Iker +Jean +Jerimiah +Kael +Samir +Shea +Stefan +Sterling +Terrell +Ulisses +Uziel +Yovani +Abdullah +Andrey +Asael +Blaine +Clarence +Damarion +Dominique +Don +Ely +Eriberto +Finley +Gian +Gunner +Haziel +Heath +Horacio +Ishan +Izaac +Izaak +Jonatan +Kole +Lucien +Madden +Milan +Oskar +Pierre +Rhys +Richie +Robin +Talen +Uriah +Wilfredo +Yasir +Alexandre +Aman +Angus +Arvin +Austen +Azael +Bodhi +Bradly +Christofer +Coby +Coleman +Darien +Deon +Dhruv +Edgardo +Eligh +Ewan +Fabio +Howard +Jase +Jhonny +Karl +Kasey +Keagan +Kelly +Khalid +Korey +Kurt +Landyn +Marquis +Nevin +Nikita +Omari +Quintin +Sunny +Terrence +Tom +Tyree +Ulices +Adair +Amare +Aric +Bill +Bo +Bode +Callum +Cannon +Canyon +Dale +Earl +Ellis +Ervin +Evin +Geovani +Hans +Jagger +Jaron +Jedidiah +Jelani +Jorden +Joshuah +Jullian +Kadin +Kalvin +Kennedy +Leobardo +Lucius +Osiel +Patricio +Prince +Reyes +Shant +Sincere +Tiago +Tristian +Tyrese +Valente +Yeshua +Yousef +Aidyn +Amar +Ameer +Anson +Arnold +Ashwin +Baron +Boden +Bronson +Cian +Claudio +Coen +Daren +Daylen +Demetrio +Demian +Dilan +Ean +Ford +Giovany +Hadi +Jasiah +Jaydan +Jessy +Joziah +Kevyn +Kiran +Lenny +Leopoldo +Lester +Lino +Lucian +Luiz +Massimo +Neal +Neel +Otto +Tim +Torin +Travon +Yonatan +Abisai +Adriano +Andrik +Arnulfo +Beckham +Benedict +Bilal +Boris +Brooks +Brycen +Dallin +Damari +Deacon +Denis +Deshaun +Eitan +Elan +Fausto +Flynn +Fred +Gauge +Geoffrey +Haden +Isacc +Jaren +Jaylan +Jaylon +Johnson +Jordyn +Kalel +Kristofer +Kylan +Mikhail +Ocean +Rashad +Reilly +Rico +Ross +Sami +Teo +Todd +Adiel +Alain +Atreyu +Aurelio +Benson +Bowen +Braedon +Cain +Cuauhtemoc +Deegan +Dereck +Edmund +Eliel +Esau +Faustino +Harper +Jax +Jesiah +Johnnie +Justyn +Kamren +Kekoa +Kenji +Kenyon +Killian +Lennon +Nate +Ori +Perry +Pete +Rhett +Roan +Sanjay +Seamus +Sheldon +Silvestre +Sione +Teagan +Trinidad +Yosef +Akash +Aldair +Anibal +Ares +Austyn +Ayman +Beck +Braylon +Brennen +Brooklyn +Carmelo +Carmine +Clemente +Cristo +Darrius +Donavan +Esai +Fabrizio +Fermin +Finnian +Fletcher +Floyd +Heber +Jacobo +Jadin +Jaidyn +Jamar +Jaret +Jasson +Jensen +Kamron +Karthik +Keon +Konnor +Kris +Kyree +Lars +Lex +Mack +Marcanthony +Mattias +Memphis +Messiah +Mikael +Moshe +Mustafa +Narek +Nash +Noam +Norberto +Norman +Odin +Om +Oren +Pavel +Paxton +Reef +Rosendo +Tariq +Turner +Varun +Wilmer +Yuvraj +Zakary +Aarush +Abrahan +Abran +Ajani +Anders +Augustus +Blaze +Broderick +Caesar +Clay +Clinton +Colt +Dax +Dejon +Demitri +Domenick +Donnie +Draven +Duke +Elvin +Emery +Eros +Filiberto +Francesco +Fredrick +Gavyn +Gerard +Giovonni +Giuseppe +Gurshan +Hank +Harman +Herman +Iain +Ishmael +Jaedon +Jaedyn +Jafet +Jarred +Jarrod +Jaydin +Jc +Jhonatan +Kaito +Karson +Kellan +Koa +Levon +Lisandro +Lloyd +Malaki +Manny +Maxx +Mihir +Mikel +Nathon +Nehemias +Osman +Presley +Quinlan +Quinten +Ramsey +Rayden +Raymon +Roque +Shayne +Truman +Trystan +Viktor +Vinh +Zach +Zayd +Akhil +Aleksander +Alexavier +Amani +Anakin +Anirudh +Ansel +Arath +Arik +Barrett +Bentley +Bladimir +Clifford +Corban +Cornelius +Dameon +Danilo +Daron +Dashawn +Demarion +Dyllan +Edan +Elder +Eliazar +Emil +Fabricio +Gil +Giorgio +Glen +Harvey +Hasan +Herbert +Hilario +Hiram +Hyrum +Ilan +Ismail +Izak +Jael +Jamil +Jareth +Jim +Jimmie +Job +Johny +Joseangel +Josias +Kahlil +Kale +Khang +Khriz +Kirk +Konner +Kory +Laird +Leif +Lenin +Leroy +Linus +Marcoantonio +Nahum +Nomar +Paris +Parsa +Rami +Remington +Renzo +Rishabh +Ryley +Sabastian +Salomon +Salvatore +Shay +Skye +Slater +Sullivan +Syrus +Thaddeus +Timmy +Tye +Tyrell +Westley +Yoel +Yusef +Zahid +Zayden +Zayne +Zev +Zidane +Aayan +Adal +Adin +Alexsander +Andru +Anjel +Antwan +Apollo +Aren +Aris +Athan +Avi +Ayan +Baltazar +Bradyn +Caeden +Cal +Cristhian +Darion +Darrin +Dave +Daveon +Deion +Desean +Donavin +Donavon +Eshaan +Fisher +Gabino +Garett +Gaven +Genesis +Izrael +Jamin +Jancarlo +Jarod +Jaysen +Jerald +Jerardo +Juandiego +Jules +Kabir +Kalen +Kaleo +Karsten +Kason +Lamont +Landin +Lucky +Makaio +Marcell +Markel +Mikah +Mikey +Mitchel +Monte +Natanael +Omer +Raghav +Reymundo +Roderick +Ronny +Shayan +Shreyas +Simeon +Taha +Teddy +Tevin +Tobin +Tylor +Vidal +Willem +Yonathan +Yordi +Zuriel +Abhiram +Arlo +Armon +Arnoldo +Arron +Artemio +Aston +Ayaan +Case +Casen +Clifton +Clyde +Daven +Davonte +Derik +Destin +Dev +Dmitri +Dontae +Donte +Dwight +Edmond +Eliott +Elton +Ephraim +Erasmo +Esequiel +Esteven +Feliciano +Gene +Geronimo +Greg +Hamzah +Haven +Jackie +Jade +Jaleel +Javen +Jaziel +Jessi +Jiovanni +Jonny +Joseantonio +Joshue +Jovon +Juaquin +Kaelan +Karan +Karlo +Lawson +Lazarus +Lonnie +Maksim +Manu +Marion +Mathieu +Maximino +Myron +Naythan +Parth +Pascal +Ravi +Rian +Rishab +Rohit +Roni +Rylee +Sarkis +Tiger +Titan +Trever +Ubaldo +Vernon +Zahir +Zephyr +Zeus +Aaditya +Aaryan +Adnan +Akshay +Amado +Andrez +Aneesh +Angad +Arin +Arion +Armand +Azariah +Bishop +Bowie +Branson +Cael +Cairo +Cassidy +Celso +Cormac +Cullen +Curren +Daryl +Daylon +Demetri +Denny +Eben +Edvin +Eliot +Elyjah +Emir +Emmet +Enoc +Houston +Isak +Issaiah +Iven +Izaya +Jaheim +Jhovany +Jordin +Kailer +Karol +Karter +Kelan +Kenan +Keshawn +Kleber +Korbin +Krishna +Lachlan +Laurence +Luigi +Luisfernando +Mac +Macario +Makhi +Marius +Menachem +Michel +Minh +Naveen +Niklas +Olivier +Reggie +Ritchie +Rommel +Ron +Royal +Ruvim +Sammuel +Sasha +Shamar +Taran +Tavin +Teodoro +Terence +Ved +Wilber +Zakai +Zakaria +Zen +Aayush +Abbas +Abdallah +Adarsh +Adler +Adonai +Adyn +Aleczander +Alfonzo +Amit +Ammar +Amogh +Angelgabriel +Aquiles +Aria +Arjan +Aslan +Auston +Aven +Barron +Barry +Blaise +Brandan +Braylen +Brennon +Brighton +Cale +Casper +Clint +Colter +Cy +Daymian +Demarco +Demitrius +Deric +Devean +Devion +Devonte +Dezmond +Domanick +Domingo +Eamon +Edgard +Eduard +Edwyn +Emmitt +Farhan +Faris +Galen +Garry +Gaspar +Greco +Harris +Henri +Herson +Idan +Isa +Izac +Jaciel +Jahaziel +Jaidon +Jaison +Jamir +Jasen +Jashua +Jaskaran +Jerson +Jin +Joao +Johannes +Johncarlo +Jomar +Juanmanuel +Juvenal +Kadyn +Kash +Kavin +Kayleb +Keelan +Keller +Kelton +Keshaun +Keyon +Keyshawn +Khristian +Koby +Kolton +Kymani +Laith +Latrell +Maddux +Marek +Markanthony +Marquise +Masen +Mateen +Maynor +Mickey +Miller +Naim +Nicholai +Nicklaus +Nicky +Nicolai +Nicolo +Nima +Nixon +Pierson +Princeton +Refugio +Renato +Rider +Romello +Rowen +Rudolph +Saeed +Savion +Servando +Sevastian +Seven +Shannon +Shiloh +Siddarth +Sixto +Steele +Stuart +Syed +Tadeo +Tejas +Theron +Tiernan +Tylen +Tysen +Tyshawn +Ulyses +Vadim +Vincente +Vishal +West +Willis +Wolfgang +Yahya +Yaseen +Yohan +Youssef +Zamir +Adi +Adrean +Akira +Alexsandro +Alton +Ameen +Amin +Andon +Archer +Aries +Arsh +Artem +Arun +Ashish +Ashley +Asiel +Aziel +Blas +Brallan +Brandyn +Brannon +Brayam +Brayant +Brenton +Bret +Broden +Campbell +Canaan +Canon +Charley +Clement +Constantine +Crew +Criss +Damani +Dana +Danniel +Darell +Darrian +Davien +Daylan +Delano +Devaughn +Edmundo +Edwardo +Eliab +Etienne +Eugenio +Exavier +Florentino +Froylan +Gamaliel +Gavino +Giacomo +Gianmarco +Gibson +Gildardo +Gurman +Hamilton +Hanson +Haris +Henrry +Hiro +Hubert +Hugh +Huy +Iman +Isaih +Izael +Iziah +Jalin +Jamarion +Jamel +Jarett +Jasiel +Jaxen +Jayshawn +Jayvon +Jed +Jeovanny +Jered +Jermiah +Jeronimo +Jerrell +Jody +Johnmichael +Jostin +Kamran +Kamrin +Kamryn +Khaled +Landan +Layne +Layton +Leighton +Lev +Loren +Lyle +Lyndon +Maceo +Mahdi +Maison +Malakhi +Matt +Maxfield +Mehki +Musa +Mykel +Nery +Niall +Niccolo +Nino +Osiris +Otis +Pavan +Pearson +Porfirio +Race +Raffi +Randolph +Rayshawn +Rickey +Rigo +Rony +Roshan +Ryden +Rylie +Sabino +Saleh +Serafin +Shiv +Sinjin +Sylvester +Thatcher +Thor +Tosh +Vahe +Vikram +Vittorio +Vivek +Wallace +Willy +Wylie +Xavior +Yoni +Yousuf +Yovanny +Yovany +Zaden +Zavier +Zayan +Zephaniah +Zeth +Aadi +Ab +Abdul +Abelardo +Abimael +Adel +Aldahir +Aldrin +Alen +Alexi +Alias +Alon +Amador +Amauri +Ammon +Amos +Anay +Andi +Aniket +Ansh +Anurag +Apolinar +Aramis +Arash +Archie +Arlen +Artin +Augustin +Avant +Baldemar +Bernardino +Brandin +Brogan +Cadence +Calder +Callan +Carlitos +Ceaser +Cecil +Cedrick +Chancellor +Chayse +Chester +Coleton +Coltrane +Corben +Cordell +Darrien +Darrion +Degan +Demarcus +Denton +Derian +Deron +Domanic +Domonic +Donaven +Donnell +Dustyn +Eian +Eithan +Eliceo +Eliezer +Elijiah +Elisandro +Eloy +Erich +Ericson +Esdras +Ethin +Forest +Fox +Fransisco +Gadiel +Garrison +Gaurav +Gevork +Gibran +Gionni +Graeme +Graysen +Haik +Hakop +Haniel +Harlan +Harlem +Harout +Hendrix +Humza +Imran +Ira +Isayah +Izick +Jacen +Jad +Jailen +Jalil +Jarren +Jaymes +Jayro +Jeevan +Jeffry +Jeremias +Jethro +Jevon +Jimi +Jiovanny +Johnatan +Johnathen +Jonnathan +Josealfredo +Josearmando +Josedejesus +Juelz +Juliocesar +Karlos +Keane +Kemani +Kento +Khai +Khoa +Khristopher +Kiefer +Kodi +Kohen +Kolby +Kristoffer +Kyron +Leandre +Legend +Lennox +Leopold +Lorenz +Mackenzie +Manav +Manjot +Marshawn +Mateus +Matix +Mattox +Michaelangelo +Michelangelo +Mika +Mikal +Nader +Nahom +Naseem +Naveed +Neftali +Nishant +Nishanth +Nolen +Omarion +Oracio +Osmin +Oziel +Ozzy +Pascual +Price +Quincey +Rajveer +Ramy +Rashawn +Reily +Remi +Rhiley +Ritvik +Rojelio +Romario +Ronit +Rosalio +Rufino +Ryu +Sai +Saketh +Sandro +Seiji +Severin +Shalom +Shamus +Shiven +Shmuel +Silverio +Sohan +Stevan +Sukhraj +Surya +Sydney +Sylas +Tanay +Tarek +Tayshaun +Tayshawn +Ted +Tevita +Thien +Tigran +Tino +Tracy +Tre +Tyren +Usman +Vartan +Vihaan +Vijay +Virgil +Vishnu +Westin +Williams +Xavian +Yehuda +Yobani +Yoseph +Yuri +Zacharia +Abiel +Aeneas +Akil +Aksel +Alegandro +Aleksandr +Alekzander +Alexiz +Alistair +Ambrose +Ami +Amiel +Anand +Andree +Andriy +Angelino +Antwone +Arie +Armin +Arnaldo +Ary +Ash +Askari +Atom +Axcel +Axell +Azriel +Becker +Benji +Bennet +Bernard +Billie +Blair +Bradford +Britton +Broc +Bryon +Caelan +Camryn +Caspian +Cezar +Chasen +Chrystian +Codey +Corde +Cosmo +Cris +Cristiano +Cyler +Cypress +Cyril +Daemian +Dagoberto +Dakarai +Dakari +Dalen +Damen +Damonte +Damyan +Dany +Dariel +Dasan +Dash +Dayne +Dayvon +Deagan +Deanthony +Delvin +Denim +Denver +Deondre +Dereon +Derrell +Deshon +Desi +Diallo +Didier +Diesel +Dionisio +Dolan +Domenico +Donato +Donny +Donovin +Dorien +Drevon +Duane +Duran +Eber +Elad +Elija +Elio +Elyas +Emory +Erin +Eshan +Exodus +Fidencio +Franz +Garrick +Gerry +Gio +Gray +Grey +Hansel +Harjot +Haydn +Hayes +Hayk +Herschel +Homar +Hussein +Iran +Irwin +Isrrael +Issiah +Iverson +Izik +Jabez +Jacoby +Jaedan +Jaelen +Jaelin +Jaelyn +Jaideep +Jakari +Jakobe +Jalon +Jamell +Jarret +Jashon +Jassiel +Jayceon +Jayon +Jaythan +Jayvyn +Jessiah +Jezreel +Jiovani +Jireh +Jonpaul +Jossue +Juanjose +Jun +Juventino +Kacey +Kailan +Kailen +Kain +Kairo +Kalil +Kamarion +Kanon +Keahi +Keiran +Kerry +Keshav +Khris +Koda +Kolten +Kotaro +Kunal +Kushal +Lake +Lamberto +Lancelot +Laron +Lebron +Linkin +Lyon +Macen +Madhav +Maeson +Makoa +Manraj +Manveer +Marciano +Markell +Marquez +Marvel +Mattix +Maxime +Maximos +Melvyn +Michaelanthony +Mikeal +Mohamad +Morris +Mychael +Naeem +Nasser +Natalie +Natan +Nevaeh +Nevan +Nicanor +Nikola +Niles +Nils +Nyle +Ociel +Orin +Oryan +Oswald +Palmer +Quin +Rahil +Raudel +Raven +Rayaan +Rayyan +Rehan +Renny +Robbie +Roen +Rohith +Rome +Rosario +Rubin +Rushil +Rylen +Saahil +Saint +Saleem +Saxon +Sayed +Sherman +Shiva +Shon +Siddhartha +Silvano +Slade +Sohum +Stephon +Stevie +Stewart +Sy +Syncere +Talin +Talyn +Tarik +Tatum +Tavon +Tayden +Tegan +Tito +Tobey +Tonatiuh +Tory +Trae +Trajan +Trayvon +Trenten +Trevin +Treyvon +Tri +Trinity +Tru +Unknown +Vander +Vann +Vedant +Viliami +Von +Wendell +Xavi +Yoav +Yovanni +Yuki +Zacharias +Zak +Zarek +Zavion +Zyon +Aakash +Aaronjames +Aarya +Abdulrahman +Abdurrahman +Abhay +Abhishek +Adian +Adil +Adit +Adonay +Adrik +Advait +Agustine +Aj +Alam +Alesandro +Alexandru +Alexei +Alize +Amadeo +Amadeus +Amarion +Amaru +Amrit +Andranik +Andrea +Angeldejesus +Angello +Anguel +Anh +Aniketh +Anmol +Anthoni +Antione +Antwon +Anuj +Arden +Aristeo +Arsen +Arshan +Aryaman +Asad +Ashlan +Ashtyn +Asim +Athen +Aubrey +Aureliano +Aviv +Avraham +Axl +Azaan +Bernabe +Bernie +Bertrand +Bjorn +Boaz +Braedan +Brandt +Brasen +Bridger +Brigham +Brodrick +Bryden +Brysen +Calen +Callen +Cameren +Candelario +Carsten +Cavan +Chaim +Che +Christianjames +Christiano +Christobal +Christoph +Christophe +Ciaran +Ciro +Cj +Claude +Colson +Cornelio +Cornell +Cosme +Cross +Daegan +Daevon +Dajon +Dakoda +Daksh +Damarco +Damarcus +Damarea +Daniell +Danthony +Darby +Darrel +Darryn +Dashaun +Dathan +Daveyon +Daxton +Dayron +Dayshawn +Decker +Dejuan +Delfino +Demari +Demond +Denali +Denilson +Deontae +Derrek +Dhruva +Dillion +Dimas +Dino +Diogo +Dionicio +Dior +Dmitriy +Donavyn +Donell +Donnovan +Dru +Dutch +Dylen +Dyllon +Eason +Eathan +Edi +Edilson +Edric +Edrick +Efraim +Egan +Ekin +Elia +Eliah +Emron +Enrico +Ethanjames +Ethyn +Eulises +Eyan +Faisal +Favio +Filip +Finlay +Foster +Fredi +Gabrial +Gahel +Gared +Garet +Garren +Gavan +Gehrig +Geno +Giancarlos +Giovannie +Graydon +Grigor +Gurpreet +Gus +Gustabo +Hadden +Hagen +Haidyn +Hakeem +Hanzel +Hari +Harim +Haroon +Haruki +Hendrik +Hillel +Homero +Hovhannes +Huriel +Iban +Ike +Ilias +Isahi +Issa +Ivann +Ivory +Izack +Jacobi +Jacques +Jadan +Jaeson +Jafeth +Jaidan +Jakub +Jamaal +Jamani +Jamarr +Jamisen +Jarek +Jarell +Jarvis +Jathan +Javan +Javonte +Jaydee +Jaykob +Jayven +Jeancarlo +Jeanpierre +Jeovanni +Jeovany +Jeramy +Jeremyah +Jeric +Jess +Jhonathan +Joab +Joesph +Jonathen +Jorgeluis +Josemiguel +Josmar +Jozef +Juanantonio +Juanito +Juliano +Justine +Justo +Kadon +Kaimana +Kaipo +Kaison +Kaj +Kalib +Kalub +Kannon +Kanye +Karo +Karsen +Kaydin +Kayvon +Kenzo +Kevon +Keyan +Khaleb +Kilian +Kingsley +Kishan +Kohei +Korben +Kriss +Kwame +Kye +Kylen +Larenzo +Larson +Lavon +Lemuel +Linden +Lior +Lizandro +Logen +Londen +Lowell +Luismanuel +Luismiguel +Luther +Lyric +Maddix +Makoto +Malcom +Malek +Malikai +Maliki +Malique +Mansoor +Margarito +Marlow +Martinjr +Matheus +Maxon +Maxson +Mazen +Mazin +Mckay +Mckinley +Micaiah +Mick +Modesto +Mohit +Montgomery +Muhammed +Murphy +Mynor +Nabeel +Nadav +Nainoa +Napoleon +Nassir +Neri +Nicklas +Nicolaus +Nihar +Nik +Nikash +Nykolas +Obadiah +Olegario +Olin +Ollin +Omkar +Param +Pasha +Prabhjot +Prem +Presten +Quang +Ransom +Rasheed +Rashid +Rayhan +Razi +Rees +Reno +Reyly +Reymond +Reza +Riku +Robinson +Rock +Roel +Rogan +Rohin +Romero +Rowdy +Rudra +Russel +Rustin +Ryo +Sachin +Sagar +Sahib +Sahir +Saket +Sascha +Sathvik +Savir +Scotty +Selvin +Shadi +Shae +Shaw +Shemar +Shneur +Siddhant +Sidharth +Silvio +Smith +Soham +Sriram +Stryder +Suhaib +Sukhman +Sulaiman +Sutter +Sutton +Sven +Taiyo +Tallen +Tamer +Tanish +Tavian +Taylen +Tayler +Tennyson +Tenoch +Terron +Thanh +Theophilus +Thiago +Tien +Timofey +Timoteo +Tj +Tlaloc +Toni +Toribio +Tracey +Treston +Trigo +Triton +Tylan +Tyrin +Tyron +Tyrus +Valdemar +Valentine +Vansh +Veer +Victormanuel +Vinay +Vineet +Vinny +Vitaliy +Willard +Wynston +Yaakov +Yandell +Yasin +Yassin +Yerik +Yishai +Yisroel +Yuta +Zacary +Zackariah +Zaiden +Zakkary +Zayn +Zeke +Zephan +Ziggy +Daniel +Anthony +Angel +Jacob +David +Andrew +Christopher +Joshua +Jose +Diego +Alexander +Matthew +Michael +Ethan +Jonathan +Nathan +Joseph +Brandon +Adrian +Kevin +Christian +Luis +Ryan +Isaac +Noah +Jesus +Gabriel +Juan +Dylan +Jayden +Carlos +Aaron +Julian +Isaiah +Nicholas +Samuel +James +William +Benjamin +Bryan +Aiden +Miguel +Elijah +Sebastian +Logan +Justin +Jason +Tyler +Alejandro +Jordan +John +Brian +Evan +Robert +Jack +Gavin +Victor +Eric +Ivan +Luke +Alex +Aidan +Adam +Jorge +Oscar +Lucas +Eduardo +Zachary +Caleb +Omar +Jesse +Francisco +Xavier +Fernando +Andres +Jackson +Nathaniel +Damian +Sean +Mason +Steven +Ricardo +Giovanni +Thomas +Cesar +Dominic +Ian +Antonio +Austin +Richard +Alan +Alexis +Jaden +Vincent +Manuel +Edgar +Leonardo +Jeremiah +Connor +Owen +Kyle +Javier +Joel +Hector +Erick +Henry +Cristian +Sergio +Abraham +Charles +Emmanuel +Josue +Cameron +Mario +Nicolas +Wyatt +Jake +Tristan +Landon +Edwin +Devin +Liam +Josiah +Santiago +Andy +Roberto +Erik +Chase +Marco +Cole +Elias +Ruben +Jared +Israel +Jeremy +Hunter +Edward +Martin +Derek +Rafael +Marcus +Hayden +Pedro +Gerardo +Blake +Oliver +Fabian +Raymond +Timothy +Armando +Kenneth +Raul +Mark +Brayden +George +Roman +Marcos +Cody +Jaime +Riley +Paul +Johnny +Caden +Seth +Enrique +Max +Emilio +Ayden +Damien +Brody +Gustavo +Rodrigo +Micah +Emiliano +Joaquin +Saul +Alberto +Julio +Carter +Cooper +Pablo +Mateo +Patrick +Gael +Moises +Jonah +Preston +Adan +Kai +Kaden +Trevor +Esteban +Maxwell +Peter +Arturo +Travis +Carson +Colin +Salvador +Alfredo +Andre +Ismael +Axel +Parker +Ezekiel +Ryder +Emanuel +Nolan +Bryce +Johnathan +Kaleb +Donovan +Jeffrey +Miles +Abel +Shane +Angelo +Leo +Brady +Eli +Ramon +Frank +Hugo +Ernesto +Brayan +Levi +Lorenzo +Troy +Danny +Stephen +Tanner +Spencer +Ashton +Issac +Colton +Jaiden +Guillermo +Mauricio +Bradley +Noe +Uriel +Malachi +Chris +Jimmy +Orlando +Grant +Hudson +Allen +Dominick +Yahir +Mathew +Calvin +Shawn +Felix +Randy +Eddie +Maximiliano +Alfonso +Luca +Albert +Aldo +Garrett +Braden +Cash +Osvaldo +Arthur +Asher +Cruz +Ulises +Lukas +Simon +Gregory +Jerry +Lincoln +Maximus +Darren +Leonel +Cayden +Kayden +Wesley +Dante +Gage +Devon +Collin +Marvin +Jairo +Jessie +Peyton +Theodore +Conner +Felipe +Griffin +Brendan +Drew +Dustin +Bryant +Cristopher +Noel +Tony +Dillon +Ezra +Maddox +Gilberto +Dean +Isaias +Drake +Moses +Ricky +Julius +Kingston +Charlie +Jaylen +Rene +Jace +Scott +Aden +Jonas +Vicente +Harrison +Steve +Jakob +Quinn +Ramiro +Efrain +Jayson +Taylor +Zion +Larry +Alvaro +Rodolfo +Rogelio +Alec +Phillip +Dennis +Jaxon +Louis +Valentin +Allan +Derrick +Izaiah +Trenton +Jude +Dane +Nikolas +Elliot +Landen +Joe +Johan +Kenny +Ronald +Chance +Alonso +Casey +Kaiden +Myles +Giovanny +Zane +Avery +Gilbert +Ty +Oswaldo +Rudy +Sawyer +Tyson +Amir +Rylan +Keith +Agustin +Freddy +Joey +Nehemiah +Tomas +Jasper +Nickolas +Xander +Adolfo +Alvin +Ariel +Branden +Frankie +Skyler +Declan +Jalen +Trent +Anderson +Philip +Alonzo +Ezequiel +Marc +Nelson +Bryson +Cyrus +Darius +Finn +Matteo +Alessandro +Lawrence +Walter +Caiden +Grayson +Milo +Kameron +Rohan +Corey +Donald +Phoenix +Roger +Roy +Ignacio +Jay +Octavio +Romeo +Silas +Brenden +Curtis +Elvis +Enzo +Sam +Adriel +Cade +Elliott +Giovani +Jadon +Kristopher +Bruce +Humberto +Lance +Leland +Misael +Tommy +Dallas +Isai +Leon +Everett +Kyler +Corbin +Estevan +Keegan +Orion +Rolando +Shaun +Ali +Giancarlo +Maximilian +Russell +Douglas +Gary +Marlon +Nathanael +Tobias +Zander +Morgan +Irvin +Justice +Kobe +Rowan +Brennan +Junior +Melvin +Mitchell +Jonathon +Kelvin +Malik +Jovanny +Ronan +Ray +Rocco +Aryan +Dakota +Dorian +Franklin +Yair +Aron +Brett +Byron +Nico +Ulysses +Zachariah +August +Braeden +Desmond +Julien +Santino +Colby +Gianni +Holden +Jameson +Maverick +Rigoberto +Alexandro +Clayton +Damon +Harry +Jaydon +Miguelangel +Nery +Dario +Judah +Arjun +Beau +Jovany +Mike +Zackary +Brock +Darian +Davian +Jett +Kian +Solomon +Tristen +Weston +Bennett +Bernardo +Derick +Emerson +Isiah +Jayce +Jovani +Efren +Gonzalo +Graham +Quentin +Titus +Alijah +Amari +Ari +Billy +Braulio +Bruno +Fidel +Yael +Carlo +Dalton +Jair +Jefferson +Krish +Kristian +Nathen +River +Cory +Joan +Josh +Keven +Santos +Alfred +Leonard +Nestor +Trey +Bobby +Cristofer +Dominik +Jaeden +Jovanni +Kieran +Luciano +Marcelo +Mariano +Pierce +Ronnie +Ben +Brendon +German +Nikhil +Rey +Grady +Maurice +Raphael +Wilson +Abram +Cristobal +Davis +London +Atticus +Conor +Davin +Emmett +Isaak +Maximo +Payton +Ronaldo +Sonny +Valentino +Vince +Warren +Armaan +Eugene +Juancarlos +Matias +Mohammad +Ronin +Stanley +Terry +Vaughn +Ace +Camden +Kellen +Luka +Pranav +Talon +Aditya +Arman +Devan +Deven +Eliseo +Frederick +Guadalupe +Isac +Jaxson +Joseluis +Louie +Micheal +Mohamed +Nick +Reed +Skylar +Tucker +Yandel +Benny +Braydon +Cohen +Elmer +Heriberto +Ibrahim +Jeshua +King +Kody +Ramses +Talan +Adrien +Arnav +Davion +Elian +Geovanni +Johnathon +Jovan +Rodney +Xzavier +Yurem +Ahmed +Beckett +Chad +Dexter +Greyson +Gunnar +Jeffery +Quincy +Reece +Reese +Reynaldo +Alexzander +Antony +Armani +Aydin +Brodie +Carl +Dawson +Easton +Geovanny +Hamza +Keaton +Malakai +Reid +Abner +Darwin +Ernest +Everardo +Marcel +Niko +Rocky +Brent +Craig +Devyn +Gideon +Gino +Juanpablo +Kade +Makai +Markus +Tate +Deshawn +Johann +Jon +Maxim +Osmar +Sage +Toby +Zackery +Eder +Finnegan +Francis +Franco +Harold +Jamie +Khalil +Malcolm +Marshall +Mathias +Matthias +Neil +Porter +Remy +Benicio +Gerald +Isidro +Izayah +Kane +Kendrick +Lewis +Raymundo +Ryland +Terrance +Winston +Aarav +Aydan +Bodhi +Conrad +Damion +Deandre +Emir +Ishaan +Keanu +Ralph +Van +Adonis +Ahmad +Benito +Cedric +Clark +Fredy +Gunner +Harley +Jaydin +Kenji +Leandro +Madden +Maximillian +Siddharth +Theo +Tristin +Baron +Demian +Deon +Dilan +Eddy +Milton +Muhammad +Rayan +Rishi +Sahil +Vincenzo +Zaid +Braxton +Carmelo +Darien +Dillan +Dominique +Gregorio +Ilan +Irving +Lee +Nikolai +Prince +Quinton +Roland +Royce +Samson +Sebastien +Semaj +Soren +Triston +Waylon +Zechariah +Anish +Armen +Dangelo +Finley +Franky +Glenn +Isael +Jan +Jermaine +Jessy +Ken +Marcoantonio +Marley +Rex +Camren +Cassius +Giovany +Jagger +Jaylin +Jeramiah +Jonatan +Keenan +Luisangel +Robin +Sammy +Taj +Wayne +Addison +Alden +Arian +Asa +Camilo +Camron +Dashiell +Deangelo +Dhruv +Duncan +Eden +Favian +Federico +Genaro +Gordon +Jael +Jamari +Kellan +Luc +Lyric +Terrell +Tyrone +Yash +Ayaan +Bradyn +Claudio +Dimitri +Erwin +Gavyn +Horacio +Jase +Jorden +Kaeden +Lucca +Marcello +Nathanial +Osbaldo +Rashad +Ryker +Said +Samir +Seamus +Terrence +Vance +Vidal +Wade +Zachery +Zain +Denzel +Dereck +Donavan +Dwayne +Jasiah +Jaycob +Jerome +Johnpaul +Kamari +Lane +Leonidas +Lucian +Nasir +Omari +Paxton +Rhys +Rick +Vladimir +Will +Wilmer +Zayden +Abdiel +Aedan +Amare +Andreas +Augustine +Brad +Colt +Dayton +Deegan +Edison +Howard +Jadyn +Jamal +Kadin +Mekhi +Quintin +Reuben +Santana +Stefan +Uriah +Yusuf +Zack +Arnold +Bailey +Davon +Ean +Edson +Eleazar +Elisha +Ethen +Gianluca +Izaac +Jacky +Jamison +Jareth +Lino +Mauro +Rigo +Sterling +Abdullah +Aram +Augustus +Aurelio +Beckham +Blaine +Callum +Demetrius +Elvin +Hernan +Jahir +Jeff +Justus +Kale +Kennedy +Keoni +Mikel +Mohammed +Nash +Neo +Neri +Pierre +Sidney +Tobin +Trace +Aarush +Adair +Alek +Ayush +Dale +Darion +Deacon +Elan +Guy +Hassan +Jarrett +Javon +Johnnie +Jordy +Lionel +Marcelino +Marques +Royal +Sione +Sky +Tai +Walker +Abelardo +Andrei +Anirudh +Antoine +Ares +Arya +Azael +Braedon +Brennen +Damari +Darryl +Gerson +Iker +Imanol +Jax +Jelani +Jet +Kadyn +Kalel +Kareem +Karim +Malaki +Marko +Merrick +Ocean +Paolo +Reginald +Salomon +Sullivan +Teagan +Timmy +Tristian +Ulices +Ulisses +Willie +Yovani +Akhil +Anson +Avi +Bill +Braiden +Brooks +Christofer +Cristo +Dallin +Dax +Dion +Enoch +Forrest +Geoffrey +Herbert +Jaydan +Jedidiah +Jericho +Jordi +Kalani +Kalvin +Koa +Kurt +Lawson +Lennon +Luiz +Marquis +Messiah +Mustafa +Nigel +Presley +Rahul +Raiden +Reilly +Rory +Ryley +Shaan +Shreyas +Stone +Aaden +Abhinav +Andrey +Apollo +Barrett +Caesar +Daren +Darrell +Dyllan +Ellis +Ever +Freddie +Geovany +Hans +Harper +Harvey +Hugh +Jacobo +Jean +Jordyn +Joseangel +Kael +Kainoa +Karl +Kelly +Keon +Kyan +Lachlan +Lamont +Leobardo +Lucio +Magnus +Massimo +Mihir +Milan +Nate +Nikko +Oskar +Otto +Reagan +Sami +Shayan +Teo +Tim +Trinidad +Zaire +Adin +Ajani +Alexandre +Bilal +Bishop +Boston +Brando +Don +Ewan +Fermin +Jim +Jullian +Kaleo +Kevyn +Kole +Lamar +Lucien +Noam +Norman +Obed +Reyli +Rhett +Richie +Rishabh +Stuart +Sunny +Trevon +Truman +Tyree +Varun +Yonatan +Abran +Achilles +Adalberto +Adriano +Aleksander +Amado +Arath +Armon +Bernard +Bladimir +Bodie +Broderick +Brycen +Cannon +Carmine +Constantine +Dan +Daron +Denis +Donte +Esau +Geovani +Haven +Hilario +Immanuel +Ishan +Jaren +Jerimiah +Josemanuel +Karson +Kash +Killian +Lazaro +Mattias +Mikael +Patricio +Rehan +Roderick +Sameer +Sheldon +Stephan +Zahir +Aidyn +Ajay +Akshay +Aldair +Anders +Anton +Antoni +Arvin +Austen +Benson +Blaise +Brice +Ceasar +Chandler +Colten +Darnell +Darrius +Duke +Ervin +Fred +Isacc +Isreal +Jabari +Jafet +Jaron +Jathan +Javen +Johnson +Josef +Joziah +Kamran +Kurtis +Lenny +Marion +Moshe +Noa +Paulo +Ron +Ronny +Sarkis +Shiven +Silvestre +Simeon +Todd +Trevin +Zen +Amador +Anakin +Andrik +Ansel +Arav +Arnulfo +Blaze +Boden +Chaz +Darin +Dereon +Domingo +Draven +Edgardo +Eros +Fausto +Fletcher +Garret +Garrison +Gian +Hank +Harris +Hezekiah +Ismail +Jad +Jaedyn +Jai +Jaidyn +Kasey +Kendall +Kent +Korbin +Landyn +Leif +Lonnie +Maksim +Neel +Nikita +Odin +Oren +Rico +Rio +Shiloh +Tadeo +Tom +Uziel +Yaseen +Yonathan +Yuvraj +Alen +Alexsander +Alistair +Ameer +Ansh +Arden +Aren +Arlo +Austyn +Caeden +Cain +Deagan +Dev +Edmond +Eliezer +Ernie +Fabio +Fabricio +Fabrizio +Faustino +Francesco +Gabino +Gannon +Glen +Hiram +Jaret +Jensen +Jeremias +Jesiah +Juandiego +Kekoa +Kelan +Kenton +Kenyon +Kiran +Kristofer +Lester +Narek +Rayden +Rayyan +Salvatore +Shayne +Taha +Talen +Tarun +Thaddeus +Trystan +Tyrell +Viktor +Yousef +Aayush +Akash +Alexavier +Alton +Amar +Antwan +Archer +Arnoldo +Artemio +Athan +Baltazar +Bentley +Braylon +Charley +Clemente +Coby +Coleman +Cristiano +Daryl +Dashawn +Davien +Donnie +Edmund +Eliel +Eligh +Eloy +Esai +Favio +Fisher +Gibson +Haiden +Haziel +Herman +Izaak +Jamar +Jamil +Jarod +Jarred +Jashua +Jaylan +Jhonatan +Jiovanni +Jordin +Jordon +Joseantonio +Justyn +Karthik +Kris +Kylan +Kyree +Leopoldo +Lloyd +Lucius +Neftali +Otis +Ramsey +Randall +Reymundo +Rohit +Rylee +Sanjay +Shant +Syed +Tiago +Tyce +Tye +Tyrese +Valente +Westley +Wilbert +Willem +Yosef +Zach +Zakary +Zavier +Aadi +Aaryan +Aayan +Adiel +Amos +Andru +Armand +Ashwin +Beck +Bradly +Clarence +Clyde +Cristhian +Dandre +Darrin +Dejon +Denny +Didier +Finnian +Geno +Harout +Hendrix +Jackie +Jacoby +Jaedon +Javion +Jerson +Johny +Juanjose +Kamron +Keagan +Khalid +Kolby +Konner +Lars +Lisandro +Marcell +Mikhail +Minh +Nevin +Norberto +Osman +Rami +Roan +Ronit +Roshan +Rowen +Ryu +Sasha +Soham +Teddy +Tevin +Torin +Wilber +Wiley +Williams +Abhiram +Abrahan +Amaury +Angad +Angelgabriel +Angus +Arin +Arsen +Augustin +Ayan +Benedict +Bo +Bowen +Brandan +Brenton +Canon +Clifford +Clinton +Coen +Criss +Cuauhtemoc +Donavon +Eitan +Ely +Erasmo +Faris +Flavio +Flynn +Gauge +Gerard +Hadi +Ibraheem +Ira +Izak +Jancarlo +Jarett +Jody +Juanmanuel +Kabir +Karter +Kason +Keshav +Keshawn +Konnor +Krishna +Leroy +Leslie +Levon +Lex +Makaio +Manny +Marek +Memphis +Michel +Mickey +Mohamad +Nathon +Osiel +Ozzy +Pete +Raudel +Raziel +Reggie +Reyes +Rian +Rickey +Rishab +Ronak +Rosendo +Ross +Savion +Selvin +Shay +Shea +Slade +Surya +Vihaan +Vinh +Yeshua +Yohan +Zaiden +Zeus +Abisai +Adael +Adryan +Alain +Aman +Amin +Amogh +Amrit +Andrez +Aneesh +Antwon +Aries +Arion +Branson +Bret +Brooklyn +Canyon +Chayton +Cian +Clint +Corban +Damarcus +Danniel +Deanthony +Deion +Demitri +Devlin +Diesel +Donavin +Dwight +Eamon +Elio +Elyas +Emery +Eoin +Etienne +Evin +Feliciano +Froylan +Gadiel +Gaven +Giorgio +Haden +Hakop +Harlan +Hasan +Heber +Humza +Ishmael +Jasen +Jaylon +Jaysen +Jayvion +Jaziel +Jeovany +Jessiah +Jimmie +Josias +Jr +Juliano +Jun +Kain +Kanoa +Karan +Karsten +Kymani +Langston +Layne +Legend +Luigi +Lyle +Maddux +Makoa +Marquise +Michaelangelo +Mikah +Mikey +Miller +Morris +Mynor +Nahum +Nomar +Palmer +Parsa +Perry +Phineas +Piero +Rayhan +Raymon +Remi +Remington +Rithvik +Rony +Shaurya +Slater +Sylvester +Syrus +Takumi +Tanay +Tatum +Tayshawn +Ted +Tegan +Trayvon +Ulyses +Vedant +Vishnu +Youssef +Zayd +Zev +Aaditya +Abhishek +Amani +Arron +Aston +Barry +Bradlee +Brandyn +Broden +Calen +Carsten +Celso +Charly +Ciaran +Clay +Cornelius +Curren +Cy +Damarion +Dameon +Darrien +Daxton +Demarion +Demetrio +Derik +Deshaun +Devonte +Domenic +Elder +Eliazar +Eliot +Emmitt +Eriberto +Eyan +Gaige +Gene +Gildardo +Heath +Henrik +Ilias +Imran +Izeah +Jacques +Jamir +Jarvis +Jayvon +Jc +Jeffry +Jin +Josedejesus +Joshue +Juaquin +Kamren +Keelan +Keion +Kenzo +Khang +Koen +Laird +Major +Makhi +Marcial +Markell +Monte +Neal +Nevan +Omarion +Parth +Quinlan +Race +Raghav +Rider +Robbie +Rustin +Samarth +Sammuel +Servando +Shiv +Tenzin +Tito +Trenten +Turner +Tylor +Unknown +Virgil +West +Westin +Willy +Yahya +Yamil +Yovany +Yuri +Yusef +Zacarias +Zayne +Zephaniah +Aamir +Abdulrahman +Aeden +Aharon +Ambrose +Ameen +Anjel +Atharva +Aubrey +Barron +Benton +Bode +Bradford +Braylen +Brighton +Broc +Brogan +Bronson +Cadence +Cairo +Cale +Carlton +Case +Cormac +Daksh +Danilo +Darby +Darrel +Deric +Domenick +Donny +Edvin +Egan +Eliud +Emil +Emile +Esdras +Eshaan +Etai +Ethyn +Fabien +Fransisco +Fredrick +Gamaliel +Garett +Giuseppe +Graydon +Greg +Harman +Haydn +Houston +Iain +Isaih +Issa +Issak +Izaya +Jacen +Jaidon +Jailen +Jayshawn +Jehu +Jeovanny +Jess +Jhonny +Job +Jomar +Jonny +Josejuan +Joshuah +Juanluis +Kalen +Kamal +Kamden +Karol +Kasen +Kayleb +Keane +Kerry +Kevon +Keyon +Khristian +Kingsley +Koby +Kohen +Korey +Kory +Landan +Lucky +Manjot +Masen +Maxx +Mitchel +Musa +Nikola +Nixon +Nolen +Ozzie +Philippe +Princeton +Renato +Renzo +Reymond +Ryden +Seven +Shivam +Sriram +Stephon +Sylas +Taran +Tavin +Tigran +Tracy +Tripp +Ubaldo +Umar +Urijah +Victormanuel +Viggo +Vivek +Wes +Wilfredo +Yadier +Yehuda +Yobani +Yoel +Zahid +Zakariya +Zyon +Ab +Abdul +Abimael +Adel +Aldrin +Amaan +Amadeo +Anay +Andruw +Angello +Apolinar +Arik +Artem +Atom +Avian +Aviv +Azariah +Bernabe +Brandin +Brandt +Callan +Calum +Cecil +Chayse +Chazz +Ciro +Conlan +Cordell +Cornell +Darey +Dariel +Darrian +Darrion +Dave +Daylan +Daylen +Dayne +Degan +Demarcus +Demari +Demitrius +Denilson +Deonte +Desean +Dimas +Dino +Dylen +Earl +Eason +Eber +Edric +Eren +Eugenio +Finneas +Forest +Gaurav +Gavino +Genesis +Gil +Hadrian +Iban +Isa +Isak +Isayah +Isrrael +Issaiah +Izik +Izrael +Izreal +Jabez +Jahaziel +Jakub +Jalil +Jaxen +Jaykob +Jerardo +Jezreel +Jhovani +Jhovany +Joell +Joesph +Johannes +Juelz +Julyan +Juvenal +Kamryn +Kannon +Kayne +Kayson +Kelton +Kenta +Khai +Khoa +Kye +Kyson +Landin +Lauro +Leandre +Lev +Lian +Logen +Lyndon +Malek +Marquez +Marty +Maximino +Maximos +Maxximus +Milad +Mykel +Nadav +Naim +Nain +Nassir +Natanael +Nicolai +Nikolaos +Nishant +Om +Ori +Pascual +Quinten +Rajan +Rayshawn +Reef +Refugio +Rehaan +Ren +Rich +Romel +Rosalio +Rylen +Sabastian +Sandro +Saxon +Shannon +Shmuel +Silverio +Sincere +Skye +Sol +Stefano +Sutton +Tariq +Taven +Tayden +Taylen +Teegan +Tej +Tejas +Terrion +Thiago +Thierry +Travon +Tyshawn +Uzziel +Vaibhav +Viraj +Vito +Waleed +Willis +Wynn +Yahel +Yerik +Zacharia +Zakai +Zamir +Aadit +Aakash +Adarsh +Adian +Adil +Adithya +Adler +Adonai +Aidin +Aj +Akira +Alexandru +Alexi +Alfonzo +Alon +Alvino +Amit +Ammon +Anand +Andrae +Anibal +Anwar +Arda +Aria +Arsh +Arush +Aryeh +Asael +Atreyu +Avan +Axl +Ayman +Aziz +Azriel +Balam +Bayron +Benigno +Brayam +Brennon +Brodey +Brysen +Bryton +Buddy +Caedmon +Caelan +Calan +Campbell +Cary +Chauncey +Chester +Christ +Clifton +Colson +Corwin +Curran +Dakoda +Dana +Dani +Danthony +Danyel +Dara +Dareon +Daylon +Delfino +Deron +Desi +Destin +Domonic +Donivan +Donnell +Donnovan +Drayden +Dresden +Duvan +Edan +Edmundo +Edwyn +Elden +Elie +Elijha +Elijiah +Eliyahu +Ezekial +Farhan +Floyd +Ford +Fox +Gavan +Gerrit +Gibran +Gray +Haik +Hakeem +Halen +Hansel +Haris +Hero +Hussein +Idan +Ilya +Ilyas +Iseah +Itai +Iven +Izac +Jacari +Jae +Jairus +Jamarcus +Jamin +Japheth +Jarell +Jarrod +Javan +Javin +Jawad +Jaycee +Jayro +Jayvyn +Jeancarlo +Jed +Jered +Jeremyah +Jibril +Josejulian +Josemaria +Jovannie +Juanantonio +Jules +Justen +Kailen +Kaimana +Kaison +Kaito +Kalib +Karsen +Kavi +Kavin +Kavon +Kegan +Kemari +Khachik +Kiefer +Kirk +Kobi +Kodi +Kollin +Kylen +Laith +Laron +Latrell +Laurence +Lazarus +Leighton +Lennox +Linus +Lochlan +Loren +Lyrik +Maceo +Mack +Mackenzie +Maddex +Maddix +Malakhi +Malikai +Manvir +Markanthony +Matan +Mathieu +Matt +Maxime +Mayson +Mckay +Menachem +Mizael +Mykah +Myron +Nabil +Nader +Nahom +Nakai +Niccolo +Nickolaus +Nicola +Nima +Noble +Noor +Omri +Piers +Porfirio +Prabhjot +Rashawn +Ravi +Reno +Rommel +Ronal +Roni +Rowdy +Rusty +Rylie +Saahil +Sahib +Saleh +Salman +Samay +Sascha +Sevastian +Shalom +Shamus +Sherman +Sherwin +Shrey +Siddarth +Silvano +Smith +Sohan +Tayshaun +Tevita +Theron +Tiernan +Titan +Treyton +Trigo +TRUE +Tyrus +Vartan +Veer +Victoriano +Viet +Vikram +Vincente +Von +Wil +Yared +Yasir +Yehoshua +Zayn +Zeke +Aahan +Aaren +Aaronjames +Abdullahi +Abiel +Adal +Advait +Advaith +Adyn +Ahmir +Aimar +Aksel +Alasdair +Alder +Aleczander +Aleks +Aleksandar +Alekzander +Alexandros +Amadeus +Amarie +Amauri +Ammar +Amr +An +Anas +Ander +Andi +Andon +Andrick +Anmol +Anthonie +Anthonyjr +Aris +Arjan +Arjuna +Arun +Ashtin +Atharv +Auden +Audric +Aven +Aviel +Avin +Bao +Benji +Benyamin +Blaize +Blas +Boris +Braedyn +Brallan +Brant +Braxten +Brendyn +Caine +Calder +Callen +Camari +Cardin +Cason +Cayson +Ceaser +Cecilio +Cedar +Cedrick +Chace +Cj +Clement +Codey +Colter +Conrado +Corde +Cris +Cullen +Dakarai +Damonte +Darvin +Daryan +Dash +Dashel +Dathan +Daveon +Davonte +Daylin +Daymian +Delano +Deshon +Devion +Devontae +Dontae +Dylon +Eamonn +Eathan +Eben +Edder +Edilberto +Edin +Edsel +Ehren +Eliam +Eliaz +Ephraim +Erin +Esequiel +Ethaniel +Ethanmatthew +Even +Everest +Exavier +Finlay +Florentino +Gareth +Garin +Garrick +Geronimo +Gerry +Giacomo +Giuliano +Gorge +Govanni +Griffen +Grigor +Gurjot +Gurpreet +Gurshaan +Gurshan +Gurveer +Gus +Hamilton +Hari +Harjot +Harlem +Henri +Henrry +Herson +Hovik +Hurley +Huy +Ike +Indiana +Isahi +Isaia +Jaciel +Jacobe +Jadin +Jaidan +Jamarion +Jarrell +Jasson +Jaycen +Jaylyn +Jayme +Jaythan +Jayven +Jeanluc +Jeremie +Jeric +Jerico +Jermiah +Jessejames +Jiovani +Jiovanny +Joab +Johncarlo +Joncarlo +Josealberto +Josmar +Jossue +Jozef +Julious +Juno +Justis +Kaedyn +Kaidyn +Kalob +Kamarion +Karlo +Kasra +Kaylen +Kaysen +Keller +Kenai +Keyshawn +Khamari +Khoi +Khristopher +Konrad +Krishiv +Kristoffer +Kyran +Kyron +Ladainian +Layton +Lebron +Leeland +Lenin +Lior +Logun +Mac +Macario +Mahdi +Maison +Makhai +Manas +Manolo +Manveer +Margarito +Marius +Markel +Mateen +Matix +Maximilliano +Micaiah +Migel +Miko +Montgomery +Muhammed +Naeem +Nam +Nareg +Nathaneal +Nazareth +Nehemias +Newton +Nicky +Nihal +Niklas +Nikolaus +Nile +Nitin +Omid +Osiris +Osmel +Otoniel +Paris +Pavel +Praneel +Quan +Raheem +Rain +Randolph +Rashaad +Rashaun +Rasheed +Reginaldo +Reily +Renner +Rickie +Ritvik +Robby +Robel +Roen +Rojelio +Rolan +Rome +Rudra +Ryo +Sabino +Saeed +Saif +Sampson +Satvik +Shai +Shaya +Shilo +Sidharth +Sir +Sohum +Srikar +Steele +Stellan +Storm +Sven +Sydney +Taiyo +Talin +Tanish +Tavion +Theodor +Thor +Tiger +Toribio +Torsten +Tosh +Tre +Treyvon +Tristyn +Triton +Truth +Uri +Valentine +Ved +Viliami +Vinson +Warner +Wolfgang +Xaiver +Xavi +Xavion +Xavior +Yasin +Yazan +Yul +Yuta +Yuto +Zacary +Zacheriah +Zade +Zephyr +Zidane +Ziggy +Zuriel +Zyaire +Aahil +Aarin +Abbas +Abdel +Abdurrahman +Adnan +Adon +Ahmari +Akio +Alam +Alastair +Aleck +Alejo +Aleksey +Alessio +Alian +Alize +Alphonso +Alston +Amarion +Ameya +Angeljesus +Anguel +Anik +Antione +Aquiles +Aramis +Archit +Arie +Aristeo +Aristotle +Arlen +Armin +Arshia +Artyom +Atlas +Aundre +Auston +Avion +Avraham +Ayoub +Baden +Baxter +Beauregard +Beckam +Becker +Bennie +Bernardino +Boaz +Bosco +Braedan +Brandom +Brevin +Bridger +Britton +Cache +Cael +Cal +Callahan +Camryn +Candido +Carsen +Cayleb +Cezar +Chaim +Champ +Channing +Chasen +Chevy +Chriss +Christain +Christiano +Christien +Christo +Christoper +Cisco +Clive +Coleton +Conall +Conan +Cornelio +Crispin +Cyan +Dade +Daimien +Dajon +Damar +Damarco +Damario +Dang +Darell +Darrick +Dashiel +Daven +Deante +Dejuan +Delbert +Demarco +Demario +Demetri +Demetrious +Denver +Desiderio +Dewayne +Dezmond +Dhruva +Dionicio +Dmari +Dmitri +Donovin +Dorien +Dryden +Duane +Ebenezer +Eduard +Edwardo +Eion +Eithan +Elbert +Elisandro +Emin +Emmet +Emre +Enoc +Erich +Eron +Esaias +Esaul +Eshan +Euan +Eulises +Eythan +Fahad +Faisal +Fares +Farid +Ferris +Foster +Fouad +Gabrial +Ganesh +Gautam +Giancarlos +Giles +Gionni +Giovannie +Giulio +Gurman +Gustav +Gyasi +Haider +Hamzah +Haroon +Haruto +Harutyun +Hiro +Howie +Hung +Hy +Ikenna +Inigo +Iran +Irie +Irwin +Isaiha +Isidoro +Itamar +Jaccob +Jade +Jaedan +Jaelen +Jahan +Jahari +Jaicob +Jakai +Jakari +Jakeb +Jakobi +Jalon +Jamaal +Jamier +Jaquan +Jashan +Jaxx +Jayceon +Jaymes +Jeanpaul +Jeevan +Jerald +Jerod +Jeronimo +Jerrell +Jhoan +Johncarlos +Johnie +Johnmichael +Jonathen +Jorel +Josafat +Josaiah +Josealfredo +Josyah +Juanjr +Juel +Justine +Kadon +Kamar +Karanveer +Karlos +Kartik +Kasper +Kaushik +Kei +Keiran +Kenan +Kendal +Kendric +Kenner +Kennith +Kenshin +Khaled +Kinan +Klayton +Kolten +Kolton +Kooper +Kota +Kyren +Lakai +Lake +Lamberto +Larenzo +Lavell +Lenard +Lucus +Macen +Malachai +Malcom +Manav +Marcanthony +Marcellus +Marin +Markos +Marshaun +Marshawn +Mateus +Matin +Matthewjames +Matthieu +Mavrick +Maximilien +Maxon +Maxton +Mazen +Mckinley +Merik +Michaelanthony +Michelangelo +Mikai +Missael +Montana +Monty +Morrison +Munir +Mychael +Mychal +Naman +Natan +Nathanel +Naveen +Naythan +Neko +Nephi +Nicolaus +Nicoli +Nicolo +Nikoli +Niles +Nour +Nova +Oleg +Olin +Olivier +Omeed +Orin +Oseas +Oswald +Owyn +Oziel +Paco +Pascal +Pasha +Paulino +Pavan +Petros +Pierson +Pranay +Quin +Rahman +Raj +Raja +Raleigh +Ram +Raven +Rayvon +Regan +Rei +Reign +Reza +Rivers +Rodrick +Roel +Romario +Rooney +Roque +Roscoe +Rushil +Sacha +Sadiq +Sahid +Sai +Saleem +Salem +Samik +Santo +Sathvik +Saulo +Seiji +Serjio +Shabd +Shade +Shae +Shareef +Shashank +Shayaan +Shayden +Shaye +Sheamus +Shelton +Shiva +Shlok +Shlomo +Shriyan +Sid +Siddhant +Sixto +Sloan +Sosaia +Stevan +Stevie +Stewart +Suhas +Sukhraj +Tafari +Tam +Tamer +Tarik +Taron +Taye +Tayveon +Teague +Tejon +Tennyson +Teodoro +Terence +Thatcher +Thompson +Timoteo +Tomer +Tommie +Tomoki +Toriano +Travion +Trentin +Trever +Tri +Tylen +Tyquan +Tyrin +Umair +Uzziah +Vann +Vedanth +Vernon +Vinay +Viraaj +Virgilio +Vishal +Vivaan +Wallace +Wilbur +Wilder +Yakov +Yan +Yanni +Yisroel +Yoni +Yordi +Yovanni +Yunior +Yuval +Zabdiel +Zakaria +Zaki +Zakk +Zarek +Zavien +Zeth +Daniel +Anthony +Angel +Jacob +David +Alexander +Andrew +Joshua +Christopher +Jose +Matthew +Nathan +Ethan +Michael +Jonathan +Joseph +Diego +Adrian +Jayden +Brandon +Isaac +Noah +Kevin +Christian +Ryan +Aiden +Luis +Julian +Juan +Jesus +Gabriel +Aaron +Dylan +Carlos +Isaiah +William +Benjamin +Nicholas +James +Samuel +Elijah +Sebastian +Justin +Bryan +Miguel +Logan +Tyler +Jason +John +Alejandro +Evan +Jordan +Gavin +Aidan +Robert +Jack +Luke +Oscar +Damian +Lucas +Victor +Brian +Ivan +Ricardo +Adam +Jorge +Eric +Caleb +Eduardo +Alex +Zachary +Andres +Jackson +Xavier +Omar +Cesar +Jesse +Mason +Nathaniel +Alan +Ian +Steven +Dominic +Sean +Francisco +Giovanni +Thomas +Fernando +Antonio +Joel +Richard +Austin +Jeremiah +Emmanuel +Santiago +Alexis +Henry +Leonardo +Jaden +Vincent +Josiah +Manuel +Owen +Wyatt +Connor +Hector +Abraham +Cristian +Tristan +Edgar +Liam +Erick +Josue +Kyle +Charles +Javier +Cameron +Sergio +Chase +Jake +Elias +Landon +Mario +Nicolas +Brody +Ayden +Oliver +Andy +Brayden +Edwin +Roberto +Cole +Edward +Israel +Max +Hunter +Jeremy +Derek +Martin +Ruben +Devin +Emiliano +Marco +Rafael +Eli +Marcus +Riley +Erik +Blake +Hayden +Caden +Pedro +George +Mark +Armando +Mateo +Kai +Gerardo +Raymond +Roman +Micah +Johnny +Joaquin +Jonah +Timothy +Kenneth +Marcos +Emilio +Jared +Fabian +Carter +Cody +Raul +Damien +Seth +Enrique +Saul +Kaden +Gael +Alberto +Cooper +Carson +Adan +Paul +Arturo +Julio +Maxwell +Miles +Ryder +Esteban +Andre +Jaime +Ezekiel +Gustavo +Patrick +Travis +Brady +Trevor +Colin +Rodrigo +Preston +Nolan +Moises +Peter +Bryce +Levi +Emanuel +Salvador +Parker +Kaleb +Abel +Donovan +Ernesto +Axel +Pablo +Colton +Shane +Leo +Jeffrey +Ismael +Brayan +Grant +Johnathan +Danny +Jaiden +Alfredo +Cash +Angelo +Hudson +Ashton +Albert +Maximus +Uriel +Troy +Hugo +Ramon +Bradley +Chris +Issac +Mauricio +Frank +Randy +Guillermo +Malachi +Kingston +Spencer +Cruz +Kayden +Calvin +Maximiliano +Asher +Luca +Tanner +Allen +Dominick +Lorenzo +Lukas +Simon +Jude +Arthur +Felix +Stephen +Garrett +Braden +Mathew +Brendan +Collin +Leonel +Ezra +Harrison +Jaylen +Noe +Yahir +Shawn +Wesley +Gage +Dean +Devon +Ulises +Dante +Tony +Drake +Lincoln +Jimmy +Cristopher +Eddie +Isaias +Orlando +Alvin +Cayden +Conner +Darren +Jace +Jaxon +Jerry +Alfonso +Aden +Bryant +Rylan +Aaden +Maddox +Ricky +Gregory +Johan +Izaiah +Jakob +Marvin +Dustin +Rene +Rudy +Theodore +Felipe +Louis +Jairo +Noel +Kaiden +Myles +Osvaldo +Dillon +Giovanny +Moses +Charlie +Joe +Julius +Jonas +Vicente +Zane +Griffin +Aldo +Peyton +Taylor +Zion +Alonso +Jay +Jasper +Skyler +Sawyer +Grayson +Matteo +Jayson +Jessie +Joey +Ramiro +Valentin +Maximilian +Milo +Quinn +Drew +Avery +Phillip +Rogelio +Tyson +Elliot +Romeo +Alvaro +Casey +Gilberto +Rocco +Ronald +Landen +Nickolas +Alec +Allan +Dane +Lawrence +Alonzo +Adolfo +Giancarlo +Everett +Scott +Alessandro +Derrick +Amir +Enzo +Nikolas +Steve +Trent +Trenton +Xander +Efrain +Chance +Finn +Rowan +Byron +Declan +Ezequiel +Anderson +Gilbert +Darius +Camden +Roger +Bryson +Walter +Clayton +Keith +Russell +Desmond +Kenny +Marc +Rohan +Larry +Phoenix +Rodolfo +Silas +Cyrus +Julien +Kobe +Brennan +Cade +Leon +Colby +Dorian +Freddy +Morgan +Zackary +Bruce +Dennis +Misael +Philip +Nehemiah +Orion +River +Santos +Adriel +Ali +Caiden +Junior +Rolando +Dallas +Gianni +Isai +Mitchell +Zander +Brett +Octavio +Brenden +Jalen +Luciano +Malik +Rigoberto +Roy +Ty +Agustin +Ignacio +Irvin +Lance +Aryan +Jameson +Oswaldo +Quentin +Tommy +Ari +August +Judah +Keegan +Brock +Marcelo +Marlon +Nico +Santino +Tomas +Ariel +Elvis +Jaydon +Nathanael +Nelson +Sonny +Curtis +Jaxson +Jovanny +Kristian +Weston +Branden +Graham +Aron +Corbin +Elliott +Emerson +Frankie +Kieran +Aditya +Melvin +Arjun +Corey +Humberto +Jovani +Raphael +Kian +Maximo +Ray +Rey +Ronan +Tobias +Reed +Sam +Bennett +Bruno +Dario +Eugene +Franco +Kyler +Tristen +Zachariah +Franklin +Jayce +Kane +Kelvin +Nathen +Shaun +Ulysses +Darian +German +Holden +Josh +Miguelangel +Payton +Reid +Yandel +Davis +Giovani +Grady +Maverick +Mike +Gary +Alijah +Kameron +Malakai +Nikhil +Solomon +Yael +Dexter +Jadon +Jonathon +Marley +Titus +Warren +Kristopher +Nestor +Valentino +Donald +Douglas +Gonzalo +Brodie +Cristobal +Estevan +Jovanni +Jovany +London +Niko +Ronin +Abram +Ace +Amari +Beau +Cristofer +Efren +Geovanni +Greyson +Tucker +Yair +Carlo +Ishaan +Keven +Wilson +Cory +Isiah +Jett +Kellen +Mekhi +Alexandro +Alfred +Ben +Dominik +Emmett +Leland +Matias +Ronnie +Bobby +Chad +Dalton +Khalil +Markus +Yurem +Adrien +Braydon +Brendon +Davian +Derick +Deven +Maurice +Pierce +Ryland +Atticus +Dawson +Jair +Leonard +Malcolm +Stanley +Arman +Beckett +Eliseo +Jefferson +Krish +Louie +Muhammad +Armaan +Devyn +Fidel +Jaeden +Jovan +Trey +Uriah +Conrad +Eden +King +Madden +Marcel +Nery +Rodney +Braeden +Conor +Dakota +Damon +Davion +Frederick +Justice +Ryker +Xzavier +Billy +Brent +Heriberto +Luka +Davin +Dereck +Leonidas +Paxton +Reynaldo +Baron +Braulio +Darwin +Dashiell +Easton +Ibrahim +Kenji +Marshall +Milton +Pranav +Reece +Soren +Talon +Vince +Alexzander +Arnav +Benito +Deangelo +Deegan +Mariano +Mathias +Maximillian +Nasir +Quincy +Rocky +Sage +Terry +Toby +Gideon +Harry +Iker +Johann +Juancarlos +Kody +Ramses +Rishi +Skylar +Van +Winston +Abner +Ahmad +Braxton +Guadalupe +Kade +Makai +Mohammad +Neil +Tate +Andreas +Antony +Benny +Chace +Elian +Ethen +Isac +Izaac +Jeshua +Juanpablo +Maxim +Rhys +Bailey +Braylon +Finnegan +Jan +Jax +Jon +Keanu +Kendrick +Lucca +Mohamed +Terrence +Urijah +Wade +Waylon +Zayden +Aarav +Camilo +Deandre +Eddy +Elmer +Fredy +Hernan +Jaydin +Killian +Koa +Nick +Osmar +Rex +Ronaldo +Vaughn +Zaid +Aydin +Cohen +Dangelo +Hassan +Isaak +Isidro +Joseluis +Keenan +Lewis +Luc +Lucio +Nikolai +Omari +Tristin +Vladimir +Ahmed +Amare +Asa +Aydan +Boston +Deshawn +Elisha +Ernest +Gunnar +Jonatan +Quintin +Rayan +Reese +Remy +Roland +Zechariah +Antoine +Anton +Bernardo +Darien +Freddie +Gerald +Hamza +Jagger +Joan +Lionel +Nikko +Osbaldo +Porter +Willie +Ayaan +Brando +Clark +Everardo +Finley +Francis +Jeffery +Jerome +Kalel +Keaton +Marcelino +Mohammed +Nash +Odin +Sammy +Sebastien +Theo +Braiden +Darrell +Dhruv +Dilan +Eder +Edison +Gavyn +Hezekiah +Jamison +Johnathon +Jorden +Kash +Ralph +Raymundo +Reginald +Semaj +Will +Zain +Alden +Armani +Dax +Denzel +Erwin +Ever +Genaro +Gian +Harley +Irving +Jahir +Lennon +Marcello +Maxx +Quinton +Santana +Taj +Zack +Barrett +Cannon +Carl +Darryl +Devan +Duncan +Gunner +Jael +Jamie +Jasiah +Jaycob +Kekoa +Leandro +Lee +Royce +Samir +Seamus +Terrance +Zachery +Abdiel +Aedan +Alexandre +Callum +Camron +Demetrius +Emil +Gino +Jaylin +Jesiah +Johnpaul +Kareem +Paolo +Sahil +Samson +Wayne +Abhinav +Anders +Andrei +Avi +Brycen +Dan +Dwayne +Eleazar +Gerson +Izaak +Jacoby +Jessy +Kaeden +Lane +Lucian +Magnus +Matthias +Om +Rick +Yusuf +Anson +Bill +Bodhi +Bradyn +Emir +Favian +Franky +Geovanny +Jacobo +Jean +Jet +Jordy +Kainoa +Messiah +Rico +Triston +Zackery +Adonis +Apollo +Arya +Cassius +Cedric +Damion +Darin +Dayton +Edson +Eliezer +Ellis +Elvin +Emery +Federico +Giovany +Gordon +Heath +Immanuel +Jamari +Jareth +Kamari +Lamar +Paulo +Siddharth +Sidney +Sterling +Thor +Tobin +Yash +Yovani +Alek +Aurelio +Benicio +Brad +Brennen +Damarion +Dimitri +Dion +Howard +Jadyn +Jaidyn +Jamal +Javon +Jonny +Kale +Landyn +Marquis +Noa +Prince +Rigo +Rio +Stefan +Tom +Tyrone +Zakary +Aarush +Achilles +Addison +Ansh +Augustine +Brooks +Colten +Darey +Darnell +Dereon +Dominique +Ean +Eliel +Esai +Fisher +Isacc +Jaedyn +Jaydan +Jeramiah +Jericho +Josef +Justus +Kalvin +Koen +Kole +Lazaro +Milan +Neri +Nigel +Nikita +Obed +Pierre +Raiden +Rashad +Shiloh +Talan +Thiago +Uziel +Vance +Varun +Yahel +Yosef +Yosgart +Anish +Armen +Athan +Bodie +Ceasar +Christofer +Cristiano +Deacon +Dillan +Harold +Izayah +Jeff +Kadin +Kael +Ken +Kolton +Levon +Lino +Luisangel +Micheal +Nahum +Randall +Stephan +Sullivan +Trevon +Abdullah +Adriano +Alexsander +Amani +Ayush +Bishop +Clyde +Darion +Deon +Donavan +Isael +Jai +Jaron +Jaylon +Jordyn +Joseangel +Karson +Kellan +Kent +Keoni +Kyan +Kymani +Leobardo +Lyric +Maksim +Mikel +Nathanial +Parsa +Patricio +Reuben +Reyes +Sunny +Terrell +Tyree +Aidyn +Ajay +Akshay +Bilal +Blaine +Broden +Cain +Cale +Camren +Chandler +Enoch +Ernie +Fermin +Gaven +Glenn +Gregorio +Ishan +Jabari +Jedidiah +Jermaine +Jordin +Juanjose +Karter +Kavin +Kennedy +Kevyn +Konner +Lamont +Lucien +Mauro +Michaelangelo +Mikah +Naythan +Ocean +Osiel +Presley +Quinten +Reyli +Rory +Ross +Said +Shaan +Simeon +Sione +Teagan +Trace +Ulices +Valente +Yuvraj +Zaire +Zavier +Zayne +Adalberto +Akash +Azael +Benson +Blaise +Broderick +Bronson +Cordell +Davon +Dejon +Earl +Gauge +Gianluca +Jamar +Jase +Joziah +Kaleo +Keagan +Kylan +Lachlan +Lloyd +Manny +Massimo +Mattias +Oren +Osman +Pete +Reilly +Rhett +Robin +Shreyas +Sincere +Stuart +Vedant +Vincenzo +Wilmer +Yeshua +Aaryan +Akhil +Ansel +Archer +Austen +Bayron +Beck +Beckham +Bentley +Bladimir +Claudio +Clemente +Coleman +Craig +Demian +Domenic +Domingo +Donnie +Eliot +Ely +Fletcher +Fred +Geovany +Hank +Harlan +Harper +Harvey +Hiram +Isreal +Jamil +Jeremias +Johnnie +Kalani +Keon +Korey +Legend +Leroy +Linus +Maddux +Marko +Marques +Matix +Narek +Nate +Nicolai +Rami +Rian +Richie +Roderick +Rowen +Ryden +Tim +Todd +Trystan +Vihaan +Yaseen +Yousef +Yusef +Abran +Aram +Ares +Arlo +Arnulfo +Artemio +Ashwin +Barry +Caesar +Clinton +Colt +Daylen +Draven +Edan +Ervin +Ewan +Finnian +Flavio +Gadiel +Gannon +Geoffrey +Guy +Herman +Horacio +Ishmael +Jafet +Jancarlo +Jaziel +Jordi +Josemanuel +Kamden +Karim +Kasey +Khalid +Kolby +Kurt +Leif +Leopoldo +Memphis +Merrick +Mihir +Monte +Mustafa +Nixon +Oskar +Otto +Remington +Renzo +Roan +Ronny +Royal +Sami +Sasha +Savion +Slade +Stone +Tariq +Thaddeus +Vidal +Walker +Wilber +Aamir +Aksel +Aman +Amar +Andrey +Anirudh +Aren +Barron +Brandyn +Carmine +Cason +Ciaran +Coby +Daron +Deagan +Derik +Dev +Donte +Eitan +Fausto +Flynn +Garret +Genesis +Gil +Ilan +Jad +Javen +Jerimiah +Jordon +Jullian +Kamran +Kasen +Kiran +Konnor +Kris +Laith +Langston +Lars +Lenny +Mikael +Montgomery +Moshe +Neo +Ori +Otis +Reagan +Rickey +Rohit +Rommel +Sandro +Shayne +Tristian +Vernon +Yoel +Yonatan +Adiel +Aeden +Aleksander +Alton +Arden +Armand +Arnold +Atreyu +Bernard +Blaze +Bo +Braedon +Brogan +Carmelo +Chaz +Cian +Corban +Cristhian +Damari +Denver +Don +Eamon +Edgard +Edmund +Eloy +Faris +Gerard +Greg +Haiden +Harman +Haziel +Hugh +Jaren +Jc +Jensen +Johny +Justyn +Kamren +Kamron +Kannon +Karl +Kendall +Khai +Kingsley +Koda +Kohen +Korbin +Kristofer +Landin +Layne +Lester +Lisandro +Luiz +Maddix +Marcoantonio +Marius +Matt +Neel +Osiris +Pavel +Perry +Rahul +Reymundo +Rogan +Roshan +Rowdy +Ryley +Sai +Tadeo +Trinidad +Aadi +Aayush +Abelardo +Abimael +Anand +Andree +Arian +Arnoldo +Asael +Augustus +Azriel +Cael +Clarence +Dany +Dariel +Darrin +Dashawn +Deion +Demetri +Desean +Edgardo +Esau +Eshaan +Eshan +Fabio +Fox +Geovani +Gus +Hansel +Hendrix +Ismail +Izak +Iziah +Jarrett +Jaykob +Jelani +Jim +Joell +Josemaria +Kalen +Kason +Kayvon +Kelly +Keshawn +Kory +Marquez +Marquise +Mohamad +Morris +Nomar +Norberto +Rayyan +Reggie +Rome +Rosendo +Sabastian +Sameer +Shea +Sohan +Sylas +Teddy +Tejas +Tiago +Tigran +Treyvon +Truman +Turner +Westin +Westley +Willem +Yonathan +Zev +Abisai +Aldair +Ameer +Andrez +Antoni +Ayan +Boris +Bradly +Brice +Charley +Clive +Corde +Cristo +Cuauhtemoc +Dale +Dandre +Danilo +Danniel +Daren +Dash +Deron +Duke +Dyllan +Eason +Edwardo +Eliazar +Elio +Elyjah +Emile +Ephraim +Eriberto +Eros +Esdras +Forrest +Fredrick +Gavino +Gene +Hamzah +Hasan +Hayk +Heber +Herbert +Jaciel +Jade +Jairus +Jamarion +Jaret +Jasiel +Jayshawn +Jayvon +Jess +Jun +Kabir +Kayleb +Khang +Kurtis +Lawson +Lucius +Maceo +Marciano +Masen +Mateus +Mayson +Mikhail +Myron +Nathon +Nayan +Noam +Omarion +Oziel +Phineas +Princeton +Raymon +Rylee +Sacha +Salomon +Shaurya +Shay +Sky +Skye +Slater +Soham +Talen +Tayden +Teo +Ulisses +Uzziel +Wilbert +Zen +Aaditya +Adair +Ajani +Amin +Andru +Anuj +Arath +Aris +Arvin +Atharva +Brooklyn +Caelan +Clifford +Clint +Constantine +Curren +Dallin +Darrius +Dave +Demarcus +Demari +Denny +Donavin +Dylon +Edmond +Erickson +Gabino +Gamaliel +Henri +Ira +Jacky +Jacques +Jaylan +Jeancarlo +Jerson +Jimmie +Joao +Josias +Juelz +Karlos +Kenyon +Kenzo +Khaled +Kyren +Lenin +Lev +Lucky +Marshawn +Maximino +Maxton +Micaiah +Nicholai +Nikola +Omer +Raghav +Rayden +Renato +Rishabh +Rony +Ryu +Sachin +Sammuel +Sheldon +Shiv +Sid +Silvestre +Tai +Ted +Teegan +Tevita +Thatcher +Tosh +Trevin +Ubaldo +Viktor +Vinh +Wiley +Yobani +Zuriel +Abdul +Akira +Alastair +Anakin +Anay +Angus +Antwan +Arlen +Baltazar +Barack +Boaz +Brandan +Branson +Braylen +Brighton +Campbell +Case +Cashton +Cecil +Damani +Daven +Daxton +Demarion +Demetrio +Destin +Didier +Dino +Dresden +Edmundo +Eligh +Enoc +Fares +Ford +Forest +Grayden +Hamilton +Hans +Harris +Hilario +Iain +Iann +Idris +Imanol +Jacen +Jackie +Jaedon +Jarell +Jayven +Joshuah +Juandiego +Kahlil +Karthik +Kayne +Kayson +Kenan +Khamari +Koby +Kye +Linden +Maison +Malaki +Marcell +Markanthony +Mickey +Nicco +Norman +Ozzy +Ramsey +Rayhan +Remi +Rishab +Samarth +Sanjay +Sarkis +Shant +Shayaan +Silvano +Srikar +Tanish +Taven +Trenten +Tye +Wes +West +Xavi +Yahya +Yasir +Yoshua +Youssef +Zackariah +Zahir +Zaiden +Zayn +Zeke +Zephyr +Zeus +Abdulrahman +Abhiram +Abrahan +Adarsh +Adin +Akiva +Alexandros +Amado +Amador +Amos +Andrik +Andruw +Anjel +Arav +Aries +Artem +Aston +Axl +Ayman +Azariah +Benedict +Bode +Bowie +Bradlee +Braedyn +Brenton +Calum +Charly +Chayce +Chevy +Colter +Cyril +Danial +Davien +Dayne +Deanthony +Denim +Denis +Deric +Diesel +Domenick +Dontae +Drayden +Dru +Edvin +Ehren +Eliud +Emmet +Ethaniel +Ethyn +Evander +Even +Fenix +Filiberto +Francesco +Fransisco +Fredi +Garett +Garrison +Gautam +Gavan +Haven +Honor +Ilias +Iman +Jaelen +Jaelyn +Jahari +Jahsiah +Jaidon +Jamarcus +Jaxen +Jayvion +Jeffry +Jehu +Jessiah +Jhonathan +Jody +Joesiah +Johnson +Joseantonio +Kaelan +Kain +Kamil +Kanoa +Keshav +Linkin +Lonnie +Mack +Mahmoud +Makhi +Marion +Maxson +Mick +Miller +Minh +Mitchel +Mykel +Nahom +Neftali +Ojas +Paris +Ranveer +Reef +Rehan +Rei +Rider +Roni +Rudolph +Rylen +Saif +Seven +Shae +Shai +Shayan +Stewart +Sutton +Syed +Sylvester +Syrus +Tarun +Terence +Tiernan +Travon +Trever +Vahe +Vishnu +Vito +Vladislav +Williams +Yehuda +Yerik +Yosgar +Zacharia +Zahid +Zamir +Zayd +Zeth +Aayan +Abiel +Adi +Aleksandr +Alekzander +Alen +Alessio +Alexavier +Alexi +Amogh +Andersen +Antwone +Aramis +Arjan +Arsh +Aven +Ayub +Aziel +Bowen +Brendyn +Bret +Bryon +Cairo +Calder +Cameran +Camryn +Canon +Carmello +Cary +Casper +Cavan +Celso +Che +Christiano +Clay +Coen +Conan +Cornelius +Criss +Cullen +Danthony +Darrion +Daveon +Daylan +Degan +Demitri +Deniz +Deshaun +Devlin +Donnell +Duane +Eian +Eithan +Eliaz +Elie +Emmitt +Esequiel +Eugenio +Farhan +Faustino +Favio +Feliciano +Floyd +Geraldo +Giancarlos +Gianmarco +Gibson +Giorgio +Glen +Hakop +Haris +Harlem +Homero +Humza +Isa +Isak +Izrael +Jaedin +Jahaziel +Jarel +Jarren +Jeronimo +Jessejames +Jhonatan +Jiovani +Jiovanni +Jorgeluis +Josmar +Jossue +Juaquin +Jules +Justen +Kaedon +Kanan +Kanon +Karan +Karol +Keller +Kelton +Kenton +Keyon +Khoa +Kristoffer +Kylen +Kyson +Lauro +Lazarus +Leighton +Lex +Loki +Luigi +Mac +Makoa +Malachai +Malek +Manraj +Marek +Mateen +Mckay +Menachem +Naim +Natanael +Neal +Ozzie +Paulino +Payden +Raheem +Raziel +Ren +Reymond +Riku +Robbie +Ronen +Saeed +Salem +Salman +Saxon +Selvin +Servando +Shamar +Subhan +Teodoro +Thai +Torin +Tracy +Tripp +Tyrell +Tytus +Usman +Vaibhav +Valentine +Ventura +Viliami +Wolfgang +Yohan +Yovanni +Zach +Zade +Zakariya +Aadan +Aaren +Ab +Abbas +Abdirahman +Abhishek +Adnan +Adonai +Adrean +Aeron +Agastya +Aleksey +Alesandro +Alexys +Amadeus +Andrick +Anselmo +Aric +Arion +Armin +Arron +Ashtyn +Aslan +Atlas +Atom +Austyn +Baxter +Bear +Boden +Bosco +Brandt +Brant +Brennon +Briant +Caeden +Cameren +Carsten +Celestino +Cezar +Champ +Charlton +Chasen +Chauncey +Chayse +Chester +Clement +Cormac +Cy +Dajuan +Dakari +Dakoda +Damarcus +Damarea +Dameon +Darrien +Darsh +Davit +Daymien +Demario +Denilson +Deonte +Dmitriy +Donavon +Dontay +Dwight +Eben +Eber +Edrick +Eduard +Elan +Elihu +Elton +Emari +Emory +Ender +Enmanuel +Erin +Esvin +Eusebio +Everest +Evin +Finlay +Florencio +Galileo +Garin +Germaine +Gibran +Giovannie +Giuseppe +Gor +Graden +Grey +Griffen +Gurshan +Harutyun +Henrry +Houston +Hyrum +Imran +Indy +Isayah +Issa +Issak +Itai +Izeyah +Izzac +Jadan +Jadiel +Jaison +Jakub +Jameer +Javan +Jaxsen +Jayceon +Jaydyn +Jaysen +Jed +Jediah +Jeovanny +Jerrell +Jessi +Jezreel +Job +Johncarlos +Jorel +Juanmanuel +Juventino +Kaio +Kalob +Kalub +Kamryn +Karlo +Karo +Karsten +Kaydin +Kean +Keion +Kerry +Khristopher +Kirin +Kirk +Kobi +Kyree +Ladainian +Landan +Laron +Lebron +Lennox +Ludwin +Luther +Lyrik +Maddex +Makani +Manolo +Marcellus +Markel +Markos +Marlo +Mathieu +Maxime +Maximilliano +Micahel +Michel +Michelangelo +Nareg +Naveen +Nevan +Nicky +Nikolaos +Nikoli +Nile +Noble +Nova +Omkar +Quinlan +Rehaan +Renee +Rithvik +Roque +Rushil +Sahib +Saleh +Salvatore +Sevastian +Shannon +Shia +Shivam +Shiven +Siddhartha +Sohum +Stavros +Stefano +Stephon +Stryder +Tahj +Tarek +Tayshaun +Tej +Tlaloc +Trajan +Trayvon +Trevion +Tuan +Tyce +Tylor +Tyrese +Umar +Unknown +Valen +Veer +Viggo +Vincente +Vishal +Vivek +Wallace +Wilfredo +Xavior +Yuri +Zacharias +Zakaria +Zaki +Zephaniah +Adael +Adonay +Adryan +Advaith +Aj +Alexsandro +Alfonzo +Alik +Alon +Alphonse +Alston +Amadeo +Ameen +Amiri +Anas +Anden +Ander +Aneesh +Angad +Anwar +Archie +Arie +Arin +Artin +Asante +Ash +Ashtin +Atharv +Atzin +Aubrey +Avin +Avinash +Baldemar +Baylor +Benjamen +Bennie +Bladen +Blaize +Brallan +Brandy +Brayson +Brenner +Buck +Caine +Callan +Canyon +Cardell +Cedrick +Chazz +Cillian +Constantino +Corbyn +Crispin +Daimian +Dakarai +Darell +Darrel +Darrick +Davyn +Daylon +Delvin +Demarco +Demitrius +Derian +Derion +Derreon +Deshon +Devonte +Dewayne +Dezmond +Diogo +Domanic +Domenico +Donavyn +Donny +Draco +Dublin +Edric +Elija +Eliott +Elyas +Ezrah +Fabrizio +Fadi +Fortino +Galen +Garrick +Gaspar +Gaurav +Geno +Geronimo +Gianfranco +Gionni +Graydon +Graysen +Gryphon +Hagen +Haik +Hanson +Haroon +Harout +Harshith +Helio +Hendrick +Henrik +Heron +Hosea +Huriel +Hussain +Huy +Ibraheem +Ignatius +Indiana +Isauro +Issiah +Izac +Izaya +Izeah +Jaasiel +Jacobi +Jadin +Jaelin +Jailen +Jaiveer +Jakari +Jalil +Jamaal +Jamir +Jarett +Jasen +Jaydee +Jaymin +Jayro +Jeovanni +Jeovany +Jeremi +Jeriah +Jeromy +Jevon +Jiovanny +Jjesus +Joab +Johnathen +Josaiah +Josealberto +Josedejesus +Josemiguel +Journey +Jovin +Jovon +Juliano +Julyan +Justo +Kadyn +Kaedyn +Kaelen +Kailen +Kainalu +Kaine +Kairo +Kaito +Kamal +Kawika +Kelan +Kenta +Khris +Khristian +Khriz +Kieren +Kiernan +Kilian +Kimo +Korben +Kordell +Krishiv +Krishna +Krystian +Kunal +Kwame +Kyrillos +Laird +Lake +Lashawn +Laszlo +Laurence +Ledger +Leeland +Leopold +Lestat +Levin +Logen +Madix +Major +Makaio +Malakhi +Manav +Margarito +Marino +Markell +Martel +Masyn +Matai +Maverik +Maxi +Maxon +Mekhai +Migel +Mikal +Mikey +Mizael +Muhammed +Musa +Mynor +Nicolo +Nihal +Nils +Nino +Paden +Palmer +Parth +Pascual +Pasha +Rainier +Rashawn +Reily +Ritvik +Robinson +Rodrick +Romario +Ronak +Rueben +Rufino +Ruvim +Ryo +Saharsh +Saketh +Samy +Serafin +Shakir +Shalom +Shepard +Sherman +Silvio +Sir +Sloan +Sol +Stevan +Suhas +Sydney +Syris +Taha +Tahir +Takumi +Tamir +Tavian +Tavin +Tayven +Tayvion +Tegan +Theron +Tiger +Timofey +Tomer +Toribio +Tremaine +Tri +Trigo +TRUE +Tysen +Ved +Vikram +Vinson +Vyom +Waleed +Walid +Willy +Wolf +Xavion +Yamil +Yamir +Yanixan +Yasin +Yordi +Yoseph +Zabdiel +Zaden +Zyaire +Aadit +Aakash +Aarya +Abdias +Abdulahi +Abdurrahman +Adithya +Aedyn +Aizik +Akai +Alain +Alcides +Aleczander +Alp +Amaan +Amaru +Amaury +Amire +Amit +Amon +An +Andon +Anival +Antione +Areeb +Argenis +Arik +Arsen +Arshdeep +Artur +Arun +Asaiah +Ashish +Asiel +Auden +Aundre +Ayrton +Azaiah +Baker +Benyamin +Bhargav +Bjorn +Blayne +Brayton +Breyden +Bryden +Cache +Cage +Caio +Cal +Camil +Canaan +Candelario +Captain +Carey +Carlitos +Carlton +Carnell +Carsyn +Carver +Casen +Caspian +Cayleb +Cecilio +Chaise +Charbel +Christ +Cipriano +Cisco +Clifton +Coleton +Coltrane +Conrado +Cordae +Cornelio +Cortez +Cosme +Creighton +Crew +Cris +Cru +Daejon +Dael +Daemon +Daijon +Damyan +Dani +Danyel +Darby +Darious +Daylin +Deaven +Dedrick +Deklan +Delano +Deondre +Desi +Devion +Diangelo +Dionicio +Dmitri +Domenik +Dominyk +Donato +Drayton +Dutch +Eberardo +Edel +Edilberto +Eesa +Eithen +Elder +Eldon +Eliceo +Elijiah +Eliu +Elkin +Ellison +Enrico +Erich +Estefano +Ethanjames +Etienne +Exavier +Faisal +Faraz +Finnley +Fynn +Gaige +Gareth +Garren +Garry +Greysen +Gurjot +Habib +Haden +Hadi +Hakeem +Halen +Hari +Harjot +Harshil +Hasani +Haydn +Hayes +Homer +Huxley +Ike +Ilyas +Irwin +Isaih +Izack +Izick +Jaaziel +Jacinto +Jahan +Jaheim +Jahiem +Jaion +Jakobi +Jalani +Jaleel +Jamel +Jarred +Jarrell +Jarrod +Jasean +Jatin +Javian +Javion +Jaylyn +Jaymes +Jayon +Jayse +Jaziah +Jenson +Jeovani +Jerald +Jeremyah +Jerico +Jermain +Jeron +Jhoan +Jhonny +Jhovanny +Jian +Jin +Johnatan +Jomar +Jometh +Jonathen +Jory +Joshuan +Josiyah +Jr +Juandavid +Juanluis +Kais +Kaison +Kamrin +Kanye +Kartik +Kasra +Kavan +Kavon +Kaya +Keandre +Keawe +Keelan +Kegan +Keita +Kennan +Keola +Kevan +Keyan +Kiefer +Kimani +Kiyan +Kiyoshi +Koji +Konrad +Konstantin +Kordae +Kota +Krithik +Kush +Lamarr +Lathan +Lavelle +Lazlo +Lian +Lochlan +Loghan +Long +Lowell +Lucciano +Luisfernando +Lyndon +Lysander +Mahdi +Mahir +Makana +Manveer +Marshaun +Massimiliano +Mateusz +Mathis +Mavrick +Maximilien +Mayan +Maynor +Mehki +Mher +Mickael +Mikkel +Montana +Monty +Murphy +Nabil +Nadav +Nam +Naren +Navid +Neeko +Neeraj +Neev +Nevin +Newton +Nicholaus +Nickolaus +Niels +Nithin +Nolen +Obadiah +Ociel +Octavian +Oden +Olaf +Olivier +Omri +Oryan +Oseas +Otoniel +Oz +Philippe +Porfirio +Prestyn +Raffi +Rahim +Ramces +Ramin +Ramy +Ranvir +Rashaad +Rolan +Romen +Ron +Ronit +Rooney +Royale +Rui +Rustin +Ryen +Ryken +Sabian +Salim +Samay +Sascha +Sathvik +Saulo +Selim +Sevak +Shan +Sharif +Shayden +Shian +Sho +Shuban +Siddarth +Siddhant +Sidharth +Silverio +Sinai +Sinjin +Siris +Sneijder +Sota +Steele +Surya +Sven +Tal +Tanav +Tanush +Tatum +Tayvon +Tenoch +Thelonious +Thien +Timmothy +Timmy +Tito +Trayveon +Tre +Tremayne +Tylan +Tyren +Tyshawn +Uday +Vardan +Victoriano +Viet +Vittorio +Vivaan +Vlad +Wendell +Wess +Wilder +Wiliam +Willian +Xavian +Yaakov +Yadiel +Yannis +Yaqub +Yared +Yazid +Yobany +Yoshi +Yovanny +Yuki +Yuren +Yuval +Zac +Zamar +Zavion +Zayan +Zaylen +Zayvion +Zeeshan +Zyion +Zyon +Daniel +Anthony +Angel +Jacob +Alexander +Ethan +David +Andrew +Matthew +Joshua +Christopher +Michael +Nathan +Jayden +Jose +Adrian +Joseph +Jonathan +Noah +Isaac +Aiden +Christian +Julian +Diego +Brandon +Gabriel +Kevin +Ryan +Jesus +Juan +Dylan +Aaron +Luis +Benjamin +Isaiah +William +Samuel +Elijah +Logan +Carlos +James +Sebastian +Nicholas +Evan +Miguel +Justin +Jason +Bryan +John +Tyler +Jordan +Damian +Lucas +Eduardo +Gavin +Caleb +Robert +Alejandro +Luke +Jack +Ivan +Santiago +Mason +Liam +Jackson +Adam +Alex +Brian +Victor +Ian +Xavier +Zachary +Oscar +Jesse +Eric +Dominic +Jeremiah +Nathaniel +Aidan +Jorge +Connor +Andres +Giovanni +Leonardo +Henry +Alan +Austin +Fernando +Josiah +Wyatt +Omar +Steven +Thomas +Ricardo +Landon +Antonio +Owen +Francisco +Joel +Cesar +Emmanuel +Vincent +Chase +Manuel +Richard +Sean +Erick +Charles +Tristan +Jaden +Cristian +Elias +Edgar +Oliver +Ayden +Nicolas +Abraham +Kyle +Hector +Max +Mario +Alexis +Emiliano +Sergio +Cameron +Brayden +Mateo +Josue +Edward +Javier +Hunter +Levi +Brody +Eli +Carter +Edwin +Devin +Andy +Derek +Ryder +Blake +Cole +Ruben +Jake +Micah +Israel +Jeremy +Roberto +Marcus +Kai +Timothy +Erik +Rafael +Marco +Martin +Riley +Jonah +Fabian +Pedro +Raymond +Joaquin +Cody +Marcos +Mark +Roman +Armando +George +Johnny +Nolan +Ezekiel +Adan +Caden +Jared +Kaden +Cooper +Damien +Kenneth +Maxwell +Kaleb +Seth +Emilio +Carson +Travis +Patrick +Bryce +Gerardo +Parker +Colin +Preston +Hayden +Enrique +Raul +Moises +Esteban +Shane +Colton +Andre +Jaime +Miles +Paul +Leo +Axel +Julio +Gael +Donovan +Salvador +Trevor +Pablo +Peter +Hudson +Saul +Alberto +Gustavo +Arturo +Ashton +Abel +Troy +Danny +Johnathan +Emanuel +Ismael +Jaiden +Kayden +Jaxon +Maximiliano +Grant +Angelo +Ernesto +Uriel +Hugo +Jeffrey +Alfredo +Bradley +Dominick +Maximus +Asher +Rodrigo +Wesley +Brayan +Frank +Luca +Mauricio +Felix +Cruz +Brady +Ezra +Albert +Issac +Cash +Dean +Jude +Chris +Collin +Kingston +Lincoln +Tanner +Allen +Cayden +Randy +Ramon +Charlie +Guillermo +Lorenzo +Aden +Bryant +Gage +Yahir +Jimmy +Aaden +Malachi +Theodore +Lukas +Kaiden +Calvin +Noe +Jace +Dante +Eddie +Maddox +Shawn +Stephen +Conner +Isaias +Mathew +Ulises +Jaylen +Arthur +Gregory +Leonel +Darren +Romeo +Steve +Tony +Spencer +Vicente +Drake +Grayson +Braden +Jerry +Matteo +Simon +Izaiah +Zane +Anderson +Brendan +Johan +Orlando +Cristopher +Rylan +Quinn +Rocco +Sawyer +Byron +Xander +Griffin +Jasper +Julius +Alfonso +Osvaldo +Ricky +Tyson +Allan +Jayson +Alec +Amir +Jaxson +Noel +Silas +Rene +Drew +Jakob +Jay +Landen +Marvin +Ty +Alonso +Giovani +Louis +Rudy +Felipe +Skyler +Aldo +Elliot +Enzo +Ezequiel +Garrett +Giovanny +Finn +Alvin +Joey +Maximilian +Moses +Devon +Peyton +Phillip +Rogelio +Zion +Alessandro +Chance +Declan +Rowan +Desmond +Everett +Alonzo +Jessie +Myles +Avery +Bryson +Leon +Valentino +Dennis +Dillon +Gilberto +Judah +Trenton +Alvaro +Nico +Darius +Elliott +Roger +Cyrus +Jairo +Jameson +Phoenix +Tomas +Milo +Rodolfo +Nikolas +Cade +Harrison +Weston +Casey +Kian +Larry +Ronald +Derrick +Keegan +Ramiro +Dustin +Giancarlo +Graham +Rohan +Ali +Bruce +Gilbert +Joe +Scott +Efrain +Jalen +Misael +Dallas +Nickolas +Orion +Branden +Gianni +Holden +Roy +Trent +Yandel +Adriel +Agustin +Brenden +Caiden +Dane +Rigoberto +Freddy +Lawrence +Taylor +Walter +Frankie +Ignacio +Kristopher +Malik +Nehemiah +Grady +Kyler +Kenny +Ari +Beckett +Brennan +Julien +Santino +Uriah +Valentin +August +Emmett +Greyson +Jax +Mitchell +Ronan +Arjun +Kobe +Maximo +Zackary +Colby +Donald +Keith +Neil +Jadon +Marc +Nathanael +Nelson +Jett +Maverick +Rolando +Tommy +Zander +Bennett +Camden +Clayton +Gary +Miguelangel +Solomon +Tristen +Malakai +Curtis +Humberto +Morgan +Sam +Amari +Estevan +Franco +Isai +Jayce +Jonas +Junior +Octavio +Tobias +Dorian +Kieran +Philip +Russell +Zachariah +Adrien +Ariel +Emerson +Irvin +Luciano +River +Titus +Dario +Jovanni +Lance +Quentin +Corbin +Kameron +Kristian +Matias +Alfred +Pierce +Easton +Jovanny +Leland +Oswaldo +Sonny +Xzavier +Aditya +Adolfo +Alijah +Beau +Dominik +Jefferson +Mohammad +Ace +Arman +Brett +Cristobal +Jaeden +Marlon +Atticus +Braeden +Braydon +Kelvin +King +Marcelo +Markus +Brock +Davian +Davis +Dexter +Dilan +Elvis +Jaydon +Reid +Rey +Urijah +German +Ishaan +Justice +Ray +Braylon +Bruno +Carlo +Efren +Franklin +Jovani +Kane +Nathen +Warren +Aron +Leandro +London +Mekhi +Niko +Santos +Trey +Muhammad +Rhys +Yael +Aryan +Camilo +Makai +Quincy +Ramses +Ryker +Tucker +Ulysses +Abram +Braxton +Cohen +Gonzalo +Lucian +Marshall +Mike +Nikolai +Pranav +Reed +Wilson +Armaan +Ben +Bernardo +Chace +Corey +Douglas +Iker +Isiah +Juancarlos +Kade +Keven +Kody +Madden +Maxim +Talon +Yair +Damon +Davin +Deven +Finnegan +Geovanni +Kenji +Khalil +Nestor +Aarav +Ahmad +Conor +Derick +Jair +Kellen +Krish +Raphael +Reese +Dakota +Eugene +Frederick +Marley +Mathias +Maurice +Arnav +Deegan +Harley +Izayah +Louie +Matthias +Van +Alexandro +Chad +Darwin +Fidel +Jovany +Luka +Malcolm +Reynaldo +Ronnie +Brodie +Colt +Ethen +Gunner +Melvin +Shaun +Soren +Will +Archer +Aydin +Benicio +Dereck +Eddy +Geovanny +Harry +Jerome +Jonathon +Mariano +Rex +Terry +Zayden +Dalton +Gunnar +Izaac +Jaycob +Keanu +Leonard +Paxton +Raiden +Terrence +Ayaan +Cristofer +Elmer +Fredy +Jeffery +Leonidas +Reece +Ronin +Ryland +Skylar +Waylon +Alexzander +Aydan +Benny +Brent +Darian +Dillan +Elian +Ibrahim +Isidro +Keaton +Anson +Billy +Jacoby +Jasiah +Joseluis +Jovan +Maximillian +Winston +Zaid +Anish +Armani +Braulio +Conrad +Dashiell +Dawson +Eden +Isaak +Jeramiah +Mohamed +Mohammed +Nikhil +Sage +Stanley +Toby +Aedan +Bobby +Clark +Dangelo +Enoch +Hassan +Jaylin +Johann +Kellan +Milan +Nick +Payton +Rayan +Ronaldo +Yusuf +Zain +Deandre +Jamie +Kaeden +Lewis +Marcello +Porter +Remy +Theo +Brendon +Cory +Davion +Eliseo +Ellis +Gerald +Gideon +Koa +Lionel +Raymundo +Abdiel +Asa +Bodie +Carl +Darien +Denzel +Francis +Guadalupe +Jeshua +Joan +Nery +Thiago +Zechariah +Ahmed +Brycen +Cannon +Demetrius +Gregorio +Jamari +Jedidiah +Ken +Kendrick +Lucca +Micheal +Neel +Odin +Royce +Semaj +Bodhi +Callum +Ernest +Gian +Hamza +Joziah +Keoni +Nasir +Osmar +Roland +Vaughn +Zackery +Abner +Anton +Benson +Giovany +Ishan +Marcel +Rodney +Sammy +Samson +Terrell +Vince +Vladimir +Arnold +Athan +Ayan +Baron +Cristiano +Darey +Deangelo +Deshawn +Ever +Geovany +Izaak +Jon +Kamari +Manny +Milton +Paolo +Presley +Rishi +Taj +Vihaan +Wade +Willie +Antony +Barrett +Bayron +Broderick +Cedric +Devan +Heriberto +Irving +Jadyn +Jean +Knox +Lee +Nixon +Osbaldo +Rocky +Seamus +Siddharth +Tristin +Walker +Yousef +Zack +Aidyn +Augustine +Azael +Colten +Dax +Duncan +Ean +Eder +Edison +Erwin +Favian +Jael +Jamison +Jase +Johnathon +Johnpaul +Jonatan +Justus +Kale +Kash +Landyn +Lane +Lennon +Memphis +Rory +Said +Tate +Trace +Tyrone +Uziel +Wayne +Zachery +Alexsander +Amare +Ayush +Bailey +Benito +Bronson +Cassius +Deacon +Elvin +Gauge +Gavyn +Jamal +Kalel +Kareem +Kole +Otis +Prince +Stefan +Vance +Abdullah +Alden +Andreas +Arya +Dev +Dwayne +Everardo +Freddie +Jorden +Josh +Kennedy +Reginald +Sahil +Triston +Trystan +Westley +Xavi +Zaire +Adonis +Alek +Antoine +Bentley +Boston +Draven +Elisha +Emil +Finley +Gino +Heath +Immanuel +Isac +Jagger +Jericho +Jessy +Lazaro +Marquis +Om +Omari +Ralph +Shaan +Terrance +Yosef +Yosgart +Aarush +Adair +Ajay +Arian +Beckham +Bishop +Braylen +Brennen +Camron +Craig +Deon +Dominique +Forrest +Gerson +Gordon +Harold +Harvey +Isael +Jaydin +Juanpablo +Kadin +Kainoa +Kiran +Legend +Lucio +Maxx +Messiah +Narek +Neo +Nigel +Nikko +Patricio +Remington +Reuben +Teagan +Ulisses +Yash +Yurem +Avi +Brooks +Cain +Dhruv +Donte +Eamon +Emery +Fisher +Hezekiah +Howard +Jarrett +Jaydan +Jesiah +Kason +Kylan +Leif +Luc +Maksim +Matix +Merrick +Mikah +Mustafa +Nash +Obed +Otto +Quinton +Rashad +Samir +Sterling +Sylas +Veer +Abhinav +Alexavier +Ansh +Aurelio +Austen +Boden +Cale +Carmelo +Darnell +Eleazar +Fredrick +Gadiel +Ilan +Jaylon +Jeff +Jeremias +Jerimiah +Kalani +Karim +Karson +Kasen +Killian +Lennox +Luisangel +Marcelino +Marko +Mattias +Neal +Paulo +Rhett +Sami +Sky +Aayan +Addison +Akhil +Arlo +Bilal +Brooklyn +Cael +Daren +Darryl +Devyn +Dimitri +Domenic +Eliezer +Ewan +Genaro +Geovani +Guy +Jai +Jaidyn +Jamar +Javon +Jet +Jullian +Nathanial +Nikita +Noam +Royal +Shayan +Stephan +Sunny +Vincenzo +Zeus +Achilles +Aeden +Alistair +Andrey +Armen +Bo +Camren +Damion +Dayton +Deagan +Don +Eliot +Ely +Gibson +Harlan +Hendrix +Imran +Isacc +Kalvin +Karl +Karter +Keenan +Kent +Kolton +Kyan +Pierre +Remi +Romel +Ryu +Shea +Tigran +Vidal +Aleksander +Aren +Azariah +Braiden +Brice +Cairo +Chandler +Chaz +Dan +Dion +Dyllan +Haiden +Hans +Hernan +Hugh +Keon +Koen +Kye +Kymani +Lachlan +Mack +Magnus +Marques +Massimo +Princeton +Richie +Roderick +Roshan +Sullivan +Ulices +Varun +Yovani +Zephyr +Anay +Aram +Blaine +Cason +Ceasar +Christofer +Emir +Eros +Ervin +Fletcher +Franky +Gaige +Garret +Gianluca +Hank +Harper +Jacobo +Jordy +Joseangel +Josemanuel +Josias +Kael +Kahlil +Kaleo +Kelly +Lamar +Lenny +Lisandro +Malaki +Naythan +Ocean +Oskar +Rayden +Rick +Rico +Rigo +Ryden +Stone +Wilmer +Zuriel +Adalberto +Adriano +Anakin +Andrei +Angus +Apollo +Augustus +Cuauhtemoc +Cullen +Darrell +Davon +Daylen +Donavan +Eason +Elan +Esau +Federico +Garrison +Jahir +Jareth +Jeancarlo +Jermaine +Johannes +Juandiego +Juanmiguel +Kekoa +Kolby +Konner +Kris +Krishna +Lucien +Lyric +Mickey +Mikhail +Pete +Quinten +Quintin +Rayyan +Reyes +Rishabh +Santana +Sebastien +Shiloh +Simeon +Tai +Tiago +Torin +Tristian +Tyree +Yerik +Adin +Alexandre +Aman +Amani +Anibal +Ansel +Arden +Ares +Aris +Arvin +Baltazar +Beck +Blaze +Branson +Carmine +Claudio +Daxton +Denis +Dereon +Didier +Edwardo +Eligh +Evin +Francesco +Geoffrey +Geronimo +Horacio +Ike +Jan +Jaxen +Jensen +Jhonny +Josef +Kabir +Kamden +Kasey +Keagan +Koby +Lev +Lino +Lloyd +Lucius +Major +Makaio +Nahum +Nate +Oren +Osman +Pavel +Randall +Reef +Robin +Sabastian +Salvatore +Sarkis +Sasha +Shant +Shreyas +Tatum +Teo +Tye +Tyrese +Zaiden +Zayd +Zephaniah +Aaryan +Alton +Augustin +Boaz +Brandyn +Caeden +Clinton +Danilo +Darion +Darrion +Dashawn +Demian +Dezmond +Diesel +Emmet +Ephraim +Fabrizio +Harman +Ilyas +Jabari +Jackie +Jahaziel +Jancarlo +Javion +Johnson +Kamran +Kayleb +Kayson +Kevyn +Lamont +Landin +Lawson +Linkin +Maddix +Marquise +Mauro +Mikel +Moshe +Naveen +Neri +Rio +Ron +Ryley +Salem +Sidney +Stephon +Syed +Taran +Tyce +Viktor +Wolfgang +Yoel +Yonathan +Zahir +Adiel +Akira +Anirudh +Arjan +Arley +Ashwin +Bladimir +Bradyn +Brando +Calder +Coby +Dale +Damarion +Danniel +Dariel +Destin +Duke +Edmond +Edmund +Eshaan +Fermin +Finnian +Gannon +Hayes +Hayk +Henri +Iain +Izak +Jacky +Jacques +Jamir +Jaron +Jaxton +Jeevan +Jordin +Juanjose +Jules +Karsten +Keshav +Kurtis +Leighton +Leopoldo +Levon +Maddux +Makoa +Malakhi +Marcell +Mikael +Monte +Musa +Natanael +Noa +Osiel +Osiris +Parsa +Raghav +Reagan +Rowen +Sione +Soham +Tejas +Tobin +Truman +Vedant +Vishnu +Vivaan +West +Westin +Xavior +Yahel +Yasir +Yeshua +Yosgar +Zac +Zavier +Adryan +Advaith +Adyn +Alain +Ammar +Amogh +Andrez +Angello +Aramis +Arnulfo +Aston +Bernard +Blaise +Bode +Brad +Brenton +Bret +Brighton +Brogan +Bryden +Caesar +Ciaran +Coleman +Cordell +Cristo +Daven +Demetri +Deshaun +Desi +Donnie +Dwight +Edan +Edson +Elie +Eliel +Eloy +Elyas +Erin +Esai +Farhan +Fausto +Floyd +Fred +Genesis +Giorgio +Harris +Hasan +Haven +Herbert +Hiram +Ishmael +Jad +Jaedyn +Jafet +Jaleel +Jamil +Jarell +Jayven +Jayvon +Jessiah +Jiovanni +Johnnie +Jordyn +Kain +Kairo +Kaito +Kendall +Korey +Kurt +Kyden +Kyson +Lathan +Laurence +Layne +Leobardo +Linus +Maddex +Malek +Malikai +Marek +Mathieu +Michaelangelo +Minh +Nazareth +Nikola +Rayshawn +Ren +Renzo +Rider +Roan +Roque +Rylee +Sameer +Shaurya +Shay +Surya +Talan +Terence +Tevita +Valente +Vikram +Yahya +Zayne +Aaiden +Aayush +Abelardo +Abhay +Amado +Ameer +Anders +Andersen +Arav +Armand +Bowen +Broden +Caelan +Camryn +Canaan +Cian +Corban +Cortez +Cy +Darrin +Dave +Daylin +Domenick +Edgardo +Ethyn +Fabio +Finnley +Ford +Forest +Fox +Gamaliel +Gerard +Greg +Harlem +Houston +Jadiel +Jaykob +Jaylyn +Jayvion +Jaziel +Jonny +Jordi +Kadyn +Kaison +Kirk +Lars +Lester +Lizandro +Lucky +Luiz +Marcoantonio +Mihir +Neftali +Nolen +Rayhan +Reggie +Rome +Ronit +Rony +Sahib +Sammuel +Sid +Skye +Slade +Stuart +Taha +Thaddeus +Tim +Tom +Wilbert +Williams +Zakary +Aadi +Abdul +Abran +Aldair +Alfonzo +Andrik +Arath +Asael +Atom +Aven +Azriel +Boris +Braedon +Brixton +Casen +Channing +Charly +Chayse +Clarence +Clemente +Clive +Dagoberto +Dallin +Damari +Daryl +Denver +Dino +Duane +Eitan +Eithan +Ethaniel +Exavier +Fabricio +Filip +Flynn +Gabino +Gaven +Gildardo +Glenn +Graysen +Grey +Haziel +Heber +Henrik +Idris +Isa +Isreal +Jade +Jaedon +Jaheim +Jaidan +Javan +Javen +Jayon +Jaysen +Jencarlos +Jeronimo +Josemaria +Jowell +Juaquin +Juelz +Kaan +Kalen +Kannon +Karan +Kavin +Keane +Khai +Khalid +Khristian +Kingsley +Kollin +Konnor +Kory +Leeland +Leroy +Lyle +Madhav +Makhai +Makhi +Manolo +Masen +Mikey +Nevin +Niklas +Norberto +Norman +Omri +Oziel +Radley +Rahul +Rian +Rohit +Ronny +Rylen +Sai +Sandro +Seven +Sincere +Sohum +Theron +Titan +Todd +Travon +Trinidad +Tristyn +Vernon +Viggo +Von +Wes +Yamil +Yaseen +Yonatan +Zach +Ziggy +Aamir +Aayden +Abrahan +Agastya +Aizen +Alessio +Amar +Amauri +Amaury +Amin +Angad +Arsen +Artur +Axl +Barack +Bill +Bradly +Braedyn +Brecken +Case +Charley +Christiano +Christos +Clyde +Crew +Daron +Daymian +Deion +Denny +Derik +Earl +Eian +Ekam +Eliah +Elio +Erasmo +Eugenio +Ezrah +Faustino +Gurman +Gus +Hadi +Herman +Imanol +Inaki +Ira +Iseah +Ismail +Itai +Izek +Jacen +Jadin +Jakobe +Jaren +Jathan +Jayshawn +Jelani +Jethro +Jody +Joell +Josedejesus +Josmar +Jovon +Julyan +Justyn +Kaine +Kamren +Kamron +Kenyon +Keyon +Koda +Kohen +Kooper +Kristofer +Lazarus +Ledger +Logen +Lonnie +Maceo +Marcanthony +Marcellus +Matt +Maxton +Miller +Mykah +Mykel +Naithan +Nam +Neev +Nicolai +Nomar +Ori +Perry +Phineas +Rajan +Rayne +Reilly +Reymundo +Rommel +Ruhaan +Rushil +Sanjay +Saxon +Selvin +Shai +Shannon +Shayne +Sheldon +Shivam +Silvestre +Stefano +Sydney +Syrus +Tariq +Tarun +Ted +Trevin +Tru +Turner +Tytus +Ulyses +Vaibhav +Vinh +Willem +Xavian +Yaakov +Youssef +Yovanni +Yuki +Yuvraj +Zacharias +Zev +Aadyn +Aahan +Aakash +Aaren +Aarin +Aarnav +Abdullahi +Adarsh +Aidin +Ajani +Akash +Aksel +Alston +Amaru +Amit +Ammon +Archie +Arie +Aries +Arin +Armin +Artemio +Arush +Atlas +Aviv +Axton +Ayman +Benedict +Bryton +Callan +Calum +Canon +Chayce +Che +Cillian +Clifford +Clint +Coleton +Corwin +Cris +Crispin +Damani +Dandre +Darrius +Daveon +Davien +Dejon +Demarion +Deonte +Deron +Devlin +Dimas +Domenico +Domingo +Dontae +Dresden +Dusty +Dylon +Eben +Edwyn +Elijiah +Eliott +Elyjah +Emmitt +Ernie +Esaias +Estuardo +Exodus +Faris +Finlay +Finnigan +Flavio +Fransisco +Fredi +Gagik +Gurshaan +Gurshan +Hamzah +Isaih +Izac +Jabez +Jaelyn +Jailyn +Jakai +Jalil +Jancarlos +Jashawn +Jasiel +Jaylan +Jayro +Jayvin +Jayvyn +Jeffry +Jeriah +Jiovani +Joao +Johny +Jullien +Kacey +Kaileb +Kallen +Kamal +Kamryn +Kanoa +Karlo +Kavi +Kawika +Kaysen +Kayvon +Kegan +Keion +Kenzo +Kieren +Kirin +Konrad +Kota +Kristoffer +Laird +Laron +Layton +Leandre +Lochlan +Mac +Madox +Maison +Manraj +Marcial +Markanthony +Markel +Markell +Marlo +Marquez +Marshal +Michel +Myron +Nicco +Nima +Nyjah +Olin +Oryan +Oz +Ozzy +Pharaoh +Race +Rafe +Ramsey +Ravi +Reymond +Rickey +Rickie +Rishab +Rosendo +Ross +Rylin +Salim +Savion +Shia +Sohan +Sylar +Syncere +Takeo +Taven +Tavin +Teague +Teddy +Tegan +Tosh +Trevon +Tripp +Tysen +Ubaldo +Vincente +Wylie +Wynn +Yazan +Yehuda +Yuta +Zacarias +Zaden +Zakai +Zakariya +Zeke +Zen +Aariz +Abbas +Abdulrahman +Abisai +Adonai +Akshaj +Akshay +Aleczander +Alexys +Anas +Aneesh +Anthoney +Areg +Arion +Asiel +Atharv +Atharva +Aundre +Austyn +Avelino +Avinash +Avraham +Azaan +Basil +Bear +Bernardino +Bob +Bradford +Braydin +Cadence +Cainan +Cal +Callen +Campbell +Carsten +Caspian +Cayson +Chazz +Chester +Chrystian +Coltin +Constantine +Cormac +Courtney +Cristhian +Dameon +Dany +Darin +Davit +Daymien +Dayne +Demarcus +Demario +Deric +Donaven +Edder +Emile +Ender +Enoc +Eriberto +Esdras +Etienne +Everest +Ezekial +Finian +Flint +Froylan +Gavino +Giancarlos +Gibran +Gor +Grayden +Graydon +Hakop +Humza +Hyrum +Issack +Issiah +Izeah +Iziah +Izrael +Jaciel +Jahmir +Jamin +Jarod +Jarren +Javin +Jaxx +Jaycee +Jaydyn +Jenner +Jens +Jeovanni +Jermiah +Jess +Jhon +Jian +Jim +Jimmie +Joesiah +Johndavid +Johnmichael +Jordon +Joseantonio +Josemiguel +Joshuah +Juvenal +Kage +Kamar +Kamil +Karam +Kasra +Kaydon +Kaylen +Keandre +Keiji +Kelson +Kelton +Keneth +Keshawn +Khang +Koji +Korbin +Kruz +Kush +Kyree +Kyrin +Lauro +Lenin +Lian +Liem +Luigi +Maleek +Matan +Mateen +Mathis +Maxime +Miko +Milad +Montgomery +Mordechai +Murphy +Nabeel +Nahom +Natan +Nathyn +Nikolay +Nile +Nino +Orin +Ozzie +Palmer +Randell +Randolph +Ranveer +Reyli +Roni +Saeed +Salomon +Samarth +Samvel +Serafin +Siddhant +Sol +Srikar +Sutton +Syler +Tadeo +Talen +Tallon +Tavian +Tayden +Teegan +Tevin +Thatcher +Tiger +Tre +Trever +Tri +TRUE +Tyrus +Tyshawn +Uzziel +Viliami +Viraj +Virgil +Wilbur +Wilder +Wiley +Willian +Willis +Xaiver +Yadiel +Yanixan +Yohan +Yoshi +Yousif +Yovany +Zak +Zakaria +Aadan +Abiel +Abimael +Adnan +Advait +Advik +Aj +Ajit +Akshat +Alastair +Alder +Aldrin +Aleksey +Alister +Alphonso +Ambrose +Andi +Andrick +Andru +Antwan +Aria +Aric +Arick +Arlen +Artin +Athen +Auston +Avan +Avian +Avin +Avion +Aziel +Barron +Barry +Benjamen +Bernie +Bladen +Boone +Bradlee +Brendyn +Brennon +Briggs +Brodey +Broxton +Buddy +Bulmaro +Calen +Cameryn +Carsen +Cashton +Cayleb +Cecil +Celso +Chasen +Chevy +Cj +Coen +Colter +Coltrane +Cypress +Daejon +Dalen +Dalessandro +Damen +Damir +Darsh +Dash +Dashel +Daylon +Delfino +Delvin +Demarco +Demetrio +Deondre +Desean +Devante +Dewayne +Dhani +Dijon +Dillion +Dmari +Dolan +Donavin +Donavon +Donnell +Donny +Dru +Eathan +Edrick +Eiden +Elder +Eliaz +Elijha +Elton +Emre +Esequiel +Esteven +Esvin +Evann +Eyad +Filiberto +Froilan +Galen +Gareth +Gaurav +Gautam +Gavriel +Germain +Gianmarco +Gil +Gio +Giovonni +Gray +Gurkirat +Gurnoor +Hadrian +Haig +Halen +Hamilton +Hanson +Harout +Harut +Haydn +Hilario +Hussain +Hussein +Imari +Iran +Irineo +Isaah +Iskander +Isrrael +Issa +Issaiah +Issak +Iven +Izick +Izik +Jabril +Jacey +Jacory +Jae +Jaelen +Jahan +Jairus +Jakoby +Jamaal +Jarett +Jarred +Jarrell +Jasson +Jatin +Jaycen +Jayceon +Jaydenn +Jayen +Jaysean +Jaziah +Jc +Jeancarlos +Jedrek +Jeovanny +Jeremyah +Jessejames +Jhonatan +Jhonathan +Jin +Jiovanny +Journey +Juandavid +Juanluis +Juanmanuel +Justen +Kaedin +Kali +Kameren +Karlos +Karsen +Karthik +Keelan +Keiden +Keifer +Keller +Kenai +Kendry +Kenton +Kevan +Kevon +Khoa +Khoi +Kiefer +Kolten +Kordell +Koston +Kunal +Kyron +Landan +Leopold +Lex +Linden +Loki +Loren +Lyndon +Makani +Makoto +Manas +Manav +Marck +Marion +Marshawn +Matai +Maurilio +Maxemiliano +Maximino +Maynor +Menachem +Micaiah +Michelangelo +Mika +Mikai +Mohamad +Nabil +Navid +Nevan +Niccolo +Nicholai +Nicklaus +Nicoli +Nihal +Nikos +Nyle +Onyx +Orson +Paris +Parth +Pascual +Paulino +Percy +Pierson +Porfirio +Rahman +Rain +Rami +Rasheed +Raymon +Raziel +Reeve +Reily +Reis +Rion +Rithik +Robby +Ronell +Ronen +Rowdy +Ryen +Sacha +Sachin +Salesi +Santonio +Sathvik +Savior +Sergey +Shiv +Sho +Shreyan +Sidharth +Stevie +Stewart +Sylis +Sylvester +Tadhg +Tahj +Taiyo +Takumi +Tao +Tarek +Tayvion +Tenzin +Thai +Tiernan +Tito +Tobey +Torsten +Umar +Uri +Vito +Wilber +Xadrian +Yamir +Yannick +Yobani +Yul +Yusef +Zayn +Zubin +Aaditya +Aarya +Abdirahman +Abhijot +Adian +Adithya +Akiva +Albeiro +Aleks +Alen +Alvino +Amaan +Amadeo +Amadeus +Amador +Amarii +Ami +Amiel +Amier +Amilcar +Amine +Amos +Anand +Ander +Andoni +Angelgabriel +Angelito +Anh +Anjel +Anselmo +Anthoni +Antoni +Aquiles +Arhaan +Arik +Aristotle +Arjay +Arnel +Artem +Arun +Aryav +Aryeh +Asaiah +Asante +Ashten +Askari +Aubrey +Audel +Avaneesh +Ayven +Bairon +Bao +Basilio +Bastian +Benji +Benton +Blayke +Bosco +Brandan +Briant +Broc +Bronx +Caine +Calix +Canyon +Cardin +Carlin +Carlosdaniel +Carmello +Carver +Casimiro +Casper +Cedar +Cedrick +Champ +Chayton +Ciro +Clement +Colson +Conan +Corbyn +Cordae +Corde +Cornell +Coy +Criss +Crosby +Cru +Cruise +Curren +Dael +Daichi +Dajuan +Damonte +Dang +Darious +Darrien +Daryn +Dasani +Dashiel +Davi +Davy +Dayvon +Deanthony +Dejuan +Delvon +Demari +Demitri +Denim +Derin +Derrell +Devaughn +Devontae +Devonte +Dixon +Django +Dmarcus +Dmitri +Domonic +Doroteo +Draco +Dublin +Duvan +Eagan +Edi +Edric +Edy +Egan +Einar +Eliazar +Eliud +Eliyahu +Emari +Enrico +Eoin +Erich +Erickson +Errol +Eshan +Ethanjames +Ethanjoseph +Faisal +Famous +Fareed +Fares +Farid +Feliciano +Finbar +Finneas +Fischer +Florian +Gabe +Gabriele +Gaspar +Gautham +Gene +Geno +Gevork +Giovannie +Giuseppe +Glen +Gracen +Haden +Haniel +Haris +Harjot +Harsh +Harutyun +Hasani +Hashim +Haydon +Honor +Iban +Idan +Indiana +Irwin +Isack +Isaia +Isaiahs +Itay +Ivann +Iverson +Jabriel +Jadan +Jaedin +Jahel +Jaideep +Jakeb +Jakub +Jamarcus +Jarvis +Jasean +Jasen +Jaskaran +Javid +Jayse +Jd +Jeanpierre +Jeferson +Jefte +Jerald +Jeremi +Jeremie +Jerimyah +Jerson +Jessey +Jevon +Jeziah +Jezreel +Jhovanny +Jibran +Jiraiya +Joachim +Jocsan +Joeseph +Joesph +Johncarlo +Jorel +Josafat +Josaiah +Josecarlos +Josedaniel +Josyah +Juanantonio +Kaelan +Kaelen +Kaimana +Kaj +Kanan +Kanav +Karmello +Karon +Kaydin +Kayne +Keiran +Keishawn +Keita +Keyshawn +Khaled +Khamari +Khristopher +Kolbe +Korde +Kylen +Lakai +Lake +Langston +Lavelle +Lazlo +Lebron +Leone +Lexington +Leyton +Long +Lowell +Lowen +Lyrik +Lysander +Macario +Madix +Mahmoud +Manveer +Marciano +Margarito +Marty +Mateus +Matheus +Mavrick +Maxamillion +Mehdi +Mick +Mikkel +Miliano +Moksh +Monty +Morris +Mycah +Mykell +Mynor +Nadav +Neko +Newton +Nicholaus +Nicolo +Nishant +Nova +Obi +Ociel +Odell +Oleg +Ollin +Orian +Osmin +Patton +Penn +Pietro +Quaid +Quest +Quin +Quincey +Quinlan +Quran +Rai +Raj +Rashaad +Rashawn +Reza +Rhyder +Rithvik +Rivaldo +Rocket +Roen +Romario +Romen +Ronak +Roosevelt +Roscoe +Rueben +Rumi +Rusty +Rylie +Ryon +Sabino +Sadrac +Saif +Saket +Salah +Samer +Samual +Sascha +Satvik +Sayed +Scout +Semisi +Servando +Shaheen +Shaheer +Shalom +Shamar +Shamus +Shashank +Shaya +Shepard +Shepherd +Shimon +Shota +Siddarth +Smith +Steele +Storm +Subhan +Sven +Tad +Taesean +Takoda +Tanay +Tanish +Tashawn +Tavion +Tavita +Taye +Tayler +Taylon +Tenoch +Teodoro +Thor +Tj +Tonatiuh +Torrey +Trae +Trajan +Travion +Trayvon +Trenten +Treshawn +Treyvon +Triton +Trustin +Trysten +Tryston +Tyreese +Tyrell +Unknown +Vahe +Valen +Vibhav +Vlad +Vladislav +Warner +Wesly +Wilfredo +Willy +Wolf +Xzavior +Yisroel +Yoltzin +Yordi +Yoshua +Zair +Zakariah +Zaki +Zamir +Jacob +Daniel +Anthony +Alexander +Angel +Ethan +Jayden +David +Andrew +Nathan +Matthew +Joshua +Noah +Michael +Christopher +Jonathan +Adrian +Aiden +Jose +Julian +Joseph +Isaac +Gabriel +Christian +Brandon +William +Diego +Ryan +Dylan +Benjamin +Elijah +Logan +Aaron +Sebastian +Jesus +Isaiah +Kevin +Mason +Samuel +James +Juan +Luis +Nicholas +Evan +Carlos +Lucas +Damian +Justin +Liam +Caleb +Jason +Tyler +Alejandro +John +Miguel +Jordan +Luke +Gavin +Jack +Giovanni +Robert +Jackson +Bryan +Xavier +Santiago +Ivan +Jeremiah +Ian +Adam +Nathaniel +Alex +Dominic +Landon +Eduardo +Josiah +Leonardo +Victor +Brian +Connor +Jesse +Oscar +Eric +Jorge +Austin +Oliver +Zachary +Andres +Wyatt +Jaden +Eli +Owen +Francisco +Thomas +Henry +Elias +Fernando +Vincent +Alan +Steven +Emmanuel +Cesar +Manuel +Ricardo +Levi +Aidan +Antonio +Charles +Ayden +Omar +Brayden +Richard +Nicolas +Max +Josue +Jake +Erick +Joel +Emiliano +Edgar +Abraham +Javier +Mateo +Tristan +Cameron +Hunter +Sean +Chase +Ryder +Cristian +Edward +Sergio +Kyle +Jeremy +Axel +Carter +Mario +Roman +Blake +Hector +Andy +Derek +Brody +Kai +Cole +Alexis +Marcus +Devin +Micah +Rafael +Ruben +Roberto +Ezekiel +Israel +Raymond +Riley +Timothy +Parker +Johnny +Nolan +Edwin +Damien +Fabian +Joaquin +Erik +Miles +Armando +Marco +Mark +Martin +Jonah +Emilio +Colton +Cooper +Leo +Andre +Maxwell +Pedro +Abel +Carson +George +Travis +Adan +Kaden +Kenneth +Cody +Gerardo +Patrick +Colin +Preston +Bryce +Paul +Caden +Asher +Hudson +Seth +Hayden +Raul +Kaleb +Jaxon +Emanuel +Jared +Ismael +Angelo +Marcos +Donovan +Kayden +Esteban +Julio +Maximus +Enrique +Jude +Jaime +Jaiden +Pablo +Brady +Ezra +Salvador +Saul +Ashton +Peter +Trevor +Arturo +Danny +Gustavo +Shane +Bradley +Cash +Moises +Grant +Frank +Rodrigo +Charlie +Alberto +Kingston +Jace +Jeffrey +Cruz +Ernesto +Conner +Maximiliano +Drake +Johnathan +Lorenzo +Dean +Gael +Grayson +Collin +Luca +Alfredo +Hugo +Wesley +Matteo +Dominick +Felix +Maddox +Dante +Troy +Aden +Allen +Issac +Jimmy +Gage +Malachi +Lincoln +Leonel +Lukas +Romeo +Sawyer +Theodore +Mathew +Bryson +Arthur +Bentley +Stephen +Noe +Ramon +Tanner +Isaias +Ulises +Calvin +Jakob +Brayan +Jaxson +Uriel +Cayden +Mauricio +Silas +Shawn +Randy +Albert +Braden +Elliot +Izaiah +Rylan +Simon +Jasper +Alonso +Brendan +Enzo +Declan +Peyton +Skyler +Spencer +Zane +Kaiden +Noel +Everett +Yahir +Darren +Jayson +Judah +Tyson +Zion +Finn +Jaylen +Myles +Aldo +Eddie +Giovani +Guillermo +Phillip +Nehemiah +Amir +Desmond +Jameson +Jerry +Alvin +Leon +Orlando +Quinn +Bryant +Garrett +Giovanny +Larry +Weston +Johan +Chris +Adriel +Drew +Gregory +Xander +Elliott +Jay +Julius +Louis +Dustin +Marvin +Emmett +Harrison +Jax +Maximilian +Cristopher +Dillon +Tony +Alfonso +Griffin +Milo +Joey +Ricky +Rudy +Cyrus +Easton +Nikolas +Phoenix +Ezequiel +Joe +Devon +Jairo +Rene +Rowan +Rohan +Ty +Avery +Jessie +Ronald +Alonzo +Bennett +Jett +Rocco +Allan +Vicente +Chance +Felipe +Rogelio +Santino +Anderson +Landen +Ali +Gilbert +Orion +Reid +Taylor +Clayton +Walter +Greyson +Iker +Osvaldo +Rodolfo +Russell +Scott +Philip +Trent +Efrain +Moses +Alec +Dane +Kobe +Lawrence +Nickolas +Ramiro +Zackary +Aarav +Alvaro +Darius +Derrick +Arjun +Dallas +Zander +Roger +Trenton +Sam +Steve +Beckett +Tucker +Byron +Cade +Colby +Keith +King +Malik +Nico +Xavi +Frankie +Julien +Kyler +Valentino +Agustin +Freddy +Alessandro +Branden +Dexter +River +Ronan +August +Caiden +Corey +Misael +Tomas +Giancarlo +Damon +Kenny +Valentin +Casey +Kameron +Kian +Matias +Paxton +Roy +Xzavier +Zayden +Atticus +Braxton +Brenden +Bruno +Emerson +Gilberto +Nathanael +Gianni +Jovanni +Luciano +Maximo +Niko +Rigoberto +Aron +Ignacio +Marc +Tommy +Corbin +Dario +Keegan +Kellan +Leland +Malakai +Reed +Rhys +Sonny +Aaden +Bruce +Dennis +Donald +Franklin +Graham +Gunner +Humberto +Jaycob +Jonas +Maverick +Octavio +Tristen +Ace +Lionel +Titus +Tobias +Abram +Bobby +Camden +Jayce +Jovany +Brennan +Jalen +London +Marlon +Ray +Rolando +Estevan +Holden +Kieran +Pierce +Quentin +Isai +Jovani +Kristian +Neil +Ari +Cristiano +Douglas +Jefferson +Kellen +Muhammad +Urijah +Ariel +Beau +Brett +Colt +Leandro +Yael +Yandel +Amari +Dorian +Miguelangel +Nelson +Nestor +Ronnie +Shaun +Dilan +Dominik +Eden +German +Kristopher +Rey +Royce +Ryker +Zachariah +Aryan +Bodhi +Curtis +Franco +Ibrahim +Irvin +Johann +Rex +Ronaldo +Solomon +Ulysses +Aditya +Davis +Jair +Raphael +Theo +Adolfo +Davian +Derick +Geovanni +Junior +Justice +Luka +Malcolm +Mike +Morgan +Reece +Yusuf +Conor +Darian +Kane +Trey +Alfred +Braeden +Braydon +Ishaan +Jovanny +Kade +Louie +Marcel +Marcelo +Warren +Armaan +Arman +Keven +Leonard +Lucca +Marshall +Mitchell +Raiden +Ronin +Ryland +Uriah +Abdiel +Armani +Aydan +Melvin +Nikolai +Taj +Adrien +Archer +Dakota +Isaak +Lance +Madden +Maurice +Maximillian +Cohen +Davin +Gonzalo +Grady +Lane +Lucian +Santos +Alijah +Benicio +Bernardo +Darwin +Elian +Gary +Makai +Mathias +Yair +Frederick +Pranav +Prince +Skylar +Stanley +Talon +Tate +Terry +Waylon +Alexandro +Braulio +Brodie +Brooks +Camilo +Deandre +Jamison +Jonathon +Kelvin +Quincy +Barrett +Brock +Cristofer +Dalton +Davion +Deven +Elvis +Fidel +Finnegan +Harry +Kash +Rio +Winston +Zain +Ayaan +Brycen +Carlo +Chad +Cory +Cristobal +Francis +Gunnar +Juancarlos +Kaeden +Maxim +Nathen +Terrance +Tiger +Wilson +Aarush +Alexzander +Arnav +Billy +Gideon +Jadon +Markus +Mohamed +Odin +Payton +Remy +Siddharth +Zaid +Aydin +Braylon +Dhruv +Geovanny +Jaeden +Keanu +Kenji +Kody +Krish +Toby +Ahmad +Anish +Carl +Deegan +Jaydon +Jon +Marley +Vladimir +Dangelo +Dawson +Eliseo +Eugene +Finley +Irving +Isiah +Jedidiah +Kareem +Kingsley +Matthias +Mohammed +Thiago +Vince +Zechariah +Augustine +Bodie +Brent +Chace +Harold +Jeramiah +Jorden +Karson +Keaton +Kendrick +Mariano +Mohammad +Nikko +Oswaldo +Sage +Sterling +Willie +Adonis +Ben +Braiden +Conrad +Efren +Elmer +Knox +Leonidas +Nixon +Raymundo +Reese +Said +Carmelo +Clark +Dashiell +Ean +Gauge +Harley +Izaac +Izayah +Jamie +Jaylin +Jerimiah +Lewis +Quinton +Van +Zack +Amare +Arlo +Cassius +Dax +Deangelo +Devan +Emery +Gerald +Isac +Jacoby +Jagger +Jean +Neel +Nick +Rocky +Triston +Vihaan +Wade +Walker +Wayne +Ayush +Cain +Darien +Favian +Jasiah +Joseluis +Josh +Kamari +Karter +Khalil +Kole +Nikhil +Otto +Semaj +Vance +Vincenzo +Abdullah +Ahmed +Arian +Cedric +Dereck +Eliot +Everardo +Giovany +Hank +Jahir +Jamari +Jeffery +Jensen +Jeremias +Jovan +Juanpablo +Killian +Marcello +Memphis +Micheal +Osmar +Presley +Ramses +Rayan +Samson +Sidney +Aidyn +Alden +Brendon +Brennen +Ethen +Isael +Jet +Joziah +Koa +Lennon +Maxx +Rodney +Stephan +Tristin +Will +Zaiden +Antony +Devyn +Duncan +Ellis +Landyn +Legend +Magnus +Messiah +Nash +Porter +Ralph +Tiago +Yousef +Zeus +Alek +Alexandre +Ameer +Andreas +Deshawn +Elisha +Guadalupe +Jamir +Jencarlos +Kason +Lamar +Luc +Milan +Reynaldo +Sahil +Aedan +Arya +Benson +Bently +Boston +Colten +Denzel +Eder +Edson +Enoch +Fletcher +Franky +Gordon +Hernan +Jullian +Keenan +Kenzo +Lenny +Maksim +Mekhi +Milton +Patricio +Rhett +Ryu +Sammy +Soren +Stefan +Sylas +Zavier +Abner +Ajay +Anton +Apollo +Augustus +Cannon +Chandler +Dwayne +Geovany +Gian +Gregorio +Jamal +Jaxen +Kainoa +Kalel +Kasen +Nigel +Omari +Paolo +Princeton +Rayden +Rishi +Santana +Sky +Vaughn +Anders +Ares +Callum +Ceasar +Cullen +Damion +Draven +Eligh +Harvey +Izaak +Jaydan +Jermaine +Jeshua +Keagan +Lino +Luisangel +Mauro +Nasir +Nathanial +Renato +Seamus +Tatum +Terrell +Yeshua +Abhinav +Andrei +Anson +Asa +Athan +Avi +Benito +Braylen +Broderick +Cael +Callen +Cason +Demetrius +Eddy +Elan +Ernest +Forrest +Hezekiah +Howard +Ishan +Jesiah +Joan +Jordyn +Kymani +Mayson +Nery +Om +Paulo +Pierre +Reginald +Rory +Sami +Sanjay +Tayden +Terrence +Zachery +Ansel +Benny +Dan +Darnell +Dillan +Dimitri +Dominique +Duke +Gavyn +Genaro +Hamza +Hugh +Jessy +Jonatan +Justus +Kayleb +Kylan +Leif +Linus +Lyric +Marquis +Massimo +Mustafa +Randall +Rick +Roland +Ryden +Varun +Andrey +Atreyu +Ayan +Baron +Bode +Boden +Channing +Dale +Darrell +Darryl +Dayton +Gerson +Gianluca +Gino +Haiden +Harper +Hendrix +Jadyn +Jericho +Jordy +Lee +Lennox +Lev +Lucien +Lucio +Maison +Marcelino +Marko +Masen +Matix +Narek +Obed +Osiel +Sebastien +Talan +Trace +Tyree +Vivaan +Yovani +Zackery +Zaire +Addison +Ansh +Bronson +Cian +Clay +Craig +Deon +Edison +Erwin +Freddie +Heath +Heriberto +Jase +Jaydin +Jerome +Kael +Kalani +Kennedy +Koen +Kolby +Major +Malaki +Mikael +Nikita +Otis +Sunny +Tobin +Ulisses +Vidal +Ashwin +Aven +Bayron +Bishop +Blaise +Darin +Deacon +Donte +Eleazar +Fermin +Finnian +Fredy +Geovani +Hassan +Herbert +Ira +Jacobo +Jael +Jeff +Karim +Kent +Keoni +Lamont +Lisandro +Norman +Ozzy +Ramsey +Rashad +Robin +Rowen +Sincere +Tadeo +Westin +Yash +Yonathan +Zayne +Zephyr +Adair +Aksel +Alekzander +Alton +Anay +Antoine +Atlas +Azael +Damari +Ewan +Gannon +Gerard +Glenn +Heber +Horacio +Immanuel +Jaidyn +Jaysen +Johnpaul +Juandiego +Kamden +Kavin +Kekoa +Kiran +Kolton +Korbin +Leobardo +Mikel +Oskar +Quintin +Royal +Rylee +Samir +Shaan +Shaurya +Shayan +Shiloh +Sullivan +Todd +Tom +Veer +Viktor +Yerik +Yosef +Zuriel +Bailey +Camren +Dariel +Darion +Davon +Demian +Dion +Eliel +Emmitt +Isidro +Iziah +Jabari +Jaron +Jaylon +Jeancarlo +Jin +Jiovanni +Johnathon +Josemanuel +Josemaria +Kain +Kale +Kanoa +Kelly +Kurt +Kyan +Leopoldo +Luiz +Maddix +Maddux +Manny +Natanael +Neo +Noble +Ori +Parsa +Reagan +Reuben +Simeon +Sione +Soham +Truman +Uziel +Westley +Wiley +Wilmer +Zeke +Zen +Aaryan +Abhay +Abran +Achilles +Akshay +Alexavier +Aram +Asael +Aston +Azariah +Beckham +Bo +Bowie +Brad +Cairo +Case +Damarion +Daren +Darey +Daxton +Deion +Edgardo +Ely +Elyas +Ever +Fisher +Gadiel +Harlan +Jadiel +Jai +Jancarlos +Kaleo +Karl +Keon +Konner +Kurtis +Layton +Leroy +Lex +Lucius +Menachem +Merrick +Miller +Quinten +Reilly +Remington +Renzo +Ronny +Sahib +Sasha +Shayne +Skye +Stone +Syrus +Teagan +Tejas +Tim +Trystan +Vadhir +West +Yaseen +Yuvraj +Aayden +Aayush +Anakin +Anirudh +Aries +Armen +Arvin +Blaine +Braedon +Brando +Branson +Caesar +Callan +Charly +Clyde +Coen +Constantine +Cortez +Curren +Dash +Denis +Dyllan +Elijiah +Elyjah +Emir +Ernie +Eros +Esai +Filip +Ford +Gavino +Gil +Haven +Jad +Jamar +Jancarlo +Jaren +Javen +Jayvion +Jim +Josemiguel +Kabir +Kadyn +Kaito +Kalvin +Karthik +Kayson +Ken +Khalid +Laith +Maxton +Mikah +Musa +Noa +Rayyan +Reef +Reyes +Rhyan +Rian +Rome +Rylen +Sameer +Shea +Stuart +Tigran +Titan +Tyrone +Vikram +Wolfgang +Yonatan +Zayd +Zephaniah +Adin +Adler +Amos +Aric +Austen +Beck +Bernard +Bowen +Bradyn +Brice +Brixton +Bronx +Camron +Corban +Cristo +Crosby +Dallin +Danilo +Dave +Demarco +Dereon +Derik +Don +Donavan +Dwight +Edan +Eithan +Eliezer +Evin +Ezrah +Faris +Gaven +Giuseppe +Guy +Hans +Hayes +Isacc +Ishmael +Izak +Jafet +Jaylan +Josias +Kadin +Karlo +Konnor +Lachlan +Landin +Lazaro +Lazarus +Leighton +Lloyd +Lucky +Lyle +Mattias +Mikey +Neftali +Nevin +Noam +Ocean +Osbaldo +Pete +Rishab +Salomon +Sheldon +Turner +Viggo +Yoel +Zahir +Zev +Abhiram +Ajani +Akhil +Amador +Angad +Anjel +Arav +Aren +Artem +Atharv +Athen +Benedict +Bill +Bridger +Carsen +Charley +Christofer +Clarence +Clinton +Cuauhtemoc +Derin +Destin +Devlin +Dresden +Edmond +Eian +Ekam +Elvin +Esau +Eshan +Federico +Fredrick +Gaige +Genesis +Gibson +Hadi +Hiram +Isreal +Izrael +Jaedyn +Jakub +Javon +Jimmie +Johnnie +Jordon +Justyn +Keshav +Marquise +Matan +Mihir +Monte +Myron +Nate +Norberto +Raghav +Rayhan +Ren +Reyli +Roderick +Rudra +Salvatore +Shivam +Shreyas +Tarun +Thatcher +Torin +Tripp +Tristian +Yadiel +Yahya +Yohan +Zakaria +Aaiden +Adian +Adiel +Adriano +Alain +Alen +Alexsander +Aman +Arion +Arley +Arnold +Arron +Artur +Arush +Ash +Azriel +Baltazar +Barron +Benaiah +Brenton +Brogan +Brysen +Caelan +Camryn +Carmine +Chasen +Cisco +Cosmo +Crew +Darby +Daven +Deagan +Demarion +Dezmond +Eamon +Edwyn +Eitan +Elder +Emmet +Enoc +Ervin +Exavier +Fausto +Flynn +Forest +Gamaliel +Glen +Graysen +Harlem +Hayk +Haziel +Ibraheem +Ilan +Izik +Jaedon +Jaidon +Jasen +Jasiel +Jaxton +Jaykob +Jayven +Jenson +Jeremih +Jeriah +Jerson +Jessejames +Johannes +Joseangel +Joshuah +Juanjose +Kahlil +Kamran +Kamren +Kamron +Kendall +Kenton +Kyden +Kyron +Lars +Leopold +Lester +Linkin +Lizandro +Maddex +Marcell +Marcellus +Marcoantonio +Marques +Mikhail +Nahum +Niccolo +Nicolai +Nikola +Nolen +Oren +Osman +Pavel +Rami +Rayshawn +Richie +Rider +Rishabh +Roan +Rony +Shamar +Shant +Shia +Shrey +Slade +Teo +Trevon +Yamil +Ahmir +Aizen +Aldair +Aleksander +Aleksandr +Amar +Ambrose +Amogh +Arden +Aris +Arjen +Augustin +Avian +Benton +Cal +Camdyn +Carsten +Celso +Chaz +Claudio +Coleman +Darsh +Daylan +Daylen +Dewayne +Domenic +Donny +Dontae +Dutch +Eliah +Eliazar +Ender +Ethaniel +Fabrizio +Fox +Fred +Geoffrey +Giovannie +Graydon +Henrry +Hilario +Issak +Izael +Jade +Jakari +Jan +Jarrett +Jaxsen +Jaydenn +Jayro +Jermiah +Jeronimo +Jessiah +Johny +Jonnathan +Jonny +Jordin +Kaydin +Keshawn +Keyon +Kolt +Kolten +Kye +Kyree +Lian +Maynor +Micaiah +Muhammed +Murphy +Omer +Oziel +Parth +Rajveer +Sol +Tavin +Tevin +Tye +Tyrell +Ubaldo +Uzziah +Williams +Yehuda +Yosgart +Yousif +Youssef +Yusef +Zac +Zakary +Abdulrahman +Adalberto +Aj +Ameen +Andree +Antwan +Arath +Arjan +Arnulfo +Asante +Aurelio +Aziel +Barry +Bilal +Brooklyn +Broxton +Caeden +Cale +Canyon +Cassidy +Clemente +Clifton +Clint +Coleton +Colson +Danniel +Daron +Darrin +Daryan +Demarcus +Deondre +Dev +Didier +Diesel +Domingo +Domonic +Donnell +Edmund +Eliam +Elio +Emari +Erin +Etienne +Eugenio +Gabino +Gavriel +Gio +Gurnoor +Hakop +Hasan +Hasani +Henri +Herman +Houston +Hussain +Idris +Issa +Jaasiel +Jacinto +Jackie +Jacky +Jahlil +Jarett +Javion +Jayceon +Jeancarlos +Jelani +Jethro +Jhonatan +Jody +Johnson +Josaiah +Josef +Josiyah +Juaquin +Kaine +Kalen +Kasey +Kasper +Kasra +Keane +Koji +Kris +Kristofer +Kruz +Langston +Layne +Mac +Maceo +Mack +Mahmoud +Makaio +Makhi +Makoa +Malakhi +Malek +Marek +Marius +Markell +Marquez +Michaelangelo +Mickey +Naman +Naveen +Naythan +Perry +Phineas +Quinlan +Rahul +Ranveer +Raudel +Raylan +Reily +Reymundo +Rickey +Rigo +Rishaan +Ritchie +Romel +Ron +Roshan +Ross +Saad +Sachin +Sahir +Sammuel +Shaya +Stefano +Stellan +Syed +Teddy +Tevita +Wes +Wilder +Yovanni +Yovany +Zahid +Zakai +Zyaire +Abiel +Abisai +Adarsh +Adonai +Adonay +Akash +Akira +Aleks +Alistair +Amadeus +Ammar +Aneesh +Angelgabriel +Archie +Armand +Armin +Arsen +Atharva +Atom +Austyn +Aviv +Brandyn +Brennon +Brighton +Broden +Caedmon +Caius +Campbell +Canon +Carlton +Casen +Ciaran +Clive +Coby +Colter +Cornelius +Criss +Daksh +Davit +Dempsey +Desean +Dhruva +Donavon +Dontay +Eason +Edmundo +Edrick +Eldon +Eliyahu +Elizandro +Emil +Esdras +Eshaan +Ezekial +Fabricio +Finnigan +Flavio +Gibran +Greysen +Gus +Haidyn +Henrik +Honor +Hubert +Ilya +Isahi +Isayah +Jaciel +Jacques +Jaelen +Jahaziel +Jaheim +Jairus +Jaxx +Jaydyn +Jaylyn +Jaymes +Jayvon +Jaziel +Jenner +Jeovanny +Jeron +Jireh +Josmar +Juanmanuel +Juelz +Juvenal +Kamryn +Kavi +Kayne +Kaysen +Keion +Kenta +Khai +Khaled +Khang +Kishan +Knowledge +Koby +Konrad +Kylen +Kyson +Lathan +Leander +Lenin +Leyton +Marcanthony +Mateus +Matheo +Mathieu +Mathis +Maxemiliano +Maximilliano +Maxson +Minh +Montgomery +Mykel +Nazir +Neal +Neri +Nicco +Nikolay +Nile +Obadiah +Osiris +Radley +Rafe +Raffi +Raymon +Rayvon +Raziel +Rhyder +Robbie +Robby +Ronen +Ryen +Ryley +Sabastian +Salman +Shalom +Shashank +Shepard +Shepherd +Slater +Sohum +Sven +Tahj +Tai +Taiga +Taran +Ted +Terence +Thierry +Tiernan +Tyce +Tyrese +Uriyah +Valente +Vedant +Vernon +Viraj +Virgil +Vishnu +Wallace +Wilber +Willy +Xaiden +Yazan +Yousuf +Zakariya +Zaki +Zaylen +Zedekiah +Aamir +Aarnav +Aarya +Abimael +Acelin +Advaith +Advay +Aeden +Akiva +Akshaj +Alakai +Alessio +Alexi +Alston +Amani +Amaru +Ammon +Andersen +Andi +Andranik +Angello +Antwon +Aramis +Aria +Arie +Arin +Avan +Avin +Axl +Axton +Banyan +Benyamin +Bernabe +Blaze +Boris +Bosco +Bradly +Brandt +Braven +Brecken +Bret +Brison +Canaan +Cashton +Castiel +Cavan +Cayson +Chester +Chevy +Clifford +Constantino +Corben +Cornelio +Damarcus +Damyan +Daveon +Davey +Daymian +Deanthony +Dejon +Dejuan +Demond +Denny +Deonte +Deshaun +Desi +Devonte +Dhani +Diamond +Dillinger +Dino +Donavin +Duane +Emory +Ephraim +Ericson +Farhan +Faustino +Florentino +Froylan +Garret +Garrick +Garrison +Gaurav +Giancarlos +Giorgio +Gray +Grigor +Gurshan +Hamilton +Haris +Harjot +Harout +Harris +Haydn +Hollis +Hovik +Imran +Isa +Isaia +Ismail +Iven +Izek +Jacen +Jacobi +Jadrian +Jaelyn +Jahari +Jaison +Jamil +Jarell +Jareth +Jarred +Jarrod +Jaysean +Jayshawn +Jaziah +Jc +Jeanpierre +Jedediah +Jeffren +Jencarlo +Jeremie +Jessi +Job +Joesiah +Kallen +Kamar +Kamarion +Kannon +Karam +Karan +Karsten +Kashton +Keelan +Keller +Kendry +Kiefer +Kiernan +Kirin +Kirk +Kiyan +Knight +Kohen +Korey +Kory +Kristoffer +Laron +Leeland +Linden +Lochlan +Logen +Luqman +Luther +Lyndon +Macario +Madix +Malikai +Manases +Manolo +Marcial +Marlo +Marshawn +Maximino +Maxon +Nadav +Nam +Nevan +Nicolo +Nikkolas +Oden +Omarion +Oryan +Ozzie +Quest +Rajon +Ramone +Rico +Rishik +Rohin +Rommel +Rosalio +Rowdy +Rusty +Saeed +Saharsh +Saif +Samar +Samvel +Sandro +Savion +Shay +Shlok +Siddhant +Silverio +Sir +Sonnie +Talen +Tanish +Tayson +Teague +Tegan +Thaddeus +Thompson +Thor +Tosh +Travon +Trayvon +Trever +Trinidad +Tristyn +Tytus +Uri +Uzziel +Vincente +Vinny +Vito +Wendell +Wilbert +Wilfredo +Willem +Wolfe +Xavior +Yassin +Yurem +Zamari +Zamir +Aadi +Aakash +Aaren +Aayan +Abelardo +Abrahan +Abrahim +Aidin +Aleczander +Alister +Amit +Andrik +Angelino +Angus +Anibal +Anthonie +Antoni +Antwone +Anwar +Aquiles +Arda +Arik +Ariston +Arnoldo +Art +Ashar +Ashtyn +Aubrey +Auden +Aviel +Balian +Bear +Benigno +Bernardino +Bodi +Booker +Brayton +Brendyn +Briggs +Brodee +Brodey +Calder +Cedrick +Cezar +Chayce +Christiano +Cloud +Cord +Cordae +Cordell +Cormac +Cris +Cristhian +Curran +Cy +Cylus +Cypress +Dagoberto +Dakarai +Dakari +Danthony +Darrien +Daryl +Daylin +Dayne +Deen +Delano +Demetri +Demir +Demitri +Denim +Derion +Deron +Devesh +Dez +Dezi +Dmitry +Donnie +Earl +Edvin +Edwardo +Eliud +Elton +Emad +Esa +Evander +Everest +Evyn +Fabio +Feliciano +Finneas +Finnley +Foster +Frederic +Galen +Gautam +Gavan +Geronimo +Gianfranco +Gildardo +Greg +Gurshaan +Gurtaj +Haden +Hamzah +Harman +Harshaan +Haruki +Harut +Harutyun +Hiro +Hussein +Imanol +Imari +Irwin +Iseah +Ithan +Izac +Izel +Izmael +Jahmir +Jahsiah +Jaidan +Jakai +Jaleel +Jamarcus +Jarren +Javan +Jawad +Jayan +Jayse +Jaythan +Jayvyn +Jediah +Jerald +Jeremyah +Jerrod +Jestin +Jezreel +Jhonny +Jian +Joao +Joell +Joeseph +Joesph +Josyah +Juanantonio +Jules +Jun +Kaedyn +Kaelan +Kaidyn +Kailash +Kainen +Kali +Kalyan +Kanan +Kanishk +Karlos +Keithan +Kemari +Kenan +Kenshin +Kenyon +Kevon +Khaleb +Khristian +Kobi +Koda +Kotaro +Krishna +Kyren +Lakai +Lam +Lawson +Leslie +Liem +Loki +Lonnie +Loren +Mahdi +Mahir +Mannix +Manraj +Marciano +Mattox +Maurisio +Maxximus +Mckay +Mick +Mohamad +Morris +Moshe +Mylo +Naim +Naveed +Navin +Neeko +Nicklaus +Niklas +Nirvaan +Nolyn +Noor +Olivier +Omid +Orrin +Palmer +Paris +Paulino +Pietro +Rashid +Rayaan +Regan +Reggie +Remi +Reyan +Ridge +Rishan +Roen +Rogan +Ronal +Ronit +Rooney +Roscoe +Rudolph +Ruhaan +Ruslan +Russel +Rylie +Ryo +Sai +Sajan +Saketh +Salem +Samarth +Saxon +Schuyler +Selvin +Serafin +Shannon +Shaunak +Shayden +Shiva +Shiven +Shubham +Siaosi +Sid +Silvestre +Srikar +Stephon +Storm +Strummer +Stryker +Sutton +Sydney +Sylar +Sylus +Taha +Tariq +Taven +Teegan +Tennyson +Tenzin +Thai +Tiberius +Timofey +Tlaloc +Tre +Tremaine +Trevin +Treyvon +Tru +TRUE +Tylor +Tyshawn +Ulyses +Usman +Vaibhav +Valentine +Vann +Ved +Vinh +Vitali +Vladislav +Vyom +Xabi +Yared +Yazid +Yisroel +Yobani +Yovanny +Yuvan +Zacharia +Zackariah +Zade +Zak +Zarek +Zayan +Zealand +Zeth +Zyan +Zyon +Abdias +Abdul +Abdulaziz +Abdullahi +Abhimanyu +Adien +Adyan +Ahaan +Aisea +Akshath +Al +Aldrin +Alexei +Alfonzo +Allister +Alon +Amaree +Amaury +Amen +Amiel +Amilcar +Amin +Anant +Ander +Andrez +Anguel +Anshul +Aran +Arash +Areg +Arjuna +Armondo +Arsh +Asahel +Atzel +Avion +Axell +Aydenn +Ayman +Ayub +Azaan +Baruch +Bastian +Baxter +Beckam +Benjamen +Bladimir +Blas +Bradlee +Braedyn +Brandin +Braxten +Brigham +Briley +Britton +Bryon +Cage +Cai +Caio +Calen +Carsyn +Cashius +Casimir +Cecil +Cedar +Chaise +Chayse +Chazz +Cipriano +Ciro +Clement +Cliff +Coltin +Conan +Corde +Cru +Cruise +Daelen +Daemon +Dalen +Daquan +Darek +Darrian +Darrius +Dashawn +Dastan +Davi +Davien +Davyn +Deklan +Demario +Demetrio +Deric +Deshon +Devaughn +Diangelo +Dior +Dmitri +Dmitriy +Dodge +Donta +Dov +Drayden +Duran +Dyland +Dylen +Dylin +Eben +Edin +Edsel +Eladio +Elie +Elija +Elkin +Emin +Eren +Erickson +Ethanjacob +Ethanjames +Ethanjohn +Ethyn +Eyan +Eyden +Eytan +Eziah +Ezio +Farid +Fenix +Filiberto +Fischer +Floyd +Francesco +Franko +Fransisco +Gabrial +Garen +Gareth +Germain +Gevorg +Giovonni +Gor +Grayden +Grey +Gryphon +Gurveer +Hakeem +Hakob +Halen +Hanson +Homer +Iann +Idan +Ilias +Ilyas +Isak +Iverson +Jacari +Jadan +Jae +Jaeson +Jaiveer +Jakobe +Jamarion +Jameer +Jamel +Jamin +Jaquan +Jashua +Jasiri +Jathan +Jayon +Jeanpaul +Jeramyah +Jeren +Jess +Jessey +Jeziah +Jhovany +Jiovani +Joab +Jocsan +Johnatan +Jona +Jonavan +Joseguadalupe +Josejulian +Jossue +Jotham +Juanluis +Juanmiguel +Jullien +Julyan +Kaedon +Kaidan +Kailer +Kaisei +Kaiser +Kalin +Kalob +Kalub +Kamani +Karmelo +Karol +Karsen +Kavan +Kawika +Kaylen +Keano +Kento +Keny +Kerry +Keston +Kevyn +Kiaan +Kidus +Kieren +Kion +Kirby +Konstantinos +Korben +Koston +Kylar +Kylin +Ladarius +Lamonte +Landan +Laurence +Lavell +Lavon +Leandre +Lebron +Lelan +Levin +Levon +Lior +Lucciano +Lux +Lyam +Lynden +Lysander +Macklin +Madison +Malcom +Malique +Margarito +Markos +Martell +Marwan +Masyn +Matisse +Matt +Matteus +Matthieu +Mattix +Mavrik +Maxime +Maximillion +Michelangelo +Murad +Mykah +Napoleon +Narciso +Natan +Navraj +Nazareth +Nehemias +Neymar +Nicodemus +Niels +Nihal +Nilmar +Nishanth +Nizar +Ojas +Olin +Ollie +Omri +Orson +Oz +Paden +Pharaoh +Pranay +Rahman +Rai +Raihan +Rain +Randal +Rashawn +Ravi +Rees +Regino +Reign +Reyansh +Reymond +Rion +Rishit +Rithvik +Rivers +Robel +Robinson +Roc +Rockwell +Rodrick +Roel +Rohit +Rojelio +Roosevelt +Rosendo +Rui +Ruvim +Saige +Saleh +Samay +Sander +Sankalp +Sartaj +Senai +Seven +Shai +Shilo +Siddhanth +Siddhartha +Sire +Sloan +Smith +Stacy +Stetson +Stevan +Strider +Sultan +Syler +Takeo +Tallon +Tamir +Tan +Tao +Taras +Tarek +Tavian +Tavion +Tavon +Tej +Theron +Thien +Tonatiuh +Trajan +Trenten +Trysten +Tydus +Ulices +Vadim +Vihan +Vijay +Waylan +Westyn +Wolf +Wylie +Xaiver +Yaakov +Yasir +Yordi +Yosgar +Yosuf +Yug +Zach +Zacharie +Zacheriah +Zaven +Zavian +Zayn +Zekiel +Jacob +Daniel +Jayden +Anthony +Matthew +Alexander +Ethan +David +Andrew +Nathan +Noah +Angel +Michael +Julian +Joshua +Aiden +Isaac +Jonathan +Mason +Adrian +Christopher +Joseph +Jose +Benjamin +Gabriel +Aaron +Dylan +Elijah +Ryan +Christian +William +Brandon +Sebastian +Logan +Isaiah +Samuel +James +Kevin +Liam +Diego +Jesus +Luis +Juan +Lucas +Nicholas +Evan +Carlos +Jordan +Jackson +Jason +Justin +Damian +Luke +Ivan +John +Caleb +Dominic +Santiago +Miguel +Tyler +Adam +Jack +Xavier +Jeremiah +Robert +Gavin +Giovanni +Ian +Alejandro +Nathaniel +Bryan +Eli +Wyatt +Ayden +Leonardo +Oliver +Josiah +Henry +Zachary +Austin +Victor +Axel +Mateo +Landon +Vincent +Connor +Andres +Emmanuel +Alex +Eduardo +Owen +Eric +Jesse +Elias +Jorge +Oscar +Thomas +Brayden +Ryder +Max +Alan +Antonio +Steven +Aidan +Jaden +Fernando +Levi +Cameron +Francisco +Blake +Charles +Hunter +Brian +Joel +Richard +Cesar +Nicolas +Carter +Tristan +Abraham +Javier +Chase +Roman +Cristian +Manuel +Ricardo +Omar +Emiliano +Jake +Kyle +Edgar +Sean +Brody +Erick +Edward +Miles +Derek +Micah +Alexis +Mario +Israel +Maximiliano +Sergio +Parker +Hudson +Nolan +Hector +Josue +Jeremy +Ezekiel +Cole +Johnny +Timothy +Andy +Rafael +Devin +Leo +Marcus +Kai +Edwin +Colton +Jonah +Mark +George +Fabian +Damien +Roberto +Jaxon +Martin +Ruben +Emilio +Raymond +Kayden +Cooper +Maxwell +Pedro +Abel +Asher +Adan +Kaleb +Marco +Joaquin +Colin +Hayden +Gerardo +Patrick +Kaden +Paul +Emanuel +Riley +Armando +Esteban +Bradley +Erik +Kenneth +Cody +Andre +Caden +Ashton +Ezra +Cruz +Bryce +Carson +Preston +Ismael +Peter +Jace +Jude +Maximus +Raul +Angelo +Jared +Grayson +Jaiden +Marcos +Bentley +Jaime +Wesley +Donovan +Pablo +Jaxson +Enrique +Travis +Julio +Salvador +Seth +Felix +Shane +Luca +Charlie +Declan +Moises +Rylan +Saul +Brady +Lorenzo +Dominick +Iker +Johnathan +Cash +Kingston +Arturo +Trevor +Troy +Alberto +Theodore +Dean +Grant +Lincoln +Gael +Jameson +Rodrigo +Uriel +Bryson +Jeffrey +Malachi +Silas +Maddox +Alfredo +Frank +Gustavo +Ernesto +Tanner +Cayden +Gage +Matteo +Allen +Lukas +Simon +Danny +Hugo +Albert +Calvin +Arthur +Dante +Issac +Romeo +Sawyer +Drake +Ramon +Kaiden +Leonel +Enzo +Noel +Izaiah +Mathew +Easton +Giovani +Yahir +Milo +Chris +Mauricio +Griffin +Elliot +Jaylen +Jimmy +Zane +Greyson +Brayan +Everett +Aden +Skyler +Darren +Jayson +Judah +Xander +Jax +Randy +Braden +Stephen +Collin +Jasper +Maximilian +Conner +Harrison +Zion +Guillermo +Spencer +Emmett +Isaias +Adriel +Eddie +Garrett +Joey +Shawn +Gregory +Jakob +Weston +Noe +Orlando +Rene +Drew +Julius +Ezequiel +Johan +Landen +Anderson +Finn +Phoenix +Vicente +Jay +Chance +Derrick +Rowan +Alonzo +Amir +Avery +Cyrus +Bennett +Peyton +Phillip +Tony +Ulises +Aldo +Elliott +Arjun +Louis +Quinn +Dillon +Jerry +Moses +Desmond +Dustin +Giovanny +Nico +Brendan +Bryant +Marvin +Matias +Alonso +Jayce +Paxton +Ali +Jett +Orion +Russell +Caiden +Gianni +Leon +Myles +Alessandro +Alvaro +Dexter +Holden +Alfonso +Osvaldo +Tyson +Kyler +Nehemiah +Rocco +Rudy +Scott +Alec +Cristopher +Maverick +Aarav +Joe +Nikolas +Taylor +Zander +Atticus +Steve +Bruce +Felipe +Dominik +Rohan +Ronald +Walter +Frankie +Beau +Camden +Nickolas +Trent +Corbin +Titus +Xavi +River +Rogelio +Ronan +Ryker +Allan +Kian +Ricky +August +Devon +Julien +Alvin +Jairo +Lawrence +Kameron +Keith +Niko +Trenton +Valentino +Ace +Clayton +Kieran +Larry +Amari +Byron +Leland +Uriah +Damon +Emerson +Gilbert +Kellen +Zayden +Ari +Colby +Graham +Ignacio +Kellan +Marc +Marlon +Bodhi +Giancarlo +King +Misael +Roy +Dennis +Rhys +Rodolfo +Tucker +Ty +Dane +Jonas +Reid +Sam +Beckett +Darius +Efrain +Gilberto +Keegan +Rey +Sonny +Lionel +Philip +Ramiro +Roger +Tomas +Agustin +Royce +Cade +Dario +Dorian +Ibrahim +Reed +Braxton +Brennan +Casey +Franklin +Santino +Dallas +Jalen +Maximo +Zachariah +Bruno +Humberto +Juanpablo +Malik +Nelson +Rolando +Zackary +Jovani +Kobe +Neil +Raiden +Ray +Tristen +Warren +Aryan +Freddy +Gunner +Ishaan +Nathanael +Prince +Derick +Johann +Kane +Luciano +Marshall +Valentin +Archer +Branden +Cristiano +Finley +Gideon +Irvin +Mike +Xzavier +Ayaan +Braylon +Brenden +Colt +Corey +Deegan +Junior +Mariano +Quentin +Urijah +Adolfo +Armaan +Cain +Carlo +Donald +Jessie +London +Rigoberto +Abram +Ariel +Grady +Kelvin +Leandro +Lucian +Marcelo +Odin +Solomon +Ulysses +Waylon +Adrien +Alijah +Mohammad +Ryland +Brock +Estevan +Jovanny +Kade +Kenny +Malakai +Wilson +Jovanni +Makai +Mitchell +Nixon +Pierce +Armani +Arnav +Aydan +Davian +Kash +Muhammad +Ronin +Aditya +Brycen +Eden +Isai +Justice +Luka +Malcolm +Santos +Tommy +Alexzander +Camilo +Carmelo +Eliseo +Elvis +Jair +Knox +Leonard +Lucca +Morgan +Nikolai +Octavio +Trey +Yael +Aron +Aydin +Conor +Dalton +Franco +Krish +Kristian +Madden +Mathias +Rex +Soren +Stanley +Curtis +Gary +Geovanni +Harley +Isaak +Jadon +Jaycob +Kristopher +Douglas +Finnegan +Kenji +Nathen +Braeden +Cohen +Davis +German +Khalil +Lance +Maurice +Roland +Vihaan +Brett +Eugene +Jasiah +Marcel +Rory +Yair +Benicio +Brodie +Darian +Darwin +Dereck +Efren +Gunnar +Lennon +Porter +Reece +Shaun +Siddharth +Talon +Tobias +Van +Winston +Cannon +Chad +Davin +Dilan +Jovany +Lane +Maxim +Rayan +Yusuf +Zechariah +Aaden +Ahmed +Elisha +Izayah +Keanu +Kendrick +Kolton +Leonidas +Louie +Matthias +Nikhil +Pranav +Raphael +Terry +Walker +Zain +Ahmad +Ben +Billy +Bronson +Cristobal +Fidel +Frederick +Gonzalo +Markus +Melvin +Remy +Rodney +Vince +Bobby +Conrad +Ellis +Hamza +Harry +Jaxen +Jefferson +Jorden +Karson +Kingsley +Mekhi +Miguelangel +Nash +Neymar +Ronnie +Skylar +Alek +Braulio +Braydon +Dashiell +Elian +Karter +Mohamed +Abdiel +Arman +Athan +Barrett +Brooks +Daxton +Elmer +Jagger +Joziah +Kainoa +Maxx +Taj +Zaid +Amare +Asa +Avi +Brent +Dawson +Duncan +Edison +Gerald +Lewis +Nick +Semaj +Tate +Aarush +Alexandro +Alfred +Clark +Cristofer +Davion +Dax +Deandre +Ernest +Ethen +Flynn +Harvey +Jonathon +Kasen +Kason +Landyn +Theo +Toby +Arian +Cassius +Dakota +Hank +Hendrix +Jamison +Johnpaul +Kaeden +Kody +Marcello +Mohammed +Payton +Rhett +Sage +Vance +Yandel +Devan +Jacoby +Jaeden +Joan +Keven +Koa +Osmar +Otto +Ronaldo +Sidney +Stefan +Sylas +Zack +Zaiden +Arlo +Colten +Darien +Eddy +Favian +Harper +Jermaine +Joseluis +Lee +Vladimir +Adonis +Aedan +Alden +Arley +Benito +Bernardo +Bodie +Brennen +Callum +Deven +Gino +Hezekiah +Isiah +Isidro +Jase +Jaydon +Juancarlos +Kareem +Keaton +Lyric +Mayson +Messiah +Nasir +Oswaldo +Rayden +Reynaldo +Sterling +Abdullah +Arya +Braiden +Cedric +Everardo +Geovanny +Hernan +Josh +Jullian +Maksim +Quincy +Ralph +Ramses +Reese +Thiago +Vincenzo +Apollo +Braylen +Cory +Ever +Francis +Ken +Keoni +Legend +Nikko +Rocky +Stephan +Terrence +Trystan +Andreas +Crosby +Dangelo +Dillan +Giovany +Irving +Jamari +Jeffery +Killian +Marley +Reef +Sebastien +Willie +Anton +Ayush +Deangelo +Devyn +Ean +Emery +Fredy +Izaac +Lenny +Nestor +Paulo +Reginald +Remington +Rylee +Samson +Seamus +Veer +Will +Antony +Arnold +Benson +Brendon +Darrell +Demetrius +Dhruv +Duke +Ewan +Heriberto +Ishan +Jai +Jet +Josemanuel +Lamar +Marcelino +Masen +Maximillian +Mikel +Nigel +Pierre +Rio +Robin +Tristin +Yerik +Zeus +Abner +Achilles +Aidyn +Ajay +Anay +Ayan +Benny +Dominique +Gerard +Gerson +Gian +Gianluca +Gordon +Jaydan +Jaydin +Jeancarlo +Jensen +Kamron +Kenzo +Koen +Lennox +Merrick +Omari +Raymundo +Reagan +Rick +Sammy +Shiloh +Sincere +Terrell +Wade +Wayne +Yeshua +Yuvraj +Anish +Antoine +Bailey +Bilal +Caesar +Callen +Cason +Dimitri +Eder +Eliel +Enoch +Forrest +Gauge +Harold +Isac +Jahir +Jedidiah +Kaleo +Kyan +Maxton +Oskar +Presley +Rishi +Said +Stone +Sullivan +Tadeo +Tristian +Yosef +Aaryan +Adair +Andrey +Ansh +Aston +Azariah +Beckham +Bo +Bode +Boden +Clyde +Corban +Deacon +Destin +Gavyn +Imran +Isael +Jael +Jericho +Jerome +Kain +Kamari +Kennedy +Quintin +Reuben +Tyrone +Vaughn +Yovani +Zachery +Zavier +Alexandre +Anders +Anson +Ares +Augustine +Azael +Bowen +Cairo +Callan +Carl +Clinton +Damion +Emil +Ernie +Ford +Guadalupe +Howard +Ishmael +Jacobo +Jamal +Jeshua +Jon +Jovan +Justus +Konnor +Leobardo +Manny +Quinton +Rylen +Sahil +Samir +Thaddeus +Tiago +Vivaan +Yousef +Zackery +Andrei +Austen +Aydenn +Baron +Bently +Channing +Deon +Dwayne +Elan +Ely +Genaro +Glenn +Harlan +Isacc +Johnathon +Kalel +Karim +Kayson +Keenan +Khalid +Korbin +Kymani +Lucien +Maddex +Magnus +Micheal +Mikah +Milan +Milton +Narek +Neel +Princeton +Rico +Shaan +Tatum +Tobin +Truman +Yaseen +Aayden +Abhinav +Aksel +Ameer +Augustus +Brixton +Chace +Dayton +Eligh +Erwin +Greysen +Jamie +Jaythan +Jean +Jencarlos +Jeramiah +Jeremias +Jessy +Kale +Karl +Kasey +Kiran +Kole +Konner +Laith +Maddix +Massimo +Mikael +Nate +Obed +Otis +Rashad +Rayyan +Rowen +Royal +Salvatore +Sami +West +Westin +Westley +Wilmer +Zayd +Zeke +Boston +Camren +Craig +Dash +Deshawn +Eleazar +Eliot +Federico +Fletcher +Gregorio +Hayes +Immanuel +Ismail +Izaak +Jaidyn +Jan +Jordyn +Kamden +Kayleb +Kent +Kyran +Leif +Lisandro +Lucio +Luisangel +Major +Marko +Marquis +Memphis +Mustafa +Remi +Renzo +Roderick +Ryu +Terrance +Trace +Tripp +Vadhir +Youssef +Zyaire +Adriano +Ansel +Blaze +Broderick +Camron +Coby +Cormac +Dan +Darryl +Daylen +Denzel +Donnie +Draven +Edmund +Eliezer +Eros +Guy +Ilan +Jaedyn +Jamir +Jeff +Jesiah +Jiovanni +Johnson +Joseangel +Josef +Kalani +Korey +Kris +Krishna +Lev +Luc +Matix +Mattias +Monte +Neo +Nikita +Norman +Reyansh +Reyes +Santana +Shayne +Uziel +Vedant +Vidal +Vinny +Viraj +Xavian +Zaire +Abelardo +Adin +Aldair +Alexavier +Amar +Amin +Aram +Atreyu +Azriel +Blaine +Cael +Carsten +Casen +Chasen +Christofer +Cian +Constantine +Darnell +Dev +Dezmond +Finnian +Fred +Geovany +Harris +Haven +Idris +Issak +Javen +Javon +Jaxton +Josemiguel +Kadin +Kael +Lino +Linus +Maceo +Makhi +Mihir +Mikey +Nery +Noa +Oren +Quinten +Rami +Richie +Rigo +Ronny +Ross +Ryden +Slater +Sunny +Tremaine +Yoel +Zaden +Zayne +Addison +Adiel +Akhil +Aries +Beck +Bishop +Bradyn +Brando +Clarence +Dariel +Darion +Davon +Demian +Don +Ephraim +Esai +Evin +Finnley +Franky +Geovani +Hayk +Herman +Hugh +Jacen +Jadyn +Jaron +Johnnie +Kalvin +Kavin +Keagan +Kruz +Luiz +Mack +Mauro +Micaiah +Miller +Montgomery +Nahum +Noam +Osbaldo +Osiris +Oziel +Reilly +Renato +Rishabh +Rosendo +Sky +Titan +Turner +Yash +Yusef +Zahir +Zephyr +Amani +Amos +Angad +Ashwin +Bastian +Blaise +Brenton +Chandler +Clay +Crew +Curren +Darin +Denis +Diesel +Dino +Domingo +Donte +Eben +Eian +Eitan +Eloy +Elvin +Emmet +Ezrah +Faris +Gibran +Gray +Graysen +Hasan +Haziel +Heath +Itzae +Jadiel +Jancarlos +Jaren +Jaysen +Jayvyn +Jed +Job +Kamren +Kekoa +Koby +Kye +Landin +Lawson +Layne +Lex +Makaio +Marques +Mickey +Musa +Nathanial +Nevan +Paolo +Raghav +Rider +Rishaan +Romel +Roque +Roshan +Saleh +Sameer +Simeon +Sione +Sol +Tai +Thatcher +Thor +Todd +Tonatiuh +Trever +Wallace +Xavior +Yohan +Yurem +Zakary +Zephaniah +Aleksander +Arath +Aren +Asael +Atlas +Avan +Bear +Bentlee +Braedon +Bryden +Brysen +Canon +Ciaran +Cuauhtemoc +Daren +Darey +Dempsey +Derik +Dion +Donavan +Edmond +Ekam +Eliah +Emir +Emory +Ervin +Esau +Eshaan +Fabio +Faustino +Fredrick +Geoffrey +Glen +Hassan +Isreal +Jakai +Jaylin +Jelani +Jeremih +Jethro +Jim +Jonny +Joshuah +Juanjose +Kabir +Kaito +Kamran +Kanoa +Kenan +Korben +Lachlan +Malaki +Mattix +Mikhail +Mykel +Nehemias +Ori +Osiel +Perry +Pete +Phineas +Randall +Ryley +Sabastian +Sahib +Samarth +Shay +Shia +Stellan +Syrus +Talan +Tavin +Tayden +Teagan +Teo +Terence +Torin +Viktor +Yovanni +Zac +Zen +Zuriel +Aamir +Abdulaziz +Abiel +Akash +Akira +Alekzander +Alton +Amadeus +Anibal +Arion +Aris +Arron +Atharv +Austyn +Aziel +Bernard +Blair +Brantley +Carmine +Case +Cayleb +Cayson +Charly +Chaz +Cornelius +Dale +Damarion +Dashawn +Deanthony +Demarcus +Desean +Domenic +Dyland +Eamon +Eason +Edan +Edson +Enoc +Eshan +Flavio +Gadiel +Gannon +Gibson +Gil +Hadi +Hamilton +Hanson +Henrik +Hiroshi +Ira +Jabari +Jaciel +Jackie +Jacky +Jad +Jareth +Jarrod +Jaziel +Jeancarlos +Jhonny +Jin +Jionni +Joell +Josemaria +Juelz +Kaedyn +Kaine +Kamryn +Karol +Kenton +Keon +Khristian +Kylan +Kyree +Leopoldo +Levon +Lior +Lloyd +Lucky +Lyle +Mac +Maison +Marcell +Maximilliano +Maximino +Myron +Nikola +Norberto +Oakley +Olivier +Om +Parsa +Pavel +Rajon +Ravi +Reymundo +Rian +Rome +Saeed +Shaurya +Shea +Sheldon +Shreyas +Stefano +Stephon +Sutton +Tejas +Trinidad +Triston +Tyce +Valentine +Varun +Wilfredo +Wolfgang +Yadiel +Zakai +Zayan +Ziggy +Aj +Anakin +Antoni +Aria +Arjan +Armen +Artem +Arvin +Barron +Bayron +Brad +Brice +Brogan +Brooklyn +Broxton +Bryton +Calder +Cale +Chaim +Clifford +Cordell +Cullen +Daksh +Dashel +Daven +Deagan +Demetri +Domenico +Drayden +Eithan +Elyjah +Emmitt +Filiberto +Francesco +Freddie +Gavino +Gene +Giacomo +Graeme +Grey +Gurshan +Gus +Hagen +Halen +Hussein +Isa +Izek +Izrael +Jakobe +Jaleel +Jamil +Jancarlo +Jaxx +Jaydenn +Jaykob +Jenson +Jerimiah +Jhonathan +Josias +Juanmanuel +Juliani +Kannon +Keane +Kelly +Kenyon +Kirk +Kristofer +Kurt +Kyson +Lamont +Langston +Leeland +Lester +Lizandro +Lochlan +Maddux +Manolo +Manraj +Marek +Marquise +Marshawn +Pierson +Reggie +Rithvik +Roan +Rony +Rooney +Syed +Tegan +Tim +Tom +Trenten +Trevin +Ulisses +Vito +Willem +Yahel +Yobani +Yonatan +Yonathan +Yousif +Yuvan +Zakaria +Adnan +Aizen +Alain +Aleksandr +Alexsander +Alston +Ami +Anirudh +Arham +Armand +Arnulfo +Ashley +Athen +Aurelio +Auston +Aven +Bradford +Brandan +Branson +Broden +Brodey +Bronx +Calen +Campbell +Carsen +Casper +Ceasar +Chester +Chevy +Cillian +Claudio +Clifton +Clive +Cristo +Damari +Danilo +Daron +Dashiel +Deion +Demetrio +Demitri +Derrion +Dontae +Edgardo +Eliyahu +Elyas +Erin +Ethaniel +Faisal +Fermin +Floyd +Gabino +Gaige +Gamaliel +Geronimo +Gio +Graydon +Greg +Gurnoor +Haiden +Harlem +Haroon +Hiram +Horacio +Ilya +Indiana +Jacques +Jakari +Jaxsen +Jaydyn +Jaylon +Jayse +Jayvin +Jeronimo +Jhonatan +Jimmie +Jody +Jonatan +Jones +Jordon +Juandiego +Juaquin +Justyn +Kadyn +Kahlil +Kaydin +Kaysen +Kendall +Khai +Kiaan +Kohen +Kolten +Kyron +Layton +Lazaro +Lian +Luther +Lyndon +Makoa +Malek +Malikai +Marciano +Marquez +Mars +Mathieu +Matt +Menachem +Mika +Natanael +Naythan +Niccolo +Obadiah +Ocean +Ozzie +Patricio +Rain +Raymon +Rayshawn +Rehan +Rhyder +Rickey +Ron +Ronav +Sahir +Sai +Salem +Sammuel +Sandro +Shayaan +Shayan +Slade +Soham +Stetson +Stuart +Surya +Sylus +Taven +Tigran +Timmy +Trevon +Tyree +Ulices +Vernon +Vishnu +Wes +Yaakov +Yousuf +Zakariya +Zamir +Zayn +Aaiden +Aakash +Aarin +Aariz +Aarnav +Aayan +Abdul +Abdulrahman +Abhiram +Abisai +Adalberto +Ajani +Aleczander +Alistair +Amadeo +Amado +Amador +Amit +Ammar +Antwan +Archie +Arden +Arsen +Ash +Augustin +Azaan +Baltazar +Barry +Brandt +Brandyn +Brayson +Bridger +Caeden +Cal +Calum +Castiel +Cecil +Coen +Coleman +Colson +Corbyn +Cris +Cristhian +Cru +Dallin +Darrien +Darrin +Dejon +Deklan +Demari +Denim +Denny +Denver +Deonte +Derian +Devlin +Dmitri +Dresden +Duane +Dylann +Edric +Eliazar +Ender +Enrico +Eoin +Erickson +Esequiel +Exavier +Fausto +Fisher +Fynn +Gaven +Genesis +Geovannie +Giovonni +Helio +Herbert +Honor +Ibraheem +Ike +Itai +Izak +Iziah +Jamar +Jamarion +Jamin +Jarren +Jarrett +Jasen +Jasiel +Jathan +Javion +Jaycen +Jayven +Jayvon +Jess +Jhovany +Johannes +Johny +Jordi +Jordy +Kairo +Kaison +Karsen +Kaylen +Kegan +Keller +Kento +Keyon +Khang +Kiyan +Koda +Kolby +Kory +Kurtis +Kylen +Lars +Lathan +Lazarus +Leroy +Linkin +Lyam +Madison +Matai +Mavrick +Moshe +Mylo +Nayan +Neithan +Nicolo +Nima +Oden +Quinlan +Ranvir +Raylan +Reily +Roel +Rohit +Ronak +Ronen +Ronit +Rudolph +Rui +Rylie +Sabian +Saif +Sarkis +Sasha +Shaya +Sir +Sylar +Sylis +Syncere +Takoda +Tariq +Tavion +Tobey +Tosh +Trajan +Tyron +Umar +Wiley +Wren +Yanuel +Yasir +Aaditya +Abbas +Abdirahman +Abimael +Abrahan +Abran +Adler +Advay +Advik +Agastya +Aidin +Akshaj +Alen +Alias +Amaury +Amilcar +Amrit +Ander +Andersen +Andrez +Angus +Arav +Arik +Arius +Arjen +Ashtin +Atom +Audric +Aurelius +Axl +Axton +Benedict +Bill +Bladimir +Boaz +Boris +Brighton +Cadence +Caelan +Canaan +Carmello +Cashton +Charley +Chayse +Conan +Cortez +Cyril +Damani +Dandre +Daniyal +Darrion +Darryn +Dastan +Dave +Davien +Daymian +Degan +Deron +Derrek +Dionicio +Donaven +Donny +Draco +Dutch +Dyllan +Earl +Eber +Elie +Elijiah +Elio +Eliyah +Evander +Eyan +Ezio +Fenix +Fischer +Forest +Fox +Froilan +Gavriel +Geo +Gionni +Giuliano +Hansen +Haris +Harlen +Haruki +Heber +Henri +Hollis +Hubert +Humza +Ilias +Iliya +Imanol +Izaya +Izel +Jadden +Jade +Jaelyn +Jafet +Jaidon +Jairus +Jakub +Jarek +Jawad +Jaycee +Jayon +Jeffren +Jeovanny +Jermiah +Jireh +Joao +Joseantonio +Josedejesus +Jostin +Journey +Jowell +Jun +Kaileb +Kallen +Karanveer +Karlo +Karmelo +Karsten +Karthik +Kaveh +Kayne +Kelton +Keshav +Keyan +Khairi +Khaled +Khoa +Khoi +Kirin +Korbyn +Kyden +Kyren +Landry +Laron +Larson +Leighton +Leslie +Levy +Loren +Lou +Lucius +Mace +Mahdi +Makhai +Marlo +Mateen +Maxemiliano +Mccoy +Michaelangelo +Michelangelo +Minh +Morrison +Naim +Nam +Natan +Nazir +Neftali +Nicco +Nicolai +Nolen +Nomar +Nyjah +Octavian +Olin +Omid +Ozzy +Pascual +Perseus +Radley +Rafe +Rahul +Raja +Rajan +Raleigh +Ramsey +Ranbir +Randal +Raven +Rayhan +Raziel +Reyli +Reymond +Rishab +Rishan +Rishik +Ritchie +Samvel +Sanjay +Sartaj +Sedrick +Sevastian +Shai +Shlok +Siddarth +Sloan +Sohan +Srihan +Stevan +Sylvester +Taha +Tahj +Takeo +Tanush +Teddy +Tevin +Tracy +Tristyn +Uriyah +Valente +Vincente +Waleed +Warner +Wylie +Yehoshua +Yosgart +Yuri +Zacarias +Zach +Zacharias +Zeppelin +Zev +Zyan +Aadi +Aarion +Aayush +Abdias +Abhay +Adarsh +Adel +Adi +Aeden +Aharon +Akram +Akshay +Alfonzo +Alon +Aman +Amarion +Amaru +Ambrose +Amen +Amogh +Anas +Andree +Angelgabriel +Anjel +Anthonie +Anwar +Apolinar +Aquiles +Aramis +Arin +Arsh +Arshan +Artin +Arush +Aryaman +Ashten +Atharva +Auden +Aviel +Avin +Avinash +Axcel +Axell +Ayman +Ayrton +Bradly +Braylin +Brayton +Brenner +Brennon +Buster +Caine +Caius +Callahan +Canyon +Chael +Chauncey +Chayton +Chetan +Cj +Clemente +Coleton +Colter +Cornell +Curran +Cy +Cylas +Cylis +Dartagnan +Davey +Deaven +Decker +Deen +Delano +Demitrius +Deondre +Dereon +Deric +Devante +Devaughn +Dhruva +Diamond +Donavin +Donavon +Donnovan +Donta +Dovid +Dublin +Dwight +Earnest +Eberardo +Eduard +Edwardo +Eiden +Elder +Emad +Etienne +Farhan +Fransisco +Galvin +Gerrit +Giuseppe +Gohan +Griffen +Hakop +Hamzah +Hari +Haseeb +Hawk +Henrry +Huxley +Idan +Ilijah +Ilyas +Indigo +Indy +Irwin +Isayah +Izeah +Izmael +Jadan +Jae +Jaedon +Jahaziel +Jaiveer +Jalyn +Jameer +Jamel +Januel +Jarvis +Javan +Jaxin +Jayceon +Jaysean +Jayvion +Jazz +Jeevan +Jehu +Jeremyah +Jessiah +Jezreel +Jiraiya +Johncarlos +Jonan +Jordin +Josedaniel +Josmar +Jossue +Kaiser +Kaj +Kalan +Kamil +Karlos +Kavan +Kean +Keandre +Keelan +Keiran +Keshawn +Kevyn +Khyree +Kipton +Klayton +Knight +Konstantinos +Kooper +Krithik +Lamarr +Latrell +Laurence +Leander +Lonnie +Lyon +Lyrik +Madix +Malakhi +Maleek +Mansour +Marcellus +Marcoantonio +Marlowe +Marshaun +Matan +Matteus +Maximilien +Maximillion +Mckay +Mica +Michel +Morris +Mykah +Nakoa +Nareg +Nason +Navid +Neal +Neri +Nile +Ojani +Omri +Osmin +Piero +Prithvi +Raffi +Ram +Randolph +Rasheed +Raydel +Raylen +Regan +Regino +Ren +Rigel +Riku +Robbie +Rowdy +Rusty +Ryann +Ryken +Rylin +Sachin +Salomon +Satvik +Saxon +Sayed +Selvin +Seven +Shant +Sheamus +Shepard +Shivam +Siddhant +Siddhanth +Sina +Sriram +Sultan +Sydney +Syler +Takumi +Tamim +Tanav +Taran +Taylen +Thurston +Tiger +Tino +Townes +Trayvon +Tremayne +Tylen +Tyrese +Tyrus +Tyshawn +Ubaldo +Uzziel +Vansh +Vardan +Vikram +Vinh +Vyom +Willard +Xayden +Yamil +Yehuda +Zahid +Zak +Zenon +Aalijah +Adael +Adhrit +Adien +Adit +Adrean +Advaith +Agam +Ahmir +Aideen +Aidenn +Aidric +Aithan +Akiva +Akshat +Aldrich +Aleksey +Alister +Allister +Amarii +Amauri +Ameen +Amon +Anden +Andranik +Andrea +Aneesh +Anik +Anshul +Antonino +Antuan +Ara +Aran +Arhan +Aristeo +Ariston +Arnoldo +Asahel +Ashby +Aslan +Astin +Avian +Azlan +Banyan +Baxter +Baylen +Baylor +Becker +Benaiah +Benigno +Benton +Benyamin +Bjorn +Blue +Bob +Bosco +Bradlee +Braydin +Breckin +Bret +Breyden +Briggs +Britton +Caeleb +Caelum +Caio +Camryn +Carlton +Cavan +Cedrick +Celso +Champ +Charleston +Clint +Constantino +Dade +Dagoberto +Dajuan +Dakotah +Damar +Damarcus +Damyan +Dany +Darby +Darrius +Dashaun +Dawud +Dayne +Dayvon +Demario +Deniz +Desi +Destan +Dezi +Dhilan +Didier +Dillinger +Dionte +Domonic +Edy +Ehsan +Elija +Elisandro +Elnathan +Elon +Elson +Emmit +Eriberto +Erich +Eron +Esteven +Esvin +Eugenio +Evangelos +Evans +Exzavier +Eythan +Fabrizio +Ferdinand +Filip +Finlay +Francois +Fredi +Froylan +Gautham +Gehrig +Gevork +Giorgio +Giovannie +Giulio +Gor +Grayden +Haden +Haider +Hamlet +Haniel +Harkirat +Harout +Hassani +Hayato +Haydn +Hendrik +Henley +Hisham +Homero +Hosea +Hovanes +Hrach +Hudsen +Hyrum +Iban +Iden +Ignatius +Inaki +Isaia +Isaih +Issiah +Jaasiel +Jaaziel +Jaccob +Jacobanthony +Jacobe +Jaelen +Jahmari +Jaison +Jalil +Jarod +Jarred +Jatin +Javian +Jaylan +Jaymes +Jayren +Jc +Jencarlo +Jenner +Jeron +Jessi +Jevon +Johnmichael +Jonathen +Jory +Julyan +Kage +Kaidyn +Kalen +Kamal +Karam +Karan +Kartik +Kashton +Kasper +Kavi +Kavish +Kaydan +Kendal +Kendell +Kennith +Kenta +Kerem +Keyshawn +Khalif +Kieren +Kilian +Kirby +Kishan +Koji +Koston +Krew +Krystian +Kylar +Kyrell +Lamarion +Lauro +Leiland +Lemuel +Leviticus +Loic +Loyal +Luigi +Maeson +Mahmoud +Makari +Malcom +Manveer +Manvir +Marius +Markell +Marlow +Marshal +Marvion +Marwan +Masyn +Matheo +Matin +Maxime +Mehki +Mikai +Mukund +Murray +Mykael +Nader +Naeem +Nahom +Naithan +Namish +Naoki +Nasser +Nathyn +Navraj +Neev +Nicodemus +Nicoli +Niklas +Niles +Nishan +Noble +Nova +Odysseus +Ojas +Oleg +Ollie +Omer +Onyx +Orrin +Ozil +Palmer +Pharaoh +Qasim +Rafi +Rahim +Raj +Rajveer +Ramy +Ramzi +Raudel +Rayvon +Richy +Ridge +Ritvik +Rivers +Rjay +Robel +Rockwell +Roen +Rohin +Roosevelt +Roscoe +Rushil +Sahid +Saket +Samanyu +Schuyler +Sergey +Sevag +Shamus +Shepherd +Shiv +Shmuel +Silvano +Skye +Smith +Sneijder +Stryder +Stryker +Subhan +Suraj +Taisei +Tamer +Tarik +Tavian +Teagen +Teague +Ted +Tej +Tenoch +Thai +Theron +Tien +Timur +Tito +Tj +Tlaloc +Toma +Tommie +Tonny +Tor +Toren +Tre +Trevion +Treyvon +Tri +Truth +Trysten +Tye +Tylan +Tysen +Tytus +Uziah +Uzziah +Vadim +Vahan +Vaibhav +Ved +Vedansh +Viliami +Vinicio +Vinson +Vivek +Waseem +Wayde +Wilbert +Willis +Wolf +Wyland +Wylder +Yahya +Yakov +Yanni +Yared +Yariel +Yohann +Yuma +Zacharia +Zadkiel +Zayaan +Zedekiah +Zekiel +Zyler +Jacob +Jayden +Daniel +Ethan +Matthew +Noah +Alexander +Anthony +Nathan +David +Andrew +Michael +Aiden +Angel +Isaac +Julian +Mason +Adrian +Jonathan +Christopher +Joshua +Benjamin +Joseph +Liam +Jose +Dylan +Aaron +Elijah +Ryan +Sebastian +William +Logan +Gabriel +Christian +Samuel +Brandon +Isaiah +James +Damian +Kevin +Lucas +Jesus +Luis +Dominic +Juan +Evan +Ivan +Jordan +Diego +Jackson +Nicholas +Caleb +Jason +Carlos +John +Luke +Adam +Santiago +Ian +Jeremiah +Jack +Mateo +Xavier +Robert +Henry +Eli +Josiah +Tyler +Gavin +Austin +Oliver +Wyatt +Nathaniel +Gael +Ayden +Miguel +Alejandro +Owen +Alex +Leonardo +Landon +Justin +Giovanni +Victor +Zachary +Levi +Vincent +Connor +Bryan +Elias +Eric +Thomas +Hunter +Andres +Steven +Jesse +Brayden +Alan +Jorge +Ryder +Eduardo +Carter +Charles +Blake +Max +Cameron +Roman +Antonio +Axel +Francisco +Oscar +Richard +Abraham +Brian +Jaxon +Emmanuel +Jeremy +Leo +Joel +Tristan +Manuel +Aidan +Fernando +Nicolas +Chase +Cesar +Omar +Jaden +Javier +Colton +Hudson +Micah +Kyle +Ricardo +Nolan +Alexis +Emiliano +Edgar +Sergio +Kai +Erick +Parker +Jake +Cristian +Ezekiel +Edward +Fabian +Derek +Iker +Maxwell +Miles +Maximiliano +Sean +Hector +Mario +Abel +Josue +Andy +Emilio +Jonah +Cole +Marcus +Jace +Raymond +Johnny +Israel +Martin +Asher +George +Joaquin +Brody +Grayson +Mark +Ruben +Marco +Cooper +Jaxson +Preston +Rafael +Maximus +Bradley +Ezra +Carson +Colin +Kayden +Roberto +Timothy +Adan +Damien +Devin +Kaleb +Jude +Pedro +Edwin +Kenneth +Patrick +Andre +Erik +Esteban +Pablo +Declan +Gerardo +Lincoln +Luca +Wesley +Armando +Cody +Bentley +Paul +Riley +Cruz +Ismael +Calvin +Donovan +Theodore +Bryce +Peter +Hayden +Enrique +Emanuel +Felix +Dominick +Grant +Cash +Lorenzo +Angelo +Dean +Saul +Kaden +Jaime +Travis +Moises +Charlie +Gustavo +Marcos +Jameson +Ashton +Caden +Troy +Maddox +Julio +Matteo +Raul +Romeo +Salvador +Everett +Jared +Greyson +Arthur +Jaiden +Silas +Alberto +Seth +Kingston +Arturo +Brady +Dante +Johnathan +Sawyer +Drake +Leonel +Danny +Tanner +Albert +Bryson +Rodrigo +Shane +Emmett +Frank +Jeffrey +Lukas +Malachi +Ernesto +Weston +Trevor +Gage +Mathew +Noel +King +Jasper +Kaiden +Hugo +Alfredo +Allen +Elliot +Harrison +Ramon +Enzo +Skyler +Xander +Easton +Simon +Gregory +Uriel +Rylan +Aden +Cayden +Issac +Milo +Chris +Darren +Myles +Judah +Izaiah +Jax +Griffin +Mauricio +Avery +Collin +Isaias +Conner +Noe +Louis +Maximilian +Elliott +Finn +Jaylen +Zane +Amir +Guillermo +Jay +Jayson +Zion +Bennett +Rowan +Stephen +Jayce +Desmond +Julius +Randy +Leon +Dillon +Eddie +Ulises +Anderson +Orlando +Tyson +Zander +Alonzo +Spencer +August +Garrett +Phoenix +Vicente +Bruce +Ezequiel +Ricky +Shawn +Aldo +Dexter +Graham +Yahir +Arjun +Gianni +Jakob +Maverick +Brendan +Chance +Jimmy +Tony +Alvin +Brayan +Giovani +Nico +Orion +Phillip +Joey +Matias +Zayden +Beau +Derrick +Johan +Nehemiah +Paxton +Rocco +Ali +Alonso +Taylor +Adriel +Peyton +Cyrus +Landen +Ace +Drew +Kameron +Moses +Nixon +Ari +Atticus +Jerry +Quinn +Ryker +Alec +Camden +Giovanny +Kyler +Osvaldo +Marvin +Rene +Rogelio +Rudy +Alfonso +Kian +Tucker +Aarav +Jett +Scott +Dustin +Holden +Royce +Beckett +Braden +Dominik +Emerson +Nickolas +Ronan +Frankie +River +Walter +Alessandro +Felipe +Larry +Santino +Clayton +Nikolas +Philip +Tomas +Archer +Titus +Efrain +Reid +Corbin +Dennis +Kellan +Dallas +Freddy +Rhys +Steve +Allan +Leland +Roger +Sam +Valentino +Cade +Bryant +Eden +Jessie +Prince +Ronald +Amari +Byron +Luciano +Rohan +Ty +Cristopher +Julien +Lionel +Malakai +Ramiro +Russell +Giancarlo +Jonas +Bruno +Jairo +Kash +Marc +Roy +Zachariah +Zackary +Gunner +Joe +Darius +Kristopher +Nelson +Vihaan +Agustin +Camilo +Ignacio +Keith +Kellen +Lawrence +Uriah +Xzavier +Caiden +Colby +Jovanni +Misael +Neil +Bodhi +Brennan +Dalton +Malcolm +Niko +Alvaro +Clark +Malik +Trenton +Abram +Alijah +Braxton +Dane +Junior +Raiden +Ryland +Trent +Gilberto +Neymar +Nikolai +Ray +Xavi +Ayaan +Damon +Eliseo +Knox +Luka +Solomon +Sonny +Armani +Casey +Devon +Marlon +Rodolfo +Valentin +Brenden +Major +Mike +Tommy +Adrien +Gunnar +Jase +Aryan +Barrett +Cain +Colt +Curtis +German +Keegan +Leandro +London +Quentin +Reed +Brock +Donald +Kade +Maxim +Rey +Waylon +Cristobal +Davian +Grady +Isai +Jalen +Kenny +Kieran +Makai +Mathias +Rex +Tristen +Aron +Braydon +Conor +Harry +Irvin +Nathanael +Yael +Darian +Douglas +Marshall +Muhammad +Adolfo +Dorian +Kobe +Lucca +Nathen +Ronin +Winston +Arnav +Brycen +Cohen +Corey +Eugene +Gary +Lance +Remy +Ronnie +Dario +Davis +Elian +Frederick +Jaycob +Leonard +Marcelo +Morgan +Apollo +Franco +Franklin +Lucian +Maximo +Raphael +Talon +Tobias +Warren +Ares +Braylon +Estevan +Gideon +Gilbert +Kelvin +Khalil +Kristian +Leonidas +Madden +Octavio +Arman +Gonzalo +Jair +Jovani +Kane +Kody +Krish +Mohammad +Rory +Theo +Trey +Derick +Humberto +Jagger +Louie +Roland +Sage +Zechariah +Aditya +Alden +Aydin +Benicio +Joziah +Maurice +Pierce +Rayden +Reece +Skylar +Zaiden +Armaan +Benson +Carlo +Edison +Jovanny +Juanpablo +Landyn +Lane +Matthias +Mohammed +Rayan +Rolando +Santos +Wilson +Yusuf +Benny +Bobby +Francis +Justice +Kareem +Koa +Messiah +Nash +Rigoberto +Terry +Vivaan +Ariel +Dax +Elvis +Porter +Ronaldo +Tate +Adonis +Ahmad +Arian +Ben +Billy +Boston +Branden +Dangelo +Davin +Deven +Ellis +Hank +Jadon +Karter +Kason +Mariano +Nick +Samson +Soren +Sullivan +Thiago +Ulysses +Vaughn +Aaden +Brett +Bronson +Brooks +Carmelo +Deegan +Elisha +Ishaan +Jefferson +Johann +Juancarlos +Rhett +Rocky +Shaun +Stanley +Sylas +Urijah +Walker +Abdiel +Ahmed +Alexzander +Beckham +Callen +Conrad +Cristiano +Keaton +Odin +Otto +Quincy +Yousef +Alfred +Carl +Deandre +Eddy +Finley +Finnegan +Jensen +Jionni +Kenji +Kingsley +Sterling +Yair +Zaid +Arlo +Ethen +Harvey +Jasiah +Karson +Kendrick +Mayson +Mohamed +Reese +Royal +Vincenzo +Arley +Dakota +Dawson +Dhruv +Gerald +Jeremias +Keven +Lennon +Markus +Nestor +Nikko +Oswaldo +Princeton +Rodney +Ryu +Abner +Asa +Athan +Chad +Davion +Flynn +Raymundo +Zain +Augustine +Baron +Braeden +Callum +Cannon +Efren +Isaak +Izayah +Jacoby +Jaeden +Jaxen +Pranav +Siddharth +Vince +Alexandro +Amare +Braulio +Colten +Enoch +Geovanni +Hamza +Hendrix +Ibrahim +Jon +Josh +Kaeden +Keanu +Ken +Melvin +Said +Toby +Van +Wade +Abdullah +Alexandre +Bernardo +Cory +Dereck +Eason +Irving +Jamie +Jaxton +Reagan +Sheldon +Zayne +Anton +Aydan +Bowen +Cristofer +Dilan +Eligh +Gino +Isiah +Izaac +Jaydon +Joseluis +Kaleo +Kamden +Kayson +Legend +Maximillian +Micheal +Mitchell +Ryden +Samir +Tatum +Terrence +Aidyn +Duke +Fidel +Jaziel +Jeffery +Jovan +Kenzo +Lewis +Lucio +Marcello +Mikael +Nasir +Payton +Will +Anson +Brent +Brodie +Cassius +Ean +Ford +Jai +Jaydan +Jedidiah +Marley +Maxx +Miguelangel +Mustafa +Omari +Terrance +Vance +Andreas +Avi +Boden +Daxton +Devyn +Donte +Elmer +Elvin +Emmitt +Gionni +Gordon +Guadalupe +Kainoa +Kasen +Kolton +Linus +Masen +Mekhi +Quinton +Ramses +Tadeo +Yeshua +Aarush +Achilles +Antony +Bodie +Damion +Dan +Deacon +Demian +Deshawn +Ernest +Ever +Everardo +Fredy +Jamison +Jayceon +Jaylin +Jovany +Kain +Kennedy +Maison +Mattias +Presley +Reyansh +Sidney +Tyrone +Vladimir +Zack +Ajay +Bo +Callan +Clyde +Emery +Fletcher +Geoffrey +Harley +Harold +Heriberto +Howard +Jael +Jerome +Joan +Jonathon +Justus +Marcel +Marcelino +Milan +Nikhil +Raylan +Semaj +Stefan +Veer +Augustus +Aydenn +Bishop +Brantley +Brendon +Crosby +Darwin +Dashiell +Demetrius +Favian +Freddie +Gauge +Giovany +Hezekiah +Jamal +Jencarlos +Jermaine +Jet +Lee +Otis +Rick +Zeus +Brixton +Broderick +Case +Deangelo +Devan +Emmet +Gadiel +Geovanny +Gerard +Isac +Izaak +Jaydin +Jeramiah +Johnathon +Keoni +Konnor +Kymani +Lachlan +Layne +Lennox +Maksim +Reuben +Reynaldo +Wayne +Willie +Yandel +Yosef +Zaire +Alistair +Aram +Blaine +Braiden +Branson +Cason +Cedric +Chace +Cian +Dayton +Dev +Draven +Graysen +Grey +Ishan +Isidro +Jackie +Jullian +Kabir +Kalel +Karim +Killian +Kiran +Magnus +Merrick +Narek +Oskar +Patricio +Rico +Sammy +Santana +Sky +Terrell +Titan +Tom +Yahel +Zeke +Anders +Anish +Arvin +Austen +Ayan +Benito +Bently +Brennen +Clay +Denzel +Dwayne +Eleazar +Federico +Guy +Harper +Isael +Jericho +Keenan +Kent +Koen +Lenny +Matt +Mikel +Neel +Noam +Reginald +Remington +Rio +Seamus +Shiloh +Sincere +Teagan +Uziel +Aayan +Aayden +Austyn +Braylen +Chandler +Channing +Eliot +Esai +Hassan +Jad +Jaysen +Jeshua +Jesiah +Kale +Konner +Lev +Long +Lucius +Mack +Maxton +Obed +Paulo +Rishi +Rowen +Sarkis +Sunny +Teo +Westley +Zavier +Zayd +Adriano +Alek +Alexavier +Alton +Andrei +Anirudh +Ansh +Aurelio +Aven +Bilal +Cairo +Camren +Clarence +Crew +Dale +Dominique +Duncan +Emil +Haven +Jacobo +Jarrett +Jiovanni +Johnpaul +Kamari +Laith +Luc +Lyric +Malaki +Marquis +Mylo +Noa +Paolo +Rashad +Richie +Robin +Ronny +Taj +Thor +Triston +Westin +Yash +Anakin +Andrey +Ansel +Antoine +Aston +Bayron +Blaze +Danilo +Dariel +Darrell +Dillan +Erwin +Ewan +Franky +Gian +Jacky +Javon +Jonatan +Joseangel +Keyon +Kolten +Kyson +Lucien +Marko +Memphis +Milton +Norman +Osmar +Quintin +Salomon +Shaan +Akshaj +Ameer +Amos +Anay +Armen +Arya +Atlas +Atreyu +Azariah +Blaise +Coen +Craig +Darien +Daron +Dash +Denis +Domenic +Dwight +Eder +Eian +Elan +Ely +Forest +Glenn +Harlan +Hugh +Huxley +Isa +Itzae +Jaxx +Johnnie +Kekoa +Kolby +Konrad +Lamar +Langston +Lawson +Lazarus +Leroy +Levon +Makaio +Massimo +Naythan +Nehemias +Nova +Oziel +Rami +Rayyan +Reyes +Rian +Robbie +Rylen +Shayan +Stephan +Syrus +Thaddeus +Todd +Trystan +Tyree +Yovani +Yuvraj +Aksel +Aleksander +Arav +Arsh +Avan +Axl +Bailey +Brenton +Camron +Casper +Corban +Dimitri +Dion +Donnie +Edmund +Eithan +Elyjah +Eshaan +Gavyn +Genesis +Geovany +Gerson +Hernan +Ira +Jahir +Jaykob +Jeff +Kalvin +Kasey +Kavin +Kaysen +Kole +Kris +Leif +Lex +Lucky +Lyle +Maddex +Michaelangelo +Mikhail +Ralph +Raziel +Ren +Ross +Sahib +Tiago +Trace +Tristin +Varun +Wilder +Yerik +Zephyr +Abhinav +Abran +Akhil +Alen +Aman +Aries +Athen +Atom +Axton +Bernard +Bode +Brighton +Caspian +Ceasar +Clive +Cormac +Curren +Cy +Daren +Diesel +Edmond +Edson +Ekam +Eliel +Eliezer +Emir +Esdras +Forrest +Fox +Gibson +Gregorio +Hayk +Heath +Henri +Immanuel +Izrael +Jahaziel +Jan +Jean +Jenson +Jerimiah +Jorden +Juelz +Kadin +Keagan +Kendall +Khalid +Khristian +Kurtis +Kyan +Lino +Maddix +Matheo +Mykel +Nahum +Nate +Osiris +Phineas +Pierre +Raghav +Rylee +Slater +Soham +Tobin +Truman +West +Yahya +Youssef +Zakai +Zakary +Zayn +Abdul +Addison +Akash +Angus +Arden +Ayush +Azael +Benaiah +Boaz +Braedon +Clifford +Coleman +Damani +Darrien +Darryl +Davon +Destin +Dresden +Eamon +Eliah +Elio +Ernie +Ezrah +Fabio +Finnley +Gabino +Gaige +Garrison +Gianluca +Hans +Hasan +Hiram +Ishmael +Ismail +Jabari +Jadiel +Jaron +Jathan +Jaythan +Jayven +Jelani +Kaison +Kaito +Karl +Kayleb +Keshav +Kiyan +Landin +Malek +Marcoantonio +Mathieu +Matix +Micaiah +Mikey +Miller +Neo +Nikita +Noble +Oren +Ozzie +Ozzy +Perry +Reef +Reyli +Rome +Sami +Sebastien +Shea +Silvestre +Talan +Tevin +Thatcher +Timur +Trevon +Tristian +Tyrell +Viktor +Wes +Zackery +Zahir +Zephaniah +Zyaire +Aadi +Aaryan +Abdulaziz +Abelardo +Advaith +Advik +Aizen +Alston +Angad +Arik +Atharv +Aurelius +Ayrton +Bear +Braedyn +Brando +Brecken +Brysen +Camryn +Castiel +Cayson +Claudio +Clinton +Cortez +Cristo +Cullen +Dakari +Darin +Darion +Decker +Demitri +Domingo +Don +Donavan +Draco +Edgardo +Ender +Esau +Genaro +Gray +Henrik +Ilya +Jadyn +Jafet +Jamari +Jancarlo +Jaydenn +Jayvion +Jeancarlo +Jeremih +Jordy +Kael +Kaine +Kamran +Kamron +Kannon +Karan +Kevyn +Khai +Kiaan +Korbin +Lars +Lester +Lian +Manny +Mauro +Mickey +Monte +Nicolai +Nigel +Onyx +Ori +Pete +Reilly +Rishaan +Riyan +Sahil +Salvatore +Shayne +Tejas +Tevita +Xian +Yaseen +Yohan +Zaden +Zuriel +Aamir +Abhiram +Adiel +Alexsander +Aria +Arjan +Arnold +Arnulfo +Arsen +Ayman +Aziel +Beck +Brad +Bryden +Cael +Caesar +Carmine +Casen +Christofer +Cillian +Colter +Constantine +Darnell +Dave +Daylen +Deklan +Demetri +Deon +Donavin +Eliam +Fisher +Flavio +Francesco +Gannon +Gene +Geovani +Giuseppe +Gus +Haiden +Houston +Icker +Jacques +Jamil +Jamir +Jancarlos +Jareth +Jaxsen +Jaylon +Jim +Jin +Johnson +Jonny +Josemanuel +Josias +Kaidyn +Karsen +Karthik +Kayne +Korey +Kye +Kylan +Kyran +Kyree +Kyren +Lamont +Layton +Lazaro +Leighton +Leopoldo +Lochlan +Luisangel +Lyam +Makhi +Malikai +Mars +Matthieu +Maximino +Menachem +Mikah +Musa +Osbaldo +Quintus +Rain +Ramsey +Rayshawn +Rehan +Roan +Roderick +Sameer +Shant +Shepard +Stellan +Sutton +Tayden +Terence +Theron +Torin +Valen +Wilmer +Zac +Zayan +Zev +Aayush +Abhay +Adair +Aldair +Amadeo +Amadeus +Ameen +Ames +Anibal +Ashwin +Baltazar +Baxter +Benton +Bosco +Brice +Bronx +Bryton +Buddy +Cal +Campbell +Conan +Darrius +Darvin +Deion +Denny +Didier +Domenico +Drayden +Edvin +Eitan +Emory +Ephraim +Erin +Eros +Gibran +Glen +Grayden +Hadi +Hanson +Harris +Honor +Iden +Idris +Ilan +Ilyas +Izek +Jaleel +Jamar +Javian +Jedediah +Johannes +Josef +Juaquin +Jun +Kahlil +Kalani +Keane +Kenton +Kohen +Kory +Kristofer +Kylen +Leopold +Makhai +Mihir +Minh +Myron +Nery +Nevin +Nikola +Pasha +Pavel +Rajveer +Randall +Ranveer +Rigo +Rommel +Shivam +Sire +Stefano +Syed +Tavin +Tim +Ulices +Ulisses +Vinh +Wiley +Willem +Yadiel +Yannick +Yoel +Yousuf +Abdulrahman +Adalberto +Adi +Adin +Adler +Aeden +Alessio +Alfonzo +Amador +Amar +Ammar +Andree +Archie +Aren +Arion +Armin +Arush +Asael +Augustin +Azaan +Azriel +Bill +Bladimir +Brayton +Brenner +Breyden +Bridger +Broden +Broxton +Camdyn +Chaz +Chevy +Clint +Colson +Cuauhtemoc +Damoni +Daryn +Deagan +Deron +Dezmond +Duane +Dyland +Dylon +Eben +Edan +Eiden +Emmit +Ervin +Eshan +Eugenio +Ezio +Fredrick +Gaven +Giacomo +Greg +Harlem +Hayes +Hilario +Hiroshi +Iann +Jaidyn +Jaren +Jaziah +Jireh +Joell +Jordi +Journey +Jowell +Juandiego +Justyn +Kaedyn +Kalen +Kamryn +Karlo +Karol +Kelly +Kelton +Kenan +Khang +Kirk +Leobardo +Linden +Linkin +Mac +Maddux +Makoa +Michelangelo +Mohamad +Monroe +Natan +Nathanial +Nicco +Olivier +Osiel +Osman +Parsa +Perseus +Pierson +Radley +Raheem +Rahul +Rayaan +Reggie +Remi +Renato +Renzo +Reymundo +Rider +Ronav +Rosendo +Roshan +Ryley +Seven +Shaurya +Shiv +Shreyas +Siddhant +Simeon +Sione +Skye +Stuart +Surya +Sylvester +Tahj +Tai +Taran +Tarun +Teddy +Tigran +Trenten +Tytus +Vedant +Vinny +Waleed +Wallace +Westen +Wolfgang +Xavior +Yovanni +Zach +Zamir +Zyler +Aakash +Aariz +Abiel +Abisai +Abrahan +Adil +Aidenn +Aj +Akira +Akshay +Alain +Alastair +Alister +Amado +Amani +Amaury +Ander +Aneesh +Anjel +Aric +Aris +Arlen +Artin +Aspen +Avian +Barron +Benedict +Bennet +Bradlee +Bradyn +Brigham +Cale +Canon +Cedar +Cezar +Champ +Chayce +Cylus +Damari +Dandre +Darey +Daryl +Dastan +Deanthony +Delano +Deonte +Desean +Elyas +Evin +Farhan +Fred +Gamaliel +Gavino +Geronimo +Gianmarco +Gil +Gio +Giovannie +Graeme +Gurshaan +Halen +Hiro +Hosea +Iain +Isaih +Isreal +Izan +Jacen +Jaiveer +Jamel +Jarred +Jarren +Jarvis +Jasiel +Javen +Jayvin +Jayvon +Jeancarlos +Jeevan +Jencarlo +Jeron +Jessy +Jethro +Job +Jordon +Josemiguel +Joshuah +Jules +Kairo +Kanoa +Karas +Kaydin +Keelan +Keller +Keon +Khaled +Khoi +Kilian +Koda +Kruz +Kurt +Landry +Laurence +Leander +Liem +Lisandro +Lonnie +Macario +Maceo +Marcellus +Marques +Marshawn +Marwan +Mateen +Mathis +Maximilliano +Mccoy +Mick +Montgomery +Morris +Morrison +Moshe +Naeem +Nam +Neal +Norberto +Oden +Orin +Owyn +Paris +Quinten +Rainier +Raylen +Raymon +Rickey +Ridge +Riot +Rithvik +Ron +Rooney +Roosevelt +Rye +Sabastian +Saif +Samar +Samarth +Shepherd +Shlok +Siddhartha +Sir +Sohum +Stevie +Sultan +Sylis +Takeo +Timofey +Tosh +Tremaine +Tri +Trinidad +Tristyn +Turner +Tylen +Tyrus +Uzziah +Vander +Vernon +Vikram +Viraj +Vito +Vivek +Wilber +Wilbert +Williams +Willy +Yazan +Yisrael +Yousif +Yurem +Zachery +Zakaria +Aahil +Abdullahi +Adhvik +Adryan +Aedan +Aeson +Ahaan +Aharon +Alaric +Aldon +Amarion +Ambrose +Amin +Amit +Arie +Armand +Arnoldo +Artur +Atharva +Aubrey +Axell +Bane +Basil +Benji +Bogdan +Braydan +Brogan +Brooklyn +Caelan +Caine +Calum +Cam +Carsten +Cary +Charley +Ciaran +Cj +Colston +Conley +Corbyn +Cristhian +Cru +Dallin +Damarcus +Danniel +Darby +Darrel +Darrin +Darsh +Dashel +Daven +Davi +Davien +Daylon +Demari +Devlin +Devonte +Donny +Dutch +Dyllan +Earl +Edrick +Edwardo +Elden +Eliott +Eloy +Elton +Emillio +Ethyn +Eziah +Fabricio +Faisal +Filip +Finnian +Fionn +Fredi +Gaetano +Gryphon +Hakob +Hamzah +Harsha +Hasani +Heber +Hiroto +Hussein +Hyrum +Ibraheem +Idan +Imran +Izeah +Izreal +Jaasiel +Jaedon +Jakub +Jarek +Jaymes +Jayvian +Jc +Jeronimo +Jhonny +Jimmie +Joao +Joesiah +Johndavid +Juanjose +Juanmanuel +Juvenal +Kamal +Kamren +Karanveer +Karmelo +Karsten +Kavi +Keshawn +Keyan +Khristopher +Kooper +Kyrin +Kyron +Lakai +Lamarr +Loki +Loyal +Luiz +Lysander +Mace +Mael +Malakhi +Marek +Marion +Marquez +Marquise +Mavrick +Maxson +Meyer +Milad +Nabil +Nahom +Natanael +Nazareth +Neri +Nevan +Nicasio +Nicodemus +Nikolaus +Nivaan +Nyjah +Ocean +Om +Omkar +Otoniel +Pascal +Percy +Pryce +Radin +Rafe +Raffi +Raleigh +Ravi +Rishab +Ritchie +Rockwell +Romero +Ronen +Sacha +Sai +Salman +Sammuel +Scotty +Selvin +Shalom +Sol +Stetson +Stryder +Suraj +Sydney +Talen +Tariq +Tennyson +Tenzin +Tj +Tlaloc +Tracy +Tripp +Tylor +Vahan +Valente +Vidal +Viggo +Yared +Yasser +Yehuda +Yusef +Yuto +Zacarias +Zaidyn +Zarek +Ziyad +Aadyn +Aarin +Aarnav +Adian +Agastya +Ahan +Aithan +Aiven +Akeem +Akshath +Alder +Alekzander +Alexandros +Alexi +Alias +Amaru +Ammon +Andrae +Angello +Anthoney +Antwan +Aquiles +Arin +Arno +Arrow +Arshan +Art +Artem +Artemio +Arun +Aryeh +Asiel +Atiksh +Ayoub +Ayub +Banyan +Barry +Blaize +Blas +Booker +Boris +Boyd +Brandt +Brandyn +Breydon +Briggs +Caeden +Cai +Caius +Calder +Calen +Canaan +Carsen +Carver +Celso +Charly +Cipriano +Cisco +Clement +Clemente +Coby +Coltin +Cordero +Cornelius +Cornell +Cris +Daksh +Damarion +Darrion +Daymian +Dayson +Degan +Delfino +Demarco +Demarcus +Demetrio +Dempsey +Denilson +Denim +Denton +Denver +Derik +Derrion +Deshaun +Devansh +Dillinger +Dino +Dionisio +Dmitri +Dov +Dylann +Eber +Edahi +Edin +Egan +Elgin +Elie +Eliud +Eliyah +Elson +Emre +Enrico +Evander +Evans +Exodus +Fahad +Faris +Faustino +Floyd +Foster +Frederic +Geraldo +Graydon +Greysen +Gurjot +Gurman +Hansel +Harnoor +Harsh +Hawk +Hayato +Haziel +Hendrick +Hendrik +Hisham +Horacio +Ilias +Iliya +Indy +Isacc +Issa +Issaiah +Itai +Jaedyn +Jaelin +Jahiem +Jaidon +Jakai +Jakari +Jamarion +Jameer +Jarett +Jaskaran +Javion +Jaxxon +Jaydyn +Jaylan +Jaylyn +Jed +Jedi +Johncarlo +Johny +Jones +Jordyn +Josemaria +Judson +Kaan +Kaidan +Kaius +Karlos +Kato +Kaya +Keiji +Kevion +Knowledge +Koby +Korben +Krishiv +Kunal +Kyden +Laird +Lavon +Leeland +Leeon +Lizandro +Luigi +Luisfernando +Lukah +Mahdi +Malcom +Marcanthony +Marcell +Marciano +Margarito +Marius +Marlo +Masyn +Maximos +Maxon +Maysen +Montae +Mykell +Naim +Nason +Nassir +Nazar +Neko +Niam +Niccolo +Nicoli +Nyle +Parth +Paulino +Pax +Pharaoh +Prithvi +Quan +Ram +Ramzi +Raudel +Rayce +Reeve +Reza +Riku +Ritvik +Rogan +Rohit +Rojelio +Romario +Romelo +Ronit +Rudolph +Rudra +Ruhaan +Ryo +Saleem +Sampson +Samvel +Sanjay +Savion +Sayed +Shayaan +Shravan +Silvano +Sion +Smith +Sohan +Steele +Stephon +Subhan +Sylus +Syncere +Taha +Tahir +Theophilus +Tiernan +Tito +Tonatiuh +Torrey +Trever +Trevin +TRUE +Uzair +Uzziel +Valor +Vann +Vansh +Ved +Vincente +Vishnu +Watson +Xavian +Yamil +Yariel +Zabdiel +Zacchaeus +Zade +Zaki +Zakir +Zaven +Zavion +Zen +Zeth +Abdias +Acen +Adael +Adel +Adithya +Adonay +Adrick +Ahmir +Ahsan +Aidin +Aidric +Akai +Aleksandar +Aleksandr +Amauri +Amrit +Andrez +Andru +Andruw +Anmol +Anuar +Anvay +Aramis +Arath +Arif +Arjen +Armon +Ash +Ashby +Athos +Auguste +Augusto +Aundre +Auron +Avelino +Avenir +Aydeen +Aymen +Azad +Azlan +Balam +Bao +Basem +Bassam +Bastian +Bennie +Bhargav +Blade +Blayne +Blue +Bowie +Bradford +Brandin +Breck +Brennon +Briar +Britton +Brodi +Cadence +Caedmon +Caidyn +Calin +Calix +Cameryn +Captain +Cashton +Cayleb +Cecil +Chaim +Che +Christiano +Chrystian +Claude +Coda +Coleton +Coltyn +Cordae +Cornelio +Corvin +Cove +Crue +Curran +Daimian +Dakarai +Danyal +Dashawn +Dashiel +Davey +Daylan +Daylin +Deaglan +Delon +Demetrios +Derian +Deric +Derion +Derrik +Desi +Destry +Devion +Dhilan +Dillion +Dimitrios +Dj +Domonic +Donovin +Dontae +Dovid +Drayson +Dublin +Dyson +Edilberto +Edrik +Eliab +Eliaz +Eliazar +Elija +Elijahjames +Eliu +Ellison +Emile +Emran +Erasmo +Escher +Ethaniel +Ethanjohn +Etienne +Evaristo +Everest +Evyn +Eyan +Eythan +Farid +Fausto +Favio +Fenix +Ferdinand +Flint +Froylan +Galen +Galileo +Gaspar +Gautam +Gentry +Giordan +Giorgio +Gor +Gracen +Grigor +Gurnoor +Gurshan +Haden +Hakop +Hamilton +Hardy +Harel +Harish +Helios +Herbert +Herman +Heston +Hubert +Inaki +Irie +Isaiahs +Isrrael +Itay +Iven +Izacc +Izaya +Izekiel +Izzac +Jacksen +Jacobanthony +Jade +Jae +Jaelen +Jaelyn +Jahan +Jahlil +Jaice +Jaidan +Jairus +Jaquan +Jaret +Jarrod +Jashan +Jasson +Javin +Jaycen +Jayme +Jayse +Jenner +Jerald +Jeremyah +Jessejames +Jessiah +Jeter +Jeyson +Jhett +Jianni +Jimi +Joab +Joeseph +Johncarlos +Johnmichael +Joseguadalupe +Josejulian +Josiyah +Josmar +Jozef +Juanluis +Justen +Kaeleb +Kailan +Kalden +Kallen +Kanan +Karo +Kase +Kavan +Kawika +Kaydon +Kaylen +Kegan +Kelan +Kelson +Keston +Khoa +Khyree +Kidus +Kirill +Kirin +Kit +Knight +Koji +Kona +Koston +Krishang +Krithik +Landan +Larenz +Laszlo +Lazar +Ledger +Leeam +Leelan +Leyton +Link +Lloyd +Logen +Loren +Luther +Lyndon +Lyon +Madix +Mahir +Markell +Matai +Mateus +Mattix +Matvey +Maxemiliano +Maximilien +Mazen +Mehtab +Meir +Mikail +Mikkel +Mikko +Milos +Mizael +Modesto +Mycah +Mykah +Nadav +Nakoa +Naveen +Nayan +Nazir +Neftali +Nicholaus +Nicky +Nikolay +Nikos +Niles +Nils +Nomar +Obadiah +Ojas +Ollie +Ollin +Omer +Omri +Palmer +Pascual +Patton +Paxon +Pieter +Platon +Rafi +Rajon +Randolph +Rasheed +Rawley +Rayansh +Reily +Reymond +Rhodes +Rhyder +Riaan +Richmond +Rishabh +Rishan +Rivaan +Roark +Robby +Robinson +Rollins +Rony +Roque +Rowdy +Russel +Ryatt +Rydan +Ryon +Saathvik +Sachin +Saeed +Sahaj +Samual +Sathvik +Schuyler +Scout +Sehaj +Severin +Shai +Shailen +Shamar +Shannon +Shay +Shia +Shivansh +Sinai +Slade +Soul +Srikar +Sumner +Taiyo +Talal +Tanush +Tarek +Teague +Ted +Terran +Terrion +Tiberius +Tidus +Timmy +Travon +Trayvon +Treyton +Treyvon +Tru +Tyce +Tyden +Tyren +Ubaldo +Vaibhav +Vinay +Vir +Viren +Virgil +Willian +Willis +Winter +Wylie +Wynn +Xayden +Xzander +Yanuel +Yaqub +Yareth +Yasin +Yegor +Yerick +Yisroel +Yonatan +Yonathan +Yoni +Yoshua +Yovany +Zadok +Zair +Zakariya +Zamari +Zyair +Zyon +Jacob +Ethan +Daniel +Jayden +Matthew +Noah +Alexander +Anthony +Nathan +David +Michael +Andrew +Julian +Benjamin +Isaac +Aiden +Angel +Mason +Liam +Adrian +Sebastian +Dylan +Joshua +Joseph +Aaron +Jonathan +Christopher +William +Elijah +Ryan +Isaiah +Logan +Jose +Lucas +James +Damian +Gabriel +Samuel +Kevin +Brandon +Christian +Mateo +Jackson +Luke +Caleb +Jesus +Dominic +Evan +Luis +Juan +Jordan +Jack +John +Nicholas +Jason +Carlos +Adam +Oliver +Diego +Josiah +Ian +Henry +Eli +Ivan +Robert +Jeremiah +Santiago +Wyatt +Leonardo +Xavier +Ayden +Gavin +Owen +Austin +Nathaniel +Hunter +Miguel +Elias +Vincent +Landon +Giovanni +Levi +Thomas +Alan +Alex +Zachary +Alejandro +Gael +Eric +Tyler +Victor +Justin +Bryan +Carter +Jaxon +Charles +Connor +Andres +Leo +Roman +Oscar +Francisco +Jesse +Abraham +Brayden +Ryder +Blake +Jorge +Eduardo +Cameron +Nolan +Steven +Joel +Max +Nicolas +Manuel +Antonio +Hudson +Richard +Emmanuel +Jaden +Cesar +Axel +Brian +Emiliano +Edward +Colton +Fernando +Maxwell +Jace +Ezekiel +Jeremy +Miles +Ezra +Micah +Chase +Parker +Grayson +Tristan +Andy +Jaxson +Kai +Javier +Omar +Ricardo +George +Aidan +Abel +Jonah +Kayden +Edgar +Jake +Kyle +Derek +Josue +Hector +Colin +Johnny +Lincoln +Emilio +Iker +Cristian +Brody +Sean +Lorenzo +Bradley +Timothy +Damien +Mark +Erick +Israel +Maximus +Mario +Rafael +Alexis +Fabian +Sergio +Marcus +Maximiliano +Cole +Luca +Asher +Joaquin +Devin +Kaleb +Raymond +Ruben +Martin +Cooper +Adan +Cruz +Marco +Theodore +Carson +Declan +Jameson +Esteban +Patrick +Bryce +Felix +Kenneth +Bentley +Riley +Calvin +Preston +Marcos +Jude +Erik +Peter +Roberto +Armando +Andre +Wesley +Paul +King +Angelo +Charlie +Dean +Pedro +Everett +Donovan +Pablo +Gerardo +Edwin +Easton +Sawyer +Silas +Jax +Emmett +Greyson +Kingston +Cash +Kaden +Saul +Grant +Cody +Emanuel +Jared +Arthur +Raul +Enrique +Jayce +Hayden +Maddox +Jeffrey +Maverick +Gustavo +Rodrigo +Shane +Travis +Mathew +Ismael +Harrison +Kaiden +Weston +Camden +Jaiden +Jase +Lukas +Noel +Cayden +Jaime +Matteo +Troy +Alfredo +Jasper +Malachi +Danny +Bryson +Dominick +Frank +Salvador +Moises +Hugo +Dante +Arturo +Caden +Romeo +Enzo +Johnathan +Allen +Avery +Elliot +Simon +Julio +Leon +Xander +Ryker +Ashton +Finn +Bruce +Leonel +Milo +Bennett +Tanner +Albert +Zayden +Brady +Alberto +Elliott +Zane +Trevor +Alonzo +Orion +Judah +Seth +Gage +Issac +Uriel +Louis +Skyler +Aden +Jay +Rylan +Zion +Myles +Noe +Aldo +Stephen +Chris +Jerry +Amir +Tony +Collin +Gregory +Griffin +Julius +Ramon +Graham +Spencer +Izaiah +Ernesto +Anderson +Isaias +Holden +Matias +Adriel +Conner +Desmond +Mauricio +Jayson +Nico +Beau +Jimmy +Phoenix +Cyrus +Moses +Yahir +Arjun +Nehemiah +Rowan +Thiago +Alec +August +Jaylen +Zander +Atticus +Guillermo +River +Alessandro +Milan +Chance +Joey +Tucker +Drake +Garrett +Clayton +Nixon +Shawn +Brayan +Darren +Maximilian +Phillip +Randy +Tyson +Nikolas +Eddie +Dillon +Rogelio +Corbin +Titus +Ace +Vihaan +Alonso +Ari +Derrick +Lawrence +Niko +Paxton +Ali +Braxton +Jett +Beckett +Kendrick +Emerson +Ezequiel +Ricky +Russell +Alvin +Drew +Jakob +Jayceon +Dennis +Joe +Lionel +Rocco +Vicente +Archer +Frankie +Johan +Malakai +Reed +Brendan +Quinn +Aarav +Gunner +Reid +Roger +Alfonso +Braden +Dallas +Gianni +Rene +Roy +Eden +Giovani +Landen +Quentin +Caiden +Marvin +Uriah +Valentino +Alvaro +Kian +Orlando +Scott +Solomon +Kameron +Rudy +Ulises +Zachariah +Ayaan +Damon +Dustin +Keegan +Valentin +Waylon +Allan +Bruno +Dexter +Royce +Casey +Felipe +Julien +Philip +Walter +Colt +Darius +Gunnar +Jonas +Peyton +Taylor +Cade +Kellan +Rohan +Sonny +Franklin +Nikolai +Ronan +Efrain +Rodolfo +Steve +Abram +Aryan +Byron +Giancarlo +Kyler +Misael +Ray +Santino +Ibrahim +Jairo +Jessie +Keith +Kellen +Nathanael +Trenton +Malcolm +Neymar +Nickolas +Ronald +Sam +Santos +Gideon +Rey +Walker +Xzavier +Cain +Kash +Octavio +Remy +Theo +Bryant +Cristopher +Dane +Marc +Marshall +Xavi +Zaiden +Amari +Dominik +Leland +Major +Marcelo +Matthias +Armani +Giovanny +Jefferson +Khalil +Muhammad +Odin +Tomas +Warren +Corey +Jalen +Luka +Prince +Gilbert +Louie +Luciano +Ramiro +Ryland +Alijah +Clark +Edison +Flynn +Gilberto +Karter +Messiah +Mike +Benicio +Brock +Devon +Junior +Maximo +Ty +Davis +Francis +Ishaan +Kieran +Kingsley +Kobe +Leandro +Nash +Arian +Elian +Larry +Mathias +Raiden +Rhys +Ariel +Freddy +Jaycob +Makai +Mohammad +Nelson +Raphael +Barrett +Brantley +Franco +Gonzalo +Yael +Agustin +Dario +Deacon +Dorian +Kenny +Leonard +Leonidas +Rayan +Zain +Benson +Brennan +Bronson +Frederick +Knox +Maxim +Rhett +Tobias +Tristen +Davian +Duke +Eugene +Finnegan +Jovanni +Kane +Malik +Tommy +Bodhi +Carmelo +Hank +Harry +Harvey +Humberto +Kelvin +Osvaldo +Pierce +Rex +Ulysses +Aron +Cohen +Donald +Ellis +Isai +Karson +Krish +London +Zackary +Adolfo +Alexzander +Ignacio +Jaxen +Sage +Shaun +Trey +Wilson +Cassius +Conor +Enoch +Kristian +Lucca +Trent +Zaid +Arlo +Bernardo +Braydon +Deegan +Gary +Jesiah +Neil +Roland +Soren +Urijah +Wade +Yusuf +Adrien +Curtis +Estevan +Grady +Kristopher +Mohammed +Reyansh +Toby +Armaan +Dilan +Efren +Elvis +Finley +Johann +Otto +Samson +Ahmed +Arman +Bobby +Camilo +Colby +Cristiano +German +Jair +Kody +Marlon +Mitchell +Rolando +Ronaldo +Ronin +Aditya +Aydin +Brixton +Conrad +Douglas +Eason +Hendrix +Jagger +Jamison +Lane +Lennon +Melvin +Robin +Talon +Winston +Abdiel +Carl +Cristobal +Davin +Dax +Geovanni +Justice +Kenji +Kolton +Lennox +Marley +Morgan +Remington +Rigoberto +Rory +Skylar +Aarush +Abner +Alexandro +Aydan +Ben +Brooks +Carlo +Dalton +Madden +Miguelangel +Porter +Rocky +Ronnie +Stanley +Will +Hamza +Harley +Jaydon +Jensen +Joziah +Kade +Lucian +Marcel +Royal +Sterling +Sylas +Adonis +Ares +Callum +Hassan +Nick +Tadeo +Tate +Yair +Abdullah +Alfred +Atlas +Azariah +Benny +Billy +Branden +Brett +Eliseo +Gino +Jovani +Legend +Maurice +Pranav +Braylon +Cannon +Dakota +Daxton +Jacoby +Mariano +Vince +Zechariah +Arnav +Cory +Darwin +Dashiell +Emmitt +Forrest +Gerald +Irvin +Jadon +Jaxton +Jon +Joseluis +Lance +Mayson +Raylan +Reese +Vivaan +Westley +Ahmad +Alden +Anson +Apollo +Augustine +Bowen +Dereck +Eddy +Elisha +Kareem +Keaton +Koa +Marcello +Raymundo +Taj +Zayne +Deangelo +Deven +Ean +Everardo +Jasiah +Joan +Juancarlos +Kyrie +Lewis +Mohamed +Nasir +Nestor +Quincy +Tatum +Yeshua +Brenden +Brodie +Crew +Elan +Fletcher +Isaak +Jai +Jeffery +Magnus +Maxx +Nikhil +Nikko +Ralph +Rayden +Baron +Benito +Brycen +Dawson +Juanpablo +Kalel +Landyn +Rishi +Stefan +Van +Vaughn +Aaden +Ajay +Boston +Braylen +Callen +Chad +Clyde +Crosby +Darian +Demetrius +Fox +Jeremias +Maison +Mekhi +Reece +Reynaldo +Terry +Vincenzo +Alek +Asa +Athan +Colten +Derick +Dhruv +Eligh +Ely +Ford +Izayah +Jericho +Jovanny +Kaeden +Kaleo +Kamden +Keoni +Lyric +Mikael +Pierre +Seamus +Vance +Wayne +Yousef +Zack +Ameer +Antony +Ayan +Brendon +Darien +Deandre +Ethen +Jadiel +Jedidiah +Kason +Killian +Lachlan +Markus +Merrick +Rio +Ryden +Terrence +Aren +Bodie +Callan +Emery +Izaac +Jaxx +Jovan +Kainoa +Kasen +Kenzo +Omari +Tejas +Youssef +Amare +Anton +Braeden +Braulio +Castiel +Cedric +Chandler +Damion +Dangelo +Fidel +Geovanny +Harlan +Hezekiah +Immanuel +Jaydan +Jerome +Kaito +Marko +Maximillian +Micheal +Princeton +Quintin +Ramses +Rodney +Said +Tom +Veer +Westin +Yosef +Arvin +Beckham +Davion +Eder +Elmer +Ernest +Favian +Gordon +Jordi +Josh +Kayleb +Keanu +Kole +Lee +Lev +Nathen +Presley +Truman +Achilles +Andrey +Anish +Ansh +Azael +Bishop +Brent +Elvin +Emir +Hayes +Heriberto +Jacobo +Jaeden +Jamie +Jencarlos +Jet +Jovany +Kabir +Karl +Kayson +Ken +Keven +Lamar +Mack +Ocean +Siddharth +Trace +West +Zavier +Zayn +Ansel +Arley +Augustus +Cason +Craig +Dwayne +Ever +Fredy +Gauge +Gregorio +Jordy +Kent +Linus +Memphis +Mustafa +Oswaldo +Otis +Reginald +Samir +Sammy +Santana +Sheldon +Sione +Sullivan +Vladimir +Yaseen +Zaire +Zephyr +Aidyn +Andreas +Arnold +Atharv +Avi +Bo +Chace +Clay +Dash +Dayton +Deshawn +Ewan +Ezio +Faris +Forest +Gerard +Gerson +Glenn +Guy +Heath +Irving +Jordyn +Justus +Karthik +Kylan +Kymani +Leif +Levon +Matix +Milton +Noam +Osiris +Payton +Quinton +Reagan +Sahib +Sebastien +Stone +Thaddeus +Tiago +Wallace +Zev +Aedan +Alexavier +Armen +Beck +Cairo +Casper +Danilo +Darrell +Demian +Dev +Devyn +Duncan +Gibson +Hansel +Isael +Isiah +Isidro +Jamal +Jamir +Jonathon +Koda +Konner +Luc +Massimo +Mikah +Mikel +Nigel +Randall +Rickey +Rico +Rishaan +Ryu +Shayan +Stephan +Trystan +Tyrone +Abhinav +Abran +Alexandre +Amos +Anakin +Bill +Blaise +Donnie +Eleazar +Emory +Finnley +Gianluca +Grey +Harper +Isac +Jayse +Jaysen +Jaziel +Jeramiah +Kain +Karim +Keenan +Lino +Lucio +Mattias +Neel +Renzo +Reuben +Rowen +Sky +Willem +Yash +Yoel +Zeke +Zephaniah +Zeus +Aaryan +Anay +Anirudh +Caesar +Cristofer +Damani +Devan +Eliel +Eliot +Emmet +Esai +Geoffrey +Greg +Harlem +Harold +Hernan +Hiram +Howard +Jacky +Jael +Jionni +Johnnie +Kennedy +Lochlan +Lucius +Mauro +Maxton +Mikhail +Noa +Oskar +Osmar +Patricio +Phineas +Rayyan +Roderick +Semaj +Shiloh +Titan +Todd +Torin +Wilder +Yahya +Adler +Advik +Alessio +Aurelio +Aven +Aydenn +Bailey +Bayron +Benedict +Broderick +Casen +Channing +Denzel +Deon +Eros +Erwin +Ezrah +Fred +Freddie +Gannon +Gionni +Henrik +Ishan +Jaxxon +Jeff +Jeshua +Kruz +Laith +Lars +Lawson +Lester +Lyndon +Maxson +Nahum +Nate +Paulo +Rome +Sincere +Sunny +Thatcher +Tobin +Uziel +Vedant +Willie +Yadiel +Aayden +Adalberto +Alistair +Andrei +Bernard +Boaz +Boden +Brennen +Ceasar +Cedar +Clinton +Constantine +Corban +Dan +Dion +Dominique +Eliam +Elyas +Emil +Ilan +Itzae +Jad +Jahir +Jarvis +Javon +Johnathon +Johnpaul +Johnson +Josef +Josias +Kalani +Kiran +Lazaro +Leopoldo +Leroy +Marquis +Michaelangelo +Moshe +Neo +Ozzy +Ren +Reyes +Rick +Sahil +Salvatore +Sidney +Tariq +Teagan +Viaan +Yasiel +Yohan +Yuvraj +Aayan +Amadeo +Antoine +Aram +Arrow +Asael +Aston +Atreyu +Axl +Braiden +Branson +Brysen +Case +Clarence +Curren +Dariel +Domingo +Donte +Dyllan +Edmund +Geovany +Gray +Hasan +Ira +Izek +Jerimiah +Jorden +Josemanuel +Kalvin +Koen +Kolten +Kyson +Lian +Maddix +Masen +Matheo +Miller +Narek +Norman +Paolo +Rian +Ronav +Ted +Teo +Terence +Terrance +Tristian +Varun +Vihan +Viktor +Wes +Zahir +Zayan +Aaiden +Adair +Aleksander +Anders +Atom +Bear +Blaine +Blaze +Bronx +Caspian +Coby +Cormac +Cy +Daren +Darin +Darnell +Darryl +Darsh +Daylen +Deklan +Dezmond +Dillan +Domenic +Edson +Eitan +Eliazar +Enoc +Eshaan +Franky +Hyrum +Idris +Isa +Izaak +Jacen +Jermaine +Jiovanni +Jonatan +Jonny +Joseangel +Jullian +Kale +Kannon +Kasey +Keagan +Keon +Keyon +Kolby +Korbin +Lamont +Luiz +Luther +Maddux +Maximilliano +Mylo +Nikita +Oren +Ori +Raheem +Remi +Rylee +Stuart +Tai +Talan +Trayvon +Viraj +Wolfgang +Yandel +Zac +Zackery +Zakai +Abdulrahman +Adiel +Aizen +Alain +Angad +Aria +Aries +Armin +Arya +Bane +Brando +Brighton +Caeden +Camron +Cian +Claudio +Clemente +Dandre +Dewayne +Don +Draven +Dyland +Eithan +Ervin +Esau +Fisher +Gadiel +Genaro +Guadalupe +Haven +Herman +Hugh +Ishmael +Jaidyn +Jamari +Jaxsen +Jaycee +Jaycion +Jaydin +Jayven +Jean +Jed +Jeyden +Kairo +Kamari +Kelly +Kory +Langston +Layne +Lloyd +Lonnie +Lucien +Mahdi +Maksim +Marcelino +Mccoy +Monte +Murphy +Musa +Naythan +Nihal +Nikola +Obadiah +Om +Osiel +Paris +Rhyder +Rithvik +Romel +Saad +Shaurya +Slater +Soham +Surya +Teddy +Trinidad +Triston +Tyrus +Wiley +Yahel +Zamir +Aadi +Abhay +Abhiram +Agastya +Akash +Aksel +Amaru +Amin +Ammar +Andrez +Arie +Aris +Ashwin +Austyn +Axton +Ayush +Aziel +Brenton +Bryden +Canyon +Conan +Cullen +Daryl +Davon +Dimitri +Elio +Ender +Ethyn +Fabrizio +Gavyn +Giuseppe +Graeme +Greysen +Hadi +Hawk +Henri +Herbert +Honor +Hussein +Huxley +Imran +Ismail +Jalil +Jasiel +Jaythan +Jaziah +Jeronimo +Jessiah +Jim +Kadin +Kaine +Karsten +Kavin +Keshav +Khang +Kohen +Konnor +Konrad +Kris +Kurt +Leeland +Leobardo +Lyle +Maceo +Maddex +Makaio +Manny +Marcellus +Marius +Mikey +Monroe +Nehemias +Nery +Nicolai +Noble +Ozzie +Quinten +Raghav +Ravi +Reef +Rylen +Salomon +Samarth +Seven +Shant +Shreyas +Siddhant +Sir +Sire +Stellan +Tayden +Theodor +Tristin +Tyree +Ved +Vito +Zayd +Zen +Aayush +Adriano +Advaith +Akhil +Akiva +Akshay +Alaric +Alexsander +Alston +Alton +Amado +Amani +Ander +Angus +Anibal +Atharva +Augustin +Austen +Aviel +Avraham +Bently +Benton +Bilal +Brad +Brice +Brooklyn +Cael +Caius +Cal +Calder +Clifford +Clint +Cylus +Darion +Dempsey +Denis +Devlin +Eamon +Edan +Edgardo +Edric +Eliezer +Emmit +Emrys +Ephraim +Ethaniel +Evin +Flavio +Genesis +Geovani +Geronimo +Gus +Hans +Harris +Hayk +Ibraheem +Jahaziel +Jamel +Jan +Jareth +Javen +Jenson +Jeremih +Jhonny +Joab +Jules +Kadyn +Kaison +Kaius +Kamron +Kamryn +Karan +Karas +Kaydin +Kekoa +Kelton +Kendall +Khaled +Krishna +Kurtis +Kyan +Kye +Kyree +Layton +Lenny +Loukas +Makoa +Matt +Maxon +Mihir +Mykah +Nova +Osbaldo +Perseus +Ranveer +Rashad +Rasheed +Richie +Ridge +Rigo +Rogan +Rommel +Rooney +Sabastian +Sameer +Sami +Syed +Tiberius +Timoteo +Trevin +Ubaldo +Ulisses +Umar +Vidal +Wolf +Yobani +Yuvan +Zach +Zachery +Zyaire +Abbas +Abelardo +Abiel +Adin +Adryan +Advait +Ahaan +Akira +Alen +Amar +Amaury +Ambrose +Archie +Arhaan +Arin +Arion +Arjan +Arlen +Ash +Avyan +Azriel +Bode +Braedyn +Briggs +Campbell +Camren +Charley +Chayse +Cillian +Clifton +Dale +Daron +Derik +Diesel +Dmitry +Dwight +Earl +Eiden +Everest +Finnian +Fredrick +Gabino +Gaige +Garrison +Giorgio +Giovany +Graysen +Hakeem +Hamilton +Hendrick +Isacc +Issa +Jaiveer +Jaren +Jaron +Jathan +Jaylan +Jaylin +Jayvin +Jeriah +Jessy +Jordon +Kamran +Karmelo +Kassius +Keshawn +Khalid +Kiyan +Kylen +Kyran +Leopold +Levin +Leviticus +Link +Linkin +Lisandro +Mac +Malakhi +Malaki +Manraj +Michelangelo +Mickey +Nakoa +Neal +Niall +Nile +Nirvaan +Oakley +Pete +Pharaoh +Ramsey +Reeve +Reggie +Renato +Reyli +Rhodes +Rider +Ritchie +Roan +Robbie +Rockwell +Saeed +Samar +Selim +Servando +Shaan +Shay +Shlok +Simeon +Tahj +Terrell +Tevin +Thor +Thurston +Tim +Torsten +TRUE +Turner +Vaibhav +Vernon +Vincente +Vinny +Yousif +Aarnav +Abimael +Addison +Adonai +Aidric +Akshaj +Alanzo +Amadeus +Amaziah +Anand +Antwan +Aran +Arath +Arav +Arham +Arjay +Avelardo +Aviv +Ayman +Aziz +Baker +Bastian +Blas +Boyd +Bradly +Bradyn +Caelan +Cai +Camdyn +Carsyn +Carver +Cashton +Cavan +Cayson +Cecil +Celso +Cisco +Clement +Coleman +Coltin +Corbyn +Cortez +Daemon +Damari +Dany +Dave +Davi +Deagan +Demitri +Dex +Donavan +Donavin +Drayden +Duane +Eben +Edmond +Eian +Elden +Elyjah +Emile +Farid +Faustino +Fausto +Federico +Fermin +Francesco +Gareth +Geo +Gevorg +Gian +Gibran +Grayden +Gurshaan +Haiden +Hanson +Houston +Idan +Ilias +Isayah +Izaan +Jacinto +Jade +Jakson +Jamar +Jamil +Jancarlo +Jancarlos +Jasraj +Jaydenn +Jaykob +Jeancarlo +Jeancarlos +Jedediah +Jimmie +Jin +Johny +Josemiguel +Juandiego +Juanmanuel +Judson +Kael +Kaidan +Kanoa +Karlo +Kase +Kavi +Kayne +Kaysen +Kellin +Kiaan +Kimi +Kirk +Kolin +Korey +Kyden +Kyrillos +Kyron +Lazarus +Leevi +Leighton +Loki +Luisangel +Lux +Lyon +Lyrik +Mace +Malek +Marciano +Markel +Mataio +Maximilien +Neev +Nevin +Nicodemus +Nyjah +Ojas +Orrin +Pavel +Pax +Raffi +Rahim +Raider +Rayhan +Raziel +Reilly +Ridley +Robby +Rohit +Ronen +Ronny +Rony +Rosendo +Rowdy +Sarkis +Saulo +Saxon +Shivam +Sidharth +Skye +Sriram +Suraj +Sylus +Sylvester +Syrus +Tavin +Teegan +Tenzin +Tigran +Travon +Tyrell +Valente +Viggo +Vikram +Vinh +Virgil +Vishnu +Willy +Xaiden +Xzander +Yazan +Yeray +Yerik +Yovani +Yuma +Yurem +Yuto +Zaidyn +Zakariya +Zakary +Zuriel +Zyler +Aamir +Aariz +Abdulaziz +Adel +Adyn +Ahmir +Aidden +Aleczander +Alfonzo +Alister +Aman +An +Anh +Aric +Arius +Arshan +Artin +Aslan +Athen +Aubrey +Aurelius +Avan +Avenir +Avin +Azrael +Barry +Beaux +Bladimir +Boris +Bosco +Bradford +Braedon +Brecken +Brennon +Breyden +Calix +Canaan +Carsen +Chauncey +Chayton +Chaz +Coen +Cristo +Cruze +Cuauhtemoc +Curran +Dakari +Damen +Damir +Damoni +Darrin +Darrius +Dashawn +Deanthony +Delfino +Demarco +Demetri +Denim +Desean +Didier +Dillinger +Dilraj +Dionicio +Dresden +Eber +Egan +Ekam +Eldon +Elie +Eliott +Elon +Eloy +Eugenio +Evander +Even +Fabio +Fabricio +Faisal +Farhan +Fynn +Garren +Garry +Gavriel +Gene +Gil +Gurtaj +Haroon +Harout +Hussain +Iann +Ilyas +Inaki +Indiana +Izael +Jabari +Jaceyon +Jalon +Jarred +Jarren +Jarrett +Jasen +Jassiel +Javian +Javion +Jawad +Jaxin +Jayvon +Jayvyn +Jessejames +Jireh +Joao +Job +Johncarlos +Johnmichael +Joseantonio +Jowell +Jr +Juelz +Jun +Kamal +Kamren +Karlos +Karol +Karsyn +Kaydon +Kenai +Khai +Kidus +Klaus +Koby +Korben +Korbyn +Kristofer +Kyren +Landin +Levy +Lex +Lior +Lucan +Luigi +Makana +Makhi +Marquise +Mars +Marwan +Mateus +Mathis +Maximino +Mehtab +Menachem +Merlin +Minh +Morris +Nabil +Naeem +Naim +Niklas +Nolen +Olin +Ollie +Oryan +Osman +Percy +Rajan +Ranger +Reza +Riker +Rishab +Robinson +Rock +Ron +Rusty +Ryley +Sai +Saif +Sanjay +Saud +Shai +Shaya +Shea +Shepard +Shia +Shiv +Shivansh +Shravan +Shreyan +Smith +Sohan +Stefano +Sultan +Sutton +Syncere +Taran +Tarun +Thorin +Timmy +Tj +Tonatiuh +Toren +Tristyn +Tyce +Tye +Tyrese +Vander +Wesson +Westyn +Wilfredo +Wilmer +Xavian +Yarel +Yareth +Zacchaeus +Zade +Zak +Zakaria +Zeppelin +Aakash +Abdirahman +Abdul +Abdurrahman +Abisai +Abrahm +Adonay +Aedyn +Ahmari +Aj +Akram +Aldair +Alejo +Amador +Ameen +Amit +Antwon +Arden +Arias +Arik +Aristotle +Armon +Arnulfo +Arron +Arsh +Art +Artemio +Asante +Auden +Ayrton +Barron +Basil +Baylor +Bayne +Bentlee +Blue +Bob +Boone +Bowie +Brannon +Britain +Broxton +Calen +Calin +Callahan +Calum +Camryn +Canon +Carmello +Cartier +Cary +Cashius +Coleton +Colson +Colston +Colter +Cris +Dajon +Dani +Darby +Darrel +Darwyn +Dashel +Daven +Daveon +Daylan +Daymian +Deen +Deion +Demarion +Demir +Desi +Devansh +Dhruva +Dimitrios +Dov +Egypt +Elder +Eliah +Ellison +Elton +Eren +Eriberto +Erickson +Ernie +Eshan +Evren +Eyan +Eythan +Eziah +Fahad +Ferris +Filip +Foster +Galen +Gaston +Gaven +Gianmarco +Grason +Gurjot +Gurnoor +Gurveer +Hasani +Helios +Hilario +Hosea +Hubert +Isreal +Iver +Izeah +Izrael +Izreal +Jaciel +Jacques +Jadyn +Jakobe +Jamaal +Jamarion +Jamin +Januel +Jaret +Jarrod +Jasson +Javi +Jaydyn +Jaylon +Jaylyn +Jayvion +Jc +Jethro +Jiraiya +Joeziah +Johannes +Jones +Juanjose +Kailash +Kaimana +Karam +Kavish +Keane +Kei +Keiran +Kenan +Kenton +Khairi +Khristian +Kiet +Kiyoshi +Koah +Kodi +Konstantin +Kooper +Kota +Kushal +Laszlo +Leander +Legacy +Lemuel +Lenin +Leonid +Leyton +Liem +Lizandro +Logen +Lysander +Madhav +Madix +Marcell +Marcoantonio +Marek +Marlo +Marquez +Marshawn +Mateen +Mattix +Mazen +Micaiah +Mitchel +Montgomery +Mordechai +Napoleon +Nathanial +Naveen +Navin +Nayan +Nazareth +Nazir +Nicco +Nicolo +Nihaal +Niklaus +Nyle +Obed +Octavian +Oden +Odysseus +Olivier +Ollin +Onyx +Orin +Oziel +Palmer +Penn +Pierson +Rain +Raj +Rajon +Rajveer +Rami +Randolph +Raudel +Raven +Raylen +Raymon +Rebel +Refugio +Rehan +Riku +Rivers +Roen +Romello +Roque +Rosario +Roshan +Rudra +Ruslan +Ryler +Saatvik +Saleh +Salem +Sammuel +Sandro +Sasha +Satvik +Savion +Shayaan +Shayne +Shepherd +Shiven +Silvestre +Sirius +Stetson +Stryker +Sutter +Sylar +Sylis +Taha +Taiyo +Takeo +Talin +Tanay +Tanish +Tarek +Tavion +Tennessee +Tevita +Thelonious +Tidus +Tiger +Tilden +Townes +Tripp +Tru +Truth +Tytus +Unknown +Usman +Uzziah +Vahan +Vahe +Valor +Vansh +Viraaj +Vivan +Vyom +Westen +Williams +Wynn +Xayden +Yaakov +Yasin +Yaziel +Yehoshua +Yonatan +Yonathan +Yoni +Yordi +Yusef +Zaden +Zahid +Zakariah +Zaylen +Zephan +Ziaire +Zian +Zubin +Zyan +Zyon +Aaditya +Aarya +Abbott +Abdias +Abe +Abhishek +Abir +Adhrit +Adi +Adon +Advay +Aeden +Aero +Agustine +Ajani +Alder +Aldon +Aldrin +Alekzander +Alexandros +Alexei +Alexys +Ameir +Amiel +Ammon +Amogh +Andersen +Andrik +Aneesh +Anjel +Anthoni +Aramis +Areg +Ariv +Armand +Armoni +Arnoldo +Arsen +Artem +Aryeh +Ascher +Askari +Astin +Audie +Augusto +Aum +Avyaan +Balthazar +Baxter +Bayan +Bennie +Bert +Blaize +Bradlee +Brandin +Brandt +Brant +Braven +Brayton +Brentley +Broden +Bryton +Cadence +Caellum +Caine +Caison +Cale +Camari +Caydon +Cayleb +Chael +Champ +Chayce +Cheveyo +Ciaran +Clarke +Claude +Cornelius +Cyril +Dael +Dallin +Dameon +Danniel +Danthony +Darrien +Darrion +Darvin +Daryn +Dashiel +Davit +Dawit +Daylin +Decker +Demarcus +Demetrio +Deniz +Destin +Devonte +Dhilan +Dirk +Domenico +Donatello +Donavon +Donnell +Donny +Dontay +Draco +Dragon +Dylann +Dylen +Eames +Eathan +Ebenezer +Eberardo +Edrick +Eduard +Edvin +Eidan +Eithen +Ej +Elih +Elisandro +Eliu +Eliyah +Emari +Ericson +Esa +Esaias +Ezana +Fares +Fenix +Filiberto +Finlay +Flint +Frederic +Gabryel +Gamaliel +Gavan +Gavino +Geno +Gevork +Gianfranco +Giuliano +Glen +Gor +Gryffin +Gurshan +Gurtaaj +Hagen +Hakop +Hamish +Hardy +Haris +Haruki +Hashim +Hendrik +Heston +Hiroshi +Holland +Holt +Horacio +Hrach +Hridhaan +Iain +Ilya +Iman +Indigo +Izak +Izan +Izaya +Izel +Jaasiel +Jacari +Jaedon +Jahan +Jahmir +Jaiceon +Jairus +Jaleel +Jameel +Jaquan +Jasir +Javien +Jayen +Jayin +Jeevan +Jenaro +Jeremie +Jeremyah +Jiovanny +Jishnu +Joeseph +Josemaria +Joshuah +Jossue +Jozef +Juvenal +Kace +Kage +Kahlil +Kaidyn +Kalen +Kalib +Kasper +Kato +Kayvon +Keion +Keir +Kelan +Keller +Kendric +Kendrix +Kenrick +Kevyn +Khali +Khoa +Khristopher +Khyler +Kirill +Knight +Kolbe +Kolt +Krew +Kwame +Kylin +Kyo +Lakai +Landan +Laron +Lathan +Lauro +Lavell +Lazlo +Lorenz +Lyam +Mackenzie +Mael +Mahmoud +Maleek +Maliki +Manases +Mantej +Marcjacob +Marion +Markell +Marquel +Masiah +Massimiliano +Matan +Matthieu +Matvey +Maxximus +Meir +Mikail +Mikko +Mister +Mohamad +Morrison +Morrissey +Murray +Myron +Nabeel +Nadav +Nael +Nakai +Natan +Nayden +Nazar +Neftali +Neiko +Neithan +Niam +Niccolo +Nicola +Nikkolas +Nils +Nivaan +Noey +Nomar +Norberto +Oleg +Omri +Oswin +Pascal +Piers +Prabhjot +Prescott +Quenton +Quintus +Radley +Rahul +Rainier +Rehaan +Reily +Renner +Riaan +Rodrick +Roel +Romario +Romero +Roscoe +Rowyn +Rufus +Ruvim +Ryo +Sagan +Saharsh +Salim +Salman +Sampson +Sander +Sayed +Scout +Sehaj +Severin +Shannon +Sherwin +Shrihan +Siddhanth +Siddhartha +Sina +Slade +Sohum +Sota +Stavro +Stewart +Sukhman +Sven +Sydney +Taiki +Taisei +Takoda +Tanav +Tashawn +Taylen +Tegan +Tennyson +Teodoro +Thien +Trajan +Trevon +Treyson +Truett +Trysten +Tyren +Tyshawn +Ulices +Ulyses +Umair +Uri +Urias +Vaishnav +Vann +Victormanuel +Vinnie +Vittorio +Vonn +Waleed +Wilber +Wilbert +Wylder +Yago +Yahshua +Yamir +Yisrael +Yousuf +Yovanni +Yovany +Yuki +Zackariah +Zadkiel +Zavion +Zayed +Zixuan +Zyair +Noah +Jacob +Ethan +Daniel +Alexander +Matthew +Jayden +Anthony +Sebastian +David +Michael +Andrew +Julian +Aiden +Benjamin +Nathan +Liam +Mason +Isaac +Dylan +Aaron +Angel +James +Adrian +Logan +Elijah +William +Joshua +Joseph +Christopher +Lucas +Jonathan +Jose +Ryan +Kevin +Isaiah +Damian +Samuel +Gabriel +Luke +Oliver +Dominic +Mateo +Christian +Caleb +Brandon +Jackson +Jesus +Evan +Jason +Diego +Adam +John +Santiago +Luis +Nicholas +Jack +Ian +Leonardo +Ivan +Jordan +Juan +Henry +Carlos +Josiah +Levi +Robert +Wyatt +Eli +Owen +Jeremiah +Xavier +Austin +Miguel +Hunter +Nathaniel +Giovanni +Elias +Eric +Gavin +Landon +Ayden +Leo +Carter +Vincent +Jaxon +Alejandro +Thomas +Alex +Alan +Charles +Connor +Tyler +Victor +Roman +Oscar +Abraham +Max +Jorge +Zachary +Steven +Cameron +Hudson +Ryder +Brayden +Bryan +Ezra +Francisco +Andres +Justin +Grayson +Gael +Nolan +Emmanuel +Nicolas +Emiliano +Jesse +Richard +Antonio +Axel +Blake +Jace +Kai +Ezekiel +Joel +Kayden +Jeremy +Javier +Brian +Andy +Colton +Eduardo +Parker +Abel +Micah +Maxwell +Edward +Jaxson +Omar +Miles +Lincoln +Manuel +George +Ricardo +Jaden +Asher +Iker +Tristan +Cesar +Maximus +Theodore +Fernando +Chase +Brody +Emilio +Erick +Marcus +Colin +Joaquin +Jonah +Derek +Luca +Aidan +Bradley +Sergio +Edgar +Jake +Martin +Mark +Mario +Jameson +Lorenzo +Alexis +Hector +Israel +Kyle +Fabian +Maverick +Rafael +Timothy +Wesley +Maximiliano +Carson +Sean +Calvin +Cristian +Kenneth +Declan +Cole +Felix +Josue +Adan +Raymond +Roberto +Cooper +Dean +Johnny +Patrick +Everett +Ruben +Kaleb +Marco +Ismael +Paul +Preston +Greyson +Damien +Easton +Cruz +Donovan +Peter +Erik +Jax +Silas +Esteban +Emmett +King +Armando +Edwin +Harrison +Grant +Maddox +Jude +Weston +Camden +Cody +Noel +Bryce +Sawyer +Arthur +Pedro +Jared +Andre +Kingston +Frank +Kaiden +Gerardo +Troy +Pablo +Angelo +Kaden +Moises +Elliot +Allen +Emanuel +Jayce +Jasper +Bentley +Raul +Malachi +Leonel +Matteo +Enrique +Marcos +Jase +Romeo +Devin +Bennett +Caden +Jeffrey +Arturo +Ashton +Charlie +Lukas +Mathew +Xander +Saul +Travis +Avery +Hayden +Jaime +Enzo +Riley +Simon +Stephen +Zayden +Dominick +Julio +Cash +Louis +Hugo +Thiago +August +Gustavo +Shane +Finn +Julius +Dante +Salvador +Leon +Milan +Jayson +Milo +Arjun +Bruce +Clayton +Judah +Bryson +Ryker +Uriel +Alfredo +Myles +Skyler +Danny +River +Desmond +Elliott +Jaiden +Albert +Adriel +Amir +Zane +Brady +Ernesto +Seth +Zion +Alberto +Beau +Cayden +Rodrigo +Noe +Rowan +Tony +Isaias +Trevor +Izaiah +Jay +Ali +Alonzo +Gregory +Jerry +Aarav +Ricky +Tanner +Ace +Chris +Collin +Gage +Guillermo +Archer +Orion +Nico +Graham +Darren +Jayceon +Dallas +Spencer +Tyson +Lawrence +Johnathan +Maximilian +Shawn +Cyrus +Phoenix +Ramon +Titus +Jett +Atticus +Jimmy +Mauricio +Moses +Nixon +Eddie +Nehemiah +Braxton +Aldo +Brayan +Clark +Aden +Alonso +Ezequiel +Gunner +Rocco +Bodhi +Garrett +Matias +Ronan +Roy +Vicente +Conner +Emerson +Yahir +Anderson +Karter +Zander +Peyton +Rylan +Griffin +Issac +Jaylen +Reid +Ari +Philip +Joey +Phillip +Tucker +Alessandro +Drew +Neymar +Corbin +Felipe +Reed +Walter +Alec +Jakob +Randy +Kian +Nikolai +Vihaan +Marvin +Scott +Chance +Lionel +Russell +Beckett +Caiden +Kameron +Luciano +Derrick +Eden +Kash +Paxton +Royce +Ulises +Valentino +Quentin +Roger +Santino +Bruno +Joe +Nikolas +Odin +Rene +Orlando +Quinn +Remy +Uriah +Dillon +Kellan +Malakai +Muhammad +Holden +Johan +Knox +Dorian +Francis +Waylon +Winston +Alfonso +Brendan +Landen +Marcelo +Mathias +Niko +Theo +Cain +Duke +Gianni +Neil +Ronald +Wilson +Abram +Hendrix +Keegan +Lucca +Luka +Rayan +Walker +Braden +Ellis +Malcolm +Matthias +Taylor +Alvin +Damon +Franklin +Ronin +Rudy +Sonny +Rhys +Rogelio +Sam +Dominik +Dustin +Frankie +Rey +Rohan +Davian +Ibrahim +Zachariah +Kyler +Bryant +Leonidas +Warren +Alvaro +Byron +Colt +Giovani +Gunnar +Jonas +Messiah +Raphael +Agustin +Barrett +Larry +Ryland +Alijah +Cade +Dennis +Harvey +Ishaan +Kane +Nathanael +Osvaldo +Ray +Royal +Solomon +Ayaan +Brooks +Efrain +Keith +Marc +Arlo +Brantley +Tobias +Atlas +Dexter +Eason +Finnegan +Gary +Kade +Pierce +Tomas +Valentin +Camilo +Devon +Finley +Leandro +Misael +Prince +Rory +Steve +Zackary +Allan +Ben +Giovanny +Gonzalo +Kieran +Marshall +Rodolfo +Zaiden +Dario +Julien +Mohammad +Ramiro +Sage +Deacon +Drake +Enoch +Kendrick +Malik +Yusuf +Cristiano +Darius +Franco +Gideon +Gilbert +Jaycob +Leland +Trenton +Xzavier +Aryan +Frederick +Remington +Rex +Tommy +Estevan +Gilberto +Kenny +Leonard +Brock +Cassius +Dalton +Jessie +Nelson +Nickolas +Octavio +Porter +Alfred +Arnav +Donald +German +Giancarlo +Jairo +Kellen +Maximo +Otto +Roland +Tate +Arian +Davis +Grady +Nash +Raiden +Amari +Apollo +Benson +Bronson +Conrad +Corey +Dane +Freddy +Hamza +Harry +Jefferson +Kristopher +London +Madden +Major +Maxim +Rolando +Samson +Ariel +Armani +Bowen +Casey +Mike +Ulysses +Kingsley +Morgan +Quincy +Adonis +Ares +Armaan +Asa +Clyde +Douglas +Eliseo +Ignacio +Jamison +Killian +Rocky +Ronaldo +Khalil +Lance +Maurice +Ty +Yair +Darian +Dax +Lennox +Rigoberto +Siddharth +Soren +Sterling +Yael +Aron +Conor +Edison +Elian +Kelvin +Louie +Lucian +Rayden +Van +Zain +Carlo +Curtis +Elvis +Joziah +Markus +Reece +Tadeo +Dakota +Eugene +Flynn +Kayson +Santos +Zechariah +Aditya +Dilan +Marlon +Miguelangel +Stanley +Zayn +Abdullah +Alexzander +Cristopher +Emmitt +Ford +Hank +Jovanni +Kyrie +Legend +Mitchell +Reyansh +Rhett +Urijah +Abdiel +Anson +Brennan +Callan +Castiel +Cohen +Cristobal +Geovanni +Junior +Kristian +Mohammed +Vivaan +Wade +Yousef +Anakin +Arman +Ayan +Irvin +Jaxton +Karson +Mayson +Mohamed +Trent +Westin +Zaid +Zayne +Ahmad +Augustus +Brycen +Forrest +Jedidiah +Jensen +Jovani +Koa +Makai +Terry +Will +Adolfo +Adrien +Colby +Gino +Isai +Jalen +Kalel +Kamden +Lane +Lewis +Mariano +Skylar +Toby +Xavi +Alden +Anders +Boston +Brixton +Crosby +Humberto +Jai +Justice +Kobe +Princeton +Ramses +Robin +Shaun +Terrence +Wayne +Baron +Benny +Davin +Dawson +Deandre +Deegan +Efren +Fletcher +Jagger +Jaxen +Keaton +Marcel +Melvin +Santana +Vaughn +Westley +Achilles +Ahmed +Colten +Darien +Eddy +Gannon +Jadon +Jericho +Zaire +Augustine +Branden +Brodie +Callen +Dhruv +Ernest +Kody +Magnus +Marley +Nikhil +Nikko +Vince +Zeus +Aaden +Arya +Carl +Dashiell +Eligh +Elisha +Harley +Jacoby +Jamie +Kareem +Kolton +Mikel +Nick +Reagan +Reese +Tatum +Tiago +Abner +Alexandro +Brenden +Carmelo +Cory +Daxton +Eder +Hayes +Howard +Jair +Jasiah +Johnpaul +Jordy +Joseluis +Juancarlos +Kasen +Keanu +Merrick +Pranav +Tristen +Vincenzo +Zephyr +Aarush +Bobby +Cairo +Cannon +Chandler +Dash +Ean +Kason +Ken +Lennon +Maxx +Omari +Willie +Yosef +Zeke +Athan +Aydan +Billy +Bo +Braydon +Chad +Elmer +Gerard +Harold +Jeffery +Johann +Josh +Krish +Lee +Marcelino +Oswaldo +Ronnie +Tobin +Aydin +Benicio +Callum +Demetrius +Derick +Devan +Gordon +Hezekiah +Immanuel +Irving +Jamal +Jeremias +Kainoa +Maison +Mattias +Mustafa +Otis +Quinton +Rishi +Talon +Titan +Aram +Azariah +Boden +Clay +Dimitri +Gerald +Grey +Hassan +Izaac +Jaydon +Joan +Jovan +Kenji +Nasir +Samir +Stone +Sullivan +Wolfgang +Yeshua +Bode +Broderick +Caesar +Dariel +Deven +Eleazar +Ever +Finnley +Justus +Kamari +Keoni +Lev +Mekhi +Nathen +Rayyan +Reynaldo +Sky +Trey +Zayd +Ansel +Anton +Arley +Axl +Bodie +Brett +Denzel +Elon +Emil +Ethen +Ilan +Jaeden +Juanpablo +Keenan +Kennedy +Levon +Rodney +Stefan +Thaddeus +Aayden +Ajay +Bishop +Cason +Eitan +Emery +Emmet +Fidel +Fredy +Jionni +Jon +Lachlan +Massimo +Nestor +Nikita +Rashad +Rian +Rio +Sylas +Tim +Vance +Youssef +Zack +Zahir +Zavier +Aksel +Braeden +Cal +Dan +Darrell +Darwin +Deangelo +Emir +Fox +Harper +Henrik +Hugh +Ishan +Ishmael +Jeshua +Jonathon +Jordi +Jovanny +Kain +Kylan +Lawson +Lucio +Lyric +Mauro +Miller +Rick +Rico +Rome +Rowen +Sami +Vladimir +Aaryan +Ansh +Antony +Beckham +Benito +Braulio +Brent +Demian +Eliot +Federico +Gianluca +Hansel +Heriberto +Hernan +Isaak +Jacobo +Jet +Kabir +Karim +Kent +Khalid +Linus +Mack +Marcello +Ralph +Raylan +Sahil +Samarth +Sebastien +Shayan +Slater +Yuvraj +Alaric +Alistair +Axton +Azael +Bernardo +Blaise +Bronx +Chace +Dangelo +Elvin +Everest +Ewan +Ezrah +Gian +Graysen +Jamari +Jencarlos +Jerome +Jiovanni +Kekoa +Kruz +Landyn +Luc +Michelangelo +Mikhail +Musa +Neo +Taj +Terrell +Thatcher +Viktor +Yasiel +Aren +Braylen +Braylon +Brendon +Channing +Clinton +Danilo +Dereck +Dev +Elan +Ender +Hans +Harlan +Izaak +Jad +Joseangel +Josias +Karl +Kaysen +Kiran +Konnor +Lyle +Maxton +Micheal +Mikah +Monte +Neel +Ocean +Randall +Remi +Richie +Rishaan +Rylen +Shaurya +Sincere +Terence +Truman +Viaan +Aj +Alek +Angus +Aston +Atreyu +Aurelio +Bastian +Cortez +Dayton +Devyn +Duncan +Franky +Jackie +Jaysen +Jeff +Kaeden +Kairo +Kamron +Kelly +Kyree +Leif +Lian +Loki +Lucien +Milton +Nate +Payton +Presley +Quintin +Ren +Ryu +Semaj +Teo +Advik +Aedan +Aleksander +Ameer +Amos +Anish +Aries +Arvin +Barry +Blaze +Bowie +Branson +Coen +Crew +Cristofer +Draven +Edmund +Eros +Everardo +Faris +Fisher +Gauge +Glenn +Huxley +Isa +Isiah +Itzae +Jael +Jan +Jaxx +Jaziel +Jorden +Jullian +Keven +Kole +Kris +Lazarus +Lenny +Matt +Montgomery +Pierre +Sahib +Said +Seamus +Sheldon +Shiv +Uziel +Veer +Wilder +Yahel +Yaseen +Zephaniah +Zev +Akhil +Andreas +Andrey +Archie +Armen +Benedict +Braiden +Brenton +Calder +Canon +Claudio +Craig +Damion +Darin +Davion +Dempsey +Deshawn +Eithan +Eliam +Eliezer +Ezio +Favian +Forest +Freddie +Gareth +Garrison +Genaro +Gibson +Gregorio +Greysen +Guadalupe +Heath +Hiram +Isael +Jahir +Jean +Jesiah +Jessiah +Johnathon +Jovany +Koda +Langston +Layton +Leobardo +Leroy +Lucius +Lucky +Neal +Oskar +Paolo +Patricio +Reuben +Ryden +Rylee +Seven +Shaan +Shiloh +Stellan +Syed +Terrance +Tom +Wes +Yandel +Zac +Aayush +Adiel +Adriano +Aidyn +Ander +Avi +Axle +Azaiah +Blaine +Deon +Eliel +Elyas +Francesco +Hadi +Henri +Imran +Isac +Izayah +Jaron +Jaylin +Kalvin +Khaled +Kyson +Laith +Layne +Lino +Maceo +Malaki +Matix +Maximillian +Memphis +Nova +Nyjah +Obed +Osiris +Paulo +Rogan +Ron +Sidney +Smith +Tayden +Teagan +Thor +Tyree +Zakariya +Zen +Aayan +Arjan +Arnold +Bilal +Bill +Boone +Case +Cedric +Clive +Coleman +Deagan +Dominique +Esai +Fateh +Fausto +Fred +Gionni +Guy +Harris +Hasan +Hubert +Idris +Issa +Jacky +Jancarlos +Jasiel +Jaydan +Jaydin +Jayse +Jeancarlo +Kaleo +Kamran +Kenzo +Keon +Konner +Korbin +Kurtis +Ledger +Leighton +Lisandro +Lochlan +Maddux +Makaio +Maksim +Marko +Micaiah +Michaelangelo +Mikael +Narek +Naythan +Om +Oren +Pharaoh +Rayaan +Reginald +Reyes +Sammy +Subhan +Trace +Viraj +Yonatan +Yovani +Zakaria +Zayan +Alton +Amado +Anay +Andrei +Aris +Arjen +Arrow +Aubrey +Austen +Ayush +Bailey +Bear +Casen +Chevy +Clarence +Corban +Dale +Deion +Denver +Dezmond +Dillan +Don +Donnie +Dyllan +Eian +Ervin +Erwin +Haiden +Harlem +Haven +Hayk +Isacc +Jacen +Jaren +Javon +Jim +Jules +Kalani +Kamren +Kashton +Lars +Lazaro +Leopoldo +Lyam +Manraj +Marcell +Marek +Mazen +Minh +Moshe +Nikola +Norman +Ozzie +Ranveer +Remmy +Rigo +Roderick +Ronen +Ronny +Roshan +Santhiago +Simeon +Stephan +Tejas +Wallace +Wilmer +Zamir +Aaiden +Abdulaziz +Abelardo +Abhinav +Amar +Antoine +Armin +Arshan +Atharv +Boaz +Bosco +Camron +Canyon +Carsen +Cullen +Curren +Daylen +Domenic +Donny +Edan +Edmond +Ernie +Evander +Finnian +Gadiel +Gerson +Giorgio +Giuseppe +Gus +Hanson +Indiana +Isidro +Jareth +Jaycion +Jayvion +Jermaine +Jeronimo +Jessy +Jordyn +Josef +Josemanuel +Kael +Kaison +Kannon +Kendall +Keshav +Kiaan +Kimi +Kirin +Koen +Kolby +Kristofer +Laurence +Lloyd +Marquis +Mars +Menachem +Noam +Oakley +Osiel +Osman +Ozzy +Radley +Ravi +Reef +Renzo +Reza +Riaan +Rickey +Rockwell +Salvatore +Shepard +Sol +Sunny +Tai +Theseus +Tristin +Turner +Tyrone +Valente +Willy +Yadiel +Yoel +Yusef +Zuriel +Abdulrahman +Adler +Advay +Alessio +Alexandre +Alexavier +Amare +Ammar +Aramis +Arden +Aric +Asael +Atom +Benji +Bernard +Boris +Brad +Brandt +Brighton +Caius +Carmine +Christiano +Clifford +Darryl +Davit +Decker +Donavan +Edric +Ekam +Eliah +Eliott +Eloy +Faisal +Gaige +Glen +Hussein +Ismail +Jabari +Jarvis +Jasen +Jaxxon +Jenson +Jethro +Joao +Kase +Kasey +Keane +Kolten +Krishna +Kymani +Legacy +Linkin +Lonnie +Luisangel +Makoa +Manny +Mehtab +Mohamad +Morris +Nahum +Neev +Noble +Osmar +Oziel +Parsa +Pax +Pierson +Rider +Robbie +Ryatt +Salem +Selim +Stetson +Sulaiman +Taha +Ted +Torin +Trystan +Vidal +Wylie +Yousif +Yurem +Zach +Zackery +Zaden +Aadi +Abiel +Abran +Adair +Addison +Adin +Advaith +Agastya +Ahmir +Aldair +Alekzander +Alen +Amin +Anirudh +Arnulfo +Arsen +Aven +Aydenn +Aziel +Azriel +Baxter +Beck +Brando +Brecken +Brogan +Bryden +Cael +Carmello +Cayson +Charly +Cian +Clifton +Clint +Cormac +Cy +Damari +Deklan +Denis +Destin +Diesel +Dyland +Eamon +Edson +Emile +Ephraim +Eren +Eshan +Foster +Geovany +Hamilton +Hashim +Ira +Jadiel +Jaycee +Jayven +Jeevan +Jeramiah +Jody +Johnnie +Johnson +Kaito +Kale +Karas +Kenton +Khai +Kohen +Kooper +Kory +Kristoff +Lenin +Levy +Lex +Loyal +Lyndon +Mac +Malek +Marshawn +Masen +Mateus +Maxon +Mylo +Niccolo +Nigel +Nile +Noa +Parth +Penn +Perry +Rami +Raymon +Raymundo +Romello +Roscoe +Rowdy +Ruhaan +Saeed +Saharsh +Salomon +Samar +Shepherd +Shia +Shlok +Shreyan +Sione +Surya +Syrus +Tegan +Tevin +Tigran +Tyce +Tyrus +Valen +Vikram +Vinny +Vishnu +Yasir +Yuma +Zachery +Ziggy +Zyler +Aamir +Aarin +Abdul +Akira +Akshay +Alain +Aleksandr +Amador +Aneesh +Anmol +Arham +Arik +Arron +Ashwin +Auden +Avian +Brice +Brysen +Cedar +Colter +Conan +Constantine +Cristhian +Dakari +Dallin +Daren +Darion +Darnell +Davon +Demarcus +Devante +Dion +Domingo +Donte +Edrick +Esaias +Esdras +Ethyn +Fabio +Filip +Frederic +Gavyn +Gene +Geovanny +Gibran +Gracen +Gurfateh +Gurman +Harman +Hawk +Herbert +Herman +Hiro +Houston +Ilya +Jade +Jafet +Jamar +Jamil +Jaxsen +Jaylon +Jaythan +Jedediah +Jeriah +Jin +Johncarlo +Jones +Jonny +Joshue +Juanjose +Jun +Kaan +Kahlil +Kaidan +Kaius +Kallen +Kamdyn +Kayleb +Kelton +Kevyn +Kilian +Kirill +Kiyan +Kyden +Kylen +Kyran +Lamar +Maddex +Marcellus +Marquise +Maxime +Maximilliano +Mickey +Mihir +Morrison +Myron +Nakai +Nakoa +Naveen +Nehemias +Nicolai +Nomar +Obadiah +Oden +Odysseus +Orin +Osbaldo +Pete +Phineas +Quest +Raghav +Raheem +Raj +Ramsey +Rehan +Renato +Rishabh +Roen +Rosendo +Rubin +Sameer +Sammuel +Sarkis +Sasha +Saxon +Shay +Shivam +Sho +Sire +Skye +Slade +Soham +Stefano +Talan +Taniela +Tariq +Tarun +Tavin +Teddy +Thorin +Todd +Tripp +Triston +Tristyn +Tru +Tyrell +Tytus +Varun +Vedant +Viggo +Vincente +Vinh +Virgil +Willem +Xzander +Yash +Zyaire +Aakash +Aariv +Adham +Adnan +Advait +Aizen +Alexsander +Amadeo +Amadeus +Aman +Amaziah +Ambrose +Aniket +Aran +Arav +Arda +Aria +Aristotle +Artem +Augustin +Austyn +Avan +Avenir +Aviel +Avin +Avion +Avyaan +Azrael +Barron +Benaiah +Bladimir +Bradyn +Brayson +Brennen +Brentley +Brooklyn +Caeden +Cai +Callahan +Campbell +Camryn +Carsten +Caspian +Ceasar +Charleston +Ciaran +Cillian +Coby +Corben +Corwin +Cuauhtemoc +Damani +Dandre +Davien +Demir +Domenico +Donnell +Dwayne +Dwight +Eben +Eduard +Ellington +Emmit +Eshaan +Ethaniel +Etienne +Eugenio +Fares +Filiberto +Flavio +Garen +Gautham +Gavino +Geoffrey +Geovani +Geronimo +Gil +Graeme +Gurnoor +Harlow +Haruto +Hendrik +Holland +Hollis +Horacio +Ibraheem +Ike +Indigo +Iven +Jae +Jamarion +Jamir +Jathan +Jaycen +Jaydenn +Jaykob +Jayvon +Jeancarlos +Jessejames +Job +Joell +Johannes +Jonatan +Kaidyn +Kamryn +Karam +Kavi +Kavin +Kerry +Knoah +Kurt +Leeland +Leopold +Leyton +Linden +Lior +Loren +Loukas +Luther +Manolo +Massiah +Matheo +Maveric +Maxemiliano +Maxson +Maxximus +Missael +Muhammed +Nabil +Neftali +Neithan +Niklaus +Nikolaus +Nyle +Olin +Omer +Onyx +Ori +Palmer +Paulino +Pavel +Praneel +Raffi +Raleigh +Raylen +Reymundo +Rishab +Ritchie +Rithvik +Roan +Romelo +Ronav +Rustin +Ryley +Saif +Sathvik +Selvin +Shayne +Sir +Steele +Storm +Stuart +Sufyan +Sutter +Sven +Sylus +Tahj +Theodor +Theron +Thien +Timofey +Tristian +TRUE +Tye +Valentine +Ved +Viliami +Vinay +Viraaj +Warner +West +Wilfredo +Willis +Winson +Wolf +Yahya +Yazan +Yerik +Yichen +Yohan +Yousuf +Yuvan +Zacarias +Zakariah +Zarek +Aaditya +Abrahan +Adalberto +Adhvik +Adonai +Agam +Alasdair +Alexi +Alister +Alston +Amani +Ammon +An +Angad +Areg +Ariston +Askari +Atharva +Ayansh +Ayman +Ayrton +Bayron +Beaux +Beckam +Bert +Blair +Blas +Bradford +Bradly +Braedon +Braedyn +Brandan +Brodi +Caine +Cashton +Casper +Cavan +Caysen +Chayton +Coda +Cornelius +Curran +Dael +Daksh +Damir +Darsh +Daryl +Dashawn +Dastan +Dave +Deanthony +Dejon +Dekker +Delfino +Demetrio +Demitri +Deniz +Dillinger +Donatello +Eddison +Eisen +Elia +Elio +Elton +Ely +Elyjah +Eoin +Eriberto +Esau +Evren +Fabricio +Faustino +Ferris +Galen +Gamaliel +Geo +Gio +Gray +Grayden +Graydon +Hagen +Haris +Hridhaan +Hussain +Iann +Iden +Iram +Irie +Isreal +Izael +Izan +Izek +Jaciel +Jarek +Jaylan +Jed +Jehu +Jencarlo +Jeremih +Jerimiah +Jimmie +Jiraiya +Jireh +Jonnathan +Joseantonio +Journey +Juanmanuel +Juno +Juvenal +Juventino +Kace +Kadyn +Kailash +Kailer +Kaine +Kaizen +Kanoa +Karsen +Kasra +Kaydon +Keller +Kenai +Kerem +Klayton +Knight +Konrad +Lamont +Landin +Lemuel +Leone +Liem +Liev +Llewyn +Lucan +Lucciano +Luigi +Lyon +Lysander +Madix +Mahdi +Mateen +Mathieu +Mathis +Mavrick +Mick +Miking +Mordecai +Murad +Murphy +Nazareth +Nevin +Niall +Niam +Nicco +Nihal +Nolen +Oak +Olivier +Ollie +Paris +Quinten +Quintus +Rajveer +Ramzi +Ranger +Rashid +Regan +Reilly +Rhodes +Riker +Riku +Riot +Rishik +Rock +Romel +Rommel +Rony +Roque +Ross +Ryo +Sabastian +Sachin +Servando +Shannon +Siddhant +Siddhanth +Siddhartha +Stephon +Stryker +Suleiman +Sutton +Taiga +Talen +Taran +Tenzin +Timmy +Trevon +Triton +Tyrese +Umar +Valor +Vander +Vernon +Vihan +Watson +Waylan +Wynn +Yadier +Yamil +Zacharias +Zade +Zadkiel +Zaki +Zaylen +Zeno +Zorawar +Aadhav +Aadit +Aahil +Aaric +Abhay +Abhiram +Abir +Able +Abubakr +Adel +Adhrit +Aedyn +Ahaan +Akash +Akshaj +Aleczander +Alexey +Amaan +Amaru +Amit +Andrez +Arash +Arlen +Artin +Asante +Ashot +Athanasios +Avraham +Azaan +Blayne +Boyd +Briggs +Brigham +Burke +Caelan +Cali +Calin +Canaan +Carver +Cedrick +Chaz +Chester +Clarke +Clement +Coltyn +Corbyn +Cru +Cruze +Damen +Daron +Deaglan +Demetri +Denny +Desi +Dietrich +Dimas +Dino +Dorien +Dutch +Dylann +Dylen +Ebenezer +Eiden +Elam +Eldon +Eliab +Eliazar +Ellison +Elroy +Emory +Even +Evin +Fermin +Fischer +Fredrick +Gabino +Galileo +Geno +Greg +Grigor +Hardy +Haroon +Harout +Haydn +Haziel +Helios +Huck +Huy +Iktan +Indy +Jacinto +Jacques +Jadan +Jaedon +Jaedyn +Jahdiel +Jamel +Jarrett +Jassiel +Jayvian +Jayvin +Jen +Jerald +Jerrick +Jetson +Joeseph +Josemiguel +Jovian +Jr +Juanantonio +Judson +Jupiter +Justino +Kadence +Kamilo +Karlo +Karlos +Karsten +Karthik +Keagan +Keandre +Keelan +Kei +Keion +Kenan +Kenshin +Kenyon +Khari +Khristian +Kieren +Klay +Koji +Konstantin +Kye +Kyren +Landry +Lester +Lio +Locke +Luiz +Macallan +Maddix +Maher +Mahir +Manav +Marciano +Marcoantonio +Marion +Markell +Marlo +Maurilio +Maximillion +Maximino +Mccoy +Meir +Merrik +Michel +Mikey +Mikhael +Miko +Monroe +Mujtaba +Mykel +Nadav +Naim +Natan +Nathanial +Navarro +Navin +Nazar +Neiko +Nicolo +Noeh +Norberto +Ole +Pascal +Percy +Rain +Rainer +Ransom +Rasheed +Rayce +Rayshawn +Rayvon +Rihaan +Rishan +Rivan +Robby +Rodger +Roel +Rojelio +Ronit +Roosevelt +Rudolph +Sahir +Sai +Saleh +Salman +Sampson +Shiven +Sidharth +Sohum +Stevan +Stewart +Sydney +Sylis +Syncere +Taiyo +Talal +Tayvion +Tevita +Timoteo +Travon +Trinidad +Tycho +Tylen +Ulices +Uriyah +Uzziel +Vahan +Vann +Vinson +Vito +Vivan +Viyan +Von +Waris +Wayde +Wesson +Wilber +Wilbert +Wiley +Winter +Woodrow +Wylder +Yaakov +Yanis +Yanni +Yareth +Yariel +Yonathan +Yuri +Zair +Zakai +Zaven +Zaydin +Ziaire +Zixuan +Zoe +Aadan +Aarnav +Abdelrahman +Abdurrahman +Abisai +Adael +Adi +Advith +Aero +Aeron +Aeson +Aidric +Aithan +Alanzo +Alder +Alexandros +Amarion +Ameen +Amiri +Anand +Anas +Andersen +Andree +Angello +Anoop +Apolo +Arath +Arek +Arihaan +Arihant +Arin +Arion +Arius +Armon +Armoni +Arnoldo +Arsh +Art +Artemio +Aryeh +Ash +Ashwath +Asiah +Athen +Avaneesh +Avner +Avyan +Avyukt +Ayce +Azan +Bane +Barak +Basil +Baylor +Bentlee +Bently +Benton +Binyamin +Bogdan +Booker +Bram +Brandyn +Braxten +Broc +Broden +Calen +Calix +Calixto +Calum +Caspar +Cassidy +Cayleb +Celso +Chayse +Christofer +Chuck +Ciel +Clemente +Cove +Crawford +Creed +Cyril +Daemon +Damarion +Darby +Darrian +Darrien +Darrin +Daryan +Davy +Daxon +Demarco +Derian +Derin +Deron +Desean +Dex +Dexton +Dez +Dhyan +Didier +Dmitri +Donato +Donaven +Donavin +Donavon +Donell +Draco +Drayden +Dresden +Dylon +Earl +Ebrahim +Edin +Edvin +Eesa +Eivin +Emin +Emrys +Enoc +Erich +Erickson +Esiah +Evaristo +Exodus +Eyan +Eyden +Ezel +Ezrael +Ferdinand +Fin +Finnigan +Flint +Floyd +Fynn +Gabriele +Garren +Gautam +Genesis +Gerrit +Gohan +Golden +Gracin +Gurshaan +Gurveer +Haden +Hakeem +Hamad +Haruki +Harut +Harutyun +Harveer +Hasani +Helio +Hercules +Hero +Hieu +Hilario +Hisham +Hyrum +Iain +Ilay +Ilias +Ilyas +Iman +Imanol +Ioane +Isayah +Izak +Izik +Jaasiel +Jaccob +Jacion +Jahsiah +Jaidan +Jaidyn +Jakai +Jakson +Jamaal +Jamieson +Januel +Jashan +Jaxin +Jaxxson +Jaydee +Jaylyn +Jayshawn +Jerson +Jeziah +Jianni +Jiovani +Joab +Joachim +Jordon +Josiyah +Jovon +Juandiego +Juaquin +Junaid +Kabeer +Kaj +Kal +Kalev +Kanishk +Kanon +Kato +Kavir +Kaydin +Kento +Keo +Keyan +Keyon +Khaleb +Khang +Kirk +Kiyoshi +Klyde +Koby +Korben +Korey +Kota +Krew +Krishiv +Krithik +Kroy +Kyan +Lathan +Lauro +Leeroy +Leiland +Leslie +Leviticus +Lukah +Lux +Macario +Mace +Mackenzie +Madison +Maeson +Makhi +Malachai +Malikai +Manveer +Marques +Marquez +Masiah +Masson +Matai +Matan +Maverik +Mayank +Mckay +Mert +Meyer +Mikail +Mikko +Miro +Mohit +Nasser +Natanael +Natividad +Navraj +Naythen +Nazario +Neko +Nevaan +Nevan +Nihaal +Nikolaos +Nils +Nirvaan +Nirvan +Noahjames +Norris +Orson +Oz +Ozias +Perseus +Philippe +Pietro +Prithvi +Rafe +Rakan +Randolph +Rani +Raynav +Raziel +Reggie +Reign +Reyan +Rhythm +Ritvik +Riyan +Robinson +Roczen +Rohin +Rolan +Ronak +Rush +Rusty +Rye +Sahas +Salah +Salim +Samyak +Satvik +Savion +Sequoia +Severin +Shahan +Shaheer +Shai +Shalom +Shan +Shea +Shourya +Shrey +Shreyas +Siaosi +Sid +Silvestre +Srihan +Steel +Stepan +Stevie +Stiles +Summer +Sylvester +Talha +Talin +Tarek +Tarik +Theophilus +Tiger +Tilden +Timur +Tlaloc +Toryn +Tremayne +Trentin +Trystin +Tyden +Tyshawn +Tzvi +Ubaldo +Uzziah +Vahe +Vedanth +Vic +Vin +Virat +Vivek +Vladislav +Waseem +Wayland +Waylen +Westyn +Wren +Xabi +Xaden +Yamato +Yamir +Yannis +Yared +Yassin +Yehuda +Yeray +Yihan +Yoseph +Zaidan +Zakary +Zealand +Ziad +Zidane +Ziyad +Mary +Helen +Dorothy +Ruth +Margaret +Frances +Alice +Elizabeth +Anna +Mildred +Rose +Florence +Thelma +Evelyn +Virginia +Marie +Edna +Gladys +Hazel +Edith +Elsie +Esther +Clara +Grace +Josephine +Katherine +Lillian +Ann +Ethel +Pauline +Emma +Louise +Eva +Lucille +Maria +Marjorie +Mabel +Marguerite +Irene +Martha +Ruby +Catherine +Julia +Viola +Bernice +Laura +Vera +Bertha +Genevieve +Nellie +Pearl +Beatrice +Doris +Lucy +Agnes +Vivian +Gertrude +Ida +Jennie +Myrtle +Alma +Bessie +Eleanor +Emily +Lois +Marian +Velma +Ella +Jean +Kathryn +Maxine +Minnie +Sylvia +Theresa +Amelia +Blanche +Charlotte +Sarah +Violet +Anne +Betty +Dora +Georgia +Lydia +Olive +Verna +Ellen +Erma +Flora +Frieda +Jane +Jessie +Leona +Marion +Sara +Stella +Amy +Barbara +Carmen +Caroline +Cora +Della +Fern +Lena +Mollie +Olga +Opal +Patricia +Wilma +Annie +Carol +Daisy +Eunice +Inez +Kathleen +Lola +Lorraine +May +Shirley +Ada +Beulah +Elva +Freda +Geraldine +Goldie +Irma +Janet +June +Lorena +Mable +Maude +Naomi +Nell +Nina +Roberta +Sadie +Sally +Mary +Helen +Dorothy +Margaret +Ruth +Mildred +Frances +Rose +Anna +Evelyn +Marie +Elizabeth +Josephine +Edith +Esther +Gladys +Hazel +Virginia +Florence +Alice +Ethel +Grace +Thelma +Edna +Martha +Louise +Lucille +Lillian +Mabel +Pauline +Ruby +Irene +Ann +Bernice +Bertha +Catherine +Doris +Elsie +Emma +Gertrude +Nellie +Marjorie +Agnes +Alma +Betty +Fern +Maria +Eva +Genevieve +Jessie +Velma +Beatrice +Eleanor +Lena +Lois +Wilma +Della +Beulah +Clara +Maxine +Vera +Vivian +Julia +Lucy +Opal +Sarah +Ellen +Ida +Jean +Marguerite +Annie +Charlotte +Christine +Emily +Freda +Jane +Laura +Lydia +Olive +Ada +Jennie +Juanita +Katherine +Marian +Marion +Minnie +Myrtle +Pearl +Viola +Barbara +Cecelia +Ella +Flora +Geneva +Isabel +Kathryn +Lela +Madeline +Mae +Violet +Winifred +Alberta +Anne +Bessie +Erma +Georgia +Geraldine +Mollie +Shirley +Stella +Susie +Theresa +Verna +Anita +Carolyn +Cora +Dora +Eileen +Eunice +Fay +Goldie +Harriet +Inez +Irma +Kathleen +Lea +Lillie +Lorene +Lottie +Lucile +Nadine +Olga +Sally +Sylvia +Mary +Helen +Margaret +Ruth +Dorothy +Mildred +Frances +Elizabeth +Alice +Virginia +Louise +Florence +Esther +Evelyn +Marie +Rose +Edna +Anna +Lois +Josephine +Irene +Marjorie +Ethel +Lucille +Pauline +Edith +Ann +Elsie +Thelma +Agnes +Hazel +Martha +Gladys +Betty +Clara +Eleanor +Lillian +Grace +Marguerite +Catherine +Doris +Emma +Gertrude +Mabel +Laura +Bernice +Charlotte +Jean +Julia +Barbara +Bertha +Kathryn +Ruby +Vera +Eva +Jennie +Bessie +Katherine +Minnie +Opal +Ella +Lucy +Stella +Vivian +Beatrice +Blanche +Alma +Fern +Ida +Lena +Marion +Maxine +Myrtle +Sarah +Violet +Wilma +Flora +Maria +Nellie +Pearl +Sylvia +Ada +Genevieve +Georgia +Jessie +Leona +Lydia +Marian +Roberta +Anne +Della +Ellen +Erma +Jane +Juanita +May +Viola +Audrey +Goldie +Isabel +Lola +Velma +Dolores +Dora +Emily +Geraldine +Harriet +Hilda +Irma +Nancy +Nora +Olive +Phyllis +Angela +Annie +Caroline +Carolyn +Lillie +Mae +Mollie +Muriel +Patricia +Sadie +Sue +Alberta +Amelia +Carol +Geneva +June +Leah +Luella +Myra +Rachel +Sally +Susie +Victoria +Angelina +Beulah +Connie +Eloise +Elvira +Fannie +Faye +Helene +Inez +Jacqueline +Lenora +Loretta +Mable +Margie +Matilda +Naomi +Natalie +Nina +Rosa +Tillie +Mary +Helen +Dorothy +Margaret +Ruth +Frances +Elizabeth +Mildred +Anna +Alice +Evelyn +Marie +Rose +Esther +Virginia +Florence +Josephine +Edith +Grace +Louise +Gladys +Martha +Irene +Edna +Catherine +Maxine +Ethel +Lucille +Marjorie +Thelma +Clara +Marguerite +Bernice +Jennie +Lois +Ann +Lillian +Emma +Pauline +Barbara +Elsie +Hazel +Agnes +Genevieve +Gertrude +Velma +Ruby +Nellie +Betty +Eleanor +Jean +Wilma +Annie +Bessie +Doris +Julia +Ellen +Eva +Juanita +Marion +Sarah +Viola +Ida +Jane +Mabel +Myrtle +Bertha +Jessie +Katherine +Lena +Shirley +Sylvia +Vera +Geraldine +Kathryn +Laura +Maria +Minnie +Stella +Theresa +Ada +Charlotte +Dora +Rachel +Violet +Alma +Geneva +Mae +Olive +Opal +Pearl +Blanche +Cora +Dolores +Elaine +Flora +Leah +Lucy +Marian +Anne +Beulah +Carol +Ella +Emily +Erma +Inez +Irma +Lucile +Lydia +Phyllis +Roberta +Vivian +Winifred +Alberta +Goldie +Kathleen +Lorraine +Norma +Peggy +Beatrice +Leona +Mollie +Nancy +Adeline +Carolyn +Carrie +Cecilia +Christine +Della +Eula +Georgia +Lily +Matilda +Nora +Sadie +Amy +Audrey +Constance +Daisy +Elva +Estella +Freda +Harriet +Iris +Isabel +Janet +June +Loretta +Mamie +Ramona +Sophie +Teresa +Amelia +Angelina +Beth +Carmen +Cleo +Effie +Estelle +Fern +Gwendolyn +Henrietta +Lela +Lila +Lillie +Madeline +Mattie +Mayme +Miriam +Muriel +Naomi +Nettie +Patricia +Rebecca +Rosa +Sara +Theodora +Verna +Mary +Helen +Dorothy +Margaret +Ruth +Frances +Mildred +Elizabeth +Rose +Marie +Virginia +Anna +Evelyn +Edith +Esther +Florence +Josephine +Alice +Hazel +Lucille +Grace +Lois +Louise +Marjorie +Catherine +Ethel +Bertha +Elsie +Clara +Emma +Thelma +Martha +Edna +Lillian +Gladys +Pauline +Ann +Ruby +Doris +Eva +Katherine +Leona +Vera +Jane +Jean +Irene +Mabel +Marguerite +Eleanor +Marian +Viola +Alma +Betty +Velma +Gertrude +Jennie +June +Agnes +Beatrice +Bernice +Charlotte +Juanita +Julia +Laura +Marion +Pearl +Phyllis +Sarah +Bessie +Maxine +Cora +Della +Jessie +Kathryn +Lena +Lucy +Ida +Maria +Minnie +Mollie +Myrtle +Wilma +Beulah +Lydia +Nellie +Violet +Blanche +Inez +Nancy +Shirley +Vivian +Anne +Barbara +Olive +Stella +Opal +Amelia +Genevieve +Irma +Leah +Lola +Theresa +Ada +Fern +Freda +Joyce +Lila +Loretta +Alberta +Alta +Annie +Cecilia +Ella +Ellen +Eileen +Erma +Flora +Georgia +Henrietta +Iva +Mae +Naomi +Rachel +Roberta +Verna +Audrey +Elva +Faye +Geraldine +Kathleen +Mable +Rosie +Sara +Sylvia +Angelina +Daisy +Elaine +Eloisa +Eula +Eunice +Geneva +Harriet +Hilda +Iola +Isabelle +Lorraine +Lucile +Nettie +Rosa +Sadie +Adele +Adeline +Amy +Caroline +Carolyn +Cecelia +Celia +Constance +Dora +Emily +Etta +Iris +Jeannette +Madeline +May +Olga +Ramona +Rebecca +Rita +Rosemary +Sally +Selma +Wanda +Angeline +Antonia +Arline +Billie +Carmen +Carrie +Cleo +Effie +Eleanore +Elma +Eloise +Goldie +Gwendolyn +Imogene +Isabel +Joan +Josie +Lily +Luella +Mamie +Millie +Muriel +Natalie +Nora +Norma +Rowena +Sophie +Winifred +Mary +Helen +Dorothy +Margaret +Ruth +Frances +Alice +Evelyn +Virginia +Rose +Anna +Elizabeth +Mildred +Josephine +Marie +Esther +Florence +Edith +Marjorie +Lois +Grace +Hazel +Lucille +Elsie +Gladys +Edna +Eleanor +Louise +Betty +Thelma +Martha +Pauline +Irene +Emma +Ethel +Doris +Gertrude +Catherine +Clara +Bertha +Ann +Katherine +Jane +Jean +Jennie +Mabel +Nellie +Agnes +Eva +Wilma +Juanita +Lillian +Maxine +Myrtle +Ruby +Vera +Ella +Kathryn +Laura +June +Julia +Sarah +Beulah +Leona +Pearl +Anne +Charlotte +Genevieve +Viola +Violet +Bessie +Ida +Lucy +Lydia +Marion +Alma +Ellen +Georgia +Marguerite +Shirley +Barbara +Bernice +Della +Flora +Geraldine +Lola +Phyllis +Velma +Erma +Sylvia +Marian +Opal +Stella +Vivian +Audrey +Beatrice +Fern +Lena +Maria +Faye +Freda +Harriet +Irma +Jessie +Rachel +Dora +Eunice +Olive +Roberta +Verna +Alberta +Amelia +Cora +Minnie +Nancy +Naomi +Rosie +Blanche +Caroline +Mollie +Theresa +Ada +Eileen +Frieda +Mae +Sadie +Annie +Arlene +Bonnie +Inez +Joan +Lorraine +Lucile +Rita +Rosalie +Beverly +Carmen +Hilda +Kathleen +Lela +Loretta +Luella +Mable +Muriel +Nora +Peggy +Rosemary +Wanda +Adeline +Dixie +Elaine +Henrietta +Leah +Lillie +Millie +Nina +Norma +Alta +Billie +Carrie +Dolores +Effie +Emily +Estella +Etta +Gretchen +Isabel +Lorene +May +Winifred +Adele +Amy +Angelina +Annabelle +Carolyn +Cecilia +Cleo +Dorothea +Evalyn +Ina +Ione +Iva +Janet +Jeanette +Lavina +Lenora +Leola +Leta +Madeline +Neva +Olga +Patricia +Ramona +Sally +Sara +Sophia +Sophie +Susie +Victoria +Angela +Angeline +Carmelita +Celia +Clarice +Daisy +Edythe +Elva +Goldie +Harriett +Harriette +Helena +Helene +Ila +Jeanne +Lottie +Maurine +Nettie +Rebecca +Rosa +Selma +Stephanie +Susan +Teresa +Mary +Helen +Dorothy +Margaret +Ruth +Frances +Virginia +Mildred +Elizabeth +Rose +Esther +Evelyn +Alice +Florence +Marie +Anna +Edith +Lois +Edna +Josephine +Thelma +Betty +Doris +Irene +Louise +Elsie +Lucille +Marjorie +Pauline +Bertha +Martha +Eleanor +Hazel +Eva +Ethel +Clara +Gladys +Julia +Lillian +Ann +Emma +Jean +Wilma +Grace +Ruby +Vera +Catherine +Katherine +Nellie +Gertrude +June +Maxine +Barbara +Viola +Alma +Marguerite +Genevieve +Stella +Ellen +Jane +Jessie +Juanita +Agnes +Myrtle +Bernice +Charlotte +Pearl +Lydia +Anne +Velma +Freda +Sarah +Laura +Phyllis +Rachel +Della +Ida +Bessie +Geraldine +Mabel +Beulah +Lena +Minnie +Violet +Dora +Ella +Maria +Sylvia +Theresa +Beatrice +Blanche +Flora +Jennie +Kathryn +Shirley +Fern +Carolyn +Irma +Lola +Marian +Opal +Eileen +Kathleen +Leona +Patricia +Roberta +Emily +Leah +Lillie +Naomi +Winifred +Amelia +Audrey +Carol +Elaine +Marion +Mollie +Verna +Vivian +Cora +Inez +Lucy +Nora +Rita +Alta +Angelina +Annie +Carmen +Caroline +Edythe +Erma +Eunice +Lorraine +Muriel +Nina +Olive +Sally +Ada +Anita +Frieda +Ina +Rosa +Rosemary +Ernestine +Estella +Georgia +Hilda +Jeanette +Mable +Mae +Miriam +Nadine +Susie +Alberta +Cleo +Eloise +Harriet +Lucile +Margery +Nancy +Sadie +Sara +Wanda +Charline +Daisy +Elma +Elvera +Faye +Geneva +Gwendolyn +Isabel +Jeannette +Joyce +Lela +Madeline +Norma +Olga +Peggy +Ramona +Regina +Theda +Annabelle +Annette +Berniece +Christine +Effie +Harriett +Henrietta +Janet +Kay +Leila +Madge +Rena +Tillie +Arlene +Billie +Dorothea +Elva +Eula +Fay +Iola +Ione +Isabelle +Lila +Lily +Lula +Marjory +May +Mayme +Rosalie +Rosie +Teresa +Victoria +Yvonne +Amy +Beryl +Celia +Deloris +Dollie +Donna +Eleanore +Iris +Jacqueline +Jeanne +Joan +Lavona +Leora +Lorena +Loretta +Luella +Mamie +Maude +Molly +Mona +Myra +Neva +Sophie +Verda +Vesta +Willa +Mary +Helen +Dorothy +Margaret +Ruth +Virginia +Mildred +Frances +Alice +Betty +Elizabeth +Esther +Rose +Marie +Josephine +Anna +Evelyn +Lucille +Florence +Edna +Pauline +Lois +Doris +June +Lillian +Thelma +Edith +Louise +Martha +Marjorie +Clara +Eleanor +Ethel +Bertha +Eva +Irene +Ruby +Catherine +Hazel +Emma +Barbara +Maxine +Jean +Gladys +Elsie +Vera +Wilma +Grace +Katherine +Marian +Nellie +Ann +Bernice +Gertrude +Mabel +Marguerite +Marion +Kathryn +Jennie +Julia +Leona +Charlotte +Ida +Juanita +Viola +Velma +Laura +Pearl +Agnes +Maria +Phyllis +Opal +Lena +Myrtle +Ella +Lucy +Stella +Sylvia +Winifred +Ellen +Sarah +Vivian +Anne +Beatrice +Georgia +Jessie +Lola +Violet +Della +Eileen +Erma +Jane +Theresa +Alma +Bessie +Blanche +Irma +Genevieve +Geraldine +Lucile +Olive +Patricia +Annie +Harriet +Minnie +Rachel +Verna +Bonnie +Carmen +Joan +Lydia +Roberta +Sally +Dora +Elaine +Freda +Frieda +Naomi +Shirley +Ada +Anita +Kathleen +Nora +Beulah +Emily +Fern +Flora +Leah +Margie +May +Miriam +Alberta +Audrey +Beverly +Cecelia +Donna +Lillie +Mable +Nadine +Nancy +Olga +Rosemary +Caroline +Carrie +Cleo +Cora +Ernestine +Geneva +Goldie +Harriett +Isabelle +Mae +Muriel +Ora +Peggy +Ramona +Rebecca +Arlene +Carol +Carolyn +Christine +Dolores +Estella +Hannah +Inez +Isabel +Jeanette +Lila +Lorene +Mollie +Billie +Faye +Ina +Madeline +Nina +Rita +Amelia +Amy +Arline +Berniece +Charline +Claire +Dixie +Eleanore +Elinor +Elma +Elva +Jeanne +Lily +Loretta +Lorraine +Lula +Mamie +Norma +Rosie +Sara +Sophie +Susie +Teresa +Victoria +Adeline +Aileen +Alta +Angelina +Avis +Daisy +Dorothea +Eloise +Estelle +Harriette +Henrietta +Hilda +Ila +Iva +Luella +Marcella +Rosalie +Wanda +Annabelle +Bernadine +Celia +Delia +Elvira +Eunice +Hope +Iris +Jewell +Josie +Joyce +Lela +Marilyn +Marjory +Nettie +Patsy +Sue +Theda +Tillie +Alyce +Angela +Annette +Antoinette +Beryl +Delpha +Edythe +Elnora +Etta +Eula +Fannie +Helena +Ilene +Janet +Jeannette +Leola +Leota +Letha +Mattie +Maude +Melba +Melva +Neva +Olivia +Regina +Rosella +Sophia +Mary +Helen +Dorothy +Margaret +Ruth +Virginia +Frances +Betty +Mildred +Alice +Marjorie +Elizabeth +Lois +Esther +Rose +Evelyn +Anna +Josephine +Lucille +Marie +Louise +Pauline +Edna +Martha +Florence +Doris +Edith +Irene +Thelma +Gladys +Barbara +Ruby +Clara +Eva +June +Emma +Lillian +Hazel +Ethel +Grace +Wilma +Elsie +Bertha +Charlotte +Juanita +Ann +Jean +Maxine +Eleanor +Katherine +Agnes +Shirley +Pearl +Vivian +Ida +Bernice +Stella +Phyllis +Alma +Catherine +Jane +Julia +Mabel +Marguerite +Opal +Vera +Leona +Velma +Geraldine +Nellie +Maria +Myrtle +Gertrude +Jessie +Marion +Viola +Ada +Eileen +Lorraine +Dora +Patricia +Genevieve +Laura +Lucy +Cora +Ellen +Fern +Norma +Violet +Beatrice +Harriet +Kathryn +Lena +Marian +Sarah +Della +Ella +Lydia +Minnie +Anne +Audrey +Jennie +Geneva +Roberta +Flora +Georgia +Annie +Emily +Beulah +Winifred +Bessie +Caroline +Carolyn +Erma +Lillie +Lola +Rosemary +Sylvia +Carmen +Freda +Inez +Leah +Mollie +Rachel +Angelina +Jeanne +Loretta +Olga +Sally +Dolores +Ernestine +Frieda +Peggy +Rosa +Alta +Blanche +Hilda +Lorene +Muriel +Amelia +Angela +Anita +Carol +Carrie +Faye +Henrietta +Janet +Mable +Rita +Susie +Tillie +Wanda +Celia +Cleo +Estella +Irma +Iva +Lorena +Lula +Mae +Margie +Naomi +Neva +Nora +Victoria +Elaine +Harriett +Isabel +Joan +Kathleen +Lila +Margery +Miriam +Nancy +Olive +Rosie +Susan +Bette +Billie +Bonnie +Donna +Elinor +Elva +Etta +Eunice +Iris +Lela +Lupe +Nettie +Nina +Verna +Aileen +Arlene +Avis +Cecelia +Elvira +Iola +Iona +Jacqueline +Jeanette +Jeannette +Joyce +Leola +Luella +Adeline +Alberta +Ava +Beth +Christine +Constance +Daisy +Effie +Elma +Eula +Gwendolyn +Ina +Isabelle +Leota +Lucile +Mamie +Molly +Sophia +Theresa +Angeline +Dorothea +Dorthy +Edythe +Goldie +Harriette +Hope +Jewell +Joy +Katharine +Lauretta +Lenore +Leora +Mona +Ramona +Rebecca +Regina +Sara +Teresa +Trinidad +Zelma +Amy +Annabelle +Berniece +Beverly +Charlene +Charline +Dolly +Eldora +Elna +Fay +Francis +Glenna +Ila +Imogene +Janice +Laurel +Lea +Lee +Leta +Lora +Madeline +Marcella +Mardell +Marilyn +Maude +Melba +Millie +Mina +Nona +Ora +Priscilla +Sadie +Sophie +Sue +Yvonne +Mary +Dorothy +Helen +Margaret +Ruth +Frances +Betty +Virginia +Mildred +Elizabeth +Alice +Marie +Esther +Evelyn +Rose +Marjorie +Florence +Josephine +Lois +Edith +Anna +Irene +Lucille +Edna +Eleanor +Doris +Gladys +Martha +Clara +Barbara +Lillian +Ruby +Hazel +Jean +Maxine +Thelma +Wilma +Elsie +Grace +Louise +Pauline +June +Katherine +Phyllis +Viola +Ann +Catherine +Emma +Ethel +Eva +Shirley +Leona +Vera +Jennie +Juanita +Lena +Bertha +Jane +Bernice +Eileen +Marguerite +Vivian +Norma +Maria +Agnes +Beatrice +Geraldine +Gertrude +Kathryn +Charlotte +Alma +Julia +Della +Fern +Genevieve +Ida +Opal +Pearl +Ellen +Laura +Violet +Lucy +Mabel +Marian +Dora +Marion +Mae +Patricia +Roberta +Velma +Lorraine +Stella +Sylvia +Minnie +Nellie +Sarah +Bessie +Carmen +Cora +Ella +Frieda +Lydia +Alberta +Audrey +Beulah +Flora +Jessie +Lola +Rachel +Theresa +Erma +Myrtle +Naomi +Nina +Verna +Annie +Arlene +Blanche +Dolores +Emily +Georgia +Isabel +Lela +Loretta +Nancy +Sally +Donna +Elaine +Rosie +Angelina +Anita +Anne +Bonnie +Freda +Goldie +Iva +Jeanne +Marcella +Muriel +Rita +Wanda +Amelia +Eunice +Harriet +Ila +Joyce +Letha +Miriam +Rebecca +Rosemary +Dorothea +Geneva +Inez +Irma +Luella +Alta +Carol +Carolyn +Cleo +Elma +Faye +Gwendolyn +Kathleen +Margery +Peggy +Winifred +Beverly +Billie +Christine +Constance +Eloise +Janet +Lila +Lucile +Margie +Mollie +Nora +Teresa +Victoria +Yvonne +Carrie +Elva +Fannie +Hope +Iris +Joan +Lillie +Madeline +Olga +Sara +Annabelle +Bette +Bettie +Daisy +Eula +Hilda +Isabelle +Laverne +Nadine +Adeline +Caroline +Eleanore +Elinor +Ernestine +Freida +Ina +Lenore +Mable +Millie +Neva +Olive +Sophie +Verda +Wilda +Willa +Angela +Antonia +Beryl +Charlene +Dixie +Harriett +Helene +Jaunita +Josie +Leah +Leota +Lily +Marilyn +Melba +Zella +Ada +Adelina +Albina +Augusta +Berniece +Beth +Carmelita +Carolina +Cecelia +Charline +Clarice +Effie +Elnora +Fay +Florine +Glenna +Guadalupe +Hannah +Henrietta +Iona +Katharine +Lula +Madge +Mamie +Marcia +Matilda +Myra +Regina +Rosa +Selma +Sue +Trinidad +Mary +Dorothy +Helen +Margaret +Ruth +Betty +Virginia +Frances +Mildred +Evelyn +Elizabeth +Doris +Marjorie +Alice +Anna +Esther +Rose +Florence +Irene +Lois +Marie +Barbara +Josephine +Edith +Grace +Pauline +Ruby +Thelma +Hazel +Louise +Elsie +Lillian +Gladys +Shirley +Martha +Eleanor +Lucille +Edna +Jean +Wilma +June +Bernice +Clara +Eva +Emma +Ethel +Maxine +Juanita +Ann +Catherine +Jane +Geraldine +Viola +Marian +Charlotte +Phyllis +Agnes +Katherine +Vera +Ida +Marion +Bertha +Gertrude +Maria +Norma +Patricia +Vivian +Genevieve +Violet +Laura +Leona +Ella +Nellie +Beatrice +Marguerite +Stella +Della +Lorraine +Eileen +Elaine +Kathryn +Lydia +Velma +Julia +Mabel +Opal +Pearl +Sarah +Alma +Annie +Myrtle +Sylvia +Anne +Beulah +Georgia +Jessie +Lucy +Verna +Fern +Flora +Kathleen +Minnie +Winifred +Dora +Jennie +Dolores +Harriet +Eunice +Blanche +Cora +Ellen +Lena +Wanda +Erma +Inez +Isabel +Janet +Rachel +Alberta +Audrey +Bonnie +Cleo +Gwendolyn +Jacqueline +Lola +Mable +Margery +Ada +Bessie +Bettie +Carmen +Roberta +Rosemary +Amy +Carolyn +Geneva +Margie +Nancy +Peggy +Rosie +Jeanne +Rita +Alta +Anita +Freda +Jeanette +Ramona +Rebecca +Cecilia +Constance +Joyce +Leah +Mamie +Naomi +Theresa +Amelia +Bette +Beverly +Carol +Carrie +Frieda +Irma +Lucile +Mae +Marcella +Neva +Nora +Olive +Susie +Arlene +Billie +Cecelia +Donna +Dorothea +Elva +Elvira +Emily +Estella +Hilda +Lela +Letha +Lorene +Loretta +Nadine +Nina +Rosalie +Sally +Victoria +Yvonne +Charlene +Christine +Consuelo +Dixie +Faye +Iris +Luella +Marilyn +Sara +Willa +Antonia +Berniece +Caroline +Celia +Eleanore +Eloise +Eula +Goldie +Ina +Joan +Katie +Lila +Lorena +Lupe +May +Melba +Nettie +Rosa +Rosella +Adeline +Annabelle +Daisy +Edythe +Hannah +Henrietta +Hope +Iva +Jeannette +Lula +Madeline +Mercedes +Sadie +Teresa +Tillie +Adele +Angela +Angelina +Aurora +Avis +Effie +Francis +Gloria +Harriett +Ione +Isabelle +Janice +Jayne +Lenora +Lillie +Marcia +Margarita +Miriam +Regina +Sophie +Antoinette +Christina +Corrine +Dorris +Eldora +Elinor +Elma +Elnora +Elvera +Enid +Etta +Frankie +Glenna +Guadalupe +Isabell +Jewel +Josie +Juana +Lenore +Lilly +Lou +Matilda +Merle +Mollie +Olivia +Pansy +Patty +Priscilla +Suzanne +Veda +Zella +Mary +Dorothy +Helen +Margaret +Betty +Ruth +Frances +Marjorie +Virginia +Mildred +Elizabeth +Alice +Evelyn +Lois +Esther +Shirley +Rose +Josephine +Marie +Doris +Florence +Barbara +Irene +Anna +Hazel +Lucille +Edna +Martha +Thelma +Jean +Eleanor +Gladys +Emma +Pauline +Edith +Elsie +Lillian +Maxine +Bernice +Grace +Maria +Norma +Ruby +June +Eva +Phyllis +Vivian +Charlotte +Violet +Wilma +Clara +Juanita +Louise +Ethel +Katherine +Leona +Laura +Vera +Bertha +Mabel +Ellen +Agnes +Viola +Geraldine +Gertrude +Beatrice +Marian +Catherine +Audrey +Genevieve +Patricia +Ida +Kathryn +Opal +Ann +Della +Ella +Lydia +Marguerite +Julia +Lucy +Marion +Wanda +Jane +Eileen +Gloria +Mae +Alma +Carmen +Jennie +Nellie +Elaine +Margie +Roberta +Sarah +Anne +Flora +Jeanne +Kathleen +Lorraine +Myrtle +Bette +Beulah +Dora +Georgia +Velma +Bessie +Cora +Pearl +Dolores +Jessie +Lena +Rosemary +Stella +Verna +Bonnie +Carol +Cleo +Fern +Inez +Donna +Muriel +Winifred +Anita +Arlene +Isabel +Minnie +Olive +Sylvia +Freda +Ila +Lola +Bettie +Billie +Irma +Joan +Rachel +Carolyn +Constance +Jacqueline +Loretta +Lupe +Nancy +Peggy +Adeline +Annie +Erma +Eunice +Leah +Margery +Annabelle +Blanche +Caroline +Estella +Gwendolyn +Hilda +Joyce +Lila +Mable +Molly +Naomi +Nina +Ramona +Rita +Theresa +Alberta +Amelia +Beverly +Harriet +Lucile +Luella +Regina +Sally +Ada +Dorothea +Ernestine +Faye +Geneva +Olga +Rosie +Victoria +Alta +Antoinette +Eloise +Emily +Frieda +Henrietta +Laverne +Lorene +Madeline +Susie +Teresa +Aileen +Angela +Angelina +Celia +Consuelo +Daisy +Dixie +Elva +Etta +Isabelle +Lillie +Miriam +Sophie +Cecilia +Connie +Elma +Goldie +Helene +Jeannette +Josie +Lela +Madge +Marcella +Mollie +Nadine +Nora +Rosa +Sadie +Carrie +Darlene +Elvira +Fay +Ina +Iris +Lenore +Marilyn +Nettie +Rosalie +Trinidad +Yvonne +Alvina +Alyce +Annabel +Ardis +Christine +Corinne +Delphine +Dollie +Eleanore +Elvera +Estelle +Fannie +Glenna +Imogene +Janice +Jewell +Joy +Margarita +Sara +Wilda +Willa +Zelma +Andrea +Antonia +Aurora +Bernadine +Charlene +Clarice +Eulalia +Evangeline +Frankie +Gail +Isabell +Jeane +Jeanette +Juana +Judy +Lavina +Leota +Letha +Linda +Manuela +Margret +Matilda +Maurine +May +Millie +Myra +Ophelia +Pansy +Paula +Rebecca +Rosella +Rosemarie +Twila +Zella +Mary +Dorothy +Betty +Helen +Margaret +Ruth +Virginia +Frances +Marjorie +Mildred +Doris +Rose +Alice +Evelyn +Shirley +Barbara +Josephine +Marie +Lois +Elizabeth +Esther +Anna +Jean +June +Maxine +Edith +Irene +Eleanor +Ethel +Florence +Lucille +Louise +Martha +Thelma +Elsie +Lillian +Juanita +Edna +Gladys +Phyllis +Norma +Clara +Patricia +Pauline +Ruby +Vera +Viola +Agnes +Eva +Charlotte +Maria +Grace +Wilma +Catherine +Katherine +Lorraine +Bertha +Hazel +Leona +Emma +Violet +Ann +Bernice +Jennie +Gertrude +Marian +Stella +Geraldine +Lucy +Velma +Marguerite +Jeanne +Nellie +Wanda +Eileen +Ida +Kathryn +Beatrice +Laura +Mabel +Opal +Sarah +Vivian +Myrtle +Ellen +Julia +Pearl +Annie +Bette +Genevieve +Kathleen +Margie +Alma +Carol +Cora +Roberta +Verna +Dolores +Anne +Elaine +Fern +Gloria +Jane +Rosemary +Bonnie +Ella +Della +Lena +Lola +Rita +Beverly +Jacqueline +Arlene +Audrey +Bessie +Jessie +Joan +Marion +Olive +Rachel +Sylvia +Donna +Dora +Georgia +Harriet +Mable +Minnie +Blanche +Jeanette +Joyce +Mollie +Peggy +Theresa +Anita +Beulah +Carolyn +Erma +Eunice +Flora +Geneva +Marilyn +Billie +Caroline +Dorothea +Faye +Miriam +Nancy +Alberta +Lillie +Lydia +Madeline +Muriel +Naomi +Rosalie +Rosie +Amelia +Consuelo +Emily +Iris +Josie +Mae +Nadine +Nora +Winifred +Adeline +Alta +Carmen +Constance +Hilda +Inez +Isabel +Lenora +Lupe +Margery +Neva +Ramona +Rebecca +Aurora +Bettie +Christine +Cleo +Daisy +Fannie +Freda +Ila +Irma +Iva +Lila +Lula +May +Melba +Nina +Olga +Rosa +Sally +Amy +Cecelia +Celia +Connie +Janet +Laverne +Loretta +Mamie +Olivia +Yvonne +Angelina +Bernadine +Beth +Charline +Darlene +Ernestine +Eula +Fay +Henrietta +Ina +Isabelle +Joy +Leota +Lily +Luella +Merle +Myrna +Winona +Ada +Cornelia +Estella +Francis +Freida +Frieda +Hope +Ilene +Jewell +Lenore +Leola +Letha +Lucile +Marcella +Molly +Sadie +Susan +Aileen +Annabelle +Antoinette +Arline +Berniece +Clarice +Delores +Effie +Eleanore +Elvera +Harriette +Jeannette +Joann +Marjory +Mona +Myra +Nettie +Paula +Selma +Sophie +Sue +Willa +Andrea +Angela +Aurelia +Carolina +Clorinda +Delia +Dixie +Elma +Eloise +Elva +Elvira +Goldie +Gwendolyn +Harriett +Jacquelyn +Jewel +Lilly +Millie +Priscilla +Reba +Rosetta +Sara +Susie +Teresa +Verda +Veronica +Mary +Dorothy +Betty +Helen +Margaret +Ruth +Virginia +Alice +Frances +Marjorie +Elizabeth +Mildred +Shirley +Josephine +Doris +Evelyn +Barbara +Lois +Marie +Esther +Eleanor +Rose +Edith +Lucille +Edna +Irene +Florence +Anna +Patricia +Pauline +Jean +Juanita +Martha +Phyllis +Ethel +Maxine +Norma +Wilma +June +Louise +Elsie +Clara +Catherine +Maria +Thelma +Emma +Lillian +Ruby +Viola +Gladys +Grace +Katherine +Bernice +Julia +Lucy +Vera +Hazel +Jeanne +Wanda +Charlotte +Bertha +Geraldine +Leona +Violet +Gertrude +Ida +Gloria +Lorraine +Marguerite +Marian +Opal +Stella +Beatrice +Carol +Della +Ellen +Eva +Nellie +Agnes +Ann +Jennie +Sylvia +Vivian +Dora +Jane +Eileen +Genevieve +Lena +Kathleen +Roberta +Sarah +Velma +Arlene +Bette +Beverly +Dolores +Kathryn +Carmen +Joyce +Laura +Marilyn +Rosemary +Alberta +Bessie +Bonnie +Cora +Eunice +Jacqueline +Joan +Marion +Myrtle +Winifred +Georgia +Anne +Audrey +Beulah +Donna +Fern +Flora +Lola +Pearl +Peggy +Alma +Jessie +Susie +Annie +Harriet +Josie +Lydia +Margie +Elaine +Rosie +Theresa +Bettie +Darlene +Lela +Mabel +Nina +Angelina +Ella +Isabel +Minnie +Rita +Verna +Billie +Caroline +Carolyn +Lillie +Naomi +Olive +Susan +Anita +Constance +Frieda +Guadalupe +Rosalie +Blanche +Cecilia +Emily +Erma +Ernestine +Janet +Linda +Lorene +Loretta +Luella +Mable +Nancy +Sara +Carrie +Celia +Cleo +Daisy +Faye +Gwendolyn +Lila +Ramona +Rebecca +Amelia +Antonia +Freda +Geneva +Goldie +Hope +Mae +Neva +Nona +Ada +Christine +Connie +Cordelia +Dorothea +Henrietta +Isabelle +Leila +Leota +Madeline +Nettie +Angeline +Clorinda +Consuelo +Ferne +Hilda +Inez +Iris +Irma +Leah +Lucile +Lupe +Molly +Muriel +Sally +Willa +Zelda +Adeline +Aileen +Alta +Amy +Beth +Dorris +Eleanore +Elva +Elvira +Florine +Helena +Jeanette +Kay +Laverne +Lily +Matilda +Melba +Miriam +Nadine +Nora +Suzanne +Teresa +Victoria +Yvonne +Alyce +Angela +Annabelle +Cecelia +Elda +Elma +Eloise +Helene +Iva +Jacquelyn +Joy +Leola +Margery +Marietta +May +Mollie +Myra +Olga +Ora +Patsy +Rosella +Sophie +Sue +Winona +Bernadine +Celina +Clarice +Delores +Elinor +Eloisa +Estelle +Etta +Fannie +Ilene +Imogene +Ina +Janice +Juana +Louisa +Magdalena +Mamie +Marcella +Marjory +Matilde +Mattie +Myrna +Olinda +Patty +Priscilla +Sadie +Theodora +Tillie +Twila +Verda +Wilda +Willie +Mary +Betty +Dorothy +Helen +Margaret +Virginia +Ruth +Shirley +Frances +Evelyn +Elizabeth +Alice +Mildred +Lois +Barbara +Rose +Marjorie +Josephine +Doris +Jean +Anna +Patricia +Marie +Esther +Norma +Lillian +Irene +Florence +Thelma +Eleanor +Louise +Pauline +Phyllis +Wilma +Edith +Martha +Maxine +Ruby +June +Edna +Gladys +Juanita +Elsie +Catherine +Katherine +Lucille +Bernice +Maria +Emma +Violet +Bertha +Ethel +Grace +Hazel +Viola +Peggy +Clara +Gloria +Agnes +Charlotte +Eva +Geraldine +Julia +Stella +Velma +Wanda +Dora +Jennie +Kathryn +Lucy +Margie +Ida +Marian +Vera +Genevieve +Eileen +Gertrude +Lorraine +Nellie +Pearl +Bette +Bonnie +Ellen +Leona +Alma +Beverly +Carol +Jane +Nancy +Ann +Dolores +Donna +Elaine +Jessie +Laura +Marguerite +Vivian +Beulah +Opal +Rosemary +Annie +Jeanne +Joan +Joyce +Audrey +Lola +Roberta +Sally +Beatrice +Carmen +Lila +Mabel +Rita +Bettie +Flora +Inez +Myrtle +Theresa +Verna +Della +Ella +Emily +Fern +Geneva +Kathleen +Minnie +Rachel +Sarah +Sylvia +Isabel +Marion +Rosie +Arlene +Georgia +Lupe +Marilyn +Anne +Caroline +Carolyn +Lena +Madeline +Ada +Adeline +Annabelle +Bessie +Irma +Janet +Lela +Loretta +Lydia +Muriel +Rosa +Winifred +Alberta +Billie +Blanche +Cora +Goldie +Gwendolyn +Jacqueline +Mable +Christine +Ila +Laverne +Sadie +Dorothea +Eunice +Faye +Ina +Patsy +Angelina +Erma +Henrietta +Melba +Mercedes +Molly +Naomi +Nina +Olive +Ramona +Rebecca +Rosalie +Victoria +Alta +Angela +Anita +Cecilia +Celia +Charlene +Elva +Freda +Harriet +Jeanette +Miriam +Nora +Susie +Amelia +Bernadine +Connie +Constance +Frieda +Imogene +Janice +Juana +Lillie +Marcella +Sara +Susan +Cecelia +Ernestine +Jo +Joy +Lenore +Margery +Mona +Priscilla +Amalia +Amy +Antonia +Cleo +Dixie +Elinor +Elvera +Hannah +Hilda +Iris +Isabelle +Jeannette +Josie +Judy +Laurel +Lilly +Linda +Lorena +Mae +Marianne +May +Neva +Pat +Teresa +Willa +Yvonne +Aileen +Alvina +Andrea +Annette +Aurora +Beth +Celina +Charline +Daisy +Delores +Dolly +Dorris +Earlene +Eloise +Flossie +Glenna +Hope +Leah +Lula +Maybelle +Mercy +Millicent +Nadine +Patty +Sue +Terry +Tillie +Wilda +Alyce +Berniece +Colleen +Consuelo +Darline +Delma +Dorothe +Edythe +Effie +Eleanore +Eula +Guadalupe +Hattie +Iva +Jacquelyn +Leila +Lenora +Leta +Lorene +Luella +Manuelita +Marcia +Matilda +Melva +Millie +Mollie +Neoma +Rosemarie +Rosetta +Shirlee +Vesta +Yolanda +Zelma +Mary +Betty +Dorothy +Helen +Margaret +Ruth +Shirley +Virginia +Alice +Barbara +Doris +Frances +Evelyn +Lois +Marjorie +Patricia +Elizabeth +Rose +Marie +Phyllis +Martha +Josephine +Mildred +Esther +Jean +Irene +Florence +Norma +Juanita +Lillian +Elsie +Pauline +Anna +Maria +Lucille +Edna +Edith +Maxine +Gladys +Eleanor +Thelma +Wilma +Louise +Ruby +Gloria +Hazel +Catherine +Emma +Viola +Eva +Charlotte +Julia +June +Marian +Lucy +Bertha +Grace +Clara +Bonnie +Ethel +Ida +Marilyn +Beatrice +Lorraine +Peggy +Vera +Beverly +Dolores +Eileen +Katherine +Laura +Velma +Bernice +Bette +Geraldine +Stella +Lola +Vivian +Wanda +Donna +Dora +Leona +Ann +Joyce +Anne +Georgia +Jessie +Agnes +Audrey +Carol +Elaine +Genevieve +Gertrude +Jane +Violet +Ellen +Jeanne +Arlene +Jennie +Mabel +Nellie +Annie +Erma +Lena +Margie +Rita +Cora +Nancy +Rosemary +Bessie +Beulah +Carmen +Jacqueline +Kathryn +Carolyn +Della +Harriet +Joan +Kathleen +Lydia +Teresa +Ada +Fern +Opal +Pearl +Eunice +Myrtle +Naomi +Roberta +Rosie +Sally +Susie +Alta +Bettie +Ella +Estella +Lupe +Marion +Alma +Anita +Billie +Caroline +Mae +Rachel +Sylvia +Theresa +Verna +Dixie +Irma +Isabel +Lila +Nadine +Ramona +Rosalie +Christine +Geneva +Ila +Leah +Lorene +Patsy +Antonia +Blanche +Charlene +Connie +Consuelo +Delores +Eloise +Inez +Sarah +Winifred +Darlene +Elinor +Emily +Ernestine +Faye +Flora +Henrietta +Janet +Loretta +Lucile +Marguerite +Mona +Nina +Victoria +Yvonne +Alyce +Amelia +Andrea +Angelina +Arline +Carrie +Cecilia +Cleo +Joy +Juana +Lela +Luella +Molly +Muriel +Alberta +Angela +Annabelle +Dorothea +Elva +Frieda +Goldie +Hope +Imogene +Ione +Janice +Jeannette +Leota +Marcia +Nora +Patty +Priscilla +Rosella +Sue +Adeline +Aileen +Amy +Annette +Beverley +Cecelia +Colleen +Estelle +Gwendolyn +Iris +Joanne +Judy +Lula +Melba +Ora +Rosa +Sara +Sophie +Berniece +Charline +Dominga +Esperanza +Ilene +Jewel +Joann +Katheryn +Laverne +Lavonne +Lenore +Lillie +Linda +Lou +Mable +Manuela +Marcella +Margery +Minnie +Miriam +Mollie +Olive +Rosemarie +Susan +Tillie +Vada +Allene +Ana +Angie +Antoinette +Aurelia +Beth +Bobbie +Celia +Constance +Cruz +Delia +Dorothie +Elma +Etta +Francis +Freda +Freida +Jackie +Jacquelyn +Jewell +Judith +Kitty +Lenora +Lily +Lyla +Madeline +Mavis +Melva +Myrna +Nelda +Oreta +Paula +Reva +Rhoda +Sadie +Shirlee +Wilhelmina +Willa +Mary +Betty +Dorothy +Helen +Margaret +Shirley +Ruth +Barbara +Virginia +Lois +Doris +Frances +Marjorie +Alice +Rose +Mildred +Patricia +Esther +Evelyn +Jean +Phyllis +Anna +Irene +Lillian +Elizabeth +Marie +Josephine +Pauline +Eleanor +June +Norma +Gloria +Maria +Martha +Wilma +Viola +Edna +Florence +Dolores +Louise +Lucille +Maxine +Vera +Charlotte +Elsie +Hazel +Edith +Emma +Eva +Geraldine +Juanita +Bernice +Beverly +Ruby +Wanda +Bonnie +Ethel +Lorraine +Roberta +Thelma +Julia +Violet +Donna +Grace +Laura +Ann +Joan +Stella +Bertha +Carol +Ellen +Gladys +Ida +Georgia +Joyce +Marian +Elaine +Jennie +Leona +Dora +Lucy +Peggy +Agnes +Jeanne +Nellie +Beatrice +Jane +Marilyn +Velma +Rita +Clara +Della +Flora +Genevieve +Jacqueline +Katherine +Kathryn +Vivian +Bette +Gertrude +Sarah +Margie +Opal +Pearl +Theresa +Carmen +Nancy +Rosemary +Alma +Rosie +Bessie +Eileen +Jessie +Kathleen +Marion +Audrey +Fern +Sally +Verna +Bettie +Carolyn +Lila +Mae +Sylvia +Catherine +Inez +Irma +Teresa +Ella +Marguerite +Myrtle +Annie +Arlene +Cora +Erma +Lola +Naomi +Susie +Alberta +Anita +Charlene +Ernestine +Janet +Loretta +Rosalie +Billie +Lorene +Lupe +Mabel +Miriam +Nina +Nora +Priscilla +Amelia +Blanche +Connie +Emily +Lena +Zella +Ada +Antonia +Beulah +Cleo +Darlene +Elva +Isabel +Iva +Janice +Mable +Marcella +May +Nadine +Olive +Patsy +Colleen +Consuelo +Delores +Joy +Rosa +Sadie +Winifred +Caroline +Elinor +Eunice +Gwendolyn +Josie +Melba +Olga +Anne +Aurora +Beth +Cecelia +Christine +Eloise +Faye +Goldie +Henrietta +Lenore +Lillie +Marcia +Melva +Ramona +Selma +Alta +Amy +Annabelle +Dixie +Elma +Elvera +Estella +Estelle +Geneva +Harriet +Ina +Jeanette +Jo +Laverne +Lorena +Neva +Paula +Rachel +Rhoda +Shirlee +Susan +Victoria +Willa +Adeline +Alyce +Angela +Bettye +Celia +Dorothea +Freda +Frieda +Harriett +Hilda +Iris +Isabelle +Jeannette +Joanne +Lavonne +Leora +Linda +Lydia +Madelyn +Margarita +Marjory +Minnie +Muriel +Patty +Sue +Tillie +Tina +Verla +Andrea +Angelina +Angeline +Berniece +Carrie +Cecilia +Corinne +Cynthia +Elnora +Eula +Fay +Florine +Guadalupe +Ila +Ilene +Leah +Lee +Leola +Leta +Letha +Luella +Maurine +Molly +Nola +Reba +Suzanne +Zelda +Mary +Betty +Dorothy +Helen +Shirley +Margaret +Ruth +Barbara +Virginia +Evelyn +Doris +Frances +Patricia +Marjorie +Alice +Lois +Rose +Norma +Marie +Josephine +Jean +Mildred +Phyllis +Irene +Eleanor +Anna +Elizabeth +Wilma +Ruby +Gloria +Lucille +Martha +Beverly +Esther +Dolores +Edith +Lillian +Edna +Maxine +Elsie +Joyce +Julia +Viola +Florence +Maria +Pauline +Joan +Charlotte +Donna +Louise +Emma +Lucy +Bonnie +Clara +Grace +June +Katherine +Lorraine +Elaine +Marilyn +Geraldine +Hazel +Catherine +Eva +Bertha +Ida +Juanita +Stella +Thelma +Eileen +Marian +Wanda +Ann +Ellen +Ethel +Laura +Jennie +Dora +Roberta +Leona +Lola +Nancy +Vera +Vivian +Alma +Audrey +Beatrice +Margie +Agnes +Bernice +Gladys +Peggy +Rosemary +Carol +Cora +Marion +Nellie +Georgia +Jane +Kathryn +Violet +Fern +Jeanne +Theresa +Billie +Carolyn +Lena +Arlene +Bette +Charlene +Darlene +Jessie +Kathleen +Pearl +Anne +Carmen +Jacqueline +Janet +Joanne +Rosie +Velma +Verna +Colleen +Eunice +Joy +Mabel +Sally +Annie +Ella +Loretta +Lupe +Minnie +Opal +Rosalie +Sarah +Anita +Connie +Delores +Joann +Josie +May +Nadine +Patsy +Rita +Victoria +Angelina +Flora +Gertrude +Guadalupe +Isabel +Lila +Susie +Alberta +Annabelle +Bessie +Bettie +Beulah +Elva +Emily +Genevieve +Iris +Myrtle +Naomi +Olive +Ramona +Blanche +Della +Dixie +Freda +Harriet +Nora +Rachel +Beverley +Celia +Christine +Elma +Ernestine +Gwendolyn +Irma +Isabelle +Jackie +Jo +Nina +Patty +Sue +Sylvia +Yvonne +Aurora +Caroline +Christina +Cleo +Consuelo +Daisy +Erma +Lavonne +Lily +Lydia +Mable +Madeline +Marguerite +Melba +Rosa +Sophie +Cecilia +Estella +Goldie +Ila +Imogene +Jenny +Letha +Luella +Miriam +Muriel +Paula +Ada +Bernadine +Cecelia +Constance +Elvira +Francis +Geneva +Helene +Henrietta +Inez +Janice +Jeanette +Laverne +Myrna +Neva +Twila +Wilda +Claire +Cordelia +Eloise +Etta +Eula +Hope +Iva +Laveta +Linda +Lorene +Nettie +Nona +Shirlee +Teresa +Adeline +Alta +Annette +Antoinette +Berniece +Bettye +Bonita +Carmel +Carmella +Charline +Cynthia +Delia +Elinor +Elnora +Fannie +Faye +Florine +Georgiana +Harriett +Harriette +Iola +Jacquelyn +Joe +Leota +Lillie +Lorna +Lucile +Mae +Marcella +Marcia +Matilda +Mercedes +Mona +Pat +Priscilla +Rosella +Sandra +Sara +Therese +Willa +Winifred +Mary +Betty +Dorothy +Shirley +Barbara +Ruth +Margaret +Helen +Virginia +Frances +Doris +Patricia +Marjorie +Alice +Phyllis +Lois +Jean +Rose +Evelyn +Norma +Beverly +Mildred +Dolores +Donna +Elizabeth +Esther +Josephine +Irene +Juanita +Maria +Marie +Wilma +Gloria +Joan +Edna +Eleanor +Joyce +Ruby +Lillian +Louise +Martha +Viola +Anna +June +Lucille +Pauline +Carol +Wanda +Bonnie +Charlotte +Florence +Maxine +Geraldine +Lucy +Roberta +Thelma +Elsie +Eva +Grace +Gladys +Marilyn +Vera +Bernice +Elaine +Hazel +Edith +Lorraine +Bertha +Jacqueline +Ramona +Marian +Clara +Leona +Stella +Beatrice +Catherine +Jennie +Violet +Eileen +Vivian +Ethel +Julia +Patsy +Peggy +Katherine +Velma +Georgia +Ida +Ann +Emma +Rita +Loretta +Pearl +Carolyn +Dora +Flora +Joanne +Laura +Margie +Alberta +Colleen +Ella +Nancy +Jeanne +Kathryn +Verna +Audrey +Della +Joy +Nellie +Annie +Rosie +Sally +Angelina +Charlene +Ernestine +Rosemary +Alma +Ellen +Janet +Joann +Nadine +Anne +Arlene +Beverley +Billie +Carmen +Darlene +Delores +Eunice +Fern +Harriet +Jessie +Jo +Lola +Marguerite +Marion +Myrtle +Opal +Bettie +Dixie +Erma +Iris +Jane +Lorene +Lupe +Ada +Agnes +Anita +Bessie +Bette +Cecilia +Cora +Genevieve +Isabel +Lydia +Sarah +Victoria +Elvira +Emily +Inez +Janice +Josie +Kathleen +Naomi +Theresa +Adeline +Connie +Lena +Luella +Mabel +Patty +Teresa +Annabelle +Cleo +Estella +Sylvia +Beulah +Elma +Eloise +Faye +Gertrude +Gwendolyn +Ina +Mable +Olive +Rachel +Rosalie +Tillie +Winifred +Constance +Florine +Geneva +Irma +Lavonne +Lela +Lenora +Minnie +Myrna +Regina +Willa +Caroline +Charline +Christine +Diane +Estelle +Imogene +Isabelle +Jeanette +Laverne +Lila +Lillie +Marcella +Nora +Pat +Priscilla +Susan +Yvonne +Zella +Amy +Aurora +Beth +Blanche +Dorothea +Elinor +Esperanza +Eula +Frankie +Harriett +Ila +Iona +Jackie +Jacquelyn +Jeannine +Katie +Leola +Letha +Lily +Linda +Margery +May +Melba +Miriam +Paula +Petra +Rosa +Sadie +Sophie +Alta +Amelia +Angela +Antonia +Carrie +Cecelia +Celia +Dona +Elva +Fay +Freda +Glenda +Glenna +Goldie +Henrietta +Joanna +Josefina +Leila +Leota +Lora +Mae +Marcia +Marina +Molly +Muriel +Nettie +Nina +Nola +Rebecca +Renee +Zelma +Mary +Betty +Dorothy +Shirley +Barbara +Helen +Margaret +Ruth +Patricia +Frances +Virginia +Doris +Lois +Alice +Dolores +Norma +Beverly +Elizabeth +Joan +Marie +Phyllis +Evelyn +Donna +Jean +Josephine +Rose +Marjorie +Gloria +Eleanor +Maria +Joyce +Esther +Anna +Elsie +Pauline +Martha +Wilma +Lillian +Mildred +Viola +Carol +Irene +Bonnie +Florence +Peggy +June +Louise +Marilyn +Nancy +Ruby +Elaine +Juanita +Edna +Eva +Geraldine +Stella +Lucille +Maxine +Lorraine +Clara +Wanda +Edith +Emma +Jacqueline +Joanne +Lucy +Roberta +Vera +Charlotte +Hazel +Jane +Jennie +Ramona +Violet +Catherine +Grace +Charlene +Dora +Ida +Patsy +Bertha +Margie +Thelma +Carmen +Rita +Rosie +Bernice +Darlene +Theresa +Delores +Janet +Julia +Loretta +Marian +Vivian +Ann +Audrey +Beatrice +Gladys +Katherine +Laura +Leona +Verna +Carolyn +Ellen +Angelina +Anita +Billie +Georgia +Joann +Myrtle +Nadine +Sally +Alma +Annie +Bessie +Kathryn +Pearl +Rosemary +Flora +Jeanne +Jo +Nora +Ethel +Gertrude +Lupe +Mabel +Alberta +Kathleen +Nellie +Yvonne +Connie +Marion +Sarah +Sylvia +Velma +Clarice +Della +Eileen +Erma +Gwendolyn +Isabel +Joy +Bettie +Eunice +Genevieve +Harriet +Jacquelyn +Jessie +Naomi +Rachel +Rosalie +Janice +Jeannette +Lola +Opal +Victoria +Agnes +Anne +Antonia +Bette +Beulah +Caroline +Cora +Ella +Inez +Jeannine +Josefina +Lena +Lila +Luella +Lydia +Mae +Muriel +Nina +Susie +Willa +Celia +Elinor +Fern +Irma +Pat +Patty +Rosa +Sue +Therese +Verla +Aurora +Eloise +Jackie +Josie +Marcella +Mona +Rebecca +Regina +Teresa +Arlene +Cleo +Colleen +Consuelo +Dona +Ernestine +Esperanza +Estella +Estelle +Geneva +Jeanette +Madeline +Marguerite +May +Olive +Sadie +Darleen +Emily +Faye +Glenna +Ila +Imogene +Iona +Jewell +Nola +Ophelia +Sharon +Wilda +Annabelle +Antoinette +Beverley +Charline +Diane +Elna +Elva +Etta +Goldie +Hope +Ilene +Iva +Juana +Lavonne +Margarita +Marjory +Minnie +Paula +Robert +Rosella +Susan +Winifred +Winona +Ada +Adeline +Alyce +Angela +Angie +Benita +Carrie +Cecilia +Cordelia +Delia +Diana +Dixie +Dollie +Dorthy +Elma +Elvera +Frankie +Isabell +Judy +Lavon +Lee +Lela +Lily +Linda +Lucile +Mable +Marcia +Matilda +Melba +Myrna +Nona +Selma +Sophie +Mary +Betty +Dorothy +Shirley +Barbara +Helen +Margaret +Virginia +Patricia +Ruth +Frances +Norma +Dolores +Lois +Donna +Doris +Joan +Alice +Evelyn +Marjorie +Rose +Beverly +Phyllis +Jean +Marilyn +Geraldine +Elizabeth +Gloria +Martha +Wilma +Irene +Josephine +Joyce +Pauline +Mildred +Anna +Marie +Maria +Esther +Eleanor +Elsie +June +Lorraine +Carol +Louise +Clara +Juanita +Ruby +Viola +Bonnie +Grace +Nancy +Beatrice +Gladys +Katherine +Edna +Eva +Florence +Thelma +Wanda +Bernice +Emma +Lucille +Carolyn +Charlotte +Jacqueline +Marian +Maxine +Peggy +Sally +Delores +Jennie +Joanne +Bertha +Georgia +Stella +Vera +Catherine +Dora +Elaine +Patsy +Rita +Rosemary +Lillian +Julia +Laura +Lucy +Margie +Ramona +Kathleen +Velma +Violet +Jeanne +Jane +Loretta +Alberta +Ann +Billie +Ellen +Ethel +Nellie +Edith +Ida +Joann +Anita +Jo +Annie +Cora +Darlene +Hazel +Janet +Marion +Theresa +Della +Jessie +Lola +Naomi +Roberta +Arlene +Janice +Kathryn +Patty +Rosalie +Alma +Audrey +Ella +Josie +Rosie +Vivian +Carmen +Colleen +Erma +Jeanette +Leona +Opal +Pearl +Anne +Eileen +Gwendolyn +Iris +Verna +Agnes +Angelina +Christine +Connie +Flora +Genevieve +Lila +Mae +Sylvia +Caroline +Constance +Fern +Irma +Lena +Linda +Sarah +Amelia +Beverley +Cecilia +Dixie +Geneva +Ila +Inez +Jackie +Lupe +Marguerite +Minnie +Nona +Rosa +Bessie +Charlene +Eunice +Judy +Madeline +Margery +Marianne +Paula +Sharon +Bernadine +Bette +Bettie +Ernestine +Estella +Gertrude +Imogene +Joy +Mabel +Myrtle +Nora +Olive +Priscilla +Sara +Willa +Clarice +Daisy +Eloise +Elva +Emily +Harriet +Laverne +Mona +Myrna +Nadine +Sophie +Susan +Susie +Velda +Yvonne +Adeline +Alta +Angela +Angie +Annabelle +Ardith +Beulah +Blanche +Celia +Delia +Dolly +Glenna +Isabel +Jeannine +Kay +Lillie +Lorene +Luella +Lydia +Mollie +Pat +Teresa +Carole +Cecelia +Claire +Diane +Evangeline +Faye +Jenny +Lela +Lenore +Marcella +Margarita +Maryann +Miriam +Molly +Nina +Rosella +Winifred +Ada +Amy +Carla +Carmel +Celina +Cornelia +Corrine +Darleen +Dorene +Dorthy +Elvera +Elvira +Frankie +Jacquelyn +Jeannie +Jeralyn +Joe +Lavonne +Lee +Leila +Leota +Lilly +Lora +Mable +Marcia +May +Muriel +Nola +Olivia +Reba +Rebecca +Regina +Sue +Therese +Tillie +Treva +Zelda +Mary +Betty +Dorothy +Shirley +Barbara +Patricia +Helen +Virginia +Margaret +Donna +Ruth +Alice +Norma +Beverly +Joan +Dolores +Doris +Lois +Phyllis +Joyce +Frances +Marjorie +Rose +Gloria +Jean +Marilyn +Evelyn +Darlene +Josephine +Elizabeth +Marie +Nancy +Wilma +Anna +Pauline +Martha +Carol +Eleanor +Joanne +Geraldine +Joann +Lorraine +Maria +Bonnie +Irene +Louise +Florence +June +Viola +Wanda +Elsie +Elaine +Esther +Juanita +Delores +Edith +Edna +Gladys +Lucille +Mildred +Thelma +Charlotte +Catherine +Clara +Roberta +Ida +Janet +Jennie +Peggy +Ruby +Stella +Dora +Hazel +Bernice +Leona +Margie +Patsy +Arlene +Carolyn +Lucy +Maxine +Ann +Ellen +Eva +Emma +Ethel +Georgia +Grace +Jo +Lola +Marian +Sally +Vivian +Lillian +Theresa +Bertha +Julia +Katherine +Velma +Laura +Alberta +Charlene +Jeanne +Kathryn +Pat +Ramona +Audrey +Cora +Jacqueline +Loretta +Vera +Beatrice +Erma +Nellie +Sarah +Verna +Della +Dixie +Kathleen +Priscilla +Rita +Rosemary +Billie +Carmen +Connie +Janice +Rosalie +Jane +Lila +Pearl +Harriet +Marlene +Nina +Sylvia +Victoria +Violet +Colleen +Ella +Genevieve +Gwendolyn +Isabel +Joy +Nora +Anne +Annie +Cecilia +Jackie +Marion +Blanche +Eileen +Flora +Jeanette +Agnes +Alma +Anita +Bettie +Irma +Luella +Rosie +Teresa +Adeline +Amelia +Angelina +Caroline +Dona +Faye +Gertrude +Linda +Lupe +Myrtle +Naomi +Patty +Willa +Angie +Cleo +Deloris +Inez +Jessie +Lydia +Mae +Minnie +Nadine +Opal +Rachel +Susan +Suzanne +Cecelia +Christine +Elva +Ernestine +Frankie +Ilene +Iris +Lily +Lora +Madeline +Marguerite +Yvonne +Annabelle +Berniece +Bette +Carole +Constance +Corrine +Emily +Eunice +Glenda +Henrietta +Joe +Laverne +Mabel +Mable +Melva +Neva +Olive +Rebecca +Sadie +Sue +Tillie +Beverley +Darline +Eloise +Elvira +Estella +Imogene +Judy +Lavonne +Lena +Lenora +Marcella +Marietta +Winona +Ada +Antonia +Benita +Bessie +Celia +Consuelo +Delia +Diane +Eloisa +Freida +Harriett +Ina +John +Josie +Kay +Ladonna +Laurel +Lorna +Lou +Marjory +Maryann +Mona +Muriel +Regina +Rosetta +Susie +Veta +Zella +Zelma +Mary +Betty +Barbara +Shirley +Dorothy +Patricia +Helen +Donna +Margaret +Joan +Beverly +Alice +Virginia +Phyllis +Norma +Ruth +Joyce +Lois +Nancy +Frances +Doris +Carol +Rose +Dolores +Jean +Evelyn +Marjorie +Marilyn +Louise +Gloria +Josephine +Martha +Charlotte +Joann +Mildred +Wilma +Elizabeth +Irene +Esther +Anna +Bonnie +Peggy +Lucille +Marie +Geraldine +Viola +Ann +Eleanor +Elsie +Florence +June +Ruby +Pauline +Joanne +Juanita +Lillian +Darlene +Sally +Carolyn +Delores +Elaine +Theresa +Wanda +Beatrice +Julia +Edna +Grace +Janet +Emma +Loretta +Marlene +Maxine +Jo +Laura +Thelma +Bertha +Marian +Rita +Charlene +Jacqueline +Leona +Lorraine +Ramona +Roberta +Stella +Vera +Audrey +Ida +Jennie +Katherine +Arlene +Eileen +Eva +Kathryn +Bernice +Clara +Hazel +Margie +Velma +Georgia +Gladys +Violet +Anita +Connie +Ethel +Gwendolyn +Maria +Patsy +Ellen +Janice +Rosemary +Agnes +Jane +Kathleen +Lucy +Mabel +Susan +Sylvia +Della +Flora +Marion +Alberta +Billie +Dora +Pat +Vivian +Yvonne +Erma +Jessie +Susie +Bessie +Carmen +Catherine +Irma +Jeanette +Lila +Nellie +Patty +Pearl +Diane +Dixie +Edith +Ernestine +Lola +Naomi +Rosie +Sarah +Verna +Caroline +Cora +Dona +Jeanne +Lena +Marcella +Rosalie +Alma +Angelina +Bette +Beulah +Constance +Ella +Elvira +Eunice +Fern +Glenna +Paula +Ada +Bettie +Cecilia +Christine +Isabel +Joy +Judy +Linda +Lupe +Marcia +Minnie +Angie +Deloris +Faye +Gertrude +Inez +Jackie +Lorene +Madeline +Nina +Olive +Opal +Rachel +Sue +Teresa +Alta +Angela +Anne +Colleen +Jeannette +Karen +Lydia +Marguerite +Priscilla +Sara +Willa +Amelia +Cleo +Elva +Emily +Henrietta +Iris +Jacquelyn +Kay +Lily +Luella +Margery +Marianne +Maryann +Millie +Miriam +Molly +Myrna +Myrtle +Nadine +Nora +Rebecca +Sharon +Victoria +Adeline +Amy +Bobbie +Carla +Carmelita +Carrie +Celia +Daisy +Eula +Genevieve +Gwen +Harriet +Jerry +Judith +Lillie +Lorna +Matilda +Muriel +Nadene +Nelda +Sandra +Twila +Alicia +Annette +Annie +Antonia +Aurora +Blanche +Cecelia +Claire +Clarice +Delia +Diana +Eloise +Ilene +Josie +Maryanne +Maureen +Mercy +Myra +Rosella +Wilda +Winona +Mary +Betty +Barbara +Shirley +Patricia +Dorothy +Margaret +Donna +Helen +Joan +Virginia +Alice +Beverly +Carol +Nancy +Doris +Ruth +Lois +Phyllis +Marilyn +Norma +Frances +Dolores +Joyce +Gloria +Elizabeth +Marjorie +Joann +Bonnie +Evelyn +Rose +Jean +Darlene +Janet +Martha +Eleanor +Anna +Geraldine +Peggy +Juanita +Carolyn +Irene +Charlotte +Joanne +June +Ruby +Esther +Florence +Sally +Josephine +Wilma +Elsie +Jo +Louise +Marie +Pauline +Roberta +Clara +Delores +Rita +Ann +Gladys +Patsy +Bernice +Wanda +Lorraine +Lucille +Margie +Sylvia +Marian +Mildred +Edna +Eva +Jane +Kathleen +Thelma +Theresa +Viola +Anita +Arlene +Kathryn +Maria +Marlene +Charlene +Edith +Julia +Sarah +Vera +Lillian +Nellie +Rosie +Connie +Eileen +Ethel +Lucy +Pat +Stella +Elaine +Hazel +Jacqueline +Loretta +Bertha +Constance +Laura +Verna +Della +Dora +Ellen +Ida +Maxine +Velma +Audrey +Dixie +Emma +Jennie +Patty +Beatrice +Georgia +Grace +Nadine +Rosemary +Bette +Billie +Catherine +Cora +Genevieve +Katherine +Ramona +Violet +Cecilia +Flora +Jeanette +Jeanne +Joy +Lila +Rosalie +Vivian +Alberta +Kay +Angelina +Carmen +Leona +Lupe +Nina +Ella +Elva +Jessie +Josie +Mabel +Marion +Sue +Agnes +Caroline +Diane +Dona +Ernestine +Geneva +Isabel +Marcia +Mona +Naomi +Bessie +Beverley +Carole +Jacquelyn +Laverne +Lavonne +Lena +Madeline +Marcella +Rachel +Sadie +Sharon +Teresa +Victoria +Yvonne +Beulah +Eunice +Gertrude +Inez +Jerry +Lola +Lorna +Maureen +Priscilla +Rebecca +Alma +Annie +Beth +Cecelia +Claudia +Diana +Emily +Erma +Freda +Iris +Judy +Margery +Marguerite +Opal +Rosella +Sara +Alta +Annabelle +Anne +Blanche +Celia +Cynthia +Eloise +Faye +Ila +Irma +Janice +Leora +Linda +Lydia +Neva +Nora +Olive +Olivia +Pearl +Regina +Andrea +Claire +Cleo +Colleen +Elvira +Glenda +Harriett +Jackie +Judith +Leta +Minnie +Miriam +Paula +Sandra +Susie +Wilda +Alyce +Angela +Angie +Antonia +Aurora +Bobbie +Bonita +Carolina +Carrie +Consuelo +Daisy +Elvera +Emilia +Glenna +Harriet +Helene +Imogene +Jeannette +Jeannie +Jewell +Lenora +Lorene +Mable +Melba +Millie +Myrna +Myrtle +Rosemarie +Rowena +Selma +Susan +Suzanne +Mary +Betty +Barbara +Shirley +Dorothy +Patricia +Donna +Margaret +Joan +Helen +Virginia +Nancy +Carol +Beverly +Ruth +Norma +Frances +Phyllis +Joyce +Alice +Jean +Doris +Evelyn +Dolores +Marilyn +Rose +Joann +Lois +Bonnie +Joanne +Gloria +Janet +Marjorie +Darlene +Peggy +Martha +Elizabeth +Irene +Sally +Anna +Wilma +Esther +Delores +Wanda +Josephine +Sylvia +Carolyn +Eleanor +Janice +Lillian +Marie +Mildred +Juanita +Viola +Ann +June +Maria +Ruby +Louise +Elsie +Florence +Jo +Pauline +Charlotte +Edna +Elaine +Eva +Julia +Roberta +Geraldine +Jennie +Marlene +Rita +Stella +Clara +Grace +Jane +Laura +Loretta +Beatrice +Bernice +Theresa +Arlene +Charlene +Lucille +Ramona +Vivian +Bessie +Georgia +Jacqueline +Kathryn +Bertha +Catherine +Edith +Vera +Leona +Nellie +Carmen +Lorraine +Marian +Patsy +Rosie +Ethel +Ida +Kathleen +Velma +Agnes +Billie +Emma +Jeanne +Katherine +Eileen +Gladys +Margie +Maxine +Sarah +Anita +Dixie +Dora +Kay +Lila +Lucy +Nina +Pat +Thelma +Connie +Diane +Rosalie +Claudia +Della +Isabel +Linda +Sandra +Sue +Yvonne +Alma +Anne +Ella +Hazel +Judy +Rachel +Rosemary +Violet +Carole +Ellen +Erma +Jackie +Josie +Lola +Nadine +Patty +Sharon +Verna +Annie +Gertrude +Ina +Joy +Myrna +Naomi +Nora +Beulah +Genevieve +Glenna +Judith +Lou +Marcella +Alberta +Audrey +Caroline +Geneva +Ila +Irma +Jeanette +Lydia +Pearl +Beth +Bette +Ernestine +Gwendolyn +Jacquelyn +Jerry +Laverne +Lorene +Mabel +Susan +Cecelia +Cleo +Elva +Emily +Fern +Flora +Harriet +Inez +Lavonne +Lupe +Marcia +Marguerite +Minnie +Rebecca +Suzanne +Teresa +Angelina +Angie +Bernadine +Beverley +Cecilia +Charline +Christine +Darline +Eunice +Hope +Imogene +Jessie +Leah +Leota +Madeline +Mae +Maryann +Myrtle +Sara +Victoria +Willa +Alyce +Annette +Avis +Claudine +Cora +Corrine +Diana +Dona +Eloise +Evangeline +Faye +Glenda +Karen +Marilou +Marion +Maureen +Miriam +Nelda +Nona +Opal +Rosemarie +Yolanda +Ada +Alta +Amy +Antonia +Carla +Christina +Claudette +Colleen +Constance +Daisy +Edwina +Frieda +Gay +Henrietta +Iris +Iva +Joe +Lena +Lenora +Lorna +Lula +Molly +Mona +Muriel +Nola +Paula +Polly +Regina +Sheila +Sherry +Sophie +Tillie +Verla +Mary +Shirley +Barbara +Betty +Patricia +Dorothy +Donna +Joan +Margaret +Beverly +Helen +Virginia +Alice +Marilyn +Joyce +Carol +Nancy +Ruth +Frances +Dolores +Norma +Phyllis +Doris +Janet +Bonnie +Lois +Rose +Elizabeth +Darlene +Marie +Gloria +Evelyn +Joanne +Sally +Marjorie +Carolyn +Joann +Anna +Geraldine +Jean +Josephine +Juanita +Roberta +Martha +Charlotte +Jo +Eleanor +Irene +June +Wilma +Pauline +Delores +Esther +Loretta +Pat +Marlene +Peggy +Edna +Judith +Mildred +Rita +Ann +Clara +Lillian +Louise +Patsy +Janice +Sylvia +Wanda +Bernice +Lorraine +Catherine +Elaine +Arlene +Elsie +Florence +Sharon +Charlene +Emma +Jane +Julia +Lucille +Margie +Ellen +Jacqueline +Ramona +Viola +Beatrice +Maria +Maxine +Rosemary +Ruby +Thelma +Dixie +Edith +Ethel +Myrna +Patty +Sarah +Yvonne +Kathleen +Leona +Hazel +Gladys +Ida +Lucy +Connie +Della +Eileen +Eva +Georgia +Kay +Sandra +Susan +Velma +Verna +Carole +Cora +Isabel +Karen +Kathryn +Marian +Audrey +Billie +Cecilia +Ernestine +Grace +Theresa +Vivian +Bertha +Carmen +Jennie +Katherine +Jeanne +Laura +Lila +Stella +Glenda +Josie +Joy +Mona +Nellie +Anita +Priscilla +Sue +Vera +Angelina +Erma +Flora +Rachel +Rosie +Agnes +Diane +Dora +Jeanette +Judy +Lola +Marion +Nadine +Anne +Bessie +Cecelia +Christine +Claudia +Cleo +Ella +Lupe +Opal +Pearl +Victoria +Violet +Alma +Caroline +Colleen +Cynthia +Faye +Frankie +Genevieve +Glenna +Gwendolyn +Harriet +Lela +Lena +Maureen +Rosalie +Constance +Eloise +Estella +Lavonne +Mabel +Neva +Nina +Nora +Rebecca +Sara +Sherry +Susie +Ada +Adeline +Alberta +Annette +Bette +Gail +Gertrude +Inez +Jessie +Linda +Shirlee +Willa +Alta +Angie +Beverley +Christina +Clarice +Diana +Emily +Eula +Fern +Gretchen +Isabell +Isabelle +Iva +Jackie +Jeanie +Jeannette +Jeannine +Jewell +Lorna +Mae +Marcella +Marcia +Marianne +Maryann +Suzanne +Twila +Andrea +Arline +Bernadine +Berniece +Charline +Darline +Dianne +Dolly +Dona +Evangeline +Freda +Goldie +Gwen +Hilda +Ilene +Ina +Irma +Jacquelyn +Janis +Laveta +Lillie +Lou +Matilda +Millie +Myrtle +Nelda +Paula +Regina +Rosa +Rosemarie +Valerie +Wilda +Zelda +Mary +Shirley +Barbara +Patricia +Betty +Donna +Dorothy +Beverly +Margaret +Joan +Nancy +Carol +Helen +Virginia +Frances +Marilyn +Ruth +Gloria +Norma +Janice +Joyce +Alice +Rose +Janet +Evelyn +Phyllis +Carolyn +Dolores +Lois +Doris +Elizabeth +Darlene +Peggy +Marlene +Roberta +Sylvia +Joanne +Jean +Joann +Martha +Bonnie +Jo +Marjorie +Sharon +Charlotte +Geraldine +Irene +Josephine +Juanita +Lillian +Sally +Charlene +Eleanor +Loretta +Louise +Anna +Maria +Elaine +Delores +Jacqueline +Marie +Ann +Arlene +Esther +Kay +Florence +Mildred +Pauline +Georgia +Ruby +Carole +Catherine +Judith +Judy +Sandra +Wilma +June +Myrna +Pat +Rita +Wanda +Kathleen +Patsy +Vivian +Anita +Karen +Lorraine +Margie +Ramona +Stella +Connie +Dixie +Grace +Jane +Sue +Emma +Julia +Katherine +Thelma +Bertha +Hazel +Jeanette +Lucille +Yvonne +Gladys +Laura +Maxine +Theresa +Viola +Bernice +Carmen +Claudia +Elsie +Susan +Ellen +Eva +Glenda +Jennie +Vera +Agnes +Audrey +Caroline +Clara +Cynthia +Ida +Lucy +Della +Ethel +Marian +Verna +Anne +Colleen +Dora +Linda +Patty +Diane +Edna +Ella +Genevieve +Leona +Marion +Violet +Billie +Emily +Kathryn +Naomi +Nina +Rebecca +Velma +Annette +Beatrice +Cecilia +Edith +Jackie +Jacquelyn +Lola +Nellie +Rosemary +Sarah +Ada +Alma +Bessie +Beth +Dona +Eileen +Erma +Fern +Flora +Gertrude +Jeanne +Lydia +Mabel +Priscilla +Teresa +Victoria +Angela +Annabelle +Christine +Claudette +Ernestine +Estella +Gail +Ila +Jessie +Madeline +Marguerite +Nadine +Rosalie +Diana +Gayle +Iris +Joy +Lena +Lila +Mercy +Rachel +Sherry +Annie +Carla +Daisy +Elva +Inez +Irma +Marcella +Molly +Mona +Sara +Angie +Celia +Christina +Cleo +Cora +Elma +Gwendolyn +Josie +Lavonne +Lorna +Lupe +Mable +Marcia +Maryann +Paula +Rosemarie +Rosie +Susie +Winifred +Angelina +Beverley +Constance +Elinor +Geneva +Harriet +Hope +Isabel +Jeannette +Jeannine +Laverne +Luella +Marianne +Maureen +Minnie +Muriel +Nora +Opal +Pearl +Suzanne +Adeline +Alberta +Bernadine +Bobbie +Charla +Claire +Elvira +Henrietta +Hilda +Ilene +Isabelle +Janette +Jaunita +Leota +Lucile +Marla +Melba +Regina +Rosa +Rosella +Rowena +Sadie +Veronica +Winona +Mary +Barbara +Shirley +Patricia +Betty +Donna +Carol +Nancy +Dorothy +Beverly +Margaret +Virginia +Joan +Janice +Helen +Ruth +Alice +Marilyn +Joyce +Janet +Frances +Norma +Phyllis +Dolores +Carolyn +Lois +Martha +Elizabeth +Rose +Doris +Peggy +Bonnie +Darlene +Sharon +Evelyn +Marjorie +Gloria +Sally +Joann +Marie +Roberta +Irene +Jean +Charlotte +Loretta +Sylvia +Marlene +Joanne +Patsy +Sandra +Anita +Esther +Karen +Louise +Wilma +Jo +Josephine +Anna +Kay +Yvonne +Ann +Elaine +Wanda +Carole +Geraldine +Judy +Eleanor +Gladys +Juanita +Judith +Pat +Pauline +Florence +Kathleen +Linda +Arlene +Connie +Delores +Elsie +Ruby +June +Lillian +Lorraine +Grace +Julia +Maria +Dixie +Myrna +Charlene +Clara +Georgia +Jacqueline +Thelma +Beatrice +Edna +Lucy +Viola +Eva +Jeanette +Lucille +Ramona +Stella +Theresa +Billie +Catherine +Eileen +Jane +Leona +Mildred +Rita +Rosie +Ida +Margie +Maxine +Patty +Edith +Emma +Gail +Rosemary +Alberta +Bernice +Diane +Dora +Joy +Kathryn +Laura +Rosalie +Violet +Colleen +Constance +Cora +Deanna +Ethel +Glenda +Katherine +Bertha +Sarah +Vivian +Agnes +Audrey +Caroline +Hazel +Jeannette +Jennie +Josie +Lola +Marian +Susie +Vera +Claudia +Della +Diana +Jackie +Priscilla +Susan +Dianne +Ellen +Gayle +Lupe +Annette +Jeanne +Lila +Naomi +Nellie +Verna +Alma +Annie +Carmen +Cecelia +Cecilia +Genevieve +Jessie +Lydia +Rachel +Cynthia +Emily +Ernestine +Geneva +Iris +Madeline +Marcella +Opal +Sheila +Angelina +Dona +Flora +Gwendolyn +Henrietta +Isabel +Laverne +Marcia +Marguerite +Marion +Nadine +Paula +Sharron +Sue +Velma +Angie +Bessie +Carla +Ella +Eloise +Gertrude +Ilene +Imogene +Inez +Maryann +Mercy +Minnie +Nora +Sherry +Victoria +Anne +Bette +Christine +Cleo +Elva +Faye +Fern +Harriet +Harriett +Jacquelyn +Lavonne +Lenora +Lorna +Mable +Marianne +Myrtle +Nina +Nola +Pearl +Sadie +Amelia +Aurora +Beth +Earlene +Erma +Eunice +Freda +Gay +Hope +Ila +Isabelle +Lena +Lorene +Luella +Mabel +Melva +Mercedes +Muriel +Rosa +Sonya +Teresa +Tillie +Verla +Winona +Barbra +Bernadine +Beverley +Blanche +Bobbie +Dorene +Estella +Georgie +Glenna +Janie +Jeanie +Lillie +Marilynn +Marsha +Maureen +Miriam +Myra +Nelda +Nita +Nona +Olivia +Rosemarie +Sonja +Winifred +Mary +Barbara +Patricia +Shirley +Betty +Donna +Carol +Nancy +Margaret +Dorothy +Virginia +Beverly +Janice +Joyce +Marilyn +Phyllis +Sharon +Joan +Sandra +Helen +Ruth +Frances +Alice +Judith +Norma +Janet +Carolyn +Dolores +Gloria +Judy +Rose +Rosalie +Doris +Lois +Elizabeth +Darlene +Roberta +Martha +Loretta +Bonnie +Joann +Evelyn +Wanda +Connie +Charlotte +Marie +Linda +Marjorie +Peggy +Anna +Jean +Sally +Margie +Esther +Sylvia +Wilma +Irene +Marlene +Geraldine +Joanne +Myrna +Ann +Arlene +Eleanor +Kathleen +Juanita +Catherine +Jeanette +Josephine +Karen +Kay +Charlene +Jacqueline +Patsy +Louise +Pauline +Jane +Lillian +Rita +Deanna +Dora +Anita +Dixie +Elaine +Ramona +Susan +Edna +Florence +Gail +Ruby +Diane +Georgia +Marcia +Viola +Carole +Lorraine +Maria +Theresa +Delores +Eva +Ida +Jo +Clara +Eileen +Grace +Julia +June +Maxine +Carmen +Edith +Flora +Marian +Pat +Rosemary +Stella +Elsie +Thelma +Vivian +Yvonne +Della +Lucille +Patty +Diana +Ellen +Jackie +Mildred +Priscilla +Sonja +Alberta +Beatrice +Bernice +Bertha +Billie +Hazel +Katherine +Nellie +Sue +Verna +Cecilia +Claudia +Emily +Glenda +Kathryn +Paula +Sarah +Suzanne +Annette +Caroline +Ethel +Gladys +Josie +Lucy +Constance +Jeanne +Jennie +Audrey +Carla +Cynthia +Ella +Laura +Laurel +Marcella +Teresa +Beverley +Cora +Emma +Joy +Leona +Madeline +Nina +Sheila +Sherry +Velma +Agnes +Angelina +Ernestine +Fern +Lila +Maryann +Naomi +Nora +Rebecca +Rosie +Violet +Alma +Angie +Deloris +Harriet +Lupe +Marilynn +Nadine +Nona +Pearl +Vera +Anne +Annie +Bessie +Beth +Celia +Colleen +Elva +Genevieve +Henrietta +Ina +Lola +Marsha +Rachel +Cecelia +Cleo +Dona +Eunice +Geneva +Iris +Isabel +Lena +Lorene +Lydia +Marguerite +Maureen +Rosalee +Sondra +Susie +Victoria +Claudette +Erma +Freda +Gertrude +Gwendolyn +Inez +Jeannette +Jessie +Joanna +Laverne +Lavonne +Lillie +Lora +Marianne +Marion +Mona +Myrtle +Olivia +Opal +Rosemarie +Yolanda +Ada +Adeline +Bette +Beulah +Cheryl +Darla +Elvira +Evangeline +Jan +Lynn +Marla +Mercedes +Rochelle +Sadie +Selma +Vicki +Willa +Wynona +Annetta +Bettie +Blanche +Bobbie +Carrie +Charline +Cherie +Claire +Claudine +Dana +Dee +Erlinda +Francis +Frieda +Gayle +Glenna +Harriett +Hope +Ila +Jacquelyn +Janis +Jolene +Kaye +Leah +Leta +Lilly +Lily +Luella +Mable +Melva +Molly +Neva +Sonya +Stephanie +Mary +Barbara +Patricia +Shirley +Betty +Carol +Donna +Dorothy +Judith +Nancy +Margaret +Janice +Sharon +Beverly +Joan +Joyce +Virginia +Helen +Marilyn +Judy +Sandra +Carolyn +Frances +Phyllis +Janet +Linda +Alice +Norma +Ruth +Lois +Gloria +Loretta +Rose +Darlene +Bonnie +Jean +Dolores +Marjorie +Roberta +Joann +Charlotte +Doris +Esther +Irene +Peggy +Geraldine +Marie +Elizabeth +Anna +Evelyn +Martha +Ann +Elaine +Marlene +Sally +Karen +Jo +Louise +Rosalie +Jane +Charlene +Julia +Kay +Carole +Wilma +Kathryn +Patsy +Pauline +Josephine +Kathleen +Anita +Diane +Pat +Sylvia +Myrna +Yvonne +Florence +Joanne +Susan +Glenda +Lillian +Deanna +Rita +Wanda +Beatrice +Catherine +Margie +Connie +Eleanor +Jeanette +Lorraine +Elsie +June +Katherine +Lucille +Dixie +Juanita +Leona +Priscilla +Viola +Claudia +Marcia +Maria +Mildred +Arlene +Maxine +Alberta +Edna +Lucy +Sue +Thelma +Verna +Bertha +Delores +Diana +Dora +Jacqueline +Ramona +Ruby +Vivian +Carmen +Clara +Patty +Constance +Georgia +Bernice +Cynthia +Edith +Jennie +Gladys +Caroline +Lydia +Marian +Stella +Agnes +Audrey +Laura +Theresa +Vera +Eileen +Ethel +Eva +Marcella +Nellie +Rebecca +Victoria +Billie +Carla +Christine +Ella +Emma +Gail +Jackie +Rachel +Sonja +Alma +Della +Genevieve +Joy +Lola +Maureen +Nora +Sarah +Angela +Bette +Cecelia +Colleen +Darla +Elva +Jessie +Maryann +Opal +Rosemary +Susie +Annette +Emily +Flora +Isabel +Josie +Lila +Madeline +Marion +Marsha +Olivia +Paula +Rosie +Sondra +Violet +Ellen +Erma +Hazel +Ida +Jeanne +Jeannette +Mabel +Nadine +Naomi +Sadie +Sherry +Teresa +Adeline +Angie +Beth +Brenda +Cecilia +Cleo +Cora +Ernestine +Evangeline +Faye +Geneva +Grace +Henrietta +Lorna +Lupe +Penny +Rosalee +Sara +Velma +Dee +Dianne +Estella +Eunice +Gayle +Gwen +Harriet +Iris +Julie +Laurel +Lenora +Lora +Mable +Pearl +Penelope +Sheila +Suzanne +Andrea +Annie +Beulah +Claudette +Frieda +Jacquelyn +Jerry +Kathy +Lena +Leslie +Lynne +Marguerite +Minnie +Mona +Nona +Rae +Twila +Ada +Ardith +Arleen +Beverley +Carrol +Debra +Eloise +Gay +Harriett +Hope +Ilene +Ina +Janie +Janis +Jewel +Jolene +Kaye +Lavonne +Leilani +Lillie +Lily +Lorene +Luella +Lynn +Marianne +Matilda +Mercedes +Miriam +Myrtle +Nina +Nita +Pamela +Renee +Rosa +Tillie +Toni +Veronica +Willa +Zelma +Mary +Patricia +Barbara +Carol +Betty +Judith +Shirley +Sharon +Donna +Sandra +Margaret +Judy +Nancy +Virginia +Linda +Dorothy +Joyce +Janice +Carolyn +Beverly +Janet +Phyllis +Marilyn +Gloria +Joan +Helen +Karen +Bonnie +Frances +Norma +Ruth +Alice +Elizabeth +Martha +Charlotte +Lois +Rose +Susan +Dolores +Doris +Roberta +Geraldine +Ann +Esther +Peggy +Kathleen +Darlene +Pat +Sally +Jo +Connie +Jean +Marjorie +Juanita +Kay +Evelyn +Katherine +Anna +Elaine +Josephine +Loretta +Myrna +Sylvia +Diane +Patsy +Rita +Carole +Joann +Marie +Pauline +Wanda +Anita +Louise +Irene +Mildred +Diana +Jane +Jeanette +Joanne +Julia +Maria +Priscilla +Ruby +Viola +Georgia +Arlene +Charlene +Deanna +Dixie +Catherine +Margie +Wilma +Edna +Eva +Florence +Rosalie +Thelma +Edith +Gail +Glenda +Kathryn +Cynthia +Patty +Jacqueline +June +Maxine +Theresa +Vivian +Clara +Eleanor +Marcia +Rebecca +Anne +Delores +Eileen +Ellen +Laura +Ramona +Beatrice +Bertha +Elsie +Lucy +Rosemary +Carmen +Ida +Lila +Lorraine +Lydia +Sarah +Sherry +Yvonne +Caroline +Grace +Lillian +Lucille +Marlene +Sue +Audrey +Emma +Ethel +Jeanne +Jeannette +Jennie +Christine +Nellie +Paula +Vera +Bernice +Erma +Kathy +Marian +Sheila +Alberta +Carla +Colleen +Constance +Suzanne +Brenda +Dora +Marcella +Stella +Annette +Claudia +Dianne +Gayle +Gladys +Julie +Lorna +Lynne +Maryann +Naomi +Rachel +Violet +Cecilia +Flora +Jessie +Lola +Marilynn +Marsha +Victoria +Angelina +Bessie +Beth +Cleo +Della +Ella +Emily +Ernestine +Faye +Hazel +Joy +Leona +Mabel +Madeline +Marianne +Maureen +Mona +Nora +Rosie +Sadie +Sara +Saundra +Sondra +Vicki +Agnes +Alma +Angela +Billie +Gwendolyn +Margarita +Polly +Sharron +Teresa +Velma +Verna +Amelia +Andrea +Angie +Annabelle +Annie +Bette +Beverley +Corrine +Darla +Dona +Freda +Geneva +Genevieve +Gretchen +Harriet +Inez +Jackie +Jacquelyn +Josie +Laurel +Lavonne +Lou +Nadine +Nina +Olivia +Pamela +Pearl +Rosa +Sonja +Susie +Valerie +Carrie +Cecelia +Etta +Eunice +Francis +Jeanie +Jeannine +Jenny +Leola +Louella +Melba +Myra +Penny +Twila +Willa +Alta +Antoinette +Belva +Consuelo +Cora +Crystal +Dawn +Delia +Deloris +Dolly +Earlene +Elinor +Georgina +Gertrude +Gwen +Iris +Iva +Jeannie +Jerry +Judie +Ladonna +Leila +Lena +Lucia +Lupe +Margo +Marion +Marla +Neva +Penelope +Regina +Rosella +Velda +Mary +Barbara +Patricia +Sharon +Carol +Judith +Judy +Nancy +Betty +Donna +Sandra +Shirley +Linda +Karen +Margaret +Virginia +Carolyn +Helen +Beverly +Dorothy +Janice +Joyce +Gloria +Janet +Joan +Bonnie +Elizabeth +Norma +Alice +Frances +Marilyn +Peggy +Ruth +Charlotte +Phyllis +Jean +Kathleen +Lois +Marie +Rose +Loretta +Susan +Dolores +Irene +Evelyn +Martha +Geraldine +Sally +Connie +Marjorie +Doris +Joann +Elaine +Roberta +Carole +Eleanor +Louise +Diane +Charlene +Priscilla +Rita +Maria +Wanda +Darlene +Joanne +Georgia +Ruby +Ann +Esther +Juanita +Kathryn +Kay +Marlene +Theresa +Patsy +Katherine +Anna +Cynthia +Jane +Sylvia +Catherine +Jeanette +Clara +Patty +Sue +Arlene +Jacqueline +Josephine +Julia +Carmen +Edith +Ellen +Lucille +Pat +Delores +Glenda +Anita +Diana +Dixie +Leona +Lillian +Rosalie +Deanna +Grace +Laura +Paula +Wilma +Cecilia +Claudia +Eileen +Eva +Florence +Jo +Lorraine +Pauline +Sarah +Teresa +Thelma +Bertha +Constance +Kathy +Sheila +Viola +Edna +Ethel +Jeanne +Joy +Margie +Mildred +Sherry +Lucy +Myrna +Yvonne +Anne +Bernice +Carla +Dianne +Gladys +Marcella +Marian +Beatrice +Billie +Marcia +Rebecca +Stella +Verna +Genevieve +Hazel +Maxine +Nadine +Vivian +Della +Elsie +Emily +Jennie +Lupe +Lynda +Victoria +Alberta +Angie +Emma +Faye +Gail +Isabel +June +Lydia +Pamela +Rachel +Vera +Agnes +Annette +Caroline +Christine +Jeannette +Josie +Julie +Lynn +Ramona +Rosemary +Velma +Beth +Beverley +Cecelia +Gayle +Madeline +Marguerite +Penny +Rosie +Suzanne +Violet +Audrey +Bessie +Brenda +Colleen +Dianna +Ella +Glenna +Ida +Inez +Iris +Jacquelyn +Jan +Maryann +Nora +Sara +Sharron +Andrea +Bette +Elva +Ernestine +Jerry +Lila +Lorna +Lynne +Myra +Myrtle +Nellie +Olivia +Regina +Charla +Cheryl +Flora +Gertrude +Janis +Jessie +Joanna +Lola +Marsha +Maureen +Mona +Nina +Sondra +Stephanie +Terry +Veronica +Vicki +Adeline +Betsy +Bobbie +Bonita +Celia +Cora +Daisy +Dora +Erma +Fern +Gwendolyn +Henrietta +Jackie +Janie +Jeannie +Lee +Mercedes +Miriam +Sadie +Sandy +Sherrill +Sonja +Alma +Annie +Becky +Bernadine +Charleen +Cleo +Cordelia +Darla +Dona +Estella +Frankie +Freda +Geneva +Gretchen +Ila +Ina +Irma +Jeanie +Jeannine +Jenny +Lana +Laurel +Laverne +Lena +Leota +Lilly +Lucia +Marianne +Marla +Meredith +Nelda +Neva +Pearl +Rosa +Sharlene +Susie +Mary +Sharon +Barbara +Patricia +Carol +Linda +Sandra +Judith +Judy +Nancy +Betty +Carolyn +Donna +Karen +Shirley +Margaret +Janice +Virginia +Joyce +Janet +Joan +Marilyn +Kathleen +Dorothy +Beverly +Helen +Frances +Bonnie +Susan +Alice +Phyllis +Ruth +Carole +Charlotte +Rose +Gloria +Ann +Loretta +Elizabeth +Anna +Martha +Peggy +Lois +Connie +Rita +Geraldine +Marie +Roberta +Katherine +Diane +Dolores +Evelyn +Darlene +Sally +Diana +Jean +Norma +Catherine +Josephine +Louise +Wanda +Maria +Doris +Irene +Joann +Charlene +Patsy +Jane +Juanita +Pamela +Eleanor +Jo +Kathryn +Elaine +Laura +Myrna +Theresa +Jacqueline +Paula +Pauline +Rebecca +Cynthia +Jeanette +Jeanne +Kay +Rosalie +Anita +Julia +Lillian +Marlene +Ellen +Gail +Glenda +Joanne +Marjorie +Pat +Sherry +Georgia +Kathy +Lorraine +Esther +Priscilla +Rosemary +Florence +Marcia +Margie +Sarah +Clara +Edith +Eileen +Sharron +Arlene +Cecilia +Claudia +Deanna +Delores +Dianne +Dixie +Grace +June +Wilma +Bertha +Billie +Carmen +Lucille +Ramona +Sheila +Thelma +Yvonne +Elsie +Lucy +Sylvia +Alberta +Beatrice +Joy +Mildred +Stella +Verna +Vivian +Dora +Edna +Eva +Jennie +Ruby +Sara +Anne +Gladys +Marian +Maureen +Penny +Sue +Velma +Carla +Caroline +Jeannette +Lola +Patty +Vera +Victoria +Viola +Cecelia +Christine +Colleen +Cora +Genevieve +Hope +Ida +Jessie +Pearl +Rosie +Teresa +Vicki +Annette +Audrey +Emily +Ethel +Hazel +Leslie +Annie +Ella +Lynda +Marcella +Marilynn +Maxine +Suzanne +Veronica +Constance +Iris +Jackie +Julie +Leona +Lila +Lynne +Madeline +Marion +Susie +Angie +Bernice +Bobbie +Cathy +Cheryl +Della +Emma +Harriet +Josie +Lupe +Lynn +Naomi +Nora +Sondra +Agnes +Glenna +Janie +Judi +Judie +Marsha +Minnie +Nellie +Olivia +Vickie +Vicky +Bernadine +Beth +Bette +Dona +Eloise +Flora +Inez +Jacquelyn +Karin +Lavonne +Lorna +Luella +Marguerite +Marianne +Nadine +Regina +Rosemarie +Sandy +Toni +Ardith +Becky +Bessie +Beverley +Bonita +Carrie +Darla +Delia +Dianna +Erma +Ernestine +Eunice +Faith +Gerry +Jeannie +Lana +Laurel +Lee +Lora +Loraine +Lydia +Margo +Mercy +Michele +Miriam +Molly +Sharen +Sheryl +Violet +Ada +Alma +Amanda +Angela +Brenda +Celia +Charla +Cherry +Claire +Cleo +Deloris +Earlene +Fern +Frieda +Gayle +Gertrude +Gwen +Henrietta +Ilene +Isabel +Leah +Lela +Lena +Leta +Lillie +Mabel +Mable +Marilee +Marla +Maryann +Patti +Paulette +Sadie +Sherrill +Sonja +Valerie +Mary +Sharon +Patricia +Carol +Barbara +Linda +Judith +Karen +Nancy +Sandra +Donna +Judy +Shirley +Carolyn +Betty +Marilyn +Margaret +Janice +Dorothy +Joyce +Gloria +Janet +Susan +Helen +Kathleen +Virginia +Joan +Elizabeth +Frances +Beverly +Ruth +Bonnie +Connie +Phyllis +Alice +Dolores +Rose +Charlotte +Roberta +Jean +Katherine +Marie +Cheryl +Lois +Elaine +Louise +Martha +Diana +Diane +Loretta +Ann +Joann +Pamela +Carole +Patsy +Rita +Doris +Norma +Peggy +Theresa +Sally +Jo +Anna +Catherine +Darlene +Sherry +Evelyn +Kay +Cynthia +Kathy +Jane +Josephine +Juanita +Julia +Kathryn +Wanda +Eleanor +Geraldine +Sylvia +Jacqueline +Charlene +Clara +Irene +Maria +Priscilla +Ellen +Sue +Dianne +Marjorie +Wilma +Anita +Deanna +Gail +Joanne +Sheila +Christine +Delores +Esther +Jeanette +Lynda +Stella +Vicki +Georgia +Marsha +Ruby +Claudia +Margie +Arlene +Jeanne +Julie +Lorraine +Pauline +Caroline +Maxine +Rebecca +Laura +Marlene +Pat +Paula +Suzanne +Beatrice +Constance +Lucille +Mildred +Patty +Rosalie +Sharron +Viola +Emma +Jennie +Lillian +Sarah +Teresa +Victoria +Yvonne +Cecilia +Dixie +Myrna +Penny +Anne +Ethel +Flora +Florence +June +Lucy +Rosemary +Verna +Vivian +Edna +Paulette +Ida +Jacquelyn +Maureen +Ramona +Thelma +Veronica +Billie +Carla +Edith +Gladys +Lynn +Madeline +Marcella +Sandy +Audrey +Becky +Bernice +Bertha +Cathy +Cecelia +Dora +Eileen +Ernestine +Eva +Jackie +Joy +Lydia +Lynne +Marcia +Marguerite +Marian +Rosie +Elsie +Jeannette +Jeannie +Leona +Maryann +Nadine +Susie +Vera +Angie +Dianna +Gayle +Grace +Harriet +Lana +Marilynn +Sherrie +Sheryl +Carmen +Dona +Elva +Faye +Isabel +Jeanie +Leslie +Marion +Penelope +Rachel +Terry +Velma +Alberta +Annie +Colleen +Ella +Ginger +Glenda +Glenna +Iris +Irma +Jan +Josie +Lupe +Minnie +Nellie +Nina +Olivia +Pearl +Rosemarie +Amy +Angelina +Annette +Beth +Christina +Dale +Darla +Della +Emily +Eunice +Gwendolyn +Hazel +Jessie +Jill +Laverne +Lee +Lenore +Lola +Melody +Regina +Roseann +Saundra +Shannon +Sondra +Stephanie +Vicky +Violet +Agnes +Antoinette +Bonita +Brenda +Carmel +Celia +Charleen +Dawn +Deborah +Erma +Genevieve +Ina +Inez +Janette +Joanna +Judi +Lorene +Lorna +Melanie +Meredith +Myra +Sidney +Adeline +April +Bernadette +Bessie +Cassandra +Cleo +Delia +Earlene +Estella +Eugenia +Frankie +Henrietta +Isabelle +Jerry +Josefina +Lela +Margo +Marianne +Marla +Marylou +May +Michele +Mickey +Naomi +Neva +Sara +Sherrill +Toni +Vickie +Mary +Sharon +Patricia +Barbara +Carol +Linda +Sandra +Judith +Judy +Donna +Nancy +Karen +Shirley +Carolyn +Susan +Betty +Kathleen +Margaret +Marilyn +Cheryl +Janet +Virginia +Joyce +Dorothy +Beverly +Gloria +Janice +Frances +Bonnie +Elizabeth +Helen +Ruth +Joan +Phyllis +Diane +Martha +Alice +Connie +Carole +Pamela +Rose +Diana +Ann +Peggy +Catherine +Jane +Roberta +Sally +Norma +Charlotte +Rita +Esther +Kathryn +Darlene +Jean +Cynthia +Marie +Katherine +Claudia +Dolores +Loretta +Lorraine +Evelyn +Kathy +Maria +Sherry +Sylvia +Theresa +Elaine +Geraldine +Jacqueline +Joann +Anne +Gail +Jo +Juanita +Louise +Christine +Jeanne +Patsy +Paula +Ruby +Doris +Anita +Eileen +Irene +Josephine +Kay +Pauline +Rebecca +Sue +Eleanor +Glenda +Julia +Sheila +Delores +Lois +Anna +Ellen +Deanna +Dianne +Marjorie +Wilma +Charlene +Marlene +Wanda +Joanne +Marsha +Viola +Arlene +Stella +Victoria +Carmen +Edna +Lynda +Bernice +Florence +Marcia +Rosalie +Sarah +Suzanne +Caroline +Constance +Georgia +Laura +Mildred +Pat +Paulette +Vicki +Clara +Edith +Emily +Jeanette +Lynn +Marcella +Patty +Priscilla +Ramona +Grace +Leona +Lucille +Rosemary +Sharron +Teresa +Billie +Dixie +Lillian +Maxine +Velma +Yvonne +Bertha +Elsie +Jan +Lucy +Margie +Marian +Sheryl +Della +Ernestine +Cecilia +Colleen +Emma +Eva +Jennie +Lupe +Lydia +Marilynn +Sara +Stephanie +Toni +Vera +Veronica +Beatrice +Debra +Ella +Gladys +Lola +Maryann +Naomi +Pearl +Sandy +Sherrie +Thelma +Bernadette +Carla +Cathy +Christina +Dora +Gayle +Jessie +Jill +Julie +Marianne +Myrna +Susie +Andrea +Angie +Genevieve +Ida +Isabel +Jeannette +Lana +Leslie +Lila +Marguerite +Michele +Mona +Opal +Penelope +Penny +Vivian +Agnes +Annette +Annie +Audrey +Bonita +Brenda +Gertrude +Jackie +Joy +Judi +Lorna +Mabel +Nina +Nora +Rosa +Saundra +Sondra +Verna +Vicky +Violet +Alma +Bette +Deborah +Glenna +Gretchen +Henrietta +Jacquelyn +Jeannie +Lee +Maureen +Patti +Trudy +Adeline +Angelina +Becky +Bessie +Carrie +Cindy +Corinne +Debbie +Dianna +Estella +Harriet +Hope +Iris +Jennifer +Jenny +June +Ladonna +Lynne +Margo +Melinda +Melva +Olivia +Rachel +Robin +Terry +Twila +Vickie +Ada +Alicia +Amy +Angela +Antoinette +Beverley +Bobbie +Carlene +Cecelia +Celia +Charla +Cheryll +Consuelo +Dona +Ethel +Faye +Flora +Gay +Hazel +Inez +Janie +Jeanie +Jeannine +Jerry +Karla +Leila +Madeline +Marion +Marylou +Miriam +Nona +Renee +Roseann +Rosella +Rosemarie +Rosie +Roxie +Sadie +Sallie +Shari +Sonja +Susanne +Mary +Linda +Sharon +Patricia +Carol +Barbara +Sandra +Karen +Judy +Judith +Nancy +Donna +Betty +Shirley +Margaret +Susan +Janet +Kathleen +Carolyn +Gloria +Dorothy +Cheryl +Joyce +Virginia +Janice +Marilyn +Helen +Beverly +Joan +Bonnie +Pamela +Ruth +Diane +Elizabeth +Diana +Frances +Rose +Martha +Phyllis +Jean +Alice +Jane +Connie +Peggy +Charlotte +Geraldine +Roberta +Ann +Sally +Catherine +Rita +Elaine +Marie +Darlene +Josephine +Kathy +Norma +Joann +Victoria +Cynthia +Irene +Loretta +Paula +Gail +Maria +Sherry +Jo +Juanita +Anna +Christine +Katherine +Louise +June +Kathryn +Carole +Claudia +Dolores +Ellen +Evelyn +Kay +Sheila +Charlene +Glenda +Patsy +Sue +Anita +Georgia +Lois +Marcia +Teresa +Theresa +Vicki +Jeanette +Lorraine +Lucille +Pauline +Jeanne +Laura +Marjorie +Rebecca +Carmen +Lynn +Rosemary +Anne +Jacqueline +Margie +Mildred +Marsha +Penny +Priscilla +Dianne +Doris +Eileen +Florence +Patty +Julia +Leslie +Lillian +Wanda +Wilma +Billie +Delores +Eva +Joanne +Sylvia +Jennie +Lynda +Marlene +Ruby +Stella +Beatrice +Gayle +Julie +Maxine +Sarah +Arlene +Elsie +Esther +Sheryl +Suzanne +Vickie +Viola +Bernice +Eleanor +Jackie +Myrna +Pat +Rosalie +Rosie +Deborah +Edna +Lucy +Constance +Dixie +Ella +Ida +Sandy +Vivian +Andrea +Cecilia +Clara +Dianna +Edith +Ethel +Janie +Janis +Leona +Marcella +Maryann +Terry +Gladys +Grace +Lana +Lydia +Marian +Sara +Toni +Verna +Vicky +Annette +Carla +Cathleen +Cathy +Colleen +Dana +Deanna +Dora +Joy +Lupe +Regina +Sharron +Vera +Brenda +Jacquelyn +Jill +Josie +Nora +Ramona +Sherrie +Veronica +Yvonne +Della +Flora +Harriet +Henrietta +Marguerite +Marilynn +Maureen +Nadine +Penelope +Rosemarie +Sondra +Sonja +Trudy +Valerie +Violet +Angela +Bertha +Caroline +Cecelia +Christina +Dona +Faye +Gwendolyn +Hazel +Jennifer +Karla +Kaye +Lee +Lorna +Nina +Rosa +Thelma +Velma +Agnes +Alberta +Amelia +Beth +Bette +Cindy +Dawn +Elvira +Emily +Emma +Inez +Isabel +Karol +Laurel +Lena +Lila +Lisa +Lola +Marianne +Mercy +Michele +Nita +Paulette +Rachel +Sharyn +Alicia +Angelina +Angie +Bernadette +Bobbie +Cora +Corinne +Gay +Guadalupe +Jan +Jenny +Jessie +Judi +Lynette +Madeline +Olivia +Rena +Susie +Amy +Antoinette +Candace +Candy +Charla +Cleo +Darla +Erlinda +Erma +Faith +Frankie +Geneva +Genevieve +Jacque +Lynne +Mabel +Meredith +Miriam +Molly +Pam +Pearl +Renee +Robin +Roseann +Terri +Therese +Mary +Linda +Patricia +Sharon +Barbara +Carol +Sandra +Karen +Susan +Judith +Nancy +Judy +Donna +Betty +Janet +Kathleen +Margaret +Cheryl +Shirley +Janice +Carolyn +Joyce +Gloria +Virginia +Connie +Marilyn +Beverly +Diane +Diana +Dorothy +Pamela +Cynthia +Helen +Bonnie +Phyllis +Joan +Katherine +Rose +Ruth +Elizabeth +Frances +Peggy +Jo +Kathy +Ann +Alice +Jane +Sally +Charlotte +Martha +Roberta +Catherine +Rita +Jean +Kathryn +Theresa +Vicki +Geraldine +Dolores +Joann +Kay +Marie +Sherry +Charlene +Darlene +Laura +Elaine +Anita +Evelyn +Loretta +Patsy +Rebecca +Sylvia +Doris +Gail +Juanita +Lorraine +Maria +Sheila +Irene +Lynn +Rosemary +Christine +Lois +Paula +Georgia +Louise +Victoria +Norma +Constance +Jeanette +Jeanne +Julie +Marsha +Claudia +Dianne +Jacqueline +Marjorie +Priscilla +Sue +Suzanne +Carole +Joanne +Lucy +Sheryl +Anna +Eileen +Josephine +Pauline +Wanda +Anne +Glenda +Delores +Marcia +Penny +Teresa +Ellen +Esther +Gayle +Veronica +Andrea +Dianna +Ruby +Eleanor +Carla +Stella +Stephanie +Beatrice +Carmen +Cathy +June +Leslie +Lynda +Margie +Marlene +Patty +Sarah +Clara +Deanna +Dixie +Lucille +Marian +Maureen +Paulette +Sharron +Terry +Vickie +Annette +Caroline +Jackie +Julia +Lillian +Lynne +Rosalie +Sara +Vivian +Bertha +Janis +Arlene +Grace +Jennifer +Mildred +Susie +Audrey +Bernadette +Cindy +Della +Florence +Gwendolyn +Jennie +Toni +Viola +Yvonne +Becky +Christina +Edna +Isabel +Pat +Ramona +Wilma +Alberta +Bernice +Beth +Billie +Cecilia +Dora +Elsie +Eva +Genevieve +Lana +Vera +Candace +Edith +Emily +Emma +Hazel +Ida +Janie +Joy +Karla +Marcella +Marianne +Rosie +Brenda +Deborah +Ernestine +Ethel +Jacquelyn +Janette +Jill +Maryann +Robin +Trudy +Vicky +Cecelia +Debra +Harriet +Jan +Lupe +Nina +Thelma +Jeannette +Judi +Lee +Leona +Lydia +Madeline +Maxine +Pam +Patti +Penelope +Rosemarie +Sonja +Terrie +Angelina +Antonia +Bobbie +Colleen +Dana +Dee +Faye +Gladys +Glenna +Hope +Iris +Jamie +Jeannie +Jenny +Jessie +Laurel +Lola +Michelle +Rhonda +Rosa +Sandy +Yolanda +Agnes +Angie +Antoinette +Candy +Celia +Cheri +Cherie +Darla +Denise +Flora +Geneva +Gwen +Inez +Irma +Lou +Michele +Naomi +Nora +Rae +Sandi +Saundra +Sheri +Sondra +Valerie +Verna +Angela +April +Bonita +Dona +Elva +Erma +Estella +Francine +Freda +Guadalupe +Henrietta +Lenora +Lorene +Marguerite +Marilynn +Marion +Myrna +Nola +Rachel +Sharyn +Sherri +Sherrie +Susanne +Terri +Unknown +Violet +Alma +Annabelle +Betsy +Candice +Carrie +Carrol +Cathleen +Cherryl +Claire +Cora +Corinne +Dale +Debbie +Doreen +Ella +Erlinda +Esperanza +Etta +Fern +Ginger +Jeri +Jerry +Judie +Karol +Kaye +Lauretta +Leann +Margo +Melanie +Melody +Mercy +Meredith +Molly +Muriel +Nelda +Nellie +Opal +Pearl +Regina +Renee +Rosella +Sherryl +Shiela +Suzan +Velma +Linda +Mary +Patricia +Sharon +Barbara +Sandra +Carol +Karen +Nancy +Susan +Donna +Judy +Judith +Kathleen +Janet +Margaret +Cheryl +Janice +Betty +Shirley +Gloria +Marilyn +Carolyn +Diane +Connie +Virginia +Pamela +Dorothy +Cynthia +Diana +Elizabeth +Joyce +Bonnie +Beverly +Frances +Phyllis +Joan +Helen +Jo +Kathy +Catherine +Rita +Peggy +Ann +Kathryn +Rose +Sherry +Katherine +Ruth +Vicki +Jane +Jean +Maria +Rebecca +Alice +Charlotte +Loretta +Martha +Roberta +Darlene +Laura +Marie +Sally +Lynda +Norma +Charlene +Elaine +Gail +Paula +Jeanne +Lorraine +Sue +Theresa +Marsha +Dianne +Evelyn +Sheila +Anita +Lynn +Cathy +Claudia +Christine +Irene +Lois +Marjorie +Ellen +Kay +Jacqueline +Josephine +Geraldine +Joann +Patsy +Juanita +Dolores +Georgia +Esther +Rosemary +Glenda +Victoria +Deborah +Marcia +Wanda +Constance +Joanne +Pauline +Suzanne +Julie +Vickie +Arlene +Delores +Leslie +Louise +Sylvia +Sheryl +Gayle +Teresa +Jeanette +Stella +Terry +Anna +Janis +Patty +Toni +Carmen +Cheri +Lucille +Rosalie +Eileen +Margie +Pat +Penny +June +Maureen +Sandy +Carole +Doris +Jill +Marlene +Dixie +Eleanor +Julia +Lucy +Mildred +Edith +Sarah +Susie +Yvonne +Anne +Carla +Caroline +Ramona +Sara +Vicky +Becky +Bernice +Deanna +Florence +Lynne +Ruby +Wilma +Clara +Dianna +Stephanie +Billie +Cindy +Edna +Jackie +Jan +Jeannie +Jennifer +Sharron +Terri +Verna +Vivian +Beatrice +Bertha +Christina +Debra +Elsie +Ethel +Joy +Maxine +Myrna +Priscilla +Veronica +Wendy +Brenda +Cecelia +Cecilia +Eva +Kristine +Lillian +Marcella +Maryann +Melody +Michele +Paulette +Annette +Candace +Geneva +Grace +Lana +Lynette +Rachel +Rosie +Colleen +Denise +Hope +Jennie +Bernadette +Dana +Ida +Janie +Laurel +Laurie +Lydia +Sherri +Sherrie +Beth +Cora +Ella +Ernestine +Isabel +Marian +Trudy +Agnes +Andrea +Bette +Dawn +Emily +Erma +Frankie +Gladys +Glenna +Hazel +Ilene +Jacquelyn +Jenny +Leona +Lorna +Penelope +Sharyn +Thelma +Valerie +Vera +Beverley +Bobbie +Candice +Celia +Charla +Diann +Dora +Erlinda +Francine +Gwendolyn +Henrietta +Karla +Lee +Lupe +Madeline +Margo +Marianne +Marla +Nina +Nora +Pam +Regina +Robin +Tina +Velma +Cherie +Corrine +Darla +Delia +Emma +Genevieve +Gwen +Iris +Jamie +Jerry +Jody +Lena +Lonnie +Lucinda +Marilynn +Michelle +Miriam +Nadine +Naomi +Rosemarie +Sherrill +Teri +Terrie +Violet +Yolanda +Alberta +Amy +Angie +Antoinette +Betsy +Cathie +Cathleen +Chris +Consuelo +Della +Harriet +Holly +Jeanie +Jeannette +Jeri +Judi +Judie +Karol +Katie +Kimberly +Lola +Mable +Marion +Melinda +Meredith +Monica +Olga +Patti +Rhonda +Rosa +Saundra +Viola +Adrienne +Amelia +Angela +Angelina +Annabell +Arleen +Audrey +Bonita +Candy +Celeste +Cherryl +Dee +Dian +Dona +Elena +Estella +Eunice +Flora +Ginger +Irma +Janette +Jessie +Johanna +Karon +Karren +Katheryn +Kaye +Kristin +Lenora +Lila +Lora +Luana +Lyn +Mabel +Magdalena +Marguerite +Melanie +Melba +Mercedes +Nellie +Nikki +Nona +Opal +Rae +Rena +Roxie +Sadie +Shannon +Sondra +Suzan +Linda +Mary +Patricia +Barbara +Carol +Susan +Sharon +Sandra +Nancy +Karen +Donna +Kathleen +Judith +Judy +Janet +Pamela +Cheryl +Shirley +Margaret +Janice +Carolyn +Cynthia +Gloria +Betty +Diane +Kathy +Marilyn +Diana +Beverly +Virginia +Joyce +Connie +Catherine +Peggy +Bonnie +Elizabeth +Frances +Katherine +Theresa +Christine +Dorothy +Deborah +Joan +Vicki +Phyllis +Ruth +Helen +Martha +Rose +Ann +Lorraine +Paula +Rebecca +Sherry +Kathryn +Jean +Sue +Alice +Jo +Jane +Marsha +Roberta +Sally +Cathy +Darlene +Charlotte +Gail +Anita +Marcia +Laura +Evelyn +Lynda +Marie +Elaine +Dolores +Debra +Julie +Teresa +Juanita +Loretta +Dianna +Josephine +Norma +Patsy +Rita +Carla +Charlene +Geraldine +Victoria +Jeanne +Maria +Irene +Lynn +Constance +Jacqueline +Lois +Sheryl +Wanda +Dianne +Glenda +Joann +Terry +Claudia +Louise +Kay +Leslie +Sheila +Brenda +Doris +Gayle +Anne +Esther +Marjorie +Stella +Vickie +Anna +Carmen +Julia +Marlene +Suzanne +Yvonne +Priscilla +Georgia +Penny +Carole +June +Pauline +Colleen +Ellen +Regina +Ruby +Sarah +Sylvia +Delores +Eileen +Rosemary +Jeanette +Patty +Billie +Eva +Jackie +Joanne +Maxine +Rosie +Lucille +Lydia +Rosalie +Becky +Bernice +Deanna +Grace +Lillian +Maureen +Toni +Veronica +Jennifer +Paulette +Arlene +Candace +Cecilia +Lynne +Marcella +Ramona +Sandy +Stephanie +Alberta +Angelina +Cindy +Lana +Marianne +Vivian +Christina +Florence +Jeannette +Jeannie +Laurel +Mildred +Pat +Bernadette +Bertha +Caroline +Clara +Eleanor +Emily +Joy +Valerie +Cheri +Debbie +Dixie +Janis +Leona +Lola +Nora +Pam +Sharron +Wendy +Wilma +Yolanda +Edith +Edna +Gretchen +Hazel +Jan +Janie +Jennie +Jill +Josie +Lucy +Madeline +Margie +Marian +Maryann +Michelle +Myrna +Sherrie +Trudy +Vera +Viola +Audrey +Beth +Karla +Melody +Myra +Penelope +Sara +Andrea +Angela +Beatrice +Bette +Della +Faye +Henrietta +Ida +Jacquelyn +Jenny +Jody +Melanie +Terri +Velma +Verna +Vicky +Alma +Annette +Bonita +Cecelia +Dona +Elsie +Gladys +Glenna +Kristine +Lorna +Lupe +Margo +Nina +Olivia +Robin +Antoinette +Bessie +Betsy +Cathie +Denise +Dora +Emma +Erma +Francine +Genevieve +Gwen +Inez +Karin +Katharine +Lee +Lila +Lucinda +Lynette +Marla +Renee +Sherri +Thelma +Amy +Arleen +Bernadine +Celia +Cherie +Coleen +Cora +Darla +Erlinda +Flora +Gale +Gwendolyn +Janell +Jolene +Laverne +Marguerite +Marion +Michele +Miriam +Nadine +Naomi +Pearl +Rae +Sheri +Sonja +Susanne +Tina +Unknown +Agnes +Annie +Chris +Dee +Doreen +Ella +Ernestine +Ginger +Harriet +Hope +Irma +Isabel +Jacque +Jessie +Kerry +Lela +Lenore +Louella +Mabel +Margarita +Marva +Melinda +Myrtle +Patti +Rachel +Susie +Alana +Amelia +Angie +Bettie +Bobbie +Candice +Carlotta +Cathleen +Cathrine +Charla +Cherry +Cherryl +Cleo +Daisy +Dale +Dawn +Edwina +Ethel +Eunice +Gay +Gertrude +Iris +Jana +Janelle +Judi +Julianne +Karon +Katheryn +Kristin +Laurie +Lora +Lorene +Marietta +Marilee +Marylou +Mercedes +Merry +Michael +Minnie +Monica +Nellie +Nita +Pennie +Phoebe +Rhonda +Robyn +Ronda +Rosa +Roseann +Rosemarie +Sandi +Shari +Sharla +Shelley +Shirlee +Sondra +Suzette +Teri +Twila +Linda +Mary +Patricia +Barbara +Susan +Sharon +Carol +Sandra +Kathleen +Nancy +Karen +Donna +Cynthia +Judy +Judith +Margaret +Shirley +Cheryl +Pamela +Janet +Deborah +Diane +Connie +Diana +Beverly +Elizabeth +Gloria +Janice +Betty +Carolyn +Marilyn +Peggy +Christine +Catherine +Kathy +Kathryn +Virginia +Joyce +Katherine +Bonnie +Dorothy +Vicki +Theresa +Martha +Rebecca +Frances +Ruth +Sherry +Alice +Paula +Helen +Rita +Claudia +Marie +Jean +Jane +Rose +Cathy +Sally +Elaine +Debra +Ann +Gail +Evelyn +Phyllis +Geraldine +Joan +Roberta +Laura +Marcia +Lynda +Lynn +Terry +Charlene +Teresa +Juanita +Anita +Jo +Loretta +Marsha +Brenda +Sylvia +Anna +Lois +Victoria +Constance +Darlene +Lorraine +Maria +Sue +Charlotte +Dolores +Jacqueline +Joann +Louise +Glenda +Irene +Leslie +Ellen +Georgia +Josephine +Carmen +Eileen +Julie +Rosemary +Suzanne +Wanda +Dianne +Yvonne +Carla +Kay +Norma +Jeanette +Jeanne +Sheila +Cecilia +Esther +Julia +Rhonda +Vickie +Doris +Jennifer +Maureen +Sheryl +Valerie +Marlene +Penny +Colleen +Patsy +Deanna +Joanne +Marjorie +Rosalie +Cindy +Janis +Margie +Ramona +Andrea +Anne +Dianna +Eva +Lynne +Priscilla +Wendy +Bernice +Christina +Denise +Patty +Edna +Sarah +Vivian +Lana +Stephanie +Jill +Lucille +Stella +Arlene +Beth +Carole +Delores +Eleanor +Gayle +Melanie +Nora +Paulette +Pauline +Ruby +Veronica +Annette +Edith +Jeannette +Lillian +Beatrice +Dixie +Mildred +Toni +Vicky +Wilma +Cheri +Dana +Jan +Janelle +Joy +Marianne +Michelle +Regina +Becky +Billie +Clara +Emily +Jeannie +June +Lucy +Lydia +Melody +Sandy +Sherrie +Viola +Bernadette +Gwendolyn +Jackie +Lynette +Maxine +Rosie +Sheri +Angela +Emma +Glenna +Janie +Kathie +Lee +Lucinda +Melissa +Michele +Thelma +Amy +Cecelia +Cherie +Debbie +Elsie +Grace +Hazel +Jennie +Kerry +Kristine +Marcella +Margo +Penelope +Rachel +Therese +Trudy +Annie +Caroline +Cathleen +Dawn +Della +Diann +Ernestine +Florence +Gay +Ida +Karla +Maryann +Molly +Pearl +Renee +Robin +Terri +Twila +Velma +Alberta +Angelina +Angie +Antoinette +Belinda +Candace +Gladys +Gwen +Holly +Jacquelyn +Janette +Jeanie +Josie +Lynnette +Marguerite +Myra +Naomi +Olivia +Ronda +Sara +Sharron +Susie +Tina +Vera +Yolanda +Bertha +Bobbie +Carrie +Coleen +Dona +Ella +Geneva +Genevieve +Gretchen +Inez +Isabel +Janell +Kimberly +Kitty +Leona +Lou +Lupe +Madeline +Melinda +Robyn +Shannon +Sydney +Tanya +Annabelle +Bette +Bonita +Celia +Christy +Corinne +Crystal +Darla +Dee +Ethel +Gale +Harriet +Henrietta +Janine +Jeri +Kathrine +Katie +Lila +Lora +Meredith +Mona +Pat +Rosa +Shari +Shelley +Sonja +Terrie +Adeline +Aleta +Amelia +Betsy +Beverley +Camille +Candice +Candy +Cathie +Charla +Cheryle +Deanne +Dora +Doreen +Erlinda +Estella +Faye +Francine +Gaylene +Ginger +Hilda +Iris +Jeannine +Jenny +Joanna +Karon +Ladonna +Laurel +Laurie +Lena +Lyn +Marcie +Margarita +Marilynn +Marion +Melva +Muriel +Nadine +Nicki +Nola +Patti +Rena +Rhoda +Rosella +Rosemarie +Rosita +Roxie +Sadie +Suzan +Teri +Verna +Linda +Mary +Patricia +Susan +Barbara +Sharon +Carol +Karen +Kathleen +Sandra +Nancy +Deborah +Cynthia +Donna +Margaret +Pamela +Janet +Judith +Judy +Cheryl +Shirley +Diane +Diana +Connie +Janice +Gloria +Christine +Elizabeth +Bonnie +Rebecca +Beverly +Marilyn +Carolyn +Betty +Catherine +Debra +Peggy +Joyce +Kathryn +Virginia +Katherine +Kathy +Dorothy +Sally +Paula +Frances +Gail +Joan +Martha +Rita +Victoria +Alice +Ruth +Theresa +Phyllis +Rose +Jane +Ann +Loretta +Vicki +Brenda +Lynn +Joann +Darlene +Elaine +Irene +Marsha +Sherry +Cathy +Marie +Julie +Helen +Lorraine +Teresa +Vickie +Roberta +Wanda +Geraldine +Laura +Sheryl +Constance +Maria +Suzanne +Anna +Jo +Sue +Terry +Claudia +Charlotte +Jacqueline +Jeanne +Anita +Dianne +Jean +Lynda +Ellen +Sheila +Carla +Colleen +Marcia +Veronica +Glenda +Marlene +Kay +Rhonda +Stephanie +Josephine +Sylvia +Charlene +Jeanette +Evelyn +Leslie +Yvonne +Beth +Dolores +Janis +Lois +Dianna +Georgia +Joanne +Louise +Lynne +Eileen +Marjorie +Pauline +Priscilla +Robin +Rosemary +Anne +Denise +Esther +Jennifer +Ramona +Becky +Bernadette +Julia +Patsy +Terri +Valerie +Vicky +Annette +Doris +Jan +Juanita +Penny +Sarah +Wilma +Carmen +Christina +Eva +Gayle +Michelle +Eleanor +Gwendolyn +Jacquelyn +Lucy +Maureen +Regina +Shelley +Vivian +Lillian +Lydia +Rosalie +Wendy +Angela +Candace +Carole +Debbie +Joy +Laurel +Lucille +Norma +Sara +Cindy +Clara +Deanna +Delores +Emily +Trudy +Andrea +Arlene +Billie +Grace +Janie +Jill +Jolene +Margie +Paulette +Stella +Amy +Dana +June +Rosie +Ruby +Angelina +Edith +Ida +Marcella +Marla +Maxine +Vera +Yolanda +Audrey +Caroline +Jeannie +Kerry +Kristine +Lana +Marianne +Maryann +Melody +Cathleen +Cecilia +Dora +Jackie +Karla +Marilynn +Mona +Nadine +Nora +Patty +Verna +Elsie +Glenna +Isabel +Lucinda +Lyn +Melanie +Michele +Susie +Toni +Bernice +Cheri +Dawn +Faye +Florence +Janette +Jody +Lisa +Lynette +Marian +Monica +Rosa +Beatrice +Cecelia +Dixie +Emma +Genevieve +Guadalupe +Hazel +Holly +Irma +Joanna +Kimberly +Mildred +Myrna +Patrice +Roseanna +Rosemarie +Shari +Thelma +Therese +Viola +Angie +Bonita +Candice +Cherie +Darla +Della +Gretchen +Jeannine +Jessie +Lola +Lora +Lupe +Madeline +Marguerite +Nona +Pamala +Penelope +Rachel +Robyn +Shannon +Bertha +Diann +Dona +Geneva +Gladys +Jeanie +Lavonne +Leanna +Lena +Melissa +Naomi +Nina +Sallie +Antoinette +Antonia +Belinda +Bette +Celeste +Coleen +Consuelo +Corinne +Crystal +Dee +Doreen +Elise +Ernestine +Flora +Hope +Ilene +Inez +Iona +Isabell +Jamie +Jennie +Katheryn +Kathie +Leah +Leona +Marilee +Marta +Melinda +Meredith +Myra +Patti +Renee +Roxanne +Sandy +Sheri +Sherri +Susanna +Sydney +Tamara +Teri +Terrie +Tina +Valorie +Annie +Ardith +Bobbie +Cathryn +Celia +Charla +Charmaine +Christy +Claire +Ella +Ethel +Eunice +Gaye +Gertrude +Helena +Iris +Janelle +Jenny +Jessica +Karon +Kathrine +Kim +Kristi +Laurie +Lela +Lenore +Letha +Lila +Lillie +Lorena +Lorene +Louella +Marion +Maryjane +Mickey +Mollie +Natalie +Nellie +Nita +Olivia +Opal +Pearl +Pennie +Randa +Sharman +Sharron +Shelly +Sherryl +Vonnie +Linda +Mary +Patricia +Deborah +Susan +Barbara +Karen +Sandra +Nancy +Kathleen +Debra +Carol +Sharon +Donna +Cynthia +Pamela +Janet +Margaret +Judith +Cheryl +Diane +Judy +Shirley +Gloria +Elizabeth +Katherine +Catherine +Peggy +Janice +Christine +Kathy +Rebecca +Diana +Carolyn +Marilyn +Vicki +Bonnie +Virginia +Kathryn +Connie +Beverly +Laura +Joyce +Gail +Betty +Victoria +Dorothy +Theresa +Martha +Paula +Rose +Teresa +Joan +Ruth +Sherry +Helen +Charlotte +Jane +Roberta +Sally +Ann +Elaine +Rita +Frances +Jacqueline +Alice +Cathy +Jean +Wanda +Lorraine +Phyllis +Lynn +Marsha +Constance +Julie +Marie +Terry +Joann +Kay +Jo +Cindy +Maria +Vickie +Evelyn +Loretta +Ellen +Geraldine +Glenda +Irene +Sheila +Lynda +Marcia +Colleen +Denise +Darlene +Penny +Jeanne +Anita +Anna +Claudia +Georgia +Lois +Marlene +Brenda +Carla +Charlene +Stephanie +Sue +Jeanette +Jennifer +Dolores +Jan +Joanne +Leslie +Patsy +Ramona +Rhonda +Rosemary +Suzanne +Marjorie +Anne +Norma +Pauline +Robin +Sheryl +Debbie +Dianna +Esther +Sylvia +Yvonne +Christina +Juanita +Priscilla +Becky +Doris +Gayle +Josephine +Kristine +Ruby +Dianne +Eileen +Jill +Julia +Michele +Rosalie +Eva +Lana +Laurie +Sarah +Shelley +Deanna +Louise +Angela +Annette +Bernadette +Edith +Ida +Jackie +Michelle +Monica +Veronica +Wendy +Janis +June +Lucille +Melody +Toni +Vicky +Arlene +Billie +Carmen +Carole +Delores +Jennie +Joy +Lori +Regina +Debora +Patty +Terri +Valerie +Belinda +Beth +Cecilia +Dana +Jacquelyn +Lillian +Margie +Maureen +Stella +Candace +Clara +Dixie +Eleanor +Janette +Karla +Maxine +Rachel +Verna +Janelle +Jeannie +Lynne +Margo +Renee +Vivian +Andrea +Dora +Emily +Emma +Gwendolyn +Holly +Leona +Sherri +Tamara +Vera +Yolanda +Amy +Caroline +Cathleen +Glenna +Kathie +Lucy +Marcella +Mona +Myrna +Sara +Wilma +Beatrice +Cheri +Gretchen +Isabel +Kim +Laurel +Lisa +Lucinda +Olivia +Paulette +Penelope +Viola +Bertha +Della +Diann +Irma +Jamie +Jody +Melinda +Nora +Patrice +Patti +Rosa +Roxanne +Sandy +Sherrie +Alberta +Bernice +Candice +Dawn +Florence +Gladys +Grace +Jenny +Lora +Lynette +Marcy +Marla +Maryann +Melanie +Naomi +Sheri +Antoinette +Charla +Coleen +Dee +Edna +Ella +Ernestine +Guadalupe +Iris +Jeanie +Jeannette +Joanna +Katharine +Kerry +Kristi +Leanna +Lorna +Lupe +Lydia +Marian +Marianne +Meredith +Alma +Antonia +Betsy +Bette +Bonita +Cherie +Darla +Eloise +Gale +Hazel +Jana +Jeri +Jessica +Jolene +Katheryn +Kristina +Lavonne +Lee +Lola +Lou +Lynnette +Marilynn +Miriam +Molly +Nadine +Nellie +Nona +Rosie +Shannon +Susie +Trudy +Annie +April +Bettie +Carrie +Cecelia +Celia +Christy +Corinne +Debrah +Delia +Faith +Flora +Genevieve +Jacque +Jessie +Karin +Kelly +Kristie +Kristin +Leah +Lena +Linnea +Luanne +Luz +Madeline +Mari +Marylou +Mindy +Rochelle +Ronda +Rosemarie +Shelly +Tanya +Terrie +Thelma +Therese +Tina +Twila +Velma +Agnes +Ana +Angie +Ava +Bobbie +Bonny +Cassandra +Christie +Consuelo +Corrine +Debby +Dona +Ethel +Eunice +Gina +Harriet +Heather +Heidi +Ilene +Jeannine +Judi +Kaye +Kendra +Kimberly +Kristen +Leann +Marion +Myra +Nelda +Rae +Randi +Robyn +Ruthann +Shari +Sydney +Teri +Vikki +Linda +Mary +Patricia +Debra +Susan +Deborah +Barbara +Karen +Kathleen +Nancy +Cynthia +Sandra +Carol +Sharon +Donna +Pamela +Janet +Christine +Judith +Diane +Margaret +Cheryl +Elizabeth +Kathy +Shirley +Diana +Catherine +Judy +Connie +Rebecca +Janice +Katherine +Betty +Carolyn +Marilyn +Kathryn +Vicki +Gloria +Laura +Beverly +Theresa +Joan +Peggy +Virginia +Gail +Joyce +Bonnie +Paula +Ruth +Martha +Victoria +Rose +Roberta +Ann +Helen +Jane +Alice +Sherry +Dorothy +Jean +Jo +Teresa +Vickie +Brenda +Cathy +Julie +Rita +Denise +Darlene +Rhonda +Anne +Frances +Jacqueline +Valerie +Elaine +Dolores +Evelyn +Lynn +Sally +Anita +Terry +Charlotte +Marcia +Colleen +Irene +Phyllis +Constance +Lois +Wanda +Carla +Ellen +Robin +Stephanie +Charlene +Laurie +Lorraine +Dianne +Lynda +Suzanne +Joann +Kay +Maria +Marie +Glenda +Loretta +Anna +Geraldine +Jeanne +Joanne +Kristine +Marsha +Terri +Josephine +Juanita +Cindy +Jennifer +Leslie +Michele +Jeanette +Veronica +Gayle +Yvonne +Debbie +Dianna +Jill +Julia +Marjorie +Norma +Sheryl +Claudia +Louise +Marlene +Penny +Sheila +Doris +Esther +Jan +Sue +Becky +Dana +Lisa +Lynne +Michelle +Ramona +Rosemary +Annette +Candace +Carmen +Rosalie +Ruby +Amy +Georgia +Jackie +Regina +Sylvia +Vicky +Wendy +Christina +Lillian +Maureen +Shelley +Toni +Deanna +Delores +Eileen +Eleanor +Grace +Jeannette +Patti +Billie +Yolanda +Beth +Eva +Lucille +Melanie +Sarah +Arlene +Debora +Jody +Maxine +Patsy +Pauline +Verna +Andrea +Emily +Kim +Kimberly +Patty +Priscilla +Roxanne +Sara +Bernadette +Cecilia +Janis +Lee +Lucy +Lynette +Sherri +Audrey +Beatrice +Cheri +Janette +Lana +Melody +Tina +Wilma +Dora +Ella +Joy +Karla +Kristin +Stella +Angela +Cathleen +Dee +Isabel +Jeannie +Jennie +Margie +Melinda +Nadine +Renee +Vivian +Candice +Clara +Dixie +Edna +Gladys +Holly +Jamie +Lori +Marcella +Marla +Monica +Naomi +Patrice +Ronda +Shannon +Trudy +Bernice +Carrie +Cherie +Florence +Gwen +Jacquelyn +June +Laurel +Lydia +Melissa +Nora +Viola +Angelina +April +Bonita +Dawn +Gay +Ginger +Janelle +Kathie +Olivia +Robyn +Suzan +Teri +Thelma +Alberta +Caroline +Charmaine +Crystal +Edith +Faye +Hope +Janie +Jeanine +Jenny +Jessica +Kristy +Margo +Maryann +Rachel +Sheri +Sherrie +Tamara +Alma +Amelia +Belinda +Cathryn +Christy +Della +Geneva +Henrietta +Iris +Jana +Jeri +Jolene +Lorna +Meredith +Mona +Nina +Pamala +Paulette +Pearl +Penelope +Antoinette +Betsy +Bette +Celeste +Charla +Chris +Dale +Darla +Dona +Ernestine +Ethel +Glenna +Gwendolyn +Hazel +Ida +Janell +Jerri +Leah +Lena +Leona +Lucinda +Marcie +Marianne +Marta +Nita +Susie +Twila +Vera +Adele +Agnes +Alison +Amanda +Bertha +Cinda +Cora +Daisy +Diann +Elsie +Gale +Gertrude +Gretchen +Guadalupe +Heidi +Jacque +Janine +Joanna +Katharine +Kerry +Kristina +Ladonna +Lillie +Lou +Lynnette +Mildred +Molly +Myrna +Noreen +Pam +Rhoda +Rochelle +Rosa +Rosemarie +Rosie +Sydney +Therese +Tracy +Valorie +Willa +Alana +Angie +Arleen +Carole +Cecelia +Colette +Corinne +Elena +Eloise +Francine +Gina +Heather +Helene +Inez +Kathi +Leanna +Leta +Lora +Lupe +Marcy +Marion +Marty +Nellie +Nicki +Nicolette +Olga +Polly +Rene +Rosalind +Sadie +Sandy +Sharron +Sonja +Sophie +Terrie +Valarie +Violet +Linda +Mary +Debra +Patricia +Deborah +Susan +Barbara +Karen +Sandra +Cynthia +Kathleen +Nancy +Sharon +Pamela +Carol +Donna +Janet +Diane +Judy +Christine +Margaret +Cheryl +Judith +Elizabeth +Rebecca +Connie +Kathy +Janice +Marilyn +Gloria +Theresa +Paula +Shirley +Diana +Peggy +Catherine +Beverly +Kathryn +Joyce +Betty +Katherine +Gail +Laura +Ruth +Virginia +Carolyn +Rose +Teresa +Bonnie +Julie +Sherry +Brenda +Victoria +Jo +Vickie +Ann +Vicki +Cindy +Martha +Sally +Jane +Dorothy +Frances +Helen +Jacqueline +Jean +Joan +Rhonda +Denise +Terri +Ellen +Roberta +Robin +Anita +Valerie +Leslie +Debbie +Marie +Phyllis +Rita +Sherri +Sheryl +Terry +Maria +Alice +Anne +Cathy +Marsha +Elaine +Darlene +Lynn +Charlotte +Colleen +Geraldine +Lorraine +Anna +Loretta +Suzanne +Charlene +Jennifer +Marcia +Sheila +Michelle +Kristine +Dolores +Evelyn +Lois +Sue +Wanda +Jeanne +Joann +Lynda +Yvonne +Carla +Glenda +Irene +Jeanette +Juanita +Stephanie +Constance +Becky +Kim +Gayle +Julia +Louise +Rosalie +Jan +Jill +Marlene +Esther +Kay +Sarah +Sylvia +Wendy +Dianna +Norma +Penny +Toni +Andrea +Doris +Laurie +Lisa +Cheri +Christina +Claudia +Dianne +Georgia +Jackie +Marjorie +Joanne +Vivian +Angela +Karla +Lucille +Patty +Pauline +Regina +Delores +Jamie +Lori +Maureen +Patti +Renee +Rosemary +Shelley +Eileen +Lynne +Vicky +Dawn +Lydia +Lynette +Billie +Candace +Holly +Melody +Michele +Patsy +Ramona +Dana +Joy +Rachel +Sherrie +Bernadette +Carmen +Gwendolyn +Melissa +Betsy +Carrie +Grace +Josephine +Lillian +Sheri +Amy +Arlene +Belinda +Cecilia +Christy +Dixie +Janis +Jennie +Jody +Kimberly +Lee +Melanie +Nora +Patrice +Priscilla +Ruby +Tina +Annette +Colette +Eva +Marcella +Monica +Shelly +Veronica +Bernice +Carole +Edna +Florence +Jeri +Lou +Marla +Maxine +Roxanne +Beth +Debora +Della +Dora +Edith +Janette +Joni +June +Mona +Yolanda +Bertha +Emily +Genevieve +Hazel +Kerry +Leona +Lora +Marian +Stella +Susie +Teri +Terrie +Emma +Ginger +Guadalupe +Ida +Jacquelyn +Janine +Jolene +Kristy +Lucy +Melinda +Sara +Shannon +Viola +Bridget +Deanna +Elsie +Ernestine +Hope +Jeanie +Jeannie +Kristin +Lana +Laurel +Luann +Lucinda +Marianne +Marion +Mildred +Nina +Tamara +Tanya +Therese +Vera +Audrey +Cherie +Eleanor +Glenna +Jana +Janie +Kristi +Leann +Luanne +Madeline +Margie +Rosemarie +Tammy +Verna +Antoinette +Caroline +Cathleen +Celeste +Dale +Darla +Faith +Jacque +Jayne +Jeannette +Jeannine +Jessie +Kathie +Kathrine +Lillie +Margo +Marguerite +Marta +Myrna +Nadine +Olivia +Paulette +Pearl +Rochelle +Ronda +Rosa +Sandy +Tracey +Angelina +April +Bette +Bonita +Cassandra +Chris +Coleen +Dee +Diann +Doreen +Gayla +Heather +Isabel +Janelle +Karol +Leah +Lorene +Lorna +Marcy +Marleen +Naomi +Olga +Penelope +Rosie +Susanne +Valorie +Velma +Agnes +Angie +Antonia +Benita +Candice +Cathie +Cecelia +Christie +Clara +Delia +Gay +Geneva +Jenny +Karin +Kelly +Kristina +Lena +Lorrie +Luz +Mindy +Mollie +Molly +Nannette +Roxann +Roxie +Shari +Suzan +Adrienne +Alberta +Alma +Beatrice +Bobbie +Cathryn +Celia +Cleo +Darcy +Ethel +Faye +Gale +Gladys +Heidi +Inez +Isabelle +Iva +Janell +Jodi +Josie +Kristen +Lila +Lorie +Louann +Lupe +Margarita +Mari +Maryann +Meredith +Micki +Nanette +Nellie +Nita +Polly +Robyn +Roseann +Sallie +Saundra +Sherrill +Shirlee +Sonya +Tracy +Twila +Violet +Debra +Mary +Linda +Deborah +Susan +Patricia +Karen +Cynthia +Barbara +Pamela +Nancy +Sandra +Kathleen +Carol +Sharon +Donna +Janet +Rebecca +Diane +Cheryl +Connie +Margaret +Christine +Elizabeth +Kathy +Judith +Judy +Diana +Theresa +Marilyn +Catherine +Vicki +Kathryn +Peggy +Joyce +Shirley +Teresa +Janice +Paula +Gloria +Laura +Virginia +Gail +Brenda +Denise +Joan +Beverly +Rose +Katherine +Ann +Betty +Robin +Carolyn +Rhonda +Sherry +Julie +Martha +Terry +Cindy +Ruth +Rita +Roberta +Terri +Jean +Vickie +Lorraine +Debbie +Michelle +Victoria +Jo +Helen +Leslie +Maria +Lynn +Cathy +Anna +Dorothy +Jane +Bonnie +Laurie +Marie +Charlotte +Jennifer +Sheryl +Alice +Elaine +Valerie +Phyllis +Anita +Jacqueline +Marcia +Sally +Anne +Frances +Lisa +Sheila +Joann +Kim +Wendy +Evelyn +Loretta +Marsha +Charlene +Geraldine +Jan +Lori +Louise +Sherri +Becky +Carla +Dawn +Glenda +Jeanne +Sue +Kimberly +Dianne +Jill +Lois +Ramona +Shelley +Suzanne +Wanda +Colleen +Darlene +Michele +Irene +Julia +Marlene +Arlene +Claudia +Constance +Jeanette +Kay +Ellen +Holly +Yvonne +Gayle +Penny +Sylvia +Dolores +Marian +Renee +Amy +Marjorie +Karla +Lynda +Roxanne +Doris +Lucille +Lynette +Maureen +Vicky +Andrea +Beatrice +Beth +Jody +Juanita +Melody +Stephanie +Toni +Veronica +Dianna +Esther +Sarah +Deanna +Jackie +Kristine +Monica +Norma +Carmen +Eileen +Luann +Annette +Dana +Vivian +Cheri +Edith +Melanie +Pauline +Regina +Angela +Eleanor +Patti +Yolanda +Candace +Christina +Gwendolyn +Janette +Josephine +Kristi +Lou +Lydia +Lynne +Maxine +Rosemary +Tina +Bernice +Georgia +Joanne +June +Rosie +Ruby +April +Bernadette +Cecilia +Eva +Gina +Grace +Janie +Jeannie +Joy +Marla +Patsy +Sherrie +Gale +Jana +Melinda +Mona +Priscilla +Stella +Billie +Cherie +Dixie +Leona +Margie +Patty +Teri +Wilma +Caroline +Cathleen +Delores +Dona +Joni +Lana +Lillian +Lucy +Sara +Terrie +Therese +Trudy +Alberta +Carrie +Emily +Ginger +Glenna +Jacquelyn +Lee +Lorna +Rachel +Shelly +Sheri +Angelina +Antoinette +Audrey +Betsy +Christy +Darla +Debora +Della +Gretchen +Heidi +Jennie +Jeri +Jolene +Kathrine +Kerry +Laurel +Rosanne +Shannon +Carole +Cecelia +Florence +Gay +Jamie +Janine +Kelly +Lucinda +Marcella +Melissa +Naomi +Nina +Nora +Patrice +Randi +Robyn +Suzan +Tamara +Vera +Chris +Clara +Elsie +Gayla +Genevieve +Jeannine +Jenny +Kathie +Lila +Lora +Maryann +Mildred +Paulette +Pearl +Rosa +Rosalie +Sandy +Shari +Shauna +Sheree +Tracy +Verna +Alicia +Alma +Antonia +Belinda +Bessie +Bonita +Celeste +Deanne +Dena +Doreen +Hope +Jacque +Janis +Jayne +Josie +Kathi +Kristina +Lena +Lenora +Lorie +Luanne +Margo +Marion +Marta +Myra +Myrna +Polly +Susanne +Tanya +Viola +Bertha +Candice +Dale +Deana +Dora +Faith +Hazel +Heather +Ida +Janell +Jeanine +Jerri +Jessica +Jodie +Kimberley +Krista +Kristen +Luz +Lynnette +Mari +Merry +Nadine +Susie +Adrienne +Agnes +Angie +Bridget +Candy +Cassandra +Charla +Charmaine +Corrine +Danielle +Debby +Dee +Denice +Edna +Emma +Iris +Irma +Jeanie +Jeannette +Jessie +Karin +Katharine +Leah +Lola +Loraine +Lorrie +Lyn +Nicki +Nita +Penelope +Roseann +Roxann +Thelma +Twila +Yvette +Adele +Ana +Annie +Bernadine +Bobbi +Bobbie +Carrol +Christi +Christie +Cora +Crystal +Daisy +Ethel +Fay +Geneva +Geri +Guadalupe +Gwen +Ingrid +Iva +Katheryn +Kaye +Kris +Kristie +Leanna +Leanne +Lesley +Lillie +Marianne +Mindy +Nanette +Nikki +Rae +Rochelle +Roseanne +Rosemarie +Roxie +Sallie +Shawn +Sonia +Sonja +Tonia +Tonya +Velma +Debra +Linda +Mary +Susan +Deborah +Patricia +Karen +Cynthia +Barbara +Pamela +Nancy +Sandra +Carol +Sharon +Cheryl +Donna +Kathleen +Janet +Diane +Rebecca +Kathy +Elizabeth +Christine +Connie +Teresa +Diana +Margaret +Paula +Catherine +Beverly +Peggy +Judy +Debbie +Katherine +Vicki +Janice +Joyce +Judith +Theresa +Denise +Cindy +Shirley +Brenda +Kathryn +Laura +Rose +Julie +Kim +Sherry +Gloria +Carolyn +Ann +Bonnie +Marilyn +Michelle +Robin +Gail +Virginia +Betty +Lisa +Valerie +Vickie +Dorothy +Lynn +Rhonda +Terri +Cathy +Sheila +Kimberly +Ruth +Victoria +Joan +Lori +Marie +Terry +Rita +Martha +Helen +Jane +Laurie +Elaine +Leslie +Loretta +Sally +Jo +Anna +Roberta +Jacqueline +Jill +Lorraine +Jean +Frances +Sheryl +Anne +Anita +Jennifer +Charlene +Sue +Alice +Christina +Glenda +Stephanie +Tina +Maria +Phyllis +Yvonne +Carla +Constance +Ramona +Colleen +Juanita +Darlene +Marsha +Ellen +Jeanne +Marcia +Becky +Penny +Suzanne +Kay +Michele +Vicky +Claudia +Doris +Geraldine +Dianne +Jeanette +Charlotte +Marlene +Toni +Wendy +Bernadette +Gayle +Holly +Renee +Amy +Joann +Melody +Shelley +Veronica +Irene +Joanne +Andrea +Louise +Eva +Julia +Sherri +Angela +Dawn +Esther +Evelyn +Jackie +Joni +Lynne +Maureen +Melanie +Norma +Sylvia +Cheri +Jody +Joy +Lois +Regina +Ruby +Tracy +Beth +Dianna +June +Karla +Priscilla +Dana +Jan +Marla +Wanda +April +Arlene +Eileen +Roxanne +Sheri +Debora +Gina +Kristi +Sarah +Carmen +Deanna +Janis +Luann +Annette +Dolores +Ginger +Lee +Marjorie +Christy +Lou +Lynette +Rosalie +Sandy +Heidi +Kristine +Marianne +Patti +Shelly +Yolanda +Edna +Jana +Lucille +Lucy +Melissa +Mona +Trudy +Vivian +Bertha +Cherie +Eleanor +Georgia +Janine +Lillian +Margie +Maxine +Melinda +Monica +Patty +Pauline +Rachel +Rosemarie +Sara +Shannon +Tanya +Candace +Janette +Patsy +Rosemary +Teri +Therese +Alberta +Cathleen +Clara +Darla +Dixie +Isabel +Janna +Jeannie +Lydia +Crystal +Delores +Gayla +Jeannette +Josephine +Kerry +Laurel +Leann +Lucinda +Penelope +Rene +Terrie +Audrey +Corinne +Doreen +Edith +Emily +Grace +Gwendolyn +Jennie +Lynda +Nora +Pam +Paulette +Ronda +Betsy +Caroline +Chris +Dee +Florence +Jamie +Janelle +Janie +Kristie +Lynnette +Nadine +Nina +Sherrie +Suzan +Tamara +Belinda +Bernice +Candice +Della +Emma +Gladys +Jacquelyn +Jeri +Marcella +Marian +Maryann +Mildred +Nita +Stella +Susie +Vera +Wilma +Agnes +Bonita +Carole +Carrie +Cecilia +Darcy +Dora +Gale +Heather +Jayne +Jeanie +Karin +Luz +Mindy +Patrice +Rae +Shauna +Sheree +Tracey +Verna +Angie +Billie +Cecelia +Cora +Dena +Dona +Ernestine +Gay +Henrietta +Jeanine +Jeannine +Jessie +Katharine +Kristy +Lea +Lorie +Lorna +Lorrie +Luanne +Mari +Marta +Roxanna +Shari +Vanessa +Christie +Coleen +Deana +Eunice +Glenna +Gretchen +Ida +Jodi +Jolene +Kathie +Kris +Kristina +Leona +Leta +Lola +Margarita +Margo +Miriam +Myra +Pearl +Robyn +Rosie +Thelma +Valorie +Ada +Amelia +Antoinette +Beatrice +Bobbi +Christi +Colette +Corrine +Deanne +Deena +Elsie +Geralyn +Hazel +Jenny +Jerri +Kathi +Kathrine +Kaye +Kelli +Kendra +Kristen +Lana +Leah +Leanne +Leslee +Lesley +Lupe +Madeline +Marguerite +Nanette +Polly +Rochelle +Roni +Roseann +Shawn +Sheron +Twila +Val +Viola +Angelina +Antonia +Barbra +Beckie +Carey +Celeste +Cherryl +Collette +Deann +Debby +Desiree +Elisabeth +Eloise +Faith +Francine +Genevieve +Geri +Gracie +Gwen +Hope +Inez +Iris +Jacque +Jessica +Joanna +Jocelyn +Jodie +Kathern +Kristin +Louann +Marcy +Marilee +Marion +Michaela +Molly +Neva +Nikki +Olga +Patrica +Randi +Reta +Rosa +Roxie +Saundra +Shawna +Sheilah +Shelli +Sherree +Sonia +Sonja +Sophia +Sydney +Trina +Violet +Willa +Debra +Mary +Linda +Susan +Karen +Patricia +Cynthia +Deborah +Sharon +Barbara +Pamela +Kathleen +Sandra +Nancy +Carol +Donna +Cheryl +Rebecca +Janet +Diane +Kathy +Cindy +Elizabeth +Debbie +Connie +Catherine +Teresa +Christine +Kim +Margaret +Theresa +Paula +Janice +Julie +Judy +Diana +Kathryn +Robin +Lisa +Beverly +Denise +Laura +Peggy +Vicki +Judith +Terri +Joyce +Victoria +Brenda +Gail +Shirley +Rose +Vickie +Lori +Marilyn +Ann +Carolyn +Laurie +Katherine +Bonnie +Rhonda +Cathy +Kimberly +Rita +Ruth +Sally +Michelle +Leslie +Carla +Gloria +Virginia +Valerie +Betty +Sherry +Darlene +Terry +Jean +Joan +Lynn +Loretta +Sheryl +Jane +Jennifer +Roberta +Annette +Dorothy +Anita +Jill +Martha +Helen +Wanda +Dawn +Sheila +Sherri +Charlene +Jo +Lorraine +Elaine +Becky +Stephanie +Anna +Angela +Frances +Maria +Tina +Jacqueline +Alice +Anne +Suzanne +Dana +Marie +Melody +Renee +Christina +Colleen +Glenda +Marsha +Wendy +Jody +Penny +Sue +Amy +Juanita +Ramona +Gayle +Geraldine +Joann +Phyllis +Yvonne +Dolores +Marcia +Charlotte +Holly +Jeanne +Marla +Debora +Jeanette +Ruby +Toni +Andrea +Eileen +Kay +Arlene +Joy +Melanie +Sheri +Teri +Veronica +Constance +Julia +Karla +Kelly +Marlene +Michele +Sarah +Vicky +Vivian +Gina +Irene +Doris +Jan +Shelley +Sherrie +Sylvia +Lynette +Regina +Audrey +Beth +Dianne +Ellen +Evelyn +Maureen +Melissa +Pauline +Roxanne +Shelly +Jackie +Lynda +Lynne +Marjorie +Patti +Robyn +Heidi +Joni +Josephine +Lee +Carmen +Esther +Joanne +Monica +Carrie +Georgia +Lois +Louise +Luann +Norma +Ronda +Bernadette +Candace +Claudia +Cheri +Janis +Patty +Rosemary +Jacquelyn +Jeannie +June +Lillian +Yolanda +Eva +Jeannette +Kristi +Tamara +Tracy +Deanna +Edith +Edna +Eleanor +Jana +Jeri +Kristine +Laurel +Leona +Lucille +Melinda +Rosalie +Shannon +Vera +Belinda +Susie +Tanya +Terrie +Viola +Beatrice +Carole +Christy +Dianna +Dora +Doreen +Gwendolyn +Jamie +Janine +Jeanie +Patsy +Priscilla +Rosa +Sharlene +Bernice +Bertha +Della +Emily +Grace +Kristy +Lana +Lucy +Sara +Dee +Janette +Jennie +Lorie +Lynnette +Marianne +Nanette +Alberta +Crystal +Glenna +Gretchen +Jeanine +Melodie +Mona +Nora +Shari +Therese +Vanessa +Caroline +Chris +Christie +Darla +Dena +Francine +Hazel +Jayne +Kimberley +Marcella +Margie +Mildred +Paulette +Stella +Tracey +Angelina +Angie +Antoinette +Betsy +Candy +Cecilia +Delores +Emma +Jacque +Jerri +Kerry +Kristina +Lauri +Lorrie +Lou +Luz +Margarita +Marian +Maryann +Nadine +Pam +Rosanna +Sabrina +Sandy +Stacey +Verna +Alicia +Cherie +Dawna +Deana +Deann +Debby +Dixie +Eugenia +Ginger +Gladys +Heather +Hope +Ida +Jolene +Kathie +Kerri +Leigh +Lora +Marcie +Marguerite +Marilee +Maxine +Molly +Patrice +Rachel +Rena +Rene +Rosemarie +Trudy +Velma +Adrienne +April +Billie +Bobbie +Bonita +Candice +Cathryn +Cecelia +Clara +Claudette +Colette +Denice +Desiree +Florence +Gale +Gwen +Isabel +Janie +Joanna +Karin +Katrina +Kendra +Kristen +Ladonna +Leanne +Lenora +Lydia +Marci +Meredith +Mitzi +Myra +Natalie +Penelope +Polly +Randi +Rosie +Shauna +Susanne +Tammy +Tracie +Trina +Agnes +Alison +Alma +Bridget +Celeste +Cherrie +Claire +Coleen +Dani +Dona +Ella +Erin +Ernestina +Faith +Gaye +Gaylene +Genevieve +Guadalupe +Inez +Jeannine +Jenny +Jessie +Johanna +Kathrine +Kristin +Lu +Luanne +Malinda +Marcy +Margo +Mindy +Olivia +Pamala +Pat +Reba +Robbie +Roxann +Roxie +Shawn +Sheree +Sherrill +Stacy +Tara +Thelma +Tonya +Amanda +Amelia +Antonia +Ava +Caren +Carlene +Cathleen +Celia +Charmaine +Cherri +Corrine +Danita +Deanne +Debbra +Deidre +Dolly +Edwina +Elsie +Faye +Gay +Gayla +Geralyn +Iris +Janna +Jaye +Jodi +Jodie +Kathlene +Kimberle +Lea +Leann +Lola +Lorene +Lucinda +Lyn +Marilynn +Marina +Marion +Marta +Miriam +Nanci +Naomi +Nikki +Nina +Nola +Pennie +Renae +Rochelle +Ronna +Rosanne +Roseann +Roxane +Sonia +Suzan +Valorie +Yvette +Debra +Mary +Cynthia +Susan +Linda +Karen +Patricia +Deborah +Cindy +Barbara +Pamela +Cheryl +Nancy +Sharon +Sandra +Carol +Julie +Kathleen +Donna +Debbie +Elizabeth +Janet +Diane +Kathy +Diana +Brenda +Teresa +Rebecca +Theresa +Christine +Kim +Connie +Denise +Laura +Lori +Lisa +Judy +Rhonda +Robin +Catherine +Ann +Margaret +Peggy +Vicki +Kimberly +Paula +Kathryn +Leslie +Michelle +Terri +Carolyn +Katherine +Rita +Tammy +Bonnie +Joyce +Valerie +Judith +Jennifer +Shirley +Gloria +Jane +Rose +Sherry +Tina +Betty +Cathy +Elaine +Lynn +Victoria +Vickie +Roberta +Laurie +Virginia +Renee +Ruth +Janice +Terry +Gail +Lorraine +Anita +Sheryl +Beverly +Martha +Stephanie +Helen +Anne +Becky +Sheila +Marilyn +Anna +Joan +Annette +Loretta +Suzanne +Darlene +Jill +Alice +Dana +Jean +Wanda +Ellen +Frances +Phyllis +Sherri +Yvonne +Amy +Carla +Jacqueline +Maureen +Colleen +Julia +Dorothy +Maria +Charlene +Dawn +Evelyn +Jackie +Jo +Marie +Monica +Sally +Wendy +Sylvia +Carrie +Veronica +Carmen +Christina +Gina +Juanita +Sheri +Sue +Debora +Jan +Melody +Patty +Penny +Shelley +Irene +Melanie +Tracy +Beth +Charlotte +Deanna +Glenda +Holly +Jeanette +Jeanne +Karla +Kay +Michele +Andrea +Audrey +Dianne +Vivian +Gayle +Patti +Sarah +Marla +Vicky +Angela +Eileen +Geraldine +Joni +Dolores +Grace +Jana +Marcia +Regina +Tamara +Dianna +Dixie +Doris +Lois +Pam +Crystal +Darla +Jody +Yolanda +Cheri +Joann +Joy +Marianne +Ramona +Teri +Toni +Claudia +Constance +Eva +Josephine +Laurel +Melinda +Melissa +Patsy +Susie +Tami +Marsha +Chris +June +Kelly +Lillian +Luann +Norma +Shannon +Sherrie +Beatrice +Jenny +Jeri +Lynda +Lynne +Pearl +Priscilla +Louise +Pauline +Roxanne +Sandy +Stella +Arlene +Emily +Gwendolyn +Kristi +Lydia +Rosemary +Ruby +Shelly +Vera +Belinda +Bernadette +Candace +Delores +Eleanor +Georgia +Heidi +Jamie +Janette +Janis +Lucy +Marlene +Ronda +Rosalie +Sara +Heather +Jeannie +Joanne +Kristine +Lynette +Mona +Shari +Doreen +Esther +Gale +Karin +Lora +Marjorie +Bernadine +Bobbie +Christie +Jeannette +Jennie +Joanna +Lorna +Lou +Nina +Terrie +Tracey +Carole +Caroline +Cecilia +Kerry +Leann +Lee +Lynnette +Nadine +Nanette +Nora +Tanya +Vanessa +Bertha +Billie +Cherie +Danette +Deana +Dee +Edith +Gay +Lauri +Leanna +Marcella +Margie +Marta +Stacey +Tammie +Alberta +Angelina +April +Coleen +Ella +Erin +Gwen +Jerri +Jodi +Jolene +Kristie +Kristin +Kristy +Lana +Leah +Margo +Marian +Mitzi +Polly +Rachel +Rae +Shawn +Angie +Christy +Faye +Ginger +Gretchen +Janelle +Janna +Jayne +Kellie +Lorie +Lorri +Lorrie +Lucille +Lucinda +Maryann +Maxine +Natalie +Robyn +Rosa +Rosie +Tamra +Viola +Wilma +Candy +Clara +Dona +Dora +Gaylene +Ida +Inez +Irma +Jacquelyn +Jeannine +Kathie +Kerri +Lavonne +Liz +Neva +Patrice +Paulette +Rosemarie +Roxane +Roxanna +Sonia +Valorie +Adrienne +Antoinette +Carmelita +Cathleen +Darcy +Debi +Della +Edna +Florence +Hazel +Isabel +Ivy +Jeanie +Jeanine +Kari +Kendra +Leanne +Leigh +Leona +Lorene +Marina +Mindy +Naomi +Randi +Rochelle +Sabrina +Sheree +Therese +Trina +Verna +Bridget +Camille +Carlene +Cecelia +Cindi +Claire +Corinne +Dena +Desiree +Dian +Elise +Ernestine +Estella +Gerri +Gertrude +Henrietta +Jami +Janie +Janine +Josie +Karyl +Kathi +Kimberlee +Kimberley +Kris +Kristen +Kristina +Lanette +Lauren +Lena +Lola +Luanne +Marcie +Marguerite +Marion +Myrna +Renae +Roxann +Suzan +Thelma +Tonya +Trudy +Velma +Vikki +Adele +Agnes +Ana +Bambi +Bernice +Candice +Cassandra +Cathryn +Charmaine +Christi +Collette +Dani +Danita +Debby +Deidre +Edythe +Elisa +Emma +Gayla +Geneva +Iris +Jacque +Janell +Jocelyn +Karie +Karyn +Kaye +Kitty +Lea +Leeann +Lenora +Lesley +Lorena +Lorretta +Luz +Marisa +Megan +Merry +Myra +Nikki +Nita +Pat +Penelope +Rena +Rene +Robbin +Rosanna +Sandi +Sharlene +Shawna +Sherie +Sherilyn +Sonja +Stacie +Stacy +Susanna +Tamera +Tara +Teena +Tracie +Yvette +Mary +Susan +Linda +Debra +Karen +Cynthia +Patricia +Julie +Deborah +Barbara +Pamela +Debbie +Sharon +Cheryl +Cindy +Nancy +Donna +Sandra +Kathy +Lisa +Kathleen +Carol +Elizabeth +Diane +Tammy +Lori +Brenda +Janet +Christine +Teresa +Theresa +Diana +Laura +Terri +Rebecca +Margaret +Denise +Catherine +Judy +Rhonda +Kim +Connie +Peggy +Kimberly +Cathy +Paula +Michelle +Robin +Leslie +Vicki +Beverly +Ann +Laurie +Valerie +Kelly +Jennifer +Lynn +Bonnie +Carolyn +Shirley +Sherry +Janice +Victoria +Becky +Katherine +Kathryn +Judith +Ruth +Vickie +Marilyn +Anna +Roberta +Tina +Carla +Annette +Jane +Jill +Loretta +Anita +Amy +Gloria +Rose +Terry +Virginia +Sheryl +Betty +Jean +Sheila +Dana +Helen +Maria +Dawn +Joyce +Tamara +Joann +Carrie +Colleen +Wanda +Marie +Wendy +Renee +Rita +Gail +Jeanne +Lorraine +Darlene +Jo +Martha +Sheri +Suzanne +Beth +Elaine +Anne +Vicky +Christina +Joan +Angela +Frances +Julia +Sherri +Andrea +Phyllis +Tami +Yvonne +Pam +Kay +Maureen +Michele +Sue +Veronica +Ellen +Glenda +Patty +Arlene +Jacqueline +Melanie +Stephanie +Bernadette +Charlene +Charlotte +Gina +Melissa +Sally +Joanne +Ramona +Sarah +Chris +Dorothy +Jackie +Jody +Penny +Regina +Susie +Jeanette +Marlene +Shannon +Tracy +Juanita +Shelley +Eileen +Holly +Alice +Dianne +Gayle +Irene +Jan +Jodi +Monica +Sandy +Teri +Toni +Debora +Georgia +Roxanne +Shelly +Darla +Doris +Sara +Christy +Claudia +Deanna +Jolene +Joy +Melinda +Natalie +Norma +Audrey +Dianna +Geraldine +Karla +Sylvia +Tammie +Cheri +Joni +Mona +Ruby +Carmen +Evelyn +Kristine +Vivian +Erin +Esther +Eva +Kristi +Marla +Dolores +Heidi +Laurel +Lillian +Lois +Lynda +Yolanda +Christie +Crystal +Delores +Jamie +Louise +Melody +Constance +Lora +Lydia +Marcia +Marianne +Myra +Patti +Pauline +Rachel +Rosalie +April +Bernadine +Bernice +Billie +Bobbie +Cathleen +Dee +Jeannie +Jennie +Jenny +Lee +Luann +Margie +Patsy +Sherrie +Stacy +Terrie +Betsy +Cherie +Dora +Grace +Jana +Leona +Lorie +Lorrie +Maxine +Ronda +Rosemary +Cecilia +Edith +Kelley +Kelli +Kimberley +Lynette +Lynnette +Marjorie +Nora +Robyn +Shari +Belinda +Eleanor +Emily +Ginger +Gwen +Jeri +Leann +Lucy +Lynne +Shawn +Therese +Tracey +Allison +Angie +Beatrice +Carole +Debi +Dixie +Doreen +Josephine +June +Kendra +Kristen +Lucinda +Priscilla +Trudy +Valorie +Candy +Clara +Deanne +Gale +Heather +Janelle +Jerri +Kerry +Kristin +Lauri +Lorna +Lou +Marcella +Maryann +Mitzi +Molly +Pat +Sonya +Tammi +Tanya +Viola +Alison +Bridget +Colette +Gwendolyn +Hope +Janie +Janine +Janna +Jeannette +Jeannine +Kathi +Kris +Kristy +Lea +Liz +Marsha +Marta +Mildred +Mindy +Nadine +Nina +Renae +Robbin +Rochelle +Roxanna +Tamera +Adele +Amanda +Barb +Bertha +Candace +Cassandra +Christi +Debby +Della +Desiree +Geri +Glenna +Jacque +Jacquelyn +Janette +Janis +Joanna +Kari +Kristie +Kristina +Leigh +Lenora +Lucille +Patrice +Polly +Rosemarie +Shauna +Stacey +Stella +Tonya +Vanessa +Ana +Caroline +Cecelia +Corrine +Deana +Deann +Deena +Florence +Ina +Janell +Julianne +Karin +Lana +Leah +Leanne +Lesley +Lesli +Margo +Marian +Naomi +Olga +Paulette +Rene +Tamra +Verna +Alicia +Alisa +Camille +Danette +Debbra +Faith +Geneva +Genevieve +Gretchen +Jeanine +Kathie +Kaye +Kellie +Kerri +Krista +Louella +Marci +Marcie +Mari +Nanette +Rosa +Roseann +Sabrina +Sandi +Shawna +Suzan +Suzette +Tara +Teena +Thelma +Traci +Trina +Twila +Vanda +Vera +Vikki +Wilma +Alberta +Alma +Amelia +Annabelle +Antoinette +Brooke +Cara +Charla +Charmaine +Dalene +Diann +Edna +Elena +Erlinda +Ernestine +Etta +Gayla +Gisele +Henrietta +Iris +Isabel +Ivy +Jami +Jayne +Jewel +Jonna +Juliann +Karon +Katharine +Kirsten +Lani +Lavonne +Leanna +Lena +Letitia +Lorri +Louisa +Luanne +Marcy +Marina +Myrna +Nikki +Nita +Ronna +Shelli +Sonja +Starla +Suzy +Tamela +Tamie +Valarie +Mary +Linda +Susan +Karen +Debra +Cynthia +Patricia +Debbie +Donna +Lisa +Cindy +Lori +Sandra +Barbara +Pamela +Kathy +Deborah +Julie +Cheryl +Nancy +Kathleen +Diane +Carol +Tammy +Sharon +Brenda +Janet +Elizabeth +Teresa +Laura +Theresa +Diana +Rebecca +Terri +Judy +Denise +Michelle +Rhonda +Kelly +Robin +Kim +Margaret +Catherine +Peggy +Connie +Janice +Kimberly +Valerie +Cathy +Christine +Dawn +Laurie +Leslie +Tina +Paula +Annette +Joyce +Becky +Jennifer +Sherri +Vicki +Beverly +Katherine +Ann +Kathryn +Carolyn +Renee +Shirley +Carla +Terry +Rose +Betty +Jean +Jill +Maria +Sheryl +Wendy +Dana +Gloria +Amy +Anna +Tamara +Bonnie +Sheila +Carrie +Tami +Anita +Rita +Loretta +Penny +Sandy +Lynn +Marilyn +Roberta +Darlene +Dorothy +Helen +Judith +Sherry +Suzanne +Elaine +Sally +Pam +Patty +Vickie +Virginia +Stephanie +Victoria +Tracy +Lorraine +Gail +Beth +Christina +Joan +Martha +Wanda +Anne +Angela +Jane +Ruth +Sarah +Andrea +Colleen +Yvonne +Alice +Ellen +Julia +Sue +Bernadette +Gina +Karla +Vicky +Joanne +Michele +Sheri +Holly +Joann +Juanita +Melissa +Melody +Veronica +Dianna +Dianne +Kay +Phyllis +Shelley +Evelyn +Frances +Jackie +Jeanne +Toni +Stacy +Charlotte +Deanna +Jo +Joy +Monica +Charlene +Cheri +Irene +Jacqueline +Marie +Regina +Teri +Jeanette +June +Marcia +Ruby +Darla +Debora +Eileen +Geraldine +Melanie +Ronda +Tammie +Dolores +Glenda +Jan +Joni +Kristi +Lois +Louise +Jamie +Marlene +Belinda +Christy +Jody +Kristin +Lynne +Marla +Melinda +Patti +Shelly +Sylvia +Terrie +Audrey +Grace +Rosemary +Roxanne +Shannon +Gayle +Lynette +Maureen +Carmen +Heidi +Jodi +Norma +Pat +Susie +Jana +Lynda +Robyn +Tamra +Yolanda +Chris +Claudia +Esther +Georgia +Kristine +Mona +Shari +Doris +Jolene +Lorrie +Marianne +Ramona +Sherrie +Therese +Vivian +Arlene +Eva +Heather +Kendra +Patsy +Rosalie +Tracey +Allison +Bridget +Candace +Deana +Debby +Erin +Ginger +Jeanine +Jeannette +Kelli +Lorna +Rosie +Christi +Constance +Dora +Edith +Janelle +Kellie +Kris +Lillian +Lucy +Vanessa +Alison +Billie +Caroline +Delores +Gretchen +Janie +Kristy +Lana +Laurel +Marsha +Naomi +Priscilla +Stacey +Tammi +Bernice +Candy +Crystal +Dee +Jerri +Karin +Kelley +Kimberley +Lauren +Leanne +Lou +Nora +Pauline +Rachel +Rochelle +Rosa +Trudy +Valarie +Angie +Emily +Janis +Jenny +Josephine +Kristie +Lee +Leona +Luann +Natalie +Rosemarie +Sara +Tamela +April +Bobbie +Cassandra +Cherie +Deanne +Dena +Florence +Freda +Gwen +Isabel +Jeanie +Kari +Kristen +Lucinda +Lydia +Marci +Maryann +Molly +Rae +Rene +Shauna +Sondra +Yvette +Antonia +Betsy +Candice +Cecilia +Celia +Christie +Gayla +Janine +Jeannie +Jeri +Juli +Kathi +Lora +Marian +Marjorie +Maxine +Pearl +Robbin +Shawna +Alicia +Beatrice +Cindi +Danette +Eve +Faith +Gay +Hope +Jennie +Katharine +Kerri +Kerry +Lynnette +Marcie +Margie +Marta +Mildred +Nadine +Starla +Stella +Suzette +Tamera +Tanya +Tracie +Trina +Alberta +Barb +Bernadine +Bobbi +Bonita +Carole +Cathleen +Claire +Cora +Deann +Deena +Della +Diann +Doreen +Eleanor +Emma +Felicia +Flora +Gwendolyn +Janette +Kimberlee +Kitty +Krista +Kristina +Ladonna +Laureen +Lauri +Leann +Lorie +Lupe +Madeline +Marcy +Melodie +Mindy +Patrice +Sabrina +Sonia +Sonja +Tara +Val +Viola +Agnes +Alisa +Amanda +Amelia +Annie +Antoinette +Cecelia +Charla +Cyndi +Deidre +Dixie +Elisa +Faye +Gaylene +Gena +Genevieve +Gigi +Ida +Jacquelyn +Janell +Joanna +Katrina +Lavonne +Lea +Leigh +Lena +Lenora +Lesa +Lorene +Lorri +Lucille +Marcella +Merri +Myra +Paulette +Renae +Rhoda +Roxann +Sandi +Shawn +Tammera +Terese +Traci +Wilma +Amber +Ana +Arleen +Cara +Carmelita +Celeste +Charmaine +Cinda +Clara +Corrine +Dani +Danita +Darcy +Debbra +Denice +Desiree +Dian +Dona +Edna +Elena +Ella +Erica +Estella +Ethel +Francine +Geralyn +Geri +Gerri +Ginny +Glenna +Ingrid +Ivy +Janna +Jayne +Jeannine +Jodie +Kathie +Katie +Leanna +Lenore +Liz +Luanne +Margo +Megan +Michael +Nannette +Nikki +Nina +Nita +Polly +Rena +Roseann +Roxie +Sharron +Shelia +Susanna +Thelma +Valorie +Vera +Mary +Karen +Susan +Linda +Lisa +Debbie +Debra +Cynthia +Patricia +Julie +Sandra +Lori +Brenda +Nancy +Barbara +Cindy +Tammy +Pamela +Donna +Deborah +Elizabeth +Laura +Sharon +Kathy +Cheryl +Carol +Janet +Denise +Diane +Teresa +Kathleen +Diana +Theresa +Michelle +Robin +Kelly +Terri +Kimberly +Kim +Rhonda +Laurie +Christine +Rebecca +Catherine +Margaret +Paula +Judy +Cathy +Annette +Jennifer +Tina +Ann +Connie +Beverly +Kathryn +Tracy +Vicki +Katherine +Valerie +Bonnie +Renee +Sherry +Becky +Anna +Carolyn +Peggy +Janice +Shirley +Leslie +Maria +Amy +Carrie +Wendy +Dawn +Sherri +Angela +Anne +Beth +Loretta +Ruth +Rita +Victoria +Sandy +Sheila +Gloria +Anita +Betty +Lynn +Andrea +Stephanie +Terry +Joyce +Yvonne +Gina +Jackie +Jill +Joan +Pam +Marilyn +Suzanne +Rose +Carla +Jeanette +Penny +Sally +Colleen +Roberta +Shelly +Virginia +Dana +Elaine +Gail +Judith +Lorraine +Veronica +Tamara +Vickie +Jean +Melanie +Jane +Patty +Melinda +Deanna +Holly +Jacqueline +Kristi +Marie +Shelley +Sheryl +Martha +Maureen +Regina +Sue +Darlene +Heidi +Jody +Jan +Juanita +Sheri +Tami +Alice +Chris +Michele +Monica +Sarah +Julia +Christina +Frances +Joann +Ellen +Jeanne +Phyllis +Toni +Helen +Joni +Dianna +Melissa +Dorothy +Glenda +Melody +Teri +Audrey +Crystal +Darla +Kelli +Vicky +Wanda +Charlene +Charlotte +Karla +Roxanne +Jo +Rosemary +Bernadette +Kay +Marla +Marsha +Arlene +Dianne +Eileen +Jodi +June +Tammie +Irene +Lynette +Carmen +Debora +Esther +Jamie +Kelley +Louise +Patti +Jana +Jenny +Joy +Lorie +Lorrie +Lynda +Ronda +Sylvia +April +Doris +Gretchen +Joanne +Belinda +Cecilia +Christy +Dolores +Jolene +Kerry +Liz +Shannon +Shari +Allison +Edith +Eva +Geraldine +Lois +Lynne +Marcia +Marlene +Ramona +Susie +Terrie +Vivian +Evelyn +Grace +Jeanine +Marjorie +Rene +Sherrie +Bridget +Caroline +Erin +Georgia +Kari +Lee +Rosalie +Yolanda +Alison +Angie +Carole +Cheri +Kristine +Lora +Lucy +Norma +Ruby +Sara +Sonja +Emily +Gayle +Jeannie +Kathi +Kerri +Kristin +Mona +Natalie +Rachel +Stacy +Traci +Vanessa +Bobbi +Debby +Dena +Jeannette +Kristen +Luann +Marianne +Nina +Robyn +Rochelle +Stacey +Tanya +Celeste +Clara +Constance +Francine +Janine +Jodie +Kellie +Laurel +Lorri +Lydia +Maxine +Shauna +Tammi +Therese +Tracey +Billie +Deana +Deanne +Dee +Della +Gwen +Kristie +Lana +Lauri +Leann +Leona +Lillian +Margie +Nora +Pat +Tamera +Bernadine +Bernice +Candy +Ginger +Ida +Janelle +Josephine +Judi +Karin +Kimberley +Kris +Lorna +Lynnette +Rosa +Candace +Cassandra +Cherie +Cindi +Claudia +Colette +Danette +Danna +Dora +Doreen +Edna +Gwendolyn +Janette +Jeri +Kristy +Marcella +Marci +Nita +Priscilla +Shawn +Shelli +Tonya +Yvette +Alicia +Bertha +Bobbie +Cathleen +Karrie +Pauline +Shawna +Sonya +Wilma +Amanda +Amber +Barb +Betsy +Christie +Darcy +Delores +Dina +Eleanor +Ella +Ernestine +Felicia +Jeanie +Jennie +Joanna +Kirsten +Kristina +Leila +Monique +Nanette +Patrice +Pearl +Pennie +Polly +Sandi +Stacie +Suzette +Tonia +Trudy +Adele +Cari +Cecelia +Celia +Christi +Claire +Desiree +Dixie +Gayla +Gaylene +Heather +Hope +Irma +Karol +Katie +Kendra +Keri +Lauren +Lea +Lesley +Lorena +Lucille +Marcie +Marian +Marina +Mindy +Myrna +Naomi +Patsy +Rosemarie +Rosie +Shelia +Susanne +Tamie +Tracie +Tricia +Twyla +Adrienne +Aileen +Angelina +Antionette +Antoinette +Ava +Beatrice +Coleen +Cora +Corinne +Corrine +Deann +Deirdre +Emma +Faye +Gladys +Guadalupe +Janell +Janie +Janis +Jayne +Jerri +Jessica +Josie +Katrina +Ladonna +Laureen +Leah +Leanne +Lena +Lenora +Lillie +Lou +Margo +Misty +Molly +Nadine +Rena +Sabrina +Sondra +Starla +Stella +Suzan +Suzanna +Tamra +Tara +Alberta +Alisa +Alma +Amelia +Angel +Annie +Antonia +Beckie +Benita +Candice +Collette +Cristi +Debi +Deeann +Delia +Elena +Fawn +Gale +Geneva +Geri +Henrietta +Ingrid +Iris +Jacque +Jami +Jeannine +Johanna +Joleen +Juli +Juliana +Kara +Kyle +Laverne +Lorene +Luanne +Lucinda +Madeline +Malinda +Marcy +Marilee +Marion +Marta +Maryann +Mildred +Miriam +Mitzi +Olga +Paige +Pamala +Peri +Rae +Randa +Randi +Reva +Roseann +Roslyn +Roxane +Terese +Trina +Trudi +Valorie +Velma +Viola +Mary +Susan +Lisa +Linda +Karen +Lori +Cynthia +Sandra +Julie +Debra +Patricia +Cheryl +Brenda +Sharon +Barbara +Debbie +Laura +Donna +Tammy +Pamela +Carol +Elizabeth +Deborah +Cindy +Michelle +Nancy +Janet +Teresa +Kathy +Robin +Denise +Diane +Kelly +Theresa +Rhonda +Kimberly +Laurie +Kathleen +Jennifer +Christine +Diana +Connie +Rebecca +Tina +Terri +Tracy +Dawn +Annette +Judy +Kim +Wendy +Paula +Margaret +Ann +Jacqueline +Peggy +Angela +Becky +Cathy +Vicki +Catherine +Amy +Dana +Renee +Stephanie +Shelly +Valerie +Leslie +Sherry +Carla +Carolyn +Carrie +Christina +Anita +Anna +Sherri +Joyce +Maria +Martha +Beverly +Janice +Rita +Beth +Roberta +Sheila +Shirley +Vickie +Deanna +Jill +Lynn +Katherine +Anne +Bonnie +Kathryn +Monica +Suzanne +Terry +Gina +Pam +Rose +Virginia +Yvonne +Jackie +Jane +Sheryl +Andrea +Sandy +Betty +Lorraine +Penny +Jeanette +Ruth +Shari +Gail +Judith +Loretta +Michele +Veronica +Gloria +Jody +Melanie +Victoria +Colleen +Bernadette +Holly +Joan +Melinda +Sylvia +Heidi +Sheri +Jean +Julia +Frances +Kristi +Melody +Sally +Darlene +Ellen +Toni +Jamie +Patty +Shelley +Wanda +Helen +Jeanne +Regina +Sue +Juanita +Marie +Phyllis +Tamara +Elaine +Joann +Karla +Norma +Sarah +Belinda +Dorothy +Roxanne +Tami +Tammie +Vicky +Charlene +Charlotte +Marlene +Dianne +Marilyn +Teri +Arlene +Ramona +Darla +Eileen +Jana +Kellie +Maureen +Shawna +Irene +Kay +Lynda +Lynne +Melissa +Natalie +Sara +Shannon +Geraldine +Jo +Jodi +Joni +Kelli +Kerry +Lorie +Rachel +Ronda +Shawn +Stacey +Yolanda +Dianna +Stacy +Caroline +Cheri +Glenda +Joy +Lynette +Patti +Robyn +Susie +Tanya +Tracey +Christy +Gayle +June +Kelley +Kristine +Marcia +Carmen +Chris +Jeannie +Josephine +Louise +Tracie +Gretchen +Heather +Jan +Joanne +Kristin +Rosemary +Ruby +Alice +Constance +Crystal +Debora +Jeri +Margie +Mona +Audrey +Danette +Debby +Eva +Kendra +Patsy +Vivian +Cecilia +Claudia +Erin +Jerri +Nora +Stella +Alicia +Carole +Georgia +Ginger +Janette +Kristina +Lois +Lorrie +Lydia +Marla +Maryann +Sherrie +Terrie +Vanessa +Doris +Grace +Ladonna +Liz +Lora +Lynnette +Maxine +Rochelle +Rosalie +Traci +Bridget +Doreen +Esther +Kari +Lucinda +Marjorie +Sonja +Tamera +Therese +Alison +Antoinette +Bernadine +Candy +Christie +Corina +Dee +Dolores +Gwendolyn +Janie +Jeanie +Jenny +Jolene +Karin +Kris +Kristie +Marian +Molly +Pat +Pauline +Tonya +Yvette +Allison +Amanda +Angie +April +Billie +Clara +Dina +Evelyn +Gay +Gwen +Katrina +Kimberley +Lauri +Leona +Lorri +Lou +Luann +Lucy +Sabrina +Tara +Cassandra +Coleen +Danielle +Della +Dora +Edith +Edna +Eleanor +Florence +Genevieve +Jacquelyn +Janell +Janine +Jennie +Katie +Leanne +Lorna +Lucille +Marianne +Myra +Nadine +Polly +Rene +Robbie +Rosie +Sandi +Starla +Ana +Bobbi +Cherie +Corinne +Deena +Erica +Felicia +Janelle +Janna +Kerri +Kristen +Lana +Laurel +Leah +Lee +Lillian +Luanne +Marsha +Nanette +Pennie +Priscilla +Sonya +Tricia +Trudy +Valarie +Annie +Cathleen +Charla +Cyndi +Darcy +Deanne +Emily +Faith +Francine +Gayla +Jami +Jeanine +Lea +Leann +Leigh +Luz +Marcie +Marguerite +Melodie +Monique +Paulette +Rosa +Shauna +Shelli +Sonia +Suzy +Twila +Valorie +Viola +Vonda +Alberta +Allyson +Angel +Antonia +Betsy +Cherri +Cindi +Corrine +Deirdre +Elisa +Ernestine +Geri +Jeannette +Jessica +Josie +Kathi +Leeann +Loraine +Marci +Marta +Mitzi +Nina +Renae +Roxane +Shanna +Shellie +Stacie +Suzan +Tonia +Alyson +Arleen +Athena +Barb +Benita +Bernice +Blanca +Bobbie +Brooke +Cathi +Celeste +Celia +Christi +Colette +Delores +Denice +Dixie +Dori +Elise +Ethel +Fay +Jacque +Jeannine +Joanna +Julianne +Kathrine +Kirsten +Krista +Madeline +Marty +Mindy +Nola +Paige +Randi +Rena +Roxann +Shelia +Tammara +Tori +Vera +Verna +Aimee +Amber +Antionette +Avis +Babette +Beatrice +Bridgett +Carlene +Cathie +Cecelia +Charmaine +Claudette +Cora +Cori +Corine +Dannette +Dayna +Deidre +Dena +Faye +Frankie +Gale +Gaylene +Geralyn +Hazel +Hilary +Ingrid +Janis +Jodene +Joleen +Juliann +Karyl +Kimberlee +Kristy +Lauren +Lavonne +Leanna +Lesa +Lila +Lorene +Mara +Margarita +Megan +Meredith +Merry +Michael +Miriam +Misty +Natasha +Penelope +Rachelle +Robbin +Robert +Roxie +Ruthie +Sharron +Suzette +Tamela +Tammi +Tresa +Trina +Twyla +Lisa +Susan +Lori +Mary +Karen +Linda +Sandra +Brenda +Julie +Patricia +Tammy +Cynthia +Pamela +Debbie +Michelle +Cindy +Deborah +Debra +Barbara +Donna +Sharon +Teresa +Laura +Elizabeth +Kimberly +Cheryl +Christine +Kelly +Janet +Nancy +Jennifer +Denise +Diane +Kathy +Carol +Robin +Laurie +Connie +Diana +Terri +Kim +Tina +Theresa +Rhonda +Rebecca +Kathleen +Annette +Paula +Stephanie +Leslie +Dawn +Tracy +Valerie +Sherry +Margaret +Judy +Shelly +Renee +Wendy +Amy +Angela +Ann +Peggy +Carla +Sherri +Carolyn +Vicki +Maria +Catherine +Jill +Suzanne +Christina +Dana +Anne +Bonnie +Beth +Jacqueline +Sandy +Sheila +Becky +Melissa +Cathy +Penny +Monica +Jackie +Beverly +Gail +Terry +Carrie +Judith +Lynn +Anna +Gina +Heidi +Joyce +Andrea +Colleen +Holly +Jeanette +Kathryn +Anita +Janice +Roberta +Veronica +Michele +Rita +Katherine +Loretta +Marie +Pam +Elaine +Regina +Tamara +Darlene +Melinda +Shelley +Deanna +Gloria +Jane +Jean +Melanie +Sarah +Yvonne +Darla +Ruth +Shirley +Victoria +Virginia +Jamie +Julia +Rose +Sheryl +Vickie +Martha +Teri +Lorraine +Marilyn +Joan +Toni +Patty +Tami +Betty +Frances +Joann +Melody +Phyllis +Maureen +Natalie +Ramona +Belinda +Christy +Dianna +Jeanne +Jody +Kristi +Shari +Stacey +Dorothy +Marla +Ronda +Shannon +Sheri +Bernadette +Kelli +Stacy +Wanda +Charlotte +Ellen +Helen +Jodi +Karla +Lynda +Sara +Tanya +Tracey +Vicky +April +Charlene +Crystal +Gretchen +Kay +Marcia +Arlene +Carmen +Glenda +Kelley +Kristine +Sally +Sue +Heather +Marlene +Sylvia +Jana +Kerry +Lorrie +Robyn +Cecilia +Jenny +Jolene +Kristen +Lorie +Norma +Patti +Yvette +Doris +Janine +Juanita +Eileen +Eva +Geraldine +Joanne +Joy +Rachel +Rene +Tammie +Alice +Chris +Dee +Irene +Lynette +Margie +Roxanne +Traci +Yolanda +Dianne +Esther +Gayle +Gwendolyn +Janelle +Leann +Rosemary +Vivian +Audrey +Cheri +Louise +Mona +Shawn +Sherrie +Tammi +Tracie +Carole +Caroline +Constance +Evelyn +Jan +Jo +Joni +Kristin +Leah +Lee +Lora +Lynne +Marsha +Alicia +Felicia +Grace +Jerri +June +Kris +Kristy +Lois +Rochelle +Sonya +Stella +Bridget +Emily +Gwen +Jeri +Kellie +Laurel +Leanne +Rena +Rosalie +Therese +Tonya +Trudy +Allison +Billie +Claudia +Deanne +Georgia +Jeannie +Jessica +Josephine +Kari +Lauri +Leigh +Nina +Susie +Debora +Dena +Dolores +Janette +Katrina +Marjorie +Myra +Nanette +Pat +Shawna +Tamera +Terrie +Vanessa +Alison +Angie +Bernadine +Bobbie +Candace +Cassandra +Christie +Deana +Deann +Della +Edith +Edna +Jeannette +Jodie +Kristina +Lorri +Lucinda +Lucy +Maryann +Robbin +Rosa +Amanda +Candy +Coleen +Doreen +Gay +Leona +Lorna +Lydia +Marian +Nora +Sandi +Shauna +Stacie +Amelia +Christi +Delores +Dina +Dora +Eleanor +Erin +Hope +Karin +Kendra +Kerri +Kimberlee +Lana +Marcie +Misty +Nadine +Patsy +Pauline +Priscilla +Ruby +Tamra +Twila +Ana +Beatrice +Celia +Cindi +Clara +Corinne +Corrine +Danette +Daphne +Darcy +Debby +Janie +Janis +Jeanine +Katie +Kaye +Kimberley +Leeann +Lena +Lillian +Luann +Madeline +Mari +Marianne +Mindy +Nicole +Paulette +Rachelle +Rae +Renae +Suzy +Vera +Amber +Annie +Barb +Bonita +Cathleen +Cecelia +Cherie +Desiree +Dixie +Dolly +Erica +Faith +Gayla +Genevieve +Ginger +Jennie +Joleen +Judi +Kendall +Kirsten +Ladonna +Liz +Lorene +Lucille +Lynnette +Marti +Maxine +Michael +Molly +Naomi +Rosemarie +Shelli +Sonia +Tana +Tara +Trina +Valarie +Verna +Antoinette +Betsy +Bobbi +Camille +Cari +Claire +Danelle +Debbra +Debi +Deidra +Dorinda +Gale +Jacquelyn +Janna +Joanna +Juliana +Karrie +Kathi +Krista +Lesa +Louann +Mae +Marcella +Marci +Marta +Merri +Mildred +Miriam +Polly +Rebekah +Roseann +Sabrina +Starla +Susanne +Suzan +Suzanna +Tamela +Thelma +Allyson +Bernice +Cristi +Cyndi +Danna +Denice +Elena +Ella +Eloise +Ernestine +Geneva +Gerri +Henrietta +Hilda +Janell +Jeanene +Jeanie +Jodeen +John +Kammy +Karri +Kayleen +Lavonne +Lea +Lenora +Lola +Luz +Mandy +Marcy +Mariann +Marina +Melodie +Nicki +Nikki +Pearl +Penelope +Roxane +Roxanna +Shellie +Sherryl +Sondra +Sonja +Susanna +Suzann +Suzette +Tari +Tena +Velma +Lisa +Mary +Karen +Susan +Lori +Linda +Tammy +Michelle +Brenda +Sandra +Julie +Patricia +Laura +Debra +Pamela +Elizabeth +Barbara +Donna +Cynthia +Deborah +Christine +Kimberly +Debbie +Cindy +Teresa +Kelly +Nancy +Cheryl +Jennifer +Kathy +Denise +Diane +Robin +Sharon +Tina +Kathleen +Theresa +Janet +Carol +Diana +Paula +Tracy +Terri +Laurie +Rhonda +Kim +Connie +Rebecca +Stephanie +Shelly +Angela +Wendy +Ann +Leslie +Valerie +Amy +Annette +Sherry +Dawn +Gina +Sherri +Catherine +Margaret +Maria +Sheila +Judy +Katherine +Carolyn +Renee +Suzanne +Becky +Cathy +Dana +Andrea +Carla +Jill +Anne +Michele +Deanna +Janice +Monica +Peggy +Melissa +Ruth +Anita +Kathryn +Bonnie +Jacqueline +Beth +Beverly +Colleen +Heidi +Yvonne +Sheri +Vicki +Lynn +Shelley +Carrie +Gail +Penny +Regina +Veronica +Anna +Jeanette +Marie +Rita +Shannon +Sheryl +Tamara +Christina +Teri +Toni +Virginia +Darla +Holly +Jane +Kristine +Judith +Darlene +Roberta +Sandy +Heather +Jackie +Joyce +Melanie +Sarah +Julia +Martha +Pam +Kelli +Shirley +Stacey +Kristi +Shari +Tracey +Dorothy +Joan +Karla +Melinda +Loretta +Stacy +Victoria +Marilyn +Rose +Terry +Elaine +Vickie +Charlotte +Gloria +Jamie +Jody +Lorraine +Lynette +Maureen +Sue +Tami +Cheri +Melody +Betty +Frances +Jean +Crystal +Jo +Wanda +Jeanne +Yvette +Helen +Lorie +Natalie +April +Jana +Joann +Joy +Phyllis +Ellen +Jodi +Ramona +Shawna +Christy +Jenny +Ronda +Bernadette +Lee +Sally +Sara +Yolanda +Dianna +Geraldine +Gretchen +Irene +Jan +Kirsten +Kristin +Lora +Roxanne +Ruby +Sylvia +Erin +Juanita +Marla +Shawn +Vicky +Caroline +Doreen +Glenda +Josephine +Kelley +Leah +Lynda +Shauna +Tammie +Tonya +Audrey +Charlene +Kristy +Lynne +Sonja +Tanya +Alicia +Carole +Eva +Evelyn +Felicia +Jessica +June +Kellie +Patty +Rosalie +Tara +Alice +Allison +Chris +Esther +Kari +Kerry +Kris +Louise +Mindy +Pauline +Rene +Traci +Belinda +Betsy +Carmen +Dianne +Joanne +Kara +Kay +Kristina +Robyn +Terrie +Trudy +Claudia +Desiree +Ginger +Joni +Leanne +Marlene +Norma +Patti +Sherrie +Vivian +Alison +Angie +Bridget +Delores +Dena +Dolores +Janine +Kerri +Kristen +Molly +Nadine +Nora +Tammi +Valarie +Arlene +Bernice +Debora +Grace +Jolene +Katrina +Lois +Lorrie +Lucy +Lynnette +Marjorie +Rosemary +Susie +Therese +Tracie +Amanda +Christie +Danette +Gayle +Georgia +Gwendolyn +Johnna +Lucinda +Rachel +Sonya +Stella +Dee +Eileen +Hope +Kendra +Kristie +Lana +Leona +Lesa +Margie +Marianne +Marsha +Naomi +Patsy +Polly +Suzette +Amber +Cherie +Deana +Jennie +Jeri +Jerri +Kimberley +Leigh +Lydia +Marcia +Mona +Nina +Sonia +Sophia +Trina +Antoinette +Cecilia +Coleen +Darcy +Della +Denice +Diann +Dina +Joanna +Jodie +Jonna +Karin +Laurel +Leann +Lorri +Marcella +Marci +Myra +Priscilla +Rena +Sabrina +Stacie +Tamera +Tamra +Wendi +Alisa +Ana +Beatrice +Cathleen +Deann +Doris +Elena +Emily +Gay +Gwen +Janette +Janis +Jeanie +Jeanine +Juli +Kimberlee +Lucille +Penni +Rochelle +Rosemarie +Roslyn +Tricia +Vanessa +Angelina +Beckie +Benita +Bobbie +Bridgett +Cecelia +Christi +Constance +Daphne +Deena +Dora +Faith +Jacquelyn +Jami +Jeannie +Judi +Karrie +Katie +Kimberle +Lauri +Lena +Liana +Lillian +Lorena +Marcie +Megan +Patrice +Paulette +Rachelle +Sandi +Shelli +Vera +Alberta +Bambi +Billie +Camille +Candace +Candy +Cara +Cinda +Corina +Corinne +Corrine +Debi +Edie +Guadalupe +Irma +Jacque +Janelle +Janna +Jayne +Jeannette +Johanna +Karyn +Lea +Lorene +Marta +Mitzi +Monique +Nanette +Nicole +Paige +Pat +Rosanna +Roseanna +Roseanne +Roxanna +Shellie +Sherie +Starla +Verna +Whitney +Wilma +Zina +Adrienne +Alma +Alyson +Amelia +Annie +Barb +Barbie +Bonita +Celeste +Celia +Cindi +Claudine +Colette +Deidra +Deidre +Edna +Eleanor +Flora +Francine +Genevieve +Hilary +Ida +Isabel +Jeana +Jenifer +Julianne +Kate +Kathrine +Kimberlie +Lauren +Leanna +Leeann +Leisa +Lesley +Letitia +Liz +Londa +Lorna +Luann +Lucretia +Margo +Marian +Marion +Maryann +Maxine +Mildred +Nicolette +Pearl +Rae +Raylene +Risa +Rosalind +Ruthie +Teena +Terese +Trisha +Lisa +Mary +Susan +Karen +Julie +Michelle +Patricia +Linda +Lori +Brenda +Laura +Sandra +Cynthia +Christine +Kimberly +Pamela +Deborah +Tammy +Denise +Teresa +Nancy +Debbie +Donna +Cheryl +Debra +Jennifer +Elizabeth +Barbara +Tracy +Kelly +Robin +Sharon +Amy +Kathy +Carol +Kathleen +Rhonda +Paula +Angela +Stephanie +Terri +Tina +Diane +Diana +Cindy +Valerie +Theresa +Margaret +Rebecca +Kim +Dawn +Wendy +Annette +Dana +Shelly +Jacqueline +Jill +Ann +Connie +Renee +Sherry +Catherine +Leslie +Janet +Maria +Laurie +Gina +Katherine +Sherri +Sheila +Monica +Suzanne +Andrea +Carla +Carolyn +Judy +Carrie +Melissa +Tamara +Deanna +Jackie +Heather +Christina +Holly +Shelley +Becky +Bonnie +Beth +Michele +Sarah +Sheri +Anne +Sheryl +Janice +Cathy +Colleen +Heidi +Kathryn +Melanie +Peggy +Anita +Jane +Roberta +Shannon +Anna +Rita +Judith +Kelli +Penny +Shirley +Victoria +Julia +Vicki +Kristi +Stacey +Wanda +Jean +Jodi +Karla +Lorraine +Marie +Sandy +Veronica +Yvonne +Gloria +Joan +Betty +Regina +Sally +Stacy +Frances +Virginia +Joyce +Melinda +Patty +Jeanette +Marilyn +Beverly +Elaine +Kristin +Lynn +Shawn +Natalie +Jeanne +Melody +Ronda +Ruth +Kelley +Kristine +Martha +Traci +Jamie +Tammie +April +Charlene +Darlene +Dorothy +Rose +Sara +Toni +Alice +Chris +Crystal +Dianna +Joann +Jody +Pam +Terry +Yvette +Gail +Rachel +Tami +Belinda +Deneen +Joy +Kellie +Loretta +Lynda +Marla +Caroline +Leah +Maureen +Sylvia +Yolanda +Carmen +Joanne +Juanita +Shauna +Audrey +Helen +Sue +Vickie +Darla +Doreen +Janine +Kay +Kris +Marsha +Robyn +Shawna +Teri +Bernadette +Sonja +Geraldine +Jo +Marlene +Patti +Shari +Susie +Alicia +Cheri +Eileen +Ginger +Phyllis +Ramona +Tonya +Tracey +Angie +Christy +Jana +Lynette +Nadine +Norma +Tracie +Bridget +Claudia +Dianne +Gretchen +Joni +Kimberley +Lee +Leigh +Lucy +Lynne +Rosemary +Sherrie +Vicky +Eva +Jonna +Kari +Kirsten +Kristen +Lana +Lorie +Louise +Charlotte +Cherie +Dolores +Jenny +Jessica +Karin +Kerri +Krista +Kristina +Kristy +Rosalie +Tanya +Alison +Bernice +Cathleen +Deana +Evelyn +Grace +Janelle +Jodie +Jolene +Katrina +Kerry +Leanne +Lorrie +Marcella +Marcia +Margie +Marjorie +Roxanne +Ruby +Shelli +Trudy +Betsy +Bobbi +Candace +Cassandra +Cecilia +Doris +Ellen +Erin +Esther +Felicia +Gayle +Glenda +Irene +Jeanine +Juli +Kara +Katie +Kendra +Keri +Lora +Molly +Nicole +Priscilla +Rosemarie +Trisha +Vanessa +Allison +Amanda +Colette +Danette +Deanne +Dee +Desiree +Ernestine +Georgia +Gwendolyn +Jeannie +Jeri +Jerri +Joanna +Lydia +Maxine +Nina +Paige +Pauline +Rochelle +Stacie +Valarie +Arlene +Cindi +Dina +Emily +Janette +Johanna +Leann +Lillian +Lynnette +Misty +Mona +Nanette +Polly +Rene +Staci +Terrie +Constance +Deann +Debby +Denice +Edith +Francine +Genevieve +Gwen +Jan +Jeannette +Josephine +June +Luz +Sonya +Stella +Tammi +Tara +Vera +Wendi +Alisa +Amber +Billie +Celeste +Christi +Christie +Diann +Dixie +Gale +Kimberlee +Kristie +Ladonna +Lauri +Leona +Lesa +Lorinda +Lucinda +Margo +Shellie +Susanne +Suzan +Tamra +Tricia +Whitney +Alberta +Carey +Carole +Corrine +Danielle +Dawna +Deena +Deirdre +Eleanor +Irma +Janell +Janie +Jennie +Johnna +Laurel +Lois +Lou +Luann +Maryann +Megan +Mindy +Monique +Nikki +Olga +Paulette +Renae +Robbin +Rosa +Roseann +Sandi +Shana +Sonia +Suzy +Therese +Valorie +Vivian +Amelia +Babette +Bambi +Barb +Beatrice +Bernadine +Bertha +Candy +Cari +Charla +Daneen +Danna +Dayna +Debora +Deidre +Dena +Dora +Elisabeth +Georgina +Hope +Ingrid +Jacquelyn +Jami +Janel +Jessie +Judi +Karrie +Lavonne +Lena +Lila +Lola +Lorna +Marcy +Merri +Mitzi +Myra +Pearl +Robbie +Sabrina +Sondra +Stacia +Tana +Thelma +Tiffany +Zina +Aimee +Alesia +Alexandra +Ana +Angelina +Antoinette +Benita +Bobbie +Camille +Candice +Cara +Caren +Cherri +Claire +Clara +Corinne +Cristina +Danelle +Darcy +Dinah +Dorene +Edna +Elise +Emma +Erika +Evangeline +Gerri +Isabell +Jacque +Jeannine +Julianne +Justine +Karol +Karri +Kaye +Kendall +Liz +Lorri +Lucille +Malinda +Mandy +Marianne +Merry +Miriam +Naomi +Pat +Patsy +Rachelle +Rena +Ronna +Serena +Shaun +Sophia +Suzette +Sydney +Tamela +Tamera +Tawnya +Trina +Trudi +Ursula +Verna +Lisa +Mary +Karen +Kimberly +Susan +Michelle +Julie +Brenda +Lori +Cynthia +Tammy +Pamela +Patricia +Jennifer +Laura +Linda +Deborah +Christine +Kelly +Sandra +Cheryl +Stephanie +Donna +Rhonda +Denise +Wendy +Elizabeth +Sharon +Amy +Debra +Barbara +Angela +Dawn +Tina +Cindy +Teresa +Nancy +Carol +Rebecca +Robin +Kim +Sheila +Kathleen +Valerie +Theresa +Diane +Paula +Renee +Catherine +Tracy +Debbie +Diana +Annette +Connie +Kathy +Michele +Ann +Jill +Andrea +Gina +Margaret +Terri +Janet +Dana +Laurie +Maria +Sherry +Katherine +Christina +Jacqueline +Monica +Melissa +Leslie +Carla +Vicki +Deanna +Tamara +Anne +Stacey +Carolyn +Heidi +Kathryn +Shelly +Suzanne +Sherri +Kristin +Holly +Judy +Kristine +Shelley +Anna +Heather +Lynn +Peggy +Veronica +Yvonne +Jamie +Anita +Carrie +Beth +Bonnie +Marie +Becky +Colleen +Darlene +Sarah +Sheryl +Julia +Kristi +Penny +Cathy +Jodi +Melinda +Regina +Beverly +Jane +Janice +Joan +Lorraine +Martha +Roberta +Charlotte +Tracey +Jessica +Joann +Ronda +Sheri +Elaine +Ruth +Teri +Jean +Shannon +Toni +Victoria +Joyce +Marilyn +Rita +Stacy +Charlene +Darla +Gail +Melanie +Helen +Jeanette +Jody +Kelli +Natalie +Patty +Shawn +Tammie +Traci +Dianna +Judith +Kristina +Sally +Tonya +Karla +Loretta +Lynette +Phyllis +Rose +Shawna +Allison +April +Gloria +Jo +Kris +Samantha +Tami +Virginia +Wanda +Dorothy +Irene +Joy +Kellie +Kirsten +Shirley +Yvette +Carmen +Ellen +Jackie +Joanne +Bernadette +Betty +Frances +Gretchen +Kimberley +Kristen +Lana +Maureen +Sara +Shari +Sylvia +Caroline +Chris +Crystal +Geraldine +Jana +Rachel +Ramona +Vickie +Yolanda +Jeanne +Kari +Kelley +Tanya +Alicia +Alison +Amanda +Bridget +Candace +Eileen +Kay +Leanne +Lynda +Marla +Marsha +Melody +Molly +Pam +Roxanne +Sandy +Sherrie +Trudy +Audrey +Christy +Janine +Jolene +Lorrie +Robyn +Ruby +Sonja +Tara +Vicky +Angie +Danette +Emily +Juanita +Kara +Lorie +Monique +Rosemary +Sue +Terry +Vonda +Alice +Amber +Danielle +Debora +Dolores +Felicia +Jenny +Lesley +Lora +Lucy +Marcia +Patti +Pauline +Rene +Bobbi +Cara +Cassandra +Esther +Evelyn +June +Lois +Louise +Marlene +Shauna +Staci +Stacie +Tamera +Ana +Dena +Dianne +Doris +Eva +Gayle +Karin +Katrina +Kendra +Laurel +Nanette +Nicole +Paulette +Tammi +Trisha +Bobbie +Caryn +Cathleen +Cheri +Constance +Corina +Deanne +Krista +Kristy +Leah +Lee +Marcella +Marjorie +Rosa +Susie +Trina +Antoinette +Arlene +Belinda +Betsy +Florence +Ginger +Glenda +Jami +Janette +Jodie +Kerri +Leann +Lynnette +Mona +Priscilla +Sonya +Bernadine +Billie +Brooke +Deena +Desiree +Edith +Georgia +Janie +Jeanine +Jeri +Joni +Josephine +Kristie +Lauri +Lorna +Lynne +Marina +Marnie +Nadine +Suzette +Tracie +Valarie +Vivian +Cherie +Christie +Cindi +Deana +Deann +Dina +Doreen +Ernestine +Francine +Grace +Jan +Janell +Janelle +Jennie +Kathi +Kerry +Ladonna +Lucille +Lydia +Maxine +Megan +Nannette +Norma +Rosalie +Sandi +Sharla +Therese +Vanessa +Aimee +Angelina +Arleen +Camille +Cecilia +Celia +Coleen +Hope +Ingrid +Jeannette +Jeannie +Juli +Lucinda +Naomi +Nina +Paige +Polly +Rochelle +Sabrina +Shanda +Shelli +Sondra +Sophia +Tamra +Teena +Twila +Wendi +Adriana +Alisa +Benita +Dayna +Debby +Deirdre +Denice +Dona +Dora +Erin +Jenifer +Jerri +Karrie +Karyn +Lauren +Leigh +Leona +Lesa +Liz +Lorena +Marguerite +Martina +Mia +Myra +Olivia +Shana +Sophie +Stefanie +Tiffany +Alesia +Allyson +Angelica +Bernice +Candi +Cari +Claudia +Courtney +Darcy +David +Dee +Deidre +Delores +Deneen +Elisa +Elisabeth +Elise +Gwendolyn +Hilary +Ida +Irma +Johanna +Justine +Kandi +Kathlene +Keri +Lillian +Malinda +Marcy +Michell +Misty +Nikki +Patrice +Patsy +Rachelle +Rae +Rebekah +Renae +Sadie +Shellie +Sonia +Suzie +Tammara +Tia +Vera +Lisa +Michelle +Kimberly +Julie +Mary +Karen +Susan +Jennifer +Tammy +Brenda +Cynthia +Lori +Patricia +Laura +Deborah +Kelly +Pamela +Linda +Amy +Christine +Elizabeth +Stephanie +Denise +Tina +Donna +Rebecca +Sandra +Debra +Barbara +Nancy +Cheryl +Tracy +Dawn +Cindy +Angela +Paula +Wendy +Kathleen +Teresa +Andrea +Rhonda +Theresa +Sharon +Jill +Renee +Melissa +Diane +Kim +Carol +Debbie +Diana +Heidi +Connie +Valerie +Robin +Gina +Christina +Leslie +Michele +Shelly +Catherine +Dana +Kathy +Margaret +Maria +Sheila +Annette +Monica +Kristine +Stacey +Suzanne +Tamara +Terri +Ann +Katherine +Janet +Jacqueline +Sherry +Becky +Shannon +Kristin +Yvonne +Holly +Stacy +Roberta +Sherri +Anne +Sarah +Jodi +Kathryn +Kristen +Anna +Bonnie +Laurie +Carla +Deanna +Judy +Janice +Lynn +Melinda +Vicki +Veronica +Beth +Carolyn +Crystal +Heather +Jody +Julia +Natalie +Shelley +Anita +Carrie +Kristi +Ronda +Melody +Sheri +Colleen +Gloria +April +Beverly +Darlene +Jeanette +Kristina +Melanie +Ruth +Sara +Tanya +Toni +Traci +Bernadette +Jackie +Joann +Peggy +Tracey +Karla +Sheryl +Virginia +Jamie +Shawna +Tami +Kelli +Lorraine +Nicole +Victoria +Dianna +Loretta +Tonya +Charlotte +Judith +Rachel +Regina +Rita +Yvette +Cathy +Darla +Gail +Marie +Dianne +Elaine +Erin +Jana +Jessica +Joan +Joy +Lynette +Maureen +Penny +Rose +Shauna +Shawn +Sonya +Audrey +Phyllis +Sandy +Helen +Joanne +Lana +Martha +Samantha +Sylvia +Amanda +Candace +Charlene +Irene +Jean +Joyce +Kimberley +Rosemary +Teri +Bridget +Danielle +Jolene +Juanita +Kari +Kellie +Nadine +Sally +Shirley +Vickie +Christy +Kelley +Marla +Robyn +Shari +Tara +Tiffany +Angie +Frances +Jane +Kendra +Kirsten +Pam +Celeste +Constance +Dorothy +Jo +Lora +Patty +Ramona +Sherrie +Suzette +Tammie +Terry +Alice +Amber +Danette +Debora +Ellen +Glenda +Janelle +Jenny +Josephine +Lorrie +Lynda +Molly +Norma +Sue +Yolanda +Allison +Betty +Carmen +Caroline +Doris +Joanna +Joni +Kris +Marlene +Paige +Ruby +Stacie +Tracie +Angelina +Arlene +Cheri +Darcy +Deann +Dena +Doreen +Eileen +Jeri +Kay +Kimberlee +Krista +Kristy +Leah +Pauline +Rochelle +Trisha +Alicia +Audra +Belinda +Billie +Cari +Cherie +Chris +Felicia +Gayle +Jami +Janine +Katrina +Leann +Lesley +Lydia +Roxanne +Shanna +Susie +Wanda +Adrienne +Brooke +Corinne +Desiree +Eva +Ginger +Grace +Jan +Janette +Jennie +June +Kerry +Lauri +Marcia +Marjorie +Monique +Sonia +Staci +Susanne +Alisa +Alison +Bobbi +Cathleen +Deana +Deanne +Francine +Georgia +Gretchen +Jeannie +Kara +Keri +Lauren +Lynnette +Nina +Shana +Sonja +Trina +Vivian +Beatrice +Dee +Dina +Dolores +Dora +Erica +Geraldine +Gwendolyn +Janell +Jerri +Karin +Kristie +Lara +Lorie +Marilyn +Marsha +Mona +Nora +Rene +Tamera +Tonja +Vera +Vicky +Angel +Bobbie +Camille +Cara +Christie +Clara +Claudia +Colette +Collette +Corina +Danna +Dayna +Emily +Faith +Hope +Jeanne +Jeannette +Jeannine +Jodie +Kathrine +Kerri +Lea +Leanne +Lena +Lorri +Lucy +Marcie +Marcy +Margie +Maryann +Meredith +Misty +Nanette +Nikki +Patti +Polly +Rachelle +Sophia +Terrie +Therese +Vanessa +Wendi +Betsy +Carole +Cecilia +Christi +Claire +Diann +Edith +Elisabeth +Ella +Genevieve +Ida +Ingrid +Isabel +Jacquelyn +Joell +Ladonna +Laurel +Leigh +Lesa +Malinda +Marci +Margo +Marion +Marisa +Maxine +Megan +Mindy +Miriam +Naomi +Noreen +Paulette +Sharla +Shelli +Tamra +Tawnya +Trudy +Agnes +Ana +Annie +Ashley +Bernice +Bertha +Callie +Candy +Cassie +Cindi +Daphne +Deena +Devon +Eleanor +Elisa +Esther +Evelyn +Florence +Gerri +Hazel +Holli +James +Janis +Janna +Jayne +Jeanine +Jessie +Joanie +Joelle +Joleen +Kathi +Kimber +Lanette +Lee +Libby +Lois +Lorna +Louise +Lucinda +Lynne +Marcella +Marian +Marnie +Myra +Priscilla +Rhoda +Sabrina +Selena +Sharlene +Sherie +Shonda +Sondra +Stefanie +Tammi +Tasha +Tonia +Verna +Vonda +Michelle +Lisa +Kimberly +Julie +Jennifer +Mary +Susan +Laura +Karen +Lori +Brenda +Tammy +Christine +Kelly +Stephanie +Amy +Tina +Sandra +Patricia +Cynthia +Wendy +Deborah +Melissa +Elizabeth +Pamela +Angela +Linda +Denise +Rebecca +Rhonda +Dawn +Cheryl +Andrea +Donna +Barbara +Tracy +Teresa +Kathleen +Jill +Nancy +Kim +Gina +Debra +Carol +Leslie +Christina +Paula +Theresa +Cindy +Shannon +Heather +Renee +Sharon +Shelly +Stacey +Kathy +Sheila +Valerie +Diana +Diane +Kristin +Maria +Kristen +Ann +Dana +Janet +Margaret +Sherry +Terri +Debbie +Suzanne +Kristine +Monica +Annette +Heidi +Michele +Katherine +Kathryn +Anne +Catherine +Sarah +Robin +Sherri +Tamara +Kristi +Carrie +Connie +Holly +Laurie +Sheri +April +Beth +Jacqueline +Regina +Tracey +Anna +Carla +Tonya +Ronda +Jodi +Deanna +Shelley +Tanya +Veronica +Stacy +Victoria +Yvette +Becky +Cheri +Vicki +Judy +Lynn +Melinda +Yvonne +Colleen +Jody +Kristina +Julia +Anita +Carolyn +Melanie +Vickie +Bernadette +Bonnie +Kari +Traci +Crystal +Shawna +Sheryl +Jamie +Kelli +Erin +Jackie +Judith +Jessica +Loretta +Lynette +Natalie +Kelley +Roberta +Sabrina +Sara +Shari +Tiffany +Tracie +Charlotte +Dena +Gail +Jeanette +Joyce +Kimberley +Nicole +Penny +Rita +Robyn +Ruth +Betty +Beverly +Gloria +Jean +Kristy +Marie +Marla +Martha +Molly +Tami +Bridget +Ellen +Frances +Jane +Kerry +Melody +Rachel +Sandy +Shawn +Alice +Cathy +Darla +Peggy +Rene +Teri +Yolanda +Alicia +Karla +Darlene +Leann +Shauna +Charlene +Darcy +Dorothy +Joan +Joann +Josephine +Kirsten +Lara +Samantha +Shirley +Terry +Toni +Virginia +Elaine +Felicia +Janice +Kendra +Lana +Leah +Lorraine +Monique +Rochelle +Rose +Tammie +Amanda +Irene +Jana +Joy +Kellie +Kerri +Sonja +Vicky +Audra +Candace +Caroline +Christi +Jeri +Jodie +Marcia +Marilyn +Misty +Roxanne +Sonia +Vanessa +Cherie +Christie +Christy +Danielle +Deana +Dianna +Emily +Helen +Janelle +Jenny +Karin +Lorie +Nikki +Sally +Sonya +Suzette +Wendi +Allison +Carmen +Dina +Jo +Kara +Krista +Sherrie +Angie +Audrey +Bobbi +Celeste +Desiree +Doreen +Geraldine +Gretchen +Jeanne +Kris +Lora +Lynda +Marlene +Maureen +Paige +Tara +Trina +Amber +Clara +Danette +Debora +Ginger +Janine +Joanne +Jolene +Lee +Lynne +Norma +Shanna +Sondra +Staci +Stacie +Stefanie +Sue +Chris +Deanne +Dianne +Eileen +Elisa +Eva +Jerri +June +Katrina +Kimberlee +Kristie +Lea +Leanne +Leigh +Marci +Marjorie +Mindy +Pauline +Rachelle +Rae +Tonja +Tricia +Trisha +Wanda +Adrienne +Aimee +Belinda +Billie +Cara +Cari +Dolores +Erika +Juanita +Mandy +Ramona +Ruby +Sylvia +Trudy +Alisa +Antoinette +Arlene +Cassandra +Cathleen +Deann +Erica +Glenda +Hope +Jami +Jeannie +John +Lydia +Michael +Mitzi +Pam +Patti +Patty +Polly +Renae +Saundra +Shelli +Starla +Stella +Tammi +Tonia +Valarie +Alison +Annie +Ashley +Bernice +Betsy +Claudia +Colette +Constance +Jacquelyn +Janette +Jeannette +Jeannine +Joni +Kami +Karyn +Lena +Louise +Lynnette +Malinda +Margo +Marsha +Megan +Melisa +Michell +Mona +Nanette +Rosemary +Susanne +Tamera +Therese +Ursula +Vivian +Alana +Amie +Angelina +Bobbie +Brigitte +Christa +Cindi +Deidre +Delores +Elisabeth +Emma +Francine +Gena +Geri +Ingrid +Janis +Jayme +Kay +Lois +Lorna +Marnie +Myra +Nadine +Nichelle +Patsy +Priscilla +Rosalie +Roxann +Shana +Shelia +Shellie +Susie +Tabatha +Tamra +Thomas +Vonda +Alberta +Alma +Brandi +Buffy +Candice +Carri +Casey +Cecilia +Chandra +Christian +Christiana +Corina +Courtney +Cristina +Dara +Dee +Della +Dixie +Dora +Doris +Ernestina +Esther +Eugenia +Gayle +Gerri +Grace +Greta +Janell +Janna +Jeanie +Jeanine +Jenifer +Jennie +Joelle +Katie +Lanette +Lauren +Lillian +Lorrie +Lucinda +Machelle +Marcie +Mari +Marian +Marni +Martina +Maura +Miranda +Miriam +Missy +Nina +Nora +Phyllis +Rosemarie +Tana +Tiffani +Velma +Michelle +Lisa +Kimberly +Jennifer +Laura +Julie +Amy +Christine +Stephanie +Kelly +Susan +Tammy +Mary +Wendy +Angela +Melissa +Cynthia +Karen +Dawn +Lori +Rebecca +Brenda +Denise +Tina +Pamela +Patricia +Cheryl +Elizabeth +Christina +Deborah +Sandra +Tracy +Paula +Rhonda +Shannon +Donna +Andrea +Linda +Teresa +Jill +Heather +Debra +Robin +Barbara +Gina +Kathleen +Renee +Sharon +Sheila +Theresa +Cindy +Stacey +Michele +Carrie +Nancy +Ann +Diane +Heidi +Shelly +Stacy +Suzanne +Leslie +Tonya +Sherri +Catherine +Dana +Kim +Kristine +Monica +Valerie +Carol +Tamara +Diana +Anne +Jacqueline +Kristin +Sarah +Sherry +Annette +Carla +Debbie +Jodi +Laurie +Anna +Katherine +Kathy +Tanya +Terri +Janet +Tracey +Holly +Kelli +Maria +April +Jamie +Kristi +Kristina +Margaret +Melanie +Connie +Kristen +Shelley +Becky +Julia +Shawna +Regina +Sheri +Deanna +Carolyn +Roberta +Crystal +Beth +Kathryn +Lara +Rachel +Anita +Yvonne +Jody +Kimberley +Victoria +Cassandra +Colleen +Judy +Melinda +Samantha +Traci +Alicia +Danielle +Kelley +Kerri +Sara +Sheryl +Veronica +Bernadette +Kari +Vicki +Bonnie +Jeanette +Lynn +Nicole +Peggy +Cathy +Lora +Ronda +Shawn +Yolanda +Amanda +Janice +Penny +Darlene +Judith +Ruth +Cheri +Jane +Kirsten +Kristy +Leah +Gloria +Jackie +Jessica +Martha +Vickie +Christy +Erin +Kerry +Marie +Teri +Yvette +Elaine +Gail +Kellie +Natalie +Rene +Audra +Betty +Jean +Joyce +Karla +Lorraine +Tami +Tiffany +Toni +Tricia +Virginia +Carmen +Ginger +Gretchen +Jodie +Katrina +Lana +Melody +Tara +Bridget +Joy +Loretta +Lorie +Lynette +Ramona +Rose +Wendi +Beverly +Darla +Dorothy +Joann +Joanna +Molly +Sally +Audrey +Caroline +Deana +Desiree +Helen +Jolene +Kristie +Norma +Paige +Phyllis +Rita +Tammie +Wanda +Alice +Allison +Amber +Belinda +Geraldine +Irene +Janelle +Jeanne +Joan +Kendra +Krista +Marla +Misty +Robyn +Shauna +Sherrie +Shirley +Vicky +Charlene +Christi +Dena +Dina +Eileen +Ellen +Erika +Jana +Kara +Marcia +Maureen +Nanette +Alison +Billie +Bobbi +Candace +Darcy +Dianna +Esther +Eva +Joanne +Monique +Rachelle +Tracie +Trina +Vanessa +Antoinette +Bobbie +Brooke +Christie +Emily +Erica +Frances +Gayle +Jo +Juanita +Karin +Lynne +Marcella +Marci +Mindy +Patty +Sonya +Stefanie +Angie +Charlotte +Constance +Deann +Edith +Ladonna +Leigh +Marilyn +Marlene +Raquel +Rochelle +Sandy +Sue +Tia +Ingrid +Janine +Keri +Lee +Marianne +Megan +Mona +Renae +Ruby +Sabrina +Shari +Sonja +Stacie +Susanne +Suzette +Terry +Trisha +Anissa +Candice +Cherie +Claudia +Doreen +Felicia +Janel +Jeannie +Jerri +Josette +Kris +Leanne +Lorrie +Lynda +Lynnette +Marina +Michaele +Naomi +Nina +Pam +Priscilla +Richelle +Sylvia +Tammi +Aimee +Angel +Angelina +Bridgette +Courtney +Dawna +Deanne +Dee +Deidre +Elisa +Evelyn +Faith +Grace +Jami +Jenny +Joni +Josephine +Katie +Kay +Leann +Leona +Lucy +Mitzi +Rachael +Rosemary +Sandi +Shana +Vivian +Angelique +Arlene +Cara +Carin +Carole +Charla +Chris +Cristina +Debora +Elisabeth +Glenda +Jenifer +Jennie +Jonna +Judi +Kimberlee +Lorri +Lydia +Marcy +Nora +Rosa +Sonia +Sophia +Tamera +Tania +Trudy +Valarie +Valorie +Ana +Athena +Carey +Cari +Chandra +Christa +Clara +Coleen +Corina +Corinne +Dianne +Dionne +Dolores +Doris +Gwendolyn +Hope +Jacquelyn +Juliana +Kerrie +Lea +Lena +Lesley +Louise +Lucinda +Margarita +Marisa +Marni +Marsha +Nadine +Noelle +Patrice +Paulette +Pauline +Pearl +Rae +Roxanne +Shanda +Shelli +Shonna +Tamra +Tana +Therese +Tonia +Adrienne +Amelia +Angelia +Bambi +Bernadine +Brandy +Candy +Caren +Carri +Cathleen +Celeste +Cherry +Chrystal +Cindi +Danelle +Danette +Danna +Deena +Deirdre +Delores +Denice +Ida +Joetta +Johanna +Karrie +Lillian +Louann +Lucille +Mandy +Mara +Margie +Marian +Marnie +Maxine +Melisa +Misti +Nanci +Pamala +Patsy +Polly +Randi +Rena +Rosalie +Roxann +Shellie +Sondra +Staci +Terrie +Whitney +Michelle +Lisa +Jennifer +Kimberly +Amy +Julie +Laura +Melissa +Stephanie +Tammy +Christine +Susan +Kelly +Lori +Mary +Dawn +Shannon +Tracy +Angela +Tina +Heather +Rebecca +Wendy +Karen +Pamela +Brenda +Patricia +Elizabeth +Christina +Sandra +Cynthia +Denise +Andrea +Deborah +Linda +Stacey +Heidi +Jill +Kathleen +Rhonda +Cheryl +Barbara +Paula +Nicole +Renee +Michele +Monica +Theresa +Donna +Teresa +Leslie +Deanna +Dana +Kristin +Valerie +Debra +Tamara +Shelly +Cindy +Carol +Gina +Nancy +Holly +Katherine +Robin +Stacy +Rachel +Kathy +Suzanne +Diane +Sharon +Jacqueline +Jodi +Sarah +Carrie +Kim +Sherri +Tara +Tonya +Sheila +Annette +Kelli +Laurie +Maria +Tanya +Ann +Terri +Kristen +Carolyn +Diana +Catherine +Kellie +Tracey +Margaret +Anna +Kristi +Melanie +Shelley +Tricia +Victoria +Debbie +Janet +Sheri +Connie +Jamie +Melinda +Roberta +Sherry +Anne +Becky +Julia +Kristine +Beth +Traci +April +Shawna +Veronica +Danielle +Bonnie +Erin +Regina +Sara +Vicki +Kristina +Lara +Colleen +Peggy +Christy +Crystal +Carla +Anita +Bernadette +Gail +Kirsten +Natalie +Tiffany +Yvonne +Darlene +Kathryn +Robyn +Kerry +Marla +Jessica +Jody +Tracie +Cathy +Kari +Karla +Lynette +Sheryl +Ronda +Rose +Tami +Toni +Yolanda +Alicia +Audrey +Charlene +Cheri +Janice +Judy +Melody +Penny +Yvette +Ginger +Jackie +Leah +Marie +Shauna +Vanessa +Vickie +Amanda +Charlotte +Dianna +Juanita +Judith +Kimberley +Samantha +Stacie +Audra +Dena +Joanna +Joyce +Krista +Raquel +Rene +Shawn +Erika +Katrina +Trina +Trisha +Beverly +Dina +Helen +Joy +Kendra +Lynn +Monique +Rochelle +Eva +Kara +Karin +Kerri +Kristy +Marci +Sonya +Tammie +Terry +Virginia +Allison +Amber +Antoinette +Betty +Danette +Jenny +Joann +Jodie +Lorraine +Marcia +Megan +Mindy +Ramona +Ruth +Sabrina +Sandy +Teri +Alice +Caroline +Desiree +Janelle +Keri +Lorie +Lucinda +Shari +Staci +Bobbie +Carmen +Elaine +Erica +Joan +Kelley +Kimberlee +Lesley +Marlene +Misty +Nadine +Rita +Roxanne +Aimee +Candace +Cassandra +Felicia +Frances +Gretchen +Jeanne +Leigh +Marcella +Martha +Shana +Sonja +Tonia +Bridget +Doreen +Glenda +Jean +Jeanette +Jolene +Lora +Loretta +Molly +Rachelle +Stefanie +Tia +Alisa +Alison +Candice +Candy +Cherie +Dionne +Janine +Kerrie +Kristie +Meredith +Mona +Paige +Pauline +Sylvia +Wendi +Belinda +Billie +Brooke +Constance +Darla +Deanne +Doris +Emily +Jami +Katie +Leann +Leanne +Lee +Norma +Sally +Shirley +Vicky +Brandi +Chandra +Clara +Claudia +Cristina +Gayle +Geraldine +Jana +Jane +Janette +Jeanine +Laurel +Maureen +Michael +Terrie +Angel +Angie +Celeste +Deena +Ellen +Esther +Georgia +Hope +Jeannette +Jeri +Jo +Joanne +June +Lea +Lorrie +Lynda +Marcy +Marsha +Nikki +Rachael +Rosemary +Serena +Shannan +Sherrie +Tammi +Angelina +Colette +Courtney +Danelle +Darcy +Dee +Dianne +Dolores +Dorothy +Eileen +Joelle +Josephine +Lana +Leeann +Lois +Lynnette +Marcie +Melisa +Naomi +Penelope +Phyllis +Selena +Shellie +Tamra +Tonja +Alexandra +Annmarie +Brandy +Bridgette +Cara +Caryn +Christie +Cindi +Corina +Deana +Debora +Deedee +Denice +Elena +Gloria +Grace +Hollie +Jeannie +Jenifer +Johnna +Josette +Kay +Kimberli +Lauren +Leona +Louise +Lucy +Margie +Michaela +Pam +Sandi +Shelli +Sophia +Susanne +Suzette +Tabitha +Vivian +Bethany +Cari +Cassie +Cathleen +Cecilia +Christa +Christi +Chrystal +Coleen +Corinne +Daphne +David +Dayna +Devon +Francine +Genevieve +Gwendolyn +Hilary +Irene +Janeen +Jerri +Joni +Juliana +Justine +Karyn +Ladonna +Lanette +Lesa +Lynne +Margo +Marilyn +Marjorie +Marlo +Marnie +Miriam +Nichole +Nora +Richelle +Sonia +Susie +Tabatha +Adrienne +Aileen +Amie +Ana +Andra +Anette +Angelique +Anissa +Betsy +Camille +Casandra +Catrina +Chantelle +Charla +Cinnamon +Cristine +Darci +Deidra +Elisabeth +Elise +Emma +Gabrielle +Geneva +Gwen +Hillary +Iris +Janel +Jocelyn +Joey +Jona +Kami +Karie +Karrie +Katharine +Kaylene +Kirstin +Kris +Leanna +Lena +Letitia +Lorena +Lorna +Lorri +Luann +Lydia +Malinda +Maxine +Mia +Myra +Olga +Patti +Paulette +Rebekah +Rosa +Shani +Shanna +Shanon +Verna +Wanda +Jennifer +Michelle +Lisa +Kimberly +Amy +Heather +Julie +Melissa +Shannon +Stephanie +Angela +Laura +Dawn +Tammy +Christine +Mary +Lori +Tracy +Wendy +Susan +Brenda +Karen +Nicole +Elizabeth +Denise +Kelly +Pamela +Tina +Cynthia +Rebecca +Andrea +Christina +Patricia +Sandra +Heidi +Stacy +Kristin +Sarah +Teresa +Stacey +Deborah +Monica +Holly +Tanya +Carrie +Jill +Katherine +Donna +Cheryl +Gina +Tamara +Renee +Debra +Linda +Valerie +Paula +Rhonda +Dana +Kathleen +Erin +Nancy +Tara +Barbara +Robin +Shelly +Theresa +Leslie +Cindy +Rachel +Ann +Michele +Sharon +Anna +Catherine +Tonya +Carol +Kristen +Diane +Sherry +Maria +Melinda +Regina +Deanna +Kelli +Jodi +Kristina +Kristine +Carla +Laurie +Melanie +Shawna +Suzanne +April +Jacqueline +Jody +Kristi +Sheila +Tricia +Diana +Jamie +Jessica +Tiffany +Victoria +Carolyn +Kathryn +Kim +Sara +Traci +Anne +Janet +Krista +Margaret +Tracey +Becky +Kathy +Veronica +Connie +Kari +Annette +Beth +Danielle +Kirsten +Marie +Christy +Terri +Deana +Sabrina +Sheri +Bonnie +Colleen +Kristy +Erica +Lynn +Natalie +Shelley +Sherri +Amanda +Crystal +Julia +Vicki +Yvette +Debbie +Amber +Anita +Audrey +Gloria +Kendra +Sheryl +Tami +Tammie +Virginia +Allison +Roberta +Toni +Trina +Gail +Kellie +Stacie +Jeanette +Lara +Yolanda +Erika +Joyce +Samantha +Tracie +Cassandra +Cheri +Janelle +Kerri +Lynette +Yvonne +Emily +Jackie +Joy +Juanita +Kara +Lee +Robyn +Shana +Aimee +Alicia +Alisa +Antoinette +Darlene +Dina +Gretchen +Joann +Karla +Leah +Mindy +Peggy +Shauna +Adrienne +Darla +Elaine +Jenny +Judy +Kimberley +Kristie +Leann +Lorraine +Megan +Penny +Sally +Angie +Beverly +Dena +Dianna +Lora +Melody +Monique +Ronda +Alison +Bernadette +Bobbie +Cathy +Kelley +Molly +Roxanne +Sonya +Staci +Teri +Angel +Betty +Brooke +Candice +Caroline +Charlene +Danette +Deann +Ellen +Jean +Katrina +Loretta +Marla +Raquel +Rose +Stefanie +Tonia +Vanessa +Audra +Desiree +Jodie +Karin +Kerry +Misty +Rachelle +Ramona +Tammi +Brandi +Cherie +Christa +Elisa +Jane +Marci +Sandy +Shirley +Sonja +Sylvia +Tamra +Wendi +Angelina +Belinda +Bridget +Carmen +Christie +Frances +Janice +Jeanne +Jo +Joanna +Judith +Keri +Martha +Nikki +Paulette +Shawn +Billie +Bobbi +Cari +Glenda +Jana +Jeannie +Joanne +Marlene +Nichole +Renae +Shari +Vickie +Angelique +Candace +Darcy +Deanne +Eileen +Hilary +Jeanine +Joan +June +Lana +Marsha +Maureen +Natasha +Rochelle +Ruth +Shanna +Trisha +Alice +Brandy +Cara +Carey +Courtney +Dorothy +Felicia +Geraldine +Ginger +Janell +Jenifer +Jeri +Juliet +Lauren +Lena +Malinda +Marlo +Marnie +Nina +Norma +Rene +Arlene +Camille +Christi +Deena +Jacquelyn +Jennie +Kris +Krystal +Leigh +Lorie +Marilyn +Meredith +Paige +Rebekah +Tamera +Vicky +Alissa +Bridgette +Candy +Charity +Charlotte +Denice +Dianne +Geri +Irene +Jami +Justine +Lauri +Lydia +Lynda +Lynnette +Pauline +Polly +Rita +Rosa +Shellie +Sonia +Terrie +Tia +Alyssa +Carole +Cathleen +Colette +Constance +Cori +Cristina +Evelyn +Francine +Gwendolyn +Isabel +Janine +Jolene +Joni +Josette +Juli +Karri +Karyn +Katie +Kimberlee +Laurel +Lucinda +Marcella +Marcie +Marcy +Mona +Nanette +Patrice +Patti +Rachael +Rena +Serena +Trudy +Carissa +Cecilia +Celeste +Chris +Claudine +Dawna +Esther +Gayle +Hope +Jeannette +Jonna +Kandi +Kathrine +Larissa +Leona +Lesley +Lorna +Marcia +Margo +Marni +Michell +Nadine +Phyllis +Reva +Rosemary +Ruby +Serina +Shani +Shelby +Tasha +Terra +Terry +Tonja +Wanda +Abby +Abigail +Annie +Betsy +Chanda +Chandra +Collette +Corinna +Cory +Darcie +Debora +Dee +Deidre +Della +Devon +Dionne +Doris +Edith +Grace +Gwen +Helen +Hillary +Janel +Jerri +Johnna +Joleen +Josephine +Judi +Julianne +Kirstin +Lea +Lorena +Lorrie +Marjorie +Misti +Racquel +Richelle +Sandi +Shannan +Sophia +Sue +Tabitha +Tania +Therese +Tiffani +Tobi +Tori +Ursula +Adrianne +Alexandra +Amie +Ana +Angelica +Anjanette +Annmarie +Aurora +Beatrice +Bernice +Bertha +Brenna +Brittany +Cassie +Chantelle +Charmaine +Christel +Christopher +Claudia +Corrine +Daisy +Danita +Danna +Davina +Dayna +Delores +Dolores +Dora +Eleanor +Ernestine +Eve +Gabrielle +Gena +Genevieve +Georgia +Janette +Jeannine +Jenni +Joely +Joseph +Juliann +Katharine +Kendall +Kindra +Kyla +Ladonna +Lanette +Lavonne +Leanna +Lesa +Lillian +Liza +Luann +Marianne +Meghan +Miriam +Naomi +Nora +Pam +Priscilla +Rae +Rosemarie +Shelia +Shelli +Sherrie +Starla +Stella +Susanne +Tamatha +Thea +Valorie +Verna +Vivian +Jennifer +Michelle +Lisa +Kimberly +Amy +Heather +Melissa +Angela +Stephanie +Shannon +Tammy +Julie +Rebecca +Laura +Mary +Dawn +Andrea +Christine +Lori +Tracy +Susan +Nicole +Tina +Elizabeth +Kelly +Christina +Karen +Wendy +Brenda +Stacy +Sandra +Cynthia +Denise +Carrie +Patricia +Holly +Pamela +Teresa +Heidi +Deborah +Sarah +Dana +Robin +Renee +Katherine +Stacey +Jill +Michele +Monica +Shelly +Tanya +Tamara +April +Gina +Jessica +Linda +Kristin +Cindy +Erin +Rachel +Rhonda +Debra +Cheryl +Tara +Theresa +Kathleen +Nancy +Crystal +Sharon +Shawna +Donna +Kristi +Melanie +Tiffany +Tonya +Paula +Ann +Barbara +Jodi +Valerie +Deanna +Kristine +Leslie +Kristen +Sheila +Jamie +Diana +Catherine +Diane +Kristina +Maria +Sara +Regina +Melinda +Anna +Kari +Stacie +Sherry +Amanda +Danielle +Carol +Erica +Natalie +Suzanne +Victoria +Toni +Julia +Kim +Sheri +Sherri +Alicia +Anne +Terri +Traci +Beth +Bonnie +Carla +Jody +Veronica +Amber +Annette +Carolyn +Laurie +Tracey +Christy +Kara +Kelli +Jacqueline +Janet +Kathryn +Margaret +Aimee +Kristy +Kendra +Samantha +Anita +Kathy +Tracie +Tricia +Krista +Molly +Trina +Colleen +Debbie +Kirsten +Marie +Sabrina +Shelley +Brandy +Cathy +Erika +Jenny +Nikki +Katrina +Kristie +Becky +Cassandra +Kerri +Lynn +Roberta +Tami +Vicki +Allison +Charlene +Connie +Jeanette +Megan +Misty +Yolanda +Candace +Carmen +Elaine +Felicia +Gretchen +Kimberley +Lora +Mindy +Sonya +Staci +Teri +Joann +Juanita +Karla +Keri +Kerry +Leah +Shauna +Candice +Janice +Natasha +Alison +Bernadette +Charlotte +Cheri +Gloria +Jackie +Janelle +Monique +Roxanne +Yvette +Ashley +Brandi +Cherie +Darlene +Lara +Martha +Nina +Peggy +Rachelle +Shawn +Sylvia +Vanessa +Yvonne +Christa +Dina +Emily +Jean +Jenifer +Penny +Rene +Ronda +Sandy +Shari +Shirley +Virginia +Antoinette +Dena +Jolene +Joyce +Judith +Katie +Lesley +Marci +Ramona +Rita +Robyn +Shana +Sheryl +Wendi +Angelique +Belinda +Beverly +Christie +Danette +Frances +Gail +Rochelle +Rose +Ruth +Sherrie +Sonja +Tammi +Tammie +Tania +Tonia +Vickie +Angel +Bobbie +Bridget +Dianna +Ginger +Jacquelyn +Jane +Joy +Leann +Loretta +Marcy +Meredith +Nichole +Norma +Alisa +Angie +Cara +Carey +Chandra +Jana +Kellie +Lana +Laurel +Lynda +Melody +Naomi +Priscilla +Trisha +Audrey +Bobbi +Celeste +Desiree +Gwendolyn +Irene +Jami +Janette +Jo +Kelley +Lorraine +Lynette +Misti +Sonia +Audra +Brooke +Jodie +Judy +June +Mara +Pauline +Sally +Shanna +Stefanie +Tasha +Tawnya +Betty +Candy +Claudia +Dionne +Glenda +Hope +Jeanine +Jeannie +Leigh +Lorie +Marcie +Marilyn +Marlene +Marsha +Maureen +Rachael +Terry +Tisha +Amelia +Autumn +Chantel +Charity +Corina +Courtney +Deana +Doreen +Eileen +Elisa +Joan +Joanna +Kimberlee +Lea +Lee +Leticia +Lynnette +Marjorie +Marla +Ranee +Shantel +Shellie +Annie +Antonia +Billie +Buffy +Cecilia +Darcy +Dayna +Deann +Dee +Dorothy +Francine +Geraldine +Janell +Jenna +Jennie +Jeri +Johanna +Josephine +Karin +Kris +Lauren +Lorrie +Lydia +Mandy +Marcia +Margarita +Marianne +Michael +Nanette +Paige +Rae +Raquel +Ruby +Adrienne +Angelic +Angelina +Antionette +Caroline +Cathleen +Christi +Christin +Coleen +Corrie +Danelle +Daphne +Davina +Deena +Edith +Eva +Florence +Gayle +Hannah +Jeannine +Joanne +Kerrie +Larissa +Paulette +Renae +Shanon +Shelli +Sophia +Tamra +Tera +Wanda +Adria +Alisha +Anissa +Anjanette +Bridgette +Candida +Constance +Cori +Corinne +Darla +Elena +Emma +Ericka +Gabrielle +Isabel +Janel +Janine +Janna +Jeanna +Jeanne +Jeannette +Jocelyn +Juli +Karrie +Kimberli +Lauri +Leanne +Lena +Lois +Louise +Margo +Miranda +Missy +Pamala +Patrice +Shelby +Stacia +Suzette +Terra +Verna +Abigail +Alexis +Alice +Allyson +Alyssa +Angelica +Angella +Annemarie +Bernice +Bertha +Brandie +Brenna +Candi +Carin +Cary +Caryn +Cassie +Chris +Claire +Colette +Cory +Cristina +Danna +Deanne +Deedee +Deidre +Dolores +Dori +Elisabeth +Eve +Faith +Gena +Geneva +Georgia +Gillian +Grace +Gwen +Helen +Hollie +Irma +Ivy +John +Joni +Josie +Juliana +Julianna +Justine +Kandi +Karri +Kathi +Kathie +Kathrine +Keli +Krystal +Lachelle +Ladonna +Leanna +Lorena +Lucinda +Lupe +Marina +Marnie +Maryann +Mona +Nora +Patty +Rena +Renea +Richelle +Robbin +Rosa +Sondra +Susanne +Tabitha +Vicky +Jennifer +Michelle +Amy +Lisa +Heather +Kimberly +Melissa +Stephanie +Angela +Nicole +Julie +Christine +Shannon +Tammy +Rebecca +Laura +Christina +Andrea +Tracy +Elizabeth +Mary +Sarah +Tina +Dawn +Lori +Brenda +Kelly +Karen +Susan +Wendy +Cynthia +Melanie +Jessica +Tanya +Denise +April +Heidi +Rachel +Sandra +Patricia +Stacey +Tara +Kristin +Deborah +Carrie +Dana +Paula +Stacy +Holly +Renee +Erin +Gina +Jill +Robin +Monica +Tiffany +Michele +Tamara +Katherine +Linda +Tonya +Catherine +Donna +Pamela +Maria +Sara +Shawna +Shelly +Teresa +Kathleen +Leslie +Cheryl +Debra +Valerie +Crystal +Barbara +Kristi +Anna +Diana +Natalie +Amanda +Sharon +Sherry +Kristina +Jodi +Amber +Brandi +Kristine +Victoria +Erica +Melinda +Sheila +Theresa +Alicia +Jamie +Rhonda +Deanna +Nancy +Samantha +Kendra +Kristen +Suzanne +Cindy +Megan +Anne +Christy +Veronica +Jenny +Kathy +Kari +Margaret +Cassandra +Misty +Brandy +Tricia +Aimee +Carol +Kerri +Kim +Terri +Jody +Sherri +Toni +Traci +Anita +Connie +Erika +Laurie +Angel +Ann +Annette +Danielle +Emily +Janet +Kathryn +Katrina +Trina +Allison +Desiree +Diane +Nichole +Regina +Bernadette +Kara +Krista +Nikki +Vanessa +Yolanda +Yvonne +Beth +Bonnie +Carolyn +Charlene +Shelley +Stacie +Brooke +Charlotte +Jenifer +Tracey +Alison +Kristy +Marie +Roberta +Becky +Juanita +Kelli +Leah +Lynn +Sabrina +Sonja +Tami +Bridget +Carla +Lara +Rose +Sheri +Angie +Debbie +Gretchen +Jeanette +Joanna +Kerry +Lynette +Rita +Sonya +Candice +Cheri +Robyn +Wendi +Yvette +Alisa +Beverly +Billie +Carmen +Christa +Colleen +Jackie +Jacqueline +Julia +Kristie +Molly +Ruth +Shana +Audra +Dorothy +Ericka +Jami +Janelle +Penny +Renae +Staci +Tammie +Tracie +Antoinette +Audrey +Candace +Chandra +Cherie +Danette +Janice +Joy +Katina +Kelley +Kellie +Kirsten +Naomi +Peggy +Rachael +Sandy +Shauna +Teri +Deana +Ginger +Joann +Jodie +Keri +Marcia +Mindy +Natasha +Rochelle +Shawn +Sylvia +Trisha +Ashley +Courtney +Dena +Dina +Frances +Jeannie +Kimberley +Lora +Melody +Rachelle +Raquel +Tonia +Alexandra +Angelina +Bobbie +Cathy +Felicia +Gail +Gloria +Josephine +Karla +Loretta +Monique +Nina +Norma +Shari +Sheryl +Virginia +Alice +Casey +Darlene +Jana +Jane +Judy +Leanne +Lesley +Marcy +Martha +Nadine +Rene +Belinda +Bobbi +Candy +Celeste +Dianna +Jean +Joyce +Marcie +Marla +Meredith +Nanette +Shanna +Stefanie +Tammi +Brittany +Charmaine +Cory +Elaine +Helen +Jeannette +Jennie +Kimberlee +Laurel +Leona +Lorrie +Marlene +Melisa +Nora +Priscilla +Ronda +Sondra +Tabitha +Vicki +Wanda +Adrienne +Ana +Antonia +Bethany +Cara +Chanda +Chantel +Charity +Christi +Darcy +Eva +Josette +Karin +Katie +Lana +Louise +Lucinda +Lynda +Lynnette +Marci +Marnie +Marsha +Miriam +Pauline +Ramona +Rebekah +Roxanne +Sally +Sherrie +Sonia +Tonja +Angelica +Camille +Caroline +Caryn +Catina +Cher +Darla +Deann +Deena +Eileen +Ellen +Gwendolyn +Ivy +Jo +Jolene +June +Kami +Karrie +Leann +Leigh +Lorie +Mandy +Marianne +Meghan +Paulette +Ruby +Serena +Shanda +Tania +Tawnya +Amie +Angelique +Cari +Cathleen +Coleen +Danna +Della +Denice +Dionne +Dolores +Eve +Gabrielle +Hannah +Hilary +Hope +Irene +Johanna +Julianne +Lee +Lorena +Malinda +Marcella +Margo +Maureen +Rosemary +Shiela +Shirley +Shonna +Tamra +Tanisha +Valarie +Alana +Antonette +Bridgette +Brook +Carie +Carissa +Cassie +Chantelle +Christin +Claudia +Constance +Corey +Cori +Delores +Doris +Dusty +Eleanor +Elena +Elisa +Esther +Gena +Grace +Jacquelyn +Janel +Janell +Janna +Jason +Jayme +Jeanine +Jeannine +Jenni +Jeri +Joan +Joanne +Joey +Judith +Juliana +Justine +Kathrine +Kerrie +Lauri +Lorraine +Mara +Michael +Misti +Nicola +Olga +Richelle +Shelby +Shellie +Starla +Susie +Tabatha +Terry +Tia +Ursula +Alisha +Alissa +Alma +Alyson +Andra +Angelic +Antionette +Betsy +Brandee +Brenna +Britt +Candi +Carri +Casandra +Cassondra +Cecilia +Charla +Cinnamon +Consuelo +Cristina +Dawna +Dora +Elsa +Faith +Fawn +Fiona +Gayla +Gayle +Genevieve +Georgia +Gidget +Ingrid +Jonna +Josie +Kenya +Krystal +Lea +Lena +Lucia +Lucille +Lynne +Malissa +Mari +Marina +Marne +Mechelle +Mona +Nicol +Nicolle +Paige +Robert +Rosa +Rosita +Sandi +Selena +Shantel +Shelli +Silvia +Summer +Susanna +Susanne +Tamera +Tasha +Terra +Tessa +Tiffani +Tiffiny +Tisha +Tori +Trista +Trudy +Vicky +Windy +Jennifer +Michelle +Amy +Heather +Lisa +Melissa +Stephanie +Kimberly +Angela +Rebecca +Nicole +Julie +Christine +Laura +Shannon +Andrea +Christina +Dawn +Sarah +Elizabeth +Tammy +Jessica +Kelly +Tina +Stacey +Mary +Tara +Wendy +Brenda +Tracy +Stacy +Denise +Heidi +Susan +Tanya +Karen +Holly +Lori +Cynthia +April +Carrie +Crystal +Erin +Patricia +Tamara +Melanie +Amanda +Monica +Teresa +Tiffany +Katherine +Rachel +Danielle +Kristin +Pamela +Sandra +Robin +Renee +Theresa +Tonya +Dana +Maria +Catherine +Linda +Kristina +Misty +Anna +Jill +Michele +Deborah +Victoria +Sheila +Kathleen +Kristen +Leslie +Valerie +Brandy +Paula +Sara +Amber +Gina +Erica +Barbara +Jamie +Kendra +Kristine +Donna +Brandi +Kathryn +Jodi +Shelly +Cheryl +Deanna +Emily +Kristi +Christy +Rhonda +Shawna +Alicia +Ann +Cindy +Diana +Krista +Melinda +Suzanne +Anne +Jenny +Nancy +Veronica +Debra +Diane +Aimee +Megan +Terri +Jody +Kelli +Toni +Traci +Julia +Katrina +Jacqueline +Janet +Kari +Margaret +Regina +Sharon +Carla +Carol +Stacie +Cassandra +Erika +Kathy +Natalie +Roberta +Kristy +Laurie +Anita +Becky +Bridget +Kim +Nichole +Kirsten +Sheri +Yvonne +Angel +Bonnie +Mindy +Sherri +Tami +Tricia +Yolanda +Annette +Carolyn +Colleen +Connie +Jeanette +Marie +Samantha +Sherry +Tracie +Allison +Antoinette +Frances +Jenna +Joy +Kara +Leah +Lynette +Melody +Robyn +Sonya +Beth +Desiree +Janelle +Keri +Kerri +Kimberley +Lynn +Shelley +Beverly +Billie +Christa +Kerry +Nikki +Stefanie +Vanessa +Alisa +Alison +Angelina +Debbie +Juanita +Molly +Ruth +Sonia +Tracey +Trina +Bernadette +Charity +Joanna +Katina +Kristie +Naomi +Virginia +Candace +Cari +Felicia +Jean +Karla +Kelley +Terra +Ashley +Bobbie +Carey +Caroline +Cathy +Charlotte +Cheri +Christie +Courtney +Dianna +Monique +Rebekah +Sabrina +Sonja +Tisha +Vicki +Yvette +Brooke +Carmen +Darcy +Ginger +Gretchen +Jana +Janice +Katie +Peggy +Rachael +Ramona +Rene +Shari +Vickie +Amie +Audrey +Esther +Gloria +Lara +Martha +Meredith +Rochelle +Rose +Shauna +Tammi +Angelica +Audra +Candice +Casey +Celeste +Janel +Jenifer +Johanna +Judy +Karin +Loretta +Marcia +Natasha +Belinda +Bobbi +Brandie +Camille +Charlene +Chrystal +Elaine +Ericka +Jane +Joyce +Marcella +Marcy +Sally +Shawn +Staci +Teri +Tonia +Candy +Cara +Cherie +Darlene +Deana +Dena +Ellen +Lorraine +Rachelle +Chandra +Chantel +Darla +Elisa +Grace +Hope +Jackie +Jami +Joan +Joann +Lauren +Lora +Marci +Marcie +Marla +Roxanne +Sandy +Shanna +Shelby +Tia +Trisha +Abigail +Adriana +Alice +Alisha +Angie +Antonia +Bethany +Chastity +Claire +Dina +Dionne +Elena +Eva +Hollie +Irene +Joanne +Jodie +Karri +Kellie +Kimberlee +Laurel +Leanne +Mandy +Margo +Marilyn +Nina +Paige +Penny +Shana +Shirley +Sylvia +Tammie +Wanda +Alethea +Ami +Angelique +Autumn +Betsy +Betty +Bridgette +Charmaine +Claudia +Danelle +Deanne +Dorothy +Elisabeth +Elissa +Faith +Gena +Glenda +Janell +Janna +Jason +Jeanne +Joey +Joni +Judith +Kerrie +Lana +Leann +Lena +Louise +Olivia +Renae +Ronda +Ruby +Sherrie +Sheryl +Summer +Suzette +Tabitha +Tania +Wendi +Alexandra +Alyssa +Angelia +Bianca +Brandee +Cecilia +Chanda +Christi +Cody +Danette +Davina +Dixie +Dolores +Gail +Jennie +Johnna +Justine +Kate +Kindra +Lea +Lesley +Lorie +Lynda +Lynnette +Marsha +Maureen +Meghan +Melisa +Miranda +Nadine +Nichol +Niki +Norma +Phyllis +Polly +Rae +Richelle +Rita +Rosa +Shanda +Tonja +Adrienne +Alissa +Anastasia +Charla +Chelsea +Colette +Cori +Daphne +Dayna +Deidre +Dianne +Eileen +Fawn +Gayle +Geraldine +Gidget +Helen +Janie +Jeannie +Jolene +Josephine +Julianne +June +Karrie +Katharine +Kay +Kira +Kirstie +Kisha +Krystal +Leanna +Lee +Leeann +Lesa +Liza +Marnie +Michell +Pauline +Raquel +Rosemary +Selena +Shay +Stella +Terrie +Terry +Ursula +Valarie +Abby +Allyson +Antionette +Billiejo +Briana +Brigitte +Brook +Caren +Carie +Carisa +Carissa +Caryn +Chantell +Chasity +Chloe +Clarissa +Constance +Cory +Cristina +Darcie +Deidra +Delilah +Doris +Esmeralda +Evelyn +Francesca +Geneva +Guadalupe +Gwendolyn +Hilary +Hillary +Iris +Isabel +Jamey +Jan +Janette +Jeannette +Jenni +Jerri +Josie +Kami +Karma +Keisha +Kenna +Kris +Latonya +Lorrie +Mara +Marian +Marina +Marlene +Melodie +Misti +Mona +Olga +Paulette +Priscilla +Rosalie +Sacha +Shaunna +Shonna +Sondra +Stacia +Sue +Susanna +Suzanna +Tanisha +Tasha +Tawnya +Tessa +Trista +Trudy +Vivian +Jennifer +Michelle +Heather +Amy +Melissa +Kimberly +Lisa +Angela +Rebecca +Stephanie +Jessica +Sarah +Christina +Shannon +Nicole +Elizabeth +Julie +Kelly +Laura +Andrea +April +Rachel +Tammy +Christine +Mary +Tanya +Dawn +Patricia +Sara +Tina +Erin +Wendy +Carrie +Susan +Amanda +Tara +Tracy +Heidi +Brenda +Karen +Lori +Amber +Danielle +Melanie +Stacey +Monica +Stacy +Crystal +Jill +Tamara +Denise +Maria +Cynthia +Katherine +Emily +Kristin +Renee +Robin +Sandra +Misty +Anna +Brandy +Kristen +Teresa +Dana +Megan +Tiffany +Victoria +Brandi +Gina +Holly +Kristina +Theresa +Deanna +Pamela +Valerie +Catherine +Deborah +Christy +Kathleen +Shelly +Tonya +Jodi +Kendra +Shawna +Barbara +Paula +Jamie +Leslie +Erica +Kathryn +Natalie +Alicia +Allison +Rhonda +Veronica +Courtney +Michele +Diana +Melinda +Kristi +Suzanne +Margaret +Robyn +Sherry +Cheryl +Cindy +Desiree +Kristine +Anne +Leah +Julia +Nancy +Regina +Sheila +Ann +Brooke +Kara +Linda +Stacie +Becky +Colleen +Connie +Debra +Bonnie +Bridget +Jody +Krista +Sharon +Annette +Carla +Diane +Jenny +Alison +Charlotte +Kirsten +Laurie +Molly +Sheri +Christie +Kari +Kristy +Nichole +Tracey +Vanessa +Jacqueline +Toni +Aimee +Charlene +Joy +Sherri +Tricia +Carolyn +Charity +Jeanette +Kerry +Kim +Candice +Erika +Felicia +Janelle +Janet +Jolene +Kelli +Kerri +Kristie +Rachael +Roberta +Samantha +Ashley +Carol +Donna +Katie +Katrina +Keri +Kimberley +Yvonne +Bernadette +Beth +Gretchen +Juanita +Kathy +Rebekah +Terri +Yolanda +Angie +Celeste +Frances +Gloria +Joanna +Melody +Mindy +Shana +Shanna +Shauna +Shelley +Sonya +Virginia +Amie +Angel +Angelina +Jean +Naomi +Natasha +Terra +Traci +Bobbie +Cassandra +Chandra +Judy +Kelley +Nikki +Ruth +Tonia +Audrey +Casey +Cheri +Christa +Lara +Lynn +Rochelle +Tami +Bethany +Debbie +Marcy +Martha +Miranda +Sonja +Stefanie +Alice +Anita +Audra +Autumn +Carmen +Dorothy +Jackie +Karla +Lynette +Marie +Rachelle +Rose +Shawn +Sonia +Staci +Tammie +Vicki +Adrienne +Alexis +Antoinette +Brook +Christi +Jenifer +Leigh +Monique +Sylvia +Billie +Candace +Danelle +Dena +Hope +Jana +Josephine +Kellie +Laurel +Leticia +Loretta +Marsha +Meredith +Nina +Peggy +Rene +Shelby +Trina +Alisa +Beverly +Cara +Carly +Claudia +Darcy +Elena +Janice +Jennie +Joann +Jodie +Kori +Marci +Marlene +Priscilla +Ramona +Roxanne +Sabrina +Shirley +Tera +Tracie +Yvette +Angelique +Bobbi +Carey +Chanda +Chelsea +Cherie +Darlene +Elaine +Hilary +Irene +Marcia +Rosa +Tabitha +Tasha +Teri +Trisha +Alisha +Aubrey +Cory +Ellen +Ericka +Ginger +Jeanine +Jeannette +Joey +Karie +Kerrie +Lena +Lydia +Meghan +Norma +Rita +Ronda +Sheryl +Tawnya +Vickie +Abigail +Alethea +Alexandra +Blanca +Corina +Darla +Deana +Elisa +Esther +Gabrielle +Guadalupe +Jeannie +Jenna +Joan +Joanne +Katharine +Lana +Leanne +Lora +Lucinda +Mandy +Mariah +Melisa +Nakia +Paige +Ruby +Sadie +Sally +Shanda +Tammi +Tamra +Tisha +Tonja +Vivian +Wendi +Alyssa +Angelia +Angelica +Athena +Britt +Camille +Cari +Carie +Cassie +Chantel +Claire +Cristina +Danette +Deann +Deena +Faith +Gail +Helen +Ivy +Janette +Jessie +Jocelyn +Johanna +Joyce +Judith +Karin +Kira +Lea +Leann +Lee +Lorie +Lynnette +Malinda +Marcie +Marilyn +Maureen +Nora +Penny +Rosemarie +Rosemary +Tamera +Tania +Vicky +Alaina +Andria +Antonette +Antonia +Aurora +Bree +Cathleen +Celina +Christian +Christin +Darcie +Dayna +Dianna +Dina +Dolores +Eva +Evelyn +Genevieve +Gwendolyn +Holli +Jami +Jane +Janine +Jeanne +Kami +Karissa +Karrie +Kimberlee +Lesley +Marcella +Marisa +Marla +Marti +Mindi +Myra +Nadine +Nicol +Olga +Paulette +Pauline +Pearl +Randi +Rena +Ryan +Sharla +Shellie +Sunshine +Suzette +Abby +Adriana +Alana +Alexa +Alysia +Ana +Angelita +Angella +Annamarie +Antionette +Bambi +Beatrice +Bernice +Betty +Brandie +Brigette +Buffy +Candy +Caroline +Cathy +Chasity +Chastity +Christen +Chrystal +Claudine +Consuelo +Dara +Darcey +Fawn +Georgina +Glenda +Graciela +Hollie +Janel +Janie +Jenelle +John +Juliet +Kasey +Katina +Kyla +Lauren +Leona +Lindsey +Lorraine +Marina +Marjorie +Marlena +Marlo +Marnie +Michell +Morgan +Niki +Richelle +Rosalie +Roxann +Sandy +Selena +Serena +Shari +Sherrie +Stella +Stephani +Tessa +Tia +Tiffani +Toby +Valentina +Valorie +Venus +Jennifer +Heather +Amy +Michelle +Melissa +Angela +Lisa +Rebecca +Sarah +Jessica +Stephanie +Kimberly +Nicole +Christina +Julie +Elizabeth +Amanda +Kelly +Rachel +Shannon +Andrea +Laura +Mary +Dawn +Amber +Christine +Erin +Maria +Carrie +Tanya +Tiffany +Heidi +Tracy +Tina +Holly +April +Susan +Tammy +Tara +Stacy +Sara +Katherine +Wendy +Brenda +Stacey +Emily +Melanie +Danielle +Jamie +Karen +Monica +Jill +Misty +Brandy +Michele +Cynthia +Gina +Crystal +Robin +Tamara +Denise +Lori +Brandi +Megan +Valerie +Kristin +Alicia +Patricia +Tonya +Renee +Mandy +Sandra +Anna +Ann +Shawna +Christy +Dana +Jodi +Samantha +Catherine +Deborah +Erica +Kristina +Theresa +Kathleen +Natalie +Leslie +Teresa +Jacqueline +Kendra +Pamela +Kara +Allison +Regina +Victoria +Anne +Barbara +Erika +Kari +Paula +Shelly +Rhonda +Vanessa +Kathryn +Nichole +Katrina +Kristen +Veronica +Donna +Joy +Leah +Linda +Margaret +Courtney +Deanna +Krista +Aimee +Brooke +Sheila +Sherry +Alison +Cindy +Debra +Kristi +Carolyn +Jolene +Julia +Ashley +Chandra +Cheryl +Molly +Stacie +Annette +Cassandra +Jenny +Jody +Nancy +Sharon +Katie +Connie +Suzanne +Yolanda +Beth +Christie +Diana +Melinda +Mindy +Naomi +Nikki +Sherri +Bonnie +Bridget +Desiree +Jeannie +Laurie +Rachael +Shelley +Sheri +Autumn +Sonia +Toni +Tracey +Yvette +Angie +Carol +Christa +Joanna +Kristie +Kristine +Virginia +Anita +Becky +Carmen +Charity +Colleen +Natasha +Sonya +Summer +Terri +Traci +Trisha +Angelica +Antoinette +Cara +Kristy +Lara +Lynn +Angel +Billie +Bobbi +Gretchen +Jackie +Kelli +Melody +Meredith +Roberta +Carla +Charlene +Darcy +Hannah +Tricia +Yvonne +Audrey +Candace +Carey +Jennie +Kathy +Keri +Kerry +Miranda +Olivia +Robyn +Serena +Shana +Tonia +Adrienne +Alexis +Candice +Casey +Karla +Kimberley +Mandi +Marie +Penny +Rachelle +Ruth +Shauna +Staci +Teri +Amie +Brandie +Cathy +Charlotte +Felicia +Frances +Ginger +Hope +Jaime +Janelle +Janet +Jeanette +Jenifer +Joyce +Kirsten +Lynette +Rebekah +Tami +Taryn +Trina +Alisha +Bernadette +Diane +Dorothy +Jodie +Kim +Leigh +Stefanie +Vicki +Belinda +Caroline +Cheri +Christi +Cori +Danelle +Ellen +Gwendolyn +Jami +Juanita +Kasey +Kelley +Marcie +Meghan +Michael +Raquel +Shanna +Tawnya +Terra +Alexandra +Angelina +Bethany +Bobbie +Celeste +Claudia +Darlene +Genevieve +Irene +Jana +Janice +Jean +Jeanne +Jenna +Joann +Karrie +Lindsey +Marla +Melisa +Monique +Peggy +Priscilla +Rita +Tasha +Alyssa +Carissa +Cherie +Cory +Cristina +Elisa +Jane +Kellie +Laurel +Lesley +Lindsay +Loretta +Lorraine +Marsha +Martha +Ramona +Rene +Rochelle +Ronda +Rose +Roxanne +Shawn +Tabatha +Tisha +Alisa +Allyson +Amelia +Angelique +Annie +Bridgette +Deana +Dena +Dina +Faith +Jessie +Josephine +Kami +Lacey +Lana +Mara +Marci +Meagan +Nina +Sylvia +Tia +Alissa +Ana +Angelia +Audra +Betty +Cassie +Consuelo +Debbie +Dianna +Elena +Gabrielle +Gail +Gloria +Hillary +Hollie +Janna +Jeana +Jo +Joey +Joleen +Leann +Leticia +Mia +Paulette +Renae +Sabrina +Sheryl +Stephany +Sunshine +Tamra +Tobi +Tracie +Wendi +Zoe +Beverly +Briana +Camille +Cari +Chantel +Claire +Corinne +Corrie +Deann +Elisha +Elissa +Gena +Georgia +Hilary +Irma +Janell +Joan +Johanna +Kerri +Krystal +Lauren +Leanna +Leanne +Lucinda +Marlene +Marlo +Misti +Mollie +Norma +Sasha +Shelby +Sherrie +Shirley +Sonja +Tabitha +Tammi +Tessa +Tori +Ursula +Valarie +Windy +Abby +Abigail +Alice +Ami +Antonia +Brenna +Buffy +Cecilia +Chanda +Chelsea +Clarissa +Elaine +Emma +Esther +Francesca +Helen +Isabel +Jacquelyn +Janae +Janel +Jolynn +Joni +Karin +Karyn +Katy +Kimberlee +Kira +Kirstin +Kori +Lacy +Letitia +Lora +Maggie +Marjorie +Maureen +Michaela +Mona +Paige +Rosa +Ruby +Sally +Shelia +Tammie +Tania +Vickie +Violet +Vivian +Adriana +Adrianne +Alana +Amity +Anastasia +Athena +Betsy +Carisa +Carri +Charissa +Chasity +Cherish +Christal +Cinnamon +Colette +Corey +Corie +Corinna +Danita +Danyel +Darla +Deidre +Denice +Dolores +Dora +Eileen +Elisabeth +Eve +Gayle +Glenda +Harmony +Ingrid +Janette +Jasmine +Jeri +Joanne +Johnna +Jonna +June +Justine +Kate +Katharine +Kerrie +Kindra +Lanette +Latoya +Liza +Lois +Lorna +Lydia +Mandie +Marcella +Margarita +Mariah +Marina +Nellie +Nicol +Niki +Nora +Penelope +Racheal +Rayna +Richelle +Rosalie +Ryan +Shiloh +Shonda +Simone +Stella +Sunny +Tanisha +Tera +Vera +Vicky +Jennifer +Amy +Heather +Melissa +Michelle +Jessica +Sarah +Angela +Lisa +Stephanie +Jamie +Kimberly +Rebecca +Amanda +Christina +Nicole +Julie +Elizabeth +Andrea +Laura +Kelly +Shannon +Amber +Erin +Sara +Mary +Christine +Carrie +Rachel +Jaime +Tiffany +Dawn +Tracy +Stacy +Katherine +Emily +Danielle +Misty +Monica +April +Tara +Wendy +Megan +Heidi +Holly +Maria +Anna +Brandy +Brenda +Crystal +Tanya +Robin +Jill +Melanie +Patricia +Lori +Cynthia +Michele +Tammy +Karen +Kristin +Renee +Stacey +Susan +Tina +Valerie +Mandy +Natalie +Christy +Denise +Catherine +Sandra +Allison +Dana +Alicia +Leslie +Brandi +Kristen +Erica +Shawna +Teresa +Veronica +Lindsay +Kathryn +Kathleen +Samantha +Kristina +Vanessa +Victoria +Kristi +Pamela +Tamara +Yolanda +Gina +Sheila +Jodi +Molly +Courtney +Katrina +Aimee +Anne +Cheryl +Deborah +Kari +Regina +Charity +Kara +Kendra +Margaret +Melinda +Linda +Deanna +Theresa +Jenny +Krista +Paula +Desiree +Kelli +Tonya +Brooke +Diana +Jody +Kristine +Rachael +Ann +Ashley +Autumn +Kristy +Nancy +Sharon +Barbara +Leah +Marie +Nichole +Shelly +Beth +Carla +Donna +Rhonda +Suzanne +Adrienne +Colleen +Debra +Julia +Katie +Sherry +Trisha +Anita +Audrey +Kerri +Olivia +Rebekah +Toni +Amie +Annette +Chandra +Juanita +Lindsey +Angelica +Angie +Candice +Carmen +Erika +Jolene +Laurie +Naomi +Shelley +Angel +Bridget +Jacqueline +Miranda +Natasha +Stacie +Terri +Traci +Becky +Carolyn +Connie +Janelle +Joanna +Melody +Rachelle +Sabrina +Shana +Shauna +Tracey +Jennie +Keri +Mindy +Monique +Robyn +Ruth +Summer +Caroline +Joy +Lydia +Sonya +Virginia +Alison +Audra +Candace +Cara +Cassandra +Felicia +Gretchen +Kelley +Meredith +Shanna +Trina +Bobbi +Bonnie +Carey +Casey +Farrah +Kellie +Lara +Nikki +Roxanne +Tania +Tricia +Yvonne +Billie +Cindy +Elisa +Frances +Ginger +Gloria +Jenifer +Kirsten +Mandi +Marisa +Martha +Staci +Alisha +Bernadette +Bobbie +Danelle +Darcy +Eva +Hope +Rose +Tabitha +Alice +Alissa +Belinda +Bethany +Celeste +Hannah +Janice +Kerry +Kim +Sonia +Sylvia +Yvette +Brandie +Briana +Carol +Claudia +Dena +Elaine +Jackie +Janet +Jeanette +Jodie +Karla +Penny +Rhiannon +Roberta +Rochelle +Tasha +Teri +Tracie +Beverly +Charlene +Darlene +Diane +Isabel +Jami +Jasmine +Krystal +Lea +Lena +Lynette +Meghan +Nina +Rita +Rosa +Sheri +Sherri +Stefanie +Sunshine +Abigail +Alexis +Alma +Cari +Cassie +Chanda +Charlotte +Cheri +Ebony +Elisabeth +Ellen +Janell +Joann +Joni +Josephine +Karin +Katharine +Kimberley +Kori +Lauren +Marcie +Priscilla +Sally +Tanisha +Tia +Valarie +Wendi +Alexandra +Alyssa +Angelina +Betsy +Carissa +Chantel +Christa +Christi +Christie +Claire +Danette +Debbie +Grace +Hilary +Janel +Jeannie +Jessie +Joanne +Joleen +Karie +Kasey +Kimberlee +Lora +Loretta +Lynn +Marcia +Margarita +Marianne +Marissa +Meagan +Michael +Selena +Shantel +Sophia +Adrianne +Alisa +Ami +Chelsea +Cheree +Constance +Corrie +Dianna +Dorothy +Dusty +Faith +Genevieve +Georgia +Harmony +Hillary +Hollie +Irene +Jana +Jayme +Joyce +Judy +Kate +Kristie +Lorraine +Mackenzie +Maggie +Marci +Mollie +Nadia +Paige +Ruby +Shawn +Tammi +Taryn +Tonia +Alana +Amelia +Annie +Aspen +Bianca +Brianna +Britta +Caryn +Celina +Chastity +Chrystal +Daniel +Francine +Guadalupe +Holli +Jean +Jeanne +Laurel +Leann +Lee +Lillian +Lindy +Marsha +Melisa +Michaela +Norma +Peggy +Raquel +Renae +Sandy +Selina +Shelby +Simone +Tami +Terra +Tessa +Tori +Ana +Andria +Antoinette +Antonia +Bree +Brenna +Brittany +Brook +Cecilia +Cherie +Consuelo +Cristina +David +Deana +Ericka +Gail +Gena +Gwendolyn +Helen +Jaimie +Janette +Janna +Joey +Jordan +Justina +Kathy +Katy +Larissa +Leticia +Lorena +Malinda +Mara +Marcy +Marlena +Mellisa +Mia +Myra +Nadine +Noelle +Polly +Rena +Robert +Ronda +Roxann +Sasha +Shanda +Sonja +Sunny +Tamra +Tennille +Tera +Vicki +Adriana +Angeline +Angelique +Aubrey +Beatrice +Betty +Camilla +Candida +Carly +Cathy +Catrina +Celia +Clare +Claudette +Corrine +Dani +Daniela +Dannielle +Darla +Deann +Deidra +Deidre +Dina +Dolores +Dorian +Eileen +Emma +Esther +Jammie +Janae +Janie +Janine +Jenelle +Jenna +Jeremy +Jeri +Joan +Julianne +Kacey +Kandi +Karri +Kayla +Kelsey +Kindra +Kyla +Latoya +Lesley +Lorie +Lucinda +Manda +Marcella +Mariah +Marian +Martina +Maureen +Michell +Mindi +Misti +Moriah +Paulette +Pauline +Regan +Rikki +Sadie +Salina +Shandra +Sondra +Suzette +Tammie +Terry +Tiffanie +Travis +Venessa +Jennifer +Jessica +Heather +Melissa +Amy +Sarah +Michelle +Lisa +Angela +Rebecca +Amanda +Nicole +Jamie +Kelly +Kimberly +Stephanie +Andrea +Elizabeth +Christina +Shannon +Amber +Erin +Laura +Sara +Julie +Rachel +Carrie +Crystal +Tara +Katherine +Danielle +Tiffany +Mary +April +Holly +Misty +Karen +Megan +Dawn +Christine +Emily +Alicia +Jill +Maria +Melanie +Erica +Brandy +Patricia +Monica +Jaime +Stacy +Susan +Allison +Tanya +Anna +Natalie +Tammy +Sabrina +Courtney +Heidi +Stacey +Tamara +Wendy +Gina +Kristina +Kathryn +Kristin +Renee +Tracy +Cynthia +Tina +Mandy +Valerie +Victoria +Lori +Veronica +Brooke +Denise +Jenny +Katie +Lindsay +Sandra +Vanessa +Brenda +Kendra +Leslie +Leah +Shawna +Brandi +Catherine +Christy +Kristen +Kristy +Michele +Dana +Kelli +Robin +Jodi +Aimee +Kathleen +Samantha +Melinda +Tonya +Ann +Deborah +Kara +Kristi +Erika +Katrina +Linda +Nichole +Deanna +Jacqueline +Theresa +Paula +Summer +Anne +Cheryl +Diana +Kari +Molly +Teresa +Alisha +Ashley +Adrienne +Krista +Lindsey +Naomi +Natasha +Shelly +Yolanda +Julia +Kelley +Barbara +Colleen +Joy +Margaret +Suzanne +Marie +Pamela +Rachael +Sheila +Kristie +Shanna +Trisha +Beth +Carolyn +Regina +Connie +Desiree +Monique +Rebekah +Toni +Alison +Bridget +Cassandra +Felicia +Jolene +Kellie +Carla +Debra +Jenifer +Lauren +Angie +Annette +Billie +Donna +Janelle +Melody +Rhiannon +Sherry +Autumn +Jaclyn +Joanna +Kate +Rhonda +Shana +Becky +Charity +Christie +Jody +Kirsten +Marisa +Meredith +Mindy +Virginia +Aisha +Angel +Bonnie +Gretchen +Keri +Kristine +Laurie +Shauna +Stacie +Tracey +Angelina +Audrey +Bernadette +Bethany +Cindy +Jeanette +Juanita +Nancy +Roberta +Robyn +Sharon +Sonia +Amelia +Cara +Carmen +Charlene +Diane +Krystal +Meghan +Nikki +Staci +Abigail +Bobbie +Candace +Hillary +Kerri +Lara +Lora +Marissa +Taryn +Terri +Yvonne +Alissa +Amie +Anita +Beverly +Casey +Farrah +Ginger +Janet +Jillian +Rose +Ruth +Sommer +Sonja +Sylvia +Traci +Tricia +Trina +Yvette +Alexis +Alyssa +Aubrey +Candice +Carol +Caroline +Christa +Hannah +Hilary +Jacquelyn +Jodie +Joyce +Judy +Karla +Marla +Olivia +Sally +Sonya +Stefanie +Alisa +Antoinette +Carissa +Ebony +Frances +Helen +Jami +Jana +Karin +Kerry +Miranda +Rachelle +Rosa +Shelley +Sherri +Terra +Tonia +Bianca +Brenna +Brianna +Carey +Chelsea +Claudia +Cristina +Elaine +Eliza +Esther +Jessie +Karrie +Kathy +Leigh +Lesley +Lorena +Lydia +Mandi +Mariah +Martha +Adriana +Alexandra +Ana +Angelica +Audra +Brandie +Brittany +Brook +Cathy +Corinna +Darla +Elisa +Elisha +Eva +Harmony +Jayme +Jennie +Jocelyn +Kim +Marsha +Noelle +Raquel +Rita +Serena +Shawn +Tasha +Tori +Whitney +Annie +Bobbi +Cassie +Celina +Charlotte +Darcy +Hope +Irene +Jasmine +Jenna +Joann +Joleen +Joni +Josephine +Lena +Lynn +Margo +Maureen +Melisa +Misti +Nadine +Renae +Shelby +Tabitha +Tami +Tia +Tracie +Wendi +Alice +Chantel +Corey +Cori +Deana +Dianna +Ellen +Fawn +Gloria +Ingrid +Jane +Janell +Kami +Kimberley +Latisha +Lea +Lucia +Lynette +Marcia +Margarita +Maya +Nina +Paige +Peggy +Priscilla +Sophia +Tabatha +Tanisha +Adrianne +Anastasia +Angelia +Athena +Belinda +Betty +Bree +Celeste +Chandra +Christi +Chrystal +Claire +Danelle +Delia +Dorothy +Ericka +Grace +Haley +Janae +Jeanine +Jeanne +Joanne +Juliana +Justine +Kindra +Kira +Kirstin +Lorie +Lorraine +Marci +Marcie +Mia +Michael +Mollie +Nora +Rochelle +Sadie +Selena +Shannan +Sheri +Sherrie +Stella +Tania +Tera +Teri +Abby +Andria +Briana +Candy +Carmelita +Chanda +Cheri +Christopher +Davina +Devon +Eileen +Elisabeth +Faith +Gabrielle +Geneva +Genevieve +Ivy +Jammie +Jeannette +Johanna +Katharine +Kristyn +Lana +Laurel +Leann +Leanne +Liza +Lynda +Marcy +Marina +Meagan +Niki +Penelope +Rae +Ramona +Rene +Richelle +Robert +Ruby +Ryan +Sandy +Sheryl +Tammi +Tarrah +Tiffani +Tiffanie +Tisha +Trista +Vicki +Adria +Adriane +Alma +Ami +Arianne +Bertha +Blanca +Breanne +Brian +Carolina +Caryn +Cherish +Chrissy +Corrie +Danica +Darlene +Deidre +Delilah +Denice +Dina +Elena +Holli +Hollie +Iris +Irma +Jaimie +Jamila +Janel +Janice +Jo +Joelle +Jonna +Judith +Karey +Kasey +Kimberlee +Lakeisha +Layla +Leanna +Lee +Liliana +Louise +Lucinda +Maggie +Marcella +Marjorie +Martina +Mercedes +Merideth +Miriam +Nadia +Nicolle +Norma +Racheal +Ronda +Salena +Sasha +Selina +Shantel +Sheena +Stacia +Stephenie +Susannah +Susanne +Tamera +Terry +Willow +Jennifer +Jessica +Melissa +Sarah +Heather +Michelle +Amy +Nicole +Stephanie +Amanda +Angela +Lisa +Elizabeth +Andrea +Kimberly +Christina +Jamie +Erin +Rebecca +Kelly +Crystal +Amber +Sara +Laura +Rachel +Julie +Shannon +Katherine +Emily +Tiffany +Mary +Megan +Christine +Tara +April +Erica +Danielle +Monica +Carrie +Anna +Heidi +Maria +Karen +Kathryn +Melanie +Kelli +Brandy +Tanya +Natalie +Dawn +Alicia +Jill +Misty +Lori +Stacy +Susan +Kristina +Stacey +Lindsey +Brooke +Jaime +Nichole +Holly +Kristin +Tracy +Courtney +Desiree +Valerie +Lindsay +Sandra +Cynthia +Kristen +Sabrina +Julia +Vanessa +Katie +Allison +Brenda +Cheryl +Tamara +Victoria +Wendy +Anne +Catherine +Christy +Melinda +Molly +Renee +Tammy +Patricia +Samantha +Tina +Gina +Kathleen +Brandi +Leslie +Dana +Kristi +Robin +Ashley +Teresa +Jenny +Kendra +Kristy +Mandy +Leah +Regina +Denise +Diana +Jacqueline +Theresa +Tonya +Shawna +Beth +Kari +Veronica +Cassandra +Nancy +Linda +Pamela +Autumn +Mindy +Margaret +Shanna +Barbara +Jodi +Krista +Summer +Adrienne +Deborah +Felicia +Kara +Kelley +Meghan +Michele +Olivia +Suzanne +Aimee +Alison +Erika +Rebekah +Stacie +Alisha +Charity +Cindy +Deanna +Kristine +Robyn +Candice +Carolyn +Colleen +Jaclyn +Janelle +Katrina +Lauren +Naomi +Monique +Natasha +Sharon +Ann +Audrey +Casey +Janet +Jolene +Krystal +Shana +Sonia +Sonya +Yvonne +Angelina +Jody +Joy +Marie +Rachael +Shelly +Annette +Bridget +Miranda +Angel +Candace +Debra +Donna +Hilary +Keri +Kerri +Trisha +Audra +Bethany +Cara +Cheri +Jenifer +Jennie +Kirsten +Nikki +Yolanda +Abigail +Carmen +Charlotte +Marisa +Rhonda +Ruth +Sheila +Toni +Tracey +Virginia +Anita +Bonnie +Brittany +Chandra +Paula +Rachelle +Shauna +Sherry +Alyssa +Claudia +Connie +Ginger +Laurie +Roberta +Rose +Tabitha +Bernadette +Billie +Christi +Elisha +Eva +Jessie +Jillian +Traci +Whitney +Becky +Briana +Carol +Chelsea +Christa +Diane +Gretchen +Hope +Jasmine +Joanna +Juanita +Kellie +Kristie +Mandi +Marsha +Rhiannon +Shelley +Trina +Adrianne +Antoinette +Aubrey +Bobbie +Carla +Carly +Chrystal +Cristina +Devon +Jami +Josephine +Leigh +Sally +Stefanie +Brandie +Elaine +Genevieve +Gloria +Jana +Jeanette +Jodie +Kate +Kerry +Lara +Melody +Tracie +Tricia +Angie +Caroline +Christie +Darcy +Elisa +Ellen +Emma +Hannah +Hollie +Janice +Karla +Latasha +Lydia +Mollie +Sonja +Staci +Tami +Terra +Terri +Tia +Yvette +Alexis +Amelia +Amie +Brianna +Camille +Corina +Corinne +Cory +Darlene +Dominique +Ebony +Esther +Grace +Hillary +Jade +Jayme +Jocelyn +Katharine +Katy +Kimberley +Lana +Marlena +Maureen +Melisa +Meredith +Rochelle +Rosa +Tasha +Valarie +Alice +Angelica +Angelique +Belinda +Bianca +Bobbi +Cari +Carissa +Catrina +Danette +Debbie +Elisabeth +Faith +Janell +Jenna +Lacy +Lynn +Marissa +Martha +Meagan +Michael +Nina +Roxanne +Ruby +Shelby +Sheri +Sherri +Taryn +Tera +Adrian +Alisa +Allyson +Annie +Cassie +Celeste +Chasity +Consuelo +Corrie +Corrine +Deana +Gabrielle +Gail +Gena +Ivy +Jacquelyn +Janel +Jason +Joann +Joni +Kami +Kim +Kimberlee +Morgan +Paige +Priscilla +Shayna +Sheryl +Sylvia +Tamra +Wendi +Aisha +Alissa +Antonia +Betsy +Beverly +Cathy +Coleen +Desirae +Destiny +Elena +Haley +January +Jean +Jeannine +Karrie +Kathy +Kristal +Lesley +Lindy +Malia +Marci +Mariah +Mindi +Miriam +Norma +Ramona +Randi +Raquel +Rene +Shanda +Shantel +Sophia +Teri +Abby +Adria +Adriana +Alana +Alexandra +Ami +Ana +Andra +Bambi +Bernice +Blanca +Bree +Brenna +Casandra +Charlene +Chrissy +Claire +Cori +Dani +Dara +Darla +Dianna +Frances +Georgia +Glenda +Hayley +Jackie +Jacklyn +Jeanine +Joanne +John +Jordan +Justina +Karin +Karina +Kasey +Kayla +Keely +Kylie +Lacey +Lacie +Laurel +Lea +Leann +Leanna +Leanne +Leila +Lorena +Lynette +Maggie +Maranda +Marcy +Margarita +Micah +Mikki +Misti +Natisha +Nellie +Niki +Noelle +Raina +Rita +Ryan +Sadie +Sasha +Selena +Serena +Shirley +Starla +Tamika +Tessa +Tisha +Tosha +Abbey +Adrianna +Alecia +Alexandria +Brittney +Carisa +Carole +Celina +Cherie +Corey +Danelle +Darci +Deidra +Deidre +Dolores +Dorothy +Elaina +Eleanor +Evelyn +Gabriel +Guadalupe +Holli +Irene +Isabel +Janine +Janis +Jenniffer +Jeri +Jesse +Joey +Judith +Julianne +Kindra +Kirstin +Ladonna +Lee +Leeann +Leticia +Linsey +Liza +Loretta +Lucinda +Lynsey +Mackenzie +Marcia +Marianne +Marilyn +Marjorie +Maryjo +Maxine +Maya +Meaghan +Noel +Qiana +Raven +Rosalie +Ryann +Salina +Samara +Sandy +Selina +Talia +Tania +Tawny +Tawnya +Tori +Venessa +Jennifer +Melissa +Amanda +Jessica +Sarah +Nicole +Michelle +Heather +Amber +Amy +Elizabeth +Stephanie +Christina +Lisa +Jamie +Angela +Rebecca +Kimberly +Erin +Crystal +Andrea +Kelly +Laura +Shannon +Sara +Rachel +Megan +Julie +Tiffany +April +Katherine +Danielle +Mary +Carrie +Emily +Alicia +Holly +Katie +Maria +Kathryn +Christine +Tara +Melanie +Anna +Brooke +Dawn +Erica +Lindsay +Vanessa +Lindsey +Monica +Tracy +Misty +Lori +Stacy +Brandy +Kristina +Susan +Anne +Lauren +Valerie +Courtney +Desiree +Karen +Leslie +Ashley +Jill +Catherine +Allison +Kristin +Heidi +Cynthia +Samantha +Stacey +Tina +Veronica +Brandi +Kristen +Dana +Kendra +Natalie +Sandra +Krista +Leah +Patricia +Theresa +Mindy +Molly +Renee +Gina +Nichole +Wendy +Victoria +Robin +Meghan +Adrienne +Jaime +Shawna +Brianne +Tamara +Mandy +Sabrina +Tanya +Tammy +Brenda +Cheryl +Deborah +Kathleen +Katrina +Linda +Aimee +Alisha +Alison +Margaret +Jacqueline +Julia +Pamela +Barbara +Cassandra +Kristi +Denise +Kristy +Rebekah +Marie +Melinda +Rachael +Teresa +Bethany +Christy +Tonya +Diana +Jenny +Felicia +Audrey +Jodi +Alyssa +Erika +Joy +Kara +Michele +Monique +Ann +Beth +Nancy +Shauna +Autumn +Brianna +Paula +Regina +Shanna +Sheila +Summer +Yolanda +Hillary +Jaclyn +Janelle +Abigail +Kate +Meredith +Naomi +Angelica +Aubrey +Hannah +Kelley +Tabitha +Audra +Kari +Marissa +Natasha +Robyn +Suzanne +Kellie +Kirsten +Marisa +Miranda +Sharon +Toni +Yvonne +Amie +Angel +Casey +Hilary +Kristine +Nikki +Shelly +Stacie +Bonnie +Bridget +Candice +Cara +Colleen +Donna +Roxanne +Trisha +Brittany +Carolyn +Christa +Diane +Jami +Kelli +Laurie +Melody +Ruth +Sonya +Candace +Christie +Jody +Jolene +Krystal +Lacey +Virginia +Angelina +Annette +Briana +Carla +Cassie +Cindy +Deanna +Debra +Rochelle +Sonja +Traci +Amelia +Darcy +Grace +Juanita +Katharine +Kathy +Leticia +Lynette +Olivia +Roberta +Rose +Sherry +Tasha +Alexis +Alissa +Angie +Anita +Aspen +Becky +Bernadette +Bobbi +Cecilia +Charity +Claire +Claudia +Cristina +Jackie +Jenna +Lara +Mariah +Morgan +Priscilla +Rachelle +Rhiannon +Connie +Janet +Jenifer +Jennie +Jessie +Kyla +Lynn +Selena +Tracey +Alisa +Annie +Chandra +Gloria +Hope +Jasmine +Meagan +Serena +Sheri +Terri +Whitney +Abbie +Adrianne +Bobbie +Carissa +Carol +Chelsea +Cherie +Elisabeth +Elisha +Esther +Ivy +Janice +Jayme +Jillian +Joanna +Jocelyn +Josephine +Katy +Kristie +Marcia +Martha +Rhonda +Sandy +Sasha +Shawn +Shelley +Sylvia +Tera +Terra +Tonia +Abby +Aisha +Alexandra +Antoinette +Bianca +Carly +Caroline +Chanda +Charlotte +Danelle +Elena +Elisa +Ellen +Laurel +Marlena +Shana +Sonia +Stefanie +Tia +Yvette +Adriana +Athena +Billie +Carmen +Ebony +Gabrielle +Genevieve +Guadalupe +Haley +Jana +Janel +Janell +Jeanette +Keri +Kerry +Kylie +Lacy +Lea +Leanne +Lindy +Mandi +Rena +Rosa +Staci +Tabatha +Tami +Tricia +Belinda +Cheri +Corey +Corinne +Darlene +Destiny +Elissa +Emma +Faith +Harmony +Janna +Kristal +Leigh +Lydia +Maggie +Marcie +Maureen +Melisa +Nadine +Nina +Norma +Paige +Raquel +Sadie +Shirley +Tracie +Alana +Alysia +Desirae +Devin +Devon +Ericka +Eva +Gretchen +Gwendolyn +Jean +Joann +Joanne +Josie +Judy +Karla +Kasey +Kim +Kindra +Lee +Lesley +Lora +Malissa +Marci +Meghann +Mia +Michael +Ramona +Regan +Richelle +Rosemary +Ryan +Sally +Sherri +Trina +Valarie +Aaron +Alesha +Allyson +Brandie +Breanne +Candy +Cari +Cathy +Celeste +Celina +Christian +Davina +Dena +Dianna +Elaine +Esperanza +Eve +Evelyn +Gabriela +Helen +Isabel +Jade +James +Johnna +Joyce +Judith +Kacey +Kerri +Kimberlee +Lena +Malia +Margarita +Mindi +Nicolette +Noelle +Rita +Rosalie +Ruby +Ryanne +Shelby +Silvia +Tana +Tania +Vicki +Alanna +Alma +Anastasia +Antonia +Betsy +Beverly +Bree +Brittney +Camille +Catrina +Celena +Chasity +Christi +Chrystal +Cori +Corrie +Cory +Debbie +Elise +Frances +Francesca +Francine +Gail +Hollie +Irene +Irma +Jane +Janette +Janine +Kassandra +Kayla +Keli +Kelsey +Kisha +Lana +Larissa +Latasha +Leann +Leilani +Lucia +Lynda +Lyndsey +Marina +Marisol +Marlene +Maura +Maya +Misti +Mona +Nadia +Peggy +Penny +Randi +Renae +Ronda +Rosanna +Sheryl +Simone +Sondra +Sophia +Susanna +Susannah +Tamra +Taryn +Tiana +Abbey +Araceli +Arlene +Audrea +Betty +Brenna +Caitlin +Carey +Chantel +Chrissy +Christin +Clarissa +Colette +Darci +Dayna +Dolores +Dominique +Dori +Eileen +Emmy +Eryn +Esmeralda +Estrella +Georgia +Gillian +Ginger +Iris +Jacquelyn +Jeanna +Jeannine +Jenni +Jessi +Jodie +Joleen +Kandi +Karin +Karrie +Kellee +Kori +Kyra +Latisha +Leanna +Leeann +Leila +Letitia +Lily +Loni +Lorena +Lucinda +Lynsey +Mara +Marcella +Marcy +Maribel +Marta +Meaghan +Mollie +Nora +Olga +Quinn +Racheal +Rae +Raina +Reagan +Sherrie +Sierra +Skye +Sunshine +Tessa +Tiffani +Tressa +Valentina +Venus +Winter +Jennifer +Jessica +Sarah +Amanda +Melissa +Michelle +Nicole +Heather +Amber +Stephanie +Erin +Elizabeth +Kimberly +Lisa +Amy +Christina +Crystal +Jamie +Rebecca +Laura +Tiffany +Kelly +Angela +Sara +Andrea +Megan +Rachel +Shannon +Emily +April +Julie +Danielle +Katherine +Courtney +Mary +Kristin +Katie +Brooke +Kristen +Lindsay +Maria +Alicia +Erica +Monica +Ashley +Christine +Lauren +Tara +Heidi +Vanessa +Melanie +Allison +Holly +Lindsey +Natalie +Kathryn +Kristina +Anna +Leah +Leslie +Patricia +Nichole +Brandy +Misty +Kendra +Desiree +Carrie +Molly +Wendy +Tracy +Samantha +Tanya +Cynthia +Sandra +Stacey +Anne +Candice +Brandi +Julia +Brenda +Katrina +Krista +Monique +Karen +Mandy +Dawn +Kathleen +Stacy +Valerie +Pamela +Sabrina +Catherine +Erika +Jill +Kristy +Lori +Susan +Jacqueline +Kristi +Natasha +Renee +Robin +Theresa +Tina +Veronica +Dana +Gina +Alison +Brittany +Cassandra +Tamara +Tonya +Victoria +Kara +Linda +Mindy +Autumn +Barbara +Cheryl +Meghan +Tammy +Hannah +Melinda +Deanna +Jaime +Margaret +Miranda +Alyssa +Bethany +Denise +Paula +Jenny +Naomi +Christy +Nancy +Rebekah +Audrey +Robyn +Shawna +Alisha +Angel +Brianne +Janelle +Jolene +Kelli +Kellie +Marie +Rachael +Trisha +Yolanda +Aimee +Ann +Jodi +Joy +Michele +Summer +Teresa +Whitney +Candace +Kristine +Shanna +Suzanne +Beth +Brianna +Casey +Deborah +Diana +Ruth +Tia +Cara +Alexis +Angelina +Annette +Bonnie +Kari +Kate +Tasha +Toni +Bridget +Juanita +Regina +Colleen +Debra +Jasmine +Jenna +Angelica +Annie +Carolyn +Chelsea +Felicia +Jaclyn +Morgan +Priscilla +Shauna +Sonia +Terra +Abigail +Mariah +Marissa +Sharon +Adrienne +Bernadette +Briana +Kelley +Nina +Rhonda +Shelley +Sonya +Stefanie +Bobbie +Cindy +Diane +Elisabeth +Genevieve +Hillary +Jami +Jennie +Joanna +Marisa +Rose +Virginia +Amie +Anita +Carla +Carly +Chandra +Janet +Jeanette +Jillian +Jordan +Lacey +Laurie +Leticia +Melody +Meredith +Randi +Rochelle +Roxanne +Caroline +Charlene +Claudia +Corinne +Donna +Frances +Jessie +Kelsey +Latasha +Rhiannon +Ryan +Tabitha +Traci +Antoinette +Audra +Charity +Elaine +Gretchen +Kerri +Olivia +Rachelle +Raquel +Serena +Sheila +Yvette +Aubrey +Brandie +Carmen +Cassie +Christa +Larissa +Nikki +Sally +Stacie +Alissa +Becky +Bobbi +Carissa +Cherie +Chrystal +Ebony +Eva +Janell +Jody +Keri +Lesley +Lynn +Misti +Rosa +Sylvia +Tracey +Yvonne +Alisa +Ana +Breanne +Jenifer +Kirsten +Krystal +Lucia +Rita +Shelly +Wendi +Alexandra +Allyson +Alma +Angelique +Cecilia +Claire +Cristina +Dorothy +Faith +Ginger +Guadalupe +Helen +Hilary +Jana +Janel +Johanna +Joni +Kimberley +Kristie +Martha +Nadia +Shelby +Tanisha +Terri +Valarie +Bianca +Bree +Caitlin +Cortney +Elena +Gloria +Janice +Jayme +Jeannette +Kerry +Lara +Leanne +Lena +Marcie +Marina +Norma +Renae +Ruby +Sandy +Sasha +Sheri +Sonja +Staci +Tessa +Abbey +Abby +Alice +Amelia +Angie +Charlotte +Christi +Christopher +Connie +Cory +Debbie +Ericka +Esther +Gabrielle +Isabel +Ivy +Jackie +Jeannie +Karla +Laurel +Leigh +Loni +Lorraine +Lynette +Mandi +Marci +Michael +Roberta +Shana +Sierra +Tracie +Tricia +Trina +Venessa +Billie +Brenna +Brook +Callie +Camille +Carol +Celeste +Chasity +Cheri +Corrine +Cristin +Darcy +Darlene +Desirae +Devon +Dusty +Elisha +Elissa +Ellen +Grace +Haley +Jacquelyn +Jane +Joanne +Kathy +Keisha +Kindra +Kristal +Lacy +Lindy +Lucinda +Lydia +Maggie +Maureen +Meagan +Nicolette +Rosalie +Rosemary +Selena +Shanda +Shantel +Sherri +Sherry +Sunny +Tami +Tamika +Teri +Adrianne +Andria +Antonia +Ashleigh +Betsy +Breanna +Brittney +Catrina +Celina +Chantel +Chelsie +Christie +Clarissa +Corey +Dara +Darci +David +Deidra +Eileen +Elisa +Elise +Evelyn +Hope +Joann +Jodie +Joleen +Josephine +Joshua +Josie +Julianne +Kyla +Lakisha +Lana +Latoya +Leann +Leanna +Loretta +Louise +Lyndsey +Marlene +Matthew +May +Meggan +Melisa +Noelle +Salina +Shari +Sophia +Tammie +Trish +Adriana +Alana +Blanca +Cathryn +Cathy +Christen +Christin +Daisy +Darla +Deana +Dena +Destiny +Emmy +Francine +Francis +Georgia +Gwendolyn +Harmony +Hollie +Jean +Jesse +Jocelyn +Joyce +June +Kacey +Kami +Karin +Karrie +Katy +Kim +Kylee +Lea +Lee +Lora +Lynda +Lynne +Marcy +Margarita +Marisol +Marla +Meghann +Mia +Niki +Patrice +Paulette +Peggy +Penny +Ramona +Sadie +Shea +Sheryl +Tabatha +Tarah +Taryn +Tera +Alaina +Anastasia +Angeline +Anthony +Antionette +Arianna +Athena +Beverly +Bridgette +Britney +Buffy +Carey +Carley +Carmela +Cherry +Christal +Constance +Cora +Cori +Corrina +Daniel +Danyelle +Dayna +Delia +Dolores +Dominique +Dora +Edith +Elysia +Emilie +Francisca +Irene +Janie +Jason +Jeanine +Jeri +Judy +Kacie +Kacy +Katharine +Kay +Keely +Kimberlee +Kyle +Latonya +Lucy +Luz +Maranda +Marjorie +Maya +Micah +Michaela +Mina +Miriam +Mollie +Nora +Paige +Pauline +Regan +Rene +Rikki +Rory +Shanell +Shannan +Shay +Shayna +Sheree +Sue +Sunshine +Tai +Tammi +Tania +Tawnya +Tosha +Trista +Valentina +Wanda +Winter +Jennifer +Jessica +Sarah +Amanda +Melissa +Nicole +Amber +Stephanie +Elizabeth +Erin +Michelle +Amy +Rebecca +Crystal +Heather +Tiffany +Lisa +Angela +Andrea +Sara +Laura +Kimberly +Christina +Rachel +Emily +Jamie +Danielle +Megan +Kelly +Shannon +April +Katherine +Lindsay +Kristen +Mary +Kristin +Julie +Lindsey +Katie +Erica +Ashley +Brandy +Courtney +Anna +Lauren +Tara +Christine +Natalie +Brandi +Holly +Vanessa +Kathryn +Samantha +Monica +Brooke +Alicia +Kristina +Carrie +Maria +Heidi +Misty +Desiree +Stacy +Valerie +Natasha +Allison +Melanie +Candice +Cassandra +Catherine +Victoria +Susan +Veronica +Meghan +Robin +Anne +Dawn +Patricia +Monique +Sandra +Dana +Kathleen +Leah +Leslie +Kendra +Renee +Theresa +Julia +Molly +Stacey +Tamara +Jill +Margaret +Cynthia +Tanya +Hannah +Karen +Erika +Katrina +Teresa +Lori +Miranda +Tina +Brenda +Denise +Wendy +Diana +Krista +Tammy +Jacqueline +Naomi +Linda +Nichole +Pamela +Tracy +Brittany +Gina +Kara +Rachael +Sabrina +Alisha +Kelli +Morgan +Summer +Bethany +Kristy +Mandy +Stefanie +Alexis +Alison +Janelle +Marie +Barbara +Jenny +Tasha +Abby +Lacey +Michele +Nancy +Rebekah +Aimee +Beth +Christy +Kristi +Krystal +Abigail +Deborah +Jaime +Kate +Marissa +Shawna +Tonya +Colleen +Jodi +Melinda +Audrey +Kari +Trisha +Felicia +Jasmine +Priscilla +Tabitha +Angelica +Ann +Candace +Cara +Casey +Donna +Jessie +Joanna +Joy +Meredith +Regina +Shanna +Virginia +Angel +Kristine +Mindy +Roxanne +Autumn +Cassie +Charlotte +Gretchen +Sharon +Audra +Bobbie +Brianna +Claudia +Jaclyn +Paula +Sophia +Alexandra +Alissa +Briana +Caroline +Jolene +Robyn +Rosa +Adrienne +Alyssa +Angelina +Annette +Aubrey +Bonnie +Brianne +Carly +Deanna +Genevieve +Kelsey +Sheila +Jana +Jenna +Marisa +Nina +Rachelle +Ruth +Carla +Cheryl +Lara +Martha +Whitney +Adriana +Charlene +Cindy +Cristina +Jenifer +Kirsten +Rhonda +Shelly +Stacie +Chelsea +Ellen +Jeanette +Kellie +Laurie +Lorena +Meagan +Nicolette +Suzanne +Tricia +Yvonne +Anita +Annie +Billie +Carmen +Carolyn +Devon +Diane +Jackie +Janet +Jennie +Kerri +Lacy +Rita +Rose +Serena +Sonia +Amelia +Antonia +Ashleigh +Eva +Hilary +Katharine +Katy +Keri +Kira +Larissa +Latasha +Mandi +Mariah +Olivia +Ryan +Selena +Shauna +Sheri +Terri +Amie +Antoinette +Bridget +Carissa +Claire +Dena +Faith +Frances +Gloria +Jillian +Randi +Rene +Sylvia +Tessa +Tia +Toni +Traci +Bernadette +Elisabeth +Elise +Ginger +Jacquelyn +Jordan +Juanita +Laurel +Leticia +Maggie +Melody +Nadine +Sally +Sheena +Sonya +Taylor +Alaina +Ana +Becky +Bobbi +Brandie +Breanna +Carol +Chandra +Chrystal +Elisa +Emma +Jeannette +Jody +Johanna +Joni +Josephine +Justine +Latisha +Lesley +Rhiannon +Sandy +Shana +Shelby +Shelley +Tiffani +Abbey +Angie +Athena +Brenna +Cecilia +Celeste +Christa +Christie +Connie +Daisy +Danelle +Darcy +Dorothy +Ebony +Francine +Jessi +Kacey +Karla +Kindra +Kristie +Lea +Lucinda +Marsha +Paige +Raquel +Roberta +Sasha +Shawn +Sonja +Tabatha +Yolanda +Alanna +Ashlee +Brittney +Caitlin +Corinne +Elaine +Elena +Elisha +Esther +Gabrielle +Gail +Jami +Janice +Jayme +Jesse +Judith +Kacie +Kathy +Kelley +Kiley +Leanne +Leigh +Lena +Luz +Ramona +Rena +Shanda +Sierra +Teri +Alana +Angelique +Aspen +Bianca +Brook +Cari +Celia +Charity +Cheri +Christen +Cori +Corrie +Cortney +Darlene +Debra +Dianna +Dominique +Elissa +Evelyn +Gillian +Haley +Harmony +Hayley +Jason +Jean +Jocelyn +Judy +Kandice +Kassandra +Kimberlee +Kyla +Latoya +Leeann +Loretta +Lorraine +Lyndsey +Lynette +Mackenzie +Mara +Marla +Maureen +Meggan +Melisa +Michael +Miriam +Pauline +Rochelle +Rosalie +Shasta +Sherri +Sue +Tashina +Tiana +Tracey +Trina +Adrian +Alice +Alisa +Beatrice +Belinda +Camille +Candi +Casie +Cassidy +Catrina +Chasity +Cherie +Christi +Christin +Clarissa +Constance +Deana +Debbie +Destiny +Grace +Helen +Hillary +Janna +Joann +Jodie +Kami +Kim +Krystle +Kyle +Kyra +Maranda +Marcy +Maren +Margarita +Margo +Mia +Mollie +Noelle +Rosemary +Ruby +Selina +Sherry +Shiloh +Shirley +Sunshine +Tamika +Tawnya +Yvette +Adrianne +Alexa +Alina +Allyson +Angeline +Ariel +Arielle +Arlene +Bettina +Blanca +Bonny +Breanne +Britney +Carey +Cathryn +Celina +Chantel +Chantelle +Clara +Corina +Dara +Darla +Dolores +Eliza +Esmeralda +Fawn +Gena +Hollie +Hope +Ivy +Janell +Karrie +Kasey +Kathrine +Kerry +Kimberley +Kori +Kristal +Louisa +Lydia +Lyndsay +Marci +Marta +Melaine +Myra +Nadia +Nora +Pearl +Racheal +Shantel +Sherrie +Sofia +Staci +Sydney +Tami +Tammie +Tania +Tera +Terra +Tisha +Tosha +Ursula +Adria +Adriane +Adrianna +Alejandra +Angelic +Arianna +Beverly +Brandee +Britta +Brynn +Callie +Cheyenne +Christal +Consuelo +Cora +Corie +Corrine +Cory +Cristin +Cristy +Danette +Daniel +David +Deanne +Desirae +Edith +Elsa +Emilie +Eric +Esperanza +Francesca +Georgina +Guadalupe +Iris +Irma +Jade +Jamila +Janae +Janine +Jena +Jerri +Jo +Joan +Julianne +Karin +Karissa +Kendall +Kiera +Lakisha +Lana +Leanna +Liliana +Lily +Lora +Louise +Lynn +Marcie +Maribel +Marilyn +Marina +Marisol +Marlena +Maryann +Maya +Mckenzie +Meghann +Mellissa +Michaela +Natalia +Nikki +Nikole +Noel +Norma +Peggy +Penny +Robert +Shara +Sharla +Shayla +Sheree +Sheryl +Shilo +Somer +Stacia +Susanna +Susanne +Talia +Tammi +Thea +Tiffanie +Tracie +Vicki +Jennifer +Jessica +Sarah +Amanda +Nicole +Melissa +Stephanie +Crystal +Amber +Michelle +Rebecca +Elizabeth +Heather +Amy +Erin +Emily +Laura +Rachel +Christina +Andrea +Sara +Angela +Jamie +Tiffany +Kimberly +Katherine +Kelly +Megan +Ashley +Lisa +Lindsay +Lindsey +Danielle +Shannon +Julie +Kristen +Lauren +Mary +Kathryn +Erica +Natalie +Samantha +Courtney +Kristin +April +Katie +Anna +Tara +Vanessa +Alicia +Cassandra +Maria +Brittany +Desiree +Brandi +Christine +Brandy +Monica +Holly +Leah +Natasha +Nichole +Carrie +Heidi +Kristina +Melanie +Valerie +Allison +Molly +Patricia +Kendra +Candice +Julia +Victoria +Leslie +Catherine +Krista +Jacqueline +Dawn +Misty +Dana +Margaret +Stacy +Shawna +Alexis +Veronica +Hannah +Jill +Renee +Theresa +Brooke +Diana +Erika +Rachael +Chelsea +Tanya +Cassie +Jillian +Kelli +Lori +Morgan +Susan +Kara +Marie +Tamara +Candace +Cynthia +Karen +Krystal +Monique +Kari +Pamela +Teresa +Anne +Jenny +Miranda +Stacey +Meghan +Tina +Bethany +Kathleen +Katrina +Melinda +Robin +Alisha +Alison +Ann +Brenda +Denise +Kelsey +Christy +Janelle +Tasha +Audrey +Gina +Lacey +Mandy +Sabrina +Tracy +Wendy +Sandra +Abigail +Marissa +Naomi +Shanna +Alyssa +Brianna +Kristi +Shauna +Adrienne +Kristy +Sheila +Angelica +Audra +Jolene +Michele +Stefanie +Aimee +Caitlin +Casey +Jaime +Linda +Whitney +Abby +Autumn +Carly +Jessie +Mindy +Paula +Rebekah +Barbara +Cara +Deborah +Felicia +Angel +Aubrey +Kate +Lacy +Lara +Sheena +Suzanne +Tabitha +Alexandra +Beth +Colleen +Deanna +Jenna +Joanna +Tammy +Tonya +Rachelle +Randi +Robyn +Bonnie +Bridget +Caroline +Claire +Gloria +Jodi +Kristine +Meredith +Summer +Tessa +Briana +Brianne +Katharine +Kelley +Virginia +Angelina +Carla +Chandra +Cristina +Jaclyn +Jacquelyn +Nancy +Olivia +Bernadette +Carolyn +Charlotte +Gretchen +Jami +Jasmine +Kirsten +Marisa +Regina +Sharon +Janet +Laurel +Martha +Nina +Toni +Yolanda +Charity +Cheryl +Debra +Jane +Joy +Kellie +Keri +Shana +Trisha +Brittney +Charlene +Diane +Ebony +Jennie +Kayla +Laurie +Maggie +Mariah +Meagan +Priscilla +Roxanne +Serena +Shelly +Taylor +Alissa +Anita +Annette +Bobbie +Carol +Desirae +Elisha +Eva +Josephine +Kira +Paige +Raquel +Rosa +Ruth +Sherry +Tia +Brandie +Breanna +Casandra +Hillary +Jordan +Melody +Sophia +Tami +Traci +Callie +Chelsey +Christa +Chrystal +Frances +Gabrielle +Grace +Hilary +Kacey +Katy +Kerry +Leann +Lyndsey +Melisa +Michael +Rhiannon +Sonia +Alana +Amelia +Ana +Angelique +Annie +Bianca +Breanne +Brenna +Cindy +Haley +Helen +Hope +Jade +Jana +Jody +Juanita +Kerri +Latoya +Lydia +Miriam +Staci +Stacie +Tabatha +Yvette +Alexandria +Alice +Antoinette +Ashleigh +Camille +Celeste +Claudia +Devon +Donna +Elisabeth +Ellen +Evelyn +Jeanette +Kyla +Larissa +Latisha +Lesley +Leticia +Lyndsay +Lynette +Nikki +Rita +Sadie +Sasha +Sheri +Sonya +Abbey +Allyson +Angie +Ariel +Ashlee +Carissa +Cassidy +Cecilia +Cherie +Christie +Connie +Darcy +Dayna +Elena +Hayley +Janel +Jocelyn +Joni +Kaleena +Karla +Kathy +Kim +Kristie +Krystle +Leanne +Lee +Lillian +Lynsey +Maureen +Nadine +Nicolette +Ryan +Shayla +Taryn +Terri +Alexa +Amie +Becky +Bobbi +Carmen +Christi +Constance +Corinne +Darlene +Elisa +Elissa +Esther +Fawn +Guadalupe +Irene +Ivy +Janette +Janice +Joleen +Linsey +Loni +Lorena +Lynn +Marina +Mollie +Norma +Rhonda +Rose +Savannah +Selena +Shayna +Shelley +Sherri +Sonja +Teri +Tricia +Trina +Adriana +Andria +Billie +Britney +Chantal +Cori +Daisy +Danelle +Dena +Destiny +Dominique +Faith +Genevieve +Ginger +Jackie +Janae +Janell +Janna +Jessi +Jodie +Kimberlee +Mackenzie +Maura +Nadia +Raven +Rikki +Roberta +Rochelle +Rosanna +Shea +Talia +Tania +Terra +Tiffani +Yvonne +Alisa +Arielle +Ashlie +Cari +Cathy +Chasity +Cheri +Christen +Christin +Colette +Corrie +Cortney +Dara +Darcie +Deidre +Dina +Dolores +Dorothy +Eileen +Elise +Emma +Ericka +Georgia +Jason +Jenifer +Jesse +Johanna +Judy +Kami +Kindra +Kristal +Mandi +Marilyn +Mercedes +Mia +Michaela +Rae +Rhianna +Roseanna +Ruby +Sally +Shaina +Sondra +Sylvia +Tamera +Tera +Thea +Adria +Adrian +Adrianne +Alaina +Alanna +Aspen +Caitlyn +Cameron +Carina +Carley +Caryn +Chantel +Christopher +Deena +Dianna +Eliza +Elsa +Gayle +Gwendolyn +Isabel +James +Jammie +Jayme +Jena +Joann +Joshua +Judith +Julianna +Justina +Kacie +Kasey +Katelyn +Kendall +Kimberley +Krysta +Leigh +Leilani +Lora +Loretta +Louise +Lucia +Lucinda +Lucy +Mai +Malinda +Marcella +Marcy +Marianne +Marjorie +Maryann +Micah +My +Nicolle +Rene +Rocio +Rosalie +Rosemary +Selina +September +Shelby +Sydney +Tamra +Tanisha +Tess +Vicki +Abbie +Adrianna +Afton +Alena +Alexia +Amberlee +Angelia +Angelita +Arianne +Arlene +Bailey +Betsy +Betty +Beverly +Brandee +Bridgette +Brie +Bryn +Catrina +Chanel +Clare +Coral +Corey +Corrina +Cory +Cristen +Cristin +Danica +Deana +Deidra +Dustin +Dusty +Edwina +Ernestine +Eryn +Evan +Eve +Felisha +Francine +Gena +Geneva +Georgina +Gwen +Hallie +Holli +Hollie +Ingrid +Jacklyn +Jeanie +Jeanine +Jeannette +Jeffrey +Joslyn +Juliana +June +Kaitlin +Karri +Kassandra +Keely +Kisha +Lacie +Lana +Latasha +Lena +Liliana +Lorraine +Mara +Marci +Marcie +Marisol +Marsha +Matthew +Meghann +Misti +Natalia +Noelle +Noemi +Pauline +Quinn +Raeann +Ramona +Renae +Rosemarie +Rosita +Roxana +Sage +Salina +Sandy +Shanda +Shanon +Shantel +Shasta +Shiloh +Shonda +Sierra +Silvia +Susanna +Tammi +Tammie +Tarah +Tashina +Terry +Tierra +Tiffanie +Tracey +Valarie +Venessa +Vivian +Wendi +Jennifer +Jessica +Sarah +Amanda +Nicole +Ashley +Stephanie +Amber +Melissa +Elizabeth +Heather +Crystal +Megan +Amy +Michelle +Erin +Rebecca +Rachel +Andrea +Christina +Kelly +Kimberly +Angela +Katherine +Emily +Laura +Jamie +Lindsey +Lauren +Tiffany +Sara +Lindsay +Danielle +Lisa +Samantha +Shannon +Brittany +Alicia +Mary +Courtney +Kristin +Vanessa +April +Kristen +Katie +Erica +Natalie +Desiree +Tara +Cassandra +Kathryn +Julie +Christine +Holly +Chelsea +Maria +Monica +Victoria +Brandi +Anna +Jacqueline +Brandy +Allison +Krista +Hannah +Nichole +Alexis +Meghan +Carrie +Julia +Kendra +Kristina +Stacy +Molly +Valerie +Patricia +Kayla +Natasha +Stacey +Leah +Kara +Brooke +Lacey +Leslie +Heidi +Melanie +Veronica +Candice +Diana +Margaret +Miranda +Renee +Sabrina +Brenda +Cynthia +Krystal +Catherine +Bethany +Dawn +Misty +Kelli +Sandra +Alison +Erika +Tamara +Jill +Kathleen +Caitlin +Dana +Felicia +Katrina +Kelsey +Susan +Tanya +Anne +Gina +Rachael +Tina +Alisha +Janelle +Karen +Sheena +Audrey +Casey +Theresa +Adrienne +Alexandra +Lori +Marie +Morgan +Ann +Stefanie +Melinda +Aimee +Tracy +Robin +Tasha +Whitney +Denise +Jillian +Monique +Pamela +Candace +Jenny +Joanna +Kari +Alyssa +Autumn +Cara +Carly +Cassie +Rebekah +Virginia +Abigail +Angel +Brianna +Jolene +Meagan +Regina +Angelica +Audra +Randi +Tabitha +Teresa +Christy +Kelley +Kristine +Shawna +Barbara +Colleen +Deborah +Jaclyn +Jacquelyn +Katharine +Kirsten +Lacy +Naomi +Tessa +Ashleigh +Briana +Bridget +Deanna +Jade +Jasmine +Jenna +Linda +Mandy +Rachelle +Summer +Beth +Robyn +Carol +Caroline +Carolyn +Cheryl +Haley +Jami +Juanita +Kristy +Marissa +Shauna +Wendy +Abby +Aubrey +Charlene +Cindy +Claire +Destiny +Kate +Kristi +Mindy +Breanna +Jaime +Jodi +Kacey +Katy +Nancy +Ryan +Sharon +Toni +Anita +Genevieve +Laurie +Lyndsey +Sheila +Sophia +Stacie +Yolanda +Bonnie +Desirae +Devon +Gloria +Jenifer +Kira +Laurel +Rose +Suzanne +Tonya +Angelina +Bianca +Christie +Cristina +Elisabeth +Elise +Krystle +Maggie +Meredith +Michele +Rochelle +Trisha +Alissa +Ashlee +Bernadette +Brianne +Brittney +Christa +Elisa +Elisha +Leigh +Leticia +Marisa +Priscilla +Ruth +Taylor +Adriana +Alexandria +Chandra +Esther +Jennie +Katelyn +Mackenzie +Mandi +Michael +Nina +Raquel +Sally +Shanna +Tammy +Traci +Amie +Cassidy +Charity +Hillary +Kellie +Leann +Lora +Rhonda +Shelley +Abbey +Ana +Annette +Annie +Becky +Callie +Celeste +Chelsey +Cherie +Chrystal +Cori +Ebony +Hilary +Jana +Janet +Jeanette +Jessie +Joy +Justine +Kasey +Kerry +Melody +Nikki +Paige +Paula +Shelby +Shelly +Sonya +Sylvia +Terra +Tia +Alana +Athena +Bobbi +Carissa +Carla +Chantel +Claudia +Corinne +Cortney +Debra +Frances +Gabrielle +Gretchen +Hanna +Jordan +Kathy +Lydia +Maureen +Olivia +Serena +Sonia +Staci +Taryn +Trista +Allyson +Alyson +Amelia +Aspen +Bobbie +Breanne +Carmen +Celina +Charlotte +Connie +Darcy +Diane +Eileen +Emma +Eva +Faith +Jesse +Johanna +Lara +Larissa +Latisha +Lyndsay +Lynette +Lynn +Mara +Mariah +Meghann +Michaela +Rhiannon +Savannah +Tera +Terri +Yvette +Alaina +Ariana +Ariel +Brenna +Corey +Elaine +Evelyn +Hope +Jane +Janice +Janine +Jayme +Kaitlin +Karla +Kati +Keri +Kristie +Kyle +Latoya +Lesley +Mallory +Miriam +Roberta +Sandy +Shayla +Sonja +Starr +Tori +Alisa +Angelique +Betsy +Brandie +Christen +Darlene +Dorothy +Ellen +Fawn +Irene +Janel +Jeanne +Joann +Jody +Josephine +Kendall +Kerri +Kyla +Leanne +Lillian +Lucinda +Maegan +Maranda +Marcella +Matthew +Nicolette +Pauline +Rosalinda +Rosemary +Roxanne +Ruby +Shantel +Sherry +Silvia +Tabatha +Tanisha +Tarah +Yvonne +Adrianna +Alice +Anastasia +Angie +Antoinette +Antonia +Bailey +Blair +Breann +Bree +Cami +Camille +Cari +Christopher +Colette +Cory +Danelle +Danica +Daniel +Dayna +Deidra +Dena +Dominique +Donna +Eliza +Jessi +Josie +Juliana +Julianne +Kaleena +Kristal +Lena +Lia +Linsey +Lorena +Marquita +Natalia +Noelle +Nora +Patrice +Rosa +Selina +Shana +Sheri +Simone +Tami +Tamika +Tiffanie +Tricia +Adrian +Adrianne +Alma +Andria +Arlene +Ashely +Belinda +Beverly +Bridgett +Bridgette +Carina +Carlie +Casandra +Cecilia +Charissa +Christi +Christin +Constance +Cora +Deidre +Elena +Emilie +Eryn +Eve +Grace +Hollie +Janae +Janell +Janna +Jean +Jeannie +Jeffrey +Jo +Jocelyn +Jonathan +Joshua +Judy +Justina +Kacie +Kandace +Karyn +Kaycee +Kristyn +Krysta +Lea +Luz +Marianne +Maribel +Martha +Maura +Melisa +Mia +Mollie +Rita +Salina +Shanda +Sherri +Shirley +Stevie +Stormy +Tammie +Tracey +Alexa +Andra +Andrew +Angeline +Beatrice +Billie +Breana +Britney +Candy +Cathrine +Celia +Chanel +Chantell +Chantelle +Chloe +Ciara +Danette +Daniella +Deanne +Debbie +Delilah +Dolores +Eleanor +Gwen +Helen +Jaimie +Jena +Jesica +Jodie +Joelle +John +Joleen +Joseph +Joyce +Judith +Justin +Kala +Karin +Kasandra +Kassandra +Kaylan +Keesha +Kimberlee +Kirstin +Kristel +Lana +Lindy +Linnea +Loren +Loretta +Malissa +Maren +Marlo +Maryann +Mercedes +Monika +Nadine +Nicolle +Nyssa +Peggy +Racheal +Raeann +Richelle +Rikki +Rosalie +Rosanna +Shantell +Shantelle +Shaunna +Sierra +Skye +Sydney +Talia +Tamra +Tawnya +Tess +Tiana +Tiffaney +Tyra +Valene +Wendi +Jessica +Jennifer +Amanda +Sarah +Ashley +Nicole +Stephanie +Megan +Heather +Melissa +Elizabeth +Amber +Crystal +Amy +Rachel +Danielle +Michelle +Brittany +Christina +Laura +Rebecca +Emily +Andrea +Erin +Lauren +Tiffany +Jamie +Lindsey +Kimberly +Katherine +Angela +Kelly +Sara +Lisa +Shannon +Lindsay +Vanessa +Samantha +Chelsea +Kristin +Mary +Christine +April +Kathryn +Kristen +Courtney +Katie +Alicia +Tara +Cassandra +Jenna +Erica +Holly +Allison +Julie +Anna +Catherine +Meghan +Brandi +Desiree +Alexandra +Monica +Maria +Natalie +Valerie +Brandy +Julia +Victoria +Leah +Nichole +Kendra +Kristina +Veronica +Kathleen +Krista +Jacqueline +Stacey +Hannah +Alexis +Bethany +Krystal +Dana +Katrina +Stacy +Whitney +Carrie +Molly +Patricia +Robin +Kara +Heidi +Natasha +Brooke +Monique +Morgan +Sabrina +Brianna +Caitlin +Jillian +Margaret +Tamara +Anne +Brenda +Candice +Erika +Joanna +Lacey +Miranda +Alisha +Alison +Audrey +Kelsey +Leslie +Sheena +Renee +Jasmine +Gina +Rachael +Rebekah +Cynthia +Abigail +Alyssa +Cassie +Karen +Pamela +Sandra +Susan +Teresa +Tracy +Autumn +Kari +Kelli +Melanie +Shauna +Kristi +Shawna +Stefanie +Janelle +Jenny +Theresa +Ashleigh +Casey +Diana +Kristine +Tina +Angel +Brianne +Brittney +Misty +Savannah +Candace +Kayla +Naomi +Ann +Barbara +Kate +Melinda +Nancy +Deanna +Latoya +Meagan +Tanya +Cara +Carly +Taylor +Angelica +Denise +Jill +Tabitha +Linda +Mindy +Bonnie +Dawn +Marie +Shana +Caroline +Cheryl +Deborah +Elisabeth +Hilary +Kelley +Kira +Kristy +Michele +Regina +Stacie +Tonya +Trista +Adrienne +Ashlee +Claire +Felicia +Jaime +Lydia +Meredith +Nina +Olivia +Paige +Robyn +Ruth +Suzanne +Wendy +Aubrey +Briana +Christy +Lori +Marissa +Sophia +Aimee +Beth +Bridget +Dominique +Sheila +Shelby +Tammy +Ana +Carissa +Jodi +Serena +Tessa +Alexandria +Audra +Charlene +Charlotte +Colleen +Jaclyn +Jolene +Kirsten +Lacy +Rose +Abby +Angelina +Brenna +Carolyn +Chelsie +Diane +Donna +Grace +Juanita +Mallory +Marisa +Martha +Shelly +Virginia +Annie +Cassidy +Chantel +Charity +Christa +Esther +Haley +Hayley +Jennie +Justine +Kaitlin +Katharine +Kendall +Larissa +Mandy +Mariah +Melody +Rachelle +Allyson +Anita +Chelsey +Gabrielle +Jessie +Karissa +Randi +Ryan +Shanna +Sharon +Alana +Bernadette +Bobbie +Brandie +Carla +Cortney +Emma +Jami +Kaylee +Lyndsey +Sonya +Tera +Traci +Yolanda +Amelia +Amie +Breanna +Chandra +Christen +Ebony +Ellen +Eva +Hillary +Jody +Joy +Katelyn +Kellie +Kindra +Laurel +Mackenzie +Nicolette +Priscilla +Roxanne +Sandy +Shantel +Summer +Trisha +Venessa +Yvonne +Alice +Antoinette +Bailey +Breanne +Carmen +Christie +Debra +Desirae +Destiny +Elena +Elisha +Genevieve +Jacquelyn +Jade +Jane +Janell +Janet +Jayme +Jeanette +Jenifer +Johanna +Karla +Krystle +Laurie +Lesley +Lorena +Lyndsay +Lynette +Maggie +Maureen +Mollie +Noelle +Racheal +Roberta +Rochelle +Shelley +Alisa +Alissa +Annette +Blair +Celeste +Connie +Cristina +Daisy +Darcy +Jana +Jodie +Jordan +Kacey +Kassandra +Kerry +Lacie +Leanne +Mayra +Sherri +Taryn +Tasha +Terra +Terri +Toni +Trina +Adriana +Beverly +Callie +Carol +Cody +Devon +Elise +Gloria +Gretchen +Hanna +Hollie +Jackie +Jena +Lara +Lillian +Lynn +Paula +Raquel +Rena +Rosa +Rosalie +Rosemary +Selena +Sheri +Sonja +Sylvia +Tamika +Teri +Tracey +Tricia +Yvette +Abbey +Anastasia +Aspen +Athena +Bianca +Brandon +Catrina +Chasity +Cherise +Christi +Chrystal +Cindy +Claudia +Constance +Cori +Daniela +Darcie +Darlene +Deidre +Evelyn +Faith +Gillian +Janice +Joann +Josephine +Julianne +Keri +Kristal +Lana +Latisha +Lorraine +Lucy +Lynsey +Rhonda +Rita +Sadie +Sherry +Sierra +Sonia +Tess +Tia +Tiffani +Tiffanie +Tracie +Andria +Annamarie +Chanel +Danelle +Danica +Dayna +Guadalupe +Harmony +Hope +Janae +Janna +Jean +Judith +Julianna +Justina +Kali +Kathy +Katy +Kerri +Kristie +Krysta +Kyra +Lena +Maribel +Marquita +Melisa +Michael +Michaela +Nikki +Nora +Penny +Ranae +Rhiannon +Savanna +Stevie +Tabatha +Tana +Ali +Alycia +Alyson +Angelique +Angie +Ariana +Ashlie +Asia +Becky +Bobbi +Casandra +Celina +Chantell +Christin +Clara +Dena +Dolores +Elaine +Elisa +Elyse +Frances +Georgia +Ginger +Helen +Ivy +Janine +Jason +Jessi +Joanne +Karin +Karina +Kasandra +Keely +Kerrie +Kimberley +Kyla +Kylie +Lea +Madeline +Maira +Malissa +Marina +Marisol +Marlena +Marlene +Marsha +Micaela +Nichelle +Rhianna +Rosanna +Ruby +Ryann +Sally +Sasha +Shaina +Staci +Tami +Tammi +Tarah +Vicki +Adrianne +Alaina +Alanna +Anthony +Antonia +Ariel +Arielle +Aurora +Austin +Beatrice +Betsy +Brittani +Cameron +Candyce +Cari +Carina +Carlee +Carlie +Cassi +Chelsi +Cherie +Christian +Coleen +Corey +Corina +Corinne +Cristal +Davina +Desarae +Elissa +Emilee +Ericka +Esperanza +Fawn +Hailey +Holli +Irene +Jaimee +Janel +Janessa +Janette +Jeannie +Jocelyn +Joyce +Judy +Kaci +Kacie +Kaley +Kandice +Karlee +Katelin +Keegan +Kelsi +Kelsie +Krysten +Kylee +Leann +Lee +Leia +Leila +Linsey +Loretta +Lorie +Louisa +Mandi +Mari +Marian +Marjorie +Mercedes +Merry +Misti +Nadine +Natalia +Patrice +Pauline +Renae +Rosalinda +Salina +Sondra +Starla +Stefani +Stephani +Susanna +Susie +Tabetha +Talia +Thao +Vivian +Jessica +Amanda +Jennifer +Ashley +Sarah +Nicole +Megan +Stephanie +Brittany +Heather +Elizabeth +Melissa +Danielle +Amber +Rachel +Emily +Christina +Erin +Michelle +Amy +Rebecca +Laura +Sara +Crystal +Andrea +Jamie +Kimberly +Lauren +Lindsey +Tiffany +Kelly +Katherine +Samantha +Angela +Vanessa +Kathryn +Lisa +Shannon +Courtney +Lindsay +Cassandra +Kristen +Mary +Anna +Christine +Alicia +Katie +Kristin +Chelsea +Erica +Allison +Holly +Jenna +Julie +Tara +Krystal +Kristina +April +Nichole +Natalie +Kelsey +Victoria +Monica +Molly +Desiree +Meghan +Valerie +Jacqueline +Margaret +Caitlin +Erika +Rachael +Kathleen +Julia +Kendra +Leah +Maria +Alexandra +Catherine +Veronica +Brandi +Patricia +Natasha +Felicia +Whitney +Stacey +Alexis +Brittney +Krista +Brianna +Heidi +Karen +Morgan +Tanya +Alison +Brandy +Miranda +Sabrina +Brooke +Candice +Melanie +Kara +Leslie +Carrie +Meagan +Alisha +Sheena +Alyssa +Kari +Kate +Kelli +Bethany +Jill +Mallory +Shawna +Audrey +Autumn +Katrina +Stacy +Cynthia +Deanna +Diana +Lacey +Ashleigh +Cassie +Dana +Jaclyn +Janelle +Krystle +Monique +Teresa +Tina +Carly +Dawn +Hannah +Anne +Jasmine +Misty +Renee +Savannah +Adrienne +Kristi +Taryn +Abigail +Ashlee +Carissa +Casey +Colleen +Kirsten +Tracy +Angelica +Brenda +Candace +Claire +Gina +Jenny +Rebekah +Sandra +Susan +Dominique +Kayla +Marissa +Tamara +Ann +Stefanie +Bonnie +Briana +Jillian +Jordan +Robin +Sierra +Tabitha +Cheryl +Denise +Jessie +Mindy +Pamela +Theresa +Angel +Katharine +Kristine +Linda +Lydia +Chantel +Joanna +Marie +Melinda +Michele +Tasha +Trisha +Barbara +Cara +Elise +Hillary +Jaime +Kelley +Nancy +Shelby +Alexandria +Desirae +Joy +Meredith +Serena +Shana +Shanna +Sharon +Carla +Chelsey +Christy +Ellen +Jacquelyn +Kristy +Toni +Tonya +Yolanda +Aubrey +Beth +Breanna +Brianne +Bridget +Caroline +Carolyn +Cristina +Deborah +Jolene +Kaitlyn +Kira +Lori +Randi +Sophia +Suzanne +Tia +Yvonne +Audra +Brandie +Donna +Genevieve +Haley +Jami +Kaitlin +Kellie +Maggie +Mandy +Melody +Michaela +Nina +Raquel +Shauna +Summer +Wendy +Abby +Aimee +Alissa +Cassidy +Christa +Claudia +Diane +Elisa +Jeanette +Katelyn +Mackenzie +Marisa +Robyn +Rose +Virginia +Helen +Jayme +Justine +Lacy +Nikki +Sylvia +Teri +Ana +Angelina +Annette +Annie +Chandra +Charlene +Destiny +Jackie +Jena +Keri +Latisha +Martha +Naomi +Paige +Sasha +Shantel +Sheila +Sydney +Adriana +Allyson +Ashlie +Carmen +Janet +Jenifer +Jennie +Jodi +Johanna +Lara +Latoya +Lyndsey +Mariah +Noelle +Paula +Rachelle +Taylor +Tiffani +Britney +Chantelle +Charlotte +Cindy +Daisy +Elisabeth +Elyse +Gabrielle +Hilary +Julianne +Larissa +Rochelle +Terri +Traci +Trista +Alana +Alisa +Ariel +Bianca +Blair +Breanne +Callie +Elena +Gretchen +Hayley +Hollie +Irene +Juanita +Kasey +Kendall +Kristie +Leanna +Mayra +Michael +Mollie +Priscilla +Ruth +Sandy +Shayna +Staci +Stacie +Tabatha +Tammy +Tera +Amelia +Amie +Antoinette +Athena +Bobbi +Chanel +Cheri +Christie +Corey +Debra +Elisha +Emma +Hope +Jana +Jody +Keely +Leticia +Lorena +Lyndsay +Olivia +Regina +Ryan +Sadie +Savanna +Tessa +Tricia +Angelique +Anita +Becky +Brenna +Camille +Cody +Corinne +Dianna +Ebony +Ericka +Esther +Eva +Gwendolyn +Hailey +Janna +Jean +Jesse +Katy +Linsey +Madison +Meaghan +Rosa +Shayla +Adrianna +Alice +Bernadette +Caitlyn +Casie +Chelsie +Christian +Chrystal +Clara +Daniel +Dena +Eileen +Eliza +Esmeralda +Felisha +Frances +Jade +Jane +Janette +Kerri +Kimberlee +Kyra +Laci +Latasha +Laurel +Laurie +Lea +Leann +Leigh +Lora +Nadine +Rita +Roberta +Sally +Shelley +Sonia +Sonya +Stevie +Tegan +Terra +Tiffanie +Tori +Abbey +Adriane +Alaina +Alejandra +Alexa +Angie +Antonia +Ashely +Breann +Brittny +Cari +Catrina +Celina +Charity +Cherie +Clare +Clarissa +Corina +Cortney +Darcy +Devin +Fallon +Janice +Jasmin +Jenelle +Jocelyn +Joyce +Justina +Kacey +Kaley +Kassandra +Kathrine +Kathy +Kyla +Kyle +Leanne +Lee +Lesley +Lillian +Lynette +Madeline +Mandi +Marina +Marisela +Maureen +Rena +Roxanne +Selina +Shaina +Shea +Shelly +Sherri +Tanisha +Tess +Tracey +Valarie +Ariana +Bailey +Blanca +Bobbie +Brittani +Brittni +Carol +Cassi +Celeste +Chanelle +Charmaine +Christen +Ciara +Corrine +Danette +Dayna +Devon +Elicia +Francesca +Gillian +Grace +Guadalupe +Ivy +James +Jeanne +Jeannette +Joann +Judy +Kady +Kami +Karin +Karina +Karissa +Karla +Kassie +Kay +Kenna +Keshia +Kirstin +Kristal +Krystina +Kylie +Ladonna +Leandra +Leeann +Lena +Loretta +Lucy +Lynn +Malissa +Margo +Marilyn +Marisol +Maryann +Moriah +Nadia +Nathan +Nicolette +Patrice +Racheal +Rhea +Rhonda +Richelle +Rosemary +Ruby +Ryann +Salina +Shanon +Sherry +Silvia +Sonja +Sophie +Tania +Tawny +Trina +Vicki +Yvette +Abbie +Alexandrea +Alma +Alyse +Andrew +Ashli +Billie +Candy +Carey +Carlie +Casandra +Cecilia +Chloe +Christi +Colette +Connie +Constance +Cori +Corrie +Danelle +Dani +Darcie +Darla +Darlene +Debbie +Echo +Elaine +Elissa +Eryn +Gianna +Gloria +Hana +Hanna +Holli +Iris +Jacklyn +Janae +Janel +Janell +Jeanna +Jeannie +Jenae +Jessika +Jodie +June +Kali +Karly +Kasandra +Katelin +Kelsi +Kiera +Kim +Krysta +Krystin +Kylee +Lacie +Lakisha +Lana +Leona +Lia +Lily +Lindsy +Louise +Lucille +Maegan +Marcy +Marianne +May +Mckenna +Mia +Micaela +Myra +Myrna +Noel +Nora +Nyssa +Odessa +Phuong +Reanna +Rikki +Savanah +Selena +Shari +Sheri +Simone +Tamika +Tamra +Tristan +Tyra +Jessica +Amanda +Ashley +Jennifer +Sarah +Brittany +Nicole +Megan +Stephanie +Heather +Melissa +Amber +Elizabeth +Emily +Lauren +Rachel +Sara +Danielle +Erin +Laura +Michelle +Amy +Kimberly +Samantha +Crystal +Katherine +Tiffany +Rebecca +Christina +Katie +Andrea +Lindsey +Vanessa +Lisa +Jamie +Kathryn +Kelly +Lindsay +Shannon +Angela +Courtney +Whitney +Kristen +Cassandra +Kristin +Erica +Alicia +Allison +Christine +Anna +Chelsea +Hannah +Mary +Kayla +Tara +Natalie +Victoria +Krystal +Holly +Jenna +Julie +Caitlin +Natasha +Mallory +Nichole +Valerie +Catherine +Alexandra +Monica +Kristina +April +Julia +Kelsey +Krista +Molly +Erika +Kathleen +Brittney +Meghan +Jacqueline +Kendra +Leah +Alyssa +Katrina +Patricia +Brandi +Brooke +Desiree +Jordan +Kara +Margaret +Morgan +Veronica +Sabrina +Brianna +Alison +Angelica +Maria +Renee +Leslie +Alisha +Lacey +Stacy +Abigail +Audrey +Bethany +Rachael +Carrie +Dana +Diana +Felicia +Brandy +Katelyn +Casey +Kelli +Marissa +Melanie +Stacey +Tracy +Tamara +Monique +Tanya +Heidi +Jasmine +Rebekah +Savannah +Alexis +Ashleigh +Briana +Christa +Ashlee +Cassie +Cynthia +Jessie +Janelle +Miranda +Shawna +Candice +Carly +Karen +Kate +Meagan +Misty +Robin +Anne +Brenda +Dawn +Emma +Jillian +Shelby +Teresa +Candace +Colleen +Jill +Pamela +Caroline +Angel +Deanna +Dominique +Gina +Hillary +Jaclyn +Kari +Sandra +Taylor +Theresa +Aubrey +Kaitlin +Adrienne +Alexandria +Denise +Elise +Olivia +Tabitha +Tina +Amelia +Autumn +Brianne +Bridget +Claire +Jaime +Kristine +Lori +Meredith +Paige +Tessa +Angelina +Cara +Breanna +Hilary +Jenny +Katharine +Lacy +Mandy +Marie +Martha +Nancy +Rachelle +Randi +Roxanne +Sierra +Toni +Callie +Carmen +Carolyn +Christy +Grace +Jolene +Linda +Melinda +Robyn +Sheena +Sophia +Susan +Sydney +Brittani +Carissa +Christie +Cindy +Justine +Kirsten +Krystle +Madison +Paula +Raquel +Sasha +Tonya +Trisha +Virginia +Alissa +Bonnie +Hayley +Kelley +Maggie +Regina +Abby +Aimee +Bailey +Bianca +Chantel +Chelsey +Gabrielle +Haley +Kristi +Kristy +Naomi +Rochelle +Ruth +Shanna +Sheila +Sylvia +Taryn +Tasha +Wendy +Ann +Barbara +Camille +Jami +Jana +Joanna +Kaitlyn +Kaylee +Michaela +Mindy +Nina +Shantel +Stefanie +Adriana +Alana +Alisa +Antoinette +Ashlie +Britney +Carla +Cassidy +Ebony +Genevieve +Jacquelyn +Jade +Jena +Kellie +Meaghan +Nikki +Rhiannon +Rose +Shana +Terra +Ali +Alyson +Chelsie +Deborah +Hope +Johanna +Kassandra +Marisa +Maureen +Mollie +Nikita +Savanna +Tia +Yolanda +Abbey +Charity +Charlene +Darcy +Desirae +Destiny +Devon +Elisa +Jodi +Kali +Mackenzie +Mallorie +Mia +Priscilla +Ryan +Sharon +Sonia +Alice +Ana +Annette +Ariel +Ashton +Bobbie +Brittni +Chandra +Chantelle +Cortney +Debra +Diane +Elena +Ellen +Helen +Jeanette +Kacey +Karla +Lara +Lesley +Madeline +Margarita +Mayra +Melody +Serena +Shauna +Sonya +Summer +Tammy +Trista +Allyson +Ashly +Aspen +Bernadette +Brenna +Cecilia +Cheri +Cherie +Constance +Cristina +Elyse +Jackie +Janell +Janessa +Janice +Karissa +Katy +Kayleigh +Keri +Kira +Kyla +Larissa +Laurel +Leigh +Lyndsey +Mandi +Maranda +Sally +Alexa +Caitlyn +Carol +Charissa +Charlotte +Cheryl +Ciara +Colette +Corrie +Deidre +Donna +Elaine +Elisabeth +Elisha +Ericka +Gillian +Guadalupe +Halley +Janae +Jesse +Josephine +Joy +Leticia +Lucy +Lydia +Nadine +Ruby +Savanah +Shayla +Shelly +Sheree +Sheri +Sondra +Stevie +Suzanne +Traci +Tricia +Yvonne +Afton +Alysha +Annie +Audra +Belinda +Beth +Blair +Bobbi +Breanne +Christen +Esmeralda +Frances +Francine +Hallie +Hanna +Jane +Jenifer +Kaley +Kasey +Kendall +Krysta +Latoya +Lena +Lillian +Meghann +Michael +Myra +Noelle +Roberta +Shaina +Sonja +Stacie +Tabatha +Talia +Terri +Valarie +Anita +Blanca +Celina +Chanel +Christian +Corey +Cori +Corinne +Darlene +Elissa +Eva +Evelyn +Isabel +Ivy +Janine +Joann +Juanita +Kacie +Keisha +Kerry +Kimberlee +Kristyn +Leanna +Lia +Lucinda +Lynsey +Maegan +Mariah +Michele +Nicholas +Nicolette +Norma +Racheal +Raven +Rita +Rosa +Roxann +Sandy +Shawn +Shayna +Shelley +Sherry +Tegan +Tracey +Zoe +Adrianna +Alaina +Alex +Allie +Alycia +Alysia +Antonia +Beverly +Brandon +Breann +Brittny +Catrina +Celeste +Chrystal +Cory +Daisy +Eliana +Esther +Felisha +Jaimie +Janet +Janette +Janna +Jeannette +Jessi +Joanne +Jocelyn +Joyce +Judy +Kailey +Katelin +Kathrine +Kati +Kiley +Kimberley +Kirstin +Kylie +Lacee +Latisha +Leanne +Loren +Lynn +Madelyn +Marcia +Marina +Marlene +Nadia +Rachele +Ramona +Rhonda +Rikki +Sarena +Shantell +Sherri +Staci +Stacia +Stephany +Tess +Alexander +Alexandrea +Alina +Alma +Anastasia +Andrew +Angie +Arielle +Aubrie +Avalon +Bridgette +Britta +Caley +Carlie +Caryn +Cassy +Chantal +Cherish +Christin +Cinthia +Clarissa +Claudia +Coleen +Connie +Corie +Corrine +Cristal +Dakota +Danae +Danette +Danica +Daniela +Dayna +Deana +Dorothy +Elicia +Eliza +Evan +Francesca +Georgia +Gwendolyn +Jacey +Jayme +Jean +Jennie +Jerrica +Jody +Judith +Justina +Kady +Kaila +Kami +Keli +Kelsie +Kerri +Keshia +Kori +Kristie +Kyle +Latasha +Leandra +Leeann +Lindy +Linh +Liza +Lucia +Lyndi +Lynette +Marcella +Marisela +Marlena +Marta +Mercedes +Mikaela +Miriam +Nakita +Nora +Patrice +Rebbecca +Richelle +Rocio +Sadie +Salena +Samatha +Shari +Sheryl +Starla +Susie +Tanisha +Tarah +Tiara +Tosha +Venessa +Yesenia +Jessica +Ashley +Amanda +Sarah +Jennifer +Brittany +Nicole +Stephanie +Megan +Rachel +Danielle +Amber +Heather +Elizabeth +Lauren +Emily +Samantha +Amy +Melissa +Kayla +Michelle +Rebecca +Laura +Christina +Katherine +Erin +Sara +Kimberly +Andrea +Crystal +Kelly +Chelsea +Tiffany +Lindsey +Jamie +Kelsey +Shannon +Hannah +Katie +Lisa +Courtney +Lindsay +Vanessa +Whitney +Mary +Caitlin +Kathryn +Erica +Alexandra +Cassandra +Christine +Alicia +Angela +Anna +Allison +Jenna +Alyssa +Kendra +Jacqueline +Kristen +Kristin +Natalie +Kathleen +Brianna +Mallory +Monica +Kristina +Victoria +Natasha +Tara +Holly +Desiree +Julie +Meghan +Maria +Molly +Catherine +Felicia +Brandi +Erika +Leah +Veronica +April +Nichole +Rachael +Morgan +Ashleigh +Katrina +Krista +Brittney +Brandy +Jordan +Leslie +Alison +Dana +Heidi +Krystal +Alexis +Monique +Brooke +Julia +Renee +Melanie +Patricia +Ashlee +Kara +Valerie +Angelica +Marissa +Kaitlin +Sabrina +Stacy +Audrey +Karen +Miranda +Paige +Taylor +Alisha +Bethany +Carrie +Rebekah +Margaret +Savannah +Caroline +Justine +Susan +Katelyn +Adrienne +Diana +Jasmine +Stacey +Autumn +Briana +Candice +Teresa +Theresa +Anne +Candace +Jaclyn +Kelli +Robin +Sandra +Shawna +Janelle +Jillian +Meagan +Breanna +Casey +Cassie +Jacquelyn +Kristi +Kristine +Lacey +Madison +Sasha +Tamara +Tanya +Tina +Carolyn +Joanna +Linda +Abigail +Denise +Haley +Sheena +Tasha +Tonya +Abby +Alexandria +Allyson +Emma +Jenny +Kari +Brenda +Christa +Dominique +Jessie +Kaitlyn +Madeline +Olivia +Amelia +Carly +Chelsey +Elise +Gina +Kate +Kellie +Kira +Marie +Meredith +Aimee +Claire +Gabrielle +Grace +Jaime +Jill +Katharine +Kaylee +Kristy +Maggie +Regina +Trisha +Angel +Angelina +Cynthia +Destiny +Misty +Naomi +Rachelle +Shauna +Sophia +Alexa +Barbara +Cara +Cassidy +Dawn +Hilary +Pamela +Rochelle +Sydney +Brittani +Hillary +Kirsten +Mindy +Nancy +Randi +Sierra +Tabitha +Adriana +Anastasia +Aubrey +Bonnie +Brenna +Brianne +Bridget +Carissa +Carol +Cheryl +Desirae +Elyse +Kelley +Mackenzie +Mandy +Marisa +Roxanne +Toni +Tracy +Charity +Elisabeth +Janet +Lyndsey +Raquel +Robyn +Rose +Shayla +Stefanie +Stevie +Ann +Annie +Bailey +Bernadette +Britney +Christy +Cortney +Deanna +Elena +Faith +Hayley +Lacy +Mariah +Mayra +Melinda +Nina +Ryan +Shelby +Staci +Stephany +Annette +Ariel +Beth +Colleen +Ellen +Shanna +Sonia +Summer +Sylvia +Tessa +Yesenia +Alyse +Breanne +Chantel +Charlotte +Diane +Elisha +Gloria +Jodi +Kassandra +Kayleigh +Krysta +Lara +Laurel +Suzanne +Bianca +Callie +Chandra +Charlene +Chelsie +Cori +Deborah +Ericka +Jenifer +Kasey +Kyla +Latoya +Lydia +Marina +Matthew +Savanna +Alissa +Antoinette +Aspen +Brandie +Breann +Britany +Caitlyn +Chanel +Ebony +Elisa +Eva +Frances +Francesca +Gillian +Helen +Jackie +Jade +Jami +Janae +Jane +Jolene +Joy +Joyce +Karissa +Krystina +Larissa +Leigh +Lori +Martha +Michaela +Priscilla +Renae +Shana +Sheila +Wendy +Yolanda +Adrianne +Aubrie +Audra +Bridgette +Camille +Carla +Carmen +Cayla +Christen +Christie +Ciara +Esther +Genevieve +Janell +Julianne +Kathrine +Katy +Kendall +Kimberlee +Latasha +Lea +Leann +Leticia +Lynette +Melody +Michael +Paula +Sadie +Savanah +Shantel +Shelley +Tori +Virginia +Alexandrea +Alysha +Anita +Ashlie +Ayla +Celeste +Claudia +Darcy +Devin +Dianna +Esmeralda +Hailey +Hanna +Hope +Jana +Jesse +Joelle +Josephine +Judith +Kacey +Kacie +Kali +Kelsi +Kelsie +Kerri +Krystle +Leeann +Lynn +Malissa +Mara +Meaghan +Nadine +Nicolette +Nikita +Nikki +Noelle +Ruby +Ruth +Simone +Sonya +Talia +Terra +Tiffanie +Traci +Yvonne +Alana +Alyson +Amie +Andria +Ashly +Britni +Cari +Casandra +Cecilia +Chantal +Chantelle +Christiana +Chrystal +Cody +Constance +Corey +Corina +Cristina +Deidre +Donna +Dorothy +Elaine +Gabriela +Holli +Janna +Jena +Jennie +Joann +Joanne +Jocelyn +Johanna +Kaleigh +Kati +Keri +Keshia +Kristyn +Leanne +Marisela +Marsha +Maya +Mckenzie +Mikayla +Reyna +Rosa +Sage +Serena +Shaina +Shelly +Stella +Terri +Tricia +Aaron +Aisha +Alice +Allyssa +Alma +Alycia +Ana +Andrew +Angie +Ashlea +Athena +Brittaney +Brittni +Cassondra +Chloe +Christian +Christin +Cindy +Clara +Dannielle +Dena +Domonique +Felisha +Gwendolyn +Hallie +Iris +Janette +Janice +Jasmin +Jayme +Jean +Jeanette +Jeanne +Jody +Josie +Juanita +Kacy +Kaley +Karina +Kaylie +Kerry +Kiley +Kori +Kyle +Kyra +Lillian +Lorena +Lyndsay +Lynsey +Madelyn +Marlena +Maureen +Norma +Regan +Rhiannon +Richelle +Rikki +Sally +Shawnee +Shayna +Shea +Sheree +Steffanie +Stephenie +Tamera +Tamra +Tana +Tania +Taryn +Tiana +Tiffani +Tracey +Tyler +Zachary +Alecia +Alysia +Antonia +Arielle +Ashely +Ashton +Betty +Blanca +Brittnee +Brittnie +Brittny +Caley +Cameron +Carey +Cherie +Clarissa +Connie +Cory +Cristal +Danica +Daphne +Dayna +Devon +Eileen +Eleanor +Emilee +Gianna +Guadalupe +Irene +Janessa +Janine +Jerica +John +Joni +Justina +Kaela +Kaila +Kailey +Karie +Karla +Kaylene +Kellyn +Kimber +Krystyna +Kylie +Latisha +Leanna +Lee +Lena +Lesley +Lindy +Marcella +Marisol +Mattie +Meghann +Michele +Miriam +Mollie +Nakia +Natalia +Nicolle +Nikole +Noel +Rita +Roberta +Rosemary +Salina +Shanae +Shantell +Shay +Sherry +Skye +Sofia +Sonja +Sophie +Tabatha +Tammy +Tanisha +Tarah +Tasia +Tatiana +Tegan +Tera +Teri +Tosha +Tracie +Trista +Valarie +Yuri +Yvette +Jessica +Ashley +Amanda +Sarah +Jennifer +Brittany +Stephanie +Nicole +Megan +Elizabeth +Amber +Lauren +Heather +Rachel +Emily +Danielle +Samantha +Kayla +Michelle +Melissa +Tiffany +Laura +Katherine +Rebecca +Chelsea +Christina +Sara +Amy +Andrea +Courtney +Hannah +Crystal +Erin +Caitlin +Kelsey +Jamie +Kimberly +Kelly +Alexandra +Vanessa +Lisa +Alyssa +Lindsey +Cassandra +Alicia +Angela +Anna +Kathryn +Katie +Allison +Erica +Mary +Christine +Shannon +Victoria +Whitney +Lindsay +Molly +Kendra +Kristin +Jenna +Natalie +Kristen +Morgan +Jacqueline +Natasha +Tara +Erika +Holly +Rachael +Kathleen +Kristina +Leah +Monica +Brittney +Jasmine +Brianna +Taylor +Kara +Brooke +Catherine +Maria +Nichole +Julie +Katelyn +Krista +April +Felicia +Katrina +Krystal +Veronica +Jordan +Kaitlin +Julia +Mallory +Valerie +Desiree +Brandi +Patricia +Alisha +Brandy +Margaret +Meghan +Monique +Leslie +Casey +Chelsey +Lacey +Savannah +Ashlee +Dana +Jillian +Abigail +Ashleigh +Audrey +Melanie +Paige +Kaitlyn +Briana +Cynthia +Miranda +Sabrina +Alexis +Angelica +Breanna +Autumn +Bethany +Brenda +Candice +Marissa +Rebekah +Shawna +Meagan +Alexandria +Alison +Bailey +Carissa +Diana +Claire +Gina +Heidi +Kelli +Stacey +Grace +Renee +Anne +Cassie +Emma +Gabrielle +Joanna +Tanya +Angelina +Bianca +Carolyn +Janelle +Misty +Stacy +Toni +Carly +Haley +Justine +Sasha +Sierra +Susan +Carrie +Mackenzie +Sydney +Candace +Jaclyn +Karen +Mariah +Michaela +Nancy +Rachelle +Aubrey +Caroline +Madeline +Raquel +Tamara +Britney +Kate +Kirsten +Kristi +Madison +Michele +Olivia +Randi +Suzanne +Adrienne +Anastasia +Angel +Bonnie +Destiny +Elise +Hilary +Jill +Kari +Robin +Tracy +Ariel +Barbara +Brianne +Denise +Kyla +Larissa +Melinda +Meredith +Sandra +Jenny +Kristine +Robyn +Roxanne +Shelby +Tasha +Alexa +Hayley +Jessie +Kelley +Kylie +Teresa +Alissa +Caitlyn +Charlotte +Chelsie +Desirae +Eva +Justina +Kelsie +Linda +Lydia +Maggie +Marie +Nina +Shauna +Tabitha +Theresa +Abby +Brittani +Claudia +Deanna +Jacquelyn +Jaime +Jolene +Kacey +Karina +Marisa +Mayra +Priscilla +Ruth +Taryn +Tina +Yolanda +Amelia +Beth +Christa +Christie +Colleen +Cortney +Dawn +Dominique +Elisabeth +Frances +Hillary +Jade +Karissa +Kristy +Kyra +Lacy +Naomi +Rochelle +Shelly +Stefanie +Stevie +Tessa +Tonya +Aimee +Ann +Bridget +Elaine +Janet +Jeanette +Jenifer +Karla +Karli +Kira +Lara +Leanne +Mandy +Maureen +Nikki +Pamela +Rose +Sophia +Staci +Trisha +Allyson +Alysha +Antoinette +Brenna +Hanna +Hope +Katelin +Kellie +Lea +Lyndsey +Shayla +Sheena +Simone +Tiffani +Wendy +Yvonne +Adriana +Alyson +Ashlie +Bernadette +Brittanie +Camille +Cara +Cassidy +Charlene +Ebony +Elena +Ellen +Jami +Kali +Kasey +Kassandra +Kelsi +Laurel +Lily +Nicolle +Ruby +Sadie +Shantel +Sheila +Summer +Tia +Virginia +Adrian +Alysia +Ariana +Audra +Carmen +Chanel +Chantel +Cheryl +Elisa +Elyse +Genevieve +Jacklyn +Katelynn +Katharine +Kerry +Latasha +Leann +Lori +Mckenzie +Melody +Sharon +Sonja +Alana +Ana +Angelique +Bridgette +Celeste +Chandra +Cheyenne +Clarissa +Devon +Donna +Ericka +Ivy +Jaimie +Janae +Jena +Joy +Julianne +Kaci +Kaley +Katlyn +Kylee +Leigh +Lena +Leticia +Lillian +Lucy +Marina +Mindy +Rikki +Rosa +Savanna +Shayna +Stacie +Stephany +Tabatha +Abbey +Adrianne +Ali +Alice +Alisa +Amie +Annette +Annie +Antonia +Ashton +Breann +Breanne +Caley +Cameron +Carla +Chrystal +Ciara +Constance +Corina +Cristina +Daniella +Deborah +Diane +Faith +Francesca +Gabriella +Helen +Jaleesa +Jane +Janice +Jennie +Jerrica +Jessi +Jody +Johanna +Josephine +Kaleigh +Kaylee +Krysta +Krystle +Martha +Nora +Regina +Sherry +Skye +Sonya +Venessa +Yvette +Aisha +Alecia +Alycia +Arielle +Ashli +Bobbi +Bobbie +Brittnee +Casandra +Charissa +Charity +Chloe +Cierra +Cory +Dara +Darcy +Deidre +Devin +Eileen +Evelyn +Fallon +Irene +Jana +Joann +Jocelyn +Jodi +Juliana +Kathrine +Kerri +Kimber +Lacie +Logan +Lyndsay +Lynn +Mara +Matthew +Mia +Nicolette +Paula +Rena +Rocio +Serena +Shanna +Shelley +Sonia +Sylvia +Tarah +Tiana +Tori +Traci +Yesenia +Aleisha +Ashlynn +Athena +Brandie +Britany +Brittaney +Callie +Carol +Cecilia +Chanelle +Chantal +Cherelle +Christy +Cori +Corinne +Cristal +Danelle +Dani +Danica +Deidra +Destinee +Eleanor +Georgia +Hollie +Jackie +Jeanne +Juanita +Kaela +Kala +Katheryn +Kayleigh +Kaylene +Keisha +Kristyn +Kyle +Laci +Latoya +Lorena +Lynsey +Madeleine +Madelyn +Maegan +Margarita +Meaghan +Natalia +Nikita +Phylicia +Racheal +Reina +Sage +Shay +Tatiana +Tiara +Tierra +Tiffanie +Tracey +Tyler +Adilene +Adrianna +Alaina +Allyssa +Alyse +Ambrosia +Anita +Annalise +Annmarie +Ashlei +Ashly +Avery +Beverly +Breana +Bridgett +Brittni +Bryanna +Carley +Carli +Cecily +Chantelle +Cheree +Cindy +Clara +Codi +Corey +Corinna +Corrie +Desiray +Diandra +Eryn +Felisha +Gabriela +Gail +Geneva +Gloria +Gretchen +Hailey +Ilana +Iris +Janay +Janee +Janessa +Jazmine +Jean +Jerica +Josie +Kacie +Kaila +Kailey +Kandice +Kassie +Kati +Katy +Kayleen +Kiley +Kimberlee +Kimberley +Kindra +Kirstin +Kristie +Leila +Malissa +Marcella +Mari +Marlena +Micaela +Micah +Mikayla +Mollie +Monika +Myra +Nadia +Nadine +Noel +Noemi +Piper +Rae +Renae +Sammantha +Savanah +Shaina +Shanda +Shanelle +Shea +Shyla +Stella +Stephani +Tammy +Tania +Tenisha +Terra +Valentina +Ashley +Jessica +Amanda +Sarah +Brittany +Samantha +Jennifer +Nicole +Stephanie +Emily +Megan +Elizabeth +Lauren +Amber +Rachel +Kayla +Melissa +Hannah +Kelsey +Danielle +Heather +Michelle +Chelsea +Katherine +Rebecca +Sara +Courtney +Tiffany +Christina +Laura +Amy +Andrea +Alyssa +Erin +Kelly +Crystal +Caitlin +Alexandra +Vanessa +Cassandra +Kimberly +Alicia +Lindsey +Kathryn +Erica +Victoria +Mary +Anna +Shannon +Jamie +Jordan +Brianna +Katie +Kristen +Natalie +Christine +Jasmine +Brittney +Allison +Angela +Lisa +Taylor +Kendra +Kristin +Molly +Morgan +Whitney +Lindsay +Tara +Jenna +Monica +Leah +Kristina +Marissa +Paige +Holly +Desiree +Abigail +Brandi +Erika +Katelyn +Maria +Catherine +Monique +Natasha +Jacqueline +Veronica +Breanna +Chelsey +Meghan +Brooke +Julie +Alexis +April +Kaitlin +Margaret +Julia +Patricia +Rachael +Alison +Briana +Melanie +Alisha +Brandy +Meagan +Valerie +Kathleen +Krista +Krystal +Mallory +Miranda +Nichole +Sabrina +Gabrielle +Alexandria +Kara +Kirsten +Bethany +Cynthia +Felicia +Kylie +Leslie +Renee +Audrey +Heidi +Katrina +Lacey +Rebekah +Anne +Kaitlyn +Sierra +Adriana +Bianca +Jessie +Madeline +Sydney +Caroline +Michaela +Alexa +Emma +Gina +Kaylee +Kelli +Mackenzie +Madison +Angel +Ashlee +Claire +Dana +Sasha +Savannah +Chantel +Jillian +Naomi +Angelica +Aubrey +Autumn +Carissa +Haley +Amelia +Bailey +Britney +Candace +Cara +Casey +Justine +Kari +Marie +Olivia +Ashleigh +Denise +Ellen +Teresa +Ariel +Candice +Deanna +Diana +Hayley +Meredith +Raquel +Toni +Anastasia +Carrie +Devin +Grace +Kristi +Robin +Sandra +Tessa +Theresa +Arielle +Brenda +Brianne +Hilary +Hope +Jaime +Karen +Kyla +Rachelle +Tanya +Alyson +Barbara +Carolyn +Elise +Jade +Joanna +Kristine +Marisa +Virginia +Aimee +Angelina +Brenna +Bridget +Charlene +Colleen +Destiny +Donna +Jacquelyn +Kellie +Kelsie +Nina +Shawna +Stacey +Susan +Tina +Carly +Cassie +Devon +Elisabeth +Jaclyn +Kate +Laurel +Linda +Tracy +Alissa +Allyson +Ann +Ashton +Caitlyn +Camille +Desirae +Janelle +Mariah +Melinda +Mercedes +Rose +Ruby +Shantel +Sheena +Shelby +Sophia +Stacy +Tabitha +Ashlie +Bonnie +Carmen +Casandra +Chantelle +Cristina +Dominique +Kacey +Kaila +Kendall +Priscilla +Randi +Tasha +Ana +Chloe +Dawn +Elyse +Jill +Kelley +Kylee +Leanna +Leigh +Adrienne +Alisa +Alyse +Chelsie +Elisa +Faith +Hillary +Janessa +Jeanette +Jenifer +Katharine +Kelsi +Lydia +Maggie +Sadie +Summer +Tamara +Taryn +Abby +Adrianna +Brittni +Cecilia +Elena +Jazmine +Juliana +Kira +Krystle +Lyndsey +Nicolette +Regina +Roxanne +Sonja +Stacie +Stefanie +Antoinette +Ashly +Callie +Cassidy +Chandra +Chantal +Danika +Eva +Jana +Janet +Jerica +Jocelyn +Joy +Juanita +Julianne +Karissa +Katy +Larissa +Leticia +Lily +Mandy +Melody +Nancy +Nikki +Stevie +Suzanne +Sylvia +Alana +Blanca +Breanne +Charity +Charlotte +Ebony +Ericka +Genevieve +Hanna +Jane +Jenny +Jolene +Justina +Kali +Kristie +Kristy +Meaghan +Rhiannon +Robyn +Shaina +Sonia +Tanisha +Tiana +Abbey +Alma +Alysha +Audra +Brittanie +Cheryl +Claudia +Cortney +Elaine +Eleanor +Gloria +Helen +Hollie +Jami +Kasandra +Kasey +Kassandra +Katelynn +Kayleigh +Kerri +Kirstin +Krysta +Lara +Mckenzie +Mia +Michele +Mindy +Mollie +Nadine +Shayla +Sheila +Sonya +Tia +Tonya +Zoe +Alice +Annette +Annie +Ariana +Aspen +Brittani +Cayla +Christy +Ciara +Darlene +Deborah +Esther +Irene +Isabel +Jackie +Jesse +Jessi +Jordyn +Josephine +Kacie +Kaley +Karina +Katelin +Kaylie +Kiara +Kimber +Lacy +Latisha +Lori +Lucy +Maegan +Marina +Mayra +Misty +Norma +Pamela +Paula +Serena +Shana +Skye +Staci +Sunny +Tess +Tiara +Tiffani +Traci +Yesenia +Adrianne +Alaina +Alex +Alexandrea +Alysia +Amie +Andria +Angelique +Brittny +Carla +Chanel +Cheyenne +Christie +Cierra +Corina +Daisy +Hailey +Jaimie +Janae +Jazmin +Johanna +Judith +Karla +Kiersten +Leann +Makayla +Martha +Natalia +Noel +Paris +Rochelle +Rosemary +Ruth +Salina +Savanna +Selina +Simone +Stacia +Stephany +Tabatha +Tatiana +Tracey +Trisha +Wendy +Yvette +Ali +Alix +Allie +Anita +Arianna +Ayla +Baylee +Beth +Blair +Bobbie +Breann +Cameron +Carol +Cassi +Cecily +Celia +Chelsi +Cherish +Christa +Chrystal +Ciera +Cindy +Clarissa +Cora +Cydney +Debra +Elisha +Eliza +Francesca +Gabriella +Gillian +Janna +Jasmin +Jayme +Jena +Kala +Karlee +Karlie +Kathrine +Kati +Katlyn +Kaylyn +Keely +Kelsea +Kortney +Kristian +Lacie +Leanne +Loren +Lorena +Lorin +Lynette +Lynnette +Maureen +Micaela +Mikayla +Moriah +Nikole +Paulina +Phoebe +Rena +Roberta +Rosa +Shanna +Shayna +Shea +Talia +Tori +Venessa +Yolanda +Yvonne +Aleah +Alecia +Alycia +Analisa +Anika +Anjelica +Annamarie +Annika +Antionette +Ashli +Audrianna +Aurora +Betty +Britany +Brittaney +Brittnie +Brook +Cari +Cassondra +Celeste +Charissa +Chastity +Cheri +Cherie +Cherise +Cody +Corey +Cori +Corinne +Cory +Danae +Deidra +Deidre +Devyn +Diamond +Dorothy +Ellie +Esmeralda +Eunice +Evelyn +Farrah +Gretchen +Iris +Jacklyn +Jessika +Jodi +Kalee +Kallie +Kayli +Keisha +Keri +Kerry +Kiera +Kimberlee +Kirstie +Krystin +Kyle +Laci +Latasha +Latoya +Laurie +Lea +Lillian +Lina +Marlene +Martina +Melisa +Michael +Precious +Racheal +Raeann +Reanna +Reina +Rhonda +Rita +Sarina +Shanelle +Shanice +Sharon +Shauna +Shelly +Sherry +Shirley +Sophie +Tarah +Tawni +Teri +Tierra +Trina +Jessica +Ashley +Amanda +Brittany +Sarah +Samantha +Megan +Lauren +Jennifer +Stephanie +Kayla +Nicole +Elizabeth +Emily +Rachel +Hannah +Chelsea +Alyssa +Danielle +Rebecca +Amber +Kelsey +Katherine +Melissa +Courtney +Heather +Alexandra +Michelle +Sara +Laura +Jordan +Caitlin +Tiffany +Taylor +Christina +Crystal +Cassandra +Erin +Amy +Lindsey +Kelly +Brianna +Andrea +Kimberly +Allison +Jamie +Anna +Erica +Kathryn +Jasmine +Alicia +Vanessa +Brittney +Victoria +Morgan +Natalie +Shannon +Angela +Katie +Molly +Alexis +Lindsay +Brooke +Mary +Shelby +Kristen +Lisa +Christine +Whitney +Ariel +Erika +Katelyn +Kristin +Marissa +April +Maria +Olivia +Paige +Briana +Julia +Brandi +Jacqueline +Leah +Bethany +Kaitlyn +Kara +Kendra +Meghan +Abigail +Alexandria +Holly +Miranda +Monica +Rachael +Gabrielle +Jenna +Julie +Breanna +Kathleen +Melanie +Sabrina +Katrina +Margaret +Catherine +Kristina +Natasha +Tara +Monique +Desiree +Haley +Krista +Patricia +Cynthia +Kaitlin +Krystal +Claire +Dana +Felicia +Sydney +Veronica +Kirsten +Nichole +Sierra +Audrey +Bianca +Madeline +Madison +Carly +Mercedes +Ashleigh +Jillian +Kelli +Savannah +Ashlee +Brandy +Candice +Carissa +Emma +Valerie +Angel +Angelica +Chelsey +Diana +Dominique +Grace +Janelle +Kylie +Leslie +Mackenzie +Mallory +Meagan +Aubrey +Destiny +Lacey +Tasha +Autumn +Caitlyn +Chloe +Justine +Mariah +Tamara +Alisha +Arielle +Karen +Tessa +Alison +Anne +Brenda +Caroline +Gina +Jaclyn +Susan +Bailey +Jade +Sophia +Adriana +Angelina +Britney +Carolyn +Chantel +Marie +Rebekah +Tabitha +Teresa +Theresa +Toni +Denise +Elise +Heidi +Kaylee +Michaela +Rochelle +Savanna +Shawna +Candace +Casey +Cassie +Cortney +Kari +Brittani +Robin +Tina +Alexa +Brianne +Cara +Elena +Hillary +Jacquelyn +Marisa +Misty +Rose +Stacy +Cheryl +Gabriela +Hilary +Kate +Kellie +Nancy +Naomi +Rachelle +Renee +Sandra +Stacey +Alissa +Brenna +Camille +Carrie +Cristina +Devon +Sasha +Sonya +Taryn +Abby +Adrianna +Adrienne +Aimee +Ana +Colleen +Elisabeth +Jaime +Jessie +Kaila +Kristine +Lydia +Randi +Raquel +Zoe +Ariana +Danica +Ellen +Genevieve +Hanna +Joanna +Kelsie +Larissa +Linda +Rhiannon +Shantel +Sheila +Allyson +Arianna +Bridget +Callie +Charlotte +Devin +Eva +Hayley +Kyra +Marina +Meredith +Regina +Roxanne +Yvette +Amelia +Anastasia +Antoinette +Bonnie +Clarissa +Claudia +Deanna +Donna +Faith +Hope +Kaley +Kassandra +Kyla +Nina +Paula +Robyn +Ruby +Ruth +Sadie +Tracy +Yolanda +Ann +Barbara +Cassidy +Elisa +Jaimie +Janae +Janessa +Jolene +Kacey +Kali +Karina +Kelley +Kendall +Kira +Kristi +Kylee +Lara +Melinda +Michele +Moriah +Serena +Shauna +Shayna +Stefanie +Summer +Tonya +Alisa +Angelia +Beth +Carla +Chelsie +Christa +Dakota +Danika +Dawn +Desirae +Jane +Jordyn +Josephine +Katharine +Kayleigh +Kiara +Kimberley +Kirstin +Laurel +Lucy +Maggie +Marcella +Maya +Priscilla +Stephany +Tia +Yesenia +Bernadette +Bobbie +Breann +Breanne +Cheyenne +Christy +Ciara +Corinne +Ebony +Gabriella +Gloria +Jodi +Krysta +Leticia +Lyndsey +Mandy +Mayra +Mckenna +Melody +Mia +Mikayla +Nicolette +Nikki +Racheal +Shayla +Shea +Tanisha +Tanya +Terra +Tori +Virginia +Alana +Alexandrea +Alycia +Antonia +Carolina +Chantelle +Cori +Deborah +Diane +Elyse +Ericka +Jackie +Jayme +Jill +Jocelyn +Johanna +Karissa +Karla +Kasey +Katelynn +Katlyn +Kaylin +Keely +Kelsi +Kerry +Kiley +Kori +Kristy +Kristyn +Lacie +Lori +Martha +Mindy +Mollie +Nora +Shaina +Shana +Tayler +Tess +Abbey +Alaina +Alanna +Alena +Alyssia +Angelique +Annette +Ashton +Audriana +Breana +Bree +Cayla +Cecilia +Chandra +Charlene +Connie +Corina +Daisy +Evelyn +Gretchen +Helen +Isabel +Janay +Janet +Janice +Jasmin +Jazmine +Jenny +Josie +Jourdan +Juliana +Kacie +Kailey +Lacy +Latasha +Leanna +Margarita +Marisol +Meaghan +Nicolle +Noelle +Richelle +Rikki +Shanna +Sharon +Simone +Stacie +Suzanne +Sylvia +Tiana +Wendy +Abbie +Alejandra +Alyson +Ambrosia +Annie +Ashlie +Athena +Bobbi +Bridgette +Brittni +Chantal +Chelsee +Daniella +Demi +Eliza +Emilie +Frances +Jami +Jenessa +Joy +Kaleigh +Kathy +Katlin +Keri +Laci +Lauryn +Leandra +Leann +Leigh +Lena +Liliana +Lillian +Lora +Makayla +Mara +Maranda +Marisela +Maureen +Mckenzie +Nikole +Pamela +Riley +Rosa +Shanae +Sky +Skylar +Stevie +Tarah +Tawny +Therese +Tierra +Traci +Trisha +Alannah +Alysha +Andria +Arianne +Ashlyn +Asia +Betty +Blanca +Brandie +Britni +Brittnee +Brittny +Carlee +Carmen +Casandra +Celina +Cindy +Clara +Clare +Cory +Darcy +Devan +Eileen +Elaina +Elaine +Hailey +Hallie +Irene +Jeanette +Jeannette +Jena +Jenifer +Jerica +Jessika +Juanita +Julianna +Julianne +Kaci +Kacy +Karlee +Karlie +Kayleen +Kaylyn +Kyndra +Latisha +Lea +Lily +Lorena +Luz +Lynn +Madelyn +Makenzie +Maricela +Micaela +Miriam +Natalia +Perla +Porsche +Sage +Sally +Sonia +Sonja +Sophie +Stormy +Tabatha +Tammy +Tera +Trista +Yvonne +Alexzandrea +Alice +Alina +Alma +Alysa +Annalise +Aspen +Avery +Baylee +Becky +Blake +Breonna +Bryanna +Carina +Carol +Cassondra +Cecelia +Cecily +Celeste +Celia +Chanel +Chante +Chelsi +Cierra +Danelle +Dara +Darlene +Debra +Deidra +Delaney +Devyn +Diamond +Dusty +Eden +Eleanor +Ella +Emilee +Esther +Felisha +Gillian +Iris +Ivy +Jacklyn +Jaimee +Jaymie +Jeri +Jesse +Justina +Kalyn +Karyn +Kassie +Katy +Kelci +Kendal +Kia +Kirstie +Kortney +Kourtney +Kyle +Laurie +Lindsy +Lindy +Logan +Louise +Lyndsay +Lynsey +Madalyn +Madeleine +Malissa +Maricruz +Marlee +Marley +Martika +Mikaela +Myranda +Nadia +Nichelle +Norma +Portia +Rae +Raeanne +Raina +Raven +Renae +Rhianna +Rhonda +Rosalind +Rosemary +Roxana +Shante +Shantell +Shelbi +Shelbie +Shelly +Susanna +Tracey +Tricia +Vanesa +Jessica +Ashley +Amanda +Sarah +Brittany +Samantha +Megan +Kayla +Emily +Stephanie +Jennifer +Rachel +Elizabeth +Hannah +Lauren +Nicole +Rebecca +Amber +Chelsea +Kelsey +Danielle +Shelby +Alyssa +Katherine +Alexandra +Michelle +Brianna +Courtney +Melissa +Erin +Heather +Taylor +Jordan +Victoria +Mariah +Anna +Amy +Christina +Sara +Andrea +Laura +Kimberly +Lindsey +Jasmine +Cassandra +Alexis +Crystal +Brittney +Katie +Kelly +Tiffany +Vanessa +Caitlin +Morgan +Mary +Kathryn +Jamie +Allison +Ariel +Molly +Julia +Brooke +Erica +Maria +Shannon +Marissa +Alicia +Briana +Miranda +Lisa +Breanna +Kristen +Leah +Meghan +Angela +Natalie +Lindsay +Paige +Jenna +Kaitlin +Christine +Kara +Natasha +Alexandria +Kaitlyn +Abigail +Haley +Holly +Katelyn +Kristina +Whitney +Olivia +Desiree +Erika +Kathleen +Kristin +Brandi +Catherine +Monique +Veronica +Kendra +Melanie +Rachael +Audrey +Madison +Nichole +Jacqueline +Gabrielle +Sydney +Monica +Sierra +Kirsten +Alexa +Bailey +Patricia +Destiny +Tara +Alison +Emma +Felicia +Julie +Ashleigh +Carly +Caroline +Claire +Grace +Mackenzie +Rebekah +Tessa +Angelica +April +Elise +Hayley +Katrina +Margaret +Savannah +Brandy +Cynthia +Krista +Alisha +Chelsey +Sabrina +Adriana +Ashlee +Aubrey +Bethany +Bianca +Casey +Mallory +Heidi +Madeline +Meagan +Anne +Diana +Kelli +Valerie +Amelia +Brenda +Theresa +Autumn +Caitlyn +Deanna +Devin +Krystal +Kylie +Brenna +Kaylee +Cheyenne +Jacquelyn +Jade +Janelle +Jessie +Karissa +Kelsie +Shayla +Devon +Hanna +Hope +Kate +Mercedes +Naomi +Randi +Ariana +Candice +Carissa +Michaela +Tabitha +Tanya +Tori +Yesenia +Gina +Iesha +Janessa +Jillian +Lacey +Susan +Adrienne +Anastasia +Angelina +Arielle +Aspen +Brianne +Brittani +Chelsie +Kelsi +Raquel +Renee +Sandra +Sophia +Tia +Candace +Cara +Carolyn +Carrie +Chloe +Dana +Dominique +Hillary +Jaclyn +Jazmine +Kacey +Kayleigh +Melinda +Rachelle +Tess +Aimee +Barbara +Colleen +Hilary +Kendall +Marisa +Adrianna +Ana +Angel +Cristina +Denise +Gabriella +Joanna +Justine +Kelley +Kirstie +Lydia +Shantel +Shawna +Zoe +Alissa +Ann +Desirae +Ellen +Gabriela +Jasmin +Jordyn +Karen +Karina +Kassandra +Kristy +Raven +Robyn +Rochelle +Stacey +Annie +Breanne +Celeste +Chantel +Christa +Claudia +Jaimie +Leslie +Marie +Meredith +Nina +Savanna +Sylvia +Cecilia +Charlotte +Dakota +Deborah +Eva +Hailey +Jaime +Jane +Kristine +Melody +Moriah +Nancy +Nicolette +Robin +Ruby +Tamara +Tayler +Teresa +Tina +Tonya +Abby +Allyson +Callie +Camille +Elena +Faith +Janet +Jenessa +Jocelyn +Kaela +Kali +Karlie +Katharine +Kellie +Laurel +Leanna +Leticia +Linda +Mindy +Miriah +Miriam +Nikki +Rose +Sadie +Summer +Tatiana +Yolanda +Alyson +Bobbi +Bridget +Carla +Carmen +Cassidy +Cassie +Charity +Cierra +Cortney +Dawn +Hallie +Isabel +Jenny +Kailee +Kaley +Kyla +Misty +Rosa +Roxanne +Serena +Shea +Stevie +Tiana +Tiffani +Tracy +Virginia +Wendy +Alaina +Alexandrea +Ashli +Carol +Christy +Ciara +Cindy +Clare +Cody +Daisy +Demi +Elisabeth +Evelyn +Gloria +Irene +Janae +Jill +Justina +Kacie +Kari +Katelynn +Kiersten +Kristi +Kyra +Lori +Martha +Mayra +Mollie +Pamela +Precious +Rosemary +Alejandra +Alysha +Annette +Ashlie +Bobbie +Brandie +Britney +Brynn +Cheryl +Christie +Eleanor +Elisa +Esther +Isabella +Jodi +Josephine +Judith +Juliana +Kaila +Kiara +Kira +Kirstin +Madeleine +Maggie +Marina +Mckenzie +Meaghan +Mikayla +Paula +Rhiannon +Richelle +Shanae +Sharon +Shayna +Simone +Sophie +Toni +Tyler +Alana +Alanna +Arianna +Ashlyn +Asia +Audrianna +Ayla +Brittni +Cayla +Celina +Chantelle +Cherie +Chrystal +Diane +Donna +Ericka +Jacklyn +Jayme +Jeanette +Jena +Jessika +Jolene +Kailey +Karly +Kasandra +Kori +Lacy +Lara +Larissa +Maureen +Maya +Mckenna +Mia +Racheal +Regina +Rita +Ruth +Savanah +Stefanie +Tanisha +Taryn +Tiara +Trisha +Yvonne +Angelique +Anjelica +Athena +Audra +Breann +Casandra +Catrina +Corinne +Daniela +Danika +Devan +Diamond +Elisha +Eliza +Emilee +Estrella +Gwendolyn +Jami +Janell +Jazmin +Jesse +Joelle +Johanna +Joslyn +Joy +Julianna +Kaitlynn +Kalie +Kasey +Katelin +Katlyn +Katy +Kayli +Kaylyn +Kaylynn +Kylee +Lauryn +Leandra +Leigh +Lesley +Lucy +Makenzie +Mandy +Mara +Maribel +Marisol +Michele +Mikaela +Nadine +Nia +Nikole +Norma +Priscilla +Riley +Ryan +Sally +Shanna +Shantell +Shelbi +Stacy +Tasha +Tatum +Vivian +Addie +Aisha +Alex +Alice +Alina +Alisa +Alishia +Ashton +Bonnie +Breana +Briann +Brittanie +Brittnie +Bryn +Chanel +Chasity +Chelsi +Chelsy +Christen +Christian +Ciera +Danae +Darcy +Deidra +Delaney +Elyse +Eryn +Francesca +Genevieve +Guadalupe +Helen +Hollie +Kayleen +Keely +Kenzie +Kerri +Kristyn +Lacie +Latisha +Laurie +Leann +Leanne +Leilani +Lily +Logan +Loren +Lorena +Lucia +Lynsey +Madelyn +Makayla +Mandi +Marcella +Merissa +Micah +Monika +Myranda +Nichelle +Noelle +Nora +Perla +Ramona +Shaina +Shauna +Suzanne +Talia +Tera +Terra +Yvette +Adrian +Alayna +Aleah +Alesha +Alexia +Alix +Antoinette +Antonia +Ashly +Aubree +Ava +Bernadette +Beth +Beverly +Blanca +Brielle +Brook +Carlee +Carli +Chandra +Charlene +Charmaine +Cherise +Christiana +Christin +Clara +Clarissa +Constance +Cori +Corina +Cristal +Danelle +Dara +Debra +Devyn +Ebony +Eileen +Emilie +Flor +Gillian +Gretchen +Hali +Hana +Harper +India +Isela +Jenifer +Jesica +Juanita +Kaci +Karlee +Katheryn +Kathrine +Katlin +Kaycee +Kaylene +Kaylin +Kellen +Kelsea +Kiah +Kiana +Kierra +Kimberlee +Kodi +Kristie +Krysta +Krystina +Kyle +Lana +Latasha +Latoya +Lea +Lia +Lillian +Lora +Lyndsey +Lynn +Maira +Maranda +Mari +Marianne +Marlene +Martika +Maura +Micaela +Nadia +Natalia +Natosha +Nikita +Patrice +Paulina +Rebeca +Renae +Sage +Salina +Sasha +Selene +Selina +Shanell +Shirley +Sidney +Sonia +Spencer +Staci +Stacia +Tabatha +Tammy +Tania +Tawny +Yadira +Yasmin +Jessica +Ashley +Sarah +Amanda +Brittany +Emily +Samantha +Rachel +Megan +Hannah +Kayla +Elizabeth +Nicole +Lauren +Jennifer +Taylor +Chelsea +Danielle +Kelsey +Stephanie +Shelby +Amber +Alexandra +Rebecca +Katherine +Melissa +Jordan +Morgan +Michelle +Alyssa +Heather +Cassandra +Andrea +Courtney +Christina +Brianna +Sara +Mariah +Anna +Victoria +Erin +Laura +Amy +Kaitlyn +Alexis +Jasmine +Tiffany +Vanessa +Katie +Kimberly +Erica +Allison +Katelyn +Kathryn +Jenna +Mackenzie +Paige +Maria +Lindsey +Crystal +Jamie +Marissa +Alicia +Erika +Breanna +Natalie +Caitlin +Kendra +Mary +Brooke +Kelly +Kristen +Alexandria +Haley +Julia +Miranda +Angelica +Brittney +Lindsay +Madison +Olivia +Shannon +Leah +Molly +Angela +Sierra +Ariel +Lisa +Desiree +Emma +Kristina +Christine +Monica +Veronica +Natasha +Gabrielle +April +Katrina +Whitney +Catherine +Brandi +Sydney +Bethany +Savannah +Briana +Kara +Abigail +Destiny +Rachael +Sabrina +Bailey +Margaret +Meghan +Caroline +Kathleen +Jacqueline +Krista +Bianca +Kristin +Monique +Chelsey +Kylie +Claire +Holly +Angel +Diana +Hayley +Kaitlin +Rebekah +Tara +Brandy +Caitlyn +Hillary +Julie +Kaylee +Nichole +Carly +Jade +Alisha +Felicia +Patricia +Audrey +Brenda +Cynthia +Melanie +Sandra +Ashlee +Mercedes +Valerie +Dominique +Madeline +Michaela +Alexa +Alison +Kirsten +Krystal +Shayla +Tessa +Anastasia +Aubrey +Grace +Kassandra +Kelli +Heidi +Karina +Candice +Carissa +Hailey +Jessie +Ashleigh +Chloe +Jaime +Zoe +Aimee +Arielle +Autumn +Cassie +Chelsie +Cheyenne +Elena +Hanna +Kate +Katelynn +Kendall +Marie +Mckenzie +Tamara +Anne +Ariana +Bridget +Cara +Faith +Kellie +Leslie +Naomi +Adrianna +Candace +Casey +Cristina +Dana +Deanna +Ellen +Jillian +Lydia +Mallory +Marina +Adriana +Amelia +Angelina +Denise +Gina +Joanna +Lacey +Renee +Savanna +Toni +Tori +Callie +Elise +Rose +Ruby +Stacey +Susan +Tabitha +Teresa +Theresa +Tia +Alejandra +Brenna +Chantel +Ciara +Dakota +Kyla +Marisa +Sasha +Shanice +Tayler +Alissa +Ana +Angelique +Arianna +Cecilia +Karissa +Kylee +Meagan +Randi +Shawna +Sophia +Tanya +Tyler +Camille +Carolyn +Celeste +Cierra +Gabriela +Isabel +Jazmin +Jazmine +Jocelyn +Justine +Kelsie +Kira +Larissa +Maggie +Maya +Mayra +Mikayla +Nancy +Sonya +Stephany +Taryn +Allyson +Ashly +Brianne +Claudia +Colleen +Desirae +Jordyn +Kaleigh +Kristi +Kristine +Mia +Moriah +Nikki +Raven +Rosa +Cindy +Devin +Devon +Eva +Hope +Jaclyn +Katharine +Leticia +Robin +Ruth +Talia +Tess +Tiana +Annie +Bonnie +Bryanna +Carrie +Cassidy +Christy +Hilary +Jacquelyn +Janae +Jenny +Johanna +Karen +Kasey +Lily +Mollie +Rikki +Robyn +Shantel +Skylar +Sophie +Sylvia +Vivian +Aspen +Audra +Barbara +Christa +Daisy +Janelle +Karlee +Katlyn +Kelley +Kelsi +Kirstie +Kristy +Lori +Mckenna +Rachelle +Shanna +Sharon +Ann +Avery +Britney +Carla +Carmen +Charlotte +Ciera +Irene +Jill +Kaley +Kayleigh +Kirstin +Kyra +Latisha +Lillian +Lorena +Martha +Misty +Nicolette +Raquel +Sage +Stacy +Tonya +Yesenia +Alana +Allie +Annika +Ashlie +Breana +Brittanie +Brittni +Chandler +Chantelle +Clarissa +Daniela +Dawn +Deborah +Elisa +Elisabeth +Gloria +Janet +Kailey +Kali +Kari +Karli +Katerina +Kiara +Laurel +Lauryn +Linda +Logan +Mariela +Meredith +Monika +Noelle +Priscilla +Riley +Rita +Simone +Summer +Tasha +Tina +Trisha +Alexandrea +Alisa +Alysha +Ashton +Aurora +Corinne +Demi +Diamond +Donna +Ericka +Evelyn +Gabriella +Helen +Iesha +Kaila +Kaylyn +Kinsey +Kourtney +Lea +Lena +Lyndsey +Madeleine +Melinda +Pamela +Sadie +Shanae +Sonia +Suzanne +Abbey +Adrienne +Alice +Alina +Alyson +Araceli +Ashlyn +Bernadette +Beth +Breann +Brieanna +Brittani +Caley +Casandra +Cherie +Cortney +Delaney +Devyn +Diane +Elyse +Emerald +Emilee +Esmeralda +Francesca +Genevieve +Gianna +Jaimie +Jana +Josephine +Kacie +Kaitlynn +Karla +Karly +Kasandra +Kaylynn +Kiley +Lacy +Lara +Lexi +Maddison +Makayla +Makenzie +Melody +Merissa +Mindy +Perla +Reanna +Rochelle +Shayna +Shea +Virginia +Alex +Alexia +Alyse +Anjelica +Ashlynn +Blair +Brandie +Breanne +Brook +Carley +Carlie +Chandra +Clara +Clare +Cora +Cydney +Deidre +Domonique +Elaine +Elisha +Ella +Emilia +Frances +Helena +Iris +Jayme +Jeanette +Jesse +Josie +Julianna +Karlie +Kiana +Kiersten +Kortney +Lacie +Latasha +Leann +Lucy +Madalyn +Mara +Maranda +Margarita +Maribel +Marisela +Miriah +Nadia +Nina +Nora +Paula +Rhiannon +Ryan +Selina +Serena +Sheila +Shelbi +Shelbie +Sidney +Skyler +Staci +Stacie +Stefanie +Sydnee +Tania +Tawny +Tiara +Trista +Yvette +Ali +Alma +Amie +Annette +Antoinette +Ashli +Aubree +Ayla +Blanca +Brandee +Brielle +Britany +Carina +Cassondra +Cayla +Celia +Chanel +Chantell +Chelsi +Cheryl +Dani +Danika +Deidra +Destinee +Destiney +Devan +Ebony +Edith +Eleanor +Esther +Felicity +Flor +Georgia +Harley +India +Isabella +Ivy +Jackie +Jami +Jane +Janel +Janette +Jasmin +Jena +Juliana +Kacey +Kaci +Kaela +Kallie +Kalyn +Katarina +Kaylie +Kaylin +Keisha +Kelsea +Kerry +Kiera +Kristie +Laurie +Leandra +Leigh +Lorraine +Lyndsay +Marisol +Meaghan +Melisa +Mikaela +Montana +Myranda +Myriah +Natalia +Nikita +Phoebe +Regina +Savana +Shaina +Shauna +Skye +Stevie +Tamra +Tatiana +Tianna +Tierra +Tiffani +Tracy +Yvonne +Abby +Acacia +Adrian +Adrianne +Aisha +Alanna +Alecia +Alix +Alysia +Anissa +Ashely +Audrianna +Ayana +Baylee +Beverly +Bobbi +Bobbie +Breonna +Brittnee +Bryana +Carli +Carol +Carolina +Chanelle +Chantal +Christen +Christian +Codi +Cody +Colette +Corina +Cristal +Dallas +Danae +Danyelle +Darcie +Darian +Darlene +Desire +Destini +Dora +Eliana +Elyssa +Emilie +Esperanza +Fallon +Fatima +Guadalupe +Haleigh +Halie +Heaven +Jacey +Janessa +Jazmyne +Jerica +Jessika +Joanne +Jodi +Joslyn +Joyce +Juana +Juanita +Julianne +Justina +Kailee +Kalli +Kanisha +Karisa +Katelin +Katy +Kayleen +Kayli +Kaytlyn +Keeley +Kelci +Kelsy +Kenzie +Keri +Kimber +Kimberley +Krysta +Krystle +Leanna +Lizbeth +Lynn +Madelyn +Mallorie +Mandy +Maura +Mckayla +Miriam +Nichelle +Payton +Renae +Rhea +Richelle +Rocio +Roxanne +Selena +Serenity +Shaelyn +Shanelle +Shaniqua +Shannan +Sofia +Sydni +Symone +Tabatha +Tanisha +Tiera +Tosha +Tracey +Traci +Trinity +Tyra +Valeria +Wendy +Yolanda +Jessica +Ashley +Sarah +Taylor +Samantha +Emily +Amanda +Brittany +Rachel +Elizabeth +Nicole +Kayla +Megan +Lauren +Hannah +Amber +Alexandra +Danielle +Stephanie +Jennifer +Kelsey +Alyssa +Katherine +Rebecca +Jordan +Shelby +Alexis +Victoria +Jasmine +Brianna +Chelsea +Courtney +Mariah +Sara +Christina +Melissa +Laura +Heather +Cassandra +Michelle +Morgan +Tiffany +Lindsey +Brooke +Anna +Katelyn +Andrea +Erin +Kaitlyn +Marissa +Caitlin +Haley +Olivia +Madison +Kathryn +Breanna +Sierra +Alexandria +Emma +Allison +Julia +Shannon +Mary +Katie +Kelly +Abigail +Natalie +Crystal +Sydney +Paige +Vanessa +Erica +Kimberly +Maria +Mackenzie +Amy +Alicia +Kristen +Miranda +Briana +Angela +Jamie +Kendra +Catherine +Molly +Sabrina +Brittney +Leah +Brandi +Lisa +Ashleigh +Erika +Jenna +Desiree +Holly +Madeline +Savannah +Margaret +Meghan +April +Gabrielle +Lindsay +Bethany +Hailey +Bailey +Ariel +Dominique +Angelica +Monica +Alexa +Carly +Chloe +Christine +Jade +Kylie +Jacqueline +Kara +Kathleen +Natasha +Katrina +Kaylee +Melanie +Whitney +Deanna +Rachael +Cheyenne +Grace +Tara +Autumn +Brenda +Destiny +Kristin +Bianca +Caroline +Felicia +Julie +Mikayla +Patricia +Rebekah +Diana +Hayley +Michaela +Ashlee +Claire +Dana +Kaitlin +Kristina +Nichole +Tessa +Anne +Casey +Meagan +Alison +Cynthia +Kassandra +Kira +Karen +Krista +Marisa +Audrey +Makayla +Elise +Monique +Adriana +Cassidy +Veronica +Aimee +Aubrey +Caitlyn +Kendall +Marina +Sandra +Savanna +Tori +Zoe +Brenna +Jazmine +Tyler +Jordyn +Kelli +Amelia +Angel +Kirsten +Lacey +Mallory +Mckenzie +Carolyn +Claudia +Eva +Faith +Jazmin +Mercedes +Moriah +Shayla +Tasha +Tia +Abby +Ana +Chelsey +Desirae +Gabriella +Krystal +Taryn +Brandy +Camille +Charlotte +Heidi +Justine +Karina +Maggie +Nancy +Naomi +Nina +Sophia +Summer +Tabitha +Tayler +Valerie +Allyson +Annie +Ciara +Cierra +Joanna +Katelynn +Renee +Anastasia +Britney +Cindy +Cristina +Ellen +Gabriela +Kali +Madeleine +Marie +Alejandra +Candace +Devin +Elena +Gina +Karissa +Leslie +Nikki +Shanice +Susan +Toni +Yesenia +Alisha +Angelina +Angelique +Ariana +Aspen +Carissa +Clarissa +Helen +Jessie +Kaley +Kate +Rosa +Ruby +Sadie +Tanya +Callie +Chantel +Corinne +Daisy +Dakota +Hope +Isabel +Janae +Katharine +Kelsie +Krysta +Kyla +Kylee +Larissa +Leticia +Theresa +Vivian +Wendy +Adrianna +Alysha +Carrie +Frances +Jaime +Jasmin +Jillian +Lillian +Nicolette +Paris +Rachelle +Abbey +Adrienne +Alex +Alexandrea +Anjelica +Ashton +Casandra +Colleen +Denise +Jacquelyn +Janelle +Janet +Jocelyn +Kacey +Kailey +Kelley +Mayra +Raquel +Riley +Tamara +Teresa +Alana +Alexia +Alissa +Arianna +Barbara +Bria +Brittani +Chandler +Devon +Donna +Evelyn +Gloria +Hanna +Jaclyn +Jeanette +Jenny +Karla +Kasey +Kiana +Kinsey +Kyra +Mara +Marisol +Martha +Mckenna +Melinda +Mikaela +Robyn +Rose +Sonia +Stacy +Tanisha +Tess +Virginia +Ann +Asia +Brandie +Bryanna +Cara +Cassie +Celeste +Daniela +Dawn +Ellie +Hillary +Jill +Karli +Kellie +Liliana +Lucy +Lydia +Meredith +Mollie +Paula +Robin +Sage +Ashlyn +Athena +Audra +Bridget +Brooklyn +Candice +Carley +Cecilia +Christy +Clara +Elisabeth +Esther +Genevieve +Johanna +Justina +Kaleigh +Katarina +Kayleen +Kayleigh +Kiara +Lyndsey +Madelyn +Maya +Peyton +Ruth +Selina +Shyanne +Sophie +Stevie +Tatiana +Tiana +Alaina +Brook +Carmen +Carol +Christa +Cortney +Delaney +Destinee +Gianna +Hallie +Isabella +Juliana +Julianne +Kaila +Katlyn +Kirstin +Kristi +Linda +Makenna +Maranda +Melody +Micaela +Randi +Raven +Selena +Shanna +Shantel +Shawna +Shea +Shelbi +Simone +Stefanie +Tania +Tiffani +Yolanda +Alice +Alisa +Alma +Alycia +Avery +Breann +Brianne +Carla +Carlee +Carli +Celina +Chantal +Cora +Cristal +Dallas +Devyn +Ebony +Emilie +Guadalupe +Halie +Harley +Haylee +Jana +Jane +Kari +Karly +Kelsi +Kendal +Kiersten +Leandra +Leilani +Lily +Mariana +Maribel +Meaghan +Misty +Pamela +Perla +Priscilla +Regina +Reyna +Rhiannon +Rikki +Santana +Savanah +Shana +Stephany +Tammy +Tianna +Trisha +Tyra +Anissa +Antoinette +Arielle +Ashlie +Bailee +Blanca +Brea +Breeanna +Brittni +Caley +Cecelia +Charlene +Cheyanne +Ciera +Clare +Connie +Corina +Demi +Devan +Elaine +Elisa +Francesca +Haleigh +Jami +Janessa +Jayme +Jerica +Josephine +Kacie +Kaela +Kala +Katelin +Kaylin +Kelsea +Kristine +Lea +Logan +Lyndsay +Maddison +Maira +Melina +Melisa +Mia +Mikala +Myranda +Phoebe +Rochelle +Shae +Shilo +Skylar +Sofia +Sonja +Stacey +Susanna +Talia +Yvette +Yvonne +Alea +Allie +Alondra +Alysia +Alyson +Antonia +Ashly +Aundrea +Bonnie +Brittanie +Brittny +Bronte +Carlie +Catrina +Chelsi +Chelsie +Christian +Danae +Danica +Danika +Darian +Deborah +Elsa +Emilee +Ericka +Felisha +Georgia +Jaimie +Jazmyn +Jean +Joyce +Kassie +Katy +Kaylyn +Kenzie +Keri +Kerry +Kori +Lauryn +Layla +Lucia +Lyndsie +Misha +Nikole +Payton +Rhianna +Ryan +Samara +Serenity +Sharice +Sharon +Sheridan +Skye +Sonya +Starla +Suzanne +Tawni +Tiara +Tina +Tonya +Tracy +Valeria +Alix +Alli +Aubree +Audrianna +Ayla +Bobbie +Breana +Brieanna +Britany +Bryana +Bryn +Brynn +Chandra +Chanel +Cory +Damaris +Danelle +Deidra +Deidre +Diamond +Dianna +Dolores +Domonique +Drew +Eliza +Emerald +Emilia +Eryn +Estrella +Felicity +Frankie +Giselle +Hilary +Holli +India +Iris +Isabelle +Ivy +Janette +Jayde +Jenifer +Joelle +Josie +Joy +Juanita +Judy +Kalyn +Karlie +Kassidy +Kaylene +Keely +Kelci +Kenna +Kierra +Kiley +Kirstie +La +Larisa +Lorena +Luz +Malinda +Marcella +Marika +Maritza +Marley +Micah +Miriah +Montana +Natalia +Nidia +Noelle +Nora +Rebeka +Reina +Rena +Roxanne +Sade +Salina +Serena +Shanae +Shantell +Shaylene +Shayna +Sheila +Sidney +Siera +Stormy +Tatianna +Tisha +Tylar +Yasmin +Zoey +Jessica +Ashley +Sarah +Samantha +Emily +Hannah +Amanda +Taylor +Rachel +Megan +Kayla +Nicole +Brittany +Elizabeth +Lauren +Alexandra +Danielle +Alyssa +Stephanie +Morgan +Amber +Brianna +Victoria +Madison +Rebecca +Shelby +Jordan +Jasmine +Jennifer +Courtney +Alexis +Mariah +Katherine +Kelsey +Abigail +Sara +Melissa +Anna +Erin +Heather +Laura +Haley +Kathryn +Michelle +Miranda +Sierra +Marissa +Kimberly +Alexandria +Sydney +Andrea +Brooke +Cassandra +Savannah +Emma +Christina +Kaitlyn +Katelyn +Allison +Tiffany +Olivia +Mary +Molly +Katie +Alicia +Chelsea +Lindsey +Natalie +Caitlin +Shannon +Erica +Amy +Mackenzie +Maria +Paige +Kaitlin +Crystal +Jenna +Kristen +Madeline +Vanessa +Jamie +Kendra +Julia +Kelly +Destiny +Jacqueline +Rachael +Meghan +Briana +Angela +Bailey +Cheyenne +Leah +Sabrina +Breanna +Grace +Marisa +Mikayla +Margaret +Cassidy +Natasha +Lindsay +Michaela +Claire +Monica +Desiree +Erika +Gabrielle +Kylie +Audrey +Sophia +Brittney +Christine +Alexa +Adriana +Angelica +Brandi +Cynthia +Brenda +Caroline +Rebekah +Bethany +Jade +Veronica +Ashleigh +Carly +Diana +Hailey +Kaylee +Kendall +Kristina +Zoe +Katrina +Tori +Autumn +Caitlyn +Casey +Kara +Leslie +Dominique +Holly +Kristin +Tessa +Whitney +Ariana +Kathleen +Lisa +Mallory +Makayla +Monique +Nichole +Alisha +Catherine +Felicia +Hayley +Julie +Kyla +Anastasia +Aspen +Bianca +Krista +Marina +Melanie +Sadie +Aimee +Alison +Chloe +Dakota +Faith +Kassandra +Mckenzie +Savanna +Alejandra +Aubrey +Claudia +Gabriela +Hope +Tara +Brenna +Jessie +Sandra +Angel +Nancy +Patricia +Angelina +April +Hanna +Joanna +Jordyn +Karen +Naomi +Alissa +Ana +Gabriella +Isabella +Kellie +Kiana +Lacey +Meagan +Raquel +Riley +Shayla +Valerie +Amelia +Cindy +Dana +Karina +Mckenna +Mikaela +Ruby +Abby +Anne +Ariel +Ashlee +Ashton +Ciara +Darian +Jaclyn +Jazmine +Krystal +Tiana +Carrie +Cierra +Ellen +Hunter +Janelle +Justine +Kali +Katlyn +Kelsie +Kirsten +Larissa +Lydia +Maggie +Alisa +Desirae +Elena +Rose +Summer +Taryn +Tayler +Brandy +Bridget +Charlotte +Deanna +Kelli +Laurel +Madeleine +Tabitha +Adrianna +Adrienne +Allyson +Annie +Arianna +Callie +Cara +Dallas +Devin +Jillian +Karissa +Kasey +Kira +Rosa +Serena +Teresa +Theresa +Tyler +Yesenia +Alexandrea +Ashlyn +Carolina +Colleen +Elise +Esther +Gina +Jaime +Karla +Karlee +Katelynn +Kylee +Mayra +Nicolette +Randi +Rhiannon +Tamara +Tanya +Tasha +Tiara +Ann +Blanca +Brianne +Britney +Carla +Carmen +Chandler +Delaney +Donna +Jacquelyn +Janet +Josephine +Kaylie +Kaylyn +Kelsi +Lily +Logan +Maya +Meaghan +Mercedes +Micaela +Moriah +Nina +Selina +Shea +Stacy +Tia +Toni +Alex +Camille +Carolyn +Casandra +Cecilia +Chelsey +Christa +Clarissa +Daisy +Daniela +Demi +Denise +Janessa +Jazmin +Juliana +Katarina +Kelsea +Linda +Makenzie +Mia +Nikki +Renee +Selena +Sonia +Tatiana +Alexus +Allie +Angelique +Anissa +Audra +Bonnie +Brittani +Carissa +Ciera +Devon +Evelyn +Guadalupe +Heidi +Helen +Joy +Kaley +Kyra +Lea +Lucy +Margarita +Marie +Rikki +Tianna +Alaina +Asia +Breana +Breanne +Bryanna +Cristal +Cristina +Darby +Eleanor +Elisabeth +Elyse +Eva +Isabelle +Itzel +Ivy +Jasmin +Jocelyn +Kaila +Kailey +Kaitlynn +Kate +Kaylynn +Lauryn +Lillian +Makenna +Marisol +Mckayla +Melinda +Meredith +Payton +Rachelle +Savanah +Sidney +Sylvia +Talia +Tania +Aaliyah +Alia +Alycia +Caley +Candace +Candice +Charity +Danae +Dulce +Emilia +Ericka +Essence +Gloria +Isabel +Janae +Jolene +Julianna +Kalee +Keisha +Kiera +Leticia +Madelyn +Maranda +Melody +Mikala +Pamela +Paula +Robin +Robyn +Sage +Sasha +Stacey +Stephany +Stevie +Susan +Tanisha +Tess +Tiffani +Tina +Valeria +Ashlie +Aurora +Beth +Bryce +Carina +Cassie +Celina +Chantel +Chelsie +Cheyanne +Christiana +Clara +Cody +Corina +Danika +Elissa +Esmeralda +Francesca +Genevieve +Jenny +Josie +Kacey +Kaela +Kari +Katy +Kayleen +Kayleigh +Kelley +Kennedy +Kristi +Lacy +Lara +Leandra +Leanna +Leanne +Mara +Miriam +Noelle +Raven +Rochelle +Rosemary +Ruth +Ryan +Shae +Shauna +Simone +Skylar +Stefanie +Terra +Yessica +Alanna +Alexia +Alice +Alina +Alma +Athena +Ayla +Barbara +Bryn +Brynn +Charlene +Cherie +Codi +Cori +Ebony +Eliza +Ellie +Emilie +Geneva +Giselle +Haleigh +Haylee +Jane +Janie +Jazzmin +Jennie +Jesse +Juanita +Kasandra +Kassidy +Katharine +Khadijah +Kiara +Kristine +Lacie +Lena +Lexi +Liliana +Lorena +Micah +Misty +Mollie +Norma +Paxton +Peyton +Priscilla +Racheal +Rocio +Sally +Shantel +Shawna +Shayna +Sofia +Sonya +Tierra +Tracy +Vivian +Abbey +Abbie +Acacia +Adilene +Alana +Alexi +Ali +Aliyah +Ally +Alysha +Alysia +Alyson +Anjelica +Antoinette +Ashly +Ashlynn +Aubree +Baylee +Breann +Bria +Bridgette +Brook +Carlie +Cecelia +Chantal +Connie +Corinne +Dani +Daphne +Deana +Deborah +Diamond +Ella +Frankie +Graciela +Harley +Haven +Helena +India +Jami +Jayde +Jazmyn +Jessi +Jessika +Kailee +Kaleigh +Karly +Katelin +Katheryn +Kathrine +Kaylin +Kenya +Kodi +Lizbeth +Lucille +Maddison +Martha +Meranda +Nadine +Natalia +Paola +Perla +Quinn +Rebeca +Reyna +Rylee +Salina +Santana +Shanice +Shelbie +Sheridan +Skye +Skyler +Sophie +Susana +Tabatha +Trisha +Virginia +Wendy +Yvette +Yvonne +Abagail +Addison +Alena +Alexzandra +Allyssa +Alora +Anessa +Anita +Annalise +Annette +Anya +Araceli +Asha +Bailee +Bobbie +Bree +Brieanna +Brielle +Brittanie +Brittni +Bryana +Carley +Catalina +Catrina +Cayla +Celeste +Celia +Chanel +Cherish +Christian +Corey +Cortney +Cydney +Darlene +Dawn +Dayana +Dayna +Devan +Devyn +Edith +Elaina +Elaine +Elisa +Emilee +Frances +Gabriel +Georgia +Griselda +Hailee +Haylie +Heaven +Imani +Iris +Irma +Jacey +Jaylyn +Jayme +Jenessa +Jerrica +Jill +Joanne +Jodi +Johanna +Joslyn +Julianne +Justice +Justina +Kacie +Kaia +Kala +Karlie +Kati +Kayley +Keely +Kellyn +Kelsy +Kerri +Kiersten +Kristyn +Lana +Larisa +Leeann +Lexus +Linnea +Madalyn +Maia +Maira +Malissa +Mari +Mariana +Marilyn +Marley +Meggan +Merissa +Michele +Mireya +Montana +Myranda +Paris +Pauline +Raina +Reanna +Rhianna +Roberta +Sarina +Shaina +Shana +Shante +Shantell +Shaylee +Shaylene +Shilo +Shyanne +Sienna +Staci +Tammy +Tonya +Tyra +Vanesa +Venessa +Yasmin +Yasmine +Jessica +Hannah +Ashley +Taylor +Sarah +Emily +Samantha +Rachel +Amanda +Megan +Kayla +Elizabeth +Madison +Alexis +Brianna +Jordan +Alexandra +Brittany +Alyssa +Lauren +Jennifer +Nicole +Morgan +Katherine +Courtney +Danielle +Stephanie +Victoria +Abigail +Shelby +Sierra +Anna +Kelsey +Mariah +Sydney +Amber +Rebecca +Sara +Erin +Haley +Allison +Marissa +Kaitlyn +Savannah +Shannon +Miranda +Natalie +Melissa +Emma +Heather +Andrea +Laura +Alexandria +Jasmine +Michelle +Olivia +Brooke +Christina +Breanna +Cassandra +Mary +Chelsea +Kathryn +Madeline +Paige +Destiny +Mackenzie +Bailey +Katelyn +Katie +Michaela +Vanessa +Lindsey +Maria +Molly +Caitlin +Jamie +Monica +Selena +Kelly +Julia +Cheyenne +Grace +Kylie +Alicia +Kaitlin +Angelica +Angela +Sabrina +Erica +Kimberly +Kristen +Caroline +Jenna +Kendra +Tiffany +Amy +Leah +Mikayla +Briana +Crystal +Cassidy +Alexa +Jacqueline +Meghan +Claire +Desiree +Rachael +Catherine +Kristina +Lindsay +Makayla +Natasha +Whitney +Gabrielle +Monique +Katrina +Alison +Brittney +Dominique +Erika +Ana +Bethany +Chloe +Hailey +Karina +Kaylee +Autumn +Bianca +Carly +Hayley +Holly +Margaret +Rebekah +Gabriela +Brandi +Lisa +Marisa +Jordyn +Tessa +Brenda +Brenna +Mckenna +Veronica +Christine +Diana +Faith +Mckenzie +Alejandra +Ariana +Ariel +Caitlyn +Casey +Cynthia +Jade +Krista +Kristin +Sophia +Tori +Ashlee +Ashleigh +Audrey +Hanna +Krystal +Savanna +Tara +Jazmine +Kendall +Mallory +Summer +Dakota +Hope +Zoe +Angel +Gabriella +Kylee +Mikaela +Adriana +Cierra +Isabella +Kirsten +Sandra +Aspen +Kara +Leslie +Lily +Angelina +Ashlyn +Ciara +Julie +Katelynn +Kathleen +Amelia +Jessie +Kiana +Larissa +Marina +Naomi +Nichole +Aimee +Alondra +Annie +Daisy +Isabel +Kassandra +Melanie +Mercedes +Riley +Serena +Allyson +Aubrey +Denise +Kelli +Lacey +Maya +Sadie +April +Delaney +Heidi +Karen +Raquel +Selina +Shayla +Tayler +Alisha +Cecilia +Dana +Destinee +Isabelle +Jazmin +Ruby +Sasha +Skylar +Valerie +Anne +Camille +Cindy +Darian +Devon +Elena +Jasmin +Kailey +Kayleigh +Kyla +Kyra +Makenzie +Renee +Tiana +Avery +Brianne +Chelsey +Cheyanne +Claudia +Colleen +Daniela +Ellen +Janae +Karissa +Maggie +Nancy +Payton +Abby +Alana +Alexus +Anastasia +Bridget +Callie +Cara +Carissa +Celeste +Deanna +Evelyn +Gina +Guadalupe +Lillian +Ruth +Taryn +Theresa +Alexia +Arianna +Bonnie +Charlotte +Cora +Devin +Felicia +Janelle +Joanna +Karli +Kassidy +Kennedy +Kira +Madeleine +Martha +Meagan +Meredith +Micaela +Moriah +Patricia +Randi +Sage +Sidney +Tess +Adrianna +Alexandrea +Baylee +Carley +Carolyn +Chandler +Cristina +Helen +Ivy +Jillian +Josephine +Justice +Justine +Kali +Katharine +Lydia +Madelyn +Mckayla +Mia +Raven +Rosa +Savanah +Shyanne +Sonia +Sophie +Tyler +Virginia +Alia +Alysia +Celina +Elisa +Elise +Gianna +Gloria +Hunter +Jaclyn +Jocelyn +Kacey +Kaylie +Lexus +Logan +Lorena +Sofia +Stevie +Tanisha +Tia +Valeria +Yesenia +Allie +Angelique +Brandy +Carina +Darby +Edith +Jenny +Jesse +Josie +Kaitlynn +Karla +Kasey +Kate +Kelsi +Kianna +Maddison +Shantel +Shayna +Silvia +Tamara +Tanya +Tatiana +Teresa +Alaina +Annika +Ashton +Brittni +Candace +Carmen +Corinne +Eva +Fiona +Haylee +Jaime +Jaqueline +Johanna +Joy +Juanita +Kaelyn +Kaylin +Kaylyn +Kelsie +Luz +Makenna +Maribel +Marie +Rachelle +Robin +Shania +Susan +Sylvia +Tabitha +Tierra +Toni +Adrienne +Aleah +Alissa +Ann +Arielle +Ashlie +Asia +Ayla +Breana +Breanne +Bree +Carrie +Christian +Ciera +Clarissa +Dallas +Daniella +Danika +Darrian +Desirae +Devyn +Emilie +Esmeralda +Esperanza +Esther +Georgia +Hailee +Julianna +Kaleigh +Kelley +Kelsea +Laurel +Leandra +Leticia +Lilly +Maranda +Mollie +Nikki +Priscilla +Rhiannon +Sheila +Stacey +Talia +Tianna +Abbey +Alena +Alex +Alisa +Aliyah +Allyssa +Anissa +Antonia +Araceli +Berenice +Brooklyn +Bryanna +Candice +Carol +Carolina +Cassie +Chanel +Christa +Clara +Dalia +Eleanor +Ella +Elsa +Emilee +Iridian +Kaila +Kiara +Kinsey +Kourtney +Kyleigh +Lacy +Leanna +Liliana +Linda +Macy +Madalyn +Marilyn +Marisol +Maritza +Melody +Myranda +Nina +Perla +Reyna +Shawna +Shianne +Sienna +Simone +Stephany +Tania +Viridiana +Yasmin +Aaliyah +Aisha +Alayna +Alysa +Alysha +Audriana +Blanca +Bobbie +Britney +Brittani +Carla +Christy +Clare +Cori +Cristal +Danae +Daria +Deja +Diamond +Elisabeth +Ellie +Eryn +Essence +Estrella +Francesca +Genevieve +Haleigh +Irene +Iris +Jacquelyn +Kacie +Kailee +Karlee +Karly +Katelin +Kiley +Kristine +Kristy +Lara +Meaghan +Misty +Nadia +Natalia +Noelle +Paris +Regina +Rikki +Ryan +Shaina +Shay +Skyler +Stacy +Susana +Tasha +Tiara +Tyra +Zoie +Addison +Alyson +Amalia +Angelika +Annette +Antoinette +Anya +Ashli +Ashly +Aubrie +Bailee +Barbara +Bria +Casandra +Celena +Celine +Chelsi +Chelsie +Chrystal +Codi +Constance +Consuelo +Cydney +Dakotah +Danica +Dawn +Delia +Eliza +Evangelina +Hallie +Harley +Harmony +Heaven +Jaden +Janet +Jenifer +Jessi +Juliana +Katarina +Kathrine +Katlin +Katlyn +Kay +Kaylene +Keanna +Kenna +Kenya +Kiera +Kiersten +Kindra +Kori +Kristi +Kyle +Lauryn +Leigha +Lena +Lizbeth +Lyric +Maegan +Makaila +Mariela +Marley +Mattie +Mayra +Miriam +Noel +Nora +Paola +Paulina +Pauline +Peyton +Phoebe +Reagan +Rylee +Samara +Sheridan +Skye +Stephani +Tatyana +Tiffani +Tina +Vivian +Yvette +Yvonne +Abbie +Abbigail +Alanna +Alecia +Ali +Alina +Alycia +Alyssia +Amara +Anika +Annabelle +Aracely +Ashlynn +Athena +Aundrea +Beatriz +Bernadette +Breann +Brittnee +Carlie +Catrina +Celia +Chantal +Christianna +Connor +Corrina +Deborah +Destini +Diane +Dylan +Ebony +Elaine +Ericka +Evan +Eve +Felicity +Flor +Frances +Genesis +Halie +Halle +Irma +Jacklyn +Jada +Janette +Jaycee +Jayde +Jaylene +Jayme +Jeanette +Jena +Jennie +Jessika +Jocelyne +Jolene +Jordin +Joslyn +Kaley +Kalyn +Kari +Kathryne +Kayli +Keely +Kellie +Kenzie +Kerry +Kierra +Kirstin +Krysta +Leanne +Lesley +Lexi +Lexie +Liana +Lucero +Lyndsey +Lynsey +Maira +Marcella +Mariana +Marlee +Mekayla +Melinda +Merissa +Michele +Mikala +Monika +Nayeli +Nicolette +Pearl +Raina +Rebeca +Regan +Robyn +Rose +Roxanne +Sarai +Selene +Serina +Shana +Shea +Shelbie +Shiloh +Shyann +Stefanie +Stormy +Susanna +Sydnie +Torrey +Trinity +Emily +Hannah +Jessica +Sarah +Ashley +Samantha +Taylor +Rachel +Madison +Megan +Kayla +Elizabeth +Lauren +Alexandra +Amanda +Alexis +Alyssa +Rebecca +Brittany +Morgan +Nicole +Brianna +Katherine +Abigail +Anna +Jennifer +Jordan +Courtney +Sydney +Haley +Mariah +Amber +Savannah +Sierra +Maria +Shelby +Emma +Victoria +Stephanie +Jasmine +Danielle +Brooke +Sara +Melissa +Bailey +Natalie +Marissa +Olivia +Erin +Julia +Kaitlyn +Mary +Breanna +Andrea +Cheyenne +Mackenzie +Madeline +Allison +Kelsey +Heather +Vanessa +Laura +Shannon +Angelica +Cassandra +Michaela +Sabrina +Kathryn +Kimberly +Miranda +Gabrielle +Katelyn +Alexandria +Amy +Hailey +Lindsey +Caitlin +Christina +Katie +Michelle +Monica +Destiny +Kylie +Grace +Jenna +Kendra +Chelsea +Briana +Chloe +Paige +Selena +Molly +Claire +Kaitlin +Kelly +Erika +Jacqueline +Leah +Rachael +Alexa +Rebekah +Alicia +Jamie +Kaylee +Mckenna +Cassidy +Tiffany +Zoe +Angela +Cynthia +Catherine +Erica +Brittney +Isabella +Mikayla +Sophia +Kathleen +Makayla +Holly +Jade +Shania +Alondra +Dominique +Autumn +Caroline +Desiree +Natasha +Karen +Kristen +Tessa +Margaret +Meghan +Audrey +Bethany +Caitlyn +Daisy +Cierra +Carly +Hayley +Adriana +Alejandra +Angel +Ashlee +Veronica +Alison +Brandi +Elise +Isabel +Kara +Mikaela +Brenda +Crystal +Hope +Karina +Kiana +Marisa +Yesenia +Ana +Katrina +Kyra +Aspen +Gabriella +Jordyn +Mia +Tara +Ariana +Diana +Mckenzie +Meagan +Riley +Brenna +Faith +Kelsie +Kendall +Lisa +Maya +Taryn +Anne +Bianca +Christine +Claudia +Kira +Naomi +Tori +Ariel +Kylee +Lindsay +Melanie +Sadie +Ashleigh +Aubrey +Jessie +Sandra +April +Casey +Katelynn +Lily +Mercedes +Monique +Peyton +Alissa +Anastasia +Angelina +Ciara +Deanna +Kristina +Mallory +Whitney +Carolyn +Gabriela +Justine +Kyla +Lacey +Leslie +Renee +Ruby +Summer +Alana +Bryanna +Dakota +Guadalupe +Julie +Kassandra +Logan +Marisol +Raven +Amelia +Arianna +Camille +Delaney +Isabelle +Josephine +Kirsten +Kristin +Patricia +Raquel +Theresa +Tia +Valerie +Abby +Aimee +Brandy +Evelyn +Heidi +Jocelyn +Julianna +Kailey +Karla +Maggie +Makenzie +Payton +Shayla +Adrianna +Asia +Dana +Elena +Josie +Kaitlynn +Krystal +Madeleine +Marina +Alisha +Felicia +Hanna +Jasmin +Jazmine +Kennedy +Krista +Nichole +Nikki +Rosa +Savanna +Annie +Deja +Desirae +Eva +Joanna +Lydia +Miriam +Nancy +Allyson +Annika +Baylee +Cheyanne +Denise +Genesis +Karissa +Linda +Mayra +Shawna +Skylar +Talia +Toni +Alanna +Carissa +Chandler +Darby +Diamond +Ellen +Janae +Janet +Kate +Kaylie +Laurel +Maddison +Nina +Rachelle +Tania +Virginia +Adrienne +Angelique +Ashlyn +Clarissa +Cristina +Destinee +Gianna +Hailee +Haleigh +Helen +Larissa +Liliana +Lillian +Lyndsey +Makenna +Marie +Moriah +Nadia +Ryan +Sidney +Tanya +Alexia +Brianne +Brooklyn +Carrie +Charlotte +Cindy +Eleanor +Emilee +Esmeralda +Esther +Estrella +Francesca +Genevieve +Georgia +Gloria +Harley +Hunter +Jaime +Jazmin +Jenny +Kali +Kayleigh +Kiara +Kristine +Rikki +Robin +Robyn +Ruth +Serena +Tayler +Tiana +Alaina +Alice +Aliyah +Antonia +Ashton +Avery +Breana +Bridget +Celeste +Chantel +Christa +Elisa +Jacquelyn +Jane +Janelle +Juliana +Kaley +Leticia +Lexi +Lexus +Lucy +Mariana +Melody +Reyna +Rylee +Sage +Shyanne +Susan +Sylvia +Tamara +Tatiana +Alexus +Alysha +Ann +Ashlynn +Carla +Chelsey +Clara +Dallas +Daniela +Destiney +Devon +Emilie +Esperanza +Justina +Kaela +Kaylyn +Martha +Mckayla +Meredith +Sarina +Savanah +Sophie +Stacy +Teresa +Tess +Tianna +Tyler +Valeria +Yasmin +Alexandrea +Alysa +Aubree +Bernadette +Caley +Callie +Cara +Carley +Carolina +Cassie +Cecelia +Cecilia +Celina +Ciera +Darian +Devin +Ebony +Elisabeth +Eliza +Flor +Hallie +Harmony +Jayme +Jena +Joy +Kacie +Kari +Kasandra +Kassidy +Katharine +Katia +Keely +Keisha +Lea +Leandra +Lizbeth +Lorena +Luz +Madelyn +Paulina +Sheila +Stephany +Tina +Abbey +Addison +Alex +Alycia +Alysia +Anissa +Anjelica +Araceli +Beatriz +Blanca +Breanne +Carina +Casandra +Chase +Cristal +Danika +Elaine +Ella +Gina +Gretchen +Haylee +Jaclyn +Jaimie +Jillian +Julianne +Justice +Kacey +Kaila +Kaya +Kayley +Kellie +Kianna +Kiersten +Kyleigh +Maira +Micah +Misty +Mollie +Noelle +Pamela +Perla +Regan +Regina +Rhiannon +Sasha +Savana +Shaina +Shayna +Shea +Shelbi +Sheridan +Simone +Thalia +Tiara +Trinity +Aaliyah +Alayna +Alia +Alyson +Anneliese +Anya +Barbara +Berenice +Brielle +Brittanie +Candace +Candice +Carmen +Christiana +Colette +Colleen +Danae +Demi +Eden +Ellie +Fabiola +Frances +Gillian +Graciela +Gwendolyn +Imani +India +Irene +Iris +Janessa +Jayda +Johanna +Jordin +Kaci +Kalie +Kasey +Katlyn +Kaylynn +Kenzie +Kimberley +Lacy +Lanae +Lena +Lucero +Lucia +Margarita +Maribel +Marilyn +Marley +Melinda +Micaela +Mireya +Natalia +Nayeli +Noemi +Paola +Rebeca +Sarai +Selina +Sharon +Skyler +Tabitha +Tierra +Viridiana +Yolanda +Aleah +Alena +Ali +Alina +Allie +Anika +Annelise +Antoinette +Ashli +Athena +Aurora +Ava +Ayanna +Britney +Carli +Chantal +Chelsie +Christian +Codi +Cora +Corina +Diane +Fatima +Fiona +Gabriel +Halle +Haven +Heaven +Itzel +Ivy +Jacklyn +Jaden +Janell +Jayden +Jesse +Judith +Juliette +Kailee +Kaleigh +Kallie +Katarina +Kaylin +Kelli +Kelsea +Kelsi +Kia +Kiley +Kirstin +Kori +Kourtney +Kristi +Kyle +Kyrsten +Lauryn +Leigha +Lesley +Lexis +Lia +Lillie +Macy +Mandy +Mara +Maren +Marin +Mattie +Mikala +Nicolette +Piper +Priscilla +Reagan +Renae +Rose +Rowan +Roxanne +Ryann +Sally +Shauna +Shelbie +Sonia +Stacie +Stefanie +Susana +Sydnie +Tracy +Tristan +Vivian +Viviana +Willow +Yessica +Zoey +Abrianna +Adilene +Alisa +Alma +Amara +Amethyst +Andie +Anita +Audrianna +Austin +Bailee +Beth +Bonnie +Breann +Brook +Brooklynn +Calli +Candy +Carson +Cassondra +Catalina +Celine +Charity +Chiara +Cinthya +Connie +Cori +Danelle +Daniella +Destany +Destini +Donna +Drew +Edith +Elicia +Elissa +Elle +Eryn +Evangelina +Griselda +Haily +Halie +Halley +Haylie +Helena +Hillary +Jailene +Janay +Jayde +Jazmyn +Jeanette +Jewel +Joelle +Joselyn +Kailyn +Karlee +Karley +Katelin +Katy +Kayle +Kayli +Keira +Kierra +Kimberlee +Layla +Linnea +Lizeth +Loryn +Madelynn +Malia +Malika +Mari +Maura +Nia +Nikita +Nora +Quiana +Quinn +Racheal +Rae +Raelynn +Raina +Rhianna +Rian +Rochelle +Rosemary +Rylie +Salena +Serenity +Shay +Shaylene +Sheena +Shianne +Shiloh +Silvia +Sonja +Sonya +Suzanne +Sydni +Tatianna +Tiffani +Tristyn +Vicky +Wendy +Yadira +Yahaira +Yazmin +Yvette +Yvonne +Hannah +Emily +Jessica +Sarah +Madison +Samantha +Taylor +Ashley +Megan +Elizabeth +Rachel +Alyssa +Alexis +Lauren +Emma +Kayla +Morgan +Amanda +Alexandra +Brianna +Jennifer +Jordan +Abigail +Victoria +Nicole +Brittany +Danielle +Rebecca +Sierra +Anna +Katherine +Olivia +Amber +Mariah +Sydney +Brooke +Jasmine +Haley +Stephanie +Maria +Kaitlyn +Savannah +Allison +Bailey +Marissa +Courtney +Sara +Erin +Mackenzie +Mary +Julia +Madeline +Natalie +Destiny +Alexandria +Grace +Miranda +Shelby +Mikayla +Melissa +Vanessa +Cheyenne +Katelyn +Paige +Amy +Andrea +Kathryn +Laura +Alicia +Angelica +Michelle +Jenna +Hailey +Christina +Gabrielle +Jamie +Cassidy +Cassandra +Kaylee +Kelsey +Makayla +Caitlin +Kylie +Sophia +Monica +Sabrina +Crystal +Michaela +Molly +Breanna +Shannon +Heather +Isabella +Jade +Tiffany +Claire +Ana +Kimberly +Leah +Faith +Jacqueline +Alexa +Autumn +Briana +Angel +Angela +Caroline +Kelly +Audrey +Kendra +Adriana +Chelsea +Dominique +Leslie +Meghan +Alejandra +Aspen +Isabel +Kaitlin +Lindsey +Mckenna +Natasha +Riley +Veronica +Bethany +Kristen +Rebekah +Selena +Rachael +Bianca +Erica +Gabriela +Katie +Zoe +Adrianna +Ariana +Chloe +Gabriella +Mckenzie +Brittney +Diana +Jordyn +Caitlyn +Kyra +Aubrey +Catherine +Erika +Margaret +Alondra +Anne +Arianna +Kara +Karina +Maya +Tessa +Hope +Monique +Kathleen +Kylee +Mia +Valerie +Ariel +Hayley +Madeleine +Payton +Kirsten +Lydia +Naomi +Nina +Peyton +Shayla +Tiana +Brenna +Cierra +Dana +Delaney +Holly +Jocelyn +Kristin +Melanie +Mikaela +Anastasia +Angelina +Cynthia +Elise +Alexus +Ashleigh +Cindy +Dakota +Desiree +Karen +Kendall +Kyla +Makenna +Marisol +Alexia +Amelia +Brenda +Elena +Hanna +Kiana +Lily +Mallory +Raven +Sadie +Baylee +Casey +Esmeralda +Jillian +Julie +Lillian +Lindsay +Sandra +Summer +Tara +Allyson +Ashlyn +Christine +Kira +Krista +Marisa +Savanna +Ashlee +Brandi +Ciara +Heidi +Ivy +Jazmine +Katrina +Kristina +Raquel +Tori +Whitney +April +Avery +Brooklyn +Carly +Isabelle +Justine +Karla +Marina +Renee +Abby +Alison +Brandy +Charlotte +Daisy +Gina +Josephine +Mireya +Patricia +Ruby +Taryn +Camille +Carissa +Cheyanne +Claudia +Jazmin +Julissa +Kassidy +Mercedes +Noelle +Shania +Sofia +Tia +Aaliyah +Alana +Deanna +Evelyn +Hunter +Janet +Jessie +Katelynn +Lacey +Larissa +Lisa +Sage +Tabitha +Yadira +Alma +Annika +Carmen +Denise +Devin +Ella +Eva +Felicia +Joanna +Kennedy +Sophie +Teresa +Tyler +Yesenia +Alisha +Alissa +Allie +Aurora +Bailee +Cameron +Carolyn +Elisabeth +Guadalupe +Jasmin +Julianna +Kassandra +Logan +Ruth +Simone +Tatiana +Valeria +Antonia +Bridget +Clara +Genevieve +Jaime +Kaylie +Liliana +Moriah +Nancy +Nichole +Serena +Shayna +Shea +Angelique +Ashton +Colleen +Deja +Fiona +Gillian +Harley +Jada +Janae +Janelle +Krystal +Makenzie +Nora +Rosa +Rose +Talia +Alex +Alisa +Ann +Callie +Cecilia +Celeste +Chandler +Daniela +Desirae +Devon +Ellen +Esperanza +Giselle +Hailee +Jaqueline +Kailey +Kaitlynn +Kali +Kaylin +Lorena +Madelyn +Mariela +Mckayla +Meagan +Melody +Sasha +Virginia +Alexandrea +Asia +Cara +Carley +Cassie +Chantel +Emilee +Haylee +Heaven +Helen +Johanna +Josie +Joy +Juliana +Katlyn +Kayleigh +Kianna +Kiera +Meredith +Nikki +Paola +Regan +Reilly +Rylee +Shae +Shyanne +Skylar +Tatum +Tianna +Tina +Acacia +Annie +Arielle +Breana +Brianne +Carla +Clare +Cristina +Destinee +Eliza +Jacquelyn +Justice +Kelsie +Kenya +Kristi +Kristine +Lauryn +Leticia +Maggie +Maribel +Martha +Mayra +Micaela +Miriam +Natalia +Pamela +Perla +Rhiannon +Shawna +Sidney +Sienna +Skye +Sonya +Tess +Tyra +Vivian +Addison +Alaina +Alena +Alice +Barbara +Bonnie +Carrie +Charity +Clarissa +Darby +Darian +Devyn +Fatima +Francesca +Imani +Ingrid +Irene +Jane +Jayla +Jenifer +Jenny +Jesse +Kaela +Karissa +Kasey +Kaycee +Kellie +Lizbeth +Maegan +Malia +Mariana +Marie +Marley +Phoebe +Rayna +Rylie +Thalia +Theresa +Toni +Wendy +Yasmin +Yulissa +Alexi +Aliyah +Anahi +Araceli +Bobbie +Carina +Carolina +Cora +Cortney +Danae +Diamond +Ebony +Eleanor +Elisa +Halle +Iris +Janessa +Jill +Kaelyn +Katarina +Kate +Katharine +Kathy +Keely +Kiara +Kiersten +Lena +Lesley +Lesly +Lilly +Lucy +Madisen +Maritza +Micah +Myranda +Odalys +Regina +Robin +Robyn +Ryan +Savanah +Serenity +Skyler +Tierra +Zoey +Aimee +Alina +Alysia +Alyson +Amalia +Anika +Anissa +Anjelica +Ashly +Ashlynn +Aylin +Blair +Blanca +Breanne +Bridgette +Brook +Brooklynn +Bryanna +Candice +Carli +Casandra +Cayla +Chelsey +Coral +Corina +Cristal +Edith +Ellie +Emilia +Emilie +Eryn +Estrella +Gianna +Gladys +Graciela +Hallie +Hazel +India +Jaimee +Jayde +Jodi +Kacey +Kaley +Kari +Karlee +Karli +Katelin +Kelli +Kiley +Lacie +Laurel +Leanne +Lexi +Lexus +Liana +Lilia +Maddison +Mara +Marisela +Melisa +Michaella +Noel +Odalis +Paula +Raelynn +Raina +Randi +Reanna +Rochelle +Roxanne +Selina +Sheridan +Shyla +Sydnee +Sylvia +Tammy +Tanya +Tatyana +Tayler +Tea +Willow +Yasmine +Abbey +Aileen +Aiyana +Aleah +Ali +Alia +Amari +Angie +Anita +Annelise +Annette +Ayla +Blake +Britney +Brittani +Caley +Candace +Carlee +Cecelia +Celestina +Celia +Chantal +Christian +Cinthia +Cydney +Dalia +Dayna +Deborah +Destanie +Elisha +Elissa +Elle +Estefania +Fabiola +Fallon +Frances +Genesis +Gloria +Greta +Gretchen +Gwendolyn +Haleigh +Hana +Haven +Haylie +Jaclyn +Jasmyn +Jayda +Jolene +Jorden +Juana +Juanita +Juliette +Justina +Kaila +Kailee +Kaleigh +Kallie +Karah +Keeley +Kerri +Kori +Lara +Leeann +Linda +Lluvia +Madalyn +Madyson +Magdalena +Maia +Mari +Marilyn +Meaghan +Myra +Nicolette +Norma +Paulina +Reagan +Rocio +Sariah +Silvia +Sonia +Susan +Sydnie +Tamara +Tania +Tarah +Teagan +Tegan +Vanesa +Viviana +Yvette +Abbie +Adrienne +Aisha +Aislinn +Alessandra +Analisa +Annabelle +Annalise +Antoinette +Athena +Aubrie +Ayana +Baily +Berenice +Breeanna +Britta +Brynn +Cali +Carol +Carson +Chase +Ciarra +Cori +Dahlia +Dallas +Dani +Daria +Davina +Dawn +Destany +Devan +Dorothy +Dylan +Elisia +Ericka +Eve +Halie +Jaden +Jaylynn +Jazmyn +Jeanette +Jena +Judith +Julianne +Juliet +Kaci +Kalie +Kasandra +Katy +Kayli +Keisha +Kelsea +Kelsi +Kenna +Kierra +Kortney +Kourtney +Krysta +Leandra +Leilani +Lia +Lidia +Lois +Luz +Lyndsey +Macy +Magali +Makena +Maranda +Margarita +Maricela +Micayla +Mikala +Mollie +Myah +Nayeli +Nia +Nikita +Noemi +Paloma +Paris +Patience +Priscilla +Rachelle +Raegan +Rebeca +Reyna +Rhianna +Rianna +Rosalie +Ryann +Salina +Sarina +Shanna +Shantel +Shauna +Shelbi +Sherry +Shilo +Siena +Stacey +Stephany +Stevie +Tiara +Tiffanie +Tonya +Trina +Trisha +Trista +Valentina +Yajaira +Yasmeen +Yuliza +Emily +Samantha +Hannah +Jessica +Madison +Sarah +Ashley +Taylor +Elizabeth +Alexis +Lauren +Alyssa +Megan +Emma +Rachel +Kayla +Amanda +Jordan +Morgan +Alexandra +Brianna +Sydney +Anna +Abigail +Jennifer +Nicole +Olivia +Sierra +Victoria +Brittany +Mariah +Katherine +Rebecca +Brooke +Haley +Jasmine +Julia +Natalie +Stephanie +Kaitlyn +Savannah +Danielle +Maria +Destiny +Shelby +Allison +Amber +Courtney +Madeline +Cheyenne +Grace +Mackenzie +Bailey +Andrea +Vanessa +Sara +Marissa +Sophia +Miranda +Michelle +Alicia +Angelica +Breanna +Erin +Mary +Gabrielle +Chloe +Mikayla +Isabella +Alexandria +Jenna +Kaylee +Zoe +Hailey +Melissa +Molly +Faith +Jade +Laura +Makayla +Claire +Katelyn +Kimberly +Kylie +Cassandra +Christina +Paige +Autumn +Kathryn +Kelsey +Michaela +Sabrina +Katie +Kelly +Amy +Diana +Angela +Erica +Isabel +Cassidy +Lindsey +Leslie +Heather +Leah +Caroline +Maya +Mckenna +Caitlin +Margaret +Selena +Shannon +Dominique +Esmeralda +Gabriella +Riley +Adriana +Erika +Jacqueline +Tiffany +Rachael +Veronica +Hanna +Kristen +Alexa +Avery +Caitlyn +Crystal +Ariana +Jazmin +Naomi +Angel +Aspen +Jamie +Jordyn +Kaitlin +Chelsea +Isabelle +Rebekah +Ana +Arianna +Bethany +Alejandra +Alondra +Briana +Guadalupe +Karen +Mia +Catherine +Kendra +Lily +Lindsay +Brenda +Kendall +Kylee +Monica +Allyson +Ariel +Delaney +Hayley +Madeleine +Melanie +Peyton +Carly +Shania +Amelia +Angelina +Dakota +Gabriela +Karla +Meghan +Valerie +Adrianna +Aubrey +Claudia +Daisy +Kathleen +Kiana +Mikaela +Audrey +Cynthia +Lillian +Serena +Casey +Kira +Monique +Natasha +Patricia +Brittney +Eva +Evelyn +Hope +Ruby +Holly +Karina +Kate +Madelyn +Sadie +Sophie +Yesenia +Anastasia +Desiree +Elena +Jasmin +Jazmine +Joanna +Kiara +Maggie +Sofia +Summer +Alexus +Brenna +Carmen +Julie +Katrina +Kyra +Raquel +Sandra +Savanna +Alissa +Anne +Brandi +Brandy +Cameron +Cierra +Kyla +Lisa +Mercedes +Tara +Whitney +Alison +Ashleigh +Baylee +Bianca +Charlotte +Lydia +Mallory +Mckenzie +Tessa +Tori +Alana +Brooklyn +Daniela +Ellie +Janessa +Kailey +Raven +Taryn +Christine +Elise +Janae +Jocelyn +Kristina +Lacey +Marisa +Payton +Rylee +Skylar +Alexia +Asia +Ava +Cecilia +Cindy +Julianna +Kali +Kara +Katelynn +Kaylie +Makenzie +Marisol +Nancy +Sidney +Tyler +Annika +Ashlee +Bridget +Eleanor +Esperanza +Hunter +Jillian +Justine +Makenna +Marie +Mayra +Rosa +Skyler +Talia +Bryanna +Camille +Clare +Gillian +Gina +Krista +Leticia +Micaela +Mireya +Nina +Pamela +Renee +Rhiannon +Rose +Tayler +Aaliyah +Alisha +Angelique +Annie +Carolina +Celeste +Deanna +Ella +Heidi +Janelle +Jaqueline +Kassandra +Keely +Kennedy +Mckayla +Moriah +Natalia +Sasha +Savanah +Shayla +Tabitha +Abby +Alexandrea +Allie +April +Callie +Iris +Jacquelyn +Jada +Kaley +Kristin +Liliana +Madalyn +Mariana +Aliyah +Chase +Dana +Esther +Giselle +Juliana +Kacey +Krystal +Marina +Nichole +Tatiana +Tianna +Valeria +Addison +Aimee +Anahi +Bailee +Brook +Clara +Devin +Emilee +Estrella +Gianna +Helen +Ivy +Jessie +Josephine +Justice +Katharine +Lauryn +Linda +Logan +Miriam +Paola +Priscilla +Sage +Skye +Yasmine +Alaina +Carissa +Darian +Destinee +Devon +Edith +Fiona +Genevieve +Hailee +Haleigh +Harley +Kaylin +Kiersten +Kirsten +Melina +Nikki +Quinn +Reagan +Ruth +Shea +Tess +Tiara +Alice +Ashlyn +Ashlynn +Blanca +Carrie +Cristina +Donna +Felicia +Francesca +Genesis +Georgia +Jailene +Jewel +Josie +Kaila +Karissa +Kiley +Laurel +Lexi +Lexie +Lucy +Maddison +Nadia +Sienna +Tatum +Tiana +Wendy +Aileen +Arielle +Aubrie +Breana +Camryn +Carolyn +Cassie +Cheyanne +Ciara +Colleen +Cora +Cortney +Daphne +Dulce +Emilie +Gloria +Halie +Judith +Julissa +Kailee +Kaleigh +Kasey +Kassidy +Keeley +Kelli +Kianna +Larissa +Lea +Lena +Macy +Meagan +Mollie +Montana +Nora +Paris +Rhianna +Robyn +Simone +Sonia +Stacy +Tanya +Virginia +Yasmin +Aleah +Alena +Ali +Alycia +Alysa +Antonia +Ayanna +Bonnie +Caley +Carley +Celina +Chandler +Daniella +Deborah +Deja +Eileen +Eliza +Ellen +Elyse +Eryn +Hadley +Haylee +Heaven +Imani +Jenny +Kaitlynn +Kalie +Kellie +Kelsi +Kenzie +Lilly +Lorena +Maia +Mara +Maribel +Mykayla +Noelle +Randi +Regan +Salma +Shawna +Sky +Stephany +Susan +Tania +Teresa +Theresa +Tyra +Willow +Abbey +Alex +Ally +Alma +Alyson +Ann +Antoinette +Araceli +Ashton +Brianne +Brooklynn +Caitlynn +Carla +Carlie +Cayla +Clarissa +Damaris +Dawn +Elisa +Elisabeth +Emmalee +Halle +Hallie +Helena +Jaelyn +Jane +Jazmyne +Julianne +Kaelyn +Kayleigh +Kayli +Kelsie +Kiera +Kinsey +Lesly +Lyndsey +Madisen +Martha +Meredith +Mya +Nataly +Perla +Rachelle +Reina +Saige +Serenity +Shayna +Sonya +Sylvia +Toni +Trinity +Vanesa +Vivian +Viviana +Zoey +Alayna +Alexi +Anastacia +Anika +Anissa +Annabelle +Ashtyn +Athena +Aubree +Ayla +Barbara +Carina +Cecelia +Chantel +Charity +Christa +Corinne +Darby +Delilah +Diamond +Elle +Graciela +Hana +Hayden +Isis +Jaden +Janet +Jayda +Jayden +Jenifer +Jesse +Johanna +Juanita +Julisa +Karli +Kasandra +Katana +Katarina +Katelin +Katerina +Katlyn +Kaylynn +Kelley +Kelsea +Kenna +Leandra +Lesley +Lizbeth +Luz +Madelynn +Madilyn +Madisyn +Maegan +Makena +Maren +Margarita +Marley +Mckinley +Melinda +Melody +Miah +Monika +Noemy +Paula +Phoebe +Piper +Reanna +Regina +Reilly +Reyna +Rocio +Roxanne +Rylie +Sariah +Shaylene +Shyanne +Shyla +Siena +Stevie +Tamara +Tea +Tristen +Abigayle +Abril +Adeline +Adrienne +Aidan +Alexys +Alize +Anita +Annelise +Aurora +Berenice +Bernadette +Breann +Breanne +Bryce +Calista +Callista +Camilla +Cara +Carlee +Celia +Celine +Christy +Dayna +Dorothy +Elaina +Fatima +Gracie +Gretchen +Gwendolyn +Izabella +Jami +Jayme +Jensen +Joanne +Juliet +Kacie +Kaela +Kalyn +Kathrine +Kathy +Katia +Kaycee +Kaylyn +Kaytlyn +Kierra +Kori +Kortney +Lara +Leilani +Linnea +Macayla +Madalynn +Madysen +Maeve +Marilyn +Maura +Meaghan +Michele +Moira +Nallely +Nicolette +Noemi +Odalis +Paulina +Quincy +Robin +Rowan +Ryan +Ryley +Shelbi +Silvia +Skyla +Stella +Tasia +Tawny +Thalia +Tristan +Unique +Yadira +Yajaira +Yulissa +Abbigail +Abriana +Aislinn +Alijah +Alina +Allyssa +Alysia +Amari +Angie +Anjelica +Annamarie +Areli +Arely +Arianne +Ashlie +Ayana +Beatriz +Bethanie +Britney +Brynn +Cali +Candice +Carol +Catalina +Celestina +Chelsey +Chelsie +Ciarra +Ciera +Coral +Cori +Daria +Dejah +Denise +Desirae +Domonique +Eboni +Eliana +Elicia +Essence +Estefany +Estela +Estephanie +Fernanda +Flor +Frances +Genna +Gisel +Irma +Itzel +Jacey +Jaiden +Jana +Jaquelin +Jayde +Jayla +Jaylene +Jaylynn +Jazlyn +Joyce +Juana +Judy +Juliette +Kaia +Kamryn +Karlee +Karly +Katy +Keanna +Keila +Kendal +Kenia +Kristine +Leanna +Lexus +Lilia +Lisette +Lori +Macey +Madyson +Magdalena +Malia +Mallorie +Mandy +Marlee +Marlena +Meriah +Micah +Mikala +Myra +Myranda +Nadine +Nathalie +Odalys +Pearl +Quiana +Raeanne +Raegan +Rayna +Renae +Rita +Rochelle +Ryann +Sarahi +Savana +Shaelyn +Shaina +Sharon +Shay +Sheridan +Shyann +Star +Tatianna +Tatyana +Taya +Tierra +Winter +Xena +Yanet +Yessica +Yvonne +Hannah +Emily +Madison +Sarah +Jessica +Samantha +Ashley +Taylor +Alexis +Emma +Megan +Lauren +Alyssa +Elizabeth +Rachel +Kayla +Sydney +Morgan +Brianna +Abigail +Anna +Olivia +Jennifer +Grace +Victoria +Nicole +Maria +Sierra +Alexandra +Jasmine +Savannah +Amanda +Brittany +Haley +Katherine +Jordan +Mariah +Julia +Rebecca +Danielle +Kaitlyn +Brooke +Natalie +Allison +Mackenzie +Sophia +Isabella +Bailey +Stephanie +Chloe +Vanessa +Amber +Destiny +Shelby +Gabrielle +Mary +Courtney +Sara +Andrea +Marissa +Breanna +Mikayla +Katelyn +Hailey +Madeline +Makayla +Faith +Isabel +Cheyenne +Molly +Claire +Kaylee +Kylie +Erin +Maya +Melissa +Cassandra +Jenna +Kathryn +Michelle +Laura +Riley +Diana +Alicia +Amy +Paige +Alexa +Miranda +Leah +Leslie +Angel +Cassidy +Jamie +Kimberly +Zoe +Jacqueline +Caroline +Alexandria +Christina +Jade +Lindsey +Angela +Autumn +Mckenna +Veronica +Katie +Kiara +Alondra +Aspen +Kelsey +Briana +Gabriella +Angelica +Caitlyn +Gabriela +Meghan +Shannon +Caitlin +Daisy +Lily +Skylar +Erica +Mckenzie +Hope +Yesenia +Sabrina +Selena +Jordyn +Peyton +Rebekah +Alejandra +Brittney +Margaret +Ariana +Delaney +Isabelle +Kelly +Adriana +Audrey +Elena +Erika +Karina +Michaela +Tessa +Avery +Ana +Brenna +Camryn +Cynthia +Evelyn +Bethany +Brenda +Heather +Mia +Catherine +Dominique +Payton +Tiffany +Adrianna +Arianna +Crystal +Daniela +Karen +Kylee +Kyra +Makenna +Angelina +Holly +Kathleen +Rachael +Trinity +Aubrey +Desiree +Esmeralda +Maggie +Brooklyn +Hayley +Jazmine +Dakota +Jasmin +Jillian +Kaitlin +Kendra +Kristen +Kyla +Lillian +Lydia +Monica +Naomi +Anastasia +Bianca +Celeste +Katrina +Kendall +Lauryn +Melanie +Ruby +Tori +Abby +Alexia +Julianna +Madelyn +Sophie +Valeria +Valerie +Cameron +Kate +Tiana +April +Kara +Nancy +Anne +Kira +Rhiannon +Tara +Alison +Amelia +Cierra +Josephine +Savanna +Shania +Summer +Cecilia +Ella +Ellie +Hanna +Jazmin +Joanna +Jocelyn +Lindsay +Lizbeth +Marisa +Natalia +Serena +Shayla +Ashleigh +Ava +Camille +Casey +Jada +Jaqueline +Karla +Katelynn +Lisa +Rose +Taryn +Abbey +Giselle +Sandra +Alana +Carly +Chelsea +Clarissa +Esperanza +Eva +Felicity +Genesis +Guadalupe +Julie +Raquel +Wendy +Ariel +Ashlee +Ashlyn +Bryanna +Deja +Gianna +Heidi +Josie +Kaitlynn +Kaley +Kennedy +Kiana +Madeleine +Makenzie +Sadie +Aaliyah +Alissa +Aliyah +Carissa +Carmen +Charlotte +Clara +Mikaela +Mya +Nina +Paola +Raven +Skyler +Sofia +Aileen +Allyson +Aurora +Christine +Ciara +Claudia +Elise +Gillian +Gloria +Iris +Janelle +Jenny +Krystal +Marina +Rylee +Rylie +Sage +Sidney +Tyler +Amaya +Annie +Asia +Athena +Carla +Cindy +Elisabeth +Ellen +Estrella +Janae +Kailee +Kamryn +Kassidy +Kaylie +Lacey +Larissa +Lesly +Meagan +Monique +Natasha +Addison +Alaina +Annika +Bridget +Brynn +Carolyn +Harley +Ivy +Juliana +Kali +Karissa +Kayleigh +Kirsten +Logan +Luz +Marie +Mercedes +Miriam +Patricia +Reagan +Ruth +Tania +Tatum +Tayler +Alma +Angelique +Ashton +Brandi +Brandy +Hailee +Janet +Kassandra +Mallory +Nadia +Renee +Talia +Teresa +Vivian +Whitney +Annabelle +Cheyanne +Elaina +Haylee +Jacquelyn +Joy +Kailey +Lesley +Martha +Melody +Micaela +Moriah +Pamela +Reilly +Alexus +Allie +Baylee +Brianne +Britney +Ciera +Cora +Dana +Deanna +Georgia +Hallie +Hunter +Jessie +Johanna +Kiley +Liliana +Linda +Margarita +Marisol +Mayra +Perla +Rosa +Ryan +Sasha +Sienna +Tamara +Theresa +Ashlynn +Denise +Dulce +Eliza +Emilee +Emilie +Fatima +Fiona +Jaclyn +Jaden +Janessa +Jayden +Jenifer +Kelli +Krista +Kristina +Lexi +Lilly +Lucy +Macy +Malia +Mara +Noelle +Nora +Paulina +Priscilla +Quinn +Raelynn +Regan +Shayna +Stacy +Sylvia +Tabitha +Tatiana +Virginia +Yasmine +Zoey +Abigayle +Alayna +Alexandrea +Alisha +Aliya +Anahi +Ann +Calista +Callie +Celia +Cortney +Diamond +Esther +Gina +Halle +Itzel +Jazmyn +Journey +Justice +Katarina +Katlyn +Kaylin +Kiarra +Kiera +Kristin +Lena +Lizeth +Maddison +Madelynn +Mariam +Mckayla +Mollie +Nayeli +Paris +Salma +Shae +Shyanne +Sonja +Stephany +Sydnie +Tanya +Viviana +Allyssa +Anika +Ayla +Blanca +Cailey +Cassie +Chanel +Corinne +Cristal +Danae +Darian +Devon +Edith +Eleanor +Elicia +Elisa +Emely +Fernanda +Genevieve +Gisselle +Heaven +Helen +Jacey +Jadyn +Joslyn +Kacey +Kaleigh +Kasandra +Kasey +Kathy +Katy +Kayli +Kianna +Kourtney +Lizette +Lorena +Madisen +Mireya +Misty +Myranda +Rebeca +Reese +Simone +Skyla +Tess +Thalia +Tianna +Tiara +Tina +Yvette +Abril +Adeline +Adrienne +Aleah +Alexys +Alice +Alina +Aracely +Arielle +Aylin +Bailee +Baylie +Brittanie +Bryn +Cara +Cristina +Destinee +Devin +Elsa +Emmalee +Eve +Greta +Gretchen +Haleigh +Imani +Jolene +Juliet +Julisa +Justine +Kacie +Kaeli +Kaelyn +Kaila +Kalie +Karley +Katelin +Keely +Kelsie +Kenna +Kori +Layla +Lea +Lexus +Lillie +Lyric +Madyson +Mariela +Maritza +Meredith +Micayla +Nia +Paula +Reyna +Robyn +Rocio +Sarai +Savana +Savanah +Sharon +Shyla +Skye +Sonia +Sonya +Susan +Taya +Teagan +Unique +Abbigail +Acacia +Aimee +Annabel +Annalise +Ayanna +Barbara +Bobbi +Carol +Carolina +Carrie +Casandra +Catalina +Cecelia +Chandler +Christian +Christiana +Christy +Corina +Desirae +Devyn +Dianna +Eden +Elyssa +Evelin +Gwendolyn +Hana +Iliana +India +Isis +Izabel +Jailene +Jane +Jayla +Jaylynn +Jesse +Juliette +Karlee +Kayley +Keeley +Kennedi +Kiersten +Kinsey +Kyleigh +Laurel +Macey +Madalyn +Madisyn +Marilyn +Marlene +Noelia +Odalys +Racheal +Reanna +Reina +Sally +Santana +Serenity +Shaylee +Shea +Sheila +Silvia +Stella +Susana +Sydnee +Tasha +Tia +Tierra +Violet +Viridiana +Adia +Aiyana +Alia +Alize +Ally +Alysha +Alysia +Alyson +Alyssia +Amara +Amethyst +Angie +Ashly +Aubree +Brielle +Brook +Cailyn +Carley +Carlie +Celina +Charity +Citlalli +Cyan +Daniella +Danika +Dayana +Dejah +Delia +Delilah +Destiney +Elysia +Essence +Estefany +Evan +Frances +Frankie +Gracie +Griselda +Halie +Harmony +Helena +Irene +Iridian +Irma +Jaelyn +Jana +Jaycee +Jaylene +Joseline +Julissa +Kaia +Karely +Karli +Kaylynn +Kellie +Kenzie +Kristine +Kyle +La +Leeann +Lluvia +Luisa +Mariana +Mercedez +Micah +Michele +Monika +Mykayla +Nichole +Nikki +Odalis +Parker +Phoebe +Piper +Precious +Priscila +Raina +Randi +Rayne +Rileigh +Rita +Robin +Ryleigh +Selina +Shaelynn +Shyann +Sky +Taelor +Tamia +Tyra +Willow +Yajaira +Yasmin +Yazmin +Yvonne +Zoie +Abagail +Akira +Alanna +Alea +Alena +Alessandra +Alisa +America +Analicia +Annaliese +Annamarie +Antonia +Anya +Araceli +Ashlea +Aubriana +Aviana +Azalea +Beatriz +Blake +Brandie +Breanne +Brooklynn +Bryana +Calli +Cambria +Cami +Camila +Camilla +Candace +Carina +Carlee +Caylee +Chantelle +Cherish +Cinthia +Clare +Colleen +Danica +Destany +Destini +Ebony +Eileen +Eliana +Elly +Elyse +Emerson +Eryn +Estefania +Estella +Felicia +Francesca +Gisel +Hadley +Harper +Hayden +Haylie +Ingrid +Ireland +Ivonne +Izabella +Jaime +Janaya +Janel +Jaquelin +Jasmyne +Jaycie +Jayde +Jennie +Jewel +Jill +Jodi +Jorden +Juana +Julianne +Kaci +Kailyn +Kalee +Karlie +Katharina +Kathrine +Katia +Kayle +Kelsi +Krystin +Lacie +Lexie +Liberty +London +Lori +Lucia +Maeve +Maricela +Marin +Marisela +Mckinley +Meaghan +Melisa +Mikala +Myah +Noel +Octavia +Rachelle +Rayna +Roxanne +Ryann +Sarina +Scarlet +Sedona +Selene +Sequoia +Shaelyn +Shantel +Shawna +Shay +Shelbi +Shiloh +Shreya +Siena +Skylee +Tanner +Tatianna +Tatyana +Taylar +Trista +Tristan +Verania +Yulisa +Emily +Hannah +Madison +Ashley +Emma +Sarah +Jessica +Taylor +Lauren +Samantha +Alexis +Elizabeth +Grace +Abigail +Alyssa +Megan +Anna +Sydney +Rachel +Morgan +Olivia +Jennifer +Kayla +Julia +Haley +Jordan +Jasmine +Maria +Brianna +Kaitlyn +Victoria +Alexandra +Isabella +Sierra +Natalie +Chloe +Sophia +Destiny +Nicole +Hailey +Savannah +Katherine +Amanda +Stephanie +Danielle +Makayla +Vanessa +Brooke +Trinity +Mariah +Mackenzie +Allison +Amber +Bailey +Mary +Paige +Shelby +Erin +Rebecca +Kylie +Marissa +Zoe +Kaylee +Madeline +Andrea +Faith +Jenna +Michelle +Mikayla +Sara +Jacqueline +Courtney +Isabel +Katelyn +Kimberly +Brittany +Gabrielle +Leslie +Melissa +Mia +Molly +Angelica +Cassandra +Angela +Jade +Caitlin +Claire +Riley +Caroline +Maya +Cassidy +Lily +Miranda +Alexa +Audrey +Diana +Alexandria +Laura +Alondra +Briana +Payton +Angel +Arianna +Autumn +Cheyenne +Leah +Adriana +Erika +Isabelle +Peyton +Christina +Breanna +Amy +Gabriela +Kathryn +Catherine +Caitlyn +Hope +Jordyn +Karina +Karla +Skylar +Ariana +Heather +Alexia +Ana +Karen +Katie +Margaret +Aubrey +Lindsey +Aspen +Mckenna +Alicia +Angelina +Gabriella +Lillian +Sabrina +Avery +Jaqueline +Kelsey +Daisy +Jocelyn +Kendall +Michaela +Alejandra +Cynthia +Hayley +Jazmine +Monica +Tessa +Adrianna +Kelly +Sophie +Tiffany +Crystal +Dakota +Delaney +Evelyn +Meghan +Elena +Ella +Esmeralda +Jamie +Madelyn +Naomi +Erica +Makenna +Natasha +Summer +Veronica +Elise +Josephine +Kaitlin +Katrina +Kiara +Kyra +Savanna +Valeria +Yesenia +Hanna +Carmen +Claudia +Dominique +Jillian +Mckenzie +Melanie +Rachael +Alissa +Ava +Bethany +Desiree +Lesly +Lindsay +Nadia +Rylee +Valerie +Kendra +Kylee +Lydia +Shannon +Ariel +Ashlyn +Brenna +Britney +Jasmin +Mercedes +Selena +Anahi +Bianca +Brenda +Camryn +Daniela +Sidney +Brittney +Heidi +Jada +Kate +Kathleen +Kennedy +Kyla +Mikaela +Mya +Sofia +Alana +Fatima +Kira +Ruby +Sadie +Sandra +Cindy +Emilee +Genesis +Guadalupe +Holly +Julie +Liliana +Lisa +Rebekah +Abby +Anastasia +Eva +Kiana +Aaliyah +Alexus +Annika +Cecilia +Chelsea +Cierra +Joanna +Julianna +Kristen +Natalia +Paola +Piper +Teresa +Wendy +Aliyah +Carly +Giselle +Hailee +Kassandra +Marisa +Alison +Alma +Annie +April +Celeste +Ciara +Esperanza +Jenny +Kailey +Lauryn +Macy +Mariana +Marina +Rosa +Whitney +Brooklyn +Cameron +Carissa +Charlotte +Jaden +Kassidy +Katlyn +Makenzie +Renee +Rose +Sage +Tatum +Anne +Casey +Ellie +Jazmin +Madeleine +Malia +Patricia +Serenity +Talia +Brooklynn +Camille +Gianna +Kara +Lilly +Marie +Melody +Nancy +Ruth +Shayla +Addison +Amaya +Ashlynn +Brisa +Eleanor +Esther +Fiona +Gracie +Haylee +Jacquelyn +Kaitlynn +Laurel +Linda +Maddison +Mallory +Nayeli +Nina +Tara +Taryn +Tia +Tori +Allie +Angelique +Ashlee +Ashleigh +Clara +Eliza +Fernanda +Jayden +Katelynn +Kirsten +Kristina +Litzy +Lizbeth +Maggie +Maribel +Shania +Skyler +Tanya +Tiana +Virginia +Alayna +Allyson +Amelia +Brandi +Carolina +Dana +Denise +Elisabeth +Gillian +Hunter +Ivy +Jaquelin +Josie +Juliana +Kali +Karissa +Leticia +Madelynn +Maia +Marisol +Priscilla +Ryan +Savana +Serena +Tania +Vivian +Viviana +Aubree +Aurora +Bryanna +Callie +Cheyanne +Christine +Cristina +Haleigh +Halle +Justine +Monique +Paulina +Quinn +Reagan +Savanah +Sylvia +Theresa +Zoey +Alina +Annalise +Anya +Athena +Ayla +Baylee +Bridget +Daphne +Halie +India +Iris +Jaelyn +Jane +Jayde +Julissa +Larissa +Lucy +Madyson +Micaela +Miriam +Perla +Phoebe +Raven +Susan +Tabitha +Tatiana +Tayler +Yasmin +Abbey +Annabelle +Beatriz +Brandy +Calista +Cassie +Clarissa +Deanna +Felicia +Genevieve +Gisselle +Graciela +Gretchen +Hayden +Heaven +Jadyn +Jaiden +Jayda +Jessie +Johanna +Kayleigh +Kaylie +Krystal +Leilani +Madisyn +Mayra +Shyanne +Yamile +Alanna +Araceli +Carlee +Cora +Cristal +Destinee +Devyn +Eliana +Emilie +Eve +Georgia +Itzel +Janet +Kailee +Kaleigh +Kamryn +Kathy +Kristin +Lacey +Layla +Lesley +Lexi +Lilian +Lucia +Luz +Mara +Martha +Mireya +Nataly +Raquel +Reina +Reyna +Rhiannon +Sydnee +Tess +Aimee +Alaina +Ally +Bailee +Barbara +Blake +Devin +Edith +Elisa +Estrella +Haylie +Jayla +Joslyn +Joy +Julianne +Kaley +Kelsie +Kiera +Kiley +Kori +Laila +Lorena +Macey +Madalyn +Marilyn +Maritza +Noelle +Reilly +Robin +Roxanne +Sasha +Sheridan +Sydnie +Toni +Yadira +Acacia +Aileen +Alisha +Alize +Alycia +Alyson +Anika +Antoinette +Aria +Arleth +Ashton +Cara +Carla +Carolyn +Ciera +Dallas +Deja +Gloria +Greta +Hallie +Harley +Irene +Izabella +Jailene +Janae +Janelle +Janessa +Jaycee +Jaylene +Jazmyne +Jewel +Judith +Juliet +Kyleigh +Lilliana +Lizeth +Melina +Nikki +Pamela +Precious +Regan +Rosalinda +Rylie +Sarai +Shea +Shyann +Sienna +Silvia +Taya +Teagan +Tierra +Tyler +Abril +Adalyn +Adilene +Alena +Alexandrea +Annabel +Aracely +Arely +Astrid +Ayanna +Blanca +Brynn +Candice +Carlie +Corinne +Danika +Devon +Eden +Emely +Felicity +Hana +Helen +Helena +Imani +Isabell +Isis +Jacey +Jalyn +Justice +Kacey +Kaela +Katya +Kaycee +Kenna +Kenzie +Kristi +Lexie +Makena +Mariam +Marian +Mckayla +Meagan +Meredith +Nichole +Paloma +Regina +Rita +Robyn +Rowan +Shae +Sharon +Skye +Sonia +Stacy +Tatyana +Tianna +Tiara +Yaquelin +Yolanda +Alysia +Ann +Antonia +Areli +Arielle +Aryanna +Ashly +Asia +Aylin +Bria +Caley +Carley +Celine +Chasity +Cherish +Clare +Danae +Daniella +Desirae +Domonique +Elaina +Elicia +Estefania +Francesca +Gisel +Hailie +Isela +Ivonne +Jackeline +Jessika +Joselyn +Kaelyn +Kaia +Karlie +Kasandra +Kasey +Keara +Keeley +Kelli +Kenia +Kianna +Kinsey +Krista +Kristy +Lia +Logan +Luisa +Maricela +Marlene +Misty +Moriah +Rachelle +Raegan +Rhianna +Ryann +Shaelyn +Shana +Shayna +Sonya +Stacey +Stevie +Tasha +Thalia +Tiffani +Viridiana +Yamilet +Yulissa +Yvette +Abigayle +Ada +Adrienne +Alaura +Aleah +Aliana +Alysa +Alyssia +America +Angie +Anita +Anjali +Annette +Aspyn +Beth +Brielle +Carrie +Caylee +Cecelia +Charlene +Cielo +Colleen +Deandra +Deisy +Destiney +Diamond +Diane +Eileen +Elissa +Emmalee +Ericka +Evelin +Flor +Gracey +Harmony +Ivana +Jami +Jana +Jena +Jill +Juana +Justina +Kaila +Karime +Karlee +Karly +Katarina +Katelin +Kaya +Kayley +Kayli +Kaylin +Kiersten +Lea +Leandra +Lexus +Lila +Lilia +Lorraine +Macayla +Mackenna +Mandy +Maranda +Meaghan +Melia +Micah +Monserrat +Noemi +Patience +Priscila +Randi +Rocio +Saige +Santana +Sarahi +Shaylee +Shaylyn +Shaylynn +Shyla +Simone +Skyla +Stella +Tracy +Unique +Yahaira +Yazmin +Yisel +Yvonne +Zaira +Abagail +Abbie +Abbigail +Abigale +Abriana +Adamaris +Adeline +Aiyana +Aja +Alexys +Aliah +Alice +Alisa +Aliza +Allyssa +Alora +Amalia +Amina +Analise +Anaya +Angeline +Annemarie +Arlene +Arrianna +Beverly +Billie +Breann +Brianne +Brissa +Bryn +Brynne +Cailyn +Callista +Camila +Carina +Carol +Cayla +Charity +Chelsey +Christy +Ciarra +Cori +Cydney +Damaris +Danna +Darby +Dayana +Dayanara +Delia +Delilah +Denali +Dulce +Elora +Elsie +Estefany +Eunice +Evangelina +Gina +Gwendolyn +Hadley +Harlee +Hattie +Haven +Hazel +Jaylee +Jayleen +Jaylynn +Jeanette +Jesenia +Joey +Johana +Journey +Joyce +Kacie +Kaili +Kaiya +Karely +Karyme +Kaylea +Kaylynn +Kaytlyn +Keegan +Keely +Keira +Kellie +Kierra +Lacy +Lara +Leila +Lesli +Livia +Loren +Lori +Macie +Magaly +Maiya +Makala +Margarita +Mariela +Marlee +Marley +Mattie +Mckinley +Melinda +Melisa +Mika +Mikaila +Mina +Moira +Mollie +Myah +Nallely +Nathalie +Nicolette +Nicolle +Nora +Norma +Paris +Pearl +Phoenix +Presley +Raelynn +Raine +Rikki +Rosalie +Rosario +Ryleigh +Saira +Selina +Shawna +Shawnee +Sheila +Siena +Sloan +Tegan +Tionna +Trista +Tyra +Vanesa +Winter +Xiomara +Yasmine +Emily +Hannah +Madison +Ashley +Taylor +Samantha +Abigail +Emma +Olivia +Sarah +Jessica +Lauren +Elizabeth +Alexis +Grace +Megan +Alyssa +Sydney +Maria +Rachel +Anna +Isabella +Morgan +Jennifer +Alexandra +Brianna +Victoria +Chloe +Jasmine +Jordan +Hailey +Kayla +Brooke +Julia +Kaitlyn +Katherine +Mackenzie +Nicole +Trinity +Savannah +Sophia +Amanda +Destiny +Haley +Natalie +Madeline +Sierra +Zoe +Bailey +Amber +Andrea +Riley +Faith +Vanessa +Jenna +Katelyn +Mariah +Stephanie +Erin +Leslie +Rebecca +Jacqueline +Danielle +Makayla +Michelle +Isabel +Angelina +Mikayla +Lily +Mia +Peyton +Allison +Diana +Kathryn +Shelby +Molly +Isabelle +Mary +Claire +Paige +Caitlin +Jade +Kaylee +Maya +Avery +Kylie +Alexandria +Ariana +Courtney +Marissa +Kimberly +Melissa +Sara +Angela +Gabrielle +Alicia +Katie +Alexa +Alexia +Caroline +Cassidy +Miranda +Angelica +Gabriella +Sophie +Audrey +Autumn +Cassandra +Gabriela +Lillian +Evelyn +Adriana +Leah +Madelyn +Alondra +Cheyenne +Cynthia +Ava +Kelly +Laura +Catherine +Kelsey +Ella +Erika +Nayeli +Payton +Amy +Ana +Kylee +Sabrina +Arianna +Karen +Karla +Ashlyn +Aspen +Daniela +Margaret +Christina +Erica +Karina +Rachael +Aaliyah +Angel +Delaney +Daisy +Jordyn +Skylar +Breanna +Jaqueline +Lindsey +Briana +Crystal +Shannon +Caitlyn +Esmeralda +Lydia +Naomi +Juliana +Kendall +Kiara +Kyla +Tiffany +Alejandra +Brittany +Heather +Hope +Makenna +Nevaeh +Abby +Jillian +Jocelyn +Makenzie +Melanie +Rebekah +Jazmin +Mckenna +Michaela +Brenda +Brooklyn +Claudia +Carmen +Elise +Julianna +Kate +Kira +Sadie +Sandra +Sofia +Talia +Valeria +Alison +Holly +Mckenzie +Monica +Natalia +Jaden +Jamie +Josephine +Kaitlin +Kendra +Anahi +Camryn +Kyra +Bethany +Elena +Guadalupe +Hanna +Kennedy +Liliana +Lindsay +Maggie +Reagan +Tessa +Veronica +Amelia +Annika +Katelynn +Lesly +Rylee +Selena +Yesenia +Aubrey +Bianca +Charlotte +Cindy +Dakota +Giselle +Itzel +Jayla +Katrina +Melody +Mya +Rose +Savanna +Summer +Wendy +Anne +Elisabeth +Eva +Fiona +Gracie +Jada +Macy +Patricia +Serenity +Adrianna +April +Eleanor +Esperanza +Genesis +Gillian +Helen +Jessie +Lucy +Ruby +Sidney +Tara +Alissa +Ariel +Fatima +Ivy +Julie +Marisol +Mercedes +Addison +Anastasia +Britney +Brittney +Cecilia +Clara +Gianna +Haylee +Hayley +Mariana +Meghan +Mikaela +Paola +Piper +Shayla +Taryn +Tiana +Ashlynn +Brenna +Chelsea +Desiree +Jasmin +Kassandra +Kristina +Natasha +Tatum +Tori +Valerie +Brisa +Carly +Hunter +Leticia +Lilly +Lizbeth +Melina +Nancy +Rylie +Sage +Aliyah +Annie +Carissa +Cora +Cristal +Cristina +Josie +Kailey +Kaitlynn +Kara +Kathleen +Kayleigh +Logan +Madeleine +Marisa +Perla +Rosa +Shyanne +Skyler +Aleah +Alexus +Allyson +Asia +Bridget +Cameron +Carolina +Daphne +Eden +Ellie +Jayden +Jazmine +Joanna +Kiana +Kirsten +Maddison +Serena +Teresa +Eliana +Georgia +Hayden +Heidi +Kristin +Larissa +Mireya +Monique +Nadia +Raquel +Tania +Teagan +Zoey +Ainsley +Alaina +Alana +Alma +Amaya +Angelique +Annabelle +Ashleigh +Baylee +Bryanna +Christine +Cierra +Deja +Denise +Dulce +Heaven +Kaylie +Lacey +Macie +Nina +Raven +Regan +Reina +Rhiannon +Ruth +Vivian +Annalise +Colleen +Diamond +Isabela +Janae +Kristen +Lauryn +Leilani +Lisa +Lorena +Malia +Mallory +Marina +Maritza +Mayra +Meagan +Sasha +Sydnee +Tatiana +Yadira +Aimee +Allie +Araceli +Ashlee +Bailee +Casey +Destinee +Elaina +Emilee +Emilia +Hailee +Hana +Isis +Jacquelyn +Jadyn +Joana +Johanna +Joy +Julissa +Kali +Kassidy +Kenna +Layla +Lexi +Madisyn +Noelia +Nora +Precious +Priscilla +Tyler +Viviana +Yasmine +Abbey +Adeline +Alice +Aliya +Alyson +Antonia +Aurora +Ayla +Camille +Clarissa +Eliza +Eve +Genevieve +Gisselle +Jaidyn +Kaley +Kiera +Krystal +Leila +Lesley +Linda +Lucia +Luz +Madyson +Marie +Mckayla +Meredith +Micaela +Noelle +Pamela +Renee +Sonia +Sydni +Abbie +Alisa +Analise +Areli +Ashton +Brandy +Carolyn +Celeste +Citlalli +Delilah +Devyn +Flor +Francesca +Halie +Halle +Harmony +Iris +Jaelyn +Janessa +Justine +Katlyn +Keely +Kelsie +Kenia +Krista +Lilian +Marley +Miriam +Nallely +Phoebe +Raina +Ryan +Skye +Stella +Ximena +Alanna +Alayna +Anya +Ashtyn +Audra +Aylin +Bella +Berenice +Casandra +Celia +Ciara +Darian +Dayana +Ellen +Emilie +Estrella +Harley +Ingrid +Jayda +Jazlyn +Jazmyn +Johana +Joslyn +Juliet +Kaleigh +Kaya +Kiley +Lila +Litzy +Madalyn +Madisen +Maura +Nataly +Nayely +Nichole +Nyah +Reilly +Rowan +Shea +Sienna +Tabitha +Tayler +Thalia +Tierra +Violet +Virginia +Aileen +Alexandrea +Alina +Alycia +Alysa +America +Anika +Ann +Annabella +Arielle +Aryanna +Barbara +Brielle +Callie +Carina +Carla +Dana +Danae +Darby +Devin +Dominique +Edith +Elisa +Esther +Gloria +Hallie +Haven +Jaeda +Janet +Jaylene +Judith +Julianne +Kaelyn +Kailee +Kamryn +Katarina +Katharine +Kenzie +Lexie +Lizeth +Marilyn +Martha +Rayna +Rocio +Salma +Simone +Stephany +Sylvia +Tess +Tia +Tiara +Abigale +Alysia +Angie +Arely +Aria +Athena +Aubree +Averi +Bernadette +Blanca +Brandi +Brynn +Charity +Cheyanne +Ciera +Corinne +Damaris +Danika +Deanna +Devon +Donna +Elsa +Estefania +Gina +Gretchen +Haleigh +Hazel +Imani +Jaime +Jane +Janelle +Kaela +Karlee +Lea +Lexus +Lucille +Macey +Madelynn +Madilyn +Maia +Mariela +Marlene +Meadow +Nya +Paulina +Presley +Raelynn +Rosemary +Savana +Shelbie +Sheridan +Terra +Willow +Yareli +Abigayle +Acacia +Alexi +Alia +Alisha +Amara +Anissa +Aracely +Brianne +Brooklynn +Cara +Charlize +Drew +Elyse +Emerald +Eryn +Evelin +Hadley +Helena +Irene +Jaclyn +Jaiden +Janeth +Jaquelin +Jenny +Joselyn +Jovana +Julieta +Kallie +Kaylei +Kaylin +Kaylyn +Kenya +Kierra +Kristy +Kyleigh +Laney +Laurel +Lena +Lia +Livia +Maleah +Mara +Marion +Mckinley +Mindy +Monserrat +Odalys +Paula +Quinn +Rachelle +Raegan +Reanna +Reese +Sarahi +Selina +Shae +Shania +Shawna +Sheila +Shyla +Tamara +Theresa +Yuliana +Abbigail +Aiyana +Alannah +Alex +Allyssa +Alyssia +Anjelica +Annalisa +Arleth +Aubrianna +Aubrie +Austin +Ayanna +Azucena +Beyonce +Cadence +Caley +Calista +Carlee +Cassie +Cayla +Chandler +Charlie +Cienna +Clare +Codi +Deborah +Elicia +Emerson +Ericka +Estefany +Felicia +Felicity +Fernanda +Giovanna +Haylie +Hollie +Iliana +India +Jackeline +Janette +Jasmyn +Jazmyne +Jena +Jenifer +Jolie +Joslynn +Justice +Kacey +Karli +Karsen +Kasandra +Katlynn +Kayleen +Keila +Lara +Leandra +Lesli +Lexis +Luisa +Magdalena +Makaila +Mandy +Marianna +Maribel +Maricruz +Marin +Melisa +Mika +Moriah +Nathalia +Nathalie +Nia +Nicolette +Nikita +Norma +Olga +Paloma +Patience +Rae +Reyna +Saige +Savanah +Selene +Sequoia +Skyla +Stacy +Susan +Susana +Tianna +Toni +Whitney +Xitlaly +Yasmin +Yazmin +Yessica +Yoselin +Yvette +Zoie +Abrianna +Abril +Adamaris +Adela +Aidan +Ailyn +Aislinn +Aja +Alaya +Alena +Alessandra +Anayeli +Anita +Annabel +Annelise +Annette +Ashli +Belen +Beth +Braelyn +Breana +Breann +Bria +Brissa +Briza +Bryce +Bryn +Cailey +Caleigh +Cali +Camila +Camilla +Carime +Carli +Carlie +Carson +Chantel +Cheryl +Christa +Cody +Dallas +Daniella +Darlene +Dawn +Deisy +Denisse +Desirae +Destany +Diane +Elianna +Elissa +Elle +Elli +Emmalee +Evangelina +Evangeline +Francisca +Geneva +Gladys +Graciela +Greta +Gwendolyn +Hali +Halley +Harper +Hattie +Holli +Ivette +Jacey +Jacy +Jaelynn +Jailene +Jailyn +Jalyn +Jaya +Jayde +Jaylin +Jazlynn +Jeniffer +Joseline +Jovanna +Kaci +Kaiya +Karissa +Karly +Katia +Katlin +Katy +Kayley +Kianna +Kinsey +Kya +Leann +Leanna +Leia +Libby +Liberty +Lilith +Lilliana +London +Lucero +Macee +Mackenna +Madalynn +Madilynn +Maren +Mariam +Mason +Mattie +Micah +Micaiah +Michal +Mikaila +Myah +Mykayla +Myranda +Nadine +Naila +Noel +Noemi +Norah +Paris +Pearl +Penelope +Quincy +Regina +Rhianna +Rhyan +Robyn +Rosalinda +Roxanne +Rubi +Sade +Serene +Sharon +Shaylee +Shayna +Shyann +Sky +Sonya +Tamia +Tea +Therese +Triniti +Tristan +Unique +Venessa +Vianey +Yamilet +Yessenia +Yvonne +Zaira +Madison +Emily +Emma +Ashley +Isabella +Hannah +Abigail +Elizabeth +Samantha +Olivia +Alexis +Grace +Alyssa +Lauren +Sarah +Jessica +Sydney +Anna +Jennifer +Taylor +Morgan +Sophia +Chloe +Jasmine +Maria +Victoria +Brianna +Rachel +Kayla +Megan +Mia +Katherine +Alexandra +Hailey +Natalie +Jordan +Zoe +Kaitlyn +Haley +Julia +Kylie +Sierra +Stephanie +Andrea +Savannah +Madeline +Paige +Amanda +Ella +Faith +Nicole +Destiny +Alondra +Jade +Mackenzie +Lily +Trinity +Isabelle +Brooke +Makayla +Maya +Alexa +Vanessa +Danielle +Sara +Kimberly +Riley +Katelyn +Evelyn +Rebecca +Audrey +Autumn +Bailey +Michelle +Kaylee +Leslie +Lizbeth +Nevaeh +Shelby +Angelina +Gabrielle +Isabel +Aaliyah +Allison +Jacqueline +Ariana +Avery +Jenna +Ana +Gabriella +Alicia +Angela +Alexia +Lillian +Amber +Leah +Melissa +Peyton +Arianna +Daisy +Alexandria +Amelia +Claire +Katie +Marissa +Molly +Courtney +Mary +Cassandra +Mariah +Erin +Cassidy +Laura +Diana +Karen +Ava +Karla +Angel +Cheyenne +Lindsey +Skylar +Adriana +Caroline +Jocelyn +Melanie +Payton +Valeria +Gabriela +Karina +Kylee +Mikayla +Amy +Breanna +Madelyn +Aspen +Brooklyn +Caitlyn +Kelsey +Angelica +Caitlin +Elise +Delaney +Mckenna +Ashlyn +Margaret +Briana +Hope +Sophie +Catherine +Daniela +Esmeralda +Monica +Naomi +Christina +Kate +Makenna +Sofia +Kathryn +Meghan +Rylee +Cynthia +Elena +Abby +Jillian +Kyla +Ruby +Aubrey +Charlotte +Genesis +Jazmin +Kelly +Kira +Lydia +Sadie +Alejandra +Ellie +Kendall +Shannon +Bianca +Brittany +Erica +Erika +Mckenzie +Mya +Yesenia +Eva +Heather +Kendra +Kyra +Rachael +Sabrina +Veronica +Crystal +Fiona +Joanna +Summer +Tessa +Anahi +Guadalupe +Heidi +Jada +Jaqueline +Jasmin +Josephine +Julianna +Kaitlin +Miranda +Valerie +Annika +Brenna +Jamie +Kennedy +Melody +Michaela +Nadia +Savanna +Serena +Aliyah +Britney +Claudia +Fatima +Hayley +Jayden +Jordyn +Madeleine +Rebekah +Tatum +Addison +America +Dakota +Gianna +Jaden +Jazmine +Lesly +Liliana +Maggie +Nina +Reagan +Sidney +Skyler +Adrianna +Anastasia +Brittney +Carly +Genevieve +Juliana +Kiara +Mariana +Natalia +Sandra +Vivian +Alana +Ashleigh +Bethany +Cecilia +Holly +Nancy +Sage +Shayla +Alison +Alissa +Annabelle +Ashlee +Brenda +Cameron +Desiree +Eleanor +Katrina +Mercedes +Paola +Piper +Raven +Wendy +April +Carolina +Cierra +Lilly +Makenzie +Regan +Teagan +Alma +Celeste +Gracie +Lindsay +Lucy +Rosa +Alaina +Alina +Carla +Cindy +Fernanda +Kara +Kaya +Kristina +Leilani +Natasha +Patricia +Perla +Selena +Tania +Taryn +Tiffany +Chelsea +Cristina +Denise +Gillian +Giselle +Hanna +Jadyn +Jimena +Kailey +Lauryn +Maia +Marisol +Nayeli +Tamara +Tori +Zoey +Brooklynn +Eden +Eliana +Esther +Haylee +Kassandra +Katelynn +Kiana +Lesley +Marlene +Paulina +Serenity +Allyson +Angelique +Anika +Bridget +Carmen +Destinee +Esperanza +Georgia +Lexi +Logan +Marisa +Sienna +Willow +Ainsley +Ariel +Camille +Christine +Clara +Hallie +Jayda +Jayla +Karissa +Kayleigh +Kaylie +Ryan +Stella +Talia +Tara +Tiana +Ximena +Yasmin +Angie +Ashlynn +Dulce +Halle +Heaven +Iris +Janessa +Josie +Julie +Kaia +Kristen +Litzy +Luz +Priscilla +Reese +Ruth +Rylie +Tess +Aimee +Asia +Brandy +Brisa +Diamond +Elsa +Evelin +Gisselle +Hailee +Jenny +Macy +Madisyn +Mikaela +Miriam +Noelle +Precious +Quinn +Rhiannon +Savanah +Simone +Skye +Virginia +Amaya +Arleth +Ashanti +Athena +Bella +Ciara +Edith +Elisa +Elisabeth +Emilee +Estrella +Haven +Helen +Itzel +Izabella +Jessie +Joy +Kassidy +Kathleen +Krystal +Larissa +Layla +Lilliana +Linda +Lucia +Mallory +Marie +Mayra +Raina +Rose +Tatyana +Tia +Abigayle +Alayna +Alena +Anne +Aria +Ayla +Brynn +Dana +Destiney +Elaina +Emely +Emilia +Estefania +Gina +Gloria +Isabela +Janae +Justice +Kaitlynn +Katlyn +Kirsten +Laurel +Madalyn +Malia +Martha +Monique +Salma +Tabitha +Viviana +Whitney +Yoselin +Alize +Antonia +Aracely +Ashton +Aurora +Aylin +Baylee +Blanca +Camryn +Daniella +Dominique +Emilie +India +Jacquelyn +Jane +Joslyn +Kali +Kyleigh +Lacey +Lexie +Lisbeth +Madelynn +Meredith +Reanna +Renee +Tanya +Tatiana +Theresa +Yareli +Adeline +Alexus +Allie +Alyson +Annie +Araceli +Bailee +Callie +Cara +Cheyanne +Clarissa +Deja +Desirae +Donna +Eliza +Elle +Felicia +Felicity +Hana +Hayden +Jaelyn +Jazlyn +Julissa +Kaley +Katharine +Kaylin +Laila +Leticia +Liberty +Lizeth +Lluvia +Lorena +Macey +Macie +Micaela +Mireya +Pamela +Paris +Raquel +Sarahi +Shay +Sonia +Stephany +Tyler +Violet +Yadira +Yasmine +Adrienne +Alisha +Annette +Ashly +Charity +Darlene +Francesca +Hadley +Hailie +Haleigh +Isis +Ivy +Jacey +Janelle +Jazmyn +Jazmyne +Jenifer +Jesse +Johanna +Kaelyn +Kailee +Kaylynn +Keira +Laney +Lia +Lucille +Mariela +Marina +Maritza +Mckayla +Mollie +Nora +Reyna +Ryleigh +Sasha +Scarlett +Shaelyn +Shyanne +Silvia +Stacy +Taya +Tea +Abbie +Adamaris +Aileen +Alessandra +Alice +Aliya +Amaris +Anita +Annabella +Annalise +Breana +Bryanna +Bryn +Calista +Carina +Casandra +Casey +Dania +Dianna +Dylan +Estefani +Jaclyn +Jaidyn +Janet +Jasmyn +Jolie +Joseline +Juanita +Judith +Justina +Kaleigh +Kasandra +Kasey +Katarina +Kaycee +Kaylyn +Keely +Kelli +Kristin +Leila +Libby +Lila +Lilianna +Madisen +Malena +Marianna +Presley +Rachelle +Rayna +Rosemary +Rowan +Savana +Shania +Shea +Sheila +Sonya +Stacey +Susan +Sylvia +Teresa +Yazmin +Yessenia +Yulisa +Abbigail +Abril +Acacia +Adelaide +Adilene +Alexys +Alycia +Anaya +Anja +Ann +Annabel +Anya +Ashtyn +Aspyn +Bonnie +Camila +Chantal +Charlize +Christiana +Cora +Cristal +Darby +Devin +Ellen +Emalee +Emerson +Fabiola +Frida +Halley +Harmony +Haylie +Heidy +Helena +Hunter +Ireland +Izabelle +Jacquelin +Jaiden +Joana +Joselyn +Julianne +Juliet +Kaiya +Kendal +Kenna +Kenzie +Kianna +Lea +Lena +Lidia +Lilia +Lorelei +Luna +Madysen +Maleah +Mara +Marlen +Mina +Nathaly +Nichole +Nikki +Noelia +Noemi +Parker +Phoebe +Priscila +Reilly +Robyn +Sharon +Shyla +Sydnee +Tayler +Tehya +Thalia +Thea +Tianna +Abbey +Abigale +Alanna +Alexi +Alia +Alysa +Amari +Anastacia +Anjali +Ariadne +Arielle +Ashlie +Astrid +Austyn +Blake +Bridgette +Cadence +Campbell +Carol +Carolyn +Cassie +Catalina +Celina +Charlie +Chiara +Citlaly +Clare +Cydney +Damaris +Danae +Daphne +Dayana +Dayanna +Deanna +Destany +Elaine +Elyse +Emery +Eve +Gia +Graciela +Iliana +Imani +Ingrid +Isabell +Jaedyn +Jaime +Jaycee +Jayde +Justine +Kacey +Kaci +Kari +Karlee +Karly +Katy +Kayley +Keeley +Kenya +Kiera +Kiersten +Kiley +Lara +Leeann +Lilian +Lisa +Lucero +Lyric +Mackenna +Madilyn +Madyson +Magdalena +Margarita +Marguerite +Maribel +Mason +Maxine +Meagan +Melia +Monserrat +Natali +Norma +Nyssa +Penelope +Pilar +Pricilla +Raegan +Reece +Rita +Robin +Rocio +Rubi +Sally +Sativa +Sonja +Stevie +Sydnie +Tasia +Trista +Tristen +Xiomara +Yarely +Yvonne +Abagail +Aida +Aidan +Aleah +Alex +Aliah +Alivia +Ally +Analise +Ananya +Anay +Aniya +Annemarie +Arlene +Aryanna +Audra +Aurelia +Austin +Berenice +Breonna +Brielle +Britany +Cailin +Cailyn +Caitlynn +Caley +Cambria +Carissa +Carlie +Carson +Cherish +Cinthia +Cloe +Colleen +Danika +Dawn +Deborah +Devon +Devyn +Dorothy +Drew +Echo +Eileen +Elliana +Eloise +Elyssa +Eryn +Estefany +Evangelina +Galilea +Genna +Gwendolyn +Haily +Halie +Harley +Idaly +Ivonne +Jahaira +Jana +Janeth +Jaquelin +Jasmyne +Jaycie +Jaylene +Jaylynn +Jazlynn +Jena +Jenessa +Jewel +Julisa +Kacie +Kallie +Kamryn +Karely +Karis +Katelin +Katia +Katya +Kaylan +Keegan +Kelsie +Kyara +Lainey +Leanne +Leona +Linnea +Liz +Lizette +Lola +Luisa +Maddison +Maira +Maisie +Makena +Makyla +Mandy +Maricela +Marlena +Melany +Melina +Melinda +Micah +Mira +Misty +Monet +Montana +Mykaela +Nathalie +Noel +Noemy +Nuvia +Nya +Nyah +Nyla +Olga +Paloma +Patience +Paula +Phoenix +Raeann +Reina +Rory +Rosalinda +Sarai +Sarina +Selene +Shantel +Shaylen +Shayna +Shirley +Susana +Sydni +Tegan +Tierney +Toni +Tristan +Unique +Vanesa +Veronika +Willa +Yahaira +Emily +Emma +Madison +Hannah +Ashley +Isabella +Abigail +Samantha +Grace +Elizabeth +Olivia +Alexis +Alyssa +Sarah +Jessica +Lauren +Taylor +Sophia +Jennifer +Sydney +Chloe +Jasmine +Victoria +Ella +Anna +Megan +Morgan +Maria +Rachel +Haley +Savannah +Alexandra +Hailey +Natalie +Mia +Jordan +Kayla +Lily +Ava +Kylie +Kaitlyn +Brianna +Katherine +Julia +Brooke +Nicole +Zoe +Trinity +Avery +Paige +Andrea +Leslie +Mackenzie +Nevaeh +Sierra +Kaylee +Allison +Faith +Madeline +Riley +Michelle +Evelyn +Amanda +Destiny +Kimberly +Stephanie +Maya +Jenna +Mariah +Sara +Vanessa +Ariana +Autumn +Isabel +Marissa +Mary +Jade +Alexa +Ana +Daisy +Amelia +Jacqueline +Gabriela +Shelby +Amber +Gabriella +Makayla +Rebecca +Angelina +Jocelyn +Audrey +Gabrielle +Katelyn +Bailey +Claire +Danielle +Ashlyn +Isabelle +Leah +Sofia +Lillian +Melissa +Aaliyah +Brooklyn +Daniela +Molly +Arianna +Lizbeth +Alondra +Caroline +Mikayla +Angela +Cassidy +Diana +Rylee +Sadie +Karen +Kathryn +Katie +Lindsey +Adriana +Alicia +Kate +Valeria +Natalia +Peyton +Alexandria +Breanna +Erin +Briana +Catherine +Delaney +Ellie +Jazmin +Amy +Aspen +Karla +Kylee +Naomi +Alejandra +Sophie +Kendall +Laura +Margaret +Angel +Cheyenne +Lydia +Angelica +Melanie +Miranda +Erika +Mya +Payton +Alexia +Annika +Cassandra +Courtney +Hope +Jamie +Jillian +Kelly +Elena +Kelsey +Ruby +Monica +Perla +Sandra +Crystal +Erica +Jada +Jordyn +Lucy +Mariana +Stella +Caitlin +Cynthia +Lilly +Madelyn +Addison +Charlotte +Juliana +Kyla +Kyra +Meghan +Clara +Esmeralda +Eva +Jadyn +Kennedy +Macy +Mckenna +Sabrina +Serena +Tessa +Veronica +Zoey +Abby +Anahi +Caitlyn +Christina +Elise +Jaden +Jasmin +Jayden +Jazmine +Katelynn +Serenity +Bianca +Giselle +Gracie +Liliana +Nancy +Valerie +Alison +Gianna +Hayley +Josephine +Aliyah +Karina +Maggie +Rosa +Savanna +Skyler +Alana +Anastasia +Eliana +Fiona +Lesly +Mckenzie +Paola +Rebekah +Sage +Fatima +Guadalupe +Hanna +Julianna +Kaitlin +Makenna +Michaela +Reese +Wendy +Aubrey +Bethany +Brenna +Desiree +Genesis +Julie +Natasha +Skylar +Adrianna +Bridget +Estrella +Janessa +Jaqueline +Kara +Makenzie +Paris +Taryn +Tatum +Tiffany +Vivian +Ashlee +Brisa +Brittany +Claudia +Dakota +Halle +Heather +Kira +Layla +Ruth +Amaya +Bella +Carmen +Eleanor +Jimena +Joanna +Marisol +Nadia +Summer +Tess +Brenda +Cadence +Cecilia +Julissa +Mallory +Reagan +Allyson +Ariel +Ashleigh +Cristina +Hailee +Holly +Laila +Lindsay +Pamela +Piper +Selena +Alyson +Annabelle +Brynn +Carly +Celeste +Cora +Esperanza +Heaven +Izabella +Kailey +Kaylie +Kiana +Kiara +Sidney +Tara +Ximena +Ashlynn +Cameron +Camila +Camryn +Chelsea +Eliza +Genevieve +Haylee +Heidi +Iris +Logan +Luz +Madeleine +Marina +Marisa +Mercedes +Monique +Rylie +Shannon +Tania +Yesenia +Annie +April +Camille +Dulce +Georgia +Isabela +Jaiden +Katrina +Marlene +Nina +Noelle +Ryleigh +Allie +Brooklynn +Carla +Cindy +Cristal +Destinee +Emerson +Emilia +Helen +Kayleigh +Kristina +Lexi +Lucia +Malia +Skye +Talia +Tayler +Teagan +Aileen +Aimee +Ainsley +Alexus +Alina +Alissa +Anne +Anya +Aurora +Bryanna +Emilee +Eve +Evelin +Fernanda +Jayla +Jessie +Kendra +Kiera +Kirsten +Kristen +Lorena +Mariela +Mckayla +Paulina +Regan +Rhiannon +Sarai +Shyanne +Sylvia +Trista +Yareli +Alice +Ashton +Athena +Baylee +Cierra +Eden +Elisa +Johanna +Leilani +Lena +Linda +Lola +Melody +Meredith +Miriam +Phoebe +Raquel +Renee +Rose +Samara +Sienna +Simone +Sonia +Aracely +Asia +Aubree +Blanca +Brandi +Carolina +Casey +Daniella +Dylan +Gina +Janae +Jayda +Jaylene +Karime +Kathleen +Kiley +Larissa +Lila +Mikaela +Mollie +Noemi +Patricia +Priscilla +Raven +Rowan +Sasha +Tabitha +Tori +Yasmin +Abbey +Alaina +Amelie +America +Arely +Ayla +Britney +Carissa +Denise +Esther +Gloria +Irene +Josie +Joslyn +Kaley +Kristin +Laurel +Lesley +Lexie +Mayra +Nayeli +Nora +Ryan +Thalia +Willow +Analicia +Anika +Annabel +Brielle +Callie +Campbell +Christine +Ciara +Damaris +Dominique +Edith +Elisabeth +Elle +Elsa +Emmalee +Hayden +Itzel +Ivy +Joana +Joseline +Joselyn +Justice +Kamryn +Karlee +Karly +Kaya +Lauryn +Leila +Macey +Maddison +Madelynn +Maia +Micaela +Quinn +Rachael +Ryann +Shania +Shayla +Tatiana +Yazmin +Abbigail +Adeline +Brittney +Dana +Daphne +Denisse +Frances +Galilea +Gillian +Gisselle +Hadley +Haleigh +Hunter +Iliana +Jacquelyn +Janeth +Jaquelin +Karissa +Kaylin +Keira +Lia +Lilian +Linnea +Macie +Maile +Marie +Maritza +Martha +Meagan +Rebeca +Stacy +Tiana +Viviana +Yadira +Aiyana +Alayna +Aliya +Amara +Angeline +Annaliese +Arleth +Arly +Aylin +Bailee +Brook +Carli +Carolyn +Casandra +Catalina +Clarissa +Corinne +Dayanara +Deanna +Deja +Emilie +Estefania +Hallie +Harmony +Imani +Isis +Jaelyn +Jaida +Jane +Janet +Jenny +Kaia +Kailee +Kaitlynn +Kaleigh +Kasey +Kassandra +Keely +Kellie +Kenya +Kenzie +Kyleigh +Leticia +Lisa +Lyndsey +Maeve +Makena +Marley +Nikki +Presley +Priscila +Raina +Rayna +Reyna +Sandy +Savana +Silvia +Stephany +Susan +Theresa +Vanesa +Whitney +Zoie +Aisha +Analise +Anastacia +Angelique +Aniyah +Ann +Annabella +Annalise +Aria +Ashtyn +Barbara +Breana +Bryn +Carley +Cheyanne +Coral +Danika +Darby +Dayana +Devyn +Elaine +Emely +Francesca +Greta +Hailie +Haylie +Hazel +Jazlyn +Judith +Kassidy +Kendal +Kenna +Kiersten +Lainey +Liberty +Madalyn +Madisyn +Marlen +Matilda +Monserrat +Naydelin +Nichole +Precious +Reilly +Sharon +Sheila +Stevie +Susana +Teresa +Tyler +Tyra +Violet +Virginia +Yasmine +Yvette +Abbie +Adelaide +Alena +Alex +Alisa +Alisha +Alivia +Alma +Alora +Alysa +Amari +Anay +Antonia +Ashly +Cailyn +Cara +Carlie +Cayla +Cinthia +Citlali +Danae +Devon +Elianna +Felicity +Helena +India +Jacey +Jaidyn +Jazmyn +Jolie +Joy +Julisa +Kacie +Kaiya +Kali +Kallie +Katarina +Kaydence +Kayley +Kenia +Kierra +Kori +Lacey +Lana +Lori +Lucero +Luna +Lyric +Madyson +Maren +Melany +Miah +Mirella +Moriah +Nayzeth +Nia +Parker +Patience +Raegan +Rocio +Roxanne +Saige +Sarahi +Shea +Sonya +Tamara +Toni +Yahaira +Yamilet +Abigayle +Abrianna +Adalyn +Adilene +Alessandra +Althea +Alycia +Ananya +Anita +Annalee +Annelise +Araya +Arielle +Aryana +Ashanti +Audrianna +Averi +Ayanna +Azucena +Brandy +Brigitte +Bryce +Cali +Cassie +Caylee +Celia +Charity +Charlize +Ciera +Cloe +Dawn +Delia +Dianna +Ebony +Elaina +Elisha +Ellen +Elyse +Ember +Emelia +Emerald +Eryn +Essence +Estefany +Frida +Giana +Gracelyn +Graciela +Gretchen +Harley +Ilene +Ingrid +Irma +Isabell +Jaclyn +Janelle +Jasmyn +Jayde +Jazmyne +Jenifer +Joselin +Joyce +Julianne +Justine +Kaela +Kari +Karyme +Katharine +Katia +Kaylene +Krista +Kya +Laci +Lacie +Laney +Leonela +Lilliana +Lisbeth +Litzy +Liza +Lizeth +Lourdes +Madilyn +Makiah +Maleah +Mandy +Mara +Maribel +Melia +Mireya +Nataly +Norah +Odalis +Paula +Quincy +Raelyn +Reanna +Reece +Rhianna +Rian +Robin +Roselyn +Sarina +Savanah +Sherlyn +Stacey +Sydnee +Sydni +Tanya +Tegan +Tehya +Tianna +Tierney +Unique +Valentina +Viridiana +Winter +Abagail +Abigale +Aidan +Alannah +Alia +Alyse +Alysia +Amairani +Amiya +Anais +Anaya +Anjelica +Annette +Ansley +Arabella +Araceli +Areli +Ariadne +Ariah +Arlene +Arwen +Aryanna +Asha +Aubrie +Austin +Avril +Bernadette +Bree +Briza +Caitlynn +Caley +Calista +Candace +Candy +Carina +Carlee +Celina +Clare +Cyan +Dalia +Davina +Demi +Desirae +Diamond +Diane +Estephanie +Fabiola +Felicia +Flora +Gemma +Geneva +Gia +Giovanna +Gisel +Gwen +Hana +Haven +Indigo +Jaycee +Jocelin +Joelle +Johana +Juliet +Julieta +Juliette +Kacey +Kaelyn +Kaila +Kalea +Kaliyah +Karely +Karisma +Karlie +Kayden +Kaylah +Kayleen +Kayli +Kaylynn +Kelli +Keyla +Kimberley +Kirstin +Krystal +Kyle +Lacy +Laisha +Leanna +Lesli +Liana +Libby +Lilia +Lilianna +Lillie +Lilyana +Lisette +Lizbet +Lyla +Maci +Madisen +Mae +Maegan +Magaly +Magdalena +Maliyah +Marianna +Marjorie +Marlena +Mattie +Melina +Mira +Myra +Naya +Nayely +Neida +Neva +Neveah +Noelia +Nohemi +Norma +Nyla +Oriana +Paloma +Phoenix +Princess +Raylene +Reina +Sally +Salma +Samira +Scarlet +Scarlett +Selah +Shaelyn +Shiloh +Shreya +Sneha +Sunny +Susanna +Sydnie +Tasia +Tatianna +Tatyana +Taya +Thea +Tia +Tracy +Vianney +Yajaira +Yazmine +Yessenia +Yolanda +Zayra +Emma +Emily +Isabella +Madison +Abigail +Ashley +Hannah +Grace +Sophia +Olivia +Samantha +Elizabeth +Alexis +Ella +Sarah +Anna +Sydney +Lauren +Taylor +Alyssa +Alexandra +Jasmine +Morgan +Chloe +Jessica +Mia +Katherine +Ava +Kayla +Brianna +Hailey +Natalie +Nevaeh +Lily +Victoria +Megan +Brooke +Rachel +Julia +Avery +Faith +Kaitlyn +Kylie +Maria +Zoe +Jennifer +Kaylee +Riley +Trinity +Andrea +Maya +Paige +Jordan +Michelle +Savannah +Nicole +Haley +Angelina +Kimberly +Stephanie +Mary +Sierra +Amanda +Lillian +Madeline +Alexa +Isabel +Mackenzie +Evelyn +Gabriella +Rebecca +Jenna +Bailey +Sofia +Vanessa +Allison +Diana +Katelyn +Amelia +Autumn +Caroline +Audrey +Danielle +Jade +Destiny +Leslie +Molly +Amber +Alexia +Alondra +Makayla +Isabelle +Sara +Ariana +Marissa +Sophie +Ashlyn +Melanie +Amy +Claire +Madelyn +Arianna +Aspen +Melissa +Ruby +Angela +Naomi +Jacqueline +Miranda +Peyton +Mariah +Valeria +Alicia +Jada +Leah +Alejandra +Katie +Daisy +Daniela +Gabrielle +Shelby +Aaliyah +Erin +Gianna +Jocelyn +Brooklyn +Mariana +Payton +Adriana +Charlotte +Laura +Lydia +Caitlin +Kathryn +Kendall +Ana +Angel +Cassidy +Ellie +Esmeralda +Kate +Rylee +Catherine +Gabriela +Hope +Karen +Mckenzie +Alexandria +Gracie +Jayden +Lindsey +Mikayla +Mya +Courtney +Kylee +Mckenna +Sadie +Angelica +Delaney +Keira +Piper +Tessa +Aliyah +Anastasia +Aubrey +Bianca +Elena +Margaret +Breanna +Josephine +Kyla +Liliana +Lucy +Serenity +Crystal +Erica +Kennedy +Makenna +Veronica +Addison +Bella +Brenda +Briana +Eva +Jillian +Kira +Skylar +Abby +Cheyenne +Eliana +Erika +Jasmin +Perla +Annika +Karla +Amaya +Carly +Dakota +Elise +Lizbeth +Sage +Celeste +Jordyn +Kyra +Paris +Reagan +Anahi +Cadence +Eleanor +Guadalupe +Sabrina +Ximena +Cassandra +Claudia +Jaqueline +Jazmin +Lilly +Makenzie +Sidney +Bethany +Christina +Clara +Dayanara +Fatima +Giselle +Kelly +Layla +Paola +Stella +Summer +Valerie +Yesenia +Carmen +Cecilia +Cynthia +Jazmine +Juliana +Julianna +Kendra +Lindsay +Natalia +Vivian +Alison +Caitlyn +Genesis +Itzel +Jadyn +Lesly +Skyler +Zoey +Adrianna +Haylee +Karina +Macy +Nadia +Teagan +Alana +Hayley +Ivy +Jaden +Kelsey +Kiana +Kiera +Maggie +Natasha +Nina +Annabelle +Aurora +Brenna +Brooklynn +Hanna +Joanna +Kiara +Malia +Nayeli +Allie +Camila +Heather +Janessa +Mallory +Rylie +Savanna +Serena +Tiffany +Arely +Ashlynn +Bridget +Brittany +Chelsea +Desiree +Elle +Izabella +Jamie +Jimena +Julissa +Leilani +Madeleine +Nancy +Reese +Renee +Rose +Tara +Taryn +Tatum +Alayna +Camille +Carolina +Cristal +Dylan +Holly +Iris +Kailey +Kaitlin +Katrina +Kaya +Lexi +Reyna +Talia +Alaina +Allyson +Ashleigh +Elisabeth +Esperanza +Estrella +Fiona +Jayda +Julie +Kaylie +Kenna +Marina +Marisa +Mercedes +Miriam +Monica +Phoebe +Rebekah +Ruth +Savanah +Wendy +Alena +America +Annie +Ayla +Britney +Cameron +Cindy +Janet +Judith +Katelynn +Kristen +Lizeth +Lucia +Paulina +Alissa +Anika +Araceli +Ashlee +Charlize +Daphne +Dayana +Gillian +Jaylene +Jessie +Joseline +Lila +Logan +Madisyn +Marlene +Melody +Priscilla +Rachael +Raquel +Sandra +Sienna +Teresa +Yareli +Yasmin +Celia +Halle +Kaia +Kathleen +Kaydence +Kayleigh +Marisol +Meghan +Micaela +Mikaela +Regan +Rowan +Selena +Skye +Tanya +Ainsley +Angie +Ariel +Athena +Ciara +Eden +Eliza +Emilee +Georgia +Hadley +Jaelyn +Kadence +Kaley +Kamryn +Kara +Lluvia +Maia +Maritza +Monique +Noelle +Ryan +Ryleigh +Brynn +Camryn +Cierra +Harmony +Hayden +Heaven +Isis +Josie +Kaitlynn +Karissa +Kyleigh +Leila +Lesley +Lia +Lilliana +Maddison +Michaela +Patricia +Samara +Simone +Tatiana +Viviana +Whitney +Adeline +Alina +Angelique +Annalise +Anya +April +Aria +Brisa +Cora +Dana +Danika +Denise +Ellen +Gwendolyn +Isabela +Jazmyne +Julianne +Keely +Kristin +Lacey +Laila +Laisha +Larissa +Liberty +Marie +Marley +Mayra +Meredith +Nataly +Nora +Norah +Reina +Shannon +Stephany +Tyler +Alanna +Alma +Annabella +Anne +Annette +Asia +Audra +Brielle +Catalina +Daniella +Deja +Denisse +Dulce +Edith +Elaina +Emilia +Emilie +Emmalee +Fernanda +Gloria +Greta +Hallie +Harley +Jenifer +Johanna +Joy +Kassandra +Kiya +Lauryn +Lena +Linda +Litzy +Lorena +Madisen +Parker +Rosa +Ryann +Sarai +Sasha +Tania +Tori +Trista +Abbigail +Adrienne +Aileen +Aiyana +Alice +Antonia +Aracely +Aryanna +Aubree +Averie +Campbell +Cara +Carla +Carolyn +Deborah +Eileen +Elliana +Elsa +Elyssa +Emely +Evelin +Gisselle +Hailee +Haleigh +Hana +Heidi +Ingrid +Irene +Jaida +Jaiden +Jayla +Joselyn +Joslyn +Justice +Kaelyn +Kassidy +Kenzie +Kiley +Lexie +Lilian +Lisa +Lucille +Nia +Phoenix +Quinn +Raegan +Reilly +Roselyn +Scarlett +Shea +Skyla +Sydnee +Tiana +Tianna +Vanesa +Willow +Alexus +Alize +Annabel +Brissa +Brittney +Bryanna +Bryn +Callie +Charlie +Chiara +Christine +Damaris +Danna +Delilah +Desirae +Dominique +Emerson +Estefany +Esther +Francesca +Genevieve +Harper +Haylie +Helen +Iliana +Jaedyn +Jaidyn +Kailee +Kaiya +Kaylynn +Keara +Kendal +Kirsten +Kya +Leticia +Lina +Macey +Madelynn +Madyson +Maleah +Marlen +Mckayla +Melany +Pamela +Rhiannon +Rubi +Shania +Tamara +Virginia +Xitlaly +Yadira +Yasmine +Zoie +Addyson +Alannah +Alisha +Ally +Alysa +Anaya +Ashly +Ayanna +Baylee +Belen +Belle +Brianne +Carissa +Carlie +Casey +Clare +Diamond +Elisa +Eve +Flor +Hailie +Haven +Hazel +India +Janae +Jolene +Kaela +Karlie +Kayden +Keeley +Kristina +Krystal +Lola +Luz +Lyric +Makena +Marilyn +Marin +Miah +Mollie +Noemi +Paloma +Presley +Rachelle +Raven +Rebeca +Reece +Shayna +Sheridan +Shyla +Thalia +Tia +Violet +Yahaira +Yazmin +Aimee +Alessandra +Alex +Alivia +Amelie +Amira +Anabel +Analisa +Arwen +Bailee +Cailey +Caley +Cali +Charlee +Cherish +Cristina +Deanna +Destinee +Devyn +Ericka +Galilea +Ireland +Jane +Janelle +Jayleen +Jaylyn +Jazlyn +Joana +Jolie +Karlee +Katharine +Kaylin +Kelli +Kelsie +Kori +Kristiana +Laney +Lea +Leanna +Lillie +London +Lourdes +Madilynn +Magdalena +Marianna +Mariela +Mina +Mireya +Monserrat +Noelia +Nyah +Sawyer +Sharon +Shayla +Shaylee +Shyanne +Silvia +Tabitha +Tayler +Tess +Thea +Vianney +Yajaira +Abril +Ada +Adilene +Amara +Amariah +Amaris +Amya +Annalee +Areli +Arlette +Arly +Ayana +Brookelyn +Calista +Carley +Charli +Citlali +Citlaly +Clarissa +Colleen +Danae +Darlene +Destiney +Devon +Dianna +Donna +Elianna +Elysia +Emelia +Essence +Estella +Estephanie +Gisel +Hunter +Jaime +Jaquelin +Jasmyn +Jazmyn +Jeanette +Jenessa +Johana +Juliette +Justina +Karime +Karly +Karyme +Kasandra +Katerina +Katheryn +Kathy +Katia +Katlyn +Kaycee +Keila +Kenia +Kinsey +Krista +Laci +Lana +Laurel +Lesli +Lili +Luciana +Luisa +Macie +Mara +Maribel +Martha +Maxine +Meadow +Michel +Monika +Noelani +Olga +Rosemary +Savana +Shaelyn +Shaylyn +Sonia +Stevie +Susan +Susana +Susanna +Sydnie +Sylvia +Tegan +Tracy +Wynter +Xitlali +Zaira +Abrianna +Addie +Aidan +Alaura +Alea +Alexander +Ali +Aliana +Alisa +Aliya +Alora +Alysia +Alyson +Amani +Amari +Amiah +Anabelle +Angeline +Ann +Annamarie +Anneliese +Ariadna +Aryana +Ashtyn +Aspyn +Aubrianna +Aubrie +Avril +Aylin +Barbara +Beatriz +Blanca +Brandi +Britany +Caitlynn +Carina +Carter +Chantel +Chase +Clarisa +Cloe +Darby +Dayna +Delanie +Delia +Diya +Elissa +Elyse +Ema +Ember +Emerald +Eryn +Finley +Frances +Gia +Gina +Gwyneth +Hali +Holland +Imani +Isabell +Jacey +Jacklyn +Jacquelyn +Jaelynn +Jaliyah +Janeth +Jayde +Jaylynn +Jenny +Jersey +Jewel +Joann +Juliet +Julisa +Kacey +Kacie +Kaila +Kailani +Kali +Kalia +Kaliyah +Kallie +Karely +Karli +Katana +Katarina +Katy +Keanna +Kenya +Kianna +Kiarra +Kiersten +Kristine +Krysta +Lacy +Lailah +Lainey +Lexy +Liana +Lilia +Lilianna +Lilyan +Lilyana +Lisette +Lizette +Madalyn +Madilyn +Mailyn +Maren +Marguerite +Maryn +Mattie +Maura +Melina +Millie +Moriah +Myra +Natali +Nevaeha +Nicolette +Nikki +Noel +Oceana +Paisley +Patience +Pearl +Raina +Rhianna +Robyn +Rosalinda +Roxanna +Ryanne +Ryley +Sarahi +Selah +Selina +Shae +Shaina +Shaylynn +Shyann +Sunshine +Sydni +Taya +Tehya +Theresa +Tyra +Willa +Yarely +Yessenia +Zara +Emily +Emma +Madison +Abigail +Isabella +Olivia +Hannah +Samantha +Ashley +Ella +Sophia +Elizabeth +Ava +Grace +Mia +Alexis +Lauren +Sarah +Hailey +Taylor +Anna +Natalie +Sydney +Chloe +Alyssa +Nevaeh +Jasmine +Avery +Morgan +Victoria +Lily +Alexandra +Zoe +Maria +Brooke +Jessica +Katherine +Megan +Rachel +Brianna +Jennifer +Evelyn +Julia +Kaitlyn +Savannah +Angelina +Kayla +Trinity +Lillian +Paige +Riley +Alexa +Allison +Kaylee +Madeline +Destiny +Faith +Haley +Jordan +Mariah +Gabriella +Isabel +Kimberly +Mackenzie +Kylie +Sierra +Maya +Katelyn +Sofia +Alondra +Brooklyn +Andrea +Bailey +Leslie +Isabelle +Nicole +Stephanie +Claire +Michelle +Rebecca +Arianna +Audrey +Autumn +Leah +Makayla +Vanessa +Amelia +Alicia +Diana +Jenna +Aaliyah +Ashlyn +Jocelyn +Marissa +Gabrielle +Molly +Valeria +Jade +Rylee +Alexia +Amber +Amy +Charlotte +Naomi +Ruby +Sara +Sophie +Addison +Caroline +Katie +Angelica +Mariana +Peyton +Amanda +Cassidy +Daniela +Mary +Jazmin +Kate +Ariana +Danielle +Gabriela +Tessa +Kathryn +Makenna +Margaret +Natalia +Ana +Melissa +Jacqueline +Kylee +Liliana +Miranda +Erin +Eva +Gianna +Lucy +Madelyn +Mikayla +Reagan +Serenity +Alexandria +Hope +Payton +Shelby +Adriana +Angela +Delaney +Esmeralda +Fatima +Karla +Annabelle +Bella +Kendall +Makenzie +Skylar +Caitlyn +Catherine +Elise +Guadalupe +Melanie +Angel +Aubrey +Bianca +Estrella +Gracie +Karen +Kyra +Lindsey +Daisy +Jillian +Keira +Laura +Lilly +Lydia +Mya +Alana +Dakota +Jordyn +Kyla +Mckenna +Tatum +Zoey +Kennedy +Mckenzie +Piper +Alejandra +Aspen +Elena +Ellie +Kiara +Layla +Nayeli +Brenda +Crystal +Jada +Juliana +Sadie +Savanna +Ximena +Adrianna +Aliyah +Camila +Cheyenne +Ciara +Genesis +Giselle +Reese +Vivian +Abby +Breanna +Cassandra +Cynthia +Ivy +Jadyn +Natasha +Anastasia +Jasmin +Sabrina +Selena +Anahi +Annika +Ashlee +Briana +Erika +Karina +Nadia +Stella +Summer +Cadence +Dayanara +Izabella +Jayden +Josephine +Kira +Veronica +Violet +America +Ariel +Carmen +Chelsea +Christina +Clara +Erica +Haylee +Lizbeth +Monica +Sage +Sienna +Alaina +Alison +Arely +Brooklynn +Courtney +Hayden +Heidi +Jaden +Kelsey +Paola +Allie +Brenna +Brittany +Caitlin +Dulce +Eliana +Emilia +Nina +Teagan +Amaya +Emerson +Hanna +Hayley +Jamie +Macy +Rose +Allyson +Bethany +Camryn +Celeste +Genevieve +Jazmine +Jimena +Kiana +Lexi +Shannon +Taryn +Valerie +Eliza +Itzel +Katrina +Marisol +Rebekah +Ruth +Scarlett +Wendy +April +Athena +Eden +Emely +Helen +Holly +Lesly +Lindsay +Madeleine +Meghan +Rachael +Sidney +Skye +Tara +Ashlynn +Carolina +Cindy +Eleanor +Fernanda +Fiona +Julie +Kaitlin +Marisa +Paulina +Sasha +Yesenia +Cameron +Cora +Emilee +Hazel +Joselyn +Josie +Julianna +Kara +Leilani +Lucia +Rowan +Rubi +Samara +Viviana +Aileen +Aylin +Cecilia +Danika +Heather +Jaelyn +Jaqueline +Kailey +Kaydence +Laila +Maggie +Melody +Mercedes +Perla +Skyler +Tiffany +Yasmin +Adeline +Alma +Bridget +Georgia +Michaela +Nataly +Rylie +Sandra +Sarai +Shayla +Tori +Alina +Alyson +Aurora +Callie +Dayana +Denise +Dominique +Elle +Harper +Janessa +Joanna +Joslyn +Kiera +Lauryn +Lila +Logan +Mallory +Tania +Yadira +Adelaide +Alice +Alissa +Anya +Ashleigh +Ayla +Brielle +Celia +Dana +Ellen +Esperanza +Hadley +Jenny +Julissa +Kaitlynn +Kassandra +Kelly +Kenna +Marley +Miriam +Nancy +Nora +Norah +Priscilla +Quinn +Rosa +Skyla +Talia +Alanna +Alivia +Ann +Aubrie +Camille +Elaine +Esther +Harmony +Johanna +Justice +Kadence +Kamryn +Katelynn +Larissa +Linda +Maddison +Makena +Monique +Monserrat +Regan +Ryann +Shea +Tess +Tiana +Yareli +Abril +Anika +Anneliese +Annie +Carlie +Danna +Eve +Gillian +Greta +Halle +Heaven +Iris +Isis +Jayda +Jayla +Jaylene +Kaia +Kailee +Kassidy +Kaylie +Kendra +Kiley +Luz +Magdalena +Maia +Malia +Marie +Nia +Noelle +Pamela +Presley +Rayna +Reyna +Sylvia +Tatiana +Willow +Alayna +Amara +Aniyah +Anne +Arabella +Baylee +Brynn +Campbell +Charlee +Claudia +Danica +Eileen +Felicity +Hailee +Haleigh +Hana +Helena +Isabela +Kaelyn +Kaiya +Kaya +Kayleigh +Kiersten +Kirsten +Kristen +Lena +Lesley +Litzy +Lucille +Madalyn +Madyson +Maribel +Maritza +Melany +Meredith +Natalya +Paris +Parker +Phoebe +Tabitha +Virginia +Abigayle +Ainsley +Alessandra +Aliya +Annalise +Antonia +Araceli +Aubree +Bryanna +Cali +Catalina +Cierra +Clarissa +Damaris +Edith +Elisabeth +Elsa +Evelin +Gwendolyn +Ingrid +Jaiden +Jaidyn +Janet +Judith +Kailyn +Kali +Karime +Karlie +Kayli +Kenzie +Kyleigh +Liberty +Lola +Lorena +Marina +Marlene +Meagan +Mireya +Natalee +Noemi +Penelope +Raegan +Raquel +Raven +Renee +Ryley +Stacy +Sydnee +Abbigail +Alena +Anabel +Carly +Carolyn +Casandra +Casey +Destinee +Emerald +Francesca +Giovanna +Gisselle +Izabel +Jacquelyn +Jane +Janelle +Jaquelin +Jessie +Jolette +Justine +Kacey +Karli +Kathleen +Kayley +Kendal +Kenya +Lilian +Lillie +Macey +Madelynn +Marin +Naydelin +Noelia +Patricia +Raina +Reece +Ryleigh +Sarahi +Shania +Sharon +Sherlyn +Sonia +Stephany +Tamara +Thalia +Valentina +Yoselin +Ada +Aimee +Aleah +Alexus +Alisha +Amina +Andie +Angelique +Angie +Areli +Aria +Arleth +Audra +Ayanna +Belle +Brandy +Brisa +Caley +Carla +Carley +Cristal +Deanna +Elisa +Elisha +Elsie +Finley +Frida +Gina +Graciela +Haven +Haylie +Iliana +Jaelynn +Janae +Jaylee +Jenifer +Joseline +Kaila +Kaleigh +Karis +Katarina +Kaylin +Kristina +Lainey +Lana +Lesli +Leticia +Lilia +Madisyn +Mariela +Mikaela +Mira +Mollie +Myra +Nathalie +Neveah +Paloma +Quincy +Raelynn +Sawyer +Serena +Tegan +Trista +Xitlaly +Yazmin +Yuridia +Abbie +Abriana +Adelyn +Adilene +Aiden +Alannah +Alia +Aliah +Aliza +Alize +Amiyah +Arlette +Ashly +Avalon +Averie +Ayana +Barbara +Cecelia +Charley +Coral +Corinne +Danae +Daniella +Daphne +Delilah +Devyn +Dylan +Elianna +Elliana +Elora +Emilie +Estefania +Gia +Gretchen +Hallie +Hunter +Irene +Jacey +Jackeline +Jamison +Jasmyn +Jaycie +Kaci +Kaley +Kaylah +Kianna +Kristin +Krystal +Leila +Liana +Lilliana +Lillianna +Livia +London +Lucero +Lyric +Maci +Madilyn +Maren +Mattie +Melina +Micaela +Moriah +Nichole +Nya +Priscila +Raelyn +Rhiannon +Roselyn +Ryanne +Savanah +Simone +Stacey +Teresa +Theresa +Vianey +Xitlali +Yahaira +Yasmine +Yvonne +Zoie +Abbey +Adelina +Adison +Aida +Aliana +Ally +Alora +Amaia +Anaya +Anja +Annabella +Annette +Aracely +Ariah +Arielle +Asha +Asia +Aya +Bailee +Bernadette +Breana +Brinley +Britney +Brittney +Cayla +Charlize +Cheyanne +Christine +Citlali +Citlaly +Clare +Colette +Dania +Deisy +Desiree +Donna +Elaina +Elyssa +Ember +Emmy +Essence +Estefani +Galilea +Giana +Gladys +Gloria +Harley +Imani +Jaida +Janeth +Janie +Jaya +Jaylynn +Jazlyn +Jazlynn +Jazmyn +Jazmyne +Joana +Johana +Jolie +Jorja +Joselin +Joslynn +Joy +Juliet +Juliette +Karol +Katharine +Kathy +Kayleen +Keeley +Keely +Kelsi +Kenia +Klara +Kori +Krista +Kyrah +Laci +Laurel +Lea +Leia +Lizeth +Lorelei +Lyndsey +Macie +Madalynn +Magaly +Mandy +Mara +Marlee +Marlen +Martha +Mason +Mckayla +Meaghan +Myah +Nathaly +Payten +Phoenix +Regina +Reina +Rhianna +Roxana +Roxanne +Ryan +Salma +Shiloh +Shirley +Shyla +Siena +Sky +Solana +Stevie +Susan +Taya +Terra +Tianna +Tyler +Tyra +Unique +Viola +Viridiana +Whitney +Abagail +Addie +Adelynn +Aislynn +Alea +Alex +Amelie +Amira +Analicia +Anastacia +Aniya +Annaliese +Arden +Ashanti +Aubrianna +Aurelia +Austin +Averi +Ayden +Ayleen +Azalea +Belen +Berenice +Bianka +Blanca +Bonnie +Brissa +Brook +Camden +Cara +Carli +Carol +Chase +Constance +Cristina +Daeja +Dafne +Darlene +Denisse +Dora +Ellison +Elyse +Elysia +Emalee +Emmalyn +Estella +Felicia +Flor +Frances +Frankie +Freya +Gemma +Gracelyn +Grayce +India +Ireland +Isela +Isha +Iyana +Izabelle +Jaclyn +Jaeda +Janaya +Jayna +Jeanette +Joey +Journey +Jozlyn +Julianne +Julieta +Kaidence +Kallie +Karlee +Karmen +Katerina +Katheryn +Keyla +Kierra +Lacey +Lacie +Laisha +Laney +Lara +Leanna +Lexus +Lia +Lilianna +Lilli +Lilyana +Lisa +Liza +Lizet +Lizette +Lluvia +Luna +Lupita +Mackenna +Madigan +Madilynn +Madisen +Margot +Mariam +Mayra +Mayte +Meadow +Miah +Mila +Miya +Montana +Montserrat +Nathalia +Navaeh +Neida +Noelani +Nyla +Patience +Pearl +Petra +Precious +Rachelle +Reilly +Rileigh +Rory +Rosemary +Sahara +Selene +Shae +Shyanne +Sloan +Sonya +Star +Tanya +Tayler +Tia +Toni +Trisha +Vicky +Wren +Xiomara +Yaritza +Yessenia +Yolanda +Yuliana +Yulisa +Zariah +Isabella +Emily +Emma +Hannah +Abigail +Madison +Sophia +Ava +Olivia +Samantha +Grace +Ashley +Mia +Elizabeth +Ella +Nevaeh +Addison +Alexis +Natalie +Avery +Chloe +Taylor +Alyssa +Sarah +Anna +Lily +Lauren +Zoe +Hailey +Alexandra +Sydney +Maria +Alexa +Savannah +Maya +Katherine +Victoria +Morgan +Brooke +Brianna +Evelyn +Julia +Kayla +Jessica +Jasmine +Lillian +Isabelle +Brooklyn +Kimberly +Kaylee +Jennifer +Rachel +Valeria +Audrey +Angelina +Riley +Amelia +Gabriella +Isabel +Jade +Kylie +Mariah +Megan +Mackenzie +Paige +Sofia +Trinity +Arianna +Destiny +Madeline +Vanessa +Andrea +Faith +Jacqueline +Katelyn +Keira +Allison +Sara +Claire +Ariana +Jordan +Makayla +Michelle +Natalia +Haley +Jocelyn +Autumn +Charlotte +Kaitlyn +Leah +Ashlyn +Lucy +Mary +Eva +Stephanie +Bailey +Leslie +Melanie +Nicole +Sierra +Gabrielle +Kate +Rebecca +Serenity +Adriana +Caroline +Mya +Aubrey +Daniela +Ellie +Naomi +Ruby +Aspen +Cassidy +Gianna +Peyton +Valerie +Aaliyah +Alicia +Jazmin +Katie +Lilly +Mckenna +Sadie +Sophie +Amy +Daisy +Jenna +Melissa +Payton +Shelby +Cadence +Kyra +Molly +Sienna +Stella +Karen +Layla +Liliana +Zoey +Amber +Danielle +Gabriela +Kathryn +Mariana +Marissa +Piper +Bella +Delaney +Lindsey +Mikayla +Reese +Alondra +Amanda +Angela +Cheyenne +Josephine +Kylee +Madelyn +Margaret +Brooklynn +Emerson +Erin +Jazmine +Reagan +Jayla +Rylee +Alejandra +Alexandria +Camila +Gracie +Hope +Kennedy +Annabelle +Esmeralda +Kendall +Lydia +Miranda +Jordyn +Alexia +Anastasia +Angel +Breanna +Diana +Elise +Kira +Makenna +Tatum +Ana +Briana +Catherine +Clara +Elena +Alana +Angelica +Eleanor +Izabella +Juliana +Nora +Ayla +Caitlin +Carmen +Macy +Nadia +Tessa +Veronica +Annika +Caitlyn +Cassandra +Courtney +Jada +Kyla +Cecilia +Jillian +Laura +Monica +Shayla +Skylar +Christina +Fatima +Joanna +Laila +Lesly +Mckenzie +Cynthia +Dakota +Danica +Kailey +Paola +Rose +Violet +Adrianna +Amaya +Ashlynn +Crystal +Eliana +Estrella +Giselle +Itzel +Jamie +Jayden +Julianna +Karina +Lila +Madeleine +Sabrina +Savanna +Allie +Anahi +Jaqueline +Skyler +Bianca +Genevieve +Heidi +Jasmin +Kiara +Maggie +Marisol +Summer +Vivian +Abby +Anne +Camryn +Guadalupe +Julissa +Leila +Makenzie +Perla +Rebekah +Yazmin +Ainsley +America +Anya +Arely +Bethany +Cindy +Cora +Dulce +Eden +Fiona +Georgia +Harper +Hayley +Ivy +Karla +Rachael +Sage +Teagan +Alessandra +Aliyah +Brenda +Hanna +Kiana +Kiera +Lilliana +Melody +Natasha +Patricia +Quinn +Ryleigh +Sidney +Taryn +Ximena +Yadira +Yesenia +Danika +Dayanara +Emely +Emilia +Fernanda +Genesis +Haylee +Jaden +Kaylie +Kelsey +Kendra +Lauryn +Nina +Sasha +Selena +Tania +Alice +Annalise +Ashlee +Athena +Aurora +Brynn +Elle +Erika +Hadley +Hayden +Janessa +Lola +Sherlyn +Tiffany +Adeline +Alison +Alissa +Ariel +Callie +Dana +Danna +Erica +Jadyn +Julie +Kaitlin +Kathleen +Lindsay +Lucia +Mallory +Marlene +Meghan +Scarlett +Alina +Brenna +Brisa +Cameron +Carly +Esperanza +Haylie +Hazel +Iris +Isis +Kassandra +Kelly +Leilani +Presley +Reyna +Rylie +Anika +April +Bridget +Evelin +Helen +Holly +Jimena +Joselyn +Lexi +Lilian +Lizbeth +Malia +Nayeli +Ryan +Shannon +Skye +Tatiana +Willow +Araceli +Denise +Elliana +Frida +Heather +Helena +Jaiden +Jayda +Johanna +Josie +Kadence +Kassidy +Katelynn +Katrina +Linda +Mercedes +Michaela +Paulina +Penelope +Phoebe +Raven +Samara +Alaina +Alivia +Allyson +Alma +Anabelle +Camille +Casey +Ciara +Daniella +Eliza +Heaven +Joslyn +Kaelyn +Kara +Madisyn +Marilyn +Meredith +Mikaela +Miriam +Nyla +Ruth +Sandra +Sarai +Tiana +Viviana +Wendy +Adelyn +Alayna +Annabel +Arabella +Asia +Carla +Carrie +Emilee +Harmony +Haven +Ingrid +Jazlyn +Jazmyn +Justice +Luna +Maddison +Madilyn +Maribel +Marie +Marisa +Marley +Neveah +Noelle +Paloma +Rowan +Ryann +Talia +Teresa +Tess +Yasmin +Yoselin +Aiyana +Alena +Braelyn +Brittany +Carolina +Celeste +Chelsea +Cierra +Clare +Desiree +Edith +Elaina +Ellen +Isabela +Joselin +Joy +Kamryn +Kayleigh +Kristina +Lacey +Madalyn +Madyson +Maia +Makena +Maritza +Mila +Nancy +Pamela +Rayna +Reece +Tianna +Brielle +Campbell +Diamond +Elisabeth +Emilie +Esther +Gretchen +Hallie +Jaelyn +Jaidyn +Kristin +Kyleigh +Lilia +Lillie +Lucille +Marina +Mireya +Monique +Rubi +Simone +Taya +Yareli +Zoie +Anais +Annie +Bryanna +Carissa +Celia +Charlize +Claudia +Dayana +Delilah +Donna +Emery +Emmalee +Evangeline +Eve +Finley +Gemma +Gloria +Jane +Janelle +Janet +Jessie +Judith +Kailee +Kaya +Kenna +Kiley +Kinsey +Lana +Laurel +Lina +London +Luz +Maci +Macie +Mayra +Mckayla +Mira +Mollie +Reina +Sariah +Selah +Serena +Skyla +Sonia +Soraya +Valentina +Whitney +Yaretzi +Abbigail +Abrianna +Alia +Alize +Amara +Angeline +Annelise +Aryana +Aryanna +Ashly +Ashton +Aubree +Aylin +Baylee +Belen +Bryn +Camilla +Catalina +Charlie +Clarissa +Deanna +Deja +Dylan +Elisa +Felicity +Francesca +Giovanna +Graciela +Halle +Isabell +Jolene +Kaia +Kaiya +Kali +Karissa +Katharine +Kaydence +Kaylin +Kelsie +Kenzie +Kirsten +Lesley +Leticia +Libby +Lillianna +Lilyana +Lisa +Lorena +Lyla +Malea +Marin +Moriah +Myla +Natalee +Nataly +Noelia +Noemi +Norah +Priscilla +Quincy +Raquel +Renee +Rhiannon +Rosalie +Sarahi +Savanah +Sharon +Sylvia +Yamileth +Alexus +Aliya +Amya +Analise +Anastacia +Anaya +Aracely +Aria +Ariah +Averie +Barbara +Bethzy +Cailyn +Caley +Carlie +Charli +Christine +Citlaly +Cloe +Coral +Desirae +Destinee +Devin +Dominique +Ebony +Gia +Gillian +Grecia +Harley +Jaelynn +Janae +Jaylee +Jaylynn +Johana +Juliet +Kailyn +Kaitlynn +Karely +Kaylyn +Kenya +Kya +Lesli +Lluvia +Logan +Lorelei +Mae +Maeve +Mattea +Meadow +Melany +Miah +Nathaly +Paris +Priscila +Raegan +Regan +Ryley +Saige +Savana +Shania +Shaylee +Shea +Stephany +Tara +Thalia +Tori +Tyler +Virginia +Wren +Yarely +Yaritza +Yasmine +Abril +Adamaris +Addyson +Aisha +Aliza +Alysia +Alyson +Amani +Anabella +Anissa +Aniya +Annabella +Annette +Ashleigh +Aubrie +Bailee +Britney +Cambria +Cara +Carley +Charlene +Charley +Cherish +Colette +Cristal +Cristina +Danae +Darlene +Dayanna +Denisse +Devyn +Ellery +Elly +Elsa +Elysia +Frances +Gisell +Gwyneth +Hailee +Hana +Ivory +Izabelle +Jaquelin +Jaylene +Jazlynn +Jenny +Joseline +Justine +Karli +Karma +Kaylynn +Kenia +Kianna +Kierra +Lacie +Lacy +Laney +Lea +Leanna +Lena +Lia +Lilianna +Lilli +Livia +Mackenna +Madelynn +Martha +Nichole +Nola +Paisley +Parker +Paula +Raelynn +Rayne +River +Rocio +Sawyer +Shreya +Shyanne +Siena +Sonja +Sonya +Stacy +Susan +Sydnee +Tabitha +Tayla +Tehya +Trista +Yaretzy +Yuliana +Yuridia +Abriana +Adamari +Addie +Addisyn +Adison +Aidan +Aileen +Alanna +Alea +Aleah +Alex +Amari +Analicia +Anja +Araya +Ariella +Avalon +Aviana +Betsy +Bonnie +Brandy +Breana +Briseyda +Brook +Brookelyn +Carlee +Casandra +Caylee +Chelsey +Ciera +Citlali +Damaris +Davina +Dayra +Elaine +Eryn +Felicia +Flor +Giana +Gracelynn +Greta +Gwendolyn +India +Ireland +Izabel +Janaya +Janette +Jaya +Jayde +Jaylah +Jaylin +Jesse +Juliette +Kaela +Karlee +Katarina +Keely +Krystal +Larissa +Leia +Leilany +Lexie +Liana +Lilah +Linnea +Lizeth +Lyric +Maren +Mariela +Marlee +Meaghan +Melia +Miracle +Miya +Myah +Natali +Nia +Noel +Norma +Opal +Payten +Precious +Raina +Raya +Remy +Rian +Rosa +Rosie +Roxana +Salma +Sheyla +Tea +Thea +Tia +Vianey +Yahaira +Yoselyn +Abagail +Ada +Adrienne +Ahtziri +Aidyn +Aimee +Alani +Aliana +Alliyah +Ally +Amira +Anabel +Ananya +Angelique +Angelyna +Angie +Aniah +Anisa +Ann +Annalyse +Anneliese +Antonia +Areli +Arielle +Arwen +Aspyn +Astrid +Aubrianna +Aubrielle +Ayana +Ayleen +Berenice +Berkley +Beth +Briseida +Brookelynn +Brynna +Carina +Carol +Chanelle +Chantal +Charlee +Chase +Cheyanne +Collette +Corinne +Cosette +Cyan +Dalila +Destiney +Elana +Elianna +Elisha +Ember +Emersyn +Emili +Emmerson +Estefani +Estefania +Estella +Farrah +Gema +Giada +Gina +Gladys +Gracey +Hilary +Hillary +Idaly +Irene +Isela +Jacey +Jackeline +Jaime +Jalissa +Jasmyn +Jaycee +Jaylyn +Jayna +Jewel +Jill +Joana +Kaida +Kailani +Kalie +Kallie +Karolina +Kasandra +Katlyn +Katy +Katya +Kaycee +Kaylen +Kayley +Kinley +Kristen +Lainey +Lara +Leanne +Leyla +Leyna +Liberty +Lidia +Lilyanna +Litzy +Lizette +Lucero +Luci +Madalynn +Madilynn +Magdalena +Maisy +Makaila +Marcela +Margo +Mari +Marian +Marianna +Marianne +Meagan +Melina +Mina +Moira +Nadine +Nalani +Noa +Nohemi +Peighton +Phoenix +Pilar +Regina +Riana +Rita +Robyn +Rory +Roxanna +Rylan +Rylyn +Sedona +Selina +Shyla +Sloane +Sora +Stacey +Star +Sydnie +Tamia +Tatianna +Winter +Yadhira +Yamilet +Yessica +Yolanda +Yoseline +Zariah +Zuri +Isabella +Sophia +Emma +Olivia +Abigail +Emily +Addison +Madison +Ava +Hannah +Elizabeth +Ella +Samantha +Grace +Ashley +Taylor +Natalie +Alyssa +Mia +Lily +Chloe +Sarah +Avery +Alexis +Nevaeh +Anna +Hailey +Sydney +Alexa +Maya +Brianna +Evelyn +Lauren +Jasmine +Brooke +Victoria +Zoe +Jessica +Lillian +Kaylee +Brooklyn +Angelina +Audrey +Alexandra +Savannah +Sofia +Katherine +Riley +Allison +Morgan +Isabelle +Kaitlyn +Kylie +Gabriella +Maria +Amelia +Rachel +Sophie +Madeline +Bailey +Faith +Julia +Jocelyn +Aubrey +Claire +Makayla +Valeria +Kimberly +Mariah +Isabel +Paige +Jade +Kayla +Naomi +Ruby +Destiny +Ariana +Megan +Sadie +Trinity +Aaliyah +Andrea +Jordan +Arianna +Lucy +Vanessa +Michelle +Jennifer +Molly +Nicole +Serenity +Ashlyn +Autumn +Gabrielle +Gianna +Mackenzie +Peyton +Leah +Liliana +Daniela +Layla +Stephanie +Eva +Mya +Reese +Camila +Charlotte +Jacqueline +Keira +Caroline +Haley +Adriana +Gracie +Aspen +Katelyn +Madelyn +Sienna +Sierra +Melanie +Violet +Zoey +Delaney +Diana +Jayden +Leslie +Lydia +Lilly +Gabriela +Kate +Sara +Alexandria +Alicia +Amy +Genesis +Hayden +Natalia +Reagan +Tessa +Izabella +Jenna +Katie +Ellie +Hope +Alondra +Rylee +Amanda +Briana +Amber +Danielle +Eliana +Emerson +Jordyn +Kendall +Mary +Mckenna +Dakota +Ivy +Joselyn +Karla +Mariana +Scarlett +Daisy +Erin +Makenna +Miranda +Alexia +Amaya +Bella +Caitlyn +Giselle +Kathryn +Margaret +Clara +Eleanor +Kira +Kyla +Ana +Angel +Annabelle +Cassidy +Kennedy +Payton +Stella +Alana +Annika +Brooklynn +Cassandra +Catherine +Cheyenne +Eden +Elise +Erika +Kylee +Piper +Savanna +Shelby +Angela +Jada +Jazmin +Josephine +Rebecca +Addyson +Danica +Hazel +Marissa +Angelica +Caitlin +Dulce +Haylee +Laila +Leila +Lindsey +Skylar +Tatum +Anahi +Kiera +Adrianna +Ashlynn +Ayla +Carmen +Elle +Alivia +Breanna +Elena +Fatima +Kyra +Lila +Lizbeth +Teagan +Christina +Cora +Estrella +Itzel +Juliana +Kiara +Makenzie +Malia +Mckenzie +Viviana +Alejandra +Alina +Aliyah +Esmeralda +Georgia +Jamie +Melissa +Mikayla +Nina +Shayla +Summer +April +Athena +Cadence +Crystal +Genevieve +Harper +Iris +Jasmin +Jazmine +Jillian +Karina +Kaydence +Laura +Macy +Nadia +Perla +Veronica +Ainsley +Alayna +Anastasia +Holly +Kendra +Lindsay +Lola +Madeleine +Miley +Nayeli +Ruth +Rylie +Vivian +Camille +Cecilia +Delilah +Karen +Maggie +Mallory +Nora +Rose +Rowan +Taryn +Valerie +Allie +Anya +Bianca +Brynn +Courtney +Daniella +Danika +Emilee +Michaela +Monica +Siena +Talia +Ximena +Anika +Ariel +Bethany +Brenna +Carly +Dana +Fiona +Hayley +Jaiden +Jaidyn +Jayla +Julie +Lexi +Lucia +Maddison +Melany +Natasha +Quinn +Adelaide +Arely +Callie +Dayanara +Guadalupe +Hadley +Jadyn +Jaqueline +Julissa +Kailey +Kaylie +Miriam +Paola +Presley +Rebekah +Ryann +Sarai +Yasmin +Alessandra +Aurora +Bridget +Brisa +Chelsea +Eliza +Helen +Isis +Janessa +Julianna +Kelsey +Leilani +Lia +Nancy +Rachael +Sabrina +Selena +Willow +Abby +Alice +Alison +Alissa +Aubree +Ciara +Elaina +Emely +Harmony +Heather +Jaden +Jaelyn +Joseline +Katelynn +Kelly +Lacey +Lilliana +Madilyn +Mercedes +Penelope +Ryan +Sage +Samara +Tiffany +Abril +Adeline +Cameron +Erica +Evangeline +Hanna +Haylie +Meredith +Noelle +Rosa +Sasha +Wendy +Yareli +Alaina +Carolina +Daphne +Elliana +Evelin +Harley +Iliana +Ingrid +Kaitlin +Kayleigh +Kiana +Lana +Lexie +Lyla +Marisol +Yoselin +Abbie +Adyson +Aileen +Aiyana +America +Analicia +Araceli +Brittany +Danna +Heaven +Isabela +Joselin +Kaelyn +Kara +Kassandra +Lauryn +Lilah +Lillianna +Lucille +Melody +Myla +Phoebe +Phoenix +Tatiana +Yadira +Abbigail +Adison +Angelique +Aria +Audrina +Elisa +Elisabeth +Emilia +Felicity +Gloria +Jaelynn +Jane +Joanna +Josie +Juliet +Kailee +Kathleen +Lena +London +Madelynn +Madyson +Marina +Maritza +Marlene +Priscilla +Sidney +Yesenia +Ada +Alena +Alexus +Allyson +Angie +Aniya +Ashlee +Aylin +Brenda +Campbell +Camryn +Celeste +Gia +Gwendolyn +Ireland +Isabell +Kadence +Kailyn +Kamryn +Kenya +Luna +Madisyn +Mikaela +Olive +Scarlet +Sherlyn +Adalyn +Alma +Alyson +Amara +Amelie +Anaya +Averie +Brielle +Carla +Cheyanne +Cynthia +Elsa +Esperanza +Heidi +Jayda +Jaylyn +Jazlyn +Jimena +Juliette +Kaiya +Karissa +Kaylynn +Kenzie +Lilian +Lluvia +Logan +Luz +Lyric +Macey +Macie +Makena +Marisa +Meghan +Mollie +Monique +Nataly +Norah +Ryleigh +Selah +Serena +Sonia +Tabitha +Tania +Whitney +Angeline +Anja +Annalise +Annie +Asia +Azul +Catalina +Delia +Dominique +Dylan +Emery +Emmalee +Esther +Giada +Gillian +Greta +Hadassah +Hailee +Halle +Hallie +Isla +Janae +Janelle +Johanna +Journey +Kaia +Kasey +Kiley +Lesley +Lilyana +Litzy +Madalyn +Maia +Maren +Marie +Marlen +Maryjane +Meadow +Reyna +Sandra +Shiloh +Simone +Sylvia +Thalia +Tiana +Zoie +Abbey +Abigale +Alanna +Amaris +Amya +Aniyah +Areli +Aubrie +Baylee +Brylee +Bryn +Carissa +Cecelia +Claudia +Damaris +Dayana +Denise +Elia +Finley +Francesca +Giana +Irene +Jaida +Jordin +Judith +Kairi +Kayli +Kaylin +Larissa +Lesly +Livia +Maile +Marin +Marley +Natalee +Natalya +Nyla +Precious +Rayne +Regan +Rhiannon +Sariah +Shea +Shyla +Teresa +Tori +Willa +Yamilet +Yaretzi +Zara +Abagail +Ailyn +Aliana +Anabella +Annabella +Arabella +Avalon +Averi +Ayleen +Brandy +Cali +Celia +Charlize +Cindy +Clarissa +Dani +Desiree +Emilie +Fernanda +Haven +Helena +Izabel +Jaedyn +Janet +Jenny +Jolie +Joslyn +Justice +Kali +Kamila +Karlie +Katelin +Katrina +Kaya +Kayden +Keely +Kianna +Kimora +Kirsten +Kristin +Kya +Lainey +Laney +Madilynn +Maisie +Makaila +Mara +Marilyn +Micah +Mila +Nathaly +Neveah +Noemi +Pamela +Paris +Paulina +Raegan +Raina +Renee +Rhianna +Rosemary +Shannon +Skye +Skyler +Stacy +Taliyah +Tamara +Tara +Tia +Valentina +Vanesa +Virginia +Yahaira +Aaralyn +Adalynn +Adelynn +Aidan +Aja +Alayah +Alize +Alora +Alyvia +Amina +Analise +Anne +Aracely +Araya +Ashleigh +Ashly +Bria +Brookelyn +Bryanna +Carley +Cherish +Christiana +Cierra +Clare +Corinne +Cristal +Dalilah +Darian +Deanna +Elora +Elyse +Emmy +Estefani +Evie +Fabiola +Gina +Gretchen +Izabelle +Jacey +Jaylynn +Jazlynn +Jazmyn +Jersey +Jesse +Jewel +Kaitlynn +Kaylyn +Kenna +Kristen +Kristina +Kyleigh +Leona +Leyla +Liberty +Lilianna +Lillie +Lorena +Maci +Magnolia +Maribel +Marleigh +Mayte +Miya +Mylee +Neva +Nia +Noel +Parker +Raquel +Saige +Salma +Saphira +Savanah +Sky +Sofie +Stephany +Sylvie +Violeta +Yarely +Yazmin +Yazmine +Yoselyn +Yuridia +Abrianna +Addie +Adria +Aimee +Aislynn +Alaura +Aleah +Alessa +Alexandrea +Alianna +Ally +Allyssa +Anabelle +Anessa +Arielle +Aryanna +Ashtyn +Aubrianna +Audrianna +Ayana +Billie +Brook +Camilla +Cara +Carlee +Carlie +Carolyn +Casey +Celina +Charli +Cienna +Dafne +Dalila +Dariana +Deja +Devon +Devyn +Ebony +Elianna +Ellen +Elliot +Emelia +Essence +Evangelina +Eve +Frances +Freya +Galilea +Geneva +Ginger +Gracelyn +Graciela +Hana +Jaela +Jaslene +Jaslyn +Jasmyn +Jaylee +Jayleen +Jaylin +Jeanette +Jesenia +Kaela +Kaila +Kaleigh +Kalli +Kallie +Karime +Karlee +Karma +Kassidy +Kierra +Kimber +Kinsley +Laci +Lacy +Laurel +Leanna +Liana +Lina +Lisa +Lynn +Mae +Marcela +Marely +Maryann +Maryn +Mattea +Mckinley +Mira +Mireya +Myah +Natali +Niamh +Noelia +Nyah +Paloma +Patricia +Rayanna +Rayna +Rita +Rori +Roselyn +Sarahi +Saray +Selene +Sharon +Sloane +Solana +Sonya +Susan +Taya +Tayler +Tess +Theresa +Toni +Yajaira +Yaritza +Zia +Abrielle +Adalee +Adelina +Adelyn +Adrienne +Aisha +Aleena +Alia +Alisa +Aliza +Alyiah +Amalia +Amari +Amiah +Amirah +Anabel +Anahy +Anai +Analy +Anastacia +Annalisa +Annelise +Ansley +Ariah +Arlette +Astrid +Audra +Audriana +Austyn +Avary +Aya +Ayanna +Barbara +Berlin +Betsy +Beverly +Brea +Bree +Brinley +Britney +Caitlynn +Carina +Carol +Cayla +Caylee +Celine +Chanelle +Christine +Citlali +Claira +Corina +Dania +Deborah +Denisse +Diamond +Dianna +Edith +Eileen +Ellee +Elsie +Flor +Giovanna +Gisselle +Gizelle +Gwen +Gwyneth +Haily +Havanna +Hunter +Isobel +Iyanna +Jaclyn +Jalynn +Jaylen +Jenessa +Joselynn +Joy +June +Justine +Justyce +Karli +Karyme +Katarina +Katerina +Kayley +Keeley +Keila +Kenia +Kennedi +Kiersten +Kylah +Lacie +Laylah +Leticia +Lillyana +Lilyanna +Linda +Lizeth +Lorelei +Madalynn +Magdalena +Maiya +Malena +Margaux +Marianna +Mariela +Mariella +Mariska +Marlee +Maryam +Mayra +Mckayla +Meagan +Melina +Miah +Micaela +Monserrat +Monserrath +Nubia +Nya +Olyvia +Paisley +Rebeca +Rebeka +Reilly +River +Rory +Rubi +Rylyn +Samira +Sawyer +Shaelynn +Shania +Shaylee +Skyla +Soraya +Stefany +Triniti +Vianney +Winter +Yoseline +Yuliana +Yulissa +Zariah +Zuleyka +Isabella +Olivia +Sophia +Emma +Abigail +Madison +Ava +Elizabeth +Samantha +Emily +Ella +Taylor +Natalie +Mia +Chloe +Hannah +Addison +Avery +Grace +Ashley +Lily +Alexis +Nevaeh +Brianna +Hailey +Anna +Alyssa +Evelyn +Sarah +Victoria +Sydney +Lillian +Lauren +Brooke +Alexandra +Savannah +Zoe +Madeline +Alexa +Audrey +Riley +Valeria +Allison +Brooklyn +Katherine +Claire +Kaylee +Peyton +Leah +Julia +Amelia +Gabriella +Maya +Charlotte +Kayla +Isabel +Jasmine +Layla +Aaliyah +Bailey +Jessica +Kylie +Morgan +Isabelle +Molly +Arianna +Maria +Sofia +Naomi +Camila +Jennifer +Aubrey +Genesis +Andrea +Mackenzie +Rachel +Haley +Kimberly +Sadie +Serenity +Jocelyn +Trinity +Autumn +Bella +Makayla +Jordan +Ariana +Destiny +Lucy +Madelyn +Megan +Paige +Eva +Mariah +Sophie +Ruby +Faith +Kaitlyn +Keira +Payton +Stephanie +Mya +Natalia +Reese +Zoey +Caroline +Rylee +Angelina +Jade +Kate +Vanessa +Jenna +Katelyn +Lilly +Melanie +Nicole +Violet +Daniela +Katie +Mary +Lydia +Reagan +Hayden +Sara +Sienna +Gabriela +Marley +Adriana +Gianna +Liliana +Michelle +Amy +Gabrielle +Gracie +Leslie +Marissa +Delaney +Stella +Aspen +Eliana +Ellie +Lila +Rebecca +Delilah +Diana +Mckenna +Scarlett +Brooklynn +Teagan +Annabelle +Giselle +Jordyn +Melissa +Tessa +Josephine +Angel +Briana +Elise +Jayden +Alexandria +Alicia +Amaya +Ashlyn +Shelby +Angela +Brynn +Cadence +Clara +Eleanor +Kendall +Alana +Alondra +Danica +Kathryn +Kylee +Aliyah +Elena +Kira +Lola +Makenna +Sierra +Tatum +Valerie +Annika +Emerson +Ivy +Jazmin +Kennedy +Leila +Margaret +Nora +Alexia +Daisy +Danielle +Hope +Jacqueline +Kiara +Mariana +Piper +Sage +Vivian +Alejandra +Harper +Kaydence +Miley +Sabrina +Skylar +Adrianna +Amber +Ana +Cheyenne +Crystal +Dakota +Hazel +Izabella +Jasmin +Jayla +Karen +Mikayla +Miranda +Ximena +Audrina +Catherine +Eden +Jada +Mckenzie +Amanda +Carmen +Estrella +Fatima +Kiera +Laila +Makenzie +Rose +Angelica +Ashlynn +Aurora +Caitlin +Dulce +Erin +Karina +Kendra +Madeleine +Maggie +Malia +Nataly +Alaina +Alina +Allie +Allyson +Joselyn +Julianna +Juliet +Kyra +Nina +Veronica +Adeline +Alivia +Anya +Camryn +Cassidy +Erica +Haylee +Juliana +Kyla +Laura +Lexi +Lindsey +London +Lucia +Lyla +Marely +Noelle +Quinn +Ainsley +Alice +Ariel +Bethany +Cassandra +Cecilia +Chelsea +Iris +Josie +Lilah +Lyric +Macy +Mallory +Nadia +Rowan +Rylie +Summer +Addyson +April +Erika +Esmeralda +Fiona +Itzel +Jadyn +Jazmine +Jillian +Kara +Leilani +Anastasia +Annie +Ayla +Brielle +Caitlyn +Cora +Courtney +Holly +Karla +Katelynn +Kaylie +Kelsey +Nayeli +Anahi +Aubree +Genevieve +Hadley +Jane +Kamryn +Melody +Mira +Savanna +Talia +Arely +Brenna +Camille +Cynthia +Daniella +Danika +Dayanara +Eliza +Elliana +Evangeline +Fernanda +Finley +Jamie +Janessa +Jimena +Lena +Lilliana +Lillie +Lizbeth +Marisol +Yasmin +Alison +Alyson +Athena +Aylin +Bianca +Breanna +Emery +Giana +Guadalupe +Heidi +Kailey +Kelly +Kiana +Kyleigh +Madilyn +Penelope +Phoebe +Rubi +Abby +Alena +Carly +Danna +Emilia +Gloria +Greta +Harley +Hayley +Jaylynn +Julissa +Kali +Kiley +Lindsay +Madalyn +Maia +Marlee +Norah +Paola +Ruth +Skyler +Sylvia +Tara +Yesenia +Adelaide +Alayna +Angelique +Aniyah +Araceli +Azul +Brenda +Celeste +Daphne +Dayana +Heather +Jaelynn +Jaiden +Jayda +Jazlyn +Joanna +Kaitlin +Khloe +Logan +Nancy +Noemi +Rachael +Rebekah +Shayla +Siena +Tatiana +Abril +Aiyana +Angie +Baylee +Bridget +Cali +Callie +Camilla +Ciara +Esther +Georgia +Heaven +Helen +Jaslene +Kaelyn +Luna +Miriam +Natasha +Parker +Raegan +Willow +Adelyn +Braelyn +Brylee +Cameron +Claudia +Deja +Denise +Dylan +Elle +Esperanza +Eve +Evelin +Jaelyn +Jazlynn +Kaia +Lilian +Lucille +Luz +Macie +Madisyn +Marin +Mila +Perla +Reyna +Ryleigh +Sandra +Scarlet +Serena +Sonia +Yareli +Yoselin +Aliana +Casey +Damaris +Haylie +Helena +Jacquelyn +Jaden +Johanna +Joslyn +Kayleigh +Lilyana +Maddison +Madelynn +Marie +Mireya +Mylee +Paloma +River +Tiffany +Viviana +Whitney +Zoie +Aileen +Alessandra +Amya +Areli +Brisa +Bryanna +Carissa +Chanel +Christina +Ellen +Elyse +Gwendolyn +Gwyneth +Janelle +Jaqueline +Jaylin +Kadence +Kaiya +Karime +Kathleen +Kayley +Kaylynn +Kenya +Kenzie +Larissa +Lauryn +Lexie +Lia +Linnea +Madyson +Makena +Marisa +Marlene +Michaela +Myla +Natali +Presley +Rayna +Sarai +Sasha +Sherlyn +Taryn +Tori +Yadira +Yamilet +Yaritza +Abbigail +Abrianna +Aimee +Alanna +Allisson +America +Anika +Annalise +Anne +Ariah +Ayleen +Carla +Catalina +Celia +Clare +Elaina +Elsie +Emmy +Felicity +Gillian +Harmony +Jacey +Jaidyn +Jaylee +Juliette +Kaylin +Kenna +Kirsten +Lana +Leticia +Liana +Lizeth +Macey +Maren +Melany +Mikaela +Monica +Nyah +Priscilla +Rayne +Samara +Sawyer +Shannon +Shea +Skyla +Tania +Thalia +Trista +Valentina +Adalyn +Adison +Aleena +Alia +Alize +Amari +Aniah +Aurelia +Bailee +Brissa +Campbell +Carolina +Charlie +Colette +Cristal +Dana +Edith +Emely +Evangelina +Evie +Hailee +Halle +Hanna +Haven +Hayleigh +Isla +Joy +Joyce +Julie +Justice +Kailyn +Kassidy +Kayden +Keely +Lacey +Laurel +Liberty +Lilianna +Linda +Lluvia +Luciana +Madalynn +Maritza +Natalya +Quincy +Raelynn +Raina +Reece +Reina +Rhiannon +Rosa +Selah +Selena +Shay +Shiloh +Shyla +Simone +Skye +Stephany +Tabitha +Willa +Yamileth +Yaretzi +Yazmin +Zariah +Abbie +Adalynn +Ailyn +Aisha +Alisha +Alissa +Aliya +Annabella +Aracely +Aria +Ashlee +Ashtyn +Aubrie +Aubry +Betsy +Bryn +Cara +Charlee +Charli +Christine +Devin +Elisabeth +Eloise +Evelynn +Fabiola +Frida +Gia +Gretchen +Hailie +Ingrid +Irene +Jaquelin +Jaycee +Jaydin +Jazmyn +Judith +Kamila +Karma +Kassandra +Kaya +Kenia +Krystal +Leanna +Lillyanna +Lisa +Livia +Madilynn +Maeve +Magdalena +Maleah +Mara +Mariam +Maribel +Mariela +Matilda +Mercedes +Moriah +Myah +Natalee +Nia +Patricia +Pearl +Renee +Rihanna +Ryan +Sidney +Sloane +Sofie +Susan +Tegan +Thea +Tianna +Abagail +Abigale +Addisyn +Adelina +Aislin +Amara +Anabel +Analisa +Anaya +Aniya +Annelise +Asha +Aubrianna +Avalon +Belen +Britany +Britney +Camdyn +Carolyn +Carson +Cindy +Denisse +Desiree +Destiney +Eileen +Elianna +Elisa +Elissa +Ellis +Elsa +Emilee +Emmalee +Geraldine +Giovanna +Hana +Imani +Ireland +Isabela +Isabell +Izabelle +Janet +Jayleen +Jaylene +Jessie +Joelle +Jolie +June +Kaitlynn +Kaleigh +Karli +Kaycee +Kimora +Kiya +Kyrie +Lesly +Lilli +Lillianna +Litzy +Lorena +Marina +Mayra +Miah +Noelia +Olive +Paityn +Raquel +Rhianna +Rory +Ryann +Rylan +Saige +Sally +Sarahi +Sariah +Shyanne +Sonya +Tayler +Adrienne +Adysen +Aiden +Aiyanna +Alecia +Ali +Alma +Amalia +Amani +Amira +Analia +Ann +Annaliese +Anneliese +Averie +Baileigh +Briley +Brynlee +Caitlynn +Cambria +Cassie +Caylee +Charlize +Chiara +Ciana +Cloey +Dayami +Destinee +Devyn +Diamond +Divina +Elliott +Emersen +Emilie +Francesca +Galilea +Gina +Gracelynn +Hallie +Isis +Iyana +Iyanna +Jaliyah +Jaslyn +Jayde +Jaylah +Joey +Journey +Jubilee +Kacey +Kailee +Kaley +Kallie +Karyme +Katrina +Keila +Kenadie +Keren +Kianna +Kinley +Kirra +Kora +Lainey +Lea +Lesley +Lizette +Londyn +Lorelei +Magnolia +Margarita +Marilyn +Marlo +Mayrin +Mckayla +Melina +Micaela +Nadine +Nallely +Nariah +Nathalia +Nathalie +Paisley +Pamela +Regan +Rocio +Roslyn +Savanah +Shaelyn +Shania +Shaylee +Sol +Sydnee +Sylvie +Talyn +Tanya +Teresa +Virginia +Winter +Zahara +Zara +Zaria +Abigayle +Ada +Addie +Addysen +Adelynn +Adyson +Aida +Aleah +Alexus +Alexys +Alisson +Alycia +Amelie +Amora +Anessa +Annalee +Annette +Ansley +Arabella +Araya +Ariadna +Arlene +Aryana +Aryanna +Ashly +Aubri +Aubriana +Audra +Aviana +Ayva +Azariah +Beatrice +Belle +Beverly +Brinley +Brittany +Brook +Calista +Capri +Casandra +Caydence +Caylin +Cecelia +Celine +Chevelle +Chole +Cierra +Citlali +Clarissa +Clarity +Corinne +Dahlia +Dalilah +Danae +Dayanna +Destini +Donna +Elodie +Elysia +Ember +Emelia +Emme +Emmi +Flora +Gabriel +Gemma +Gwen +Harlow +Idaly +Ila +Inara +India +Jacee +Janice +Jaya +Jazmyne +Jenifer +Jiana +Jordin +Joselin +Joseline +Julieta +Julisa +Kaila +Karis +Karissa +Karlee +Karly +Karol +Katarina +Kayleen +Keagan +Keeley +Kelsi +Kendal +Kennedi +Kinsley +Kristina +Kyndall +Lacy +Leyla +Lilia +Liv +Lorelai +Mabel +Madysen +Mareli +Mari +Marianna +Marisela +Marlen +Maryjane +Mayte +Mckinley +Milana +Mina +Mischa +Mollie +Monique +Naima +Neva +Nichole +Noel +Noelani +Payten +Pyper +Rain +Ramona +Raven +Roselyn +Rosemary +Sanaa +Scotlyn +Shawna +Shayna +Shia +Soledad +Soraya +Stacey +Sterling +Sydnie +Tamara +Tatyana +Taya +Tayla +Tenley +Tiana +Tina +Toni +Vianey +Yessenia +Yvette +Zaida +Zaira +Isabella +Olivia +Sophia +Abigail +Emma +Ava +Emily +Addison +Elizabeth +Madison +Mia +Ella +Samantha +Lily +Chloe +Alexis +Grace +Taylor +Hailey +Avery +Natalie +Ashley +Evelyn +Zoe +Alyssa +Hannah +Allison +Brianna +Lillian +Nevaeh +Sarah +Brooklyn +Anna +Sydney +Bella +Charlotte +Valeria +Claire +Kaylee +Riley +Alexa +Maya +Bailey +Amelia +Madeline +Peyton +Brooke +Arianna +Victoria +Sofia +Kimberly +Lauren +Leah +Audrey +Aubrey +Faith +Julia +Kayla +Gabriella +Layla +Savannah +Sophie +Trinity +Jasmine +Aaliyah +Genesis +Isabelle +Maria +Alexandra +Camila +Paige +Gianna +Mackenzie +Katherine +Liliana +Andrea +Zoey +Kylie +Lucy +Morgan +Isabel +Naomi +Piper +Serenity +Destiny +Jessica +Ariana +Eva +Natalia +Ruby +Jocelyn +Madelyn +Vanessa +Molly +Reagan +Jordyn +Annabelle +Daisy +Keira +Makayla +Payton +Reese +Angelina +Harper +Kaitlyn +Autumn +Izabella +Elena +Eliana +Jordan +Mariah +Megan +Melanie +Scarlett +Caroline +Cora +Lilly +Lyla +Mya +Shelby +Sienna +Ashlyn +Aspen +Hayden +Michelle +Gabrielle +Kate +Rachel +Rylee +Delaney +Haley +Lydia +Mary +Mckenzie +Jade +Katelyn +Tessa +Violet +Stella +Adriana +Elise +Alexandria +Jennifer +Khloe +Sadie +Sara +Diana +Ellie +Gabriela +Kendall +Miranda +Clara +Emery +Giselle +Katie +Sierra +Ana +Brooklynn +Jada +Jillian +Nora +Aliyah +Athena +Daniela +Eleanor +Genevieve +Josephine +Marissa +Amy +Danielle +Kylee +Nicole +Leslie +Mckenna +Stephanie +Ashlynn +Delilah +Karina +Lola +Marley +Melissa +Valerie +Vivian +Amanda +Annika +Cadence +Hope +Makenna +Rebecca +Angela +Catherine +Margaret +Adrianna +Haylee +Jazmin +Kyla +Mikayla +Sabrina +Brielle +Cassidy +Caylee +Gracie +Isla +Juliana +Lila +Tatum +Caitlyn +Hazel +Jayda +Jazmine +Lexi +Lilah +Teagan +Alexia +Alice +Alondra +Anastasia +Fatima +Kennedy +Laura +Leila +Quinn +Adalyn +Alicia +Briana +Fiona +Ivy +Jenna +Kiera +Kira +Kyra +Penelope +Rylie +Sage +Amaya +Analia +Cecilia +Emerson +Estrella +Fernanda +Kathryn +Skylar +Alison +Angel +Arely +Aurora +Breanna +Carmen +Guadalupe +Heidi +Itzel +Jimena +Madeleine +Melody +Adelaide +Alana +Alina +Ariel +Dakota +Evangeline +Jasmin +Jayla +Julissa +Kaia +Karen +Karla +Kaydence +Lilliana +Makenzie +Olive +Sasha +Ximena +Addyson +Alejandra +Alivia +Anahi +Ayla +Iris +Jamie +Jayden +Laila +Leilani +London +Adeline +Amber +Arabella +Audrina +Bianca +Erin +Hadley +Harmony +Kiara +Lilian +Lindsey +Maggie +Mariana +Miley +Nayeli +Noelle +Phoebe +Summer +Aileen +Alayna +Allie +Eden +Jane +Jaqueline +Lia +Lizbeth +Luna +Macy +Nina +Ruth +Ryann +Samara +Anika +Aniyah +Aylin +Brenda +Brisa +Celeste +Cheyenne +Courtney +Danica +Elliana +Finley +Jazlyn +Kelly +Monica +Savanna +Abby +Allyson +Angelica +Anya +Baylee +Brynn +Cassandra +Danna +Eliza +Emilia +Evelynn +Jacqueline +Jaylynn +Josie +Kara +Lilyana +Logan +Lucia +Malia +Melany +Mila +Myla +Nadia +Ryleigh +Simone +Valentina +Willow +Adelyn +Aleah +America +April +Camille +Charlie +Esmeralda +Georgia +Hallie +Hanna +Julianna +Juliet +Juliette +Kaelyn +Kinley +Lexie +Macie +Miriam +Norah +Perla +Presley +Rowan +Selena +Shiloh +Skyler +Yesenia +Alaina +Annie +Aria +Caitlin +Cameron +Christina +Danika +Ember +Erika +Eve +Giana +Jaelyn +Kenley +Lorelei +Maddison +Madilyn +Mikaela +Parker +Patricia +Paulina +Rebekah +Shayla +Ada +Ainsley +Amara +Aubree +Bethany +Daphne +Dayana +Edith +Gwendolyn +Harley +Jaden +Joselyn +Joslyn +Joy +Kayleigh +Kelsey +Lena +Lillie +Maia +Natasha +Raegan +Siena +Tiffany +Zoie +Ashlee +Camryn +Carly +Carolina +Ciara +Dahlia +Elsie +Erica +Esther +Jazlynn +Joanna +Kamryn +Kendra +Kiana +Kyleigh +Lilyanna +Meghan +Meredith +Nataly +Natalya +Paola +Priscilla +River +Rose +Ryan +Selah +Skyla +Whitney +Yareli +Anabella +Anabelle +Aurelia +Bailee +Brittany +Campbell +Elle +Elsa +Gemma +Helena +Holly +Ingrid +Jadyn +Jayleen +Kaiya +Kamila +Katelynn +Kaylie +Kiley +Kinsley +Madalyn +Madelynn +Mallory +Nathalie +Noemi +Raelynn +Renee +Sarai +Tegan +Veronica +Vivienne +Yaretzi +Aiyana +Angie +Annabel +Annabella +Asha +Aubrie +Azul +Callie +Cecelia +Charlee +Claudia +Cristina +Dayanara +Elaina +Hailee +Jaidyn +June +Kaya +Kenna +Kenzie +Lea +Lesly +Lindsay +Lizeth +Michaela +Reece +Skye +Sloane +Sylvia +Taryn +Yadira +Addisyn +Alanna +Alessandra +Alissa +Alyson +Anaya +Angelique +Araceli +Aryanna +Ayanna +Braelyn +Cali +Cara +Celia +Chelsea +Cynthia +Daniella +Denise +Elisabeth +Evelin +Evie +Felicity +Francesca +Gracelyn +Greta +Hayley +Isis +Jaida +Julie +Kadence +Kali +Lillyana +Lucille +Marin +Maritza +Maryjane +Matilda +Phoenix +Reyna +Rihanna +Stacy +Tatiana +Taya +Teresa +Zariah +Abril +Adalynn +Alani +Alexys +Amira +Amiyah +Arleth +Averie +Blake +Brenna +Bridget +Bryanna +Brylee +Brynlee +Catalina +Cristal +Elisa +Elyse +Emory +Harlow +Haven +Helen +Isabela +Janessa +Kaitlin +Kaylen +Keely +Leighton +Lillianna +Linda +Luciana +Luz +Lyra +Lyric +Madilynn +Mae +Melia +Miya +Nyla +Paityn +Rosa +Rosalie +Serena +Shannon +Talia +Tara +Vera +Virginia +Willa +Yoselin +Aliza +Allegra +Ally +Althea +Alyvia +Amariah +Amelie +Analicia +Aniya +Annalise +Ansley +Ariah +Arielle +Aubrianna +Audra +Avalon +Averi +Berenice +Brinley +Caitlynn +Carlee +Charlize +Cindy +Constance +Corinne +Crystal +Danae +Devyn +Dulce +Dylan +Elianna +Ellery +Ellis +Emely +Emilee +Emilie +Emmalee +Esme +Esperanza +Evalyn +Gia +Hadassah +Haleigh +Ireland +Jaiden +Janie +Jaylin +Journey +Justice +Kailey +Kallie +Karissa +Kassandra +Kathleen +Kayden +Kristina +Lacey +Lilianna +Livia +Londyn +Lylah +Madalynn +Madisyn +Mara +Marie +Marisol +Marlene +Milagros +Paisley +Patience +Raquel +Raven +Regan +Saige +Salma +Sariah +Sidney +Tiana +Vianney +Xochitl +Yaretzy +Abigale +Abigayle +Adelynn +Adrienne +Alaya +Aleena +Aliana +Alianna +Alize +Allisson +Amalia +Amina +Analeigh +Angeline +Anne +Aubriana +Belen +Bree +Briley +Calista +Camilla +Carina +Carissa +Carli +Chanel +Charley +Clare +Dana +Darby +Desiree +Elliott +Emelia +Emmaline +Estella +Gillian +Gwyneth +Halle +Iliana +Imani +Jacey +Jaedyn +Janice +Jaycee +Jazmyn +Jessa +Jolie +Joslynn +Kai +Kailynn +Kaleigh +Karis +Karsyn +Kaylin +Kenya +Kierra +Kiersten +Kora +Kya +Lainey +Lana +Lauryn +Leticia +Liberty +Lluvia +Maite +Maleah +Maliyah +Maribel +Marina +Marisa +Maylin +Mckayla +Melina +Miah +Miracle +Myah +Mylah +Nallely +Nancy +Nathalia +Nelly +Opal +Paloma +Reina +Sahara +Sandra +Sawyer +Shaylee +Sherlyn +Shyla +Siri +Suri +Tatyana +Tayla +Thea +Tori +Violeta +Viviana +Wendy +Yamileth +Yarel +Yarely +Yaritza +Yasmin +Yuliana +Zuri +Acacia +Aida +Akira +Alea +Alena +Alexandrea +Alia +Alisson +Amari +Amaris +Amberly +Amiah +Amya +Ann +Annabell +Annalee +Annaliese +Arden +Armani +Ashleigh +Ashly +August +Austyn +Avah +Avalyn +Aven +Ayleen +Beatrice +Braylee +Caleigh +Cambria +Carla +Caydence +Colleen +Dalilah +Deja +Elaine +Eloise +Elora +Gloria +Gretchen +Heather +Heidy +Isabell +Ivanna +Izabelle +Janelle +Janiyah +Jayde +Jaylee +Jemma +Jennavecia +Jolene +Joselin +Kailee +Kailyn +Kairi +Kaitlynn +Kalia +Karime +Karma +Kassidy +Kaylynn +Kendyl +Keyla +Leilah +Lesley +Leyla +Liana +Libby +Lilia +Lilith +Liza +Macey +Maci +Madyson +Malaya +Marely +Maren +Mariam +Marlee +Marlie +Maxine +Mayte +Mercedes +Mercy +Monique +Natalee +Nola +Pamela +Paris +Pearl +Raleigh +Remi +Rhea +Robyn +Rocio +Rosemary +Roxana +Rylan +Sabine +Sarahi +Shae +Shea +Sonya +Susan +Sylvie +Tania +Thalia +Theresa +Vivien +Winter +Yasmine +Yazmin +Aanya +Addie +Addisen +Aditi +Adrianne +Aiyanna +Alex +Alexsandra +Aliya +Alliyah +Alysia +Anaiah +Angelita +Aniah +Annmarie +Antonia +Ariyah +Aryana +Ashton +Aubriella +Aubrielle +Aviana +Ayana +Brandy +Brayden +Briar +Bristol +Bryn +Calla +Carley +Carsyn +Christine +Colette +Dariana +Davina +Deborah +Devon +Diya +Donna +Edie +Elina +Ema +Emersyn +Emmerson +Estelle +Evangelina +Everly +Ezra +Frances +Gina +Ginger +Giovanna +Gissel +Gracelynn +Hailie +Holland +Ileana +Irene +Izabel +Jackeline +Janae +Janet +Jaquelin +Jaylene +Jazzlyn +Jenesis +Joanne +Johana +Judith +Juniper +Justine +Kacie +Kaela +Kaelynn +Kaila +Kalyn +Kameryn +Karlee +Karyme +Kasandra +Kaylyn +Keeley +Khadija +Kinsey +Kirra +Krista +Kristin +Larissa +Laylah +Leela +Leona +Lesli +Lillyan +Lillyanna +Lilyann +Lina +Linnea +Lisa +Lorelai +Luisa +Lyndsey +Madigan +Maeve +Magaly +Maisie +Makala +Maricela +Marlen +Maryann +Mattie +Mayra +Meadow +Micaela +Milana +Milla +Mireya +Moriah +Mylee +Natali +Nellie +Noelia +Paula +Payten +Petra +Rachael +Raylee +Raylynn +Rayna +Rayne +Regina +Renata +Rhiannon +Rubi +Ryah +Sanaa +Savanah +Selene +Shaelynn +Taelyn +Tahlia +Tala +Tallulah +Temperance +Tess +Tirzah +Tula +Tyler +Unique +Vanesa +Vianey +Violette +Yolanda +Yoselyn +Zadie +Zaira +Isabella +Sophia +Olivia +Emma +Abigail +Ava +Emily +Elizabeth +Madison +Ella +Addison +Mia +Avery +Grace +Lily +Chloe +Natalie +Brooklyn +Alexis +Samantha +Zoe +Hailey +Nevaeh +Sofia +Ashley +Evelyn +Hannah +Anna +Lillian +Charlotte +Alyssa +Claire +Alexa +Lucy +Kaylee +Arianna +Victoria +Brianna +Amelia +Gabriella +Zoey +Peyton +Sarah +Sydney +Taylor +Allison +Riley +Leah +Camila +Audrey +Bailey +Layla +Aaliyah +Savannah +Kimberly +Madeline +Aubrey +Makayla +Serenity +Stella +Katherine +Maya +Sophie +Alexandra +Autumn +Bella +Kylie +Molly +Harper +Julia +Isabelle +Ruby +Gianna +Liliana +Brooke +Ellie +Eva +Isabel +Payton +Jasmine +Valeria +Faith +Kayla +Morgan +Mariah +Naomi +Paige +Violet +Annabelle +Lilly +Izabella +Caroline +Lauren +Andrea +Ariana +Jocelyn +Genesis +Jade +Jessica +Mackenzie +Scarlett +Destiny +Khloe +Ashlyn +Kylee +Natalia +Trinity +Melanie +Eliana +Madelyn +Amy +Daisy +Eleanor +Kaitlyn +Lila +Sadie +Teagan +Vanessa +Angelina +Brooklynn +Jordyn +Lyla +Reagan +Aspen +Delilah +Lydia +Maria +Miranda +Piper +Rylee +Delaney +Quinn +Elise +Jennifer +Katelyn +Katie +Danna +Eden +Elena +Josephine +Michelle +Mya +Rachel +Rebecca +Emerson +Keira +Megan +Nicole +Reese +Adriana +Jacqueline +Jordan +Kennedy +Makenna +Angel +Clara +Hayden +Kendall +Vivian +Amaya +Cecilia +Genevieve +Mckenna +Shelby +Sienna +Sierra +Ayla +Haley +Laila +Leilani +Marley +Nora +Adelaide +Alexandria +Aliyah +Anastasia +Cora +Dulce +Estrella +Gabrielle +Hadley +Ivy +Sara +Valentina +Alice +Angela +Daniela +Diana +Heidi +Luna +Mary +Stephanie +Tessa +Ximena +Ashlynn +Brielle +Hazel +Isla +Mckenzie +Alana +Alondra +Dakota +Fiona +Gracie +Josie +Lola +Margaret +Melissa +Mila +Norah +Tatum +Alivia +Brynn +Gabriela +Kendra +Kira +Presley +Valerie +Yaretzi +Adalyn +Ainsley +Alicia +Jayla +Jenna +Kate +Leila +Macy +Mikayla +Brisa +Danielle +Emery +Giselle +Hope +Iris +Juliana +Lexi +Lilliana +Madeleine +Mariana +Skylar +Adrianna +Alexia +Alina +Ana +Elle +Jillian +Lucia +Athena +Callie +Cassidy +Fernanda +Kelsey +Maddison +Melody +Rylie +Vivienne +Addyson +Adeline +Alejandra +Allie +Amanda +Cheyenne +Daphne +Esmeralda +Jada +Jazmin +Kaydence +Maggie +Makenzie +Nayeli +Penelope +Rebekah +Ryleigh +Scarlet +Aniyah +Annika +Bethany +Cadence +Itzel +Janessa +Kathryn +Leslie +Abby +Adelyn +Alison +Camille +Eliza +Elliana +Emilia +Jazmine +Julianna +Kyla +Lilian +Rose +Serena +Yareli +Alayna +Annabella +Aurora +Caitlin +Carmen +Jane +Juliet +Kamryn +Kinley +Raelynn +Ruth +Allyson +Briana +Caitlyn +Celeste +Elsa +Erin +Jasmin +Jayden +Kiara +Kiley +Lia +London +Miley +Sabrina +Sasha +Savanna +Summer +Talia +Alaina +Arabella +Bianca +Daniella +Gemma +Guadalupe +Kaia +Kiera +Kinsley +Lana +Lucille +Olive +Paisley +Rowan +Tiffany +Abril +Anahi +Anika +Aria +Aubree +Braelyn +Cameron +Carly +Cassandra +Chelsea +Crystal +Danika +Eloise +Finley +Georgia +Harmony +Hayley +Jaelyn +Jayda +Joselyn +Karla +Lilyana +Lyric +Mallory +Marie +Marissa +Phoebe +Veronica +Willow +Addisyn +Aileen +Alessandra +Bridget +Camryn +Catherine +Fatima +Francesca +Giana +Holly +Jimena +Kamila +Karen +Karina +Kenzie +Kyra +Lacey +Lena +Maci +Nina +Amelie +Anabelle +Anya +Carolina +Charlie +Dayana +Joy +Julissa +Kailey +Kara +Katelynn +Kaya +Kelly +Kyleigh +Lillyana +Logan +Lorelei +Marisol +Miriam +Natasha +Noelle +Nola +Sawyer +Sloane +Aiyana +Amber +Amira +Angelica +Annabel +Ayleen +Charlee +Danica +Dylan +Elaina +Ellen +Esperanza +Greta +Jadyn +Johanna +Joslyn +Kayleigh +Laura +Lillyanna +Lindsey +Lizbeth +Madalynn +Madilyn +Maia +Malia +Monica +Paloma +Ryann +Sage +Selah +Shayla +Tenley +Whitney +Zoie +Abbigail +Aleah +Aliya +America +Annaliese +April +Ariel +Averie +Azul +Baylee +Blake +Brylee +Courtney +Elin +Halle +Haven +Judith +Kaylie +Lilah +Lilianna +Macie +Madalyn +Madelynn +Madisyn +Maeve +Mckinley +Melina +Nadia +Raegan +Sylvia +Alanna +Alia +Aliana +Amara +Anaya +Annie +Areli +Arely +Audrina +Aylin +Briella +Bryn +Christina +Ciara +Corinne +Dalilah +Denisse +Elsie +Evangeline +Gia +Gwendolyn +Hanna +Haylee +Iliana +Jaelynn +Jaida +Jamie +Juliette +Kaiya +Lexie +Lilia +Luz +Makena +Marin +Melany +Nancy +Nataly +Paola +Perla +Sidney +Siena +Skyla +Tiana +Adalynn +Alena +Alyson +Analia +Angie +Aubrie +Bailee +Bristol +Brynlee +Carla +Cynthia +Edith +Elisabeth +Janelle +Joanna +Kadence +Kailyn +Kaitlynn +Kathleen +Kiana +Larissa +Lillianna +Lindsay +Luciana +Maleah +Marina +Martha +Moriah +Sandra +Selena +Simone +Sloan +Sylvie +Tess +Thalia +Yadira +Abagail +Ailyn +Ali +Angelique +Aniya +Aryanna +Ayana +Brittany +Cambria +Camilla +Cara +Carolyn +Catalina +Caylee +Dana +Desiree +Elliott +Emely +Emilee +Emilie +Estelle +Giuliana +Harley +Heaven +Ingrid +Isabela +Jaylah +Jaylee +Jayleen +Jazlynn +Julie +Kaelyn +Katia +Kaylynn +Kenna +Lea +Leticia +Liana +Lillie +Londyn +Lyra +Marianna +Mckayla +Miah +Parker +Penny +Priscilla +Rayna +Ryan +Rylan +Sarai +Shannon +Taryn +Tatiana +Tori +Wren +Yamilet +Adyson +Aiyanna +Alannah +Annalise +Ariah +Audriana +Aurelia +Brenna +Brissa +Clare +Elayna +Emelia +Emmalynn +Esther +Evelynn +Everly +Evie +Farrah +Giovanna +Gracelyn +Gretchen +Hailee +Hana +Harlow +Heather +Ireland +Ivanna +Izzabella +Jayde +Jessa +Jocelynn +Jordynn +Joslynn +June +Kailee +Kaitlin +Karissa +Kassandra +Keeley +Kenadie +Leia +Lilyanna +Lorena +Meadow +Meghan +Mollie +Myah +Nariah +Neveah +Paula +Reina +Reyna +Rhiannon +Sarahi +Shea +Shyla +Skyler +Sofie +Tegan +Temperance +Willa +Zariah +Zion +Abbie +Alani +Alexi +Alora +Amani +Analise +Analiyah +Anayah +Araceli +Arielle +Ashly +Astrid +Breanna +Brinley +Bryleigh +Cailyn +Cecelia +Claudia +Colbie +Denise +Devyn +Elisa +Ellery +Emmy +Emory +Erica +Esme +Evangelina +Frida +Gracyn +Hayleigh +Haylie +Helena +Isis +Jaiden +Jaidyn +Jaylynn +Joelle +Journey +Juniper +Kaila +Karolina +Lailah +Lainey +Laurel +Lilyann +Linden +Lisa +Livia +Lizeth +Lylah +Madilynn +Madyson +Mae +Margot +Marilyn +Marisa +Mercedes +Mikaela +Mira +Mireya +Myla +Natalee +Nia +Nikki +Paris +Patricia +Pearl +Phoenix +Raelyn +Raquel +Rory +Rosemary +Ryley +Rylynn +Samira +Shiloh +Solange +Sonia +Sonya +Tabitha +Tayla +Taylin +Trista +Wendy +Xiomara +Yaritza +Zuri +Ada +Adelina +Alyse +Amalia +Amiah +Amina +Amya +Analy +Aniah +Annalee +Araya +Aubrianna +Avianna +Azariah +Beatrix +Betsy +Bonnie +Breckyn +Briley +Britney +Brook +Bryanna +Carlie +Celia +Charleigh +Charley +Charli +Cindy +Claira +Collins +Coral +Cordelia +Cristal +Dahlia +Delanie +Demi +Destinee +Devin +Diane +Eileen +Elianna +Elly +Elora +Emmeline +Eve +Ezra +Felicity +Giada +Gillian +Gloria +Haleigh +Helen +Imani +Isabell +Isadora +Izabel +Jacquelin +Jaden +Jael +Jazmyne +Jessie +Jewel +Jolene +Jolie +Joselin +Justice +Kalea +Kami +Karis +Kassidy +Katrina +Kaylin +Keely +Kenley +Kenya +Kinsey +Kora +Kourtney +Krista +Kya +Laylah +Liberty +Liv +Maliah +Maliyah +Mara +Marian +Maribel +Mariella +Maxine +Mayte +Micah +Michaela +Milagros +Millie +Nalani +Nathalia +Nichole +Noemi +Nyla +Paulina +Persephone +Raina +Raven +Raya +Regan +Rilee +River +Rosa +Scarlette +Shania +Sharon +Shaylee +Siri +Skye +Taytum +Vera +Viviana +Yasmin +Yoselin +Yuliana +Zara +Abilene +Addilyn +Adelynn +Aimee +Aislynn +Alisha +Alisson +Amari +Amilia +Amirah +Amiyah +Analisa +Ann +Anne +Aristea +Arleth +Arya +Ashlin +Asia +Aubrielle +Audra +Ayanna +Barbara +Breana +Brenda +Briseis +Calista +Campbell +Carlee +Casey +Charlize +Christine +Citlaly +Clarissa +Cleo +Colette +Coraline +Cristina +Dalila +Darcy +Della +Dominique +Elyse +Ember +Erika +Essence +Eunice +Evalyn +Faye +Gisselle +Graciela +Hallie +Hartley +Hattie +Heidy +Holland +Ivana +Jacquelyn +Jamison +Janae +Janet +Janiya +Jaqueline +Jaya +Jaylene +Jaylin +Jaylyn +Jemma +Jenny +Journee +Jude +Julieta +Kailani +Kaleigh +Kali +Kalyn +Karime +Karlee +Karli +Karyme +Kathia +Kayden +Kaylyn +Kenia +Kennedi +Kianna +Kirsten +Klara +Kynlee +Kyrie +Lacie +Leighton +Leilah +Leona +Lesley +Lidia +Lilith +Lilyan +Linnea +Lorelai +Macey +Maelle +Maite +Makaila +Marely +Marlee +Marlen +Maryn +Matilda +Maylin +Mayra +Melia +Meredith +Miya +Monique +Nadya +Natalya +Nathaly +Nylah +Ophelia +Pamela +Reece +Regina +Renee +Rosalie +Roselyn +Roxanne +Rubie +Sabina +Saige +Salem +Salma +Savanah +Saya +Sedona +Shyanne +Sonja +Soraya +Sumaya +Tanya +Tatianna +Teegan +Tyler +Veda +Venus +Virginia +Vivianna +Xochitl +Yuna +Zia +Ziva +Olivia +Sophia +Emma +Isabella +Abigail +Ava +Emily +Lily +Elizabeth +Ella +Avery +Chloe +Mia +Madison +Charlotte +Addison +Brooklyn +Grace +Evelyn +Natalie +Lillian +Harper +Amelia +Sofia +Alexis +Hailey +Hannah +Samantha +Zoe +Zoey +Aubrey +Audrey +Victoria +Riley +Stella +Nevaeh +Allison +Ashley +Layla +Sydney +Lucy +Camila +Sophie +Gabriella +Claire +Anna +Kaylee +Peyton +Serenity +Morgan +Alexa +Maya +Violet +Alyssa +Arianna +Leah +Sarah +Scarlett +Autumn +Bailey +Brianna +Madeline +Savannah +Katherine +Payton +Piper +Taylor +Eva +Naomi +Jocelyn +Kylie +Alexandra +Andrea +Faith +Gianna +Bella +Lauren +Aaliyah +Brooke +Genesis +Julia +Mackenzie +Izabella +Paige +Lyla +Trinity +Jasmine +Molly +Kayla +Lila +Reese +Eleanor +Ellie +Jade +Khloe +Reagan +Ruby +Annabelle +Kennedy +Lilly +Maria +Makayla +Valeria +Josephine +Kimberly +Natalia +Elena +Isabelle +Lydia +Aria +Clara +Sadie +Ashlyn +Caroline +Cora +Eliana +Nora +Rachel +Rylee +Isabel +Teagan +Ariana +Aspen +Genevieve +Hazel +Jordyn +Keira +Alice +Brielle +Brooklynn +Leila +Margaret +Mariah +Emerson +Mya +Quinn +Destiny +Kaitlyn +Vanessa +Vivian +Elise +Emery +Liliana +Madelyn +Delaney +Ivy +Jessica +Katelyn +Sienna +Amaya +Daisy +Haley +Hayden +Skylar +Finley +Giselle +Kate +Laila +Mary +Mila +Sierra +Daniela +Hadley +Kinley +Alaina +Aliyah +Cadence +Gabrielle +Kathryn +Kylee +Melanie +Brynn +Juliet +Megan +Michelle +Tessa +Alexandria +Elliana +Isla +Kendall +Makenzie +Penelope +Shelby +Ainsley +Allie +Catherine +Gracie +Haylee +Jordan +Leslie +Lexi +Adalyn +Cecilia +Fatima +Gemma +Makenna +Adelyn +Ashlynn +Aurora +Leilani +Madeleine +Mckenna +Sara +Stephanie +Ximena +Adriana +Alison +Angelina +Briana +Danna +Delilah +Diana +Gabriela +Heidi +Jennifer +Lilah +Maci +Mckenzie +Nicole +Olive +Presley +Willow +Yaretzi +Alana +Alondra +Athena +Aubree +Fiona +Iris +Jillian +Maggie +Summer +Adelaide +Alexia +Alivia +Amy +Charlie +Eden +Karen +Macy +Miranda +Rose +Vivienne +Adeline +Alejandra +Ayla +Danika +Emilia +Georgia +Jayla +Juliana +Kaydence +London +Lucia +Sloane +Alina +Ana +Annabel +Eliza +Hope +Joanna +Katie +Luna +Mikayla +Paisley +Rylie +Valerie +Angela +Estrella +Hayley +Lola +Tatum +Annabella +Cassidy +Cheyenne +Crystal +Evangeline +Fernanda +Jazmine +Jenna +Josie +Julianna +Lilliana +Malia +Melody +Norah +Rebecca +Ryleigh +Sabrina +Yareli +Addyson +Adrianna +Angel +Annika +Audrina +Braelyn +Callie +Carolina +Christina +Daphne +Elsie +Evelynn +Jacqueline +Jazmin +Madilyn +Mallory +Marissa +Selah +Valentina +Abby +Amber +Anastasia +Aniyah +Aubrie +Bianca +Camille +Danielle +Harlow +Jada +Kara +Kelsey +Kinsley +Scarlet +Alicia +Allyson +Bethany +Breanna +Brinley +Caitlin +Ember +Guadalupe +Jane +Jazlyn +Jimena +Joselyn +Kendra +Kira +Kyla +Kyleigh +Lylah +Parker +Sage +Tenley +Veronica +Alayna +Alessandra +Angelica +Angelique +Annie +Brynlee +Chelsea +Dulce +Elsa +Emely +Harmony +Kayleigh +Kiara +Lia +Tegan +Viviana +Ada +Anaya +Brenna +Caitlyn +Celeste +Charlee +Dakota +Danica +Elle +Emmalyn +Gia +Holly +Karla +Kyra +Lena +Liberty +Lillianna +Lilyana +Lyric +Maddison +Nayeli +Phoebe +Sawyer +Tabitha +Adele +Annalise +April +Ariel +Ariella +Aryanna +Daniella +Elaina +Elin +Esther +Jaelynn +Janessa +Jasmin +Jayden +Juliette +Kadence +Logan +Lucille +Maliyah +Marley +Michaela +Miley +Rebekah +Addisyn +Alyson +Amelie +Amiyah +Anahi +Anika +Aniya +Arely +Camilla +Catalina +Dahlia +Dylan +Esmeralda +Esperanza +Giuliana +Hanna +Itzel +Jaelyn +Jayda +Kaelyn +Kamryn +Lexie +Lilianna +Lilyanna +Lindsey +Lorelei +Melissa +Noelle +Ruth +Shiloh +Talia +Adalynn +Aliana +Amanda +Anya +Avianna +Bridget +Carly +Dayana +Emilee +Erin +Eve +Evie +Greta +Gwendolyn +Harley +Helen +Helena +Jaylynn +Joslyn +June +Kaia +Kaiya +Karina +Kelly +Laura +Macie +Mariana +Marin +Marlee +Nina +Raegan +Shayla +Tatiana +Thalia +Zoie +Adelynn +Aileen +Alissa +Aubriana +Baylee +Blake +Bristol +Bryn +Cameron +Camryn +Cassandra +Charley +Dana +Elianna +Eloise +Francesca +Hayleigh +Iliana +Jazlynn +Jazmyn +Johanna +Kamila +Kassidy +Kenley +Lacey +Lailah +Lea +Lilian +Madelynn +Madilynn +Madyson +Marina +Mckinley +Mireya +Miriam +Noemi +Rowan +Ryan +Salma +Skyler +Sloan +Sonia +Whitney +Adrienne +Amani +Amara +Amira +Angeline +Arabella +Ariadne +Aviana +Braelynn +Brittany +Cali +Courtney +Cynthia +Elyse +Erika +Frances +Gracelyn +Hadassah +Imani +Ingrid +Izabelle +Izzabella +Jaqueline +Julissa +Katelynn +Kaylin +Kenzie +Kiley +Lilia +Lillie +Louisa +Maleah +Monica +Myla +Nadia +Nia +River +Rory +Savanna +Serena +Shannon +Sylvia +Tiffany +Zariah +Abbey +Addilyn +Alanna +Ali +Anne +Ariah +Arya +Aylin +Carlee +Carmen +Caylee +Edith +Felicity +Geraldine +Hailee +Haleigh +Ireland +Jemma +Kaelynn +Kairi +Kaya +Kenna +Kiana +Kiera +Lillyanna +Livia +Madalynn +Marie +Marisol +Mikaela +Milena +Mina +Nathalie +Phoenix +Quincy +Sydnee +Taryn +Tiana +Valencia +Abbigail +Abigale +Aimee +Alex +Alia +Aliya +Anabel +Analise +Audriana +Aurelia +Azalea +Azariah +Brenda +Briella +Brisa +Campbell +Cara +Charleigh +Christine +Clare +Devyn +Giada +Giana +Gracelynn +Gwyneth +Halle +Hallie +Ivana +Jamie +Jaycee +Jayde +Jaylee +Jayleen +Jaylin +Julie +Juniper +Kailyn +Kennedi +Kimber +Lyra +Mae +Melany +Meredith +Natalee +Nataly +Natasha +Nola +Paola +Patricia +Paula +Pearl +Priscilla +Rachael +Raelynn +Regina +Renee +Reyna +Rilynn +Rylynn +Sarai +Sasha +Selena +Shyla +Simone +Sunny +Tess +Tinley +Virginia +Willa +Yamilet +Abrielle +Adilyn +Aiyana +Alani +Alannah +Aleena +Alisson +Alma +Amya +Anabella +Anabelle +Analicia +Annabell +Annaliese +Areli +Averie +Bentley +Bonnie +Brylee +Carina +Charlize +Ciara +Clarissa +Coral +Dayanara +Delanie +Destinee +Elisabeth +Emerie +Emersyn +Esme +Everly +Freya +Galilea +Haven +Heather +Heaven +Isis +Jacey +Jacquelyn +Jaidyn +Jaliyah +Janae +Jessie +Jolie +Joslynn +Journey +Joy +Kaitlin +Kaliyah +Kaylie +Kensley +Kinsey +Kourtney +Lainey +Laurel +Laylah +Lesly +Liana +Linda +Lizeth +Lorelai +Madisyn +Maeve +Makena +Maren +Mariam +Maribel +Maritza +Marlene +Marlie +Maryjane +Matilda +Maura +Meagan +Miah +Mira +Norma +Ophelia +Raina +Raquel +Regan +Remi +Rhea +Rosa +Ryann +Scout +Selene +Sidney +Skye +Sonja +Susan +Tahlia +Teresa +Tori +Vera +Xiomara +Yesenia +Yoselin +Zaniyah +Abygail +Adilene +Aislinn +Alena +Aliah +America +Analia +Angie +Aniah +Ashleigh +Astrid +Aubrianna +Aubrielle +Averi +Ayden +Ayva +Bailee +Bria +Brynley +Carlie +Casey +Charli +Coraline +Damaris +Dominique +Drew +Elisa +Ellianna +Elliot +Emmalee +Emmaline +Emmeline +Emmy +Erica +Farah +Gloria +Hana +Inara +Jadyn +Jael +Janelle +Joseline +Kailee +Kailey +Kalea +Kathleen +Kaylynn +Kenzi +Keyla +Kora +Kynlee +Lana +Lara +Lariah +Larissa +Leia +Leyla +Libby +Lindsay +Liv +Luciana +Mabel +Madalyn +Maia +Maisie +Mara +Margot +Mattie +Mercedes +Micah +Millie +Mollie +Moriah +Myra +Nancy +Nellie +Nova +Nyah +Paityn +Paloma +Pamela +Perla +Raelyn +Reece +Renata +Roxanne +Sally +Samara +Shaylee +Shayna +Skyla +Sylvie +Tania +Trista +Tylee +Yamileth +Abbie +Acacia +Adyson +Aida +Ailyn +Aisha +Alaya +Aleah +Alexys +Alianna +Amiah +Analee +Andi +Annaleigh +Annelise +Ansley +Araceli +Aryana +Asha +Aubri +Audree +Avalon +Avalyn +Aven +Ayanna +Ayleen +Azul +Belen +Berkley +Briar +Brittney +Brooklynne +Caelyn +Calista +Calliope +Capri +Carissa +Cecelia +Channing +Cherish +Colette +Collins +Cordelia +Corrine +Cristina +Dania +Darlene +Davina +Deborah +Denisse +Eisley +Eleana +Elia +Elinor +Eliyah +Ellen +Ellery +Elodie +Elora +Ema +Emi +Emilie +Emmalynn +Estella +Evalyn +Evangelina +Farrah +Felicia +Giavanna +Giovanna +Gisselle +Graciela +Hattie +Isabela +Isabell +Jaden +Jaida +Jalyn +Jaylah +Jaylene +Jayna +Jayne +Jenny +Jocelynn +Johana +Jolene +Jordynn +Judith +Kai +Kaitlynn +Kali +Karlee +Karly +Katarina +Kayden +Kendal +Kensington +Kimberlee +Kristin +Kristina +Kyara +Kylah +Kyrie +Laney +Lauryn +Leanna +Lesley +Lexus +Lianna +Lillia +Lilyann +Lizbeth +Lluvia +Londyn +Lorena +Magnolia +Maryam +Maryn +Meadow +Milana +Miya +Nadine +Neveah +Nikki +Noelia +Patience +Paulette +Peighton +Penny +Raven +Reilly +Rio +Rocio +Rosemary +Rubi +Sabine +Sariah +Savanah +Scarlette +Shania +Shea +Sonya +Stevie +Taelyn +Taylee +Tinsley +Toni +Tristan +Vianey +Wendy +Yadira +Yarely +Yareni +Yaritza +Yuliana +Zaida +Zaira +Zara +Emma +Sophia +Olivia +Isabella +Ava +Abigail +Emily +Avery +Evelyn +Mia +Elizabeth +Harper +Madison +Ella +Charlotte +Lily +Grace +Addison +Amelia +Zoey +Lillian +Natalie +Chloe +Zoe +Hannah +Brooklyn +Sofia +Claire +Victoria +Aubrey +Samantha +Savannah +Layla +Stella +Hailey +Anna +Taylor +Aaliyah +Lucy +Sarah +Camila +Riley +Alexis +Bailey +Serenity +Arianna +Ashley +Audrey +Eva +Maya +Alyssa +Kaylee +Sophie +Scarlett +Brooke +Piper +Annabelle +Leah +Alexandra +Eliana +Liliana +Mackenzie +Allison +Aria +Naomi +Katherine +Sydney +Peyton +Alexa +Autumn +Nevaeh +Gabriella +Ellie +Hazel +Reagan +Ruby +Mila +Morgan +Genesis +Violet +Clara +Rylee +Julia +Payton +Cora +Nora +Maria +Mya +Reese +Elise +Isabel +Ariana +Brianna +Faith +Kayla +Madelyn +Madeline +Penelope +Isabelle +Jasmine +Kimberly +Lydia +Andrea +Bella +Elena +Jade +Quinn +Aspen +Emerson +Paige +Gianna +Lauren +Josephine +Lilly +Natalia +Eleanor +Kylie +Paisley +Brooklynn +Delilah +Izabella +Makayla +Trinity +Hadley +Jocelyn +Khloe +Lyla +Molly +Vivian +Brielle +Caroline +Emery +Jordyn +Katelyn +Alice +Aliyah +Kennedy +Lila +Valeria +Sadie +Skylar +Kendall +Mariah +Nicole +Vanessa +Ivy +Lilliana +Rachel +Melanie +Ashlyn +Daisy +Genevieve +Keira +Luna +Presley +Amaya +Gracie +Isla +Norah +Adalyn +Charlie +Haley +Hope +Kaitlyn +Ashlynn +Aubree +Ayla +Catherine +Delaney +Jennifer +Kate +Lilah +Mary +Sara +Arabella +Elliana +Teagan +Anastasia +Camille +Eden +Fiona +Leilani +Megan +Miranda +Brynn +Jayla +Kinley +Makenna +Mckenna +Sierra +Veronica +Adelaide +Alexandria +Gabrielle +Giselle +Hayden +Jacqueline +Jordan +Juliet +London +Makenzie +Tatum +Tessa +Adeline +Adelyn +Angelina +Cecilia +Emilia +Heidi +Joanna +Mckenzie +Michelle +Willow +Amber +Athena +Cadence +Finley +Kathryn +Nayeli +Ximena +Annabella +Kaia +Kinsley +Lola +Alexia +Aurora +Eliza +Jenna +Jillian +Juliana +Kenzie +Kylee +Yaretzi +Ainsley +Alana +Alondra +Ana +Callie +Elsie +Gemma +Itzel +Josie +Kaydence +Kira +Laila +Lexi +Lyric +Madilyn +Melissa +Melody +Olive +Rebecca +Ryleigh +Shelby +Adriana +Alaina +Alicia +Alivia +Amy +Aniyah +Annika +Dakota +Elsa +Evangeline +Gabriela +Maggie +Phoebe +Valentina +Alina +Cassandra +Destiny +Eloise +Emmalyn +Iris +Jessica +Julianna +Leslie +Nadia +Rosalie +Amara +Angel +Daniela +Danielle +Elyse +Lena +Madeleine +Margaret +Marley +Nina +Noelle +Rebekah +Rowan +Adalynn +Adelynn +Alison +Cassidy +Diana +Ember +Evelynn +Holly +Juliette +Julissa +Kyla +Leila +Macie +Madelynn +Mikayla +Myla +Sienna +Skyler +Angelica +Angelique +Annalise +Anya +Aylin +Brynlee +Carly +Maci +Natasha +Rylie +Stephanie +Valerie +Adrianna +Allyson +Annie +Bristol +Charlee +Chelsea +Dahlia +Daniella +Daphne +Georgia +Jada +Kiera +Lucia +Lucille +Maddison +Mariana +Mckinley +Miley +Sabrina +Aileen +Aiyana +Alayna +Alejandra +Braelyn +Haylee +Jordynn +Kendra +Rose +Vivienne +Zoie +Addisyn +Ariel +Ariella +Beatrice +Bianca +Briana +Bridget +Brinley +Elle +Esmeralda +Fernanda +Greta +Harmony +Jayden +Jazlyn +Jazmine +Kara +Katie +Lilian +Lilyana +Matilda +Parker +Raelynn +Raina +Selah +Summer +Yareli +Aliya +Amelie +Anabelle +Arya +Averi +Caitlin +Camryn +Dylan +Elianna +Guadalupe +Harley +Helen +Julie +Kadence +Kaya +Lorelei +Macy +Mae +Malia +Marissa +Perla +Sherlyn +Talia +Addyson +Amanda +Amya +Anahi +Aubrie +Audrina +Bethany +Carolina +Everly +Fatima +Felicity +Harlow +Hayley +Jasmin +Julianne +Kelsey +Kiley +Kyra +Lana +Lia +Lilyanna +Raegan +Raelyn +Reyna +River +Sarai +Sariah +Scarlet +Simone +Sylvia +Tegan +Tenley +Vera +Winter +Abby +Anaya +Anika +Anne +April +Blakely +Carmen +Celeste +Charli +Edith +Elisabeth +Emely +Emersyn +Erin +Esther +Evie +Jane +Jayde +Jaylah +Joselyn +Juniper +Kaelyn +Karina +Katelynn +Kenia +Kyleigh +Laura +Liberty +Londyn +Nataly +Ruth +Sage +Sasha +Savanna +Siena +Abrielle +Alanna +Aliana +Allie +Amalia +Analia +Ayleen +Bailee +Braylee +Briella +Brittany +Caitlyn +Cali +Cecelia +Charley +Cheyenne +Clementine +Crystal +Danica +Danika +Elin +Elisa +Elora +Esperanza +Estrella +Etta +Gia +Helena +Jamie +Jaylynn +Jazmin +Kamila +Karen +Kaylin +Kaylynn +Lilianna +Logan +Mallory +Marie +Marlee +Miriam +Nova +Paloma +Paola +Ryan +Selena +Shiloh +Teresa +Tiffany +Viviana +Yamileth +Yesenia +Adilynn +Adley +Amina +Anabella +Arely +Ashleigh +Aubriella +Audriana +Austyn +Azalea +Baylee +Blake +Cataleya +Catalina +Celia +Christina +Courtney +Dayana +Elaina +Erica +Giuliana +Gloria +Gracelyn +Hattie +Haven +Isis +Jaelyn +Jaqueline +Jaycee +Jaylee +Jayleen +Johanna +June +Kamryn +Kayleigh +Kenya +Kiana +Kimber +Lacey +Lillianna +Liv +Lyra +Marilyn +Michaela +Myah +Naia +Penny +Regina +Shayla +Shaylee +Sidney +Sloane +Sonia +Sunny +Virginia +Ada +Alannah +Alessandra +Alissa +Alma +Amani +Amiah +Angela +Aryana +Aubrianna +Aurelia +Aven +Aviana +Braelynn +Brenna +Bryanna +Danna +Ellen +Elliot +Emelia +Gretchen +Jadyn +Jimena +Journey +Kailey +Kaitlin +Kaiya +Kassidy +Katalina +Kathleen +Kaylie +Kiara +Lindsay +Lindsey +Livia +Maeve +Magnolia +Maliyah +Mara +Margot +Marin +Mckayla +Melina +Mercedes +Miah +Mira +Nancy +Nola +Priscilla +Quincy +Reece +Samara +Sawyer +Serena +Spencer +Tabitha +Tiana +Yoselin +Abigayle +Abriella +Adele +Adrienne +Aimee +Aleah +Alianna +Ally +Amari +Analeah +Aniah +Ariah +Audrianna +Averie +Cameron +Cara +Charlize +Cynthia +Delia +Dulce +Elliott +Ellis +Emmeline +Esme +Eve +Giana +Gwendolyn +Hanna +Haylie +Jaylene +Jazlynn +Jazmyn +Jemma +Joslyn +Kailee +Kayden +Kristina +Lacie +Lainey +Lauryn +Leighton +Lorelai +Madalyn +Maia +Maliah +Melany +Natalee +Neveah +Noemi +Oakley +Pearl +Rosa +Rosemary +Saige +Saphira +Willa +Zara +Zia +Adelina +Adilyn +Aislinn +Alani +Alia +Amiyah +Angie +Annabell +Aubriana +Azul +Bentley +Blair +Breckyn +Brenda +Brisa +Brynley +Cailyn +Cambria +Carissa +Carla +Clarissa +Colette +Corinne +Ellery +Emiliana +Emmaline +Emmy +Estelle +Freya +Frida +Galilea +Gracelynn +Iliana +Isabela +Jaelynn +Janessa +Jayda +Jocelynn +Jolie +Jovie +Joy +Julieta +Justice +Kali +Karla +Lailah +Laurel +Lexie +Liana +Lisa +Litzy +Lizbeth +Luciana +Lucinda +Mabel +Madalynn +Madisyn +Maren +Maxine +Millie +Mollie +Monica +Nalani +Paulina +Phoenix +Poppy +Raleigh +Remi +Renee +Rylan +Shea +Skye +Susan +Tara +Taryn +Tatiana +Teegan +Vivianna +Yarely +Yuliana +Zaria +Zooey +Abbigail +Abigale +Aislynn +Aiyanna +Alayah +Aleena +Aniya +Annabel +Anneliese +Annelise +Ariadne +Aryanna +Asha +Ashtyn +Avani +Avianna +Brylee +Camilla +Carlie +Casey +Caydence +Charis +Charleigh +Cherish +Chevelle +Ciara +Claudia +Coraline +Dana +Delainey +Dorothy +Drew +Elayna +Eldana +Elia +Emmalee +Emmalynn +Erika +Evangelina +Geraldine +Giada +Heaven +Holland +Inara +Ireland +Izabelle +Jaiden +Janelle +Karissa +Karli +Katerina +Katrina +Keely +Kelly +Kya +Kylah +Laylah +Leticia +Lilia +Lilli +Lillyana +Lina +Lizeth +Lucie +Luisa +Lylah +Maiya +Marianna +Marlowe +Mayte +Meredith +Nathalie +Noa +Nyah +Paula +Precious +Preslee +Ramona +Raylynn +Regan +Reina +Scout +Selene +Sheyla +Sloan +Suri +Tinley +Tori +Vianney +Whitney +Yaneli +Yaritza +Yasmin +Zahra +Zariah +Ziva +Zuri +Abagail +Abygail +Acacia +Addie +Adyson +Aisha +Alanah +Ali +Alisha +Alisson +Alysha +Alyson +Amariah +Amayah +America +Anabel +Anayeli +Anela +Angeline +Annamarie +Ansley +Arabelle +Areli +Arielle +Armani +Aspyn +Avril +Aya +Ayva +Azariah +Bayleigh +Belle +Berkley +Brea +Breanna +Bria +Brighton +Bryce +Caelyn +Calla +Carina +Carlee +Carson +Chelsey +Cielo +Citlaly +Clover +Colbie +Collins +Coralee +Dalia +Damaris +Danni +Darcy +Darlene +Davina +Deborah +Denise +Diya +Eileen +Ellison +Emi +Emilee +Estella +Evelin +Finnley +Frances +Gwyneth +Hadlee +Hailee +Halle +Heather +Imani +Irene +Ivanna +Ivory +Jacey +Jaida +Janeth +Jaslyn +Jazelle +Jessa +Jolene +Kailani +Kairi +Kalea +Kallie +Kamdyn +Karma +Kaylyn +Kendyl +Kenley +Kenna +Kianna +Klara +Kora +Krista +Kynlee +Lea +Leia +Lilith +Linnea +Love +Maddie +Margaux +Mariam +Marisol +Maritza +Mariyah +Marlene +Marlo +Maryjane +Mercy +Milana +Milena +Mireya +Monroe +Moriah +Nathaly +Nia +Noelani +Nylah +Paityn +Paris +Patricia +Payten +Rain +Rayna +Rilyn +Robin +Rory +Rosie +Sanvi +Sarahi +Shyann +Silvia +Skyla +Skylee +Sonja +Stevie +Tesla +Tyler +Viola +Wendy +Wren +Yadira +Yaretzy +Yvette +Zaniyah +Olivia +Emma +Sophia +Ava +Isabella +Abigail +Mia +Emily +Avery +Evelyn +Charlotte +Amelia +Elizabeth +Harper +Grace +Ella +Lily +Hannah +Madison +Sofia +Zoe +Addison +Zoey +Lillian +Chloe +Brooklyn +Natalie +Camila +Violet +Claire +Lucy +Scarlett +Anna +Layla +Samantha +Maya +Aubrey +Savannah +Alexis +Victoria +Audrey +Riley +Ruby +Aaliyah +Stella +Allison +Aria +Cora +Kaylee +Annabelle +Eleanor +Ellie +Mila +Sadie +Hailey +Nevaeh +Serenity +Arianna +Hadley +Penelope +Sydney +Caroline +Nora +Piper +Lydia +Josephine +Mackenzie +Sophie +Autumn +Brooke +Peyton +Gabriella +Ariana +Hazel +Rylee +Alexa +Alice +Bailey +Eliana +Eva +Katherine +Ivy +Leah +Madelyn +Madeline +Genesis +Liliana +Naomi +Sarah +Alexandra +Clara +Taylor +Ashley +Molly +Reagan +Aspen +Paige +Paisley +Quinn +Lyla +Lauren +Bella +Brianna +Reese +Elena +Jocelyn +Vivian +Faith +Emery +Isabelle +Julia +Kennedy +Brielle +Morgan +Trinity +Maria +Gianna +Jade +Alyssa +Aubree +Kate +Isabel +Payton +Delilah +Lila +Makayla +Natalia +Nicole +Brooklynn +Kylie +Melanie +Genevieve +Kayla +Skylar +Kaitlyn +Norah +Adalynn +Adelyn +Mary +Mya +Emilia +Teagan +Adelaide +Aliyah +Amaya +Andrea +Arabella +Isla +Margaret +Eliza +Kimberly +Olive +Alexia +Ayla +Delaney +Elise +Izabella +Charlie +Eden +Emerson +Jasmine +Keira +Leilani +Lilly +Valeria +Willow +Ashlyn +Destiny +Jordyn +Kinsley +Luna +Yaretzi +Ainsley +Katelyn +Vanessa +Amy +Ximena +Adalyn +Adeline +Haley +Hayden +Jessica +Mariah +Ariel +Jacqueline +Laila +Lola +Presley +Rebecca +Summer +Ashlynn +Gabrielle +Iris +Juliet +Kendall +Lilliana +Megan +Rose +Cadence +Jayla +Jordan +Khloe +Lucille +Makenzie +Mckenzie +Melody +Alexandria +Josie +Kenzie +Rachel +Angelina +Brynn +Kendra +Kylee +Lexi +Makenna +Mckenna +Tatum +Alivia +Athena +Cassidy +Cecilia +Evangeline +Gracie +Hope +Jaylah +Kinley +Leila +Melissa +Raelynn +Sara +Shelby +Valentina +Aurora +Daisy +Elliana +Elsie +Gemma +Maggie +Mckinley +Parker +Adriana +Adrianna +Alaina +Alison +Allie +Aniyah +Brynlee +Camille +Fiona +Julianna +June +Kyla +Madeleine +Miranda +Eloise +Jennifer +Kathryn +Lena +Leslie +London +Alessandra +Ana +Daniela +Elaina +Everly +Finley +Gabriela +Haylee +Juliana +Lilah +Londyn +Marley +Nayeli +Ryleigh +Tessa +Charlee +Colette +Fatima +Georgia +Giselle +Sawyer +Alana +Alina +Anastasia +Annalise +Annika +Arya +Catherine +Danielle +Ember +Juliette +Julissa +Malia +Michelle +Phoebe +Scarlet +Stephanie +Alayna +Alicia +Annabella +Anya +Blake +Dahlia +Harlow +Harmony +Joanna +Juniper +Kaia +Katie +Kira +Lana +Mikayla +Raegan +Sage +Sierra +Talia +Vivienne +Addyson +Angel +Angelica +Carolina +Diana +Emersyn +Erin +Esperanza +Itzel +Jimena +Kamryn +Kyra +Lucia +Maddison +Madilyn +Mariana +Marissa +Nina +Rylan +Sienna +Sloane +Veronica +Alondra +Angela +Annie +Ariah +Averie +Cecelia +Charley +Coraline +Elle +Evelynn +Evie +Kadence +Kara +Nataly +Ruth +Valerie +Alyson +April +Arielle +Aurelia +Bristol +Cheyenne +Christina +Fernanda +Francesca +Guadalupe +Hanna +Heidi +Jada +Kaydence +Kiara +Luciana +Madelynn +Marlee +Noelle +River +Rosalie +Rylie +Selena +Tenley +Adelina +Brinley +Catalina +Daleyza +Elsa +Emmalyn +Eve +Felicity +Gloria +Gracelyn +Harley +Jaelyn +Jane +Jillian +Joy +Kimber +Lia +Macy +Melany +Meredith +Miriam +Myla +Sylvia +Ada +Alejandra +Aliana +Amanda +Anahi +Blakely +Briana +Briella +Caitlyn +Chelsea +Dakota +Danna +Daphne +Dylan +Elin +Estrella +Gwendolyn +Holly +Kali +Kelsey +Laura +Lexie +Lillianna +Nadia +Nova +Winter +Wren +Adelynn +Aleah +Anabella +Anabelle +Annabel +Ariella +Aylin +Bridget +Camryn +Carmen +Celeste +Daniella +Dulce +Esther +Etta +Gia +Greta +Haven +Jayda +Jazmine +Journey +Kassidy +Kaya +Kora +Logan +Matilda +Melina +Michaela +Paris +Regan +Rowan +Selah +Skyler +Aisha +Alanna +Allyson +Amelie +Amia +Aryanna +Caitlin +Camilla +Charli +Corinne +Courtney +Elianna +Freya +Helena +Isis +Jayden +Jazlyn +Jenna +Joselyn +Karen +Kiera +Leia +Leighton +Leticia +Maci +Mae +Maeve +Magnolia +Mallory +Mira +Paloma +Raven +Rebekah +Rilynn +Ryan +Samara +Sarai +Skyla +Tegan +Tess +Vera +Zoie +Abby +Amber +Anika +Aniya +Anneliese +Aubrie +Aven +Aviana +Baylee +Beatrice +Bianca +Cecily +Cosette +Dayana +Gracelynn +Halle +Helen +Jamie +Janessa +Jayleen +Jaylynn +Jemma +Joslyn +Julie +Kailey +Karla +Kenley +Lacey +Laurel +Liberty +Lillyanna +Lilyana +Mabel +Madilynn +Marie +Myah +Nola +Pearl +Perla +Poppy +Raelyn +Sasha +Savanna +Scarlette +Serena +Sonya +Story +Viviana +Yareli +Yaretzy +Abbey +Addisyn +Alaya +Alma +Amiyah +Angelique +Audra +Azalea +Azul +Callie +Campbell +Carly +Cataleya +Eileen +Elisa +Emmalee +Giana +Hallie +Hayley +Henley +Ingrid +Jasmin +Jazlynn +Jessie +Kamila +Kayleigh +Kaylie +Kenia +Laylah +Leyla +Lilianna +Lylah +Makena +Marilyn +Marin +Martha +Nathaly +Nylah +Priscilla +Rayna +Rosemary +Roxanne +Sariah +Skye +Sloan +Temperance +Thea +Violette +Willa +Abril +Adilynn +Alena +Alia +Alyvia +Amari +America +Angie +Annelise +Araceli +Aubriana +Aubrianna +Beatrix +Braelyn +Bree +Brenna +Bria +Britney +Bryn +Carolyn +Charlize +Ciara +Claira +Clare +Cynthia +Dalilah +Danika +Darby +Edith +Ellianna +Elliot +Elliott +Ellis +Emilie +Emmalynn +Esmeralda +Everleigh +Frances +Hadassah +Hayleigh +Illiana +Ireland +Izzabella +Jolene +Justice +Kaiya +Kaylynn +Lauryn +Lilith +Lilyanna +Lindsey +Livia +Lorelai +Louisa +Madalyn +Mariam +Milana +Millie +Natasha +Paola +Raquel +Regina +Remy +Reyna +Rory +Saige +Sarahi +Sherlyn +Siena +Vienna +Vivien +Whitney +Yamileth +Yaritza +Zendaya +Zia +Abrianna +Adalie +Adalina +Aileen +Aimee +Ali +Alisa +Ally +Amira +Amirah +Anaya +Anayah +Anne +Arely +Ashtyn +Aubriella +Aubrielle +Audrina +Avalyn +Bailee +Bethany +Brittany +Brylee +Cameron +Cassandra +Clarissa +Clover +Crystal +Dallas +Davina +Diya +Elisabeth +Ellen +Erika +Farrah +Giada +Grecia +Gwyneth +Hadleigh +Hattie +Heaven +Holland +Hunter +Imani +Isabela +Ivory +Izabelle +Janelle +Johanna +Jordynn +Kailyn +Katelynn +Kathleen +Kayden +Kaylin +Kelly +Kenya +Kiley +Kristina +Krystal +Laney +Leena +Leona +Lilia +Lilian +Lillyana +Lina +Lizeth +Lluvia +Lorelei +Lucie +Lyric +Maia +Maisie +Maliyah +Maren +Margot +Maryjane +Meghan +Miah +Mireya +Oakley +Pyper +Reina +Renata +Roslyn +Sabrina +Scout +Sylvie +Tori +Abbigail +Abrielle +Akira +Aleena +Aliza +Althea +Amara +Analia +Angeline +Annaliese +Areli +Avah +Ayanna +Ayleen +Barbara +Belen +Belle +Briley +Brynley +Caelyn +Cali +Cambria +Camdyn +Chevelle +Christine +Danica +Denise +Desiree +Dorothy +Eiza +Elyse +Emerie +Emmaline +Emmeline +Emmerson +Evalyn +Evangelina +Finnley +Frankie +Giuliana +Gwenyth +Hana +Isabell +Jaelynn +Jaiden +Janney +Jaycee +Jaylee +Jaylene +Jazmin +Kai +Karina +Karsyn +Katalina +Kensington +Lailah +Laine +Lea +Leanna +Lela +Lennon +Liana +Lisa +Lizbeth +Madisyn +Madyson +Maisy +Maliah +Maryam +Mika +Milagros +Milena +Miley +Milla +Miracle +Nalani +Nathalie +Nellie +Neve +Neveah +Noa +Noemi +Nyla +Opal +Ophelia +Priya +Raina +Renee +Shiloh +Simone +Sunny +Tesla +Thalia +Theresa +Vida +Vivianna +Wendy +Xochitl +Yara +Yesenia +Zaida +Zaniyah +Zelda +Zuri +Abagail +Abigayle +Abygail +Adamari +Adele +Adella +Adrienne +Aeris +Ailyn +Aiyanna +Alayah +Alexandrea +Alianna +Alisson +Alora +Amalia +Amaris +Amina +Amya +Anabel +Analise +Analiyah +Annabell +Annabeth +Annaleigh +Anniston +Arabelle +Aracely +Ariadne +Arleth +Aryana +Avani +Avianna +Bergen +Billie +Brisa +Brookelyn +Brookelynn +Brooklynne +Brynna +Carmela +Carsyn +Charis +Claudia +Darcy +Dayanna +Deborah +Delia +Devyn +Dominique +Ellena +Ellison +Emberly +Emely +Emmie +Emory +Erica +Esme +Estella +Estelle +Ever +Everlee +Fatimah +Geraldine +Hartley +Ila +Iliana +Imogen +Irene +Isadora +Jacquelyn +Jaida +Janely +Jenny +Jessa +Jocelynn +Josselyn +Kacie +Kaelyn +Kailynn +Kaitlin +Kalea +Kalina +Kaliyah +Karissa +Kataleya +Katerina +Katrina +Katya +Kaycee +Kenna +Kensley +Khaleesi +Kianna +Kinlee +Kinzley +Kristen +Kyleigh +Kyndal +Lainey +Leela +Lili +Liv +Lyra +Macie +Maite +Malaya +Maleah +Marisol +Marlowe +Maylee +Mayrin +Mckayla +Meadow +Meela +Mercedes +Mikaela +Mina +Mollie +Monroe +Mylah +Myra +Nancy +Nariah +Natalee +Nathalia +Neela +Paityn +Pepper +Phoenix +Ramona +Ravyn +Rebeca +Remington +Rhea +Rosa +Rubi +Ryann +Rylynn +Salma +Sapphire +Selene +Shea +Sky +Sofie +Sonia +Taliyah +Tara +Taryn +Vada +Virginia +Wynter +Yamilet +Yasmin +Yoselin +Yuliana +Zahra +Zara +Zariah +Zaya +Zayla +Olivia +Emma +Sophia +Isabella +Evelyn +Avery +Mia +Charlotte +Ava +Emily +Harper +Abigail +Sofia +Elizabeth +Grace +Amelia +Lily +Ella +Madison +Addison +Lillian +Brooklyn +Zoey +Aria +Natalie +Chloe +Scarlett +Victoria +Hannah +Claire +Sadie +Zoe +Anna +Eleanor +Stella +Aubrey +Audrey +Allison +Camila +Penelope +Ellie +Piper +Layla +Ruby +Lucy +Alexis +Annabelle +Samantha +Violet +Hazel +Riley +Gabriella +Nora +Cora +Mila +Alexa +Aspen +Peyton +Savannah +Eliana +Quinn +Ariana +Arianna +Eva +Lydia +Aaliyah +Caroline +Madeline +Alexandra +Kylie +Madelyn +Naomi +Reagan +Isabelle +Genesis +Leah +Paisley +Maya +Autumn +Kennedy +Serenity +Trinity +Ximena +Liliana +Hailey +Vivian +Clara +Daleyza +Sophie +Ivy +Willow +Bailey +Sydney +Adalynn +Josephine +Nevaeh +Hadley +Taylor +Isabel +Katherine +Mackenzie +Brooke +Emery +Gianna +Paige +Everly +Faith +Isla +Kimberly +Maria +Olive +Payton +Alice +Bella +Julia +Molly +Brianna +Izabella +Morgan +Alyssa +Elena +Rylee +Ashley +Athena +Lauren +Luna +Sarah +Lyla +Brooklynn +Delilah +Kaitlyn +Skylar +Arya +Emerson +Gracie +Kayla +Kaylee +Lila +Norah +Andrea +Arabella +Eden +Elise +Mya +Adeline +Adelyn +Finley +Jocelyn +Melanie +Aubree +Jasmine +Lilly +London +Brielle +Kinley +Fiona +Lena +Mary +Reese +Valeria +Aliyah +Anastasia +Cecilia +Aurora +Emilia +Margaret +Melody +Nicole +Genevieve +Hayden +Kinsley +Adelaide +Charlie +Iris +Adalyn +Jade +Noelle +Vanessa +Vivienne +Ada +Laila +Presley +Teagan +Alana +Keira +Lola +Makayla +Natalia +Sloane +Haley +Jordyn +June +Mckenna +Brynlee +Lexi +Rebecca +Sara +Amaya +Daisy +Eliza +Eloise +Esther +Gemma +Juliana +Madeleine +Amy +Ariel +Cassidy +Catherine +Elsa +Jacqueline +Leilani +Mariah +Megan +Nova +Tessa +Adriana +Alina +Angela +Angelina +Delaney +Evangeline +Gabrielle +Josie +Julianna +Katelyn +Kendall +Kendra +Leila +Lilliana +Lucille +Rachel +Sienna +Adelynn +Callie +Elsie +Kenzie +Mckenzie +Shelby +Tatum +Ainsley +Alayna +Ayla +Aylin +Colette +Elliana +Georgia +Hope +Juniper +Kate +Khloe +Lilah +Lucia +Rose +Sawyer +Valentina +Alexandria +Aniyah +Ashlyn +Cadence +Jimena +Maggie +Melissa +Sierra +Yaretzi +Alexia +Cataleya +Danielle +Destiny +Elaina +Elle +Ember +Eve +Fatima +Jennifer +Leslie +Mckinley +Parker +Raegan +Adelina +Alaina +Amber +Annabella +Brynn +Daniela +Jane +Jillian +Kiara +Maddison +Makenzie +Rosalie +Ashlynn +Baylee +Daniella +Esmeralda +Heidi +Jaylah +Kira +Kyla +Macy +Madilyn +Marley +Miriam +Ruth +Ryleigh +Sage +Anahi +Elliot +Harley +Haylee +Jordan +Juliet +Lorelei +Makenna +Miranda +Nina +Summer +Alivia +Annika +Cali +Camille +Cheyenne +Emmalyn +Evelynn +Fernanda +Gabriela +Harmony +Haven +Jessica +Juliette +Kaia +Macie +Nayeli +Phoebe +River +Selah +Allie +Alondra +Annie +Azalea +Beatrice +Dakota +Freya +Greta +Holly +Isis +Jenna +Kaydence +Lexie +Mariana +Michelle +Nadia +Rebekah +Rowan +Talia +Vera +Ana +Bianca +Briana +Camilla +Danika +Harlow +Itzel +Katie +Liana +Lillie +Maci +Madilynn +Skyler +Winter +Addisyn +Alicia +Alison +Amari +Averie +Brinley +Camryn +Catalina +Collins +Dahlia +Elisabeth +Emersyn +Gracelyn +Gwendolyn +Helen +Jaylene +Jazmine +Kathryn +Kylee +Laura +Lia +Lilith +Mabel +Madelynn +Paislee +Ryan +Skye +Sylvia +Thalia +Willa +Adrianna +Alejandra +Amara +Anya +Aurelia +Blake +Blakely +Bria +Briella +Brylee +Charley +Diana +Dylan +Ellen +Emory +Felicity +Gia +Helena +Henley +Jaelynn +Jayleen +Jaylynn +Julissa +Kadence +Kali +Kara +Kyra +Leighton +Lylah +Myla +Raelynn +Stephanie +Valerie +Addyson +Aliana +Alyson +Amanda +Angelique +Annabel +April +Ariella +Aviana +Cecelia +Celeste +Danica +Daphne +Esperanza +Evie +Jada +Janessa +Jayden +Jazlyn +Johanna +Kimber +Sabrina +Selena +Shiloh +Viviana +Yareli +Abby +Allyson +Alma +Amiyah +Angel +Ariah +Aubriella +Audrina +Ayleen +Belle +Cambria +Carolina +Chelsea +Dana +Elliott +Elyse +Emilee +Frida +Giselle +Hanna +Heaven +Jayda +Jayla +Jazmin +Jemma +Joanna +Journey +Joy +Lana +Liberty +Lilyana +Lindsay +Macey +Mae +Maeve +Maia +Malia +Mara +Michaela +Mikayla +Natalee +Phoenix +Rylie +Sarai +Siena +Taryn +Addilyn +Aleena +Alessandra +Alianna +Amiah +Annaliese +Annalise +Aranza +Aubrie +Aven +Bethany +Bristol +Carly +Cassandra +Charlee +Charleigh +Charli +Ciara +Edith +Esme +Estrella +Gracelynn +Jamie +Joslyn +Julie +Karen +Kassidy +Kaylin +Kiera +Lacey +Laurel +Laylah +Lilia +Lilianna +Lindsey +Livia +Londyn +Maleah +Margot +Marie +Matilda +Millie +Mireya +Monica +Myra +Oakley +Remi +Scarlet +Sloan +Temperance +Zariah +Aliyana +Amani +Amelie +Anabel +Anabelle +Anaya +Angelica +Anne +Arely +Bridget +Brittany +Bryanna +Bryn +Caitlyn +Carmen +Christina +Danna +Elin +Emely +Emmaline +Emmy +Erin +Estelle +Finnley +Frankie +Hailee +Hallie +Janelle +Jessa +Kailyn +Kamila +Kelly +Kenya +Lainey +Lyric +Magnolia +Maisy +Maren +Marin +Melany +Mira +Patricia +Pearl +Poppy +Remington +Renata +Tatiana +Veronica +Wren +Zoie +Abril +Adalee +Adamaris +Adela +Adilynn +Alanna +Aleah +Amya +Annabeth +Anneliese +Ariadne +Aspyn +Aubriana +Braelynn +Brisa +Celia +Claira +Clare +Corinne +Desiree +Dixie +Dulce +Eileen +Elianna +Elisa +Ellery +Elliette +Geneva +Giuliana +Guadalupe +Halle +Hayley +Iliana +Jaycee +Jazlynn +Jolene +Kairi +Kamryn +Karina +Katelynn +Kaylie +Kaylynn +Kenna +Khaleesi +Kinzley +Kora +Kyleigh +Linnea +Liv +Logan +Madalyn +Marilyn +Mckayla +Miah +Monroe +Montserrat +Nataly +Natasha +Nia +Ophelia +Paityn +Paloma +Paola +Paulina +Persephone +Priscilla +Rilynn +Sariah +Savanna +Skyla +Tabitha +Teegan +Tenley +Thea +Veda +Vivianna +Zara +Addie +Adilyn +Adley +Adrienne +Aileen +Alena +Amina +Analia +Arantza +Arianny +Ariya +Aryana +Aryanna +Aubrielle +Ayva +Beatrix +Blythe +Braelyn +Braylee +Breanna +Brenna +Briar +Brynley +Calla +Cameron +Carter +Coraline +Cristal +Dalary +Dallas +Devyn +Ellis +Elodie +Elora +Emelia +Emmalynn +Etta +Evalynn +Francesca +Gloria +Gracyn +Hattie +Ireland +Isabela +Izabelle +Jacquelyn +Jaelyn +Kaiya +Kallie +Karla +Kayleigh +Kensington +Kristina +Kynlee +Lailah +Leona +Lilyanna +Louisa +Mariam +Marina +Maryjane +Mavis +Mercedes +Milana +Mina +Miya +Moriah +Noa +Noel +Noemi +Nyla +Penny +Regina +Rhea +Romina +Rosa +Sailor +Samara +Sasha +Serena +Shea +Simone +Sonja +Teresa +Tesla +Tiffany +Tinsley +Viola +Violette +Wilhelmina +Yamileth +Yesenia +Abbigail +Abrianna +Abrielle +Adele +Adilene +Ailyn +Aisha +Aislynn +Aiyana +Alaya +Alayah +Aleyda +America +Amiya +Anabella +Anaiah +Analeah +Analeigh +Analicia +Angie +Anika +Araya +Audriana +Avalon +Averi +Bailee +Belen +Berkley +Breckyn +Caitlin +Campbell +Cara +Carolyn +Carson +Chevelle +Christine +Clarissa +Courtney +Crystal +Daleysa +Dayana +Dayanara +Denise +Donna +Elaine +Eldana +Elissa +Emmalee +Emmeline +Emmery +Emmie +Ester +Frances +Hadassah +Hunter +Illiana +Imani +Indigo +Isadora +Itzayana +Jasmin +Jessie +Jocelynn +Jolie +Justice +Kailey +Kailynn +Kaitlin +Kalani +Karma +Katalina +Kathleen +Kaycee +Kenadee +Kenley +Kiya +Kori +Lea +Leanna +Leigha +Leilany +Lennon +Lenore +Lesly +Leyla +Lillianna +Lillyana +Lillyann +Lizbeth +Luella +Madisyn +Maisie +Margo +Marisol +Marlee +Martha +Melina +Mercy +Meredith +Mikaela +Milania +Milena +Miracle +Mollie +Mylah +Nathalie +Nellie +Neriah +Noelani +Nola +Nylah +Opal +Pamela +Perla +Raquel +Raven +Raylee +Rayleigh +Reyna +Rihanna +Rory +Rosalee +Rosalina +Roxanna +Rylan +Silvia +Sofie +Stevie +Susan +Sylvie +Theresa +Tinley +Unique +Virginia +Vivien +Whitney +Yarely +Yaritza +Yasmin +Yoselin +Zaniyah +Zayla +Zuri +Aaralyn +Abbie +Abigale +Abriella +Adah +Adalina +Aeris +Ahlam +Akira +Alanah +Alex +Alia +Ally +Alyanna +Alyvia +Amberly +Amirah +Andi +Angeline +Ann +Arielle +Ariyah +Asha +Aubrianna +Avah +Avianna +Azaria +Azariah +Bennett +Blair +Brenda +Brittney +Brynna +Cattleya +Cecily +Chanel +Charity +Clementine +Cleo +Colbie +Cordelia +Dalilah +Davina +Drew +Edie +Eisley +Elanor +Ellianna +Emerald +Emerie +Emi +Emilie +Emmarie +Estella +Evalyn +Everleigh +Ezra +Faye +Galilea +Giovanna +Hana +Heather +Holland +Hollis +Imogen +Ivanna +Izzabella +Jaida +Janae +Janet +Jaqueline +Jazmyn +Joelle +Josette +Joslynn +Julianne +Kacey +Kaelyn +Kaliyah +Karmen +Karsyn +Katrina +Kayden +Kayleen +Kelsey +Kenia +Keyla +Kiana +Kourtney +Leela +Leena +Lenora +Leticia +Lillyanna +Lilyann +Lincoln +Linda +Litzy +Lorelai +Lorena +Louise +Love +Luciana +Lucie +Luz +Madalynn +Madden +Madyson +Magdalena +Makena +Mallory +Margarita +Marissa +Maritza +Marjorie +Marlene +Maryn +May +Meadow +Milagros +Milah +Myka +Nancy +Nella +Niyah +Palmer +Patience +Peighton +Pepper +Rachael +Raelyn +Raina +Raya +Raylynn +Reece +Reina +Remy +Riya +Rylynn +Saige +Salma +Samira +Scarlette +Seraphina +Shae +Shay +Tahlia +Tania +Tara +Tegan +Tennyson +Tia +Wendy +Yaneli +Yuliana +Zelda +Zella +John +James +Charles +William +Robert +George +Frank +Joe +Joseph +Fred +Edward +Richard +Jack +Albert +Paul +Harold +Howard +Raymond +Carl +Henry +Thomas +Walter +Clarence +Jose +Daniel +David +Harry +Lloyd +Louis +Ralph +Anthony +Arthur +Donald +Ray +Francis +Herbert +Kenneth +Leroy +Pete +Virgil +Claude +Earl +Edwin +Ernest +Eugene +Glenn +Herman +Juan +Lawrence +Leonard +Manuel +Milton +Tony +Alfred +Delbert +Martin +Marvin +Roy +Russell +Sam +Stanley +Theodore +Tom +Willie +Emilio +Floyd +Gerald +Glen +Hugh +Leo +Maurice +Melvin +Norman +Victor +Wilbur +John +Robert +William +Charles +James +George +Frank +Joseph +Joe +Edward +Harold +Carl +Thomas +Jack +Ralph +Richard +Harry +Fred +Henry +Arthur +Paul +Albert +Donald +Walter +Leonard +Raymond +Anthony +Clarence +Roy +David +Jose +Louis +Alfred +Floyd +Howard +Ernest +Leo +Sam +Earl +Kenneth +Manuel +Theodore +Clyde +Edgar +Gerald +Lawrence +Lloyd +Norman +Victor +Adolph +Benjamin +Eugene +Lee +Mike +Philip +Alvin +Ben +Chester +Clifford +Forrest +Glen +Herbert +Jess +Leroy +Martin +Orville +Oscar +Ray +Russell +Samuel +Elmer +Felix +Francis +Frederick +Glenn +Juan +Leslie +Lester +Lewis +Melvin +Milton +Tom +Wilbur +John +William +James +George +Robert +Charles +Frank +Harold +Joseph +Harry +Edward +Albert +Thomas +Arthur +Henry +Joe +Richard +Fred +Paul +Walter +Donald +Louis +Ralph +Carl +Clarence +Eugene +Kenneth +Roy +Howard +Jack +Raymond +Lawrence +Elmer +David +Ernest +Leonard +Tony +Victor +Francis +Sam +Samuel +Theodore +Earl +Gerald +Herbert +Leo +Lester +Philip +Alfred +Andrew +Ben +Floyd +Clifford +Edwin +Frederick +Martin +Melvin +Ray +Bruce +Herman +Jose +Lee +Lewis +Daniel +Everett +Glenn +Gordon +Jesse +Lloyd +Mike +Vincent +Anthony +Cecil +Dale +Leslie +Pete +Russell +Stanley +Arnold +Clyde +Edgar +Glen +Ivan +Peter +Sidney +Benjamin +Claude +Don +Eddie +Jacob +Jay +Marvin +Maurice +Michael +Norman +Vernon +Willard +Woodrow +Alvin +Clinton +Delbert +Gilbert +Homer +Ira +Jake +Jerry +Leroy +Merle +Oliver +Orville +Roger +Warren +Wilbur +Allan +Allen +Archie +Bert +Calvin +Charlie +Conrad +Curtis +Felix +Juan +Karl +Max +Milton +Morris +Nicholas +Ronald +Rudolph +Tom +Wayne +John +William +Robert +George +Charles +James +Joseph +Frank +Edward +Harold +Henry +Paul +Donald +Harry +Joe +Richard +Albert +Jack +Carl +Ralph +Arthur +Roy +Fred +Raymond +Walter +Earl +Kenneth +Ernest +Howard +Thomas +Clarence +Eugene +Lawrence +David +Edwin +Louis +Leonard +Elmer +Andrew +Francis +Sam +Everett +Glenn +Victor +Alfred +Daniel +Floyd +Jose +Anthony +Frederick +Gerald +Gordon +Herbert +Lester +Lee +Lloyd +Pete +Samuel +Stanley +Theodore +Woodrow +Leslie +Melvin +Norman +Wilbur +Clifford +Glen +Leo +Peter +Rudolph +Russell +Alex +Bernard +Homer +Milton +Philip +Tony +Willard +Jacob +Martin +Orville +Vernon +Alvin +Benjamin +Chester +Dan +Dave +Lewis +Michael +Vincent +Cecil +Herman +Marvin +Mike +Adolph +Alexander +Allen +Arnold +Bill +Harvey +Jake +Jay +Leon +Leroy +Manuel +Ray +Ronald +Steve +Tom +Virgil +Wayne +Gene +Guy +Leland +Merle +Oliver +Perry +Reuben +Wallace +Antonio +Ben +Bennie +Clayton +Dean +Dwight +Edgar +Edmund +Emil +Felix +Gilbert +Horace +Ivan +Jess +Lowell +Otto +Roger +Sidney +Stephen +Sylvester +Wesley +Willis +Wilson +John +William +Robert +George +Charles +James +Frank +Joseph +Edward +Joe +Harold +Paul +Arthur +Henry +Harry +Donald +Richard +Fred +Kenneth +Albert +Thomas +Walter +Raymond +Howard +Carl +Ralph +Louis +Eugene +Jack +Roy +Earl +David +Lawrence +Alfred +Clarence +Leonard +Leo +Russell +Floyd +Francis +Lloyd +Gerald +Clyde +Elmer +Ray +Ernest +Lester +Manuel +Andrew +Chester +Edwin +Pete +Sam +Samuel +Wayne +Anthony +Frederick +Jose +Lee +Theodore +Vernon +Daniel +Tony +Norman +Alvin +Jesse +Virgil +Alex +Cecil +Jacob +Martin +Melvin +Peter +Glenn +Gordon +Herbert +Marvin +Philip +Stanley +Victor +Benjamin +Edgar +Leroy +Mike +Phillip +Tom +Allen +Claude +Everett +Glen +Herman +Homer +Jake +Rudolph +Vincent +Ben +Bernard +Bill +Gene +Gilbert +Juan +Max +Milton +Oscar +Sidney +Wilbur +Bert +Clifford +Lyle +Marion +Morris +Stephen +Willard +Harvey +Jesus +Leslie +Lewis +Louie +Reuben +Warren +Alfonso +Bennie +Dale +Franklin +Hugh +Larry +Leland +Mark +Maurice +Merle +Michael +Orville +Ronald +Steve +Adam +Archie +August +Charley +Delbert +Felix +Ivan +Jerry +Karl +Laurence +Leon +Roland +Ted +Wallace +Alexander +Angel +Charlie +Dan +Don +Forrest +Fredrick +Harlan +Ira +Julius +Lowell +Loyd +Nicholas +Nick +Ross +Willie +John +William +Robert +George +James +Charles +Frank +Joseph +Harold +Albert +Edward +Richard +Donald +Fred +Joe +Raymond +Harry +Jack +Paul +Ralph +Thomas +Henry +Carl +Walter +Arthur +Kenneth +Clarence +Howard +David +Ernest +Elmer +Louis +Roy +Earl +Alfred +Lloyd +Leonard +Sam +Eugene +Lawrence +Victor +Herbert +Wayne +Francis +Ray +Tony +Floyd +Philip +Stanley +Gerald +Leo +Lewis +Mike +Norman +Melvin +Samuel +Clyde +Jose +Lee +Clifford +Daniel +Everett +Frederick +Lester +Andrew +Willard +Edwin +Glen +Pete +Russell +Vernon +Alex +Bernard +Claude +Herman +Ben +Chester +Wilbur +Anthony +Benjamin +Glenn +Leroy +Marvin +Milton +Theodore +Allen +Dale +Gordon +Jacob +Warren +Antonio +Manuel +Maurice +Michael +Gilbert +Hubert +Jake +Peter +Cecil +Harvey +Martin +Oscar +Reuben +Wesley +Adolph +Arnold +Homer +Jess +Louie +Max +Merle +Orville +Tom +Allan +Bill +Bruce +Delbert +Don +Hugh +Jim +Nick +Virgil +Wallace +Alvin +Charlie +Dave +Dean +Franklin +Jesse +Leon +Sidney +Steve +Willis +Woodrow +Bert +Gus +Guy +Ivan +Keith +Leslie +Oliver +Phillip +Adam +Alexander +August +Conrad +Curtis +Edgar +Ellis +Emmett +Felix +Gene +Karl +Laurence +Lynn +Marcus +Neil +Nicholas +Rex +Roger +Roland +Rudolph +Bennie +Byron +Carlos +Dominic +Dwight +Harley +Irvin +Irving +Jesus +Juan +Julius +Larry +Lowell +Marion +Mark +Morris +Otto +Perry +Rodney +Ronald +Solomon +Stephen +Vern +Alfonso +Alva +Angelo +Anton +Archie +Clinton +Dan +Delmer +Elton +Emil +Forrest +Fredrick +Jerry +Jessie +Johnny +Lyle +Malcolm +Marshall +Merlin +Myron +Otis +Wilson +John +Robert +William +James +Charles +George +Frank +Joseph +Edward +Harold +Albert +Raymond +Richard +Joe +Paul +Walter +Jack +Thomas +Donald +Harry +Carl +Ralph +Henry +Fred +Kenneth +Arthur +Louis +Ernest +Clarence +David +Earl +Lawrence +Howard +Eugene +Roy +Elmer +Lloyd +Jose +Herbert +Leonard +Alfred +Francis +Tony +Manuel +Edwin +Clifford +Daniel +Everett +Herman +Leo +Norman +Victor +Clyde +Lee +Samuel +Floyd +Lewis +Martin +Melvin +Wayne +Chester +Glen +Glenn +Leroy +Russell +Sam +Theodore +Vernon +Ben +Bernard +Cecil +Dale +Frederick +Pete +Stanley +Lester +Nick +Ray +Alvin +Andrew +Gilbert +Mike +Tom +Vincent +Dan +Gordon +Philip +Allen +Harvey +Max +Benjamin +Gene +Gerald +Homer +Merle +Michael +Orville +Warren +Willard +Claude +Jacob +Wesley +Marion +Marvin +Maurice +Oliver +Reuben +Alex +Anthony +Delbert +Eddie +Horace +Wilbur +Don +Guy +Ivan +Patrick +Ronald +Hugh +Phillip +Roger +Arnold +August +Bert +Dwight +Felix +Jake +Jay +Jerry +Jesse +Oscar +Sidney +Virgil +Wallace +Willis +Adam +Alexander +Charlie +Dave +Emil +Karl +Leon +Milton +Peter +Willie +Alfonso +Billy +Jim +Juan +Keith +Leslie +Lowell +Myron +Nicholas +Rudolph +Aaron +Bill +Byron +Dean +Harley +Irving +Julian +Mark +Otto +Steve +Adolph +Antonio +Bob +Burton +Charley +Clayton +Clinton +Conrad +Curtis +Delmar +Edgar +Edmund +Elbert +Eldon +Ellis +Ervin +Hubert +Irvin +Leland +Mario +Marshall +Pedro +Roland +Stephen +Wilson +Abel +Amadeo +Bennie +Bruce +Carrol +Dick +Duane +Franklin +Grover +Jess +Johnny +Julius +Lyle +Morris +Nathan +Neil +Orval +Rodney +Ruben +Vern +Wilfred +Woodrow +John +Robert +William +James +George +Charles +Frank +Joseph +Edward +Jack +Harold +Donald +Albert +Harry +Joe +Raymond +Thomas +Richard +Walter +Fred +Henry +Arthur +Kenneth +Paul +Ralph +Carl +Howard +David +Clarence +Louis +Roy +Earl +Ernest +Lawrence +Elmer +Leonard +Edwin +Eugene +Ray +Lloyd +Floyd +Russell +Sam +Alfred +Francis +Glen +Samuel +Glenn +Victor +Wayne +Frederick +Daniel +Herman +Lee +Marvin +Melvin +Clyde +Herbert +Jose +Gerald +Anthony +Dale +Leroy +Mike +Philip +Clifford +Leo +Maurice +Wilbur +Cecil +Vernon +Chester +Lewis +Pete +Tony +Alvin +Ben +Theodore +Delbert +Manuel +Max +Orville +Oscar +Warren +Alex +Bernard +Marion +Roger +Willard +Claude +Homer +Martin +Norman +Stanley +Andrew +Bill +Everett +Harvey +Peter +Phillip +Benjamin +Gilbert +Leslie +Reuben +Rudolph +Tom +Adolph +Hubert +Lester +Merle +Michael +Virgil +Jim +Lowell +Nick +Ross +Alexander +Archie +August +Dean +Edgar +Gordon +Jesse +Salvador +Wallace +Dominic +Franklin +Hugh +Irvin +Ivan +Karl +Loren +Vincent +Calvin +Charlie +Don +Eddie +Guy +Sidney +Steve +Wesley +Adam +Bert +Billy +Byron +Dan +Felix +Gene +Horace +Jacob +Juan +Keith +Lyle +Milton +Rex +Allen +Bob +Bruce +Charley +Ed +Forrest +Grant +Jay +Leon +Oliver +Ted +Willie +Willis +Abel +Angelo +Curtis +Dick +Eldon +Jake +Jess +Luther +Mark +Wilfred +Aaron +Alan +Bennie +Clark +Earnest +Edmund +Elbert +Harley +Irving +Jasper +Jerry +Jimmie +Julian +Louie +Malcolm +Morris +Neil +Patrick +Perry +Ramon +Roland +Ronald +Ward +Woodrow +Alonzo +Alva +Antonio +Arnold +Boyd +Burton +Clement +Clinton +Conrad +Dallas +Dave +Douglas +Edmond +Ira +Irwin +Jesus +Larry +Laurence +Loyal +Lynn +Marshall +Maynard +Orval +Tommy +Vern +Wilbert +John +Robert +William +Charles +James +George +Frank +Harold +Richard +Joe +Joseph +Jack +Albert +Donald +Edward +Harry +Raymond +Ralph +Paul +Fred +Walter +Henry +Arthur +Roy +Earl +Kenneth +Thomas +Louis +Carl +Clarence +Ernest +Howard +David +Leonard +Lloyd +Victor +Eugene +Lawrence +Leo +Ray +Elmer +Floyd +Clyde +Francis +Herbert +Vernon +Samuel +Alfred +Daniel +Lee +Clifford +Manuel +Melvin +Frederick +Gerald +Glenn +Leroy +Lester +Pete +Sam +Tony +Dale +Wayne +Philip +Chester +Russell +Tom +Edwin +Glen +Herman +Stanley +Everett +Gordon +Marvin +Norman +Willard +Alvin +Alex +Anthony +Andrew +Jesse +Lewis +Mike +Cecil +Claude +Jose +Oscar +Allen +Benjamin +Harvey +Leslie +Milton +Wilbur +Ben +Don +Felix +Guy +Bernard +Bob +Curtis +Edgar +Peter +Roger +Theodore +Virgil +Warren +Forrest +Gilbert +Ruben +Bruce +Dan +Gene +Jesus +Leon +Lyle +Phillip +Reuben +Ronald +Vincent +Antonio +Carroll +Clinton +Douglas +Homer +Hugh +Jake +Keith +Maurice +Woodrow +Dave +Franklin +Harley +Ivan +Jacob +Jim +Marion +Michael +Nick +Steve +Wilson +Arnold +Bert +Calvin +Hubert +Lowell +Merle +Orville +Rudolph +Ted +Alfonso +Archie +Bill +Leland +Martin +Max +Myron +Ross +Wesley +Willis +Delbert +Delmar +Elvin +Horace +Jay +Jerry +Jimmie +Karl +Pedro +Sidney +Wilfred +Adam +August +Bennie +Billy +Byron +Carlos +Eddie +Jess +Juan +Louie +Oliver +Rex +Roland +Wallace +Abel +Adolph +Alexander +Burton +Chris +Dean +Eldon +Emanuel +Emmett +Ervin +Grant +Harlan +Ira +Irvin +Irwin +Isadore +Jean +Julian +Junior +Loren +Mark +Marshall +Neil +Perry +Salvador +Alva +Angelo +Augustine +Clark +Dallas +Dick +Dudley +Ed +Elbert +Elwood +Forest +Fredrick +Isaac +Jerome +Laurence +Loyd +Morris +Owen +Patrick +Roscoe +Stephen +Toby +Vern +Willie +John +Robert +William +James +George +Charles +Frank +Edward +Harold +Richard +Joseph +Donald +Joe +Jack +Harry +Raymond +Kenneth +Albert +Walter +Thomas +Arthur +Carl +Paul +Henry +Ralph +Fred +Roy +David +Earl +Ernest +Eugene +Howard +Clarence +Elmer +Louis +Leonard +Tony +Floyd +Herbert +Lawrence +Leo +Samuel +Jose +Stanley +Lloyd +Victor +Chester +Francis +Lee +Lester +Vernon +Daniel +Ray +Alfred +Russell +Gilbert +Melvin +Wayne +Glen +Leroy +Norman +Glenn +Leslie +Clyde +Sam +Alex +Edwin +Everett +Gordon +Harvey +Wilbur +Ben +Manuel +Alvin +Andrew +Bernard +Dale +Jesse +Marvin +Virgil +Bill +Philip +Roland +Benjamin +Cecil +Clifford +Marion +Don +Frederick +Maurice +Max +Tom +Warren +Gerald +Jess +Mike +Orville +Theodore +Allen +Bob +Dean +Lyle +Rex +Rudolph +Clinton +Delbert +Jesus +Lewis +Louie +Bruce +Felix +Oliver +Oscar +Billy +Charlie +Claude +Horace +Hubert +Peter +Phillip +Reuben +Vincent +Willard +Alexander +Anthony +Gene +Herman +Juan +Pete +Ruben +Steve +Douglas +Edgar +Ervin +Hugh +Jacob +Jay +Julian +Merle +Sidney +Archie +Clayton +Dave +Jim +Loren +Martin +Nick +Willis +Jake +Jerry +Jimmie +Johnny +Karl +Leon +Lowell +Lynn +Mark +Neil +Ronald +Adam +Arnold +August +Bert +Calvin +Eddie +Homer +Irving +Johnnie +Leland +Orlando +Quentin +Roger +Stephen +Wallace +Wilfred +Woodrow +Allan +Bennie +Cleo +Delmer +Dominic +Dwight +Elbert +Emil +Forrest +Franklin +Harley +Ira +Ivan +Julius +Orval +Pedro +Ramon +Rodney +Vern +Wesley +Antonio +Byron +Carroll +Clair +Conrad +Dick +Emmett +Fidel +Grover +Luis +Luther +Michael +Milton +Nathan +Oran +Perry +Ross +Solomon +Wendell +Wilbert +Abe +Abel +Alfonso +Alva +Amos +Benny +Billie +Carlos +Dewey +Edmund +Eldon +Guy +Harlan +Isadore +Jerome +Keith +Laurence +Laverne +Loyd +Myron +Ned +Patrick +Stuart +Ted +Trinidad +Wilford +Willie +Robert +John +William +James +Charles +George +Harold +Frank +Edward +Richard +Joe +Donald +Jack +Joseph +Raymond +Albert +Paul +Fred +Thomas +Walter +Ralph +Harry +Henry +Kenneth +David +Arthur +Clarence +Ernest +Howard +Carl +Roy +Leonard +Earl +Lawrence +Floyd +Louis +Elmer +Eugene +Victor +Daniel +Glenn +Clyde +Lee +Ray +Warren +Herbert +Lloyd +Vernon +Herman +Gerald +Pete +Leo +Alfred +Jose +Marvin +Dale +Manuel +Francis +Glen +Melvin +Edwin +Samuel +Bill +Sam +Wayne +Anthony +Benjamin +Chester +Tom +Bernard +Leroy +Theodore +Wilbur +Clifford +Willard +Norman +Tony +Cecil +Everett +Gilbert +Leslie +Max +Orville +Russell +Frederick +Lester +Philip +Stanley +Harvey +Juan +Milton +Alvin +Ben +Lewis +Virgil +Andrew +Claude +Dean +Homer +Ivan +Mike +Oliver +Ruben +Jacob +Phillip +Willis +Bennie +Billy +Don +Hugh +Jim +Martin +Gordon +Johnny +Wallace +Bob +Eddie +Francisco +Jake +Jesse +Junior +Michael +Allen +Edgar +Keith +Lyle +Curtis +Delbert +Franklin +Laurence +Leland +Leon +Luis +Marion +Maurice +Merle +Peter +Vincent +Alex +Antonio +Bert +Bruce +Duane +Elbert +Hubert +Jerry +Jimmie +Morris +Reuben +Ted +Adam +Adolph +Archie +Calvin +Clayton +Forrest +Gene +Larry +Nicholas +Nick +Ronald +Ross +Wesley +Alva +Dominic +Douglas +Fidel +Fredrick +Jesus +Loren +Wilbert +Charlie +Dave +Felix +Irvin +Jess +Patrick +Roger +Roland +Sidney +Timothy +Alfonso +Andy +Darrell +Grant +Horace +Johnnie +Lynn +Merlin +Neil +Perry +Wilfred +Alan +Alonzo +Arnold +August +Byron +Carlos +Clark +Dallas +Dan +Dwight +Emil +Ervin +Guy +Ira +Irving +Jay +Jimmy +Louie +Lowell +Oscar +Ramon +Rex +Rodney +Willie +Abe +Allan +Andres +Angelo +Billie +Carmen +Chris +Delmar +Dennis +Earle +Earnest +Ed +Edmund +Ellis +Eloy +Elton +Emmett +Frederic +Gabriel +Hal +Harley +Jasper +Jerome +Loyd +Mark +Milo +Myron +Russel +Salvatore +Solomon +Steven +Tommy +Trinidad +Wilber +Robert +John +William +James +Charles +George +Donald +Harold +Frank +Richard +Joe +Jack +Edward +Joseph +Raymond +Paul +Albert +Arthur +Kenneth +Ralph +Walter +Thomas +Fred +Harry +Henry +Warren +Eugene +Clarence +Roy +David +Louis +Carl +Ernest +Howard +Earl +Jose +Elmer +Leonard +Lawrence +Melvin +Lloyd +Alfred +Dale +Floyd +Francis +Manuel +Russell +Gerald +Tony +Lee +Norman +Edwin +Clyde +Ray +Victor +Vernon +Clifford +Glenn +Wayne +Andrew +Marvin +Herbert +Sam +Stanley +Lester +Mike +Alvin +Benjamin +Gordon +Pete +Samuel +Willard +Daniel +Leo +Herman +Jesse +Ben +Wilbur +Anthony +Bill +Glen +Keith +Lewis +Max +Bernard +Chester +Harvey +Theodore +Gilbert +Leroy +Cecil +Edgar +Everett +Wallace +Jim +Martin +Vincent +Virgil +Antonio +Billy +Frederick +Gene +Merle +Michael +Orville +Philip +Tom +Allen +Bob +Dean +Hugh +Leslie +Peter +Delbert +Don +Douglas +Francisco +Nick +Roland +Wesley +Bennie +Charlie +Felix +Guy +Jacob +Jesus +Leon +Rudolph +Steve +Alex +Arnold +Homer +Johnny +Marion +Milton +Rex +Roger +Ruben +Claude +Franklin +Maurice +Ronald +Alfonso +Alva +Bert +Dick +Horace +Ivan +Jake +Juan +Laurence +Laverne +Leland +Oliver +Phillip +Salvador +Bruce +Dan +Duane +Eddie +Eldon +Jimmie +Karl +Myron +Oscar +Ramon +Reuben +Ross +Sidney +Ted +Alexander +Archie +Eloy +Emmett +Forrest +Larry +Lowell +Stephen +Alan +Byron +Charley +Dave +Dewey +Grant +Jay +Louie +Lyle +Owen +Vern +Willis +Adam +Adolph +Angelo +August +Clayton +Doyle +Earnest +Elbert +Hubert +Ira +Jess +Johnnie +Loren +Morris +Neil +Otis +Pedro +Benny +Calvin +Cornelius +Emil +Fredrick +Harley +Irvin +Jerry +Julian +Luis +Nathan +Nicholas +Orin +Quentin +Vicente +Wendell +Wilfred +Allan +Amos +Aubrey +Billie +Conrad +Ervin +Gabriel +Guadalupe +Irving +Isaac +Jerome +Lupe +Luther +Lynn +Matthew +Neal +Orlando +Orval +Otto +Patrick +Perry +Roderick +Rupert +Sylvester +Tommy +Toshio +Wilmer +Wilson +Robert +John +William +James +Charles +George +Donald +Edward +Harold +Frank +Jack +Richard +Joe +Joseph +Kenneth +Albert +Paul +Raymond +Harry +Thomas +Arthur +Eugene +Walter +David +Ralph +Fred +Henry +Roy +Clarence +Howard +Carl +Louis +Leonard +Ernest +Elmer +Alfred +Earl +Lloyd +Jose +Gerald +Lawrence +Edwin +Glenn +Vernon +Norman +Ray +Melvin +Dale +Leo +Floyd +Francis +Manuel +Marvin +Daniel +Lee +Leroy +Bill +Warren +Russell +Wayne +Theodore +Victor +Herbert +Samuel +Clifford +Max +Clyde +Everett +Tony +Alvin +Bernard +Frederick +Gilbert +Lester +Benjamin +Glen +Gordon +Lewis +Pete +Wilbur +Don +Harvey +Virgil +Billy +Sam +Delbert +Maurice +Mike +Leslie +Lyle +Martin +Stanley +Herman +Philip +Allen +Ben +Claude +Homer +Hugh +Roger +Vincent +Wallace +Andrew +Bob +Cecil +Clayton +Dan +Dean +Jake +Patrick +Peter +Reuben +Ted +Willard +Alfonso +Anthony +Juan +Marion +Michael +Forrest +Jerry +Keith +Leon +Merle +Wesley +Arnold +Franklin +Jesse +Loren +Orville +Chester +Felix +Jay +Jesus +Phillip +Roland +Alex +Archie +Bert +Duane +Louie +Lynn +Nick +Ronald +Rudolph +Willis +Alexander +Bennie +Dave +Ross +Steve +Calvin +Douglas +Edgar +Fredrick +Gene +Ira +Ivan +Johnny +Marshall +Milton +Oliver +Perry +Salvador +Tom +Vern +Benny +Bruce +Clinton +Dominic +Dwight +Eddie +Eldon +Francisco +Grant +Guy +Jim +Julian +Luis +Morris +Oscar +Adolph +Antonio +Byron +Darrell +Dennis +Leland +Lowell +Nathan +Otto +Ruben +Sidney +Carlos +Charlie +Dick +Earnest +Ervin +Forest +Irwin +Jacob +Jerome +Julius +Mark +Neil +Owen +Rodney +Verne +Wilbert +Willie +Andy +Carroll +Curtis +Delmer +Emil +Harlan +Hubert +Jasper +Jess +Johnnie +Loyd +Merl +Merlin +Myron +Stephen +Trinidad +Adam +Arturo +Conrad +Cornelius +Elbert +Emmett +Freddie +Gus +Harley +Irvin +Jimmie +Mack +Matthew +Miguel +Norbert +Pedro +Rex +Tommy +Troy +Wendell +Wilfred +Robert +John +William +James +Charles +George +Donald +Richard +Harold +Frank +Joe +Joseph +Jack +Albert +Edward +Paul +Kenneth +Thomas +Raymond +Walter +Arthur +Harry +Ralph +David +Eugene +Fred +Roy +Ernest +Henry +Carl +Louis +Lawrence +Clarence +Howard +Earl +Elmer +Lloyd +Dale +Jose +Alfred +Warren +Leo +Melvin +Daniel +Leonard +Tony +Wayne +Ray +Manuel +Stanley +Theodore +Clifford +Gerald +Herbert +Marvin +Norman +Pete +Bob +Floyd +Glenn +Keith +Cecil +Clyde +Wallace +Gordon +Everett +Lee +Leroy +Virgil +Anthony +Philip +Alvin +Bill +Delbert +Francis +Leslie +Milton +Billy +Edwin +Sam +Gilbert +Samuel +Bernard +Bruce +Vernon +Dean +Victor +Russell +Benjamin +Glen +Herman +Ben +Calvin +Don +Lester +Wilbur +Frederick +Gene +Lewis +Rex +Jesse +Juan +Max +Allen +Chester +Edgar +Jesus +Michael +Andrew +Harvey +Lyle +Orville +Martin +Mike +Peter +Tom +Vincent +Antonio +Claude +Duane +Elbert +Felix +Ivan +Louie +Lowell +Wesley +Alfonso +Douglas +Eldon +Hugh +Jacob +Leland +Luis +Myron +Oscar +Alex +Arnold +Bennie +Bert +Jay +Jim +Jimmie +Oliver +Reuben +Salvador +Billie +Byron +Homer +Hubert +Irvin +Johnny +Marion +Maurice +Morris +Rudolph +Willard +Eddie +Ellis +Jerry +Johnnie +Loren +Nick +Rodney +Ross +Willie +Alexander +Benny +Francisco +Jake +Julian +Leon +Lynn +Ruben +Ted +Tommy +Adam +Alfredo +Dan +Dick +Doyle +Elvin +Emmett +Fredrick +Jerome +Laurence +Lupe +Perry +Phillip +Roger +Roland +Ronald +Rudy +Willis +Alva +Clinton +Dewey +Dominic +Eloy +Franklin +Harlan +Jess +Larry +Luther +Marshall +Merle +Miguel +Nathan +Nicholas +Orlando +Patrick +Rolland +Sidney +Steve +Adolph +Amos +Augustine +Charley +Darrell +Dennis +Ervin +Gabriel +Jessie +Morton +Neal +Neil +Rafael +Stephen +Stewart +Wendell +Wilfred +Allan +Bobby +Bud +Carroll +Clark +Curtis +Edmund +Elias +Evert +Fidel +Gale +Harley +Horace +Julius +Junior +Karl +Mark +Matt +Merlin +Nash +Solomon +Robert +John +William +James +Charles +George +Donald +Richard +Frank +Harold +Joe +Joseph +Jack +Edward +Paul +Kenneth +Albert +Raymond +Fred +Walter +David +Thomas +Harry +Arthur +Louis +Ralph +Henry +Howard +Clarence +Roy +Ernest +Earl +Eugene +Lawrence +Carl +Norman +Gerald +Ray +Marvin +Gilbert +Floyd +Leo +Dale +Edwin +Jose +Leonard +Alfred +Calvin +Tony +Lloyd +Melvin +Wayne +Herbert +Bob +Manuel +Lee +Francis +Gordon +Vernon +Bill +Billy +Clyde +Victor +Alvin +Glen +Glenn +Leroy +Pete +Warren +Sam +Daniel +Elmer +Stanley +Lester +Philip +Clifford +Don +Harvey +Max +Samuel +Tom +Virgil +Jerry +Keith +Russell +Andrew +Ben +Claude +Juan +Alex +Bernard +Dean +Everett +Gene +Martin +Roger +Theodore +Cecil +Lewis +Marion +Mike +Frederick +Wilbur +Allen +Herman +Homer +Jim +Johnny +Merle +Benjamin +Edgar +Hugh +Wallace +Willard +Chester +Delbert +Loren +Maurice +Ronald +Bruce +Jesse +Lowell +Lupe +Michael +Rudolph +Antonio +Bennie +Bert +Dan +Felix +Ivan +Jay +Orville +Phillip +Roland +Vincent +Wesley +Anthony +Archie +Byron +Eddie +Julian +Larry +Leland +Leon +Leslie +Morris +Neil +Sidney +Willie +Alberto +Alfonso +Arnold +Clayton +Franklin +Jacob +Jake +Jimmie +Jimmy +Milton +Ted +Dave +Guy +Jesus +Johnnie +Laurence +Laverne +Peter +Rex +Ruben +Steve +Wendell +Willis +Angelo +Benny +Charlie +Eldon +Forrest +Harley +Luis +Lyle +Oscar +Owen +Patrick +Carlos +Dick +Eloy +Hubert +Mark +Nick +Oliver +Orval +Otto +Phil +Reuben +Ross +Salvador +Abel +Alexander +Clair +Darrell +Elvin +Emil +Gale +Harlan +Horace +Junior +Loyd +Ramon +Stephen +Alan +Alfredo +Alva +Arnulfo +Dominic +Douglas +Francisco +Grant +Karl +Rolland +Royal +Toby +Adolph +Allan +Alonzo +August +Billie +Bobby +Boyd +Chas +Clinton +Dallas +Duane +Dwight +Ed +Elbert +Emilio +Emmett +Ervin +Fredrick +Grover +Irving +Isaac +Jerome +Jess +Leopoldo +Louie +Malcolm +Marshall +Myron +Neal +Pat +Perry +Rafael +Ward +Wilfred +Robert +John +William +James +Charles +Donald +Richard +George +Frank +Jack +Edward +Joe +Harold +Kenneth +Thomas +Albert +Paul +Joseph +Raymond +Ralph +Arthur +Walter +Fred +Henry +Ernest +Harry +David +Roy +Eugene +Jose +Howard +Louis +Carl +Melvin +Lawrence +Manuel +Clarence +Herbert +Leonard +Glenn +Bill +Dale +Floyd +Lloyd +Ray +Stanley +Alfred +Calvin +Leroy +Earl +Gerald +Wayne +Elmer +Gilbert +Norman +Bob +Mike +Clyde +Glen +Leo +Marvin +Clifford +Francis +Daniel +Keith +Philip +Tony +Victor +Billy +Samuel +Vernon +Max +Alvin +Harvey +Lee +Russell +Bernard +Cecil +Edwin +Gene +Pete +Theodore +Warren +Wilbur +Gordon +Herman +Jim +Lewis +Anthony +Sam +Don +Frederick +Chester +Duane +Leon +Tom +Delbert +Everett +Juan +Lester +Willard +Allen +Ben +Benjamin +Jerry +Virgil +Ronald +Antonio +Jesus +Leslie +Vincent +Andrew +Jesse +Nick +Wallace +Claude +Clinton +Eddie +Felix +Homer +Milton +Ross +Bobby +Dan +Dean +Dick +Jimmie +Larry +Marion +Orville +Ruben +Alfonso +Hugh +Johnny +Laurence +Lyle +Oliver +Phillip +Roland +Ted +Arnold +Bennie +Bruce +Eloy +Francisco +Ivan +Jake +Louie +Peter +Sidney +Wesley +Clayton +Jimmy +Leland +Lowell +Martin +Maurice +Michael +Oscar +Pedro +Rudolph +Salvador +Benny +Carlos +Darrell +Dominic +Douglas +Eldon +Emmett +Guy +Hubert +Irvin +Irving +Merle +Steve +Vern +Wendell +Willie +Archie +Boyd +Charlie +Ernesto +Forrest +Jay +Jess +Junior +Loren +Mark +Otis +Rex +Wilfred +Alex +Alfredo +Allan +Bert +Byron +Dewey +Dwight +Edgar +Franklin +Jacob +Johnnie +Lynn +Myron +Orlando +Patrick +Ramon +Tommy +Wilbert +Willis +Adolph +Alberto +Alva +Earnest +Elbert +Harlan +Harley +Horace +Ira +Karl +Luis +Morton +Rafael +Raul +Roger +Rolland +Stephen +Alan +Alexander +Armando +August +Charley +Christopher +Dennis +Domingo +Ed +Elias +Emil +Ervin +Guadalupe +Isaac +Jerome +Lorenzo +Malcolm +Marcus +Neal +Nelson +Orval +Roberto +Royal +Rudy +Ward +Robert +John +William +James +Charles +Donald +George +Richard +Jack +Joe +Harold +Edward +Frank +Kenneth +Paul +Raymond +Joseph +Albert +Thomas +Arthur +Harry +Ralph +David +Fred +Eugene +Roy +Louis +Walter +Henry +Bill +Jose +Ernest +Howard +Carl +Gerald +Bob +Dale +Tony +Melvin +Marvin +Lawrence +Daniel +Leonard +Earl +Gilbert +Stanley +Elmer +Glenn +Leo +Norman +Wayne +Floyd +Manuel +Ray +Clifford +Lee +Leroy +Billy +Lloyd +Alfred +Edwin +Theodore +Calvin +Don +Glen +Jim +Clarence +Dean +Francis +Tom +Vernon +Victor +Warren +Keith +Ronald +Russell +Sam +Ben +Johnny +Pete +Samuel +Wilbur +Benjamin +Gene +Gordon +Max +Philip +Anthony +Jimmie +Mike +Felix +Herbert +Alvin +Everett +Wallace +Lyle +Bernard +Cecil +Dick +Harvey +Lester +Milton +Roland +Virgil +Bruce +Claude +Franklin +Herman +Lewis +Phillip +Willard +Clyde +Leslie +Tommy +Andrew +Bennie +Homer +Allen +Bobby +Martin +Roger +Willis +Douglas +Eddie +Edgar +Frederick +Jesse +Jimmy +Patrick +Wesley +Charlie +Dwight +Guy +Ivan +Junior +Loren +Oscar +Rudy +Antonio +Byron +Chester +Clayton +Jerry +Jesus +Larry +Laurence +Ted +Vincent +Alex +Benny +Elbert +Forrest +Ignacio +Jake +Juan +Orville +Rudolph +Bert +Billie +Delbert +Johnnie +Leland +Leon +Luis +Marion +Maurice +Merle +Michael +Morris +Oliver +Peter +Steve +Alfonso +Dan +Dave +Eldon +Harlan +Jackie +Myron +Owen +Sidney +Alan +Arnold +Augustine +Duane +Felipe +Harley +Jess +Lowell +Willie +Angelo +Archie +Charley +Clinton +Darrell +Dewey +Ervin +Hubert +Irwin +Jay +Loyd +Mark +Ned +Nicholas +Nick +Orval +Otto +Reuben +Rodney +Ruben +Salvador +Simon +Stephen +Abel +Armando +Bernie +Burton +Buster +Carmen +Carroll +Curtis +Danny +Darrel +Dennis +Erwin +Garfield +Gayle +Gregory +Hugh +Jacob +Joel +Julian +Karl +Lynn +Miguel +Neil +Orlando +Pablo +Pedro +Rex +Steven +Truman +Wilbert +Wilford +Robert +John +William +James +Donald +Charles +Richard +George +Harold +Joe +Jack +Joseph +Frank +Edward +Paul +Raymond +Kenneth +Albert +Arthur +David +Thomas +Eugene +Harry +Walter +Ralph +Bill +Fred +Henry +Bob +Howard +Roy +Gerald +Lawrence +Carl +Jose +Ernest +Louis +Wayne +Elmer +Manuel +Leo +Dale +Floyd +Lloyd +Melvin +Norman +Clarence +Gene +Lee +Don +Tony +Earl +Ray +Vernon +Billy +Gilbert +Leroy +Daniel +Leonard +Marvin +Glenn +Ronald +Glen +Sam +Stanley +Francis +Herbert +Russell +Alfred +Pete +Alvin +Everett +Tom +Victor +Clifford +Phillip +Edwin +Lewis +Max +Anthony +Jim +Juan +Samuel +Theodore +Warren +Dean +Herman +Jerry +Johnny +Larry +Philip +Cecil +Bobby +Clyde +Delbert +Harvey +Leland +Mike +Allen +Bernard +Gordon +Marion +Tommy +Antonio +Calvin +Jesus +Keith +Peter +Frederick +Jesse +Lyle +Milton +Bruce +Duane +Lester +Oscar +Rudolph +Alex +Ben +Benjamin +Charlie +Eddie +Felix +Jimmy +Junior +Luis +Roger +Ted +Wilbur +Alfonso +Dave +Edgar +Jimmie +Pedro +Bennie +Claude +Dan +Dick +Johnnie +Martin +Orville +Virgil +Andrew +Arnold +Byron +Douglas +Emmett +Franklin +Jake +Leslie +Patrick +Roland +Wesley +Archie +Clayton +Ervin +Rudy +Vincent +Willard +Willis +Eldon +Francisco +Gale +Jay +Loren +Malcolm +Maurice +Modesto +Oliver +Ruben +Stephen +Steve +Alan +Billie +Forrest +Homer +Lowell +Merle +Reuben +Salvador +Steven +Wallace +Wendell +Adolph +Allan +Amos +Andy +Benny +Clinton +Ed +Guadalupe +Harlan +Harley +Horace +Hugh +Leon +Lupe +Margarito +Michael +Morris +Otis +Alva +Armando +Bobbie +Carlos +Chester +Delmar +Edmund +Freddie +Jerome +Joaquin +Julian +Laurence +Louie +Miguel +Myron +Norbert +Owen +Phil +Russel +Sidney +Wade +Willie +Aaron +Alonzo +Augustine +Barney +Bert +Curtis +Dwight +Ellis +Elmo +Eloy +Gregory +Guy +Hubert +Ivan +Jackie +Jacob +Jess +Laverne +Lorenzo +Marshall +Merlin +Nathan +Neil +Nick +Orlando +Otto +Pat +Ramon +Rodney +Robert +John +William +James +Donald +Charles +George +Richard +Joe +Jack +Frank +Kenneth +Harold +Edward +Raymond +David +Paul +Joseph +Fred +Albert +Walter +Arthur +Thomas +Bill +Howard +Eugene +Harry +Henry +Bob +Alfred +Ralph +Don +Roy +Carl +Earl +Manuel +Clarence +Melvin +Ernest +Jose +Marvin +Lloyd +Louis +Gerald +Herbert +Leo +Norman +Billy +Wayne +Gilbert +Glenn +Jerry +Tony +Clyde +Dale +Leonard +Leroy +Ronald +Gene +Lawrence +Ray +Stanley +Vernon +Elmer +Glen +Floyd +Edwin +Wilbur +Alvin +Pete +Russell +Bobby +Dean +Johnny +Lee +Daniel +Eddie +Gordon +Victor +Phillip +Clifford +Francis +Jim +Sam +Anthony +Duane +Jimmy +Keith +Max +Theodore +Dan +Dick +Lester +Philip +Warren +Juan +Tom +Jimmie +Tommy +Andrew +Bruce +Martin +Virgil +Bennie +Chester +Leslie +Mike +Peter +Samuel +Ben +Claude +Herman +Hugh +Jesus +Douglas +Harvey +Lyle +Michael +Allen +Bernard +Charlie +Delbert +Johnnie +Julian +Leon +Loren +Felix +Jesse +Marion +Orville +Ted +Wesley +Calvin +Everett +Larry +Rex +Roger +Rudolph +Bert +Edgar +Ivan +Steve +Wallace +Alex +Antonio +Carlos +Cecil +Jackie +Lewis +Lowell +Nick +Willard +Darrell +Milton +Alan +Benjamin +Dennis +Jake +Leland +Louie +Luis +Mark +Oscar +Patrick +Pedro +Sidney +Willis +Armando +Aubrey +Eldon +Forrest +Frederick +Homer +Horace +Hubert +Jay +Jess +Mary +Maurice +Rodney +Ruben +Salvador +Vincent +Willie +Arnold +Byron +Clinton +Conrad +Eloy +Franklin +Fredrick +Junior +Levi +Lynn +Merle +Oliver +Pat +Perry +Phil +Roberto +Wendell +Angelo +Billie +Candelario +Charley +Chris +Clayton +Curtis +Delmar +Emery +Irvin +Jacob +Morris +Owen +Rafael +Rudy +Santiago +Sherman +Simon +Stephen +Steven +Toby +Wilbert +Adolph +Adrian +Alfonso +Allan +Benny +Bernie +Bud +Dallas +Dave +Dwight +Edmund +Emil +Emilio +Francisco +Frankie +Gilberto +Guillermo +Guy +Julius +Karl +Laurence +Lavern +Loyd +Merlin +Myron +Neil +Ramon +Raul +Reuben +Roland +Rolland +Ross +Sabino +Scott +Solomon +Verne +Vicente +Robert +John +Donald +William +James +Richard +Charles +George +Joe +Jack +Frank +Kenneth +Harold +Raymond +Edward +Paul +Thomas +David +Albert +Arthur +Joseph +Ralph +Walter +Eugene +Harry +Fred +Billy +Roy +Bob +Bill +Carl +Louis +Alfred +Earl +Gerald +Norman +Dale +Don +Elmer +Ernest +Wayne +Clarence +Leroy +Gilbert +Henry +Lawrence +Marvin +Herbert +Leonard +Jose +Gene +Manuel +Howard +Ray +Tony +Leo +Ronald +Lloyd +Melvin +Clifford +Glenn +Vernon +Stanley +Edwin +Glen +Jerry +Daniel +Dean +Francis +Jim +Lee +Pete +Philip +Floyd +Jimmy +Clyde +Keith +Bobby +Johnny +Phillip +Gordon +Ted +Tommy +Victor +Virgil +Wallace +Bruce +Russell +Jimmie +Leslie +Max +Tom +Ben +Dick +Douglas +Roger +Warren +Allen +Harvey +Wilbur +Andrew +Benjamin +Bernard +Duane +Eddie +Everett +Felix +Sam +Alvin +Anthony +Bennie +Jesse +Jesus +Leland +Samuel +Alex +Chester +Ivan +Johnnie +Juan +Larry +Lester +Mike +Ruben +Steve +Cecil +Delbert +Rudolph +Rudy +Benny +Herman +Lewis +Theodore +Wendell +Charlie +Claude +Eloy +Wesley +Arnold +Jake +Luis +Lyle +Martin +Orville +Salvador +Dan +Francisco +Julian +Laurence +Loren +Milton +Oliver +Orlando +Peter +Alfonso +Antonio +Archie +Dave +Edgar +Franklin +Homer +Hugh +Leon +Maurice +Michael +Sammy +Willard +Willie +Willis +Alan +Arturo +Eldon +Frederick +Fredrick +Gary +Guy +Hubert +Lynn +Marion +Merle +Myron +Nick +Pedro +Perry +Ross +Alexander +Amos +Clinton +Danny +Darrel +Ernie +Irvin +Jackie +Junior +Louie +Ramon +Verne +Wilfred +Allan +Andy +Billie +Bud +Burton +Curtis +Dallas +Darrell +Darwin +Dwight +Emilio +Emmett +Fidel +Freddie +Horace +Ira +Jerome +Karl +Lowell +Reuben +Steven +Wilbert +Augustine +Benito +Bert +Boyd +Calvin +Carroll +Chris +Conrad +Dewey +Donnie +Enrique +Harley +Jess +Lupe +Marshall +Miguel +Pat +Patrick +Rafael +Roland +Rosendo +Robert +John +William +Donald +James +Richard +Charles +George +Jack +Joe +Kenneth +Harold +Edward +Frank +Raymond +Paul +David +Thomas +Albert +Joseph +Arthur +Fred +Walter +Ralph +Carl +Bill +Eugene +Don +Bob +Ernest +Gerald +Roy +Melvin +Henry +Dale +Jose +Howard +Gilbert +Harry +Ronald +Earl +Lawrence +Louis +Billy +Jerry +Marvin +Ray +Leo +Norman +Leonard +Manuel +Tony +Daniel +Keith +Wayne +Clarence +Lloyd +Vernon +Anthony +Dean +Floyd +Gene +Glenn +Bobby +Herbert +Lee +Alfred +Edwin +Leroy +Mike +Clyde +Clifford +Jim +Pete +Tommy +Duane +Glen +Lewis +Sam +Stanley +Theodore +Roger +Russell +Victor +Virgil +Warren +Dick +Jimmie +Martin +Tom +Elmer +Harvey +Larry +Marion +Gordon +Jimmy +Philip +Allen +Delbert +Herman +Alvin +Francis +Juan +Lester +Phillip +Samuel +Alex +Bruce +Leslie +Ben +Dan +Darrell +Eddie +Everett +Franklin +Leland +Leon +Max +Peter +Rudolph +Steve +Wilbur +Claude +Jesus +Johnny +Maurice +Milton +Rudy +Ted +Ivan +Loren +Wallace +Alfonso +Douglas +Jesse +Johnnie +Lyle +Michael +Bernard +Billie +Frederick +Loyd +Orville +Patrick +Ruben +Wesley +Antonio +Cecil +Gary +Hubert +Jake +Ramon +Roland +Andrew +Bennie +Calvin +Eldon +Felix +Ross +Willie +Arnold +Benjamin +Benny +Byron +Carlos +Danny +Doyle +Dwight +Hugh +Luis +Nick +Orlando +Stephen +Wendell +Willard +Angelo +Buddy +Chester +Clayton +Dennis +Forrest +Jackie +Jacob +Jay +Myron +Oliver +Oscar +Vincent +Waldo +Wilbert +Adolph +Bert +Burton +Carroll +Charley +Charlie +Conrad +Curtis +Dave +Emmett +Harley +Jess +Julian +Lynn +Merle +Pat +Rex +Rodney +Salvador +Sammy +Teddy +Vern +Willis +Alan +Andy +Archie +Boyd +Elbert +Elias +Eloy +Freddie +Gabriel +Guillermo +Guy +Ignacio +Junior +Karl +Laurence +Morris +Otis +Pablo +Pedro +Perry +Phil +Reuben +Sidney +Abel +Allan +Angel +August +Delmar +Edgar +Elton +Emilio +Erwin +Homer +Jerome +Louie +Matthew +Miguel +Neil +Norris +Simon +Solomon +Wilfred +Robert +John +Donald +James +William +Richard +Charles +George +Jack +Joe +David +Frank +Harold +Kenneth +Raymond +Paul +Edward +Thomas +Bob +Joseph +Gerald +Ralph +Albert +Billy +Walter +Bill +Fred +Carl +Arthur +Henry +Ernest +Marvin +Don +Ronald +Dale +Wayne +Norman +Roy +Eugene +Lawrence +Louis +Earl +Leonard +Leroy +Jose +Ray +Harry +Stanley +Gene +Jerry +Gilbert +Larry +Melvin +Howard +Floyd +Alfred +Lloyd +Jimmie +Johnny +Keith +Manuel +Tony +Bobby +Eddie +Theodore +Tom +Clarence +Edwin +Elmer +Herbert +Victor +Dean +Glenn +Leo +Tommy +Duane +Lewis +Vernon +Clyde +Jim +Roger +Everett +Francis +Mike +Clifford +Glen +Philip +Lee +Russell +Leslie +Alvin +Daniel +Delbert +Ben +Dick +Jimmy +Anthony +Harvey +Pete +Phillip +Sam +Benjamin +Bernard +Gordon +Alan +Andrew +Chester +Herman +Ivan +Jesse +Max +Rudy +Ted +Wilbur +Willard +Allen +Bruce +Calvin +Cecil +Charlie +Douglas +Gary +Juan +Vincent +Warren +Julian +Peter +Samuel +Wesley +Allan +Antonio +Arnold +Billie +Felix +Jay +Johnnie +Lester +Patrick +Roland +Rudolph +Wallace +Benny +Frederick +Hubert +Leon +Marion +Martin +Myron +Orlando +Ruben +Virgil +Alex +Darrell +Homer +Hugh +Junior +Lyle +Merle +Rex +Willie +Dan +Guy +Jackie +Lowell +Maurice +Michael +Neil +Sammy +Archie +Bennie +Conrad +Eldon +Irvin +Laurence +Luis +Nick +Pedro +Carlos +Claude +Danny +Dave +Dennis +Eloy +Leland +Mark +Oliver +Salvador +Sidney +Alberto +Alexander +Byron +Carroll +Clinton +Edgar +Francisco +Franklin +Karl +Orville +Ramon +Stephen +Vern +Wilbert +Willis +Alfonso +Bobbie +Dwayne +Dwight +Freddie +Guillermo +Harley +Joel +Kent +Laverne +Louie +Miguel +Milton +Morris +Perry +Rodney +Steve +Teddy +Terry +Wendell +Abel +Arlen +August +Dallas +Darwin +Daryl +Earnest +Elvin +Emmett +Isadore +Jerald +Jess +Jesus +Loren +Neal +Nicholas +Oscar +Otto +Owen +Pat +Raul +Roberto +Rolland +Ross +Steven +Van +Wilfred +Robert +Donald +John +Richard +James +William +Charles +George +Jack +Joe +Frank +Edward +Ronald +Kenneth +David +Paul +Harold +Raymond +Albert +Thomas +Ralph +Joseph +Don +Fred +Bill +Billy +Eugene +Gerald +Jerry +Bob +Walter +Carl +Marvin +Gilbert +Arthur +Dale +Norman +Louis +Lawrence +Ernest +Harry +Wayne +Roy +Manuel +Daniel +Earl +Howard +Edwin +Stanley +Leroy +Leo +Leonard +Clarence +Duane +Jim +Keith +Larry +Melvin +Gene +Henry +Vernon +Alfred +Alvin +Ray +Dean +Jose +Bobby +Delbert +Floyd +Gordon +Jimmie +Lloyd +Tony +Glenn +Pete +Russell +Tommy +Clyde +Glen +Jimmy +Johnny +Tom +Eddie +Anthony +Elmer +Herbert +Martin +Dick +Franklin +Lee +Roger +Victor +Bernard +Ted +Theodore +Clifford +Rudy +Douglas +Harvey +Max +Philip +Allen +Dan +Darrell +Patrick +Ben +Jesse +Lewis +Mike +Ruben +Virgil +Wilbur +Antonio +Gary +Neil +Bruce +Cecil +Charlie +Francis +Johnnie +Leon +Loren +Roland +Carroll +Everett +Herman +Leslie +Lester +Luis +Michael +Arnold +Lyle +Milton +Phillip +Sam +Wallace +Warren +Alan +Danny +Hugh +Jay +Lynn +Marion +Pat +Vern +Alex +Andrew +Bert +Edgar +Felix +Frederick +Fredrick +Jesus +Nick +Peter +Rudolph +Samuel +Willard +Benjamin +Bennie +Carlos +Chester +Dave +Eldon +Harley +Ramon +Rex +Teddy +Willis +Archie +Bryce +Calvin +Claude +Eloy +Leland +Lorenzo +Louie +Maurice +Merle +Myron +Phil +Sidney +Stephen +Steve +Vincent +Wilfred +Alfonso +Allan +Byron +Chris +Clinton +Darrel +Freddie +Homer +Jess +Mark +Monte +Orville +Rodney +Ronnie +Willie +Abel +Andy +Armando +August +Benny +Bobbie +Delmar +Dennis +Dwight +Guy +Ira +Ivan +Luther +Owen +Ross +Wendell +Adam +Amos +Augustine +Billie +Clayton +Elvin +Ervin +Juan +Junior +Lowell +Micheal +Norbert +Orlando +Otis +Salvador +Toby +Wesley +Robert +John +Richard +James +Donald +Charles +William +George +Joe +Jack +Frank +Ronald +David +Kenneth +Raymond +Paul +Edward +Harold +Joseph +Fred +Ralph +Thomas +Jerry +Bill +Gerald +Albert +Arthur +Billy +Walter +Bob +Marvin +Don +Ernest +Eugene +Lawrence +Harry +Carl +Howard +Lloyd +Jimmy +Louis +Henry +Ray +Gilbert +Larry +Melvin +Dale +Gene +Leonard +Leroy +Wayne +Roy +Stanley +Norman +Earl +Jim +Daniel +Franklin +Jose +Tony +Manuel +Vernon +Bobby +Johnny +Glenn +Jimmie +Leo +Clarence +Mike +Sam +Anthony +Clifford +Dan +Dean +Harvey +Eddie +Edwin +Floyd +Gary +Lee +Philip +Warren +Allen +Alvin +Keith +Russell +Tom +Bruce +Dick +Duane +Elmer +Gordon +Roger +Theodore +Tommy +Alfred +Darrell +Delbert +Everett +Michael +Pete +Ted +Herbert +Clyde +Glen +Lewis +Victor +Arnold +Francis +Martin +Ben +Neil +Rudy +Andrew +Chester +Herman +Leland +Phillip +Bernard +Byron +Douglas +Lyle +Marion +Max +Milton +Lester +Willard +Alan +Cecil +Charlie +Jesse +Myron +Nick +Peter +Stephen +Steve +Vincent +Alfonso +Danny +Johnnie +Patrick +Teddy +Alex +Bennie +Freddie +Juan +Julian +Loren +Louie +Orville +Rex +Samuel +Wesley +Clinton +Felix +Jackie +Jacob +Jay +Leslie +Merle +Rodney +Ruben +Terry +Virgil +Archie +Claude +Dennis +Harley +Homer +Ivan +Maurice +Pat +Rolland +Ronnie +Antonio +Benjamin +Buddy +Calvin +Darrel +Eldon +Ernie +Frederick +Gale +Hugh +Junior +Lavern +Lowell +Mark +Ramon +Roland +Rudolph +Willis +Andy +Benny +Bernie +Curtis +Daryl +Frankie +Guy +Jesus +Leon +Levi +Morton +Neal +Sidney +Steven +Toby +Wilbur +Billie +Bobbie +Cruz +Dallas +Delmar +Ed +Edgar +Eloy +Galen +Jerald +Jon +Luis +Lynn +Miguel +Noel +Oliver +Perry +Reuben +Ross +Robert +James +John +Richard +Donald +William +Charles +Joe +George +David +Jack +Frank +Kenneth +Paul +Ronald +Thomas +Raymond +Edward +Harold +Don +Jerry +Bill +Arthur +Joseph +Fred +Gerald +Larry +Albert +Bob +Norman +Harry +Dale +Lawrence +Roy +Ralph +Billy +Gilbert +Louis +Carl +Walter +Henry +Leonard +Ernest +Ray +Wayne +Melvin +Stanley +Eugene +Manuel +Vernon +Howard +Jim +Tommy +Glenn +Marvin +Roger +Dick +Gene +Daniel +Earl +Leroy +Gary +Leo +Pete +Clarence +Jose +Michael +Clifford +Bobby +Jimmy +Tony +Floyd +Lloyd +Clyde +Duane +Eddie +Alfred +Glen +Jimmie +Keith +Alvin +Anthony +Bruce +Dean +Lee +Delbert +Gordon +Franklin +Phillip +Andrew +Bernard +Herbert +Johnny +Max +Ted +Tom +Edwin +Rudy +Mike +Victor +Ben +Dan +Elmer +Leland +Harvey +Jesse +Lewis +Russell +Sam +Darrell +Dennis +Edgar +Francis +Theodore +Benjamin +Loren +Philip +Rodney +Ruben +Terry +Virgil +Frederick +Ivan +Johnnie +Juan +Warren +Wilbur +Alex +Arnold +Danny +Leslie +Martin +Milton +Oliver +Peter +Calvin +Douglas +Everett +Hugh +Irvin +Orville +Samuel +Teddy +Vincent +Allen +Benny +Cecil +Claude +Luis +Marion +Rex +Steve +Alfonso +Clinton +Felix +Herman +Jackie +Leon +Lester +Louie +Lyle +Neil +Ronnie +Rudolph +Wesley +Willard +Archie +Byron +Carroll +Curtis +Eloy +Harley +Jay +Maurice +Myron +Neal +Nick +Pat +Patrick +Phil +Steven +Wallace +Willie +Willis +Alan +Andy +Carlos +Dave +Delmar +Donnie +Dwight +Edmund +Eldon +Grant +Homer +Jesus +Lowell +Orlando +Roberto +Tim +Allan +Angelo +Antonio +Bennie +Billie +Bud +Darrel +Lanny +Merle +Merlin +Roland +Sidney +Toby +Adolph +August +Benito +Bernie +Charlie +Chester +Chris +Clayton +Delmer +Ernie +Freddie +Guy +Horace +Hubert +Ira +Jacob +Jean +Jerome +Julian +Junior +Kent +Lonnie +Lynn +Micheal +Oscar +Ramon +Raymon +Wendell +Wilfred +Robert +James +John +Richard +Donald +William +Charles +George +David +Joe +Jack +Kenneth +Frank +Ronald +Edward +Harold +Paul +Jerry +Raymond +Thomas +Joseph +Arthur +Fred +Larry +Albert +Gerald +Don +Leroy +Ralph +Louis +Gary +Eugene +Carl +Bill +Jim +Marvin +Lawrence +Bob +Walter +Henry +Wayne +Stanley +Billy +Dale +Ernest +Gilbert +Jimmy +Roy +Harry +Lee +Manuel +Johnny +Ray +Leo +Melvin +Norman +Roger +Daniel +Tony +Howard +Clarence +Lloyd +Leonard +Jose +Clifford +Gene +Duane +Floyd +Philip +Dick +Gordon +Tommy +Bruce +Dennis +Phillip +Anthony +Glenn +Alfred +Dean +Keith +Sam +Vernon +Delbert +Max +Theodore +Tom +Warren +Bobby +Eddie +Alvin +Douglas +Edwin +Herbert +Jimmie +Michael +Victor +Earl +Russell +Danny +Ben +Glen +Lewis +Pete +Ted +Virgil +Benny +Leslie +Wesley +Felix +Jackie +Martin +Everett +Stephen +Alan +Allen +Arnold +Dan +Jesse +Lyle +Alfonso +Cecil +Clyde +Darrell +Harvey +Herman +Juan +Rudy +Jay +Leon +Nick +Rodney +Samuel +Claude +Elmer +Lester +Vincent +Andrew +Bobbie +Chester +Dave +Franklin +Louie +Milton +Orville +Ronnie +Wilbur +Willard +Benjamin +Bennie +Bernard +Bert +Byron +Darrel +Gale +Ivan +Jess +Johnnie +Mike +Neal +Neil +Peter +Wallace +Antonio +Clayton +Francis +Harley +Loren +Luis +Steve +Alex +Andy +Buddy +Calvin +Charlie +Curtis +Donnie +Doyle +Dwight +Eldon +Ernie +Frederick +Jerome +Maurice +Terry +Toby +Alexander +Archie +Eloy +Francisco +Fredrick +Lynn +Mark +Pat +Patrick +Phil +Ruben +Rudolph +Teddy +Allan +Burton +Carlos +Clinton +Frankie +Freddie +Jacob +Julian +Kent +Leland +Merle +Orlando +Rex +Sammy +Timothy +Wilfred +Al +Chris +Clark +Clifton +Conrad +Dallas +Delfino +Delmar +Edgar +Elvin +Fidel +Guy +Hubert +Irvin +Jake +Jesus +Jon +Karl +Levi +Lonnie +Lowell +Marion +Monte +Otto +Pedro +Perry +Stuart +Vance +Wendell +Robert +John +Donald +Richard +James +William +Charles +David +Ronald +Joe +Kenneth +Frank +George +Jack +Larry +Edward +Thomas +Jerry +Paul +Raymond +Gerald +Harold +Joseph +Fred +Gary +Albert +Lawrence +Arthur +Bill +Ralph +Don +Eugene +Bob +Dale +Gilbert +Roger +Carl +Roy +Walter +Daniel +Jim +Alfred +Harry +Melvin +Billy +Leroy +Ernest +Louis +Marvin +Johnny +Wayne +Ray +Howard +Michael +Norman +Stanley +Gene +Henry +Lee +Manuel +Phillip +Vernon +Lloyd +Tony +Eddie +Edwin +Clarence +Clifford +Jose +Keith +Leo +Pete +Tom +Leonard +Warren +Alvin +Bobby +Earl +Floyd +Tommy +Anthony +Dick +Glenn +Philip +Danny +Duane +Jimmie +Jimmy +Max +Arnold +Bernard +Douglas +Harvey +Herbert +Leslie +Mike +Samuel +Alan +Bruce +Claude +Ronnie +Franklin +Victor +Martin +Patrick +Russell +Delbert +Rex +Ted +Theodore +Allen +Dean +Dennis +Glen +Gordon +Jackie +Alex +Cecil +Francis +Benny +Clyde +Dan +Darrell +Eldon +Frederick +Jesse +Leon +Lester +Lewis +Rodney +Andrew +Everett +Jon +Pat +Peter +Roland +Rudolph +Rudy +Alfonso +Freddie +Herman +Johnnie +Marion +Merle +Ben +Bert +Charlie +Curtis +Felix +Loren +Lyle +Nick +Sammy +Wilbur +Jay +Karl +Kent +Phil +Terry +Wesley +Archie +Carlos +Jake +Sam +Stephen +Timothy +Vern +Vincent +Chester +Dave +Dwayne +Edgar +Elmer +Forrest +Francisco +Hubert +Junior +Leland +Maurice +Milton +Neil +Ruben +Steve +Steven +Allan +Barry +Benjamin +Bennie +Calvin +Carroll +Chris +Darrel +Fredrick +Garry +Harley +Ira +Ivan +Jess +Jesus +Joel +Julian +Lynn +Mark +Virgil +Wendell +Willard +Willie +Willis +Augustine +Bernie +Billie +Boyd +Buddy +Clayton +Clinton +Doyle +Elbert +Fermin +Grant +Gregory +Guy +Jerome +Louie +Luis +Merrill +Ned +Oscar +Alonzo +Antonio +Darwin +Filbert +Frankie +Hector +Jacob +Jessie +Ken +Lowell +Lupe +Miguel +Morris +Noel +Oliver +Orlando +Orville +Ross +Sidney +Stuart +Teddy +Wallace +Robert +John +James +Donald +Richard +William +Charles +Ronald +David +Larry +George +Joe +Jerry +Kenneth +Edward +Jack +Thomas +Paul +Frank +Gerald +Gary +Raymond +Joseph +Harold +Fred +Dale +Jim +Carl +Arthur +Walter +Eugene +Leroy +Albert +Ralph +Henry +Michael +Wayne +Daniel +Roy +Bill +Don +Gene +Gilbert +Billy +Harry +Leonard +Marvin +Norman +Lawrence +Ernest +Roger +Alfred +Bob +Howard +Phillip +Melvin +Lee +Dennis +Eddie +Clifford +Floyd +Keith +Leo +Vernon +Earl +Jimmy +Ray +Gordon +Louis +Manuel +Stanley +Tony +Douglas +Duane +Jimmie +Philip +Anthony +Delbert +Jose +Clarence +Johnny +Lloyd +Tom +Victor +Allen +Bobby +Glen +Harvey +Pete +Arnold +Danny +Darrell +Dean +Franklin +Tommy +Bruce +Ronnie +Russell +Warren +Edwin +Herbert +Theodore +Alvin +Leslie +Clyde +Dick +Francis +Glenn +Stephen +Ted +Dave +Andrew +Byron +Max +Samuel +Terry +Dan +Rodney +Wesley +Benjamin +Jon +Lester +Martin +Sam +Everett +Jesse +Jesus +Mike +Chester +Jay +Jerome +Leon +Peter +Rudolph +Virgil +Alan +Calvin +Ivan +Jackie +Lewis +Lowell +Merle +Sidney +Vincent +Willard +Alfonso +Cecil +Claude +Felix +Herman +Johnnie +Loren +Lynn +Nick +Orlando +Rudy +Ben +Bernard +Frankie +Frederick +Marion +Patrick +Sammy +Wallace +Wilbur +Alex +Antonio +Carroll +Charlie +Elmer +Freddie +Kay +Ross +Steve +Willis +Allan +Benny +Conrad +Forrest +Leland +Ruben +Alonzo +Angelo +Armando +Bert +Carlos +Chris +Clinton +Edgar +Homer +Jess +Kent +Luis +Milton +Neil +Orville +Rex +Teddy +Willie +Billie +Donnie +Dwayne +Dwight +Eldon +Ernie +Grant +Gregory +Harley +Jacob +Jerald +Juan +Leeroy +Louie +Loyd +Mark +Morris +Myron +Oscar +Adolph +Amos +Barry +Bennie +Brian +Clark +Clayton +Darrel +Darryl +Doyle +Earnest +Ed +Elias +Ervin +Freddy +Fredrick +Guy +Lyle +Noel +Perry +Phil +Ramon +Reuben +Roderick +Rolland +Royce +Sheldon +Steven +Toby +Valentine +Robert +John +James +Richard +William +Donald +Charles +Ronald +David +Larry +Kenneth +George +Joe +Jerry +Frank +Thomas +Gary +Edward +Raymond +Jack +Joseph +Paul +Gerald +Fred +Michael +Lawrence +Harold +Arthur +Don +Leroy +Carl +Daniel +Roy +Albert +Eugene +Ralph +Bob +Jim +Ernest +Norman +Melvin +Walter +Harry +Roger +Bill +Billy +Manuel +Wayne +Jimmy +Leonard +Stanley +Anthony +Gilbert +Henry +Marvin +Ray +Tommy +Dale +Earl +Louis +Dennis +Johnny +Bobby +Clifford +Clarence +Floyd +Glen +Howard +Gene +Douglas +Gordon +Philip +Eddie +Allen +Leo +Lloyd +Phillip +Ronnie +Samuel +Tony +Duane +Jose +Theodore +Keith +Lee +Patrick +Russell +Glenn +Arnold +Delbert +Danny +Dick +Pete +Stephen +Tom +Alan +Alfred +Bruce +Francis +Harvey +Dean +Edwin +Max +Rudy +Terry +Lester +Peter +Steve +Vincent +Victor +Clyde +Jackie +Vernon +Alvin +Andrew +Bernard +Dan +Jimmie +Virgil +Byron +Mike +Ted +Warren +Wesley +Curtis +Darrell +Everett +Rodney +Claude +Elmer +Herbert +Ivan +Lewis +Martin +Myron +Roland +Alfonso +Benny +Franklin +Lonnie +Ben +Benjamin +Carlos +Frederick +Jon +Orlando +Sam +Willard +Dave +Nick +Wilbur +Alex +Andy +Cecil +Jerome +Jesse +Julian +Leon +Leslie +Lyle +Lynn +Rex +Allan +Bennie +Dallas +Darrel +Felix +Garry +Hugh +Isaac +Jake +Johnnie +Leland +Loren +Marion +Marshall +Sammy +Steven +Chester +Edgar +Eldon +Jay +Jerald +Karl +Laurence +Louie +Lowell +Merle +Neil +Willie +Bernie +Buddy +Calvin +Charlie +Chuck +Clinton +Fredrick +Mark +Milton +Monte +Ruben +Rudolph +Salvador +Chris +Delmar +Dwight +Eloy +Eric +Fernando +Francisco +Freddie +Jacob +Loyd +Lyman +Morris +Pat +Reuben +Tim +Timothy +Alva +Amos +Brian +Clayton +Conrad +Daryl +Delfino +Delmer +Donnie +Emmett +Ernie +Fidel +Gerry +Gregory +Gus +Juan +Junior +Ken +Kent +Lanny +Nicholas +Orville +Pedro +Phil +Stuart +Toby +Wallace +Robert +James +John +Richard +William +Charles +Donald +David +Larry +Ronald +Thomas +George +Jerry +Kenneth +Joe +Gary +Gerald +Frank +Joseph +Edward +Raymond +Jack +Paul +Dennis +Harold +Norman +Lawrence +Arthur +Michael +Fred +Don +Roger +Ralph +Wayne +Leroy +Bill +Dale +Eugene +Henry +Bob +Daniel +Jim +Carl +Ernest +Albert +Walter +Gilbert +Roy +Terry +Marvin +Melvin +Ray +Harry +Stanley +Johnny +Leonard +Russell +Anthony +Billy +Bruce +Gene +Jimmy +Stephen +Delbert +Douglas +Clifford +Floyd +Lloyd +Howard +Tom +Eddie +Leo +Tony +Vernon +Manuel +Max +Philip +Alfred +Dean +Jose +Louis +Alan +Earl +Glen +Phillip +Tommy +Allen +Danny +Jimmie +Lee +Dick +Herbert +Victor +Mike +Pete +Sam +Warren +Darrell +Glenn +Alvin +Clarence +Claude +Duane +Edwin +Franklin +Frederick +Gordon +Rodney +Leslie +Peter +Ted +Wesley +Bobby +Clyde +Dave +Harvey +Lester +Patrick +Samuel +Virgil +Jesse +Keith +Steve +Alfonso +Andrew +Arnold +Martin +Orlando +Ronnie +Theodore +Jon +Juan +Roland +Wallace +Eldon +Everett +Rudy +Cecil +Elmer +Calvin +Charlie +Jesus +Lewis +Myron +Vincent +Allan +Bennie +Bernard +Bert +Dan +Francis +Guy +Lyle +Marion +Merle +Ruben +Barry +Byron +Carlos +Darrel +Felix +Ivan +Jay +Jerald +Karl +Loren +Louie +Morris +Rex +Rudolph +Willard +Alex +Ben +Clark +Jackie +Kent +Lynn +Marshall +Milton +Nick +Orville +Ross +Sammy +Antonio +Benny +Clinton +Freddie +Fredrick +Herman +Hugh +Jake +Johnnie +Julian +Leland +Leon +Lonnie +Mark +Oliver +Steven +Teddy +Al +Benjamin +Chester +Forrest +Francisco +Frankie +Isaac +Joel +Ken +Kenny +Neil +Sidney +Stuart +Timothy +Wendell +Clayton +Conrad +Darryl +Dwayne +Dwight +Gale +Jerome +Jess +Junior +Laurence +Noel +Sherman +Tim +Willis +Adolph +Ambrose +Amos +Archie +Armando +Bryan +Carroll +Clifton +Craig +Darwin +Delmer +Edmund +Elden +Elias +Emil +Garry +Gregory +Lanny +Lowell +Loyd +Luis +Miguel +Neal +Toby +Val +Wilbert +Wilbur +Wilfred +Willie +Robert +John +James +Richard +William +Larry +David +Donald +Charles +Ronald +Gary +George +Jerry +Thomas +Kenneth +Joe +Edward +Paul +Michael +Joseph +Frank +Jack +Raymond +Gerald +Dennis +Arthur +Harold +Leroy +Ralph +Fred +Carl +Roger +Albert +Daniel +Lawrence +Ernest +Eugene +Norman +Henry +Jim +Wayne +Louis +Roy +Bill +Dale +Don +Marvin +Gilbert +Harry +Jimmy +Melvin +Leonard +Stephen +Douglas +Bob +Gene +Walter +Johnny +Tony +Billy +Jose +Manuel +Terry +Alfred +Anthony +Delbert +Howard +Lloyd +Ray +Allen +Eddie +Floyd +Victor +Stanley +Vernon +Tommy +Philip +Phillip +Ronnie +Tom +Earl +Glen +Patrick +Samuel +Theodore +Bobby +Clifford +Dean +Lee +Leo +Steve +Clarence +Jimmie +Keith +Peter +Duane +Jon +Danny +Franklin +Glenn +Gordon +Leslie +Lyle +Mike +Russell +Alan +Ben +Dan +Herbert +Herman +Wesley +Harvey +Jackie +Jesse +Martin +Max +Rudy +Bernard +Bruce +Edwin +Francis +Loren +Pete +Ted +Allan +Alvin +Cecil +Chester +Clyde +Claude +Darrell +Dave +Leland +Leon +Felix +Frederick +Dick +Jay +Kent +Lester +Orlando +Rodney +Warren +Steven +Brian +Byron +Curtis +Darrel +Garry +Lewis +Mickey +Sam +Vincent +Wendell +Daryl +Edgar +Jerald +Virgil +Wallace +Antonio +Benjamin +Carlos +Everett +Jerome +Juan +Julian +Kenny +Lonnie +Merle +Sammy +Alex +Barry +Calvin +Chris +Eldon +Elmer +Eloy +Freddie +Guy +Ivan +Johnnie +Lynn +Mark +Milton +Phil +Rudolph +Willard +Adolph +Andy +Arnold +Bennie +Bert +Dallas +Hugh +Isaac +Lowell +Marion +Neal +Ruben +Teddy +Ernie +Fredrick +Gregory +Monte +Rex +Roland +Timothy +Toby +Vern +Wilbur +Abel +Alexander +Benny +Bernie +Christopher +Clayton +Darryl +Doyle +Elwood +Frankie +Jacob +Jess +Ken +Maurice +Mitchell +Neil +Nick +Perry +Ramon +Stan +Stuart +Willie +Alberto +Andrew +Archie +Charlie +Chuck +Clark +Conrad +Dwight +Harley +Homer +Irvin +Jake +Karl +Lanny +Marlin +Micheal +Miguel +Myron +Pat +Pedro +Ross +Salvador +Sherman +Tim +Truman +Robert +James +John +Richard +William +Larry +David +Charles +Ronald +Donald +Gary +George +Jerry +Thomas +Kenneth +Joseph +Joe +Paul +Frank +Gerald +Raymond +Edward +Michael +Dennis +Jack +Roger +Harold +Arthur +Ralph +Lawrence +Fred +Daniel +Leroy +Albert +Carl +Bill +Jim +Don +Anthony +Henry +Gilbert +Wayne +Harry +Louis +Eugene +Stephen +Dale +Norman +Roy +Ernest +Leonard +Melvin +Johnny +Phillip +Manuel +Stanley +Bob +Lloyd +Tony +Walter +Marvin +Terry +Howard +Ronnie +Alfred +Mike +Eddie +Floyd +Leo +Allen +Clifford +Edwin +Keith +Douglas +Gene +Patrick +Peter +Philip +Steven +Danny +Glenn +Gordon +Tom +Vernon +Billy +Jimmy +Max +Alan +Earl +Lee +Ray +Harvey +Tommy +Victor +Bruce +Jose +Rodney +Barry +Herbert +Leslie +Steve +Dan +Darrell +Delbert +Duane +Glen +Jay +Martin +Samuel +Dean +Francis +Clyde +Rudy +Andrew +Clarence +Dick +Jon +Mark +Russell +Theodore +Bernard +Loren +Sam +Ted +Timothy +Frederick +Herman +Alvin +Claude +Kent +Pete +Rudolph +Warren +Cecil +Conrad +Dave +Everett +Jesse +Jimmie +Nick +Vincent +Wesley +Alex +Freddie +Garry +Lewis +Lowell +Orlando +Pat +Benjamin +Chester +Eldon +Franklin +Hugh +Lyle +Arnold +Benny +Darrel +Ivan +Jerome +Lynn +Milton +Neil +Alfonso +Antonio +Bennie +Byron +Calvin +Curtis +Dwight +Elmer +Felix +Jackie +Johnnie +Rex +Roland +Wendell +Willard +Ben +Bert +Carlos +Charlie +Clinton +Dwayne +Guy +Isaac +Jeffrey +Joel +Leland +Ruben +Wilbur +Edmund +Ervin +Frankie +Gale +Harley +Jesus +Lester +Louie +Maurice +Myron +Nicholas +Oscar +Ramon +Tim +Toby +Wallace +Aaron +Andy +Archie +Bobby +Brian +Chris +Clark +Clayton +Darryl +Donnie +Eric +Grant +Juan +Karl +Lanny +Lonnie +Marion +Marlin +Merle +Moses +Orville +Ross +Sammy +Stan +Virgil +Abel +Adolph +Alden +Bernie +Buddy +Christopher +Dallas +Ed +Edgar +Elbert +Elden +Fredrick +Galen +Gregory +Jake +Laurence +Luis +Mary +Mickey +Nathan +Oliver +Phil +Stuart +Tomas +Willie +Robert +John +James +Richard +William +David +Ronald +Larry +Donald +Charles +Thomas +Gary +Jerry +Michael +Kenneth +George +Frank +Paul +Joseph +Gerald +Edward +Dennis +Joe +Jack +Raymond +Fred +Douglas +Daniel +Harold +Roger +Arthur +Albert +Carl +Lawrence +Anthony +Walter +Eugene +Ralph +Ray +Bill +Henry +Don +Jim +Stanley +Ernest +Gilbert +Johnny +Howard +Dale +Stephen +Roy +Melvin +Leroy +Patrick +Marvin +Harry +Steve +Bruce +Gene +Mike +Terry +Alfred +Clifford +Gordon +Jose +Leonard +Leslie +Lloyd +Louis +Samuel +Tony +Wayne +Lee +Manuel +Russell +Eddie +Tommy +Vernon +Victor +Danny +Norman +Phillip +Floyd +Keith +Philip +Bob +Duane +Jimmy +Jay +Tom +Darrell +Earl +Steven +Allen +Rodney +Alan +Billy +Glenn +Theodore +Wesley +Andrew +Herbert +Jesse +Jimmie +Leon +Lewis +Mark +Bernard +Bobby +Dean +Glen +Leo +Timothy +Warren +Arnold +Barry +Ronnie +Frederick +Harvey +Max +Ted +Alvin +Benjamin +Jon +Clyde +Clarence +Dick +Edwin +Elmer +Franklin +Lyle +Lynn +Peter +Dan +Dave +Delbert +Garry +Hugh +Lester +Martin +Rudy +Willard +Francis +Kent +Sam +Calvin +Clinton +Edgar +Laurence +Pete +Scott +Virgil +Alex +Ben +Charlie +Eldon +Freddie +Jackie +Jeffrey +Leland +Maurice +Neil +Orlando +Ruben +Tim +Vincent +Allan +Benny +Chester +Claude +Craig +Frankie +Jerald +Jerome +Karl +Loren +Orville +Stuart +Cecil +Chris +Clayton +Everett +Fidel +Herman +Ivan +Jacob +Julian +Lowell +Myron +Nicholas +Pat +Sammy +Alfonso +Andy +Brian +Carlos +Felix +Fredrick +Jesus +Marshall +Micheal +Oscar +Ramon +Salvador +Wilbur +Abel +Bennie +Byron +Curtis +Johnnie +Lanny +Lupe +Luther +Mario +Marion +Milton +Neal +Rex +Teddy +Vern +Willie +Delmer +Eloy +Forrest +Gregory +Guy +Harley +Jake +Jess +Joel +Lonnie +Nelson +Perry +Randall +Rodger +Toby +Tracy +Alberto +Archie +Bonnie +Buddy +Clark +Dallas +Darrel +Darryl +Denny +Dwain +Dwight +Eric +Gabriel +Gail +Gerry +Harlan +Homer +Ira +Jan +Ken +Louie +Merle +Nick +Roberto +Ronny +Ross +Rudolph +Wendell +Willis +James +Robert +John +Richard +William +David +Charles +Ronald +Larry +Gary +Donald +Michael +Kenneth +Thomas +George +Jerry +Dennis +Paul +Joseph +Edward +Frank +Raymond +Joe +Gerald +Roger +Jack +Daniel +Harold +Ralph +Arthur +Douglas +Fred +Walter +Lawrence +Anthony +Stephen +Albert +Wayne +Eugene +Carl +Terry +Leroy +Manuel +Bill +Henry +Jim +Leonard +Patrick +Stanley +Howard +Norman +Harry +Danny +Victor +Johnny +Philip +Steve +Dale +Roy +Clifford +Ernest +Jimmy +Marvin +Earl +Gene +Mike +Ronnie +Tommy +Bruce +Don +Russell +Tom +Alan +Gilbert +Keith +Louis +Melvin +Lloyd +Phillip +Ray +Allen +Duane +Steven +Tony +Leslie +Timothy +Clarence +Eddie +Dan +Frederick +Gordon +Alvin +Bob +Dean +Edwin +Pete +Vernon +Billy +Glenn +Jay +Mark +Peter +Alfred +Floyd +Lee +Andrew +Lewis +Martin +Glen +Jesse +Samuel +Lynn +Max +Rodney +Theodore +Warren +Bobby +Lester +Sam +Clyde +Darrell +Dick +Leland +Benjamin +Delbert +Francis +Harvey +Dave +Felix +Jimmie +Jose +Leo +Leon +Rex +Rudy +Ted +Wesley +Brian +Calvin +Cecil +Dwight +Garry +Herbert +Juan +Kent +Myron +Barry +Ben +Bernard +Chester +Clark +Lyle +Nicholas +Vincent +Franklin +Karl +Benny +Freddie +Hugh +Johnnie +Roland +Sammy +Virgil +Byron +Charlie +Chris +Edgar +Everett +Jake +Julian +Nick +Alex +Bert +Carlos +Eldon +Elmer +Milton +Ron +Ross +Ruben +Wallace +Allan +Arnold +Claude +Jan +Jerome +Jesus +Jon +Lowell +Maurice +Micheal +Randall +Rudolph +Tim +Willard +Cary +Craig +Curtis +Darrel +Eric +Fredrick +Harley +Jackie +Jeffrey +Jerald +Lonnie +Orlando +Teddy +Clinton +Dwayne +Frankie +Gerry +Gregory +Jacob +Joel +Kurt +Loren +Luis +Pat +Phil +Wilbur +Antonio +Brent +Clayton +Eloy +Emmett +Forrest +Herman +Ivan +Jess +Kenny +Laurence +Merle +Morris +Nathan +Neal +Ronny +Scott +Wendell +Willis +Alfonso +Andy +Bennie +Bernie +Billie +Christopher +Colin +Ernie +Guy +Homer +Kelly +Lavern +Louie +Noel +Orville +Oscar +Owen +Ramon +Randy +Ricky +Robin +Sheldon +Sidney +Spencer +Toby +Tomas +Truman +Robert +John +James +Richard +William +David +Michael +Charles +Larry +Ronald +Gary +Donald +Thomas +George +Kenneth +Paul +Joseph +Joe +Dennis +Jerry +Gerald +Frank +Edward +Raymond +Daniel +Jack +Roger +Douglas +Fred +Arthur +Albert +Harold +Jim +Ralph +Lawrence +Anthony +Stephen +Dale +Gilbert +Terry +Walter +Stanley +Wayne +Danny +Leroy +Mike +Norman +Bill +Louis +Carl +Don +Jimmy +Johnny +Manuel +Russell +Bob +Henry +Steve +Tom +Steven +Alan +Eugene +Marvin +Roy +Victor +Ernest +Glenn +Leonard +Theodore +Alfred +Gene +Patrick +Howard +Mark +Tony +Allen +Billy +Lloyd +Eddie +Harry +Phillip +Clifford +Philip +Ray +Dean +Jose +Keith +Lee +Leslie +Timothy +Bruce +Melvin +Pete +Barry +Glen +Martin +Vernon +Clarence +Dan +Earl +Herbert +Jay +Duane +Floyd +Gordon +Jesse +Jon +Peter +Ronnie +Samuel +Darrell +Delbert +Frederick +Clyde +Felix +Lynn +Tommy +Bernard +Dave +Rodney +Brian +Edwin +Warren +Bobby +Leo +Max +Wesley +Andrew +Dwight +Everett +Ted +Alvin +Lewis +Chris +Fredrick +Ivan +Jimmie +Kent +Loren +Rudy +Willard +Cecil +Elmer +Harvey +Micheal +Sam +Byron +Forrest +Lyle +Antonio +Arnold +Calvin +Francis +Laurence +Ben +Benny +Dick +Freddie +Lonnie +Pat +Allan +Benjamin +Claude +Jacob +Juan +Leon +Lester +Merle +Roland +Ron +Ruben +Sammy +Alfonso +Bennie +Carlos +Curtis +Eldon +Eric +Herman +Jerome +Joel +Phil +Andy +Francisco +Galen +Garry +Guy +Jackie +Jake +Jeffrey +Jerald +Julian +Kenny +Rafael +Randall +Ricky +Angelo +Carroll +Craig +Darrel +Ernie +Franklin +Gale +Grant +Gregory +Hugh +Johnnie +Karl +Leland +Milton +Nick +Ramon +Rex +Tim +Willie +Adolph +Alex +Burton +Charlie +Clark +Earnest +Ervin +Jess +Ken +Kurt +Lance +Louie +Loyd +Marc +Sidney +Stan +Stuart +Terrence +Toby +Vern +Vincent +Virgil +Wilbur +Abel +Archie +August +Christopher +Clinton +Conrad +Denny +Donnie +Dwayne +Edmund +Frederic +Gabriel +Geoffrey +Isaac +Jan +Jeffery +Jesus +Mary +Maurice +Merlin +Michel +Myron +Nicholas +Randy +Roberto +Rodger +Salvador +Spencer +Unknown +Robert +John +James +Richard +William +David +Larry +Michael +Gary +Charles +Donald +Ronald +Thomas +Kenneth +George +Dennis +Paul +Jerry +Joseph +Frank +Edward +Daniel +Joe +Jack +Raymond +Gerald +Roger +Stephen +Douglas +Stanley +Steven +Danny +Anthony +Fred +Harold +Johnny +Arthur +Terry +Jim +Ernest +Lawrence +Manuel +Patrick +Albert +Leroy +Walter +Ray +Mike +Ralph +Henry +Carl +Wayne +Leonard +Bill +Roy +Dale +Bruce +Alan +Harry +Jimmy +Jose +Philip +Samuel +Tom +Gilbert +Norman +Bob +Eugene +Louis +Tony +Eddie +Mark +Timothy +Howard +Steve +Allen +Don +Victor +Marvin +Peter +Gene +Martin +Clifford +Lee +Leslie +Phillip +Ronnie +Floyd +Glenn +Gregory +Russell +Billy +Rodney +Vernon +Alfred +Keith +Darrell +Duane +Earl +Jay +Jon +Dan +Gordon +Lloyd +Melvin +Tommy +Benjamin +Theodore +Frederick +Kent +Brian +Dwight +Lynn +Micheal +Alvin +Andrew +Dick +Garry +Bernard +Carlos +Clarence +Edwin +Elmer +Lonnie +Pete +Sam +Dave +Glen +Barry +Harvey +Jesse +Leo +Rudy +Chester +Craig +Dean +Everett +Warren +Alex +Bobby +Franklin +Lester +Loren +Max +Pat +Sammy +Ted +Allan +Ben +Christopher +Claude +Eric +Francis +Jeffrey +Juan +Julian +Neil +Randy +Arnold +Jackie +Jimmie +Joel +Kenny +Rick +Rudolph +Toby +Wesley +Andy +Calvin +Charlie +Curtis +Delbert +Felix +Jerald +Laurence +Lewis +Vincent +Donnie +Jesus +Nicholas +Nick +Ruben +Alfonso +Chris +Clyde +Herbert +Herman +Karl +Kirk +Leland +Leon +Lyle +Marion +Milton +Orlando +Phil +Scott +Tim +Bert +Cecil +Daryl +Forrest +Francisco +Freddie +Grant +Hugh +Ivan +Jacob +Jan +Johnnie +Lanny +Lowell +Orville +Randolph +Ricky +Roderick +Wallace +Wilbur +Bennie +Benny +Clayton +Conrad +Doug +Eloy +Frankie +Fritz +Harley +Oliver +Pedro +Perry +Rex +Roland +Ron +Salvador +Sidney +Stuart +Willis +Abel +Adolph +Alexander +Archie +Armando +Barney +Brent +Cary +Dallas +Darrel +Darryl +Dwayne +Earnest +Ernie +Gale +Galen +Greg +Hal +Jake +Jerome +Jonathan +Kurt +Luis +Matthew +Maurice +Morris +Nathan +Nelson +Randall +Robert +John +James +Richard +David +William +Michael +Gary +Ronald +Thomas +Larry +Donald +Charles +Dennis +Kenneth +Jerry +Joseph +George +Paul +Daniel +Edward +Joe +Frank +Stephen +Terry +Raymond +Gerald +Roger +Jack +Fred +Steven +Harold +Douglas +Jim +Lawrence +Anthony +Patrick +Danny +Arthur +Wayne +Dale +Bruce +Timothy +Mike +Johnny +Leroy +Mark +Walter +Carl +Ernest +Eugene +Leonard +Louis +Ralph +Harry +Don +Stanley +Henry +Roy +Russell +Alan +Albert +Bill +Steve +Manuel +Gilbert +Tom +Jimmy +Gene +Phillip +Ronnie +Gregory +Allen +Rodney +Keith +Lee +Martin +Marvin +Bob +Eddie +Norman +Peter +Philip +Barry +Billy +Gordon +Howard +Lloyd +Samuel +Ted +Tommy +Dan +Jose +Leslie +Ray +Kent +Melvin +Alfred +Clifford +Jesse +Victor +Dave +Duane +Frederick +Jay +Brian +Clarence +Dean +Dick +Earl +Floyd +Jon +Pete +Andrew +Harvey +Randall +Sam +Warren +Clyde +Curtis +Darrell +Francis +Theodore +Tony +Vernon +Alvin +Dwight +Edwin +Glen +Lewis +Randy +Carlos +Glenn +Leo +Leon +Craig +Delbert +Lonnie +Rudy +Scott +Herbert +Jeffrey +Jimmie +Karl +Ken +Micheal +Randolph +Wesley +Alex +Ben +Benny +Byron +Garry +Lynn +Benjamin +Calvin +Chris +Eric +Freddie +Lance +Leland +Lester +Loren +Max +Rudolph +Vincent +Arnold +Bernard +Bobby +Cecil +Clinton +Bernie +Jerome +Jesus +Joel +Lyle +Roland +Sammy +Willard +Alfonso +Charlie +Claude +Juan +Louie +Neil +Rick +Ruben +Tim +Alexander +Chester +Eldon +Francisco +Franklin +Jerald +Johnnie +Kirk +Laurence +Nick +Sidney +Virgil +Andy +Bryan +Christopher +Clark +Daryl +Ernie +Felix +Frankie +Hugh +Jackie +Milton +Orlando +Pat +Phil +Rex +Simon +Stuart +Bennie +Bert +Clayton +Edmund +Frederic +Greg +Herman +Jan +Jonathan +Julian +Kenny +Kim +Lanny +Marion +Merle +Mitchell +Nicholas +Perry +Ramon +Ron +Angelo +Antonio +Cary +Doug +Dwayne +Elbert +Elmer +Everett +Guy +Jess +Kirby +Lupe +Matthew +Maurice +Neal +Rickey +Ricky +Ross +Terrance +Terrence +Todd +Wallace +Aaron +Adolph +Allan +Armando +Art +Billie +Dallas +Darrel +Darryl +Donn +Donnie +Drew +Edgar +Ernesto +Fredrick +Grant +Gregg +Harley +Jackson +Kelly +Kevin +Lavern +Lorenzo +Lowell +Marc +Marlin +Marshall +Owen +Raul +Rene +Robin +Truman +Willie +Robert +John +James +Richard +David +Michael +William +Larry +Gary +Ronald +Donald +Thomas +Charles +Kenneth +Dennis +Joseph +Jerry +George +Daniel +Paul +Stephen +Frank +Edward +Steven +Terry +Jack +Roger +Gerald +Joe +Raymond +Lawrence +Gregory +Danny +Ralph +Douglas +Fred +Arthur +Steve +Anthony +Patrick +Tom +Dale +Bruce +Mark +Timothy +Alan +Carl +Harold +Wayne +Jim +Mike +Bill +Walter +Philip +Roy +Don +Eugene +Johnny +Albert +Leonard +Russell +Gilbert +Allen +Leroy +Ernest +Howard +Rodney +Ronnie +Stanley +Ray +Harry +Manuel +Louis +Gordon +Glen +Henry +Lee +Jimmy +Phillip +Duane +Melvin +Bob +Jose +Leo +Peter +Barry +Dean +Glenn +Keith +Gene +Rudy +Victor +Clifford +Dan +Norman +Randy +Samuel +Lloyd +Martin +Eddie +Jay +Warren +Brian +Marvin +Christopher +Earl +Floyd +Leslie +Tony +Bernard +Bobby +Harvey +Jeffrey +Jesse +Kent +Alfred +Andrew +Herbert +Randall +Ted +Vernon +Benjamin +Ben +Dave +Edwin +Jon +Scott +Lynn +Rick +Ricky +Tommy +Billy +Eric +Tim +Alvin +Clarence +Craig +Darrell +Jimmie +Pete +Sam +Theodore +Darrel +Delbert +Leon +Frederick +Greg +Herman +Lewis +Lonnie +Sammy +Joel +Ron +Calvin +Carlos +Chris +Daryl +Dwight +Felix +Max +Nicholas +Rickey +Ruben +Antonio +Byron +Clyde +Francis +Garry +Loren +Nick +Virgil +Wesley +Allan +Clayton +Curtis +Franklin +Micheal +Phil +Rex +Arnold +Clinton +Frankie +Freddie +Guy +Jerome +Karl +Dick +Elmer +Jesus +Juan +Leland +Lowell +Perry +Cecil +Chester +Edgar +Hugh +Louie +Milton +Pat +Roland +Rudolph +Alex +Benny +Dallas +Darryl +Dwayne +Fredrick +Gabriel +Jackie +Johnnie +Lester +Lyle +Orlando +Ross +Vincent +Archie +Brent +Dana +Grant +Jan +Jerald +Jonathan +Kelly +Kenny +Luis +Marion +Neil +Pedro +Rodger +Alexander +Alfonso +Bennie +Charlie +Conrad +Doyle +Earnest +Everett +Gail +Hal +Ivan +Ken +Kim +Lupe +Mario +Marshall +Nathan +Neal +Randolph +Reginald +Sherman +Stuart +Terrance +Wallace +Willie +Chuck +Dee +Eldon +Emilio +Ernie +Gale +Jeff +Jessie +Kirk +Kurt +Merle +Nelson +Rocky +Terrence +Wendell +Adolph +Angelo +Armando +Bernie +Bryan +Cary +Charley +Dannie +Edmund +Ellis +Eloy +Gregg +Harley +Jerold +Julio +Kerry +Lance +Lauren +Marc +Miles +Myron +Noel +Ramon +Robin +Rod +Ronny +Salvador +Santos +Stan +Vern +Willis +Robert +John +James +David +William +Michael +Richard +Ronald +Gary +Larry +Charles +Thomas +Donald +Kenneth +Daniel +Stephen +Dennis +Paul +Joseph +Steven +George +Jerry +Frank +Edward +Terry +Joe +Jack +Raymond +Roger +Gerald +Douglas +Danny +Lawrence +Bruce +Gregory +Anthony +Mike +Timothy +Mark +Fred +Patrick +Ralph +Steve +Wayne +Dale +Harold +Carl +Roy +Jim +Walter +Alan +Phillip +Arthur +Eugene +Tom +Henry +Albert +Rodney +Russell +Leroy +Manuel +Ernest +Peter +Bill +Jimmy +Allen +Stanley +Don +Marvin +Johnny +Leonard +Martin +Barry +Keith +Norman +Philip +Harry +Gilbert +Glenn +Kent +Ronnie +Jose +Andrew +Dan +Howard +Chris +Ray +Duane +Gordon +Louis +Tommy +Tony +Jesse +Alfred +Billy +Clifford +Gene +Victor +Alvin +Brian +Christopher +Frederick +Eric +Lee +Melvin +Vernon +Craig +Randall +Samuel +Dave +Earl +Eddie +Darrell +Dean +Jeffrey +Leslie +Lynn +Randy +Bob +Lloyd +Scott +Theodore +Floyd +Lonnie +Pete +Bobby +Jay +Sam +Arnold +Benjamin +Warren +Glen +Micheal +Bernard +Edwin +Herbert +Rick +Rudy +Carlos +Clarence +Garry +Ricky +Ted +Jon +Lewis +Max +Rex +Clyde +Karl +Louie +Allan +Bennie +Byron +Delbert +Dwight +Francis +Leo +Nicholas +Andy +Dick +Harvey +Johnnie +Randolph +Tim +Fredrick +Joel +Neil +Wesley +Benny +Calvin +Jackie +Jesus +Jimmie +Loren +Phil +Ron +Terrence +Alex +Chester +Eldon +Greg +Leon +Lyle +Vincent +Curtis +Felix +Gregg +Juan +Lester +Marc +Rocky +Ross +Sammy +Ben +Bradley +Cecil +Daryl +Everett +Kenny +Kevin +Stuart +Willard +Willie +Abel +Antonio +Claude +Darrel +Elmer +Franklin +Jan +Julian +Ken +Kerry +Kim +Leland +Mario +Nathan +Rudolph +Alfonso +Barney +Bradford +Clinton +Dana +Ernie +Frankie +Guy +Ivan +Marion +Milton +Nick +Pat +Roland +Royce +Terrance +Alexander +Bert +Doug +Gale +Herman +Hugh +Jacob +Jake +Jerald +Jonathan +Kelly +Kurt +Laurence +Luis +Merle +Monte +Myron +Orlando +Oscar +Pedro +Perry +Rickie +Salvador +Wendell +Armando +Brent +Clark +Clayton +Donnie +Doyle +Fernando +Freddie +Gabriel +Hal +Jerome +Kenton +Marcus +Mickey +Nelson +Ramon +Rickey +Sidney +Tracy +Unknown +Alfredo +Boyd +Brad +Charley +Charlie +Conrad +Dannie +Donn +Dwain +Dwayne +Edgar +Edmund +Ervin +Filbert +Francisco +Garth +Geoffrey +Grant +Harley +Hubert +Jeff +Jorge +Kirk +Lance +Mack +Marshall +Maurice +Neal +Orville +Pablo +Rafael +Robin +Rod +Rodger +Santiago +Travis +Troy +Van +Vaughn +Vern +Wilbur +John +Robert +James +David +Michael +Richard +William +Gary +Larry +Thomas +Charles +Ronald +Donald +Steven +Daniel +Kenneth +Stephen +Dennis +George +Joseph +Jerry +Paul +Mark +Douglas +Edward +Terry +Jack +Frank +Roger +Timothy +Anthony +Danny +Gerald +Gregory +Bruce +Joe +Raymond +Patrick +Lawrence +Arthur +Alan +Wayne +Harold +Dale +Steve +Mike +Phillip +Carl +Eugene +Fred +Ralph +Harry +Walter +Jimmy +Rodney +Russell +Roy +Stanley +Leonard +Louis +Albert +Henry +Keith +Samuel +Manuel +Ernest +Lee +Leroy +Randall +Ronnie +Jim +Melvin +Tom +Dan +Randy +Norman +Gilbert +Glenn +Johnny +Peter +Philip +Scott +Kent +Allen +Marvin +Andrew +Bill +Don +Martin +Jeffrey +Christopher +Tony +Brian +Craig +Darrell +Howard +Micheal +Rick +Duane +Tommy +Billy +Dean +Frederick +Jose +Theodore +Eddie +Chris +Gene +Glen +Kevin +Tim +Victor +Gordon +Vernon +Dave +Eric +Floyd +Ruben +Alfred +Jesse +Lloyd +Ricky +Daryl +Jay +Ray +Leo +Pete +Rudy +Bob +Clifford +Clyde +Ted +Barry +Calvin +Earl +Karl +Lonnie +Vincent +Warren +Arnold +Benjamin +Harvey +Leslie +Wesley +Bernard +Rex +Alvin +Ben +Bobby +Curtis +Jon +Lewis +Randolph +Clarence +Juan +Kirk +Lynn +Milton +Sammy +Brent +Garry +Herbert +Lester +Rudolph +Alfonso +Allan +Carlos +Chester +Francis +Kurt +Leland +Nicholas +Alex +Dwight +Edwin +Felix +Jerald +Julian +Kerry +Max +Ramon +Byron +Darryl +Delbert +Kim +Lance +Sam +Stuart +Benny +Bryan +Edgar +Ernie +Everett +Jerome +Joel +Louie +Nick +Roland +Terrence +Virgil +Andy +Antonio +Bert +Bradley +Charlie +Claude +Darrel +Franklin +Fredrick +Gregg +Laurence +Rickey +Terrance +Toby +Willard +Alexander +Bennie +Bernie +Clinton +Edmund +Galen +Hal +Hugh +Jeffery +Jimmie +Kelly +Neil +Carroll +Cecil +Clayton +Dallas +Freddie +Gale +Gerry +Greg +Herman +Ivan +Jess +Leon +Marc +Pat +Perry +Rocky +Ron +Willie +Bradford +Clark +Ed +Johnnie +Ken +Kenny +Kenton +Lon +Loren +Luis +Mario +Marlin +Marshall +Maurice +Miguel +Monty +Phil +Roderick +Rodger +Sherman +Teddy +Armando +Brad +Donnie +Elmer +Grant +Guy +Jacob +Lowell +Loyd +Monte +Myron +Nathan +Salvador +Troy +Bart +Boyd +Cary +Dana +Danial +Donn +Dwayne +Eduardo +Eldon +Ellis +Eloy +Florentino +Francisco +Garth +Harley +Humberto +Ira +Jake +Jan +Jesus +Jorge +Kip +Lorenzo +Lyle +Matthew +Mitchell +Orlando +Reginald +Rickie +Robin +Ross +Van +Wilfred +Robert +John +James +Michael +David +Richard +William +Gary +Thomas +Ronald +Larry +Charles +Donald +Steven +Daniel +Kenneth +Dennis +Mark +Stephen +Paul +Joseph +Edward +Jerry +George +Douglas +Terry +Frank +Gregory +Patrick +Gerald +Raymond +Timothy +Lawrence +Roger +Anthony +Bruce +Joe +Danny +Dale +Jack +Wayne +Harold +Arthur +Alan +Carl +Randy +Keith +Stanley +Eugene +Leonard +Steve +Scott +Peter +Fred +Rodney +Albert +Louis +Philip +Ernest +Leroy +Mike +Glenn +Russell +Phillip +Ralph +Allen +Christopher +Craig +Darrell +Harry +Jimmy +Theodore +Barry +Gilbert +Manuel +Micheal +Andrew +Jeffrey +Johnny +Kent +Marvin +Randall +Samuel +Walter +Roy +Lee +Norman +Henry +Bill +Clifford +Glen +Billy +Dan +Martin +Tom +Jay +Kevin +Victor +Frederick +Leslie +Ronnie +Eddie +Melvin +Rick +Brian +Eric +Howard +Tony +Duane +Edwin +Gordon +Jim +Lynn +Rudy +Chris +Francis +Jesse +Jon +Jose +Tommy +Gene +Ray +Alfred +Kirk +Ricky +Bobby +Don +Curtis +Dean +Earl +Randolph +Warren +Vernon +Benjamin +Dwight +Franklin +Fredrick +Rex +Bradley +Vincent +Floyd +Leon +Lonnie +Max +Herman +Joel +Juan +Pete +Carlos +Clarence +Daryl +Julian +Lester +Lloyd +Luis +Sam +Ted +Alex +Cecil +Ruben +Alvin +Benny +Bernard +Bob +Lewis +Nicholas +Allan +Calvin +Clyde +Dave +Everett +Karl +Kelly +Lyle +Perry +Clinton +Darryl +Freddie +Harvey +Leo +Rudolph +Wesley +Eldon +Elmer +Felix +Greg +Herbert +Jerome +Jimmie +Kerry +Louie +Virgil +Brent +Chester +Delbert +Jesus +Rickey +Roderick +Ross +Sammy +Arnold +Bryan +Byron +Clark +Darwin +Grant +Guy +Ivan +Jan +Jeffery +Kurt +Laurence +Marc +Mario +Marshall +Monte +Neal +Robin +Tim +Adolph +Antonio +Edgar +Frankie +Garry +Gregg +Hugh +Jackie +Marcus +Matthew +Milton +Orlando +Roland +Terrance +Alfonso +Ben +Conrad +Francisco +Jerald +Johnnie +Kim +Lance +Leland +Maurice +Miguel +Morris +Phil +Rocky +Stuart +Toby +Wendell +Willard +Alexander +Bennie +Charlie +Clayton +Dick +Ernesto +Evan +Gale +Galen +Ken +Lowell +Neil +Pat +Pedro +Ramon +Reginald +Rodger +Ron +Salvador +Sidney +Teddy +Terrence +Aaron +Andy +Brad +Clifton +Dana +Darrel +Donnie +Dwayne +Edmund +Eduardo +Forrest +Jake +Jorge +Julio +Malcolm +Nick +Oscar +Randal +Ricardo +Troy +Wade +Wallace +Wilbur +August +Bert +Boyd +Brett +Danial +Ernie +Felipe +Freddy +Gail +Harley +Isaac +Junior +Lanny +Mitchell +Moses +Pablo +Preston +Randell +Reed +Terence +Todd +Van +Vance +Willie +Willis +Robert +Michael +John +James +David +Richard +William +Gary +Thomas +Ronald +Steven +Charles +Donald +Larry +Kenneth +Daniel +Mark +Joseph +Stephen +Paul +Dennis +Douglas +Edward +George +Timothy +Frank +Gregory +Anthony +Jerry +Gerald +Terry +Bruce +Patrick +Roger +Raymond +Dale +Jack +Lawrence +Danny +Rodney +Joe +Randy +Harold +Scott +Stanley +Wayne +Russell +Alan +Brian +Leonard +Carl +Arthur +Jeffrey +Phillip +Craig +Steve +Randall +Eugene +Martin +Henry +Louis +Mike +Albert +Christopher +Keith +Walter +Darrell +Theodore +Kent +Ralph +Allen +Ernest +Fred +Rick +Roy +Andrew +Micheal +Samuel +Harry +Glenn +Clifford +Glen +Marvin +Ricky +Eric +Norman +Benjamin +Kevin +Peter +Dean +Johnny +Manuel +Jose +Dan +Howard +Jimmy +Jon +Gilbert +Gordon +Philip +Ronnie +Barry +Frederick +Bill +Jay +Jim +Lee +Leroy +Lloyd +Melvin +Tommy +Duane +Earl +Ray +Warren +Clarence +Curtis +Jesse +Alfred +Billy +Victor +Rex +Chris +Eddie +Edwin +Leslie +Lynn +Ted +Tom +Tony +Bernard +Don +Gene +Vernon +Franklin +Randolph +Nicholas +Bobby +Lester +Clinton +Clyde +Lyle +Vincent +Bradley +Calvin +Felix +Herbert +Leo +Neil +Ruben +Wesley +Alvin +Dave +Guy +Kirk +Lonnie +Rickey +Ben +Floyd +Francis +Fredrick +Harvey +Karl +Kerry +Matthew +Pete +Robin +Rudy +Todd +Allan +Brent +Greg +Kelly +Mickey +Ross +Byron +Daryl +Freddie +Joel +Lewis +Luis +Nick +Sam +Clayton +Darrel +Elmer +Garry +Herman +Jerome +Juan +Kim +Leon +Perry +Carlos +Dwight +Kurt +Lance +Mario +Terrance +Claude +Dana +Everett +Hugh +Jeffery +Jesus +Jimmie +Leland +Rudolph +Terrence +Arnold +Benny +Bob +Clark +Delbert +Francisco +Jackie +Jan +Jerald +Lon +Lowell +Marcus +Max +Morris +Rickie +Rocky +Alex +Alexander +Chester +Grant +Jacob +Neal +Wade +Brad +Bryce +Gregg +Jonathan +Julian +Louie +Marshall +Mitchell +Monte +Monty +Myron +Pat +Sammy +Wallace +Willie +Brett +Bryan +Cecil +Darryl +Frankie +Gabriel +Ivan +Laurence +Loren +Marion +Nathan +Nelson +Oscar +Roland +Stuart +Teddy +Toby +Troy +Virgil +Willard +Aaron +Antonio +Conrad +Dwayne +Edgar +Ernie +Forrest +Gale +Geoffrey +Gerard +Jairo +Kenny +Marc +Miguel +Noel +Ramon +Randal +Reed +Reuben +Roderick +Salvador +Terence +Tim +Van +Andy +Bradford +Darwin +Dickie +Doyle +Eloy +Galen +Jessie +Johnnie +Kelvin +Kenton +Kirby +Kris +Michel +Miles +Orlando +Patricia +Randell +Roberto +Rusty +Robert +Michael +John +David +James +Richard +William +Steven +Thomas +Gary +Mark +Ronald +Daniel +Donald +Charles +Kenneth +Larry +Stephen +Joseph +Paul +Dennis +Douglas +Timothy +Terry +Jerry +Gregory +Edward +George +Frank +Bruce +Raymond +Patrick +Anthony +Gerald +Randy +Jack +Dale +Roger +Joe +Lawrence +Alan +Danny +Jeffrey +Arthur +Scott +Harold +Eugene +Wayne +Stanley +Craig +Kevin +Phillip +Carl +Rodney +Christopher +Andrew +Ernest +Fred +Henry +Roy +Randall +Keith +Rick +Steve +Brian +Ralph +Albert +Glenn +Leonard +Micheal +Walter +Gilbert +Peter +Dean +Lee +Russell +Glen +Kim +Leroy +Mike +Clifford +Johnny +Ricky +Allen +Frederick +Jay +Jimmy +Kent +Martin +Victor +Leslie +Samuel +Philip +Alfred +Lloyd +Ray +Bill +Dan +Manuel +Harry +Marvin +Melvin +Barry +Don +Duane +Howard +Louis +Theodore +Tom +Edwin +Gordon +Jesse +Curtis +Jim +Leo +Marc +Jose +Tony +Darrell +Eric +Norman +Ronnie +Chris +Rex +Floyd +Guy +Randolph +Ted +Wesley +Calvin +Dwight +Kirk +Billy +Gene +Nicholas +Eddie +Neil +Pete +Tommy +Vincent +Bradley +Harvey +Lynn +Warren +Allan +Benjamin +Bobby +Brent +Daryl +Earl +Vernon +Jonathan +Lewis +Max +Ruben +Rudolph +Rudy +Felix +Francis +Juan +Kerry +Kurt +Dana +Franklin +Herbert +Jon +Arnold +Benny +Carlos +Darrel +Fredrick +Jerome +Joel +Kelly +Lyle +Rocky +Roland +Ross +Tim +Alex +Clarence +Everett +Garry +Jerald +Randal +Sam +Antonio +Ben +Bernard +Clyde +Dave +Gerard +Leon +Matthew +Neal +Nick +Robin +Terrance +Bob +Byron +Gregg +Karl +Loren +Monte +Rickie +Brad +Delbert +Jesus +Julian +Lonnie +Rickey +Stuart +Virgil +Bryan +Claude +Forrest +Frankie +Lester +Mitchell +Terrence +Todd +Andy +Bradford +Clinton +Elmer +Gale +Grant +Jake +Jess +Jimmie +Lance +Leland +Mario +Perry +Reginald +Sidney +Alexander +Alvin +Charlie +Chester +Clark +Doyle +Dwayne +Freddie +Greg +Jeffery +Kenny +Lowell +Pedro +Ron +Adolph +Alfonso +Bert +Conrad +Darwin +Francisco +Gabriel +Hal +Herman +Hugh +Jackie +Johnnie +Kirby +Lanny +Laurence +Luis +Marcus +Nathan +Toby +Ward +Wendell +Willie +Adrian +Casey +Cecil +Christophe +Clifton +Darryl +Doug +Edgar +Edmund +Elias +Geoffrey +Gerry +Harley +Ivan +Jacob +Jaime +Ken +Kris +Loyd +Marshall +Merle +Michel +Milton +Morris +Murray +Oscar +Ramon +Ricardo +Salvador +Sammy +Willard +Willis +Angelo +Armando +Bennie +Clayton +Cris +Donn +Earnest +Fernando +Fidel +Irving +Jerrold +Jessie +Jorge +Justin +Kendall +Kip +Kyle +Louie +Marty +Maurice +Mickey +Orlando +Rodger +Rory +Teddy +Terence +Van +Wallace +David +Michael +Robert +John +James +Richard +William +Steven +Gary +Thomas +Charles +Mark +Ronald +Donald +Daniel +Kenneth +Joseph +Stephen +Larry +Paul +Dennis +Douglas +Edward +Timothy +George +Gregory +Terry +Randy +Anthony +Bruce +Jerry +Frank +Raymond +Patrick +Roger +Gerald +Rodney +Lawrence +Jeffrey +Jack +Christopher +Scott +Dale +Stanley +Joe +Arthur +Kevin +Peter +Danny +Wayne +Alan +Keith +Carl +Craig +Roy +Ralph +Steve +Walter +Albert +Randall +Phillip +Andrew +Harold +Rick +Fred +Leonard +Brian +Ernest +Eugene +Henry +Martin +Russell +Mike +Ricky +Lee +Allen +Louis +Philip +Victor +Leroy +Micheal +Samuel +Darrell +Marvin +Clifford +Jay +Jose +Kim +Jimmy +Barry +Melvin +Bradley +Duane +Frederick +Gilbert +Glenn +Howard +Dan +Dean +Norman +Curtis +Kent +Lynn +Ronnie +Theodore +Chris +Glen +Jim +Johnny +Billy +Leslie +Manuel +Jon +Randolph +Ray +Earl +Gordon +Jesse +Kelly +Vernon +Brad +Harry +Tommy +Benjamin +Lloyd +Clarence +Don +Eddie +Tom +Tony +Edwin +Eric +Matthew +Warren +Alfred +Rudy +Wesley +Bobby +Floyd +Karl +Lonnie +Vincent +Daryl +Jeffery +Bill +Gene +Guy +Kirk +Nicholas +Ted +Allan +Byron +Francis +Kurt +Lyle +Marc +Pete +Bernard +Calvin +Carlos +Clyde +Gregg +Leo +Fredrick +Leon +Mario +Neil +Alvin +Antonio +Bob +Bryan +Clinton +Rex +Arnold +Clayton +Garry +Herbert +Loren +Perry +Rickey +Rocky +Aaron +Dana +Dwight +Kerry +Mitchell +Randal +Stuart +Dave +Felix +Jerald +Joel +Jonathan +Louie +Monte +Ruben +Andy +Delbert +Franklin +Grant +Jerome +Jesus +Rudolph +Todd +Alex +Benny +Bradford +Donnie +Dwayne +Francisco +Greg +Jeff +Juan +Ken +Lewis +Myron +Sam +Sammy +Toby +Ben +Brent +Darryl +Edgar +Eloy +Hal +Jacob +Julian +Maurice +Nick +Oscar +Roland +Ron +Ross +Shawn +Van +Virgil +Willie +Ernie +Frankie +Jackie +Lance +Leland +Lester +Ramon +Rodger +Sidney +Tim +Abel +Adolph +Alfonso +Charlie +Christophe +Clark +Claude +Conrad +Edmund +Eldon +Everett +Galen +Harvey +Jimmie +Luis +Max +Robin +Wilbur +Adrian +Alexander +Bennie +Chester +Darrel +Doyle +Elmer +Fernando +Forrest +Geoffrey +Hugh +Lanny +Marcus +Merle +Morris +Ned +Roderick +Rory +Terrence +Vance +Wade +Cecil +Dick +Fidel +Freddie +Gerry +Guadalupe +Jake +Jan +Jason +Johnnie +Jorge +Kenny +Laurence +Marion +Maynard +Michel +Mickey +Orlando +Otis +Pat +Pedro +Roberto +Salvador +Teddy +Unknown +Archie +Bernie +Buddy +Danial +Darwin +Denis +Doug +Erik +Fritz +Gabriel +Harley +Hubert +Isaac +Jerold +Jessie +Justin +Kenton +Marlin +Marshall +Nathan +Noel +Rand +Simon +Spencer +Willard +Willis +Michael +David +Robert +John +James +Richard +William +Steven +Gary +Thomas +Mark +Charles +Daniel +Ronald +Donald +Joseph +Kenneth +Stephen +Larry +Paul +Douglas +Timothy +Dennis +Gregory +George +Anthony +Jerry +Randy +Terry +Edward +Bruce +Frank +Raymond +Jeffrey +Kevin +Gerald +Patrick +Scott +Dale +Roger +Lawrence +Alan +Christopher +Danny +Joe +Wayne +Carl +Rodney +Ricky +Stanley +Craig +Keith +Steve +Brian +Randall +Arthur +Peter +Roy +Martin +Leonard +Jack +Mike +Russell +Ernest +Henry +Walter +Harold +Leroy +Albert +Rick +Phillip +Victor +Eric +Micheal +Philip +Manuel +Ralph +Andrew +Fred +Ray +Allen +Louis +Jay +Gilbert +Darrell +Dean +Norman +Glenn +Howard +Eugene +Johnny +Lee +Samuel +Duane +Kent +Kim +Ronnie +Frederick +Bradley +Gordon +Harry +Jimmy +Jon +Brad +Chris +Lloyd +Tommy +Vernon +Barry +Leslie +Bobby +Curtis +Glen +Clifford +Dan +Guy +Jose +Kirk +Marvin +Billy +Karl +Marc +Melvin +Jeffery +Theodore +Tom +Benjamin +Jesse +Kelly +Vincent +Gene +Herbert +Randolph +Rickey +Tony +Don +Edwin +Floyd +Kurt +Warren +Lonnie +Matthew +Earl +Eddie +Rudy +Ted +Brent +Carlos +Gregg +Wesley +Bill +Jim +Juan +Rex +Sam +Alfred +Alvin +Leo +Lynn +Bryan +Clarence +Dwight +Francisco +Franklin +Max +Nicholas +Allan +Arnold +Lyle +Calvin +Clyde +Dana +Greg +Jonathan +Luis +Ben +Delbert +Felix +Jerome +Rocky +Ruben +Antonio +Jerald +Kerry +Darryl +Francis +Lance +Neil +Jimmie +Joel +Lester +Mitchell +Rudolph +Stuart +Tim +Virgil +Benny +Leon +Monte +Randal +Ricardo +Rickie +Robin +Roland +Ross +Terrance +Terrence +Aaron +Abel +Fredrick +Harvey +Willie +Alexander +Brett +Chester +Clinton +Daryl +Dave +Freddie +Galen +Garry +Jeff +Ken +Leland +Loren +Raul +Rodger +Ron +Toby +Todd +Bernard +Byron +Conrad +Everett +Harley +Jeffry +Julian +Merle +Miguel +Monty +Nick +Pete +Terence +Alfonso +Blair +Bradford +Claude +Doyle +Frankie +Herman +Jackie +Jess +Joey +Lewis +Louie +Lowell +Marcus +Reginald +Sammy +Shawn +Wade +Wendell +Adolph +Alex +Andy +Britt +Cary +Clark +Dirk +Donn +Dwayne +Edgar +Elmer +Forrest +Guadalupe +Jake +Laurence +Mario +Milton +Neal +Nolan +Pat +Stephan +Van +Willard +Alvaro +Bob +Casey +Cecil +Christophe +Darrel +Darwin +Dusty +Eloy +Ernie +Ervin +Grant +Hugh +Jan +Jesus +Kenny +Kenton +Kirby +Lane +Levi +Lorenzo +Marion +Marshall +Myron +Nelson +Orlando +Owen +Sidney +Al +Bart +Blaine +Bryant +Buddy +Chad +Christian +Dane +Dwaine +Gabriel +Gerry +Guillermo +Ivan +Kelvin +Maurice +Miles +Nathan +Perry +Ramon +Sandy +Sean +Troy +Tyler +Unknown +Vaughn +Michael +David +Robert +John +James +Richard +Mark +Steven +William +Thomas +Gary +Daniel +Charles +Kenneth +Ronald +Donald +Joseph +Gregory +Paul +Timothy +Douglas +Stephen +Larry +Dennis +Edward +Randy +Terry +Jeffrey +Anthony +Bruce +Scott +Kevin +Patrick +George +Jerry +Frank +Gerald +Christopher +Dale +Raymond +Roger +Alan +Lawrence +Brian +Steve +Rodney +Ricky +Keith +Danny +Craig +Wayne +Martin +Peter +Rick +Russell +Jack +Roy +Andrew +Joe +Carl +Arthur +Philip +Randall +Phillip +Glenn +Harold +Eric +Micheal +Stanley +Eugene +Leonard +Mike +Jay +Samuel +Manuel +Ralph +Henry +Jon +Kent +Darrell +Louis +Barry +Bradley +Albert +Dean +Ray +Dan +Ernest +Johnny +Lee +Allen +Clifford +Jeffery +Leroy +Kim +Victor +Walter +Fred +Curtis +Gilbert +Jim +Jimmy +Brad +Duane +Harry +Kurt +Matthew +Jesse +Howard +Jose +Marvin +Vincent +Bill +Billy +Chris +Frederick +Kirk +Melvin +Norman +Edwin +Tom +Bobby +Theodore +Alfred +Floyd +Gordon +Guy +Leslie +Karl +Lloyd +Tony +Don +Kelly +Leo +Marc +Randolph +Vernon +Gregg +Joel +Benjamin +Calvin +Eddie +Glen +Mitchell +Pete +Tommy +Neil +Brent +Gene +Greg +Kerry +Nicholas +Rex +Sam +Warren +Dwight +Rickey +Robin +Ronnie +Todd +Ruben +Ted +Clyde +Ross +Wesley +Alvin +Earl +Francis +Lance +Daryl +Dave +Neal +Bob +Delbert +Lewis +Perry +Tim +Arnold +Bryan +Jeff +Lonnie +Luis +Roland +Byron +Clarence +Leon +Lyle +Lynn +Max +Rickie +Terrance +Bernard +Casey +Clark +Freddie +Fredrick +Garry +Harvey +Loren +Ron +Sidney +Wade +Benny +Christophe +Franklin +Jerome +Jonathan +Randal +Rocky +Stuart +Ben +Carlos +Clayton +Forrest +Jackie +Jeffry +Juan +Monty +Rudolph +Terrence +Virgil +Herbert +Hugh +Jerald +Mario +Marshall +Nathan +Oscar +Roderick +Allan +Andy +Antonio +Buddy +Cary +Clinton +Darrel +Dwayne +Frankie +Grant +Herman +Ivan +Milton +Tracy +Alex +Alexander +Bennie +Brett +Chester +Clay +Dirk +Elmer +Geoffrey +Gerard +Harley +Jesus +Kenny +Laurence +Marcus +Myron +Rudy +Stewart +Troy +Willard +Armando +Darryl +Darwin +Edgar +Eldon +Eloy +Everett +Francisco +Jerrold +Jess +Jody +Julian +Ken +Lester +Marty +Mickey +Miles +Morris +Nelson +Ramon +Rodger +Sammy +Alfonso +Alton +Archie +Bernie +Bradford +Cecil +Chad +Donnie +Doyle +Ernie +Gabriel +Harlan +Hector +Jimmie +Kit +Leland +Lowell +Malcolm +Merle +Monte +Orlando +Reginald +Ricardo +Roberto +Teddy +Wallace +Wendell +Zachary +Abel +Adrian +Bart +Blaine +Cameron +Conrad +Dana +Denis +Derek +Dewayne +Dexter +Edmund +Fernando +Freddy +Gale +Hal +Jamie +Jessie +Johnnie +Jorge +Julio +Justin +Kendall +Kris +Marion +Nick +Nicky +Pat +Reuben +Robbie +Russel +Rusty +Sean +Shane +Shawn +Sheldon +Stan +Terence +Wilbur +Michael +David +Robert +John +James +Richard +Mark +William +Steven +Thomas +Gary +Daniel +Ronald +Charles +Joseph +Timothy +Kenneth +Donald +Paul +Douglas +Stephen +Gregory +Kevin +Randy +Larry +Dennis +Edward +Scott +Jeffrey +Anthony +Bruce +Jerry +Patrick +Terry +Frank +Brian +George +Raymond +Gerald +Keith +Dale +Alan +Rodney +Steve +Randall +Christopher +Lawrence +Roger +Craig +Danny +Carl +Rick +Russell +Joe +Ricky +Stanley +Wayne +Jack +Mike +Arthur +Leonard +Peter +Philip +Martin +Micheal +Andrew +Kent +Roy +Henry +Samuel +Fred +Duane +Eugene +Phillip +Eric +Albert +Harold +Kurt +Matthew +Allen +Manuel +Bradley +Glenn +Howard +Jim +Chris +Dean +Jeffery +Johnny +Kelly +Jimmy +Walter +Barry +Jay +Louis +Ralph +Ernest +Kirk +Brad +Curtis +Dan +Gilbert +Glen +Ray +Ronnie +Lee +Victor +Tom +Darrell +Kim +Marvin +Robin +Vincent +Calvin +Greg +Harry +Jesse +Joel +Brent +Bryan +Lloyd +Lonnie +Randolph +Theodore +Tony +Don +Eddie +Jose +Benjamin +Billy +Clifford +Jon +Leroy +Melvin +Rocky +Bill +Guy +Leslie +Warren +Floyd +Ted +Tim +Alfred +Dave +Earl +Edwin +Norman +Ron +Jonathan +Rex +Carlos +Frederick +Gordon +Jerome +Kerry +Lewis +Gene +Jeff +Todd +Alvin +Bobby +Franklin +Gregg +Juan +Loren +Lynn +Max +Perry +Tommy +Byron +Karl +Nicholas +Randal +Rickey +Rudolph +Rudy +Wesley +Bernard +Dana +Harvey +Leo +Marc +Casey +Darrel +Dwight +Fredrick +Monte +Vernon +Alex +Daryl +Lance +Lyle +Mitchell +Wade +Felix +Jackie +Lester +Neil +Allan +Christophe +Everett +Herman +Ken +Rickie +Ross +Sam +Stuart +Antonio +Brett +Clarence +Clyde +Francis +Herbert +Jerald +Joey +Mario +Myron +Andy +Benny +Charlie +Gabriel +Garry +Kenton +Luis +Bradford +Cary +Clayton +Darryl +Donnie +Grant +Leon +Neal +Ricardo +Ruben +Terrence +Tracy +Armando +Ben +Bob +Clark +Hal +Jimmie +Nathan +Pete +Sammy +Virgil +Willie +Aaron +Arnold +Boyd +Cecil +Clinton +Delbert +Dirk +Doug +Drew +Frankie +Freddie +Galen +Geoffrey +Gerard +Ivan +Julian +Leland +Marshall +Milton +Monty +Shane +Alexander +Alfonso +Blaine +Chuck +Claude +Clay +Elmer +Francisco +Jeffry +Jesus +Louie +Marion +Pat +Preston +Rodger +Rusty +Terence +Terrance +Toby +Troy +Willard +Angel +Chester +Christian +Conrad +Derrick +Domingo +Doyle +Dwayne +Eloy +Gale +Johnnie +Kenny +Lorenzo +Marcus +Marty +Maurice +Nick +Roland +Scot +Sidney +Stewart +Teddy +Van +Al +Archie +Bennie +Bert +Curt +Dominic +Edgar +Edmund +Ernie +Hugh +Ira +Jake +Jess +Jody +Justin +Kris +Kyle +Lane +Lenny +Malcolm +Merle +Miles +Ramon +Raul +Reginald +Robbie +Sean +Shawn +Timmy +Wallace +Abraham +Alonzo +Bryce +Chad +Colin +Cory +Dallas +Darwin +Denis +Derek +Dick +Eldon +Elias +Forrest +Freddy +Garth +Jacob +Jan +Jerold +Jorge +Julio +Kirby +Laurence +Margarito +Marlin +Mitchel +Morris +Oliver +Randell +Robby +Roderick +Stan +Val +Michael +David +Robert +John +James +Mark +Richard +William +Steven +Thomas +Daniel +Gary +Ronald +Donald +Timothy +Charles +Kenneth +Joseph +Kevin +Scott +Paul +Gregory +Larry +Randy +Douglas +Stephen +Anthony +Edward +Jeffrey +Dennis +Patrick +Brian +Terry +Jerry +Bruce +George +Steve +Frank +Dale +Raymond +Mike +Rodney +Roger +Alan +Keith +Rick +Christopher +Ricky +Joe +Danny +Lawrence +Russell +Peter +Randall +Gerald +Matthew +Wayne +Stanley +Craig +Jack +Martin +Carl +Andrew +Eric +Kirk +Dan +Phillip +Kent +Victor +Harold +Jay +Jim +Leonard +Micheal +Arthur +Ralph +Philip +Albert +Glen +Tom +Bryan +Jeffery +Samuel +Darrell +Dean +Bill +Brad +Bradley +Glenn +Roy +Tony +Henry +Kurt +Tim +Curtis +Jimmy +Jon +Gilbert +Allen +Fred +Chris +Kelly +Ernest +Eugene +Ray +Walter +Don +Howard +Leroy +Louis +Norman +Ronnie +Johnny +Barry +Benjamin +Duane +Lee +Tommy +Vincent +Billy +Marvin +Clifford +Earl +Frederick +Greg +Harry +Warren +Jeff +Jesse +Joel +Theodore +Eddie +Leslie +Gordon +Lonnie +Manuel +Mitchell +Floyd +Kerry +Marc +Melvin +Jonathan +Lyle +Gregg +Jose +Calvin +Juan +Lloyd +Bob +Brent +Dave +Edwin +Todd +Dwight +Kim +Lynn +Alfred +Bobby +Karl +Marty +Nicholas +Rex +Byron +Neil +Wesley +Rocky +Ron +Ted +Casey +Franklin +Gene +Guy +Randolph +Robin +Ross +Aaron +Dana +Lance +Nick +Perry +Wade +Andy +Garry +Monte +Nathan +Ruben +Alvin +Leo +Vernon +Bernard +Daryl +Delbert +Loren +Luis +Sam +Terrance +Ben +Carlos +Harvey +Jerome +Kyle +Mario +Pete +Randal +Rickey +Tracy +Allan +Chuck +Clayton +Darrel +Doug +Grant +Jimmie +Ken +Lester +Ricardo +Shawn +Stuart +Toby +Alex +Cary +Chester +Clark +Donnie +Frankie +Herbert +Max +Monty +Roland +Sean +Stephan +Benny +Clyde +Ed +Julian +Lewis +Marcus +Miguel +Pat +Phil +Sammy +Shane +Arnold +Ernie +Francisco +Kenny +Leon +Matt +Rudolph +Rudy +Teddy +Adolph +Angelo +Bernie +Brett +Clay +Curt +Darryl +Felix +Francis +Gabriel +Hugh +Ivan +Jerald +Marshall +Milton +Neal +Pedro +Preston +Raul +Robbie +Roderick +Vance +Wyatt +Alexander +Conrad +Darwin +Dirk +Eloy +Freddie +Hal +Joesph +Joey +Louie +Maurice +Miles +Mitch +Orlando +Rickie +Roberto +Rod +Rory +Stan +Terrence +Andre +Armando +Bennie +Bret +Charlie +Claude +Eldon +Elmer +Gale +Geoffrey +Herman +Jacob +Jamie +Jerrold +Jorge +Kendall +Lon +Lonny +Morris +Myron +Ryan +Sidney +Timmy +Willie +Abel +Adrian +Antonio +Bradford +Buddy +Carey +Cecil +Clarence +Clinton +Derek +Doyle +Dwayne +Everett +Fredrick +Hector +Jackie +Jessie +Johnnie +Kurtis +Laurence +Leland +Michel +Ned +Oscar +Ramon +Rusty +Salvador +Scot +Terence +Virgil +Willard +Alfonso +Alvaro +Archie +Barney +Bart +Bert +Blaine +Blair +Bryon +Chad +Clint +Colin +Dallas +Dewey +Dick +Drew +Edmund +Enrique +Fernando +Freddy +Gerard +Gerry +Grady +Jake +Jason +Jess +Jody +Julius +Kelley +Kelvin +Keven +Kip +Kit +Kris +Lowell +Mickey +Nelson +Pablo +Randell +Rob +Stewart +Wendell +Zane +Michael +David +John +Robert +James +Mark +Richard +William +Steven +Thomas +Ronald +Daniel +Gary +Timothy +Donald +Kenneth +Charles +Joseph +Kevin +Scott +Paul +Larry +Gregory +Randy +Douglas +Mike +Jeffrey +Anthony +Stephen +Brian +Edward +Dennis +Patrick +Bruce +Steve +George +Jerry +Raymond +Terry +Danny +Christopher +Dale +Rick +Frank +Keith +Alan +Joe +Ricky +Russell +Gerald +Jim +Roger +Rodney +Peter +Tom +Jay +Phillip +Tim +Martin +Wayne +Chris +Randall +Craig +Jeff +Eric +Matthew +Jack +Andrew +Arthur +Bradley +Dave +Lawrence +Bill +Dan +Greg +Dean +Carl +Leonard +Albert +Bret +Kent +Ralph +Roy +Ronnie +Curtis +Kelly +Kirk +Philip +Kurt +Don +Micheal +Tony +Bryan +Ray +Stanley +Jeffery +Todd +Brad +Louis +Glenn +Samuel +Johnny +Jimmy +Duane +Harold +Leroy +Allen +Brett +Eugene +Joel +Victor +Billy +Darrell +Marvin +Barry +Henry +Tommy +Jose +Walter +Bob +Bobby +Brent +Clifford +Theodore +Gilbert +Mitchell +Ron +Ernest +Howard +Doug +Fred +Glen +Harry +Jesse +Jonathan +Sam +Jon +Vincent +Kerry +Frederick +Gordon +Lee +Benjamin +Leslie +Lloyd +Nick +Norman +Alfred +Eddie +Manuel +Andy +Melvin +Vernon +Wesley +Edwin +Kim +Rudy +Calvin +Ken +Max +Rocky +Carlos +Marty +Allan +Clyde +Earl +Gene +Leo +Loren +Nathan +Randolph +Arnold +Karl +Kenny +Lonnie +Marc +Perry +Randal +Ruben +Ted +Bernard +Juan +Pete +Robin +Bart +Benny +Byron +Chuck +Dwight +Lewis +Tracy +Franklin +Lance +Monte +Daryl +Delbert +Garry +Gregg +Kyle +Lyle +Mario +Neal +Neil +Rex +Rickey +Ross +Warren +Alex +Casey +Clayton +Ernie +Felix +Lynn +Monty +Nicholas +Sammy +Troy +Wade +Aaron +Clay +Ed +Fredrick +Guy +Jimmie +Pat +Rod +Roland +Rudolph +Stuart +Alvin +Charlie +Dino +Elmer +Ivan +Jerome +Lester +Louie +Terrence +Toby +Bennie +Chester +Christophe +Dana +Dick +Donnie +Dwayne +Everett +Francis +Grant +Herbert +Hugh +Jerald +Joey +Leon +Luis +Matt +Shawn +Terrance +Timmy +Willie +Alexander +Clarence +Clinton +Curt +Phil +Scot +Virgil +Ben +Bradford +Chad +Cliff +Darrel +Darryl +Floyd +Jake +Jamie +Jesus +Kris +Leland +Mickey +Morris +Ricardo +Rusty +Stan +Dirk +Jeffry +Justin +Lonny +Myron +Rory +Sean +Wilfred +Conrad +Derek +Edgar +Erik +Evan +Forrest +Francisco +Freddy +Gabriel +Geoffrey +Gerard +Julian +Kirby +Marshall +Miguel +Miles +Noel +Preston +Roderick +Rodger +Van +Andres +Archie +Bert +Boyd +Cary +Cecil +Clark +Cory +Fernando +Galen +Hector +Herman +Jed +Kelley +Keven +Laurence +Marcus +Mathew +Maurice +Milton +Mitchel +Pedro +Raul +Sidney +Simon +Alfonso +Brock +Bryon +Carey +Claude +Clint +Corey +Danial +Darell +Dominic +Doyle +Edmund +Eldon +Eloy +Hal +Harvey +Jackie +Jacob +Jaime +Jess +Jordan +Jorge +Lane +Luke +Malcolm +Michel +Mitch +Ned +Nelson +Orlando +Reed +Reginald +Rock +Sheldon +Spencer +Stewart +Teddy +Terence +Travis +Ty +Val +David +Michael +John +Robert +James +Mark +Richard +William +Steven +Thomas +Timothy +Daniel +Scott +Kenneth +Gary +Kevin +Charles +Paul +Donald +Ronald +Randy +Douglas +Larry +Mike +Gregory +Jeffrey +Joseph +Anthony +Brian +Steve +Dennis +Ricky +Jerry +Patrick +Christopher +Stephen +Edward +Terry +Jim +George +Bruce +Joe +Russell +Eric +Greg +Frank +Craig +Tim +Raymond +Rick +Dale +Tom +Rodney +Alan +Jeff +Roger +Danny +Bill +Keith +Randall +Chris +Lawrence +Carl +Dan +Jay +Martin +Peter +Andrew +Gerald +Jack +Arthur +Matthew +Bret +Kent +Bradley +Don +Leonard +Bryan +Manuel +Tony +Philip +Wayne +Johnny +Kurt +Micheal +Kirk +Dave +Dean +Harold +Kelly +Ron +Phillip +Darrell +Jimmy +Ralph +Jeffery +Todd +Bob +Fred +Jon +Eddie +Roy +Albert +Brett +Curtis +Henry +Ronnie +Samuel +Glen +Allen +Brad +Eugene +Ray +Duane +Ernest +Stanley +Victor +Gilbert +Shawn +Benjamin +Louis +Brent +Barry +Billy +Bobby +Doug +Joel +Leroy +Tommy +Walter +Glenn +Jesse +Lonnie +Mitchell +Vincent +Clifford +Howard +Jose +Lee +Karl +Marvin +Norman +Randal +Ted +Calvin +Kerry +Frederick +Gene +Wesley +Andy +Ben +Earl +Randolph +Rocky +Alvin +Pat +Sam +Arnold +Floyd +Gordon +Gregg +Kyle +Marty +Aaron +Carlos +Lance +Marc +Dana +Jonathan +Ken +Perry +Ed +Frankie +Kenny +Rory +Stuart +Tracy +Warren +Alfred +Clinton +Leo +Lynn +Melvin +Nick +Pete +Ruben +Chuck +Dwight +Franklin +Harry +Nicholas +Rickey +Lloyd +Neal +Theodore +Vernon +Alexander +Allan +Benny +Ernie +Joey +Juan +Nathan +Neil +Robin +Rudy +Wade +Willie +Bart +Byron +Darren +Dwayne +Garry +Guy +Sean +Clark +Clyde +Francis +Harvey +Loren +Luis +Monte +Rex +Clay +Gabriel +Geoffrey +Grant +Lyle +Daryl +Jody +Leslie +Matt +Ross +Rusty +Sammy +Scot +Alfonso +Cory +Darrel +Edwin +Freddie +Herbert +Jacob +Jerome +Julian +Justin +Laurence +Lester +Max +Robbie +Rodger +Teddy +Terrance +Timmy +Troy +Cary +Clint +Curt +Darryl +Derek +Erik +Gerard +Ivan +Jason +Jeffry +Jimmie +Kim +Milton +Ricardo +Roland +Ryan +Alex +Antonio +Clarence +Dewayne +Edgar +Hal +Johnnie +Jorge +Leon +Mario +Mathew +Miguel +Terrence +Vern +Casey +Cecil +Clayton +Dirk +Felix +Fernando +Forrest +Fredrick +Lane +Lewis +Marcus +Marion +Phil +Russ +Tod +Vince +Willard +Armando +Blake +Carey +Claude +Damon +Dick +Doyle +Francisco +Garrett +Hector +Jackie +Jefferson +Jessie +Jesus +Kelvin +Kip +Mickey +Monty +Nelson +Orlando +Rickie +Rock +Shane +Sidney +Stan +Stewart +Van +Wendell +Adrian +Bennie +Bernard +Bradford +Charlie +Conrad +Dane +Del +Dino +Eddy +Eloy +Everett +Freddy +Herman +Jaime +Jerald +Joaquin +Louie +Maurice +Myron +Noel +Rod +Rudolph +Salvador +Sheldon +Stephan +Wally +Angelo +Barton +Bert +Buddy +Chad +Cody +Colin +Corey +Dallas +Delbert +Denny +Derrick +Donn +Donny +Eldon +Emilio +Emmett +Fidel +Gale +Galen +Gino +Isaac +Jace +Jake +Jamie +Jan +Kenton +Kris +Lanny +Lon +Morris +Nicky +Oscar +Rafael +Reed +Reuben +Robbin +Roberto +Sherman +Stacy +Toby +Val +Vance +Wallace +David +Michael +John +Robert +Mark +James +Richard +William +Steven +Daniel +Kevin +Thomas +Scott +Timothy +Kenneth +Joseph +Gary +Mike +Jeffrey +Paul +Brian +Donald +Gregory +Douglas +Ronald +Randy +Charles +Anthony +Steve +Larry +Stephen +Patrick +Eric +Terry +Dennis +Christopher +Edward +Craig +Jerry +George +Bruce +Frank +Chris +Jeff +Roger +Joe +Raymond +Dale +Alan +Randall +Ricky +Tim +Jim +Keith +Rodney +Andrew +Danny +Matthew +Greg +Martin +Russell +Tom +Tony +Bradley +Dan +Peter +Rick +Carl +Jay +Gerald +Lawrence +Phillip +Wayne +Allen +Bill +Dave +Jack +Todd +Dean +Arthur +Jimmy +Bryan +Don +Kirk +Kelly +Ronnie +Kent +Bob +Jeffery +Johnny +Albert +Leonard +Ralph +Billy +Curtis +Glenn +Roy +Tracy +Joel +Micheal +Barry +Brad +Fred +Jon +Stanley +Victor +Kurt +Philip +Vincent +Gilbert +Ray +Mitchell +Brett +Henry +Duane +Eugene +Norman +Shawn +Clifford +Harold +Leroy +Eddie +Louis +Ron +Bobby +Ernest +Gregg +Jesse +Kenny +Ken +Wesley +Bret +Clayton +Darren +Howard +Lee +Walter +Brent +Darrell +Darryl +Gordon +Jose +Karl +Marvin +Ted +Troy +Lance +Leslie +Earl +Tommy +Glen +Pat +Perry +Samuel +Frederick +Marty +Guy +Jonathan +Lonnie +Gene +Manuel +Benjamin +Doug +Dwayne +Leo +Lloyd +Marc +Robin +Sam +Theodore +Aaron +Rudy +Calvin +Clay +Kerry +Lynn +Stuart +Alfred +Carlos +Jerome +Melvin +Nicholas +Rex +Ruben +Alex +Andy +Arnold +Edwin +Kyle +Matt +Sean +Benny +Chuck +Dana +Floyd +Francis +Herman +Juan +Warren +Antonio +Harry +Max +Nick +Pete +Bart +Ben +Ed +Ernie +Justin +Clarence +Donnie +Grant +Neil +Randal +Adam +Byron +Daryl +Dwight +Loren +Lyle +Mario +Nathan +Phil +Randolph +Rocky +Rod +Roland +Ross +Vernon +Wade +Bernard +Casey +Dino +Kendall +Kim +Shane +Alvin +Clinton +Franklin +Luis +Cecil +Claude +Darrel +Fredrick +Joey +Johnnie +Leon +Ricardo +Rory +Allan +Delbert +Derek +Geoffrey +Harvey +Jason +Kelvin +Lewis +Luke +Marshall +Oscar +Pedro +Ryan +Vince +Willie +Blake +Cary +Christian +Clark +Clyde +Curt +Erik +Felix +Francisco +Kris +Monte +Monty +Rickey +Rusty +Stewart +Van +Charlie +Clifton +Clint +Damon +Derrick +Dirk +Fernando +Frankie +Gabriel +Herbert +Hugh +Jeffry +Jody +Leland +Lester +Neal +Noel +Rudolph +Shannon +Stan +Toby +Alexander +Chester +Dallas +Edmund +Ivan +Jackie +Jessie +Louie +Miguel +Miles +Mitch +Myron +Nelson +Orlando +Preston +Rickie +Rob +Russ +Sammy +Sidney +Stacey +Terrance +Timmy +Trent +Virgil +Willard +Abel +Angelo +Archie +Armando +Barton +Boyd +Bradford +Burt +Conrad +Corey +Cory +Edgar +Eli +Garry +Jamie +Jess +Jesus +Jimmie +Jorge +Kip +Kirby +Lane +Mathew +Mickey +Nicky +Scot +Vance +Al +Andre +Bernie +Brandon +Bryce +Buddy +Darwin +Dee +Devin +Dewayne +Drew +Elias +Forrest +Galen +Gerard +Gustavo +Hal +Hector +Jacob +Jan +Kenton +Kurtis +Laurence +Levi +Lon +Marcus +Milton +Ramon +Reginald +Roderick +Salvador +Scotty +Terrence +Travis +Ty +Tyrone +Wallace +Zane +David +Michael +John +Robert +Mark +James +Richard +William +Steven +Kevin +Scott +Daniel +Thomas +Jeffrey +Paul +Kenneth +Gary +Charles +Donald +Timothy +Mike +Ronald +Douglas +Brian +Gregory +Joseph +Christopher +Randy +Larry +Anthony +Steve +Patrick +Stephen +Edward +Jerry +Chris +Eric +Jeff +Craig +Terry +Frank +Greg +Joe +Todd +Dennis +Bruce +Roger +Raymond +Dale +George +Alan +Ricky +Gerald +Keith +Randall +Tim +Danny +Jim +Tom +Matthew +Troy +Russell +Bill +Andrew +Wayne +Bradley +Bryan +Dean +Jack +Rick +Rodney +Jay +Martin +Peter +Kirk +Kelly +Phillip +Jon +Jeffery +Kent +Lawrence +Ron +Tony +Brad +Carl +Dan +Johnny +Kurt +Leonard +Ronnie +Albert +Glenn +Jimmy +Ralph +Allen +Manuel +Roy +Arthur +Stanley +Bob +Duane +Philip +Walter +Brett +Dave +Ernest +Fred +Victor +Eugene +Henry +Micheal +Barry +Curtis +Eddie +Harold +Mitchell +Tracy +Vincent +Brent +Gilbert +Samuel +Joel +Jonathan +Glen +Louis +Bobby +Darryl +Ken +Marvin +Don +Karl +Billy +Darrell +Kenny +Lee +Ray +Shawn +Norman +Doug +Leroy +Ted +Kerry +Lonnie +Carlos +Marc +Robin +Benjamin +Howard +Tommy +Wade +Jose +Sean +Theodore +Vernon +Wesley +Gregg +Guy +Lance +Chuck +Pete +Frederick +Gene +Jesse +Stuart +Aaron +Ben +Calvin +Darrel +Harry +Matt +Melvin +Dwayne +Juan +Nicholas +Rex +Rudy +Sam +Warren +Dana +Earl +Nick +Rocky +Alfred +Andy +Arnold +Gordon +Leslie +Marty +Bret +Clayton +Lloyd +Perry +Ross +Byron +Clifford +Daryl +Geoffrey +Lewis +Nathan +Roland +Ruben +Darren +Grant +Kyle +Loren +Mario +Pat +Willie +Robbie +Bart +Clinton +Clyde +Curt +Jerome +Justin +Leo +Monty +Neal +Ty +Adam +Alex +Cary +Clay +Donnie +Floyd +Herbert +Randolph +Sidney +Timmy +Bennie +Christian +Clarence +Derek +Ed +Edwin +Gabriel +Jason +Les +Luis +Lyle +Randal +Shane +Adrian +Benny +Bernard +Cecil +Clark +Delbert +Dirk +Dwight +Everett +Fredrick +Harvey +Jackie +Jerald +Joesph +Julian +Kris +Max +Mitch +Monte +Neil +Andre +Angelo +Bert +Charlie +Claude +Erik +Felix +Francis +Francisco +Franklin +Jeffry +Jimmie +Joey +Kelvin +Kim +Louie +Lynn +Marcus +Ricardo +Rod +Rory +Ryan +Toby +Tod +Alexander +Allan +Boyd +Chester +Gerard +Herman +Jacob +Leland +Maurice +Mitchel +Oscar +Rich +Rob +Stewart +Trent +Vince +Virgil +Alfonso +Alvin +Antonio +Bernie +Bradford +Clint +Conrad +Darin +Derrick +Dick +Edgar +Elmer +Ernie +Fernando +Garry +Ivan +Kip +Mathew +Miles +Milton +Reginald +Roderick +Rodger +Scot +Teddy +Van +Vern +Archie +Blair +Blake +Colin +Darwin +Doyle +Gerry +Jess +Jesus +Johnnie +Leon +Lester +Luke +Marshall +Morgan +Phil +Rickey +Shannon +Terrance +Travis +Tyler +Blaine +Casey +Dewayne +Dino +Gino +Hal +Isaac +Lorenzo +Miguel +Mikel +Morris +Nathaniel +Rickie +Robby +Russ +Stan +Terrence +Vance +Cameron +Cliff +Cory +Dallas +Damon +Dominic +Elliott +Ernesto +Evan +Felipe +Forrest +Freddie +Hector +Jaime +Jorge +Kristopher +Kurtis +Malcolm +Mickey +Orlando +Pedro +Reuben +Roman +Roscoe +Rusty +Salvador +Santiago +Simon +David +Michael +John +Robert +James +Mark +Scott +Richard +Steven +William +Kevin +Daniel +Thomas +Jeffrey +Timothy +Joseph +Brian +Kenneth +Gary +Charles +Donald +Paul +Gregory +Ronald +Anthony +Mike +Douglas +Christopher +Randy +Stephen +Todd +Steve +Eric +Larry +Patrick +Joe +Terry +Chris +Edward +Jerry +Jeff +Keith +Dennis +Matthew +Andrew +Frank +Troy +Jim +Roger +Raymond +Bruce +Dale +Danny +Russell +Alan +George +Craig +Bradley +Greg +Randall +Rick +Jay +Wayne +Tom +Dean +Vincent +Rodney +Tim +Jeffery +Tony +Ricky +Gerald +Bill +Curtis +Jon +Kent +Carl +Glenn +Kirk +Martin +Bryan +Peter +Jack +Lawrence +Allen +Billy +Dan +Arthur +Samuel +Leonard +Phillip +Roy +Barry +Dave +Jimmy +Victor +Kurt +Bob +Kelly +Don +Brad +Darryl +Fred +Lee +Eugene +Henry +Louis +Ronnie +Brent +Duane +Eddie +Johnny +Ron +Wesley +Ernest +Ralph +Stanley +Shawn +Walter +Albert +Bobby +Brett +Harold +Gilbert +Philip +Tracy +Darrell +Doug +Ken +Theodore +Micheal +Carlos +Jesse +Manuel +Ray +Jose +Warren +Adam +Glen +Marvin +Norman +Jonathan +Kerry +Gordon +Joel +Leroy +Mitchell +Alex +Lance +Nick +Sean +Dana +Robin +Tommy +Juan +Alfred +Andy +Clifford +Derek +Dwayne +Guy +Howard +Aaron +Gene +Gregg +Kyle +Leslie +Ted +Darren +Harry +Loren +Marc +Marty +Vernon +Benjamin +Clay +Karl +Nicholas +Pat +Ross +Calvin +Edwin +Matt +Randolph +Rudy +Bret +Byron +Clayton +Grant +Kenny +Nathan +Rocky +Ben +Jerome +Neil +Shane +Stuart +Vince +Alexander +Casey +Lonnie +Luis +Lyle +Perry +Ruben +Wade +Allan +Daryl +Earl +Julian +Max +Monte +Pete +Clinton +Curt +Erik +Francis +Joey +Leo +Melvin +Sam +Darrel +Ed +Ernie +Felix +Frederick +Lloyd +Mario +Robbie +Benny +Clarence +Darin +Donnie +Dwight +Kris +Leon +Lynn +Pedro +Randal +Rod +Stewart +Ty +Adrian +Alvin +Chuck +Floyd +Justin +Mitch +Rex +Rickey +Sammy +Shannon +Terrence +Toby +Andre +Bernard +Charlie +Doyle +Frankie +Gabriel +Herman +Jason +Lewis +Monty +Ryan +Scot +Timmy +Arnold +Clark +Clyde +Forrest +Freddie +Garry +Geoffrey +Gerard +Isaac +Ivan +Jamie +Marshall +Maurice +Ricardo +Rob +Royce +Shaun +Terence +Travis +Virgil +Willie +Antonio +Bradford +Cary +Franklin +Jackie +Jaime +Jake +Jess +Jimmie +Lane +Roderick +Rudolph +Spencer +Stephan +Wendell +Alfonso +Bart +Bert +Cameron +Cecil +Chad +Cory +Delbert +Elmer +Evan +Francisco +Kendall +Leland +Lon +Mathew +Miguel +Neal +Orlando +Robby +Sheldon +Stacy +Stan +Terrance +Van +Zane +Angelo +Claude +Eloy +Fernando +Garth +Hal +Herbert +Jeffry +Jessie +Johnnie +Lester +Lonny +Marcus +Oscar +Phil +Raul +Reginald +Rodger +Sidney +Teddy +Tyler +Anton +Armando +Bennie +Charley +Clint +Derrick +Dino +Dominic +Emmett +Ernesto +Everett +Galen +Hugh +Jacob +Jesus +Kenton +Kim +Lesley +Merle +Morris +Myron +Nathaniel +Noel +Owen +Rafael +Reed +Reuben +Rich +Roland +Wilbur +Abel +Blaine +Blair +Blake +Boyd +Bryon +Chip +Cliff +Clifton +Cris +Dallas +Darwin +Dee +Devin +Edgar +Fabian +Gavin +Gil +Gino +Jerald +Kelvin +Kirby +Levi +Lorne +Louie +Lowell +Malcolm +Mitchel +Ramon +Randel +Rory +Rusty +Theadore +Tobias +Tod +Willard +Michael +David +John +Robert +James +Mark +Richard +Scott +William +Kevin +Steven +Thomas +Jeffrey +Daniel +Timothy +Paul +Brian +Joseph +Charles +Kenneth +Gregory +Gary +Ronald +Christopher +Mike +Donald +Todd +Douglas +Anthony +Randy +Eric +Edward +Patrick +Stephen +Troy +Steve +Andrew +Larry +Jeff +Chris +Frank +Terry +Jerry +Dennis +Matthew +Joe +George +Keith +Russell +Danny +Roger +Phillip +Bradley +Dale +Tony +Randall +Alan +Bruce +Ricky +Greg +Craig +Gerald +Raymond +Tim +Jim +Martin +Jay +Shawn +Tom +Vincent +Dean +Peter +Rick +Rodney +Wayne +Kent +Bryan +Bill +Jon +Arthur +Jeffery +Allen +Jack +Dan +Glenn +Kirk +Kurt +Billy +Kelly +Curtis +Victor +Carl +Darrell +Jimmy +Philip +Roy +Brad +Duane +Lawrence +Ron +Joel +Mitchell +Barry +Harold +Micheal +Walter +Bobby +Don +Ernest +Andy +Brent +Brett +Ralph +Darryl +Henry +Louis +Stanley +Samuel +Ted +Theodore +Bob +Lee +Dave +Johnny +Jose +Lance +Manuel +Doug +Ray +Albert +Gilbert +Sean +Fred +Karl +Ken +Jonathan +Aaron +Glen +Marvin +Ronnie +Eddie +Jesse +Marty +Leonard +Leroy +Lonnie +Norman +Tracy +Darren +Eugene +Warren +Bret +Carlos +Derek +Howard +Kerry +Rudy +Wesley +Gregg +Juan +Lloyd +Marc +Robin +Tommy +Kenny +Frederick +Alfred +Benjamin +Clifford +Nicholas +Stuart +Gene +Gordon +Matt +Nathan +Perry +Shane +Chuck +Dwayne +Dwight +Earl +Adam +Alex +Loren +Pat +Erik +Justin +Kyle +Clayton +Dana +Harry +Jason +Melvin +Nick +Robbie +Rocky +Sam +Antonio +Arnold +Byron +Clinton +Daryl +Floyd +Franklin +Grant +Joey +Leslie +Rex +Ross +Toby +Wade +Ben +Clark +Guy +Neal +Rob +Allan +Bernard +Clarence +Gabriel +Monte +Neil +Adrian +Calvin +Cody +Edwin +Everett +Kris +Pete +Rory +Angelo +Bart +Darrel +Ed +Kelvin +Leon +Luis +Monty +Randolph +Ruben +Timmy +Tod +Vernon +Vince +Wendell +Bradford +Chad +Clay +Curt +Derrick +Donnie +Ernie +Francis +Jerome +Jessie +Kip +Lewis +Christian +Clint +Darin +Dirk +Doyle +Felix +Fredrick +Gerard +Julian +Louie +Luke +Marcus +Mario +Shannon +Travis +Ty +Casey +Delbert +Jeffry +Jimmie +Jody +Lester +Lyle +Lynn +Mathew +Milton +Randal +Rod +Ryan +Stewart +Terrence +Trent +Vance +Virgil +Alexander +Andre +Cary +Dane +Denny +Dominic +Evan +Harvey +Jaime +Jerald +Jesus +Kim +Leo +Miguel +Mitch +Phil +Ricardo +Roderick +Roland +Rudolph +Sammy +Scot +Stan +Vaughn +Alvin +Boyd +Cecil +Cory +Daren +Dewayne +Freddie +Garry +Geoffrey +Jacob +Jamie +Jess +Jonathon +Leland +Rickey +Royce +Russel +Shaun +Teddy +Tyler +Zane +Archie +Bennie +Brandon +Cameron +Charlie +Chester +Colin +Corey +Dallas +Damon +Forrest +Garth +Hans +Herbert +Hugh +Ivan +Johnathan +Kirt +Kraig +Marshall +Maurice +Mickey +Murray +Nicky +Regan +Reuben +Salvador +Willard +Al +Alfonso +Alvaro +Austin +Benny +Bernie +Bert +Blaine +Blair +Blake +Bryon +Carey +Chet +Cliff +Clifton +Conrad +Damian +Dino +Donny +Erich +Fabian +Frankie +Gale +Hector +Joshua +Julio +Les +Lionel +Lupe +Luther +Mauricio +Max +Mel +Mitchel +Orlando +Oscar +Ramon +Rigoberto +Russ +Scotty +Stoney +Terence +Tyrone +Van +Wallace +Will +Michael +John +David +Robert +James +Mark +Richard +Scott +William +Kevin +Steven +Thomas +Daniel +Joseph +Jeffrey +Paul +Kenneth +Timothy +Brian +Gregory +Gary +Christopher +Charles +Donald +Todd +Patrick +Ronald +Anthony +Douglas +Eric +Mike +Stephen +Randy +Steve +Andrew +Larry +Troy +Edward +Matthew +Jeff +Terry +Chris +Joe +Jerry +Raymond +Frank +Bradley +Alan +Russell +Dennis +Keith +Rodney +George +Roger +Greg +Jim +Craig +Jeffery +Ricky +Tim +Dale +Bruce +Phillip +Shawn +Dean +Jay +Randall +Danny +Peter +Rick +Martin +Bryan +Vincent +Jon +Tony +Gerald +Tom +Wayne +Bill +Jack +Lawrence +Carl +Jonathan +Kirk +Philip +Brett +Brad +Kent +Kurt +Ralph +Curtis +Sean +Ernest +Brent +Manuel +Adam +Arthur +Darren +Gilbert +Kelly +Albert +Dan +Glenn +Bobby +Johnny +Victor +Joel +Ronnie +Billy +Don +Leonard +Louis +Roy +Lance +Tracy +Darrell +Micheal +Samuel +Allen +Andy +Darryl +Dave +Fred +Jose +Ron +Bob +Henry +Jesse +Mitchell +Doug +Eddie +Jimmy +Marc +Ray +Ted +Wesley +Duane +Eugene +Clifford +Karl +Walter +Barry +Benjamin +Harold +Ken +Leroy +Lonnie +Aaron +Juan +Lee +Marvin +Howard +Pat +Dwayne +Kyle +Wade +Warren +Glen +Justin +Stanley +Theodore +Vernon +Gene +Shane +Carlos +Rex +Kerry +Marty +Melvin +Perry +Arnold +Clark +Franklin +Geoffrey +Jason +Ruben +Dwight +Frederick +Guy +Matt +Ross +Derek +Earl +Kenny +Leo +Loren +Randal +Tommy +Alfred +Curt +Gordon +Gregg +Joey +Julian +Mario +Norman +Rudy +Edwin +Floyd +Grant +Lloyd +Nick +Rob +Robbie +Sam +Alex +Angelo +Ben +Bret +Clayton +Darin +Derrick +Felix +Leslie +Nathan +Robin +Trent +Willie +Alexander +Benny +Dana +Harry +Jerome +Monty +Randolph +Scot +Teddy +Antonio +Byron +Chad +Clifton +Clinton +Cody +Daryl +Frankie +Gabriel +Garry +Herman +Jody +Kris +Leon +Marcus +Monte +Myron +Neil +Nicholas +Rod +Rudolph +Stuart +Chuck +Darrel +Dominic +Erik +Jamie +Luis +Lynn +Orlando +Phil +Ricardo +Sidney +Spencer +Toby +Vance +Bernard +Casey +Drew +Ed +Hugh +Jimmie +Kelvin +Lane +Leland +Maurice +Max +Neal +Reuben +Rodger +Roland +Terrance +Timmy +Tod +Tyler +Vince +Virgil +Bart +Bennie +Cary +Charlie +Clint +Damon +Daren +Darwin +Jorge +Luke +Mitch +Pete +Ramon +Roderick +Shannon +Sheldon +Blake +Boyd +Cory +Darrin +Evan +Francis +Fredrick +Harvey +Herbert +Jess +Kirby +Lewis +Lyle +Merle +Miguel +Reginald +Rickey +Rocky +Sammy +Stan +Travis +Alfonso +Alfredo +Andre +Bradford +Brandon +Calvin +Clarence +Dane +Delbert +Dirk +Donny +Garth +Ian +Ivan +Jacob +Jeffry +Jesus +Kip +Lester +Mathew +Rich +Robby +Rory +Ryan +Shaun +Ty +Adrian +Chester +Claude +Clyde +Devin +Donnie +Ernie +Freddie +Galen +Javier +Joshua +Laurence +Levi +Lonny +Marco +Marshall +Milton +Nathaniel +Oscar +Stacey +Stewart +Terrence +Tyrone +Wendell +Austin +Benito +Bernie +Bryon +Buddy +Cameron +Colin +Danial +Dee +Eloy +Garrett +Gerard +Gerry +Jaime +Jake +Jonathon +Kelley +Keven +Kim +Lyndon +Michel +Ned +Rafael +Raul +Richie +Rickie +Russ +Rusty +Timmothy +Ward +Zane +Michael +David +John +Robert +James +Mark +Richard +Kevin +Scott +William +Jeffrey +Steven +Daniel +Christopher +Brian +Thomas +Paul +Timothy +Kenneth +Joseph +Gregory +Charles +Eric +Ronald +Patrick +Donald +Gary +Anthony +Todd +Douglas +Matthew +Rodney +Troy +Mike +Stephen +Andrew +Larry +Steve +Edward +Randy +Shawn +Frank +Jeff +Craig +Jerry +Keith +Dale +Terry +Raymond +Jeffery +Chris +George +Dean +Dennis +Peter +Darren +Roger +Randall +Bradley +Joe +Bryan +Alan +Gerald +Phillip +Danny +Russell +Kurt +Sean +Martin +Tim +Tony +Jay +Jim +Rick +Bruce +Jon +Ricky +Wayne +Greg +Darrin +Jimmy +Kirk +Duane +Jack +Tom +Lawrence +Philip +Vincent +Brett +Jason +Joel +Curtis +Eugene +Johnny +Kent +Allen +Dan +Darin +Lance +Roy +Arthur +Brent +Jonathan +Kelly +Don +Albert +Leonard +Ronnie +Shane +Billy +Samuel +Jesse +Carl +Darryl +Gilbert +Glenn +Victor +Aaron +Bill +Henry +Louis +Ron +Darrell +Lee +Barry +Benjamin +Howard +Ken +Manuel +Walter +Brad +Karl +Ray +Stanley +Tracy +Wesley +Adam +Dave +Eddie +Glen +Jose +Micheal +Andy +Erik +Fred +Mitchell +Nicholas +Ralph +Theodore +Bobby +Clifford +Frederick +Ryan +Carlos +Harold +Ted +Derek +Doug +Ernest +Leroy +Marc +Norman +Wade +Juan +Pete +Tommy +Warren +Alfred +Kerry +Lonnie +Marty +Alex +Chad +Gordon +Kyle +Leslie +Max +Nathan +Nick +Ross +Stuart +Bob +Bret +Geoffrey +Kenny +Alexander +Clay +Dwayne +Jamie +Joey +Justin +Loren +Marvin +Ruben +Shannon +Ben +Bernard +Clinton +Earl +Floyd +Francis +Gene +Lloyd +Matt +Orlando +Pat +Robin +Allan +Byron +Grant +Jessie +Melvin +Randal +Andre +Bennie +Curt +Dana +Daren +Ernie +Guy +Monty +Rob +Robbie +Willie +Abel +Cory +Edwin +Felix +Fredrick +Harry +Leo +Marcus +Mario +Monte +Perry +Randolph +Rex +Sammy +Vernon +Adrian +Casey +Clarence +Gabriel +Ivan +Ricardo +Rocky +Sam +Alvin +Arnold +Benny +Calvin +Clark +Clayton +Darrel +Daryl +Franklin +Gregg +Ian +Jimmie +Jody +Kris +Leon +Louie +Neal +Rudy +Stacy +Stewart +Terrance +Terrence +Toby +Blaine +Charlie +Damon +Derrick +Donnie +Julian +Mathew +Phil +Rickey +Rod +Russ +Scot +Wendell +Alfredo +Angelo +Bart +Brendan +Christian +Chuck +Clint +Clyde +Dewayne +Francisco +Frankie +Garry +Gerard +Jacob +Jerome +Johnnie +Jorge +Julio +Lane +Lester +Lewis +Lonny +Marlin +Ramon +Randell +Sheldon +Travis +Trent +Ty +Tyrone +Vaughn +Chester +Dwight +Ed +Eloy +Freddie +Gino +Hugh +Joesph +Kelvin +Lorin +Lyle +Marshall +Miles +Morris +Nathaniel +Oscar +Preston +Reuben +Rich +Roland +Rusty +Stacey +Terence +Vance +Vince +Will +Antonio +Armando +Bradford +Bryce +Cary +Cody +Colin +Corey +Dane +Denny +Dino +Dirk +Edmund +Elmer +Herbert +Jerald +Jess +Joshua +Kip +Kurtis +Malcolm +Mauricio +Mickey +Mikel +Milton +Neil +Noel +Owen +Pedro +Reginald +Robby +Rory +Russel +Sidney +Simon +Stephan +Teddy +Timmy +Tyler +Wallace +Michael +David +John +Robert +James +Mark +Richard +Scott +William +Jeffrey +Brian +Steven +Christopher +Paul +Kevin +Daniel +Thomas +Timothy +Joseph +Gregory +Eric +Todd +Kenneth +Ronald +Gary +Charles +Anthony +Patrick +Donald +Douglas +Troy +Stephen +Matthew +Andrew +Sean +Edward +Larry +Rodney +Mike +Shawn +Randy +Jerry +Keith +Steve +Alan +Chris +George +Raymond +Terry +Dennis +Craig +Frank +Joe +Russell +Jeffery +Peter +Jeff +Dean +Danny +Bryan +Gerald +Jon +Darren +Martin +Roger +Kurt +Bradley +Bruce +Ricky +Wayne +Carl +Randall +Brett +Phillip +Tony +Dale +Jay +Jim +Lawrence +Greg +Tim +Vincent +Brent +Jason +Kirk +Tom +Joel +Kelly +Lee +Duane +Darrell +Kent +Philip +Roy +Curtis +Jonathan +Shane +Victor +Johnny +Darin +Allen +Jack +Leonard +Aaron +Albert +Dan +Erik +Jimmy +Rick +Eugene +Gilbert +Arthur +Harold +Marc +Micheal +Derek +Bill +Billy +Bobby +Brad +Chad +Shannon +Ronnie +Tracy +Walter +Ernest +Glenn +Jesse +Lance +Wesley +Darrin +Doug +Marvin +Ray +Ted +Benjamin +Jose +Kyle +Lonnie +Ron +Tommy +Bob +Henry +Manuel +Adam +Darryl +Don +Leroy +Louis +Matt +Mitchell +Ralph +Barry +Derrick +Fred +Glen +Justin +Karl +Nick +Samuel +Stanley +Travis +Clifford +Guy +Nathan +Trent +Alex +Dave +Grant +Leslie +Nicholas +Bret +Byron +Gene +Gregg +Neil +Wade +Andy +Casey +Eddie +Marty +Max +Pete +Ryan +Vernon +Joey +Juan +Randal +Warren +Allan +Alvin +Arnold +Everett +Geoffrey +Gordon +Melvin +Randolph +Rex +Stuart +Theodore +Christian +Cory +Dwayne +Dwight +Jimmie +Loren +Mathew +Ruben +Sam +Ty +Alfred +Boyd +Carlos +Dino +Donnie +Frederick +Johnnie +Mario +Perry +Rudy +Scot +Angelo +Ben +Bradford +Dana +Darrel +Franklin +Harry +Kerry +Lloyd +Lyle +Robin +Ross +Trevor +Clayton +Curt +Edwin +Felix +Gabriel +Jerald +Kip +Louie +Marcus +Monte +Norman +Pat +Sammy +Timmy +Andre +Clark +Damian +Darwin +Daryl +Devin +Dominic +Garry +Ivan +Jamie +Jerome +Kenny +Kim +Leo +Ricardo +Robbie +Robby +Roland +Willie +Abel +Adrian +Bart +Brandon +Cary +Charlie +Clay +Daren +Dion +Earl +Ernie +Howard +Jacob +Jan +Jesus +Jody +Julian +Kris +Leon +Lonny +Luis +Neal +Orlando +Rickey +Rob +Russ +Spencer +Toby +Tyrone +Alexander +Bennie +Bernard +Bryon +Chuck +Claude +Clint +Colin +Conrad +Dirk +Doyle +Edgar +Evan +Floyd +Freddy +Galen +Heath +Herbert +Jake +Jessie +Joshua +Kristopher +Miguel +Ramon +Rocky +Rod +Roderick +Rudolph +Shad +Stacey +Stewart +Tad +Terrance +Tod +Van +Vance +Virgil +Anton +Benito +Blaine +Brendan +Carlton +Chester +Clyde +Corey +Del +Denny +Eldon +Francis +Frankie +Hans +Isaac +Jean +Jeffry +Julius +Ken +Kendall +Kurtis +Les +Lester +Marcelino +Marco +Marshall +Milton +Monty +Nathaniel +Noel +Preston +Regan +Rhett +Rusty +Shaun +Stacy +Teddy +Wendell +Will +Michael +David +John +Robert +James +Mark +Richard +Scott +Christopher +William +Brian +Kevin +Jeffrey +Steven +Timothy +Daniel +Paul +Eric +Joseph +Thomas +Todd +Ronald +Gregory +Kenneth +Anthony +Charles +Patrick +Troy +Donald +Matthew +Gary +Stephen +Douglas +Andrew +Larry +Shawn +Edward +Sean +Randy +Keith +Mike +Rodney +Frank +George +Jerry +Bradley +Bryan +Dennis +Brett +Terry +Craig +Steve +Raymond +Chris +Joe +Jeffery +Jason +Alan +Jeff +Ricky +Jay +Roger +Russell +Dean +Kelly +Peter +Chad +Kurt +Darren +Kirk +Jon +Randall +Danny +Gerald +Martin +Phillip +Vincent +Dale +Greg +Tony +Lawrence +Wayne +Carl +Brent +Derek +Shane +Bruce +Joel +Jonathan +Lance +Tim +Johnny +Kent +Tom +Ray +Ronnie +Adam +Erik +Aaron +Curtis +Jack +Lee +Louis +Marc +Tracy +Benjamin +Allen +Darrell +Jimmy +Samuel +Harold +Philip +Albert +Arthur +Bret +Marvin +Micheal +Dan +Jim +Jose +Barry +Billy +Brad +Duane +Henry +Rick +Darin +Ernest +Ralph +Walter +Bill +Nicholas +Roy +Glenn +Jesse +Victor +Fred +Gilbert +Glen +Norman +Eugene +Juan +Kyle +Lonnie +Ron +Wade +Alex +Casey +Jerome +Justin +Stacy +Bobby +Leonard +Manuel +Nick +Ryan +Sam +Stanley +Travis +Nathan +Theodore +Tommy +Clifford +Frederick +Clint +Darrin +Darryl +Don +Mario +Matt +Ross +Rudy +Dwight +Mitchell +Terrance +Ken +Leo +Lloyd +Marcus +Pete +Andy +Brandon +Christian +Grant +Harry +Shannon +Trevor +Tyler +Alexander +Clay +Dwayne +Eddie +Edwin +Howard +Karl +Kerry +Leroy +Loren +Max +Shaun +Trent +Vernon +Bart +Dave +Earl +Frankie +Gene +Gregg +Guy +Lewis +Luis +Melvin +Noel +Randal +Ruben +Toby +Adrian +Alfred +Angelo +Byron +Calvin +Clarence +Doug +Felix +Gabriel +Geoffrey +Heath +Joey +Johnnie +Marty +Mathew +Miguel +Stuart +Bernard +Cary +Clinton +Corey +Cory +Damon +Jimmie +Joshua +Kenny +Robbie +Wesley +Alvin +Antonio +Armando +Ben +Carlos +Clayton +Forrest +Francis +Gordon +Ian +Jody +Julian +Monte +Neil +Pat +Randolph +Rex +Roland +Ted +Terrence +Virgil +Warren +Allan +Bert +Clyde +Floyd +Galen +Gerry +Jacob +Jeffry +Jesus +Lester +Maurice +Neal +Roderick +Scot +Tyrone +Vince +Andre +Arnold +Benny +Clark +Conrad +Curt +Dana +Derrick +Evan +Everett +Freddie +Ivan +Jamie +Jared +Jeremy +Jessie +Kris +Monty +Ramon +Sidney +Thad +Tracey +Ty +Willie +Bob +Bryon +Cameron +Claude +Cody +Daren +Darrel +Daryl +Dino +Dirk +Dwane +Dylan +Herbert +Jaime +Jerald +Kip +Leslie +Lynn +Miles +Preston +Raul +Reginald +Rob +Robin +Rocky +Rory +Spencer +Stewart +Teddy +Vance +Wallace +Zachary +Alfonso +Alfredo +Blake +Bradford +Carlton +Chester +Chuck +Cliff +Dion +Donnie +Ernie +Fernando +Fredrick +Hans +Jan +Jefferson +Joesph +Lane +Leon +Louie +Lyle +Marshall +Oliver +Perry +Ricardo +Rickey +Robby +Rodger +Salvador +Shad +Sheldon +Shon +Simon +Stacey +Stephan +Tad +Timmy +Michael +David +John +Robert +James +Mark +Christopher +Scott +Brian +Richard +William +Jeffrey +Kevin +Steven +Eric +Daniel +Timothy +Thomas +Paul +Joseph +Matthew +Todd +Troy +Patrick +Anthony +Charles +Shawn +Kenneth +Gregory +Ronald +Andrew +Gary +Sean +Donald +Stephen +Edward +Douglas +Keith +Larry +Randy +Craig +Jason +Jerry +Bradley +George +Jeffery +Mike +Dennis +Jon +Rodney +Brett +Shane +Peter +Raymond +Russell +Brent +Chris +Jeff +Bryan +Frank +Curtis +Darren +Terry +Chad +Joe +Alan +Dean +Gerald +Jonathan +Martin +Randall +Kelly +Danny +Travis +Lawrence +Joel +Phillip +Gilbert +Jay +Steve +Carl +Aaron +Ricky +Bruce +Lonnie +Tim +Tony +Dale +Wayne +Jack +Lance +Ryan +Samuel +Victor +Micheal +Arthur +Roger +Greg +Kent +Vincent +Kirk +Philip +Derek +Justin +Benjamin +Brad +Lee +Shannon +Erik +Johnny +Albert +Kurt +Darin +Jimmy +Jose +Leonard +Tracy +Glenn +Nicholas +Adam +Jesse +Louis +Rick +Jim +Kyle +Allen +Bill +Bobby +Karl +Manuel +Dan +Darrell +Ernest +Fred +Harold +Ray +Roy +Eugene +Glen +Henry +Ralph +Corey +Theodore +Tom +Barry +Bret +Juan +Marc +Nathan +Billy +Darrin +Trent +Christian +Don +Ronnie +Walter +Warren +Leroy +Mario +Duane +Kenny +Luis +Mitchell +Derrick +Gene +Grant +Howard +Lloyd +Marvin +Nick +Norman +Scot +Tommy +Carlos +Cody +Cory +Edwin +Pete +Shaun +Wade +Wesley +Alfred +Clint +Damon +Dirk +Eddie +Harry +Jamie +Lyle +Ron +Alex +Daryl +Devin +Dwayne +Earl +Frederick +Gregg +Jody +Leon +Matt +Melvin +Toby +Alexander +Andy +Antonio +Brandon +Clifford +Dana +Dustin +Heath +Ian +Joey +Monte +Ruben +Ty +Bart +Ben +Clinton +Gabriel +Jeremy +Orlando +Stacey +Ted +Timmy +Adrian +Casey +Clarence +Doug +Geoffrey +Ken +Lester +Marty +Mathew +Monty +Neal +Randolph +Rod +Stuart +Trevor +Angelo +Bernard +Darryl +Dion +Guy +Jimmie +Julian +Leslie +Perry +Rex +Ricardo +Robin +Sam +Terrance +Thad +Andre +Bob +Brendan +Cary +Dominic +Floyd +Francisco +Fredrick +Ivan +Jared +Johnnie +Louie +Pat +Rusty +Tyler +Allan +Arnold +Curt +Drew +Fernando +Freddie +Gordon +Jaime +Jake +Jesus +Kerry +Marshall +Noel +Randal +Rob +Robby +Rudy +Stanley +Teddy +Terrence +Vernon +Willie +Bradford +Bryon +Calvin +Chuck +Clay +Clayton +Colin +Dallas +Daren +Darrel +Dave +Erick +Everett +Garrett +Garry +Herbert +Jarrod +Kurtis +Loren +Marcus +Marion +Max +Preston +Raul +Reginald +Robbie +Rocky +Roland +Ross +Stacy +Alvin +Blaine +Blake +Byron +Clifton +Dane +Delbert +Donnie +Evan +Felix +Gerard +Hugh +Ignacio +Jeffry +Jerod +Jerome +Jessie +Joshua +Kirt +Lonny +Maurice +Morgan +Roderick +Sidney +Spencer +Stephan +Tad +Tomas +Tyrone +Van +Virgil +Augustine +Blair +Buddy +Cameron +Charlie +Clark +Devon +Eli +Elmer +Erin +Felipe +Francis +Franklin +Herman +Isaac +Jacob +Kendall +Lane +Leo +Luke +Miguel +Myron +Nathaniel +Ned +Neil +Nelson +Reid +Robb +Rudolph +Scotty +Taylor +Tod +Zachary +Michael +David +Robert +James +John +Mark +Christopher +Scott +Richard +Brian +Steven +Jeffrey +William +Eric +Daniel +Kevin +Matthew +Thomas +Paul +Timothy +Jason +Joseph +Anthony +Kenneth +Gregory +Todd +Charles +Patrick +Troy +Donald +Douglas +Sean +Shawn +Andrew +Ronald +Stephen +Gary +Edward +Larry +Craig +Chris +Keith +Shane +Bradley +Rodney +Peter +Frank +Jeffery +Jerry +Bryan +Raymond +Russell +Dennis +Darren +Jonathan +Terry +George +Joe +Brett +Corey +Mike +Brent +Lance +Chad +Jeff +Travis +Randy +Kirk +Marc +Steve +Jon +Phillip +Roger +Dean +Aaron +Derek +Danny +Kelly +Alan +Gerald +Joel +Tony +Jack +Justin +Martin +Dale +Johnny +Lawrence +Leonard +Carl +Erik +Jay +Samuel +Wayne +Bruce +Darrell +Randall +Ryan +Adam +Benjamin +Jeremy +Jimmy +Kurt +Greg +Shannon +Curtis +Duane +Jose +Micheal +Philip +Tracy +Vincent +Ricky +Arthur +Jim +Roy +Brad +Glenn +Clinton +Gilbert +Juan +Lonnie +Billy +Cory +Glen +Lee +Manuel +Nicholas +Wade +Walter +Carlos +Eugene +Fred +Jesse +Kyle +Mitchell +Nathan +Tim +Victor +Wesley +Albert +Bret +Don +Louis +Ralph +Theodore +Brandon +Darin +Kent +Norman +Allen +Matt +Rick +Shaun +Barry +Damon +Ernest +Harold +Ronnie +Rudy +Tom +Dan +Joshua +Ray +Gabriel +Tommy +Trent +Warren +Jody +Marvin +Andy +Christian +Darrin +Dwayne +Dwight +Eddie +Frederick +Geoffrey +Karl +Stanley +Bill +Byron +Clifford +Curt +Gene +Howard +Leroy +Bobby +Casey +Dustin +Joey +Kerry +Adrian +Alex +Derrick +Henry +Marcus +Neil +Robbie +Ted +Toby +Trevor +Daryl +Ian +Lloyd +Mario +Melvin +Ron +Calvin +Doug +Edwin +Franklin +Jamie +Nick +Pete +Ross +Tyler +Alexander +Cameron +Felix +Grant +Harry +Jessie +Luke +Ruben +Scot +Teddy +Vance +Arnold +Heath +Jimmie +Luis +Monte +Robby +Roland +Ty +Tyrone +Vernon +Andre +Antonio +Ben +Dana +Darrel +Dave +Devin +Dion +Dirk +Earl +Garrett +Guy +Ivan +Leo +Leon +Leslie +Lyle +Mathew +Neal +Randal +Rocky +Stacey +Stuart +Willie +Benny +Clark +Donovan +Erin +Francis +Frankie +Jacob +Marty +Ricardo +Roberto +Rusty +Stacy +Zachary +Alfred +Alvin +Bart +Boyd +Bradly +Bryon +Charlie +Clarence +Clayton +Cody +Dominic +Drew +Evan +Francisco +Garry +Jared +Jarrod +Julian +Kenny +Lonny +Lynn +Maurice +Monty +Perry +Rex +Rob +Rory +Rudolph +Stewart +Timmy +Vaughn +Virgil +Alberto +Allan +Bob +Brendan +Clint +Daren +Darryl +Erich +Erick +Gordon +Gregg +Herbert +Johnnie +Josh +Ken +Loren +Lorenzo +Louie +Nathaniel +Noel +Pablo +Randolph +Robb +Roderick +Seth +Shon +Stephan +Terrence +Thad +Tomas +Angel +Angelo +Antony +Bert +Bryce +Cliff +Colin +Delbert +Devon +Dino +Donnie +Ernesto +Floyd +Fredrick +Garth +Harvey +Hector +Kristopher +Oscar +Phil +Quentin +Rafael +Ramon +Raul +Rhett +Rod +Spencer +Tod +Abel +Blaine +Blake +Brant +Brock +Cary +Danial +Dominick +Donn +Ernie +Ethan +Freddie +Galen +Jerald +Jerod +Johnathan +Jonathon +Kip +Kris +Marcos +Margarito +Max +Morgan +Reid +Rodger +Ronny +Salvador +Sam +Sidney +Stefan +Vince +Zane +Michael +David +Robert +John +James +Christopher +Mark +Brian +Jason +Richard +Scott +William +Jeffrey +Eric +Steven +Matthew +Kevin +Thomas +Paul +Timothy +Daniel +Joseph +Todd +Gregory +Anthony +Charles +Troy +Andrew +Shawn +Sean +Kenneth +Patrick +Douglas +Ronald +Stephen +Gary +Chad +Craig +Edward +Shane +Donald +Aaron +Keith +Jonathan +Bradley +Brent +Larry +Raymond +Bryan +Peter +Jeffery +Jeremy +Travis +Russell +Rodney +Jerry +Mike +Lance +Brett +Chris +Adam +Randy +Tony +Brandon +Jon +Derek +George +Terry +Joel +Justin +Phillip +Roger +Erik +Darren +Dennis +Frank +Jay +Marc +Jeff +Joe +Gerald +Jose +Dale +Kelly +Ricky +Corey +Kirk +Benjamin +Joshua +Alan +Danny +Nathan +Brad +Carl +Clinton +Lawrence +Steve +Martin +Philip +Samuel +Dean +Jesse +Jimmy +Johnny +Wayne +Kyle +Marcus +Victor +Allen +Vincent +Curtis +Glenn +Manuel +Shannon +Juan +Matt +Nicholas +Kent +Kurt +Albert +Greg +Jack +Randall +Roy +Cory +Darrell +Tim +Christian +Dwayne +Gilbert +Jamie +Arthur +Dustin +Micheal +Billy +Ernest +Louis +Tracy +Wade +Bret +Glen +Lee +Leonard +Adrian +Bobby +Frederick +Ronnie +Walter +Bruce +Clifford +Clint +Dan +Derrick +Duane +Eugene +Harold +Theodore +Tyler +Alexander +Jared +Karl +Nick +Toby +Damon +Marvin +Rick +Tom +Casey +Darin +Darrin +Edwin +Gabriel +Julian +Mitchell +Ralph +Ross +Tommy +Barry +Lonnie +Norman +Ryan +Trevor +Bill +Carlos +Cody +Dominic +Gordon +Ian +Mario +Mathew +Ted +Alex +Antonio +Eddie +Fred +Ray +Shaun +Andre +Andy +Jim +Jody +Kerry +Robin +Alfred +Daryl +Don +Frankie +Geoffrey +Grant +Guy +Heath +Henry +Leon +Spencer +Stanley +Stuart +Wesley +Clayton +Devin +Gregg +Jacob +Ron +Terrence +Trent +Angelo +Gene +Isaac +Jesus +Luke +Melvin +Neil +Orlando +Ruben +Stacy +Ben +Bradford +Clarence +Dion +Donovan +Leroy +Lloyd +Ty +Brendan +Bryon +Byron +Cary +Dana +Ethan +Evan +Garrett +Kenny +Loren +Pete +Rex +Tyrone +Warren +Bernard +Brady +Doug +Earl +Erich +Fabian +Francis +Herbert +Jerome +Kris +Marshall +Max +Neal +Ricardo +Rob +Scot +Cameron +Clark +Colin +Damian +Darryl +Dylan +Eli +Jessie +Joey +Leslie +Lewis +Luis +Marco +Randal +Randolph +Robbie +Rudolph +Seth +Shad +Tod +Blake +Bryce +Charlie +Clay +Conrad +Dwight +Freddie +Fredrick +Howard +Ira +Kip +Lynn +Monte +Noel +Perry +Sammy +Trenton +Zachary +Alvin +Archie +Arnold +Bert +Bryant +Chet +Chuck +Danial +Darrick +Dirk +Felix +Floyd +Francisco +Herman +Hugh +Ivan +Jackie +Jackson +Jaime +Jarrod +Jerald +Lester +Lonny +Lyle +Marty +Maurice +Miguel +Phil +Rene +Robby +Rusty +Sam +Thad +Allan +Bob +Boyd +Brendon +Chester +Curt +Donnie +Drew +Fidel +Garry +Harry +Jeffry +Jimmie +Johnnie +Jorge +Kurtis +Leo +Marcos +Micah +Mickey +Nickolas +Raul +Reginald +Rodger +Rudy +Tad +Terrance +Vernon +Vince +Willie +Abel +Arron +Bernie +Blaine +Brooks +Calvin +Cecil +Cesar +Dane +Darnell +Darrel +Denny +Edgar +Eloy +Enrique +Ernesto +Gino +Jamey +Jeremie +Joesph +Johnathan +Ken +Kristian +Laurence +Lorenzo +Louie +Luther +Mason +Morgan +Pat +Ramon +Roberto +Roderick +Roland +Roman +Rory +Sidney +Stephan +Teddy +Timmy +Vance +Virgil +Wendell +Michael +David +Robert +John +Christopher +James +Jason +Scott +Brian +William +Jeffrey +Eric +Matthew +Richard +Mark +Steven +Daniel +Kevin +Paul +Joseph +Timothy +Thomas +Shawn +Sean +Chad +Anthony +Gregory +Charles +Aaron +Andrew +Troy +Kenneth +Todd +Jeremy +Patrick +Stephen +Ryan +Ronald +Donald +Travis +Shane +Gary +Edward +Douglas +Craig +Justin +Jonathan +Raymond +Bryan +Brandon +Bradley +Derek +Jeffery +Frank +Keith +George +Adam +Joshua +Peter +Larry +Jerry +Randy +Brett +Brent +Russell +Jon +Lance +Benjamin +Chris +Jesse +Dennis +Jose +Terry +Erik +Tony +Dale +Dustin +Nathan +Samuel +Rodney +Shannon +Joe +Kelly +Marc +Roger +Jay +Cory +Danny +Gerald +Joel +Kirk +Phillip +Vincent +Clinton +Marcus +Eugene +Carl +Louis +Alexander +Micheal +Corey +Curtis +Jeff +Philip +Randall +Darren +Jack +Manuel +Christian +Kurt +Mike +Nicholas +Steve +Gabriel +Lawrence +Wayne +Duane +Alan +Albert +Brad +Carlos +Dean +Juan +Billy +Ernest +Kyle +Damon +Jimmy +Antonio +Darrell +Johnny +Martin +Victor +Adrian +Allen +Arthur +Ronnie +Neil +Bruce +Matt +Ricky +Roy +Bobby +Rick +Theodore +Trevor +Wesley +Barry +Ian +Jamie +Kent +Lonnie +Mario +Tyler +Darin +Gilbert +Lee +Tommy +Wade +Clint +Greg +Leonard +Leroy +Luke +Pete +Ray +Tim +Bret +Cody +Fred +Geoffrey +Glen +Glenn +Ralph +Toby +Walter +Andy +Bill +Casey +Clifford +Jacob +Jody +Tyrone +Ben +Don +Eddie +Grant +Henry +Shaun +Zachary +Dwayne +Jared +Leo +Mathew +Max +Monte +Nathaniel +Tom +Dana +Harold +Kris +Mitchell +Ruben +Stanley +Trent +Derrick +Frankie +Howard +Karl +Miguel +Robin +Spencer +Stuart +Ted +Vernon +Andre +Clayton +Daryl +Guy +Nick +Warren +Alex +Blaine +Brady +Cameron +Cary +Gene +Gregg +Heath +Jerome +Joey +Noah +Scot +Scotty +Seth +Ty +Angelo +Colin +Conrad +Dan +Devin +Dion +Jimmie +Julian +Ramon +Rex +Ron +Ross +Tracy +Tyson +Alfred +Bryon +Frederick +Jeremiah +Kenny +Kerry +Leslie +Lloyd +Marty +Neal +Roman +Rudolph +Rudy +Shad +Tomas +Allan +Bart +Clark +Dave +Donnie +Eli +Erick +Francisco +Harry +Ivan +Jaime +Ken +Leon +Loren +Lyle +Melvin +Norman +Ricardo +Rob +Roberto +Sammy +Terrence +Virgil +Willie +Abraham +Bryce +Darrel +Darrin +Darryl +Dominic +Earl +Floyd +Franklin +Garrett +Gordon +Jeffry +Jess +Jesus +Jim +Kurtis +Lewis +Lucas +Monty +Oscar +Preston +Rusty +Shayne +Tad +Thad +Archie +Bernard +Brendan +Byron +Calvin +Cecil +Clarence +Claude +Clay +Clifton +Demetrius +Devon +Doug +Erich +Erin +Felix +Fernando +Forrest +Francis +Hector +Herbert +Josh +Lane +Leif +Lincoln +Lorenzo +Luis +Marion +Maurice +Myron +Orlando +Pedro +Robbie +Shon +Simon +Stacy +Abel +Alfredo +Alvin +Andres +Austin +Carey +Carter +Chip +Colby +Curt +Damian +Dane +Donovan +Dwight +Evan +Galen +Gavin +Hans +Harvey +Herman +Jake +Jarrod +Javier +Jayson +Jerod +Jeromy +Jonah +Kelley +Kraig +Levi +Mason +Morgan +Randal +Rickie +Rory +Salvador +Stacey +Thaddeus +Alfonso +Aron +Augustine +Benny +Blake +Brant +Brendon +Chance +Damion +Delbert +Dewey +Dirk +Duke +Edwin +Eloy +Fidel +Freddie +Gerard +Isaac +Jamison +Jed +Jessie +Jonathon +Kristian +Leland +Lenny +Marco +Marcos +Merle +Micah +Miles +Milo +Noel +Perry +Quinn +Reed +Roland +Santiago +Santos +Sheldon +Stefan +Stephan +Terrance +Wilbur +Zane +Michael +Christopher +David +Jason +Robert +John +Brian +James +Matthew +Eric +Scott +William +Jeffrey +Daniel +Mark +Richard +Steven +Kevin +Joseph +Chad +Timothy +Anthony +Shawn +Paul +Thomas +Sean +Ryan +Andrew +Charles +Gregory +Troy +Kenneth +Todd +Stephen +Aaron +Patrick +Justin +Jeremy +Shane +Joshua +Donald +Brandon +Jonathan +Travis +Ronald +Gary +Adam +Edward +Douglas +Nathan +Keith +Bryan +Craig +Bradley +Derek +Dennis +Larry +Brett +Raymond +Peter +Jeffery +Jerry +Benjamin +George +Brent +Frank +Jesse +Phillip +Samuel +Erik +Jay +Nicholas +Russell +Chris +Dustin +Jose +Lance +Carl +Jon +Danny +Marc +Curtis +Randy +Christian +Gabriel +Terry +Joe +Alan +Carlos +Randall +Joel +Tony +Corey +Darren +Ian +Lawrence +Philip +Allen +Dean +Kelly +Kyle +Gerald +Jamie +Johnny +Manuel +Rodney +Zachary +Cory +Jared +Kirk +Shannon +Clinton +Damon +Jimmy +Juan +Micheal +Roy +Wesley +Albert +Billy +Jeff +Kurt +Mike +Roger +Wayne +Arthur +Dale +Ricky +Vincent +Jack +Jacob +Louis +Marcus +Martin +Steve +Tracy +Bobby +Wade +Casey +Eugene +Gilbert +Henry +Leonard +Theodore +Lee +Alexander +Clint +Derrick +Mario +Trevor +Adrian +Duane +Greg +Kent +Mathew +Glenn +Heath +Isaac +Neil +Ralph +Trent +Victor +Brad +Clifford +Ernest +Frederick +Norman +Andre +Fred +Kristopher +Leroy +Ronnie +Ruben +Tyler +Walter +Dana +Francisco +Harold +Julian +Lonnie +Loren +Bill +Darrell +Dominic +Karl +Seth +Stuart +Tom +Ty +Alex +Angelo +Bret +Cody +Eddie +Geoffrey +Rick +Tommy +Warren +Alfred +Barry +Clayton +Daryl +Jonathon +Luis +Shaun +Stanley +Ted +Toby +Colin +Damian +Darin +Glen +Howard +Jerome +Jess +Jessie +Mitchell +Nathaniel +Preston +Ricardo +Rudy +Spencer +Clay +Dwayne +Grant +Josh +Pete +Ray +Willie +Bryce +Cameron +Darrin +Don +Dylan +Gene +Israel +Joaquin +Johnathan +Miguel +Neal +Raul +Robin +Brant +Bruce +Byron +Dan +Devin +Earl +Evan +Fernando +Francis +Garrett +Herbert +Jaime +Jarrod +Jody +Joey +Kenny +Lorenzo +Luke +Marvin +Morgan +Ron +Tad +Tyrone +Andy +Antonio +Ben +Darrel +Dave +Frankie +Freddie +Gordon +Harry +Jesus +Jimmie +Kris +Leon +Levi +Lloyd +Matt +Roland +Shad +Stefan +Zachariah +Alfredo +Alvin +Armando +Arnold +Bart +Bernard +Blake +Bradly +Brady +Clifton +Conrad +Donovan +Edwin +Erin +Guy +Jake +Jeremiah +Leslie +Maurice +Micah +Miles +Oscar +Ross +Scotty +Tracey +Virgil +Beau +Dallas +Dane +Dewayne +Eli +Erick +Floyd +Fredrick +Gino +Hans +Jim +Jordan +Kerry +Leo +Lucas +Marty +Max +Orlando +Rex +Robbie +Stacey +Stacy +Stephan +Thaddeus +Tim +Tory +Tyson +Vernon +Abel +Aric +Arturo +Benny +Blaine +Bradford +Brain +Calvin +Cecil +Chadwick +Chester +Clarence +Colby +Davin +Delbert +Dion +Donnie +Eddy +Ernesto +Felix +Fidel +Franklin +Garry +Gregg +Hector +Ivan +Jeramy +Jerrod +Kory +Louie +Mickey +Monty +Perry +Rene +Sammy +Sergio +Sheldon +Simon +Terrance +Terrence +Theron +Tino +Abraham +Alberto +Alejandro +Angel +Austin +Bennie +Branden +Brice +Brooks +Carey +Clark +Cole +Curt +Damion +Daren +Darryl +Darwin +Drew +Dwight +Earnest +Emiliano +Ethan +Felipe +Garret +Garrick +Gerardo +Harvey +Jamison +Jerald +Joesph +Johnnie +Kai +Kendall +Kristian +Lamont +Lewis +Lon +Lyle +Marco +Melvin +Nick +Nicolas +Noah +Omar +Pedro +Phil +Ramon +Randal +Randolph +Rob +Roberto +Taylor +Timmy +Zane +Michael +Jason +Christopher +David +Brian +John +Robert +James +Matthew +Daniel +Eric +William +Jeffrey +Mark +Richard +Scott +Kevin +Joseph +Steven +Jeremy +Thomas +Ryan +Chad +Joshua +Paul +Justin +Timothy +Aaron +Shawn +Anthony +Andrew +Charles +Gregory +Shane +Kenneth +Sean +Travis +Todd +Nathan +Jonathan +Adam +Stephen +Troy +Patrick +Brandon +Bryan +Douglas +Donald +Brett +Benjamin +Edward +Jesse +Ronald +Derek +Craig +Keith +Peter +George +Jose +Brent +Erik +Frank +Gary +Bradley +Larry +Gabriel +Joel +Samuel +Raymond +Clinton +Nicholas +Phillip +Russell +Marc +Jeffery +Juan +Dennis +Jacob +Jerry +Roger +Rodney +Jamie +Danny +Manuel +Mike +Chris +Joe +Philip +Alan +Kelly +Arthur +Dustin +Jared +Randy +Carlos +Cory +Dale +Jon +Kyle +Lance +Lee +Shannon +Christian +Lawrence +Terry +Wayne +Zachary +Bobby +Tony +Kirk +Marcus +Micheal +Alexander +Jay +Neil +Victor +Casey +Darren +Eugene +Johnny +Martin +Carl +Cody +Curtis +Ian +Jeff +Louis +Mathew +Roy +Billy +Gerald +Mario +Theodore +Tyler +Wesley +Adrian +Harold +Isaac +Jeremiah +Brad +Damon +Jimmy +Randall +Vincent +Duane +Nathaniel +Seth +Antonio +Darrell +Derrick +Ralph +Walter +Darin +Dean +Eddie +Francisco +Geoffrey +Jesus +Ray +Ricky +Steve +Albert +Allen +Clint +Devin +Edwin +Ernest +Henry +Joey +Leonard +Ronnie +Wade +Clayton +Gilbert +Glenn +Jack +Karl +Kurt +Ricardo +Tommy +Trevor +Bruce +Glen +Heath +Luke +Miguel +Stanley +Corey +Josh +Spencer +Toby +Colin +Damian +Dana +Frederick +Jonathon +Leon +Micah +Rick +Ruben +Tracy +Andre +Andy +Ethan +Fred +Kent +Lonnie +Preston +Rudy +Cameron +Floyd +Greg +Leroy +Leslie +Stuart +Ben +Clifford +Don +Grant +Jake +Jerome +Jessie +Kenny +Kristopher +Sam +Bernard +Brady +Evan +Guy +Howard +Luis +Matt +Mitchell +Monte +Nick +Ramon +Shaun +Trent +Alejandro +Alex +Bret +Calvin +Dion +Earl +Gene +Jim +Lloyd +Loren +Lynn +Norman +Roberto +Ty +Tyson +Willie +Zachariah +Alfonso +Alfred +Bradford +Byron +Dan +Daryl +Dominic +Franklin +Hans +Jaime +Jess +Joaquin +Neal +Raul +Rex +Rocky +Shad +Allan +Brenton +Bryon +Dallas +Darrin +Dwayne +Erick +Guadalupe +Jody +Leo +Marcos +Marvin +Melvin +Roman +Ross +Scotty +Sonny +Tyrone +Warren +Angelo +Bill +Bryce +Chadwick +Charlie +Darrel +Desmond +Dylan +Erin +Everett +Gordon +Gregg +Javier +Jayson +Jerald +Joesph +Kory +Levi +Lewis +Louie +Lucas +Lyle +Marty +Max +Monty +Pete +Randal +Reginald +Robin +Scot +Simon +Tobias +Alfredo +Bradly +Brendan +Chance +Chase +Clarence +Clay +Colby +Conrad +Darryl +Dax +Dominick +Erich +Felix +Fredrick +Galen +Garrett +Graham +Israel +Ivan +Jarrod +Jermaine +Johnathan +Julian +Kris +Kristian +Lonny +Lorenzo +Mason +Maurice +Morgan +Moses +Oliver +Pat +Pedro +Rhett +Roland +Rusty +Stacy +Terrance +Tim +Tom +Vance +Abraham +Aron +Arturo +Barry +Branden +Caleb +Cedric +Chuck +Clyde +Damien +Devon +Donovan +Dwight +Edgar +Fernando +Freddie +Garth +Hector +Jasen +Jed +Jefferson +Jorge +Kerry +Kim +Mickey +Nicolas +Noel +Orlando +Perry +Quinn +Robbie +Rory +Santiago +Tad +Teddy +Terrence +Thad +Vernon +Michael +Jason +Christopher +David +Robert +Brian +James +John +Matthew +Daniel +Eric +Mark +Joshua +Jeffrey +Ryan +Jeremy +Scott +William +Joseph +Richard +Aaron +Steven +Anthony +Justin +Timothy +Kevin +Paul +Andrew +Thomas +Shawn +Chad +Nathan +Sean +Charles +Adam +Shane +Travis +Gregory +Jonathan +Stephen +Benjamin +Troy +Kenneth +Patrick +Brandon +Donald +Todd +Bryan +Jesse +Edward +Ronald +Gary +Jacob +Douglas +Bradley +Peter +Frank +Gabriel +George +Jeffery +Raymond +Jerry +Erik +Samuel +Jose +Keith +Craig +Brent +Derek +Joel +Larry +Phillip +Dustin +Jeremiah +Zachary +Jay +Dennis +Marc +Nicholas +Russell +Brett +Jon +Juan +Carlos +Mario +Ian +Marcus +Terry +Kyle +Randy +Rodney +Tyler +Curtis +Kelly +Tony +Casey +Jared +Billy +Micheal +Roger +Adrian +Darren +Devin +Joe +Lance +Vincent +Chris +Corey +Cory +Gerald +Jack +Roy +Damon +Nathaniel +Cody +Jamie +Philip +Dale +Danny +Martin +Antonio +Carl +Lee +Bruce +Christian +Lucas +Manuel +Shannon +Toby +Wayne +Alexander +Bobby +Brad +Randall +Kirk +Lawrence +Mathew +Ricky +Victor +Arthur +Alan +Clinton +Jesus +Leonard +Tommy +Wade +Walter +Darrell +Eugene +Kristopher +Kurt +Luke +Miguel +Neil +Seth +Tracy +Derrick +Ernest +Greg +Johnny +Steve +Allen +Clayton +Francisco +Luis +Max +Albert +Ben +Bret +Geoffrey +Isaac +Louis +Clifford +Darin +Jeff +Jerome +Mike +Ruben +Theodore +Alex +Clint +Damian +Dominic +Duane +Dylan +Fred +Harold +Heath +Marvin +Shaun +Bill +Gilbert +Henry +Johnathan +Julian +Kent +Ronnie +Ty +Glenn +Grant +Jake +Karl +Leroy +Levi +Lorenzo +Nick +Ricardo +Eddie +Jimmy +Kris +Micah +Mitchell +Orlando +Rick +Stanley +Zachariah +Andy +Barry +Dean +Eli +Ethan +Jaime +Lonnie +Preston +Spencer +Trent +Trevor +Tyson +Abraham +Andre +Angelo +Caleb +Damien +Dana +Dwayne +Edwin +Glen +Jody +Melvin +Noah +Rudy +Tyrone +Wesley +Bryce +Colby +Evan +Garrett +Jeffry +Jess +Josh +Leon +Lyle +Raul +Alejandro +Alfred +Andres +Brady +Darrin +Dominick +Drew +Erick +Felix +Frederick +Jonathon +Marco +Neal +Norman +Pete +Rafael +Ralph +Roberto +Tim +Tom +Alvin +Beau +Brendan +Charlie +Colin +Conrad +Devon +Erin +Frankie +Fredrick +Gordon +Guy +Hector +Howard +Jarrod +Jimmie +Joey +Noel +Oscar +Ray +Robbie +Ross +Shad +Ted +Armando +Benny +Blaine +Bradford +Byron +Cameron +Clay +Cole +Damion +Daryl +Dion +Don +Francis +Garth +Gene +Jayson +Jefferson +Joaquin +Leslie +Lynn +Pedro +Rusty +Scotty +Stacy +Stewart +Stuart +Amos +Angel +Blake +Bryon +Calvin +Clarence +Dan +Doug +Eduardo +Elias +Emilio +Enrique +Erich +Floyd +Forrest +Franklin +Guillermo +Javier +Jermaine +Jim +Jorge +Kristofer +Lane +Leo +Lewis +Lloyd +Loren +Marcos +Matt +Monte +Morgan +Moses +Reuben +Rickey +Rory +Salvador +Shelby +Shon +Sonny +Stefan +Thad +Tomas +Vernon +Warren +Andreas +Aric +Arnold +Brennan +Coby +Desmond +Diego +Domonic +Donny +Eldon +Elijah +Emory +Fernando +Garry +Gregg +Hans +Harry +Ira +Israel +Ivan +Jeromy +Johnathon +Jordan +Kip +Kristin +Kurtis +Leif +Mason +Monty +Nicky +Perry +Ramon +Rene +Rocky +Roman +Saul +Sergio +Shayne +Sheldon +Stephan +Timmy +Tobias +Walker +Will +Willie +Michael +Jason +Christopher +David +Matthew +James +Robert +John +Brian +Daniel +Joshua +Eric +Jeremy +Joseph +Jeffrey +Scott +Ryan +William +Justin +Anthony +Richard +Andrew +Aaron +Mark +Steven +Chad +Timothy +Nathan +Kevin +Thomas +Shawn +Paul +Adam +Jonathan +Charles +Benjamin +Travis +Sean +Brandon +Shane +Gregory +Patrick +Stephen +Jesse +Kenneth +Bryan +Jacob +Todd +Bradley +Donald +Ronald +Douglas +Edward +Craig +Troy +Brett +Dustin +Peter +Gary +Jeremiah +Jose +Keith +Derek +Samuel +Jared +Raymond +Gabriel +Nicholas +Carlos +Dennis +Joel +Juan +Brent +George +Frank +Zachary +Jamie +Jerry +Seth +Erik +Russell +Lance +Larry +Cory +Jeffery +Phillip +Jon +Kyle +Randy +Casey +Jay +Clinton +Joe +Terry +Micheal +Shannon +Tyler +Cody +Damon +Marc +Christian +Isaac +Marcus +Nathaniel +Rodney +Danny +Victor +Alan +Ian +Alexander +Cameron +Philip +Tony +Wade +Lucas +Mario +Roger +Trevor +Corey +Lawrence +Martin +Billy +Chris +Dominic +Eugene +Kristopher +Kurt +Steve +Brad +Clayton +Dale +Lee +Mathew +Toby +Adrian +Antonio +Arthur +Johnny +Kirk +Neil +Vincent +Darren +Francisco +Karl +Kelly +Luke +Manuel +Colin +Darrell +Devin +Gerald +Heath +Jarrod +Wayne +Clint +Ernest +Gilbert +Jesus +Randall +Roy +Allen +Duane +Grant +Curtis +Jack +Leonard +Noah +Spencer +Theodore +Tyson +Bobby +Bruce +Geoffrey +Jeff +Luis +Micah +Albert +Carl +Henry +Jerome +Julian +Ronnie +Wesley +Andy +Angelo +Walter +Alex +Frederick +Greg +Jimmy +Leroy +Ralph +Tommy +Alfred +Dean +Dwayne +Ethan +Alfonso +Damian +Javier +Joey +Kent +Levi +Max +Ricardo +Ricky +Ruben +Stanley +Stuart +Tracy +Barry +Ben +Bret +Clifford +Glenn +Jaime +Melvin +Orlando +Ramon +Andre +Caleb +Calvin +Don +Drew +Eddie +Frankie +Glen +Harold +Johnathan +Nick +Zachariah +Abraham +Alejandro +Alvin +Armando +Blake +Byron +Colby +Dana +Darin +Derrick +Devon +Evan +Floyd +Fredrick +Gordon +Jess +Joaquin +Leon +Leslie +Lonnie +Lorenzo +Matt +Mike +Mitchell +Ty +Tyrone +Darrin +Dion +Dylan +Ivan +Loren +Louis +Marty +Miguel +Moses +Neal +Norman +Robin +Tobias +Warren +Andres +Bernard +Bradford +Bryon +Cesar +Collin +Daryl +Fred +Jake +Jarod +Jordan +Kory +Rafael +Sonny +Ted +Terrence +Trent +Allan +Brendan +Chadwick +Clay +Dominick +Eli +Erick +Erin +Ernesto +Felipe +Fernando +Franklin +Garrett +Gene +Landon +Leo +Lloyd +Marvin +Pablo +Preston +Raul +Rudy +Shayne +Zane +Aron +Bob +Brady +Brice +Brock +Charlie +Clarence +Clark +Curt +Danial +Hector +Herbert +Israel +Jeffry +Joesph +Jonathon +Kenny +Marco +Maurice +Morgan +Pete +Ray +Rick +Roman +Simon +Vance +Willie +Angel +Aric +Bryant +Chester +Damion +Dan +Dax +Edwin +Emilio +Fabian +Forrest +Guy +Harry +Jamison +Jayson +Jennifer +Jeramie +Jeremie +Jermaine +Jessie +Jim +Jody +Johnnie +Josh +Kris +Lane +Marcos +Noel +Oscar +Pedro +Rene +Rex +Roland +Royce +Salvador +Sammy +Sheldon +Stacey +Stefan +Tim +Tomas +Will +Abel +Alfredo +Beau +Brant +Carey +Carson +Carter +Cary +Conrad +Earl +Elias +Elliot +Elmer +Enrique +Felix +Garth +Jed +Jerod +Kraig +Kristofer +Lars +Leland +Lonny +Mikel +Nelson +Octavio +Orion +Perry +Riley +Rocky +Ross +Santiago +Shaun +Stacy +Taylor +Theron +Tory +Tucker +Vernon +Wyatt +Michael +Jason +Christopher +Matthew +David +Brian +James +Robert +John +Jeremy +Daniel +Joshua +Ryan +Eric +Joseph +Justin +Jeffrey +Aaron +William +Anthony +Mark +Scott +Nathan +Andrew +Steven +Timothy +Shawn +Thomas +Kevin +Chad +Richard +Adam +Benjamin +Paul +Charles +Brandon +Jonathan +Travis +Jesse +Jacob +Sean +Shane +Jeremiah +Gregory +Patrick +Bradley +Bryan +Stephen +Jared +Zachary +Kenneth +Todd +Donald +Douglas +Troy +Gary +Dustin +Gabriel +Ronald +Raymond +Samuel +Nicholas +Derek +Jose +Keith +Peter +Joel +Tyler +Frank +Phillip +Casey +Corey +Edward +Larry +Jerry +Randy +Ian +Jeffery +Craig +Juan +Cory +Seth +Brett +Brent +Carlos +Clinton +Nathaniel +Erik +George +Jon +Russell +Dennis +Manuel +Marc +Philip +Heath +Jamie +Jay +Lance +Lee +Rodney +Shannon +Joe +Kyle +Lucas +Adrian +Alexander +Martin +Victor +Antonio +Carl +Marcus +Gerald +Damon +Danny +Eugene +Jack +Curtis +Mario +Vincent +Jesus +Kristopher +Terry +Cody +Christian +Henry +Johnny +Kelly +Kirk +Mathew +Micheal +Ricky +Tony +Wade +Wesley +Arthur +Billy +Lawrence +Darren +Luke +Neil +Alan +Albert +Jerome +Theodore +Allen +Cameron +Grant +Joey +Damian +Francisco +Louis +Toby +Wayne +Ben +Brad +Chris +Clayton +Jessie +Kurt +Levi +Luis +Miguel +Randall +Bobby +Isaac +Roy +Zachariah +Alex +Clifford +Dale +Derrick +Ernest +Gilbert +Jorge +Julian +Mike +Mitchell +Dominic +Geoffrey +Jarrod +Leonard +Norman +Raul +Ricardo +Tommy +Andre +Angelo +Darrell +Evan +Jaime +Micah +Noah +Spencer +Tracy +Tyson +Abraham +Armando +Bret +Caleb +Duane +Edwin +Fred +Lonnie +Roger +Ronnie +Steve +Trevor +Walter +Bruce +Bryce +Dwayne +Erick +Frederick +Jake +Jimmy +Jody +Karl +Leon +Nick +Ray +Stanley +Blake +Brendan +Colin +Glenn +Harold +Ivan +Jeff +Leroy +Roberto +Austin +Barry +Colby +Dean +Devin +Ethan +Greg +Mason +Neal +Ramon +Ruben +Shaun +Tobias +Ty +Alfred +Alfredo +Bernard +Clint +Damion +Glen +Jim +Jordan +Kent +Leo +Marco +Marcos +Marshall +Oscar +Pablo +Quincy +Rocky +Terrance +Trent +Alejandro +Ashley +Brady +Brock +Calvin +Dylan +Erin +Felix +Francis +Garrett +Joaquin +Johnathan +Rick +Ross +Simon +Tyrone +Vicente +Warren +Abel +Beau +Dallas +Darin +Daryl +Donnie +Donny +Donovan +Fernando +Jamey +Jarod +Jess +Kurtis +Lloyd +Melvin +Nicolas +Quentin +Robin +Torrey +Alvin +Bill +Charlie +Clay +Drew +Dwight +Felipe +Forrest +Frankie +Galen +Gordon +Guadalupe +Harry +Harvey +Howard +Isaiah +Jasen +Javier +Jayson +Jed +Jeramie +Jeremie +Jeromy +Jerrod +Jimmie +Lenny +Loren +Marvin +Orlando +Rex +Rogelio +Roland +Rory +Rudy +Rusty +Scot +Shad +Thaddeus +Alfonso +Bradford +Byron +Cecil +Chadwick +Conrad +Curt +Dana +Darrin +Earl +Enrique +Everett +Fabian +Floyd +Franklin +Hector +Ira +Jeramy +Jered +Jonah +Jonathon +Josef +Kris +Lorenzo +Marty +Matt +Miles +Monte +Nickolas +Preston +Ralph +Rudolph +Santiago +Shelby +Sheldon +Stuart +Tad +Tomas +Vernon +Zachery +Zane +Alonzo +Andres +Andy +Aric +Aron +Bart +Bjorn +Branden +Brendon +Brice +Cary +Cesar +Chester +Clarence +Clark +Collin +Damien +Dane +Darryl +Demetrius +Eddie +Ezra +Freddie +Garry +Gene +Graham +Gregg +Gregorio +Hugh +Jarred +Jermaine +Jerod +Johnnie +Julio +Kenny +Kody +Kory +Leland +Louie +Markus +Mikel +Milton +Nathanael +Noel +Oliver +Reginald +Reuben +Rickey +Rico +Roman +Rueben +Sam +Saul +Sherman +Terrence +Trenton +Michael +Jason +Christopher +David +Matthew +Joshua +Brian +James +Ryan +Robert +John +Daniel +Jeremy +Joseph +Eric +Justin +Jeffrey +Andrew +Kevin +Timothy +Nathan +Aaron +Benjamin +Mark +Richard +William +Steven +Thomas +Scott +Anthony +Adam +Paul +Chad +Travis +Jonathan +Jacob +Charles +Jeremiah +Shawn +Brandon +Jesse +Sean +Patrick +Zachary +Kenneth +Bryan +Nicholas +Shane +Gregory +Jared +Todd +Donald +Douglas +Stephen +Gabriel +Dustin +Bradley +Jose +Keith +Troy +Edward +Peter +Samuel +Kyle +Phillip +Gary +Joel +Cory +Ronald +Raymond +Seth +Casey +Corey +Larry +Craig +Nathaniel +Erik +Frank +Brent +Ian +Juan +Cody +Derek +Adrian +Brett +Philip +George +Dennis +Russell +Dominic +Luke +Jeffery +Marcus +Randy +Mario +Terry +Wesley +Curtis +Alexander +Martin +Victor +Jay +Jon +Tyler +Damon +Jerry +Louis +Marc +Carl +Carlos +Johnny +Kristopher +Brad +Clinton +Eugene +Francisco +Jesus +Joe +Vincent +Gerald +Lance +Micheal +Evan +Tony +Danny +Isaac +Manuel +Chris +Henry +Jimmy +Kelly +Lawrence +Albert +Colin +Lee +Lucas +Rodney +Roy +Wade +Andre +Christian +Clint +Julian +Levi +Shaun +Arthur +Billy +Jack +Mitchell +Trevor +Antonio +Caleb +Darren +Derrick +Jonathon +Kurt +Mathew +Micah +Alan +Alex +Austin +Cameron +Dale +Jamie +Neil +Roger +Tyson +Dean +Heath +Jessie +Miguel +Ricky +Roberto +Spencer +Theodore +Bobby +Devin +Harold +Karl +Leroy +Randall +Wayne +Armando +Ben +Clayton +Grant +Leonard +Zachariah +Kirk +Walter +Angelo +Clifford +Damian +Darrell +Eli +Ernest +Ethan +Geoffrey +Glenn +Joey +Noah +Ross +Andy +Beau +Darin +Jaime +Jarrod +Ralph +Tommy +Andres +Bryce +Gilbert +Glen +Jerome +Johnathan +Lonnie +Loren +Ruben +Steve +Abraham +Allen +Damien +Don +Dylan +Frederick +Greg +Jordan +Leon +Luis +Oscar +Ray +Rocky +Rory +Alfred +Aric +Blake +Earl +Elijah +Garrett +Jayson +Jody +Lloyd +Mike +Morgan +Nick +Shannon +Stanley +Stuart +Trent +Barry +Brock +Daryl +Dominick +Eddie +Jake +Leland +Norman +Ronnie +Ty +Tyrone +Alfonso +Alonzo +Angel +Bruce +Byron +Calvin +Dana +Devon +Duane +Erin +Floyd +Jerrod +Jorge +Kenny +Marcos +Omar +Pedro +Preston +Quentin +Ramon +Raul +Ricardo +Solomon +Tobias +Alvin +Brendan +Bret +Elias +Ezra +Felix +Forrest +Fred +Isaiah +Ivan +Jarod +Johnnie +Kory +Kristian +Lyle +Marco +Max +Neal +Nicolas +Orion +Orlando +Pete +Rick +Santiago +Ted +Vernon +Alfredo +Arron +Brady +Branden +Chadwick +Chance +Damion +Erick +Frankie +Franklin +Gene +Javier +Jeff +Josh +Kent +Leslie +Marshall +Marvin +Quincy +Rafael +Rudy +Terrence +Toby +Will +Allan +Ashley +Benito +Bryon +Clay +Darnell +Darrin +Darryl +Dave +Donovan +Eduardo +Everett +Fabian +Fernando +Francis +Gerardo +Guy +Harry +Howard +Jamin +Jarred +Jeffry +Jeramiah +Jimmie +Kris +Leo +Leonardo +Lorenzo +Louie +Marty +Mason +Myron +Nathanael +Nathanial +Owen +Ramiro +Reginald +Ron +Shad +Tad +Taylor +Terence +Terrance +Tom +Tomas +Warren +Willie +Abel +Alberto +Alejandro +Amos +Benjamen +Bill +Buck +Chase +Clark +Clifton +Courtney +Dallas +Dan +Daren +Darrel +Donnie +Dorian +Drew +Dwayne +Edgar +Elmer +Erich +Forest +Fredrick +Gavin +Gordon +Graham +Hank +Hector +Israel +Jed +Jefferey +Jerad +Jerald +Jermaine +Jess +Joaquin +Joesph +Jonas +Julio +Kerry +Liam +Logan +Melvin +Moises +Oliver +Pablo +Rico +Rogelio +Roland +Roman +Salvador +Saul +Sergio +Stewart +Tim +Tracy +Trenton +Uriah +Vance +Vicente +Michael +Jason +Christopher +David +Matthew +James +Joshua +John +Ryan +Brian +Robert +Daniel +Joseph +Jeremy +Justin +William +Eric +Andrew +Nicholas +Timothy +Jeffrey +Adam +Aaron +Kevin +Richard +Mark +Anthony +Steven +Thomas +Nathan +Benjamin +Scott +Chad +Brandon +Charles +Jonathan +Paul +Travis +Patrick +Jacob +Sean +Jesse +Shawn +Stephen +Gregory +Jeremiah +Shane +Bryan +Dustin +Bradley +Kenneth +Shaun +Zachary +Todd +Samuel +Gabriel +Joel +Tyler +Jose +Donald +Douglas +Craig +Gary +Cody +Casey +Edward +Jared +Luke +Phillip +Ronald +Peter +Nathaniel +Corey +Keith +Kyle +Raymond +Troy +Lucas +Derek +Erik +Brent +Clinton +Seth +Carlos +Cory +Jon +Juan +Dominic +Carl +Alexander +George +Jerry +Kristopher +Brett +Jeffery +Frank +Larry +Wesley +Marcus +Randy +Russell +Ian +Mario +Dennis +Antonio +Jay +Christian +Curtis +Isaac +Manuel +Philip +Martin +Arthur +Joe +Terry +Alan +Allen +Marc +Caleb +Chris +Dale +Neil +Victor +Vincent +Adrian +Wayne +Francisco +Lee +Luis +Mathew +Geoffrey +Jarrod +Lawrence +Micheal +Theodore +Cameron +Lance +Miguel +Ricardo +Albert +Bobby +Clayton +Jamie +Kelly +Brad +Henry +Jordan +Roger +Roy +Tony +Trevor +Walter +Damon +Devin +Dylan +Gerald +Grant +Heath +Jesus +Kurt +Louis +Nicolas +Randall +Colin +Danny +Darren +Derrick +Ernest +Leonard +Rodney +Toby +Tyson +Johnny +Levi +Ray +Ethan +Garrett +Jimmy +Micah +Preston +Ralph +Ricky +Ross +Austin +Bruce +Evan +Ramon +Steve +Armando +Billy +Duane +Eugene +Jaime +Leon +Ruben +Zachariah +Barry +Clint +Damian +Darrell +Eli +Jack +Kent +Logan +Drew +Fernando +Jeff +Jessie +Julian +Leroy +Mitchell +Raul +Alfredo +Ben +Dean +Eddie +Erick +Harold +Jerome +Morgan +Rocky +Rudy +Tommy +Trenton +Ty +Wade +Brendan +Clifton +Damien +Jerrod +Joey +Jonathon +Josh +Alex +Angelo +Bret +Dwayne +Gilbert +Jedediah +Joaquin +Johnathan +Jorge +Karl +Mike +Norman +Rick +Tomas +Warren +Abraham +Alejandro +Andre +Beau +Clifford +Elijah +Felix +Frederick +Jake +Jess +Kirk +Kristofer +Lonnie +Lyle +Marvin +Max +Nick +Orlando +Andy +Angel +Blake +Brant +Brock +Bryce +Chadwick +Collin +Darin +Daryl +Earl +Edwin +Fred +Gene +Glen +Jed +Marshall +Noah +Noel +Omar +Pedro +Rafael +Shannon +Simon +Stuart +Tracy +Benny +Bradford +Byron +Calvin +Colby +Hans +Harley +Harry +Jackson +Jarrett +Jeffry +Landon +Maurice +Monty +Nathanial +Neal +Roberto +Sergio +Spencer +Alfonso +Alfred +Allan +Amos +Andres +Branden +Cole +Damion +Dana +Eduardo +Fabian +Gordon +Greg +Jade +Jayson +Joesph +Kasey +Lloyd +Loren +Marcos +Mason +Nickolas +Pablo +Pete +Robbie +Stanley +Stefan +Stephan +Taylor +Tobias +Tom +Tyrone +Adan +Bart +Benito +Bernard +Bryon +Charlie +Cullen +Dallas +Dane +Danial +Darnell +Devon +Donovan +Edgar +Enrique +Felipe +Franklin +Fredrick +Gino +Howard +Ira +Jarod +Javier +Jered +Jeromy +Kaleb +Leland +Leslie +Lewis +Miles +Nathanael +Orion +Oscar +Quincy +Randal +Robin +Roman +Ronnie +Sam +Sonny +Terrance +Thaddeus +Trent +Uriah +Willie +Zachery +Antony +Aron +Brice +Cale +Chance +Chester +Clarence +Clark +Connor +Conor +Courtney +Dan +Darrin +Dax +Dominick +Erich +Ezekiel +Ezra +Floyd +Forrest +Francis +Garth +Glenn +Graham +Gregg +Guadalupe +Isaiah +Jerald +Jeramiah +Jermaine +Jerod +Johnathon +Josiah +Julius +Kenny +Kip +Kurtis +Leif +Leo +Leonardo +Lionel +Myron +Oliver +Rex +Rickey +Stewart +Ted +Terence +Vance +Waylon +Michael +Christopher +Jason +David +Joshua +Matthew +Ryan +James +John +Robert +Daniel +Brian +Nicholas +Joseph +Justin +Jeremy +Andrew +Eric +Timothy +William +Aaron +Adam +Nathan +Jeffrey +Anthony +Richard +Scott +Kevin +Steven +Benjamin +Jonathan +Mark +Travis +Thomas +Paul +Jacob +Chad +Jesse +Brandon +Charles +Zachary +Patrick +Sean +Jeremiah +Stephen +Dustin +Kenneth +Shawn +Jared +Bradley +Bryan +Gregory +Gabriel +Lucas +Samuel +Shane +Jose +Tyler +Luke +Casey +Kyle +Erik +Todd +Donald +Alexander +Shaun +Douglas +Keith +Nathaniel +Edward +Seth +Carlos +Brett +Derek +Cody +Peter +Phillip +Cory +Craig +Ronald +Joel +Ian +Larry +Curtis +Gary +Corey +Jeffery +Juan +Raymond +Dennis +Mario +Philip +Brent +George +Jerry +Mathew +Clinton +Troy +Levi +Marcus +Wesley +Adrian +Jon +Marc +Trevor +Manuel +Frank +Randy +Alan +Billy +Dominic +Grant +Isaac +Lee +Kristopher +Russell +Danny +Lance +Jack +Terry +Victor +Zachariah +Evan +Jay +Louis +Arthur +Caleb +Joe +Christian +Tony +Vincent +Alex +Brad +Cameron +Clint +Garrett +Jordan +Albert +Colin +Geoffrey +Jesus +Lawrence +Martin +Carl +Francisco +Bobby +Dale +Derrick +Devin +Heath +Neil +Ramon +Roy +Spencer +Jamie +Micheal +Antonio +Clayton +Micah +Randall +Roger +Stanley +Brendan +Luis +Bruce +Ethan +Jerome +Miguel +Austin +Mitchell +Andre +Eugene +Gerald +Jimmy +Kelly +Kurt +Noah +Ross +Shannon +Tyson +Allen +Darren +Dylan +Jarrod +Ricky +Clifford +Damon +Drew +Johnny +Kirk +Nicolas +Ricardo +Toby +Walter +Wayne +Andres +Chris +Ernest +Jake +Leonard +Maurice +Preston +Roberto +Rodney +Simon +Steve +Theodore +Armando +Beau +Eddie +Frederick +Joey +Jonathon +Ruben +Tommy +Wade +Alfonso +Andy +Brady +Darin +Jaime +Leon +Omar +Ray +Salvador +Tanner +Ted +Darrell +Gene +Gilbert +Jessie +Jonah +Robin +Rocky +Courtney +Dallas +Damian +Dirk +Duane +Eli +Henry +Javier +Jedediah +Johnathan +Julian +Leroy +Lorenzo +Nickolas +Pedro +Ronnie +Taylor +Trent +Barry +Blake +Calvin +Cesar +Damien +Don +Donovan +Elijah +Ivan +Joaquin +Jorge +Marcos +Morgan +Nick +Reginald +Rudy +Brock +Bryce +Francis +Glenn +Harold +Jarod +Jed +Jedidiah +Jess +Kent +Landon +Lloyd +Max +Nathanael +Pete +Raul +Saul +Stuart +Tomas +Abraham +Alfred +Angel +Angelo +Aron +Ashley +Benny +Brant +Bret +Bryon +Clifton +Colby +Dean +Devon +Earl +Edwin +Felix +Franklin +Glen +Gordon +Harry +Howard +Isaiah +Josh +Karl +Logan +Marco +Mike +Noel +Orion +Pablo +Ralph +Rick +Thaddeus +Tom +Ty +Tyrone +Vernon +Alejandro +Augustine +Ben +Clarence +Clay +Elias +Elliott +Issac +Jeramie +Jerimiah +Jeromy +Jim +Jimmie +Leo +Leslie +Melvin +Moses +Neal +Orlando +Oscar +Owen +Quincy +Rafael +Rickey +Roman +Scotty +Terrance +Tobias +Alvin +Bradford +Byron +Carey +Dane +Dillon +Edgar +Efren +Enrique +Everett +Felipe +Fred +Fredrick +Galen +Garth +Greg +Harley +Hector +Ismael +Jackson +Jeramy +Jeremey +Jermaine +Jody +Josiah +Judson +Julio +Kerry +Kory +Lars +Leif +Lewis +Marshall +Miles +Rene +Rodolfo +Ron +Tracy +Tristan +Tyrel +Vicente +Zachery +Zane +Abram +Allan +Amos +Angela +Arturo +Branden +Brice +Brodie +Carson +Chance +Charlie +Collin +Darius +Daryl +Dion +Dwayne +Dwight +Eloy +Erick +Erin +Fabian +Fernando +Forrest +Garret +Gerardo +Graham +Hans +Herman +Israel +Jarad +Jasen +Jeff +Jered +Jerod +Jerrad +Jonas +Kip +Lionel +Lonnie +Mason +Matt +Randolph +Reed +Reid +Rogelio +Roland +Sam +Shayne +Solomon +Sonny +Stefan +Trenton +Willie +Zebulon +Michael +Christopher +Matthew +Joshua +Jason +David +Ryan +Justin +James +John +Daniel +Robert +Brian +Nicholas +Joseph +Eric +Adam +Andrew +Jeremy +Aaron +Benjamin +William +Anthony +Timothy +Nathan +Jeffrey +Brandon +Jonathan +Scott +Richard +Jesse +Kevin +Thomas +Steven +Jacob +Mark +Paul +Travis +Dustin +Charles +Patrick +Chad +Jared +Sean +Derek +Luke +Bryan +Jeremiah +Zachary +Stephen +Gregory +Kenneth +Bradley +Shane +Jose +Shawn +Samuel +Erik +Kyle +Tyler +Lucas +Ian +Cody +Craig +Casey +Gabriel +Peter +Todd +Donald +Douglas +Juan +Alexander +Seth +Brett +Edward +Raymond +Carlos +Keith +Nathaniel +Cory +Joel +Brent +Isaac +Phillip +Corey +Russell +Curtis +Shaun +Levi +Ronald +Gary +Frank +George +Randy +Mathew +Wesley +Jon +Kristopher +Trevor +Troy +Antonio +Clinton +Jesus +Jordan +Larry +Mario +Vincent +Philip +Jeffery +Adrian +Grant +Victor +Christian +Evan +Manuel +Martin +Carl +Danny +Dominic +Jerry +Randall +Lance +Marc +Marcus +Theodore +Dennis +Derrick +Jay +Micheal +Alan +Austin +Clayton +Colin +Tony +Billy +Geoffrey +Luis +Devin +Jamie +Terry +Cameron +Garrett +Louis +Albert +Clint +Gilbert +Henry +Lee +Miguel +Alex +Allen +Bobby +Dale +Damon +Jarrod +Neil +Ricky +Tyson +Beau +Caleb +Darren +Gerald +Jack +Toby +Arthur +Kirk +Kurt +Noah +Ricardo +Zachariah +Brad +Francisco +Rodney +Jerome +Johnny +Julian +Kelly +Lawrence +Angelo +Ernest +Eugene +Jimmy +Joey +Nicolas +Roger +Leroy +Mitchell +Taylor +Jonathon +Roberto +Tommy +Ty +Bruce +Darrell +Johnathan +Leonard +Logan +Preston +Ray +Brendan +Dylan +Joe +Nickolas +Oscar +Spencer +Walter +Andre +Armando +Arturo +Dean +Elijah +Graham +Jake +Maurice +Ross +Ruben +Wade +Alfredo +Allan +Andy +Barry +Blake +Brock +Drew +Ethan +Fernando +Israel +Jessie +Karl +Raul +Ronnie +Simon +Clifford +Dallas +Damien +Forrest +Harold +Heath +Jim +Mike +Neal +Orlando +Rex +Rory +Roy +Rudy +Tanner +Tomas +Zachery +Alfonso +Bryce +Byron +Chris +Eddie +Edgar +Jarod +Javier +Jeff +Jonah +Leo +Leon +Loren +Marcos +Micah +Shannon +Trent +Wayne +Abraham +Alejandro +Andres +Ben +Brady +Branden +Bret +Calvin +Charlie +Cole +Derick +Eduardo +Eli +Fred +Greg +Jerod +Jorge +Marshall +Morgan +Nathanael +Ramon +Rusty +Tracy +Warren +Will +Abel +Dillon +Gavin +Harry +Howard +Jaime +Jeramie +Josh +Josiah +Julio +Kenny +Landon +Lorenzo +Pedro +Quinn +Rafael +Ralph +Rocky +Tobias +Dana +Daryl +Dominick +Don +Donovan +Everett +Franklin +Frederick +Jarred +Kent +Kory +Kurtis +Max +Nicholaus +Owen +Reginald +Rick +Robin +Sam +Stuart +Willie +Alberto +Bill +Bryon +Bryson +Collin +Devon +Dusty +Earl +Erick +Ernesto +Glen +Hans +Hector +Jedediah +Jered +Jermaine +Jeromy +Jerrod +Jess +Joesph +Lloyd +Moses +Noel +Parker +Reid +Salvador +Sergio +Terrence +Tom +Tucker +Tyrone +Angel +Bart +Bo +Brice +Bryant +Carson +Chadwick +Chester +Clark +Clyde +Dane +Dirk +Duane +Dwayne +Edwin +Elias +Erin +Felipe +Felix +Glenn +Herbert +Isaiah +Ivan +Jayson +Joaquin +Jody +Johnathon +Kerry +Kou +Lamont +Lonnie +Marco +Miles +Oliver +Pablo +Pete +Roman +Rudolph +Saul +Sterling +Steve +Terrance +Thaddeus +Trenton +Tristan +Alfred +August +Bradford +Bradly +Brendon +Brooks +Cedric +Clarence +Clay +Clifton +Colton +Conor +Curt +Cyrus +Damian +Diego +Forest +Fredrick +Gordon +Gregorio +Harley +Ignacio +Jarrad +Jedidiah +Jennifer +Jerimiah +Kasey +Marvin +Mason +Maxwell +Mikel +Monte +Nathen +Nolan +Norman +Randal +Rene +Rogelio +Roland +Sammy +Santiago +Sebastian +Sheldon +Solomon +Stacy +Vernon +Zane +Michael +Christopher +Matthew +Joshua +Jason +David +Ryan +James +Daniel +Robert +John +Justin +Brian +Joseph +Andrew +Adam +Nicholas +Aaron +Brandon +William +Eric +Benjamin +Jonathan +Jeremy +Anthony +Jesse +Jeffrey +Richard +Thomas +Kevin +Jacob +Nathan +Steven +Timothy +Scott +Dustin +Paul +Sean +Mark +Patrick +Charles +Zachary +Travis +Chad +Jared +Derek +Stephen +Luke +Kyle +Gregory +Jeremiah +Kenneth +Shawn +Tyler +Jose +Shane +Lucas +Bradley +Samuel +Casey +Bryan +Gabriel +Seth +Alexander +Ian +Peter +Donald +Raymond +Levi +Cody +Cory +Ronald +Brett +Nathaniel +Joel +Phillip +Carlos +Keith +Edward +Erik +Isaac +Todd +Corey +Douglas +Craig +Troy +Russell +Mathew +Juan +Vincent +Adrian +Curtis +Mario +Dylan +Frank +Gary +Jeffery +Philip +Noah +Randy +Shaun +Brent +Caleb +Trevor +Dennis +Dominic +George +Jordan +Kristopher +Marcus +Christian +Jon +Wesley +Derrick +Garrett +Jesus +Manuel +Miguel +Victor +Clinton +Jack +Austin +Lee +Tony +Cameron +Antonio +Colin +Roberto +Jerry +Marc +Micah +Jamie +Larry +Luis +Clayton +Terry +Alan +Drew +Henry +Jessie +Joey +Preston +Evan +Francisco +Lance +Martin +Angelo +Arthur +Grant +Lawrence +Mitchell +Roy +Zachariah +Carl +Jake +Jonathon +Micheal +Billy +Clifford +Jarrod +Kelly +Randall +Rodney +Blake +Dale +Joe +Nicolas +Alex +Beau +Bobby +Louis +Neil +Ricardo +Taylor +Theodore +Alejandro +Allen +Brad +Byron +Jay +Johnathan +Rocky +Toby +Andre +Ricky +Tyson +Brady +Darren +Gerald +Johnny +Leonard +Logan +Ross +Ruben +Wayne +Albert +Brendan +Calvin +Clint +Danny +Devon +Dean +Edwin +Gilbert +Jimmy +Chris +Geoffrey +Heath +Jonah +Karl +Kurt +Roger +Barry +Ernest +Eugene +Glenn +Jaime +Julian +Kirk +Maurice +Ramon +Stanley +Steve +Wade +Armando +Charlie +Devin +Dusty +Jerod +Jerome +Nickolas +Omar +Abraham +Andres +Andy +Ben +Bruce +Bryce +Damien +Damon +Frederick +Graham +Ray +Walter +Zane +Dallas +Darrell +Dwayne +Javier +Jayson +Jess +Josiah +Kent +Leroy +Marco +Morgan +Neal +Orlando +Oscar +Robin +Rory +Rudy +Spencer +Stephan +Trent +Weston +Alberto +Branden +Bryson +Derick +Ernesto +Forrest +Frankie +Glen +Hunter +Landon +Lorenzo +Marshall +Norman +Tomas +Trenton +Tyrone +Vernon +Willie +Zachery +Angel +Aron +Bo +Cole +Darin +Duane +Fernando +Hector +Jarod +Jerad +Jeramie +Johnathon +Leon +Leslie +Lonnie +Mason +Nolan +Rafael +Rick +Ronnie +Rusty +Sam +Simon +Ty +Zebulon +Bret +Collin +Conor +Damian +Dillon +Eli +Elias +Elijah +Ethan +Fabian +Harry +Jorge +Kory +Kurtis +Leo +Lyle +Marcos +Nick +Parker +Pedro +Perry +Pete +Reginald +Terrance +Tommy +Tracy +Uriah +Brock +Brooks +Clark +Clay +Dan +Dana +Daren +Daryl +Donovan +Dwight +Eddie +Erick +Erin +Fred +Gerardo +Greg +Hans +Harold +Ira +Issac +Jarrett +Jeff +Joaquin +Julius +Kaleb +Loren +Louie +Marvin +Max +Moses +Nathanael +Noel +Oliver +Rodolfo +Sammy +Solomon +Tyrel +Warren +Alfonso +Alfredo +Arturo +Bradford +Carlo +Chadwick +Clifton +Connor +Dane +Demetrius +Don +Felix +Francis +Franklin +Fredrick +Gene +Gordon +Gregg +Guadalupe +Isaiah +Ivan +Jackson +Jasper +Jeffry +Jeremie +Jermaine +Jerrod +Jonas +Keegan +Laurence +Lincoln +Lloyd +Matt +Monte +Quentin +Quincy +Randal +Roland +Skyler +Sterling +Terrence +Tyrell +Zackary +Alvin +Ariel +Baby +Bart +Bernard +Blaine +Braden +Cesar +Clarence +Clyde +Cristopher +Danial +Dante +Derik +Domingo +Dominick +Drake +Earl +Edgar +Enrique +Felipe +Floyd +Gavin +Genaro +Gerard +Guy +Jarred +Jed +Jedidiah +Jefferson +Jennifer +Jeramiah +Jeramy +Jered +Jerimiah +Jessy +Josh +Joshuah +Julio +Kiel +Lewis +Mauricio +Melvin +Mike +Myles +Owen +Pablo +Raul +Reggie +Reid +Rene +Reyes +Rhett +Rickey +Riley +Ron +Rudolph +Russel +Salvador +Saul +Sebastian +Shannon +Stuart +Tanner +Tobias +Tristan +Xavier +Michael +Christopher +Matthew +Joshua +David +Jason +Daniel +James +Justin +Ryan +Robert +John +Joseph +Nicholas +Andrew +Brian +Aaron +Brandon +Adam +Jonathan +William +Jeremy +Anthony +Eric +Benjamin +Steven +Travis +Jeffrey +Nathan +Richard +Jesse +Scott +Jacob +Sean +Mark +Thomas +Kevin +Dustin +Timothy +Zachary +Paul +Patrick +Tyler +Charles +Jared +Kyle +Chad +Derek +Kenneth +Stephen +Gregory +Bryan +Cody +Shawn +Bradley +Jeremiah +Samuel +Casey +Ian +Seth +Nathaniel +Jose +Gabriel +Luke +Peter +Phillip +Joel +Jordan +Edward +Keith +Raymond +Shane +Evan +Corey +Brett +Craig +Lucas +Ronald +Alexander +Douglas +Donald +Juan +Gary +Cory +Carlos +Erik +Russell +Levi +Marcus +George +Mario +Randy +Frank +Shaun +Trevor +Dominic +Noah +Philip +Todd +Alan +Jonathon +Manuel +Austin +Brent +Isaac +Marc +Dennis +Jeffery +Adrian +Caleb +Jon +Kristopher +Wesley +Lee +Martin +Jay +Mathew +Clinton +Curtis +Garrett +Antonio +Clayton +Vincent +Grant +Jack +Luis +Tony +Derrick +Dylan +Larry +Colin +Taylor +Tyson +Bobby +Bret +Cameron +Jesus +Miguel +Troy +Lance +Lawrence +Brendan +Christian +Drew +Geoffrey +Micheal +Mitchell +Randall +Ricky +Alex +Darren +Francisco +Louis +Terry +Blake +Arthur +Carl +Kelly +Ross +Victor +Zachariah +Allen +Neil +Henry +Jamie +Jerry +Johnathan +Angelo +Andre +Brady +Cole +Danny +Devin +Logan +Preston +Roger +Wayne +Billy +Brad +Bruce +Ernest +Gerald +Jake +Jerome +Johnny +Kurt +Leonard +Theodore +Dale +Jarrod +Jessie +Landon +Rory +Spencer +Wade +Chase +Heath +Jimmy +Jorge +Micah +Steve +Walter +Clifford +Clint +Ricardo +Abraham +Dean +Fernando +Joe +Marshall +Rodney +Trenton +Beau +Branden +Duane +Elijah +Gilbert +Isaiah +Kirk +Ruben +Toby +Armando +Damien +Ethan +Eugene +Forrest +Ivan +Jarod +Morgan +Zachery +Albert +Bradford +Julian +Kellen +Loren +Marco +Maurice +Nicolas +Rick +Roy +Alejandro +Barry +Bryce +Darrell +Dusty +Erick +Graham +Jerod +Joaquin +Karl +Max +Nickolas +Raul +Ray +Tristan +Angel +Ashley +Cesar +Colt +Eli +Frederick +Glenn +Guy +Jarred +Joey +Lorenzo +Marcos +Ralph +Sergio +Tanner +Ty +Weston +Abel +Chris +Clarence +Devon +Harry +Hunter +Josiah +Leon +Nathanael +Orlando +Oscar +Ramon +Robin +Stuart +Alberto +Andres +Benny +Byron +Clay +Collin +Conor +Cooper +Dane +Darin +Dwayne +Elias +Francis +Franklin +Jaime +Javier +Jayson +Jeff +Johnathon +Kent +Mason +Nick +Oliver +Pedro +Roberto +Rudolph +Shannon +Solomon +Stanley +Stefan +Terrell +Tommy +Alfonso +Alfred +Alfredo +Benito +Bryon +Cedric +Colby +Dante +Don +Eddie +Edwin +Fred +Gene +Harley +Harold +Jackson +Jermaine +Kristofer +Leroy +Lewis +Lonnie +Lyle +Marvin +Miles +Moses +Neal +Riley +Ronnie +Rudy +Sam +Trent +Warren +Zebulon +Abram +Alexis +Ben +Calvin +Clark +Courtney +Dallas +Damian +Damon +Daryl +Derick +Dillon +Dominick +Felipe +Felix +Greg +Jerad +Kasey +Keenan +Kody +Lloyd +Marcelino +Matt +Nikolas +Owen +Pete +Rafael +Randolph +Reginald +Reid +Tomas +Vernon +Wyatt +Zane +Andy +Anton +Aron +Arron +Augustine +Bart +Bernard +Bill +Brendon +Brock +Cecil +Clifton +Conrad +Cyrus +Davin +Diego +Dominique +Earl +Edgar +Erin +Ernesto +Floyd +Glen +Gordon +Grady +Guadalupe +Guillermo +Herbert +Jamaal +Jarrett +Jeremie +Joesph +Keegan +Louie +Marques +Noel +Nolan +Omar +Pablo +Quinn +Randal +Reed +Rex +Rocky +Rusty +Santiago +Terrance +Terrence +Tyrel +Tyrone +Uriah +Ali +Allan +Alonzo +Alvin +Arnold +Braden +Brandin +Brice +Bryant +Bryson +Charlie +Dana +Darryl +Dax +Destry +Dwain +Elliot +Enrique +Esteban +Ezekiel +Fabian +Fredrick +Garret +Hector +Howard +Jamal +Jeramie +Jered +Johnnie +Johnpaul +Jonah +Jonas +Josh +Kaleb +Kendall +Kurtis +Laurence +Leonardo +Melvin +Nathanial +Perry +Reuben +Reynaldo +Ron +Royce +Scot +Sebastian +Shad +Stephan +Tad +Ted +Michael +Christopher +Matthew +Joshua +Daniel +Ryan +David +Justin +Jason +John +Robert +Joseph +James +Andrew +Brian +Brandon +Nicholas +Adam +William +Aaron +Eric +Anthony +Jonathan +Jacob +Benjamin +Travis +Jeffrey +Kyle +Richard +Timothy +Nathan +Steven +Kevin +Thomas +Zachary +Jeremy +Patrick +Mark +Sean +Tyler +Scott +Jesse +Charles +Paul +Dustin +Stephen +Chad +Gregory +Derek +Bryan +Kenneth +Jared +Samuel +Cody +Ian +Shawn +Luke +Jeremiah +Bradley +Casey +Shane +Alexander +Phillip +Jose +Erik +Gabriel +Joel +Seth +Corey +Evan +Peter +Brett +Cory +Douglas +Jordan +Keith +Nathaniel +Marcus +Edward +Grant +Raymond +Juan +Craig +Levi +Donald +Alan +Carlos +Kristopher +Russell +Todd +Dominic +Frank +Lucas +Mathew +Troy +Adrian +Clayton +Philip +Caleb +Garrett +Vincent +George +Isaac +Ronald +Trevor +Curtis +Derrick +Austin +Devin +Brent +Clinton +Gary +Mitchell +Randy +Wesley +Blake +Carl +Colin +Shaun +Taylor +Louis +Geoffrey +Jerry +Jon +Mario +Cameron +Chase +Martin +Noah +Ross +Cole +Jeffery +Victor +Lee +Jay +Luis +Ricky +Terry +Arthur +Lance +Micah +Christian +Dane +Dennis +Larry +Alex +Brendan +Dylan +Manuel +Preston +Danny +Henry +Joe +Kelly +Lawrence +Marc +Darren +Randall +Antonio +Calvin +Johnathan +Johnny +Miguel +Spencer +Tony +Tyson +Albert +Jake +Micheal +Beau +Brad +Brady +Bryce +Francisco +Jack +Drew +Jesus +Zachariah +Allen +Andre +Clifford +Jimmy +Jonathon +Nickolas +Ricardo +Rodney +Roger +Ruben +Bobby +Dean +Eugene +Gerald +Jerome +Karl +Logan +Tristan +Eli +Ernest +Jamie +Collin +Dale +Devon +Ethan +Rory +Theodore +Abraham +Javier +Landon +Lewis +Morgan +Neil +Bruce +Dillon +Elijah +Jessie +Kirk +Leonard +Maurice +Pedro +Ramon +Roy +Tanner +Weston +Angelo +Billy +Darrell +Frederick +Glenn +Jaime +Julian +Kellen +Lorenzo +Marshall +Oscar +Wade +Walter +Wayne +Bryson +Byron +Earl +Jarrod +Loren +Tyrel +Conor +Fernando +Gene +Gilbert +Graham +Josiah +Kurt +Nicolas +Rick +Riley +Steve +Terrance +Trenton +Andres +Armando +Branden +Brock +Clint +Darrin +Derick +Elias +Francis +Leroy +Marco +Nathanael +Oliver +Ronnie +Simon +Stephan +Stuart +Alejandro +Arturo +Ben +Chris +Colt +Damian +Damon +Darin +Eddie +Gavin +Heath +Jerrod +Jorge +Leif +Neal +Ralph +Ray +Roberto +Rudy +Stanley +Warren +Zachery +Alberto +Cassidy +Charlie +Dallas +Dwayne +Felix +Harold +Jayson +Jess +Leo +Norman +Raul +Rene +Tucker +Ty +Brandin +Dana +Dirk +Don +Elliot +Erick +Griffin +Harry +Hector +Hunter +Isaiah +Jarod +Jarred +Jermaine +Jerod +Jonah +Josef +Kenny +Kurtis +Lloyd +Matt +Moses +Nathanial +Omar +Robin +Salvador +Stefan +Tomas +Tommy +Trent +Willie +Abel +Angel +Blaine +Bradly +Brain +Brenton +Bryon +Cale +Clay +Eduardo +Edwin +Enrique +Erin +Esteban +Greg +Jackson +Joey +Kent +Leland +Leon +Lonnie +Marcos +Marvin +Max +Maxwell +Parker +Sergio +Shannon +Skyler +Toby +Zackary +Allan +Alonzo +Anton +Ashley +Barry +Braden +Brant +Bret +Brice +Clark +Colton +Darryl +Dominick +Elliott +Emmanuel +Erich +Everett +Felipe +Forrest +Frankie +Fredrick +Guadalupe +Harley +Ira +Ivan +Jamison +Jean +Jerad +Jody +Kristofer +Leslie +Mikel +Mohammed +Orlando +Pablo +Perry +Quinn +Reid +Rex +Roman +Rusty +Sam +Sterling +Thaddeus +Vernon +Zane +Zechariah +Alexis +Alvin +Ari +Benny +Cesar +Chance +Chaz +Colby +Connor +Conrad +Cyrus +Danielle +Darius +Darnell +Darrel +Daryl +Delbert +Demetrius +Deric +Derik +Duane +Galen +Garret +Glen +Issac +Jameson +Jedediah +Jeffry +Jeramiah +Jimmie +Johnathon +Julius +Kaleb +Kiel +Kory +Lionel +Miles +Nikolas +Nolan +Randal +Rocky +Rodrigo +Rogelio +Santiago +Saul +Shelby +Sheldon +Terrence +Thanh +Tyrone +Michael +Christopher +Matthew +Joshua +David +Ryan +Daniel +Andrew +Justin +Nicholas +Jason +Robert +James +Adam +Joseph +John +Brian +Brandon +Eric +William +Benjamin +Aaron +Jonathan +Tyler +Kyle +Steven +Anthony +Jeffrey +Timothy +Thomas +Zachary +Kevin +Nathan +Jacob +Travis +Jeremy +Scott +Richard +Mark +Sean +Patrick +Dustin +Paul +Jesse +Stephen +Cody +Derek +Gregory +Chad +Charles +Kenneth +Alexander +Bryan +Jared +Samuel +Jeremiah +Bradley +Luke +Peter +Ian +Casey +Nathaniel +Marcus +Jose +Brett +Jordan +Evan +Phillip +Shawn +Erik +Shane +Cory +Keith +Edward +Raymond +Chase +Lucas +Seth +Joel +Vincent +Gabriel +Austin +Craig +Donald +Carlos +Corey +Ronald +Trevor +Colin +Douglas +Juan +Taylor +Mathew +Randy +Troy +Garrett +Philip +Todd +Levi +Clinton +George +Isaac +Ross +Alan +Tyson +Wesley +Brent +Caleb +Dominic +Russell +Alex +Gary +Shaun +Geoffrey +Blake +Kristopher +Lee +Clayton +Jeffery +Lance +Adrian +Arthur +Cameron +Dylan +Frank +Grant +Devin +Drew +Marc +Noah +Mario +Martin +Curtis +Derrick +Zachariah +Dennis +Mitchell +Preston +Tony +Victor +Antonio +Logan +Cole +Darren +Jesus +Randall +Larry +Angelo +Carl +Jon +Lawrence +Johnathan +Micheal +Andre +Bruce +Danny +Jay +Albert +Allen +Ernest +Luis +Ricky +Spencer +Chance +Jamie +Jonathon +Louis +Bryce +Ethan +Francisco +Micah +Theodore +Tristan +Wayne +Beau +Christian +Devon +Frederick +Jessie +Manuel +Ricardo +Roger +Terry +Abraham +Brendan +Brenton +Dale +Eugene +Kurt +Ramon +Bobby +Brady +Branden +Clifford +Jack +Jake +Jerry +Jimmy +Joe +Kelly +Marshall +Neil +Nicolas +Roberto +Ruben +Tanner +Zachery +Armando +Henry +Jerome +Johnny +Leonard +Morgan +Rodney +Stuart +Clint +Collin +Dillon +Jarrod +Landon +Miguel +Tommy +Trent +Wade +Walter +Alejandro +Dean +Franklin +Gilbert +Julian +Karl +Lorenzo +Marcos +Nickolas +Billy +Brock +Gerald +Glenn +Max +Andres +Brad +Byron +Dane +Edwin +Heath +Isaiah +Javier +Kurtis +Trenton +Darrell +Glen +Graham +Kirk +Nick +Steve +Ty +Alfred +Barry +Bret +Conor +Damian +Damien +Eli +Elliot +Fernando +Jermaine +Jorge +Julio +Neal +Nolan +Pablo +Parker +Pete +Raul +Reid +Sheldon +Simon +Allan +Bo +Calvin +Dusty +Erick +Felix +Jaime +Johnathon +Kellen +Lane +Oscar +Ray +Roman +Roy +Sergio +Stefan +Aron +Bryson +Donovan +Duane +Fredrick +Howard +Kiel +Lonnie +Loren +Mason +Maurice +Nathanael +Pedro +Ronnie +Tyrel +Warren +Weston +Zane +Angel +Blair +Braden +Bradford +Colby +Conrad +Darrin +Darryl +Elijah +Emmanuel +Enrique +Greg +Harold +Jarred +Jerod +Joaquin +Josiah +Keenan +Leon +Marco +Maxwell +Omar +Orlando +Reginald +Rogelio +Rory +Stanley +Terrence +Tucker +Tye +Zackary +Abel +Arturo +Barrett +Chandler +Clay +Cooper +Dominick +Don +Dwayne +Fabian +Gordon +Hans +Hugo +Hunter +Jarrett +Jerad +Jess +Joey +Kent +Lewis +Lloyd +Miles +Reuben +Rick +Riley +Rudy +Shea +Skyler +Terrance +Toby +Alvin +Ari +Ben +Benny +Cassidy +Curt +Dain +Damon +Darrel +Davis +Derick +Duncan +Earl +Emilio +Erich +Ezekiel +Gavin +Gerardo +Guillermo +Hector +Ivan +Jayson +Jeff +Jody +Kelsey +Kenny +Kody +Leland +Leroy +Melvin +Nicholaus +Perry +Ralph +Randal +Robin +Rocky +Tomas +Tyrell +Tyrone +Vaughn +Zechariah +Akeem +Alberto +Andy +Brendon +Brooks +Bryant +Cary +Clarence +Clyde +Colt +Connor +Dallas +Danial +Dion +Dru +Elias +Eloy +Fletcher +Floyd +Forrest +Fred +Jedidiah +Jerrod +Kasey +Keaton +Keegan +Kelby +Kendall +Kenton +Kristofer +Lars +Liam +Owen +Quentin +Quincy +Quinn +Remington +Rolando +Rudolph +Santino +Shannon +Sonny +Stephan +Tad +Terence +Tory +Vernon +Wilson +Michael +Christopher +Matthew +Joshua +Daniel +Ryan +David +James +Andrew +Brandon +Joseph +John +Nicholas +Robert +Justin +Brian +Kyle +Adam +Eric +Anthony +Jason +Tyler +William +Jonathan +Benjamin +Aaron +Zachary +Timothy +Steven +Jacob +Jeffrey +Nathan +Thomas +Kevin +Sean +Jeremy +Travis +Richard +Mark +Dustin +Scott +Cody +Jesse +Patrick +Paul +Stephen +Alexander +Charles +Bryan +Derek +Gregory +Samuel +Chad +Bradley +Jared +Shawn +Kenneth +Casey +Luke +Jeremiah +Nathaniel +Shane +Ian +Jordan +Marcus +Brett +Joel +Trevor +Jose +Corey +Peter +Taylor +Garrett +Phillip +Seth +Levi +Cory +Grant +Austin +Donald +Lucas +Raymond +Adrian +Alex +Keith +Todd +Edward +Douglas +Dylan +Erik +Brent +Drew +Vincent +Colin +Gabriel +Blake +Curtis +Evan +Alan +Wesley +Caleb +Gary +Frank +Devin +Philip +Carl +Craig +Russell +Carlos +Jon +Mitchell +Chase +Clinton +Isaac +Lance +Randy +Bryce +Derrick +George +Mathew +Jeffery +Juan +Lee +Ronald +Jesus +Cameron +Dominic +Jerry +Kristopher +Luis +Shaun +Spencer +Christian +Cole +Johnathan +Marc +Antonio +Dennis +Julian +Ross +Manuel +Troy +Clayton +Darren +Dane +Mario +Theodore +Tyson +Angelo +Arthur +Eli +Martin +Victor +Jay +Larry +Zachery +Henry +Lawrence +Nicolas +Noah +Preston +Randall +Andre +Jack +Jonathon +Josiah +Kurt +Logan +Zachariah +Allen +Beau +Brendan +Ernest +Max +Ricky +Joe +Kellen +Micheal +Tony +Wayne +Albert +Danny +Jarrod +Miguel +Neil +Geoffrey +Kelly +Chance +Darrell +Dean +Dominick +Isaiah +Jimmy +Louis +Micah +Trenton +Brady +Collin +Devon +Tanner +Terry +Alejandro +Angel +Dillon +Francisco +Jake +Jamie +Landon +Morgan +Oscar +Bobby +Gerald +Jessie +Johnny +Neal +Pedro +Ricardo +Tristan +Brad +Branden +Brenton +Brock +Calvin +Dale +Eugene +Jaime +Javier +Joey +Kirk +Leonard +Loren +Miles +Nickolas +Roger +Ruben +Zane +Jerome +Jorge +Leroy +Nolan +Orlando +Roberto +Rodney +Sergio +Simon +Stefan +Ben +Bruce +Cassidy +Clifford +Frederick +Hunter +Ivan +Keegan +Ramon +Ray +Roman +Steve +Tommy +Ty +Allan +Armando +Chadwick +Fernando +Jermaine +Stephan +Stuart +Trent +Wade +Alberto +Andres +Billy +Bret +Clint +Colby +Damien +Donovan +Erin +Ethan +Graham +Heath +Jamison +Kent +Kory +Lorenzo +Marshall +Owen +Raul +Rory +Weston +Alfonso +Braden +Bryon +Conor +Dana +Dante +Edwin +Elijah +Elliott +Forrest +Franklin +Glen +Gordon +Harold +Karl +Leon +Lewis +Marcos +Maurice +Nathanael +Nick +Norman +Oliver +Omar +Parker +Randolph +Reid +Roy +Rudy +Toby +Bradford +Conrad +Dallas +Darin +Daryl +Eddie +Fred +Garret +Gavin +Gerardo +Gilbert +Glenn +Jackson +Jedidiah +Jeff +Julio +Lane +Rick +Rocky +Ronnie +Skyler +Terrance +Terrell +Tobias +Abraham +Alfred +Andy +August +Benito +Brenden +Bryson +Byron +Cesar +Colt +Damian +Damon +Darryl +Dion +Dwayne +Edgar +Ernesto +Galen +Greg +Guy +Harley +Harry +Israel +Jarred +Jerad +Jess +Jody +Kaleb +Kendall +Kurtis +Leo +Lukas +Lyle +Marco +Robin +Rusty +Salvador +Shea +Stanley +Tomas +Alec +Alexis +Alfredo +Amanda +Arron +Bernard +Blaine +Brennan +Brody +Cale +Carson +Clay +Courtney +Derik +Don +Dusty +Eduardo +Emilio +Erick +Hector +Howard +Jayson +Jerod +Keenan +Kenny +Lloyd +Mason +Moises +Pablo +Rafael +Randal +Reed +Riley +Solomon +Tyrell +Tyrone +Vernon +Walter +Warren +Willie +Agustin +Barry +Brandan +Brendon +Brice +Cade +Cary +Charlie +Chris +Coleman +Darrin +Demetrius +Diego +Earl +Elias +Elliot +Enrique +Fabian +Felix +Floyd +Gustavo +Harrison +Humberto +Issac +Jamal +Jamey +Jasper +Jerimiah +Joaquin +Josef +Josh +Joshuah +Kasey +Kody +Lincoln +Mackenzie +Marvin +Mitch +Nathanial +Pete +Quinn +Quinton +Rex +Ryne +Scotty +Shannon +Skylar +Sterling +Tracy +Tyrel +Will +Wyatt +Michael +Christopher +Matthew +Joshua +David +Daniel +Ryan +Andrew +James +Nicholas +Robert +Joseph +Brandon +John +Justin +Jason +Kyle +Tyler +Brian +Anthony +Adam +Aaron +William +Zachary +Benjamin +Eric +Kevin +Jacob +Jonathan +Jeremy +Jeffrey +Steven +Thomas +Nathan +Sean +Scott +Timothy +Patrick +Mark +Travis +Alexander +Jesse +Richard +Stephen +Paul +Dustin +Cody +Charles +Derek +Bryan +Kenneth +Jordan +Gregory +Jared +Samuel +Shawn +Chad +Ian +Bradley +Evan +Luke +Nathaniel +Shane +Jose +Brett +Phillip +Peter +Trevor +Austin +Jeremiah +Lucas +Marcus +Seth +Keith +Joel +Alex +Cory +Raymond +Corey +Casey +Erik +Levi +Gary +Philip +Edward +Garrett +Vincent +Gabriel +Mitchell +Russell +Curtis +Dylan +Taylor +Craig +Douglas +Derrick +Caleb +Cameron +Carlos +Colin +Donald +Ronald +Adrian +Brent +Chase +Drew +Jonathon +Mathew +Victor +Christian +Troy +Wesley +Dominic +Spencer +Alan +Cole +George +Kristopher +Juan +Blake +Grant +Lance +Max +Antonio +Frank +Louis +Randy +Luis +Manuel +Devin +Mario +Martin +Bryce +Isaac +Tyson +Brady +Jesus +Lee +Ross +Todd +Geoffrey +Jeffery +Brendan +Shaun +Jay +Johnathan +Marc +Micah +Allen +Angelo +Tony +Clayton +Dane +Darren +Dennis +Dillon +Julian +Micheal +Jon +Logan +Miguel +Andre +Jack +Joe +Preston +Carl +Francisco +Johnny +Beau +Jake +Mason +Trent +Devon +Nicolas +Noah +Kelly +Larry +Roger +Zachariah +Andres +Brock +Jessie +Nickolas +Theodore +Zachery +Albert +Arthur +Brad +Bruce +Calvin +Danny +Gilbert +Graham +Jerry +Neil +Tanner +Bobby +Clinton +Colby +Dominick +Eli +Forrest +Gerald +Lawrence +Ramon +Randall +Ricky +Wade +Angel +Collin +Frederick +Isaiah +Javier +Karl +Kirk +Miles +Rodney +Dale +Eugene +Fernando +Henry +Jorge +Marcos +Alejandro +Chance +Clint +Johnathon +Kellen +Leon +Ricardo +Ruben +Terry +Armando +Arturo +Jarrod +Jerome +Morgan +Raul +Riley +Stefan +Trenton +Wayne +Weston +Brenden +Clifford +Darin +Elijah +Ernest +Fabian +Glenn +Harrison +Joey +Leonard +Marshall +Maurice +Sergio +Tristan +Walter +Zane +Billy +Bryson +Clay +Duane +Franklin +Harold +Hector +Jaime +Jamie +Ray +Roy +Salvador +Stephan +Branden +Byron +Colton +Daryl +Edgar +Erick +Ethan +Jimmy +Kody +Kurtis +Landon +Marco +Omar +Orlando +Oscar +Parker +Roberto +Roman +Rory +Ty +Allan +Brendon +Brenton +Connor +Darrell +Darryl +Dean +Fred +Hunter +Ivan +Jarrett +Josiah +Julio +Kaleb +Kurt +Loren +Lorenzo +Nathanael +Perry +Ronnie +Stuart +Terrence +Tomas +Tyrell +Abraham +Addison +Bret +Clark +Dallas +Dana +Dominique +Dusty +Elias +Felix +Jordon +Keegan +Lewis +Lloyd +Lonnie +Noel +Shea +Toby +Will +Willie +Antoine +Aron +Braden +Brennan +Bryant +Bryon +Conor +Damien +Davis +Emmanuel +Francis +Gordon +Jermaine +Kerry +Leroy +Marvin +Matt +Mitchel +Nikolas +Pedro +Pete +Ralph +Randolph +Reed +Robin +Shannon +Steve +Tyrel +Zackary +Abel +Alfred +Alvin +Barry +Benito +Blaine +Damian +Dexter +Diego +Don +Elliott +Ernesto +Felipe +Gavin +Gene +Glen +Guy +Hans +Heath +Houston +Howard +Ismael +Israel +Jarred +Jaymes +Jayson +Jeramie +Jerod +Kacey +Kory +Leif +Maxwell +Myles +Nick +Nolan +Norman +Oliver +Owen +Reid +Rocky +Royce +Sebastian +Simon +Skylar +Skyler +Stanley +Tad +Ted +Terrance +Trey +Whitney +Xavier +Zackery +Alec +Alfonso +Alonso +Ariel +Augustine +Avery +Barrett +Barton +Ben +Bennett +Blair +Bradford +Brice +Brody +Camden +Cassidy +Conrad +Dakota +Dan +Darrin +Dereck +Derik +Dorian +Dwayne +Eddie +Erich +Erin +Fredrick +Garret +Greg +Harry +Jayce +Jeff +Joaquin +Jonas +Kasey +Kent +Kenton +Kiel +Kristofer +Lane +Leo +Leslie +Lionel +Moses +Neal +Quentin +Quincy +Rashad +Raymundo +Rene +Reuben +Rian +Rick +Roderick +Sam +Saul +Shayne +Sheldon +Tate +Terence +Tobias +Tommy +Torin +Torrence +Tracy +Tyrone +Michael +Christopher +Matthew +Joshua +Andrew +Daniel +David +Justin +Ryan +Nicholas +Joseph +Robert +James +Kyle +John +Anthony +Brandon +Tyler +Zachary +Benjamin +William +Eric +Brian +Jason +Jonathan +Steven +Jacob +Kevin +Adam +Sean +Timothy +Jeremy +Aaron +Nathan +Alexander +Thomas +Jeffrey +Cody +Travis +Patrick +Mark +Scott +Dustin +Jesse +Paul +Richard +Derek +Jordan +Samuel +Jared +Stephen +Bryan +Charles +Alex +Gregory +Shane +Chad +Bradley +Evan +Shawn +Casey +Kenneth +Seth +Ian +Austin +Cory +Marcus +Edward +Peter +Jeremiah +Luke +Brett +Corey +Cameron +Trevor +Nathaniel +Phillip +Jose +Gabriel +Raymond +Joel +Keith +Devin +Dylan +Vincent +Levi +Caleb +Garrett +Lucas +Wesley +Mitchell +Douglas +Colin +Donald +Erik +Randy +Isaac +Philip +Taylor +Victor +Brent +Ronald +Derrick +Dominic +Juan +Alan +Carlos +Mathew +Grant +Curtis +Gary +Logan +Spencer +Craig +Frank +Todd +Clayton +Jeffery +Shaun +Bryce +Jonathon +Russell +Clinton +Dennis +Drew +Kristopher +Lance +Lee +Adrian +Blake +Cole +Jesus +Manuel +Antonio +Jay +Johnathan +Lawrence +Marc +Jack +Tanner +Brady +Ruben +Troy +Isaiah +Christian +Preston +Chase +Julian +Miguel +Brendan +George +Martin +Maxwell +Micah +Theodore +Tyson +Allen +Darren +Devon +Mario +Collin +Gerald +Johnny +Jon +Luis +Geoffrey +Max +Randall +Zachery +Angelo +Carl +Dane +Dillon +Micheal +Tony +Wayne +Arthur +Chance +Colby +Jerry +Neil +Ross +Henry +Kurt +Zachariah +Beau +Bobby +Colton +Jaime +Jake +Kelly +Larry +Marshall +Calvin +Ricky +Roger +Tristan +Jamie +Karl +Kellen +Louis +Dean +Donovan +Jerome +Jimmy +Josiah +Landon +Mason +Miles +Noah +Albert +Blaine +Francisco +Leonard +Nicolas +Omar +Riley +Stefan +Terry +Andre +Branden +Clifford +Danny +Jarrod +Javier +Jessie +Morgan +Nickolas +Ricardo +Ronnie +Trent +Andy +Cesar +Darin +Daryl +Erick +Ethan +Hunter +Kurtis +Lorenzo +Marcos +Rory +Stephan +Wade +Alejandro +Brendon +Brock +Bruce +Bryant +Bryson +Connor +Fabian +Graham +Kaleb +Kirk +Loren +Maurice +Pedro +Ramon +Rodney +Roman +Abraham +Bret +Clint +Damian +Dominick +Edgar +Elliott +Ernest +Eugene +Gordon +Joe +Ray +Roberto +Roy +Tyrel +Vance +Warren +Weston +Alec +Clay +Dakota +Dale +Edwin +Elijah +Gilbert +Hector +Ivan +Jarred +Johnathon +Kent +Kristofer +Rudy +Sergio +Shea +Steve +Tommy +Walter +Andres +Angel +Armando +Brad +Byron +Darrin +Eddie +Estevan +Felipe +Jordon +Kameron +Keegan +Keenan +Kody +Marco +Nolan +Oscar +Sheldon +Skyler +Alfonso +Alvin +Arturo +Ben +Corbin +Dalton +Damien +Davis +Dominique +Galen +Garret +Gavin +Greg +Jamal +Jorge +Josef +Julio +Kale +Kasey +Kory +Leo +Marvin +Neal +Nick +Perry +Raul +Roland +Rusty +Terrance +Terrence +Tomas +Tylor +Ali +Aron +Barry +Billy +Bo +Chris +Colt +Conrad +Dallas +Damon +Darnell +Derik +Dewayne +Dusty +Eduardo +Eli +Fernando +Forrest +Franklin +Fred +Frederick +Hans +Jakob +Jess +Joey +Johnnie +Leroy +Lewis +Myles +Nikolas +Quinn +Ralph +Rick +Simon +Trey +Tyrell +Tyrone +Abel +Addison +Alberto +Alfred +Alonzo +Ashley +Augustine +Braden +Brandan +Brennan +Brice +Chadwick +Chaz +Dante +Derick +Elias +Emmanuel +Erin +Floyd +Francis +Gerardo +Glenn +Heath +Jameson +Jedidiah +Joaquin +Kalen +Lane +Leon +Orlando +Owen +Parker +Randal +Reid +Robbie +Russel +Santiago +Saul +Shannon +Stuart +Toby +Trenton +Tucker +Wyatt +Zane +Allan +Amos +Antoine +Avery +Bill +Brenden +Brenton +Bryon +Carson +Clarence +Coleman +Colter +Coy +Darrell +Darryl +Earl +Enrique +Frankie +Harold +Harrison +Harry +Israel +Jackson +Jamison +Jarod +Jarrett +Jayson +Jed +Jeff +Jeffry +Jered +Jeremie +Jovan +Kc +Keaton +Kelvin +Kenny +Leland +Lincoln +Lonnie +Lyle +Mitchel +Nathanael +Nelson +Pierce +Quentin +Reece +Reuben +Rian +Robin +Rodolfo +Ron +Rudolph +Salvador +Sebastian +Stetson +Ted +Ty +Uriah +Vernon +Michael +Christopher +Matthew +Joshua +Andrew +Ryan +David +Justin +Daniel +Nicholas +Kyle +John +Joseph +James +Robert +Zachary +Brandon +Tyler +Anthony +Thomas +Benjamin +Brian +Jacob +Eric +Adam +William +Jonathan +Kevin +Steven +Alexander +Aaron +Sean +Jason +Cody +Nathan +Mark +Timothy +Richard +Travis +Jeffrey +Jeremy +Scott +Patrick +Samuel +Stephen +Jesse +Dustin +Paul +Derek +Charles +Jordan +Cory +Cameron +Gregory +Shane +Ian +Chad +Jared +Kenneth +Alex +Bryan +Austin +Trevor +Bradley +Nathaniel +Taylor +Corey +Levi +Jeremiah +Shawn +Brett +Marcus +Casey +Devin +Evan +Jose +Gabriel +Garrett +Dylan +Lucas +Luke +Phillip +Vincent +Keith +Peter +Seth +Erik +Joel +Mitchell +Edward +Victor +Spencer +Philip +Grant +Colin +Wesley +Brent +Caleb +Blake +Troy +Mathew +Donald +Douglas +George +Raymond +Dominic +Jonathon +Juan +Bryce +Craig +Adrian +Manuel +Carlos +Isaac +Mario +Martin +Ronald +Tanner +Drew +Johnathan +Logan +Clayton +Jesus +Randy +Russell +Chase +Gary +Jack +Kristopher +Alan +Allen +Frank +Cole +Curtis +Dennis +Christian +Luis +Max +Dillon +Lee +Randall +Ross +Zachariah +Connor +Todd +Antonio +Brady +Calvin +Lance +Marc +Micheal +Preston +Lawrence +Collin +Colton +Julian +Theodore +Andre +Clinton +Ruben +Johnny +Shaun +Albert +Arthur +Jake +Jeffery +Mason +Terry +Zachery +Beau +Brendan +Carl +Devon +Maxwell +Tyson +Dane +Jay +Kelly +Micah +Nicolas +Trenton +Isaiah +Jerry +Jon +Larry +Noah +Angelo +Darren +Derrick +Gerald +Hunter +Jimmy +Josiah +Marshall +Ricky +Javier +Joe +Johnathon +Nickolas +Skyler +Tony +Wade +Bryant +Dean +Eli +Ethan +Geoffrey +Graham +Jessie +Landon +Louis +Oscar +Ricardo +Alejandro +Henry +Orlando +Roger +Terrance +Bobby +Chance +Gavin +Ivan +Kellen +Leo +Miles +Riley +Rudy +Stephan +Alec +Alfredo +Ben +Branden +Brock +Colby +Conor +Dallas +Damien +Donovan +Jarred +Jordon +Kirk +Kurt +Leonard +Roberto +Roy +Stefan +Trent +Tristan +Weston +Brad +Brice +Dale +Damian +Danny +Jorge +Miguel +Morgan +Simon +Stuart +Terrence +Zackary +Zane +Armando +Bo +Brendon +Emilio +Eugene +Ezekiel +Forrest +Francisco +Gerardo +Harrison +Jarrod +Karl +Marco +Parker +Rafael +Ramon +Ray +Skylar +Alfred +Bret +Bruce +Cesar +Chaz +Clay +Corbin +Courtney +Dakota +Dominique +Eduardo +Jamie +Joey +Kody +Leroy +Omar +Pablo +Rodney +Rory +Salvador +Toby +Walter +Xavier +Andres +Blaine +Dalton +Dusty +Eddie +Edwin +Erick +Glen +Jackson +Jaime +Kurtis +Loren +Lorenzo +Maurice +Pedro +Raul +Reid +Spenser +Wayne +Wyatt +Barrett +Billy +Brody +Bryson +Cooper +Darius +Darrell +Derick +Elliott +Enrique +Gilbert +Harry +Heath +Jerome +Josue +Kaleb +Kent +Kory +Leon +Lukas +Malcolm +Neal +Neil +Reed +Sebastian +Shay +Shea +Ty +Tyrell +Vance +Abraham +Allan +Angel +Austen +Barry +Carter +Cassidy +Chandler +Chris +Clint +Dante +Devan +Dexter +Diego +Dominick +Duane +Edgar +Gene +Glenn +Hector +Jace +Kale +Kasey +Keenan +Korey +Marvin +Reginald +Ronnie +Sergio +Tyrone +Warren +Willie +Alonso +Alonzo +Aron +Arturo +Avery +Bennie +Clifford +Conrad +Daren +Duncan +Elias +Elijah +Emanuel +Emmett +Estevan +Everett +Fabian +Fernando +Franklin +Fred +Frederick +Greggory +Isiah +Ismael +Jedidiah +Joaquin +Johnnie +Kalen +Kendall +Kenny +Maximilian +Myles +Nikolas +Noel +Nolan +Reuben +Robbie +Rodrick +Roman +Sam +Shelby +Tate +Terence +Tomas +Tommy +Tory +Tucker +Addison +Alvaro +Bart +Braden +Bradly +Brandan +Brandyn +Brenden +Brennan +Brenton +Brooks +Byron +Colten +Damon +Darin +Dion +Dustyn +Dwight +Elliot +Ernest +Ernesto +Esteban +Felipe +Francis +Garret +Gordon +Griffin +Hans +Harley +Harold +Jered +Josef +Jovan +Kelby +Lyle +Marcos +Nelson +Owen +Perry +Pete +Ralph +Reece +Remington +Rhett +Rudolph +Stanley +Sterling +Steve +Ted +Trever +Vicente +Vincente +Will +Zackery +Michael +Christopher +Matthew +Joshua +Andrew +Daniel +Ryan +Nicholas +Justin +David +Joseph +Robert +Zachary +James +Kyle +John +Tyler +Anthony +Brandon +Jacob +Alexander +Kevin +Steven +Eric +Aaron +Benjamin +Adam +Brian +William +Jonathan +Timothy +Sean +Thomas +Cody +Nathan +Travis +Jeffrey +Jordan +Stephen +Jesse +Samuel +Patrick +Richard +Dustin +Mark +Scott +Jason +Jeremy +Derek +Paul +Austin +Charles +Jared +Bryan +Taylor +Cameron +Gregory +Ian +Cory +Evan +Corey +Chad +Trevor +Bradley +Shane +Erik +Kenneth +Alex +Dylan +Marcus +Nathaniel +Vincent +Shawn +Devin +Garrett +Casey +Peter +Ethan +Jose +Joel +Luke +Levi +Spencer +Brett +Logan +Phillip +Mitchell +Jeremiah +Juan +Seth +Caleb +Keith +Lucas +Dominic +Julian +Grant +Adrian +Colin +Gabriel +Blake +Christian +Victor +Isaac +Wesley +Antonio +Carlos +Mathew +Douglas +Edward +Mario +Luis +Raymond +George +Jake +Clayton +Jonathon +Ronald +Maxwell +Jesus +Troy +Donald +Manuel +Philip +Connor +Curtis +Colton +Drew +Johnathan +Tanner +Brendan +Craig +Lance +Ross +Bryce +Chase +Derrick +Kristopher +Alan +Brent +Gary +Isaiah +Jeffery +Collin +Dillon +Henry +Lawrence +Max +Andre +Frank +Martin +Micah +Ricardo +Carl +Darren +Francisco +Preston +Randy +Rodney +Zachariah +Cole +Dennis +Jack +Russell +Geoffrey +Skyler +Calvin +Miguel +Tucker +Angelo +Devon +Jay +Nicolas +Albert +Arthur +Elijah +Jerry +Marc +Riley +Theodore +Todd +Tony +Trenton +Clinton +Kirk +Louis +Micheal +Miles +Shaun +Stefan +Dane +Gavin +Larry +Noah +Wade +Weston +Chance +Donovan +Kelly +Landon +Ricky +Roman +Rory +Ruben +Alejandro +Allen +Fabian +Lee +Neil +Stephan +Tristan +Zachery +Alec +Beau +Brady +Javier +Jessie +Joe +Jon +Marco +Randall +Roger +Sergio +Branden +Dominique +Jaime +Johnny +Lorenzo +Bryant +Dale +Dean +Erick +Kellen +Kody +Nickolas +Raul +Stuart +Terry +Xavier +Andres +Angel +Clint +Dakota +Damien +Damon +Eduardo +Eugene +Gerald +Harrison +Hunter +Jamie +Jimmy +Leonard +Leroy +Pedro +Tomas +Trent +Wayne +Zane +Colby +Davis +Forrest +Hector +Roberto +Toby +Walter +Abraham +Billy +Bruce +Chaz +Damian +Danny +Eli +Elias +Elliott +Hayden +Jarrod +Johnathon +Josiah +Lane +Lukas +Mason +Morgan +Omar +Ramon +Sam +Simon +Terrence +Tommy +Tyson +Blaine +Corbin +Dallas +Elliot +Emilio +Fernando +Frankie +Keegan +Kurtis +Loren +Marcos +Oscar +Rafael +Roy +Sebastian +Terrance +Ty +Tylor +Abel +Armando +Ashton +Brock +Bryson +Dante +Don +Edgar +Ernest +Franklin +Glen +Ivan +Kaleb +Kameron +Keenan +Kory +Leo +Marshall +Parker +Rick +Saul +Wyatt +Alfredo +Ben +Bobby +Brenden +Chandler +Dalton +Darrell +Dominick +Eddie +Edwin +Felix +Gage +Glenn +Isiah +Jarred +Jerome +Joey +Jordon +Karl +Kendall +Lincoln +Lloyd +Lyle +Malcolm +Moses +Nathanial +Nikolas +Oliver +Orlando +Reginald +Salvador +Trey +Vance +Zackary +Allan +Andy +Benny +Brendon +Clay +Colten +Conor +Darrin +Devan +Emanuel +Enrique +Heath +Jackson +Jameson +Jonah +Kelsey +Kent +Mikel +Nelson +Nolan +Octavio +Quentin +Quinn +Quinton +Reed +Ryne +Steve +Tyrel +Zackery +Zechariah +Alberto +Anton +Arturo +Austen +Brad +Brennan +Bret +Cesar +Chris +Clifford +Colt +Conner +Cruz +Demetrius +Derick +Dion +Drake +Floyd +Frederick +Garret +Graham +Griffin +Guadalupe +Israel +Jace +Jakob +Jarod +Jeramie +Jorge +Julius +Keaton +Kristofer +Kurt +Kyler +Lewis +Marquis +Melvin +Mitchel +Nathanael +Nigel +Pablo +Pierce +Ramiro +Randal +Rashad +Rene +Reuben +Rogelio +Ronnie +Rudy +Shannon +Stanley +Sterling +Terence +Tyrell +Warren +Ahmad +Ali +Andreas +Aubrey +Barry +Bo +Brody +Byron +Carter +Cedric +Charlie +Curt +Darrel +Diego +Donte +Duane +Dusty +Eddy +Emerson +Emmanuel +Estevan +Felipe +Fred +Gene +Gerardo +German +Gilbert +Gonzalo +Gustavo +Guy +Harley +Harry +Jamal +Jamar +Jeramy +Julio +Kelby +Kelvin +Ken +Korey +Lamar +Lonnie +Louie +Mackenzie +Myles +Nico +Perry +Pete +Reece +Reid +Remington +Rex +Rhett +Robin +Spenser +Tobias +Tory +Vicente +Westley +Willie +Michael +Christopher +Joshua +Matthew +Andrew +Ryan +Nicholas +David +Kyle +Tyler +Zachary +Justin +Daniel +James +Joseph +John +Jacob +Anthony +Robert +Brandon +Cody +Alexander +Jordan +Benjamin +Aaron +Jonathan +Kevin +Eric +Steven +William +Adam +Thomas +Nathan +Sean +Timothy +Samuel +Brian +Patrick +Travis +Richard +Jeremy +Jesse +Jason +Stephen +Taylor +Jeffrey +Cameron +Scott +Austin +Dustin +Derek +Paul +Charles +Ian +Mark +Evan +Jared +Alex +Ethan +Gregory +Shane +Jose +Trevor +Dylan +Peter +Garrett +Casey +Corey +Cory +Kenneth +Bradley +Bryan +Brett +Marcus +Adrian +Phillip +Shawn +Spencer +Nathaniel +Caleb +Mitchell +Devin +Blake +Seth +Vincent +Erik +Logan +Luke +Colton +Gabriel +Christian +Lucas +Juan +Levi +Keith +Raymond +Chad +Isaac +Colin +Dominic +Jeremiah +Chase +Edward +Johnathan +Dillon +Wesley +Carlos +Joel +Bryce +Mario +Jonathon +Max +Dakota +Devon +Martin +Tanner +Mathew +Julian +Victor +Jesus +Preston +Grant +Brent +Isaiah +Jeffery +Manuel +Russell +Troy +Angelo +Dalton +Douglas +Lance +Brendan +Collin +Craig +Luis +Philip +Randy +Ronald +Calvin +Connor +Drew +Maxwell +Frank +Lee +Mason +Morgan +Alan +Antonio +Clayton +Donald +Donovan +George +Jack +Jessie +Nicolas +Derrick +Jake +Gary +Geoffrey +Ricardo +Todd +Allen +Dennis +Francisco +Gerald +Ross +Chance +Alec +Clinton +Cole +Curtis +Jackson +Jay +Kristopher +Micheal +Beau +Gavin +Miguel +Tony +Carl +Darren +Johnny +Micah +Omar +Ricky +Hayden +Nickolas +Zachery +Clifford +Dominique +Henry +Hunter +Kaleb +Lawrence +Louis +Noah +Riley +Zachariah +Colby +Johnathon +Jon +Josiah +Lorenzo +Marc +Parker +Ty +Albert +Alejandro +Andre +Brennan +Brock +Dane +Danny +Ivan +Jerry +Landon +Miles +Randall +Terry +Theodore +Trent +Weston +Branden +Darian +Gilbert +Graham +Jaime +Javier +Kelly +Zackary +Angel +Fabian +Jarrod +Keegan +Kirk +Marshall +Oscar +Rafael +Shaun +Simon +Skyler +Stefan +Trenton +Tyson +Xavier +Arthur +Dale +Damon +Dean +Eduardo +Elias +Elijah +Emilio +Ernest +Everett +Jimmy +Joe +Jordon +Jorge +Keenan +Kody +Leonard +Roman +Stuart +Abraham +Cesar +Eli +Elliot +Eugene +Forrest +Hector +Jamal +Jamie +Roger +Ruben +Zane +Bobby +Conor +Conrad +Edgar +Fernando +Harrison +Isiah +Jakob +Kendall +Larry +Rudy +Saul +Stephan +Tristan +Tucker +Wade +Andres +Brendon +Bruce +Clint +Darius +Estevan +Neil +Ramon +Rodney +Sebastian +Sergio +Tylor +Tyrone +Vance +Wayne +Alfredo +Armando +Derick +Dominick +Heath +Kameron +Karl +Kristian +Leroy +Noel +Quinn +Reid +Trey +Walter +Warren +Brenden +Bryant +Devan +Drake +Emmanuel +Garret +Israel +Jace +Jarred +Jayson +Joey +Kiefer +Kurtis +Malcolm +Marcos +Maurice +Mitchel +Nolan +Orlando +Quinton +Roberto +Sam +Shea +Skylar +Spenser +Sterling +Terrance +Tomas +Tommy +Alberto +Alfonso +Billy +Braden +Chaz +Corbin +Damian +Damien +Darrell +Derik +Diego +Dion +Dwayne +Edwin +Erick +Ernesto +Frederick +Gage +Garrick +Jerome +Julio +Kasey +Keaton +Lukas +Myles +Nathanael +Nikolas +Reuben +Rick +Roy +Steve +Terrence +Thaddeus +Zackery +Abel +Bo +Bret +Bryson +Byron +Clay +Conner +Darrin +Davis +Deon +Eddie +Elliott +Gerardo +Jaron +Justen +Kellen +Kolby +Lane +Mackenzie +Marquis +Neal +Pablo +Rex +Ronnie +Shannon +Shayne +Sheldon +Ted +Tyrel +Alfred +Ali +Andy +Antoine +Aron +Arturo +Ashton +Bennett +Braxton +Brenton +Brice +Brooks +Carlton +Carter +Chester +Colten +Desmond +Donavan +Duncan +Felix +Floyd +Frankie +Franklin +Giovanni +Greg +Gustavo +Ismael +Leandro +Leonel +Lionel +Melvin +Moses +Pedro +Quentin +Ralph +Raul +Reece +Reed +Remington +Rory +Shelby +Stanley +Talon +Toby +Vernon +Adan +Adolfo +Ahmad +Allan +Alonzo +Barry +Ben +Bradly +Cedric +Dallas +Danial +Daren +Darin +Darryl +Dereck +Donte +Duane +Dwight +Emanuel +Enrique +Erich +Francis +Gilberto +Glen +Greggory +Griffin +Hans +Harry +Jarrett +Joaquin +Josef +Joshuah +Jovan +Kacey +Kale +Kenny +Kent +Kory +Kraig +Kurt +Lamar +Leon +Lonnie +Lyle +Malik +Marco +Markus +Marvin +Mick +Owen +Reginald +Rene +Reyes +Rocky +Rodolfo +Royce +Sidney +Stewart +Tate +Terence +Michael +Joshua +Christopher +Matthew +Andrew +Tyler +Ryan +Daniel +Jacob +Nicholas +Zachary +David +Cody +Joseph +Anthony +Brandon +James +Justin +John +Kyle +Robert +Alexander +Aaron +Eric +Jordan +William +Steven +Kevin +Benjamin +Jonathan +Adam +Thomas +Sean +Samuel +Nathan +Timothy +Austin +Taylor +Brian +Dylan +Richard +Travis +Patrick +Jeffrey +Jeremy +Derek +Jesse +Charles +Jason +Ian +Mark +Stephen +Cameron +Alex +Ethan +Christian +Paul +Trevor +Scott +Evan +Jose +Devin +Gabriel +Dustin +Garrett +Kenneth +Jared +Gregory +Nathaniel +Shane +Logan +Marcus +Spencer +Dillon +Casey +Connor +Cory +Vincent +Seth +Peter +Caleb +Lucas +Luke +Mitchell +Bradley +Corey +Jeremiah +Erik +Isaac +Juan +Bryan +Joel +Tanner +Shawn +Chad +Blake +Phillip +Dominic +Carlos +Jesus +Levi +Luis +Adrian +Colton +Cole +Dalton +Keith +Ronald +Brett +Devon +Raymond +Bryce +Victor +Antonio +Wesley +Dakota +Grant +Julian +Chase +Jake +Manuel +Brendan +George +Martin +Colin +Edward +Isaiah +Mario +Angelo +Donald +Douglas +Johnathan +Mason +Miguel +Jonathon +Clayton +Curtis +Maxwell +Zachariah +Alan +Troy +Clinton +Alec +Craig +Lance +Mathew +Drew +Max +Ricardo +Collin +Derrick +Noah +Allen +Angel +Calvin +Donovan +Hunter +Jack +Kristopher +Riley +Brent +Henry +Preston +Micah +Philip +Randy +Tony +Francisco +Gary +Geoffrey +Jackson +Larry +Nicolas +Sergio +Armando +Gavin +Hayden +Jeffery +Jorge +Colby +Darian +Elijah +Frank +Lawrence +Russell +Todd +Harrison +Andre +Chance +Dominick +Dominique +Jay +Jessie +Jordon +Kaleb +Kody +Louis +Marc +Micheal +Ruben +Skyler +Theodore +Zachery +Alejandro +Beau +Branden +Damon +Gage +Josiah +Landon +Parker +Ross +Walter +Weston +Danny +Gerald +Gilbert +Jon +Julio +Lee +Marco +Nickolas +Tucker +Xavier +Zackary +Billy +Bobby +Cesar +Darius +Darren +Fabian +Hector +Ivan +Javier +Jerry +Joe +Johnathon +Keegan +Morgan +Omar +Trenton +Carl +Dane +Eli +Emilio +Kelly +Kendall +Nolan +Arthur +Brenden +Conor +Eddie +Edgar +Edwin +Erick +Fernando +Forrest +Graham +Johnny +Marshall +Maurice +Miles +Quinn +Stefan +Wyatt +Abraham +Arturo +Clint +Dale +Demetrius +Jakob +Keenan +Raul +Ricky +Stephan +Ty +Wade +Zane +Alfredo +Andres +Damian +Davis +Dean +Malcolm +Randall +Sterling +Conrad +Cooper +Enrique +Ernest +Harley +Isiah +Jimmy +Leo +Marcos +Marquise +Mitchel +Oscar +Rodney +Sebastian +Shaun +Skylar +Terry +Trent +Andy +Brennan +Brock +Bryant +Chaz +Damien +Darryl +Elliot +Elliott +Franklin +Frederick +Gerardo +Jace +Jamie +Jarrod +Kurt +Lukas +Nathanael +Neil +Orlando +Roberto +Roger +Roman +Roy +Shelby +Simon +Stuart +Tobias +Tyson +Wayne +Will +Alfred +Aron +Brendon +Brenton +Carter +Dennis +Derik +Eduardo +Gustavo +Harry +Jaime +Jaron +Jarred +Karl +Keaton +Kory +Lane +Leon +Lorenzo +Moises +Nikolas +Owen +Ramon +Rodolfo +Salvador +Terrance +Tyrel +Warren +Willie +Abel +Alexis +Blaine +Brady +Brandan +Bret +Bruce +Bryson +Conner +Corbin +Dallas +Derick +Emmanuel +Felix +Griffin +Hans +Heath +Kellen +Kirk +Korey +Kristofer +Kurtis +Leonard +Rafael +Ray +Sam +Steve +Terrence +Tomas +Tommy +Trey +Tylor +Vance +Allan +Alonso +Arron +Brad +Braden +Brennen +Brice +Camron +Carson +Colten +Cristian +Desmond +Diego +Donavan +Elias +Eugene +Garett +Garret +Glen +Jakeob +Kalen +Loren +Pedro +Quincy +Reid +Robin +Rudy +Sage +Shea +Uriah +Adan +Addison +Albert +Alberto +Aric +Ashton +Avery +Ben +Blair +Bo +Byron +Clarence +Clifford +Devan +Drake +Earl +Estevan +Everett +Felipe +Greggory +Ismael +Israel +Jarrett +Kade +Kasey +Leland +Marvin +Nathanial +Neal +Nelson +Ramiro +Reed +Reginald +Ronnie +Sheldon +Sonny +Talon +Tevin +Thaddeus +Tristan +Vicente +Zackery +Alfonso +Ariel +Cade +Cedric +Dallin +Damion +Dante +Darin +Dario +Darnell +Deandre +Eloy +Ezekiel +Fred +Gene +Gilberto +Giovanni +Grayson +Guy +Harlan +Howard +Hugo +Issac +Jayson +Joey +Jonas +Jory +Josue +Kent +Kevan +Kole +Leslie +Lincoln +Malachi +Matthias +Mickey +Mikel +Nico +Noel +Patricio +Perry +Pierce +Ramsey +Randal +Raphael +Rene +Rhett +Roderick +Roland +Rory +Ryne +Sawyer +Sherman +Ted +Toby +Tory +Trevon +Tyrell +Tyrone +Michael +Joshua +Christopher +Tyler +Ryan +Matthew +Jacob +Nicholas +Andrew +Brandon +Zachary +Daniel +Joseph +Cody +David +Alexander +Kyle +John +Justin +James +Robert +Anthony +Dylan +Jordan +William +Benjamin +Austin +Eric +Samuel +Kevin +Sean +Thomas +Aaron +Steven +Nathan +Jonathan +Adam +Jesse +Taylor +Brian +Timothy +Dillon +Patrick +Cameron +Connor +Ian +Jeffrey +Christian +Richard +Travis +Jason +Evan +Jeremy +Trevor +Jose +Derek +Jared +Mark +Tanner +Scott +Alex +Dustin +Stephen +Charles +Garrett +Paul +Luke +Mitchell +Caleb +Nathaniel +Dominic +Ethan +Marcus +Shane +Gabriel +Kenneth +Devin +Shawn +Seth +Colin +Dakota +Joel +Juan +Bryan +Dalton +Lucas +Luis +Peter +Spencer +Casey +Erik +Vincent +Colton +Blake +Bradley +Adrian +Isaac +Logan +Cole +Carlos +Gregory +Keith +Levi +Cory +Jeremiah +Devon +Raymond +Corey +Jesus +Phillip +Brett +Edward +Antonio +Isaiah +Bryce +Victor +Manuel +Jake +Maxwell +Chad +Chase +Wesley +Julian +Jack +Troy +Derrick +Jonathon +Mathew +Angelo +Hunter +Mario +Donald +George +Grant +Miguel +Zachariah +Brendan +Mason +Andre +Collin +Donovan +Drew +Francisco +Johnathan +Martin +Skyler +Alejandro +Curtis +Nicolas +Jorge +Max +Zachery +Angel +Clayton +Tony +Alan +Craig +Lawrence +Micheal +Noah +Alec +Clinton +Conner +Douglas +Frank +Gary +Riley +Ronald +Xavier +Kody +Brent +Carl +Jackson +Omar +Ricardo +Ruben +Trenton +Trey +Damian +Edgar +Hayden +Philip +Preston +Colby +Kaleb +Micah +Eli +Henry +Jeffery +Josiah +Lance +Landon +Lee +Brady +Conor +Dominick +Elijah +Jaime +Louis +Marco +Bobby +Devante +Ivan +Johnathon +Johnny +Randy +Ricky +Trent +Tucker +Beau +Calvin +Dominique +Emilio +Fernando +Keenan +Marc +Marcos +Randall +Zane +Darren +Forrest +Gage +Larry +Parker +Russell +Sebastian +Walter +Albert +Cesar +Darius +Javier +Jay +Kristopher +Marshall +Nickolas +Oscar +Roger +Stefan +Todd +Tylor +Andres +Armando +Branden +Chance +Dallas +Gerald +Morgan +Pedro +Ross +Tristan +Ty +Kurt +Quinn +Raul +Sergio +Weston +Allen +Arthur +Damien +Drake +Eddie +Eduardo +Gerardo +Gilbert +Giovanni +Hector +Jerry +Jessie +Miles +Nolan +Ramon +Roman +Zackary +Brendon +Brock +Gavin +Jace +Julio +Markus +Myles +Neil +Sage +Wyatt +Brennan +Bryant +Cooper +Damon +Danny +Dean +Erick +Ernest +Geoffrey +Jarred +Jarrett +Jon +Jordon +Keegan +Lukas +Mackenzie +Malcolm +Roberto +Rodney +Wade +Warren +Zackery +Abraham +Blaine +Braden +Bret +Carter +Corbin +Dale +Davis +Dennis +Elias +Fabian +Garret +Israel +Jimmy +Joe +Kameron +Orlando +Ronnie +Saul +Shaun +Sterling +Tevin +Abel +Carson +Chandler +Clint +Dane +Diego +Dion +Enrique +Franklin +Harry +Jamie +Kelly +Neal +Rudy +Salvador +Alberto +Arturo +Ashton +Brenden +Bryson +Cristian +Darian +Dimitri +Edwin +Emmanuel +Harrison +Jamal +Kolton +Lane +Leo +Leonard +Lorenzo +Nathanial +Nikolas +Oliver +Rafael +Reed +Terry +Theodore +Alfred +Aron +Ben +Billy +Braxton +Camron +Colten +Cullen +Dylon +Elliot +Emanuel +Eugene +Felipe +Glen +Glenn +Griffin +Guillermo +Isiah +Jakob +Jarrod +Kendall +Kurtis +Owen +Pierce +Quinton +Reid +Shelby +Skylar +Stephan +Talon +Tory +Tyrell +Alexandro +Austen +Avery +Bailey +Bo +Cassidy +Clarence +Clay +Darrell +Demetrius +Devan +Donavan +Erich +Francis +Frederick +Graham +Greg +Guadalupe +Gustavo +Harley +Issac +Jakeob +Kellen +Kenny +Korey +Kyler +Leroy +Lonnie +Marcel +Marquis +Mitchel +Moises +Nathanael +Quentin +Roderick +Rodolfo +Roy +Simon +Teddy +Terrence +Tomas +Tre +Tyree +Vernon +Vicente +Wayne +Wilson +Alfredo +Alonzo +Aric +Augustus +Bruce +Bryon +Byron +Clifford +Conrad +Deven +Don +Donavon +Duncan +Dwayne +Dwight +Elliott +Eloy +Ernesto +Forest +Frankie +Garth +Gilberto +Ismael +Jarod +Jaron +Jessy +Jimmie +Josh +Julius +Keanu +Kegan +Keifer +Koby +Kristian +Leonardo +Loren +Malachi +Marvin +Maurice +Nico +Orion +Ralph +Ray +Reginald +Rogelio +Rusty +Sam +Sawyer +Shay +Shea +Sheldon +Tate +Terrance +Tommy +Tyrone +Tyson +Uriah +Uriel +Walker +Waylon +Westin +Ali +Allan +Augustine +Brandyn +Braydon +Brice +Brooks +Cale +Charlie +Chaz +Codey +Coleman +Colter +Dante +Deandre +Derrik +Desmond +Devonte +Dillion +Dominik +Earl +Esteban +Estevan +Fidel +Freddie +Fredrick +Gino +Gunnar +Hugo +Ignacio +Jamison +Javon +Jedidiah +Jory +Josue +Jovan +Julien +Keaton +Kelby +Kellan +Kenton +Kirk +Kory +Lewis +Louie +Milo +Nelson +Nestor +Raymundo +Rodrigo +Santiago +Sidney +Sonny +Stuart +Terence +Trae +Trever +Tyrel +Michael +Tyler +Joshua +Matthew +Christopher +Jacob +Andrew +Nicholas +Ryan +Brandon +Zachary +Joseph +David +Daniel +Kyle +Alexander +Cody +John +Austin +James +Justin +Anthony +Jordan +Robert +William +Benjamin +Dylan +Eric +Aaron +Sean +Jonathan +Taylor +Samuel +Nathan +Adam +Thomas +Steven +Connor +Christian +Jesse +Richard +Kevin +Timothy +Brian +Jason +Travis +Alex +Patrick +Cameron +Jeremy +Stephen +Ian +Charles +Trevor +Dillon +Evan +Jose +Tanner +Luke +Jared +Paul +Garrett +Jeffrey +Mark +Derek +Marcus +Nathaniel +Caleb +Dustin +Logan +Scott +Bryan +Dakota +Dominic +Kenneth +Ethan +Seth +Shane +Cory +Mitchell +Devin +Cole +Isaac +Lucas +Juan +Spencer +Colton +Dalton +Gabriel +Jesus +Blake +Gregory +Shawn +Vincent +Casey +Luis +Adrian +Victor +Bryce +Erik +Collin +Carlos +Isaiah +Chase +Jack +Levi +Corey +Joel +Bradley +Colin +Grant +Mario +Brett +Hunter +Peter +Alec +Antonio +Jake +Francisco +Jeremiah +Wesley +Clayton +Devon +Jonathon +Nicolas +Chad +Mason +Troy +Edward +Elijah +Keith +Max +Hayden +Phillip +Conner +Donovan +Jackson +Martin +Julian +Riley +Miguel +Noah +Skyler +Angelo +Drew +Johnathan +Preston +Sergio +Brady +Raymond +Xavier +George +Maxwell +Zachariah +Zachery +Parker +Alejandro +Henry +Javier +Jeffery +Jorge +Ronald +Russell +Brendan +Donald +Mathew +Philip +Ruben +Trey +Darren +Frank +Kristopher +Gage +Micheal +Trent +Zane +Carl +Derrick +Dominick +Eduardo +Ty +Chance +Conor +Cristian +Damian +Douglas +Fernando +Jerry +Omar +Andre +Branden +Dante +Dennis +Kaleb +Lance +Manuel +Ricardo +Sebastian +Jessie +Josiah +Kody +Landon +Louis +Nickolas +Cesar +Drake +Eli +Emilio +Fabian +Forrest +Hector +Alan +Jakob +Keenan +Theodore +Weston +Dallas +Darian +Edgar +Johnathon +Johnny +Randall +Tony +Trenton +Brent +Colten +Curtis +Geoffrey +Ivan +Micah +Orlando +Andres +Armando +Arturo +Calvin +Craig +Dean +Dominique +Eugene +Lawrence +Marco +Miles +Nolan +Stefan +Tylor +Angel +Clinton +Colby +Danny +Diego +Gary +Julio +Keegan +Lee +Marshall +Nikolas +Ramon +Allen +Cooper +Damien +Harrison +Joe +Marc +Myles +Oscar +Pedro +Quinn +Randy +Raul +Alfredo +Avery +Beau +Bryson +Darius +Ezekiel +Jay +Kurt +Kyler +Lorenzo +Morgan +Roberto +Wyatt +Brenden +Brennan +Damon +Davis +Edwin +Graham +Jace +Neil +Rafael +Rodney +Arthur +Billy +Brock +Duncan +Enrique +Isiah +Jaime +Larry +Ray +Reed +Roy +Todd +Tucker +Braden +Brendon +Bruce +Dane +Esteban +Gavin +Gerald +Jamie +Joey +Jon +Jonah +Jordon +Karl +Kendall +Kurtis +Marcos +Ricky +Roman +Shaquille +Tomas +Abraham +Addison +Andy +Ashton +Ben +Clint +Dale +Gilbert +Israel +Jarrod +Jimmy +Lukas +Malcolm +Markus +Quinton +Saul +Sheldon +Sterling +Tre +Tristan +Walter +Zackery +Alexis +Chandler +Devan +Elias +Elliot +Ernest +Franklin +Garret +Gerardo +Gustavo +Heath +Jalen +Kai +Keaton +Kelly +Pierce +Reid +Ross +Rudy +Sawyer +Shaun +Stuart +Toby +Tyson +Walker +Zackary +Albert +Alfonso +Bobby +Braxton +Bryant +Cade +Cassidy +Cedric +Clay +Colt +Devante +Dion +Emmanuel +Estevan +Frederick +Ismael +Issac +Josue +Kasey +Kory +Loren +Moses +Rick +Rodolfo +Rory +Shelby +Skylar +Terrell +Terry +Tyrel +Aidan +Alberto +Allan +Aric +Bo +Brenton +Byron +Carson +Carter +Chaz +Coleman +Cullen +Darrell +Darryl +Deon +Derick +Dwight +Eddie +Elliott +Glen +Jarred +Jarrett +Josef +Julien +Kameron +Lane +Leonard +Leroy +Mackenzie +Malachi +Oliver +Payton +Perry +Ramiro +Roger +Ronnie +Salvador +Sam +Santiago +Simon +Stephan +Thaddeus +Tommy +Trevon +Zakary +Zechariah +Ali +Andreas +Blaine +Bryon +Darien +Daryl +Dayne +Dayton +Deandre +Demetrius +Derik +Dexter +Dimitri +Dusty +Erick +Felipe +Frankie +Fredrick +Grayson +Guadalupe +Justice +Kade +Kirk +Leon +Liam +Lloyd +Maurice +Melvin +Mitchel +Moises +Nathanael +Nathanial +Pablo +Quentin +Reginald +Robin +Rogelio +Ryne +Sage +Shayne +Torey +Uriah +Warren +Wayne +Westley +Abel +Adan +Alfred +Alonzo +Austen +Austyn +Brad +Brayden +Bret +Cheyenne +Chris +Clifford +Conrad +Corbin +Cyrus +Domingo +Donavan +Eloy +Ernesto +Forest +Francis +Gene +Giovanni +Gordon +Greyson +Guillermo +Gunnar +Harley +Holden +Hugo +Jade +Javon +Jaylen +Jerome +Jess +Jorden +Kane +Keagan +Kent +Kiel +Leif +Leo +Malik +Mikal +Mychael +Noel +Owen +Pete +Reece +Reese +Shannon +Stetson +Steve +Talon +Tate +Tayler +Terrance +Tobias +Trae +Tyrell +Wade +Michael +Tyler +Joshua +Jacob +Austin +Matthew +Nicholas +Christopher +Andrew +Brandon +Zachary +Daniel +Ryan +Joseph +Alexander +David +Kyle +Anthony +Cody +James +Justin +John +William +Benjamin +Jonathan +Dylan +Samuel +Jordan +Robert +Aaron +Eric +Nathan +Kevin +Thomas +Connor +Jesse +Sean +Christian +Timothy +Adam +Taylor +Cameron +Ian +Steven +Gabriel +Brian +Garrett +Jeremy +Trevor +Tanner +Charles +Dominic +Jose +Marcus +Patrick +Travis +Dustin +Jared +Jason +Richard +Stephen +Evan +Isaac +Nathaniel +Scott +Derek +Caleb +Logan +Luke +Mark +Dakota +Jeffrey +Dillon +Mitchell +Alex +Devin +Seth +Alec +Juan +Lucas +Bryan +Cole +Paul +Ethan +Casey +Devon +Shane +Gregory +Jesus +Dalton +Erik +Hunter +Kenneth +Peter +Bradley +Colton +Shawn +Vincent +Bryce +Jack +Elijah +Levi +Luis +Cory +Adrian +Isaiah +Jackson +Chase +Spencer +Colin +Blake +Joel +Jeremiah +Antonio +Brett +Collin +Corey +Grant +Miguel +Julian +Brendan +Carlos +Jake +Wyatt +Henry +Raymond +Victor +Chad +Phillip +Alejandro +Conner +Edward +Manuel +Noah +Riley +Dominick +Francisco +Johnathan +Troy +Wesley +Zachariah +Clayton +Mason +Nicolas +Omar +Xavier +Gage +Jorge +Eduardo +George +Martin +Oscar +Sergio +Keith +Max +Forrest +Alan +Andres +Skyler +Ty +Mario +Maxwell +Angelo +Brent +Hayden +Micah +Russell +Andre +Cristian +Dante +Frank +Harrison +Jonathon +Josiah +Marcos +Zachery +Damian +Donald +Drew +Tucker +Dallas +Damon +Donovan +Jeffery +Jonah +Cesar +Kaleb +Landon +Preston +Ricardo +Brady +Chance +Conor +Curtis +Jaime +Kody +Lane +Carl +Craig +Derrick +Fernando +Hector +Johnny +Parker +Ruben +Sebastian +Trenton +Trey +Avery +Drake +Jessie +Nickolas +Allen +Colby +Darian +Dennis +Douglas +Ivan +Jalen +Kendall +Kristopher +Kyler +Mathew +Pedro +Philip +Trent +Zackary +Angel +Brendon +Darius +Edgar +Emilio +Graham +Keenan +Lance +Lawrence +Marco +Quinn +Roberto +Alberto +Branden +Darren +Elias +Gary +Louis +Marc +Theodore +Armando +Arthur +Ashton +Brenden +Damien +Dane +Eli +Gavin +Jakob +Joe +Karl +Keegan +Liam +Lorenzo +Miles +Nolan +Raul +Ronald +Alfredo +Beau +Calvin +Clay +Davis +Diego +Duncan +Isiah +Javier +Jerry +Johnathon +Julio +Keaton +Leo +Orlando +Rafael +Reed +Roman +Tylor +Albert +Braden +Chandler +Colten +Cooper +Dominique +Gustavo +Randall +Randy +Skylar +Sterling +Abraham +Austen +Brennan +Elliot +Fabian +Garret +Geoffrey +Gerardo +Jon +Kolton +Marshall +Micheal +Ramon +Shaun +Todd +Weston +Aidan +Cade +Devante +Erick +Jimmy +Leonard +Morgan +Salvador +Stefan +Andy +Corbin +Devan +Ernesto +Giovanni +Hugo +Israel +Jace +Jaden +Jamie +Jay +Joey +Larry +Mackenzie +Malcolm +Nathanial +Sage +Santiago +Simon +Tate +Tomas +Tyson +Zane +Ali +Brock +Carson +Dale +Danny +Deon +Enrique +Gilbert +Jordon +Lee +Myles +Reid +Ricky +Rodney +Roger +Rudy +Sam +Terry +Trevon +Tristan +Wade +Zackery +Addison +Alvaro +Edwin +Forest +Gunnar +Harley +Humberto +Leon +Leonardo +Nikolas +Sawyer +Terrance +Tony +Tre +Zechariah +Adan +Arturo +Billy +Brennen +Bret +Brody +Byron +Dakotah +Deandre +Demetrius +Donavan +Eddie +Ezekiel +Ezequiel +Jaron +Jarrod +Joaquin +Kai +Leonel +Neil +Oliver +Orion +Reginald +Ross +Shannon +Shelby +Stuart +Uriel +Will +Aldo +Aron +Augustus +Bobby +Brooks +Carter +Chaz +Clint +Colter +Conrad +Cullen +Darion +Darrell +Domenic +Duane +Felipe +Frankie +Franklin +Gerald +Gilberto +Grady +Grayson +Kegan +Kurtis +Lukas +Malachi +Marquis +Maurice +Nathanael +Nick +Noel +Quinton +Ray +Reece +Rhett +Shea +Stetson +Talon +Terrence +Tommy +Vaughn +Walker +Walter +Alexis +Alfonso +Alonso +Alonzo +Aric +August +Blaine +Brandan +Braxton +Brayden +Brice +Clinton +Daulton +Davon +Dean +Derick +Desmond +Devonte +Dion +Dominik +Garrick +Guadalupe +Hans +Hudson +Ismael +Jairo +Jayson +Josue +Kaden +Kane +Kasey +Kelly +Kieran +Kirk +Kurt +Maximilian +Rene +Rick +Rodrigo +Rogelio +Ronnie +Roy +Shayne +Stephan +Steve +Tracy +Trever +Tyrell +Abel +Adolfo +Ahmed +Allan +Anton +Ariel +Austyn +Barry +Ben +Bennett +Bishop +Brad +Brant +Bridger +Bryant +Bryson +Caden +Cedric +Charlie +Darnell +Darrin +Deion +Denzel +Domonic +Dustyn +Elliott +Emmanuel +Estevan +Eugene +Francis +Glen +Glenn +Griffin +Howard +Issac +Jasper +Jerome +Jerrod +Kade +Keanu +Kelvin +Kent +Kory +Lawson +Layne +Leif +Leroy +Loren +Neal +Nikolai +Owen +Pablo +Payton +Pierce +Quentin +Rico +River +Rocky +Roderick +Santana +Santos +Saul +Taran +Tevin +Travon +Vince +Westley +Zakary +Michael +Tyler +Jacob +Joshua +Austin +Matthew +Andrew +Nicholas +Christopher +Brandon +Zachary +Ryan +Alexander +Daniel +David +Joseph +Anthony +John +Kyle +Cody +William +Justin +Jordan +James +Robert +Dylan +Samuel +Benjamin +Aaron +Jonathan +Nathan +Thomas +Eric +Christian +Adam +Tanner +Connor +Kevin +Jose +Sean +Logan +Jesse +Ian +Evan +Cameron +Steven +Timothy +Brian +Jason +Gabriel +Trevor +Caleb +Taylor +Isaiah +Garrett +Patrick +Jeremy +Richard +Travis +Dillon +Mitchell +Stephen +Hunter +Alec +Juan +Dakota +Devin +Nathaniel +Jared +Elijah +Dustin +Ethan +Luke +Alex +Carlos +Luis +Dominic +Isaac +Noah +Charles +Paul +Derek +Marcus +Tristan +Bryan +Dalton +Mark +Jeffrey +Blake +Peter +Adrian +Jesus +Seth +Jack +Kenneth +Scott +Colton +Antonio +Spencer +Levi +Wyatt +Cole +Victor +Bradley +Chase +Lucas +Grant +Shane +Erik +Mason +Alejandro +Bryce +Joel +Jake +Jackson +Brendan +Clayton +Devon +Gregory +Jeremiah +Vincent +Brett +Casey +Conner +Francisco +Jorge +Colin +Henry +Shawn +Trenton +Manuel +Collin +Corey +Miguel +Angel +Cory +Cristian +Hayden +Nicolas +Edgar +Edward +Julian +Riley +Raymond +Troy +Chance +Lane +Chad +Johnathan +Jonathon +Mario +Jalen +Preston +Angelo +Donovan +Eduardo +Sergio +Wesley +Zachery +Aidan +Alan +Martin +Parker +George +Jonah +Dante +Javier +Maxwell +Ramon +Trey +Drew +Phillip +Zachariah +Brady +Calvin +Liam +Marco +Chandler +Gavin +Keenan +Omar +Randy +Xavier +Dominick +Fabian +Mathew +Micah +Philip +Sebastian +Skyler +Alexis +Andre +Curtis +Russell +Derrick +Diego +Donald +Douglas +Elias +Fernando +Jeffery +Louis +Ricardo +Ronald +Andres +Avery +Gerardo +Harrison +Kaleb +Keith +Landon +Lorenzo +Oscar +Tucker +Allen +Brenden +Cesar +Darius +Gage +Israel +Josiah +Kyler +Marcos +Max +Darren +Davis +Malik +Reid +Ty +Cooper +Darian +Edwin +Eli +Emilio +Frank +Ivan +Jaime +Keaton +Kody +Morgan +Trent +Zane +Arturo +Brendon +Brent +Brock +Damian +Isiah +Nickolas +Raul +Theodore +Weston +Colby +Johnny +Micheal +Pedro +Randall +Alberto +Armando +Bailey +Branden +Carson +Craig +Gerald +Jerry +Orlando +Reece +Tylor +Carl +Conor +Forrest +Gary +Keegan +Kellen +Marc +Ross +Stefan +Tony +Walter +Abel +Alonzo +Arthur +Beau +Cade +Clay +Danny +Demetrius +Dominique +Gustavo +Jaylen +Jessie +Kristopher +Ruben +Salvador +Zackary +Ashton +Brayden +Brody +Damien +Giovanni +Pablo +Ricky +Roberto +Todd +Zackery +Bryson +Carter +Colten +Dennis +Drake +Gunnar +Harley +Hector +Jayson +Joe +Julio +Justice +Kelly +Lawrence +Stephan +Terry +Tristen +Tyson +Brennan +Dallas +Duncan +Efrain +Ernesto +Felix +Frederick +Graham +Irvin +Jay +Jordon +Josue +Karl +Leo +Miles +Orion +Quinton +Rafael +Ray +Rogelio +Saul +Simon +Tate +Trevon +Alfredo +Auston +Bruce +Bryant +Damon +Dane +Dean +Devan +Franklin +Grayson +Guillermo +Jakob +Jimmy +Malcolm +Marshall +Mitchel +Myles +Nolan +Quentin +Quinn +Sage +Tristin +Ahmed +Austen +Desmond +Enrique +Erick +Johnathon +Jon +Larry +Leonard +Nikolas +Owen +Reed +Rene +Roman +Shaun +Skylar +Sterling +Toby +Andy +Augustine +Augustus +Billy +Blaine +Bobby +Cordell +Dale +Dusty +Emmanuel +Garret +Geoffrey +Griffin +Ismael +Jaden +Jarrod +Kendall +Khalid +Kurt +Lance +Loren +Lukas +Mackenzie +Marquise +Payton +Ramiro +Rodney +Roger +Ronnie +Santiago +Sawyer +Sidney +Terrance +Tomas +Tommy +Torin +Tyrell +Walker +Warren +Abraham +Allan +Ariel +Armand +Brad +Braxton +Corbin +Cullen +Devante +Devyn +Dion +Elliot +Everett +Felipe +Gilberto +Harry +Joey +Kaden +Kasey +Kieran +Neil +Quincy +Rick +Rodolfo +Shayne +Steve +Tevin +Trevin +Zechariah +Addison +Aiden +Albert +Alonso +Aron +Austyn +Braden +Branson +Bret +Broderick +Byron +Camron +Cheyenne +Chris +Damion +Darien +Darion +Dylon +Elliott +Esteban +Eugene +Ezekiel +Frankie +Gilbert +Hugo +Irving +Jamie +Jarod +Jerome +Joaquin +Kade +Kameron +Kendrick +Kenny +Kolby +Kristian +Lee +Leon +Marquis +Marvin +Maverick +Mohamed +Moises +Phoenix +Rhett +Rudy +Shannon +Stone +Talon +Tory +Trenten +Tyrone +Wayne +Adan +Alexzander +Alvaro +Brenton +Bridger +Brodie +Cale +Clifford +Clinton +Coleton +Colt +Colter +Conrad +Dandre +Darrin +Davion +Davon +Deandre +Deion +Derick +Deshawn +Deven +Don +Donavon +Earl +Easton +Emanuel +Emmett +Erin +Ezequiel +Galen +Garett +Glenn +Grady +Greyson +Guadalupe +Harold +Issac +Jameson +Jamison +Jaren +Jarred +Jarrett +Jasper +Jeff +Jess +Johnnie +Jovan +Julien +Kai +Kalin +Kelby +Kevan +Kirk +Kolton +Kory +Kristofer +Kurtis +Mitch +Moses +Nathanael +Nathanial +Nicholaus +Noel +Oliver +Pierce +Quintin +Reese +River +Rocky +Rodrigo +Roy +Sam +Sheldon +Solomon +Soren +Taran +Terrell +Trae +Tre +Triston +Uriah +Vance +Zakary +Jacob +Michael +Tyler +Matthew +Joshua +Andrew +Austin +Christopher +Ryan +Nicholas +Brandon +Joseph +Zachary +Daniel +Alexander +Anthony +David +John +William +Cody +Justin +Kyle +Samuel +James +Dylan +Jonathan +Benjamin +Robert +Jordan +Thomas +Christian +Aaron +Eric +Nathan +Connor +Jose +Noah +Logan +Sean +Jesse +Isaiah +Jason +Steven +Kevin +Tristan +Cameron +Elijah +Adam +Caleb +Timothy +Gabriel +Ian +Tanner +Trevor +Colton +Jesus +Garrett +Juan +Ethan +Richard +Brian +Nathaniel +Chase +Hunter +Jared +Jeremy +Evan +Patrick +Isaac +Taylor +Dakota +Luke +Alex +Blake +Jack +Dillon +Cole +Devin +Luis +Adrian +Mitchell +Charles +Dustin +Paul +Seth +Carlos +Stephen +Travis +Marcus +Spencer +Antonio +Dominic +Erik +Jackson +Devon +Mark +Alejandro +Alec +Wyatt +Dalton +Kenneth +Mason +Bryan +Derek +Victor +Vincent +Bryce +Lucas +Riley +Miguel +Scott +Jake +Brendan +Jeffrey +Peter +Collin +Chance +Jeremiah +Grant +Joel +Jorge +Levi +Gregory +Hayden +Josiah +Julian +Bradley +Eduardo +Nicolas +Ricardo +Shane +Wesley +Colin +Chandler +Omar +Angel +Cristian +Edward +Manuel +Shawn +Chad +Troy +Angelo +Brett +Corey +Raymond +Clayton +Preston +Aidan +Alan +Cory +Edgar +Jonah +Lane +Casey +Trenton +Xavier +Javier +Cesar +Conner +Damian +Donovan +Francisco +Lorenzo +Marco +Max +Micah +Bailey +Brady +Maxwell +Sergio +Skyler +Andres +Avery +Mario +Martin +Parker +Drew +Gage +Gerardo +Henry +Ivan +Kaleb +Mathew +Ty +Dante +Johnathan +Jonathon +Phillip +Diego +Douglas +Brenden +Calvin +Gavin +Hector +Liam +Keith +Kody +Malik +Ronald +Ruben +Zachariah +Zachery +Zane +Curtis +Jaime +Jalen +Marcos +Morgan +Randy +Tristen +Davis +Dominick +Donald +Emilio +George +Kyler +Sebastian +Brody +Enrique +Harrison +Philip +Quinn +Roberto +Russell +Trey +Alexis +Brendon +Derrick +Fabian +Johnny +Keegan +Trent +Andre +Colby +Conor +Gary +Lance +Marc +Tucker +Allen +Armando +Dennis +Drake +Duncan +Eli +Raul +Weston +Zackery +Alfredo +Carter +Fernando +Keenan +Landon +Micheal +Beau +Erick +Israel +Josue +Miles +Oscar +Ross +Saul +Cade +Darren +Frank +Giovanni +Jay +Roman +Shaun +Simon +Skylar +Theodore +Branden +Brent +Cooper +Ernesto +Gunnar +Keaton +Louis +Nikolas +Pedro +Quentin +Tony +Billy +Bryson +Damon +Darius +Griffin +Julio +Kristopher +Nolan +Owen +Ramon +Stefan +Todd +Tristin +Alfonso +Ashton +Brayden +Corbin +Dallas +Damien +Demetrius +Elias +Frederick +Isiah +Jerry +Jessie +Jimmy +Johnathon +Kade +Nickolas +Pablo +Roger +Santiago +Sterling +Zackary +Brennan +Brock +Bruce +Carson +Clay +Darian +Dean +Emmanuel +Forrest +Geoffrey +Graham +Nathanael +Quinton +Sage +Terry +Walter +Adan +Albert +Arturo +Bobby +Braden +Colten +Garret +Hugo +Jace +Jakob +Justice +Lawrence +Leo +Lukas +Marshall +Mitchel +Peyton +Tristian +Triston +Tyson +Abraham +Andy +Blaine +Carl +Cruz +Dangelo +Deangelo +Dominique +Edwin +Esteban +Gustavo +Joe +Larry +Leonardo +Orion +Quincy +Rafael +Ramiro +Reed +Reid +Salvador +Sawyer +Sheldon +Talon +Toby +Trevon +Walker +Alvaro +Arthur +Caden +Craig +Dale +Dane +Efrain +Ezekiel +Felix +Grayson +Jon +Killian +Kurtis +Malachi +Myles +Orlando +Pierce +Reece +Rhett +Ronnie +Shelby +Tate +Tylor +Addison +Alonzo +Austen +Austyn +Brennen +Cyrus +Elisha +Elliot +Eugene +Francis +Guillermo +Harley +Ismael +Jarrett +Javon +Jayden +Jeffery +Kelly +Lee +Lewis +Malcolm +Marquis +Nathanial +Quinten +Ricky +Tommy +Vicente +Wade +Zakary +Zechariah +Aiden +Auston +Broderick +Bryant +Chris +Coleman +Danny +Deion +Devan +Deven +Dion +Dorian +Dusty +Ezequiel +Gerald +Gilberto +Harry +Herman +Justus +Kameron +Karl +Kellen +Kieran +Maurice +Mohammed +Neil +Noe +Oliver +Payton +Ray +Remington +Rene +Rylan +Sam +Sidney +Stuart +Turner +Wayne +Will +Zephaniah +Abel +Alberto +Alfred +Ali +August +Blaze +Bo +Brandt +Braxton +Brayan +Bret +Bridger +Brooks +Clint +Colter +Conrad +Cullen +Deandre +Deon +Devante +Devyn +Donavan +Eddie +Estevan +Fidel +Galen +Gilbert +Harold +Issac +Izaak +Jaden +Jairo +Jamie +Jarred +Jasper +Jessy +Joaquin +Jordon +Kai +Kegan +Kendall +Kenny +Kirk +Koby +Kristian +Kurt +Leon +Leonard +Moises +Muhammad +Nelson +Nevin +Nico +Noel +Romeo +Rory +Rudy +Samual +Shay +Shea +Spenser +Terrance +Terrell +Tobias +Tre +Trystan +Tyrell +Warren +Willie +Aldo +Anders +Anton +Aron +Asher +Augustus +Axel +Benny +Brice +Britton +Byron +Cain +Chaz +Colt +Coy +Damion +Darien +Darin +Darion +Dayton +Desmond +Don +Donavon +Dru +Dwayne +Elliott +Franklin +Glenn +Greyson +Guy +Hugh +Isaak +Jarrod +Jaylon +Jayson +Jeramiah +Jess +Jimmie +Jonas +Jovany +Kane +Kelvin +Kolby +Kolton +Konnor +Leif +Lonnie +Mackenzie +Markus +Marvin +Mauricio +Maximilian +Mohamad +Nash +Neal +Nikolaus +Paris +Ralph +Reginald +River +Rodrigo +Rogelio +Ryder +Ryley +Santana +Shannon +Stephan +Terrence +Tomas +Trae +Trever +Uriah +Uriel +Jacob +Michael +Matthew +Austin +Joshua +Tyler +Andrew +Christopher +Nicholas +Brandon +Daniel +Ryan +Joseph +Zachary +David +Alexander +John +Anthony +Benjamin +James +Samuel +Kyle +William +Justin +Dylan +Jonathan +Christian +Jordan +Cody +Robert +Nathan +Thomas +Aaron +Eric +Cameron +Connor +Jose +Noah +Logan +Isaiah +Adam +Sean +Gabriel +Caleb +Jack +Kevin +Cole +Ian +Ethan +Isaac +Trevor +Luis +Evan +Elijah +Tanner +Hunter +Jesus +Juan +Patrick +Brian +Jesse +Timothy +Tristan +Jared +Taylor +Carlos +Alex +Antonio +Chase +Dominic +Jason +Steven +Alejandro +Luke +Adrian +Dakota +Garrett +Jeremy +Wyatt +Charles +Mitchell +Richard +Riley +Spencer +Colton +Nathaniel +Devin +Alec +Dalton +Marcus +Dillon +Jackson +Blake +Paul +Seth +Lucas +Mason +Derek +Grant +Mark +Bryce +Travis +Jake +Bryan +Dustin +Jeremiah +Vincent +Manuel +Angel +Julian +Miguel +Stephen +Kenneth +Devon +Jeffrey +Levi +Dante +Joel +Erik +Angelo +Victor +Jorge +Liam +Shane +Brendan +Josiah +Parker +Scott +Javier +Mario +Oscar +Shawn +Xavier +Francisco +Ricardo +Maxwell +Peter +Conner +Bradley +Brady +Collin +Henry +Nicolas +Wesley +Fernando +Brett +Casey +Eduardo +Gregory +Raymond +Alan +Colin +Preston +Alexis +Jonah +Trenton +Troy +Bailey +Edgar +Emilio +Gavin +Johnathan +Kaleb +Gage +Edward +Hayden +Quinn +Carter +Chance +Corey +Hector +Jakob +Max +Trent +Diego +Drew +Marco +Donovan +Jonathon +Morgan +Cory +Cristian +Ivan +Keith +Landon +Lorenzo +Martin +Philip +Sergio +Andre +Cesar +Chad +Chandler +Clayton +Elias +Frank +George +Israel +Ty +Andres +Braden +Brenden +Colby +Dominick +Gerardo +Phillip +Skyler +Zachariah +Calvin +Cooper +Dallas +Damian +Griffin +Harrison +Owen +Raul +Tucker +Zane +Enrique +Johnny +Lane +Malik +Omar +Ruben +Aidan +Avery +Jaime +Keegan +Mathew +Micah +Sebastian +Trey +Walker +Keenan +Alfredo +Douglas +Drake +Fabian +Julio +Zachery +Abraham +Joe +Kyler +Ronald +Zackary +Andy +Darius +Isiah +Miles +Nolan +Ramon +Randy +Tristen +Triston +Brody +Carl +Darian +Donald +Eli +Jay +Jerry +Marcos +Nickolas +Ricky +Roman +Saul +Skylar +Tomas +Weston +Armando +Ashton +Brayden +Brendon +Craig +Gary +Jaden +Jarrett +Roberto +Damien +Dennis +Duncan +Edwin +Giovanni +Marshall +Nathanael +Quentin +Simon +Theodore +Abel +Branden +Brennan +Brent +Damon +Davis +Erick +Guillermo +Johnathon +Keaton +Kody +Louis +Adan +Alberto +Allen +Beau +Curtis +Josue +Lukas +Micheal +Pedro +Peyton +Rafael +Talon +Trace +Brice +Bryson +Cullen +Dane +Desmond +Devan +Forrest +Grayson +Jayden +Jimmy +Lawrence +Noel +Roy +Sterling +Zackery +Corbin +Danny +Derrick +Deven +Ernesto +Geoffrey +Jalen +Jayson +Jon +Kameron +Karl +Larry +Oliver +Quinton +Ramiro +Ross +Rylan +Stefan +Walter +Albert +Austen +Brennen +Cade +Colten +Conor +Franklin +Gustavo +Jace +Jameson +Jarod +Joaquin +Marc +Neil +Quintin +Rhett +Santiago +Sawyer +Todd +Tristin +Tylor +Uriel +Alonso +Arthur +Clay +Demetrius +Emanuel +Ezra +Harley +Kristopher +Leonel +Malachi +Nikolas +Randall +Reese +Sage +Tyrell +Alfonso +Austyn +Brayan +Carson +Cedric +Coleton +Darren +Dean +Eddie +Efrain +Esteban +Ezekiel +Ezequiel +Gunnar +Hugo +Ignacio +Issac +Jeffery +Justice +Malcolm +Moises +Orion +Orlando +Payton +Reece +Rene +Roger +Russell +Salvador +Tobias +Tony +Aron +Arturo +August +Ben +Benito +Billy +Braxton +Caden +Dangelo +Dillan +Dominik +Everett +Felix +Frederick +Garett +Garret +Gilbert +Graham +Ismael +Jamie +Jerome +Josef +Kade +Kaden +Kieran +Kurtis +Lance +Mauricio +Moses +Reed +Reid +River +Rogelio +Stuart +Tre +Adolfo +Alonzo +Alvin +Asher +Brock +Bryant +Cruz +Darien +Darion +Deshawn +Dion +Dominique +Donavan +Dorian +Emmanuel +Emmett +Eugene +Gerald +Guadalupe +Holden +Irvin +Jade +Jarrod +Jerod +Kenny +Kent +Koby +Kurt +Lee +Leland +Mateo +Pablo +Rodney +Rudy +Sam +Santana +Terrance +Toby +Andreas +Blaine +Bo +Brandt +Byron +Carlo +Clint +Cyrus +Darrian +Dawson +Devante +Devonte +Draven +Eliseo +Emery +Estevan +Foster +Frankie +Irving +Isaias +Jaxon +Jordon +Jovan +Kai +Kirk +Kole +Kolton +Leo +Leonardo +Marquise +Nash +Noe +Quinten +Rodolfo +Shaun +Sheldon +Stephan +Stone +Tate +Terrell +Terrence +Terry +Tevin +Tommy +Trystan +Tyrone +Wade +Zechariah +Aiden +Aldo +Allan +Ari +Aric +Ariel +Asa +Barry +Bennett +Bobby +Brandyn +Brycen +Camden +Charlie +Colt +Colter +Damion +Deangelo +Dusty +Emiliano +Ernest +Ford +Fredrick +Gino +Gunner +Harry +Humberto +Izaiah +Jamison +Jarred +Jasper +Jeramiah +Joan +Justus +Kane +Kendrick +Killian +Kolby +Leon +Leroy +Lewis +Lloyd +Mackenzie +Markus +Marquis +Maurice +Milo +Mitchel +Mohammed +Montana +Myles +Neal +Nelson +Nicklaus +Osvaldo +Pierce +Ralph +Raphael +Raymundo +Rolando +Ryland +Simeon +Tristian +Wayne +Will +Jacob +Michael +Joshua +Matthew +Tyler +Nicholas +Daniel +Brandon +Joseph +Austin +Andrew +Zachary +Ryan +Alexander +Christopher +William +David +John +Anthony +Samuel +Kyle +James +Jonathan +Benjamin +Dylan +Justin +Jose +Nathan +Noah +Cody +Jordan +Christian +Robert +Cameron +Ethan +Connor +Isaiah +Thomas +Adam +Hunter +Aaron +Logan +Jack +Luis +Caleb +Trevor +Gabriel +Kevin +Isaac +Eric +Jason +Juan +Sean +Nathaniel +Evan +Adrian +Luke +Tristan +Jared +Spencer +Chase +Carlos +Elijah +Ian +Timothy +Cole +Tanner +Patrick +Brian +Dominic +Jesse +Jesus +Blake +Richard +Alex +Devin +Colton +Charles +Alejandro +Steven +Jackson +Marcus +Mark +Antonio +Miguel +Garrett +Seth +Taylor +Paul +Bryan +Dakota +Jeremy +Bryce +Jeremiah +Angel +Mitchell +Wyatt +Dalton +Dillon +Mason +Alec +Devon +Stephen +Lucas +Gavin +Travis +Levi +Brendan +Jorge +Oscar +Derek +Joel +Vincent +Dustin +Grant +Mario +Maxwell +Riley +Julian +Dante +Edgar +Parker +Colin +Erik +Brett +Nicolas +Ricardo +Josiah +Victor +Dawson +Max +Angelo +Bradley +Hayden +Liam +Manuel +Donovan +Javier +Gage +Jonah +Aidan +Raymond +Scott +Damian +Diego +Francisco +Sergio +Cesar +Collin +Peter +Conner +Alan +Shane +Hector +Jake +Jeffrey +Johnathan +Trenton +Carter +Jakob +Preston +Xavier +Chance +Henry +Kenneth +Gerardo +Clayton +Ivan +Marco +Ty +Elias +Shawn +Brennan +Cristian +George +Gregory +Jonathon +Keegan +Pedro +Casey +Chandler +Andres +Chad +Cory +Martin +Owen +Roberto +Skyler +Troy +Armando +Drew +Enrique +Trey +Fernando +Micah +Omar +Alexis +Arturo +Avery +Brenden +Carl +Cooper +Dominick +Edward +Griffin +Marcos +Calvin +Harrison +Kaleb +Tristen +Wesley +Brady +Brody +Emilio +Cade +Eli +Jarod +Phillip +Ruben +Russell +Brayden +Eduardo +Fabian +Landon +Bailey +Braden +Carson +Douglas +Drake +Trent +Morgan +Roman +Sebastian +Damien +Donald +Edwin +Giovanni +Jalen +Justice +Kyler +Louis +Malik +Zane +Conor +Corey +Dean +Jaime +Kody +Lorenzo +Marc +Micheal +Peyton +Rafael +Tucker +Zachariah +Andre +Branden +Esteban +Jaden +Mathew +Miles +Nickolas +Nolan +Quentin +Quinn +Saul +Damon +Davis +Dennis +Erick +Ernesto +Isiah +Ismael +Israel +Jace +Keaton +Keith +Kristopher +Lance +Lane +Raul +Ross +Zachery +Abraham +Andy +Arthur +Brent +Julio +Karl +Keenan +Ramon +Reece +Santiago +Alberto +Brendon +Frank +Joaquin +Randy +Simon +Sterling +Terrell +Theodore +Ashton +Colby +Corbin +Josue +Tate +Uriel +Warren +Weston +Clay +Curtis +Dallas +Dane +Duncan +Ezekiel +Marshall +Nikolas +Oliver +Ricky +Ronald +Sage +Tony +Walker +Alfredo +Caden +Camden +Cruz +Darius +Gary +Gunnar +Gustavo +Jarrod +Johnny +Kameron +Kobe +Lawrence +Leonardo +Malachi +Orlando +Tomas +Trace +Adan +Alfonso +Brock +Dorian +Emmanuel +Jerry +Orion +Pablo +Payton +Rudy +Sawyer +Skylar +Addison +Aiden +Beau +Brayan +Brooks +Bryant +Coleman +Colten +Craig +Darian +Elliot +Elliott +Forrest +Frederick +Harley +Jay +Jerome +Joe +Jon +Jonas +Kade +Leo +Leonel +Moises +Myles +Philip +Rodrigo +Tommy +Tristin +Abel +Albert +Allen +Alonso +Alonzo +Damion +Darren +Darrien +Grayson +Hugo +Izaiah +Jasper +Jeffery +Johnathon +Kaden +Kale +Osvaldo +Reed +Reid +Rylan +Triston +Zackery +Aron +Austen +Benito +Bennett +Bryson +Clinton +Danny +Demetrius +Derick +Derrick +Dion +Felix +Geoffrey +Gilbert +Holden +Jaxon +Jovan +Kelly +Koby +Larry +Malcolm +Quinton +Ramiro +Solomon +Stefan +Todd +Trystan +Tylor +Tyson +Walter +Allan +Bo +Bobby +Brennen +Chris +Conrad +Dangelo +Deandre +Emiliano +Estevan +Felipe +Franklin +Gerald +Gunner +Hudson +Isaias +Jarrett +Jimmy +Kai +Leonard +Lukas +Mateo +Mohammed +Moses +Nathanael +Noe +Pierce +Rene +Rhys +River +Rolando +Salvador +Stephan +Zackary +Asher +Braxton +Bruce +Cedric +Clark +Colt +Cordell +Cyrus +Darien +Devyn +Dillan +Eddie +Efrain +Emanuel +Ernest +Ezra +Fred +Grady +Graham +Guillermo +Harry +Issac +Jaron +Jayden +Jayson +Joey +Jordon +Kurt +Layne +Maximillian +Nelson +Quincy +Ray +Reese +Reginald +Remington +Rogelio +Roger +Romeo +Soren +Stone +Talon +Tobias +Tye +Ulises +Wade +Will +Willie +Zechariah +Adolfo +Alexandro +Alfred +Ariel +Blaine +Brad +Braeden +Braydon +Ceasar +Coby +Cullen +Dale +Dario +Darion +Darrion +Deon +Deshawn +Desmond +Devan +Deven +Easton +Everett +Galen +Garret +Heriberto +Ignacio +Jadon +Jamal +Jessie +Kane +Kellan +Killian +Kristian +Kristofer +Lars +Lee +Marlon +Marquise +Marshal +Maurice +Mauricio +Misael +Mitchel +Mohamed +Nikolai +Noel +Paxton +Quintin +Randall +Rocco +Rodney +Ronnie +Roy +Ryland +Sam +Schuyler +Stephon +Steve +Terry +Tyrone +Alijah +Alvin +Antony +Augustine +Augustus +Austyn +Beck +Ben +Billy +Brannon +Brennon +Bret +Bronson +Caelan +Camron +Deangelo +Derik +Dominik +Donavan +Donte +Dwight +Eliseo +Elisha +Ellis +Eloy +Ever +Freddy +Garrick +Gino +Guadalupe +Guy +Hilario +Humberto +Iain +Isidro +Jairo +Jaydon +Jaylen +Jerod +Jett +Jonatan +Jorden +Justis +Kadin +Kayden +Kelby +Kellen +Kendrick +Kent +Kevyn +Kordell +Kurtis +Leobardo +Marvin +Maximilian +Melvin +Nathanial +Raymundo +Reilly +Reuben +Rigoberto +Ryder +Santana +Seamus +Shaun +Silas +Stuart +Terrance +Toby +Tyrell +Jacob +Michael +Joshua +Matthew +Nicholas +Tyler +Daniel +Joseph +Andrew +Ryan +Alexander +Zachary +Brandon +William +Christopher +Austin +Anthony +John +Benjamin +Justin +David +Samuel +Jonathan +Noah +Dylan +Jose +James +Kyle +Ethan +Jordan +Hunter +Isaiah +Christian +Robert +Nathan +Cameron +Thomas +Logan +Caleb +Connor +Jack +Cody +Elijah +Juan +Trevor +Aaron +Jason +Luis +Gabriel +Evan +Jared +Adam +Sean +Jesus +Carlos +Ian +Jackson +Tanner +Eric +Isaac +Kevin +Antonio +Seth +Brian +Luke +Garrett +Blake +Bryce +Nathaniel +Cole +Steven +Devin +Mason +Charles +Dominic +Alejandro +Colton +Patrick +Jesse +Adrian +Wyatt +Timothy +Chase +Bryan +Tristan +Erik +Alex +Angel +Miguel +Richard +Dillon +Brendan +Jeremiah +Maxwell +Julian +Marcus +Mark +Diego +Spencer +Alec +Jorge +Levi +Lucas +Jeremy +Peter +Grant +Riley +Xavier +Aidan +Oscar +Dakota +Victor +Gavin +Max +Francisco +Hayden +Manuel +Mitchell +Taylor +Derek +Paul +Stephen +Dalton +Liam +Vincent +Ricardo +Mario +Parker +Scott +Joel +Conner +Devon +Brett +Dustin +Alan +Dante +Elias +Omar +Wesley +Alexis +Collin +Jake +Sergio +Edgar +Eduardo +Josiah +Nicolas +Preston +Kenneth +Travis +Trenton +Henry +Bradley +Clayton +Kaleb +Cesar +Chandler +Colin +Casey +Donovan +Jaden +Jeffrey +Andres +Angelo +Cade +Harrison +Javier +Chance +Gerardo +Jonah +Ruben +Trey +Abraham +Brayden +Israel +Ivan +Johnathan +Lorenzo +Gregory +Roberto +Dawson +Fernando +Gage +Keith +Martin +Shane +Ty +Bailey +Brady +Edward +George +Hector +Owen +Emilio +Jakob +Keegan +Shawn +Drake +Enrique +Marcos +Pedro +Raul +Sebastian +Drew +Simon +Zane +Brenden +Carter +Kaden +Mathew +Nolan +Braden +Carson +Cooper +Cory +Erick +Keaton +Lane +Raymond +Corey +Cristian +Damian +Frank +Jaime +Landon +Jace +Micah +Phillip +Theodore +Rafael +Troy +Brennan +Brock +Griffin +Roman +Zachariah +Alberto +Andre +Caden +Chad +Marco +Quinn +Skyler +Marc +Nickolas +Peyton +Trent +Aiden +Alfredo +Colby +Darius +Dominick +Gustavo +Jalen +Jayden +Pablo +Philip +Weston +Allen +Armando +Avery +Brendon +Curtis +Eli +Isiah +Kai +Lance +Malik +Morgan +Quentin +Tucker +Brent +Davis +Fabian +Giovanni +Jonathon +Julio +Leonardo +Orlando +Ramon +Saul +Brayan +Corbin +Darren +Emmanuel +Ernesto +Garret +Ismael +Kameron +Kyler +Rodrigo +Zackary +Abel +Bryson +Calvin +Conor +Gary +Jay +Nathanael +Uriel +Beau +Dane +Danny +Darian +Dennis +Derrick +Donald +Edwin +Ezekiel +Jessie +Keenan +Kristopher +Oliver +Payton +Salvador +Addison +Arturo +Colten +Estevan +Hugo +Marshall +Orion +Quinton +Reed +Sawyer +Ashton +Branden +Brody +Carl +Damien +Josue +Micheal +Randy +Ricky +Sage +Santiago +Tomas +Adolfo +Albert +Arthur +Braeden +Braxton +Camden +Cruz +Everett +Kody +Lawrence +Louis +Lukas +Nikolas +Ronald +Terrell +Tristen +Zachery +Andy +Bryant +Cyrus +Dallas +Eloy +Emanuel +Graham +Guillermo +Izaiah +Jadon +Jarod +Johnathon +Johnny +Miles +Ramiro +Reece +Tate +Tobias +Zion +Asher +Damon +Demetrius +Esteban +Felipe +Jarred +Jimmy +Kellen +Leonard +Malachi +Mateo +Mauricio +Moses +Reese +Rodolfo +Rudy +Rylan +Sam +Skylar +Stefan +Tyson +Allan +Anders +Austen +Ben +Clay +Douglas +Duncan +Grayson +Irvin +Issac +Jaylen +Jayson +Jeffery +Jerry +Jordon +Justice +Larry +Nash +Noe +Quincy +Quintin +Randall +Ross +Talon +Tony +Tylor +Tyrese +Alonso +Alvaro +Ariel +Bennett +Cedric +Craig +Dangelo +Dean +Declan +Deshawn +Desmond +Devyn +Efrain +Ezra +Felix +Gilberto +Guadalupe +Harry +Jaxon +Kade +Kobe +Myles +Ray +River +Rory +Russell +Solomon +Sterling +Terry +Wayne +Wilson +Andreas +Aron +Augustus +Brice +Bruce +Charlie +Chris +Cordell +Damion +Davin +Devan +Deven +Donavon +Eugene +Garett +Gerald +Gilbert +Irving +Ja +Joaquin +Joey +Jon +Karl +Kasey +Kendall +Kieran +Kory +Marvin +Maurice +Noel +Rene +Ryne +Tommy +Trevon +Tristin +Vaughn +Vicente +Wade +Walter +Agustin +Ali +August +Benito +Bowen +Brodie +Brooks +Dale +Darien +Darrien +Davion +Dayton +Deangelo +Deondre +Derick +Donavan +Elliot +Ernest +Ezequiel +Finn +Franklin +Greyson +Gunnar +Hudson +Jaren +Jarrod +Jasper +Jerome +Joe +Justus +Kain +Kenny +Leonel +Maximiliano +Mohammed +Moises +Nico +Osvaldo +Phoenix +Rhett +Ryland +Santana +Seamus +Silas +Toby +Trace +Trae +Tre +Tyrone +Ulises +Alden +Amir +Bo +Brennen +Brennon +Bret +Bridger +Cain +Camron +Colter +Conrad +Dario +Devante +Dorian +Dylon +Emiliano +Frankie +Gabrial +Gaige +Geoffrey +German +Holden +Iain +Ignacio +Isai +Jameson +Jaron +Jarrett +Jax +Jeramiah +Jess +Jett +Jonas +Jordi +Josef +Judah +Kayden +Kendrick +Kolton +Korbin +Madison +Markus +Mike +Octavio +Pete +Quinten +Reid +Rigoberto +Rodney +Roy +Sheldon +Soren +Steve +Stuart +Triston +Trystan +Uriah +Vance +Walker +Warren +Zechariah +Abdullah +Abram +Adan +Adrien +Ahmad +Ahmed +Alek +Alfonso +Alonzo +Anton +Axel +Blair +Bobby +Braedon +Brandan +Brandt +Byron +Clark +Clifford +Coleton +Colt +Cullen +Damen +Dax +Devonte +Dimitri +Don +Draven +Efren +Ever +Glenn +Gonzalo +Guy +Harley +Isaak +Isac +Izak +Jacobo +Jamal +Jaxson +Jonatan +Josh +Kadin +Kane +Kellan +Kelly +Khalil +Kirk +Koby +Kristian +Kristofer +Lincoln +Marquis +Matteo +Maximilian +Misael +Montana +Nathen +Nehemiah +Nikko +Oswaldo +Paxton +Pierce +Ralph +Reyes +Rohan +Roland +Romeo +Ryder +Santos +Savion +Shea +Sidney +Stone +Tennyson +Thaddeus +Theron +Todd +Torin +Tory +Xander +Zackery +Zakary +Jacob +Michael +Joshua +Matthew +Ryan +Nicholas +Tyler +Andrew +Joseph +Benjamin +Daniel +Zachary +Alexander +William +Brandon +Christopher +David +John +Anthony +Samuel +Jose +Ethan +Jonathan +Noah +James +Austin +Justin +Nathan +Christian +Kyle +Dylan +Gabriel +Cameron +Luis +Jack +Hunter +Jordan +Robert +Thomas +Kevin +Isaiah +Logan +Jackson +Caleb +Isaac +Connor +Jesus +Elijah +Aaron +Adam +Juan +Cole +Cody +Jason +Eric +Evan +Ian +Adrian +Charles +Nathaniel +Brian +Trevor +Luke +Garrett +Jared +Seth +Alex +Tristan +Angel +Sean +Alejandro +Carlos +Miguel +Devin +Lucas +Aidan +Bryan +Blake +Antonio +Patrick +Colton +Mason +Tanner +Bryce +Timothy +Dominic +Jesse +Wyatt +Chase +Gavin +Julian +Riley +Grant +Oscar +Diego +Brendan +Victor +Eduardo +Jake +Steven +Richard +Alexis +Sebastian +Colin +Derek +Josiah +Taylor +Ricardo +Xavier +Joel +Marcus +Peter +Spencer +Jeremiah +Manuel +Mark +Dillon +Jeremy +Jorge +Levi +Paul +Travis +Dalton +Jaden +Sergio +Dakota +Hayden +Mitchell +Cesar +Henry +Preston +Vincent +Francisco +Erik +Maxwell +Parker +Ivan +Max +Collin +Dustin +Devon +Fernando +Scott +Alan +Conner +Edgar +Marco +Stephen +Carson +Liam +Angelo +Clayton +Omar +Alec +Donovan +Javier +Kenneth +Chandler +Jakob +Mario +Bradley +Carter +Shane +Braden +Chance +Dawson +Gage +Abraham +Andres +Brady +Caden +Cristian +Elias +Nicolas +Jeffrey +Marcos +Zane +Brayden +Calvin +Cooper +Gregory +Hector +Kaleb +Owen +Edward +Harrison +Johnathan +Keegan +Raymond +Armando +Brody +Jaime +Jayden +Jonah +Martin +Trey +Wesley +Casey +Dante +Enrique +Shawn +Ty +Bailey +Cade +Drake +Eli +Trenton +Gerardo +Landon +Raul +Erick +Gustavo +Kaden +Lorenzo +Brett +Skyler +Brennan +Giovanni +Quinn +Roberto +Ruben +Brenden +Dominick +Micah +Miles +Alfredo +Ashton +Damian +Edwin +Nolan +Peyton +Simon +Ezekiel +Griffin +Phillip +Tristen +Corey +Frank +Jalen +Payton +Pedro +Abel +Aiden +Avery +Drew +George +Lance +Mathew +Elian +Keith +Lane +Zachariah +Axel +Brayan +Chad +Corbin +Cory +Damien +Davis +Emilio +Israel +Jonathon +Josue +Oliver +Roman +Andre +Arturo +Dallas +Emmanuel +Julio +Ramon +Trent +Troy +Brock +Dennis +Duncan +Garret +Philip +Saul +Tony +Alberto +Dane +Fabian +Johnny +Keaton +Lukas +Malachi +Morgan +Rafael +Santiago +Tucker +Beau +Bryson +Damon +Grayson +Kai +Kobe +Kody +Louis +Marc +Pablo +Sterling +Theodore +Tyson +Uriel +Weston +Zachery +Andy +Darius +Donald +Ernesto +Jace +Jadon +Noe +Ronald +Salvador +Zackary +Braeden +Brendon +Colby +Darian +Douglas +Isiah +Joe +Jordon +Nathanael +Reece +Tobias +Triston +Estevan +Ezequiel +Felipe +Isaias +Jerry +Leonardo +Leonel +Nikolas +Walker +Allen +Bennett +Branden +Dangelo +Jarod +Jaxon +Jay +Kristopher +Kyler +Marshall +Nickolas +Quentin +Randy +Rodrigo +Rylan +Sawyer +Skylar +Alonso +Alvaro +Arthur +Braxton +Clay +Curtis +Damion +Dean +Jon +Kade +Kenny +Myles +Reese +Rene +Elliot +Emanuel +Emiliano +Esteban +Ismael +Joaquin +Keenan +Moises +Orion +Quinton +Ricky +Romeo +Russell +Solomon +Tommy +Alfonso +Alonzo +Brennen +Bryant +Camden +Colten +Conor +Darren +Everett +Felix +Graham +Guillermo +Gunnar +Hugo +Irving +Johnathon +Kameron +Kellen +Lawrence +Malcolm +Noel +Octavio +Rodney +Tate +Zackery +Zion +Aric +Ariel +Chris +Craig +Cruz +Demetrius +Derrick +Devan +Deven +Jarrett +Jayce +Jovani +Leif +Malik +Mateo +Maximilian +Micheal +Moses +Orlando +Porter +Ramiro +Ray +Roger +Roy +Rudy +Shaun +Todd +Tristin +Addison +Billy +Camron +Cayden +Dylon +Easton +Ezra +Finn +Issac +Izaiah +Jaren +Jasper +Jayson +Joey +Jonas +Koby +Kristian +Leon +Osvaldo +Pierce +Quinten +Quintin +Rogelio +Santino +Silas +Stone +Tomas +Warren +Alexzander +Anders +Anton +Ben +Brent +Byron +Coby +Cordell +Cullen +Dale +Dominik +Dominique +Dorian +Gerald +Jaiden +Jamison +Jaron +Jaxson +Jaylen +Jeffery +Jett +Jovan +Kane +Kole +Kolton +Landen +Larry +Leo +Mauricio +Nelson +Niko +Reed +Reid +River +Shjon +Stephan +Teagan +Toby +Vicente +Wade +Walter +Albert +Aron +Austen +Bridger +Carl +Cyrus +Danny +Darien +Declan +Donavin +Eddie +Elisha +Ernest +Eugene +Ever +Gary +Gilberto +Gunner +Heath +Holden +Ignacio +Jarrod +Jaydon +Jovany +Justice +Keven +Milton +Mohammad +Quincy +Reilly +Rhys +Rodolfo +Sage +Sam +Santana +Santos +Sonny +Soren +Stefan +Terrence +Tye +Tylor +Ulises +Zakary +Zander +Aden +Adolfo +Agustin +Anakin +Asher +Austyn +Beck +Benito +Bernardo +Bjorn +Blaine +Bo +Bowen +Coleman +Coy +Deangelo +Denzel +Domonic +Donavan +Efrain +Elmer +Emmett +Fidel +Francis +Frederick +Gianni +Giovani +Harley +Humberto +Isaak +Javon +Jordyn +Jude +Kasey +Kayden +Kieran +Kurtis +Leroy +Marlon +Maximillian +Nathanial +Rigoberto +Steve +Tegan +Terrance +Terrell +Thaddeus +Van +Vance +Wilson +Xander +Abram +Adan +Ahmed +Aleksander +Alexandro +Allan +Alvin +Amir +Andreas +Ari +Arnulfo +August +Ayden +Baylor +Brenton +Brooks +Bruce +Cale +Calum +Colt +Cristobal +Cristofer +Darrell +Darrien +Dayton +Desmond +Donavon +Donte +Efren +Eliseo +Elliott +Elvis +Enzo +Ethen +Garrison +Glen +Heriberto +Isidro +Jairo +Jameson +Jaret +Jarred +Jefferson +Jerome +Jonatan +Jordi +Julien +Jullian +Justus +Kacey +Kaelan +Kamron +Kendrick +Khalid +Kian +Kobi +Kurt +Layne +Leonard +Luca +Mackenzie +Mariano +Markus +Maurice +Maverick +Mitchel +Mohamed +Nash +Neal +Nico +Obed +Randall +Rocky +Rory +Rowan +Ryland +Savion +Shea +Titus +Tobin +Tre +Trevon +Wayne +Will +Zain +Zechariah +Zeke +Jacob +Michael +Joshua +Joseph +Tyler +Matthew +Andrew +Daniel +Nicholas +Ryan +Alexander +Zachary +Benjamin +Anthony +Jose +Christopher +William +Samuel +Ethan +David +Brandon +Logan +Dylan +James +Jonathan +Austin +John +Noah +Gabriel +Christian +Jack +Isaiah +Justin +Nathan +Luis +Hunter +Caleb +Kyle +Thomas +Juan +Cameron +Jason +Jackson +Elijah +Aaron +Adam +Evan +Carlos +Isaac +Jesus +Kevin +Connor +Luke +Angel +Robert +Cody +Brian +Blake +Ian +Cole +Jordan +Trevor +Aidan +Sean +Eric +Tanner +Dominic +Mason +Seth +Nathaniel +Adrian +Garrett +Jared +Bryan +Charles +Alejandro +Julian +Jorge +Josiah +Liam +Alex +Chase +Patrick +Tristan +Miguel +Antonio +Devin +Colton +Riley +Grant +Timothy +Lucas +Spencer +Steven +Jaden +Wyatt +Diego +Dillon +Eduardo +Jeremiah +Victor +Richard +Carson +Brendan +Dakota +Oscar +Jesse +Xavier +Sebastian +Bryce +Marcus +Alan +Gavin +Devon +Alexis +Francisco +Hayden +Kaleb +Cristian +Joel +Peter +Andres +Mark +Henry +Manuel +Mitchell +Owen +Taylor +Cesar +Gage +Parker +Ricardo +Derek +Erik +Maxwell +Fernando +Vincent +Edgar +Javier +Levi +Carter +Colby +Preston +Stephen +Jayden +Travis +Jake +Paul +Aiden +Damian +Jakob +Mario +Dalton +Ivan +Marco +Angelo +Edward +Cade +Jonah +Kenneth +Omar +Colin +Collin +Elias +Max +Sergio +Alec +Clayton +Jeffrey +Marcos +Braden +Caden +Donovan +Kaden +Martin +Trenton +Armando +Gregory +Abraham +Axel +Brayden +Dustin +George +Jaime +Johnathan +Nolan +Dawson +Erick +Jeremy +Micah +Conner +Hector +Bradley +Leonardo +Scott +Cooper +Dante +Fabian +Giovanni +Quinn +Edwin +Eli +Gerardo +Shane +Brenden +Chance +Emmanuel +Griffin +Raymond +Shawn +Landon +Phillip +Roberto +Ashton +Jalen +Julio +Nicolas +Ruben +Saul +Zane +Drake +Jace +Trey +Brady +Keegan +Raul +Simon +Tristen +Calvin +Harrison +Reece +Roman +Trent +Tucker +Wesley +Andre +Brett +Enrique +Isiah +Miles +Peyton +Brayan +Brock +Josue +Maximus +Kai +Kyler +Lance +Lorenzo +Skyler +Andy +Dominick +Israel +Kade +Ramon +Tate +Bryson +Casey +Ernesto +Malachi +Mateo +Oliver +Rafael +Troy +Alfredo +Avery +Braeden +Damien +Drew +Gustavo +Ismael +Ty +Zackary +Brody +Chandler +Darian +Hugo +Issac +Lukas +Brennan +Camden +Corbin +Corey +Esteban +Ezekiel +Grayson +Jaxon +Johnny +Louis +Orion +Pedro +Theodore +Zachariah +Alberto +Cory +Damon +Donald +Emilio +Lane +Pablo +Rylan +Salvador +Walker +Arturo +Douglas +Frank +Jon +Jonathon +Mathew +Morgan +Ronald +Santiago +Uriel +Derrick +Joe +Kody +Mauricio +Orlando +Tommy +Brendon +Conor +Dean +Hudson +Jayson +Joaquin +Johnathon +Keenan +Keith +Malik +Marc +Nathanael +Noe +Quinton +Romeo +Weston +Abel +Asher +Branden +Keaton +Larry +Payton +Reed +Sawyer +Zachery +Aldo +Bailey +Carl +Cayden +Clay +Dane +Danny +Darius +Davis +Duncan +Guillermo +Holden +Jay +Kameron +Kellen +Leo +Nickolas +Philip +Reese +Terry +Tyson +Ulises +Alfonso +Cruz +Dennis +Elliot +Francis +Jadon +Jarod +Jimmy +Sam +Toby +Tomas +Tony +Adan +Allen +Aron +Arthur +Camron +Cyrus +Emiliano +Felipe +Frederick +Garret +German +Jaiden +Jovan +Kristian +Marshall +Moses +Myles +Quentin +Rogelio +Russell +Sterling +Tristin +Adolfo +Alonso +Bennett +Chad +Coby +Colten +Curtis +Dallas +Damion +Declan +Desmond +Dorian +Elian +Emanuel +Estevan +Greyson +Irvin +Johan +Justice +Kobe +Kolby +Lawrence +Marvin +Ramiro +Reid +Rodrigo +Sheldon +Skylar +Tobias +Will +Zander +Zion +Allan +Alonzo +August +Ayden +Braxton +Braydon +Bryant +Cullen +Devan +Dominique +Gideon +Gilbert +Graham +Irving +Izaiah +Kane +Kenny +Kristopher +Osvaldo +Quinten +Randy +Rene +Roger +Rowan +Sage +Silas +Teagan +Xander +Agustin +Albert +Alvaro +Beau +Blaine +Brooks +Craig +Cristobal +Dayton +Deon +Deven +Everett +Felix +Gary +Grady +Guadalupe +Harley +Humberto +Isaias +Jasper +Kaiden +Kelvin +Koby +Lee +Lincoln +Micheal +Moises +Nikolas +Noel +Phoenix +Porter +Quincy +Ryder +Shjon +Talon +Trace +Triston +Vicente +Walter +Aden +Ali +Alijah +Brent +Dale +Efrain +Imanol +Jaron +Jarrett +Jaylen +Jordon +Keanu +Malcolm +Misael +Nathanial +Ricky +Rory +Rudy +Santana +Shaun +Sonny +Stefan +Steve +Warren +Zakary +Addison +Alexandro +Alfred +Anders +Anton +Ben +Billy +Bobby +Braedon +Darien +Dario +Domonic +Eddie +Efren +Elmer +Ezequiel +Ezra +Fidel +Finn +Harry +Heriberto +Ignacio +Jameson +Jamie +Javon +Jayce +Jaydon +Joey +Josef +Jovani +Jovany +Kolton +Landen +Leif +Luc +Maximillian +Mike +Nehemiah +Osbaldo +Ralph +Randall +Raymundo +Rocco +Rodolfo +Ryker +Santino +Torin +Tylor +Zack +Zackery +Adin +Amir +Ari +Ariel +Austen +Austyn +Benito +Blade +Bridger +Bruce +Cale +Clarence +Coleton +Darion +Demetrius +Deshawn +Dominik +Eliseo +Ernest +Gaige +Garett +Garrison +Jade +Jaeden +Jair +Jairo +Jamal +Jeffery +Jensen +Jerry +Jessie +Jonas +Kaeden +Kayden +Kent +Kenton +Kieran +Leonel +Luciano +Maximiliano +Oswaldo +Paxton +Pierce +Quintin +Raudel +Rey +Rigoberto +Rolando +Santos +Solomon +Stephan +Terrell +Vaughn +Andreas +Armani +Aryan +Brennen +Bret +Bronson +Cedric +Chris +Clifford +Clinton +Colt +Conrad +Darren +Davian +Delfino +Denis +Emmett +Eugene +Ever +Ewan +Finnian +Gabe +Geoffrey +Gerald +Giovanny +Glenn +Gonzalo +Gunnar +Gunner +Hamza +Harold +Harper +Horacio +Jan +Jean +Jeramiah +Jerome +Jett +Jonatan +Jordy +Jordyn +Judah +Jude +Julius +Junior +Kadin +Kain +Kaya +Keagan +Kendall +Kirk +Kole +Leroy +Mackenzie +Markus +Maurice +Maxim +Milo +Nash +Raven +Ray +Ronan +Rylee +Seamus +Sebastien +Stanley +Stone +Titus +Trevin +Trinity +Trystan +Ulysses +Zechariah +Jacob +Joshua +Michael +Ethan +Joseph +Alexander +Daniel +Tyler +Andrew +David +Matthew +Nicholas +Samuel +William +Zachary +Jose +Ryan +Christopher +Anthony +James +Dylan +Benjamin +Brandon +Gabriel +Logan +John +Austin +Elijah +Jesus +Jack +Jackson +Caleb +Jonathan +Nathan +Christian +Justin +Noah +Connor +Luis +Aaron +Aidan +Isaiah +Jordan +Kevin +Angel +Blake +Luke +Kyle +Juan +Evan +Isaac +Hunter +Robert +Dominic +Cody +Carlos +Cameron +Thomas +Jason +Adam +Mason +Ian +Adrian +Eric +Cole +Brian +Nathaniel +Charles +Sean +Alex +Tanner +Sebastian +Bryan +Wyatt +Hayden +Miguel +Trevor +Alejandro +Julian +Diego +Seth +Steven +Gavin +Antonio +Liam +Victor +Owen +Riley +Garrett +Richard +Colton +Lucas +Tristan +Timothy +Jaden +Spencer +Grant +Jared +Jeremiah +Caden +Chase +Josiah +Bryce +Jesse +Maxwell +Oscar +Xavier +Jorge +Jake +Devin +Manuel +Marcus +Henry +Cesar +Ivan +Jayden +Alan +Francisco +Jeremy +Kaleb +Aiden +Fernando +Alexis +Joel +Donovan +Braden +Erik +Landon +Brendan +Carson +Mario +Patrick +Gage +Paul +Taylor +Carter +Colin +Dillon +Max +Brayden +Dalton +Edgar +Eduardo +Kaden +Mark +Preston +Jakob +Peter +Sergio +Vincent +Andres +Javier +Ricardo +Levi +Parker +Cristian +Devon +Alec +Jonah +Erick +Hector +Nicolas +Dakota +Edward +Brady +Brayan +Cade +Jeffrey +Travis +Collin +Conner +Cooper +Eli +Micah +Abraham +Bradley +Dominick +Shawn +Zane +Ashton +Damian +George +Omar +Stephen +Gerardo +Scott +Damien +Elias +Johnathan +Keegan +Kenneth +Wesley +Colby +Edwin +Mitchell +Nolan +Dante +Gregory +Jaime +Pedro +Raymond +Roberto +Brenden +Derek +Marcos +Shane +Armando +Dawson +Ruben +Calvin +Gustavo +Kyler +Marco +Martin +Roman +Trey +Angelo +Corey +Giovanni +Lane +Lukas +Miles +Skyler +Ty +Harrison +Lance +Orlando +Phillip +Raul +Alfredo +Avery +Chance +Enrique +Israel +Trenton +Arturo +Brody +Dustin +Abel +Andy +Clayton +Jace +Jalen +Josue +Leonardo +Brennan +Cayden +Fabian +Griffin +Julio +Maximus +Oliver +Uriel +Axel +Bryson +Emmanuel +Jaxon +Malachi +Rafael +Tucker +Brett +Declan +Ernesto +Grayson +Kade +Mateo +Saul +Andre +Brock +Bryant +Cory +Drew +Emilio +Kai +Pablo +Simon +Tony +Camden +Damon +Dane +Ezekiel +Isiah +Quinn +Ramon +Tobias +Trent +Adan +Casey +Jimmy +Johnny +Jonathon +Keaton +Rylan +Salvador +Santiago +Tyson +Issac +Lawrence +Leo +Lorenzo +Mathew +Ulises +Allen +Ayden +Caiden +Drake +Joaquin +Kameron +Kody +Micheal +Quentin +Tristen +Troy +Weston +Zachariah +Arthur +Corbin +Emiliano +Ezra +Finn +Hugo +Jaiden +Kobe +Moses +Payton +Peyton +Randy +Zackary +Alberto +Asher +Branden +Davis +Douglas +Esteban +Guillermo +Harley +Jonas +Moises +Morgan +Nickolas +Rodrigo +Rogelio +Sage +Chad +Conor +Curtis +Felipe +Frank +Jadon +Jayson +Noel +Orion +Sawyer +Tate +Theodore +Zachery +Aden +Brendon +Chandler +Donald +Easton +Felix +Ismael +Jeffery +Jessie +Joe +Kaiden +Keith +Louis +Philip +Silas +Tomas +Aldo +Alfonso +Beau +Cruz +Dennis +Gary +Gunnar +Isaias +Malcolm +Mauricio +Nathanael +Osvaldo +Ramiro +Sam +Tristin +Walker +Xander +Ari +Braydon +Charlie +Clay +Dallas +Danny +Derrick +Dominik +Jaydon +Jon +Kane +Kian +Myles +Skylar +Todd +Walter +Alvaro +Bailey +Carl +Damion +Dangelo +Dayton +Dean +Dominique +Duncan +Elliot +Emanuel +Ezequiel +Jasper +Jaylen +Jerry +Koby +Landen +Leon +Marc +Marshall +Quincy +Reece +Reese +Rodolfo +Rudy +Alonso +Bennett +Braxton +Bridger +Chris +Darius +Darren +Eddie +Estevan +Forrest +Garrison +Gilberto +Graham +Holden +Irvin +Izaiah +Jay +Jayce +Kellen +Kolby +Lewis +Nikolas +Octavio +Quinton +River +Roger +Ross +Russell +Sullivan +Tommy +Zander +Albert +Aron +Blaine +Braeden +Cedric +Coby +Cullen +Dimitri +Dorian +Dyllan +Everett +Frederick +German +Gianni +Hudson +Jarod +Jarrett +Joan +Johan +Jordon +Justice +Keenan +Kole +Kolton +Leonel +Marvin +Milo +Misael +Porter +Reed +Reid +Ricky +Solomon +Sonny +Toby +Trystan +Zackery +Zakary +Ahmed +Alexandro +Ali +August +Billy +Bobby +Bowen +Brennen +Brent +Clint +Colter +Demetrius +Desmond +Deven +Gael +Gilbert +Grady +Jadyn +Jamie +Jaren +Jaron +Jett +Julius +Kadin +Kayden +Kieran +Nathanial +Quinten +Quintin +Rene +Rex +Rocco +Ronald +Soren +Sterling +Teagan +Triston +Wilson +Addison +Agustin +Alonzo +Angus +Anton +Braedon +Braulio +Brice +Brooks +Bruce +Brycen +Coleman +Colten +Craig +Cyrus +Dale +Darien +Darin +Dario +Destin +Donavon +Garret +Giovani +Greyson +Humberto +Ignacio +Jamal +Jameson +Jamison +Jerome +Jovan +Jovani +Julien +Lee +Luc +Luca +Malik +Maximiliano +Nash +Niko +Noe +Phoenix +Pierce +Rodney +Romeo +Ronan +Ronnie +Rowan +Shaun +Talon +Thaddeus +Valentino +Vicente +Zayne +Zion +Allan +Alvin +Anders +Armani +Augustine +Aydan +Ben +Benito +Bernardo +Braiden +Brennon +Broderick +Byron +Camron +Dallin +Darian +Davion +Deshawn +Devan +Dezmond +Domanic +Donte +Elvis +Franklin +Gannon +Gonzalo +Hamza +Horacio +Jan +Jasiah +Jaxson +Jeramiah +Jonatan +Junior +Keagan +Kenny +Kenyon +Kristian +Kristopher +Layton +Leonard +Markus +Maximilian +Melvin +Nehemiah +Nelson +Nico +Obed +Oswaldo +Ray +Rory +Santos +Seamus +Titus +Tre +Trevon +Tylor +Tyrell +Tyrese +Uriah +Wade +Will +Xzavier +Zechariah +Abram +Adolfo +Adrien +Aedan +Alden +Alexzander +Alijah +Austyn +Benton +Bradyn +Branson +Cale +Campbell +Case +Cian +Darrian +Darrien +Darrion +Davian +Davin +Dayne +Deandre +Deangelo +Derick +Devyn +Domingo +Elian +Elliott +Ever +Favian +Gerald +Harold +Heath +Hezekiah +Irving +Isai +Isidro +Izaak +Izak +Jadin +Jaeden +Jaedyn +Jahir +Jairo +Javon +Jerimiah +Joey +Johnathon +Jovany +Joziah +Kale +Karl +Kennedy +Keven +Kory +Kye +Larry +Leobardo +Luiz +Makai +Migel +Nestor +Osbaldo +Oskar +Quinlan +Raef +Reagan +Reyes +Rhys +Rolando +Ryker +Ryley +Samual +Santana +Sebastien +Shannon +Steve +Terence +Terrance +Terry +Trace +Valentin +Warren +Wiley +Yahir +Yovani +Zephaniah +Jacob +Joshua +Andrew +Alexander +Daniel +Ethan +Michael +Joseph +Ryan +Tyler +Matthew +Jose +Samuel +Benjamin +Anthony +William +David +Zachary +Christopher +Dylan +James +Gabriel +Jack +Logan +Nicholas +John +Brandon +Jonathan +Elijah +Noah +Nathan +Caleb +Aidan +Kevin +Luis +Evan +Jackson +Connor +Isaiah +Isaac +Angel +Christian +Jesus +Luke +Juan +Austin +Robert +Hunter +Justin +Jordan +Thomas +Gavin +Jason +Adam +Aaron +Diego +Adrian +Carlos +Kyle +Charles +Aiden +Mason +Blake +Cameron +Ian +Alex +Bryan +Cole +Dominic +Sean +Owen +Brian +Eric +Cody +Jaden +Miguel +Seth +Nathaniel +Hayden +Julian +Lucas +Tristan +Tanner +Xavier +Alejandro +Caden +Garrett +Liam +Riley +Jeremiah +Wyatt +Carson +Jesse +Trevor +Jayden +Chase +Ivan +Alan +Cesar +Antonio +Bryce +Kaden +Eduardo +Josiah +Victor +Colin +Devin +Gage +Jorge +Patrick +Timothy +Carter +Manuel +Steven +Ashton +Colton +Jake +Marcus +Maxwell +Joel +Spencer +Mark +Oscar +Omar +Alexis +Henry +Cooper +Dillon +Kaleb +Landon +Levi +Sebastian +Brayden +Jared +Max +Javier +Kenneth +Parker +Nicolas +Braden +Fernando +Brendan +Conner +Damian +Erik +Francisco +Mario +Ricardo +Devon +Elias +Sergio +Cristian +Peter +Andres +Jonah +Taylor +Grant +Collin +Donovan +Vincent +Angelo +Edgar +Erick +Preston +Richard +Brady +Cade +Dante +Giovanni +Oliver +Wesley +Chance +Marco +Zane +Brody +Clayton +Dakota +Dominick +Paul +Quinn +Xander +George +Nolan +Pedro +Shawn +Jeremy +Marcos +Martin +Emilio +Jace +Jakob +Jeffrey +Trenton +Ty +Eli +Kai +Miles +Roberto +Travis +Trey +Dalton +Edwin +Keegan +Shane +Alec +Armando +Brayan +Damien +Edward +Ruben +Abraham +Avery +Hector +Micah +Derek +Dustin +Ezekiel +Gregory +Leonardo +Yahir +Ayden +Calvin +Johnathan +Kyler +Malachi +Saul +Stephen +Gerardo +Mitchell +Brennan +Camden +Colby +Peyton +Skyler +Tristen +Casey +Rafael +Brenden +Fabian +Griffin +Simon +Andre +Axel +Emmanuel +Julio +Abel +Andy +Jaime +Jaxon +Lorenzo +Raul +Trent +Israel +Lukas +Roman +Alberto +Brock +Cayden +Harrison +Jalen +Josue +Kaiden +Phillip +Scott +Theodore +Corbin +Gustavo +Jadon +Kobe +Mathew +Pablo +Ramon +Alonzo +Bradley +Braeden +Brett +Dawson +Grayson +Jimmy +Quentin +Randy +Tucker +Zachariah +Zander +Aden +Damon +Enrique +Gael +Lane +Raymond +Rodrigo +Salvador +Lance +Payton +Reece +Ronald +Rowan +Adan +Beau +Bryson +Curtis +Damion +Elliot +Ernesto +Ismael +Jonathon +Keaton +Morgan +Nikolas +Reid +Santiago +Tyson +Uriel +Zackary +Alonso +Dennis +Emiliano +Leo +Maximus +Noe +Rigoberto +Alfredo +Arthur +Asher +Branden +Davis +Devyn +Drake +Issac +Izaiah +Jonas +Keenan +Kody +Mateo +Orlando +Osvaldo +Troy +Walker +Allen +Brendon +Carl +Corey +Cruz +Douglas +Graham +Jerry +Kade +Lawrence +Mauricio +Nickolas +Orion +Sawyer +Silas +Skylar +Tobias +Chandler +Darian +Derrick +Donald +Emanuel +Felipe +Frank +Gunnar +Holden +Jaiden +Jayce +Moises +Myles +Russell +Sage +Toby +Broderick +Brodie +Chad +Demetrius +Esteban +Felix +Grady +Joaquin +Kadin +Kayden +Keith +Marc +Octavio +Phoenix +Reese +Rodolfo +Rylan +Tate +Weston +Arturo +Bryant +Cory +Dallas +Dane +Dominik +Eddie +Ezequiel +Finn +Gilbert +Hugo +Irvin +Jeffery +Johnny +Jordon +Kristian +Leonel +Marvin +Maximilian +Moses +Porter +Tony +Zechariah +Zion +Adolfo +Aldo +Bennett +Blaine +Camron +Charlie +Clay +Declan +Derick +Devan +Jameson +Judah +Jude +Kellen +Landen +Malik +Nathanael +Pierce +Quincy +Quinton +Shaun +Tristin +Zackery +Alexzander +Alvaro +Anton +Aron +Cyrus +Ezra +Gerald +Johan +Jon +Justice +Kaeden +Kameron +Larry +Louis +Luca +Marshall +Ricky +Rocco +Roger +Rory +Roy +Ryder +Steve +Tomas +Tommy +Vicente +Xzavier +Addison +Albert +Braiden +Cash +Conor +Conrad +Dale +Danny +Donavan +Dorian +Duncan +Emmett +Estevan +Everett +Gary +Gianni +Gonzalo +Guillermo +Humberto +Irving +Isiah +Jaeden +Jamison +Jaron +Jaxson +Jay +Jaydon +Kieran +Markus +Quintin +Rene +Rogelio +Romeo +Santana +Santos +Solomon +Stanley +Walter +Zachery +Alfonso +Ali +August +Austen +Bailey +Benito +Bridger +Bruce +Caiden +Chris +Coby +Coy +Cristopher +Darin +Dayton +Deven +Drew +Elliott +Fletcher +Gannon +Garret +German +Iain +Isaias +Jahir +Jairo +Joe +Jordyn +Kale +Keagan +Kian +Kolby +Kristopher +Leif +Leon +Nathanial +Ramiro +Reed +Ronan +Rudy +Seamus +Soren +Talon +Torin +Triston +Van +Wade +Warren +Agustin +Allan +Amir +Anders +Andreas +Braxton +Braydon +Brennen +Brent +Byron +Cael +Cedric +Dallin +Dean +Demitrius +Denzel +Esai +Eugene +Franklin +Galen +Gilberto +Greyson +Harley +Hudson +Jagger +Jair +Jasper +Jaylen +Jerome +Jessie +Julius +Kael +Kelton +Kelvin +Kendall +Keven +Koby +Layne +Mariano +Marlon +Micheal +Misael +Mohamed +Nestor +Noel +Randall +Remington +River +Rodney +Sam +Sonny +Stefan +Tavian +Teagan +Titus +Trace +Trevin +Abram +Alden +Alexandro +Alfred +Antony +Ari +Asa +Atticus +Austyn +Ben +Bobby +Brenton +Brice +Colter +Craig +Cristobal +Darien +Dario +Davin +Efren +Elmer +Finnegan +Forrest +Frederick +Gavyn +Gunner +Harry +Isai +Izayah +Jacoby +Jaren +Jarod +Jarrett +Jayson +Jedidiah +Johnathon +Jovanni +Jovanny +Jovany +Justus +Karson +Kenny +Khalil +Kole +Kolton +Lee +Lincoln +Louie +Malcolm +Maverick +Melvin +Oswaldo +Otis +Quinlan +Ross +Sabastian +Tobin +Uriah +Vance +Westley +Adin +Adrien +Aidyn +Alijah +Alvin +Ashten +Baylor +Billy +Blaze +Bo +Bradon +Brecken +Broden +Bruno +Campbell +Clifford +Colten +Cristo +Cristofer +Cullen +Dangelo +Darius +Davion +Davon +Desmond +Domonic +Ean +Efrain +Elian +Eliot +Enoch +Eoin +Finley +Finnian +Floyd +Forest +Frankie +Freddy +Garin +Garrison +Gideon +Gino +Gordon +Guadalupe +Haven +Imanol +Iram +Izaac +Jarrod +Jeramiah +Jerimiah +Jett +Joey +Johnnie +Jordy +Junior +Kalob +Kane +Lars +Layton +Leroy +Maddox +Malakai +Marquis +Matthias +Maximiliano +Mekhi +Mohammed +Nash +Nasir +Nico +Rex +Rhett +Rian +Rolando +Ronnie +Ryland +Rylee +Said +Sterling +Taj +Tariq +Terrance +Todd +Trae +Tristian +Trystan +Tylor +Tyrese +Ulises +Ulysses +Vaughn +Willie +Zack +Zavier +Jacob +Joshua +Ethan +Daniel +Alexander +Andrew +Michael +Joseph +Tyler +Samuel +Ryan +Anthony +Matthew +Benjamin +Jose +William +David +Logan +Gabriel +Zachary +Nicholas +Jonathan +Noah +John +Caleb +Elijah +Dylan +Christopher +Angel +Jackson +Jack +James +Aidan +Nathan +Kevin +Isaac +Brandon +Connor +Evan +Isaiah +Jesus +Austin +Luke +Juan +Luis +Nathaniel +Aiden +Christian +Robert +Dominic +Owen +Diego +Thomas +Kyle +Cameron +Charles +Mason +Carlos +Ian +Justin +Adrian +Cole +Gavin +Eric +Hunter +Aaron +Lucas +Adam +Bryan +Blake +Jason +Wyatt +Jordan +Cody +Hayden +Alejandro +Julian +Alexis +Miguel +Josiah +Brian +Jayden +Sean +Xavier +Chase +Liam +Tanner +Victor +Jesse +Riley +Trevor +Alan +Carter +Caden +Garrett +Jorge +Cooper +Alex +Kaden +Ashton +Landon +Colin +Henry +Seth +Antonio +Eduardo +Jeremiah +Edgar +Oscar +Brayden +Devin +Timothy +Cesar +Jake +Carson +Marcus +Sebastian +Colton +Tristan +Jaden +Levi +Patrick +Vincent +Conner +Ivan +Cristian +Bryce +Manuel +Grant +Braden +Micah +Collin +Damian +Eli +Preston +Fernando +Maxwell +Parker +Dillon +Peter +Mark +Ricardo +Richard +Brendan +Joel +Max +Spencer +Erick +Abraham +Erik +Steven +Devon +Francisco +Jeremy +Donovan +Hector +Israel +Kaleb +Paul +Ty +Edwin +Martin +Peyton +Adan +Ayden +Brody +Edward +Emilio +Javier +Kenneth +Mario +Giovanni +Jared +Omar +Brady +Dakota +Elias +Miles +Roman +Angelo +Derek +Fabian +Oliver +Sergio +Andres +Brayan +Gage +Jonah +Leonardo +Marco +Chance +Nolan +Trenton +Trey +Armando +Roberto +Shane +Johnathan +Cade +Dalton +Damien +Ezekiel +Jakob +Camden +Brenden +Gerardo +Bradley +Malachi +Mitchell +Santiago +Taylor +Asher +Casey +Kai +Raul +Axel +Corbin +Dante +Dominick +Enrique +Gustavo +Jace +Nicolas +Zane +Andy +Avery +Calvin +Pedro +Wesley +Colby +Dawson +George +Kaiden +Lorenzo +Marcos +Quinn +Raymond +Stephen +Travis +Yahir +Clayton +Josue +Scott +Simon +Tucker +Zander +Emmanuel +Hugo +Jaime +Jeffrey +Mateo +Ryder +Skyler +Tristen +Brett +Bryson +Ezra +Keegan +Rafael +Saul +Shawn +Arturo +Braeden +Dustin +Harrison +Jaxon +Kayden +Rylan +Salvador +Xander +Zachariah +Beau +Bryant +Griffin +Ismael +Louis +Lukas +Pablo +Ruben +Aden +Emiliano +Gregory +Kyler +Lance +Abel +Alec +Finn +Julio +Leo +Orlando +Phillip +Ramon +Tate +Troy +Tyson +Brock +Cayden +Drake +Hudson +Jessie +Quentin +Silas +Andre +Cyrus +Davis +Johnny +Kade +Morgan +Payton +Ezequiel +Grayson +Holden +Jaydon +Landen +Lane +Marshall +Nathanael +Randy +Tobias +Toby +Alfredo +Cruz +Damion +Esteban +Gael +Izaiah +Maddox +Mauricio +Nickolas +Rodrigo +Sawyer +Theodore +Braxton +Chad +Dean +Jaxson +Jude +Keaton +Keith +Larry +Moises +Orion +Shaun +Trent +Zachery +Alberto +Arthur +Braydon +Cory +Ever +Frank +Guillermo +Jaiden +Jalen +Kody +Myles +Philip +Bennett +Charlie +Easton +Eddie +Gary +Graham +Gunnar +Isiah +Jonathon +Kameron +Leonel +Nikolas +Reece +Rowan +Russell +Soren +Ulises +Weston +Ali +Allen +Brennen +Brooks +Caiden +Carl +Dane +Declan +Deven +Donald +Elliot +Ernesto +Issac +Jadon +Johnathon +Mathew +Osvaldo +Pierce +Reid +Talon +Tommy +Walker +Walter +Zackery +Adolfo +Ari +Ben +Brennan +Conor +Davion +Dennis +Efrain +Elian +Emanuel +Gunner +Irvin +Jasper +Jaylen +Joaquin +Jovan +Justice +Kellen +Kristopher +Maximilian +Micheal +Milo +Quincy +Uriel +Wilson +Zackary +Boden +Cale +Camron +Conrad +Corey +Curtis +Dangelo +Darian +Darius +Derrick +Dorian +Felix +Gideon +Grady +Jay +Jerry +Joe +Jon +Keenan +Luca +Marc +Marek +Octavio +Phoenix +Reed +Sage +Titus +Alonzo +Aron +Brodie +Chandler +Craig +Dallas +Duncan +Everett +Harley +Jairo +Jameson +Jayson +Jonas +Kadin +Kyan +Leon +Markus +Misael +Moses +Rene +Ricky +Rogelio +Ronald +Seamus +Sullivan +Tomas +Trystan +Zion +Addison +Albert +Aldo +Alexzander +Alonso +Amir +Andon +August +Braedon +Braiden +Branden +Damon +Dayton +Devan +Drew +Felipe +Gerald +Ignacio +Isaak +Isaias +Jadyn +Jaeden +Jayce +Kole +Konner +Lincoln +Maximus +Prince +Rocco +Sam +Stone +Alvaro +Asa +Bailey +Brycen +Chris +Colten +Desmond +Douglas +Elliott +Emmett +Gianni +Gilberto +Greyson +Harold +Isai +Jair +Jamison +Jaren +Jeffery +Jerome +Jordon +Kobe +Leonard +Luciano +Maurice +Maximiliano +Mekhi +Nehemiah +Noe +Noel +Porter +Raymundo +Remington +Romeo +Rory +Santos +Zechariah +Abram +Allan +Aryan +Atticus +Augustine +Beck +Bodie +Branson +Brendon +Dale +Danny +Daunte +Davian +Davin +Davon +Deandre +Dominik +Fletcher +Francis +Irving +Jaron +Jaylon +Jeramiah +Jerimiah +Jimmy +Joey +Jordy +Jovanni +Kaeden +Kale +Kenton +Keven +Luc +Malakai +Malcolm +Mathias +Nick +Nico +Quinton +River +Roger +Ryland +Shea +Solomon +Stephan +Steve +Tristin +Triston +Tyree +Vicente +Wayne +Yair +Abdullah +Aedan +Alfonso +Amari +Anders +Anton +Augustus +Blaine +Blane +Bode +Byron +Callum +Clifford +Coleman +Darrell +Dax +Deacon +Dimitri +Donavan +Donavon +Eliseo +Ernest +Gavyn +Gino +Guadalupe +Isidro +Javon +Jefferson +Josef +Joziah +Kane +Keller +Kelton +Kelvin +Kian +Kieran +Kolby +Konnor +Lawrence +Malaki +Marcelino +Maximillian +Melvin +Memphis +Nathanial +Nelson +Quinten +Ramiro +Reese +Reuben +Rhys +Rodolfo +Rohan +Roland +Ronan +Royce +Rudy +Samson +Santana +Stefan +Tai +Tayden +Teagan +Thaddeus +Tony +Trevon +Vance +Zakary +Ace +Adin +Adriel +Aleksander +Alijah +Alvin +Andreas +Anson +Arath +Armani +Arnold +Aydan +Benito +Benny +Bilal +Bjorn +Bobby +Bodhi +Boston +Brad +Bridger +Caelan +Calen +Cash +Cedar +Chester +Cristopher +Darien +Dario +Darren +Derick +Dexter +Draven +Dyson +Ean +Eduard +Eloy +Ely +Emerson +Fransisco +Garret +Garrison +Giovanny +Grey +Haden +Heriberto +Isael +Jarrod +Jasiah +Jax +Jaydin +Jett +Joan +Johan +Jovani +Jovany +Judah +Kamden +Kanye +Kasen +Keagan +Keanu +Kegan +Ken +Khalid +Kolten +Kolton +Kristian +Lee +Leif +Lewis +Lucus +Marcelo +Marquis +Matteo +Matthias +Mauro +Mohamed +Mohammed +Nikolai +Randall +Rodney +Rolando +Ronin +Rylee +Skylar +Steele +Sylas +Terrance +Trace +Trenten +Treyton +Tylor +Tyrell +Vaughn +Wade +Will +Zeke +Jacob +Joshua +Alexander +Joseph +Ethan +Tyler +Daniel +Michael +Andrew +Anthony +William +Ryan +Noah +Samuel +David +Matthew +Gabriel +Jose +Angel +Dylan +Benjamin +Christopher +Jack +John +Jonathan +Logan +James +Nicholas +Elijah +Zachary +Nathan +Jackson +Evan +Isaiah +Aiden +Christian +Luke +Aidan +Caleb +Isaac +Austin +Juan +Luis +Brandon +Diego +Hunter +Thomas +Connor +Kevin +Gavin +Mason +Jesus +Ian +Robert +Carlos +Dominic +Justin +Owen +Charles +Aaron +Jayden +Wyatt +Nathaniel +Jordan +Adrian +Lucas +Adam +Kaden +Carter +Eric +Brayden +Landon +Jason +Cole +Kyle +Alex +Cameron +Julian +Tanner +Hayden +Bryan +Cody +Xavier +Alejandro +Josiah +Blake +Liam +Chase +Carson +Cooper +Caden +Sean +Henry +Jesse +Riley +Sebastian +Jeremiah +Miguel +Brian +Trevor +Alan +Victor +Oscar +Seth +Manuel +Vincent +Alexis +Colton +Grant +Jorge +Tristan +Eduardo +Marcus +Antonio +Ivan +Francisco +Garrett +Patrick +Brady +Parker +Richard +Bryce +Jake +Colin +Devin +Ayden +Jaden +Cesar +Jeremy +Gage +Mario +Preston +Timothy +Levi +Max +Donovan +Giovanni +Maxwell +Jonah +Kaleb +Steven +Edgar +Hector +Nicolas +Javier +Erik +Mark +Dillon +Fernando +Sergio +Andres +Micah +Roman +Brody +Eli +Elias +Quinn +Braden +Cristian +Damian +Peter +Spencer +Omar +Paul +Collin +Derek +Jared +Kai +Leonardo +Edwin +Miles +Ty +Ashton +Marco +Asher +Jaime +Nolan +Oliver +Conner +George +Malachi +Martin +Brayan +Edward +Joel +Peyton +Sawyer +Angelo +Cayden +Fabian +Dakota +Emmanuel +Erick +Josue +Rafael +Ricardo +Wesley +Adan +Devon +Ryder +Stephen +Jeffrey +Scott +Shane +Trenton +Bryson +Ezekiel +Kenneth +Landen +Taylor +Zane +Calvin +Dominick +Hudson +Abraham +Damien +Dante +Drake +Jaxon +Keegan +Rylan +Axel +Gerardo +Jace +Johnathan +Ruben +Travis +Trey +Aden +Kaiden +Lukas +Arturo +Avery +Brendan +Emilio +Pedro +Roberto +Shawn +Theodore +Armando +Bradley +Orlando +Tyson +Dawson +Gael +Grayson +Lance +Mateo +Brock +Camden +Enrique +Gustavo +Marcos +Cade +Clayton +Colby +Gregory +Raul +Saul +Simon +Andre +Dalton +Griffin +Harrison +Julio +Leo +Mitchell +Skyler +Dustin +Kade +Kyler +Tristen +Abel +Braeden +Drew +Kellen +Uriel +Zander +Corey +Israel +Pablo +Quentin +Ramon +Tucker +Xander +Andy +Damon +Emanuel +Ezra +Frank +Ismael +Izaiah +Lane +Lorenzo +Santiago +Trent +Weston +Alec +Chance +Jaiden +Johnny +Keaton +Maddox +Maximus +Salvador +Tate +Alonso +Beau +Bennett +Caiden +Casey +Conor +Emiliano +Jakob +Jayce +Moises +Myles +Raymond +Alonzo +Declan +Jayson +Mathew +Phillip +Rogelio +Rowan +Silas +Titus +Toby +Yahir +Zachariah +Zion +Braxton +Brennan +Charlie +Cory +Darius +Davian +Ernesto +Graham +Jude +Payton +Troy +Corbin +Dane +Davis +Felix +Jasper +Joaquin +Louis +Mauricio +Reece +Ronan +Tobias +Adolfo +Alberto +Brenden +Easton +Elliot +Estevan +Keenan +Misael +Nehemiah +Noel +Randy +Reese +Walker +Zackary +Allen +Bryant +Cash +Dean +Grady +Holden +Issac +Jay +Jerry +Jonathon +Judah +Julius +Kayden +Reid +River +Xzavier +Alfredo +Arthur +Branden +Colten +Donald +Esteban +Ezequiel +Hugo +Jameson +Leonel +Nikolas +Orion +Reed +Ronald +Tommy +Ulises +Wade +Bailey +Cruz +Cyrus +Everett +Finn +Irvin +Jessie +Jimmy +Joe +Jonas +Kameron +Kristian +Morgan +Nickolas +Noe +Phoenix +Reagan +Rodrigo +Solomon +Trace +Vicente +Zechariah +Aldo +Braydon +Braylon +Camron +Curtis +Damion +Danny +Demetrius +Derrick +Dorian +Eddie +Ewan +Finnegan +Gilberto +Isaias +Isiah +Jair +Jamison +Kaeden +Kian +Lawrence +Maximilian +Nathanael +Porter +Russell +Sam +Tristin +Walter +Albert +Bowen +Broderick +Cale +Chandler +Dallas +Darian +Davion +Dennis +Deven +Douglas +Efrain +Elisha +Gideon +Guillermo +Heath +Jaxson +Jett +Joey +Keith +Kellan +Kolby +Kolton +Lincoln +Matthias +Philip +Rodolfo +Sage +Shaun +Sullivan +Talon +Tomas +Van +Zachery +Addison +Adin +Alden +Alfonso +Ari +Braiden +Brett +Brooks +Dangelo +Darren +Elliott +Francis +Geovanni +Harley +Isai +Jadon +Jalen +Kadin +Kieran +Marshall +Nico +Pierce +Quincy +Roger +Roy +Ryland +Seamus +Tatum +Tony +Ali +Amir +Aron +Beckett +Benito +Blaine +Chad +Chris +Craig +Davin +Deangelo +Duncan +Efren +Favian +Fisher +Gerald +Gilbert +Jaeden +Jaydon +Jeffery +Johan +Johnathon +Josef +Landyn +Leon +Luca +Luka +Marc +Markus +Marvin +Maximillian +Micheal +Milo +Octavio +Quinton +Ramiro +Romeo +Rudy +Sonny +Soren +Stefan +Talan +Triston +Uriah +Abram +Achilles +Ahmed +Alessandro +Alvaro +Anderson +Ariel +August +Benedict +Billy +Bo +Brendon +Brennen +Bridger +Bruce +Caeden +Carl +Coby +Conrad +Cristopher +Dayton +Draven +Elian +Enzo +Ernest +Esai +Felipe +Gaige +Gannon +Garret +Giovani +Guadalupe +Isidro +Jairo +Jaylen +Joan +Jon +Jovan +Jovany +Justice +Kristopher +Layton +Moses +Nathanial +Neil +Obed +Osvaldo +Paxton +Randall +Ray +Rex +Rohan +Rolando +Tyrell +Yael +Zackery +Alijah +Allan +Anders +Antony +Brent +Brodie +Byron +Cain +Campbell +Canyon +Cian +Clay +Corben +Dax +Deacon +Devan +Devlin +Dion +Dominik +Donavan +Eliseo +Frankie +Frederick +Giancarlo +Gianni +Gunnar +Gunner +Harper +Harris +Harry +Heriberto +Ignacio +Isreal +Jaron +Jasiah +Javon +Jeramiah +Jovani +Jovanni +Junior +Justus +Karson +Karter +Kasey +Kelton +Kendrick +Kenyon +Keven +Kobe +Kody +Kyan +Lawson +Layne +Leland +Lewis +Lochlan +Lucian +Lucius +Malakai +Malaki +Marlon +Maverick +Mekhi +Omarion +Osiel +Quinten +Ramses +Raphael +Raymundo +Reilly +Rene +Reyli +Rico +Rodney +Roland +Rory +Ryker +Terry +Thatcher +Todd +Torin +Treyton +Turner +Vaughn +Warren +Wilson +Yair +Adonis +Aedan +Agustin +Amari +Aryan +Augustine +Augustus +Barrett +Beck +Blaise +Bode +Bodie +Brad +Bradyn +Brecken +Brenton +Brogan +Cadin +Cael +Cedric +Chaz +Clark +Colter +Deandre +Deon +Derick +Desmond +Devyn +Dillan +Dominique +Emmett +Ever +Everardo +Fletcher +Fredy +Geoffrey +Giovanny +Glenn +Irving +Izak +Jase +Jean +Jericho +Jermaine +Jet +Johann +Jorden +Jovanny +Kale +Kamden +Karl +Kelvin +Kole +Konnor +Kylan +Lee +Luc +Marek +Marques +Matteo +Mikah +Nasir +Nelson +Nikko +Quintin +Remington +Reyes +Reynaldo +Rhett +Ricky +Rocco +Royal +Sebastien +Stanley +Sterling +Tai +Taven +Teagan +Tegan +Ulysses +Valentino +Waylon +Will +Yovani +Jacob +Ethan +Alexander +Joshua +Noah +Logan +Andrew +Michael +Daniel +Benjamin +Samuel +David +Anthony +Christopher +Joseph +Matthew +Tyler +Gabriel +Ryan +Elijah +William +Jose +Angel +Jackson +Isaiah +Jack +James +Aiden +Nicholas +Diego +Caleb +John +Brandon +Evan +Mason +Aidan +Luis +Christian +Jonathan +Dylan +Gavin +Nathan +Isaac +Zachary +Kevin +Owen +Jesus +Connor +Justin +Austin +Luke +Juan +Dominic +Hunter +Aaron +Adrian +Cameron +Landon +Thomas +Bryan +Jordan +Wyatt +Julian +Sebastian +Jayden +Xavier +Adam +Lucas +Cole +Ian +Josiah +Carlos +Robert +Blake +Hayden +Jason +Charles +Liam +Brayden +Miguel +Brian +Carson +Carter +Cooper +Cody +Henry +Tristan +Eric +Sean +Chase +Alex +Kaden +Riley +Alejandro +Caden +Jeremiah +Nathaniel +Antonio +Kyle +Gage +Marcus +Victor +Alan +Levi +Eduardo +Brady +Jesse +Jorge +Trevor +Manuel +Tanner +Colton +Oscar +Grant +Oliver +Kaleb +Max +Parker +Timothy +Brody +Eli +Jaden +Alexis +Cristian +Vincent +Giovanni +Micah +Preston +Fernando +Ivan +Joel +Richard +Garrett +Bryce +Colin +Mark +Omar +Erick +Maxwell +Seth +Damian +Donovan +Jake +Peter +Angelo +Ayden +Devin +Erik +Francisco +Jared +Patrick +Miles +Sergio +Cesar +Steven +Braden +Jonah +Ashton +Ricardo +Devon +Edwin +Keegan +Mario +Damien +Elias +Javier +Nolan +Paul +Andres +Edgar +Roman +Nicolas +Quinn +Asher +Derek +Martin +Dillon +Ezekiel +Hector +Marco +Wesley +Abraham +Brendan +Lincoln +Simon +Dakota +Emilio +Johnathan +Ty +Dominick +Edward +Jace +Jaxon +Kai +Peyton +Sawyer +Grayson +Conner +Israel +Landen +Pedro +Taylor +Zane +Kaiden +Spencer +Axel +Bradley +Gerardo +Kyler +Malachi +Raul +Travis +Avery +Dalton +Emmanuel +Leonardo +Roberto +Xander +Camden +Chance +Dante +Jaime +Lorenzo +Maddox +Raymond +Shawn +Stephen +Adan +Collin +Harrison +Josue +Julio +Kenneth +Rylan +Aden +Jeremy +Cade +Cayden +Emiliano +Jeffrey +Pablo +Trey +George +Ryder +Armando +Brayan +Brock +Bryson +Ruben +Shane +Abel +Andre +Cash +Clayton +Griffin +Joaquin +Nehemiah +Declan +Dustin +Fabian +Hudson +Kayden +Leo +Marcos +Mateo +Saul +Tate +Tyson +Gael +Lukas +Mitchell +Orlando +Porter +Troy +Uriel +Casey +Corbin +Izaiah +Skyler +Alberto +Calvin +Cruz +Orion +Payton +Ramon +Rodrigo +Silas +Weston +Beau +Charlie +Dane +Enrique +Lance +Rowan +Talon +Zachariah +Zion +Drake +Elliot +Hugo +Ismael +Leonel +Mauricio +Reid +Santiago +Tucker +Zander +Braeden +Cyrus +Emanuel +Mathew +Trenton +Alec +Alonso +Brenden +Brennan +Brett +Colby +Holden +Jakob +Jameson +Jaxson +Joe +Kade +Kellen +Louis +Nickolas +Randy +Yahir +Alfredo +Andy +Braxton +Braydon +Conor +Eddie +Gustavo +Jaiden +Rafael +River +Rogelio +Bennett +Corey +Dawson +Drew +Esteban +Everett +Isiah +Jay +Luca +Moises +Oswaldo +Romeo +Scott +Anderson +Bryant +Chris +Davis +Elliott +Ernesto +Felix +Finnegan +Graham +Gregory +Issac +Kody +Lane +Moses +Quentin +Reece +Trent +Arturo +Colten +Damon +Easton +Ezra +Finn +Julius +Phillip +Theodore +Tobias +Toby +Adolfo +Caiden +Curtis +Derrick +Duncan +Emerson +Frank +Gunnar +Jadon +Jessie +Kameron +Keaton +Leland +Maximilian +Milo +Philip +Phoenix +Rocco +Salvador +Tristen +Ulises +Zackary +Alexzander +Anders +Arthur +Brendon +Greyson +Jamison +Johnny +Jonathon +Jovani +Jovany +Jude +Julien +Kale +Keagan +Marshall +Myles +Nikolas +Osvaldo +Reese +Ronan +Teagan +Tristin +Walker +Abram +Amari +Aron +Atticus +Augustus +Aydan +Cael +Cannon +Cohen +Dallas +Danny +Darius +Davin +Dean +Dorian +Ezequiel +Gianni +Gideon +Grady +Guillermo +Irving +Jadyn +Keenan +Larry +Maximus +Morgan +Nelson +Quintin +Ramiro +Reed +Rhys +Ricky +Ronald +Sage +Seamus +Sonny +Sterling +Talan +Titus +Tomas +Tony +Uriah +Adriel +Aedan +Albert +Allen +Armani +Augustine +Aydin +Beckett +Branden +Brooks +Chad +Clark +Conrad +Cory +Dayton +Dennis +Draven +Emmett +Gilbert +Gilberto +Irvin +Isaias +Jairo +Jasper +Jerry +Jovan +Judah +Kadin +Malik +Marc +Matteo +Noel +Odin +Quincy +Quinton +Ryland +Shaun +Steve +Trace +Triston +Vicente +Zachery +Alexandro +Alfonso +Ali +Amir +August +Blaine +Boden +Brennen +Broderick +Coen +Craig +Dale +Darren +Davian +Deacon +Devan +Dominik +Donavan +Douglas +Garret +Jayce +Jaydon +Jeffery +Jett +Jon +Josef +Junior +Karson +Kieran +Markus +Mathias +Ronnie +Russell +Vance +Yair +Addison +Adin +Anton +Barrett +Ben +Billy +Braiden +Braylon +Brodie +Bruno +Cale +Camron +Canyon +Deshawn +Ever +Felipe +Finley +Gaige +Gary +Jalen +Jaylen +Johan +Jonas +Jovanni +Justus +Kane +Keanu +Keith +Leonard +Luka +Marek +Neil +Noe +Pierce +Ridge +Rudy +Sam +Samson +Santana +Skylar +Trystan +Warren +Aditya +Aldo +Alonzo +Alvaro +Ari +Bailey +Bodhi +Braedon +Bridger +Brogan +Caeden +Carl +Coleman +Corban +Cristobal +Cristofer +Damion +Dangelo +Dario +Denzel +Donald +Eder +Efrain +Forrest +Geovanni +Gunner +Harley +Ignacio +Jayson +Jimmy +Josh +Kael +Kelvin +Kristopher +Lawrence +Lee +Lewis +Lyric +Malakai +Malcolm +Marvin +Maurice +Mohamed +Nathanial +Rodney +Roger +Rohan +Ryker +Sebastien +Solomon +Soren +Tegan +Tobin +Tommy +Trevon +Tyree +Ulysses +Wade +Zechariah +Adrien +Aidyn +Alden +Aleksander +Alfred +Alvin +Ariel +Beckham +Bobby +Bode +Bodie +Boston +Bruce +Byron +Callum +Carlitos +Dallin +Davion +Dayne +Desmond +Devyn +Efren +Elier +Fletcher +Frederick +Gerald +Giovanny +Haiden +Harper +Haven +Jair +Jamie +Jaron +Jase +Joan +Joey +Jovanny +Karl +Kegan +Keller +Kelton +Kian +King +Kolby +Kolten +Kristian +Leif +Lucian +Luciano +Maverick +Maximiliano +Melvin +Misael +Nash +Nikolai +Octavio +Paxton +Randall +Raphael +Ronin +Santino +Santos +Stefan +Stephan +Sullivan +Terrance +Terry +Thaddeus +Tiernan +Tryston +Valentino +Van +Vaughn +Walter +Will +Wilson +Xzavier +Alessandro +Andreas +Antony +Asa +Austen +Austyn +Axton +Beck +Bernardo +Blaze +Brad +Brandan +Braulio +Brent +Caedmon +Calder +Callen +Carsten +Case +Cason +Cedric +Chandler +Christofer +Clay +Colter +Crew +Cristopher +Darian +Darryl +Daylan +Demetri +Devlin +Donavon +Duke +Eddy +Eden +Edison +Elisha +Elvin +Ely +Estevan +Ethen +Fisher +Foster +Frankie +German +Gus +Hezekiah +Isac +Isai +Jaeden +Jaren +Jasiah +Jasiel +Javin +Javon +Jayvon +Jeramiah +Justice +Kaeden +Kash +Killian +Kolton +Kye +Landyn +Leon +Magnus +Marshal +Mauro +Maxim +Mekhi +Merik +Omari +Oskar +Osmar +Reginald +Reilly +Rex +Rey +Reyes +Reyli +Rico +Rolando +Roy +Rylee +Talyn +Tatum +Taven +Tavin +Zackery +Jacob +Daniel +Alexander +Ethan +Joshua +Noah +Joseph +Benjamin +Anthony +Logan +Gabriel +Andrew +Michael +William +Matthew +Samuel +Aiden +Ryan +David +Elijah +James +Christopher +Jackson +Dylan +Mason +Gavin +Tyler +Jose +Isaiah +Jack +Zachary +Angel +Nathan +Caleb +Nicholas +Evan +Jonathan +Isaac +John +Owen +Diego +Luis +Jayden +Luke +Christian +Brandon +Connor +Wyatt +Aaron +Austin +Kevin +Adrian +Lucas +Robert +Hunter +Ian +Jordan +Jesus +Dominic +Juan +Josiah +Landon +Aidan +Julian +Xavier +Cameron +Thomas +Charles +Carlos +Liam +Henry +Riley +Nathaniel +Caden +Justin +Cole +Adam +Tristan +Brayden +Hayden +Bryan +Carter +Jason +Alejandro +Jeremiah +Oliver +Carson +Cooper +Sebastian +Cody +Blake +Miguel +Sean +Brian +Chase +Devin +Kyle +Eric +Jaden +Jesse +Ashton +Alex +Colton +Elias +Ayden +Brady +Kaleb +Parker +Alan +Vincent +Brody +Kaden +Trevor +Antonio +Ivan +Jorge +Micah +Giovanni +Levi +Maxwell +Bryce +Tanner +Cesar +Oscar +Marcus +Preston +Seth +Victor +Manuel +Damian +Derek +Eli +Javier +Omar +Asher +Max +Edgar +Garrett +Roman +Timothy +Alexis +Colin +Jake +Richard +Eduardo +Joel +Ricardo +Steven +Edwin +Fernando +Patrick +Jonah +Nolan +Edward +Mario +Damien +Conner +Grant +Nicolas +Angelo +Ryder +Zane +Braden +Erik +Kai +Erick +Gage +Jace +Kayden +Spencer +Donovan +Hudson +Mark +Cristian +Dominick +Hector +Josue +Miles +Stephen +Andres +George +Jeremy +Keegan +Leo +Leonardo +Andre +Emmanuel +Martin +Ruben +Dillon +Rylan +Santiago +Xander +Bradley +Collin +Ezekiel +Francisco +Israel +Jaxon +Marcos +Paul +Peter +Peyton +Quinn +Sawyer +Travis +Abraham +Cade +Fabian +Mateo +Brendan +Cayden +Kenneth +Sergio +Dante +Everett +Gael +Griffin +Johnathan +Lorenzo +Shane +Emilio +Kyler +Rowan +Simon +Trenton +Trey +Avery +Bryson +Chance +Finn +Gustavo +Lincoln +Malachi +Shawn +Silas +Aden +Corbin +Devon +Drew +Maddox +Troy +Calvin +Grayson +Jaiden +Kaiden +Landen +Raymond +Emanuel +Taylor +Uriel +Axel +Brayan +Camden +Clayton +Drake +Ramon +Wesley +Yahir +Alfredo +Jared +Mitchell +Rodrigo +Tucker +Tyson +Brennan +Gerardo +Myles +Theodore +Brenden +Dane +Grady +Jonas +Jude +Quentin +Tobias +Ty +Weston +Abel +Felix +Harrison +Joaquin +Marco +Roberto +Saul +Andy +Cash +Dakota +Emiliano +Johnny +Kade +Rafael +Raul +Arturo +Brodie +Holden +Jameson +Jeffrey +Lane +Lukas +Nehemiah +Orion +Talon +Bennett +Dalton +Dawson +Derrick +Izaiah +Julio +Orlando +Skyler +Alonso +Braxton +Caiden +Easton +Ezra +Greyson +Payton +Pedro +Ronan +Scott +Titus +Tristin +Adan +Amari +Casey +Davian +Ernesto +Jaime +Judah +Justice +Kieran +Morgan +Noe +Reed +Zachariah +Zion +Brock +Enrique +Frank +Gregory +Jaxson +Kaeden +Lance +Lawrence +Porter +Skylar +Tate +Braeden +Brett +Colby +Cruz +Emerson +Javon +Jonathon +Phillip +Ricky +Triston +Anderson +Arthur +Chris +Douglas +Elliot +Finnegan +Hugo +Isiah +Jayce +Johan +Leland +Pablo +Paxton +Reese +Reid +Romeo +Zander +Alfonso +Ben +Cohen +Colten +Corey +Cyrus +Darren +Davin +Dean +Dominik +Dustin +Emmett +Estevan +Gunnar +Ismael +Jasper +Jett +Louis +Luca +Marek +Mauricio +Maximus +Teagan +Zayden +Adolfo +Alijah +Armando +Beckett +Charlie +Davis +Declan +Esteban +Graham +Guillermo +Issac +Jaydon +Keaton +Moises +Noel +Ramiro +Reece +River +Trent +Zackary +Adonis +Alvaro +Atticus +Beau +Curtis +Dallas +Elliott +Jadon +Jakob +Joey +Kristian +Kristopher +Landyn +Layne +Pierce +Quincy +Ronald +Shaun +Sullivan +Tomas +Vicente +Walker +Albert +Alec +Ali +Ari +Aron +Boden +Braydon +Bruce +Cory +Darius +Deacon +Dennis +Donald +Ezequiel +Finley +Irvin +Jay +Jimmy +Justus +Karson +Keenan +Kingston +Kolby +Malakai +Marshall +Mathew +Maximilian +Milo +Moses +Philip +Russell +Salvador +Sam +Soren +Tristen +Abdiel +Aldo +Allen +Alonzo +Asa +Barrett +Bo +Brooks +Bryant +Colt +Cristopher +Davion +Desmond +Ewan +Fletcher +Gilberto +Harry +Isaias +Jayson +Jerimiah +Joe +Jovani +Julius +Kameron +Larry +Leonel +Lucian +Luciano +Lyric +Marvin +Melvin +Micheal +Nathanael +Quinton +Rodolfo +Royce +Ryker +Sage +Ulises +Alberto +Andreas +Archer +Braylon +Brycen +Carl +Clark +Damion +Darian +Devan +Garret +Gunner +Harper +Ignacio +Jase +Jasiah +Jerry +Jessie +Johnathon +Joziah +Junior +Kasen +Keith +Kellen +Kody +Landin +Misael +Osvaldo +Remington +Ronin +Ryland +Santino +Stone +Tatum +Tony +Torin +Trace +Valentin +Vaughn +Walter +Abram +Adriel +Aidyn +Alden +Armani +Bailey +Bodhi +Bodie +Bridger +Camron +Chad +Clinton +Damon +Danny +Dayton +Dorian +Enzo +Felipe +Franklin +Gaige +Gary +Giovanny +Jovanny +Julien +Kadin +Kane +Kellan +Korbin +Kylan +Markus +Matias +Maurice +Maverick +Nico +Nikolas +Phoenix +Rocco +Rogelio +Ronnie +Roy +Rylee +Santana +Seamus +Truman +Uriah +Willem +Zachery +Zavier +Aedan +Antony +Augustus +Aydan +Brennon +Brice +Bronson +Cael +Cale +Callum +Clay +Dallin +Dax +Devlin +Draven +Duncan +Fidel +Gavyn +Gideon +Giovani +Haven +Isai +Jacoby +Jamison +Jordy +Jovan +Keller +Kelton +Kenyon +Keven +Khalil +Kolton +Luka +Malaki +Malcolm +Malik +Marc +Nelson +Quinlan +Quintin +Randy +Reagan +Rhys +Sterling +Talen +Tristyn +Tyree +Warren +Wayne +Xzavier +Yurem +Zackery +Aaden +Alek +Alexandro +Alexzander +Braiden +Branden +Brogan +Cannon +Canyon +Channing +Christofer +Conor +Conrad +Cormac +Cullen +Dandre +Dillan +Dylon +Elisha +Francis +Gannon +Guy +Ibrahim +Jaidyn +Jax +Jeramiah +Jericho +Joan +Jovanni +Jovon +Kale +Kevyn +Kian +Killian +Koa +Kole +Lawson +Lee +Leon +Leonidas +London +Marlon +Marques +Matthias +Mattias +Maximiliano +Messiah +Mike +Nahum +Niko +Palmer +Raiden +Ray +Roger +Rory +Rowen +Ryley +Santos +Simeon +Solomon +Stefan +Steve +Talan +Thatcher +Treyvon +Valentino +Zavion +Abdullahi +Ace +Adison +Alfred +Alvin +Amare +Ansel +Ariel +Benito +Benny +Billy +Blaise +Blaze +Bode +Brad +Bradyn +Braedyn +Broden +Bruno +Byron +Caeden +Carlo +Carmine +Cedric +Chaz +Cian +Coleman +Corban +Davon +Deangelo +Demetrius +Deon +Derick +Destin +Deven +Devyn +Eamon +Eddy +Edison +Efrain +Eleazar +Eliot +Ellis +Erich +Esai +Eugene +Ever +Fabricio +Finnian +Frankie +Geoffrey +Giancarlo +Gianni +Gilbert +Guadalupe +Haiden +Hank +Harley +Harold +Hogan +Hyrum +Isacc +Jacen +Javion +Jaylen +Jaziel +Jerome +Jon +Jordyn +Josef +Josias +Kaedyn +Kasey +Kenny +Kent +Kobe +Layton +Lennon +Lionel +Lucien +Maddux +Marcel +Marley +Mathias +Maximo +Merrick +Miguelangel +Muhammad +Nasir +Nathanial +Nickolas +Nikko +Odin +Randall +Rene +Rigoberto +Rohan +Roland +Rolando +Sabastian +Samson +Sidney +Slade +Sylas +Tai +Teagen +Thaddeus +Tobin +Tommy +Toren +Tripp +Trystan +Tyce +Tyrone +Tysen +Ulices +Waylon +Yandel +Zack +Zakary +Zayne +Zechariah +Alexander +Jacob +Ethan +William +Noah +Gabriel +Joshua +Daniel +Anthony +Elijah +James +Logan +Michael +Andrew +Benjamin +Matthew +Samuel +Joseph +Aiden +David +Jackson +Jack +Ryan +Isaac +Christopher +John +Gavin +Luke +Tyler +Mason +Angel +Jayden +Jonathan +Dylan +Jose +Nathan +Brandon +Caleb +Isaiah +Liam +Nicholas +Josiah +Christian +Evan +Zachary +Adrian +Connor +Luis +Kevin +Brayden +Landon +Aaron +Lucas +Julian +Owen +Brody +Austin +Diego +Jesus +Carter +Cooper +Wyatt +Aidan +Carlos +Henry +Ian +Hunter +Thomas +Tristan +Blake +Juan +Dominic +Robert +Charles +Jordan +Justin +Xavier +Colton +Hayden +Adam +Chase +Cole +Sebastian +Caden +Jason +Cameron +Carson +Levi +Alejandro +Riley +Jeremiah +Oliver +Nathaniel +Sean +Cody +Jesse +Alex +Ayden +Brady +Elias +Eli +Oscar +Alan +Miguel +Kaden +Micah +Bryan +Eric +Jace +Antonio +Max +Victor +Asher +Marcus +Damian +Ashton +Jonah +Parker +Miles +Colin +Kyle +Eduardo +Cristian +Sawyer +Alexis +Bryce +Ivan +Jeremy +Maxwell +Tanner +Fernando +Francisco +Grant +Patrick +Joel +Jorge +Nolan +Preston +Seth +Ezekiel +Jake +Steven +Trevor +Brian +Devin +Gage +Maddox +Vincent +Cesar +Donovan +Giovanni +Omar +Spencer +Damien +Edwin +Dillon +Erick +Jaden +Leonardo +Manuel +Andres +Garrett +Hudson +Malachi +Quinn +Timothy +Edgar +Edward +Erik +Jaxon +Keegan +Ricardo +Ryder +Derek +Javier +Jude +Nicolas +Richard +Cayden +Drake +Finn +Jaiden +Kai +Kaleb +Roman +Angelo +George +Grayson +Kaiden +Abraham +Emmanuel +Hector +Lincoln +Mario +Mark +Santiago +Ty +Camden +Dominick +Landen +Axel +Leo +Peyton +Rylan +Simon +Trenton +Troy +Calvin +Collin +Corbin +Marco +Conner +Israel +Sergio +Taylor +Travis +Dane +Jared +Paul +Armando +Clayton +Emiliano +Fabian +Johnathan +Tucker +Wesley +Bryson +Cade +Cruz +Harrison +Josue +Rowan +Shane +Silas +Zane +Kenneth +Ruben +Trey +Brendan +Ezra +Graham +Griffin +Jakob +Marcos +Mateo +Pedro +Tristen +Avery +Braden +Chance +Emanuel +Lukas +Peter +Xander +Brock +Cash +Dakota +Enrique +Hugo +Kayden +Martin +Milo +Abel +Adan +Andy +Colby +Everett +Jameson +Tyson +Zander +Andre +Bradley +Brayan +Elliot +Emilio +Gael +Gerardo +Jeffrey +Roberto +Theodore +Weston +Devon +Jaime +Kyler +Lane +Rodrigo +Skyler +Tate +Yahir +Zachariah +Dante +Davis +Drew +Easton +Grady +Julio +Keagan +Luca +Maximus +Orion +Phillip +Saul +Alec +Brennan +Caiden +Dalton +Emmett +Holden +Porter +Reid +Shawn +Arturo +Beau +Beckett +Braxton +Dawson +Declan +Greyson +Jacoby +Johnny +Pablo +Paxton +Raymond +Scott +Aden +Bennett +Braeden +Brodie +Charlie +Colten +Izaiah +Jonas +Justice +Lance +Lorenzo +Mitchell +Myles +Reece +Romeo +Uriel +Dean +Dustin +Kade +Keaton +Kieran +Kingston +Mauricio +Nehemiah +Randy +Raul +Tristin +Allen +Brenden +Brett +Cyrus +Darian +Derrick +Desmond +Esteban +Gunnar +Jasper +Jaxson +Kellen +Kobe +Moises +Quentin +River +Ryker +Soren +Alonzo +Anderson +Cristopher +Dominik +Elliott +Frank +Joaquin +Jonathon +Kane +Marshall +Reed +Ricky +Ronan +Stephen +Uriah +Xzavier +Bryant +Darren +Gregory +Ismael +Jamison +Jayson +Joe +Mathew +Rocco +Sam +Walker +Alexzander +Brycen +Cael +Carl +Conor +Corey +Eddie +Jay +Leland +Leonel +Morgan +Phoenix +Rafael +Ronin +Solomon +Tobias +Toby +Trent +Zayden +Atticus +August +Braydon +Casey +Cohen +Cory +Curtis +Damon +Danny +Davian +Felix +Isiah +Maverick +Osvaldo +Ramon +Ryland +Talon +Titus +Trace +Will +Alberto +Alijah +Barrett +Davion +Dayton +Dennis +Donald +Dorian +Emerson +Gustavo +Isaias +Jayce +Johan +Judah +Keith +Kian +Kolton +Marek +Nathanael +Nickolas +Nico +Nikolas +Quincy +Salvador +Tony +Vance +Wade +Zackary +Adriel +Alfonso +Alfredo +Braylon +Chris +Darius +Ernesto +Finnegan +Gideon +Jerry +Julius +Larry +Louis +Mathias +Maurice +Orlando +Quinton +Seamus +Shaun +Sullivan +Tomas +Triston +Aaden +Allan +Amari +Armani +Blaine +Davin +Deangelo +Douglas +Eden +Ezequiel +Finley +Guillermo +Irvin +Issac +Jadon +Jaydon +Jaylen +Jon +Jovani +Kameron +Keenan +Landyn +Lennon +Maximilian +Misael +Mohamed +Moses +Octavio +Rogelio +Sage +Teagan +Valentino +Zion +Agustin +Aidyn +Anton +Archer +Ari +Aron +Braiden +Bruce +Cale +Conrad +Craig +Deandre +Ernest +Felipe +Frankie +Gary +Hezekiah +Humberto +Jeramiah +Jett +Joey +Karson +Kody +Malakai +Marc +Marcello +Niko +Pierce +Quintin +Reese +Rex +Rodney +Ronald +Russell +Skylar +Tommy +Ulises +Van +Abram +Alvaro +Arthur +Aydin +Azael +Bridger +Broderick +Callum +Colt +Dallas +Dangelo +Devyn +Efrain +Eliseo +Enzo +Freddy +Giovani +Giovanny +Isaak +Isai +Javon +Jerome +Jimmy +Kaeden +Kale +Karter +Keven +Koen +Lawrence +Layton +Leon +Leonidas +Luciano +Markus +Marques +Matteo +Matthias +Memphis +Merrick +Nathanial +Nelson +Noel +Raiden +Rhett +Rhys +Rodolfo +Tatum +Trevin +Vaughn +Vicente +Aldo +Alessandro +Ali +Alvin +Amir +Beckham +Bodhi +Breckin +Bruno +Camron +Clay +Damion +Deacon +Denzel +Dillan +Duncan +Elian +Eugene +Finnigan +Garret +Gavyn +Gilbert +Guadalupe +Heath +Heber +Hugh +Jerimiah +Johnathon +Joziah +Kadin +Kael +Kelvin +Kolten +Lee +London +Luka +Maximiliano +Maximillian +Mohammed +Noe +Odin +Philip +Quinten +Ramiro +Rey +Rohan +Roy +Sebastien +Teague +Thaddeus +Trevon +Urijah +Warren +Wilson +Zack +Adrien +Aedan +Alden +Alonso +Antoine +Ariel +Asa +Azariah +Benito +Bobby +Bode +Boden +Bodie +Boston +Bowen +Brecken +Brooks +Caeden +Cormac +Dale +Deagan +Dion +Donavon +Edison +Estevan +Franklin +Gaige +Geovanni +Gilberto +Haven +Ignacio +Izaak +Jair +Jairo +Jarrett +Jase +Jasiah +Jax +Jericho +Jessie +Jonatan +Jovanni +Jovanny +Jovany +Kamari +Kolby +Kole +Kristopher +Layne +Leroy +Luc +Makai +Marley +Marlon +Matias +Maxim +Maximo +Nestor +Orin +Raphael +Rico +Ronnie +Rory +Royce +Samson +Sidney +Sterling +Stone +Terrance +Tevin +Tobin +Torin +Valentin +Waylon +Zayne +Adolfo +Ahmed +Alek +Augustus +Austyn +Aydan +Azriel +Ben +Branden +Brennon +Brogan +Caedmon +Caelan +Cannon +Casen +Cason +Cassius +Cedric +Cian +Coleton +Colter +Corbyn +Crew +Dallin +Damarcus +Darey +Darien +Darrell +Dashawn +Dax +Demetrius +Devlin +Dexter +Draven +Duane +Duke +Eamon +Eben +Eliot +Esai +Fidel +Fisher +Francis +Fred +Gauge +Gaven +Giancarlo +Gianni +Giovonni +Gonzalo +Harley +Harper +Henrik +Hollis +Howard +Hyrum +Ilijah +Irving +Jadyn +Jaidyn +Jamari +Jeshua +Joan +Jovan +Julien +Kamden +Kannon +Karsten +Kash +Kayleb +Kelan +Kellan +Keller +Kenny +Kevyn +King +Koby +Lachlan +Leandro +Leonard +Lewis +Lyric +Mac +Marcel +Marcelino +Mekhi +Micheal +Mike +Nathen +Nikolai +Osman +Palmer +Payton +Randall +Rayden +Reilly +Remington +Reyes +Reyli +Robin +Rolando +Rudy +Rylee +Ryne +Santana +Sonny +Steve +Syrus +Talan +Tegan +Tiernan +Todd +Trenten +Turner +Tyce +Vincente +Vladimir +Winston +Yael +Yair +Yandel +Zackery +Zade +Zechariah +Alexander +Jacob +Noah +William +Benjamin +Ethan +Logan +Daniel +David +Joshua +Jackson +Anthony +Aiden +Michael +Jack +James +Isaac +Christopher +Elijah +Joseph +Samuel +Andrew +Matthew +Ryan +Liam +Gabriel +Jayden +Mason +Tyler +Caleb +Angel +Evan +Wyatt +Gavin +Nathan +Landon +Owen +John +Dylan +Brandon +Cooper +Juan +Luke +Connor +Christian +Jonathan +Nicholas +Adrian +Isaiah +Jose +Lucas +Julian +Zachary +Josiah +Jordan +Henry +Luis +Diego +Chase +Brayden +Carter +Austin +Jesus +Charles +Dominic +Tristan +Levi +Xavier +Aaron +Robert +Carlos +Hunter +Kevin +Cole +Ian +Jeremiah +Oliver +Blake +Colton +Justin +Eli +Aidan +Jason +Cameron +Thomas +Sebastian +Brody +Asher +Riley +Max +Cody +Hayden +Brian +Ryder +Brady +Kaden +Nathaniel +Adam +Miles +Carson +Maxwell +Alex +Micah +Oscar +Elias +Parker +Jaxon +Ayden +Caden +Santiago +Eric +Miguel +Sean +Bryce +Ezekiel +Alan +Ashton +Damian +Antonio +Ivan +Bryan +Gage +Jesse +Jonah +Alejandro +Tanner +Eduardo +Manuel +Giovanni +Kyle +Preston +Wesley +Grant +Hudson +Jake +Jude +Nolan +Garrett +Kaleb +Marcus +Victor +Damien +Jaden +Roman +Steven +Trevor +Vincent +Jace +Kai +Abraham +Hector +Joel +Ricardo +Sawyer +Devin +Rylan +Colin +Alexis +Erik +Francisco +Spencer +Andres +George +Kaiden +Patrick +Calvin +Conner +Emiliano +Peyton +Richard +Silas +Chance +Emmanuel +Fernando +Seth +Grayson +Jaxson +Lincoln +Timothy +Dillon +Erick +Finn +Adan +Collin +Derek +Omar +Zane +Cash +Cesar +Edgar +Israel +Kenneth +Mario +Mark +Peter +Braden +Donovan +Edward +Javier +Maddox +Sergio +Axel +Bryson +Devon +Everett +Kayden +Leonardo +Jeremy +Malachi +Quinn +Rowan +Brendan +Dominick +Keegan +Paul +Ty +Xander +Fabian +Leo +Travis +Cayden +Drake +Elliot +Ezra +Holden +Jorge +Mateo +Edwin +Gerardo +Griffin +Kyler +Simon +Theodore +Aden +Avery +Dante +Landen +Maximus +Nicolas +Skyler +Weston +Zander +Cade +Camden +Charlie +Cristian +Emilio +Graham +Jameson +Lukas +Angelo +Corbin +Joaquin +Shane +Stephen +Tate +Caiden +Emmett +Quentin +Shawn +Trey +Felix +Josue +Marco +Martin +Nehemiah +Ruben +Braxton +Braylon +Dawson +Declan +Gael +Jasper +Phoenix +Taylor +Troy +Tucker +Brock +Dakota +Trenton +Tristen +Aaden +Clayton +Easton +Harrison +Jaiden +Jeffrey +Jonas +Judah +Keaton +Paxton +Solomon +Tyson +Abel +Bennett +Brayan +Ismael +Lorenzo +Raymond +Romeo +Ronan +Tobias +Trent +Zachariah +Andre +Andy +Armando +Beckett +Izaiah +Jared +Jayce +Johnathan +Orlando +Aldo +Alonso +Arturo +Bradley +Casey +Chris +Elliott +Greyson +Jett +Leland +Mauricio +Porter +Rodrigo +Anderson +Beau +Braeden +Brennan +Colby +Cruz +Dalton +Dustin +Emanuel +Enrique +Esteban +Gunner +Jakob +Julio +Kellen +Ryland +Uriah +Uriel +Yahir +Alijah +Dane +Grady +Isaias +Jax +Johnny +Julius +Luca +Marcos +Milo +Orion +River +Walker +Dean +Desmond +Jonathon +Landyn +Lane +Misael +Pedro +Rafael +Rocco +Ryker +Soren +Adriel +Alec +Braydon +Colt +Conor +Dexter +Gustavo +Issac +Jacoby +Jaylen +Kian +Kingston +Leonel +Luciano +Marek +Morgan +Myles +Ramon +Saul +Titus +Tony +Xzavier +Brenden +Colten +Guillermo +Justice +Kade +Kale +Kieran +Randy +Raul +Roberto +Yandel +Zackary +Archer +Atticus +Bentley +Bridger +Brooks +Cale +Cohen +Davin +Drew +Finnegan +Gianni +Irvin +Jadon +Jimmy +Leon +Mitchell +Nash +Reed +Salvador +Talon +Teagan +Zion +Alfonso +Ali +Alonzo +Arthur +Barrett +Brennen +Colter +Corey +Cyrus +Emerson +Finley +Frank +Giovani +Gunnar +Harper +Jovany +Kameron +Karson +Keagan +Leonidas +Louis +Makai +Reese +Reid +Ronin +Sage +Scott +Shaun +Ulises +Van +Amir +Ari +Boden +Boston +Byron +Darey +Donald +Ellis +Giancarlo +Jaime +Kane +Kody +Lance +Layne +Markus +Mohamed +Nickolas +Pablo +Phillip +Rhys +Ronald +Santana +Tobin +Tomas +Tristin +Walter +Wilson +Ace +Adrien +Alberto +Alfredo +Allen +Aron +August +Augustus +Bodhi +Brecken +Brett +Brodie +Bryant +Brycen +Conrad +Damion +Danny +Darren +Derrick +Ernesto +Harley +Isiah +Jessie +Jovani +Keenan +Keith +Kellan +Marshall +Maximiliano +Micheal +Nathanael +Nico +Noe +Payton +Quinten +Reece +Sylas +Toby +Trystan +Warren +Zayden +Augustine +Azariah +Beck +Blaine +Cristopher +Dangelo +Darius +Davion +Davis +Deacon +Elian +Gavyn +Gideon +Gregory +Izaac +Justus +Kasen +Kash +Knox +Lucian +Madden +Mathew +Matteo +Maximilian +Memphis +Odin +Raiden +Ricky +Roy +Royce +Santino +Santos +Sullivan +Trace +Wade +Zaiden +Aedan +Ahmed +Alvaro +Braylen +Brogan +Chace +Cian +Curtis +Davian +Dennis +Dominik +Draven +Fletcher +Frederick +Fynn +Giovanny +Hugo +Isaak +Izayah +Jair +Jaydin +Johnathon +Kason +Killian +King +Kolton +Lawrence +Malakai +Malik +Marlon +Mathias +Matthias +Nelson +Nikolas +Philip +Ramiro +Raphael +Rogelio +Russell +Skylar +Tavin +Tegan +Urijah +Yair +Abdiel +Agustin +Aidyn +Braiden +Cael +Chandler +Damon +Darian +Darien +Daxton +Dayton +Dorian +Duncan +Eamon +Eliot +Ely +Enzo +Ephraim +Ezequiel +Fisher +Gordon +Harlan +Haven +Jayson +Jericho +Joe +Joey +Josh +Jovan +Joziah +Kaeden +Kamden +Kenyon +Korbin +Marvin +Maverick +Maxim +Nikolai +Pierce +Quincy +Rayan +Remy +Rigoberto +Rodolfo +Simeon +Stone +Taj +Tayden +Terry +Trevon +Triston +Truman +Ulysses +Valentin +Vaughn +Waylon +Yael +Zavier +Abram +Adair +Addison +Alden +Alexzander +Ariel +Aydan +Azael +Bernardo +Blaise +Bowen +Braedon +Cason +Cassius +Clark +Cullen +Dallas +Darwin +Devan +Deven +Devyn +Eddie +Estevan +Francis +Gauge +Heath +Ignacio +Isac +Izaak +Izak +Jagger +Jase +Jaxen +Jay +Jedidiah +Jeramiah +Johan +Jordyn +Josias +Jovanni +Karter +Kayson +Kenny +Koen +Kristian +Layton +Lucca +Lucius +Lyric +Maddux +Maksim +Malaki +Malcolm +Marcelo +Marley +Moises +Nathen +Noel +Rashad +Reilly +Rene +Rex +Ridge +Roger +Roland +Rory +Rylee +Ryley +Sam +Samson +Sterling +Terrance +Thaddeus +Tripp +Vicente +Westin +Yurem +Zachery +Zain +Abdirahman +Adonis +Albert +Aleksander +Alexandro +Alias +Allan +Amari +Anders +Andreas +Armani +Asa +Aydin +Bear +Ben +Bo +Bobby +Bradyn +Branson +Brendon +Broderick +Bronson +Bruce +Camron +Carl +Carsen +Caysen +Chad +Clyde +Cristofer +Cruzito +Cutler +Dario +Dashel +Dax +Demitri +Derick +Devlin +Devonte +Dilan +Dimitri +Emery +Emmet +Emory +Ever +Finnley +Frankie +Franklin +German +Guy +Hayes +Haziel +Henrik +Isai +Jadyn +Jairo +Jasiah +Javon +Jerry +Joan +Johann +Jorden +Junior +Kadyn +Kannon +Kelton +Khalil +Kolten +Kyan +Lachlan +Larry +Lars +Leonard +London +Louie +Marcello +Masen +Maxton +Moses +Neil +Orrin +Osman +Otis +Prince +Quintin +Quinton +Ralph +Ray +Rey +Reynaldo +Rishi +Royal +Shia +Sidney +Sonny +Sutton +Tai +Taven +Torin +Tre +Tristyn +Uziel +Valentino +Vance +Winston +Zackery +Zakaria +Zechariah +Zephaniah +Jacob +Alexander +Noah +Daniel +William +Liam +Elijah +Logan +Gabriel +Anthony +Michael +Samuel +Ethan +Joshua +Andrew +Benjamin +Mason +Aiden +Joseph +James +Isaac +David +Jackson +Matthew +Evan +Dylan +Jayden +Owen +Christopher +Landon +Caleb +Ryan +Tyler +Jack +Jonathan +Wyatt +Angel +Eli +Gavin +Luke +Connor +Henry +John +Nathan +Josiah +Isaiah +Christian +Julian +Hunter +Jose +Cooper +Lucas +Oliver +Levi +Adrian +Brayden +Dominic +Zachary +Ian +Nicholas +Thomas +Aaron +Austin +Brandon +Luis +Diego +Kevin +Carter +Xavier +Charles +Tristan +Jordan +Blake +Colton +Robert +Sebastian +Jeremiah +Jesus +Chase +Cameron +Ryder +Brody +Carlos +Elias +Jaxon +Carson +Juan +Miles +Justin +Max +Cole +Adam +Hayden +Vincent +Nathaniel +Micah +Alejandro +Ayden +Grayson +Parker +Asher +Jason +Antonio +Colin +Damian +Ezekiel +Brady +Jorge +Preston +Victor +Eric +Miguel +Riley +Giovanni +Alan +Alex +Nolan +Axel +Hudson +Sean +Aidan +Caden +Kaden +Marcus +Gage +Jace +Cody +Jaden +Jonah +Santiago +Eduardo +Emiliano +Ivan +Patrick +Kaleb +Bryan +Grant +Quinn +Rylan +Jesse +Wesley +Jake +Kyle +Bryce +Donovan +Joel +Oscar +Tanner +Maxwell +Timothy +Ashton +Devin +Leo +Lincoln +Angelo +Easton +Jeremy +Roman +Sawyer +Seth +Camden +Drake +Kai +Richard +Avery +Garrett +Jude +Kayden +Leonardo +Trevor +Conner +Zane +Brian +Charlie +Damien +Finn +Steven +Alexis +Cash +Cayden +Cesar +Cristian +Kaiden +Peter +Peyton +Bentley +Calvin +Edward +Emilio +Jaxson +Josue +Abraham +Bryson +Jaiden +Javier +Lukas +Xander +Andres +Braxton +Cruz +Dante +Dominick +Everett +Fernando +Francisco +Paul +Ryker +Silas +Spencer +Weston +Emmanuel +George +Mark +Ricardo +Chance +Maddox +Nicolas +Travis +Beckett +Brendan +Collin +Edgar +Erick +Erik +Keegan +Malachi +Rowan +Simon +Johnathan +Maximus +Tucker +Zander +Derek +Emmett +Manuel +Omar +Abel +Andre +Declan +Edwin +Griffin +Harrison +Jayce +Joaquin +Ezra +Israel +Judah +Sergio +Skyler +Troy +Clayton +Dean +Jakob +Jameson +Marco +Milo +Dillon +Kenneth +Stephen +Trenton +Greyson +Hector +Jasper +Reid +Roberto +Theodore +Aden +Bradley +Cade +Corbin +Leland +Lorenzo +Marcos +Martin +Mateo +Orion +Yahir +Armando +Brennan +Emerson +Holden +Landen +Mario +Raymond +Shane +Zayden +Beau +Braden +Drew +Fabian +Jaime +Kyler +Phoenix +Porter +Romeo +Tyson +Adan +Brooks +Graham +Izaiah +Jared +Jax +Jeffrey +Kellen +Kolton +Raul +Tristen +Armani +Colby +Felix +Grady +Quentin +Salvador +Uriah +Braylon +Dexter +Elliot +Enrique +Jett +Kellan +Kingston +River +Titus +Trey +Ty +Adriel +Atticus +Bennett +Bode +Brenden +Caiden +Casey +Elliott +Esteban +Marshall +Myles +Ruben +Scott +Talon +Trent +Ulises +Devon +Gerardo +Kade +Keaton +Luca +Paxton +Rafael +Saul +Soren +Andy +August +Braiden +Brock +Dane +Nehemiah +Phillip +Reece +Shawn +Solomon +Aldo +Alec +Brayan +Dakota +Dawson +Derrick +Desmond +Finnegan +Gregory +Kale +Keith +Malakai +Ramon +Ronan +Ryland +Zion +Anderson +Ari +Colt +Dalton +Darius +Dominik +Enzo +Johnny +Lane +Mathew +Orlando +Pedro +Rocco +Tate +Toby +Alfredo +Barrett +Braeden +Colten +Conor +Davian +Donald +Dorian +Emanuel +Finley +Gael +Gideon +Ismael +Julio +Korbin +Lance +Landyn +Luciano +Maximilian +Mitchell +Quinton +Randy +Reed +Rhys +Taylor +Uriel +Alvaro +Amir +Danny +Davion +Ezequiel +Frank +Gustavo +Hugo +Issac +Jaylen +Junior +Justice +Karson +Keenan +Layne +Morgan +Odin +Pablo +Tatum +Tobias +Urijah +Walker +Walter +Xzavier +Zachariah +Ali +Brecken +Bridger +Brodie +Callen +Damon +Demetrius +Douglas +Duncan +Dustin +Jayson +Joey +Kash +Kian +Kieran +Kobe +Lawrence +Leonel +Louis +Maverick +Moses +Nickolas +Nico +Payton +Reese +Sterling +Tristin +Yandel +Anders +Arturo +Augustine +Aydan +Braydon +Bruno +Bryant +Cale +Cyrus +Dallas +Darren +Draven +Ernesto +Felipe +Fisher +Giovani +Gunner +Iker +Jamison +Jay +Jaydon +Jessie +Keagan +King +Knox +Leon +Maximiliano +Nikolas +Pierce +Quintin +Ronin +Sylas +Tomas +Tommy +Valentino +Aaden +Ahmed +Alijah +Alonzo +Amari +Arthur +Ben +Bodie +Brogan +Cason +Channing +Conrad +Craig +Crosby +Derick +Ever +Gaige +Gilbert +Jair +Jalen +Jimmy +Jon +Julius +Kaeden +Kole +Kyan +Lucian +Niko +Quinten +Rodney +Rodrigo +Rory +Seamus +Sullivan +Teagan +Trace +Tyce +Ulysses +Valentin +Van +Vaughn +Warren +Yael +Zachery +Zaiden +Zechariah +Adler +Albert +Alberto +Alonso +Ariel +Asa +Augustus +Blaise +Boden +Bodhi +Byron +Camron +Chris +Cohen +Corey +Cory +Davis +Deacon +Frederick +Gianni +Guillermo +Gunnar +Harley +Jadon +Jairo +Jamari +Jase +Johan +Jonathon +Jovanni +Joziah +Kael +Kamden +Kameron +Karter +Kasen +Koen +Leif +Lyric +Mauricio +Misael +Philip +Rogelio +Said +Sonny +Tavin +Tony +Tripp +Vicente +Waylon +Will +Xavi +Zeke +Abdiel +Ace +Alfonso +Allan +Allen +Andreas +Archer +Aven +Azariah +Blaine +Branden +Brett +Callan +Colter +Cristopher +Cullen +Dayton +Elian +Eliot +Fletcher +Franco +Garrison +Gauge +Gilberto +Gino +Giovanny +Hugh +Humberto +Isaias +Isiah +Jeramiah +Jerome +Jerry +Joe +Johnathon +Jordyn +Kason +Kody +Kolby +Kristian +Lennox +Matteo +Maximillian +Nash +Noe +Octavio +Raphael +Rayan +Ronald +Russell +Rylee +Sage +Shaun +Skylar +Slade +Wade +Zackary +Abner +Abram +Adrien +Alden +Arlo +Aryan +Austen +Aydin +Beckham +Boston +Broderick +Bronson +Bruce +Brycen +Canon +Carsten +Casen +Chace +Cian +Clark +Cristobal +Cy +Dario +Dax +Deangelo +Devlin +Duke +Edison +Estevan +Finnley +Forrest +Franklin +Garret +Gerald +Harvey +Izayah +Jacoby +Jasiel +Javon +Jedidiah +Johann +Jonas +Julien +Kane +Kayson +Keanu +Kendrick +Khalil +Kristopher +Lachlan +Lawson +Layton +Linden +London +Malaki +Marcelo +Merrick +Mohamed +Mohammed +Moises +Nelson +Nikolai +Nixon +Osiel +Osman +Osvaldo +Prince +Quincy +Raiden +Reagan +Remington +Rolando +Rowen +Royal +Samson +Santana +Stefan +Stone +Thatcher +Tobin +Torin +Tristyn +Trystan +Vincenzo +Virgil +Yair +Zavier +Zayne +Zephaniah +Abdullah +Addison +Aedan +Ajay +Alessandro +Ansel +Aron +Asael +Atom +Baylor +Braddock +Braulio +Braylen +Breck +Brice +Brysen +Burke +Cannon +Clay +Cormac +Cristofer +Curtis +Dangelo +Darian +Deegan +Deklan +Demetri +Dennis +Destin +Dezmond +Domenic +Donavan +Dwayne +Eddie +Eden +Efrain +Ellis +Emmitt +Ernest +Gary +Gavyn +German +Gray +Hamza +Irving +Isaak +Ishaan +Jael +Jakobe +Jaydin +Jaykob +Jaziel +Jensen +Jericho +Josh +Jovani +Jullian +Kain +Kaison +Kallen +Kamron +Kegan +Keller +Khalid +Killian +Kingsley +Kolten +Kye +Kylan +Larry +Lionel +Lucius +Luka +Malcolm +Marek +Markus +Marlon +Marvin +Mekhi +Memphis +Messiah +Noel +Oziel +Paden +Ray +Remy +Rex +Rey +Rio +Rocky +Roy +Royce +Sam +Santino +Sheldon +Treyvon +Truman +Westin +Wiley +Zackery +Zaden +Zakaria +Liam +Mason +Noah +Elijah +Alexander +Jacob +William +Daniel +Logan +Benjamin +Jackson +Ethan +Aiden +Samuel +Joseph +Michael +Gabriel +James +Andrew +Joshua +Owen +Anthony +David +Wyatt +Jack +Jayden +Matthew +Isaac +Christopher +Landon +Caleb +Jonathan +Evan +John +Gavin +Levi +Angel +Luke +Lucas +Oliver +Ryan +Tyler +Austin +Christian +Eli +Dominic +Dylan +Henry +Carter +Blake +Julian +Jose +Charles +Isaiah +Brayden +Nathan +Aaron +Connor +Cooper +Adrian +Sebastian +Jordan +Cameron +Nicholas +Josiah +Colton +Zachary +Hunter +Brandon +Asher +Thomas +Xavier +Jaxon +Jeremiah +Robert +Brody +Ian +Kevin +Miles +Ryder +Tristan +Chase +Nathaniel +Adam +Elias +Jesus +Parker +Carlos +Luis +Jason +Hudson +Juan +Justin +Maxwell +Nolan +Ayden +Grayson +Vincent +Giovanni +Axel +Cole +Jace +Max +Ivan +Brady +Carson +Declan +Ezekiel +Grant +Diego +Micah +Riley +Aidan +Easton +Jonah +Antonio +Jude +Rylan +Roman +Alan +Damian +Eric +Tanner +Caden +Hayden +Silas +Gage +Camden +Jaxson +Santiago +Sean +Bentley +Cody +Alejandro +Alex +Zane +Miguel +Sawyer +Ashton +Jesse +Kai +Eduardo +Kyle +Jaden +Lincoln +Oscar +Victor +Xander +Emmett +Mateo +Preston +Corbin +Leonardo +Timothy +Joel +Bryce +Drake +Emmanuel +Ezra +Kaden +Leo +Maddox +Patrick +Braxton +Bryson +Marcus +Mario +Kaiden +Richard +Bradley +Weston +Cash +Colin +Kaleb +Malachi +Conner +Everett +Jake +Manuel +Bryan +Dante +Javier +Ryker +Trevor +Derek +Kayden +Wesley +Elliot +Greyson +Israel +Quinn +Cesar +Devin +Garrett +Griffin +Emiliano +Kellan +Seth +Theodore +Charlie +Dillon +George +Graham +Steven +Andres +Cruz +Maximus +Milo +Omar +Alexis +Collin +Finn +Keegan +Adan +Cristian +Edward +Emilio +Jaiden +Jasper +Jorge +Kyler +Peyton +Simon +Tucker +Abel +Donovan +Jayce +Jeremy +Lorenzo +Rafael +Brian +Erick +Fabian +Jameson +Nicolas +Paul +Spencer +Trey +Tyson +Angelo +Beckett +Cayden +Felix +Luca +Mark +Trenton +Bennett +Brooks +Dawson +Fernando +Jett +Rowan +Ty +Zander +Andre +Brendan +Dean +Edgar +Pedro +Peter +Abraham +Devon +Edwin +Harrison +Kade +Kellen +Martin +Paxton +Titus +Calvin +Chance +Damien +Francisco +Landen +Lukas +Marco +Quentin +Ricardo +Stephen +Zayden +Avery +Brennan +Caiden +Dominick +Elliott +Grady +Hector +Holden +Johnathan +River +Romeo +Travis +Troy +Archer +Izaiah +Jax +Nehemiah +Porter +Raymond +Skyler +Beau +Brock +Clayton +Colt +Kian +Marshall +Orion +Walker +Yahir +August +Braden +Cade +Emerson +Erik +Finley +Gerardo +Johnny +Lane +Raul +Reed +Sullivan +Andy +Barrett +Darius +Jared +Josue +Judah +Kenneth +Kingston +Myles +Reid +Scott +Shane +Shawn +Soren +Tate +Alonzo +Colby +Dalton +Enrique +Esteban +Jaime +Jakob +Jonas +Maximiliano +Uriah +Zaiden +Bridger +Cyrus +Finnegan +Frank +Knox +Maverick +Moses +Nash +Phoenix +Ronan +Ronin +Sergio +Taylor +Adriel +Bode +Brycen +Cohen +Davian +Dexter +Dominik +Issac +Leland +Leon +Marcos +Maximilian +Nikolas +Phillip +Reece +Trace +Brayan +Derrick +Dustin +Emanuel +Enzo +Gunner +Jaylen +Jeffrey +Korbin +Leonel +Rhys +Roberto +Talon +Waylon +Aden +Ahmed +Arthur +Atticus +Brodie +Casey +Dallas +Damon +Davis +Felipe +Gianni +Gideon +Giovani +Gunnar +Ismael +Louis +Malakai +Royce +Ruben +Russell +Tobias +Xzavier +Darian +Desmond +Drew +Ezequiel +Gregory +Iker +Joaquin +Julius +Kane +Matteo +Mohamed +Pablo +Pierce +Rory +Sylas +Tristin +Urijah +Abram +Allen +Amir +Bently +Boden +Braeden +Brecken +Bryant +Cannon +Dakota +Danny +Dorian +Gael +Gauge +Hugo +Jay +Killian +Landyn +Lucian +Malik +Orlando +Ramon +Remington +Zachariah +Zion +Alfredo +Alijah +Anders +Armando +Beck +Bowen +Braylon +Bruce +Dayton +Deegan +Fisher +Gustavo +Irvin +Isaias +Jaxton +Jonathon +Jovani +Kamden +Kameron +Keaton +King +Kristopher +Lawson +Markus +Mauricio +Moises +Odin +Philip +Quinton +Raiden +Rhett +Rocco +Ronald +Saul +Skylar +Walter +Warren +Ace +Aidyn +Alec +Anderson +Armani +Arturo +Braydon +Callum +Colten +Colter +Corey +Cristopher +Curtis +Dane +Dax +Daxton +Gilbert +Jaxen +Jeramiah +Jerome +Jovanni +Jovany +Joziah +Justice +Kasen +Kason +Kieran +Kolby +Kolton +Luciano +Malcolm +Maxim +Mitchell +Osvaldo +Quintin +Reese +Remy +Ricky +Roland +Sam +Tatum +Thaddeus +Toby +Tristen +Ulises +Aldo +Ari +Asa +Augustus +Bentlee +Braedon +Braiden +Brett +Conor +Darrell +Deacon +Deandre +Emmitt +Ernesto +Finnian +Forrest +Giovanny +Grey +Isai +Jericho +Joey +Josias +Julio +Kale +Kash +Keith +Mathew +Matias +Micheal +Morgan +Nico +Payton +Randy +Rodrigo +Ryland +Seamus +Solomon +Stanley +Teagan +Treyton +Triston +Will +Wilson +Aaden +Abdiel +Adonis +Adrien +Ali +Alonso +Amare +Amari +Amos +Ansel +Aron +Benicio +Bishop +Bo +Broden +Broderick +Brogan +Callan +Case +Cason +Cory +Dangelo +Fletcher +Flynn +Frankie +Graysen +Jamison +Jensen +Jerimiah +Julien +Keagan +Keenan +Lawrence +Layne +Leonidas +Lewis +Maksim +Marvin +Matthias +Miller +Misael +Nathanael +Nickolas +Niko +Quincy +Rene +Rex +Rohan +Rowen +Roy +Sage +Shaun +Slade +Stetson +Tavin +Terry +Theo +Tomas +Ulysses +Uriel +Valentin +Van +Vance +Winston +Zackary +Zechariah +Abner +Agustin +Albert +Alfonso +Arlo +Axton +Aydan +Beckham +Blaine +Boston +Bradyn +Braedyn +Breck +Brenden +Cedar +Clay +Conrad +Crew +Crosby +Cullen +Davin +Deklan +Donald +Duncan +Eamon +Eddie +Efren +Elian +Ely +Ernest +Estevan +Eugene +Ford +Gary +Graeme +Harper +Harry +Isiah +Izaak +Jacoby +Jaeden +Jairo +Jalen +Jaydon +Jedidiah +Jeremias +Jerry +Jesiah +Johan +Jovan +Kaelen +Karson +Karter +Keller +Khalid +Khalil +Kingsley +Kole +Konnor +Lucius +Marley +Maximillian +Maxton +Maxx +Mohammed +Nigel +Prince +Ramiro +Reagan +Rico +Rogelio +Salvador +Samir +Sonny +Sterling +Tobin +Tony +Trent +Truman +Valentino +Yandel +Zack +Zaid +Zaine +Zavian +Abisai +Aedan +Alden +Alexzander +Allan +Alvaro +Andreas +Anton +Ares +Arley +Ben +Benton +Bernardo +Blaze +Branden +Brantley +Braylen +Cael +Canon +Carsten +Cassidy +Chad +Clive +Colson +Dameon +Dennis +Dimitri +Douglas +Draven +Eden +Edmund +Ellis +Franklin +Frederick +Gaige +Gerard +Gionni +Graeson +Guillermo +Hank +Harley +Hayes +Hezekiah +Houston +Huxley +Ignacio +Irving +Izayah +Jadon +Jadyn +Jagger +Jase +Jasiah +Joe +Jon +Jordy +Jordyn +Joshuah +Judson +Jullian +Kallen +Kareem +Kolten +Lachlan +Lance +Landry +Larry +Leif +Lennox +Lucien +Marc +Marek +Marlon +Masen +Mathias +Mayson +Memphis +Merrick +Mikah +Nikolai +Noel +Oren +Otto +Raylan +Rocky +Ronaldo +Rowdy +Rylee +Santino +Sloan +Stone +Taj +Talan +Todd +Torin +Tripp +Tyce +Vicente +Wade +Xavi +Yusuf +Zavier +Zev +Liam +Alexander +Jacob +William +Noah +Elijah +Ethan +Logan +Jackson +Mason +Samuel +Isaac +Aiden +Gabriel +Daniel +Jayden +Benjamin +Michael +Wyatt +James +Jack +Caleb +Joshua +David +Andrew +Matthew +Anthony +Joseph +Owen +Landon +Eli +Oliver +Christopher +Lucas +Carter +Dylan +Ryan +Henry +John +Luke +Jeremiah +Angel +Nathan +Austin +Isaiah +Connor +Gavin +Julian +Sebastian +Cooper +Hunter +Brayden +Colton +Evan +Josiah +Levi +Robert +Adrian +Dominic +Aaron +Jaxon +Tyler +Ian +Blake +Charles +Jonathan +Thomas +Chase +Jordan +Christian +Cameron +Elias +Hudson +Asher +Zachary +Xavier +Nicholas +Grayson +Jesus +Adam +Brody +Easton +Kevin +Nathaniel +Tristan +Micah +Miles +Jose +Ryder +Jace +Brady +Brandon +Juan +Lincoln +Carson +Giovanni +Jason +Carlos +Luis +Nolan +Damian +Diego +Bentley +Vincent +Weston +Max +Maxwell +Parker +Ayden +Declan +Alejandro +Ezekiel +Kai +Silas +Cole +Jaxson +Jude +Riley +Sawyer +Emmett +Camden +Gael +Jonah +Patrick +Axel +Justin +Leo +Santiago +Roman +Cody +Hayden +Tanner +Abel +Grant +Xander +Alex +Timothy +Miguel +Aidan +Everett +Colin +Eric +Kaleb +Manuel +Marcus +Wesley +Mateo +Theodore +Alan +Gage +Ryker +Rylan +Antonio +Preston +Bryson +Graham +Greyson +Ivan +Jameson +Leonardo +Bryan +Kyle +Maddox +Peter +Tucker +Caden +Edward +Israel +Kaden +Quinn +Richard +Sean +Spencer +Kayden +Oscar +Peyton +Trevor +Zane +Braxton +Calvin +Ezra +Joel +Kaiden +Zander +Harrison +Paxton +Cash +Cayden +Devin +Jasper +Maximus +Victor +Zayden +Corbin +Eduardo +Jake +Lukas +Avery +Bennett +Charlie +Bryce +Derek +Emmanuel +Jaden +Jorge +Malachi +Damien +Drake +Elliot +Fernando +Iker +Simon +Bradley +Elliott +Seth +Chance +Cruz +Emilio +Erik +Garrett +Jayce +Adan +Holden +Javier +Jesse +Rowan +Mark +Milo +Omar +Porter +Titus +Abraham +August +Brian +Brooks +Dean +Donovan +Edgar +Emiliano +Myles +Reid +Romeo +Steven +Alexis +Ashton +Beckett +Cesar +Hector +Johnathan +Raymond +Shane +Andres +Angelo +Griffin +Josue +Judah +Kenneth +Kyler +Soren +Tyson +Brock +Dexter +Dillon +Dominick +Lane +Nehemiah +Nicolas +Trenton +Zachariah +Andre +Beau +Brendan +Cade +Conner +Fabian +Francisco +George +Grady +Jeremy +Kellan +Sergio +Trey +Ty +Barrett +Clayton +Luca +Travis +Cohen +Collin +Gregory +Kellen +Louis +Mario +Paul +Ricardo +Stephen +Troy +Braden +Brantley +Colby +Dante +Esteban +Finn +Gideon +Gunner +Jared +Keegan +Landen +Orion +Rafael +Uriah +Aden +Dakota +Erick +Keaton +Leon +Martin +Cyrus +Davis +Desmond +Felix +Jax +Kade +Marcos +Marshall +Reed +River +Solomon +Atticus +Colt +Crosby +Emanuel +Lorenzo +Maverick +Phoenix +Raul +Reece +Skyler +Ari +Armani +Cristian +Devon +Ellis +Gerardo +Izaiah +Jaiden +Pedro +Rhys +Ruben +Shawn +Tobias +Zion +Anderson +Andy +Dane +Dawson +Joaquin +Leonel +Nikolas +Quentin +Rory +Ryland +Taylor +Walker +Ahmed +Beckham +Caiden +Casey +Enrique +Flynn +Jamison +Jett +Johnny +Knox +Kolton +Leland +Marco +Matteo +Royce +Teagan +Trent +Waylon +Zaiden +Abram +Alijah +Anders +Archer +Brayan +Braydon +Emerson +Gunnar +Lawson +Matthias +Maximiliano +Phillip +Raiden +Remington +Saul +Scott +Zayne +Arlo +Bode +Brecken +Brenden +Damon +Darren +Davian +Dax +Drew +Ernesto +Gianni +Jacoby +Jay +Kasen +Kian +King +Kingston +Malakai +Nico +Pablo +Tate +Yahir +Alonso +Augustus +Boston +Bruce +Brycen +Byron +Colten +Conor +Dustin +Finley +Hugo +Julius +Kieran +Lance +Lucian +Luciano +Maximilian +Mohamed +Philip +Quinton +Ramon +Rhett +Roberto +Ronan +Sage +Santino +Sterling +Talon +Torin +Trace +Uriel +Urijah +Vaughn +Adriel +Aydan +Bodhi +Brennan +Bridger +Channing +Dayton +Foster +Frank +Gustavo +Jaime +Jase +Jayson +Jeffrey +Kameron +Octavio +Sylas +Theo +Tobin +Aldo +Alec +Amir +Armando +Aron +Arthur +Azariah +Braeden +Braiden +Brodie +Cannon +Cason +Colter +Daxton +Derrick +Donald +Duncan +Ever +Franklin +Jakob +Jaxton +Joey +Jovanni +Kash +Keagan +Kody +Korbin +Larry +Matias +Mauricio +Nash +Nathanael +Payton +Reese +Ronin +Russell +Sam +Warren +Zavier +Adonis +Alonzo +Arturo +Asa +Brennen +Brett +Bryant +Callan +Cassius +Dallas +Darian +Dominik +Eden +Edwin +Eugene +Finnegan +Frederick +Guillermo +Harper +Hugh +Jadon +Jalen +Jensen +Jericho +Jonas +Jovanny +Julio +Justus +Kason +Kobe +Landyn +Layne +Leif +Lennox +Leonidas +Lochlan +Luka +Marcel +Mohammed +Odin +Ricky +Rodrigo +Tatum +Walter +Zackary +Ali +Augustine +Bobby +Broderick +Cayson +Clark +Dalton +Darius +Douglas +Draven +Duke +Eliot +Emery +Ezequiel +Gannon +Gionni +Hamza +Harley +Hayes +Ibrahim +Ismael +Issac +Jairo +Jimmy +Kaeden +Kamden +Kayson +Keenan +Kylan +Marcelo +Maurice +Memphis +Moses +Nickolas +Nikolai +Pierce +Rocco +Stanley +Sullivan +Tomas +Will +Alden +Alessandro +Alfredo +Amos +Avi +Axton +Blaze +Boden +Breck +Brogan +Cain +Callum +Chad +Chandler +Chris +Conrad +Corey +Curtis +Deegan +Demetrius +Enoch +Enzo +Felipe +Fisher +Fletcher +Gaige +Giovani +Harlan +Hendrix +Jahir +Jerry +Jessie +Johan +Johann +Karter +Kelvin +Koen +Kristopher +Landry +Lawrence +Madden +Markus +Marquis +Masen +Mathias +Maxim +Maxton +Mohammad +Moises +Nelson +Neymar +Noel +Oakley +Orlando +Quincy +Quinten +Randy +Reagan +Rene +Ridge +Rocky +Roy +Ryley +Salman +Salvador +Shaun +Toby +Tommy +Tony +Tripp +Tristen +Tyce +Ulysses +Valentin +Winston +Yousif +Aarav +Alexavier +Allen +Amare +Andreas +Bailey +Ben +Benicio +Blaine +Bo +Branson +Cael +Canyon +Case +Clay +Cormac +Danny +Dennis +Dorian +Edison +Estevan +Finnley +Gauge +Giancarlo +Graeme +Harry +Hezekiah +Jagger +Jaidyn +Jaxen +Jaylen +Jedidiah +Joe +Jordon +Josias +Julien +Kane +Karson +Keith +Keller +Kelton +Killian +Konnor +Landin +Lee +Lyric +Makai +Marek +Mariano +Messiah +Misael +Mitchell +Nixon +Otis +Rayden +Remy +Rex +Roland +Samson +Shepherd +Stefan +Tavin +Thaddeus +Trevon +Tristin +Triston +Tristyn +Truman +Ulises +Van +Vance +Vicente +Wade +Westen +Wiley +Yahel +Zeke +Aayden +Ace +Adler +Alvaro +Anton +Apollo +Armin +Aryan +Austyn +Billy +Bishop +Bodie +Braedyn +Braydyn +Braylen +Brendon +Briggs +Caius +Carlo +Cedric +Christiano +Cian +Cory +Crew +Dangelo +Deacon +Deangelo +Decker +Deklan +Donte +Eddie +Efren +Eliam +Elian +Emmitt +Finnian +Garrison +Gino +Giovanny +Graysen +Guy +Hans +Heath +Ira +Irvin +Isaias +Izaya +Jeffery +Jeramiah +Jionni +Johnathon +Jordyn +Jovan +Jovani +Joziah +Justice +Kadyn +Kendrick +Kenny +Khalid +Koda +Kole +Konrad +Kooper +Kristian +Kristofer +Layton +Leonard +Leroy +Major +Marvin +Mathew +Mayson +Mekhi +Nigel +Noe +Orrin +Otto +Raphael +Reuben +Rey +Rishi +Rogelio +Ronald +Royal +Seamus +Steele +Sutton +Thiago +Thor +Titan +Treyson +Westley +Wilson +Xavi +Xzavier +Yadiel +Yael +Yandel +Yusuf +Zack +Zephyr +Liam +Noah +Jackson +Alexander +William +Elijah +Logan +James +Benjamin +Mason +Daniel +Ethan +Jacob +Samuel +Michael +Gabriel +David +Jack +Isaac +Aiden +Andrew +Jayden +Owen +Henry +Oliver +Anthony +Wyatt +Caleb +John +Hunter +Joshua +Joseph +Matthew +Dylan +Eli +Jaxon +Christopher +Luke +Dominic +Levi +Landon +Lucas +Sebastian +Blake +Charles +Angel +Cooper +Carter +Connor +Isaiah +Julian +Ryan +Josiah +Evan +Ryder +Gavin +Nolan +Aaron +Jace +Miles +Brayden +Christian +Colton +Grayson +Jordan +Nathan +Asher +Robert +Thomas +Xavier +Adrian +Austin +Parker +Tyler +Adam +Declan +Jonathan +Lincoln +Ian +Jeremiah +Jose +Hudson +Elias +Cameron +Zachary +Luis +Nicholas +Silas +Easton +Carson +Tristan +Damian +Brody +Micah +Brandon +Jaxson +Maxwell +Nathaniel +Leo +Roman +Everett +Juan +Vincent +Jesus +Ayden +Emmett +Jason +Camden +Cole +Kevin +Ryker +Sawyer +Max +Alan +Bentley +Ivan +Jonah +Axel +Chase +Giovanni +Mateo +Bryson +Ezekiel +Wesley +Carlos +Hayden +Jameson +Calvin +Colin +Ezra +Justin +Jude +Kai +Maddox +Rylan +Santiago +Aidan +Alex +Diego +Marcus +Riley +Antonio +Braxton +Grant +Kayden +Theodore +Gael +Elliott +Luca +Caden +Cody +Eric +Harrison +Leonardo +Xander +Emilio +Tucker +George +Greyson +Timothy +Weston +Paul +Rowan +Gage +Garrett +Miguel +Preston +Tanner +Abraham +Finn +Oscar +Victor +Ashton +Derek +Joel +Jorge +Kaden +Zayden +Abel +Beckett +Damien +Graham +Maximus +Paxton +Alejandro +Avery +Dante +Eduardo +Jaden +Jase +Javier +Malachi +Sean +Edward +Lorenzo +Bennett +Charlie +Emmanuel +Griffin +Kaiden +Brady +Peyton +Richard +Bradley +Brooks +Emiliano +Jesse +Kaleb +Quinn +Zander +Donovan +Holden +Milo +Simon +Titus +Zane +Cash +Dillon +Patrick +Andres +Felix +Jayce +Jeremy +Judah +Kyle +Lukas +Mario +Brantley +Bryce +Cayden +Corbin +Dominick +Elliot +Jax +Keegan +Peter +Steven +Angelo +Barrett +Beau +Cade +Cesar +Porter +August +Brian +Collin +Cristian +Cruz +Devin +Drake +Omar +Seth +Spencer +Jake +Landen +Manuel +Mark +Shane +Tate +Conner +Dalton +Emerson +Fernando +Israel +Nehemiah +Trevor +Bryan +Caiden +Jasper +Maverick +Nicolas +Pedro +Rafael +Reid +Taylor +Arthur +Dean +Erick +Odin +Travis +Troy +Archer +Dexter +Edgar +Iker +Kamden +Kenneth +Myles +River +Roberto +Sullivan +Adan +Amir +Chance +Fabian +Francisco +Kingston +Kyler +Lane +Orion +Brock +Clayton +Gunner +Jett +Joaquin +Armando +Deacon +Marshall +Talon +Tatum +Zaiden +Braden +Colt +Erik +Gideon +Marcos +Remington +Rocco +Tobias +Uriah +Anderson +Bodhi +Jakob +Kason +Kellan +Leon +Martin +Quentin +Romeo +Sergio +Solomon +Stephen +Tyson +Waylon +Abram +Adriel +Alec +Alexis +Ari +Dax +Dominik +Izaiah +Jaxton +Ricardo +Sterling +Walker +Armani +Arturo +Brennan +Dallas +Davis +Desmond +Gregory +Jonas +Josue +Mohamed +Nash +Pierce +Raymond +Rhys +Ronan +Sage +Trenton +Trey +Urijah +Walter +Zayne +Andre +Atticus +Breck +Brendan +Bruce +Clark +Conrad +Decker +Finnegan +Jared +Jeffrey +Knox +Leonel +Louis +Rory +Ruben +Scott +Soren +Trent +Aden +Emanuel +Finley +Flynn +Harvey +Hugo +Johnathan +Kash +Kellen +King +Malakai +Phillip +Phoenix +Ryland +Skyler +Ty +Zion +Alijah +Andy +Azariah +Braeden +Bridger +Conor +Danny +Dawson +Drew +Enrique +Grady +Gunnar +Hector +Jaiden +Jayceon +Johnny +Kade +Marco +Maximiliano +Quinton +Reed +Russell +Sylas +Vaughn +Yahir +Alberto +Alden +Brecken +Brycen +Cohen +Colby +Cyrus +Davian +Julio +Kody +Mitchell +Nikolas +Pablo +Quintin +Tristen +Vicente +Zavier +Anders +Axton +Bowen +Cristiano +Crosby +Daxton +Devon +Esteban +Frank +Gauge +Gerardo +Gustavo +Ismael +Jeffery +Justice +Kieran +Kolton +Leonidas +Lyric +Mohammed +Moises +Nikolai +Raiden +Randy +Rodrigo +Royce +Saul +Uriel +Westin +Zachariah +Alfredo +Allen +Alonso +Alonzo +Atlas +Brenden +Bryant +Callum +Cannon +Carl +Dakota +Douglas +Edwin +Fletcher +Jacoby +Jamison +Jensen +Kane +Kasen +Keagan +Kendrick +Malik +Matias +Maximilian +Neil +Raul +Rhett +Ricky +Shawn +Tomas +Trace +Xzavier +Aldo +Ares +Augustus +Braydon +Braylon +Case +Casen +Casey +Chandler +Colten +Donald +Dorian +Draven +Emmitt +Finnley +Harlan +Jay +Joey +Karson +Koen +Korbin +Landyn +Lawrence +Leonard +Lewis +Luka +Makai +Mathew +Mathias +Matthias +Memphis +Milan +Misael +Moses +Nathanael +Reese +Rohan +Ronin +Sam +Skylar +Sonny +Theo +Wilson +Alexzander +Alfonso +Ali +Arian +Aron +Benson +Blaine +Brodie +Byron +Callan +Cason +Cassius +Channing +Corey +Damon +Darius +Dayton +Deegan +Dennis +Derrick +Dustin +Ellis +Ewan +Ezequiel +Felipe +Ford +Franklin +Frederick +Gianni +Hendrix +Ibrahim +Ignacio +Jaime +Jaxen +Jayson +Jonathon +Kameron +Kelton +Killian +Kristian +Kristopher +Larry +Lennon +Leroy +Marcelo +Matteo +Messiah +Niko +Noel +Palmer +Philip +Rayden +Reece +Ronald +Santana +Stefan +Thatcher +Tony +Warren +Zackary +Adrien +Amos +Apollo +Arlo +Ben +Branson +Brayan +Briggs +Chace +Clyde +Coen +Cullen +Darian +Deklan +Edison +Elian +Forrest +Franco +Guillermo +Hamza +Hank +Harley +Isai +Isaias +Issac +Jadon +Jair +Jairo +Jalen +Jayvion +Jericho +Joe +Kael +Leif +Leland +Lionel +Lochlan +London +Luciano +Marek +Markus +Micheal +Mohammad +Nico +Orlando +Oskar +Otto +Quincy +Ramon +Rayan +Reagan +Roland +Rylee +Samson +Santos +Thiago +Torin +Trystan +Zavian +Ace +Adolfo +Adonis +Ahmed +Aksel +Amari +Ariel +Aryan +Asa +Aydin +Beckham +Benaiah +Bode +Braiden +Bruno +Castiel +Cayson +Chris +Crew +Curtis +Dane +Dangelo +Demetrius +Duke +Duncan +Eamon +Eden +Efrain +Enoch +Enzo +Ernesto +Gavyn +Gilbert +Gionni +Graeme +Greysen +Harper +Hezekiah +Isaak +Jacen +Jasiah +Jaxx +Jimmy +Joziah +Justus +Karter +Kolby +Kolten +Kylan +Layne +Mac +Marvin +Merrick +Noble +Otis +Quinten +Raylan +Remy +Rex +Ridley +Roan +Salem +Salvador +Shiloh +Thaddeus +Titan +Toby +Tripp +Ulysses +Valentin +Van +Wade +Zain +Abdiel +Aedan +Aidyn +Albert +Allan +Alton +Anakin +Antoine +Beck +Bently +Bo +Bodie +Boone +Braylen +Brixton +Brogan +Bryden +Burke +Cache +Callen +Carlo +Clay +Coleman +Corbyn +Cormac +Cristobal +Cristopher +Cylus +Damion +Dariel +Darwin +Dezmond +Drayden +Eddie +Esai +Ever +Fisher +Foster +Frankie +Garrison +Gary +German +Gilberto +Giovani +Harry +Hayes +Heath +Immanuel +Izaak +Jaydon +Jedidiah +Jerome +Jerry +Jet +Josef +Jovanni +Kainoa +Kale +Kase +Kayson +Keaton +Keenan +Kendall +Kenton +Kian +Koda +Kole +Kymani +Landry +Lawson +Layton +Lucius +Magnus +Major +Marc +Marquis +Matix +Mekhi +Mike +Neymar +Nickolas +Nigel +Nixon +Noe +Osvaldo +Prince +Rafe +Rami +Ramiro +Rene +Rocky +Roy +Santino +Seamus +Stone +Syler +Sylus +Syrus +Tayson +Terrence +Trindon +Triston +Truett +Vincenzo +Winston +Wynn +Yahya +Yair +Yousef +Zaedyn +Zechariah +Zeppelin +Liam +Alexander +Noah +William +Logan +Benjamin +Elijah +Ethan +James +Jackson +Oliver +Jacob +Michael +Wyatt +Samuel +Daniel +Gabriel +Aiden +Mason +Henry +Jack +Lucas +Owen +Joshua +Andrew +Caleb +Jayden +David +Carter +Isaac +Eli +Hunter +Matthew +Joseph +Anthony +Dylan +Luke +Jaxon +Levi +John +Angel +Isaiah +Sebastian +Connor +Christopher +Landon +Charles +Elias +Julian +Grayson +Colton +Evan +Ryan +Gavin +Jonathan +Dominic +Thomas +Nolan +Jace +Adrian +Lincoln +Cooper +Asher +Aaron +Robert +Josiah +Blake +Tyler +Jeremiah +Austin +Nathan +Ryder +Cameron +Christian +Hudson +Miles +Zachary +Wesley +Brayden +Ryker +Adam +Jaxson +Jose +Damian +Brody +Theodore +Declan +Ian +Jordan +Luis +Parker +Xavier +Ezekiel +Leo +Giovanni +Sawyer +Maxwell +Chase +Emmett +Everett +Brandon +Nicholas +Kevin +Roman +Weston +Easton +Jason +Cole +Ayden +Nathaniel +Tristan +Ezra +Carson +Vincent +Axel +Camden +Max +Micah +Greyson +Leonardo +Zayden +Calvin +Carlos +Juan +Jude +Diego +Justin +Bentley +Colin +Harrison +Mateo +Rowan +Cody +Silas +Abel +Kayden +Oscar +Riley +August +Grant +Bryce +George +Graham +Jesus +Kai +Patrick +Bennett +Gael +Jameson +Alan +Alex +Corbin +Ivan +Aidan +Jase +Jonah +Tanner +Beckett +Hayden +Kaleb +Knox +Victor +Zane +Abraham +Alejandro +Braxton +Jesse +Miguel +Timothy +Charlie +Emiliano +Emmanuel +Jax +Preston +Tucker +Xander +Brooks +Iker +Maddox +Beau +Brady +Bryson +Kaden +Peter +Romeo +Avery +Emilio +Caden +Luca +Marcus +Paxton +Angelo +Ashton +Felix +Gage +Richard +Joel +Malachi +Rylan +Santiago +Sean +Zander +Eric +Griffin +Jaden +Jasper +Kaiden +Archer +Cruz +Damien +Derek +Javier +Simon +Titus +Bradley +Mark +Maximus +Paul +Elliott +Gunner +Orion +Sergio +Donovan +Edward +Jayce +Elliot +Israel +Judah +Kenneth +Maverick +Peyton +Quinn +Steven +Antonio +Brantley +Cash +Lukas +Marshall +Milo +Dean +Francisco +Garrett +Jorge +Louis +Manuel +Rory +Andres +Dante +Johnathan +Kyle +Nehemiah +Bryan +Cesar +Drake +Fernando +Jake +Kingston +Lorenzo +Marco +River +Spencer +Arlo +Cade +Jeremy +Porter +Reed +Shane +Uriah +Barrett +Brian +Cayden +Collin +Emerson +Jared +Kellen +Nicolas +Reid +Trevor +Tyson +Atticus +Bode +Chance +Desmond +Dexter +Finn +Holden +King +Walker +Ari +Colt +Dillon +Eduardo +Erick +Hector +Landen +Myles +Omar +Seth +Stephen +Zachariah +Zaiden +Adriel +Brock +Conner +Mario +Raymond +Ricardo +Talon +Clayton +Crosby +Dominick +Enzo +Johnny +Phoenix +Ronan +Tatum +Waylon +Andre +Braden +Conrad +Dalton +Devin +Ellis +Fabian +Finley +Gerardo +Gunnar +Kyler +Remington +Sterling +Tate +Uriel +Warren +Alexis +Armando +Jamison +Julius +Keegan +Martin +Maximiliano +Odin +Rhys +Taylor +Alonzo +Andy +Caiden +Cyrus +Decker +Hugo +Jensen +Kade +Kellan +Kendrick +Pablo +Soren +Travis +Walter +Augustus +Bodhi +Callan +Cristian +Donald +Edgar +Edwin +Jaime +Jakob +Joaquin +Josue +Lane +Leon +Matteo +Mohamed +Nash +Ronin +Ryland +Tobias +Trey +Yahir +Adan +Armani +Bodie +Brennan +Clark +Cohen +Colten +Dawson +Derrick +Drew +Fletcher +Isaias +Jett +Kieran +Leonel +Maximilian +Neymar +Rhett +Sylas +Ty +Ace +Brendan +Casey +Damon +Erik +Jaiden +Luciano +Pedro +Raul +Russell +Solomon +Trenton +Urijah +Asa +Atlas +Bridger +Case +Davis +Dax +Deacon +Devon +Dustin +Gideon +Izaiah +Jaxton +Jonas +Kason +Kian +Killian +Lawson +Mathias +Orlando +Philip +Phillip +Quentin +Rafael +Skyler +Thiago +Tony +Torin +Zechariah +Zeke +Abram +Augustine +Bo +Boden +Brecken +Cormac +Dane +Daxton +Emanuel +Esteban +Ezequiel +Forrest +Karter +Keaton +Mitchell +Noel +Quincy +Remy +Sage +Saul +Tomas +Vaughn +Zayne +Aden +Adonis +Alijah +Allen +Anderson +Azariah +Brycen +Callum +Colby +Dariel +Flynn +Frank +Frederick +Harvey +Ismael +Justice +Misael +Moises +Nico +Nikolai +Otis +Royce +Shawn +Troy +Valentino +Van +Vance +Abdullah +Aldo +Alexzander +Ali +Alonso +Amir +Anders +Arturo +Bruce +Crew +Dakota +Emmitt +Gannon +Grady +Hayes +Hendrix +Jay +Jayson +Jeffrey +Jovanni +Julio +Kasen +Kayson +Keith +Lennox +Lucian +Malakai +Mohammed +Nikola +Oakley +Otto +Raiden +Reece +Rex +Roberto +Rocco +Roland +Sam +Aarav +Alden +Alec +Amari +Anakin +Arthur +Atreyu +Blaise +Brayan +Brodie +Bryant +Callen +Davian +Duncan +Eddie +Gustavo +Hezekiah +Jayceon +Jerry +Kane +Lachlan +Leif +Leland +Milan +Moses +Niko +Nikolas +Quinton +Ray +Salvador +Skylar +Sullivan +Thaddeus +Trent +Xzavier +Zavier +Alessandro +Alfredo +Aron +Axton +Aydan +Braydon +Cael +Casen +Cason +Conor +Cullen +Danny +Deegan +Dominik +Dorian +Duke +Eliseo +Enoch +Enrique +Ernesto +Everest +Ewan +Finnegan +Finnley +Gianni +Gordon +Gregory +Hamza +Ibrahim +Issac +Jadon +Jaylen +Jovani +Kameron +Karson +Kash +Korbin +Lance +Landyn +Larry +Lennon +London +Malcolm +Marcos +Matias +Messiah +Noe +Reese +Roy +Ruben +Santino +Theo +Ulises +Zion +Alaric +Arjun +Austyn +Ayaan +Benson +Bowen +Braiden +Breckin +Broderick +Cal +Cannon +Cassius +Chandler +Corbyn +Darian +Darien +Darren +Davion +Dion +Draven +Eliot +Ford +Franklin +Giancarlo +Giovani +Haiden +Henrik +Huxley +Isai +Jairo +Jaxen +Jaxx +Kamden +Keagan +Keenan +Kelton +Koda +Kolby +Kristopher +Kyson +Lawrence +Lazarus +Leonidas +Lewis +Lucca +Malik +Marvin +Matthias +Merrick +Mustafa +Nickolas +Pierce +Quintin +Ramon +Randy +Raylan +Reagan +Ridge +Ronald +Samson +Scott +Seamus +Shaun +Terry +Tobin +Tripp +Ulysses +Vicente +Vihaan +Wade +Wilson +Aaden +Adrien +Aedan +Ahmad +Albert +Alberto +Amar +Amos +Anton +Bear +Ben +Blaine +Boyd +Braylen +Braylon +Bronson +Cain +Campbell +Cecil +Clay +Clyde +Coen +Cristiano +Damion +Dash +Dashiell +Deion +Diesel +Eben +Eden +Elian +Fisher +Forest +Freddy +Gaige +Garrison +Gionni +Hank +Harper +Harry +Heath +Hugh +Izayah +Jacoby +Jagger +Jedidiah +Jefferson +Jericho +Jimmy +Jionni +Josias +Kolton +Legend +Lochlan +Louie +Luka +Maceo +Magnus +Marcel +Mathew +Mauricio +Maxton +Muhammad +Nixon +Oren +Pierson +Rey +Roger +Shiloh +Stetson +Sutton +Terrence +Thatcher +Toby +Tristen +Triston +Yousef +Zackary +Achilles +Adler +Ahmed +Aksel +Alfonso +Ammon +Ansel +Apollo +Ares +Arian +Ariel +Aryan +Beckham +Benaiah +Bentlee +Breck +Brent +Brogan +Byron +Caius +Camdyn +Canaan +Carmelo +Castiel +Colter +Corey +Cristopher +Cylas +Dallas +Dangelo +Danilo +Darius +Daryl +Dayton +Deangelo +Demetrius +Dennis +Denzel +Edison +Edmund +Elan +Emery +Eugene +Foster +Fynn +Gary +Gauge +Gerald +Giovanny +Graysen +Guillermo +Gus +Hassan +Jalen +Jayse +Jayvion +Jaziel +Jerome +Joey +Johann +Jones +Julien +Junior +Justus +Kallen +Kingsley +Kole +Kolten +Kooper +Lee +Lionel +Loki +Luther +Lyric +Mace +Major +Marek +Maxim +Murphy +Nathanial +Oden +Osiris +Payson +Quinten +Ramiro +Raphael +Rayden +Rene +Robin +Rogelio +Royal +Salvatore +Santana +Sonny +Stone +Stuart +Treyton +Tristin +Turner +Vladimir +Westin +Xavi +Yair +Yusuf +Zain +Zayn +Zephaniah +Mary +Helen +Anna +Margaret +Dorothy +Ruth +Elizabeth +Rose +Alice +Florence +Josephine +Mildred +Lillian +Frances +Catherine +Julia +Anne +Marie +Marion +Ethel +Evelyn +Grace +Gertrude +Ann +Beatrice +Emma +Louise +Gladys +Sophie +Esther +Bertha +Katherine +Irene +Agnes +Edna +Eleanor +Clara +Doris +Jennie +Theresa +Edith +Jean +Marguerite +Pauline +Marjorie +Lucy +Elsie +Ida +Nellie +Barbara +Genevieve +Kathryn +Lena +Bernice +Emily +Estelle +Loretta +Sarah +Stella +Viola +Virginia +Blanche +Charlotte +Laura +Lucille +Betty +Jane +Marian +Vera +Bessie +Madeline +Maria +Martha +Sylvia +Victoria +Eva +Mabel +Mae +Alma +Christine +Ellen +Olga +Caroline +Cecelia +Celia +Hazel +Olive +Adeline +Amelia +Annette +Antoinette +Claire +Constance +Ella +Harriet +Helene +Jeanne +Jeannette +Pearl +Sally +Thelma +Ada +Angelina +Cecilia +Concetta +Henrietta +Leona +Minnie +Regina +Rita +Violet +Adelaide +Angeline +Annie +Flora +Helena +Hilda +Isabel +Miriam +Muriel +Myrtle +Phyllis +Wanda +Carmella +Dora +Dorothea +Eileen +Elvira +Etta +Fannie +Filomena +Irma +Janet +Jessie +Stephanie +Susan +Susie +Mary +Helen +Anna +Margaret +Dorothy +Rose +Elizabeth +Ruth +Mildred +Alice +Catherine +Florence +Josephine +Frances +Lillian +Marion +Julia +Ethel +Edith +Gertrude +Agnes +Anne +Eleanor +Grace +Louise +Evelyn +Irene +Katherine +Marie +Edna +Ann +Doris +Esther +Bertha +Ida +Marjorie +Jennie +Lucy +Theresa +Elsie +Jean +Emma +Gladys +Pauline +Virginia +Beatrice +Laura +Sophie +Stella +Viola +Barbara +Lena +Olive +Nellie +Sarah +Clara +Hazel +Loretta +Mae +Marian +Martha +Antoinette +Celia +Eva +Jane +Adeline +Bernice +Cecelia +Charlotte +Olga +Angelina +Caroline +Genevieve +Kathryn +Lucille +Vera +Blanche +Emily +Madeline +Marguerite +Phyllis +Sylvia +Violet +Amelia +Harriet +Minnie +Bessie +Betty +Ella +Ellen +Estelle +Jessie +Myrtle +Pearl +Regina +Constance +Dorothea +Kathleen +Maria +Nancy +Sara +Susan +Victoria +Vivian +Angeline +Carmela +Carolyn +Concetta +Fannie +Flora +May +Natalie +Annette +Christine +Claire +Hilda +Lois +Mabel +Philomena +Sally +Shirley +Alma +Anita +Elinor +Henrietta +Lydia +Rita +Veronica +Winifred +Arline +Carol +Dolores +Edythe +Eileen +Helena +Helene +Isabel +Janet +Rosalie +Selma +Adele +Angela +Cornelia +Eunice +Filomena +Geraldine +Jeanne +Jeannette +Miriam +Mollie +Muriel +Patricia +Rosa +Sophia +Tillie +Mary +Helen +Margaret +Anna +Dorothy +Elizabeth +Rose +Ruth +Mildred +Alice +Frances +Lillian +Florence +Josephine +Marion +Catherine +Julia +Irene +Eleanor +Gertrude +Grace +Marie +Louise +Doris +Evelyn +Ann +Ethel +Edith +Katherine +Anne +Marjorie +Elsie +Bertha +Theresa +Edna +Esther +Jennie +Sophie +Stella +Beatrice +Betty +Virginia +Agnes +Nellie +Pauline +Hazel +Jean +Jane +Genevieve +Ida +Emma +Lucy +Sylvia +Antoinette +Clara +Charlotte +Barbara +Gladys +Madeline +Sarah +Viola +Eva +Kathryn +Martha +Bernice +Lena +Marguerite +Sally +Laura +Lucille +Adeline +Myrtle +Angelina +Estelle +Harriet +Pearl +Amelia +Loretta +Mae +Olga +Winifred +Mabel +Violet +Blanche +Dorothea +Vera +Victoria +Ellen +Emily +Jessie +Marian +Minnie +Angeline +Ella +Hilda +Muriel +Veronica +Caroline +Flora +Susan +Angela +Constance +Nancy +Carolyn +Helene +Isabelle +Lois +Olive +Phyllis +Vivian +Arlene +Carmela +Christine +Eunice +Jeannette +Leona +Philomena +Anita +Carmel +Eileen +Wanda +Alma +Bessie +Fannie +Kathleen +Molly +Patricia +Sophia +Stephanie +Teresa +Yvonne +Albina +Cecilia +Claire +Eleanore +Helena +Irma +Janet +Joan +Katharine +Natalie +Rebecca +Sadie +Sara +Verna +Adele +Cecelia +Cecile +Concetta +Eloise +Fay +Lee +Lydia +Maria +Matilda +May +Miriam +Norma +Regina +Shirley +Arline +Carol +Celia +Edythe +Elinor +Freda +Isabel +Leah +Lottie +Ruby +Wilma +Mary +Helen +Anna +Margaret +Dorothy +Rose +Elizabeth +Ruth +Frances +Marion +Mildred +Florence +Alice +Catherine +Josephine +Anne +Lillian +Marie +Louise +Irene +Jennie +Eleanor +Ann +Julia +Edith +Ethel +Gertrude +Grace +Doris +Pauline +Evelyn +Theresa +Jean +Katherine +Agnes +Beatrice +Esther +Marjorie +Edna +Gladys +Sophie +Elsie +Stella +Bernice +Lucy +Virginia +Eva +Genevieve +Jane +Nellie +Ida +Martha +Barbara +Bertha +Clara +Lena +Betty +Loretta +Sylvia +Olga +Antoinette +Emily +Hazel +Lois +Phyllis +Amelia +Charlotte +Emma +Caroline +Mabel +Viola +Madeline +Marguerite +Rita +Claire +Estelle +Muriel +Adeline +Harriet +Sarah +Victoria +Angelina +Marian +Carmela +Ellen +Maria +Minnie +Veronica +Vivian +Wanda +Kathryn +Laura +Lucille +Winifred +Dorothea +Thelma +Bessie +Cecelia +Eunice +Natalie +Olive +Angeline +Fannie +Jeannette +Pearl +Violet +Janet +Leona +Sally +Celia +Constance +Jeanette +Lydia +Myrtle +Nancy +Philomena +Shirley +Teresa +Adele +Alma +Anita +Helene +Isabel +Susan +Vera +Annette +Blanche +Christine +Concetta +Isabelle +Kathleen +Mae +Matilda +Angela +Carmella +Carolyn +Cecile +Cornelia +Ella +Geraldine +May +Sadie +Dora +Elinor +Elvira +Hannah +Hilda +Lorraine +Lottie +Mollie +Norma +Patricia +Ada +Amy +Annie +Arline +Bernadette +Carmel +Cecilia +Connie +Eileen +Henrietta +Jessie +Joan +Johanna +Miriam +Rosalie +Rosemary +Ruby +Sophia +Stephanie +Sue +Adelaide +Alyce +Arlene +Cora +Elisabeth +Freda +Nora +Sara +Selma +Wilma +Albina +Carol +Carrie +Daisy +Edythe +Eleanore +Filomena +Gloria +Helena +Irma +Jeanne +Juliette +Marcia +Michelina +Millie +Priscilla +Roberta +Sabina +Stacia +Tessie +Verna +Vilma +Vincenza +Mary +Helen +Anna +Margaret +Dorothy +Rose +Ruth +Elizabeth +Josephine +Frances +Florence +Alice +Mildred +Lillian +Marion +Evelyn +Catherine +Anne +Eleanor +Irene +Marie +Doris +Ann +Julia +Agnes +Edith +Sophie +Jennie +Katherine +Stella +Gertrude +Louise +Ethel +Grace +Marjorie +Theresa +Barbara +Lucy +Beatrice +Esther +Genevieve +Virginia +Edna +Pauline +Sylvia +Jean +Emma +Elsie +Lena +Nellie +Bertha +Ida +Antoinette +Gladys +Jane +Eva +Clara +Madeline +Rita +Bernice +Hazel +Olga +Martha +Adeline +Charlotte +Marguerite +Phyllis +Muriel +Nancy +Blanche +Harriet +Lucille +Betty +Estelle +Victoria +Eileen +Kathryn +Sarah +Veronica +Vera +Caroline +Angelina +Carmela +Mae +Laura +Adele +Lois +Loretta +Myrtle +Viola +Amelia +Ellen +Olive +Sally +Emily +Jessie +Pearl +Constance +Marian +Teresa +Angeline +Bessie +Leona +Mabel +Violet +Carolyn +Cecelia +Claire +Ella +Vivian +Winifred +Christine +Eunice +Fannie +Isabelle +Kathleen +Natalie +Norma +Philomena +Regina +Susan +Thelma +Angela +Carmel +Concetta +Dora +Hedwig +Helene +May +Minnie +Janet +Jeannette +Mollie +Sadie +Wanda +Annette +Carmella +Celia +Elaine +Elvira +Shirley +Hilda +Joan +Lydia +Maria +Nora +Patricia +Rosemary +Sophia +Stephanie +Wilma +Alma +Anita +Arlene +Dorothea +Eleanore +Flora +Ada +Cecile +Henrietta +Inez +Miriam +Rosalie +Yvonne +Arline +Freda +Irma +Jeanette +Katharine +Lottie +Alberta +Annie +Connie +Faye +Harriett +Jeanne +Lorraine +Lucile +Molly +Rena +Sue +Alyce +Anastasia +Christina +Cora +Elinor +Fanny +Fay +Geraldine +Isabel +Matilda +Susie +Albina +Belle +Bernadette +Carol +Cecilia +Clare +Delia +Diana +Dolores +Filomena +Goldie +Janice +John +Joyce +Lauretta +Nina +Rachel +Rhoda +Roberta +Sara +Selma +Tessie +Tillie +Verna +Althea +Amy +Angie +Augusta +Camille +Concettina +Cornelia +Cynthia +Della +Erma +Frieda +Gilda +Helena +Ina +Isabell +June +Madeleine +Mamie +Marcella +Millicent +Millie +Nettie +Sebastiana +Stasia +Vincenza +Yolanda +Mary +Helen +Anna +Margaret +Dorothy +Ruth +Rose +Elizabeth +Josephine +Florence +Alice +Mildred +Frances +Eleanor +Lillian +Evelyn +Irene +Marie +Julia +Doris +Catherine +Marion +Jennie +Ann +Anne +Gertrude +Stella +Louise +Marjorie +Beatrice +Jean +Edith +Grace +Esther +Sophie +Pauline +Rita +Ethel +Virginia +Agnes +Katherine +Elsie +Lucy +Barbara +Gladys +Theresa +Nellie +Bertha +Olga +Edna +Laura +Bernice +Sylvia +Emma +Phyllis +Clara +Genevieve +Lena +Martha +Marguerite +Antoinette +Jane +Ida +Emily +Harriet +Viola +Charlotte +Muriel +Hazel +Victoria +Betty +Kathryn +Madeline +Sarah +Shirley +Angelina +Lois +Pearl +Wanda +Adele +Sally +Blanche +Caroline +Concetta +Nancy +Estelle +Celia +Constance +Mabel +Vera +Marian +Angeline +Ellen +Lucille +Olive +Anita +Carmela +Claire +Jeanette +Cecelia +Eileen +Eva +Loretta +Veronica +Winifred +Christine +Adeline +Bessie +Mae +Minnie +Regina +Carmella +Violet +Vivian +Henrietta +Natalie +Philomena +Amelia +Myrtle +Carolyn +Jessie +June +Maria +Angela +Carmel +Carol +Dora +Eunice +Janet +Jeannette +Sadie +Stephanie +Teresa +Dorothea +Fannie +Geraldine +Joan +Matilda +May +Tessie +Thelma +Arline +Elaine +Helene +Isabel +Kathleen +Annette +Ella +Isabelle +Norma +Rosalie +Susan +Alma +Cecilia +Edythe +Hedwig +Hilda +Jeanne +Miriam +Leona +Priscilla +Sophia +Ada +Alberta +Elvira +Wilma +Yvonne +Albina +Audrey +Elinor +Filomena +Marcella +Mollie +Yolanda +Adelaide +Arlene +Connie +Flora +Georgia +Irma +Madelyn +Nina +Patricia +Roberta +Sue +Susie +Antonette +Carrie +Eleanore +Elisabeth +Inez +Joyce +Molly +Rena +Rosemary +Ruby +Sabina +Sara +Stacia +Amy +Augusta +Beulah +Ernestine +Faith +Frieda +Leah +Lee +Rhoda +Selma +Wilhelmina +Alyce +Carmelina +Cora +Diana +Erma +Gloria +Harriett +Harriette +Hope +Ina +Julie +Katharine +Lorraine +Lottie +Lydia +Margery +Nora +Rachel +Rebecca +Rosa +Stasia +Vincenza +Althea +Annie +Astrid +Camilla +Daisy +Ebba +Faye +Felicia +Freda +Helena +Jenny +Johanna +Judith +Justine +Lela +Lenore +Linda +Lucile +Luella +Madeleine +Millie +Monica +Naomi +Rae +Roslyn +Santa +Tillie +Valeria +Yvette +Mary +Helen +Anna +Margaret +Dorothy +Rose +Elizabeth +Ruth +Josephine +Frances +Lillian +Florence +Marion +Ann +Catherine +Eleanor +Alice +Mildred +Evelyn +Marie +Anne +Doris +Jennie +Louise +Virginia +Irene +Grace +Sophie +Edith +Julia +Gertrude +Stella +Ethel +Beatrice +Elsie +Jean +Lucy +Katherine +Marjorie +Pauline +Rita +Barbara +Esther +Edna +Jane +Gladys +Bertha +Theresa +Antoinette +Olga +Genevieve +Bernice +Lena +Emma +Martha +Agnes +Viola +Charlotte +Nellie +Betty +Laura +Sylvia +Hazel +Eva +Kathryn +Lucille +Nancy +Emily +Ida +Loretta +Muriel +Phyllis +Shirley +Adeline +Angelina +Victoria +Winifred +Clara +Constance +Estelle +Harriet +Madeline +Marian +Anita +Caroline +Amelia +Ellen +Geraldine +Pearl +Lois +Marguerite +Thelma +Olive +Sarah +Vera +Wanda +Adele +Angeline +Carmela +Claire +Dorothea +Eileen +Henrietta +Veronica +Eunice +Janet +Vivian +Elinor +Mae +Natalie +Philomena +Angela +Blanche +Carolyn +Celia +Christine +Concetta +Isabelle +Jeanette +Regina +Minnie +Teresa +Cecelia +Leona +Norma +Bessie +Sally +Susan +Violet +Kathleen +Mabel +Patricia +Alma +Carmella +Maria +Matilda +Wilma +Helene +Isabel +Jeannette +Joan +Stephanie +Susie +Helena +May +Miriam +Alberta +Annette +Annie +Arlene +Ella +Hilda +June +Lydia +Jessie +Rosemary +Sadie +Verna +Yolanda +Arline +Carmel +Rosalie +Ada +Elvira +Fannie +Joyce +Mollie +Myrtle +Adelaide +Carol +Hedwig +Ruby +Sara +Sue +Cecilia +Dora +Eleanore +Inez +Irma +Jeanne +Lucia +Monica +Nora +Roberta +Amy +Elaine +Ernestine +Katharine +Lorraine +Molly +Yvonne +Beverly +Carmelina +Cora +Edythe +Eugenia +Fanny +Gwendolyn +Harriett +Luella +Peggy +Rosalind +Tessie +Tillie +Albina +Bernadette +Carrie +Connie +Dolores +Faye +Frieda +Lottie +Marcella +Margery +Rhoda +Selma +Stasia +Ursula +Althea +Audrey +Eve +Filomena +Gilda +Hannah +Janice +Julie +Justine +Lauretta +Lenore +Madeleine +Millie +Priscilla +Rhea +Rosa +Sophia +Stacia +Belle +Isabella +Kathrine +Lila +Madelyn +Marcia +Michelina +Naomi +Nina +Pasqualina +Alfreda +Alyce +Antonette +Berenice +Christina +Clare +Eloise +Fay +Fern +Flora +Freda +Georgia +Hope +Juliette +Leah +Marilyn +Maryann +Paula +Rachel +Rebecca +Rena +Rosina +Valerie +Mary +Helen +Anna +Dorothy +Margaret +Elizabeth +Ruth +Rose +Josephine +Frances +Florence +Alice +Lillian +Eleanor +Marion +Catherine +Mildred +Evelyn +Anne +Doris +Jennie +Marie +Irene +Virginia +Julia +Rita +Gertrude +Louise +Edith +Marjorie +Sophie +Beatrice +Ann +Stella +Barbara +Grace +Jean +Katherine +Theresa +Ethel +Agnes +Pauline +Lucy +Bernice +Lena +Edna +Elsie +Charlotte +Genevieve +Gladys +Jane +Olga +Esther +Phyllis +Nellie +Bertha +Harriet +Martha +Hazel +Sylvia +Betty +Emma +Ida +Antoinette +Lucille +Marguerite +Victoria +Eva +Muriel +Veronica +Clara +Nancy +Christine +Amelia +Emily +Vera +Shirley +Blanche +Laura +Lois +Madeline +Janet +Thelma +Loretta +Viola +Claire +Ellen +Kathryn +Sarah +Angeline +Eileen +Angelina +Estelle +Marian +Adeline +Anita +Helene +Adele +Kathleen +Winifred +Olive +Carmella +Joan +Myrtle +Wanda +Concetta +Geraldine +Hilda +Susan +Teresa +Vivian +Alma +Angela +Caroline +Cecelia +Constance +Eunice +Jeannette +Norma +Carmela +Arline +Jeanette +Violet +Mabel +Sally +Bessie +Matilda +Minnie +Natalie +Regina +Carolyn +Celia +Edythe +June +Pearl +Stephanie +Dorothea +Lorraine +Mae +Patricia +Yolanda +Ella +Jessie +Maria +Elinor +Fannie +Henrietta +Isabelle +Miriam +Elvira +Freda +Leona +Lottie +May +Mollie +Rosemary +Arlene +Audrey +Irma +Tessie +Annette +Inez +Julie +Philomena +Ada +Carol +Dora +Flora +Jeanne +Lydia +Sophia +Susie +Annie +Elaine +Hedwig +Selma +Sue +Alberta +Althea +Cecile +Connie +Gloria +Molly +Nora +Rena +Roberta +Alyce +Amy +Carmelina +Carrie +Janice +Millie +Nettie +Rebecca +Rosalie +Ruby +Sadie +Verna +Adelaide +Augusta +Beverly +Cecilia +Cora +Eleanore +Elisabeth +Eugenia +Joseph +Leah +Lucia +Wilma +Yvonne +Alfreda +Belle +Carmel +Cornelia +Dolores +Elsa +Erma +Fay +Filomena +Frieda +Harriett +Katharine +Mamie +Marcia +Rhoda +Rosa +Stacia +Tillie +Albina +Anastasia +Antonette +Concettina +Ernestine +Georgia +Isabel +Joyce +Madeleine +Peggy +Priscilla +Santina +Sara +Stephania +Bette +Beulah +Della +Etta +Felicia +Gwendolyn +Helena +Lauretta +Lenore +Lilyan +Maryann +Naomi +Nina +Rachel +Rosalind +Valerie +Yetta +Clementina +Daisy +Delia +Diane +Eve +Germaine +Hannah +Jacqueline +Lola +Mafalda +Margery +Michelina +Millicent +Monica +Phoebe +Velma +Mary +Helen +Anna +Dorothy +Margaret +Ruth +Elizabeth +Rose +Josephine +Frances +Evelyn +Florence +Lillian +Mildred +Marie +Eleanor +Alice +Marion +Ann +Doris +Anne +Virginia +Catherine +Irene +Sophie +Jennie +Barbara +Edith +Julia +Jean +Marjorie +Gertrude +Grace +Rita +Agnes +Louise +Ethel +Stella +Lucy +Pauline +Beatrice +Katherine +Esther +Theresa +Gladys +Shirley +Elsie +Jane +Bertha +Genevieve +Nellie +Antoinette +Edna +Sylvia +Olga +Betty +Lorraine +Lena +Charlotte +Ida +Phyllis +Emma +Laura +Marguerite +Bernice +Lucille +Lois +Nancy +Veronica +Harriet +Madeline +Emily +Victoria +Angelina +Hazel +Martha +Muriel +Marian +Eva +Clara +Pearl +Viola +Angeline +Vivian +Blanche +Claire +Ellen +Janet +Wanda +Vera +Loretta +Amelia +Estelle +Mae +Myrtle +Norma +Eunice +Patricia +Concetta +Alma +Constance +Jeannette +Miriam +Sally +Joan +Kathryn +Olive +Sarah +Caroline +Regina +Violet +Kathleen +Maria +Adele +Carmela +Christine +Eileen +Fannie +Geraldine +Annie +Bessie +Celia +Minnie +Thelma +Winifred +Carolyn +Cecelia +Helene +Anita +Arline +Carmella +Jeanette +June +Leona +Lydia +Rosemary +Stephanie +Susan +Angela +Arlene +Hedwig +Natalie +Philomena +Jeanne +Mabel +Adeline +Annette +Jessie +Sadie +Teresa +Flora +Rosalie +Yolanda +Audrey +Ella +Frieda +Henrietta +Mollie +Priscilla +Inez +Nora +Sophia +Tessie +Alberta +Albina +Cecilia +Dorothea +Elinor +Harriett +Hilda +Matilda +Rena +Alyce +Carmel +Edythe +Eleanore +Freda +Sara +Bella +Dolores +Dora +Isabelle +Millicent +Rachel +Adelaide +Bernadette +Connie +Gloria +Helena +Irma +Isabel +Madelyn +Nettie +Peggy +Roberta +Stacia +Althea +Carol +Cecile +Elaine +Janice +Lottie +Marcia +May +Susie +Yvonne +Beulah +Elvira +Erma +Joyce +Margery +Selma +Stasia +Ada +Anastasia +Camille +Elisabeth +Eloise +Eugenia +Filomena +Judith +Leah +Lily +Rhoda +Valeria +Wilma +Angie +Arlyne +Bette +Diana +Etta +Georgette +Harriette +Lauretta +Maude +Nina +Amy +Augusta +Bridget +Carmelina +Jenny +John +Katharine +Lee +Lenore +Louisa +Lucia +Mafalda +Marcella +Molly +Roslyn +Ruby +Sue +Verna +Alda +Antonette +Clare +Clarice +Clementine +Concettina +Delia +Elena +Evangeline +Faith +Fanny +Gwendolyn +Isabell +Leonora +Lilyan +Luella +Maryann +Maureen +Millie +Nell +Palma +Raffaela +Rebecca +Susanne +Wilhelmina +Yvette +Mary +Helen +Dorothy +Margaret +Anna +Elizabeth +Ruth +Rose +Josephine +Frances +Florence +Eleanor +Alice +Marion +Mildred +Doris +Lillian +Virginia +Irene +Evelyn +Ann +Catherine +Marie +Louise +Jennie +Rita +Jean +Julia +Marjorie +Anne +Gertrude +Grace +Barbara +Sophie +Edith +Stella +Esther +Pauline +Shirley +Beatrice +Agnes +Lucy +Jane +Theresa +Ethel +Gladys +Katherine +Edna +Genevieve +Bertha +Bernice +Elsie +Antoinette +Nellie +Betty +Martha +Olga +Lena +Sylvia +Phyllis +Charlotte +Clara +Emma +Emily +Lorraine +Hazel +Muriel +Angelina +Nancy +Lucille +Adeline +Marian +Harriet +Lois +Viola +Eileen +Madeline +Ida +Laura +Veronica +Caroline +Ellen +Eva +Janet +June +Kathryn +Victoria +Norma +Loretta +Marguerite +Constance +Amelia +Claire +Concetta +Patricia +Vivian +Angeline +Christine +Jeanette +Wanda +Geraldine +Sarah +Anita +Blanche +Pearl +Thelma +Jeanne +Olive +Vera +Adele +Annette +Carmela +Alma +Dorothea +Kathleen +Elaine +Ella +Mae +Arline +Cecelia +Natalie +Regina +Violet +Jeannette +Rosalie +Elinor +Myrtle +Philomena +Stephanie +Angela +Carmella +Carolyn +Joan +Sally +Eunice +Jessie +Teresa +Dora +Fannie +Isabelle +Minnie +Susan +Arlene +Celia +Tessie +Estelle +Henrietta +Irma +Janice +Sara +Sophia +Annie +Helene +Hilda +Leona +Lydia +Mabel +Maria +Bessie +Cecilia +Flora +Isabel +May +Priscilla +Rosemary +Winifred +Adelaide +Alberta +Eleanore +Freda +Miriam +Rachel +Sadie +Ada +Albina +Audrey +Beverly +Connie +Amy +Bella +Carol +Justine +Lottie +Matilda +Nora +Selma +Yolanda +Carmel +Dolores +Ernestine +Eugenia +Frieda +Marcia +Mollie +Roberta +Santina +Stacia +Susie +Cecile +Edythe +Elisabeth +Filomena +Gloria +Joyce +Julie +Madelyn +Nina +Wilma +Yvonne +Clare +Harriett +Hope +Lenore +Lola +Margery +Pasqualina +Rena +Rhoda +Beulah +Hannah +Hedwig +Helena +Jacqueline +Leah +Naomi +Nettie +Rebecca +Verna +Anastasia +Carmelina +Concettina +Cora +Cornelia +Edwina +Elvira +Enid +Fanny +Freida +Harriette +Marcella +Marilyn +Millie +Molly +Steffie +Tillie +William +Adella +Alda +Alicia +Althea +Belle +Bernadette +Clementine +Daisy +Delia +Della +Eloise +Emilie +Erma +Eve +Faith +Felicia +Goldie +Isabella +Iva +Joanna +Juanita +Katharine +Maxine +Paula +Ruby +Sonia +Stasia +Valeria +Mary +Helen +Dorothy +Margaret +Anna +Ruth +Elizabeth +Frances +Rose +Josephine +Eleanor +Florence +Doris +Evelyn +Marion +Alice +Mildred +Virginia +Irene +Barbara +Marie +Lillian +Catherine +Ann +Jean +Julia +Gertrude +Louise +Rita +Shirley +Marjorie +Anne +Jennie +Jane +Sophie +Edith +Grace +Gladys +Agnes +Beatrice +Theresa +Esther +Lucy +Ethel +Pauline +Katherine +Stella +Olga +Elsie +Betty +Genevieve +Lena +Nellie +Angelina +Bernice +Edna +Bertha +Phyllis +Muriel +Antoinette +Nancy +Charlotte +Martha +Sylvia +Eileen +Harriet +Eva +Lucille +Lois +Norma +Veronica +Marian +Janet +Marguerite +Wanda +Caroline +Madeline +Ida +Viola +Emily +Adeline +Angeline +Carmella +Laura +Amelia +Constance +Emma +Jeanette +Estelle +Jeanne +Lorraine +Hazel +Kathleen +Kathryn +Claire +Victoria +Blanche +Clara +Anita +Patricia +Pearl +Sarah +Vivian +Elaine +Geraldine +Arlene +Vera +Violet +Adele +Carmela +Joan +Ellen +Maria +Natalie +Eunice +Loretta +Mae +Carolyn +June +Winifred +Cecilia +Arline +Concetta +Miriam +Elinor +Thelma +Audrey +Christine +Helene +Minnie +Priscilla +Regina +Susan +Alma +Annette +Ella +Mabel +Philomena +Teresa +Bessie +Dolores +Jeannette +Annie +Cecelia +Celia +Dorothea +Leona +Carmel +Irma +Isabelle +Alyce +Hilda +Lottie +Lydia +Olive +Rosalie +Angela +Beverly +Elvira +Jessie +Matilda +Myrtle +Freda +Joyce +Justine +Rosemary +Selma +Tessie +Dora +Eleanore +Henrietta +Marcia +Margery +Nora +Sally +Sara +Stephanie +Carol +Eugenia +Yolanda +Yvonne +Ada +Adelaide +Alberta +Cynthia +Fannie +Gloria +Jenny +Judith +Madelyn +Verna +Cecile +Filomena +Hope +Leah +Nina +Rena +Roberta +Ruby +Anastasia +Flora +Helena +Jacqueline +Peggy +Rebecca +Sadie +Susie +Beulah +Carrie +Clarice +Corinne +Hannah +Isabel +Janice +Juliette +Leila +Marcella +Rachel +Stacia +Vincenza +Wilma +Albina +Annamae +Bella +Christina +Edythe +Elsa +Fanny +Felicia +John +Lenore +Mafalda +Mollie +Santina +Sophia +Suzanne +Theodora +Althea +Ernestine +Eve +Gilda +Harriett +Hedwig +Katharine +Lila +Linda +Olympia +Roslyn +Valeria +Antonette +Bette +Bridget +Camille +Clementina +Connie +Diana +Dorcas +Elnora +Eloise +Fay +Isabella +Jayne +Johanna +Louisa +Lucia +Madaline +Paula +Rae +Rosella +Rosina +Sue +Ursula +Velma +Mary +Helen +Dorothy +Margaret +Anna +Ruth +Elizabeth +Frances +Rose +Josephine +Evelyn +Florence +Alice +Eleanor +Marion +Doris +Mildred +Virginia +Lillian +Irene +Shirley +Barbara +Catherine +Jean +Marjorie +Marie +Louise +Rita +Grace +Ann +Anne +Beatrice +Gertrude +Julia +Jane +Jennie +Edith +Sophie +Theresa +Betty +Pauline +Ethel +Phyllis +Katherine +Lucy +Genevieve +Stella +Gladys +Antoinette +Agnes +Edna +Lena +Clara +Muriel +Elsie +Olga +Bernice +Nancy +Emily +Lois +Lucille +Martha +Charlotte +Esther +Claire +Harriet +Sylvia +Laura +Gloria +Marguerite +Norma +Angelina +Bertha +Janet +Loretta +Lorraine +Eva +Viola +Wanda +Jeanette +Constance +Eileen +Ida +Madeline +Patricia +Veronica +Victoria +June +Angeline +Anita +Vivian +Kathleen +Marian +Arline +Nellie +Amelia +Adeline +Annette +Caroline +Emma +Jeanne +Jeannette +Kathryn +Thelma +Carmella +Pearl +Alma +Carmela +Geraldine +Hazel +Regina +Elaine +Arlene +Christine +Concetta +Vera +Ella +Eunice +Teresa +Winifred +Adele +Joan +Sarah +Violet +Angela +Blanche +Carolyn +Estelle +Leona +Mabel +Miriam +Rosemary +Dorothea +Ellen +Hilda +Jessie +Mae +Olive +Audrey +Beverly +Cecelia +Philomena +Annie +Carol +Celia +Dolores +Matilda +Sadie +Elinor +Natalie +Stephanie +Isabel +Maria +Susan +Dora +Helene +Minnie +Myrtle +Rosalie +Ruby +Yolanda +Alyce +Carmel +Eugenia +Irma +Isabelle +Jacqueline +Marcella +May +Priscilla +Roberta +Eleanore +Elvira +Fannie +Ada +Alberta +Flora +Hedwig +Joyce +Lydia +Susie +Albina +Bette +Carmelina +Gilda +Henrietta +Hope +Madelyn +Marilyn +Tessie +Bessie +Janice +Margery +Rhoda +Cecile +Julie +Lottie +Molly +Sally +Selma +Stacia +Adelaide +Carmen +Ernestine +Georgia +Inez +Nora +Rachel +Sophia +Amy +Anastasia +Cecilia +Connie +Corinne +Eleanora +Fanny +Margie +Nettie +Rena +Rosalind +Vincenza +Annamae +Bernadette +Cora +Edythe +Freda +Harriett +Helena +Joanne +Joseph +Marcia +Millicent +Millie +Monica +Myra +Naomi +Nina +Palma +Rebecca +Rosa +Sabina +Therese +Valerie +Yvonne +Alfreda +Alvina +Annabelle +Beulah +Camille +Diana +Elena +Etta +Faith +Fern +Filomena +George +Georgiana +Goldie +Isabell +Jenny +Juanita +Lucia +Luella +Maxine +Santina +Sara +Stasia +Suzanne +Mary +Helen +Dorothy +Margaret +Ruth +Anna +Elizabeth +Rose +Frances +Doris +Josephine +Shirley +Florence +Virginia +Marion +Mildred +Irene +Barbara +Evelyn +Lillian +Alice +Eleanor +Marie +Jean +Ann +Anne +Marjorie +Rita +Catherine +Louise +Grace +Betty +Edith +Jane +Jennie +Pauline +Gloria +Lucy +Beatrice +Julia +Theresa +Gertrude +Katherine +Phyllis +Genevieve +Bernice +Gladys +Sophie +Stella +Ethel +Agnes +Elsie +Muriel +Nancy +Charlotte +Constance +Lucille +Martha +Norma +Bertha +Lois +Lorraine +Antoinette +Edna +Laura +Sylvia +Lena +Janet +Angelina +Eileen +Ida +Olga +Victoria +Esther +Jeanne +Marguerite +Viola +Clara +Loretta +June +Pearl +Veronica +Emma +Claire +Eunice +Patricia +Wanda +Amelia +Emily +Geraldine +Hazel +Kathryn +Jeanette +Madeline +Elaine +Harriet +Thelma +Carolyn +Joan +Concetta +Estelle +Mae +Marian +Sarah +Anita +Carmella +Carmela +Carol +Eva +Rosemary +Vivian +Winifred +Helene +Olive +Violet +Angeline +Jeannette +Kathleen +Nellie +Susan +Adeline +Arlene +Cecelia +Ellen +May +Audrey +Cecilia +Natalie +Philomena +Angela +Arline +Blanche +Caroline +Christine +Lydia +Vera +Hilda +Flora +Jacqueline +Miriam +Regina +Sally +Adele +Celia +Jessie +Joyce +Leona +Maria +Myrtle +Teresa +Bessie +Isabel +Mabel +Minnie +Yolanda +Dorothea +Eleanore +Susie +Alyce +Annie +Dora +Henrietta +Isabelle +Marilyn +Alma +Elinor +Annette +Cecile +Fannie +Irma +Stephanie +Carmelina +Ella +Leah +Matilda +Nina +Yvonne +Adelaide +Beverly +Carmel +Rachel +Rhoda +Roberta +Ada +Alberta +Carrie +Filomena +Hedwig +Jenny +Judith +Madelyn +Margery +Priscilla +Rosalie +Roslyn +Corinne +Dolores +Frieda +Harriett +Hope +Janice +Marcia +Peggy +Ruby +Sadie +Santina +Sara +Selma +Stasia +Suzanne +Wilma +Connie +Eugenia +Faith +Fanny +Lee +Maureen +Naomi +Vincenza +Althea +Amy +Antonette +Bernadette +Cora +Elvira +Helena +Inez +Julie +Lottie +Michelina +Millicent +Molly +Monica +Nora +Robert +Rosalind +Sophia +Theodora +Therese +Albina +Anastasia +Avis +Bette +Clare +Clarice +Daisy +Edwina +Elda +Elena +Elvera +Emilie +Erma +Ernestine +Georgia +Goldie +Isabell +Isabella +Leonora +Lucia +Madeleine +Marjory +Millie +Palma +Sonia +Stacia +Tina +Velma +Verna +Mary +Helen +Dorothy +Margaret +Ruth +Elizabeth +Anna +Rose +Frances +Shirley +Doris +Barbara +Josephine +Virginia +Florence +Marion +Eleanor +Irene +Evelyn +Lillian +Marie +Mildred +Alice +Jean +Marjorie +Ann +Catherine +Jane +Rita +Louise +Betty +Anne +Gloria +Jennie +Beatrice +Grace +Gertrude +Edith +Julia +Sophie +Elsie +Nancy +Phyllis +Lucy +Agnes +Ethel +Gladys +Antoinette +Katherine +Lois +Pauline +Theresa +Muriel +Patricia +Genevieve +Eileen +June +Lorraine +Bernice +Stella +Claire +Janet +Edna +Jeanne +Olga +Clara +Elaine +Norma +Viola +Carolyn +Loretta +Lucille +Angelina +Lena +Constance +Esther +Laura +Marian +Emma +Sylvia +Bertha +Charlotte +Kathleen +Martha +Emily +Hazel +Ida +Jeanette +Veronica +Marguerite +Angeline +Geraldine +Pearl +Vivian +Madeline +Nellie +Wanda +Ellen +Eva +Thelma +Victoria +Winifred +Anita +Christine +Kathryn +Beverly +Carmela +Joyce +Miriam +Audrey +Concetta +Harriet +Arlene +Caroline +Arline +Sarah +Vera +Amelia +Rosemary +Susan +Eunice +Adele +Alma +Jeannette +Joan +Natalie +Teresa +Adeline +Annette +Blanche +Hilda +Mae +Celia +Elinor +Isabelle +Marilyn +Priscilla +Sally +Angela +Dolores +Yolanda +Marcia +Regina +Carmella +Dorothea +Flora +Leona +Olive +Bette +Carol +Cecile +Cecilia +Helene +Violet +Filomena +Judith +Lydia +Philomena +Stephanie +Cecelia +Ella +Estelle +Hedwig +Irma +Isabel +Jessie +Myrtle +Carmel +Hope +Margery +May +Rachel +Eleanore +Faye +Inez +Jacqueline +Janice +Minnie +Roberta +Rosalie +Alyce +Annie +Dora +Frieda +Helena +Mabel +Sadie +Carmelina +Corinne +Faith +Fannie +Henrietta +John +Justine +Matilda +Stacia +Susie +Amy +Connie +Elvira +Eugenia +Nina +Ruby +Verna +Wilma +Ada +Alberta +Albina +Bessie +Camille +Edythe +Georgia +Georgianna +Harriett +Jenny +Johanna +Julie +Katharine +Lila +Madeleine +Madelyn +Maryjane +Rena +Rhoda +Yvonne +Althea +Bernadette +Carrie +Eve +Georgette +Gilda +Leah +Maria +Maryann +Naomi +Nettie +Santina +Selma +Annamae +Antonette +Carmen +Cora +Diana +Elena +Emilie +Erma +Fay +Geneva +Isabella +Jayne +Lenore +Marcella +Marianna +Merle +Palma +Rosalyn +Sabina +Shirlee +Tessie +Therese +Mary +Helen +Dorothy +Margaret +Shirley +Ruth +Frances +Elizabeth +Anna +Eleanor +Rose +Marie +Jean +Josephine +Evelyn +Doris +Barbara +Florence +Virginia +Irene +Marion +Lillian +Mildred +Jane +Ann +Alice +Rita +Gloria +Catherine +Marjorie +Betty +Anne +Grace +Phyllis +Jennie +Louise +Julia +Theresa +Lucy +Claire +Edith +Gertrude +Lois +Nancy +Beatrice +Muriel +Patricia +Agnes +Pauline +Edna +Antoinette +Janet +Sophie +Elsie +Gladys +Katherine +Bertha +Genevieve +Lucille +Norma +Stella +Lorraine +Bernice +Lena +Ethel +June +Laura +Olga +Esther +Charlotte +Martha +Elaine +Eileen +Marian +Constance +Madeline +Angelina +Jeanne +Marguerite +Emma +Rosemary +Clara +Geraldine +Pearl +Joan +Kathleen +Sylvia +Ida +Vera +Harriet +Hazel +Thelma +Emily +Nellie +Wanda +Carmella +Caroline +Joyce +Viola +Beverly +Ellen +Jeanette +Marilyn +Loretta +Carolyn +Miriam +Adeline +Amelia +Audrey +Dolores +Eva +Jeannette +Philomena +Arlene +Cecelia +Janice +Roberta +Veronica +Angeline +Anita +Christine +Concetta +Sarah +Violet +Vivian +Arline +Carol +Kathryn +Natalie +Regina +Winifred +Blanche +Eunice +Sally +Adele +Carmela +Susan +Estelle +Hilda +Lydia +Mabel +Priscilla +Teresa +Yolanda +Celia +Ella +Rosalie +Angela +Isabel +Annette +Elinor +Jacqueline +Leona +Myrtle +Olive +Victoria +Cecilia +Flora +Alma +Bessie +Bette +Connie +Isabelle +Mae +Sara +Selma +Stephanie +Alberta +Carmel +Eugenia +Jessie +Margery +Nora +Susie +Theodora +Irma +Rosemarie +Annie +Corinne +Dorothea +Eleanore +Elvira +Filomena +Georgia +Henrietta +Nina +Rachel +Rhoda +Ruby +Ada +Cecile +Ernestine +Helena +Julie +Madeleine +Minnie +Wilma +Yvonne +Althea +Corrine +Dora +Faith +Helene +Judith +May +Millicent +Tessie +Alyce +Bernadette +Fannie +Georgette +Hedwig +Isabella +Jayne +Marcia +Maria +Marianna +Maxine +Monica +Robert +Alfreda +Carmelina +Carrie +Claudia +Cynthia +Edythe +Elinore +Elisabeth +Elvera +Fern +Harriett +Inez +Jenny +Johanna +Lila +Mafalda +Molly +Nettie +Rena +Roslyn +Sadie +Stacia +Tina +Ursula +Albina +Amy +Anastasia +Arleen +Bella +Beulah +Clare +Dawn +Edwina +Elsa +Evangeline +Freda +Gwendolyn +Hannah +Hope +Justine +Kay +Leah +Lenora +Lenore +Lucia +Mamie +Marcella +Marjory +Maryjane +Matilda +Maureen +Palma +Ruthe +Vincenza +Mary +Helen +Dorothy +Margaret +Elizabeth +Ruth +Shirley +Anna +Barbara +Eleanor +Jean +Rose +Doris +Irene +Frances +Gloria +Marie +Florence +Josephine +Virginia +Marion +Mildred +Lillian +Evelyn +Alice +Betty +Rita +Ann +Marjorie +Jane +Catherine +Theresa +Louise +Anne +Phyllis +Lucille +Lorraine +Grace +Lois +Jennie +Pauline +Joan +Patricia +Nancy +Edith +Beatrice +Genevieve +Muriel +Janet +Antoinette +June +Lucy +Jeanne +Julia +Gladys +Sophie +Gertrude +Ethel +Katherine +Agnes +Marian +Stella +Bernice +Norma +Elsie +Elaine +Arlene +Eileen +Martha +Bertha +Esther +Charlotte +Harriet +Audrey +Constance +Angelina +Jeannette +Claire +Lena +Laura +Marguerite +Olga +Rosemary +Carmella +Emily +Eva +Clara +Edna +Thelma +Beverly +Geraldine +Priscilla +Sylvia +Teresa +Viola +Anita +Arline +Carmela +Eunice +Hazel +Marilyn +Vera +Kathleen +Madeline +Carolyn +Ida +Victoria +Caroline +Christine +Ellen +Joyce +Loretta +Carol +Concetta +Janice +Nellie +Sally +Veronica +Vivian +Jeanette +Angeline +Jacqueline +Adele +Amelia +Natalie +Regina +Susan +Violet +Wanda +Yolanda +Dolores +Blanche +Elinor +Kathryn +Winifred +Estelle +Pearl +Philomena +Adeline +Angela +Annette +Mae +Roberta +Cecilia +Celia +Emma +Henrietta +Mabel +Sarah +Helene +Isabel +Rosalie +Alma +Bessie +Eleanore +Lydia +Carmel +Cecelia +Dorothea +Irma +Maria +Miriam +Annie +Rosemarie +Verna +Dora +Hilda +Leona +Myrtle +Olive +Rena +Rhoda +Alberta +Ella +Jessie +Rachel +Judith +Adelaide +Corinne +Lenore +Madelyn +Peggy +Albina +Elvira +Fannie +Isabelle +Justine +Marcia +May +Millicent +Rosina +Ruby +Sara +Valerie +Wilma +Yvonne +Alyce +Bernadette +Bette +Cora +Edythe +Ernestine +Flora +Jacquelyn +John +Madeleine +Marcella +Nora +Rosa +Sadie +Selma +Sheila +Stephanie +Susie +Alda +Amy +Betsy +Carmelina +Cecile +Evangeline +Faith +Filomena +Georgette +Hope +Inez +Matilda +Mollie +Rosalind +Santina +Shirlee +Suzanne +William +Ada +Aldona +Alfreda +Angie +Annabelle +Antonette +Connie +Cynthia +Delia +Eloise +Francis +Freda +Gwendolyn +Helena +Jayne +Joy +Juanita +Leatrice +Lee +Lorna +Maude +Maxine +Minnie +Naomi +Noreen +Palma +Paula +Penelope +Robert +Mary +Dorothy +Helen +Shirley +Barbara +Ruth +Margaret +Jean +Elizabeth +Anna +Rose +Doris +Frances +Eleanor +Irene +Marie +Virginia +Theresa +Josephine +Florence +Gloria +Alice +Betty +Lillian +Rita +Marion +Mildred +Ann +Jane +Evelyn +Lois +Marjorie +Catherine +Lorraine +Phyllis +Louise +Anne +Patricia +Nancy +Grace +Jennie +Joan +Gertrude +June +Edith +Elaine +Gladys +Lucille +Antoinette +Jeanne +Beatrice +Norma +Katherine +Julia +Bernice +Lucy +Muriel +Claire +Elsie +Marilyn +Ethel +Kathleen +Joyce +Bertha +Pauline +Sylvia +Beverly +Stella +Edna +Genevieve +Sophie +Agnes +Dolores +Harriet +Marguerite +Martha +Laura +Arlene +Audrey +Eileen +Esther +Jacqueline +Janet +Marian +Angelina +Clara +Constance +Olga +Charlotte +Emily +Lena +Carolyn +Geraldine +Rosemary +Jeanette +Ellen +Eva +Teresa +Blanche +Eunice +Pearl +Wanda +Carmela +Carmella +Ida +Sally +Victoria +Arline +Caroline +Emma +Madeline +Rosalie +Therese +Viola +Kathryn +Thelma +Angeline +Carol +Janice +Loretta +Natalie +Sarah +Susan +Vivian +Amelia +Annette +Concetta +Priscilla +Regina +Christine +Estelle +Jeannette +Violet +Angela +Anita +Judith +Leona +Rosemarie +Vera +Alma +Cecelia +Philomena +Yolanda +Adeline +Adele +Alberta +Elinor +Hazel +Irma +Mabel +Veronica +Winifred +Dorothea +Roberta +Cecilia +Flora +Corinne +Elvira +Hilda +Maria +Olive +Althea +Cynthia +Isabel +Isabelle +Jessie +Marcia +Miriam +Suzanne +Bessie +Bette +Celia +Henrietta +John +Lydia +May +Nellie +Ada +Cecile +Connie +Diana +Eleanore +Gwendolyn +Lenore +Margery +Matilda +Myrtle +Peggy +Sara +Amy +Fannie +Harriett +Helene +Annie +Bernadette +Carmelina +Ella +Georgette +Joy +Lila +Mae +Molly +Rhoda +Stephanie +Faye +Filomena +Gene +Hope +Jenny +Joseph +Linda +Madelyn +Mamie +Maryjane +Millie +Minnie +Naomi +Rachel +Selma +Yvonne +Albina +Antonette +Daisy +Elena +Elva +Faith +Lee +Marcella +Mollie +Nina +Palma +Sue +Tessie +Vincenza +Wilma +Alyce +Beryl +Christina +Corrine +Edythe +Effie +Ernestine +Fanny +Georgia +Georgiana +Gilda +Hedwig +Joann +Joanne +Katharine +Lucia +Marjory +Maureen +Maxine +Millicent +Monica +Nettie +Phoebe +Renee +Sadie +Sandra +Sheila +Susie +Verna +Mary +Dorothy +Helen +Barbara +Shirley +Jean +Margaret +Elizabeth +Ruth +Anna +Marie +Theresa +Rose +Doris +Frances +Irene +Florence +Virginia +Eleanor +Marion +Evelyn +Josephine +Gloria +Alice +Betty +Lillian +Lorraine +Patricia +Jane +Lois +Mildred +Ann +Rita +Catherine +Joan +Phyllis +Nancy +Anne +Louise +Marjorie +Beverly +Grace +June +Lucille +Marilyn +Norma +Jennie +Pauline +Dolores +Jeanne +Beatrice +Claire +Edith +Antoinette +Ethel +Gladys +Lucy +Agnes +Janet +Joyce +Katherine +Genevieve +Martha +Audrey +Gertrude +Charlotte +Julia +Sophie +Elaine +Harriet +Esther +Geraldine +Marguerite +Muriel +Madeline +Bernice +Elsie +Edna +Jacqueline +Arlene +Ellen +Constance +Kathleen +Blanche +Lena +Rosemary +Teresa +Angelina +Carolyn +Priscilla +Sylvia +Anita +Carmella +Emily +Laura +Stella +Viola +Caroline +Eileen +Hazel +Jeanette +Jeannette +Vivian +Carol +Loretta +Pearl +Christine +Clara +Eunice +Olga +Roberta +Veronica +Wanda +Marian +Angeline +Winifred +Adele +Arline +Bertha +Carmela +Elinor +Eva +Janice +Natalie +Ida +Kathryn +Nellie +Regina +Sally +Thelma +Vera +Yolanda +Concetta +Gilda +Adeline +Angela +Flora +Jessie +Susan +Therese +Violet +Annette +Corinne +Maria +Sarah +Bessie +Cecile +Connie +Ernestine +Miriam +Philomena +Rosalie +Cecilia +Emma +Estelle +Georgette +Henrietta +Leona +Selma +Alberta +Dorothea +Inez +Joanne +Mae +Suzanne +Victoria +Alma +Cynthia +Helene +Irma +Isabelle +Judith +Mabel +May +Myrtle +Amelia +Annie +Cecelia +Hilda +John +Rachel +Rosemarie +Susie +Celia +Elvira +Isabel +Olive +Rena +Valerie +William +Betsy +Beverley +Carmelina +Clare +Dora +Georgia +Helena +Madelyn +Maureen +Naomi +Peggy +Adrienne +Bernadette +Faith +Leatrice +Minnie +Robert +Rosalind +Rosina +Ruby +Sadie +Sara +Vilma +Wilma +Ada +Adelaide +Avis +Beryl +Bette +Eleanore +Filomena +Frieda +Gwendolyn +Jacquelyn +Justine +Lenore +Lydia +Marcia +Matilda +Nina +Rhoda +Theodora +Verna +Yvette +Albina +Althea +Antonette +Carmel +Carrie +Cora +Corrine +Edythe +Elise +Elvera +Eugenia +Georgianna +Germaine +Johanna +Joseph +Lucia +Lucretia +Mafalda +Margery +Mavis +Nora +Rosa +Stephanie +Mary +Dorothy +Barbara +Helen +Shirley +Jean +Margaret +Elizabeth +Ruth +Frances +Marie +Doris +Lorraine +Eleanor +Theresa +Irene +Rose +Anna +Patricia +Florence +Marion +Alice +Betty +Gloria +Josephine +Evelyn +Joan +Virginia +Ann +Nancy +Catherine +Jane +Lois +Rita +Dolores +Lillian +Mildred +Phyllis +Louise +Marjorie +Anne +Grace +June +Lucille +Edith +Beverly +Norma +Beatrice +Marilyn +Claire +Gertrude +Jeanne +Joyce +Pauline +Jennie +Janet +Antoinette +Carol +Elaine +Agnes +Audrey +Lucy +Bernice +Gladys +Katherine +Elsie +Julia +Ethel +Marian +Martha +Charlotte +Eileen +Clara +Jacqueline +Kathleen +Rosemary +Constance +Edna +Genevieve +Muriel +Angelina +Laura +Janice +Sally +Sophie +Teresa +Vivian +Carolyn +Geraldine +Madeline +Olga +Arlene +Esther +Carmela +Jeanette +Loretta +Rosemarie +Sylvia +Therese +Anita +Ellen +Emily +Jeannette +Caroline +Pearl +Priscilla +Thelma +Arline +Bertha +Blanche +Marguerite +Natalie +Roberta +Violet +Wanda +Annette +Christine +Emma +Angeline +Concetta +Mae +Sarah +Viola +Delores +Selma +Susan +Vera +Veronica +Eva +Harriet +Hazel +Stella +Estelle +Judith +Kathryn +Diane +Eunice +Olive +Alberta +Angela +Carmella +Irma +Celia +Ida +Jessie +Joanne +Lena +Maria +Nellie +Rosalie +Winifred +Bessie +Cecelia +Henrietta +Isabelle +Leona +Lydia +Maureen +Victoria +Elinor +Julie +Mabel +Marcia +Miriam +Nina +Yolanda +Adele +Adeline +Bette +Carmel +Cecile +Ella +Rhoda +Yvette +Alma +Bernadette +Corinne +Cynthia +Dorothea +Myrtle +Philomena +Theodora +Amelia +Betsy +Faith +Hilda +Isabel +Naomi +Peggy +Ramona +Regina +Suzanne +Alyce +Carmelina +Eleanore +Elvira +Eugenia +Georgia +Helene +Justine +Lila +Margery +Paula +Sheila +Vilma +William +Wilma +Filomena +Frieda +Glenna +Helena +Johanna +Linda +Loraine +Maryann +Matilda +Minnie +Palma +Rachel +Sara +Yvonne +Ada +Adelaide +Annie +Cecilia +Cora +Freda +Gilda +Inez +Isabella +Jacquelyn +Lorna +Marianne +Maxine +May +Rae +Rena +Rosalind +Roslyn +Ruby +Sonia +Stephanie +Aileen +Diana +Dora +Fay +Georgette +Juliette +Lenore +Madeleine +Madelyn +Marcella +Myra +Robert +Susie +Tessie +Velma +Mary +Barbara +Dorothy +Jean +Helen +Elizabeth +Shirley +Margaret +Doris +Marie +Eleanor +Lorraine +Ruth +Irene +Dolores +Joan +Anna +Patricia +Betty +Frances +Theresa +Florence +Rose +Ann +Marion +Gloria +Rita +Josephine +Lois +Evelyn +Nancy +Alice +Catherine +Virginia +Louise +Jane +Lillian +Phyllis +Beverly +Marilyn +Marjorie +Mildred +Anne +Carol +Joyce +Janet +Audrey +June +Jeanne +Elaine +Norma +Claire +Edith +Lucille +Grace +Rosemary +Gertrude +Pauline +Lucy +Antoinette +Charlotte +Katherine +Muriel +Sally +Julia +Carolyn +Geraldine +Jacqueline +Beatrice +Gladys +Ethel +Agnes +Ellen +Esther +Arlene +Jennie +Kathleen +Madeline +Bernice +Genevieve +Loretta +Sophie +Vivian +Eileen +Harriet +Laura +Constance +Clara +Marian +Priscilla +Jeannette +Olga +Teresa +Angelina +Elsie +Martha +Christine +Jeanette +Carmela +Edna +Emily +Sylvia +Anita +Janice +Pearl +Viola +Leona +Rosemarie +Stella +Arline +Regina +Rosalie +Bertha +Carmella +Hazel +Joanne +Marguerite +Roberta +Eunice +Ida +Susan +Vera +Annette +Blanche +Cynthia +Diana +Eva +Winifred +Myrtle +Victoria +Amelia +Angela +Concetta +Lena +Sarah +Diane +Maria +Therese +Adele +Caroline +Isabelle +Mabel +Natalie +Veronica +Bette +Corinne +Elinor +Irma +Kathryn +Violet +Adeline +Angeline +Dorothea +Emma +Marcia +Thelma +Wanda +Delores +Ella +Jacquelyn +Jeannine +Judith +Philomena +Cecelia +Faith +Jessie +Katharine +Lydia +Olive +Yolanda +Bernadette +Bessie +Madelyn +Mae +Margery +Matilda +Miriam +Nellie +Rachel +Suzanne +Annie +Cecilia +Connie +Estelle +Fay +Isabel +Maryann +Maureen +Peggy +Rhoda +Robert +Yvonne +Alma +Camille +Fannie +Helene +Henrietta +Hilda +Joseph +Julie +Pamela +Ramona +Ruby +Sandra +Selma +Sheila +Sue +Vilma +Betsy +Carmel +Cecile +Edythe +Eleanore +Elvira +Germaine +Helena +Lila +Marcella +Marianne +Myra +Naomi +Nina +Noreen +Velma +Yvette +Althea +Amy +Carole +Cora +Corrine +Deborah +Dora +Edward +Eloise +Enid +Eugenia +Filomena +Florine +Geneva +Georgette +Georgia +Gilda +Gwendolyn +Luella +Marylou +Maxine +May +Minnie +Roslyn +Susie +Valerie +William +Wilma +Mary +Barbara +Dorothy +Joan +Jean +Shirley +Margaret +Elizabeth +Helen +Patricia +Nancy +Marie +Ruth +Dolores +Ann +Eleanor +Doris +Theresa +Anna +Betty +Frances +Lorraine +Irene +Rose +Gloria +Lois +Josephine +Evelyn +Marion +Rita +Virginia +Alice +Jane +Marilyn +Phyllis +Janet +Florence +Lillian +Louise +Joyce +Beverly +Catherine +Mildred +Anne +June +Marjorie +Elaine +Jeanne +Lucille +Norma +Claire +Carol +Grace +Audrey +Antoinette +Pauline +Beatrice +Katherine +Bernice +Agnes +Edith +Julia +Carolyn +Geraldine +Sally +Jacqueline +Arlene +Gertrude +Lucy +Jeanette +Anita +Constance +Rosemary +Gladys +Charlotte +Elsie +Janice +Vivian +Kathleen +Angelina +Madeline +Roberta +Marguerite +Muriel +Harriet +Martha +Caroline +Ellen +Esther +Ethel +Jeannette +Maureen +Sophie +Eileen +Genevieve +Joanne +Judith +Stella +Viola +Angela +Edna +Jennie +Loretta +Rosemarie +Carmela +Concetta +Marian +Pearl +Emily +Natalie +Priscilla +Susan +Sylvia +Teresa +Ida +Laura +Vera +Helene +Olga +Sarah +Thelma +Bertha +Carmella +Eva +Kathryn +Violet +Annette +Christine +Cynthia +Arline +Clara +Delores +Elinor +Estelle +Lena +Maria +Rosalie +Wanda +Amelia +Diane +Marcia +Philomena +Regina +Cecile +Miriam +Cecelia +Eunice +Marianne +Therese +Veronica +Angeline +Blanche +Helena +Jeannine +Leona +Maryann +Nellie +Victoria +Adeline +Alberta +Dora +Elvira +Ernestine +Flora +Hazel +Ina +Alma +Annie +Betsy +Cecilia +Corinne +Dorothea +Eleanore +Ella +Kay +Lila +Lydia +Mae +Matilda +Naomi +Selma +Suzanne +Wilma +Yolanda +Adelaide +Adele +Althea +Diana +Emma +Georgette +Greta +Hilda +Isabelle +Jessie +Joy +Justine +Bernadette +Celia +Corrine +Donna +Fannie +Gwendolyn +Irma +Madeleine +Marcella +Myrna +Myrtle +Paula +Peggy +Rachel +Rhoda +William +Winifred +Yvette +Aline +Bessie +Carmel +Carole +Faith +Faye +Filomena +Georgia +Jacquelyn +Julie +Juliette +Olive +Rae +Valerie +Vincenza +Yvonne +Beryl +Bette +Carmen +Colleen +Doreen +Eloise +Gail +Isabel +James +Jayne +Joann +Johanna +John +Joseph +Laurel +Linda +Mabel +Nina +Sheila +Stephanie +Sue +Mary +Barbara +Joan +Dorothy +Jean +Elizabeth +Helen +Patricia +Nancy +Margaret +Shirley +Ann +Lorraine +Betty +Marie +Dolores +Ruth +Frances +Rose +Anna +Irene +Joyce +Theresa +Eleanor +Virginia +Doris +Gloria +Janet +Evelyn +Rita +Marilyn +Marion +Alice +Lois +Josephine +Jane +Catherine +Lillian +Phyllis +Carol +Beverly +Louise +Claire +Anne +June +Grace +Florence +Lucille +Elaine +Marjorie +Mildred +Norma +Pauline +Jeanne +Edith +Jacqueline +Geraldine +Audrey +Antoinette +Beatrice +Carolyn +Constance +Arlene +Charlotte +Gertrude +Sally +Jeanette +Lucy +Ethel +Kathleen +Katherine +Anita +Gladys +Loretta +Maureen +Rosemary +Judith +Laura +Sylvia +Bernice +Harriet +Janice +Ellen +Jeannette +Marguerite +Julia +Elsie +Muriel +Rosemarie +Agnes +Marian +Vivian +Eileen +Genevieve +Natalie +Roberta +Angela +Clara +Esther +Jennie +Martha +Angelina +Cynthia +Teresa +Adele +Joanne +Ida +Sarah +Carmella +Eva +Lena +Marcia +Peggy +Violet +Concetta +Edna +Emily +Eunice +Arline +Diane +Estelle +Marlene +Regina +Susan +Victoria +Faith +Olga +Stella +Suzanne +Bertha +Caroline +Christine +Hazel +Viola +Annette +Bette +Leona +Madeline +Therese +Yolanda +Delores +Dora +Elinor +Kathryn +Margery +Priscilla +Sandra +Sophie +Thelma +Veronica +Winifred +Yvonne +Adeline +Alma +Blanche +Connie +Joann +Maryann +Rosalie +Sheila +Carmela +Marcella +Philomena +Rachel +Vera +Cecelia +Cecile +Dorothea +Emma +Gwendolyn +Irma +Jeannine +Nellie +Flora +Georgianna +Isabelle +Lenore +Mabel +Marianne +Myrtle +Naomi +Valerie +Wanda +Amelia +Angeline +Bernadette +Clare +Diana +Helene +Henrietta +Isabel +Joy +Lydia +Maria +Millicent +Minnie +Noreen +Verna +Beryl +Bessie +Carole +Corinne +Corrine +Deborah +Elvira +Jacquelyn +Jessie +Julie +Nina +Olive +Robert +Sara +Selma +Alberta +Annie +Betsy +Carrie +Cecilia +Cora +Doreen +Ella +Eloise +Ernestine +George +Georgette +Georgia +Hilda +Hope +Justine +Lorna +Margie +Marylou +May +Olympia +Paula +Sue +Theodora +Mary +Barbara +Joan +Dorothy +Patricia +Jean +Margaret +Elizabeth +Nancy +Helen +Shirley +Dolores +Marie +Ruth +Marilyn +Ann +Betty +Lorraine +Eleanor +Rose +Beverly +Doris +Gloria +Janet +Theresa +Lois +Anna +Alice +Frances +Irene +Joyce +Carol +Catherine +Marion +Virginia +Jane +June +Evelyn +Lillian +Rita +Josephine +Phyllis +Florence +Anne +Marjorie +Elaine +Carolyn +Louise +Lucille +Audrey +Claire +Mildred +Jeanne +Constance +Grace +Norma +Pauline +Maureen +Sally +Geraldine +Charlotte +Edith +Jacqueline +Janice +Jeanette +Rosemarie +Sylvia +Eileen +Antoinette +Arlene +Harriet +Bernice +Jeannette +Kathleen +Laura +Roberta +Anita +Beatrice +Elsie +Martha +Loretta +Lucy +Ellen +Marlene +Judith +Susan +Joanne +Julia +Gertrude +Rosemary +Diane +Genevieve +Gladys +Ethel +Katherine +Teresa +Vivian +Madeline +Priscilla +Agnes +Angela +Sandra +Angelina +Arline +Cynthia +Edna +Jennie +Marian +Maryann +Sarah +Natalie +Kathryn +Regina +Rosalie +Veronica +Annette +Carmela +Emily +Caroline +Cecile +Clara +Elinor +Helene +Marguerite +Sheila +Alma +Faith +Irma +Violet +Adele +Carole +Connie +Delores +Esther +Hazel +Lena +Muriel +Pearl +Sophie +Amelia +Blanche +Eva +Marcia +Wanda +Winifred +Bertha +Carmella +Ida +Mabel +Maria +Olive +Philomena +Rhoda +Vera +Angeline +Betsy +Bette +Christine +Diana +Ella +Mae +Peggy +Viola +Eunice +Isabelle +Leona +Lydia +Maxine +Miriam +Naomi +Suzanne +Valerie +Adeline +Cecelia +Cecilia +Clare +Elvira +Gail +Hilda +Jessie +Joy +Julie +Olga +Sue +Thelma +Adrienne +Althea +Claudette +Dorothea +Emma +Estelle +Jeannine +Joann +Stella +Therese +Yolanda +Yvonne +Carmel +Concetta +Donna +Doreen +Ernestine +Georgia +Georgianna +Henrietta +Margery +Marianne +Millicent +Myrna +Rachel +Sondra +Victoria +Amy +Camille +Carla +Cornelia +Dawn +Dora +Felicia +Gilda +Jacquelyn +Joanna +Juanita +Karen +Leah +Linda +Lorna +Marcella +Marlyn +Nellie +Paula +Polly +Robert +Stephanie +Yvette +Barbara +Mary +Joan +Patricia +Dorothy +Nancy +Jean +Elizabeth +Ann +Margaret +Shirley +Janet +Carol +Marie +Helen +Lorraine +Ruth +Eleanor +Betty +Frances +Dolores +Lois +Marilyn +Joyce +Rose +Beverly +Doris +Theresa +Irene +Jane +Marion +June +Virginia +Anna +Alice +Gloria +Anne +Evelyn +Josephine +Phyllis +Marjorie +Rita +Lucille +Florence +Lillian +Catherine +Audrey +Elaine +Judith +Constance +Louise +Kathleen +Maureen +Arlene +Claire +Jacqueline +Geraldine +Grace +Sylvia +Mildred +Norma +Sally +Jeanne +Carolyn +Sandra +Janice +Rosemary +Antoinette +Charlotte +Pauline +Joanne +Marlene +Beatrice +Ellen +Priscilla +Diane +Edith +Gertrude +Agnes +Eileen +Lucy +Carole +Cynthia +Esther +Jeannette +Katherine +Marcia +Maryann +Anita +Laura +Susan +Elsie +Gladys +Loretta +Bernice +Martha +Muriel +Rosemarie +Harriet +Jeanette +Julia +Vivian +Roberta +Sheila +Ethel +Marian +Suzanne +Gail +Leona +Marguerite +Thelma +Carmella +Caroline +Clara +Edna +Genevieve +Jennie +Kathryn +Teresa +Emily +Faith +Connie +Natalie +Angela +Angelina +Arline +Blanche +Diana +Elinor +Lena +Miriam +Sarah +Alma +Amelia +Annette +Bette +Corinne +Helene +Joann +Pearl +Peggy +Alberta +Carmela +Concetta +Hazel +Madeline +Marianne +Victoria +Christine +Eleanore +Eva +Ida +Jacquelyn +Marylou +Regina +Stella +Therese +Wanda +Adele +Estelle +Jessie +Judy +Mabel +Olga +Rosalie +Vera +Winifred +Bertha +Donna +Doreen +Georgia +Violet +Adrienne +Angeline +Betsy +Cecelia +Cecile +Delores +Emma +Eunice +Hope +Irma +Jeannine +Myrna +Naomi +Valerie +Viola +Yvonne +Alyce +Bernadette +Dorothea +Ella +Fay +Greta +Gwendolyn +Isabel +Margery +Maryjane +Myrtle +Olive +Pat +Veronica +Yolanda +Aline +Carmel +Celia +Cora +Deborah +Edythe +Jayne +Joy +Juliette +Karen +Lee +Lynn +Mae +Matilda +Noreen +Pamela +Paula +Rachel +Rae +Rhoda +Sara +Selma +Sophie +Wilma +Mary +Barbara +Joan +Patricia +Dorothy +Jean +Nancy +Shirley +Ann +Elizabeth +Carol +Marie +Margaret +Janet +Beverly +Helen +Betty +Ruth +Lorraine +Eleanor +Frances +Marilyn +Dolores +Lois +Phyllis +Gloria +Doris +Joyce +Rose +Jane +Virginia +Alice +Irene +Elaine +Judith +Theresa +Florence +Marion +Lillian +Anna +Rita +Evelyn +June +Arlene +Janice +Catherine +Lucille +Josephine +Marjorie +Jacqueline +Louise +Norma +Anne +Kathleen +Sally +Audrey +Eileen +Constance +Sandra +Joanne +Carole +Carolyn +Geraldine +Maureen +Susan +Sylvia +Claire +Grace +Cynthia +Edith +Katherine +Charlotte +Loretta +Jeanne +Mildred +Agnes +Anita +Ellen +Marlene +Martha +Roberta +Rosemarie +Harriet +Pauline +Marcia +Rosemary +Diane +Lucy +Annette +Bernice +Edna +Gail +Suzanne +Gertrude +Laura +Vivian +Clara +Jeannette +Antoinette +Caroline +Ethel +Gladys +Jeanette +Julia +Marguerite +Maryann +Sheila +Beatrice +Natalie +Esther +Kathryn +Angela +Angelina +Diana +Emily +Ida +Jennie +Joann +Marianne +Muriel +Priscilla +Concetta +Eva +Faith +Linda +Regina +Victoria +Carmela +Delores +Georgia +Helene +Madeline +Marian +Marylou +Sarah +Viola +Adele +Angeline +Donna +Elsie +Jacquelyn +Maria +Valerie +Veronica +Wanda +Arline +Bette +Deborah +Lena +Myrna +Peggy +Teresa +Violet +Alberta +Bertha +Estelle +Hazel +Leona +Olga +Rosalie +Wilma +Betsy +Carmella +Christine +Connie +Genevieve +Joy +Myrtle +Pearl +Stella +Winifred +Bernadette +Beverley +Blanche +Corinne +Dianne +Elinor +Eunice +Georgette +Isabelle +Johanna +Julie +Lenore +Margery +Miriam +Rachel +Sophie +Angie +Claudette +Ella +Fay +Hilda +Inez +Jeannine +Myra +Nan +Noreen +Sara +Thelma +Yvonne +Adelaide +Adeline +Annie +Bessie +Cecelia +Charlene +Cornelia +Dora +Elvira +Emma +Flora +Gwendolyn +Hope +Judy +Lee +Lucia +Mae +Marcella +Olive +Sondra +Sue +Therese +Barbara +Mary +Joan +Patricia +Shirley +Dorothy +Nancy +Carol +Jean +Margaret +Ann +Elizabeth +Janet +Judith +Beverly +Eleanor +Lorraine +Dolores +Helen +Marie +Joyce +Marilyn +Lois +Frances +Betty +Elaine +Virginia +Phyllis +Rose +Irene +Ruth +Alice +Gloria +Marion +Anna +Anne +Theresa +Jane +Sandra +Doris +Florence +Catherine +Evelyn +Marjorie +Lucille +Josephine +Audrey +Claire +Carolyn +Jacqueline +Carole +Geraldine +Joanne +Gail +Sally +Maureen +Rita +Kathleen +Roberta +Janice +June +Arlene +Jeanne +Louise +Grace +Charlotte +Cynthia +Lillian +Susan +Eileen +Rosemary +Anita +Diane +Katherine +Marlene +Norma +Pauline +Edith +Jeannette +Loretta +Maryann +Mildred +Harriet +Sheila +Sylvia +Jeanette +Constance +Rosemarie +Ellen +Lucy +Beatrice +Esther +Laura +Martha +Gertrude +Clara +Donna +Marcia +Marian +Vivian +Annette +Caroline +Judy +Priscilla +Arline +Julia +Gladys +Veronica +Christine +Kathryn +Muriel +Carmela +Leona +Sarah +Adrienne +Bernice +Bertha +Elsie +Genevieve +Jacquelyn +Madeline +Marianne +Rosalie +Suzanne +Agnes +Angela +Antoinette +Cecile +Concetta +Diana +Natalie +Yvonne +Angelina +Edna +Elinor +Emily +Joann +Linda +Marguerite +Miriam +Vera +Alberta +Claudette +Connie +Ethel +Helene +Marylou +Paula +Amelia +Betsy +Blanche +Carmella +Claudia +Delores +Edwina +Ida +Irma +Lynn +Myrna +Peggy +Regina +Sophie +Teresa +Valerie +Bette +Carmel +Isabelle +Joy +Lena +Mabel +Mae +Nora +Rhoda +Roseann +Violet +Wanda +Winifred +Adele +Dawn +Doreen +Georgette +Gwendolyn +Hazel +Hope +Katharine +Margery +Maxine +Olga +Rachel +Sharon +Therese +Victoria +Viola +Yolanda +Alma +Angeline +Cecelia +Charlene +Colleen +Estelle +Faith +Gayle +Iris +Julie +Karen +Lenore +Lydia +Lynne +Marcella +Maria +May +Merle +Sondra +Sue +Ursula +William +Ada +Bernadette +Corinne +Deborah +Denise +Dixie +Dorothea +Emma +Ernestine +Eva +Georgianna +Gretchen +Henrietta +Janis +Jeannine +Jennie +Joanna +Johanna +John +Lee +Maryellen +Monica +Nellie +Nina +Palma +Pearl +Ruby +Stella +Verna +Barbara +Mary +Joan +Patricia +Carol +Shirley +Nancy +Dorothy +Margaret +Elizabeth +Jean +Beverly +Ann +Marilyn +Marie +Joyce +Lorraine +Janet +Judith +Helen +Dolores +Elaine +Frances +Eleanor +Phyllis +Alice +Ruth +Sandra +Lois +Gloria +Virginia +Betty +Rose +Jane +Gail +Marion +Theresa +Carolyn +Irene +Marjorie +Roberta +Louise +Anne +Doris +Jacqueline +Evelyn +Janice +Anna +Florence +Geraldine +Lucille +Catherine +June +Lillian +Susan +Arlene +Rita +Josephine +Kathleen +Audrey +Carole +Maureen +Norma +Joanne +Claire +Constance +Cynthia +Sally +Charlotte +Eileen +Sheila +Diane +Edith +Ellen +Grace +Jeanne +Katherine +Marlene +Pauline +Sylvia +Anita +Marcia +Jeannette +Rosemarie +Bernice +Loretta +Martha +Rosemary +Harriet +Jeanette +Maryann +Arline +Gertrude +Suzanne +Judy +Laura +Mildred +Annette +Joann +Vivian +Betsy +Christine +Linda +Agnes +Antoinette +Kathryn +Elsie +Julia +Lucy +Madeline +Rosalie +Caroline +Ethel +Priscilla +Veronica +Angela +Connie +Diana +Esther +Marguerite +Genevieve +Adrienne +Beatrice +Delores +Edna +Paula +Sarah +Yvonne +Angelina +Eva +Gladys +Marylou +Muriel +Myrna +Natalie +Regina +Valerie +Winifred +Clara +Donna +Helene +Kay +Marian +Marianne +Naomi +Sara +Therese +Elinor +Emily +Leona +Thelma +Viola +Bertha +Bette +Cecile +Claudette +Dawn +Eunice +Peggy +Robert +Vera +Victoria +Adele +Beverley +Blanche +Carmela +Concetta +Eleanore +Flora +Hazel +Mabel +Maria +Olive +Rachel +Sharon +Stella +Wilma +Brenda +Cecelia +Claudia +Cora +Estelle +Faith +Germaine +Henrietta +Ida +Isabelle +Jo +Joy +Lynn +Margery +Merle +Miriam +Noreen +Alberta +Alma +Amelia +Deborah +Denise +Gayle +Georgia +Gwendolyn +Jennie +Joanna +Juanita +Karen +Lenore +Matilda +Myra +Pamela +Pat +Sondra +Stephanie +Teresa +Angeline +Annamae +Camille +Cecilia +Clare +Corinne +Dianne +Dorothea +Georgianna +Harriett +Jacquelyn +Jeannine +Jessie +Johanna +Marcella +Margie +Maryanne +Maryjane +Myrtle +Nina +Rhoda +Roseann +Susanne +Barbara +Mary +Patricia +Joan +Carol +Nancy +Elizabeth +Shirley +Beverly +Margaret +Dorothy +Ann +Judith +Jean +Joyce +Janet +Marie +Frances +Helen +Elaine +Sandra +Betty +Marilyn +Dolores +Gloria +Virginia +Eleanor +Gail +Lorraine +Phyllis +Alice +Jane +Theresa +Rose +Ruth +Janice +Kathleen +Maureen +Carolyn +Anne +Lois +Irene +Catherine +Diane +Josephine +Louise +Doris +Marjorie +Arlene +Roberta +Susan +Carole +June +Florence +Geraldine +Lucille +Sheila +Lillian +Jacqueline +Rita +Sally +Audrey +Maryann +Grace +Linda +Marion +Anna +Annette +Joanne +Katherine +Evelyn +Marcia +Constance +Ellen +Charlotte +Eileen +Rosemary +Marlene +Martha +Antoinette +Loretta +Sylvia +Jeanne +Rosemarie +Beatrice +Cynthia +Judy +Claire +Diana +Donna +Pauline +Gertrude +Julia +Bernice +Anita +Jeanette +Norma +Jeannette +Laura +Mildred +Edith +Edna +Sarah +Suzanne +Vivian +Emily +Genevieve +Gladys +Harriet +Rosalie +Angela +Caroline +Marguerite +Muriel +Ethel +Lucy +Madeline +Paula +Priscilla +Arline +Christine +Yvonne +Agnes +Bette +Elsie +Joann +Kathryn +Marianne +Betsy +Marian +Regina +Angelina +Clara +Kay +Maria +Delores +Estelle +Faith +Henrietta +Karen +Leona +Marylou +Valerie +Deborah +Eunice +Fay +Sharon +Teresa +Thelma +Veronica +Carmel +Connie +Dawn +Elinor +Esther +Hazel +Helene +Myrna +Vera +Alberta +Cecile +Claudette +Concetta +Corrine +Denise +Dianne +Jennie +Joanna +Juanita +Lenore +Lynn +Lynne +Peggy +Rachel +Rosalind +Sara +Winifred +Adrienne +Bertha +Bonnie +Carmella +Cornelia +Deanna +Doreen +Eleanore +Gwendolyn +Ida +Jacquelyn +Jeannine +Madelyn +Miriam +Penelope +Philomena +Rochelle +Roseann +Sue +Theodora +Victoria +Adele +Adeline +Alma +Blanche +Claudia +Faye +Gayle +Germaine +Helena +Mabel +Maryjane +Natalie +Pamela +Violet +Wendy +Yolanda +Adelaide +Amelia +Andrea +Bernadette +Camille +Cecelia +Dorothea +Elsa +Eva +Hilda +Jessie +Marcella +Marsha +Millicent +Mona +Myrtle +Noreen +Olga +Polly +Simone +Susanne +Verna +Wilma +Barbara +Patricia +Mary +Carol +Joan +Judith +Nancy +Dorothy +Ann +Elizabeth +Margaret +Sandra +Beverly +Joyce +Shirley +Jean +Elaine +Marilyn +Gail +Janet +Marie +Eleanor +Frances +Betty +Lorraine +Carolyn +Virginia +Helen +Phyllis +Theresa +Anne +Janice +Ruth +Dolores +Susan +Rose +Jane +Maureen +Alice +Irene +Kathleen +Lois +Marion +Gloria +Arlene +Catherine +Diane +Rosalie +Jacqueline +Joanne +Louise +Maryann +Roberta +Lucille +Donna +Linda +Carole +Evelyn +Ellen +Josephine +Judy +Anna +Doris +Rita +June +Sally +Sheila +Claire +Cynthia +Florence +Charlotte +Geraldine +Anita +Marjorie +Grace +Sylvia +Audrey +Rosemary +Marcia +Katherine +Lillian +Eileen +Jeanne +Loretta +Annette +Harriet +Rosemarie +Suzanne +Diana +Jeanette +Priscilla +Karen +Norma +Sharon +Constance +Marlene +Martha +Paula +Beatrice +Valerie +Kathryn +Mildred +Gertrude +Laura +Marian +Edith +Pauline +Christine +Lucy +Teresa +Jeannette +Julia +Bernice +Deanna +Elsie +Esther +Madeline +Muriel +Yvonne +Angela +Joy +Marylou +Antoinette +Brenda +Leona +Carmella +Caroline +Joann +Marguerite +Marianne +Agnes +Bette +Clara +Emily +Ethel +Sarah +Victoria +Faith +Gladys +Hazel +Lynn +Lynne +Natalie +Alberta +Denise +Edna +Peggy +Deborah +Delores +Elinor +Joanna +Maria +Myrna +Pamela +Regina +Sara +Sonja +Alma +Annmarie +Arline +Beth +Concetta +Estelle +Gretchen +Henrietta +Miriam +Philomena +Rhoda +Angelina +Carmela +Claudette +Claudia +Connie +Gwendolyn +Kay +Lydia +Thelma +Vivian +Adrienne +Bertha +Betsy +Gayle +Georgette +Jacquelyn +Jennie +Julie +Justine +Lenore +Margo +Nellie +Noreen +Stella +Veronica +Adele +Amelia +Bessie +Blanche +Dale +Dianne +Edwina +Ella +Eva +Fay +Genevieve +Georgia +Ida +Jessie +Katharine +Lee +Maryanne +Maxine +Polly +Roseann +Sue +Wanda +Wilma +Alison +Andrea +Betsey +Cecile +Celeste +Corinne +Emma +Gwen +Holly +Hope +Jayne +Jill +Juanita +Laurel +Madelyn +Margery +Marietta +Marsha +Marylyn +Myra +Naomi +Penelope +Rebecca +Rosalind +Rosanne +Sophie +Susanne +Therese +Yolanda +Barbara +Patricia +Mary +Judith +Carol +Joan +Nancy +Margaret +Elizabeth +Sandra +Dorothy +Ann +Joyce +Beverly +Jean +Janet +Linda +Marie +Marilyn +Elaine +Susan +Frances +Shirley +Betty +Gail +Virginia +Lorraine +Eleanor +Judy +Helen +Carolyn +Phyllis +Ruth +Anne +Alice +Arlene +Diane +Janice +Kathleen +Donna +Jane +Dolores +Geraldine +Rose +Sally +Irene +Louise +Marion +Joanne +Maureen +Jacqueline +Carole +Cynthia +Lucille +Catherine +Josephine +June +Sheila +Gloria +Lois +Maryann +Theresa +Ellen +Evelyn +Katherine +Martha +Priscilla +Anna +Rosemary +Karen +Marjorie +Roberta +Brenda +Marcia +Lillian +Loretta +Rita +Charlotte +Grace +Edith +Florence +Jeanne +Anita +Claire +Eileen +Rosemarie +Constance +Jeannette +Marlene +Audrey +Christine +Doris +Joann +Norma +Mildred +Diana +Sylvia +Valerie +Jeanette +Pauline +Suzanne +Annette +Rosalie +Bernice +Kathryn +Harriet +Laura +Lynn +Angela +Antoinette +Gladys +Marguerite +Paula +Agnes +Beatrice +Sharon +Faith +Julia +Sarah +Betsy +Caroline +Lucy +Lynne +Madeline +Natalie +Adrienne +Marian +Yvonne +Andrea +Arline +Edna +Elsie +Genevieve +Marylou +Teresa +Vivian +Alberta +Cecile +Clara +Claudia +Deborah +Delores +Esther +Johanna +Leona +Noreen +Peggy +Victoria +Corinne +Denise +Dianne +Gay +Hazel +Joy +Juanita +Maria +Maxine +Miriam +Rosalind +Sara +Wendy +Bernadette +Bette +Bonnie +Camille +Deanna +Ethel +Eva +Marsha +Rachel +Regina +Adele +Alma +Amelia +Carmel +Carolann +Connie +Dawn +Emily +Gayle +Henrietta +Madelyn +Margo +Marianne +Nina +Pearl +Penelope +Wilma +Bertha +Carmela +Dale +Doreen +Edwina +Gretchen +Helene +Jacquelyn +Kay +Maryanne +Muriel +Pamela +Theodora +Wanda +Beth +Carmella +Cecelia +Concetta +Cornelia +Georgia +Helena +Ina +Inez +Jennie +Joanna +Leslie +Mabel +Madeleine +Monica +Roseann +Vera +Annmarie +Blanche +Charlene +Christina +Colleen +Dorothea +Elvira +Emma +Estelle +Eunice +Georgianna +Gertrude +Jeannine +Jill +Julie +Justine +Laurel +Lena +Lenora +Lenore +Lydia +Margery +Maryellen +Myra +Pat +Rebecca +Rhoda +Susanne +Therese +Veronica +Viola +Patricia +Barbara +Mary +Judith +Carol +Joan +Nancy +Sandra +Margaret +Linda +Elizabeth +Joyce +Jean +Ann +Susan +Dorothy +Marie +Beverly +Frances +Janet +Janice +Marilyn +Shirley +Virginia +Elaine +Kathleen +Gail +Carolyn +Jane +Joanne +Helen +Phyllis +Geraldine +Diane +Ruth +Betty +Lorraine +Lois +Dolores +Eleanor +Judy +Maureen +Cynthia +Rosemary +Gloria +Theresa +Donna +Doris +Arlene +June +Anne +Rose +Karen +Maryann +Alice +Catherine +Brenda +Josephine +Louise +Marion +Carole +Jacqueline +Marcia +Roberta +Sally +Evelyn +Lucille +Irene +Rita +Sheila +Ellen +Priscilla +Anna +Marjorie +Martha +Florence +Anita +Suzanne +Loretta +Sharon +Katherine +Lillian +Mildred +Rosemarie +Charlotte +Constance +Joann +Rosalie +Eileen +Pauline +Valerie +Annette +Diana +Sylvia +Claire +Sarah +Audrey +Christine +Beatrice +Julia +Angela +Bonnie +Jeanne +Marlene +Grace +Harriet +Lynn +Paula +Bernice +Betsy +Laura +Caroline +Denise +Dianne +Antoinette +Esther +Gladys +Kathryn +Lucy +Norma +Jeannette +Madeline +Vivian +Deanna +Edith +Edna +Faith +Gertrude +Jeanette +Joy +Marianne +Regina +Sara +Sue +Andrea +Elsie +Lynne +Marguerite +Pamela +Peggy +Alberta +Julie +Teresa +Connie +Dawn +Helene +Ida +Leona +Margo +Claudia +Darlene +Doreen +Emily +Ethel +Eunice +Gay +Maria +Maryjane +Veronica +Agnes +Cecile +Deborah +Elinor +Lynda +Marylou +Natalie +Penelope +Adele +Alma +Camille +Carmel +Clara +Georgianna +Jo +Muriel +Noreen +Rochelle +Wendy +Arline +Bertha +Charlene +Gale +Gayle +Georgia +Gwendolyn +Jacquelyn +Marian +Marsha +Myrna +Pat +Susanne +Wanda +William +Winifred +Yvonne +Bernadette +Bette +Claudette +Dorothea +Eva +Isabel +Jayne +Johanna +Justine +Katharine +Laurel +Lenore +Madeleine +Maryellen +Miriam +Nina +Paulette +Rachel +Terry +Viola +Adelaide +Adrienne +Annie +Carmela +Carmella +Carolann +Carolee +Cornelia +Delores +Dora +Eleanore +Ella +Emma +Eugenia +Fay +Faye +Hazel +Ina +Jennie +Kay +Lana +Leah +Leslie +Mabel +Madelyn +Margery +Margie +Margot +Maxine +Melinda +Michelle +Myrtle +Naomi +Philomena +Rena +Rhoda +Roseann +Stella +Sybil +Theodora +Verna +Vivien +Patricia +Barbara +Mary +Judith +Carol +Joan +Sandra +Nancy +Linda +Margaret +Susan +Joyce +Elizabeth +Elaine +Dorothy +Ann +Jean +Beverly +Carolyn +Marilyn +Diane +Janet +Marie +Virginia +Gail +Frances +Kathleen +Janice +Shirley +Karen +Donna +Joanne +Phyllis +Judy +Dolores +Carole +Cynthia +Jane +Lorraine +Betty +Geraldine +Catherine +Joann +Gloria +Helen +Ruth +Maureen +Lois +Louise +Eleanor +Arlene +Theresa +Martha +Maryann +Rita +Rose +Alice +Sally +Jacqueline +Ellen +Irene +Katherine +Doris +Sharon +Anne +Josephine +Lucille +Jeanne +Marion +Rosemary +Roberta +Marjorie +Priscilla +Marcia +Bonnie +Sheila +Christine +Evelyn +June +Eileen +Anna +Diana +Charlotte +Constance +Pamela +Florence +Kathryn +Suzanne +Grace +Lillian +Anita +Annette +Loretta +Harriet +Paula +Sylvia +Deborah +Rosemarie +Claire +Brenda +Jeannette +Lynn +Mildred +Pauline +Valerie +Lynne +Rosalie +Marianne +Antoinette +Angela +Dianne +Norma +Caroline +Peggy +Vivian +Bernice +Betsy +Muriel +Noreen +Sarah +Arline +Audrey +Gladys +Jeanette +Laura +Lucy +Madeline +Marian +Marlene +Marylou +Edith +Elsie +Julia +Victoria +Beatrice +Charlene +Ethel +Faith +Marguerite +Maria +Penelope +Sara +Agnes +Edna +Leslie +Bette +Emily +Gertrude +Helene +Susanne +Claudia +Dale +Julie +Leona +Maryjane +Regina +Sue +Veronica +Winifred +Andrea +Dawn +Denise +Gretchen +Laurel +Lynda +Rosalind +Annmarie +Carolann +Elinor +Esther +Genevieve +Georgia +Kay +Maryanne +Adrienne +Alicia +Camille +Connie +Cornelia +Gale +Joanna +Lenore +Margo +Rosanne +Stephanie +Teresa +Therese +Wendy +Yvonne +Alberta +Colleen +Darlene +Dorothea +Fern +Hazel +Jacquelyn +Jo +Johanna +Joy +Maxine +Myrna +Natalie +Rachel +Roseann +Terry +Amelia +Bernadette +Beth +Blanche +Carmela +Cecilia +Deanna +Delores +Ella +Holly +Justine +Margery +Marsha +Maryellen +Melinda +Pearl +Adele +Arleen +Bertha +Bonita +Carolee +Doreen +Emma +Eva +Gayle +Georgianna +Helena +Ida +Juanita +Lee +Lena +Lorna +Lydia +Madelyn +Miriam +Monica +Pat +Rebecca +Rhoda +Stella +Theodora +Verna +Alma +Angelina +April +Beverley +Carmella +Cathy +Cecelia +Charleen +Cheryl +Claudette +Corinne +Eve +Gwendolyn +Heather +Henrietta +Iris +Jennie +Jennifer +Jill +Kathy +Laurene +Linnea +Margot +Marietta +Myra +Naomi +Penny +Rochelle +Sherry +Simone +Sophie +Viola +Vita +Patricia +Barbara +Mary +Carol +Judith +Joan +Sandra +Linda +Nancy +Susan +Elizabeth +Margaret +Kathleen +Diane +Beverly +Joyce +Carolyn +Gail +Ann +Elaine +Donna +Janet +Karen +Dorothy +Jean +Marie +Virginia +Carole +Marilyn +Joanne +Frances +Sharon +Lorraine +Shirley +Ruth +Helen +Janice +Maureen +Geraldine +Catherine +Jane +Dolores +Phyllis +Cynthia +Jacqueline +Anne +Gloria +Betty +Sheila +Ellen +Maryann +Bonnie +Judy +Alice +Arlene +Marjorie +Roberta +Theresa +Lois +Eileen +Eleanor +Joann +Rosemary +Irene +Louise +Marion +Lucille +Sally +Rita +Rose +Katherine +Martha +Charlotte +Marcia +Doris +Diana +Evelyn +June +Jeanne +Josephine +Pamela +Priscilla +Lynn +Anita +Paula +Pauline +Florence +Rosemarie +Christine +Norma +Anna +Kathryn +Constance +Suzanne +Claire +Marianne +Grace +Lillian +Loretta +Brenda +Angela +Annette +Marlene +Victoria +Andrea +Regina +Madeline +Harriet +Dianne +Edith +Rosalie +Sylvia +Lynda +Lynne +Valerie +Audrey +Deborah +Mildred +Sarah +Wendy +Caroline +Julie +Veronica +Bernice +Julia +Leona +Marguerite +Marsha +Emily +Jeanette +Laura +Antoinette +Beatrice +Doreen +Leslie +Lucy +Muriel +Vivian +Agnes +Alberta +Betsy +Dawn +Faith +Genevieve +Maryjane +Charlene +Gayle +Jacquelyn +Sara +Sue +Denise +Helene +Kathy +Maria +Carolann +Clara +Dale +Elsie +Jeannette +Jo +Marian +Maxine +Noreen +Penelope +Yvonne +Adele +Beth +Carmela +Gertrude +Karin +Lydia +Maryanne +Marylou +Paulette +Bette +Carmella +Gladys +Hazel +Johanna +Rachel +Rae +Teresa +Gale +Joy +Lorna +Pat +Rosalind +Sophie +Stella +Camille +Claudia +Delores +Dona +Ethel +Georgianna +Gretchen +Heather +Maryellen +Monica +Natalie +Peggy +Penny +Roseann +Susanne +Adrienne +Angelina +Bertha +Cecelia +Concetta +Connie +Dorothea +Elinor +Emma +Eva +Gay +Madeleine +Michele +Miriam +Myra +Renee +Stephanie +Therese +Winifred +Annmarie +April +Arleen +Beverley +Cecile +Darleen +Darlene +Eloise +Ernestine +Holly +Ida +Jill +Joanna +Laurel +Lenora +Lenore +Margo +Myrna +Rhoda +Rosanne +Terry +Ursula +Bernadette +Bonita +Carla +Corinne +Edna +Edwina +Ella +Francine +Helena +Jennie +Jennifer +Justine +Kay +Lee +Lucia +Madelaine +Nora +Pearl +Tina +Alexandra +Arline +Carmel +Cathy +Clare +Deanna +Estelle +Georgette +Hope +Jessie +Katharine +Leah +Margery +Marilynn +Olive +Olivia +Patsy +Philomena +Polly +Robert +Rochelle +Sherrill +Theodora +Wilma +Adelaide +Alison +Alyce +Amelia +Amy +Betsey +Candace +Carmen +Carrie +Celia +Christina +Claudette +Colleen +Eunice +Flora +Georgene +Georgia +Gwendolyn +Henrietta +Iris +Jeannie +Jerilyn +Juanita +Lana +Laurie +Leila +Madelyn +Marjory +Marybeth +Melinda +Merle +Merrily +Nina +Patti +Sharron +Thelma +Wanda +William +Patricia +Barbara +Carol +Mary +Judith +Linda +Sandra +Susan +Nancy +Joan +Elizabeth +Margaret +Diane +Kathleen +Sharon +Donna +Karen +Joyce +Janet +Elaine +Gail +Dorothy +Beverly +Ann +Carolyn +Shirley +Virginia +Jean +Marilyn +Frances +Carole +Janice +Jane +Joanne +Marie +Maureen +Judy +Lorraine +Phyllis +Joann +Pamela +Betty +Eileen +Cynthia +Catherine +Lois +Ruth +Helen +Anne +Geraldine +Sheila +Jacqueline +Theresa +Rita +Arlene +Maryann +Rosemary +Alice +Ellen +Roberta +Irene +Rose +Bonnie +Dolores +Sally +Gloria +Marcia +Katherine +Louise +Marion +Eleanor +Paula +Suzanne +Evelyn +Jeanne +Marjorie +Christine +Martha +June +Lynn +Pauline +Diana +Doris +Claire +Lucille +Charlotte +Andrea +Dianne +Priscilla +Leslie +Anita +Brenda +Constance +Kathryn +Florence +Angela +Annette +Grace +Harriet +Marianne +Rosemarie +Anna +Josephine +Lillian +Valerie +Charlene +Jeanette +Paulette +Antoinette +Cheryl +Loretta +Deborah +Noreen +Lynne +Madeline +Maria +Sylvia +Dawn +Marlene +Sarah +Sue +Claudia +Edith +Beatrice +Caroline +Regina +Rosalie +Audrey +Bernice +Faith +Jeannette +Marylou +Connie +Corinne +Gayle +Jo +Marguerite +Marsha +Victoria +Bernadette +Esther +Maryjane +Michele +Norma +Vivian +Adele +Gladys +Laura +Betsy +Denise +Emily +Julie +Ruthann +Darlene +Holly +Joy +Roseann +Veronica +Kay +Maryanne +Mildred +Muriel +Wendy +Agnes +Katharine +Leona +Lynda +Marian +Stephanie +Susanne +Arline +Dale +Gale +Joanna +Julia +Kathy +Lucy +Winifred +Yvonne +Elsie +Lee +Maryellen +Natalie +Penelope +Penny +Elinor +Eva +Genevieve +Helene +Hope +Margo +Maxine +Peggy +Rosalind +Sara +Vera +Alberta +Bertha +Bette +Cecile +Cornelia +Emma +Francine +Jacquelyn +Laurel +Lenore +Lydia +Melanie +Teresa +Wilma +Amelia +Beth +Bonita +Cathy +Jill +Sharron +Alyce +Annmarie +Camille +Carolann +Carolee +Cecelia +Cecilia +Christina +Clare +Deanna +Delores +Dorothea +Georgia +Gertrude +Hazel +Johanna +Marcella +Michelle +Pat +Rhoda +Rosalyn +Sondra +Terry +Toni +Yvette +Arleen +Blanche +Candace +Carmella +Clara +Edna +Gay +Heather +Henrietta +Jan +Jeannine +Lisa +Lorna +Margery +Miriam +Olivia +Pearl +Polly +Suellen +Trudy +Wanda +Alma +April +Celeste +Celia +Concetta +Doreen +Estelle +Georgianna +Gretchen +Gwen +Heidi +Helena +Janis +Jayne +Jennie +Jennifer +Justine +Laraine +Madelyn +Marilynn +Nora +Rachel +Rebecca +Renee +Sonya +Theodora +Adrienne +Alexis +Althea +Angelina +Claudette +Dana +Darleen +Dona +Dorene +Edwina +Elisabeth +Ernestine +Fern +Gwendolyn +Ida +Isabel +Judi +Karin +Leila +Lenora +Lola +Lucinda +Madeleine +Melinda +Naomi +Rosann +Sherry +Therese +Patricia +Barbara +Mary +Carol +Linda +Judith +Nancy +Sandra +Susan +Joan +Kathleen +Donna +Margaret +Sharon +Elizabeth +Diane +Karen +Janet +Joyce +Elaine +Gail +Ann +Beverly +Dorothy +Marilyn +Carolyn +Virginia +Jean +Jane +Marie +Joanne +Janice +Pamela +Cheryl +Frances +Carole +Geraldine +Joann +Maureen +Shirley +Eileen +Catherine +Lorraine +Helen +Ruth +Gloria +Ellen +Phyllis +Cynthia +Maryann +Theresa +Anne +Betty +Christine +Lois +Rita +Roberta +Paula +Martha +Alice +Marcia +Dolores +Judy +Sheila +Katherine +Rosemary +Evelyn +Bonnie +Jacqueline +Arlene +Lynn +Sally +Diana +Irene +Marjorie +Andrea +Jeanne +Marion +Rose +Louise +Suzanne +Doris +Constance +Kathryn +Charlotte +Eleanor +Claire +June +Lucille +Priscilla +Deborah +Marlene +Dianne +Brenda +Josephine +Leslie +Michele +Anita +Laura +Maria +Rosemarie +Valerie +Caroline +Grace +Madeline +Antoinette +Edith +Lynne +Dale +Rosalie +Sylvia +Anna +Bernadette +Faith +Mildred +Sarah +Florence +Loretta +Marsha +Annette +Charlene +Lillian +Lynda +Marianne +Pauline +Penelope +Victoria +Vivian +Angela +Harriet +Jeanette +Jeannette +Jo +Julia +Maryellen +Norma +Audrey +Claudia +Darlene +Kathy +Regina +Georgia +Jacquelyn +Alberta +Betsy +Edna +Gertrude +Lucy +Maryjane +Noreen +Stephanie +Veronica +Bette +Camille +Dawn +Arline +Doreen +Jill +Beatrice +Julie +Paulette +Penny +Sue +Teresa +Toni +Winifred +Bernice +Beth +Bonita +Cathy +Christina +Genevieve +Ingrid +Lenore +Marguerite +Maryanne +Peggy +Susanne +Amy +Gale +Joy +Laurel +Yvonne +Connie +Delores +Elinor +Lee +Pat +Sherry +Wendy +Adele +Alexandra +Carolann +Deanna +Denise +Emily +Esther +Ethel +Gayle +Georgianna +Gladys +Lucinda +Lydia +Marian +Marylou +Muriel +Sara +Adrienne +Agnes +Cecelia +Cecile +Clare +Dianna +Edwina +Francine +Hilda +Jennifer +Johanna +Karin +Laurie +Marcella +Meredith +Miriam +Rachel +Sharyn +Stella +Viola +Wanda +Bertha +Carolee +Cathleen +Colleen +Corinne +Dana +Georgette +Gretchen +Gwendolyn +Hazel +Helene +Juanita +Kay +Margery +Margo +Maxine +Naomi +Natalie +Nina +Olivia +Rebecca +Renee +Rosanne +Annmarie +Arleen +Candace +Clara +Elsa +Jackie +Jeannine +Jennie +Jessie +Joanna +Leona +Madeleine +Madelyn +Marilynn +Monica +Rhoda +Robin +Rosalind +Roseann +Sharron +Susie +Terry +Trudy +Verna +Carlene +Carmella +Cassandra +Claudette +Dora +Elise +Elsie +Emma +Ernestine +Eugenia +Eunice +Eva +Gay +Heidi +Holly +Judie +Katharine +Kristine +Myra +Nadine +Nora +Patti +Ramona +Ruby +Ruthann +Shelley +Sherrill +Sheryl +Sonia +Sonja +Patricia +Barbara +Mary +Carol +Linda +Judith +Susan +Sandra +Nancy +Kathleen +Donna +Joan +Karen +Elizabeth +Diane +Sharon +Margaret +Janet +Gail +Joyce +Janice +Frances +Jean +Elaine +Jane +Marilyn +Beverly +Ann +Pamela +Virginia +Shirley +Dorothy +Carolyn +Marie +Lorraine +Maureen +Gloria +Joanne +Cheryl +Ruth +Carole +Eileen +Ellen +Cynthia +Maryann +Betty +Paula +Judy +Geraldine +Bonnie +Catherine +Jacqueline +Roberta +Anne +Jeanne +Lynn +Christine +Diana +Joann +Theresa +Alice +Phyllis +Rosemary +Sally +Helen +Marcia +Sheila +Suzanne +Rita +Katherine +Rose +Deborah +Louise +Lois +Marjorie +Martha +Charlotte +Andrea +Arlene +Leslie +Victoria +Irene +Dolores +June +Kathryn +Evelyn +Lynne +Marion +Marlene +Eleanor +Laura +Dianne +Lucille +Constance +Doris +Anita +Brenda +Claire +Lillian +Charlene +Claudia +Michele +Rosemarie +Angela +Jo +Noreen +Pauline +Priscilla +Anna +Josephine +Marianne +Valerie +Darlene +Kathy +Bernadette +Florence +Grace +Sarah +Betsy +Regina +Audrey +Lynda +Maria +Vivian +Wendy +Denise +Gayle +Marsha +Rosalie +Esther +Loretta +Beatrice +Doreen +Lucy +Norma +Peggy +Teresa +Toni +Annette +Edith +Harriet +Marian +Lee +Sharyn +Sylvia +Antoinette +Dale +Francine +Holly +Jennifer +Laurie +Rebecca +Sue +Candace +Jeanette +Marguerite +Muriel +Paulette +Joy +Lauren +Agnes +Bernice +Caroline +Janis +Julie +Penny +Yvonne +Alberta +Ethel +Faith +Gladys +Jill +Leona +Mildred +Nina +Sara +Stephanie +Adele +Carolann +Cathy +Cecelia +Christina +Dawn +Georgia +Jeannette +Julia +Katharine +Lenore +Madeline +Veronica +Arline +Beth +Blanche +Gertrude +Karin +Laurel +Maryanne +Maryellen +Maryjane +Maxine +Roseann +Sherry +Stella +Theodora +Annmarie +Bette +Bonita +Clare +Debra +Delores +Edna +Eloise +Elsie +Emily +Gale +Genevieve +Helene +Ingrid +Judi +Justine +Margo +Natalie +Pat +Robin +Sheryl +Susanne +Thelma +Alma +Amelia +Camille +Carmela +Celeste +Hope +Laureen +Lydia +Marylou +Penelope +Rachel +Tina +Trudy +Alexandra +Carrie +Colleen +Deirdre +Elisabeth +Emma +Eunice +Georgette +Gretchen +Gwen +Jan +Laraine +Lesley +Loraine +Melinda +Nora +Olive +Patti +Renee +Robert +Rosanne +Roxanne +Ruthann +Terry +Therese +Alison +Billie +Cecilia +Corinne +Dana +Deanna +Dorothea +Edwina +Eva +Gay +Hazel +Inez +Iris +Jacquelyn +Janie +Jayne +Jeri +Johanna +Juanita +Kay +Lana +Laurene +Lenora +Maribeth +Melanie +Melissa +Michelle +Miriam +Monica +Myra +Pearl +Rosalyn +Sharron +Shelley +Terri +Vicki +Patricia +Barbara +Mary +Linda +Carol +Susan +Nancy +Sandra +Judith +Kathleen +Sharon +Diane +Donna +Karen +Elizabeth +Margaret +Joan +Janet +Janice +Gail +Joyce +Jane +Cheryl +Ann +Beverly +Pamela +Marilyn +Elaine +Cynthia +Jean +Virginia +Dorothy +Carolyn +Maureen +Ellen +Frances +Lorraine +Joanne +Shirley +Christine +Catherine +Marie +Eileen +Anne +Lynn +Ruth +Suzanne +Betty +Judy +Sheila +Rosemary +Bonnie +Geraldine +Marcia +Gloria +Helen +Phyllis +Lois +Jacqueline +Paula +Deborah +Louise +Martha +Roberta +Katherine +Theresa +Alice +Arlene +Joann +Maryann +Diana +Rita +Carole +Jeanne +Kathryn +Laura +Andrea +Marjorie +Rose +Lucille +Doris +Sally +Claudia +Dianne +Irene +Charlotte +Doreen +Dolores +Anita +Leslie +Eleanor +Evelyn +June +Marion +Jo +Claire +Kathy +Marianne +Darlene +Denise +Marsha +Rosemarie +Anna +Angela +Josephine +Lynne +Charlene +Marlene +Valerie +Brenda +Constance +Priscilla +Victoria +Loretta +Pauline +Audrey +Candace +Florence +Michele +Rosalie +Marguerite +Sarah +Betsy +Francine +Grace +Norma +Paulette +Sylvia +Vivian +Annette +Caroline +Jennifer +Lynda +Sara +Lillian +Michelle +Harriet +Holly +Janis +Jill +Julie +Laurie +Lucy +Peggy +Regina +Susanne +Teresa +Cathy +Dale +Jacquelyn +Maryellen +Sherry +Sue +Veronica +Wendy +Bernadette +Beth +Gayle +Georgia +Jeannette +Lee +Maria +Edith +Esther +Lauren +Mildred +Noreen +Sharyn +Jeanette +Stephanie +Toni +Adrienne +Juanita +Julia +Maryanne +Maxine +Alberta +Beatrice +Dawn +Lenore +Lydia +Marylou +Yvonne +Annmarie +Bette +Emily +Laurel +Muriel +Rebecca +Robin +Bonita +Carolann +Edna +Faith +Marian +Roseann +Sheryl +Terry +Agnes +Bernice +Corinne +Ethel +Gladys +Helene +Joanna +Katharine +Madelyn +Nina +Alison +Arline +Clara +Delores +Elena +Elsie +Gale +Jan +Jayne +Jennie +Judi +Lyn +Melanie +Penelope +Penny +Rae +Rosalind +Rosanne +Winifred +Amelia +Antoinette +Carla +Cathleen +Christina +Deanna +Dianna +Edwina +Joy +Leona +Lesley +Lorna +Marcella +Maryjane +Natalie +Pat +Patti +Vicki +Adele +Alexandra +Camille +Cecelia +Gay +Gwendolyn +Hope +Ingrid +Kristine +Lisa +Madeline +Melody +Meredith +Miriam +Wanda +Alyce +Candy +Cecile +Corrine +Dana +Emma +Eva +Georgette +Gretchen +Leigh +Monica +Nora +Rachel +Violet +Alicia +Alma +Althea +Arleen +Carmella +Celeste +Connie +Debra +Enid +Faye +Flora +Genevieve +Gertrude +Gwen +Hazel +Heidi +Jeannine +John +Linnea +Margo +Mariann +Melissa +Myrna +Roxanne +Ruby +Ruthann +Theodora +Tina +Alexis +Aline +Aurelia +Betsey +Caren +Carlene +Clare +Deirdre +Dona +Dora +Dorene +Estelle +Georgianna +Harriett +Ilona +Isabel +Johanna +Justine +Kathie +Kay +Laureen +Leah +Lena +Margery +Margie +Marietta +Myra +Nadine +Pearl +Renee +Rhonda +Robert +Rochelle +Rosalyn +Rosann +Shelia +Therese +Trudy +Yolanda +Linda +Patricia +Barbara +Mary +Carol +Susan +Nancy +Kathleen +Sandra +Judith +Donna +Sharon +Karen +Diane +Margaret +Elizabeth +Joan +Janice +Janet +Gail +Cynthia +Pamela +Cheryl +Ann +Elaine +Joyce +Marilyn +Joanne +Jane +Lorraine +Lynn +Deborah +Christine +Jean +Maureen +Ellen +Paula +Beverly +Catherine +Shirley +Dorothy +Marie +Carolyn +Anne +Virginia +Frances +Suzanne +Eileen +Joann +Gloria +Louise +Rosemary +Jeanne +Geraldine +Bonnie +Jacqueline +Roberta +Katherine +Marcia +Phyllis +Judy +Theresa +Ruth +Lois +Sheila +Helen +Laura +Betty +Kathryn +Sally +Alice +Martha +Andrea +Diana +Rita +Maryann +Dolores +Marjorie +Rose +Anita +Arlene +Leslie +Denise +Evelyn +June +Carole +Doreen +Jo +Lucille +Charlene +Lynda +Maria +Darlene +Marlene +Michele +Irene +Charlotte +Lynne +Claudia +Eleanor +Brenda +Anna +Betsy +Constance +Gayle +Marion +Wendy +Doris +Dianne +Josephine +Claire +Dawn +Valerie +Antoinette +Edith +Jill +Noreen +Norma +Grace +Marianne +Priscilla +Angela +Marsha +Rosemarie +Pauline +Victoria +Holly +Julie +Veronica +Janis +Kathy +Annette +Francine +Madeline +Marguerite +Peggy +Candace +Lillian +Sherry +Sue +Sylvia +Rebecca +Sara +Sarah +Terry +Florence +Lauren +Audrey +Caroline +Dale +Emily +Jeannette +Laurie +Paulette +Regina +Sharyn +Beatrice +Christina +Jacquelyn +Jennifer +Stephanie +Gale +Georgia +Julia +Lee +Pat +Rosalie +Delores +Vivian +Yvonne +Beth +Jayne +Laurel +Roseann +Teresa +Agnes +Cathy +Loretta +Mildred +Patty +Toni +Bernadette +Carla +Cathleen +Claudette +Colleen +Corinne +Faith +Gladys +Jeanette +Alberta +Bette +Harriet +Lucy +Maryanne +Monica +Muriel +Bonita +Carmella +Esther +Helene +Jan +Miriam +Robin +Bernice +Connie +Dorothea +Juanita +Leona +Lucinda +Marian +Maryellen +Maryjane +Camille +Carolann +Cecelia +Ingrid +Karin +Katharine +Kristine +Lisa +Margo +Michelle +Nora +Penny +Rachel +Sheryl +Therese +Clara +Ethel +Hope +Johanna +Joy +Lenore +Natalie +Penelope +Renee +Rosalind +Alma +Annmarie +April +Edna +Elinor +Faye +Gertrude +Leah +Lesley +Lorna +Margie +Marylou +Maxine +Theodora +Trudy +Wanda +Winifred +Alison +Carmela +Cecilia +Cindy +Debra +Heather +Heidi +Ilene +Janine +Joanna +John +Justine +Kristina +Olivia +Rosanne +Susanne +Tina +Vicki +Adele +Adrienne +Alexis +Angelina +Candice +Charleen +Concetta +Dana +Debbie +Dona +Estelle +Eugenia +Eva +Gay +Georgianna +Gwendolyn +Isabel +Janie +Jeannine +Kay +Lea +Lucia +Lynette +Madeleine +Madelyn +Mae +Nadine +Noel +Sandy +Terri +Viola +Wilma +Yolanda +Alicia +Amy +Arleen +Betsey +Carlene +Cathryn +Celia +Daisy +Daphne +Deirdre +Elisabeth +Elsa +Elsie +Eunice +Eve +Fern +Gina +Gretchen +Hilda +Jackie +Jocelyn +Juliette +Kathie +Laraine +Lydia +Margery +Mariann +Maribeth +Marybeth +Maura +Melinda +Melody +Meredith +Michaele +Nanci +Polly +Rosann +Sharron +Stella +Suzan +Thomas +Vera +Linda +Patricia +Mary +Barbara +Susan +Carol +Nancy +Kathleen +Sandra +Donna +Sharon +Judith +Diane +Karen +Elizabeth +Margaret +Deborah +Pamela +Cynthia +Christine +Joan +Gail +Janet +Ann +Cheryl +Elaine +Janice +Jean +Carolyn +Jane +Joanne +Joyce +Maureen +Catherine +Paula +Marilyn +Beverly +Dorothy +Virginia +Ellen +Katherine +Frances +Marie +Bonnie +Shirley +Theresa +Anne +Joann +Lynn +Eileen +Laura +Lorraine +Jacqueline +Helen +Rosemary +Marcia +Suzanne +Diana +Phyllis +Sheila +Ruth +Gloria +Louise +Sally +Maryann +Kathryn +Andrea +Geraldine +Jo +Leslie +Rose +Jeanne +Kathy +Alice +Constance +Martha +Roberta +Lois +Valerie +Betty +Judy +June +Charlene +Michele +Rita +Evelyn +Lucille +Doreen +Irene +Marsha +Brenda +Cathy +Dianne +Marianne +Marjorie +Claudia +Denise +Maria +Anita +Charlotte +Dolores +Rosemarie +Arlene +Marion +Marlene +Lynda +Anna +Wendy +Carole +Claire +Candace +Dale +Priscilla +Angela +Victoria +Doris +Eleanor +Grace +Josephine +Audrey +Betsy +Gayle +Paulette +Darlene +Pauline +Teresa +Sheryl +Antoinette +Colleen +Holly +Marguerite +Peggy +Penelope +Rosalie +Sarah +Bernadette +Harriet +Janis +Lynne +Terry +Edith +Noreen +Jennifer +Jill +Lillian +Michelle +Norma +Sherry +Yvonne +Annette +Francine +Veronica +Vivian +Sue +Joy +Julie +Loretta +Regina +Caroline +Connie +Dawn +Emily +Georgia +Julia +Marylou +Beatrice +Beth +Christina +Florence +Jeannette +Laurel +Lauren +Laurie +Maryellen +Stephanie +Jan +Jeanette +Marian +Sylvia +Adrienne +Bernice +Faith +Lisa +Robin +Susanne +Amy +Claudette +Gale +Heather +Lucy +Rebecca +Renee +Roseann +Lee +Lucinda +Lydia +Madeline +Melanie +Melissa +Rosanne +Toni +Carla +Dorothea +Edna +Jacquelyn +Juanita +Penny +Adele +Annmarie +Carmela +Carolann +Clara +Ethel +Gay +Heidi +Margo +Maryjane +Wanda +Agnes +Alicia +Candice +Esther +Jessica +Joanna +Sharyn +Vicki +Alison +Camille +Cathleen +Genevieve +Gertrude +Gwendolyn +Ingrid +Kay +Leona +Lynette +Marcella +Maryanne +Maxine +Monica +Nora +Sandy +Tina +Aileen +April +Bette +Blanche +Bonita +Carmen +Cecelia +Concetta +Cora +Debbie +Delores +Elisabeth +Eva +Faye +Gladys +Katharine +Lenore +Lorna +Madelyn +Natalie +Nina +Rosalind +Alyce +Bertha +Cecile +Deirdre +Delia +Dianna +Elena +Ernestine +Jamie +Jayne +Karin +Kimberly +Kristine +Lesley +Linnea +Marilynn +Meredith +Mildred +Patti +Roslyn +Thelma +Allison +Alma +Amelia +Angelina +Arleen +Billie +Cecilia +Celia +Corinne +Dana +Daphne +Debra +Della +Eunice +Felicia +Georgette +Hannah +Hazel +Helene +Hope +Iris +Irma +Lana +Leah +Margery +Margot +Marietta +Marla +Melinda +Miriam +Myra +Nadine +Noel +Palma +Pat +Rhonda +Rochelle +Roseanne +Sara +Sharen +Sharron +Stella +Theodora +Vickie +Winifred +Linda +Susan +Patricia +Mary +Barbara +Kathleen +Nancy +Carol +Donna +Deborah +Karen +Sandra +Sharon +Judith +Diane +Margaret +Elizabeth +Christine +Pamela +Joan +Gail +Janet +Cynthia +Ann +Janice +Catherine +Joanne +Cheryl +Marilyn +Beverly +Joyce +Elaine +Ellen +Lynn +Jane +Maureen +Jean +Paula +Shirley +Lorraine +Suzanne +Marie +Virginia +Carolyn +Katherine +Frances +Martha +Anne +Dorothy +Laura +Joann +Gloria +Valerie +Kathryn +Brenda +Rosemary +Jacqueline +Eileen +Theresa +Wendy +Geraldine +Bonnie +Diana +Helen +Marcia +Jeanne +Maryann +Ruth +Alice +Judy +Sally +Rita +Arlene +Sheila +Roberta +Phyllis +Irene +Leslie +Dianne +Rose +Kathy +Sarah +Jo +Louise +Betty +Lois +Lynda +Charlene +June +Michele +Priscilla +Claire +Constance +Darlene +Denise +Lucille +Charlotte +Marjorie +Andrea +Anna +Carole +Marsha +Lynne +Claudia +Dolores +Victoria +Eleanor +Janis +Marianne +Anita +Dale +Doreen +Maria +Teresa +Laurie +Cathy +Jill +Regina +Robin +Candace +Jan +Marlene +Paulette +Pauline +Holly +Loretta +Marion +Noreen +Rebecca +Stephanie +Audrey +Doris +Evelyn +Norma +Annette +Beth +Christina +Rosemarie +Betsy +Josephine +Marguerite +Angela +Joy +Sherry +Toni +Antoinette +Colleen +Sheryl +Faith +Julie +Renee +Vivian +Bernadette +Edith +Florence +Harriet +Jennifer +Yvonne +Lee +Lillian +Rosalie +Terry +Clare +Emily +Francine +Gayle +Juanita +Julia +Margo +Marian +Maryellen +Marylou +Melanie +Mildred +Susanne +Veronica +Carla +Caroline +Dana +Grace +Natalie +Sara +Beatrice +Bette +Bonita +Cathleen +Lucy +Madeline +Nora +Penelope +Rosanne +Annmarie +Cecelia +Edna +Lisa +Monica +Adele +Alison +Amy +Corinne +Dawn +Debra +Gertrude +Heidi +Jacquelyn +Jeanette +Johanna +Katharine +Kristine +Lauren +Lenore +Lucinda +Sylvia +Adrienne +Bernice +Connie +Deirdre +Delores +Gwendolyn +Helene +Jayne +Laurel +Lesley +Claudette +Dianna +Faye +Georgia +Gladys +Melissa +Peggy +Rachel +Rosalind +Roseann +Shelley +Stella +Dorothea +Eva +Genevieve +Gretchen +Hope +Justine +Karin +Kate +Lorna +Lydia +Marcella +Maryanne +Michelle +Miriam +Naomi +Roseanne +Sue +Vera +Antonia +Belinda +Camille +Carmen +Celeste +Daryl +Debbie +Gale +Georgianna +Jeannette +Jeannie +Kimberly +Lucia +Marcy +Margery +Myra +Nadine +Polly +Rochelle +Wanda +Abigail +Alberta +Alexandra +Alexis +Alicia +Althea +Alyce +Blanche +Candice +Carolann +Edwina +Erin +Francesca +Georgette +Glenda +Heather +Janie +Joanna +Kristin +Leona +Marybeth +Muriel +Nina +Rhonda +Rosalyn +Roxanne +Therese +Wilma +Alana +Alma +Amanda +Annemarie +Billie +Carmela +Deanna +Elinor +Elisabeth +Eloise +Estelle +Ethel +Eunice +Hazel +Ilona +Jeannine +Jennie +Jenny +Jessica +Kerry +Laureen +Lorelei +Lyn +Lynette +Madeleine +Marilou +Marilynn +Meredith +Olivia +Rachael +Rae +Rena +Sharlene +Sharron +Sharyn +Terri +Trudy +Violet +Linda +Susan +Patricia +Mary +Barbara +Kathleen +Nancy +Deborah +Donna +Carol +Sharon +Diane +Karen +Elizabeth +Sandra +Margaret +Judith +Gail +Pamela +Christine +Janet +Cynthia +Joan +Janice +Ann +Jane +Cheryl +Joyce +Joanne +Jean +Elaine +Catherine +Maureen +Paula +Marilyn +Ellen +Laura +Beverly +Lynn +Marie +Katherine +Virginia +Anne +Denise +Kathryn +Shirley +Carolyn +Wendy +Dorothy +Eileen +Bonnie +Lorraine +Frances +Rosemary +Jacqueline +Martha +Marcia +Suzanne +Joann +Valerie +Kathy +Gloria +Alice +Ruth +Brenda +Sally +Theresa +Louise +Diana +Irene +Charlene +Jeanne +Sheila +Andrea +Evelyn +Rita +Darlene +Marjorie +Marlene +Helen +Lois +Michele +Dianne +Phyllis +Arlene +Judy +Constance +Lynne +Debra +Rose +Roberta +Jo +Doreen +Anita +Betty +Maryann +Victoria +Dolores +Holly +Maria +Marsha +Candace +Geraldine +June +Cathy +Claudia +Lynda +Anna +Sherry +Charlotte +Leslie +Sara +Eleanor +Sarah +Beth +Betsy +Regina +Claire +Jill +Lisa +Angela +Laurie +Lucille +Shelley +Doris +Marguerite +Annette +Carole +Marion +Robin +Stephanie +Dale +Peggy +Rosemarie +Colleen +Pauline +Gayle +Julie +Michelle +Jennifer +Loretta +Priscilla +Alison +Janis +Melissa +Dawn +Josephine +Marianne +Norma +Christina +Francine +Rebecca +Terry +Grace +Roseann +Julia +Lillian +Noreen +Sylvia +Teresa +Vivian +Amy +Antoinette +Emily +Jeannette +Lee +Paulette +Sue +Susanne +Audrey +Candice +Cathleen +Esther +Gale +Jan +Maryellen +Melanie +Sheryl +Bernadette +Carla +Florence +Cecelia +Harriet +Jacquelyn +Joy +Lauren +Madeline +Mildred +Penny +Yvonne +Adrienne +Annmarie +Corinne +Faith +Jeanette +Lucy +Melinda +Monica +Penelope +Rosalie +Toni +Wanda +Agnes +Bernice +Celeste +Gretchen +Marian +Renee +April +Delores +Dianna +Ethel +Georgia +Hope +Katharine +Lydia +Margo +Maryjane +Meredith +Rhonda +Veronica +Beatrice +Bette +Carolann +Gladys +Gwendolyn +Jayne +Joanna +Kathi +Marylou +Patrice +Arline +Bonita +Caroline +Cecilia +Edith +Helene +Ida +Justine +Karin +Kristine +Lenore +Maryanne +Rochelle +Roseanne +Vicki +Alicia +Bridget +Catharine +Edna +Elise +Ernestine +Faye +Georgette +Laurene +Lesley +Lucinda +Lynette +Madelyn +Marcy +Marietta +Miriam +Althea +Annie +Bertha +Camille +Cecile +Celia +Cindy +Clara +Connie +Dana +Daria +Debbie +Eugenia +Fay +Heidi +Johanna +Kimberly +Kristin +Laurel +Lorna +Marybeth +Mona +Muriel +Nadine +Naomi +Nina +Olivia +Rosalind +Rosanne +Sharron +Thelma +Adele +Aleta +Allison +Antonia +Carlene +Cora +Corrine +Dorothea +Eugenie +Eva +Genevieve +Gertrude +Glenda +Gwen +Heather +Iris +Jeanine +Jennie +Jessica +Jody +Juanita +Kristina +Laureen +Lenora +Leona +Margie +Marilynn +Marta +Maxine +Melody +Molly +Nellie +Patti +Rachel +Ramona +Rosalyn +Roxanne +Sharyn +Stella +Tracy +Linda +Patricia +Susan +Mary +Deborah +Kathleen +Barbara +Nancy +Donna +Karen +Diane +Carol +Elizabeth +Sharon +Judith +Sandra +Christine +Margaret +Gail +Pamela +Janet +Joan +Janice +Cynthia +Denise +Catherine +Ann +Jane +Cheryl +Joanne +Lynn +Jean +Debra +Joyce +Maureen +Ellen +Paula +Laura +Katherine +Beverly +Elaine +Anne +Carolyn +Bonnie +Lorraine +Marie +Wendy +Jacqueline +Marilyn +Shirley +Virginia +Theresa +Frances +Suzanne +Dorothy +Kathryn +Martha +Ruth +Louise +Sheila +Jeanne +Roberta +Lois +Gloria +Michele +Brenda +Irene +Joann +Marcia +Eileen +Rosemary +Kathy +Helen +Laurie +Robin +Valerie +Leslie +Andrea +Charlene +Maryann +Sally +Lynne +Darlene +Phyllis +Alice +Judy +Geraldine +Diana +Jill +Marjorie +Rose +Victoria +Rita +Cathy +Claudia +Betty +Evelyn +Angela +Doreen +Anna +Holly +Marlene +Beth +Sarah +June +Teresa +Colleen +Dianne +Arlene +Candace +Jo +Marion +Constance +Lisa +Jennifer +Sherry +Claire +Dale +Maria +Regina +Michelle +Anita +Charlotte +Dolores +Janis +Marsha +Carole +Rebecca +Shelley +Pauline +Christina +Doris +Lucille +Marianne +Norma +Amy +Dawn +Francine +Peggy +Priscilla +Audrey +Rosemarie +Stephanie +Yvonne +Betsy +Eleanor +Gale +Grace +Joy +Annette +Cathleen +Edith +Florence +Jeanette +Josephine +Julie +Marguerite +Sara +Sylvia +Gayle +Jacquelyn +Lynda +Renee +Antoinette +Katharine +Paulette +Vivian +Bernadette +Gwendolyn +Jan +Kristine +Loretta +Lucy +Melinda +Melissa +Terry +Cindy +Harriet +Julia +Lauren +Lillian +Noreen +Roxanne +Adele +Alison +Bernice +Carla +Caroline +Celeste +Emily +Laurel +Sheryl +Lee +Maryellen +Rosalie +Sue +Toni +Veronica +Wanda +Annmarie +Candice +Jessica +Kyle +Margo +Mariann +Melanie +Monica +Patti +Roseann +Terri +Adrienne +Elise +Faith +Faye +Helene +Hope +Karin +Patrice +Corinne +Heidi +Kimberly +Lydia +Marylou +Penny +Vicki +Alicia +Carrie +Cecilia +Clare +Dana +Ernestine +Esther +Georgia +Heather +Lenore +Lucinda +Madeline +Maryanne +Meredith +Mildred +Rosanne +Bette +Bonita +Cecelia +Connie +Hazel +Jeannette +Juanita +Kathi +Kerry +Natalie +Nina +Sharyn +Therese +Agnes +Alexis +Amelia +Antonia +Beatrice +Carmen +Debora +Dona +Edna +Eva +Gay +Gladys +Gretchen +Justine +Lesley +Marcy +Maura +Mona +Nanette +Polly +Rachel +Rhonda +Sophie +Tina +Alberta +Camille +Claudette +Darleen +Deidre +Delores +Glenda +Hilary +Iris +Janette +Joanna +Kathie +Kay +Lea +Lenora +Lori +Lorna +Marcella +Marta +Maryjane +Maxine +Melody +Miriam +Sharlene +Annie +April +Celia +Clara +Coleen +Crystal +Debbie +Dianna +Elena +Eugenia +Felicia +Fern +Jacalyn +Jamie +Janine +Jayne +Jenny +Jody +Julianne +Kate +Kristin +Lola +Lucia +Lyn +Madelyn +Marybeth +Nora +Pearl +Philomena +Ramona +Rosalind +Sandy +Susanne +Trudy +Vickie +Linda +Patricia +Susan +Deborah +Mary +Barbara +Nancy +Kathleen +Donna +Karen +Diane +Carol +Elizabeth +Sharon +Sandra +Christine +Margaret +Pamela +Judith +Debra +Cynthia +Gail +Joan +Janet +Denise +Janice +Ann +Catherine +Cheryl +Lynn +Jane +Jean +Joyce +Laura +Maureen +Joanne +Elaine +Marilyn +Anne +Paula +Ellen +Eileen +Beverly +Jacqueline +Marie +Laurie +Wendy +Theresa +Virginia +Bonnie +Dorothy +Katherine +Kathryn +Suzanne +Michele +Claudia +Darlene +Robin +Lorraine +Ruth +Roberta +Sally +Jo +Sheila +Carolyn +Joann +Rose +Brenda +Lisa +Frances +Kathy +Gloria +Leslie +Martha +Louise +Shirley +Marcia +Diana +Jeanne +Valerie +Cathy +Helen +Andrea +Jill +Rosemary +Charlene +June +Phyllis +Sarah +Lynne +Marlene +Maryann +Victoria +Colleen +Maria +Marianne +Alice +Rita +Doreen +Judy +Lois +Marjorie +Betty +Arlene +Holly +Claire +Constance +Geraldine +Anna +Dale +Marsha +Beth +Rebecca +Dawn +Anita +Evelyn +Irene +Lynda +Regina +Amy +Angela +Michelle +Dianne +Dolores +Lucille +Candace +Priscilla +Shelley +Charlotte +Jennifer +Christina +Sherry +Jan +Julie +Marion +Nadine +Noreen +Teresa +Audrey +Gayle +Joy +Pauline +Bernadette +Lauren +Norma +Peggy +Sara +Betsy +Carole +Eleanor +Roxanne +Stephanie +Terry +Francine +Grace +Janis +Julia +Kim +Lillian +Sylvia +Carla +Doris +Marguerite +Antoinette +Laurel +Natalie +Sue +Edith +Jeanette +Josephine +Rosemarie +Sheryl +Toni +Lee +Paulette +Renee +Gale +Heather +Kristine +Loretta +Nina +Patti +Rosanne +Melinda +Yvonne +Alison +Emily +Faith +Rhonda +Rosalie +Roseann +Tina +Vivian +Florence +Jacquelyn +Lori +Madeline +Veronica +Wanda +Annette +Corinne +Heidi +Helene +Jessica +Jody +Lenore +Lucy +Maryanne +Susanne +Gwendolyn +Johanna +Adrienne +Beatrice +Cathleen +Celeste +Cindy +Debora +Jeannette +Kimberly +Leona +Lydia +Monica +Penny +Caroline +Dana +Debbie +Esther +Harriet +Jeanine +Katharine +Maryellen +Melanie +Terri +Vicki +Abigail +Adele +Agnes +Bernice +Eva +Jeannine +Kathie +Lorna +Penelope +Rachel +Therese +April +Bonita +Candice +Carmela +Cecilia +Clare +Delores +Dona +Dorene +Faye +Hollis +Hope +Jayne +Juanita +Lorrie +Margo +Marylou +Maura +Melissa +Rosalind +Vera +Alberta +Allison +Alyce +Annmarie +Arleen +Camille +Carmen +Claudette +Coleen +Dianna +Ernestine +Ethel +Gina +Ingrid +Iris +Janine +Karin +Kristen +Maribeth +Mildred +Nora +Olga +Patrice +Ramona +Sallie +Bette +Blanche +Carlene +Carrie +Cathryn +Connie +David +Deirdre +Dorine +Elisabeth +Estelle +Genevieve +Georgette +Gretchen +Ilene +Joanna +Lucinda +Lynette +Lynnette +Madelyn +Marcy +Margery +Marian +Maryjane +Melody +Miriam +Muriel +Pearl +Rae +Robyn +Rosalyn +Sharron +Theodora +Vanessa +Alexandra +Alicia +Belinda +Billie +Caren +Caryn +Catharine +Cecile +Charmaine +Corrine +Crystal +Danielle +Darcy +Daria +Deidre +Dorothea +Edna +Gay +Georgia +Glenda +Jennie +Jeri +Kerry +Lana +Laureen +Lea +Lesley +Lyn +Margot +Maxine +Meredith +Mona +Nan +Naomi +Patty +Polly +Rhea +Rosa +Tracy +Winifred +Susan +Deborah +Linda +Patricia +Mary +Nancy +Barbara +Kathleen +Karen +Donna +Diane +Carol +Debra +Elizabeth +Cynthia +Sharon +Pamela +Janet +Sandra +Margaret +Joan +Gail +Denise +Judith +Christine +Janice +Joanne +Catherine +Cheryl +Ann +Lynn +Jane +Paula +Jean +Anne +Joyce +Laura +Maureen +Ellen +Robin +Beverly +Katherine +Marilyn +Kathryn +Jacqueline +Eileen +Elaine +Jo +Kathy +Laurie +Sheila +Wendy +Marie +Theresa +Virginia +Bonnie +Suzanne +Sally +Maria +Darlene +Michele +Dorothy +Martha +Carolyn +Ruth +Valerie +Leslie +Lisa +Roberta +Claudia +Lorraine +Frances +Rose +Joann +Sarah +Louise +Shirley +Gloria +Andrea +Brenda +Michelle +Charlene +Doreen +Cathy +Judy +Alice +Helen +Diana +Rita +Rosemary +Jill +Dawn +Lois +Marcia +Anita +Jeanne +Betty +Colleen +Irene +Arlene +Holly +Phyllis +Victoria +Dale +Lynne +Evelyn +Geraldine +Beth +Marjorie +Marsha +Marianne +Rebecca +Kim +Teresa +Anna +Lauren +Betsy +Regina +Amy +Candace +Constance +June +Marlene +Maryann +Carole +Lori +Julie +Lucille +Sara +Janis +Sherry +Vanessa +Dianne +Nina +Roxanne +Charlotte +Eleanor +Christina +Debbie +Josephine +Marion +Peggy +Priscilla +Shelley +Angela +Dolores +Norma +Renee +Claire +Jennifer +Sheryl +Yvonne +Audrey +Doris +Lynda +Stephanie +Sue +Bernadette +Carla +Heidi +Laurel +Noreen +Pauline +Gayle +Alison +Francine +Grace +Patrice +Rosanne +Faith +Gale +Joy +Melanie +Melissa +Toni +Annette +Jan +Julia +Marian +Caroline +Cindy +Corinne +Florence +Melinda +Monica +Paulette +Rhonda +Terry +Jacquelyn +Jeanette +Kimberly +Lee +Rachel +Sylvia +Cathleen +Lillian +Loretta +Nadine +Veronica +Wanda +Kristine +Lucy +Marguerite +Patti +Vicki +Vivian +Emily +Nora +Adele +Agnes +Madeline +Sherri +Belinda +Bonita +Edith +Lydia +Natalie +Roseann +Rosemarie +Susanne +Tina +Bernice +Celeste +Elise +Helene +Ingrid +Jamie +Janine +Jeannette +Katharine +Luann +Marylou +Melody +Mildred +Rosalie +Terri +April +Beatrice +Clare +Connie +Janette +Jayne +Jody +Karin +Lucia +Penny +Ramona +Adrienne +Alicia +Betsey +Camille +Carmen +Carrie +Edna +Esther +Gina +Jessica +Juanita +Lenore +Lorna +Lou +Louann +Lucinda +Marybeth +Muriel +Sherrie +Allison +Annmarie +Antoinette +Cindi +Claudette +Dana +Elisabeth +Gay +Gwen +Gwendolyn +Harriet +Hope +Iris +Joanna +Kathie +Kerry +Lynette +Margo +Maryanne +Maryellen +Maxine +Mona +Polly +Tracey +Alberta +Amelia +Candice +Carlene +Crystal +Darleen +Debora +Deirdre +Delores +Eugenia +Gladys +Glenda +Gretchen +Heather +Kristin +Laureen +Leigh +Leslee +Lesley +Lila +Lorrie +Luanne +Marcy +Mindy +Naomi +Roseanne +Sophie +Teri +Therese +Arline +Bette +Bonny +Bridget +Clara +Eloise +Emma +Genevieve +Ilona +Isabel +Jeannine +Jennie +Kimberley +Leona +Lyn +Madelyn +Margot +Maryjane +Maura +Myra +Randi +Rena +Rosalind +Sallie +Trudy +Vickie +Winifred +Alexandra +Alexis +Amanda +Angelina +Ava +Carmela +Cheryle +Chris +Daria +Dianna +Dona +Doretta +Elisa +Eva +Felice +Felicia +Francesca +Hilary +Hollis +Jeanine +Jocelyn +Joni +Justine +Kay +Kyle +Linnea +Lissie +Lorene +Lorie +Louanne +Marcella +Margery +Mari +Marla +Miriam +Nanci +Nola +Rae +Robyn +Rochelle +Rosann +Roxann +Ruby +Sharron +Tanya +Yvette +Susan +Patricia +Mary +Deborah +Linda +Nancy +Karen +Debra +Barbara +Donna +Kathleen +Diane +Cynthia +Carol +Sharon +Pamela +Elizabeth +Margaret +Sandra +Gail +Janet +Joan +Catherine +Cheryl +Lynn +Judith +Robin +Denise +Ann +Joanne +Laura +Jane +Janice +Christine +Paula +Maureen +Anne +Lisa +Ellen +Joyce +Jean +Laurie +Elaine +Jo +Rose +Marie +Theresa +Katherine +Beverly +Kathryn +Michele +Eileen +Leslie +Wendy +Marilyn +Sheila +Marian +Suzanne +Jacqueline +Bonnie +Kathy +Holly +Dorothy +Joann +Lori +Dawn +Lorraine +Sally +Andrea +Martha +Virginia +Darlene +Valerie +Brenda +Ruth +Carolyn +Maria +Cathy +Gloria +Victoria +Marcia +Betty +Beth +Roberta +Claudia +Diana +Shirley +Helen +Alice +Jeanne +Colleen +Marianne +Sarah +Doreen +Louise +Rosemary +Angela +Kim +Rita +Charlene +Frances +Jill +Michelle +Phyllis +Teresa +Amy +Evelyn +Lynne +Judy +June +Lois +Anna +Dianne +Rebecca +Anita +Lauren +Julie +Dolores +Jennifer +Candace +Dale +Debbie +Loretta +Claire +Constance +Janis +Marjorie +Renee +Roxanne +Cindy +Geraldine +Marlene +Regina +Sherry +Stephanie +Irene +Marion +Arlene +Audrey +Jan +Pauline +Lucille +Nina +Priscilla +Shelley +Terry +Lucy +Maryann +Yvonne +Carole +Marsha +Sara +Sheryl +Carla +Julia +Toni +April +Heidi +Melissa +Wanda +Betsy +Luann +Norma +Vicki +Vivian +Charlotte +Joy +Sue +Vanessa +Veronica +Bernadette +Kimberly +Maura +Nadine +Paulette +Rosemarie +Christina +Eleanor +Gina +Lillian +Peggy +Rosanne +Annette +Grace +Terri +Tina +Carmen +Francine +Heather +Jayne +Lynda +Maryellen +Noreen +Alison +Debora +Doris +Edith +Jeanette +Karin +Marguerite +Monica +Robyn +Celeste +Dana +Eva +Gale +Gayle +Lee +Lydia +Melanie +Miriam +Patrice +Sylvia +Emily +Laurel +Patti +Alicia +Cathleen +Josephine +Madeline +Rachel +Sherri +Harriet +Jacquelyn +Leigh +Melinda +Rhonda +Roseann +Belinda +Bernice +Bonita +Delores +Faith +Gwendolyn +Jennie +Jody +Kerry +Lorna +Louann +Lucinda +Mariann +Mildred +Penny +Susanne +Therese +Adele +Alexandra +Caroline +Corinne +Edna +Florence +Gretchen +Margo +Maryanne +Patty +Polly +Antoinette +Beatrice +Carleen +Elisabeth +Francesca +Hope +Lesley +Lorrie +Naomi +Natalie +Rosalind +Amanda +Claudette +Dorothea +Gladys +Hollis +Jacalyn +Janine +Jeanine +Joanna +Juanita +Kathie +Kristin +Kristine +Melody +Moira +Nora +Penelope +Rosalie +Suzan +Valarie +Vickie +Adrienne +Carlene +Cassandra +Connie +Darcy +Daria +Dianna +Dona +Elena +Elise +Elissa +Esther +Fern +Georgette +Georgia +Glenda +Isabel +Jeannette +Jeannine +Jocelyn +Kathi +Laureen +Laurene +Lucia +Lyn +Maxine +Mona +Rae +Robbin +Sharlene +Shawn +Tara +Tracey +Agnes +Annmarie +Bette +Camille +Cherie +Clare +Corrine +Daryl +Deirdre +Della +Ernestine +Gay +Ingrid +Jessie +Julianne +Kate +Kristen +Marcella +Marilynn +Marla +Megan +Myra +Rosalyn +Shari +Sonia +Abigail +Allison +Annemarie +Arline +Bettina +Bridget +Carmella +Charleen +Concetta +Danielle +Deena +Elisa +Faye +Gwen +Helena +Helene +Jackie +Jamie +Jeannie +Jenny +Jeri +Karla +Kimberley +Kristina +Kyle +Laraine +Leah +Lena +Lenora +Lenore +Leona +Lizabeth +Lora +Loraine +Lou +Luanne +Madelyn +Mindy +Nanci +Noel +Olivia +Sandy +Shelly +Stacey +Teri +Thelma +Vera +Winifred +Susan +Deborah +Mary +Linda +Patricia +Nancy +Debra +Donna +Karen +Barbara +Kathleen +Diane +Carol +Elizabeth +Cheryl +Sharon +Cynthia +Pamela +Sandra +Margaret +Lynn +Robin +Janet +Judith +Denise +Gail +Catherine +Ann +Joanne +Lisa +Laurie +Joan +Laura +Christine +Janice +Anne +Jane +Jean +Ellen +Bonnie +Paula +Kim +Joyce +Wendy +Maureen +Theresa +Michele +Suzanne +Elaine +Eileen +Beverly +Katherine +Lori +Kathryn +Leslie +Jo +Kathy +Darlene +Lorraine +Doreen +Rose +Marie +Sheila +Brenda +Dawn +Valerie +Maria +Virginia +Holly +Martha +Cathy +Joann +Roberta +Charlene +Marcia +Sally +Andrea +Teresa +Helen +Ruth +Dorothy +Jill +Shirley +Colleen +Marilyn +Alice +Gloria +Carolyn +Jacqueline +Diana +Jeanne +Louise +Sarah +Frances +Maryann +Rosemary +Amy +Beth +Kimberly +Lynne +Angela +Claudia +Anna +Sheryl +Betty +June +Michelle +Julie +Phyllis +Rebecca +Judy +Victoria +Cindy +Debbie +Marianne +Renee +Sherry +Rita +Audrey +Tina +Anita +Constance +Evelyn +Lauren +Lois +Lynda +Geraldine +Marjorie +Jennifer +Heidi +Terry +Rosanne +Melanie +Roxanne +Charlotte +Dianne +Doris +Regina +Stephanie +Terri +Alison +Jan +Lucille +Marlene +Annette +Carole +Gina +Irene +Laurel +Luann +Shelley +Heather +Jody +Melissa +Sara +Sylvia +Claire +Norma +Vicki +Arlene +Corinne +Janis +Joy +Loretta +Lucy +April +Dale +Lee +Lillian +Marion +Marsha +Pauline +Rhonda +Carla +Candace +Dolores +Eleanor +Faith +Gayle +Josephine +Melinda +Peggy +Priscilla +Toni +Wanda +Yvonne +Cathleen +Gale +Julia +Noreen +Sheree +Debora +Francine +Nina +Sue +Marian +Monica +Rachel +Vanessa +Grace +Harriet +Susanne +Connie +Dana +Jayne +Juanita +Patrice +Carmen +Caroline +Edith +Gwendolyn +Veronica +Betsy +Carrie +Celeste +Christina +Emily +Jamie +Lou +Lydia +Vivian +Alicia +Antoinette +Florence +Jeanette +Margo +Marybeth +Bernadette +Desiree +Eva +Hope +Katharine +Kristine +Lorna +Luanne +Miriam +Nora +Patti +Paulette +Tracey +Abigail +Bridget +Carlene +Mindy +Nadine +Penelope +Rosemarie +Sabrina +Sherri +Bernice +Crystal +Darleen +Elise +Georgia +Jeannette +Kerry +Lucinda +Marcy +Marguerite +Marla +Maura +Roseann +Tracy +Adele +Adrienne +Allison +Annmarie +Belinda +Esther +Eve +Geralyn +Gladys +Jacquelyn +Janine +Karin +Leona +Madeline +Marilee +Maryanne +Maryellen +Melody +Mildred +Mona +Patty +Penny +Polly +Ramona +Rosalie +Therese +Alexandra +Beatrice +Bonita +Clare +Jeannine +Jodi +Joni +Justine +Kathi +Kristin +Lenore +Natalie +Roseanne +Shari +Thelma +Agnes +Bette +Camille +Caren +Cecelia +Coleen +Delores +Dona +Dorothea +Edna +Elena +Elisa +Felicia +Gretchen +Gwen +Helene +Henrietta +Iris +Jeanine +Jennie +Jeryl +Jocelyn +Kathie +Laureen +Lesley +Lisbeth +Lora +Loraine +Lyn +Marcella +Maryjane +Megan +Moira +Molly +Sandy +Stacey +Wilma +Abby +Bessie +Corrine +Dianna +Elisabeth +Elissa +Glenda +Hilda +Ida +Jackie +Jacklyn +Kimberley +Leanne +Lorie +Margery +Mari +Maribeth +Marta +Marylou +Nanette +Randi +Randy +Robyn +Rochelle +Roni +Tara +Vera +Bertha +Cheri +Cherie +Christie +Danielle +Daphne +Daria +Dina +Dori +Eloise +Ernestine +Georgette +Gertrude +Greta +Jaye +Jeannie +Joanna +Karla +Krista +Lea +Leah +Lela +Lorene +Mara +Margarita +Margot +Mariann +Marietta +Maxine +Meg +Muriel +Nan +Naomi +Noel +Rae +Rene +Roxann +Ruby +Shawn +Sherrill +Suzan +Tamara +Teri +Valarie +Vicky +Yvette +Susan +Mary +Deborah +Patricia +Karen +Linda +Donna +Nancy +Debra +Barbara +Kathleen +Diane +Cynthia +Sharon +Cheryl +Elizabeth +Carol +Sandra +Pamela +Margaret +Lynn +Kim +Lisa +Janet +Laura +Catherine +Denise +Gail +Ann +Robin +Judith +Joan +Jane +Christine +Laurie +Lori +Darlene +Ellen +Maureen +Wendy +Jean +Joanne +Kathy +Doreen +Theresa +Janice +Paula +Joyce +Anne +Cathy +Katherine +Suzanne +Cindy +Michele +Elaine +Bonnie +Eileen +Marie +Dawn +Sheila +Jo +Valerie +Beverly +Holly +Maria +Debbie +Brenda +Martha +Sally +Jacqueline +Kathryn +Rose +Leslie +Andrea +Jeanne +Joann +Lorraine +Rita +Virginia +Roberta +Ruth +Marcia +Sarah +Beth +Charlene +Kimberly +Marilyn +Teresa +Jennifer +Carolyn +Jill +Colleen +Lynne +Julie +Michelle +Helen +Judy +Amy +Diana +Frances +Gloria +Victoria +Angela +Tina +Lois +Phyllis +Sherry +Shirley +Louise +Rebecca +Betty +Lauren +Sheryl +Anna +Dorothy +Marianne +Renee +Rosemary +Terry +Claudia +Heidi +Evelyn +Roxanne +Alice +Marjorie +Anita +Arlene +Rhonda +Stephanie +Irene +Sue +Annette +Lee +Audrey +June +Melissa +Gina +Geraldine +Julia +Lillian +Carmen +Joy +Norma +Regina +Constance +Lydia +Marlene +Maryann +Gayle +Janis +Candace +Charlotte +Doris +Peggy +Grace +Yvonne +Christina +Jayne +Loretta +Melinda +Priscilla +Rachel +Rosanne +Alison +Betsy +Gwendolyn +Lynda +Rosemarie +Vanessa +Wanda +Carla +Melanie +Sylvia +April +Cathleen +Claire +Jody +Terri +Dale +Eleanor +Francine +Josephine +Patrice +Sara +Shelley +Laurel +Luann +Carole +Lucy +Patti +Tracy +Vicki +Celeste +Karin +Marion +Monica +Noreen +Veronica +Edith +Luanne +Maura +Miriam +Nina +Pauline +Toni +Antoinette +Dana +Lucinda +Maryellen +Sheree +Dianne +Emily +Heather +Jan +Kerry +Melody +Patty +Penny +Sherrie +Adrienne +Allison +Debora +Dolores +Gale +Lorna +Robyn +Tara +Bernadette +Carrie +Esther +Eva +Faith +Gladys +Iris +Lucille +Lynette +Pam +Sandy +Alexandra +Alicia +Connie +Jeanette +Jeannette +Joni +Madeline +Marcie +Marguerite +Maribeth +Marybeth +Nadine +Roseann +Sheri +Tracey +Beatrice +Deirdre +Gretchen +Laureen +Mildred +Bertha +Darcy +Dianna +Ethel +Felicia +Georgia +Janine +Jeannine +Lorie +Marcella +Marsha +Nora +Paulette +Sherri +Therese +Amanda +Belinda +Bernice +Cherie +Corinne +Dona +Elise +Florence +Gwen +Helene +Hilary +Katharine +Lenora +Lorrie +Marylou +Teri +Vera +Vickie +Annie +Annmarie +Carlene +Claudette +Dorene +Elena +Elisa +Jamie +Karyn +Leigh +Mariann +Maryanne +Myra +Olga +Polly +Ramona +Rosalie +Shari +Shawn +Susanne +Vivian +Abby +Billie +Bridget +Camille +Candice +Cathryn +Cecilia +Colette +Cora +Daria +Delores +Dori +Erica +Eve +Glenda +Harriet +Hope +Jeanie +Jocelyn +Johanna +Juliana +Leah +Leona +Loreen +Margo +Marisa +Marla +Maxine +Meredith +Mindy +Nicole +Sabrina +Shelly +Tanya +Trudy +Yvette +Adele +Althea +Bette +Bonita +Bonny +Carolann +Caroline +Caryl +Caryn +Cassandra +Catharine +Crystal +Danielle +Deidre +Elisabeth +Elissa +Faye +Geralyn +Jeannie +Juanita +Kimberley +Kristen +Lorri +Lyn +Marcy +Margarita +Marian +Michael +Mona +Nanci +Natalie +Pat +Roseanne +Sonia +Tami +Yolanda +Ana +Blanca +Caren +Carey +Carmel +Christie +Concetta +Delia +Desiree +Edwina +Ella +Elsa +Gay +Georgette +Ginger +Hazel +Helena +Ida +Jeanine +Jennie +Karla +Kay +Kristin +Kristine +Kyle +Leanne +Lesley +Liane +Lise +Loraine +Lorelei +Lorene +Lou +Marita +Moira +Naomi +Pattie +Phoebe +Rene +Rory +Rosa +Saundra +Stacy +Suzan +Vicky +Willie +Susan +Mary +Karen +Deborah +Linda +Nancy +Cynthia +Donna +Patricia +Diane +Kathleen +Debra +Barbara +Elizabeth +Carol +Cheryl +Sharon +Lisa +Sandra +Pamela +Margaret +Robin +Lynn +Cindy +Laura +Kim +Laurie +Janet +Ann +Denise +Catherine +Gail +Christine +Ellen +Joanne +Lori +Anne +Judith +Kathy +Theresa +Joan +Darlene +Doreen +Jane +Debbie +Janice +Brenda +Maureen +Bonnie +Leslie +Wendy +Jean +Joyce +Paula +Michele +Cathy +Katherine +Diana +Kimberly +Marie +Elaine +Dawn +Eileen +Suzanne +Beverly +Kathryn +Holly +Beth +Rose +Virginia +Valerie +Julie +Jill +Judy +Andrea +Michelle +Martha +Carolyn +Colleen +Ruth +Marianne +Jeanne +Lorraine +Frances +Lynne +Maria +Teresa +Amy +Jacqueline +Sally +Joann +Sheila +Helen +Louise +Marcia +Shirley +Jennifer +Victoria +Alice +Dorothy +Maryann +Charlene +Jo +Renee +Sarah +Gloria +Rosemary +Anna +Roberta +Lee +Tina +Evelyn +Marilyn +Melissa +Rita +Sue +Annette +Dianne +Angela +Heidi +Stephanie +Betty +Lauren +Terri +Anita +Irene +Sheryl +Yvonne +Lois +June +Terry +Tammy +Marion +Grace +Rhonda +Claudia +Phyllis +Regina +Sherry +Rebecca +Dale +Doris +Jody +Toni +April +Betsy +Norma +Audrey +Marjorie +Wanda +Christina +Constance +Joy +Julia +Loretta +Monica +Priscilla +Tracy +Claire +Marlene +Patti +Carmen +Gina +Melanie +Sara +Heather +Arlene +Carla +Carrie +Debora +Noreen +Vanessa +Dana +Francine +Gayle +Lydia +Vivian +Carole +Cathleen +Jan +Josephine +Patty +Peggy +Geraldine +Janis +Jayne +Lynda +Alison +Antoinette +Lucy +Penny +Rosanne +Sandy +Tracey +Dolores +Lillian +Melinda +Nora +Roxanne +Bernadette +Karin +Pam +Caroline +Celeste +Eleanor +Laurel +Marsha +Shelley +Faith +Jamie +Lucille +Pauline +Rachel +Sherri +Vicki +Candace +Chris +Connie +Erin +Gale +Gwendolyn +Lorrie +Marguerite +Nadine +Kerry +Maura +Rosemarie +Veronica +Allison +Corinne +Edna +Patrice +Charlotte +Crystal +Eva +Iris +Marylou +Nina +Sylvia +Adele +Beatrice +Edith +Emily +Jeannette +Laureen +Marybeth +Miriam +Shari +Adrienne +Alicia +Bernice +Georgia +Gladys +Jackie +Jacquelyn +Jocelyn +Lenore +Marisa +Maryellen +Natalie +Shelly +Sherrie +Dianna +Florence +Gwen +Jeanette +Luann +Maryanne +Mildred +Rae +Robyn +Sheri +Susanne +Therese +Vera +Belinda +Cherie +Daisy +Deirdre +Jeannine +Jenny +Jodi +Jodie +Jolene +Joni +Kimberley +Leigh +Lorna +Melody +Shawn +Carmel +Esther +Faye +Felicia +Juanita +Kathie +Leah +Marcella +Marian +Tanya +Yolanda +Abigail +Allyson +Angelina +Bonita +Bridget +Caren +Claudette +Deanna +Dona +Fay +Geralyn +Gretchen +Helene +Hilary +Ida +Ingrid +Jeri +Katharine +Kelly +Kristin +Kristine +Lucia +Lucinda +Luz +Maryjane +Pat +Polly +Rosa +Sabrina +Stacy +Tamara +Tammie +Tara +Teri +Vickie +Alberta +Alexandra +Althea +Amanda +Bertha +Bettina +Bonny +Cassandra +Clara +Debby +Elisabeth +Harriet +Isabel +Jessica +Joanna +Karla +Kay +Lesley +Lorie +Marcy +Margie +Melodie +Nanette +Ramona +Randi +Roseann +Stacey +Vicky +Amelia +Annmarie +Bette +Camille +Candice +Carmella +Dori +Elena +Gisele +Greta +Hope +Ivy +Janine +Jennie +Karyn +Kate +Kathi +Kristen +Kyle +Leisa +Lenora +Linnea +Liz +Luanne +Lyn +Margo +Marla +Marta +Mona +Myra +Nancie +Paulette +Penelope +Rena +Rhoda +Tami +Ursula +Valarie +Winifred +Alisa +Annie +Candy +Cathie +Celia +Cheri +Cindi +Coleen +Concetta +Danette +Darleen +Daryl +Debi +Dina +Dorene +Estelle +Eugenia +Eve +Francesca +Gay +Germaine +Gertrude +Ginny +Irma +Janette +Jeannie +Jessie +Johanna +Judi +Kendra +Laure +Laurene +Leanne +Leeann +Lena +Loreen +Lorelei +Loren +Lou +Lu +Lucie +Mariann +Maribeth +Marjory +Maxine +Mindy +Nilda +Sonia +Stacie +Susanna +Suzann +Tracie +Trudy +Susan +Mary +Patricia +Linda +Karen +Deborah +Nancy +Donna +Debra +Cynthia +Kathleen +Diane +Cheryl +Elizabeth +Lisa +Barbara +Carol +Pamela +Sharon +Sandra +Laura +Lori +Lynn +Margaret +Denise +Christine +Robin +Joanne +Laurie +Catherine +Kathy +Ann +Gail +Debbie +Kim +Cindy +Janet +Joan +Anne +Maureen +Theresa +Brenda +Jane +Ellen +Joyce +Darlene +Judith +Katherine +Michele +Jean +Janice +Dawn +Maria +Kathryn +Leslie +Kimberly +Wendy +Eileen +Paula +Cathy +Elaine +Doreen +Suzanne +Diana +Marie +Sally +Julie +Amy +Carolyn +Andrea +Bonnie +Valerie +Beth +Judy +Joann +Martha +Michelle +Jennifer +Sheila +Lorraine +Jill +Lynne +Marianne +Beverly +Holly +Teresa +Victoria +Jo +Colleen +Jacqueline +Roberta +Dorothy +Terri +Sue +Angela +Helen +Anna +Rose +Ruth +Tina +Virginia +Phyllis +Sarah +Terry +Annette +Heidi +Charlene +Rebecca +Frances +Alice +Evelyn +Jeanne +Louise +Tammy +Anita +Shirley +Lauren +Maryann +Dianne +Peggy +Regina +Betty +Gloria +Lois +Rosemary +Stephanie +Gina +Rita +Gayle +Renee +Sheryl +Joy +Marcia +June +Claudia +Jody +Yvonne +Alison +Betsy +Marilyn +Melissa +Carrie +Marlene +Toni +Irene +Rhonda +Audrey +Christina +Loretta +Wanda +Kelly +Marjorie +Sara +Connie +Grace +Allison +April +Arlene +Carole +Debora +Heather +Josephine +Julia +Lucy +Patti +Lee +Shelley +Tracy +Caroline +Constance +Melinda +Monica +Patrice +Sherry +Carla +Doris +Melanie +Priscilla +Roxanne +Vicki +Geraldine +Jan +Claire +Jayne +Lynda +Patty +Rosemarie +Sandy +Veronica +Corinne +Susanne +Cathleen +Erin +Gale +Sylvia +Tracey +Charlotte +Dana +Dolores +Emily +Maura +Nora +Shari +Candace +Carmen +Jackie +Lillian +Nadine +Norma +Bernadette +Dale +Eleanor +Jeanette +Lydia +Noreen +Penny +Sherri +Teri +Vanessa +Gwendolyn +Kerry +Celeste +Jamie +Lucille +Marybeth +Nina +Rachel +Tami +Faith +Francine +Jeannette +Juanita +Kristine +Marion +Miriam +Pauline +Vivian +Adrienne +Alicia +Antoinette +Katharine +Lorrie +Lou +Maryellen +Annmarie +Beatrice +Iris +Karin +Laurel +Leah +Lorna +Lucinda +Marian +Roseann +Belinda +Crystal +Deirdre +Florence +Janis +Jodi +Mildred +Naomi +Natalie +Robbin +Stacey +Tara +Vicky +Billie +Claudette +Elise +Eva +Ingrid +Jacquelyn +Lenore +Lora +Lynette +Madeline +Marsha +Melody +Pam +Paulette +Sherrie +Sonia +Tamara +Tanya +Elena +Gladys +Gretchen +Jennie +Jessica +Kathi +Laureen +Lorie +Luann +Lucia +Madelyn +Marguerite +Pat +Rochelle +Rosanne +Amanda +Cherie +Chris +Debby +Edith +Elisa +Elisabeth +Esther +Ethel +Georgia +Gwen +Harriet +Hope +Janine +Jeannine +Johanna +Kristen +Lauri +Leigh +Robyn +Vera +Adele +Ana +Becky +Bridget +Candy +Cassandra +Cecilia +Dori +Helena +Helene +Kate +Kimberley +Kristina +Marcy +Marylou +Mona +Penelope +Rosa +Sheri +Tammie +Angelina +Antonia +Arline +Bernice +Carleen +Carlene +Cathryn +Cheri +Christa +Clare +Danielle +Darcy +Darleen +Dena +Dianna +Eve +Georgette +Jenny +Joanna +Jodie +Lesley +Lyn +Maribeth +Marisa +Maryanne +Ramona +Rene +Rosalie +Sabrina +Sharlene +Trudy +Vickie +Yolanda +Alexandra +Amelia +Bonita +Camille +Celia +Clara +Colette +Daryl +Deanna +Delores +Desiree +Dora +Dorene +Edna +Ella +Felicia +Gay +Gertrude +Gisele +Hillary +Jocelyn +Joellen +Judi +Justine +Kathie +Kristin +Kyle +Lenora +Liza +Marci +Maxine +Moira +Nicole +Pearl +Rae +Rena +Roseanne +Shelly +Terese +Ursula +Yvette +Alissa +Arleen +Bernadine +Caren +Christie +Coleen +Corrine +Delia +Della +Elissa +Erica +Genevieve +Georgianna +Ivy +James +Janette +Janie +Jeannie +Jenifer +Jeri +Jerri +Karla +Kelley +Lea +Lise +Lissa +Luisa +Luz +Margo +Margot +Maritza +Megan +Merry +Muriel +Pattie +Ronda +Sandi +Shannon +Sondra +Stacy +Suzan +Therese +Susan +Mary +Donna +Karen +Linda +Patricia +Nancy +Lisa +Deborah +Cynthia +Elizabeth +Diane +Debra +Cheryl +Kathleen +Barbara +Pamela +Carol +Sharon +Lori +Laura +Sandra +Robin +Denise +Janet +Kathy +Christine +Margaret +Ann +Catherine +Lynn +Dawn +Theresa +Cindy +Laurie +Debbie +Kim +Judith +Brenda +Anne +Ellen +Gail +Joan +Joanne +Janice +Wendy +Maureen +Beth +Paula +Jane +Leslie +Jean +Kimberly +Suzanne +Kathryn +Cathy +Jennifer +Darlene +Katherine +Joyce +Amy +Michele +Marie +Michelle +Doreen +Eileen +Bonnie +Joann +Maria +Teresa +Elaine +Sheila +Colleen +Valerie +Julie +Judy +Andrea +Dorothy +Diana +Beverly +Jacqueline +Carolyn +Jill +Sally +Tina +Lorraine +Angela +Annette +Sarah +Ruth +Tammy +Anna +Jeanne +Louise +Tracy +Holly +Victoria +Virginia +Rebecca +Betty +Jo +Lynne +Rose +Sue +Melissa +Terri +Renee +Martha +Frances +Lauren +Roberta +Helen +Regina +Alice +Rita +Betsy +Shirley +Gina +Heidi +Kelly +Marianne +Charlene +Julia +Rosemary +Stephanie +Terry +Maryann +Alison +Dianne +Joy +Sherry +Carrie +Peggy +Anita +Christina +Patty +Evelyn +Heather +Irene +Penny +Audrey +Bernadette +Lee +Phyllis +Constance +Arlene +Claire +June +Lois +Lynda +Marcia +Monica +Rhonda +Yvonne +Claudia +Gloria +Loretta +Lucy +Marilyn +Wanda +Carla +Cathleen +Marjorie +Sheryl +April +Rosemarie +Roxanne +Teri +Grace +Dale +Doris +Marlene +Melanie +Norma +Shari +Carmen +Carole +Pam +Tami +Pauline +Sara +Toni +Tracey +Dana +Lillian +Stacey +Allison +Francine +Jody +Kerry +Marion +Maura +Nadine +Rachel +Robbin +Sandy +Veronica +Dolores +Jayne +Priscilla +Shelley +Vanessa +Caroline +Josephine +Laurel +Natalie +Noreen +Crystal +Deirdre +Marybeth +Elisa +Eva +Jeannette +Jodi +Maryellen +Patrice +Vicki +Alicia +Candace +Debora +Gayle +Geraldine +Jackie +Jan +Jeanette +Karin +Melinda +Robyn +Sherri +Connie +Elise +Jamie +Jeanine +Liz +Patti +Sheri +Sylvia +Tamara +Yolanda +Antoinette +Bernice +Emily +Gale +Jessica +Lucille +Madeline +Miriam +Nina +Ramona +Belinda +Corinne +Eleanor +Faith +Lydia +Roseann +Susanne +Chris +Gwendolyn +Kristine +Laureen +Luann +Marsha +Mildred +Yvette +Bridget +Carmela +Debby +Florence +Gretchen +Harriet +Joanna +Kathi +Kimberley +Lenore +Lorna +Lorrie +Rosa +Rosanne +Sandi +Tanya +Tara +Terese +Abigail +Annmarie +Celeste +Charlotte +Deanna +Elisabeth +Erin +Hilary +Hope +Janis +Jodie +Lorri +Melody +Molly +Adrienne +Candy +Edna +Gladys +Iris +Jeannine +Katharine +Leigh +Lora +Marcy +Marian +Nanette +Polly +Rene +Stacy +Tammie +Therese +Vivian +Agnes +Alexandra +Amanda +Ana +Annemarie +Bonita +Camille +Carmel +Coleen +Ethel +Felicia +Geralyn +Gwen +Helene +Jacquelyn +Joni +Karla +Kirsten +Kristi +Kyle +Lorie +Lucinda +Megan +Meredith +Migdalia +Nora +Pat +Sonia +Vera +Vickie +Alberta +Alexis +Candice +Cecile +Cecilia +Celia +Corrine +Della +Dianna +Edith +Ginger +Janine +Jenny +Juanita +Leanne +Liane +Luanne +Lynette +Margo +Marguerite +Maryanne +Monique +Rena +Rochelle +Shawn +Shelly +Vicky +Alma +Althea +Annie +Becky +Camilla +Caren +Carlene +Cecelia +Cheri +Cherie +Claudette +Dorene +Erika +Eve +Francesca +Georgia +Georgina +Gertrude +Ida +Ingrid +Ivy +Jeannie +Jeri +Jocelyn +Julianne +Kate +Katie +Kristina +Leah +Lise +Loraine +Lucia +Marcie +Margot +Maribeth +Marylou +Meg +Myra +Myrna +Naomi +Paulette +Penelope +Randi +Rosalie +Sharlene +Sherrie +Stacie +Stella +Thelma +Abby +Aimee +Amelia +Bethany +Bonny +Catharine +Cathryn +Clara +Colette +Daisy +Danielle +Dara +Desiree +Diann +Dorinda +Elena +Erica +Esther +Georgette +Hilda +Jennie +Jessie +Kathrine +Kelley +Kellie +Kristen +Kristin +Lana +Laurene +Laverne +Leona +Lesley +Loren +Marcella +Margarita +Margie +Mariann +Marisa +Marta +May +Michael +Moira +Mona +Nydia +Sheree +Sophia +Sophie +Thomas +Viola +Susan +Mary +Lisa +Donna +Karen +Linda +Patricia +Nancy +Deborah +Kathleen +Diane +Elizabeth +Cynthia +Lori +Sandra +Debra +Laura +Barbara +Cheryl +Carol +Robin +Sharon +Pamela +Denise +Laurie +Janet +Catherine +Brenda +Margaret +Ann +Kim +Kimberly +Lynn +Christine +Joanne +Kathy +Theresa +Wendy +Debbie +Dawn +Cindy +Maureen +Judith +Anne +Maria +Michele +Janice +Jennifer +Ellen +Joan +Katherine +Jane +Teresa +Suzanne +Paula +Darlene +Eileen +Gail +Jean +Beth +Jill +Michelle +Carolyn +Sheila +Cathy +Joyce +Amy +Elaine +Julie +Tracy +Diana +Andrea +Bonnie +Tina +Marie +Kathryn +Doreen +Tammy +Joann +Valerie +Annette +Jacqueline +Kelly +Leslie +Lorraine +Lynne +Martha +Holly +Sarah +Beverly +Judy +Melissa +Victoria +Evelyn +Colleen +Rose +Terri +Anna +Frances +Heidi +Renee +Roberta +Virginia +Angela +Shirley +Jeanne +Marianne +Terry +Alison +Charlene +Gina +Sherry +Dorothy +Jo +Regina +Helen +Stephanie +Sue +Sally +Lauren +Betsy +Gloria +Rebecca +Rosemary +Anita +Rhonda +Rita +Marcia +Phyllis +Tracey +Betty +Ruth +Dianne +Heather +Irene +Louise +Alice +Maryann +Jamie +Christina +Dana +Melanie +Monica +Priscilla +Audrey +Sheryl +Wanda +Caroline +Carrie +Jody +Patty +Julia +Marilyn +Maryellen +Peggy +Sara +Carmen +Carole +Gayle +Toni +Grace +Joy +Bernadette +Charlotte +Geraldine +June +Lee +Lois +Marjorie +Maura +Yvonne +Lynda +Penny +Shelley +Veronica +Cathleen +Patti +Rosemarie +Vicki +Antoinette +Carla +Jan +Jodi +Miriam +Shari +Allison +April +Kimberley +Lillian +Loretta +Roxanne +Claudia +Felicia +Sandy +Sheri +Chris +Claire +Dolores +Eva +Gretchen +Marlene +Norma +Sherri +Vivian +Connie +Emily +Francine +Kristen +Melinda +Nina +Sylvia +Alicia +Melody +Nadine +Noreen +Tamara +Corinne +Debora +Edith +Faith +Jackie +Josephine +Leigh +Lucy +Arlene +Crystal +Dale +Erin +Janine +Karin +Lydia +Marian +Pam +Therese +Vanessa +Candace +Constance +Jeanette +Kristine +Laureen +Laurel +Marybeth +Natalie +Rosanne +Bridget +Deanna +Deirdre +Doris +Eleanor +Gwendolyn +Kerry +Lorrie +Monique +Naomi +Patrice +Ramona +Sonia +Stacey +Susanne +Teri +Kelley +Marion +Mildred +Pauline +Yolanda +Ana +Bernice +Elisa +Florence +Jacquelyn +Jayne +Jessica +Kimberlee +Lenore +Luann +Randi +Tara +Yvette +Agnes +Beatrice +Cheri +Elena +Elise +Hope +Janis +Jeannine +Lucille +Megan +Moira +Nora +Shelly +Stacy +Alberta +Annmarie +Belinda +Carlene +Edna +Esther +Gwen +Kristin +Liz +Louann +Marisa +Marsha +Rachel +Robbin +Robyn +Rosa +Roseann +Tami +Tanya +Aida +Alexandra +Annemarie +Carmela +Clara +Emma +Francesca +Hilary +Jeannette +Jocelyn +Katharine +Lorna +Lucinda +Marcy +Marguerite +Migdalia +Pat +Polly +Allyson +Daisy +Darla +Debi +Dina +Gale +Georgia +Iris +Jenny +Joni +Kate +Katie +Katrina +Laurene +Lauri +Lorie +Lucia +Madeline +Margot +Maryanne +Marylou +Maxine +Meredith +Paulette +Rosalie +Sherrie +Tammie +Wendi +Arline +Becky +Caren +Cassandra +Darcy +Dawne +Debby +Deidre +Desiree +Dona +Estelle +Georgette +Gladys +Greta +Ingrid +Jeanine +Johanna +Kari +Kyle +Lenora +Lesley +Lora +Luanne +Marcella +Margarita +Maryjane +Olga +Penelope +Rene +Rosalyn +Sandi +Siobhan +Vera +Adrienne +Amanda +Annie +Camille +Carolann +Caron +Catharine +Cecilia +Celeste +Cherie +Clare +Dianna +Ethel +Gaye +Genevieve +Harriet +Jeffrey +Judi +Lila +Louisa +Marcie +Mark +Rochelle +Sabrina +Stacie +Valarie +Vicky +Winifred +Ada +Alana +Bertha +Bette +Bonny +Candy +Cathryn +Cecily +Charles +Cindi +Claudette +Colette +Daria +Dorene +Erica +Eve +Ginny +Glenda +Jeannie +Jennie +Joanna +Jodie +Jolene +Juanita +Kellie +Kirsten +Krista +Leah +Leeann +Leila +Leona +Mara +Margo +Marina +Melodie +Michael +Nanette +Nola +Ronda +Rosanna +Sharlene +Shelia +Sonya +Susanna +Susie +Tamra +Terrie +Tonya +Tracie +Ursula +Verna +Vickie +Violet +Lisa +Susan +Mary +Linda +Karen +Donna +Patricia +Nancy +Elizabeth +Deborah +Lori +Kathleen +Cynthia +Robin +Barbara +Diane +Laura +Sharon +Cheryl +Sandra +Debra +Laurie +Carol +Pamela +Christine +Denise +Brenda +Margaret +Jacqueline +Kimberly +Catherine +Ann +Dawn +Janet +Theresa +Lynn +Kim +Michele +Suzanne +Maureen +Jennifer +Kathy +Wendy +Darlene +Debbie +Judith +Joanne +Anne +Maria +Michelle +Ellen +Carolyn +Jane +Katherine +Cindy +Gail +Leslie +Julie +Beth +Elaine +Tammy +Kathryn +Diana +Tracy +Janice +Teresa +Amy +Valerie +Eileen +Paula +Joan +Jean +Sarah +Jill +Bonnie +Tina +Doreen +Heidi +Holly +Marie +Sheila +Cathy +Andrea +Kelly +Joann +Joyce +Lorraine +Martha +Renee +Sally +Angela +Anna +Judy +Jeanne +Tracey +Ruth +Stephanie +Victoria +Annette +Gloria +Rose +Melissa +Terri +Colleen +Sherry +Frances +Lynne +Beverly +Dorothy +Charlene +Gina +Lauren +Rebecca +Louise +Sue +Marianne +Shirley +Helen +Rita +Virginia +Marcia +Alice +Allison +Anita +Maryann +Rosemary +Phyllis +Regina +Roberta +Yvonne +Evelyn +Carla +Julia +Rhonda +Betty +Caroline +Alison +Christina +Roxanne +Terry +Heather +Jo +Irene +Marilyn +Veronica +Dana +Dianne +Rosemarie +Lynda +Wanda +Claire +Jackie +June +Peggy +Carmen +Cathleen +Jamie +Melanie +Noreen +Penny +Janine +Patty +Sara +Shari +Sheryl +Doris +Jody +Lee +Lois +Marjorie +Maura +Monica +Alicia +Joy +Lucy +Patti +Annmarie +Betsy +Grace +Jeanette +Sandy +Carole +Gayle +Josephine +Loretta +Marlene +Melinda +Robyn +Sherri +Toni +Carrie +Claudia +Connie +Corinne +Deirdre +Jodi +Rachel +April +Bernadette +Felicia +Gretchen +Norma +Shelley +Vicki +Leigh +Shelly +Sheri +Teri +Vanessa +Audrey +Deanna +Kerry +Bridget +Erin +Gwendolyn +Jacquelyn +Lillian +Lydia +Megan +Miriam +Sylvia +Tamara +Amanda +Chris +Marybeth +Nadine +Roseann +Crystal +Emily +Pam +Priscilla +Rosa +Arlene +Constance +Dale +Dolores +Geraldine +Karin +Kimberley +Marion +Stacey +Therese +Vivian +Belinda +Edith +Eva +Jayne +Kimberlee +Lauri +Lorie +Lucille +Natalie +Patrice +Tara +Danielle +Gwen +Jessica +Katharine +Maryanne +Maryellen +Melody +Pauline +Susanne +Candace +Elisa +Faith +Jeannette +Nina +Ramona +Sonia +Yvette +Alisa +Charlotte +Cheri +Elise +Florence +Jan +Kristin +Kristine +Lesley +Loriann +Lorna +Madeline +Marsha +Stacy +Vickie +Antoinette +Becky +Carlene +Cassandra +Debora +Francine +Joanna +Julianne +Karla +Lucia +Marcy +Marylou +Mildred +Monique +Nora +Rosanne +Yolanda +Alexandra +Allyson +Angel +Beatrice +Celeste +Delores +Dianna +Dina +Jana +Jeannine +Jessie +Kate +Laurel +Liz +Lorri +Marguerite +Marisa +Nicole +Roxann +Shawn +Trudy +Agnes +Amelia +Eleanor +Elisabeth +Gale +Ingrid +Jodie +Kristen +Laureen +Leah +Lorrie +Madelyn +Maryjane +Rene +Rochelle +Sherrie +Sonya +Traci +Adele +Alane +Bernice +Daphne +Darcy +Georgia +Hope +Iris +Jeanine +Jeri +Kathi +Kelley +Kellie +Krista +Leanne +Leeann +Louann +Maritza +Maxine +Paige +Stacie +Tracie +Tricia +Valarie +Aileen +Ana +Annamarie +Caren +Celia +Christie +Clare +Colette +Cora +Darleen +Deidre +Dorene +Esther +Ethel +Gladys +Harriet +Isabel +Jennie +Juanita +Louisa +Luann +Lynette +Meredith +Mona +Robbin +Ronda +Rosalind +Roslyn +Shannon +Tami +Vera +Vicky +Adrienne +Annie +Brigid +Camille +Carmela +Claudette +David +Deanne +Debby +Dorothea +Edna +Elsie +Estelle +Eve +Gigi +Gwyn +Hilary +Ivette +Janette +John +Juliet +Laverne +Lizabeth +Luanne +Maribeth +Marla +Maryjo +Migdalia +Nanci +Nereida +Penelope +Polly +Rosalie +Suzette +Tanya +William +Abby +Alberta +Alma +Angelique +Bette +Cherie +Christy +Clara +Concetta +Daniel +Deena +Dena +Desiree +Dora +Dori +Ella +Eugenia +Genevieve +Georgette +Gillian +Janina +Janis +Jeannie +Jenny +Jocelyn +Johanna +Johnna +Judi +Kathie +Katrina +Kerri +Kirsten +Kris +Kristi +Lenore +Lora +Lourdes +Marcie +Michael +Mindy +Moira +Nanette +Robert +Roseanne +Selina +Sherryl +Sonja +Stella +Tammie +Tonya +Lisa +Susan +Karen +Mary +Linda +Donna +Lori +Patricia +Elizabeth +Kathleen +Deborah +Cynthia +Nancy +Diane +Robin +Laura +Cheryl +Sharon +Barbara +Sandra +Carol +Laurie +Pamela +Debra +Christine +Kimberly +Dawn +Margaret +Catherine +Brenda +Denise +Michele +Kim +Lynn +Ann +Jennifer +Wendy +Janet +Jacqueline +Maria +Theresa +Judith +Michelle +Suzanne +Tracy +Joanne +Cindy +Amy +Julie +Anne +Kathy +Ellen +Kelly +Beth +Janice +Katherine +Carolyn +Jane +Maureen +Debbie +Tina +Teresa +Angela +Darlene +Leslie +Tammy +Eileen +Paula +Jill +Gail +Elaine +Jean +Sheila +Tracey +Doreen +Marie +Heidi +Valerie +Bonnie +Diana +Cathy +Colleen +Joan +Lynne +Sarah +Melissa +Andrea +Joann +Sherry +Holly +Kathryn +Renee +Lorraine +Terri +Gina +Judy +Martha +Beverly +Ruth +Anna +Sally +Jeanne +Evelyn +Joyce +Sherri +Alison +Lauren +Regina +Rose +Rebecca +Sue +Rhonda +Stephanie +Annette +Heather +Anita +Dana +Victoria +Virginia +Dorothy +Marianne +Terry +Roberta +Carla +Caroline +Helen +Marilyn +Shirley +Stacey +Allison +Penny +Alice +Marcia +Maryann +Wanda +Carrie +Julia +Carole +Charlene +Louise +Dianne +Frances +Toni +Audrey +Marlene +Monica +Rosemary +Gloria +Phyllis +Sheri +Jamie +Jo +Lynda +Nadine +Rita +Carmen +Maura +Rosemarie +Sara +Sheryl +Jodi +Vicki +Christina +Claudia +Jody +Joy +Lee +Noreen +Sylvia +Constance +Loretta +Melanie +Yvonne +Betsy +Dina +Jeanette +Kimberley +Marybeth +Shari +Shelley +Vanessa +Bridget +Connie +Janine +Josephine +Marjorie +Veronica +Cathleen +Crystal +Dolores +Doris +Gretchen +Jackie +Lydia +Natalie +Pam +Peggy +Tamara +Yvette +Alicia +April +Charlotte +Claire +Kerry +Lillian +Lucy +Nicole +Norma +Stacy +Tami +Annmarie +Betty +Deanna +Kelley +Kristin +Nina +Robyn +Rosa +Sandy +Corinne +Deirdre +Kristen +Lois +Marsha +Danielle +Jacquelyn +Melinda +Nora +Susanne +Yolanda +June +Kristine +Rachel +Tara +Amanda +Arlene +Belinda +Bernadette +Francine +Grace +Irene +Monique +Therese +Traci +Antoinette +Elena +Erin +Jayne +Maryellen +Miriam +Roxanne +Shelly +Adrienne +Eleanor +Eva +Gladys +Jan +Karin +Marion +Pauline +Tammie +Geraldine +Gwendolyn +Joanna +Laureen +Laurel +Luann +Patrice +Priscilla +Sherrie +Faith +Felicia +Florence +Jessica +Johanna +Loriann +Sonya +Vickie +Cherie +Debora +Edna +Elisa +Elisabeth +Jeannine +Juanita +Kimberlee +Lorie +Meg +Teri +Daphne +Emma +Ingrid +Iris +Jeannette +Jenifer +Justine +Lesley +Lorrie +Lucille +Lucinda +Madeline +Marcella +Maritza +Mildred +Paige +Patti +Patty +Rae +Shawn +Vicky +Vivian +Annemarie +Candace +Cara +Cheri +Chris +Clare +Darcy +Dianna +Emily +Erica +Glenda +Gwen +Jenny +Julianne +Kara +Marcy +Margarita +Melody +Migdalia +Sonia +Suzette +Tracie +Annie +Cassandra +Christa +Desiree +Dora +Francesca +Georgia +Karla +Katharine +Leigh +Marci +Margot +Marguerite +Maribeth +Megan +Olga +Roseanne +Becky +Bernice +Candy +Claudette +Daria +Delores +Edith +Eve +Georgette +Janis +Jodie +Kristina +Lauri +Leah +Leanne +Lenora +Lucia +Luz +Margie +Marla +Maryanne +Marylou +Milagros +Minerva +Naomi +Rene +Rochelle +Roseann +Sabrina +Terrie +Tonya +Wilma +Awilda +Beatrice +Caryn +Cecilia +Cindi +Cornelia +Debby +Deidre +Dona +Elise +Erika +Esther +Gayle +Helene +Jocelyn +Johnna +Juliann +Kate +Katrina +Kelli +Kirsten +Leeann +Lenore +Lise +Liz +Liza +Lora +Margo +Marian +Marisa +Maryjo +Ramona +Randi +Ronda +Rosalie +Tanya +Terese +Abigail +Aileen +Amber +Angelina +Annamaria +Caren +Carleen +Cathryn +Celeste +Celia +Colette +Daisy +Dale +Dorene +Ethel +Faye +Gale +Genevieve +Gisele +Hilary +Hope +Ida +Ivy +Jennie +John +Joni +Kari +Karyn +Katy +Lena +Leona +Lorna +Lyn +Maryjane +Meredith +Mimi +Mindy +Mona +Muriel +Nanette +Noemi +Paulette +Rena +Robert +Rosalind +Simone +Tammi +Tamra +Tricia +Valarie +Vera +Lisa +Susan +Karen +Mary +Linda +Donna +Lori +Elizabeth +Deborah +Patricia +Kathleen +Laura +Cheryl +Sandra +Cynthia +Christine +Nancy +Diane +Barbara +Kimberly +Pamela +Robin +Sharon +Laurie +Denise +Margaret +Debra +Brenda +Dawn +Carol +Lynn +Jennifer +Theresa +Wendy +Catherine +Michele +Ann +Kim +Michelle +Tracy +Maria +Paula +Tammy +Janet +Beth +Kelly +Suzanne +Jacqueline +Amy +Maureen +Tina +Anne +Judith +Katherine +Leslie +Cindy +Julie +Jane +Sheila +Janice +Andrea +Gail +Ellen +Kathy +Bonnie +Eileen +Carolyn +Jean +Darlene +Diana +Teresa +Melissa +Jill +Valerie +Colleen +Debbie +Sarah +Heidi +Joan +Marie +Joanne +Tracey +Gina +Kathryn +Martha +Holly +Angela +Sherry +Doreen +Renee +Rebecca +Cathy +Elaine +Lynne +Sherri +Terri +Anna +Joann +Stephanie +Alison +Joyce +Judy +Lauren +Victoria +Regina +Christina +Heather +Lorraine +Virginia +Jeanne +Sally +Dana +Gloria +Ruth +Annette +Dorothy +Rhonda +Wanda +Anita +April +Monica +Evelyn +Helen +Shirley +Charlene +Marianne +Louise +Rita +Rose +Stacey +Penny +Roberta +Alice +Allison +Marilyn +Rosemary +Terry +Caroline +Marcia +Sheryl +Melanie +Phyllis +Sara +Beverly +Carrie +Marjorie +Loretta +Carla +Julia +Marlene +Yvonne +Kristin +Maryann +Maura +Alicia +Carmen +Connie +Dianne +Joy +Audrey +Doris +Rosemarie +Sue +Yvette +Betsy +Priscilla +Rachel +Stacy +Jodi +Monique +Sheri +Veronica +Annmarie +Dina +Erin +Gretchen +Jamie +Jody +Kristen +Maryellen +Claudia +Constance +Frances +Shari +Sylvia +Betty +Cherie +Crystal +Jo +Melinda +Peggy +Robyn +Carole +June +Kerry +Lee +Irene +Jessica +Kristine +Leah +Natalie +Tamara +Belinda +Danielle +Deirdre +Faith +Karin +Marybeth +Patty +Tara +Emily +Felicia +Kelley +Sandy +Shelly +Arlene +Bridget +Grace +Kirsten +Lorie +Patti +Sonya +Toni +Vicki +Yolanda +Cathleen +Lillian +Lucy +Madeline +Marsha +Roxanne +Vivian +Adrienne +Alexandra +Corinne +Deanna +Jeanette +Josephine +Kara +Lois +Lydia +Lynda +Norma +Shelley +Tami +Therese +Tracie +Charlotte +Gayle +Geraldine +Ivette +Laurel +Lucille +Nicole +Nora +Susanne +Tanya +Vanessa +Celeste +Gwendolyn +Jackie +Janine +Kristina +Leigh +Marguerite +Marisa +Megan +Melody +Sonia +Tammie +Abigail +Amanda +Francine +Jan +Joanna +Lorrie +Marion +Miriam +Nadine +Noreen +Paige +Patrice +Ramona +Bernadette +Claire +Eleanor +Elise +Janis +Marcy +Nina +Roseann +Teri +Becky +Elisa +Jayne +Shawn +Vickie +Alisa +Antoinette +Candace +Dale +Eva +Georgia +Gladys +Jacquelyn +Jeannette +Jennie +Katharine +Krista +Lora +Lynette +Maritza +Pam +Vicky +Cassandra +Chris +Darcy +Debby +Elisabeth +Erica +Esther +Iris +Johanna +Kimberlee +Lauri +Lorri +Marisol +Maryanne +Mildred +Moira +Myra +Nanette +Naomi +Penelope +Polly +Sabrina +Sherrie +Aileen +Ana +Arleen +Beatrice +Candy +Cara +Daria +Debora +Deidre +Elena +Erika +Glenda +Gwen +Hilary +Jenny +Karla +Kate +Kay +Laureen +Leann +Lesley +Luz +Mari +Marian +Mona +Pauline +Rene +Rosanne +Tonya +Abby +Allyson +Angel +Annamarie +Bethann +Blanca +Carmela +Claudette +Daphne +Darleen +Deanne +Desiree +Dolores +Dora +Florence +Ida +Ingrid +Jeanine +Jenifer +John +Karyn +Kelli +Leanne +Leona +Loriann +Lucinda +Marta +Maryjane +Marylou +Maxine +Paulette +Rena +Rosalie +Stella +Suzette +Trudy +Verna +Zina +Aimee +Alyson +Annemarie +Daisy +Dianna +Dorinda +Edith +Elsie +Faye +Georgette +Giovanna +Harriet +Hillary +Jeannine +Johnna +Joni +Juanita +Julianne +Kathie +Katrina +Kellie +Keri +Kimberley +Lana +Laurieann +Lorine +Lucia +Marcella +Mariann +Migdalia +Olga +Robbin +Shannon +Susanna +Traci +Adele +Amber +Amelia +Bernard +Bonita +Brigid +Charleen +Clare +Colette +Corrine +Courtney +Dayna +Deana +Deena +Delores +Dorothea +Edna +Eve +Gillian +Giselle +Helene +Hope +Jana +Janette +Jeri +Jocelyn +Jodie +Judi +Justine +Kari +Laurene +Leeann +Lenore +Lise +Loreen +Lorna +Luann +Luisa +Marci +Margie +Margot +Maribeth +Marina +Marla +Merry +Milagros +Molly +Nilda +Patrica +Rae +Randi +Richard +Robert +Rochelle +Ronda +Rosa +Sallie +Selina +Sondra +Tammi +Tricia +Vera +Lisa +Susan +Mary +Karen +Donna +Elizabeth +Patricia +Deborah +Linda +Laura +Kathleen +Christine +Dawn +Lori +Robin +Kimberly +Diane +Nancy +Pamela +Sandra +Cheryl +Cynthia +Sharon +Jennifer +Barbara +Debra +Denise +Michelle +Michele +Catherine +Margaret +Tracy +Carol +Brenda +Lynn +Laurie +Maria +Jacqueline +Amy +Theresa +Wendy +Suzanne +Tammy +Julie +Ann +Tina +Anne +Kelly +Kim +Paula +Janet +Beth +Jill +Andrea +Sheila +Maureen +Ellen +Heidi +Carolyn +Darlene +Judith +Leslie +Katherine +Joanne +Kathryn +Renee +Cindy +Melissa +Angela +Joan +Tracey +Gina +Teresa +Diana +Kathy +Marie +Sarah +Colleen +Valerie +Eileen +Bonnie +Janice +Gail +Jane +Jean +Terri +Rebecca +Joann +Doreen +Anna +Holly +Stephanie +Debbie +Heather +Rhonda +Sherry +Christina +Monica +Dana +Joyce +Lauren +Victoria +Judy +Lorraine +Lynne +Martha +Ruth +Cathy +Dorothy +Virginia +April +Elaine +Regina +Stacey +Sally +Alison +Alice +Allison +Roberta +Annette +Kristen +Yvonne +Beverly +Dianne +Jodi +Maryann +Charlene +Jeanne +Julia +Lynda +Sheri +Gloria +Helen +Shirley +Terry +Wanda +Rose +Melanie +Rita +Kristin +Kristine +Shelly +Sherri +Evelyn +Sara +Veronica +Crystal +Deneen +Frances +Yvette +Anita +Carrie +Gretchen +Marilyn +Irene +Penny +Sheryl +Stacy +Carla +Carmen +Caroline +Marcia +Alicia +Antoinette +Constance +Louise +Grace +Joy +Toni +Deanna +Marlene +Monique +Natalie +Robyn +Betsy +Jackie +Marjorie +Melinda +Shelley +Audrey +Betty +Danielle +Jeanette +Jessica +Maura +Claire +Erin +Hope +Jo +Jody +June +Rosemary +Janine +Kelley +Lee +Roxanne +Shari +Cathleen +Doris +Kerry +Lillian +Nina +Phyllis +Rachel +Rosemarie +Tamara +Vicki +Claudia +Dina +Emily +Felicia +Lois +Amanda +Carole +Geraldine +Lucy +Nadine +Vanessa +Cassandra +Jacquelyn +Marybeth +Susanne +Tara +Yolanda +Connie +Dale +Francine +Jamie +Megan +Arlene +Deirdre +Elisa +Jeanine +Josephine +Kelli +Kellie +Kimberley +Loretta +Marianne +Norma +Peggy +Sue +Traci +Annmarie +Belinda +Cara +Darcy +Desiree +Erica +Karin +Leigh +Marion +Miriam +Paige +Patty +Pauline +Tammie +Therese +Bernadette +Dianna +Gayle +Gwendolyn +Krista +Lorrie +Lynette +Madeline +Marci +Maryellen +Nora +Patrice +Rosa +Shawn +Sylvia +Corinne +Eleanor +Eva +Faith +Karla +Lorie +Noreen +Patti +Rene +Sabrina +Tanya +Annemarie +Bridget +Charlotte +Jan +Joanna +Katharine +Kris +Kristina +Laureen +Luz +Nicole +Paulette +Priscilla +Ramona +Ronda +Tami +Aileen +Ana +Candace +Chris +Esther +Florence +Kara +Karyn +Lauri +Liza +Naomi +Sandy +Tricia +Vickie +Vivian +Angelina +Bernice +Cherie +Deena +Deidre +Elisabeth +Hilary +Iris +Jeannine +Jenny +Jodie +Johanna +Kate +Kimberlee +Kirsten +Leah +Loriann +Lorna +Mara +Marguerite +Rosanne +Sandi +Shannon +Sonia +Teri +Abigail +Adrienne +Alexandra +Celeste +Darleen +Dena +Elena +Elise +Gladys +Julianne +Laurene +Lora +Margarita +Maritza +Marsha +Maryjane +Mona +Pam +Trudy +Alisa +Becky +Dorene +Ginger +Helene +Katrina +Lana +Laurel +Lesley +Liz +Marcy +Maryanne +Marylou +Meghan +Rosalind +Sonya +Sophia +Stacie +Tammi +Aimee +Allyson +Carlene +Carmela +Carolann +Clara +Corrine +Debora +Dolores +Edna +Georgette +Inez +Jayne +Jeannette +Jennie +Jocelyn +John +Jolene +Juanita +Justine +Kari +Leona +Lise +Lucinda +Marcella +Melody +Meredith +Mildred +Moira +Polly +Randi +Sharlene +Shelia +Suzette +Tania +Tonya +Tracie +Trisha +Zina +Carleen +Cecelia +Christa +Colette +Daisy +Daphne +Darla +David +Edith +Georgia +Ivette +Jenifer +Jerilyn +Kendall +Kendra +Kristi +Leann +Loren +Lucia +Lucille +Marcie +Marina +Molly +Rosalie +Roseann +Sondra +Staci +Susanna +Venus +Vera +Ada +Adriana +Agnes +Beatrice +Bethanne +Brigitte +Candy +Carmella +Caryn +Celia +Cheri +Christy +Clare +Coleen +Corinna +Dara +Daryl +Deana +Deanne +Dineen +Dora +Dorothea +Erika +Fay +Francesca +Glenda +Gwen +Helena +Hilda +Ida +Jaime +Jana +Janis +Jeanmarie +Jeannie +Judi +Kathi +Kyle +Lea +Lena +Letitia +Lorri +Lourdes +Luann +Luanne +Lydia +Margret +Marisa +Marisol +Mindy +Penelope +Rosalyn +Ruby +Ruthann +Scott +Sonja +Terrie +Tonia +Trina +Wendi +Lisa +Karen +Susan +Mary +Kimberly +Patricia +Donna +Dawn +Elizabeth +Deborah +Christine +Kathleen +Laura +Linda +Lori +Cheryl +Jennifer +Cynthia +Nancy +Wendy +Michelle +Diane +Robin +Pamela +Sandra +Sharon +Denise +Debra +Barbara +Michele +Kim +Tracy +Laurie +Amy +Jacqueline +Brenda +Maria +Lynn +Catherine +Tammy +Carol +Margaret +Ann +Julie +Theresa +Melissa +Jill +Tina +Maureen +Paula +Suzanne +Kelly +Janet +Beth +Heidi +Angela +Anne +Carolyn +Joanne +Andrea +Darlene +Stephanie +Sheila +Gina +Colleen +Ellen +Heather +Leslie +Katherine +Diana +Holly +Renee +Rebecca +Teresa +Valerie +Eileen +Cindy +Tracey +Jane +Sarah +Kathryn +Janice +Christina +Kristen +Allison +Judith +Marie +Kathy +Debbie +Kristin +Elaine +Victoria +Joan +Kristine +Stacey +Alison +Doreen +Rhonda +Virginia +Anna +Bonnie +Gail +Annette +Jeanne +Martha +Alicia +Joann +Monica +Sherry +Dana +Jean +Lauren +Lorraine +Lynne +April +Cathy +Melanie +Carmen +Caroline +Joyce +Sherri +Rose +Charlene +Jodi +Regina +Alice +Sally +Terri +Gloria +Veronica +Dorothy +Beverly +Julia +Melinda +Monique +Evelyn +Judy +Wanda +Anita +Carrie +Helen +Marcia +Marianne +Shelly +Ruth +Penny +Yvonne +Deanna +Natalie +Sara +Stacy +Tara +Jessica +Carla +Frances +Lynda +Tamara +Connie +Gretchen +Roberta +Sheri +Emily +Erin +Jamie +Jody +Joy +Lillian +Marjorie +Rita +Rosemary +Bridget +Janine +Kelley +Lee +Maryann +Nicole +Shelley +Shirley +Marilyn +Marybeth +Shari +Claudia +Dianne +Irene +Kimberley +Kristina +Tanya +Toni +Yvette +Cathleen +Jeanette +Marlene +Sheryl +Traci +Audrey +Cherie +Crystal +Grace +Kerry +Louise +Megan +Vicki +Karin +Maryellen +Rachel +Susanne +Danielle +Hope +Terry +Amanda +Constance +Felicia +Norma +Phyllis +Roxanne +Sonia +Sonya +Sylvia +Annmarie +Carole +Dina +Doris +Jo +June +Maura +Paulette +Robyn +Yolanda +Ana +Betsy +Elisabeth +Erica +Juanita +Noreen +Patti +Samantha +Vanessa +Desiree +Eva +Jackie +Jeannine +Leah +Lucy +Priscilla +Sue +Adrienne +Bernadette +Betty +Charlotte +Eleanor +Jeannette +Josephine +Kris +Lesley +Marisol +Nadine +Nina +Shawn +Teri +Alexandra +Arlene +Cara +Deidre +Deirdre +Gayle +Geraldine +Gwendolyn +Ingrid +Karla +Kellie +Laurel +Leanne +Lenore +Loretta +Peggy +Ronda +Tonya +Tricia +Trisha +Annemarie +Corinne +Elise +Erika +Jacquelyn +Joanna +Julianne +Karyn +Krista +Lois +Luz +Lydia +Tammie +Alisa +Celeste +Claire +Dale +Edith +Kara +Kimberlee +Marion +Mia +Antoinette +Candace +Cassandra +Corrine +Deena +Dianna +Elisa +Florence +Helena +Kate +Katharine +Katrina +Kelli +Kendra +Kirsten +Lorrie +Lynette +Mona +Noelle +Rosa +Rosanne +Rosemarie +Therese +Belinda +Carmela +Darcy +Elena +Esther +Faith +Francine +Hilary +Jan +Jeanine +Jenny +Kari +Leeann +Leigh +Lorie +Lyn +Marguerite +Marisa +Meredith +Mildred +Paige +Pauline +Tami +Trina +Amber +Brigid +Cheri +Daphne +Debora +Dena +Deneen +Dolores +Gabrielle +Iris +Ivette +Jayne +Jodie +Johanna +Justine +Laureen +Lauri +Leona +Lise +Liza +Lorna +Margarita +Maryanne +Miriam +Rena +Sandy +Vickie +Vivian +Aileen +Bethany +Bobbi +Bonita +Caryn +Christie +Edna +Hannah +Helene +Janette +Janis +Jessie +Kerri +Kristy +Lourdes +Lucia +Madeline +Marcy +Marsha +Meghan +Melody +Molly +Patrice +Rochelle +Roseann +Sharyn +Sophia +Stacie +Tracie +Vicky +Wendi +Whitney +Ada +Allyson +Alyssa +Amelia +Annamarie +Beatrice +Carlene +Chris +Coleen +Colette +Cora +Daisy +Dorene +Emma +Ginger +Glenda +Gwen +Jenifer +Lena +Louisa +Marci +Margo +Maritza +Marla +Naomi +Ramona +Rebekah +Robert +Roseanne +Shannon +Siobhan +Sondra +Sonja +Suzette +Vera +William +Zina +Abigail +Angie +Becky +Bernice +Billie +Bobbie +Candice +Candy +Carin +Cecile +Clare +Claudette +Corinna +Danette +Dayna +Deanne +Diann +Dora +Dori +Elsie +Genevieve +Georgia +Gladys +Hillary +Ilene +Irma +James +Jocelyn +John +Johnna +Judi +Karrie +Kecia +Lea +Loreen +Lucille +Marian +Maribeth +Maryjane +Mayra +Nanette +Nora +Patsy +Patty +Polly +Rene +Rosalie +Ruby +Sabrina +Shana +Shelby +Shonda +Simone +Stella +Terese +Thea +Thomas +Ursula +Lisa +Karen +Kimberly +Susan +Mary +Michelle +Christine +Patricia +Elizabeth +Dawn +Jennifer +Deborah +Laura +Donna +Michele +Nancy +Kathleen +Lori +Sandra +Pamela +Linda +Cynthia +Cheryl +Amy +Sharon +Wendy +Tracy +Denise +Diane +Kelly +Kim +Barbara +Robin +Maria +Debra +Tina +Lynn +Catherine +Jacqueline +Tammy +Melissa +Laurie +Margaret +Brenda +Julie +Theresa +Beth +Heidi +Ann +Andrea +Carol +Jill +Suzanne +Paula +Tracey +Stephanie +Sheila +Angela +Anne +Kristin +Gina +Maureen +Katherine +Ellen +Heather +Janet +Judith +Stacey +Colleen +Darlene +Teresa +Sarah +Carolyn +Bonnie +Cindy +Marie +Renee +Rebecca +Kathryn +Diana +Kristine +Leslie +Joanne +Valerie +Holly +Sherry +Eileen +Christina +Janice +Kristen +Joann +Dana +Gail +Kathy +Ruth +Jane +Monica +Victoria +Charlene +Debbie +Martha +Lorraine +Rhonda +Joan +Carla +Carmen +Jean +Traci +Anna +Annette +Lauren +Sheryl +Terri +April +Lynne +Dorothy +Nicole +Stacy +Virginia +Wanda +Yvonne +Doreen +Jessica +Jodi +Yvette +Elaine +Joyce +Regina +Shirley +Alicia +Cathy +Danielle +Helen +Monique +Alison +Caroline +Frances +Rose +Allison +Gloria +Sherri +Marlene +Sally +Shelley +Tara +Anita +Marcia +Maura +Sheri +Carrie +Jeanne +Melanie +Shelly +Erin +Judy +Amanda +Evelyn +Jody +Rita +Julia +Shari +Tanya +Audrey +Felicia +Jo +Rachel +Sara +Veronica +Deanna +Joy +Natalie +Phyllis +Robyn +Terry +Bridget +Gretchen +Kirsten +Sonya +Vicki +Beverly +Candace +Paige +Roberta +Deirdre +Kelley +Louise +Melinda +Penny +Yolanda +Janine +Kerry +Kimberley +Megan +Betsy +Constance +Jackie +Tonya +Bernadette +Cassandra +Dianne +Hope +Kristina +Marilyn +Alexandra +Alice +Cathleen +Corinne +Crystal +Elisa +Eva +Jamie +Josephine +Rosemarie +Roxanne +Sonia +Tamara +Betty +Claire +Connie +Francine +June +Lynda +Marianne +Nina +Peggy +Rosa +Hilary +Karin +Marjorie +Maryann +Shawn +Vanessa +Annmarie +Arlene +Claudia +Emily +Geraldine +Grace +Kris +Lee +Loretta +Lynette +Maryanne +Samantha +Sandy +Tracie +Audra +Carole +Darcy +Elena +Gladys +Jacquelyn +Joanna +Laurel +Marsha +Maryellen +Pauline +Sonja +Sylvia +Teri +Toni +Ana +Antoinette +Bethany +Debora +Dina +Gayle +Jeanette +Joelle +Karyn +Kellie +Leanne +Lorie +Lucia +Luz +Margarita +Miriam +Noreen +Rosemary +Sue +Susanne +Becky +Corrine +Doris +Faith +Jana +Kate +Kelli +Krista +Lucille +Lucy +Shannon +Vickie +Adrienne +Cara +Charlotte +Cherie +Edna +Iris +Leah +Lillian +Madeline +Melody +Mia +Nadine +Noelle +Priscilla +Tricia +Alisa +Angelina +Dianna +Florence +Gwendolyn +Irene +Jodie +Kara +Karla +Katrina +Kerri +Lesley +Marisa +Marla +Meredith +Nora +Rosanne +Sherrie +Tammie +Vivian +Allyson +Belinda +Celeste +Dolores +Ginger +Ingrid +Janette +Jeanine +Jeannette +Jeannine +Jennie +Judi +Justine +Kimberlee +Lora +Lorrie +Margo +Marisol +Marybeth +Mildred +Patrice +Patti +Sabrina +Therese +Candy +Cecilia +Clara +Colette +Daisy +Desiree +Dora +Elise +Jan +Johnna +Kendra +Maritza +Marta +Mona +Noemi +Norma +Patty +Simone +Sophia +Stefanie +Tami +Trina +Whitney +Abigail +Aida +Anastasia +Chris +Daria +Deidre +Edith +Eleanor +Elisabeth +Jenny +John +Juanita +Kari +Katharine +Laureen +Leigh +Lois +Meg +Paulette +Rena +Aimee +Amelia +Annemarie +Bethanne +Bridgette +Carey +Carleen +Clare +Dena +Erica +Ida +Joellen +Juliann +Julianne +Kristi +Kristie +Lauri +Leila +Liza +Lizabeth +Lorena +Loriann +Marguerite +Marion +Migdalia +Mindy +Myrna +Randi +Roseann +Sharyn +Stacie +Tania +Aileen +Alexis +Alyssa +Barbra +Bettina +Bonita +Brigitte +Brooke +Carlene +Cary +Cheri +Claudette +Coleen +Courtney +Danette +Darcey +Deana +Deena +Deneen +Diann +Erika +Filomena +Francesca +Giovanna +Glenda +Gwen +Helena +Janie +Jayne +Jerri +Jessie +Jocelyn +Kathie +Katie +Kyle +Leann +Lidia +Liz +Lucinda +Lynnette +Magdalena +Marylou +Meghan +Myra +Nanci +Naomi +Noel +Nydia +Rachael +Robbin +Rochelle +Ronda +Ruthann +Sandi +Serena +Sharlene +Stella +Susanna +Susannah +Tiffany +Trisha +Vera +Verna +Wendi +Zoe +Lisa +Susan +Kimberly +Karen +Michelle +Elizabeth +Christine +Mary +Jennifer +Dawn +Laura +Deborah +Michele +Patricia +Amy +Kathleen +Donna +Sandra +Lori +Cheryl +Cynthia +Nancy +Linda +Pamela +Wendy +Tammy +Diane +Denise +Tracy +Kelly +Melissa +Sharon +Barbara +Tina +Maria +Debra +Kim +Julie +Laurie +Stephanie +Theresa +Brenda +Lynn +Catherine +Suzanne +Ann +Jill +Robin +Katherine +Margaret +Andrea +Carol +Beth +Gina +Heather +Jacqueline +Rebecca +Tracey +Kristen +Anne +Heidi +Paula +Christina +Renee +Carolyn +Maureen +Sarah +Janet +Angela +Joanne +Stacey +Kristin +Leslie +Holly +Diana +April +Colleen +Victoria +Bonnie +Sheila +Teresa +Judith +Kathryn +Sherry +Ellen +Valerie +Eileen +Darlene +Cindy +Janice +Kristine +Dana +Rachel +Carrie +Lauren +Carmen +Debbie +Erin +Terri +Monica +Doreen +Jane +Stacy +Nicole +Rhonda +Jodi +Marie +Annette +Jean +Kathy +Anna +Alicia +Alison +Allison +Amanda +Wanda +Danielle +Joan +Sheryl +Martha +Melanie +Evelyn +Regina +Roberta +Joann +Julia +Monique +Gail +Helen +Sally +Bridget +Elaine +Marilyn +Traci +Yvette +Carla +Charlene +Dorothy +Lynne +Rose +Ruth +Sheri +Tanya +Tara +Adrienne +Cathy +Joyce +Maryann +Melinda +Sherri +Veronica +Jessica +Shirley +Tonya +Yvonne +Annmarie +Audra +Lorraine +Tamara +Karin +Kimberley +Vicki +Virginia +Dina +Kerry +Leigh +Sonia +Caroline +Cathleen +Jeanne +Audrey +Beverly +Kelley +Shari +Alice +Felicia +Lee +Marianne +Penny +Sabrina +Shelley +Terry +Anita +Dianne +Gretchen +Marlene +Yolanda +Crystal +Deanna +Jeanette +Joy +Kristina +Natalie +Shannon +Josephine +Kirsten +Maura +Megan +Pauline +Sara +Sonya +Toni +Lucy +Patti +Cassandra +Doris +Emily +Frances +Gloria +Irene +Jody +Lillian +Louise +Marcia +Marybeth +Shelly +Bernadette +Betsy +Cherie +Claudia +Courtney +Deirdre +Erica +Hope +Ingrid +Janine +Leah +Norma +Priscilla +Samantha +Tammie +Vivian +Antoinette +Carole +Darcy +Debora +Elisa +Jodie +Kara +Loretta +Lynda +Rita +Roxanne +Shawn +Elise +Francine +Joanna +Judy +Kimberlee +Krista +Leanne +Rosemarie +Susanne +Tiffany +Vanessa +Candace +Constance +Elisabeth +Jackie +Jamie +Jeannette +Kelli +Lynette +Nina +Rosemary +Ana +Arlene +Charlotte +Deana +Elena +Erika +Gayle +Grace +Kari +Marci +Nadine +Paige +Peggy +Rosa +Sue +Alexandra +Corinne +Faith +Geraldine +Gwen +Jacquelyn +Kerri +Kris +Lara +Madeline +Maribeth +Marion +Marisol +Maryellen +Michael +Phyllis +Rosanne +Sonja +Abigail +Amber +Bethany +Betty +Chris +Christa +Eleanor +Eva +Gwendolyn +Iris +Justine +Karla +Katharine +Katrina +Lesley +Luz +Maryanne +Melody +Meredith +Ramona +Stacie +Tammi +Angelina +Cheri +Claire +Connie +Deidre +Desiree +Dianna +Edith +Florence +June +Kellie +Laureen +Lea +Lorie +Lydia +Margo +Marisa +Marissa +Meghan +Miriam +Noelle +Nora +Patty +Rena +Roseann +Vickie +Allyson +Annemarie +Belinda +Carey +Concetta +Gladys +Jenny +Juanita +Julianne +Lora +Lorrie +Lucinda +Maritza +Mildred +Molly +Natasha +Nichelle +Stefanie +Suzette +Trina +Trisha +Wendi +Aida +Ashley +Candice +Cara +Cristina +Deanne +Helena +Ida +Johanna +Karyn +Kendra +Laurel +Lauri +Liza +Lourdes +Lucia +Marjorie +Marsha +Mia +Migdalia +Milagros +Olga +Paulette +Rachael +Robyn +Susie +Ursula +Aimee +Alisa +Amelia +Aretha +Bernice +Billie +Cari +Celeste +Christie +Christy +Claudette +Colette +Dale +Darla +Delia +Dolores +Dorinda +Emma +Ginger +Hilary +Ivette +James +Jeanine +Jeannine +Jo +Jocelyn +Joseph +Kate +Katie +Kay +Keri +Kerrie +Lana +Lena +Lenora +Maribel +Mark +Mayra +Moira +Monika +Noreen +Patrice +Polly +Ronda +Sandy +Sarita +Selena +Sylvia +Sylvie +Tami +Tracie +Ada +Adele +Aileen +Alissa +Barbra +Blanca +Candy +Carmela +Caryn +Claudine +Corrine +Daneen +Dayna +Delores +Dena +Dorothea +Esther +Eugenia +Georgia +Giselle +Janette +Jenifer +Jeri +Kristy +Leeanne +Leona +Lisette +Lois +Loren +Luisa +Lynnette +Mara +Marcy +Marguerite +Marina +Marla +Marlo +Marnie +Maryjo +Mona +Rachelle +Rae +Richard +Rochelle +Roxann +Sandi +Sharlene +Shelby +Tania +Tonia +Vicky +Lisa +Jennifer +Kimberly +Michelle +Susan +Karen +Christine +Elizabeth +Laura +Dawn +Kelly +Mary +Deborah +Michele +Amy +Melissa +Patricia +Kathleen +Donna +Tracy +Tammy +Lori +Wendy +Nancy +Cynthia +Pamela +Sandra +Cheryl +Sharon +Linda +Maria +Heather +Barbara +Debra +Tina +Catherine +Denise +Stephanie +Diane +Julie +Lynn +Robin +Suzanne +Kim +Theresa +Jill +Sarah +Christina +Ann +Brenda +Margaret +Carol +Carolyn +Beth +Andrea +Heidi +Paula +Stacey +Jacqueline +Kristen +Rebecca +Katherine +Angela +Kristin +Tracey +Gina +Diana +Maureen +Renee +Laurie +Anne +Darlene +Kristine +Janet +Colleen +Eileen +Nicole +Holly +Teresa +Cindy +April +Dana +Joanne +Leslie +Victoria +Stacy +Carrie +Danielle +Kathryn +Anna +Sherry +Tanya +Rhonda +Sheila +Carmen +Bonnie +Ellen +Valerie +Gail +Jodi +Marie +Caroline +Monica +Janice +Charlene +Rachel +Sara +Alison +Evelyn +Jane +Jessica +Sherri +Allison +Jean +Judith +Tara +Terri +Alicia +Carla +Julia +Kirsten +Sheri +Sheryl +Tonya +Deanna +Rose +Monique +Yvonne +Regina +Virginia +Doreen +Joyce +Kathy +Kerry +Melinda +Veronica +Annette +Elaine +Erica +Helen +Joann +Shannon +Yolanda +Amanda +Karin +Lauren +Megan +Rita +Ruth +Tamara +Frances +Joy +Lynne +Erin +Kristina +Lorraine +Shelley +Sonia +Dorothy +Gloria +Lara +Melanie +Terry +Candace +Crystal +Erika +Marlene +Rosemary +Anita +Jacquelyn +Kelley +Wanda +Adrienne +Debbie +Dina +Jamie +Kara +Maura +Shirley +Susanne +Bridget +Jeanne +Sally +Shelly +Cassandra +Eva +Felicia +Joan +Nadine +Roberta +Yvette +Belinda +Beverly +Dianne +Geraldine +Jody +Kellie +Kimberley +Leigh +Lucy +Marilyn +Marjorie +Martha +Natalie +Rosemarie +Shawn +Cathy +Emily +Gretchen +Irene +Kari +Kelli +Rosa +Samantha +Vanessa +Alice +Darcy +Krista +Leah +Lee +Lillian +Penny +Vicki +Audra +Christy +Connie +Deirdre +Louise +Luz +Lynda +Miriam +Tracie +Aimee +Annmarie +Audrey +Jeanette +Tiffany +Toni +Claudia +Janine +Kerri +Lesley +Marianne +Roxanne +Traci +Alisa +Charlotte +Iris +Jodie +Karla +Marla +Ramona +Sabrina +Shari +Arlene +Carole +Constance +Courtney +Edith +Francine +Hilary +June +Kristi +Lucia +Maritza +Migdalia +Nora +Norma +Paige +Patti +Peggy +Robyn +Alexandra +Ana +Bernadette +Cherie +Jo +Julianne +Laurel +Maryann +Meredith +Sandy +Sonja +Sonya +Tami +Tammie +Tricia +Annemarie +Becky +Dena +Desiree +Eleanor +Gwendolyn +Hope +Joanna +Josephine +Judy +Marisa +Marybeth +Meghan +Raquel +Stefanie +Sue +Sylvia +Allyson +Alyssa +Angelina +Carey +Daisy +Deanne +Deidre +Kate +Lorrie +Lynette +Phyllis +Ronda +Antoinette +Brooke +Catharine +Celeste +Coleen +Corinne +Elisa +Grace +Jeannette +Jocelyn +Juanita +Katharine +Katrina +Lorie +Lucinda +Marcella +Marcy +Marnie +Marsha +Maryellen +Nina +Pauline +Polly +Priscilla +Sondra +Susannah +Beatrice +Betsy +Blanca +Cheri +Chris +Christie +Cristina +Daphne +Deana +Dianna +Elena +Elise +Faith +Gayle +Gladys +Jayne +Jeanine +Jeannine +Johanna +Justine +Kerrie +Kris +Laureen +Lea +Leanne +Lois +Madeline +Molly +Patrice +Sherrie +Suzette +Aida +Ashley +Bethany +Cathleen +Corrine +Doris +Elisabeth +Francesca +Ivette +Jeannie +Johnna +Kristie +Leona +Lissette +Lora +Loretta +Marcia +Marguerite +Maribel +Maribeth +Marisol +Michael +Roseann +Staci +Tania +Teri +Tia +Tonia +Trina +Vicky +Betty +Candice +Cara +Carmela +Cathryn +Dolores +Enid +Esther +Florence +Ginger +Ida +Jenifer +Jennie +Jolene +Karyn +Kendra +Kimberlee +Kristy +Lauri +Lourdes +Madelyn +Marion +Marlo +Melody +Olga +Rachael +Rosanne +Shelia +Shelli +Sophia +Tammi +Vickie +Whitney +Aileen +Alanna +Amber +Amelia +Anissa +Bridgette +Caitlin +Camille +Caren +Cari +Carie +Carlene +Caterina +Claire +Claudine +Concetta +Darcey +Dawne +Debora +Delores +Emma +Eve +Greta +Hazel +Jackie +Jan +Jenny +Joelle +Jolie +Joseph +Kenya +Kristyn +Lana +Lesa +Lisette +Liza +Lorna +Lydia +Margarita +Margo +Marina +Marissa +Maryanne +Maryjane +Maryjo +Mayra +Mildred +Mindy +Mona +Myrna +Nichelle +Noel +Noelle +Penelope +Rae +Rochelle +Ruby +Siobhan +Therese +Lisa +Jennifer +Kimberly +Michelle +Christine +Susan +Laura +Karen +Elizabeth +Dawn +Amy +Kelly +Melissa +Mary +Patricia +Heather +Michele +Tracy +Kathleen +Deborah +Donna +Tammy +Lori +Julie +Nancy +Sandra +Pamela +Linda +Cynthia +Wendy +Tina +Denise +Cheryl +Diane +Catherine +Maria +Stephanie +Sharon +Robin +Debra +Kristen +Nicole +Barbara +Brenda +Kristin +Rebecca +Katherine +Sarah +Lynn +Christina +Jill +Laurie +Andrea +Kim +Tracey +Margaret +Stacey +Jacqueline +Suzanne +Gina +Ann +Carol +Heidi +Theresa +Angela +Renee +Beth +Carolyn +Carrie +Dana +Danielle +Tara +Paula +Colleen +Rachel +Leslie +Kristine +Holly +Kathryn +Diana +Victoria +Maureen +Jessica +Stacy +Anna +Monica +Teresa +Shannon +Janet +Sheila +Jodi +Valerie +Anne +Ellen +Joanne +Darlene +Alicia +Kerry +Kathy +Tricia +Rhonda +Tanya +Lauren +Melanie +Erin +Sara +Deanna +Marie +Regina +April +Eileen +Gail +Sherry +Bonnie +Monique +Veronica +Carla +Carmen +Judith +Kellie +Samantha +Cindy +Allison +Julia +Yolanda +Jane +Kelley +Kirsten +Kristina +Sherri +Janice +Doreen +Elaine +Jean +Jamie +Terri +Traci +Annette +Erica +Kelli +Melinda +Wanda +Charlene +Sheri +Alison +Cathy +Marisol +Natalie +Terry +Amanda +Annmarie +Bridget +Dina +Penny +Jody +Joyce +Marilyn +Rose +Tamara +Tonya +Debbie +Emily +Judy +Karin +Lynne +Megan +Shari +Alexandra +Christy +Gretchen +Helen +Joy +Meredith +Sally +Shelley +Sonia +Toni +Virginia +Adrienne +Deirdre +Dorothy +Joann +Kara +Kimberley +Maura +Shirley +Yvonne +Claudia +Felicia +Joan +Robyn +Shelly +Jeanette +Joanna +Kari +Krista +Lara +Lee +Marlene +Martha +Roberta +Rosemary +Sheryl +Sonya +Aimee +Candace +Cassandra +Cathleen +Deana +Evelyn +Frances +Tammie +Yvette +Alisa +Caroline +Erika +Jodie +Lynda +Marcia +Peggy +Tiffany +Ana +Audrey +Cara +Crystal +Dianne +Katrina +Lorraine +Paige +Courtney +Gloria +Hilary +Irene +Jeannette +Leigh +Rosa +Tracie +Vanessa +Elisa +Eva +Lillian +Luz +Nadine +Abigail +Audra +Beverly +Jacquelyn +Justine +Katharine +Marianne +Rita +Roxanne +Ruth +Trina +Vicki +Anita +Antoinette +Betsy +Cherie +Hope +Janine +Josephine +Laurel +Louise +Sabrina +Alice +Bernadette +Dena +Elisabeth +Kimberlee +Kristy +Leah +Lucy +Raquel +Sherrie +Susanne +Trisha +Celeste +Christie +Connie +Corinne +Deanne +Deidre +Francine +Gayle +Grace +Janette +Jeanne +Jo +Kristi +Lucinda +Madeline +Marcy +Margarita +Maribel +Maryann +Marybeth +Miriam +Ramona +Ronda +Alyssa +Angelina +Arlene +Becky +Carole +Darcy +Gwendolyn +Jeannine +Kerri +Lorie +Marnie +Rachael +Stacie +Teri +Allyson +Christa +Coleen +Doris +Elise +Jeanine +June +Karyn +Loretta +Lynette +Marci +Marsha +Nina +Phyllis +Priscilla +Rosemarie +Sandy +Staci +Tami +Tonia +Vicky +Amber +Amelia +Annemarie +Ashley +Candice +Charlotte +Cheri +Dionne +Iris +Ivette +Jackie +Johanna +Kendra +Leanne +Lora +Lydia +Marisa +Maritza +Michael +Noelle +Rosanne +Shawn +Stefanie +Therese +Whitney +Belinda +Betty +Carmela +Daryl +Debora +Deena +Faith +Gillian +Jenny +Joelle +Juanita +Julianne +Keri +Loriann +Marjorie +Marlo +Maryellen +Naomi +Norma +Pauline +Penelope +Robert +Rosalind +Sue +Tammi +Vivian +Wendi +Aida +Annie +Antonia +Bethany +Billie +Carey +Christen +Cristina +Dale +Daniela +Dolores +Edith +Esther +Florence +Georgette +Geraldine +Gladys +Jenifer +Karla +Kris +Lauri +Lenore +Lesley +Lorna +Marissa +Mona +Nora +Patrice +Polly +Suzette +Sylvia +Tabitha +Ursula +Alexis +Angelique +Beatriz +Cameron +Candy +Clara +Clare +Colette +Constance +Daisy +Damaris +Desiree +Dianna +Dori +Eleanor +Emma +Ingrid +Jennie +Jessie +Juliet +Karrie +Keisha +Kyle +Lea +Leona +Marcella +Marion +Mayra +Milagros +Mildred +Myra +Nichole +Patty +Paulette +Rochelle +Serena +Sharlene +Shawna +Simone +Tia +Valarie +Ada +Alissa +Antonietta +Bertha +Bethann +Carlene +Cecilia +Chandra +Chris +Claire +Corrine +Danette +Dawne +Dayna +Deann +Elena +Ernestine +Ethel +Georgia +Gia +Ginger +Gwen +Hannah +Helena +Hilda +Hillary +Isabel +Janis +Jeannie +Kathie +Kristie +Lana +Leann +Lina +Lisette +Lissette +Liza +Lizette +Loren +Lorri +Lorrie +Luann +Lynnette +Margot +Marla +Meg +Melody +Migdalia +Mindy +Nelida +Noreen +Patti +Rebekah +Richard +Rosalie +Shana +Sondra +Sophia +Stella +Tania +Vera +Jennifer +Lisa +Kimberly +Michelle +Christine +Amy +Dawn +Elizabeth +Melissa +Susan +Karen +Heather +Tracy +Laura +Mary +Kelly +Michele +Tammy +Kathleen +Julie +Patricia +Deborah +Lori +Wendy +Cynthia +Donna +Maria +Pamela +Sandra +Nancy +Cheryl +Nicole +Linda +Tina +Sharon +Stacey +Kristen +Denise +Tracey +Kristin +Rebecca +Stephanie +Catherine +Robin +Andrea +Barbara +Angela +Shannon +Sarah +Jessica +Katherine +Suzanne +Rachel +Debra +Diane +Ann +Christina +Jill +Heidi +Gina +Brenda +Margaret +Beth +Renee +Theresa +Dana +Lynn +Stacy +Tara +Danielle +Kim +Laurie +Carrie +Victoria +Holly +Leslie +Jacqueline +Kristine +Carol +Maureen +Anne +Sherry +Tanya +Allison +Diana +Melanie +Paula +Alison +Erin +Jodi +Valerie +Colleen +Joanne +Kathryn +Janet +Bonnie +Cindy +Carolyn +Krista +Sheila +Deanna +Tricia +Judith +Yolanda +Carla +Teresa +Marie +Eileen +Anna +April +Kristina +Tonya +Traci +Kellie +Amanda +Darlene +Ellen +Jean +Carmen +Julia +Monica +Wanda +Alicia +Erica +Jody +Kerry +Marisol +Sheri +Caroline +Charlene +Lauren +Sherri +Kelley +Megan +Rhonda +Sonia +Tamara +Tracie +Kathy +Regina +Dina +Jamie +Jane +Ruth +Emily +Kara +Kirsten +Meredith +Monique +Samantha +Elaine +Terri +Yvette +Cathy +Doreen +Erika +Gail +Janice +Sara +Gretchen +Karin +Rosa +Annmarie +Cassandra +Crystal +Evelyn +Penny +Jeanne +Kimberley +Melinda +Natalie +Virginia +Anita +Dorothy +Marilyn +Rose +Sheryl +Vanessa +Yvonne +Annette +Cherie +Frances +Irene +Joy +Joyce +Rachael +Beverly +Kelli +Marcia +Cathleen +Christy +Janine +Leigh +Tiffany +Veronica +Aimee +Alisa +Helen +Joann +Lynne +Peggy +Roberta +Shari +Shawn +Shelly +Toni +Alexandra +Jeanette +Joan +Marlene +Maura +Meghan +Natasha +Alice +Ana +Bridget +Jeanine +Jenny +Marjorie +Sally +Shelley +Stacie +Terry +Trina +Claudia +Felicia +Joanna +Katharine +Katrina +Marsha +Audra +Audrey +Belinda +Brooke +Candace +Christa +Darcy +Eva +Hilary +Hope +Iris +Kristi +Kristie +Madeline +Marci +Maribel +Maryann +Rosemary +Shirley +Tania +Arlene +Cara +Charlotte +Courtney +Dianne +Jeannine +Josephine +Lara +Lesley +Lorraine +Louise +Marianne +Paige +Robyn +Adrienne +Annemarie +Connie +Debbie +Deidre +Gladys +Jodie +Judy +Kerri +Lee +Martha +Molly +Naomi +Priscilla +Raquel +Sabrina +Stefanie +Teri +Vicki +Angel +Becky +Coleen +Deana +Dianna +Jeannette +June +Kari +Kendra +Leah +Lisette +Lucy +Pauline +Roxanne +Tami +Betty +Dena +Desiree +Elisabeth +Faith +Gayle +Gloria +Ingrid +Jacquelyn +Johanna +Julianne +Keri +Lillian +Nadine +Norma +Paulette +Sonya +Susanne +Trisha +Bernadette +Bethany +Christie +Francine +Ivette +Karyn +Keisha +Lissette +Luz +Margarita +Rita +Rosemarie +Tabitha +Tammie +Therese +Wendi +Allyson +Angelina +Ashley +Billie +Chandra +Chris +Constance +Deirdre +Doris +Elena +Elise +Elissa +Grace +Gwendolyn +Jenifer +Jocelyn +Juanita +Kenya +Kerrie +Kristy +Leanne +Lucia +Lynette +Marcie +Maritza +Marnie +Nichole +Nina +Rochelle +Bernice +Betsy +Carey +Corinna +Dolores +Gabrielle +Jackie +Jennie +Jo +Joelle +John +Karrie +Kate +Kimberlee +Lauri +Lena +Lorrie +Marguerite +Marlo +Maryellen +Melody +Sherrie +Sylvia +Tasha +Tia +Valarie +Wilma +Amie +Anissa +Bridgette +Camille +Candice +Celeste +Cheri +Claire +Corinne +Cristina +Daisy +Debora +Delores +Greta +Hillary +Juliet +Karla +Katie +Latonya +Lois +Lora +Lydia +Marion +Marylou +Meg +Melisa +Milagros +Miriam +Myra +Nicolle +Patti +Penelope +Shana +Shauna +Shawna +Sonja +Tammi +Tonia +Vicky +Abigail +Aida +Alexis +Alyssa +Annie +Candy +Carole +Claudine +Dara +Elisa +Ericka +Ginger +Gwen +Jayne +Jeanna +Juliann +Justine +Karri +Kris +Kristan +Laurel +Lea +Lia +Lily +Liza +Loren +Loretta +Lorie +Lynda +Marcella +Marcy +Marisa +Marissa +Marla +Migdalia +Mildred +Mindy +Noel +Noelle +Pia +Rachelle +Rebekah +Sandy +Scott +Shonda +Simone +Tori +Vera +Vivian +Whitney +Alma +Amber +Angeline +Antoinette +Bobbi +Bobbie +Bridgett +Brigitte +Britt +Buffy +Carmela +Caryn +Christen +Chrystal +Cristin +Damaris +Dayna +Deena +Dionne +Edith +Eugenia +Evette +Fatima +Florence +Francesca +Geneva +Geraldine +Gillian +Isabel +Ivy +Jessie +Kyle +Lana +Laurieann +Loriann +Lynnette +Margo +Marina +Maxine +Meridith +Mia +Moira +Mona +Patrice +Phyllis +Rene +Robbin +Rosanna +Shannan +Staci +Stella +Tabatha +Tonja +Vickie +Zoraida +Jennifer +Lisa +Kimberly +Michelle +Amy +Christine +Melissa +Susan +Elizabeth +Karen +Dawn +Heather +Tammy +Tracy +Mary +Kelly +Laura +Deborah +Michele +Pamela +Cynthia +Kathleen +Julie +Nicole +Lori +Rebecca +Sandra +Wendy +Patricia +Tina +Stacey +Shannon +Sarah +Maria +Denise +Kristen +Stephanie +Nancy +Andrea +Kristin +Jessica +Donna +Christina +Cheryl +Sharon +Tracey +Heidi +Debra +Diane +Stacy +Angela +Dana +Lynn +Danielle +Carrie +Robin +Linda +Catherine +Suzanne +Jill +Katherine +Holly +Rachel +Tara +Gina +Laurie +Theresa +Melanie +Ann +Colleen +Alison +Tanya +Brenda +Allison +Beth +Kim +Leslie +Barbara +Jacqueline +Cindy +Victoria +Paula +Margaret +Tricia +Kathryn +Diana +Renee +Kerry +Anne +Kristine +Monica +Erin +Valerie +Krista +Alicia +Jodi +Amanda +Anna +Carolyn +Lauren +Maureen +Joanne +Marisol +April +Erica +Sheila +Carol +Sara +Janet +Teresa +Megan +Sherry +Aimee +Jean +Meredith +Tamara +Bonnie +Deanna +Marie +Samantha +Monique +Emily +Erika +Janice +Rhonda +Ellen +Evelyn +Kathy +Sonia +Yolanda +Melinda +Wanda +Jamie +Tiffany +Tonya +Vanessa +Carmen +Cassandra +Crystal +Darlene +Sherri +Jody +Kristina +Kerri +Charlene +Eileen +Marcy +Shelley +Traci +Carla +Sheri +Terri +Anita +Cathy +Annette +Elaine +Judith +Julia +Kara +Marilyn +Regina +Alice +Christa +Dorothy +Lorraine +Stacie +Christy +Darcy +Felicia +Joy +Lesley +Natalie +Caroline +Hope +Jodie +Kelli +Maura +Sonya +Tracie +Doreen +Gail +Gretchen +Jenny +Joyce +Katrina +Martha +Penny +Rose +Veronica +Virginia +Alexandra +Bernadette +Bridget +Brooke +Debbie +Helen +Judy +Kirsten +Robyn +Ruth +Sally +Shelly +Trina +Courtney +Irene +Kimberley +Lara +Leigh +Maritza +Sabrina +Audra +Betsy +Cara +Cathleen +Cristina +Gloria +Joann +Kellie +Lillian +Marci +Roxanne +Cheri +Claudia +Eva +Jane +Jeanette +Joan +Joanna +Kelley +Leah +Maryann +Rosemary +Stefanie +Toni +Vicki +Antoinette +Audrey +Candace +Cherie +Deana +Dina +Frances +Hilary +Iris +Jenifer +Keri +Luz +Lynne +Marlene +Melody +Natasha +Rochelle +Ana +Belinda +Francine +Jacquelyn +Karin +Lynda +Nina +Rachael +Shirley +Tania +Terry +Adrienne +Alisa +Alyssa +Annmarie +Becky +Dianne +Elisa +Ericka +Faith +Janine +Kari +Kristi +Louise +Marianne +Nadine +Shawn +Staci +Tasha +Yvette +Beverly +Candice +Carey +Jeannine +Katharine +Katie +Keisha +Kendra +Kristie +Meghan +Mildred +Nikki +Sandy +Shari +Sheryl +Tabitha +Wendi +Bethany +Betty +Claire +Dena +Desiree +Doris +Gladys +Jeanne +Jeannette +Jennie +Karla +Lora +Lucy +Marcia +Maribel +Marisa +Marlo +Nichole +Olga +Rita +Susanne +Yvonne +Amber +Amie +Arlene +Celeste +Connie +Daisy +Gwendolyn +Jocelyn +Johanna +Karyn +Kimberlee +Kristy +Liza +Loretta +Madeline +Naomi +Peggy +Priscilla +Roberta +Sue +Tami +Tammie +Teri +Abigail +Angel +Angelina +Ashley +Charlotte +Dale +Daphne +Deirdre +Elena +Isabel +Ivette +Jeanine +Leanne +Lenore +Lorie +Lucia +Lydia +Marcella +Marjorie +Marnie +Norma +Pauline +Ramona +Raquel +Rosa +Rosemarie +Serena +Sylvia +Tanisha +Tisha +Tonia +Whitney +Yesenia +Alanna +Allyson +Alyson +Annamaria +Annie +Beatrice +Debora +Demetria +Edna +Ginger +Grace +Helena +Karrie +Kyle +Latisha +Laurel +Lee +Leticia +Lucille +Lyn +Lynette +Magaly +Marcie +Margarita +Marion +Maryellen +Noelle +Paige +Phyllis +Sondra +Tia +Tyra +Vivian +Adriana +Alexis +Alisha +Alissa +Billie +Bobbi +Brigitte +Christie +Colette +Constance +Corinne +Damaris +Daniela +Darcie +Dawne +Dionne +Eleanor +Elisabeth +Gabrielle +Gayle +Ingrid +Joelle +Josephine +Josie +Julianne +Lea +Mara +Marybeth +Mayra +Michael +Mindy +Miriam +Molly +Nichelle +Noel +Olivia +Paulette +Rebekah +Sherrie +Sonja +Tammi +Tawana +Amelia +Anastasia +Angelique +Anissa +Annemarie +Blanca +Bobbie +Candida +Candy +Carole +Chandra +Chantel +Cherise +Christiane +Claudine +Dara +Darci +Dayna +Deena +Deidre +Dolores +Elise +Eliza +Georgette +Georgia +Giovanna +Hillary +Jackie +Jaime +Jami +Jana +John +Justine +Kenya +Kisha +Kris +Kyla +Latasha +Leeann +Lissette +Lois +Lorri +Lorrie +Lucinda +Maggie +Marla +Marsha +Maryanne +Pia +Randi +Ronda +Rosalie +Rosanna +Shana +Shaun +Shelby +Shonda +Suzette +Tori +Trisha +Trista +Twana +Vera +Jennifer +Lisa +Michelle +Amy +Kimberly +Melissa +Heather +Christine +Nicole +Elizabeth +Dawn +Karen +Michele +Susan +Rebecca +Laura +Kelly +Kathleen +Julie +Stephanie +Mary +Tammy +Cynthia +Tracy +Wendy +Patricia +Jessica +Deborah +Lori +Sarah +Shannon +Tina +Maria +Kristin +Stacey +Cheryl +Sandra +Angela +Denise +Christina +Kristen +Donna +Rachel +Danielle +Tara +Andrea +Jill +Stacy +Nancy +Heidi +Diane +Catherine +Suzanne +Pamela +Tanya +Carrie +Lynn +Melanie +Renee +Barbara +Kathryn +Linda +Robin +Katherine +Gina +Holly +Theresa +Erin +Sharon +Dana +Margaret +Allison +Brenda +Alicia +Beth +Laurie +Carolyn +Ann +Debra +Alison +Jodi +Tracey +Leslie +April +Sara +Jacqueline +Victoria +Kerry +Amanda +Colleen +Paula +Sherry +Kristina +Megan +Cindy +Diana +Krista +Kristine +Valerie +Anna +Erica +Anne +Carol +Lauren +Sherri +Tricia +Yolanda +Monica +Deanna +Janet +Melinda +Tonya +Carmen +Kara +Kim +Marisol +Samantha +Teresa +Jean +Sheila +Crystal +Kirsten +Maureen +Eileen +Evelyn +Joanne +Rhonda +Marie +Meredith +Monique +Regina +Shelley +Tamara +Vanessa +Janice +Aimee +Joanna +Darlene +Emily +Gretchen +Bonnie +Charlene +Shelly +Wanda +Elaine +Erika +Hope +Judith +Becky +Cara +Christy +Jody +Kelley +Kendra +Tasha +Traci +Caroline +Cassandra +Ellen +Julia +Kathy +Sheri +Abigail +Annmarie +Bridget +Carla +Cathy +Dina +Jamie +Jenny +Marcy +Vicki +Yvette +Yvonne +Ana +Audrey +Kerri +Penny +Rosa +Rose +Ruth +Tiffany +Toni +Alexandra +Anita +Audra +Candace +Gail +Kristy +Leah +Meghan +Robyn +Veronica +Annette +Bethany +Betsy +Christie +Dorothy +Jenifer +Jodie +Katrina +Luz +Marianne +Martha +Molly +Nina +Sonia +Virginia +Adrienne +Cristina +Doreen +Ericka +Felicia +Joyce +Karin +Keri +Latanya +Maribel +Naomi +Sally +Terri +Angel +Cathleen +Gloria +Joan +Johanna +Joy +June +Maura +Natalie +Natasha +Sheryl +Stefanie +Sylvia +Beverly +Christa +Claudia +Jeanne +Kellie +Kristi +Kristie +Maritza +Rachael +Sabrina +Teri +Terry +Tracie +Brandy +Connie +Elisa +Frances +Jacquelyn +Jennie +Kari +Lee +Lucy +Lynne +Madeline +Marcia +Nikki +Shelby +Shirley +Sonya +Wendi +Alexis +Alice +Allyson +Cherie +Courtney +Desiree +Gladys +Grace +Ingrid +Jane +Kate +Katie +Kerrie +Kimberley +Lorraine +Lynette +Marcie +Marilyn +Marjorie +Marlene +Rosemary +Shawn +Shawna +Stacie +Tami +Tammi +Tania +Alisa +Alyson +Amber +Angelina +Arlene +Bernadette +Charlotte +Cheri +Corinne +Darcy +Debbie +Deirdre +Eva +Hannah +Janette +Jeanette +Jeannine +Jocelyn +Juanita +Laurel +Lena +Loretta +Lydia +Marisa +Nichole +Paige +Raquel +Trisha +Beatrice +Betty +Carey +Dena +Elena +Elise +Esther +Irene +Janine +Judy +Katharine +Lara +Lillian +Lynda +Melody +Priscilla +Rita +Roberta +Rosemarie +Shana +Shari +Sophia +Ursula +Alyssa +Annemarie +Antonia +Belinda +Candice +Caryn +Casey +Celeste +Claudine +Daniela +Deana +Emma +Faith +Gillian +Helen +Hilary +Iris +Isabel +Joann +Karyn +Kelli +Kimberlee +Leigh +Liza +Lorie +Lucia +Lyn +Marci +Marnie +Marta +Maryann +Miriam +Peggy +Sandy +Sherrie +Silvana +Antoinette +Ashley +Beatriz +Brooke +Carole +Cassie +Daisy +Damaris +Dara +Dayna +Dianna +Doris +Fiona +Josephine +Katina +Keisha +Lana +Latonya +Lea +Leticia +Lissette +Loren +Lourdes +Lucinda +Marsha +Michael +Milagros +Miranda +Misty +Nadine +Nicolle +Phyllis +Rebekah +Ronda +Roxanne +Susanna +Susanne +Tabitha +Tamika +Tanisha +Tiffani +Trina +Whitney +Aida +Aileen +Alexandria +Annie +Billie +Chandra +Chelsea +Cher +Coleen +Constance +Corrie +Cristin +Daphne +Deena +Deidre +Devon +Dianne +Gabrielle +Genevieve +Gwen +Gwendolyn +Hilda +Jenna +Jonna +Justine +Karri +Kathrine +Katy +Kris +Kristan +Latasha +Leona +Mara +Marni +Maryellen +Melisa +Migdalia +Mildred +Nanci +Noemi +Norma +Nydia +Polly +Rosalie +Sasha +Shane +Sheree +Susannah +Suzette +Tammie +Vera +Vickie +William +Yesenia +Jennifer +Amy +Lisa +Heather +Michelle +Melissa +Kimberly +Elizabeth +Nicole +Christine +Rebecca +Dawn +Kelly +Karen +Laura +Tracy +Sarah +Jessica +Kristen +Susan +Mary +Michele +Julie +Stephanie +Tina +Shannon +Tara +Denise +Stacey +Christina +Cynthia +Andrea +Patricia +Kathleen +Lori +Tammy +Maria +Wendy +Angela +Sandra +Danielle +Deborah +Carrie +Stacy +Kristin +Melanie +Rachel +Erin +Catherine +Donna +Katherine +Allison +Pamela +Jill +Tanya +Amanda +Nancy +Robin +Diane +Holly +Kathryn +Suzanne +Heidi +Debra +Alison +Cheryl +Dana +Gina +Laurie +Sharon +April +Erica +Ann +Brenda +Diana +Margaret +Renee +Linda +Sara +Beth +Jacqueline +Tiffany +Anne +Emily +Alicia +Barbara +Lynn +Theresa +Tracey +Aimee +Lauren +Meredith +Tonya +Krista +Megan +Monica +Kerry +Tricia +Leslie +Tamara +Teresa +Carolyn +Colleen +Janet +Monique +Erika +Kim +Kara +Sherry +Anna +Cindy +Maureen +Melinda +Carmen +Kristine +Carla +Jodi +Kristina +Paula +Carol +Valerie +Victoria +Caroline +Crystal +Janice +Bonnie +Joanne +Kerri +Sheri +Bridget +Gretchen +Deanna +Rosa +Samantha +Meghan +Rhonda +Sheila +Tasha +Eileen +Jamie +Joanna +Jody +Julia +Marilyn +Marisol +Natasha +Nichole +Rachael +Ellen +Jenny +Keri +Robyn +Sonia +Bethany +Debbie +Jane +Jeanette +Judith +Katrina +Lorraine +Regina +Elaine +Kellie +Yolanda +Audra +Dina +Joy +Latasha +Madeline +Terri +Ana +Belinda +Cara +Cassandra +Christy +Doreen +Jenifer +Jennie +Karin +Kathy +Kendra +Kimberley +Lillian +Priscilla +Rita +Shelley +Stacie +Yvette +Yvonne +Angel +Charlene +Joann +Maritza +Sally +Sherri +Traci +Alexandra +Allyson +Jeanne +Kari +Kelley +Kristie +Leanne +Luz +Marcy +Marie +Sandy +Veronica +Wanda +Abigail +Alyssa +Betsy +Brandy +Claudia +Courtney +Irene +Jean +Keisha +Leah +Martha +Natalie +Toni +Tracie +Amber +Brooke +Cherie +Darlene +Felicia +Liza +Marcie +Maura +Rose +Ruth +Shawn +Shirley +Sonya +Stefanie +Susanne +Tanisha +Vanessa +Vicki +Virginia +Adrienne +Alice +Anita +Annette +Bernadette +Billie +Brandi +Cathy +Dorothy +Elisa +Evelyn +Gloria +Jeannine +Joyce +Katharine +Kenya +Kristi +Lee +Lynne +Marianne +Marlene +Paige +Rosemary +Sabrina +Sonja +Sylvia +Ashley +Betty +Deirdre +Francine +Gail +Hope +Lara +Leigh +Marci +Margarita +Penny +Ramona +Rebekah +Roberta +Shelly +Alexis +Alisa +Annmarie +Antoinette +Carey +Christie +Connie +Cristina +Daisy +Darcie +Eva +Helen +Johanna +Karla +Katie +Katina +Kirsten +Lesley +Leticia +Louise +Lucia +Marcia +Marisa +Marsha +Mindy +Noelle +Nora +Rosanna +Sherrie +Sheryl +Tami +Tisha +Trina +Beatrice +Candace +Cheri +Darcy +Deana +Ericka +Gwendolyn +Hilary +Hollie +Iris +Jeanine +Josephine +Karyn +Kristy +Laurel +Letitia +Maribel +Marion +Marnie +Misty +Nadine +Naomi +Rochelle +Rosemarie +Roxanne +Shawna +Tammie +Tonia +Trisha +Vicky +Vivian +Ada +Annie +Arlene +Audrey +Brigitte +Cathleen +Christa +Daniela +Deidre +Dena +Desiree +Elisabeth +Elise +Florence +Isabel +Joan +Juliet +Kelli +Latisha +Latoya +Lucy +Lydia +Maggie +Margo +Maryann +Miriam +Nikki +Olga +Shari +Shauna +Amie +Becky +Britt +Candice +Cari +Charlotte +Christin +Clarissa +Dianna +Emma +Esther +Faith +Ingrid +Janeen +Jenna +Jodie +Karie +Kimberlee +Liz +Loretta +Lorie +Lynette +Marla +Molly +Myra +Noreen +Rachelle +Staci +Tabitha +Tamika +Tammi +Tania +Terry +Tia +Whitney +Adria +Amelia +Bridgette +Carmela +Caterina +Chantelle +Constance +Corey +Doris +Ebony +Elisha +Eliza +Francesca +Helena +Ivette +Jasmine +Jeannette +Jeannie +Jocelyn +Justine +Karrie +Kate +Kiersten +Lea +Lenore +Lynda +Marian +Marybeth +Maya +Mayra +Melody +Michael +Penelope +Rene +Ruby +Shelby +Sherie +Sophia +Tabatha +Trista +Tyra +Zoraida +Jennifer +Amy +Michelle +Melissa +Heather +Lisa +Kimberly +Jessica +Rebecca +Nicole +Christine +Elizabeth +Sarah +Dawn +Kelly +Karen +Kristen +Laura +Stephanie +Susan +Shannon +Christina +Danielle +Tara +Tracy +Michele +Julie +Maria +Andrea +Erin +Tammy +Rachel +Angela +Tanya +Mary +Patricia +Tina +Katherine +Kristin +Catherine +Kathleen +Stacy +Jill +Carrie +Amanda +Stacey +Sandra +Lori +Wendy +Cynthia +Deborah +Denise +Melanie +Allison +Nancy +April +Cheryl +Holly +Sara +Theresa +Alicia +Emily +Dana +Gina +Pamela +Kathryn +Alison +Erica +Sharon +Heidi +Jacqueline +Suzanne +Megan +Renee +Beth +Brenda +Jodi +Tiffany +Diana +Kim +Linda +Colleen +Laurie +Lynn +Robin +Donna +Lauren +Carolyn +Victoria +Tracey +Ann +Barbara +Debra +Margaret +Aimee +Anne +Kerry +Kara +Crystal +Joanna +Joy +Diane +Sherry +Monica +Monique +Teresa +Tonya +Tricia +Bridget +Leslie +Courtney +Joanne +Paula +Krista +Melinda +Meredith +Tamara +Valerie +Bethany +Deanna +Natalie +Vanessa +Anna +Carmen +Carol +Kristine +Maureen +Samantha +Shelley +Caroline +Eileen +Robyn +Sheila +Cara +Felicia +Janet +Kristina +Marisol +Sheri +Virginia +Audrey +Jamie +Julia +Kari +Kirsten +Leigh +Nina +Veronica +Yolanda +Cindy +Gretchen +Jeanette +Jody +Leah +Abigail +Ashley +Kelley +Marie +Natasha +Sonia +Tasha +Carla +Ellen +Regina +Stacie +Terri +Alexandra +Dina +Erika +Jenny +Rosa +Rose +Ruth +Shelly +Amber +Bonnie +Christie +Christy +Darlene +Dorothy +Elaine +Elisabeth +Evelyn +Hope +Katie +Kendra +Kerri +Kristie +Marcia +Meghan +Rhonda +Sherri +Alexis +Ana +Brandy +Charlene +Jane +Jean +Jeannette +Joann +Kate +Katrina +Keri +Kristi +Latasha +Luz +Marcy +Paige +Yvonne +Alisa +Annette +Darcy +Helen +Joyce +Kristy +Maritza +Shirley +Traci +Alice +Alyssa +Brandi +Deirdre +Frances +Janice +Josephine +Karla +Marilyn +Marisa +Marlene +Molly +Rachael +Rebekah +Rosemary +Sonya +Sylvia +Anita +Beverly +Cassandra +Dayna +Doreen +Hilary +Ivette +Jeannine +Jenna +Jennie +Latoya +Maryann +Sheryl +Amie +Betsy +Candice +Caryn +Cathleen +Elisa +Elise +Eva +Irene +Jolene +Katharine +Kathy +Kellie +Lissette +Liza +Lorraine +Marci +Martha +Maura +Nakia +Naomi +Roxanne +Tabitha +Adrienne +Alyson +Annmarie +Becky +Carey +Cathy +Constance +Cristina +Debbie +Joan +Jodie +Judith +Kimberley +Lara +Latanya +Laurel +Lena +Lydia +Lynda +Mindy +Nadine +Raquel +Sally +Shawn +Shelby +Vicki +Vicky +Allyson +Bernadette +Carly +Casey +Charity +Cheri +Claudia +Daisy +Faith +Gloria +Iris +Jenifer +Johanna +Karin +Keisha +Kelli +Kerrie +Leticia +Marianne +Marsha +Melisa +Michael +Miriam +Nicola +Rene +Sabrina +Sherrie +Staci +Susanne +Tania +Tracie +Trina +Aida +Aisha +Anastasia +Audra +Blanca +Brooke +Cherie +Demetria +Doris +Gail +Helena +Jaime +Jeanine +Jeanne +Jocelyn +Karyn +Lakeisha +Latisha +Lea +Lucy +Madeline +Marybeth +Penny +Shawna +Tamika +Teri +Terry +Toni +Trisha +Vivian +Wanda +Wendi +Yesenia +Yvette +Adrianne +Alissa +Belinda +Billie +Caitlin +Candace +Chantal +Chelsea +Christa +Corinne +Daniela +Grace +Hannah +Hillary +Jillian +Juanita +Kenya +Lesley +Lillian +Lindsay +Lourdes +Lynette +Maggie +Margarita +Maribel +Marissa +Marjorie +Marla +Mia +Nikki +Nora +Norma +Pauline +Rochelle +Tanisha +Whitney +Adria +Ami +Angelica +Angie +Antoinette +Beatriz +Candy +Cassie +Chandra +Charlotte +Chastity +Christen +Christin +Claire +Claudine +Connie +Cristin +Deena +Dianne +Elena +Ericka +Esther +Fiona +Gabrielle +Jacquelyn +Jana +Janette +Janine +Judy +Keely +Lakesha +Lashonda +Leanne +Lee +Lenore +Lina +Loretta +Marcie +Marlo +Marta +Meaghan +Melody +Mildred +Monika +Nichole +Noelle +Noemi +Priscilla +Rachelle +Ramona +Rita +Roberta +Rosemarie +Shana +Shauna +Tami +Tammie +Tonia +Jennifer +Amy +Heather +Melissa +Michelle +Nicole +Kimberly +Jessica +Lisa +Elizabeth +Rebecca +Sarah +Kelly +Christine +Stephanie +Dawn +Karen +Erin +Rachel +Tara +Danielle +Susan +Tracy +Kristen +Laura +Christina +Shannon +Amanda +Jill +Stacey +Carrie +Julie +Katherine +Mary +Wendy +Emily +Maria +Tammy +Stacy +Michele +Kristin +Andrea +Megan +Sandra +Sara +Tanya +Tina +Angela +Melanie +Catherine +Kathleen +April +Allison +Heidi +Lauren +Deborah +Cheryl +Lori +Tiffany +Cynthia +Denise +Patricia +Holly +Jacqueline +Jodi +Nancy +Colleen +Erica +Meghan +Alison +Alicia +Barbara +Diana +Dana +Sharon +Gina +Kathryn +Suzanne +Tamara +Theresa +Brenda +Courtney +Linda +Anne +Kerry +Beth +Robin +Carolyn +Diane +Debra +Kara +Renee +Crystal +Erika +Natasha +Jamie +Tracey +Valerie +Krista +Laurie +Monica +Sherry +Lynn +Margaret +Pamela +Carmen +Donna +Leah +Meredith +Samantha +Bridget +Caroline +Melinda +Veronica +Carol +Kerri +Leslie +Paula +Tricia +Aimee +Amber +Anna +Kim +Janet +Joanna +Marisol +Tonya +Yolanda +Ann +Sheila +Kristina +Shelly +Traci +Carla +Joy +Kirsten +Marie +Robyn +Shelley +Vanessa +Cindy +Kate +Ruth +Teresa +Cara +Christy +Dina +Elaine +Felicia +Jaime +Julia +Keri +Kristine +Maureen +Sheri +Victoria +Christie +Deanna +Ellen +Madeline +Natalie +Rachael +Wanda +Abigail +Alexandra +Brandi +Brandy +Jeanette +Latoya +Rosa +Bethany +Bonnie +Gretchen +Jody +Martha +Monique +Naomi +Regina +Tasha +Allyson +Ana +Darcy +Ebony +Janice +Jeanne +Keisha +Kelley +Luz +Tania +Evelyn +Iris +Jean +Joanne +Jodie +Kendra +Rebekah +Stefanie +Virginia +Anita +Ashley +Brooke +Candice +Dorothy +Jenny +Kari +Kathy +Kellie +Nadine +Nina +Shelby +Stacie +Alexis +Angie +Annette +Arlene +Cassandra +Darlene +Helen +Jane +Joann +Leigh +Mandy +Marcia +Marilyn +Rose +Staci +Tracie +Trisha +Adrienne +Alice +Cheri +Deana +Doreen +Eileen +Elena +Hilary +Katie +Lillian +Miriam +Molly +Rhonda +Sandy +Sherri +Alyssa +Cathy +Claire +Cristina +Gail +Gloria +Hope +Jenifer +Joan +Katrina +Kenya +Kristi +Latasha +Lindsay +Maribel +Rita +Shana +Sylvia +Tamika +Tanisha +Yvette +Yvonne +Alissa +Amie +Annmarie +Antoinette +Audrey +Candace +Claudia +Corey +Desiree +Faith +Grace +Janine +Jeanine +Joyce +Judith +Katharine +Kelli +Lorraine +Lynda +Marci +Marsha +Maura +Melody +Mindy +Nichole +Nikki +Paige +Sonya +Tami +Terry +Tisha +Toni +Vicki +Angelina +Audra +Belinda +Bernadette +Bobbie +Carey +Cherie +Christin +Elisabeth +Elise +Frances +Irene +Ivette +Jacquelyn +Karin +Karla +Lydia +Nakia +Nora +Olga +Raquel +Sally +Sheryl +Taryn +Tia +Aisha +Autumn +Becky +Betsy +Charlene +Charlotte +Christa +Daisy +Deirdre +Francesca +Ingrid +Isabel +Jeannette +Jeannine +Jennie +John +Josephine +Kristie +Liza +Lucy +Lynette +Madelin +Marcie +Marisa +Meagan +Misty +Priscilla +Rochelle +Roxanne +Sonia +Susanne +Teri +Terri +Agnes +Aida +Amelia +Antonia +Bree +Carissa +Carly +Casey +Celeste +Chelsea +Christen +Christi +Constance +Edith +Elisa +Eva +Gabrielle +Hillary +Jasmine +Jayne +Jenna +Joelle +Jolene +Julianne +Karrie +Lakisha +Laurel +Lawanda +Lee +Lesley +Lindsey +Lissette +Louise +Madelyn +Marianne +Maritza +Marlene +Mayra +Miranda +Sabrina +Shari +Shawna +Tameka +Tammie +Wendi +Abby +Alana +Anabela +Angel +Angelica +Anitra +Betty +Billie +Candy +Cari +Carmela +Caryn +Chandra +Charity +Cherilyn +Clara +Connie +Cora +Corrine +Cory +Deena +Elissa +Emma +Francine +Ginger +Gwendolyn +Hannah +Jami +Janelle +Jessie +Jo +Juanita +Kerrie +Kimberlee +Kisha +Kristy +Latonya +Liane +Makisha +Margarita +Marissa +Marjorie +Maryann +Meaghan +Nicola +Nilsa +Noelle +Norma +Olivia +Ramona +Roberta +Shirley +Summer +Susanna +Tabitha +Takisha +Taneka +Jennifer +Amy +Jessica +Heather +Melissa +Sarah +Elizabeth +Kimberly +Lisa +Michelle +Rebecca +Nicole +Christine +Kelly +Jaime +Erin +Stephanie +Laura +Christina +Shannon +Sara +Danielle +Karen +Amanda +Dawn +Carrie +Jamie +Mary +Kristen +Susan +Julie +Michele +Rachel +Angela +Stacey +Tammy +Maria +Katherine +Tina +Andrea +Kathleen +Tara +Megan +Allison +Emily +Tanya +Melanie +Erica +Kristin +Lauren +Lori +Tracy +Alison +Catherine +Jill +Wendy +Deborah +Sandra +Dana +Patricia +Stacy +Courtney +Cynthia +Beth +Denise +Holly +April +Renee +Gina +Heidi +Sharon +Brenda +Kerry +Kathryn +Monica +Kara +Robin +Diane +Alicia +Jacqueline +Cheryl +Diana +Amber +Suzanne +Aimee +Carolyn +Lindsay +Lynn +Margaret +Tiffany +Colleen +Kristina +Tracey +Meghan +Pamela +Anne +Laurie +Leslie +Linda +Samantha +Jodi +Theresa +Victoria +Jody +Natalie +Tricia +Nancy +Barbara +Donna +Janet +Crystal +Debra +Erika +Marie +Teresa +Bethany +Brandy +Caroline +Cindy +Leah +Natasha +Valerie +Yolanda +Ann +Rachael +Tamara +Joanna +Julia +Abigail +Alexandra +Deanna +Kate +Kerri +Melinda +Meredith +Ellen +Keri +Paula +Anna +Bonnie +Carla +Eileen +Kari +Kristine +Rosa +Wanda +Brooke +Carmen +Christy +Jenny +Regina +Sabrina +Sheila +Vanessa +Adrienne +Katie +Kim +Latoya +Marisol +Tamika +Gretchen +Joanne +Joy +Krista +Marisa +Monique +Annette +Bridget +Ebony +Kristy +Rebekah +Shana +Sonia +Tonya +Veronica +Allyson +Carol +Christa +Felicia +Latasha +Mandy +Maureen +Ashley +Carey +Jeannette +Jodie +Kendra +Luz +Misty +Nichole +Alexis +Alice +Audrey +Cara +Cristina +Elaine +Jean +Jennie +Judith +Kelley +Kelli +Naomi +Sherri +Stacie +Alyssa +Annmarie +Charlene +Christie +Darlene +Dorothy +Evelyn +Jenna +Johanna +Joyce +Kirsten +Latisha +Madeline +Margarita +Marissa +Robyn +Stefanie +Tania +Caitlin +Candace +Janice +Jocelyn +Katharine +Kellie +Lakisha +Leigh +Maryann +Sherry +Tanisha +Amie +Ana +Chelsea +Claudia +Dina +Hannah +Iris +Jane +Lara +Lesley +Lillian +Maribel +Marilyn +Marlene +Nadine +Sheri +Alissa +Angel +Candice +Carissa +Daisy +Deirdre +Hope +Jasmine +Jeanette +Jenifer +Jessie +Joan +Karin +Karyn +Keisha +Kristi +Kristie +Lindsey +Martha +Molly +Nora +Shelley +Shelly +Sonya +Traci +Trisha +Virginia +Yvonne +Alisa +Annemarie +Antoinette +Betsy +Charlotte +Darcy +Desiree +Ericka +Frances +Helen +Hilary +Irene +Jacquelyn +Jaimie +Jana +Kathy +Katrina +Liza +Marybeth +Melody +Rose +Rosemary +Sally +Samara +Sandy +Shawna +Tabitha +Tasha +Terri +Adrianne +Aisha +Alyson +Becky +Belinda +Brandi +Cassandra +Chantel +Cheri +Damaris +Debbie +Dena +Elena +Elisabeth +Farrah +Ingrid +Janelle +Jeanne +Joann +Kimberley +Loren +Lydia +Marci +Marcy +Mayra +Nadia +Nikole +Nydia +Olga +Rhonda +Ronda +Roxanne +Summer +Vicki +Angelina +Anita +Bernadette +Billie +Connie +Corey +Cortney +Deana +Elisa +Francesca +Hilda +Jami +Jeanine +Jolene +Juanita +Juliet +Marcia +Maritza +Marla +Maura +Michael +Mildred +Miriam +Nakia +Nina +Noemi +Olivia +Ruth +Serena +Shari +Shelby +Sherrie +Shirley +Tameka +Tami +Tammi +Tawana +Terry +Vicky +Whitney +Yvette +Abby +Alanna +Anastasia +Angelique +Anitra +Ariana +Audra +Beverly +Casey +Celina +Chantal +Corinne +Cory +Dianna +Eboni +Elise +Emma +Eva +Giovanna +Grace +Ivette +Jamila +Janae +Janna +Jillian +John +Justina +Karrie +Kenya +Lashonda +Latanya +Leanne +Loretta +Lorraine +Luciana +Lynne +Mackenzie +Mara +Marianne +Marion +Maryellen +Meagan +Melisa +Pauline +Penny +Rachelle +Raquel +Staci +Susannah +Toni +Trina +Jennifer +Jessica +Melissa +Amy +Heather +Sarah +Kelly +Elizabeth +Michelle +Nicole +Kimberly +Lisa +Rebecca +Christina +Erin +Christine +Shannon +Laura +Stephanie +Amanda +Sara +Karen +Danielle +Katherine +Emily +Megan +Jamie +Rachel +Jaime +Kristen +Tara +Allison +Dawn +Erica +Julie +Stacey +Kathleen +Maria +Jill +Mary +Carrie +Angela +Melanie +Patricia +Susan +Alison +Andrea +Michele +Kristin +Lauren +Courtney +Catherine +Aimee +Heidi +Stacy +Tracy +Kathryn +Tina +Tammy +Cynthia +Sandra +Monica +Wendy +Jacqueline +Meghan +Tanya +Alicia +Crystal +Denise +Tiffany +Colleen +Lori +Suzanne +Margaret +Robin +April +Samantha +Sharon +Dana +Deborah +Kristy +Beth +Gina +Holly +Kara +Nancy +Theresa +Carolyn +Amber +Anna +Tamara +Anne +Diana +Kristina +Lindsay +Cheryl +Marie +Marissa +Brenda +Erika +Marisa +Natalie +Natasha +Pamela +Renee +Kerry +Vanessa +Katie +Leah +Lynn +Sabrina +Victoria +Kristine +Linda +Ann +Bethany +Jaclyn +Jenny +Joanna +Keri +Meredith +Carla +Carmen +Robyn +Tracey +Debra +Diane +Leslie +Jillian +Valerie +Yolanda +Abigail +Adrienne +Barbara +Janet +Jodi +Joy +Krista +Aisha +Bonnie +Cindy +Donna +Monique +Trisha +Veronica +Alexandra +Christy +Jocelyn +Kate +Melinda +Ashley +Katharine +Rachael +Caroline +Joanne +Kelley +Maureen +Bridget +Deanna +Evelyn +Katrina +Kerri +Marilyn +Molly +Paula +Tricia +Laurie +Mandy +Nichole +Brooke +Cara +Cassandra +Eileen +Ellen +Kim +Kristi +Kristie +Latoya +Naomi +Ruth +Shana +Tasha +Cristina +Ebony +Gretchen +Jolene +Kari +Latasha +Leigh +Martha +Shawna +Alexis +Allyson +Carissa +Carol +Darlene +Melody +Regina +Rose +Stefanie +Wanda +Christie +Hilary +Johanna +Judith +Kelli +Kellie +Lesley +Luz +Rebekah +Shelley +Sherri +Teresa +Tonya +Virginia +Alyson +Anita +Cherie +Jeanette +Jenifer +Latisha +Lindsey +Maryann +Shelly +Alyssa +Ana +Brandy +Candice +Charity +Dorothy +Elisabeth +Helen +Hope +Jean +Julia +Karyn +Kathy +Marisol +Raquel +Roxanne +Sheri +Summer +Tamika +Toni +Yvonne +Audrey +Brandi +Caitlin +Candace +Charlene +Claire +Connie +Corinne +Daisy +Felicia +Janelle +Jennie +Kizzy +Lakisha +Marcy +Misty +Priscilla +Sandy +Sherry +Sonia +Tabitha +Adriana +Alice +Annmarie +Bianca +Caryn +Casey +Cathleen +Christa +Eliza +Esther +Jeannette +Julianne +Keisha +Lena +Lydia +Lynette +Miriam +Rosa +Shanna +Shauna +Tania +Tanisha +Traci +Becky +Carey +Cathy +Charlotte +Chelsea +Claudia +Debbie +Desiree +Devon +Dina +Elisha +Elissa +Frances +Gloria +Hillary +Irene +Jacquelyn +Jaimie +Jody +Joyce +Karin +Kirsten +Lee +Lillian +Marcia +Maura +Nadine +Olivia +Sheila +Yvette +Alisha +Amie +Angel +Annette +Belinda +Elaine +Elena +Elise +Ericka +Ginger +Jasmine +Jeanne +Jessie +Joann +Jodie +Josephine +Judy +Kai +Kerrie +Kimberley +Liza +Madeline +Mayra +Miranda +Nikki +Selena +Shelby +Sheryl +Taryn +Alisa +Alissa +Angelina +Athena +Beatrice +Brie +Corey +Corrie +Daniela +Dara +Deirdre +Dena +Doris +Eva +Farrah +Francesca +Iris +Jamila +Jane +Janice +Jenna +Karla +Lara +Marcie +Maribel +Marjorie +Maya +Mia +Michael +Mindy +Nadia +Nakia +Omayra +Rashida +Rita +Rochelle +Rosanna +Simone +Siobhan +Sonya +Stacie +Sylvia +Tammi +Terri +Trina +Yesenia +Alana +Angelique +Anitra +Audra +Autumn +Bernadette +Bobbijo +Brianna +Cori +Cory +David +Elsie +Emma +Faith +Gail +Gena +Georgia +Grace +Iesha +Ingrid +Jami +Jeannie +Jeannine +Jesse +Karie +Kia +Kori +Lakeisha +Lakiesha +Lashonda +Latosha +Laurel +Lea +Leanne +Lisette +Lourdes +Lucia +Lynda +Malinda +Marci +Marla +Marlene +Maryjo +Melisa +Michaela +Migdalia +Noemi +Nora +Ramona +Rosemarie +Ryan +Serena +Shari +Shawn +Staci +Syreeta +Talia +Taylor +Terry +Tia +Tonia +Vicki +Jennifer +Jessica +Melissa +Sarah +Amy +Heather +Elizabeth +Michelle +Kelly +Nicole +Lisa +Rebecca +Christina +Christine +Erin +Kimberly +Amanda +Laura +Danielle +Katherine +Stephanie +Shannon +Sara +Rachel +Angela +Lauren +Kristen +Kathryn +Karen +Megan +Stacey +Andrea +Mary +Jill +Julie +Emily +Jamie +Erica +Susan +Tara +Jaime +Carrie +Catherine +Maria +April +Kristin +Crystal +Dawn +Kathleen +Jacqueline +Melanie +Stacy +Alison +Kristy +Tracy +Meghan +Allison +Tina +Gina +Kristina +Dana +Monica +Michele +Sandra +Tanya +Alicia +Katie +Cynthia +Denise +Diana +Beth +Courtney +Amber +Patricia +Tammy +Lindsay +Lori +Suzanne +Samantha +Diane +Margaret +Robin +Vanessa +Meredith +Sabrina +Holly +Wendy +Carolyn +Erika +Anne +Brenda +Cheryl +Theresa +Tiffany +Melinda +Renee +Brooke +Colleen +Deborah +Leslie +Victoria +Kerry +Pamela +Anna +Jaclyn +Jenny +Nancy +Tamara +Kara +Kate +Aimee +Bethany +Heidi +Julia +Ashley +Linda +Valerie +Debra +Monique +Natasha +Tricia +Carla +Veronica +Barbara +Jodi +Krista +Marie +Natalie +Robyn +Tracey +Kristine +Sharon +Carmen +Deanna +Ellen +Leah +Lindsey +Marisa +Marissa +Ann +Bridget +Cindy +Corinne +Joy +Katrina +Keri +Lynn +Shana +Teresa +Christy +Janet +Kellie +Laurie +Molly +Nichole +Rebekah +Abigail +Jillian +Kelley +Kerri +Sheila +Tamika +Yolanda +Adrienne +Alisha +Caroline +Eileen +Kelli +Sherry +Alexis +Brandy +Cara +Cristina +Desiree +Elisabeth +Joanna +Jocelyn +Kendra +Stefanie +Tabitha +Felicia +Joanne +Kim +Latoya +Mandy +Marilyn +Marisol +Maureen +Rachael +Toni +Amie +Faith +Jean +Latanya +Madeline +Martha +Naomi +Paula +Tonya +Annmarie +Casey +Cassandra +Donna +Elaine +Evelyn +Gretchen +Helen +Janice +Katharine +Kirsten +Kristie +Marlene +Michael +Sheri +Wanda +Bonnie +Carey +Carol +Dorothy +Hillary +Kari +Kristi +Latasha +Marcy +Miranda +Rhonda +Rosa +Tania +Alexandra +Alyson +Alyssa +Ana +Brandi +Charlene +Dina +Ebony +Elisa +Frances +Janelle +Jasmine +Jeanette +Leigh +Lesley +Liza +Luz +Marcie +Sandy +Shelly +Sherri +Trisha +Aisha +Candace +Christa +Christie +Ericka +Hope +Jacquelyn +Jodie +Latisha +Latonya +Miriam +Paige +Raquel +Regina +Sonia +Whitney +Alisa +Allyson +Autumn +Gail +Jenna +Jessie +Jody +Kasey +Lara +Maribel +Melody +Nikki +Nina +Stacie +Tasha +Virginia +Yvonne +Annette +Becky +Caitlin +Caryn +Charlotte +Damaris +Deana +Deirdre +Eva +Hannah +Jane +Jeannine +Jenifer +Jennie +Johanna +Karla +Keisha +Kyle +Leanne +Marcia +Marianne +Maura +Meagan +Rose +Ruth +Sally +Shante +Shawna +Sonya +Tameka +Tia +Traci +Tracie +Abby +Adrianne +Alice +Anita +Audrey +Betsy +Bianca +Candice +Charity +Claire +Claudia +Cortney +Darcy +Elise +Gabrielle +Iris +Joann +Joyce +Juanita +Judith +Lucy +Lydia +Lynette +Marcella +Misty +Olivia +Shelley +Sheryl +Sylvia +Tammie +Tanisha +Yvette +Alissa +Ami +Angel +Angelica +Bernadette +Camille +Carly +Cathleen +Chantal +Chelsea +Cheri +Cherie +Chrystal +Corey +Cori +Darlene +Dena +Devon +Doreen +Eleanor +Esmeralda +Genevieve +Hilary +Jeanne +Josephine +Kizzy +Lakeya +Leticia +Liana +Lillian +Lorraine +Luisa +Lynda +Madelyn +Maryann +Marybeth +Maya +Nora +Rita +Robert +Roberta +Sage +Summer +Susanne +Tanika +Teri +Tessa +Adriane +Amelia +Audra +Brianne +Cecilia +Celina +Chandra +Chrissy +Christin +Colette +Constance +Corrine +Dara +Eboni +Elisha +Eliza +Glenda +Gwendolyn +Helena +Ingrid +Jana +Janine +Jeanine +Jesenia +Jessenia +Joelle +Kai +Karin +Karyn +Kimberley +Kirstin +Kizzie +Kylie +Lakeisha +Lashonda +Lee +Leila +Lora +Lucinda +Mackenzie +Maritza +Marjorie +Marnie +Marsha +Maryellen +Myra +Nadia +Noelle +Olga +Priscilla +Quiana +Randi +Rayna +Rosemary +Ryan +Shanna +Shara +Shauna +Thomas +Tiffanie +Xiomara +Jennifer +Melissa +Jessica +Sarah +Elizabeth +Amy +Nicole +Michelle +Heather +Lisa +Amanda +Kelly +Rebecca +Christina +Kimberly +Danielle +Laura +Erin +Stephanie +Katherine +Christine +Megan +Lauren +Rachel +Kristen +Shannon +Sara +Julie +Erica +Karen +Kathryn +Andrea +Tara +Angela +Jamie +Emily +Allison +Crystal +Kristin +Mary +Jill +Kathleen +Meghan +Catherine +Stacy +Tiffany +Melanie +Alison +April +Stacey +Maria +Tracy +Cheryl +Courtney +Susan +Jacqueline +Kristy +Alicia +Dawn +Tanya +Monica +Patricia +Amber +Jaime +Dana +Cynthia +Margaret +Michele +Anne +Carrie +Holly +Kristina +Lindsay +Sandra +Ashley +Tina +Beth +Gina +Samantha +Vanessa +Kara +Kate +Anna +Heidi +Katie +Colleen +Meredith +Theresa +Alexandra +Victoria +Wendy +Pamela +Renee +Diana +Erika +Lori +Carolyn +Sharon +Bethany +Krista +Leah +Melinda +Sabrina +Linda +Nancy +Aimee +Barbara +Brenda +Julia +Tammy +Teresa +Brooke +Caroline +Denise +Donna +Marisa +Debra +Jaclyn +Joy +Robin +Katrina +Lindsey +Suzanne +Deborah +Jenny +Leslie +Adrienne +Ebony +Marie +Monique +Veronica +Ann +Bonnie +Carmen +Diane +Latoya +Abigail +Kristine +Marissa +Valerie +Candice +Cassandra +Jillian +Joanna +Maureen +Tamara +Nichole +Cara +Cristina +Deanna +Janet +Jennie +Natasha +Rachael +Robyn +Tracey +Cindy +Evelyn +Joanne +Kendra +Kerry +Kristi +Laurie +Paula +Alexis +Charlene +Jodi +Kelley +Lynn +Shanna +Tania +Tricia +Yolanda +Brianne +Dorothy +Katharine +Keri +Madeline +Natalie +Alyssa +Brandi +Bridget +Carla +Casey +Jean +Jeanette +Jocelyn +Kari +Tabitha +Tonya +Amie +Brandy +Kerri +Kim +Kirsten +Mandy +Meaghan +Sonia +Ana +Paige +Rosa +Ruth +Shana +Tanisha +Christie +Desiree +Liza +Martha +Rosemary +Shauna +Tamika +Virginia +Aisha +Alyson +Anita +Belinda +Carol +Christa +Christy +Eileen +Ellen +Felicia +Hilary +Jasmine +Jessie +Jodie +Meghann +Mindy +Molly +Regina +Sheila +Tasha +Traci +Caitlin +Elaine +Faith +Helen +Iris +Marisol +Misty +Rebekah +Sherry +Stacie +Toni +Wanda +Yvonne +Alissa +Angel +Brittany +Damaris +Elisabeth +Emma +Eva +Gretchen +Hannah +Kristie +Marilyn +Maritza +Melody +Miranda +Naomi +Rose +Trisha +Viviana +Whitney +Aja +Bianca +Carissa +Corey +Darlene +Dominique +Elena +Janelle +Judith +Kelli +Kellie +Lakeisha +Latisha +Lydia +Marci +Marcy +Nina +Olivia +Raquel +Rhonda +Shawna +Staci +Trina +Alice +Charlotte +Corinne +Daisy +David +Elise +Francesca +Glenda +Hillary +Janice +Jeanine +Jenna +Joan +Jody +Johanna +Justine +Karin +Karla +Karyn +Latasha +Lissette +Maya +Nora +Sandy +Shelley +Sherri +Terri +Abby +Alana +Allyson +Angie +Arlene +Betsy +Candace +Cathleen +Cherie +Elissa +Irene +Ivy +Jeannette +Juanita +Kasey +Kenya +Kyla +Leanne +Leigh +Lesley +Marion +Nadia +Sheri +Silvia +Tami +Taryn +Tracie +Vivian +Yesenia +Adriana +Alisa +Amelia +Audrey +Autumn +Beatrice +Betty +Carly +Caryn +Chanel +Claire +Claudia +Devon +Gabrielle +Grace +Hollie +Jacquelyn +Janette +Jeanne +Joann +Judy +Larissa +Leticia +Lillian +Luz +Lynette +Marianne +Marsha +Maura +Mia +Nadine +Noelle +Norma +Priscilla +Quiana +Sally +Shameka +Shelly +Sue +Summer +Alaina +Alanna +Alessandra +Alisha +Anastasia +Angelica +Angelina +Annie +Annmarie +Aubrey +Brianna +Brie +Cathy +Chantelle +Charity +Chelsea +Cheri +Christen +Christin +Connie +Constance +Cori +Cory +Deirdre +Destiny +Devin +Dianna +Dianne +Dina +Elisa +Ericka +Faye +Gail +Gloria +Iesha +Ivette +Jaimie +Jami +Janine +Jenifer +Jesse +Josephine +Kathy +Keisha +Kyle +Latanya +Lee +Luisa +Lynne +Maegan +Marcella +Marcie +Maribel +Marjorie +Mellissa +Miriam +Nakia +Nikki +Omayra +Patrice +Raina +Ramona +Rashida +Robert +Roberta +Rochelle +Roxanne +Selena +Shanda +Shante +Sherrie +Sheryl +Shirley +Shonda +Sonya +Sophia +Stefanie +Stephany +Susana +Talia +Tashema +Tia +Tiana +Vicky +Yanira +Yvette +Jennifer +Jessica +Melissa +Sarah +Elizabeth +Nicole +Amy +Michelle +Rebecca +Heather +Amanda +Kimberly +Lisa +Kelly +Christina +Erin +Stephanie +Laura +Christine +Sara +Katherine +Danielle +Kristen +Megan +Erica +Emily +Shannon +Rachel +Mary +Kristin +Tiffany +Lauren +Katie +Julie +Kathryn +Allison +Meghan +Angela +Tara +Andrea +Crystal +Karen +Kathleen +Maria +Jamie +Alison +Catherine +Jacqueline +Jill +Melanie +Lindsay +Stacy +Courtney +Dana +Amber +Stacey +Alicia +Ashley +Tracy +Carrie +Dawn +Vanessa +April +Michele +Susan +Holly +Sandra +Tanya +Cheryl +Kara +Erika +Heidi +Monica +Kate +Bethany +Colleen +Cynthia +Gina +Margaret +Tammy +Kristina +Monique +Tina +Anne +Leah +Patricia +Brooke +Denise +Robin +Samantha +Anna +Krista +Meredith +Beth +Alexandra +Jillian +Lindsey +Carolyn +Leslie +Natasha +Suzanne +Theresa +Victoria +Brenda +Jenny +Valerie +Jaime +Kristy +Diana +Marie +Marissa +Alyssa +Abigail +Melinda +Nancy +Rachael +Deborah +Joanna +Julia +Lynn +Pamela +Tamara +Ebony +Lori +Ann +Barbara +Caitlin +Cristina +Janet +Maureen +Natalie +Renee +Wendy +Diane +Jaclyn +Teresa +Carla +Kristine +Marisa +Rosa +Sabrina +Tracey +Cassandra +Katharine +Laurie +Sharon +Aimee +Brianne +Candace +Katrina +Molly +Nichole +Debra +Nina +Yolanda +Alexis +Carmen +Caroline +Linda +Meagan +Veronica +Bonnie +Bridget +Kerry +Adrienne +Alyson +Cara +Desiree +Jean +Kerri +Morgan +Rose +Stefanie +Brandi +Christy +Ellen +Gretchen +Kelley +Kendra +Virginia +Claire +Donna +Eileen +Elisabeth +Jasmine +Johanna +Larissa +Latoya +Meaghan +Naomi +Shauna +Tricia +Trisha +Ana +Betsy +Charlene +Dena +Jenna +Kelli +Kirsten +Priscilla +Shelley +Tasha +Brandy +Elaine +Janelle +Joanne +Jocelyn +Latasha +Paula +Ruth +Sherry +Tamika +Tania +Whitney +Alissa +Allyson +Candice +Casey +Christa +Corey +Corinne +Deanna +Dorothy +Hillary +Jodi +Lakisha +Robyn +Shawna +Alana +Alisha +Angelica +Charlotte +Cindy +Daisy +Dina +Esther +Hilary +Janice +Jeanette +Jennie +Joann +Keri +Luz +Rebekah +Sonia +Tonya +Wanda +Yvonne +Brianna +Carissa +Carly +Carol +Damaris +Elise +Hope +Janine +Jessie +Kristi +Lesley +Mandy +Marci +Marcia +Penny +Regina +Shanna +Shayla +Tanisha +Annette +Aubrey +Elena +Felicia +Gladys +Grace +Jane +Jordan +Karyn +Kim +Kimberley +Leigh +Liza +Marcie +Marisol +Marlene +Melisa +Miranda +Shana +Tabitha +Toni +Christie +Constance +Deirdre +Devon +Elisa +Ericka +Eva +Jaimie +Jody +Joyce +Karla +Katelyn +Keisha +Kellie +Leanne +Lee +Leticia +Lillian +Marcy +Marta +Rosemary +Sheila +Shelly +Sheri +Abby +Aisha +Amie +Angel +Angelina +Annie +Annmarie +Carey +Cathleen +Christen +Daniela +Gloria +Hannah +Irene +Iris +Jasmin +Kari +Kristie +Madeline +Maribel +Misty +Olga +Olivia +Ryan +Simone +Siobhan +Sonya +Stacie +Susanna +Sylvia +Traci +Yajaira +Alaina +Arielle +Autumn +Beatrice +Becky +Camille +Chrissy +Dara +Elissa +Evelyn +Faith +Frances +Jacquelyn +Jason +Jeanne +Jenifer +Joy +Judith +Justine +Karin +Karissa +Kathy +Katy +Kristyn +Kyla +Kyle +Lakesha +Lara +Laurel +Lena +Liz +Lizette +Lydia +Mariah +Marianne +Maura +Mia +Paige +Patrice +Randi +Rita +Rosemarie +Roxanne +Sasha +Summer +Syreeta +Tammie +Taryn +Terri +Adrianne +Alexa +Alice +Alycia +Arlene +Audra +Belinda +Brie +Brittany +Cherie +Chimere +Claudia +Coleen +Cory +Darlene +David +Davina +Debbie +Genevieve +Georgia +Ingrid +Isabel +Jana +Jesse +Joan +Jolene +Joseph +Josephine +Julianne +Juliet +Kaitlin +Kylie +Lea +Lynda +Maggie +Maritza +Martha +Maya +Melody +Mindy +Monika +Nora +Raquel +Rashida +Raven +Sacha +Sandy +Sarabeth +Shara +Shavonne +Tia +Tiana +Trina +Jennifer +Jessica +Sarah +Melissa +Elizabeth +Nicole +Amy +Michelle +Kimberly +Heather +Amanda +Rebecca +Laura +Erin +Stephanie +Lisa +Kelly +Christina +Danielle +Sara +Katherine +Emily +Lauren +Kristen +Kristin +Rachel +Christine +Crystal +Megan +Shannon +Tiffany +Kathryn +Erica +Mary +Jamie +Julie +Angela +Courtney +Tara +Katie +Allison +Andrea +Lindsay +Karen +Jacqueline +Kathleen +Amber +Maria +Ashley +Meghan +Catherine +Alicia +Diana +Stacey +Tracy +April +Susan +Alison +Kristina +Lindsey +Margaret +Jill +Patricia +Samantha +Vanessa +Carrie +Melanie +Victoria +Dana +Leah +Kate +Dawn +Jillian +Michele +Gina +Julia +Kara +Bethany +Sandra +Marissa +Pamela +Renee +Stacy +Brooke +Holly +Colleen +Tina +Cynthia +Tanya +Anna +Anne +Natalie +Theresa +Heidi +Marisa +Erika +Latoya +Suzanne +Alexandra +Cheryl +Jaime +Leslie +Linda +Monica +Nina +Barbara +Candice +Ebony +Katharine +Robin +Marie +Aimee +Alexis +Joanna +Lori +Natasha +Teresa +Abigail +Denise +Diane +Wendy +Beth +Brenda +Carla +Deborah +Lynn +Melinda +Monique +Sharon +Stefanie +Casey +Cristina +Jessie +Krista +Morgan +Veronica +Alyssa +Kristine +Molly +Valerie +Caitlin +Carolyn +Cassandra +Meredith +Yolanda +Cara +Laurie +Nancy +Rachael +Tamara +Bridget +Ellen +Jaclyn +Kari +Katrina +Naomi +Rebekah +Brandy +Caroline +Kerry +Leigh +Tammy +Alissa +Ann +Candace +Deanna +Jasmine +Jocelyn +Paula +Tasha +Ana +Carissa +Kirsten +Krystal +Robyn +Sabrina +Tricia +Annette +Carol +Donna +Meagan +Priscilla +Ruth +Sonia +Adrienne +Allyson +Brandi +Jacquelyn +Jenny +Kristy +Nichole +Virginia +Cindy +Eileen +Elisabeth +Hannah +Jenna +Johanna +Whitney +Alana +Bianca +Bonnie +Brittany +Carmen +Evelyn +Keri +Kristi +Martha +Tracey +Abby +Anita +Carly +Christy +Janice +Jeanette +Kelley +Kendra +Latasha +Maureen +Regina +Rosa +Rose +Trisha +Alisha +Alyson +Charlene +Christie +Desiree +Elena +Felicia +Joanne +Kerri +Shelly +Sophia +Tamika +Tanisha +Tonya +Amie +Darcy +Karin +Meaghan +Ryan +Shana +Tania +Angel +Christa +Elisa +Hope +Jesse +Jody +Kellie +Kyle +Lara +Lea +Mandy +Nikki +Shauna +Sherry +Aisha +Angelina +Christen +Debra +Elissa +Francesca +Gretchen +Hilary +Jean +Jenifer +Jodi +Kim +Lakeisha +Luz +Marcie +Marilyn +Melody +Nikia +Nora +Olivia +Paige +Raquel +Tameka +Terri +Toni +Adriana +Alanna +Alisa +Angie +Antoinette +Corinne +Daisy +Damaris +Devon +Eliza +Esther +Gabrielle +Gloria +Jaimie +Janelle +Justine +Kathy +Lee +Lillian +Lorraine +Lydia +Michael +Nadine +Rosemarie +Sandy +Sasha +Serena +Shawna +Sheila +Taina +Abbey +Alexandria +Annmarie +Audra +Betsy +Brandie +Chelsea +Dara +Darlene +Jacklyn +Janet +Janine +Jasmin +Joseph +Joy +Judith +Karla +Kelli +Kristie +Krystle +Lakisha +Larissa +Laurel +Leanne +Marcella +Marcia +Maritza +Melisa +Misty +Rita +Shelby +Shelley +Sherri +Sylvia +Tabitha +Wanda +Yesenia +Yvonne +Amelia +Angelica +Aubrey +Audrey +Autumn +Charlotte +Cherie +Claire +Claudia +Connie +Cristin +Daniel +Dianna +Dorothy +Eleanor +Eva +Glenda +Grace +Helen +Hillary +Irene +James +Jana +Jane +Jennie +Jolene +Josephine +Julianne +Karissa +Latisha +Leeann +Liza +Lourdes +Lucy +Maura +Mindy +Miriam +Moira +Monika +Olga +Rhonda +Rosemary +Shirley +Summer +Tiana +Vivian +Adrianne +Annie +Arlene +Ashlee +Ashleigh +Beatrice +Becky +Brenna +Brian +Briana +Brianna +Callie +Cassie +Celina +Chandra +Chantel +Clarissa +Corrine +Cortney +Dina +Elise +Elisha +Gabriella +Ivelisse +Ivette +Jason +Jesenia +Joann +Joyce +Juanita +Juliana +Justin +Kaitlin +Katy +Keisha +Kristal +Krystyna +Leticia +Madeline +Margot +Marisol +Marta +Maryann +Meghann +Mildred +Miranda +Myra +Noelle +Rhiannon +Sally +Shanna +Shavonne +Shayla +Shayna +Siobhan +Stacie +Tabatha +Tami +Tanika +Taylor +Tiffani +Tisha +Yahaira +Jennifer +Jessica +Melissa +Sarah +Nicole +Elizabeth +Amy +Amanda +Stephanie +Michelle +Heather +Rebecca +Lauren +Erin +Kelly +Emily +Lisa +Kimberly +Kristen +Christina +Danielle +Laura +Katherine +Rachel +Lindsay +Sara +Megan +Crystal +Christine +Tiffany +Shannon +Ashley +Kristin +Jamie +Kathryn +Allison +Mary +Andrea +Erica +Angela +Jacqueline +Stacey +Courtney +Tara +Catherine +Jillian +Meghan +Amber +Maria +Karen +Lindsey +Kathleen +Alicia +Julie +Katie +Dana +Vanessa +Diana +Melanie +Susan +Samantha +Alison +April +Julia +Jill +Kristina +Victoria +Carrie +Colleen +Margaret +Anna +Jaime +Marissa +Caitlin +Theresa +Erika +Michele +Pamela +Sandra +Dawn +Denise +Natalie +Cynthia +Kara +Renee +Jaclyn +Kate +Natasha +Alexis +Leah +Monica +Beth +Heidi +Stefanie +Bethany +Patricia +Ebony +Cassandra +Sharon +Stacy +Tracy +Alexandra +Carolyn +Cheryl +Meredith +Tina +Anne +Krystal +Katharine +Leslie +Molly +Tanya +Krista +Latoya +Barbara +Deborah +Diane +Holly +Linda +Monique +Nichole +Brooke +Katrina +Kerry +Marie +Tammy +Abigail +Bridget +Candice +Cara +Carla +Caroline +Kristy +Lori +Robin +Tamara +Teresa +Bonnie +Chelsea +Valerie +Alyssa +Carmen +Desiree +Gina +Melinda +Joanna +Marisa +Nina +Tracey +Aimee +Sabrina +Brandi +Brenda +Cristina +Jasmine +Jenny +Jocelyn +Nancy +Naomi +Shawna +Veronica +Ann +Brittany +Kaitlin +Rachael +Suzanne +Alissa +Brandy +Candace +Charlene +Jacquelyn +Kari +Kelley +Laurie +Lynn +Maureen +Morgan +Priscilla +Yolanda +Amie +Casey +Kendra +Kristine +Paula +Rebekah +Ana +Audrey +Deanna +Elena +Elisabeth +Latasha +Lesley +Miranda +Robyn +Sheena +Carissa +Cindy +Debra +Eileen +Felicia +Janet +Jennie +Joanne +Marilyn +Meagan +Tamika +Taylor +Wendy +Angelica +Carly +Dorothy +Evelyn +Jane +Jesse +Joy +Kelli +Kellie +Kerri +Kristie +Lara +Mandy +Sheila +Whitney +Christa +Hannah +Jeanette +Jenna +Johanna +Jolene +Raquel +Sally +Shauna +Sophia +Tania +Tricia +Brianna +Claire +Gretchen +Jean +Lacey +Laurel +Rosa +Sherry +Traci +Virginia +Abby +Adrienne +Aisha +Alisha +Autumn +Carol +Cassie +Elisa +Elissa +Ellen +Iris +Jordan +Maura +Miriam +Nikki +Sasha +Tiffani +Toccara +Toni +Yvonne +Belinda +Christen +Christy +Darlene +Donna +Emma +Fallon +Frances +Gillian +Gloria +Jessie +Joyce +Kirsten +Krystle +Latisha +Lea +Leigh +Lydia +Martha +Meaghan +Michael +Patrice +Regina +Rose +Ruth +Shelby +Shelley +Sherri +Sonia +Stacie +Sylvia +Trisha +Angelina +Annie +Ariana +Audra +Brianne +Chrystal +Cristin +Daisy +Faith +Hilary +Irene +Jade +Jessenia +Jodi +Jody +Judith +Justine +Kasey +Keri +Madeline +Noelle +Roxanne +Shana +Tasha +Tia +Tiana +Tonya +Alana +Alice +Anastasia +Antoinette +Chelsey +Christin +Darcy +Dayna +Deirdre +Elaine +Eva +Katy +Kira +Kristi +Larissa +Leanne +Liana +Liza +Lyndsey +Madelyn +Marcy +Marla +Marta +Maryann +Mia +Nadine +Olivia +Siobhan +Tabitha +Tammie +Taryn +Yajaira +Alexandria +Alyson +Anita +Annette +Bianca +Brett +Brynn +Caryn +Charlotte +Cheri +Dena +Devin +Devon +Dianna +Genevieve +Grace +Helen +Jana +Janelle +Janice +Janine +Jenilee +Joan +Josephine +Karin +Kayla +Kia +Kimberlee +Leila +Lillian +Marci +Marcia +Maribel +Maryellen +Maya +Melody +Nora +Pauline +Rosanna +Rosemarie +Sandy +Serena +Sheri +Silvia +Stella +Vicki +Adriana +Agatha +Alexa +Amelia +Angel +Annmarie +Aubrey +Briana +Camille +Casandra +Cathleen +Chanel +Cherie +Christie +Clara +Claudia +Corinne +Dina +Elana +Elisha +Emilie +Hayley +Ivette +Jacklyn +James +Jason +Jeannine +Joann +Juliana +Kendall +Kori +Kyle +Lisette +Luz +Lyndsay +Maegan +Mara +Marcie +Marianne +Marina +Marlena +Melisa +Misty +Monika +Nadia +Norma +Randi +Rita +Roseanne +Rosemary +Ruby +Ryan +Sage +Samara +Shanna +Thea +Tyesha +Venus +Yvette +Zoe +Jennifer +Jessica +Sarah +Nicole +Melissa +Elizabeth +Stephanie +Ashley +Heather +Amanda +Michelle +Lauren +Amy +Rebecca +Erin +Kelly +Kimberly +Danielle +Katherine +Kristen +Megan +Christina +Laura +Lisa +Rachel +Emily +Sara +Erica +Lindsay +Crystal +Jamie +Tiffany +Meghan +Kristin +Shannon +Christine +Kathryn +Lindsey +Mary +Samantha +Kathleen +Vanessa +Allison +Katie +Catherine +Courtney +Amber +Andrea +Angela +Jacqueline +Julie +Caitlin +Maria +Tara +Stacy +Alicia +Karen +Stacey +Victoria +Dana +Jillian +Julia +Alison +Holly +Gina +Colleen +Diana +Natasha +April +Kara +Jaclyn +Susan +Sandra +Alexis +Anna +Anne +Melanie +Kristina +Bethany +Carrie +Erika +Leah +Natalie +Pamela +Patricia +Stefanie +Veronica +Abigail +Jaime +Meredith +Barbara +Chelsea +Jill +Kate +Marissa +Monica +Tina +Aimee +Dawn +Theresa +Alexandra +Cassandra +Cynthia +Desiree +Renee +Tanya +Tracy +Ann +Carolyn +Michele +Robin +Denise +Joanna +Krystal +Margaret +Leslie +Valerie +Latoya +Sharon +Cara +Marisa +Morgan +Casey +Cheryl +Diane +Jasmine +Adrienne +Brittany +Caroline +Deanna +Heidi +Carmen +Candice +Katharine +Krista +Ebony +Jenny +Katrina +Marie +Melinda +Monique +Tammy +Cristina +Lori +Brandy +Deborah +Jenna +Kaitlin +Molly +Carissa +Hannah +Jocelyn +Kari +Nina +Rachael +Sheena +Alisha +Beth +Bonnie +Maureen +Nichole +Alyssa +Bridget +Linda +Meagan +Nancy +Teresa +Christie +Eileen +Jacquelyn +Jeanette +Lynn +Rebekah +Suzanne +Tamara +Amie +Ana +Elisabeth +Kayla +Kristy +Patrice +Shana +Brandi +Dorothy +Janelle +Janet +Jennie +Johanna +Kerry +Kyle +Robyn +Ruth +Sabrina +Brenda +Carly +Charlene +Elaine +Hilary +Joy +Kelley +Kristine +Martha +Whitney +Ashleigh +Candace +Carla +Donna +Fallon +Jane +Katelyn +Keri +Krystle +Miranda +Wendy +Yvonne +Abby +Allyson +Anita +Carol +Charlotte +Debra +Kelli +Kendra +Laurie +Luz +Marquita +Regina +Tasha +Taylor +Tricia +Alana +Alissa +Angelica +Chrystal +Corinne +Daisy +Emma +Kerri +Lesley +Marilyn +Maura +Meaghan +Rosa +Angelina +Ariel +Brooke +Darcy +Elisa +Ellen +Felicia +Helen +Jade +Janine +Kirsten +Kristi +Lydia +Mandy +Marisol +Naomi +Olivia +Priscilla +Rose +Sherry +Tabitha +Tamika +Tanisha +Taryn +Virginia +Aisha +Bianca +Cassie +Christy +Cindy +Claire +Corey +Elena +Elyse +Frances +Gabrielle +Grace +Jessie +Justine +Karina +Kathy +Kellie +Melody +Nora +Paula +Ryan +Shaina +Sherri +Sonia +Sophia +Stacie +Tonya +Angie +Ashlee +Esther +Gloria +Haley +Hillary +Janice +Jodi +Jolene +Maggie +Raquel +Sasha +Shauna +Shawna +Sheila +Tatiana +Trisha +Adriana +Alanna +Alyson +Amelia +Audrey +Bernadette +Beverly +Brianne +Chanel +Christin +Daniela +Elise +Eliza +Faith +Georgia +Iris +Jayme +Joann +Judith +Krystina +Lacey +Lea +Leigh +Lillian +Lucy +Marjorie +Maryann +Michael +Nikki +Paige +Shameka +Shelley +Shelly +Sofia +Tania +Toni +Tracey +Yolanda +Yvette +Angel +Annemarie +Aubrey +Brianna +Chantel +Chelsey +Clarissa +Damaris +Elissa +Eva +Jacklyn +Jasmin +Jean +Jeffrey +Joan +Joanne +Jordan +Kasey +Kelsey +Kristyn +Latasha +Lee +Lily +Loren +Lyndsey +Marianna +Marianne +Maritza +Noel +Noemi +Quiana +Rachelle +Rhonda +Rita +Rosemary +Serena +Shanna +Siobhan +Tessa +Zoe +Aileen +Alexandria +Alice +Annmarie +Antoinette +Antonia +Ariana +Becky +Betty +Caitlyn +Christa +Christopher +Connie +Daniel +Deirdre +Devon +Dianna +Evelyn +Faye +Gillian +Gretchen +Irene +Ivy +Jeanna +Jeannette +Jeannine +Jesse +Jessenia +Josephine +Julianne +Justina +Kaitlyn +Karla +Karly +Keisha +Kim +Kristal +Lakeisha +Lakisha +Latosha +Leanne +Lissette +Lourdes +Madeline +Mallory +Margo +Marlene +Maya +Mercedes +Mia +Milagros +Monika +Nadine +Rosemarie +Shayla +Simone +Taina +Tameka +Terri +Jennifer +Jessica +Sarah +Melissa +Nicole +Ashley +Elizabeth +Stephanie +Amanda +Danielle +Lauren +Heather +Michelle +Laura +Emily +Amy +Megan +Rebecca +Kelly +Christina +Katherine +Erin +Rachel +Kimberly +Kristen +Lisa +Lindsay +Meghan +Christine +Tiffany +Allison +Shannon +Caitlin +Crystal +Kathryn +Kristin +Alicia +Erica +Jacqueline +Sara +Jenna +Andrea +Jamie +Lindsey +Courtney +Samantha +Amber +Katie +Victoria +Angela +Kathleen +Mary +Julie +Vanessa +Catherine +Tara +Karen +Brittany +Maria +Alexandra +Diana +Holly +Alexis +Latoya +Chelsea +Stacey +Dana +Kara +Michele +Stefanie +Jillian +Julia +Alison +Bethany +Kristina +Natasha +Cassandra +Joanna +Kate +Melanie +Carolyn +Gina +Leah +Anna +April +Jaclyn +Erika +Margaret +Patricia +Stacy +Alyssa +Caroline +Colleen +Natalie +Sandra +Susan +Tracy +Jaime +Monica +Rachael +Renee +Meredith +Pamela +Theresa +Valerie +Dawn +Ebony +Tina +Katrina +Anne +Marissa +Monique +Carrie +Sheena +Tanya +Cynthia +Denise +Jacquelyn +Jasmine +Jill +Casey +Heidi +Robin +Veronica +Barbara +Hannah +Cara +Krista +Morgan +Ann +Candice +Cristina +Deborah +Krystal +Melinda +Abigail +Kaitlin +Katelyn +Nichole +Nina +Tamara +Beth +Desiree +Leslie +Molly +Shana +Brandi +Brenda +Brianna +Brooke +Kendra +Linda +Christie +Eileen +Katharine +Meagan +Diane +Marie +Marisa +Sharon +Suzanne +Teresa +Alissa +Carissa +Jenny +Kristi +Kristine +Maureen +Nancy +Robyn +Taylor +Whitney +Audrey +Carly +Dominique +Jocelyn +Kirsten +Lori +Rebekah +Alisha +Carmen +Ellen +Grace +Jane +Johanna +Kelley +Kristy +Leigh +Adrienne +Aimee +Bridget +Carla +Carol +Claire +Deanna +Evelyn +Kari +Meaghan +Sabrina +Tabitha +Tracey +Cheryl +Debra +Janet +Kerry +Laurie +Regina +Sonia +Tammy +Virginia +Abby +Brandy +Charlene +Cindy +Elise +Hillary +Jodi +Joy +Kaitlyn +Keri +Olivia +Priscilla +Shauna +Wendy +Alana +Amelia +Bianca +Bonnie +Corey +Devon +Donna +Kyle +Mallory +Naomi +Sherri +Yvonne +Alexandria +Ana +Elena +Faith +Gretchen +Janine +Jennie +Jessie +Kelli +Kelsey +Krystle +Paula +Rose +Ruth +Ryan +Shanna +Sherry +Allyson +Angelica +Caitlyn +Christy +Elyse +Felicia +Hilary +Hope +Jade +Jasmin +Kayla +Latasha +Martha +Shayna +Simone +Siobhan +Sophia +Toni +Tonya +Yolanda +Angel +Ariana +Candace +Daniela +Elisabeth +Eva +Jeanette +Justine +Karla +Lara +Laurel +Lydia +Mackenzie +Miranda +Nora +Paige +Patrice +Raquel +Sasha +Shawna +Sheila +Tricia +Alyson +Amie +Ariel +Ashlee +Ashleigh +Brianne +Darcy +Dina +Dorothy +Emma +Gabrielle +James +Janelle +Jean +Judith +Kerri +Kirby +Lacey +Leanne +Madeline +Maggie +Maryann +Maura +Michael +Nadine +Shelby +Sheri +Stacie +Tanisha +Taryn +Tasha +Tatiana +Alexander +Alice +Anastasia +Antoinette +Charlotte +Chrystal +Claudia +Corinne +Dena +Elissa +Eliza +Emilie +Francesca +Genevieve +Helen +Jesse +Jodie +Josephine +Karissa +Kellie +Kristie +Larissa +Leticia +Lorraine +Lynn +Mayra +Melody +Noelle +Shanell +Shari +Shelley +Tania +Angelina +Athena +Blair +Cathryn +Chanel +Daisy +Damaris +Elaine +Ericka +Hollie +Irene +Jeannine +Joan +Juanita +Julianne +Kali +Kathy +Kristyn +Lea +Lissette +Lucia +Luz +Lyndsay +Lyndsey +Mara +Marcia +Mariah +Marina +Marquita +Matthew +Miriam +Nikki +Rachelle +Rosa +Rosemary +Sandy +Shaina +Shelly +Sylvia +Tanesha +Trisha +Trista +Adrianne +Aileen +Anita +Annette +Arlene +Autumn +Becky +Bobbie +Brandie +Breanne +Brenna +Catrina +Christa +Christian +Danelle +Darlene +Destiny +Elisha +Fallon +Gillian +Hallie +Iris +Isabel +Jacklyn +Jaimee +Jena +Joann +Joanne +Kathrine +Katina +Kim +Kira +Lakisha +Leann +Lee +Loren +Marjorie +Mia +Mindy +Roxanne +Serena +Shanika +Shante +Shantel +Shawn +Shira +Taisha +Tameka +Tamika +Tia +Tiana +Viviana +Xiomara +Zoe +Jessica +Jennifer +Ashley +Nicole +Amanda +Sarah +Stephanie +Melissa +Elizabeth +Lauren +Heather +Christina +Danielle +Amy +Megan +Rachel +Katherine +Emily +Laura +Kelly +Michelle +Rebecca +Erin +Kimberly +Christine +Erica +Kristen +Lisa +Samantha +Caitlin +Lindsay +Shannon +Allison +Sara +Brittany +Crystal +Jamie +Kathryn +Meghan +Kristin +Tiffany +Kathleen +Mary +Amber +Katie +Kristina +Vanessa +Catherine +Angela +Alexandra +Andrea +Alicia +Courtney +Jacqueline +Jenna +Lindsey +Victoria +Julie +Maria +Krystal +Leah +Alison +Kaitlin +Julia +Tara +Jaclyn +Dana +Alyssa +Colleen +Karen +Anna +Margaret +Holly +Monica +Natasha +Stacey +Whitney +Cassandra +Jillian +Kate +Krystle +Alexis +April +Chelsea +Diana +Carolyn +Pamela +Rachael +Bethany +Caroline +Cristina +Patricia +Valerie +Gina +Kara +Latoya +Melanie +Michele +Stacy +Susan +Anne +Cynthia +Natalie +Erika +Jaime +Renee +Tanya +Tracy +Katharine +Marissa +Meredith +Nichole +Denise +Jasmine +Katelyn +Heidi +Monique +Tina +Krista +Leslie +Kaitlyn +Mallory +Katrina +Stefanie +Desiree +Maureen +Meagan +Cara +Casey +Dominique +Joanna +Sheena +Barbara +Nancy +Robin +Abigail +Bridget +Brooke +Dawn +Linda +Marie +Nina +Shana +Theresa +Carly +Ebony +Jessie +Morgan +Sandra +Diane +Jill +Johanna +Marisa +Sharon +Suzanne +Alisha +Candice +Carmen +Carrie +Kelley +Veronica +Adrienne +Aimee +Alissa +Claire +Deanna +Jocelyn +Kristy +Lori +Melinda +Molly +Teresa +Brenda +Felicia +Hannah +Kerry +Tammy +Beth +Cheryl +Kristine +Carla +Eileen +Emma +Justine +Kerri +Taryn +Taylor +Bonnie +Brittney +Christy +Elise +Janelle +Jeanette +Meaghan +Rebekah +Wendy +Elisabeth +Ellen +Julianne +Kelsey +Lynn +Amelia +Ann +Candace +Cassie +Jenny +Kirsten +Sheila +Sophia +Tamara +Amie +Caitlyn +Charlotte +Kellie +Miranda +Robyn +Shauna +Shayna +Tanisha +Angelica +Ashlee +Brandi +Brandy +Charlene +Eliza +Frances +Iris +Jane +Jodi +Jordan +Kyle +Larissa +Leigh +Madeline +Sabrina +Shanna +Stacie +Tabitha +Alana +Brianna +Carissa +Cortney +Faith +Hilary +Jacquelyn +Jenifer +Joanne +Kelli +Keri +Kira +Laurel +Lea +Nora +Patrice +Rosa +Shawna +Tania +Allyson +Alyson +Ana +Angel +Ashleigh +Carol +Daisy +Elyse +Gloria +Janet +Kristie +Luz +Maggie +Rose +Sonia +Trisha +Virginia +Alexandria +Arielle +Camille +Deborah +Debra +Devon +Eva +Evelyn +Gabrielle +Hillary +Jesse +Kayla +Lena +Lillian +Marisol +Naomi +Noelle +Paige +Paula +Priscilla +Raquel +Rosemary +Ruth +Sally +Serena +Tasha +Annette +Antoinette +Britney +Celia +Chelsey +Cindy +Darlene +Dianna +Donna +Francesca +Giselle +Haley +Helen +Hope +Jade +Jeannette +Jennie +Justina +Laurie +Lydia +Natalia +Olivia +Shelley +Toni +Tonya +Tricia +Yvonne +Adriana +Aileen +Alisa +Angelina +Annemarie +Antonia +Ariel +Ashly +Audrey +Blair +Breanna +Christie +Corinne +Damaris +Elena +Jacklyn +Janice +Juliana +Karissa +Kendra +Marianne +Maura +Mia +Michael +Regina +Rita +Ryan +Shaina +Shari +Shelly +Sheri +Sherrie +Summer +Sydney +Yaritza +Alaina +Alycia +Annmarie +Aubrey +Autumn +Bianca +Brenna +Brianne +Catrina +Chanel +Chantel +Christa +Clarissa +Constance +Cory +Daniella +Darcy +David +Grace +James +Jana +Jasmin +Jayme +Jeanne +Jeffrey +Jena +Karla +Lacey +Latasha +Lissette +Liza +Maegan +Marla +Marlene +Melody +Mindy +Nathalie +Nicolle +Nikki +Nikole +Noel +Rhiannon +Roxanne +Shanell +Shelby +Sherri +Shirley +Sierra +Sofia +Sonya +Tabatha +Tamika +Tessa +Tracey +Traci +Wanda +Abbey +Alexander +Anastasia +Annie +Ariana +Avery +Betsy +Briana +Cameron +Caryn +Chastity +Cheri +Cherie +Christen +Christopher +Ciara +Colette +Connie +Daniela +Deidre +Eleanor +Elissa +Ericka +Fallon +Francine +Hailey +India +Irene +Ivy +Joy +Joyce +Kari +Karin +Karina +Katelynn +Kathy +Katiria +Kristi +Krysta +Latisha +Leanna +Lee +Lesley +Lily +Lora +Mandy +Marci +Marina +Martha +Meghann +Melisa +Misty +Nadine +Octavia +Phoebe +Rosemarie +Sarai +Siobhan +Suzanna +Sylvia +Trista +Vivian +Xiomara +Yahaira +Yajaira +Jessica +Jennifer +Ashley +Amanda +Sarah +Nicole +Stephanie +Lauren +Melissa +Elizabeth +Danielle +Heather +Michelle +Kelly +Katherine +Rebecca +Emily +Christina +Amy +Kimberly +Samantha +Megan +Laura +Brittany +Rachel +Kristen +Erica +Erin +Allison +Christine +Sara +Lindsay +Caitlin +Crystal +Shannon +Jamie +Kathryn +Lisa +Tiffany +Amber +Courtney +Meghan +Vanessa +Alexandra +Catherine +Katie +Kathleen +Jacqueline +Lindsey +Mary +Alicia +Julie +Jenna +Kristina +Alison +Jillian +Cassandra +Angela +Kristin +Maria +Margaret +Whitney +Victoria +Andrea +Marissa +Kaitlin +Anna +Chelsea +Alyssa +Patricia +Caroline +Natalie +Colleen +Kara +Mallory +Stacey +Holly +Julia +Tara +Natasha +Erika +Dana +Gina +Melanie +Carolyn +Jasmine +Kaitlyn +Krystal +Diana +Krista +Karen +Leah +Jaclyn +Casey +Kate +Katelyn +Molly +Monica +Rachael +Bethany +Michele +Anne +Veronica +Cristina +Melinda +Alexis +April +Jaime +Abigail +Katrina +Morgan +Stefanie +Brittney +Cara +Nichole +Emma +Leslie +Sandra +Theresa +Cynthia +Stacy +Susan +Tracy +Brooke +Felicia +Justine +Latoya +Marie +Marisa +Shana +Denise +Dominique +Jocelyn +Kelley +Kelsey +Meagan +Meredith +Taylor +Ann +Barbara +Claire +Jill +Katharine +Pamela +Sabrina +Deborah +Hannah +Joanna +Sharon +Cheryl +Deanna +Julianne +Aimee +Kayla +Kerry +Monique +Renee +Tanya +Alisha +Allyson +Ashlee +Brianna +Carrie +Hilary +Kristine +Madeline +Tamara +Tina +Candice +Jordan +Rebekah +Alana +Christa +Krystle +Latasha +Lynn +Meaghan +Teresa +Virginia +Carla +Dawn +Desiree +Heidi +Jacquelyn +Kendra +Kristi +Kristy +Maureen +Nina +Robin +Valerie +Beth +Diane +Sasha +Tonya +Brenda +Bridget +Carly +Elyse +Jessie +Kellie +Keri +Leigh +Suzanne +Tabitha +Tracey +Abby +Ana +Candace +Charlene +Ebony +Hillary +Jasmin +Sade +Tasha +Alexa +Amie +Brianne +Britney +Caitlyn +Charlotte +Chelsey +Christie +Corey +Ellen +Janice +Nancy +Robyn +Sheila +Toni +Alissa +Amelia +Bonnie +Brandy +Carissa +Cassie +Chanel +Francesca +Grace +Helen +Janet +Kayleigh +Sheena +Taryn +Trisha +Carmen +Cindy +Donna +Eileen +Evelyn +Jenny +Leanne +Margarita +Maura +Rosa +Rose +Savannah +Annmarie +Carol +Corinne +Daniella +Elisabeth +Gabrielle +Jeannette +Kasey +Kira +Lori +Naomi +Noelle +Regina +Ruth +Shante +Shelby +Sierra +Stacie +Sylvia +Tammy +Tatiana +Adrienne +Aileen +Ariana +Ariel +Ashleigh +Athena +Briana +Christy +Claudia +Darcy +Eleanor +Elise +Jeanette +Jena +Jennie +Johanna +Joy +Kari +Karissa +Lara +Latisha +Linda +Loren +Lydia +Madison +Michaela +Olivia +Priscilla +Shauna +Sonya +Tania +Tricia +Wendy +Yolanda +Angelina +Ashely +Audra +Bianca +Brenna +Elaine +Elena +Elissa +Emilie +Ericka +Frances +Iris +Jaimie +Jane +Janine +Joanne +Karla +Katlyn +Keisha +Kelli +Kristyn +Kylie +Larissa +Laurie +Lucy +Lyndsay +Lynette +Nikita +Paige +Roxanne +Shawna +Sheri +Sophia +Alaina +Alexander +Alice +Alyson +Angelica +Audrey +Blair +Breanna +Casandra +Ciara +Coleen +Darlene +Denisha +Dorothy +Jean +Jodi +Josephine +Judith +Kerri +Marianne +Marlene +Melody +Michael +Nathalie +Nikki +Paula +Raquel +Rosemary +Ryan +Shaina +Shanae +Shanna +Tori +Yvette +Zoe +Aisha +Alisa +Alycia +Alyse +Anastasia +Annette +Annie +Arianna +Avery +Bailey +Brandi +Brian +Cecilia +Chantal +Chantel +Chantelle +Christen +Constance +Damaris +Devin +Dianna +Elana +Elisa +Faith +Haley +Halley +Hayley +Jacklyn +Janelle +Joyce +Juliana +Karyn +Kathy +Kendall +Krystina +Kyle +Liane +Maribel +Marisela +Marquita +Miranda +Rochelle +Rosanna +Shari +Shayna +Tia +Tiana +Yvonne +Aja +Alexandria +Alysia +Anita +Arielle +Autumn +Callie +Camille +Cierra +Clarissa +Cortney +Cory +Daisy +Daphne +Devon +Dina +Dominque +Elisha +Eliza +Eva +Fallon +Irene +Ivelisse +Jackie +Jade +Jayme +Jayne +Jesse +Jessenia +Joan +Justina +Kaitlynn +Kirsten +Kyla +Kylee +Lacey +Lakeisha +Latavia +Leila +Lillian +Liza +Lorraine +Luz +Lynne +Maegan +Marilyn +Marisol +Marsha +Mckenzie +Meghann +Mercedes +Mia +Monika +Natalia +Paris +Rachelle +Rita +Rosemarie +Sandy +Serena +Shelly +Sherri +Sherry +Shirley +Simone +Siobhan +Sonia +Sonja +Tiffani +Jessica +Ashley +Amanda +Jennifer +Sarah +Nicole +Stephanie +Melissa +Elizabeth +Lauren +Emily +Danielle +Samantha +Katherine +Heather +Christina +Rebecca +Michelle +Laura +Brittany +Kelly +Rachel +Megan +Kimberly +Caitlin +Erin +Kristen +Amy +Erica +Sara +Allison +Christine +Lindsay +Alexandra +Shannon +Meghan +Lisa +Amber +Kathryn +Courtney +Tiffany +Alicia +Alyssa +Victoria +Katie +Crystal +Vanessa +Catherine +Chelsea +Jacqueline +Lindsey +Jamie +Jenna +Andrea +Julie +Kathleen +Kayla +Mary +Kristin +Kristina +Julia +Whitney +Maria +Anna +Monica +Angela +Kara +Marissa +Caroline +Jaclyn +Jillian +Kaitlyn +Tara +Cassandra +Kaitlin +Dana +Melanie +Margaret +Kate +Natasha +Stacey +Katelyn +Natalie +Alison +Gina +Casey +Erika +Kelsey +Colleen +Diana +Leah +Hannah +Krista +Jasmine +Molly +Veronica +Denise +Emma +April +Desiree +Susan +Cynthia +Morgan +Karen +Krystal +Patricia +Mallory +Michele +Renee +Stefanie +Taylor +Alexis +Carolyn +Valerie +Yesenia +Abigail +Joanna +Meredith +Sabrina +Felicia +Jacquelyn +Rachael +Anne +Bethany +Brianna +Katrina +Monique +Sandra +Sasha +Stacy +Tanya +Brittney +Carly +Meagan +Theresa +Carrie +Dominique +Holly +Jocelyn +Justine +Kerry +Caitlyn +Jill +Nichole +Barbara +Cristina +Ebony +Leslie +Marisa +Melinda +Bridget +Brooke +Katharine +Pamela +Angelica +Kelley +Robin +Shana +Alisha +Ashlee +Cara +Christie +Elise +Elyse +Janet +Nina +Olivia +Carmen +Claire +Deanna +Jordan +Latoya +Linda +Suzanne +Tina +Alexandria +Anastasia +Christa +Ellen +Heidi +Hilary +Kristine +Madeline +Sharon +Brenda +Chantal +Dawn +Grace +Jaime +Jessie +Kendra +Sophia +Adrienne +Aimee +Alexa +Alyson +Charlotte +Chelsey +Gabrielle +Kirsten +Kristy +Lillian +Meaghan +Paige +Tracy +Allyson +Elena +Eva +Evelyn +Jane +Jenny +Marie +Miranda +Robyn +Alana +Amelia +Candice +Carla +Elaine +Francesca +Jesenia +Kari +Kellie +Krystle +Maureen +Nancy +Shanna +Teresa +Tracey +Ann +Briana +Jaimie +Johanna +Kayleigh +Kelli +Noelle +Rosemary +Shawna +Shayna +Tatiana +Ana +Aubrey +Audrey +Autumn +Candace +Damaris +Diane +Helen +Hillary +Kasey +Leigh +Shaina +Tammy +Angel +Beth +Britney +Deborah +Jasmin +Joanne +Keri +Krystina +Luz +Naomi +Rosa +Shauna +Tamara +Toni +Wendy +Annie +Betsy +Brittani +Cassie +Corey +Corinne +Darlene +Dina +Eliza +Faith +Iris +Janelle +Kerri +Latasha +Mackenzie +Martha +Michael +Raquel +Regina +Sade +Shayla +Sheila +Shelby +Stacie +Tania +Trisha +Yolanda +Alaina +Alisa +Angelina +Babygirl +Bonnie +Carissa +Cheryl +Elisa +Elisabeth +Frances +Jade +Janice +Jennie +Karina +Karla +Kendall +Kyle +Lynn +Rebekah +Shari +Tabitha +Virginia +Alanna +Alice +Alysha +Ariel +Bianca +Brandy +Carol +Cori +Cortney +Daisy +Deirdre +Donna +Eileen +Haley +Jacklyn +Jazmin +Jodi +Kristi +Kylie +Lena +Loren +Lori +Lydia +Madison +Marilyn +Maura +Nikita +Nikki +Nora +Paula +Savannah +Shirley +Sofia +Tanisha +Adriana +Alyse +Alysia +Arielle +Ashleigh +Camille +Cherelle +Cheyenne +Cindy +Daniela +Devin +Emilie +Ericka +Gabriela +Genevieve +Gloria +Janay +Jeanette +Juliana +Katelin +Kaylee +Kristie +Laurel +Laurie +Lea +Lucy +Lyndsay +Lyndsey +Maggie +Melody +Michaela +Monika +Nadia +Priscilla +Rachelle +Randi +Shelley +Sonia +Talia +Taryn +Tricia +Amie +Anita +Antoinette +Blair +Breanna +Cecilia +Chloe +Chrystal +Cierra +Clarissa +Dayna +Devon +Dorothy +Fallon +Hope +Jenifer +Jerrica +Jesse +Jodie +Joelle +Julianna +Juliet +Justina +Kathrine +Kathy +Kaylin +Krysta +Lara +Larissa +Latisha +Leanne +Lia +Lily +Marisol +Mia +Micaela +Miriam +Natalia +Roxanne +Ruth +Sherry +Sierra +Siobhan +Sophie +Tia +Tiana +Abby +Alessandra +Allie +Allyssa +Annette +Anthony +Ashely +Avery +Ayla +Baby +Bernadette +Beverly +Blanca +Brenna +Callie +Cassidy +Cassondra +Cathy +Celeste +Chanel +Charlene +Christen +Christian +Christin +Corrine +Delia +Dena +Giselle +Gladys +Glenda +Hayley +Ilana +Ivory +Janine +Jayme +Jazmine +Jean +Jeannette +Jonathan +Joy +Joyce +Judith +Julianne +Kacie +Kadie +Kaleigh +Katlyn +Kim +Kira +Kristyn +Kyla +Kyra +Liza +Lorraine +Lynda +Mandi +Mariah +Maritza +Marlene +Marta +Marybeth +Patrice +Reva +Rochelle +Rose +Ryan +Savanna +Sheri +Summer +Taisha +Tanika +Tasha +Tess +Yvette +Jessica +Ashley +Amanda +Sarah +Nicole +Jennifer +Stephanie +Elizabeth +Lauren +Samantha +Melissa +Emily +Brittany +Danielle +Katherine +Michelle +Rachel +Megan +Christina +Kelly +Laura +Rebecca +Heather +Kimberly +Caitlin +Alexandra +Sara +Erin +Kristen +Chelsea +Allison +Christine +Tiffany +Alyssa +Shannon +Courtney +Erica +Amy +Jacqueline +Kathryn +Lindsay +Amber +Lisa +Alicia +Vanessa +Victoria +Crystal +Kayla +Mary +Catherine +Jamie +Angela +Meghan +Kristin +Kaitlin +Margaret +Katelyn +Julia +Lindsey +Kathleen +Kelsey +Andrea +Jasmine +Katie +Jenna +Melanie +Kaitlyn +Molly +Kristina +Tara +Maria +Natalie +Cassandra +Erika +Jillian +Marissa +Anna +Dana +Hannah +Natasha +Alison +Julie +Kara +Monica +Rachael +Diana +Jaclyn +Leah +Colleen +Gina +Holly +Patricia +Brittney +Alexis +Caroline +Krystal +Morgan +Casey +Whitney +Carolyn +Susan +Abigail +Mallory +Monique +Theresa +Veronica +Emma +April +Bianca +Brianna +Cynthia +Krista +Taylor +Jacquelyn +Kelley +Nichole +Stacey +Anne +Claire +Kate +Renee +Justine +Karen +Michele +Sasha +Valerie +Alexandria +Bethany +Cristina +Kristine +Tina +Aimee +Angelica +Ann +Brooke +Olivia +Sabrina +Ashlee +Denise +Jocelyn +Leslie +Meaghan +Cara +Deanna +Ellen +Grace +Meredith +Alisha +Barbara +Carly +Joanna +Stefanie +Gabrielle +Paige +Pamela +Sandra +Tanya +Diane +Katrina +Kirsten +Latoya +Melinda +Charlotte +Elise +Kerry +Marie +Shana +Stacy +Anastasia +Briana +Carrie +Hillary +Kendra +Kristy +Meagan +Tracy +Felicia +Hilary +Jill +Kerri +Virginia +Abby +Alissa +Audrey +Carissa +Chelsey +Desiree +Dominique +Francesca +Jaime +Jordan +Nancy +Alyson +Amelia +Candice +Ebony +Jasmin +Marisa +Rebekah +Robin +Simone +Tamara +Teresa +Alexa +Ana +Bridget +Christie +Jennie +Linda +Roxanne +Adrienne +Autumn +Carmen +Haley +Jane +Joanne +Katharine +Kellie +Kira +Lori +Madeline +Nina +Shanice +Sharon +Shayna +Sophia +Alana +Aubrey +Babygirl +Beth +Caitlyn +Carla +Dawn +Gillian +Hayley +Heidi +Iris +Noelle +Priscilla +Rose +Shante +Chantel +Devon +Eileen +Elisabeth +Eliza +Elyse +Janelle +Jazmin +Jessenia +Kelli +Lacey +Laurie +Maureen +Miranda +Robyn +Shaina +Tracey +Adriana +Alisa +Angel +Ariana +Ariel +Brianne +Candace +Christa +Cindy +Darcy +Evelyn +Faith +Jenny +Johanna +Julianne +Karissa +Kayleigh +Larissa +Lauryn +Lynn +Mackenzie +Marilyn +Nadine +Raquel +Sheila +Tasha +Yesenia +Alyse +Angelina +Ashleigh +Brenda +Cheryl +Chloe +Clarissa +Dina +Elena +Elisa +Helen +Isabel +Janet +Karla +Kasey +Kristie +Krystle +Leanna +Leigh +Martha +Michaela +Paula +Ruth +Ryan +Shanna +Shelby +Sonia +Suzanne +Toni +Alexander +Allyson +Alysia +Arielle +Brandy +Chantal +Corey +Corinne +Daisy +Damaris +Daniela +Daniella +Elaine +Eleanor +Frances +Janice +Joan +Kylie +Liza +Luz +Maggie +Marlene +Monika +Nora +Savannah +Sonya +Tammy +Tatiana +Alaina +Alice +Anita +Ashely +Asia +Bonnie +Britney +Constance +Dayna +Dorothy +Ericka +Eva +Gabriella +Gloria +Juliana +Kari +Keri +Kristi +Lorraine +Lydia +Maura +Melisa +Melody +Michael +Patrice +Regina +Rosa +Staci +Sydney +Tabitha +Tamika +Taryn +Tiara +Trisha +Yolanda +Alessandra +Annette +Antoinette +Bailey +Beatriz +Brittni +Cassidy +Charlene +Christy +Deborah +Devin +Elisha +Genevieve +Hanna +Hope +Irene +Ivelisse +Jacklyn +Jeanette +Jeannette +Jenifer +Josephine +Katelynn +Kristyn +Lee +Lillian +Lucy +Lyndsey +Madison +Mckenzie +Mercedes +Nadia +Randi +Rochelle +Shawna +Shayla +Tanisha +Wendy +Abbey +Allegra +Amaris +Brandi +Carol +Casandra +Cassie +Chelsie +Christin +Cierra +Daniel +Debra +Deja +Eleni +Franchesca +Geraldine +Gladys +Jackie +Jade +Jaimie +Janay +Jayme +Jazmine +Jessie +Jodi +Joelle +Joyce +Julianna +Julissa +Karyn +Kaylee +Krystyna +Latasha +Mandy +Marcella +Marianne +Maritza +Miriam +Naomi +Natalia +Richelle +Sade +Serena +Sierra +Stephaine +Summer +Sylvia +Tania +Tiana +Tonya +Tricia +Tyler +Venessa +Vivian +Wanda +Yahaira +Zoe +Alycia +Amie +Annie +Antonia +Avery +Caprice +Christen +Christopher +Clara +Cori +Dannielle +Daphne +Darlene +Deirdre +Desirae +Donna +Emilia +Farah +Gabriela +Jalisa +Janessa +John +Joseph +Kala +Karli +Kaylyn +Kyla +Kyle +Kyra +Lea +Leann +Leanne +Leeann +Lily +Logan +Lora +Maeve +Maxine +Mindy +Nicolle +Portia +Sally +Shakia +Shanelle +Shauna +Sheena +Siobhan +Stacie +Stephany +Tessa +Thomas +Traci +Tyesha +Jessica +Ashley +Amanda +Sarah +Nicole +Stephanie +Brittany +Jennifer +Elizabeth +Lauren +Samantha +Emily +Melissa +Katherine +Danielle +Michelle +Christina +Rachel +Megan +Rebecca +Kelly +Heather +Laura +Chelsea +Alyssa +Kimberly +Kristen +Alexandra +Caitlin +Sara +Amy +Christine +Amber +Allison +Kayla +Erin +Victoria +Kathryn +Lisa +Erica +Alicia +Tiffany +Crystal +Lindsay +Jacqueline +Shannon +Courtney +Vanessa +Mary +Meghan +Cassandra +Jasmine +Hannah +Jamie +Catherine +Kathleen +Kelsey +Taylor +Kristin +Andrea +Jillian +Lindsey +Angela +Kaitlyn +Margaret +Marissa +Caroline +Katie +Melanie +Jenna +Julia +Katelyn +Alison +Anna +Kara +Kristina +Natalie +Molly +Abigail +Kaitlin +Leah +Julie +Bianca +Emma +Gabrielle +Erika +Gina +Maria +Brittney +Carolyn +Dana +Morgan +Brianna +Bethany +Diana +Monica +Veronica +Rachael +Colleen +Krystal +Natasha +Denise +Anne +Patricia +Alexis +Brooke +Jaclyn +Jordan +Cara +Olivia +Angelica +Casey +Felicia +Krista +April +Cynthia +Deanna +Tara +Holly +Valerie +Grace +Kate +Nichole +Briana +Desiree +Karen +Michele +Stacey +Cristina +Hilary +Justine +Sabrina +Whitney +Sasha +Bridget +Katrina +Meredith +Theresa +Alexandria +Joanna +Monique +Renee +Jacquelyn +Meagan +Nina +Paige +Stefanie +Chelsey +Jocelyn +Leslie +Susan +Alisha +Arielle +Carly +Ellen +Shaina +Allyson +Barbara +Melinda +Stacy +Alexa +Claire +Dominique +Mallory +Pamela +Virginia +Ana +Caitlyn +Haley +Kendra +Marie +Aimee +Carissa +Kylie +Madeline +Rebekah +Robin +Sandra +Sharon +Adriana +Julianne +Karina +Kristy +Miranda +Tanya +Deborah +Ebony +Jessie +Kristine +Shelby +Taryn +Tricia +Amelia +Ariel +Asia +Carrie +Hillary +Kiara +Robyn +Simone +Sophia +Suzanne +Tina +Alissa +Anastasia +Ashlee +Audrey +Brenda +Candace +Carla +Charlotte +Evelyn +Hope +Karissa +Latoya +Marisa +Mercedes +Shana +Shanice +Tamara +Ann +Ariana +Christie +Corinne +Jane +Katharine +Maureen +Meaghan +Nora +Adrienne +Alyson +Candice +Devon +Diane +Elyse +Jaime +Jasmin +Jenny +Naomi +Nikki +Paris +Tasha +Teresa +Abby +Annmarie +Britney +Carmen +Carol +Charlene +Christa +Elaine +Elisa +Elise +Eliza +Faith +Janelle +Katelynn +Kelley +Kellie +Lillian +Linda +Lydia +Mackenzie +Shayna +Tabitha +Tatiana +Tracy +Angelina +Britany +Chantel +Cheryl +Chloe +Devin +Gabriella +Gretchen +Helen +Jeanette +Joy +Kari +Kasey +Kristi +Luz +Michaela +Nancy +Noelle +Octavia +Raquel +Sheena +Trisha +Yesenia +Anita +Aubrey +Autumn +Babygirl +Brianne +Clare +Daniela +Elena +Esther +Hayley +Johanna +Kerri +Kerry +Kristie +Lea +Leanne +Lori +Rosa +Shawna +Sonya +Wendy +Alana +Brittani +Cindy +Cori +Eileen +Eleanor +Elisabeth +Eva +Gillian +Isabelle +Jade +Kelli +Kirsten +Leigh +Maura +Miriam +Nadia +Regina +Rose +Ruth +Shauna +Sheila +Sonia +Tiara +Aisha +Alessandra +Alice +Ashleigh +Breanna +Chanel +Chantal +Destiny +Donna +Ericka +Francesca +Heidi +Irene +Jaimie +Janice +Jazmine +Kaila +Kaitlynn +Kali +Kayleigh +Kyle +Larissa +Latasha +Leeann +Lily +Lucy +Marianne +Marilyn +Michael +Sierra +Siobhan +Tania +Toni +Yaritza +Adrianna +Alanna +Alisa +Alyse +Alysha +Alysia +Angel +Annemarie +Baby +Brandi +Brandy +Camille +Casandra +Cassondra +Celeste +Christopher +Christy +Ciara +Claudia +Dayna +Frances +India +Juliana +Karla +Kira +Krystle +Lacey +Laurel +Liza +Lyndsey +Lynn +Maegan +Marina +Maryann +Mia +Nadine +Natalia +Nicolle +Phoebe +Priscilla +Rochelle +Sally +Samatha +Stephany +Sylvia +Tammy +Tessa +Tia +Timothy +Tonya +Xiomara +Andrew +Annie +Arianna +Callie +Cassie +Cherelle +Corey +Daniella +Deena +Deirdre +Dianna +Eve +Fallon +Geraldine +Gloria +Hanna +Iliana +Janet +Janine +Jazmin +Jean +Jeanne +Jerica +Jerrica +Jessenia +Jill +Jodi +Josephine +Julianna +Kassandra +Katelin +Katlin +Katlyn +Keshia +Kiersten +Kristyn +Latisha +Lauryn +Mara +Margarita +Marisol +Marlena +Maya +Princess +Roxanne +Shaniece +Shante +Shaquana +Shelley +Staci +Sydney +Tanisha +Tracey +Zuleyka +Ada +Aileen +Alexander +Antoinette +Aurora +Bailey +Belinda +Beth +Betsy +Brenna +Brigid +Catrina +Cecilia +Celia +Charisse +Chelsie +Clara +Clarissa +Corrine +Damaris +Dawn +Deidre +Elana +Elissa +Georgia +Glenda +Isabel +Jaleesa +Jalisa +Janay +Janell +Jeannette +Jelisa +Jenifer +Jennie +Jesse +Joanne +Joselyn +Joyce +Judith +Justina +Kacie +Kathy +Kaylee +Keisha +Kyla +Lara +Latifah +Leila +Liana +Lorraine +Madeleine +Maggie +Maryellen +Melody +Milagros +Mindy +Norma +Patrice +Precious +Richard +Rosemary +Savannah +Serena +Shaniqua +Shayla +Sherri +Shirley +Tess +Whitley +Yessenia +Yolanda +Jessica +Ashley +Amanda +Nicole +Stephanie +Samantha +Sarah +Brittany +Jennifer +Emily +Lauren +Elizabeth +Melissa +Rebecca +Rachel +Danielle +Katherine +Chelsea +Michelle +Alyssa +Megan +Kelly +Christina +Heather +Laura +Victoria +Kayla +Alexandra +Courtney +Hannah +Sara +Amber +Amy +Erica +Kimberly +Erin +Christine +Kathryn +Caitlin +Kristen +Kelsey +Shannon +Tiffany +Allison +Jasmine +Meghan +Jacqueline +Mary +Alicia +Lisa +Kaitlyn +Taylor +Angela +Cassandra +Catherine +Andrea +Anna +Lindsay +Kathleen +Jamie +Molly +Jillian +Caroline +Olivia +Lindsey +Julia +Crystal +Maria +Melanie +Katelyn +Marissa +Vanessa +Kaitlin +Alison +Margaret +Jenna +Brittney +Emma +Katie +Kristin +Monica +Bianca +Julie +Paige +Abigail +Brianna +Natalie +Erika +Natasha +Kristina +Colleen +Jordan +Leah +Morgan +Carolyn +Alexa +Gabrielle +Dana +Jaclyn +Casey +Brooke +Gina +Alexis +Kara +Patricia +Alexandria +Cynthia +Veronica +Anne +Krystal +Bethany +Tara +Grace +Briana +Felicia +Sasha +Ariel +Carly +Claire +Rachael +Holly +Meagan +Angelica +Jocelyn +Joanna +Kate +Sabrina +Susan +Audrey +Karen +Madeline +Michele +Monique +Caitlyn +Krista +Leslie +Whitney +April +Denise +Desiree +Hillary +Kirsten +Marisa +Meredith +Stacey +Bridget +Chelsey +Deanna +Allyson +Candace +Ellen +Kelley +Shelby +Mallory +Adriana +Ann +Arielle +Carissa +Charlotte +Gabriella +Haley +Marie +Melinda +Nina +Alisha +Diana +Elise +Renee +Valerie +Amelia +Britney +Katharine +Meaghan +Stacy +Theresa +Jenny +Katrina +Latoya +Nichole +Sharon +Aimee +Ana +Ashleigh +Brenna +Justine +Kristine +Nancy +Robin +Sandra +Shawna +Stefanie +Tanya +Ashlee +Cristina +Genevieve +Hilary +Jacquelyn +Jaime +Jazmin +Kellie +Kendra +Kerry +Tatiana +Tracy +Cara +Dominique +Elisabeth +Priscilla +Rose +Sydney +Virginia +Brandi +Candice +Deborah +Devon +Ebony +Jaimie +Jessie +Kayleigh +Kristy +Lydia +Madison +Sierra +Tabitha +Teresa +Alissa +Alysha +Ariana +Barbara +Chloe +Eleanor +Hayley +Jade +Katlyn +Kaylee +Martha +Nadia +Nikki +Nora +Shana +Shauna +Sheila +Simone +Sophia +Trisha +Yesenia +Alana +Anastasia +Aubrey +Devin +Elena +Eliza +Elyse +Janelle +Jeanette +Johanna +Julianne +Kasey +Kristyn +Kylie +Liana +Lucy +Mercedes +Pamela +Robyn +Rosemary +Shaniqua +Taryn +Wendy +Alyson +Angelina +Annie +Bonnie +Brianne +Camille +Carmen +Carrie +Cheryl +Clare +Jazmine +Jill +Joanne +Keri +Krystle +Lacey +Laurel +Linda +Marilyn +Melody +Regina +Ryan +Shaina +Tina +Asia +Avery +Beth +Brittani +Carla +Carol +Chantel +Cheyenne +Christa +Christie +Corey +Corinne +Gillian +Kendall +Larissa +Maggie +Marlene +Mia +Michaela +Miranda +Naomi +Rosalie +Toni +Alaina +Alessandra +Alycia +Arianna +Bailey +Breanna +Brenda +Clara +Daniela +Deirdre +Diane +Dorothy +Eileen +Ericka +Francesca +Iris +Jane +Jesenia +Karina +Lea +Leigh +Lena +Lori +Mackenzie +Mariah +Raquel +Raven +Sonia +Tamara +Tanisha +Tiara +Alexander +Brandy +Casandra +Cassidy +Christopher +Christy +Destiny +Evelyn +Faith +Georgia +Heidi +Hope +Janet +Jeannette +Jennie +Jessenia +Juliana +Kaila +Kaleigh +Karissa +Katelynn +Keisha +Kristie +Kyle +Luz +Marina +Maura +Maya +Michael +Nadine +Natalia +Rochelle +Roxanne +Sandy +Shayna +Zoe +Alanna +Anita +Ashlyn +Autumn +Carley +Carolina +Cassie +Celeste +Ciara +Colby +Dawn +Dayna +Elisa +Elissa +Eva +Hanna +Isabel +Isamar +Janice +Jasmin +Jenifer +Jesse +Julianna +Kari +Kira +Krystina +Lara +Lillian +Lyndsay +Lynn +Margot +Maureen +Mayra +Nikita +Paula +Phylicia +Ruth +Savanna +Shirley +Siobhan +Stephany +Sylvia +Tammy +Tessa +Tianna +Yolanda +Abby +Adrienne +Alyse +Alysia +Angelia +Annemarie +Annette +Annmarie +Arlene +Babygirl +Blair +Blanca +Brittny +Bryanna +Cathryn +Cayla +Chelsie +Cindy +Constance +Cortney +Daniella +Debra +Donna +Emilee +Eryn +Esther +Frances +Genesis +Gianna +Giovanna +Gloria +Irene +Janay +Joelle +Jourdan +Justina +Kassandra +Kelli +Kyra +Leanna +Leanne +Lorraine +Madeleine +Margarita +Maritza +Noelle +Patrice +Rebekah +Samatha +Savannah +Shakira +Shanna +Shaquana +Shayla +Sonya +Stacie +Tia +Tricia +Yessenia +Zuleyka +Aileen +Alesha +Angel +Arianne +Ashely +Baby +Bridgette +Brielle +Brynn +Cali +Charlene +Chrystal +Cierra +Claudia +Coleen +Corrine +Daisy +Danica +Daria +Diamond +Doris +Elaine +Emilie +Gabriela +Geraldine +Giselle +Ivana +Janae +Jodi +Jolene +Josephine +Karin +Katelin +Kathrine +Keila +Kellyann +Kelsea +Kelsie +Kiara +Kirstin +Krysta +Krystin +Laurie +Lily +Liza +Mara +Marlena +Mollie +Monika +Phoebe +Precious +Priya +Rhiannon +Ruby +Shante +Shantel +Staci +Tameka +Tania +Tiana +Xiomara +Yvonne +Ashley +Jessica +Amanda +Sarah +Samantha +Stephanie +Emily +Jennifer +Nicole +Brittany +Lauren +Elizabeth +Katherine +Rebecca +Rachel +Melissa +Alyssa +Danielle +Christina +Chelsea +Megan +Michelle +Alexandra +Victoria +Kelly +Taylor +Heather +Kelsey +Kayla +Laura +Amber +Erin +Sara +Kristen +Erica +Hannah +Kimberly +Courtney +Caitlin +Mary +Meghan +Amy +Julia +Allison +Kathryn +Christine +Jasmine +Morgan +Shannon +Cassandra +Catherine +Lindsay +Lindsey +Alexis +Brianna +Molly +Anna +Jacqueline +Jillian +Olivia +Kathleen +Caroline +Shelby +Emma +Marissa +Kaitlyn +Natalie +Tiffany +Melanie +Andrea +Margaret +Lisa +Alicia +Jenna +Katie +Crystal +Julie +Mariah +Gabrielle +Maria +Alexa +Alison +Erika +Paige +Abigail +Jamie +Katelyn +Angela +Vanessa +Ariel +Kristina +Colleen +Rachael +Leah +Tara +Kaitlin +Bianca +Brooke +Casey +Kara +Kristin +Jaclyn +Brittney +Dana +Holly +Natasha +Carolyn +Haley +Jordan +Alexandria +Briana +Veronica +Angelica +Claire +Felicia +Mallory +Bethany +Deanna +Patricia +Carly +Diana +Jocelyn +Krystal +Monique +Valerie +Anne +Arielle +Joanna +Krista +Sabrina +Whitney +Cynthia +Karen +Meagan +Monica +Charlotte +Miranda +Bridget +Gina +Madeline +Michele +Theresa +Chelsey +Kate +Kiara +Desiree +Grace +Justine +Nichole +Allyson +Dominique +Jacquelyn +Katrina +Sasha +Devon +Ellen +Marisa +Nina +Renee +April +Cristina +Eliza +Hayley +Hillary +Jane +Kirsten +Stacey +Audrey +Cara +Denise +Iesha +Priscilla +Sydney +Tatiana +Virginia +Alisha +Ariana +Barbara +Corinne +Katharine +Mackenzie +Melinda +Cheyenne +Elise +Gabriella +Kerry +Tiana +Ashlee +Carissa +Linda +Meredith +Stacy +Teresa +Arianna +Chloe +Jill +Kayleigh +Noelle +Shayna +Abby +Amelia +Caitlyn +Ebony +Hilary +Jazmine +Karina +Karissa +Kellie +Marie +Raven +Rebekah +Ruth +Adriana +Brenda +Brenna +Elena +Julianne +Kristine +Lydia +Meaghan +Pamela +Sandra +Yolanda +Aubrey +Bonnie +Carmen +Carrie +Devin +Eileen +Hanna +Heidi +Jaime +Kaylee +Kendall +Kristy +Kylie +Leslie +Madeleine +Mia +Michaela +Rose +Susan +Suzanne +Tina +Adrianna +Aimee +Angelina +Ann +Asia +Charlene +Jade +Jessie +Juliana +Kendra +Lillian +Marina +Maya +Michael +Nancy +Nikki +Nora +Rachelle +Robyn +Sheila +Sophia +Sophie +Stefanie +Tanisha +Tanya +Zoe +Ana +Camille +Clare +Elyse +Gabriela +Isabel +Janine +Kaila +Karla +Kelli +Kristi +Kristie +Madison +Marilyn +Mercedes +Monika +Rosa +Ryan +Shaniqua +Sharon +Shauna +Shayla +Tasha +Alice +Brittni +Candace +Carla +Christa +Christie +Corrine +Diane +Elaine +Elisabeth +Francesca +Jenny +Kelley +Leigh +Lena +Liana +Maura +Moriah +Natalia +Shana +Simone +Tabitha +Taryn +Tiara +Toni +Xiomara +Alana +Alanna +Alissa +Alysha +Anita +Brittani +Cassidy +Cecilia +Ciara +Destiny +Hailey +Helen +Jazmin +Johanna +Katlyn +Larissa +Latoya +Lily +Marisol +Maureen +Melody +Micaela +Miriam +Nikole +Robin +Shaina +Tania +Tia +Candice +Chanel +Cheryl +Christy +Clarissa +Cristal +Deborah +Dorothy +Evelyn +Gianna +Gillian +Gloria +Irene +Isabelle +Jasmin +Kari +Kasey +Kassandra +Katelynn +Keri +Lara +Lea +Luz +Naomi +Nicolette +Paula +Serena +Sierra +Sonia +Tess +Tessa +Tracey +Tracy +Tyler +Aileen +Alessandra +Alina +Angel +Antoinette +Ashleigh +Ashlyn +Autumn +Bailey +Brandi +Breanna +Britney +Brittny +Cayla +Cindy +Daniela +Debra +Ericka +Faith +Frances +Genevieve +Hope +Iris +Isamar +Jaimie +Janelle +Janice +Josephine +Kaitlynn +Katy +Kelsie +Kerri +Krysten +Leanna +Leanne +Mara +Maxine +Paulina +Phoebe +Shawna +Siobhan +Sofia +Stacie +Tamara +Tamika +Tori +Trisha +Wendy +Alyson +Ashely +Avery +Beth +Breana +Bria +Bryanna +Carol +Cassie +Chantelle +Chastity +Christen +Claudia +Cody +Daisy +Dawn +Donna +Elissa +Eva +Fiona +Franchesca +Gretchen +Isabella +Jacklyn +Jaimee +Jazmyn +Joan +Justina +Kacey +Kailey +Kaleigh +Kiley +Kirstie +Kyra +Latisha +Laurie +Liza +Maritza +Marlene +Mollie +Norma +Patrice +Raquel +Shanae +Shanna +Sheena +Sylvia +Tianna +Vivian +William +Aisha +Alaina +Alejandra +Alex +Alexia +Alycia +Anastasia +Ashlie +Bernadette +Blair +Brianne +Britany +Callie +Celia +Celine +Chantel +Chelsie +Christopher +Corey +Deirdre +Dina +Domonique +Eden +Eliana +Elisha +Emerald +Gwendolyn +Ivana +Ivelisse +Jalisa +Jana +Jennie +Joanne +Joelle +Jolene +Jordyn +Julianna +Julissa +Kaela +Katiria +Kimberley +Kristyn +Kyle +Lucy +Lyndsay +Lynette +Lynn +Maegan +Marguerite +Mariana +Martina +Melisa +Mikayla +Nadia +Octavia +Riley +Rosemarie +Rosemary +Sadie +Shanay +Shantel +Shaquana +Sonya +Symone +Tierney +Tiffani +Yaritza +Yesenia +Yvonne +Zuleyka +Jessica +Ashley +Sarah +Amanda +Emily +Samantha +Nicole +Chelsea +Stephanie +Lauren +Elizabeth +Jennifer +Rachel +Brittany +Rebecca +Katherine +Victoria +Melissa +Danielle +Alexandra +Alyssa +Taylor +Michelle +Christina +Megan +Kayla +Kelly +Kelsey +Heather +Shannon +Erin +Kimberly +Amber +Courtney +Laura +Sara +Jasmine +Julia +Hannah +Allison +Erica +Kaitlyn +Amy +Olivia +Caitlin +Brianna +Kathryn +Lindsay +Molly +Christine +Jacqueline +Margaret +Meghan +Catherine +Mary +Cassandra +Caroline +Andrea +Morgan +Alexis +Alicia +Jenna +Kristen +Tiffany +Kathleen +Marissa +Shelby +Anna +Abigail +Casey +Maria +Gabrielle +Melanie +Vanessa +Crystal +Jillian +Alexa +Paige +Colleen +Kaitlin +Katelyn +Natalie +Jamie +Leah +Lindsey +Haley +Julie +Gina +Bianca +Briana +Brooke +Emma +Kara +Lisa +Anne +Erika +Katie +Madeline +Alexandria +Brittney +Shanice +Mariah +Alison +Angela +Deanna +Kristin +Kristina +Angelica +Dana +Natasha +Veronica +Carly +Grace +Cynthia +Monica +Rachael +Patricia +Tara +Chelsey +Jaclyn +Kassandra +Ariel +Carolyn +Chloe +Dominique +April +Gabriella +Hayley +Mackenzie +Sydney +Desiree +Jocelyn +Jordan +Katharine +Marisa +Theresa +Bridget +Cristina +Ellen +Hillary +Krista +Meredith +Sophia +Stacey +Bethany +Caitlyn +Charlotte +Claire +Kirsten +Miranda +Valerie +Karen +Monique +Mallory +Rebekah +Destiny +Diana +Kate +Susan +Holly +Jane +Linda +Meagan +Michele +Carissa +Katrina +Kaylee +Krystal +Alana +Alisha +Alissa +Ashlee +Cara +Felicia +Jenny +Joanna +Madison +Melinda +Nina +Renee +Rose +Sabrina +Sandra +Stacy +Tamara +Audrey +Barbara +Devin +Justine +Kaleigh +Tiana +Whitney +Ann +Breanna +Diamond +Elisabeth +Julianne +Karina +Kellie +Kiara +Leslie +Marie +Mercedes +Stefanie +Zoe +Adriana +Alanna +Allyson +Amelia +Brenna +Camille +Corinne +Elena +Elise +Francesca +Hilary +Jade +Kristi +Nichole +Pamela +Shayna +Ana +Angelina +Brandi +Britney +Cheyenne +Ciara +Hailey +Isabel +Jacquelyn +Jessie +Kendra +Lily +Natalia +Sasha +Sharon +Tanya +Tatiana +Ariana +Ebony +Faith +Karissa +Kerry +Kristine +Lydia +Sierra +Tabitha +Teresa +Abby +Ashleigh +Cassidy +Denise +Elaine +Evelyn +Juliana +Kelley +Michaela +Naomi +Ruth +Shayla +Tessa +Alice +Anastasia +Arianna +Asia +Aubrey +Bailey +Brenda +Cassie +Clare +Elissa +Eliza +Janelle +Kaila +Kasey +Kendall +Lillian +Lucy +Nancy +Raven +Tina +Trisha +Yesenia +Aimee +Alessandra +Alexia +Clarissa +Daniella +Deborah +Francheska +Hanna +Helen +Iesha +Jasmin +Jennie +Kayleigh +Kiana +Kylie +Meaghan +Melody +Mollie +Tess +Tyler +Virginia +Adrienne +Aisha +Anita +Carmen +Devon +Isabelle +Jill +Julianna +Kelsie +Latoya +Maura +Maureen +Maya +Mia +Michael +Raquel +Riley +Robin +Sally +Shanell +Sheila +Tori +Alysha +Annie +Annmarie +Autumn +Avery +Babygirl +Bonnie +Brandy +Bria +Bryanna +Candace +Carla +Casandra +Cindy +Emilia +Fallon +Gianna +Jaime +Jazmine +Jordyn +Kailey +Kerri +Krysta +Kyla +Kyle +Kyra +Lara +Lea +Louise +Luz +Maggie +Marina +Marlena +Priscilla +Sophie +Taryn +Tracy +Tricia +Yaritza +Alina +Alyson +Angelique +Antoinette +Arielle +Ashlyn +Beth +Carolina +Chelsie +Christian +Daisy +Daniel +Daniela +Dorothy +Frances +Georgia +Gillian +Isabella +Janice +Jazmin +Jean +Jeanette +Jenifer +Jessenia +Jodi +Johanna +Josephine +Karly +Kiera +Leigh +Lesley +Lia +Liana +Marilyn +Martha +Nicolette +Nicolle +Noelle +Precious +Rachelle +Robyn +Rosemary +Shaina +Shauna +Simone +Sonia +Stephany +Summer +Taisha +Tiara +Toni +Wendy +Adrianna +Alexander +Angel +Annabelle +Antonia +Blake +Bridgette +Brittni +Carina +Carli +Carol +Cecilia +Chantel +Chastity +Cheryl +Christa +Christie +Clara +Cristal +Dara +Dayna +Eleanor +Eleni +Elisa +Elyse +Emilie +Ericka +Gabriela +Genesis +Heidi +Hope +Janae +Jesse +John +Kari +Kristie +Lacey +Leanne +Liza +Madeleine +Madelyn +Margarita +Marlene +Mikayla +Nathalie +Olga +Paris +Patrice +Rhiannon +Rosa +Ryan +Savannah +Shana +Shanna +Sylvia +Tanisha +Tasia +Tia +Xiomara +Yessenia +Alessia +Alexi +Allyssa +Alycia +Amarilis +Ashlynn +Athena +Betsy +Breana +Brianne +Brittani +Candice +Carley +Carrie +Cassondra +China +Chynna +Claudia +Damaris +Demi +Desirae +Destinee +Dionna +Donna +Eileen +Fiona +Franchesca +Gloria +Imani +Jacklyn +Janay +Janet +Jeannette +Jelissa +Judy +Julissa +Kacie +Karla +Karolina +Katelin +Katlyn +Katlynn +Kim +Kimberlee +Kirstin +Kristal +Kristy +Leanna +Leila +Linnea +Lucia +Lyndsey +Lynette +Maegan +Mara +Maribel +Marjorie +Maryann +Marykate +Mikaela +Nikki +Paola +Sage +Sarai +Shakira +Shaniqua +Shante +Shantel +Shawna +Suzanne +Tasha +Tyisha +Vianca +Vivian +Yashira +Zuleika +Emily +Sarah +Ashley +Jessica +Nicole +Samantha +Amanda +Stephanie +Lauren +Elizabeth +Taylor +Katherine +Jennifer +Alexandra +Rachel +Megan +Rebecca +Brittany +Danielle +Victoria +Melissa +Alyssa +Kelly +Michelle +Kelsey +Kayla +Chelsea +Shannon +Christina +Olivia +Amber +Courtney +Hannah +Allison +Erin +Alexis +Brianna +Sara +Jasmine +Caitlin +Julia +Kaitlyn +Kathryn +Emma +Heather +Caroline +Laura +Mary +Molly +Marissa +Meghan +Lindsay +Margaret +Abigail +Catherine +Erica +Paige +Jenna +Cassandra +Morgan +Amy +Haley +Kristen +Briana +Kimberly +Natalie +Jamie +Lindsey +Jacqueline +Andrea +Vanessa +Katelyn +Anna +Maria +Tiffany +Alexa +Crystal +Julie +Kathleen +Alison +Melanie +Christine +Alicia +Angela +Brooke +Colleen +Shelby +Jillian +Kaitlin +Jaclyn +Kassandra +Alexandria +Erika +Katie +Kristina +Kara +Leah +Carolyn +Gabrielle +Jordan +Angelica +Casey +Rachael +Deanna +Lisa +Bianca +Bridget +Claire +Grace +Mackenzie +Madeline +Sabrina +Carly +Patricia +Felicia +Gina +Michaela +Caitlyn +Kristin +Hayley +Mariah +Marisa +Cynthia +Veronica +Dominique +Krista +Miranda +Monica +Allyson +Breanna +Dana +Jocelyn +Brittney +Holly +Jacquelyn +Valerie +Chloe +Madison +Sydney +Audrey +Karina +Katrina +Renee +Whitney +Charlotte +Chelsey +Gabriella +Kendra +Natasha +Tara +Anne +Ariana +Karen +Meagan +Meredith +Sophia +Tori +Zoe +Cara +Elise +Isabel +Joanna +Shanice +April +Bria +Diana +Monique +Bethany +Jasmin +Kaylee +Kayleigh +Krystal +Susan +Ariel +Katharine +Raven +Shayla +Tina +Desiree +Destiny +Devon +Hillary +Kate +Kiara +Mallory +Meaghan +Nina +Stacey +Tatiana +Avery +Cheyenne +Jaime +Mollie +Rebekah +Shawna +Shayna +Alisha +Alissa +Anastasia +Ashleigh +Cassidy +Cristina +Ellen +Hailey +Michele +Sasha +Sierra +Sophie +Theresa +Ashlee +Daniella +Diamond +Francesca +Gabriela +Kellie +Kirsten +Melinda +Nichole +Teresa +Tiana +Evelyn +Jade +Janelle +Jazmin +Jazmine +Kaitlynn +Kendall +Kristine +Nikki +Nora +Savannah +Thalia +Toni +Tyler +Adriana +Amelia +Annie +Autumn +Brenna +Jordyn +Leslie +Lydia +Nancy +Paula +Stefanie +Tessa +Ann +Arianna +Aubrey +Bailey +Brenda +Carina +Carla +Corinne +Eliza +Georgia +Helen +Lillian +Madeleine +Maggie +Maya +Shana +Abby +Ana +Asia +Brandi +Christie +Devin +Diane +Ebony +Hanna +Jessie +Julianne +Justine +Kaila +Katelynn +Katlyn +Kira +Kristy +Lucy +Nicolette +Priscilla +Rosemary +Talia +Tamara +Taryn +Virginia +Aimee +Alessandra +Arielle +Britney +Carissa +Carmen +Chantel +Cindy +Heidi +Hilary +Jane +Kelli +Mikayla +Naomi +Raquel +Sheila +Abbey +Adrianna +Alice +Alivia +Candice +Cierra +Clarissa +Coraima +Eileen +Elisabeth +Faith +Genesis +Gretchen +Jena +Jenny +Justina +Kaleigh +Kaley +Karissa +Karla +Leanne +Linda +Marie +Maureen +Mia +Moriah +Regina +Rose +Sandra +Sharon +Stacy +Tayler +Alana +Angelique +Anita +Bryanna +Cayla +Cheryl +Ciara +Clare +Claudia +Denise +Elena +Elissa +Emilie +Gianna +Gloria +Isabella +Jacklyn +Kailey +Kelsie +Kerri +Kiersten +Kyra +Larissa +Lily +Lyndsey +Marilyn +Marina +Maura +Melody +Mercedes +Nicola +Pamela +Robyn +Sage +Shaina +Simone +Summer +Tabitha +Tanisha +Tanya +Tess +Trisha +Alanna +Ali +Alina +Alyson +Angelina +Ashlyn +Bonnie +Carley +Carrie +Chanel +Chelsie +Daniela +Destinee +Dorothy +Elaine +Emilee +Ericka +Fiona +Gillian +India +Jennie +Jill +Johanna +Kailyn +Kali +Kasandra +Katelin +Kaylene +Kelley +Kerry +Kiana +Kristi +Leanna +Lia +Mckenzie +Nikole +Noelle +Rhiannon +Roxanne +Yolanda +Aileen +Alayna +Alex +Alexia +Allyssa +Alysha +Annette +Annmarie +Ava +Barbara +Cameron +Camille +Casandra +Celina +Christian +Clara +Colby +Corina +Deandra +Dina +Elaina +Eleni +Elisa +Emely +Fallon +Hope +Imani +Janet +Jeanette +Joelle +Josephine +Julianna +Khadijah +Kia +Kiera +Kristie +Laurel +Lea +Leandra +Maegan +Marisol +Martha +Micaela +Natalia +Nyasia +Olga +Paulina +Rachelle +Robin +Ruth +Sally +Shauna +Suzanne +Sylvia +Tasha +Tia +Tiffani +Valentina +Yaritza +Alecia +Alma +Alycia +Angel +Ashli +Ayanna +Blair +Bridgette +Bryana +Carolina +Cassie +Cassondra +Chantal +Charlene +Chasity +Constance +Daisy +Dakota +Danyelle +Dawn +Deborah +Deirdre +Demi +Desirae +Eleanor +Eva +Harley +Iesha +Iris +Ivana +Jenifer +Joanne +Jodie +Juliana +Julissa +Kacey +Kadejah +Karolina +Katerina +Kaylin +Kenya +Kirby +Krystle +Kyle +Kylee +Kylie +Lacey +Latoya +Lexus +Lissette +Lizbeth +Loren +Lori +Lorraine +Lucie +Lynette +Madelyn +Mara +Margo +Margot +Marykate +Melina +Michael +Miriam +Nadia +Nathalie +Nicholas +Niki +Patrice +Phoebe +Precious +Rosalie +Rosemarie +Shanna +Shannen +Sheena +Skye +Sonia +Stacie +Stefani +Tianna +Tiara +Tierney +Tierra +Tricia +Xiomara +Yasmin +Emily +Sarah +Jessica +Nicole +Ashley +Samantha +Amanda +Taylor +Stephanie +Elizabeth +Lauren +Megan +Rachel +Alexandra +Jennifer +Rebecca +Alyssa +Danielle +Kayla +Katherine +Victoria +Hannah +Brittany +Melissa +Morgan +Brianna +Olivia +Alexis +Christina +Kelly +Michelle +Erin +Kimberly +Allison +Shannon +Courtney +Amber +Julia +Emma +Caroline +Mary +Sara +Kelsey +Heather +Meghan +Caitlin +Kristen +Marissa +Chelsea +Jenna +Alexa +Abigail +Erica +Kathryn +Catherine +Margaret +Anna +Briana +Kaitlyn +Molly +Tiffany +Cassandra +Jacqueline +Jasmine +Laura +Paige +Natalie +Lindsay +Alicia +Lindsey +Brooke +Kathleen +Amy +Crystal +Maria +Gabrielle +Katelyn +Jillian +Shelby +Haley +Casey +Bianca +Jamie +Sabrina +Andrea +Grace +Madison +Michaela +Angela +Melanie +Sydney +Christine +Kristina +Miranda +Lisa +Madeline +Alison +Carly +Leah +Rachael +Erika +Jordan +Mackenzie +Kristin +Vanessa +Monica +Kara +Mariah +Alexandria +Gina +Marisa +Bridget +Dana +Katie +Hayley +Jocelyn +Kaitlin +Angelica +Bethany +Destiny +Holly +Natasha +Dominique +Tara +Colleen +Julie +Cynthia +Kendra +Claire +Diana +Gabriella +Nina +Veronica +Anne +Cheyenne +Deanna +Savannah +Brittney +Caitlyn +Felicia +Katrina +Tiana +Ariel +Charlotte +Chloe +Kassandra +Kylie +Patricia +Theresa +Whitney +Carolyn +Ellen +Karen +Krista +Krystal +Lydia +Meredith +Sierra +Adriana +Allyson +Breanna +Desiree +Diamond +Hailey +Joanna +Lily +Mallory +Meagan +Meaghan +Raven +Aaliyah +Francesca +Jacquelyn +Jazmin +Sophia +Zoe +Alana +Ashleigh +Cara +Jessie +Kaylee +Kiara +Michele +Ann +Brenda +Devon +Elise +Jaclyn +Kate +Kendall +Leslie +Tatiana +Asia +Hanna +Katelynn +Kellie +Mikayla +Rebekah +Sophie +Tessa +Alisha +Cassidy +Elisabeth +Gabriela +Isabel +Nicolette +Valerie +Ariana +Audrey +Carissa +Elena +Maya +Renee +Shanice +April +Brianne +Clare +Isabella +Jasmin +Kelley +Kirsten +Lillian +Linda +Rose +Sasha +Stacey +Tori +Yesenia +Evelyn +Genesis +Jane +Jazmine +Justine +Khadijah +Laurel +Marina +Mikaela +Tina +Vivian +Alyson +Anastasia +Ashlee +Aubrey +Brandi +Chelsey +Clarissa +Cristina +Deborah +Eva +Imani +Julianne +Katharine +Kelli +Kerry +Kiana +Nichole +Aimee +Alexander +Alice +Amelia +Angelina +Arianna +Autumn +Devin +Diane +Iris +Jade +Jaime +Jordyn +Juliana +Karina +Kayleigh +Marie +Melinda +Nikki +Regina +Rosemary +Ruth +Sandra +Serena +Susan +Tia +Virginia +Alissa +Aliyah +Avery +Brandy +Bria +Carla +Clara +Isabelle +Johanna +Kaleigh +Kira +Logan +Micaela +Miriam +Monique +Sheila +Tamara +Teresa +Tricia +Wendy +Abby +Adrianna +Annie +Arielle +Brenna +Carmen +Carolina +Cassie +Christie +Daniela +Dayna +Denise +Fallon +Georgia +Gwendolyn +Hunter +Kelsie +Liza +Lyndsey +Maggie +Marilyn +Nancy +Octavia +Pamela +Phoebe +Priscilla +Shawna +Summer +Tess +Tianna +Abbey +Alaina +Alexus +Ana +Beth +Britney +Candice +Chantel +Christa +Christian +Christy +Ciara +Cindy +Corinne +Daisy +Dylan +Eliza +Emilia +Gloria +Heidi +Helen +Janelle +Jenny +Joy +Julianna +Kaila +Karissa +Karli +Karly +Katlyn +Kenya +Madeleine +Maegan +Makayla +Mara +Mckenzie +Mercedes +Naomi +Rosa +Shaina +Shana +Sonia +Stefanie +Tyler +Zhane +Alessandra +Angelique +Barbara +Bryanna +Camille +Dakota +Daniella +Delaney +Donna +Ebony +Eileen +Eleanor +Elyse +Faith +Fiona +Frances +Greta +Hope +Janice +Jennie +Katarina +Kerri +Kyra +Lea +Mia +Monika +Nora +Regan +Robyn +Sadie +Shauna +Suzanne +Sylvia +Talia +Tiara +Adrienne +Alexia +Alina +Alysa +Annette +Ashlyn +Camila +Carli +Casandra +Cecilia +Claudia +Colby +Corey +Corrine +Darlene +Destinee +Ericka +Genevieve +Genna +Gianna +Gillian +Gretchen +Iesha +Jada +Jaimie +Josephine +Kailey +Kaitlynn +Kasandra +Kasey +Katerina +Keila +Keisha +Kristine +Kyla +Latisha +Lissette +Loren +Lucy +Martha +Mayra +Mina +Moriah +Natalia +Noelle +Rhiannon +Sharon +Shayna +Skylar +Tanisha +Taryn +Thalia +Tracy +Trisha +Yaritza +Aja +Alanna +Alena +Ali +Allie +Amani +Annamarie +Ava +Bailey +Bonnie +Breana +Bryana +Callie +Carey +Carley +Carol +Carrie +Cathleen +Cayla +Celina +Chantal +Charlene +Christiana +Christopher +Corina +Cristal +Darcy +Darien +Deja +Devonna +Dorothy +Eleni +Emilie +Guadalupe +Harley +Hillary +India +Irene +Janel +Janine +Jesse +Jessenia +Jill +Joyce +Kala +Kathy +Kaylie +Kristy +Leanna +Leanne +Leigh +Lia +Lilly +Linnea +Luz +Margot +Marguerite +Mariana +Mariel +Marlena +Maureen +Melina +Nadia +Natashia +Nathalie +Paula +Raquel +Rhianna +Riley +Rosalie +Ryan +Samatha +Shantel +Shayla +Shirley +Sofia +Stephany +Susanna +Tania +Tanya +Tasha +Tatyana +Therese +Valeria +Emily +Jessica +Sarah +Samantha +Ashley +Nicole +Amanda +Rachel +Taylor +Megan +Lauren +Katherine +Elizabeth +Stephanie +Alyssa +Victoria +Brianna +Jennifer +Alexandra +Kayla +Hannah +Olivia +Rebecca +Danielle +Brittany +Julia +Courtney +Melissa +Kelly +Emma +Alexis +Morgan +Allison +Michelle +Sara +Shannon +Caroline +Erin +Abigail +Amber +Kaitlyn +Christina +Anna +Kimberly +Margaret +Sydney +Kathryn +Gabrielle +Jasmine +Chelsea +Kelsey +Marissa +Jacqueline +Mary +Caitlin +Haley +Erica +Molly +Natalie +Briana +Heather +Brooke +Alexa +Catherine +Kristen +Laura +Meghan +Cassandra +Christine +Jenna +Lindsay +Madison +Paige +Jillian +Madeline +Maria +Melanie +Amy +Gabriella +Tiffany +Alicia +Angela +Katelyn +Carly +Grace +Lindsey +Shelby +Jamie +Vanessa +Casey +Jordan +Leah +Destiny +Kathleen +Miranda +Bianca +Crystal +Kylie +Rachael +Sabrina +Mariah +Marisa +Kaitlin +Alison +Andrea +Cassidy +Hayley +Mackenzie +Erika +Gina +Katie +Angelica +Colleen +Monica +Julie +Michaela +Kendra +Sierra +Brittney +Isabella +Kristina +Lisa +Dana +Dominique +Claire +Jocelyn +Veronica +Bethany +Cynthia +Alexandria +Valerie +Zoe +Cheyenne +Chloe +Deanna +Mikayla +Natasha +Diana +Patricia +Selena +Ariana +Charlotte +Kara +Kiara +Ana +Autumn +Caitlyn +Hailey +Kassandra +Savannah +Tatiana +Anne +Breanna +Claudia +Renee +Carolyn +Francesca +Holly +Krista +Mallory +Meredith +Bridget +Desiree +Isabel +Kristin +Lily +Nina +Rose +Alisha +Avery +Brenna +Jaclyn +Jada +Kate +Tessa +Tiana +Adriana +Allyson +Ariel +Kaylee +Krystal +Lillian +Arianna +Asia +Ellen +Gabriela +Karina +Lydia +Tara +Alissa +Bailey +Elena +Isabelle +Whitney +Audrey +Brandi +Cristina +Eleanor +Jazmin +Jordyn +Maya +Meagan +Michele +Nichole +Sophia +Theresa +Amelia +Anastasia +Brenda +Felicia +Jade +Jaime +Jenny +Jessie +Juliana +Julianna +Kendall +Madeleine +Marie +Marina +Naomi +Sandra +Sophie +Hanna +Jacquelyn +Katrina +Mckenzie +Micaela +Tori +Adrianna +Alana +Annie +Cara +Elise +Eliza +Joanna +Monique +Noelle +Nora +Sasha +Summer +Angelina +Ashlee +Bryanna +Corinne +Diamond +Eva +Gianna +Jazmine +Katharine +Linda +Meaghan +Priscilla +Rebekah +Shayna +Thalia +Abby +Alessandra +Arielle +Brandy +Carmen +Helen +Hope +Jill +Kaila +Kellie +Kiana +Kirsten +Phoebe +Shaina +Shanice +Susan +Aimee +Alyson +Ashleigh +Carla +Carolina +Dakota +Daniella +Devon +Evelyn +Faith +Imani +Jesse +Karen +Kasey +Keisha +Kelley +Kiera +Larissa +Liana +Maggie +Raquel +Raven +Sofia +Stacey +Tatyana +Aaliyah +Alexia +April +Aubrey +Essence +Genevieve +Jane +Jasmin +Jennie +Julianne +Kerry +Kyra +Mollie +Robin +Ruth +Sage +Shawna +Tess +Toni +Alice +Ashlyn +Breana +Bria +Cameron +Candace +Carissa +Carley +Chelsey +Christa +Ciara +Cindy +Clara +Clare +Corey +Elisa +Emilie +Esther +Gillian +Jailene +Jeanette +Kailey +Kaleigh +Kasandra +Lucy +Makayla +Marilyn +Maura +Melinda +Melody +Mia +Nancy +Natalia +Serena +Shayla +Sheila +Skylar +Talia +Tanisha +Tiara +Tracy +Wendy +Aisha +Alanna +Alysha +Angel +Annette +Ava +Beth +Britney +Bryana +Cayla +Clarissa +Daniela +Deja +Delaney +Denise +Ebony +Elisabeth +Elissa +Frances +Georgia +Giselle +Jazmyn +Josephine +Joy +Juliette +Katelin +Kayleigh +Kiersten +Kristine +Krysta +Kyla +Kyle +Lacey +Logan +Lucia +Madelyn +Mariana +Marisol +Martha +Mikaela +Pamela +Paula +Rachelle +Rhiannon +Riley +Sadie +Selina +Suzanne +Tabitha +Taryn +Teresa +Tiffani +Tyler +Vivian +Yvonne +Alexus +Aliza +Ann +Brianne +Bridgette +Carina +Carli +Carrie +Chanel +Cori +Dawn +Delia +Devin +Diane +Eileen +Elaina +Emely +Genesis +Gretchen +Hillary +Joelle +Julissa +Justice +Kaela +Karissa +Katelynn +Kathy +Keara +Kianna +Kira +Lara +Lena +Leslie +Moriah +Nicolette +Nikole +Nyasia +Paola +Priya +Shauna +Simone +Stefanie +Tamara +Tania +Tayler +Yesenia +Alaina +Alecia +Alejandra +Alize +Angelique +Anita +Annabelle +Ashanti +Barbara +Camille +Carlie +Casandra +Cecilia +Celeste +Chandler +Christie +Ciera +Deirdre +Elsa +Elyssa +Ericka +Fallon +Iris +Jesenia +Joan +Johanna +Judith +Kali +Karlie +Keira +Kelsie +Kiley +Kristal +Kristyn +Laurel +Leigh +Marjorie +Marlee +Marlena +Marlene +Maureen +Melina +Moira +Nadia +Nia +Nikita +Nykesha +Paulina +Precious +Rochelle +Rosemarie +Ryan +Shantel +Sylvia +Tanya +Tianna +Tina +Tracey +Zhane +Emily +Sarah +Samantha +Jessica +Nicole +Amanda +Ashley +Rachel +Taylor +Elizabeth +Megan +Katherine +Alexandra +Hannah +Alyssa +Rebecca +Brianna +Kayla +Julia +Lauren +Olivia +Victoria +Stephanie +Jennifer +Alexis +Emma +Brittany +Melissa +Danielle +Kelly +Courtney +Caroline +Morgan +Allison +Erin +Abigail +Amber +Michelle +Sara +Shannon +Meghan +Sydney +Madison +Jenna +Kimberly +Kathryn +Jacqueline +Kaitlyn +Anna +Gabrielle +Christina +Kelsey +Natalie +Haley +Marissa +Briana +Mary +Mackenzie +Margaret +Chelsea +Sabrina +Laura +Paige +Alexa +Brooke +Caitlin +Heather +Grace +Jasmine +Kristen +Catherine +Tiffany +Casey +Lindsay +Molly +Gabriella +Jordan +Katelyn +Madeline +Angela +Erica +Melanie +Maria +Carly +Jamie +Mariah +Amy +Rachael +Cassandra +Destiny +Leah +Shelby +Alison +Alicia +Andrea +Michaela +Monica +Kathleen +Vanessa +Claire +Hayley +Kristina +Savannah +Sierra +Colleen +Crystal +Dominique +Jillian +Lindsey +Angelica +Jocelyn +Miranda +Alexandria +Bridget +Erika +Lisa +Christine +Gina +Kaitlin +Ariana +Charlotte +Katie +Bianca +Isabella +Lily +Marisa +Dana +Julie +Cynthia +Cassidy +Cheyenne +Hailey +Mikayla +Anne +Juliana +Meredith +Sophia +Zoe +Bailey +Mia +Veronica +Kara +Kassandra +Tara +Holly +Katrina +Valerie +Chloe +Kaylee +Caitlyn +Carolyn +Isabelle +Kiara +Kirsten +Maggie +Sophie +Gillian +Krystal +Kylie +Selena +Theresa +Amelia +Brenna +Diana +Gabriela +Jaclyn +Jade +Maya +Tiana +Autumn +Deanna +Desiree +Isabel +Kiana +Kyra +Mikaela +Tatiana +Alexus +Allyson +Asia +Breanna +Brenda +Brittney +Claudia +Eliza +Felicia +Francesca +Joanna +Karina +Lydia +Madeleine +Mckenzie +Nina +Renee +Adriana +Alissa +Annie +Faith +Imani +Julianna +Meaghan +Patricia +Summer +Alana +Audrey +Bethany +Mallory +Natasha +Rebekah +Alexia +Anastasia +Cristina +Jaime +Justine +Micaela +Monique +Naomi +Tamara +Taryn +Whitney +Abby +Alanna +Angelina +Arianna +Aubrey +Cara +Devon +Jasmin +Kaleigh +Kasey +Kristin +Lillian +Makayla +Natalia +Rose +Sasha +Alisha +Ana +April +Ariel +Carmen +Deja +Eleanor +Elisabeth +Hope +Katharine +Kendall +Kendra +Meagan +Susan +Talia +Tess +Thalia +Tia +Antonia +Carley +Ciara +Destinee +Gianna +Hanna +Helen +Jane +Krista +Leslie +Marina +Noelle +Shayla +Teresa +Tessa +Angelique +Brianne +Bryanna +Cecilia +Diamond +Elise +Evelyn +Genesis +Karen +Karissa +Robin +Serena +Shania +Tanisha +Alice +Ashleigh +Barbara +Camille +Carissa +Carolina +Chelsey +Daisy +Deborah +Deirdre +Delaney +Jazmine +Jenny +Jordyn +Josephine +Karla +Kate +Kayleigh +Mariana +Mercedes +Michele +Phoebe +Priscilla +Raven +Virginia +Abbey +Ashlee +Avery +Carrie +Cheyanne +Destini +Ellen +Emilie +Fiona +Genevieve +Georgia +Jacquelyn +Jada +Kelley +Kerry +Kristine +Martha +Mckenna +Melinda +Melody +Nadia +Nancy +Paula +Sage +Shantel +Shayna +Stefanie +Tori +Aimee +Aisha +Alessandra +Aliyah +Alyson +Arielle +Bonnie +Brandi +Breana +Carla +Clara +Clare +Dakota +Daniella +Dejah +Elena +Gloria +Heidi +Jailene +Janae +Jazlyn +Jazmin +Jill +Karly +Katarina +Kennedy +Kiley +Kristy +Larissa +Liana +Linda +Lucy +Maeve +Nicolette +Nora +Shaina +Shauna +Sofia +Tianna +Aaliyah +Adrianna +Brielle +Bryana +Callie +Clarissa +Cortney +Cristal +Denise +Ebony +Heaven +Janelle +Julianne +Kaelyn +Katelynn +Kaylyn +Lea +Lena +Luz +Moesha +Nichole +Nyasia +Precious +Riley +Sandra +Shakira +Tiara +Yamilex +Alayna +Alejandra +Alisa +Alize +Angel +Brandy +Carol +Celia +Christa +Ciera +Colette +Daniela +Darby +Denisha +Devin +Frances +Hunter +India +Judith +Justice +Kaila +Kailey +Kali +Kasandra +Kayley +Kerri +Kianna +Kiarra +Kiera +Kira +Leigh +Margot +Marie +Marilyn +Marisol +Nathalie +Octavia +Payton +Reilly +Robyn +Ruth +Savanna +Selina +Sharon +Shea +Simone +Skylar +Tierra +Toni +Wendy +Yahaira +Zhane +Adrienne +Alexi +Alysa +Amani +Ashanti +Ava +Ayanna +Breanne +Bria +Cameron +Casandra +Celine +Chanel +Chantel +Cierra +Cindy +Coral +Corinne +Daria +Delia +Diane +Donna +Dorothy +Emilia +Essence +Esther +Fallon +Fatima +Giovanna +Gwendolyn +Hallie +Hillary +Iliana +Janice +Jeanette +Johnna +Joselyn +Justina +Kailee +Kaley +Karalyn +Karlee +Katerina +Kellie +Kyla +Kyle +Lacey +Leana +Leeann +Leila +Lexi +Lexus +Liza +Loren +Madelyn +Maia +Makenna +Makenzie +Margaux +Marianna +Marlena +Marlene +Maura +Monika +Nia +Peyton +Rachelle +Raquel +Ruby +Ryan +Sadie +Sheila +Shyanne +Shyla +Sienna +Stacey +Stacy +Tahira +Tamia +Tanya +Tina +Tyler +Yesenia +Zaria +Emily +Sarah +Samantha +Ashley +Taylor +Amanda +Jessica +Julia +Megan +Nicole +Olivia +Lauren +Alexandra +Alyssa +Hannah +Rachel +Emma +Elizabeth +Kayla +Rebecca +Victoria +Katherine +Brianna +Alexis +Jennifer +Abigail +Stephanie +Danielle +Brittany +Anna +Morgan +Caroline +Madison +Haley +Amber +Sara +Erin +Jenna +Shannon +Courtney +Natalie +Allison +Gabrielle +Melissa +Sydney +Kelly +Marissa +Christina +Kaitlyn +Briana +Margaret +Molly +Meghan +Michelle +Sabrina +Destiny +Grace +Jillian +Mary +Jasmine +Brooke +Jordan +Madeline +Gabriella +Shelby +Amy +Isabella +Mackenzie +Catherine +Maria +Cassandra +Erica +Laura +Alicia +Kimberly +Kristen +Mariah +Paige +Caitlin +Jacqueline +Miranda +Tiffany +Alexa +Casey +Chelsea +Kathryn +Kelsey +Michaela +Monica +Angela +Kathleen +Leah +Sophia +Claire +Jamie +Heather +Vanessa +Savannah +Lindsay +Hayley +Tatiana +Angelica +Sierra +Andrea +Ariana +Crystal +Mikayla +Caitlyn +Carly +Erika +Gina +Hailey +Julie +Alexandria +Cheyenne +Katie +Lindsey +Marisa +Melanie +Zoe +Katelyn +Chloe +Kaylee +Rachael +Veronica +Colleen +Dana +Faith +Gabriela +Lily +Nina +Selena +Bailey +Bridget +Cassidy +Christine +Isabel +Meagan +Diana +Kaitlin +Kiana +Lisa +Charlotte +Jada +Maya +Alison +Deanna +Francesca +Isabelle +Kylie +Jocelyn +Lucy +Maggie +Mia +Sophie +Anne +Audrey +Hanna +Holly +Madeleine +Makayla +Arianna +Breanna +Dominique +Juliana +Kendra +Tiana +Bianca +Gianna +Julianna +Kristina +Riley +Aaliyah +Kara +Natalia +Tessa +Thalia +April +Ariel +Asia +Autumn +Carolyn +Hope +Jade +Jazmine +Natasha +Raven +Amelia +Brittney +Eliza +Gillian +Kiara +Kristin +Lillian +Phoebe +Tara +Alana +Bethany +Cynthia +Desiree +Elise +Helen +Karina +Kassandra +Kayleigh +Kellie +Meredith +Theresa +Adriana +Cameron +Cara +Felicia +Genesis +Imani +Kendall +Meaghan +Naomi +Patricia +Rebekah +Serena +Alissa +Allyson +Ana +Angelina +Mikaela +Shakira +Abby +Alexia +Avery +Destinee +Jaclyn +Jordyn +Justine +Katharine +Kirsten +Kyra +Lydia +Mallory +Marina +Renee +Sofia +Tess +Adrianna +Alessandra +Claudia +Corinne +Jailene +Jazmin +Karen +Kasey +Kate +Kyla +Leslie +Nadia +Tianna +Ashleigh +Aubrey +Bryanna +Deja +Devon +Eleanor +Elena +Katrina +Krista +Krystal +Simone +Stefanie +Taryn +Tatyana +Alexus +Alice +Aliyah +Alize +Arielle +Brenna +Cristina +Dakota +Daniela +Ellen +Essence +Evelyn +Fiona +Jane +Katelynn +Pamela +Summer +Talia +Toni +Valerie +Alisha +Anastasia +Brandi +Carmen +Daisy +Delaney +Devin +Diamond +Heidi +Johanna +Juliette +Larissa +Mckenzie +Monique +Nancy +Paulina +Rose +Sasha +Shanice +Shayna +Tori +Alaina +Angel +Antonia +Barbara +Brenda +Carissa +Chelsey +Clare +Hunter +Jasmin +Jenny +Jessie +Lea +Michele +Nyasia +Peyton +Regina +Skylar +Tiara +Yasmine +Adrienne +Aimee +Alyson +Anika +Ann +Annika +Carlie +Cassie +Cecilia +Chyna +Ciara +Daniella +Ebony +Elaine +Elisabeth +Helena +Janelle +Jill +Kali +Karissa +Karla +Kassidy +Kaylin +Kelsie +Kerry +Kiera +Mariana +Miriam +Nikki +Noelle +Sadie +Sandra +Shayla +Skyler +Sonia +Whitney +Abbey +Alanna +Alondra +Alycia +Ashlyn +Callie +Camille +Celine +Cindy +Destiney +Emilee +Georgia +Iris +Jacquelyn +Jaime +Joanna +Joy +Kailey +Kaitlynn +Kasandra +Katerina +Kelley +Lena +Linda +Madelyn +Maeve +Makenzie +Mckayla +Nia +Nichole +Nikita +Nora +Payton +Priscilla +Raquel +Reilly +Ruth +Sharon +Shea +Sheila +Skye +Sylvia +Tina +Valeria +Wendy +Alena +Annalise +Annelise +Breana +Bria +Brianne +Carina +Carley +Carolina +Celeste +Celina +Chantel +Christiana +Cierra +Clarissa +Diane +Elisa +Gloria +Julianne +Julissa +Justice +Kacey +Kaela +Kailee +Kelli +Kiley +Kira +Kristie +Margot +Maura +Melinda +Nathalie +Nicolette +Pauline +Priya +Quinn +Raegan +Rosemary +Sage +Sally +Savanna +Shaina +Shania +Sidney +Susan +Tamara +Tamia +Teresa +Tia +Unique +Virginia +Zaria +Alejandra +Alina +Amani +Angelique +Anissa +Anita +Annie +Ashlee +Athena +Blair +Bridgette +Britney +Cailin +Cali +Candace +Carla +Carli +Carol +Carrie +Cayla +Caylin +Celia +Chanel +Christa +Christie +Daija +Damaris +Dasia +Deborah +Denise +Domonique +Elana +Ella +Ellie +Erinn +Frances +Halle +Idalis +Janessa +Jessenia +Josephine +Justina +Kaleigh +Karli +Kayley +Keila +Kennedy +Kimberley +Kristine +Leanne +Lia +Liliana +Lorena +Macie +Maia +Mairead +Martha +Mercedes +Micaela +Monika +Regan +Rhiannon +Rochelle +Rosa +Ryan +Sarina +Stephany +Suzanne +Sydnee +Tatiyana +Vivian +Yasmin +Yesenia +Zhane +Emily +Sarah +Samantha +Ashley +Julia +Jessica +Olivia +Nicole +Alyssa +Amanda +Elizabeth +Hannah +Taylor +Alexis +Rachel +Brianna +Megan +Lauren +Emma +Victoria +Alexandra +Madison +Kayla +Abigail +Rebecca +Katherine +Morgan +Jennifer +Allison +Natalie +Kaitlyn +Danielle +Anna +Stephanie +Jenna +Alexa +Caroline +Erin +Haley +Kelly +Brittany +Sara +Gabrielle +Destiny +Grace +Madeline +Melissa +Brooke +Christina +Amber +Cassandra +Catherine +Mackenzie +Gabriella +Shannon +Jasmine +Courtney +Mary +Meghan +Sophia +Sydney +Laura +Briana +Isabella +Jordan +Kelsey +Kathryn +Caitlin +Paige +Michelle +Marissa +Sabrina +Molly +Jillian +Amy +Kristen +Maria +Claire +Mariah +Leah +Erica +Kimberly +Heather +Katelyn +Lindsey +Isabel +Caitlyn +Jamie +Lindsay +Tiffany +Angela +Hailey +Jacqueline +Margaret +Vanessa +Chelsea +Melanie +Sierra +Alexandria +Carly +Isabelle +Nina +Chloe +Erika +Michaela +Diana +Tatiana +Gianna +Rachael +Zoe +Alicia +Autumn +Cheyenne +Miranda +Savannah +Angelica +Casey +Jocelyn +Maya +Ariana +Arianna +Crystal +Mikayla +Shelby +Jada +Kathleen +Bianca +Juliana +Alison +Andrea +Bridget +Cassidy +Veronica +Kaylee +Lydia +Cynthia +Julianna +Kate +Bailey +Charlotte +Dominique +Faith +Hayley +Kaitlin +Lily +Mia +Katie +Kylie +Deanna +Desiree +Gabriela +Kristina +Marisa +Monica +Audrey +Breanna +Brenna +Kiara +Lillian +Selena +Tara +Alana +Bethany +Christine +Colleen +Gina +Valerie +Amelia +Angelina +Ava +Brittney +Ciara +Gillian +Jade +Jasmin +Kara +Madeleine +Natasha +Sophie +Ariel +Claudia +Dana +Imani +Tessa +Carolyn +Kiana +Natalia +Skylar +Anne +Avery +Francesca +Kyra +Mercedes +Riley +Serena +Tatyana +Adrianna +Alexia +Cara +Diamond +Julianne +Karen +Kasey +Kristin +Sofia +Tiana +Adriana +Asia +Elise +Eliza +Hope +Katharine +Katrina +Kendra +Kirsten +Meagan +Patricia +Allyson +Alyson +Bryanna +Elena +Georgia +Hanna +Holly +Kailey +Kassandra +Kendall +Madelyn +Makayla +Renee +Aaliyah +Alexus +Ana +Cameron +Devon +Julie +Karina +Kayleigh +Krystal +Mallory +Mikaela +Mya +Naomi +Rebekah +Rose +Tabitha +Talia +Theresa +Anastasia +Callie +Cristina +Delaney +Eleanor +Essence +Helen +Jazmin +Mckenzie +Nyasia +Shayla +Simone +Teresa +Alessandra +Cierra +Clare +Daniella +Ellen +Genesis +Gloria +Hunter +Lea +Leslie +Lucy +Meredith +Nadia +Summer +Angelique +Corinne +Evelyn +Felicia +Helena +Justine +Kira +Lauryn +Marie +Monique +Reilly +Skyler +Tianna +Tori +Yasmin +Abbey +Alanna +Annie +Celeste +Clara +Daniela +Destinee +Elisabeth +Ella +Jaclyn +Jazmine +Johanna +Joselyn +Kaleigh +Karla +Katelynn +Krista +Kyla +Laurel +Lisa +Maggie +Meaghan +Micaela +Nikki +Pamela +Peyton +Phoebe +Rhiannon +Ruth +Sage +Tess +Thalia +Toni +Abby +Angel +Ashleigh +Barbara +Brenda +Deborah +Eva +Jailene +Jane +Jordyn +Kaila +Karissa +Linda +Michele +Nathalie +Noelle +Raven +Sadie +Sandra +Shania +Alaina +Alissa +Aliyah +Aubrey +Camryn +Carley +Cecilia +Cindy +Daisy +Daria +Devin +Elisa +Giselle +Haylee +Heidi +Jessie +Joanna +Josephine +Juliette +Kaitlynn +Lexi +Maia +Mckenna +Melody +Paulina +Stefanie +Susan +Tamara +Tyler +April +Armani +Athena +Ayanna +Brianne +Camille +Carli +Celina +Celine +Chyna +Clarissa +Deja +Elaine +Fiona +India +Jacquelyn +Janae +Katarina +Kellie +Kelsie +Larissa +Leanne +Liliana +Mariana +Maura +Monika +Nora +Paris +Priscilla +Sharon +Shea +Sonia +Tyra +Valentina +Aimee +Alice +Alisha +Allie +Ally +Amani +Ann +Anneliese +Ashanti +Ashlee +Brandy +Bridgette +Brigid +Caleigh +Carina +Chanelle +Christiana +Dejah +Donna +Eileen +Elyse +Emilie +Esther +Genevieve +Giovanna +Gwendolyn +Halle +Janet +Jessenia +Juliet +Kailyn +Kali +Katerina +Kennedy +Kiley +Kristine +Leann +Leila +Madisyn +Maegan +Mahogany +Marilyn +Mollie +Nicolette +Payton +Regan +Sasha +Selina +Shaina +Shawna +Shayna +Sidney +Tamia +Tatyanna +Yesenia +Abbie +Aida +Alia +Alize +Allegra +Anika +Annabelle +Annika +Antonia +Ashely +Ayana +Cailey +Cali +Carla +Carlie +Carmen +Casandra +Cassie +Chelsey +Christa +Connie +Denise +Eliana +Emely +Emilia +Eryn +Esmeralda +Haleigh +Hana +Iliana +Iman +Irene +Iris +Ivy +Janelle +Jenny +Joyce +Kailee +Kaley +Karli +Kassidy +Katlyn +Kaylie +Keishla +Kelley +Kenya +Kiera +Kiersten +Krysta +Madelynn +Marianna +Melinda +Nancy +Nia +Rosa +Samara +Samaria +Shyanne +Sylvia +Tanya +Tia +Tracy +Trisha +Vivian +Yasmine +Zaria +Emily +Sarah +Samantha +Julia +Emma +Ashley +Olivia +Jessica +Hannah +Alyssa +Elizabeth +Taylor +Brianna +Alexandra +Kayla +Lauren +Megan +Amanda +Nicole +Victoria +Madison +Rachel +Abigail +Alexis +Katherine +Grace +Rebecca +Morgan +Jennifer +Anna +Kaitlyn +Natalie +Sydney +Jenna +Danielle +Allison +Erin +Isabella +Stephanie +Caroline +Destiny +Gabrielle +Sara +Courtney +Alexa +Jordan +Gabriella +Haley +Shannon +Brittany +Catherine +Kelly +Amber +Mary +Molly +Kiara +Mackenzie +Christina +Jasmine +Marissa +Jillian +Briana +Michelle +Sophia +Margaret +Madeline +Meghan +Lindsey +Kimberly +Cassandra +Melissa +Chloe +Sabrina +Kelsey +Melanie +Brooke +Katelyn +Lily +Kathryn +Lindsay +Paige +Mariah +Mia +Caitlin +Jacqueline +Maya +Vanessa +Maria +Tatiana +Zoe +Casey +Cassidy +Isabel +Angela +Claire +Jamie +Laura +Mikayla +Sophie +Charlotte +Heather +Caitlyn +Erica +Shelby +Tiffany +Andrea +Michaela +Veronica +Ariana +Hailey +Juliana +Kaylee +Kristen +Leah +Makayla +Carly +Erika +Nina +Skylar +Amy +Crystal +Hayley +Kylie +Sierra +Alicia +Bianca +Bridget +Katie +Arianna +Savannah +Alexandria +Autumn +Camryn +Faith +Gillian +Jada +Kate +Chelsea +Isabelle +Jocelyn +Riley +Amelia +Cheyenne +Desiree +Julie +Miranda +Naomi +Sofia +Audrey +Christine +Gabriela +Kathleen +Natalia +Natasha +Shania +Angelica +Bailey +Brittney +Claudia +Diana +Elena +Gianna +Lydia +Madeleine +Monique +Rachael +Alison +Ava +Cara +Colleen +Francesca +Genesis +Kaitlin +Kristina +Lillian +Monica +Rebekah +Breanna +Karina +Tiana +Adriana +Bryanna +Deanna +Diamond +Elise +Georgia +Gina +Jordyn +Kendra +Kiana +Madelyn +Marisa +Mya +Selena +Tatyana +Hanna +Hope +Julianna +Kara +Kayleigh +Lisa +Marina +Rose +Valerie +Allyson +Angelina +Avery +Jade +Kristin +Kyra +Maggie +Anne +Cynthia +Delaney +Evelyn +Karen +Katrina +Lucy +Meredith +Renee +Alexia +Anastasia +Camille +Ciara +Daisy +Felicia +Jane +Justine +Kailey +Maeve +Skyler +Alessandra +Ana +Asia +Brenna +Britney +Callie +Cameron +Carolyn +Dana +Dominique +Eleanor +Fiona +Holly +Lauryn +Tara +Tessa +Abby +Alana +Alissa +Angel +April +Barbara +Bethany +Carissa +Kyla +Mallory +Mckenna +Mckenzie +Talia +Clare +Esther +Eva +Jazmin +Kirsten +Leslie +Shayna +Thalia +Tia +Aliyah +Ally +Angelique +Ariel +Arielle +Caleigh +Cayla +Celeste +Elisabeth +Imani +Joanna +Kassandra +Krystal +Maia +Mariana +Mikaela +Nadia +Noelle +Patricia +Peyton +Phoebe +Sage +Skye +Tianna +Virginia +Adrianna +Annie +Corinne +Jasmin +Julianne +Kaitlynn +Katharine +Kendall +Kiley +Krista +Lexi +Meaghan +Miriam +Serena +Sharon +Summer +Tamia +Aaliyah +Abbey +Alivia +Aliza +Ashlee +Carina +Carley +Clara +Cristina +Deja +Destinee +Devin +Eve +Hallie +Irene +Jaclyn +Juliet +Julissa +Kaleigh +Karla +Kellie +Kerry +Kylee +Lyndsey +Melina +Precious +Ryan +Shanice +Susan +Theresa +Trinity +Tyra +Whitney +Alaina +Alexus +Allie +Alyson +Ashleigh +Celine +Chyna +Dakota +Daniela +Daniella +Devon +Essence +Heidi +India +Isis +Jailene +Jaime +Janessa +Jenny +Kasey +Katelynn +Kaylie +Kierra +Lesly +Liana +Lila +Liliana +Lilly +Logan +Marie +Nicolette +Nora +Nyasia +Savanna +Tabitha +Tyler +Aimee +Ann +Brandi +Carlie +Celia +Cindy +Elaine +Elyssa +Emilee +Felicity +Giuliana +Helen +Iris +Ivy +Jazmine +Jeanette +Joelle +Johanna +Kailee +Kali +Kamryn +Kassidy +Kiera +Kira +Lena +Lexie +Lia +Linda +Micaela +Rhiannon +Rylee +Sadie +Sarina +Selina +Sonia +Tamara +Taryn +Tatianna +Tori +Valeria +Adrienne +Alize +Alysha +Amani +Amaya +Amina +Annika +Antonia +Anya +Ayanna +Brenda +Calista +Cheryl +Chyanne +Colby +Damaris +Deborah +Delilah +Eden +Ellen +Emani +Emely +Frances +Giana +Gloria +Haylee +Hunter +Jacquelyn +Jazlyn +Josie +Katerina +Kaylah +Keara +Kelsie +Kennedy +Lacey +Lea +Makenna +Makenzie +Maura +Melinda +Melody +Nancy +Nikki +Pamela +Paris +Paulina +Payton +Raven +Regina +Rosa +Ruby +Ruth +Shayla +Sheila +Suzanne +Unique +Aisha +Alejandra +Aleksandra +Angie +Anika +Anjali +Annalise +Ashlyn +Aubrey +Audra +Breana +Bria +Brynn +Campbell +Candace +Carla +Carmen +Carol +Carolina +Cassie +Celina +Christiana +Cierra +Colette +Daria +Delia +Dina +Eleni +Elisa +Elissa +Eliza +Ella +Fatima +Genevieve +Giselle +Gwyneth +Heaven +Jaida +Janae +Janaya +Janet +Jayda +Jaylene +Jewel +Karissa +Katarina +Kaya +Kaylin +Kelli +Keri +Kiersten +Larissa +Leann +Loren +Lucia +Lucie +Luz +Marielle +Marlene +Melisa +Mickayla +Nathalie +Priscilla +Rachelle +Raina +Reilly +Rosemary +Shaina +Shanelle +Shauna +Sidney +Siena +Simone +Taina +Teagan +Tiara +Valentina +Vivian +Xiomara +Zaria +Emily +Sarah +Samantha +Olivia +Hannah +Julia +Ashley +Madison +Jessica +Emma +Elizabeth +Lauren +Alyssa +Grace +Kayla +Amanda +Victoria +Brianna +Abigail +Alexandra +Nicole +Katherine +Taylor +Alexis +Megan +Rachel +Caroline +Sydney +Sophia +Anna +Rebecca +Isabella +Erin +Destiny +Morgan +Gabrielle +Kaitlyn +Jennifer +Natalie +Jenna +Stephanie +Alexa +Allison +Haley +Caitlin +Molly +Danielle +Christina +Madeline +Kelly +Gabriella +Brooke +Sara +Mary +Catherine +Jasmine +Jillian +Mackenzie +Marissa +Lily +Margaret +Chloe +Maria +Paige +Ariana +Hailey +Amber +Kathryn +Michelle +Sierra +Cassandra +Sophie +Claire +Carly +Shannon +Courtney +Erica +Katelyn +Meghan +Vanessa +Heather +Isabel +Leah +Melissa +Isabelle +Jacqueline +Laura +Maya +Ava +Jordan +Briana +Kelsey +Lindsey +Savannah +Zoe +Hayley +Sabrina +Angela +Melanie +Kaylee +Mia +Arianna +Jada +Kimberly +Kristen +Mariah +Kiara +Tatiana +Cassidy +Charlotte +Madelyn +Amy +Lindsay +Angelina +Brittany +Juliana +Michaela +Autumn +Gabriela +Makayla +Amelia +Faith +Kate +Nina +Veronica +Chelsea +Gianna +Jamie +Kathleen +Mikayla +Sofia +Tiffany +Cheyenne +Natalia +Alexandria +Alison +Jocelyn +Kendall +Lillian +Skylar +Audrey +Bridget +Cameron +Erika +Trinity +Caitlyn +Carolyn +Christine +Kaitlin +Naomi +Riley +Adriana +Alana +Andrea +Colleen +Julianna +Alexia +Angelica +Britney +Camryn +Casey +Elena +Kayleigh +Tessa +Avery +Bianca +Eliza +Maeve +Alicia +Desiree +Gillian +Hope +Katie +Rachael +Serena +Shelby +Imani +Amaya +Breanna +Ella +Gina +Holly +Jade +Julie +Kiana +Kristina +Miranda +Selena +Valerie +Anne +Brittney +Kara +Katrina +Kendra +Madeleine +Maggie +Mallory +Marisa +Mya +Phoebe +Aliyah +Brenna +Clare +Delaney +Eleanor +Elise +Hanna +Leslie +Patricia +Asia +Ayanna +Bailey +Eva +Genesis +Kassandra +Krystal +Nia +Anastasia +Bethany +Cara +Monica +Nadia +Payton +Raven +Summer +Tara +Aaliyah +Alessandra +Carmen +Ciara +Claudia +Daniela +Diana +Francesca +Kaleigh +Lauryn +Lydia +Mckenzie +Natasha +Thalia +Tiana +Adrianna +Annie +Elisabeth +Emilia +Evelyn +Fiona +Jane +Jayda +Kyla +Kylie +Marie +Meredith +Nora +Rose +Shea +Abby +Allyson +Ana +Annabel +Ariel +Daisy +Dakota +Georgia +Jordyn +Lucy +Marina +Nyasia +Renee +Tabitha +Tess +Cynthia +Dana +Diamond +Dominique +Halle +Karen +Maura +Mikaela +Skyler +Alissa +Aryanna +Cassie +Cristina +Deanna +Devin +Felicia +Heidi +Jacquelyn +Jazmine +Kailey +Karina +Kaylin +Krista +Lexi +Rebekah +Rhiannon +Ryan +Sadie +Shania +Teresa +Tianna +Camille +Cindy +Corinne +Crystal +Eileen +Ellen +Ellie +Greta +Ivy +Jaida +Jessie +Joanna +Josephine +Kasey +Katerina +Lia +Lisa +Mckayla +Meagan +Monique +Ruby +Ruth +Sandra +Shayla +Shayna +Tamara +Tatyana +Alaina +Angel +Annabelle +Annalise +April +Ashlee +Barbara +Cora +Daniella +Deja +Emilie +Essence +Jazmin +Juliette +Katelynn +Kira +Kirsten +Kylee +Larissa +Leilani +Liliana +Mahogany +Mariana +Mckenna +Savanna +Talia +Theresa +Unique +Whitney +Aisha +Alysha +Ashleigh +Brenda +Brynn +Carina +Cecilia +Christiana +Clara +Dayana +Devon +Hallie +Hana +Heaven +Helen +India +Jailene +Julianne +Juliet +Kamryn +Karla +Kaylie +Kellie +Kiera +Kiley +Kyra +Layla +Leila +Lila +Linda +Makenna +Marley +Martha +Meaghan +Nathalie +Nikki +Raquel +Regina +Reilly +Sage +Sally +Skye +Tia +Tyanna +Vivian +Willow +Aileen +Aimee +Alanna +Alejandra +Alice +Alisha +Alycia +Ashlyn +Aubrey +Brielle +Carla +Carley +Carlie +Celia +Chasity +Deborah +Elisa +Eve +Fatima +Felicity +Haleigh +Harley +Hunter +Jana +Jasmin +Jessenia +Kaitlynn +Karissa +Kassidy +Katarina +Kelley +Kristin +Lena +Leticia +Lilian +Lilly +Logan +Makenzie +Melina +Moriah +Nicolle +Nikita +Paris +Paulina +Piper +Rylee +Sharon +Shealyn +Siobhan +Stella +Tamia +Tatianna +Taya +Teagan +Tiara +Tori +Valentina +Yamilet +Yasmine +Abbey +Adelina +Adrienne +Alexus +Alina +Alisa +Allie +Allyssa +Alyson +Amina +Amiya +Anaya +Angelique +Anika +Annemarie +Armani +Aryana +Athena +Audra +Bailee +Blair +Brionna +Bryanna +Carrie +Chelsey +Cheyanne +Chyna +Colby +Corrine +Cristal +Daphne +Delia +Destinee +Eden +Elaine +Emani +Emilee +Frances +Gabriele +Gisselle +Gloria +Hailee +Haylee +Helena +Iyana +Izabella +Jaclyn +Jaime +Jesenia +Johanna +Kaelyn +Karly +Karolina +Katharine +Kayle +Keara +Kelli +Kerry +Lacey +Laurel +Lea +Leanna +Liana +Lianna +Lilliana +Lyndsey +Macy +Madisen +Maia +Margarita +Margot +Miriam +Mollie +Nancy +Odalys +Precious +Priscilla +Rachelle +Reagan +Rene +Rochelle +Rosa +Ryann +Sade +Sandy +Sarina +Sasha +Shaina +Shauna +Sheila +Susan +Taryn +Toni +Tyra +Valeria +Wendy +Xiomara +Emily +Julia +Olivia +Hannah +Sarah +Samantha +Abigail +Madison +Emma +Isabella +Jessica +Grace +Ashley +Elizabeth +Lauren +Brianna +Kayla +Victoria +Alyssa +Nicole +Megan +Alexandra +Katherine +Amanda +Caroline +Taylor +Sydney +Rachel +Alexis +Anna +Morgan +Erin +Kaitlyn +Jenna +Sophia +Stephanie +Hailey +Alexa +Mackenzie +Rebecca +Gabriella +Madeline +Jennifer +Molly +Jasmine +Catherine +Michelle +Natalie +Chloe +Danielle +Destiny +Gabrielle +Jillian +Paige +Allison +Ariana +Caitlin +Sophie +Zoe +Margaret +Kelly +Meghan +Jordan +Briana +Brooke +Christina +Marissa +Ava +Maya +Mia +Arianna +Cassandra +Claire +Leah +Sara +Faith +Shannon +Gianna +Haley +Lily +Mary +Sabrina +Savannah +Riley +Amber +Juliana +Maria +Katelyn +Angela +Laura +Melissa +Charlotte +Jacqueline +Mikayla +Angelina +Sierra +Aaliyah +Amelia +Autumn +Courtney +Isabelle +Julianna +Kathryn +Kelsey +Makayla +Sofia +Carly +Cassidy +Kimberly +Vanessa +Caitlyn +Erica +Kaylee +Michaela +Audrey +Avery +Jada +Lindsey +Chelsea +Isabel +Kylie +Lillian +Jade +Lindsay +Alexia +Tatiana +Bridget +Gabriela +Mariah +Heather +Natalia +Skylar +Amy +Brittany +Trinity +Andrea +Carolyn +Francesca +Katie +Mya +Casey +Kiara +Madelyn +Melanie +Alana +Genesis +Gillian +Kathleen +Lydia +Jocelyn +Jordyn +Miranda +Alexandria +Breanna +Tiana +Bailey +Camryn +Kate +Katrina +Veronica +Adriana +Alison +Anne +Bianca +Cheyenne +Clare +Jamie +Kaitlin +Kristina +Meredith +Shelby +Diana +Elena +Erika +Hayley +Kara +Madeleine +Nina +Aliyah +Allyson +Angelica +Britney +Delaney +Desiree +Hanna +Holly +Hope +Nayeli +Sadie +Abby +Alicia +Claudia +Julie +Maggie +Mariana +Naomi +Rachael +Summer +Tiffany +Valerie +Ana +Cameron +Camille +Christine +Eleanor +Fiona +Kyra +Mckenzie +Natasha +Nia +Sage +Anastasia +Carissa +Daniela +Daniella +Ella +Jane +Jazmin +Jazmine +Kiana +Meagan +Nadia +Phoebe +Renee +Rose +Sasha +Serena +Adrianna +Alessandra +Amaya +Asia +Cynthia +Diamond +Evelyn +Helen +Imani +Jacquelyn +Joanna +Juliette +Kailey +Kristen +Lucy +Marina +Tori +Colleen +Dana +Deanna +Elisabeth +Ellie +Gina +Marisa +Taina +Alice +Alyson +Cara +Ciara +Clara +Cristina +Daisy +Denise +Elise +Eva +Karla +Kayleigh +Krystal +Melody +Nevaeh +Valentina +Annabel +Annika +Bethany +Bryanna +Crystal +Eliza +Georgia +Heaven +Janelle +Juliet +Karina +Kasey +Linda +Lisa +Maeve +Patricia +Selena +Shayla +Tara +Tessa +Alanna +Alexus +Alissa +Aubrey +Brenna +Carolina +Cierra +Cindy +Emely +Eve +Fatima +Genevieve +Isis +Jayda +Jayla +Josephine +Kiera +Kira +Madalyn +Maura +Mckenna +Mikaela +Monica +Nyla +Paola +Payton +Sandra +Talia +Alondra +Ann +Annie +Brenda +Christiana +Destinee +Dominique +Heidi +Krista +Leslie +Lilly +Nathalie +Rebekah +Ruth +Taryn +Tatyana +Theresa +Tianna +Valeria +Violet +Angel +Annabelle +Armani +Ayanna +Brittney +Carla +Dakota +Dynasty +Eileen +Eliana +India +Iris +Izabella +Jenny +Karissa +Kassandra +Kassidy +Katharine +Kellie +Kendall +Layla +Leila +Lucia +Meadow +Micaela +Priscilla +Reagan +Savanna +Skye +Tabitha +Tess +Whitney +Willow +Yasmin +Alisa +Alisha +Annabella +April +Ashlyn +Celia +Devin +Elaine +Elissa +Ellen +Giovanna +Greta +Jaden +Jayna +Jolie +Kaleigh +Katelynn +Kylee +Larissa +Lena +Lilah +Mallory +Mara +Marie +Mckayla +Melina +Nora +Nyasia +Regan +Ruby +Ryleigh +Shea +Simone +Sonia +Yasmine +Alize +Allie +Anijah +Anisa +Aniya +Anjali +Annmarie +Ashlee +Ashleigh +Athena +Cailin +Caleigh +Callie +Carley +Carlie +Carrie +Catalina +Cheyanne +Cora +Devon +Ebony +Elaina +Felicia +Gretchen +Guadalupe +Irene +Isabela +Jaelyn +Jailyn +Jaime +Jasmin +Jessie +Joelle +Johanna +Justine +Kacey +Kaila +Kaitlynn +Karli +Kayley +Kirsten +Kristin +Kyla +Laila +Laurel +Lauryn +Lea +Lexie +Lila +Lilian +Madyson +Maia +Makenzie +Maureen +Melinda +Mercedes +Mikaila +Pamela +Paula +Peyton +Precious +Rosemary +Saige +Shania +Sharon +Sheila +Siobhan +Skyler +Susan +Tamara +Tamia +Tanya +Toni +Vivian +Yesenia +Zoey +Abbey +Aileen +Aisha +Alaina +Alejandra +Alina +Amya +Annalise +Anya +Ariel +Aryana +Ashlynn +Aurora +Ayana +Camilla +Carmen +Cassie +Cecilia +Celina +Chelsey +Dayanara +Deborah +Deja +Delia +Elsa +Emilee +Fernanda +Frances +Giselle +Gloria +Hailee +Halle +Hallie +Hana +Hunter +Jacklyn +Jaclyn +Jaida +Jaiden +Janaya +Jaylene +Jayne +Josie +Joy +Julianne +Kailyn +Kali +Kamryn +Katerina +Kaylie +Kaylyn +Kianna +Kiarra +Kiley +Leilani +Lejla +Lexi +Lexus +Liliana +Mairead +Malia +Monique +Monserrat +Nancy +Nya +Paulina +Princess +Quinn +Raquel +Raven +Reina +Rosa +Ryan +Salma +Sanaa +Saniya +Sarai +Shayna +Sidney +Silvia +Stefanie +Tania +Tatum +Teagan +Thalia +Tiara +Virginia +Emily +Olivia +Emma +Samantha +Julia +Madison +Sarah +Abigail +Isabella +Elizabeth +Grace +Hannah +Victoria +Ashley +Lauren +Kayla +Rachel +Nicole +Jessica +Alexandra +Alyssa +Brianna +Alexis +Anna +Sophia +Katherine +Amanda +Jenna +Morgan +Caroline +Megan +Sydney +Taylor +Kaitlyn +Natalie +Mackenzie +Rebecca +Ava +Chloe +Paige +Sara +Lily +Allison +Hailey +Molly +Jennifer +Madeline +Mia +Brooke +Alexa +Erin +Kelly +Jillian +Gabriella +Jasmine +Sophie +Gabrielle +Jordan +Stephanie +Angelina +Christina +Destiny +Mary +Ariana +Claire +Amber +Charlotte +Maya +Riley +Danielle +Gianna +Caitlin +Aaliyah +Isabelle +Katelyn +Faith +Margaret +Sofia +Zoe +Briana +Kathryn +Catherine +Haley +Makayla +Melissa +Juliana +Maria +Cassandra +Leah +Sierra +Vanessa +Kylie +Ella +Mikayla +Jacqueline +Jada +Melanie +Sabrina +Lindsey +Shannon +Kaylee +Lillian +Angela +Ashanti +Amy +Arianna +Bianca +Gabriela +Jade +Michelle +Marissa +Savannah +Julianna +Kiara +Meghan +Natalia +Laura +Autumn +Isabel +Kelsey +Alexia +Andrea +Cassidy +Trinity +Jocelyn +Kimberly +Mariah +Erica +Heather +Madelyn +Audrey +Caitlyn +Courtney +Lindsay +Skylar +Alicia +Bridget +Chelsea +Hope +Julie +Kaitlin +Valerie +Amelia +Avery +Carly +Lydia +Maeve +Adrianna +Daniela +Elena +Erika +Katie +Tatiana +Veronica +Adriana +Delaney +Hanna +Jamie +Kate +Kathleen +Michaela +Naomi +Alexandria +Angelica +Clara +Diana +Eva +Gillian +Hayley +Kristina +Alison +Ashleigh +Francesca +Lucy +Nayeli +Nina +Crystal +Nevaeh +Summer +Bailey +Cheyenne +Dakota +Jayda +Jordyn +Marisa +Miranda +Nadia +Rachael +Claudia +Evelyn +Imani +Joanna +Karen +Kristen +Kyla +Natasha +Phoebe +Sadie +Talia +Alana +Ana +Christine +Desiree +Diamond +Georgia +Kara +Katrina +Kayleigh +Krystal +Leslie +Lexi +Noelle +Selena +Shelby +Anastasia +Casey +Daniella +Eliza +Emilia +Holly +Maggie +Marina +Mya +Payton +Rylee +Serena +Tessa +Ainsley +Aliyah +Amaya +Anne +Breanna +Cristina +Deanna +Eleanor +Elisabeth +Elise +Fiona +Genevieve +Haylee +Helen +Jazmin +Madeleine +Monica +Nancy +Reagan +Teresa +Tiffany +Allyson +Annie +Annika +Ashlyn +Camryn +Carolyn +Elisa +Ellie +Genesis +Jane +Jasmin +Kailey +Karina +Kiana +Leilani +Lisa +Maia +Sidney +Alissa +Aubrey +Ayanna +Bryanna +Callie +Cameron +Cindy +Clare +Dana +Ellen +Janelle +Jazmine +Juliette +Katharine +Lena +Lia +Lila +Liliana +Mckenna +Meredith +Nora +Nyasia +Peyton +Priscilla +Abby +Alice +Alina +Alisha +Bethany +Britney +Carolina +Cora +Devon +Eden +Gina +Izabella +Josephine +Julianne +Juliet +Kaylie +Kendra +Kiera +Kiley +Linda +Logan +Mariana +Renee +Rose +Sage +Shayla +Susan +Theresa +Tiana +Tianna +Tori +Alessandra +Alivia +Alyson +Angel +Aniyah +Annabelle +Ariel +Bella +Brenda +Brittany +Brynn +Carissa +Cecilia +Celia +Cheyanne +Eve +India +Jaime +Karissa +Kyra +Lara +Lizbeth +Madisyn +Makenna +Maura +Mckayla +Mckenzie +Nia +Nyah +Nyla +Patricia +Sandra +Skyler +Tabitha +Tamia +Tara +Tatyana +Thalia +Valeria +Abbey +Addison +Alanna +Athena +Brenna +Cierra +Colleen +Devyn +Emilee +Giana +Iris +Jacquelyn +Jayden +Jayla +Kylee +Lana +Lilly +Micaela +Mikaela +Nya +Rebekah +Ruby +Simone +Teagan +Tess +Tiara +Alaina +Amari +Annabella +Antonia +Asia +Aurora +Camille +Carley +Ciara +Deborah +Devin +Fatima +Gwendolyn +Ivy +Jaden +Jadyn +Jenny +Jolie +Justine +Kaitlynn +Kendall +Kerry +Kira +Lea +Macy +Marley +Meagan +Melody +Penelope +Raven +Reese +Rianna +Ruth +Sasha +Serenity +Taryn +Yasmin +Adrienne +Aisha +Alejandra +Alize +Ally +Alysha +Anissa +Beatrice +Breana +Celine +Chelsey +Daisy +Daria +Dominique +Elaina +Eliana +Esmeralda +Gia +Giselle +Hailee +Haleigh +Halle +Heidi +Isabela +Jaclyn +Jaiden +Jailyn +Josie +Julissa +Karli +Karly +Kasey +Kassandra +Katarina +Kennedy +Kiersten +Lola +Lorena +Lucia +Lyndsey +Marie +Maureen +Mercedes +Pamela +Piper +Regan +Reilly +Sarina +Savanna +Shania +Shayna +Shea +Skye +Sonia +Sylvia +Taina +Tamara +Tatum +Tyler +Vivian +Adeline +Aileen +Aiyana +Alayna +Allie +Alondra +Amani +Amira +Aneesa +Anika +Ann +Annabel +Annalise +Anya +April +Aracely +Arielle +Armani +Ashlee +Ashlynn +Brandy +Carina +Carla +Carmen +Cate +Chanel +Christa +Cynthia +Danae +Dayanara +Dayna +Deja +Denise +Dina +Elissa +Elyse +Emilie +Ericka +Felicity +Giovanna +Giuliana +Gloria +Hayden +Hazel +Isha +Iyanna +Jaida +Janessa +Janet +Jazmyn +Jesse +Jessie +Joy +Justice +Kaila +Kailyn +Kaley +Kamryn +Kianna +Kirsten +Kristin +Kyah +Laurel +Leila +Liana +Lilah +Linnea +Litzy +Mae +Mairead +Mara +Meaghan +Mollie +Monique +Nayelie +Nayelis +Neha +Paris +Paulina +Precious +Riya +Rosa +Rosalie +Ryley +Samara +Scarlett +Shirley +Stella +Wendy +Willow +Yesenia +Emma +Emily +Olivia +Madison +Julia +Grace +Samantha +Abigail +Sarah +Isabella +Hannah +Ashley +Elizabeth +Lauren +Brianna +Jessica +Sophia +Alexandra +Alyssa +Katherine +Victoria +Ava +Alexis +Kayla +Megan +Nicole +Natalie +Sydney +Rachel +Amanda +Mia +Caroline +Anna +Kaitlyn +Morgan +Brooke +Taylor +Hailey +Chloe +Jenna +Madeline +Rebecca +Gabriella +Mackenzie +Destiny +Erin +Paige +Alexa +Catherine +Ariana +Ella +Jennifer +Kylie +Zoe +Allison +Charlotte +Claire +Lily +Maya +Molly +Sara +Riley +Gianna +Isabelle +Jillian +Haley +Jordan +Meghan +Arianna +Kelly +Stephanie +Margaret +Avery +Christina +Gabrielle +Makayla +Mary +Sophie +Kathryn +Angelina +Jada +Juliana +Leah +Sofia +Amelia +Caitlin +Danielle +Jasmine +Faith +Lillian +Amy +Audrey +Marissa +Shannon +Trinity +Aaliyah +Jocelyn +Kaylee +Maria +Amber +Caitlyn +Isabel +Kate +Michelle +Katelyn +Sabrina +Savannah +Briana +Kimberly +Adriana +Carly +Jade +Kathleen +Melissa +Angela +Courtney +Lindsay +Mya +Natalia +Nina +Alexia +Alison +Madelyn +Michaela +Vanessa +Jacqueline +Jamie +Melanie +Gabriela +Sierra +Autumn +Hayley +Laura +Lindsey +Julianna +Lucy +Veronica +Alexandria +Amaya +Jordyn +Madeleine +Mikayla +Alicia +Chelsea +Eva +Leslie +Andrea +Bailey +Kiara +Tatiana +Cassandra +Diana +Elena +Eliza +Erica +Tiffany +Alana +Ana +Bianca +Bridget +Erika +Genesis +Heather +Karina +Kayleigh +Delaney +Fiona +Kaitlin +Kendall +Lydia +Mariana +Abby +Anastasia +Angelica +Casey +Cassidy +Natasha +Noelle +Sage +Skylar +Tessa +Adrianna +Francesca +Gillian +Julie +Kelsey +Nevaeh +Nora +Shelby +Allyson +Annabelle +Clara +Diamond +Evelyn +Kristina +Naomi +Rose +Tiana +Valerie +Brenna +Brittany +Eleanor +Kailey +Maeve +Nadia +Serena +Talia +Aliyah +Bethany +Hanna +Katharine +Kiera +Makenzie +Mariah +Mckenzie +Peyton +Rachael +Summer +Alanna +Brynn +Carolyn +Daniella +Gina +Gracie +Holly +Kara +Karen +Katie +Kyla +Miranda +Phoebe +Sadie +Stella +Alisha +Anne +Ayanna +Breanna +Cheyenne +Daisy +Daniela +Eliana +Elisabeth +Ellie +Janelle +Kiley +Kyra +Layla +Maggie +Mallory +Marisa +Monica +Piper +Savanna +Skyler +Alice +Allie +Bryanna +Christine +Ciara +Elise +Hope +Imani +Jaime +Jane +Jayda +Kassandra +Kassidy +Kiana +Leila +Lia +Lila +Liliana +Meredith +Renee +Tara +Thalia +Tori +Vivian +Aisha +Alivia +Camille +Cecilia +Colleen +Crystal +Cynthia +Desiree +Emilia +Giovanna +Jessie +Josephine +Katrina +Kristen +Mckenna +Rylee +Shayla +Alaina +Alissa +Angel +Aniya +Ashleigh +Aubrey +Carissa +Claudia +Cristina +Dana +Georgia +Heaven +Ingrid +Jailyn +Jasmin +Jayden +Jazmine +Karla +Kaylie +Krystal +Lilly +Lucia +Nia +Patricia +Payton +Ruby +Sasha +Shea +Teresa +Valentina +Alayna +Anika +Aniyah +Annika +Ashanti +Aurora +Baby +Callie +Cameron +Camila +Cara +Carley +Carolina +Cindy +Giuliana +Iris +Johanna +Juliet +Julissa +Leilani +Lena +Lexi +Lilliana +Madisyn +Makenna +Nyasia +Raven +Sandra +Skyla +Addison +Ainsley +Annie +Ariel +Ashlee +Asia +Barbara +Brooklyn +Denise +Devon +Dylan +Esther +Giana +Hailee +Hayden +Helen +Isabela +Jadyn +Janae +Jazmin +Joanna +Juliette +Kaila +Kaya +Keira +Kendra +Kira +Krista +Maia +Melody +Mikaela +Nancy +Priscilla +Rebekah +Rylie +Selena +Serenity +Susan +Tabitha +Tatum +Tatyana +Tess +Abbey +Alessandra +Amiya +Annabella +Brenda +Cierra +Clarissa +Dakota +Elaina +Emely +Emerson +Giselle +Hadley +Haylie +Helena +Janiah +Justine +Luz +Mara +Marguerite +Marianna +Marina +Meaghan +Phoenix +Quinn +Ryleigh +Sarai +Taina +Tania +Willow +Abigale +Aida +Alejandra +Alessia +Alina +Ally +Alyson +Amari +Anabel +Anjali +Antonia +Armani +Aryana +Ashlyn +Bella +Britney +Camryn +Carmen +Cassie +Celia +Clare +Deanna +Deborah +Devin +Diane +Eden +Elisa +Ellen +Eloise +Ericka +Eve +Fatima +Felicia +Fernanda +Genevieve +Gwendolyn +Hazel +India +Iyanna +Izabella +Jaclyn +Jaden +Janessa +Janiyah +Jayla +Jaylee +Jaylyn +Jenesis +Joyce +Julianne +Kaelyn +Karleigh +Katelynn +Kaylin +Kennedy +Kristin +Kyara +Kylee +Laci +Laila +Laurel +Liana +Lisa +Logan +Lola +Madyson +Margaux +Martina +Maura +Mckayla +Melina +Paula +Paulina +Reilly +Shayna +Shreya +Sidney +Tianna +Wendy +Yashira +Yasmine +Zoey +Aimee +Alecia +Aleena +Alena +Amalia +Anabelle +Anaya +Angelique +Anisa +Anneliese +Annette +Arden +Ayesha +Beverly +Brianne +Cailey +Camilla +Candace +Carina +Chase +Delia +Elaine +Elle +Elsa +Elyssa +Faye +Guadalupe +Halle +Hallie +Ilana +Isyss +Ivy +Jacquelyn +Jaida +Jania +Jayleen +Jenny +Joelle +Joselyn +Josie +Joslyn +Kaleigh +Kamryn +Katarina +Katerina +Kaylyn +Kirsten +Kristine +Lauryn +Lesley +Lesly +Lilian +Lillie +Linda +Liv +Livia +Lizbeth +Lorelai +Lucille +Lyla +Macy +Melany +Melisa +Monika +Monique +Myra +Neha +Nyla +Paris +Princess +Reese +Rhiannon +Ria +Rosemary +Ryan +Samira +Sarina +Savanah +Sonia +Stephany +Tahlia +Tamara +Tatyanna +Theresa +Tyler +Valeria +Virginia +Xiomara +Zaria +Emily +Olivia +Emma +Isabella +Samantha +Madison +Julia +Grace +Sophia +Sarah +Abigail +Ashley +Ava +Elizabeth +Alexandra +Alyssa +Brianna +Kayla +Lauren +Anna +Hannah +Jessica +Katherine +Nicole +Victoria +Mia +Natalie +Ella +Lily +Sydney +Gabriella +Alexis +Caroline +Morgan +Amanda +Brooke +Rachel +Kaitlyn +Taylor +Hailey +Megan +Jenna +Allison +Rebecca +Erin +Sofia +Alexa +Mackenzie +Gianna +Paige +Riley +Zoe +Jordan +Molly +Catherine +Jennifer +Madeline +Leah +Amelia +Maya +Chloe +Arianna +Charlotte +Michelle +Stephanie +Jillian +Angelina +Ariana +Jasmine +Mary +Sara +Trinity +Gabrielle +Margaret +Faith +Kathryn +Kylie +Makayla +Katelyn +Destiny +Juliana +Maria +Caitlin +Jacqueline +Sophie +Avery +Julianna +Kaylee +Danielle +Savannah +Sabrina +Gabriela +Haley +Isabelle +Lillian +Vanessa +Bridget +Isabel +Christina +Marissa +Adriana +Lindsey +Aaliyah +Amber +Amy +Jocelyn +Kelly +Melanie +Autumn +Claire +Jade +Lindsay +Madelyn +Tatiana +Carly +Cassandra +Jada +Kimberly +Nina +Audrey +Courtney +Meghan +Mikayla +Natalia +Nevaeh +Kate +Andrea +Bianca +Jamie +Angela +Daniela +Katie +Shannon +Genesis +Skylar +Alana +Erica +Fiona +Laura +Melissa +Veronica +Alicia +Amaya +Bailey +Eliza +Kiara +Mya +Sierra +Lydia +Michaela +Nora +Adrianna +Alison +Chelsea +Eva +Jordyn +Kristina +Lucy +Madeleine +Maggie +Shelby +Diana +Elena +Kayleigh +Kelsey +Kyla +Sadie +Alexia +Emilia +Erika +Layla +Ashlyn +Caitlyn +Evelyn +Karina +Lia +Mariah +Naomi +Peyton +Sage +Talia +Tessa +Ana +Camryn +Eleanor +Karen +Abby +Daniella +Francesca +Gillian +Jayda +Kailey +Kendall +Kyra +Laila +Lila +Lilly +Piper +Tiffany +Alexandria +Angelica +Briana +Cassidy +Cheyenne +Claudia +Ellie +Katrina +Tiana +Zoey +Anne +Asia +Diamond +Elise +Jazmin +Julie +Keira +Mallory +Ruby +Alissa +Anastasia +Cameron +Camila +Delaney +Esther +Giovanna +Giselle +Kiera +Leila +Liliana +Lucia +Mckenna +Noelle +Payton +Rachael +Rose +Serena +Shayla +Stella +Allyson +Aniya +Breanna +Genevieve +Hanna +Heather +Josephine +Julianne +Kathleen +Kristen +Lizbeth +Marina +Miranda +Phoebe +Rylee +Summer +Valerie +Aliyah +Britney +Cadence +Clare +Elisabeth +Georgia +Juliette +Kaitlin +Katharine +Mariana +Meredith +Norah +Rebekah +Shania +Vivian +Aiyana +Aubrey +Carissa +Carolina +Cecilia +Christine +Ciara +Deanna +Hayley +Holly +Jayla +Kaleigh +Kara +Kira +Lexi +Lola +Nia +Reagan +Renee +Tara +Alanna +Alyson +Amari +Annabelle +Ashanti +Ayanna +Bella +Carolyn +Eve +Gracie +Helen +Janessa +Janiya +Kaya +Kendra +Kiley +Kylee +Leilani +Liana +Maeve +Nancy +Pamela +Shea +Tatyana +Teresa +Thalia +Alaina +Alivia +Anika +Ashlee +Bethany +Brenda +Brenna +Crystal +Cynthia +Daisy +Elle +Emely +Felicia +Giana +Gina +Hope +Imani +Isabela +Ivy +Jaime +Jane +Johanna +Joy +Juliet +Kasey +Katarina +Katelynn +Kaylah +Krystal +Mckenzie +Melody +Monica +Nadia +Natasha +Nyasia +Paris +Reilly +Sandra +Selena +Skye +Tori +Valentina +Alejandra +Alessandra +Allie +Angel +Aniyah +Annika +Ariel +Ashleigh +Athena +Ayana +Baby +Beatrice +Callie +Camille +Clara +Dakota +Destinee +Drew +Dylan +Eliana +Fatima +Jaelyn +Kassandra +Kirsten +Macy +Madisyn +Maia +Makenna +Makenzie +Marie +Patricia +Priscilla +Scarlett +Serenity +Siena +Tamia +Teagan +Theresa +Tia +Tianna +Alayna +Alisha +Ally +Annie +Anya +Breana +Brooklyn +Casey +Catalina +Colleen +Cora +Devon +Elaina +Ellen +Essence +Frances +Giuliana +Heidi +Iris +Isha +Jaylee +Joanna +Kailyn +Kiana +Kiersten +Lara +Leslie +Lesly +Lilliana +Livia +Logan +Maura +Meagan +Nichole +Nyla +Paula +Simone +Sylvia +Taina +Taryn +Tatum +Tess +Tyler +Virginia +Aimee +Aleena +Alice +Amelie +Anabelle +Anaya +Aryana +Ashlynn +Aurora +Brynn +Celeste +Dayanara +Diya +Elisa +Elsa +Greta +Gwyneth +Halle +Hallie +Haylee +Heaven +Jaida +Jaiden +Janelle +Jayden +Joselyn +Justine +Kassidy +Kayley +Kaylie +Kennedy +Kimora +Kristin +Lea +Marcella +Marianna +Marisa +Marley +Melina +Mercedes +Milena +Rhea +Rory +Ruth +Sasha +Shreya +Skyler +Tania +Whitney +Yasmin +Abigale +Adalia +Adeline +Adrienne +Ainsley +Aisha +Aislinn +Aliana +Alisa +Amya +Anais +Angie +Annabella +Arielle +Armani +Ayla +Brittney +Bryanna +Calista +Campbell +Carina +Celia +Celine +Chanel +Charlize +Christiana +Cristina +Dana +Dayana +Desiree +Eden +Eloise +Emani +Emerson +Emilee +Gia +Haylie +Helena +Irene +Iyanna +Jaden +Jadyn +Janiah +Jasmin +Jayleen +Jazlyn +Jazlynn +Jazmine +Jessie +Julissa +Kai +Kaila +Kaiya +Kamryn +Karla +Karlee +Katy +Kaylin +Lacey +Laci +Laniya +Linda +Lisette +Lucille +Magdalena +Marilyn +Marin +Maritza +Mila +Miracle +Moira +Neha +Paola +Paulina +Penelope +Princess +Priya +Raquel +Raven +Reese +Regina +Rowan +Rylie +Saige +Samara +Sanaa +Sanai +Sheridan +Sonia +Susan +Sydnie +Tanisha +Tyana +Violet +Yolanda +Olivia +Emily +Ava +Emma +Isabella +Madison +Abigail +Grace +Sophia +Samantha +Julia +Elizabeth +Sarah +Katherine +Hannah +Mia +Ashley +Alexandra +Lauren +Anna +Kayla +Alyssa +Ella +Brianna +Gabriella +Natalie +Hailey +Victoria +Alexis +Sofia +Lily +Kaitlyn +Sydney +Amanda +Taylor +Gianna +Jessica +Caroline +Nicole +Alexa +Rachel +Amelia +Chloe +Morgan +Maya +Angelina +Avery +Charlotte +Megan +Riley +Jenna +Molly +Catherine +Brooke +Madeline +Paige +Sophie +Mackenzie +Stephanie +Destiny +Allison +Jennifer +Zoe +Ariana +Sara +Arianna +Caitlin +Gabrielle +Makayla +Jada +Lillian +Audrey +Jasmine +Leah +Rebecca +Kiara +Mary +Isabelle +Faith +Kaylee +Kelly +Kylie +Haley +Danielle +Kathryn +Kate +Mya +Erin +Natalia +Savannah +Adrianna +Claire +Maria +Marissa +Nevaeh +Christina +Jordan +Kimberly +Vanessa +Ciara +Jillian +Katelyn +Jacqueline +Julianna +Laura +Trinity +Adriana +Evelyn +Gabriela +Margaret +Andrea +Eva +Jocelyn +Juliana +Meghan +Aaliyah +Mariah +Michelle +Veronica +Isabel +Lindsay +Lindsey +Mikayla +Caitlyn +Carly +Cassandra +Jamie +Madelyn +Shannon +Skylar +Summer +Tatiana +Melissa +Nina +Amber +Amy +Lucy +Sabrina +Sierra +Stella +Bianca +Melanie +Diana +Elena +Katie +Katrina +Kelsey +Kendall +Sadie +Alana +Alicia +Briana +Cassidy +Angela +Angelica +Autumn +Chelsea +Elise +Jordyn +Naomi +Delaney +Francesca +Sienna +Bridget +Courtney +Kathleen +Michaela +Payton +Alexia +Anne +Casey +Clara +Eliza +Genesis +Jade +Jazmin +Kristina +Miranda +Paris +Tessa +Abby +Aniyah +Breanna +Georgia +Hanna +Jane +Kyla +Layla +Leila +Alexandria +Alivia +Aliyah +Camila +Camille +Heather +Jasmin +Liliana +Reagan +Skyler +Alice +Amaya +Bella +Celia +Dakota +Daniela +Daniella +Eleanor +Eliana +Hayley +Kaitlin +Kayleigh +Kyra +Nadia +Nora +Peyton +Ruby +Shelby +Talia +Tiffany +Valerie +Annabelle +Ariel +Aubrey +Erika +Heaven +Keira +Kiera +Madeleine +Marisa +Natasha +Sage +Anastasia +Angie +Brooklyn +Brynn +Carolina +Cecelia +Cecilia +Genevieve +Imani +Lia +Lilly +Marina +Meredith +Piper +Sasha +Skye +Aniya +Annika +Carolyn +Cynthia +Daisy +Erica +Gina +Ivy +Jazmine +Josephine +Kamryn +Karina +Leslie +Lila +Melina +Rose +Tess +Alanna +Alayna +Alessandra +Ana +Ashlyn +Bailey +Camryn +Cheyenne +Claudia +Crystal +Fiona +Helena +Hope +Jayda +Jayla +Juliette +Katharine +Kendra +Phoebe +Selena +Brenna +Callie +Desiree +Ellie +Emilia +Giana +Gracie +India +Janiya +Jayleen +Julissa +Kaleigh +Kaylie +Kylee +Lydia +Maeve +Maggie +Mariana +Mckenna +Rachael +Reese +Serenity +Alaina +Alina +Alison +Allyson +Amya +Barbara +Bethany +Fatima +Giselle +Izabella +Janelle +Jaylin +Julie +Kailey +Karen +Lea +Maia +Mallory +Monica +Norah +Quinn +Renee +Ryan +Sanai +Teagan +Tiana +Valentina +Vivian +Alisha +Aryanna +Aurora +Cameron +Carmen +Christine +Colleen +Elle +Emely +Emilie +Gillian +Holly +Joy +Kaylin +Kiley +Kira +Lana +Larissa +Lauryn +Lucia +Macy +Madalyn +Mckenzie +Melody +Nyla +Rylee +Sandra +Tori +Violet +Aditi +Ashleigh +Asia +Dana +Diamond +Dylan +Gwendolyn +Isabela +Kaley +Karla +Kennedy +Lara +Lena +Lola +Nyasia +Sariah +Savanna +Shayla +Shea +Skyla +Stefanie +Thalia +Zainab +Zoey +Adeline +Ainsley +Anya +Arielle +Ayla +Brittany +Bryanna +Cadence +Carla +Cristina +Devyn +Dina +Elaine +Esther +Evangeline +Eve +Giovanna +Greta +Hayden +Haylee +Helen +Jaidyn +Janae +Jazmyn +Johanna +Juliet +Kara +Kassandra +Katelynn +Kirsten +Lacey +Liana +Linda +Luciana +Makenna +Marie +Maura +Mercedes +Mikaela +Noelle +Paulina +Rosemary +Samara +Shania +Tara +Tatianna +Tatum +Tatyana +Tiara +Virginia +Viviana +Addison +Aisha +Amani +Anika +Anisa +Ann +Annabel +Aria +Ariella +Ayanna +Cassie +Cindy +Danna +Denise +Devon +Diya +Eden +Elaina +Elisa +Elisabeth +Eloise +Elyse +Emerson +Gisselle +Gloria +Guadalupe +Iliana +Iris +Jadyn +Jaime +Janiah +Jessenia +Julianne +Justine +Kaelyn +Kaila +Kailyn +Kaylani +Kiarra +Kimora +Krystal +Laila +Laisha +Leilani +Linnea +Marley +Melany +Melisa +Nancy +Natalee +Nathalie +Nia +Paula +Reina +Rhea +Rylie +Sarina +Serena +Simone +Sylvia +Taina +Theresa +Trisha +Valeria +Abigayle +Aiyanna +Alisa +Alissa +Allie +Alondra +Amina +Anastacia +Anaya +Angel +Angeline +Anisha +Annelise +April +Armani +Arya +Ashlee +Ashlynn +Baby +Bria +Brielle +Caleigh +Camilla +Campbell +Carley +Cayla +Chanel +Cierra +Clare +Damaris +Daphne +Dayana +Dayanara +Delilah +Drew +Eileen +Elyssa +Emilee +Finley +Hailie +Halle +Harley +Haylie +Jacquelyn +Jaelyn +Janiyah +Jeanette +Joselyn +Judith +Kacie +Karissa +Kasey +Kassidy +Katerina +Kaya +Kaylyn +Kerry +Krista +Kristen +Laniyah +Laurel +Lesly +Lexi +Lilliana +Maddison +Madelynn +Magdalena +Makenzie +Marcella +Mariam +Marilyn +Marin +Mason +Meaghan +Micaela +Monique +Nayeli +Neveah +Nicolle +Nya +Pamela +Penelope +Raquel +Regina +Rhiannon +Ria +Rory +Rosa +Saige +Sally +Sanaa +Sanjana +Sheila +Sidney +Stacey +Susan +Taryn +Teresa +Willow +Yasmin +Yasmine +Yesenia +Isabella +Emily +Ava +Olivia +Emma +Madison +Grace +Julia +Abigail +Sophia +Samantha +Hannah +Mia +Sarah +Gabriella +Elizabeth +Ashley +Brianna +Lauren +Anna +Katherine +Victoria +Ella +Kayla +Alyssa +Gianna +Alexandra +Chloe +Sofia +Alexa +Brooke +Natalie +Taylor +Charlotte +Hailey +Alexis +Lily +Maya +Caroline +Morgan +Angelina +Rachel +Leah +Nicole +Sydney +Molly +Riley +Madeline +Mackenzie +Amanda +Lillian +Megan +Kaitlyn +Avery +Sara +Amelia +Ariana +Allison +Arianna +Jessica +Sophie +Zoe +Destiny +Jenna +Erin +Gabrielle +Isabel +Jillian +Natalia +Rebecca +Claire +Paige +Stephanie +Catherine +Isabelle +Juliana +Jasmine +Keira +Madelyn +Makayla +Savannah +Kaylee +Michelle +Nevaeh +Faith +Julianna +Kathryn +Addison +Adrianna +Andrea +Caitlin +Jayla +Jennifer +Katelyn +Danielle +Evelyn +Kimberly +Kylie +Mariah +Alana +Audrey +Lila +Maria +Aaliyah +Adriana +Gabriela +Jocelyn +Jordan +Mya +Angela +Christina +Haley +Lindsey +Margaret +Skylar +Mary +Vanessa +Jacqueline +Kelly +Briana +Kate +Peyton +Sadie +Serenity +Trinity +Kiara +Mikayla +Nina +Sabrina +Eva +Lindsay +Marissa +Melanie +Sierra +Amber +Autumn +Cassandra +Chelsea +Katie +Meghan +Alivia +Bianca +Cassidy +Melissa +Naomi +Shannon +Alexia +Amaya +Amy +Aubrey +Jade +Lucy +Summer +Camryn +Ellie +Jada +Laura +Nora +Sienna +Valerie +Anastasia +Casey +Julie +Layla +Sage +Cheyenne +Delaney +Kyra +Liliana +Madeleine +Phoebe +Reese +Tessa +Alicia +Elise +Genesis +Maggie +Alison +Daniella +Diana +Elena +Erica +Fiona +Genevieve +Kelsey +Kyla +Lilly +Lydia +Michaela +Payton +Anne +Bridget +Cadence +Ciara +Josephine +Kailey +Kira +Stella +Talia +Tatiana +Abby +Alexandria +Annika +Brooklyn +Carly +Eleanor +Hope +Julissa +Maeve +Teagan +Vivian +Zoey +Cameron +Clara +Georgia +Jordyn +Kathleen +Kaylin +Kennedy +Kiera +Lola +Mallory +Natasha +Noelle +Rose +Tiffany +Valentina +Valeria +Veronica +Ana +Aniya +Camila +Dakota +Eliza +Emilia +Francesca +Giselle +Hanna +Imani +Jazmin +Kara +Kayleigh +Kaylie +Leila +Nadia +Penelope +Ruby +Aliyah +Anaya +Aniyah +Ashlyn +Ayla +Daisy +Daniela +Eliana +Erika +Giana +Jayda +Lilliana +Marina +Meredith +Miranda +Nyla +Piper +Shelby +Colleen +Courtney +Emerson +Izabella +Kendall +Kiersten +Kylee +Rachael +Rihanna +Scarlett +Yasmin +Alanna +Anika +Aurora +Ayanna +Bella +Caitlyn +Danica +Eve +Gina +Hayley +Mariana +Melody +Monica +Nyasia +Reagan +Sanai +Shayla +Skye +Tianna +Alice +Bailey +Bethany +Camille +Cecelia +Cecilia +Claudia +Cynthia +Dana +Diamond +Elle +Holly +Jamie +Jasmin +Karen +Karina +Katharine +Kristina +Leslie +Lilah +Nia +Norah +Rebekah +Sasha +Serena +Skyla +Ainsley +Allyson +Alondra +Angel +Aryanna +Carmen +Carolyn +Elsa +Essence +Gia +Giovanna +Heather +Jane +Janelle +Janiya +Jayden +Kaelyn +Kaitlin +Kaleigh +Katrina +Kiana +Lisa +Marley +Melina +Patricia +Rylee +Selena +Shea +Sherlyn +Tiana +Alina +Amani +Angelica +Angie +Annabelle +Ariel +Arielle +Breanna +Brenna +Brielle +Callie +Campbell +Cindy +Clare +Crystal +Eden +Irene +Kailee +Kiley +Kyleigh +Lana +Lauryn +London +Lucia +Madisyn +Madyson +Maia +Makenzie +Mckenzie +Nataly +Nayeli +Nya +Reilly +Savanna +Skyler +Tabitha +Violet +Adeline +Alessandra +Alisha +Alissa +Amaris +Amya +Analise +Annalise +Anya +April +Brenda +Bryanna +Brynn +Camilla +Christine +Daphne +Deborah +Desiree +Esther +Felicia +Felicity +Gillian +Gwyneth +Haylee +Hazel +Heaven +Ivy +Iyanna +Jaden +Jaelyn +Janiyah +Jazmine +Justice +Kaila +Kassandra +Leilani +Lia +Lilyana +Lorelei +Marianna +Marisa +Martha +Maura +Miriam +Nicolette +Rayne +Samara +Savanah +Shania +Sylvia +Tamia +Tia +Tiara +Virginia +Alaina +Alani +Alejandra +Aliana +Alyson +Amiyah +Ananya +Angeline +Angelique +Annabella +Ashlee +Beatrice +Brittany +Cara +Carolina +Catalina +Celeste +Celine +Corinne +Devyn +Elisa +Elisabeth +Emely +Emilie +Esmeralda +Fatima +Giavanna +Giuliana +Gracie +Heidi +Helen +Helena +Isabela +Isis +Ivelisse +Jacquelyn +Jaidyn +Janessa +Jaylin +Jazlyn +Jenny +Joanna +Kamryn +Kassidy +Kaya +Kendra +Lara +Lena +Lorelai +Malia +Marcella +Marie +Mckenna +Mikaela +Milena +Naima +Nancy +Renee +Rhianna +Rhiannon +Rowan +Ryan +Saniya +Selina +Shakira +Simone +Susan +Tania +Tess +Addyson +Alayna +Alena +Alessia +Ally +Alyvia +Amalia +Anabelle +Annaliese +Antonia +Asia +Aubree +Britney +Cameryn +Catarina +Chanel +Cora +Cristina +Deanna +Devon +Divya +Ellen +Emelia +Hadley +Hailee +Haylie +India +Iris +Jailene +Janae +Janiah +Jaylee +Jaylene +Jaylynn +Jenifer +Johanna +Kaia +Kaitlynn +Kali +Kayley +Kianna +Kimora +Kirsten +Krista +Kristen +Kristin +Krystal +Laila +Lexi +Leyla +Liana +Luisa +Luz +Madalyn +Madelynn +Makenna +Mara +Marisol +Mckayla +Melany +Moriah +Natalya +Nathalia +Nathaly +Niasia +Paola +Paris +Quinn +Raquel +Rebeca +Ruth +Rylie +Saige +Sanaa +Saniyah +Sariah +Sarina +Siena +Stacy +Susana +Taryn +Isabella +Olivia +Ava +Emma +Emily +Sophia +Abigail +Madison +Julia +Grace +Samantha +Hannah +Elizabeth +Sarah +Mia +Ella +Alyssa +Natalie +Gabriella +Kayla +Brianna +Alexandra +Katherine +Ashley +Chloe +Victoria +Brooke +Sofia +Gianna +Lauren +Charlotte +Lily +Addison +Hailey +Angelina +Avery +Sydney +Arianna +Maya +Nicole +Alexa +Kaitlyn +Morgan +Sophie +Anna +Jessica +Lillian +Mackenzie +Madeline +Juliana +Zoe +Riley +Aaliyah +Alexis +Allison +Caroline +Natalia +Taylor +Paige +Katelyn +Nevaeh +Isabel +Ariana +Jasmine +Sadie +Kylie +Leah +Madelyn +Amanda +Amelia +Audrey +Sara +Adriana +Catherine +Destiny +Kaylee +Molly +Savannah +Claire +Makayla +Rachel +Jenna +Gabrielle +Gabriela +Kate +Kathryn +Megan +Mary +Jennifer +Maria +Melanie +Rebecca +Evelyn +Lucy +Mariah +Trinity +Christina +Haley +Isabelle +Margaret +Jillian +Aubrey +Fiona +Jordan +Keira +Amber +Andrea +Eva +Tessa +Alana +Caitlyn +Julianna +Liliana +Stephanie +Vanessa +Amy +Erin +Jordyn +Amaya +Faith +Katie +Kimberly +Angela +Layla +Mikayla +Sienna +Briana +Caitlin +Alicia +Jada +Reese +Serenity +Camila +Danielle +Genesis +Lila +Michelle +Mya +Nina +Tatiana +Daniela +Jade +Laura +Michaela +Naomi +Scarlett +Skylar +Bianca +Cassidy +Jacqueline +Kelsey +Kiara +Melissa +Autumn +Bella +Clara +Diana +Maggie +Peyton +Phoebe +Rylee +Zoey +Adrianna +Elise +Francesca +Jocelyn +Summer +Tiffany +Valentina +Alina +Aniya +Georgia +Kelly +Marissa +Nora +Annabelle +Bridget +Cassandra +Eliana +Gracie +Karina +Lindsay +Sabrina +Camryn +Carly +Ciara +Eleanor +Ellie +Hayley +Jayla +Kyla +Leila +Leilani +Lilliana +Lola +Lydia +Meghan +Ruby +Sierra +Stella +Veronica +Alexandria +Alison +Ana +Bailey +Cheyenne +Erica +Jane +Josephine +Juliette +Kailey +Kendra +Lilah +Lucia +Shannon +Valeria +Violet +Abby +Cameron +Courtney +Elena +Erika +Izabella +Kira +Liana +Lilly +Lindsey +Reagan +Sage +Selena +Valerie +Alanna +Alexia +Cara +Cecilia +Chelsea +Hayden +Kathleen +Madeleine +Marley +Nadia +Angie +Anne +Breanna +Giselle +Giuliana +Hope +Imani +Kiley +Maeve +Rachael +Rose +Sarai +Shelby +Alaina +Alivia +Allie +Brenna +Cora +Delilah +Giada +Helena +Jamie +Janelle +Jasmin +Jayda +Karla +Kayleigh +Kaylin +Kendall +Kyleigh +Kyra +Laila +Leslie +Lia +Lyla +Makenzie +Norah +Quinn +Savanna +Talia +Alessandra +Aniyah +Anya +Asia +Ayla +Brenda +Eden +Eliza +Emilia +Hazel +Heaven +Isabela +Jadyn +Jaylene +Kaelyn +Kara +Kasey +Mallory +Noelle +Nyasia +Serena +Tatum +Tess +Amalia +Annie +Ariel +Cadence +Callie +Casey +Daniella +Emerson +Giana +Jaslene +Kennedy +Kimora +Lara +Madyson +Melina +Mikaela +Miranda +Payton +Penelope +Rowan +Sasha +Siena +Theresa +Amari +Amya +Anastasia +Angelique +Annabel +Annika +Ashlee +Ashlyn +Brooklyn +Brynn +Daphne +Delaney +Diamond +Ellen +Fatima +Gemma +Gia +Hanna +Helen +Jaelyn +Janiya +Jazlyn +Jazmin +Julie +Kristina +Kylee +Lena +Mara +Mariana +Marina +Mckayla +Mckenzie +Meadow +Miley +Rihanna +Saige +Shea +Skye +Teagan +Tiana +Yasmin +Brielle +Britney +Clare +Cristina +Dakota +Danica +Dylan +Elaina +Elisabeth +Elle +Esther +Genevieve +Giovanna +Haylie +Heather +Jaida +Janessa +Joanna +Kailyn +Kamryn +Karen +Katelynn +Kayden +Krystal +Maia +Marisa +Mercedes +Meredith +Natasha +Nia +Paola +Patricia +Piper +Regan +Rhianna +Sandra +Shayla +Tara +Taryn +Unique +Virginia +Adelaide +Alayna +Alejandra +Alice +Aliyah +Allyson +Alondra +Amani +Anita +Annabella +April +Aryanna +Beatrice +Bethany +Cecelia +Crystal +Dahlia +Dayana +Delia +Elsa +Evangeline +Hadley +Harmony +Holly +Ivana +Jadalee +Jayden +Jazmine +Jessenia +Juliet +Kaylie +Kiera +Lea +London +Luz +Makenna +Mckenna +Miriam +Nathaly +Saanvi +Saniya +Shayna +Shirley +Shreya +Skyler +Sylvia +Taniya +Tatyana +Vivian +Viviana +Xiomara +Yaritza +Zara +Ada +Adeline +Aditi +Ainsley +Aisha +Aiyana +Alisha +Alissa +Alyson +Anais +Angelica +Angeline +Ashlynn +Athena +Barbara +Bryanna +Camille +Campbell +Carmen +Chanel +Charlize +Cheyanne +Corinne +Daisy +Deborah +Desiree +Destinee +Emilie +Emilly +Esmeralda +Estrella +Gisselle +Hallie +Haylee +Hillary +Ivy +Iyanna +Jayleen +Jazmyn +Joselyn +Josie +Joy +Julissa +Kailani +Kaitlin +Kaley +Kali +Kassandra +Kassidy +Katharine +Katrina +Kaya +Kristen +Lana +Larissa +Lexi +Lilyana +Linda +Livia +Logan +Madalyn +Madilyn +Madisen +Maja +Marilyn +Melody +Monica +Nataly +Rhea +Riya +Ruth +Ryleigh +Samya +Shaelyn +Taliyah +Teresa +Zaniyah +Zariah +Alani +Aliza +Anaya +Angel +Aria +Ayanna +Bailee +Caelyn +Cailey +Cailyn +Carla +Carolina +Carolyn +Catalina +Celeste +Claudia +Colleen +Damaris +Danna +Deanna +Denise +Devyn +Eloise +Emani +Emelia +Gina +Giulia +Gloria +Greta +Gwendolyn +Hailee +Jaden +Jaelynn +Jaidyn +Jaime +Janae +Janiah +Jaylynn +Justice +Kaelin +Kaleigh +Karolina +Kelis +Lacey +Lesley +Lianna +Lorelei +Maddison +Madelynn +Magdalena +Makena +Melany +Mina +Mira +Mollie +Nathalia +Nayeli +Nola +Paris +Paula +Phoenix +Priscilla +Raquel +Rebeca +Reilly +Rosa +Ryan +Sahana +Salma +Samara +Scarlet +Shania +Shaniya +Sharon +Simone +Skyla +Susan +Tamia +Tanisha +Tianna +Tracy +Willow +Isabella +Olivia +Ava +Emily +Emma +Madison +Sophia +Abigail +Julia +Grace +Samantha +Mia +Elizabeth +Ella +Gabriella +Lily +Sofia +Hailey +Hannah +Natalie +Anna +Kayla +Sarah +Brooke +Gianna +Katherine +Alyssa +Chloe +Maya +Taylor +Victoria +Ashley +Alexandra +Lillian +Avery +Brianna +Madeline +Alexis +Charlotte +Lauren +Alexa +Angelina +Leah +Makayla +Sophie +Addison +Riley +Caroline +Kylie +Nicole +Arianna +Madelyn +Nevaeh +Kaylee +Mackenzie +Molly +Audrey +Allison +Amelia +Eva +Ariana +Juliana +Natalia +Sydney +Zoe +Paige +Savannah +Aubrey +Gabrielle +Kaitlyn +Mya +Isabelle +Jenna +Kathryn +Destiny +Amanda +Morgan +Rebecca +Sara +Jessica +Adriana +Catherine +Claire +Jillian +Julianna +Melanie +Lucy +Sadie +Aaliyah +Peyton +Adrianna +Autumn +Mikayla +Erin +Faith +Jocelyn +Margaret +Evelyn +Jasmine +Rachel +Jennifer +Kate +Mariah +Sienna +Gabriela +Maria +Lila +Megan +Payton +Tessa +Vanessa +Alana +Caitlin +Camila +Genesis +Keira +Stephanie +Isabel +Katelyn +Mary +Nora +Ruby +Chelsea +Haley +Jayla +Laila +Liliana +Meghan +Michelle +Sabrina +Jada +Kiara +Layla +Stella +Tatiana +Trinity +Carly +Danielle +Jade +Kimberly +Melissa +Bianca +Kelly +Marissa +Nina +Scarlett +Zoey +Aniyah +Annabelle +Eliza +Leila +Lilly +Madeleine +Summer +Alexia +Alice +Amber +Ciara +Delilah +Lilah +Michaela +Skylar +Alanna +Delaney +Jacqueline +Lia +Reese +Teagan +Briana +Brooklyn +Hope +Jamie +Naomi +Vivian +Amy +Bailey +Bella +Caitlyn +Christina +Elena +Ellie +Fiona +Jayda +Juliette +London +Valentina +Alivia +Aliyah +Callie +Camryn +Cassidy +Cheyenne +Giselle +Jordan +Lyla +Maeve +Marley +Mckenna +Miley +Phoebe +Sage +Shannon +Amaya +Diana +Eliana +Emilia +Hayden +Josephine +Katie +Kendall +Kennedy +Lindsay +Sasha +Talia +Ana +Andrea +Clara +Daniela +Giana +Kelsey +Kyra +Lucia +Mckenzie +Reagan +Rylee +Tiffany +Valeria +Alessandra +Angela +Ashlyn +Cameron +Imani +Jordyn +Leilani +Serena +Sierra +Tiana +Violet +Alaina +Alina +Brenna +Brynn +Camille +Gracie +Izabella +Kayleigh +Kiley +Kylee +Maia +Mallory +Nadia +Nyasia +Piper +Valerie +Veronica +Alexandria +Alicia +Alison +Anne +Bridget +Cecilia +Crystal +Kiera +Kimora +Kyla +Laura +Makenzie +Natasha +Savanna +Serenity +Shelby +Willow +Angel +Angelica +Ariel +Daisy +Daniella +Deanna +Emerson +Georgia +Holly +Jasmin +Jazmin +Kaelyn +Kailey +Kaitlin +Kara +Karina +Lilliana +Maggie +Makenna +Meredith +Penelope +Shayla +Shea +Abby +Allyson +Anastasia +April +Ayla +Cassandra +Cora +Dylan +Eleanor +Elise +Emely +Emilie +Erica +Eve +Genevieve +Hanna +Heaven +Helen +Helena +Jaida +Jaslene +Jayleen +Karla +Liana +Lilyana +Logan +Madalyn +Norah +Rylie +Selena +Adeline +Alejandra +Amari +Bethany +Carmen +Carolyn +Casey +Clare +Cristina +Dakota +Deborah +Eden +Fatima +Hadley +Harper +Haylee +Jane +Janiya +Jazmine +Juliet +Karen +Kaya +Leslie +Lydia +Mariana +Nayeli +Rose +Rowan +Shania +Skyler +Ada +Alisha +Amalia +Aniya +Ashlynn +Audrina +Ayanna +Breanna +Brooklynn +Cadence +Cara +Celeste +Claudia +Colleen +Devin +Elliana +Emelia +Esther +Evangeline +Francesca +Gemma +Gillian +Gina +Harmony +Haylie +Isabela +Janessa +Jaylene +Jazlyn +Joanna +Kamryn +Kassandra +Kaydence +Kaylie +Kendra +Kira +Lindsey +Madisyn +Nia +Nola +Shriya +Skyla +Tara +Tatum +Addyson +Angie +Annie +Anya +Brielle +Carolina +Cecelia +Danica +Desiree +Diamond +Elaina +Elisa +Emani +Erika +Esmeralda +Gia +Giovanna +Giuliana +Isla +Ivy +Iyanna +Jaelyn +Janiah +Julie +Kaylani +Lea +Leilany +Lena +Lola +Lorelei +Maddison +Malia +Marianna +Mckayla +Monica +Natalya +Rachael +Raquel +Reilly +Saige +Sally +Samara +Sarai +Sharon +Sheyla +Siena +Sloane +Zahra +Aditi +Aiyana +Alannah +Aleena +Allisson +Amira +Amirah +Amya +Anaya +Aria +Ariella +Armani +Aryanna +Avani +Britney +Camilla +Catalina +Cindy +Corinne +Courtney +Cynthia +Delia +Diya +Elle +Giada +Gretchen +Hailee +Hana +Hasini +Hayley +Hazel +Heidi +Jaelynn +Janiyah +Jaylynn +Kasey +Kassidy +Khloe +Kiersten +Kristen +Kyleigh +Livia +Madilyn +Mariam +Marlee +Martha +Meadow +Melody +Mikaela +Miriam +Quinn +Rhianna +Ryan +Ryleigh +Sahasra +Salma +Sariah +Siobhan +Skye +Stephany +Taina +Tamia +Tania +Teresa +Thalia +Yasmin +Ainsley +Alisson +Allie +Alondra +Amani +Amara +Annabel +Annabella +Arielle +Ashanti +Ashlee +Aurora +Beatrice +Breana +Bryanna +Cali +Campbell +Carina +Celine +Cherish +Chiara +Dana +Danna +Dayana +Destinee +Eleni +Elisabeth +Emery +Felicity +Finley +Gloria +Jaidyn +Janelle +Jayden +Jaylin +Johanna +Julissa +Justine +Kailee +Kaley +Kali +Kaliyah +Katerina +Kathleen +Kaylen +Kaylin +Kaylynn +Keily +Kiana +Lacey +Lainey +Lana +Laniyah +Lauryn +Lillianna +Linnea +Lisa +Luciana +Luna +Macy +Madysen +Mara +Maren +Marilyn +Marisa +Maritza +Mariyah +Melina +Mikaila +Mila +Mina +Miranda +Mollie +Nancy +Nathalie +Noelia +Noelle +Parker +Priscilla +Regan +Rihanna +Riya +Rory +Sanaa +Saniya +Sarina +Scarlet +Shaila +Shanya +Shiloh +Shirley +Susan +Taliyah +Tierra +Tori +Vivienne +Xiomara +Yadira +Zara +Isabella +Olivia +Sophia +Ava +Emma +Madison +Abigail +Mia +Samantha +Emily +Gabriella +Chloe +Sarah +Elizabeth +Julia +Ella +Grace +Brianna +Lily +Gianna +Hailey +Victoria +Leah +Natalie +Charlotte +Alexandra +Kayla +Hannah +Avery +Brooke +Alyssa +Taylor +Addison +Alexa +Arianna +Riley +Ashley +Alexis +Anna +Maya +Sofia +Sophie +Molly +Madeline +Katherine +Lillian +Nevaeh +Amelia +Ariana +Caroline +Claire +Allison +Mya +Nicole +Peyton +Audrey +Sara +Kaitlyn +Lauren +Madelyn +Savannah +Juliana +Makayla +Rachel +Sydney +Angelina +Kaylee +Lucy +Natalia +Zoe +Mackenzie +Maria +Sadie +Aaliyah +Amanda +Julianna +Destiny +Rebecca +Vanessa +Adriana +Eva +Gabrielle +Morgan +Aubrey +Autumn +Jasmine +Katelyn +Mariah +Paige +Evelyn +Margaret +Serenity +Stephanie +Layla +Isabelle +Kylie +Lila +Genesis +Haley +Jenna +Keira +Megan +Stella +Bella +Isabel +Jennifer +Liliana +Aniyah +Camila +Jillian +Jocelyn +Khloe +Mary +Brooklyn +Nora +Briana +Emilia +Jessica +Sasha +Amaya +Annabelle +Camryn +Catherine +Faith +Laila +Lilly +Talia +Valentina +Caitlin +Payton +Piper +Ruby +Scarlett +Tessa +Violet +Andrea +Bianca +Caitlyn +Gabriela +Jada +Jade +Kate +Kelly +Melanie +Phoebe +Skylar +Adrianna +Alana +Eleanor +Jordan +Kimberly +Leila +Sabrina +Alivia +Haylee +Kathryn +London +Malia +Michelle +Naomi +Penelope +Reagan +Daniela +Francesca +Jacqueline +Juliette +Reese +Zoey +Alina +Alison +Anastasia +Ashlyn +Carly +Danielle +Elena +Erin +Nina +Sienna +Trinity +Angela +Anya +Bailey +Cassidy +Diana +Eliza +Izabella +Jayla +Josephine +Kelsey +Lilah +Mikayla +Aliyah +Ana +Analia +Cecilia +Daisy +Daniella +Julie +Lia +Lilliana +Lyla +Marissa +Marley +Meghan +Nyasia +Sage +Valeria +Amy +Aurora +Cameron +Clara +Hayden +Isla +Jane +Jordyn +Kaelyn +Kendall +Madeleine +Maeve +Mckenna +Rose +Rylee +Vivian +Alexia +Alice +Alicia +Amber +Brooklynn +Chelsea +Eliana +Fiona +Gia +Giselle +Imani +Laura +Lucia +Miley +Sierra +Teagan +Alexandria +Breanna +Cassandra +Cheyenne +Genevieve +Harper +Jayda +Kennedy +Kiara +Melissa +Michaela +Noelle +Angelica +Camilla +Christina +Delaney +Delilah +Gracie +Hazel +Janiya +Katie +Kylee +Lena +Lindsey +Lydia +Mariana +Rihanna +Shayla +Tatiana +Alayna +Alejandra +Cadence +Cara +Elise +Hayley +Janelle +Jazmine +Kristen +Leilani +Leslie +Lexi +Liana +Mckenzie +Nyla +Riya +Saniya +Summer +Tiana +Valerie +Veronica +Abby +Allyson +Courtney +Crystal +Eden +Elle +Ellie +Giuliana +Hadley +Harmony +Jaelyn +Kayden +Logan +Maia +Mallory +Savanna +Selena +Tess +Adeline +Alani +Aria +Beatrice +Camille +Dakota +Daria +Georgia +Heaven +Helena +Jazmin +Joselyn +Juliet +Kailey +Kaitlin +Kara +Karen +Kristina +Kyleigh +Kyra +Lola +Luna +Madelynn +Maliyah +Nadia +Natasha +Rachael +Roselyn +Rowan +Sarai +Shannon +Willow +Adelaide +Alanna +Alessandra +Amari +Amiya +Angel +Angie +Anika +Annabel +Annabella +Anne +April +Ariel +Aryanna +Ayanna +Ayla +Bethany +Caylee +Chanel +Cora +Daphne +Emely +Emerson +Finley +Frances +Gemma +Giana +Iris +Isabela +Jaida +Janiah +Janiyah +Kailyn +Londyn +Maggie +Makenzie +Melody +Monica +Myra +Norah +Nylah +Parker +Quinn +Shelby +Skye +Whitney +Yasmin +Abbigail +Addyson +Ainsley +Alaina +Alia +Amani +Amina +Analise +Anaya +Anjali +Annalise +Arabella +Armani +Ashlynn +Bridget +Brynn +Calleigh +Callie +Carina +Catalina +Cecelia +Clare +Cristina +Giada +Hailee +Isis +Ivy +Jayleen +Jazlyn +Joy +Kathleen +Kayleigh +Keily +Kendra +Kiera +Kiley +Kira +Kyla +Lilyana +Livia +Luciana +Lucille +Madilyn +Makenna +Mariam +Marina +Melina +Nathalia +Nayeli +Phoenix +Sanjana +Shiloh +Shriya +Siena +Thalia +Tianna +Aanya +Allie +Amelie +Amiyah +Anabella +Anabelle +Aniya +Ashlee +Aubrie +Audrina +Brielle +Carmen +Carolina +Ciara +Claudia +Corinne +Danna +Elianna +Eloise +Erica +Erika +Fernanda +Giovanna +Haleigh +Helen +Holly +Hope +Jaelynn +Jamie +Janessa +Jayden +Jazmyn +Joanna +Josie +Julianne +Julissa +Kaia +Kaleigh +Kamryn +Karina +Karla +Karly +Kassidy +Katelynn +Kaylani +Kaylie +Kaylin +Kirsten +Lara +Lea +Lilian +Lindsay +Macy +Madyson +Mariella +Milagros +Miranda +Miriam +Nia +Patricia +Rory +Rosa +Ryan +Rylan +Rylie +Sahana +Saige +Sanaa +Sanai +Sariah +Shania +Shea +Skyler +Taryn +Tatianna +Teresa +Tiffany +Vivienne +Yesenia +Aliana +Alisa +Alissa +Aliza +Alondra +Alyana +Alysia +Alyson +Amara +Angelique +Anijah +Ann +Annaliese +Anushka +Brenna +Carissa +Carlie +Casey +Cayla +Celia +Charlize +Cierra +Colleen +Dahlia +Damaris +Dasia +Dayana +Deanna +Devin +Eileen +Elaina +Elisa +Elisabeth +Elliana +Elsa +Elyse +Emery +Emilee +Emilie +Esther +Eve +Gina +Giulia +Heidy +Iliana +Jaslyn +Jasmin +Jaydah +Jaylene +Kamila +Katerina +Kaya +Kaydence +Kimora +Larissa +Laurel +Leticia +Lizbeth +Maddison +Madisyn +Mara +Marin +Marlie +Martina +Maryn +Matilda +Maura +Mckayla +Melany +Meredith +Mihika +Myah +Nathalie +Nayeliz +Neveah +Ruth +Sahasra +Sawyer +Scarlet +Sidney +Silvia +Simone +Sky +Sonia +Tahlia +Taliah +Taliyah +Tamia +Tiara +Wynter +Yazmin +Isabella +Olivia +Sophia +Ava +Emma +Abigail +Madison +Mia +Gabriella +Emily +Grace +Ella +Julia +Gianna +Chloe +Samantha +Charlotte +Lily +Sofia +Elizabeth +Zoe +Avery +Victoria +Riley +Addison +Arianna +Maya +Amelia +Leah +Natalie +Brianna +Kayla +Anna +Sarah +Hailey +Hannah +Brooke +Katherine +Layla +Sophie +Alexandra +Mackenzie +Juliana +Kylie +Lillian +Savannah +Alexa +Ariana +Kaylee +Caroline +Lauren +Taylor +Alyssa +Makayla +Ashley +Alexis +Claire +Natalia +Allison +Madeline +Isabelle +Kaitlyn +Peyton +Stella +Adriana +Julianna +Lucy +Madelyn +Aubrey +Audrey +Adrianna +Angelina +Molly +Nevaeh +Brooklyn +Aaliyah +Eva +Melanie +Mya +Paige +Sydney +Morgan +Nora +Giuliana +Lyla +Evelyn +Lila +Sadie +Payton +Rachel +Zoey +Jessica +Khloe +Naomi +Margaret +Mary +Nicole +Sara +Bella +Gabriela +Jocelyn +Megan +Scarlett +Eleanor +Gabrielle +Jasmine +Katelyn +Quinn +Violet +Autumn +Destiny +Faith +Fiona +Jordyn +Liliana +Reese +Alice +Jillian +Maria +Serenity +Stephanie +Amber +Camila +Jada +Amanda +Jayla +Kate +Keira +Kendall +London +Michelle +Skylar +Vanessa +Elena +Jordan +Nadia +Sabrina +Summer +Amaya +Brielle +Kathryn +Kelsey +Mikayla +Ruby +Tessa +Valentina +Aliyah +Andrea +Catherine +Clara +Jenna +Lia +Madeleine +Reagan +Trinity +Alana +Alivia +Callie +Chelsea +Elise +Genesis +Isabel +Izabella +Kimberly +Lucia +Maeve +Mariah +Noelle +Sienna +Teagan +Vivian +Bridget +Caitlin +Casey +Eliana +Gia +Harper +Jade +Lilly +Alexandria +Cecilia +Danielle +Harmony +Jacqueline +Kiara +Leila +Lilliana +Penelope +Phoebe +Rylee +Alanna +Alessandra +Amy +Aniyah +Carly +Cassidy +Dakota +Diana +Emilia +Erin +Genevieve +Karina +Laila +Laura +Leilani +Nina +Norah +Piper +Alexia +Bailey +Cassandra +Delaney +Ellie +Jennifer +Kayleigh +Kyla +Liana +Lilah +Lydia +Michaela +Rebecca +Tatiana +Valeria +Annabelle +Bianca +Briana +Caitlyn +Daniella +Delilah +Eliza +Giana +Haley +Janiyah +Katie +Kelly +Lena +Makenzie +Marissa +Vivienne +Alaina +Alison +Anastasia +Angela +Aria +Brynn +Camilla +Georgia +Imani +Isla +Josephine +Juliet +Juliette +Kara +Kylee +Mallory +Marley +Melissa +Sasha +Selena +Tiana +Alina +Ana +Angelica +Annalise +Aurora +Cameron +Camryn +Christina +Cora +Eden +Hayden +Hope +Jane +Kiley +Miley +Rose +Ainsley +Amiyah +Annika +Anya +Ayla +Francesca +Giselle +Hazel +Iris +Isabela +Ivy +Jayleen +Julianne +Kendra +Lilyana +Maggie +Mariana +Nyla +Valerie +Adelaide +Annabel +Ashlyn +Cadence +Corinne +Daisy +Dylan +Elle +Eloise +Emely +Emerson +Felicity +Finley +Gemma +Hanna +Jaida +Jayda +Jayden +Josie +Karen +Kaydence +Kiera +Malia +Maliyah +Mckenna +Mikaela +Mila +Miriam +Shelby +Sierra +Sylvia +Tess +Aarna +Alicia +Alyson +Anaya +Arielle +Cali +Cecelia +Giada +Greta +Hailee +Heidi +Helen +Holly +Jamie +Janessa +Jazmin +Kaylie +Lacey +Lara +Lilyanna +Luna +Makenna +Marina +Micaela +Nylah +Sage +Shayla +Sloane +Talia +Veronica +Adeline +Adrienne +Alani +Amya +Angie +Anika +Annabella +Ashlynn +Athena +Aviana +Ayanna +Ciara +Claudia +Daphne +Elisabeth +Elsa +Emery +Evangeline +Giovanna +Hayley +Janae +Joanna +Kaia +Kailey +Kennedy +Kiana +Kyleigh +Lana +Leighton +Leslie +Lina +Mae +Mckenzie +Miranda +Monica +Sandra +Siena +Abbie +Addyson +Aleah +Aliana +Alondra +Ariel +Brooklynn +Camille +Chiara +Christine +Danna +Diya +Elisa +Elliana +Emelia +Gretchen +Guadalupe +Hadley +Janelle +Jazmine +Journee +Kaelyn +Kailyn +Kamryn +Kathleen +Kiran +Lexi +Londyn +Luciana +Lucille +Maci +Madisyn +Maiya +Meghan +Melody +Meredith +Natasha +Nayeli +Nyasia +Paityn +Parker +Reilly +Rhea +Rosemary +Ryan +Ryann +Sanai +Sariah +Savanna +Simone +Taryn +Tatum +Teresa +Tiffany +Aanya +Abby +Adele +Alejandra +Allyson +Amani +Ananya +Anne +Annie +Aylin +Beatrice +Braelyn +Brenna +Campbell +Carmen +Celeste +Cheyenne +Colleen +Crystal +Cynthia +Daniela +Desiree +Emmy +Erica +Esther +Gwendolyn +Jaylin +Jazlynn +Jazmyn +Joy +Karla +Kasey +Kassidy +Kristen +Lea +Leanna +Lexie +Lilian +Logan +Lorelei +Luz +Madalyn +Maddison +Paola +Paris +Patricia +Priscilla +Raven +Remi +Ria +Roselyn +Ryleigh +Saniya +Saniyah +Sarai +Sawyer +Scarlet +Serena +Shea +Skye +Willow +Zainab +Zariah +Adalyn +Adelina +Aisha +Akira +Alena +Alia +Amara +Anabelle +Angel +Angeline +Angely +Anisa +Aniya +Anneliese +Ariella +Aryanna +Aubree +Breanna +Bryanna +Carley +Carolina +Celia +Chanel +Chasity +Chassidy +Dahlia +Deanna +Delia +Elly +Elyse +Erika +Eshal +Eve +Fatima +Giulia +Giulianna +Haylee +Heather +Heaven +Honesty +Ivana +Jaliyah +Janiah +Janiya +Jaylani +Jaylanie +Jazlyn +Jazmarie +Jemma +Julie +Justice +Kadence +Kaila +Kassandra +Katerina +Kaylin +Kenzie +Kimora +Kira +Krista +Kristina +Lailah +Laney +Lillyanna +Lylah +Madilyn +Magdalena +Mariam +Melina +Milani +Natalee +Nathalia +Nia +Noemi +Peighton +Rania +Rayne +Riya +Saige +Samara +Sonia +Tabitha +Taliyah +Tatianna +Theresa +Vienna +Willa +Zahra +Zara +Zoya +Sophia +Isabella +Olivia +Emma +Ava +Madison +Mia +Emily +Abigail +Gianna +Chloe +Ella +Gabriella +Charlotte +Grace +Lily +Sofia +Julia +Samantha +Avery +Natalie +Victoria +Elizabeth +Brianna +Leah +Alexandra +Addison +Lillian +Hailey +Amelia +Maya +Zoe +Caroline +Arianna +Riley +Brooke +Hannah +Alyssa +Katherine +Kayla +Sarah +Anna +Molly +Layla +Ashley +Kaylee +Alexis +Aubrey +Evelyn +Savannah +Taylor +Alexa +Audrey +Claire +Lucy +Ariana +Harper +Kylie +Madelyn +Aaliyah +Faith +Madeline +Makayla +Nevaeh +Stella +Allison +Mackenzie +Adriana +Paige +Angelina +Natalia +Sophie +Sydney +Adrianna +Eva +Khloe +Brooklyn +Morgan +Mya +Nora +Juliana +Zoey +Julianna +Lauren +Serenity +Autumn +Camila +Genesis +Liliana +Peyton +Mila +Nicole +Catherine +Destiny +Leila +Reese +Vanessa +Aria +Elena +Jocelyn +Kaitlyn +Kendall +Sadie +Tessa +Brynn +Gabriela +Giuliana +Lyla +Cecilia +Clara +Ellie +Jessica +Margaret +Maria +Stephanie +Gabrielle +Genevieve +Jillian +Piper +Summer +Alana +Elise +Gia +London +Mariah +Scarlett +Bella +Callie +Hazel +Jade +Josephine +Laila +Lila +Maeve +Rebecca +Sienna +Valentina +Andrea +Aniyah +Caitlin +Eliana +Jasmine +Jennifer +Jordyn +Mary +Mikayla +Naomi +Alice +Annabelle +Evangeline +Fiona +Reagan +Sara +Veronica +Violet +Aliyah +Amaya +Haley +Hayden +Jenna +Melanie +Norah +Brielle +Camryn +Delaney +Eleanor +Isabel +Payton +Adeline +Amanda +Amy +Daniela +Daniella +Izabella +Jacqueline +Kate +Katelyn +Lilly +Lydia +Quinn +Rachel +Ruby +Sabrina +Skylar +Amber +Bianca +Caitlyn +Emilia +Erin +Kayleigh +Keira +Kennedy +Kiara +Rose +Teagan +Trinity +Valerie +Briana +Giselle +Hadley +Jayla +Jayleen +Juliet +Kimberly +Mckenzie +Michelle +Nyla +Rylee +Sierra +Vivian +Angela +Cassidy +Emerson +Georgia +Kathryn +Lucia +Madeleine +Madisyn +Alexia +Amiyah +Diana +Francesca +Giana +Haylee +Hope +Isla +Liana +Lilliana +Nadia +Penelope +Willow +Anika +Aubree +Cameron +Christina +Danielle +Hayley +Isabelle +Jane +Juliette +Kelsey +Kyla +Laura +Lilah +Lola +Makenzie +Megan +Nia +Talia +Tiffany +Alicia +Alivia +Aurora +Bailey +Delilah +Eliza +Giada +Gracie +Harmony +Iris +Jada +Jaelyn +Karina +Kylee +Londyn +Maggie +Nina +Phoebe +Viviana +Abby +Alaina +Allyson +Angel +Annie +Ariel +Cassandra +Chelsea +Janelle +Janiyah +Jordan +Kaelyn +Kailyn +Kelly +Leilani +Lia +Mariana +Miranda +Myla +Noelle +Vera +Alani +Alanna +Alison +Arabella +Ashlyn +Cheyenne +Clare +Elle +Giovanna +Imani +Jayda +Josie +Kailey +Kara +Luna +Mallory +Marina +Marissa +Melody +Michaela +Miley +Nylah +Savanna +Serena +Shayla +Taryn +Alessandra +Alexandria +Aliana +Ana +Anastasia +Anaya +Ayla +Beatrice +Bria +Bridget +Briella +Brittany +Cadence +Cora +Ellen +Elyse +Esther +Fatima +Gwendolyn +Isabela +Kaylani +Maci +Madelynn +Mckenna +Meadow +Sasha +Siena +Simone +Sloane +Tatiana +Valeria +Adalyn +Alina +Alisha +Allie +Amalia +Amelie +Amya +Analise +Annalise +Anne +Carly +Claudia +Daisy +Dylan +Eden +Emmalyn +Helena +Julie +Kamryn +Karen +Karla +Katie +Kaylin +Kendra +Kira +Kyleigh +Lena +Lindsey +Lyric +Makenna +Melissa +Milan +Milania +Miriam +Reilly +Saige +Saniya +Sarai +Scarlet +Shea +Skye +Tiana +Zara +Zaria +Adelaide +Adelyn +Aditi +Aleksandra +Alena +Amari +Anabella +Anabelle +Aniya +Annabel +Annabella +Anya +Ariella +Arielle +Aryana +Aubrie +Blake +Brooklynn +Carina +Elisa +Emelia +Emely +Emilee +Emilie +Finley +Freya +Gemma +Giulia +Heaven +Helen +Jaida +Jaylah +Jazmin +Justice +Kasey +Kaydence +Kenzie +Kiera +Kiley +Kimora +Kyra +Leanna +Lindsay +Lorelei +Lucille +Maddison +Madilyn +Mae +Marley +Nathalie +Paris +Paulina +Ruth +Ryleigh +Saanvi +Sage +Sanai +Saniyah +Sonia +Tatum +Vivienne +Alayna +Alessia +Alondra +Ananya +Annika +Audrina +Ayanna +Camille +Cara +Carolyn +Cecelia +Celia +Courtney +Crystal +Cynthia +Danna +Devyn +Diya +Elianna +Erica +Eve +Evie +Gwyneth +Hanna +Ivy +Jaelynn +Janaya +Jaylene +Jaylynn +Kassidy +Kaya +Kayden +Keyla +Kristen +Laniyah +Laurel +Lillie +Lina +Lisa +Livia +Maia +Malia +Maliyah +Marisa +Mckayla +Miah +Milena +Mira +Nahla +Raquel +Rebekah +Renee +Roselyn +Samara +Samaya +Sandra +Sariah +Selena +Shelby +Skyler +Aarna +Abbey +Abrielle +Adele +Ainsley +Alaysia +Alejandra +Alia +Alyson +Amani +Amyah +Analia +Angelique +Aviana +Braelyn +Breanna +Brenna +Bryanna +Bryn +Camilla +Celeste +Charlie +Corinne +Dakota +Dana +Danika +Daphne +Destinee +Elaina +Elina +Elliana +Eloise +Elsie +Esme +Evelina +Fernanda +Gloria +Greta +Haylie +Heidi +Holly +Jaela +Jaliyah +Jamie +Janiya +Jaslene +Jaziah +Jazlynn +Jazmine +Johanna +Julianne +Kailani +Kaleigh +Kali +Katarina +Kayleen +Kaylynn +Kenya +Kiana +Krisha +Kristina +Leslie +Lilia +Lilyana +Liv +Logan +Lorelai +Luciana +Luisa +Lylah +Macy +Madalyn +Malaysia +Mara +Maylin +Meghan +Meredith +Mikaela +Natalya +Nayeli +Nellie +Nova +Parker +Peighton +Presley +Priscilla +Rachael +Rebeca +Regan +Riya +Rory +Roxanne +Sarina +Sariyah +Shreya +Skyla +Sylvie +Tania +Taraji +Tea +Whitney +Emma +Olivia +Isabella +Sophia +Ava +Mia +Emily +Charlotte +Abigail +Madison +Avery +Ella +Sofia +Gabriella +Julia +Lily +Gianna +Grace +Samantha +Elizabeth +Victoria +Chloe +Hannah +Amelia +Zoe +Natalie +Alexa +Leah +Arianna +Lillian +Hailey +Layla +Addison +Aubrey +Brooke +Sarah +Sophie +Riley +Anna +Alexandra +Madeline +Maya +Taylor +Harper +Molly +Aaliyah +Brooklyn +Kaylee +Savannah +Kayla +Evelyn +Peyton +Stella +Adriana +Alyssa +Audrey +Brianna +Katherine +Mackenzie +Makayla +Juliana +Paige +Aria +Ashley +Kylie +Zoey +Allison +Lucy +Scarlett +Annabelle +Autumn +Caroline +Genesis +Skylar +Ariana +Camila +Nevaeh +Alexis +Claire +Mya +Natalia +Angelina +Liliana +Eva +Giuliana +Nicole +Payton +Madelyn +Bella +Eliana +Morgan +Nora +Reese +Rylee +Adrianna +Julianna +Lauren +London +Serenity +Sydney +Melanie +Valentina +Emilia +Faith +Jasmine +Kaitlyn +Maria +Trinity +Catherine +Gabriela +Isabel +Quinn +Sara +Aniyah +Aubree +Brynn +Isabelle +Jade +Khloe +Lila +Naomi +Violet +Clara +Destiny +Isla +Lyla +Sadie +Fiona +Mariah +Rebecca +Amaya +Reagan +Tessa +Alana +Alice +Aurora +Gabrielle +Gia +Jessica +Jillian +Keira +Leila +Maeve +Mila +Rachel +Vivian +Amy +Elena +Elise +Hazel +Jordyn +Lydia +Margaret +Ruby +Eleanor +Jayla +Jocelyn +Kendall +Mary +Megan +Phoebe +Alaina +Brielle +Cecilia +Cora +Hadley +Izabella +Josephine +Lilliana +Lilly +Michaela +Piper +Stephanie +Teagan +Emerson +Genevieve +Laila +Mckenzie +Penelope +Sabrina +Alexia +Alina +Alivia +Amanda +Eloise +Erin +Katelyn +Kiara +Lia +Summer +Andrea +Bailey +Daniela +Ellie +Juliet +Juliette +Kennedy +Lilah +Lilyana +Maggie +Mikayla +Alessandra +Chelsea +Christina +Harmony +Jennifer +Lena +Makenzie +Nina +Noelle +Sage +Aliyah +Ayla +Bianca +Briana +Caitlin +Cassidy +Delilah +Eliza +Elle +Evangeline +Hayden +Mckenna +Melissa +Norah +Veronica +Vivienne +Willow +Ana +Anya +Ariel +Athena +Camille +Catalina +Danielle +Eden +Jane +Kelly +Leilani +Liana +Madeleine +Miranda +Nia +Ryleigh +Sienna +Talia +Alison +Anika +Annabella +Carly +Emilie +Francesca +Haley +Ivy +Jada +Janiyah +Jenna +Jordan +Kimberly +Kylee +Luciana +Nyla +Savanna +Selena +Sierra +Valerie +Adalyn +Amber +Amiyah +Anabella +Anaya +Annalise +Arya +Cadence +Callie +Emely +Erica +Jacqueline +Jamie +Julie +Kaelyn +Kathryn +Kyleigh +Lucia +Luna +Mallory +Michelle +Nadia +Nayeli +Nylah +Rose +Skye +Tatiana +Vanessa +Alexandria +Anne +Ariella +Ashlyn +Bridget +Carolina +Courtney +Crystal +Daisy +Daniella +Delaney +Emery +Fatima +Giana +Hanna +Kate +Katie +Kenzie +Mariam +Mikaela +Miriam +Vera +Adeline +Alani +Alanna +Alicia +Angelica +Briella +Camilla +Gracie +Iris +Jaliyah +Kailey +Kaylin +Lara +Laura +Londyn +Louisa +Madelynn +Madisyn +Marley +Melody +Milan +Scarlet +Shelby +Siena +Skyler +Sloane +Valeria +Zara +Addyson +Adelaide +Adele +Aliya +Allyson +Anastasia +Angela +Arielle +Aubrie +Bria +Brittany +Caitlyn +Cali +Cameron +Cassandra +Caylee +Dakota +Diana +Elisa +Gemma +Giada +Haylee +Imani +Janelle +Joanna +Kailyn +Karina +Kayleigh +Kiera +Lana +Leyla +Lillianna +Lisa +Logan +Mariana +Melany +Paisley +Raegan +Riya +Rylie +Thalia +Tiana +Whitney +Ainsley +Anabelle +Blake +Brenna +Cataleya +Charlie +Dahlia +Dylan +Elaina +Elliana +Emani +Esther +Eve +Finley +Georgia +Giavanna +Johanna +Kaya +Kinley +Leslie +Lilianna +Livia +Lylah +Miah +Miley +Natasha +Paris +Raquel +Rosalie +Ruth +Sasha +Serena +Viviana +Willa +Adelina +Aiyana +Alia +Aliana +Alondra +Amara +Amelie +Ananya +Annabel +Arabella +Aya +Beatrice +Brenda +Brooklynn +Cara +Carina +Cecelia +Danica +Daphne +Dayana +Edith +Elsie +Esmeralda +Farrah +Giovanna +Gwyneth +Hana +Hayley +Heidi +Holly +Hope +Iliana +Isabela +Jayda +Jayleen +Jazlyn +Journey +Kali +Kassandra +Kathleen +Kaylani +Kaylie +Kelsey +Krystal +Lexi +Lola +Lucille +Maddison +Madyson +Maia +Makenna +Marianna +Marina +Marissa +Myla +Paula +Phoenix +Reilly +Reina +Rhea +Saniya +Shannon +Shreya +Tabitha +Teresa +Tess +Zariah +Adelyn +Alisa +Alisha +Amia +Amiah +Angelique +Aniela +Aniya +Anjali +Annaliese +April +Armani +Aubriana +Avani +Averie +Avni +Ayanna +Bryanna +Calla +Campbell +Camryn +Celina +Cynthia +Dania +Danna +Elyse +Felicity +Gina +Giselle +Isis +Jael +Jaida +Jayden +Jaylene +Jazmin +Jazmine +Jessenia +Joselyn +Journee +Kamryn +Karen +Karla +Katelynn +Keyla +Kiley +Kira +Lacey +Laylah +Leanna +Lexie +Lianna +Lina +Lindsay +Lizbeth +Luz +Madilyn +Mae +Melina +Milania +Myra +Noa +Nyasia +Olive +Parker +Rayna +Rebekah +Regan +Rihanna +Rowan +Shea +Simone +Sky +Skyla +Tara +Tenley +Wendy +Ziva +Olivia +Isabella +Emma +Sophia +Ava +Mia +Emily +Charlotte +Madison +Abigail +Grace +Ella +Sofia +Avery +Gabriella +Victoria +Samantha +Gianna +Lily +Hannah +Riley +Amelia +Aubrey +Elizabeth +Arianna +Julia +Chloe +Evelyn +Maya +Natalie +Brianna +Hailey +Mackenzie +Ariana +Zoe +Addison +Lillian +Aria +Leah +Savannah +Harper +Penelope +Nora +Layla +Madeline +Stella +Alexandra +Claire +Brooklyn +Molly +Madelyn +Peyton +Sarah +Skylar +Sophie +Allison +Aaliyah +Caroline +Kaylee +Anna +Zoey +Lucy +Morgan +Brooke +Giuliana +Kayla +Kylie +Mila +Audrey +Annabelle +Eleanor +Genesis +Juliana +Katherine +Sadie +Scarlett +Adriana +Alexa +Taylor +Liliana +Isabelle +Khloe +Sydney +Alyssa +Bella +Quinn +Vivian +Lauren +London +Paige +Alexis +Angelina +Violet +Julianna +Natalia +Ashley +Autumn +Catherine +Elena +Eliana +Gabriela +Serenity +Gia +Ellie +Faith +Fiona +Makayla +Nevaeh +Jade +Jasmine +Kennedy +Nicole +Sara +Adrianna +Bianca +Eva +Mya +Valentina +Cora +Emilia +Lilliana +Mary +Michelle +Piper +Reagan +Brynn +Camila +Izabella +Naomi +Aubree +Bailey +Brielle +Alice +Kaitlyn +Laila +Lila +Margaret +Mariah +Payton +Tessa +Aliyah +Amy +Clara +Eloise +Katelyn +Kendall +Leila +Maeve +Teagan +Willow +Gabrielle +Isabel +Isla +Luna +Lydia +Summer +Elise +Jocelyn +Lilah +Lilly +Maria +Norah +Rose +Stephanie +Alessandra +Andrea +Callie +Delilah +Eliza +Hayden +Jillian +Juliette +Keira +Laura +Lucia +Mckenna +Reese +Ruby +Rylee +Talia +Amber +Cameron +Cassidy +Erin +Hadley +Josephine +Juliet +Kate +Kenzie +Michaela +Mikayla +Noelle +Sienna +Valerie +Vivienne +Alana +Alanna +Alicia +Alina +Arielle +Brooklynn +Caitlin +Cecelia +Emerson +Francesca +Jayla +Jordyn +Kimberly +Lyla +Melanie +Nadia +Nyla +Alexia +Anastasia +Aniyah +Arabella +Ashlyn +Daniela +Danielle +Destiny +Dylan +Georgia +Hope +Iris +Ivy +Jada +Jane +Jessica +Megan +Paris +Alexandria +Annabella +Ariel +Aurora +Camilla +Catalina +Cecilia +Emilie +Giana +Hanna +Jacqueline +Jenna +Kendra +Leia +Leilani +Lola +Madeleine +Mikaela +Rachel +Sabrina +Sierra +Trinity +Vanessa +Alivia +Amiyah +Arya +Athena +Harmony +Jordan +Kelsey +Lia +Melody +Nina +Scarlet +Selena +Serena +Veronica +Alaina +Alison +Amanda +Ariella +Ayla +Briana +Bridget +Cali +Casey +Christina +Diana +Eden +Haley +Julissa +Kailyn +Karina +Kiara +Kylee +Liana +Londyn +Makenzie +Mallory +Melissa +Phoebe +Rebecca +Ryleigh +Sarai +Ainsley +Amaya +Ana +Aviana +Blake +Briella +Caitlyn +Carly +Courtney +Elsa +Finley +Gemma +Genevieve +Isabela +Janiyah +Kathryn +Lilyana +Lindsay +Luciana +Maci +Miranda +Nylah +Skye +Adelina +Alayna +Angela +Brittany +Camryn +Chelsea +Evangeline +Giavanna +Hazel +Holly +Jayda +Jennifer +Kailey +Kyla +Lena +Marina +Marissa +Mckenzie +Milania +Miriam +Olive +Simone +Skyler +Sloane +Vera +Alyson +Amalia +Amya +Anika +Anya +Aryanna +Camille +Charlie +Daniella +Danna +Delaney +Elle +Elsie +Esmeralda +Eve +Iliana +Janiah +Joanna +Josie +Kamryn +Kaya +Kayleigh +Kyleigh +Leanna +Marley +Milan +Natasha +Rhea +Rosalie +Sage +Sasha +Shea +Shelby +Skyla +Tatum +Valeria +Viviana +Adele +Amani +Annalise +Annie +Aubrie +Aya +Beatrice +Braelyn +Cadence +Cara +Carolina +Christine +Crystal +Daisy +Dakota +Emely +Erika +Farrah +Fatima +Giovanna +Giselle +Imani +Jaelyn +Janiya +Jemma +Julianne +June +Kaelyn +Kaia +Kathleen +Kaydence +Kaylin +Kyra +Lacey +Lana +Lexi +Livia +Lucille +Lylah +Lyric +Mae +Mariana +Marie +Meghan +Milena +Miley +Nia +Parker +Ruth +Saige +Thea +Tiffany +Aadhya +Adalyn +Adeline +Aleah +Allie +Amelie +Anabelle +Ann +Antonia +April +Aryana +Ashlynn +Averie +Cailyn +Carter +Cassandra +Caylee +Colette +Cristina +Daphne +Elaina +Elisa +Elisabeth +Elyse +Estelle +Felicity +Giulia +Gloria +Gracie +Gwendolyn +Harlow +Isha +Itzel +Jazlyn +Jazmin +Journee +Joy +Julie +Kataleya +Kaylie +Keyla +Kinsley +Leilah +Leslie +Logan +Madyson +Maggie +Malia +Mara +Matilda +Mckayla +Meadow +Myla +Nayeli +Paisley +Raquel +Reina +Rowan +Rylie +Saanvi +Samara +Sherlyn +Shreya +Sonia +Tabitha +Tatiana +Trisha +Virginia +Abby +Adelaide +Adelyn +Alani +Alanis +Aliana +Alisha +Amiya +Analia +Analise +Ananya +Angelica +Angelie +Angelique +Angie +Aniya +Anjali +Antonella +Avani +Aylin +Azalea +Bryanna +Campbell +Carina +Carla +Carmella +Carmen +Carrie +Celeste +Celia +Chanel +Claudia +Delia +Elliana +Emery +Emmy +Esther +Hallie +Haylee +Hayley +Heidi +Jaelynn +Jamie +Jana +Jayde +Jaylah +Jaylani +Juniper +Kali +Kara +Kassidy +Katalina +Kristen +Lea +Lianna +Macy +Maddison +Madisyn +Magnolia +Maia +Maliyah +Mariam +Marjorie +Mina +Myra +Nola +Nyasia +Paloma +Pearl +Raegan +Raelyn +Savanna +Siena +Skylah +Tenley +Tiana +Willa +Winter +Wynter +Yara +Zainab +Zara +Zoie +Zuri +Olivia +Emma +Sophia +Isabella +Ava +Mia +Charlotte +Emily +Abigail +Madison +Sofia +Avery +Gabriella +Amelia +Ella +Samantha +Grace +Chloe +Aria +Harper +Victoria +Arianna +Hannah +Mackenzie +Gianna +Lily +Julia +Hailey +Skylar +Zoe +Elizabeth +Brooklyn +Natalie +Aubrey +Scarlett +Anna +Leah +Maya +Layla +Lillian +Alexandra +Evelyn +Liliana +Mila +Riley +Addison +Zoey +Caroline +Ariana +Nora +Claire +Peyton +Savannah +Audrey +Autumn +Penelope +Aaliyah +Madelyn +Sadie +Brianna +Sarah +Alexa +Madeline +Violet +Faith +Kylie +Stella +Ashley +Juliana +Kaylee +Annabelle +Emilia +Lucy +Isabelle +Sydney +Allison +Clara +Eleanor +Sophie +Taylor +Brooke +Valentina +Adriana +Alice +Bella +Camila +Fiona +Genesis +Molly +Paige +Aubree +Cora +Katherine +Alexis +Naomi +Alyssa +Eva +Keira +Natalia +Tessa +Lyla +Mya +Piper +Ellie +Isabel +Lila +Margaret +Quinn +Ruby +Summer +Vivian +Angelina +Giuliana +Julianna +Kennedy +London +Morgan +Angela +Aurora +Brielle +Cecilia +Eliana +Elise +Gabriela +Hazel +Khloe +Lauren +Payton +Elena +Genevieve +Lucia +Teagan +Callie +Kendall +Makayla +Rose +Serenity +Amy +Brynn +Gabrielle +Isla +Jasmine +Mckenzie +Nicole +Adrianna +Arabella +Ivy +Josephine +Lydia +Madeleine +Maeve +Mariah +Mary +Nyla +Rebecca +Reese +Sara +Trinity +Juliette +Kayla +Lia +Nevaeh +Talia +Amaya +Emerson +Hadley +Jade +Kelsey +Alaina +Bailey +Cassidy +Christina +Elaina +Harmony +Hope +Jocelyn +Jordyn +Juliet +Kaitlyn +Laila +Lilliana +Lilly +Londyn +Maria +Nina +Rylee +Andrea +Destiny +Eloise +Jordan +Rachel +Charlie +Hayden +Jenna +Kayleigh +Alexandria +Alison +Aliyah +Catherine +Delaney +Delilah +Leila +Melanie +Mikayla +Nova +Alana +Arielle +Chelsea +Eliza +Erin +Francesca +Georgia +Haley +Luna +Malia +Norah +Vivienne +Ana +Anastasia +Aniyah +Annabella +Briana +Brooklynn +Daniella +Eden +Everly +Jada +Lexi +Marley +Reagan +Sage +Vanessa +Adeline +Adelyn +Alina +Caitlin +Carolina +Catalina +Evangeline +Jayla +Kimberly +Kinsley +Laura +Liana +Melody +Sienna +Skyler +Stephanie +Alessia +Alexia +Alivia +Ariella +Bianca +Dakota +Emery +Emilie +Esther +Finley +Gemma +Jacqueline +Jillian +Karina +Kate +Lana +Leilani +Luciana +Maggie +Makenzie +Mckenna +Melissa +Michelle +Nayeli +Nylah +Rosalie +Amani +Amber +Amina +Amira +Anya +Cadence +Caitlyn +Cataleya +Daniela +Emely +Eve +Gia +Giselle +Gracie +Jennifer +Jessica +Katie +Kaya +Kelly +Lena +Lilianna +Lucille +Serena +Valerie +Willow +Ada +Adelaide +Alanna +Alayna +Allie +Amanda +Ariel +Arya +Ashlyn +Athena +Bridget +Briella +Brittany +Cali +Cheyenne +Daisy +Elisabeth +Freya +Hayley +Kathryn +Lola +Maia +Nia +Olive +Parker +Phoebe +Rowan +Sabrina +Savanna +Skyla +Tatiana +Ally +Anabella +Anaya +Ayla +Bryanna +Camille +Camryn +Colette +Corinne +Heidi +Helena +Izabella +Jaliyah +Jane +Janiyah +Kali +Katelyn +Kaylin +Kylee +Madelynn +Margot +Michaela +Milena +Neriah +Noelle +Paisley +Ryleigh +Scarlet +Shelby +Siena +Sloane +Veronica +Ainsley +Alessandra +Amia +Annabel +Aryanna +Beatrice +Deborah +Ellery +Felicity +Giana +Iris +Kailyn +Kenzie +Kyla +Kyleigh +Lacey +Maisie +Maryam +Mikaela +Miriam +Paris +Sariah +Sasha +Selena +Tiana +Tiffany +Willa +Adalynn +Alena +Amiyah +Angelica +Anika +Aylin +Blake +Cameron +Cecelia +Dahlia +Dalia +Devyn +Elle +Elsa +Fatima +Faye +Gwendolyn +Hailee +Halo +Haylee +Helen +Imani +Jayda +Joanna +Kamryn +Kathleen +Kira +Lainey +Lilah +Lilian +Maci +Madisyn +Madyson +Mae +Makenna +Meadow +Nadia +Presley +Rylie +Saige +Shirley +Sierra +Sylvia +Theresa +Valeria +Aadhya +Aadya +Adalyn +Adelina +Ahana +Aisha +Alani +Aleena +Alejandra +Amalia +Amelie +Angel +Angelique +Anne +Annie +Antonella +April +Aubrie +Braelyn +Brenna +Bria +Camilla +Carly +Carmen +Casey +Celia +Cherish +Chiara +Danielle +Daphne +Elliana +Emmalyn +Hallie +Harley +Heaven +Jayleen +Josie +June +Kaelyn +Kailani +Kara +Karen +Kiara +Lara +Leslie +Lisa +Livia +Lorelei +Louisa +Macy +Mariana +Megan +Milania +Myla +Natasha +Phoenix +Priscilla +Ruth +Saanvi +Sarai +Simone +Skye +Thalia +Viviana +Zariah +Aanya +Alia +Alisha +Alissa +Aliya +Amiya +Analia +Angely +Annalise +Annika +Armani +Audrina +Averie +Avielle +Ayva +Azalea +Bethany +Cailyn +Cassandra +Celine +Charlene +Clare +Dallas +Denise +Dorothy +Eleni +Elisa +Elodie +Elsie +Everleigh +Flora +Gloria +Holly +Ingrid +Ivory +Jaida +Jaleah +Janelle +Jaylah +Jaylynn +Jazlyn +Jazmin +Julie +Julissa +Juniper +Kataleya +Kaydence +Kaylani +Kendal +Kristen +Kristina +Lane +Laurel +Leela +Lilith +Logan +Lyric +Malak +Marjorie +Matilda +Meera +Meghan +Micaela +Mira +Myra +Natalya +Noemi +Nyasia +Pauline +Raelyn +Raquel +Sahana +Sanai +Saniyah +Sanvi +Shannon +Sky +Sylvie +Taliyah +Tatum +Vera +Whitney +Ximena +Yaretzi +Zara +John +Joseph +William +Charles +Edward +Frank +George +James +Anthony +Walter +Thomas +Francis +Michael +Harold +Robert +Stanley +Louis +Albert +Raymond +Andrew +Peter +Harry +Henry +Paul +Richard +Kenneth +Ralph +Arthur +David +Alfred +Samuel +Ernest +Frederick +Stephen +Edmund +Fred +Howard +Daniel +Leonard +Alexander +Benjamin +Bernard +Herbert +Herman +Morris +Norman +Salvatore +Vincent +Dominick +Donald +Jack +Lawrence +Nicholas +Oliver +Philip +Steve +Theodore +Eugene +Leo +Lester +Matthew +Patrick +Sam +Sidney +John +Joseph +William +George +Edward +Frank +James +Charles +Anthony +Thomas +Albert +Robert +Walter +Henry +Louis +Stanley +Francis +Harold +Raymond +Michael +Andrew +Arthur +Harry +Paul +Peter +Frederick +Richard +Stephen +Ralph +Vincent +David +Ernest +Alfred +Benjamin +Philip +Salvatore +Samuel +Howard +Kenneth +Carl +Fred +Bernard +Clarence +Clifford +Daniel +Nicholas +Donald +Edmund +Herman +Leo +Lawrence +Alexander +Everett +Herbert +Russell +Milton +Theodore +Edwin +Irving +Leonard +Norman +Julius +Sidney +Arnold +Chester +Dominic +Eugene +Maurice +Victor +Abraham +Angelo +Leon +Morris +Sam +Dominick +Earl +Elmer +Emil +Franklin +Jacob +Leroy +Adam +Alex +Alphonse +Antonio +Douglas +Felix +Floyd +Horace +Hubert +Jack +Lester +Lewis +Marcus +Mario +Matthew +Nathan +Wesley +Willard +Winthrop +John +Joseph +William +George +Edward +Frank +James +Charles +Robert +Arthur +Anthony +Walter +Henry +Louis +Raymond +Albert +Francis +Thomas +Stanley +Michael +Peter +Harry +Harold +Frederick +Paul +Andrew +Stephen +Richard +Samuel +Alfred +David +Ernest +Ralph +Vincent +Donald +Kenneth +Fred +Howard +Philip +Eugene +Alexander +Daniel +Carl +Herbert +Benjamin +Milton +Morris +Theodore +Bernard +Lawrence +Leo +Salvatore +Jack +Angelo +Everett +Leonard +Clarence +Russell +Chester +Leon +Abraham +Earl +Edwin +Julius +Lester +Patrick +Victor +Clifford +Dominic +Irving +Nicholas +Pasquale +Dominick +Martin +Maurice +Edmund +Emil +Jacob +Matthew +Norman +Rocco +Leroy +Leslie +Nathan +Patsy +Steve +Alex +Gerald +Roger +Alphonse +Lewis +Mario +Max +Roy +Wilfred +Adam +Elmer +Gordon +Herman +Wallace +Allan +Carlton +Myron +Sidney +Wesley +Adolph +Douglas +Earle +Edgar +Franklin +Gilbert +Jerry +Mark +Marshall +Meyer +Otto +Reginald +Sam +Sebastian +Steven +Wilbur +Alvin +Armand +Arnold +Austin +Burton +Carmine +Christopher +Dwight +Felix +Floyd +Nelson +Roland +Timothy +Tony +Willard +John +Joseph +William +George +Edward +Frank +James +Charles +Robert +Anthony +Louis +Thomas +Michael +Walter +Stanley +Arthur +Henry +Raymond +Albert +Harold +Paul +Francis +Frederick +Peter +Ralph +Alfred +Stephen +Samuel +Richard +Andrew +Daniel +Harry +Howard +Vincent +Fred +Carl +Donald +Philip +Herbert +David +Ernest +Irving +Norman +Kenneth +Chester +Nicholas +Alexander +Benjamin +Eugene +Lawrence +Leonard +Theodore +Bernard +Clarence +Edmund +Leo +Julius +Salvatore +Russell +Angelo +Jack +Victor +Morris +Earl +Edwin +Martin +Milton +Arnold +Clifford +Herman +Lester +Rocco +Sidney +Abraham +Dominic +Dominick +Felix +Roger +Elmer +Mario +Matthew +Pasquale +Tony +Warren +Alex +Alphonse +Carmine +Everett +Gerald +Lewis +Otto +Sebastian +Burton +Leon +Roland +Emil +Oscar +Roy +Steve +Wilbur +Allen +Gordon +Jacob +Nathan +Patrick +Patsy +Adolph +August +Carmen +Edgar +Jerome +Jerry +Karl +Maurice +Max +Willard +Allan +Ben +Guido +Harvey +Leroy +Lloyd +Ray +Ronald +Alvin +Domenic +Floyd +Gilbert +Gustave +Hugo +Laurence +Manuel +Nelson +Oliver +Phillip +Rudolph +Sam +Steven +Wallace +Austin +Christopher +Erwin +Franklin +Frederic +Hubert +Hyman +Orlando +Wesley +Willis +Woodrow +John +Joseph +William +Edward +Frank +George +James +Charles +Robert +Walter +Michael +Anthony +Stanley +Thomas +Louis +Albert +Henry +Arthur +Raymond +Francis +Paul +Peter +Harold +Richard +Alfred +Frederick +Harry +Andrew +Stephen +Howard +Kenneth +Ralph +Vincent +Fred +Nicholas +Carl +Theodore +Donald +Samuel +Alexander +David +Salvatore +Ernest +Russell +Daniel +Herbert +Philip +Lawrence +Leo +Eugene +Benjamin +Victor +Bernard +Chester +Leonard +Edwin +Angelo +Clifford +Clarence +Julius +Norman +Dominic +Edmund +Irving +Milton +Dominick +Herman +Pasquale +Maurice +Morris +Leon +Sidney +Emil +Earl +Elmer +Steve +Warren +Lester +Martin +Patrick +Lewis +Arnold +Jack +Oscar +Abraham +Alex +Gordon +Max +Otto +Wilbur +Alphonse +Rudolph +Matthew +Nathan +Rocco +Roger +Adam +Aldo +August +Carmine +Everett +Leroy +Mario +Burton +Sam +Sebastian +Tony +Wilfred +Adolph +Bruno +Carmen +Franklin +Gerard +Gilbert +Jacob +Jerry +Leslie +Lloyd +Patsy +Armand +Earle +Edgar +Frederic +Gerald +Karl +Morton +Nelson +Sydney +Vito +Wallace +Allen +Antonio +Felix +Guido +Myron +Oliver +Roy +Alton +Alvin +Clinton +Douglas +Emanuel +Eric +Fredrick +Harvey +Joe +Lionel +Steven +Stuart +Willard +Americo +Cornelius +Dwight +Erwin +Gabriel +Homer +Hugh +Joesph +Lucian +Malcolm +Melvin +Phillip +Roland +Ronald +Silvio +Simon +Wesley +Aaron +Bruce +Carlo +Carlton +Casimir +Clayton +Ellsworth +Emilio +Ferdinand +Floyd +Gaetano +Gus +Ira +Israel +Jesse +Laurence +Marshall +Mortimer +Neil +Reginald +Sigmund +Timothy +John +Joseph +William +Edward +Frank +George +Charles +James +Robert +Anthony +Walter +Thomas +Michael +Louis +Stanley +Albert +Raymond +Henry +Arthur +Peter +Francis +Harold +Paul +Harry +Frederick +Richard +Alfred +Andrew +Donald +Vincent +Ernest +Carl +Howard +Kenneth +Nicholas +Salvatore +Samuel +David +Ralph +Stephen +Russell +Lawrence +Leonard +Philip +Fred +Daniel +Theodore +Victor +Norman +Alexander +Eugene +Dominic +Edwin +Leo +Herbert +Bernard +Angelo +Benjamin +Milton +Edmund +Clarence +Jack +Earl +Leon +Morris +Pasquale +Chester +Irving +Julius +Dominick +Herman +Lester +Martin +Maurice +Sidney +Clifford +Gerald +Tony +Alex +Elmer +Patrick +Roger +Roland +Alphonse +Everett +Gordon +Leroy +Jacob +Max +Oscar +Rocco +Ronald +Rudolph +Wilbur +Emil +Lewis +Matthew +Steve +Adolph +Patsy +Roy +Sebastian +Warren +Wilfred +Douglas +Edgar +Gilbert +Nathan +Steven +Allen +Arnold +Carmen +Jerry +Lloyd +Mario +Otto +Sam +Wallace +Willard +Antonio +Bruno +Edmond +Felix +Rosario +Abraham +Adam +Clinton +Franklin +Fredrick +Karl +Leslie +Oliver +Wesley +Allan +Alvin +August +Hyman +Malcolm +Alan +Bennie +Burton +Christopher +Elwood +Gaetano +Gustave +Horace +Hugh +Marvin +Mitchell +Stuart +Armand +Carleton +Erwin +Gino +Harvey +Hubert +Joe +Julian +Micheal +Timothy +Willis +Carlton +Carmine +Cyril +Ellsworth +Floyd +Gerard +Guy +Isadore +Lucian +Myron +Nick +Nickolas +Orlando +Otis +Perry +Phillip +Ray +Sigmund +Silvio +Sydney +Vito +Ward +Aldo +Archie +Carlo +Cecil +Clayton +Clyde +Emerson +Eric +Franklyn +Fredric +Gregory +Gus +Jerome +Lucien +Manuel +Morton +Sherwood +Thaddeus +John +Joseph +William +Edward +Frank +George +Robert +James +Charles +Anthony +Michael +Walter +Stanley +Henry +Louis +Thomas +Francis +Raymond +Albert +Arthur +Richard +Peter +Harry +Paul +Andrew +Stephen +Frederick +Ralph +Vincent +Harold +Donald +Alfred +Ernest +Daniel +Carl +Nicholas +Fred +David +Kenneth +Howard +Samuel +Philip +Russell +Bernard +Norman +Benjamin +Theodore +Alexander +Eugene +Herbert +Salvatore +Lawrence +Chester +Victor +Leo +Leonard +Irving +Angelo +Dominic +Julius +Edwin +Milton +Martin +Clifford +Edmund +Pasquale +Everett +Alex +Leon +Clarence +Matthew +Sidney +Morris +Elmer +Rocco +Herman +Jack +Dominick +Earl +Gordon +Lester +Rudolph +Felix +Patsy +Arnold +Steve +Emil +Sam +Edgar +Lewis +Maurice +Burton +Lloyd +Roger +Abraham +Clayton +Gerald +Gerard +Gilbert +Jacob +Tony +Warren +Adolph +Carmine +Domenic +Mario +Nathan +Patrick +Allen +Armand +Bruno +Joe +Malcolm +Melvin +Oscar +Wilfred +Antonio +Franklin +Jerry +Laurence +Sebastian +Steven +Adam +Myron +Roland +Wilbur +Carmen +Douglas +Erwin +Harvey +Max +Micheal +Mike +Murray +Thaddeus +Willard +Aaron +Aldo +Alphonse +Alvin +Benedict +Christopher +Edmond +Leroy +Lucian +Manuel +Marvin +Oliver +Stuart +Allan +August +Benny +Clement +Cornelius +Gabriel +Gustave +Leslie +Otto +Wesley +Earle +Elliot +Guy +Hubert +Jerome +Julian +Phillip +Timothy +Vernon +Vito +Wallace +Alan +Carlo +Cyril +Ellsworth +Emanuel +Ferdinand +Floyd +Frederic +Homer +Hugh +Hugo +Karl +Lee +Morton +Newton +Nick +Roy +Seymour +Silvio +Sydney +Alden +Aloysius +Alton +Austin +Carleton +Carlton +Casimer +Clinton +Clyde +Dante +Elwood +Enrico +Eric +Fredrick +Gaetano +Gerhardt +Horace +Hyman +Isadore +Jeremiah +Lionel +Marco +Nelson +Orlando +Orville +Romeo +Ronald +Santo +Saul +Spencer +Virgil +John +Joseph +William +Edward +George +Robert +Frank +Charles +James +Walter +Anthony +Michael +Stanley +Louis +Henry +Thomas +Francis +Paul +Peter +Raymond +Albert +Arthur +Harold +Richard +Harry +Donald +Frederick +Stephen +Ernest +Alexander +David +Vincent +Andrew +Alfred +Nicholas +Ralph +Russell +Theodore +Lawrence +Daniel +Howard +Kenneth +Leonard +Philip +Salvatore +Samuel +Carl +Fred +Bernard +Herbert +Chester +Leo +Norman +Eugene +Irving +Edwin +Jack +Benjamin +Clifford +Victor +Earl +Clarence +Dominic +Angelo +Steve +Edmund +Julius +Milton +Alex +Martin +Maurice +Dominick +Elmer +Gerald +Roger +Emil +Leon +Everett +Herman +Mario +Sidney +Lester +Rocco +Pasquale +Alphonse +Franklin +Arnold +Warren +Felix +Matthew +Patrick +Roland +Morris +Patsy +Steven +Allen +Lewis +Sebastian +Wesley +Gordon +Jacob +Leroy +Douglas +Max +Nathan +Adam +Jerome +Ronald +Roy +Rudolph +Abraham +Adolph +Sam +Tony +Armand +Vito +Clayton +Gilbert +Harvey +Lloyd +Marvin +Micheal +Erwin +Leslie +Myron +Oliver +Stuart +Wilfred +Gerard +Laurence +Thaddeus +Allan +Alvin +August +Bruno +Burton +Carmine +Domenic +Earle +Morton +Rosario +Wallace +Wilson +Aaron +Antonio +Carmen +Clinton +Edmond +Floyd +Frederic +Hyman +Joe +Marshall +Otto +Phillip +Wilbur +Bennie +Carlton +Cyril +Edgar +Ellsworth +Hugh +Jeremiah +Jesse +Nelson +Santo +Vernon +Woodrow +Benedict +Calvin +Conrad +Curtis +Elwood +Ferdinand +Gino +Gustave +Isadore +Jerry +Karl +Malcolm +Melvin +Mitchell +Nick +Oscar +Saul +Sigmund +Alan +Albin +Alden +Austin +Bruce +Christopher +Clement +Dino +Dwight +Emanuel +Emilio +Fredrick +Gabriel +Gaetano +Horace +Hubert +Hugo +Ira +Julian +Lucian +Lucien +Manuel +Morgan +Orlando +Orrin +Romeo +Sherman +Simon +Solomon +Teddy +Willard +Zigmund +Alfonse +Alton +Augustine +Carlo +Carmelo +Casimir +Clark +Domenick +Eric +Gennaro +Homer +Irvin +Owen +Perry +Rene +Silvio +Ward +John +Joseph +William +Edward +Robert +George +Frank +Charles +James +Walter +Stanley +Anthony +Thomas +Michael +Arthur +Henry +Raymond +Albert +Richard +Francis +Louis +Peter +Paul +Harold +Donald +Harry +Alfred +Ernest +Vincent +Andrew +Ralph +Howard +Frederick +Kenneth +Leonard +Philip +David +Carl +Nicholas +Bernard +Alexander +Fred +Theodore +Stephen +Lawrence +Victor +Daniel +Russell +Samuel +Salvatore +Leo +Chester +Herbert +Angelo +Norman +Edwin +Irving +Eugene +Clifford +Benjamin +Dominic +Jack +Earl +Edmund +Martin +Morris +Milton +Maurice +Matthew +Roger +Leon +Clarence +Gerald +Julius +Steve +Herman +Tony +Dominick +Gordon +Sidney +Arnold +Patsy +Armand +Douglas +Elmer +Alex +Alphonse +Everett +Pasquale +Roy +Warren +Jacob +Mario +Lester +Adolph +Emil +Patrick +Abraham +Franklin +Lloyd +Sebastian +Allen +Bruno +Carmen +Roland +Wilbur +Leroy +Lewis +Rocco +Steven +Wallace +Burton +Felix +Hugh +Joe +Carmine +Clayton +Nathan +Nickolas +Vito +Wesley +Edgar +Gilbert +Harvey +Horace +Leslie +Max +Vernon +Willard +Adam +Antonio +Marshall +Marvin +Nick +Rudolph +Sam +Thaddeus +Wilfred +Aaron +Alvin +Cornelius +Malcolm +Myron +Nelson +Oscar +Alton +Earle +Eric +Gerard +Jerome +Julian +Karl +Lionel +Lucien +Morton +Seymour +Teddy +Woodrow +Benedict +Conrad +Dwight +Fredrick +Mike +Rosario +Aldo +Casimer +Christopher +Clement +Erwin +Floyd +Gregory +Gus +Jerry +Mitchell +Otto +Phillip +Reginald +Saul +Allan +Carlo +Casimir +Cyril +Dennis +Homer +Hyman +Laurence +Micheal +Rene +Ronald +Sigmund +Silvio +Zigmund +Alan +August +Carleton +Carlton +Donato +Edmond +Ellsworth +Gabriel +Harrison +Hubert +Jean +Jesse +Leopold +Manuel +Melvin +Meyer +Oliver +Omer +Timothy +Winthrop +Albin +Alec +Alfonso +Austin +Bennie +Benny +Carmelo +Clifton +Clinton +Clyde +Elliot +Elwood +Emanuel +Ferdinand +Gaetano +Gennaro +Guido +Guy +Lee +Mark +Miles +Murray +Norbert +Orlando +Solomon +Stanislaus +Stuart +Sylvester +Valentine +Willis +Wilson +Zygmunt +John +Joseph +William +Robert +Edward +George +Frank +James +Charles +Walter +Anthony +Michael +Thomas +Albert +Richard +Henry +Louis +Stanley +Raymond +Arthur +Harold +Francis +Peter +Donald +Paul +Harry +Ralph +Andrew +Alfred +Ernest +David +Howard +Theodore +Vincent +Nicholas +Kenneth +Frederick +Leonard +Fred +Herbert +Salvatore +Stephen +Lawrence +Victor +Russell +Edwin +Chester +Alexander +Daniel +Norman +Philip +Bernard +Leo +Eugene +Carl +Earl +Edmund +Samuel +Angelo +Irving +Jack +Clarence +Milton +Benjamin +Dominic +Clifford +Martin +Leon +Morris +Elmer +Julius +Dominick +Matthew +Sidney +Emil +Lester +Tony +Douglas +Herman +Warren +Alex +Alphonse +Adolph +Gordon +Mario +Roger +Wallace +Maurice +Arnold +Edgar +Felix +Franklin +Patsy +Lewis +Wesley +Pasquale +Roland +Steven +Abraham +Carmen +Everett +Leroy +Steve +Armand +Horace +Oscar +Sebastian +Wilbur +Jacob +Rosario +Roy +Alvin +Edmond +Gerald +Harvey +Jerry +Rocco +Sam +Antonio +Burton +Domenic +Jerome +Mike +Patrick +Alan +Max +Ronald +Rudolph +Wilfred +Allen +Earle +Ellsworth +Fredrick +Gilbert +Joe +Leslie +Melvin +Saul +Simon +Vernon +Willard +Adam +Benny +Casimer +Christopher +Clayton +Marvin +Nathan +Thaddeus +Woodrow +Zigmund +Allan +Archie +Dwight +Eric +Manuel +Myron +Nelson +Orlando +Otto +Stuart +Vito +Willis +Alfonse +Gerard +Hugh +Karl +Laurence +Lucien +Morton +Sherman +Alfonso +Alton +Armond +Benedict +Bruno +Carlton +Carmelo +Clement +Constantine +Floyd +Gregory +Israel +Marshall +Merrill +Phillip +Romeo +Seymour +Sherwood +Sigmund +Sydney +Albin +Anton +Attilio +August +Bradford +Claude +Dave +Elton +Gabriel +Guy +Isadore +Joel +Lloyd +Lucian +Malcolm +Micheal +Mitchell +Nickolas +Ray +Santo +Solomon +Sylvester +Timothy +Wilson +John +Joseph +William +Robert +Edward +George +Frank +James +Charles +Walter +Anthony +Raymond +Thomas +Richard +Francis +Arthur +Albert +Henry +Michael +Stanley +Louis +Harold +Harry +Peter +Donald +Paul +Ralph +Andrew +David +Alfred +Vincent +Howard +Frederick +Theodore +Kenneth +Fred +Daniel +Ernest +Stephen +Eugene +Salvatore +Leonard +Lawrence +Nicholas +Philip +Victor +Warren +Carl +Russell +Norman +Bernard +Leo +Chester +Herbert +Alexander +Irving +Samuel +Edwin +Jack +Angelo +Milton +Roger +Clarence +Clifford +Edmund +Dominick +Benjamin +Martin +Dominic +Earl +Matthew +Leon +Steven +Douglas +Julius +Roy +Sidney +Arnold +Everett +Gerald +Lewis +Rocco +Gordon +Lester +Mario +Morris +Elmer +Roland +Alex +Burton +Herman +Tony +Bruno +Abraham +Carmen +Emil +Leslie +Adam +Alphonse +Patrick +Steve +Wilfred +Allen +Leroy +Sebastian +Adolph +Maurice +Vito +Alvin +Edgar +Rudolph +Constantine +Jacob +Vernon +Wallace +Armand +Domenic +Gerard +Mitchell +Franklin +Harvey +Malcolm +Max +Melvin +Pasquale +Patsy +Thaddeus +Alan +Clayton +Felix +Fredrick +Hugh +Marshall +Morton +Nathan +Nelson +Orlando +Oscar +Wilbur +Willard +Bruce +Ellsworth +Horace +Jerome +Phillip +Sam +Eric +Gilbert +Jerry +Lloyd +Myron +Stuart +Zoltan +August +Calvin +Carlton +Edmond +Joe +Laurence +Lucian +Manuel +Oliver +Ronald +Allan +Alton +Americo +Clement +Elliott +Guy +Julian +Karl +Larry +Lee +Marvin +Mike +Nick +Ray +Rodney +Timothy +Wesley +Aloysius +Antonio +Bennie +Benny +Clinton +Dante +Dudley +Earle +Floyd +Gene +Harrison +Irwin +Lucien +Merrill +Murray +Otto +Roderick +Saul +Seymour +Silvio +Teddy +Alden +Aldo +Alfonse +Armando +Austin +Bradford +Carmine +Casimir +Claude +Domenick +Dwight +Emilio +Ferdinand +Gabriel +Gennaro +Gino +Jean +Jesse +Lincoln +Lionel +Nickolas +Owen +Reginald +Rene +Sherman +John +Joseph +William +Robert +Edward +George +Frank +James +Charles +Walter +Anthony +Thomas +Richard +Raymond +Albert +Henry +Louis +Michael +Francis +Arthur +Stanley +Donald +Harold +Peter +Paul +Vincent +Harry +Ralph +David +Alfred +Nicholas +Andrew +Theodore +Ernest +Daniel +Frederick +Stephen +Howard +Kenneth +Fred +Lawrence +Herbert +Samuel +Warren +Eugene +Salvatore +Philip +Russell +Angelo +Norman +Leonard +Bernard +Jack +Chester +Leo +Carl +Alexander +Edwin +Earl +Clifford +Victor +Edmund +Irving +Milton +Clarence +Mario +Dominic +Gordon +Maurice +Patsy +Dominick +Martin +Leon +Everett +Julius +Matthew +Sidney +Roger +Benjamin +Pasquale +Douglas +Gerald +Morris +Rocco +Tony +Alphonse +Roy +Sebastian +Lewis +Roland +Arnold +Herman +Wilfred +Elmer +Felix +Leslie +Lester +Carmen +Franklin +Gilbert +Steve +Wesley +Adolph +Alex +Harvey +Jerry +Antonio +Burton +Emil +Leroy +Morton +Wallace +Floyd +Lionel +Malcolm +Patrick +Sam +Steven +Wilbur +Jacob +Marshall +Rudolph +Vito +Alvin +Armand +August +Domenic +Edgar +Elliott +Frederic +Rosario +Allan +Allen +Jerome +Adam +Alan +Aldo +Calvin +Earle +Lloyd +Lucien +Manuel +Max +Nelson +Sigmund +Carmine +Clayton +Clinton +Dennis +Enrico +Gabriel +Guido +Gustave +Horace +Julian +Phillip +Saul +Solomon +Thaddeus +Abraham +Americo +Augustine +Christopher +Isadore +Laurence +Nathan +Nickolas +Oscar +Otto +Sherwood +Stuart +Aaron +Alton +Benny +Bruce +Bruno +Carmelo +Clement +Cornelius +Dante +Edmond +Ellsworth +Ferdinand +Guy +Hubert +Irwin +Karl +Mark +Oliver +Orlando +Ray +Seymour +Vernon +Wendell +Zigmund +Alfonse +Austin +Bertram +Bill +Byron +Carlo +Casimir +Cecil +Eli +Emanuel +Leland +Marvin +Mike +Murray +Ronald +Santo +Sherman +Ted +Willard +Wilson +John +Joseph +William +Robert +Edward +George +James +Frank +Charles +Anthony +Walter +Raymond +Thomas +Richard +Henry +Albert +Louis +Arthur +Francis +Donald +Michael +Stanley +Paul +Harold +Peter +Frederick +Alfred +Harry +Ralph +Theodore +Vincent +Lawrence +Howard +Ernest +David +Salvatore +Kenneth +Andrew +Daniel +Stephen +Nicholas +Fred +Leonard +Eugene +Carl +Edwin +Herbert +Philip +Russell +Bernard +Jack +Norman +Warren +Samuel +Leo +Chester +Edmund +Irving +Alexander +Benjamin +Earl +Angelo +Clarence +Roger +Victor +Martin +Allen +Julius +Roy +Clifford +Everett +Morris +Gordon +Tony +Leon +Pasquale +Matthew +Patrick +Dominic +Gerald +Lewis +Milton +Patsy +Roland +Rudolph +Elmer +Alphonse +Leroy +Lester +Sam +Burton +Carmen +Mario +Steve +Douglas +Emil +Harvey +Lucian +Rocco +Steven +Edgar +Gilbert +Sebastian +Arnold +Dominick +Franklin +Jerome +Jerry +Lloyd +Maurice +Melvin +Seymour +Sidney +Wallace +Wilbur +Wilfred +Edmond +Herman +Leslie +Oscar +Otto +Alex +Benny +Gerard +Myron +Nelson +Ronald +Vito +Antonio +Armand +August +Floyd +Julian +Marshall +Morton +Wesley +Abraham +Adam +Bruno +Carmine +Clinton +Dante +Felix +Adolph +Earle +Emanuel +Hugh +Jacob +Aldo +Alvin +Christopher +Dennis +Alan +Alphonso +Bruce +Carlo +Carmelo +Dwight +Fredrick +Horace +Hubert +Laurence +Marcel +Marvin +Murray +Reginald +Rodney +Sherman +Willard +Willis +Alden +Allan +Americo +Augustine +Austin +Benedict +Clement +Elbert +Guido +Gustave +Joe +Lee +Malcolm +Manuel +Mitchell +Nathan +Roderick +Santo +Sherwood +Sterling +Vernon +Aaron +Alfonse +Bennie +Clayton +Domenic +Erwin +Franklyn +Gene +Guy +Isadore +Joesph +Justin +Mark +Merrill +Merritt +Nick +Oliver +Ray +Reno +Saul +Silvio +Simon +Stuart +Teddy +John +William +Robert +Joseph +Edward +George +James +Frank +Charles +Anthony +Walter +Richard +Raymond +Thomas +Donald +Arthur +Francis +Louis +Henry +Michael +Paul +Harold +Albert +Stanley +Peter +Frederick +Harry +Alfred +Ralph +Vincent +Kenneth +David +Andrew +Howard +Theodore +Eugene +Leonard +Ernest +Nicholas +Daniel +Lawrence +Bernard +Philip +Salvatore +Fred +Norman +Stephen +Russell +Carl +Herbert +Leo +Edwin +Samuel +Edmund +Chester +Clifford +Irving +Warren +Alexander +Angelo +Benjamin +Roland +Earl +Jack +Dominic +Gordon +Clarence +Victor +Gerald +Roger +Julius +Maurice +Matthew +Alex +Arnold +Everett +Milton +Wesley +Douglas +Leon +Mario +Martin +Sidney +Pasquale +Elmer +Roy +Dominick +Rudolph +Jerry +Lewis +Patrick +Patsy +Sebastian +Lloyd +Wallace +Wilbur +Emil +Leroy +Lester +Carmen +Ronald +Nelson +Sam +Adolph +Alan +Alphonse +Edgar +Franklin +Morris +Rocco +Floyd +Marshall +Melvin +Morton +Seymour +Tony +Vito +Gerard +Gilbert +Harvey +Jerome +Nathan +Ray +Steve +Vernon +Bruno +Burton +Clayton +Edmond +Horace +Jacob +Leslie +Malcolm +Wilfred +Willard +Allen +Alvin +Antonio +Calvin +Constantine +Earle +Joe +Marvin +Sherman +Thaddeus +Conrad +Ellsworth +Fredrick +Gene +Herman +Manuel +Abraham +Adam +Allan +Armand +Felix +Guy +Hugh +Lucien +Max +Orlando +Armando +August +Bruce +Carmine +Carroll +Christopher +Clement +Dwight +Keith +Oscar +Owen +Silvio +Steven +Aaron +Americo +Clinton +Curtis +Elton +Erwin +Karl +Nathaniel +Oliver +Stuart +Wayne +Austin +Benedict +Benny +Dennis +Elliott +Emile +Franklyn +Gabriel +Julian +Kevin +Laurence +Mark +Micheal +Mortimer +Otto +Roderick +Romeo +Stewart +Teddy +Ward +John +William +Robert +Joseph +Edward +James +George +Frank +Charles +Richard +Walter +Raymond +Thomas +Anthony +Donald +Henry +Arthur +Francis +Louis +Albert +Michael +Paul +Stanley +Harold +Peter +Frederick +Ralph +Harry +Alfred +David +Ernest +Andrew +Daniel +Eugene +Fred +Kenneth +Salvatore +Howard +Theodore +Norman +Vincent +Herbert +Philip +Nicholas +Angelo +Carl +Lawrence +Leonard +Edwin +Russell +Bernard +Samuel +Stephen +Chester +Leo +Clarence +Clifford +Jack +Victor +Irving +Earl +Alexander +Edmund +Leon +Roger +Benjamin +Milton +Warren +Dominick +Julius +Martin +Calvin +Roland +Gerald +Gordon +Douglas +Roy +Everett +Arnold +Leroy +Rocco +Wallace +Dominic +Patrick +Patsy +Sebastian +Lewis +Harvey +Matthew +Maurice +Pasquale +Sidney +Allen +Alphonse +Lester +Mario +Steve +Alvin +Burton +Gilbert +Seymour +Aldo +Jerry +Marvin +Morris +Vito +Alan +Carmen +Carmine +Christopher +Herman +Wesley +Armand +Edgar +Elmer +Fredrick +Laurence +Steven +Wilfred +Allan +Floyd +Gerard +Leslie +Stuart +Alex +Domenic +Edmond +Emil +Felix +Willard +Clayton +Franklin +Frederic +Jerome +Mathew +Melvin +Myron +Nathan +Neil +Ray +Ronald +Rosario +Sam +Santo +Sherman +Abraham +Adam +Adolph +August +Clement +Joe +Karl +Manuel +Nelson +Rudolph +Tony +Bruce +Erwin +Gabriel +Glenn +Lloyd +Marshall +Normand +Orlando +Oscar +Phillip +Vernon +Wilbur +Alden +Armando +Cornelius +Curtis +Earle +Hubert +Hugh +Jacob +Malcolm +Marcel +Morton +Rodney +Silvio +Teddy +Benny +Bruno +Carlo +Carlton +Clinton +Conrad +Elwood +Emilio +Gene +Irvin +Jean +Julian +Lionel +Mark +Merritt +Nick +Nickolas +Timothy +Willis +Augustine +Austin +Bennie +Carmelo +Casimer +Claude +Constantine +Dante +Elbert +Eric +Guido +Lucien +Luther +Max +Mitchell +Rene +Thaddeus +Wendell +John +Robert +William +Joseph +Edward +George +James +Charles +Frank +Richard +Thomas +Donald +Walter +Raymond +Anthony +Francis +Henry +Albert +Arthur +Michael +Paul +Louis +Harold +Peter +Eugene +Stanley +David +Kenneth +Frederick +Vincent +Alfred +Daniel +Fred +Theodore +Leonard +Ralph +Carl +Harry +Howard +Ernest +Salvatore +Herbert +Norman +Andrew +Nicholas +Chester +Jack +Bernard +Russell +Clifford +Lawrence +Edwin +Philip +Leo +Angelo +Stephen +Samuel +Gerald +Earl +Warren +Roger +Gordon +Victor +Alexander +Leon +Dominic +Edmund +Irving +Clarence +Milton +Benjamin +Roland +Arnold +Burton +Elmer +Mario +Ronald +Douglas +Roy +Martin +Melvin +Everett +Lewis +Maurice +Patsy +Allan +Leroy +Pasquale +Wilfred +Alan +Alvin +Dominick +Herman +Alex +Alphonse +Emil +Rocco +Rudolph +Allen +Franklin +Calvin +Felix +Gilbert +Lester +Sidney +Vito +Clayton +Jerome +Sebastian +Sherman +Adam +Marvin +Otto +Steve +Tony +Conrad +Jerry +Marshall +Morris +Nelson +Harvey +Laurence +Malcolm +Patrick +Sam +Timothy +Wallace +Wilbur +Abraham +Armand +Carmen +Edmond +Gerard +Julius +Leslie +Lloyd +Phillip +Steven +Bruno +Carmine +Edgar +Floyd +Fredrick +Jacob +Mark +Matthew +Max +Seymour +Stuart +Augustine +Bruce +Carmelo +Clinton +Earle +Hubert +Joe +Myron +Nathan +Willis +Bennett +Carlo +Cornelius +Emanuel +Eric +Guy +Jean +Julian +Lionel +Manuel +Oliver +Orlando +Oscar +Ray +Reginald +Santo +Saul +Alden +Aldo +Antonio +Carlton +Claude +Erwin +Ferdinand +Homer +Horace +Jules +Mitchell +Nickolas +Pat +Rodney +Sherwood +Silvio +Thaddeus +Vernon +Willard +Adolph +Albin +Americo +Dante +Domenic +Dwight +Israel +Jeremiah +Karl +Lee +Leland +Lucian +Lyman +Micheal +Murray +Neil +Normand +Nunzio +Rene +Reno +Romeo +Wesley +John +Robert +William +Joseph +Edward +George +James +Richard +Frank +Charles +Thomas +Anthony +Donald +Raymond +Walter +Henry +Francis +Arthur +Albert +Michael +Harold +Louis +Paul +Stanley +David +Peter +Alfred +Ralph +Frederick +Vincent +Eugene +Andrew +Ernest +Kenneth +Harry +Daniel +Nicholas +Lawrence +Norman +Howard +Leonard +Salvatore +Theodore +Fred +Bernard +Jack +Philip +Carl +Herbert +Roger +Stephen +Leo +Samuel +Warren +Alexander +Russell +Earl +Angelo +Gerald +Chester +Rudolph +Edmund +Edwin +Dominic +Ronald +Irving +Clarence +Clifford +Roy +Pasquale +Wallace +Martin +Patsy +Roland +Victor +Arnold +Leon +Rocco +Benjamin +Harvey +Gordon +Leroy +Alan +Edgar +Jerry +Milton +Patrick +Burton +Carmen +Elmer +Gerard +Lester +Mario +Maurice +Steve +Tony +Alvin +Dominick +Herman +Sidney +Floyd +Julius +Matthew +Melvin +Allen +Everett +Gilbert +Steven +Alphonse +Douglas +Franklin +Malcolm +Marvin +Allan +Emil +Stuart +Armand +Calvin +Clinton +Erwin +Sebastian +Timothy +Vito +Wesley +Felix +Morris +Wilfred +Alex +Bruce +Domenic +Hugh +Leslie +Lewis +Lucien +Oscar +Aldo +Antonio +Carmine +Fredrick +Jacob +Jerome +Joe +Laurence +Lloyd +Morton +Nathan +Adam +Adolph +August +Cosmo +Marshall +Neil +Normand +Phillip +Seymour +Thaddeus +Austin +Conrad +Franklyn +Frederic +Guy +Lee +Mark +Otto +Ray +Sam +Vernon +Albin +Benny +Carlton +Carroll +Christopher +Curtis +Edmond +Elwood +Emilio +Gino +Horace +Larry +Lionel +Manuel +Myron +Newton +Rene +Rosario +Teddy +Winthrop +Armond +Augustine +Augustus +Bruno +Carlo +Chauncey +Christian +Clement +Cornelius +Dennis +Dwight +Ellsworth +Emile +Gene +Glenn +Irwin +Jean +Julian +Lucian +Marcel +Nelson +Owen +Reginald +Sanford +Tom +Willis +John +Robert +William +Joseph +Edward +George +Richard +James +Charles +Donald +Raymond +Frank +Thomas +Anthony +Francis +Louis +Arthur +Albert +Henry +Harold +Walter +Paul +Michael +Kenneth +David +Stanley +Vincent +Alfred +Peter +Eugene +Ralph +Frederick +Andrew +Ernest +Howard +Lawrence +Salvatore +Norman +Harry +Leonard +Daniel +Theodore +Fred +Nicholas +Bernard +Carl +Stephen +Herbert +Earl +Roger +Leo +Philip +Russell +Chester +Edwin +Angelo +Jack +Clifford +Gerald +Ronald +Leon +Roland +Samuel +Milton +Arnold +Irving +Warren +Alexander +Benjamin +Martin +Clarence +Mario +Patsy +Roy +Victor +Wallace +Edmund +Rudolph +Elmer +Gordon +Marvin +Dominic +Lewis +Matthew +Rocco +Alan +Gilbert +Maurice +Dominick +Wilfred +Harvey +Pasquale +Sidney +Allen +Herman +Bruce +Leroy +Burton +Carmine +Everett +Gerard +Alvin +Julius +Sebastian +Steve +Tony +Vito +Alphonse +Carmen +Jacob +Sherman +Allan +Armand +Calvin +Edgar +Hugh +Sam +Wilbur +Alex +Douglas +Jerry +Lester +Melvin +Patrick +Phillip +Antonio +Domenic +Edmond +Emil +Felix +Franklin +Laurence +Lloyd +Malcolm +Mark +Morris +Rene +Rodney +Bruno +Carmelo +Dennis +Gene +Leslie +Myron +Timothy +Vernon +Adolph +Cornelius +Homer +Joe +Lee +Sherwood +Alton +Christopher +Clayton +Earle +Eric +Erwin +Joesph +Lucien +Manuel +Marshall +Morton +Normand +Oliver +Adam +Bradford +Byron +Clyde +Curtis +Cyril +Dante +Emile +Gustave +Guy +Irwin +Jay +Karl +Norbert +Oscar +Rosario +Teddy +Wesley +Abraham +Americo +August +Bennie +Conrad +Gaetano +Guido +Horace +Jean +Jerome +Merrill +Merwin +Micheal +Murray +Newton +Nick +Rudy +Rufus +Seymour +Sheldon +Steven +Stuart +John +Robert +William +Joseph +Edward +Richard +George +James +Raymond +Donald +Charles +Frank +Thomas +Anthony +Francis +Walter +Henry +Albert +Louis +Michael +Arthur +Alfred +Paul +Harold +David +Eugene +Kenneth +Harry +Frederick +Lawrence +Peter +Ralph +Stanley +Carl +Daniel +Howard +Vincent +Ernest +Norman +Andrew +Herbert +Theodore +Nicholas +Philip +Salvatore +Roger +Stephen +Bernard +Russell +Leonard +Fred +Gerald +Leo +Earl +Samuel +Ronald +Edwin +Alexander +Angelo +Edmund +Jack +Gordon +Chester +Clifford +Roland +Mario +Warren +Rudolph +Martin +Roy +Victor +Clarence +Allen +Douglas +Irving +Milton +Arnold +Maurice +Everett +Leroy +Alphonse +Alan +Dominick +Gilbert +Burton +Dominic +Leon +Pasquale +Sebastian +Carmen +Elmer +Gene +Herman +Lester +Patrick +Armand +Carmine +Matthew +Tony +Lionel +Benjamin +Franklin +Hugh +Jerome +Steven +Stuart +Wilfred +Floyd +Alvin +Edmond +Jerry +Julius +Lewis +Sidney +Vito +Wallace +Allan +Bruce +Calvin +Gerard +Marvin +Rocco +Alton +Jacob +Melvin +Myron +Patsy +Wesley +Wilbur +Frederic +Harvey +Jean +Leslie +Marshall +Nick +Emil +Eric +Morris +Morton +Rene +Sam +Santo +Seymour +Sherwood +Steve +Willard +August +Austin +Conrad +Domenic +Earle +Gregory +Julian +Larry +Perry +Phillip +Rodney +Saul +Willis +Carlton +Christopher +Hubert +Malcolm +Marcel +Mark +Nelson +Nickolas +Normand +Ray +Thaddeus +Adolf +Adolph +Antonio +Carmelo +Clayton +Clyde +Curtis +Dante +Emanuel +Ferdinand +Gennaro +Gus +Horace +Lincoln +Lloyd +Nathan +Oliver +Omer +Sherman +Abraham +Alden +Ambrose +Benny +Bradford +Casimir +Clifton +Clinton +Cornelius +Dennis +Edgar +Felix +Gabriel +Gaston +Guy +Jesse +Lucien +Manuel +Merrill +Merritt +Mitchell +Rosario +Wayne +John +Robert +William +Joseph +Richard +James +Edward +George +Donald +Charles +Raymond +Frank +Thomas +Anthony +Francis +Walter +Arthur +Albert +Michael +Paul +David +Louis +Henry +Alfred +Peter +Kenneth +Harold +Ralph +Harry +Andrew +Eugene +Norman +Ernest +Stanley +Frederick +Daniel +Fred +Lawrence +Theodore +Herbert +Vincent +Leonard +Salvatore +Roger +Howard +Philip +Nicholas +Bernard +Carl +Russell +Gerald +Roland +Stephen +Ronald +Clarence +Leo +Alexander +Gordon +Victor +Chester +Angelo +Jack +Earl +Samuel +Edmund +Martin +Dominic +Roy +Edwin +Leon +Leroy +Dominick +Allan +Clifford +Bruce +Milton +Warren +Allen +Douglas +Alan +Gerard +Benjamin +Gilbert +Irving +Arnold +Herman +Maurice +Sebastian +Elmer +Mario +Marvin +Pasquale +Rocco +Wallace +Armand +Leslie +Lester +Vito +Alvin +Everett +Patrick +Rene +Rudolph +Wilbur +Conrad +Emil +Floyd +Gene +Hugh +Jerry +Wilfred +Burton +Myron +Normand +Sidney +Alphonse +Julius +Lewis +Malcolm +Morton +Stuart +August +Carmen +Clinton +Jerome +Lee +Melvin +Harvey +Lloyd +Nelson +Steven +Bruno +Emanuel +Erwin +Franklin +Matthew +Patsy +Ray +Wesley +Alex +Carmine +Dennis +Earle +Karl +Manuel +Merrill +Sam +Sherman +Teddy +Austin +Clayton +Dudley +Joe +Morris +Phillip +Reginald +Rosario +Wayne +Willard +Alton +Bill +Dante +Domenic +Edgar +Eric +Gaetano +Horace +Jay +Jeremiah +Larry +Marshall +Nathan +Romeo +Santo +Steve +Alden +Benny +Bert +Bertrand +Bradford +Byron +Clyde +Curtis +Don +Duane +Edmond +Emile +Felix +Fernand +Frederic +Fredrick +Gabriel +Gino +Graham +Gregory +Hubert +Jean +Jesse +Julian +Laurence +Lucien +Mary +Mitchell +Murray +Neil +Nick +Saul +Simon +Ted +Tony +Vernon +Ward +John +Robert +William +Joseph +Richard +Edward +James +Donald +George +Charles +Thomas +Frank +Raymond +Paul +Anthony +Walter +Albert +David +Francis +Henry +Arthur +Louis +Harold +Michael +Peter +Ralph +Eugene +Kenneth +Stanley +Ronald +Fred +Alfred +Vincent +Andrew +Frederick +Norman +Daniel +Harry +Salvatore +Leonard +Carl +Ernest +Lawrence +Bernard +Roger +Philip +Stephen +Gerald +Theodore +Nicholas +Edwin +Howard +Jack +Angelo +Russell +Herbert +Gordon +Leo +Alan +Earl +Roland +Edmund +Maurice +Chester +Martin +Victor +Clarence +Clifford +Gilbert +Samuel +Irving +Bruce +Warren +Allen +Roy +Allan +Dominic +Douglas +Leroy +Rudolph +Lewis +Marvin +Alexander +Wallace +Milton +Patrick +Herman +Alphonse +Benjamin +Jerome +Leon +Gerard +Julius +Normand +Elmer +Jerry +Melvin +Wilfred +Dominick +Harvey +Mario +Morris +Pasquale +Sebastian +Burton +Edgar +Edmond +Felix +Fredrick +Rocco +Dennis +Everett +Marshall +Neil +Rene +Carmen +Franklin +Gene +Lee +Patsy +Santo +Sidney +Vernon +Alton +Alvin +Arnold +Carmine +Emil +Floyd +Manuel +Sam +Timothy +Armand +Austin +Calvin +Glenn +Guy +Lucian +Matthew +Steve +Stuart +Gregory +Oliver +Phillip +Steven +Tony +Wilbur +Carlton +Clayton +Clinton +Conrad +Dwight +Horace +Hugh +Joe +Larry +Laurence +Leslie +Lester +Lloyd +Marcel +Ray +Sherman +Wayne +Wesley +Willard +August +Bert +Bill +Carlo +Carmelo +Don +Earle +Emanuel +Ferdinand +Homer +Karl +Malcolm +Mark +Merton +Mike +Myron +Nick +Vito +Abraham +Alden +Antonio +Augustine +Benny +Carleton +Christopher +Clement +Curtis +Cyril +Domenic +Erwin +Gary +Graham +Hector +Hugo +Julian +Lionel +Nathan +Nelson +Noel +Owen +Rodney +Romeo +Seymour +Sylvester +Ted +Valentino +Willie +Robert +John +William +Richard +Joseph +Donald +James +Edward +George +Thomas +Charles +Frank +Raymond +Anthony +Walter +Arthur +Paul +David +Francis +Michael +Louis +Henry +Kenneth +Harold +Albert +Peter +Eugene +Ronald +Alfred +Lawrence +Fred +Vincent +Harry +Daniel +Roger +Norman +Philip +Ralph +Frederick +Stanley +Theodore +Herbert +Ernest +Nicholas +Andrew +Howard +Stephen +Carl +Alan +Jack +Leonard +Bernard +Roland +Salvatore +Gerald +Edwin +Russell +Leo +Angelo +Warren +Clifford +Martin +Bruce +Irving +Chester +Douglas +Gilbert +Harvey +Samuel +Lewis +Maurice +Patrick +Victor +Alexander +Arnold +Earl +Edmund +Marvin +Rudolph +Mario +Milton +Benjamin +Clarence +Roy +Allan +Dominic +Patsy +Alphonse +Gordon +Jerome +Jerry +Allen +Armand +Leon +Matthew +Carmen +Dominick +Everett +Guy +Leroy +Pasquale +Sebastian +Wilfred +Gene +Franklin +Lionel +Neil +Carmine +Floyd +Julius +Mark +Stuart +Wilbur +Burton +Calvin +Emil +Gerard +Melvin +Nelson +Tony +Alex +Clement +Dennis +Eric +Hugh +Laurence +Lester +Morton +Wallace +Wayne +Clinton +Duane +Edgar +Elmer +Lloyd +Malcolm +Manuel +Marshall +Nathan +Oscar +Phillip +Rocco +Sidney +Vito +Alvin +Conrad +Dino +Earle +Emanuel +Erwin +Gary +Glenn +Hector +Hubert +Karl +Oliver +Reginald +Sam +Seymour +Steve +Tom +Claude +Don +Eddie +Felix +Fredrick +Gabriel +Gregory +Herman +Irwin +Jean +Joe +Larry +Leslie +Normand +Ray +Antonio +Benny +Carlo +Enrico +Gaetano +Luther +Lyman +Morris +Myron +Rodney +Rudy +Sherman +Sherwood +Wesley +Willard +Wilson +Robert +John +William +Richard +Joseph +James +Donald +Edward +George +Charles +Thomas +Frank +Raymond +Anthony +Ronald +David +Louis +Paul +Peter +Walter +Arthur +Henry +Michael +Francis +Kenneth +Albert +Norman +Eugene +Lawrence +Harold +Vincent +Daniel +Ralph +Alfred +Frederick +Roger +Stanley +Philip +Fred +Ernest +Gerald +Andrew +Salvatore +Theodore +Carl +Harry +Nicholas +Jack +Leonard +Howard +Stephen +Bernard +Clifford +Herbert +Alan +Bruce +Russell +Edwin +Douglas +Leo +Roland +Allen +Earl +Gordon +Samuel +Roy +Edmund +Alexander +Angelo +Allan +Patrick +Victor +Arnold +Clarence +Chester +Irving +Dominic +Mario +Warren +Everett +Martin +Maurice +Matthew +Milton +Pasquale +Gerard +Melvin +Benjamin +Conrad +Franklin +Gilbert +Harvey +Jerome +Jerry +Leon +Stuart +Dominick +Patsy +Burton +Edgar +Lewis +Marvin +Phillip +Rocco +Rudolph +Sebastian +Vito +Elmer +Julius +Leroy +Neil +Normand +Rene +Steve +Alvin +Don +Edmond +Guy +Joel +Larry +Nelson +Sidney +Wayne +Wilfred +Barry +Carmine +Christopher +Earle +Floyd +Herman +Lester +Morris +Sam +Tony +Wallace +Armand +August +Augustine +Clement +Dennis +Dwight +Emil +Hugh +Karl +Lee +Leslie +Malcolm +Pat +Ray +Wilbur +Aldo +Alphonse +Bob +Carmen +Claude +Clayton +Domenic +Elliott +Gene +Irwin +Jesse +Julio +Laurence +Marcel +Marshall +Morton +Myron +Rodney +Steven +Ted +Willard +Adolph +Alex +Andre +Austin +Bill +Brian +Calvin +Clyde +Cornelius +Dale +Dana +Danny +Dean +Delbert +Eddie +Frederic +Glenn +Gus +Hubert +Jean +Julian +Kevin +Lowell +Owen +Stewart +Timothy +Vernon +Willie +Robert +John +Richard +William +Joseph +Donald +James +Edward +Charles +George +Thomas +Frank +Ronald +Raymond +Anthony +Paul +David +Walter +Michael +Arthur +Francis +Peter +Albert +Louis +Kenneth +Henry +Ralph +Eugene +Harold +Daniel +Frederick +Lawrence +Norman +Roger +Alfred +Andrew +Harry +Gerald +Stanley +Carl +Philip +Vincent +Fred +Theodore +Leonard +Nicholas +Salvatore +Ernest +Herbert +Stephen +Howard +Russell +Bernard +Earl +Gordon +Bruce +Edwin +Leo +Martin +Victor +Arnold +Jack +Douglas +Franklin +Angelo +Roy +Allen +Edmund +Milton +Samuel +Alan +Jerome +Patrick +Roland +Clifford +Maurice +Warren +Clarence +Alexander +Burton +Chester +Leroy +Allan +Benjamin +Leon +Wayne +Carmen +Lewis +Barry +Alex +Conrad +Dennis +Dominic +Everett +Harvey +Malcolm +Marvin +Matthew +Rocco +Wilfred +Dominick +Hugh +Marshall +Neil +Owen +Patsy +Rodney +Armand +Edmond +Gene +Gerard +Jerry +Joe +Julius +Larry +Leslie +Mario +Pasquale +Phillip +Rudolph +Sebastian +Wesley +Alphonse +Calvin +Dwight +Gilbert +Laurence +Lee +Ray +Steven +Don +Edgar +Emil +Floyd +Gary +Gregory +Guy +Herman +Irving +Joel +Karl +Lloyd +Morton +Reginald +Sidney +Stuart +Wallace +Curtis +Dale +Elmer +Fredrick +Jay +Keith +Normand +Timothy +Willard +Bob +Clayton +Cornelius +Dino +Eric +Felix +Lester +Melvin +Noel +Oscar +Rene +Sam +Ted +Adolph +Alvin +Bill +Carlo +Carlton +Earle +Emanuel +Glenn +Hans +Hubert +Jacob +Lionel +Lucien +Lynn +Mark +Otto +Rosario +Thaddeus +Tony +Wilbur +Willis +Robert +John +Richard +William +Joseph +Donald +James +Edward +George +Thomas +Charles +Ronald +Raymond +Frank +David +Paul +Anthony +Michael +Arthur +Peter +Francis +Albert +Henry +Louis +Kenneth +Walter +Harold +Ralph +Eugene +Norman +Frederick +Leonard +Lawrence +Roger +Fred +Philip +Ernest +Gerald +Carl +Daniel +Vincent +Alfred +Salvatore +Harry +Howard +Stanley +Andrew +Edwin +Bruce +Gordon +Russell +Bernard +Jack +Nicholas +Stephen +Theodore +Alan +Jerry +Leo +Douglas +Herbert +Martin +Roy +Patrick +Roland +Allen +Dominic +Warren +Wayne +Allan +Arnold +Franklin +Clifford +Angelo +Chester +Jerome +Lewis +Alexander +Clarence +Edmund +Gerard +Benjamin +Earl +Rocco +Victor +Leslie +Milton +Samuel +Harvey +Irving +Larry +Leon +Neil +Gene +Leroy +Sebastian +Gilbert +Marcel +Maurice +Patsy +Rudolph +Wilfred +Dominick +Everett +Gary +Herman +Marshall +Matthew +Nelson +Stuart +Alphonse +Alvin +Armand +Barry +Karl +Marvin +Pasquale +Bill +Dennis +Elmer +Lee +Sidney +Timothy +Wesley +Carmen +Christopher +Floyd +Joel +Lester +Mario +Mark +Normand +Phillip +Rodney +Steve +Steven +Wilbur +Alex +Bob +Brian +Burton +Conrad +Don +Edgar +Emil +Eric +Glenn +Joe +Melvin +Morton +Noel +Pat +Rene +Barbara +Bruno +Carmine +Clyde +Earle +Felix +Horace +Laurence +Leigh +Lionel +Lloyd +Manuel +Morris +Nick +Otto +Vito +Willard +Dean +Hugh +Jay +Loren +Lucien +Sam +Sherwood +Tom +Tony +Wallace +Robert +John +Richard +William +Joseph +James +Donald +Edward +George +Charles +Thomas +Frank +Raymond +David +Ronald +Anthony +Paul +Arthur +Michael +Walter +Louis +Peter +Francis +Albert +Kenneth +Daniel +Frederick +Henry +Ralph +Eugene +Roger +Gerald +Philip +Norman +Vincent +Harold +Stephen +Fred +Alfred +Carl +Stanley +Lawrence +Andrew +Howard +Leonard +Theodore +Ernest +Harry +Russell +Douglas +Nicholas +Salvatore +Gordon +Herbert +Roy +Bernard +Bruce +Jack +Leo +Edwin +Martin +Clifford +Wayne +Roland +Warren +Victor +Samuel +Alan +Benjamin +Clarence +Allan +Angelo +Chester +Earl +Lewis +Matthew +Barry +Leon +Alexander +Dennis +Jerry +Arnold +Edmund +Gary +Jay +Larry +Lee +Leroy +Maurice +Gilbert +Jerome +Dominic +Dominick +Irving +Melvin +Stuart +Wesley +Allen +Gene +Nelson +Sebastian +Terry +Franklin +Guy +Harvey +Malcolm +Carmen +Leslie +Patrick +Patsy +Rene +Rudolph +Joe +Mark +Milton +Morton +Normand +Phillip +Steven +Tony +Wilfred +Alvin +Armand +Brian +Burton +Edgar +Gerard +Hugh +Joel +Jonathan +Karl +Lester +Marvin +Neil +Nick +Ray +Rocco +Timothy +Don +Edmond +Floyd +Gregory +Julius +Lucien +Noel +Sam +Santo +Sidney +Vito +Alphonse +Christopher +Clayton +Elmer +Emil +Erwin +Everett +Fredrick +Keith +Laurence +Marshall +Pat +Rodney +Steve +Vernon +Willard +Alex +Alton +Antonio +Bill +Billy +Bob +Bradford +Curtis +Domenic +Elliott +Emanuel +Emile +Felix +Gennaro +Herman +Kevin +Marcel +Mario +Oliver +Ted +Robert +John +Richard +William +Joseph +James +Donald +Thomas +Edward +David +Charles +George +Ronald +Frank +Paul +Raymond +Michael +Anthony +Peter +Arthur +Walter +Francis +Louis +Ralph +Roger +Kenneth +Albert +Fred +Henry +Frederick +Gerald +Daniel +Eugene +Harold +Alfred +Philip +Norman +Lawrence +Andrew +Stanley +Howard +Carl +Harry +Bruce +Ernest +Stephen +Nicholas +Salvatore +Vincent +Russell +Martin +Leonard +Alan +Theodore +Bernard +Samuel +Clifford +Roland +Gordon +Earl +Jack +Gary +Herbert +Leo +Wayne +Arnold +Douglas +Edwin +Leon +Allen +Victor +Warren +Edmund +Jerry +Everett +Joel +Allan +Melvin +Benjamin +Dominic +Leroy +Clarence +Gilbert +Harvey +Maurice +Angelo +Christopher +Dennis +Gene +Larry +Leslie +Patrick +Brian +Franklin +Gerard +Hugh +Jerome +Nelson +Barry +Glenn +Jon +Lee +Malcolm +Phillip +Rodney +Wallace +Wilfred +Alex +Lewis +Matthew +Normand +Armand +Burton +Carmen +Lester +Pasquale +Roy +Sebastian +Stuart +Timothy +Chester +Emil +Gregory +Jonathan +Mario +Milton +Nathaniel +Rudolph +Sheldon +Tony +Alexander +Alphonse +Bill +Bradford +Emanuel +Irving +Joe +Lloyd +Tom +Vito +Wesley +Wilbur +Alton +Alvin +Bob +Carlton +Clayton +Conrad +Dale +Dean +Dominick +Earle +Eric +Floyd +Kevin +Mark +Marshall +Marvin +Morton +Otto +Rocco +Scott +Terry +Andre +Carmine +Chris +Clinton +Dave +Franklyn +Gabriel +Horace +Jay +Manuel +Morris +Neil +Patsy +Perry +Reginald +Rene +Rudy +Sherman +Steven +Robert +John +Richard +William +James +Joseph +Edward +Donald +David +Thomas +Charles +George +Raymond +Michael +Ronald +Frank +Paul +Anthony +Peter +Arthur +Kenneth +Walter +Francis +Louis +Ralph +Gerald +Albert +Lawrence +Daniel +Roger +Henry +Frederick +Harold +Philip +Eugene +Howard +Alfred +Vincent +Carl +Norman +Fred +Stephen +Leonard +Ernest +Bruce +Harry +Russell +Stanley +Martin +Andrew +Theodore +Alan +Leo +Allen +Clifford +Roland +Salvatore +Nicholas +Bernard +Edwin +Allan +Samuel +Alexander +Chester +Herbert +Jack +Wayne +Gordon +Patrick +Warren +Harvey +Matthew +Roy +Victor +Arnold +Douglas +Jerry +Gary +Brian +Larry +Leon +Lewis +Benjamin +Clarence +Earl +Gene +Joel +Jon +Jerome +Pasquale +Stuart +Angelo +Dennis +Mario +Maurice +Wesley +Dominic +Franklin +Gerard +Irving +Lee +Leroy +Neil +Rudolph +Timothy +Edmund +Gilbert +Phillip +Steve +Terry +Armand +Barry +Burton +Lester +Lloyd +Milton +Sebastian +Sidney +Willard +Carmine +Craig +Dale +Dominick +Glenn +Mark +Melvin +Wallace +Carmen +Christopher +Emil +Floyd +Gregory +Hubert +Marvin +Myron +Patsy +Ray +Wilfred +Bob +Dean +Domenic +Guy +Herman +Jonathan +Malcolm +Noel +Oliver +Rodney +Alex +Andre +Clayton +Eric +Felix +Karl +Keith +Kurt +Laurence +Manuel +Marshall +Nelson +Normand +Reginald +Sherwood +Aaron +Bill +Claude +Conrad +Curtis +Dwight +Earle +Edgar +Edmond +Everett +Fredrick +Hugh +Joan +Morris +Neal +Randall +Rene +Roderick +Steven +Ted +Thaddeus +Tony +Wilbur +Robert +John +Richard +William +James +Joseph +David +Donald +Thomas +Edward +George +Charles +Ronald +Michael +Anthony +Raymond +Paul +Frank +Peter +Kenneth +Francis +Arthur +Walter +Albert +Daniel +Louis +Roger +Lawrence +Gerald +Alfred +Henry +Philip +Frederick +Ralph +Stephen +Vincent +Carl +Andrew +Fred +Harold +Norman +Eugene +Ernest +Howard +Martin +Stanley +Bruce +Theodore +Leonard +Nicholas +Alan +Harry +Jack +Russell +Douglas +Salvatore +Wayne +Gary +Herbert +Clifford +Bernard +Warren +Leo +Roy +Samuel +Allan +Dennis +Edwin +Roland +Larry +Allen +Earl +Victor +Alexander +Gordon +Patrick +Arnold +Benjamin +Brian +Edmund +Gerard +Harvey +Jerry +Joel +Jon +Mark +Matthew +Pasquale +Barry +Dominic +Karl +Timothy +Angelo +Neil +Nelson +Phillip +Rodney +Jerome +Lee +Leroy +Chester +Everett +Gregory +Irving +Leon +Lewis +Malcolm +Milton +Alvin +Clayton +Guy +Mario +Stuart +Dominick +Edgar +Emil +Franklin +Lloyd +Melvin +Christopher +Clarence +Gilbert +Lester +Marshall +Maurice +Normand +Rudolph +Steve +Tony +Burton +Calvin +Cornelius +Floyd +Gene +Herman +Hugh +Jeffrey +Kevin +Leslie +Patsy +Rocco +Wesley +Andre +Dale +Domenic +Jay +Joe +Ray +Steven +Ted +Antonio +Bradford +Carmen +Conrad +Craig +Danny +Dean +Don +Glenn +Laurence +Marvin +Nathan +Noel +Rene +Sebastian +Sidney +Terrence +Terry +Alphonse +Armand +Bill +Clifton +Clyde +Dave +Earle +Edmond +Elmer +Elton +Emile +Garrett +Jacob +Jesse +Lyman +Manuel +Myron +Nick +Sam +Wallace +Wilfred +Willis +Robert +John +Richard +William +James +Joseph +Thomas +David +Edward +Donald +Charles +George +Ronald +Michael +Frank +Peter +Raymond +Anthony +Paul +Kenneth +Francis +Walter +Arthur +Gerald +Albert +Roger +Louis +Ralph +Daniel +Henry +Lawrence +Harold +Bruce +Stephen +Frederick +Alan +Eugene +Fred +Norman +Stanley +Andrew +Philip +Vincent +Alfred +Wayne +Howard +Leonard +Dennis +Carl +Gary +Harry +Theodore +Salvatore +Patrick +Russell +Ernest +Bernard +Allan +Jack +Martin +Earl +Nicholas +Victor +Arnold +Brian +Douglas +Lee +Warren +Allen +Jerry +Roy +Angelo +Clifford +Herbert +Barry +Edmund +Leon +Samuel +Alexander +Edwin +Joel +Jon +Steven +Gordon +Harvey +Larry +Roland +Jerome +Leo +Matthew +Timothy +Benjamin +Glenn +Mark +Melvin +Rodney +Craig +Dale +Gene +Guy +Leroy +Lester +Lewis +Christopher +Dominic +Everett +Gerard +Joe +Malcolm +Phillip +Terry +Jay +Jonathan +Kevin +Laurence +Neil +Wilfred +Bob +Hugh +Jeffrey +Karl +Maurice +Pasquale +Sebastian +Armand +Chester +Floyd +Gilbert +Leslie +Lloyd +Milton +Rene +Rocco +Steve +Wesley +Bradford +Dominick +Frederic +Irving +Marshall +Marvin +Patsy +Rudolph +Stuart +Tony +Wallace +Alphonse +Burton +Carmen +Clarence +Claude +Earle +Eric +Franklin +Fredrick +Jim +Alvin +Billy +Carroll +Colin +Edgar +Felix +Gregory +Jimmy +Mario +Norbert +Vernon +Willard +Alex +Andre +Calvin +Carmine +Clayton +Curtis +Domenic +Eddie +Elliott +Emil +Glen +Jeremiah +Jesse +Johnny +Morris +Neal +Sherman +Ted +Terrence +Tom +Tommy +Willis +Robert +John +Richard +William +James +Joseph +David +Thomas +Edward +Donald +George +Michael +Charles +Ronald +Paul +Peter +Raymond +Frank +Anthony +Kenneth +Arthur +Francis +Roger +Frederick +Walter +Gerald +Stephen +Louis +Bruce +Lawrence +Albert +Daniel +Henry +Ralph +Philip +Carl +Andrew +Ernest +Howard +Dennis +Harry +Eugene +Norman +Vincent +Alan +Fred +Harold +Leonard +Theodore +Wayne +Nicholas +Stanley +Alfred +Gary +Brian +Jack +Russell +Allan +Douglas +Barry +Martin +Clifford +Larry +Bernard +Mark +Samuel +Timothy +Patrick +Roy +Alexander +Edmund +Edwin +Jerry +Leo +Victor +Arnold +Joel +Neil +Roland +Herbert +Salvatore +Stuart +Guy +Maurice +Steven +Warren +Clarence +Gordon +Jon +Allen +Eric +Gilbert +Jeffrey +Jerome +Leon +Christopher +Gregory +Lewis +Glenn +Lee +Wilfred +Burton +Harvey +Benjamin +Earl +Franklin +Irving +Joe +Melvin +Armand +Gene +Keith +Phillip +Chester +Edgar +Jonathan +Laurence +Matthew +Pasquale +Wallace +Dominick +Elmer +Jay +Jim +Leroy +Leslie +Ray +Rodney +Steve +Terry +Don +Gerard +Jean +Karl +Lester +Lloyd +Lynn +Marvin +Nathan +Ronnie +Tom +Alex +Alphonse +Bill +Charlie +Eddie +Julian +Kevin +Nelson +Wendell +Willard +Angelo +Byron +Carlton +Craig +Dave +Denis +Domenic +Dominic +Edmond +Fredrick +Hugh +Kurt +Marc +Mario +Sherwood +Vernon +Allyn +Alvin +Bruno +Calvin +Chris +Clement +Clyde +Conrad +Curtis +Danny +Dean +Emanuel +Emil +Frederic +Geoffrey +Herman +Jerald +Jesse +Johnny +Kent +Manuel +Marshall +Mike +Morris +Pierre +Rene +Rudolph +Sherman +Terrence +Thaddeus +Tony +Robert +John +Richard +William +James +Joseph +David +Thomas +Edward +Ronald +George +Peter +Charles +Donald +Paul +Michael +Frank +Raymond +Anthony +Kenneth +Daniel +Arthur +Louis +Gerald +Stephen +Albert +Frederick +Francis +Walter +Henry +Roger +Bruce +Harold +Lawrence +Philip +Carl +Dennis +Vincent +Gary +Stanley +Fred +Ralph +Howard +Leonard +Eugene +Alan +Douglas +Norman +Andrew +Alfred +Theodore +Wayne +Barry +Brian +Harry +Russell +Ernest +Bernard +Nicholas +Allen +Larry +Martin +Jeffrey +Salvatore +Gordon +Edwin +Jack +Patrick +Timothy +Clifford +Leo +Edmund +Allan +Gerard +Mark +Samuel +Warren +Lee +Roy +Gene +Lewis +Steven +Earl +Jerry +Alexander +Benjamin +Herbert +Leon +Christopher +Joel +Jonathan +Steve +Victor +Gilbert +Gregory +Jay +Kevin +Stuart +Angelo +Arnold +Everett +Jon +Leslie +Matthew +Phillip +Roland +Dominick +Dominic +Eric +Lloyd +Jerome +Maurice +Pasquale +Burton +Chester +Guy +Neil +Wesley +Clarence +Harvey +Keith +Ray +Terry +Bill +Curtis +Jean +Nelson +Wallace +Craig +Don +Hugh +Karl +Laurence +Leroy +Lester +Wilfred +Alphonse +Claude +Clayton +Dean +Earle +Edgar +Geoffrey +Marc +Ronnie +Sidney +Terrence +Alex +Andre +Carmen +Christian +Dave +Eddie +Emil +Glenn +Jesse +Jim +Rene +Tony +Armand +Bob +Calvin +Clyde +Edmond +Franklin +Joe +Marcel +Marshall +Marvin +Melvin +Mike +Neal +Reginald +Rodney +Rudolph +Terence +Anton +Bryan +Carlton +Clinton +Dale +Dan +Emile +Fredrick +Jimmy +Kent +Kurt +Lionel +Lucien +Malcolm +Milton +Nick +Sebastian +Tom +Vito +Carleton +Conrad +Denis +Duncan +Elmer +Frederic +Herman +Luther +Marco +Melvyn +Noel +Normand +Oscar +Patsy +Rocco +Robert +John +Richard +William +James +Joseph +Thomas +David +Edward +Michael +George +Ronald +Charles +Paul +Peter +Donald +Raymond +Frank +Anthony +Kenneth +Arthur +Stephen +Walter +Francis +Daniel +Philip +Gerald +Dennis +Gary +Roger +Albert +Louis +Bruce +Lawrence +Henry +Frederick +Ralph +Fred +Douglas +Carl +Vincent +Harold +Andrew +Stanley +Alan +Norman +Howard +Russell +Eugene +Alfred +Theodore +Brian +Nicholas +Wayne +Harry +Martin +Barry +Jeffrey +Allen +Ernest +Jack +Mark +Leonard +Steven +Bernard +Timothy +Herbert +Roy +Jerry +Patrick +Victor +Alexander +Allan +Larry +Clifford +Salvatore +Edwin +Lee +Gordon +Gerard +Leon +Roland +Joel +Christopher +Earl +Gene +Kevin +Phillip +Samuel +Jon +Leo +Leroy +Malcolm +Jerome +Everett +Franklin +Harvey +Warren +Arnold +Chester +Gregory +Matthew +Angelo +Don +Edmund +Gilbert +Leslie +Terry +Benjamin +Dominic +Eric +Jay +Jonathan +Lewis +Milton +Pasquale +Karl +Armand +Guy +Marshall +Stuart +Dominick +Laurence +Lloyd +Steve +Bill +Burton +Craig +Maurice +Nelson +Rocco +Tom +Wesley +Floyd +Glenn +Hugh +Joe +Sebastian +Wilfred +Clarence +Melvin +Bob +Jim +Ronnie +Wallace +Alex +Bryan +Dale +Edmond +Frederic +Keith +Kurt +Lester +Alphonse +Bradford +Carmen +Conrad +Irving +Kent +Marvin +Neil +Rodney +Rudolph +Sidney +Terrence +Willard +Andre +Domenic +Fredrick +Geoffrey +Mike +Mitchell +Myron +Neal +Pat +Ray +Tommy +Tony +Wilson +Alvin +August +Danny +Denis +Duncan +Eddie +Glen +Julius +Manuel +Ross +Sanford +Spencer +Stewart +Wendell +Alton +Chris +Clement +Clifton +Curtis +Elliot +Felix +Jean +Jerrold +Lincoln +Lionel +Nathan +Noel +Randall +Randolph +Ted +Bert +Carleton +Carmine +Clayton +Clyde +Dave +Duane +Dwight +Edgar +Elmer +Emery +Emil +Garry +Herman +Jacob +Lance +Lowell +Marc +Morris +Rene +Roderick +Scott +Ward +Wilbur +Willie +Robert +John +Richard +William +James +David +Thomas +Joseph +Michael +Ronald +George +Edward +Charles +Peter +Donald +Paul +Raymond +Kenneth +Anthony +Frank +Arthur +Gerald +Stephen +Dennis +Gary +Daniel +Roger +Louis +Francis +Walter +Bruce +Albert +Philip +Andrew +Stanley +Henry +Lawrence +Frederick +Ralph +Douglas +Carl +Alan +Fred +Harold +Theodore +Norman +Brian +Vincent +Eugene +Howard +Alfred +Ernest +Wayne +Russell +Leonard +Barry +Steven +Mark +Jeffrey +Patrick +Nicholas +Timothy +Allan +Harry +Martin +Victor +Clifford +Samuel +Roy +Allen +Jack +Salvatore +Warren +Jerry +Alexander +Leon +Larry +Bernard +Gordon +Herbert +Joel +Craig +Christopher +Gilbert +Lee +Edwin +Earl +Leroy +Maurice +Benjamin +Kevin +Leo +Neil +Phillip +Clarence +Edmund +Gene +Gerard +Gregory +Jerome +Jonathan +Lewis +Arnold +Chester +Everett +Leslie +Rodney +Roland +Terrence +Terry +Harvey +Keith +Jay +Karl +Matthew +Pasquale +Rocco +Steve +Stuart +Angelo +Bob +Eric +Tom +Dominic +Dwight +Glenn +Joe +Lester +Mario +Armand +Jon +Malcolm +Clifton +Don +Marshall +Ray +Dean +Frederic +Hugh +Marvin +Alvin +Bill +Calvin +Clyde +Duane +Edgar +Guy +Claude +Dominick +Edmond +Franklin +Fredrick +Jeff +Milton +Nelson +Reginald +Sheldon +Tony +Vernon +Alphonse +Andre +Dale +Eddie +Jean +Jim +Kurt +Laurence +Terrance +Wilfred +Billy +Bryan +Curtis +Danny +Dave +Denis +Domenic +Floyd +Glen +Jerald +Lloyd +Lynn +Melvin +Pete +Randall +Ronnie +Scott +Stewart +Wesley +Alton +Austin +Bradford +Clayton +Irving +Jan +Marc +Patsy +Rene +Sidney +Ted +Adam +Alex +Burton +Byron +Carmen +Earle +Garry +Ivan +Loren +Mike +Neal +Nick +Normand +Randolph +Ross +Rudolph +Bradley +Carleton +Carlton +Clement +Clinton +Conrad +Elliott +Emilio +Felix +Fredric +Geoffrey +Gus +Herman +Julius +Kent +Lance +Leopold +Lucien +Lyman +Marcel +Noel +Patricia +Roderick +Sam +Thaddeus +Robert +John +Richard +William +James +David +Thomas +Joseph +Michael +Edward +George +Donald +Ronald +Charles +Paul +Peter +Raymond +Frank +Anthony +Kenneth +Gary +Stephen +Arthur +Bruce +Lawrence +Dennis +Roger +Walter +Francis +Daniel +Gerald +Louis +Frederick +Alan +Philip +Henry +Ralph +Douglas +Carl +Albert +Brian +Eugene +Wayne +Harold +Russell +Stanley +Andrew +Vincent +Leonard +Howard +Barry +Patrick +Norman +Theodore +Alfred +Nicholas +Ernest +Mark +Martin +Fred +Harry +Timothy +Victor +Steven +Jeffrey +Larry +Allan +Bernard +Lee +Christopher +Earl +Jack +Roy +Salvatore +Allen +Herbert +Jonathan +Samuel +Chester +Jon +Alexander +Arnold +Clifford +Kevin +Craig +Jerry +Terry +Edmund +Roland +Jerome +Joel +Neil +Eric +Gregory +Warren +Dominic +Edwin +Glenn +Gordon +Leo +Leroy +Phillip +Clayton +Keith +Jay +Karl +Laurence +Leon +Rodney +Tom +Leslie +Lewis +Malcolm +Don +Pasquale +Benjamin +Gerard +Gilbert +Marc +Matthew +Angelo +Gene +Harvey +Joe +Marshall +Stuart +Wallace +Burton +Dominick +Maurice +Steve +Dale +Dwight +Everett +Guy +Marvin +Melvin +Ronnie +Wilfred +Armand +Bryan +Curtis +Dana +Floyd +Franklin +Fredrick +Hugh +Jan +Nelson +Alvin +August +Calvin +Geoffrey +Milton +Alex +Dean +Denis +Eddie +Edmond +Lester +Mario +Mike +Ray +Rudolph +Terrence +Wesley +Bill +Bob +Claude +Clifton +Emil +Frederic +Glen +Jimmy +Lloyd +Manuel +Scott +Alphonse +Clarence +Clement +Clinton +Danny +Dave +Kurt +Micheal +Rene +Ross +Sanford +Terrance +Tony +Winston +Austin +Bartholomew +Billy +Bradford +Byron +Carmen +Carmine +Clyde +Conrad +Darryl +Elliott +Elmer +Erwin +Gaetano +Herman +Irving +Jean +Kent +Kerry +Lance +Leland +Miles +Neal +Nick +Normand +Pete +Reginald +Sterling +Stewart +Ted +Whitney +Willie +Robert +John +Richard +William +James +Thomas +David +Joseph +Edward +Michael +Paul +Peter +Donald +George +Charles +Ronald +Kenneth +Frank +Anthony +Raymond +Gary +Stephen +Daniel +Dennis +Arthur +Alan +Roger +Bruce +Walter +Francis +Lawrence +Henry +Frederick +Gerald +Louis +Philip +Albert +Jeffrey +Wayne +Douglas +Mark +Carl +Ralph +Brian +Leonard +Andrew +Eugene +Stanley +Vincent +Harry +Harold +Russell +Steven +Larry +Theodore +Nicholas +Alfred +Fred +Martin +Timothy +Patrick +Barry +Ernest +Roy +Howard +Allen +Norman +Gregory +Allan +Edwin +Clifford +Gordon +Jonathan +Bernard +Christopher +Jack +Samuel +Victor +Kevin +Roland +Terry +Craig +Eric +Warren +Earl +Joel +Gene +Jerry +Alexander +Gerard +Lee +Leslie +Lewis +Matthew +Salvatore +Keith +Leo +Neil +Arnold +Benjamin +Chester +Franklin +Leon +Stuart +Herbert +Jon +Ray +Glenn +Karl +Dean +Edmund +Gilbert +Harvey +Laurence +Marshall +Phillip +Scott +Dwight +Geoffrey +Jay +Nelson +Steve +Dominic +Guy +Leroy +Rodney +Terrence +Dale +Fredrick +Maurice +Everett +Kent +Malcolm +Melvin +Pasquale +Tom +Denis +Dominick +Don +Edgar +Floyd +Hugh +Joe +Lance +Randall +Angelo +Bill +Burton +Jim +Julius +Marc +Neal +Rocco +Vernon +Bob +Calvin +Carmen +Conrad +Edmond +Elmer +Marvin +Reginald +Wallace +Wesley +Alex +Danny +Herman +Jerome +Kurt +Lloyd +Mike +Normand +Wilfred +Alvin +Andre +Byron +Carlton +Curtis +Dave +Eddie +Frederic +Julian +Lester +Manuel +Milton +Nathan +Oliver +Ross +Seth +Stephan +Ted +Willard +Armand +Clarence +Claude +Clement +Duane +Lionel +Morris +Noel +Owen +Preston +Randolph +Robin +Ronnie +Sammy +Sebastian +Sidney +Sterling +Stewart +Terrance +Wade +Willie +Robert +John +Richard +William +James +Thomas +David +Michael +Joseph +Paul +Edward +Ronald +George +Peter +Charles +Donald +Frank +Kenneth +Raymond +Dennis +Gary +Daniel +Anthony +Stephen +Bruce +Alan +Roger +Walter +Arthur +Francis +Gerald +Douglas +Albert +Lawrence +Mark +Louis +Carl +Jeffrey +Frederick +Philip +Brian +Wayne +Gregory +Andrew +Ralph +Steven +Henry +Barry +Stanley +Russell +Vincent +Fred +Timothy +Alfred +Eugene +Leonard +Howard +Harry +Patrick +Harold +Martin +Larry +Theodore +Nicholas +Norman +Allen +Samuel +Christopher +Roy +Allan +Ernest +Jonathan +Craig +Clifford +Glenn +Bernard +Jack +Terry +Eric +Neil +Gordon +Lee +Alexander +Dale +Herbert +Jay +Kevin +Leslie +Chester +Jerry +Leo +Victor +Edwin +Joel +Warren +Leon +Lewis +Scott +Stuart +Keith +Roland +Rodney +Earl +Jon +Leroy +Matthew +Maurice +Edmund +Melvin +Arnold +Benjamin +Franklin +Geoffrey +Joe +Bill +Gilbert +Guy +Karl +Malcolm +Salvatore +Wallace +Gene +Hugh +Steve +Alvin +Don +Gerard +Neal +Terrence +Dominic +Jerome +Marc +Marshall +Marvin +Clarence +Emil +Glen +Harvey +Pasquale +Phillip +Burton +Chris +Laurence +Nelson +Ray +Bryan +Carlton +Clinton +Curtis +Dean +Dominick +Dwight +Frederic +Kurt +Ronnie +Vernon +Andre +Angelo +Carmen +Clayton +Danny +Dave +Domenic +Eddie +Jim +Pat +Randall +Tom +Wesley +Fredrick +Johnny +Lester +Mario +Noel +Reginald +Robin +Rocco +Ross +Ward +Wilfred +Alphonse +Bradley +Conrad +Duncan +Irving +Jan +Mike +Milton +Mitchell +Nathan +Phil +Randolph +Randy +Stewart +Terrance +Tommy +Willie +Alex +Armand +Bob +Bradford +Calvin +Clark +Clyde +Dana +Duane +Felix +Kent +Myron +Normand +Owen +Pete +Vaughn +Willard +Aaron +Antonio +Bennett +Bryant +Carmine +Christian +Denis +Edmond +Everett +Gregg +Herman +Jesse +Lance +Lionel +Lloyd +Micheal +Patsy +Rodger +Sam +Shaun +Spencer +Terence +Robert +John +Richard +William +James +Thomas +David +Joseph +Michael +Paul +Ronald +Peter +Edward +George +Charles +Donald +Frank +Kenneth +Gary +Dennis +Anthony +Raymond +Daniel +Stephen +Bruce +Alan +Walter +Lawrence +Gregory +Mark +Louis +Gerald +Roger +Wayne +Philip +Arthur +Francis +Douglas +Jeffrey +Steven +Albert +Brian +Henry +Carl +Frederick +Vincent +Andrew +Ralph +Howard +Leonard +Barry +Harold +Timothy +Fred +Theodore +Russell +Norman +Patrick +Eugene +Nicholas +Harry +Christopher +Stanley +Glenn +Martin +Larry +Alfred +Allen +Kevin +Ernest +Craig +Roy +Jonathan +Keith +Allan +Jay +Jack +Bernard +Clifford +Samuel +Lee +Eric +Terry +Edwin +Leo +Joel +Matthew +Phillip +Salvatore +Warren +Gordon +Earl +Gerard +Jerome +Lewis +Scott +Gene +Jerry +Rodney +Roland +Herbert +Stuart +Terrence +Victor +Arnold +Geoffrey +Leslie +Steve +Chester +Angelo +Edmund +Leon +Neil +Randall +Jon +Wesley +Alexander +Bill +Dean +Calvin +Harvey +Karl +Leroy +Lloyd +Dwight +Gilbert +Marshall +Dana +Glen +Guy +Laurence +Dominic +Hugh +Kent +Marc +Maurice +Pasquale +Benjamin +Dale +Don +Kurt +Chris +Denis +Joe +Lester +Rene +Bradley +Clark +Dan +Everett +Franklin +Jeff +Mike +Milton +Nelson +Rocco +Sam +Wallace +Bob +Jim +Johnny +Willard +Alphonse +Clarence +Claude +Clayton +Danny +Darrell +Dave +Duane +Edgar +Fredrick +Gabriel +Greg +Malcolm +Mario +Tom +Curtis +Dominick +Elliott +Jan +Jeffery +Marvin +Myles +Roderick +Terence +Vernon +Vito +Wilfred +Willie +Alvin +Armand +Bradford +Burton +Carmine +Clyde +Darryl +Ira +Lance +Manuel +Noel +Oliver +Pete +Randolph +Ray +Reginald +Ronnie +Alex +Antonio +Barton +Clinton +Dane +Domenic +Duncan +Earle +Edmond +Frederic +Gregg +Irving +Julius +Kim +Marcel +Mitchell +Nathaniel +Ricky +Sheldon +Sidney +Stewart +Tommy +Billy +Bryan +Chuck +Conrad +Cornelius +Drew +Emanuel +Emile +Floyd +Garry +Jean +Jimmy +Justin +Lucien +Luke +Neal +Patsy +Preston +Sebastian +Ted +Terrance +Wilbur +Winston +Robert +John +William +Richard +James +Thomas +David +Michael +Joseph +Paul +Edward +Peter +Charles +George +Donald +Ronald +Gary +Kenneth +Frank +Stephen +Bruce +Anthony +Daniel +Dennis +Raymond +Mark +Lawrence +Alan +Steven +Arthur +Philip +Louis +Jeffrey +Gregory +Francis +Walter +Wayne +Roger +Douglas +Gerald +Brian +Frederick +Andrew +Albert +Henry +Carl +Vincent +Timothy +Ralph +Kevin +Stanley +Leonard +Fred +Howard +Nicholas +Russell +Eugene +Harold +Patrick +Larry +Glenn +Christopher +Martin +Theodore +Craig +Harry +Jonathan +Barry +Ernest +Alfred +Clifford +Allen +Roy +Edwin +Norman +Salvatore +Lee +Marc +Victor +Eric +Jay +Keith +Allan +Bernard +Warren +Samuel +Alexander +Gerard +Leo +Chester +Gordon +Jack +Jon +Phillip +Stuart +Earl +Herbert +Leon +Jerry +Joel +Scott +Rodney +Geoffrey +Neil +Karl +Edmund +Roland +Steve +Terrence +Arnold +Marshall +Dale +Randall +Benjamin +Gene +Marvin +Glen +Laurence +Matthew +Carmen +Clarence +Dominic +Franklin +Guy +Pasquale +Ray +Terry +Denis +Don +Jerome +Lloyd +Maurice +Bill +Bradford +Curtis +Dana +Dave +Lewis +Manuel +Randolph +Rocco +Vernon +Dean +Fredrick +Harvey +Kent +Robin +Wesley +Angelo +Calvin +Gilbert +Kurt +Bradley +Bryan +Burton +Clark +Edmond +Frederic +Herman +Joe +Kim +Mario +Melvin +Randy +Sebastian +Danny +Leroy +Leslie +Milton +Nathaniel +Ronnie +Ross +Vito +Wallace +Willie +Bob +Byron +Clayton +Conrad +Duane +Everett +Greg +Irving +Jesse +Malcolm +Micheal +Morris +Neal +Noel +Sidney +Todd +Tom +Aaron +Alvin +Andre +Archie +Carlton +Domenic +Dominick +Edgar +Jeff +Lance +Loren +Mike +Mitchell +Rene +Roderick +Rudy +Spencer +Stephan +Ted +Wilfred +Alex +Barton +Charlie +Curt +Dan +Dane +Dwight +Felix +Floyd +Hugh +Ira +Jan +Jason +Jeffery +Jimmy +Julian +Luke +Marcel +Miles +Oliver +Owen +Reginald +Ricky +Vaughn +Willis +Robert +John +William +Richard +James +David +Michael +Thomas +Joseph +Paul +Edward +Peter +Charles +Donald +Ronald +Gary +George +Kenneth +Stephen +Mark +Frank +Anthony +Bruce +Dennis +Daniel +Raymond +Steven +Lawrence +Philip +Jeffrey +Francis +Timothy +Alan +Douglas +Walter +Gregory +Frederick +Gerald +Arthur +Wayne +Roger +Brian +Albert +Kevin +Louis +Carl +Ralph +Henry +Vincent +Christopher +Harold +Stanley +Howard +Barry +Leonard +Patrick +Russell +Theodore +Andrew +Eugene +Larry +Nicholas +Harry +Martin +Glenn +Jonathan +Craig +Ernest +Norman +Alfred +Allen +Jack +Eric +Keith +Samuel +Allan +Clifford +Roy +Warren +Fred +Alexander +Lee +Scott +Neil +Salvatore +Jay +Leo +Leon +Gordon +Stuart +Bernard +Lewis +Marc +Arnold +Leslie +Matthew +Victor +Randall +Dale +Herbert +Jerry +Jon +Phillip +Earl +Edwin +Lester +Roland +Rodney +Terry +Benjamin +Chester +Joel +Karl +Dominic +Gerard +Guy +Bradford +Harvey +Kurt +Franklin +Gilbert +Maurice +Pasquale +Burton +Curtis +Dwight +Edmund +Gene +Bradley +Clarence +Dana +Milton +Ray +Rocco +Terrence +Carmen +Chris +Clinton +Glen +Jerome +Melvin +Willie +Angelo +Calvin +Dean +Geoffrey +Mario +Reginald +Terrance +Wallace +Wesley +Alvin +Armand +Dominick +Don +Everett +Hugh +Joe +Leland +Mike +Nelson +Rene +Rudolph +Bryan +Carmine +Domenic +Duane +Ira +Jan +Lance +Lucien +Marshall +Alex +Clayton +Danny +Darryl +Dave +Drew +Earle +Garry +Gregg +Julian +Kent +Kirk +Normand +Pat +Roderick +Sidney +Steve +Stewart +Terence +Alphonse +Antonio +Brien +Carlton +Clement +Denis +Greg +Jean +Julius +Laurence +Leroy +Lloyd +Malcolm +Marvin +Myles +Neal +Sebastian +Tom +Vernon +Vito +Allyn +Bill +Christian +Claude +Clifton +Edgar +Emil +Floyd +Fredrick +Gabriel +Grant +Jason +Jeffery +Jeremiah +Kim +Mitchell +Randolph +Randy +Rick +Ross +Seth +Shawn +Sheldon +Sherman +Todd +Tyrone +Ward +Wilbur +Wilfred +Willard +Robert +John +William +Richard +David +James +Michael +Thomas +Joseph +Paul +Edward +Gary +Charles +Peter +Mark +Ronald +Donald +George +Stephen +Kenneth +Dennis +Bruce +Anthony +Daniel +Raymond +Frank +Alan +Steven +Douglas +Lawrence +Jeffrey +Brian +Kevin +Francis +Gregory +Frederick +Roger +Timothy +Philip +Wayne +Arthur +Louis +Andrew +Gerald +Walter +Vincent +Christopher +Henry +Albert +Ralph +Stanley +Carl +Nicholas +Russell +Leonard +Barry +Martin +Alfred +Harold +Patrick +Howard +Eugene +Keith +Glenn +Jonathan +Larry +Craig +Theodore +Scott +Harry +Norman +Eric +Clifford +Allen +Ernest +Roy +Fred +Victor +Lee +Salvatore +Edwin +Gordon +Jack +Warren +Neil +Alexander +Matthew +Samuel +Guy +Stuart +Bernard +Dale +Allan +Jon +Gene +Randall +Earl +Karl +Roland +Dean +Jerry +Marc +Benjamin +Jay +Kurt +Phillip +Bradford +Terry +Joel +Arnold +Chester +Herbert +Rodney +Terrence +Wesley +Dana +Leo +Dwight +Geoffrey +Harvey +Jerome +Leon +Lester +Lloyd +Randolph +Willie +Bryan +Calvin +Edmund +Gerard +Gilbert +Glen +Lewis +Maurice +Rocco +Duane +Fredrick +Laurence +Reginald +Angelo +Clarence +Dominic +Hugh +Leroy +Randy +Robin +Carmen +Clayton +Leslie +Marvin +Pasquale +Roderick +Vernon +Bradley +Brent +Christian +Curtis +Don +Ira +Lance +Sean +Wilfred +Alex +Antonio +Carlton +Clyde +Danny +Domenic +Everett +Franklin +Kent +Kirk +Malcolm +Morris +Nelson +Vito +Alvin +Armand +Byron +Chris +Dominick +Floyd +Frederic +Jan +Nathaniel +Neal +Owen +Ross +Wallace +Andre +Carmine +Claude +Conrad +Darrell +Dave +Emil +Gabriel +Jeffery +Jesse +Julius +Lonnie +Mario +Marshall +Mitchell +Pat +Ricky +Terence +Todd +Austin +Brendan +Colin +Denis +Duncan +Ellsworth +Fredric +Garry +Harris +Irving +Kim +Melvin +Milton +Nathan +Noel +Patsy +Rene +Ronnie +Sam +Sidney +Stephan +Stewart +Thaddeus +Wilbur +Robert +John +Richard +James +William +Michael +David +Thomas +Joseph +Gary +Paul +Peter +Edward +Mark +Charles +Stephen +George +Donald +Ronald +Kenneth +Bruce +Dennis +Anthony +Daniel +Frank +Steven +Raymond +Gregory +Jeffrey +Timothy +Douglas +Wayne +Francis +Lawrence +Brian +Alan +Kevin +Philip +Walter +Christopher +Frederick +Gerald +Roger +Andrew +Louis +Arthur +Stanley +Vincent +Ralph +Henry +Barry +Russell +Craig +Albert +Carl +Glenn +Patrick +Keith +Scott +Larry +Leonard +Eugene +Nicholas +Theodore +Martin +Alfred +Jonathan +Harold +Ernest +Harry +Clifford +Howard +Allen +Eric +Dale +Matthew +Fred +Lee +Roy +Victor +Bernard +Gordon +Samuel +Alexander +Norman +Joel +Warren +Edwin +Marc +Randall +Stuart +Allan +Neil +Jack +Jay +Earl +Guy +Herbert +Phillip +Dean +Karl +Leo +Salvatore +Benjamin +Bradley +Curtis +Edmund +Mitchell +Terry +Bradford +Dana +Roland +Geoffrey +Glen +Jerome +Jon +Gerard +Chester +Dominic +Dominick +Jerry +Kurt +Leon +Randolph +Reginald +Rodney +Dwight +Leslie +Lewis +Randy +Terrence +Wesley +Angelo +Kim +Laurence +Lloyd +Steve +Danny +Franklin +Gilbert +Ray +Ross +Wallace +Arnold +Harvey +Kent +Seth +Todd +Clayton +Fredrick +Nelson +Robin +Rocco +Burton +Don +Duane +Edmond +Everett +Garry +Kerry +Lance +Malcolm +Neal +Pasquale +Sean +Alex +Alvin +Antonio +Carlton +Carmen +Gene +Irving +Jeffery +Marshall +Reed +Sidney +Stewart +Calvin +Claude +Domenic +Edgar +Emil +Floyd +Manuel +Maurice +Melvin +Rene +Ronnie +Vernon +Brent +Bryan +Denis +Duncan +Garrett +Gregg +Hugh +Johnny +Jose +Leigh +Leroy +Marvin +Micheal +Mike +Preston +Rudolph +Terrance +Tony +Andre +Bill +Chris +Christian +Clarence +Clark +Conrad +Dan +Daryl +Derek +Earle +Elmer +Frederic +Greg +Horace +Ira +Jan +Jesse +Kirk +Lester +Lynn +Marcus +Milton +Nathan +Noel +Oliver +Roderick +Terence +Thaddeus +Wilfred +Willie +Robert +John +Richard +Michael +James +David +William +Thomas +Gary +Joseph +Paul +Peter +Mark +Edward +Charles +Donald +Stephen +Kenneth +Ronald +Daniel +Steven +George +Dennis +Bruce +Anthony +Raymond +Kevin +Frank +Wayne +Jeffrey +Alan +Gregory +Timothy +Lawrence +Brian +Douglas +Walter +Christopher +Philip +Roger +Arthur +Louis +Francis +Frederick +Andrew +Keith +Gerald +Henry +Carl +Ralph +Scott +Craig +Vincent +Albert +Glenn +Martin +Patrick +Stanley +Russell +Nicholas +Theodore +Leonard +Eugene +Jonathan +Barry +Harold +Larry +Howard +Norman +Alfred +Harry +Clifford +Allen +Ernest +Marc +Eric +Alexander +Jack +Jay +Roy +Lee +Matthew +Leo +Guy +Randall +Gordon +Bernard +Curtis +Earl +Samuel +Allan +Kurt +Roland +Bradford +Salvatore +Victor +Jon +Neil +Dale +Fred +Gerard +Gilbert +Jerry +Warren +Gene +Glen +Randy +Benjamin +Bradley +Chester +Dana +Laurence +Rodney +Danny +Dean +Edmund +Edwin +Leslie +Terry +Geoffrey +Joel +Herbert +Karl +Rocco +Wesley +Dwight +Kim +Kirk +Lance +Mitchell +Phillip +Stuart +Bryan +Duane +Jeffery +Jerome +Jesse +Lewis +Randolph +Calvin +Clarence +Milton +Rudolph +Kent +Robin +Angelo +Dominic +Dominick +Franklin +Garry +Leon +Lloyd +Ross +Steve +Wallace +Armand +Clinton +Denis +Don +Hugh +Jan +Mario +Marvin +Nelson +Ray +Todd +Willie +Alvin +Arnold +Bill +Darryl +Dave +Manuel +Maurice +Neal +Pasquale +Reginald +Rene +Alphonse +Antonio +Brad +Chris +Conrad +Grant +Gregg +Kerry +Lester +Micheal +Ricky +Ted +Aaron +Clayton +Dan +Edgar +Edmond +Floyd +Harvey +Ira +Leroy +Stewart +Terrence +Vernon +Carmen +Clyde +Dane +Duncan +Frederic +Fredrick +Irving +Johnny +Jose +Justin +Luke +Malcolm +Marcel +Marshall +Mike +Oscar +Perry +Rick +Ronnie +Sean +Tom +Alex +Brien +Byron +Colin +Dante +Darrell +Daryl +Derek +Drew +Erick +Jacob +Jeff +Jim +Joe +Nathaniel +Owen +Raphael +Ricardo +Roman +Sheldon +Sidney +Stephan +Thaddeus +Vito +Wilfred +Willard +John +Robert +David +Michael +James +Richard +William +Thomas +Joseph +Gary +Paul +Mark +Edward +Peter +Stephen +Charles +Donald +Kenneth +Ronald +Jeffrey +Daniel +George +Steven +Kevin +Dennis +Bruce +Anthony +Brian +Raymond +Frank +Douglas +Alan +Wayne +Gregory +Lawrence +Timothy +Christopher +Walter +Arthur +Francis +Philip +Andrew +Ralph +Roger +Patrick +Louis +Scott +Keith +Henry +Albert +Carl +Frederick +Glenn +Gerald +Craig +Barry +Vincent +Eugene +Nicholas +Russell +Leonard +Howard +Martin +Eric +Jonathan +Stanley +Theodore +Ernest +Larry +Alfred +Harold +Norman +Harry +Guy +Clifford +Gordon +Roy +Jay +Bernard +Matthew +Samuel +Fred +Randy +Warren +Allen +Allan +Dean +Lee +Curtis +Edwin +Jerry +Marc +Leo +Victor +Glen +Karl +Neil +Stuart +Alexander +Bradford +Herbert +Lewis +Jon +Dale +Gerard +Joel +Leon +Kim +Leslie +Randall +Todd +Benjamin +Calvin +Kurt +Terry +Jack +Phillip +Rodney +Dominick +Salvatore +Bradley +Jeffery +Roland +Wesley +Dominic +Earl +Gene +Jerome +Maurice +Denis +Dana +Dwight +Franklin +Gregg +Lloyd +Terrence +Lester +Mitchell +Ricky +Daryl +Domenic +Geoffrey +Hugh +Laurence +Rocco +Chester +Clarence +Danny +Edmund +Jan +Mario +Neal +Nelson +Robin +Bryan +Chris +Garry +Gilbert +Ross +Angelo +Pasquale +Sean +Wallace +Willie +Andre +Arnold +Bryant +Claude +Don +Greg +Jose +Kent +Kirk +Leroy +Marcel +Micheal +Myron +Randolph +Clinton +Duane +Edgar +Fredrick +Jesse +Owen +Ronnie +Ted +Tom +Alex +Christian +Clark +Clayton +Curt +Dave +Everett +Kerry +Milton +Rick +Roderick +Steve +Carlos +Carmen +Carmine +Clifton +Darryl +Eddie +Floyd +Grant +Hal +Ira +Ivan +Marshall +Marvin +Morris +Nathan +Preston +Ray +Reginald +Sebastian +Stewart +Aaron +Armand +Brad +Brent +Carlton +Edmond +Frederic +Jean +Jimmy +Luis +Lynn +Malcolm +Melvin +Nathaniel +Otto +Perry +Rene +Rudolph +Seth +Terrance +Vito +Ward +Wilbur +Adam +Adrian +Antonio +Bert +Blair +Blake +Bobby +Conrad +Drew +Elliott +Harvey +Irving +Jacob +Jeff +Lamont +Lance +Luke +Manuel +Mike +Miles +Noel +Rickey +Roman +Spencer +Tony +Vernon +Wade +John +Robert +Michael +David +James +Richard +William +Thomas +Mark +Joseph +Paul +Gary +Peter +Stephen +Edward +Steven +Charles +Kenneth +George +Jeffrey +Donald +Kevin +Ronald +Daniel +Bruce +Anthony +Frank +Brian +Raymond +Timothy +Dennis +Wayne +Douglas +Gregory +Alan +Scott +Lawrence +Christopher +Francis +Frederick +Walter +Philip +Keith +Andrew +Arthur +Carl +Patrick +Ralph +Craig +Henry +Roger +Gerald +Glenn +Louis +Albert +Barry +Jonathan +Vincent +Russell +Theodore +Harold +Nicholas +Martin +Stanley +Larry +Alfred +Leonard +Marc +Eugene +Ernest +Harry +Matthew +Eric +Randy +Allen +Clifford +Howard +Bernard +Guy +Neil +Salvatore +Jon +Roy +Victor +Alexander +Jay +Gerard +Dean +Norman +Fred +Gordon +Kim +Samuel +Terry +Allan +Dale +Jack +Edwin +Lee +Warren +Jerry +Glen +Chester +Benjamin +Earl +Dana +Kurt +Jeffery +Jerome +Joel +Karl +Curtis +Edmund +Stuart +Bradford +Randall +Bradley +Danny +Laurence +Robin +Gene +Rodney +Todd +Leo +Phillip +Dominic +Ricky +Leon +Leslie +Lewis +Dwight +Nelson +Willie +Geoffrey +Gilbert +Herbert +Kent +Mario +Melvin +Roland +Wesley +Bryan +Gregg +Angelo +Jose +Kerry +Lance +Randolph +Sean +Steve +Terrence +Vernon +Calvin +Dominick +Leroy +Mitchell +Reginald +Ross +Brad +Duane +Garry +Lloyd +Marvin +Maurice +Neal +Ted +Clarence +Darryl +Frederic +Jimmy +Kirk +Lester +Terrance +Arnold +Chris +Dave +Don +Greg +Marshall +Claude +Hugh +Jesse +Mike +Rene +Rocco +Antonio +Carmine +Christian +Clyde +Colin +Conrad +Denis +Edgar +Franklin +Harvey +Irving +Micheal +Seth +Terence +Andre +Brett +Darrell +Daryl +Floyd +Ian +Jeff +Joe +Manuel +Rick +Vito +Willard +Alex +Alvin +Angel +Byron +Carmen +Cecil +Dan +Edmond +Erik +Everett +Felix +Francisco +Fredrick +Horace +Jan +Jim +Juan +Marcus +Milton +Noel +Oliver +Pat +Ray +Rudolph +Shawn +Spencer +Tyler +Wallace +Wilfred +Adrian +Armand +Billy +Bobby +Brent +Brien +Burton +Carlton +Clark +Clinton +Cornelius +Dane +Derek +Domenic +Elton +Erwin +Fredric +Ira +Jacob +Jeffry +Joshua +Julius +Linwood +Lucian +Luis +Lynn +Marcel +Miguel +Morris +Nathan +Oscar +Patsy +Perry +Raphael +Reed +Rickey +Sam +Sebastian +Sidney +Sylvester +Teddy +Timmy +Tommy +Tony +Robert +David +John +Michael +James +William +Richard +Thomas +Mark +Joseph +Gary +Paul +Peter +Stephen +Edward +Steven +Jeffrey +Daniel +Charles +Donald +Kevin +George +Kenneth +Bruce +Ronald +Anthony +Brian +Raymond +Timothy +Frank +Gregory +Dennis +Christopher +Wayne +Philip +Douglas +Lawrence +Alan +Keith +Scott +Louis +Arthur +Walter +Andrew +Craig +Vincent +Francis +Roger +Jonathan +Glenn +Carl +Patrick +Ralph +Frederick +Russell +Martin +Eugene +Gerald +Barry +Stanley +Marc +Henry +Albert +Jay +Theodore +Nicholas +Larry +Allen +Eric +Matthew +Harold +Leonard +Norman +Ernest +Clifford +Howard +Alfred +Guy +Roy +Samuel +Victor +Kurt +Glen +Jeffery +Karl +Leo +Phillip +Randall +Randy +Neil +Terry +Fred +Jon +Harry +Stuart +Allan +Kim +Bernard +Jerry +Alexander +Dean +Edwin +Salvatore +Joel +Lee +Geoffrey +Gordon +Benjamin +Bradford +Bradley +Dale +Todd +Jack +Curtis +Ricky +Dana +Gene +Rodney +Kerry +Edmund +Mitchell +Earl +Herbert +Laurence +Steve +Gerard +Gilbert +Warren +Danny +Leon +Terrence +Arnold +Brad +Bryan +Mario +Robin +Angelo +Chester +Garry +Roland +Chris +Dominick +Gregg +Kent +Lance +Marvin +Micheal +Alvin +Calvin +Dave +Neal +Nelson +Rick +Rocco +Ross +Sean +Willie +Clayton +Don +Jerome +Kirk +Leslie +Melvin +Ted +Wesley +Brent +Darrell +Dominic +Duane +Jose +Ray +Reginald +Conrad +Denis +Dwight +Fredrick +Harvey +Jeff +Marshall +Maurice +Nathaniel +Oscar +Roderick +Terence +Tony +Antonio +Bill +Brett +Colin +Dan +Derek +Drew +Edgar +Franklin +Hugh +Jan +Johnny +Lewis +Lloyd +Pasquale +Randolph +Alton +Carlos +Christian +Clarence +Darryl +Eddie +Edmond +Floyd +Jesse +Julius +Leigh +Leroy +Luis +Milton +Nathan +Ronnie +Shawn +Stephan +Vernon +Andre +Andy +Brien +Byron +Carlton +Carmen +Daryl +Evan +Joesph +Lionel +Malcolm +Manuel +Perry +Seth +Wilfred +Aaron +Adam +Adrian +Alex +Alphonse +Bobby +Bruno +Cary +Clinton +Clyde +Everett +Greg +Irving +Jared +Joe +Lester +Luke +Lynn +Mike +Nick +Normand +Rene +Sebastian +Spencer +Aldo +Archie +Armand +Brendan +Claude +Corey +Damian +Dante +Domenic +Dudley +Emanuel +Erik +Erwin +Gabriel +Grant +Ian +Jean +Juan +Julio +Lucien +Mary +Miguel +Morris +Randal +Ricardo +Santo +Stefan +Vito +Wallace +Wendell +Willard +Robert +John +David +Michael +James +Richard +William +Mark +Thomas +Joseph +Paul +Gary +Peter +Edward +Steven +Stephen +Kevin +Brian +Jeffrey +Donald +Daniel +Charles +Ronald +Kenneth +Timothy +George +Anthony +Frank +Bruce +Raymond +Gregory +Scott +Douglas +Christopher +Dennis +Keith +Alan +Lawrence +Philip +Wayne +Andrew +Roger +Arthur +Walter +Glenn +Louis +Russell +Patrick +Craig +Frederick +Jonathan +Francis +Carl +Matthew +Vincent +Gerald +Albert +Martin +Ralph +Leonard +Henry +Theodore +Larry +Stanley +Allen +Barry +Eric +Nicholas +Harold +Jay +Kurt +Norman +Guy +Roy +Howard +Marc +Alfred +Clifford +Randy +Dean +Eugene +Fred +Lee +Ernest +Joel +Karl +Ricky +Samuel +Alexander +Victor +Glen +Gerard +Curtis +Harry +Jon +Salvatore +Jerry +Jeffery +Randall +Geoffrey +Allan +Todd +Earl +Gordon +Jack +Neil +Benjamin +Dale +Chris +Dana +Edwin +Bernard +Bryan +Stuart +Kim +Leo +Sean +Phillip +Rodney +Roland +Terry +Warren +Edmund +Herbert +Angelo +Duane +Jeff +Jerome +Leslie +Robin +Bradford +Jose +Steve +Tom +Danny +Dominic +Mike +Darrell +Gregg +Mitchell +Randolph +Rick +Terrence +Gene +Kent +Nelson +Ray +Tony +Wesley +Leon +Lewis +Mario +Rudolph +Arnold +Bill +Calvin +Dwight +Melvin +Neal +Ronnie +Terence +Darryl +Dave +Don +Gilbert +Jim +Luis +Marshall +Nathaniel +Rocco +Ross +Chester +Kirk +Lance +Lester +Lloyd +Rene +Alex +Burton +Clarence +Daryl +Dominick +Fredrick +Greg +Herman +Jason +Kerry +Laurence +Stewart +Willie +Andre +Jan +Leroy +Mathew +Micheal +Seth +Terrance +Thaddeus +Aaron +Alvin +Brad +Bradley +Carlton +Claude +Clayton +Dan +Franklin +Jimmy +Juan +Lonnie +Marvin +Shawn +Stephan +Tim +Blair +Clark +Derek +Felix +Francisco +Hugh +Joe +Maurice +Ricardo +Rory +Vernon +Wallace +Ward +Adam +Andy +Antonio +Billy +Carmen +Clinton +Colin +Conrad +Elliott +Hector +Jesse +Leigh +Leland +Malcolm +Marcus +Milton +Pat +Perry +Ron +Scot +Adrian +Alphonse +Byron +Clyde +Drew +Edmond +Floyd +Freddie +Garry +Garth +Irving +Justin +Kelly +Manuel +Myron +Pasquale +Rafael +Reginald +Roderick +Shaun +Ted +Tracy +Wendell +Aldo +Alton +Ben +Benedict +Bob +Brien +Carlos +Carmine +Curt +Denis +Dino +Douglass +Elliot +Elmer +Evan +Francesco +Harvey +Jaime +Jerald +Joshua +Lionel +Luke +Marcel +Marco +Noel +Normand +Pedro +Pierre +Rex +Royal +Sidney +Wade +Wilbur +Willis +Wyatt +Michael +John +Robert +David +James +Richard +William +Mark +Thomas +Joseph +Paul +Peter +Gary +Steven +Kevin +Jeffrey +Brian +Stephen +Donald +Daniel +Kenneth +Edward +Ronald +Anthony +Charles +Timothy +George +Bruce +Scott +Frank +Raymond +Gregory +Keith +Douglas +Christopher +Wayne +Alan +Lawrence +Dennis +Louis +Philip +Andrew +Patrick +Glenn +Jonathan +Carl +Craig +Walter +Roger +Arthur +Francis +Ralph +Matthew +Gerald +Russell +Martin +Henry +Eric +Vincent +Frederick +Albert +Nicholas +Leonard +Jay +Dean +Randy +Harold +Theodore +Larry +Norman +Barry +Eugene +Clifford +Marc +Stanley +Howard +Jerry +Steve +Glen +Ernest +Fred +Victor +Alfred +Joel +Kurt +Guy +Harry +Samuel +Dale +Allen +Karl +Roy +Lee +Salvatore +Chris +Mike +Neil +Edwin +Jeff +Randall +Terry +Tom +Bryan +Danny +Jon +Ricky +Todd +Allan +Bernard +Gerard +Jack +Bradley +Jose +Mitchell +Bradford +Earl +Phillip +Roland +Bill +Gene +Gregg +Herbert +Curtis +Gordon +Jim +Warren +Alexander +Dwight +Neal +Stuart +Calvin +Leon +Robin +Angelo +Jeffery +Joe +Leo +Rodney +Benjamin +Kerry +Wesley +Don +Greg +Perry +Dominic +Dana +Darrell +Geoffrey +Maurice +Ronnie +Tim +Tony +Brent +Chester +Juan +Lance +Leroy +Nelson +Brad +Kent +Reginald +Rick +Sean +Vernon +Franklin +Jerome +Lewis +Terrence +Alvin +Bob +Dave +Leslie +Seth +Andre +Kim +Marshall +Micheal +Rocco +Shawn +Willie +Antonio +Dan +Dominick +Duane +Frederic +Gilbert +Mario +Nathaniel +Ray +Ted +Terrance +Wilfred +Alex +Darryl +Daryl +Drew +Edmund +Hector +Kirk +Laurence +Lester +Rene +Terence +Armand +Clarence +Doug +Ken +Nick +Pasquale +Ross +Angel +Arnold +Carlos +Carmen +Clinton +Colin +Conrad +Derrick +Fredrick +Hal +Hugh +Jason +Jesse +Kyle +Lloyd +Manuel +Billy +Clayton +Denis +Garry +Irving +Kris +Melvin +Pat +Pete +Roberto +Ron +Rory +Shaun +Stewart +Tommy +Wallace +Aaron +Adam +Blair +Brett +Cameron +Carlton +Clyde +Domenic +Dwayne +Eddie +Edmond +Elliott +Erik +Floyd +Harvey +Jan +Jimmy +Luis +Marcel +Marion +Milton +Noel +Randolph +Rickey +Sam +Scot +Sebastian +Sheldon +Adrian +Andy +Bobby +Burton +Claude +Clifton +Corey +Cory +Derek +Duncan +Erwin +Everett +Freddie +Herman +Jeremiah +Jimmie +Johnny +Julius +Kendall +Malcolm +Nathan +Orlando +Phil +Ricardo +Sidney +Thaddeus +Willard +Alphonse +Archie +Blaine +Cecil +Clay +Cliff +Dino +Felix +Fernando +Graham +Ira +Jean +Joesph +Jude +Kelly +Kenny +Leigh +Lincoln +Lorenzo +Lyle +Marcus +Miles +Morris +Oliver +Rocky +Rudolph +Russ +Shane +Sherwood +Spencer +Wade +Wendell +Wilfredo +Wilson +Michael +Robert +John +David +James +William +Thomas +Richard +Mark +Joseph +Paul +Peter +Kevin +Steven +Daniel +Brian +Gary +Jeffrey +Edward +Stephen +Charles +Donald +Kenneth +Scott +Timothy +George +Anthony +Ronald +Christopher +Frank +Bruce +Douglas +Raymond +Gregory +Keith +Wayne +Alan +Lawrence +Dennis +Philip +Patrick +Eric +Andrew +Matthew +Craig +Carl +Frederick +Walter +Ralph +Jonathan +Vincent +Jay +Albert +Francis +Arthur +Russell +Louis +Martin +Glenn +Nicholas +Gerald +Larry +Dean +Henry +Leonard +Roger +Stanley +Mike +Alfred +Randy +Dale +Todd +Harold +Harry +Howard +Chris +Jerry +Steve +Victor +Edwin +Barry +Jon +Allen +Clifford +Marc +Norman +Kurt +Samuel +Bill +Fred +Glen +Theodore +Ernest +Ricky +Curtis +Eugene +Guy +Lee +Roy +Bryan +Karl +Tom +Jeff +Neil +Terry +Bernard +Jack +Gordon +Salvatore +Geoffrey +Jim +Randall +Sean +Alexander +Gerard +Tony +Warren +Benjamin +Greg +Tim +Bob +Dave +Duane +Phillip +Allan +Danny +Earl +Bradley +Darryl +Leo +Rick +Stuart +Wesley +Dana +Gregg +Jerome +Joe +Ronnie +Arnold +Brett +Joel +Rodney +Jeffery +Jose +Leon +Terrence +Ted +Antonio +Dwight +Leroy +Shawn +Lewis +Mitchell +Darrell +Daryl +Garry +Marvin +Neal +Ray +Andre +Bradford +Calvin +Chester +Dan +Gene +Lester +Reginald +Clayton +Dominic +Edmund +Herbert +Leslie +Lloyd +Luis +Melvin +Robin +Roland +Alex +Angelo +Billy +Christian +Ken +Willie +Bret +Carlos +Denis +Kent +Manuel +Maurice +Micheal +Perry +Seth +Aaron +Carmen +Clarence +Edmond +Gilbert +Herman +Jason +Jesse +Kirk +Lance +Nick +Rocco +Alvin +Bart +Carlton +Darren +Kerry +Laurence +Pat +Ron +Don +Edgar +Floyd +Hugh +Juan +Mario +Marshall +Randolph +Rene +Wilfred +Adam +Brad +Carmine +Malcolm +Pedro +Roberto +Stewart +Tracy +Alphonse +Andy +Angel +Bruno +Claude +Derek +Dino +Domenic +Doug +Dwayne +Eddie +Franklin +Ian +Joey +Joshua +Kyle +Luke +Nathan +Nelson +Rafael +Reed +Ross +Shaun +Terence +Tyrone +Al +Armand +Brendan +Brent +Clay +Drew +Felix +Fredrick +Grant +Harvey +Jimmy +Julio +Julius +Kenny +Kris +Miguel +Milton +Morgan +Noel +Rickey +Roderick +Sam +Scot +Timmy +Tod +Wendell +Wilfredo +Burton +Clark +Clement +Clifton +Clyde +Dane +Derrick +Douglass +Emil +Jamie +Jerald +Jordan +Kim +Marcel +Mathew +Nathaniel +Ned +Phil +Ramon +Terrance +Tommy +Vernon +Vito +Wallace +Wilbur +Wilson +Alfonso +Bobby +Bryce +Carlo +Cliff +Clinton +Dominick +Earle +Evan +Everett +Freddie +Gerry +Hector +Hubert +Isaac +Jan +Jeffry +Jimmie +Johnnie +Johnny +Lonnie +Louie +Lucien +Mary +Miles +Normand +Pasquale +Quentin +Randal +Rex +Ricardo +Rory +Sidney +Stephan +Thaddeus +Ward +John +Robert +Michael +David +James +Mark +William +Richard +Thomas +Joseph +Paul +Peter +Steven +Jeffrey +Brian +Edward +Kevin +Timothy +Daniel +Stephen +Kenneth +Charles +Gary +Scott +Anthony +Christopher +Donald +Ronald +Gregory +Frank +George +Bruce +Raymond +Douglas +Andrew +Philip +Wayne +Alan +Patrick +Eric +Craig +Keith +Dennis +Matthew +Louis +Arthur +Lawrence +Glenn +Jonathan +Walter +Vincent +Francis +Russell +Ralph +Carl +Frederick +Roger +Gerald +Marc +Albert +Nicholas +Henry +Larry +Martin +Theodore +Jay +Harold +Todd +Chris +Randy +Steve +Barry +Dean +Jon +Stanley +Eugene +Norman +Roy +Mike +Leonard +Guy +Ricky +Dale +Glen +Neil +Tom +Alfred +Allen +Harry +Samuel +Bill +Kurt +Bryan +Ernest +Sean +Edwin +Greg +Howard +Jim +Jose +Lee +Randall +Jack +Stuart +Alexander +Karl +Clifford +Curtis +Tim +Jeff +Phillip +Victor +Allan +Gerard +Jerry +Fred +Terry +Benjamin +Jeffery +Bernard +Dave +Rodney +Salvatore +Shawn +Dana +Gordon +Joe +Leo +Tony +Danny +Earl +Micheal +Angelo +Willie +Perry +Bob +Brett +Dominic +Joel +Terrence +Darryl +Daryl +Mitchell +Ray +Darrell +Geoffrey +Gregg +Luis +Rick +Ted +Warren +Bradford +Bradley +Gene +Jimmy +Roland +Ronnie +Arnold +Brad +Chester +Clayton +Kirk +Lance +Kent +Laurence +Lloyd +Tyrone +Clarence +Darren +Dwight +Eddie +Edmund +Herbert +Manuel +Melvin +Neal +Rene +Wesley +Brent +Duane +Jason +Kyle +Leslie +Reginald +Tracy +Andre +Billy +Carmen +Dan +Jerome +Kerry +Lester +Marvin +Nelson +Pasquale +Pete +Seth +Stewart +Christian +Denis +Dwayne +Garry +Mario +Nathan +Nathaniel +Aaron +Angel +Bret +Carmine +Clyde +Curt +Derrick +Don +Gilbert +Hector +Johnny +Leon +Nick +Noel +Rocco +Ross +Adam +Bobby +Dominick +Duncan +Erik +Floyd +Hugh +Jamie +Leroy +Lewis +Ricardo +Antonio +Bart +Carlos +Charlie +Doug +Jan +Juan +Ken +Kim +Marshall +Maurice +Randal +Randolph +Terence +Alvin +Byron +Calvin +Clinton +Colin +Edgar +Franklin +Gino +Ian +Ivan +Jean +Julio +Orlando +Robin +Rory +Shaun +Vernon +Wallace +Burton +Derek +Drew +Edmond +Everett +Felix +Jesse +Joey +Kris +Luke +Lyle +Matt +Owen +Pat +Roberto +Ron +Tommy +Vance +Vito +Alberto +Alex +Brendan +Cary +Damon +Dino +Domenic +Evan +Fernando +Fredrick +Gerry +Grant +Irving +Jody +Joshua +Julius +Kelly +Kenny +Lionel +Loren +Luther +Mathew +Myron +Pierre +Rafael +Rudolph +Scot +Terrance +Timmy +Tyler +Wade +Ward +Wilfred +Al +Andy +Claude +Corey +Ed +Elbert +Francisco +Freddie +Frederic +Jaime +Jeremiah +Linwood +Mary +Milton +Morris +Reed +Rickey +Roderick +Sam +Wendell +John +Michael +Robert +David +James +Mark +Richard +William +Thomas +Joseph +Paul +Steven +Jeffrey +Peter +Brian +Kevin +Edward +Daniel +Stephen +Timothy +Kenneth +Christopher +Scott +Gary +Anthony +Charles +Donald +Ronald +George +Frank +Gregory +Douglas +Raymond +Andrew +Bruce +Keith +Alan +Dennis +Matthew +Patrick +Eric +Carl +Craig +Wayne +Louis +Lawrence +Philip +Jonathan +Walter +Roger +Arthur +Glenn +Albert +Chris +Gerald +Martin +Vincent +Russell +Ralph +Larry +Jay +Eugene +Frederick +Todd +Francis +Randy +Leonard +Edwin +Henry +Nicholas +Marc +Mike +Barry +Howard +Shawn +Steve +Dean +Theodore +Jeff +Phillip +Allen +Harold +Karl +Jon +Randall +Greg +Guy +Roy +Victor +Fred +Tom +Bryan +Danny +Harry +Kurt +Alfred +Dale +Ernest +Gordon +Jack +Norman +Stuart +Bernard +Gerard +Joel +Samuel +Curtis +Dave +Jerry +Salvatore +Sean +Glen +Jeffery +Jose +Stanley +Gregg +Leo +Ricky +Nelson +Tim +Herbert +Joe +Mitchell +Brett +Clifford +Dana +Lance +Darryl +Bill +Brad +Bradford +Don +Jim +Tony +Warren +Benjamin +Geoffrey +Jason +Jimmy +Lee +Alexander +Duane +Dwight +Neil +Bob +Micheal +Terry +Willie +Bradley +Rodney +Roland +Ray +Antonio +Jerome +Luis +Adam +Angelo +Billy +Dan +Dwayne +Leon +Allan +Earl +Gene +Kirk +Leslie +Mario +Wesley +Andre +Tracy +Angel +Clayton +Gilbert +Kerry +Lloyd +Manuel +Neal +Terrence +Andy +Brendan +Brent +Carlos +Eddie +Hugh +Juan +Laurence +Randolph +Calvin +Darren +Kyle +Lewis +Rick +Seth +Stewart +Ted +Tyrone +Clarence +Ken +Maurice +Nathan +Reginald +Aaron +Alex +Arnold +Edmund +Milton +Pasquale +Perry +Rene +Rocco +Ronnie +Carlton +Clyde +Darrell +Daryl +Dino +Dominick +Ed +Edmond +Grant +Johnny +Kent +Leroy +Marshall +Nathaniel +Bart +Curt +Derek +Everett +Jeffry +Kelly +Kris +Melvin +Ross +Carmen +Chester +Edgar +Floyd +Hector +Jan +Jesse +Nick +Robin +Roderick +Ron +Wade +Wallace +Adrian +Bobby +Clark +Denis +Dominic +Drew +Felix +Ian +Kim +Marvin +Miguel +Terence +Timmy +Tommy +Troy +Bret +Clinton +Colin +Doug +Evan +Franklin +Frederic +Fredrick +Garth +Harvey +Jean +Jimmie +Jody +Kelvin +Loren +Luke +Mathew +Orlando +Pete +Roberto +Stephan +Thaddeus +Al +Alphonse +August +Ben +Carlo +Carmine +Christian +Claude +Derrick +Erich +Erik +Frankie +Garry +Irving +Isaac +Jaime +Jessie +Julio +Kenny +Lester +Malcolm +Marcus +Normand +Pat +Pedro +Pierre +Sebastian +Shaun +Wilfredo +Armando +Byron +Cameron +Cary +Chuck +Cornelius +Dion +Domenic +Elliot +Elmer +Emil +Ernie +Freddie +Freddy +Gerry +Ismael +Jamie +Jeremy +Joshua +Jude +Lincoln +Lisa +Lucien +Michel +Mickey +Nicolas +Noel +Oliver +Oscar +Raul +Rory +Scot +Teddy +Vernon +Ward +Michael +John +David +Robert +James +Mark +Richard +Thomas +William +Joseph +Paul +Jeffrey +Peter +Daniel +Steven +Kevin +Christopher +Scott +Brian +Edward +Timothy +Stephen +Gary +Kenneth +Charles +Anthony +Ronald +Donald +Gregory +George +Frank +Douglas +Andrew +Keith +Raymond +Bruce +Craig +Patrick +Alan +Eric +Matthew +Todd +Wayne +Glenn +Dennis +Philip +Lawrence +Carl +Jonathan +Louis +Roger +Russell +Gerald +Vincent +Walter +Francis +Ralph +Chris +Arthur +Frederick +Dean +Larry +Henry +Martin +Marc +Randy +Jay +Barry +Steve +Albert +Eugene +Jeff +Theodore +Harold +Sean +Leonard +Victor +Nicholas +Jeffery +Gregg +Dale +Glen +Kurt +Howard +Ricky +Roy +Jim +Samuel +Shawn +Alfred +Ernest +Mike +Darryl +Jon +Stuart +Clifford +Greg +Jose +Karl +Allen +Jerry +Phillip +Salvatore +Jack +Norman +Tony +Curtis +Randall +Stanley +Edwin +Joe +Dana +Troy +Geoffrey +Guy +Neil +Bryan +Bradley +Brett +Danny +Gene +Terry +Bernard +Fred +Lee +Bill +Harry +Benjamin +Rodney +Tim +Tom +Adam +Gerard +Mitchell +Robin +Dwayne +Angelo +Tracy +Warren +Alexander +Bob +Antonio +Brad +Dave +Jimmy +Seth +Allan +Duane +Gordon +Ronnie +Billy +Jason +Joel +Bradford +Eddie +Kirk +Maurice +Micheal +Angel +Brendan +Christian +Dan +Dominic +Kent +Leo +Neal +Ted +Andre +Carlos +Kyle +Ramon +Ross +Terrence +Wesley +Aaron +Calvin +Carmen +Dwight +Jerome +Johnny +Lester +Lewis +Ray +Willie +Bobby +Darren +Franklin +Lance +Miguel +Nelson +Perry +Rick +Roberto +Roland +Derek +Drew +Earl +Edmund +Herbert +Leroy +Reginald +Wilfred +Alvin +Chester +Domenic +Edgar +Kenny +Kerry +Kim +Manuel +Mario +Nathan +Terence +Tommy +Tyrone +Wallace +Alberto +Arnold +Clarence +Evan +Jesse +Luis +Marvin +Pasquale +Randolph +Clark +Clayton +Darrell +Felix +Floyd +Gilbert +Harvey +Kelly +Laurence +Leon +Luke +Shaun +Alex +Andy +Brent +Colin +Don +Grant +Juan +Marshall +Milton +Orlando +Stewart +Ward +Carmine +Claude +Derrick +Dino +Dominick +Francisco +Fredrick +Garry +Hugh +Lloyd +Melvin +Pat +Rene +Roderick +Terrance +Wilfredo +Cecil +Cornelius +Denis +Edmond +Jan +Jody +Johnnie +Joshua +Leslie +Matt +Nathaniel +Noel +Owen +Ron +Rory +Rudolph +Shane +Vernon +Wade +Charlie +Clay +Clifton +Dirk +Erik +Everett +Gerry +Israel +Ivan +Jorge +Julio +Lon +Lorenzo +Marcel +Mathew +Nick +Pete +Rafael +Rocco +Ruben +Sebastian +Susan +Teddy +Armand +Ben +Brooks +Bryant +Carlton +Cary +Chuck +Clinton +Clyde +Conrad +Dion +Doug +Elliot +Emil +Emilio +Ernie +Erwin +Ethan +Freddie +Garrett +Graham +Hector +Herman +Jed +Joey +Leigh +Loren +Marcus +Marion +Oliver +Pierre +Roman +Sal +Sherman +Timmy +John +Michael +David +Robert +James +Mark +William +Thomas +Richard +Joseph +Scott +Jeffrey +Paul +Steven +Peter +Daniel +Kevin +Christopher +Brian +Edward +Stephen +Kenneth +Timothy +Anthony +Gary +Donald +Charles +Gregory +Ronald +Douglas +Andrew +Frank +George +Raymond +Glenn +Eric +Bruce +Todd +Keith +Matthew +Alan +Patrick +Vincent +Craig +Wayne +Lawrence +Philip +Dennis +Roger +Jonathan +Carl +Arthur +Dean +Louis +Walter +Gerald +Jay +Martin +Russell +Francis +Frederick +Marc +Ralph +Barry +Sean +Chris +Howard +Albert +Henry +Edwin +Harold +Kurt +Theodore +Nicholas +Jon +Leonard +Bryan +Larry +Allen +Glen +Shawn +Victor +Dale +Eugene +Salvatore +Mike +Karl +Norman +Darryl +Jeffery +Jeff +Troy +Alfred +Randall +Randy +Danny +Tony +Phillip +Ernest +Gregg +Steve +Fred +Joe +Stanley +Jerry +Joel +Curtis +Lee +Samuel +Guy +Jose +Roy +Antonio +Harry +Jack +Adam +Clifford +Neil +Bradley +Greg +Gordon +Benjamin +Jason +Ricky +Tom +Dana +Jim +Rodney +Tim +Tracy +Warren +Alexander +Bernard +Gene +Kirk +Terry +Andre +Brett +Dave +Geoffrey +Nelson +Willie +Allan +Duane +Lance +Stuart +Bill +Jimmy +Micheal +Dwayne +Jerome +Carlos +Dan +Gerard +Hector +Herbert +Johnny +Rick +Angelo +Daryl +Kyle +Mitchell +Roland +Ronnie +Aaron +Bradford +Darren +Earl +Juan +Kerry +Luis +Mario +Marvin +Miguel +Reginald +Bobby +Christian +Leo +Alex +Calvin +Eddie +Edmund +Gilbert +Jesus +Kent +Leon +Milton +Roberto +Ross +Ted +Arnold +Bob +Derek +Lewis +Nick +Ray +Seth +Brad +Clinton +Darrell +Evan +Melvin +Ron +Scot +Alvin +Angel +Dominic +Edgar +Franklin +Kelly +Leslie +Robin +Terrence +Tyrone +Vernon +Wesley +Alberto +Andy +Billy +Claude +Clayton +Dominick +Lester +Nathaniel +Stephan +Tommy +Brent +Clifton +Curt +Dwight +Francisco +Garry +Hugh +Jesse +Justin +Kris +Lloyd +Luke +Marcus +Maurice +Neal +Owen +Perry +Rafael +Roman +Spencer +Stewart +Terence +Timmy +Ward +Blaine +Clarence +Clyde +Drew +Edmond +Erik +Everett +Floyd +Julio +Kenny +Manuel +Pasquale +Rocco +Shaun +Wallace +Alton +Armand +Bart +Brendan +Byron +Clark +Clay +Colin +Don +Ed +Elliott +Gabriel +Jan +Jean +Jeremy +Laurence +Morris +Nathan +Normand +Randolph +Rene +Ricardo +Rudy +Santo +Terrance +Wilson +Alonzo +Bret +Carmen +Carmine +Cary +Chester +Cory +Darin +Domenic +Emil +Erich +Grant +Harlan +Ira +Jamie +Kelvin +Ken +Leroy +Lionel +Lyle +Malcolm +Mary +Myron +Noel +Roderick +Rory +Tod +Wilfredo +Alphonso +Bernie +Cecil +Charlie +Dante +Derrick +Dino +Doug +Ellis +Felix +Freddie +Frederic +Gilberto +Harvey +Jed +Jordan +Jorge +Joshua +Lonnie +Lorenzo +Mathew +Pedro +Sal +Sebastian +Shane +Sherman +Thaddeus +John +Michael +David +Robert +James +Mark +William +Richard +Thomas +Joseph +Paul +Scott +Jeffrey +Peter +Brian +Christopher +Steven +Kevin +Daniel +Timothy +Kenneth +Stephen +Edward +Anthony +Gary +Charles +Ronald +Gregory +Donald +George +Frank +Douglas +Andrew +Todd +Keith +Raymond +Bruce +Matthew +Eric +Patrick +Glenn +Wayne +Alan +Vincent +Jonathan +Philip +Craig +Lawrence +Dennis +Arthur +Carl +Louis +Dean +Roger +Russell +Frederick +Walter +Marc +Martin +Francis +Sean +Albert +Nicholas +Barry +Chris +Theodore +Jay +Ralph +Leonard +Gerald +Samuel +Henry +Adam +Stanley +Randall +Randy +Larry +Kurt +Ernest +Shawn +Jon +Jose +Eugene +Harold +Glen +Howard +Jeff +Jeffery +Mike +Terry +Allen +Darryl +Bryan +Danny +Norman +Tony +Victor +Gordon +Jim +Neil +Ricky +Edwin +Salvatore +Fred +Karl +Joel +Steve +Bernard +Phillip +Tom +Alfred +Brett +Roy +Troy +Dale +Lee +Darren +Greg +Benjamin +Dana +Jerry +Antonio +Rodney +Alexander +Gregg +Jerome +Joe +Kyle +Tim +Juan +Reginald +Aaron +Bill +Curtis +Warren +Dan +Lance +Harry +Jason +Johnny +Luis +Stuart +Willie +Andre +Clifford +Jack +Kirk +Dave +Dwayne +Earl +Jesse +Mario +Tracy +Tyrone +Bobby +Christian +Clayton +Geoffrey +Guy +Jimmy +Nelson +Brad +Carlos +Derek +Dominic +Duane +Ray +Rick +Wesley +Angelo +Bob +Brent +Erik +Maurice +Terrance +Terrence +Billy +Bradley +Gene +Leo +Micheal +Roland +Ross +Terence +Daryl +Dwight +Kent +Leon +Melvin +Ronnie +Wilfredo +Allan +Bradford +Eddie +Hector +Herbert +Lewis +Nathaniel +Rocco +Alex +Arnold +Calvin +Carmen +Derrick +Don +Gerard +Hugh +Ian +Joshua +Ken +Lloyd +Miguel +Mitchell +Neal +Perry +Seth +Stephan +Tommy +Franklin +Gilbert +Jamie +Kerry +Miles +Rafael +Alvin +Colin +Curt +Edmund +Jeremy +Kelly +Kenny +Nathan +Shaun +Ted +Vernon +Andy +Angel +Brendan +Claude +Darrell +Dominick +Felix +Jorge +Leroy +Leslie +Manuel +Rene +Ricardo +Roberto +Ron +Sebastian +Stefan +Blake +Carmine +Clinton +Dexter +Frankie +Garrett +Ivan +Jeremiah +Jody +Joey +Kris +Laurence +Luke +Marvin +Orlando +Randolph +Robin +Scot +Shane +Willard +Chuck +Doug +Duncan +Garry +Kim +Lester +Ramon +Stewart +Wade +Wilbert +Alton +Andres +August +Chester +Clark +Clyde +Drew +Eduardo +Freddie +Gino +Grant +Harvey +Heriberto +Julius +Justin +Lars +Lorenzo +Lucien +Luigi +Marcus +Merrill +Noel +Oliver +Pete +Alberto +Alphonse +Armand +Ben +Bret +Bryce +Cary +Charlie +Clay +Clifton +Conrad +Denis +Domenic +Elliott +Ernesto +Everett +Garth +Giuseppe +Jacob +Jaime +Jean +Leigh +Lionel +Lonnie +Marcel +Marco +Marshall +Marty +Milton +Myron +Nick +Pablo +Pasquale +Pedro +Pierre +Roderick +Roosevelt +Rory +Ruben +Sam +Sherman +Susan +Thaddeus +Tyler +Virgil +Wilson +Zachary +John +Michael +Robert +David +James +Richard +Mark +William +Thomas +Joseph +Paul +Christopher +Scott +Jeffrey +Kevin +Peter +Steven +Daniel +Brian +Edward +Anthony +Timothy +Kenneth +Stephen +Ronald +Charles +Donald +Gregory +Gary +Todd +Andrew +Patrick +Frank +Eric +Douglas +George +Raymond +Matthew +Bruce +Jonathan +Keith +Wayne +Dennis +Alan +Craig +Philip +Vincent +Glenn +Lawrence +Marc +Walter +Arthur +Carl +Louis +Gerald +Russell +Roger +Sean +Dean +Shawn +Francis +Nicholas +Frederick +Albert +Ralph +Theodore +Barry +Jay +Leonard +Edwin +Adam +Darryl +Karl +Martin +Victor +Jon +Benjamin +Harold +Henry +Kurt +Howard +Randall +Glen +Jose +Chris +Dale +Larry +Allen +Jerry +Mike +Norman +Randy +Samuel +Ernest +Eugene +Fred +Gregg +Steve +Bryan +Clifford +Guy +Alfred +Salvatore +Stanley +Alexander +Dana +Tony +Aaron +Lee +Troy +Danny +Harry +Terry +Jeff +Duane +Luis +Neil +Rodney +Gordon +Jeffery +Lance +Bernard +Jack +Roy +Tom +Jerome +Joel +Kyle +Ricky +Edmund +Jimmy +Andre +Bradley +Brett +Curtis +Jason +Phillip +Warren +Erik +Geoffrey +Joe +Juan +Terrence +Allan +Christian +Derek +Mario +Maurice +Tracy +Angel +Bill +Bradford +Carlos +Darrell +Dominic +Jim +Leon +Earl +Leroy +Reginald +Roland +Dwayne +Greg +Kerry +Seth +Stuart +Tim +Tyrone +Angelo +Brad +Colin +Gene +Kent +Marvin +Rick +Ronnie +Shaun +Willie +Antonio +Billy +Curt +Darren +Evan +Hector +Herbert +Ian +Nathan +Nelson +Alex +Brent +Eddie +Gerard +Johnny +Leo +Mitchell +Ricardo +Roderick +Tod +Wesley +Alvin +Bret +Clarence +Edgar +Franklin +Laurence +Luke +Neal +Terence +Vernon +Arnold +Dave +Jamie +Manuel +Miguel +Rocco +Bob +Bobby +Brendan +Calvin +Carmen +Chester +Herman +Jesse +Kirk +Melvin +Micheal +Roberto +Stephan +Claude +Daryl +Derrick +Don +Fredrick +Gilbert +Hugh +Justin +Ken +Mathew +Milton +Ray +Robin +Ron +Ross +Tommy +Byron +Clark +Dominick +Drew +Edmond +Francisco +Garry +Jeremy +Jorge +Julius +Leslie +Marcus +Nathaniel +Perry +Ramon +Alonzo +Clint +Dan +Dwight +Eduardo +Gabriel +Grant +Ira +Jesus +Kris +Lewis +Pasquale +Pat +Raul +Rene +Timmy +Wade +Wendell +Wilfredo +Willard +Zachary +Al +Alberto +Andy +Burton +Carlo +Felix +Garrett +Harvey +Jaime +Jeremiah +Jody +Joshua +Kelvin +Kim +Lester +Lloyd +Lorenzo +Marty +Morris +Orlando +Preston +Ruben +Stefan +Terrance +Travis +Casey +Chet +Darin +Domenic +Doug +Floyd +Freddie +Garth +Ivan +Julio +Lonnie +Marcel +Marshall +Oscar +Pablo +Pedro +Rafael +Randolph +Rudolph +Ted +Tyler +Wallace +Adrian +Aldo +Alfredo +Anton +Austin +Bennie +Bert +Bryant +Cameron +Carlton +Cary +Clayton +Clinton +Clyde +Damian +Damon +Darrin +Dino +Ernie +Everett +Fernando +Francesco +Giuseppe +Hans +Jean +Jimmie +Johnathan +Julian +Kelly +Lorne +Morgan +Myron +Noel +Norberto +Pete +Randal +Reid +Rob +Rudy +Sam +Sammy +Sebastian +Stacy +Teddy +Toby +Tomas +Tracey +Vance +Michael +John +David +Robert +James +Richard +Thomas +William +Christopher +Joseph +Mark +Paul +Jeffrey +Scott +Steven +Daniel +Kevin +Brian +Timothy +Peter +Stephen +Kenneth +Anthony +Edward +Eric +Charles +Gregory +Andrew +Ronald +Donald +Gary +Matthew +Todd +Douglas +Frank +Patrick +George +Raymond +Keith +Bruce +Sean +Jonathan +Alan +Craig +Vincent +Dennis +Marc +Glenn +Lawrence +Wayne +Dean +Gerald +Frederick +Philip +Louis +Rodney +Walter +Arthur +Roger +Shawn +Carl +Martin +Jose +Russell +Albert +Nicholas +Chris +Ralph +Harold +Henry +Darren +Theodore +Erik +Victor +Francis +Kurt +Leonard +Jay +Samuel +Randy +Bryan +Ernest +Jason +Lee +Karl +Edwin +Glen +Jon +Darryl +Randall +Allen +Barry +Jeffery +Eugene +Curtis +Norman +Adam +Larry +Steve +Neil +Salvatore +Danny +Howard +Carlos +Jerry +Luis +Alfred +Gerard +Ricky +Stanley +Duane +Phillip +Troy +Darrin +Geoffrey +Roy +Benjamin +Dwayne +Jeff +Micheal +Tony +Aaron +Antonio +Christian +Dale +Gregg +Tracy +Alexander +Clifford +Mike +Terry +Angelo +Juan +Greg +Harry +Stuart +Tom +Andre +Jack +Lewis +Warren +Bernard +Dana +Darrell +Derek +Guy +Jim +Joel +Kirk +Tim +Kyle +Manuel +Marvin +Tyrone +Willie +Colin +Leon +Nelson +Reginald +Terrence +Fred +Gordon +Hector +Johnny +Maurice +Ross +Franklin +Miguel +Allan +Calvin +Clayton +Gene +Melvin +Roberto +Rocco +Seth +Angel +Bradford +Chester +Dave +Derrick +Dominic +Lance +Leroy +Mario +Bill +Billy +Dan +Edmund +Herbert +Jerome +Jesse +Joe +Leo +Roland +Ronnie +Wesley +Arnold +Brad +Brett +Clarence +Daryl +Dominick +Hugh +Justin +Kerry +Laurence +Randolph +Rick +Roderick +Sebastian +Bradley +Brent +Jamie +Joshua +Mitchell +Alex +Brendan +Damon +Darin +Don +Dwight +Earl +Felix +Neal +Rafael +Robin +Bryant +Denis +Eddie +Evan +Jimmy +Kelly +Kent +Lester +Lloyd +Orlando +Pasquale +Ray +Rene +Stewart +Bart +Bobby +Corey +Curt +Edgar +Fernando +Garry +Jody +Leslie +Lonnie +Nathan +Pat +Pedro +Perry +Scot +Shane +Ted +Terence +Toby +Adrian +Carmen +Carmine +Clark +Clifton +Clinton +Erich +Erick +Francisco +Gilbert +Ian +Jean +Julio +Ken +Nathaniel +Noel +Ricardo +Rob +Shaun +Solomon +Spencer +Terrance +Thaddeus +Tyler +Andy +Claude +Everett +Gino +Israel +Jordan +Jorge +Julius +Kim +Lisa +Luke +Malcolm +Marcel +Marcus +Marshall +Morgan +Myron +Nick +Norberto +Ramon +Rudolph +Ryan +Shannon +Trevor +Wade +Wilfred +Wilfredo +Willard +Alberto +Alfonso +Alvin +Andres +Bob +Brandon +Byron +Carlo +Cory +Courtney +Daren +Dexter +Dino +Efrain +Emil +Enrique +Grant +Ismael +Ivan +Jacques +Jared +Jeffry +Kelvin +Luigi +Marco +Pierre +Preston +Ron +Sam +Tad +Tod +Tommy +Travis +Van +Michael +John +David +Robert +James +Christopher +William +Richard +Thomas +Joseph +Mark +Jeffrey +Paul +Brian +Scott +Steven +Kevin +Daniel +Timothy +Peter +Stephen +Anthony +Kenneth +Edward +Eric +Ronald +Todd +Donald +Gregory +Andrew +Charles +Matthew +Gary +Keith +Frank +George +Patrick +Douglas +Raymond +Jonathan +Sean +Bruce +Alan +Craig +Marc +Wayne +Vincent +Dennis +Shawn +Philip +Dean +Lawrence +Louis +Roger +Frederick +Nicholas +Carl +Jose +Rodney +Russell +Albert +Arthur +Glenn +Jason +Walter +Bryan +Henry +Francis +Chris +Gerald +Jay +Martin +Lee +Samuel +Ralph +Jon +Allen +Victor +Howard +Darryl +Edwin +Eugene +Troy +Stanley +Adam +Kurt +Luis +Leonard +Randy +Antonio +Darren +Erik +Jeffery +Norman +Alexander +Barry +Ernest +Randall +Salvatore +Benjamin +Glen +Danny +Gregg +Harold +Steve +Theodore +Phillip +Andre +Brett +Dale +Joel +Gordon +Jeff +Tony +Warren +Darrin +Dwayne +Larry +Alfred +Derek +Geoffrey +Jerry +Neil +Clifford +Karl +Kyle +Roy +Allan +Fred +Harry +Jerome +Curtis +Gerard +Guy +Maurice +Miguel +Mike +Terrence +Christian +Derrick +Jack +Terry +Carlos +Brendan +Dana +Greg +Jim +Marvin +Mitchell +Terence +Tyrone +Aaron +Brad +Hector +Joshua +Leo +Leslie +Reginald +Roland +Tom +Wesley +Willie +Johnny +Leon +Tim +Bobby +Bradley +Fernando +Jesse +Joe +Neal +Ricky +Seth +Angel +Darrell +Jimmy +Melvin +Milton +Nelson +Rafael +Angelo +Bradford +Chad +Chester +Dwight +Edmund +Franklin +Ian +Lance +Roberto +Stuart +Terrance +Tracy +Bernard +Bill +Daryl +Duane +Earl +Francisco +Gene +Jody +Juan +Kelly +Lloyd +Manuel +Mario +Micheal +Randolph +Ricardo +Alex +Billy +Denis +Evan +Noel +Ross +Sebastian +Ted +Wilfredo +Calvin +Clarence +Daren +Darin +Dominic +Herbert +Kirk +Laurence +Lester +Lewis +Pasquale +Pedro +Robin +Ronnie +Ryan +Shane +Arnold +Drew +Floyd +Gabriel +Ivan +Javier +Justin +Kent +Kerry +Leroy +Malcolm +Marshall +Nathan +Rick +Rocco +Wade +Brent +Dominick +Eddie +Enrique +Ken +Matt +Nick +Orlando +Travis +Vernon +Abraham +Andy +Carlton +Clayton +Dave +Dino +Erick +Fredrick +Garrett +Garth +Grant +Ismael +Jared +Joey +Lorenzo +Marcus +Nathaniel +Ray +Roderick +Sidney +Toby +Tommy +Vance +Alphonse +Alvin +Carmen +Colin +Curt +Damian +Don +Elliott +Hans +Herman +Hugh +Israel +Jaime +Jamie +Jorge +Luigi +Luke +Marco +Pierre +Ramon +Rudolph +Scot +Shaun +Stefan +Stephan +Tyler +Wilson +Bart +Bert +Blake +Bob +Burton +Carmine +Clark +Claude +Clifton +Clyde +Cory +Damon +Edgar +Efrain +Ernesto +Ethan +Felix +Frederic +Gilbert +Harvey +Heath +Ira +Johnnie +Kendall +Kris +Leonardo +Loren +Mathew +Myron +Oliver +Perry +Randal +Rene +Ron +Spencer +Susan +Thaddeus +Vito +Wallace +Wilfred +Zachary +Michael +David +John +Robert +James +Christopher +William +Richard +Mark +Thomas +Joseph +Scott +Brian +Jeffrey +Paul +Steven +Timothy +Daniel +Kevin +Peter +Stephen +Anthony +Eric +Matthew +Kenneth +Edward +Ronald +Charles +Andrew +Gary +Todd +Gregory +Frank +Donald +Patrick +Keith +George +Sean +Douglas +Raymond +Jonathan +Craig +Jason +Marc +Wayne +Bruce +Alan +Dennis +Lawrence +Vincent +Shawn +Philip +Dean +Glenn +Walter +Rodney +Jose +Francis +Louis +Arthur +Frederick +Albert +Roger +Carl +Bryan +Chris +Russell +Troy +Henry +Erik +Kurt +Gerald +Jon +Nicholas +Jay +Victor +Martin +Theodore +Adam +Benjamin +Darren +Edwin +Glen +Stanley +Ernest +Ralph +Derek +Salvatore +Joel +Randy +Juan +Alexander +Bernard +Eugene +Jeffery +Jerry +Kyle +Lee +Christian +Harold +Leonard +Luis +Samuel +Allen +Darryl +Duane +Antonio +Brett +Howard +Andre +Dale +Norman +Phillip +Ricky +Roy +Tony +Barry +Carlos +Darrin +Aaron +Danny +Jeff +Larry +Steve +Alfred +Angelo +Darrell +Karl +Reginald +Angel +Brad +Jerome +Randall +Geoffrey +Neil +Warren +Willie +Daryl +Gregg +Guy +Ian +Ryan +Curtis +Dana +Fred +Jack +Joshua +Kelly +Maurice +Shane +Harry +Hector +Lance +Mario +Clifford +Greg +Jimmy +Pedro +Rafael +Roberto +Terrence +Dominic +Dwayne +Nelson +Shaun +Terence +Allan +Bradford +Jesse +Leon +Mike +Terrance +Terry +Alex +Brendan +Chad +Clayton +Derrick +Earl +Edmund +Marco +Marcus +Tyrone +Bobby +Gerard +Herbert +Jody +Julio +Justin +Leo +Miguel +Stuart +Wilfredo +Alvin +Billy +Bradley +Clarence +Gene +Gordon +Lewis +Manuel +Nathaniel +Rocco +Alberto +Carlton +Eddie +Hugh +Jamie +Jeremy +Joe +Jorge +Kirk +Leroy +Melvin +Mitchell +Orlando +Roland +Ross +Seth +Stacy +Tim +Clinton +Dan +Dominick +Dwight +Everett +Jim +Johnny +Kris +Lloyd +Ray +Tom +Tommy +Tracy +Bill +Bryant +Colin +Edgar +Felix +Francisco +Leslie +Marvin +Milton +Oliver +Ramon +Ricardo +Rick +Trevor +Adrian +Andy +Darin +Dave +Franklin +Garrett +Jared +Micheal +Nathan +Neal +Scot +Sidney +Stephan +Wesley +Bret +Byron +Clifton +Curt +Floyd +Frederic +Gilbert +Heath +Ivan +Jean +Jeffry +Kerry +Marshall +Mathew +Pasquale +Perry +Stacey +Stewart +Ted +Wade +Wilson +Arnold +Ben +Brent +Carlo +Carmelo +Chester +Damon +Daren +Edmond +Elvis +Evan +Hans +Ismael +Jaime +Jan +Kelvin +Laurence +Lester +Marcel +Ronnie +Stefan +Tyler +Vernon +Wallace +Wendell +Alphonso +Alton +Andres +Armand +Brant +Burton +Carmine +Clark +Corey +Cory +Dirk +Domenic +Domingo +Drew +Gabriel +Gerardo +Javier +Johnnie +Jordan +Kenny +Kent +Malcolm +Matt +Michel +Pablo +Pierre +Randolph +Roosevelt +Sebastian +Simon +Timmy +Travis +Vincenzo +Wilfred +Michael +David +John +Robert +James +William +Christopher +Richard +Mark +Joseph +Thomas +Scott +Jeffrey +Brian +Paul +Kevin +Daniel +Steven +Timothy +Matthew +Stephen +Peter +Edward +Anthony +Eric +Kenneth +Charles +Todd +Gregory +Andrew +Ronald +Sean +Patrick +Gary +Donald +George +Keith +Douglas +Raymond +Frank +Jonathan +Craig +Marc +Jason +Dennis +Jose +Shawn +Vincent +Alan +Wayne +Nicholas +Bruce +Frederick +Lawrence +Arthur +Roger +Louis +Walter +Gerald +Philip +Glenn +Bryan +Carl +Dean +Russell +Troy +Victor +Carlos +Martin +Erik +Rodney +Francis +Edwin +Albert +Samuel +Alexander +Benjamin +Jay +Luis +Adam +Jon +Chris +Henry +Ralph +Allen +Darren +Kurt +Eugene +Lee +Theodore +Randy +Juan +Aaron +Antonio +Curtis +Jeffery +Glen +Howard +Joel +Karl +Steve +Angel +Christian +Stanley +Dale +Maurice +Tony +Brendan +Geoffrey +Harold +Jack +Jerry +Brett +Dwayne +Gregg +Kyle +Leonard +Barry +Dana +Miguel +Norman +Randall +Salvatore +Alfred +Clifford +Darryl +Derek +Ernest +Fred +Gordon +Joshua +Lance +Willie +Bradley +Greg +Roberto +Roy +Terry +Andre +Harry +Larry +Ricky +Duane +Jesse +Mike +Allan +Hector +Johnny +Nathan +Phillip +Bernard +Danny +Jeff +Manuel +Nelson +Ramon +Tyrone +Warren +Wesley +Earl +Guy +Ian +Justin +Kirk +Mario +Roland +Calvin +Colin +Corey +Jerome +Gene +Leo +Mathew +Melvin +Nathaniel +Neil +Reginald +Terrence +Darrell +Derrick +Dominic +Joe +Noel +Pedro +Terrance +Bradford +Clarence +Darrin +Gilbert +Jamie +Kerry +Leroy +Micheal +Pasquale +Ryan +Shaun +Terence +Travis +Angelo +Brent +Byron +Chad +Daryl +Drew +Francisco +Gerard +Herbert +Jorge +Ronnie +Shane +Adrian +Kelly +Leon +Lewis +Marcus +Marvin +Rafael +Ray +Ricardo +Seth +Domenic +Don +Roderick +Alberto +Alvin +Claude +Edgar +Jaime +Julio +Tom +Charlie +Chester +Darin +Eduardo +Floyd +Frederic +Hugh +Ivan +Jeremiah +Jesus +Jimmy +Joey +Kent +Orlando +Ross +Tracy +Trevor +Tyler +Alex +Dave +Edmund +Evan +Felix +Fernando +Franklin +Garrett +Jody +Malcolm +Matt +Perry +Preston +Reinaldo +Rene +Stephan +Tim +Vernon +Andy +Bill +Billy +Carmelo +Clinton +Damon +Dan +Daren +Dexter +Dino +Dion +Dominick +Dwight +Eddie +Edmond +Francesco +Fredrick +Grant +Hans +Heath +Jacob +Jared +Jarrod +Jeremy +Kenny +Laurence +Loren +Luigi +Marco +Marshall +Mitchell +Nick +Oscar +Rick +Sidney +Stacy +Stewart +Stuart +Wilfredo +Antoine +Armand +Austin +Bobby +Boris +Brad +Bret +Bruno +Carmen +Carroll +Clayton +Clifton +Cory +Denis +Enrique +Ethan +Freddie +Gabriel +Garry +Gavin +Heriberto +Isaac +Jan +Javier +Jean +Jim +Johnnie +Leslie +Lorenzo +Luke +Neal +Oliver +Owen +Robin +Ruben +Russ +Scot +Spencer +Thaddeus +Tommy +Vincenzo +Wallace +Wilfred +Willard +Wilson +Michael +David +John +Robert +James +Christopher +William +Mark +Richard +Thomas +Joseph +Scott +Jeffrey +Brian +Paul +Daniel +Kevin +Steven +Matthew +Stephen +Eric +Peter +Anthony +Timothy +Kenneth +Edward +Todd +Gregory +Andrew +Jason +Charles +Sean +Keith +Ronald +Douglas +Patrick +Jonathan +Craig +Gary +Frank +George +Donald +Marc +Raymond +Shawn +Dennis +Jose +Wayne +Glenn +Dean +Bruce +Lawrence +Vincent +Erik +Nicholas +Darren +Arthur +Philip +Russell +Louis +Christian +Walter +Adam +Alan +Bryan +Frederick +Gerald +Ralph +Carl +Chris +Roger +Victor +Martin +Aaron +Troy +Benjamin +Carlos +Joel +Brett +Glen +Luis +Angel +Rodney +Jon +Karl +Leonard +Edwin +Albert +Francis +Lee +Randy +Shane +Theodore +Alexander +Jay +Kurt +Allen +Corey +Derek +Eugene +Henry +Neil +Harold +Joshua +Juan +Tyrone +Ernest +Jeffery +Samuel +Antonio +Salvatore +Curtis +Marcus +Roy +Steve +Alfred +Lance +Maurice +Terrence +Barry +Clifford +Jeremy +Kyle +Larry +Miguel +Andre +Geoffrey +Ian +Bradley +Danny +Harry +Jerry +Phillip +Randall +Willie +Colin +Gordon +Hector +Rafael +Roberto +Daryl +Micheal +Tony +Brendan +Gregg +Howard +Reginald +Seth +Terry +Derrick +Dominic +Jamie +Justin +Noel +Ricky +Stanley +Angelo +Brent +Darrin +Duane +Jack +Jorge +Mike +Norman +Pedro +Shaun +Warren +Bernard +Damon +Dominick +Dwayne +Kirk +Marvin +Dale +Dana +Darrell +Fred +Francisco +Julio +Clinton +Darryl +Earl +Edgar +Gerard +Greg +Jesse +Nathaniel +Travis +Trevor +Clarence +Eddie +Edmund +Gene +Guy +Jerome +Leon +Melvin +Nathan +Pasquale +Stephan +Wesley +Bobby +Javier +Jim +Joe +Johnny +Leroy +Neal +Nelson +Sebastian +Allan +Brandon +Clayton +Eduardo +Giuseppe +Jaime +Jesus +Jody +Ricardo +Ryan +Scot +Shannon +Wilfredo +Alex +Bradford +Clifton +Cory +Darin +Dino +Drew +Erick +Jacques +Lionel +Lloyd +Mathew +Roderick +Roland +Stacey +Terence +Terrance +Tim +Tom +Billy +Chad +Damian +Isaac +Ivan +Jean +Jimmy +Kelly +Manuel +Randolph +Ross +Stuart +Ted +Wade +Alberto +Alphonse +Dwight +Evan +Felix +Herbert +Jeff +Jonathon +Kristopher +Leo +Lester +Lonnie +Mario +Milton +Mitchell +Orlando +Ramon +Ray +Tommy +Adrian +Brad +Calvin +Casey +Cedric +Curt +Dave +Denis +Domenic +Elliott +Everett +Garrett +Gino +Jessie +Julian +Julius +Kent +Kristian +Marco +Noah +Tracy +Alton +Alvin +Armando +Bart +Blake +Bret +Cameron +Carlo +Clint +Darrel +Don +Efrain +Fernando +Franklin +Heriberto +Ira +Jared +Kerry +Kraig +Leigh +Leslie +Lewis +Luigi +Oscar +Paulo +Reed +Ronnie +Ruben +Spencer +Stewart +Wilbert +Wilfred +Abel +Blair +Bryon +Carlton +Carmine +Chester +Collin +Conrad +Edgardo +Frankie +Garry +Grant +Hans +Hugh +Jeremiah +Jordan +Ken +Lane +Loren +Morgan +Nick +Oliver +Otis +Paolo +Perry +Pierre +Raul +Reinaldo +Rene +Rosario +Sammy +Sebastiano +Tyler +Vernon +Wallace +Michael +David +John +Robert +James +Christopher +Richard +William +Mark +Joseph +Scott +Thomas +Jeffrey +Brian +Kevin +Daniel +Steven +Jason +Paul +Matthew +Eric +Peter +Anthony +Timothy +Todd +Edward +Stephen +Andrew +Kenneth +Charles +Sean +Gregory +Jonathan +Patrick +George +Douglas +Marc +Keith +Craig +Donald +Frank +Gary +Ronald +Raymond +Jose +Shawn +Dennis +Philip +Troy +Erik +Wayne +Benjamin +Aaron +Louis +Adam +Jeremy +Lawrence +Dean +Glenn +Vincent +Arthur +Bryan +Bruce +Frederick +Walter +Alan +Christian +Russell +Alexander +Jay +Roger +Luis +Carl +Nicholas +Victor +Henry +Joshua +Shane +Gerald +Samuel +Albert +Derek +Glen +Kyle +Theodore +Carlos +Marcus +Francis +Brett +Joel +Randy +Darren +Justin +Juan +Salvatore +Edwin +Rodney +Jon +Neil +Stanley +Allen +Geoffrey +Jamie +Kurt +Martin +Ralph +Angel +Gregg +Lance +Alfred +Andre +Dale +Ernest +Antonio +Brent +Corey +Jeffery +Tyrone +Jerry +Leonard +Miguel +Howard +Ian +Phillip +Randall +Clifford +Curtis +Eugene +Larry +Seth +Chad +Derrick +Lee +Nelson +Reginald +Travis +Wesley +Barry +Brendan +Karl +Nathaniel +Brandon +Chris +Mario +Norman +Roberto +Danny +Kirk +Ricky +Terry +Dana +Darrell +Roy +Tony +Willie +Harold +Jack +Maurice +Terrence +Alex +Angelo +Darryl +Daryl +Francisco +Hector +Jerome +Steve +Brad +Damon +Gordon +Noel +Jimmy +Joe +Luke +Manuel +Nathan +Ross +Shaun +Alberto +Bernard +Bradley +Dwayne +Harry +Jesse +Jody +Lewis +Melvin +Pasquale +Ronnie +Terrance +Adrian +Colin +Darin +Fred +Gene +Jeff +Micheal +Trevor +Warren +Calvin +Darrin +Dominic +Felix +Greg +Johnny +Jorge +Kelly +Mike +Tyler +Bobby +Dan +Duane +Dwight +Earl +Eddie +Erick +Garrett +Julio +Leo +Leon +Rafael +Tom +Bret +Ernesto +Jacob +Lonnie +Marco +Rocco +Spencer +Terence +Tracy +Wilfredo +Antoine +Clayton +Cory +Drew +Eduardo +Franklin +Jaime +Marvin +Mathew +Neal +Orlando +Raul +Ray +Roland +Stephan +Andy +Carlton +Clinton +Dylan +Edgar +Gerard +Gilbert +Guy +Herbert +Jared +Javier +Leroy +Oscar +Ramon +Randolph +Ricardo +Roderick +Ryan +Wade +Allan +Charlie +Chester +Damian +Dominick +Dustin +Edmund +Evan +Gilberto +Jesus +Laurence +Lionel +Lloyd +Marshall +Shannon +Toby +Tod +Alvin +Armand +Bradford +Clarence +Darnell +Edmond +Ethan +Everett +Heriberto +Herman +Jean +Jim +Johnnie +Kent +Malcolm +Mitchell +Nicola +Owen +Sam +Scot +Stacey +Vernon +Zachary +Abraham +Armando +Bill +Bryant +Carmine +Clifton +Curt +Dino +Domenic +Efrain +Floyd +Frankie +Gino +Jamal +Marlon +Milton +Pedro +Roosevelt +Sebastian +Stefan +Ted +Teddy +Tylon +Wallace +Wilson +Alejandro +Billy +Blaine +Bob +Bryce +Byron +Cameron +Carmen +Cecil +Clement +Clint +Clyde +Courtney +Daren +Davis +Demetrios +Dexter +Dirk +Don +Edgardo +Enrico +Enzo +Gabriel +Giuseppe +Graham +Hans +Isaac +Ivan +Jeremiah +Kerry +Lamont +Lucas +Lyle +Marcel +Matt +Myron +Nick +Stuart +Wilbert +Michael +David +John +Robert +Christopher +James +Scott +William +Jason +Joseph +Jeffrey +Richard +Brian +Mark +Matthew +Thomas +Kevin +Daniel +Eric +Steven +Paul +Peter +Anthony +Edward +Timothy +Stephen +Todd +Charles +Gregory +Keith +Andrew +Kenneth +Jonathan +Sean +Patrick +Shawn +Jose +Craig +Marc +Frank +Douglas +Ronald +George +Raymond +Gary +Adam +Donald +Ryan +Dennis +Jeremy +Erik +Wayne +Philip +Troy +Aaron +Christian +Louis +Luis +Bryan +Benjamin +Glenn +Joshua +Vincent +Derek +Bruce +Carl +Chad +Lawrence +Dean +Alan +Nicholas +Carlos +Justin +Frederick +Roger +Corey +Joel +Kyle +Victor +Darren +Walter +Alexander +Arthur +Edwin +Jay +Jon +Samuel +Angel +Henry +Russell +Brett +Marcus +Albert +Gerald +Jamie +Antonio +Francis +Theodore +Neil +Randy +Allen +Hector +Tyrone +Andre +Geoffrey +Glen +Jack +Jesse +Seth +Shane +Danny +Kurt +Lance +Barry +Chris +Juan +Martin +Miguel +Ralph +Travis +Ernest +Nathan +Jerry +Leonard +Salvatore +Shaun +Stanley +Curtis +Jeffery +Jermaine +Karl +Derrick +Rodney +Harry +Howard +Dana +Harold +Larry +Lee +Phillip +Alfred +Brendan +Dale +Eugene +Gregg +Rafael +Tony +Maurice +Norman +Ricardo +Roy +Brent +Darrell +Gordon +Mario +Warren +Willie +Angelo +Clifford +Greg +Ian +Jody +Manuel +Marco +Brandon +Daryl +Randall +Damon +Dominic +Leo +Steve +Billy +Calvin +Duane +Dwayne +Reginald +Shannon +Wesley +Bobby +Bradford +Colin +Franklin +Joe +Johnny +Jorge +Kelly +Terry +Trevor +Darryl +Earl +Jacob +Julio +Kirk +Mathew +Ramon +Raul +Roberto +Ronnie +Ross +Terrance +Bret +Francisco +Garrett +Gene +Gilbert +Guy +Heath +Jerome +Leon +Luke +Mitchell +Nelson +Orlando +Paulo +Alberto +Alex +Allan +Clinton +Felix +Gabriel +Isaac +Jeff +Nathaniel +Pasquale +Roderick +Scot +Stuart +Tracy +Bernard +Cory +Damian +Darin +Dave +Dominick +Fred +Gerard +Jaime +Jeremiah +Jimmy +Micheal +Milton +Adrian +Brad +Carlton +Cary +Darrin +Eddie +Edgar +Edgardo +Edmund +Everett +Frankie +Graham +Heriberto +Ivan +Jared +Javier +Jonas +Lamont +Melvin +Noah +Pedro +Roland +Wilfredo +Alejandro +Aric +Bradley +Chester +Clarence +Clayton +Dan +Devin +Dustin +Edmond +Erich +Evan +Gilberto +Hans +Herbert +Ismael +Jan +Jean +Kent +Kristian +Lewis +Myles +Neal +Owen +Randolph +Stephan +Ted +Abraham +Alphonse +Armando +Darrel +Dion +Drew +Dwight +Efrain +Garry +Giovanni +Giuseppe +Grant +Jamal +Jefferson +Jimmie +Kendall +Kerry +Lloyd +Lonnie +Marshall +Marvin +Omar +Raphael +Rolando +Santos +Spencer +Stefan +Terence +Tim +Tomas +Alvin +Andrea +Andrzej +Andy +Antoine +Aron +Brendon +Bryon +Byron +Cameron +Carmelo +Carmen +Casey +Charlie +Clint +Colby +Denis +Dexter +Domenico +Duncan +Dylan +Eli +Emanuel +Erick +Ethan +Freddie +Horacio +Ira +Jennifer +Jim +Kendrick +Lamar +Laurence +Leroy +Leslie +Lucas +Marcos +Oscar +Ray +Rick +Ricky +Rocco +Ruben +Sammy +Terrence +Tommy +Vincenzo +Wilson +Michael +Christopher +David +John +Robert +James +Brian +Jason +Matthew +William +Scott +Joseph +Jeffrey +Richard +Mark +Daniel +Thomas +Kevin +Eric +Steven +Paul +Peter +Anthony +Todd +Timothy +Gregory +Stephen +Jonathan +Kenneth +Sean +Edward +Keith +Andrew +Charles +Craig +Donald +Shawn +Patrick +Jose +Ronald +Frank +Marc +Adam +Douglas +Raymond +George +Gary +Erik +Ryan +Justin +Aaron +Dennis +Chad +Joshua +Troy +Vincent +Brett +Christian +Bryan +Louis +Benjamin +Derek +Jeremy +Alexander +Philip +Luis +Jay +Lawrence +Nicholas +Samuel +Jamie +Roger +Wayne +Randy +Arthur +Francis +Kyle +Walter +Carl +Russell +Angel +Dean +Geoffrey +Glenn +Shane +Alan +Jon +Seth +Albert +Jesse +Joel +Victor +Frederick +Juan +Kurt +Lee +Antonio +Brandon +Carlos +Chris +Edwin +Darrell +Martin +Salvatore +Andre +Bruce +Gerald +Larry +Marcus +Henry +Nathan +Brendan +Howard +Leonard +Ralph +Corey +Darren +Theodore +Dana +Jeffery +Nathaniel +Neil +Trevor +Karl +Norman +Roy +Willie +Allen +Travis +Alfred +Derrick +Harold +Ian +Rafael +Rodney +Brent +Danny +Eugene +Hector +Miguel +Terrence +Jermaine +Jerome +Lance +Adrian +Jared +Jerry +Manuel +Mario +Ricardo +Shannon +Stanley +Curtis +Gabriel +Heath +Tony +Colin +Dwayne +Earl +Jorge +Leon +Micheal +Nelson +Roberto +Terry +Tyrone +Clifford +Eduardo +Evan +Jack +Mike +Orlando +Steve +Terence +Wesley +Bobby +Daryl +Duane +Guy +Jody +Marvin +Ricky +Terrance +Angelo +Damon +Dylan +Fred +Glen +Kirk +Lewis +Phillip +Ramon +Shaun +Alex +Calvin +Darryl +Ernest +Greg +Herbert +Jaime +Rocco +Tyler +Warren +Dale +Gilbert +Gregg +Harry +Javier +Johnny +Kristopher +Marshall +Mathew +Maurice +Reginald +Wilson +Zachary +Barry +Ethan +Garrett +Gene +Gordon +Jacob +Joe +Luke +Mitchell +Pedro +Stefan +Allan +Armando +Bernard +Bradley +Bryce +Darin +Eddie +Francisco +Ivan +Julio +Lamont +Marco +Marlon +Melvin +Milton +Oscar +Randall +Roderick +Simon +Tracy +Ben +Bret +Byron +Clarence +Curt +Damien +Darnell +Don +Edgar +Fernando +Gerard +Horace +Jimmy +Kent +Kristian +Marcos +Max +Noah +Pablo +Pasquale +Perry +Ray +Stephan +Vincenzo +Arnold +Bradford +Bryant +Chester +Cory +Damian +Demetrius +Denis +Dominic +Erick +Gerardo +Gilberto +Hans +Ismael +Jamison +Jimmie +Julius +Kelvin +Leo +Lloyd +Luigi +Marcel +Michel +Neal +Nicola +Rene +Roland +Ruben +Scot +Sebastiano +Sergio +Spencer +Ted +Thaddeus +Vernon +Alberto +Alvin +Anibal +Aron +Brad +Brendon +Bruno +Cameron +Casey +Clifton +Cornelius +Dave +Dexter +Dion +Dominick +Drew +Dwight +Efrain +Enrique +Erin +Fredrick +Harvey +Jamal +Jean +Johnnie +Ken +Kris +Leroy +Lucas +Lyle +Malcolm +Morgan +Noel +Omar +Paulo +Preston +Reid +Reinaldo +Rosario +Ross +Santos +Sebastian +Sven +Tim +Tucker +Ty +Wallace +Michael +Christopher +David +Jason +John +Robert +James +Brian +Matthew +William +Daniel +Joseph +Scott +Mark +Jeffrey +Thomas +Richard +Eric +Kevin +Peter +Steven +Paul +Timothy +Jonathan +Anthony +Andrew +Stephen +Gregory +Todd +Sean +Keith +Edward +Kenneth +Shawn +Charles +Patrick +Joshua +Craig +Adam +Ryan +Marc +Aaron +Douglas +Frank +George +Jose +Raymond +Justin +Donald +Ronald +Bryan +Jeremy +Benjamin +Gary +Erik +Dennis +Philip +Luis +Alexander +Christian +Nicholas +Chad +Shane +Derek +Lawrence +Darren +Carl +Louis +Samuel +Troy +Vincent +Angel +Jamie +Wayne +Brett +Carlos +Francis +Jesse +Roger +Seth +Alan +Bruce +Frederick +Glenn +Juan +Russell +Antonio +Brandon +Kyle +Arthur +Gerald +Joel +Leonard +Nathan +Edwin +Jermaine +Jon +Victor +Albert +Corey +Dean +Hector +Brendan +Miguel +Ian +Larry +Phillip +Duane +Henry +Brent +Jay +Lee +Marcus +Dana +Derrick +Theodore +Travis +Allen +Martin +Randy +Rodney +Andre +Manuel +Neil +Pedro +Roberto +Walter +Willie +Damon +Jeffery +Kurt +Ralph +Alex +Eugene +Geoffrey +Karl +Mario +Angelo +Ernest +Greg +Jared +Jorge +Marco +Terrence +Curtis +Daryl +Francisco +Howard +Nelson +Alfred +Danny +Darrell +Lewis +Ricardo +Terry +Tyler +Adrian +Bradford +Bradley +Chris +Clifford +Damian +Gabriel +Guy +Kirk +Nathaniel +Norman +Reginald +Ross +Roy +Shannon +Steve +Tony +Warren +Bernard +Cory +Glen +Gregg +Heath +Jack +Jacob +Jerry +Lance +Mathew +Pasquale +Rafael +Ramon +Brad +Dale +Dylan +Eddie +Felix +Harold +Johnny +Julio +Maurice +Noah +Randall +Salvatore +Stanley +Terrance +Trevor +Bryce +Dominick +Dwayne +Edmund +Efrain +Gordon +Ivan +Jeremiah +Jerome +Jody +Luke +Roland +Shaun +Tyrone +Wilfredo +Clinton +Dominic +Ethan +Isaac +Jesus +Leon +Marvin +Melvin +Owen +Ricky +Andres +Barry +Carlton +Colin +Eduardo +Fred +Harry +Jamal +Javier +Jimmy +Marlon +Micheal +Ronnie +Terence +Zachary +Abraham +Alvin +Bobby +Calvin +Carmelo +Devin +Edgar +Erick +Garrett +Gene +Gilberto +Giuseppe +Harvey +Ismael +Jaime +Jayson +Jordan +Kerry +Kristopher +Leslie +Lester +Malcolm +Marcos +Marshall +Paulo +Rocco +Roderick +Scot +Toby +Wade +Wesley +Armando +Aron +Billy +Evan +Franklin +Herbert +Israel +Jamison +Jimmie +Julian +Kelvin +Kent +Lamont +Laurence +Leo +Marcel +Neal +Pablo +Randolph +Ruben +Sergio +Stefan +Stuart +Ted +Tracy +Alejandro +Alfredo +Allan +Antoine +Arnold +Barrett +Brendon +Bryant +Carlo +Clarence +Clifton +Curt +Damien +Darius +Dimitrios +Drew +Dustin +Earl +Elvis +Fernando +Gerard +Hans +Heriberto +Ira +Jamey +Jean +Jeff +Jennifer +Johnathan +Kelly +Kendrick +Kris +Lorenzo +Noel +Omar +Raul +Reinaldo +Rene +Sheldon +Stewart +Tommy +Tracey +Michael +Christopher +Jason +David +John +Robert +James +Brian +Matthew +Daniel +Jeffrey +William +Joseph +Mark +Scott +Richard +Kevin +Thomas +Eric +Paul +Steven +Peter +Andrew +Stephen +Anthony +Jonathan +Timothy +Adam +Sean +Gregory +Joshua +Todd +Edward +Keith +Ryan +Kenneth +Shawn +Charles +Justin +Patrick +Jeremy +Benjamin +Marc +Jose +George +Aaron +Bryan +Frank +Craig +Douglas +Ronald +Erik +Raymond +Donald +Gary +Nicholas +Luis +Philip +Dennis +Chad +Samuel +Shane +Jamie +Jesse +Louis +Nathan +Christian +Vincent +Alan +Alexander +Juan +Seth +Arthur +Lawrence +Jermaine +Angel +Corey +Darren +Dean +Derek +Brett +Joel +Martin +Carl +Ian +Kyle +Troy +Carlos +Hector +Wayne +Henry +Jon +Lee +Neil +Victor +Antonio +Brendan +Theodore +Gerald +Randy +Walter +Andre +Edwin +Frederick +Karl +Kurt +Salvatore +Bruce +Dana +Miguel +Roger +Brandon +Jay +Jeffery +Pedro +Albert +Eugene +Francis +Geoffrey +Rodney +Jared +Marcus +Phillip +Ralph +Terrence +Travis +Jacob +Jerry +Leonard +Trevor +Evan +Gabriel +Chris +Colin +Glenn +Jorge +Clifford +Dale +Danny +Nelson +Roberto +Russell +Stanley +Curtis +Gordon +Greg +Damian +Derrick +Julio +Marco +Rafael +Warren +Willie +Allen +Barry +Bret +Damon +Eddie +Glen +Harry +Tyrone +Abraham +Alfred +Angelo +Billy +Damien +Daryl +Kristopher +Lucas +Neal +Norman +Randall +Dominic +Ernest +Jesus +Kirk +Larry +Mario +Mathew +Maurice +Orlando +Ramon +Roy +Tyler +Casey +Cory +Dwayne +Earl +Howard +Isaac +Johnny +Leon +Tony +Wade +Bradley +Brent +Duane +Dwight +Felix +Francisco +Gregg +Harold +Jack +Jaime +Jordan +Manuel +Myron +Nathaniel +Ricardo +Steve +Zachary +Alex +Alvin +Bernard +Clayton +Clinton +Devin +Ethan +Fred +Heath +Kris +Micah +Noel +Shannon +Alejandro +Andres +Edmund +Erick +Franklin +Grant +Jerome +Jody +Lamont +Leo +Luke +Micheal +Milton +Reginald +Stephan +Terrance +Brad +Bradford +Carlo +Carmelo +Darrell +Darryl +Denis +Devon +Dion +Edgar +Fernando +Herbert +Javier +Jeremiah +Jimmy +Josh +Kristian +Lance +Lester +Marcos +Marlon +Marvin +Omar +Oscar +Ricky +Rudolph +Stuart +Terrell +Adrian +Alberto +Ari +Austin +Bobby +Brenden +Clarence +Clifton +Dominick +Dylan +Gilberto +Jamal +Jarrod +Jayson +Jeff +Julian +Malcolm +Mitchell +Nakia +Rene +Roland +Ronnie +Ruben +Sergio +Shaun +Tommy +Allan +Antoine +Armando +Brendon +Bryant +Bryce +Byron +Carlton +Clint +Diego +Efrain +Eli +Garrett +Gerard +Hans +Heriberto +Ira +Ismael +Israel +Ivan +Jamarr +Kareem +Lewis +Lloyd +Lorenzo +Nicola +Nikolaos +Noah +Oliver +Owen +Pasquale +Paulo +Ray +Sebastiano +Stewart +Terry +Tyson +Wesley +Wilfred +Wilfredo +Wilson +Michael +Christopher +Jason +David +John +Robert +Matthew +James +Brian +Daniel +Joseph +Jeffrey +Eric +William +Kevin +Richard +Scott +Thomas +Steven +Mark +Timothy +Anthony +Paul +Jonathan +Andrew +Ryan +Stephen +Peter +Joshua +Todd +Sean +Gregory +Adam +Shawn +Edward +Jeremy +Keith +Charles +Patrick +Benjamin +Justin +Kenneth +Marc +Jose +George +Ronald +Donald +Craig +Aaron +Raymond +Bryan +Frank +Chad +Douglas +Gary +Erik +Jamie +Juan +Nathan +Philip +Alexander +Dennis +Jesse +Luis +Seth +Christian +Vincent +Brandon +Nicholas +Kyle +Samuel +Brett +Corey +Derek +Carlos +Frederick +Louis +Alan +Antonio +Geoffrey +Ian +Carl +Shane +Victor +Edwin +Jared +Joel +Roger +Angel +Jay +Russell +Walter +Brendan +Salvatore +Jacob +Marcus +Miguel +Randy +Roberto +Arthur +Darren +Jermaine +Albert +Henry +Leonard +Trevor +Rodney +Wayne +Ricardo +Gerald +Martin +Mathew +Troy +Dean +Lawrence +Nathaniel +Duane +Bruce +Chris +Dana +Evan +Francis +Hector +Jeffery +Neil +Dale +Derrick +Kurt +Lee +Randall +Terrence +Andre +Damon +Danny +Daryl +Eugene +Glenn +Jon +Stanley +Travis +Tyrone +Johnny +Willie +Ernest +Gabriel +Gregg +Jerome +Manuel +Mario +Nelson +Spencer +Theodore +Tyler +Alex +Brent +Jimmy +Jorge +Kirk +Luke +Micheal +Orlando +Pedro +Phillip +Ralph +Dustin +Glen +Harold +Karl +Norman +Rafael +Steve +Allen +Angelo +Clinton +Dwayne +Edgar +Ethan +Felix +Guy +Howard +Lamont +Larry +Zachary +Alberto +Alfred +Bradley +Cory +Curtis +Damian +Jaime +Julio +Noah +Wilfredo +Allan +Barry +Brad +Casey +Clifford +Clifton +Colin +Harry +Jack +Jerry +Leon +Neal +Reginald +Ross +Stefan +Tony +Warren +Wesley +Alexis +Bobby +Dominic +Efrain +Francisco +Greg +Ivan +Jeff +Jeremiah +Kelly +Lucas +Maurice +Noel +Ricky +Shannon +Shaun +Tommy +Bernard +Billy +Clayton +Devin +Devon +Drew +Eddie +Fred +Gavin +Gerard +Giuseppe +Gordon +Grant +Javier +Kristopher +Omar +Ramon +Rocco +Terrance +Alejandro +Austin +Bret +Bryce +Caleb +Cameron +Carlton +Darrell +Fernando +Garrett +Gene +Giovanni +Jayson +Kelvin +Lance +Lloyd +Ronnie +Roy +Ruben +Sebastian +Terrell +Terry +Toby +Tremayne +Wade +Adrian +Alfredo +Blake +Bradford +Darnell +Dwight +Dylan +Edmund +Eduardo +Erick +Ernesto +Franklin +Herbert +Israel +Jarrod +Lorenzo +Marcel +Marco +Marcos +Melvin +Micah +Nick +Nicola +Oscar +Santos +Sergio +Stephan +Andres +Antoine +Armando +Ben +Byron +Chester +Courtney +Damien +Demetrius +Denis +Dominick +Donnie +Elijah +Elliot +Emilio +Francesco +Gino +Heath +Hugh +Ismael +Jake +Jamal +Jed +Jesus +Jody +Joey +Johnnie +Jordan +Julian +Julius +Kareem +Kerry +Mike +Pasquale +Quincy +Randolph +Raul +Robbie +Roland +Terence +Thaddeus +Tobias +Tyson +Vernon +Wilson +Michael +Christopher +David +Jason +Matthew +James +Brian +John +Daniel +Robert +Joseph +William +Jeffrey +Eric +Thomas +Richard +Kevin +Scott +Mark +Timothy +Paul +Steven +Peter +Jonathan +Anthony +Ryan +Joshua +Andrew +Jeremy +Gregory +Stephen +Edward +Todd +Keith +Adam +Benjamin +Sean +Shawn +Jose +Justin +Aaron +Charles +Patrick +Kenneth +Marc +Craig +George +Nicholas +Donald +Frank +Jesse +Ronald +Bryan +Douglas +Raymond +Jamie +Nathan +Shane +Samuel +Christian +Erik +Gary +Carl +Luis +Alexander +Antonio +Chad +Dennis +Kyle +Brendan +Philip +Vincent +Brett +Carlos +Juan +Corey +Brandon +Ian +Andre +Jared +Jermaine +Louis +Roger +Joel +Neil +Seth +Derek +Troy +Angel +Bruce +Nathaniel +Gabriel +Jacob +Jeffery +Lawrence +Randy +Walter +Wayne +Roberto +Victor +Alan +Arthur +Edwin +Francis +Geoffrey +Glenn +Miguel +Russell +Travis +Frederick +Jeremiah +Jorge +Albert +Damon +Gerald +Larry +Lee +Phillip +Rafael +Ricardo +Barry +Brent +Dana +Henry +Jon +Eddie +Jay +Kurt +Terrence +Marcus +Nelson +Alex +Allen +Damian +Danny +Dean +Hector +Jaime +Dale +Derrick +Jerry +Karl +Ramon +Theodore +Tyrone +Casey +Colin +Cory +Curtis +Darren +Gregg +Jerome +Manuel +Mathew +Pedro +Ralph +Wesley +Angelo +Darrell +Jack +Johnny +Rodney +Salvatore +Tyler +Adrian +Eugene +Glen +Julio +Kristopher +Luke +Martin +Maurice +Terrance +Trevor +Billy +Brad +Chris +Clifford +Dwayne +Leonard +Lucas +Orlando +Stanley +Alfred +Bernard +Bryant +Clinton +Duane +Evan +Fernando +Leon +Micah +Micheal +Neal +Reginald +Shaun +Tony +Allan +Earl +Greg +Harold +Javier +Johnathan +Marco +Wilfredo +Zachary +Alejandro +Felix +Garrett +Gerard +Giuseppe +Harry +Isaac +Jevon +Lance +Noah +Pasquale +Spencer +Steve +Tomas +Wade +Willie +Alvin +Damien +Daryl +Dustin +Dylan +Francisco +Franklin +Jayson +Jeff +Jesus +Jimmy +Kristian +Marvin +Melvin +Norman +Paulo +Terry +Tyron +Alexis +Ariel +Austin +Ben +Bradford +Bradley +Brendon +Carmelo +Clifton +Demetrius +Dominic +Edgar +Ethan +Fred +Guy +Kelly +Marlon +Raul +Ricky +Sergio +Stuart +Abraham +Alfredo +Bobby +Bret +Calvin +Clayton +Domenic +Drew +Efrain +Erick +Erin +Ernest +Frankie +Howard +Jamal +Jennifer +Jonas +Lamar +Nicolas +Omar +Rolando +Ross +Ruben +Sam +Scot +Shannon +Alberto +Anibal +Armando +Brooke +Cesar +Cody +Cornelius +Darrin +Darryl +Denis +Dominick +Eduardo +Elvis +Geraldo +Gerardo +Gilberto +Giovanni +Heath +Israel +Jackson +Jamil +Jarrod +Jody +Joe +Joey +Kirk +Leo +Lewis +Marcos +Mario +Myron +Nick +Pablo +Quincy +Randolph +Raphael +Ray +Reynaldo +Roy +Solomon +Stefan +Terrell +Tylon +Vaughn +Vincenzo +Warren +Michael +Christopher +Jason +David +Matthew +John +Robert +Brian +James +Daniel +Joseph +Kevin +William +Eric +Jeffrey +Richard +Mark +Thomas +Scott +Timothy +Andrew +Ryan +Joshua +Paul +Peter +Anthony +Justin +Steven +Jonathan +Stephen +Jeremy +Adam +Sean +Gregory +Edward +Benjamin +Keith +Todd +Shawn +Kenneth +Patrick +Charles +Aaron +Jose +Donald +Bryan +Jesse +Marc +Douglas +Nicholas +Raymond +Frank +Alexander +Gary +Nathan +George +Ronald +Erik +Luis +Craig +Jared +Christian +Corey +Angel +Vincent +Dennis +Philip +Chad +Ian +Kyle +Wesley +Carlos +Seth +Shane +Juan +Jacob +Louis +Shaun +Samuel +Victor +Antonio +Brendan +Jamie +Derek +Brett +Geoffrey +Joel +Lawrence +Walter +Russell +Brandon +Edwin +Jeremiah +Wayne +Andre +Alan +Hector +Nathaniel +Arthur +Carl +Colin +Albert +Bruce +Gerald +Kristopher +Miguel +Ralph +Travis +Cory +Jay +Jon +Roberto +Neil +Phillip +Rafael +Randy +Zachary +Damon +Dwayne +Kurt +Theodore +Alex +Jermaine +Martin +Roger +Curtis +Gabriel +Henry +Jeffery +Ramon +Trevor +Allen +Derrick +Glenn +Larry +Luke +Roy +Troy +Chris +Ernest +Ethan +Evan +Jorge +Mario +Mathew +Pedro +Tyler +Adrian +Edgar +Francis +Frederick +Harold +Leonard +Neal +Salvatore +Alfred +Allan +Dean +Eugene +Jimmy +Johnny +Karl +Marco +Marcus +Willie +Brent +Damian +Damien +Duane +Lucas +Ricardo +Angelo +Casey +Jaime +Lee +Maurice +Rodney +Terrence +Tony +Bradford +Daryl +Devon +Fernando +Francisco +Gregg +Nelson +Orlando +Terrance +Tyrone +Alexis +Clayton +Darren +Devin +Eduardo +Glen +Israel +Jack +Javier +Manuel +Micheal +Noah +Raul +Stanley +Steve +Toby +Tyron +Bobby +Bradley +Dana +Danny +Darrell +Dylan +Felix +Francesco +Garrett +Greg +Howard +Ivan +Jerome +Jordan +Omar +Ricky +Wilfredo +Wilson +Chester +Courtney +Dominick +Dustin +Eli +Giuseppe +Harry +Jeff +Jerry +Jody +Leon +Marcos +Marlon +Mitchell +Oscar +Quincy +Ruben +Terry +Ari +Ashley +Brad +Cameron +Clifford +Dale +Dominic +Franklin +Gavin +Gordon +Guy +Herbert +Max +Norman +Owen +Rocco +Sebastian +Sergio +Vernon +Alberto +Alejandro +Aric +Arnold +Aron +Billy +Caleb +Carmine +Demetrius +Domenic +Dwight +Earl +Graham +Grant +Javon +Jayson +Julio +Kris +Lonnie +Marquis +Marvin +Noel +Oliver +Randolph +Ray +Roderick +Ross +Simon +Stefan +Tylon +Abraham +Agustin +Alton +Antwan +Austin +Ben +Calvin +Clarence +Clifton +Colby +Collin +Conor +Darryl +Dion +Drew +Eddie +Efrain +Eliezer +Enrique +Gerard +Hugh +Isaac +Jamal +Jarrod +Joe +Jonathon +Julian +Lamar +Lance +Leroy +Luigi +Melvin +Morgan +Pierre +Randall +Santos +Shannon +Michael +Jason +Christopher +David +Matthew +Brian +James +John +Daniel +Robert +Joseph +William +Jeffrey +Kevin +Eric +Timothy +Ryan +Thomas +Scott +Richard +Anthony +Mark +Andrew +Nicholas +Paul +Joshua +Steven +Peter +Jonathan +Adam +Gregory +Stephen +Jeremy +Justin +Sean +Charles +Benjamin +Shawn +Edward +Keith +Patrick +Todd +Jose +Aaron +Marc +Jesse +Shaun +Bryan +Kenneth +Frank +George +Douglas +Erik +Nathan +Alexander +Philip +Vincent +Kyle +Luis +Gary +Samuel +Seth +Craig +Ronald +Dennis +Donald +Jared +Raymond +Antonio +Carlos +Corey +Jacob +Brendan +Christian +Brandon +Ian +Juan +Carl +Chad +Victor +Lawrence +Shane +Louis +Angel +Jamie +Wayne +Arthur +Derek +Travis +Lee +Alan +Brett +Bruce +Francis +Hector +Jay +Russell +Zachary +Henry +Walter +Joel +Wesley +Colin +Larry +Pedro +Geoffrey +Nathaniel +Nelson +Randy +Edwin +Gabriel +Gerald +Jorge +Kristopher +Phillip +Frederick +Jon +Julio +Theodore +Andre +Jaime +Troy +Albert +Evan +Luke +Manuel +Marcus +Neil +Roger +Terrence +Trevor +Wilfredo +Darren +Eugene +Bradley +Damien +Dustin +Ernest +Leonard +Lucas +Rafael +Roberto +Salvatore +Tyler +Adrian +Allen +Austin +Damian +Jack +Jerry +Kurt +Maurice +Ricardo +Willie +Alfred +Angelo +Cory +Curtis +Jermaine +Lamar +Mathew +Norman +Ralph +Tyrone +Damon +Dwayne +Felix +Reginald +Alexis +Brent +Calvin +Danny +Garrett +Glenn +Harold +Martin +Miguel +Tony +Cameron +Dana +Derrick +Ethan +Francisco +Jayson +Jeffery +Jeremiah +Randall +Barry +Devin +Grant +Gregg +Johnny +Karl +Morgan +Roy +Ruben +Terrance +Terry +Alberto +Alex +Bradford +Clifford +Darrell +Darryl +Fernando +Harry +Israel +Jesus +Lamont +Lloyd +Orlando +Ramon +Ross +Stanley +Chris +Clinton +Earl +Frankie +Gordon +Ivan +Jamal +Jarrod +Joey +Julian +Marco +Mario +Noah +Noel +Omar +Ricky +Carmelo +Clarence +Efrain +Gerard +Giuseppe +Glen +Ismael +Lance +Leo +Marvin +Melvin +Micheal +Neal +Pasquale +Quincy +Warren +Ben +Blake +Brendon +Bryant +Casey +Dean +Dominick +Dwight +Dylan +Eduardo +Elvis +Emmanuel +Gilbert +Gilberto +Graham +Greg +Javier +Jimmy +Jordan +Josue +Leroy +Moises +Nicolas +Ronnie +Taylor +Tyson +Abraham +Alejandro +Allan +Antoine +Antwan +Bernard +Bobby +Byron +Carlton +Davon +Dominic +Drew +Duane +Eddie +Giovanni +Howard +Jerome +Joe +Julius +Kristofer +Kristoffer +Lewis +Lorenzo +Marshall +Nick +Oliver +Reinaldo +Rodney +Rory +Shannon +Steve +Ted +Terrell +Vincenzo +Zane +Alfredo +Andres +Armando +Brad +Bryce +Caleb +Christos +Cody +Courtney +Daryl +Demetrius +Denis +Dion +Edgardo +Freddy +Fredrick +Gavin +Graig +Harvey +Herman +Isaac +Jarod +Jean +Johnathan +Jonathon +Kai +Kendall +Laurence +Leon +Marquis +Norberto +Owen +Preston +Ray +Roland +Rui +Spencer +Tyrell +Wilson +Michael +Christopher +Jason +David +Matthew +Brian +Robert +John +Daniel +James +Joseph +William +Jeffrey +Kevin +Thomas +Joshua +Ryan +Nicholas +Timothy +Eric +Richard +Andrew +Adam +Scott +Anthony +Jonathan +Mark +Justin +Steven +Peter +Gregory +Paul +Stephen +Jeremy +Patrick +Benjamin +Sean +Charles +Jose +Kenneth +Aaron +Keith +Bryan +Shawn +Edward +Todd +Frank +Raymond +Jared +Jesse +Marc +George +Luis +Donald +Douglas +Erik +Gary +Craig +Ronald +Kyle +Chad +Nathan +Shaun +Dennis +Travis +Vincent +Alexander +Jacob +Jamie +Joel +Seth +Samuel +Brandon +Carlos +Christian +Ian +Juan +Lawrence +Antonio +Philip +Shane +Angel +Carl +Nathaniel +Brett +Frederick +Corey +Derek +Brendan +Louis +Randy +Victor +Wayne +Zachary +Alan +Andre +Miguel +Russell +Arthur +Francis +Wesley +Bruce +Darren +Evan +Alex +Colin +Edwin +Marcus +Gabriel +Jeremiah +Theodore +Trevor +Geoffrey +Phillip +Salvatore +Daryl +Kristopher +Luke +Martin +Damien +Derrick +Eugene +Hector +Jay +Mathew +Jeffery +Pedro +Glenn +Lee +Walter +Allen +Bradley +Brent +Curtis +Kurt +Leonard +Neil +Tyler +Adrian +Bobby +Henry +Jerome +Jorge +Lucas +Mario +Randall +Cory +Dean +Gerald +Jayson +Roger +Troy +Alexis +Dana +Eddie +Javier +Jerry +Larry +Manuel +Marco +Ricardo +Terrance +Albert +Darryl +Jack +Jon +Jordan +Julio +Maurice +Orlando +Rafael +Roberto +Tyrone +Allan +Angelo +Barry +Dale +Dwayne +Harry +Ismael +Jimmy +Reginald +Harold +Jaime +Lamont +Neal +Rocco +Willie +Alberto +Brad +Clifford +Devin +Devon +Edgar +Ethan +Francisco +Garrett +Jermaine +Karl +Nelson +Norman +Oscar +Ross +Stanley +Terrence +Alfred +Casey +Danny +Emilio +Fernando +Jesus +Kirk +Lance +Lewis +Max +Pasquale +Ralph +Ramon +Terry +Tony +Clinton +Courtney +Dustin +Earl +Eduardo +Efrain +Gilberto +Gregg +Herbert +Jarrod +Johnny +Julian +Noah +Noel +Rodney +Ruben +Steve +Alejandro +Alvin +Andy +Bernard +Calvin +Chris +Clayton +Damian +Dominic +Dominick +Drew +Ernest +Graham +Isaac +Ivan +Jamar +Jonathon +Marvin +Omar +Quentin +Rashad +Shannon +Wilfredo +Andres +Bradford +Damon +Dylan +Edgardo +Franklin +Gene +Gilbert +Grant +Guy +Heath +Howard +Jamal +Leslie +Lester +Marlon +Melvin +Micheal +Pablo +Ricky +Ronnie +Rory +Roy +Simon +Alfredo +Antoine +Bret +Caleb +Carlton +Carmelo +Cesar +Darnell +Darrell +Denis +Desmond +Erick +Felipe +Felix +Frankie +Gerard +Giuseppe +Glen +Gordon +Heriberto +Hunter +Israel +Jed +Jessie +Johnathan +Lamar +Leo +Leon +Leroy +Nicolas +Quinn +Reinaldo +Roland +Sergio +Taylor +Terrell +Tommy +Tucker +Tyron +Tyson +Warren +Abraham +Bryon +Cameron +Conor +Demetrius +Dion +Edmund +Elijah +Elliot +Elvis +Fabian +Floyd +Graig +Jeff +Jevon +Josiah +Kareem +Kristofer +Lorenzo +Malcolm +Marquis +Milton +Morgan +Nicola +Oliver +Paulo +Reid +Robin +Roman +Solomon +Spencer +Stephan +Terence +Toby +Tyree +Tyreese +Michael +Christopher +Jason +David +Matthew +John +Daniel +Robert +Joseph +Brian +James +Eric +Justin +Ryan +Thomas +William +Jeffrey +Joshua +Jonathan +Nicholas +Andrew +Kevin +Timothy +Mark +Anthony +Scott +Adam +Richard +Paul +Steven +Stephen +Benjamin +Peter +Sean +Gregory +Jeremy +Patrick +Charles +Shawn +Aaron +Jose +Edward +Kenneth +Bryan +Jesse +Derek +Erik +Keith +Kyle +Craig +Juan +Todd +George +Nathan +Alexander +Douglas +Luis +Raymond +Donald +Marc +Frank +Brandon +Samuel +Brendan +Angel +Gary +Jared +Travis +Chad +Shaun +Carlos +Ian +Dennis +Corey +Ronald +Andre +Christian +Philip +Evan +Seth +Alan +Brett +Russell +Nathaniel +Derrick +Shane +Jacob +Geoffrey +Carl +Victor +Bruce +Vincent +Joel +Antonio +Hector +Luke +Wayne +Colin +Edwin +Lawrence +Karl +Frederick +Phillip +Randy +Tyler +Zachary +Albert +Alex +Arthur +Henry +Jeffery +Jordan +Kurt +Marcus +Miguel +Troy +Danny +Dean +Lee +Gabriel +Jeremiah +Louis +Roger +Salvatore +Allen +Cory +Jamie +Willie +Francis +Gerald +Javier +Pedro +Ricardo +Mathew +Maurice +Rafael +Dustin +Manuel +Mario +Neil +Theodore +Brad +Bradley +Brent +Darren +Dwayne +Garrett +Glenn +Kristopher +Larry +Leonard +Ernest +Jay +Jorge +Roy +Austin +Casey +Jerry +Johnny +Jon +Ralph +Tyrone +Alexis +Curtis +Damon +Dana +Eugene +Francisco +Jermaine +Lucas +Martin +Morgan +Roberto +Ross +Walter +Alberto +Dominic +Jarrod +Jesus +Julio +Marco +Mitchell +Ruben +Terrance +Tony +Trevor +Wesley +Courtney +Darryl +Daryl +Greg +Harry +Omar +Randall +Raul +Carlton +Clinton +Ethan +Fernando +Gerard +Isaac +Ivan +Micheal +Rodney +Bernard +Blake +Damien +Devin +Drew +Gregg +Ismael +Jamar +Nelson +Noel +Ramon +Stanley +Terrell +Alfred +Armando +Chris +Clifford +Devon +Fred +Harold +Jerome +Jimmy +Jonathon +Rocco +Wilfredo +Adrian +Calvin +Conor +Edgar +Eduardo +Gene +Jack +Leroy +Steve +Terrence +Allan +Barry +Byron +Darrell +Dominick +Dylan +Eddie +Efrain +Emanuel +Erick +Francesco +Howard +Israel +Jaime +Josue +Lamar +Leon +Marshall +Neal +Oscar +Reginald +Reinaldo +Ricky +Roland +Ronnie +Spencer +Stuart +Terry +Tyrell +Billy +Bobby +Bradford +Brendon +Carmelo +Cedric +Clarence +Desmond +Earl +Edgardo +Erich +Giovanni +Glen +Joey +Johnathan +Josh +Julian +Kareem +Kirk +Leo +Leslie +Marquis +Marvin +Noah +Robin +Sam +Santos +Sebastian +Abraham +Alvin +Angelo +Ari +Collin +Dale +Damian +Donnell +Enrique +Felix +Franklin +Grant +Guillermo +Heath +Heriberto +Jamaal +Jarod +Jarrett +Jimmie +Julius +Kelly +Kris +Lance +Lewis +Liam +Lloyd +Lorenzo +Max +Nestor +Nicolas +Norman +Pierre +Rashad +Sebastiano +Tyron +Tyson +Wilfred +Michael +Christopher +Matthew +Jason +David +John +Robert +Daniel +James +Brian +Joseph +Ryan +Jonathan +Joshua +Thomas +Justin +Jeffrey +William +Eric +Kevin +Adam +Timothy +Richard +Andrew +Anthony +Nicholas +Mark +Paul +Scott +Peter +Steven +Sean +Stephen +Benjamin +Jesse +Gregory +Patrick +Jeremy +Edward +Aaron +Charles +Kenneth +Jose +Bryan +Keith +Brandon +Shawn +Alexander +Craig +Luis +Frank +Kyle +Douglas +Raymond +Erik +Nathan +Derek +Todd +Donald +Samuel +Brendan +Jared +Travis +Carlos +Ian +Brett +Gary +Marc +Angel +George +Shaun +Chad +Dennis +Joel +Ronald +Alan +Juan +Philip +Jacob +Seth +Zachary +Christian +Nathaniel +Andre +Edwin +Vincent +Corey +Lawrence +Miguel +Colin +Jordan +Louis +Antonio +Frederick +Jamie +Carl +Evan +Hector +Shane +Tyler +Victor +Arthur +Francis +Maurice +Russell +Geoffrey +Kurt +Marcus +Neil +Albert +Curtis +Garrett +Phillip +Bradley +Dustin +Randy +Wesley +Casey +Henry +Jeremiah +Lee +Mathew +Wayne +Allen +Gerald +Glenn +Luke +Pedro +Trevor +Troy +Alex +Alexis +Brad +Gabriel +Kristopher +Rafael +Ricardo +Salvatore +Walter +Danny +Jay +Martin +Roger +Theodore +Brent +Dean +Eugene +Francisco +Javier +Jeffery +Jermaine +Jesus +Jon +Bruce +Derrick +Drew +Julio +Morgan +Nelson +Ramon +Roberto +Alfred +Austin +Barry +Bobby +Fernando +Jerome +Lucas +Tony +Willie +Bradford +Clifford +Darren +Dwayne +Ethan +Harry +Jack +Jerry +Jorge +Karl +Mario +Noah +Omar +Orlando +Ralph +Terrell +Tyrone +Clifton +Cory +Dylan +Ernest +Felix +Harold +Leon +Manuel +Reginald +Ricky +Rodney +Roy +Adrian +Angelo +Jimmy +Johnny +Lance +Owen +Armando +Billy +Damon +Eddie +Elijah +Grant +Joey +Lamar +Pablo +Pasquale +Stanley +Terrance +Terrence +Dale +Devon +Dominic +Isaac +Jamaal +Jamar +Jayson +Johnathan +Mitchell +Quincy +Randall +Raul +Ross +Ruben +Sergio +Clinton +Damian +Darryl +Devin +Edgardo +Efrain +Eli +Emanuel +Graham +Ivan +Jarrod +Jessie +Joe +Julian +Marlon +Taylor +Tyron +Andy +Bernard +Blake +Branden +Clayton +Duane +Dwight +Gregg +Jaime +Jarrett +Jonathon +Leonard +Marquis +Melvin +Micheal +Nicolas +Ray +Rory +Tommy +Vincenzo +Wilfredo +Abraham +Alberto +Allan +Antoine +Ariel +Brenden +Bryon +Calvin +Chester +Dana +Darrell +Dominick +Francesco +Gavin +Giovanni +Gordon +Guy +Ismael +Jean +Jonah +Kris +Leonardo +Malcolm +Marcos +Moises +Nickolas +Noel +Norberto +Oliver +Shannon +Steve +Terry +Alfonso +Alvin +Andres +Arnaldo +Bret +Bryant +Caleb +Cameron +Carlton +Cedric +Cesar +Damien +Edgar +Eduardo +Elliot +Emmanuel +Erick +Ernesto +Floyd +Forrest +Garry +Gennaro +Howard +Jimmie +Johnpaul +Kelvin +Kenny +Kristian +Kristofer +Lamont +Leroy +Levi +Liam +Lorenzo +Marco +Mike +Norman +Oscar +Randolph +Roderick +Roland +Ronnie +Santos +Sebastian +Shamar +Tyrell +Michael +Christopher +Matthew +David +Jason +Daniel +James +Joseph +Robert +John +Ryan +Brian +William +Jonathan +Thomas +Jeffrey +Joshua +Justin +Andrew +Eric +Kevin +Adam +Anthony +Nicholas +Steven +Timothy +Richard +Mark +Paul +Scott +Stephen +Gregory +Benjamin +Sean +Peter +Patrick +Jeremy +Kyle +Charles +Jose +Kenneth +Aaron +Alexander +Jesse +Brandon +Edward +Shawn +Derek +Bryan +Craig +Jared +Todd +George +Frank +Travis +Keith +Raymond +Gary +Samuel +Carlos +Ian +Marc +Juan +Nathan +Dennis +Erik +Philip +Luis +Douglas +Ronald +Donald +Shaun +Brendan +Brett +Tyler +Jordan +Angel +Seth +Jacob +Joel +Zachary +Alan +Evan +Christian +Chad +Geoffrey +Corey +Colin +Edwin +Andre +Carl +Marcus +Russell +Louis +Miguel +Vincent +Walter +Wayne +Mathew +Alex +Dustin +Henry +Frederick +Nathaniel +Lawrence +Phillip +Trevor +Derrick +Hector +Jorge +Alexis +Antonio +Gerald +Johnny +Kristopher +Randy +Victor +Francis +Javier +Shane +Gabriel +Jeremiah +Jerome +Lee +Albert +Arthur +Austin +Bradley +Jamie +Luke +Neil +Omar +Theodore +Troy +Tyrone +Jon +Kurt +Lucas +Manuel +Mario +Darren +Dean +Glenn +Jermaine +Noah +Ricardo +Allen +Clifford +Cory +Francisco +Garrett +Jerry +Leonard +Pedro +Roger +Rory +Salvatore +Brent +Bruce +Curtis +Graham +Wesley +Adrian +Damien +Dominic +Eddie +Eugene +Harry +Jeffery +Maurice +Rafael +Ross +Blake +Clinton +Danny +Drew +Glen +Jay +Morgan +Wilfredo +Willie +Angelo +Bradford +Damian +Julian +Karl +Kelly +Lamar +Lance +Randall +Rodney +Tony +Andres +Carlton +Dana +Darrell +Darryl +Ivan +Jaime +Jesus +Josue +Julio +Larry +Nelson +Ramon +Raul +Taylor +Terrence +Terry +Calvin +Cameron +Casey +Ethan +Jarrod +Leon +Marquis +Micheal +Orlando +Owen +Reginald +Roy +Daryl +Dylan +Harold +Martin +Marvin +Ralph +Roberto +Ronnie +Spencer +Terrance +Terrell +Tyron +Alfredo +Armando +Brad +Devin +Emmanuel +Howard +Isaac +Jack +Jamaal +Jamal +Jimmy +Jonathon +Marshall +Mitchell +Ruben +Steve +Tristan +Abraham +Alberto +Alejandro +Alfred +Alvin +Ariel +Barry +Bernard +Brendon +Colby +Dale +Dante +Devon +Dominick +Eli +Elliot +Emanuel +Ernest +Greg +Guy +Jamar +Marco +Marcos +Noel +Ricky +Terence +Allan +Antoine +Billy +Clifton +Cody +Collin +Darnell +Davon +Eduardo +Efrain +Erin +Frankie +Gavin +Gerard +Gilbert +Giovanni +Israel +Johnathan +Kirk +Lorenzo +Melvin +Nicolas +Oliver +Pasquale +Sebastian +Stuart +Tucker +Tyrell +Vincenzo +Warren +Ari +Bret +Carmelo +Chaz +Cole +Conor +Earl +Edgar +Felix +Fernando +Gilberto +Guillermo +Herbert +Ismael +Jayson +Jeff +Jess +Joe +Johnpaul +Kelvin +Kenny +Kent +Kerry +Laurence +Leo +Milton +Norman +Randolph +Reed +Rocco +Rondell +Sergio +Stanley +Tommy +Wade +Michael +Christopher +Matthew +David +Daniel +John +Jason +Joseph +Brian +James +Ryan +Robert +Justin +William +Andrew +Jonathan +Jeffrey +Thomas +Eric +Nicholas +Joshua +Adam +Anthony +Timothy +Kevin +Mark +Richard +Stephen +Steven +Gregory +Sean +Patrick +Paul +Peter +Kyle +Benjamin +Scott +Aaron +Edward +Jeremy +Brandon +Charles +Kenneth +Bryan +Jose +Jesse +Alexander +Craig +George +Todd +Shawn +Keith +Luis +Jared +Brendan +Zachary +Donald +Frank +Nathan +Travis +Douglas +Ian +Derek +Philip +Tyler +Evan +Raymond +Erik +Gary +Jacob +Samuel +Colin +Brett +Carlos +Vincent +Marc +Alan +Corey +Dennis +Ronald +Victor +Jordan +Antonio +Carl +Louis +Angel +Christian +Joel +Mathew +Miguel +Luke +Shane +Chad +Dustin +Lawrence +Marcus +Nathaniel +Seth +Shaun +Geoffrey +Henry +Juan +Alexis +Curtis +Phillip +Gabriel +Randy +Theodore +Andre +Hector +Albert +Alex +Arthur +Bruce +Trevor +Kristopher +Frederick +Jermaine +Maurice +Rafael +Ralph +Troy +Wayne +Wesley +Derrick +Lucas +Edwin +Jamie +Neil +Ricardo +Roger +Russell +Walter +Adrian +Allen +Austin +Blake +Ethan +Garrett +Ramon +Ross +Jeremiah +Roberto +Tony +Dean +Devin +Glenn +Jon +Martin +Terrence +Bobby +Bradley +Calvin +Francisco +Jack +Jimmy +Jorge +Leonard +Alberto +Danny +Jay +Jerome +Johnny +Noah +Salvatore +Tyrone +Warren +Angelo +Cameron +Devon +Ernest +Ricky +Taylor +Casey +Courtney +Dana +Francis +Gordon +Graham +Jamaal +Jerry +Julian +Karl +Kurt +Larry +Marco +Mario +Oscar +Brent +Clifford +Dominic +Drew +Dwayne +Manuel +Pedro +Spencer +Terrance +Bradford +Chase +Darnell +Dylan +Felix +Gerald +Harold +Jaime +Johnathan +Lee +Leon +Omar +Willie +Brad +Byron +Colby +Conor +Dane +Elliot +Fernando +Javier +Jesus +Joey +Lamar +Marquis +Nelson +Orlando +Tristan +Wilfredo +Antoine +Ashley +Bernard +Billy +Cory +Darren +Eugene +Guy +Howard +Jamar +Jarrod +Jeffery +Melvin +Micheal +Morgan +Noel +Pablo +Reginald +Rory +Sergio +Stanley +Terence +Xavier +Bret +Bryant +Dale +Damien +Darrell +Darryl +Eddie +Eduardo +Eliezer +Erick +Ernesto +Grant +Harry +Heriberto +Isaac +Jamal +Marvin +Micah +Nicolas +Rick +Terrell +Alfredo +Barry +Bryon +Carmelo +Chaz +Daryl +Elias +Emmanuel +Gilbert +Gilberto +Ivan +Jameson +Jarrett +Jonathon +Julio +Julius +Kristofer +Lance +Liam +Mike +Osvaldo +Owen +Randall +Ray +Roland +Ruben +Sebastian +Steve +Stuart +Terry +Vernon +Alfred +Allan +Alvin +Andreas +Ariel +Brennan +Bryce +Caleb +Damon +Desmond +Domenic +Dominick +Franklin +Fred +Gennaro +Giuseppe +Hunter +Ismael +Javon +Joe +Josue +Leo +Lloyd +Lorenzo +Luigi +Marques +Marshall +Norman +Paolo +Quentin +Rocco +Roderick +Rodney +Santos +Taurean +Tylon +Tyrell +Tyron +Tyshawn +Willis +Michael +Christopher +Matthew +Daniel +David +John +Joseph +Robert +James +Jason +Ryan +Brian +William +Andrew +Justin +Joshua +Jonathan +Nicholas +Thomas +Jeffrey +Kevin +Anthony +Adam +Eric +Steven +Timothy +Stephen +Richard +Mark +Sean +Patrick +Paul +Gregory +Benjamin +Peter +Scott +Kyle +Brandon +Charles +Alexander +Jose +Aaron +Edward +Bryan +Jeremy +Jesse +Nathan +Kenneth +Keith +Samuel +Tyler +Zachary +Ian +Derek +Brendan +Craig +Frank +Travis +Luis +George +Colin +Shawn +Jacob +Marc +Gary +Jared +Evan +Erik +Todd +Donald +Douglas +Angel +Brett +Philip +Vincent +Marcus +Raymond +Juan +Corey +Jordan +Chad +Nathaniel +Seth +Miguel +Ronald +Andre +Joel +Dennis +Shane +Alex +Hector +Carlos +Alan +Frederick +Gabriel +Mathew +Shaun +Dustin +Carl +Edwin +Louis +Christian +Antonio +Derrick +Bruce +Roberto +Russell +Luke +Phillip +Trevor +Brent +Devin +Lawrence +Rafael +Randy +Curtis +Dean +Ross +Troy +Austin +Francis +Henry +Lucas +Wesley +Adrian +Devon +Drew +Geoffrey +Jay +Jerome +Martin +Pedro +Theodore +Wayne +Alexis +Garrett +Jimmy +Manuel +Victor +Cory +Jamie +Kurt +Larry +Lee +Marquis +Tony +Casey +Leonard +Mitchell +Roger +Arthur +Blake +Bradley +Emmanuel +Eugene +Javier +Jeremiah +Jorge +Kristopher +Neil +Noah +Randall +Taylor +Terrell +Tyrone +Danny +Dylan +Ernest +Ethan +Jon +Mario +Ricardo +Rodney +Roy +Walter +Albert +Allen +Darryl +Dwayne +Jeffery +Omar +Fernando +Gerald +Jermaine +Jerry +Jesus +Johnny +Karl +Maurice +Ricky +Ronnie +Terry +Alfred +Angelo +Calvin +Chase +Dale +Darren +Glenn +Grant +Isaac +Jonathon +Lance +Ralph +Rory +Spencer +Barry +Byron +Conor +Dana +Francisco +Glen +Jack +Jamar +Logan +Lorenzo +Nelson +Noel +Ramon +Stuart +Terrance +Warren +Willie +Bernard +Cody +Dominic +Elias +Erick +Felix +Jaime +Julio +Marco +Marvin +Orlando +Terrence +Allan +Alvin +Brad +Brenton +Bryant +Caleb +Clayton +Clinton +Dane +Edgar +Eduardo +Gordon +Howard +Javon +Jessie +Johnathan +Josue +Melvin +Oliver +Salvatore +Stanley +Terence +Abraham +Akeem +Alberto +Alec +Bobby +Charlie +Clifford +Colby +Cole +Damian +Eddie +Eli +Elliott +Emanuel +Felipe +Graham +Guy +Harry +Israel +Jamaal +Julian +Liam +Lionel +Marques +Micheal +Miles +Neal +Nicolas +Reginald +Sergio +Stefan +Tomas +Tommy +Tyrell +Billy +Bradford +Cameron +Chris +Collin +Darnell +Daryl +Dominick +Duncan +Earl +Efrain +Gavin +Gene +Gilbert +Gilberto +Greg +Ivan +Jake +Jameson +Jessica +Julius +Kenny +Kieran +Lamar +Leonardo +Leroy +Lewis +Max +Raheem +Ray +Reed +Ruben +Stephan +Steve +Wilfredo +Xavier +Alfredo +Andres +Antoine +Branden +Brendon +Bryce +Carmelo +Courtney +Damien +Damon +Darrell +Davon +Derick +Edmund +Ellis +Franklin +Fred +Gregg +Heriberto +Ismael +Jennifer +Johnnie +Leon +Marlon +Marquise +Marshall +Maxwell +Norman +Pablo +Parker +Pierre +Rickey +Sam +Tremaine +Tristan +Vincenzo +Michael +Christopher +Matthew +Daniel +David +Robert +John +James +Joseph +Ryan +Brian +Andrew +Joshua +Jason +William +Thomas +Jonathan +Anthony +Nicholas +Eric +Justin +Timothy +Kevin +Steven +Jeffrey +Adam +Richard +Stephen +Mark +Kyle +Patrick +Sean +Benjamin +Gregory +Paul +Peter +Alexander +Scott +Brandon +Charles +Zachary +Jeremy +Bryan +Aaron +Jose +Edward +Kenneth +Tyler +Jesse +Luis +Shawn +Keith +Derek +Raymond +Brett +Jordan +Nathan +Ian +Douglas +Samuel +Brendan +Jared +George +Vincent +Frank +Craig +Corey +Philip +Dennis +Marc +Gary +Travis +Carlos +Donald +Todd +Angel +Louis +Ronald +Alex +Shane +Jacob +Joel +Alan +Erik +Evan +Seth +Juan +Chad +Christian +Colin +Marcus +Dustin +Miguel +Victor +Andre +Antonio +Edwin +Phillip +Theodore +Trevor +Russell +Bruce +Lawrence +Mathew +Jorge +Garrett +Geoffrey +Lee +Luke +Nathaniel +Francis +Hector +Alexis +Gabriel +Ross +Shaun +Johnathan +Nelson +Carl +Casey +Manuel +Randy +Frederick +Maurice +Randall +Bradley +Clifford +Jay +Mario +Roger +Taylor +Wesley +Allen +Arthur +Derrick +Dylan +Gerald +Henry +Jamie +Mitchell +Neil +Wayne +Devin +Rafael +Terrance +Adrian +Brent +Cory +Danny +Dominic +Lucas +Pedro +Drew +Julian +Karl +Martin +Ricardo +Angelo +Curtis +Dale +Jeffery +Ralph +Stanley +Troy +Warren +Cody +Jerry +Lance +Omar +Ruben +Brendon +Darren +Francisco +Javier +Jerome +Jonathon +Kurt +Max +Roberto +Tony +Tyrell +Albert +Austin +Darryl +Dean +Noah +Andres +Jake +Jeremiah +Jesus +Jon +Leonard +Melvin +Micheal +Owen +Salvatore +Sebastian +Terrence +Walter +Wilfredo +Xavier +Clinton +Ethan +Howard +Isaac +Jameson +Jermaine +Julio +Kristopher +Marquis +Marvin +Rory +Spencer +Tristan +Alfred +Barry +Bradford +Calvin +Dane +Efrain +Fernando +Glenn +Harold +Harry +Jamar +Lamar +Morgan +Orlando +Rocco +Roy +Willie +Blake +Brad +Bryce +Cameron +Chris +Darnell +Darrell +Devon +Emanuel +Eugene +Graham +Grant +Jayson +Jimmy +Johnny +Noel +Raul +Ricky +Ronnie +Tyrone +Ari +Armand +Bobby +Caleb +Clayton +Daryl +Dimitrios +Eduardo +Franklin +Gordon +Jack +Maxwell +Oliver +Reginald +Sergio +Terrell +Wilson +Alejandro +Alfredo +Allan +Ariel +Branden +Chase +Chaz +Dominick +Emmanuel +Enrique +Erick +Felix +Greg +Ivan +Joe +Josue +Kareem +Kenny +Larry +Leon +Logan +Nolan +Norman +Parker +Ramon +Steve +Stuart +Tyshawn +Bret +Cesar +Clifton +Collin +Dante +Dave +Dwayne +Eddie +Erich +Gilberto +Glen +Isaiah +Israel +Jaime +Jamal +Jamel +Jessie +Kendall +Kirk +Marshall +Rodney +Stefan +Terry +Tommy +Alberto +Alessandro +Ali +Alvin +Antoine +Baby +Bernard +Billy +Brennan +Brenton +Colby +Conor +Earl +Edmund +Elliot +Elvis +Freddie +Gavin +Gene +Giovanni +Griffin +Heriberto +Jamaal +Javon +Kristian +Kristofer +Lionel +Moises +Nicolas +Pasquale +Reinaldo +Rene +Roland +Rudolph +Stephan +Trevon +Tyron +Michael +Christopher +Matthew +Daniel +David +John +Joseph +Andrew +Robert +Ryan +James +Brian +William +Jonathan +Kevin +Joshua +Anthony +Jason +Nicholas +Thomas +Kyle +Eric +Justin +Timothy +Jeffrey +Steven +Stephen +Richard +Adam +Sean +Alexander +Gregory +Patrick +Mark +Benjamin +Paul +Scott +Peter +Jeremy +Brandon +Bryan +Tyler +Zachary +Charles +Jose +Edward +Aaron +Jesse +Shawn +Samuel +Ian +Kenneth +Jacob +Luis +Keith +Brendan +Jordan +Derek +Nathan +Raymond +Craig +George +Donald +Frank +Douglas +Evan +Marc +Ronald +Travis +Brett +Corey +Shane +Christian +Angel +Carlos +Colin +Jared +Philip +Vincent +Alex +Dustin +Joel +Todd +Victor +Dennis +Erik +Gary +Louis +Seth +Andre +Nathaniel +Alan +Chad +Phillip +Luke +Juan +Mathew +Antonio +Edwin +Cory +Derrick +Marcus +Shaun +Trevor +Ross +Dylan +Martin +Russell +Alexis +Bradley +Bruce +Francis +Theodore +Walter +Wesley +Casey +Geoffrey +Henry +Wayne +Austin +Frederick +Garrett +Allen +Devin +Curtis +Hector +Brent +Devon +Jamie +Jay +Taylor +Gabriel +Gerald +Troy +Dean +Julian +Kristopher +Kurt +Lee +Randy +Ricardo +Spencer +Tyrone +Albert +Jorge +Lawrence +Miguel +Neil +Carl +Jeffery +Jeremiah +Mitchell +Nicolas +Orlando +Arthur +Danny +Darren +Jerome +Jonathon +Julio +Larry +Maxwell +Randall +Roberto +Adrian +Caleb +Nelson +Tony +Brad +Branden +Calvin +Connor +Dominic +Drew +Francisco +Marco +Maurice +Omar +Ralph +Roger +Cody +Dane +Felix +Harry +Jake +Jerry +Johnathan +Manuel +Max +Neal +Noah +Terrell +Blake +Eugene +Glenn +Jack +Jermaine +Karl +Mario +Rafael +Alvin +Collin +Dana +Erick +Ernest +Harrison +Johnny +Miles +Ricky +Salvatore +Stefan +Wilfredo +Alejandro +Andres +Darryl +Dominick +Duane +Emmanuel +Fernando +Jamal +Javier +Jesus +Jimmy +Josue +Melvin +Micheal +Noel +Terrance +Warren +Xavier +Antoine +Bradford +Clifford +Darnell +Efrain +Elijah +Grant +Ismael +Israel +Jaime +Jamar +Lamar +Lucas +Ramon +Stanley +Tyson +Willie +Allan +Bryant +Bryce +Cameron +Cole +Daryl +Dwayne +Ethan +Glen +Harold +Howard +Ivan +Jon +Marshall +Oscar +Owen +Rashad +Ruben +Alberto +Alfred +Brendon +Byron +Carlton +Cesar +Chase +Chris +Clayton +Conor +Dale +Darrell +Emanuel +Franklin +Gregg +Guy +Hunter +Isaac +Jameson +Leon +Lloyd +Marvin +Morgan +Norman +Pedro +Raul +Reinaldo +Rocco +Rory +Sergio +Simon +Toby +Tristan +Alfredo +Babyboy +Bret +Dante +Earl +Eli +Elliott +Gerardo +Graham +Griffin +Jessie +Joey +Jovan +Kenny +Lance +Logan +Oliver +Sebastian +Steve +Terrence +Terry +Tyrell +Tyshawn +Vernon +Akeem +Ariel +Armand +Bennett +Bernard +Brenton +Brooks +Carmelo +Chester +Clay +Courtney +Damian +Dan +Demetrius +Dillon +Duncan +Dwight +Edgar +Edmond +Emilio +Enrique +Fred +Isaiah +Jamel +Johnathon +Myles +Nickolas +Nolan +Preston +Reginald +Reid +Rene +Robin +Rodney +Shannon +Tate +Tomas +Zachariah +Michael +Christopher +Matthew +Daniel +David +Andrew +John +Ryan +Joseph +Robert +James +Nicholas +Joshua +Kevin +Anthony +William +Jonathan +Brian +Jason +Kyle +Thomas +Justin +Eric +Timothy +Steven +Jeffrey +Stephen +Adam +Sean +Alexander +Benjamin +Richard +Gregory +Scott +Patrick +Mark +Paul +Peter +Brandon +Zachary +Bryan +Jeremy +Aaron +Tyler +Charles +Samuel +Edward +Jose +Kenneth +Jesse +Jacob +Luis +Philip +Alex +Shawn +Douglas +Brendan +Keith +Nathan +Derek +Jordan +Shane +Travis +Vincent +Craig +Ian +Jared +Joel +Raymond +Brett +Corey +Frank +George +Carlos +Angel +Colin +Erik +Gary +Alan +Evan +Juan +Ronald +Seth +Antonio +Christian +Nathaniel +Miguel +Donald +Geoffrey +Marcus +Marc +Andre +Phillip +Victor +Chad +Dylan +Louis +Trevor +Dustin +Dennis +Luke +Taylor +Austin +Carl +Cory +Edwin +Todd +Mathew +Albert +Devin +Lawrence +Allen +Cameron +Casey +Frederick +Martin +Drew +Garrett +Hector +Jorge +Russell +Shaun +Bruce +Henry +Mitchell +Randy +Jay +Tony +Curtis +Francis +Gabriel +Gerald +Pedro +Wesley +Alexis +Kurt +Ross +Arthur +Brent +Cody +Johnathan +Lee +Mario +Neil +Rafael +Theodore +Jake +Leonard +Walter +Bradley +Connor +Felix +Jamie +Jon +Jonathon +Kristopher +Max +Maxwell +Noah +Orlando +Roberto +Troy +Julian +Melvin +Ricardo +Roger +Wayne +Bryant +Dean +Derrick +Devon +Marco +Marquis +Micheal +Nicolas +Salvatore +Stanley +Chase +Dale +Ethan +Glenn +Jermaine +Angelo +Darryl +Isaac +Jeffery +Spencer +Allan +Bradford +Dana +Ernest +Graham +Jaime +Jerome +Jerry +Jesus +Julio +Rocco +Adrian +Blake +Collin +Dominic +Harold +Logan +Nelson +Oscar +Preston +Alfred +Conor +Dwayne +Emmanuel +Giovanni +Karl +Lance +Ralph +Ricky +Tyrell +Tyrone +Alberto +Babyboy +Bryce +Byron +Clifford +Darrell +Johnny +Larry +Leon +Malcolm +Manuel +Marvin +Maurice +Ramon +Randall +Sergio +Terrance +Tristan +Wilfredo +Brendon +Caleb +Calvin +Dane +Darren +Daryl +Dwight +Francisco +Franklin +Gordon +Harry +Ivan +Jack +Jeremiah +Lucas +Miles +Omar +Owen +Raul +Reginald +Terrell +Xavier +Abraham +Bernard +Chadwick +Chaz +Courtney +Danny +Dillon +Dominick +Eddie +Eugene +Fernando +Gavin +Gilbert +Griffin +Hunter +Ismael +Jamal +Jamar +Javier +Kelvin +Kendall +Liam +Morgan +Noel +Oliver +Rodney +Ruben +Sebastian +Stephan +Terrence +Alec +Alvin +Antoine +Armando +Baby +Barry +Bobby +Branden +Brennan +Clayton +Clinton +Cole +Davon +Eduardo +Erick +Frankie +Glen +Grant +Guy +Jamaal +Jaron +Jean +Jessie +Jovan +Kristofer +Leroy +Lorenzo +Neal +Parker +Rory +Sonny +Stefan +Steve +Terence +Zachariah +Akeem +Antwan +Avery +Ben +Brenden +Brooks +Clifton +Conrad +Damien +Darius +Dion +Dominique +Efrain +Elliot +Francesco +Gerard +Gerardo +Herbert +Heriberto +Howard +Javon +Jimmy +Johnathon +Josue +Kenny +Kurtis +Lamar +Lamont +Marcos +Mason +Myles +Pasquale +Randolph +Rashad +Roland +Roy +Shayne +Simon +Stuart +Terry +Tyron +Wade +Warren +Wilson +Alejandro +Alfredo +Brenton +Carmelo +Colby +Dallas +Damian +Dante +Darnell +Derick +Dexter +Diego +Edgardo +Elias +Everett +Garret +Gino +Harrison +Isaiah +Israel +Jessica +Joey +Leo +Levi +Marlon +Marques +Micahel +Pablo +Ray +Sarah +Shamar +Sylvester +Tracy +Tyshawn +Willie +Michael +Christopher +Matthew +Daniel +David +John +Joseph +Andrew +James +Ryan +Robert +Nicholas +William +Joshua +Brian +Kevin +Justin +Jonathan +Anthony +Thomas +Timothy +Kyle +Eric +Steven +Jason +Alexander +Jeffrey +Stephen +Benjamin +Sean +Adam +Richard +Gregory +Patrick +Mark +Peter +Paul +Scott +Tyler +Zachary +Brandon +Charles +Jeremy +Jose +Samuel +Bryan +Aaron +Kenneth +Jacob +Luis +Brendan +Edward +Nathan +Jesse +Corey +Derek +Alex +Jordan +George +Raymond +Keith +Evan +Shawn +Ian +Vincent +Frank +Craig +Erik +Colin +Travis +Angel +Brett +Douglas +Juan +Carlos +Philip +Jared +Marc +Christian +Joel +Ronald +Victor +Antonio +Gary +Trevor +Shane +Spencer +Taylor +Austin +Cory +Cameron +Edwin +Nathaniel +Carl +Devon +Donald +Dylan +Alan +Phillip +Dennis +Dustin +Geoffrey +Mitchell +Andre +Devin +Marcus +Mathew +Miguel +Seth +Todd +Allen +Chad +Troy +Casey +Cody +Jorge +Russell +Arthur +Garrett +Hector +Louis +Maxwell +Wayne +Bradley +Jamie +Luke +Shaun +Adrian +Henry +Lucas +Randy +Ross +Gabriel +Martin +Roberto +Theodore +Curtis +Mario +Max +Wesley +Darren +Dominic +Emmanuel +Jake +Johnny +Maurice +Pedro +Albert +Conor +Darryl +Francisco +Lawrence +Logan +Dean +Javier +Johnathan +Julian +Manuel +Tyrone +Calvin +Connor +Jay +Jesus +Jon +Julio +Xavier +Brent +Bryant +Ethan +Lee +Nelson +Salvatore +Walter +Willie +Derrick +Frederick +Owen +Ricardo +Rodney +Dana +Felix +Jack +Alexis +Dane +Drew +Dwayne +Eugene +Francis +Jeffery +Jeremiah +Jerome +Micheal +Rafael +Wilfredo +Alberto +Bruce +Danny +Gerald +Gordon +Isaac +Karl +Larry +Brendon +Clifford +Dillon +Emanuel +Ernest +Hunter +Ramon +Blake +Brad +Caleb +Colby +Isaiah +Ivan +Jamal +Jimmy +Kelvin +Kristopher +Morgan +Ricky +Terrance +Tony +Allan +Brenden +Chase +Damian +Elliot +Erick +Gavin +Grant +Jonathon +Kurt +Leon +Marco +Marquis +Melvin +Micah +Nicolas +Noah +Noel +Omar +Orlando +Reginald +Sam +Alfred +Andres +Antoine +Clayton +Courtney +Edgar +Elijah +Howard +Jaime +Jamar +Kristofer +Leonard +Liam +Neil +Preston +Quentin +Randall +Stefan +Steve +Terence +Angelo +Avery +Babyboy +Bryce +Byron +Collin +Elias +Graham +Harrison +Josue +Kurtis +Malcolm +Miles +Norman +Ralph +Rene +Roger +Roy +Ruben +Zachariah +Armando +Barry +Branden +Cesar +Charlie +Chaz +Dale +Darrell +Daryl +Dominique +Efrain +Eli +Elliott +Harry +Jameson +Jerry +Kareem +Lamar +Lance +Leroy +Lewis +Lorenzo +Mackenzie +Myles +Neal +Nickolas +Perry +Sebastian +Stanley +Stuart +Terrell +Terry +Tristan +Tyrell +Vincenzo +Wade +Warren +Antony +Bernard +Brady +Brooks +Chris +Clarence +Earl +Franklin +Gerard +Giovanni +Griffin +Harold +Jamel +Jermaine +Joey +Leonardo +Levi +Marshall +Oliver +Oscar +Pablo +Randolph +Reid +Stephan +Terrence +Tucker +Tyron +Wilson +Zachery +Adalberto +Alfredo +Ali +Alvin +Andy +Ari +Baby +Bradford +Brenton +Carter +Clark +Clinton +Dante +Darius +Derick +Domenic +Donovan +Eddie +Eduardo +Eliezer +Elvis +Erich +Ernesto +Everett +Fernando +Gerardo +Gilbert +Glenn +Gregg +Heriberto +Ismael +Jaron +Jedidiah +Jeremie +Jessie +Joe +Jovan +Kellen +Kendall +Kirk +Korey +Luigi +Lyle +Marcos +Marvin +Mike +Milton +Quintin +Raul +Reinaldo +Rondell +Ronnie +Solomon +Michael +Christopher +Matthew +Daniel +David +Andrew +John +Joseph +Robert +Ryan +Joshua +Nicholas +James +Kevin +Anthony +Brian +Thomas +William +Kyle +Jonathan +Justin +Alexander +Eric +Benjamin +Timothy +Zachary +Steven +Patrick +Richard +Adam +Mark +Stephen +Jeffrey +Sean +Peter +Jason +Gregory +Paul +Brandon +Tyler +Scott +Charles +Samuel +Jose +Aaron +Jacob +Jordan +Bryan +Luis +Jeremy +Travis +Alex +Corey +Brendan +Nathan +Jesse +Edward +Vincent +Derek +Ian +Kenneth +Jared +Evan +Colin +Keith +Shawn +Christian +Angel +Raymond +Douglas +Philip +Erik +Frank +Carlos +Brett +Shane +Craig +George +Andre +Joel +Juan +Taylor +Marc +Nathaniel +Austin +Ronald +Dennis +Victor +Alan +Seth +Antonio +Ethan +Dustin +Devin +Dylan +Edwin +Phillip +Cory +Donald +Garrett +Spencer +Wesley +Max +Louis +Luke +Todd +Gary +Henry +Jake +Marcus +Cameron +Trevor +Hector +Miguel +Carl +Geoffrey +Arthur +Chad +Gabriel +Bradley +Casey +Cody +Connor +Conor +Devon +Mathew +Maxwell +Johnathan +Julio +Lucas +Ross +Russell +Dean +Drew +Mitchell +Albert +Allen +Francis +Jonathon +Kristopher +Malcolm +Martin +Troy +Alexis +Bryant +Calvin +Emmanuel +Jaime +Wayne +Brent +Caleb +Collin +Derrick +Jamie +Micheal +Nicolas +Noah +Noel +Pedro +Rafael +Randy +Roberto +Shaun +Bruce +Lawrence +Mario +Curtis +Glenn +Julian +Larry +Marco +Omar +Ricardo +Theodore +Walter +Warren +Angelo +Brendon +Gerald +Harry +Jay +Jorge +Adrian +Frederick +Grant +Jerry +Karl +Logan +Maurice +Randall +Tyrone +Danny +Edgar +Ismael +Jermaine +Jesus +Josue +Lee +Manuel +Marquis +Nelson +Terrell +Willie +Blake +Bobby +Bryce +Darryl +Dominic +Eduardo +Eugene +Harrison +Isaiah +Jack +Jerome +Kurt +Lamar +Ralph +Ramon +Alberto +Colton +Dwayne +Eddie +Francisco +Graham +Hunter +Isaac +Jamar +Jeremiah +Liam +Neil +Reginald +Roger +Terrence +Xavier +Akeem +Brenden +Clayton +Darren +Franklin +Giovanni +Jeffery +Jimmy +Jon +Neal +Owen +Rodney +Salvatore +Stefan +Terrance +Tyrell +Andres +Byron +Dale +Edgardo +Ernest +Gordon +Milton +Orlando +Ricky +Rocco +Sam +Sergio +Steve +Wilfredo +Alejandro +Allan +Branden +Chase +Chris +Duane +Efrain +Felix +Fernando +Gavin +Jackson +Jamal +Javier +Jayson +Joey +Johnny +Melvin +Ruben +Tony +Alec +Andy +Antwan +Billy +Brad +Dana +Dillon +Donovan +Elijah +Emanuel +Erick +Harold +Isiah +Kendall +Kirk +Leonard +Morgan +Norman +Oliver +Quentin +Raul +Rory +Tristan +Antoine +Barry +Brenton +Diego +Elliott +Howard +Israel +Ivan +Jarrod +Jean +Johnathon +Kelvin +Lance +Leon +Marquise +Maximilian +Pablo +Stanley +Alexandre +Alvin +Baby +Babyboy +Ben +Brandan +Brennan +Carter +Clifford +Courtney +Damian +Dane +Darien +Darnell +Darrell +Derick +Desmond +Domenic +Dominick +Duncan +Edmund +Elliot +Frankie +Guy +Jordon +Kwame +Marvin +Mason +Miles +Nickolas +Nigel +Nikolas +Parker +Pasquale +Rashad +Roman +Roy +Rudolph +Sebastian +Shayne +Simon +Spenser +Terence +Tucker +Tyshawn +Aidan +Alfredo +Ashton +Bradford +Brain +Cedric +Cesar +Chadwick +Charlie +Chaz +Clyde +Damien +Dante +Darius +Daryl +Davon +Dexter +Dion +Dorian +Eamon +Eli +Elias +Emilio +Enrique +Fabian +Francesco +Gilbert +Giuseppe +Hans +Javon +Jeff +Joe +Josiah +Kareem +Kelly +Kenny +Kristofer +Landon +Levi +Lorenzo +Marcos +Markus +Nick +Pierre +Reinaldo +Rene +Roland +Sammy +Seamus +Skyler +Sterling +Stuart +Terry +Vaughn +Vernon +Vincenzo +Wade +Wallace +Wilson +Zachery +Michael +Christopher +Matthew +Daniel +Ryan +Nicholas +Joseph +David +Andrew +John +Joshua +James +Robert +William +Kyle +Thomas +Anthony +Kevin +Jonathan +Justin +Brian +Alexander +Eric +Steven +Timothy +Tyler +Sean +Zachary +Jeffrey +Benjamin +Patrick +Stephen +Richard +Adam +Gregory +Mark +Peter +Paul +Jason +Jordan +Samuel +Charles +Scott +Brandon +Jose +Jacob +Bryan +Aaron +Edward +Luis +Ian +Evan +Jesse +Kenneth +Jeremy +Corey +Alex +Travis +Brendan +Vincent +Colin +Nathan +Shawn +Raymond +Derek +Christian +Cody +Douglas +Shane +Ethan +George +Angel +Carlos +Dylan +Jared +Frank +Marcus +Spencer +Taylor +Keith +Philip +Marc +Devin +Juan +Louis +Joel +Connor +Craig +Erik +Trevor +Brett +Casey +Donald +Miguel +Austin +Carl +Gary +Nathaniel +Victor +Cameron +Edwin +Julian +Andre +Dennis +Gabriel +Antonio +Russell +Todd +Jake +Mathew +Max +Maxwell +Alan +Garrett +Lucas +Luke +Arthur +Chad +Seth +Cory +Mitchell +Phillip +Ronald +Wesley +Dustin +Adrian +Jack +Johnathan +Ricardo +Curtis +Dominic +Geoffrey +Jorge +Rafael +Troy +Giovanni +Hector +Henry +Nelson +Ross +Francisco +Theodore +Xavier +Albert +Derrick +Francis +Lawrence +Alexis +Allen +Bradley +Emmanuel +Wayne +Drew +Kristopher +Martin +Noah +Roger +Chase +Conor +Jamal +Javier +Jesus +Mario +Roberto +Walter +Bruce +Dean +Devon +Kurt +Omar +Dillon +Frederick +Jamie +Jermaine +Jerome +Brent +Gerald +Harrison +Jonathon +Julio +Orlando +Tyrone +Bryce +Calvin +Eddie +Graham +Jerry +Lee +Manuel +Maurice +Micheal +Alberto +Collin +Dale +Elijah +Emanuel +Jay +Jeremiah +Karl +Leonard +Logan +Rodney +Terrance +Alec +Angelo +Blake +Colby +Harry +Jaime +Johnny +Jon +Josue +Miles +Ricky +Sebastian +Terrence +Felix +Glenn +Gordon +Hunter +Israel +Jimmy +Neil +Pedro +Preston +Randall +Salvatore +Stefan +Bernard +Byron +Caleb +Dana +Darren +Dominique +Larry +Liam +Marquis +Nickolas +Nicolas +Norman +Ralph +Randy +Reginald +Shaun +Tristan +Bobby +Brad +Bryant +Chaz +Cole +Damon +Danny +Davon +Dominick +Dwight +Isaac +Isaiah +Ivan +Jameson +Malcolm +Marvin +Morgan +Rocco +Sergio +Terry +Tucker +Tyrell +Andres +Dwayne +Edgar +Grant +Ismael +Jeffery +Lamar +Lorenzo +Marco +Noel +Ruben +Terrell +Tory +Tyshawn +Akeem +Alejandro +Babyboy +Branden +Brendon +Carmen +Clayton +Damien +Dante +Daquan +Darrell +Darryl +Daryl +Elliot +Enrique +Ernest +Eugene +Gavin +Jamar +Jaquan +Korey +Lance +Maximilian +Nolan +Oscar +Owen +Perry +Ramon +Rashad +Sam +Shayne +Stanley +Steve +Terence +Tevin +Zachariah +Allan +Andy +Brenden +Carlton +Cedric +Clifford +Colton +Dane +Denzel +Desmond +Donovan +Efrain +Erick +Gilbert +Griffin +Heriberto +Jackson +Jordon +Kelly +Kenny +Leroy +Mason +Melvin +Mike +Niko +Pablo +Reynaldo +Ronnie +Stephan +Tony +Wilfredo +Wilson +Zachery +Alfred +Ali +Alvin +Anibal +Antoine +Baby +Billy +Bradford +Bret +Carmine +Cesar +Dakota +Damian +Deshawn +Dion +Eduardo +Elias +Elliott +Emilio +Frankie +Jayson +Jean +Jessie +Jovan +Keenan +Kendall +Leonardo +Marcos +Micahel +Reed +Shamar +Simon +Spenser +Thaddeus +Tyron +Willie +Winston +Wyatt +Abraham +Alfredo +Antwan +Armando +Avery +Barrett +Barry +Ben +Carlo +Clinton +Dashawn +Donnell +Duane +Earl +Edgardo +Everett +Gerard +Gino +Glen +Jamison +Javon +Kasey +Kelvin +Kent +Kirk +Kristofer +Kurtis +Leland +Mackenzie +Malik +Marcello +Marshall +Micah +Moises +Nikolas +Oliver +Parker +Ray +Rayshawn +Roland +Rondell +Rory +Sebastiano +Tanner +Trent +Vincenzo +Michael +Christopher +Matthew +Nicholas +Daniel +John +Ryan +Joseph +Andrew +David +James +Joshua +Robert +William +Anthony +Kyle +Kevin +Jonathan +Alexander +Thomas +Brian +Justin +Eric +Zachary +Tyler +Patrick +Sean +Steven +Benjamin +Brandon +Jeffrey +Timothy +Stephen +Adam +Richard +Jacob +Samuel +Jason +Mark +Paul +Gregory +Jordan +Peter +Charles +Aaron +Dylan +Scott +Christian +Jeremy +Luis +Jose +Bryan +Edward +Ian +Brendan +Nathan +Kenneth +Cody +Jesse +Connor +Evan +Alex +George +Corey +Raymond +Taylor +Ethan +Shane +Derek +Austin +Erik +Keith +Shawn +Travis +Vincent +Carlos +Trevor +Douglas +Colin +Devin +Jared +Brett +Frank +Spencer +Victor +Gabriel +Jake +Philip +Casey +Craig +Juan +Miguel +Marc +Ronald +Seth +Marcus +Angel +Edwin +Nathaniel +Cameron +Donald +Garrett +Gary +Luke +Joel +Cory +Martin +Mitchell +Hector +Mathew +Max +Antonio +Dillon +Drew +Henry +Maxwell +Phillip +Frederick +Alan +Carl +Dennis +Devon +Louis +Troy +Johnathan +Julian +Andre +Arthur +Bradley +Dustin +Curtis +Jorge +Lucas +Giovanni +Jeremiah +Ross +Todd +Chad +Geoffrey +Orlando +Shaun +Xavier +Blake +Collin +Derrick +Francis +Caleb +Conor +Dominique +Gerald +Jay +Lawrence +Pedro +Rafael +Adrian +Brent +Dominic +Erick +Jack +Kurt +Roberto +Salvatore +Elijah +Julio +Manuel +Mason +Nicolas +Stanley +Theodore +Wesley +Alejandro +Allen +Bruce +Chase +Jermaine +Jesus +Kristopher +Maurice +Ramon +Russell +Albert +Alexis +Angelo +Francisco +Harrison +Javier +Karl +Noah +Walter +Alec +Graham +Harry +Isaac +Isaiah +Jamie +Jonathon +Larry +Nelson +Ricardo +Sebastian +Terrell +Wayne +Brendon +Calvin +Damian +Dane +Darren +Dean +Eugene +Fernando +Glenn +Jackson +Johnny +Leonard +Marquis +Micheal +Morgan +Randy +Bryant +Colby +Cole +Jamal +Jordon +Josue +Mario +Oliver +Ralph +Randall +Raul +Stephan +Dalton +Danny +Dashawn +Davon +Eduardo +Gene +Grant +Ivan +Lance +Leon +Logan +Neil +Stefan +Terrence +Alberto +Brenden +Dakota +Dante +Darrell +Dominick +Donovan +Emmanuel +Harold +Hunter +Lee +Malcolm +Melvin +Omar +Owen +Ricky +Roger +Terrance +Tevin +Tony +Ariel +Dale +Darius +Eddie +Franklin +Griffin +Jaime +Jimmy +Kelvin +Malik +Marcos +Marshall +Miles +Norman +Oscar +Terry +Tyrell +Branden +Daryl +Dwight +Elliot +Gavin +Geraldo +Howard +Jamar +Jaquan +Jean +Jeffery +Jon +Lorenzo +Marco +Marlon +Milton +Perry +Preston +Rodney +Sergio +Steve +Terence +Tucker +Tyshawn +Wade +Wilfredo +Willie +Zachery +Akeem +Alvin +Amir +Antoine +Beau +Bobby +Byron +Carlton +Chaz +Chris +Colton +Dana +Deshawn +Edgar +Edgardo +Emanuel +Ernest +Felix +Forrest +Gerard +Gilbert +Gordon +Kendall +Kristian +Kwame +Rashad +Reginald +Sam +Shaquille +Shayne +Simon +Stuart +Tyquan +Tyrone +Andres +Armando +Ben +Billy +Brad +Bradford +Carter +Clayton +Conner +Daquan +Demetrius +Denzel +Dwayne +Earl +Efrain +Giuseppe +Guillermo +Herbert +Ismael +Jerry +Jovan +Keegan +Kelly +Kendrick +Kurtis +Lamar +Marvin +Maximillian +Moises +Myles +Nigel +Noel +Nolan +Reynaldo +Rory +Roy +Ruben +Tanner +Terrel +Travon +Trevon +Tristan +Abraham +Alfred +Allan +Andy +Ari +Avery +Bennett +Brandyn +Bryce +Cesar +Courtney +Cristian +Damien +Darnell +Desmond +Domenic +Duncan +Eliot +Elliott +Enrique +Fabian +Francesco +Fredrick +Gilberto +Harvey +Irving +Jameson +Jarrett +Jerome +Jessie +Julius +Kendell +Kerry +Korey +Leo +Lester +Lewis +Mackenzie +Marcel +Nathanael +Nico +Pablo +Parker +Pasquale +Quinn +Rocco +Rohan +Syed +Tommy +Tylon +Tyron +Warren +Weston +Wilson +Zachariah +Michael +Matthew +Christopher +Nicholas +Daniel +Joseph +Ryan +Andrew +David +John +Robert +James +Kevin +Alexander +Joshua +Tyler +Kyle +Anthony +Zachary +William +Brian +Jonathan +Brandon +Thomas +Eric +Justin +Sean +Benjamin +Timothy +Patrick +Steven +Jeffrey +Stephen +Jacob +Adam +Dylan +Samuel +Gregory +Richard +Jordan +Jason +Mark +Charles +Paul +Christian +Peter +Connor +Aaron +Evan +Scott +Bryan +Cody +Nathan +Jose +Taylor +Luis +Alex +Jesse +Kenneth +Vincent +Jeremy +Austin +Ian +Edward +Erik +Shawn +Corey +Angel +Trevor +Brendan +Cameron +Nathaniel +Carlos +Travis +Shane +Colin +Luke +Ethan +George +Juan +Raymond +Derek +Spencer +Mitchell +Brett +Jake +Hector +Jared +Conor +Maxwell +Miguel +Philip +Andre +Douglas +Gabriel +Marcus +Jack +Victor +Dennis +Dillon +Ronald +Edwin +Devin +Keith +Donald +Frank +Louis +Lucas +Antonio +Troy +Casey +Max +Alan +Chad +Garrett +Gary +Oliver +Seth +Adrian +Marc +Devon +Mathew +Sebastian +Cory +Craig +Theodore +Albert +Alec +Joel +Julian +Xavier +Henry +Johnathan +Todd +Wesley +Nicolas +Geoffrey +Giovanni +Dominic +Drew +Dustin +Isaac +Jonathon +Rafael +Alexis +Arthur +Carl +Francis +Lawrence +Martin +Morgan +Phillip +Ricardo +Collin +Frederick +Ivan +Parker +Ross +Russell +Bradley +Caleb +Darren +Jaime +Julio +Karl +Logan +Randy +Blake +Branden +Jerome +Manuel +Pedro +Salvatore +Tyrell +Allen +Clayton +Colby +Davon +Grant +Isaiah +Jamie +Jeremiah +Jorge +Ricky +Roberto +Brenden +Brendon +Cole +Curtis +Derrick +Eduardo +Gerald +Harrison +Hunter +Kristopher +Leonard +Miles +Noah +Tanner +Tevin +Andres +Byron +Dakota +Elijah +Gavin +Jermaine +Jerry +Kurt +Malcolm +Micheal +Nelson +Roger +Alejandro +Bryce +Dean +Dominick +Graham +Harry +Jesus +Lance +Mario +Marvin +Mason +Maurice +Myles +Omar +Quinn +Sam +Tucker +Brent +Bruce +Calvin +Dante +Devonte +Efrain +Emmanuel +Felix +Francisco +Jeffery +Johnny +Jovan +Ralph +Rodney +Shaun +Stanley +Allan +Bryant +Chase +Colton +Conner +Danny +Edgar +Elias +Erick +Javon +Jay +Lee +Leo +Nico +Owen +Walter +Wayne +Zachariah +Alberto +Dalton +Damian +Darius +Darnell +Devante +Edgardo +Franklin +Glenn +Jackson +Jamal +Javier +Larry +Noel +Quincy +Reginald +Stuart +Wilfredo +Zachery +Akeem +Bernard +Cesar +Denzel +Eddie +Elliot +Griffin +Harold +Kelvin +Kristian +Liam +Malik +Melvin +Neil +Norman +Ramon +Randall +Shaquille +Terrance +Tomas +Tyshawn +Alfred +Babyboy +Brad +Brock +Cristian +Dana +Dane +Dimitri +Donovan +Gordon +Isiah +Israel +Jaquan +Josiah +Josue +Kareem +Kirk +Leon +Lorenzo +Mackenzie +Marcos +Markus +Marquis +Oscar +Rashad +Rory +Terrell +Terrence +Terry +Tony +Tyrone +Vaughn +Warren +Wilson +Abraham +Ariel +Bennett +Bobby +Bradford +Carter +Cullen +Darryl +Eli +Elliott +Emanuel +Fernando +Freddie +Hans +Jean +Jessie +Johnathon +Jon +Jordon +Kenny +Lamar +Lewis +Nathanael +Nickolas +Orlando +Pablo +Reid +Reynaldo +Ruben +Sergio +Stefano +Stephan +Tommy +Tyquan +Vincenzo +Willie +Ali +Alvin +Angelo +Antoine +Ari +Beau +Billy +Bret +Carlton +Carson +Clinton +Corbin +Dale +Damien +Damon +Daquan +Deandre +Demetrius +Deshawn +Desmond +Devan +Domenic +Dominique +Dwayne +Earl +Elvin +Emmett +Enrique +Ernest +Eugene +Frankie +Gage +Gerard +Gilbert +Ismael +Jameson +Jayson +Joey +Keegan +Keenan +Kory +Laurence +Luigi +Marco +Mike +Nigel +Quinton +Riley +Ronnie +Simon +Stefan +Ted +Terence +Tristan +Tylor +Wade +Zackary +Michael +Matthew +Christopher +Nicholas +Ryan +John +Joseph +Daniel +Andrew +Joshua +Tyler +James +David +Alexander +William +Kyle +Kevin +Anthony +Robert +Zachary +Brandon +Jonathan +Thomas +Brian +Justin +Eric +Jacob +Patrick +Benjamin +Sean +Samuel +Steven +Timothy +Jordan +Richard +Dylan +Adam +Jeffrey +Stephen +Jason +Connor +Peter +Christian +Mark +Paul +Evan +Charles +Aaron +Nathan +Scott +Gregory +Cody +Austin +Jeremy +Alex +Ian +Jesse +Luis +Bryan +Kenneth +Jose +Edward +Brendan +Colin +Trevor +Shane +Shawn +Jake +Taylor +Angel +Luke +Mitchell +Juan +Travis +Keith +Jared +Cameron +Conor +Nathaniel +Philip +Raymond +Devin +Corey +Spencer +Carlos +Miguel +Brett +Derek +Frank +Vincent +Victor +Garrett +Dillon +Erik +Ethan +George +Marc +Ronald +Andre +Edwin +Gabriel +Jack +Lucas +Louis +Troy +Craig +Max +Seth +Douglas +Devon +Maxwell +Chad +Donald +Marcus +Henry +Antonio +Blake +Collin +Xavier +Johnathan +Casey +Alan +Alec +Dominic +Hector +Joel +Bradley +Cory +Mathew +Hunter +Albert +Drew +Geoffrey +Harrison +Shaquille +Arthur +Dustin +Jorge +Julian +Tucker +Wesley +Caleb +Dennis +Javier +Lawrence +Maurice +Dalton +Francis +Jeremiah +Liam +Rafael +Randy +Salvatore +Todd +Walter +Adrian +Allen +Giovanni +Julio +Logan +Micheal +Miles +Neil +Noah +Sebastian +Branden +Carl +Cole +Jesus +Mario +Martin +Myles +Russell +Tanner +Theodore +Wayne +Dakota +Damien +Derrick +Emmanuel +Isaac +Jonathon +Kurt +Manuel +Mason +Parker +Phillip +Ricardo +Bruce +Colby +Dean +Isaiah +Nelson +Nicolas +Pedro +Roberto +Avery +Brendon +Curtis +Dante +Davon +Gary +Jaime +Jalen +Jamie +Javon +Sam +Zachery +Alexis +Elijah +Felix +Francisco +Jerome +Jon +Malcolm +Oliver +Tony +Ahmed +Aidan +Alejandro +Clayton +Cooper +Cristian +Damian +Danny +Erick +Gerald +Jaquan +Jimmy +Melvin +Omar +Riley +Ross +Shaun +Calvin +Dale +Denzel +Eduardo +Frederick +Griffin +Jackson +Karl +Kendall +Leonard +Marco +Orlando +Owen +Ramon +Roger +Trevon +Alberto +Andy +Bennett +Bernard +Chase +Dana +Daquan +Emanuel +Glenn +Harold +Hayden +Howard +Jay +Kristopher +Malik +Noel +Stefan +Tevin +Willie +Angelo +Brad +Brenden +Brent +Cesar +Colton +Darren +Darryl +Devan +Devante +Don +Edgar +Edgardo +Eli +Fabian +Gage +Gordon +Graham +Jerry +Josue +Kirk +Lewis +Lorenzo +Marquis +Maximilian +Micah +Morgan +Nolan +Quinn +Reginald +Rohan +Solomon +Terence +Terrell +Terrence +Tre +Tyrone +Wade +Zackary +Anton +Carter +Darrin +Dimitri +Dominick +Elliott +Eugene +Gilbert +Jaron +Jermaine +Johnny +Kristofer +Lance +Larry +Leo +Nigel +Oscar +Preston +Ralph +Rashad +Raul +Steve +Trey +Tyrell +Zackery +Abraham +Andres +Ariel +Bryce +Dane +Darien +Domenic +Donte +Edmund +Elias +Emilio +Franklin +Giuseppe +Ivan +Jeffery +Jonah +Jovanni +Keenan +Kelvin +Kenny +Lee +Marcel +Marlon +Moises +Muhammad +Nathanael +Niko +Quincy +Raheem +Randall +Raphael +Rodney +Rory +Roy +Ruben +Shayne +Tariq +Terrance +Tomas +Tyshawn +Wilfredo +Alexandre +Ali +Allan +Alvin +Barry +Benedict +Bobby +Bradford +Brady +Bret +Bryant +Chaz +Clinton +Conner +Damon +Darrell +Daryl +Dashawn +Dexter +Dorian +Dwight +Elliot +Enrique +Ernesto +Felipe +Fernando +Franco +Freddie +Gavin +Gerardo +Grant +Guillermo +Hugh +Jamal +Jamel +Jefferson +Jordon +Keegan +Lamar +Leon +Lloyd +Lukas +Marshall +Montel +Nickolas +Ray +Reece +Reid +Ricky +Robin +Santos +Sergio +Skyler +Stanley +Tyrese +Vernon +Vincenzo +Warren +Wilson +Wyatt +Michael +Matthew +Christopher +Nicholas +Ryan +Daniel +Joseph +Tyler +John +Andrew +William +Joshua +Kevin +Alexander +David +Kyle +James +Anthony +Zachary +Robert +Brandon +Brian +Thomas +Jonathan +Justin +Jacob +Benjamin +Timothy +Patrick +Sean +Eric +Dylan +Jordan +Adam +Samuel +Austin +Steven +Aaron +Peter +Jeffrey +Christian +Connor +Mark +Jason +Richard +Stephen +Nathan +Cody +Gregory +Paul +Evan +Jesse +Scott +Luis +Alex +Jose +Brendan +Charles +Edward +Ian +Jeremy +Bryan +Jake +Corey +Shawn +Travis +Jack +Colin +George +Cameron +Nathaniel +Angel +Spencer +Shane +Marcus +Raymond +Gabriel +Taylor +Devin +Erik +Luke +Kenneth +Trevor +Carlos +Henry +Andre +Jared +Juan +Seth +Ethan +Douglas +Vincent +Miguel +Mitchell +Joel +Frank +Brett +Caleb +Derek +Hunter +Lucas +Troy +Marc +Devon +Victor +Cory +Hector +Keith +Harrison +Philip +Donald +Alec +Bradley +Casey +Craig +Antonio +Conor +Noah +Elijah +Louis +Nicolas +Garrett +Ronald +Blake +Dean +Max +Xavier +Dominic +Johnathan +Mathew +Sebastian +Chad +Derrick +Theodore +Alexis +Arthur +Cole +Collin +Dustin +Avery +Julian +Tanner +Calvin +Dillon +Isaiah +Maxwell +Adrian +Colby +Liam +Logan +Brent +Chase +Drew +Gary +Mario +Phillip +Dennis +Marco +Randy +Shaquille +Wesley +Albert +Edwin +Grant +Griffin +Oliver +Roberto +Branden +Edgar +Gavin +Jackson +Shaun +Todd +Tucker +Alan +Andres +Francis +Francisco +Giovanni +Jeremiah +Julio +Mason +Miles +Pedro +Zachery +Carl +Curtis +Dalton +Geoffrey +Jamie +Javier +Johnny +Jorge +Lee +Morgan +Omar +Tevin +Allen +Brenden +Colton +Conner +Dakota +Dante +Davon +Denzel +Emmanuel +Frederick +Jalen +Jaquan +Martin +Nelson +Ramon +Russell +Terrance +Damian +Jaime +Jay +Kurt +Myles +Owen +Roger +Roy +Salvatore +Tony +Alejandro +Bryce +Cristian +Dallas +Damien +Forrest +Graham +Isaac +Jamal +Jermaine +Jesus +Kristopher +Mackenzie +Malik +Nolan +Pablo +Rafael +Ricardo +Ricky +Aidan +Dana +Daquan +Darren +Darryl +Elliot +Erick +Gunnar +Jonathon +Lawrence +Manuel +Melvin +Orlando +Parker +Ross +Simon +Stefan +Bryant +Clifford +Cooper +Demetrius +Devante +Gage +Glenn +Hayden +Ivan +Jarrett +Jonah +Karl +Lance +Larry +Lorenzo +Micheal +Ruben +Sam +Tyrone +Angelo +Ariel +Brendon +Charlie +Clayton +Conrad +Courtney +Dominick +Eddie +Eduardo +Gilberto +Jerome +Jessie +Jon +Kendrick +Marquis +Maximilian +Neil +Noel +Riley +Rodney +Steve +Tavon +Trevon +Tristan +Tyshawn +Wilfredo +Alfred +Alvin +Bernard +Bruce +Carter +Clinton +Dale +Darius +Diego +Dondre +Donovan +Edgardo +Eli +Elias +Emanuel +Felix +Francesco +Gerald +Harold +Harry +Javon +Josiah +Kendall +Lamar +Lukas +Malcolm +Maurice +Quinton +Reynaldo +Rocco +Ronnie +Terrence +Tommy +Abraham +Andy +Austen +Billy +Darien +Desmond +Devonte +Dimitri +Dwayne +Emilio +Giancarlo +Grayson +Harley +Heriberto +Ismael +Israel +Jameson +Joe +Josue +Jovanny +Kasey +Keegan +Keenan +Kelvin +Kenny +Marcel +Mitchel +Najee +Neal +Oscar +Quentin +Rashad +Reginald +Rick +Roland +Shaquan +Shayne +Skyler +Terence +Terrell +Terry +Trent +Trey +Tyrell +Walter +Will +Willie +Wyatt +Zackary +Zackery +Barry +Beau +Bruno +Cesar +Chris +Clark +Dane +Danny +Deshawn +Domenic +Dylon +Ernest +Esteban +Fernando +Gino +Gordon +Jamel +Jan +Jevon +Jimmy +Jovan +Kareem +Kurtis +Kyron +Landon +Markus +Marvin +Mike +Nigel +Nikolas +Quinn +Raheem +Ralph +Rashawn +Reid +Rene +Sawyer +Schuyler +Tyquan +Tyron +Vincenzo +Warren +Yusef +Michael +Matthew +Nicholas +Christopher +Ryan +Daniel +Joseph +Tyler +John +Joshua +James +Andrew +Zachary +William +David +Alexander +Thomas +Anthony +Kyle +Kevin +Jonathan +Justin +Jacob +Robert +Brandon +Brian +Eric +Benjamin +Patrick +Samuel +Timothy +Sean +Austin +Christian +Adam +Jason +Richard +Stephen +Dylan +Jordan +Steven +Connor +Peter +Mark +Cody +Jeffrey +Charles +Aaron +Jake +Evan +Nathan +Scott +Ian +Alex +Jose +Luis +Jeremy +Paul +Bryan +Edward +Gregory +Brendan +Luke +Shane +George +Jack +Cameron +Kenneth +Corey +Jesse +Colin +Ethan +Jared +Vincent +Devin +Nathaniel +Noah +Travis +Carlos +Raymond +Alec +Angel +Gabriel +Shawn +Spencer +Brett +Elijah +Trevor +Isaiah +Miguel +Mitchell +Erik +Taylor +Henry +Andre +Philip +Juan +Lucas +Maxwell +Donald +Derek +Liam +Marcus +Antonio +Douglas +Malik +Victor +Drew +Max +Seth +Tristan +Hunter +Troy +Casey +Dustin +Julian +Keith +Caleb +Cory +Alan +Collin +Louis +Marc +Bradley +Devon +Edwin +Garrett +Jorge +Xavier +Aidan +Mathew +Carl +Craig +Francisco +Giovanni +Grant +Cole +Conor +Gary +Logan +Owen +Ronald +Theodore +Adrian +Dennis +Cristian +Dakota +Frank +Isaac +Joel +Nicolas +Dominic +Geoffrey +Jeremiah +Pedro +Wesley +Chad +Dillon +Griffin +Jackson +Manuel +Roberto +Todd +Wyatt +Blake +Curtis +Gavin +Javier +Marco +Myles +Randy +Ricardo +Walter +Albert +Andres +Bailey +Calvin +Colby +Dante +Dean +Johnathan +Lawrence +Phillip +Sebastian +Tanner +Brendon +Chase +Daquan +Francis +Harrison +Hector +Jonathon +Mason +Neil +Russell +Trevon +Darren +Edgar +Gage +Jerry +Khalil +Morgan +Oscar +Alejandro +Allen +Avery +Damien +Donovan +Fernando +Ivan +Jamie +Jesus +Lorenzo +Omar +Preston +Riley +Salvatore +Shaun +Vincenzo +Arthur +Branden +Conner +Dale +Derrick +Frederick +Harold +Javon +Jermaine +Karl +Orlando +Parker +Stefan +Andy +Gerald +Julio +Kurt +Micheal +Miles +Nolan +Randall +Sam +Wayne +Alexis +Bernard +Chandler +Clayton +Darius +Elliot +Jalen +Jaquan +Jeffery +Jonah +Kristopher +Martin +Nelson +Noel +Quinton +Reginald +Roger +Ross +Terrell +Zachery +Colton +Dalton +Emmanuel +Erick +Ernest +Graham +Hayden +Jay +Johnny +Jon +Malcolm +Mario +Maurice +Quinn +Rafael +Raphael +Tyrone +Angelo +Ariel +Bruce +Carter +Darien +Denzel +Donte +Emanuel +Enrique +Eugene +Felix +Howard +Ismael +Jayson +Josue +Oliver +Raekwon +Reed +Reid +Rodney +Roy +Terrance +Tevin +Tony +Trey +Tucker +Ali +Aron +Cooper +Damian +Dana +Deshawn +Devante +Dwayne +Eli +Frankie +Giuseppe +Harry +Josiah +Kenny +Lee +Leo +Levi +Mackenzie +Marcos +Marquis +Marshall +Marvin +Micah +Ralph +Ramon +Raul +Ricky +Stephan +Stuart +Terrence +Willie +Alfredo +Andreas +Ben +Brenden +Bryce +Courtney +Dajon +Dallas +Devan +Devonte +Eddie +Elias +Ezekiel +Ezequiel +Forrest +Gino +Glenn +Gordon +Hakeem +Isiah +Israel +Jaime +Jakob +Jerome +Johnathon +Jovan +Kendall +Kurtis +Larry +Lukas +Marlon +Mohammed +Muhammad +Raheem +Rodrigo +Santiago +Seamus +Shaquille +Stanley +Stavros +Tomas +Warren +Alessandro +Allan +Alvin +Antwan +Armando +Bennett +Brad +Brady +Byron +Carlton +Charlie +Coty +Danny +Daryl +Declan +Desmond +Deven +Domenic +Dominick +Dominique +Edgardo +Edmond +Efrain +Elliott +Emilio +Everett +Gerard +Hugh +Jamal +Jamar +Jarrett +Jimmy +Joe +Jordon +Julius +Kadeem +Keanu +Kelvin +Kerry +Keven +Kirk +Kory +Kristian +Leonardo +Lloyd +Markus +Marquise +Melvin +Michal +Mohammad +Niko +Nikolas +Reinaldo +Rene +Roderick +Ronnie +Sammy +Shayne +Silas +Trent +Tyrell +Tyshawn +Weston +Zachariah +Zackary +Zackery +Michael +Matthew +Nicholas +Christopher +John +Ryan +Joseph +Daniel +Andrew +Tyler +Joshua +William +Zachary +David +Jacob +Alexander +Anthony +Kyle +Thomas +James +Brandon +Justin +Kevin +Robert +Jonathan +Benjamin +Austin +Eric +Samuel +Brian +Patrick +Jordan +Christian +Timothy +Sean +Jason +Adam +Dylan +Peter +Steven +Connor +Charles +Richard +Alex +Aaron +Stephen +Evan +Mark +Jack +Jeffrey +Brendan +Nathan +Jose +Jeremy +Noah +Ian +Colin +Paul +Gregory +Luis +Luke +Edward +Jake +Spencer +Jesse +Nathaniel +Cameron +Isaiah +Bryan +Mitchell +Antonio +Ethan +George +Cody +Hunter +Jared +Angel +Corey +Devin +Elijah +Alec +Carlos +Liam +Shawn +Trevor +Brett +Malik +Scott +Travis +Kenneth +Shane +Vincent +Marcus +Gabriel +Juan +Logan +Philip +Derek +Julian +Bradley +Frank +Garrett +Lucas +Raymond +Collin +Devon +Henry +Tristan +Dominic +Maxwell +Seth +Marc +Grant +Griffin +Miguel +Xavier +Andre +Erik +Harrison +Nicolas +Taylor +Troy +Victor +Chase +Owen +Donald +Joel +Aidan +Caleb +Cole +Dakota +Hector +Douglas +Louis +Max +Dante +Dustin +Keith +Drew +Emmanuel +Jackson +Ronald +Chad +Craig +Jesus +Mathew +Adrian +Carl +Cristian +Gary +Isaac +Javier +Riley +Blake +Calvin +Edwin +Jonah +Lawrence +Mason +Rafael +Sebastian +Andres +Alexis +Clayton +Cory +Dean +Dennis +Dillon +Julio +Wesley +Wyatt +Bryce +Casey +Conor +Dominick +Gerald +Phillip +Alejandro +Jeremiah +Martin +Omar +Randy +Danny +Hayden +Jonathon +Jorge +Quinn +Alan +Alberto +Damian +Edgar +Johnathan +Manuel +Maurice +Micheal +Pedro +Skyler +Theodore +Avery +Carter +Chance +Cooper +Curtis +Giovanni +Harry +Neil +Ricardo +Roger +Salvatore +Tanner +Walter +Albert +Arthur +Brenden +Brendon +Chandler +Dalton +Derrick +Eli +Frederick +Javon +Jermaine +Kurt +Raekwon +Ross +Russell +Tyrone +Allen +Branden +Colby +Colton +Damien +Deion +Eduardo +Felix +Gage +Graham +Ivan +Jerome +Josiah +Parker +Rory +Shaun +Todd +Angelo +Brent +Eddie +Gavin +Jalen +Jamal +Jamie +Jaquan +Jay +Morgan +Quentin +Quinton +Roberto +Terrance +Warren +Zachery +Zackary +Bailey +Francis +Francisco +Jeffery +Jerry +Jimmy +Kristian +Kristopher +Lorenzo +Marco +Myles +Nelson +Nikolas +Nolan +Oliver +Oscar +Reed +Reginald +Trent +Tucker +Tylor +Tyrell +Wayne +Zachariah +Alvin +Andy +Bennett +Bryant +Dale +Damon +Darren +Donovan +Efrain +Howard +Jayson +Johnny +Jon +Kendall +Mackenzie +Mario +Marquis +Orlando +Ralph +Reid +Ruben +Sam +Seamus +Sergio +Stefan +Terrence +Tommy +Austen +Brad +Dandre +Darius +Darryl +Denzel +Edgardo +Elias +Grayson +Jakob +Jean +Justice +Karl +Lance +Leonard +Malcolm +Melvin +Milton +Nickolas +Nigel +Noel +Pierce +Preston +Ramon +Raul +Vincenzo +Wilfredo +Willie +Alessandro +Ari +Carson +Dana +Dane +Darian +Darnell +Davon +Deon +Desmond +Devan +Duncan +Ellis +Ernest +Felipe +Fernando +Franklin +Harold +Jaime +Jamar +Jessie +Josef +Juwan +Kent +Larry +Lexus +Luciano +Marlon +Marquise +Marshall +Nico +Pablo +Randall +Ricky +Rodney +Sawyer +Simon +Trevon +Abraham +Addison +Ahmed +Alfred +Asa +Asante +Braden +Byron +Carlton +Cesar +Clarence +Clint +Conner +Dallas +Dashawn +Devante +Domenic +Dwayne +Elliot +Emanuel +Erick +Francesco +Frankie +Geoffrey +Gilberto +Gordon +Gunnar +Isiah +Jacques +Jaylen +Johnathon +Jonas +Jordon +Josue +Julius +Kaleb +Keanu +Keegan +Kieran +Lamar +Levi +Lewis +Maximillian +Miles +Mitchel +Quintin +Raphael +Reynaldo +Terry +Trenton +Tyquan +Zackery +Zavier +Michael +Matthew +Nicholas +Christopher +Daniel +John +Ryan +Joseph +Andrew +Zachary +Joshua +Tyler +Kyle +Anthony +Jacob +Alexander +David +William +Thomas +Justin +James +Brandon +Robert +Kevin +Jonathan +Benjamin +Samuel +Austin +Christian +Patrick +Jordan +Timothy +Eric +Connor +Dylan +Brian +Sean +Jason +Richard +Peter +Brendan +Charles +Mark +Adam +Nathan +Alex +Jack +Steven +Jake +Ian +Paul +Noah +Jose +Evan +Luis +Stephen +Aaron +Jeffrey +Jeremy +Cameron +Ethan +Colin +Trevor +Devin +Gregory +Jared +Isaiah +Angel +Lucas +Nathaniel +Scott +Vincent +Bryan +Gabriel +Cody +Mitchell +Edward +Elijah +Luke +Carlos +Shawn +Derek +Liam +Victor +Hunter +Corey +George +Alec +Antonio +Maxwell +Spencer +Cole +Kenneth +Travis +Devon +Jesse +Tristan +Juan +Malik +Marcus +Erik +Griffin +Collin +Henry +Brett +Caleb +Joel +Owen +Shane +Jackson +Logan +Philip +Raymond +Dante +Julian +Ronald +Andre +Drew +Garrett +Harrison +Aidan +Max +Frank +Mason +Miguel +Chase +Troy +Dominic +Johnathan +Taylor +Xavier +Blake +Bradley +Dillon +Marc +Seth +Douglas +Grant +Nicolas +Conor +Giovanni +Jorge +Ricardo +Sebastian +Jeremiah +Keith +Mathew +Brenden +Bryce +Chad +Gavin +Isaac +Dakota +Dennis +Edwin +Hector +Omar +Riley +Albert +Dean +Wesley +Casey +Colby +Cory +Craig +Gary +Julio +Russell +Cristian +Nikolas +Theodore +Adrian +Avery +Carter +Elias +Louis +Manuel +Oliver +Rafael +Tanner +Donald +Francis +Jonathon +Josiah +Roberto +Allen +Carl +Derrick +Hayden +Jakob +Marquise +Parker +Angelo +Bailey +Dominick +Donte +Emanuel +Javier +Javon +Marquis +Martin +Nelson +Nolan +Pedro +Tucker +Alan +Clayton +Curtis +Darius +Jay +Jonah +Kurt +Phillip +Raekwon +Shaun +Alejandro +Brendon +Colton +Cooper +Damian +Diego +Donovan +Emmanuel +Erick +Felix +Gerald +Graham +Ivan +Josue +Justice +Kristopher +Ramon +Ruben +Salvatore +Wade +Walter +Alexis +Andy +Arthur +Brennan +Calvin +Dalton +Damien +Edgar +Eduardo +Frederick +Gage +Jerry +Jesus +Malcolm +Marco +Nickolas +Quinn +Ricky +Stefan +Todd +Bennett +Brady +Brent +Conner +Damon +Danny +Dustin +Francisco +Geoffrey +Isiah +Jamal +Jaquan +Jordon +Lawrence +Marvin +Myles +Oscar +Reed +Seamus +Stanley +Trent +Trevon +Tyrell +Tyrone +Wayne +Zachery +Cyrus +Devan +Edmund +Elliot +Jerome +Kelvin +Kendall +Leo +Leonard +Lorenzo +Lukas +Mario +Miles +Muhammad +Nathanael +Neil +Quinton +Roger +Ross +Trenton +Wyatt +Aiden +Alberto +Andres +Brad +Branden +Bryant +Chandler +Conrad +Cullen +Deandre +Desmond +Domenic +Eamon +Eli +Enrique +Erich +Fernando +Harold +Jacques +Jarrett +Jayson +Johnny +Juwan +Kenny +Lance +Micheal +Mike +Morgan +Rory +Shea +Simon +Terrence +Tony +Tristen +Ty +Wilson +Alessandro +Armando +Bruce +Cedric +Clark +Dandre +Daquan +Davis +Duncan +Dwight +Emerson +Ezekiel +Frankie +Garret +Gianni +Glenn +Israel +Jalen +Jameson +Jermaine +Karl +Leon +Leonardo +Mackenzie +Marcel +Marlon +Preston +Quentin +Randall +Randy +Ray +Shamar +Sidney +Tariq +Terence +Terrance +Terrell +Tyree +Warren +Willie +Zachariah +Zackary +Zane +Alfred +Alonzo +Antoine +Ari +Ashton +Austen +Babyboy +Bret +Brock +Brody +Byron +Carlo +Cesar +Chance +Dale +Darren +Devante +Devonte +Dominique +Dwayne +Eddie +Emilio +Ezra +Gerard +Glen +Gordon +Harry +Howard +Jaime +Jamie +Jarrod +Jayquan +Jefferson +Jessie +Jimmy +Jon +Josef +Jovan +Karon +Keenan +Keion +Kieran +Landon +Malachi +Marcos +Maurice +Mitchel +Mohamed +Moses +Noel +Raphael +Reginald +Reid +Rocco +Rodney +Ronnie +Sage +Sam +Sawyer +Solomon +Stephon +Tate +Tommy +Travon +Tyrese +Michael +Matthew +Nicholas +Christopher +Ryan +Andrew +Joseph +Tyler +John +Daniel +Joshua +William +Jacob +Zachary +James +Anthony +Kyle +Alexander +Justin +David +Brandon +Jonathan +Benjamin +Thomas +Kevin +Jordan +Robert +Dylan +Samuel +Austin +Christian +Jack +Patrick +Connor +Jason +Noah +Eric +Brian +Timothy +Sean +Adam +Nathan +Cameron +Peter +Aaron +Richard +Ethan +Luis +Evan +Jake +Alex +Charles +Jose +Luke +Steven +Hunter +Nathaniel +Ian +Brendan +Stephen +Mark +Liam +Angel +Jared +Jeremy +Colin +Devin +Jeffrey +Paul +Elijah +Trevor +Isaiah +Gregory +Gabriel +Scott +Cody +Lucas +Spencer +Edward +Owen +Bryan +Vincent +Shawn +George +Mitchell +Maxwell +Dante +Kenneth +Carlos +Juan +Griffin +Henry +Shane +Victor +Jesse +Max +Raymond +Caleb +Chase +Cole +Devon +Garrett +Logan +Antonio +Brett +Jackson +Dominic +Marcus +Xavier +Alec +Collin +Corey +Aidan +Nicolas +Derek +Harrison +Adrian +Julian +Mathew +Andre +Joel +Malik +Marc +Philip +Erik +Giovanni +Isaac +Jeremiah +Colby +Dillon +Riley +Travis +Marco +Mason +Tristan +Bryce +Cristian +Edwin +Frank +Bailey +Bradley +Colton +Jakob +Johnathan +Rafael +Tanner +Chad +Conor +Grant +Jorge +Troy +Douglas +Gavin +Hector +Miguel +Ronald +Theodore +Alejandro +Cooper +Donald +Julio +Sebastian +Seth +Calvin +Cory +Duncan +Parker +Tariq +Blake +Dakota +Ricardo +Taylor +Alan +Carl +Carter +Craig +Curtis +Dean +Oliver +Zackary +Alexis +Chandler +Clayton +Drew +Keith +Omar +Phillip +Casey +Damian +Darius +Dominick +Emmanuel +Gianni +Ivan +Jalen +Jarod +Louis +Trent +Albert +Derrick +Dustin +Isiah +Jonah +Miles +Nikolas +Nolan +Andres +Avery +Brennan +Conner +Edgar +Francis +Gage +Jayson +Jerry +Jesus +Johnny +Jonathon +Leonardo +Manuel +Marquis +Orlando +Oscar +Quinn +Roberto +Sam +Todd +Tucker +Walter +Wyatt +Allen +Andy +Arthur +Brendon +Dalton +Frederick +Gary +Glenn +Israel +Javier +Jay +Jermaine +Reed +Simon +Angelo +Brady +Bruce +Damon +Darryl +Dennis +Donovan +Eli +Elias +Elliot +Francisco +Geoffrey +Graham +Hayden +Josiah +Justice +Leo +Lorenzo +Mario +Martin +Micah +Ramon +Raul +Shaun +Stefan +Trevon +Trey +Wayne +Wesley +Armando +Brenden +Camron +Darren +Dwayne +Fernando +Grayson +Javon +Jayvon +Kurt +Larry +Micheal +Pablo +Raheem +Roger +Ross +Seamus +Aiden +Bennett +Carson +Dale +Davon +Declan +Eugene +Jaylen +Jimmy +Jon +Kendall +Kenny +Khalil +Kristopher +Lance +Leon +Lewis +Malcolm +Marcos +Morgan +Myles +Neil +Quentin +Reece +Salvatore +Sergio +Tommy +Tyrone +Vincenzo +Amir +Dallas +Dane +Dashawn +Dawson +Deandre +Demetrius +Earl +Emilio +Erick +Ernest +Esteban +Gino +Heriberto +Jaime +Jamie +Jaquan +Josue +Jovan +Juwan +Kelvin +Kobe +Lawrence +Maurice +Melvin +Nelson +Nickolas +Noel +Pedro +Ralph +Randy +Reginald +Ricky +Rodney +Russell +Tomas +Tyrell +Warren +Zachariah +Abraham +Alberto +Ariel +Ashton +Ben +Cesar +Chance +Chris +Damien +Dandre +Danny +Deshawn +Dwight +Edmund +Ezra +Felix +Gordon +Harold +Jarred +Jayquan +Jean +Jonas +Jovanni +Julius +Karl +Keegan +Kieran +Kristian +Markus +Mathieu +Maximilian +Mohammed +Preston +Quinton +Reid +Reilly +Rocco +Ruben +Santino +Stuart +Terrell +Terrence +Tony +Tyrek +Tyson +Wilfredo +Zachery +Zackery +Alfredo +Ali +Amari +Antoine +Aramis +Brock +Brody +Cade +Cyrus +Daquan +Darrell +Dashaun +Dimitri +Donte +Efrain +Fabian +Harley +Harry +Herbert +Holden +Ismael +Jaden +Jamal +Jarrod +Kai +Kameron +Kareem +Lars +Lee +Leonard +Levi +Luca +Lukas +Malachi +Marshall +Mateo +Mateusz +Mekhi +Mohammad +Moses +Nigel +Peyton +Rahul +Reinaldo +Roy +Solomon +Terry +Walker +Willie +Matthew +Michael +Nicholas +Christopher +John +Ryan +Jacob +Joseph +Andrew +William +Anthony +Joshua +Zachary +Daniel +Tyler +Alexander +Kyle +Justin +Thomas +James +David +Benjamin +Jonathan +Samuel +Brandon +Kevin +Robert +Jack +Dylan +Brian +Noah +Sean +Nathan +Christian +Jason +Jordan +Austin +Connor +Patrick +Cameron +Ethan +Adam +Evan +Jake +Timothy +Eric +Peter +Charles +Jared +Mark +Richard +Brendan +Ian +Elijah +Alex +Liam +Luke +Stephen +Steven +Jose +Spencer +Luis +Hunter +Nathaniel +Trevor +Isaiah +Jeffrey +Aaron +Angel +Carlos +Bryan +Jeremy +Colin +Gabriel +Paul +Shane +Edward +Logan +Antonio +Devin +Owen +Caleb +Max +Scott +Aidan +Gregory +Derek +Kenneth +Alec +Jackson +Xavier +Maxwell +Cody +Corey +George +Cole +Lucas +Victor +Shawn +Brett +Gavin +Griffin +Mitchell +Vincent +Garrett +Chase +Devon +Dominic +Marcus +Raymond +Andre +Julian +Frank +Nicolas +Henry +Juan +Marc +Cristian +Edwin +Jesse +Mason +Miguel +Riley +Tristan +Adrian +Philip +Sebastian +Seth +Harrison +Isaac +Joel +Louis +Troy +Collin +Theodore +Bryce +Drew +Colby +Dante +Erik +Julio +Malik +Blake +Bradley +Dakota +Travis +Damian +Donovan +Tanner +Javier +Jeremiah +Giovanni +Mathew +Quinn +Chad +Cory +Dennis +Elias +Johnathan +Jorge +Ronald +Tyrese +Angelo +Bailey +Oliver +Parker +Rafael +Randy +Ricardo +Shaun +Taylor +Wyatt +Conor +Dillon +Grant +Jaden +Keith +Pedro +Cooper +Darius +Francis +Jay +Marco +Sam +Wesley +Alan +Andy +Calvin +Casey +Douglas +Gary +Hayden +Jayson +Jesus +Jonah +Roberto +Alejandro +Alexis +Brennan +Curtis +Dean +Diego +Jayden +Jonathon +Nolan +Arthur +Branden +Carter +Clayton +Conner +Craig +Erick +Francisco +Hector +Isiah +Jalen +Jaquan +Martin +Myles +Omar +Quentin +Todd +Brent +Dalton +Derrick +Dominick +Felix +Jakob +Malcolm +Miles +Preston +Roger +Ruben +Allan +Andres +Donald +Emmanuel +Javon +Jaylen +Josiah +Josue +Maximilian +Nico +Salvatore +Avery +Bryant +Colton +Damien +Darien +Edgar +Jamar +Jarrett +Kelvin +Nickolas +Quincy +Simon +Zachery +Zackary +Ali +Carson +Chandler +Damon +Danny +Davon +Gerald +Harry +Jamie +Johnny +Lawrence +Lorenzo +Mario +Nelson +Peyton +Trent +Willie +Cesar +Dawson +Desmond +Eduardo +Elliot +Enrique +Fabian +Francesco +Ismael +Israel +Ivan +Jarod +Jimmy +Jon +Julius +Khalil +Kristopher +Leonardo +Lukas +Mohammad +Neil +Nikolas +Orlando +Oscar +Raphael +Sergio +Skyler +Trenton +Trey +Tucker +Tyriq +Zion +Albert +Alexandre +Brenden +Chance +Dandre +Declan +Dustin +Emanuel +Gage +Justice +Kai +Manuel +Nikhil +Noel +Phillip +Reed +Rohan +Roland +Russell +Tariq +Terrance +Trevon +Tyrell +Tyrique +Vincenzo +Abraham +Aiden +Allen +Amir +Barry +Brendon +Camden +Camron +Carl +Conrad +Denzel +Devonte +Duncan +Eddie +Efrain +Eli +Eugene +Ezekiel +Frankie +Gerardo +Hugo +Jovan +Keenan +Kieran +Kristian +Marshall +Marvin +Micah +Mohammed +Pablo +Ralph +Raul +Ross +Stefan +Syed +Terrence +Tony +Tyquan +Tyrone +Walter +Wayne +Zane +Abdul +Alden +Anderson +Ari +Armando +Bennett +Bradford +Brayden +Brooks +Chris +Dajon +Dale +Darnell +Darren +Domenick +Dwight +Edmund +Elliott +Elvis +Frederick +Giuseppe +Gordon +Graham +Hugh +Izaiah +Jadon +Jakai +Jameson +Jerome +Jordon +Kameron +Kendrick +Kobe +Kolby +Kunal +Kurt +Leon +Marquise +Mateo +Maurice +Michal +Micheal +Moises +Morgan +Nasir +Nathanael +Nathanial +Paris +Pierce +Randall +Ricky +Rory +Roy +Rudy +Shayne +Shemar +Sidney +Stanley +Tahj +Tommy +Ty +Vaughn +Wade +Wilfredo +Wilson +Zackery +Zaire +Michael +Matthew +Nicholas +Christopher +Ryan +Jacob +John +Joshua +Joseph +William +Alexander +Zachary +Andrew +Daniel +Tyler +Anthony +James +Thomas +David +Justin +Benjamin +Kyle +Jonathan +Robert +Kevin +Brandon +Christian +Jack +Dylan +Samuel +Noah +Nathan +Sean +Jason +Cameron +Jordan +Ethan +Brian +Connor +Evan +Eric +Timothy +Patrick +Alex +Jared +Adam +Austin +Charles +Steven +Jake +Richard +Gabriel +Elijah +Brendan +Luke +Hunter +Jeremy +Jose +Isaiah +Liam +Nathaniel +Peter +Mark +Shane +Stephen +Aaron +Ian +Luis +Colin +Aidan +Trevor +Angel +Henry +Logan +Maxwell +Spencer +Owen +Lucas +Derek +Bryan +Carlos +Cole +Sebastian +Caleb +Seth +Vincent +Garrett +Jackson +Julian +Mason +Edward +Joel +Devin +Dominic +Kenneth +Antonio +Cody +Paul +Xavier +Nicolas +Scott +Jeffrey +Juan +George +Gregory +Chase +Gavin +Isaac +Travis +Marcus +Collin +Devon +Erik +Max +Alec +Riley +Victor +Adrian +Jaden +Corey +Shawn +Tristan +Jesse +Frank +Griffin +Harrison +Miguel +Mitchell +Raymond +Tanner +Dante +Giovanni +Jalen +Philip +Troy +Blake +Jakob +Bradley +Brett +Calvin +Hector +Edwin +Malik +Colby +Francisco +Grant +Jayden +Marc +Omar +Carter +Drew +Jesus +Wyatt +Alexis +Andre +Conor +Douglas +Emmanuel +Javier +Mathew +Oliver +Chad +Cooper +Dennis +Dillon +Nolan +Quinn +Theodore +Alejandro +Carson +Hayden +Jeremiah +Luca +Preston +Walter +Avery +Jaylen +Marco +Marcos +Angelo +Carl +Dakota +Donald +Eli +Keith +Martin +Pedro +Rafael +Shaun +Alan +Bryce +Cristian +Damian +Dean +Francis +Johnathan +Jonah +Nikolas +Taylor +Casey +Clayton +Curtis +Duncan +Elias +Gary +Josiah +Leonardo +Malachi +Noel +Ricardo +Salvatore +Allen +Brennan +Darius +Deandre +Donovan +Felix +Jaquan +Jerry +Jorge +Keegan +Kelvin +Miles +Nelson +Parker +Simon +Tyrone +Wesley +Andres +Andy +Cory +Craig +Enrique +Grayson +Jay +Jayson +Jonathon +Kaleb +Kobe +Lawrence +Mario +Maurice +Myles +Tyrese +Zackary +Arthur +Bailey +Chandler +Damien +Danny +Declan +Diego +Dustin +Edgar +Gage +Josue +Julio +Kameron +Kieran +Kristopher +Louis +Micheal +Mohammed +Oscar +Phillip +Quincy +Raul +Ronald +Skyler +Albert +Colton +Conner +Dalton +Damon +Dominick +Erick +Justice +Lance +Lorenzo +Malcolm +Manuel +Maximilian +Pablo +Peyton +Ramon +Roberto +Rory +Tucker +Zion +Aiden +Brad +Camron +Cesar +Desmond +Devonte +Elliot +Finn +Graham +Isiah +Israel +Ivan +Jon +Jordon +Kevon +Mike +Neil +Pierce +Quentin +Reid +Russell +Todd +Ty +Alexandre +Alfred +Brenden +Brent +Bruce +Bryant +Dawson +Demetrius +Derrick +Eamon +Ezekiel +Francesco +Ismael +Jace +Jameson +Jamie +Leo +Leonard +Lukas +Nickolas +Nico +Orlando +Payton +Ricky +Rohan +Santiago +Saul +Shamar +Shemar +Terrell +Trevon +Trey +Tyree +Wilfredo +Zachery +Alberto +Alessandro +Ben +Bennett +Conrad +Cullen +Cyrus +Dandre +Dane +Domenic +Dwayne +Eduardo +Emanuel +Esteban +Ezequiel +Felipe +Garret +Glenn +Harry +Jarrett +Jean +Jimmy +Julius +Kareem +Kendall +Marquis +Marvin +Matteo +Mohammad +Nathanael +Roger +Roman +Sage +Sam +Sergio +Terrence +Tre +Vincenzo +Will +Anderson +Barry +Braden +Branden +Brendon +Bruno +Cade +Caden +Camden +Charlie +Clifford +Coleman +Courtney +Dale +Daquan +Darren +Dashawn +Davis +Davon +Deon +Eddie +Elliott +Emilio +Everett +Ezra +Frederick +Gerald +Guillermo +Gunnar +Javon +Jefferson +Jelani +Jermaine +Johnny +Johnpaul +Jorden +Karl +Kendrick +Kent +Keyon +Kirk +Kristian +Mackenzie +Marcello +Marquise +Marshall +Maximillian +Mitchel +Moises +Muhammad +Nigel +Patryk +Quintin +Rahul +Randy +Reginald +Rocco +Ross +Shayne +Stefan +Steve +Tavon +Terence +Tobias +Trent +Tylor +Tyrell +Tyshawn +Wayne +Willem +Zachariah +Zackery +Michael +Matthew +Nicholas +Christopher +John +Ryan +Jacob +Joseph +Anthony +Joshua +Andrew +Alexander +Daniel +William +Zachary +Justin +Tyler +James +Benjamin +Thomas +Jack +David +Kevin +Jonathan +Ethan +Dylan +Samuel +Kyle +Robert +Connor +Jason +Christian +Brandon +Nathan +Sean +Noah +Patrick +Adam +Cameron +Brian +Jordan +Evan +Luke +Eric +Austin +Timothy +Colin +Gabriel +Aidan +Charles +Jake +Peter +Logan +Elijah +Ian +Jose +Alex +Luis +Brendan +Nathaniel +Devin +Hunter +Liam +Owen +Spencer +Angel +Aaron +Jared +Steven +Cole +Derek +Caleb +Mark +Richard +Sebastian +Cody +Dominic +Maxwell +Isaiah +Jeffrey +Edward +Lucas +Shane +Jeremy +Trevor +Jackson +Mason +Xavier +Julian +Antonio +Bryan +Victor +Vincent +Colby +Henry +Gavin +Stephen +George +Max +Carlos +Dante +Jaden +Juan +Scott +Garrett +Kenneth +Nicolas +Seth +Chase +Isaac +Jeremiah +Paul +Griffin +Jesse +Devon +Jalen +Jayden +Tristan +Adrian +Alec +Bryce +Giovanni +Gregory +Harrison +Miguel +Mitchell +Riley +Carter +Marcus +Brett +Shawn +Erik +Cooper +Drew +Frank +Nolan +Collin +Hector +Marc +Raymond +Aiden +Josiah +Louis +Travis +Wesley +Wyatt +Blake +Corey +Dillon +Edwin +Hayden +Tanner +Theodore +Quinn +Andre +Omar +Parker +Philip +Emmanuel +Jakob +Joel +Kobe +Malik +Miles +Carson +Casey +Grant +Jonah +Lorenzo +Martin +Mathew +Pedro +Ricardo +Troy +Alexis +Angelo +Conor +Myles +Oliver +Roberto +Simon +Avery +Damian +Dominick +Ivan +Johnathan +Keith +Sam +Alejandro +Dean +Diego +Douglas +Elias +Erick +Javier +Jaylen +Jesus +Josue +Mario +Phillip +Rafael +Colton +Dennis +Elliot +Gary +Jorge +Leonardo +Maximus +Calvin +Craig +Donald +Jaheim +Jonathon +Lance +Luca +Malachi +Shaun +Tucker +Alan +Albert +Andres +Andy +Arthur +Conner +Cristian +Dale +Eli +Enrique +Francis +Francisco +Frederick +Jayson +Julio +Kaleb +Marco +Oscar +Pablo +Ronald +Walter +Zackary +Bailey +Brennan +Carl +Cesar +Chad +Dakota +Damien +Derrick +Justice +Lawrence +Leo +Lukas +Skyler +Trey +Tyrese +Ahmad +Allen +Bruce +Cory +Dalton +Eddie +Isiah +Javon +Jimmy +Malcolm +Nickolas +Peyton +Russell +Sergio +Todd +Alessandro +Ali +Alvin +Bradley +Brenden +Damon +Danny +Davis +Dustin +Eduardo +Emanuel +Fernando +Graham +Harry +Ismael +Jarrett +Jay +Keegan +Manuel +Marquis +Mekhi +Nathanael +Neil +Pierce +Preston +Rocco +Rohan +Ruben +Seamus +Shamar +Taylor +Zane +Zion +Alberto +Brady +Bryant +Clayton +Darius +Darren +Declan +Domenic +Duncan +Elvis +Fabian +Felix +Grady +Izaiah +Jermaine +Jon +Julius +Micah +Mohammed +Moises +Nikolas +Noel +Quentin +Randy +Trent +Trevon +Ty +Tyrone +Ahmed +Amir +Anton +Armando +Ashton +Axel +Branden +Brendon +Chandler +Chris +Corbin +Davon +Donovan +Eamon +Emmett +Everett +Finn +Gage +Jadon +Jameson +Jerry +Kai +Kelvin +Khalil +Kolby +Kurt +Leon +Micheal +Mohammad +Nelson +Nico +Ralph +Ramon +Santiago +Shemar +Stefan +Tyree +Weston +Ben +Brody +Cade +Caden +Cedric +Cyrus +Dawson +Devan +Devonte +Dwayne +Edgar +Emerson +Emilio +Gianni +Giuseppe +Holden +Jaiden +Jamar +Jamison +Jean +Johnny +Julien +Kieran +Lee +Marcos +Mateo +Matteo +Maurice +Morgan +Muhammad +Orlando +Phoenix +Reese +Reid +Ronnie +Ross +Terrell +Trenton +Tyquan +Vincenzo +Warren +Wayne +Wilfredo +Willie +Zachery +Abraham +Alfred +Alfredo +Armani +Brad +Brayden +Byron +Camden +Curtis +Dandre +Darrell +Dashawn +Dayton +Deandre +Demetrius +Elliott +Forrest +Geoffrey +Giancarlo +Glen +Guilherme +Guillermo +Jace +Jaime +Jamal +Jan +Jarod +Jasper +Jaydon +Jeffery +Joaquin +Jovan +Junior +Justus +Kareem +Keon +Keven +Kristian +Levi +Marlon +Matheus +Maxim +Maximilian +Melvin +Milo +Nikhil +Pierre +Quincy +Reginald +Reilly +Reynaldo +Roman +Rory +Savion +Shayne +Shea +Steve +Terrence +Terry +Tomas +Tony +Walker +Wilson +Michael +Matthew +Nicholas +Ryan +Christopher +Joshua +Joseph +Jacob +Anthony +John +Alexander +Andrew +William +Daniel +Zachary +Justin +Tyler +Jack +James +Benjamin +Kyle +Ethan +David +Thomas +Jonathan +Dylan +Kevin +Samuel +Robert +Nathan +Brandon +Jason +Aidan +Christian +Sean +Connor +Evan +Brian +Luke +Noah +Adam +Cameron +Gabriel +Patrick +Jordan +Eric +Hunter +Austin +Isaiah +Logan +Elijah +Jake +Aaron +Charles +Owen +Timothy +Xavier +Nathaniel +Peter +Liam +Alex +Brendan +Cole +Jackson +Jose +Angel +Mason +Antonio +Ian +Lucas +Jaden +Spencer +Steven +Caleb +Maxwell +Richard +Colin +Dominic +Sebastian +Mark +Luis +Devin +Trevor +Gavin +Shane +Henry +Jayden +Julian +Jared +Adrian +Edward +Jeremy +Riley +Stephen +Carlos +Paul +Vincent +Colby +Dante +Jeffrey +Max +Erik +Nicolas +Derek +Garrett +Harrison +Cody +Giovanni +Juan +Bryan +Griffin +George +Gregory +Jeremiah +Miguel +Aiden +Carter +Isaac +Victor +Jesse +Kenneth +Tristan +Brett +Bryce +Chase +Mitchell +Shawn +Blake +Cristian +Joel +Scott +Marcus +Quinn +Raymond +Seth +Edwin +Emmanuel +Jorge +Alejandro +Cooper +Tanner +Devon +Malachi +Omar +Philip +Theodore +Tucker +Collin +Damian +Drew +Frank +Diego +Hector +Louis +Nolan +Hayden +Javier +Pedro +Travis +Alexis +Grant +Manuel +Alec +Brady +Malik +Ricardo +Wesley +Wyatt +Alan +Corey +Damien +Dean +Graham +Jalen +Marc +Andres +Darren +Dennis +Elias +Francisco +Gary +Ivan +Johnathan +Jonah +Oliver +Simon +Andre +Angelo +Dakota +Dillon +Francis +Jayson +Jesus +Kaleb +Leo +Marco +Mathew +Maximus +Parker +Troy +Calvin +Dominick +Felix +Jaiden +Josiah +Miles +Nasir +Rafael +Roberto +Albert +Bradley +Darius +Lawrence +Martin +Myles +Rohan +Arthur +Carson +Clayton +Conor +Donovan +Edgar +Eduardo +Emanuel +Jakob +Russell +Zackary +Abraham +Ali +Allen +Avery +Byron +Cesar +Cyrus +Danny +Erick +Jaylen +Luca +Micah +Nelson +Ronald +Ty +Vincenzo +Ahmed +Alberto +Brayden +Brennan +Charlie +Colton +Declan +Donald +Javon +Jermaine +Johnny +Justice +Kristopher +Mario +Maximilian +Quentin +Salvatore +Silas +Trey +Andy +Braden +Camron +Carl +Conner +Craig +Derrick +Douglas +Dustin +Esteban +Ezekiel +Gianni +Jaheim +Jaime +Josue +Kai +Kareem +Kobe +Leonard +Marcos +Marvin +Melvin +Noel +Quincy +Rocco +Sam +Seamus +Terry +Tyrese +Walker +Walter +Braeden +Brayan +Chad +Dalton +Damon +Davon +Fabian +Gage +Jamal +Jamison +Jaylin +Johan +Jon +Julio +Kameron +Keegan +Keenan +Keith +Kelvin +Kristian +Mateo +Phillip +Pierce +Reese +Sawyer +Taylor +Terrance +Todd +Zachery +Zion +Alessandro +Amir +Ariel +Baby +Brenden +Caden +Casey +Chris +Donte +Eli +Enrique +Felipe +Frederick +Grayson +Jaquan +Jimmy +Jonathon +Julius +Kurt +Levi +Lukas +Marquis +Mekhi +Nico +Nikhil +Orlando +Peyton +Preston +Quinton +Reece +Tobias +Tomas +Tommy +Warren +Wilson +Addison +Ahmad +Alexandre +Allan +Armando +Ashton +Ayden +Bailey +Bennett +Branden +Bruno +Camden +Demetrius +Desmond +Devonte +Elliot +Emilio +Freddy +Gordon +Harry +Holden +Isiah +Jay +Jaydon +Jaylon +Jerry +Jordy +Kaden +Khalil +Kieran +Leandro +Luciano +Malcolm +Marcel +Matheus +Menachem +Mohamed +Morgan +Nikolas +Oscar +Pablo +Ramon +Ruben +Stanley +Terrell +Aden +Adrien +Aedan +Alexzander +Amari +Anton +Axel +Brendon +Brody +Bryson +Cade +Conrad +Curtis +Dallas +Damion +Dane +Darien +Dimitri +Dominik +Drake +Eamon +Edison +Elvin +Emmett +Eugene +Ezequiel +Finn +Glenn +Harold +Hudson +Ismael +Izaiah +Jabari +Jaeden +Jakai +Jamar +Jamie +Jan +Jarod +Joao +Jonas +Julien +Justyn +Karl +Kiernan +Kody +Korey +Kyler +Lance +Leonardo +Leonel +Lorenzo +Lucca +Marshall +Mauricio +Muhammad +Nathanael +Pranav +Ricky +Rowan +Roy +Shamar +Sincere +Steve +Syed +Trent +Trevon +Tylon +Tyshawn +Xander +Zaire +Matthew +Michael +Ryan +Nicholas +Joseph +Joshua +John +Andrew +Christopher +Jacob +Anthony +Tyler +Daniel +Alexander +William +Zachary +Jack +Justin +James +Benjamin +Ethan +Samuel +David +Dylan +Kyle +Thomas +Aidan +Nathan +Connor +Robert +Jonathan +Kevin +Brandon +Evan +Jason +Christian +Luke +Sean +Gabriel +Elijah +Noah +Logan +Patrick +Charles +Cameron +Jake +Owen +Brian +Jordan +Colin +Isaiah +Jose +Adam +Jayden +Aaron +Nathaniel +Lucas +Timothy +Ian +Angel +Liam +Luis +Aiden +Austin +Gavin +Jackson +Eric +Mason +Alex +Peter +Steven +Xavier +Brendan +Caleb +Cole +Dominic +Bryan +Devin +Richard +Jeremy +Julian +Stephen +Hunter +George +Mark +Edward +Trevor +Cody +Maxwell +Vincent +Jeremiah +Henry +Jaden +Sebastian +Shane +Carlos +Chase +Nicolas +Max +Paul +Jeffrey +Shawn +Erik +Garrett +Jared +Cooper +Spencer +Isaac +Jesse +Kenneth +Victor +Dante +Giovanni +Bryce +Harrison +Hayden +Collin +Derek +Dillon +Mitchell +Seth +Theodore +Antonio +Carter +Frank +Joel +Juan +Marcus +Raymond +Adrian +Colby +Gregory +Griffin +Josiah +Riley +Scott +Oliver +Blake +Tristan +Alexis +Miles +Cristian +Travis +Brett +Devon +Drew +Edwin +Alec +Brady +Carson +Nolan +Jorge +Philip +Simon +Tanner +Brody +Casey +Miguel +Eli +Elias +Leonardo +Luca +Maximilian +Ricardo +Ty +Andre +Damian +Diego +Dominick +Ivan +Jesus +Malik +Parker +Pedro +Conor +Eduardo +Hector +Jaylen +Jonah +Kaleb +Marc +Oscar +Quinn +Alejandro +Ashton +Avery +Dakota +Donald +Douglas +Malachi +Mario +Omar +Brayden +Camden +Dean +Declan +Donovan +Edgar +Louis +Manuel +Mathew +Wyatt +Amir +Corey +Graham +Grant +Jay +Keith +Leo +Troy +Ayden +Danny +Jaiden +Jalen +Landon +Marco +Mekhi +Alan +Conner +Damon +Emanuel +Emmanuel +Francis +Isiah +Jakob +Kai +Martin +Mateo +Nikolas +Rohan +Ronald +Ruben +Alessandro +Angelo +Braden +Bradley +Clayton +Colton +Erick +Fernando +Frederick +Jaheim +Myles +Phillip +Ramon +Shaun +Wesley +Andy +Axel +Brenden +Caden +Chad +Craig +Dennis +Elliott +Javier +Johnathan +Josue +Jovan +Karl +Lukas +Marquis +Nickolas +Nico +Rafael +Tyrese +Alfredo +Andres +Bailey +Brennan +Calvin +Camron +Curtis +Damien +Derrick +Domenic +Elliot +Esteban +Francisco +Gary +Grayson +Javon +Kaden +Khalil +Kolby +Kristopher +Lorenzo +Maurice +Moises +Nathanael +Nelson +Orlando +Preston +Russell +Sam +Tucker +Walter +Allen +Arthur +Branden +Cory +Jameson +Jayson +Jermaine +Jonas +Jonathon +Julio +Marcos +Marvin +Matteo +Micah +Reilly +Ronan +Rory +Rowan +Shea +Tobias +Todd +Xander +Zackary +Zane +Alberto +Armando +Braeden +Cayden +Chris +Cyrus +Eamon +Finn +Gage +Gianni +Jasper +Jean +Julius +Kellen +Kelvin +Kieran +Kristian +Kurt +Maximus +Muhammad +Nazir +Pablo +Pierce +Ralph +Rodrigo +Roger +Roman +Salvatore +Sawyer +Siddharth +Tiernan +Tomas +Tyrell +Zion +Abraham +Ali +Amari +Ariel +Baby +Beau +Cesar +Dalton +Davon +Deandre +Desmond +Devan +Devonte +Dominik +Dustin +Emmett +Eugene +Felipe +Felix +Franklin +Gian +Giancarlo +Greyson +Harry +Jerry +Joaquin +Joey +Johan +Johnny +Jon +Justice +Kenny +Kobe +Kyler +Markus +Melvin +Mohamed +Mohammad +Morgan +Nasir +Nathanial +Neil +Noel +Peyton +Randy +Roy +Shamar +Tate +Taylor +Terrence +Trent +Trey +Wade +Zachery +Zakary +Aditya +Adonis +Albert +Alijah +Andreas +Bruce +Bryant +Cal +Corbin +Dane +Darius +Darrell +Darren +Davin +Duncan +Eddie +Elian +Eliezer +Ernesto +Everett +Finnegan +Francesco +Gino +Gustavo +Hugo +Israel +Izaiah +Jace +Jamar +Jerome +Jimmy +Johnathon +Jovanni +Jude +Justyn +Leon +Leonard +Malcolm +Marquise +Maximillian +Mike +Nehemiah +Nikhil +Omarion +Payton +Quentin +Raphael +Roberto +Rolando +Ryder +Sergio +Trenton +Vincenzo +Wilson +Yash +Zander +Michael +Ryan +Matthew +Nicholas +Joseph +Jacob +John +Alexander +Christopher +Anthony +Andrew +Joshua +Daniel +William +Tyler +Benjamin +Jack +David +Justin +Ethan +James +Zachary +Dylan +Aidan +Connor +Nathan +Kevin +Thomas +Christian +Kyle +Samuel +Evan +Jason +Jonathan +Robert +Brandon +Charles +Luke +Sean +Gabriel +Jayden +Adam +Jake +Logan +Noah +Colin +Alex +Elijah +Patrick +Aiden +Isaiah +Lucas +Cameron +Jordan +Nathaniel +Luis +Owen +Ian +Jackson +Eric +Hunter +Liam +Brian +Peter +Angel +Gavin +Mason +Henry +Xavier +Jose +Caleb +Aaron +Cole +Mark +Julian +Austin +Timothy +Jaden +Vincent +Chase +Sebastian +Trevor +Dominic +Brendan +Devin +Steven +Edward +Riley +Stephen +Antonio +Jeremy +Bryan +Nicolas +Paul +Jeffrey +Carter +Derek +Richard +Jeremiah +Jesse +Kenneth +George +Jared +Carlos +Isaac +Maxwell +Adrian +Brady +Cody +Juan +Spencer +Cooper +Shane +Miguel +Wyatt +Gregory +Max +Colby +Collin +Raymond +Giovanni +Louis +Marcus +Tristan +Cristian +Hayden +Jaiden +Alejandro +Blake +Bryce +Garrett +Josiah +Marco +Griffin +Oliver +Victor +Dante +Elias +Malachi +Quinn +Brayden +Damian +Jonah +Luca +Nolan +Ashton +Corey +Devon +Emmanuel +Harrison +Troy +Andre +Edwin +Simon +Caden +Drew +Jesus +Joel +Nikolas +Seth +Shawn +Erik +Frank +Jalen +Jayson +Mitchell +Theodore +Angelo +Diego +Myles +Omar +Parker +Travis +Alexis +Amir +Javier +Kaleb +Leo +Mekhi +Scott +Wesley +Avery +Brett +Calvin +Dominick +Eli +Hector +Leonardo +Mathew +Peyton +Tanner +Dillon +Emanuel +Grant +Malik +Oscar +Alan +Andres +Braden +Carson +Damien +Ivan +Lorenzo +Manuel +Albert +Alec +Bradley +Conner +Micah +Miles +Nickolas +Philip +Roberto +Casey +Donovan +Gary +Holden +Jay +Martin +Ayden +Caiden +Carl +Dakota +Donald +Finn +Gage +Harry +Jakob +Justice +Kai +Lukas +Mario +Matteo +Nelson +Pierce +Rafael +Russell +Andy +Brody +Camden +Fernando +Jamie +Jaylen +Kaden +Marc +Maximilian +Rohan +Sam +Todd +Trey +Ty +Yandel +Abraham +Brennan +Deandre +Declan +Domenic +Jakub +Jorge +Kanye +Keegan +Kelvin +Kieran +Landon +Marcos +Marlon +Maximus +Nasir +Pedro +Randy +Ronald +Salvatore +Arthur +Bailey +Brayan +Brenden +Cayden +Cesar +Chad +Cory +Damon +Darren +Dean +Eduardo +Jaeden +Jan +Jerry +Johnathan +Lance +Levi +Mateo +Melvin +Pablo +Preston +Ruben +Shaun +Tucker +Walter +Zion +Aden +Ali +Anderson +Charlie +Chris +Conor +Craig +Curtis +Dalton +Dennis +Duncan +Erick +Felipe +Felix +Francis +Francisco +Gianni +Grayson +Isiah +Izaiah +Jadon +Keith +Kenny +Lawrence +Pranav +Reid +Ricardo +Ricky +Rocco +Rory +Stanley +Trent +Tyrese +Wade +Xander +Alberto +Aryan +Baby +Bennett +Braeden +Brendon +Bruno +Camren +Colton +Danny +Derrick +Edgar +Elliott +Ezequiel +Ibrahim +Israel +Jaidyn +Jaime +Javon +Johnny +Junior +Khalil +Kristopher +Lewis +Maurice +Neil +Quentin +Reece +Ronan +Santiago +Sergio +Shea +Toby +Tomas +Trevon +Vincenzo +Zackary +Zander +Adonis +Alvin +Arjun +Arnav +Asher +Braydon +Bruce +Cade +Clayton +Corbin +Cyrus +Damion +Davion +Davon +Dawson +Douglas +Emmett +Enrique +Esteban +Eugene +Everett +Graham +Hudson +Hugh +Jomar +Jon +Josh +Julius +Karl +Kristian +Leon +Maddox +Marcello +Marquis +Matheus +Mohamed +Nathanael +Nikhil +Noel +Orlando +Raphael +Roman +Rowan +Ryder +Sawyer +Sincere +Taylor +Terrell +Tobias +Adriel +Aleksander +Allan +Allen +Amar +Axel +Beckett +Bobby +Branden +Camron +Cedric +Chance +Chauncey +Cristofer +Darien +Darius +Deven +Devyn +Dillan +Dominik +Dustin +Eamon +Eddy +Elliot +Emerson +Emiliano +Ernest +Ezra +Frankie +Gerald +Giancarlo +Gordon +Gustavo +Howard +Hugo +Ismael +Jabari +Jace +Jameson +Jayvon +Jimmy +Joey +Josue +Jovanni +Julien +Kaiden +Kamari +Kyler +Larry +Makhi +Marquise +Marvin +Mohammad +Morgan +Muhammad +Nico +Nomar +Omari +Phillip +Prince +Quincy +Raul +Rhys +Rodney +Roy +Saul +Skyler +Terrence +Tony +Trenton +Treyvon +Tyrell +Tyson +Wayne +Will +Winston +Zachery +Ryan +Matthew +Michael +Nicholas +Anthony +Joshua +William +Alexander +Andrew +John +Jacob +Jack +Tyler +Benjamin +Joseph +Christopher +Daniel +Ethan +James +David +Thomas +Dylan +Christian +Nathan +Aidan +Noah +Zachary +Samuel +Kevin +Jonathan +Robert +Justin +Gabriel +Connor +Evan +Kyle +Jason +Logan +Luke +Jayden +Brandon +Lucas +Elijah +Owen +Sean +Charles +Jordan +Aiden +Alex +Cameron +Isaiah +Angel +Adam +Colin +Austin +Gavin +Timothy +Mason +Brian +Jake +Nathaniel +Eric +Ian +Jackson +Liam +Jose +Peter +Caleb +Dominic +Nicolas +Richard +Cole +Jaden +Patrick +Sebastian +Julian +Luis +Aaron +Antonio +Brendan +Henry +Hunter +Xavier +Jeremy +Jeremiah +Bryan +Chase +Vincent +Cooper +Steven +Devin +Jeffrey +Trevor +Carlos +Stephen +Maxwell +Brady +Joel +Mark +Shane +Edward +Hayden +Juan +Victor +Carter +Derek +Edwin +Jared +Paul +Spencer +Adrian +Cody +Giovanni +Isaac +Collin +Jaiden +Brayden +George +Miguel +Alejandro +Griffin +Bryce +Gregory +Quinn +Riley +Seth +Tristan +Josiah +Kenneth +Shawn +Blake +Diego +Jesse +Alexis +Braden +Marcus +Raymond +Andre +Dante +Harrison +Malachi +Max +Ayden +Declan +Erik +Landon +Leonardo +Omar +Theodore +Angelo +Cristian +Jorge +Hector +Andy +Colby +Garrett +Jesus +Jonah +Marco +Oliver +Ashton +Caden +Dillon +Drew +Eli +Nolan +Travis +Wyatt +Fernando +Mitchell +Scott +Brett +Carson +Damian +Damien +Elias +Frank +Jaylen +Jayson +Louis +Martin +Miles +Nasir +Peyton +Tanner +Alan +Avery +Brody +Lorenzo +Lukas +Philip +Rocco +Conor +Devon +Luca +Nikolas +Pedro +Preston +Troy +Ty +Braeden +Erick +Gianni +Grant +Johnny +Kai +Manuel +Mekhi +Rowan +Emmanuel +Javier +Johnathan +Kaleb +Leo +Mario +Myles +Ronald +Simon +Calvin +Corey +Donovan +Emanuel +Kayden +Keith +Micah +Parker +Sawyer +Trey +Zackary +Andres +Bradley +Casey +Cesar +Jakob +Jalen +Jay +Jomar +Julius +Kaden +Payton +Rohan +Aden +Arjun +Arthur +Damon +Dean +Douglas +Gage +Ivan +Jace +Jonas +Josue +Oscar +Rafael +Roberto +Alec +Allen +Amari +Camden +Chad +Conner +Dominick +Eddie +Eduardo +Eliel +Hudson +Johnpaul +Julio +Marc +Mateo +Maximilian +Morgan +Quincy +Raul +Ronan +Terrence +Ben +Brennan +Chance +Colton +Davon +Derrick +Dorian +Francis +Francisco +Graham +Holden +Israel +Jerry +Jonathon +Jovan +Kieran +Malcolm +Matteo +Melvin +Neil +Salvatore +Sam +Seamus +Sergio +Silas +Tucker +Amare +Amir +Baby +Bennett +Darren +Domenic +Duncan +Edgar +Ezra +Felix +Finn +Frederick +Giancarlo +Kaiden +Keegan +Lance +Maddox +Marcos +Maurice +Nathanael +Nelson +Nico +Quentin +Reid +Roman +Ryder +Shaun +Trenton +Tyrese +Wesley +Yandel +Zion +Abraham +Albert +Alberto +Alvin +Brayan +Brendon +Carl +Carmine +Corbin +Curtis +Dakota +Dandre +Devan +Donald +Dustin +Elliot +Elliott +Ezekiel +Gary +Harry +Isiah +Ismael +Jameson +Jaydon +Justice +Kelvin +Mohamed +Noel +Patryk +Phillip +Raphael +Rylan +Sincere +Terrell +Tobias +Tomas +Walker +Aditya +Ahmed +Ali +Allan +Antoine +Ari +Asher +Axel +Brock +Bruce +Camron +Cayden +Davis +Davonte +Dennis +Eamon +Eldin +Emmett +Enrique +Enzo +Fabian +Gianluca +Grady +Gunnar +Jamar +Jamari +Jamie +Jayvon +Joey +Jude +Kameron +Levi +Malik +Mathew +Pranav +Quintin +Ralph +Randy +Reese +Ricardo +Rory +Santiago +Tate +Toby +Tristen +Tyson +Wayne +Zane +Adan +Aedan +Ahmad +Ajay +Alden +Alessandro +Alexandre +Ariel +Armani +Arnav +August +Branden +Brent +Bryant +Caiden +Charlie +Craig +Dalton +Damion +Danny +Edison +Efrain +Ellis +Emmet +Everett +Hamza +Izaiah +Jadyn +Jaidyn +Jakai +Jakub +Jaquan +Jarrett +Javon +Jaxon +Jaylon +Jefferson +Jermaine +Jerome +Joao +Johan +Jon +Kanye +Kenny +Kody +Lamar +Larry +Leon +Leonard +Lincoln +Malakai +Marquis +Marquise +Massimo +Moises +Muhammad +Orion +Orlando +Pierce +Quinton +Ray +Rishi +Ruben +Santino +Savion +Shamar +Skyler +Thiago +Todd +Tony +Travon +Trevon +Tyshawn +Vladimir +Walter +Willem +Wilson +Xander +Xzavier +Yadiel +Zachery +Zackery +Michael +Matthew +Ryan +Nicholas +Anthony +Alexander +Joseph +William +Jacob +John +Andrew +Daniel +Christopher +Joshua +Tyler +Jack +Benjamin +James +David +Ethan +Thomas +Jonathan +Nathan +Christian +Dylan +Logan +Aidan +Noah +Zachary +Justin +Luke +Samuel +Jayden +Evan +Jason +Connor +Brandon +Gabriel +Kevin +Owen +Robert +Lucas +Sean +Gavin +Mason +Aiden +Elijah +Cameron +Kyle +Isaiah +Jordan +Charles +Nathaniel +Patrick +Jake +Xavier +Colin +Jackson +Liam +Eric +Adam +Alex +Angel +Brian +Julian +Sebastian +Hunter +Aaron +Caleb +Chase +Luis +Cole +Jose +Peter +Bryan +Ian +Jaden +Timothy +Tristan +Jeremiah +Dominic +Antonio +Richard +Adrian +Victor +Carlos +Henry +Austin +Cooper +Edward +Juan +Carter +Derek +Brady +Vincent +Brendan +Giovanni +Steven +Nicolas +Shane +Mark +Isaac +Jeremy +Maxwell +Oliver +Devin +Jeffrey +Miguel +Max +Paul +Griffin +George +Landon +Stephen +Trevor +Wyatt +Cody +Jaiden +Spencer +Marcus +Brayden +Jesse +Quinn +Ayden +Jared +Hayden +Bryce +Joel +Shawn +Josiah +Luca +Theodore +Alexis +Caden +Diego +Riley +Seth +Gregory +Johnathan +Alejandro +Carson +Jonah +Kenneth +Malachi +Preston +Kaden +Dante +Elias +Blake +Damian +Dillon +Marco +Raymond +Travis +Andre +Colby +Conor +Damien +Edwin +Frank +Harrison +Hector +Leonardo +Mathew +Avery +Conner +Cristian +Devon +Dominick +Eli +Jaylen +Julius +Kai +Kaleb +Myles +Omar +Andy +Garrett +Gianni +Javier +Manuel +Mario +Miles +Oscar +Ty +Wesley +Alec +Drew +Josue +Nolan +Ricardo +Troy +Brennan +Chris +Jalen +Jorge +Lorenzo +Parker +Scott +Alan +Angelo +Braden +Brody +Erik +Francisco +Louis +Mitchell +Yandel +Braeden +Collin +Corey +Emanuel +Grant +Jace +Jaeden +Jude +Leo +Mateo +Rafael +Ryder +Sawyer +Albert +Andres +Arthur +Declan +Donovan +Emmanuel +Felix +Ivan +Jay +Jayson +Jesus +Micah +Zackary +Allen +Anderson +Calvin +Casey +Cayden +Cesar +Finn +Kristian +Matteo +Nikolas +Roberto +Rocco +Simon +Ali +Asher +Brenden +Brett +Charlie +Dakota +Dennis +Fernando +Francis +Frederick +Gage +Jameson +Keegan +Keith +Levi +Lukas +Marcos +Mekhi +Peyton +Rowan +Tanner +Vincenzo +Amir +Bradley +Camden +Cristopher +Donald +Douglas +Elliot +Holden +Jakob +Nathanael +Nickolas +Pedro +Phillip +Ralph +Rylan +Sam +Talan +Trey +Zion +Ashton +Branden +Clayton +Colton +Derrick +Dustin +Israel +Izaiah +Kieran +Lawrence +Martin +Nasir +Philip +Rohan +Roman +Ronan +Todd +Tucker +Zane +Addison +Antoine +Ariel +Aryan +Caiden +Camren +Chad +Craig +Curtis +Darius +Domenic +Eduardo +Emmett +Enzo +Erick +Everett +Ezra +Greyson +Harold +Juelz +Kaiden +Kelvin +Kenny +Marc +Melvin +Nico +Pablo +Pierce +Quincy +Randy +Raul +Rhys +Ronald +Sergio +Shaun +Tony +Trevon +Aden +Alessandro +Amari +Armani +Bennett +Carl +Carmine +Damion +Danny +Darren +Dawson +Desmond +Donte +Fabian +Harry +Javon +Jermaine +Jomar +Jonas +Julien +Kayden +Lamar +Malik +Maxim +Maximus +Neil +Orlando +Ray +Ronnie +Russell +Skyler +Terrence +Tobias +Tyson +Wilson +Zaire +Zander +Aedan +Alberto +Aleksander +Brendon +Byron +Camrin +Cyrus +Darwin +Davian +Dean +Deven +Efrain +Elliott +Emerson +Esteban +Filip +Finnian +Francesco +Frankie +Franklin +Freddy +Grayson +Gunnar +Gustavo +Hudson +Ismael +Jamir +Jayvon +Jimmy +Joaquin +Johnny +Jovanni +Julio +Justice +Justus +Khalil +Kobe +Lance +Lucian +Marlon +Marshall +Marvin +Mateusz +Maurice +Maximilian +Moises +Morgan +Muhammad +Raphael +Rashad +Roger +Romeo +Rory +Salvatore +Shamar +Siddharth +Sincere +Taylor +Trent +Walter +Warren +Will +Aarav +Abel +Ahmed +Alexandre +Arjun +Aron +Beckett +Ben +Bernard +Brayan +Bruce +Bryson +Carmelo +Damon +Dario +Deandre +Demetrius +Dereck +Devan +Dwayne +Eddie +Edgar +Edison +Enrique +Gary +Giancarlo +Giovanny +Glenn +Jadiel +Jadon +Jahki +Jairo +Jamari +Jamison +Jan +Jaydin +Jaylon +Jeffery +Jerry +Joe +Jon +Kacper +Kamari +Kameron +Karl +Kolby +Kole +Lachlan +Lamont +Landen +Layne +Lee +Lincoln +Luciano +Lucien +Maddox +Makai +Makhi +Massimo +Mauricio +Mohammed +Mustafa +Nazir +Nigel +Niko +Patryk +Phoenix +Quentin +Ramon +Rashaun +Rayan +Reed +Reid +Reynaldo +Ricky +Rodolfo +Roy +Samir +Santiago +Seamus +Sebastien +Terrance +Terrell +Tomas +Trenton +Tyree +Tyrell +Yadiel +Zain +Michael +Matthew +Ryan +Joseph +Anthony +Alexander +William +Nicholas +Christopher +Jacob +Daniel +Joshua +Jayden +Jack +John +Andrew +Tyler +Ethan +Nathan +James +Logan +Benjamin +Noah +David +Thomas +Samuel +Aiden +Evan +Christian +Dylan +Justin +Jonathan +Lucas +Zachary +Gabriel +Connor +Owen +Gavin +Aidan +Luke +Liam +Elijah +Kevin +Robert +Jason +Jordan +Charles +Mason +Cameron +Angel +Brandon +Jackson +Sean +Nathaniel +Isaiah +Jake +Xavier +Kyle +Caleb +Eric +Jeremiah +Austin +Alex +Aaron +Jose +Adam +Brian +Julian +Ian +Henry +Sebastian +Patrick +Colin +Jaden +Chase +Cole +Luis +Peter +Timothy +Adrian +Brady +Dominic +Antonio +Isaac +Oliver +Tristan +Giovanni +Josiah +Jeremy +Brendan +Derek +Edward +Hunter +Maxwell +Richard +Carlos +Max +Nicolas +Bryan +Cooper +Mark +Shane +Miguel +Brayden +Steven +George +Dante +Paul +Bryce +Devin +Trevor +Ayden +Jeffrey +Cody +Jaiden +Blake +Brody +Joel +Juan +Spencer +Stephen +Vincent +Caden +Landon +Marcus +Riley +Victor +Wyatt +Alexis +Carter +Edwin +Quinn +Diego +Erik +Elias +Hayden +Jared +Jonah +Raymond +Eli +Luca +Nolan +Omar +Parker +Collin +Kenneth +Travis +Andre +Marco +Shawn +Jesse +Kayden +Malachi +Oscar +Theodore +Cristian +Drew +Frank +Lukas +Peyton +Preston +Dominick +Jorge +Leonardo +Colton +Gregory +Hector +Javier +Martin +Miles +Rafael +Erick +Garrett +Jesus +Lorenzo +Louis +Mario +Pedro +Avery +Brennan +Damien +Harrison +Jameson +Josue +Mateo +Nasir +Philip +Rocco +Sawyer +Scott +Seth +Tanner +Amir +Arthur +Calvin +Colby +Declan +Griffin +Johnathan +Julius +Manuel +Troy +Braeden +Camden +Devon +Donovan +Everett +Grant +Ivan +Lincoln +Nico +Ricardo +Rohan +Wesley +Angelo +Asher +Conor +Emmanuel +Finn +Francisco +Jayson +Julio +Kaleb +Micah +Alan +Andres +Andy +Cayden +Dillon +Gage +Jalen +Kaiden +Leo +Matteo +Maximilian +Phillip +Reid +Roberto +Roman +Russell +Anderson +Braden +Cesar +Edgar +Grayson +Jaylen +Kaden +Luciano +Marc +Ronald +Rowan +Sam +Santiago +Simon +Trenton +Ty +Amari +Bradley +Carson +Chris +Damian +Dean +Emanuel +Fernando +Giuseppe +Graham +Israel +Jace +Mekhi +Trey +Zion +Ali +Ariel +Aryan +Brett +Chance +Corey +Felix +Grady +Hudson +Jakob +Keegan +Maximus +Nehemiah +Nikolas +Randy +Ryder +Aedan +Alec +Aydan +Bennett +Boden +Brenden +Bruno +Darius +Eduardo +Fabian +Jayce +Julien +Keith +Kelvin +Khalil +Kieran +Lawrence +Maddox +Malik +Mathew +Ronan +Shaun +Silas +Taylor +Trent +Tucker +Yadiel +Yandel +Zyaire +Ahmed +Alejandro +Alessandro +Amare +Arjun +August +Carmelo +Casey +Dakota +Damon +Emerson +Ezequiel +Gianni +Ibrahim +Jadiel +Jamison +Javon +Jonas +Kai +Krish +Matheus +Maurice +Mohamed +Myles +Nathanael +Nelson +Noel +Orlando +Quincy +Romeo +Salvatore +Skyler +Tyrell +Zackary +Aden +Alijah +Allen +Ari +Ashton +Axel +Aydin +Conner +Craig +Darren +Derrick +Donald +Elliott +Finnegan +Gary +Gustavo +Harry +Isiah +Ismael +Izaiah +Jaylin +Jayvon +Jermaine +Johan +Jorden +Jude +Justice +Kameron +Marcos +Massimo +Melvin +Morgan +Nickolas +Omari +Raul +Reed +Roger +Sergio +Sincere +Zackery +Zane +Abraham +Alberto +Alexavier +Armani +Ayaan +Ben +Benicio +Charlie +Cristopher +Damion +Danny +Dennis +Domenic +Elliot +Elvin +Felipe +Francis +Greyson +Holden +Hugo +Jaeden +Jamal +Jefferson +Jerry +Joaopedro +Johnny +Jomar +Jonathon +Juelz +Karl +Kason +Kellen +Kenny +Kymani +Leland +Leon +Marquis +Marvin +Nazir +Quentin +Quinton +Ramon +Raphael +Rory +Ruben +Toby +Tomas +Tyshawn +Walter +Willie +Zander +Aarav +Albert +Alden +Alvin +Arnav +Billy +Branden +Braydon +Brock +Brodie +Bryson +Camron +Carlo +Carmine +Clayton +Cory +Cristiano +Cristofer +Deacon +Derick +Dhruv +Dimitri +Dominik +Douglas +Elian +Eliel +Eliezer +Emiliano +Emmet +Enzo +Frederick +Giancarlo +Gianluca +Guilherme +Isaias +Jacoby +Jaedyn +Jakub +Jandel +Jariel +Jasper +Jaxon +Jay +Jean +Jeffery +Jeriel +Jovan +Jovanni +Kamari +Kamil +Keven +Kristopher +Lance +Larry +Lars +Levi +Makhi +Marcel +Marlon +Mauricio +Messiah +Milo +Mitchell +Neil +Nikhil +Porter +Quintin +Ray +Rodrigo +Ryley +Santino +Seamus +Shayne +Stefan +Syncere +Talon +Teagan +Terrance +Tobias +Tristian +Xander +Yahir +Zain +Michael +Matthew +Ryan +Alexander +Jacob +Christopher +William +Anthony +Nicholas +Andrew +Joseph +Jayden +Daniel +John +Tyler +Jack +Joshua +Ethan +James +Dylan +Aiden +Logan +Nathan +Benjamin +David +Justin +Gabriel +Noah +Thomas +Samuel +Jonathan +Gavin +Lucas +Christian +Evan +Zachary +Elijah +Luke +Owen +Connor +Aidan +Angel +Robert +Jason +Kevin +Jordan +Mason +Brandon +Julian +Jake +Jackson +Cole +Charles +Liam +Cameron +Sean +Chase +Nathaniel +Caleb +Alex +Isaiah +Xavier +Henry +Jeremiah +Adam +Jose +Kyle +Adrian +Colin +Patrick +Sebastian +Austin +Brady +Brian +Carter +Luis +Peter +Aaron +Brayden +Ian +Isaac +Richard +Dominic +Steven +Blake +Eric +Oliver +Tristan +Jaden +Jeremy +Shane +Ayden +Landon +Max +Bryan +Hunter +Devin +Jaiden +Josiah +Timothy +Edward +Antonio +Cooper +Joel +Maxwell +Wyatt +Brody +Caden +Brendan +Carlos +Edwin +Giovanni +Mark +Hayden +Paul +Collin +Derek +Kenneth +Luca +Cody +Parker +Marcus +Miguel +Nicolas +Victor +Jaylen +Riley +Trevor +Eli +Griffin +Juan +Diego +Harrison +Jonah +Bryce +Elias +Vincent +Javier +Kaleb +Kayden +Nolan +Yadiel +George +Jeffrey +Carson +Cristian +Grant +Mateo +Omar +Avery +Colton +Finn +Lukas +Miles +Rocco +Shawn +Travis +Andre +Dante +Jesse +Jorge +Kaden +Rafael +Spencer +Alexis +Dean +Leo +Santiago +Alejandro +Andres +Declan +Emmanuel +Fernando +Frank +Hector +Hudson +Oscar +Ricardo +Stephen +Camden +Jadiel +Lorenzo +Theodore +Conor +Devon +Drew +Julius +Malachi +Marco +Raymond +Sawyer +Troy +Andy +Braeden +Cayden +Garrett +Grayson +Jared +Kaiden +Lincoln +Preston +Asher +Colby +Corey +Dennis +Dominick +Erik +Graham +Ivan +Maximilian +Maximus +Tanner +Amari +Arthur +Brennan +Cesar +Charlie +Donovan +Francisco +Gregory +Julien +Mitchell +Myles +Nasir +Nikolas +Philip +Randy +Ryder +Seth +Amir +Anderson +Ashton +Felix +Jace +Jesus +Josue +Louis +Maddox +Quinn +Ronan +Scott +Silas +Walter +Alan +Albert +Calvin +Chris +Damon +Eduardo +Gage +Johnathan +Tucker +Aden +Ali +Allen +Elliot +Everett +Gianni +Harry +Jacoby +Jakob +Jameson +Jaxon +Jude +Keegan +Keith +Kieran +Mario +Micah +Rohan +Shaun +Trent +Tyson +Wesley +Yariel +Braden +Brett +Carmine +Damien +Jayson +Jerry +Justice +Kelvin +Leonardo +Reid +Savion +Simon +Tiago +Zion +Aaden +Abraham +Alessandro +Angelo +Braydon +Bruce +Casey +Dane +Dillon +Dustin +Emanuel +Emilio +Esteban +Finnegan +Grady +Greyson +Ishaan +Izaiah +Johan +Kai +Kobe +Leon +Matteo +Maurice +Nelson +Pedro +Peyton +Phillip +Quincy +Rowan +Rylan +Salvatore +Seamus +Tyrell +Yandel +Zaire +Aditya +Adriel +Adrien +Armani +Beckett +Bradley +Brenden +Camren +Chance +Dalton +Damian +Donald +Erick +Jay +Jimmy +Jonas +Juelz +Kareem +Kenny +Kymani +Manuel +Marc +Marcel +Martin +Maxim +Melvin +Nathanael +Nico +Pablo +Phoenix +Romeo +Sam +Sincere +Taylor +Trey +Alvin +Axel +Brodie +Bryson +Carmelo +Conner +Corbin +Craig +Domenic +Douglas +Edgar +Eliezer +Emerson +Ezekiel +Ezra +Francis +Gary +Gunnar +Jaeden +Jaidyn +Jakub +Jaxson +Jermaine +Kacper +Kamari +Keaton +Kellen +Lachlan +Lawrence +Makai +Malik +Marcello +Matheus +Mekhi +Mohammed +Omari +Orlando +Pierce +Raul +Roman +Ronald +Russell +Sergio +Todd +Tyshawn +Aarush +Ahmed +Alijah +Ari +Arjun +Aydin +Braedan +Caiden +Callum +Camron +Desmond +Dorian +Efrain +Enzo +Ezequiel +Frederick +Giancarlo +Glenn +Hugo +Israel +Jamir +Javon +Johnny +Jovan +Julio +Kevon +Khalil +Landen +Leandro +Levi +Luciano +Makhi +Maksim +Marvin +Mathew +Miller +Milo +Muhammad +Raphael +Roberto +Terrell +Trevon +Ty +Vincenzo +Wilson +Xander +Abel +Addison +Aedan +Alec +Amogh +Ansh +Aryan +August +Beau +Bennett +Brayan +Brooks +Bruno +Carl +Cash +Curtis +Damion +Danny +Darius +Davion +Domenico +Donte +Elliott +Emery +Gerald +Gino +Graydon +Holden +Jadon +Jaime +Jalen +Jamie +Jamil +Jariel +Jasper +Jayce +Jaylon +Jayvon +Jefferson +Joe +Josh +Jovanni +Jowell +Kameron +Keagan +Kent +Killian +Kody +Kristopher +Leland +Lucian +Malakai +Mariano +Misael +Mohamed +Moises +Nathanial +Nigel +Noel +Phineas +Pranav +Quentin +Quintin +Ralph +Ramon +Reed +Reese +Remy +Roger +Rory +Santino +Stefan +Steve +Syed +Terrance +Thiago +Tobias +Tomasz +Vikram +Weston +Wolfgang +Yash +Zackery +Zane +Zavier +Zyaire +Michael +Ryan +Alexander +Matthew +Jayden +Ethan +William +Anthony +Joshua +Christopher +Nicholas +Daniel +Jacob +Joseph +James +Benjamin +Andrew +Tyler +John +Aiden +David +Jack +Gabriel +Nathan +Samuel +Dylan +Evan +Logan +Noah +Christian +Liam +Lucas +Justin +Jonathan +Gavin +Luke +Connor +Charles +Jackson +Zachary +Kevin +Mason +Elijah +Thomas +Robert +Chase +Brandon +Julian +Owen +Jason +Xavier +Aidan +Cameron +Isaiah +Cole +Kyle +Colin +Jordan +Adam +Jake +Sebastian +Adrian +Angel +Brayden +Henry +Nathaniel +Caleb +Sean +Landon +Jose +Josiah +Austin +Hunter +Carter +Jeremiah +Luis +Oliver +Tristan +Eric +Isaac +Luca +Patrick +Alex +Aaron +Cooper +Peter +Edward +Dominic +Giovanni +Wyatt +Max +Brady +Ian +Brian +Antonio +Brody +Maxwell +Nicolas +Eli +Richard +Vincent +Ayden +Bryan +George +Jeremy +Jadiel +Blake +Bryce +Elias +Jaden +Joel +Marcus +Mark +Paul +Timothy +Carlos +Derek +Kenneth +Devin +Trevor +Edwin +Jaiden +Quinn +Victor +Hayden +Jeffrey +Juan +Parker +Riley +Steven +Brendan +Griffin +Stephen +Cody +Miles +Caden +Cayden +Harrison +Cristian +Damien +Grant +Kayden +Matteo +Nolan +Spencer +Diego +Miguel +Theodore +Colton +Omar +Rocco +Alan +Julius +Raymond +Collin +Preston +Rafael +Shane +Shawn +Alejandro +Damian +Gregory +Jaxon +Jonah +Yadiel +Ashton +Charlie +Jayson +Kai +Kaleb +Kieran +Wesley +Braden +Dante +Declan +Drew +Emmanuel +Kaden +Levi +Mateo +Micah +Myles +Ricardo +Abraham +Andre +Asher +Brennan +Eduardo +Erick +Jacoby +Jameson +Jude +Luciano +Malachi +Mario +Oscar +Ty +Amir +Hudson +Izaiah +Jesus +Leo +Lorenzo +Malik +Peyton +Travis +Alexis +Andy +Arthur +Emanuel +Grayson +Hector +Ivan +Jaylen +Josue +Martin +Rohan +Sawyer +Shaun +Bradley +Brett +Devon +Dillon +Gianni +Graham +Jace +Kaiden +Keegan +Ryder +Scott +Zion +Aaden +Angelo +August +Calvin +Camden +Carson +Frank +Grady +Javier +Jaxson +Jorge +Landen +Louis +Lukas +Maddox +Marco +Noel +Santiago +Silas +Simon +Zackary +Albert +Anderson +Andres +Bennett +Danny +Donald +Donovan +Enzo +Erik +Ezequiel +Finn +Gage +Israel +Jesse +Johnathan +Kauan +Krish +Leonardo +Maximilian +Maximus +Pablo +Roman +Tyson +Zane +Aden +Alec +Alessandro +Armani +Bryson +Cesar +Corey +Dean +Garrett +Harry +Jasper +Jimmy +Johnny +Jonas +Keith +Marcos +Mekhi +Neil +Reed +Tyshawn +Vincenzo +Aditya +Amari +Arjun +Brendon +Bruce +Conor +Francisco +Jared +Jay +Judah +Kameron +Marc +Mitchell +Nico +Phillip +Quincy +Randy +Russell +Trent +Tristen +Yandel +Ali +Alvin +Aryan +Beckett +Braeden +Byron +Chance +Colby +Darius +Darren +Desmond +Dominick +Dominik +Dustin +Dwayne +Edgar +Elliott +Emmett +Fabian +Felix +Greyson +Holden +Jamal +Janiel +Jermaine +Julio +Kymani +Lawrence +Lincoln +Mathew +Philip +Phoenix +Raphael +Roberto +Rowan +Tanner +Terrance +Weston +Yariel +Zaire +Aedan +Anish +Brayan +Cade +Caiden +Casey +Chace +Conner +Craig +Deandre +Dennis +Elliot +Felipe +Fernando +Finnegan +Frederick +Jaime +Jakob +Jariel +Jefferson +Jett +Johan +Jomar +Jovani +Juelz +Junior +Kelvin +Khalil +Kyler +Lamar +London +Nehemiah +Nickolas +Quentin +Ronan +Seth +Skyler +Tate +Taylor +Trey +Troy +Tucker +Valentino +Alexandre +Alexavier +Allan +Allen +Anton +Avery +Carl +Carmelo +Carmine +Chad +Curtis +Dakota +Darwin +Davion +Dexter +Douglas +Eliezer +Everett +Ezra +Filip +Francis +Geovanny +Giovanny +Grayden +Ibrahim +Isaias +Ishaan +Jadon +Jalen +Josh +Jovanni +Justice +Kareem +Kenny +King +Kingston +Konrad +Lucian +Makai +Manuel +Messiah +Nelson +Nikolas +Omari +Orlando +Paxton +Pranav +Santino +Terrence +Tiago +Vivaan +Walter +Xander +Xzavier +Yusuf +Abdullah +Adriel +Adrien +Agustin +Alberto +Ayaan +Bobby +Boden +Brodie +Chris +Cian +Colt +Corbin +Cyrus +Darryl +Davian +Davis +Derrick +Easton +Eddie +Emilio +Ezekiel +Francesco +Frankie +Franklin +Gary +Gunnar +Gustavo +Ismael +Jagger +Jamie +Jan +Jasiah +Jax +Jayvon +Jowell +Julien +Kamari +Karl +Kole +Leif +Leonidas +Malcolm +Massimo +Matheus +Mathias +Maurice +Milo +Mohamed +Moises +Morgan +Nasir +Nazir +Pedro +Prince +Rashad +Rayan +Reece +Reese +Reid +Ricky +River +Roger +Rory +Rylan +Sam +Sergio +Siddharth +Solomon +Stanley +Theo +Todd +Tomas +Tyrell +Zyair +Michael +Alexander +Jacob +Matthew +Ryan +Jayden +William +Noah +Christopher +Ethan +Anthony +Mason +Nicholas +Joseph +Tyler +James +Andrew +Joshua +Jack +Benjamin +Dylan +Aiden +Logan +Daniel +Nathan +Gabriel +Lucas +John +Liam +Gavin +David +Samuel +Evan +Jonathan +Christian +Jackson +Justin +Thomas +Zachary +Elijah +Connor +Owen +Luke +Charles +Jordan +Chase +Julian +Robert +Kevin +Xavier +Jeremiah +Cameron +Henry +Caleb +Adam +Jason +Angel +Sebastian +Brandon +Colin +Nathaniel +Aidan +Cole +Landon +Hunter +Sean +Eric +Adrian +Brayden +Kyle +Austin +Ian +Jake +Dominic +Alex +Ayden +Patrick +Eli +Luis +Oliver +Giovanni +Aaron +Carter +Isaiah +Jaden +Tristan +Vincent +Josiah +Cooper +Isaac +Blake +Wyatt +Bryan +Brody +Luca +Peter +Bryce +Max +Brian +Jose +Timothy +Antonio +Levi +Richard +Marcus +Mark +Carlos +Derek +Jaiden +Nolan +Joel +Parker +Brendan +Kayden +Leonardo +Steven +Cristian +Collin +Caden +Miles +Cody +Declan +Devin +Edward +Maxwell +Trevor +Brady +Colton +Diego +Elias +Jeffrey +Mateo +Dante +Jeremy +Sawyer +Alejandro +Hayden +Jesse +Paul +Shane +Grayson +Harrison +Johnathan +Jonah +Travis +Victor +Cayden +George +Hudson +Nicolas +Andre +Damian +Finn +Juan +Kaden +Riley +Malachi +Ryder +Shawn +Theodore +Asher +Jace +Lukas +Quinn +Stephen +Troy +Alexis +Carson +Erick +Graham +Gregory +Kaiden +Leo +Marco +Peyton +Rocco +Spencer +Amir +Ashton +Charlie +Jaylen +Matteo +Miguel +Caiden +Emanuel +Greyson +Griffin +Jayson +Julius +Preston +Raymond +Rhys +Andy +Braden +Calvin +Camden +Damien +Dean +Jadiel +Jakob +Javier +Kaleb +Keegan +Kenneth +Louis +Oscar +Rafael +Simon +Wesley +Arjun +Brennan +Colby +Drew +Eduardo +Emmett +Frank +Jameson +Jude +Lorenzo +Micah +Nikolas +Omar +Santiago +Yadiel +Edwin +Everett +Garrett +Josue +Mario +Ricardo +Zion +Angelo +Bennett +Conner +Conor +Dominick +Jaxon +Kai +Maximilian +Salvatore +Seth +Tucker +Vincenzo +Xander +Arthur +Beckett +Corey +Erik +Grant +Johan +Morgan +Nehemiah +Pedro +Reid +Yandel +Aarav +Amari +Axel +Brett +Derrick +Devon +Domenic +Donald +Donovan +Ezequiel +Gage +Holden +Ivan +Izaiah +Jariel +Jasper +Jayvon +Jesus +Maximus +Muhammad +Nico +Philip +Phillip +Rohan +Romeo +Scott +Tanner +Trent +Alan +Alec +Allen +Amare +Armani +Avery +Ayaan +Bradley +Cristopher +Dillon +Dustin +Emmanuel +Esteban +Ezra +Fernando +Grady +Jacoby +Jared +Jasiah +Jax +Jay +Jayce +Jean +Julien +Lincoln +Marcello +Martin +Niko +Sam +Ty +Walter +Xzavier +Ahmad +Albert +Anderson +Andres +Antony +Ari +Ariel +Bentley +Darren +Davian +Elliot +Enzo +Felix +Finnegan +Francisco +Gianni +Jonas +Jovani +Kelvin +Kieran +Luciano +Mitchell +Mohamed +Roman +Trey +Zackary +Zyaire +Arnav +Aryan +Beau +Bryson +Camryn +Carmine +Casey +Chance +Dalton +Darwin +Dennis +Desmond +Emilio +Gary +Hector +Jakub +Jomar +Keith +Kellen +Kian +Kobe +Makai +Malik +Manuel +Marc +Maximiliano +Myles +Nelson +Prince +Reed +Ronald +Rory +Sergio +Shaun +Silas +Taylor +Yariel +Abel +Aden +Alessandro +Ben +Brayan +Braylon +Brenden +Brennen +Bruce +Carmelo +Chace +Craig +Damon +Dane +Deandre +Douglas +Edgar +Finley +Francesco +Francis +Harris +Javion +Javon +Jaxson +Jefferson +Jimmy +Johnny +Jorge +Joziah +Julio +Kamari +Keanu +Kellan +Leon +London +Maddox +Marcos +Marlon +Mathias +Matias +Mohammed +Nathen +Nickolas +Orion +Quentin +Ramon +Raphael +Ricky +Roger +Ronan +Ryker +Savion +Tony +Tyson +Wilson +Yahir +Yusuf +Zachariah +Aaden +Abraham +Aditya +Adonis +Ahmir +Aleksander +Alessio +Ali +Alijah +Ameer +Anish +Aydin +Bode +Boden +Braydon +Brycen +Callan +Cesar +Cyrus +Dakota +Dallas +Danny +Darius +Davi +Demetrius +Dion +Eden +Elliott +Ellis +Ezekiel +Felipe +Fisher +Franklin +Gerald +Gerard +Ibrahim +Isaias +Israel +Jalen +Jamil +Jamir +Javian +Jayvien +Jayvion +Jensen +Jon +Jovan +Judah +Juelz +Justice +Kauan +Kendall +Kenny +Killian +Kristian +Kristopher +Leandro +Malakai +Malcolm +Matheus +Maxim +Messiah +Mohammad +Noel +Pablo +Quincy +Randy +Reece +Russell +Rylan +Samir +Santino +Sincere +Skyler +Tate +Tenzin +Theo +Tristen +Yamil +Zavier +Zayden +Alexander +Mason +Michael +Ryan +Jacob +William +Joseph +Anthony +Matthew +Jayden +John +Noah +Nicholas +Ethan +Aiden +Benjamin +Christopher +Jack +Andrew +James +Daniel +Nathan +Liam +Logan +Jackson +Joshua +Tyler +David +Lucas +Dylan +Gabriel +Christian +Evan +Connor +Jonathan +Elijah +Samuel +Thomas +Luke +Henry +Gavin +Chase +Charles +Cameron +Caleb +Jeremiah +Jordan +Owen +Brandon +Brayden +Jason +Robert +Zachary +Julian +Angel +Justin +Kevin +Landon +Oliver +Carter +Isaiah +Sebastian +Xavier +Austin +Nathaniel +Colin +Adam +Isaac +Hunter +Jake +Luis +Adrian +Aaron +Ian +Dominic +Josiah +Patrick +Tristan +Cole +Sean +Maxwell +Aidan +Blake +Parker +Eli +Jose +Cooper +Giovanni +Max +Vincent +Ayden +Alex +Colton +Jaiden +Kyle +Wyatt +Carlos +Declan +Richard +Antonio +Eric +George +Grayson +Theodore +Dante +Elias +Jaden +Jeremy +Jonah +Kayden +Luca +Steven +Brody +Bryce +Shane +Timothy +Brian +Jameson +Bryan +Joel +Nicolas +Brady +Edward +Jaxon +Leo +Miles +Paul +Wesley +Nolan +Riley +Ryder +Victor +Marco +Mark +Mateo +Juan +Levi +Derek +Devin +Elliot +Marcus +Rocco +Brendan +Jace +Jayce +Malachi +Cayden +Peter +Seth +Silas +Bradley +Carmelo +Carson +Emmanuel +Hayden +Ivan +Jaxson +Oscar +Grady +Hudson +Kaiden +Kenneth +Matteo +Maximus +Micah +Sawyer +Trevor +Caden +Cody +Finn +Gregory +Greyson +Jorge +Leonardo +Louis +Raymond +Santiago +Amir +Asher +Cristian +Diego +Drew +Edwin +Emmett +Jeffrey +Jesse +Kaden +Kai +Alejandro +Alexis +Angelo +Ashton +Garrett +Grant +Harrison +Jaylen +Jayson +Miguel +Myles +Omar +Quinn +Roman +Spencer +Amari +Gianni +Lorenzo +Preston +Ricardo +Stephen +Bennett +Jadiel +Nico +Armani +Avery +Bentley +Collin +Damian +Donovan +Everett +Graham +Maddox +Peyton +Alan +Brennan +Bryson +Caiden +Charlie +Damien +Frank +Jesus +Julien +Lukas +Albert +Anderson +Andre +Braden +Colby +Conor +Corey +Darren +Fernando +Israel +Javier +Julius +Lincoln +Ronan +Rylan +Travis +Yadiel +Brodie +Calvin +Chace +Chance +Dominick +Easton +Griffin +Kaleb +Kellan +Manuel +Marcello +Pedro +Shawn +Tyson +Zion +Andy +Arthur +Axel +Callum +Cash +Darius +Desmond +Elliott +Erick +Holden +Keegan +Kelvin +Kieran +Reid +Roberto +Ronald +Tanner +Troy +Vincenzo +Xander +Yandel +Beckett +Brycen +Camden +Dean +Douglas +Felix +Gunnar +Hector +Izaiah +Jaime +Javon +Johnathan +Jude +Justice +Martin +Maxim +Niko +Nikolas +Prince +Ramon +Rohan +Rowan +Trent +Tristen +Tucker +Weston +Adriel +Ali +Allen +Amare +Andres +Arjun +August +Braeden +Brenden +Bruce +Derrick +Dillon +Edgar +Emanuel +Ezekiel +Ezra +Finnegan +Francis +Ibrahim +Josue +Kameron +Luciano +Mario +Mathew +Pablo +Simon +Trey +Yusuf +Zackary +Aarav +Aden +Ahmed +Atticus +Callan +Conner +Darien +Davian +Devon +Domenic +Dustin +Enzo +Erik +Francisco +Gage +Giuseppe +Harry +Jasper +Judah +Kendall +Krish +Lachlan +Landen +Leland +London +Marc +Marcel +Matias +Mauricio +Mohammed +Muhammad +Nehemiah +Paxton +Pierce +Rayan +Reed +Rhys +Sam +Samir +Seamus +Sincere +Titus +Vihaan +Yariel +Zander +Abdullah +Adonis +Archer +Ari +Ariel +Arnav +Aryan +Aydin +Ben +Braydon +Cade +Chris +Cristopher +Cullen +Cyrus +Dallas +Dane +Dennis +Donald +Drake +Eduardo +Emilio +Ezequiel +Fabian +Gerard +Isiah +Ismael +Jalen +Jared +Jariel +Jax +Jay +Jefferson +Jensen +Jesiah +Johan +Kamden +Kellen +Kristian +Malcolm +Maximilian +Mekhi +Melvin +Mitchell +Nasir +Philip +Phillip +Pranav +Santino +Scott +Shamar +Siddharth +Thiago +Trevon +Walter +Wilfredo +Wilson +Zane +Ahmad +Alec +Alessandro +Avi +Ayaan +Boden +Byron +Camilo +Camren +Camron +Carmine +Chad +Clayton +Colten +Curtis +Damon +Danny +Davin +Devyn +Dexter +Elvin +Frankie +Gianluca +Guilherme +Gunner +Harper +Isaias +Ishaan +Ishan +Jacoby +Jaeden +Jakai +Jamal +Jamari +Jamison +Javien +Jaydan +Jayvian +Jayvon +Jerry +Jimmy +Joao +Joaquin +Joniel +Kareem +Keith +Kian +Kody +Lamar +Landyn +Larry +Malik +Marcos +Marquis +Mohamed +Nathanael +Nelson +Nikhil +Odin +Omari +Quentin +Quincy +Rafael +Randy +Raul +Rey +Ruben +Russell +Salvatore +Saul +Shea +Shmuel +Skyler +Tobias +Van +Walker +Yahir +Zack +Zaire +Zayden +Mason +Jacob +Michael +Liam +Ethan +Jayden +Anthony +Matthew +Noah +Ryan +William +James +Alexander +Joseph +Benjamin +Daniel +Logan +Aiden +John +Nicholas +Jack +Nathan +Jackson +Tyler +Lucas +Andrew +Elijah +Christopher +Joshua +Gabriel +David +Evan +Christian +Samuel +Luke +Dylan +Cameron +Henry +Zachary +Connor +Gavin +Caleb +Brandon +Sebastian +Chase +Charles +Owen +Carter +Brayden +Hunter +Jeremiah +Jonathan +Jordan +Justin +Thomas +Landon +Robert +Austin +Isaiah +Jason +Dominic +Xavier +Adam +Colin +Oliver +Kevin +Nathaniel +Adrian +Cole +Isaac +Angel +Tristan +Giovanni +Ian +Josiah +Wyatt +Eli +Julian +Ayden +Sean +Blake +Vincent +Kyle +Luca +Luis +Patrick +Aaron +Jake +Alex +Parker +Richard +Aidan +Derek +Jose +Max +Jeremy +Maxwell +Nolan +Peter +Antonio +Bryce +Cooper +Levi +Brian +Edward +Colton +George +Jaxon +Declan +Elias +Jace +Joel +Leo +Theodore +Eric +Kayden +Nicolas +Paul +Brady +Camden +Brody +Cayden +Grayson +Jameson +Harrison +Timothy +Bryan +Miguel +Stephen +Brendan +Damian +Greyson +Griffin +Jaiden +Jonah +Juan +Mark +Steven +Carlos +Kaleb +Omar +Trevor +Damien +Devin +Jayce +Kaiden +Mateo +Miles +Frank +Lukas +Silas +Travis +Wesley +Bradley +Emmanuel +Hayden +Jaden +Jadiel +Jaxson +Jeffrey +Micah +Preston +Quinn +Santiago +Cody +Erik +Jesse +Rocco +Tanner +Avery +Caiden +Carson +Enzo +Kai +Malachi +Riley +Simon +Zion +Conner +Dante +Kaden +Keegan +Leonardo +Matteo +Ryder +Andre +Asher +Bennett +Danny +Dominick +Elliot +Everett +Louis +Maddox +Marco +Peyton +Amari +Caden +Collin +Dean +Drew +Edwin +Finn +Gregory +Marcus +Rylan +Shane +Alexis +Anderson +Bentley +Carmelo +Cristian +Felix +Grant +Hudson +Lincoln +Raymond +Rory +Scott +Victor +Weston +Alejandro +Angelo +Axel +Calvin +Emmett +Jesus +Josue +Maximus +Alan +Amare +Amir +Ashton +Bryson +Dillon +Gianni +Graham +Jay +Kenneth +King +Malik +Myles +Roman +Spencer +Tucker +Aarav +Braden +Donovan +Francisco +Lorenzo +Martin +Muhammad +Thiago +Abraham +Armani +Arthur +Colby +Iker +Ivan +Jaylen +Jorge +Julius +Nikolas +Noel +Oscar +Philip +Rowan +Seth +Shawn +Tristen +Troy +Xander +Alessandro +Ali +Andres +Andy +Chance +Dennis +Douglas +Easton +Eduardo +Elliott +Ezra +Garrett +Gianluca +Israel +Javier +Leon +Maximiliano +Nathanael +Reid +Rohan +Sam +Sawyer +Albert +Aleksander +Callum +Desmond +Diego +Ezequiel +Francis +Frederick +Holden +Jakob +Johnathan +Jovanni +Jude +Keith +Kellen +Mohammed +Rafael +Roberto +Seamus +Walter +Abel +Brennan +Carl +Casey +Charlie +Conor +Emanuel +Ezekiel +Fernando +Finnegan +Gunnar +Hamza +Jayson +Kieran +Mario +Nehemiah +Phillip +Pierce +Raphael +Rayan +Ricardo +Trent +Vihaan +Zaiden +Abdullah +Aden +Ahmed +Alec +Arnav +Chris +Corey +Davian +Devon +Gage +Ibrahim +Jamari +Jase +Jerry +Joaquin +Johnny +Joziah +Juelz +Kameron +Kendrick +Kobe +Lucian +Luciano +Manuel +Maximilian +Melvin +Nasir +Neil +Niko +Orion +Salvatore +Sincere +Tyson +Zane +Adriel +Allen +Ari +Arjun +Atticus +Augustus +Branden +Braydon +Callen +Cruz +Darius +Davi +Domenic +Donald +Dorian +Enrique +Francesco +Gael +Grady +Izaiah +Jadon +Jael +Jaime +Jariel +Jasper +Jerome +Johan +Jomar +Josh +Julio +Justice +Kayleb +Kian +Kingston +Kolby +Malcolm +Marshall +Massimo +Matias +Mike +Milo +Nico +Pablo +Pedro +Reed +Reilly +Romeo +Royce +Ryker +Sergio +Skyler +Trey +Ty +Vincenzo +Wade +Yadiel +Alexavier +Alexzander +Alijah +Allan +Aydan +Beckett +Braeden +Braxton +Bruce +Camilo +Camren +Camron +Carmine +Cesar +Cian +Colten +Corbin +Cristiano +Cullen +Davion +Dexter +Dominik +Drake +Dwayne +Emilio +Franklin +Gary +Guy +Hector +Ishaan +Ismael +Jacoby +Jamison +Jared +Javon +Jaxen +Jaxton +Jaycob +Jayvian +Jefferson +Jionni +Jon +Jovan +Julien +Kareem +Kellan +Kelvin +Landen +Landyn +Maison +Marcello +Marcos +Mathew +Mathias +Mayson +Messiah +Moises +Nikolai +Paxton +Phoenix +Prince +Quincy +Randy +Rashad +Reese +Rhys +Ronald +Ronan +Ruben +Russell +Samir +Siddharth +Stefan +Tate +Terrence +Toby +Tomas +Uriel +Valentino +Wilson +Yandel +Zack +Zackary +William +Mason +Jacob +Noah +Michael +Liam +Ethan +Joseph +Ryan +Dylan +Logan +Matthew +Anthony +Alexander +James +Lucas +Daniel +Jayden +Benjamin +Aiden +Andrew +Jackson +Joshua +Jack +John +Samuel +Gabriel +Nicholas +Nathan +David +Christopher +Carter +Evan +Luke +Elijah +Connor +Cameron +Owen +Julian +Tyler +Hunter +Henry +Christian +Jonathan +Thomas +Sebastian +Chase +Jeremiah +Isaac +Robert +Caleb +Kevin +Charles +Gavin +Oliver +Zachary +Eli +Blake +Dominic +Isaiah +Jordan +Landon +Brayden +Jason +Josiah +Xavier +Adrian +Austin +Nathaniel +Jaxon +Ian +Justin +Adam +Angel +Brandon +Jace +Tristan +Aaron +Parker +Kayden +Ayden +Colton +Levi +Colin +Edward +Giovanni +Wyatt +Alex +Leo +Max +Maxwell +Cole +Declan +Grayson +Peter +Jose +Luca +Camden +Nolan +Theodore +Brody +Kyle +Luis +Bryce +Jeremy +Cooper +Jake +Mark +Timothy +Brian +Richard +Vincent +Carlos +George +Jaxson +Jayce +Mateo +Elias +Nicolas +Paul +Brady +Greyson +Kaiden +Sean +Joel +Jonah +Patrick +Shane +Simon +Aidan +Bennett +Bryan +Juan +Leonardo +Steven +Wesley +Amir +Avery +Miguel +Miles +Harrison +Jeffrey +King +Preston +Jaden +Lorenzo +Riley +Silas +Dante +Eric +Everett +Hector +Hudson +Jayceon +Marcus +Ryder +Sawyer +Spencer +Trevor +Bradley +Finn +Kenneth +Quinn +Alan +Damian +Grant +Jameson +Antonio +Brendan +Cayden +Collin +Derek +Jude +Maddox +Matteo +Micah +Rocco +Victor +Bentley +Carson +Cristian +Frank +Jaiden +Jorge +Kaleb +Raymond +Rowan +Stephen +Alexis +Cody +Drew +Jase +Lincoln +Malachi +Marco +Myles +Thiago +Troy +Abel +Caden +Charlie +Elliot +Emmanuel +Lukas +Maximus +Nico +Santiago +Arthur +Ashton +Calvin +Dean +Ezra +Jesus +Kaden +Kai +Rylan +Scott +Travis +Xander +Alejandro +Devin +Ezekiel +Griffin +Reid +Roman +Santino +Zayden +Aarav +Andres +Angelo +Asher +Dillon +Edwin +Enzo +Erick +Felix +Gianni +Graham +Jayson +Karter +Manuel +Mathew +Abraham +Anderson +Andre +Bryson +Caiden +Colby +Corey +Emmett +Erik +Garrett +Gregory +Javier +Johnny +Keegan +Louis +Omar +Oscar +Rafael +Tanner +Zander +Zion +Albert +Ari +Armani +Axel +Carmelo +Dennis +Emanuel +Israel +Ivan +Marc +Milo +Muhammad +Nikolas +Ricardo +Tucker +Walter +Zaiden +Beckett +Chance +Damien +Dominick +Donovan +Elliott +Emerson +Harry +Hayden +Jaylen +Johnathan +Judah +Kingston +Leon +Luciano +Pedro +Quentin +Quincy +Salvatore +Arjun +Cesar +Dalton +Diego +Donald +Easton +Eduardo +Fabian +Francis +Giuseppe +Grady +Ibrahim +Jadiel +Jakob +Jax +Jefferson +Kamden +Keith +Leonard +Luka +Mario +Matias +Milan +Nelson +Rhys +Russell +Weston +Ahmed +Alden +Amari +August +Ayaan +Brooks +Clark +Desmond +Devon +Esteban +Francisco +Holden +Jacoby +Jalen +Jariel +Jay +Julien +Julius +Killian +Lawrence +Madden +Marshall +Martin +Mathias +Messiah +Mitchell +Pablo +Philip +Rayan +Romeo +Sergio +Trent +Vincenzo +Aden +Adrien +Alessandro +Andy +Braden +Brantley +Braxton +Brennan +Bruce +Clayton +Dexter +Domenic +Gage +Gianluca +Iker +Jaime +Jamison +Jaycob +Joaquin +Jovanni +Kellan +Kellen +Kristian +London +Maverick +Orion +Paxton +Peyton +Prince +Reed +Rory +Solomon +Tobias +Vivaan +Zackary +Zane +Zyaire +Abdiel +Aditya +Ahmad +Alec +Ali +Augustus +Boden +Brayan +Bryant +Camron +Carmine +Casey +Chris +Cruz +Curtis +Dane +Darren +Derrick +Dominik +Edgar +Emir +Franklin +Gideon +Graeme +Izaiah +Jared +Jasper +Javian +Jayvian +Jesse +Kameron +Keaton +Kelvin +Kristopher +Lucian +Makai +Malakai +Malcolm +Mohammed +Morgan +Neil +Rohan +Ronan +Seth +Sylas +Toby +Trenton +Tyson +Valentino +Walker +Yadiel +Yusuf +Aedan +Allan +Amar +Amare +Aryan +Aydin +Ben +Callen +Carl +Cash +Chandler +Channing +Dallas +Damon +Darius +Dashiell +Davi +Dax +Enrique +Ewan +Flynn +Frederick +Gael +Gary +Gunner +Hamza +Issac +Jair +Jan +Javien +Johan +Jovani +Julio +Kacper +Kalel +Kamari +Kendrick +Kieran +Kingsley +Kyrie +Leandro +Leland +Leonidas +Leroy +Lucien +Marcos +Matthias +Maximilian +Melvin +Nathanael +Nazir +Nehemiah +Noel +Phillip +Phoenix +Pierce +Pietro +Ramon +Randy +Raphael +Reese +Reyansh +Ryland +Sam +Samar +Shawn +Skylar +Skyler +Tate +Terrell +Thaddeus +Trey +Tyrell +Yariel +Mason +Noah +Alexander +Jacob +Liam +Michael +Logan +Benjamin +Anthony +William +Joseph +James +Matthew +Daniel +Ryan +Ethan +Lucas +Andrew +Owen +Jack +John +Dylan +Aiden +Jayden +Christopher +Gabriel +Nicholas +Nathan +Jackson +Luke +Sebastian +Elijah +David +Christian +Thomas +Evan +Cameron +Oliver +Samuel +Joshua +Henry +Carter +Connor +Hunter +Jeremiah +Landon +Tyler +Caleb +Charles +Dominic +Chase +Gavin +Julian +Jonathan +Robert +Austin +Zachary +Cole +Colton +Jaxon +Adrian +Luca +Grayson +Nathaniel +Brandon +Isaac +Parker +Adam +Jordan +Jace +Xavier +Josiah +Brayden +Isaiah +Theodore +Aaron +Blake +Colin +Declan +Eli +Leo +Kevin +Angel +Brody +Jason +Kayden +Maxwell +Nolan +George +Justin +Bryce +Camden +Elias +Patrick +Wyatt +Giovanni +Vincent +Cooper +Hudson +Jaxson +Luis +Ian +Edward +Levi +Sean +Brian +Max +Ayden +Jose +Jake +Nicolas +Ryder +Sawyer +Alex +Greyson +Aidan +Jameson +Tristan +Derek +Jayceon +Paul +Peter +Wesley +Carson +Leonardo +Richard +Eric +Miles +Victor +Cayden +Jeremy +Jonah +Kyle +Lincoln +Lorenzo +Asher +Carlos +Amir +Brady +Kaiden +Marcus +Matteo +Timothy +Antonio +Griffin +Harrison +Jaden +Juan +Mark +Bryan +Emmett +Jayce +King +Silas +Steven +Bradley +Drew +Preston +Bennett +Damian +Grant +Joel +Dean +Julius +Tucker +Weston +Alan +Kai +Kaleb +Maddox +Mateo +Myles +Raymond +Stephen +Angelo +Avery +Brendan +Devin +Gregory +Jase +Miguel +Riley +Dante +Ezra +Finn +Frank +Graham +Simon +Trevor +Jeffrey +Keegan +Malachi +Marco +Maximus +Micah +Nico +Omar +Bentley +Bryson +Calvin +Chance +Edwin +Elliot +Enzo +Everett +Ezekiel +Gianni +Jude +Kellan +Kenneth +Ashton +Elliott +Finnegan +Kaden +Rory +Shane +Spencer +Aden +Alec +Alejandro +Corey +Francis +Garrett +Ivan +Jaiden +Jasper +Jax +Karter +Philip +Quinn +Rafael +Rylan +Santiago +Zion +Axel +Brooks +Caiden +Charlie +Conor +Cristian +Diego +Donovan +Jay +Jesus +Josue +Louis +Lukas +Roman +Santino +Zayden +Abraham +Ali +Caden +Collin +Damien +Erick +Jadiel +Jesse +Oscar +Sam +Thiago +Walter +Abel +Anderson +Andre +Archer +Beau +Cody +Dominick +Donald +Emmanuel +Frederick +Holden +Iker +Leon +Matias +Muhammad +Noel +Ryker +Tanner +Travis +Abdullah +Albert +Andres +Arjun +Arthur +Braden +Conner +Emanuel +Israel +Javier +Johnathan +Luciano +Malcolm +Manuel +Odin +Paxton +Pedro +Ricardo +Rowan +Seamus +Seth +Xander +Amari +Ari +August +Dallas +Desmond +Dustin +Easton +Ellis +Felix +Gage +Gideon +Jayson +Johnny +Jorge +Lennox +Malik +Marshall +Ronan +Scott +Shawn +Troy +Zaire +Arnav +Ben +Carmelo +Colby +Corbin +Dalton +Davi +Douglas +Emerson +Erik +Ezequiel +Fabian +Grady +Hamza +Hayden +Kareem +Khalil +Kingston +Kyrie +London +Mario +Marvin +Milan +Nasir +Neymar +Phillip +Randy +Reed +Reid +Remy +Rocco +Skyler +Tobias +Yariel +Zain +Aarav +Abdiel +Adriel +Alessandro +Alexis +Andy +Armani +Boden +Brennan +Bruce +Chris +Cristiano +Cyrus +Danny +Davian +Dillon +Edgar +Fernando +Gunnar +Ibrahim +Jared +Jayvian +Jefferson +Justice +Kenny +Kieran +Luka +Maison +Martin +Mathias +Messiah +Mohammad +Nehemiah +Orlando +Rayan +Reyansh +Russell +Salvatore +Solomon +Taylor +Theo +Tomas +Tyson +Warren +Wilson +Zackary +Zane +Aleksander +Alfredo +Allen +Ayaan +Barrett +Beckett +Brantley +Braxton +Callan +Callen +Callum +Camron +Carmine +Castiel +Dominik +Edison +Eduardo +Finley +Franklin +Ismael +Jai +Jaime +Jalen +Jamie +Jean +Jeremih +Jon +Judah +Kamden +Keith +Kellen +Kelvin +Killian +Kymani +Leland +Lucian +Malakai +Maverick +Mitchell +Neil +Nickolas +Niko +Orion +Peyton +Porter +Prince +Raphael +Roberto +Romeo +Samir +Shaun +Tate +Tenzin +Vihaan +Vincenzo +Walker +Winston +Yadiel +Yusuf +Zander +Ahmad +Alden +Alessio +Allan +Ansh +Ayan +Benicio +Braeden +Brecken +Brycen +Byron +Cade +Camdyn +Camren +Carl +Cassius +Clayton +Colt +Cullen +Deandre +Dennis +Dimitri +Eden +Emiliano +Emilio +Enrique +Eugene +Giancarlo +Harold +Hector +Jakob +Javian +Jaycob +Jaylen +Jayvion +Jensen +Johan +Jovani +Julien +Kamren +Kian +Kristopher +Landen +Lawrence +Leighton +Leonel +Leonidas +Marcello +Marcelo +Mathew +Maximiliano +Milo +Mustafa +Nash +Nathanael +Nazir +Nikolai +Pablo +Pranav +Raheem +Rhys +River +Ronald +Stanley +Tiago +Trent +Trenton +Vivaan +Mary +Margaret +Helen +Dorothy +Elizabeth +Ruth +Catherine +Ethel +Evelyn +Louise +Frances +Lillian +Marion +Alice +Bertha +Marie +Virginia +Mildred +Thelma +Viola +Edna +Clara +Elsie +Beatrice +Edith +Eleanor +Grace +Gladys +Anna +Florence +Josephine +Gertrude +Marjorie +Rose +Anne +Bernice +Charlotte +Esther +Hazel +Mae +Nellie +Sarah +Ann +Betty +Julia +Myrtle +Agnes +Annie +Audrey +Christine +Hilda +Ida +Inez +Jeannette +Marian +May +Mary +Dorothy +Helen +Margaret +Evelyn +Elizabeth +Louise +Catherine +Ruth +Alice +Frances +Grace +Thelma +Gladys +Mildred +Virginia +Edith +Rose +Bernice +Josephine +Lillian +Marie +Beatrice +Elsie +Esther +Ethel +Edna +Eleanor +Florence +Katherine +Viola +Alma +Anna +Sarah +Agnes +Annie +Clara +Doris +Gertrude +Julia +Pearl +Vivian +Hazel +Ida +Mabel +Marion +Marjorie +Ann +Blanche +Ellen +Juanita +Marguerite +Nellie +Anne +Bertha +Charlotte +Emma +Fannie +Hilda +Jean +Laura +Lucille +Lucy +Madeline +Naomi +Pauline +Mary +Dorothy +Helen +Margaret +Elizabeth +Catherine +Evelyn +Virginia +Ruth +Lillian +Mildred +Frances +Thelma +Anna +Ethel +Louise +Marie +Alice +Gladys +Edna +Eleanor +Florence +Jean +Beatrice +Edith +Lucille +Marion +Marjorie +Bernice +Viola +Hazel +Katherine +Rose +Agnes +Annie +Bertha +Clara +Gertrude +Grace +Ann +Julia +Myrtle +Audrey +Cora +Elsie +Emma +Josephine +Laura +Marguerite +Pauline +Bessie +Harriet +Ida +Irene +Martha +Rosa +Doris +Eva +Kathryn +Mabel +Mae +Marian +Nellie +Pearl +Sarah +Alma +Cecelia +Daisy +Ella +Ellen +Geneva +Katharine +May +Vivian +Mary +Dorothy +Helen +Margaret +Elizabeth +Ruth +Catherine +Frances +Louise +Lillian +Thelma +Alice +Evelyn +Mildred +Florence +Gladys +Ethel +Anna +Irene +Virginia +Audrey +Beatrice +Esther +Jessie +Marie +Gertrude +Rose +Edith +Grace +Josephine +Julia +Anne +Bertha +Doris +Edna +Eleanor +Marion +Marjorie +Emma +Bernice +Charlotte +Elsie +Hazel +Naomi +Sarah +Viola +Agnes +Annie +Jane +Marguerite +Estelle +Jean +Kathryn +Lucille +Martha +Pauline +Sylvia +Barbara +Bessie +Clara +Emily +Eva +Mabel +Alma +Ann +Betty +Ellen +Laura +Pearl +Henrietta +June +Katharine +Katherine +Lois +Mae +Marian +Nellie +Patricia +Sara +Vivian +Mary +Dorothy +Margaret +Helen +Ruth +Elizabeth +Catherine +Frances +Louise +Evelyn +Thelma +Virginia +Alice +Mildred +Lillian +Marie +Anna +Ethel +Florence +Katherine +Gladys +Edith +Bernice +Edna +Eleanor +Sarah +Marion +Clara +Grace +Josephine +Jean +Marian +Elsie +Lucille +Marjorie +Anne +Martha +Nellie +Barbara +Doris +Jane +Julia +Alma +Esther +Pearl +Gertrude +Mabel +Pauline +Rose +Viola +Agnes +Hazel +Jeanette +Marguerite +Beatrice +Bertha +Bessie +Blanche +Charlotte +Emily +Laura +Lucy +Mamie +Anita +Audrey +Christine +Henrietta +Lois +Miriam +Muriel +Myrtle +Regina +Ruby +Shirley +Betty +Claire +Elisabeth +Hattie +Irene +Jennie +Juanita +Leona +Madeline +Mae +Rita +Vivian +Annie +Daisy +Emma +Estelle +Genevieve +Hilda +Ida +Kathleen +Lorraine +Nancy +Violet +Mary +Dorothy +Helen +Margaret +Elizabeth +Ruth +Evelyn +Frances +Virginia +Mildred +Catherine +Louise +Eleanor +Thelma +Anna +Bernice +Doris +Lillian +Marie +Edith +Ethel +Florence +Grace +Alice +Gertrude +Marion +Gladys +Rose +Rita +Esther +Jane +Martha +Anne +Agnes +Betty +Edna +Marguerite +Marjorie +Jean +Sylvia +Ann +Naomi +Pauline +Sarah +Charlotte +Elsie +Ida +Josephine +Julia +Miriam +Rebecca +Vivian +Bessie +Clara +Ellen +Theresa +Viola +Annie +Audrey +Beulah +Blanche +Emma +Alberta +Ella +Irene +Lois +Lorraine +Myrtle +Patricia +Pearl +Alma +Beatrice +Bertha +Christine +Hilda +Juanita +Katherine +Laura +Lucille +Mabel +Nancy +Ada +Barbara +Estelle +Inez +Madeline +Mamie +Dorothea +Isabel +Kathryn +Marian +May +Nellie +Winifred +Caroline +Carolyn +Constance +Dolores +Eloise +Emily +Eva +Genevieve +Harriette +Hazel +Jennie +Katharine +Lillie +Lottie +Lucile +Minnie +Norma +Phyllis +Roberta +Rosalie +Ruby +Sue +Mary +Margaret +Dorothy +Helen +Ruth +Elizabeth +Evelyn +Frances +Louise +Virginia +Thelma +Anna +Mildred +Catherine +Doris +Alice +Florence +Edith +Lillian +Marie +Katherine +Ethel +Edna +Jane +Audrey +Gertrude +Jean +Rita +Martha +Eleanor +Ellen +Gladys +Josephine +Anne +Grace +Marjorie +Bernice +Betty +Esther +Marion +Rose +Vivian +Hilda +Kathryn +Lois +Marguerite +Sarah +Kathleen +Mabel +Charlotte +Estelle +Harriet +Jeannette +Ann +Emma +Irma +Theresa +Hazel +Ida +Irene +Laura +Lorraine +Marian +Viola +Annie +Beatrice +Bessie +Emily +Nellie +Agnes +Barbara +Bertha +Elsie +Eva +Georgia +Geraldine +Inez +Juanita +Lucy +Miriam +Norma +Sylvia +Alberta +Alma +Beulah +Clara +Constance +Dorothea +Elaine +Ella +Julia +June +Lena +Lillie +Lucille +Nancy +Vera +Adele +Blanche +Cecelia +Eloise +Genevieve +Leona +Lucile +Madeline +May +Muriel +Naomi +Olive +Regina +Rosa +Sue +Winifred +Mary +Dorothy +Margaret +Helen +Frances +Elizabeth +Ruth +Catherine +Evelyn +Mildred +Alice +Virginia +Marie +Doris +Lillian +Louise +Anna +Ethel +Thelma +Eleanor +Edith +Bernice +Edna +Florence +Rose +Gertrude +Jean +Martha +Bertha +Marion +Marjorie +Gladys +Grace +Audrey +Esther +Ann +Jane +Katherine +Sarah +Agnes +Beatrice +Josephine +Marian +Pearl +Rita +Betty +Lucille +Anne +Elsie +Nancy +Vivian +Charlotte +Ellen +Marguerite +Clara +Hazel +Kathryn +Miriam +Irene +Barbara +Bessie +Constance +Ida +Lois +Theresa +Winifred +Annie +Emma +Estelle +Geraldine +Naomi +Nellie +Regina +Viola +Ada +Alma +Beverly +Henrietta +Janet +Julia +June +Lorraine +Lucy +Mae +Phyllis +Sylvia +Vera +Alberta +Blanche +Cecelia +Christine +Daisy +Dolores +Elaine +Hilda +Jeanne +Juanita +Minnie +Patricia +Rosetta +Genevieve +Gloria +Mamie +Myrtle +Olga +Pauline +Rebecca +Roberta +Rosalie +Anita +Caroline +Carrie +Delores +Georgia +Jeanette +Jessie +Joan +Kathleen +Madeline +Maude +Norma +Ola +Rachel +Mary +Dorothy +Margaret +Helen +Ruth +Elizabeth +Frances +Virginia +Evelyn +Mildred +Doris +Alice +Florence +Anna +Marie +Catherine +Eleanor +Thelma +Louise +Edith +Gertrude +Betty +Jane +Lillian +Barbara +Marion +Marjorie +Martha +Rose +Jean +Marguerite +Edna +Ethel +June +Pauline +Ann +Anne +Charlotte +Audrey +Ellen +Grace +Katherine +Marian +Bernice +Esther +Lorraine +Rita +Agnes +Beatrice +Josephine +Sarah +Shirley +Lucille +Annie +Bertha +Constance +Laura +Pearl +Elsie +Julia +Geraldine +Ida +Mabel +Norma +Vivian +Alma +Carolyn +Eloise +Emma +Irene +Jeanne +Kathryn +Sylvia +Theresa +Winifred +Alberta +Clara +Eileen +Gladys +Juanita +Myrtle +Naomi +Patricia +Ella +Emily +Genevieve +Hilda +Inez +Kathleen +Miriam +Elaine +Hazel +Phyllis +Regina +Violet +Bessie +Beverly +Dolores +Eva +Georgia +Mae +Sara +Selma +Victoria +Viola +Daisy +Elisabeth +Estelle +Janet +Joan +Lois +Loretta +Madeline +Mamie +Nellie +Nina +Roberta +Aileen +Blanche +Carrie +Cecilia +Erma +Florine +Jeanette +Lena +Lydia +May +Muriel +Rebecca +Sophie +Mary +Dorothy +Margaret +Helen +Elizabeth +Frances +Ruth +Evelyn +Virginia +Mildred +Doris +Catherine +Alice +Edith +Marion +Eleanor +Marie +Thelma +Anna +Bernice +Lillian +Jean +Betty +Barbara +Gladys +Florence +Louise +Ellen +Vivian +Ethel +Beatrice +Charlotte +Gertrude +Anne +Lorraine +Josephine +Martha +Jane +Katherine +Elsie +Esther +Lucille +Marjorie +Ann +Grace +Nancy +Rose +Sylvia +Annie +Audrey +Mabel +Marian +Phyllis +Shirley +Edna +Geraldine +Lois +Mae +Miriam +Agnes +Marguerite +Patricia +Rita +Sarah +Carrie +Eileen +Eva +Norma +Hazel +Jeanne +Laura +Bertha +Bessie +Georgia +Julia +Lucy +Pauline +Rosalie +Christine +Clara +Ella +June +Olive +Viola +Alma +Beulah +Blanche +Emily +Emma +Jeanette +Loretta +Myrtle +Inez +Irene +Kathryn +Muriel +Nellie +Pearl +Winifred +Ada +Adele +Cecelia +Elaine +Elisabeth +Estelle +Ida +Janet +Janice +Kathleen +Lottie +Nettie +Roberta +Adelaide +Constance +Erma +Harriet +Irma +Isabel +Isabelle +Jennie +Maxine +Olga +Rosemary +Teresa +Vera +Mary +Dorothy +Margaret +Helen +Ruth +Elizabeth +Mildred +Doris +Catherine +Evelyn +Frances +Virginia +Marie +Alice +Louise +Lillian +Marjorie +Thelma +Betty +Eleanor +Lois +Edith +Gladys +Jean +Barbara +Anna +Charlotte +Jane +June +Florence +Grace +Marion +Edna +Anne +Lucille +Bernice +Katherine +Shirley +Ethel +Pauline +Rita +Vivian +Beatrice +Elsie +Gertrude +Martha +Agnes +Josephine +Marguerite +Rose +Sarah +Ellen +Emma +Esther +Irene +Sylvia +Viola +Ann +Constance +Elaine +Nancy +Alma +Audrey +Hazel +Jeanne +Juanita +Norma +Ida +Julia +Lorraine +Marian +Annie +Kathleen +Patricia +Pearl +Carolyn +Clara +Eileen +Janet +Phyllis +Bessie +Henrietta +Irma +Jeannette +Naomi +Ada +Alberta +Bertha +Blanche +Dolores +Dorothea +Ella +Hilda +Joyce +Kathryn +Mae +Nellie +Sara +Anita +Christine +Estelle +Gwendolyn +Harriet +Inez +Jacqueline +Katharine +Laura +Mabel +Mamie +Marcia +Muriel +Myrtle +Natalie +Olive +Regina +Ruby +Theresa +Winifred +Adelaide +Adele +Caroline +Eunice +Fannie +Geraldine +Gloria +Joan +Miriam +Olga +Rosa +Rosemary +Rosetta +Bette +Beulah +Carol +Carrie +Cleo +Genevieve +Jennie +Lena +Lillie +Lottie +Nora +Rachel +Rebecca +Roberta +Teresa +Willie +Mary +Dorothy +Margaret +Helen +Elizabeth +Doris +Frances +Mildred +Evelyn +Ruth +Catherine +Louise +Virginia +Anna +Thelma +Betty +Lillian +Alice +Marjorie +Eleanor +Florence +Gladys +Martha +Ethel +Jean +Rose +Barbara +Edith +Grace +Gertrude +Jane +Katherine +Marie +Marion +Nancy +Ann +Audrey +Bernice +Agnes +Charlotte +Juanita +Patricia +Anne +Gloria +Josephine +Shirley +Edna +Irene +June +Lucille +Marguerite +Norma +Elsie +Vivian +Geraldine +Miriam +Jeanne +Julia +Rita +Sarah +Sylvia +Beatrice +Kathryn +Alma +Annie +Bessie +Ellen +Esther +Lois +Pearl +Elaine +Emma +Lorraine +Lucy +Dolores +Estelle +Hazel +Janet +Marian +Rosemary +Theresa +Alberta +Bertha +Clara +Constance +Emily +Kathleen +Pauline +Ada +Adele +Erma +Eva +Ida +Madeline +Rosa +Viola +Annette +Cora +Jeanette +Laura +Loretta +Naomi +Nellie +Rosalie +Althea +Carol +Ella +Geneva +Genevieve +Harriet +Irma +Muriel +Peggy +Phyllis +Priscilla +Sara +Violet +Blanche +Carolyn +Claire +Eileen +Henrietta +Hilda +Inez +Jennie +Mabel +Myrtle +Ruby +Suzanne +Veronica +Amelia +Antoinette +Daisy +Dorothea +Eloise +Eunice +Fannie +Gwendolyn +Hattie +Jacqueline +Justine +Katharine +Mae +Mattie +Minnie +Natalie +Olive +Rebecca +Roberta +Stella +Teresa +Winifred +Mary +Margaret +Dorothy +Helen +Ruth +Frances +Elizabeth +Doris +Mildred +Catherine +Evelyn +Betty +Virginia +Jean +Alice +Anna +Audrey +Louise +Marie +Bernice +Gloria +Edith +Gladys +Ann +Jane +Lillian +Lois +Thelma +Anne +Barbara +June +Nancy +Ethel +Patricia +Marjorie +Norma +Eleanor +Katherine +Shirley +Marion +Florence +Jeanne +Grace +Josephine +Marguerite +Vivian +Geraldine +Ida +Rose +Edna +Esther +Irene +Phyllis +Beatrice +Pauline +Charlotte +Elsie +Gertrude +Martha +Emma +Elaine +Ellen +Julia +Lorraine +Lucille +Rita +Ella +Marian +Pearl +Theresa +Eileen +Juanita +Kathleen +Muriel +Sarah +Sylvia +Agnes +Annie +Regina +Ruby +Bettie +Constance +Harriet +Hazel +Vera +Alma +Clara +Jessie +Kathryn +Margie +Miriam +Peggy +Bertha +Bessie +Carrie +Emily +Hilda +Inez +Jacqueline +Janet +Jeannette +Laura +Mamie +Violet +Blanche +Estelle +Eva +Joan +Mae +Nellie +Roberta +Rosemary +Viola +Wilhelmina +Winifred +Anita +Carol +Carolyn +Cecelia +Erma +Genevieve +Jennie +Lena +Lillie +Lucy +Madeline +Yvonne +Adeline +Arline +Caroline +Christine +Cora +Delores +Dolores +Fannie +Henrietta +Hope +Leola +Mabel +Marilyn +Mazie +Naomi +Natalie +Nina +Rebecca +Sue +Victoria +Mary +Dorothy +Margaret +Helen +Doris +Betty +Elizabeth +Ruth +Mildred +Frances +Catherine +Evelyn +Barbara +Jean +Virginia +Thelma +Alice +Louise +Anna +Florence +Gloria +Shirley +Gladys +Lillian +Patricia +Marjorie +Ethel +Marie +Jane +Lois +June +Emma +Marion +Nancy +Josephine +Eleanor +Martha +Rita +Anne +Lorraine +Edith +Edna +Juanita +Katherine +Sarah +Grace +Vivian +Ellen +Geraldine +Marian +Rose +Bernice +Jeanne +Julia +Pearl +Agnes +Ann +Audrey +Lucille +Marguerite +Elsie +Gertrude +Annie +Beatrice +Elaine +Phyllis +Sylvia +Kathleen +Eileen +Jacqueline +Laura +Rosemary +Esther +Viola +Blanche +Irene +Norma +Pauline +Bertha +Constance +Dolores +Kathryn +Mae +Ruby +Carolyn +Charlotte +Emily +Hazel +Janet +Joan +Lillie +Nellie +Roberta +Alma +Bessie +Beverly +Eunice +Ida +Joyce +Mamie +Miriam +Adele +Ernestine +Estelle +Fannie +Naomi +Peggy +Rosa +Theresa +Alberta +Claire +Clara +Daisy +Myrtle +Regina +Teresa +Vera +Eloise +Erma +Eugenia +Genevieve +Harriet +Hattie +Hilda +Jeanette +Madeline +Muriel +Rebecca +Willie +Winifred +Yvonne +Amelia +Anita +Bettie +Carol +Eleanora +Etta +Goldie +Irma +Isabelle +Leona +Lottie +Rosie +Sadie +Wilhelmina +Mary +Dorothy +Margaret +Helen +Betty +Elizabeth +Doris +Ruth +Catherine +Frances +Jean +Evelyn +Alice +Louise +Mildred +Patricia +Virginia +Barbara +Marie +Florence +Gloria +Anna +Thelma +June +Jane +Marion +Lillian +Nancy +Shirley +Lois +Eleanor +Bernice +Gladys +Marjorie +Audrey +Katherine +Ann +Juanita +Josephine +Norma +Marguerite +Anne +Ethel +Edith +Esther +Martha +Edna +Rose +Lucille +Pauline +Vivian +Annie +Elaine +Harriet +Julia +Marian +Pearl +Jacqueline +Phyllis +Charlotte +Gertrude +Jeanne +Lorraine +Peggy +Yvonne +Beatrice +Bertha +Elsie +Ida +Theresa +Constance +Ellen +Estelle +Hazel +Janet +Ruby +Agnes +Emma +Rita +Sylvia +Viola +Alma +Joan +Kathleen +Kathryn +Laura +Sarah +Emily +Grace +Irene +Loretta +Mabel +Miriam +Rosemary +Erma +Geraldine +Lillie +Rebecca +Anita +Bessie +Blanche +Eloise +Hattie +Hilda +Joyce +Laverne +Mae +Ada +Carol +Claire +Eileen +Gwendolyn +Madeline +Vera +Willie +Alberta +Carolyn +Cleo +Dolores +Dorothea +Ella +Fannie +Geneva +Jeanette +Myrtle +Naomi +Roberta +Rosetta +Annette +Antoinette +Cecelia +Clara +Ernestine +Eugenia +Eunice +Eva +Georgia +Lena +Maxine +Nellie +Violet +Beverly +Cornelia +Delores +Jennie +Jessie +Magnolia +Mamie +Nora +Odessa +Priscilla +Sophie +Susie +Teresa +Winifred +Mary +Margaret +Dorothy +Helen +Betty +Elizabeth +Ruth +Doris +Jean +Gloria +Frances +Evelyn +Catherine +Thelma +Alice +Patricia +Virginia +Marie +Mildred +Barbara +Shirley +Anna +Louise +Florence +Rose +Marjorie +June +Eleanor +Jane +Lillian +Bernice +Ethel +Edith +Martha +Ann +Nancy +Grace +Juanita +Marion +Jeanne +Katherine +Lois +Anne +Audrey +Gertrude +Lorraine +Norma +Edna +Esther +Marian +Julia +Gladys +Pauline +Vivian +Beatrice +Elaine +Ellen +Clara +Elsie +Rosemary +Charlotte +Pearl +Constance +Geraldine +Lucille +Mae +Phyllis +Sarah +Ida +Irene +Jacqueline +Josephine +Joyce +Kathleen +Mabel +Miriam +Peggy +Rita +Agnes +Annie +Eloise +Sylvia +Theresa +Carolyn +Marguerite +Ruby +Bertha +Dolores +Ella +Hilda +Inez +Joan +Kathryn +Leola +Lillie +Priscilla +Yvonne +Beverly +Christine +Delores +Janet +Laura +Muriel +Regina +Roberta +Sara +Teresa +Violet +Alma +Bessie +Carol +Caroline +Eileen +Emily +Goldie +Harriet +Hazel +Jeannette +Rosa +Viola +Blanche +Cora +Erma +Ernestine +Eva +Genevieve +Madeline +Margie +Vera +Amelia +Anita +Arlene +Bettie +Carrie +Clarice +Cornelia +Gwendolyn +Hattie +Irma +Leona +Loretta +Lula +Mamie +Mattie +Minnie +Naomi +Nellie +Rosemarie +Therese +Veronica +Mary +Dorothy +Betty +Margaret +Helen +Doris +Elizabeth +Ruth +Barbara +Jean +Gloria +Shirley +Frances +Alice +Catherine +Patricia +Mildred +Evelyn +Louise +Virginia +Anna +Jane +Grace +Marie +Thelma +Vivian +Rose +Florence +Jeanne +Marjorie +Martha +Marion +Nancy +Lillian +Lois +Gladys +Irene +Phyllis +Audrey +Dolores +Lucille +Marian +Ann +Josephine +Juanita +Pauline +Anne +Elaine +June +Bernice +Charlotte +Gertrude +Joan +Eleanor +Ethel +Agnes +Beatrice +Edith +Ellen +Julia +Esther +Lorraine +Kathleen +Laura +Norma +Annie +Constance +Edna +Katherine +Pearl +Rita +Marguerite +Viola +Elsie +Harriet +Joyce +Bertha +Clara +Kathryn +Marilyn +Alma +Beverly +Geraldine +Rosemary +Yvonne +Bessie +Christine +Emma +Jacqueline +Muriel +Ruby +Theresa +Blanche +Delores +Nellie +Sarah +Carolyn +Estelle +Janet +Lucy +Mabel +Peggy +Claire +Daisy +Eileen +Ernestine +Gwendolyn +Hazel +Loretta +Mae +Myrtle +Naomi +Teresa +Vera +Alberta +Anita +Arline +Eloise +Eunice +Eva +Georgia +Jennie +Leona +Olive +Bette +Cecilia +Erma +Fannie +Goldie +Ida +Ina +Janice +Joanne +Lillie +Lydia +Miriam +Natalie +Rebecca +Sara +Susan +Susie +Mary +Dorothy +Betty +Margaret +Helen +Barbara +Jean +Elizabeth +Doris +Patricia +Ruth +Frances +Shirley +Virginia +Gloria +Mildred +Catherine +Alice +Marie +Evelyn +Marjorie +Thelma +Anna +Audrey +Jeanne +Lillian +Lois +Louise +Rose +Lorraine +Anne +Gladys +Vivian +June +Nancy +Ethel +Edith +Eleanor +Dolores +Jane +Bernice +Joan +Phyllis +Ann +Florence +Katherine +Marion +Beverly +Elaine +Edna +Gertrude +Grace +Joyce +Pauline +Agnes +Josephine +Marian +Norma +Rosemary +Ruby +Sarah +Annie +Esther +Juanita +Kathryn +Lucille +Sylvia +Beatrice +Elsie +Jacqueline +Carolyn +Charlotte +Constance +Ellen +Geraldine +Irene +Martha +Rita +Hilda +Janet +Laura +Peggy +Christine +Emma +Estelle +Julia +Marguerite +Yvonne +Alma +Mabel +Theresa +Viola +Carrie +Emily +Harriet +Myrtle +Pearl +Alberta +Clara +Delores +Gwendolyn +Irma +Loretta +Miriam +Naomi +Nellie +Roberta +Vera +Bertha +Bessie +Genevieve +Hazel +Lena +Carol +Cora +Eileen +Eloise +Ernestine +Ida +Kathleen +Mamie +Margie +Maria +Maxine +Olive +Sally +Angela +Angelina +Anita +Blanche +Caroline +Cecelia +Claudia +Cornelia +Deloris +Erma +Eugenia +Helena +Jessie +Joanne +Lillie +Madeline +Marilyn +Mattie +Nora +Olivia +Rebecca +Rosa +Sara +Mary +Betty +Margaret +Dorothy +Doris +Helen +Jean +Barbara +Patricia +Elizabeth +Shirley +Frances +Ruth +Gloria +Evelyn +Catherine +Nancy +Alice +Joan +Virginia +Marie +Thelma +June +Louise +Dolores +Mildred +Marion +Audrey +Rose +Anne +Lillian +Phyllis +Bernice +Eleanor +Marjorie +Ann +Elaine +Grace +Jeanne +Anna +Lois +Vivian +Edna +Katherine +Marian +Martha +Beverly +Delores +Lorraine +Ethel +Florence +Gladys +Jane +Joyce +Juanita +Edith +Norma +Peggy +Theresa +Agnes +Annie +Ellen +Jacqueline +Rita +Geraldine +Josephine +Gertrude +Irene +Kathleen +Lucille +Charlotte +Constance +Rosa +Sarah +Alberta +Alma +Esther +Hazel +Kathryn +Laura +Carolyn +Christine +Elsie +Janet +Sylvia +Blanche +Pauline +Ramona +Viola +Emma +Gwendolyn +Marguerite +Yvonne +Beatrice +Georgia +Regina +Rosemary +Sally +Vera +Ada +Carol +Clara +Estelle +Hattie +Hilda +Janice +Jeanette +Joanne +Naomi +Nellie +Pearl +Roberta +Bertha +Bessie +Caroline +Eileen +Ella +Ernestine +Eva +Fannie +Harriet +Ida +Jacquelyn +Julia +Lena +Lillie +Loretta +Mabel +Madeline +Maxine +Muriel +Ruby +Wilma +Amelia +Arlene +Aurelia +Claire +Diana +Emily +Jeannette +Laverne +Mae +Maria +Marilyn +Sue +Susie +Suzanne +Teresa +Mary +Betty +Margaret +Dorothy +Doris +Barbara +Helen +Patricia +Elizabeth +Jean +Shirley +Joan +Dolores +Frances +Nancy +Ruth +Virginia +Gloria +Evelyn +Ann +Marie +Alice +Catherine +Marjorie +Thelma +Jane +Lillian +Delores +Louise +Mildred +Peggy +Anne +Jeanne +Joyce +Marion +Anna +Audrey +Juanita +June +Florence +Gladys +Lois +Bernice +Eleanor +Geraldine +Edith +Katherine +Rose +Julia +Charlotte +Lorraine +Norma +Sylvia +Joanne +Constance +Jacqueline +Martha +Beverly +Grace +Annie +Carol +Ethel +Janet +Phyllis +Rita +Edna +Josephine +Lucille +Marian +Rosemary +Ruby +Elaine +Emily +Pauline +Regina +Sarah +Agnes +Eileen +Ellen +Emma +Gertrude +Irene +Theresa +Alma +Christine +Erma +Viola +Vivian +Bertha +Elsie +Esther +Hazel +Marguerite +Roberta +Yvonne +Carolyn +Eloise +Patsy +Bessie +Claire +Ida +Jacquelyn +Winifred +Beatrice +Clara +Ella +Estelle +Kathleen +Laura +Sally +Sue +Cleo +Colleen +Dorothea +Georgia +Harriet +Helene +Hilda +Joann +Katharine +Kathryn +Marilyn +Rosa +Willie +Wilma +Alberta +Angela +Anita +Annette +Blanche +Carrie +Genevieve +Gwendolyn +Jeannette +Loretta +Madeline +Maria +Minnie +Naomi +Odessa +Olga +Rebecca +Romaine +Rosalie +Rosetta +Teresa +Mary +Betty +Barbara +Dorothy +Margaret +Patricia +Doris +Helen +Elizabeth +Jean +Joan +Dolores +Nancy +Shirley +Catherine +Frances +Gloria +Ruth +Virginia +Louise +Evelyn +Anne +Alice +Lois +Mildred +Rose +Delores +Marie +June +Audrey +Ann +Jacqueline +Lillian +Bernice +Juanita +Anna +Florence +Joyce +Marion +Thelma +Jeanne +Norma +Peggy +Phyllis +Sarah +Grace +Jane +Marilyn +Carolyn +Eleanor +Marjorie +Vivian +Edna +Ethel +Julia +Joanne +Martha +Charlotte +Lorraine +Theresa +Annie +Gertrude +Josephine +Edith +Ellen +Esther +Sylvia +Constance +Elaine +Emma +Gladys +Irene +Katherine +Yvonne +Beverly +Anita +Carol +Elsie +Geraldine +Kathryn +Marian +Rita +Gwendolyn +Hazel +Pauline +Sally +Agnes +Kathleen +Rosa +Rosemary +Sue +Alma +Beatrice +Carrie +Christine +Genevieve +Mabel +Marguerite +Regina +Ella +Harriet +Janet +Jeanette +Lucille +Myrtle +Winifred +Antoinette +Colleen +Eloise +Erma +Ernestine +Hilda +Jacquelyn +Janice +Katharine +Mamie +Marcia +Maxine +Roberta +Suzanne +Teresa +Cecelia +Daisy +Georgia +Henrietta +Iris +Jennie +Judith +Linda +Naomi +Patsy +Pearl +Priscilla +Rosetta +Ruby +Mary +Barbara +Betty +Margaret +Patricia +Dorothy +Joan +Doris +Jean +Helen +Shirley +Elizabeth +Nancy +Dolores +Delores +Frances +Gloria +Ann +Joyce +Ruth +Alice +Catherine +Jane +Evelyn +Lorraine +Mildred +Norma +Grace +Lois +Marie +Peggy +Joanne +Thelma +Virginia +Anne +June +Jacqueline +Janet +Constance +Edith +Louise +Rose +Audrey +Juanita +Florence +Jeanne +Martha +Phyllis +Anna +Marjorie +Ethel +Geraldine +Lillian +Beverly +Eleanor +Marion +Carol +Charlotte +Sylvia +Ellen +Gladys +Josephine +Katherine +Marilyn +Rita +Esther +Harriet +Kathryn +Sarah +Theresa +Vivian +Annie +Beatrice +Bertha +Edna +Marguerite +Ruby +Bernice +Clara +Elaine +Agnes +Christine +Marian +Pauline +Elsie +Julia +Patsy +Regina +Irene +Kathleen +Loretta +Lucille +Pearl +Roberta +Sally +Yvonne +Anita +Carolyn +Carrie +Cynthia +Ernestine +Hazel +Jacquelyn +Nellie +Suzanne +Alma +Arlene +Ella +Emma +Georgia +Janice +Laura +Lucy +Myrtle +Sheila +Velma +Angela +Eileen +Gertrude +Irma +Isabelle +Judith +Lenora +Marcia +Nina +Rosemary +Viola +Ada +Bettie +Connie +Corrine +Eloise +Emily +Gwendolyn +Ina +Jeanette +Maria +Marlene +Maxine +Naomi +Natalie +Priscilla +Rosa +Sadie +Teresa +Vera +Winifred +Mary +Barbara +Patricia +Jean +Joan +Margaret +Dorothy +Shirley +Betty +Doris +Elizabeth +Helen +Nancy +Delores +Gloria +Frances +Ruth +Evelyn +Joyce +Peggy +Dolores +Virginia +Ann +Alice +Jane +Janet +Audrey +Lois +Rose +Mildred +Anna +Phyllis +Beverly +Jeanne +Juanita +Lorraine +Marie +Eleanor +Jacqueline +Lillian +Catherine +Marjorie +Norma +Sarah +Anne +Charlotte +Florence +Grace +Josephine +June +Martha +Carolyn +Ethel +Joanne +Vivian +Bernice +Elaine +Geraldine +Marilyn +Pauline +Thelma +Constance +Gladys +Louise +Edith +Sylvia +Julia +Rita +Sally +Theresa +Annie +Ellen +Elsie +Irene +Katherine +Marian +Marion +Agnes +Beatrice +Emma +Lucille +Margie +Roberta +Ruby +Ida +Janice +Carol +Cora +Estelle +Esther +Gertrude +Kathleen +Laura +Naomi +Regina +Bertha +Edna +Joann +Judith +Loretta +Marguerite +Pat +Patsy +Rosa +Sandra +Yvonne +Alberta +Anita +Clara +Pearl +Diane +Georgia +Jessie +Miriam +Rosemary +Alicia +Bessie +Carole +Cynthia +Diana +Eileen +Emily +Geneva +Helene +Lucy +Madeline +Mae +Rosemarie +Sue +Willie +Alma +Annette +Bettie +Donna +Ella +Eunice +Faye +Genevieve +Harriet +Hazel +Hilda +Ina +Jacquelyn +Jeanette +Kathryn +Marcia +Marianne +Olga +Rachel +Teresa +Vera +Viola +Mary +Barbara +Patricia +Betty +Joan +Jean +Margaret +Dorothy +Shirley +Helen +Elizabeth +Doris +Nancy +Frances +Ruth +Delores +Gloria +Ann +Anne +Joyce +Virginia +Janet +Alice +Lois +Marie +Carol +Carolyn +June +Constance +Evelyn +Martha +Sylvia +Anna +Mildred +Dolores +Norma +Rose +Florence +Catherine +Marjorie +Ellen +Peggy +Phyllis +Audrey +Eleanor +Jacqueline +Juanita +Rita +Gladys +Jane +Joanne +Loretta +Louise +Thelma +Lillian +Lorraine +Marion +Bernice +Edith +Edna +Geraldine +Grace +Yvonne +Charlotte +Katherine +Sarah +Theresa +Christine +Elaine +Marian +Marlene +Hazel +Jeanne +Sally +Beverly +Alma +Arlene +Diane +Esther +Ethel +Jeanette +Josephine +Kathryn +Ruby +Agnes +Carole +Janice +Marilyn +Regina +Roberta +Vivian +Annie +Gertrude +Julia +Kathleen +Marguerite +Pearl +Sara +Wilma +Cora +Gwendolyn +Jeannette +Naomi +Pauline +Viola +Anita +Annette +Betsy +Clara +Elinor +Ella +Emma +Harriet +Jo +Joann +Lucille +Margie +Maureen +Myra +Suzanne +Ada +Georgia +Hilda +Kay +Muriel +Pat +Susan +Alberta +Beatrice +Bette +Connie +Deloris +Elsie +Emily +Ernestine +Eunice +Fannie +Geneva +Ida +Irene +Iris +Judith +Lillie +Lucy +Mabel +Marcia +Maxine +Miriam +Rosa +Rosemary +Rosetta +Sue +Vera +Mary +Barbara +Shirley +Patricia +Joan +Betty +Dorothy +Margaret +Doris +Jean +Nancy +Elizabeth +Helen +Delores +Ann +Gloria +Dolores +Frances +Catherine +Ruth +Alice +Evelyn +Norma +Joyce +Mildred +Audrey +Martha +Peggy +Vivian +Janet +Louise +Marie +Carol +Marjorie +Joanne +Grace +Phyllis +Beverly +Virginia +Elaine +Ellen +Jane +Juanita +Carolyn +Thelma +Anne +Constance +Eleanor +Marion +Lois +Sylvia +Yvonne +Edith +Geraldine +June +Rose +Charlotte +Eileen +Marlene +Katherine +Rita +Roberta +Edna +Ethel +Gladys +Irene +Lucille +Bernice +Diane +Janice +Josephine +Lorraine +Elsie +Florence +Jacqueline +Ruby +Agnes +Anna +Annie +Jeanne +Julia +Theresa +Carole +Lillian +Pauline +Sandra +Hazel +Kathleen +Sally +Suzanne +Anita +Beatrice +Gertrude +Judith +Marilyn +Sara +Gail +Susan +Donna +Emily +Emma +Ernestine +Esther +Eunice +Harriet +Ida +Jeannette +Loretta +Marian +Rosemary +Annette +Billie +Deloris +Laura +Mae +Naomi +Nina +Pat +Patsy +Pearl +Sarah +Betsy +Clara +Cynthia +Earline +Eloise +Eva +Inez +Jo +Judy +Laverne +Leona +Lillie +Margie +Marguerite +Maria +Maxine +Paula +Sheila +Vera +Adrienne +Alma +Blanche +Carrie +Cecelia +Celestine +Daisy +Gwendolyn +Hilda +Jessie +Kathryn +Kay +Marcia +Maureen +Minnie +Miriam +Nellie +Regina +Rosa +Rosie +Viola +Violet +Wanda +Willie +Wilma +Mary +Barbara +Shirley +Patricia +Joan +Betty +Dorothy +Margaret +Nancy +Jean +Doris +Elizabeth +Helen +Delores +Ann +Janet +Joyce +Frances +Ruth +Gloria +Dolores +Evelyn +Sylvia +Virginia +Carolyn +Anne +Carol +Phyllis +Alice +Mildred +June +Marie +Martha +Juanita +Catherine +Constance +Jane +Geraldine +Jacqueline +Joanne +Audrey +Beverly +Eleanor +Rose +Yvonne +Lois +Louise +Norma +Judith +Marjorie +Sally +Elaine +Elsie +Florence +Grace +Sandra +Ellen +Lorraine +Marion +Peggy +Roberta +Anna +Ethel +Vivian +Charlotte +Edna +Rita +Susan +Lillian +Marlene +Beatrice +Kathleen +Marilyn +Thelma +Bernice +Diane +Gwendolyn +Julia +Katherine +Agnes +Carole +Josephine +Loretta +Lucille +Suzanne +Theresa +Ida +Irene +Naomi +Sarah +Sheila +Arlene +Christine +Edith +Eileen +Emma +Harriet +Jeanette +Marcia +Rosemary +Alma +Annie +Bessie +Cynthia +Diana +Gail +Gladys +Jacquelyn +Laura +Marguerite +Paula +Clara +Claudette +Georgia +Janice +Jo +Joann +Kathryn +Laverne +Marian +Maureen +Patsy +Pauline +Rosetta +Anita +Annette +Bertha +Cornelia +Hazel +Marianne +Vera +Willie +Caroline +Claire +Connie +Deloris +Ernestine +Geneva +Jeanne +Kay +Wanda +Alberta +Blanche +Claudia +Edwina +Eloise +Emily +Esther +Eva +Faye +Gayle +Gertrude +Joy +Judy +Karen +Lenora +Maxine +Pat +Ruby +Sue +Teresa +Mary +Barbara +Shirley +Patricia +Joan +Nancy +Betty +Margaret +Jean +Helen +Dorothy +Elizabeth +Doris +Ann +Delores +Joyce +Carol +Sylvia +Frances +Gloria +Catherine +Ruth +Beverly +Evelyn +Anne +Carolyn +Mildred +Yvonne +Janet +Alice +Jane +Dolores +Norma +Virginia +Jacqueline +Joanne +Marie +Peggy +Juanita +June +Martha +Geraldine +Sandra +Eleanor +Florence +Marjorie +Charlotte +Roberta +Rose +Gladys +Louise +Phyllis +Janice +Edith +Judith +Lillian +Anna +Lorraine +Marilyn +Audrey +Constance +Elaine +Lois +Diane +Jeanne +Katherine +Ellen +Sally +Thelma +Edna +Kay +Marlene +Pearl +Vivian +Jo +Julia +Marian +Theresa +Annie +Carole +Christine +Elsie +Gail +Grace +Marion +Alberta +Gertrude +Harriet +Irene +Josephine +Annette +Joann +Judy +Loretta +Maxine +Patsy +Pauline +Susan +Suzanne +Beatrice +Eileen +Ethel +Kathleen +Linda +Sarah +Agnes +Arlene +Cynthia +Donna +Ernestine +Kathryn +Laverne +Lucille +Pat +Bernice +Clara +Claudia +Esther +Georgia +Hazel +Ida +Jeanette +Margie +Rita +Sue +Angela +Anita +Carrie +Gwendolyn +Jeannette +Jessie +Katharine +Laura +Marcia +Naomi +Rosa +Rosemary +Sara +Sheila +Bette +Cora +Deloris +Diana +Emma +Hilda +Iris +Irma +Marguerite +Rachel +Wanda +Willie +Alma +Bonnie +Cecelia +Charlene +Corrine +Dianne +Dixie +Ella +Geneva +Jill +Leona +Lillie +Marva +Monica +Myrna +Regina +Rosemarie +Rosetta +Ruby +Sharon +Valerie +Violet +Wilma +Mary +Barbara +Patricia +Shirley +Joan +Nancy +Jean +Margaret +Betty +Elizabeth +Helen +Dorothy +Carol +Doris +Joyce +Ann +Frances +Virginia +Delores +Gloria +Marie +Ruth +Yvonne +Sandra +Janet +Jacqueline +Judith +Carolyn +Evelyn +Mildred +Sylvia +Eleanor +June +Martha +Peggy +Anne +Catherine +Beverly +Jane +Florence +Juanita +Elaine +Alice +Lois +Anna +Dolores +Marjorie +Constance +Louise +Phyllis +Grace +Diane +Joanne +Linda +Rose +Edith +Thelma +Carole +Charlotte +Ellen +Geraldine +Gladys +Katherine +Roberta +Audrey +Donna +Theresa +Anita +Ethel +Janice +Marion +Norma +Kay +Lorraine +Marilyn +Sally +Vivian +Gail +Kathleen +Irene +Jeanette +Jeanne +Marlene +Sheila +Arlene +Joann +Marcia +Sarah +Margie +Paula +Susan +Annie +Christine +Eileen +Agnes +Elsie +Emily +Hazel +Lillian +Loretta +Lucy +Marian +Sue +Annette +Bernice +Eva +Harriet +Ida +Judy +Laura +Laverne +Marsha +Pat +Patsy +Rita +Ruby +Beatrice +Edna +Ella +Esther +Gwendolyn +Josephine +Marguerite +Marianne +Rebecca +Rosemary +Alberta +Claudette +Claudia +Irma +Maureen +Suzanne +Antoinette +Bertha +Bessie +Bette +Connie +Deloris +Jessie +Kathryn +Lillie +Miriam +Pauline +Regina +Alma +Blanche +Clara +Cynthia +Emma +Ernestine +Jo +Joy +Lucille +Maria +Naomi +Natalie +Rosetta +Viola +Willie +Angela +Betsy +Bobbie +Bonnie +Cleo +Deanna +Deborah +Diana +Jacquelyn +Jeannette +Julia +Lynne +Marva +Nina +Pearl +Rachel +Rhoda +Rosa +Rosalee +Sara +Sharon +Teresa +Toby +Mary +Barbara +Patricia +Margaret +Joan +Shirley +Nancy +Jean +Dorothy +Carol +Betty +Elizabeth +Joyce +Helen +Sandra +Janet +Doris +Delores +Frances +Judith +Ann +Beverly +Gloria +Carolyn +Catherine +Anne +Marie +Ruth +Yvonne +Phyllis +Sylvia +Alice +Susan +Virginia +Carole +Joanne +Geraldine +Jane +Janice +Jacqueline +Martha +Charlotte +Mildred +Linda +Eleanor +Evelyn +Sarah +Bernice +June +Roberta +Peggy +Rita +Diane +Dolores +Donna +Marjorie +Constance +Kathleen +Marlene +Rose +Elaine +Ellen +Jeanette +Pauline +Florence +Irene +Katherine +Gail +Juanita +Judy +Norma +Sally +Anita +Arlene +Audrey +Christine +Louise +Vivian +Elsie +Gladys +Grace +Harriet +Julia +Kathryn +Marcia +Marian +Marion +Suzanne +Josephine +Lillian +Rosalie +Theresa +Esther +Laura +Marguerite +Marilyn +Maxine +Thelma +Eileen +Ethel +Karen +Lois +Edith +Gertrude +Loretta +Patsy +Sue +Annie +Beatrice +Brenda +Edna +Gwendolyn +Lorraine +Rebecca +Agnes +Clara +Cynthia +Jacquelyn +Joann +Kay +Rosemary +Sharon +Claudette +Connie +Emily +Hazel +Ida +Jeannette +Lucille +Lucy +Lynne +Paula +Sheila +Anna +Annette +Cora +Diana +Eloise +Jeanne +Jo +Miriam +Regina +Ruby +Sara +Sondra +Bertha +Bettie +Cecelia +Clarice +Deloris +Henrietta +Margie +Maria +Marsha +Rosa +Sonja +Willie +Amy +Angela +Antoinette +Bette +Deborah +Ernestine +Estelle +Laverne +Maureen +Pearl +Priscilla +Viola +Blanche +Carrie +Cornelia +Dianne +Elinor +Emma +Geneva +Jessie +Katie +Lynn +Mae +Muriel +Nadine +Rosetta +Vera +Wilma +Mary +Barbara +Patricia +Shirley +Joan +Margaret +Nancy +Carol +Dorothy +Elizabeth +Joyce +Betty +Judith +Helen +Frances +Ann +Jean +Sandra +Gloria +Ruth +Doris +Delores +Catherine +Carolyn +Janet +Linda +Virginia +Alice +Carole +Anne +Geraldine +Phyllis +Susan +Diane +Jane +Elaine +Marie +Yvonne +Beverly +Joanne +Kathleen +Martha +Jacqueline +Norma +Constance +Mildred +Brenda +Evelyn +Sylvia +Donna +Anna +Ellen +Peggy +Janice +Katherine +Eleanor +Lois +Marilyn +Gail +Juanita +Marjorie +Rose +Judy +Charlotte +Jeanne +Anita +Edith +Louise +Audrey +Lillian +Sally +Dolores +Elsie +Marian +Sarah +Harriet +June +Bernice +Christine +Cynthia +Loretta +Marion +Roberta +Sharon +Suzanne +Theresa +Annette +Beatrice +Jeanette +Julia +Kathryn +Florence +Sheila +Lorraine +Ruby +Thelma +Arlene +Lynn +Marcia +Paula +Pauline +Rita +Sara +Connie +Emily +Gladys +Irene +Joann +Laura +Vivian +Ethel +Josephine +Maureen +Maxine +Rosemary +Agnes +Alma +Antoinette +Bette +Emma +Esther +Grace +Gwendolyn +Ida +Marlene +Olivia +Alberta +Annie +Bertha +Diana +Dianne +Eileen +Eunice +Jeannette +Jo +Karen +Kay +Laverne +Lucy +Marguerite +Miriam +Patsy +Andrea +Clara +Deanna +Edna +Hattie +Lynne +Marsha +Pearl +Rachel +Claudia +Ella +Gertrude +Joanna +Joy +Madeline +Myrna +Rosalie +Veronica +Wilma +Bonnie +Carmen +Caroline +Cecelia +Cecilia +Deloris +Ernestine +Georgia +Hazel +Lillie +Lucille +Mable +Maria +Penelope +Rebecca +Sondra +Sue +Violet +Amelia +Betsy +Blanche +Camille +Daisy +Dana +Delois +Eva +Gretchen +Helene +Hilda +Jacquelyn +Julie +Margo +Mattie +Merle +Muriel +Rosemarie +Rosetta +Viola +William +Willie +Mary +Barbara +Patricia +Joan +Margaret +Nancy +Joyce +Judith +Carol +Betty +Sandra +Shirley +Elizabeth +Linda +Jean +Dorothy +Gloria +Ann +Helen +Doris +Carolyn +Frances +Janet +Susan +Virginia +Ruth +Alice +Martha +Beverly +Bonnie +Brenda +Delores +Donna +Phyllis +Yvonne +Ellen +Jane +Carole +Catherine +Janice +Elaine +Marie +Anne +Diane +Joanne +Kathleen +Geraldine +Julia +Evelyn +Mildred +Charlotte +Judy +Jacqueline +Sharon +Louise +Rose +Eleanor +Gail +Sylvia +June +Marilyn +Marjorie +Karen +Katherine +Suzanne +Marion +Audrey +Florence +Sara +Cynthia +Lois +Roberta +Christine +Constance +Ethel +Kathryn +Peggy +Juanita +Norma +Theresa +Vivian +Diana +Irene +Kay +Dolores +Grace +Jeanette +Rita +Sally +Sarah +Anna +Arlene +Bernice +Jeanne +Josephine +Marcia +Marian +Marlene +Rosemary +Edith +Joann +Sheila +Jo +Laverne +Rebecca +Thelma +Annette +Gladys +Lillian +Loretta +Lucille +Annie +Eileen +Laura +Paula +Esther +Maxine +Pat +Lorraine +Marsha +Beatrice +Blanche +Deloris +Edna +Gertrude +Gwendolyn +Harriet +Maureen +Patsy +Sue +Agnes +Anita +Cornelia +Ernestine +Georgia +Jeannette +Lillie +Maria +Pauline +Priscilla +Regina +Ada +Bertha +Cecelia +Charlene +Clara +Emily +Eunice +Joy +Leslie +Lynda +Marguerite +Maryann +Muriel +Myrna +Pearl +Rosalie +Ruby +Valerie +Victoria +Adrienne +Alberta +Bette +Bettie +Caroline +Connie +Dora +Eva +Francine +Margo +Nina +Bessie +Claudia +Daisy +Deborah +Dianne +Elsie +Emma +Estelle +Geneva +Julie +Lynne +Mattie +Miriam +Olivia +Wanda +Wilma +Alma +Angela +Antoinette +Camille +Claudette +Deanna +Ella +Hazel +Ida +Iris +Jan +Jewel +Lena +Lucy +Lynn +Mabel +Madeline +Margie +Marianne +Naomi +Natalie +Ramona +Stephanie +Teresa +Velma +Wilhelmina +Mary +Barbara +Patricia +Margaret +Nancy +Joan +Judith +Sandra +Carol +Carolyn +Joyce +Betty +Linda +Dorothy +Elizabeth +Shirley +Gloria +Susan +Virginia +Jean +Ann +Ruth +Janet +Helen +Martha +Alice +Frances +Delores +Beverly +Diane +Donna +Doris +Carole +Joanne +Kathleen +Jacqueline +Yvonne +Phyllis +Catherine +Judy +Marie +Brenda +Evelyn +Jane +Janice +Sharon +Bonnie +Lois +Anne +Charlotte +Elaine +Karen +Eleanor +Peggy +Norma +Rose +Sylvia +Roberta +Mildred +Ellen +Katherine +Louise +Sarah +Dolores +Gail +Marilyn +Geraldine +June +Lillian +Constance +Diana +Marcia +Marion +Rita +Jeanne +Sally +Anna +Juanita +Julia +Lorraine +Vivian +Joann +Marjorie +Christine +Sue +Theresa +Anita +Arlene +Suzanne +Jeanette +Laura +Maureen +Pamela +Paula +Beatrice +Bernice +Charlene +Edith +Jo +Kathryn +Loretta +Rebecca +Rosemary +Sheila +Thelma +Cynthia +Ernestine +Ethel +Gwendolyn +Priscilla +Deborah +Esther +Florence +Jacquelyn +Kay +Sara +Agnes +Audrey +Claudia +Dianne +Grace +Josephine +Lynda +Annie +Betsy +Edna +Irene +Jeannette +Marlene +Eileen +Emily +Marian +Maxine +Ruby +Wanda +Annette +Gertrude +Joy +Laverne +Maria +Marsha +Miriam +Naomi +Valerie +Harriet +Katharine +Lucy +Pauline +Pearl +Veronica +Bette +Cecelia +Cora +Elsie +Emma +Ida +Pat +Penny +Toni +Carrie +Eunice +Faye +Francine +Hilda +Lucille +Muriel +Penelope +Rosa +Rosalie +Sondra +Caroline +Deloris +Estelle +Eva +Gladys +Hattie +Irma +Jackie +Lana +Lynn +Lynne +Maggie +Maryann +Nadine +Olivia +Patsy +Rosalind +Saundra +Victoria +Wilma +Alberta +Alma +Antoinette +Bertha +Beth +Carla +Cecilia +Connie +Darlene +Elinor +Georgia +Harriette +Iris +Joanna +Lela +Lillie +Madeline +Marguerite +Rhoda +Stephanie +Susanne +Thomasine +Andrea +Angela +Beverley +Carroll +Claire +Clarice +Dale +Deanna +Ella +Gayle +Glenda +Gretchen +Hazel +Helena +Jessie +Kathy +Lenora +Lola +Minnie +Molly +Myra +Myrtle +Nellie +Pearline +Polly +Regina +Roslyn +Viola +Mary +Barbara +Patricia +Margaret +Carol +Joan +Nancy +Linda +Sandra +Carolyn +Judith +Dorothy +Susan +Elizabeth +Betty +Shirley +Joyce +Jean +Gloria +Frances +Kathleen +Diane +Janet +Helen +Ann +Catherine +Carole +Delores +Donna +Virginia +Sharon +Anne +Karen +Alice +Judy +Ruth +Martha +Doris +Peggy +Katherine +Beverly +Jacqueline +Jane +Bonnie +Brenda +Phyllis +Marie +Ellen +Evelyn +Elaine +Marilyn +Yvonne +Charlotte +Diana +Gail +Janice +Mildred +Marjorie +Sheila +Christine +Florence +Geraldine +Joanne +Constance +Dolores +Grace +Lois +Louise +Theresa +Kathryn +Rose +Sally +Vivian +Loretta +Pamela +Rita +Sylvia +Joann +Julia +Eileen +Juanita +June +Marian +Norma +Roberta +Marcia +Sarah +Kay +Lillian +Jo +Lynn +Cynthia +Eleanor +Leslie +Suzanne +Audrey +Anita +Gwendolyn +Jeanne +Anna +Annette +Rosemary +Harriet +Marion +Thelma +Veronica +Arlene +Bernice +Bertha +Dianne +Edith +Marlene +Marsha +Caroline +Irene +Lorraine +Maureen +Priscilla +Rebecca +Annie +Emily +Gladys +Jeanette +Josephine +Lynda +Paula +Sue +Charlene +Joy +Sara +Cecelia +Clara +Emma +Ernestine +Georgia +Jeannette +Laverne +Lucille +Pat +Regina +Agnes +Bette +Eva +Marianne +Pauline +Penelope +Claudia +Hazel +Laura +Lynne +Stephanie +Victoria +Betsy +Deloris +Doretha +Edna +Ella +Margo +Myrna +Valerie +Vera +Wanda +Willie +Alma +Darlene +Elsie +Francine +Gertrude +Glenda +Jacquelyn +Katharine +Lillie +Marguerite +Maria +Patsy +Rachel +Alberta +Angela +Beatrice +Claire +Clarice +Claudette +Deborah +Esther +Ethel +Ida +Julie +Kathy +Maryann +Nina +Rosalind +Ruby +Andrea +Antoinette +Christina +Iris +Jennifer +Joanna +Lucy +Michele +Naomi +Olivia +Paulette +Saundra +Sherry +Wilma +Colleen +Connie +Cora +Eloise +Gracie +Henrietta +Johnnie +Lee +Lucinda +Margie +Margot +Pearl +Rosetta +Teresa +Terry +Billie +Blanche +Bobbie +Carmen +Carroll +Dora +Dorothea +Erma +Faith +Jan +Katrina +Lisa +Lydia +Madeline +Maxine +Muriel +Myra +Natalie +Nora +Portia +Robin +Rochelle +Rosa +Rosalie +Rosemarie +Sallie +Therese +Wendy +Winifred +Mary +Barbara +Patricia +Linda +Carol +Nancy +Judith +Sandra +Margaret +Susan +Carolyn +Elizabeth +Joan +Betty +Joyce +Sharon +Dorothy +Shirley +Diane +Donna +Kathleen +Janet +Karen +Ann +Virginia +Helen +Frances +Gloria +Jean +Ruth +Martha +Beverly +Carole +Anne +Catherine +Katherine +Jacqueline +Judy +Jane +Brenda +Pamela +Alice +Bonnie +Gail +Janice +Ellen +Phyllis +Elaine +Diana +Charlotte +Evelyn +Louise +Marie +Rita +Sylvia +Delores +Doris +Marilyn +Peggy +Joanne +Yvonne +Eileen +Sheila +Lillian +Marjorie +Sarah +Suzanne +Christine +Sally +Rose +Lois +Marcia +Constance +Cynthia +Geraldine +Julia +Kathryn +Roberta +Theresa +Joann +Gwendolyn +Loretta +Jo +Norma +Veronica +Dianne +Lynn +Jeanne +Maureen +Paula +Anita +Anna +Marian +Audrey +Dolores +Grace +Juanita +Rebecca +Eleanor +Leslie +Mildred +Rosemary +Harriet +Laura +Lorraine +Charlene +Claudia +June +Marsha +Sue +Victoria +Connie +Edith +Florence +Marguerite +Marion +Vivian +Arlene +Beatrice +Deborah +Jeannette +Lucille +Sherry +Thelma +Bette +Cecelia +Darlene +Esther +Gladys +Jeanette +Julie +Lynne +Maria +Maxine +Ruby +Sara +Caroline +Emily +Georgia +Irene +Josephine +Kay +Terry +Agnes +Annie +Cecilia +Cheryl +Emma +Lynda +Michelle +Patsy +Priscilla +Regina +Stephanie +Teresa +Valerie +Cassandra +Dale +Edna +Ella +Ernestine +Kathy +Laverne +Marianne +Michele +Muriel +Pauline +Penelope +Vera +Wanda +Annette +Antoinette +Deanna +Ethel +Hazel +Iris +Lucy +Marlene +Myra +Nina +Paulette +Sharron +Viola +Bonita +Carmen +Joy +Lee +Margie +Natalie +Pat +Pearl +Penny +Wendy +Adrienne +Andrea +Beth +Billie +Charles +Christina +Colleen +Gertrude +Ida +Jacquelyn +Lydia +Madeline +Meredith +Naomi +Olivia +Robin +Rosa +Rosalie +Toni +Wilma +Ada +Clara +Elinor +Eva +Glenda +Henrietta +Joanna +Johnnie +Margot +Maryann +Miriam +Renee +Sandy +Winifred +Angela +Bernice +Betsy +Camille +Carlene +Cathy +Claire +Dana +Dawn +Deloris +Dinah +Dora +Dorothea +Elsie +Fannie +Freda +Gayle +Harriett +Jackie +James +Jan +Lena +Leona +Lila +Lucinda +Michael +Rachel +Saundra +Velma +Willie +Alma +Bernadette +Bettie +Beverley +Bobbie +Claudette +Cora +Denise +Dona +Doreen +Erma +Eunice +Faith +Gale +Hattie +Jennifer +Jill +Kate +Katharine +Lola +Mae +Marcella +Margo +Myrtle +Rosalind +Rosetta +Thomasine +Valeria +Violet +Mary +Barbara +Patricia +Carol +Linda +Nancy +Margaret +Sandra +Susan +Carolyn +Judith +Sharon +Joan +Joyce +Elizabeth +Diane +Shirley +Dorothy +Donna +Betty +Janet +Gloria +Karen +Jean +Kathleen +Ann +Martha +Beverly +Helen +Frances +Pamela +Judy +Virginia +Janice +Catherine +Anne +Carole +Brenda +Delores +Ruth +Alice +Cheryl +Ellen +Bonnie +Jacqueline +Doris +Jane +Gail +Joanne +Cynthia +Elaine +Katherine +Phyllis +Kathryn +Marie +Marilyn +Diana +Evelyn +Peggy +Sally +Constance +Geraldine +Charlotte +Eileen +Sheila +Paula +Rita +Yvonne +Christine +Marcia +Marjorie +Rose +Suzanne +Theresa +Vivian +Jeanne +Sarah +Sylvia +Jo +Julia +Roberta +Deborah +Juanita +Lynn +Dolores +Lois +Lorraine +Marsha +Veronica +Claudia +Florence +Rebecca +Sue +Lillian +Louise +Maureen +Norma +Josephine +Andrea +Arlene +Marion +Lynda +Marian +Priscilla +Beatrice +Dianne +Grace +Laura +Mildred +Rosemary +Darlene +Edith +Gwendolyn +Jeanette +June +Leslie +Loretta +Stephanie +Victoria +Anna +Eleanor +Ernestine +Joann +Maria +Sherry +Audrey +Bernadette +Kathy +Marguerite +Pauline +Anita +Caroline +Ethel +Katharine +Penelope +Agnes +Annette +Cecelia +Connie +Georgia +Jacquelyn +Laverne +Lucille +Marlene +Rosa +Vera +Bette +Charlene +Julie +Penny +Sara +Bernice +Bettie +Esther +Francine +Jeannette +Kay +Lucy +Maxine +Patsy +Ruby +Saundra +Cassandra +Cecilia +Claire +Dale +Edna +Emily +Gayle +Gladys +Margo +Miriam +Nina +Paulette +Regina +Teresa +Thelma +Vicki +Wanda +Annie +Bertha +Bonita +Camille +Christina +Cornelia +Hattie +Jennifer +Jill +Joy +Wendy +Alma +Cathy +Clara +Dana +Eva +Faye +Harriet +Irene +Lynne +Michele +Rosalie +Terry +Angela +Joanna +Madeline +Meredith +Myra +Nadine +Olivia +Pearl +Robin +Sharron +Valerie +Viola +Wilma +Adrienne +Alicia +Antoinette +Beth +Carrie +Dawn +Deloris +Dianna +Genevieve +Gretchen +Helene +Inez +Lillie +Margie +Maryann +Renee +Rosetta +Toni +Carla +Cathleen +Celestine +Eloise +Elva +Eugenia +Eunice +Geneva +Gertrude +Glenda +Hilda +Ingrid +Iris +Irma +Jessie +Lee +Lenore +Lydia +Margery +Marianne +Marva +Melanie +Rachel +Rosalind +Stella +Willie +Winifred +Mary +Patricia +Barbara +Carol +Linda +Susan +Margaret +Sandra +Nancy +Carolyn +Judith +Sharon +Joyce +Diane +Donna +Shirley +Joan +Kathleen +Karen +Betty +Elizabeth +Gloria +Janet +Jean +Dorothy +Ann +Martha +Helen +Jacqueline +Judy +Brenda +Janice +Marilyn +Jane +Cheryl +Frances +Diana +Pamela +Ruth +Doris +Virginia +Catherine +Anne +Gail +Beverly +Bonnie +Ellen +Alice +Marie +Sarah +Yvonne +Elaine +Suzanne +Delores +Peggy +Sylvia +Katherine +Leslie +Louise +Phyllis +Christine +Evelyn +Joanne +Laura +Marjorie +Rita +Constance +Marcia +Carole +Jo +Eileen +Jeanne +Roberta +Gwendolyn +Maureen +Paula +Sheila +Kathryn +Lynn +Theresa +Cynthia +Sally +Dianne +Rosemary +Charlotte +Geraldine +Juanita +Rebecca +Sue +Vivian +Anita +Rose +Lois +Sara +Deborah +Joann +Julia +Lorraine +Marion +Mildred +Norma +Thelma +Andrea +Edith +Irene +Darlene +Lillian +Lynda +Marsha +Victoria +Charlene +Dolores +Eleanor +Marian +Regina +Veronica +Antoinette +Kathy +Kay +Laverne +Toni +Ethel +Gayle +Harriet +Priscilla +Sherry +Teresa +Annie +Arlene +Audrey +Joy +Julie +Lynne +Carla +Clara +Claudia +Connie +Florence +Lucy +Margie +Pauline +Annette +Bernadette +Christina +Emily +Emma +Georgia +Gertrude +Jennifer +Paulette +Valerie +Caroline +Cecelia +Dana +Denise +Jacquelyn +Jeanette +Maria +Marlene +Maxine +Michele +Pat +Ruby +Wanda +Dale +Grace +Robin +Saundra +Beatrice +Cecilia +Edna +June +Katharine +Lee +Anna +Betsy +Earline +Josephine +Lillie +Loretta +Olivia +Rosa +Rosemarie +Terry +Bernice +Dianna +Esther +Francine +Hattie +Janis +Jeannette +Lucille +Marianne +Naomi +Natalie +Sandy +Stephanie +Vicki +Amy +Angela +Ernestine +Eva +Gladys +Hazel +Helene +Ida +Jill +Leigh +Madeline +Marcella +Marguerite +Miriam +Patsy +Renee +Rosalind +Agnes +Alberta +Beth +Bette +Bettie +Carrie +Deanna +Gale +Gretchen +Henrietta +Janie +Johanna +Lauren +Michelle +Penelope +Roslyn +Adele +Adrienne +Bertha +Blanche +Bonita +Claire +Clare +Deloris +Doretha +Elisabeth +Ella +Eloise +Faye +Geneva +Gwen +Harriett +Helena +Inez +Iris +Jackie +Jewell +Joanna +Kristin +Laurie +Lena +Margery +Margo +Mattie +Melinda +Nina +Patty +Pearl +Rachel +Sallie +Sharron +Sheryl +Sonja +Tina +Yvette +Mary +Patricia +Barbara +Linda +Carol +Nancy +Sandra +Sharon +Susan +Margaret +Kathleen +Carolyn +Judith +Joyce +Diane +Joan +Karen +Donna +Shirley +Ann +Elizabeth +Jean +Gloria +Brenda +Catherine +Betty +Jane +Janet +Jacqueline +Janice +Beverly +Dorothy +Pamela +Martha +Frances +Cheryl +Joanne +Suzanne +Helen +Cynthia +Virginia +Ellen +Judy +Phyllis +Alice +Diana +Ruth +Anne +Bonnie +Kathryn +Marilyn +Christine +Elaine +Peggy +Gail +Carole +Sheila +Yvonne +Jo +Marie +Jeanne +Katherine +Constance +Eileen +Rita +Gwendolyn +Theresa +Anita +Delores +Lorraine +Marcia +Paula +Deborah +Lynn +Roberta +Sarah +Sylvia +Geraldine +Charlotte +Dianne +Laura +Marjorie +Evelyn +Rose +Julia +Vivian +Doris +Leslie +Maureen +Marian +Louise +Marion +Sherry +Maria +Jeanette +Lois +Paulette +Darlene +Juanita +Sally +Francine +Kathy +Rosemary +Veronica +Eleanor +Joann +Marsha +Charlene +June +Terry +Claudia +Connie +Marlene +Rebecca +Stephanie +Jacquelyn +Mildred +Sara +Bernice +Emily +Josephine +Lynda +Pat +Andrea +Harriet +Loretta +Teresa +Anna +Irene +Regina +Sue +Valerie +Victoria +Laverne +Norma +Priscilla +Arlene +Florence +Joy +Lynne +Thelma +Angela +Beth +Dolores +Ethel +Grace +Kay +Marguerite +Maxine +Saundra +Annette +Audrey +Edith +Elsie +Gladys +Lillian +Antoinette +Bernadette +Bonita +Cecelia +Deloris +Denise +Ernestine +Janie +Janis +Jennifer +Pearl +Toni +Vera +Wanda +Dana +Gretchen +Jackie +Lee +Margo +Sharron +Christina +Clara +Dale +Jeannette +Lisa +Lucy +Michele +Renee +Rosa +Rosalind +Rosetta +Sheryl +Agnes +Annie +Beatrice +Candace +Edna +Esther +Georgia +Hazel +Joanna +Pauline +Robin +Sandy +Sharyn +Alma +Carla +Caroline +Claudette +Colleen +Ella +Faye +Henrietta +Jill +Julie +Laurie +Marianne +Maryann +Muriel +Myra +Nadine +Nina +Nora +Ruby +Thomasine +Alberta +Alison +Bertha +Bette +Dawn +Emma +Eunice +Gayle +Madeline +Margie +Naomi +Patsy +Patti +Penelope +Velma +April +Carlene +Carrie +Cathy +Celestine +Eloise +Ida +Karin +Lauren +Lucille +Myrtle +Patty +Rachel +Rae +Rochelle +Sadie +Vicki +Althea +Betsy +Billie +Cecilia +Daisy +Deanna +Delois +Dona +Doreen +Earlene +Eugenia +Gale +Gertrude +Helene +Hope +Iris +Jan +Jessie +Kristine +Laurel +Lenore +Lucinda +May +Melody +Miriam +Nan +Penny +Rhoda +Rosemarie +Wendy +Wilhelmina +Linda +Patricia +Mary +Barbara +Susan +Sandra +Carol +Nancy +Margaret +Kathleen +Sharon +Diane +Carolyn +Judith +Karen +Donna +Elizabeth +Joyce +Brenda +Shirley +Pamela +Joan +Betty +Gloria +Janice +Ann +Beverly +Cynthia +Jean +Frances +Deborah +Jacqueline +Cheryl +Janet +Helen +Christine +Catherine +Jane +Dorothy +Phyllis +Martha +Ellen +Anne +Alice +Diana +Gail +Virginia +Judy +Bonnie +Ruth +Marilyn +Elaine +Katherine +Kathryn +Marie +Suzanne +Doris +Dianne +Geraldine +Jo +Sheila +Paula +Constance +Gwendolyn +Rita +Evelyn +Maureen +Delores +Marcia +Yvonne +Joanne +Lynn +Lorraine +Peggy +Sylvia +Anita +Carole +Lynda +Marsha +Laura +Theresa +Leslie +Juanita +Rosemary +Eileen +Charlotte +Louise +Maria +Roberta +Sherry +Marjorie +Paulette +Andrea +Jeanne +Laverne +Veronica +Anna +Charlene +Joann +Rose +Julia +Regina +Sally +Norma +Rebecca +Teresa +Claudia +Lois +Michele +Vivian +Grace +Janis +Stephanie +Annette +Jacquelyn +Francine +Irene +Kathy +Sara +Saundra +Thelma +Valerie +Connie +Darlene +Eleanor +June +Lynne +Audrey +Emily +Joy +Loretta +Marion +Maxine +Sue +Terry +Harriet +Madeline +Myra +Pauline +Priscilla +Antoinette +Arlene +Caroline +Ernestine +Victoria +Wanda +Bernice +Cassandra +Cathy +Cecelia +Cecilia +Christina +Dale +Edith +Ethel +Jan +Jennifer +Josephine +Marlene +Patsy +Pearl +Sarah +Edna +Jeanette +Jeannette +Lucy +Mildred +Nora +Carla +Esther +Florence +Gayle +Georgia +Julie +Lillian +Marian +Sheryl +Toni +Ruby +Vicki +Alma +Angela +Bernadette +Bonita +Denise +Dolores +Katharine +Kay +Marguerite +Sandy +Alicia +Bessie +Carmen +Ella +Jill +Maryann +Naomi +Penny +Agnes +Gale +Gertrude +Gladys +Iris +Renee +Rosa +Shelia +Sherrill +Vera +Annie +Beatrice +Bettie +Candice +Eunice +Henrietta +Holly +Margo +Marianne +Miriam +Muriel +Pat +Penelope +Rachel +Robin +Amelia +Beth +Carrie +Clare +Deloris +Dianna +Elsie +Faye +Lee +Lillie +Michelle +Rhoda +Toby +Vicky +Bette +Billie +Candace +Candy +Claire +Clara +Colleen +Corinne +Dana +Dona +Dorothea +Edwina +Emma +Fannie +Glenda +Gretchen +Hattie +Hazel +Helene +Ingrid +Janie +Lauren +Lena +Lisa +Lora +Lucille +Mae +Margery +Monica +Olivia +Portia +Rosemarie +Sharron +Sharyn +Sonja +Tanya +Viola +Willie +Adrienne +Alyce +Bertha +Betsy +Bobbie +Camille +Cindy +Dawn +Debra +Della +Dora +Doreen +Earlene +Elisabeth +Elise +Flora +Inez +Isabelle +Janine +Jessica +Karla +Laurel +Lelia +Lenora +Lolita +Lyn +Myrna +Myrtle +Natalie +Nina +Rhonda +Sheron +Sherrie +Stella +Susie +Wendy +Wilma +Linda +Mary +Patricia +Barbara +Susan +Margaret +Sharon +Nancy +Sandra +Carol +Diane +Kathleen +Carolyn +Brenda +Karen +Donna +Elizabeth +Judith +Deborah +Joyce +Pamela +Cynthia +Shirley +Janice +Ann +Jacqueline +Catherine +Joan +Betty +Frances +Janet +Beverly +Jean +Cheryl +Christine +Dorothy +Katherine +Gloria +Anne +Theresa +Jane +Sheila +Ruth +Helen +Diana +Ellen +Alice +Bonnie +Delores +Judy +Gail +Joanne +Elaine +Paula +Phyllis +Kathryn +Yvonne +Geraldine +Martha +Virginia +Lynn +Marie +Jo +Peggy +Marsha +Gwendolyn +Marilyn +Maureen +Suzanne +Sylvia +Rita +Doris +Dianne +Evelyn +Laura +Charlene +Charlotte +Paulette +Sarah +Teresa +Constance +Maria +Jeanne +Marcia +Regina +Victoria +Anita +Claudia +Stephanie +Eileen +Juanita +Lorraine +Lynda +Sherry +Louise +Kathy +Roberta +Rosemary +Vivian +Carole +Joann +Laverne +Mildred +Rose +Julia +Veronica +Arlene +Darlene +Leslie +Rebecca +Sally +Terry +Valerie +Lois +Marlene +Norma +Priscilla +Wanda +Anna +Antoinette +Irene +Jennifer +Marian +Sue +June +Marjorie +Bernadette +Francine +Grace +Saundra +Cassandra +Cecelia +Denise +Eleanor +Loretta +Renee +Angela +Marion +Michele +Andrea +Colleen +Florence +Harriet +Janis +Vicki +Ernestine +Ethel +Jacquelyn +Maxine +Sara +Toni +Wendy +Annette +Audrey +Bonita +Cathy +Connie +Georgia +Jeanette +Jeannette +Josephine +Julie +Michelle +Pauline +Annie +Beatrice +Edna +Robin +Thelma +Yvette +Christina +Edith +Emily +Esther +Lillian +Pearl +Ruby +Beth +Betsy +Cecilia +Gayle +Glenda +Hazel +Ida +Jan +Myra +Sheryl +Candace +Carla +Cathleen +Clara +Dale +Dana +Dolores +Jackie +Joy +Lucy +Marianne +Miriam +Rachel +Shelia +Vera +Willie +Agnes +Alberta +Amy +Bernice +Eva +Lynne +Madeline +Natalie +Olivia +Rosa +Viola +Wilhelmina +Adrienne +Alexandra +Alfreda +Bertha +Claudette +Emma +Fay +Gladys +Gretchen +Ingrid +Iris +Jennie +Jessica +Kay +Lisa +Meredith +Nellie +Rena +Rosalind +Rosemarie +Shelley +Thomasine +Wilma +Alicia +Bessie +Carmen +Celestine +Claire +Consuella +Earline +Faye +Helene +Jenifer +Jill +Karin +Lee +Lucille +Mabel +Marguerite +Maryann +Melanie +Melinda +Melissa +Monica +Nina +Nora +Pat +Patsy +Rhoda +Sharyn +Sonja +Susie +Ada +Alison +Althea +Bette +Bettie +Billie +Caroline +Clarissa +Deanna +Doretha +Dorothea +Earlene +Elise +Ella +Gale +Geneva +Georgette +Gertrude +Ginger +Glenna +Hattie +Ilene +Janelle +Jenny +Jessie +Kristine +Laurie +Leah +Lena +Lenora +Lenore +Mona +Penny +Polly +Rochelle +Rosalie +Sallie +Sheri +Linda +Mary +Patricia +Barbara +Susan +Sharon +Kathleen +Margaret +Deborah +Brenda +Nancy +Sandra +Carolyn +Karen +Carol +Diane +Donna +Elizabeth +Judith +Joyce +Shirley +Cynthia +Pamela +Cheryl +Janet +Jacqueline +Joan +Gloria +Janice +Betty +Ann +Christine +Catherine +Jean +Paula +Martha +Anne +Bonnie +Dorothy +Beverly +Ellen +Jane +Frances +Theresa +Ruth +Joanne +Virginia +Helen +Phyllis +Alice +Katherine +Marilyn +Diana +Gail +Sheila +Suzanne +Gwendolyn +Elaine +Jo +Kathryn +Yvonne +Rebecca +Rita +Judy +Valerie +Anita +Laura +Marsha +Lynn +Sylvia +Constance +Delores +Jeanne +Marie +Regina +Dianne +Peggy +Teresa +Doris +Eileen +Marcia +Evelyn +Maria +Veronica +Maureen +Charlene +Lorraine +Rosemary +Victoria +Wanda +Charlotte +Angela +Sherry +Geraldine +Leslie +Rose +Jennifer +Lois +Darlene +Louise +Sarah +Juanita +Paulette +Vivian +Joann +Kathy +Lynda +Sally +Stephanie +Sue +Andrea +Antoinette +Audrey +Julia +Julie +Marjorie +Anna +Cecelia +Janis +Jeanette +June +Wendy +Saundra +Claudia +Edna +Lillian +Michele +Renee +Christina +Debra +Denise +Edith +Laverne +Marian +Mildred +Roberta +Robin +Terry +Annette +Carole +Connie +Lynne +Marguerite +Cassandra +Sara +Arlene +Florence +Jacquelyn +Loretta +Norma +Beatrice +Bernice +Irene +Marianne +Marlene +Priscilla +Agnes +Annie +Dolores +Francine +Penelope +Belinda +Eleanor +Gayle +Grace +Harriet +Maxine +Caroline +Ernestine +Glenda +Jan +Jeannette +Lucy +Margo +Olivia +Ruby +Thelma +Toni +Vickie +Althea +Cathleen +Cathy +Claire +Clara +Colleen +Dale +Eva +Faye +Gladys +Joy +Lisa +Michelle +Monica +Naomi +Vicki +Willie +Celestine +Ella +Emily +Esther +Georgia +Iris +Josephine +Lenora +Nora +Alicia +Dana +Ethel +Geneva +Madeline +Marion +Melanie +Shelia +Valarie +Vera +Alfreda +Alma +Bernadette +Candace +Candice +Carmen +Cathryn +Cecilia +Claudette +Dorothea +Earline +Estelle +Hazel +Helene +Hope +Jill +Katharine +Laurie +Maryann +Patsy +Pauline +Penny +Rachel +Rosa +Shelley +Verna +Amy +Bertha +Beth +Bonita +Carrie +Dawn +Elsie +Eunice +Ida +Jenny +Lucille +Lucinda +Lydia +Myra +Rosalind +Sheryl +Thomasine +Velma +Viola +Wilma +Yolanda +Alberta +Amelia +Camilla +Carla +Daryl +Dianna +Doreen +Elena +Eloise +Genevieve +Hattie +Holly +Ingrid +Jessica +Joanna +Jody +Kay +Marla +Marva +Michael +Minnie +Muriel +Nina +Rosetta +Sharron +Tina +Yvette +Adrian +Adrienne +Alexandra +Alexis +Alison +Carlene +Daphne +Doretha +Emma +Essie +Fannie +Fay +Jackie +Jeannie +Jennie +Lana +Lee +Lola +Lynette +Margie +Melissa +Natalie +Sharyn +Tanya +Tawana +Terri +Theodora +Vernice +Linda +Mary +Patricia +Barbara +Susan +Deborah +Sharon +Kathleen +Nancy +Diane +Karen +Margaret +Sandra +Carol +Brenda +Carolyn +Donna +Elizabeth +Cynthia +Janet +Joyce +Janice +Judith +Pamela +Shirley +Christine +Joan +Catherine +Beverly +Cheryl +Katherine +Jacqueline +Gail +Sheila +Gloria +Ann +Bonnie +Frances +Wanda +Yvonne +Anne +Kathryn +Helen +Denise +Jean +Jane +Virginia +Betty +Dorothy +Joanne +Ellen +Laura +Martha +Phyllis +Gwendolyn +Paula +Theresa +Marilyn +Sylvia +Alice +Stephanie +Rebecca +Ruth +Judy +Lynn +Suzanne +Anita +Marie +Victoria +Elaine +Robin +Constance +Sarah +Darlene +Diana +Dianne +Eileen +Doris +Jeanne +Joann +Maria +Maureen +Peggy +Rita +Wendy +Jo +Sherry +Valerie +Marcia +Marsha +Paulette +Regina +Teresa +Evelyn +Jennifer +Roberta +Debra +Delores +Irene +Lorraine +Veronica +Rose +Claudia +Francine +Harriet +Louise +Priscilla +Kathy +Anna +Christina +Leslie +Sally +Andrea +Angela +Edith +Geraldine +Lois +Michele +Rosemary +Charlotte +Julie +Laverne +Mildred +Pauline +Audrey +Cassandra +Julia +Lisa +Loretta +Renee +Annette +Carole +June +Marian +Sara +Connie +Bonita +Cecelia +Juanita +Norma +Beth +Charlene +Florence +Lillian +Lynda +Vivian +Cathy +Jeanette +Jill +Marjorie +Monica +Shelley +Thelma +Antoinette +Colleen +Dolores +Marion +Mona +Emily +Gladys +Janis +Joy +Lucy +Vicki +Carla +Dana +Eleanor +Gayle +Glenda +Lynne +Marguerite +Marlene +Saundra +Sheryl +Toni +Alfreda +Amy +Josephine +Laurie +Beatrice +Eunice +Grace +Michelle +Nina +Adrienne +Bernadette +Candace +Carmen +Edna +Iris +Jacquelyn +Jeannette +Myra +Nadine +Nora +Olivia +Rhonda +Sue +Terry +Cecilia +Claudette +Ella +Jan +Lucille +Melanie +Miriam +Natalie +Penelope +Annie +Arlene +Cora +Ethel +Gale +Jody +Maxine +Rachel +Velma +Vickie +Adele +Althea +Belinda +Betsy +Catharine +Celeste +Dale +Daphne +Elsie +Ernestine +Naomi +Patrice +Rosalind +Sharron +Thomasine +Tina +Vera +Winifred +Agnes +Alberta +Caroline +Celestine +Claire +Debbie +Dianna +Dona +Faye +Georgia +Gertrude +Gretchen +Jenny +Joanna +Jocelyn +Kay +Lydia +Marianne +Muriel +Rosa +Ruby +Susanne +Yolanda +Alison +Alma +Bernice +Camille +Candice +Caryn +Dawn +Elisabeth +Emma +Hazel +Helene +Johnnie +Lauren +Madeline +Margie +Margo +Marla +Melinda +Melissa +Tamara +Terri +Valeria +Valorie +Wilma +Alexandra +Billie +Cathleen +Clara +Clare +Debora +Della +Earline +Elise +Eugenie +Eva +Fannie +Fay +Hilda +Holly +Hope +Janie +Kristin +Lana +Leah +Lena +Lenora +Letitia +Lillie +Lolita +Lucinda +Lynette +Mamie +Penny +Portia +Rene +Rochelle +Rosetta +Sharyn +Shelia +Sondra +Terrie +Therese +Linda +Mary +Patricia +Deborah +Barbara +Susan +Sharon +Karen +Kathleen +Nancy +Sandra +Diane +Brenda +Margaret +Donna +Carolyn +Carol +Joyce +Elizabeth +Cynthia +Denise +Judith +Pamela +Janet +Janice +Catherine +Gail +Christine +Jacqueline +Joan +Gloria +Shirley +Cheryl +Debra +Sheila +Jean +Ann +Anne +Beverly +Bonnie +Jane +Ellen +Paula +Yvonne +Helen +Martha +Dorothy +Katherine +Phyllis +Ruth +Lynn +Theresa +Valerie +Betty +Gwendolyn +Frances +Joanne +Marilyn +Teresa +Kathryn +Marie +Victoria +Doris +Diana +Judy +Laura +Elaine +Robin +Wanda +Sarah +Suzanne +Virginia +Alice +Peggy +Rita +Stephanie +Lisa +Regina +Veronica +Jeanne +Marcia +Rebecca +Sherry +Vicki +Constance +Eileen +Leslie +Marsha +Renee +Angela +Dianne +Jo +Maureen +Maria +Anna +Charlene +Juanita +Sylvia +Wendy +Delores +Sally +Andrea +Michele +Rose +Arlene +Janis +Geraldine +Loretta +Louise +Michelle +Roberta +Cecelia +Claudia +Francine +Kathy +Lois +Lorraine +Marjorie +Anita +Darlene +Paulette +Annette +Charlotte +Laurie +Terry +Evelyn +Jennifer +Julie +Cassandra +Laverne +Rosemary +Belinda +Bonita +Christina +Joann +Marlene +Toni +Colleen +Edith +Jacquelyn +Jan +June +Lynne +Dale +Hazel +Julia +Lynda +Norma +Priscilla +Emily +Marguerite +Shelley +Bernadette +Carole +Jeanette +Monica +Rhonda +Sara +Audrey +Carla +Cecilia +Lillian +Sheryl +Vivian +Caroline +Grace +Althea +Dolores +Gayle +Gladys +Josephine +Joy +Marian +Patrice +Vickie +Ethel +Maxine +Mildred +Shelia +Amy +Beth +Cathy +Claire +Connie +Dana +Faye +Harriet +Irene +Lydia +Marianne +Marion +Melanie +Melissa +Pauline +Adrienne +Annie +Antoinette +Dora +Doretha +Ernestine +Eva +Faith +Florence +Kristine +Lucille +Nina +Nora +Penny +Saundra +Vera +Viola +Alma +Celestine +Georgia +Holly +Iris +Jeannette +Lee +Miriam +Ramona +Rosa +Sue +Agnes +Beatrice +Bernice +Candace +Eleanor +Kay +Lucy +Margo +Rosalind +Ruby +Alberta +Alicia +Beryl +Camille +Carrie +Dawn +Esther +Gale +Glenda +Henrietta +Jill +Katharine +Melinda +Natalie +Pearl +Rachel +Rosetta +Tawana +Terri +Ada +Alfreda +Bertha +Cathleen +Claudette +Crystal +Dorothea +Earline +Ella +Emma +James +Jocelyn +Kathie +Nadine +Naomi +Patsy +Rochelle +Rosemarie +Sharron +Thelma +Thomasine +Velma +Alison +Amanda +Bettie +Clara +Debora +Deloris +Eugenia +Eunice +Gay +Geneva +Gina +Heidi +Helene +Lucinda +Lyn +Muriel +Myra +Olivia +Romaine +Rosalie +Roxanne +Tina +Valeria +Vanessa +Wilma +Adele +Aletha +Alexandra +Betsy +Bette +Candice +Candy +Carmela +Carroll +Celeste +Cherie +Clare +Clarissa +Darla +Della +Dona +Doreen +Erma +Felicia +Gertrude +Gretchen +Hannah +Harriett +Hope +Ida +Jessica +Jessie +Karin +Katrina +Kristie +Madeline +Marcella +Margery +Melva +Meredith +Michael +Patti +Rene +Sherrie +Sondra +Tanya +Trudy +Valarie +Vernetta +Vicky +Winifred +Mary +Linda +Patricia +Deborah +Barbara +Susan +Karen +Sharon +Brenda +Nancy +Kathleen +Donna +Diane +Margaret +Elizabeth +Sandra +Denise +Carol +Joyce +Christine +Pamela +Cynthia +Debra +Carolyn +Janet +Sheila +Catherine +Gail +Joan +Jacqueline +Judith +Ann +Beverly +Janice +Gloria +Shirley +Anne +Martha +Paula +Katherine +Teresa +Cheryl +Robin +Kathryn +Lynn +Joanne +Suzanne +Theresa +Laura +Rebecca +Ruth +Betty +Jane +Rita +Victoria +Leslie +Elaine +Ellen +Gwendolyn +Kathy +Angela +Darlene +Maureen +Virginia +Wanda +Jean +Bonnie +Dorothy +Frances +Judy +Marie +Valerie +Alice +Phyllis +Helen +Jo +Marilyn +Yvonne +Constance +Renee +Eileen +Jennifer +Anita +Lisa +Veronica +Diana +Marcia +Rose +Vicki +Sarah +Lynda +Andrea +Evelyn +Doris +Roberta +Michele +Charlene +Claudia +Jeanne +Regina +Rosemary +Dianne +Juanita +Lois +Marsha +Michelle +Stephanie +Louise +Sally +Christina +Julie +Laverne +Terry +Anna +Cassandra +Charlotte +Delores +Loretta +Lynne +Sherry +Vivian +Wendy +Cathy +Colleen +Sylvia +Lorraine +Maria +Norma +Audrey +Jeanette +Peggy +Amy +Geraldine +Arlene +Vickie +Julia +Marjorie +Paulette +Annette +Cecelia +Dale +Eleanor +Joann +Josephine +Marianne +Marion +Vanessa +Bernadette +Dana +Emily +Gayle +Nina +Priscilla +Sara +Saundra +Carole +Irene +Jan +Laurie +Marian +Monica +Rhonda +Sue +Carla +Janis +Jill +Lillian +Marlene +Mildred +Shelley +Adrienne +Antoinette +Candace +Edith +Gladys +Glenda +Marguerite +Alfreda +Belinda +Ernestine +Florence +Francine +Iris +Jacquelyn +Toni +Yolanda +Agnes +Alicia +Beth +Grace +Hazel +Jeannette +Margo +Maxine +Melanie +Patrice +Shelia +Terri +Yvette +Bonita +Caroline +Dawn +Esther +June +Kim +Lucy +Nora +Patsy +Sheryl +Vera +Avis +Carmen +Cathleen +Cecilia +Claire +Connie +Edna +Elsie +Georgia +Harriet +Kay +Miriam +Nadine +Tawana +Alison +Betsy +Claudette +Debbie +Ethel +Eva +Ida +Jackie +Lydia +Olivia +Rosa +Rosetta +Annie +April +Beatrice +Caryn +Celestine +Clara +Emma +Gertrude +Justine +Kristine +Lauren +Lillie +Lora +Lucille +Rachel +Rosalind +Stella +Tamara +Tina +Verna +Althea +Dolores +Doretha +Gale +Ginger +Joanna +Joy +Laurel +Marla +Mona +Rena +Rochelle +Ruby +Sallie +Susanne +Thomasine +Wilma +Winifred +Carmelita +Cindy +Clare +Debora +Dolly +Dorothea +Earlene +Eloise +Faye +Geneva +Harriett +Holly +Ilene +Jeannie +Jeannine +Jocelyn +Jody +Karyn +Katharine +Kristina +Lana +Lucinda +Madeline +Melinda +Melissa +Melody +Mindy +Muriel +Natalie +Penny +Portia +Sonia +Sonja +Thelma +Therese +Vicky +Viola +William +Adele +Amelia +Arnita +Ava +Benita +Bridget +Candy +Carrie +Celia +Danielle +Doreen +Elinor +Estelle +Eugenia +Freda +Heidi +Helene +Hope +Johanna +Kristin +Lola +Margie +Marina +Meredith +Penelope +Ramona +Robyn +Tanya +Velma +Mary +Patricia +Deborah +Linda +Susan +Barbara +Karen +Sharon +Diane +Donna +Cynthia +Pamela +Debra +Brenda +Kathleen +Nancy +Sandra +Denise +Carol +Elizabeth +Margaret +Carolyn +Janet +Joyce +Jacqueline +Cheryl +Sheila +Gail +Janice +Catherine +Joan +Christine +Robin +Ann +Judith +Theresa +Wanda +Paula +Beverly +Katherine +Shirley +Anne +Gloria +Martha +Laura +Valerie +Gwendolyn +Kathryn +Ellen +Teresa +Leslie +Judy +Lynn +Phyllis +Bonnie +Darlene +Michelle +Victoria +Jane +Rebecca +Marilyn +Ruth +Lisa +Suzanne +Jean +Stephanie +Betty +Elaine +Jo +Marie +Helen +Kathy +Rita +Virginia +Joanne +Frances +Maria +Regina +Vicki +Marsha +Maureen +Angela +Evelyn +Jennifer +Anita +Delores +Vanessa +Dorothy +Alice +Rose +Sarah +Wendy +Constance +Doris +Marcia +Sylvia +Yvonne +Eileen +Renee +Cathy +Diana +Jan +Amy +Andrea +Jeanne +Lorraine +Peggy +Charlene +Rhonda +Sally +Julie +Loretta +Michele +Sherry +Audrey +Carla +Cassandra +Marjorie +Claudia +Veronica +Anna +Dianne +Laverne +Lois +Vivian +Adrienne +Charlotte +Lynda +Lynne +Maxine +Roberta +Janis +Julia +Louise +Melanie +Shelley +Iris +Jacquelyn +Laurie +Lillian +Mildred +Monica +Cecelia +Geraldine +Juanita +Saundra +Sue +Terry +Arlene +Christina +Francine +June +Paulette +Sara +Beatrice +Colleen +Connie +Dale +Jeanette +Lydia +Marian +Marianne +Nina +Yvette +Cathleen +Edna +Melissa +Myra +Annette +Annie +Antoinette +Ava +Bonita +Dolores +Edith +Eleanor +Ernestine +Glenda +Jill +Melinda +Miriam +Patrice +Sheryl +Toni +Vickie +Belinda +Carole +Caroline +Dawn +Josephine +Lucy +Priscilla +Candace +Carmen +Gale +Gladys +Jeannette +Joann +Nadine +Norma +Pauline +Rosemary +Ruby +Sonja +Thomasine +Vera +Alicia +Debbie +Gayle +Holly +Irene +Jody +Joy +Marlene +Shelia +Sherri +Tanya +Thelma +Bernadette +Beth +Cecilia +Claire +Claudette +Debora +Elise +Emily +Faye +Harriet +Margo +Marguerite +Marion +Tamara +Alison +Bernice +Betsy +Cindy +Dana +Esther +Ethel +Florence +Inga +Karla +Katharine +Kim +Penny +Rachel +Rosa +Tina +Dianna +Elsie +Emma +Hazel +Jessica +Leona +Meredith +Natalie +Nora +Patti +Susanne +Teri +Vicky +Cherie +Crystal +Dorothea +Gretchen +Gwen +Helene +Ida +Lori +Margie +Marta +Rene +Terri +Yolanda +Alberta +Avis +Blanche +Candice +Clara +Clare +Clarissa +Doretha +Earline +Faith +Grace +Ingrid +Isabel +James +Jessie +Karin +Kristina +Lauren +Lee +Lenora +Lorna +Lucille +Lynette +Melody +Nicole +Olivia +Patsy +Rona +Rosalind +Roxanne +Sheri +Sonia +Tawana +Therese +Adele +Agnes +Alfreda +Arnita +Benita +Bette +Carrie +Cathryn +Celeste +Charmaine +Cheri +Conchita +David +Dora +Eugenia +Eunice +Eva +Freda +Georgia +Greta +Heather +Hope +Ilene +Jackie +Janine +Jeannie +Jeri +Jocelyn +Katrina +Kay +Leah +Lola +Lorrie +Madeline +Mara +Marla +Michael +Nan +Noreen +Pearl +Rena +Robyn +Romaine +Rosetta +Sonya +Twana +Venita +Mary +Deborah +Patricia +Linda +Susan +Karen +Barbara +Pamela +Debra +Sharon +Donna +Cynthia +Nancy +Diane +Kathleen +Brenda +Elizabeth +Denise +Janet +Margaret +Carol +Joyce +Sandra +Carolyn +Jacqueline +Robin +Sheila +Gail +Catherine +Anne +Janice +Joan +Wanda +Ann +Shirley +Theresa +Judith +Beverly +Cheryl +Gloria +Valerie +Laura +Martha +Teresa +Michelle +Jean +Katherine +Kathryn +Marilyn +Christine +Rebecca +Paula +Phyllis +Angela +Leslie +Rita +Vanessa +Ruth +Darlene +Ellen +Joanne +Gwendolyn +Lisa +Marie +Bonnie +Lynn +Victoria +Michele +Stephanie +Maureen +Jane +Jo +Suzanne +Veronica +Virginia +Dorothy +Judy +Renee +Yvonne +Diana +Rose +Elaine +Maria +Regina +Betty +Delores +Kathy +Anita +Peggy +Helen +Charlene +Juanita +Marian +Constance +Lorraine +Sarah +Julie +Marcia +Roberta +Terry +Julia +Wendy +Alice +Eileen +Cathy +Claudia +Evelyn +Frances +Loretta +Doris +Marsha +Sally +Andrea +Sylvia +Vicki +Jeanne +Jennifer +Sherry +Amy +Bernadette +Adrienne +Connie +Louise +Toni +Anna +Dale +Lois +Vivian +Annette +Arlene +Audrey +Carla +Joy +Antoinette +Dawn +Lynne +Sheryl +Belinda +Colleen +Geraldine +Lynda +Sara +Shelia +Carole +Cecelia +Charlotte +Holly +Jan +Jill +Rhonda +Terri +Dianne +Francine +Marjorie +Nadine +Nina +Sherri +Laurie +Marlene +Paulette +Beth +Cindy +Kim +Lydia +Tanya +Cassandra +Vera +Vickie +Dana +Jacquelyn +Jeanette +Laverne +Lillian +Marguerite +Melinda +Monica +Saundra +Alicia +Eleanor +Glenda +Iris +Jeannette +Joann +June +Lori +Marion +Norma +Tina +Yvette +Adele +Debbie +Irene +Maxine +Melanie +Miriam +Claire +Edith +Ernestine +Gayle +Janis +Melissa +Rosemary +Ruby +Alfreda +Christina +Edna +Ethel +Eunice +Lee +Priscilla +Rachel +Rosa +Shelley +Bernice +Bertha +Camille +Dorothea +Esther +Gale +Gladys +Harriet +Ida +Jessica +Lucy +Marianne +Mildred +Myra +Pauline +Penelope +Penny +Roxanne +Sue +Tamara +Bonita +Cathleen +Celeste +Celestine +Crystal +Faye +Gina +Jody +Joni +Kimberly +Kristin +Melody +Naomi +Patrice +Ramona +Tawanna +Thelma +Therese +Tijuana +Yolanda +Alison +Amelia +Betsy +Candace +Daphne +Debora +Dolores +Eva +Faith +Grace +Hazel +Jessie +Katharine +Lauren +Margie +Nora +Sheree +Sherrie +Verna +Willie +Alexandra +Allison +Caroline +Carrie +Dena +Emily +Felicia +Gretchen +Irma +Josephine +Lenora +Mara +Marcella +Mona +Robyn +Vicky +Viola +Alberta +Aletha +Althea +Annie +April +Benita +Carmen +Cecilia +Clara +Claudette +Denice +Doreen +Elisabeth +Elise +Evangeline +Heidi +Jackie +Jocelyn +Leona +Marla +Olivia +Patti +Rochelle +Susanne +Tawana +Ada +Amanda +Ava +Beverley +Caryn +Cora +Corinne +Della +Eve +Geneva +Harriett +Joette +Karin +Kate +Kathi +Katrina +Kay +Lajuan +Lucinda +Madeline +Margo +Maryann +Muriel +Patsy +Rene +Rhea +Rosalind +Shawn +Shelly +Toya +Tracey +Valeria +Vernessa +Mary +Deborah +Linda +Patricia +Susan +Karen +Barbara +Debra +Donna +Diane +Cynthia +Pamela +Sharon +Denise +Brenda +Kathleen +Carol +Elizabeth +Nancy +Margaret +Sandra +Joyce +Janet +Jacqueline +Robin +Cheryl +Janice +Catherine +Sheila +Theresa +Carolyn +Gail +Ann +Lisa +Teresa +Wanda +Gloria +Katherine +Judith +Joan +Shirley +Beverly +Paula +Valerie +Anne +Michelle +Darlene +Jean +Laura +Kathryn +Christine +Michele +Renee +Angela +Bonnie +Martha +Gwendolyn +Jane +Lynn +Stephanie +Dorothy +Rebecca +Vanessa +Jo +Leslie +Victoria +Virginia +Betty +Phyllis +Regina +Rose +Terry +Ellen +Ruth +Kim +Suzanne +Jennifer +Alice +Elaine +Judy +Yvonne +Eileen +Frances +Marilyn +Sylvia +Helen +Kathy +Marie +Diana +Maria +Maureen +Peggy +Wendy +Anita +Constance +Rita +Sarah +Terri +Claudia +Colleen +Cathy +Lorraine +Melissa +Veronica +Cassandra +Joanne +Connie +Debbie +Evelyn +Jeanne +Julia +Loretta +Andrea +Dianne +Vicki +Charlene +Julie +Laurie +Tina +Delores +Louise +Melanie +Rhonda +Rosemary +Sherry +Vivian +Annette +Audrey +Bonita +Charlotte +Dawn +Juanita +Lois +Marsha +Amy +Anna +Doris +Marcia +Monica +Sara +Sheryl +Belinda +Cindy +Laverne +Roberta +Francine +Joann +Lynne +Lori +Carla +Gale +Gina +Norma +Tanya +Arlene +Holly +Janis +Toni +Beth +Geraldine +Iris +Marlene +Nina +Sabrina +Sally +Yolanda +Yvette +Antoinette +Dale +Debora +Jan +Adrienne +Carole +Claire +Jocelyn +June +Melinda +Roxanne +Sherri +Vickie +Christina +Dana +Florence +Grace +Irene +Jacquelyn +Jeanette +Jeannette +Jody +Josephine +Joy +Lillian +Marjorie +Nadine +Alicia +Betsy +Cecelia +Edna +Ernestine +Jill +Marguerite +Marion +Paulette +Priscilla +Shelia +Sheree +Bernadette +Carmen +Eleanor +Gayle +Kimberly +Lee +Avis +Edith +Esther +Ethel +Lynda +Marianne +Melody +Shelley +Tawana +Amanda +Beatrice +Cecilia +Desiree +Harriet +Lucille +Marian +Mildred +Rochelle +Sue +Alfreda +Alison +April +Ava +Felicia +Joni +Patti +Pauline +Rachel +Ruby +Thomasine +Tracey +Bridget +Emily +Eunice +Janie +Katharine +Lauren +Marla +Miriam +Rene +Tara +Thelma +Wilhelmina +Althea +Annie +Bertha +Candice +Celeste +Charmaine +Clara +Claudette +Denice +Doretha +Dorothea +Hope +Jackie +Leigh +Margie +Patrice +Penny +Portia +Rosalind +Tawanna +Theodora +Therese +Tracy +Trudy +Valarie +Vera +Agnes +Aletha +Antionette +Caroline +Dolores +Doreen +Emma +Faith +Faye +Geneva +Gladys +Heather +Jamie +Janine +Jennie +Karin +Kay +Lesley +Lolita +Lorna +Lynette +Maura +Molly +Myra +Naomi +Sallie +Saundra +Sheri +Susie +Tonya +Verna +Adele +Becky +Bernice +Blanche +Bobbie +Candace +Caryn +Cathryn +Christy +Crystal +Daphne +Dena +Elisabeth +Elsie +Eugenia +Eve +Georgia +Glenda +Gregory +Gretchen +Gwen +Harriett +Heidi +Helena +Ida +Jeannie +Jewel +Joanna +Karla +Katrina +Kerry +Kristine +Lajuan +Laurel +Lavern +Leah +Lenora +Lenore +Letitia +Lyn +Maryann +Maxine +Meredith +Olivia +Ramona +Rosemarie +Rosetta +Sonja +Sonya +Stacey +Susanne +Teri +Towanna +Valeria +Deborah +Mary +Patricia +Karen +Susan +Linda +Sharon +Barbara +Donna +Debra +Cynthia +Diane +Denise +Pamela +Nancy +Kathleen +Elizabeth +Sandra +Carol +Robin +Margaret +Cheryl +Brenda +Sheila +Catherine +Carolyn +Janet +Joyce +Theresa +Janice +Wanda +Lisa +Ann +Teresa +Laura +Angela +Gail +Joan +Jacqueline +Judith +Anne +Renee +Leslie +Shirley +Valerie +Darlene +Beverly +Michelle +Rebecca +Victoria +Katherine +Christine +Kathy +Paula +Kathryn +Jean +Ellen +Jo +Helen +Kim +Lynn +Betty +Gloria +Dorothy +Phyllis +Regina +Veronica +Wendy +Bonnie +Jane +Gwendolyn +Ruth +Frances +Judy +Maria +Michele +Stephanie +Martha +Diana +Elaine +Yvonne +Anita +Alice +Charlene +Joanne +Sarah +Vicki +Annette +Maureen +Rose +Suzanne +Andrea +Debbie +Sherry +Terry +Jennifer +Cathy +Julie +Laurie +Monica +Constance +Jeanne +Virginia +Eileen +Kimberly +Lorraine +Marcia +Marie +Rhonda +Sally +Peggy +Rita +Julia +Roberta +Terri +Yvette +Sylvia +Evelyn +Loretta +Lori +Delores +Tina +Vanessa +Amy +Marilyn +Sheryl +Tanya +Anna +Beth +Vivian +Audrey +Christina +Cindy +Dawn +Jeanette +Carla +Belinda +Joy +Laverne +Marian +Melanie +Bonita +Debora +Iris +Juanita +Louise +Lynne +Vickie +Bernadette +Charlotte +Connie +Doris +Geraldine +Yolanda +Arlene +Cecelia +Dianne +Marsha +Nadine +Paulette +Rosemary +Claudia +Dana +Edith +Grace +Jacquelyn +Jan +Marlene +Melissa +Toni +Antoinette +Carole +Dale +Gayle +Jill +Lillian +Priscilla +Rachel +Rosalind +Sara +Shelia +Sue +Irene +Janis +Lois +Lucy +Lydia +Naomi +Norma +Shelley +Tawana +Tawanna +Adrienne +Gale +Lauren +Marjorie +Patti +Colleen +Ethel +Gina +Holly +Joann +June +Lynda +Lynette +Maxine +Roxanne +Saundra +Sheree +Sherri +Vera +Alfreda +April +Avis +Cecilia +Doreen +Ernestine +Eva +Faye +Felicia +Florence +Glenda +Jocelyn +Melinda +Mildred +Nina +Thelma +Therese +Carmen +Cassandra +Claire +Fay +Francine +Gladys +Jody +Marianne +Marla +Melody +Sabrina +Teri +Annie +Ava +Candace +Crystal +Dolores +Edwina +Jeannette +Katrina +Kristin +Leigh +Margie +Myra +Patrice +Penny +Tonya +Alicia +Bernice +Bridget +Cathleen +Clara +Eleanor +Josephine +Kay +Lee +Miriam +Nanette +Nora +Renita +Rochelle +Sherrie +Tamara +Tracy +Alberta +Althea +Amelia +Beatrice +Caroline +Cathryn +Dena +Dorothea +Edna +Elena +Emma +Faith +Gretchen +Hazel +Janine +Jessie +Joni +Kerry +Lajuan +Laurel +Lawan +Lucinda +Marguerite +Martina +Michael +Patsy +Patty +Pauline +Rene +Robyn +Rosa +Valencia +Vernell +Wilma +Agnes +Alexandra +Alison +Alma +Alva +Aurelia +Carrie +Celeste +Charmaine +Colette +Deidre +Deirdre +Dianna +Esther +Eve +Georgia +Harriet +Karla +Lucille +Madeline +Mamie +Margarita +Margo +Marion +Meredith +Mitzi +Pearl +Rosie +Tara +Tracey +Vicky +Viola +Adele +Allison +Amanda +Becky +Benita +Betsy +Camille +Candice +Candy +Caren +Clare +Claudette +Cornelia +Dora +Ella +Felecia +Greta +Heather +Heidi +Hope +Ingrid +Jamie +Jana +Janette +Jayne +Karin +Katharine +Laureen +Lolita +Lorrie +Margot +Maura +Meg +Molly +Mona +Ramona +Ruby +Sheri +Sonja +Starr +Towanna +Veda +Mary +Deborah +Patricia +Karen +Susan +Linda +Sharon +Donna +Cynthia +Barbara +Debra +Elizabeth +Brenda +Pamela +Denise +Nancy +Kathleen +Diane +Cheryl +Robin +Carol +Carolyn +Sandra +Margaret +Sheila +Teresa +Lisa +Catherine +Janet +Theresa +Joyce +Michelle +Ann +Laura +Darlene +Janice +Jacqueline +Wanda +Kathy +Angela +Kim +Christine +Joan +Debbie +Renee +Leslie +Anne +Shirley +Gail +Valerie +Jean +Julie +Victoria +Ellen +Jane +Paula +Beverly +Judith +Cindy +Gloria +Kathryn +Katherine +Maria +Betty +Gwendolyn +Joanne +Phyllis +Stephanie +Elaine +Helen +Diana +Andrea +Bonnie +Suzanne +Lynn +Regina +Anita +Terri +Tina +Yvonne +Alice +Julia +Michele +Rebecca +Sherry +Constance +Jennifer +Judy +Marie +Maureen +Terry +Charlene +Jo +Sarah +Dorothy +Jeanne +Martha +Virginia +Annette +Vicki +Lori +Ruth +Eileen +Rita +Kimberly +Laurie +Rhonda +Sylvia +Dawn +Evelyn +Jeanette +Veronica +Doris +Monica +Amy +Wendy +Cathy +Frances +Rose +Marcia +Tanya +Vanessa +Lynne +Marilyn +Sheryl +Anna +Belinda +Beth +Delores +Gina +Marsha +Carla +Debora +Juanita +Melanie +Roberta +Vivian +Antoinette +Cassandra +Jan +Toni +Connie +Dana +Lauren +Melissa +Sally +Charlotte +Dianne +Iris +Marianne +Marjorie +Peggy +Yvette +Audrey +Carole +Christina +Ella +Loretta +Paulette +Shelia +Sue +Claudia +Geraldine +Jill +Lorraine +Lynda +Marlene +Tawana +Tawanna +Caroline +Cecelia +Doreen +Francine +Holly +Patrice +Robyn +Vickie +Bonita +Glenda +Jocelyn +Joy +Melinda +Sara +Tracey +Colleen +Irene +June +Laverne +Nadine +Tammy +Adrienne +Marguerite +Marian +Nina +Celeste +Crystal +Edith +Grace +Jackie +Katrina +Lillian +Rene +Rosemary +Therese +Yolanda +Alicia +Gayle +Joann +Lucinda +Mildred +Ramona +Rochelle +Rosalind +Shelley +Tracy +Vera +Annie +Bernice +Candace +Carrie +Eleanor +Ernestine +Gladys +Harriet +Norma +Priscilla +April +Benita +Betsy +Carmen +Emma +Eunice +Florence +Jeannie +Katharine +Melody +Patti +Rachel +Ruby +Saundra +Sherrie +Ava +Bernadette +Bertha +Cecilia +Claire +Desiree +Dorothea +Emily +Esther +Gale +Helene +Jacquelyn +Kelly +Lenora +Louise +Marion +Marla +Miriam +Myra +Patsy +Sherri +Tamara +Althea +Amanda +Arnita +Dolores +Edna +Erin +Georgette +Heidi +Ingrid +Ivy +Janette +Kay +Mona +Natalie +Nora +Patty +Pauline +Penny +Sabrina +Shari +Shelly +Sheri +Thelma +Vernell +Arlene +Becky +Chandra +Cheri +Dianna +Dona +Elisabeth +Eva +Felicia +Gretchen +Hazel +Henrietta +Janis +Jenny +Joni +Lee +Lois +Lydia +Maxine +Terrie +Tonya +Valencia +Verna +Adele +Alberta +Alexandra +Allison +Antionette +Avis +Camille +Carlene +Cathleen +Celia +Clara +Clare +Claudette +Cornelia +Deirdre +Deloris +Felecia +Georgia +Ginger +James +Jeannette +Jody +Karin +Kathi +Kerry +Leah +Mari +Naomi +Rosa +Sharlene +Sheree +Tara +Teri +Velma +Alfreda +Amelia +Aurelia +Cherie +Dale +Daphne +Denice +Dinah +Eugenia +Evangeline +Greta +Jamie +Jessica +Joanna +John +Juli +Juliet +Lolita +Lucy +Lynette +Marcy +Margie +Marietta +Megan +Michael +Rhoda +Ronda +Sharron +Shelby +Stacey +Susanne +Tijuana +Trudy +Valarie +Valeria +Veda +Mary +Deborah +Patricia +Karen +Linda +Susan +Sharon +Cynthia +Barbara +Donna +Pamela +Cheryl +Elizabeth +Debra +Denise +Nancy +Lisa +Diane +Kathleen +Carol +Robin +Brenda +Margaret +Sandra +Catherine +Darlene +Carolyn +Teresa +Michelle +Janet +Laura +Kathy +Joyce +Sheila +Theresa +Ann +Jacqueline +Katherine +Angela +Debbie +Valerie +Wanda +Christine +Julie +Janice +Renee +Stephanie +Anne +Joan +Lynn +Jennifer +Kathryn +Gail +Leslie +Jean +Beverly +Kim +Michele +Shirley +Gloria +Helen +Joanne +Maria +Terri +Lori +Gwendolyn +Elaine +Cathy +Paula +Terry +Cindy +Diana +Dorothy +Judith +Judy +Jane +Martha +Rita +Victoria +Julia +Regina +Rhonda +Maureen +Phyllis +Veronica +Amy +Jeanne +Vicki +Anita +Bonnie +Rebecca +Suzanne +Annette +Andrea +Charlene +Ellen +Kimberly +Marie +Eileen +Frances +Tina +Betty +Colleen +Peggy +Sylvia +Loretta +Rose +Vanessa +Ruth +Yvonne +Laurie +Joann +Belinda +Dawn +Laverne +Patrice +Virginia +Wendy +Caroline +Jeanette +Sarah +Gina +Sherry +Tanya +Marcia +Anna +Doris +Lois +Melissa +Monica +Christina +Evelyn +Jo +Juanita +Sally +Vickie +Alice +Arlene +Carla +Emily +Constance +Delores +Jill +Lauren +Marilyn +Melanie +Doreen +Kelly +Lorraine +Yvette +Antoinette +Audrey +Beth +June +Rosemary +Vivian +Cassandra +Ernestine +Vera +Adrienne +Debora +Geraldine +Jan +Lynne +Marianne +Tawanna +Toni +Charlotte +Grace +Joy +Sheryl +Claudia +Dianne +Irene +Louise +Marion +Marlene +Marsha +Nadine +Paulette +Ramona +Sabrina +Shelia +April +Dana +Gayle +Jackie +Melody +Nina +Shelley +Tammy +Yolanda +Carrie +Claire +Francine +Lenora +Marla +Norma +Pam +Penny +Priscilla +Roberta +Robyn +Rochelle +Sherri +Tracy +Carole +Connie +Glenda +Holly +Jody +Marguerite +Marian +Natalie +Patty +Sandy +Sara +Tamara +Alicia +Allison +Becky +Bernadette +Cecelia +Cecilia +Esther +Felicia +Florence +Gladys +Iris +Lillian +Lucy +Lydia +Lynda +Myra +Vicky +Annie +Dorothea +Faith +Heidi +Jacquelyn +Jeannette +Jenny +Katrina +Leigh +Patti +Roxanne +Tracey +Althea +Bernice +Bonita +Camille +Christy +Desiree +Gale +Karla +Margo +Mildred +Monique +Terrie +Alison +Betsy +Bridget +Celeste +Crystal +Doretha +Edna +Eleanor +Jamie +Jocelyn +Katharine +Lynette +Melinda +Rachel +Rosalind +Ruby +Sherrie +Tawana +Teri +Tijuana +Cheri +Claudette +Deirdre +Faye +Felecia +Harriet +Jeannie +Kristin +Lajuan +Lillie +Lucinda +Margie +Maura +Mona +Nicole +Nora +Patsy +Robbin +Rosemarie +Sharron +Sheri +Stacy +Amanda +Ava +Bessie +Candace +Carmen +Chris +Danita +Della +Freda +Gay +Ginger +Janie +Janis +Karin +Kay +Lawanda +Lesley +Lorie +Lorna +Maxine +Meredith +Miriam +Pearl +Rachelle +Rena +Rosa +Saundra +Sharlene +Shawn +Shelly +Stacey +Susie +Tami +Trina +Valarie +Wilma +Alberta +Alfreda +Antionette +Arnetta +Benita +Bette +Celestine +Christie +Clarice +Daphne +Delphine +Dolores +Dorene +Edith +Elisabeth +Erin +Eugenia +Eva +Ginny +Helena +Ivy +Janine +Jeri +Kristen +Maryann +Mindy +Moira +Olivia +Portia +Rene +Shari +Sheena +Shirleen +Sue +Susanne +Tajuana +Tawanda +Tonya +Verna +Mary +Deborah +Patricia +Susan +Karen +Donna +Linda +Sharon +Cynthia +Pamela +Cheryl +Elizabeth +Barbara +Denise +Lisa +Diane +Debra +Carol +Nancy +Brenda +Kathleen +Robin +Margaret +Sandra +Catherine +Michelle +Sheila +Carolyn +Theresa +Janet +Teresa +Wanda +Kathy +Debbie +Joyce +Anne +Angela +Jacqueline +Laura +Darlene +Kim +Janice +Cathy +Ann +Renee +Tina +Julie +Valerie +Leslie +Christine +Cindy +Paula +Gail +Anita +Beverly +Maria +Annette +Joan +Jennifer +Kathryn +Terri +Lori +Regina +Rhonda +Stephanie +Victoria +Gwendolyn +Andrea +Rebecca +Gloria +Judith +Katherine +Phyllis +Shirley +Terry +Amy +Betty +Jean +Veronica +Diana +Ellen +Joanne +Maureen +Michele +Rose +Kimberly +Lynn +Helen +Jane +Bonnie +Wendy +Dorothy +Marie +Suzanne +Yvonne +Virginia +Judy +Tammy +Carla +Connie +Dana +Julia +Ruth +Sylvia +Eileen +Elaine +Laurie +Alice +Loretta +Rita +Sherry +Vanessa +Frances +Dawn +Martha +Tanya +Kelly +Yvette +Antoinette +Toni +Beth +Lorraine +Sarah +Colleen +Anna +Vicki +Cassandra +Charlene +Gina +Jeanette +Jo +Melissa +Sheryl +Delores +Marcia +Monica +Peggy +Tamara +Vickie +Belinda +Constance +Evelyn +Sally +Cecelia +Jeanne +Alison +Allison +Audrey +Christina +Juanita +Marilyn +April +Caroline +Charlotte +Claudia +Roberta +Jill +Lois +Louise +Marsha +Paulette +Tawanna +Bonita +Nina +Patrice +Rosemary +Adrienne +Glenda +Joy +Marianne +Melanie +Penny +Sandy +Shelia +Sherri +Tonya +Tracy +Carole +Cecilia +Debora +Edith +Edna +Francine +Grace +Marlene +Pam +Patty +Priscilla +Vivian +Arlene +Joann +June +Lillian +Lydia +Nadine +Shelley +Sue +Yolanda +Beatrice +Bridget +Cheri +Dianne +Doretha +Doris +Emily +Gayle +Lauren +Lynda +Marguerite +Marjorie +Melody +Natalie +Norma +Pauline +Rachel +Shari +Tawana +Tracey +Carmen +Esther +Eva +Geraldine +Heather +Irene +Iris +Jeannette +Laverne +Lynette +Lynne +Miriam +Stacey +Vera +Amanda +Amelia +Bernadette +Claire +Doreen +Faith +Georgia +Holly +Jan +Marian +Melinda +Mildred +Monique +Patti +Teri +Valencia +Althea +Antionette +Carrie +Felicia +Ginger +Gwen +Ida +Janis +Jody +Megan +Nora +Ramona +Tara +Terrie +Thelma +Alexandra +Alicia +Betsy +Colette +Crystal +Dale +Dianna +Erin +Germaine +Jackie +Jeannine +Karin +Lenora +Lolita +Marcella +Rene +Rosalind +Sara +Sherrie +Sonja +Sonya +Trina +Trudy +Alfreda +Bernice +Cathleen +Daphne +Gretchen +Heidi +Ingrid +Jacquelyn +Jamie +Jocelyn +Josephine +Katie +Lora +Margo +Marion +Marla +Maxine +Myra +Olivia +Queen +Robyn +Rochelle +Roxanne +Shelly +Stacy +Susie +Tammie +Vicky +Alma +Ana +Angie +Annie +Becky +Bertha +Bridgette +Brigitte +Candy +Danita +Debby +Deirdre +Delphine +Desiree +Dolores +Dorothea +Edwina +Helena +Helene +Jeanine +Jessica +Katharine +Kathi +Kristin +Leah +Lee +Lucy +Madeline +Margie +Molly +Ronda +Sabrina +Saundra +Tami +Therese +Tijuana +Winifred +Adrian +Benita +Caryn +Celestine +Chris +Claudette +Eleanor +Ella +Emma +Faye +Florence +Freda +Harriet +Ivy +Jeannie +Jerri +Joanna +Jodi +Karla +Karyn +Katrina +Kay +Leigh +Lucretia +Lynnette +Mamie +Maryann +Michael +Noreen +Penelope +Renita +Rosa +Rosemarie +Shelby +Susanne +Tamra +Tawanda +Thomasine +Twanna +Mary +Karen +Patricia +Susan +Lisa +Donna +Sharon +Linda +Deborah +Cynthia +Barbara +Pamela +Sandra +Brenda +Cheryl +Elizabeth +Denise +Robin +Laura +Carol +Debra +Angela +Catherine +Nancy +Diane +Kathleen +Michelle +Theresa +Margaret +Carolyn +Teresa +Kimberly +Jacqueline +Kathy +Kim +Janet +Janice +Sheila +Debbie +Valerie +Stephanie +Darlene +Anne +Maria +Renee +Wanda +Ann +Terri +Jennifer +Joan +Katherine +Joyce +Christine +Regina +Judith +Julie +Annette +Jean +Lori +Paula +Phyllis +Suzanne +Beverly +Cathy +Andrea +Maureen +Rebecca +Tina +Michele +Cindy +Leslie +Sarah +Judy +Dorothy +Ellen +Terry +Yvonne +Veronica +Helen +Kathryn +Gail +Lynn +Martha +Rhonda +Tammy +Amy +Laurie +Monica +Anita +Gloria +Jane +Kelly +Marie +Ruth +Colleen +Victoria +Bonnie +Alice +Gwendolyn +Wendy +Charlene +Joanne +Eileen +Loretta +Shirley +Virginia +Yvette +Sherry +Beth +Dana +Diana +Tracy +Betty +Carla +Constance +Dawn +Julia +Rita +Cassandra +Christina +Frances +Lorraine +Marcia +Antoinette +Belinda +Tonya +Anna +Elaine +Felicia +Gina +Juanita +Melanie +Jeanne +Jill +Tanya +Toni +Doris +Joann +Lynne +Marsha +Vanessa +Caroline +Roberta +Sally +Sylvia +Tracey +Jackie +Jo +Sandy +Vicki +Bernadette +Crystal +Lynda +Sabrina +Sara +Sherri +Bonita +Cecelia +Connie +Evelyn +Lois +Melissa +Rose +Sheryl +Sonya +Tawana +Audrey +Carole +Claudia +Jacquelyn +June +Lauren +Marilyn +Peggy +Shari +Sue +Adrienne +Carrie +Dianne +Lydia +Nina +Patty +Vickie +Alison +Carmen +Jeanette +Joy +Robyn +Tamara +Bridget +Delores +Edith +Emily +Laverne +Mildred +Norma +Rachel +Rochelle +Roxanne +Allison +Cecilia +Charlotte +Eva +Jan +Lillian +Paulette +Saundra +Shelley +Tawanna +Yolanda +Brigitte +Irene +Katrina +Marion +Marjorie +Melinda +Natalie +Priscilla +Rosemary +Shelia +Shelly +Arlene +Deanna +Deirdre +Dianna +Faye +Francine +Glenda +Holly +Jeannette +Kay +Louise +Melody +Miriam +Pam +Patrice +Penny +Teri +Therese +Alicia +Celeste +Chris +Doreen +Elisabeth +Heather +Lolita +Lucy +Marianne +Monique +Nadine +Rena +Sonja +Stacey +Stacy +Alberta +April +Beatrice +Becky +Claire +Dale +Debora +Geraldine +Grace +Heidi +Janine +Jessica +Jocelyn +Jody +Kelley +Marlene +Nora +Ruby +Sonia +Terrie +Trina +Verna +Vicky +Vivian +Amanda +Betsy +Bridgette +Camille +Cathleen +Della +Ella +Erin +Faith +Janis +Jeanine +Jenny +Joanna +Karin +Leigh +Lynette +Marian +Naomi +Pauline +Thomasine +Alexandra +Avis +Benita +Bernice +Darla +Dora +Erica +Ernestine +Florence +Gladys +Gretchen +Hope +Iris +Marietta +Maura +Mindy +Myra +Ramona +Rosa +Shawn +Tawanda +Towanda +Valencia +Vera +Alfreda +Alisa +Alma +Annie +Antionette +Billie +Carlene +Clare +Claudette +Dolores +Dorothea +Dottie +Eleanor +Gabrielle +Gale +Helena +Ida +James +Jayne +Jennie +Jewel +Kimberley +Lenora +Leona +Lorrie +Lynnette +Madeline +Margo +Marguerite +Maxine +Nicole +Patti +Rosalyn +Susie +Towana +Twanna +Viola +Agnes +Bertha +Bettina +Cecile +Chantay +Cheri +Courtney +Cristina +Danielle +Denice +Elisa +Elise +Erika +Esther +Eugenia +Eunice +Fay +Gayle +Gwen +Inga +Ingrid +Isabel +Jamie +Jana +Janette +Jeannie +Josephine +Juliet +Kristine +Latanya +Laurel +Lena +Letitia +Lora +Marcella +Margie +Marina +Martina +Maryann +Michael +Mona +Muriel +Pat +Penelope +Rene +Rosalind +Shellie +Sherrie +Sondra +Susanne +Tami +Tijuana +Towanna +Tracie +Twanda +Velma +Venita +Mary +Karen +Lisa +Sharon +Patricia +Susan +Linda +Deborah +Donna +Pamela +Cynthia +Robin +Jacqueline +Barbara +Sandra +Denise +Carolyn +Elizabeth +Cheryl +Angela +Laura +Michelle +Brenda +Carol +Catherine +Diane +Theresa +Kathleen +Teresa +Debra +Margaret +Nancy +Kathy +Wanda +Anne +Renee +Kim +Lori +Sheila +Janet +Kimberly +Janice +Jennifer +Suzanne +Julie +Terri +Valerie +Tina +Ann +Christine +Tammy +Darlene +Debbie +Maria +Monica +Michele +Stephanie +Beverly +Kelly +Yvette +Leslie +Victoria +Rebecca +Regina +Vanessa +Paula +Rhonda +Kathryn +Amy +Annette +Gail +Joyce +Ellen +Katherine +Laurie +Tonya +Tracy +Wendy +Helen +Beth +Andrea +Gwendolyn +Cindy +Dawn +Diana +Jean +Joan +Christina +Lynn +Ruth +Bonnie +Cathy +Gloria +Judy +Shirley +Judith +Jackie +Maureen +Anita +Marie +Rita +Sherry +Carla +Joanne +Veronica +Cassandra +Dorothy +Gina +Tanya +Vicki +Jane +Marcia +Yvonne +Elaine +Toni +Tracey +Frances +Martha +Melissa +Terry +Charlene +Dana +Phyllis +Sarah +Virginia +Alice +Jeanne +Jill +Julia +Caroline +Lauren +Colleen +Felicia +April +Shari +Anna +Antoinette +Constance +Evelyn +Lorraine +Melanie +Belinda +Crystal +Eileen +Grace +Jeanette +Robyn +Rose +Sherri +Sylvia +Tamara +Adrienne +Joann +Joy +Betty +Connie +Yolanda +Carole +Juanita +Laverne +Natalie +Audrey +Bonita +Charlotte +Doris +Rachel +Sandy +Sonya +Stacy +Vivian +Alicia +Cecelia +Deirdre +Lynne +Patrice +Shelia +Tawanna +Bernadette +Edith +Jacquelyn +Lynda +Marion +Marlene +Marsha +Peggy +Carrie +Delores +Heather +Holly +Loretta +Lydia +Penny +Roberta +Sara +Pam +Carmen +Claudia +Erin +Glenda +Lois +Marla +Mildred +Rochelle +Shelley +Vickie +Alison +Benita +Clare +Daphne +Ingrid +June +Katrina +Louise +Marianne +Nina +Norma +Saundra +Sheri +Stacey +Therese +Amanda +Arlene +Bridget +Gretchen +Jenifer +Jo +Lee +Melinda +Patty +Sheryl +Tami +Tara +Tawana +Emily +Esther +Francine +Gayle +Heidi +Jeannette +Jessica +Marilyn +Monique +Nadine +Ramona +Rosemary +Sally +Alexandra +Becky +Betsy +Deanna +Erica +Eva +Faye +Felecia +Geraldine +Irene +Paulette +Pauline +Priscilla +Sabrina +Shelly +Sue +Terrie +Towanda +Angie +Cecilia +Desiree +Dianne +Jan +Janis +Jody +Kelli +Lajuan +Latanya +Lawanda +Lenora +Marian +Marjorie +Maryann +Megan +Roxanne +Sheree +Sonja +Tawanda +Teri +Valencia +Allison +Ana +Angel +Antionette +Beatrice +Bridgette +Cheri +Claire +Colette +Danielle +Debora +Dianna +Doreen +Elisabeth +Eugenia +Evangeline +Faith +Harriet +Iris +Janie +Joanna +Karla +Kay +Kelley +Kellie +Kimberley +Lucy +Myra +Naomi +Patti +Penelope +Ronda +Rosemarie +Susanne +Tammie +Traci +Valarie +Alisa +Amelia +Angelia +Avis +Bernice +Camille +Carmelita +Cathleen +Celeste +Charmaine +Chiquita +Chris +Cornelia +Debby +Dorothea +Eleanor +Ella +Ethel +Eunice +Florence +Ginger +Gwen +Hilary +Jamie +Jeannine +John +Katharine +Katie +Kristin +Kristine +Leah +Lucinda +Lynette +Marcella +Maxine +Melody +Myrna +Nicole +Nora +Paige +Robbin +Rosalind +Sallie +Selena +Sherrie +Sonia +Trina +Vera +Verna +Abby +Adele +Carletta +Cherie +Courtney +Dale +Danette +Danita +Dena +Earlene +Elise +Ernestine +Eve +Germaine +Gladys +Helene +Jacquline +Janette +Jennie +Jewel +Jocelyn +Johnetta +Karin +Leila +Letitia +Lorrie +Maura +Mindy +Mona +Nanette +Rene +Rowena +Shannon +Shawn +Thelma +Venus +Vernetta +Vicky +Zena +Karen +Mary +Lisa +Linda +Susan +Deborah +Sharon +Donna +Cynthia +Patricia +Pamela +Elizabeth +Angela +Michelle +Robin +Cheryl +Barbara +Laura +Theresa +Sandra +Kathleen +Denise +Carolyn +Jennifer +Margaret +Sheila +Teresa +Diane +Jacqueline +Kimberly +Brenda +Carol +Debra +Stephanie +Catherine +Nancy +Lori +Christine +Kim +Ann +Maria +Wanda +Julie +Renee +Leslie +Kathy +Janet +Terri +Tina +Valerie +Tracy +Kelly +Anne +Beverly +Darlene +Suzanne +Tracey +Janice +Monica +Rhonda +Annette +Cathy +Andrea +Joyce +Sherry +Michele +Katherine +Anita +Judith +Tammy +Wendy +Victoria +Jean +Ellen +Gwendolyn +Tanya +Amy +Debbie +Lynn +Regina +Dawn +Beth +Carla +Shirley +Melissa +Rebecca +Cindy +Marie +Terry +Tonya +Cassandra +Colleen +Jane +Paula +Sarah +Veronica +Sherri +Virginia +Yvette +Judy +Robyn +Belinda +Bonnie +Laurie +Joan +Julia +Kathryn +Martha +Dana +Dorothy +Gina +Phyllis +Vicki +Christina +Diana +Maureen +Gail +Gloria +Helen +Toni +Jill +Yvonne +Felicia +Joanne +Sheryl +Charlene +Frances +Melanie +Rita +Antoinette +Jeanne +Crystal +Alice +Eileen +Tamara +Carole +Loretta +Natalie +Anna +Caroline +Rose +Ruth +Vanessa +Allison +Connie +Evelyn +Joann +Juanita +Nina +Penny +Sandy +Shari +Betty +Dianne +Jackie +Jeanette +Joy +Lynne +Stacey +Marcia +Marsha +April +Bonita +Constance +Deanna +Elaine +Lorraine +Roberta +Sherrie +Tracie +Alicia +Bridget +Katrina +Lynda +Sara +Shelia +Sylvia +Bernadette +Carmen +Deirdre +Marjorie +Melinda +Rosemary +Sally +Sonya +Stacy +Yolanda +Alison +Daphne +Geraldine +Glenda +Jeannette +Jessica +Monique +Doris +Francine +Holly +Shelley +Shelly +Tara +Tawanda +Vicky +Carrie +Cecilia +Claire +Delores +Dianna +Emily +Iris +Leigh +Louise +Marian +Marion +Marlene +Myra +Nadine +Pam +Peggy +Rachel +Sheri +Tawanna +Vickie +Arlene +Audrey +Cecelia +Grace +Jamie +Jo +Karla +Kristin +Priscilla +Ramona +Rochelle +Sabrina +Tawana +Adrienne +Doretha +Jacquelyn +Kimberley +Lolita +Lynette +Norma +Patrice +Towanda +Vivian +Becky +Benita +Charlotte +Cheri +Claudia +Danielle +Desiree +Dina +Faith +Heather +Laverne +Lois +Patty +Rosa +Towanna +Vera +Alesia +Deidre +Erin +Eva +June +Kelli +Lavonne +Leah +Lillian +Lydia +Rene +Shawn +Tammie +Valencia +Amanda +Beatrice +Betsy +Colette +Doreen +Hazel +Irene +Ivy +Jenny +Jody +Joni +Kelley +Kristen +Liz +Lora +Marguerite +Marilyn +Maura +Melody +Mona +Patti +Roxanne +Saundra +Antionette +Bridgette +Cherie +Dena +Eleanor +Elisa +Ernestine +Eve +Gayle +Geneva +Ginger +Heidi +Helene +Jan +Janine +Josephine +Justine +Kara +Karin +Kay +Kerry +Lawanda +Lee +Madeline +Marcella +Margo +Marianne +Marina +Maxine +Naomi +Nicole +Paulette +Rosalind +Sonia +Sonja +Teri +Traci +Trina +Alfreda +Amelia +Avis +Bobbie +Candace +Celeste +Claudette +Cornelia +Debora +Denice +Edwina +Erica +Esther +Florence +Gwen +Joanna +Jocelyn +Karyn +Katie +Krista +Lajuan +Lashawn +Latonya +Lillie +Lucy +Lynnette +Miriam +Nanette +Pauline +Terrie +Tiffany +Tonia +Vernell +Viola +Alisa +Allyson +Angel +Angie +Bethany +Brigitte +Celestine +Celia +Christie +Courtney +Dale +Darla +Dolores +Edna +Felecia +Freda +Gale +Georgia +Germaine +Gretchen +Inga +Ingrid +Jacalyn +Janis +Jeannie +Jodi +Kate +Kellie +Kristine +Lauren +Lorna +Marcy +Marietta +Marisa +Marla +Maryann +Nora +Shannon +Sharlene +Sharron +Simone +Sondra +Sophia +Susanne +Tami +Tammi +Thelma +Therese +Thomasine +Vernita +Lisa +Mary +Karen +Susan +Patricia +Deborah +Linda +Donna +Elizabeth +Robin +Sharon +Pamela +Angela +Cynthia +Michelle +Cheryl +Kimberly +Denise +Jacqueline +Barbara +Theresa +Sandra +Teresa +Jennifer +Laura +Stephanie +Maria +Brenda +Margaret +Tammy +Catherine +Kathleen +Carol +Christine +Nancy +Wanda +Lori +Tina +Diane +Kim +Tracy +Paula +Carolyn +Leslie +Darlene +Julie +Sheila +Renee +Kelly +Valerie +Anne +Andrea +Debra +Amy +Janet +Kathy +Dana +Michele +Monica +Anita +Beverly +Rhonda +Debbie +Rebecca +Terri +Annette +Katherine +Ann +Joyce +Sarah +Yvette +Regina +Suzanne +Charlene +Christina +Cindy +Veronica +Tonya +Wendy +Gail +Joan +Tracey +Janice +Sherry +Joanne +Victoria +Cathy +Carla +Cassandra +Dawn +Gloria +Judith +Terry +Anna +Diana +Ellen +Gwendolyn +Marie +Gina +Dorothy +Jean +Laurie +Melissa +Shirley +Kathryn +Tanya +Lynn +Martha +Melanie +Sherri +Crystal +Helen +Ruth +Sheryl +Virginia +Eileen +Julia +Robyn +Antoinette +Maureen +Stacey +Bonnie +Connie +Lorraine +Rose +Stacy +Vickie +Sylvia +Beth +Elaine +Jane +Yvonne +Alice +Colleen +Marsha +Phyllis +Tamara +Jeanette +Rita +Vanessa +Vivian +Frances +Jill +Judy +Penny +Vicki +Adrienne +April +Rochelle +Sonya +Yolanda +Natalie +Alicia +Allison +Daphne +Delores +Holly +Jessica +Joann +Rachel +Felicia +Jeanne +Katrina +Belinda +Bernadette +Carmen +Carole +Emily +Juanita +Marcia +Peggy +Roberta +Shelia +Alison +Betty +Bonita +Constance +Kerry +Lolita +Lynne +Marilyn +Melinda +Pam +Charlotte +Doris +Karla +Lauren +Loretta +Sara +Sharron +Dianne +Evelyn +Gayle +Kara +Latonya +Lois +Lynda +Marion +Monique +Nina +Shelly +Toni +Traci +Bridget +Carrie +Claudia +Deanna +Francine +Heidi +Marlene +Maxine +Nicole +Patrice +Paulette +Shari +Shelley +Tawanna +Audrey +Caroline +Deirdre +Heather +Jacquelyn +Jeannette +Mildred +Priscilla +Ramona +Sally +Shannon +Sheri +Tawana +Vera +Vicky +Doreen +Eleanor +Geraldine +June +Lawanda +Marianne +Patty +Rosemary +Sandy +Deidre +Desiree +Eva +Joanna +Kelley +Kimberley +Leigh +Lynette +Melody +Miriam +Nadine +Tawanda +Tracie +Trina +Alisa +Angelia +Cathleen +Cecelia +Dora +Elisa +Erica +Glenda +Jackie +Janine +Kelli +Kristin +Lora +Louise +Lydia +Marla +Molly +Sonja +Tara +Towanda +Valencia +Zina +Ana +Beatrice +Becky +Bernice +Danielle +Dianna +Dolores +Erin +Ernestine +Felecia +Gladys +Gretchen +Gwen +Iris +Jo +Kristen +Laverne +Lenora +Lillian +Lorrie +Marjorie +Naomi +Nora +Sabrina +Tammie +Therese +Tijuana +Alexandra +Alexis +Alfreda +Arlene +Avis +Bridgette +Caren +Cecilia +Claudette +Courtney +Dale +Edith +Helena +Hilary +Hillary +Inga +Irene +Jamie +Jenny +Jodi +Joy +Karin +Kristina +Kristine +Leah +Marcella +Michael +Norma +Rena +Rosa +Saundra +Shawn +Sherrie +Sonia +Stacie +Tami +Thelma +Venus +Zena +Adriene +Amanda +Antonia +Betsy +Brigitte +Caryn +Celeste +Cheri +Clara +Clarissa +Doretha +Dorothea +Edward +Elisabeth +Esther +Freda +Georgia +Hope +Jennie +Jewel +Kendra +Krista +Ladonna +Loren +Lorri +Mindy +Nannette +Patti +Shirl +Stefanie +Susie +Tricia +Abby +Alesia +Antionette +Bettina +Candace +Cara +Cherie +Chris +Claire +Clare +Darla +Elise +Emma +Eunice +Faith +Flora +Gabrielle +Geneva +Ginger +Hattie +Henrietta +Jeanine +Karyn +Katie +Kirsten +Lana +Lee +Letitia +Lorie +Lorna +Margo +Marquita +Melva +Meredith +Meta +Millicent +Mimi +Miranda +Nanette +Olivia +Penelope +Rosalind +Rosalyn +Shelby +Sheree +Sue +Susanne +Thomasine +Tia +Towana +Trudy +Twanna +Vernell +Wilma +Lisa +Mary +Karen +Angela +Susan +Patricia +Deborah +Elizabeth +Michelle +Pamela +Sharon +Kimberly +Donna +Linda +Jacqueline +Cynthia +Laura +Denise +Robin +Jennifer +Sandra +Cheryl +Diane +Kathleen +Teresa +Barbara +Tracy +Brenda +Stephanie +Christine +Theresa +Catherine +Kim +Carolyn +Maria +Carol +Julie +Dawn +Nancy +Margaret +Renee +Darlene +Tina +Valerie +Amy +Wanda +Ann +Wendy +Andrea +Kelly +Leslie +Monica +Debra +Katherine +Anne +Tonya +Kathy +Lori +Janet +Sheila +Tammy +Terri +Regina +Rhonda +Kathryn +Michele +Annette +Sarah +Rebecca +Paula +Tracey +Janice +Dana +Anita +Melissa +Crystal +Diana +Tanya +Yvette +Carla +Suzanne +Veronica +Charlene +Lynn +Joyce +Dorothy +Joanne +Victoria +Christina +Colleen +Helen +Phyllis +Shirley +Beverly +Debbie +Gwendolyn +Alice +Julia +Marie +Yolanda +Gina +Maureen +Gail +Jane +Melanie +Yvonne +Sylvia +Ellen +Tamara +Allison +Antoinette +Jeanne +Joan +Robyn +Terry +Alicia +Elaine +Sherry +Anna +Beth +Cathy +Cindy +Deneen +Eileen +Laurie +Sherri +Judy +Virginia +Belinda +Bonnie +Felicia +Gloria +Jean +Katrina +April +Jackie +Jill +Juanita +Ruth +Constance +Martha +Rita +Evelyn +Frances +Heather +Marcia +Stacy +Caroline +Judith +Lorraine +Betty +Nina +Paulette +Vanessa +Audrey +Dianne +Jeanette +Melinda +Patrice +Sabrina +Toni +Cassandra +Jessica +Joy +Lawanda +Natalie +Rachel +Stacey +Vicki +Carmen +Connie +Doris +Rose +Traci +Arlene +Lauren +Lynda +Lynette +Marilyn +Monique +Nicole +Sonya +Adrienne +Alexandra +Holly +Joann +Loretta +Marsha +Sally +Sonja +Tawanna +Amanda +Bernadette +Bridget +Bridgette +Carole +Delores +Jodi +Laverne +Peggy +Penny +Roberta +Rochelle +Shelley +Tammie +Alison +Carrie +Charlotte +Claudia +Deanna +Elisabeth +Hope +Lolita +Lynne +Melody +Shari +Shelly +Sheryl +Vickie +Zina +Doreen +Eva +Irene +Iris +Karla +Kellie +Louise +Marjorie +Priscilla +Sara +Sheri +Stacie +Sue +Tara +Tracie +Bonita +Cathleen +Danielle +Deirdre +Dianna +Dora +Emily +Felecia +Ingrid +Jocelyn +Kara +Margo +Marion +Saundra +Tawanda +Vicky +Cecelia +Cecilia +Eleanor +Elisa +Erin +Eugenia +Grace +Heidi +Helene +Jacquelyn +Jan +Jeannette +Jo +Karin +Kristin +Lora +Nadine +Pam +Sandy +Tawana +Valarie +Vivian +Angie +Antionette +Benita +Erika +Francine +Glenda +Janine +Joanna +Jody +Kelley +Kristine +Lashawn +Latonya +Leah +Marguerite +Marian +Miriam +Molly +Teri +Thomasine +Towanda +Alisa +Angelia +Betsy +Claire +Claudette +Courtney +Deidra +Deidre +Desiree +Dina +Elena +Eve +Gretchen +Jenny +Kelli +Kirsten +Kristi +Lee +Lois +Marla +Marlene +Mildred +Nora +Norma +Ramona +Rene +Robbin +Rosa +Rosalind +Shelia +Sonia +Susie +Thelma +Tiffany +Tonia +Vonda +Camille +Celeste +Cheri +Christy +Clare +Dolores +Doretha +Edith +Erica +Esther +Faith +Glynis +Greta +Helena +Janie +Jeannine +Kate +Kris +Kristen +Lajuan +Leigh +Lillian +Lydia +Marianne +Marina +Mona +Myra +Nanette +Patti +Pauline +Ronda +Rosemarie +Rosemary +Roxanne +Ruby +Sherrie +Tami +Trina +Valencia +Allyson +Angel +Becky +Chantay +Chris +Cristina +Danette +Dee +Dorothea +Ella +Ernestine +Ethel +Gay +Gayle +Geneva +Georgia +Geraldine +Gladys +Harriet +James +Janis +Jewell +June +Karyn +Kimberley +Lashon +Latanya +Lenora +Lesley +Letitia +Lorri +Lorrie +Lucia +Mara +Marci +Marietta +Martina +Maryann +Meg +Megan +Mia +Patty +Rachael +Rachelle +Renae +Renetta +Samantha +Shannon +Sharlene +Shawn +Sondra +Susanne +Terrie +Tonja +Twanda +Yolonda +Lisa +Karen +Mary +Angela +Kimberly +Susan +Michelle +Deborah +Patricia +Sharon +Cynthia +Pamela +Elizabeth +Donna +Laura +Linda +Denise +Cheryl +Robin +Jacqueline +Christine +Jennifer +Stephanie +Monica +Kim +Theresa +Dawn +Maria +Tracy +Catherine +Sandra +Kathleen +Barbara +Teresa +Wendy +Julie +Margaret +Carolyn +Michele +Renee +Kelly +Rhonda +Wanda +Nancy +Tina +Brenda +Tammy +Tracey +Andrea +Debra +Amy +Carol +Anne +Katherine +Tonya +Sheila +Valerie +Yvette +Paula +Diane +Christina +Melissa +Rebecca +Crystal +Victoria +Lori +Leslie +Suzanne +Annette +Darlene +Ann +Janice +Tanya +Martha +Anita +Dana +Janet +Kathy +Monique +Sarah +Stacey +Yolanda +Gina +Terri +Veronica +Beth +Carla +Maureen +Regina +Sherry +Debbie +Diana +Jill +Joyce +Kathryn +Marie +Charlene +Felicia +Laurie +Beverly +Shirley +Ellen +Sherri +Alice +Alicia +Juanita +Virginia +Cindy +Jane +Jean +Allison +Gloria +Joan +Julia +Phyllis +Yvonne +Gwendolyn +Melanie +Antoinette +Colleen +Dianne +Katrina +Rita +Sonya +Anna +Eileen +Frances +Ruth +Vanessa +Elaine +Heather +Joanne +Judith +Lynn +Vickie +April +Bonnie +Cathy +Danielle +Sheri +Sylvia +Caroline +Heidi +Judy +Kristin +Cassandra +Jeanette +Kecia +Marcia +Stacy +Terry +Bernadette +Helen +Jessica +Mia +Tamara +Adrienne +Constance +Evelyn +Jeanne +Lauren +Sheryl +Vicki +Gail +Holly +Joann +Lynette +Marilyn +Marjorie +Melody +Penny +Shelly +Traci +Betty +Jackie +Jodi +Kellie +Loretta +Lorraine +Marsha +Natalie +Nicole +Rachel +Rose +Toni +Deanna +Dorothy +Emily +Kimberley +Latonya +Lolita +Lynda +Paulette +Robyn +Sara +Shelley +Amanda +Kristen +Lashawn +Louise +Melinda +Patrice +Rosalind +Samantha +Tawana +Vivian +Angelia +Audrey +Belinda +Benita +Bridgette +Connie +Hope +Janine +Kara +Karin +Marlene +Priscilla +Roberta +Roxanne +Shelia +Sonia +Stacie +Tracie +Alexandra +Claudia +Courtney +Eva +Ingrid +Jeannette +Jo +Joy +Kristina +Kristine +Lawanda +Marion +Rochelle +Sally +Trina +Alison +Cathleen +Daphne +Esther +Iris +Jacquelyn +Jamie +Karla +Kelli +Lillian +Lynne +Nadine +Nina +Peggy +Sabrina +Tammie +Valencia +Carrie +Elisabeth +Faith +Francine +Freda +Kelley +Megan +Myra +Shari +Shawn +Sonja +Teri +Tonia +Twanda +Vonda +Ana +Candace +Cara +Carmen +Charlotte +Cherie +Deidre +Doris +Jan +Laverne +Marian +Miriam +Moira +Naomi +Ronda +Susanne +Tawanna +Vera +Alisa +Annie +Antionette +Beatrice +Bonita +Bridget +Carole +Celeste +Dianna +Dina +Elena +Erica +Erika +Erin +Gayle +Glenda +Grace +Marianne +Nora +Patti +Rene +Tara +Tawanda +Adrianne +Agnes +Angie +Ava +Cecelia +Cecilia +Cheri +Claire +Clare +Colette +Danette +Deirdre +Delores +Deneen +Desiree +Dionne +Doreen +Edna +Elise +Hilary +Jacquline +Jana +Jocelyn +June +Justine +Kirsten +Krista +Latonia +Leigh +Lesa +Lorrie +Lydia +Marisa +Pam +Rosalyn +Rosemary +Sandy +Sarita +Saundra +Sherrie +Sophia +Tami +Terrie +Tiffany +Tonja +Vicky +Adina +Alfreda +Althea +Angelique +Arlene +Becky +Bridgett +Brigitte +Candice +Dolores +Edith +Felecia +Florence +Ginger +Irene +Jenny +Joanna +Juliette +Katie +Kendra +Kerry +Lajuan +Lesley +Lorri +Marguerite +Maxine +Meredith +Molly +Mona +Rosa +Shannon +Shirl +Stefanie +Suzette +Valeria +Valorie +Zina +Lisa +Kimberly +Mary +Karen +Michelle +Angela +Jennifer +Deborah +Susan +Elizabeth +Cynthia +Patricia +Pamela +Laura +Sharon +Kim +Donna +Tracy +Christine +Cheryl +Denise +Jacqueline +Linda +Kathleen +Tonya +Stephanie +Amy +Theresa +Sandra +Barbara +Robin +Michele +Julie +Maria +Teresa +Tracey +Catherine +Kelly +Margaret +Carolyn +Monica +Anne +Dawn +Tina +Andrea +Brenda +Valerie +Renee +Debra +Lori +Katherine +Sheila +Regina +Rhonda +Leslie +Diane +Nancy +Tammy +Ann +Melissa +Dana +Carol +Wendy +Yvette +Christina +Rebecca +Tanya +Nicole +Terri +Wanda +Carla +Gina +Paula +Victoria +Anita +Annette +Stacey +Darlene +Kathryn +Suzanne +Janet +Jill +Joyce +Sarah +Felicia +Janice +Veronica +Beverly +Stacy +Anna +Ellen +Yolanda +Bonnie +Diana +Maureen +April +Lauren +Laurie +Marie +Alicia +Charlene +Monique +Vanessa +Cassandra +Colleen +Sherri +Sonya +Dorothy +Heather +Natalie +Tracie +Yvonne +Amanda +Kathy +Phyllis +Sherry +Caroline +Gwendolyn +Jane +Jean +Martha +Beth +Charlotte +Crystal +Gail +Joan +Julia +Katrina +Judith +Traci +Cathy +Gloria +Latonya +Rachel +Samantha +Cindy +Helen +Terry +Trina +Vicki +Virginia +Jessica +Lynda +Sabrina +Shannon +Tamara +Alice +Deirdre +Kristine +Lynn +Nina +Ruth +Constance +Danielle +Evelyn +Juanita +Kristen +Robyn +Sonja +Allison +Bridget +Erin +Hope +Kristin +Rita +Shawn +Shirley +Sylvia +Adrienne +Bridgette +Debbie +Frances +Jeanne +Joy +Kimberley +Tara +Toni +Antoinette +Eileen +Elaine +Joanne +Jodi +Judy +Loretta +Melanie +Shelley +Shelly +Sheryl +Vickie +Vivian +Audrey +Bonita +Carrie +Deanna +Jeanette +Joann +Paulette +Sandy +Sheri +Courtney +Heidi +Melinda +Rochelle +Shelia +Tawana +Belinda +Eleanor +Elisabeth +Faith +Iris +Jackie +Krista +Laverne +Lynette +Lynne +Marcia +Nadine +Penny +Sonia +Tawanna +Bernadette +Connie +Doris +Emily +Karla +Kristina +Lajuan +Lorraine +Marian +Marianne +Marilyn +Paige +Sherrie +Tawanda +Tonia +Alexandra +Alison +Beatrice +Carmen +Cathleen +Delores +Dianna +Grace +Ingrid +Jacquelyn +Janine +Jody +Lesley +Lora +Marcella +Marlene +Noelle +Patrice +Roberta +Rose +Stacie +Tabatha +Tia +Valencia +Anthony +Claudia +Deidre +Eva +Francine +Hilary +Inga +Jeannette +Joanna +Karin +Kelley +Kirsten +Lashawn +Lillian +Lydia +Marsha +Megan +Melody +Miriam +Nora +Peggy +Sara +Serena +Tiffany +Tonja +Alisa +Audra +Candace +Carole +Catrina +Cecilia +Chantay +Claire +Daphne +Desiree +Dianne +Geraldine +Glenda +Jo +Lashaun +Latanya +Lee +Lolita +Mia +Mona +Naomi +Rene +Rosa +Rosalind +Roxanne +Shari +Sophia +Stefanie +Ursula +Angelia +Becky +Betty +Brigette +Brigitte +Camille +Cara +Charmaine +Danita +Dena +Doreen +Edith +Elena +Elisa +Erica +Erika +Ethel +Gayle +Greta +Holly +Jenny +Justine +Kelli +Kellie +Lashon +Lauri +Leah +Louise +Marguerite +Marion +Marisa +Marjorie +Maura +Norma +Ramona +Sharron +Susanne +Therese +Valarie +Venus +Aimee +Ana +Angie +Annie +Arlene +Avis +Celestine +Clara +Clare +Colette +Courtenay +Deana +Deneen +Denice +Dina +Dionne +Dominique +Elise +Eugenia +Gale +Harriet +Helena +James +Jamie +Kendra +Kerry +Lara +Latonia +Latrice +Leigh +Lena +Lorna +Mara +Margo +Mindy +Molly +Myra +Noreen +Priscilla +Ronda +Rosemary +Roxane +Sarita +Saundra +Sheree +Sue +Tatia +Thea +Thelma +Vernita +Vicky +Wendi +Lisa +Kimberly +Michelle +Karen +Angela +Mary +Elizabeth +Jennifer +Stephanie +Pamela +Tracy +Sharon +Patricia +Susan +Laura +Denise +Deborah +Cynthia +Sandra +Melissa +Christine +Robin +Amy +Theresa +Linda +Tonya +Donna +Maria +Monica +Jacqueline +Wendy +Dawn +Catherine +Kathleen +Kelly +Teresa +Cheryl +Andrea +Michele +Tina +Margaret +Sheila +Barbara +Tracey +Julie +Christina +Sabrina +Debra +Kim +Carolyn +Tammy +Valerie +Katherine +Leslie +Nancy +Anne +Brenda +Regina +Renee +Tanya +Victoria +Rhonda +Yvette +Diane +Lori +Paula +Ann +Carol +April +Veronica +Nicole +Suzanne +Stacey +Sarah +Yolanda +Crystal +Rebecca +Terri +Dana +Gina +Carla +Kristin +Vanessa +Anita +Annette +Wanda +Diana +Felicia +Sherri +Charlene +Kathryn +Katrina +Stacy +Beth +Colleen +Lashawn +Yvonne +Janet +Janice +Sonya +Monique +Sherry +Bernadette +Ellen +Julia +Marie +Darlene +Kathy +Lynn +Cassandra +Heather +Anna +Antoinette +Jill +Juanita +Melanie +Maureen +Jean +Joyce +Judith +Laurie +Trina +Gwendolyn +Jeanette +Nina +Alicia +Helen +Joy +Kristen +Lauren +Natalie +Sara +Kimberley +Patrice +Rachel +Tamara +Tonia +Belinda +Caroline +Dorothy +Gail +Holly +Jane +Jessica +Samantha +Virginia +Alisa +Bonnie +Courtney +Deanna +Erika +Joanne +Melinda +Paulette +Rochelle +Stefanie +Adrienne +Allison +Debbie +Eileen +Gloria +Joan +Toni +Traci +Amanda +Audrey +Beverly +Evelyn +Kristina +Megan +Shawn +Sheri +Terry +Alexandra +Alice +Bridget +Charlotte +Joann +Kristine +Lorraine +Ruth +Tara +Vicki +Vivian +Alison +Cindy +Danielle +Dionne +Emily +Jeanne +Lara +Leigh +Lolita +Lynette +Marsha +Peggy +Rita +Robyn +Rose +Shelly +Tiffany +Claudia +Heidi +Marcia +Shelia +Shelley +Sylvia +Tracie +Antionette +Elaine +Erin +Hope +Latonya +Lawanda +Lynda +Martha +Mia +Shirley +Vickie +Carrie +Connie +Constance +Grace +Jacquelyn +Leah +Nadine +Natasha +Phyllis +Ronda +Aretha +Carole +Claire +Frances +Ingrid +Judy +Kari +Latanya +Lesley +Loretta +Louise +Nichelle +Roberta +Sally +Sherrie +Ana +Arlene +Audra +Bridgette +Camille +Cathy +Cheri +Deirdre +Doris +Elena +Erica +Janine +Jo +Joanna +Jody +Lashon +Margo +Marilyn +Marjorie +Romona +Shannon +Shari +Sharron +Sheryl +Sonia +Sophia +Staci +Tawana +Tawanna +Vicky +Bernice +Betty +Cathryn +Charnita +Cristina +Daphne +Denice +Desiree +Doreen +Jackie +Karin +Karla +Kelli +Kerry +Kirsten +Laverne +Lillian +Marion +Meredith +Miriam +Olivia +Priscilla +Raquel +Tania +Terrie +Tijuana +Valarie +Valencia +Angelia +Anissa +Carmen +Clara +Debora +Eva +Francine +Georgia +Glenda +Janell +Jeannette +Jenny +Johanna +Kelley +Lajuan +Lashan +Lashaun +Lucy +Marlene +Mindy +Molly +Mona +Naomi +Norma +Rene +Rosa +Roslyn +Sharlene +Sheree +Sonja +Stacie +Tawanda +Abigail +Adrian +Alberta +Alexis +Alisia +Beatrice +Bonita +Candice +Cara +Carletta +Cathleen +Catrina +Cecelia +Chandra +Cherie +Chiquita +Christie +Christy +Deena +Edith +Elisa +Elisabeth +Ella +Esther +Florence +Gale +Germaine +Giselle +Janie +Jeanine +Jeannie +Jeannine +Jodi +Joelle +Kara +Kendra +Ladonna +Lanette +Lea +Leanne +Lee +Lenora +Lydia +Marci +Marquita +Martina +Melody +Michell +Pauline +Renita +Rosemarie +Roxanne +Sarita +Shellie +Simone +Suzette +Tammi +Tasha +Tonja +Ursula +Lisa +Michelle +Kimberly +Jennifer +Karen +Angela +Mary +Susan +Elizabeth +Laura +Tracy +Pamela +Christine +Stephanie +Sharon +Melissa +Monica +Amy +Robin +Deborah +Patricia +Donna +Andrea +Michele +Linda +Tonya +Christina +Kathleen +Kelly +Sandra +Cynthia +Dawn +Crystal +Barbara +Denise +Julie +Theresa +Maria +Leslie +Catherine +Jacqueline +Wendy +Cheryl +Kim +Renee +Carolyn +Tracey +Tammy +Tanya +Katherine +Margaret +Diane +Regina +Anne +Teresa +Victoria +Tina +Yolanda +Paula +Rebecca +Nicole +Rhonda +Carla +Debra +Nancy +Diana +Valerie +Ann +Lori +Katrina +Carol +Sarah +Sheila +Suzanne +Gina +Heather +Stacey +Monique +Julia +Terri +Janice +Lashawn +Darlene +Lynn +Rachel +Sherry +Dana +Stacy +Veronica +Felicia +Kathryn +Sonya +Brenda +Charlene +Traci +Kristen +Shannon +Alicia +Anita +Colleen +Janet +Jessica +Jill +Marie +Tamara +Anna +Cassandra +Sabrina +Holly +Kristin +Vanessa +Wanda +Joyce +Sherri +Yvette +Ellen +Erin +Lynette +Ruth +Tracie +Adrienne +Alice +Antoinette +Dionne +Helen +Megan +Annette +Beth +Cindy +Courtney +Evelyn +Kristine +Lauren +Nichelle +Samantha +April +Danielle +Elaine +Gloria +Shelley +Tara +Toni +Yvonne +Bernadette +Emily +Kathy +Melanie +Sara +Tammie +Trina +Allison +Gwendolyn +Joanne +Marcia +Patrice +Robyn +Tonia +Amanda +Beverly +Bonnie +Bridget +Dorothy +Erika +Judith +Kimberley +Laurie +Martha +Natalie +Shelly +Sheri +Tiffany +Alexandra +Angelique +Belinda +Erica +Jane +Jodi +Juanita +Melinda +Ronda +Shawn +Sonja +Carrie +Deirdre +Jean +Kara +Kristina +Maureen +Alisa +Carmen +Caroline +Charlotte +Claudia +Gail +Jeanette +Joy +Kelley +Kelli +Lara +Latonya +Meredith +Rita +Rochelle +Terry +Vicki +Virginia +Vivian +Christy +Constance +Deena +Joan +Joanna +Kerry +Marsha +Stacie +Bonita +Connie +Hope +Iris +Nina +Ramona +Raquel +Sheryl +Tammi +Tricia +Abigail +Alison +Arlene +Audrey +Cathy +Deana +Deanna +Debbie +Desiree +Doris +Elisabeth +Francine +Jamie +Jo +Joann +Leah +Lolita +Lora +Lorraine +Mia +Molly +Penny +Sandy +Shirley +Aretha +Delores +Eileen +Elise +Heidi +Hilary +Jeannette +Karin +Katharine +Ladonna +Lena +Lesley +Marla +Marlene +Melody +Miranda +Rose +Shari +Sophia +Sylvia +Tawanda +Althea +Angie +Anissa +Ashley +Audra +Beatrice +Becky +Bridgette +Cara +Cecelia +Claire +Colette +Dina +Ethel +Frances +Jenifer +Judy +Kendra +Kirsten +Kristi +Lynda +Natasha +Roberta +Saundra +Sonia +Tami +Tia +Valarie +Ana +Angelia +Angelina +Betty +Camille +Candy +Carole +Catrina +Celeste +Chandra +Cheri +Coretta +Danita +Debora +Deneen +Elena +Ericka +Eva +Grace +Ingrid +Jacquelyn +Jeanne +Johanna +Laverne +Lea +Letitia +Lillian +Lorrie +Louise +Lynne +Marcella +Marilyn +Marion +Marisa +Noelle +Paulette +Pauline +Rosa +Selena +Susanne +Therese +Towanda +Valeria +Wendi +Aileen +Annemarie +Caren +Carletta +Claudette +Daphne +Dianna +Dianne +Dolores +Dominique +Faye +Felecia +Florence +Gayle +Gillian +Irene +Jody +Josette +Karla +Kellie +Kia +Krista +Kristie +Kristy +Lana +Lashon +Lee +Leigh +Loretta +Lydia +Marjorie +Marlo +Michael +Michell +Miriam +Mona +Noel +Norma +Peggy +Phyllis +Priscilla +Randi +Sally +Sharron +Sherita +Sherrie +Tabatha +Tabitha +Tamiko +Tawana +Teri +Tomiko +Vera +Vicky +Lisa +Kimberly +Jennifer +Michelle +Karen +Angela +Mary +Stephanie +Tracy +Pamela +Laura +Susan +Elizabeth +Christine +Patricia +Nicole +Deborah +Cynthia +Christina +Amy +Julie +Theresa +Dawn +Melissa +Monica +Sharon +Cheryl +Kelly +Jacqueline +Kathleen +Donna +Teresa +Tonya +Denise +Andrea +Heather +Linda +Tina +Katherine +Leslie +Maria +Tracey +Yolanda +Catherine +Michele +Tammy +Sandra +Barbara +Rhonda +Robin +Lori +Wendy +Renee +Dana +Victoria +Crystal +Margaret +Rachel +Tanya +Stacy +Valerie +Nancy +Anne +Felicia +Rebecca +Brenda +Carolyn +Shannon +Alicia +Carla +Regina +Stacey +Kim +Sabrina +Ann +Sarah +Kristin +Debra +Katrina +Veronica +Erica +Julia +Lashawn +Monique +Carol +Jill +Paula +Sonya +Suzanne +Danielle +Diane +Terri +Kristen +Wanda +Anita +April +Beth +Erin +Samantha +Sheila +Vanessa +Anna +Cassandra +Gina +Kathryn +Charlene +Janice +Lynn +Sara +Tara +Jessica +Rochelle +Erika +Sherry +Cindy +Janet +Judith +Toni +Yvette +Allison +Helen +Lauren +Nichole +Tiffany +Diana +Kelli +Laurie +Sheri +Tamara +Alexandra +Kimberley +Marcia +Melanie +Traci +Adrienne +Elaine +Kristina +Patrice +Trina +Colleen +Ellen +Joyce +Kara +Kathy +Latonya +Megan +Amanda +Antoinette +Darlene +Shirley +Tracie +Caroline +Dionne +Holly +Juanita +Kelley +Kirsten +Lara +Paulette +Alison +Cherie +Courtney +Gwendolyn +Heidi +Jane +Joann +Lashaun +Lolita +Melinda +Ronda +Sonia +Yvonne +Bonnie +Carmen +Dorothy +Eileen +Emily +Gloria +Kristine +Lashon +Leigh +Lynette +Natalie +Shawn +Shelly +Bridget +Deanna +Evelyn +Hope +Jeanne +Joan +Marie +Maureen +Meredith +Sherri +Sonja +Annette +Belinda +Deirdre +Martha +Nina +Rachelle +Ruth +Shelia +Sophia +Stacie +Stefanie +Vicki +Virginia +Alice +Alisa +Audrey +Carrie +Connie +Debbie +Frances +Ingrid +Jacquelyn +Keisha +Kellie +Kerry +Lorraine +Marsha +Robyn +Valencia +Angel +Charlotte +Christy +Claudia +Danita +Delores +Dina +Jean +Karin +Latanya +Mia +Rosalind +Shelley +Sheryl +Tammie +Tania +Tawana +Tonia +Angelique +Anissa +Audra +Deena +Joanne +Joy +Juliet +Karla +Loretta +Melody +Mona +Penny +Stella +Sylvia +Tonja +Tricia +Vivian +Arlene +Benita +Beverly +Bridgette +Camille +Cathy +Catrina +Celeste +Chandra +Elena +Gail +Joanna +Jodi +Kendra +Lawanda +Lorna +Lynne +Marjorie +Marlo +Martina +Miriam +Molly +Naomi +Natasha +Nichelle +Rita +Roberta +Serena +Tabitha +Alethea +Alexis +Ana +Antionette +Bernadette +Candace +Cecilia +Constance +Daphne +Desiree +Dianne +Doris +Elisa +Francine +Jamie +Jeannette +Kecia +Krista +Louise +Lynda +Marnie +Paige +Rena +Roxanne +Sharlene +Sharron +Tami +Tammi +Tawanda +Vickie +Aretha +Ashley +Becky +Brooke +Christa +Cristina +Deana +Debora +Dena +Edith +Geraldine +Gretchen +Hilary +Irene +Iris +Ivy +Jeanette +Johanna +Judy +Katharine +Lajuan +Lavonne +Lesley +Lora +Marian +Marianne +Marilyn +Marion +Maxine +Meghan +Nadine +Phyllis +Raquel +Rene +Rosalyn +Sally +Tabatha +Tasha +Tawanna +Terry +Ursula +Wendi +Aimee +Angelia +Angie +Betty +Carole +Charmaine +Cherise +Christiana +Coretta +Deidra +Deidre +Deshawn +Dolores +Dora +Elisabeth +Ernestine +Eugenia +Glenda +Grace +Hillary +Jenifer +Jenny +Jewel +Jo +Jodie +Justine +Kristi +Kristie +Kristy +Latisha +Laverne +Leah +Lee +Letitia +Marci +Marisa +Marla +Pauline +Phoebe +Robbin +Rose +Rosemary +Saundra +Shari +Sharonda +Shawna +Shea +Staci +Suzette +Sydney +Tia +Tisha +Jennifer +Kimberly +Michelle +Lisa +Angela +Karen +Elizabeth +Nicole +Stephanie +Amy +Tracy +Mary +Laura +Pamela +Christine +Christina +Melissa +Cynthia +Monica +Crystal +Susan +Heather +Tonya +Dawn +Kelly +Patricia +Deborah +Donna +Michele +Yolanda +Shannon +Sharon +Andrea +Julie +Sabrina +Wendy +Tammy +Catherine +Denise +Stacey +Rebecca +Lashawn +Renee +Katherine +Robin +Tracey +Maria +Sarah +Cheryl +Linda +Sandra +Tara +Barbara +Dana +Margaret +Kathleen +Leslie +Tanya +Teresa +Theresa +Tina +Kim +Erin +Rhonda +Jacqueline +Monique +Danielle +Felicia +Stacy +Victoria +Carla +Lori +Regina +Dionne +Valerie +Wanda +Alicia +Veronica +Kristin +Rachel +Anita +Carolyn +Carrie +Katrina +Amanda +Diana +Anne +Kathryn +Tiffany +Ann +Antoinette +Jessica +Nancy +Sherry +April +Carol +Lauren +Jill +Paula +Suzanne +Brenda +Cassandra +Debra +Erica +Melanie +Vanessa +Yvette +Charlene +Kristen +Erika +Sheila +Tonia +Allison +Colleen +Tamara +Emily +Adrienne +Alisa +Diane +Ellen +Janet +Julia +Patrice +Natalie +Kelli +Latonya +Leah +Samantha +Terri +Anna +Beth +Beverly +Caroline +Megan +Traci +Alexandra +Alison +Bonnie +Darlene +Gina +Marie +Sherri +Sonya +Tracie +Kimberley +Janice +Kristina +Lajuan +Lara +Maureen +Sheryl +Carmen +Christy +Cindy +Deanna +Dorothy +Judith +Marcia +Rochelle +Shawn +Shelly +Alice +Annette +Bridget +Eileen +Joan +Joanne +Joyce +Kathy +Kristine +Lolita +Lynn +Ronda +Shirley +Toni +Ashley +Heidi +Helen +Kellie +Kirsten +Laurie +Lorraine +Sara +Stefanie +Tawana +Trina +Yvonne +Candace +Cherie +Ericka +Gwendolyn +Holly +Jane +Krista +Marsha +Meredith +Ruth +Tammie +Vicki +Vivian +Elaine +Frances +Jean +Jeanne +Joanna +Kara +Karla +Keisha +Kendra +Natasha +Priscilla +Rita +Rosalind +Shelley +Tia +Angelique +Candice +Cathy +Charlotte +Christie +Claudia +Francine +Gail +Gloria +Iris +Jocelyn +Joy +Juanita +Marian +Nichelle +Nichole +Paulette +Sonia +Bernadette +Camille +Charnita +Danita +Deidre +Eleanor +Elena +Evelyn +Irene +Joann +Loretta +Lynette +Martha +Phyllis +Roxanne +Sharron +Sonja +Sylvia +Tammi +Virginia +Angel +Belinda +Bridgett +Carletta +Chandra +Courtney +Desiree +Gretchen +Ingrid +Jamie +Kia +Lashon +Lawanda +Lee +Leigh +Lesley +Lydia +Marjorie +Melinda +Rachael +Robyn +Tabitha +Tawanna +Terry +Tricia +Aimee +Alexis +Ana +Arlene +Audrey +Christa +Ginger +Grace +Jeanette +Jeanine +Jeannine +Karin +Katharine +Kelley +Lillian +Marianne +Marla +Mia +Molly +Nadine +Paige +Ramona +Rose +Serena +Stacie +Tisha +Toya +Tyra +Valencia +Vickie +Willette +Betty +Bobbie +Bridgette +Cheri +Claire +Colette +Connie +Constance +Demetria +Dena +Dianne +Glenda +India +Janine +Jenifer +Judy +Karyn +Lavonne +Marion +Marlo +Marquita +Mildred +Miriam +Renita +Rolanda +Sandy +Shawna +Sherrie +Tisa +Ursula +Wendi +Anastasia +Anjanette +Cara +Carlita +Carole +Celeste +Corinne +Cristina +Danette +Daphne +Debora +Denita +Detra +Dietra +Dina +Edith +Elisa +Eve +Gabrielle +Genevieve +Hope +Jan +Jewell +Jodi +Johanna +Juliet +Kerry +Kimberlee +Kristy +Krystal +Latanya +Latonia +Lorrie +Marcy +Marilyn +Marina +Maura +Maxine +Maya +Melody +Myra +Peggy +Raquel +Robert +Roberta +Roslyn +Shana +Shauna +Shelia +Sheri +Silvia +Tasha +Tawanda +Terrie +Veda +Vicky +Jennifer +Michelle +Lisa +Angela +Kimberly +Nicole +Karen +Stephanie +Amy +Elizabeth +Mary +Melissa +Christine +Heather +Tracy +Laura +Monica +Christina +Susan +Cynthia +Crystal +Denise +Dawn +Pamela +Sarah +Sharon +Andrea +Patricia +Robin +Tonya +Julie +Deborah +Dana +Kelly +Lashawn +Catherine +Theresa +Yolanda +Erica +Rebecca +Tina +Donna +Renee +Stacey +Wendy +Jacqueline +Kathleen +Maria +Tammy +Tara +Tiffany +Kathryn +Regina +Sabrina +Anne +Barbara +Katherine +Stacy +Tanya +Teresa +Shannon +Linda +Rhonda +Cheryl +Dionne +Felicia +Leslie +April +Erin +Jessica +Nancy +Allison +Erika +Katrina +Margaret +Monique +Rachel +Sandra +Michele +Tracey +Diane +Kristin +Victoria +Danielle +Terri +Veronica +Adrienne +Carolyn +Latonya +Lori +Charlene +Yvette +Ann +Anna +Brenda +Carla +Cassandra +Debra +Jill +Melanie +Amanda +Colleen +Kim +Natalie +Shirley +Antoinette +Ericka +Patrice +Wanda +Darlene +Diana +Nichole +Samantha +Sheila +Sherry +Suzanne +Anita +Courtney +Marie +Natasha +Carol +Holly +Janet +Latanya +Megan +Sonya +Tracie +Vanessa +Alicia +Carrie +Joyce +Stacie +Tamara +Valerie +Alison +Julia +Kristina +Lynn +Annette +Janice +Paula +Sara +Virginia +Christy +Gwendolyn +Kristen +Rita +Shawn +Trina +Yvonne +Angel +Carmen +Ellen +Gloria +Juanita +Kendra +Martha +Shelley +Alexandra +Gina +Kia +Rochelle +Tawanna +Tia +Beth +Dorothy +Heidi +Helen +Joan +Judith +Kathy +Kelley +Lauren +Marcia +Robyn +Shelly +Traci +Alice +Belinda +Beverly +Caroline +Cindy +Ingrid +Kirsten +Lara +Maureen +Molly +Nichelle +Tawana +Bridget +Cristina +Desiree +Joanna +Kara +Kristie +Kristine +Lajuan +Leah +Melinda +Meredith +Sherri +Sonja +Tasha +Candice +Cathy +Christie +Emily +Evelyn +Hope +India +Jane +Jean +Joy +Laurie +Lawanda +Nikki +Valencia +Anissa +Bonnie +Camille +Candace +Demetria +Doris +Edith +Jamie +Jeanne +Keisha +Kerry +Lashaun +Lynette +Mia +Ramona +Tabitha +Terry +Ana +Cherie +Danita +Daphne +Deanna +Jody +Karin +Kelli +Kisha +Marsha +Phyllis +Rachael +Roberta +Ruth +Sheryl +Tammie +Tricia +Vicki +Alisa +Allyson +Anika +Bernadette +Claire +Eileen +Gail +Hilary +Jocelyn +Lashon +Meghan +Melody +Michael +Nina +Paulette +Penny +Rachelle +Rose +Shana +Sherita +Sherrie +Sonia +Staci +Stefanie +Tarsha +Tawanda +Toni +Tonia +Adrian +Aimee +Audrey +Ayanna +Betty +Bonita +Chandra +Colette +Elaine +Elena +Elisabeth +Eva +Ginger +Jacquelyn +Janel +Jeanette +Joanne +Juliet +Karla +Karyn +Kesha +Keshia +Latasha +Letitia +Lorie +Lorraine +Lydia +Malaika +Margo +Marjorie +Njeri +Nneka +Raquel +Ronda +Roxanne +Sally +Sylvia +Therese +Tisha +Towanda +Vivian +Amber +Antonia +Arlene +Ava +Bobbie +Catrina +Celeste +Chantal +Charlotte +Charmaine +Claudia +Connie +Constance +Corinne +Debbie +Deirdre +Delores +Demetra +Dianne +Dina +Faith +Germaine +Glenda +Grace +Helena +Iris +Janelle +Jewell +Joann +Jodi +Johanna +Kate +Katharine +Kenya +Kenyetta +Kimberley +Krista +Kristi +Kristy +Ladonna +Lakisha +Lashonda +Latricia +Lee +Lillian +Lily +Lynda +Lynnette +Mara +Marci +Marianne +Marla +Marlene +Nicolle +Octavia +Sandy +Selena +Shawna +Shelby +Sheri +Tami +Tammi +Tania +Tera +Toya +Tyra +Venus +Jennifer +Michelle +Lisa +Kimberly +Angela +Nicole +Stephanie +Elizabeth +Amy +Melissa +Christine +Karen +Mary +Crystal +Andrea +Rebecca +Sarah +Tanya +Yolanda +Heather +Laura +Kelly +Julie +Sharon +Monica +Cynthia +Dana +Dawn +Katina +Tonya +Susan +Patricia +Katrina +Lashawn +Pamela +Tracy +Tara +Catherine +Jessica +Christina +Erica +Wendy +Cheryl +Katherine +Shannon +Michele +Monique +Theresa +Deborah +Denise +Kathleen +Maria +Rachel +Tammy +April +Teresa +Tina +Robin +Erin +Leslie +Sandra +Barbara +Erika +Felicia +Stacy +Lori +Donna +Kathryn +Tiffany +Kristin +Linda +Rhonda +Stacey +Danielle +Jacqueline +Melanie +Renee +Vanessa +Alicia +Allison +Kristen +Sabrina +Tracey +Tracie +Carrie +Nancy +Tamara +Catina +Diane +Victoria +Debra +Marie +Patrice +Margaret +Paula +Alison +Beverly +Carolyn +Diana +Natasha +Regina +Rochelle +Sheila +Suzanne +Alexandra +Anna +Anne +Carla +Carol +Caroline +Cassandra +Ericka +Jill +Keisha +Kim +Nichole +Trina +Valerie +Anita +Holly +Julia +Megan +Nikki +Terri +Ann +Brenda +Darlene +Emily +Natalie +Shelley +Veronica +Latanya +Nina +Amanda +Charlene +Dionne +Latonya +Sherry +Wanda +Adrienne +Antoinette +Kimberley +Melinda +Carmen +Frances +Gwendolyn +Helen +Juanita +Kendra +Lara +Lynn +Maureen +Sara +Sherri +Traci +Annette +India +Janet +Kara +Kirsten +Kisha +Kristi +Martha +Rita +Sharron +Sonya +Virginia +Belinda +Hope +Joanna +Joyce +Kristina +Lakesha +Lakisha +Latrice +Lauren +Laurie +Mia +Stacie +Tasha +Tia +Alisa +Beth +Christy +Claudia +Colleen +Dorothy +Gina +Heidi +Keesha +Latisha +Lynette +Melody +Nadine +Robyn +Sonja +Sylvia +Tawana +Toni +Angel +Anika +Bonnie +Cindy +Cristina +Demetria +Elisabeth +Ellen +Janice +Jeanette +Joy +Katrice +Lajuan +Latonia +Lolita +Lora +Marcia +Samantha +Sonia +Tisha +Yvette +Alice +Ashley +Ayanna +Bridgette +Chamisa +Courtney +Dominique +Joann +Karin +Keri +Kristine +Loretta +Meghan +Meredith +Shawn +Shelly +Teri +Abigail +Aimee +Ana +Angelique +Camilla +Candace +Catrina +Chandra +Charlotte +Constance +Deanna +Elena +Jamie +Jane +Jeanne +Jeannine +Jenny +Jewel +Joanne +Kelli +Latasha +Leah +Lillian +Mildred +Paulette +Rosalind +Ruth +Serena +Shirley +Tameka +Vicki +Yolonda +Alexis +Amber +Amie +Bernadette +Bridget +Connie +Danita +Deirdre +Desiree +Elaine +Gail +Gretchen +Jean +Judith +Karla +Kathy +Kenyatta +Kia +Kristie +Kristy +Lashaun +Lashon +Lawanda +Leigh +Marsha +Miriam +Nneka +Ronda +Rose +Shanita +Sheree +Sheri +Stefanie +Tania +Tarsha +Tawanna +Valencia +Velvet +Antionette +Audrey +Benita +Brooke +Cathy +Cherie +Chiquita +Christa +Christie +Chrystal +Deidra +Ebony +Eileen +Elisha +Emma +Esther +Evelyn +Francine +Ginger +Irene +Jacquelyn +Jeanine +Jenifer +Jocelyn +Kesha +Keya +Lashone +Latrina +Lavon +Lorraine +Lynda +Malinda +Mara +Marilyn +Marjorie +Molly +Nichelle +Nikita +Nora +Phyllis +Rachelle +Ramona +Roberta +Selena +Shawna +Sherrie +Sherron +Sophia +Susanna +Tamika +Tawanda +Terry +Tisa +Tricia +Tyra +Yvonne +Jennifer +Kimberly +Michelle +Nicole +Lisa +Amy +Angela +Elizabeth +Stephanie +Heather +Melissa +Karen +Monica +Christine +Rebecca +Sarah +Andrea +Kelly +Laura +Christina +Shannon +Jessica +Mary +Julie +Katherine +Lashawn +Tamara +Tracy +Catherine +Deborah +Susan +Pamela +Patricia +Erica +Katrina +Monique +Tanya +Tiffany +Crystal +Danielle +Denise +Erin +Cynthia +Theresa +Yolanda +April +Dana +Katina +Tara +Wendy +Dawn +Erika +Tonya +Melanie +Sharon +Tammy +Emily +Anne +Kathleen +Kathryn +Michele +Robin +Alicia +Amanda +Cheryl +Keisha +Carolyn +Kristin +Maria +Megan +Sabrina +Natasha +Rachel +Rhonda +Stacy +Allison +Anna +Barbara +Jacqueline +Linda +Teresa +Tina +Felicia +Kristen +Sandra +Sara +Stacey +Valerie +Victoria +Melinda +Tracey +Donna +Regina +Carla +Julia +Sheila +Alison +Brenda +Leslie +Margaret +Renee +Vanessa +Veronica +Adrienne +Ann +Carrie +Dionne +Nancy +Sherry +Suzanne +Tia +Yvette +Alexandra +Holly +Kristina +Trina +Alexis +Kara +Kim +Latonya +Lauren +Meredith +Nina +Paula +Shelley +Sonya +Tracie +Diana +Diane +Kenya +Kerry +Latasha +Lori +Robyn +Darlene +Dominique +Juanita +Nichole +Tameka +Aimee +Anita +Bridget +Caroline +Charlene +Colleen +Ellen +Janice +Lakisha +Patrice +Shawn +Beth +Catina +Cindy +Jill +Joanna +Joy +Kendra +Sherri +Shirley +Terri +Carol +Cassandra +Claire +Deanna +Debra +Jamie +Karla +Krista +Latanya +Marie +Maureen +Nikki +Rochelle +Samantha +Stacie +Tasha +Angel +Audrey +Candace +Cristina +Ericka +Hope +Janet +Joyce +Kathy +Kia +Kimberley +Kirsten +Kisha +Ladonna +Lara +Lynette +Lynn +Wanda +Angelique +Antoinette +Carmen +Debbie +Demetria +Dorothy +Elaine +Ingrid +Jean +Lesley +Meghan +Natalie +Sherrie +Sonja +Tamika +Abigail +Aisha +Ashley +Ayanna +Belinda +Candice +Celeste +Charmaine +Christy +Eileen +Ginger +Glenda +Gloria +Heidi +Katharine +Keesha +Keri +Kristi +Kristine +Latisha +Leah +Marcia +Marisa +Marlene +Rebekah +Rita +Shanita +Sheri +Stefanie +Tania +Terry +Anika +Antonia +Cara +Chanda +Chantel +Christie +Claudia +Constance +Danita +Doris +Elisa +Evelyn +Frances +Genevieve +Gina +Gwendolyn +Helen +Jamila +Jane +Karin +Katie +Kesha +Lakeesha +Lakeisha +Lakeshia +Latrice +Laurie +Moira +Octavia +Pauline +Selena +Sharron +Sonia +Sylvia +Tawanna +Tisha +Toni +Tonia +Traci +Alexa +Alisha +Amber +Angie +Annette +Bernadette +Beverly +Bianca +Bonita +Brandi +Brandy +Bridgette +Brooke +Camille +Caryn +Cathy +Chiquita +Cicely +Clarissa +Courtney +Davida +Deena +Dianna +Fatima +Francine +Gabrielle +Geneva +Geraldine +Irene +Janine +Jenny +Joanne +Jocelyn +Johanna +Juliette +Kari +Kelley +Kelli +Kimberlee +Latarsha +Lawanda +Lolita +Lorraine +Malaika +Marjorie +Martha +Melody +Mia +Miriam +Nicola +Nikita +Paulette +Raquel +Rosemary +Shana +Sherita +Sheryl +Simone +Tiffanie +Tracee +Valencia +Virginia +Vivian +Vonetta +Yvonne +Jennifer +Kimberly +Lisa +Michelle +Nicole +Elizabeth +Angela +Amy +Heather +Karen +Stephanie +Jessica +Rebecca +Melissa +Christina +Christine +Sarah +Laura +Mary +Dawn +Andrea +Katherine +Kelly +Monica +Tanya +Susan +Tiffany +Tracy +Lakisha +Shannon +Kathleen +Lashawn +Crystal +Rachel +Erin +Pamela +Patricia +Barbara +Cynthia +Monique +Catherine +Erica +Julie +Kristen +Alicia +Amanda +Nakia +Natasha +Danielle +Deborah +Megan +Tara +Tonya +Sandra +Tina +Wendy +Erika +Kristin +Tamara +Carrie +Dana +Jacqueline +Maria +Michele +Robin +Sharon +Tracey +Stacey +Allison +Emily +Kathryn +Katrina +Anne +Carolyn +Margaret +Stacy +Yolanda +Carla +Cheryl +Colleen +Denise +Jill +Kara +Keisha +Kisha +Latasha +Nichole +Rhonda +Theresa +Regina +Victoria +Cassandra +Donna +Latonya +Lori +Melanie +Patrice +Renee +Sara +Valerie +Anna +April +Diana +Felicia +Leslie +Teresa +Kim +Sonya +Ann +Dionne +Ebony +Diane +Joy +Kristina +Adrienne +Alexandra +Alison +Antoinette +Courtney +Latoya +Tamika +Tasha +Veronica +Brenda +Holly +Latisha +Meredith +Natalie +Nikki +Suzanne +Tanisha +Terri +Aisha +Anita +Bridget +Candace +Debra +Joanna +Kesha +Kia +Lakesha +Linda +Meghan +Robyn +Tammy +Tia +Vanessa +Beth +Darlene +Jamie +Joyce +Lauren +Leah +Nancy +Candice +Carol +Caroline +Demetria +Ericka +Evelyn +Gail +Janet +Juanita +Lakeisha +Latanya +Latrice +Laurie +Sherry +Tarsha +Virginia +Yvette +Alexis +Alice +Dorothy +Jeanette +Kelley +Kendra +Kristie +Latarsha +Rashida +Rochelle +Ruth +Sabrina +Stacie +Sylvia +Tracie +Angel +Chiquita +Elisabeth +Eva +Heidi +Helen +Jamila +Janice +Jean +Jocelyn +Kenya +Kristine +Lara +Maureen +Paula +Shawn +Toni +Wanda +Anika +Camille +Cara +Celeste +Chandra +Christie +Cindy +Constance +Cristina +Dominique +Eileen +Julia +Kathy +Katie +Katina +Kelli +Keri +Kerry +Lynn +Malika +Nakisha +Nina +Samantha +Sharron +Sheila +Sherri +Tawana +Tosha +Vonetta +Alisa +Amber +Angie +Bonnie +Caren +Caryn +Chante +Charlene +Christa +Claire +Elisa +Ellen +Gloria +Gwendolyn +Ivy +Jane +Joann +Johanna +Katharine +Kellie +Kimberley +Ladonna +Lakeshia +Latosha +Lucinda +Lydia +Melinda +Nikia +Nora +Olivia +Rachael +Rachelle +Rose +Shelley +Sheri +Shirley +Sonja +Tameka +Tania +Venus +Vivian +Adrian +Aimee +Alisha +Ana +Annette +Asha +Ayanna +Bernadine +Beverly +Billie +Brooke +Carmen +Connie +Danita +Deanna +Deidre +Delores +Grace +Helena +Janine +Jeanne +Joan +Jodi +John +Keesha +Kerri +Kevin +Krista +Lakia +Lakita +Marcia +Marie +Marla +Marsha +Martha +Martina +Mia +Miriam +Molly +Myra +Nia +Nichelle +Priscilla +Raquel +Roberta +Ronda +Shelby +Shenita +Sheree +Stefanie +Tanika +Tonia +Jennifer +Amy +Michelle +Kimberly +Nicole +Elizabeth +Heather +Lisa +Stephanie +Jessica +Melissa +Christina +Tiffany +Angela +Mary +Sarah +Kelly +Karen +Rebecca +Laura +Andrea +Tamika +Crystal +Erica +Lakisha +Christine +Susan +Monica +Katherine +Rachel +Amanda +Erin +Danielle +Dawn +Margaret +Robin +Shannon +Tracy +Maria +Cynthia +Patricia +Catherine +Dana +Julie +Kathryn +Keisha +Monique +Sharon +Theresa +Yolanda +Ebony +Jacqueline +Lashawn +Leslie +Melanie +Tamara +Tara +Emily +Kristen +Natasha +April +Megan +Nakia +Tanya +Wendy +Denise +Katrina +Sandra +Courtney +Kathleen +Renee +Stacey +Donna +Kia +Kisha +Kristin +Teresa +Tonya +Lakeisha +Victoria +Lauren +Tammy +Alison +Allison +Erika +Marie +Sabrina +Valerie +Vanessa +Adrienne +Alicia +Felicia +Kendra +Samantha +Jill +Joy +Lori +Michele +Pamela +Rhonda +Sara +Tracey +Virginia +Alexandra +Caroline +Meredith +Tia +Anna +Carrie +Deborah +Dionne +Julia +Kristina +Latasha +Brenda +Christie +Diane +Joanna +Kim +Latoya +Melinda +Stacy +Tina +Alexis +Cheryl +Colleen +Linda +Natalie +Nikki +Shelly +Tamiko +Amber +Anne +Annette +Brandy +Carla +Diana +Latisha +Latonya +Nikia +Patrice +Paula +Regina +Suzanne +Ann +Carolyn +Cindy +Dorothy +Hope +Jenny +Kenya +Kesha +Latanya +Leah +Lydia +Marcia +Maureen +Rochelle +Sherry +Veronica +Aimee +Aisha +Angel +Barbara +Camille +Candice +Christy +Ericka +Holly +Jamie +Kelley +Laurie +Misty +Nancy +Nia +Yvette +Ashley +Betty +Bridget +Cara +Frances +Gina +India +Ivy +Lara +Nina +Rashida +Sonya +Terri +Yvonne +Angie +Carey +Charlene +Claire +Darlene +Ellen +Evelyn +Heidi +Helen +Jamila +Janet +Janice +Jenifer +Joyce +Kirsten +Kristine +Latosha +Nichole +Robyn +Shana +Shelley +Sherita +Sherri +Sylvia +Tasha +Tomeka +Traci +Alice +Anika +Antoinette +Asia +Ayanna +Beth +Bonnie +Brooke +Carmen +Cassandra +Claudia +Elisa +Hannah +Jean +Jeanine +Katharine +Kerri +Kerry +Lolita +Michael +Nikita +Nikkia +Staci +Tameka +Tanisha +Tarsha +Angelique +Anita +Ayesha +Belinda +Carol +Chandra +Chiquita +Constance +Dominique +Eleanor +Gail +Gwendolyn +Ingrid +Jaime +Jane +Jeanette +Joanne +Johanna +Judith +Kanika +Kara +Kelli +Kellie +Kristie +Lakesha +Latarsha +Lesley +Rena +Rosa +Ruth +Sheila +Stacie +Tamica +Tracie +Tricia +Whitney +Abigail +Alisha +Alyssa +Anastasia +Anissa +Beverly +Candace +Celeste +Charlotte +Charnita +Cherie +Dara +Deanna +Eugenia +Gabrielle +Gladys +Gretchen +Hilary +Janelle +Jeanne +Jocelyn +Josephine +Juanita +Kate +Katina +Keesha +Latricia +Lawanda +Letitia +Lynn +Malika +Marilyn +Marjorie +Maya +Molly +Naomi +Nichelle +Nora +Shalita +Shani +Shawna +Sheryl +Takisha +Tameca +Tawanda +Terry +Tonia +Trina +Venus +Wanda +Zenobia +Jennifer +Nicole +Kimberly +Michelle +Elizabeth +Amy +Christina +Angela +Melissa +Stephanie +Lisa +Jessica +Sarah +Heather +Keisha +Tiffany +Rebecca +Katherine +Andrea +Erin +Susan +Lakisha +Shannon +Karen +Laura +Amanda +Mary +Monica +Tamika +Christine +Dawn +Natalie +Kelly +Rachel +Danielle +Lauren +Latoya +Maria +Crystal +Emily +Catherine +Megan +April +Erica +Julie +Lashawn +Sara +Cynthia +Kathleen +Monique +Tameka +Ebony +Katrina +Carrie +Kathryn +Patricia +Tracy +Tamara +Tanya +Courtney +Stacey +Yolanda +Kristin +Melanie +Sharon +Stacy +Kisha +Michele +Tara +Aisha +Allison +Deborah +Robin +Sabrina +Dana +Erika +Jacqueline +Jaime +Joy +Margaret +Veronica +Alicia +Anne +Carolyn +Kristen +Victoria +Nakia +Patrice +Renee +Sandra +Wendy +Meredith +Natasha +Tina +Alison +Denise +Holly +Latonya +Ann +Carla +Cheryl +Felicia +Jamie +Kristina +Latasha +Latisha +Pamela +Rhonda +Tammy +Valerie +Adrienne +Barbara +Diana +Lakeisha +Leslie +Tia +Anna +Kendra +Ashley +Lakesha +Meghan +Samantha +Alexandra +Brenda +Regina +Suzanne +Theresa +Tonya +Abigail +Candice +Caroline +Hope +Jill +Joanna +Julia +Kelli +Kerry +Lori +Tasha +Teresa +Toni +Tracey +Amber +Brandy +Colleen +Kim +Leah +Lindsay +Mia +Nancy +Rashida +Robyn +Aimee +Angel +Anita +Charlene +Christy +Claudia +Kellie +Latanya +Marisa +Maureen +Melinda +Nikki +Sheila +Shelley +Sherry +Sonia +Tanisha +Carol +Gina +Gretchen +Jenifer +Johanna +Kesha +Latarsha +Linda +Marcia +Ronda +Tennille +Vanessa +Alisha +Ana +Ayana +Bianca +Camille +Carey +Cathy +Charmaine +Deanna +Donna +Hannah +Kara +Katharine +Kathy +Kelley +Kia +Lakeshia +Marie +Nadia +Terri +Yvonne +Alice +Becky +Belinda +Bridget +Brooke +Carmen +Chanel +Cherie +Christie +Cindy +Darlene +Diane +Gloria +Heidi +Jenny +Juanita +Karin +Karla +Keisa +Kirsten +Kristy +Latrice +Laurie +Leigh +Martha +Nakisha +Naomi +Octavia +Rebekah +Shani +Sheena +Shelly +Sherri +Traci +Wanda +Alexis +Alisa +Beverly +Bonnie +Brandi +Candace +Desiree +Dominique +Eva +Fatima +Grace +Janice +Jeanette +Jocelyn +Lawanda +Lynn +Miriam +Nikia +Paula +Rachelle +Ruth +Shawn +Tanika +Tori +Tosha +Yvette +Angie +Anika +Annette +Antoinette +Ayanna +Cassandra +Celeste +Constance +Debra +Dione +Donnetta +Eboni +Edith +Eleanor +Ellen +Frances +Helen +Hollie +Jamila +Kate +Kenya +Keya +Kristal +Kristi +Kristine +Lara +Lorraine +Molly +Nakita +Nichole +Nina +Nora +Olivia +Rasheda +Shanika +Shanna +Shari +Shayla +Sherita +Sophia +Stefanie +Takiyah +Tawanna +Tonia +Tricia +Valencia +Virginia +Jennifer +Kimberly +Elizabeth +Michelle +Nicole +Kelly +Jessica +Sarah +Angela +Christina +Shannon +Lisa +Melissa +Stephanie +Heather +Mary +Tiffany +Erin +Amy +Crystal +Christine +Katherine +Keisha +Laura +Amanda +Rebecca +Karen +Rachel +Catherine +Emily +Latoya +Sara +Erica +Julie +Dana +Kathleen +Lakisha +Monica +Natasha +Allison +Patricia +April +Margaret +Tamika +Aisha +Andrea +Dawn +Megan +Monique +Natalie +Danielle +Kathryn +Kristin +Susan +Tamara +Carrie +Katrina +Lauren +Tanya +Ebony +Jamie +Robin +Anne +Courtney +Tracy +Victoria +Jacqueline +Kisha +Sabrina +Cynthia +Deborah +Leslie +Tameka +Yolanda +Alicia +Anna +Latasha +Melanie +Renee +Tara +Adrienne +Lakeisha +Maria +Samantha +Alexandra +Caroline +Erika +Jaime +Pamela +Denise +Wendy +Ann +Kendra +Lashawn +Lindsay +Theresa +Rhonda +Sharon +Angel +Kia +Marie +Nakia +Stacy +Alison +Camille +Carla +Jill +Julia +Latonya +Meredith +Vanessa +Amber +Ashley +Holly +Jamila +Kristina +Sandra +Stacey +Suzanne +Valerie +Veronica +Carolyn +Colleen +Kristen +Latisha +Patrice +Rashida +Tia +Diana +Linda +Michele +Nikia +Sherry +Tonya +Dionne +Donna +Kara +Kelley +Melinda +Melody +Nadia +Nancy +Nichole +Sonya +Tammy +Aimee +Christy +Leah +Regina +Robyn +Shana +Sonia +Tanika +Virginia +Alexis +Alice +Ayanna +Cheryl +Ellen +Felicia +Frances +Gwendolyn +Janet +Joanna +Mia +Tasha +Teresa +Anika +Anita +Ayana +Brandi +Brooke +Candice +Cara +Charlene +Farrah +Helen +Janelle +Jean +Jenny +Joy +Joyce +Katharine +Kizzy +Kristy +Lakia +Marsha +Maureen +Maya +Ruth +Sherri +Sylvia +Terri +Tina +Yvette +Ana +Annette +Beth +Claire +Claudia +Cristina +Hope +Jocelyn +Karla +Kellie +Kerry +Lakesha +Larissa +Marisa +Meghan +Nikki +Nina +Olivia +Rebekah +Shanna +Shawnte +Sheri +Tanisha +Tiffani +Traci +Yolonda +Barbara +Bonnie +Brenda +Charmaine +Eboni +Ericka +Genevieve +India +Juanita +Kenya +Kim +Kristine +Laurie +Lesley +Lindsey +Lolita +Lori +Molly +Nakisha +Nia +Nicola +Nikita +Raquel +Roberta +Rochelle +Selena +Sheila +Tania +Tawana +Tracey +Abigail +Alyssa +Belinda +Bianca +Bridget +Charlotte +Cindy +Danyelle +Deanna +Demetria +Imani +Jada +Jasmine +Karin +Katie +Keshia +Khalilah +Kirsten +Kristi +Latarsha +Latia +Lawanda +Lydia +Lynn +Martina +Meagan +Paige +Quiana +Shayla +Shelly +Summer +Syreeta +Tamiko +Wanda +Akilah +Angie +Antoinette +Arlene +Asia +Bernadette +Bobbie +Brandy +Caitlin +Carmen +Cassandra +Celia +Chiquita +Danita +Debra +Deidre +Desiree +Devon +Diane +Dominique +Evelyn +Geneva +Gina +Heidi +Hillary +Jacquelyn +Jane +Janice +Janine +Jeannette +Jenifer +Kamilah +Katrice +Kerri +Kesha +Kristie +Latanya +Latosha +Lynnette +Marissa +Misty +Mona +Natalia +Noelle +Paula +Penny +Priscilla +Ronda +Shalonda +Sharron +Shayna +Stacie +Susannah +Tameika +Whitney +Jennifer +Jessica +Nicole +Elizabeth +Michelle +Sarah +Christina +Melissa +Stephanie +Angela +Kimberly +Katherine +Erin +Lisa +Tiffany +Heather +Kelly +Emily +Danielle +Mary +Laura +Amanda +Crystal +Erica +April +Christine +Tamika +Shannon +Lauren +Rachel +Rebecca +Karen +Andrea +Keisha +Lakisha +Sara +Catherine +Monica +Monique +Amy +Dana +Jamie +Latoya +Megan +Natasha +Kathleen +Yolanda +Dawn +Margaret +Samantha +Ebony +Cynthia +Julie +Maria +Sabrina +Alicia +Anne +Aisha +Jacqueline +Katrina +Tamara +Brandy +Melanie +Robin +Leslie +Natalie +Susan +Vanessa +Kathryn +Latisha +Meredith +Patricia +Tanya +Alison +Deborah +Erika +Renee +Stacey +Veronica +Adrienne +Courtney +Victoria +Angel +Anna +Brandi +Carla +Cheryl +Lakeisha +Lashawn +Sandra +Tameka +Teresa +Theresa +Allison +Denise +Felicia +Kristen +Kristin +Latasha +Michele +Nichole +Tina +Tracy +Leah +Quiana +Sharon +Wendy +Antoinette +Candice +Caroline +Carrie +Julia +Kia +Kristy +Lindsay +Nakia +Tara +Tia +Brenda +Colleen +Diana +Gina +Kristina +Suzanne +Alexandra +Dominique +Joy +Kendra +Kristine +Latonya +Melinda +Pamela +Regina +Stacy +Valerie +Amber +Ann +Cindy +Jaime +Lakesha +Nancy +Patrice +Rhonda +Carolyn +Charmaine +Jill +Katharine +Katie +Kelley +Kisha +Maureen +Tammy +Tanisha +Tracey +Alexis +Ashley +Barbara +Bridget +Carol +Cristina +Donna +India +Jamila +Janelle +Jocelyn +Juanita +Kara +Latanya +Latosha +Lawanda +Marcia +Melody +Olivia +Paula +Rashida +Ruth +Shavon +Sherita +Sherri +Tasha +Abigail +Beth +Brooke +Christy +Claire +Deanna +Eileen +Francesca +Grace +Kelli +Lori +Marie +Nicola +Sheila +Virginia +Ana +Anita +Audrey +Bethany +Camille +Candace +Carmen +Carolina +Chiquita +Devin +Dionne +Elaine +Gloria +Helen +Holly +Joyce +Kenisha +Kiana +Kristi +Latarsha +Meghan +Mia +Miriam +Nakisha +Nikki +Qiana +Rochelle +Shanna +Shanta +Shauna +Stacie +Terri +Tonya +Yvette +Alisha +Bianca +Briana +Cara +Claudia +Devon +Dorothy +Eboni +Ellen +Evelyn +Gabrielle +Gretchen +Hannah +Jane +Keri +Kesha +Lakia +Latrice +Letitia +Linda +Lynnette +Marissa +Molly +Nadia +Nichelle +Octavia +Rita +Robyn +Shavonne +Shelly +Sherry +Tabitha +Tamikia +Tanika +Aimee +Ayanna +Beverly +Brian +Chandra +Chanel +Charlene +Christa +Constance +Danita +Eleanor +Elisa +Elisabeth +Frances +Heidi +Jaclyn +Jacquelyn +Janet +Janice +Janine +Jasmine +Jenifer +Jenny +Joanna +Jodi +Karin +Kellee +Kendall +Khadijah +Kiesha +Kim +Lorraine +Lynette +Lynn +Marlena +Marsha +Michael +Naomi +Natalia +Nia +Nikia +Nneka +Nora +Paulette +Princess +Rachael +Raven +Renita +Rosa +Shana +Shawn +Summer +Tameeka +Taryn +Tawanda +Tawanna +Toni +Tori +Vicki +Yvonne +Jennifer +Nicole +Sarah +Melissa +Elizabeth +Kimberly +Jessica +Stephanie +Christina +Michelle +Lisa +Tiffany +Angela +Heather +Kelly +Amanda +Katherine +Crystal +Danielle +Mary +Rebecca +Laura +Shannon +Emily +Erin +Amy +Ebony +Lauren +Erica +Karen +Tamika +Sara +Rachel +Kathleen +Christine +April +Megan +Monica +Dana +Jamie +Monique +Alicia +Margaret +Catherine +Kathryn +Natalie +Natasha +Andrea +Dawn +Leslie +Julie +Samantha +Latoya +Maria +Patricia +Teresa +Yolanda +Anna +Lakisha +Lindsay +Melanie +Renee +Susan +Veronica +Adrienne +Allison +Katrina +Robin +Tamara +Pamela +Tara +Tracy +Candice +Cynthia +Deborah +Julia +Kristen +Stacey +Tameka +Anne +Victoria +Brooke +Erika +Kristin +Latasha +Latisha +Meghan +Sabrina +Brandi +Caroline +Lashawn +Leah +Stacy +Ann +Jacqueline +Regina +Aisha +Alexis +Amber +Ashley +Tia +Alison +Angel +Carolyn +Juanita +Keisha +Kendra +Theresa +Cheryl +Courtney +Diana +Meredith +Nichole +Robyn +Sandra +Tasha +Tina +Bonnie +Carrie +Dionne +Felicia +Gina +Kia +Kirsten +Lakeisha +Latosha +Patrice +Valerie +Alexandra +Anita +Candace +Charmaine +Eboni +Holly +India +Janelle +Joy +Katharine +Kristina +Latonya +Linda +Mia +Quiana +Vanessa +Wendy +Barbara +Beth +Brandy +Denise +Ellen +Gloria +Jaime +Kate +Marie +Shana +Shante +Shavon +Terri +Tracey +Abigail +Alisha +Antoinette +Bridget +Camille +Cara +Carla +Colleen +Debra +Frances +Jamila +Jenny +Joyce +Kara +Latanya +Laurie +Lindsey +Maya +Michele +Paula +Rachael +Tanya +Tomika +Alyssa +Ana +Charlotte +Chiquita +Claire +Claudia +Dominique +Elena +Ericka +Janet +Kellie +Kristine +Martha +Melody +Miriam +Nakia +Nancy +Nikia +Olivia +Qiana +Rochelle +Shanika +Sharon +Shauna +Tanika +Annette +Carmen +Carol +Carolina +Diane +Dorothy +Evelyn +Helen +Janice +Kim +Latrice +Marcia +Maureen +Nakita +Rachelle +Shameka +Sherita +Shirley +Sophia +Sylvia +Tameika +Tiffani +Toni +Tonya +Wanda +Akilah +Alice +Alyson +Benita +Brenda +Cassandra +Catrina +Chanel +Chante +Cheri +Cindy +Clara +Darlene +Demetria +Donna +Emma +Hannah +Irene +Jane +Janna +Jocelyn +Katie +Keona +Kesha +Kiana +Kisha +Krystal +Lakesha +Latarsha +Latia +Lena +Lesley +Lori +Lucy +Marisa +Marquita +Melinda +Michael +Nadia +Renita +Ruth +Shamika +Shanna +Shayla +Sonja +Tammy +Tanisha +Whitney +Yvette +Autumn +Ayana +Bethany +Casey +Charlene +Christie +Christy +Cristina +Devin +Elaine +Eliza +Eva +Jacquelyn +Janell +Jeanne +Jenna +Kelli +Kerry +Kristi +Kristy +Laurel +Lindy +Lydia +Maia +Marissa +Molly +Nia +Nikkia +Rhonda +Roberta +Ryan +Shani +Shanta +Sherese +Sherri +Susanna +Suzanne +Teressa +Tomeka +Traci +Virginia +Jennifer +Nicole +Jessica +Tiffany +Elizabeth +Kimberly +Sarah +Stephanie +Melissa +Michelle +Crystal +Erin +Christina +Angela +Lauren +Rebecca +Erica +Katherine +Laura +Danielle +Lisa +Emily +Amanda +Kelly +Mary +April +Shannon +Heather +Rachel +Andrea +Monique +Kathleen +Kathryn +Megan +Tamika +Dana +Margaret +Kristen +Monica +Sara +Catherine +Ebony +Courtney +Julia +Latasha +Jacqueline +Julie +Maria +Natasha +Carolyn +Kristin +Samantha +Christine +Jamie +Katrina +Latoya +Leslie +Alicia +Dawn +Karen +Alexandra +Erika +Lakisha +Natalie +Patricia +Amber +Anne +Patrice +Allison +Cynthia +Amy +Latisha +Tameka +Angel +Anna +Ashley +Brooke +Keisha +Sandra +Tia +Vanessa +Yolanda +Candice +Kristina +Lindsay +Susan +Tracy +Leah +Melanie +Mia +Michele +Nina +Pamela +Rhonda +Abigail +Stacey +Tamara +Tammy +Theresa +Alison +Caroline +Carrie +Joy +Meghan +Meredith +Nancy +Regina +Sabrina +Valerie +Brandy +Camille +Lakeisha +Molly +Renee +Victoria +Adrienne +Barbara +Diana +Hannah +Nadia +Robin +Veronica +Claudia +Jaime +Joanna +Katie +Kendra +Linda +Lindsey +Qiana +Alexis +Brandi +Bridget +Candace +Cassandra +Chanel +Colleen +Jill +Kiana +Kisha +Maya +Olivia +Sharon +Tara +Tasha +Teresa +Alisha +Beth +Carmen +Charmaine +Cheryl +Denise +Kate +Kia +Lashawn +Maureen +Nichole +Sherry +Tanya +Tracey +Anita +Bianca +Carla +Charlene +Deborah +Helen +Jasmine +Jenny +Jocelyn +Kellie +Kristi +Krystal +Melinda +Ruth +Sherri +Tonya +Wendy +Autumn +Christie +Cristina +Ellen +Gina +Janelle +Janice +Juanita +Kara +Latonya +Melody +Nakia +Rita +Robyn +Sophia +Stacy +Wanda +Amelia +Caitlin +Donna +Ivy +Jamila +Jeanette +Katharine +Kelli +Kenya +Kirsten +Latrice +Lesley +Letitia +Lynette +Marissa +Miriam +Nia +Nora +Rachelle +Rebekah +Sharmaine +Shauna +Sheree +Summer +Tanisha +Tiana +Tiffanie +Tina +Tracie +Valencia +Adrian +Aja +Alice +Alissa +Ayanna +Brenda +Carol +Claire +Debra +Desiree +Gloria +Holly +Hope +India +Ingrid +Jean +Lakesha +Lydia +Lynn +Marisa +Martina +Meaghan +Naomi +Nikki +Quiana +Rashida +Rochelle +Shanita +Shanta +Sheila +Sheri +Sherita +Sonya +Suzanne +Sylvia +Tiffani +Toni +Tynisha +Virginia +Whitney +Anika +Antoinette +Audrey +Bethany +Bonnie +Cara +Chantelle +Chloe +Constance +Darlene +David +Diane +Dominique +Elaine +Eleanor +Elena +Ericka +Eugenia +Faith +Felicia +Gretchen +Gwendolyn +Hillary +Janell +Janet +Jenelle +Jillian +Joanne +Kesha +Krista +Lara +Latanya +Latesha +Laurie +Lori +Marian +Marie +Markita +Marquita +Paula +Priscilla +Rachael +Rena +Renata +Renita +Rosemary +Shadonna +Shameka +Shana +Shavon +Shawnte +Stefanie +Syreeta +Terri +Zakiya +Jennifer +Jessica +Sarah +Tiffany +Kimberly +Elizabeth +Nicole +Michelle +Stephanie +Christina +Crystal +Emily +Lauren +Katherine +Amanda +Melissa +Mary +Angela +Erin +Rachel +Rebecca +Andrea +Kelly +Latoya +Ebony +Laura +Lisa +Monique +Shannon +Danielle +Kathryn +Tamika +Catherine +Christine +Erica +Heather +Natasha +April +Anne +Kristin +Megan +Amy +Julia +Kathleen +Courtney +Latasha +Jacqueline +Karen +Margaret +Maria +Dawn +Tamara +Monica +Allison +Cynthia +Julie +Natalie +Pamela +Victoria +Ashley +Deborah +Diana +Kristen +Kristina +Sara +Alicia +Angel +Leslie +Alexandra +Anna +Caitlin +Dana +Erika +Candice +Caroline +Jamie +Katrina +Melanie +Patrice +Robin +Carolyn +Lindsay +Meghan +Tia +Claire +Latisha +Patricia +Renee +Samantha +Tara +Sabrina +Alexis +Katie +Regina +Susan +Yolanda +Aisha +Alison +Bianca +Brooke +Candace +Latonya +Leah +Robyn +Tracy +Veronica +Adrienne +Amber +Carla +India +Kara +Kia +Lakisha +Tasha +Tonya +Brandi +Brandy +Carmen +Keisha +Kelli +Marie +Mia +Sharon +Teresa +Abigail +Colleen +Felicia +Krystal +Linda +Lori +Meredith +Michele +Nancy +Shameka +Tameka +Theresa +Vanessa +Wendy +Cassandra +Denise +Eboni +Ellen +Joanna +Jocelyn +Kiana +Lindsey +Marquita +Quiana +Sandra +Sherita +Valerie +Amelia +Anita +Deanna +Dionne +Dominique +Janelle +Jenny +Jill +Katharine +Morgan +Nakia +Naomi +Nichole +Shayla +Simone +Stacy +Tammy +Tiffani +Tina +Ann +Antoinette +Carrie +Claudia +Gina +Hilary +Joy +Kelley +Lashawn +Marissa +Maya +Nikia +Nina +Rachael +Shanita +Sophia +Tanisha +Tiana +Toni +Virginia +Barbara +Bridget +Chanel +Cheryl +Donna +Evelyn +Gloria +Jean +Joi +Kellie +Kendra +Lakeisha +Lakia +Melody +Olivia +Paula +Rachelle +Rebekah +Rhonda +Sheila +Stacey +Tanika +Tierra +Alana +Charlotte +Cindy +Devon +Elisabeth +Helen +Jane +Jeanne +Kate +Kisha +Lawanda +Leigh +Leila +Marcia +Maureen +Molly +Nakita +Rashida +Shamika +Shavon +Tanya +Annette +Ashleigh +Ayana +Bonnie +Charlene +Chiquita +Desiree +Eleanor +Emma +Francesca +Gretchen +Gwendolyn +Heidi +Hillary +Hope +Jenifer +Jessie +Jewel +Jillian +Juanita +Keyana +Keyona +Lakesha +Latia +Latoria +Lea +Martina +Melinda +Natalia +Nora +Sasha +Shavonne +Stefanie +Suzanne +Terri +Tracie +Alaina +Athena +Brenda +Carol +Cassie +Cecilia +Celeste +Charmaine +Christin +Deirdre +Diane +Eileen +Hannah +Holly +Jacquelyn +Jaime +Janice +Jasmine +Jenelle +Joyce +Judith +Keona +Kerry +Kesha +Kim +Kristi +Lillian +Lucy +Lynette +Lynn +Martha +Meaghan +Myra +Nikkia +Paulette +Priscilla +Rita +Rosemary +Ruth +Shanika +Sheena +Sheri +Sherri +Sherry +Tabitha +Tamica +Tiffanie +Traci +Tyra +Venus +Jennifer +Tiffany +Jessica +Nicole +Elizabeth +Sarah +Lauren +Stephanie +Katherine +Michelle +Crystal +Kimberly +Melissa +Christina +Erin +Emily +Ebony +Amanda +Angela +Kelly +Rebecca +Danielle +Rachel +Ashley +Laura +Erica +Mary +Andrea +Julia +Kathleen +Shannon +Lisa +Monique +Kristin +Amy +Kathryn +Latoya +Alexis +Courtney +Diana +Natalie +Catherine +Megan +Natasha +Anna +Jacqueline +Lindsay +Patrice +Sara +April +Candice +Christine +Maria +Alicia +Tamika +Dana +Karen +Kristen +Monica +Heather +Victoria +Jamie +Margaret +Patricia +Robin +Angel +Alexandra +Katrina +Adrienne +Allison +Lindsey +Aisha +Caroline +Jasmine +Melanie +Julie +Latasha +Leslie +Renee +Samantha +Tara +Tia +Vanessa +Veronica +Anne +Carolyn +Erika +Krystal +Leah +Meredith +Theresa +Kristina +Alison +Candace +Tamara +Teresa +Ana +Camille +Dawn +Maya +Pamela +Amber +Brooke +Joanna +Keisha +Sabrina +Sharon +Yolanda +Caitlin +Colleen +Cynthia +Kendra +Lakisha +Lashawn +Regina +Sandra +Ellen +Kelli +Marie +Maureen +Michele +Rachael +Rhonda +Tanisha +Tasha +Valerie +Abigail +Carla +Deborah +Denise +India +Juanita +Katie +Stacey +Ann +Carrie +Chanel +Donna +Lakeisha +Latisha +Mia +Sophia +Tonya +Virginia +Antoinette +Barbara +Eboni +Hilary +Kia +Kiana +Linda +Nancy +Nina +Paula +Rita +Sheena +Suzanne +Tameka +Tiara +Tracy +Alice +Charlene +Cheryl +Claire +Dominique +Felicia +Grace +Jamila +Jenny +Latrice +Leigh +Meghan +Molly +Naomi +Stacy +Tiffanie +Bridget +Cara +Claudia +Gina +Joy +Karla +Katharine +Keyonna +Latia +Lawanda +Melinda +Ruth +Susan +Tanika +Tiana +Bianca +Brandy +Brenda +Carmen +Cassandra +Christian +Clare +Elisabeth +Evelyn +Jessie +Kellie +Kirsten +Latonya +Latricia +Lynette +Raven +Shante +Shayla +Tammy +Tanya +Tatiana +Tiffani +Vivian +Alyssa +Audrey +Beth +Casey +Cecilia +Chantel +Cherie +Devin +Diane +Essence +Esther +Eva +Frances +Genevieve +Hannah +Helen +Iris +Janelle +Janice +Joanne +Latoria +Lesley +Marisa +Martina +Michael +Nadia +Nakia +Quiana +Rachelle +Rashida +Rosa +Shameka +Shanita +Takia +Tierra +Tina +Wanda +William +Allyson +Ariel +Asia +Ayanna +Briana +Brittany +Chelsea +Chiquita +Christen +Christy +Constance +Deena +Dorothy +Eileen +Elaine +Elena +Gabrielle +Gloria +Iesha +Jaime +Jasmin +Jennie +Jillian +Jocelyn +Kira +Krystle +Kyana +Lakeia +Lillian +Makia +Martha +Miriam +Myesha +Nichole +Nora +Paige +Princess +Priscilla +Rochelle +Shalita +Shanta +Shantel +Shavon +Sherri +Sherry +Sonia +Stefanie +Sylvia +Syreeta +Tanesha +Tracie +Jennifer +Jessica +Tiffany +Elizabeth +Kimberly +Lauren +Stephanie +Nicole +Sarah +Ashley +Crystal +Katherine +Emily +Danielle +Erin +Laura +Michelle +Erica +Ebony +Angela +Rachel +Christina +Rebecca +Megan +Melissa +Shannon +Andrea +Kelly +Latoya +Marquita +Mary +Lisa +Monique +Kathleen +Maria +Amanda +Heather +Kristen +Jacqueline +Julia +Christine +Natasha +Victoria +Candice +Alexis +Tamika +Allison +Amy +April +Margaret +Monica +Alicia +Jamie +Kathryn +Robin +Julie +Leslie +Kristin +Alexandra +Anne +Courtney +Krystal +Samantha +Patrice +Anna +Lindsay +Caitlin +Sara +Vanessa +Candace +Dawn +Latasha +Patricia +Amber +Caroline +Erika +Brittany +Catherine +Natalie +Jasmine +Joy +Karen +Katrina +Pamela +Tia +Cynthia +Desiree +Lindsey +Sheena +Veronica +Antoinette +Dana +Leah +Nina +Sharon +Theresa +Valerie +Alison +Claire +Claudia +India +Lakeisha +Meghan +Stacy +Carolyn +Diana +Grace +Katharine +Katie +Kristina +Lakia +Marie +Meredith +Regina +Stacey +Teresa +Yolanda +Brandi +Kendra +Sandra +Susan +Tamara +Tara +Wendy +Adrienne +Cassandra +Colleen +Eleanor +Holly +Joanna +Kara +Lakisha +Latisha +Latonya +Tanya +Brooke +Charlotte +Deborah +Felicia +Melanie +Molly +Nancy +Rachael +Abigail +Bianca +Brandy +Charlene +Denise +Eboni +Jillian +Kia +Lashawn +Miriam +Nakia +Nichole +Renee +Rochelle +Sophia +Tiana +Tracy +Virginia +Ana +Angel +Ann +Bridget +Camille +Cara +Elisabeth +Jaime +Jocelyn +Kerry +Maureen +Olivia +Rhonda +Shana +Shayla +Tiara +Tina +Aisha +Carla +Diane +Ellen +Janelle +Linda +Marisa +Martha +Tanisha +Alice +Alisha +Annette +Bonnie +Carrie +Chanel +Charmaine +Cheryl +Christian +Deanna +Elisa +Ericka +Faith +Gina +Gloria +Juanita +Keyona +Kiana +Latarsha +Latia +Mia +Michele +Paula +Quiana +Shamika +Suzanne +Sylvia +Tabitha +Whitney +Alexandria +Antionette +Brenda +Cindy +Constance +Cristina +Ebonie +Emma +Evelyn +Helen +Jaclyn +Justine +Kate +Kenya +Krystle +Latosha +Lydia +Marcia +Meagan +Mercedes +Naomi +Octavia +Priscilla +Rachelle +Sabrina +Shameka +Shari +Stefanie +Tanika +Tyisha +Alexa +Antonia +Ariel +Ashlee +Belinda +Carol +Cecelia +Chloe +Corinne +Daphne +Devin +Haley +Hannah +Jane +Jean +Johanna +Joyce +Kelley +Kelli +Keyana +Lakiesha +Lashonda +Letitia +Lillian +Lucy +Marissa +Martina +Miranda +Nikia +Precious +Raquel +Rena +Serena +Shakita +Shanika +Sharita +Sharron +Shawn +Sonia +Sonya +Stacie +Sydney +Tanesha +Tasha +Taylor +Tianna +Tierra +Tiffani +Tracey +Yvonne +Jessica +Jennifer +Elizabeth +Ashley +Tiffany +Nicole +Lauren +Danielle +Stephanie +Sarah +Michelle +Katherine +Latoya +Amanda +Kimberly +Christina +Rachel +Emily +Laura +Megan +Crystal +Erica +Mary +Shannon +Ebony +Kelly +Andrea +Erin +Julia +Rebecca +Alexandra +Lisa +April +Melissa +Christine +Kathleen +Kristin +Monique +Kathryn +Heather +Alicia +Angela +Catherine +Alexis +Lindsay +Monica +Sara +Victoria +Amy +Allison +Jacqueline +Marquita +Amber +Caroline +Courtney +Kristen +Meghan +Samantha +Tamara +Maria +Tamika +Krystal +Dominique +Sheena +Brittany +Dana +Diana +Joanna +Kendra +Margaret +Patricia +Robin +Anna +Caitlin +Melanie +Natasha +Renee +Sabrina +Erika +Brandi +Latasha +Cynthia +Dawn +Veronica +Jasmine +Jenna +Katrina +Leah +Leslie +Tara +Vanessa +Candice +Cristina +Patrice +Stacy +Susan +Angel +Jamie +Kristina +Regina +Abigail +Alison +Ana +Julie +Karen +Lindsey +Mia +Natalie +Shana +Tia +Tracy +Adrienne +Charlene +Claire +Jaclyn +Katharine +Lakisha +Lashawn +Latisha +Latonya +Meredith +Tameka +Tonya +Deborah +Denise +Elisabeth +Marie +Nakia +Sandra +Shanita +Sophia +Suzanne +Carmen +Eboni +Ellen +Hannah +Kara +Katie +Rhonda +Robyn +Shameka +Tiara +Amelia +Antoinette +Barbara +Holly +Johanna +Keisha +Maya +Morgan +Nadia +Nancy +Pamela +Shari +Aisha +Anne +Asia +Elise +Frances +Helen +Joy +Linda +Olivia +Sharon +Alisha +Angelica +Anita +Audrey +Brandy +Bridget +Candace +Carolyn +Cassandra +Chanel +Charlotte +Chloe +Diane +Elisa +Grace +India +Kate +Kellie +Lakeisha +Latrice +Marissa +Markita +Melody +Molly +Nina +Rochelle +Shamika +Stacey +Sylvia +Tierra +Valerie +Yolanda +Alyssa +Bianca +Brenda +Charmaine +Cheryl +Colleen +Donna +Emma +Faith +Gloria +Jocelyn +Marisa +Maureen +Nora +Paris +Shanna +Tanya +Teresa +Terri +Theresa +Toni +Traci +Alice +Ashlee +Ashleigh +Camille +Cara +Carrie +Claudia +Constance +Deanna +Devon +Eileen +Evelyn +Felicia +Hope +Jane +Janelle +Janine +Jillian +Joyce +Juanita +Kelsey +Kiana +Kristine +Krystle +Lakia +Latosha +Leigh +Louise +Marsha +Martha +Meagan +Meaghan +Miriam +Shavon +Shawn +Stefanie +Takia +Tania +Tanisha +Tiana +Tiffani +Tina +Tracey +Virginia +Whitney +Amina +Ann +Antionette +Briana +Brianna +Brooke +Cathy +Christian +Ciara +Cindy +Clare +Dara +Ebone +Ebonie +Esther +Fatima +Gabrielle +Genevieve +Gina +Ingrid +Iris +Ivy +Jaime +Janice +Jenifer +Jenny +Jewel +Jill +Justine +Kerry +Keyonna +Latia +Lydia +Lynette +Maggie +Marjorie +Martina +Maura +Myra +Nia +Octavia +Rachelle +Reina +Rita +Rosemary +Ryan +Selina +Shanika +Shante +Sharron +Sherrell +Tanika +Tatiana +Teaira +Tiffanie +Tyesha +Wendy +Ashley +Jessica +Jennifer +Elizabeth +Lauren +Amanda +Sarah +Stephanie +Tiffany +Katherine +Danielle +Rachel +Christina +Emily +Nicole +Crystal +Michelle +Laura +Dominique +Erica +Mary +Rebecca +Kimberly +Brittany +Megan +Melissa +Alexandra +Heather +Ebony +Kelly +Erin +Shannon +Alicia +Andrea +Latoya +Christine +Julia +Krystal +Catherine +Lisa +Caitlin +Amy +Anna +Alexis +Allison +Monique +Samantha +Kathleen +Kathryn +Angela +Natasha +April +Caroline +Erika +Monica +Sara +India +Tiara +Victoria +Margaret +Natalie +Jacqueline +Jamie +Julie +Kristen +Melanie +Patricia +Angel +Claire +Kristin +Kristina +Courtney +Amber +Jasmine +Tamika +Vanessa +Lindsay +Maria +Sheena +Cynthia +Diana +Sade +Alison +Tamara +Anne +Candice +Lashawn +Meghan +Veronica +Whitney +Dana +Joanna +Patrice +Katrina +Krystle +Lindsey +Nakia +Tara +Alana +Candace +Joy +Robin +Rochelle +Cara +Cindy +Keisha +Latasha +Leslie +Marie +Martha +Sandra +Stacy +Tameka +Brenda +Felicia +Janelle +Nancy +Ryan +Stacey +Tia +Wendy +Carla +Carolyn +Cassandra +Denise +Gina +Kate +Kendra +Kia +Mia +Pamela +Regina +Renee +Shante +Sharon +Sonia +Stefanie +Susan +Valerie +Aisha +Ashleigh +Brittney +Brooke +Chela +Colleen +Dawn +Jaime +Karen +Katie +Meagan +Rhonda +Shanita +Tanisha +Yolanda +Adrienne +Alice +Amelia +Antoinette +Bianca +Bridget +Chelsea +Ciara +Cristina +Emma +Evelyn +Frances +Lakeisha +Lakisha +Latrice +Nina +Nora +Sabrina +Shari +Sophia +Tatiana +Ann +Charlotte +Diane +Dina +Gabriela +Hannah +Jacquelyn +Johanna +Jordan +Lakia +Latisha +Marquita +Shana +Sharde +Teresa +Tina +Toni +Alisha +Antionette +Barbara +Camille +Charmaine +Cheryl +Chloe +Gloria +Jenna +Kara +Karla +Kelsey +Latia +Leigh +Linda +Maureen +Meredith +Morgan +Nia +Octavia +Rachael +Sylvia +Tierra +Abigail +Alissa +Anita +Audrey +Brandi +Carly +Chiquita +Christian +Claudia +Deandra +Deanna +Deborah +Donna +Dorothy +Elise +Eliza +Helen +Holly +Jasmin +Justine +Kerry +Kristal +Latanya +Latonya +Marcia +Marissa +Melody +Molly +Nichole +Patrick +Robyn +Rosa +Ruth +Sasha +Sheila +Sophie +Tabitha +Theresa +Tracy +Yvonne +Adriana +Alexandria +Ana +Angelica +Antonia +Ariel +Ashlee +Ava +Ayesha +Blair +Carolina +Carrie +Celia +Cierra +Constance +Daisy +Desiree +Dionna +Eboni +Eleanor +Elena +Elisabeth +Ellen +Fatima +Gabrielle +Glenda +Hilary +Jaclyn +Jamila +Jenny +Jessie +Jill +Jonelle +Joyce +Judith +Karina +Keyona +Kiana +Krista +Krystina +Ladonna +Lakeya +Latricia +Lilian +Marguita +Miriam +Mollie +Mona +Nadia +Naomi +Nikia +Olivia +Paige +Paris +Paula +Precious +Randi +Shadonna +Shamika +Sharita +Sharron +Shayla +Shelby +Stacie +Tamekia +Tanya +Taylor +Tiera +Vivian +Yvette +Ashley +Jessica +Jennifer +Sarah +Lauren +Elizabeth +Tiffany +Danielle +Christina +Brittany +Stephanie +Kimberly +Amanda +Rachel +Emily +Erica +Laura +Nicole +Katherine +Crystal +Michelle +Shannon +Sara +Dominique +Kelly +Rebecca +Lisa +Alexandra +Melissa +Mary +Andrea +Ebony +Megan +Allison +Erin +Maria +Catherine +Samantha +Whitney +Jasmine +Julia +Angela +Latoya +April +Sade +Anna +Christine +Courtney +Victoria +Lindsay +Kathleen +Kristen +Margaret +Amy +Krystal +Caitlin +Alicia +Kathryn +Monique +Vanessa +Amber +Erika +India +Jacqueline +Natasha +Heather +Anne +Caroline +Kristin +Meredith +Monica +Colleen +Diana +Kara +Kendra +Lindsey +Natalie +Tamika +Alexis +Brittney +Julie +Kristina +Leah +Robin +Claire +Tiara +Veronica +Candace +Felicia +Joanna +Karen +Leslie +Melanie +Ana +Katrina +Morgan +Patrice +Theresa +Candice +Jamie +Jenna +Katharine +Lashawn +Latasha +Sophia +Antoinette +Claudia +Cynthia +Dana +Janelle +Krystle +Patricia +Sabrina +Angel +Denise +Meghan +Stacey +Cassandra +Charlotte +Jocelyn +Keisha +Kelli +Lakeisha +Latrice +Marquita +Molly +Nakia +Nichole +Shana +Tameka +Tia +Valerie +Alisha +Alison +Alyssa +Brenda +Chanel +Hannah +Ikea +Jessie +Kate +Linda +Madeline +Nikia +Renee +Shamika +Sheena +Tamara +Tara +Tierra +Aisha +Ashleigh +Carolyn +Gloria +Jaclyn +Janet +Joy +Lucy +Marie +Mia +Octavia +Pamela +Regina +Rhonda +Sandra +Shante +Stacy +Tiffani +Adrienne +Ariel +Audrey +Carrie +Chelsea +Desiree +Elena +Jillian +Kira +Marisa +Markita +Melody +Shanita +Sharde +Sharita +Susan +Suzanne +Tasha +Tiana +Wendy +Abigail +Angelica +Ashlee +Bridget +Cara +Ciara +Cierra +Cindy +Elise +Ericka +Gabrielle +Jane +Juanita +Judy +Keyonna +Kia +Martina +Maureen +Nancy +Nora +Paula +Rachael +Robyn +Shakita +Sharon +Stefanie +Tanisha +Tina +Anita +Ann +Brandi +Britney +Chante +Charlene +Christian +Cristina +Dawn +Diamond +Dominque +Domonique +Ellen +Francesca +Grace +Helen +Holly +Hope +Iris +Jacquelyn +Jenny +Justine +Kaitlin +Kiana +Krista +Lakisha +Latonya +Michele +Miriam +Nia +Rebekah +Ryan +Sharmaine +Shayna +Sheila +Sherri +Sylvia +Takia +Tanya +Taylor +Valencia +Alexa +Alexandria +Alice +Allyson +Amelia +Antionette +Asia +Barbara +Bethany +Camille +Carol +Chiquita +Christa +Christie +Clare +Deandra +Deanna +Deborah +Devin +Dionne +Eboni +Eleanor +Elisabeth +Faith +Jean +Jeanette +Johanna +Jordan +Judith +Katelyn +Katie +Kelley +Keyona +Lakia +Latia +Latosha +Lillian +Martha +Mercedes +Michaela +Nikita +Nina +Norma +Olivia +Phylicia +Precious +Raquel +Rochelle +Ruth +Shantell +Shayla +Sheri +Sherita +Shira +Simone +Sonia +Sophie +Susannah +Tamisha +Teresa +Tracy +Virginia +Vivian +Yolanda +Ashley +Jessica +Jennifer +Sarah +Brittany +Elizabeth +Tiffany +Stephanie +Amanda +Emily +Danielle +Lauren +Nicole +Christina +Katherine +Rachel +Kimberly +Melissa +Mary +Alexandra +Michelle +Laura +Samantha +Crystal +Kelly +Rebecca +Erica +Megan +Andrea +Caitlin +Latoya +Dominique +Erin +Courtney +Jasmine +Julia +Shannon +Ebony +Christine +Sara +Brittney +Kathryn +Kendra +Natasha +Victoria +Anna +Catherine +Jacqueline +Alicia +Hannah +Heather +India +Whitney +Allison +Angela +Lisa +Alexis +Caroline +Natalie +Vanessa +Amber +Amy +Maria +Monica +Tiara +Veronica +Margaret +Ana +Janay +Monique +Claire +Diana +Erika +Kathleen +Tamika +Chelsea +Kristen +Krystal +Lindsay +Adrienne +Dana +Kristin +Molly +Angel +Colleen +Cynthia +Jamie +Nancy +Britney +Candace +Katrina +Renee +Anne +Emma +Linda +Patrice +Patricia +Sabrina +Tierra +Carla +Casey +Joanna +Lindsey +Robin +Abigail +Alison +Carolyn +Ciara +Janae +Janelle +Kristina +Lashawn +Meredith +Sade +Tamara +Tanisha +Tara +Yolanda +Alisha +Cindy +Ikea +Julie +Keisha +Krystle +Lakeisha +Latasha +Marie +Melanie +Morgan +Robyn +Tiera +Angelica +Chanel +Ellen +Felicia +Grace +Kelsey +Leah +Lucy +Rosa +Alyssa +Antoinette +Ashlee +Charlene +Deborah +Helen +Janet +Karen +Latisha +Mercedes +Pamela +Sharon +Sierra +Stacey +Valerie +Anita +Ann +April +Brenda +Candice +Cassandra +Denise +Francesca +Genevieve +Gina +Holly +Jordan +Kaitlin +Katie +Kelley +Latrice +Mayra +Mia +Miranda +Sandra +Sophie +Stacy +Susan +Tia +Tina +Tracy +Alice +Amelia +Bethany +Bianca +Brooke +Cecilia +Charlotte +Desiree +Elena +Jenna +Katharine +Leslie +Maureen +Miriam +Nikia +Nina +Nora +Rochelle +Sophia +Antonia +Ashleigh +Brittani +Camille +Cierra +Dawn +Donna +Eboni +Hilary +Jasmin +Jeanette +Jillian +Kara +Latonya +Madeline +Meagan +Meghan +Melody +Octavia +Portia +Rachael +Rhonda +Tameka +Tanya +Aisha +Antionette +Brandi +Bridget +Carmen +Chantel +Christian +Claudia +Cristina +Gabrielle +Glenda +Irene +Iris +Jade +Janee +Jocelyn +Joy +Juanita +Kate +Kayla +Kenya +Mallory +Markia +Martha +Paige +Phylicia +Shante +Shayla +Shelly +Stephany +Suzanne +Tatiana +Theresa +Tracey +Alecia +Ariana +Asia +Audrey +Ayana +Barbara +Blair +Bonnie +Brittaney +Carol +Carrie +Channing +Chiquita +Clare +Deanna +Diamond +Domonique +Eden +Eleanor +Elise +Eliza +Ericka +Essence +Esther +Eva +Evelyn +Jenee +Kaitlyn +Keyana +Keyona +Kiana +Kionna +Kira +Kirsten +Lakia +Lakisha +Latarsha +Louisa +Madeleine +Marcia +Meaghan +Michael +Monet +Nadia +Nakia +Olivia +Paris +Paula +Raquel +Regina +Roxana +Sada +Sasha +Shana +Shanika +Shanta +Sharonda +Shayna +Shelley +Sherell +Sherita +Talia +Tania +Taylor +Teresa +Tiesha +Tiffani +Ashley +Jessica +Brittany +Sarah +Lauren +Katherine +Tiffany +Jennifer +Elizabeth +Stephanie +Amanda +Jasmine +Danielle +Nicole +Alexandra +Rachel +Michelle +Samantha +Emily +Erica +Laura +Melissa +Kimberly +Christina +Megan +Rebecca +Allison +Anna +Andrea +Victoria +Ebony +Julia +Bianca +Courtney +Kelly +Christine +Crystal +Brittney +Erin +Mary +Whitney +Caitlin +Catherine +Maria +Jacqueline +Sara +Dominique +Monique +Shannon +Amy +Margaret +Latoya +Alexis +Amber +Hannah +Angela +Caroline +Kathleen +Alicia +Erika +Lisa +Kristen +Vanessa +Heather +Kendra +Tiara +Tierra +Natalie +Chelsea +Dana +Morgan +Anne +April +Claire +Diana +Emma +Janay +Kristin +Natasha +Alison +Karen +Monica +Veronica +Britney +Casey +Patrice +Patricia +Ana +Angel +Gabrielle +India +Lindsay +Meredith +Renee +Carolyn +Jasmin +Krystal +Latasha +Molly +Rachael +Sade +Sasha +Alyssa +Candace +Madeline +Simone +Tamara +Abigail +Cassandra +Charlotte +Cynthia +Eleanor +Jocelyn +Kaitlin +Kathryn +Kelsey +Kristina +Lindsey +Melanie +Mercedes +Mia +Sophia +Antoinette +Jamie +Jenna +Kara +Latisha +Meghan +Shanice +Tamika +Tara +Adrienne +Ashlee +Felicia +Grace +Leslie +Linda +Nora +Octavia +Sandra +Shante +Susan +Tia +Asia +Bridget +Candice +Carla +Carly +Claudia +Francesca +Gloria +Marie +Marquita +Nina +Olivia +Regina +Robin +Sabrina +Aisha +Alexandria +Anita +Arielle +Bethany +Cecilia +Chanel +Cindy +Diamond +Hilary +Jacquelyn +Jillian +Joanna +Julie +Katharine +Katrina +Kiana +Leah +Marisa +Porsha +Tanisha +Taylor +Theresa +Yolanda +Brittani +Carmen +Chiquita +Colleen +Deborah +Eboni +Frances +Helen +Hope +Imani +Iris +Jean +Justine +Katie +Kellie +Lashawn +Maya +Melody +Miriam +Nadia +Natalia +Noor +Pamela +Raquel +Shana +Tatiana +Ann +Ariel +Brenda +Briana +Britany +Camille +Ciarra +Deanna +Ellen +Irene +Isabel +Jaleesa +Janae +Jane +Janelle +Jenny +Juanita +Kaitlyn +Kirsten +Krystle +Lakeisha +Lydia +Maureen +Naomi +Rochelle +Shanika +Sheila +Sophie +Tanesha +Tasha +Wendy +Alexa +Angelica +Antionette +Ashleigh +Brandy +Brianna +Cara +Charmaine +Chrystal +Ciara +Daniela +Denise +Desiree +Devin +Eileen +Elisabeth +Elise +Evelyn +Genevieve +Glenda +Jaime +Johanna +Jonathan +Joy +Judith +Kayla +Keisha +Kelli +Kia +Krista +Lacey +Latrice +Lillian +Marcia +Marissa +Meagan +Melinda +Noelle +Paige +Paris +Rachelle +Rashida +Rebekah +Rhonda +Rosa +Sally +Shamika +Shanae +Sierra +Teresa +Tiesha +Tonisha +Tyesha +Virginia +Yesenia +Adriana +Alice +Alisha +Amelia +Ariana +Ashely +Ashia +Audrey +Autumn +Ayana +Bernadette +Blair +Brittny +Chantel +Cherie +Chloe +Christiana +Ciera +Clare +Doris +Eliza +Ericka +Flor +Gabriela +Gabriella +Gillian +Holly +Jamila +Janai +Jessie +Joanne +Jordan +Karina +Kassandra +Kate +Kendall +Kenya +Lakisha +Latonya +Leila +Lucy +Madeleine +Marilyn +Mayra +Mykia +Nadine +Noel +Norma +Paula +Porsche +Precious +Princess +Rose +Rosemary +Roxana +Ruth +Selena +Shameka +Shaneka +Shanelle +Sharon +Sheena +Sonia +Stacey +Tabitha +Tameka +Tianna +Toni +Traci +Valerie +Ashley +Brittany +Jessica +Jasmine +Elizabeth +Tiffany +Sarah +Lauren +Katherine +Jennifer +Danielle +Mary +Kiara +Alexandra +Christina +Courtney +Erica +Amanda +Emily +Megan +Rachel +Samantha +Brittney +Stephanie +Maria +Nicole +Crystal +Victoria +Caitlin +Melissa +Arielle +Bianca +Dominique +Jacqueline +Kendra +Ebony +Kimberly +Latoya +Angel +Christine +Erika +Julia +Monique +Rebecca +Sara +Allison +Amber +Catherine +India +Lindsay +Michelle +Tiara +Alicia +Andrea +Anna +Caroline +Diana +Laura +Tierra +Anne +Erin +Monica +Natalie +Nora +Sandra +Whitney +Alexis +Angela +April +Claire +Cynthia +Deanna +Gabrielle +Heather +Joy +Kelly +Marquita +Molly +Natasha +Patrice +Robin +Valerie +Veronica +Alisha +Cassandra +Dana +Grace +Hannah +Janae +Julie +Karen +Lashawn +Linda +Lindsey +Lisa +Margaret +Melanie +Sophia +Sydney +Vanessa +Abigail +Antoinette +Asia +Barbara +Brenda +Briana +Casey +Charnice +Cindy +Eboni +Eleanor +Felicia +Helen +Kathryn +Kelsey +Keyona +Kiana +Kristen +Lakeisha +Meghan +Octavia +Olivia +Ruth +Sade +Shanita +Shannon +Sierra +Ashley +Brittany +Jasmine +Jessica +Sarah +Stephanie +Lauren +Elizabeth +Rachel +Jennifer +Danielle +Katherine +Amanda +Mary +Amber +Victoria +Alexandra +Michelle +Tiffany +Emily +Christina +Alexis +Samantha +Melissa +Nicole +Margaret +Laura +Rebecca +Dominique +Erica +Catherine +Julia +Sara +Tiara +Brittney +Crystal +Anna +Gabrielle +Hannah +Maria +Caitlin +Kelly +Andrea +Bianca +Ebony +Courtney +Kimberly +Melanie +Taylor +Allison +Erin +Megan +Chelsea +Jacqueline +Olivia +Kathryn +Shannon +Caroline +Christine +Erika +Angela +Karen +Kathleen +Monica +Natalie +Antoinette +Ariel +Kelsey +Veronica +Alison +Emma +India +Kiara +Alicia +Claire +Kayla +Molly +Shaniqua +Simone +Amy +Heather +Kendra +Leah +Maya +Mercedes +Whitney +Alyssa +Anne +Briana +Cindy +Jamie +Lindsey +Madeline +Mia +Monique +Asia +Brooke +Dana +Grace +Latoya +Lindsay +Meredith +Vanessa +Alexa +Brenda +Devon +Diamond +Jordan +Kristen +Morgan +Regina +Tierra +Abigail +April +Ciara +Colleen +Diana +Janay +Kristin +Lisa +Natasha +Sandra +Sydney +Valencia +Arielle +Babygirl +Brianna +Camille +Chanel +Chantel +Cynthia +Felicia +Julie +Lashawn +Latonya +Nancy +Tamika +Toni +Amelia +Carla +Charlene +Charlotte +Imani +Keisha +Kristina +Latasha +Leslie +Marie +Marissa +Paige +Patrice +Patricia +Portia +Valerie +Aisha +Ana +Angel +Ann +Antonia +Deborah +Domonique +Eleanor +Jocelyn +Meghan +Naomi +Rachael +Renee +Sade +Sierra +Sophia +Tyler +Adrienne +Alisha +Alyson +Ashlee +Brandi +Britney +Carmen +Deanna +Elena +Ellen +Jenny +Joanna +Josephine +Juanita +Justine +Kara +Katrina +Kirsten +Krystal +Lily +Madeleine +Meagan +Natalia +Octavia +Raven +Robin +Sabrina +Sylvia +Tiana +Tyesha +Tynesha +Angelica +Anita +Baby +Candace +Candice +Casey +Cassandra +Claudia +Desiree +Ericka +Faith +Gabriela +Hanna +Hilary +Jamila +Janelle +Jazmine +Jillian +Johanna +Lakeisha +Lucy +Lydia +Marquita +Mayra +Miya +Nora +Paula +Precious +Raquel +Rashida +Rosa +Roxana +Sally +Sharon +Tanisha +Teaira +Virginia +Alexandria +Allyson +Audrey +Beverly +Breanna +Bridget +Carolina +Chelsey +Christian +Cortney +Dawn +Destiny +Elisabeth +Elyse +Fatima +Frances +Gloria +Iman +Janee +Janine +Jenifer +Juliana +Kaitlin +Kate +Katharine +Katie +Kenisha +Kenya +Keyona +Lara +Latisha +Latrice +Mallory +Monet +Nathalie +Nia +Nina +Paris +Rochelle +Shadonna +Shanika +Shante +Shaquita +Shelby +Shirley +Sonya +Sophie +Stacey +Suzanne +Symone +Tara +Teresa +Terri +Tessa +Ashley +Jasmine +Brittany +Jessica +Sarah +Katherine +Elizabeth +Lauren +Jennifer +Emily +Alexandra +Stephanie +Amanda +Danielle +Nicole +Alexis +Rachel +Michelle +Tiffany +Christina +Erica +Samantha +Mary +Melissa +Julia +Courtney +Rebecca +Victoria +Tiara +Catherine +Andrea +Hannah +Caroline +Anna +Diamond +Bianca +Kimberly +Taylor +Dominique +Laura +Kathleen +Margaret +Olivia +Brittney +Monique +Briana +Chelsea +Megan +Amber +Christine +Kiara +Shannon +Jacqueline +Ebony +Kathryn +Sara +Angela +Claire +Erin +Mariah +Natalie +Madeline +Ariel +Crystal +Monica +Caitlin +Kelly +Melanie +Shelby +Alicia +Allison +Brianna +Iesha +Asia +Erika +Kayla +Maria +Raven +Tierra +Anne +Grace +Karen +Kelsey +Leah +Veronica +Ana +April +Charlotte +Gabrielle +Molly +Nancy +Patricia +Vanessa +Kristen +Sydney +Alison +Amelia +Desiree +Janae +Jazmine +Jordan +Kendra +Whitney +Amy +Camille +Cindy +Emma +Kristin +Lindsay +Lisa +Maya +Mercedes +Morgan +Sierra +Angel +Brooke +Cassandra +Denise +Diana +Heather +Paris +Ruth +Shanae +Shaniqua +Adrienne +Brenda +Carla +Chanel +Chloe +Cynthia +Krystal +Lindsey +Meghan +Natasha +Paige +Abigail +Alyssa +Arielle +Brittani +Christian +India +Janay +Kierra +Latasha +Latoya +Regina +Robyn +Tamika +Tyesha +Wendy +Aisha +Carmen +Carolyn +Eleanor +Jade +Jasmin +Jazmin +Kara +Katie +Kristina +Patrice +Sabrina +Sade +Tara +Teresa +Antoinette +Antonia +Britney +Candice +Cara +Casey +Ellen +Evelyn +Gloria +Haley +Imani +Julie +Karina +Katrina +Lashawn +Lesley +Madeleine +Marie +Meredith +Miranda +Rachael +Shanice +Sophia +Sophie +Talia +Theresa +Zoe +Ann +Audrey +Cristina +Deanna +Destiny +Elena +Gina +Ikea +Jamie +Janelle +Jenna +Jocelyn +Kiana +Laquita +London +Marissa +Mia +Monet +Nia +Nina +Octavia +Paula +Portia +Rachelle +Sandra +Shana +Shanell +Tanesha +Tanisha +Tracy +Vivian +Yesenia +Yolanda +Alisha +Ashleigh +Barbara +Brandy +Candace +Cecilia +Chantel +Cierra +Claudia +Colleen +Dana +Diane +Donna +Elisabeth +Felicia +Gabriella +Hilary +Jamese +Justine +Keisha +Lakeisha +Lydia +Michele +Miriam +Miya +Naomi +Nora +Priscilla +Raquel +Renee +Rose +Shakia +Shanee +Shantel +Stacy +Tiana +Virginia +Aja +Amina +Anastasia +Angelica +Ariana +Brittaney +Chantell +Charmaine +Chelsey +Georgia +Hanna +Helen +Hope +Isabel +Jane +Janice +Jazmyn +Jenny +Jesica +Katharine +Kellie +Kerry +Lena +Loren +Louisa +Martha +Mayra +Meagan +Nadia +Natalia +Noelle +Princess +Robin +Rochelle +Sandy +Sasha +Simone +Suzanne +Tamesha +Alexa +Anita +Ashlee +Ava +Ayana +Ayanna +Babygirl +Belinda +Breana +Breanna +Bridget +Carolina +Ciara +Cortney +Daniela +Deandra +Deborah +Denisha +Domonique +Ebonee +Faith +Fatima +Fiona +Gabriela +Genevieve +Hillary +Iman +Ingrid +Jamila +Janet +Jessie +Joanna +Juanita +Karla +Katelyn +Kiera +Kirsten +Latisha +Latrice +Leslie +Lexus +Lia +Mackenzie +Madison +Mariam +Mariama +Marlene +Martina +Melody +Noel +Noor +Pamela +Quanisha +Rosa +Shaneka +Shanika +Shayla +Sheila +Sonia +Stacey +Sylvia +Tabatha +Takia +Tamara +Tia +Yasmin +Ashley +Jasmine +Jessica +Brittany +Elizabeth +Sarah +Danielle +Emily +Rachel +Alexis +Lauren +Stephanie +Courtney +Alexandra +Katherine +Amanda +Diamond +Michelle +Victoria +Jennifer +Samantha +Erica +Mary +Amber +Rebecca +Taylor +Andrea +Briana +Chelsea +Tiffany +Nicole +Dominique +Laura +Catherine +Bianca +Megan +Brittney +Hannah +Christina +Julia +Caroline +Emma +Kimberly +Melissa +Shannon +Maria +Sara +Tiara +Kelsey +Margaret +Olivia +Allison +Angela +Imani +Kayla +Anna +Erin +Ana +Brianna +Jacqueline +Kelly +Mariah +Sophia +Ebony +Gabrielle +Kendra +Morgan +Shanice +Shelby +Caitlin +Kiara +Natalie +Asia +Christine +Claire +Karen +Kathryn +Molly +Alicia +Bria +Monica +Anne +Crystal +Mia +Vanessa +Amy +Grace +Cierra +Diana +Madeleine +Maya +Monique +Raven +Whitney +Abigail +Chanel +Evelyn +India +Meredith +Tierra +Zoe +Brenda +Kristen +Marissa +Nora +Paige +Sade +Sierra +Alyssa +Angelica +Charlotte +Erika +Jamie +Jordan +Kathleen +Madeline +Sydney +Angel +April +Casey +Gloria +Precious +Renee +Chloe +Ciara +Claudia +Cristina +Jenna +Kristina +Latoya +Lisa +Meghan +Mercedes +Patricia +Regina +Sophie +Tanisha +Alexa +Alison +Cara +Cynthia +Ingrid +Kaitlyn +Kendall +Kristin +Krystal +Leah +Lindsay +Melanie +Nancy +Nia +Nina +Tara +Theresa +Wendy +Adrienne +Breanna +Ciera +Dana +Deanna +Desiree +Haley +Hayley +Heather +Janae +Janay +Naomi +Natasha +Rosa +Shanika +Simone +Tamara +Tamika +Tiarra +Vivian +Adriana +Barbara +Cindy +Denise +Ericka +Gabriella +Gina +Iesha +Isabel +Jamila +Jane +Jasmin +Jazmin +Jazmine +Lashawn +Lindsey +Lucy +Marie +Natalia +Pamela +Teresa +Tiana +Valerie +Angelique +Ariel +Ashleigh +Blair +Brandi +Bridget +Cassandra +Colleen +Corinne +Devon +Eleanor +Elise +Ellen +Gabriela +Holly +Iris +Jade +Jocelyn +Kaitlin +Katie +Katrina +Kiana +Lara +Lena +Leslie +London +Monet +Niya +Paris +Raquel +Shanay +Shayla +Tatiana +Tess +Tia +Tyler +Veronica +Virginia +Aisha +Alice +Angelic +Ann +Annie +Antionette +Antoinette +Asha +Ava +Bridgette +Britney +Brittani +Brooke +Candace +Candice +Carolyn +Destiny +Elena +Hilary +Jalisa +Janelle +Janet +Jenifer +Jillian +Joy +Julie +Kara +Karla +Katelyn +Katharine +Keisha +Kiera +Latasha +Latisha +Lillian +Mallory +Miranda +Nakia +Octavia +Patrice +Rachael +Sabrina +Sandra +Shanae +Shanell +Shaniqua +Suzanne +Takia +Tanya +Tiera +Alexus +Amelia +Ariana +Ashlee +Ayanna +Breana +Cameron +Camille +Carla +Carolina +Chanae +Chanell +Chanelle +Chantel +Charmaine +Cheryl +Cheyenne +Christian +Danyelle +Dashawn +Demetria +Eva +Frances +Helen +Hillary +Jacquelyn +Jamia +Janai +Janice +Jenny +Joanna +Juanita +Juliana +Karina +Kellie +Khadijah +Kianna +Martha +Maureen +Melody +Mikea +Nadia +Noelle +Rachelle +Ruth +Shakia +Shana +Sharita +Sharon +Sidney +Susan +Tonya +Yasmeen +Yasmin +Yvonne +Ashley +Jasmine +Sarah +Jessica +Alexis +Elizabeth +Emily +Lauren +Brittany +Diamond +Rachel +Danielle +Taylor +Alexandra +Katherine +Julia +Nicole +Mary +Andrea +Briana +Jennifer +Michelle +Samantha +Stephanie +Amber +Victoria +Caroline +Hannah +Courtney +Megan +Christina +Olivia +Tiara +Dominique +Margaret +Amanda +Erica +Anna +Tiffany +Bria +Erin +Emma +Rebecca +Brianna +Crystal +Maya +Kelly +Natalie +Shannon +Laura +Melanie +Raven +Sara +Maria +Melissa +Kathryn +Catherine +Gabrielle +Allison +Bianca +Brittney +Kayla +Cierra +Ebony +Grace +India +Jacqueline +Monique +Sierra +Tierra +Angela +Caitlin +Imani +Kelsey +Tyler +Vanessa +Anne +Chelsea +Diana +Karen +Kimberly +Madeline +Angel +Asia +Leah +Sade +Ariel +Charlotte +Claire +Jordan +Kathleen +Kendra +Kiara +Monica +Abigail +Mariah +Sabrina +Destiny +Mia +Molly +Paige +Regina +Ana +Gabriela +Haley +Jazmine +Lindsey +Alexus +Alicia +Jasmin +Natasha +Shelby +Veronica +Yasmine +Alyssa +Chanel +Christine +Janae +Julie +Lisa +Sophia +Zoe +Alexa +Carolyn +Erika +Jenna +Kierra +Morgan +Nancy +Naomi +Whitney +Alice +Brenda +Bridget +Camille +Helen +Katrina +Kristen +Marie +Octavia +Robin +Brooke +Carmen +Casey +Cristina +Dana +Felicia +Janet +Jazmin +Joy +Kara +Lindsay +London +Madeleine +Meghan +Nia +Paris +Rachelle +Shanice +Tatiana +Amelia +Chantel +Ciara +Colleen +Desiree +Heather +Isabel +Juanita +Kendall +Kia +Kyra +Lillian +Lydia +Marisa +Meredith +Nora +Rosa +Sandra +Tanesha +Tiana +Adrienne +Alisha +Alison +Angelique +Antoinette +April +Arielle +Ayana +Brandi +Brionna +Britney +Christian +Cindy +Clara +Clare +Cynthia +Deja +Domonique +Iris +Jade +Jamie +Janay +Jocelyn +Kaitlyn +Kiana +Kirsten +Kristina +Krystal +Latonya +Mackenzie +Marquita +Mayra +Mercedes +Michaela +Monae +Myesha +Nadia +Pamela +Patrice +Patricia +Rachael +Raquel +Sasha +Shante +Shaunice +Simone +Sydney +Tamara +Tamika +Tatyana +Tayler +Tyesha +Wendy +Aisha +Ann +Asha +Ashlee +Candace +Cara +Carol +Cassandra +Chloe +Daniela +Elena +Evelyn +Ingrid +Isabelle +Jessie +Jillian +Katharine +Kenya +Kristin +Lucy +Mikia +Miriam +Nichelle +Nina +Niya +Sophie +Tanisha +Tiera +Toni +Tori +Yasmin +Adriana +Alejandra +Antionette +Ariana +Ashleigh +Audrey +Autumn +Barbara +Breanna +Brittani +Candice +Carly +Claudia +Deanna +Deborah +Delores +Dina +Eboni +Elisa +Elisabeth +Elise +Eliza +Ellen +Elsy +Faith +Hayley +Irene +Isabella +Janelle +Johanna +Justine +Katelyn +Khadijah +Kristine +Lashae +Lashawn +Latisha +Lena +Linda +Lucia +Madison +Marina +Martha +Martina +Melody +Michele +Miracle +Natalia +Precious +Princess +Richelle +Robyn +Rose +Shaniqua +Sharon +Susana +Tanya +Tiarra +Vivian +Yvonne +Jasmine +Ashley +Alexandra +Brittany +Sarah +Jessica +Rachel +Alexis +Diamond +Emily +Taylor +Danielle +Elizabeth +Katherine +Mary +Brianna +Lauren +Victoria +Samantha +Emma +Hannah +Caroline +Imani +Jennifer +Briana +Anna +Amanda +Bria +Julia +Kayla +Nicole +Amber +Michelle +Rebecca +Andrea +Tiffany +Shannon +Asia +Courtney +Laura +Maya +Catherine +Claire +Ebony +Maria +Tiara +Gabrielle +Megan +Crystal +Jacqueline +Stephanie +Allison +Diana +Erin +Kathryn +Khadijah +Kimberly +Melissa +Olivia +Sydney +Destiny +Erica +Grace +Christina +India +Karen +Margaret +Alexus +Anne +Caitlin +Dominique +Haley +Jordan +Leah +Christine +Kelsey +Madeline +Monica +Natalie +Tamara +Alicia +Janae +Kelly +Mariah +Nancy +Raven +Vanessa +Abigail +Angel +Kiara +Kristen +Monique +Toni +Bianca +Kendra +Charlotte +Cynthia +Erika +Kathleen +Madison +Mia +Morgan +Nia +Sara +Angela +Cindy +Gabriela +Isabel +Jasmin +Jazmine +Naomi +Shanice +Sophia +Whitney +Alexa +Ana +April +Chanel +Dana +Kara +Katrina +Lindsay +Nina +Sierra +Brandi +Chelsea +Claudia +Heather +Isabelle +Jenifer +Keisha +Kenya +Kristina +Lily +Lindsey +Lydia +Madeleine +Meghan +Patricia +Sabrina +Susan +Tiana +Wendy +Alison +Aliyah +Angelica +Antonia +Ariel +Ayanna +Brooke +Christian +Ciara +Hayley +Jade +Jamie +Jocelyn +Joy +Kiera +Krystal +London +Marissa +Melanie +Nadia +Sade +Tania +Tierra +Tyler +Tyra +Ajee +Amy +Autumn +Bridget +Brittney +Carla +Casey +Cecilia +Chante +Cheyenne +Cierra +Deja +Elena +Ellen +Gloria +Ingrid +Isabella +Janay +Janelle +Kaitlyn +Kierra +Lisa +Monet +Paige +Precious +Sophie +Tatiana +Zoe +Aaliyah +Adrienne +Alyssa +Amelia +Ariana +Camille +Chanelle +Colleen +Denise +Desiree +Eboni +Helen +Jada +Julie +Kaitlin +Karina +Kendall +Lexus +Lillian +Linda +Mercedes +Molly +Paris +Rachelle +Tia +Tyesha +Adriana +Amira +Anastasia +Ann +Ashlee +Audrey +Ayana +Babygirl +Brea +Bridgette +Britney +Carina +Cassandra +Chloe +Devon +Eliana +Faith +Hope +Jenna +Justice +Leslie +Lucy +Marie +Natasha +Noelle +Nora +Pamela +Paula +Robin +Rosa +Sandra +Savannah +Shayla +Shelby +Tanisha +Tess +Veronica +Alaina +Alexandria +Alisha +Armani +Asha +Ashely +Ashleigh +Bethany +Breanna +Brenda +Breona +Cameron +Cara +Carolyn +Chantel +Ciera +Dalia +Daniella +Dionna +Domonique +Doris +Eleanor +Elise +Evelyn +Gabriella +Genesis +Genevieve +Hanna +Iesha +Ikea +Irene +Jazmin +Jillian +Joan +Johanna +Judith +Kate +Katelyn +Katie +Kiana +Lashae +Lashawn +Lena +Michaela +Miranda +Natalia +Niya +Patrice +Renee +Shaneka +Simone +Suzanne +Tamika +Tanya +Tori +Valencia +Virginia +Vivian +Xiomara +Ashley +Jasmine +Alexis +Danielle +Jessica +Alexandra +Katherine +Rachel +Brittany +Sarah +Brianna +Diamond +Elizabeth +Jennifer +Taylor +Emily +Caroline +Emma +Julia +Victoria +Kayla +Nicole +Anna +Hannah +Asia +Olivia +Amber +Grace +Lauren +Margaret +Mary +Deja +Erica +Michelle +Morgan +Rebecca +Amanda +Christina +Stephanie +Imani +Briana +Catherine +Jordan +Maya +Samantha +Crystal +Angel +Madeline +Megan +India +Dominique +Claire +Courtney +Natalie +Allison +Laura +Maria +Melissa +Sydney +Bria +Destiny +Erin +Sara +Kelly +Kelsey +Tiffany +Alexus +Gabrielle +Jacqueline +Mariah +Evelyn +Karen +Kathryn +Kimberly +Sophia +Alyssa +Erika +Nora +Andrea +Camille +Jamie +Mia +Monica +Naomi +Tiara +Ana +Brittney +Christine +Diana +Isabella +Madeleine +Sierra +Sophie +Zoe +Abigail +Desiree +Jada +Janae +Kiana +Leah +Leslie +Natasha +Sade +Shannon +Anne +Jasmin +Jazmine +Jocelyn +Kiara +Kristen +Madison +Molly +Sabrina +Selena +Tamara +Tyler +Alexa +Bianca +Bridget +Cierra +Dasia +Eleanor +Jade +Kathleen +Lydia +Mackenzie +Marie +Melanie +Monique +Aliyah +Chantel +Charlotte +Ciara +Clara +Frances +Isabelle +Jane +Lily +London +Summer +Tierra +Adriana +Aja +Alison +Amelia +Angela +Arielle +Armani +Autumn +Brandi +Caitlin +Cara +Chloe +Dana +Deanna +Elena +Gabriela +Heather +Helen +Isabel +Janay +Joy +Kierra +Lillian +Lindsey +Marissa +Michaela +Patricia +Raven +Ruth +Shelby +Vanessa +Aaliyah +Aisha +Ariel +Ayanna +Breana +Brenda +Breonna +Cynthia +Daisha +Dashawn +Ebony +Gabriella +Haley +Karla +Kenya +Natalia +Nia +Raquel +Robin +Rosa +Tania +Amani +Amy +Antoinette +Ariana +Arianna +Asha +Barbara +Breanna +Brionna +Carly +Carmen +Chanel +Chelsea +Christian +Clare +Deborah +Eva +Genevieve +Janelle +Johanna +Julie +Kaila +Kaitlin +Katelyn +Kira +Mikayla +Miranda +Nancy +Nina +Paige +Pamela +Paula +Rose +Sasha +Savannah +Tatiana +Tia +Tiana +Toni +Tyra +Alicia +Amira +Anastasia +Annie +Audrey +Baby +Babygirl +Bryanna +Camilla +Candace +Carla +Cindy +Colleen +Destini +Domonique +Eileen +Francesca +Hanna +Holly +Iesha +Jamia +Janee +Jenna +Juliana +Julianna +Justice +Kathy +Kendall +Kiera +Kristin +Kristina +Krystal +Kyla +Lashae +Lashawn +Linda +Martha +Mercedes +Mira +Miracle +Monet +Moriah +Najah +Paris +Shira +Simone +Skye +Skylar +Sofia +Talia +Tamera +Tara +Tori +Unique +Vivian +Wendy +Yasmin +Alexis +Taylor +Emily +Jessica +Sarah +Jasmine +Ashley +Katherine +Kayla +Imani +Jennifer +Elizabeth +Diamond +Rebecca +Alexandra +Anna +Danielle +Julia +Caroline +Rachel +Stephanie +Brianna +Brittany +Courtney +Samantha +Amanda +Hannah +Lauren +Natalie +Nicole +Briana +Catherine +Mary +Jordan +Asia +Laura +Margaret +Olivia +Victoria +Maria +Destiny +Megan +Sydney +Deja +Emma +Sophia +Christina +Maya +Amber +Dominique +Crystal +Melissa +Andrea +Gabrielle +Grace +Sara +Sierra +Angel +Charlotte +Kelly +Leah +Shannon +Tatiana +Tiara +Tyler +Bianca +Erica +Erika +Erin +Jacqueline +Kimberly +Madeline +Michelle +Monica +Morgan +Naomi +Tiffany +Jocelyn +Mia +Abigail +Ariel +Bria +Cindy +Claire +Diana +Madeleine +Raven +Vanessa +Zoe +Amy +Angela +Ariana +Helen +Jada +London +Nia +Sabrina +Shayla +Sophie +Chloe +Christine +Claudia +India +Isabel +Jazmine +Kelsey +Monae +Nadia +Aaliyah +Alana +Alexus +Chanel +Gabriella +Haley +Kathleen +Kenya +Molly +Nora +Precious +Tamia +Alicia +Allison +Anne +Carla +Ebony +Gabriela +Hope +Isabella +Jasmin +Karina +Kathryn +Lydia +Madison +Marissa +Miranda +Sofia +Aisha +Amelia +Ana +Audrey +Ayanna +Caitlin +Chyna +Dana +Janae +Kendra +Kiara +Kyra +Lashawn +Mariah +Monique +Myesha +Paris +Sade +Sasha +Shelby +Teresa +Tierra +Alison +Aliyah +Alyssa +Amani +Arielle +Armani +Breanna +Brenda +Cara +Carolyn +Ciara +Destinee +Elena +Ellen +Emani +Hayley +Isabelle +Jenna +Karen +Karla +Kristen +Lillian +Lindsay +Nina +Renee +Tamara +Toni +Tyra +Alejandra +Ayana +Blair +Brandi +Breana +Bridget +Cierra +Eleanor +Eva +Faith +Jamie +Joy +Justice +Leslie +Maeve +Marisa +Melanie +Nancy +Niya +Savannah +Summer +Susan +Tania +Adrienne +Alexa +Alexandria +Amina +April +Bailey +Brigid +Brittney +Brooke +Camille +Carly +Chelsea +China +Christian +Clara +Clare +Colleen +Dajah +Daniela +Delaney +Domonique +Eliana +Eliza +Frances +Hailey +Iesha +Jade +Jane +Jasmyn +Kaitlin +Kara +Kendall +Khadijah +Kiana +Kyla +Latonya +Lexus +Maia +Mariama +Meghan +Moesha +Natasha +Noelle +Octavia +Paola +Patricia +Rosa +Selena +Tara +Tatyana +Tia +Tianna +Jasmine +Alexis +Kayla +Sarah +Katherine +Taylor +Hannah +Jessica +Ashley +Elizabeth +Diamond +Emma +Caroline +Jennifer +Emily +Briana +Rachel +Alexandra +Grace +Sophia +Lauren +Olivia +Brianna +Imani +Jordan +Julia +Anna +Danielle +Gabrielle +Rebecca +Samantha +Victoria +Madeline +Maya +Stephanie +Angel +Brittany +Dominique +Erin +Jada +Nia +Nicole +Amanda +Jacqueline +Courtney +India +Claire +Jade +Asia +Deja +Madison +Michelle +Destiny +Mary +Mia +Christina +Erica +Tiffany +Amber +Catherine +Megan +Ana +Margaret +Mariah +Allison +Baby +Camille +Janae +Sydney +Andrea +Isabelle +Kathleen +Kimberly +Natalie +Sabrina +Tiara +Abigail +Anne +Christine +Claudia +Laura +Leslie +Madeleine +Melissa +Alexus +Babygirl +Charlotte +Isabel +Kathryn +Maria +Melanie +Morgan +Sara +Shayla +Alyssa +Ariana +Bria +Brooke +Gabriela +Gabriella +Kiara +Naomi +Raven +Vanessa +Aaliyah +Alexa +Aliyah +Ayanna +Bianca +Caitlin +Leah +Linda +Nina +Nora +Paris +Shannon +Tyler +Veronica +Amani +Angela +Ebony +Janay +Kelly +Kristen +Michaela +Tamia +Zoe +Alicia +Carmen +Cierra +Dana +Daniela +Deborah +Jasmin +Jocelyn +Karen +Kate +Miranda +Nancy +Selena +Sophie +Tierra +Yasmine +Amari +Ariel +Armani +Bethany +Cecilia +Chloe +Cindy +Dasia +Desiree +Diana +Erika +Evelyn +Faith +Isabella +Janai +Jenna +Jillian +Kendall +Kenya +Kyra +Lillian +Lindsay +Lydia +Marina +Martha +Maura +Molly +Natasha +Noelle +Sade +Sierra +Talia +Tania +Tatyana +Toni +Tyra +Alana +Alison +Amy +Angelique +Arianna +Breanna +Brittney +Chanel +Ciara +Delaney +Destinee +Emani +Eva +Hope +Iris +Jamea +Jamie +Janell +Jayla +Jazmine +Joanna +Katie +Kendra +Lashawn +Maia +Makayla +Marie +Meghan +Milan +Monique +Nakia +Paige +Precious +Ruth +Simone +Tamara +Tara +Zhane +Alexia +Angelica +Audrey +Barbara +Brionna +Cameron +Carolyn +Casey +Cassandra +Chelsea +China +Chyna +Clara +Crystal +Daja +Denise +Diane +Elena +Eliza +Emoni +Erykah +Fiona +Hayley +Jenifer +Jordyn +Juliana +Kaitlin +Kennedy +Kiana +Kierra +Kristina +Lindsey +Lisa +Miracle +Nadia +Niya +Savannah +Shelby +Sonia +Tatiana +Tess +Tessa +Theresa +Tiana +Tiffani +Tyana +Whitney +Alexis +Jasmine +Taylor +Kayla +Jessica +Ashley +Elizabeth +Olivia +Alexandra +Emma +Julia +Katherine +Sarah +Destiny +Lauren +Brianna +Jennifer +Maya +Caroline +Jordan +Emily +Rachel +Diamond +Hannah +Sophia +Sydney +Victoria +Anna +Nia +Mary +Jada +Danielle +Imani +Rebecca +Claire +Grace +Megan +Natalie +Brittany +Deja +Briana +Madeleine +Madeline +Camille +Catherine +Erin +Angel +Asia +Erica +Gabrielle +Jade +Laura +Madison +Margaret +Leah +Michelle +Abigail +Amber +Dominique +Mia +Mya +Samantha +Sara +Allison +Amanda +Andrea +Precious +Tiffany +Angela +Bria +Chloe +Christina +Isabel +Stephanie +Tamia +Ayanna +Jayla +Kathleen +Leslie +Maria +Nicole +Paige +Tyra +Zoe +Alyssa +Courtney +Eleanor +Gabriela +Gabriella +Melissa +Monica +Morgan +Sofia +Sophie +Charlotte +Diana +Frances +Jacqueline +Jamia +Jazmine +Makayla +Mariah +Nina +Shelby +Tamara +Tyler +Alexus +Amari +Anne +Cierra +Eva +Francesca +Janae +Jocelyn +Kaitlyn +Karen +Kelly +Kyra +Naomi +Patricia +Tatyana +Tiara +Alexa +Chyna +Cynthia +Erika +Faith +Helen +Isabella +Isabelle +Josephine +Kelsey +Kiara +Kristen +Lillian +Lily +Lucy +Melanie +Mikayla +Molly +Sade +Sierra +Simone +Veronica +Adriana +Alison +Aliyah +Amy +Ana +Autumn +Brittney +Chelsea +Desiree +Ebony +Elise +Jenna +Julie +Kendra +Kenya +Monique +Nancy +Paris +Talia +Aaliyah +Alicia +Amelia +Bianca +Brooke +Claudia +Colleen +Crystal +Dasia +Gloria +Heaven +Jamie +Karla +Kyla +Lauryn +Leila +Mara +Michaela +Niya +Rose +Shannon +Tatiana +Alexandria +Amani +Ariana +Arielle +Ava +Baby +Caitlin +Cameron +Clare +Dana +Destinee +Eliza +Evelyn +Fatima +Genesis +Giselle +Haley +Hope +Johanna +Kai +Kaila +Kaitlin +Katharine +Kathryn +Kendall +Kennedy +Kira +Krystal +Liliana +Lindsay +Lindsey +Nadia +Sabrina +Tania +Teresa +Theresa +Tierra +Adrienne +Aja +Anya +Ariel +Ayana +Breanna +Bryana +Carolyn +Casey +Cindy +Clara +Daija +Dasha +Dashawn +Dejah +Denise +Ella +Emoni +Essence +Gina +Graciela +Halle +Hayley +India +Isis +Janay +Joy +Kate +Katelyn +Kiera +Kimberly +Linda +Lisa +London +Mackenzie +Meredith +Milan +Raquel +Shayla +Summer +Susan +Tia +Vanessa +Virginia +Kayla +Jasmine +Taylor +Destiny +Sarah +Lauren +Emily +Diamond +Ashley +Jessica +Olivia +Brianna +Jada +Anna +Caroline +Katherine +Maya +Elizabeth +Emma +Hannah +Julia +Alexandra +Mary +Victoria +Grace +Rachel +Alexis +Jennifer +Jordan +Madison +Kiara +Maria +Michelle +Sophia +Sydney +Catherine +Danielle +Imani +Rebecca +Asia +Gabrielle +Megan +Claire +Nicole +Brittany +Faith +Isabel +Margaret +Natalie +Stephanie +Angel +Deja +Isabella +Samantha +Erin +Madeline +Abigail +Amanda +Eleanor +Jayla +Nia +Sophie +Tatiana +Zoe +Leah +Tamia +Tania +Tiffany +Andrea +Diana +Kimberly +Lily +Mya +Sara +Alyssa +Amber +Dominique +India +Kathleen +Mia +Tatyana +Amaya +Amelia +Briana +Caitlin +Camille +Jacqueline +Karen +Lindsey +Mikayla +Morgan +Sofia +Alicia +Charlotte +Gabriella +Kelly +Lauryn +Naomi +Nora +Shayla +Tiara +Veronica +Aniya +Carolyn +Christina +Cierra +Courtney +Erica +Gabriela +Gloria +Jasmin +Jazmine +Kaitlyn +Laura +Mackenzie +Paige +Alana +Amari +Ana +Anne +Ava +Ayanna +Cynthia +Destinee +Elena +Fatima +Genevieve +Kyra +London +Lucy +Makayla +Molly +Monica +Nadia +Natalia +Paris +Raven +Sasha +Shannon +Sierra +Simone +Tamara +Alexa +Allison +Arianna +Camryn +Chloe +Cindy +Dana +Evelyn +Isabelle +Jordyn +Leslie +Mariah +Meredith +Miracle +Nina +Ruby +Shania +Shaniya +Tyler +Anya +Bria +Bridget +Brooke +Casey +Cecilia +Chyna +Claudia +Crystal +Daja +Dejah +Ella +Eva +Haley +Helen +Jade +Jamie +Kathryn +Kennedy +Madeleine +Melanie +Melissa +Michaela +Miranda +Monique +Trinity +Vanessa +Aaliyah +Aisha +Alice +Angela +Antonia +Ariana +Avery +Bianca +Cameron +Carolina +Clare +Daisha +Dasia +Desiree +Elise +Ellen +Fiona +Hope +Ingrid +Janae +Jewel +Jocelyn +Kaiya +Karina +Kate +Katelyn +Kendra +Kenya +Kierra +Kyla +Maeve +Tara +Wendy +Aja +Aliyah +Amani +Annie +April +Ariel +Ashanti +Audrey +Autumn +Brandi +Breanna +Caitlyn +Celeste +Celia +Chanel +Chelsea +Cheyenne +Ciara +Daniela +Eliana +Elisa +Eryn +Hailey +Iris +Karla +Kira +Kristin +Kristina +Lillian +Lydia +Meghan +Naya +Niya +Nya +Patricia +Riley +Sabrina +Savannah +Selena +Serena +Talia +Tyra +Virginia +Kayla +Katherine +Elizabeth +Destiny +Jordan +Grace +Taylor +Sarah +Alexandra +Hannah +Jasmine +Julia +Olivia +Sydney +Emma +Lauren +Caroline +Diamond +Brianna +Emily +Alexis +Danielle +Jennifer +Jessica +Ashley +Rachel +Anna +Sophia +Victoria +Imani +Jada +Morgan +Nicole +Camille +Diana +Madison +Maya +Andrea +Catherine +Gabrielle +Mary +Sophie +Zoe +Abigail +Asia +Claire +Courtney +Margaret +Michelle +Nia +Trinity +Chloe +Isabel +Maria +Angel +Isabella +Kimberly +Leah +Mikayla +Samantha +Sofia +Amanda +Jacqueline +Madeline +Mia +Erin +Jocelyn +Lily +London +Tamia +Aniya +Briana +Brittany +Eleanor +Madeleine +Makayla +Tamara +Anne +Brooke +Janae +Kathryn +Kyra +Tiffany +Vanessa +Audrey +Erica +Faith +India +Jade +Kierra +Lauryn +Natalie +Sabrina +Sara +Sierra +Aliyah +Ariana +Ava +Charlotte +Deja +Dominique +Gabriella +Haley +Jayla +Mya +Raven +Rebecca +Stephanie +Amani +Amaya +Angela +Bria +Caitlin +Cameron +Carmen +Jasmin +Kendall +Kennedy +Lydia +Monet +Nina +Savannah +Shayla +Tyler +Ana +Aniyah +Armani +Chyna +Cierra +Cindy +Eliza +Gabriela +Helen +Iyanna +Kathleen +Leslie +Naomi +Paige +Simone +Tara +Aisha +Allison +Amelia +Amy +Ariel +Autumn +Bridget +Christina +Claudia +Hanna +Kiara +Megan +Michaela +Nadia +Paris +Tiara +Alexa +Amber +Ann +Bianca +Carolina +Christian +Christine +Ciara +Clara +Ella +Evelyn +Hailey +Hana +Joy +Juliana +Kala +Karina +Laura +Lesly +Lindsay +Mackenzie +Mariah +Meghan +Monique +Nancy +Natalia +Niya +Patricia +Raquel +Rose +Shania +Tania +Adriana +Alexandria +Alyssa +Breanna +Crystal +Daisha +Daniela +Deborah +Eden +Elena +Emely +Eva +Fatima +Genesis +Georgia +Jamia +Jane +Jaqueline +Joanna +Josephine +Kaila +Katelyn +Katie +Katrina +Kelly +Kelsey +Leila +Madelyn +Marissa +Melanie +Melissa +Mercedes +Molly +Monica +Natasha +Noelle +Phoebe +Shannon +Sonia +Taniya +Tatiana +Toni +Yasmine +Aaliyah +Alison +Amina +Amira +Angelica +Asha +Avery +Ayanna +Brenda +Camryn +Carla +Cecilia +Celia +Chanel +Cheyenne +Christiana +Clare +Corinne +Cynthia +Eileen +Essence +Esther +Gianna +Heaven +Isabelle +Jailyn +Jamie +Janai +Jazmine +Jenna +Jewel +Jillian +Jordyn +Joselyn +Julie +Kamryn +Karla +Kate +Kaylin +Kennedi +Kristen +Lena +Lillian +Litzy +Logan +Lucy +Miracle +Nakiya +Nora +Nya +Nyla +Princess +Rachael +Ryan +Serena +Shaniyah +Tess +Yasmin +Zoie +Emily +Emma +Kayla +Katherine +Taylor +Sophia +Grace +Sydney +Elizabeth +Anna +Ashley +Jessica +Sarah +Alexandra +Brianna +Julia +Caroline +Jada +Olivia +Hannah +Destiny +Jasmine +Lauren +Zoe +Isabella +Alexis +Maya +Madison +Abigail +Jordan +Rachel +Isabel +Jennifer +Mary +Morgan +Leah +Samantha +Aaliyah +Diamond +Sophie +Catherine +Danielle +Gabrielle +Mia +Amanda +Natalie +Nicole +Victoria +Asia +Madeline +Stephanie +Trinity +Angel +Erin +India +Jayla +Lily +Molly +Sierra +Caitlin +Chloe +Nina +Rebecca +Sofia +Angela +Christina +Ella +Makayla +Margaret +Megan +Andrea +Ava +Charlotte +Faith +Imani +Allison +Jade +Kennedy +Nevaeh +Nia +Tatiana +Deja +Heaven +Jacqueline +Kiara +London +Maria +Bianca +Briana +Camille +Ciara +Claire +Dominique +Kendall +Kyra +Lucy +Madeleine +Michelle +Mya +Naomi +Raven +Ana +Aniya +Arianna +Cindy +Diana +Gabriela +Gabriella +Jasmin +Kathleen +Kathryn +Kelly +Kimberly +Meghan +Melissa +Mikayla +Niya +Nyah +Precious +Alyssa +Amari +Amy +Aniyah +Audrey +Autumn +Avery +Bria +Brittany +Cameron +Carmen +Courtney +Dana +Emani +Janae +Jordyn +Laura +Lillian +Sabrina +Sade +Sara +Talia +Tamia +Tiara +Vanessa +Anne +Bridget +Britney +Cayla +Chelsea +Eleanor +Elise +Erica +Fatima +Haley +Janiya +Jazmine +Jocelyn +Kaila +Laila +Lucia +Mackenzie +Nora +Shannon +Simone +Tara +Veronica +Alexia +Amaya +Amber +Amelia +Ariana +Ayanna +Claudia +Crystal +Cynthia +Elena +Isabelle +Jamia +Joy +Karen +Karina +Makiya +Natasha +Ryan +Taniya +Tyra +Alicia +Aliyah +Amani +Anaya +Ariel +Ayana +Cecilia +Charity +Cheyenne +Chyna +Clare +Daniela +Dejah +Eliza +Esther +Evelyn +Fiona +Francesca +Georgia +Giselle +Hailey +Hope +Isabela +Jane +Janice +Joanna +Kamryn +Karla +Katharine +Kaylah +Leslie +Lesly +Lindsay +Mariam +Marie +Michaela +Miranda +Miriam +Sasha +Shayla +Skye +Stella +Tamara +Tiana +Tierra +Tiffany +Yasmine +Alexa +Alexus +Alice +Amira +Annika +Brenda +Brooke +Carla +Carolina +Cassidy +Clara +Daisha +Dakota +Dayonna +Delaney +Ebony +Eliana +Emely +Frances +Genesis +Helen +Helena +Hilda +Irene +Jaelyn +Jalyn +Jalynn +Jayda +Juliette +Kaia +Kaitlin +Kaiya +Katelyn +Kenia +Kiya +Kristina +Kyla +Kylie +Lena +Lindsey +Mariah +Martha +Maura +Monet +Myah +Nadia +Nancy +Natalia +Nayeli +Nya +Paige +Paris +Patricia +Peyton +Rose +Serena +Shelby +Teresa +Tess +Toni +Kayla +Taylor +Sarah +Elizabeth +Olivia +Emily +Katherine +Lauren +Samantha +Anna +Julia +Caroline +Alexandra +Grace +Jessica +Jordan +Sophia +Sydney +Abigail +Hannah +Ashley +Jennifer +Destiny +Jasmine +Isabella +Jada +Zoe +Emma +Aaliyah +Alexis +Madeline +Mary +Sophie +Maya +Catherine +Isabel +Madison +Mia +Trinity +Brianna +Diamond +Margaret +Andrea +Ava +Danielle +Maria +Natalie +Rebecca +Sofia +Claire +Gabrielle +Jayla +Nicole +Amelia +Angel +Aniyah +Ella +Mya +Charlotte +Christina +Imani +Kelly +Lucy +Makayla +Michelle +Paige +Rachel +Sara +Ashanti +Jacqueline +Jocelyn +Karen +Morgan +Chloe +Erin +Lily +Aniya +Eleanor +Kaitlyn +Laura +Mikayla +Gabriela +India +Karina +Lillian +Melissa +Nia +Stephanie +Allison +Amanda +Ana +Angela +Courtney +Heaven +Kimberly +Leah +Megan +Victoria +Amber +Audrey +Cecilia +Diana +Helen +Isabelle +Madeleine +Savannah +Shaniya +Amari +Asia +Avery +Briana +Clare +Gabriella +Kennedy +Kiara +Leslie +London +Marie +Nina +Raven +Sierra +Tiffany +Vanessa +Brenda +Camille +Eden +Eva +Jenna +Karla +Kendall +Kyra +Nevaeh +Tania +Alexa +Aliyah +Anne +Ariana +Bianca +Bridget +Cayla +Evelyn +Fiona +Jordyn +Josephine +Laila +Mackenzie +Melanie +Micah +Molly +Naomi +Nora +Nyah +Shannon +Tamia +Tyler +Alicia +Ariel +Autumn +Ayana +Ayanna +Brittany +Brooke +Ciara +Cindy +Claudia +Daniela +Daphne +Deja +Ellen +Emely +Faith +Frances +Hailey +Jaden +Jamia +Jane +Jasmin +Jazmin +Katie +Kyla +Monica +Natalia +Niya +Nya +Phoebe +Riley +Sasha +Taniya +Tyra +Veronica +Aja +Alison +Amani +Aminata +Anaya +Angie +Arianna +Bailey +Beatrice +Bria +Carina +Casey +Dana +Eliza +Erica +Genevieve +Gillian +Giselle +Hanna +Hope +Ingrid +Janae +Janiya +Jazmine +Julie +Kathryn +Kristina +Lindsey +Lydia +Michaela +Nadia +Paola +Samiya +Serena +Serenity +Simone +Summer +Tatiana +Alice +Amiya +Amy +Anya +Arielle +Caitlin +Carmen +Carolyn +Celia +Chanel +Dominique +Dorothy +Emilie +Gina +Jade +Jaelyn +Kathleen +Kelsey +Leila +Miranda +Miriam +Nyla +Perla +Rose +Ruby +Ruth +Sanaa +Shayla +Skye +Talia +Tamara +Tiana +Tiara +Tori +Valerie +Katherine +Kayla +Emily +Elizabeth +Sophia +Abigail +Caroline +Sarah +Anna +Emma +Grace +Ashley +Olivia +Sydney +Maya +Taylor +Isabella +Alexandra +Ella +Zoe +Isabel +Julia +Chloe +Jada +Kennedy +Madison +Sofia +Alexis +Jasmine +Rachel +Jessica +Lauren +Catherine +Charlotte +Lily +Madeline +Makayla +Mary +Natalie +Samantha +Sophie +Brianna +Claire +Destiny +Gabrielle +Hannah +Margaret +Mia +Nicole +Victoria +Allison +Christina +Stephanie +Aniya +Ava +Erin +Michelle +Nia +Aaliyah +Amelia +Audrey +Briana +Courtney +Imani +Jordan +Kimberly +Maria +Morgan +Fiona +Jacqueline +Jade +Laila +Megan +Mya +Naomi +Aniyah +Asia +Faith +Jayla +Jennifer +Leah +Lucy +Nina +Sara +Alyssa +Ana +Angel +Camille +Danielle +Eleanor +Gabriela +Gabriella +Jocelyn +Nora +Ariana +Diamond +Kate +Nevaeh +Alexa +Amari +Elise +Eva +Karen +Kendall +Lillian +London +Trinity +Alicia +Cindy +Elena +Kiara +Madeleine +Sabrina +Sierra +Talia +Diana +Ellie +Eve +Heaven +Helen +Janiyah +Leila +Leslie +Lindsay +Mackenzie +Rebecca +Adriana +Amanda +Amber +Amy +Anne +Arianna +Ariel +Claudia +Eliza +Emely +Evelyn +Frances +India +Jasmin +Josephine +Kaitlyn +Karina +Layla +Melanie +Miranda +Miriam +Paige +Raven +Riley +Shania +Shannon +Skylar +Taniya +Tiffany +Amya +Angelica +Brooke +Clare +Erika +Fatima +Jalyn +Jamie +Jazmyn +Kennedi +Kyla +Maggie +Meghan +Molly +Monae +Natasha +Paris +Ryan +Sidney +Aliyah +Amani +Amaya +Anaya +Andrea +Armani +Asha +Ayanna +Bria +Carly +Carmen +Cassidy +Chelsea +Cierra +Crystal +Delaney +Dominique +Erica +Genevieve +Hailey +Helena +Holly +Isabelle +Janae +Judy +Juliana +Kaila +Kathryn +Laura +Lydia +Mckenzie +Melissa +Mikayla +Mira +Patricia +Pearl +Sanaa +Serenity +Shaniya +Simone +Skye +Tyler +Ainsley +Amina +Amirah +Angela +Annie +Anya +Avery +Beatrice +Bianca +Britney +Brittany +Caitlin +Camila +Casey +Cassandra +Celia +Cheyenne +Christian +Christine +Dania +Daniella +Eliana +Ellen +Gia +Heidy +Hope +Isis +Jane +Janiya +Jaylin +Jewel +Joy +Kaiya +Karla +Kathleen +Lauryn +Lila +Lisa +Makiyah +Malia +Marie +Nya +Nyla +Peyton +Robin +Ruth +Sasha +Serena +Shayla +Stella +Tamia +Tara +Tatiana +Tess +Vanessa +Sophia +Katherine +Kayla +Elizabeth +Emma +Caroline +Abigail +Olivia +Sarah +Sydney +Ashley +Ella +Alexandra +Anna +Madison +Ava +Jasmine +Grace +Zoe +Catherine +Destiny +Maya +Samantha +Taylor +Emily +Isabella +Julia +Morgan +Jessica +Lauren +Mary +Rachel +Sofia +Charlotte +Margaret +Alexis +Hannah +Brianna +Lily +Mia +Nicole +Victoria +Aaliyah +Amelia +Makayla +Jada +Kennedy +Madeline +Diana +Gabrielle +Angel +Chloe +Claire +Erin +Natalie +Amanda +Nia +Daniela +Jayla +Jennifer +Jordan +Maria +Michelle +Stephanie +Aniya +Jacqueline +Kelly +Kiara +Kimberly +Leah +Lucy +Angela +Isabel +Isabelle +Laura +Andrea +Eleanor +Megan +Nina +Nora +Sophie +Stella +Alicia +Allison +Diamond +Eva +Evelyn +Fiona +Janiya +Laila +Madeleine +Molly +Rebecca +Amaya +Ana +Babygirl +Gabriela +Heaven +Imani +Mya +Saniya +Tamia +Alexa +Amari +Anaya +Ariana +Christine +Danielle +Gabriella +Jade +Kathryn +Lila +Lillian +Naomi +Trinity +Christina +Cindy +Elena +Faith +Karla +Layla +Nevaeh +Sasha +Tatiana +Brenda +Briana +Brooke +Ciara +Erica +Kira +Lydia +Natalia +Paige +Paris +Sadie +Sara +Sierra +Simone +Talia +Vanessa +Alana +Aliyah +Alyssa +Aniyah +Anne +Courtney +Cynthia +Dakota +Eliza +Genesis +Helen +Jocelyn +Juliana +Karen +Lesly +London +Mackenzie +Maeve +Miriam +Ruby +Alison +Anya +Ayanna +Caitlin +Clara +Claudia +Daria +Emely +Giselle +India +Isis +Jasmin +Kamari +Kendall +Maia +Makiya +Melissa +Monica +Nadia +Nancy +Nyla +Raquel +Savannah +Serenity +Skye +Tyra +Yasmine +Ada +Akira +Alexia +Amara +Angelica +Annika +Arianna +Audrey +Autumn +Bianca +Bridget +Carmen +Chelsea +Eve +Georgia +Jamie +Joi +Josephine +Julissa +Kaitlyn +Kaniya +Kathleen +Kennedi +Kylie +Kyra +Lauryn +Leila +Leslie +Logan +Lucia +Mariah +Marley +Melanie +Micah +Mikayla +Miranda +Paola +Phoebe +Rebeca +Riley +Ruth +Sabrina +Shayla +Summer +Taliyah +Tiara +Unique +Vivian +Adriana +Adrianna +Amy +Angie +Ariel +Asia +Bella +Brittany +Caitlyn +Carly +Celeste +Christiana +Clare +Crystal +Eden +Eloise +Emani +Fatima +Genevieve +Hailey +Jala +Janelle +Janet +Jaylen +Jenifer +Joanna +Jordyn +Kaiya +Kate +Katelyn +Katharine +Katie +Katrina +Kyla +Laniya +Lesli +Leyla +Lindsay +Madelyn +Mariana +Marina +Meredith +Miracle +Shania +Sindy +Sydni +Tamara +Taniya +Treasure +Sophia +Olivia +Elizabeth +Kayla +Katherine +Emily +Alexandra +Anna +Ashley +Ava +Emma +Abigail +Grace +Lauren +Destiny +Caroline +Sarah +Isabella +Julia +Natalie +Sofia +Hannah +Jennifer +Maya +Sydney +Taylor +Charlotte +Madison +Jasmine +Zoe +Gabrielle +Aaliyah +Jada +Makayla +Mia +Samantha +Victoria +Catherine +Chloe +Naomi +Trinity +Maria +Sophie +Jessica +Kennedy +Lucy +Nevaeh +Sara +Allison +Audrey +Brianna +Daniela +Stephanie +Angel +Aniyah +Brooke +Claire +Michelle +Amelia +Eleanor +Ella +Kimberly +Mary +Morgan +Gabriela +Lucia +Margaret +Isabel +Jordan +Laila +Andrea +Camille +Clara +Diana +Eva +Evelyn +Faith +Josephine +Kiara +Melanie +Rachel +Alexis +Alyssa +Erin +Jayla +Kyla +Nia +Vanessa +India +Karen +Leah +Lesly +Lydia +Madeline +Nicole +Nina +Rebecca +Sabrina +Stella +Amanda +Ana +Aniya +Bianca +Courtney +Elena +Genesis +Hailey +Jade +Jocelyn +Kaitlyn +Molly +Paris +Talia +Amani +Amari +Amira +Ariel +Diamond +Fiona +Heaven +Jacqueline +Karina +Leila +Lillian +Mackenzie +Riley +Savannah +Tania +Angela +Ariana +Babygirl +Caitlin +Chelsea +Cynthia +Emely +Erica +Janiya +Kate +Kathryn +Layla +Lily +London +Mikayla +Ruby +Ryan +Sasha +Tamia +Alana +Anne +Avery +Christina +Claudia +Eliza +Estefany +Gabriella +Imani +Jasmin +Karla +Kathleen +Kaylin +Kendall +Laura +Madeleine +Mariana +Miranda +Mya +Paige +Raven +Saniya +Simone +Skylar +Tiffany +Alison +Amy +Anya +Briana +Danielle +Delaney +Elise +Fatima +Giselle +Helen +Hope +Ingrid +Kira +Litzy +Lizbeth +Maia +Mariah +Micah +Nadia +Naimah +Ruth +Skye +Tess +Yasmin +Yasmine +Zion +Adelaide +Alexa +Anaya +Angie +Arielle +Asha +Brenda +Camila +Carmen +Ciara +Dakota +Dana +Deja +Destinee +Eve +Haley +Isabelle +Iyana +Janae +Jaqueline +Jenifer +Joanna +Jordyn +Joy +Juliana +Julissa +Justice +Kamryn +Kaniya +Katharine +Katie +Keira +Kelly +Kennedi +Khadijah +Lauryn +Liliana +Logan +Mariam +Marissa +Melissa +Michaela +Naima +Natalia +Nya +Nyla +Perla +Rayven +Sadie +Samara +Samia +Sanaa +Shannon +Shayla +Sierra +Skyy +Treasure +Veronica +Vivian +Zaniya +Katherine +Elizabeth +Ashley +Ava +Sophia +Olivia +Sofia +Caroline +Hannah +Abigail +Emily +Maya +Anna +Madison +Nevaeh +Kayla +Morgan +Sarah +Taylor +Charlotte +Isabella +Catherine +Emma +Jennifer +Alexandra +Julia +Grace +Naomi +Chloe +Diana +Sydney +Destiny +Gabrielle +Gabriela +Jasmine +Zoe +Faith +Mia +Jayla +Kimberly +Natalie +Makayla +Samantha +Angel +Aniya +Claire +Kennedy +Lauren +Trinity +Amelia +Brianna +Jada +London +Mary +Allison +Ella +Erin +Jocelyn +Josephine +Leah +Madeline +Maria +Michelle +Stephanie +Alexa +Lucy +Nicole +Sophie +Alyssa +Brooke +Eleanor +Gabriella +Isabel +Jordan +Layla +Sara +Amy +Aniyah +Clara +Lily +Madeleine +Natalia +Ana +Audrey +Avery +Bridget +Janiya +Jessica +Lila +Lillian +Margaret +Sadie +Aaliyah +Caitlin +Emely +Karen +Kelly +Kendall +Leslie +Lucia +Simone +Vanessa +Addison +Amaya +Andrea +Daniela +Eva +Jade +Kathryn +Keira +Makenzie +Melanie +Molly +Shaniya +Stella +Victoria +Alana +Angela +Annika +Ariana +Arianna +Autumn +Camila +Danielle +Diamond +Elena +Emerson +Genesis +Heaven +India +Isabelle +Jacqueline +Mckenzie +Megan +Mya +Nia +Nora +Paola +Rachel +Sabrina +Tatiana +Tiffany +Alexis +Asia +Fiona +Imani +Laila +Nina +Nyla +Ryan +Serenity +Taniya +Adriana +Alejandra +Amari +Amira +Angie +Anya +Ashly +Azaria +Camille +Carmen +Delaney +Dulce +Eden +Eliza +Emilia +Francesca +Georgia +Hope +Jasmin +Katie +Kyra +Lindsay +Maia +Melissa +Naima +Paris +Rebecca +Rose +Ruth +Sanaa +Yasmin +Zara +Aliyah +Amirah +Anne +Briana +Camryn +Cara +Ciara +Crystal +Cynthia +Dakota +Elise +Evelyn +Fatima +Frances +Gloria +Hanna +Heidi +Jaelyn +Jamia +Janiyah +Jazmine +Jordyn +Kamari +Karina +Kathleen +Kenya +Leila +Lesly +Meghan +Mikayla +Miracle +Phoebe +Riley +Rosa +Sanai +Saniyah +Sasha +Savannah +Skye +Skylar +Summer +Talia +Veronica +Zion +Alison +Amani +Amber +Anais +Annabel +Arielle +Ayanna +Bianca +Callie +Campbell +Carla +Cassidy +Chanel +Chelsea +Colette +Daria +Desiree +Dominique +Erica +Giselle +Helen +Ingrid +Jamie +Janae +Jane +Julie +Kate +Katelyn +Kelis +Kyla +Lydia +Mackenzie +Madelyn +Maeve +Mariana +Norah +Nylah +Paige +Patricia +Paula +Penelope +Peyton +Princess +Sarai +Shakira +Sonia +Susan +Tania +Taryn +Tess +Valerie +Virginia +Vivian +Yessenia +Zaniya +Ashley +Sophia +Katherine +Elizabeth +Caroline +Kayla +Madison +Olivia +Isabella +Zoe +Abigail +Anna +Emily +Hannah +Jennifer +Maya +Chloe +Claire +Charlotte +Julia +Kimberly +Alexandra +Lauren +Grace +Kennedy +Maria +Mia +Nevaeh +Sarah +Andrea +Brianna +Emma +Sofia +Sydney +Catherine +Jasmine +Lily +Morgan +Margaret +Allison +Amelia +Ava +Gabriela +Gabrielle +London +Madeline +Mary +Natalie +Samantha +Sophie +Ella +Isabel +Makayla +Taylor +Victoria +Audrey +Eleanor +Genesis +Karen +Alyssa +Avery +Emely +Imani +Jada +Jessica +Michelle +Ana +Destiny +Gabriella +Laila +Angel +Angie +Erin +Jocelyn +Jordan +Ruth +Stephanie +Aniya +Diana +Heaven +Jasmin +Jayla +Leah +Leslie +Rachel +Trinity +Aaliyah +Alexa +Arianna +Camille +Fiona +Logan +Megan +Nora +Sara +Autumn +Diamond +Eva +Evelyn +Kendall +Layla +Lucy +Melissa +Sadie +Vanessa +Addison +Alicia +Aniyah +Ariana +Clara +Janiyah +Josephine +Madeleine +Miracle +Molly +Nicole +Paige +Serenity +Simone +Amira +Amy +Asia +Briana +Chelsea +Christina +Faith +Hanna +India +Jacqueline +Jade +Jordyn +Joselyn +Mckenzie +Nadia +Naomi +Nina +Vivian +Alexis +Alison +Amari +Anya +Ashly +Cecilia +Daniela +Danielle +Elena +Elise +Erica +Kaitlyn +Karla +Kelly +Kimora +Lila +Lillian +Lindsay +Mikayla +Natalia +Rebecca +Rosa +Saniya +Stella +Tiffany +Zoey +Alana +Amanda +Angela +Angelina +Bianca +Bridget +Ciara +Eden +Elle +Emilia +Erika +Jane +Janiya +Kamari +Kathryn +Katie +Kaylee +Lesly +Mariah +Nyla +Riley +Sasha +Skye +Tessa +Treasure +Zion +Adriana +Alina +Amani +Brooke +Camila +Dakota +Daniella +Deja +Eve +Giselle +Harper +Julissa +Justice +Katelyn +Kennedi +Laniyah +Laura +Lauryn +Lucia +Lydia +Maeve +Mariana +Naima +Paris +Reagan +Sage +Sandra +Shayla +Skylar +Sonia +Tamia +Willow +Zora +Alice +Amber +Annika +Brenda +Catalina +Cindy +Courtney +Cynthia +Deanna +Eliana +Ellie +Emani +Fatima +Genevieve +Georgia +Hailey +Hana +Hayden +Iris +Isabelle +Jaylin +Jazmine +Jewel +Joanna +Juliet +Kaia +Keira +Kyla +Leilani +Mackenzie +Madelyn +Makiya +Marley +Melanie +Meredith +Mya +Natasha +Nayeli +Paola +Raven +Ryan +Sabrina +Samiyah +Sanaa +Serena +Sienna +Summer +Tanya +Tatiana +Valerie +Violet +Wendy +Yasmin +Zaniyah +Zaria +Ashley +Chloe +Sophia +Katherine +Emma +Emily +Madison +Olivia +Abigail +Grace +Elizabeth +Sofia +Allison +Isabella +Zoe +Ava +Charlotte +Genesis +Taylor +Anna +Kimberly +Makayla +Maya +Sarah +Mia +Gabrielle +Jada +Kennedy +Caroline +Julia +Kayla +Nevaeh +Sophie +Sydney +Gabriela +Morgan +Ella +Evelyn +Lauren +Trinity +Isabel +Jasmine +Jocelyn +Catherine +Claire +Lucy +Madeleine +Victoria +Andrea +Camila +Destiny +Jayla +Jennifer +London +Nicole +Samantha +Alexandra +Angel +Hannah +Jessica +Madeline +Michelle +Natalie +Sara +Ana +Aniya +Asia +Brianna +Daniela +Maria +Mariah +Naomi +Alexis +Amelia +Angela +Gabriella +Laila +Lila +Madelyn +Mary +Rachel +Alana +Alexa +Angelina +Aniyah +Avery +Eleanor +Jazmin +Melanie +Nora +Rebecca +Aaliyah +Angie +Audrey +Brooke +Erin +Jade +Leah +Makenzie +Mckenzie +Riley +Amira +Amy +Emely +Isabelle +Janiya +Layla +Lillian +Lily +Sadie +Stella +Tyler +Vivian +Addison +Aliyah +Arianna +Ashly +Briana +Dania +Eva +Faith +Helen +Jacqueline +Karen +Karla +Lesly +Lucia +Marie +Marley +Molly +Nina +Paige +Paris +Stephanie +Vanessa +Adriana +Brooklyn +Camille +Carmen +Cecilia +Chelsea +Clara +Danielle +Dayana +Diana +Fiona +Heaven +Justice +Kaitlyn +Kate +Katie +Kelly +Khloe +Logan +Margaret +Megan +Melissa +Mikayla +Miracle +Nyla +Rihanna +Ruth +Talia +Tamia +Zaria +Alexia +Alice +Amari +Amaya +Armani +Carolina +Cindy +Courtney +Daniella +Eden +Eliana +Esther +Francesca +Georgia +Giselle +Jasmin +Kennedi +Kira +Mackenzie +Makiya +Michaela +Nia +Precious +Samiya +Saniya +Savannah +Sienna +Tatiana +Valeria +Virginia +Yasmine +Zion +Alejandra +Alicia +Amina +Amiya +Anaya +Autumn +Clare +Diamond +Emilia +Helena +Jordan +Josephine +Juliana +Kathryn +Keira +Kiara +Leila +Liliana +Maeve +Milan +Monique +Nadia +Nancy +Peyton +Reagan +Sabrina +Samiyah +Sanaa +Tiffany +Zahra +Zoey +Zuri +Ainsley +Amanda +Amani +Anne +Anya +Bianca +Brenda +Bridget +Cameron +Camilla +Cassandra +Christina +Cristina +Crystal +Dakota +Daphne +Dylan +Ebony +Esmeralda +Fatima +Gisselle +Hadley +Hailey +Harmony +Harper +Hayden +Jaliyah +Jamie +Jane +Jordin +Juliet +Kathleen +Keren +Kimora +Kyla +Leilani +Leslie +Lilah +Lola +Makiyah +Meklit +Melany +Mira +Natalia +Nataly +Noa +Payton +Quinn +Reese +Rose +Ruby +Saron +Tessa +Valentina +Zara +Sophia +Allison +Abigail +Ashley +Elizabeth +Katherine +Taylor +Zoe +Charlotte +Madison +Anna +Ava +Genesis +Madeline +Caroline +Olivia +Emma +Kimberly +Sofia +Evelyn +Julia +Margaret +Chloe +Emily +Kayla +Makayla +Catherine +Claire +Naomi +Alexandra +Isabella +Sarah +Amelia +Ella +Gabrielle +Grace +Sydney +London +Melissa +Morgan +Natalie +Sasha +Sophie +Jennifer +Leah +Lily +Lucy +Nevaeh +Samantha +Gabriela +Lauren +Layla +Maria +Aaliyah +Audrey +Destiny +Eva +Jasmine +Kennedy +Laila +Lillian +Mia +Angel +Avery +Camila +Gabriella +Giselle +Hannah +Heaven +Jayla +Khloe +Logan +Malia +Trinity +Dakota +Isabel +Maya +Valeria +Addison +Alexa +Andrea +Aniya +Arianna +Autumn +Brianna +Emely +Jada +Nora +Stella +Adriana +Alyssa +Amani +Ana +Ashly +Diana +Jade +Jessica +Mary +Molly +Nina +Rebecca +Sara +Savannah +Serenity +Alexis +Amira +Ariana +Brooke +Cecilia +Clara +Daniela +Eleanor +Elena +Harper +Jacqueline +Jocelyn +Kaylee +Lucia +Mariah +Marley +Mckenzie +Michelle +Miracle +Victoria +Aubrey +Briana +Hailey +Jordan +Kelly +Lila +Madeleine +Nataly +Paige +Penelope +Rachel +Rose +Sadie +Stephanie +Veronica +Zoey +Caitlin +Dayana +Janiya +Jordyn +Laura +Melanie +Nicole +Payton +Peyton +Riley +Simone +Vanessa +Alice +Alicia +Alison +Amy +Aniyah +Bella +Brooklyn +Chelsea +Erin +Gianna +Hadley +Helen +Kai +Karen +Karla +Keira +Kendall +Kira +Lena +Lyla +Makenzie +Nadia +Sanai +Semaj +Sonia +Violet +Zion +Amaya +Amber +Angela +Angie +Camille +Eliana +Isabelle +Jane +Juliana +Juliet +Kate +Londyn +Lydia +Lyric +Madelyn +Maliyah +Melany +Mikayla +Miley +Norah +Nylah +Paris +Phoebe +Ruby +Ruth +Ryan +Sabrina +Sanaa +Saniyah +Talia +Taniya +Treasure +Zaniyah +Zara +Alisson +Aliya +Aliyah +Amelie +Amen +Angelina +Azaria +Bailey +Bianca +Campbell +Carmen +Christina +Cora +Deborah +Desiree +Elsa +Eve +Faith +Felicity +Fernanda +Fiona +Frances +Genevieve +Hana +Isis +Jaden +Jaelyn +Jazmin +Kaliyah +Kamari +Katie +Kiara +Kimora +Lailah +Lana +Lara +Mackenzie +Marie +Megan +Natalia +Noa +Noelle +Precious +Raniyah +Raven +Regan +Summer +Tamia +Taniyah +Valentina +Zaniya +Madison +Olivia +Charlotte +Ashley +Ava +Sophia +Emma +Zoe +Abigail +Elizabeth +Caroline +Isabella +Alexandra +Sofia +Chloe +Emily +Grace +Maya +Anna +Margaret +Sophie +Amelia +Gabrielle +Taylor +Ella +Morgan +Sarah +Julia +Laila +London +Samantha +Zoey +Evelyn +Genesis +Penelope +Brianna +Mia +Jasmine +Josephine +Katherine +Kennedy +Lily +Riley +Victoria +Gabriella +Khloe +Layla +Mary +Natalie +Hannah +Isabel +Jennifer +Lillian +Madeleine +Mckenzie +Nora +Allison +Destiny +Eleanor +Lauren +Maria +Naomi +Sara +Alexa +Alice +Aniyah +Claire +Eva +Kayla +Lucy +Nevaeh +Isabelle +Kimberly +Leah +Sabrina +Trinity +Alexis +Andrea +Angel +Hailey +Jocelyn +Madeline +Sydney +Aaliyah +Ana +Emely +Jada +Logan +Melanie +Molly +Nadia +Stella +Brooklyn +Diana +Eliana +Emilia +Fiona +Jade +Jordyn +Londyn +Lyric +Mackenzie +Rebecca +Adelaide +Amirah +Annabelle +Ariana +Aubrey +Clara +Gabriela +Giselle +Heaven +Jayla +Jessica +Juliana +Makenzie +Natalia +Nicole +Paige +Phoebe +Sadie +Savannah +Scarlett +Serenity +Stephanie +Tiffany +Vivian +Amanda +Amari +Amy +Anne +Arianna +Audrey +Autumn +Dakota +Eden +Faith +Harper +Imani +Jacqueline +Jane +Janiyah +Kaitlyn +Makayla +Melissa +Payton +Peyton +Shaniya +Skylar +Summer +Valentina +Vivienne +Alana +Ariel +Avery +Beatrice +Camila +Camille +Carmen +Cassidy +Catherine +Danielle +Demi +Elena +Fatima +Genevieve +Janiya +Jordan +Kassidy +Lena +Lila +Lucia +Maeve +Malia +Mariah +Matilda +Miley +Rose +Ruth +Ryan +Sasha +Siena +Simone +Veronica +Virginia +Alyssa +Amani +Amber +Angie +Aniya +Anya +Briana +Brooke +Daisy +Eliza +Erin +Heidi +Jazmine +Kaliyah +Karen +Karla +Kira +Maliyah +Michelle +Mikayla +Milan +Nina +Samiyah +Skye +Tessa +Violet +Yasmin +Addison +Adriana +Alaina +Alani +Alejandra +Alicia +Amaya +Angela +Ashly +Asia +Carolina +Celia +Christina +Cora +Dior +Eloise +Eryn +Esmeralda +Helen +Iris +Isla +Ivy +Jamiyah +Jayda +Jaylin +Joanna +Justice +Keira +Kennedi +Lara +Lauryn +Leslie +Lilah +Lola +Lucille +Lydia +Madelyn +Mariana +Marley +Mya +Norah +Nyla +Paola +Quinn +Rachel +Reese +Sarai +Scarlet +Sloane +Valeria +Zaniyah +Zariah +Sophia +Ava +Elizabeth +Madison +Olivia +Maya +Sofia +Katherine +Ashley +Isabella +Zoe +Abigail +Alexandra +Emma +Anna +Chloe +Julia +Caroline +Eleanor +Lauren +Taylor +Claire +Ella +Naomi +Charlotte +Evelyn +Kennedy +Leah +Nevaeh +Emily +London +Mia +Sophie +Aaliyah +Grace +Kayla +Stella +Allison +Hannah +Layla +Natalie +Genesis +Lila +Margaret +Morgan +Victoria +Lillian +Zoey +Camila +Elise +Eva +Harper +Jade +Lily +Mary +Mckenzie +Riley +Angel +Avery +Sarah +Amelia +Arianna +Clara +Jasmine +Khloe +Kimberly +Lucy +Nora +Addison +Ariana +Catherine +Jada +Jayla +Laila +Lyric +Mackenzie +Maria +Samantha +Amy +Aniyah +Erin +Gabrielle +Skylar +Sydney +Alexa +Dakota +Gabriela +Isabel +Logan +Sadie +Trinity +Violet +Alexis +Brooklyn +Destiny +Emely +Jennifer +Jordyn +Natalia +Rachel +Skye +Alice +Aubrey +Bella +Dalia +Eliana +Emilia +Fiona +Heaven +Jacqueline +Jessica +Kaylee +Lauryn +Lydia +Madeleine +Madeline +Maia +Melanie +Payton +Reagan +Sienna +Alison +Alyssa +Aria +Audrey +Beatrice +Briana +Brianna +Brooke +Camille +Demi +Elena +Elsa +Faith +Gabriella +Helen +Leilani +Liliana +Nayeli +Nina +Paige +Penelope +Peyton +Serenity +Stephanie +Talia +Amanda +Anastasia +Angela +Aniya +Anya +Arielle +Autumn +Cora +Daniela +Diana +Eliza +Gianna +Giselle +Joanna +Jocelyn +Josephine +Kira +Lesly +Maeve +Makayla +Makenzie +Malia +Megan +Monica +Nataly +Noelle +Nyla +Phoebe +Savannah +Scarlett +Adriana +Alessandra +Amira +Andrea +Bianca +Brielle +Dayana +Hazel +Helena +Jazmin +Jordan +Joselyn +Kaitlyn +Kendall +Kennedi +Liv +Londyn +Lucia +Madelyn +Makiyah +Nadia +Nylah +Parker +Rose +Sarai +Sasha +Simone +Veronica +Vivian +Yaretzi +Zaria +Ada +Amari +Amina +Anaya +Angeline +Anne +Ariel +Catalina +Cecilia +Chelsea +Christina +Danielle +Eloise +Emerson +Estefany +Eve +Hailey +Isabelle +Ivy +Jane +Janiya +Juliana +Juliet +Juliette +Kassidy +Kaylah +Keira +Keiry +Keren +Kimora +Kylee +Laura +Lena +Lilah +Lilly +Louisa +Lyla +Madisyn +Maliyah +Mariah +Marley +Melisa +Melissa +Miranda +Mya +Nicole +Norah +Ruby +Ruth +Samara +Summer +Tatiana +Tori +Treasure +Zaniyah +Sophia +Emma +Olivia +Charlotte +Genesis +Sofia +Ava +Chloe +Madison +Zoe +Naomi +Claire +Anna +Eleanor +Elizabeth +Mia +Ella +London +Madeleine +Victoria +Abigail +Grace +Julia +Taylor +Zoey +Ashley +Emily +Isabella +Maya +Sydney +Allison +Amelia +Caroline +Lillian +Lucy +Evelyn +Katherine +Kayla +Laila +Nora +Aaliyah +Eva +Kennedy +Logan +Alexandra +Avery +Kimberly +Mary +Sarah +Sophie +Trinity +Alice +Catherine +Josephine +Margaret +Natalie +Audrey +Hannah +Harper +Lauren +Morgan +Samantha +Brooklyn +Emely +Savannah +Amy +Ariana +Aubrey +Clara +Gabriella +Isabel +Khloe +Lucia +Makayla +Molly +Vivian +Dakota +Hailey +Layla +Leah +Madeline +Maria +Brielle +Genevieve +Heaven +Jade +Jordyn +Lila +Melissa +Alyssa +Anya +Arianna +Brianna +Eliana +Eloise +Jasmine +Jayla +Kylie +Mckenzie +Michelle +Mila +Nicole +Nina +Peyton +Piper +Rebecca +Riley +Serenity +Skylar +Stella +Adriana +Elise +Faith +Jada +Kaylee +Lily +Maeve +Milan +Nyla +Paige +Penelope +Sadie +Sloane +Stephanie +Addison +Adelaide +Autumn +Cora +Hadley +Leila +Valentina +Violet +Alexa +Aliyah +Annabel +Brooke +Cecilia +Daniela +Destiny +Elena +Gabrielle +Georgia +Helena +Imani +Jennifer +Journey +Mariah +Nevaeh +Reagan +Sara +Sasha +Vivienne +Zara +Amira +Andrea +Aniya +Aniyah +Bridget +Camille +Cassidy +Dior +Eden +Elle +Fiona +Gabriela +Helen +Hope +Isabelle +Jaliyah +Jessica +Karen +Kendall +Lyla +Lyric +Mackenzie +Makenzie +Natalia +Nia +Noelle +Norah +Parker +Rose +Ruth +Sierra +Tatiana +Adeline +Alison +Amani +Amen +Ana +Angel +Angela +Aria +Beatrice +Bianca +Briana +Brittany +Camila +Dayana +Demi +Diana +Dylan +Eliza +Ellie +Emery +Emilia +Erika +Erin +Fatima +Harmony +Juliet +Keiry +Lilah +Londyn +Maia +Marie +Melanie +Michaela +Miracle +Nylah +Phoebe +Quinn +Ruby +Rylee +Samiya +Samiyah +Scarlett +Serena +Simone +Talia +Vera +Amina +Angie +Annika +Ari +Asha +Ashly +Bella +Blake +Carmen +Daisy +Dallas +Erica +Estefany +Evangeline +Francesca +Hana +Heidi +Ingrid +Iris +Isla +Jasmin +Juliana +Karla +Kate +Kennedi +Kimora +Kira +Lara +Leela +Leilani +Litzy +Lola +Magdalena +Margot +Martha +Matilda +Melody +Mikayla +Miriam +Olive +Phoenix +Saniyah +Shaniyah +Shayla +Sienna +Sky +Teagan +Valeria +Yaretzi +Zahara +Zuri +Charlotte +Sofia +Olivia +Genesis +Emma +Mia +Zoe +Amelia +Emily +Eleanor +Elizabeth +Maya +Ashley +Ava +Madison +Isabella +Victoria +Sophia +Katherine +Abigail +Caroline +Anna +Evelyn +Brianna +Eliana +Grace +Kennedy +Madeline +Allison +Chloe +Nora +Skylar +Alexandra +Clara +Josephine +Morgan +Serenity +Harper +Julia +Lucy +Naomi +Eva +Hannah +Leah +Reagan +Layla +Catherine +Claire +Dakota +Kimberly +Lily +Madeleine +Margaret +Samantha +Sophie +Sydney +Taylor +Aaliyah +Alice +Ella +Riley +Alexa +Arianna +Avery +Kayla +Laila +Lillian +Mila +Natalie +Quinn +Violet +Khloe +Leila +Mary +Peyton +Zoey +Andrea +Annabelle +Eden +Elena +Faith +Isabel +London +Sarah +Amy +Aubrey +Audrey +Elise +Fiona +Kaylee +Logan +Lyric +Nina +Ruby +Sadie +Vivian +Ariana +Brooklyn +Cecilia +Diana +Eliza +Harmony +Ivy +Jade +Lauren +Lucia +Melanie +Savannah +Stella +Trinity +Valentina +Amira +Autumn +Camille +Gabriella +Hailey +Imani +Mackenzie +Makenzie +Maria +Mckenzie +Stephanie +Tessa +Zara +Addison +Ariel +Bella +Camila +Cora +Demi +Emely +Gabrielle +Hadley +Jennifer +Jordyn +Juliet +Kate +Nevaeh +Nicole +Payton +Penelope +Rose +Sage +Virginia +Vivienne +Amalia +Annie +Beatrice +Brooke +Chelsea +Elsa +Emilia +Hazel +Jane +Kaitlyn +Kali +Kimora +Leslie +Makayla +Michelle +Milan +Natalia +Paige +Piper +Rebecca +Ruth +Sara +Scarlett +Simone +Adriana +Angela +Aniya +Aniyah +Blair +Dallas +Destiny +Dylan +Emerson +Gabriela +Jocelyn +June +Justice +Karen +Keiry +Kylie +Molly +Norah +Nyla +Nylah +Paris +Sienna +Sloane +Talia +Zuri +Adeline +Amanda +Ana +Angel +Annabel +Anne +Aria +Arielle +Bridget +Brielle +Cali +Camryn +Cassidy +Catalina +Clare +Erin +Eve +Heaven +Hope +Iris +Jada +Jasmine +Juliana +Juliette +Katelyn +Katie +Kaylin +Kelly +Kira +Lola +Louisa +Mae +Maliyah +Megan +Noa +Noelle +Sasha +Valerie +Veronica +Adelaide +Alaina +Alana +Alexandria +Alexia +Alyssa +Amina +Angie +Arsema +Aubree +Bianca +Brittany +Camilla +Carmen +Danna +Egypt +Ellie +Emery +Frances +Genessis +Georgia +Harlem +Isabelle +Isla +Jayla +Jayleen +Jessica +Jordan +Keira +Kodi +Lara +Lena +Lila +Lilian +Liliana +Londyn +Lydia +Maeve +Malaysia +Mariah +Mariam +Mariana +Marley +Mikayla +Miriam +Monica +Nadia +Nancy +Paola +Phoebe +Raegan +Ryan +Saige +Stephany +Summer +Vanessa +Willa +Elizabeth +Olivia +Ava +Emma +Zoe +Genesis +Madison +Anna +Ashley +Maya +Alexandra +Zoey +Charlotte +Ella +Chloe +Eleanor +Evelyn +Isabella +Sophia +Amelia +Abigail +Naomi +Skylar +Emily +Sofia +Caroline +Clara +Grace +Mia +Sydney +Aria +Nora +Lucia +Peyton +Catherine +Claire +Katherine +Lucy +Lyric +Aaliyah +Hailey +Taylor +Victoria +Aubrey +Audrey +Camila +Hannah +Khloe +Morgan +Alice +Allison +Ariana +Cora +Harper +Mary +Penelope +Alexa +Avery +Destiny +Lillian +Lily +Madeleine +Margaret +Savannah +Eva +Josephine +Nina +Samantha +Arianna +Faith +Jasmine +Mila +Nevaeh +Brooklyn +Dakota +Jane +Julia +London +Rose +Sadie +Valentina +Zara +Amy +Annabelle +Eliana +Gabriella +Genevieve +Heaven +Isabel +Kennedy +Logan +Mackenzie +Maria +Molly +Nylah +Paige +Paris +Riley +Sarah +Vivian +Amirah +Angie +Cecilia +Jordyn +Kali +Layla +Madeline +Serenity +Stella +Adelaide +Andrea +Bella +Brianna +Eloise +Jacqueline +Kayla +Kylie +Londyn +Melissa +Natalie +Nicole +Nyla +Sophie +Trinity +Zuri +Aliyah +Amira +Ana +Angel +Diana +Emely +Emilia +Gabriela +Harmony +Jennifer +Kaylee +Kimberly +Laila +Leah +Leila +Makayla +Mckenzie +Parker +Quinn +Reagan +Alana +Aurora +Beatrice +Brielle +Cali +Camille +Dallas +Dylan +Esther +Fiona +Helen +Iris +Jayla +Jordan +June +Lauren +Lauryn +Lena +Piper +Ruby +Scarlett +Alyssa +Amen +Anne +Annika +Ariel +Carolina +Elise +Eliza +Emerson +Gabrielle +Georgia +Giselle +Jade +Jessica +Lila +Lina +Lydia +Maeve +Malaysia +Malia +Mariah +Mira +Noa +Noelle +Norah +Rachel +Rebecca +Ruth +Simone +Treasure +Valeria +Valerie +Violet +Vivienne +Addison +Adriana +Autumn +Blake +Brooke +Brooklynn +Catalina +Celia +Daisy +Daphne +Demi +Elena +Elle +Erin +Hazel +Hope +Isla +Janelle +Journee +Juliana +Kaitlyn +Kamiya +Kennedi +Kira +Luna +Makenzie +Margot +Mariam +Michelle +Mina +Natalia +Olive +Payton +Rowan +Royal +Ryan +Sage +Saron +Summer +Sylvia +Veronica +Zaniyah +Adelina +Ainsley +Alejandra +Alessandra +Alina +Alison +Amaya +Anaya +Angela +Aniya +Aniyah +Arielle +Ayla +Aylin +Caitlin +Cameron +Camilla +Charlie +Delaney +Dorothy +Ellen +Ellie +Elsa +Evangeline +Fatima +Frances +Francesca +Hayley +Heidi +Irene +Isabelle +Jenny +Joanna +Journey +Juliette +Juniper +Kathryn +Katie +Kelly +Kyla +Kylee +Lacey +Leslie +Lia +Madisyn +Magnolia +Melanie +Monica +Nia +Petra +Phoebe +Raven +Rylee +Saige +Sara +Sasha +Skye +Teagan +Tiffany +Tyler +Vera +Virginia +Willow +James +John +William +Robert +Charles +George +Joseph +Edward +Thomas +Richard +Raymond +Paul +Albert +Lawrence +Louis +Ernest +Harry +Howard +Samuel +Walter +Arthur +Francis +Frank +Herbert +Bernard +Clarence +Earl +Frederick +Henry +Leonard +Wilbur +Alfred +Theodore +Chester +David +Edgar +Edwin +Leroy +Ralph +Russell +William +John +Charles +James +George +Joseph +Robert +Edward +Thomas +Clarence +Harry +Albert +Bernard +Frank +Raymond +Frederick +Louis +Paul +Walter +Francis +Richard +Edwin +Leonard +Ralph +Earl +Benjamin +Elmer +Henry +Melvin +Ernest +Lawrence +Leroy +Samuel +Theodore +Alfred +Arthur +Everett +Herbert +Howard +Milton +William +John +James +Charles +Robert +George +Joseph +Edward +Thomas +Richard +Raymond +Harry +David +Frank +Henry +Louis +Walter +Paul +Ralph +Samuel +Arthur +Howard +Lawrence +Francis +Albert +Eugene +Milton +Alfred +Carl +Ernest +Philip +Clarence +Frederick +Leonard +Bernard +Daniel +Fred +Herbert +Benjamin +Kenneth +Leroy +Nathaniel +Stanley +Theodore +Donald +Harold +Herman +Lewis +Alvin +Andrew +Earl +Franklin +Harvey +Jack +Jerome +Roy +Vincent +Willie +James +William +John +Joseph +George +Charles +Robert +Edward +Thomas +Richard +Frank +Harry +Walter +Albert +Arthur +Francis +Louis +Bernard +Clarence +Frederick +Samuel +Henry +Raymond +Benjamin +David +Norman +Earl +Eugene +Milton +Daniel +Maurice +Philip +Lawrence +Leroy +Paul +Howard +Jack +Ralph +Russell +Lewis +Leonard +Theodore +Alfred +Clifton +Edwin +Harold +Carl +Elmer +Fred +Herbert +Ernest +Franklin +Leon +Martin +William +John +James +Charles +George +Joseph +Robert +Thomas +Edward +Richard +Raymond +Walter +Samuel +Henry +Paul +Harry +Francis +Bernard +Frank +Arthur +Ernest +Ralph +Louis +Earl +Jack +Alfred +Clarence +Lawrence +Albert +David +Eugene +Norman +Philip +Elmer +Frederick +Harold +Leroy +Andrew +Leon +Donald +Everett +Howard +Kenneth +Leonard +Milton +Theodore +Benjamin +Daniel +Lewis +Martin +Morris +Sidney +Warren +Carl +Melvin +Russell +Stanley +Wilbur +Clyde +Fred +Herbert +Herman +Leo +Lester +Luther +Nathaniel +Abraham +Byron +Edgar +Edwin +Hugh +Maurice +Oliver +Oscar +Peter +Sam +Stephen +Vincent +John +William +James +Charles +George +Joseph +Robert +Thomas +Richard +Frank +Edward +Walter +Francis +Raymond +Harry +Albert +Paul +Frederick +Henry +Bernard +Alfred +Arthur +Eugene +Ralph +Samuel +Louis +Ernest +Lawrence +Melvin +Herbert +Norman +Carl +Daniel +Earl +Edgar +Harold +Leonard +Michael +Milton +Theodore +Clarence +Leroy +Philip +Roy +David +Irving +Warren +Edwin +Howard +Lewis +Martin +Vincent +Alvin +Benjamin +Gilbert +Jack +Kenneth +Wallace +Wilbert +Donald +Everett +Leon +Nicholas +Percy +Roland +Stanley +Stephen +Wilbur +Charlie +Elmer +Fred +Herman +Julius +Maurice +Morris +Russell +Sam +Sterling +John +William +James +Joseph +Robert +Charles +George +Edward +Francis +Raymond +Richard +Frank +Harry +Thomas +Walter +David +Henry +Bernard +Earl +Arthur +Donald +Albert +Paul +Clarence +Lawrence +Louis +Ernest +Norman +Ralph +Frederick +Philip +Herbert +Harold +Jack +Samuel +Alfred +Elmer +Leonard +Vincent +Alvin +Carl +Daniel +Leroy +Melvin +Milton +Andrew +Gilbert +Lewis +Stanley +Chester +Eugene +Warren +Harvey +Howard +Maurice +Alexander +Benjamin +Herman +Kenneth +Theodore +Edgar +Morris +Roy +Rudolph +Wilbur +Anthony +Curtis +Julius +Lloyd +Michael +Vernon +Arnold +Carroll +Claude +Clinton +Leo +Martin +Nathaniel +Reginald +Roland +Russell +Sidney +Wilbert +Willard +Willie +John +William +James +Robert +Charles +Joseph +George +Thomas +Edward +Richard +Raymond +Harry +Walter +Frank +Henry +Paul +Albert +Donald +Francis +Milton +Bernard +Frederick +Ernest +Harold +Norman +Jack +Louis +Melvin +Ralph +David +Herbert +Lawrence +Arthur +Carl +Clarence +Daniel +Eugene +Samuel +Fred +Leonard +Leroy +Alfred +Kenneth +Theodore +Benjamin +Earl +Andrew +Franklin +Leon +Lloyd +Vincent +Harvey +Howard +Leo +Maurice +Morris +Philip +Anthony +Edwin +Elmer +Lewis +Warren +Allen +Carlton +Chester +Martin +Michael +Russell +Stanley +Stephen +Alexander +Herman +Horace +Hugh +Mark +Roger +Sidney +Edgar +Edmund +Everett +Gilbert +Irving +Nelson +Roy +Vernon +Wilbert +William +John +James +Robert +Charles +Joseph +George +Richard +Edward +Thomas +Francis +Harry +Frank +Paul +Bernard +Raymond +Walter +Arthur +Donald +Henry +Ralph +Albert +David +Louis +Ernest +Jack +Lawrence +Norman +Harold +Herbert +Howard +Frederick +Carl +Clarence +Leonard +Earl +Kenneth +Roy +Samuel +Daniel +Edwin +Melvin +Milton +Benjamin +Eugene +Maurice +Irving +Lewis +Leo +Theodore +Andrew +Martin +Alfred +Elmer +Leroy +Michael +Stanley +Claude +Franklin +Fred +Gordon +Horace +Leon +Philip +Douglas +Everett +Jesse +Julius +Lloyd +Morris +Russell +Vincent +Allen +Anthony +Clifford +Edgar +Julian +Roger +Victor +Warren +Wilbur +Carroll +Marshall +Nicholas +Otto +Patrick +Willie +Alvin +Clifton +Elwood +Frederic +Laurence +Lee +Marvin +Morgan +Nathan +Oscar +Sam +Stuart +Woodrow +William +John +James +Robert +Charles +George +Joseph +Edward +Thomas +Richard +Raymond +Francis +Harry +Walter +Frank +Paul +Louis +Albert +Arthur +Bernard +Jack +Donald +Ralph +Clarence +Earl +Samuel +Henry +David +Melvin +Milton +Alfred +Frederick +Carl +Edwin +Wilbur +Benjamin +Howard +Kenneth +Daniel +Ernest +Harold +Norman +Leroy +Lewis +Philip +Herbert +Leonard +Michael +Andrew +Sidney +Vernon +Vincent +Eugene +Lawrence +Leon +Roland +Warren +Alvin +Edgar +Horace +Lester +Russell +Cecil +Julian +Roy +Allen +Anthony +Elmer +Everett +Fred +Gordon +Hugh +Irving +Jesse +Maurice +Stanley +Willard +Chester +Edmund +Herman +Joe +Lloyd +Marvin +Nathaniel +Victor +Alexander +Burton +Carroll +Clifton +Emmett +Franklin +Gilbert +Nick +Theodore +Wilbert +William +John +James +Robert +George +Charles +Joseph +Richard +Thomas +Edward +Raymond +Frank +Harry +Francis +Paul +Albert +Henry +Bernard +Donald +Walter +Jack +Ernest +Frederick +Louis +Ralph +Warren +Arthur +David +Melvin +Clarence +Norman +Harold +Samuel +Daniel +Benjamin +Howard +Leonard +Milton +Eugene +Leon +Leroy +Lloyd +Theodore +Alfred +Earl +Philip +Carl +Edwin +Fred +Lawrence +Alvin +Andrew +Elmer +Russell +Vernon +Jesse +Maurice +Wilbur +Chester +Franklin +Gilbert +Kenneth +Leo +Vincent +Martin +Stanley +Wallace +Allen +Anthony +Harvey +Oscar +Reginald +Roy +Clifton +Douglas +Ellsworth +Herbert +Herman +Lewis +Michael +Randolph +Victor +Claude +Clayton +Clifford +Clyde +Edgar +Hugh +Irving +Jerome +Jerry +Lee +Marshall +Morris +Roland +Wayne +Calvin +Floyd +Gerald +Horace +Nathan +Preston +Wilbert +William +John +James +Robert +Charles +Joseph +George +Edward +Thomas +Richard +Raymond +Francis +Walter +Paul +Harry +David +Warren +Frank +Bernard +Albert +Henry +Herbert +Ralph +Donald +Louis +Howard +Clarence +Norman +Earl +Melvin +Arthur +Carl +Samuel +Harold +Jack +Ernest +Lawrence +Eugene +Frederick +Daniel +Milton +Alfred +Fred +Russell +Theodore +Leonard +Leroy +Benjamin +Edwin +Vincent +Wallace +Andrew +Harvey +Maurice +Stanley +Jerome +Philip +Alexander +Julian +Kenneth +Peter +Wilbur +Allen +Clifton +Ellsworth +Floyd +Irving +Leo +Lester +Martin +Roy +Wilbert +Carroll +Franklin +Horace +Lewis +Marshall +Oscar +Phillip +Roland +Sidney +Victor +Anthony +Douglas +Edgar +Elmer +Gerald +Lloyd +Morris +Nathaniel +Oliver +Sol +Sylvester +Vernon +Willard +Calvin +Chester +Gilbert +Guy +Herman +Hugh +Leon +Leslie +Michael +Ray +Roger +Sterling +Tony +William +John +James +Robert +Charles +Joseph +George +Richard +Edward +Thomas +Paul +Raymond +Harry +Frank +Francis +Harold +Arthur +Albert +Walter +Donald +David +Lawrence +Ernest +Henry +Jack +Louis +Ralph +Earl +Eugene +Daniel +Frederick +Kenneth +Samuel +Herbert +Norman +Stanley +Clarence +Howard +Bernard +Alfred +Leroy +Melvin +Carl +Edwin +Lloyd +Milton +Phillip +Theodore +Leonard +Roy +Andrew +Calvin +Maurice +Peter +Philip +Wilbur +Anthony +Fred +Leon +Vincent +Wallace +Allen +Clyde +Gilbert +Lewis +Benjamin +Harvey +Irving +Oscar +Warren +Angelo +Clifton +Nelson +Russell +Emmett +Everett +Gordon +Hubert +Lester +Michael +Morris +Randolph +Sidney +Stephen +Willard +Bruce +Douglas +Elmer +Floyd +Herman +Horace +Jerome +Julian +Mark +Martin +Nathaniel +Nicholas +Ray +Reginald +Rudolph +Sam +Sherman +Alvin +Hugh +Irvin +Jesse +Marvin +Roland +Tony +Wilfred +John +William +James +Robert +Charles +George +Joseph +Edward +Richard +Thomas +Raymond +Frank +Harry +Paul +Donald +Walter +Louis +David +Henry +Bernard +Albert +Arthur +Clarence +Francis +Eugene +Jack +Ernest +Ralph +Harold +Howard +Norman +Leonard +Alfred +Herbert +Leroy +Earl +Kenneth +Daniel +Samuel +Carl +Elmer +Frederick +Melvin +Calvin +Philip +Stanley +Warren +Edwin +Fred +Roger +Lewis +Maurice +Milton +Theodore +Roland +Anthony +Benjamin +Chester +Harvey +Lawrence +Nathaniel +Wilbur +Leon +Russell +Vincent +Peter +Roy +Stephen +Andrew +Clifton +Edmund +Franklin +Herman +Horace +Leo +Michael +Oliver +Wallace +Carroll +Douglas +Guy +Hugh +Irving +Jerome +Lloyd +Luther +Rudolph +Vernon +Allen +Alvin +Claude +Edgar +Ned +Nicholas +Sidney +Alan +Archie +Austin +Clifford +Gilbert +Gordon +Hubert +Jesse +Joe +Julian +Lester +Marshall +Martin +Matthew +Patrick +Victor +Wesley +William +John +James +Robert +Charles +Joseph +George +Richard +Thomas +Edward +Paul +David +Frank +Bernard +Albert +Francis +Raymond +Walter +Donald +Henry +Harry +Lawrence +Arthur +Jack +Clarence +Louis +Carl +Ralph +Samuel +Howard +Daniel +Theodore +Calvin +Melvin +Kenneth +Ernest +Harold +Stanley +Benjamin +Herbert +Earl +Eugene +Frederick +Leonard +Andrew +Anthony +Milton +Norman +Elmer +Fred +Russell +Leroy +Philip +Alfred +Edwin +Edgar +Marshall +Clifford +Lewis +Maurice +Roland +Roy +Sidney +Vernon +Wilbur +Alvin +Chester +Herman +Leo +Leon +Michael +Stephen +Franklin +Gerald +Gilbert +Harvey +Hugh +Morris +Sterling +Allen +Claude +Irving +Matthew +Peter +Vincent +Wallace +Willard +Douglas +Everett +Floyd +Lloyd +Martin +Nathaniel +Nicholas +Patrick +Sylvester +Allan +Clyde +Gordon +Homer +Jacob +Jesse +Julius +Leslie +Lester +Morgan +Phillip +Reginald +William +John +Robert +James +Joseph +Charles +George +Richard +Thomas +Edward +Donald +Paul +Raymond +Francis +David +Albert +Frank +Jack +Ralph +Harry +Walter +Arthur +Clarence +Eugene +Henry +Kenneth +Bernard +Louis +Samuel +Calvin +Harold +Melvin +Daniel +Herbert +Stanley +Earl +Ernest +Lawrence +Norman +Frederick +Leonard +Howard +Carl +Theodore +Fred +Leroy +Milton +Alfred +Andrew +Anthony +Peter +Warren +Edwin +Benjamin +Michael +Clifton +Leon +Russell +Alvin +Philip +Vincent +Gordon +Herman +Jesse +Leo +Lewis +Maurice +Roger +Roy +Sidney +Edgar +Marvin +Nathaniel +Oliver +Reginald +Roland +Rudolph +Alan +Bruce +Cecil +Clifford +Curtis +Floyd +Irving +Jerome +Julius +Larry +Matthew +Preston +Wilbur +Franklin +Joe +Patrick +Phillip +Vernon +Wallace +Alexander +Allen +Chester +Clyde +Elliott +Guy +Harvey +Horace +Lee +Lester +Martin +Morton +Nelson +Stephen +Willie +Wilson +William +John +James +Robert +Charles +George +Joseph +Richard +Thomas +Edward +Paul +Frank +Walter +David +Donald +Harry +Raymond +Bernard +Eugene +Francis +Henry +Albert +Louis +Arthur +Clarence +Melvin +Harold +Jack +Lawrence +Norman +Stanley +Carl +Daniel +Howard +Theodore +Alfred +Calvin +Earl +Kenneth +Ralph +Leroy +Samuel +Frederick +Leonard +Ernest +Fred +Lewis +Warren +Leon +Rudolph +Milton +Russell +Andrew +Herbert +Maurice +Philip +Wilbur +Edwin +Alvin +Benjamin +Matthew +Reginald +Hugh +Peter +Anthony +Billy +Bruce +Herman +Oscar +Roland +Vernon +Willie +Carlton +Harvey +Martin +Morris +Vincent +Douglas +Elmer +Gordon +Guy +Irving +Jerry +Jesse +Nathaniel +Phillip +Roy +Alexander +Allen +Clifton +Gilbert +Glenn +Julian +Julius +Laurence +Leo +Lester +Lloyd +Marvin +Patrick +Ray +Roger +Sidney +Alan +Carroll +Claude +Clinton +Eddie +Edgar +Edmund +Freddie +Joe +Karl +Michael +Tommy +Victor +Wallace +Willard +John +William +Robert +James +Charles +George +Richard +Joseph +Thomas +Edward +Raymond +Donald +Paul +David +Francis +Frank +Harry +Walter +Ralph +Jack +Albert +Bernard +Henry +Clarence +Arthur +Lawrence +Louis +Earl +Harold +Herbert +Melvin +Ernest +Eugene +Stanley +Howard +Milton +Samuel +Carl +Daniel +Norman +Alvin +Frederick +Gerald +Leroy +Philip +Alfred +Theodore +Andrew +Kenneth +Leon +Maurice +Leonard +Allen +Roland +Calvin +Jesse +Warren +Benjamin +Lloyd +Edwin +Leo +Russell +Chester +Elmer +Hugh +Jerome +Morris +Anthony +Herman +Laurence +Morton +Roy +Rudolph +Billy +Carroll +Edgar +Everett +Fred +Harvey +Lester +Oscar +Reginald +Ronald +Stephen +Sylvester +Alexander +Arnold +Clifton +Douglas +Floyd +Gilbert +Guy +Hubert +Julian +Lewis +Martin +Michael +Nelson +Peter +Ray +Vernon +Vincent +Wilbur +Eddie +Franklin +Gene +Gordon +Horace +Irving +Karl +Lee +Leslie +Marion +Marvin +Phillip +Sterling +Wesley +Wilbert +William +John +James +Robert +Charles +Richard +George +Joseph +Thomas +Edward +Donald +Frank +David +Paul +Walter +Raymond +Francis +Harry +Albert +Ralph +Arthur +Henry +Louis +Alfred +Jack +Lawrence +Bernard +Leon +Eugene +Herbert +Clarence +Melvin +Howard +Kenneth +Samuel +Ernest +Milton +Stanley +Alvin +Norman +Earl +Leroy +Fred +Frederick +Harold +Hugh +Jerome +Roland +Daniel +Edwin +Leonard +Lewis +Carl +Morris +Andrew +Benjamin +Calvin +Philip +Theodore +Vernon +Allen +Leo +Marvin +Elmer +Harvey +Martin +Maurice +Roy +Wilbur +Edgar +Gilbert +Herman +Joe +Lloyd +Peter +Russell +Warren +Claude +Gerald +Laurence +Wallace +Alan +Anthony +Bill +Gene +Jerry +Marshall +Michael +Nicholas +Rudolph +Julian +Oscar +Percy +Vincent +Alexander +Angelo +Cecil +Clifton +Cornelius +Dick +Don +Everett +Franklin +Gordon +Guy +Jesse +Leslie +Lester +Nathaniel +Nelson +Roger +Ronald +Sylvester +Willie +James +William +John +Robert +Charles +Richard +Joseph +George +Edward +Thomas +Donald +Paul +Raymond +David +Frank +Francis +Harry +Walter +Bernard +Herbert +Melvin +Jack +Albert +Eugene +Clarence +Norman +Ralph +Earl +Lawrence +Leroy +Henry +Harold +Arthur +Theodore +Lloyd +Alfred +Carl +Samuel +Andrew +Louis +Ernest +Kenneth +Roy +Stanley +Anthony +Frederick +Leon +Milton +Michael +Howard +Calvin +Edwin +Harvey +Vincent +Leonard +Philip +Roland +Elmer +Roger +Warren +Willard +Chester +Daniel +Joe +Lewis +Marvin +Patrick +Wallace +Willie +Alvin +Clyde +Douglas +Herman +Horace +Benjamin +Curtis +Fred +Gerald +Irving +Jerry +Maurice +Oliver +Peter +Billy +Claude +Everett +Jesse +Jimmy +Lester +Nathaniel +Nicholas +Oscar +Rudolph +Victor +Wilbur +Alan +Bob +Bruce +Gilbert +Glenn +Julius +Stephen +Sylvester +Wendell +Alexander +Cleveland +Cornelius +Floyd +Gordon +Jame +Jerome +Leo +Martin +Matthew +Ray +Ronald +Russell +Vernon +Wilfred +William +Robert +James +John +Charles +George +Richard +Joseph +Donald +Thomas +Edward +Raymond +Paul +David +Frank +Harry +Walter +Francis +Albert +Bernard +Herbert +Arthur +Carl +Eugene +Kenneth +Clarence +Harold +Louis +Henry +Melvin +Samuel +Jack +Lawrence +Leonard +Ralph +Alfred +Ernest +Howard +Leroy +Alvin +Frederick +Theodore +Michael +Maurice +Roland +Stanley +Vincent +Anthony +Earl +Edwin +Daniel +Gerald +Fred +Leon +Philip +Wilbur +Alan +Calvin +Lloyd +Elmer +Hugh +Jerry +Norman +Allen +Milton +Roy +Clyde +Randolph +Ronald +Chester +Floyd +Gilbert +Marvin +Russell +Warren +Benjamin +Gene +Gordon +Harvey +Herman +Lewis +Mark +Nathaniel +Peter +Jesse +Joe +Julius +Andrew +Billy +Bruce +Franklin +Jerome +Julian +Lee +Leo +Leslie +Lester +Morris +Morton +Roger +Stephen +Tommy +Vernon +Virgil +Aaron +Alton +Carroll +Conrad +Curtis +Ellsworth +Everett +Guy +Irving +Martin +Nelson +Reginald +Rudolph +Sylvester +Robert +John +William +James +Charles +Richard +Donald +George +Thomas +Joseph +Edward +David +Raymond +Paul +Walter +Frank +Harry +Clarence +Francis +Herbert +Lawrence +Arthur +Bernard +Carl +Albert +Eugene +Kenneth +Jack +Norman +Ralph +Stanley +Howard +Fred +Henry +Harold +Michael +Alfred +Earl +Ernest +Louis +Gerald +Leroy +Melvin +Philip +Roland +Ronald +Theodore +Daniel +Frederick +Roy +Samuel +Alvin +Leonard +Leon +Jerry +Maurice +Allan +Milton +Roger +Rudolph +Andrew +Clifford +Edwin +Lloyd +Peter +Russell +Allen +Marvin +Lewis +Vincent +Wilbur +Alan +Anthony +Gilbert +Herman +Joe +Leo +Billy +Bruce +Clifton +Douglas +Elwood +Irving +Warren +Willie +Alexander +Benjamin +Calvin +Gordon +Guy +Harvey +Jesse +Larry +Martin +Vernon +Arnold +Bob +Claude +Edgar +Elmer +Hugh +Jimmy +Laurence +Patrick +Ray +Tommy +Alfonso +Chester +Conrad +Don +Everett +Franklin +Horace +Johnnie +Lester +Mark +Nelson +Oliver +Stephen +Sylvester +Wesley +Robert +James +John +William +Charles +Richard +George +Donald +Joseph +Thomas +Edward +Paul +David +Walter +Frank +Francis +Carl +Raymond +Ronald +Eugene +Henry +Albert +Stanley +Arthur +Howard +Bernard +Louis +Harold +Lawrence +Herbert +Kenneth +Ralph +Theodore +Jack +Maurice +Melvin +Earl +Frederick +Clarence +Alvin +Harry +Alfred +Norman +Daniel +Samuel +Gerald +Philip +Ernest +Leonard +Leroy +Benjamin +Douglas +Michael +Milton +Leon +Roland +Russell +Gilbert +Vernon +Warren +Franklin +Fred +Jerome +Roger +Roy +Allen +Anthony +Clifton +Edwin +Gene +Lester +Morris +Peter +Wilbur +Andrew +Carroll +Harvey +Martin +Marvin +Allan +Calvin +Edgar +Herman +Joe +Larry +Leo +Patrick +Phillip +Wallace +Bruce +Don +Hugh +Jerry +Laurence +Lloyd +Wayne +Willie +Alan +Clyde +Elmer +Everett +Nathaniel +Arnold +Bill +Carlton +Conrad +Earle +Eddie +Gary +Glenn +Gordon +Horace +Jimmy +Johnny +Lorenzo +Matthew +Randolph +Ross +Rudolph +Vincent +Bobby +Claude +Clifford +Dennis +Hubert +Jesse +Julian +Lee +Lewis +Nicholas +Owen +Sidney +Stephen +Steve +Timothy +Wade +Robert +William +James +John +Charles +Richard +Donald +Thomas +George +Joseph +Edward +Paul +Raymond +Francis +David +Walter +Jack +Ronald +Kenneth +Ralph +Eugene +Harry +Bernard +Frank +Norman +Albert +Harold +Stanley +Theodore +Arthur +Lawrence +Clarence +Earl +Henry +Melvin +Louis +Leroy +Carl +Franklin +Howard +Michael +Leonard +Samuel +Frederick +Gerald +Daniel +Leon +Alan +Fred +Edwin +Gary +Herbert +Philip +Lewis +Marvin +Peter +Benjamin +Maurice +Milton +Phillip +Allen +Russell +Alvin +Leo +Roland +Roy +Alfred +Andrew +Billy +Edgar +Ernest +Jerry +Larry +Lloyd +Vincent +Wayne +Clyde +Dennis +Douglas +Harvey +Hugh +Jerome +Roger +Warren +Willard +Willie +Anthony +Bobby +Carlton +Don +Elmer +Gene +Randolph +Sidney +Vernon +Alexander +Eddie +Everett +Jesse +Lee +Martin +Nathaniel +Rudolph +Stephen +Tommy +Wallace +Wilbert +Bill +Bruce +Clifton +Garland +Gordon +Hubert +Ira +Irving +Joe +Karl +Marshall +Morris +Oscar +Preston +Ray +Reginald +Robert +William +James +John +Charles +Richard +Donald +Joseph +George +Thomas +Edward +Paul +David +Frank +Ronald +Walter +Lawrence +Raymond +Eugene +Harry +Bernard +Francis +Harold +Arthur +Kenneth +Henry +Samuel +Stanley +Ralph +Clarence +Earl +Norman +Melvin +Theodore +Warren +Herbert +Louis +Jack +Carl +Daniel +Gerald +Leroy +Albert +Howard +Alfred +Jerome +Ernest +Peter +Philip +Benjamin +Franklin +Russell +Fred +Leonard +Douglas +Edwin +Frederick +Herman +Larry +Lewis +Michael +Nathaniel +Roland +Roger +Willie +Alvin +Arnold +Harvey +Patrick +Reginald +Leo +Leon +Lloyd +Martin +Roy +Vincent +Wayne +Alan +Anthony +Dennis +Gordon +Milton +Clyde +Don +Edgar +Joe +Phillip +Stephen +Wesley +Allen +Billy +Calvin +Claude +Floyd +Gilbert +Sylvester +Andrew +Gene +Jimmy +Lee +Rudolph +Sterling +Wallace +Alton +Bill +Bruce +Edmund +Gary +Irvin +Marvin +Wilbur +Carlton +Curtis +Elmer +Guy +Horace +Hubert +Jerry +Lester +Marshall +Maurice +Morris +Oscar +Sherman +John +Robert +William +James +Charles +Donald +Richard +Joseph +George +Thomas +David +Edward +Paul +Ronald +Kenneth +Walter +Lawrence +Raymond +Michael +Henry +Bernard +Carl +Frank +Harry +Eugene +Harold +Arthur +Ralph +Albert +Earl +Frederick +Jack +Norman +Jerry +Philip +Francis +Louis +Melvin +Herbert +Peter +Russell +Theodore +Clarence +Roger +Daniel +Maurice +Howard +Leonard +Anthony +Stanley +Alvin +Edwin +Larry +Leroy +Roland +Warren +Bruce +Ernest +Franklin +Gerald +Samuel +Gary +Fred +Leon +Lewis +Alfred +Allen +Gordon +Herman +Lloyd +Milton +Phillip +Douglas +Harvey +Willie +Jerome +Marvin +Patrick +Reginald +Andrew +Claude +Clyde +Gilbert +Oliver +Roy +Stephen +Wayne +Benjamin +Karl +Lee +Lester +Sidney +Vernon +Vincent +Wilbert +Wilbur +Alexander +Clifford +Don +Edgar +Elmer +Floyd +Hugh +Joe +Alan +Carroll +Everett +Lorenzo +Mark +Randolph +Ray +Rudolph +Bill +Bobby +Carlton +Dennis +Ellsworth +Gene +Irving +Marshall +Tommy +Calvin +Cecil +Clifton +Earle +Jesse +Julian +Julius +Mary +Morris +Nicholas +Pete +Rodney +Sam +Sterling +Wallace +Robert +James +William +John +Charles +Richard +Joseph +Donald +George +Thomas +Edward +David +Paul +Ronald +Frank +Walter +Lawrence +Eugene +Raymond +Michael +Francis +Harry +Kenneth +Bernard +Fred +Harold +Norman +Frederick +Ralph +Arthur +Earl +Henry +Melvin +Carl +Philip +Samuel +Albert +Anthony +Gerald +Stanley +Alfred +Jack +Leroy +Louis +Daniel +Leon +Theodore +Peter +Warren +Allen +Howard +Larry +Roy +Ernest +Bruce +Clarence +Herbert +Jerome +Franklin +Marvin +Roger +Leonard +Alvin +Jerry +Joe +Stephen +Lloyd +Phillip +Lewis +Milton +Patrick +Roland +Vernon +Benjamin +Gene +Leo +Maurice +Vincent +Andrew +Bill +Clifford +Glenn +Martin +Reginald +Allan +Carroll +Claude +Douglas +Edwin +Gary +Gordon +Russell +Wallace +Alan +Arnold +Don +Guy +Jesse +Matthew +Preston +Randolph +Ray +Willard +Willie +Bobby +Curtis +Eddie +Karl +Lee +Leslie +Rodney +Sidney +Tommy +Victor +Wayne +Bob +Carlton +Clark +Clifton +Dennis +Elmer +Harvey +Irving +Jackie +Jay +Ronnie +Chester +Edgar +Elwood +Everett +Gilbert +Herman +Horace +Joel +Johnny +Luther +Malcolm +Nathaniel +Nicholas +Pete +Rudolph +Rufus +Stuart +Sylvester +Wilson +Robert +John +James +William +Charles +Richard +Thomas +George +Joseph +David +Donald +Paul +Edward +Ronald +Raymond +Michael +Walter +Frank +Arthur +Kenneth +Harry +Lawrence +Earl +Albert +Eugene +Bernard +Melvin +Frederick +Clarence +Gerald +Carl +Henry +Howard +Daniel +Francis +Ralph +Alfred +Harold +Leroy +Ernest +Philip +Joe +Leonard +Norman +Stanley +Louis +Jack +Jerry +Fred +Peter +Warren +Samuel +Theodore +Anthony +Benjamin +Gordon +Larry +Douglas +Vincent +Jerome +Martin +Maurice +Roy +Don +Leon +Roland +Wayne +Lee +Reginald +Roger +Stephen +Alan +Allen +Dennis +Bill +Edwin +Gary +Gilbert +Herbert +Phillip +Russell +Vernon +Wallace +Andrew +Everett +Leo +Lloyd +Marvin +Willie +Alvin +Claude +Floyd +Lester +Marshall +Milton +Tommy +Bobby +Calvin +Clinton +Clyde +Cornelius +Curtis +Franklin +Gene +Glenn +Jimmy +Lewis +Nathaniel +Rudolph +Malcolm +Victor +Allan +Billy +Bruce +Chester +Edgar +Herman +Hubert +Hugh +Jesse +Jon +Karl +Leslie +Morris +Randolph +Ray +Clifton +Elmer +Freddie +Horace +Mark +Patrick +Sylvester +Timothy +Willis +Aaron +Barrington +Barry +Bob +Carlton +Carroll +Eddie +Gregory +Guy +Harvey +Irving +Jay +Julian +Matthew +Nelson +Oscar +Owen +Sidney +Tyrone +Wilson +Robert +John +William +James +Charles +Richard +Thomas +David +Joseph +Donald +George +Edward +Michael +Ronald +Raymond +Kenneth +Lawrence +Paul +Frank +Francis +Melvin +Bernard +Walter +Daniel +Ralph +Eugene +Harry +Henry +Arthur +Albert +Norman +Peter +Anthony +Gerald +Carl +Frederick +Howard +Theodore +Alfred +Ernest +Harold +Jack +Larry +Samuel +Clarence +Earl +Dennis +Stanley +Alan +Douglas +Lewis +Philip +Stephen +Gary +Herbert +Jerry +Roland +Fred +Leonard +Wayne +Patrick +Roger +Bill +Leon +Roy +Leroy +Martin +Maurice +Benjamin +Bruce +Edwin +Franklin +Louis +Alvin +Bobby +Clifton +Milton +Vernon +Andrew +Jon +Leo +Wallace +Warren +Don +Marvin +Timothy +Gene +Gordon +Harvey +Jerome +Jesse +Nicholas +Allen +Elmer +Hugh +Phillip +Reginald +Rudolph +Russell +Vincent +Barry +Calvin +Carlton +Claude +Curtis +Lester +Randolph +Willie +Wilson +Arnold +Billy +Carroll +Eddie +Freddie +Glenn +Joel +Karl +Mark +Nathaniel +Sidney +Sylvester +Wilbur +Allan +Bob +Clifford +Clyde +Dale +Edgar +Everett +Gilbert +Herman +Irving +Jay +Joe +Lee +Lloyd +Malcolm +Steve +Stuart +Wilbert +Eric +Floyd +Jimmy +Johnny +Julian +Leslie +Oliver +Willis +Alton +Aubrey +Chester +Christopher +Edmund +Harrison +Hubert +Lowell +Mike +Ray +Terry +Victor +Wendell +John +James +Robert +William +Charles +Richard +Thomas +George +David +Joseph +Donald +Edward +Ronald +Michael +Paul +Kenneth +Raymond +Lawrence +Walter +Eugene +Harry +Frank +Daniel +Francis +Frederick +Ralph +Peter +Bernard +Stephen +Wayne +Arthur +Earl +Howard +Melvin +Samuel +Stanley +Albert +Carl +Henry +Louis +Larry +Jack +Gerald +Norman +Ernest +Leonard +Douglas +Roger +Harold +Theodore +Warren +Alfred +Fred +Gary +Anthony +Leroy +Roland +Andrew +Herbert +Benjamin +Patrick +Philip +Bruce +Clarence +Jerry +Leon +Dennis +Edwin +Allen +Roy +Russell +Marvin +Vernon +Willie +Brian +Calvin +Eddie +Martin +Milton +Phillip +Alan +Barry +Alvin +Clyde +Jerome +Bob +Carlton +Floyd +Franklin +Hugh +Jay +Jon +Lee +Maurice +Timothy +Tyrone +Vincent +Alexander +Gregory +Harvey +Marshall +Morris +Carroll +Clifton +Don +Gordon +Jimmy +Lloyd +Nathaniel +Reginald +Allan +Claude +Everett +Karl +Leslie +Lewis +Mark +Oliver +Wesley +Bobby +Clifford +Dale +Gene +Gilbert +Irvin +Joel +Johnny +Mike +Nicholas +Rudolph +Steven +Stuart +Tommy +Victor +Wilbur +Willard +Arnold +Aubrey +Cecil +Curtis +Edgar +Elmer +Glenn +Jesse +Joe +Jonathan +Matthew +Neal +Ray +Rodney +Roosevelt +Steve +Wilson +Billy +Eric +Freddie +Guy +Herman +Jimmie +Kent +Leo +Malcolm +Otis +Perry +Randolph +Sidney +Wallace +John +Robert +James +William +Charles +Richard +George +Thomas +David +Joseph +Edward +Michael +Ronald +Donald +Paul +Kenneth +Frank +Raymond +Walter +Lawrence +Gerald +Stephen +Daniel +Arthur +Peter +Francis +Louis +Harry +Ralph +Ernest +Carl +Harold +Henry +Larry +Eugene +Philip +Albert +Anthony +Dennis +Stanley +Roger +Samuel +Douglas +Earl +Melvin +Leroy +Bernard +Frederick +Fred +Jerry +Theodore +Warren +Andrew +Franklin +Gary +Leonard +Norman +Wayne +Howard +Phillip +Roy +Clarence +Jack +Alfred +Martin +Alvin +Jerome +Allen +Bruce +Edwin +Herbert +Leon +Barry +Benjamin +Nathaniel +Patrick +Don +Roland +Glenn +Gordon +Jay +Marvin +Maurice +Randolph +Reginald +Timothy +Harvey +Malcolm +Milton +Russell +Alexander +Arnold +Clyde +Edgar +Gilbert +Jesse +Joe +Lee +Mike +Vincent +Wallace +Alan +Joel +Lewis +Tyrone +Victor +Bob +Christopher +Clifton +Leo +Lloyd +Sidney +Calvin +Gene +Karl +Morris +Willie +Carlton +Clifford +Curtis +Eddie +Irvin +Irving +Lester +Nelson +Oliver +Perry +Ray +Vernon +Wesley +Allan +Bobby +Brian +Everett +Geoffrey +Jon +Oscar +Rodney +Rudolph +Steve +Stuart +Terry +Wendell +Bill +Billy +Carroll +Chester +Dean +Emory +Eric +Herman +Hugh +Johnny +Julius +Leslie +Lonnie +Luther +Mark +Matthew +Nicholas +Steven +Sylvester +Tom +Tommy +Wilbur +Alex +Claude +Dale +Dorsey +Edmund +Elliott +Elmer +Gregory +Jeffrey +Jim +Jimmy +Kent +Laurence +Linwood +Lowell +Marshall +Preston +Ronnie +Sam +Stewart +Wade +Willard +Wilson +James +John +Robert +William +Richard +Charles +Thomas +Joseph +Michael +David +George +Donald +Ronald +Paul +Edward +Kenneth +Stephen +Raymond +Frank +Harry +Lawrence +Walter +Henry +Gerald +Arthur +Larry +Carl +Daniel +Peter +Albert +Eugene +Francis +Harold +Dennis +Samuel +Wayne +Bernard +Frederick +Norman +Howard +Theodore +Gary +Anthony +Melvin +Earl +Herbert +Louis +Stanley +Alfred +Douglas +Bruce +Ernest +Jerry +Roger +Ralph +Alvin +Fred +Milton +Patrick +Philip +Warren +Alan +Leonard +Clarence +Allen +Roy +Andrew +Jerome +Russell +Franklin +Glenn +Jack +Edwin +Maurice +Allan +Leon +Reginald +Willie +Barry +Benjamin +Jeffrey +Leroy +Lewis +Martin +Phillip +Steven +Lee +Roland +Timothy +Vincent +Edgar +Gordon +Jon +Marvin +Nathaniel +Terry +Don +Eddie +Hugh +Joe +Lester +Bill +Brian +Gilbert +Jesse +Lloyd +Rodney +Tyrone +Bobby +Calvin +Guy +Harvey +Mike +Ray +Sylvester +Clifford +Gregory +Jimmy +Victor +Clifton +Elmer +Hubert +Karl +Oliver +Preston +Randolph +Vernon +Christopher +Curtis +Danny +Eric +Frederic +Gene +Herman +Joel +Leo +Lynn +Mark +Nicholas +Sam +Carroll +Cecil +Dale +Jim +Marshall +Morris +Neil +Oscar +Ronnie +Roscoe +Stewart +Alexander +Arnold +Chester +Clyde +Craig +Floyd +Jimmie +Leslie +Matthew +Nathan +Norris +Sterling +Stuart +Tom +Tommy +Wilbert +Willard +Chris +Claude +Dick +Elwood +Everett +Grant +Horace +Isaac +Jan +Johnny +Julian +Malcolm +Millard +Murray +Neal +Steve +Wallace +Wilson +Winston +John +Robert +William +James +Charles +Richard +Michael +David +Thomas +George +Joseph +Ronald +Paul +Edward +Donald +Kenneth +Stephen +Frank +Lawrence +Raymond +Douglas +Walter +Arthur +Albert +Daniel +Larry +Harry +Ralph +Gerald +Henry +Carl +Dennis +Bernard +Peter +Gary +Norman +Jerry +Anthony +Samuel +Ernest +Harold +Melvin +Eugene +Roger +Wayne +Bruce +Howard +Stanley +Francis +Martin +Philip +Warren +Clarence +Leonard +Louis +Steven +Fred +Jack +Timothy +Earl +Leroy +Theodore +Barry +Frederick +Alan +Alfred +Jeffrey +Phillip +Vincent +Reginald +Russell +Hugh +Herbert +Marvin +Roy +Allen +Allan +Patrick +Franklin +Milton +Benjamin +Lewis +Willie +Edwin +Eric +Jay +Mark +Andrew +Christopher +Gordon +Harvey +Stuart +Jerome +Lloyd +Steve +Alvin +Calvin +Jesse +Joe +Lee +Leon +Maurice +Vernon +Bill +Nathaniel +Nicholas +Ronnie +Claude +Don +Johnny +Clyde +Gregory +Jimmy +Jon +Jonathan +Roland +Tyrone +Brian +Clifton +Floyd +Glenn +Laurence +Marshall +Mike +Terry +Wallace +Clark +Clifford +Curtis +Dale +Eddie +Gene +Gilbert +Leslie +Morris +Ray +Sterling +Bobby +Chester +Edgar +Herman +Karl +Oliver +Randolph +Sidney +Victor +Bob +Carroll +Craig +Everett +Leo +Lester +Malcolm +Matthew +Preston +Rudolph +Sheldon +Wendell +Wesley +Wilbert +Willard +Aubrey +Horace +Neil +Ross +Wilbur +Alexander +Arnold +Byron +Dave +Freddie +Geoffrey +Guy +Kevin +Thurman +Tom +Tommy +Wade +Aaron +Danny +Duncan +Glen +Irving +Isaac +Jim +Joel +Johnnie +Rodney +Sherman +Spencer +Adrian +Alonzo +Austin +Carlos +Conrad +Edmund +Eliot +Elmer +Hubert +Jeffery +Jimmie +Julian +Julius +Kent +Luther +Lynn +Mary +Neal +Nelson +Otis +Sylvester +John +Robert +James +William +Richard +Charles +Thomas +Michael +David +George +Joseph +Ronald +Edward +Donald +Paul +Kenneth +Stephen +Frank +Gary +Raymond +Peter +Daniel +Larry +Walter +Henry +Arthur +Dennis +Lawrence +Ralph +Carl +Harry +Gerald +Douglas +Melvin +Albert +Bruce +Howard +Samuel +Roger +Francis +Frederick +Louis +Patrick +Jack +Eugene +Fred +Philip +Stanley +Harold +Wayne +Steven +Clarence +Norman +Ernest +Timothy +Anthony +Barry +Bernard +Leonard +Andrew +Jerry +Alfred +Jerome +Russell +Theodore +Mark +Earl +Herbert +Leroy +Martin +Vincent +Willie +Christopher +Maurice +Benjamin +Lewis +Ray +Roy +Glenn +Warren +Alan +Stuart +Allen +Edwin +Brian +Reginald +Calvin +Gordon +Harvey +Jeffrey +Phillip +Steve +Clifford +Don +Eric +Jon +Lee +Marshall +Franklin +Nathaniel +Roland +Allan +Alvin +Gilbert +Joel +Lloyd +Marvin +Milton +Victor +Clifton +Floyd +Jesse +Leon +Gregory +Ronnie +Terry +Alexander +Arnold +Bobby +Claude +Craig +Dale +Edmund +Jim +Joe +Johnny +Leslie +Malcolm +Tom +Tommy +Wesley +Eddie +Gene +Guy +Herman +Hugh +Irving +Jay +Jimmy +Karl +Keith +Nathan +Otis +Wendell +Bob +Edgar +Mike +Randolph +Carlton +Clinton +Curtis +Everett +Johnnie +Jonathan +Oliver +Rodney +Rudolph +Sylvester +Winston +Billy +Byron +Darrell +Geoffrey +Julian +Marc +Nicholas +Ross +Tyrone +Vernon +Clyde +Danny +Gerard +Jackie +Julius +Kent +Lester +Lynn +Neal +Nelson +Wallace +Wilbert +Ben +Leo +Matthew +Neil +Oscar +Preston +Scott +Terence +Wilbur +Alton +Carroll +Cecil +Chris +Conrad +Elmer +Emory +Grant +Harrison +Horace +Laurence +Lionel +Morris +Roosevelt +Sam +Sidney +Sterling +Stewart +Ted +John +Robert +James +William +Richard +Charles +Michael +Thomas +David +Joseph +George +Edward +Ronald +Donald +Paul +Kenneth +Frank +Raymond +Gary +Stephen +Lawrence +Larry +Peter +Daniel +Walter +Arthur +Dennis +Gerald +Harry +Carl +Harold +Bruce +Henry +Frederick +Douglas +Eugene +Ralph +Wayne +Howard +Philip +Louis +Albert +Francis +Roger +Steven +Alan +Anthony +Norman +Bernard +Ernest +Andrew +Jerry +Fred +Clarence +Jeffrey +Patrick +Melvin +Russell +Samuel +Timothy +Earl +Eric +Jack +Stanley +Leonard +Roy +Maurice +Jerome +Leroy +Theodore +Willie +Barry +Calvin +Warren +Brian +Leon +Alfred +Christopher +Steve +Phillip +Herbert +Jon +Martin +Lloyd +Vincent +Benjamin +Claude +Reginald +Allen +Joe +Lewis +Dwight +Hugh +Joel +Mark +Marvin +Nicholas +Ray +Terry +Alexander +Clifford +Curtis +Gregory +Jonathan +Karl +Ronnie +Alvin +Bill +Chester +Dale +Don +Edwin +Nathaniel +Randolph +Roland +Tyrone +Carroll +Clifton +Craig +Gilbert +Jesse +Johnnie +Leslie +Lester +Mike +Milton +Vernon +Victor +Wesley +Carlton +Clyde +Johnny +Preston +Eddie +Edgar +Franklin +Jay +Jim +Lee +Leo +Tom +Winston +Gordon +Julius +Neil +Rodney +Stuart +Bobby +Cecil +Clinton +Everett +Freddie +Gene +Keith +Kevin +Kurt +Luther +Malcolm +Tommy +Allan +Alonzo +Andre +Billy +Glenn +Guy +Harvey +Morris +Oliver +Perry +Sam +Bob +Edmund +Gerard +Herman +Irving +Jimmy +Marshall +Mitchell +Nathan +Nelson +Rudolph +Rufus +Stewart +Sylvester +Wallace +Arnold +Clayton +Glen +Hal +Horace +Laurence +Myron +Oscar +Otis +Percy +Wilbert +Woodrow +Alton +Aubrey +Clark +Conrad +Dan +Dean +Floyd +Garland +Homer +Jeff +Jimmie +Leland +Lonnie +Matthew +Neal +Randall +Ross +Sherman +Spencer +Ted +Wendell +Wilbur +John +James +Robert +William +Richard +Michael +Charles +Thomas +David +Joseph +Ronald +George +Donald +Edward +Paul +Stephen +Kenneth +Gary +Lawrence +Frank +Peter +Dennis +Raymond +Daniel +Larry +Walter +Arthur +Douglas +Steven +Gerald +Harold +Harry +Bruce +Mark +Henry +Carl +Wayne +Albert +Philip +Ralph +Alan +Eugene +Leonard +Roger +Anthony +Andrew +Earl +Frederick +Patrick +Samuel +Francis +Jack +Bernard +Fred +Jeffrey +Norman +Gregory +Melvin +Willie +Stanley +Timothy +Ernest +Allen +Jerry +Louis +Russell +Brian +Howard +Warren +Roy +Calvin +Christopher +Eric +Leon +Alfred +Jerome +Barry +Leroy +Allan +Keith +Vincent +Clarence +Franklin +Jonathan +Lewis +Martin +Nathaniel +Reginald +Victor +Bill +Gene +Theodore +Harvey +Herbert +Maurice +Phillip +Steve +Gordon +Jon +Lee +Tyrone +Claude +Clifford +Jimmy +Lloyd +Glenn +Milton +Stuart +Edwin +Jay +Joe +Roland +Terry +Dale +Mike +Benjamin +Leo +Bob +Johnny +Marvin +Ray +Rodney +Clyde +Craig +Curtis +Dan +Don +Dwight +Geoffrey +Marshall +Ronnie +Scott +Eddie +Floyd +Gilbert +Joel +Lester +Nicholas +Wallace +Alexander +Alvin +Carroll +Chris +Clifton +Danny +Hugh +Marc +Roderick +Wilbur +Willard +Arnold +Chester +Edmund +Guy +Jan +Jim +Karl +Leslie +Neil +Sterling +Vernon +Willis +Byron +Dean +Freddie +Irving +Jesse +Malcolm +Morris +Randall +Rudolph +Tom +Tommy +Carlton +Clayton +Clement +Glen +Laurence +Neal +Nelson +Oliver +Ricardo +Sidney +Stewart +Wendell +Billy +Bryan +Cecil +Dana +Dave +Everett +Frederic +Herman +Jackie +Johnnie +Kurt +Lynn +Mitchell +Ross +Sheldon +Terence +Alton +Andre +Bennett +Bobby +Christian +Clark +Clinton +Conrad +Elmer +Garrett +Julian +Julius +Kirk +Lamont +Lionel +Miles +Myron +Norbert +Percy +Perry +Pete +Preston +Randolph +Tim +Tony +Van +Wilson +John +Robert +James +William +Richard +Michael +Charles +Thomas +David +Joseph +Ronald +George +Paul +Donald +Stephen +Edward +Kenneth +Lawrence +Gary +Frank +Daniel +Douglas +Larry +Dennis +Raymond +Carl +Arthur +Wayne +Gregory +Peter +Alan +Steven +Bruce +Walter +Harry +Samuel +Anthony +Henry +Gerald +Jerry +Roger +Frederick +Bernard +Harold +Ralph +Patrick +Andrew +Eugene +Mark +Howard +Russell +Jerome +Philip +Francis +Norman +Timothy +Albert +Louis +Stanley +Jack +Jeffrey +Clarence +Allen +Christopher +Earl +Ernest +Melvin +Alfred +Leonard +Warren +Eric +Leroy +Fred +Theodore +Willie +Roy +Terry +Tyrone +Barry +Glenn +Gordon +Martin +Reginald +Brian +Vernon +Herbert +Jonathan +Lee +Leon +Lewis +Maurice +Jon +Dale +Johnny +Nathaniel +Alvin +Calvin +Franklin +Lloyd +Vincent +Benjamin +Craig +Steve +Milton +Randall +Ray +Roland +Ronnie +Tom +Allan +Victor +Don +Edwin +Geoffrey +Phillip +Rodney +Gene +Mike +Alexander +Harvey +Hugh +Jay +Marvin +Bill +Clifton +Floyd +Herman +Jimmy +Leslie +Scott +Sylvester +Clifford +Clyde +Curtis +Dan +Jesse +Jim +Karl +Keith +Stuart +Arnold +Byron +Carroll +Eddie +Malcolm +Wallace +Bob +Clayton +Ira +Joel +Lonnie +Marshall +Sidney +Tommy +Cecil +Chester +Chris +Claude +Everett +Joe +Julius +Kevin +Matthew +Micheal +Randolph +Sterling +Tony +Billy +Bryan +Carlton +Darryl +Dwight +Edgar +Elmer +Gilbert +Guy +Jan +Kent +Leo +Lester +Nathan +Perry +Terrence +Wesley +Willard +Alphonso +Bobby +Clark +Cornell +Danny +Edmund +Forrest +Lorenzo +Morris +Nicholas +Noel +Otis +Ricky +Rudolph +Ted +Van +Winston +Alonzo +Carlos +Dean +Elliott +Elwood +Freddie +Glen +Grant +Johnnie +Lionel +Marion +Neal +Nelson +Roderick +Wilbert +Willis +Archie +Barton +Blaine +Clinton +Dave +Ellis +Frankie +Frederic +Garland +Gerard +Gerry +Greg +Julian +Kermit +Laurence +Luther +Marc +Neil +Nick +Oscar +Wade +Wilson +John +James +Robert +William +Michael +Richard +David +Thomas +Charles +Ronald +Joseph +George +Donald +Edward +Kenneth +Paul +Stephen +Larry +Gary +Gregory +Steven +Raymond +Dennis +Lawrence +Mark +Peter +Frank +Daniel +Douglas +Walter +Bruce +Arthur +Alan +Ralph +Philip +Gerald +Patrick +Harold +Henry +Albert +Harry +Frederick +Wayne +Carl +Anthony +Leonard +Timothy +Samuel +Bernard +Jerry +Jeffrey +Reginald +Roger +Jerome +Barry +Eric +Melvin +Brian +Earl +Francis +Tyrone +Andrew +Ernest +Louis +Phillip +Christopher +Clarence +Fred +Alfred +Howard +Stanley +Glenn +Norman +Roy +Leroy +Craig +Jack +Leon +Herbert +Martin +Terry +Allen +Russell +Steve +Vincent +Willie +Calvin +Vernon +Eugene +Joel +Theodore +Alvin +Warren +Benjamin +Lee +Maurice +Milton +Ronnie +Stuart +Lewis +Marvin +Rodney +Allan +Carlton +Dwight +Jay +Harvey +Lloyd +Mike +Aaron +Bill +Clifton +Dale +Don +Kevin +Leslie +Lester +Claude +Edwin +Gordon +Roland +Joe +Jon +Morris +Nathaniel +Danny +Geoffrey +Laurence +Leo +Randall +Scott +Wallace +Billy +Byron +Curtis +Gilbert +Jesse +Jimmy +Johnny +Jonathan +Karl +Marshall +Victor +Clifford +Eddie +Glen +Keith +Randolph +Clyde +Dana +Dean +Guy +Jeff +Neil +Nelson +Ray +Sidney +Sterling +Floyd +Franklin +Gene +Herman +Jimmie +Malcolm +Marc +Oliver +Rudolph +Tom +Tony +Alexander +Arnold +Bobby +Chris +Duane +Edgar +Everett +Freddie +Johnnie +Micheal +Nicholas +Perry +Robin +Sylvester +Terrence +Tommy +Wade +Willard +Andre +Darrell +Jim +Otis +Ted +Bradley +Carroll +Clayton +Elliott +Horace +Hugh +Ivan +Kirk +Linwood +Lonnie +Matthew +Neal +Ricardo +Roderick +Stewart +Wesley +Wilbert +Alphonso +Aubrey +Bob +Bradford +Brent +Clark +Edmund +Ellis +Greg +Isaac +Kermit +Lionel +Lynn +Rick +Thaddeus +Tim +Ulysses +Wendell +Alfonso +Antonio +Chester +Conrad +Elbert +Elmer +Emmett +Furman +Ian +Irvin +Irving +Joshua +Kenny +Leland +Nathan +Oscar +Preston +Randy +Ross +Spencer +Wilbur +John +James +Robert +William +Michael +Richard +Thomas +Charles +David +Joseph +Ronald +George +Paul +Stephen +Donald +Edward +Kenneth +Larry +Gary +Daniel +Lawrence +Steven +Raymond +Gregory +Frank +Dennis +Mark +Alan +Bruce +Walter +Anthony +Harold +Gerald +Arthur +Patrick +Timothy +Carl +Christopher +Douglas +Jerry +Wayne +Peter +Ralph +Andrew +Eugene +Roger +Eric +Philip +Samuel +Jeffrey +Tyrone +Ernest +Harry +Reginald +Stanley +Bernard +Clarence +Albert +Frederick +Henry +Howard +Norman +Leroy +Francis +Jerome +Vincent +Phillip +Calvin +Fred +Melvin +Roy +Allen +Glenn +Russell +Terry +Theodore +Barry +Alfred +Earl +Steve +Brian +Warren +Alvin +Leon +Louis +Craig +Jack +Leonard +Milton +Lewis +Martin +Willie +Benjamin +Herbert +Jonathan +Edwin +Maurice +Ronnie +Dale +Don +Curtis +Jesse +Lee +Lester +Rodney +Carlton +Clifford +Kevin +Joel +Keith +Roland +Vernon +Arnold +Lloyd +Victor +Alexander +Bill +Dwight +Harvey +Johnny +Jon +Leslie +Marshall +Nathaniel +Allan +Clifton +Mike +Ray +Andre +Everett +Ricardo +Scott +Floyd +Franklin +Herman +Laurence +Mitchell +Neil +Nicholas +Stuart +Wallace +Danny +Hugh +Jay +Wesley +Aaron +Bob +Edmund +Greg +Joe +Marvin +Oliver +Rudolph +Bobby +Carroll +Dana +Gordon +Johnnie +Sidney +Edgar +Elliot +Gene +Irving +Jimmy +Karl +Matthew +Micheal +Morris +Nathan +Randall +Spencer +Tom +Cecil +Chester +Claude +Cornell +Freddie +Glen +Lonnie +Malcolm +Randolph +Rufus +Sam +Sherman +Wilbur +Wilson +Bradley +Cleveland +Clinton +Geoffrey +Gilbert +Horace +Lamont +Leo +Marc +Randy +Tommy +Wade +Wilbert +Willis +Winston +Alphonso +Alphonzo +Alton +Chris +Darryl +Eddie +Elliott +Elmer +Forrest +Guy +Julius +Perry +Robin +Terrence +Woodrow +Adrian +Barrington +Bradford +Christian +Clyde +Conrad +Daryl +Dean +Elwood +Isaiah +Jackie +Jimmie +Julian +Percy +Ramon +Roscoe +Stewart +Terence +Thaddeus +Wendell +Wilfred +Robert +James +John +William +Michael +Richard +David +Thomas +Charles +Ronald +Joseph +Stephen +George +Paul +Donald +Kenneth +Larry +Edward +Gregory +Steven +Gary +Lawrence +Daniel +Dennis +Mark +Bruce +Alan +Peter +Raymond +Anthony +Timothy +Walter +Frank +Douglas +Christopher +Patrick +Wayne +Harold +Arthur +Howard +Carl +Jeffrey +Reginald +Ralph +Henry +Andrew +Gerald +Roger +Francis +Harry +Bernard +Eric +Louis +Albert +Melvin +Stanley +Clarence +Brian +Philip +Eugene +Samuel +Frederick +Jerome +Martin +Glenn +Fred +Norman +Tyrone +Barry +Jack +Theodore +Leonard +Ernest +Leroy +Phillip +Earl +Roy +Willie +Allen +Alvin +Alfred +Benjamin +Calvin +Kevin +Russell +Craig +Vincent +Jonathan +Maurice +Rodney +Terry +Warren +Lee +Vernon +Johnny +Leon +Jay +Jerry +Milton +Ronnie +Herbert +Dale +Clifton +Leslie +Marvin +Lewis +Marc +Curtis +Gilbert +Gordon +Scott +Carlton +Steve +Victor +Harvey +Joel +Keith +Nathaniel +Rudolph +Allan +Franklin +Gene +Herman +Jesse +Karl +Lloyd +Randolph +Stuart +Aaron +Claude +Clifford +Darryl +Morris +Dwight +Edwin +Geoffrey +Jeffery +Marshall +Matthew +Micheal +Ray +Mike +Nicholas +Roland +Leo +Wesley +Chris +Danny +Floyd +Jon +Julian +Randall +Sterling +Arnold +Bob +Clyde +Don +Eddie +Edgar +Everett +Gerard +Guy +Hugh +Laurence +Otis +Adrian +Andre +Bill +Chester +Darrell +Ira +Lester +Mitchell +Terence +Alexander +Bradley +Carlos +Glen +Isaac +Johnnie +Juan +Kent +Kim +Kirk +Lamont +Neil +Oliver +Oscar +Terrence +Wendell +Wilbur +Alphonso +Clark +Clinton +Dana +Dean +Gregg +Jan +Joe +Julius +Linwood +Lonnie +Lorenzo +Nathan +Nelson +Perry +Preston +Ricardo +Tommy +Tony +Wallace +Wilbert +Carroll +Cecil +Clayton +Dan +Daryl +Edmund +Elmer +Freddie +Irving +Jim +Kerry +Lance +Marion +Ricky +Sidney +Terrance +Tom +Woodrow +Alfonso +Bradford +Bryan +Conrad +Cornelius +Cornell +Duane +Frederic +Fredrick +Jimmy +Lionel +Neal +Rickey +Robin +Rodger +Sherman +Sylvester +Ulysses +Willard +Zachary +John +James +Robert +Michael +William +David +Richard +Thomas +Charles +Joseph +Ronald +Stephen +Paul +Donald +George +Edward +Gary +Steven +Larry +Kenneth +Gregory +Dennis +Mark +Lawrence +Bruce +Daniel +Anthony +Raymond +Douglas +Peter +Patrick +Christopher +Gerald +Arthur +Alan +Walter +Eric +Frank +Wayne +Timothy +Roger +Harold +Andrew +Jerome +Philip +Carl +Jeffrey +Samuel +Tyrone +Harry +Howard +Ralph +Reginald +Bernard +Brian +Leonard +Stanley +Kevin +Albert +Eugene +Glenn +Alvin +Russell +Henry +Craig +Frederick +Francis +Melvin +Vincent +Alfred +Barry +Clarence +Jerry +Leon +Terry +Maurice +Ernest +Allen +Earl +Louis +Norman +Theodore +Jonathan +Roy +Martin +Jack +Keith +Leroy +Calvin +Clifford +Dwight +Edwin +Rodney +Willie +Randolph +Benjamin +Jay +Phillip +Victor +Andre +Curtis +Dale +Johnny +Lee +Milton +Lloyd +Marvin +Warren +Aaron +Nathaniel +Scott +Fred +Lewis +Clifton +Dean +Herbert +Steve +Don +Ronnie +Sylvester +Vernon +Edgar +Herman +Matthew +Roland +Arnold +Danny +Harvey +Jesse +Morris +Ricardo +Rudolph +Stuart +Wendell +Darryl +Gilbert +Leo +Lester +Marc +Nicholas +Bradley +Carlton +Eddie +Geoffrey +Gordon +Jon +Leslie +Wallace +Wilbert +Clyde +Franklin +Jimmy +Joel +Karl +Lynn +Marshall +Wesley +Allan +Byron +Everett +Alexander +Carlos +Cecil +Chester +Derrick +Guy +Jan +Lonnie +Neal +Preston +Robin +Roderick +Sidney +Bobby +Clark +Conrad +Darnell +Gene +Jeffery +Joe +Juan +Julian +Laurence +Micheal +Nathan +Randall +Ray +Spencer +Sterling +Terrence +Tony +Adrian +Darrell +Elliott +Garry +Gerard +Horace +Hugh +Kirk +Mitchell +Nelson +Randy +Roosevelt +Tommy +Wilbur +Alton +Bennie +Billy +Brent +Chris +Claude +Clayton +Dan +Dana +Duane +Ellis +Frederic +Fredrick +Glen +Ira +Oscar +Perry +Ross +Thaddeus +Wade +Alonzo +Archie +Bradford +Bryan +Charlie +Clinton +Derek +Elbert +Elmer +Irvin +Jim +Johnnie +Lamont +Linwood +Malcolm +Ricky +Sean +Sheldon +Todd +Vance +Alphonso +Antonio +Bill +Christian +Cleveland +Denis +Donnell +Evan +Floyd +Frankie +Homer +Hubert +Irving +Isaiah +Jackie +Kent +Kermit +Kurt +Lionel +Luis +Marcus +Mike +Morgan +Otis +Percy +Roscoe +Salvatore +Sanford +Terence +Tom +Vaughn +Willard +Robert +John +James +Michael +William +David +Thomas +Richard +Charles +Joseph +Stephen +Ronald +Gary +Donald +Paul +George +Gregory +Kenneth +Edward +Steven +Mark +Larry +Daniel +Dennis +Anthony +Lawrence +Bruce +Christopher +Timothy +Wayne +Alan +Peter +Jeffrey +Patrick +Raymond +Douglas +Roger +Walter +Andrew +Carl +Reginald +Gerald +Kevin +Frank +Brian +Arthur +Eugene +Stanley +Frederick +Henry +Eric +Tyrone +Philip +Ralph +Barry +Howard +Bernard +Francis +Harold +Ernest +Harry +Jerome +Samuel +Warren +Albert +Leonard +Phillip +Louis +Jerry +Dale +Scott +Earl +Vincent +Glenn +Theodore +Craig +Willie +Alvin +Clarence +Jonathan +Martin +Melvin +Rodney +Alfred +Allen +Herbert +Roy +Calvin +Keith +Norman +Leon +Russell +Jack +Lee +Maurice +Nathaniel +Dwight +Ricardo +Vernon +Alexander +Fred +Leroy +Terry +Roland +Andre +Benjamin +Curtis +Carlton +Jay +Jesse +Lewis +Clifford +Edwin +Gordon +Franklin +Lloyd +Marc +Nicholas +Victor +Don +Gilbert +Micheal +Randall +Ronnie +Joel +Ray +Marvin +Nathan +Allan +Floyd +Rudolph +Johnny +Jon +Lester +Matthew +Milton +Clifton +Clyde +Darrell +Hugh +Karl +Leslie +Stuart +Sylvester +Wallace +Dean +Perry +Steve +Aaron +Byron +Eddie +Garry +Geoffrey +Joe +Randolph +Sidney +Alonzo +Chester +Claude +Edmund +Kim +Laurence +Mitchell +Morris +Clinton +Darryl +Harvey +Horace +Jeffery +Lamont +Malcolm +Otis +Willard +Alphonso +Bobby +Edgar +Glen +Guy +Ira +Irving +Jimmy +Lonnie +Lorenzo +Marshall +Robin +Ross +Terrance +Todd +Tony +Wesley +Carroll +Dan +Danny +Darnell +Daryl +Herman +Julius +Linwood +Lynn +Neal +Oliver +Roderick +Roosevelt +Wendell +Wilbert +Wilbur +Archie +Billy +Carlos +Chris +Clayton +Derek +Elliot +Fredrick +Irvin +Isaac +Leo +Lionel +Luther +Marcus +Percy +Roscoe +Sam +Sheldon +Stewart +Terrence +Thaddeus +Tommy +Adrian +Arnold +Bill +Bryan +Cornell +Ellis +Freddie +Garland +Hubert +Kerry +Kurt +Mike +Neil +Norris +Spencer +Tom +Winston +Zachary +Adam +Bradley +Cecil +Charlie +Conrad +Dana +Derrick +Duane +Emory +Francisco +Gene +Gerard +Girard +Greg +Jackie +Jan +Jeff +Jeremiah +Kent +Kermit +Marion +Myron +Nelson +Oscar +Owen +Preston +Randy +Ricky +Sterling +Ted +Ulysses +Willis +John +James +Michael +Robert +William +David +Richard +Thomas +Charles +Joseph +Stephen +Ronald +Gary +Steven +Paul +Gregory +Donald +George +Larry +Mark +Edward +Kenneth +Daniel +Anthony +Lawrence +Jeffrey +Dennis +Bruce +Kevin +Patrick +Timothy +Christopher +Douglas +Eric +Wayne +Peter +Frank +Raymond +Alan +Arthur +Gerald +Frederick +Roger +Reginald +Jerome +Walter +Carl +Andrew +Stanley +Glenn +Howard +Bernard +Francis +Henry +Philip +Ralph +Tyrone +Melvin +Samuel +Vincent +Harry +Albert +Brian +Scott +Eugene +Alvin +Harold +Craig +Jonathan +Martin +Norman +Clarence +Phillip +Barry +Matthew +Russell +Earl +Willie +Ernest +Louis +Theodore +Warren +Keith +Leonard +Alfred +Calvin +Leroy +Maurice +Nathaniel +Herbert +Victor +Benjamin +Jerry +Roland +Terry +Leon +Nicholas +Jay +Jesse +Ricardo +Rodney +Vernon +Allen +Jack +Andre +Curtis +Don +Fred +Roy +Darryl +Gordon +Alexander +Dwight +Jon +Darrell +Marc +Marvin +Johnny +Lloyd +Ricky +Cornelius +Randolph +Aaron +Clifford +Dale +Gilbert +Jeffery +Ronnie +Arnold +Danny +Carlton +Clifton +Edwin +Geoffrey +Leslie +Micheal +Milton +Mitchell +Randall +Wendell +Dean +Karl +Lewis +Randy +Steve +Clyde +Glen +Lee +Neil +Alphonso +Cecil +Franklin +Harvey +Herman +Hugh +Joe +Neal +Sylvester +Tony +Adrian +Claude +Dana +Derrick +Gerard +Guy +Joel +Leo +Nathan +Preston +Stuart +Byron +Lester +Malcolm +Sherman +Allan +Antonio +Bobby +Clayton +Conrad +Eddie +Fredrick +Kent +Laurence +Ray +Wesley +Alton +Carroll +Cornell +Darnell +Irving +Kim +Marshall +Oliver +Robin +Roderick +Terrence +Tommy +Wilbur +Bradley +Chester +Chris +Edmund +Elliott +Gene +Isaac +Johnnie +Kerry +Mario +Nelson +Perry +Roosevelt +Wilbert +Billy +Carlos +Cedric +Dan +Duane +Duncan +Edgar +Everett +Floyd +Garry +Greg +Horace +Jimmy +Julian +Kirk +Lonnie +Lorenzo +Lynn +Marcus +Rick +Sheldon +Sterling +Vance +Alex +Alonzo +Angelo +Bryan +Charlie +Ellis +Elwood +Emmett +Gregg +Jan +Jeff +Luther +Mike +Monte +Oscar +Ross +Rudolph +Spencer +Stewart +Ted +Terence +Terrance +Tom +Willard +Archie +Aubrey +Bradford +Christophe +Clark +Cleveland +Clinton +Daryl +Dexter +Donnell +Elijah +Emanuel +Freddie +Ira +Jean +Julius +Kurt +Marcellus +Morris +Myron +Orlando +Percy +Quentin +Rex +Rickey +Stephan +Todd +Van +Vaughn +Wade +Michael +John +James +Robert +William +David +Thomas +Richard +Charles +Gary +Steven +Joseph +Stephen +Ronald +Mark +Donald +Gregory +George +Paul +Edward +Anthony +Kenneth +Larry +Daniel +Lawrence +Jeffrey +Kevin +Dennis +Timothy +Raymond +Patrick +Peter +Douglas +Bruce +Wayne +Christopher +Andrew +Stanley +Tyrone +Eric +Alan +Brian +Frank +Reginald +Walter +Arthur +Carl +Ralph +Scott +Keith +Bernard +Ricardo +Eugene +Roger +Craig +Frederick +Philip +Samuel +Gerald +Glenn +Henry +Vincent +Francis +Jerome +Jerry +Leonard +Melvin +Earl +Harold +Harry +Barry +Russell +Allen +Phillip +Howard +Matthew +Maurice +Albert +Warren +Louis +Martin +Randolph +Benjamin +Jonathan +Rodney +Theodore +Alvin +Victor +Willie +Andre +Calvin +Clarence +Herbert +Nathaniel +Terry +Dwight +Ernest +Randy +Ricky +Darrell +Jon +Leroy +Norman +Marvin +Micheal +Ronnie +Roy +Clifford +Franklin +Jay +Alfred +Bradley +Curtis +Dale +Stuart +Gordon +Jack +Marc +Neil +Carlton +Johnny +Karl +Leon +Don +Nicholas +Edwin +Guy +Joel +Lee +Randall +Rickey +Vernon +Allan +Darryl +Lester +Steve +Clifton +Garry +Jeffery +Arnold +Dean +Floyd +Fred +Milton +Roland +Aaron +Bobby +Eddie +Geoffrey +Herman +Jesse +Lloyd +Roderick +Wesley +Danny +Gene +Harvey +Hugh +Lewis +Tony +Alexander +Clyde +Kirk +Ray +Wallace +Antonio +Dana +Donnell +Duane +Glen +Mike +Mitchell +Rudolph +Terrence +Claude +Cornell +Derek +Jimmy +Kurt +Lamont +Leslie +Preston +Robin +Shelton +Sherman +Sylvester +Ted +Alton +Carlos +Edgar +Gilbert +Horace +Julius +Kim +Lorenzo +Marcus +Nathan +Neal +Nelson +Oliver +Perry +Sterling +Winston +Adrian +Alonzo +Billy +Chris +Clayton +Clinton +Cornelius +Everett +Grant +Johnnie +Juan +Kerry +Lance +Marion +Marshall +Myron +Terence +Wendell +Zachary +Alphonso +Angelo +Byron +Chester +Darnell +Dexter +Earnest +Fredrick +Hal +Ira +Joe +Laurence +Leo +Lonnie +Morris +Ross +Alex +Alfonso +Bennett +Carroll +Cedric +Clark +Freddie +Gerard +Isaac +Joshua +Julian +Linwood +Miles +Oscar +Rufus +Sean +Sheldon +Sidney +Tommy +Van +Wilbert +Wilbur +Wiley +Willard +Austin +Brad +Bradford +Conrad +Daryl +Derrick +Dewey +Edmund +Elliott +Elmer +Garland +Gregg +Irving +Jan +Jose +Kelvin +Kent +Otis +Patricia +Raphael +Wilfred +Willis +Wilson +Michael +James +John +Robert +William +David +Richard +Thomas +Charles +Joseph +Stephen +Mark +Gary +Steven +Ronald +Gregory +Paul +Donald +George +Kenneth +Edward +Kevin +Anthony +Jeffrey +Larry +Daniel +Douglas +Lawrence +Timothy +Wayne +Dennis +Bruce +Christopher +Eric +Peter +Raymond +Tyrone +Patrick +Brian +Frank +Keith +Alan +Gerald +Stanley +Walter +Reginald +Samuel +Carl +Philip +Arthur +Andrew +Henry +Roger +Harold +Frederick +Craig +Rodney +Jerry +Martin +Calvin +Glenn +Ralph +Scott +Eugene +Barry +Melvin +Bernard +Ernest +Russell +Clarence +Maurice +Vincent +Jerome +Willie +Curtis +Albert +Harry +Phillip +Terry +Francis +Ricardo +Howard +Norman +Allen +Jack +Leonard +Marc +Leroy +Ronnie +Theodore +Carlton +Jonathan +Warren +Andre +Darrell +Roy +Steve +Earl +Victor +Alvin +Darryl +Randy +Matthew +Vernon +Fred +Louis +Clifton +Herbert +Jesse +Johnny +Leon +Ricky +Roland +Floyd +Guy +Lloyd +Marvin +Micheal +Benjamin +Jay +Milton +Tony +Clifford +Danny +Dana +Glen +Jon +Lee +Wendell +Duane +Edwin +Jeffery +Wesley +Byron +Gordon +Joel +Karl +Leslie +Ray +Stuart +Alfred +Clyde +Derrick +Franklin +Allan +Arnold +Carlos +Dale +Dwight +Garry +Harvey +Hugh +Jimmy +Kelvin +Kim +Lewis +Marshall +Randolph +Rickey +Sylvester +Bobby +Dan +Dean +Freddie +Kirk +Laurence +Luther +Malcolm +Nathaniel +Neal +Alonzo +Don +Geoffrey +Oliver +Carroll +Nathan +Nicholas +Randall +Terrence +Aaron +Alexander +Bradley +Chester +Darnell +Donnell +Johnnie +Kerry +Kurt +Otis +Bryan +Cedric +Claude +Cornell +Eddie +Gerard +Gilbert +Leo +Lonnie +Mitchell +Neil +Oscar +Preston +Robin +Roscoe +Terence +Adrian +Alphonso +Antonio +Billy +Chris +Christian +Conrad +Cornelius +Horace +Kent +Lamont +Lionel +Marcus +Perry +Woodrow +Alton +Aubrey +Clark +Clay +Clinton +Joe +Mike +Murray +Nelson +Rudolph +Sean +Sheldon +Sidney +Sterling +Terrance +Tommy +Van +Wade +Angelo +Bertram +Brad +Brett +Clayton +Cleveland +Daryl +Elmer +Everett +Forrest +Grady +Greg +Kyle +Lynn +Marcellus +Mario +Morris +Rene +Stephan +Stewart +Thaddeus +Wallace +Willard +Archie +Artie +Blair +Boyd +Brent +Carey +Carter +Demetrius +Denis +Derek +Desmond +Donnie +Edgar +Ellsworth +Garland +Gene +Herman +Irving +Jan +Jason +Jose +Joshua +Julian +Julius +Lance +Lester +Lyle +Myron +Norris +Pierre +Sandy +Stevie +Wardell +Wilbur +Michael +John +James +Robert +William +David +Thomas +Richard +Charles +Joseph +Mark +Ronald +Stephen +Paul +Gregory +Steven +Donald +Gary +Kevin +Anthony +Daniel +Kenneth +Edward +Jeffrey +Timothy +George +Larry +Lawrence +Brian +Douglas +Peter +Eric +Christopher +Raymond +Wayne +Bruce +Reginald +Keith +Dennis +Alan +Andrew +Frank +Patrick +Stanley +Carl +Howard +Philip +Tyrone +Gerald +Scott +Harold +Walter +Eugene +Arthur +Roger +Ralph +Jonathan +Martin +Jerry +Rodney +Craig +Terry +Frederick +Henry +Phillip +Allen +Bernard +Harry +Melvin +Samuel +Albert +Jerome +Matthew +Calvin +Russell +Vincent +Francis +Clarence +Curtis +Roy +Earl +Louis +Alfred +Barry +Warren +Willie +Glenn +Jeffery +Maurice +Ernest +Leroy +Ricky +Nathaniel +Victor +Andre +Norman +Ronnie +Alvin +Marvin +Theodore +Carlton +Jack +Ricardo +Vernon +Lewis +Jay +Randy +Steve +Benjamin +Leon +Clyde +Dale +Dean +Karl +Wesley +Darrell +Fred +Johnny +Jon +Darryl +Micheal +Bradley +Allan +Geoffrey +Leonard +Milton +Randolph +Ray +Guy +Lee +Nicholas +Roland +Tony +Clifton +Derek +Derrick +Dwight +Edwin +Gordon +Herbert +Kirk +Marc +Marlon +Mitchell +Randall +Rickey +Stuart +Antonio +Bobby +Bryan +Johnnie +Leslie +Neil +Terence +Franklin +Joel +Wendell +Chester +Clifford +Eddie +Glen +Lloyd +Aaron +Alexander +Daryl +Don +Garry +Malcolm +Robin +Sean +Edgar +Kim +Mike +Neal +Terrence +Aubrey +Byron +Floyd +Gilbert +Harvey +Jesse +Jimmy +Joe +Lester +Alonzo +Carlos +Carroll +Claude +Danny +Horace +Ivan +Kelvin +Lynn +Myron +Arnold +Cedric +Darnell +Freddie +Hugh +Kerry +Leo +Marshall +Morris +Sherman +Sylvester +Adrian +Bennie +Brent +Cecil +Chris +Dana +Duane +Herman +Ira +Isaac +Julius +Laurence +Otis +Zachary +Cornell +Donnie +Jeff +Jose +Nathan +Rick +Ross +Tommy +Van +Wallace +Willard +Billy +Christian +Cleveland +Cornelius +Dwayne +Emanuel +Fredrick +Garland +Gene +Jerald +Lonnie +Rex +Roderick +Sidney +Ted +Wade +Wilbert +Bradford +Carey +Clayton +Elliott +Ellis +Gerard +Joshua +Kent +Linwood +Lionel +Lorenzo +Luther +Marcus +Preston +Roosevelt +Sterling +Todd +Wilbur +Alphonso +Alton +Angelo +Ben +Charlie +Clark +Clinton +Colin +Dexter +Donnell +Edmund +Everett +Fritz +Greg +Jackie +Jan +Jefferson +Julian +Kurt +Marcellus +Mickey +Miles +Oscar +Perry +Rickie +Rudolph +Shane +Shawn +Spencer +Michael +John +James +Robert +William +David +Richard +Thomas +Charles +Joseph +Mark +Gregory +Paul +Ronald +Stephen +Steven +Kevin +Anthony +Kenneth +Donald +George +Gary +Daniel +Brian +Edward +Timothy +Larry +Jeffrey +Christopher +Keith +Lawrence +Wayne +Bruce +Douglas +Patrick +Eric +Peter +Raymond +Tyrone +Dennis +Andrew +Frank +Reginald +Stanley +Glenn +Walter +Alan +Carl +Craig +Ernest +Melvin +Russell +Arthur +Bernard +Roger +Gerald +Rodney +Scott +Barry +Philip +Jonathan +Ralph +Samuel +Curtis +Frederick +Matthew +Willie +Darrell +Earl +Jerome +Phillip +Vincent +Leonard +Albert +Harold +Jerry +Francis +Clarence +Martin +Ronnie +Warren +Eugene +Howard +Theodore +Tony +Andre +Calvin +Nathaniel +Ricardo +Steve +Terry +Victor +Alvin +Harry +Marc +Jeffery +Maurice +Roy +Jay +Henry +Vernon +Herbert +Norman +Randy +Ricky +Benjamin +Jack +Leroy +Louis +Alfred +Allen +Karl +Edwin +Lee +Leon +Garry +Johnny +Lewis +Eddie +Geoffrey +Lloyd +Micheal +Randall +Aaron +Carlton +Dale +Darryl +Dwight +Franklin +Marvin +Antonio +Stuart +Wesley +Bobby +Clifford +Derrick +Fred +Terrence +Don +Glen +Danny +Harvey +Herman +Jesse +Julius +Kirk +Mitchell +Neil +Nicholas +Robin +Alexander +Clifton +Derek +Leslie +Roland +Brad +Bradley +Bryan +Dean +Floyd +Joe +Joel +Jon +Milton +Claude +Darnell +Guy +Hugh +Kent +Morris +Allan +Angelo +Christian +Gordon +Ivan +Kelvin +Kurt +Marcus +Nathan +Preston +Sean +Wendell +Alton +Clayton +Dana +Garland +Gilbert +Kim +Lionel +Perry +Randolph +Ray +Roderick +Sylvester +Todd +Tommy +Carlos +Cedric +Chris +Clinton +Duane +Dwayne +Gerard +Irving +Jimmy +Lonnie +Lowell +Mike +Wade +Bill +Dan +Donnell +Everett +Jose +Kerry +Lance +Laurence +Lester +Ross +Wilbert +Wilbur +Adrian +Alphonso +Aubrey +Byron +Carroll +Clyde +Edmund +Freddie +Isaac +Marlon +Myron +Orlando +Quentin +Rodger +Rudolph +Spencer +Ted +Terence +Zachary +Arnold +Billy +Chester +Colin +Conrad +Cornell +Daryl +Denis +Donnie +Edgar +Elliott +Elwood +Gene +Grant +Greg +Harrison +Hubert +Jan +Jerald +Jessie +Jim +Kermit +Leo +Lorenzo +Malcolm +Marshall +Neal +Otis +Rickey +Roscoe +Shawn +Stephan +Stevie +Vance +Avery +Cameron +Charlie +Clark +Cleveland +Dexter +Emory +Fredrick +Gregg +Hal +Ira +Jason +Juan +Julian +Levi +Luis +Manuel +Mario +Moses +Oscar +Rex +Roberto +Rufus +Sheldon +Sidney +Stewart +Terrance +Tracy +Wallace +Wyatt +Michael +James +John +Robert +David +William +Thomas +Richard +Mark +Charles +Joseph +Anthony +Kevin +Paul +Gregory +Steven +Donald +Stephen +Kenneth +Ronald +Gary +Timothy +George +Jeffrey +Daniel +Edward +Larry +Brian +Christopher +Keith +Lawrence +Douglas +Peter +Bruce +Wayne +Eric +Raymond +Reginald +Patrick +Tyrone +Dennis +Andrew +Frank +Scott +Walter +Carl +Melvin +Harry +Stanley +Vincent +Ralph +Gerald +Phillip +Philip +Russell +Martin +Henry +Curtis +Jerome +Maurice +Terry +Andre +Frederick +Glenn +Jerry +Jonathan +Samuel +Arthur +Jeffery +Matthew +Alan +Eugene +Ricky +Rodney +Benjamin +Bernard +Francis +Harold +Roger +Albert +Leonard +Steve +Craig +Warren +Darrell +Darryl +Calvin +Ronnie +Willie +Barry +Tony +Howard +Theodore +Ernest +Leroy +Victor +Clarence +Dale +Randy +Earl +Alfred +Joel +Micheal +Nathaniel +Norman +Ricardo +Alvin +Carlton +Clifford +Karl +Kirk +Don +Edwin +Allen +Mitchell +Clifton +Derek +Derrick +Jack +Louis +Mike +Milton +Stuart +Franklin +Jay +Roy +Terrence +Antonio +Dean +Gordon +Leon +Vernon +Bryan +Danny +Jesse +Jon +Kelvin +Leslie +Marc +Marvin +Roland +Chris +Fred +Herbert +Perry +Clyde +Guy +Lee +Lloyd +Sean +Laurence +Alexander +Bradley +Byron +Clinton +Dana +Gene +Geoffrey +Glen +Johnny +Ray +Wesley +Claude +Dwight +Randolph +Robin +Eddie +Edmund +Everett +Freddie +Harvey +Lewis +Nathan +Rickey +Rudolph +Alphonso +Bobby +Daryl +Duane +Floyd +Jeremiah +Joe +Leo +Sylvester +Terence +Aaron +Arnold +Carroll +Cornelius +Darnell +Garry +Ivan +Jim +Jimmy +Marcus +Marshall +Neil +Nicholas +Randall +Rick +Cecil +Chester +Dwayne +Gilbert +Grant +Hugh +Johnnie +Julius +Kyle +Sam +Shawn +Todd +Tom +Tommy +Wendell +Andy +Bill +Cedric +Cornell +Dexter +Donnie +Fredrick +Jeff +Jose +Lester +Mario +Neal +Oliver +Oscar +Otis +Roderick +Roscoe +Tim +Zachary +Billy +Carlos +Clayton +Dan +Dane +Denis +Garland +Gerard +Herman +Kent +Kerry +Lonnie +Lorenzo +Lynn +Malcolm +Myron +Nelson +Preston +Terrance +Adrian +Alex +Allan +Alonzo +Angelo +Duncan +Edgar +Ellsworth +Horace +Jefferson +Kim +Kurt +Lance +Morris +Owen +Rickie +Sherman +Van +Wilbur +Brad +Cleveland +Conrad +Greg +Homer +Hubert +Ira +Joey +Jordan +Joshua +Julian +Kelly +Linwood +Lowell +Luther +Sheldon +Stewart +Tracy +Vance +Virgil +Michael +John +James +David +Robert +William +Richard +Mark +Thomas +Charles +Joseph +Anthony +Kevin +Gregory +Paul +Ronald +Kenneth +Steven +Timothy +Stephen +Donald +Daniel +Jeffrey +Christopher +Gary +George +Larry +Edward +Brian +Peter +Eric +Keith +Dennis +Patrick +Wayne +Douglas +Lawrence +Bruce +Raymond +Andrew +Tyrone +Scott +Gerald +Matthew +Philip +Frank +Andre +Reginald +Walter +Rodney +Carl +Ricky +Russell +Melvin +Terry +Steve +Stanley +Bernard +Arthur +Harold +Jonathan +Alan +Eugene +Jerry +Harry +Mike +Phillip +Samuel +Craig +Jeffery +Barry +Warren +Howard +Martin +Willie +Jay +Jerome +Henry +Vincent +Louis +Curtis +Maurice +Dale +Francis +Leonard +Micheal +Ralph +Roger +Darrell +Frederick +Ronnie +Tony +Allen +Roy +Chris +Derrick +Clarence +Danny +Glenn +Theodore +Victor +Calvin +Herbert +Jeff +Earl +Ernest +Marvin +Ricardo +Norman +Albert +Antonio +Bobby +Dwayne +Alvin +Darryl +Duane +Benjamin +Bryan +Jack +Vernon +Daryl +Fred +Leroy +Rickey +Marc +Ray +Alfred +Bill +Jon +Karl +Randy +Darnell +Derek +Dwight +Nicholas +Randall +Aaron +Dean +Geoffrey +Johnny +Lee +Leon +Milton +Nathaniel +Carlos +Carlton +Don +Edwin +Franklin +Jim +Mitchell +Joe +Lloyd +Stuart +Tom +Billy +Clifton +Garry +Juan +Kirk +Leslie +Lewis +Nathan +Neil +Bradley +Tim +Allan +Clifford +Clyde +Glen +Hugh +Joel +Kurt +Sylvester +Alexander +Byron +Cornelius +Guy +Jesse +Kelvin +Perry +Randolph +Roland +Terrence +Eddie +Gene +Gordon +Harvey +Marshall +Sean +Wendell +Alonzo +Brett +Clinton +Dan +Marcus +Wallace +Dewayne +Donnell +Gerard +Ivan +Lonnie +Oliver +Shawn +Terence +Tommy +Wesley +Alton +Angelo +Brent +Bret +Herman +Julius +Lance +Leo +Morris +Rick +Rudolph +Sherman +Terrance +Adrian +Bob +Cornell +Dave +Floyd +Greg +Jimmie +Laurence +Lionel +Manuel +Preston +Rickie +Roderick +Carroll +Cecil +Clayton +Dana +Edgar +Ellis +Horace +Hubert +Jimmy +Johnnie +Jose +Ken +Lamont +Myron +Neal +Otis +Robin +Ross +Sheldon +Wade +Zachary +Adam +Cary +Chester +Darren +Elbert +Everett +Frankie +Gilbert +Kent +Kerry +Kim +Linwood +Malcolm +Mario +Nelson +Orlando +Oscar +Ron +Todd +Tracy +Alex +Alfonso +Antoine +Arnold +Barton +Brad +Charlie +Christian +Clay +Donnie +Edmund +Elliott +Erik +Forrest +Harrison +Isaac +Jamie +Jason +Julian +Kermit +Lynn +Norris +Rene +Sidney +Sterling +Stewart +Troy +Vance +Wilbur +Michael +John +James +David +Robert +William +Mark +Thomas +Richard +Charles +Joseph +Anthony +Kevin +Kenneth +Steven +Paul +Timothy +Gregory +Ronald +Donald +Stephen +Christopher +George +Edward +Jeffrey +Brian +Gary +Daniel +Eric +Larry +Keith +Patrick +Bruce +Lawrence +Reginald +Peter +Douglas +Raymond +Tyrone +Dennis +Scott +Andrew +Frank +Philip +Craig +Matthew +Wayne +Alan +Carl +Andre +Walter +Rodney +Steve +Maurice +Mike +Terry +Barry +Glenn +Russell +Vincent +Darryl +Bernard +Darrell +Eugene +Ricky +Willie +Harold +Samuel +Curtis +Jerome +Martin +Gerald +Phillip +Louis +Albert +Allen +Arthur +Melvin +Ralph +Calvin +Dale +Frederick +Stanley +Victor +Howard +Jonathan +Jerry +Ernest +Henry +Jeffery +Harry +Jay +Benjamin +Leonard +Warren +Ricardo +Ronnie +Alfred +Chris +Earl +Roger +Bobby +Derrick +Duane +Marvin +Norman +Francis +Theodore +Micheal +Jeff +Roy +Jack +Kelvin +Tony +Clarence +Dwayne +Gordon +Jimmy +Antonio +Marc +Nathaniel +Randall +Randy +Aaron +Carlton +Karl +Sean +Tim +Derek +Fred +Kirk +Mitchell +Alvin +Everett +Leon +Shawn +Todd +Allan +Bill +Eddie +Jesse +Joe +Johnny +Leroy +Neal +Roland +Tom +Vernon +Franklin +Greg +Herbert +Jim +Ray +Wendell +Bryan +Jon +Lee +Stuart +Clifford +Danny +Daryl +Geoffrey +Bradley +Dana +Floyd +Nicholas +Alexander +Bob +Edwin +Guy +Joel +Lewis +Milton +Rickey +Clyde +Glen +Jose +Kurt +Linwood +Lloyd +Randolph +Clifton +Dwight +Herman +Julius +Leslie +Lorenzo +Nathan +Terrence +Byron +Dan +Darren +Juan +Kenny +Marshall +Neil +Perry +Roderick +Wesley +Alonzo +Arnold +Billy +Carlos +Cedric +Dean +Johnnie +Otis +Angelo +Ben +Carroll +Darnell +Don +Donnell +Gene +Laurence +Lester +Preston +Terence +Tracy +Andy +Brett +Christian +Edgar +Garry +Harvey +Ira +Kent +Leo +Marcus +Quintin +Reggie +Ross +Sam +Adrian +Alphonso +Gilbert +Jackie +Ken +Lynn +Marlon +Orlando +Pat +Pierre +Rick +Rory +Rudolph +Sherman +Sidney +Sterling +Terrance +Tommy +Virgil +Zachary +Antoine +Bart +Brad +Bradford +Bryant +Charlie +Chester +Cornell +Damon +Dominic +Doug +Edmund +Emanuel +Gerard +Hubert +Ivan +Kerry +Kyle +Malcolm +Marion +Morris +Myron +Rickie +Robin +Wallace +Wilbert +Wilbur +Alex +Amos +Andra +Archie +Barron +Bennie +Brent +Cary +Cecil +Chuck +Clark +Clinton +Conrad +Cornelius +Dave +Dexter +Dino +Duncan +Galen +Horace +Isaac +Jerald +Joshua +Julian +Lemuel +Lonnie +Luther +Marty +Matt +Miguel +Noel +Norris +Randal +Renaldo +Rex +Roosevelt +Seth +Stephan +Sylvester +Van +Willard +Michael +John +David +James +Robert +William +Mark +Thomas +Richard +Kevin +Anthony +Charles +Joseph +Kenneth +Paul +Timothy +Steven +Christopher +Gregory +Jeffrey +Stephen +Ronald +Donald +Daniel +George +Brian +Eric +Gary +Edward +Andrew +Keith +Peter +Darryl +Patrick +Douglas +Larry +Bruce +Scott +Raymond +Wayne +Dennis +Frank +Craig +Lawrence +Matthew +Tyrone +Alan +Carl +Walter +Andre +Reginald +Vincent +Roger +Samuel +Terry +Mike +Russell +Rodney +Arthur +Albert +Gerald +Willie +Henry +Jonathan +Ricky +Theodore +Philip +Steve +Francis +Tony +Curtis +Victor +Martin +Harry +Jerry +Dwayne +Glenn +Phillip +Ronnie +Chris +Allen +Bernard +Ralph +Johnny +Eugene +Howard +Jeffery +Norman +Ernest +Harold +Jerome +Jon +Barry +Calvin +Frederick +Jay +Derrick +Greg +Louis +Maurice +Sean +Earl +Melvin +Leon +Leonard +Stanley +Antonio +Randy +Dale +Darrell +Marc +Nathaniel +Bill +Alvin +Bryan +Clarence +Fred +Ray +Ricardo +Alfred +Carlton +Franklin +Herbert +Kelvin +Leroy +Micheal +Bobby +Darren +Nicholas +Roy +Stuart +Warren +Bradley +Don +Duane +Marcus +Randall +Aaron +Carlos +Darnell +Geoffrey +Jack +Jeff +Nathan +Clifton +Johnnie +Mitchell +Tom +Danny +Derek +Joel +Lee +Benjamin +Billy +Daryl +Joe +Karl +Roland +Vernon +Lloyd +Marvin +Terrence +Donnell +Glen +Lewis +Terence +Alexander +Dean +Eddie +Garry +Milton +Rickey +Tracy +Troy +Angelo +Byron +Clifford +Edwin +Herman +Leslie +Roderick +Tim +Todd +Wilbert +Allan +Arnold +Brett +Everett +Floyd +Gordon +Kim +Perry +Wendell +Wesley +Adam +Alonzo +Christian +Clinton +Clyde +Hugh +Jim +Jimmy +Kerry +Kirk +Randolph +Shawn +Cary +Jesse +Jose +Kent +Lester +Preston +Sidney +Sterling +Ted +Adrian +Alex +Antoine +Claude +Gene +Gilbert +Guy +Kenny +Leo +Lorenzo +Shelton +Van +Alphonso +Chuck +Dwight +Gerard +Irving +Julius +Kurt +Kyle +Malcolm +Rick +Rufus +Stewart +Sylvester +Tommy +Wallace +Bob +Chester +Clayton +Dan +Dana +Garland +Kelly +Lance +Lionel +Nick +Pierre +Quintin +Roberto +Terrance +Aubrey +Brent +Carroll +Cecil +Cedric +Dave +Donnie +Erik +Gregg +Harvey +Horace +Jimmie +Juan +Julian +Laurence +Lonnie +Luis +Marshall +Miles +Myron +Neal +Nelson +Otis +Robin +Ross +Sherman +Alfonso +Andy +Austin +Bennie +Brad +Bradford +Brandon +Bryant +Cornelius +Cornell +Earnest +Ed +Eliot +Elliott +Frankie +Freddie +Fredrick +Gabriel +Hal +Ira +Ivan +Jamie +Jeffry +Jerald +Joey +Jorge +Lamont +Lindsay +Lowell +Manuel +Mario +Morris +Oscar +Pat +Pete +Ron +Roosevelt +Rudy +Sam +Seth +Spencer +Wade +Zachary +Michael +John +James +David +Robert +William +Mark +Kevin +Charles +Anthony +Thomas +Joseph +Richard +Christopher +Kenneth +Steven +Paul +Jeffrey +Gregory +Stephen +Timothy +Ronald +Daniel +Edward +Brian +Donald +Gary +George +Keith +Douglas +Eric +Andrew +Darryl +Patrick +Scott +Larry +Peter +Raymond +Wayne +Bruce +Andre +Tyrone +Carl +Frank +Lawrence +Matthew +Vincent +Philip +Dennis +Alan +Reginald +Jonathan +Dwayne +Walter +Steve +Melvin +Jerome +Derrick +Craig +Curtis +Maurice +Mike +Phillip +Roger +Calvin +Terry +Glenn +Francis +Jeffery +Samuel +Chris +Rodney +Darrell +Victor +Ralph +Russell +Tony +Bernard +Dale +Frederick +Eugene +Martin +Gerald +Jay +Jerry +Albert +Marvin +Allen +Henry +Ricky +Willie +Barry +Clarence +Antonio +Arthur +Danny +Theodore +Troy +Louis +Harold +Howard +Earl +Jon +Karl +Leonard +Ronnie +Stanley +Aaron +Greg +Harry +Micheal +Bryan +Carlton +Darren +Dean +Ernest +Fred +Kelvin +Leroy +Nathaniel +Norman +Randy +Marc +Todd +Tracy +Benjamin +Ricardo +Roy +Alfred +Derek +Kirk +Rickey +Warren +Alvin +Eddie +Jeff +Sean +Stuart +Byron +Edwin +Jim +Joe +Nicholas +Darnell +Don +Geoffrey +Leon +Tom +Vernon +Franklin +Roderick +Wendell +Adam +Clifford +Clifton +Jack +Joel +Donnell +Johnny +Marcus +Tim +Adrian +Alexander +Alonzo +Billy +Daryl +Perry +Terrence +Bill +Carlos +Duane +Gordon +Guy +Jimmy +Juan +Lewis +Lloyd +Nathan +Neil +Wesley +Bradley +Clayton +Dwight +Everett +Herman +Hugh +Jose +Randall +Randolph +Ray +Herbert +Lester +Milton +Ross +Shawn +Tommy +Antoine +Cedric +Dana +Kelly +Mitchell +Roland +Stewart +Zachary +Alphonso +Dan +Gilbert +Gregg +Jesse +Jimmie +Julius +Kim +Lee +Leslie +Arnold +Christian +Glen +Joshua +Kerry +Laurence +Leo +Mario +Sidney +Andy +Ben +Brad +Cameron +Clark +Clinton +Clyde +Freddie +Garry +Kenny +Kent +Neal +Nelson +Owen +Thurman +Alton +Angelo +Bobby +Bradford +Brett +Carroll +Chuck +Claude +Cornelius +Dexter +Dion +Harvey +Ian +Ivan +Justin +Kurt +Lamont +Malcolm +Oliver +Pernell +Sherman +Wade +Alex +Allan +Bob +Charlie +Chester +Darius +Edgar +Edmund +Erich +Evan +Floyd +Jason +Johnnie +Lance +Lorenzo +Lynn +Marty +Oscar +Preston +Roosevelt +Roscoe +Rufus +Sylvester +Terence +Wallace +Wilbert +Willard +Austin +Cecil +Cleveland +Conrad +Cornell +Doug +Elmer +Erik +Garland +Gene +Gerard +Ira +Jacob +Joey +Julio +Leander +Lionel +Luther +Manuel +Mason +Matt +Morris +Moses +Myron +Orlando +Pat +Pierre +Renard +Reuben +Rick +Seth +Sheldon +Stefan +Stephan +Terrance +Timmy +Tod +Van +Vaughn +Wilson +Michael +John +David +James +Robert +William +Mark +Kevin +Thomas +Charles +Anthony +Joseph +Richard +Kenneth +Gregory +Jeffrey +Steven +Christopher +Paul +Timothy +Brian +Ronald +Stephen +Eric +Daniel +Donald +Edward +George +Gary +Keith +Scott +Andrew +Patrick +Bruce +Andre +Raymond +Lawrence +Larry +Vincent +Darryl +Frank +Peter +Wayne +Douglas +Reginald +Dennis +Matthew +Jonathan +Carl +Walter +Glenn +Alan +Tyrone +Craig +Tony +Russell +Gerald +Maurice +Jerome +Rodney +Jeffery +Steve +Terry +Martin +Mike +Phillip +Derrick +Marc +Barry +Roger +Eugene +Ricky +Victor +Melvin +Philip +Dwayne +Antonio +Calvin +Harold +Todd +Arthur +Samuel +Theodore +Troy +Bernard +Curtis +Frederick +Kelvin +Aaron +Chris +Ernest +Ralph +Willie +Bryan +Albert +Derek +Henry +Ricardo +Ronnie +Tracy +Earl +Greg +Harry +Jack +Jerry +Vernon +Howard +Jeff +Randy +Stuart +Allen +Carlton +Clarence +Darrell +Jay +Leon +Leonard +Marvin +Francis +Jon +Micheal +Norman +Sean +Franklin +Karl +Shawn +Alonzo +Kirk +Louis +Nathaniel +Warren +Dale +Darnell +Nathan +Roy +Stanley +Fred +Glen +Joe +Nicholas +Carlos +Danny +Herbert +Lewis +Adam +Dean +Kurt +Randall +Clifton +Dwight +Edwin +Jesse +Johnny +Roland +Alvin +Ivan +Lee +Leroy +Lloyd +Roderick +Terrence +Tom +Arnold +Benjamin +Billy +Bobby +Byron +Eddie +Herman +Kyle +Wendell +Dana +Darren +Neil +Wade +Adrian +Alexander +Brett +Randolph +Ray +Sterling +Tim +Wesley +Bradley +Daryl +Donnell +Duane +Gordon +Guy +Harvey +Joel +Kelly +Terence +Alfred +Carroll +Clifford +Clinton +Erik +Everett +Floyd +Gerard +Jose +Ken +Luis +Milton +Wallace +Alex +Angelo +Clayton +Clyde +Don +Edgar +Gilbert +Jimmy +Lamont +Lance +Marcus +Mitchell +Myron +Nelson +Rickey +Ted +Bill +Charlie +Johnnie +Leo +Mario +Perry +Sherman +Tommy +Ben +Colin +Cornell +Freddie +Geoffrey +Gregg +Hugh +Laurence +Lester +Luther +Morris +Orlando +Pierre +Raynard +Robin +Sidney +Zachary +Antoine +Bryant +Cedric +Claude +Dan +Earnest +Elliott +Ian +Jim +Jimmie +Leslie +Linwood +Lonnie +Lorenzo +Marlon +Rick +Virgil +Wilbert +Alphonso +Bob +Brent +Cecil +Chester +Cornelius +Donnie +Fredrick +Garry +Gene +Grant +Irving +Jason +Joey +Juan +Julius +Kendall +Kent +Kim +Lionel +Marshall +Ramon +Roosevelt +Sam +Scottie +Stephon +Sylvester +Willis +Allan +Blaine +Bradford +Christian +Dino +Dion +Dominic +Donell +Doug +Edmund +Emanuel +Ira +Jacob +Jamie +Jerald +Leander +Malcolm +Manuel +Miguel +Neal +Otis +Owen +Quentin +Rafael +Reggie +Rudolph +Rufus +Stewart +Terrance +Willard +John +Michael +James +David +Robert +William +Mark +Kevin +Charles +Richard +Anthony +Joseph +Thomas +Christopher +Paul +Timothy +Kenneth +Gregory +Steven +Eric +Daniel +Jeffrey +Ronald +Brian +Stephen +Keith +Edward +George +Gary +Patrick +Donald +Scott +Andrew +Peter +Darryl +Douglas +Lawrence +Frank +Andre +Reginald +Wayne +Raymond +Jonathan +Bruce +Tyrone +Matthew +Vincent +Carl +Curtis +Larry +Derrick +Maurice +Craig +Darrell +Dennis +Dwayne +Samuel +Jeffery +Walter +Rodney +Russell +Barry +Frederick +Martin +Troy +Tony +Eugene +Glenn +Jerry +Philip +Stanley +Antonio +Alan +Bryan +Henry +Phillip +Todd +Leonard +Steve +Terry +Albert +Allen +Jerome +Melvin +Nathaniel +Sean +Arthur +Gerald +Howard +Marvin +Clarence +Ricky +Carlton +Francis +Marc +Victor +Ernest +Louis +Micheal +Harold +Tracy +Harry +Roger +Benjamin +Karl +Leroy +Willie +Adam +Calvin +Carlos +Earl +Kelvin +Ralph +Shawn +Warren +Bernard +Chris +Mike +Randall +Ricardo +Roland +Theodore +Aaron +Jeff +Bobby +Derek +Herbert +Jay +Randy +Jon +Juan +Alexander +Danny +Don +Nathan +Vernon +Byron +Clifton +Jim +Jimmy +Leon +Norman +Ray +Ronnie +Greg +Jack +Jesse +Joe +Kirk +Lorenzo +Alfred +Dale +Daryl +Dean +Geoffrey +Nicholas +Clifford +Eddie +Gordon +Alvin +Roderick +Terence +Donnell +Lewis +Milton +Wendell +Adrian +Alonzo +Billy +Brett +Darnell +Dwight +Franklin +Fred +Johnny +Lee +Leo +Randolph +Tom +Tommy +Bill +Gene +Joel +Lloyd +Stuart +Alton +Duane +Everett +Floyd +Ivan +Kent +Mitchell +Roy +Terrence +Allan +Christian +Gilbert +Ken +Kerry +Kurt +Marlon +Ross +Tim +Bradley +Clinton +Dan +Darren +Edwin +Erik +Irving +Joey +Kelly +Leslie +Neal +Ted +Wade +Angelo +Arnold +Brent +Chester +Claude +Colin +Dion +Evan +Isaac +Lionel +Lonnie +Luis +Marcus +Neil +Perry +Roosevelt +Wallace +Wesley +Alphonso +Archie +Cedric +Clark +Clayton +Dave +Dewayne +Garrett +Glen +Hugh +Lester +Luther +Orlando +Preston +Rudolph +Terrance +Willard +Alex +Brendan +Dexter +Edmund +Emmanuel +Gregg +Harvey +Jason +Jose +Joshua +Julian +Kenny +Mario +Marshall +Miles +Quinton +Sam +Sterling +Blaine +Bryant +Cary +Charlie +Chuck +Clyde +Cornell +Damon +Darwin +Elliott +Garland +Jacques +Malcolm +Matt +Oliver +Robbie +Robin +Ron +Seth +Shelton +Spencer +Stephan +Stevie +Antoine +Bennie +Carter +Cecil +Darrel +Dominic +Drew +Edgar +Eduardo +Ellis +Emanuel +Frankie +Fredrick +Herman +Irvin +Jacob +Julius +Kimberly +Kyle +Laurence +Marty +Miguel +Monte +Morris +Myron +Nelson +Nick +Otis +Pernell +Pete +Rafael +Ramon +Rick +Stewart +Sylvester +Travis +Van +Vince +Virgil +Wilbert +Zachary +John +Michael +James +David +Robert +William +Kevin +Mark +Thomas +Anthony +Charles +Joseph +Richard +Kenneth +Paul +Steven +Timothy +Christopher +Brian +Jeffrey +Daniel +Gregory +Stephen +Eric +Patrick +Ronald +Edward +Donald +Andrew +Keith +Darryl +George +Scott +Gary +Douglas +Matthew +Peter +Reginald +Lawrence +Raymond +Bruce +Andre +Rodney +Antonio +Frank +Craig +Vincent +Jonathan +Gerald +Larry +Wayne +Tyrone +Derrick +Tony +Walter +Carl +Maurice +Samuel +Dennis +Troy +Melvin +Sean +Bernard +Philip +Roger +Russell +Dwayne +Todd +Barry +Chris +Phillip +Victor +Calvin +Terry +Alan +Terrence +Henry +Bryan +Harold +Marc +Ralph +Arthur +Jeffery +Clarence +Eugene +Jerome +Martin +Ernest +Frederick +Jerry +Marvin +Shawn +Adam +Joe +Mike +Randy +Curtis +Louis +Willie +Aaron +Albert +Howard +Jon +Juan +Theodore +Benjamin +Glenn +Nathaniel +Warren +Alfred +Carlton +Stanley +Allen +Darrell +Micheal +Darnell +Donnell +Earl +Jay +Kirk +Norman +Ricardo +Ricky +Ronnie +Steve +Danny +Derek +Don +Johnny +Francis +Joel +Kelvin +Alexander +Bradley +Herbert +Kurt +Leon +Tracy +Leonard +Lorenzo +Roland +Byron +Duane +Carlos +Clifton +Erik +Harry +Ian +Jack +Leroy +Randolph +Roy +Bobby +Fred +Guy +Marcus +Vernon +Dale +Everett +Jason +Jim +Jose +Nicholas +Daryl +Edwin +Jeff +Karl +Milton +Nathan +Neal +Stuart +Terrance +Dean +Jesse +Lee +Randall +Adrian +Alonzo +Darren +Eddie +Franklin +Greg +Harvey +Jimmy +Lance +Neil +Tom +Wesley +Arnold +Colin +Dana +Gordon +Hugh +Lamont +Lewis +Mario +Orlando +Ray +Rickey +Terence +Wendell +Allan +Bill +Clifford +Floyd +Ivan +Leslie +Otis +Ron +Tim +Billy +Brett +Charlie +Glen +Kenny +Kerry +Kyle +Lloyd +Rick +Seth +Sylvester +Angelo +Brendan +Clark +Dewayne +Dexter +Geoffrey +Gerard +Jamie +Jimmie +Joshua +Kent +Leo +Lonnie +Marshall +Quintin +Sidney +Willard +Alex +Alvin +Christian +Clayton +Clinton +Dan +Darrin +Doug +Dwight +Gene +Johnnie +Jorge +Julian +Julius +Laurence +Lionel +Luis +Malcolm +Mitchell +Nelson +Pernell +Preston +Roderick +Sterling +Tommy +Wade +Blake +Bryant +Damon +Darin +Freddie +Fredrick +Gilbert +Gregg +Kelly +Luther +Marco +Oliver +Perry +Rex +Ross +Rudolph +Sherman +Timmy +Wilbert +Zachary +Antoine +Aubrey +Brent +Chuck +Claude +Clyde +Cornell +Damian +Desmond +Edgar +Emmanuel +Francisco +Garrett +Horace +Jacob +Keenan +Kim +Loren +Mckinley +Nick +Oscar +Quentin +Rory +Shaun +Stephan +Michael +John +James +David +Robert +William +Kevin +Anthony +Mark +Charles +Christopher +Thomas +Richard +Joseph +Eric +Kenneth +Steven +Timothy +Jeffrey +Paul +Gregory +Brian +Daniel +Stephen +Ronald +Keith +Edward +Patrick +Donald +George +Andrew +Darryl +Gary +Rodney +Douglas +Andre +Matthew +Scott +Reginald +Jonathan +Lawrence +Tyrone +Darrell +Derrick +Peter +Vincent +Wayne +Raymond +Sean +Carl +Larry +Samuel +Frank +Bruce +Todd +Craig +Dennis +Philip +Phillip +Aaron +Jerome +Melvin +Tony +Maurice +Warren +Willie +Erik +Eugene +Gerald +Marc +Earl +Harry +Marvin +Bryan +Harold +Terry +Walter +Alan +Antonio +Curtis +Darren +Darrin +Derek +Glenn +Howard +Nathaniel +Russell +Albert +Bernard +Dwayne +Frederick +Arthur +Jeffery +Victor +Allen +Louis +Ralph +Alexander +Bobby +Henry +Jerry +Adam +Benjamin +Clarence +Troy +Calvin +Chris +Ernest +Leroy +Ricardo +Theodore +Daryl +Roger +Leonard +Martin +Nicholas +Shawn +Steve +Alvin +Fred +Marcus +Norman +Ricky +Roy +Barry +Dale +Darin +Jay +Joel +Karl +Kelvin +Kirk +Alfred +Jason +Micheal +Randy +Terrence +Darnell +Eddie +Francis +Joe +Leon +Mike +Carlos +Carlton +Clifton +Roland +Stanley +Vernon +Byron +Jack +Jeff +Juan +Kurt +Tracy +Bradley +Danny +Dean +Duane +Franklin +Geoffrey +Herbert +Jesse +Ronnie +Wendell +Johnny +Nathan +Randall +Terence +Tim +Alex +Cedric +Clifford +Ian +Lewis +Milton +Otis +Randolph +Roderick +Bryant +Dexter +Donnell +Glen +Greg +Jon +Jose +Lloyd +Neil +Wesley +Arnold +Brett +Cary +Cecil +Edwin +Guy +Lee +Luis +Ross +Wallace +Zachary +Dana +Dewayne +Gordon +Johnnie +Lorenzo +Malcolm +Marshall +Ramon +Rickey +Terrance +Adrian +Alonzo +Dan +Dominic +Dwight +Gilbert +Herman +Jim +Leslie +Lonnie +Lyndon +Mitchell +Neal +Nick +Pierre +Stuart +Ted +Wilbert +Allan +Alton +Bill +Brendan +Carroll +Cornell +Darrick +Frankie +Ivan +Jimmy +Kent +Lamont +Linwood +Mario +Morris +Sidney +Sylvester +Tom +Avery +Billy +Chad +Cornelius +Darius +Edgar +Floyd +Harvey +Julian +Justin +Kelly +Laurence +Lionel +Marlon +Miguel +Oliver +Rick +Ron +Scot +Tommy +Wilbur +Alphonso +Andy +Antoine +Archie +Benny +Brad +Brent +Bret +Charlie +Christian +Colin +Darris +Dave +Demetrius +Derwin +Dion +Don +Donnie +Eduardo +Everett +Freddie +Garry +Grant +Hugh +Isaac +Joshua +Julius +Lance +Lester +Lowell +Manuel +Mathew +Nelson +Pernell +Preston +Quintin +Randal +Ray +Rodrick +Roosevelt +Rudolph +Sheldon +Thaddeus +Thurman +Vance +Virgil +Wade +Michael +John +James +David +Robert +William +Anthony +Christopher +Mark +Kevin +Thomas +Charles +Eric +Joseph +Steven +Kenneth +Richard +Brian +Timothy +Paul +Jeffrey +Daniel +Stephen +Gregory +Keith +Ronald +Edward +Andrew +Donald +Scott +Patrick +Sean +Matthew +Gary +George +Rodney +Lawrence +Peter +Jonathan +Vincent +Darryl +Douglas +Andre +Reginald +Raymond +Bruce +Derrick +Darrell +Frank +Maurice +Carl +Craig +Tyrone +Dwayne +Samuel +Antonio +Dennis +Erik +Tony +Wayne +Benjamin +Walter +Larry +Todd +Alan +Jerome +Shawn +Gerald +Roger +Troy +Bryan +Curtis +Marc +Phillip +Philip +Warren +Darrin +Willie +Carlos +Carlton +Darren +Derek +Frederick +Allen +Arthur +Ernest +Harold +Harry +Jeffery +Martin +Ricardo +Terry +Aaron +Eugene +Kelvin +Micheal +Barry +Daryl +Howard +Melvin +Russell +Steve +Theodore +Albert +Bernard +Calvin +Glenn +Henry +Leon +Clarence +Leonard +Norman +Ralph +Juan +Louis +Adam +Bobby +Marvin +Francis +Jason +Leroy +Marcus +Nathaniel +Nicholas +Earl +Jay +Wesley +Alfred +Alvin +Donnell +Geoffrey +Lloyd +Victor +Alexander +Byron +Clifton +Danny +Jon +Kirk +Ricky +Roy +Stanley +Chris +Dean +Herbert +Jerry +Jose +Lewis +Karl +Mike +Randy +Tracy +Brett +Dale +Eddie +Kurt +Lee +Randolph +Roderick +Ronnie +Vernon +Adrian +Don +Jeff +Johnny +Preston +Stuart +Terrence +Brendan +Clifford +Darin +Edwin +Joe +Joel +Leo +Lorenzo +Randall +Alonzo +Christian +Duane +Ian +Jesse +Kelly +Milton +Mitchell +Morris +Allan +Alphonso +Billy +Bradley +Darnell +Deon +Dewayne +Floyd +Franklin +Fred +Gordon +Jack +Jimmy +Luis +Ryan +Shaun +Terrance +Claude +Dexter +Dwight +Lamont +Neal +Roland +Terence +Chad +Guy +Nathan +Spencer +Wade +Brent +Dan +Drew +Garry +Glen +Greg +Herman +Joshua +Lance +Laurence +Marcellus +Oscar +Perry +Rickey +Shannon +Sterling +Alex +Bryant +Cedric +Chauncey +Clinton +Colin +Demetrius +Elijah +Gene +Isaac +Johnnie +Kent +Kyle +Marco +Matt +Ray +Rudolph +Shane +Sidney +Ted +Tim +Tommy +Travis +Willard +Zachary +Alec +Angelo +Arnold +Austin +Bennie +Bill +Brad +Cornell +Darrel +Derick +Dion +Donell +Eduardo +Elliott +Francisco +Freddie +Fredrick +Gilbert +Gregg +Jeremiah +Jimmie +Jordan +Jorge +Julian +Julius +Justin +Keenan +Kirby +Leslie +Lionel +Marshall +Mason +Otis +Sam +Seth +Stefan +Stephan +Wendell +Michael +John +David +James +Robert +William +Christopher +Kevin +Anthony +Thomas +Mark +Joseph +Richard +Charles +Kenneth +Steven +Jeffrey +Eric +Timothy +Brian +Stephen +Gregory +Matthew +Paul +Daniel +Keith +Ronald +George +Andrew +Andre +Sean +Edward +Scott +Donald +Patrick +Rodney +Douglas +Gary +Reginald +Raymond +Lawrence +Peter +Jonathan +Aaron +Darrell +Vincent +Derrick +Todd +Bryan +Tyrone +Darryl +Wayne +Troy +Frank +Marc +Craig +Tony +Jerome +Erik +Larry +Samuel +Bruce +Alan +Dwayne +Derek +Gerald +Jerry +Philip +Phillip +Shawn +Curtis +Dennis +Maurice +Antonio +Henry +Walter +Arthur +Carl +Darren +Frederick +Terry +Victor +Albert +Bernard +Eugene +Allen +Benjamin +Ernest +Harold +Leonard +Theodore +Jason +Jeffery +Willie +Marvin +Tracy +Calvin +Melvin +Stanley +Warren +Adam +Barry +Nathaniel +Carlos +Donnell +Louis +Roger +Jon +Russell +Chris +Clarence +Marcus +Ricky +Terence +Earl +Glenn +Harry +Howard +Kelvin +Leon +Alvin +Herbert +Johnny +Martin +Micheal +Clifton +Darnell +Francis +Jack +Juan +Norman +Randy +Bobby +Darrin +Duane +Lee +Mike +Nicholas +Ralph +Steve +Terrence +Adrian +Byron +Carlton +Damon +Lewis +Nathan +Ricardo +Alfred +Christian +Clifford +Dean +Franklin +Guy +Joel +Karl +Kirk +Ronnie +Wendell +Dale +Demetrius +Eddie +Ian +Jay +Jose +Kurt +Randall +Roderick +Vernon +Alonzo +Danny +Daryl +Jimmy +Kelly +Leroy +Lorenzo +Alexander +Brendan +Don +Glen +Gordon +Jeff +Joshua +Lloyd +Preston +Roy +Terrance +Jesse +Roland +Stuart +Wesley +Antoine +Arnold +Billy +Bradley +Bryant +Chad +Dana +Darron +Edwin +Geoffrey +Ivan +Jeremy +Kim +Kyle +Lamont +Mario +Milton +Mitchell +Shaun +Stacy +Trevor +Alex +Alphonso +Brett +Claude +Clinton +Colin +Darin +Derwin +Edgar +Fred +Freddie +Hans +Harvey +Kent +Luis +Manuel +Neil +Quentin +Randolph +Seth +Sidney +Tommy +Bennie +Brandon +Brent +Cecil +Clayton +Evan +Everett +Gene +Ira +Jorge +Kendall +Leslie +Malcolm +Marco +Neal +Ross +Sherman +Tim +Wade +Xavier +Allan +Angelo +Dion +Garrett +Jessie +Justin +Laurence +Marlon +Ray +Roberto +Rudolph +Ryan +Sylvester +Bill +Cary +Conrad +Deon +Derick +Devin +Dewayne +Dirk +Ethan +Francisco +Gabriel +Garland +Garry +Gilbert +Greg +Herman +Jaime +Johnnie +Jordan +Julio +Kenny +Kerry +Lance +Lars +Luther +Marcel +Omar +Otis +Perry +Raul +Rickey +Ron +Spencer +Tom +Trent +Vance +Vaughn +Wallace +Willard +Zachary +Michael +John +David +James +Robert +Christopher +Anthony +William +Mark +Kevin +Richard +Joseph +Charles +Thomas +Timothy +Jeffrey +Eric +Brian +Steven +Kenneth +Paul +Sean +Stephen +Gregory +Edward +Matthew +Andrew +Scott +Daniel +Ronald +George +Keith +Donald +Patrick +Andre +Reginald +Douglas +Jonathan +Peter +Gary +Rodney +Derrick +Raymond +Tyrone +Craig +Todd +Lawrence +Darryl +Aaron +Samuel +Vincent +Martin +Shawn +Larry +Maurice +Troy +Wayne +Benjamin +Dwayne +Dennis +Marc +Walter +Darrell +Gerald +Curtis +Derek +Antonio +Bernard +Jason +Bruce +Darren +Bryan +Marcus +Willie +Carl +Tony +Arthur +Carlos +Frank +Jerome +Melvin +Adam +Leonard +Alan +Jay +Russell +Warren +Albert +Alexander +Henry +Jeffery +Jerry +Philip +Terrence +Eugene +Frederick +Howard +Louis +Nicholas +Harold +Leon +Nathaniel +Ricardo +Stanley +Calvin +Christian +Clifton +Ernest +Victor +Allen +Geoffrey +Glenn +Carlton +Erik +Francis +Terry +Clarence +Donnell +Kirk +Ralph +Roger +Adrian +Clifford +Darnell +Daryl +Jon +Karl +Marvin +Phillip +Theodore +Barry +Corey +Harry +Randy +Vernon +Bradley +Edwin +Glen +Jack +Johnny +Lorenzo +Bobby +Clinton +Darrin +Joel +Jose +Kelvin +Leroy +Norman +Alfred +Brett +Byron +Lee +Chris +Dean +Herbert +Ian +Lamont +Micheal +Nathan +Ray +Wesley +Damon +Earl +Fred +Guy +Ivan +Jeremy +Joe +Juan +Ricky +Cedric +Danny +Duane +Jesse +Kelly +Lewis +Lloyd +Milton +Don +Eddie +Johnnie +Joshua +Neil +Perry +Ronnie +Rudolph +Terence +Terrance +Tracy +Alonzo +Billy +Brent +Dale +Darin +Demetrius +Jimmy +Joey +Justin +Kyle +Randall +Shannon +Sterling +Steve +Wendell +Bryant +Erick +Gregg +Julian +Kurt +Preston +Randolph +Roy +Ryan +Sidney +Antoine +Anton +Brandon +Claude +Clayton +Colin +Cornell +Damian +Deon +Devin +Dewayne +Dion +Evan +Everett +Floyd +Franklin +Greg +Herman +Jamie +Jeff +Kent +Lester +Lionel +Lonnie +Marco +Mario +Shaun +Tommy +Vance +Wilbert +Alex +Alton +Alvin +Brendan +Charlie +Clyde +Darius +Dexter +Dominic +Dwight +Emmanuel +Ervin +Freddie +Gordon +Horace +Jared +Johnathan +Kim +Luis +Malcolm +Nelson +Roderick +Roland +Seth +Stacy +Sylvester +Trevor +Alec +Allan +Angelo +Cary +Chester +Dana +Edgar +Emanuel +Gene +Hubert +Hugh +Irving +Jacques +Jimmie +Jorge +Lance +Marshall +Miguel +Oliver +Otis +Roberto +Ross +Tim +Zachary +Michael +James +David +John +Robert +Christopher +William +Anthony +Eric +Mark +Kevin +Joseph +Charles +Brian +Thomas +Gregory +Richard +Jeffrey +Matthew +Kenneth +Timothy +Steven +Andrew +Paul +Daniel +Stephen +Sean +Scott +Edward +Keith +Ronald +Patrick +Donald +George +Andre +Jason +Jonathan +Reginald +Derrick +Peter +Douglas +Gary +Rodney +Lawrence +Marc +Tyrone +Vincent +Antonio +Raymond +Corey +Frank +Maurice +Todd +Troy +Alexander +Gerald +Craig +Darryl +Marcus +Jerome +Aaron +Carl +Shawn +Bryan +Dwayne +Derek +Bruce +Carlos +Bernard +Darren +Larry +Wayne +Darrell +Dennis +Arthur +Samuel +Benjamin +Erik +Phillip +Walter +Jon +Melvin +Curtis +Frederick +Alan +Leonard +Daryl +Eugene +Joshua +Adam +Ernest +Martin +Philip +Warren +Donnell +Earl +Howard +Victor +Ricardo +Theodore +Tony +Leon +Marvin +Nicholas +Roger +Russell +Terry +Calvin +Darnell +Jay +Jerry +Justin +Louis +Terrence +Willie +Harold +Nathaniel +Albert +Clarence +Damon +Juan +Adrian +Allen +Henry +Lance +Ralph +Byron +Glenn +Jeffery +Jose +Karl +Kelvin +Micheal +Roderick +Shaun +Alvin +Bobby +Christian +Dean +Dwight +Geoffrey +Jimmy +Chris +Jeremy +Norman +Ronnie +Vernon +Alfred +Bradley +Carlton +Darrin +Duane +Harry +Herbert +Jesse +Lamont +Brent +Brett +Danny +Ian +Kirk +Nathan +Roy +Barry +Don +Evan +Ivan +Johnny +Leroy +Miguel +Mitchell +Neil +Ricky +Roland +Stuart +Terrance +Antoine +Demetrius +Edwin +Erick +Franklin +Steve +Brendan +Cedric +Francis +Fred +Kurt +Lester +Seth +Stanley +Wesley +Alonzo +Bryant +Clifford +Clifton +Cornell +Dion +Dirk +Eddie +Glen +Gordon +Guy +Joel +Lee +Leslie +Lewis +Lorenzo +Milton +Oliver +Preston +Shane +Spencer +Tim +Tracy +Alex +Allan +Alphonso +Cornelius +Darin +Darius +Irving +Jeff +Joe +Kelly +Malcolm +Marshall +Otis +Randy +Wendell +Brandon +Chad +Cory +Dale +Derwin +Dewayne +Dexter +Dominic +Gene +Hans +Herman +Horace +Isaac +Jacob +Jamie +Johnnie +Jorge +Kim +Lloyd +Lonnie +Luis +Max +Nelson +Noel +Orlando +Oscar +Stacy +Vaughn +Angelo +Anton +Arnold +Billy +Darrick +Deon +Edgar +Edmund +Emmanuel +Ethan +Everett +Jacques +Jared +Laurence +Pablo +Quentin +Ramon +Roberto +Ron +Rudolph +Ryan +Shannon +Stephan +Sylvester +Ted +Thurman +Wallace +Winston +Bradford +Cecil +Chester +Clinton +Clyde +Damien +Daron +Errol +Ervin +Freddie +Gerry +Gilbert +Greg +Harvey +Jarrett +Julian +Kerry +Kyle +Leo +Lionel +Luke +Manuel +Marcellus +Mario +Marquette +Morris +Myron +Omar +Randall +Rickey +Rob +Terence +Tommy +Wade +Wilbert +Michael +James +David +John +Robert +Christopher +William +Kevin +Anthony +Eric +Charles +Mark +Thomas +Richard +Joseph +Jeffrey +Brian +Paul +Kenneth +Sean +Steven +Daniel +Gregory +Timothy +Matthew +Jason +Stephen +Andrew +Scott +Andre +Ronald +Edward +Keith +Donald +Jonathan +Patrick +Derrick +Marcus +Douglas +George +Peter +Reginald +Todd +Maurice +Shawn +Rodney +Lawrence +Tyrone +Antonio +Craig +Marc +Frank +Gary +Vincent +Aaron +Adam +Darrell +Carlos +Alexander +Eugene +Troy +Wayne +Carl +Raymond +Corey +Benjamin +Samuel +Bryan +Gerald +Larry +Dennis +Curtis +Leonard +Walter +Derek +Earl +Arthur +Henry +Melvin +Darren +Dwayne +Erik +Jerome +Joshua +Nathan +Nathaniel +Tony +Willie +Darryl +Daryl +Bruce +Theodore +Victor +Albert +Bernard +Frederick +Nicholas +Glenn +Jay +Damon +Ernest +Howard +Jeremy +Donnell +Harold +Jon +Ricardo +Roger +Travis +Calvin +Martin +Norman +Alan +Geoffrey +Philip +Warren +Alvin +Harry +Karl +Adrian +Chris +Clarence +Jeffery +Leon +Marvin +Terry +Vernon +Alfred +Jose +Juan +Justin +Leroy +Lorenzo +Russell +Antoine +Byron +Christian +Jesse +Kyle +Lance +Louis +Phillip +Roy +Terrence +Carlton +Francis +Joel +Allen +Brendan +Duane +Ian +Stanley +Clifton +Darnell +Dion +Franklin +Kelvin +Ralph +Roland +Wesley +Zachary +Bradley +Brent +Dale +Dwight +Ivan +Kirk +Lamont +Malcolm +Micheal +Perry +Barry +Colin +Ricky +Roderick +Bobby +Bryant +Eddie +Everett +Gordon +Jerry +Johnny +Kelly +Lee +Mitchell +Ronnie +Seth +Steve +Terrance +Brett +Cedric +Chad +Danny +Dean +Edgar +Edwin +Jack +Jacob +Jamie +Marlon +Brandon +Clinton +Cornell +Darrick +Evan +Jimmy +Joe +Kurt +Lonnie +Manuel +Milton +Shaun +Wade +Alex +Billy +Don +Greg +Leslie +Lester +Lewis +Lionel +Luis +Marcellus +Marco +Quentin +Randolph +Shane +Tracy +Wendell +Alonzo +Clyde +Dewayne +Gene +Gilbert +Herman +Jeff +Marshall +Vaughn +Clayton +Dana +Darius +Darrin +Demetrius +Erick +Floyd +Francisco +Fred +Herbert +Lloyd +Mario +Mathew +Morris +Neil +Noah +Oscar +Randall +Randy +Ray +Ryan +Sterling +Stuart +Ted +Alphonso +Charlie +Clifford +Damion +Darin +Devin +Elijah +Gabriel +Guy +Harvey +Jamal +Johnnie +Jorge +Kent +Kerry +Neal +Otis +Pierre +Preston +Ron +Rudolph +Sidney +Spencer +Willard +Arnold +Cecil +Chester +Dan +Dexter +Donovan +Douglass +Elliott +Emanuel +Erwin +Fernando +Freddie +Garland +Glen +Jefferson +Jonas +Julius +Lamar +Marcel +Miguel +Myron +Omar +Pernell +Rickey +Roberto +Santiago +Shannon +Sherman +Simon +Stacey +Stephan +Sylvester +Wilson +Michael +James +John +David +Christopher +Robert +William +Kevin +Anthony +Eric +Joseph +Brian +Charles +Mark +Richard +Matthew +Thomas +Sean +Gregory +Jeffrey +Andrew +Kenneth +Steven +Timothy +Jason +Scott +Daniel +Paul +Keith +Patrick +Ronald +Stephen +George +Edward +Jonathan +Andre +Donald +Antonio +Aaron +Marcus +Reginald +Adam +Peter +Derrick +Shawn +Larry +Lawrence +Marc +Douglas +Gary +Maurice +Raymond +Troy +Vincent +Benjamin +Derek +Craig +Dennis +Erik +Todd +Tyrone +Jerome +Darrell +Joshua +Tony +Frank +Rodney +Dwayne +Bernard +Frederick +Bryan +Jerry +Carlos +Curtis +Jeremy +Nathaniel +Carl +Louis +Arthur +Juan +Russell +Ryan +Calvin +Alexander +Christian +Harold +Terrence +Clarence +Corey +Gerald +Lamont +Philip +Phillip +Wayne +Eugene +Melvin +Nicholas +Theodore +Willie +Darryl +Leon +Walter +Marvin +Warren +Damon +Darnell +Daryl +Henry +Ian +Joel +Micheal +Samuel +Stanley +Bruce +Ernest +Leroy +Roger +Terry +Alfred +Allen +Franklin +Victor +Albert +Antoine +Donnell +Martin +Nathan +Norman +Bradley +Harry +Jesse +Justin +Ralph +Ricardo +Vernon +Darren +Geoffrey +Jermaine +Ronnie +Bobby +Brett +Byron +Dean +Duane +Francis +Howard +Adrian +Alex +Barry +Brandon +Carlton +Chad +Chris +Glenn +Gordon +Ivan +Jamie +Leonard +Roy +Shane +Travis +Billy +Brent +Earl +Herbert +Jeffery +Johnny +Jose +Kyle +Lonnie +Luis +Roberto +Shaun +Alonzo +Alvin +Angelo +Brendan +Demetrius +Don +Edwin +Jay +Jon +Lewis +Milton +Randall +Roderick +Roland +Seth +Alan +Colin +Cory +Dana +Deon +Karl +Kirk +Lance +Malcolm +Mario +Ricky +Terence +Wendell +Ari +Bryant +Clinton +Damian +Danny +Eddie +Joe +Kelvin +Lorenzo +Marlon +Rafael +Ramon +Ray +Wesley +Austin +Cedric +Clifford +Cornell +Dale +Dewayne +Dion +Dwight +Erick +Evan +Gabriel +Gene +Herman +Jack +Jacob +Johnnie +Lee +Marcel +Morris +Sylvester +Tommy +Arnold +Cesar +Claude +Fernando +Gerard +Jimmy +Julian +Kurt +Lester +Marion +Oliver +Ross +Terrance +Bradford +Cecil +Charlie +Chester +Clifton +Cordell +Darius +Emanuel +Ethan +Garland +Greg +Gregg +Guy +Harvey +Ira +Isaac +Jamal +Jared +Kent +Kerry +Leo +Leslie +Lloyd +Marcellus +Marshall +Myron +Omar +Otis +Percy +Randolph +Rudolph +Stacey +Stacy +Sterling +Steve +Stuart +Trevor +Antione +Aubrey +Clayton +Courtney +Damion +Dan +Dexter +Dominic +Dustin +Edmund +Ellis +Frankie +Fred +Jonah +Julio +Julius +Kwame +Kwasi +Lamar +Levi +Miguel +Monte +Neal +Nelson +Raphael +Shannon +Spencer +Stevie +Thaddeus +Toby +Wallace +Winston +Michael +James +John +Christopher +David +Robert +Brian +William +Eric +Kevin +Anthony +Matthew +Joseph +Charles +Mark +Daniel +Thomas +Jason +Richard +Gregory +Jeffrey +Sean +Stephen +Steven +Timothy +Keith +Kenneth +Andrew +Jonathan +Paul +George +Scott +Ronald +Andre +Donald +Patrick +Aaron +Antonio +Edward +Marcus +Jermaine +Joshua +Maurice +Peter +Derrick +Reginald +Shawn +Douglas +Benjamin +Justin +Larry +Raymond +Todd +Erik +Tyrone +Lawrence +Gary +Adam +Bryan +Marc +Rodney +Carlos +Duane +Curtis +Alexander +Christian +Craig +Dwayne +Carl +Derek +Lamont +Ryan +Dennis +Samuel +Damon +Nathaniel +Troy +Donnell +Jerome +Vincent +Frank +Walter +Eugene +Harold +Darrell +Marvin +Ian +Nicholas +Victor +Calvin +Wayne +Louis +Micheal +Roger +Willie +Antoine +Jeremy +Martin +Philip +Albert +Ricardo +Bobby +Clarence +Daryl +Jerry +Johnny +Russell +Alex +Arthur +Corey +Darryl +Joel +Melvin +Nathan +Travis +Brett +Ernest +Glenn +Henry +Ivan +Jay +Phillip +Allen +Frederick +Geoffrey +Herbert +Jesse +Terrence +Adrian +Brandon +Bruce +Gerald +Jon +Karl +Lee +Roy +Tony +Warren +Barry +Darnell +Darren +Kelvin +Ralph +Stanley +Bernard +Chad +Dean +Franklin +Harry +Jacob +Juan +Marco +Omar +Randall +Shaun +Terry +Alvin +Dwight +Earl +Howard +Jack +Jeffery +Kirk +Leon +Ronnie +Bryant +Carlton +Cornelius +Dewayne +Malcolm +Milton +Seth +Sidney +Brent +Chris +Claude +Clifton +Danny +Demetrius +Demond +Eddie +Jared +Joe +Johnnie +Jose +Leonard +Leroy +Luis +Mitchell +Oliver +Oscar +Randolph +Randy +Terrance +Theodore +Alfred +Alonzo +Alphonso +Casey +Dale +Damian +Dante +Evan +Gabriel +Garrett +Khari +Lance +Lewis +Marlon +Norman +Quincy +Ricky +Terence +Tracy +Vernon +Alan +Antione +Bradford +Bradley +Darius +Darrick +Dion +Edwin +Isaac +Jamie +Kareem +Lamar +Lorenzo +Marcellus +Micah +Orlando +Preston +Shane +Shelton +Stacy +Steve +Sylvester +Clyde +Cory +Deon +Desmond +Devin +Donovan +Fred +Jamal +Julian +Julius +Kelly +Lester +Lloyd +Marshall +Miguel +Otis +Owen +Ramon +Roland +Wesley +Zachary +Ahmed +Anton +Antwon +Aubrey +Billy +Brendan +Byron +Cedric +Clayton +Clifford +Clinton +Cornell +Damien +Damion +Dana +Darian +Edgar +Elijah +Erick +Everett +Fernando +Francis +Freddie +Garland +Gilbert +Irving +Jeff +Johnathan +Kwame +Leslie +Linwood +Malik +Max +Neil +Roderick +Romeo +Roosevelt +Rudolph +Sebastian +Stewart +Taurus +Thaddeus +Tracey +Trevor +Wade +Xavier +Michael +David +Christopher +John +James +Robert +William +Brian +Eric +Kevin +Anthony +Joseph +Matthew +Jason +Daniel +Charles +Richard +Thomas +Mark +Gregory +Sean +Andrew +Jonathan +Timothy +Jeffrey +Kenneth +Steven +Stephen +Ronald +Paul +Keith +Edward +Scott +George +Andre +Patrick +Derrick +Marcus +Joshua +Aaron +Peter +Shawn +Jermaine +Reginald +Benjamin +Tyrone +Donald +Justin +Marc +Bryan +Craig +Adam +Antonio +Lawrence +Carlos +Frank +Larry +Maurice +Ryan +Todd +Derek +Raymond +Rodney +Christian +Jerome +Damon +Gary +Melvin +Alexander +Duane +Lamont +Samuel +Gerald +Troy +Vincent +Carl +Terrence +Willie +Curtis +Douglas +Nathaniel +Antoine +Chad +Micheal +Dennis +Nathan +Marlon +Russell +Wayne +Bruce +Nicholas +Walter +Allen +Arthur +Corey +Erik +Theodore +Tony +Adrian +Eugene +Jesse +Marvin +Philip +Clarence +Darrell +Henry +Jeremy +Kyle +Stanley +Terry +Bradley +Brandon +Calvin +Danny +Ian +Isaac +Bernard +Carlton +Donnell +Geoffrey +Jay +Victor +Warren +Brendan +Darryl +Daryl +Harold +Leonard +Mario +Omar +Roger +Ronnie +Terrance +Demetrius +Earl +Franklin +Herbert +Jeffery +Jose +Martin +Travis +Johnny +Phillip +Albert +Cornelius +Gabriel +Glenn +Jamal +Jerry +Joel +Kareem +Louis +Ricardo +Alan +Alfred +Bobby +Brett +Claude +Demond +Dwayne +Ernest +Frederick +Harry +Kelvin +Lee +Lloyd +Myron +Ramon +Roy +Tracy +Vernon +Alex +Damian +Darnell +Darren +Dion +Dominic +Eddie +Edwin +Howard +Jimmy +Joe +Jon +Karl +Lewis +Lorenzo +Malcolm +Norman +Randy +Roderick +Seth +Wesley +Alonzo +Alvin +Barry +Brent +Damien +Dean +Fred +Jimmie +Juan +Kirk +Milton +Oscar +Steve +Sylvester +Zachary +Ben +Clifton +Dale +Dante +Dewayne +Ethan +Gordon +Jacques +Jared +Johnathan +Johnnie +Jorge +Kelly +Leo +Leroy +Luis +Marco +Morris +Ralph +Abdul +Antwan +Byron +Cameron +Cornell +Delante +Don +Dwight +Erick +Francis +Jack +Jaime +Jamie +Julius +Kent +Kristian +Kristopher +Lance +Leon +Orlando +Otis +Randolph +Sidney +Simon +Spencer +Alphonso +Antione +Arnold +Bennie +Bryant +Clinton +Colin +Cory +Dana +Darius +Darrick +Donovan +Edgar +Edmund +Elgin +Emanuel +Glen +Jeff +Jordan +Julian +Kermit +Kerry +Kurt +Lester +Lionel +Lonnie +Marcel +Morgan +Neil +Noah +Oliver +Ray +Ricky +Roland +Ron +Roosevelt +Sheldon +Sterling +Thaddeus +Trevor +Vaughn +Michael +David +James +Christopher +John +Robert +William +Jason +Matthew +Brian +Kevin +Daniel +Anthony +Eric +Joseph +Charles +Mark +Richard +Andrew +Thomas +Gregory +Sean +Steven +Paul +Jeffrey +Kenneth +Stephen +Jonathan +Edward +Timothy +Aaron +Joshua +Derrick +Andre +Scott +Reginald +Ronald +Ryan +Keith +Antonio +Patrick +Shawn +Tyrone +Damon +Adam +Samuel +Alexander +Donald +George +Justin +Larry +Bryan +Raymond +Benjamin +Derek +Peter +Duane +Carlos +Jerome +Troy +Marcus +Douglas +Jeremy +Philip +Jermaine +Dwayne +Gary +Maurice +Nathan +Nathaniel +Corey +Nicholas +Vincent +Dennis +Todd +Curtis +Lawrence +Micheal +Bernard +Frank +Marc +Arthur +Craig +Russell +Antoine +Brandon +Calvin +Eugene +Leonard +Wayne +Willie +Darrell +Lamont +Phillip +Carl +Christian +Frederick +Juan +Marvin +Ricardo +Roger +Warren +Chad +Damien +Leon +Rodney +Theodore +Alan +Bradley +Earl +Ernest +Harold +Melvin +Terry +Walter +Clifton +Jamie +Jerry +Albert +Clarence +Darryl +Erik +Gerald +Henry +Jesse +Johnny +Marlon +Terrence +Barry +Carlton +Geoffrey +Jeffery +Travis +Wesley +Bobby +Brendan +Darren +Daryl +Dion +Donnell +Francis +Gabriel +Ian +Jacob +Joel +Leroy +Martin +Shane +Vernon +Victor +Adrian +Brett +Byron +Darnell +Harry +Jose +Louis +Nakia +Randy +Alfred +Alvin +Chris +Herbert +Howard +Jay +Kelvin +Kyle +Lewis +Lorenzo +Oliver +Stanley +Tony +Brent +Clayton +Damian +Devon +Jamal +Lee +Malcolm +Mario +Milton +Neil +Terrance +Zachary +Antwan +Claude +Clifford +Colin +Cornelius +Damion +Dana +Evan +Glenn +Julian +Marco +Marquette +Oscar +Ralph +Ramon +Randall +Rico +Roderick +Shannon +Steve +Bruce +Bryant +Cory +Darius +Demetrius +Devin +Floyd +Franklin +Fredrick +Isaac +Jack +Jorge +Kareem +Karl +Lloyd +Ricky +Roy +Stuart +Tarik +Trevor +Alonzo +Cornell +Darin +Demond +Dominic +Dontae +Ethan +Jamil +Julius +Kirk +Lamar +Luis +Myron +Noah +Preston +Randolph +Ronnie +Terence +Tommy +Ahmed +Allen +Alphonso +Angel +Angelo +Antione +Billy +Clinton +Dale +Dean +Eddie +Eduardo +Ellis +Emmanuel +Grant +Herman +Ivan +Jaime +Jared +Jeremiah +Joe +Johnnie +Jon +Manuel +Marquis +Micah +Miguel +Mitchell +Norman +Omar +Ron +Seth +Sherman +Sylvester +Vaughn +Xavier +Michael +James +David +Robert +Christopher +Brian +John +William +Jason +Matthew +Anthony +Eric +Kevin +Daniel +Charles +Joseph +Thomas +Gregory +Mark +Jeffrey +Andrew +Timothy +Richard +Jonathan +Paul +Stephen +Kenneth +Ryan +Steven +Ronald +Sean +Edward +Scott +Andre +Joshua +Keith +Benjamin +George +Patrick +Aaron +Shawn +Adam +Antonio +Derrick +Donald +Larry +Damon +Jeremy +Raymond +Marcus +Samuel +Justin +Reginald +Jermaine +Peter +Tyrone +Duane +Carlos +Maurice +Troy +Corey +Walter +Gary +Nathaniel +Marc +Vincent +Adrian +Nicholas +Phillip +Todd +Bryan +Frank +Philip +Rodney +Alexander +Antoine +Brandon +Douglas +Jesse +Lamont +Derek +Lawrence +Melvin +Tony +Calvin +Darnell +Erik +Willie +Darryl +Dwayne +Jerome +Nathan +Ricardo +Alan +Bradley +Micheal +Terrence +Bernard +Curtis +Eugene +Wayne +Craig +Damian +Henry +Ian +Marvin +Albert +Alvin +Bobby +Chad +Darrell +Ernest +Harold +Howard +Kelvin +Leon +Terry +Brett +Carl +Christian +Stanley +Terrance +Victor +Warren +Clifton +Dennis +Francis +Frederick +Gerald +Jamal +Kareem +Seth +Vernon +Allen +Colin +Darren +Demetrius +Earl +Geoffrey +Joel +Jon +Lee +Leonard +Marlon +Bryant +Byron +Clarence +Daryl +Devon +Donnell +Jacob +Johnny +Juan +Travis +Alfred +Antwan +Clayton +Damien +Damion +Gilbert +Glenn +Ivan +Jose +Karl +Louis +Ralph +Tarik +Theodore +Clyde +Dion +Harry +Jack +Jay +Lewis +Luis +Marcellus +Mario +Norman +Russell +Spencer +Terrell +Delonte +Dewayne +Dwight +Franklin +Isaac +Jerry +Julius +Kyle +Lorenzo +Martin +Neil +Randy +Ricky +Ronnie +Roy +Terence +Zachary +Alex +Alonzo +Arthur +Bruce +Carlton +Claude +Deon +Eddie +Gabriel +Jared +Jeffery +Leroy +Neal +Ramon +Ron +Shane +Trevor +Alphonso +Antione +Anwar +Barry +Billy +Clifford +Dante +Diron +Dominic +Donte +Edwin +Evan +Herbert +Jaime +Jamie +Leo +Miguel +Mitchell +Oliver +Omar +Otis +Preston +Randolph +Rico +Roderick +Shannon +Cameron +Clinton +Cornelius +Dale +Danny +Darian +Darin +Darius +Darrick +Delante +Don +Dorian +Elijah +Francisco +Freddie +Gavin +Gene +Gerard +Jeremiah +Jimmie +Johnnie +Jordan +Jorge +Khalid +Kirk +Kito +Kurt +Malcolm +Malik +Marquette +Milton +Pedro +Ray +Reggie +Roger +Stefan +Tremayne +Virgil +Winston +Michael +David +James +Christopher +John +Jason +Brian +Robert +William +Matthew +Kevin +Anthony +Joseph +Daniel +Eric +Timothy +Sean +Charles +Jonathan +Andrew +Steven +Richard +Stephen +Thomas +Aaron +Gregory +Benjamin +Joshua +Kenneth +Mark +Marcus +Keith +Paul +Edward +Scott +Andre +Damon +Ronald +Derrick +Jeffrey +Antonio +Justin +Peter +Donald +Patrick +Adam +Jeremy +Ryan +Shawn +Antoine +Samuel +Alexander +Nathan +Gary +Reginald +George +Jerome +Jermaine +Brandon +Raymond +Larry +Maurice +Lawrence +Dwayne +Carlos +Christian +Douglas +Nicholas +Tyrone +Derek +Duane +Jesse +Russell +Vincent +Ian +Todd +Rodney +Terry +Craig +Nathaniel +Ricardo +Bryan +Calvin +Corey +Eugene +Marvin +Philip +Troy +Bernard +Walter +Willie +Marc +Terrence +Victor +Wayne +Clarence +Dennis +Frank +Gerald +Jose +Lamont +Melvin +Adrian +Arthur +Curtis +Omar +Theodore +Travis +Brendan +Darrell +Harry +Damien +Darnell +Geoffrey +Jamal +Joel +Micheal +Phillip +Albert +Alex +Clifton +Ernest +Kyle +Louis +Marlon +Roy +Shannon +Zachary +Bruce +Carl +Damian +Isaac +Jacob +Norman +Ricky +Roger +Warren +Wesley +Bobby +Brent +Chad +Donte +Earl +Erik +Howard +Jerry +Jimmy +Julian +Lance +Leon +Leonard +Ralph +Roland +Ronnie +Allen +Brett +Dante +Darren +Darryl +Harold +Jon +Juan +Karl +Mario +Martin +Rashad +Seth +Terrell +Tony +Alvin +Byron +Dion +Donnell +Frederick +Jay +Lee +Vernon +Billy +Brad +Casey +Demetrius +Francisco +Jamaal +Jared +Jeremiah +Johnny +Kelvin +Lloyd +Luis +Shane +Stanley +Steve +Abdul +Antwan +Bradley +Bryant +Clifford +Cory +Dale +Darrick +Delonta +Demond +Devin +Dewayne +Dominic +Edwin +Ethan +Evan +Francis +Gabriel +Glenn +Graham +Henry +Jamie +Jorge +Kelly +Kenny +Kirk +Lorenzo +Miguel +Milton +Randolph +Randy +Raphael +Stephan +Terrance +Alonzo +Damion +Daryl +Donnie +Elijah +Erick +Floyd +Johnnie +Kareem +Lamar +Leroy +Malcolm +Micah +Pedro +Ramon +Rico +Stuart +Tarik +Tommy +Trevor +Alan +Alfred +Ali +Cedric +Chris +Clinton +Colin +Dana +Danny +Darius +Delante +Deon +Deshawn +Devon +Edgar +Eduardo +Elliott +Ivan +Jean +Jeffery +Joe +Julio +Kristopher +Leo +Lewis +Lonnie +Mitchell +Naim +Neal +Nelson +Oliver +Oscar +Otis +Perry +Randall +Roderick +Simon +Terence +Thaddeus +Tyler +Michael +James +David +John +Christopher +Jason +Robert +Brian +William +Joseph +Kevin +Daniel +Matthew +Eric +Anthony +Andrew +Charles +Thomas +Timothy +Mark +Jonathan +Gregory +Richard +Sean +Steven +Ryan +Benjamin +Ronald +Joshua +Paul +Antonio +Kenneth +Patrick +Stephen +Justin +Jeffrey +Edward +Aaron +Marcus +George +Derrick +Andre +Keith +Maurice +Alexander +Damon +Adam +Donald +Jeremy +Peter +Bryan +Larry +Reginald +Scott +Tyrone +Shawn +Lawrence +Jermaine +Nathan +Brandon +Gary +Todd +Corey +Eugene +Melvin +Samuel +Vincent +Wesley +Carlos +Duane +Marc +Phillip +Raymond +Willie +Adrian +Christian +Jerome +Jesse +Micheal +Russell +Carl +Craig +Ian +Jerry +Marco +Nathaniel +Nicholas +Bradley +Dwayne +Jacob +Omar +Rodney +Victor +Brendan +Dennis +Donnell +Douglas +Erik +Frank +Henry +Arthur +Calvin +Curtis +Demetrius +Howard +Juan +Louis +Ricardo +Troy +Alan +Damian +Damien +Darren +Derek +Gerald +Joel +Rashad +Seth +Theodore +Allen +Antoine +Deon +Ernest +Harold +Jose +Lamont +Philip +Shaun +Terrance +Terrence +Walter +Albert +Bernard +Bryant +Dominic +Earl +Lamar +Marvin +Stanley +Terry +Zachary +Clarence +Clifton +Francis +Frederick +Jon +Leon +Leonard +Roger +Terrell +Travis +Wayne +Damion +Darnell +Darryl +Eddie +Glenn +Jamal +Kelvin +Malcolm +Martin +Randy +Warren +Alex +Bobby +Byron +Carlton +Chad +Cornelius +Darrell +Devon +Edwin +Geoffrey +Mario +Tony +Bruce +Clinton +Colin +Dewayne +Dion +Donte +Dwight +Evan +Garrett +Kareem +Karl +Lee +Levar +Luis +Micah +Preston +Ricky +Shane +Steve +Trevor +Alvin +Barry +Devin +Emanuel +Franklin +Gabriel +Jamaal +Jimmy +Jorge +Marlon +Norman +Oliver +Roderick +Shannon +Stewart +Cedric +Chris +Clifford +Dale +Darian +Daryl +Dustin +Gordon +Harry +Isaiah +Jack +Jared +Jeffery +Jeremiah +Julian +Leroy +Neil +Randolph +Ray +Roberto +Sheldon +Spencer +Terence +Wendell +Winston +Ahmad +Alonzo +Antione +Bradford +Casey +Cory +Dante +Desmond +Dylan +Elliott +Herbert +Jay +Jovan +Julius +Lavar +Leslie +Lorenzo +Luke +Milton +Moses +Nelson +Oscar +Ralph +Ramon +Reuben +Roland +Ron +Stefan +Tommy +Abraham +Alfred +Amir +Andres +Billy +Brent +Brett +Charlie +Delonte +Don +Dorian +Edmund +Emmanuel +Erick +Ernesto +Everett +Fredrick +Herman +Hugh +Isaac +Johnnie +Johnny +Kirk +Kristopher +Lance +Lewis +Linwood +Lloyd +Manuel +Noah +Pierre +Quentin +Rashawn +Ronnie +Ross +Roy +Simon +Tyree +Michael +James +David +Christopher +John +Robert +Brian +Jason +Kevin +William +Matthew +Joseph +Daniel +Charles +Anthony +Andrew +Eric +Thomas +Gregory +Sean +Richard +Timothy +Jeffrey +Jonathan +Mark +Steven +Aaron +Patrick +Paul +Kenneth +Ryan +Derrick +Joshua +Stephen +Nicholas +Marcus +Benjamin +Justin +Andre +Shawn +Keith +Adam +Ronald +Antonio +Edward +Peter +Scott +Donald +George +Jeremy +Samuel +Maurice +Jerome +Larry +Nathaniel +Alexander +Rodney +Raymond +Tyrone +Willie +Bryan +Carlos +Shaun +Damien +Gary +Antoine +Brandon +Derek +Jamal +Jesse +Phillip +Lawrence +Reginald +Dennis +Jose +Corey +Philip +Damon +Wayne +Adrian +Bruce +Darnell +Erik +Jerry +Troy +Arthur +Carl +Craig +Jared +Ricardo +Terrence +Bernard +Calvin +Curtis +Darryl +Douglas +Eugene +Ian +Jermaine +Lee +Nathan +Walter +Juan +Martin +Marvin +Rashad +Todd +Alan +Brendan +Christian +Devin +Duane +Dwayne +Henry +Leonard +Melvin +Victor +Chad +Frank +Jacob +Joel +Kyle +Lamont +Marc +Russell +Stanley +Gabriel +Jeffery +Allen +Dante +Eddie +Gerald +Terry +Wesley +Darrell +Darren +Francis +Frederick +Howard +Terrance +Zachary +Antwan +Bradley +Clarence +Danny +Donte +Jon +Micheal +Norman +Seth +Theodore +Albert +Bobby +Cory +Delonte +Demetrius +Earl +Ernest +Franklin +Geoffrey +Jay +Julian +Julius +Leon +Omar +Roger +Ronnie +Travis +Vincent +Warren +Alfred +Ali +Alvin +Courtney +Damion +Deon +Dewayne +Dominic +Dwight +Evan +Jamar +Tony +Vernon +Alonzo +Clifton +Donnell +Emmanuel +Ethan +Harold +Harry +Jamel +Leroy +Lewis +Louis +Luke +Malcolm +Micah +Ralph +Ricky +Shane +Terrell +Brent +Bryant +Byron +Carlton +Darius +Edwin +Glenn +Johnny +Malik +Marcellus +Marshall +Miguel +Ray +Roderick +Wade +Angel +Anwar +Austin +Barry +Clark +Clayton +Clinton +Damian +Devon +Dion +Francisco +Freddie +Glen +Jamie +Jelani +Joe +Lance +Lloyd +Luis +Marco +Marlon +Moses +Neil +Nicolas +Oliver +Orlando +Perry +Randy +Shannon +Sidney +Terence +Alex +Ari +Avery +Blair +Brett +Cameron +Clifford +Colin +Dale +Dana +Darian +Darrick +Delonta +Delvin +Diron +Edgar +Emanuel +Erick +Erin +Everett +Herbert +Herman +Hugh +Isaac +Ivan +Jamaal +Jamil +Jeremiah +Johnathan +Johnnie +Jordan +Jorge +Jovan +Kelvin +Kristopher +Leslie +Levi +Lionel +Milton +Otis +Rahman +Randall +Rashaad +Roy +Spencer +Sterling +Stuart +Tarik +Thaddeus +Vance +Michael +Christopher +David +James +John +Jason +Robert +William +Brian +Matthew +Kevin +Anthony +Daniel +Joseph +Charles +Andrew +Eric +Thomas +Timothy +Jonathan +Mark +Steven +Paul +Kenneth +Nicholas +Aaron +Ryan +Edward +Justin +Antonio +Gregory +Joshua +Patrick +Stephen +Ronald +Sean +Richard +Benjamin +Jeffrey +Derrick +Alexander +Marcus +Adam +Keith +Maurice +George +Donald +Andre +Lawrence +Scott +Brandon +Jerome +Reginald +Bryan +Antoine +Jacob +Jesse +Nathaniel +Peter +Larry +Nathan +Shawn +Frank +Phillip +Travis +Jeremy +Jermaine +Samuel +Gary +Melvin +Raymond +Tyrone +Douglas +Philip +Carlos +Corey +Damien +Eugene +Ricardo +Christian +Curtis +Erik +Shaun +Arthur +Bradley +Micheal +Todd +Wayne +Carl +Darnell +Dominic +Donnell +Jose +Terrence +Calvin +Darrell +Demetrius +Derek +Dwayne +Ian +Julius +Leon +Vincent +Walter +Zachary +Brendan +Darryl +Duane +Jamal +Jerry +Joel +Marc +Omar +Troy +Warren +Alex +Allen +Bernard +Franklin +Adrian +Clarence +Cory +Craig +Damion +Damon +Gerald +Harry +Henry +Lamar +Martin +Ricky +Rodney +Albert +Devon +Earl +Evan +Kyle +Lamont +Lee +Russell +Victor +Alvin +Brett +Bruce +Colin +Edwin +Francis +Geoffrey +Harold +Johnny +Louis +Seth +Terrance +Alan +Bobby +Clifton +Donte +Frederick +Leonard +Vernon +Angelo +Damian +Dennis +Ernest +Garrett +Jared +Luke +Roderick +Roy +Theodore +Tony +Wesley +Abdul +Alonzo +Barry +Carlton +Daryl +Dion +Dwight +Emmanuel +Gabriel +Isaac +Jack +Juan +Marvin +Milton +Oliver +Ronnie +Stanley +Terrell +Terry +Brad +Clinton +Darius +Devin +Erick +Fred +Glenn +Howard +Jay +Jon +Marco +Mario +Micah +Norman +Ramon +Randolph +Randy +Rashad +Shannon +Simon +Spencer +Antione +Antwan +Danny +Jesus +Joe +Jordan +Lance +Malik +Manuel +Marlon +Neil +Perry +Quentin +Roger +Willie +Alphonso +Ari +Byron +Dana +Dante +Darren +Delonte +Desmond +Eddie +Emanuel +Ethan +Francisco +Hector +Jamar +Jamie +Jeffery +Jovan +Karl +Kelvin +Lonnie +Lucas +Morgan +Myron +Otis +Quinton +Shane +Stefan +Abraham +Ali +Anwar +Ashley +Billy +Bradford +Brent +Chad +Charlie +Courtney +Delante +Delonta +Dewayne +Dustin +Edgar +Elliott +Gordon +Javier +Jeremiah +Jorge +Kareem +Kirk +Leroy +Lorenzo +Marcellus +Markus +Marquis +Noah +Oscar +Pernell +Randall +Ray +Rickey +Roland +Stuart +Tommy +Tremayne +Trevor +Wendell +Michael +David +James +Christopher +Robert +John +Jason +William +Matthew +Kevin +Daniel +Brian +Andrew +Charles +Anthony +Eric +Jonathan +Joseph +Justin +Gregory +Timothy +Ryan +Thomas +Paul +Steven +Patrick +Joshua +Sean +Mark +Nicholas +Richard +Benjamin +Stephen +Jeffrey +Alexander +Kenneth +Aaron +Adam +Andre +Ronald +Edward +Jermaine +Marcus +Scott +Peter +Derrick +Antonio +Lawrence +Brandon +Derek +Donald +Samuel +Reginald +Keith +Maurice +Larry +Raymond +Erik +Jerome +Gary +George +Shaun +Tyrone +Antoine +Damien +Jeremy +Terrance +Phillip +Darryl +Philip +Walter +Zachary +Dennis +Douglas +Jacob +Melvin +Nathaniel +Ricardo +Calvin +Carl +Carlos +Corey +Shawn +Brendan +Nathan +Troy +Willie +Ian +Jose +Marc +Victor +Bryan +Donnell +Leonard +Curtis +Frank +Leon +Tony +Travis +Adrian +Darrell +Eugene +Jamal +Joel +Terrence +Vincent +Alan +Bradley +Bruce +Delonte +Frederick +Gabriel +Jerry +Kelvin +Luis +Anton +Bobby +Darnell +Edwin +Ernest +Geoffrey +Henry +Jamaal +Kyle +Wayne +Alvin +Bernard +Carlton +Dwayne +Omar +Theodore +Vernon +Christian +Ivan +Juan +Louis +Marvin +Randy +Ronnie +Seth +Todd +Warren +Albert +Craig +Dante +Dion +Dustin +Franklin +Harold +Jeremiah +Leroy +Martin +Roger +Russell +Alex +Allen +Cedric +Clarence +Colin +Darren +Earl +Erick +Gerald +Rashad +Wesley +Alfred +Arthur +Brett +Deon +Devin +Dominic +Donte +Dwight +Evan +Francis +Isaac +Jay +Jesse +Johnathan +Luke +Malik +Marco +Mario +Quentin +Randall +Rodney +Terry +Byron +Chad +Chris +Damon +Darius +Dewayne +Jamar +Jordan +Lamont +Miguel +Rafael +Ramon +Shane +Stanley +Stefan +Alexis +Barry +Brent +Cory +Dominique +Duane +Ethan +Francisco +Jeffery +Jorge +Julius +Karl +Lamar +Lewis +Micheal +Mohammad +Norman +Pierre +Preston +Ralph +Ricky +Shannon +Terence +Tyler +Alonzo +Angelo +Antwan +Ashley +Clyde +Dameon +Damian +Danny +Desmond +Don +Graham +Herbert +Jack +Jaime +Jared +Jessie +Jimmy +Johnnie +Jon +Julian +Kristopher +Lee +Leslie +Lionel +Lloyd +Morgan +Nicolas +Oliver +Oscar +Rickey +Roy +Xavier +Alphonso +Antione +Antwon +Billy +Blake +Casey +Clayton +Cleveland +Clinton +Cornelius +Cornell +Daryl +Deandre +Delano +Delante +Delonta +Demetrius +Emmanuel +Fred +Gerard +Glen +Harvey +Herman +Johnny +Kareem +Malcolm +Marlon +Marques +Marquis +Micah +Mitchell +Nelson +Noel +Randolph +Rashaad +Michael +Christopher +James +David +Matthew +John +William +Jason +Kevin +Robert +Brian +Daniel +Joseph +Jonathan +Andrew +Anthony +Charles +Justin +Thomas +Eric +Richard +Sean +Aaron +Joshua +Brandon +Timothy +Gregory +Mark +Paul +Adam +Kenneth +Alexander +Benjamin +Marcus +Nicholas +Ryan +Edward +Stephen +Patrick +Jeffrey +Steven +Andre +Keith +Peter +Derrick +Ronald +Antonio +George +Jeremy +Samuel +Nathan +Reginald +Jesse +Maurice +Larry +Raymond +Nathaniel +Bryan +Tyrone +Jermaine +Travis +Carlos +Jose +Scott +Phillip +Antoine +Vincent +Darryl +Ricardo +Calvin +Erik +Gary +Omar +Brendan +Derek +Gerald +Ian +Jacob +Victor +Carl +Lawrence +Melvin +Adrian +Christian +Donald +Terrence +Alan +Corey +Curtis +Tony +Damien +Leon +Philip +Bernard +Harold +Jerome +Troy +Evan +Jerry +Lamont +Allen +Colin +Darnell +Dwayne +Frank +Jamar +Marvin +Shaun +Shawn +Zachary +Albert +Arthur +Donnell +Martin +Micheal +Russell +Bobby +Dante +Darren +Demetrius +Ernest +Harry +Howard +Kelvin +Leonard +Leroy +Rashad +Stanley +Terrance +Wayne +Willie +Dennis +Dominic +Donte +Eugene +Henry +Herbert +Jamaal +Johnny +Juan +Marc +Ricky +Seth +Theodore +Todd +Vernon +Wesley +Bruce +Bryant +Byron +Clifton +Dewayne +Geoffrey +Jamal +Jared +Joel +Kyle +Luke +Milton +Pierre +Alex +Alvin +Brent +Carlton +Cory +Darrell +Delonte +Don +Edwin +Kareem +Mario +Miguel +Randy +Rodney +Terry +Warren +Amir +Clifford +Cornelius +Damian +Dion +Dustin +Earl +Frederick +Jeremiah +Julian +Karl +Lamar +Louis +Lucas +Noah +Oscar +Abdul +Andy +Austin +Chad +Dale +Douglas +Duane +Dwight +Elliot +Francis +Gabriel +Jeffery +Jordan +Jorge +Marques +Trevor +Walter +Alfred +Antwan +Bradley +Clayton +Damon +Daryl +Devin +Dominique +Drew +Eddie +Emanuel +Emmanuel +Garrett +Jon +Kendall +Lee +Manuel +Morgan +Oliver +Roberto +Roger +Roland +Ronnie +Terence +Alonzo +Antione +Anwar +Blake +Brooks +Casey +Cornell +Damion +Darius +Davon +Everett +Isaiah +Ivan +Jamie +Jamil +Jovan +Kristopher +Lloyd +Marco +Marlon +Mathew +Max +Quentin +Randolph +Sergio +Shane +Stuart +Terrell +Wendell +Ali +Cedric +Charlie +Clarence +Craig +Cyrus +Deandre +Deangelo +Delante +Deon +Devon +Dominick +Edgar +Eduardo +Ethan +Floyd +Francisco +Gilbert +Glen +Glenn +Jajuan +Jay +Julius +Kurt +Lewis +Lionel +Marcellus +Micah +Neil +Norman +Owen +Preston +Quinton +Rafael +Ramon +Raphael +Ray +Sidney +Stefan +Wade +Michael +Christopher +David +James +John +Robert +William +Matthew +Daniel +Jason +Kevin +Joseph +Andrew +Anthony +Brian +Jonathan +Eric +Justin +Richard +Aaron +Adam +Thomas +Charles +Patrick +Benjamin +Brandon +Gregory +Joshua +Mark +Timothy +Sean +Andre +Marcus +Alexander +Jeffrey +Kenneth +Ryan +Stephen +Steven +Nicholas +Paul +Samuel +Antonio +Peter +Ronald +Edward +Bryan +Donald +George +Scott +Keith +Jerome +Derrick +Jose +Maurice +Gary +Derek +Tyrone +Carlos +Nathan +Nathaniel +Antoine +Larry +Philip +Phillip +Reginald +Ricardo +Jeremy +Adrian +Douglas +Frank +Jamal +Jesse +Rodney +Shawn +Curtis +Jamaal +Theodore +Melvin +Vincent +Brendan +Carl +Christian +Travis +Lawrence +Zachary +Donnell +Henry +Ian +Marc +Raymond +Angelo +Corey +Gerald +Jermaine +Wayne +Wesley +Bradley +Darrell +Erik +Eugene +Jacob +Joel +Juan +Shaun +Terrence +Victor +Calvin +Clarence +Craig +Darren +Edwin +Kyle +Terrance +Walter +Willie +Albert +Arthur +Bernard +Bruce +Darnell +Darryl +Dennis +Evan +Howard +Terry +Brett +Demetrius +Frederick +Gabriel +Harold +Kelvin +Leon +Russell +Tony +Donte +Earl +Todd +Warren +Alan +Alex +Colin +Damien +Darius +Dwayne +Jared +Louis +Luis +Marvin +Micheal +Omar +Troy +Alfred +Carlton +Cory +Damon +Devin +Devon +Dominic +Elliot +Erick +Geoffrey +Johnny +Mario +Allen +Alonzo +Cedric +Clifton +Dante +Deon +Harry +Herbert +Jamar +Jeremiah +Jerry +Julian +Julius +Lee +Marques +Randy +Terrell +Vernon +Ahmad +Daryl +Delonta +Dewayne +Duane +Emmanuel +Ernest +Isaac +Jaime +Jay +Jordan +Karl +Marlon +Miguel +Rafael +Ricky +Roy +Stanley +Wendell +Blake +Clifford +Delonte +Dion +Glenn +Isaiah +Ivan +Johnathan +Jon +Lamont +Leonard +Leroy +Luke +Marshall +Oscar +Pierre +Rashad +Roberto +Roger +Roland +Rory +Seth +Solomon +Alvin +Byron +Charlie +Cornell +Courtney +Dominique +Don +Drew +Dustin +Jeffery +Jimmy +Julio +Kareem +Kristopher +Lorenzo +Malcolm +Malik +Marco +Martin +Milton +Noah +Otis +Pablo +Randall +Ronnie +Taurean +Tyler +Alexis +Antwan +Anwar +Barry +Bobby +Brendon +Bret +Clayton +Clinton +Danny +Dejuan +Delante +Dexter +Eddie +Elliott +Everett +Floyd +Franklin +Garry +Graham +Grant +Jorge +Jovan +Keenan +Lamar +Lance +Lewis +Lonnie +Marquis +Mitchell +Morgan +Olufemi +Owen +Preston +Ralph +Reuben +Sergio +Spencer +Michael +Christopher +David +Matthew +James +John +Robert +William +Jason +Daniel +Brian +Joseph +Anthony +Kevin +Andrew +Jonathan +Charles +Justin +Aaron +Brandon +Marcus +Thomas +Eric +Nicholas +Joshua +Gregory +Steven +Mark +Richard +Kenneth +Patrick +Jeffrey +Stephen +Adam +Benjamin +Antonio +Paul +Andre +Timothy +Edward +Derrick +Sean +Ronald +Ryan +Alexander +Peter +Samuel +Keith +Scott +Tyrone +Donald +Larry +Jacob +Lawrence +Jeremy +Zachary +Antoine +Bryan +George +Nathan +Eugene +Ricardo +Travis +Vincent +Maurice +Nathaniel +Darrell +Jesse +Philip +Phillip +Walter +Gary +Melvin +Douglas +Dwayne +Ian +Raymond +Reginald +Erik +Jermaine +Derek +Jerome +Jose +Russell +Wayne +Brendan +Christian +Terrence +Calvin +Carlos +Curtis +Darryl +Omar +Victor +Alan +Donte +Gerald +Kyle +Marvin +Arthur +Demetrius +Dennis +Donnell +Frederick +Jamal +Marc +Shawn +Ernest +Evan +Gabriel +Alex +Carl +Colin +Dante +Darnell +Dominique +Joel +Jordan +Leon +Martin +Micheal +Adrian +Corey +Dustin +Ronnie +Clarence +Damien +Devin +Frank +Jeremiah +Louis +Theodore +Brent +Carlton +Darren +Dion +Dominic +Edwin +Geoffrey +Jamaal +Lee +Leonard +Lorenzo +Ricky +Roger +Troy +Vernon +Allen +Austin +Bradley +Bruce +Craig +Harry +Henry +Isaac +Jack +Jared +Julian +Julius +Lewis +Spencer +Terrance +Tony +Albert +Alonzo +Brett +Byron +Casey +Franklin +Harold +Jamar +Javier +Jay +Johnnie +Lionel +Rodney +Shaun +Todd +Willie +Cedric +Cory +Deangelo +Ethan +Glenn +Harrison +Howard +Ivan +Jovan +Max +Seth +Trevor +Tristan +Wesley +Bobby +Bryant +Cornelius +Delonte +Deon +Dewayne +Emanuel +Everett +Glen +Jeffery +Johnathan +Johnny +Lamont +Manuel +Noah +Pierre +Raphael +Stanley +Steve +Terry +Wallace +Warren +Alexis +Alfred +Alvin +Chad +Darius +Devon +Don +Earl +Emmanuel +Jamel +Jerry +Jimmy +Juan +Julio +Lamar +Loren +Marques +Miguel +Neil +Quentin +Ralph +Randolph +Randy +Rashad +Akeem +Antione +Blake +Clifford +Clifton +Cortez +Damian +Damon +Daren +Darin +Daryl +Deandre +Delonta +Donta +Duane +Eddie +Eduardo +Eli +Fred +Freddie +Gavin +Grant +Harvey +Jarrett +Jessie +Jon +Jorge +Kelvin +Luis +Marlon +Marquis +Micah +Milton +Morgan +Norman +Ramon +Roland +Roy +Shannon +Stuart +Terence +Tyler +Michael +Christopher +James +David +Matthew +Daniel +John +Robert +William +Anthony +Jonathan +Kevin +Joseph +Brian +Andrew +Brandon +Jason +Marcus +Eric +Joshua +Charles +Justin +Patrick +Thomas +Steven +Adam +Mark +Ryan +Sean +Alexander +Nicholas +Stephen +Gregory +Timothy +Richard +Benjamin +Ronald +Andre +Kenneth +Jeffrey +Aaron +Antonio +Paul +Edward +Samuel +Peter +Keith +Carlos +Donald +Maurice +Antoine +George +Zachary +Ian +Larry +Reginald +Derrick +Tyrone +Bryan +Brendan +Jerome +Nathaniel +Corey +Evan +Lawrence +Scott +Vincent +Nathan +Travis +Raymond +Darrell +Darryl +Jeremy +Terrence +Jermaine +Adrian +Jose +Kyle +Phillip +Ricardo +Dennis +Henry +Leon +Philip +Shawn +Calvin +Douglas +Christian +Devin +Jesse +Omar +Tony +Derek +Dominic +Erik +Frank +Gary +Jamal +Marvin +Walter +Bradley +Devon +Earl +Edwin +Francis +Juan +Vernon +Carl +Colin +Dante +Dwayne +Jacob +Melvin +Troy +Alan +Bruce +Darnell +Ernest +Joel +Micheal +Willie +Curtis +Luis +Mario +Pierre +Victor +Wayne +Alex +Arthur +Craig +Darren +Delonte +Demetrius +Dominick +Donnell +Terry +Warren +Wesley +Byron +Clarence +Emmanuel +Jamar +Julian +Marquis +Shaun +Allen +Brent +Dominique +Donte +Isaac +Jeffery +Johnathan +Julius +Quentin +Terrell +Alphonso +Bobby +Bryant +Carlton +Darius +Ethan +Eugene +Frederick +Gerald +Glenn +Ivan +Johnny +Karl +Lance +Leonard +Lorenzo +Nicolas +Randy +Russell +Stephon +Terrance +Antwan +Bernard +Billy +Blake +Cedric +Chad +Gabriel +Herbert +Jamaal +Jared +Jerry +Lamont +Louis +Marc +Martin +Mitchell +Pedro +Rodney +Roger +Stanley +Theodore +Albert +Antwon +Clifford +Clifton +Damien +Delante +Deon +Deonte +Dexter +Dwight +Elliott +Garrett +Geoffrey +Jarrell +Jon +Jordan +Kareem +Kristopher +Lamar +Lee +Lewis +Ricky +Roderick +Roland +Ross +Taurean +Terence +Trevor +Alvin +Andres +Brett +Chris +Clayton +Conor +Danny +Daryl +Davon +Erick +Franklin +Jack +Jamie +Javier +Jeremiah +Jimmy +Jorge +Lonnie +Luke +Marco +Marshall +Miguel +Rafael +Ragene +Seth +Simon +Spencer +Stuart +Todd +Tyler +Xavier +Alfred +Angelo +Arnold +Brendon +Cory +Deangelo +Delonta +Desmond +Dion +Drew +Dustin +Everett +Fernando +Francesco +Graham +Harold +Hassan +Isaiah +Jaime +Kelvin +Kendall +Lionel +Logan +Malcolm +Marcellus +Marques +Nelson +Noel +Oscar +Preston +Quinton +Randolph +Stewart +Michael +Christopher +James +Matthew +Daniel +David +Robert +John +William +Jonathan +Andrew +Anthony +Kevin +Joseph +Brandon +Brian +Jason +Joshua +Charles +Thomas +Eric +Nicholas +Marcus +Sean +Ryan +Steven +Alexander +Gregory +Justin +Kenneth +Patrick +Richard +Stephen +Antonio +Benjamin +Mark +Paul +Adam +Aaron +Timothy +Andre +Jeffrey +Keith +Peter +Derrick +Edward +Ronald +Carlos +Samuel +Jeremy +Maurice +Zachary +Phillip +Reginald +Tyrone +Scott +George +Nathaniel +Victor +Antoine +Larry +Christian +Gary +Juan +Raymond +Donald +Jacob +Kyle +Lawrence +Edwin +Jose +Bryan +Calvin +Carl +Jamal +Nathan +Ricardo +Derek +Henry +Jesse +Travis +Darryl +Ian +Theodore +Colin +Douglas +Darnell +Jerome +Vincent +Darrell +Demetrius +Devin +Donte +Dwayne +Evan +Marc +Adrian +Curtis +Eugene +Frederick +Kelvin +Philip +Russell +Terrance +Tyler +Wayne +Alex +Bernard +Corey +Craig +Darren +Delonte +Donnell +Joel +Jordan +Luis +Marvin +Omar +Bradley +Dominic +Leon +Terrence +Carlton +Frank +Gerald +Jamar +Julian +Martin +Melvin +Ricky +Rodney +Wesley +Allen +Arthur +Brendan +Dennis +Erik +Gabriel +Pierre +Trevor +Warren +Willie +Damien +Daryl +Davon +Devon +Edgar +Emmanuel +Franklin +Geoffrey +Jared +Johnathan +Lamont +Louis +Oscar +Byron +Casey +Clifton +Darius +Dion +Drew +Earl +Jay +Jeffery +Jermaine +Max +Nelson +Terence +Antwan +Blake +Bruce +Chad +Gordon +Isaac +Ivan +Lorenzo +Micheal +Randy +Ross +Shaun +Shawn +Stephon +Terrell +Terry +Tristan +Troy +Alan +Alvin +Brett +Deandre +Deonte +Harry +Jerry +Jon +Maxwell +Roberto +Roderick +Roland +Ronnie +Tony +Vernon +Walter +Albert +Alexis +Alfred +Andres +Bobby +Caleb +Cedric +Clarence +Clifford +Cory +Deangelo +Erick +Ernest +Jamaal +Jeremiah +Jorge +Manuel +Mario +Randolph +Stanley +Stephan +Sylvester +Alonzo +Austin +Bradford +Bryant +Cameron +Chris +Clayton +Cody +Dante +Deon +Dewayne +Dexter +Dylan +Eddie +Elliott +Felix +Francis +Garrett +Glenn +Jamie +Jarrell +Jayson +Johnny +Kellen +Keon +Lee +Leonard +Leroy +Lloyd +Marlon +Marquis +Preston +Roger +Sherman +Ali +Ashley +Clinton +Cornell +Danny +Delonta +Desmond +Dominique +Domonic +Don +Duane +Durell +Dwight +Eduardo +Everett +Fred +Herbert +Hugh +Jamel +Jesus +Julio +Malik +Marshall +Mathew +Miguel +Mitchell +Mohamed +Noah +Owen +Rafael +Ramon +Rashad +Raul +Seth +Shane +Stefan +Taylor +Todd +Michael +Christopher +David +James +Daniel +Matthew +Andrew +William +Robert +John +Brandon +Anthony +Joseph +Kevin +Alexander +Charles +Jonathan +Joshua +Eric +Brian +Marcus +Jason +Sean +Thomas +Justin +Nicholas +Richard +Stephen +Timothy +Patrick +Benjamin +Kenneth +Ryan +Aaron +Mark +Andre +Gregory +Samuel +Jeremy +Paul +Jeffrey +Steven +Antonio +Edward +Adam +Derrick +Bryan +Peter +Kyle +Zachary +Jose +Keith +Reginald +Ronald +Nathaniel +Carlos +Phillip +Christian +Jesse +Antoine +Dominic +Jamal +Nathan +Calvin +Darrell +Darryl +Derek +Donald +George +Adrian +Ian +Maurice +Philip +Dennis +Lawrence +Willie +Darnell +Frank +Juan +Ricardo +Tyrone +Corey +Dante +Devin +Douglas +Larry +Melvin +Scott +Antwan +Edwin +Evan +Gerald +Raymond +Craig +Dwayne +Erik +Jacob +Victor +Vincent +Alex +Bradley +Dominique +Martin +Marvin +Rodney +Tony +Travis +Brendan +Brett +Jerome +Joel +Oscar +Terrell +Delonte +Ernest +Gary +Jeremiah +Micheal +Omar +Carl +Damien +Darius +Eugene +Gabriel +Henry +Julian +Kelvin +Luis +Terrance +Terrence +Terry +Wayne +Allen +Colin +Darren +Earl +Lamar +Lorenzo +Max +Wesley +Curtis +Deangelo +Donte +Dustin +Jeffery +Jermaine +Johnny +Luke +Marc +Shawn +Walter +Barry +Bryant +Cameron +Clarence +Cory +Demetrius +Dexter +Frederick +Harold +Johnathan +Jordan +Noah +Troy +Angelo +Austin +Blake +Davon +Deandre +Devon +Donnell +Drew +Emmanuel +Garrett +Jamar +Lamont +Lee +Louis +Malcolm +Manuel +Milton +Pierre +Randy +Theodore +Trevor +Bernard +Byron +Clifton +Cornell +Deonte +Dewayne +Dion +Herbert +Jon +Jorge +Leroy +Oliver +Randall +Rashad +Ricky +Stanley +Alexis +Arthur +Bruce +Delonta +Desmond +Franklin +Geoffrey +Howard +Jared +Jovan +Julius +Karl +Lance +Marquis +Roger +Ross +Stefan +Todd +Tyler +Warren +Ahmad +Alan +Alec +Alonzo +Carlton +Chad +Chase +Conor +Dana +Daryl +Demarcus +Derrell +Donovan +Dorian +Dylan +Eddie +Fernando +Glenn +Jamel +Jerry +Keenan +Leon +Lucas +Marlon +Marshall +Mathew +Orlando +Raphael +Stephon +Tyree +Albert +Alejandro +Alfonzo +Bobby +Cornelius +Damon +Dean +Delante +Deon +Ethan +Francisco +Gavin +Gerard +Gordon +Graham +Hugh +Ira +Jamaal +Javier +Johnnie +Kareem +Kwame +Leonard +Lewis +Lloyd +Marco +Mitchell +Mohamed +Mohammad +Neil +Nicolas +Quentin +Rafael +Roland +Ronnie +Roy +Russell +Shaun +Simon +Stephan +Tomas +Wendell +Xavier +Michael +Christopher +David +James +John +Daniel +William +Andrew +Anthony +Matthew +Kevin +Robert +Brandon +Brian +Alexander +Jonathan +Eric +Joseph +Thomas +Joshua +Nicholas +Justin +Charles +Jason +Patrick +Marcus +Benjamin +Ryan +Timothy +Aaron +Antonio +Gregory +Richard +Steven +Jeffrey +Kenneth +Sean +Stephen +Andre +Paul +Samuel +Jeremy +Edward +Mark +Kyle +Ronald +Nathaniel +Jamal +Jose +Keith +Derrick +Zachary +Adam +Reginald +Maurice +Ricardo +Nathan +Peter +Bryan +George +Tyrone +Travis +Derek +Ian +Jacob +Scott +Carlos +Christian +Delonte +Dominic +Jerome +Phillip +Gary +Jordan +Gabriel +Victor +Colin +Vincent +Antoine +Donte +Philip +Raymond +Alex +Brendan +Darius +Darryl +Evan +Juan +Carl +Devin +Donald +Douglas +Jesse +Troy +Wayne +Calvin +Curtis +Darren +Henry +Marvin +Corey +Darnell +Deangelo +Marc +Brett +Cameron +Dennis +Lawrence +Oscar +Rodney +Terrence +Allen +Adrian +Austin +Bradley +Deon +Erik +Kelvin +Lorenzo +Luis +Martin +Max +Terrell +Dante +Emmanuel +Larry +Malcolm +Ricky +Antwan +Edwin +Louis +Marco +Rashad +Terrance +Terry +Tony +Wesley +Bobby +Clarence +Craig +Demetrius +Devon +Gerald +Hector +Jeremiah +Joel +Johnathan +Lamar +Lamont +Leonard +Maxwell +Micheal +Norman +Russell +Spencer +Stephon +Alan +Alonzo +Cory +Darrell +Donnell +Dustin +Franklin +Jared +Jeffery +Jermaine +Kristopher +Lee +Luke +Ramon +Shawn +Taylor +Theodore +Todd +Carlton +Chad +Cornell +Daryl +Davon +Delante +Dominique +Dwayne +Edgar +Francis +Frederick +Isaac +Jay +Jerry +Leon +Melvin +Quentin +Seth +Walter +Albert +Angelo +Arthur +Bruce +Damien +Dion +Ernest +Ethan +Geoffrey +Harold +Jack +Jamar +Javier +Julian +Julius +Mario +Marshall +Nicolas +Tyler +Alexis +Avery +Clifton +Cody +Damian +Dandre +Deandre +Eduardo +Eli +Elijah +Elliott +Freddie +Garrett +Glenn +Javon +Jorge +Noah +Omar +Rico +Roderick +Ross +Shane +Shaun +Trevor +Warren +Willie +Abdul +Alvin +Anton +Bernard +Bryant +Bryce +Casey +Cordell +Cortez +Dangelo +Dorian +Emanuel +Frank +Harrison +Harry +Howard +Isaiah +Jaime +Johnny +Owen +Rafael +Ralph +Randall +Randy +Sylvester +Allan +Alphonzo +Billy +Blake +Brent +Byron +Cedric +Conor +Cornelius +Dalonte +Dean +Deonte +Dexter +Dionte +Donovan +Drew +Dwight +Dylan +Earl +Erick +Gavin +Glen +Herbert +Jackson +Jarrett +Jean +Jerel +Julio +Karl +Kendrick +Khaled +Malik +Manuel +Marlon +Marquis +Miles +Oliver +Pierre +Quintin +Roger +Ronnie +Sebastian +Sergio +Simon +Stanley +Terence +Tristan +Tyrell +Vernon +Michael +Christopher +James +David +Daniel +Matthew +John +Robert +Anthony +William +Kevin +Andrew +Joseph +Brandon +Jonathan +Alexander +Brian +Justin +Charles +Joshua +Eric +Nicholas +Ryan +Thomas +Marcus +Antonio +Samuel +Timothy +Benjamin +Patrick +Aaron +Sean +Gregory +Steven +Jason +Kenneth +Mark +Richard +Stephen +Andre +Kyle +Zachary +Paul +Derrick +Jeffrey +Ronald +Edward +Adam +Bryan +Jose +Nathaniel +Jeremy +Keith +Peter +Tyrone +Jacob +Christian +Jamal +Reginald +Maurice +Antoine +Dennis +Dominic +Ian +Travis +Donald +Nathan +Rodney +George +Juan +Colin +Jerome +Phillip +Cameron +Douglas +Henry +Philip +Calvin +Carlos +Melvin +Walter +Darrell +Scott +Darryl +Jesse +Darnell +Delonte +Edwin +Vincent +Alex +Donte +Lawrence +Adrian +Deandre +Gary +Larry +Marvin +Oscar +Tony +Troy +Brendan +Carl +Corey +Darius +Derek +Devin +Devon +Leonard +Ricardo +Shawn +Terrance +Bryant +Curtis +Erik +Evan +Tyler +Darren +Davon +Demetrius +Donnell +Jared +Julian +Lamont +Mario +Raymond +Terrell +Terrence +Victor +Wayne +Byron +Dante +Delante +Luis +Max +Trevor +Wesley +Austin +Eugene +Frederick +Johnathan +Kelvin +Luke +Martin +Bruce +Cory +Deangelo +Dominique +Emmanuel +Jamar +Jermaine +Jorge +Lamar +Leon +Leroy +Louis +Micheal +Pierre +Theodore +Vernon +Alonzo +Antwan +Bradley +Ernest +Gabriel +Isaac +Joel +Ricky +Roger +Tyrell +Alan +Casey +Clarence +Donovan +Dwayne +Francis +Harry +Jerry +Jordan +Kristopher +Lee +Malcolm +Marquis +Miguel +Quentin +Randy +Raphael +Russell +Terence +Ahmed +Arthur +Bernard +Brett +Chase +Gerald +Harrison +Marc +Roderick +Ronnie +Shane +Spencer +Warren +Willie +Xavier +Branden +Carlton +Cedric +Clayton +Connor +Cordell +Dale +Desmond +Earl +Eddie +Ethan +Francisco +Frank +Harold +Julius +Lorenzo +Lucas +Maxwell +Orlando +Rico +Stanley +Terry +Albert +Antwon +Clifton +Collin +Conor +Craig +Dalonte +Elijah +Jeffery +Jeremiah +Johnny +Kendall +Lewis +Marcellus +Miles +Mohamed +Omar +Roland +Stephon +Sylvester +Allan +Bobby +Dandre +Dion +Drew +Edgar +Elliott +Everett +Franklin +Garrett +Howard +Ivan +Jarrell +Khalid +Lionel +Manuel +Marcel +Marlon +Mathew +Milton +Noah +Norman +Pedro +Quintin +Randall +Sergio +Shaun +Sheldon +Stefan +Stephan +Todd +Alberto +Allen +Alvin +Amir +Andres +Antione +Cesar +Clinton +Damien +Darrin +Daryl +Deon +Devaughn +Devonte +Dewayne +Dexter +Dominick +Duane +Dwight +Dylan +Ezra +Jake +Jay +Joe +Julio +Keon +Kerry +Lloyd +Logan +Malik +Marshall +Mauricio +Micah +Mohammad +Morgan +Nelson +Nicolas +Rashad +Raynard +Roberto +Ross +Sam +Sebastian +Seth +Simon +Tavon +Trevon +Michael +Christopher +James +David +William +Anthony +John +Matthew +Kevin +Robert +Joseph +Daniel +Andrew +Ashley +Brandon +Eric +Alexander +Joshua +Brian +Jonathan +Brittany +Benjamin +Jessica +Marcus +Charles +Thomas +Nicholas +Aaron +Antonio +Justin +Ryan +Samuel +Sean +Patrick +Timothy +Stephen +Sarah +Elizabeth +Jasmine +Steven +Tiffany +Jennifer +Jeffrey +Lauren +Gregory +Mark +Richard +Nicole +Rachel +Danielle +Keith +Edward +Christina +Derrick +Katherine +Amanda +Stephanie +Adam +Alexandra +Paul +Andre +Kenneth +Emily +Jamal +Rebecca +Jose +Samantha +Zachary +Courtney +Peter +Travis +Andrea +Jacob +Christian +Kyle +George +Ronald +Carlos +Jeremy +Ian +Mary +Delonte +Erica +Maurice +Nathan +Tyrone +Jason +Michelle +Anna +Jordan +Julia +Melissa +Phillip +Shannon +Victoria +Kelly +Catherine +Dominique +Evan +Philip +Reginald +Alexis +Laura +Lawrence +Victor +Amber +Caroline +Crystal +Davon +Dominic +Hannah +Kiara +Megan +Vincent +Bryan +Kimberly +Scott +Brendan +Devin +Donald +Kendra +Antoine +Bianca +Curtis +Deandre +Donte +Erin +Kathryn +Taylor +Bryant +Cameron +Corey +Darius +Ebony +Margaret +Angela +Brittney +Christine +Derek +Heather +Melvin +Tiara +Tyler +Adrian +Caitlin +Calvin +Darnell +Deangelo +Gary +Jerome +Jesse +Juan +Monique +Nathaniel +Ricardo +Shawn +Tony +Walter +Alicia +Darrell +Demetrius +Maria +Raymond +Chelsea +Devon +Micheal +Molly +Sara +Alex +Cory +Dana +Edwin +Jacqueline +Kristen +Luis +Marvin +Theodore +Arthur +Douglas +Dwayne +Frederick +Garrett +Jamie +Johnathan +Julian +Larry +Terrell +Veronica +Wayne +Carl +Darren +Darryl +Dennis +Gerald +Jorge +Lamar +Lindsay +Monica +Natalie +Natasha +Rodney +Stephon +Terry +April +Ariel +Diana +Henry +Jeffery +Kathleen +Lorenzo +Martin +Olivia +Oscar +Tyrell +Vernon +Wesley +Allen +Allison +Angel +Antwan +Austin +Britney +Claire +Colin +Deonte +Edgar +Emmanuel +Gabriel +Johnny +Kelvin +Leah +Marquis +Rashad +Rico +Sandra +Tamika +Terrance +Terrence +Whitney +Alvin +Amy +Babyboy +Carlton +Donnell +Erika +Eugene +Leon +Louis +Meghan +Patricia +Renee +Russell +Xavier +Adrienne +Anne +Avery +Brenda +Daryl +Erik +Francisco +Isaac +Jermaine +Jr +Kendrick +Krystal +Leonard +Leslie +Lisa +Lucas +Malcolm +Miguel +Morgan +Omar +Alan +Arielle +Carolyn +Cynthia +Dewayne +Donovan +Dylan +Emma +Gabrielle +Ivan +Jared +Karen +Kelsey +Marissa +Melanie +Mia +Randolph +Sabrina +Sophia +Tierra +Vanessa +Warren +Willie +Albert +Alison +Alyssa +Ana +Ashleigh +Barry +Briana +Byron +Clarence +Delonta +Domonique +Ernest +Francis +Geoffrey +Jade +Jamar +Katrina +Kristina +Madeline +Marc +Max +Micah +Nicolas +Octavia +Pierre +Ramon +Randy +Raphael +Robin +Sade +Sergio +Abigail +Alisha +Angelo +Bernard +Candace +Candice +Casey +Craig +Danny +Fernando +Helen +Howard +Jazmine +Jeremiah +Jerry +Jillian +Julie +Julius +Kara +Kendall +Kristin +Lamont +Lindsey +Luke +Mathew +Mitchell +Nancy +Patrice +Seth +Simone +Spencer +Theresa +Tiana +Ali +Alice +Alonzo +Andres +Brittani +Camille +Chanel +Clifton +Collin +Damon +Delante +Diamond +Felicia +Frank +Gabriella +Glenn +Harry +Herman +Isaiah +Jaime +Jamaal +Javier +Joy +Justine +Kayla +Kiana +Latasha +Madeleine +Mario +Maxwell +Maya +Milton +Miriam +Mohamed +Mohammad +Nina +Norman +Oliver +Orlando +Portia +Ross +Shane +Simon +Terence +Todd +Tracy +Troy +Adriana +Asia +Bobby +Bradley +Brett +Bridget +Brooke +Bruce +Chase +Claudia +De +Denise +Dion +Eduardo +Elena +Eli +Elisabeth +Emanuel +Ethan +Haley +Ikea +Janelle +Jarrell +Jean +Joel +Katie +Kirk +Latisha +Latoya +Leroy +Logan +Martha +Mercedes +Nelson +Perry +Rachael +Roberto +Ronnie +Tanisha +Tavon +Trevor +Tristan +Un +Zoe +Abdul +Alberto +Alejandro +Alexandria +Alfred +Alphonso +Asha +Barbara +Billy +Brady +Brandi +Brendon +Cara +Cassandra +Chantelle +Charlotte +Chiquita +Clayton +Cornelius +Cristian +Dandre +Dangelo +Dante +Deon +Desmond +Drew +Dustin +Eleanor +Ellen +Frances +Franklin +Gerard +Grace +Hakeem +Harvey +Hilary +Hugo +Janae +Janee +Janet +Jocelyn +Kamal +Kelley +Kelli +Kristopher +Lakeisha +London +Mackenzie +Manuel +Marcel +Marco +Markus +Marquita +Meaghan +Meredith +Monet +Nadia +Neil +Nora +Owen +Paige +Princess +Quinton +Ralph +Randall +Rashida +Roy +Ruth +Shaun +Sophie +Stanley +Tamara +Tatiana +Tommy +Valencia +Valerie +Virginia +Yolanda +Akeem +Alesha +Alissa +Amir +Antwon +Arsenio +Beatrice +Blair +Brianna +Cedric +Chloe +Ciara +Cierra +Clinton +Colleen +Conor +Diego +Dionne +Dominick +Dominque +Earl +Elise +Elliot +Emilie +Eva +Evelyn +Fatima +Female +Francesca +Gavin +Georgia +Grant +Holly +Ibrahim +India +Ingrid +Isabel +Isiah +Jack +Jaclyn +Jaleesa +Jerrell +Jessie +Jimmy +Jon +Josue +Joyce +Julio +Karla +Katelyn +Keenan +Kenny +Kia +Kristian +Kurt +Latonya +Lewis +Liam +Lionel +Lloyd +Lonnie +Lucy +Marie +Marquette +Martina +Maximilian +Miles +Nichelle +Nikko +Obinna +Paris +Precious +Quentin +Rafael +Rashaad +Regina +Rochelle +Roderick +Roger +Rolando +Ronnell +Sasha +Sharon +Sheila +Sheldon +Solomon +Stacey +Stefan +Sterling +Stewart +Stuart +Suzanne +Tara +Teresa +Tia +Tiera +Toni +Michael +Christopher +James +David +William +Matthew +Daniel +Andrew +Kevin +John +Robert +Anthony +Joshua +Brandon +Joseph +Brian +Charles +Nicholas +Jonathan +Eric +Thomas +Alexander +Antonio +Steven +Aaron +Samuel +Ryan +Marcus +Sean +Benjamin +Andre +Patrick +Richard +Timothy +Gregory +Jeffrey +Justin +Mark +Kenneth +Zachary +Edward +Stephen +Jose +Keith +Carlos +Paul +Adam +Jamal +Ronald +Kyle +Brittany +Peter +Bryan +George +Jason +Nathaniel +Derrick +Christian +Jeremy +Tyrone +Darius +Delonte +Jordan +Ian +Maurice +Reginald +Tyler +Vincent +Davon +Jesse +Nathan +Phillip +Raymond +Travis +Brendan +Stephon +Darnell +Donald +Jacob +Luis +Devin +Gabriel +Juan +Ashley +Dominic +Donte +Gary +Micheal +Antoine +Erik +Marvin +Victor +Corey +Deandre +Devon +Emily +Jasmine +Lawrence +Rodney +Cameron +Shawn +Tony +Darrell +Evan +Henry +Julian +Colin +Curtis +Deangelo +Dennis +Dominique +Elizabeth +Johnathan +Lauren +Ricardo +Theodore +Babyboy +Jerome +Philip +Stephanie +Adrian +Demetrius +Lorenzo +Alex +Calvin +Courtney +Darryl +Donnell +Frank +Sarah +Wayne +Alexandra +Amanda +Austin +Danielle +Dwayne +Jessica +Joel +Kelvin +Larry +Malcolm +Russell +Troy +Clarence +Douglas +Edwin +Lamont +Louis +Martin +Max +Scott +Tiffany +Walter +Willie +Bradley +Darren +Ethan +Marc +Marquis +Noah +Terrell +Terrence +Victoria +Derek +Jared +Melvin +Morgan +Terrance +Anna +Antwan +Arthur +Carl +Deon +Deonte +Ernest +Gerald +Jeremiah +Johnny +Katherine +Omar +Rachel +Rebecca +Tyrell +Alonzo +Catherine +Damon +Dylan +Javier +Jennifer +Nelson +Roderick +Samantha +Tavon +Taylor +Terry +Vernon +Wesley +Xavier +Alan +Alexis +Allen +Amber +Baby +Bernard +Bryant +Byron +Connor +Damien +Dejuan +Earl +Edgar +Elijah +Howard +Isaac +Jerry +Kelly +Kendall +Laura +Leon +Lucas +Malik +Manuel +Melissa +Nicole +Ramon +Rico +Ross +Spencer +Albert +Ashton +Bianca +Clifton +Craig +Delonta +Emmanuel +Erick +Garrett +Glenn +Harry +Javon +Jorge +Julia +Keenan +Lamar +Marquette +Rashad +Stanley +Angela +Anton +Antwon +Carlton +Christina +Cody +Cory +Dangelo +Danny +Daryl +Derrell +Domonique +Ebony +Erica +Eugene +Franklin +Gavin +Geoffrey +Harold +Isaiah +Jermaine +Julio +Julius +Kimberly +Marcel +Marco +Margaret +Markus +Mathew +Maxwell +Miguel +Myles +Patricia +Preston +Quinton +Rafael +Raphael +Roger +Roland +Ronnie +Sergio +Seth +Shaun +Tiara +Trevor +Akeem +Angel +Avery +Brent +Caitlin +Caroline +Cierra +Cornelius +Crystal +Dana +Dominick +Donovan +Dustin +Dwight +Eli +Erin +Jay +Jeffery +Jerel +Jon +Kadeem +Kareem +Kiara +Korey +Kristopher +Luther +Marcell +Maria +Mario +Megan +Mohamed +Natalie +Neil +Owen +Ricky +Shane +Stefan +Tara +Alejandro +Allison +Andrea +Angelo +Asia +Babygirl +Brett +Chad +Clifford +Cynthia +Delante +Denis +Denzel +Desmond +Dexter +Diamond +Dontae +Donzell +Elmer +Everett +Fernando +Frederick +Graham +Hannah +Ivan +Jack +Jamaal +Jamel +Joe +Johnnie +Josue +Kaitlin +Kelsey +Larnell +Lloyd +Madeline +Mary +Melanie +Michelle +Monique +Nina +Olivia +Oscar +Paris +Quentin +Quintin +Randy +Rickey +Roy +Simon +Sterling +Terence +Tyron +Whitney +Winston +Abigail +Adrienne +Ahmad +Alexandria +Alicia +Anne +Armani +Arron +Bobby +Brittney +Bruce +Caleb +Casey +Cedric +Chase +Clayton +Damian +Dante +Delontae +Devaughn +Diana +Eddie +Elias +Francis +Francisco +Gabrielle +Gilbert +Harrison +Hector +Jabari +Jacqueline +Jaron +Jerrod +Jovan +Kathleen +Kendrick +Kenny +Kristen +Kwame +Lee +Lester +Lisa +Luke +Marissa +Meghan +Miles +Milton +Omari +Orlando +Perry +Rashaad +Robin +Sara +Shannon +Sheldon +Tevin +Thaddeus +Tierra +Valerie +Warren +Michael +Christopher +James +William +John +David +Anthony +Robert +Matthew +Alexander +Kevin +Daniel +Joshua +Andrew +Brandon +Jonathan +Joseph +Eric +Marcus +Charles +Brian +Nicholas +Antonio +Thomas +Ryan +Andre +Samuel +Aaron +Patrick +Gregory +Justin +Kenneth +Timothy +Christian +Sean +Benjamin +Mark +Jose +Stephen +Jacob +Jamal +Zachary +Peter +Richard +Kyle +Delonte +Adam +Steven +Paul +Ronald +Carlos +Jordan +Keith +Darius +Bryan +Deandre +Travis +George +Edward +Jeffrey +Deangelo +Maurice +Derrick +Reginald +Ricardo +Davon +Dominique +Henry +Malcolm +Nathan +Nathaniel +Tyler +Jeremy +Lawrence +Evan +Micheal +Phillip +Curtis +Demetrius +Douglas +Gabriel +Tyrone +Devin +Stephon +Calvin +Corey +Darnell +Darrell +Terrence +Vincent +Dominic +Erik +Edwin +Gerald +Ian +Raymond +Devon +Dwayne +Julian +Philip +Walter +Cameron +Jason +Juan +Marquis +Victor +Darryl +Kelvin +Melvin +Terrell +Colin +Donte +Troy +Xavier +Adrian +Donald +Max +Taylor +Dante +Denzel +Derek +Dylan +Frank +Franklin +Garrett +Gary +Jerome +Johnathan +Luis +Noah +Rashad +Tony +Antwan +Dennis +Donnell +Isaac +Jared +Javier +Jermaine +Jesse +Joel +Lamont +Larry +Lorenzo +Rodney +Wayne +Wesley +Alex +Alvin +Emmanuel +Scott +Brendan +Carl +Isaiah +Marvin +Randy +Tevin +Alonzo +Antoine +Bradley +Clarence +Delante +Edgar +Ernest +Ethan +Javon +Leon +Malik +Marc +Mario +Miles +Omar +Shawn +Stanley +Terrance +Tyree +Bernard +Deonte +Earl +Eugene +Francisco +Ivan +Jackson +Jerry +Leonard +Lewis +Louis +Ronnie +Stefan +Sterling +Terry +Trevor +Ali +Caleb +Cody +Dion +Erick +Francis +Frederick +Jeffery +Jeremiah +Jerrell +Manuel +Martin +Maxwell +Miguel +Austin +Bruce +Byron +Carlton +Connor +Craig +Dangelo +Danny +Darren +Daryl +Delano +Delonta +Dexter +Ellis +Harrison +Harry +Hector +Kristopher +Leroy +Luke +Marcellus +Markus +Marquette +Micah +Rakeem +Raynard +Tavon +Trevon +Tyjuan +Tyrell +Alan +Anton +Arthur +Bobby +Brett +Casey +Chase +Cornelius +Cortez +Cory +Darrin +Demarco +Deon +Derrell +Dionte +Dominick +Donta +Dwight +Elliott +Herbert +Howard +Jairo +Jake +Jamar +Johnny +Jorge +Josue +Karl +Lloyd +Marcel +Marquise +Nigel +Preston +Shane +Simon +Theodore +Travon +Warren +Willie +Ariel +Conor +Cordell +Damion +Daquan +Donovan +Duane +Elijah +Gavin +Grant +Hassan +Jamaal +Jaron +Jay +Jimmy +Jonah +Julio +Julius +Kareem +Kavon +Kwame +Lucas +Mohamed +Mohammad +Myles +Nelson +Noel +Oscar +Owen +Quentin +Quinton +Ricky +Roberto +Shaun +Spencer +Tayvon +Tristan +Ahmed +Albert +Alexis +Allen +Brent +Bryce +Chris +Clifford +Collin +Cristian +Dalonte +Damien +Dayvon +Dejuan +Desmond +Devonte +Dillon +Eddie +Eli +Elliot +Everett +Geoffrey +Graham +Herman +Ismael +Jabari +Jelani +Keenan +Kendall +Lamar +Marco +Markel +Marlon +Mauricio +Norman +Ray +Russell +Sidney +Thaddeus +Todd +Tommy +Michael +Christopher +John +James +David +William +Kevin +Andrew +Matthew +Robert +Anthony +Alexander +Brandon +Daniel +Joseph +Nicholas +Joshua +Eric +Samuel +Jonathan +Marcus +Aaron +Ryan +Thomas +Charles +Antonio +Justin +Sean +Benjamin +Zachary +Gregory +Andre +Brian +Timothy +Steven +Adam +Richard +Christian +Patrick +Stephen +Kenneth +Tyler +George +Mark +Paul +Jacob +Jordan +Jose +Carlos +Deandre +Kyle +Ronald +Jamal +Cameron +Ian +Keith +Bryan +Devin +Devonte +Alex +Jeffrey +Delonte +Dominique +Malik +Derrick +Edward +Jason +Jeremy +Tyrone +Nathaniel +Henry +Maurice +Reginald +Connor +Davon +Lawrence +Evan +Nathan +Devon +Dominic +Julian +Phillip +Ricardo +Antoine +Darius +Demetrius +Donte +Dylan +Jerome +Jesse +Peter +Terrance +Curtis +Taylor +Colin +Dennis +Austin +Carl +Darren +Devante +Erik +Malcolm +Tavon +Terrell +Wesley +Xavier +Corey +Eugene +Rashad +Rodney +Tony +Travis +Arthur +Darrell +Darryl +Deangelo +Donald +Donnell +Dwayne +Kelvin +Larry +Max +Miguel +Tevin +Victor +Dante +Emmanuel +Frank +Gabriel +Isaiah +Juan +Marquis +Raymond +Scott +Tyree +Bernard +Brendan +Micheal +Philip +Shawn +Troy +Adrian +Deon +Deonte +Derek +Edwin +Lorenzo +Marvin +Terrence +Calvin +Damien +Darnell +Denzel +Douglas +Elijah +Franklin +Jeremiah +Jimmy +Marshall +Maxwell +Nicolas +Omar +Stephon +Theodore +Trevon +Trevor +Vincent +Wayne +Albert +Alonzo +Craig +Leon +Luis +Luke +Melvin +Nelson +Walter +Conor +Davonte +Delante +Desmond +Ethan +Jackson +Jared +Joel +Johnathan +Johnny +Lucas +Marcel +Miles +Travon +Tyrell +Angelo +Clarence +Darrius +Dion +Donovan +Earl +Ernest +Geoffrey +Ivan +Jack +Jermaine +Jorge +Lamont +Manuel +Marquette +Martin +Preston +Rico +Shane +Ahmed +Alvin +Ariel +Brett +Bryant +Byron +Chase +Cody +Cortez +Dandre +Desean +Dimitri +Eddie +Frederick +Gary +Grant +Isiah +Jake +Jamaal +Javon +Jerrell +Josue +Julius +Kristopher +Marc +Marco +Noah +Quinton +Spencer +Allen +Blake +Branden +Bruce +Bryce +Caleb +Carlton +Cristian +Dewayne +Francis +Isaac +Jarrett +Keenan +Kendall +Kendrick +Louis +Milton +Oscar +Warren +Ahmad +Alejandro +Antione +Antwan +Bennett +Conrad +Cory +Dangelo +Darian +De +Delonta +Demarco +Devaughn +Devonta +Dominick +Dwight +Emanuel +Harrison +Hunter +Jalen +Jamar +Jeffery +Karl +Mario +Markus +Micah +Neil +Rashaad +Rayvon +Ronnie +Roy +Russell +Simon +Willie +Alexandre +Andy +Bradley +Casey +Clifford +Clifton +Cornell +Courtney +Danny +Daquan +Daryl +Dean +Demetri +Dequan +Dionte +Dominque +Dontae +Drew +Edgar +Erick +Ever +Garrett +Graham +Gustavo +Harold +Herman +Howard +Jabari +Javier +Javonte +Jon +Julien +Kenny +Mathew +Mohamed +Morgan +Myron +Norman +Oliver +Paris +Ramon +Randy +Rashawn +Renard +Ricky +Roderick +Roger +Ross +Saquan +Sebastian +Seth +Stanley +Stefan +Sylvester +Tarik +Todd +Tre +Michael +Christopher +James +Kevin +John +Anthony +Robert +David +Brandon +Joshua +Daniel +William +Matthew +Alexander +Joseph +Charles +Thomas +Andrew +Ryan +Marcus +Jonathan +Samuel +Aaron +Eric +Nicholas +Zachary +Justin +Antonio +Brian +Benjamin +Jamal +Steven +Andre +Sean +Keith +Paul +Patrick +Gregory +Jacob +Jordan +Richard +Christian +Peter +Timothy +Tyrone +Kyle +Nathaniel +Adam +Davon +Mark +Edward +Darius +Deandre +Delonte +Henry +Stephen +Tyler +Jose +Ronald +Kenneth +Carlos +Maurice +Reginald +Dominique +Ian +Jeffrey +Xavier +Brendan +Bryan +Cameron +Jason +Austin +Connor +Denzel +Devin +Dominic +Malik +Tavon +Gabriel +Donte +Evan +Ricardo +Derrick +Devonte +Donald +Erik +George +Jeremy +Marquis +Max +Nathan +Phillip +Tevin +Victor +Vincent +Curtis +Darrell +Darryl +Dennis +Luis +Micheal +Rodney +Scott +Corey +Dylan +Emmanuel +Malcolm +Antoine +Cory +Deangelo +Joel +Kelvin +Lawrence +Marvin +Stephon +Tyrell +Calvin +Demetrius +Desmond +Devon +Dwayne +Erick +Lamont +Martin +Raymond +Terrell +Terrence +Travis +Walter +Bradley +Donnell +Jerome +Juan +Lucas +Shawn +Troy +Adrian +Alex +Cody +Colin +Conor +Daquan +Darnell +Darren +Deon +Deonte +Edwin +Harry +Jackson +Jalen +Jeremiah +Marcellus +Miles +Omar +Rashad +Tony +Trevon +Wesley +Bernard +Carl +Cristian +Dandre +Devante +Franklin +Isaiah +Jerry +Johnathan +Julian +Larry +Luke +Marco +Melvin +Rico +Shaquille +Spencer +Travon +Craig +Derek +Dion +Elijah +Gary +Jermaine +Jorge +Taylor +Tre +Ethan +Eugene +Francisco +Harrison +Isaac +Jared +Javon +Kendall +Lorenzo +Louis +Maxwell +Miguel +Noah +Trevor +Willie +Anton +Antwan +Avery +Caleb +Clarence +Delonta +Gerald +Graham +Kristopher +Philip +Quincy +Ricky +Shane +Terry +Vernon +Angel +Blake +Byron +Carter +Cedric +Chase +Dangelo +Danny +Dante +Delante +Dequan +Devaughn +Devonta +Douglas +Frederick +Harold +Javier +Jesse +Kenny +Mitchell +Quinton +Roberto +Shaun +Terrance +Trey +Abraham +Allen +Brett +Bruce +Carlton +Cecil +Collin +Cordell +Damani +Damion +Darien +Darrius +Demarco +Donovan +Donta +Duane +Earl +Emanuel +Ernest +Ibrahim +Jarrell +Jovon +Manuel +Marc +Marcel +Markus +Marquette +Marquise +Maximilian +Micah +Myles +Nicolas +Nigel +Orlando +Paris +Perry +Quentin +Quinn +Raheem +Randy +Romeo +Theodore +Tyree +Tyron +Warren +Wayne +Ahmad +Alan +Alexandre +Alonzo +Alvin +Amir +Angelo +Antwon +Arthur +Ashton +Billy +Branden +Bryant +Clifton +Clinton +Dale +Damon +Darian +Davonta +Deondre +Dillon +Dimitri +Dominick +Dwight +Eduardo +Eli +Francis +Glenn +Jabari +Jaquan +Kevon +Khalil +Leon +Leonard +Levi +Markell +Mikal +Milton +Oliver +Oscar +Raul +Raynard +Roland +Ronnie +Samson +Sebastian +Sidney +Stanley +Tarik +Michael +James +Christopher +William +Anthony +Matthew +John +Kevin +David +Alexander +Nicholas +Daniel +Andrew +Joseph +Joshua +Brandon +Robert +Aaron +Marcus +Thomas +Eric +Jonathan +Ryan +Benjamin +Charles +Samuel +Zachary +Justin +Sean +Tyler +Jordan +Antonio +Brian +Christian +Jacob +Malik +Patrick +Mark +Jamal +Deandre +Kyle +Davon +Gregory +Kenneth +Andre +Adam +Stephen +Carlos +Darius +Richard +Timothy +Ronald +Devin +Peter +Reginald +Steven +Nathaniel +Edward +Keith +Ian +Terrell +Delonte +Maurice +Nathan +Paul +Victor +George +Julian +Tyrone +Austin +Jason +Jose +Raymond +Tavon +Vincent +Cameron +Edwin +Gabriel +Jeffrey +Juan +Malcolm +Marquis +Dominique +Jeremy +Troy +Connor +Darnell +Derek +Donald +Bryan +Daquan +Nicolas +Ricardo +Derrick +Devonte +Henry +Rodney +Stephon +Terrence +Calvin +Dylan +Elijah +Jared +Luke +Noah +Philip +Phillip +Tyrell +Colin +Corey +Erik +Ethan +Evan +Jerome +Marvin +Spencer +Trevon +Trevor +Walter +Allen +Bradley +Carl +Demetrius +Devon +Donnell +Emmanuel +Isaac +Jackson +Lawrence +Tyree +Wesley +Alex +Brendan +Darrell +Douglas +Erick +Franklin +Gary +Sebastian +Alec +Avery +Curtis +Donte +Gerald +Jalen +Javon +Jeffery +Jesse +Leon +Melvin +Micheal +Terrance +Tevin +Tony +Travis +Alonzo +Arthur +Deangelo +Dennis +Denzel +Deon +Devante +Dominic +Jeremiah +Joel +Lucas +Luis +Marc +Mitchell +Mohamed +Scott +Bruce +Clarence +Dandre +Desean +Donovan +Johnathan +Leonard +Lorenzo +Marquette +Marquise +Nigel +Omar +Rashad +Seth +Theodore +Xavier +Adrian +Aidan +Darren +Deion +Dionte +Eli +Francis +Isaiah +Jamaal +Jaquan +Jorge +Kelvin +Lamont +Larry +Mario +Max +Miguel +Miles +Myles +Willie +Anton +Bryant +Caleb +Cedric +Craig +Damon +Dante +Darien +Darryl +Davonte +Demarco +Derrell +Dillon +Jabari +Khalil +Martin +Oscar +Ricky +Rico +Shawn +Stefan +Taylor +Terry +Ahmed +Akeem +Alvin +Antoine +Ariel +Bernard +Blake +Brent +Brett +Collin +Courtney +Damien +Darian +Dayvon +Delante +Deonte +Dion +Dominick +Dwayne +Dwight +Edgar +Elliot +Elliott +Emanuel +Eugene +Grant +Griffin +Harry +Hassan +Hunter +Jack +Jamel +Jay +Jermaine +Jimmy +Jonah +Kareem +Kirk +Kyree +Logan +Marcel +Markus +Mason +Maxwell +Milton +Quentin +Roy +Savon +Shane +Tayvon +Travon +Alexis +Alfred +Andres +Babyboy +Barry +Byron +Chris +Cordell +Cristian +Dangelo +Dequan +Desmond +Diego +Duane +Francisco +Frank +Geoffrey +Harold +Jake +Javier +Jean +Jerry +Johnny +Karl +Keenan +Kendall +Kevon +Khari +Kurt +Lewis +Marco +Marlon +Parris +Rashaad +Rashard +Ronnell +Russell +Shaquille +Stanley +Sterling +Tre +Trey +Warren +Wayne +Michael +Christopher +John +William +David +James +Anthony +Kevin +Daniel +Malik +Joshua +Matthew +Joseph +Nicholas +Brandon +Andrew +Thomas +Alexander +Robert +Marcus +Aaron +Eric +Zachary +Jonathan +Samuel +Justin +Benjamin +Christian +Patrick +Charles +Ryan +Antonio +Brian +Sean +Andre +Stephen +Gregory +Steven +Kenneth +Jordan +Peter +Tyler +Richard +Carlos +Jose +Timothy +Adam +Deandre +Ian +Jason +Jeffrey +Austin +Edward +Jacob +Gabriel +Nathaniel +Mark +Daquan +Darius +Derrick +Corey +Devin +Maurice +Jamal +Cameron +Henry +Paul +Victor +Isaiah +Luke +Jeremy +Kyle +Bryan +Evan +Nathan +Noah +Phillip +Connor +Elijah +George +Delonte +Dennis +Dylan +Luis +Omar +Trevon +Brendan +Carl +Emmanuel +Jaquan +Jesse +Juwan +Keith +Cristian +Davon +Donnell +Jack +Kelvin +Lawrence +Malcolm +Marquis +Marquise +Reginald +Taylor +Vincent +Antoine +Bernard +Devon +Dominique +Isaac +Xavier +Adrian +Devante +Francis +Gary +Julian +Larry +Max +Oscar +Raymond +Terrell +Troy +Tyree +Tyrell +Wayne +Alec +Colin +Curtis +Derek +Devonte +Gerald +Jared +Javon +Jeremiah +Micheal +Shawn +Stephon +Tavon +Alex +Alonzo +Demetrius +Desmond +Donte +Edwin +Grant +Jerome +Trevor +Walter +Andy +Bryant +Damon +Darrell +Erick +Ethan +Eugene +Frederick +Hunter +Jimmy +Marc +Marvin +Nicolas +Rashad +Ricardo +Ronald +Sebastian +Terrence +Aidan +Anton +Caleb +Cody +Collin +Dangelo +Deangelo +Dequan +Dominic +Donald +Donovan +Dwayne +Erik +Frank +Harrison +Jalen +Juan +Kevon +Martin +Melvin +Myles +Rodney +Tony +Travon +Warren +Wesley +Alexis +Arthur +Avery +Blake +Bradley +Calvin +Conor +Javier +Johnathan +Leon +Leroy +Mario +Miguel +Orlando +Philip +Russell +Simon +Stefan +Stephan +Tevin +Theodore +Trayvon +Baby +Bruce +Dandre +Darren +Darryl +Demarco +Deon +Dexter +Dillon +Dion +Dominick +Edgar +Eli +Francisco +Franklin +Griffin +Howard +Jake +Joel +Jorge +Khalil +Lamont +Liam +Lloyd +Louis +Marlon +Nelson +Nigel +Quentin +Travis +Abdul +Ali +Allen +Antwan +Byron +Cesar +Clarence +Clayton +Danny +Dante +Darien +Darnell +Darrius +Davonte +De +Deonte +Deshawn +Devan +Duane +Dustin +Ernest +Ezra +Fred +Garrett +Hector +Jamar +Jayquan +Jermaine +Jonah +Kahlil +Lonnell +Marco +Markell +Marquel +Mathew +Micah +Miles +Mohamed +Pedro +Quinn +Raheem +Rasheed +Rohan +Roman +Scott +Shane +Steve +Tarik +Tristan +Tyrone +Michael +John +William +Christopher +David +Malik +Matthew +James +Daniel +Alexander +Joshua +Andrew +Anthony +Joseph +Nicholas +Kevin +Brandon +Robert +Samuel +Eric +Benjamin +Christian +Thomas +Jonathan +Justin +Brian +Jacob +Ryan +Charles +Aaron +Zachary +Antonio +Marcus +Jordan +Noah +Steven +Adam +Jamal +Nathaniel +Patrick +George +Austin +Isaiah +Kenneth +Nathan +Andre +Sean +Deandre +Kyle +Mark +Richard +Tyler +Ian +Jeremy +Carlos +Elijah +Edward +Juwan +Peter +Timothy +Jeffrey +Jose +Stephen +Gabriel +Lawrence +Ronald +Derrick +Julian +Maxwell +Micheal +Bryan +Davon +Devin +Gregory +Maurice +Paul +Darius +Evan +Jack +Jackson +Jason +Trevon +Victor +Daquan +Cameron +Dangelo +Dylan +Jesse +Reginald +Tyree +Brendan +Henry +Tyrone +Xavier +Alex +Donte +Ethan +Keith +Omar +Carl +Devon +Luis +Luke +Terrell +Tyrell +Vincent +Dandre +Dominique +Donnell +Erik +Juan +Khalil +Lorenzo +Max +Nicolas +Phillip +Raymond +Terry +Calvin +Colin +Darrius +Demetrius +Devonte +Douglas +Isaac +Jalen +Julio +Larry +Liam +Theodore +Tristan +Ahmad +Aidan +Alonzo +Byron +Curtis +Drew +Erick +Francis +Franklin +Malcolm +Manuel +Marquise +Sebastian +Stephon +Tavon +Tony +Trevor +Troy +Alan +Albert +Ariel +Caleb +Cole +Craig +Damian +Damon +Darnell +Delonte +Derek +Dominic +Donald +Edwin +Eli +Emmanuel +Gary +Harrison +Jaquan +Jared +Javon +Jorge +Lucas +Marc +Marlon +Miguel +Ricardo +Shawn +Walter +Antoine +Anton +Carlton +Connor +Cristian +Dante +Darrell +Darryl +Deangelo +Dejuan +Dennis +Dwayne +Ivan +Jeremiah +Jerome +Kelvin +Leonard +Louis +Marquis +Myles +Oscar +Rodney +Shane +Tyron +Ali +Andres +Antione +Arthur +Corey +Darian +De +Deonte +Desmond +Donovan +Duane +Javier +Jerry +Josue +Lamar +Leon +Marcellus +Marvin +Philip +Randy +Rasheed +Ricky +Rico +Tyrik +Abraham +Adrian +Anfernee +Armani +Bennett +Blake +Cesar +Chase +Cody +Collin +Damion +Darren +Dashawn +Demonte +Deon +Dequan +Devante +Diego +Dion +Edgar +Fernando +Frank +Garrett +Graham +Grant +Hunter +Jaime +Jake +Johnny +Kendall +Kyree +Marco +Markell +Marquell +Marquette +Martin +Mason +Maximilian +Micah +Miles +Mohammad +Nelson +Pedro +Ramon +Raphael +Rashad +Rashid +Sam +Sequan +Seth +Spencer +Terrence +Zaki +Michael +John +William +David +James +Christopher +Anthony +Joshua +Kevin +Joseph +Andrew +Daniel +Matthew +Alexander +Brandon +Nicholas +Brian +Samuel +Eric +Malik +Robert +Thomas +Jonathan +Jordan +Aaron +Justin +Christian +Benjamin +Jacob +Ryan +Charles +Marcus +Isaiah +Zachary +Antonio +Noah +Patrick +Mark +Nathaniel +Gregory +Jason +Paul +Sean +Tyler +Henry +Austin +Carlos +George +Kyle +Edward +Andre +Cameron +Devin +Peter +Darius +Ethan +Jose +Kenneth +Adam +Jeffrey +Nathan +Davon +Dylan +Gabriel +Ian +Julian +Maurice +Timothy +Jeremy +Bryan +Richard +Deandre +Keith +Luis +Max +Reginald +Brendan +Juwan +Victor +Babyboy +Daquan +Darryl +Evan +Jack +Liam +Lucas +Marquis +Aidan +Erick +Juan +Omar +Raymond +Stephen +Steven +Terrell +Trevon +Tyrone +Dante +Deangelo +Donovan +Donte +Jamal +Jared +Micheal +Nicolas +Rashad +Antoine +Colin +Connor +Corey +Demarco +Derrick +Douglas +Elijah +Jackson +Jesse +Miles +Alejandro +Alex +Calvin +Cristian +Donnell +Kyree +Oscar +Ricardo +Tyrell +Vincent +Xavier +Adrian +Baby +Carl +Dion +Edwin +Isaac +Marquise +Mohamed +Tavon +Taylor +Theodore +Alec +Amir +Cole +Curtis +Damon +Darnell +Devon +Emanuel +Emmanuel +Gary +Grant +Jaquan +Javon +Manuel +Spencer +Tony +Andy +Angelo +Bryant +Darren +Delonte +Dennis +Deonte +Dominic +Harrison +Jeremiah +Jerome +Khalil +Malcolm +Marquette +Maxwell +Phillip +Quentin +Raheem +Ronald +Trevor +Walter +Arthur +Bradley +Caleb +Dandre +Diego +Donald +Drew +Dwayne +Gerald +Griffin +Jermaine +Joel +Jonah +Jorge +Kameron +Kevon +Logan +Miguel +Myles +Philip +Shawn +Travis +Tristan +Tyree +Allen +Alonzo +Angel +Bernard +Byron +Conor +Dangelo +Darrell +De +Deon +Devonte +Dominique +Erik +Hunter +Jamar +Jaylen +Kelvin +Keyon +Khari +Kristian +Lamar +Lamont +Marc +Marco +Mario +Markel +Melvin +Micah +Quinton +Rodney +Saul +Terrance +Wayne +Ahmad +Alan +Alexis +Ali +Anton +Dajuan +Damian +Deante +Dequan +Derek +Devaughn +Dimitri +Dionte +Edgar +Eduardo +Elias +Elmer +Felix +Francisco +Franklin +Garrett +Isiah +Ivan +Jalen +Jeffery +Jerry +Jon +Julius +Justice +Larry +Leon +Luke +Markell +Mason +Mauricio +Maximilian +Owen +Pablo +Parker +Ricky +Scott +Shane +Shaquan +Simon +Stefan +Stephon +Tarik +Tariq +Travon +Troy +Michael +Christopher +John +William +Matthew +David +Daniel +Joshua +James +Anthony +Kevin +Alexander +Nicholas +Andrew +Brandon +Joseph +Samuel +Jonathan +Justin +Robert +Jacob +Christian +Jordan +Benjamin +Malik +Charles +Brian +Ryan +Thomas +Aaron +Marcus +Eric +Kyle +Jason +Sean +Zachary +Antonio +Adam +Isaiah +Cameron +Kenneth +Timothy +Darius +Edward +Noah +Patrick +Nathaniel +Tyler +Andre +Derrick +Nathan +Gabriel +Gregory +Henry +Richard +Emmanuel +Davon +Mark +Devin +Jack +Ethan +Jeremiah +Jose +Alex +Deandre +Dylan +Elijah +Evan +Khalil +Marquis +Trevon +Ian +Jeffrey +Lawrence +Maurice +Paul +Nicolas +Adrian +George +Jamal +Jeremy +Aidan +Brendan +Bryan +Carlos +Jared +Juan +Julian +Ronald +Stephen +Peter +Steven +Xavier +Austin +Caleb +Cole +Colin +Donald +Shawn +Spencer +Vincent +Daquan +Darrell +Dominic +Jackson +Keith +Max +Myles +Reginald +Calvin +Corey +Damon +Dangelo +Darnell +Demetrius +Donnell +Donte +Jerome +Luke +Tariq +Troy +Victor +Curtis +Delonte +Devon +Gary +Josue +Larry +Malcolm +Maxwell +Micheal +Miles +Omar +Stephon +Tony +Amir +Baby +Dion +Dwayne +Edwin +Francisco +Franklin +Javon +Kendall +Luis +Marcos +Marquette +Marquise +Melvin +Terrell +Trevor +Tyree +Alexis +Antoine +Connor +Cristian +Dante +Darryl +Demarco +Devonte +Garrett +Harrison +Jesse +Josiah +Juwan +Kobe +Liam +Lucas +Manuel +Miguel +Nelson +Nigel +Oscar +Owen +Quentin +Raymond +Ricardo +Rodney +Seth +Theodore +Walter +Anton +Avery +Darren +Deangelo +Diego +Douglas +Gerald +Ivan +Joel +Johnathan +Jonah +Lorenzo +Micah +Mitchell +Philip +Tavon +Tyrell +Willie +Ahmad +Albert +Alec +Alejandro +Allen +Amari +Bryant +Chase +Darrius +Dennis +Derek +Dominique +Donovan +Elias +Erick +Glenn +Griffin +Jabari +Jake +Jalen +Jamari +Jaquan +Jermaine +Johnny +Kelvin +Keon +Kyree +Leonardo +Marco +Marques +Mohamed +Ramon +Raphael +Rashad +Reilly +Scott +Sebastian +Tyrique +Tyrone +Warren +Alan +Alexandre +Andres +Blake +Carl +Cedric +Damion +Deion +Demonte +Deonte +Deshawn +Desmond +Duane +Edgar +Eduardo +Erik +Frank +Gavin +Grant +Harry +Hunter +Isaac +Jermel +Jorge +Kavon +Kirk +Kristopher +Leon +Malachi +Marc +Mason +Mateo +Mohammad +Nico +Pablo +Phillip +Raekwon +Ricky +Ross +Stanley +Terrence +Travis +Trey +Tyriq +Wesley +Wyatt +Michael +William +Christopher +John +David +James +Matthew +Alexander +Joshua +Kevin +Nicholas +Anthony +Benjamin +Joseph +Robert +Samuel +Andrew +Daniel +Thomas +Jonathan +Christian +Eric +Malik +Jordan +Justin +Ryan +Aaron +Antonio +Isaiah +Brandon +Jacob +Charles +Jason +Noah +Zachary +Cameron +Devin +Nathan +Elijah +Marcus +Nathaniel +Carlos +Xavier +Patrick +Gabriel +Tyler +Brian +Andre +Kenneth +Steven +Ethan +Henry +Kyle +Sean +Peter +Timothy +Adam +Derrick +Jack +Evan +George +Stephen +Corey +Darius +Edward +Jeremiah +Aidan +Gregory +Jamal +Julian +Austin +Bryan +Ian +Jeffrey +Lucas +Caleb +Connor +Deandre +Jalen +Mark +Ricardo +Victor +Daquan +Marquis +Maxwell +Brendan +Devon +Jared +Khalil +Max +Miles +Ronald +Davon +Dylan +Jose +Keith +Nicolas +Paul +Colin +Cristian +Donnell +Owen +Terrell +Tyree +Calvin +Demetrius +Derek +Donald +Griffin +Isaac +Jackson +Jaylen +Juwan +Kelvin +Larry +Liam +Maurice +Miguel +Sebastian +Spencer +Travis +Bryce +Demarco +Donovan +Grant +Malcolm +Melvin +Phillip +Raymond +Tyrone +Antoine +Bradley +Deon +Deonte +Devonte +Donte +Emmanuel +Ivan +Jeremy +Jesse +Juan +Kendall +Luis +Troy +Vincent +Zion +Alex +Amir +Carter +Chase +Dangelo +Darren +Delonte +Dennis +Dequan +Douglas +Erick +Garrett +Harrison +Jaquan +Jermaine +Jerome +Jonah +Jorge +Martin +Micah +Philip +Tavon +Tony +Trevon +Adrian +Ahmad +Amari +Angelo +Avery +Cole +Conor +Dante +Deangelo +Desmond +Diego +Edwin +Erik +Ernest +Francisco +Frank +Isiah +Javon +Lawrence +Mason +Micheal +Terry +Tyrell +Vernon +Allen +Andy +Bernard +Brett +Cyrus +Darnell +Darrell +Dion +Dominic +Dustin +Eli +Elvis +Jaden +Joel +Johnathan +Kavon +Keon +Lewis +Logan +Luke +Malachi +Manuel +Marcell +Marvin +Maximilian +Mitchell +Oliver +Omar +Oscar +Richard +Rico +Simon +Angel +Bruce +Carl +Clarence +Clayton +Cody +Cullen +Darian +Demonte +Dillon +Dominique +Dwayne +Elias +Gerald +Grayson +Ibrahim +Jabari +Jaron +Jefferson +Jesus +Kareem +Kevon +Kyree +Leon +Lorenzo +Louis +Marcel +Marcellus +Marlon +Mike +Mohamed +Muhammad +Nelson +Quinn +Ramon +Reginald +Riley +Rodney +Roman +Scott +Shawn +Stephon +Taylor +Terrence +Tyreke +Tyrese +Vaughn +Walter +Wayne +John +Christopher +William +Michael +Anthony +David +Joshua +James +Alexander +Andrew +Nicholas +Matthew +Daniel +Kevin +Justin +Thomas +Robert +Benjamin +Jordan +Samuel +Brandon +Joseph +Malik +Jonathan +Isaiah +Ryan +Aaron +Christian +Charles +Jacob +Eric +Antonio +Jason +Elijah +Brian +Noah +Jalen +Ethan +Jack +Tyler +Zachary +Carlos +Darius +Sean +Kenneth +Nathaniel +Deandre +Henry +Stephen +Timothy +Bryan +Mark +Jose +Marcus +Patrick +Aidan +Dylan +Gabriel +Julian +Richard +Andre +Connor +Jackson +Peter +Xavier +Devin +Evan +Nathan +Omar +Cameron +Nicolas +Steven +Edward +Isaac +Keith +Kevon +Liam +Maurice +Paul +Ronald +Adam +Adrian +Jamal +Lucas +Trevon +Alex +Cristian +George +Jeremy +Khalil +Kyle +Luke +Davon +Gregory +Ian +Jared +Jeffrey +Jeremiah +Juan +Luis +Myles +Sebastian +Spencer +Andy +Donald +Javon +Maxwell +Reginald +Caleb +Daquan +Demetrius +Devon +Edwin +Emmanuel +Kyree +Larry +Marquis +Ricardo +Terrance +Terrence +Tyrell +Brendan +Corey +Demarco +Derrick +Donovan +Gary +Jaden +Melvin +Micah +Oliver +Owen +Vincent +Austin +Calvin +Donnell +Eli +Harrison +Jonah +Josue +Max +Tavon +Warren +Abraham +Alonzo +Bryant +Colin +Dandre +Dominic +Douglas +Francisco +Garrett +Jesse +Josiah +Keon +Logan +Malcolm +Marquise +Mekhi +Miles +Phillip +Quentin +Raymond +Rodney +Shawn +Tyree +Victor +Ahmed +Alexis +Amir +Avery +Cole +Damonte +Dante +Deangelo +Donte +Erick +Grant +Ivan +Jaylen +Jerrell +Joel +Kavon +Marc +Mario +Marlon +Marvin +Micheal +Miguel +Mitchell +Nelson +Nico +Oscar +Pablo +Terrell +Theodore +Zion +Alan +Alvin +Amari +Angel +Ari +Arthur +Carter +Chase +Cody +Curtis +Darian +Declan +Dequan +Diante +Dominique +Eduardo +Elias +Elmer +Emanuel +Eugene +Ezra +Frank +Franklin +Giovanni +Gustavo +Ibrahim +Jabari +Jaquan +Jay +Jayden +Jelani +Jesus +Kai +Kelvin +Kendall +Leo +Marco +Mason +Quinn +Rafael +Raphael +Rashad +Seth +Tariq +Tony +Travis +Trevor +Troy +Antoine +Anton +Bernard +Brett +Bryce +Carl +Casey +Cedric +Cesar +Conor +Cristopher +Damon +Danny +Darnell +Darryl +Deon +Deonte +Derek +Desean +Devonte +Drew +Earl +Edgar +Erik +Frederick +Harold +Hunter +Jamari +Jasper +Jaylin +Jermaine +Jerome +Jihad +Jonas +Jorge +Juwan +Kenny +Khalid +Lamont +Lawrence +Leon +Marcell +Markel +Maximilian +Preston +Rashard +Rasheed +Shane +Shaun +Stephon +Taylor +Terry +Tevon +Tyrone +Tyson +Michael +John +William +Christopher +Joshua +Anthony +James +Kevin +Daniel +Nicholas +Robert +David +Joseph +Alexander +Matthew +Samuel +Thomas +Andrew +Isaiah +Jacob +Justin +Eric +Benjamin +Brandon +Jordan +Charles +Brian +Aaron +Christian +Elijah +Ryan +Jonathan +Jalen +Ethan +Jason +Sean +Jeremiah +Patrick +Antonio +Adam +Aidan +Cameron +Henry +Caleb +Noah +Tyler +Zachary +Carlos +Dylan +Jack +Malik +Marcus +Sebastian +Kenneth +Stephen +Peter +Jackson +Timothy +Xavier +Connor +Nathan +Nathaniel +Steven +Chase +Liam +Gabriel +Gregory +Jared +Kyle +Nicolas +Ian +Jeremy +Luke +Richard +George +Lucas +Ronald +Bryce +Devin +Diego +Edward +Evan +Jamal +Omar +Oscar +Trevon +Bryan +Jaden +Javon +Malachi +Colin +Daquan +Darius +Devon +Jaylen +Julian +Khalil +Maurice +Max +Andre +Austin +Erik +Mekhi +Paul +Shane +Vincent +Alex +Carter +Derrick +Donovan +Isaac +Jake +Jose +Leo +Mark +Marquis +Melvin +Micah +Simon +Tyrone +Victor +Ahmad +Emmanuel +Erick +Logan +Luis +Marco +Maxwell +Miles +Myles +Owen +Theodore +Avery +Cole +Damon +Dante +Davon +Deandre +Deonte +Edgar +Edwin +Eli +Garrett +Jaquan +Jayden +Keon +Kevon +Philip +Tavon +Troy +Alejandro +Angelo +Antoine +Bennett +Corey +Curtis +Demarco +Derek +Dwayne +Frank +Hunter +Jesse +Juan +Lawrence +Lukas +Mason +Phillip +Rashad +Reginald +Shawn +Terrell +Wayne +Ahmed +Allen +Alonzo +Amir +Arthur +Bernard +Cornelius +Dandre +Dennis +Elias +Gerald +Graham +Jabari +Jeffrey +Jermaine +Jerome +Johnathan +Jorge +Kobe +Malcolm +Marcellus +Mauricio +Quentin +Scott +Zion +Andres +Andy +Ari +Brendan +Calvin +Cesar +Damani +Darnell +Darren +Dejuan +Eduardo +Francisco +Isiah +Jamar +Josue +Kareem +Keith +Kelvin +Kyree +Louis +Martin +Marvin +Mohammed +Moises +Nelson +Quinn +Raymond +Roberto +Seth +Shemar +Solomon +Tyrell +Tyrese +Angel +Anton +Antwan +Blake +Bradley +Cristian +Darrell +Darryl +Davion +Declan +Dominic +Dominique +Donte +Emanuel +Ezra +Giovanni +Griffin +Harrison +Hector +Ivan +Jaiden +Jajuan +Jaylin +Jeffery +Joel +Jonah +Kendall +Lamar +Lamont +Manuel +Mario +Marlon +Maximilian +Mitchell +Ricardo +Russell +Spencer +Stanley +Tobias +Travis +Vernon +Wesley +Michael +William +James +John +David +Alexander +Kevin +Joshua +Samuel +Christopher +Thomas +Daniel +Joseph +Jordan +Matthew +Andrew +Benjamin +Charles +Christian +Elijah +Jason +Nicholas +Anthony +Ethan +Robert +Gabriel +Jonathan +Brian +Aidan +Ryan +Aaron +Henry +Isaiah +Eric +Zachary +Jacob +Patrick +Brandon +Sean +Ian +Jalen +Cameron +Xavier +Justin +Luke +Nathan +Noah +Jeremiah +Dylan +Nathaniel +Jack +Peter +Adam +Malik +Oscar +Tyler +Liam +Marcus +Carlos +Diego +Maxwell +Steven +Caleb +Jose +Nicolas +Richard +Emmanuel +Khalil +Kyle +Malachi +Jackson +Micah +Antonio +Bryan +Connor +Gregory +Jaden +Kenneth +Mark +Paul +Derrick +Donald +Julian +Lucas +Luis +Oliver +Owen +Alex +Andre +Angel +Brendan +Donovan +Isaac +Jaylen +Josiah +Mekhi +Miles +Timothy +Victor +Devin +Dominic +Edward +Evan +Jeremy +Jonah +Andy +Cole +Cristian +Darius +George +Marquis +Melvin +Sebastian +Trevor +Amari +Chase +Corey +Jorge +Mason +Maurice +Antoine +Davon +Deandre +Edwin +Juan +Marvin +Max +Ricardo +Trevon +Alejandro +Daquan +Delonte +Dennis +Frank +Gavin +Jamari +Jared +Javier +Jesse +Josue +Keith +Reginald +Ronald +Adrian +Brayan +Calvin +Deonte +Donnell +Jaquan +Jayden +Jerome +Kai +Lorenzo +Marco +Myles +Quinn +Tyree +Alan +Bryce +Colin +Darryl +Devon +Erick +Franklin +Jabari +Kyree +Larry +Leonardo +Logan +Miguel +Rashad +Stephen +Terrell +Theodore +Travis +Abraham +Ahmad +Ali +Austin +Clarence +Damien +Darrell +Demarco +Edgar +Grant +Jamal +Joel +Kelvin +Lawrence +Marc +Rafael +Terrance +Tony +Tyrell +Ahmed +Alexis +Amir +Bradley +Brady +Carl +Damon +Darren +Demetrius +Duncan +Dwayne +Earl +Gary +Gerald +Graham +Harold +Hayden +Hector +Jake +Jeffrey +Jesus +Kaleb +Keon +Leo +Luca +Marcos +Phillip +Rodney +Roger +Russell +Shaun +Spencer +Tyrone +Vincent +Wesley +Alec +Alijah +Allen +Angelo +Cesar +Conor +Curtis +Damion +Dandre +Dante +Daryl +Davion +Deon +Derek +Donte +Douglas +Eli +Elias +Elmer +Erik +Giovanni +Griffin +Jaime +Javon +Jimmy +Johnathan +Julius +Junior +Kalil +Kamari +Kavon +Kendall +Lamar +Louis +Lukas +Malcolm +Mateo +Mathew +Muhammad +Mustafa +Nigel +Omar +Philip +Preston +Rashard +Riley +Samson +Shawn +Tavon +Tristan +Troy +Wilson +Zion +Michael +William +Alexander +John +David +Daniel +James +Joshua +Christopher +Matthew +Samuel +Andrew +Ryan +Nicholas +Benjamin +Kevin +Jonathan +Anthony +Thomas +Jacob +Joseph +Aidan +Elijah +Isaiah +Robert +Ethan +Brandon +Christian +Jack +Jeremiah +Justin +Charles +Eric +Henry +Jackson +Zachary +Bryan +Noah +Sean +Antonio +Jose +Maxwell +Aaron +Jalen +Jason +Jordan +Peter +Malik +Luke +Adam +Malachi +Tyler +Dylan +Evan +Gabriel +Brian +Colin +Jaden +Nathan +Cameron +Jayden +Devin +Gregory +Lucas +Ian +Liam +Marcus +Caleb +Carlos +Connor +Edward +Isaac +Nicolas +Owen +Logan +Nathaniel +Patrick +Xavier +Andre +Jeremy +Paul +Angel +Khalil +Kyle +Richard +Timothy +Victor +Bryce +Max +Miles +Emmanuel +Juan +Mark +Maurice +Oscar +Alex +Alexis +Darren +Dominic +Micah +Oliver +Sebastian +Adrian +Darius +Derrick +Donovan +Edwin +Gavin +Jeffrey +Jonah +Julian +Kyree +Marquis +Quinn +Stephen +Steven +Theodore +Zion +Cristian +Erik +Keith +Kenneth +Mohamed +Amir +Andy +Brendan +Carter +Damari +George +Griffin +Jaylen +Leo +Miguel +Omar +Ronald +Simon +Spencer +Terrell +Austin +Cole +Eli +Joel +Josue +Louis +Mateo +Mekhi +Melvin +Vincent +Aiden +Corey +Jabari +Jerome +Jorge +Luis +Philip +Reginald +Delonte +Demetrius +Dwayne +Jamal +Kai +Martin +Marvin +Shawn +Tyree +Walter +Amari +Antoine +Blake +Brayan +Calvin +Chase +Deandre +Deon +Diego +Jermaine +Kaleb +Leon +Marcellus +Marco +Mason +Seth +Shane +Tobias +Tony +Trevor +Tyrell +Wesley +Abraham +Anderson +Angelo +Baby +Cesar +Conor +Darrell +Daryl +Davis +Davon +Declan +Demari +Dennis +Dequan +Devon +Elias +Erick +Fernando +Finn +Grant +Ivan +Jamar +Jamari +Jared +Kareem +Lance +Luca +Lukas +Malcolm +Marc +Marcos +Marquette +Marquise +Myles +Omari +Parker +Travon +Tristan +Alan +Albert +Alejandro +Alonzo +Antony +Ari +Ashton +Bernard +Craig +Donald +Donte +Drew +Edgar +Emanuel +Emilio +Harrison +Hugo +Hunter +Issac +Jaquan +Javier +Jesse +Jesus +Julius +Kamari +Kelvin +Keon +Kobe +Lamont +Larry +Leonard +Lorenzo +Manuel +Matias +Maximilian +Micheal +Milo +Pablo +Phillip +Ricardo +Roberto +Sam +Terrence +Tomas +Weston +Winston +Wyatt +William +John +Alexander +Joshua +Anthony +Michael +Daniel +Andrew +Kevin +David +Benjamin +James +Christopher +Christian +Ryan +Matthew +Nicholas +Samuel +Jacob +Joseph +Robert +Charles +Noah +Elijah +Justin +Thomas +Ethan +Jason +Eric +Jeremiah +Brandon +Isaiah +Jonathan +Brian +Jordan +Aidan +Bryan +Jack +Devin +Henry +Gabriel +Tyler +Zachary +Marcus +Antonio +Carlos +Jose +Nathaniel +Aaron +Dylan +Jackson +Jalen +Owen +Jayden +Sebastian +Sean +Xavier +Maxwell +Edward +Jaden +Malachi +Adam +Ian +Nathan +Paul +Andre +Cristian +Julian +Khalil +Colin +Juan +Malik +Max +Brendan +Caleb +Connor +Lucas +Mark +Timothy +Aiden +Luke +Patrick +Evan +Nicolas +Steven +Alex +Angel +Bryce +Cameron +Cole +Derrick +Diego +Emmanuel +Isaac +Kyle +Eli +Mekhi +Miles +Oliver +Peter +Theodore +Adrian +Calvin +Gregory +Leo +Liam +Victor +Alejandro +Amir +Andres +Javier +Josiah +Luis +Marco +Mohamed +Omar +Oscar +Richard +Amari +Chase +Jake +Joel +Jonah +Kyree +Myles +Phillip +Reginald +Ronald +Spencer +Allen +Babyboy +Carter +Darius +Jaylen +Jeffrey +Kenneth +Maurice +Shawn +Tristan +Darren +George +Jeremy +Josue +Keith +Larry +Mason +Muhammad +Stephen +Alexis +Angelo +Davon +Delonte +Demarco +Dominic +Franklin +Gary +Graham +Jabari +Jamari +Jaquan +Jorge +Marquis +Martin +Melvin +Ricardo +Riley +Troy +Ahmad +Alan +Andy +Antoine +Ari +Arthur +Bradley +Brayan +Collin +Declan +Derek +Donte +Edwin +Erik +Frederick +Hayden +Ivan +Jamal +Jamar +Jimmy +Kai +Lorenzo +Micah +Miguel +Quentin +Sergio +Seth +Simon +Trevor +Tyrone +Vincent +Wesley +Alessandro +Blake +Carl +Carson +Cooper +Cyrus +Damon +Darrell +Deandre +Devon +Dion +Dominick +Donovan +Eduardo +Elias +Emerson +Erick +Finn +Francisco +Griffin +Ibrahim +Jared +Jefferson +Jermaine +Johnathan +Kelvin +Logan +Luca +Marc +Marvin +Philip +Preston +Raymond +Terrell +Tony +Amar +Austin +Axel +Ben +Bernard +Brady +Corey +Curtis +Damari +Damien +Darnell +Demetrius +Dennis +Dwayne +Emanuel +Ezekiel +Ezra +Fernando +Francis +Grant +Gustavo +Harrison +Ignacio +Jaylin +Jesus +Johnny +Kamari +Kameron +Karim +Keonte +Leonardo +Louis +Manuel +Marlon +Maximilian +Mike +Nasir +Nelson +Parker +Quinn +Santiago +Stephon +Tobias +Tyree +Tyrell +Zion +William +John +James +Michael +Alexander +Kevin +Daniel +Anthony +Charles +Christopher +Joshua +Benjamin +Henry +David +Matthew +Joseph +Samuel +Andrew +Ethan +Nicholas +Brandon +Christian +Jacob +Bryan +Elijah +Thomas +Jordan +Isaiah +Jackson +Jason +Jonathan +Noah +Brian +Robert +Jack +Ryan +Zachary +Aaron +Jeremiah +Antonio +Gabriel +Luke +Sean +Tyler +Adam +Lucas +Aidan +Evan +Ian +Juan +Malik +Owen +Eric +Justin +Nathaniel +Malachi +Nathan +Marcus +Max +Patrick +Dylan +Jayden +Diego +Paul +Theodore +Devin +Jose +Richard +Sebastian +Victor +Andre +Angel +Cameron +Edward +Jalen +Julian +Kyle +Liam +Carlos +Jeffrey +Caleb +Damari +Darius +Edwin +Jaden +Jeremy +Khalil +Luis +Nicolas +Oliver +Alex +Cristian +Davon +Franklin +George +Gregory +Isaac +Jaylen +Jonah +Kenneth +Lorenzo +Miguel +Oscar +Timothy +Griffin +Ivan +Kelvin +Logan +Maxwell +Omar +Xavier +Connor +Gavin +Mekhi +Myles +Steven +Andy +Cole +Colin +Dominic +Donovan +Elias +Keith +Luca +Mark +Micah +Peter +Stephen +Aiden +Amari +Calvin +Deandre +Frederick +Giovanni +Harrison +Jake +Jamari +Jefferson +Jerome +Jesse +Josiah +Kai +Leo +Mason +Miles +Ricardo +Alexis +Amir +Antoine +Chase +Derrick +Emmanuel +Lawrence +Marquis +August +Bryce +Carter +Dennis +Erick +Malcolm +Manuel +Mario +Vincent +Zion +Allen +Babyboy +Cesar +Desmond +Eli +Graham +Hector +Jesus +Johnathan +Josue +Marco +Martin +Melvin +Nasir +Reginald +Shane +Terrell +Trevon +Trevor +Wesley +Adrian +Ahmed +Brady +Corey +Damien +Dante +Dean +Delonte +Devon +Eduardo +Erik +Finn +Jabari +Jamar +Jared +Javier +Jermaine +Joel +Johnny +Jorge +Leon +Marquise +Marvin +Mateo +Micheal +Nelson +Riley +Shaun +Solomon +Tristan +Walter +Abraham +Ahmad +Alan +Alec +Andres +Anton +Avery +Brendan +Cayden +Cyrus +Demetrius +Derek +Donald +Duane +Fernando +Garrett +Hayden +Javon +Jimmy +Julio +Kamari +Kyree +Maximilian +Mitchell +Noel +Omari +Omarion +Parker +Roberto +Ronald +Ronan +Ruben +Santana +Santiago +Shawn +Simon +Spencer +Taylor +Tyrell +Wade +Wyatt +William +Michael +Christopher +Anthony +Alexander +Daniel +John +Kevin +James +Joshua +Samuel +David +Jonathan +Nicholas +Jason +Matthew +Thomas +Bryan +Benjamin +Joseph +Andrew +Ryan +Charles +Henry +Noah +Christian +Isaiah +Elijah +Justin +Xavier +Gabriel +Jacob +Lucas +Carlos +Jeremiah +Robert +Zachary +Jack +Jordan +Jose +Antonio +Brian +Ethan +Malachi +Nathan +Caleb +Jackson +Luis +Aaron +Aidan +Luke +Owen +Sean +Sebastian +Tyler +Alex +Peter +Andre +Diego +Jayden +Julian +Dylan +Edwin +Marcus +Timothy +Brandon +Cameron +Connor +Evan +Ian +Richard +Josiah +Nathaniel +Angel +Eric +Logan +Devin +Juan +Patrick +Steven +Adam +Adrian +Carter +Chase +Isaac +Liam +Maxwell +Tristan +Cristian +Dominic +Jaylen +Kenneth +Franklin +George +Jalen +Khalil +Max +Micah +Emmanuel +Jefferson +Jeffrey +Leo +Malik +Quinn +Victor +Alexis +Amir +Gregory +Jonah +Maurice +Paul +Zion +Brendan +Erick +Jaden +Joel +Kaleb +Nelson +Oliver +Raymond +Bryce +Cesar +Colin +Donnell +Edgar +Josue +Kyle +Mekhi +Nicolas +Stephen +Theodore +Andy +Cole +Edward +Finn +Jabari +Jamari +Kyree +Marvin +Miles +Oscar +Ricardo +Tony +Aiden +Alan +Austin +Elias +Harrison +Ivan +Jake +Jeremy +Mario +Mark +Mason +Miguel +Omar +Seth +Alejandro +Amari +Calvin +Darius +Declan +Devon +Elmer +Erik +Francisco +Garrett +Kaden +Kai +Lawrence +Leonardo +Levi +Martin +Melvin +Nasir +Philip +Ronald +Tyrone +Vincent +Antoine +Blake +Collin +Dante +Demetrius +Derrick +Eli +Fernando +Graham +Hayden +Jamal +Javier +Jesus +Jordy +Keith +Marco +Randy +Spencer +Stephon +Wyatt +Abraham +Ahmad +Damien +Dandre +Demari +Donovan +Dwayne +Eduardo +Felix +Frank +Gavin +Grant +Jared +Kamari +Kareem +Kelvin +Keon +Kieran +Louis +Luca +Manuel +Mateo +Matteo +Nehemiah +Quincy +Rafael +Rashad +Rodney +Roman +Santiago +Shane +Stanley +Terrell +Wesley +Albert +Alec +Allen +Ariel +Asher +Avery +Bernard +Branden +Caden +Clarence +Darnell +Darrell +Darren +Delonte +Demarcus +Dennis +Dominick +Emanuel +Emerson +Ever +Gideon +Giovanni +Griffin +Harry +Hector +Israel +Jairo +Jamar +Jelani +Jermaine +Jesse +Jude +Khalid +King +Lamont +Landon +Makhi +Malcolm +Marcellus +Marcos +Matias +Nikolas +Phillip +Preston +Raul +Rowan +Sergio +Shawn +Simon +Solomon +Tavon +Taylor +Terrence +Tobias +Travis +Trenton +Tyree +Walter +Wilson +William +John +Christopher +Michael +Anthony +Alexander +Daniel +Kevin +Andrew +Noah +James +Jonathan +Samuel +David +Joshua +Matthew +Benjamin +Henry +Brandon +Charles +Christian +Jason +Justin +Jeremiah +Jacob +Dylan +Elijah +Ethan +Gabriel +Nathan +Nicholas +Thomas +Joseph +Isaiah +Jose +Ryan +Brian +Bryan +Zachary +Carlos +Robert +Ian +Jack +Xavier +Eric +Jordan +Nicolas +Oliver +Aaron +Lucas +Cameron +Evan +Jaden +Jayden +Diego +Malachi +Malik +Steven +Aidan +Andre +Caleb +Connor +Edward +Jackson +Liam +Nathaniel +Patrick +Cristian +Isaac +Luke +Sebastian +Angel +Antonio +George +Sean +Zion +Edwin +Jaylen +Joel +Josue +Juan +Julian +Kenneth +Oscar +Owen +Richard +Tyler +Adrian +Erick +Jeffrey +Miles +Peter +Theodore +Chase +Emmanuel +Josiah +Khalil +Luis +Marcus +Max +Victor +Gavin +Marvin +Tristan +Austin +Brendan +Kamari +Leo +Timothy +Alex +Alexis +Colin +Darius +Kai +Keith +Micah +Tyrone +Adam +Amir +Anderson +Andy +Bryce +Devin +Elias +Kyle +Mark +Maurice +Simon +Allen +Amari +Byron +Cooper +Derrick +Dominic +Emanuel +Harrison +Jake +Jamari +Jefferson +Jonah +Landon +Luca +Martin +Nehemiah +Vincent +Aiden +Carter +Cyrus +Donovan +Emerson +Giovanni +Jesus +Logan +Maxwell +Mekhi +Melvin +Seth +Abraham +Alejandro +Antoine +Axel +Brady +Cole +Damari +Damien +Deandre +Isiah +Jalen +Jeremy +Jermaine +Kelvin +Lawrence +Leonardo +Malcolm +Manuel +Mario +Mason +Miguel +Paul +Philip +Alan +Asher +Caden +Chris +Corey +Damian +Demetrius +Eli +Finn +Gregory +Immanuel +Israel +Jerome +Joaquin +Kyree +Marcos +Nelson +Nolan +Omar +Preston +Rafael +Ricardo +Spencer +Stephen +Walter +Ahmed +Allan +Andres +Antwan +Brayden +Cesar +Danny +Davion +Derek +Devon +Edgar +Elmer +Ezra +Fernando +Griffin +Hector +Jaiden +Jamar +Javier +Jorge +Julius +Kaleb +Lorenzo +Louis +Marquis +Mateo +Micheal +Moises +Nasir +Prince +Quinn +Reginald +Ricky +Ronald +Ruben +Solomon +Trevon +Troy +Tucker +Wesley +Wyatt +Adonis +Amare +Ari +Ayden +Beckett +Blake +Dante +Daquan +Daron +Davon +Deangelo +Demarcus +Dillon +Donte +Gary +Gideon +Grant +Grayson +Hudson +Ismael +Ivan +Jabari +Jadon +Jared +Jerry +Johnathan +Justice +Kaden +Kaiden +Keon +Lamont +Lukas +Markus +Marquise +Messiah +Myles +Quentin +Raphael +Raymond +Rowan +Shawn +Tavon +Terrell +Travis +Ulises +William +Alexander +Michael +John +Christopher +Samuel +Daniel +Elijah +Kevin +James +Joshua +Benjamin +David +Henry +Anthony +Christian +Joseph +Andrew +Charles +Matthew +Jayden +Justin +Gabriel +Jonathan +Thomas +Isaac +Ryan +Antonio +Ethan +Bryan +Sean +Brandon +Jason +Noah +Robert +Jacob +Xavier +Jack +Nathan +Nicholas +Dylan +Isaiah +Jeremiah +Brian +Angel +Jackson +Lucas +Nathaniel +Sebastian +Diego +Eric +Evan +Jordan +Luke +Zachary +Edwin +Zion +Emmanuel +Jaden +Jose +Liam +Carlos +Aaron +Aiden +Cameron +Colin +Ian +Adrian +Caleb +Jefferson +Tyler +Adam +Edward +Malik +Max +Owen +Steven +Khalil +Luis +Malachi +Nicolas +Oliver +Aidan +Amari +Connor +Erick +Jamari +Jaylen +Josue +Miles +Patrick +Gavin +Ivan +Jeffrey +Julian +Kenneth +Micah +Andre +Calvin +Demetrius +Derrick +Eli +George +Joel +Juan +Cristian +Devin +Mekhi +Omar +Oscar +Richard +Timothy +Victor +Amir +Gregory +Jonah +Josiah +Kelvin +Logan +Mark +Theodore +Anderson +Bryce +Dominic +Elias +Frank +Javier +Jeremy +Kyle +Marvin +Maurice +Nasir +Paul +Peter +Walter +Carter +Chase +Cole +Cooper +Darius +Davon +Franklin +Kai +Kaleb +Leo +Marco +Mateo +Maxwell +Miguel +Simon +Stephen +Vincent +Alex +Alexis +Andy +Austin +Cristopher +Dominick +Donovan +Donte +Emerson +Griffin +Harrison +Hector +Jaiden +Johnathan +King +Luca +Marcus +Mason +Seth +Shane +Tomas +Alan +Alec +Alejandro +Derek +Francisco +Jesus +Kaiden +Kyree +Landon +Lorenzo +Nelson +Pedro +Quinn +Ricardo +Santiago +Solomon +Abraham +Anton +Bennett +Blake +Brady +Brayan +Damari +Danny +Declan +Deon +Dillon +Eduardo +Erik +Frederick +Grant +Jamal +Jermiah +Jerry +Jorge +Keith +Leonard +Leonardo +Lincoln +Lukas +Mario +Martin +Matteo +Melvin +Mohamed +Roberto +Shawn +Wesley +Aden +Ahmed +Alijah +Allen +Amare +Antoine +Ariel +Asher +Cesar +Cordell +Curtis +Damian +Darnell +Deandre +Delonte +Devon +Edgar +Elliot +Fernando +Gerald +Grayson +Ismael +Izaiah +Jalen +Jamar +Jasper +Jesse +Johan +Johnny +Julius +Kamari +Karon +Kendall +Marc +Marlon +Maximilian +Nigel +Noel +Pablo +Preston +Randy +Roman +Ronan +Spencer +Steve +Terrance +Terry +Tristan +Troy +Warren +Wyatt +Zaire +William +Michael +James +Alexander +Daniel +Christopher +John +Joshua +David +Elijah +Jacob +Anthony +Nicholas +Andrew +Henry +Jonathan +Samuel +Jayden +Noah +Charles +Christian +Kevin +Thomas +Benjamin +Bryan +Jack +Jason +Justin +Dylan +Matthew +Ryan +Robert +Joseph +Jeremiah +Ethan +Liam +Angel +Brandon +Gabriel +Isaac +Xavier +Cameron +Diego +Isaiah +Brian +Carlos +Caleb +Evan +Lucas +Jose +Ian +Jackson +Luke +Nathan +Oliver +Aaron +Jordan +Sean +Tyler +Adrian +Julian +Nathaniel +Owen +Aidan +Edward +Khalil +Sebastian +Tristan +Zachary +Zion +Aiden +Amari +Antonio +Eli +Miles +Peter +Jaden +Leo +Malik +Mason +Steven +Emmanuel +Jeremy +Josiah +Juan +Max +Micah +Andy +Carter +Devin +Josue +Nicolas +Oscar +Richard +Amir +Colin +Connor +Dominic +Elias +Eric +George +Gregory +Luis +Malachi +Marcus +Patrick +Anderson +Andre +Jonah +Logan +Luca +Alexis +Chase +Darius +Derrick +Erick +Grant +Javier +Maxwell +Nasir +Alex +Declan +Santiago +Simon +Theodore +Adam +Byron +Cole +Cooper +Emerson +Gavin +Graham +Jamari +Jaylen +Marco +Mateo +Mekhi +Timothy +Ariel +Blake +Bryce +Calvin +Cristian +Damari +Donovan +Edwin +Hudson +Jaiden +Jefferson +Kai +Kenneth +Mohamed +Myles +Semaj +Victor +Walter +Wilson +Wyatt +Alan +Alejandro +Allen +Brendan +Davon +Eduardo +Emmett +Ivan +Jasper +Jaylin +Joaquin +Joel +Kaleb +Keith +Malcolm +Mario +Mark +Maurice +Melvin +Paul +Riley +Vincent +August +Axel +Brady +Demetrius +Dennis +Felix +Giovanni +Harrison +Jamal +Marvin +Omar +Philip +Raphael +Sergio +Stephen +Terrell +Zaire +Abraham +Alessandro +Alijah +Ayden +Brayan +Carl +Cristopher +Cyrus +Danny +Darwin +Delonte +Eamon +Elmer +Gerald +Ibrahim +Jamar +Jeffrey +Jesus +Kelvin +Kian +Kyle +Kyree +Landon +Levi +Lincoln +Markell +Matias +Maximilian +Nehemiah +Noel +Nolan +Parker +Quentin +Quinn +Rafael +Ricardo +Ali +Andres +Angelo +Antoine +Antony +Asher +Cesar +Conrad +Deandre +Demari +Emanuel +Ezra +Francisco +Franklin +Jake +Jared +Kayden +Keyon +Kieran +King +Leonardo +Makai +Makhi +Marcos +Mathew +Matteo +Mauricio +Messiah +Randy +Rashad +Reginald +Samir +Tavon +Tomas +Troy +Tyree +William +Alexander +Henry +John +Christopher +James +Anthony +Michael +Joshua +Benjamin +Elijah +Noah +Daniel +Jayden +Ethan +Jonathan +Kevin +David +Jacob +Matthew +Charles +Christian +Nathan +Ryan +Andrew +Brandon +Angel +Gabriel +Nicholas +Samuel +Thomas +Aiden +Nathaniel +Dylan +Isaiah +Joseph +Caleb +Jackson +Justin +Owen +Tyler +Jeremiah +Jason +Liam +Cameron +Mason +Robert +Xavier +Max +Lucas +Evan +George +Jose +Aidan +Brian +Zachary +Isaac +Jack +Josiah +Oliver +Connor +Sebastian +Zion +Amari +Antonio +Miles +Adam +Adrian +Bryan +Jamari +Edwin +Jordan +Julian +Malik +Micah +Edward +Jaden +Leo +Luke +Malachi +Aaron +Amir +Gavin +Khalil +Logan +Nicolas +Omar +Peter +Steven +Theodore +Anderson +Carter +Eric +Grant +Josue +Luis +Maxwell +Carlos +Chase +Diego +Dominic +Eli +Hector +Jeffrey +Juan +Leonardo +Lorenzo +Timothy +Alejandro +Andre +Ayden +Elias +Emmanuel +Erick +Jaylen +Joel +Kenneth +Marcus +Parker +Ricardo +Richard +Derrick +Devin +Emerson +Francisco +Grayson +Gregory +Ian +Jonah +Landon +Oscar +Paul +Sean +Tristan +Aden +Bryce +Cole +Colin +Cooper +Hudson +Jefferson +Kingston +Louis +Marco +Myles +Patrick +Riley +Victor +Wyatt +Abraham +Ali +Ashton +Axel +Brayan +Declan +Donovan +Everett +Ezra +Finn +Jaiden +Jamal +Kaleb +Kamari +Keith +King +Larry +Melvin +Nolan +Ronald +Santiago +Simon +Alex +Antoine +Austin +Calvin +Cesar +Cristian +Darius +Deandre +Israel +Ivan +Jace +Jake +Jalen +Kai +Kaiden +Kayden +Lamar +Lawrence +Rafael +Sincere +Wesley +Ariel +Asher +Blake +Corey +Demari +Desmond +Eduardo +Elliott +Frank +Hunter +Jesse +Jesus +Jimmy +Judah +Malcolm +Mark +Marley +Marvin +Mateo +Mekhi +Milo +Nasir +Pedro +Philip +Prince +Saul +Travis +Trevon +Vincent +Abel +Ahmir +Andy +Ari +Brendan +Brennan +Caden +Campbell +Casey +Cyrus +Darnell +Darren +Davion +Douglas +Felix +Finnegan +Griffin +Harrison +Jabari +Jaylin +Jeffery +Joaquin +Jorge +Kaden +Kameron +Karon +Kenzo +Keon +Makhi +Markell +Maurice +Miguel +Nehemiah +Rashad +Raymond +Reginald +Shane +Terrance +Theo +Tony +Zaire +Zyaire +William +Alexander +James +Daniel +Christopher +Benjamin +Henry +John +Joshua +Jayden +Anthony +Elijah +Ryan +Michael +Ethan +Kevin +Noah +Aiden +Christian +Samuel +David +Andrew +Matthew +Jeremiah +Jacob +Isaiah +Luke +Justin +Thomas +Oliver +Zion +Joseph +Charles +Owen +Robert +Jack +Jonathan +Khalil +Mason +Nathan +Ian +Xavier +Evan +Gabriel +Max +Nicholas +Dylan +Jason +Caleb +Julian +Lucas +Cameron +Leo +Liam +Miles +Nathaniel +Zachary +Angel +Jackson +Jaden +Sebastian +Amir +Chase +Theodore +Brandon +Bryan +George +Isaac +Carter +Josiah +Aaron +Brian +Jordan +Mateo +Tristan +Colin +Malik +Micah +Adam +Axel +Connor +Declan +Eli +Jonah +Sean +Tyler +Alex +Edward +Kayden +Antonio +Ashton +Ayden +Diego +Luis +Oscar +Timothy +Adrian +Asher +Austin +Carlos +Cristian +Eric +Jaiden +Jose +Josue +Logan +Mekhi +Amari +Dominic +Harrison +Peter +Simon +Steven +Anderson +Caden +Felix +Joel +Kingston +Louis +Malachi +Marcus +Maxwell +Patrick +Ronald +Stephen +Aidan +Alexis +Cole +Emilio +Gregory +Omar +Paul +Victor +Alejandro +Cesar +Damari +Ezra +Finn +Gavin +Graham +Jaylen +Jude +Kai +Landon +Leonardo +Peyton +Rafael +Riley +Vincent +Abel +Aden +Ahmad +Blake +Bryson +Emmanuel +Erick +Everett +Grant +Jamari +Jeremy +Kaleb +Walter +Wesley +Wyatt +Andre +Andres +Ari +August +Calvin +Charlie +Danny +Dean +Delonte +Elias +Elliott +Grayson +Hugo +Jefferson +Juan +Kaden +Kamari +Kenneth +King +Lawrence +Nehemiah +Nicolas +Noel +Parker +Rhys +Terrell +Zaire +Abraham +Angelo +Brayden +Felipe +Hudson +Israel +Jamal +Javier +Jayson +Jeffrey +Joaquin +Keith +Lukas +Malcolm +Mark +Maximilian +Messiah +Milo +Nasir +Nico +Nolan +Prince +Shaun +Terrance +Ahmed +Amare +Arthur +Atticus +Bradley +Brayan +Brendan +Bryce +Carson +Darren +Deon +Derrick +Eduardo +Edwin +Emanuel +Grady +Hayes +Hunter +Ismael +Ivan +Jalil +Jared +Jasper +Jesus +Kaiden +Kelvin +Kyree +Lincoln +Luca +Luka +Martin +Miguel +Nelson +Raheem +Rashad +Rayan +Ricardo +Richard +Rohan +Samir +Sincere +Spencer +Tobias +William +Alexander +Henry +John +James +Daniel +Benjamin +Samuel +David +Jacob +Christopher +Anthony +Elijah +Ryan +Michael +Noah +Ethan +Dylan +Liam +Christian +Thomas +Aiden +Charles +Kevin +Mason +Matthew +Jonathan +Lucas +Brandon +Joshua +Nathan +Nicholas +Sebastian +Carlos +Gabriel +Jayden +Andrew +Joseph +Caleb +Jackson +Justin +Nathaniel +Carter +Isaac +Jack +Jeremiah +Oliver +Robert +Zachary +Cameron +Diego +Owen +Theodore +Aaron +Eli +Luke +Bryan +Evan +Jason +Leo +Adrian +Isaiah +Zion +Angel +Max +Steven +Tyler +Amari +Marcus +Micah +Peter +Xavier +Amir +Jordan +Anderson +Ian +Julian +Khalil +Logan +Maxwell +Miles +Antonio +Dominic +Juan +Kai +Luis +Mateo +Blake +Elias +Joel +Luca +Mark +Patrick +Tristan +Adam +Gavin +Malachi +Aidan +Alex +Ayden +Colin +Edward +Felix +Jose +Kenneth +Nicolas +Oscar +Abraham +Chase +Connor +Elliot +Jamari +Josiah +Omar +Paul +Bryce +Damari +Devin +Eric +George +Kamari +Miguel +Richard +Sean +Timothy +Wyatt +Alexis +Axel +Declan +Everett +Jefferson +Josue +Kayden +Landon +Malik +Wesley +Ashton +August +Calvin +Grayson +Jeremy +Jonah +King +Lincoln +Messiah +Ronald +Simon +Alejandro +Brian +Byron +Damian +Dennis +Dillon +Eduardo +Emmanuel +Finn +Frederick +Jaden +Jayson +Jeffrey +Kaleb +Kidus +Milo +Noel +Santiago +Silas +Aden +Ali +Allen +Andre +Arjun +Austin +Avery +Cole +Cristian +Cyrus +Emmett +Graham +Grant +Gregory +Hugh +Jasper +Kaden +Kaiden +Karter +Marco +Marshall +Matias +Nehemiah +Raphael +Riley +Seth +Ahmad +Alexandre +Andy +Camden +Carl +Cesar +Chris +Cooper +Darwin +Demetrius +Derek +Donte +Edwin +Harrison +Hayden +Hugo +Iker +Jake +Jesus +Kyle +Leonardo +Levi +Lorenzo +Louis +Lukas +Marcos +Mekhi +Nahom +Nolan +Parker +Semaj +Theo +Zamari +Abel +Amare +Ari +Bennett +Braden +Brendan +Caden +Darius +Derrick +Donovan +Dwayne +Eliab +Elliott +Ellis +Emerson +Erick +Ezequiel +Ezra +Hector +Hunter +Ivan +Jahlil +Jaiden +Jaylen +Kameron +Keith +Kiran +Lawrence +Levon +Marquis +Myles +Nasir +Nazir +Philip +Rafael +Randy +Rohan +Ronan +Roy +Skyler +Trevor +Troy +Tyrone +Victor +Zaiden +Zaire +Zyaire +William +Alexander +John +Henry +Samuel +Noah +Aiden +James +Jacob +Daniel +Michael +Thomas +Christopher +Matthew +Ethan +Dylan +Jayden +David +Joshua +Liam +Anthony +Charles +Christian +Joseph +Mason +Oliver +Benjamin +Ryan +Sebastian +Theodore +Andrew +Elijah +Lucas +Kevin +Caleb +Jackson +Aaron +Brandon +Justin +Gabriel +Jeremiah +Tyler +Amir +Ian +Logan +Nicholas +Xavier +Carter +Eli +Isaac +Isaiah +Jack +Josiah +Leo +Angel +Miles +Nathan +Robert +Chase +Eric +Adrian +Bryce +Dominic +Jonathan +Kai +Mateo +Zion +George +Max +Emmanuel +Evan +Julian +King +Luke +Owen +Patrick +Adam +Carlos +Jordan +Maxwell +Zachary +Blake +Cameron +Grant +Malachi +Nathaniel +Santiago +Antonio +Jason +Jayceon +Jose +Luca +Oscar +Peter +Colin +Elias +Kaleb +Khalil +Aidan +Connor +Declan +Diego +Harrison +Hunter +Jeffrey +Amari +Anderson +Edward +Jace +Jefferson +Kenneth +Miguel +Parker +Roman +Simon +Steven +Asher +Bryan +Gavin +Graham +Hudson +Jaden +Jeremy +Jude +Kayden +Landon +Micah +Nicolas +Omar +Paul +Sean +Victor +Wesley +Andy +Arthur +Axel +Bennett +Caden +Enzo +Gregory +Tristan +Ali +Avery +Calvin +Corey +Cristian +Damian +Grayson +Joel +Josue +Kyle +Marcus +Messiah +Ricardo +Vincent +Ariel +Ayden +Brayden +Cesar +Cole +Dean +Emmett +Ezra +Hayden +Jonah +Marcos +Martin +Maximilian +Nehemiah +Noel +Princeton +Timothy +Wyatt +Abel +Abraham +Alexis +Andre +Ari +Ashton +Austin +Brian +Brooks +Desmond +Donovan +Everett +Felix +Hugo +Jake +Kaden +Kaiden +Kameron +Kendrick +Kingston +Leonardo +Louis +Luis +Makhi +Malik +Manuel +Mark +Matteo +Maurice +Mekhi +Rafael +Sincere +Solomon +Tyson +Zayden +Ahmad +Alex +Andres +August +Brady +Cooper +Damari +Derek +Dominick +Elliot +Emerson +Emilio +Ezekiel +Fernando +Finn +Francisco +Holden +Israel +Jelani +Juan +Keith +Kyrie +Lincoln +Marvin +Myles +Nolan +Peyton +Raymond +Rowan +Semaj +Zaire +Amanuel +Bradley +Bryson +Carl +Charlie +Cristopher +Darren +Deon +Devin +Donald +Douglas +Ellis +Emanuel +Erick +Frank +Hugh +Ibrahim +Jair +Jaleel +Jasiah +Jaxon +Jesus +Karter +Kelvin +Langston +Melvin +Mohamed +Ravi +Reed +Rhys +Ronald +Rory +Samir +Tony +Travis +Wallace +Zaiden +Alexander +William +John +Benjamin +Charles +James +Noah +Samuel +Henry +Jacob +Michael +Daniel +Dylan +Oliver +Liam +Christopher +Ethan +Lucas +Theodore +Aiden +David +Mason +Joshua +Jack +Logan +Sebastian +Thomas +Anthony +Joseph +Elijah +Owen +Jackson +Ryan +Gabriel +Jonathan +Nathan +Andrew +Isaac +Matthew +Jeremiah +Aaron +Caleb +Carter +Christian +George +Isaiah +Nicholas +Jayden +King +Josiah +Amir +Connor +Luke +Jason +Nathaniel +Austin +Jordan +Kevin +Leo +Maxwell +Miles +Patrick +Bryce +Julian +Nicolas +Robert +Mateo +Tyler +Cameron +Kayden +Chase +Micah +Zachary +Adam +Ashton +Declan +Jeremy +Justin +Edward +Evan +Ian +Jose +Max +Peter +Roman +Adrian +Angel +Asher +Eli +Elias +Eric +Ezra +Jeffrey +Kenneth +Nasir +Oscar +Axel +Emmett +Felix +Josue +Karter +Khalil +Xavier +August +Ayden +Brian +Bryan +Kaiden +Landon +Messiah +Prince +Vincent +Aden +Avery +Carlos +Colin +Dominic +Everett +Jaden +Jasper +Juan +Lincoln +Santana +Steven +Tristan +Andre +Antonio +Blake +Cole +Cooper +Desmond +Gavin +Harrison +Hudson +Jace +Jefferson +Jonah +Levi +Luca +Luis +Rory +Rowan +Wyatt +Zion +Abraham +Ahmad +Anderson +Brandon +Brendan +Emerson +Grayson +Nolan +Paul +Santiago +Solomon +Walter +Alex +Elliot +Grant +Jayce +Kai +Kingston +Milo +Nehemiah +Parker +Simon +Timothy +Wesley +Bennett +Cristian +Damari +Devin +Diego +Elliott +Emmanuel +Franklin +Graham +Hugo +Ibrahim +Iker +Jake +Malachi +Marco +Marcus +Mario +Martin +Raymond +Ronald +Sean +Seth +Sincere +Zayden +Zyaire +Aidan +Alejandro +Alexis +Amari +Angelo +Caden +Camden +Dallas +Darius +Davon +Edwin +Ellis +Gregory +Hayden +Jay +Jayceon +Joel +Keith +Kobe +Kyle +Leonardo +Makhi +Malik +Mark +Preston +Quinn +Rafael +Ricardo +Richard +Sawyer +Theo +Victor +Albert +Andres +Antoine +Ari +Brooks +Conor +Dakari +Damon +Darwin +Deangelo +Dillon +Erick +Harlem +Hunter +Israel +Jaiden +Jamal +Jamar +Jamari +Jamison +Javier +Jaxson +Jaylen +Jermaine +Jesse +Judah +Jude +Julius +Kaden +Kody +Lorenzo +Luka +Malcolm +Marcel +Matteo +Maximiliano +Maximus +Melvin +Myles +Noel +Rayan +Rohan +Samir +Trenton +Zyon +Mary +Margaret +Helen +Elizabeth +Anna +Dorothy +Alice +Catherine +Marie +Mildred +Beatrice +Elsie +Ethel +Blanche +Clara +Ida +Edna +Thelma +Eleanor +Irene +Lillian +Pauline +Pearl +Ruth +Florence +Agnes +Ann +Edith +Emma +Frances +Gertrude +Gladys +Mae +Virginia +Evelyn +Grace +Hilda +Louise +Mabel +Martha +Myrtle +Rose +Viola +Mary +Helen +Mildred +Margaret +Elizabeth +Dorothy +Anna +Ruth +Catherine +Elsie +Florence +Alice +Ethel +Frances +Ida +Pauline +Edith +Marie +Clara +Edna +Agnes +Louise +Marian +Pearl +Ann +Gladys +Grace +Irene +Thelma +Gertrude +Hazel +Jennie +Lillian +Rose +Virginia +Beatrice +Emma +Esther +Eva +Josephine +Martha +Sara +Sarah +Theresa +Mary +Dorothy +Helen +Elizabeth +Margaret +Anna +Mildred +Ruth +Alice +Catherine +Frances +Gladys +Anne +Elsie +Lillian +Edith +Sara +Marie +Sarah +Ethel +Florence +Louise +Edna +Pauline +Pearl +Julia +Rose +Virginia +Evelyn +Irene +Betty +Blanche +Clara +Eleanor +Gertrude +Hazel +Ida +Jane +Josephine +Katherine +Mabel +Marguerite +Marion +Marjorie +Martha +Agnes +Ann +Bertha +Ellen +Laura +Madeline +Annie +Ella +Emma +Esther +Hilda +Myrtle +Rachel +Mary +Helen +Dorothy +Elizabeth +Margaret +Mildred +Anna +Ruth +Rose +Catherine +Martha +Edna +Evelyn +Florence +Alice +Frances +Grace +Eleanor +Emma +Ethel +Myrtle +Jean +Lillian +Mabel +Marie +Beatrice +Doris +Elsie +Eva +Gertrude +Thelma +Agnes +Gladys +Irene +Sara +Alma +Clara +Hazel +Josephine +Kathryn +Louise +Pauline +Theresa +Alberta +Anne +Bertha +Edith +Hilda +Laura +Sarah +Viola +Ellen +Esther +Jane +Marguerite +Marian +Marion +Naomi +Nellie +Olive +Pearl +Rachel +Virginia +Mary +Margaret +Helen +Elizabeth +Dorothy +Ruth +Anna +Grace +Mildred +Catherine +Frances +Florence +Marie +Pauline +Lillian +Edith +Rose +Alice +Eleanor +Ida +Virginia +Clara +Ethel +Edna +Blanche +Elsie +Emma +Hazel +Ann +Beatrice +Nellie +Anne +Gladys +Hilda +Jane +Julia +Myrtle +Esther +Jennie +Louise +Mabel +Sarah +Thelma +Evelyn +Gertrude +Marguerite +Martha +Irene +Jean +Josephine +Kathryn +Pearl +Agnes +Bertha +Beulah +Doris +Katherine +Marian +Marion +Sara +Ada +Charlotte +Ella +Elva +Emily +Laura +Leona +Nancy +Victoria +Vivian +Audrey +Cecelia +Dora +Marjorie +Sophie +Stella +Veronica +Mary +Margaret +Helen +Dorothy +Anna +Elizabeth +Mildred +Ruth +Catherine +Elsie +Frances +Florence +Edna +Ethel +Alice +Josephine +Beatrice +Edith +Virginia +Ann +Anne +Eleanor +Grace +Marie +Lillian +Blanche +Martha +Gladys +Hazel +Marguerite +Sarah +Clara +Doris +Marjorie +Irene +Rose +Bertha +Emma +Esther +Evelyn +Jean +Louise +Gertrude +Pauline +Agnes +Ella +Emily +Eva +Hilda +Julia +Pearl +Sara +Stella +Ellen +Katherine +Myrtle +Thelma +Ida +Sophie +Della +Jane +Jennie +Kathryn +Laura +Marian +Marion +Alberta +Bernice +Charlotte +Nellie +Ada +Audrey +Carrie +Eliza +Lena +Leona +Madeline +Nancy +Sylvia +Beulah +Elva +Genevieve +Georgia +Harriett +Janet +Jeannette +Kathleen +Lucy +Naomi +Rebecca +Rita +Theresa +Viola +Violet +Mary +Dorothy +Margaret +Helen +Elizabeth +Anna +Mildred +Ruth +Florence +Marie +Frances +Alice +Virginia +Catherine +Eleanor +Anne +Ethel +Sarah +Pauline +Evelyn +Irene +Josephine +Lillian +Ann +Edith +Grace +Rose +Sara +Edna +Clara +Elsie +Emma +Ida +Jean +Louise +Thelma +Doris +Pearl +Agnes +Gertrude +Hazel +Beatrice +Marjorie +Myrtle +Ellen +Gladys +Kathryn +Julia +Martha +Rebecca +Ella +Esther +Katherine +Mabel +Madeline +Marian +Barbara +Blanche +Wanda +Hilda +Loretta +Marion +Olive +Phyllis +Stella +Audrey +Charlotte +Kathleen +Laura +Lena +Lucy +Lydia +Marguerite +Minnie +Nancy +Regina +Rita +Viola +Vivian +Bertha +Carrie +Eloise +Emily +Estella +Eva +Geneva +Hattie +Jennie +Rachel +Sophie +Theresa +Victoria +Mary +Helen +Margaret +Elizabeth +Dorothy +Anna +Catherine +Ruth +Mildred +Frances +Virginia +Florence +Grace +Edna +Alice +Eleanor +Pauline +Louise +Lillian +Marie +Evelyn +Josephine +Sara +Ann +Ethel +Hazel +Irene +Rose +Doris +Elsie +Anne +Sarah +Bertha +Betty +Edith +Emma +Mabel +Jean +Marian +Thelma +Agnes +Beatrice +Esther +Gertrude +Janet +Marguerite +Pearl +Blanche +Kathryn +Laura +Alma +Gladys +Hilda +Ida +Julia +Katherine +Martha +Bernice +Ella +Ellen +Jane +Madeline +Marjorie +Alberta +Bessie +Marion +Nellie +Sophie +Vera +Viola +Charlotte +Elva +Jeanette +Jeannette +Kathleen +May +Nancy +Stella +Audrey +Emily +Hattie +Irma +Isabelle +Jennie +Lucille +Sophia +Vivian +Wanda +Clara +Geneva +Helena +Inez +Lena +Lillie +Mae +Minnie +Myrtle +Rachel +Theresa +Veronica +Violet +Mary +Helen +Dorothy +Margaret +Elizabeth +Anna +Ruth +Mildred +Frances +Catherine +Florence +Alice +Virginia +Eleanor +Marie +Edith +Ethel +Anne +Evelyn +Gladys +Irene +Edna +Pauline +Ann +Jean +Sara +Sarah +Hazel +Louise +Mabel +Marguerite +Rose +Grace +Jane +Beatrice +Esther +Hilda +Josephine +Pearl +Rita +Gertrude +Kathryn +Lillian +Marion +Thelma +Agnes +Betty +Blanche +Doris +Julia +Madeline +Martha +Marian +Elsie +Laura +Myrtle +Barbara +Bertha +Ellen +Eva +Clara +Emma +Katherine +Nellie +Ella +Jennie +Audrey +Bernice +Charlotte +Emily +Genevieve +Ida +Stella +Beulah +Janet +Regina +Jeanne +Jeannette +June +Marjorie +Minnie +Naomi +Olive +Phyllis +Roberta +Sylvia +Theresa +Viola +Violet +Alma +Bessie +Hedwig +Jeanette +Loretta +Lottie +Sophie +Carolyn +Claire +Isabel +Kathleen +Lena +Nettie +Susie +Vera +Mary +Helen +Margaret +Dorothy +Elizabeth +Anna +Ruth +Alice +Frances +Marie +Catherine +Mildred +Virginia +Grace +Evelyn +Josephine +Doris +Eleanor +Florence +Jean +Edith +Betty +Esther +Rose +Irene +Ethel +Lillian +Pauline +Jane +Beatrice +Ann +Gladys +Edna +Louise +Sarah +Anne +Hazel +Elsie +Katherine +Martha +Pearl +Sara +Stella +Thelma +Clara +Hilda +Marian +Bertha +Ellen +Jennie +Julia +Laura +Myrtle +Rita +Marion +Emma +Gertrude +Mabel +Marjorie +Nellie +Agnes +Emily +Regina +Barbara +Hattie +Kathryn +Marguerite +Olive +Rachel +Sophie +Bernice +Blanche +Charlotte +Eva +Kathleen +Madeline +Naomi +Verna +Viola +Audrey +Bessie +Elva +Hannah +Ida +Irma +Janet +Jeanette +Jeanne +Lucy +Lydia +Reba +Theresa +Vera +Anita +Eileen +Ella +Jeannette +Phyllis +Rebecca +Sylvia +Vivian +Mary +Dorothy +Margaret +Elizabeth +Helen +Anna +Mildred +Eleanor +Alice +Frances +Ruth +Florence +Virginia +Marie +Evelyn +Catherine +Irene +Grace +Edith +Thelma +Betty +Hazel +Louise +Martha +Gladys +Doris +Ann +Anne +Ethel +Barbara +Lillian +Clara +Edna +Emma +Pauline +Jean +Rose +Agnes +Hilda +Sarah +Gertrude +Marian +Sara +Elsie +Stella +Jane +Josephine +Mabel +Regina +Rita +Blanche +Charlotte +Ida +Kathryn +Marguerite +Myrtle +Theresa +Bertha +Cora +Ellen +Esther +Jeanette +Julia +Marjorie +Violet +Audrey +Beatrice +Bernice +Ella +Harriet +Janet +Katherine +Laura +Lucy +Marion +Pearl +Bessie +Eva +Jennie +Madeline +Naomi +Olive +Sophie +Alberta +Fannie +Jeannette +Kathleen +Lucille +Lydia +Maude +Rhoda +Shirley +Vera +Viola +Wanda +Alma +Beulah +Carolyn +Emily +Geraldine +Madelyn +Mae +Nancy +Nellie +Patricia +Roberta +Sylvia +Vivian +Mary +Helen +Dorothy +Margaret +Elizabeth +Ruth +Anna +Frances +Mildred +Alice +Virginia +Betty +Grace +Catherine +Marie +Evelyn +Irene +Florence +Pauline +Thelma +Beatrice +Louise +Doris +Eleanor +Jane +Anne +Edna +Edith +Marjorie +Gladys +Martha +Ann +Jean +Sarah +Josephine +Rose +Ethel +Kathryn +Lillian +Audrey +Elsie +Myrtle +Charlotte +Clara +Emma +Esther +Hazel +Jennie +Julia +Katherine +Marion +Ella +Ida +Mabel +Bernice +Eva +Jeannette +Marian +Vera +Vivian +Hilda +Naomi +Pearl +Sara +Stella +Blanche +Gertrude +Madeline +Nancy +Norma +Agnes +Bertha +Ellen +Janet +Jeanette +Rebecca +Carolyn +Dora +Henrietta +Laura +Lena +Loretta +Marguerite +Phyllis +Rita +Shirley +Barbara +Carmella +Cora +Elva +Hattie +June +Kathleen +Lucy +Lydia +Maude +May +Nellie +Reba +Roberta +Ruby +Theresa +Violet +Mary +Dorothy +Helen +Elizabeth +Margaret +Ruth +Anna +Betty +Frances +Doris +Mildred +Virginia +Eleanor +Marie +Catherine +Florence +Evelyn +Irene +Lillian +Rose +Grace +Alice +Ann +Edith +Jean +Pauline +Anne +Gladys +Louise +Sarah +Thelma +Jane +Edna +Agnes +Elsie +Jennie +Marian +Beatrice +Ethel +Jeanette +Marjorie +Martha +Pearl +Sophie +Stella +Barbara +Hilda +Josephine +Viola +Esther +Gertrude +Hazel +Clara +Jeanne +Katherine +Bertha +Charlotte +Ellen +Emma +Lydia +Madeline +Marguerite +Marion +Phyllis +Beulah +Blanche +Kathryn +Minnie +Norma +Sara +Emily +Nancy +Rita +Alberta +Audrey +Bessie +Gloria +Ida +Julia +June +Mabel +Mae +Myrtle +Violet +Winifred +Anita +Annabelle +Carolyn +Carrie +Cecilia +Constance +Elva +Eunice +Georgia +Hedwig +Henrietta +Isabel +Janet +Juanita +Laura +Lillie +Miriam +Nellie +Rebecca +Regina +Mary +Dorothy +Helen +Elizabeth +Margaret +Betty +Ruth +Anna +Mildred +Doris +Marie +Frances +Eleanor +Catherine +Virginia +Thelma +Jane +Elsie +Evelyn +Florence +Irene +Lillian +Louise +Jean +Alice +Edith +Gertrude +Ethel +Pauline +Anne +Agnes +Esther +Grace +Gladys +Rose +Sarah +Audrey +Phyllis +Edna +Marion +Marjorie +Beatrice +Hazel +Emily +Hilda +Kathryn +Mabel +Ann +Emma +Katherine +Martha +Myrtle +Bertha +Charlotte +Clara +Elva +Ida +Jeanette +Kathleen +Laura +Pearl +Jeanne +Josephine +Marian +Sara +Theresa +Barbara +Blanche +Elaine +Geraldine +Janet +Jennie +Miriam +Nancy +Regina +Stella +Viola +Vivian +Alberta +Caroline +Cecelia +Madeline +Naomi +Rachel +Rebecca +Angeline +Bessie +Carrie +Cecilia +Claire +Eva +Gloria +Margery +Marguerite +Mary +Dorothy +Elizabeth +Helen +Betty +Margaret +Ruth +Frances +Doris +Jean +Marie +Virginia +Anna +Florence +Catherine +Evelyn +Mildred +Jane +Irene +Eleanor +Pauline +Josephine +Barbara +Alice +Edith +Rose +Ann +Ida +Louise +Marian +Lillian +Emma +Jeannette +Beatrice +Marjorie +Pearl +Sarah +Thelma +Blanche +Grace +Katherine +Anne +Bertha +Ethel +Gladys +Julia +Kathryn +Martha +Edna +Gertrude +Kathleen +Lena +Marion +Phyllis +Viola +Agnes +Bessie +Clara +Elsie +Jeanne +Jennie +June +Madeline +Nellie +Sophie +Charlotte +Esther +Hazel +Regina +Theresa +Dolores +Emily +Mabel +Myrtle +Nancy +Stella +Audrey +Geraldine +Hilda +Marguerite +Norma +Patricia +Sara +Violet +Annabelle +Bernice +Eva +Genevieve +Irma +Isabella +Isabelle +Lillie +Lorraine +Lucille +Naomi +Olive +Peggy +Rita +Vivian +Mary +Elizabeth +Betty +Helen +Dorothy +Doris +Margaret +Ruth +Marie +Anna +Frances +Catherine +Eleanor +Mildred +Alice +Jean +Virginia +Irene +Thelma +Florence +Evelyn +Louise +Sarah +Edith +Theresa +Ann +Jane +Anne +Edna +Elsie +Grace +Clara +Ethel +Gloria +Josephine +Nancy +Norma +Pearl +Audrey +Barbara +Lillian +Marion +Phyllis +Beatrice +Esther +Hilda +Mabel +Marjorie +Pauline +Agnes +Carolyn +Katherine +Kathryn +Marian +Martha +Sara +Shirley +Ella +Gertrude +Hazel +Ida +Jeanne +Bernice +Emma +Gladys +Jeanette +Joan +Laura +Lucy +Marguerite +Rose +Stella +Viola +Bessie +Ellen +Elva +Emily +Geraldine +Julia +Nellie +Roberta +Sadie +Vera +Bertha +Charlotte +Cora +Harriet +Janet +Jeannette +Kathleen +Lillie +Lois +Lucille +Rebecca +Mary +Betty +Margaret +Elizabeth +Doris +Helen +Dorothy +Ruth +Marie +Alice +Jean +Anna +Eleanor +Florence +Frances +Virginia +Catherine +Evelyn +Mildred +Gloria +Ann +Barbara +Elsie +Grace +Martha +Louise +Agnes +Pauline +Thelma +Edna +Irene +Anne +Esther +Sarah +Gladys +Jane +Ethel +Marian +Marion +Audrey +Beatrice +Edith +Lillian +Marjorie +Nancy +Phyllis +Carolyn +Emma +Hazel +Josephine +Kathleen +Ella +Ellen +Jeanette +Myrtle +Norma +Regina +Rose +Bertha +Bessie +Hilda +Ida +Jennie +Lois +Loretta +Marguerite +Patricia +Pearl +Shirley +Bernice +Charlotte +Kathryn +Laura +Lucille +Rita +Theresa +Elva +Gertrude +Katherine +Lorraine +Rachel +Rebecca +Rosalie +Viola +Violet +Mary +Dorothy +Betty +Elizabeth +Margaret +Helen +Anna +Ruth +Doris +Frances +Mildred +Jean +Alice +Marie +Catherine +Virginia +Edith +Charlotte +Grace +Florence +Barbara +Jane +Eleanor +Pauline +Ann +Beatrice +Ethel +Evelyn +Irene +Thelma +Hazel +Lillian +Marian +Rose +Edna +Louise +Phyllis +Ellen +Gladys +Nancy +Norma +Theresa +Agnes +Anne +Bernice +Clara +Marjorie +Patricia +Sarah +Shirley +Audrey +Dolores +Esther +Jeanette +Josephine +Bertha +Ella +Elsie +Joan +Kathryn +Lorraine +Marguerite +Regina +Carolyn +Janet +Jeanne +Blanche +Emma +Gertrude +Gloria +Ida +Katherine +Kathleen +Lois +Pearl +Roberta +Eva +Geraldine +Henrietta +Irma +Julia +June +Leona +Loretta +Marion +Peggy +Rebecca +Vera +Viola +Claire +Elva +Hilda +Jennie +Lena +Lucille +Lucy +Martha +Naomi +Rachel +Reba +Sara +Mary +Betty +Margaret +Dorothy +Doris +Helen +Elizabeth +Ruth +Anna +Barbara +Alice +Florence +Marie +Frances +Dolores +Eleanor +Grace +Virginia +Ann +Jean +Theresa +Lillian +Louise +Rose +Patricia +Catherine +Evelyn +Jane +Pauline +Irene +Mildred +Charlotte +Edna +Ethel +Thelma +Josephine +Marian +Marjorie +Norma +Shirley +Agnes +Gladys +Bernice +Ellen +Jeanette +Lois +Marion +Martha +Nancy +Beatrice +Edith +Lorraine +Sara +Anne +Carolyn +Elsie +Gertrude +Gloria +Joan +Joyce +Julia +June +Katherine +Phyllis +Bertha +Emma +Genevieve +Janet +Kathleen +Kathryn +Myrtle +Naomi +Clara +Elaine +Ella +Estella +Hazel +Lena +Pearl +Rita +Teresa +Viola +Audrey +Elva +Esther +Jeannette +Regina +Sarah +Stella +Mary +Betty +Dorothy +Elizabeth +Doris +Helen +Ruth +Barbara +Margaret +Marie +Alice +Dolores +Frances +Catherine +Virginia +Florence +Jean +Theresa +Evelyn +Grace +Lillian +Mildred +Nancy +Anna +Irene +Rose +Ann +Edith +Eleanor +Jane +Louise +Phyllis +Patricia +Sarah +Anne +Bernice +Lois +Norma +Thelma +Audrey +Ethel +Pauline +Janet +Joan +Marian +Elsie +Gladys +Martha +Shirley +Charlotte +Esther +June +Marion +Beatrice +Ida +Jeanne +Joyce +Agnes +Ella +Ellen +Joanne +Josephine +Katherine +Mabel +Marjorie +Pearl +Edna +Elaine +Eva +Jeannette +Julia +Marguerite +Sara +Bertha +Beverly +Carolyn +Emily +Gertrude +Laura +Lorraine +Mae +Myrtle +Regina +Sally +Teresa +Viola +Vivian +Mary +Betty +Dorothy +Helen +Doris +Margaret +Elizabeth +Ruth +Dolores +Jean +Barbara +Frances +Irene +Anna +Nancy +Virginia +Eleanor +Marie +Evelyn +Florence +Grace +Alice +Catherine +Theresa +Ann +Anne +Patricia +Jane +Mildred +Joan +Janet +Phyllis +Charlotte +Louise +Sarah +Marian +Gertrude +Peggy +Shirley +Thelma +Carolyn +Clara +Emma +Marjorie +Rose +Edith +Esther +Geraldine +Katherine +Pauline +Agnes +Audrey +Gloria +Hazel +Joanne +Josephine +Joyce +Lillian +Loretta +Marion +Martha +Pearl +Alberta +Beatrice +Bernice +Bertha +Delores +Edna +Ellen +Gladys +Lois +Lorraine +Lucille +Norma +Alma +Claire +Dora +Jeanette +Kathleen +Regina +Rita +Bessie +Beverly +Ella +Ethel +Ida +Jacqueline +Janice +Jeanne +Kathryn +Laura +Marguerite +Mary +Betty +Joan +Margaret +Jean +Dorothy +Helen +Doris +Elizabeth +Barbara +Ruth +Alice +Frances +Dolores +Shirley +Nancy +Ann +Eleanor +Louise +Catherine +Patricia +Phyllis +Virginia +Marie +Rose +Irene +Jane +Anna +Florence +Anne +Charlotte +Norma +Thelma +Evelyn +Hilda +Marion +Mildred +Edna +Gloria +Jacqueline +Janet +Josephine +Edith +Ethel +Janice +June +Martha +Sara +Theresa +Carolyn +Emma +Grace +Kathryn +Lillian +Alberta +Beatrice +Bertha +Beverly +Hazel +Jeannette +Joyce +Marjorie +Pauline +Sarah +Blanche +Cora +Elsie +Gladys +Jeanette +Joanne +Julia +Laura +Lois +Loretta +Lucy +Marian +Ada +Constance +Delores +Diane +Esther +Harriet +Kathleen +Lorraine +Marguerite +Vera +Mary +Betty +Barbara +Joan +Doris +Margaret +Dorothy +Helen +Patricia +Ruth +Elizabeth +Jean +Nancy +Phyllis +Marie +Shirley +Alice +Dolores +Janet +Florence +Anna +Frances +Catherine +Virginia +Lois +Charlotte +Joanne +Beatrice +Eleanor +Theresa +Ann +Carolyn +Emma +Grace +Irene +Jane +Edna +Evelyn +Josephine +Joyce +Mildred +Rose +Sarah +Bernice +June +Lillian +Martha +Gladys +Julia +Marion +Norma +Hilda +Loretta +Louise +Pauline +Rita +Anne +Edith +Ellen +Gertrude +Janice +Jeannette +Katherine +Marian +Audrey +Bertha +Clara +Esther +Kathleen +Marjorie +Thelma +Viola +Agnes +Caroline +Constance +Elsie +Emily +Geraldine +Jeanette +Marilyn +Pearl +Peggy +Bessie +Beverly +Blanche +Delores +Jeanne +Lorraine +Myrtle +Rebecca +Mary +Betty +Dorothy +Joan +Barbara +Margaret +Doris +Elizabeth +Patricia +Helen +Janet +Shirley +Phyllis +Ruth +Dolores +Frances +Jean +Nancy +Ann +Anna +Catherine +Jane +Joanne +Marie +Irene +June +Eleanor +Lois +Virginia +Carolyn +Evelyn +Pauline +Alice +Charlotte +Florence +Joyce +Josephine +Mildred +Sarah +Constance +Gloria +Kathleen +Norma +Thelma +Delores +Emma +Esther +Lillian +Loretta +Lucille +Agnes +Clara +Edith +Ethel +Louise +Martha +Rose +Beverly +Janice +Marian +Marjorie +Peggy +Vivian +Bernice +Carol +Elsie +Geraldine +Gladys +Grace +Hazel +Jacqueline +Lorraine +Marilyn +Marlene +Theresa +Beatrice +Gwendolyn +Joanna +Kathryn +Lydia +Roberta +Rosetta +Sally +Mary +Barbara +Betty +Joan +Shirley +Patricia +Margaret +Dorothy +Elizabeth +Doris +Eleanor +Jean +Marie +Nancy +Dolores +Frances +Ruth +Anna +Helen +Phyllis +Ann +Virginia +Alice +Janet +Charlotte +Catherine +Joanne +Carolyn +Irene +Beverly +Joyce +Sarah +Evelyn +Lorraine +Martha +Norma +Rose +Jane +June +Loretta +Louise +Mildred +Anne +Audrey +Gladys +Kathleen +Pauline +Agnes +Marian +Thelma +Ellen +Emma +Geraldine +Gloria +Josephine +Lillian +Lois +Marguerite +Myrtle +Pearl +Theresa +Beatrice +Elsie +Florence +Ida +Jacqueline +Marilyn +Marion +Patsy +Peggy +Arlene +Bernice +Clara +Eileen +Emily +Eva +Grace +Jeanette +Julia +Laura +Marjorie +Marlene +Rita +Roberta +Rosalie +Mary +Shirley +Barbara +Patricia +Joan +Doris +Betty +Margaret +Dorothy +Ruth +Nancy +Helen +Elizabeth +Jean +Marie +Dolores +Carol +Virginia +Frances +Janet +Martha +Charlotte +Anna +Eleanor +Phyllis +Alice +Carolyn +Evelyn +June +Sarah +Ann +Catherine +Elaine +Irene +Joanne +Lois +Edith +Norma +Esther +Florence +Geraldine +Joyce +Agnes +Beatrice +Delores +Emma +Ethel +Gloria +Jane +Janice +Josephine +Kathleen +Marian +Mildred +Rose +Audrey +Edna +Ellen +Elsie +Jacqueline +Louise +Theresa +Clara +Gladys +Judith +Patsy +Regina +Sandra +Sara +Thelma +Yvonne +Antoinette +Bernice +Caroline +Lillian +Mabel +Marjorie +Peggy +Sylvia +Alberta +Beverly +Christine +Eileen +Grace +Katherine +Kathryn +Leona +Loretta +Lorraine +Pauline +Rebecca +Mary +Barbara +Joan +Shirley +Patricia +Betty +Dorothy +Margaret +Phyllis +Nancy +Helen +Carolyn +Janet +Alice +Doris +Jean +Marie +Dolores +Elizabeth +Virginia +Ann +Ruth +Catherine +Grace +Lois +Charlotte +Eleanor +Carol +Frances +Janice +Joyce +Norma +Elaine +Jeanette +Loretta +Martha +Geraldine +Jacqueline +Jane +Joanne +Theresa +Anna +Edna +Ellen +Esther +Gladys +Kathryn +Patsy +Sandra +Anne +Ethel +Evelyn +Florence +Josephine +June +Louise +Marjorie +Mildred +Rose +Sylvia +Beverly +Delores +Edith +Roberta +Bernice +Bertha +Clara +Gloria +Marian +Pearl +Sarah +Annie +Beatrice +Blanche +Christine +Irene +Judith +Kay +Lillian +Lorraine +Marguerite +Marion +Marlene +Peggy +Rita +Rosemarie +Suzanne +Yvonne +Mary +Barbara +Patricia +Joan +Betty +Doris +Dorothy +Nancy +Janet +Margaret +Shirley +Phyllis +Ruth +Helen +Ann +Elizabeth +Frances +Virginia +Carol +Carolyn +Joanne +Catherine +Eleanor +Joyce +Alice +Janice +Jean +Irene +Norma +Ellen +Jane +Marie +Charlotte +Dolores +Evelyn +Loretta +Elaine +Ethel +Geraldine +Sandra +Anna +Beverly +Lorraine +Marlene +Arlene +Bernice +Edna +Kay +Louise +Peggy +Thelma +Yvonne +Carole +Gloria +Grace +Josephine +Lois +Sally +Sarah +Audrey +Clara +Constance +Edith +Esther +Florence +Jeanette +Marjorie +Martha +Pauline +Pearl +Sara +Sylvia +Angela +Anne +Caroline +Connie +Delores +Eileen +Gladys +Joann +Kathleen +Marion +Mildred +Patsy +Rebecca +Suzanne +Agnes +Anita +Beatrice +Christine +Harriet +Jacqueline +June +Katherine +Leona +Rachel +Rose +Susan +Theresa +Barbara +Mary +Patricia +Shirley +Doris +Margaret +Betty +Nancy +Joan +Dorothy +Janet +Marie +Sandra +Joyce +Elizabeth +Frances +Ruth +Joanne +Virginia +Jean +Alice +Carol +Catherine +Phyllis +Carolyn +Helen +Anna +Charlotte +Lois +Jacqueline +Kathleen +Eleanor +Judith +Loretta +Elaine +June +Marion +Irene +Louise +Pauline +Rosalie +Ann +Constance +Grace +Bernice +Marlene +Agnes +Anne +Beverly +Jane +Janice +Josephine +Martha +Peggy +Sylvia +Thelma +Anita +Arlene +Carole +Delores +Diane +Gail +Rose +Sarah +Cynthia +Edith +Eileen +Ellen +Florence +Geraldine +Gloria +Katherine +Marjorie +Maryann +Mildred +Yvonne +Bertha +Clara +Emma +Evelyn +Jeanette +Lillian +Marcia +Norma +Roberta +Sally +Audrey +Dolores +Ethel +Jeannette +Joann +Leona +Lorraine +Lucille +Mabel +Marian +Marilyn +Sara +Mary +Barbara +Patricia +Joyce +Dorothy +Margaret +Shirley +Nancy +Betty +Carol +Joan +Elizabeth +Janet +Doris +Ruth +Ann +Virginia +Phyllis +Joanne +Carolyn +Helen +Frances +Sandra +Judith +Catherine +Alice +Janice +Beverly +Geraldine +Elaine +Eleanor +Lois +Marie +Martha +Jane +Anna +Dolores +Jean +Julia +Louise +Edna +Gladys +Kathleen +Mildred +Norma +Susan +Yvonne +Charlotte +Elsie +Jacqueline +Loretta +Lorraine +Sarah +Constance +Ellen +Grace +Judy +Rose +Patsy +Annette +Delores +Edith +Evelyn +Irene +Joann +Josephine +Paula +Peggy +Bernice +Carole +Clara +Diane +Esther +Florence +Gail +Katherine +Kathryn +Kay +Lillian +Marion +Marjorie +Pauline +Rita +Rosalie +Sally +Sara +Sylvia +Thelma +Gloria +Ida +June +Marlene +Maryann +Sharon +Theresa +Mary +Barbara +Patricia +Margaret +Joyce +Nancy +Joan +Dorothy +Elizabeth +Betty +Carolyn +Shirley +Carol +Virginia +Janet +Jean +Judith +Sandra +Doris +Ruth +Ann +Charlotte +Joanne +Marie +Geraldine +Phyllis +Helen +Frances +Jane +Catherine +Kathleen +Lois +Alice +Beverly +Anna +Eleanor +Janice +Linda +Rose +Susan +Diane +Gloria +Norma +Brenda +Dolores +Evelyn +Carole +Elaine +Sarah +Thelma +Arlene +Clara +Eileen +Florence +Irene +Judy +Marjorie +Patsy +Peggy +Ellen +Emma +Jacqueline +Louise +Marlene +Mildred +Suzanne +Ethel +Gail +Kay +Loretta +Lorraine +Rosalie +Delores +Esther +Grace +June +Kathryn +Lillian +Marian +Marianne +Agnes +Alberta +Anne +Audrey +Bonnie +Constance +Donna +Edith +Gladys +Jeanne +Laura +Maryann +Rebecca +Roberta +Yvonne +Mary +Barbara +Patricia +Margaret +Joan +Nancy +Carol +Joyce +Sandra +Judith +Elizabeth +Janet +Carolyn +Doris +Betty +Dorothy +Helen +Joanne +Jean +Ruth +Frances +Phyllis +Shirley +Virginia +Beverly +Marie +Janice +Linda +Martha +Sarah +Alice +Bonnie +Ann +Geraldine +Elaine +Anne +Charlotte +Lois +Constance +Susan +Catherine +Gloria +Judy +Kathleen +Mildred +Norma +Anna +Eleanor +Grace +Marlene +Sharon +Arlene +Brenda +Dolores +Jacqueline +Josephine +Karen +Kay +Pauline +Carole +Ethel +June +Marian +Rebecca +Sylvia +Audrey +Edith +Harriet +Lillian +Peggy +Clara +Evelyn +Jane +Kathryn +Laura +Louise +Sally +Theresa +Delores +Diane +Edna +Eileen +Ellen +Florence +Irene +Jeanette +Jo +Lorraine +Rose +Sara +Suzanne +Thelma +Vivian +Anita +Bernice +Christine +Diana +Ella +Emily +Joann +Katherine +Marjorie +Roberta +Sheila +Angela +Antoinette +Beatrice +Cynthia +Deborah +Donna +Gladys +Gwendolyn +Jeanne +Julia +Marion +Patsy +Mary +Barbara +Patricia +Carol +Margaret +Joan +Nancy +Carolyn +Sandra +Betty +Elizabeth +Judith +Joyce +Dorothy +Ruth +Doris +Virginia +Susan +Marie +Geraldine +Linda +Janet +Shirley +Frances +Joanne +Phyllis +Alice +Jean +Anne +Helen +Catherine +Kathleen +Diane +Carole +Charlotte +Janice +Lois +Ann +Gloria +Beverly +Bonnie +Dolores +Eleanor +Sarah +Elaine +Ellen +Irene +Joann +Martha +Sally +Anna +Eileen +Evelyn +Jane +Thelma +Brenda +Gail +Jacqueline +Judy +Karen +Louise +Mildred +Sylvia +Diana +Donna +June +Pauline +Suzanne +Caroline +Constance +Edith +Kathryn +Kay +Marilyn +Patsy +Roberta +Sharon +Bertha +Christine +Clara +Connie +Grace +Lillian +Lorraine +Beatrice +Cynthia +Florence +Norma +Rose +Theresa +Deborah +Henrietta +Hope +Julia +Katherine +Marion +Marjorie +Maureen +Peggy +Rebecca +Rita +Veronica +Vivian +Yvonne +Delores +Edna +Gertrude +Gladys +Gwendolyn +Jeannette +Loretta +Maryann +Rosa +Ruby +Sara +Mary +Barbara +Patricia +Margaret +Nancy +Joyce +Sandra +Elizabeth +Carol +Ruth +Judith +Joan +Linda +Virginia +Carolyn +Shirley +Susan +Dorothy +Betty +Joanne +Doris +Janet +Catherine +Diane +Helen +Donna +Frances +Beverly +Ann +Bonnie +Charlotte +Kathleen +Sharon +Alice +Anne +Jean +Marie +Carole +Jacqueline +Phyllis +Constance +Jane +Janice +Roberta +Josephine +Judy +Eileen +Elaine +Joann +Louise +Grace +Karen +Rose +Thelma +Anna +Delores +Eleanor +Ellen +Evelyn +Gloria +Kathryn +Lois +Marjorie +Martha +Peggy +Suzanne +Gail +Marilyn +Lorraine +Norma +Rebecca +Sylvia +Dolores +Emma +Eva +Florence +Geraldine +Katherine +Marcia +Marlene +Mildred +Sarah +Brenda +Christine +Edna +Esther +Ida +Juanita +Lucille +Arlene +Beatrice +Dianne +Edith +Jo +Paula +Rosalie +Sally +Victoria +Bertha +Betsy +Deborah +Ella +Elsie +June +Laura +Marion +Maryann +Pamela +Pauline +Regina +Sara +Theresa +Connie +Ethel +Faith +Jeanette +Jennie +Kay +Lillian +Lydia +Marsha +Maureen +Pat +Pearl +Rosemary +Sheila +Sue +Mary +Barbara +Patricia +Carol +Nancy +Joyce +Sandra +Linda +Margaret +Joan +Susan +Judith +Virginia +Carolyn +Shirley +Betty +Janet +Kathleen +Catherine +Frances +Dorothy +Elizabeth +Helen +Sharon +Beverly +Bonnie +Doris +Ruth +Phyllis +Diane +Jane +Donna +Jean +Joanne +Carole +Elaine +Judy +Ann +Geraldine +Lois +Suzanne +Charlotte +Marie +Christine +Deborah +Alice +Cheryl +Norma +Eileen +Gail +Gloria +Jacqueline +Janice +Marlene +Martha +Pamela +Anna +Bernice +Brenda +Ellen +Evelyn +Karen +Lorraine +Patsy +Peggy +Sarah +Diana +Dolores +Eleanor +June +Katherine +Pauline +Thelma +Anne +Arlene +Bernadette +Connie +Delores +Edna +Florence +Jeanne +Joann +Kathryn +Marilyn +Mildred +Rose +Sue +Sylvia +Beatrice +Clara +Josephine +Leslie +Louise +Marian +Maryann +Paula +Rita +Roberta +Theresa +Constance +Cora +Dianne +Faye +Irene +Jeanette +Jo +Julia +Kay +Laura +Lynn +Sally +Sara +Edith +Elsie +Emma +Ethel +Hazel +Lillian +Lynne +Marianne +Maureen +Maxine +Pat +Priscilla +Rachel +Rosemary +Vivian +Mary +Barbara +Carol +Patricia +Sandra +Nancy +Linda +Margaret +Shirley +Elizabeth +Judith +Susan +Joan +Diane +Kathleen +Joyce +Ruth +Jane +Donna +Betty +Janet +Carolyn +Dorothy +Phyllis +Beverly +Frances +Helen +Doris +Janice +Ann +Gloria +Lois +Bonnie +Jacqueline +Alice +Judy +Sharon +Virginia +Geraldine +Karen +Marie +Elaine +Marilyn +Sarah +Carole +Constance +Jean +Joann +Brenda +Catherine +Charlotte +Ellen +Gail +Katherine +Anna +Anne +Joanne +Kathryn +Martha +Mildred +Connie +Diana +Lorraine +Louise +Norma +Grace +Maureen +Peggy +Rosemary +Anita +Arlene +Dianne +Evelyn +Josephine +Patsy +Rebecca +Victoria +Bernadette +Cheryl +Deborah +Dolores +Gladys +Marjorie +Maryann +Christine +Darlene +Edith +Eileen +Irene +Jeanne +Lucille +Marcia +Marian +Rose +Sara +Andrea +Clara +Jo +Kathy +Lynn +Madeline +Paula +Sheila +Suzanne +Sylvia +Theresa +Dawn +Delores +Edna +Julia +Loretta +Sherry +Wanda +Barbara +Mary +Patricia +Sandra +Carol +Nancy +Linda +Margaret +Susan +Sharon +Joyce +Kathleen +Judith +Carolyn +Shirley +Betty +Joan +Elizabeth +Diane +Ruth +Karen +Beverly +Donna +Janet +Bonnie +Dorothy +Jean +Jane +Joanne +Ann +Janice +Phyllis +Virginia +Frances +Catherine +Martha +Brenda +Deborah +Alice +Geraldine +Elaine +Gail +Helen +Doris +Judy +Suzanne +Constance +Diana +Gloria +Kathryn +Marie +Rose +Eileen +Lois +Charlotte +Connie +Cynthia +Ellen +Mildred +Norma +Irene +Anne +Carole +Christine +Darlene +Florence +Jacqueline +Laura +Roberta +Joann +Pamela +Sarah +Theresa +Victoria +Vivian +Katherine +Marjorie +Peggy +Rebecca +Rita +Rosemary +Cheryl +Esther +Evelyn +Jeanne +Lillian +Lorraine +Louise +Marian +Maryann +Paula +Sheila +Delores +Dolores +Eleanor +June +Marianne +Rosalie +Sally +Sue +Arlene +Emma +Harriet +Julia +Kay +Marsha +Pauline +Charlene +Ida +Jo +Josephine +Loretta +Marcia +Marilyn +Nina +Sara +Stephanie +Yvonne +Bernadette +Clara +Edith +Edna +Gladys +Grace +Hilda +Juanita +Leona +Leslie +Lynda +Maureen +Maxine +Nora +Patsy +Priscilla +Regina +Sylvia +Terry +Linda +Mary +Patricia +Barbara +Carol +Margaret +Sandra +Nancy +Susan +Kathleen +Diane +Joyce +Sharon +Elizabeth +Carolyn +Janet +Shirley +Joan +Joanne +Judith +Deborah +Donna +Beverly +Elaine +Jane +Ruth +Karen +Cheryl +Phyllis +Frances +Jean +Catherine +Helen +Janice +Virginia +Betty +Cynthia +Doris +Marie +Brenda +Christine +Charlotte +Constance +Bonnie +Dorothy +Jacqueline +Lois +Alice +Ann +Gloria +Jo +Judy +Suzanne +Anna +Ellen +Marilyn +Marjorie +Norma +Peggy +Rosemary +Darlene +Sarah +Connie +Gail +Carole +Diana +Eileen +Pamela +Dianne +Lorraine +Lynn +Marian +Paula +Rebecca +Sally +Sara +Irene +June +Lynda +Theresa +Florence +Geraldine +Julia +Kathryn +Louise +Martha +Maureen +Rita +Sylvia +Marlene +Maryann +Mildred +Rose +Wanda +Bernadette +Claudia +Evelyn +Faith +Georgia +Gwendolyn +Joann +Loretta +Sue +Vivian +Yvonne +Bonita +Dolores +Edith +Eleanor +Grace +Harriet +Jeanne +Kathy +Kay +Laura +Marianne +Pauline +Sheila +Anita +Anne +Arlene +Debbie +Ethel +Gayle +Janis +Josephine +Katherine +Lucille +Maryellen +Roberta +Teresa +Andrea +Angela +Antoinette +Audrey +Esther +Gale +Gladys +Jeanette +Jeannette +Lynne +Marcia +Marsha +Regina +Sandy +Thelma +Veronica +Linda +Mary +Barbara +Patricia +Susan +Sandra +Sharon +Nancy +Carol +Margaret +Deborah +Kathleen +Diane +Shirley +Donna +Elizabeth +Joyce +Carolyn +Judith +Dorothy +Jane +Phyllis +Christine +Virginia +Catherine +Cheryl +Cynthia +Janice +Karen +Bonnie +Beverly +Janet +Joan +Betty +Charlotte +Joanne +Ruth +Gloria +Jacqueline +Judy +Marie +Brenda +Elaine +Frances +Doris +Ann +Jean +Diana +Ellen +Pamela +Geraldine +Helen +Jo +Mildred +Norma +Lynn +Sarah +Suzanne +Alice +Gail +June +Paula +Anna +Anne +Connie +Grace +Marjorie +Marsha +Peggy +Rose +Theresa +Delores +Lois +Martha +Victoria +Wanda +Constance +Evelyn +Jeanne +Katherine +Maryann +Regina +Sherry +Stephanie +Darlene +Dolores +Emma +Kathryn +Rebecca +Yvonne +Eileen +Kathy +Laura +Lorraine +Marlene +Maxine +Rosalie +Rosemary +Sheila +Anita +Charlene +Ethel +Gwendolyn +Lynda +Marguerite +Rita +Sally +Sara +Sue +Sylvia +Carole +Florence +Joann +Joy +Julia +Marcia +Marilyn +Michele +Valerie +Bernadette +Bertha +Claire +Edith +Edna +Eleanor +Elsie +Eva +Janis +Juanita +Leslie +Lillian +Marian +Myrtle +Vivian +Linda +Mary +Barbara +Patricia +Nancy +Susan +Sandra +Deborah +Sharon +Diane +Kathleen +Carol +Margaret +Shirley +Donna +Judith +Karen +Elizabeth +Joan +Joanne +Janet +Joyce +Carolyn +Betty +Catherine +Dorothy +Marie +Christine +Cynthia +Brenda +Gail +Jane +Ruth +Janice +Ann +Charlotte +Helen +Constance +Marilyn +Jacqueline +Virginia +Beverly +Doris +Theresa +Bonnie +Elaine +Gloria +Jean +Martha +Pamela +Ellen +Lois +Phyllis +Alice +Frances +Sarah +Suzanne +Cheryl +Judy +Rose +Jo +Sherry +Anne +Evelyn +Kathryn +Lorraine +Norma +Paula +Darlene +Diana +Veronica +Delores +Denise +Geraldine +Joann +June +Katherine +Lynn +Maryann +Rebecca +Connie +Kay +Peggy +Sally +Sara +Sheila +Victoria +Yvonne +Anna +Carole +Eleanor +Florence +Irene +Kathy +Louise +Marcia +Marian +Marlene +Valerie +Annette +Bonita +Dianne +Edith +Ernestine +Ethel +Jeanne +Marjorie +Marsha +Maureen +Roberta +Stephanie +Susanne +Wanda +Bernadette +Christina +Edna +Eileen +Grace +Jennifer +Julia +Laura +Loretta +Lynne +Mildred +Paulette +Rosa +Teresa +Angela +Arlene +Beth +Cathy +Jeannette +Josephine +Juanita +Lucille +Lynda +Michele +Pauline +Priscilla +Rita +Robin +Rosemary +Wendy +Linda +Mary +Patricia +Barbara +Sharon +Deborah +Susan +Carol +Nancy +Diane +Sandra +Karen +Donna +Kathleen +Elizabeth +Margaret +Shirley +Joyce +Janet +Carolyn +Judith +Gail +Betty +Beverly +Ruth +Christine +Joanne +Ann +Catherine +Frances +Bonnie +Doris +Cheryl +Dorothy +Joan +Cynthia +Janice +Jean +Phyllis +Gloria +Virginia +Pamela +Anne +Brenda +Helen +Jane +Paula +Charlotte +Wanda +Marie +Martha +Connie +Ellen +Jacqueline +Kathryn +Rebecca +Sarah +Alice +Lynn +Theresa +Bernadette +Lois +Maryann +Elaine +Geraldine +Jo +Marilyn +Peggy +Yvonne +Constance +Eileen +Emily +Katherine +Kathy +Rosemary +Sheila +Vicki +Arlene +Debra +Irene +Joann +June +Lorraine +Roberta +Diana +Edith +Eleanor +Ethel +Evelyn +Leslie +Rose +Stephanie +Valerie +Denise +Edna +Jeanne +Judy +Loretta +Marjorie +Sally +Veronica +Anna +Juanita +Kay +Louise +Lucy +Marianne +Marsha +Mildred +Patsy +Regina +Sherry +Suzanne +Audrey +Carole +Colleen +Darlene +Delores +Dolores +Laura +Lillian +Lynda +Marlene +Maureen +Penelope +Sylvia +Adele +Bonita +Carla +Charlene +Christina +Claudia +Dale +Faye +Grace +Jacquelyn +Janis +Jeanette +Julia +Lynne +Marian +Maxine +Michele +Nora +Paulette +Rita +Robin +Teresa +Terry +Vera +Victoria +Vivian +Wendy +Linda +Patricia +Deborah +Mary +Barbara +Susan +Nancy +Diane +Kathleen +Carol +Sandra +Donna +Sharon +Margaret +Karen +Elizabeth +Joyce +Judith +Cynthia +Brenda +Catherine +Janet +Joan +Christine +Janice +Betty +Carolyn +Shirley +Bonnie +Joanne +Ann +Beverly +Jane +Anne +Marie +Helen +Virginia +Cheryl +Debra +Dorothy +Ruth +Constance +Gloria +Lois +Pamela +Ellen +Jean +Denise +Jacqueline +Rebecca +Frances +Kathryn +Theresa +Elaine +Marilyn +Phyllis +Wanda +Doris +Gail +Jo +Suzanne +Valerie +Kathy +Martha +Michele +Darlene +Eileen +Lynn +Marsha +Peggy +Sheila +Sherry +Victoria +Alice +Charlotte +Delores +Diana +Geraldine +Juanita +Marjorie +Maryann +Rose +Sarah +Anna +Eleanor +Esther +Evelyn +Gayle +Katherine +Louise +Maureen +Regina +Sally +Teresa +Andrea +Claudia +Dianne +Faye +Holly +Judy +June +Leslie +Lisa +Paula +Sue +Sylvia +Terry +Anita +Annette +Connie +Jan +Jeanette +Joann +Joy +Lorraine +Lynda +Maria +Paulette +Roberta +Thelma +Veronica +Wendy +Yvonne +Edith +Gwendolyn +Jeanne +Julia +Laura +Marcia +Pauline +Rita +Sara +Amy +Angela +Beth +Bonita +Cathy +Charlene +Colleen +Emma +Florence +Josephine +Marian +Marion +Norma +Patsy +Penny +Rhonda +Robin +Rosemary +Vicki +Violet +Vivian +Linda +Deborah +Mary +Patricia +Barbara +Susan +Nancy +Karen +Sharon +Diane +Carol +Margaret +Donna +Kathleen +Sandra +Elizabeth +Cynthia +Judith +Christine +Janet +Joan +Joyce +Bonnie +Carolyn +Cheryl +Debra +Beverly +Pamela +Brenda +Denise +Catherine +Joanne +Gail +Shirley +Marie +Robin +Betty +Ann +Jane +Anne +Virginia +Dorothy +Kathryn +Kathy +Lynn +Sheila +Paula +Ruth +Victoria +Jacqueline +Janice +Phyllis +Geraldine +Darlene +Elaine +Helen +Jo +Rebecca +Suzanne +Diana +Frances +Judy +Lois +Lorraine +Theresa +Wanda +Doris +Ellen +Marsha +Peggy +Amy +Lisa +Martha +Rose +Yvonne +Cathy +Michele +Roberta +Rosemary +Connie +Joann +Katherine +Laura +Teresa +Alice +Charlotte +Evelyn +Gwendolyn +Irene +Jean +June +Marilyn +Norma +Regina +Sarah +Andrea +Constance +Florence +Kay +Marcia +Maureen +Valerie +Vicki +Wendy +Anna +Beth +Colleen +Eileen +Laurie +Leslie +Nina +Patsy +Vera +Angela +Arlene +Beatrice +Bonita +Charlene +Claudia +Edith +Faith +Gayle +Gloria +Jeanne +Juanita +Lynda +Maria +Monica +Sara +Vanessa +Dianne +Josephine +Lena +Louise +Lucille +Marjorie +Maryann +Michelle +Rita +Rosalie +Sally +Shelley +Sylvia +Trudy +Bernadette +Carole +Cecelia +Dawn +Delores +Ella +Francine +Jeanette +Julia +Kristine +Loretta +Lucy +Marianne +Mildred +Paulette +Pauline +Roxanne +Sue +Terry +Toni +Vivian +Deborah +Mary +Linda +Patricia +Susan +Barbara +Karen +Nancy +Sharon +Carol +Donna +Kathleen +Cynthia +Diane +Margaret +Sandra +Janet +Elizabeth +Christine +Catherine +Beverly +Gail +Joanne +Joyce +Carolyn +Joan +Janice +Judith +Bonnie +Debra +Pamela +Betty +Brenda +Anne +Denise +Robin +Cheryl +Jane +Ruth +Rebecca +Shirley +Suzanne +Alice +Elaine +Helen +Jacqueline +Martha +Rose +Teresa +Wanda +Ann +Kathy +Kathryn +Jean +Constance +Frances +Jo +Sarah +Sheila +Laura +Lynn +Roberta +Theresa +Cathy +Darlene +Dorothy +Gloria +Lois +Marie +Michele +Valerie +Vanessa +Virginia +Eileen +Katherine +Lisa +Louise +Charlotte +Doris +Judy +Marilyn +Peggy +Julia +Julie +Marcia +Sally +Andrea +Connie +Diana +Marsha +Paula +Phyllis +Anna +Edna +Ellen +Joann +Leslie +Mildred +Regina +Rhonda +Rita +Terri +Vera +Wendy +Arlene +Charlene +Colleen +Esther +Geraldine +Lorraine +Marjorie +Sherry +Yvonne +Anita +Bonita +Delores +Gladys +Jill +Juanita +June +Norma +Renee +Rosemary +Sue +Sylvia +Terry +Thelma +Amy +Angela +Audrey +Dale +Dianne +Evelyn +Grace +Gwendolyn +Holly +Loretta +Marguerite +Marianne +Marlene +Maryann +Maureen +Roxanne +Veronica +Celeste +Cindy +Edith +Eleanor +Emma +Ethel +Gale +Gayle +Ida +Josephine +Kim +Lynda +Lynne +Patti +Penny +Sara +Shelley +Sheryl +Toni +Victoria +Deborah +Mary +Linda +Patricia +Susan +Barbara +Karen +Nancy +Diane +Carol +Debra +Kathleen +Donna +Sharon +Sandra +Cynthia +Elizabeth +Margaret +Pamela +Janet +Catherine +Beverly +Shirley +Joan +Bonnie +Denise +Robin +Ann +Theresa +Kathy +Jean +Joyce +Judith +Anne +Marie +Dorothy +Gail +Jo +Christine +Jane +Janice +Michele +Rebecca +Lynn +Paula +Betty +Cheryl +Laura +Teresa +Brenda +Connie +Doris +Rose +Sheila +Carolyn +Constance +Peggy +Wanda +Darlene +Jacqueline +Lois +Phyllis +Alice +Frances +Joanne +Kathryn +Leslie +Lisa +Ruth +Eileen +Gloria +Martha +Terry +Valerie +Virginia +Ellen +Katherine +Maria +Marilyn +Sarah +Diana +Elaine +Helen +Judy +Suzanne +Victoria +Cathy +Marsha +Michelle +Sherry +Vanessa +Anna +Charlotte +Kim +Patti +Rosemary +Charlene +Geraldine +Holly +Joann +Mildred +Norma +Yvonne +Andrea +Anita +Evelyn +June +Louise +Marian +Marjorie +Maureen +Roberta +Sally +Stephanie +Dawn +Jennifer +Marianne +Nina +Rhonda +Sara +Amy +Arlene +Colleen +Debbie +Delores +Eleanor +Harriet +Jeannette +Lynne +Marlene +Sue +Wendy +Dolores +Iris +Joy +Juanita +Laurie +Lorraine +Lucille +Marcia +Melissa +Melody +Regina +Rosanne +Sylvia +Vera +Vickie +Vivian +Angela +Bernadette +Carole +Cindy +Claire +Claudia +Debora +Doreen +Eartha +Edith +Gwendolyn +Ida +Jan +Janis +Jeanne +Loretta +Lou +Lynda +Maryann +Melanie +Priscilla +Rachel +Renee +Rita +Roxanne +Terri +Toni +Veronica +Vicki +Mary +Deborah +Linda +Patricia +Susan +Debra +Karen +Nancy +Donna +Barbara +Diane +Sharon +Elizabeth +Carol +Kathleen +Margaret +Cheryl +Cynthia +Sandra +Robin +Janet +Catherine +Bonnie +Pamela +Beverly +Ann +Brenda +Jane +Judith +Denise +Joan +Theresa +Jo +Christine +Connie +Kathryn +Virginia +Joanne +Teresa +Laura +Lisa +Gail +Jacqueline +Kathy +Wanda +Jean +Lynn +Michele +Ruth +Valerie +Debbie +Diana +Katherine +Rose +Stephanie +Carolyn +Gloria +Janice +Joyce +Rebecca +Shirley +Suzanne +Anne +Elaine +Helen +Judy +Sheila +Victoria +Anita +Betty +Constance +Dorothy +Julia +Martha +Phyllis +Rita +Terry +Cathy +Kim +Paula +Yvonne +Colleen +Darlene +Dawn +Rhonda +Vanessa +Vicki +Alice +Lois +Sarah +Ellen +Frances +Joann +Leslie +Lorraine +Marcia +Regina +Sally +Sylvia +Dianne +Doris +Evelyn +Jill +Marie +Michelle +Sherry +Wendy +Beth +Charlene +Christina +Loretta +Marilyn +Maureen +Sue +Arlene +Audrey +Charlotte +Edna +June +Louise +Melissa +Paulette +Rosemary +Sheryl +Terri +Tina +Toni +Amy +Andrea +Anna +Bernadette +Carole +Cindy +Debora +Eileen +Faye +Gwendolyn +Jeanne +Jeannie +Jennifer +Juanita +Julie +Lynda +Maria +Marianne +Marlene +Norma +Peggy +Roberta +Alicia +Angela +Dale +Dolores +Edith +Faith +Gayle +Katharine +Lori +Patti +Penny +Renee +Sara +Vickie +Adele +Candace +Carla +Ethel +Eva +Florence +Gretchen +Holly +Irene +Jan +Jeanette +Kay +Kimberly +Laurie +Lee +Lou +Lucy +Lynne +Marian +Marjorie +Maryann +Melinda +Mildred +Ramona +Tracey +Vera +Vivian +Deborah +Mary +Linda +Patricia +Karen +Susan +Sharon +Donna +Barbara +Carol +Diane +Nancy +Debra +Kathleen +Cynthia +Sandra +Cheryl +Margaret +Elizabeth +Pamela +Robin +Brenda +Bonnie +Denise +Catherine +Janet +Lisa +Christine +Ann +Beverly +Joyce +Lynn +Betty +Theresa +Judith +Jane +Terry +Shirley +Teresa +Gail +Joan +Kathryn +Valerie +Connie +Kim +Marie +Anne +Jacqueline +Jean +Sheila +Darlene +Debbie +Joanne +Judy +Ruth +Cathy +Constance +Dorothy +Sherry +Elaine +Ellen +Janice +Jo +Kathy +Laura +Victoria +Wanda +Andrea +Carolyn +Cindy +Colleen +Diana +Doris +Jennifer +Martha +Michelle +Sarah +Stephanie +Suzanne +Helen +Leslie +Virginia +Dawn +Rebecca +Rose +Tina +Wendy +Holly +June +Alice +Anna +Charlotte +Lori +Vicki +Yvonne +Charlene +Katherine +Roxanne +Doreen +Julie +Laurie +Michele +Norma +Phyllis +Sue +Sylvia +Terri +Eileen +Frances +Gloria +Julia +Loretta +Marilyn +Maureen +Paula +Peggy +Toni +Vanessa +Angela +Beatrice +Carla +Debora +Jill +Lorraine +Lynne +Rosemary +Teri +Annette +Evelyn +Geraldine +Joann +Juanita +Kimberly +Lois +Marcia +Marlene +Melissa +Nina +Regina +Rita +Sheryl +Audrey +Ernestine +Gladys +Grace +Jayne +Jeanette +Maria +Maryann +Renee +Rhonda +Vickie +Amy +Betsy +Carole +Caroline +Cathleen +Dana +Dianne +Emily +Faith +Jeanne +Lee +Lynda +Patti +Penny +Roberta +Sally +Sara +Vivian +Adrienne +April +Candace +Carmen +Christina +Desiree +Dorene +Esther +Francine +Heidi +Irene +Lauren +Lillian +Louise +Luann +Marion +Melanie +Melinda +Mildred +Nadine +Priscilla +Sherri +Tracy +Vera +Vicky +Yolanda +Deborah +Mary +Susan +Karen +Patricia +Linda +Donna +Cynthia +Sharon +Cheryl +Barbara +Kathleen +Carol +Diane +Nancy +Lisa +Brenda +Sandra +Debra +Elizabeth +Pamela +Margaret +Robin +Theresa +Catherine +Denise +Debbie +Christine +Cindy +Judith +Laura +Janet +Beverly +Gail +Kathryn +Kathy +Ann +Kim +Bonnie +Joan +Julie +Ruth +Shirley +Teresa +Wanda +Anne +Terri +Cathy +Joyce +Terry +Sheila +Carolyn +Doris +Lynn +Victoria +Kimberly +Leslie +Martha +Dawn +Diana +Ellen +Darlene +Helen +Janice +Joanne +Judy +Michelle +Rebecca +Suzanne +Vicki +Marianne +Paula +Renee +Anna +Dorothy +Jane +Valerie +Anita +Betty +Elaine +Jacqueline +Phyllis +Stephanie +Tina +Beth +Eileen +Michele +Vanessa +Virginia +Yvonne +Andrea +Charlotte +Jean +Katherine +Lori +Lynda +Monica +Sarah +Sherry +Tammy +Gloria +Lynne +Marcia +Marie +Maureen +Rose +Wendy +Alice +Colleen +Connie +Faith +Frances +Jeanne +Jennifer +Jill +Jo +Joann +Laurie +Lois +Regina +Rhonda +Sally +Sue +Vickie +Angela +Constance +Evelyn +Holly +Loretta +Lorraine +Marlene +Peggy +Rita +Sylvia +Annette +Bernadette +Carole +Charlene +Claire +Dianne +Geraldine +Marjorie +Rosemary +Antoinette +Carla +Debora +Gwendolyn +Lillian +Maria +April +Audrey +Bernice +Betsy +Carrie +Delores +Doreen +Gayle +Josephine +Juanita +Julia +Kay +Melanie +Norma +Rachel +Roxanne +Sara +Shelley +Vivian +Becky +Edith +Erin +Faye +Glenda +Ida +Jacquelyn +Jeanette +Jeannie +Louise +Marsha +Maryann +Patti +Roberta +Rochelle +Trudy +Veronica +Amy +Cassandra +Clara +Dolores +Edna +Esther +Gina +Gladys +Helena +Jayne +Joanna +June +Leah +Lou +Margie +Marian +Marilyn +Melinda +Myra +Penny +Ramona +Tanya +Tracy +Vera +Vicky +Mary +Susan +Karen +Deborah +Patricia +Linda +Cynthia +Barbara +Sharon +Donna +Cheryl +Nancy +Kathleen +Diane +Kathy +Lisa +Carol +Elizabeth +Sandra +Brenda +Margaret +Pamela +Debra +Denise +Robin +Janet +Debbie +Joyce +Teresa +Theresa +Bonnie +Darlene +Catherine +Ann +Cindy +Carolyn +Kim +Joanne +Paula +Judith +Cathy +Joan +Gloria +Janice +Laura +Beverly +Dorothy +Jane +Anne +Betty +Christine +Judy +Julie +Kimberly +Wanda +Dawn +Leslie +Peggy +Rebecca +Terri +Helen +Jean +Laurie +Michelle +Shirley +Diana +Eileen +Katherine +Ruth +Sheila +Connie +Maureen +Michele +Terry +Ellen +Gail +Holly +Jo +Kathryn +Tina +Valerie +Amy +Annette +Jill +Marie +Martha +Rita +Roberta +Lois +Lynn +Regina +Elaine +Jennifer +Julia +Victoria +Anna +Frances +Joann +Loretta +Sarah +Suzanne +Tammy +Virginia +Belinda +Geraldine +Stephanie +Vicki +Andrea +Angela +Doris +June +Marlene +Rhonda +Sally +Wendy +Beth +Charlotte +Irene +Jacqueline +Joy +Phyllis +Sandy +Sherry +Anita +Sylvia +Tracy +Arlene +Christina +Colleen +Constance +Evelyn +Jayne +Jeanne +Kelly +Lorraine +Marcia +Monica +Norma +Rose +Sue +Tanya +Vickie +Carrie +Debora +Dianne +Ella +Faye +Grace +Kay +Lori +Louise +Margie +Marilyn +Melody +Nadine +Renee +Rosemary +Vanessa +Alice +Alison +Audrey +Becky +Carla +Claudia +Crystal +Dorothea +Gale +Gina +Hope +Lauren +Marian +Patti +Patty +Shari +Shelly +Sheryl +Vivian +Yvonne +Bonita +Caroline +Charlene +Claire +Delores +Dianna +Eleanor +Eunice +Florence +Gayle +Heidi +Jacquelyn +Kristen +Lynne +Maria +Marianne +Melissa +Patsy +Thelma +Toni +Veronica +Mary +Donna +Karen +Susan +Deborah +Linda +Patricia +Barbara +Cynthia +Lisa +Sharon +Nancy +Sandra +Brenda +Diane +Elizabeth +Carol +Robin +Denise +Kathleen +Cheryl +Kathy +Debra +Pamela +Debbie +Janet +Catherine +Theresa +Dawn +Margaret +Laura +Teresa +Joanne +Carolyn +Joyce +Judy +Stephanie +Christine +Valerie +Cathy +Joan +Lynn +Michelle +Ann +Bonnie +Kim +Terri +Anne +Cindy +Jane +Judith +Marie +Terry +Dorothy +Julie +Sheila +Janice +Michele +Ruth +Victoria +Wanda +Darlene +Diana +Gail +Shirley +Anita +Elaine +Jennifer +Annette +Betty +Beverly +Lori +Tammy +Andrea +Connie +Rebecca +Suzanne +Virginia +Jacqueline +Jean +Joann +Martha +Phyllis +Regina +Sarah +Wendy +Alice +Helen +Laurie +Tina +Amy +Ellen +Kimberly +Patty +Paula +Peggy +Jill +Juanita +Katherine +Kathryn +Lois +Loretta +Lorraine +Maureen +Norma +Sherry +Vicki +Anna +Holly +Leslie +Maria +Melissa +Renee +Bernadette +Beth +Colleen +Constance +Frances +Gloria +June +Rhonda +Rose +Vanessa +Angela +Charlotte +Crystal +Doris +Eileen +Julia +Kelly +Rita +Tamara +Audrey +Carla +Claire +Gina +Heidi +Jo +Marjorie +Marlene +Maryann +Monica +Penny +Sally +Sue +Sylvia +Tracy +Yvonne +Carole +Charlene +Jeanne +Louise +Sandy +Sheryl +Tanya +Bernadine +Christina +Dana +Doreen +Edna +Evelyn +Faith +Glenda +Jan +Lou +Marilyn +Patti +Toni +Trudy +Becky +Carmen +Clara +Ethel +Florence +Gale +Grace +Iris +Kay +Lynne +Melanie +Patsy +Priscilla +Roberta +Roxanne +Sheri +Tami +Vickie +Vicky +Allison +Arlene +Carrie +Cecilia +Felicia +Geraldine +Gwendolyn +Jackie +Lydia +Lynda +Marianne +Mildred +Mona +Pam +Rachel +Randi +Rosemarie +Rosemary +Tracey +Vivian +Donna +Mary +Karen +Lisa +Susan +Linda +Patricia +Deborah +Sharon +Carol +Elizabeth +Cynthia +Barbara +Sandra +Diane +Robin +Kimberly +Kathleen +Pamela +Denise +Cheryl +Brenda +Debra +Nancy +Theresa +Kim +Kathy +Teresa +Margaret +Ann +Christine +Debbie +Michele +Dawn +Laura +Lori +Carolyn +Joyce +Valerie +Jane +Sherry +Cindy +Paula +Tina +Janet +Catherine +Cathy +Shirley +Darlene +Kelly +Joan +Joanne +Katherine +Michelle +Sheila +Wendy +Angela +Annette +Beverly +Judy +Anne +Kathryn +Lynn +Rebecca +Terri +Andrea +Beth +Betty +Judith +Julie +Terry +Eileen +Gail +Jacqueline +Leslie +Marie +Stephanie +Carla +Ellen +Janice +Laurie +Maria +Regina +Renee +Rose +Tammy +Tracy +Virginia +Amy +Colleen +Dorothy +Elaine +Suzanne +Anna +Julia +Lois +Melissa +Phyllis +Roberta +Victoria +Alice +Bonnie +Constance +Frances +Gloria +Jean +Jo +Joann +Lorraine +Marcia +Martha +Ruth +Anita +Diana +Helen +Peggy +Sally +Carmen +Crystal +Rhonda +Vickie +Wanda +Connie +Dianne +Jennifer +Jill +Yvonne +Joy +Lauren +Patti +Sandy +Sheryl +Vicki +Charlotte +Maureen +Melinda +Sara +Sarah +Shelley +Tracey +Vanessa +April +Bernadette +Claudia +Irene +Jamie +Jeanne +Veronica +Arlene +Carrie +Doris +Evelyn +Holly +Jan +Josephine +Louise +Marianne +Melody +Nina +Norma +Patty +Rita +Sue +Tamara +Toni +Alison +Audrey +Becky +Bernice +Charlene +Chris +Christina +Dana +Fay +Geraldine +Gina +Jackie +June +Kathi +Leigh +Loretta +Lynne +Marsha +Mildred +Monica +Penny +Sylvia +Terrie +Alicia +Belinda +Carole +Cecilia +Cheri +Edith +Eunice +Florence +Gladys +Gwendolyn +Hope +Kay +Kimberley +Lynda +Marian +Marjorie +Melanie +Myra +Nadine +Shari +Sheri +Sonia +Susanne +Teri +Therese +Mary +Lisa +Donna +Susan +Karen +Linda +Deborah +Patricia +Sharon +Robin +Cynthia +Carol +Barbara +Nancy +Sandra +Brenda +Pamela +Cheryl +Kimberly +Denise +Teresa +Kathy +Kathleen +Diane +Michele +Theresa +Margaret +Elizabeth +Michelle +Debbie +Debra +Christine +Catherine +Jacqueline +Laura +Tina +Terri +Diana +Lori +Dawn +Annette +Cathy +Cindy +Janet +Judith +Amy +Kim +Ann +Beverly +Valerie +Carolyn +Stephanie +Suzanne +Jennifer +Joanne +Joyce +Laurie +Rebecca +Bonnie +Judy +Sheila +Tammy +Darlene +Kelly +Paula +Terry +Wendy +Tracy +Vicki +Anne +Beth +Carla +Ellen +Shirley +Angela +Jane +Katherine +Kathryn +Leslie +Lorraine +Lynn +Ruth +Vanessa +Victoria +Connie +Regina +Tracey +Alice +Elaine +Gail +Joan +Rhonda +Andrea +Anna +Penny +Renee +Doris +Julie +Rose +Rita +Veronica +Frances +Jackie +Maria +Martha +Melissa +Shelly +Sherry +Wanda +Crystal +Glenda +Helen +Jill +Joann +Lynda +Maryann +Maureen +Monica +Virginia +Charlene +Constance +Dana +Dorothy +Holly +Janice +Lois +Lynne +Sylvia +Betty +Carole +Colleen +Delores +Doreen +Gina +Jean +Julia +Melanie +Nadine +Sarah +Yvonne +Claire +Gloria +Heidi +Irene +Marie +Norma +Phyllis +Sandy +Vickie +Anita +Carmen +Caroline +Cathleen +Jeanne +Jo +Juanita +June +Kimberley +Loretta +Louise +Marcia +Marguerite +Marianne +Marsha +Peggy +Rochelle +Sally +Stacey +Sue +Thelma +Verna +Vivian +Alison +Bernadette +Charlotte +Christina +Dianne +Eileen +Gwendolyn +Jeanette +Kelley +Marilyn +Mildred +Pam +Patti +Rosemary +Tanya +Yvette +Alicia +Belinda +Deanna +Debora +Dolores +Emily +Evelyn +Gayle +Gwen +Hope +Jan +Joy +Lee +Lorie +Lorrie +Marcella +Melinda +Mona +Naomi +Natalie +Shelley +Sherri +Sonya +Vera +Vicky +Yolanda +Lisa +Mary +Karen +Susan +Donna +Linda +Patricia +Deborah +Pamela +Robin +Sharon +Elizabeth +Sandra +Cynthia +Kimberly +Brenda +Teresa +Kathleen +Cheryl +Barbara +Dawn +Denise +Nancy +Christine +Diane +Laura +Carol +Margaret +Theresa +Michelle +Tammy +Kathy +Debbie +Lori +Debra +Jacqueline +Janet +Angela +Tina +Kelly +Terri +Valerie +Michele +Catherine +Bonnie +Carolyn +Cindy +Suzanne +Wendy +Sherry +Crystal +Kim +Stephanie +Tracy +Carla +Joyce +Ann +Marie +Terry +Holly +Jennifer +Leslie +Maria +Andrea +Judith +Paula +Sheila +Lynn +Ruth +Amy +Annette +Julie +Wanda +Jane +Judy +Katherine +Melissa +Rebecca +Vanessa +Beth +Beverly +Connie +Darlene +Joan +Laurie +Tracey +Anne +Cathy +Dorothy +Jean +Kathryn +Martha +Virginia +Diana +Peggy +Regina +Vicki +Betty +Charlotte +Gail +Gina +Rhonda +Rita +Shirley +Anita +Elaine +Frances +Gwendolyn +Julia +Charlene +Eileen +Helen +Jamie +Janice +Melanie +Penny +Renee +Rose +Rosemary +Anna +Christina +Ellen +Lois +Lorraine +Marilyn +Maryann +Sarah +Sherri +Victoria +Alice +Dana +Gloria +Jill +Joanne +Loretta +Marlene +Monica +Belinda +Dianna +Joann +Juanita +Maureen +Melinda +Sally +Sandy +Vickie +April +Carmen +Caroline +Carrie +Claire +Constance +Deanna +Lynne +Marsha +Phyllis +Rochelle +Tamara +Veronica +Arlene +Carole +Colleen +Dina +Jeanette +Jeanne +Kelley +Lynette +Marguerite +Melody +Norma +Patti +Stacy +Sylvia +Toni +Yvonne +Alicia +Beatrice +Blanche +Bonita +Cecilia +Celeste +Clara +Doreen +Esther +Felicia +Jackie +Jo +June +Marcia +Marian +Maxine +Mildred +Pauline +Ramona +Shari +Shelly +Sheryl +Stacey +Sue +Tonya +Trina +Lisa +Karen +Mary +Susan +Donna +Patricia +Deborah +Linda +Sharon +Cynthia +Kimberly +Elizabeth +Pamela +Sandra +Robin +Denise +Brenda +Barbara +Kathleen +Nancy +Christine +Teresa +Michele +Cheryl +Michelle +Margaret +Tammy +Tina +Lori +Carol +Catherine +Laura +Kelly +Sherry +Diane +Kim +Carolyn +Jane +Theresa +Suzanne +Tracy +Debra +Rebecca +Dawn +Jennifer +Paula +Sheila +Jacqueline +Wendy +Judith +Laurie +Anne +Terri +Valerie +Kathy +Amy +Andrea +Dorothy +Maria +Angela +Ann +Terry +Carla +Crystal +Janet +Bonnie +Judy +Renee +Rhonda +Annette +Beverly +Colleen +Connie +Wanda +Debbie +Gail +Joanne +Melissa +Tracey +Anna +Joan +Kathryn +Lynn +Regina +Betty +Diana +Ellen +Holly +Janice +Joyce +Julie +Melanie +Stephanie +Alice +Darlene +Eileen +Jean +Jill +Maureen +Penny +Rose +Victoria +Beth +Cathy +Charlotte +Leslie +Marie +Shirley +Vicki +Anita +Cindy +Dana +Sarah +Sheri +Charlene +Frances +Helen +Lorraine +Lynne +Patty +Rita +Toni +Yvette +Caroline +Carrie +Elaine +Faith +Julia +Marsha +Stacey +Vickie +Virginia +Yvonne +Christina +Gina +Gloria +Jeanne +Katherine +Loretta +Ruth +Veronica +Chris +Dianna +Dolores +Evelyn +Joann +Juanita +Kelley +Martha +Norma +Roberta +Sherri +Alicia +Belinda +Deanna +Debora +Doris +Felicia +Gwendolyn +Jackie +Jamie +Lauren +Louise +Marcia +Marian +Maryann +Melinda +Nina +Phyllis +Sally +Sheryl +Stacy +Sue +Trudy +Allison +April +Arlene +Betsy +Carmen +Cassandra +Celeste +Constance +Deidre +Delores +Dianne +Eleanor +Florence +Grace +Gwen +Heather +Hope +Jo +Joy +June +Kristin +Lydia +Marcella +Marianne +Marybeth +Monica +Natalie +Peggy +Rachel +Robyn +Rochelle +Rosa +Sandy +Shelly +Sonya +Tamara +Tara +Traci +Vanessa +Lisa +Mary +Karen +Donna +Patricia +Susan +Kimberly +Deborah +Linda +Sharon +Elizabeth +Cynthia +Denise +Sandra +Dawn +Teresa +Kathleen +Michelle +Barbara +Pamela +Tammy +Nancy +Stephanie +Tracy +Christine +Robin +Michele +Theresa +Brenda +Cheryl +Margaret +Carol +Jacqueline +Angela +Diane +Jennifer +Laura +Crystal +Sherry +Valerie +Debra +Tina +Ann +Paula +Darlene +Kelly +Wendy +Catherine +Lori +Andrea +Carolyn +Joanne +Terri +Kathy +Leslie +Bonnie +Joan +Julie +Wanda +Amy +Debbie +Jill +Renee +Anne +Cindy +Katherine +Kim +Melissa +Gail +Sheila +Suzanne +Connie +Rebecca +Terry +Victoria +Beverly +Carla +Dana +Regina +Rhonda +Diana +Janice +Lynn +Shelly +Sherri +Veronica +Deneen +Dorothy +Holly +Jane +Janet +Laurie +Ruth +Tracey +Annette +Beth +Charlene +Colleen +Judith +Judy +Maureen +Sarah +Shirley +Virginia +Cathy +Constance +Gina +Joann +Lynda +Marie +Rose +Belinda +Eileen +Jeanne +Julia +Kathryn +Betty +Helen +Martha +Monica +Sue +Yvette +Alice +Joyce +Juanita +Roberta +Alicia +Anita +Anna +Charlotte +Christina +Doris +Elaine +Frances +Gloria +Kimberley +Maria +Melanie +Patty +Penny +Phyllis +Sandy +Tanya +Vicki +Alison +April +Carole +Caroline +Claire +Edna +Heidi +Jacquelyn +Jean +June +Katrina +Lauren +Louise +Nina +Rochelle +Shelley +Vivian +Allison +Arlene +Bernadette +Dianne +Ella +Ellen +Grace +Heather +Jeanette +Lorraine +Marilyn +Melody +Natalie +Sally +Sara +Sheri +Sheryl +Stacy +Tamara +Teri +Toni +Vickie +Audrey +Bobbie +Bridget +Bridgette +Deanna +Deidre +Erin +Felicia +Francine +Hope +Irene +Jeannette +Josephine +Marjorie +Marsha +Melinda +Paulette +Pauline +Ronda +Sonya +Stacey +Sylvia +Yvonne +Lisa +Kimberly +Karen +Mary +Susan +Donna +Dawn +Deborah +Patricia +Christine +Sharon +Cynthia +Robin +Linda +Michele +Michelle +Angela +Jennifer +Barbara +Elizabeth +Denise +Sandra +Stephanie +Kathleen +Pamela +Laura +Lori +Diane +Teresa +Brenda +Cheryl +Tammy +Amy +Margaret +Tracy +Wendy +Debra +Nancy +Sheila +Kelly +Ann +Carol +Theresa +Tracey +Catherine +Jacqueline +Tina +Andrea +Paula +Kim +Melissa +Rhonda +Kathy +Valerie +Crystal +Jill +Maureen +Rebecca +Carolyn +Renee +Julie +Maria +Virginia +Anna +Beth +Connie +Anne +Annette +Betty +Christina +Dana +Darlene +Gail +Allison +Carla +Cindy +Katherine +Laurie +Regina +Stacey +Bonnie +Colleen +Deanna +Dorothy +Jane +Janet +Joan +Joyce +Judith +Leslie +Marie +Sherry +Shirley +Suzanne +Vicki +Wanda +April +Gloria +Janice +Lynn +Marsha +Ruth +Terri +Victoria +Alison +Anita +Holly +Kathryn +Monica +Diana +Nicole +Peggy +Penny +Tamara +Yvonne +Amanda +Carmen +Charlene +Constance +Debbie +Eileen +Helen +Lorraine +Lynne +Sarah +Suzette +Antoinette +Arlene +Cathy +Charlotte +Danielle +Gina +Gwendolyn +Jessica +Judy +Julia +Rita +Tanya +Bernadette +Beverly +Dora +Elaine +Heather +Heidi +Joann +Kristin +Kristine +Marlene +Rose +Terry +Tonya +Vickie +Yvette +Bonita +Cassandra +Ellen +Frances +Jackie +Jean +Jeanette +Jeanne +Joanne +Jody +Loretta +Marcia +Marjorie +Maryann +Mia +Miriam +Monique +Roberta +Sally +Shannon +Sylvia +Toni +Traci +Trina +Carole +Caroline +Dianne +Doris +Gretchen +Irene +Jamie +Jo +Jodi +Katrina +Kimberley +Kristen +Lesley +Martha +Nadine +Nina +Phyllis +Ramona +Rochelle +Samantha +Shelia +Sonya +Veronica +Yolanda +Lisa +Kimberly +Mary +Karen +Michelle +Dawn +Susan +Donna +Deborah +Patricia +Christine +Michele +Barbara +Elizabeth +Tracy +Teresa +Tammy +Diane +Jennifer +Kelly +Tina +Linda +Kathleen +Nancy +Cynthia +Denise +Pamela +Sandra +Amy +Brenda +Julie +Laura +Sharon +Cheryl +Theresa +Carol +Lori +Stephanie +Robin +Andrea +Sheila +Angela +Catherine +Melissa +Debra +Paula +Wendy +Beth +Jacqueline +Maria +Carolyn +Laurie +Tracey +Crystal +Margaret +Rebecca +Valerie +Ann +Anne +Christina +Janet +Suzanne +Veronica +Jill +Kathryn +Kathy +Sherry +Gina +Kim +Monica +Regina +Rhonda +Colleen +Holly +Renee +Wanda +Carla +Diana +Sherri +Stacey +Charlotte +Dana +Darlene +Lynn +Marie +Sarah +Tanya +Bonnie +Julia +Katherine +Kristin +Penny +Terri +Traci +Annette +Cathy +Charlene +Elaine +Gail +Heather +Joyce +Leslie +Nicole +Vicki +Debbie +Jane +Joan +Joanne +Judith +Maureen +Ruth +Stacy +Virginia +Alice +Beverly +Evelyn +Hope +Kelley +Kristine +Loretta +Shirley +Victoria +Amanda +Bernadette +Eileen +Frances +Heidi +Martha +Shelly +Sonya +Yvonne +Anita +April +Audrey +Betty +Carmen +Gwendolyn +Helen +Melanie +Melinda +Peggy +Samantha +Shannon +Sonja +Anna +Caroline +Cindy +Constance +Deanna +Jeanne +Joann +Juanita +Kimberley +Kirsten +Lois +Marianne +Phyllis +Robyn +Sally +Terry +Allison +Angel +Antoinette +Betsy +Bobbie +Cassandra +Danielle +Daphne +Deena +Dolores +Dorothy +Ellen +Emma +Felicia +Irene +Jacquelyn +Jamie +Janice +Jody +Kristen +Lauri +Lee +Lorraine +Louise +Norma +Sylvia +Toni +Valarie +Vickie +Lisa +Kimberly +Michelle +Susan +Karen +Mary +Elizabeth +Patricia +Christine +Dawn +Stephanie +Deborah +Donna +Cynthia +Pamela +Tammy +Wendy +Jennifer +Melissa +Sharon +Kathleen +Amy +Laura +Michele +Linda +Cheryl +Denise +Theresa +Sandra +Barbara +Tina +Angela +Kelly +Carol +Robin +Tracy +Nancy +Lori +Teresa +Diane +Rebecca +Andrea +Margaret +Valerie +Ann +April +Brenda +Terri +Debra +Paula +Bonnie +Sherry +Anne +Carolyn +Heather +Jacqueline +Julie +Sheila +Christina +Diana +Janet +Kim +Kristin +Tracey +Maria +Suzanne +Catherine +Dana +Renee +Rhonda +Crystal +Gina +Maureen +Tanya +Victoria +Wanda +Cathy +Holly +Jill +Colleen +Jane +Laurie +Nicole +Regina +Sarah +Annette +Eileen +Jean +Judith +Kathryn +Melanie +Sherri +Stacey +Stacy +Anita +Bernadette +Deanna +Joanne +Katherine +Kathy +Leslie +Rachel +Vicki +Yvonne +Cindy +Frances +Joyce +Marie +Sheri +Tamara +Tonya +Beth +Faith +Gloria +Joann +Juanita +Monica +Ruth +Sonya +Vickie +Adrienne +Carla +Janice +Julia +Loretta +Lynn +Penny +Shelley +Shelly +Sonja +Audra +Constance +Darlene +Debbie +Dina +Doris +Dorothy +Elaine +Jamie +Judy +Lauren +Martha +Norma +Roberta +Sabrina +Sheryl +Tammie +Terry +Virginia +Candace +Charlene +Charlotte +Gail +Iris +Jessica +Jo +Joan +Karin +Leigh +Lorraine +Nina +Ronda +Samantha +Sylvia +Tracie +Vanessa +Veronica +Alison +Anna +Belinda +Beverly +Cassandra +Celeste +Danielle +Desiree +Ellen +Helen +Jeanne +Joy +June +Kristine +Lynne +Priscilla +Sally +Shawn +Toni +Lisa +Kimberly +Michelle +Jennifer +Susan +Karen +Dawn +Donna +Laura +Patricia +Mary +Elizabeth +Amy +Melissa +Pamela +Sharon +Kelly +Michele +Deborah +Stephanie +Christine +Angela +Denise +Sandra +Wendy +Catherine +Cynthia +Tammy +Theresa +Barbara +Rebecca +Cheryl +Kathleen +Tracy +Robin +Julie +Linda +Lori +Teresa +Christina +Andrea +Ann +Tina +Jill +Valerie +Diane +Tracey +Victoria +Brenda +Nancy +Holly +Katherine +Debra +Margaret +Suzanne +Renee +Sherry +Stacey +Carol +Carolyn +Lynn +Paula +Sheila +Terri +Darlene +Maria +Rhonda +Jacqueline +Kristin +Bonnie +Heather +Leslie +Alice +Beth +Dana +Diana +Kim +Monica +Stacy +Deanna +Loretta +Sherri +Tanya +Carrie +Dorothy +Janet +Penny +Rachel +Yvette +Anne +Carmen +Crystal +Kathy +Tamara +Terry +Vicki +Yvonne +Candace +Colleen +Katrina +Kristen +Laurie +Rita +Tammie +Veronica +Anna +April +Beverly +Connie +Dina +Gail +Gina +Jeanette +Marie +Marjorie +Sarah +Sonya +Tara +Traci +Vanessa +Anita +Annette +Carla +Cathy +Charlotte +Cindy +Danielle +Jane +Jean +Jessica +Julia +Karin +Kelley +Marlene +Maureen +Mildred +Nicole +Nina +Regina +Ruth +Shannon +Shelly +Toni +Tonya +Virginia +Alicia +Alison +Audrey +Charlene +Elaine +Eva +Frances +Joyce +Kathryn +Kirsten +Kristina +Leigh +Melanie +Melinda +Natalie +Norma +Samantha +Sara +Shari +Shirley +Wanda +Yolanda +Adrienne +Allison +Belinda +Cassandra +Claudia +Ellen +Emily +Erin +Evelyn +Faith +Francine +Gloria +Helen +Jamie +Joanna +Joanne +Jodi +Karla +Kellie +Marcia +Marianne +Marlo +Martina +Melody +Peggy +Roberta +Shelley +Sheri +Sonia +Susanne +Terrie +Tiffany +Kimberly +Lisa +Jennifer +Dawn +Michelle +Susan +Amy +Tammy +Melissa +Karen +Mary +Pamela +Christine +Michele +Kelly +Elizabeth +Patricia +Deborah +Heather +Laura +Cynthia +Stephanie +Tina +Tracy +Angela +Julie +Sharon +Lori +Donna +Linda +Denise +Kathleen +Rebecca +Robin +Christina +Diane +Barbara +Teresa +Wendy +Jacqueline +Carol +Crystal +Cheryl +Dana +Nicole +Tracey +Nancy +Paula +Andrea +Brenda +Debra +Beth +Sandra +Theresa +Catherine +Monica +Shannon +Tanya +April +Julia +Maria +Stacey +Valerie +Victoria +Joanne +Stacy +Suzanne +Ann +Holly +Kathryn +Lynn +Rose +Veronica +Carolyn +Kristin +Rhonda +Carla +Katherine +Kristen +Laurie +Margaret +Sherry +Tonya +Yvonne +Gina +Jill +Leslie +Regina +Sheila +Sherri +Annette +Bonnie +Colleen +Deanna +Kristine +Cindy +Danielle +Diana +Kathy +Kellie +Renee +Terri +Tricia +Anne +Charlene +Erica +Janet +Melinda +Ruth +Shelley +Alicia +Dianna +Gretchen +Heidi +Judy +Kim +Lauren +Loretta +Megan +Melanie +Shirley +Tara +Terry +Traci +Vicki +Carmen +Cassandra +Deana +Dina +Dorothy +Eileen +Ellen +Gwendolyn +Helen +Jodi +Joyce +Kimberley +Marie +Rachel +Robyn +Sarah +Stacie +Tamara +Trisha +Vicky +Allison +Anita +Caroline +Connie +Debbie +Faith +Felicia +Frances +Gloria +Katrina +Kelli +Kristina +Lora +Lorie +Martha +Melody +Paige +Rochelle +Shawn +Sheri +Trina +Vickie +Yvette +Amanda +Anissa +Antoinette +Aretha +Belinda +Beverly +Charlotte +Constance +Erin +Ginger +Jamie +Jane +Janice +Jean +Jeanette +Joann +Jody +Kelley +Kimberlee +Krista +Lara +Lois +Lynda +Maureen +Nichole +Penny +Sabrina +Shari +Sonya +Staci +Susanne +Yolanda +Jennifer +Michelle +Kimberly +Lisa +Dawn +Christine +Laura +Patricia +Tracy +Kelly +Susan +Amy +Karen +Mary +Melissa +Tammy +Elizabeth +Tina +Stephanie +Nicole +Donna +Deborah +Angela +Heather +Michele +Pamela +Sharon +Denise +Cynthia +Shannon +Barbara +Julie +Kathleen +Christina +Lori +Sandra +Tracey +Andrea +Nancy +Theresa +Ann +Sheila +Tara +Robin +Valerie +Wendy +Linda +Catherine +Cheryl +Kristin +Rhonda +Brenda +Beth +Laurie +Sherry +Crystal +Rebecca +Carolyn +Dana +Jacqueline +Danielle +Maria +Suzanne +Victoria +Carol +Debra +Diane +Jessica +Katherine +Margaret +Sarah +Stacy +Teresa +Renee +Anne +April +Carla +Julia +Tanya +Stacey +Gina +Regina +Anita +Colleen +Deanna +Diana +Kristen +Leslie +Melanie +Paula +Sherri +Tamara +Jill +Marie +Megan +Tiffany +Alicia +Anna +Beverly +Erica +Gail +Holly +Janet +Karin +Kathryn +Kathy +Sara +Tonya +Carrie +Cathleen +Dorothy +Heidi +Jean +Kim +Kirsten +Krista +Samantha +Trina +Yolanda +Alison +Amanda +Darlene +Erin +Hope +Irene +Kristine +Lynn +Rachel +Shelly +Terri +Veronica +Allison +Bonnie +Cindy +Connie +Evelyn +Janice +Joanne +Maureen +Monica +Rose +Ruth +Tracie +Vicki +Ellen +Erika +Jane +Joan +Joann +Jody +Joyce +Judith +Kristie +Kristina +Lauren +Lee +Melinda +Rochelle +Sabrina +Shelley +Alisa +Betty +Bridget +Carmen +Charlene +Desiree +Doris +Eileen +Emma +Faith +Gloria +Gretchen +Helen +Jodi +Joy +Kara +Katrina +Kelli +Kellie +Melody +Natalie +Nina +Patrice +Shawna +Sheri +Shirley +Sonia +Sonya +Stacie +Terry +Vanessa +Virginia +Wanda +Yvonne +Jennifer +Kimberly +Lisa +Michelle +Dawn +Amy +Karen +Melissa +Tammy +Angela +Heather +Susan +Mary +Christine +Tracy +Nicole +Kelly +Elizabeth +Julie +Laura +Stephanie +Patricia +Wendy +Michele +Cynthia +Sharon +Stacy +Donna +Andrea +Crystal +Lori +Sandra +Tanya +Tina +Denise +Pamela +Shannon +Theresa +Deborah +Sherry +Tara +Christina +Victoria +Dana +Rebecca +Catherine +Jessica +Katherine +Sarah +Teresa +Cheryl +Holly +Carrie +Jill +Monica +Nancy +April +Carolyn +Linda +Robin +Suzanne +Tonya +Barbara +Stacey +Beth +Brenda +Colleen +Jacqueline +Tracey +Ann +Carla +Diane +Leslie +Paula +Judith +Kathleen +Rachel +Renee +Erin +Hope +Maria +Valerie +Anne +Charlene +Debra +Diana +Heidi +Janet +Kathryn +Kathy +Laurie +Lynn +Melanie +Rhonda +Sheila +Sherri +Tiffany +Anita +Danielle +Erica +Joanne +Kristen +Kristin +Margaret +Allison +Amanda +Angel +Carmen +Carol +Constance +Darlene +Jean +Kim +Sylvia +Tamara +Tricia +Veronica +Yolanda +Alison +Cindy +Deanna +Ellen +Helen +Katrina +Krista +Kristine +Regina +Samantha +Sara +Sonya +Virginia +Adrienne +Annette +Bobbie +Cathy +Christy +Connie +Jane +Joanna +Keisha +Kerry +Kimberley +Kristina +Monique +Sabrina +Sheri +Wendi +Alicia +Candice +Gina +Gloria +Gwendolyn +Ida +Joann +Joyce +Juanita +Judy +Kara +Latanya +Martha +Maureen +Natalie +Roberta +Shawn +Vicki +Angelique +Bernadette +Billie +Cara +Cassandra +Cherie +Christa +Deana +Delores +Evelyn +Felicia +Gail +Jamie +Joy +Julia +Kirsten +Marcie +Marie +Molly +Penny +Robyn +Shelley +Shelly +Shirley +Stefanie +Terri +Terry +Wanda +Jennifer +Kimberly +Lisa +Michelle +Amy +Dawn +Stephanie +Mary +Melissa +Angela +Heather +Karen +Nicole +Christine +Donna +Kelly +Susan +Michele +Laura +Elizabeth +Tracy +Tammy +Rebecca +Patricia +Tara +Shannon +Tina +Christina +Deborah +Cynthia +Sharon +Julie +Andrea +Wendy +Lori +Theresa +Robin +Tanya +Barbara +Crystal +Denise +Stacy +Kathleen +Paula +Tonya +Dana +Danielle +Jessica +Pamela +Sarah +Teresa +Tracey +April +Brenda +Rhonda +Carol +Erin +Linda +Sherry +Holly +Katina +Melanie +Sandra +Tiffany +Allison +Erica +Katherine +Kristin +Kristine +Margaret +Nancy +Renee +Stacey +Alison +Ann +Debra +Maria +Tamara +Angel +Catherine +Deanna +Heidi +Jill +Kristen +Nikki +Ruth +Suzanne +Valerie +Victoria +Anna +Cheryl +Diane +Jacqueline +Monica +Sara +Shawn +Shelly +Beth +Carrie +Christy +Cindy +Kathryn +Marie +Regina +Sherri +Terri +Catina +Janet +Kathy +Kelley +Lauren +Leslie +Lynn +Megan +Melinda +Nichole +Penny +Rachel +Yolanda +Amanda +Anne +Bonnie +Colleen +Debbie +Diana +Doris +Jean +Joanna +Julia +Katrina +Kerry +Leah +Leigh +Marsha +Veronica +Virginia +Belinda +Candace +Carla +Carolyn +Christa +Faith +Frances +Gina +Joanne +Judith +Judy +Kristina +Kristy +Laurie +Lesley +Samantha +Shirley +Sonya +Tameka +Tammi +Traci +Tracie +Tricia +Vicki +Beverly +Casey +Celeste +Charlotte +Constance +Desiree +Dianna +Elaine +Erika +Gayle +Helen +Jeanette +Jody +Kenya +Keri +Krista +Lara +Latonya +Lynette +Marcia +Monique +Natasha +Sheri +Vanessa +Yvonne +Jennifer +Amy +Michelle +Heather +Lisa +Kimberly +Dawn +Karen +Angela +Rebecca +Melissa +Nicole +Stephanie +Christine +Susan +Laura +Tammy +Elizabeth +Christina +Mary +Michele +Denise +Kelly +Julie +Shannon +Crystal +Lori +Patricia +Kristin +Tara +Tracy +Cynthia +Robin +Renee +Tanya +Tina +Catherine +Danielle +Kristen +April +Deborah +Donna +Andrea +Ann +Barbara +Holly +Jessica +Pamela +Monica +Stacey +Teresa +Wendy +Jill +Katherine +Melanie +Sandra +Stacy +Janet +Maria +Paula +Rachel +Tonya +Anna +Carol +Diane +Erica +Kathleen +Sharon +Beth +Diana +Kathryn +Sarah +Sherry +Tamara +Theresa +Virginia +Carrie +Cheryl +Dana +Katina +Linda +Megan +Sheila +Valerie +Julia +Kristine +Rhonda +Tiffany +Victoria +Alison +Joanna +Lauren +Laurie +Margaret +Melinda +Nancy +Amanda +Anne +Brenda +Carla +Deanna +Hope +Jacqueline +Joanne +Lynn +Shelly +Sonya +Tracey +Vicki +Bonnie +Cindy +Colleen +Felicia +Kristie +Kristina +Leslie +Natalie +Beverly +Bridget +Candace +Carolyn +Erin +Gina +Jeanette +Jenny +Katrina +Kerri +Marcia +Meredith +Nichole +Nina +Sara +Sherri +Adrienne +Aimee +Allison +Anita +Annette +Catina +Charlotte +Christy +Elaine +Faith +Gretchen +Heidi +Jamie +Kathy +Kelley +Krista +Penny +Robyn +Sheri +Stacie +Stefanie +Yvette +Jennifer +Amy +Heather +Michelle +Kimberly +Melissa +Nicole +Lisa +Stephanie +Kelly +Mary +Dawn +Karen +Angela +Christina +Susan +Christine +Elizabeth +Tammy +Tracy +Crystal +Laura +Shannon +Andrea +Denise +Rebecca +Lori +Stacey +Jessica +Patricia +Erin +Katherine +Tara +April +Danielle +Kristen +Wendy +Michele +Robin +Sarah +Tanya +Tina +Kristin +Julie +Dana +Monica +Sandra +Stacy +Theresa +Holly +Pamela +Rachel +Sharon +Deborah +Donna +Linda +Melanie +Renee +Tiffany +Barbara +Catherine +Jacqueline +Laurie +Tracey +Maria +Victoria +Amanda +Cynthia +Jill +Joy +Megan +Ellen +Amber +Brandy +Carolyn +Carrie +Emily +Erica +Gina +Kathleen +Leslie +Shelly +Suzanne +Tamara +Teresa +Tonya +Anita +Brenda +Diane +Julia +Kathryn +Lauren +Paula +Regina +Rhonda +Sherry +Tricia +Virginia +Alison +Angel +Carla +Deanna +Heidi +Kendra +Kerry +Margaret +Meredith +Nakia +Natalie +Samantha +Valerie +Alicia +Beth +Charlene +Christy +Cindy +Colleen +Diana +Katrina +Keri +Kerri +Kisha +Kristi +Kristina +Kristine +Maureen +Ruth +Sara +Tamika +Aimee +Anne +Bonnie +Cathy +Cheryl +Darlene +Debra +Evelyn +Janet +Kelley +Lynn +Melinda +Shawna +Alexis +Alice +Allison +Ann +Ashley +Bridget +Caroline +Debbie +Dina +Eileen +Jeanette +Kimberley +Krista +Nichole +Sherri +Stacie +Jennifer +Amy +Kimberly +Heather +Melissa +Michelle +Angela +Nicole +Christine +Rebecca +Lisa +Stephanie +Mary +Christina +Dawn +Kelly +Susan +Jessica +April +Elizabeth +Karen +Amanda +Laura +Andrea +Carrie +Cynthia +Jill +Sarah +Wendy +Megan +Tracy +Danielle +Julie +Robin +Shannon +Stacy +Tara +Melanie +Tina +Catherine +Erin +Katherine +Kristen +Stacey +Tammy +Kristin +Pamela +Patricia +Dana +Rachel +Renee +Sandra +Sharon +Crystal +Donna +Michele +Tanya +Alicia +Allison +Barbara +Holly +Tiffany +Tonya +Anne +Deborah +Denise +Katrina +Samantha +Brandy +Cheryl +Christy +Colleen +Jamie +Kathleen +Lori +Margaret +Melinda +Emily +Keisha +Theresa +Adrienne +Alison +Diana +Erica +Kathryn +Kathy +Laurie +Sara +Sherry +Teresa +Ann +Brenda +Christie +Jacqueline +Leslie +Linda +Maria +Meredith +Rhonda +Suzanne +Amber +Anna +Courtney +Deanna +Diane +Monica +Natalie +Regina +Tracey +Valerie +Victoria +Debra +Dorothy +Elaine +Jaime +Jodi +Kara +Karla +Kelley +Marie +Misty +Nancy +Nichole +Veronica +Carla +Charlene +Gina +Jenny +Joanna +Lakisha +Latoya +Lauren +Mandy +Meghan +Paula +Robyn +Ruth +Tamika +Tricia +Yvonne +Angel +Ashley +Billie +Caroline +Carolyn +Dena +Heidi +Jean +Joan +Joanne +Joy +Juanita +Kim +Kimberley +Kisha +Kristine +Lynn +Marcia +Marsha +Martha +Nakia +Rose +Shelly +Sherri +Sonya +Tanisha +Jennifer +Amy +Heather +Kimberly +Melissa +Michelle +Nicole +Christina +Angela +Kelly +Stephanie +Lisa +Amanda +Laura +Shannon +Elizabeth +Jessica +Mary +Erin +Rebecca +Stacey +Andrea +Danielle +Jaime +Kristin +Dawn +Cynthia +Jamie +Karen +Tara +Sarah +April +Carrie +Julie +Susan +Catherine +Christine +Crystal +Lori +Wendy +Denise +Erica +Katherine +Kristen +Leslie +Megan +Sharon +Stacy +Michele +Tina +Dana +Deborah +Pamela +Tammy +Tanya +Tiffany +Allison +Patricia +Theresa +Tracy +Jill +Rachel +Robin +Valerie +Courtney +Melanie +Alicia +Brenda +Colleen +Emily +Holly +Natalie +Amber +Donna +Dorothy +Jacqueline +Kathryn +Kristina +Monica +Nichole +Sara +Teresa +Victoria +Anna +Barbara +Beth +Diana +Kathleen +Maria +Nancy +Renee +Samantha +Sandra +Tamara +Gabrielle +Gina +Gwendolyn +Joanna +Jodi +Kendra +Linda +Lindsay +Sherry +Carolyn +Janet +Kelley +Lynn +Margaret +Marie +Suzanne +Adrienne +Aimee +Anne +Bonnie +Cara +Heidi +Jody +Julia +Katrina +Latasha +Lauren +Martha +Meghan +Tonya +Ashley +Beverly +Billie +Brandy +Bridget +Brooke +Carol +Caroline +Cheryl +Christa +Christy +Deanna +Diane +Ebony +Erika +Faith +Frances +Janine +Katie +Lakeisha +Latanya +Latisha +Laurie +Melinda +Paula +Regina +Robyn +Sabrina +Veronica +Jennifer +Heather +Amy +Melissa +Michelle +Kelly +Kimberly +Nicole +Angela +Jessica +Amanda +Rebecca +Stephanie +Erin +Shannon +Lisa +Elizabeth +Christina +Danielle +Dawn +Sarah +Christine +Andrea +Jamie +Karen +Laura +Crystal +Megan +Julie +Mary +Lauren +Lori +Susan +Tammy +Tiffany +Jaime +Kathryn +Tina +April +Carrie +Tara +Jill +Michele +Sandra +Stacey +Teresa +Alison +Katherine +Sara +Kristen +Kristin +Melanie +Stacy +Allison +Erica +Alicia +Renee +Tanya +Anne +Cynthia +Tonya +Amber +Barbara +Dana +Donna +Katie +Linda +Lindsay +Pamela +Victoria +Wendy +Catherine +Courtney +Holly +Kristy +Laurie +Rachel +Samantha +Brenda +Deanna +Monica +Tamara +Tracy +Valerie +Adrienne +Beth +Carla +Colleen +Diana +Diane +Joy +Kathleen +Leslie +Robin +Aisha +Anna +Carolyn +Christy +Emily +Jaclyn +Jacqueline +Kristie +Margaret +Nichole +Paula +Robyn +Terri +Ann +Brandy +Charlene +Cheryl +Denise +Kristina +Maria +Meghan +Nancy +Regina +Summer +Theresa +Yolanda +Ashley +Brooke +Candice +Christa +Gina +Janet +Jodi +Kara +Kerri +Krista +Lakisha +Lynn +Natalie +Patricia +Shanna +Sharon +Sherry +Stacie +Suzanne +Tabitha +Tamika +Aimee +Angel +Annette +Bonnie +Carol +Cassandra +Ebony +Erika +Helen +Hope +Jillian +Julia +Kari +Katrina +Keisha +Kelley +Kristi +Mandy +Meredith +Sabrina +Shelly +Sherri +Sommer +Tracey +Jennifer +Kelly +Melissa +Heather +Michelle +Kimberly +Elizabeth +Jessica +Angela +Nicole +Christina +Lisa +Amy +Erin +Laura +Sarah +Stephanie +Crystal +Amanda +Shannon +Mary +Rebecca +Christine +Katherine +Danielle +Jamie +Jill +Megan +Andrea +Karen +April +Susan +Tina +Julie +Stacey +Tiffany +Lauren +Rachel +Stacy +Kathryn +Katie +Beth +Dawn +Holly +Jaime +Kristen +Tara +Carrie +Tracy +Carolyn +Erica +Kathleen +Lori +Michele +Alison +Catherine +Jacqueline +Kristin +Melanie +Allison +Brandy +Courtney +Tammy +Amber +Deborah +Emily +Colleen +Devon +Leslie +Pamela +Robin +Sandra +Theresa +Wendy +Brandi +Dana +Kristina +Laurie +Lindsay +Margaret +Samantha +Aimee +Barbara +Brooke +Ebony +Julia +Katrina +Melinda +Patricia +Regina +Valerie +Alexis +Alicia +Ann +Anna +Autumn +Denise +Donna +Jaclyn +Mandy +Nancy +Tanya +Victoria +Ashley +Carla +Caroline +Cassandra +Christy +Debra +Diane +Heidi +Joanna +Jodi +Linda +Maria +Natasha +Tamara +Teresa +Vanessa +Alice +Anne +Cheryl +Cynthia +Desiree +Diana +Gina +Jacquelyn +Janelle +Joanne +Joy +Kara +Kristie +Kristine +Kristy +Latisha +Leah +Lynn +Marcia +Martha +Meghan +Natalie +Nichole +Renee +Sara +Sonya +Tamika +Annette +Brenda +Jillian +Jodie +Lakisha +Lara +Latasha +Latoya +Monique +Sabrina +Sherri +Toni +Tracey +Veronica +Yvonne +Jennifer +Melissa +Heather +Nicole +Amanda +Angela +Jessica +Amy +Michelle +Kelly +Christina +Lisa +Kimberly +Elizabeth +Erin +Shannon +Andrea +Christine +Crystal +Lauren +Jamie +Katherine +Laura +Stephanie +Sarah +Dana +Dawn +Rebecca +Megan +Karen +April +Mary +Tiffany +Holly +Stacey +Amber +Ann +Danielle +Erica +Michele +Sara +Allison +Carrie +Katie +Susan +Alison +Julie +Melanie +Tracy +Emily +Kathryn +Kristen +Stacy +Alicia +Catherine +Kathleen +Kristin +Margaret +Rachel +Adrienne +Jacqueline +Mindy +Patricia +Tara +Tina +Wendy +Anna +Leslie +Monica +Samantha +Theresa +Christy +Courtney +Denise +Jill +Valerie +Carolyn +Cynthia +Ebony +Julia +Linda +Lori +Meghan +Nancy +Pamela +Ashley +Brenda +Cheryl +Gina +Katrina +Lindsay +Natasha +Nichole +Renee +Alexis +Deborah +Debra +Donna +Hope +Jaime +Janet +Kristy +Melinda +Misty +Paula +Ruth +Ryan +Sabrina +Sandra +Suzanne +Tasha +Beth +Janelle +Kara +Meredith +Michael +Natalie +Regina +Tamara +Tammy +Victoria +Anita +Antoinette +Brandi +Candice +Colleen +Deanna +Desiree +Frances +Kelley +Kelli +Kristina +Kristine +Latisha +Maria +Marie +Rachael +Shana +Teresa +Tia +Angie +Carla +Casey +Devon +Diana +Heidi +Jaclyn +Janine +Joy +Joyce +Juanita +Kendra +Krista +Kristi +Lakisha +Laurie +Leah +Leigh +Molly +Rebekah +Shanna +Sharon +Sherry +Tanya +Tonya +Yolanda +Jennifer +Jessica +Melissa +Amanda +Heather +Elizabeth +Sarah +Stephanie +Christina +Erin +Lisa +Michelle +Kimberly +Amy +Kelly +Nicole +Angela +Tiffany +Christine +Rebecca +Laura +Lauren +Danielle +Crystal +Kristin +Erica +Mary +Megan +Sara +Shannon +Jamie +April +Julie +Rachel +Karen +Katherine +Kristen +Amber +Andrea +Dawn +Stacey +Susan +Tracy +Ashley +Kathryn +Alison +Patricia +Tara +Samantha +Brooke +Emily +Katie +Pamela +Tanya +Kristina +Melanie +Melinda +Tina +Brandi +Carrie +Catherine +Dana +Kristy +Linda +Lori +Stacy +Theresa +Alicia +Anna +Beth +Courtney +Krista +Leslie +Lindsay +Maria +Carolyn +Cheryl +Diana +Ebony +Holly +Rachael +Tamara +Allison +Barbara +Bonnie +Jaime +Jill +Julia +Kathleen +Michele +Monica +Monique +Renee +Tammy +Victoria +Adrienne +Brandy +Colleen +Natalie +Sharon +Valerie +Wendy +Carla +Christy +Cynthia +Devon +Dorothy +Heidi +Jenny +Paula +Sandra +Tasha +Tonya +Aimee +Alexis +Bethany +Candace +Denise +Gina +Jaclyn +Jacqueline +Katrina +Kristi +Kristine +Leanne +Margaret +Meghan +Nichole +Teresa +Toni +Trisha +Angel +Candice +Caroline +Cassandra +Diane +Joy +Kellie +Laurie +Meredith +Nina +Regina +Rhonda +Sherri +Stefanie +Suzanne +Tabitha +Tia +Veronica +Abigail +Alisha +Anne +Cristina +Desiree +Donna +Erika +Faith +Janet +Joanna +Katharine +Latasha +Latoya +Lesley +Lydia +Marie +Molly +Nancy +Natasha +Robin +Shana +Sonya +Tanisha +Tracey +Yvonne +Jennifer +Jessica +Melissa +Amy +Kimberly +Stephanie +Heather +Amanda +Sarah +Nicole +Elizabeth +Rebecca +Lauren +Christina +Erin +Laura +Tiffany +Kristin +Kelly +Megan +Crystal +Michelle +Angela +Lisa +Andrea +Christine +Danielle +Kristen +April +Mary +Shannon +Jamie +Lindsay +Rachel +Dawn +Tara +Katherine +Courtney +Amber +Emily +Erica +Dana +Karen +Kathryn +Sara +Stacey +Ashley +Carrie +Jill +Allison +Jaime +Julia +Katie +Latoya +Patricia +Kathleen +Barbara +Brandy +Julie +Susan +Brooke +Holly +Jacqueline +Catherine +Latasha +Tanya +Valerie +Adrienne +Leah +Maria +Samantha +Tina +Pamela +Tammy +Theresa +Alison +Diana +Joanna +Kristina +Melanie +Sandra +Sharon +Tracy +Victoria +Denise +Lindsey +Margaret +Michele +Monica +Monique +Stacy +Alexis +Alicia +Anna +Brenda +Candice +Cynthia +Jillian +Katrina +Krystal +Lori +Marie +Molly +Nina +Regina +Robin +Wendy +Abigail +Bethany +Carla +Caroline +Casey +Cheryl +Christy +Lynn +Natalie +Natasha +Nichole +Rebekah +Tamara +Angel +Brandi +Carissa +Devon +Donna +Jaclyn +Janelle +Jenny +Joy +Kate +Latonya +Melinda +Meredith +Morgan +Renee +Tonya +Trisha +Beth +Carolyn +Christie +Colleen +Deborah +Felicia +Gina +Hope +Jennie +Joan +Kerry +Kristi +Leigh +Leslie +Lydia +Meghan +Shayla +Stefanie +Tasha +Tia +Tracey +Vanessa +Virginia +Jennifer +Jessica +Amanda +Lauren +Stephanie +Melissa +Sarah +Erin +Kelly +Heather +Nicole +Amy +Kimberly +Laura +Michelle +Elizabeth +Christina +Rachel +Angela +Rebecca +Tiffany +Kristen +Megan +Katherine +Kristin +Lindsay +Shannon +Danielle +Amber +Crystal +Lisa +Andrea +April +Christine +Emily +Mary +Sara +Erica +Jamie +Ashley +Kathleen +Julie +Kathryn +Tara +Dawn +Patricia +Karen +Samantha +Lindsey +Melanie +Catherine +Dana +Jacqueline +Ebony +Margaret +Susan +Valerie +Katie +Alexis +Candice +Courtney +Julia +Robin +Stacey +Victoria +Alison +Colleen +Casey +Deanna +Jillian +Kristina +Pamela +Brandy +Cynthia +Holly +Jill +Leslie +Natalie +Natasha +Nichole +Tina +Angel +Carrie +Donna +Latoya +Meredith +Sharon +Stacy +Tracy +Anne +Bridget +Deborah +Gina +Jaime +Jenna +Katrina +Krista +Morgan +Regina +Rochelle +Abigail +Adrienne +Allison +Barbara +Bethany +Brandi +Carla +Erika +Kate +Krystal +Meghan +Michele +Monica +Monique +Shelly +Tamara +Tasha +Teresa +Beth +Brenda +Christy +Denise +Diana +Dorothy +Jaclyn +Janet +Kendra +Kristine +Kristy +Laurie +Leigh +Maria +Maureen +Melinda +Nancy +Renee +Sandra +Stefanie +Tabitha +Tammy +Theresa +Tracey +Wendy +Alicia +Bonnie +Brooke +Candace +Carol +Cassandra +Cheryl +Joy +Kara +Kira +Latasha +Leah +Linda +Rosa +Ruth +Sheena +Tanya +Tia +Toni +Jennifer +Jessica +Ashley +Amanda +Heather +Sarah +Stephanie +Melissa +Lauren +Elizabeth +Nicole +Christina +Kimberly +Megan +Amy +Erin +Kelly +Laura +Amber +Rebecca +Crystal +Michelle +Tiffany +Rachel +Katherine +Andrea +Lindsay +Angela +Lisa +Erica +Kristin +Danielle +Shannon +Jamie +Sara +Mary +Kathryn +Kristen +Stacey +April +Lindsey +Emily +Courtney +Dana +Julie +Latoya +Melanie +Tara +Alexis +Holly +Karen +Victoria +Christine +Lori +Sheena +Adrienne +Alicia +Allison +Brandy +Brittany +Casey +Denise +Jacqueline +Kathleen +Kristina +Maria +Samantha +Stacy +Carrie +Dawn +Brandi +Catherine +Leah +Meghan +Valerie +Candace +Colleen +Jaime +Jill +Katie +Pamela +Patricia +Renee +Susan +Alison +Anna +Anne +Cynthia +Diana +Ebony +Jaclyn +Joanna +Julia +Latasha +Michele +Natalie +Stefanie +Theresa +Tracy +Alisha +Carolyn +Erika +Linda +Barbara +Joy +Kate +Kristy +Margaret +Marquita +Monica +Sabrina +Bethany +Carla +Caroline +Deborah +Desiree +Jenna +Krystal +Latisha +Mandy +Marie +Meredith +Morgan +Robin +Sandra +Shayla +Tammy +Tanisha +Tina +Virginia +Alexandra +Brooke +Caitlin +Candice +Karin +Katrina +Krista +Kristine +Lacey +Laurie +Leslie +Martha +Natasha +Nichole +Nina +Ryan +Teresa +Tia +Toni +Jennifer +Jessica +Ashley +Amanda +Lauren +Stephanie +Nicole +Danielle +Heather +Megan +Melissa +Sarah +Amber +Kimberly +Elizabeth +Laura +Kelly +Erin +Rachel +Christina +Michelle +Tiffany +Amy +Jamie +Christine +Kristin +Kristen +Lisa +Lindsay +Rebecca +Crystal +Katherine +Shannon +Angela +Kathryn +Meghan +Tara +Erica +Mary +Sara +Courtney +Jenna +Emily +Katie +Alexis +Alicia +Julie +Samantha +Stacy +Andrea +Jacqueline +Dawn +Latoya +Victoria +April +Colleen +Lindsey +Stacey +Brandi +Brandy +Catherine +Holly +Kathleen +Allison +Brittany +Karen +Kristina +Diana +Leah +Pamela +Anna +Deanna +Caitlin +Jaime +Monica +Rachael +Renee +Sheena +Valerie +Alison +Carrie +Dana +Jaclyn +Julia +Margaret +Morgan +Patricia +Robin +Barbara +Candace +Carolyn +Cynthia +Ebony +Erika +Jill +Latasha +Leslie +Melanie +Nichole +Sharon +Abigail +Adrienne +Alexandra +Ann +Brenda +Candice +Caroline +Deborah +Gina +Katrina +Kendra +Krista +Linda +Maria +Melinda +Paula +Ruth +Angel +Brooke +Casey +Claire +Elisabeth +Emma +Janet +Jasmine +Jillian +Joanna +Kara +Latisha +Martha +Michele +Misty +Natalie +Natasha +Sabrina +Shana +Stefanie +Theresa +Alisha +Autumn +Bonnie +Charity +Grace +Hillary +Kate +Katharine +Kristine +Kristy +Lynn +Marie +Meredith +Mindy +Olivia +Taylor +Teresa +Tina +Tracy +Jennifer +Jessica +Ashley +Amanda +Lauren +Stephanie +Nicole +Sarah +Heather +Megan +Kimberly +Danielle +Laura +Amber +Christina +Kelly +Christine +Erin +Melissa +Rachel +Rebecca +Amy +Elizabeth +Tiffany +Jamie +Erica +Kristen +Emily +Crystal +Lisa +Michelle +Sara +Katherine +Katie +Lindsay +Lindsey +Samantha +Angela +Shannon +Julie +Kristin +Meghan +Andrea +Brittany +Kathleen +Kathryn +Tara +April +Jenna +Courtney +Julia +Mary +Kristina +Alicia +Alison +Brandy +Caitlin +Krystal +Whitney +Ebony +Holly +Victoria +Catherine +Jillian +Michele +Alexis +Erika +Krista +Patricia +Theresa +Valerie +Allison +Brittney +Carrie +Cynthia +Denise +Meredith +Alexandra +Alyssa +Anna +Hilary +Jaclyn +Jacqueline +Melanie +Brandi +Cassandra +Dana +Deanna +Katrina +Leah +Margaret +Maria +Sheena +Sierra +Stacey +Tina +Adrienne +Ashlee +Cara +Casey +Dawn +Dominique +Jaime +Jill +Karen +Kasey +Latoya +Leslie +Pamela +Regina +Robin +Sharon +Stacy +Susan +Tonya +Tracy +Vanessa +Brooke +Colleen +Diana +Diane +Donna +Joanna +Kaitlin +Kari +Lori +Melinda +Nancy +Natasha +Rebekah +Renee +Tabitha +Teresa +Veronica +Angel +Antonia +Ashely +Autumn +Barbara +Beth +Brianna +Bridget +Caroline +Elise +Jane +Kara +Kelley +Meagan +Monica +Monique +Morgan +Natalie +Rachael +Randi +Shante +Stefanie +Tia +Ashley +Jessica +Amanda +Jennifer +Sarah +Heather +Lauren +Megan +Stephanie +Amber +Nicole +Brittany +Elizabeth +Laura +Danielle +Kelly +Melissa +Rebecca +Michelle +Samantha +Tiffany +Christina +Erin +Kimberly +Jamie +Shannon +Amy +Katherine +Rachel +Mary +Erica +Courtney +Christine +Katie +Sara +Kathryn +Kristin +Lindsay +Lindsey +Kathleen +Andrea +Angela +Emily +Caitlin +Kristen +Lisa +Kristina +Whitney +Crystal +Victoria +Alexandra +April +Meghan +Catherine +Dana +Alicia +Allison +Anna +Julie +Cassandra +Dominique +Jillian +Brandy +Holly +Jacqueline +Jenna +Julia +Leah +Margaret +Pamela +Patricia +Carolyn +Casey +Colleen +Diana +Molly +Natasha +Tara +Karen +Melanie +Meredith +Natalie +Alison +Ashlee +Claire +Dawn +Jasmine +Katelyn +Krystal +Mallory +Nichole +Sade +Sharon +Stacy +Anne +Barbara +Felicia +Jaclyn +Joanna +Kara +Latoya +Morgan +Tina +Bethany +Brandi +Brittney +Christa +Deanna +Ebony +Gabrielle +Jordan +Katrina +Krista +Leslie +Maria +Renee +Sheena +Sierra +Stacey +Stefanie +Susan +Abigail +Aimee +Alexis +Angel +Ashleigh +Candace +Candice +Debra +Denise +Jaime +Kristy +Lori +Marie +Mia +Monica +Rachael +Robin +Sandra +Tracey +Valerie +Vanessa +Adrienne +Bridget +Brooke +Caroline +Carrie +Chelsea +Devon +Erika +Gina +Hilary +Katharine +Kendra +Kerri +Kristie +Kristine +Leigh +Linda +Melinda +Melody +Theresa +Jessica +Ashley +Amanda +Jennifer +Sarah +Lauren +Stephanie +Danielle +Brittany +Heather +Megan +Elizabeth +Nicole +Christina +Amber +Rebecca +Melissa +Rachel +Samantha +Erin +Kimberly +Kelly +Laura +Mary +Tiffany +Amy +Emily +Courtney +Kristin +Lindsay +Katherine +Sara +Michelle +Christine +Kathryn +Lindsey +Angela +Crystal +Erica +Whitney +Andrea +Caitlin +Jacqueline +Katie +Jamie +Shannon +Alexandra +Allison +Stacey +Tara +Alicia +Jenna +Julia +Lisa +Victoria +Casey +Julie +Kristen +Alyssa +Anna +Catherine +Monica +Chelsea +Dana +Denise +Kristina +Leah +Alexis +Alisha +Jordan +Kathleen +Latoya +Mallory +Ashlee +Brandy +Cassandra +Gina +Holly +Jasmine +Karen +Meghan +Morgan +Natalie +Adrienne +Britney +Erika +Felicia +Jaclyn +Katrina +Krista +Taylor +Vanessa +Alison +April +Brittney +Candace +Caroline +Carrie +Diana +Dominique +Jaime +Jillian +Kelsey +Margaret +Maria +Melanie +Monique +Natasha +Nichole +Renee +Susan +Brandi +Colleen +Emma +Kaitlin +Kristine +Leslie +Meagan +Meredith +Patricia +Rachael +Sierra +Tracy +Angel +Beth +Bridget +Carolyn +Desiree +Ebony +Elise +Kasey +Kayla +Kelli +Krystal +Marie +Robin +Brooke +Carly +Cynthia +Deborah +Diane +Hannah +Kaitlyn +Kendra +Kristie +Kristy +Olivia +Pamela +Sabrina +Stacy +Tamara +Theresa +Aimee +Alexa +Alyse +Deanna +Gabrielle +Jane +Katelyn +Melinda +Michele +Paige +Patrice +Regina +Ryan +Sheena +Stefanie +Suzanne +Tabitha +Tammy +Tierra +Valerie +Veronica +Ashley +Jessica +Amanda +Brittany +Sarah +Lauren +Samantha +Jennifer +Megan +Stephanie +Amber +Heather +Danielle +Elizabeth +Nicole +Melissa +Rebecca +Emily +Christina +Laura +Kelly +Kimberly +Rachel +Erica +Tiffany +Kristen +Victoria +Caitlin +Katherine +Michelle +Sara +Chelsea +Lisa +Courtney +Crystal +Amy +Shannon +Lindsay +Christine +Jamie +Katie +Mary +Alicia +Angela +Andrea +Catherine +Kathryn +Kristin +Tara +Allison +Kayla +Alexis +Colleen +Alyssa +Erin +Kathleen +Lindsey +Jasmine +Alexandra +Monica +Whitney +Julie +Kelsey +Margaret +Meghan +Natalie +Anna +Casey +Dana +Jaclyn +Patricia +Brittney +Brooke +Jacqueline +Jenna +Karen +Katelyn +Valerie +Bethany +Jillian +Julia +Morgan +Caroline +Ebony +Holly +Kasey +Leah +Maria +Melinda +Robin +Abigail +Brianna +Britney +Caitlyn +Kaitlyn +Stacey +Susan +Sydney +Taylor +Tina +April +Brandy +Carolyn +Deanna +Devon +Gina +Jordan +Kristina +Marissa +Melanie +Meredith +Natasha +Tiara +Veronica +Alison +Angel +Cassandra +Christa +Kristi +Molly +Ruth +Angelica +Autumn +Brandi +Christy +Cynthia +Dawn +Felicia +Heidi +Jaime +Jessie +Jill +Kaitlin +Kelley +Kellie +Kendra +Krista +Leslie +Mallory +Marie +Monique +Rachael +Teresa +Tracy +Alexa +Audrey +Candice +Denise +Desiree +Dominique +Dorothy +Emma +Erika +Grace +Hannah +Hillary +India +Jalisa +Jasmin +Jazmine +Kara +Karina +Katlyn +Katrina +Kristine +Lacey +Latasha +Lydia +Martha +Michele +Nichole +Rose +Shanice +Sierra +Tamara +Theresa +Toni +Tonya +Vanessa +Ashley +Jessica +Amanda +Brittany +Lauren +Sarah +Samantha +Stephanie +Jennifer +Heather +Elizabeth +Amber +Nicole +Emily +Megan +Rachel +Laura +Danielle +Tiffany +Rebecca +Melissa +Katherine +Kelly +Kimberly +Courtney +Kristen +Erica +Erin +Sara +Chelsea +Caitlin +Christina +Mary +Michelle +Amy +Jasmine +Shannon +Alexandra +Brittney +Meghan +Taylor +Victoria +Cassandra +Katie +Kathryn +Kelsey +Kristin +Lisa +Morgan +Alicia +Anna +Christine +Jacqueline +Julia +Kayla +Kiara +Alexis +Alyssa +Andrea +Lindsay +Tara +Angela +Bethany +Crystal +Hannah +Jamie +Jenna +Kaitlyn +Natalie +Allison +Caroline +Catherine +Kathleen +Lindsey +Erika +Katelyn +Renee +Julie +Margaret +Whitney +Jordan +Alexandria +Candice +Dana +Gabrielle +Holly +Kaitlin +Alexa +Brooke +Jillian +Leah +Rachael +Stacey +Alison +Maria +Melanie +Molly +Monica +Paige +April +Brandi +Brianna +Caitlyn +Diana +Karen +Kirsten +Kristina +Adrienne +Autumn +Candace +Carolyn +Krista +Sierra +Unknown +Carrie +Colleen +Dawn +Desiree +Gina +Katrina +Kendra +Krystal +Latoya +Leslie +Mallory +Marie +Rebekah +Veronica +Anne +Ashlee +Ashly +Bianca +Carly +Casey +Dominique +Ebony +Felicia +Haley +Jaclyn +Jasmin +Kara +Kari +Kelli +Lydia +Martha +Natasha +Patricia +Robin +Valerie +Abigail +Amelia +Anastasia +Arielle +Ashton +Briana +Brianne +Carla +Devon +Emma +Jacquelyn +Julianne +Justine +Kate +Katlyn +Kristine +Leigh +Marissa +Meredith +Monique +Nancy +Nichole +Nina +Sandra +Shakira +Shana +Tabitha +Theresa +Vanessa +Jessica +Brittany +Ashley +Amanda +Samantha +Lauren +Stephanie +Sarah +Amber +Megan +Nicole +Rebecca +Courtney +Elizabeth +Emily +Chelsea +Danielle +Rachel +Kelly +Jennifer +Christina +Heather +Michelle +Erin +Melissa +Christine +Jasmine +Katherine +Caitlin +Erica +Mary +Alexandra +Victoria +Alexis +Alyssa +Kristen +Laura +Kimberly +Kelsey +Lindsay +Sara +Angela +Morgan +Amy +Taylor +Tiffany +Hannah +Allison +Kathryn +Kayla +Paige +Shannon +Anna +Meghan +Alicia +Jenna +Kaitlyn +Lindsey +Dana +Kaitlin +Katelyn +Lisa +Margaret +Olivia +Brooke +Jordan +Katie +Abigail +Andrea +Jillian +Kristin +Whitney +Brittney +Caroline +Crystal +Jamie +Julia +Melanie +Casey +Cassandra +Natalie +Caitlyn +Deanna +Gabrielle +Krista +Bethany +Catherine +Erika +Gina +Jacqueline +Kiara +Rachael +Shelby +Alison +Arielle +Bianca +Brandi +Holly +Julie +Kathleen +Nichole +Kara +Leah +Marissa +Stacey +Britney +Desiree +Hilary +Maria +Molly +Monica +Alisha +Briana +Diana +Emma +Hillary +Sierra +Tabitha +Tara +Valerie +Adrienne +Aimee +Angel +Ariel +Barbara +Brandy +Brianna +Cara +Colleen +Devon +Gabriella +Karen +Kristina +Patricia +Renee +Theresa +Alexa +April +Candice +Carly +Denise +Dominique +Ellen +Kellie +Kirsten +Kylie +Melinda +Sandra +Teresa +Tiara +Veronica +Ann +Bridget +Carolyn +Cecilia +Chelsey +Chelsie +Christian +Christin +Diamond +Grace +Jaclyn +Jacquelyn +Joanna +Katelynn +Katlyn +Katrina +Latifah +Leigh +Michele +Miranda +Natasha +Pamela +Rebekah +Regina +Staci +Tierra +Ashley +Amanda +Jessica +Brittany +Samantha +Megan +Sarah +Lauren +Emily +Jennifer +Courtney +Elizabeth +Amber +Melissa +Danielle +Nicole +Rebecca +Stephanie +Victoria +Katherine +Kelsey +Rachel +Chelsea +Alexis +Heather +Kelly +Erin +Laura +Sara +Caitlin +Morgan +Tiffany +Taylor +Alexandra +Mary +Jasmine +Lindsey +Christina +Erica +Kayla +Anna +Kaitlyn +Katie +Michelle +Shelby +Jenna +Andrea +Brianna +Brooke +Julia +Alyssa +Brittney +Kristen +Christine +Kathryn +Molly +Kimberly +Lindsay +Shannon +Allison +Amy +Casey +Catherine +Hannah +Jillian +Katelyn +Alicia +Jordan +Alexandria +Paige +Caroline +Jacqueline +Julie +Kristin +Patricia +Cassandra +Crystal +Jamie +Kara +Maria +Abigail +Alexa +Gabrielle +Gina +Leah +Olivia +Rachael +Alison +Bethany +Mariah +Meghan +Monique +Haley +Lisa +Caitlyn +Emma +Marissa +Angela +Ariel +Arielle +Audrey +Cynthia +Devon +Holly +Jaclyn +Kaitlin +Kellie +Melanie +Tara +Whitney +Brandi +Briana +Candace +Carly +Dana +Destiny +Ellen +Kristina +Margaret +Monica +Shaniqua +April +Barbara +Desiree +Diana +Erika +Felicia +Kari +Kathleen +Miranda +Natalie +Renee +Sierra +Stacey +Tiara +Valerie +Alice +Alyson +Amelia +Chloe +Cierra +Colleen +Hayley +Jocelyn +Katharine +Madeline +Sandra +Shakiyla +Sydney +Allyson +Ariana +Autumn +Bianca +Breanna +Bridget +Cara +Carolyn +Cassie +Chelsey +Corinne +Dawn +Deborah +Devin +Dominique +Elisabeth +Ericka +Faith +Heidi +Hillary +Iesha +Joanna +Kasey +Katlyn +Katrina +Kiara +Krystal +Kylie +Lacey +Latasha +Leslie +Maura +Meredith +Pamela +Paris +Ruth +Sabrina +Staci +Tiana +Tierra +Virginia +Jessica +Ashley +Amanda +Samantha +Brittany +Emily +Sarah +Taylor +Lauren +Megan +Chelsea +Danielle +Elizabeth +Rebecca +Courtney +Nicole +Rachel +Amber +Victoria +Stephanie +Jennifer +Alexis +Kelsey +Morgan +Alexandra +Kelly +Alyssa +Heather +Katherine +Michelle +Sara +Kayla +Christine +Andrea +Brooke +Caitlin +Melissa +Christina +Erica +Erin +Kathryn +Kaitlyn +Katelyn +Shannon +Shelby +Katie +Allison +Jasmine +Julia +Laura +Anna +Gabrielle +Hannah +Kristen +Mary +Tiffany +Kimberly +Casey +Lindsay +Maria +Meghan +Cassandra +Lisa +Molly +Angela +Brianna +Jamie +Julie +Kristin +Amy +Catherine +Dana +Jordan +Paige +Haley +Jenna +Jillian +Kaitlin +Mariah +Miranda +Natalie +Olivia +Alicia +Autumn +Brittney +Crystal +Kristina +Veronica +Alexa +Ariel +Margaret +Tara +Caroline +Cynthia +Jacqueline +Leah +Lindsey +Rachael +Abigail +Asia +Brianne +Carly +Hillary +Kara +Kasey +Kathleen +Meredith +Patricia +Shanice +April +Brandi +Ciara +Emma +Holly +Jaclyn +Kiara +Kirsten +Monique +Natasha +Pamela +Audrey +Briana +Carolyn +Colleen +Devon +Dominique +Gina +Grace +Hilary +Melanie +Mercedes +Monica +Susan +Sydney +Sylvia +Tayler +Whitney +Alexandria +Angelica +Ann +Bria +Caitlyn +Cierra +Ellen +Janae +Joanna +Jodi +Kelley +Kelsie +Krista +Leslie +Mallory +Nina +Savannah +Sierra +Tamara +Tyler +Abby +Alexia +Alison +Angel +Angelina +Anne +Bethany +Brenda +Bridget +Cassie +Cayla +Chelsey +Claire +Devin +Diana +Elise +Erika +Jade +Jane +Jill +Jocelyn +Kari +Katlyn +Kelli +Krystal +Lucy +Lydia +Mackenzie +Mara +Marissa +Renee +Shayla +Simone +Tanisha +Theresa +Tiana +Unknown +Valerie +Jessica +Ashley +Emily +Brittany +Lauren +Amanda +Taylor +Samantha +Sarah +Rachel +Elizabeth +Morgan +Courtney +Rebecca +Danielle +Amber +Alyssa +Jennifer +Alexis +Megan +Victoria +Kelsey +Erin +Stephanie +Jasmine +Nicole +Heather +Chelsea +Melissa +Alexandra +Katherine +Shannon +Kelly +Paige +Mary +Tiffany +Kimberly +Brooke +Sara +Hannah +Kayla +Lindsay +Lindsey +Olivia +Caitlin +Erica +Katelyn +Meghan +Allison +Brianna +Christina +Abigail +Casey +Gabrielle +Haley +Jenna +Julia +Kaitlyn +Kathryn +Laura +Kristen +Michelle +Shelby +Amy +Andrea +Katie +Christine +Marissa +Alicia +Anna +Julie +Alexandria +Caitlyn +Caroline +Catherine +Leah +Margaret +Rachael +Angela +Melanie +Natalie +Rebekah +Briana +Erika +Kathleen +Maria +Molly +Ariel +Bethany +Brandi +Cassandra +Jordan +Kristin +Lisa +Lydia +Madeline +Veronica +Alexa +Carolyn +Colleen +Jamie +Kristina +Michele +Miranda +Tara +April +Breanna +Bridget +Brittney +Devon +Dominique +Ellen +Emma +Gina +Grace +Hailey +Jacqueline +Kaitlin +Mackenzie +Mariah +Asia +Claire +Destiny +Holly +Katelynn +Kirsten +Lacey +Meredith +Sierra +Alissa +Angelica +Autumn +Bria +Carly +Chloe +Crystal +Cynthia +Desiree +Diana +Jazmine +Jillian +Kara +Kiara +Mallory +Raven +Sade +Shawna +Tiana +Unknown +Valerie +Whitney +Ariana +Ashlee +Audrey +Brittani +Camille +Cassidy +Charlotte +Cheyenne +Dana +Joanna +Kate +Kyra +Logan +Madison +Monica +Natasha +Patricia +Regina +Renee +Sabrina +Sandra +Savannah +Sydney +Jessica +Ashley +Sarah +Taylor +Amanda +Emily +Samantha +Megan +Lauren +Alexis +Victoria +Rachel +Brittany +Amber +Rebecca +Morgan +Courtney +Jennifer +Kayla +Nicole +Danielle +Stephanie +Erin +Mary +Elizabeth +Kelsey +Alexandra +Brianna +Kaitlyn +Chelsea +Katherine +Melissa +Shannon +Hannah +Abigail +Heather +Allison +Alyssa +Christina +Laura +Paige +Jordan +Briana +Brooke +Julia +Katelyn +Kathryn +Michelle +Sara +Anna +Jenna +Kelly +Caitlin +Haley +Olivia +Andrea +Catherine +Kimberly +Meghan +Amy +Bethany +Emma +Erica +Katie +Kristen +Lindsay +Margaret +Melanie +Miranda +Shelby +Jacqueline +Jasmine +Alicia +Angela +Brandi +Natalie +Unknown +Caroline +Cassandra +Gabrielle +Leah +Lindsey +Maria +Sydney +Alexa +Brittney +Caitlyn +Casey +Kaitlin +Madeline +Madison +Marissa +Molly +Renee +Tiffany +Christine +Claire +Dominique +Jamie +Jocelyn +Khadijah +Mackenzie +Savannah +Aaliyah +Carly +Carolyn +Gina +Grace +Holly +Kathleen +Kristin +Mariah +Sierra +Whitney +Ajee +Anne +Autumn +Bridget +Cheyenne +Crystal +Jillian +Meredith +Michaela +Monica +Rebekah +Alexandria +Alison +Amelia +Chloe +Ciara +Dana +Destiny +Felicia +Hailey +Lisa +Marisa +Rachael +Raven +Tori +Britney +Colleen +Cynthia +Deanna +Diana +Erika +Jade +Janae +Jasmin +Jenny +Julie +Leslie +Monique +Patricia +Tara +Allyson +Barbara +Bria +Cassie +Ciera +Gabriella +Hayley +Jaclyn +Jacquelyn +Kaitlynn +Kasey +Kellie +Kiara +Kristina +Lydia +Mallory +Nichole +Summer +Tabitha +Tiana +Tiara +Tierra +Vanessa +Virginia +Sarah +Emily +Jessica +Alexis +Ashley +Samantha +Taylor +Amanda +Victoria +Megan +Rachel +Lauren +Morgan +Courtney +Elizabeth +Brittany +Kayla +Alexandra +Danielle +Hannah +Rebecca +Alyssa +Brianna +Katherine +Kelsey +Nicole +Stephanie +Heather +Anna +Gabrielle +Amber +Haley +Kaitlyn +Allison +Brooke +Madison +Christina +Erin +Julia +Kelly +Jordan +Kimberly +Paige +Olivia +Jenna +Kathryn +Mary +Shannon +Alexa +Amy +Laura +Abigail +Kristen +Jennifer +Melissa +Jacqueline +Mackenzie +Michelle +Natalie +Shelby +Sydney +Destiny +Madeline +Sara +Caitlin +Katelyn +Briana +Jasmine +Katie +Margaret +Rachael +Chelsea +Deja +Lindsay +Lindsey +Andrea +Emma +Maria +Mariah +Marissa +Molly +Alexandria +Brittney +Catherine +Christine +Kristina +Lisa +Miranda +Sierra +Tiffany +Alicia +Breanna +Casey +Erica +Kristin +Marisa +Michaela +Raven +Sabrina +Caroline +Cassandra +Claire +Colleen +Jamie +Kaitlin +Kathleen +Melanie +Unknown +Aliyah +Aubrey +Cassidy +Dana +Desiree +Felicia +Hailey +Krista +Leah +Meghan +Valerie +Amelia +Anne +Asia +Autumn +Brandi +Bria +Caitlyn +Carolyn +Cynthia +Jaclyn +Kara +Kylie +Logan +Savannah +Selena +Summer +Tierra +Tori +Veronica +Aja +Allyson +Angela +Angelica +Bethany +Carly +Carrie +Ciara +Jada +Jillian +Katelynn +Katlyn +Mckenzie +Monica +Natasha +Rebekah +Renee +Sophia +Sophie +Tara +Whitney +Alyson +Ashlee +Bridget +Briona +Crystal +Devon +Diamond +Dianna +Eliza +Essence +Grace +Hayley +Isabella +Jasmin +Jocelyn +Julianne +Khadijah +Kira +Kirsten +Marina +Melody +Monique +Rosa +Rose +Sandra +Tabitha +Tia +Tiara +Zoe +Emily +Taylor +Sarah +Samantha +Jessica +Rachel +Ashley +Alexis +Megan +Elizabeth +Lauren +Amanda +Brittany +Hannah +Kayla +Brianna +Madison +Morgan +Courtney +Erin +Rebecca +Gabrielle +Jennifer +Alyssa +Alexandra +Abigail +Haley +Nicole +Victoria +Amber +Anna +Brooke +Jasmine +Kelsey +Chelsea +Danielle +Stephanie +Katelyn +Sydney +Caroline +Jenna +Melissa +Shelby +Julia +Kathryn +Allison +Casey +Katherine +Sabrina +Shannon +Christina +Emma +Briana +Caitlin +Catherine +Jacqueline +Jordan +Kaitlyn +Kimberly +Madeline +Olivia +Paige +Alexandria +Mary +Heather +Maria +Miranda +Sara +Alison +Breanna +Claire +Deja +Destiny +Kelly +Kristen +Laura +Mackenzie +Margaret +Molly +Natalie +Alicia +Angela +Cassidy +Jamie +Kathleen +Katie +Marissa +Alexa +Andrea +Caitlyn +Devon +Grace +Kylie +Sierra +Amy +Brittney +Carly +Hailey +Meghan +Monica +Erica +Holly +Kaitlin +Kristin +Leah +Logan +Mariah +Rachael +Rebekah +Tiffany +Bethany +Cassandra +Julianna +Kara +Lindsey +Lydia +Michelle +Peyton +Savannah +Teresa +Angelica +Dominique +Lindsay +Tiara +Zoe +Dana +Erika +Faith +Jada +Julie +Kirsten +Melanie +Mikayla +Tierra +Veronica +Alexus +Autumn +Ayanna +Brandi +Bridget +Chloe +Christine +Cierra +Claudia +Colleen +Cynthia +Diana +Hanna +Hayley +Jade +Jillian +Joanna +Kaylee +Kira +Lisa +Makayla +Michaela +Patricia +Selena +Tabitha +Tiana +Valerie +Aaliyah +Adriana +Alexia +Aliyah +Angel +Audrey +Carolyn +Cheyenne +Ciara +Corinne +Devin +Gabriella +Imani +Isabella +Ivy +Jaclyn +Jasmin +Jill +Jocelyn +Katelynn +Kennedy +Kiana +Kristina +Madeleine +Makenzie +Marisa +Meredith +Quinn +Regan +Regina +Renee +Riley +Rose +Sophia +Sophie +Susan +Vanessa +Virginia +Emily +Sarah +Taylor +Alexis +Jessica +Samantha +Lauren +Rachel +Hannah +Brianna +Ashley +Morgan +Rebecca +Elizabeth +Alyssa +Brittany +Kayla +Victoria +Alexandra +Courtney +Jasmine +Jennifer +Julia +Megan +Madison +Abigail +Amanda +Emma +Katherine +Amber +Gabrielle +Olivia +Paige +Jordan +Danielle +Nicole +Haley +Jenna +Kaitlyn +Natalie +Shannon +Brooke +Erin +Mary +Sydney +Allison +Caroline +Kelly +Madeline +Anna +Cheyenne +Christina +Destiny +Kristen +Laura +Sara +Stephanie +Angela +Kelsey +Sabrina +Briana +Caitlin +Margaret +Miranda +Alexa +Jacqueline +Lindsay +Mackenzie +Maria +Shelby +Amy +Catherine +Katelyn +Kathryn +Meghan +Mikayla +Autumn +Chelsea +Jillian +Julie +Melissa +Monica +Dominique +Erica +Katie +Kimberly +Kylie +Marissa +Molly +Savannah +Sierra +Bryanna +Caitlyn +Casey +Cassandra +Julianna +Kaitlin +Leah +Lindsey +Michelle +Alicia +Ariel +Carly +Claire +Devon +Hailey +Jada +Kathleen +Mariah +Sophia +Adrianna +Alexandria +Alexus +Christine +Elise +Gabriella +Grace +Heather +Jamie +Lydia +Aaliyah +Andrea +Bridget +Carolyn +Cassidy +Charlotte +Colleen +Hayley +Holly +Kendra +Kiana +Michaela +Skylar +Tiffany +Asia +Bethany +Brenda +Cierra +Delaney +Erika +Jocelyn +Kara +Rebekah +Tatiana +Tiana +Tiara +Vanessa +Veronica +Zoe +Alison +Angel +Angelina +Ariana +Arianna +Bianca +Cameron +Cassie +Desiree +Destinee +Diana +Elisabeth +Ellie +Faith +Genesis +Gina +Jordyn +Kaila +Kiara +Linda +Mallory +Melanie +Meredith +Peyton +Skyler +Summer +Emily +Taylor +Madison +Samantha +Sarah +Alexis +Hannah +Jessica +Kayla +Ashley +Olivia +Elizabeth +Morgan +Megan +Amanda +Victoria +Julia +Lauren +Rachel +Abigail +Brianna +Rebecca +Jasmine +Alyssa +Brittany +Katherine +Erin +Brooke +Emma +Courtney +Kaitlyn +Mary +Nicole +Alexandra +Gabrielle +Danielle +Amber +Jenna +Kelsey +Sophia +Jennifer +Jordan +Madeline +Stephanie +Caroline +Shelby +Sierra +Sydney +Christina +Destiny +Shannon +Grace +Marissa +Savannah +Carly +Hailey +Anna +Autumn +Mackenzie +Breanna +Briana +Caitlin +Katelyn +Kimberly +Maria +Alexa +Catherine +Chloe +Haley +Kathryn +Laura +Miranda +Paige +Sara +Andrea +Angela +Casey +Diamond +Kaitlin +Melissa +Molly +Natalie +Allison +Jamie +Katie +Kaylee +Logan +Meghan +Michelle +Amy +Cierra +Erica +Hayley +Kylie +Lindsey +Margaret +Mariah +Tiffany +Cassandra +Heather +Isabella +Jacqueline +Jada +Jillian +Kelly +Kristen +Michaela +Sabrina +Angel +Brittney +Chelsea +Deja +Jazmine +Kathleen +Leah +Madelyn +Maya +Melanie +Selena +Alicia +Bridget +Cheyenne +Claire +Delaney +Diana +Gabriella +Imani +Lindsay +Makayla +Mikayla +Monica +Summer +Alexus +Alison +Bethany +Cassidy +Dominique +Hope +Jade +Kristina +Mckayla +Naomi +Rebekah +Riley +Skylar +Tiana +Tiara +Tori +Zoe +Aaliyah +Alexandria +Angelica +Ariana +Aubrey +Bianca +Caitlyn +Cameron +Christine +Ciara +Crystal +Erika +Jasmin +Jocelyn +Kira +Kylee +Lily +Rachael +Shania +Siani +Tamia +Tara +Adrianna +Alejandra +Alissa +Arianna +Audrey +Barbara +Carolyn +Charlotte +Faith +Felicia +Gianna +Gina +Hanna +Harley +Holly +Jordyn +Julianna +Katelynn +Katlyn +Kiara +Kristin +Lisa +Lydia +Monique +Nia +Payton +Sasha +Tatiana +Theresa +Emily +Alexis +Sarah +Madison +Taylor +Kayla +Elizabeth +Samantha +Jessica +Hannah +Ashley +Megan +Abigail +Lauren +Rachel +Julia +Destiny +Amanda +Olivia +Brianna +Emma +Victoria +Alexandra +Morgan +Danielle +Jennifer +Nicole +Alyssa +Grace +Natalie +Sara +Anna +Brooke +Haley +Sydney +Allison +Brittany +Rebecca +Gabrielle +Erin +Kaitlyn +Autumn +Jasmine +Kathryn +Sierra +Sophia +Lindsay +Paige +Savannah +Amber +Caroline +Rachael +Jade +Courtney +Heather +Katherine +Madeline +Skylar +Cassidy +Jenna +Jordan +Julianna +Margaret +Shelby +Cheyenne +Katelyn +Meghan +Melissa +Breanna +Caitlin +Lindsey +Makayla +Marissa +Mia +Molly +Camryn +Claire +Diana +Faith +Hailey +Jillian +Kelsey +Mackenzie +Michelle +Mya +Tiffany +Zoe +Briana +Kelly +Kristen +Kylie +Maria +Mary +Sabrina +Amy +Angela +Bryanna +Gillian +Kaitlin +Katie +Kiara +Logan +Madelyn +Stephanie +Summer +Alexa +Alison +Andrea +Caitlyn +Chloe +Christina +Isabella +Jada +Kathleen +Kaylee +Kimberly +Lillian +Mariah +Shannon +Angel +Ariana +Audrey +Bailey +Bethany +Cassandra +Catherine +Chelsea +Cierra +Desiree +Erica +Gabriella +Imani +Jordyn +Leah +Lydia +Riley +Alexandria +Alicia +Allyson +Carly +Delaney +Francesca +Isabel +Jacqueline +Jamie +Julie +Kirsten +Kyra +Laura +Maya +Mckenna +Melanie +Miranda +Sophie +Aliyah +Anne +Cameron +Dominique +Georgia +Hope +Kara +Kira +Lily +Mckenzie +Michaela +Nina +Peyton +Renee +Selena +Shania +Tamia +Aaliyah +Amelia +Aniyah +Ashlyn +Asia +Bianca +Bridget +Britney +Brooklyn +Carolyn +Ciara +Dana +Deanna +Devin +Diamond +Esther +Gianna +Hanna +Hayley +Isabelle +Jasmin +Jocelyn +Juliana +Karen +Kristin +Lauryn +Lisa +Mikaela +Trinity +Emily +Sarah +Kayla +Madison +Alexis +Lauren +Hannah +Taylor +Morgan +Jessica +Samantha +Brianna +Elizabeth +Ashley +Megan +Abigail +Olivia +Grace +Emma +Rebecca +Anna +Destiny +Mackenzie +Sydney +Victoria +Alyssa +Erin +Haley +Rachel +Kaitlyn +Jasmine +Amanda +Julia +Hailey +Jennifer +Mary +Sophia +Alexandra +Danielle +Katherine +Gabrielle +Jada +Jenna +Nicole +Courtney +Caitlin +Carly +Caroline +Sara +Brittany +Brooke +Katelyn +Madeline +Paige +Cassidy +Christina +Kathryn +Molly +Tiffany +Jordan +Kaylee +Maya +Sabrina +Savannah +Stephanie +Allison +Amber +Arianna +Caitlyn +Erica +Isabella +Jade +Laura +Maria +Natalie +Shelby +Alexa +Autumn +Briana +Catherine +Gabriella +Melissa +Sierra +Adrianna +Alexandria +Amy +Angela +Chloe +Diamond +Faith +Katie +Kelly +Kelsey +Kimberly +Lindsey +Mikayla +Riley +Skylar +Alicia +Angelina +Ariana +Cameron +Hayley +Jillian +Jordyn +Lily +Margaret +Michelle +Shannon +Ashlyn +Audrey +Ava +Breanna +Britney +Camryn +Claire +Colleen +Dakota +Heather +Isabel +Jacqueline +Kelsie +Kristen +Kyla +Kylie +Lillian +Madelyn +Makayla +Tara +Tori +Amaya +Andrea +Brittney +Casey +Cierra +Crystal +Delaney +Ellen +Holly +Imani +Juliana +Julianna +Kara +Kirsten +Kylee +Kyra +Leah +Makenzie +Marissa +Meghan +Summer +Tatiana +Amelia +Bethany +Carolyn +Cassandra +Cheyenne +Dominique +Elise +Guadalupe +Jocelyn +Kathleen +Mariah +Mckenna +Miranda +Shania +Sophie +Trinity +Vanessa +Adriana +Alexia +Alondra +Ana +Ariel +Ashlee +Avery +Ayanna +Brionna +Cassie +Erika +Genevieve +Isabelle +Jamie +Jazmine +Julie +Kaila +Katelynn +Katrina +Kendra +Lisa +Logan +Lydia +Mallory +Meredith +Rachael +Raven +Reagan +Renee +Selena +Shaniyah +Skyler +Tiana +Tiara +Veronica +Madison +Emily +Alexis +Hannah +Abigail +Olivia +Sarah +Samantha +Taylor +Kayla +Emma +Alyssa +Ashley +Grace +Julia +Lauren +Jessica +Brianna +Elizabeth +Morgan +Megan +Mackenzie +Amanda +Haley +Katherine +Rachel +Victoria +Destiny +Sydney +Isabella +Savannah +Mary +Alexandra +Hailey +Jordan +Jasmine +Amber +Anna +Erin +Rebecca +Sophia +Allison +Gabrielle +Madelyn +Nicole +Paige +Sara +Stephanie +Courtney +Kaitlyn +Katelyn +Makayla +Breanna +Jennifer +Caroline +Danielle +Jacqueline +Mikayla +Brooke +Chloe +Kathryn +Madeline +Natalie +Imani +Jada +Jillian +Trinity +Alexa +Cassidy +Kelly +Kylie +Leah +Sierra +Jade +Katie +Kelsey +Molly +Zoe +Aaliyah +Arianna +Avery +Faith +Julianna +Lillian +Lily +Marissa +Meghan +Alexandria +Autumn +Bethany +Christina +Hayley +Isabelle +Melissa +Cheyenne +Claire +Erica +Kaylee +Laura +Maya +Michelle +Adriana +Audrey +Brittany +Caitlyn +Carly +Catherine +Jenna +Juliana +Logan +Maria +Mercedes +Miranda +Shelby +Aliyah +Andrea +Angel +Angelina +Aniya +Ariana +Ava +Bianca +Briana +Camille +Destinee +Dominique +Elise +Evelyn +Heather +Jocelyn +Jordyn +Kamryn +Kiara +Kimberly +Kirsten +Mckenzie +Tara +Alivia +Allyson +Amaya +Angela +Angelica +Bailey +Caitlin +Cameron +Camryn +Casey +Cassandra +Charlotte +Cierra +Delaney +Diana +Holly +Isabel +Julie +Kayleigh +Kyla +Leslie +Lydia +Margaret +Mariah +Mia +Nadia +Raven +Regan +Sabrina +Sadie +Selena +Shania +Skylar +Sofia +Sophie +Summer +Tiffany +Veronica +Wendy +Adrianna +Alicia +Alissa +Alyson +Ana +Ayanna +Bridget +Bryanna +Brynn +Chelsea +Cheyanne +Christine +Claudia +Deja +Desiree +Diamond +Gabriella +Gianna +Gracie +Guadalupe +Jamie +Jayla +Kaitlin +Kara +Karen +Kira +Kristin +Kristina +Melanie +Meredith +Mya +Naomi +Payton +Peyton +Reagan +Rebekah +Riley +Rose +Tiana +Tiara +Vanessa +Zaria +Emily +Madison +Hannah +Olivia +Alexis +Sarah +Kayla +Ashley +Elizabeth +Rachel +Samantha +Abigail +Emma +Isabella +Anna +Jessica +Alyssa +Brianna +Haley +Taylor +Grace +Lauren +Morgan +Victoria +Julia +Megan +Jordan +Sydney +Destiny +Paige +Alexandra +Autumn +Amanda +Sophia +Chloe +Jennifer +Jenna +Natalie +Brooke +Erin +Gabriella +Katherine +Mackenzie +Riley +Danielle +Kaitlyn +Mia +Savannah +Allison +Caroline +Hailey +Mary +Stephanie +Gabrielle +Jasmine +Makayla +Alexandria +Ava +Jade +Sara +Sierra +Aaliyah +Kelly +Zoe +Faith +Madeline +Margaret +Rebecca +Skylar +Briana +Jada +Jillian +Julianna +Katelyn +Nicole +Alexa +Arianna +Leah +Maya +Angel +Angelina +Ariana +Christina +Courtney +Kylie +Shannon +Andrea +Caitlin +Claire +Jacqueline +Kaylee +Leslie +Michelle +Shelby +Trinity +Amber +Cassidy +Delaney +Isabel +Juliana +Kathryn +Maria +Mckenzie +Meghan +Amelia +Amy +Aniyah +Ashlyn +Breanna +Catherine +Charlotte +Claudia +Hope +Jayla +Jordyn +Karen +Kelsey +Kimberly +Kirsten +Lillian +Marissa +Melanie +Mikayla +Molly +Nevaeh +Patricia +Summer +Alexia +Aliyah +Aubrey +Bailey +Bethany +Daisy +Kate +Kylee +Kyra +Logan +Lydia +Madelyn +Melissa +Miranda +Mya +Rose +Skyler +Sophie +Tiffany +Vanessa +Adriana +Adrianna +Alexus +Anastasia +Anya +Audrey +Brittany +Brittney +Bryanna +Carly +Cassandra +Cierra +Crystal +Deanna +Deja +Ella +Evelyn +Genevieve +Hayley +Imani +Jazmine +Jocelyn +Julie +Kara +Lily +Nadia +Alicia +Allyson +Alondra +Ashleigh +Asia +Bianca +Caitlyn +Cameron +Carissa +Casey +Cecilia +Cheyenne +Clara +Colleen +Daniela +Diamond +Diana +Elisabeth +Gabriela +Gina +Hanna +Heather +Jaden +Jamie +Janiyah +Jasmin +Jazmin +Kaitlin +Katie +Kira +Kristen +Kristin +Kyla +Kyleigh +Laura +Lindsey +Lizbeth +Mallory +Marie +Marisa +Nina +Noelle +Rachael +Reagan +Rosa +Savanna +Talia +Tania +Tara +Tatiana +Valerie +Wendy +Emily +Madison +Emma +Hannah +Abigail +Olivia +Sarah +Kayla +Alexis +Grace +Isabella +Samantha +Elizabeth +Sophia +Rachel +Taylor +Brianna +Alyssa +Morgan +Sydney +Ashley +Jessica +Megan +Natalie +Victoria +Hailey +Julia +Jasmine +Mia +Kaitlyn +Gabrielle +Haley +Katelyn +Lauren +Lily +Zoe +Kylie +Madeline +Paige +Destiny +Erin +Jennifer +Alexandra +Jordan +Savannah +Amanda +Anna +Angel +Angelina +Ava +Brooke +Katherine +Leah +Mackenzie +Nicole +Rebecca +Trinity +Alexa +Juliana +Makayla +Chloe +Jada +Riley +Caroline +Jillian +Maria +Marissa +Allison +Autumn +Cheyenne +Courtney +Danielle +Gabriella +Gianna +Jenna +Margaret +Mary +Sierra +Aaliyah +Claire +Meghan +Sara +Shelby +Andrea +Ariana +Faith +Julianna +Kelly +Kylee +Madelyn +Stephanie +Arianna +Ella +Jacqueline +Kathryn +Kimberly +Lillian +Maya +Miranda +Molly +Vanessa +Alexandria +Amelia +Avery +Caitlin +Caitlyn +Cassidy +Christina +Delaney +Jocelyn +Katie +Melissa +Sabrina +Alondra +Aubrey +Catherine +Kaylee +Kelsey +Laura +Shannon +Skylar +Aniya +Aniyah +Audrey +Carly +Charlotte +Erica +Erika +Guadalupe +Isabel +Jayla +Jazmin +Lindsey +Nevaeh +Sophie +Tatiana +Adriana +Breanna +Briana +Brittany +Brynn +Chelsea +Elena +Hope +Jaden +Karen +Kiara +Kyleigh +Layla +Logan +Makenzie +Michelle +Mikayla +Mya +Zoey +Abby +Amaya +Amber +Angela +Brenna +Bridget +Camryn +Diamond +Felicia +Gabriela +Gracie +Hanna +Jade +Jordyn +Kyla +Mariana +Renee +Ruth +Serenity +Tori +Wendy +Adrianna +Alana +Alison +Amari +Anya +April +Ariel +Bianca +Camille +Casey +Cecilia +Dakota +Daniela +Emani +Evelyn +Hailie +Imani +Jasmin +Jazmine +Julianne +Julie +Karina +Kasey +Katlyn +Kendall +Kennedy +Kiley +Krista +Kristen +Kristina +Maura +Melanie +Michaela +Nia +Nina +Noelle +Paris +Patricia +Payton +Reagan +Reese +Sadie +Sofia +Tara +Tiffany +Madison +Olivia +Emily +Alexis +Elizabeth +Emma +Samantha +Hannah +Grace +Sarah +Ashley +Isabella +Abigail +Alyssa +Kayla +Brianna +Victoria +Sophia +Taylor +Anna +Ava +Morgan +Natalie +Sydney +Jessica +Julia +Alexandra +Hailey +Kylie +Lauren +Paige +Rachel +Brooke +Kaitlyn +Maria +Chloe +Gabrielle +Jenna +Lily +Zoe +Angelina +Erin +Katherine +Allison +Ella +Megan +Mia +Molly +Amanda +Gianna +Haley +Jada +Mackenzie +Savannah +Destiny +Gabriella +Jasmine +Sierra +Sofia +Arianna +Kimberly +Leah +Lydia +Michelle +Riley +Caroline +Cheyenne +Faith +Jennifer +Lillian +Madeline +Margaret +Amber +Aniyah +Christina +Jacqueline +Kaylee +Mary +Mya +Adriana +Briana +Jocelyn +Marissa +Nevaeh +Trinity +Amy +Caitlin +Cassidy +Courtney +Jordan +Kate +Katelyn +Mariah +Meghan +Peyton +Rebecca +Adrianna +Alexa +Autumn +Ellie +Juliana +Kelly +Makayla +Maya +Natalia +Sadie +Aaliyah +Alana +Alexia +Alicia +Amelia +Anastasia +Ariana +Cadence +Charlotte +Danielle +Delaney +Imani +Isabel +Isabelle +Jillian +Nicole +Rylee +Sabrina +Sara +Shelby +Stephanie +Tiffany +Amaya +Brooklyn +Catherine +Evelyn +Heaven +Jazmin +Kyla +Madelyn +Mikayla +Naomi +Abby +Aliyah +Allyson +Ana +Angel +Ashlyn +Asia +Bella +Bethany +Caitlyn +Claire +Diamond +Gabriela +Jamie +Karen +Kathryn +Kennedy +Kiara +Laura +Maggie +Michaela +Miranda +Nadia +Reagan +Tabitha +Veronica +Alexandria +Andrea +Angela +Annika +Ashlee +Audrey +Ayanna +Brittany +Cameron +Carly +Dulce +Elise +Erica +Erika +Julie +Katie +Kylee +Laila +Lindsay +Lindsey +Logan +Makenzie +Nyla +Tamia +Yasmin +Alayna +Alison +Amani +Aniya +Anya +Bailey +Breanna +Bridget +Carissa +Carmen +Chelsea +Cierra +Dakota +Daniela +Diana +Elena +Francesca +Jaelyn +Janiya +Jayda +Jazmine +Joanna +Jordyn +Kendall +Lauryn +Layla +Mckenna +Melanie +Melissa +Nyasia +Piper +Skylar +Tamara +Tara +Tiana +Tiara +Madison +Emily +Sarah +Emma +Abigail +Alexis +Samantha +Olivia +Ava +Natalie +Elizabeth +Hannah +Morgan +Grace +Brianna +Isabella +Alyssa +Ashley +Anna +Kayla +Taylor +Julia +Sophia +Brooke +Lauren +Mia +Lily +Rachel +Savannah +Mackenzie +Victoria +Paige +Madeline +Sydney +Chloe +Jordan +Kaitlyn +Makayla +Alexandra +Ariana +Destiny +Gabrielle +Jessica +Arianna +Hailey +Alexa +Amelia +Catherine +Riley +Ella +Jasmine +Jennifer +Kylie +Megan +Amanda +Caroline +Gabriella +Danielle +Molly +Nevaeh +Rebecca +Trinity +Allison +Avery +Erin +Evelyn +Jenna +Katelyn +Mariah +Sara +Aaliyah +Aniyah +Cheyenne +Isabelle +Jillian +Kendall +Skylar +Zoe +Adriana +Alaina +Angelina +Audrey +Gianna +Jada +Julianna +Katherine +Lillian +Maria +Maya +Melissa +Peyton +Cassidy +Faith +Juliana +Kathryn +Kelsey +Leah +Sierra +Vanessa +Ana +Gabriela +Haley +Jade +Marissa +Sofia +Stephanie +Adrianna +Madelyn +Margaret +Michelle +Yasmin +Aliyah +Alondra +Aniya +Bianca +Charlotte +Elise +Jordyn +Kaylee +Kylee +Kyleigh +Liliana +Mary +Mya +Nicole +Rylee +Serenity +Alexandria +Andrea +Angela +Bridget +Caitlin +Caitlyn +Carly +Ciara +Delaney +Jayla +Joanna +Karen +Kate +Kayleigh +Keira +Kyla +Laila +Laura +Lydia +Mariana +Mckenzie +Mikayla +Miranda +Naomi +Rylie +Alana +Alayna +Alexia +Amber +Amy +Aubrey +Autumn +Bella +Camila +Camryn +Cara +Chelsea +Christina +Christine +Claire +Crystal +Diana +Ellie +Giselle +Heaven +Hope +Janiyah +Jayden +Jazmin +Jocelyn +Juliet +Julissa +Karina +Katie +Katrina +Kimora +Layla +Mallory +Meghan +Melanie +Miracle +Noelle +Reese +Saniah +Selena +Tiffany +Alessandra +Alisha +Allyson +Amira +Anastasia +Ayanna +Bailey +Callie +Cassandra +Cynthia +Destinee +Devon +Elena +Elianna +Eliza +Eva +Gracie +Holly +Isabel +Jacqueline +Kara +Kiara +Lamya +Leslie +Lindsey +London +Maura +Milan +Nadia +Nina +Raven +Rebekah +Regina +Sabrina +Sandra +Shannon +Shelby +Summer +Tatiana +Veronica +Madison +Emily +Ava +Emma +Olivia +Isabella +Grace +Kayla +Elizabeth +Hannah +Sophia +Abigail +Alexis +Natalie +Savannah +Brianna +Alyssa +Mia +Taylor +Victoria +Ella +Gabrielle +Julia +Samantha +Sarah +Nevaeh +Hailey +Kylie +Mackenzie +Gabriella +Katherine +Lily +Ashley +Jasmine +Kaitlyn +Gianna +Jennifer +Lauren +Makayla +Mya +Riley +Destiny +Jessica +Paige +Faith +Jada +Jordan +Katelyn +Trinity +Alexa +Anna +Autumn +Brooke +Chloe +Layla +Leah +Lillian +Morgan +Alexandra +Arianna +Danielle +Jayla +Kaylee +Rachel +Maria +Marissa +Megan +Sara +Allison +Ariana +Aubrey +Catherine +Kimberly +Addison +Angelina +Julianna +Margaret +Mikayla +Rebecca +Stephanie +Sydney +Erin +Haley +Madelyn +Mckenzie +Zoey +Adriana +Amber +Aniyah +Carly +Caroline +Charlotte +Jenna +Keira +Melanie +Michelle +Sierra +Zoe +Aaliyah +Amelia +Andrea +Briana +Eva +Isabelle +Madeline +Mariah +Maya +Mckenna +Vanessa +Alicia +Allyson +Avery +Breanna +Caitlyn +Claire +Courtney +Elise +Fatima +Jocelyn +Molly +Naomi +Nicole +Peyton +Sabrina +Adrianna +Alana +Aniya +Audrey +Brooklyn +Cameron +Cassidy +Dakota +Elena +Kyla +Lindsey +Payton +Serenity +Shelby +Sofia +Alayna +Christina +Delaney +Diamond +Diana +Erica +Evelyn +Isabel +Jayda +Jillian +Kailey +Kathryn +Katie +Kiera +Laila +Makenzie +Miranda +Nadia +Noelle +Sherlyn +Sophie +Summer +Valeria +Amy +Angela +Cadence +Cassandra +Cheyenne +Ciara +Ellie +Hayley +Helen +Jade +Karen +Kate +Kendra +Kira +Kyra +Lindsay +Lucy +Miracle +Natalia +Paris +Rayna +Reagan +Rylie +Selena +Skylar +Stella +Tatiana +Veronica +Alexandria +Amanda +Anastasia +Angel +Annabelle +Ariel +Ashlyn +Ayanna +Camryn +Carolina +Cecilia +Daisy +Desiree +Devon +Estrella +Gabriela +Genesis +Gracie +Hadley +Holly +Hope +Imani +Jacqueline +Jazmin +Jazmine +Joanna +Jordyn +Joselyn +Kaylah +Kelsey +Kendall +Kylee +Lacey +Laura +Lilly +Lydia +Madalyn +Maggie +Mallory +Mary +Meghan +Melissa +Meredith +Michaela +Nyla +Perla +Phoebe +Piper +Reese +Regan +Ryan +Rylee +Yasmin +Ava +Sophia +Emily +Madison +Abigail +Isabella +Emma +Olivia +Alyssa +Hannah +Ashley +Addison +Savannah +Brianna +Alexis +Ella +Kayla +Elizabeth +Grace +Mia +Alexandra +Destiny +Gianna +Natalie +Samantha +Sarah +Chloe +Victoria +Anna +Gabriella +Gabrielle +Jessica +Molly +Taylor +Kaitlyn +Lauren +Lillian +Maria +Megan +Nevaeh +Zoe +Angelina +Makayla +Aaliyah +Alexa +Aniyah +Arianna +Jada +Jasmine +Julia +Kaylee +Kylie +Mackenzie +Madeline +Morgan +Rachel +Ariana +Aubrey +Avery +Jennifer +Laila +Briana +Hailey +Juliana +Paige +Riley +Charlotte +Sydney +Bailey +Brooke +Claire +Lily +Mariah +Adriana +Adrianna +Alana +Audrey +Evelyn +Jocelyn +Katelyn +Kimberly +Kylee +Layla +Maya +Natalia +Rebecca +Sara +Stephanie +Trinity +Amelia +Brooklyn +Caitlyn +Haley +Katherine +Reagan +Rylee +Alayna +Allison +Angela +Autumn +Cheyenne +Hayden +Isabel +Katie +Leah +Madelyn +Andrea +Angel +Aniya +Ciara +Faith +Heaven +Jillian +Jordan +Kathryn +Keira +Leila +Makenzie +Mikayla +Nora +Ryleigh +Sofia +Sophie +Amy +Catherine +Diana +Jacqueline +Jade +Kiara +Liliana +Mckenzie +Naomi +Peyton +Valeria +Amani +Cadence +Cristal +Emerson +Erin +Gabriela +Jenna +Joanna +Julianna +Karen +Kelly +Kennedy +Margaret +Nicole +Reese +Savanna +Summer +Zoey +Alaina +Alexandria +Alison +Alissa +April +Breanna +Carly +Caroline +Cassandra +Cecilia +Delaney +Devon +Esmeralda +Eva +Genesis +Giana +Hope +Isabelle +Ivy +Jayda +Jazmin +Kate +Kyla +Lacey +Leilani +London +Lyla +Marissa +Meghan +Melanie +Mya +Paris +Payton +Ruby +Serenity +Sierra +Skylar +Vanessa +Veronica +Alexia +Alivia +Aliyah +Amanda +Amirah +Ashlyn +Brenda +Bridget +Brooklynn +Carmen +Dakota +Danielle +Deja +Eden +Elaina +Elise +Felicity +Imani +Jaelynn +Jasmin +Jayden +Jayla +Jordyn +Kara +Kelsey +Kendall +Kimora +Kira +Kyra +Leanna +Leslie +Lesly +Logan +Mary +Michelle +Regan +Rose +Sabrina +Sadie +Selena +Shayla +Tatiana +Tyasia +Ava +Olivia +Madison +Abigail +Emma +Emily +Isabella +Sophia +Alexis +Brianna +Hannah +Elizabeth +Riley +Taylor +Alyssa +Kayla +Ashley +Natalie +Julia +Lily +Mia +Samantha +Chloe +Grace +Sarah +Anna +Aubrey +Leah +Madeline +Ella +Aaliyah +Savannah +Hailey +Layla +Lillian +Addison +Arianna +Destiny +Gianna +Nevaeh +Jasmine +Kaitlyn +Morgan +Paige +Gabrielle +Jada +Kylie +Alexandra +Allison +Angelina +Makayla +Sydney +Avery +Jayla +Mackenzie +Madelyn +Payton +Delaney +Evelyn +Katherine +Rachel +Brooke +Caroline +Charlotte +Faith +Gabriella +Maya +Rylee +Adriana +Aniyah +Ariana +Autumn +Kimberly +Lauren +Lucy +Peyton +Zoe +Audrey +Haley +Laila +Maria +Megan +Rebecca +Victoria +Alana +Carly +Claire +Crystal +Hayden +Jocelyn +Kaylee +Kelsey +Mariah +Mary +Molly +Mya +Sara +Sofia +Alicia +Brooklyn +Cheyenne +Diana +Jade +Jenna +Jennifer +Jordan +Juliana +Julianna +Kennedy +Lydia +Makenzie +Trinity +Briana +Brynn +Chelsea +Ciara +Courtney +Danielle +Erin +Isabelle +Jillian +Laura +Natalia +Rebekah +Sabrina +Stephanie +Alexa +Amelia +Angela +Carmen +Daniela +Elena +Erica +Giselle +Gracie +Hope +Jessica +Kara +Katie +Kelly +Kendall +Liliana +Marissa +Mckenna +Mckenzie +Nadia +Nicole +Serenity +Alaina +Amanda +Amani +Amaya +Amber +Amy +Bailey +Breanna +Cadence +Cassidy +Catherine +Cora +Genesis +Isabel +Jaidyn +Jazmine +Karen +Kayleigh +Keira +Kylee +Lila +Lilly +Maddison +Michaela +Reagan +Reese +Ruby +Ryleigh +Saniyah +Sasha +Skylar +Summer +Adrianna +Alivia +Amira +Amiyah +Angel +Angelica +Aniya +Annabella +Brooklynn +Camila +Camryn +Christina +Danica +Dayana +Elise +Heidi +Imani +Jacqueline +Jaelyn +Juliet +Kadence +Katelyn +Kathryn +Kiley +Kira +Lola +London +Lyric +Madelynn +Makenna +Malia +Margaret +Mckayla +Meghan +Melina +Melissa +Mikayla +Miranda +Naomi +Nora +Rachael +Rowan +Sanaa +Sanai +Sandra +Savanna +Shayla +Shyanne +Tiara +Tori +Willow +Isabella +Sophia +Olivia +Abigail +Ava +Emma +Madison +Samantha +Emily +Elizabeth +Kayla +Alexis +Makayla +Mia +Chloe +Alyssa +Natalie +Addison +Leah +Taylor +Brooke +Ella +Grace +Riley +Allison +Sarah +Savannah +Anna +Julia +Brianna +Gabriella +Kaylee +Lillian +Ashley +Gianna +Hailey +Arianna +Layla +Payton +Caroline +Gabrielle +Hannah +Maya +Evelyn +London +Morgan +Nevaeh +Sydney +Aaliyah +Alexa +Charlotte +Destiny +Lily +Trinity +Amelia +Aubrey +Madeline +Madelyn +Paige +Claire +Haley +Jada +Kimberly +Lauren +Maria +Naomi +Audrey +Avery +Jasmine +Peyton +Victoria +Adriana +Alexandra +Autumn +Cameron +Jayla +Jessica +Jordyn +Juliana +Mackenzie +Mariah +Reagan +Zoe +Adrianna +Faith +Jenna +Jordan +Karen +Katherine +Kennedy +Kylie +Laila +Mya +Rylee +Sofia +Sophie +Ana +Delaney +Erin +Josephine +Kaitlyn +Katelyn +Khloe +Megan +Molly +Natalia +Rachel +Sara +Alaina +Aliyah +Anastasia +Aniyah +Ariana +Brooklyn +Ellie +Hayden +Kelsey +Marissa +Mckenzie +Natasha +Reese +Stephanie +Valeria +Amaya +Annabelle +Ariel +Bailey +Brielle +Caylee +Cora +Elise +Evangeline +Isabelle +Jillian +Kendall +Lucia +Lydia +Melody +Mikayla +Rebecca +Ryleigh +Savanna +Sienna +Vanessa +Veronica +Zoey +Amani +Amira +Angel +Angelina +Ashlyn +Breanna +Briana +Bridget +Camryn +Cassidy +Cheyenne +Dakota +Elena +Eva +Isabel +Janiyah +Jayda +Jennifer +Jocelyn +Julianna +Juliet +Katie +Kayleigh +Keira +Liliana +Lindsey +Mckenna +Nina +Rylie +Sadie +Saniya +Saniyah +Serenity +Simone +Skylar +Stella +Summer +Violet +Alana +Alexandria +Alivia +Alondra +Amanda +Amber +Armani +Aubrie +Bella +Brenda +Caitlyn +Courtney +Daisy +Danielle +Ellen +Gabriela +Genesis +Harmony +Hope +Jade +Jazmine +Joanna +Journey +Kathryn +Kimora +Kylee +Kyra +Lacey +Lilly +Lucy +Lyla +Makenzie +Maliyah +Margaret +Mary +Melanie +Miranda +Nadia +Nicole +Phoebe +Piper +Sanai +Sasha +Selena +Shayla +Tatiana +Teagan +Sophia +Isabella +Ava +Olivia +Emily +Madison +Abigail +Emma +Leah +Mia +Natalie +Alexis +Samantha +Addison +Riley +Chloe +Elizabeth +Lily +Alyssa +Kylie +Mackenzie +Aubrey +Grace +Hannah +Savannah +Brianna +Ella +Nevaeh +Peyton +Taylor +Brooke +Julia +Layla +Sarah +Allison +Amelia +Gianna +Morgan +Payton +Victoria +Aaliyah +Gabriella +Jordyn +Molly +Gabrielle +Hailey +Lillian +Makayla +Avery +Kaylee +Paige +Rebecca +Alexa +Arianna +Autumn +London +Zoe +Adriana +Adrianna +Angelina +Aniyah +Anna +Claire +Faith +Katherine +Kayla +Khloe +Serenity +Aliyah +Annabelle +Charlotte +Jocelyn +Mariah +Alexandra +Ariana +Audrey +Brielle +Brooklyn +Destiny +Jade +Jasmine +Madelyn +Amaya +Ellie +Evelyn +Juliana +Katelyn +Kendall +Rachel +Reagan +Sofia +Alana +Alivia +Bella +Brynn +Cheyenne +Delaney +Eva +Gabriela +Jayda +Jayla +Jillian +Kylee +Lauren +Lydia +Maya +Mya +Amy +Andrea +Ashley +Bailey +Caitlyn +Catherine +Gia +Haylee +Jordan +Kayleigh +Kimberly +Rylee +Sara +Sophie +Sydney +Valeria +Violet +Bianca +Briana +Caroline +Diana +Jazmin +Jenna +Julianna +Keira +Kennedy +Leila +Lila +Lucy +Nadia +Naomi +Natalia +Nora +Raegan +Ruby +Stella +Stephanie +Trinity +Zoey +Addyson +Alaina +Alondra +Angela +Ashlyn +Carly +Dakota +Danielle +Elaina +Elena +Eliana +Esther +Fiona +Hayden +Jacqueline +Jada +Jessica +Kaitlyn +Kara +Karina +Katie +Lilly +Madeline +Makenna +Mallory +Marissa +Marley +Mary +Sadie +Sage +Scarlett +Shelby +Sienna +Skylar +Adeline +Alisha +Allie +Amber +Amira +Amiyah +Breanna +Brenna +Caitlin +Camille +Camryn +Eden +Elise +Eliza +Genesis +Gillian +Giuliana +Haley +Harper +Heidi +Hope +Jaylyn +Jazmine +Justice +Karen +Katelynn +Kelsey +Kourtney +Kyla +Lindsey +Makenzie +Malia +Maria +Melanie +Michaela +Milan +Miranda +Nicole +Penelope +Sanai +Sarai +Sierra +Talia +Vanessa +Ximena +Sophia +Olivia +Ava +Emma +Emily +Abigail +Madison +Aubrey +Isabella +Chloe +Lily +Mia +Avery +Lillian +Savannah +Natalie +Addison +Elizabeth +Brianna +Alexis +Amelia +Kaylee +Anna +Layla +Makayla +Sofia +Alyssa +Ella +Taylor +Aaliyah +Charlotte +Gabriella +Hailey +Julia +Leah +Nevaeh +Sarah +Scarlett +Grace +Madeline +Molly +Morgan +Bella +Gianna +Kayla +Khloe +Riley +Samantha +Zoe +Allison +Sophie +Claire +Evelyn +Hannah +Kendall +Mackenzie +Ashley +Bailey +Destiny +Faith +London +Serenity +Adrianna +Angelina +Audrey +Camila +Gabrielle +Jada +Jocelyn +Kennedy +Kylie +Maya +Naomi +Peyton +Victoria +Adriana +Alexandra +Aubree +Brooklyn +Caroline +Elena +Eva +Imani +Juliana +Liliana +Paige +Rachel +Reagan +Sydney +Trinity +Violet +Alexa +Brielle +Brooke +Danielle +Genesis +Jade +Kimberly +Laila +Maria +Payton +Alanna +Aliyah +Amy +Andrea +Brynn +Eliana +Harper +Izabella +Jennifer +Katelyn +Keira +Lilly +Lydia +Madelyn +Makenzie +Melissa +Miranda +Nora +Nyla +Piper +Vanessa +Alaina +Alana +Amiyah +Arianna +Delaney +Isabelle +Jasmine +Londyn +Mya +Natalia +Nylah +Reese +Alivia +Amanda +Ariana +Bridget +Catherine +Genevieve +Isabel +Jessica +Jordan +Josephine +Katherine +Kayleigh +Kylee +Lauren +Leila +Mary +Mckenzie +Mikayla +Milan +Norah +Paris +Quinn +Sabrina +Sienna +Summer +Zoey +Alice +Alison +Angel +Annabelle +Ariel +Autumn +Bethany +Cadence +Camryn +Cara +Cecilia +Elaina +Gabriela +Jillian +Joanna +Kaitlyn +Kathryn +Kaydence +Logan +Lyla +Madeleine +Mariah +Mckenna +Melanie +Natasha +Nicole +Sadie +Savanna +Stephanie +Vivian +Adeline +Angela +Aniyah +Annabel +Anya +Aria +Brooklynn +Casey +Cassidy +Chelsea +Clara +Eden +Eleanor +Elise +Evangeline +Fiona +Georgia +Gia +Giuliana +Haley +Hayden +Jazmin +Jimena +Jordyn +Julianna +Kate +Kelly +Kelsey +Lila +Lucy +Maci +Makenna +Margaret +Mariana +Melody +Michaela +Myla +Patricia +Ruby +Sage +Shannon +Skye +Skylar +Vivienne +Sophia +Isabella +Emma +Olivia +Ava +Emily +Madison +Aubrey +Lillian +Abigail +Amelia +Layla +Zoey +Grace +Mia +Addison +Riley +Natalie +Avery +Elizabeth +Ella +Alexis +Autumn +Lily +Peyton +Taylor +Savannah +Brooklyn +Victoria +Anna +Kennedy +Morgan +Samantha +Allison +Annabelle +Brianna +Mackenzie +Makayla +Zoe +Gabrielle +Hailey +Hannah +Harper +Madelyn +Sarah +Scarlett +Sofia +Aaliyah +Brielle +Charlotte +Faith +Gianna +Quinn +Chloe +Evelyn +Jocelyn +Ashley +Aubree +Bella +Brooke +Claire +Kayla +Kaylee +Kendall +Leah +London +Reagan +Rylee +Serenity +Alexa +Alyssa +Ariana +Gabriella +Kylie +Laila +Madeline +Audrey +Caroline +Jasmine +Julia +Juliana +Keira +Maria +Molly +Nevaeh +Skylar +Adriana +Aria +Brynn +Jordan +Naomi +Natalia +Payton +Sadie +Aliyah +Andrea +Aniyah +Arianna +Camille +Carly +Catherine +Ellie +Eva +Jade +Kimberly +Mariah +Maya +Mckenzie +Paige +Paisley +Piper +Rebecca +Sienna +Sydney +Trinity +Alana +Alexandra +Angelina +Aubrie +Delaney +Fiona +Jayla +Josephine +Kaitlyn +Khloe +Liliana +Lilly +Lyla +Miranda +Ryleigh +Abby +Alaina +Amy +Bailey +Bianca +Briella +Callie +Camila +Elena +Giselle +Isabelle +Izabella +Jada +Jennifer +Jordyn +Julianna +Kelly +Logan +Lucy +Lydia +Lyric +Milan +Mya +Nyla +Reese +Tatiana +Violet +Alice +Anya +Aurora +Chelsea +Cora +Dakota +Elise +Eliza +Genesis +Haley +Heaven +Jayda +Kate +Katherine +Kylee +Kyleigh +Kyra +Lauren +Lilah +Lola +Maci +Mikayla +Nicole +Nora +Teagan +Tori +Vanessa +Yaretzi +Adelaide +Adelyn +Alayna +Alivia +Amaya +Arabella +Ashlynn +Blake +Brynlee +Cassidy +Cataleya +Clara +Daniela +Gracie +Harmony +Imani +Johanna +Journey +Kaleigh +Katelyn +Kaydence +Kyla +Lacey +Lilian +Madeleine +Maeve +Makenzie +Margaret +Mckenna +Ruth +Sahara +Samiyah +Sophie +Stella +Tessa +Willow +Ava +Olivia +Emma +Emily +Abigail +Sophia +Isabella +Aubrey +Madison +Charlotte +Grace +Lily +Elizabeth +Mia +Chloe +Riley +Lillian +Addison +Kaylee +Layla +Ariana +Audrey +Ella +Zoe +Gianna +Hannah +Harper +Kendall +Victoria +Brooklyn +Faith +Gabriella +Hailey +Natalie +Peyton +Savannah +Amelia +Caroline +Sarah +Serenity +Taylor +Aubree +Brielle +Delaney +Kayla +Makayla +Quinn +Zoey +Allison +Arianna +Avery +Juliana +Samantha +Sofia +Aaliyah +Aria +Jayla +Josephine +Khloe +Leah +Mackenzie +Skylar +Sydney +Alexa +Anna +Brianna +Eliana +Kylee +Londyn +Madelyn +Mckenzie +Morgan +Nevaeh +Alexis +Aurora +Erin +Gabrielle +Julianna +Katherine +Keira +Mariah +Scarlett +Bella +Danielle +Evelyn +Jordyn +Julia +Kennedy +London +Madeline +Maya +Mya +Reagan +Rylee +Sadie +Sophie +Violet +Alayna +Aniyah +Autumn +Dakota +Destiny +Jocelyn +Kylie +Luna +Melody +Mila +Milan +Trinity +Alivia +Camila +Cecilia +Chelsea +Liliana +Mckenna +Michelle +Mikayla +Naomi +Norah +Payton +Piper +Skye +Stella +Alaina +Alondra +Alyssa +Annabelle +Ashley +Camille +Claire +Elena +Ellie +Genesis +Hadley +Harmony +Izabella +Jasmine +Jordan +Journey +Katelyn +Lyla +Makenzie +Melanie +Nora +Penelope +Reese +Talia +Adelyn +Adriana +Alana +Alexandra +Alexandria +Amiyah +Ariel +Briella +Camryn +Catherine +Fiona +Gabriela +Giuliana +Kaitlyn +Kathryn +Kinsley +Laila +Lauren +Lauryn +Leilani +Lucy +Lydia +Melissa +Miranda +Molly +Nicole +Nyla +Paige +Paisley +Phoebe +Rachel +Valentina +Vanessa +Veronica +Aadya +Adeline +Adrianna +Allie +Amaya +Angel +Ariella +Brooke +Cara +Clara +Elaina +Elise +Elle +Emani +Eva +Finley +Gia +Giselle +Hayden +Heaven +Hope +Jada +Jade +Jenna +Jennifer +Katie +Kayleigh +Kelsey +Kira +Lilliana +Lilly +Lola +Macie +Makenna +Marley +Phoenix +Ryleigh +Sarai +Sasha +Serena +Summer +Teagan +Vivian +Willow +Sophia +Ava +Emma +Olivia +Emily +Isabella +Mia +Madison +Charlotte +Avery +Elizabeth +Lillian +Abigail +Layla +Savannah +Hannah +Aubrey +Gabriella +Zoe +Addison +Grace +Kaylee +Natalie +Amelia +Audrey +Evelyn +Harper +Madelyn +Zoey +London +Mackenzie +Sofia +Alexandra +Anna +Autumn +Ella +Genesis +Gianna +Jordyn +Skylar +Ariana +Arianna +Aubree +Brielle +Chloe +Kennedy +Peyton +Riley +Allison +Julia +Leah +Naomi +Annabelle +Morgan +Penelope +Willow +Alyssa +Brooklyn +Claire +Nora +Caroline +Eleanor +Kylie +Liliana +Lily +Makayla +Maya +Scarlett +Alexa +Aria +Ashley +Brianna +Clara +Kendall +Victoria +Alexis +Elise +Nevaeh +Quinn +Stella +Sydney +Taylor +Violet +Cora +Eliana +Emerson +Jade +Katherine +Khloe +Madeline +Mckenzie +Melanie +Nyla +Samantha +Adalyn +Adelyn +Alexandria +Amiyah +Annabella +Eva +Isla +Jayla +Laila +Piper +Ryleigh +Valentina +Alivia +Bella +Brooke +Cassidy +Cecilia +Elaina +Ellie +Faith +Fiona +Josephine +Juliana +Kayla +Kenzie +Lilly +Londyn +Lyla +Makenna +Maria +Molly +Reagan +Sadie +Skyler +Aaliyah +Adeline +Adrianna +Angelina +Arya +Briana +Cali +Delilah +Gabrielle +Hailey +Ivy +Jordan +Juliette +Kimberly +Kinsley +Leilani +Lena +Lucy +Lydia +Margaret +Mariah +Mya +Paige +Payton +Ruby +Rylee +Sarah +Sophie +Adelaide +Adelina +Ainsley +Alana +Alessandra +Angel +Aniya +Brittany +Brynlee +Camila +Dakota +Delaney +Eden +Elena +Emilia +Finley +Gabriela +Gemma +Genevieve +Harmony +Hope +Imani +Jada +Jasmine +Jessica +Lyric +Malaya +Mckinley +Megan +Mila +Natalia +Parker +Phoebe +Saniya +Selena +Serenity +Shiloh +Summer +Teagan +Tessa +Trinity +Alayna +Aliyah +Amara +Amy +Ana +Anabelle +Angelique +Aniyah +Arabella +Arielle +Aurora +Brooklynn +Bryn +Brynn +Cheyenne +Daisy +Daniela +Destiny +Egypt +Elliana +Erin +Giuliana +Hayden +Hazel +Izabella +Jazmine +Jocelyn +Journee +Julianna +Kaydence +Kaylie +Lauren +Lia +Lila +Lucia +Makenzie +Malia +Maliyah +Mary +Milan +Miranda +Noelle +Reese +Rosemary +Ruth +Rylie +Valerie +Vivian +Wren +Zaniyah +William +James +John +Joseph +Charles +George +Frank +Thomas +Robert +Samuel +Albert +Edward +Harry +Howard +Walter +Francis +Harold +Louis +William +John +George +Joseph +James +Charles +Edward +Robert +Harry +Frank +Ralph +Thomas +Francis +Howard +Paul +Albert +Raymond +Andrew +Clifford +Henry +Richard +John +William +Charles +James +George +Joseph +Robert +Harry +Thomas +Paul +Francis +Frank +Anthony +Edward +Albert +Ralph +Richard +David +Howard +Norman +Walter +Alfred +Fred +Stanley +Frederick +Harold +Louis +Raymond +Benjamin +Earl +Ernest +Henry +Stephen +Woodrow +Arthur +Carl +Curtis +Daniel +Harvey +Jesse +Leon +Marshall +John +William +James +Charles +Joseph +George +Edward +Robert +Harry +Paul +Thomas +Francis +Frank +Clarence +Howard +Samuel +Walter +Albert +Henry +Norman +Alfred +Woodrow +Anthony +Arthur +Carl +Elmer +Harold +Raymond +Willard +Andrew +Benjamin +David +Edwin +Frederick +Harvey +Ralph +Stanley +Lawrence +Earl +Eugene +Leroy +Lewis +Nicholas +Richard +William +John +James +Charles +George +Joseph +Edward +Robert +Thomas +Ernest +Frank +Harry +Francis +Samuel +Walter +Anthony +Howard +Paul +Henry +Ralph +Richard +Albert +Alfred +Harold +Raymond +Clarence +Herman +Herbert +Michael +Stephen +Arthur +David +Eugene +Norman +Wilson +Donald +Edwin +Elwood +Fred +Leonard +Louis +Roland +Elmer +Gilbert +Jesse +Lawrence +Leon +Nicholas +Philip +Russell +Theodore +Victor +Willard +John +William +Charles +James +Joseph +George +Robert +Edward +Thomas +Walter +Frank +Harry +Paul +Anthony +Samuel +Albert +Francis +Earl +Henry +Harold +Howard +Elmer +Fred +Stanley +Norman +Alfred +Richard +Benjamin +Edgar +Clarence +Ernest +Raymond +Roland +Horace +Ralph +Frederick +Harvey +Leon +Philip +Andrew +Daniel +David +Lawrence +Michael +Preston +Willard +Arthur +Eugene +Herbert +Louis +Carl +Chester +Everett +Milton +Nicholas +Oscar +Stephen +Theodore +Edwin +Elwood +Franklin +Herman +Jesse +Leroy +Lewis +Marion +Rudolph +Russell +William +John +James +Charles +Joseph +George +Robert +Edward +Harry +Paul +Francis +Thomas +Howard +Walter +Henry +Harold +Samuel +Anthony +Ernest +Frank +Albert +Herbert +Richard +Alfred +Stanley +Ralph +Arthur +Carl +Clarence +Daniel +Norman +Willard +Benjamin +David +Horace +Leonard +Clifton +Donald +Frederick +Lawrence +Lewis +Louis +Preston +Wilson +Elwood +Fred +Harvey +Jesse +Michael +Raymond +Theodore +Wilbur +Earl +Edgar +Elmer +Eugene +Floyd +Milton +Peter +Philip +Calvin +Everett +Gilbert +Jack +Kenneth +Marshall +Martin +Stephen +Alexander +Franklin +Herman +Marvin +Oliver +Roland +Vincent +Woodrow +John +William +James +Joseph +George +Charles +Robert +Edward +Harry +Thomas +Walter +Frank +Clarence +Francis +Albert +Paul +Samuel +Howard +Ralph +Alfred +Harold +Henry +Russell +Frederick +David +Raymond +Arthur +Harvey +Roland +Theodore +Norman +Anthony +Earl +Lawrence +Richard +Benjamin +Elwood +Herman +Lewis +Stanley +Everett +Leon +Leonard +Alexander +Elmer +Eugene +Michael +Oscar +Willard +Carl +Donald +Horace +Leroy +Louis +Milton +Preston +Victor +Clifford +Daniel +Peter +Stephen +Vincent +Bernard +Herbert +Jesse +Woodrow +John +William +James +Joseph +Charles +Robert +George +Edward +Harry +Thomas +Paul +Francis +Walter +Frank +Howard +Albert +Harold +Raymond +Clarence +Norman +Samuel +David +Richard +Stanley +Alfred +Henry +Ralph +Leonard +Louis +Anthony +Victor +Alexander +Lawrence +Arthur +Donald +Earl +Benjamin +Ernest +Frederick +Herbert +Roland +Stephen +Warren +Alvin +Andrew +Daniel +Elmer +Harvey +Wallace +Franklin +Fred +Leroy +Lester +Melvin +Vincent +Willard +Wilson +Bernard +Calvin +Carl +Chester +Edgar +Edwin +Elwood +Granville +Lewis +Lloyd +Nicholas +Wesley +Allen +Clifford +Dominick +Eugene +Herman +Joshua +Leon +Morris +Peter +Philip +Preston +Roy +William +John +James +Charles +Joseph +Robert +George +Edward +Francis +Frank +Paul +Thomas +Walter +Ralph +Harry +Samuel +Howard +Richard +Stanley +Harold +Albert +Henry +Raymond +Alfred +Louis +Arthur +Earl +Norman +Benjamin +Clarence +Herbert +David +Ernest +Eugene +Leon +Alexander +Jack +Anthony +Daniel +Donald +Michael +Oliver +Andrew +Carl +Clinton +Elmer +Elwood +Fred +Harvey +Melvin +Roy +Theodore +Leonard +Lewis +Milton +Willard +Clifford +Clifton +Edgar +Franklin +Herman +Leo +Preston +Willis +Alvin +Bernard +Edwin +Frederick +Gilbert +Irvin +Leroy +Monroe +Peter +Russell +Stephen +Vaughn +Vincent +Virgil +William +John +Joseph +Charles +James +Robert +George +Edward +Thomas +Walter +Francis +Frank +Harry +Henry +Howard +Paul +Albert +Richard +Ralph +Raymond +Samuel +Alfred +Ernest +Louis +Eugene +Michael +Benjamin +Anthony +Arthur +Clarence +Harold +Leonard +Stanley +Donald +Leon +Earl +Harvey +Theodore +Daniel +Norman +Victor +Andrew +Clifford +David +Frederick +Herbert +Kenneth +Alexander +Franklin +Jack +Jesse +Lawrence +Roy +Edwin +Horace +Leroy +Lewis +Martin +Melvin +Peter +Russell +Vincent +Warren +Edgar +Elmer +Everett +Fred +Herman +Lester +Milton +Philip +Rodney +Stephen +Willard +Bernard +Dominick +Gilbert +Harrison +Norris +Oscar +Sidney +Vernon +Wilson +William +John +James +Joseph +Robert +Charles +George +Edward +Walter +Francis +Harry +Paul +Richard +Thomas +Henry +Clarence +Albert +Frank +Howard +Louis +Ralph +Raymond +Arthur +Harold +Stanley +Daniel +Alfred +Michael +Samuel +Earl +David +Fred +Andrew +Donald +Jack +Kenneth +Lawrence +Norman +Everett +Harvey +Herbert +Leon +Leonard +Willard +Anthony +Elmer +Ernest +Gilbert +Horace +Melvin +Stephen +Warren +Alton +Benjamin +Franklin +Peter +Roy +Russell +Alvin +Bernard +Carlton +Edgar +Frederick +Herman +Lester +Martin +Marvin +Milton +Preston +Roscoe +Archie +Dominick +Elwood +Eugene +Jesse +Joshua +Millard +Nicholas +Roland +Theodore +William +John +James +Charles +George +Robert +Joseph +Edward +Paul +Walter +Frank +Harry +Thomas +Francis +Richard +Henry +Albert +Ralph +Arthur +Donald +Howard +Raymond +Alfred +Anthony +David +Norman +Harold +Frederick +Stanley +Earl +Lawrence +Carl +Clarence +Eugene +Leonard +Louis +Samuel +Bernard +Daniel +Warren +Herman +Michael +Stephen +Edwin +Herbert +Horace +Milton +Clifford +Kenneth +Lewis +Theodore +Elwood +Harvey +Melvin +Nicholas +Peter +Willard +Angelo +Benjamin +Lee +Lester +Martin +Ray +Rodney +Roland +Vincent +Allen +Carroll +Chester +Ernest +Everett +Gordon +Leon +Leroy +Lloyd +Marvin +William +John +James +Charles +Robert +Joseph +George +Edward +Francis +Walter +Thomas +Harry +Paul +Frank +Howard +Raymond +Richard +Samuel +Henry +Anthony +Donald +Ralph +Albert +Alfred +Arthur +Clarence +Harold +David +Louis +Stanley +Ernest +Leonard +Calvin +Fred +Kenneth +Lawrence +Leon +Willard +Alvin +Franklin +Herbert +Martin +Theodore +Daniel +Earl +Frederick +Leroy +Roland +Andrew +Benjamin +Eugene +Jack +Norman +Allen +Carl +Elmer +Elwood +Harvey +Horace +Layton +Lester +Lewis +Preston +Rodney +Stephen +Vernon +Vincent +Edgar +Herman +Homer +Jacob +Nelson +Victor +William +John +James +Robert +Charles +Joseph +George +Edward +Thomas +Richard +Paul +Frank +Walter +Donald +Francis +Ralph +Howard +Norman +Clarence +Harry +Albert +Samuel +David +Harold +Louis +Willard +Henry +Raymond +Stanley +Eugene +Lewis +Alfred +Elmer +Leon +Anthony +Fred +Lawrence +Philip +Preston +Andrew +Earl +Ernest +Franklin +Russell +Bernard +Carl +Harvey +Herbert +Oliver +Roland +Stephen +Alexander +Arthur +Benjamin +Daniel +Elwood +Jack +Kenneth +Leroy +Melvin +Michael +Milton +Theodore +Vincent +Carmen +Clayton +Edwin +Jacob +Leslie +Victor +William +John +James +Robert +Joseph +Charles +George +Edward +Francis +Paul +Harry +Richard +Thomas +Frank +Walter +Albert +Harold +Henry +Raymond +Samuel +Howard +Anthony +Clarence +David +Louis +Leroy +Arthur +Ernest +Stanley +Bernard +Eugene +Donald +Ralph +Alfred +Earl +Roland +Daniel +Elmer +Leonard +Frederick +Harvey +Jack +Kenneth +Leon +Norman +Russell +Willard +Benjamin +Calvin +Edwin +Franklin +Herman +Lawrence +Oscar +Theodore +Carl +Dominick +Elwood +Gerald +Irvin +Peter +Philip +Alvin +Byron +Clifford +Fred +Granville +Herbert +Jesse +Melvin +Victor +Warren +Wilson +William +John +Robert +James +Joseph +Charles +George +Edward +Richard +Thomas +Francis +Paul +Frank +Donald +Harry +Harold +Clarence +Walter +Ralph +Albert +Raymond +Samuel +Alfred +David +Stanley +Earl +Louis +Norman +Willard +Harvey +Howard +Leon +Henry +Anthony +Arthur +Carl +Lawrence +Calvin +Daniel +Fred +Jack +Leroy +Lewis +Edwin +Ernest +Eugene +Floyd +Franklin +Gilbert +Lester +Russell +Elwood +Frederick +Granville +Herman +Jesse +Kenneth +Leo +Oscar +Roland +Theodore +Alton +Alvin +Bernard +Herbert +Leonard +Marion +Michael +Rodney +Roy +Vincent +Wallace +William +John +James +Robert +Charles +Joseph +George +Edward +Harry +Thomas +Richard +Paul +Howard +Francis +Henry +Walter +Anthony +David +Donald +Harold +Ralph +Albert +Alfred +Samuel +Norman +Raymond +Frank +Leon +Stanley +Arthur +Earl +Ernest +Eugene +Elmer +Leroy +Alvin +Daniel +Harvey +Theodore +Clarence +Frederick +Jack +Leonard +Preston +Carlton +Clifford +Franklin +Fred +Louis +Philip +Russell +Willard +Alexander +Bernard +Kenneth +Lee +Lewis +Marvin +Ray +Carl +Gerald +Jesse +Lawrence +Marion +Roland +Roy +William +John +Robert +James +Joseph +Charles +George +Thomas +Edward +Donald +Francis +Paul +Harry +Howard +Frank +Richard +Alfred +Clarence +Walter +Ralph +Albert +Eugene +Henry +Anthony +Earl +Raymond +Samuel +Leon +Louis +Arthur +Daniel +David +Harold +Herbert +Leonard +Stanley +Jack +Franklin +Leroy +Vernon +Alvin +Calvin +Elmer +Kenneth +Norman +Bernard +Clifford +Ernest +Morris +Theodore +Arnold +Carl +Carlton +Harvey +Lawrence +Leslie +Lewis +Nicholas +Willard +Allen +Andrew +Clyde +Elwood +Floyd +Fred +Herman +Marvin +Melvin +Peter +Philip +Roger +Roland +Russell +Victor +Vincent +John +William +Robert +James +Charles +Joseph +George +Richard +Donald +Frank +Paul +Edward +Thomas +Harry +Henry +Walter +Francis +Albert +Raymond +Alfred +Clarence +Ralph +Eugene +David +Samuel +Lawrence +Earl +Harold +Carl +Louis +Roland +Stanley +Arthur +Anthony +Bernard +Ernest +Jack +Leonard +Lewis +Andrew +Benjamin +Daniel +Fred +Harvey +Herbert +Norman +Theodore +Allen +Clifford +Elmer +Howard +Lee +Michael +Roy +Carlton +Edwin +Franklin +Irvin +Kenneth +Leon +Leroy +Martin +Marvin +Warren +William +John +James +Robert +Charles +Richard +Joseph +George +Edward +Donald +Harry +Francis +Thomas +Paul +Norman +Raymond +Frank +Louis +Ralph +Albert +Clarence +David +Howard +Harold +Samuel +Walter +Arthur +Carl +Lawrence +Roland +Andrew +Eugene +Alfred +Stanley +Anthony +Daniel +Henry +Earl +Elwood +Harvey +Vincent +Bernard +Frederick +Elmer +Floyd +Herbert +Leon +Leonard +Leroy +Lester +Philip +Ronald +Theodore +Willard +Curtis +Ernest +Fred +Herman +Michael +Peter +Roy +Vernon +Benjamin +Clifton +Gerald +Jack +Kenneth +Lewis +Martin +Melvin +Ray +Russell +Victor +Wilson +William +John +Robert +James +Charles +Donald +George +Joseph +Richard +Thomas +Edward +Raymond +Harry +Frank +Paul +Francis +David +Ralph +Louis +Norman +Eugene +Albert +Howard +Samuel +Walter +Earl +Kenneth +Ronald +Jack +Stanley +Harold +Alfred +Daniel +Fred +Anthony +Arthur +Carl +Edwin +Harvey +Henry +Leon +Leonard +Theodore +Lawrence +Lester +Benjamin +Gerald +Herbert +Leroy +Willard +Allen +Ernest +Frederick +Herman +Lewis +Nicholas +Roland +Russell +Andrew +Douglas +Franklin +Martin +Nelson +Preston +Victor +William +Robert +John +James +Richard +Donald +Joseph +Charles +George +Edward +Paul +Francis +Thomas +David +Harry +Howard +Albert +Frank +Ralph +Raymond +Walter +Louis +Norman +Alfred +Henry +Ernest +Daniel +Harold +Leonard +Samuel +Earl +Anthony +Franklin +Ronald +Carl +Kenneth +Calvin +Clarence +Frederick +Herbert +Eugene +Harvey +Theodore +Benjamin +Fred +Preston +Vernon +Alvin +Arthur +Herman +Jack +Peter +Philip +Stanley +Willard +Andrew +Clifford +Elmer +Gerald +Lawrence +Leon +Lewis +Martin +Oliver +Phillip +Russell +Wallace +Wilson +William +John +Robert +James +Charles +Donald +Richard +George +Joseph +Edward +Thomas +Harry +David +Paul +Francis +Walter +Howard +Ronald +Harold +Henry +Ralph +Frank +Franklin +Raymond +Albert +Daniel +Eugene +Kenneth +Norman +Alfred +Anthony +Arthur +Clarence +Earl +Lewis +Louis +Clifford +Ernest +Horace +Roland +Stanley +Carl +Gerald +Harvey +Jack +Lawrence +Leonard +Samuel +Bernard +Floyd +Marvin +Victor +Willard +Calvin +Carlton +Frederick +Philip +Dominick +Fred +Herbert +Herman +Leon +Nicholas +Preston +John +William +James +Robert +Richard +Charles +Joseph +Donald +George +Edward +Thomas +Francis +Paul +Ronald +David +Harry +Howard +Ralph +Walter +Ernest +Eugene +Harold +Kenneth +Norman +Alfred +Raymond +Frank +Albert +Arthur +Carl +Daniel +Franklin +Gerald +Harvey +Henry +Lawrence +Leonard +Roland +Anthony +Clarence +Herbert +Melvin +Samuel +Stanley +Theodore +Bernard +Earl +Elmer +Louis +Russell +Willard +Floyd +Fred +Michael +Allen +Andrew +Clifford +Herman +Jerry +Lee +Martin +Morris +Roger +Wilson +William +John +Robert +James +Charles +Richard +Donald +George +Joseph +Ronald +Edward +Francis +David +Paul +Thomas +Walter +Howard +Louis +Raymond +Kenneth +Arthur +Clarence +Eugene +Frank +Daniel +Henry +Jack +Samuel +Anthony +Harold +Harry +Norman +Carl +Elwood +Wayne +Albert +Alfred +Earl +Frederick +Gerald +Harvey +Lawrence +Ralph +Ernest +Floyd +Franklin +Fred +Stanley +Bernard +Herbert +Jay +Lewis +Martin +Milton +Willard +Alvin +Andrew +Arnold +Bill +Gene +Leroy +Lester +Philip +Roger +Roland +Russell +Robert +John +James +William +Richard +Charles +Donald +Joseph +Thomas +George +Edward +David +Paul +Frank +Francis +Raymond +Lawrence +Albert +Ralph +Ronald +Walter +Earl +Harry +Kenneth +Samuel +Fred +Gerald +Anthony +Daniel +Eugene +Franklin +Howard +Roger +Harold +Henry +Louis +Alfred +Herbert +Melvin +Carl +Clarence +Frederick +Leonard +Norman +Edgar +Ernest +Gary +Herman +Leroy +Lewis +Philip +Russell +Stanley +Andrew +Arthur +Benjamin +Bernard +Jack +Theodore +Wayne +Clifford +Dale +Douglas +Edwin +Harvey +Martin +Peter +Roland +Roy +Warren +William +Robert +John +James +Charles +Donald +Richard +George +Joseph +Edward +David +Paul +Ronald +Thomas +Harry +Raymond +Francis +Walter +Ralph +Frank +Gerald +Howard +Jack +Anthony +Carl +Frederick +Henry +Arthur +Eugene +Kenneth +Lawrence +Wayne +Allen +Earl +Franklin +Louis +Peter +Willard +Daniel +Harold +Melvin +Michael +Alfred +Clarence +Philip +Bruce +Ernest +Horace +Leroy +Samuel +Harvey +Stanley +Theodore +Albert +Bernard +Fred +Irvin +Jerry +Preston +Clayton +Dale +Gary +Ira +Leon +Marvin +Nelson +Norman +Roland +Roy +Russell +Vincent +William +Robert +John +James +Charles +Richard +Donald +George +Joseph +Edward +Thomas +David +Paul +Francis +Ronald +Kenneth +Walter +Howard +Michael +Samuel +Carl +Henry +Clarence +Frank +Harold +Lawrence +Norman +Raymond +Albert +Gerald +Ernest +Eugene +Louis +Arthur +Harry +Leonard +Ralph +Wayne +Jack +Bernard +Roger +Stanley +Theodore +Alan +Alfred +Anthony +Daniel +Fred +Lewis +Philip +Benjamin +Bruce +Harvey +Herbert +Jay +Larry +Leon +Peter +Russell +Stephen +Allen +Carlton +Earl +Elmer +Herman +Lee +Leroy +Victor +Vincent +Arnold +Calvin +Jerry +Leslie +Martin +Marvin +Melvin +Roland +John +Robert +William +James +Charles +Richard +David +Joseph +George +Thomas +Ronald +Edward +Donald +Francis +Paul +Harry +Kenneth +Walter +Michael +Wayne +Daniel +Gerald +Howard +Lawrence +Raymond +Frank +Albert +Harold +Alfred +Carl +Clarence +Eugene +Larry +Louis +Arthur +Henry +Roger +Samuel +Anthony +Earl +Clifford +Jay +Leroy +Ralph +Allen +Edwin +Harvey +Herbert +Jerome +Leonard +Norman +Russell +Alvin +Bernard +Fred +Stanley +Theodore +Vincent +Andrew +Benjamin +Bruce +Calvin +Delbert +Dennis +Elwood +Floyd +Frederick +Gary +Gilbert +Jack +Jerry +Lester +Otis +Philip +Rodney +Roy +Willard +William +Robert +John +James +Charles +Richard +Joseph +George +Thomas +Donald +Ronald +David +Raymond +Edward +Kenneth +Harry +Frank +Paul +Francis +Walter +Michael +Daniel +Lawrence +Henry +Louis +Ralph +Albert +Anthony +Eugene +Howard +Norman +Harold +Wayne +Jack +Peter +Carl +Ernest +Roger +Gene +Gerald +Stephen +Arthur +Clarence +Harvey +Franklin +Fred +Frederick +Larry +Samuel +Theodore +Victor +Alfred +Alvin +Andrew +Jerry +Allen +Benjamin +Clifford +Earl +Bruce +Gary +Herbert +Lee +Lewis +Stanley +Barry +Dale +Edgar +Edwin +Jerome +Jon +Leonard +Marvin +Melvin +Nelson +Philip +Roland +Roy +Timothy +John +Robert +William +James +Richard +Charles +George +Thomas +David +Joseph +Ronald +Donald +Edward +Paul +Harry +Francis +Michael +Kenneth +Wayne +Anthony +Howard +Frank +Henry +Louis +Raymond +Walter +Albert +Arthur +Harold +Larry +Ralph +Stephen +Norman +Daniel +Lawrence +Alfred +Gerald +Bernard +Fred +Frederick +Peter +Bruce +Gary +Philip +Samuel +Carl +Clarence +Franklin +Horace +Jerry +Leroy +Eugene +Jay +Roger +Stanley +Allen +Earl +Gene +Herbert +Jack +Alvin +Benjamin +Preston +Roy +Russell +Douglas +Ernest +Glenn +Harvey +Leonard +Lewis +Mark +Martin +Roland +Willard +Carlton +Clifford +Melvin +Nelson +Rodney +Ronnie +Sylvester +Theodore +John +William +Robert +James +Richard +Charles +David +Joseph +Thomas +George +Ronald +Edward +Michael +Donald +Francis +Paul +Wayne +Raymond +Harry +Frank +Kenneth +Walter +Eugene +Ralph +Lawrence +Peter +Samuel +Douglas +Henry +Howard +Frederick +Albert +Gerald +Arthur +Larry +Martin +Norman +Bruce +Earl +Louis +Anthony +Gary +Ernest +Fred +Harold +Dennis +Stanley +Carl +Jerry +Leonard +Clarence +Daniel +Philip +Benjamin +Bernard +Herbert +Leon +Mark +Melvin +Roger +Alan +Allen +Barry +Bill +Calvin +Clifford +Franklin +Gilbert +Glen +Gordon +Roland +Stephen +Vernon +Arnold +Glenn +Harvey +Herman +Jay +Leroy +Phillip +Terry +Alfred +Allan +Clark +Leslie +Roy +Theodore +Victor +Wilbur +Wilmer +William +John +Robert +James +Charles +Joseph +Richard +Thomas +Ronald +David +Edward +George +Donald +Paul +Kenneth +Francis +Frank +Michael +Raymond +Harry +Walter +Gerald +Howard +Wayne +Arthur +Daniel +Norman +Eugene +Henry +Ralph +Albert +Anthony +Louis +Dennis +Larry +Earl +Gary +Philip +Stephen +Douglas +Harold +Samuel +Allen +Ernest +Jack +Jerry +Lawrence +Leonard +Alfred +Alvin +Carl +Roland +Bruce +Frederick +Martin +Melvin +Roger +Roy +Steven +Terry +Andrew +Benjamin +Clarence +Harvey +Stanley +Herbert +Lee +Lewis +Peter +Phillip +Ronnie +Bernard +Fred +Joe +Vincent +Barry +Edgar +Edwin +Franklin +Glenn +Jimmy +Jon +Leon +Leroy +Mark +Preston +Russell +Theodore +Alan +Allan +Calvin +Clifford +Elwood +Everett +Jay +Lester +Milton +Nelson +Victor +Warren +Willard +Wilmer +William +James +Robert +John +Richard +Charles +Joseph +David +Thomas +Donald +George +Ronald +Edward +Paul +Kenneth +Wayne +Michael +Raymond +Walter +Francis +Howard +Henry +Frank +Harry +Daniel +Larry +Lawrence +Louis +Albert +Gary +Harold +Samuel +Alfred +Clarence +Ralph +Dennis +Gerald +Stanley +Stephen +Alan +Allen +Peter +Douglas +Norman +Andrew +Anthony +Ernest +Eugene +Roland +Edwin +Franklin +Leonard +Arthur +Earl +Roy +Bernard +Jeffrey +Martin +Philip +Carl +Leroy +Lewis +Roger +Victor +Bruce +Frederick +Harvey +Herbert +Jay +Leon +Melvin +Steven +Theodore +Vincent +Willard +Willie +Eddie +Gilbert +Jack +Jerry +Nicholas +Phillip +Ray +Rodney +Benjamin +Clifford +Elmer +Fred +Glenn +Joe +Lester +Marvin +Milton +Patrick +Preston +Randall +Ronnie +Russell +Robert +John +William +James +Richard +Joseph +Charles +Thomas +David +George +Donald +Edward +Michael +Ronald +Paul +Kenneth +Walter +Albert +Frank +Gerald +Harry +Lawrence +Wayne +Francis +Stephen +Ralph +Gary +Howard +Roger +Anthony +Eugene +Samuel +Arthur +Daniel +Harold +Allen +Dennis +Stanley +Ernest +Henry +Larry +Norman +Raymond +Alan +Bruce +Earl +Andrew +Franklin +Fred +Peter +Douglas +Edwin +Frederick +Leon +Louis +Carl +Clarence +Harvey +Marvin +Phillip +Roy +Barry +Melvin +Theodore +Jerome +Jerry +Lester +Warren +Alfred +Arnold +Leslie +Lewis +Martin +Philip +Timothy +Curtis +Floyd +Herbert +Jeffrey +Leonard +Leroy +Nicholas +Oliver +Ronnie +Victor +Vincent +Benjamin +Bernard +Carlton +Elwood +Everett +Gordon +Jack +Jay +Joe +Lee +Mark +Otis +Patrick +Rodney +Steve +Steven +Vernon +Willie +John +Robert +William +James +Richard +David +Charles +Joseph +Thomas +Donald +Ronald +George +Michael +Edward +Kenneth +Paul +Francis +Frank +Wayne +Gary +Stephen +Ralph +Bruce +Howard +Larry +Daniel +Henry +Walter +Harry +Eugene +Alan +Albert +Douglas +Frederick +Dennis +Stanley +Jerry +Louis +Roger +Barry +Lawrence +Peter +Samuel +Carl +Gerald +Leroy +Raymond +Anthony +Earl +Alfred +Ernest +Gregory +Harold +Philip +Arthur +Ronnie +Terry +Allen +Clarence +Jack +Leonard +Reginald +Steven +Timothy +Don +Jay +Jerome +Leon +Lewis +Mark +Theodore +Andrew +Fred +Jeffrey +Willard +Brian +Dale +Franklin +Martin +Norman +Christopher +Herbert +Jacob +Karl +Maurice +Nicholas +Vernon +Victor +Willie +Alvin +Benjamin +Edwin +Glenn +Jesse +Joe +Jon +Patrick +Preston +Randall +Roland +Roy +Russell +Warren +William +John +Robert +James +David +Richard +Charles +Thomas +Joseph +George +Ronald +Michael +Edward +Paul +Donald +Kenneth +Wayne +Daniel +Bruce +Harry +Larry +Walter +Gary +Dennis +Gerald +Frank +Henry +Arthur +Ralph +Raymond +Stephen +Francis +Carl +Roger +Alfred +Howard +Lawrence +Samuel +Steven +Barry +Eugene +Louis +Douglas +Alan +Anthony +Mark +Franklin +Peter +Albert +Leonard +Glenn +Jerry +Martin +Roy +Norman +Terry +Allen +Gregory +Jeffrey +Philip +Phillip +Ray +Clarence +Russell +Vincent +Clifford +Harold +Roland +Dale +Fred +Leroy +Timothy +Brian +Earl +Frederick +Gene +Leon +Stanley +Victor +Alexander +Benjamin +Bernard +Carlton +Don +Ernest +Harvey +Herbert +Irvin +Jay +Marvin +Patrick +Willie +Arnold +Christopher +Curtis +Edwin +Gilbert +Gordon +Jack +Nelson +Nicholas +Randall +Ronnie +Calvin +Edgar +Elton +Herman +Keith +Lee +Morris +Norris +Reginald +Steve +Tom +Willard +James +Robert +John +William +Charles +Richard +David +Thomas +Joseph +Michael +George +Ronald +Edward +Donald +Paul +Wayne +Gary +Larry +Bruce +Kenneth +Stephen +Raymond +Daniel +Frank +Francis +Eugene +Harry +Lawrence +Walter +Dennis +Gerald +Henry +Albert +Anthony +Howard +Arthur +Steven +Douglas +Harold +Andrew +Barry +Mark +Stanley +Peter +Samuel +Theodore +Philip +Ralph +Frederick +Herbert +Roger +Alfred +Carl +Dale +Glenn +Jeffrey +Phillip +Alan +Bernard +Clarence +Louis +Earl +Gregory +Jerry +Martin +Christopher +Melvin +Norman +Allen +Jay +Leonard +Lewis +Roy +Craig +Edwin +Ernest +Franklin +Fred +Patrick +Steve +Arnold +Brian +Clifford +Elmer +Hugh +Jackie +Jerome +Jon +Rodney +Terry +Timothy +Alvin +Benjamin +Calvin +Jack +Marvin +Roland +Vaughn +Wesley +Wilson +Herman +Kevin +Leon +Leslie +Preston +Vernon +Victor +Vincent +Warren +John +James +William +Robert +Richard +Thomas +Charles +David +Joseph +Michael +Ronald +Donald +Paul +George +Stephen +Edward +Kenneth +Gary +Larry +Francis +Lawrence +Steven +Gerald +Daniel +Dennis +Raymond +Harry +Wayne +Bruce +Anthony +Henry +Samuel +Douglas +Frank +Albert +Glenn +Stanley +Andrew +Arthur +Frederick +Walter +Peter +Gregory +Barry +Howard +Roger +Alan +Christopher +Harold +Jeffrey +Alfred +Ernest +Keith +Norman +Philip +Ralph +Jerry +Mark +Vincent +Carl +Eugene +Franklin +Kevin +Marvin +Phillip +Roland +Benjamin +Earl +Jerome +Jesse +Leon +Leonard +Leroy +Martin +Nicholas +Clarence +Dale +Eric +Louis +Roy +Theodore +Willie +Carlton +Edmund +Gilbert +Jack +Jay +Lewis +Patrick +Steve +Tyrone +Warren +Allen +Alvin +Edwin +Harvey +Herbert +Leslie +Melvin +Preston +Rodger +Rodney +Timothy +Allan +Alton +Brian +Calvin +Clifford +Don +Jonathan +Lee +Lester +Maurice +Randolph +Ronnie +Russell +Terry +Victor +Wallace +Wesley +William +John +Robert +James +David +Richard +Michael +Thomas +Joseph +Charles +George +Ronald +Donald +Paul +Stephen +Edward +Kenneth +Larry +Wayne +Gary +Daniel +Bruce +Harry +Dennis +Steven +Francis +Arthur +Anthony +Frank +Lawrence +Ralph +Gerald +Raymond +Douglas +Walter +Howard +Jeffrey +Gregory +Mark +Roger +Peter +Philip +Earl +Alfred +Carl +Eugene +Henry +Alan +Allen +Dale +Frederick +Glenn +Albert +Clifford +Jerry +Louis +Norman +Russell +Ernest +Samuel +Kevin +Christopher +Clarence +Harold +Jack +Lester +Phillip +Brian +Calvin +Eric +Franklin +Keith +Leroy +Patrick +Roy +Timothy +Victor +Barry +Edwin +Jay +Roland +Terry +Bernard +Curtis +Fred +Harvey +Martin +Preston +Stanley +Andrew +Lee +Leonard +Maurice +Melvin +Ray +Theodore +Vincent +Willie +Carlton +Cecil +Jerome +Lewis +Marvin +Reginald +Rodney +Scott +Vernon +Warren +Alexander +Arnold +Benjamin +Edgar +Gene +Gordon +Herbert +Jesse +Joel +Johnny +Lonnie +Mike +Nicholas +Randy +John +Robert +William +James +Michael +Richard +David +Thomas +Joseph +Charles +Donald +Edward +George +Ronald +Gary +Stephen +Paul +Steven +Kenneth +Larry +Bruce +Daniel +Wayne +Dennis +Lawrence +Anthony +Mark +Raymond +Walter +Douglas +Francis +Carl +Harry +Gregory +Albert +Gerald +Frank +Roger +Arthur +Peter +Jeffrey +Stanley +Barry +Glenn +Howard +Christopher +Russell +Andrew +Eric +Ralph +Terry +Timothy +Ernest +Alan +Bernard +Eugene +Harold +Jay +Louis +Martin +Norman +Philip +Roy +Fred +Henry +Kevin +Patrick +Theodore +Alfred +Clarence +Earl +Frederick +Nicholas +Benjamin +Herbert +Lee +Lewis +Allen +Franklin +Jack +Jerome +Rodney +Samuel +Brian +Curtis +Don +Gilbert +Jerry +Keith +Leonard +Leroy +Lester +Randolph +Tyrone +Victor +Dale +Elwood +Gene +Jonathan +Perry +Phillip +Warren +Alexander +Clifford +Dana +Dwight +Elmer +Geoffrey +Leon +Marc +Milton +Scott +Vernon +Vincent +Willard +Arnold +Carlton +Craig +Danny +Darryl +Floyd +Gordon +Harvey +Joel +Jon +Leslie +Marvin +Nelson +Randall +Rudolph +William +Robert +John +James +David +Richard +Michael +Joseph +Thomas +Charles +Gary +Donald +Stephen +Kenneth +Ronald +Paul +George +Bruce +Edward +Steven +Daniel +Mark +Wayne +Jeffrey +Francis +Frank +Dennis +Larry +Anthony +Ralph +Gregory +Lawrence +Peter +Timothy +Carl +Douglas +Walter +Frederick +Samuel +Clarence +Keith +Kevin +Philip +Raymond +Albert +Eugene +Henry +Stanley +Christopher +Gerald +Harold +Harry +Howard +Martin +Dale +Glenn +Alan +Ernest +Andrew +Eric +Jerry +Patrick +Allen +Norman +Alfred +Arthur +Lewis +Louis +Barry +Bernard +Craig +Earl +Jay +Scott +Leonard +Russell +Benjamin +Brian +Dwight +Franklin +Lee +Leon +Nicholas +Randy +Ray +Roger +Terry +Theodore +Warren +Alexander +Roland +Willard +Curtis +Fredrick +Jack +Jerome +Karl +Leroy +Lester +Victor +Vincent +Harvey +Herbert +Jan +Jonathan +Lloyd +Melvin +Reginald +Roy +Wallace +Willie +Carlton +Chester +Clifford +Clifton +Dean +Edgar +Floyd +Gerard +Glen +Herman +Jon +Kirk +Preston +Randall +Rodney +Sidney +Steve +Tyrone +John +Robert +James +William +David +Michael +Richard +Thomas +Joseph +Charles +Donald +Gary +Paul +Stephen +George +Edward +Ronald +Steven +Mark +Larry +Bruce +Dennis +Jeffrey +Kenneth +Daniel +Wayne +Douglas +Kevin +Lawrence +Gregory +Francis +Walter +Ralph +Anthony +Arthur +Barry +Roger +Frank +Harry +Keith +Timothy +Gerald +Andrew +Brian +Christopher +Glenn +Raymond +Samuel +Dale +Harold +Martin +Peter +Alan +Frederick +Allen +Eric +Henry +Howard +Louis +Scott +Stanley +Terry +Theodore +Jay +Jerry +Patrick +Philip +Carl +Craig +Eugene +Randall +Albert +Carlton +Clarence +Ernest +Herbert +Preston +Alfred +Edwin +Norman +Russell +Benjamin +Fred +Gordon +Lee +Mitchell +Randy +Clayton +Clifford +Earl +Jerome +Lester +Phillip +Ray +Robin +Roland +Victor +Franklin +Harvey +Leonard +Nicholas +Rodney +Roy +Alvin +Calvin +Curtis +Gene +Jeffery +Leon +Lewis +Marvin +Terrence +Tyrone +Don +Gilbert +Guy +Leslie +Neil +Stewart +Stuart +Vincent +Clinton +Garry +Karl +Leroy +Lloyd +Marc +Matthew +Melvin +Nathan +Reginald +Ricky +Warren +Wesley +Willard +John +Robert +James +William +David +Michael +Richard +Thomas +Charles +Joseph +Gary +George +Donald +Paul +Mark +Stephen +Steven +Ronald +Edward +Kenneth +Jeffrey +Daniel +Bruce +Kevin +Wayne +Anthony +Gregory +Timothy +Larry +Raymond +Francis +Ralph +Walter +Dennis +Harry +Lawrence +Peter +Frank +Howard +Alan +Keith +Roger +Arthur +Eugene +Harold +Jay +Patrick +Samuel +Andrew +Ernest +Glenn +Albert +Frederick +Gerald +Henry +Christopher +Jonathan +Philip +Martin +Russell +Douglas +Eric +Norman +Barry +Carl +Dale +Scott +Clarence +Craig +Curtis +Terry +Benjamin +Leonard +Randall +Stanley +Victor +Edwin +Franklin +Clifford +Herbert +Jerry +Leon +Melvin +Ricky +Steve +Harvey +Jon +Louis +Marvin +Phillip +Randy +Robin +Vernon +Allan +Arnold +Bernard +Gordon +Guy +Jesse +Jimmy +Alfred +Brian +Calvin +Glen +Lee +Leroy +Lewis +Reginald +Roy +Theodore +Willis +Alvin +Bobby +Clifton +Dwight +Earl +Floyd +Fred +Jack +Jerome +Marc +Marcus +Ronnie +Vincent +Willard +Alexander +Allen +Bradford +Bryan +Carlton +Dana +Jeffery +Lester +Matthew +Nathan +Nicholas +Rodney +Warren +John +David +James +Michael +William +Robert +Joseph +Richard +Thomas +Charles +Donald +Stephen +Mark +Paul +Gary +Edward +Steven +Kenneth +Ronald +Kevin +George +Jeffrey +Dennis +Bruce +Daniel +Anthony +Keith +Wayne +Raymond +Larry +Timothy +Walter +Gregory +Douglas +Francis +Harry +Eugene +Frank +Glenn +Gerald +Christopher +Lawrence +Peter +Alan +Eric +Andrew +Carl +Philip +Brian +Samuel +Ralph +Barry +Craig +Scott +Patrick +Arthur +Harold +Albert +Frederick +Terry +Roger +Victor +Warren +Clifford +Vincent +Alfred +Clarence +Franklin +Henry +Jonathan +Martin +Norman +Roy +Russell +Stanley +Benjamin +Bernard +Curtis +Earl +Fred +Howard +Lewis +Marvin +Rodney +Allen +Dale +Maurice +Randall +Ricky +Arnold +Chris +Ernest +Jack +Jay +Jerome +Jerry +Lee +Louis +Matthew +Robin +Steve +Leonard +Leroy +Nicholas +Theodore +Tyrone +Dean +Don +Jeffery +Joe +Leon +Marshall +Preston +Randy +Ray +Reginald +Alexander +Allan +Calvin +Carlton +Elmer +Gerard +Gordon +Guy +Karl +Leslie +Lester +Melvin +Nathaniel +Neal +Phillip +Ronnie +Terrence +Willard +Andre +Carson +Darrell +Dominick +Edwin +Elwood +Gregg +Jesse +Marc +Norris +Randolph +Wade +Wesley +John +Robert +James +Michael +David +William +Richard +Thomas +Joseph +Mark +Charles +Donald +Gary +Jeffrey +Stephen +Paul +Ronald +Steven +George +Kenneth +Bruce +Daniel +Edward +Kevin +Gregory +Anthony +Dennis +Frank +Douglas +Keith +Timothy +Raymond +Walter +Francis +Wayne +Brian +Larry +Andrew +Gerald +Barry +Lawrence +Peter +Samuel +Carl +Frederick +Jerry +Scott +Terry +Christopher +Henry +Russell +Alan +Eugene +Glenn +Howard +Harold +Jeffery +Matthew +Patrick +Stanley +Albert +Jonathan +Martin +Arthur +Eric +Theodore +Louis +Norman +Philip +Ralph +Roger +Roy +Ernest +Jay +Randall +Allen +Benjamin +Craig +Curtis +Dale +Harry +Marvin +Randy +Carlton +Clarence +Earl +Lee +Leonard +Phillip +Willard +Bryan +Edwin +Elwood +Glen +Harvey +Karl +Leon +Victor +Alfred +Bernard +Dean +Franklin +Garry +Jerome +Melvin +Aaron +Clifton +Danny +Gregg +Guy +Jesse +Johnny +Jon +Maurice +Nicholas +Ray +Ricky +Rodney +Ronnie +Clyde +Kurt +Mike +Rickey +Robin +Tyrone +Vincent +Calvin +Don +Edgar +Everett +Gene +Leslie +Micheal +Reginald +Roland +Stuart +Sylvester +Vernon +Allan +Alvin +Bradford +Claude +Clifford +Donnie +Elmer +Gerard +Gordon +Jeff +Jimmy +Kim +Laurence +Lester +Steve +Tommy +Wilson +John +James +Robert +Michael +David +William +Richard +Mark +Charles +Joseph +Thomas +Kevin +George +Donald +Jeffrey +Paul +Ronald +Kenneth +Gary +Daniel +Edward +Steven +Stephen +Gregory +Wayne +Bruce +Douglas +Anthony +Keith +Brian +Larry +Eugene +Raymond +Timothy +Frank +Lawrence +Scott +Christopher +Peter +Andrew +Francis +Patrick +Dennis +Eric +Harry +Glenn +Roger +Walter +Alan +Gerald +Carl +Samuel +Barry +Curtis +Philip +Albert +Dale +Jonathan +Vincent +Jeffery +Ernest +Arthur +Jay +Russell +Steve +Craig +Herbert +Louis +Norman +Robin +Danny +Jerry +Martin +Frederick +Henry +Leonard +Micheal +Ralph +Randall +Randy +Ricky +Tyrone +Allen +Bernard +Lester +Phillip +Benjamin +Clarence +Harold +Howard +Nicholas +Todd +Victor +Alfred +Dan +Dean +Glen +Gordon +Guy +Jack +Jon +Leroy +Marvin +Matthew +Roy +Terry +Jeff +Jerome +Leslie +Lewis +Ray +Ronnie +Theodore +Allan +Bryan +Carlton +Dana +Darrell +Earl +Franklin +Harvey +Karl +Leon +Mike +Tom +Vernon +Andy +Calvin +Chester +Chris +Darryl +Drew +Dwight +Edwin +Fred +Joe +Kim +Nathan +Nathaniel +Rodney +Roland +Stanley +Sylvester +Alvin +Dallas +Duane +Eddie +Forrest +Lee +Marcus +Marshall +Melvin +Milton +Reginald +Terrance +Terrence +Tony +Warren +Wilbur +Willard +Michael +John +James +William +David +Robert +Mark +Richard +Thomas +Joseph +Charles +Steven +Donald +Jeffrey +Kevin +Paul +Kenneth +Daniel +Ronald +Stephen +Edward +Wayne +George +Gary +Anthony +Bruce +Brian +Keith +Timothy +Gregory +Frank +Christopher +Raymond +Douglas +Peter +Andrew +Scott +Dennis +Larry +Patrick +Lawrence +Eric +Carl +Harry +Walter +Terry +Barry +Gerald +Jerry +Jay +Alan +Eugene +Glenn +Dale +Ralph +Allen +Francis +Howard +Steve +Vincent +Ricky +Roy +Russell +Stanley +Albert +Arthur +Craig +Ernest +Harold +Jeffery +Matthew +Samuel +Tony +Martin +Norman +Roger +Ronnie +Jonathan +Louis +Theodore +Alfred +Alvin +Randall +Dean +Bernard +Bryan +Curtis +Guy +Lewis +Mike +Phillip +Rodney +Billy +Bob +Chris +Clifford +Franklin +Fred +Frederick +Henry +Jerome +Lee +Philip +Willie +Benjamin +Gordon +Leonard +Leroy +Melvin +Randy +Reginald +Robin +Tim +Tyrone +Bill +Calvin +Jack +Micheal +Nicholas +Rick +Alexander +Andre +Bobby +Darrell +Darryl +Herbert +Terrence +Clarence +Clifton +Derrick +Earl +Everett +Gilbert +Glen +Hugh +Joe +Ray +Victor +Aubrey +Bret +Brett +Carlton +Carmen +Danny +Duane +Emanuel +Garry +Geoffrey +Herman +Jeff +Jim +Johnny +Jon +Kirk +Leon +Lester +Neal +Roland +Tom +John +David +Michael +James +Robert +William +Richard +Mark +Thomas +Joseph +Charles +Steven +Jeffrey +Kevin +Donald +George +Kenneth +Edward +Timothy +Anthony +Stephen +Paul +Daniel +Ronald +Gary +Gregory +Wayne +Brian +Christopher +Bruce +Dennis +Scott +Douglas +Larry +Keith +Patrick +Andrew +Matthew +Raymond +Frank +Philip +Alan +Francis +Harry +Howard +Walter +Craig +Peter +Eugene +Jerry +Eric +Lawrence +Randall +Carl +Curtis +Dale +Glenn +Mike +Ricky +Samuel +Henry +Ralph +Russell +Tyrone +Frederick +Jay +Jeffery +Steve +Gerald +Jonathan +Louis +Victor +Allen +Nicholas +Stanley +Terry +Vincent +Albert +Arthur +Barry +Dean +Gene +Randy +Danny +Fred +Jerome +Martin +Phillip +Calvin +Clarence +Darrell +Harold +Jack +Jeff +Joe +Lee +Roger +Bill +Chris +Duane +Earl +Kirk +Norman +Robin +Darryl +Dave +Leonard +Melvin +Rodney +Roy +Shawn +Theodore +Bernard +Bobby +Bryan +Elmer +Ernest +Herbert +Kenny +Micheal +Ronnie +Todd +Vernon +Andre +Clifford +Dwayne +Glen +Herman +Leroy +Marvin +Perry +Tony +Warren +Wesley +Willie +Aaron +Alfred +Angelo +Benjamin +Brett +Don +Eddie +Garry +Harvey +Ivan +Jim +Jon +Karl +Reginald +Stuart +Terrence +Clyde +Edwin +Elwood +Jimmy +Johnny +Ken +Leon +Linwood +Maurice +Mitchell +Nathan +Nathaniel +Pat +Randolph +Ray +Roland +Terence +Wallace +David +Michael +John +Robert +James +William +Mark +Thomas +Richard +Joseph +Kenneth +Charles +Steven +Jeffrey +Kevin +Donald +Paul +Edward +George +Timothy +Gregory +Anthony +Daniel +Christopher +Brian +Ronald +Douglas +Gary +Stephen +Bruce +Keith +Dennis +Raymond +Larry +Eric +Patrick +Gerald +Harry +Matthew +Francis +Walter +Andrew +Glenn +Frank +Peter +Ricky +Wayne +Scott +Craig +Dale +Philip +Roger +Carl +Curtis +Frederick +Jerry +Alan +Chris +Arthur +Eugene +Martin +Barry +Lawrence +Vincent +Henry +Jay +Mike +Jeffery +Dwayne +Randy +Steve +Tyrone +Albert +Howard +Ralph +Russell +Alfred +Jeff +Leonard +Randall +Samuel +Terry +Benjamin +Bryan +Ernest +Harold +Jerome +Joe +Nicholas +Norman +Tom +Bill +Dean +Gene +Lewis +Phillip +Ronnie +Roy +Theodore +Aaron +Billy +Danny +Hugh +Johnny +Jonathan +Louis +Randolph +Shawn +Allen +Dan +Darrell +Eddie +Greg +Jim +Jon +Karl +Marvin +Roland +Sean +Victor +Willie +Alvin +Andre +Clarence +Duane +Franklin +Fred +Jack +Jimmy +Kenny +Leon +Leroy +Melvin +Rodney +Todd +Tony +Alexander +Andy +Bob +Brett +Clifton +Darryl +Edgar +Elwood +Gordon +Gregg +Kirk +Marc +Marshall +Ray +Reginald +Wade +Warren +Wilbert +Bernard +Bret +Calvin +Christian +Clark +Drew +Earl +Guy +Jesse +Joel +Kurt +Maurice +Sheldon +Ted +Vernon +John +David +Michael +Robert +James +William +Mark +Richard +Joseph +Thomas +Kevin +Jeffrey +Charles +Steven +Daniel +Kenneth +Donald +Paul +Anthony +Timothy +Christopher +Gary +Brian +Gregory +Stephen +George +Edward +Ronald +Bruce +Douglas +Andrew +Wayne +Keith +Raymond +Scott +Francis +Alan +Matthew +Dennis +Peter +Dale +Glenn +Patrick +Carl +Eric +Larry +Walter +Ricky +Terry +Barry +Jeff +Vincent +Frank +Harry +Lawrence +Louis +Samuel +Albert +Dean +Gerald +Ralph +Howard +Jeffery +Stanley +Victor +Craig +Martin +Norman +Philip +Roger +Russell +Curtis +Henry +Jonathan +Randy +Bill +Darryl +Eugene +Jay +Jerry +Karl +Todd +Allen +Bryan +Dwayne +Frederick +Benjamin +Duane +Ernest +Mike +Calvin +Danny +Fred +Steve +Troy +Alvin +Arthur +Bernard +Chris +Franklin +Greg +Harold +Herbert +Jim +Roy +Tom +Warren +Billy +Darren +Jerome +Leon +Randall +Robin +Vernon +Clarence +Jack +Jesse +Jon +Leonard +Melvin +Nicholas +Phillip +Roland +Theodore +Tyrone +Antonio +Bobby +Claude +Darrell +Glen +Guy +Kim +Rodney +Shawn +Tony +Alfred +Bob +Earl +Edwin +Floyd +Geoffrey +Gerard +Hugh +Joe +Johnny +Marc +Marvin +Preston +Sean +Willie +Aaron +Alexander +Bradley +Brett +Chester +Clifton +Eddie +Garry +Gordon +Joel +Lewis +Maurice +Millard +Milton +Mitchell +Nathaniel +Neal +Nelson +Randal +Reginald +Rick +Ronnie +Sam +Sidney +Stewart +Tim +Tracy +Wade +Wesley +John +David +Michael +Robert +James +William +Mark +Thomas +Richard +Joseph +Jeffrey +Steven +Kevin +Charles +Kenneth +Christopher +Daniel +Paul +Timothy +Anthony +Gary +Brian +Edward +Scott +Donald +George +Stephen +Douglas +Gregory +Ronald +Eric +Bruce +Andrew +Glenn +Keith +Patrick +Larry +Alan +Vincent +Darryl +Jeff +Peter +Wayne +Dennis +Francis +Craig +Raymond +Lawrence +Matthew +Chris +Jeffery +Louis +Steve +Walter +Frank +Frederick +Ralph +Roger +Terry +Carl +Eugene +Harry +Jonathan +Randall +Bryan +Dale +Henry +Howard +Jerry +Mike +Ricky +Curtis +Martin +Barry +Benjamin +Micheal +Philip +Samuel +Todd +Troy +Allen +Clarence +Dean +Dwayne +Gerald +Greg +Randy +Albert +Arthur +Ernest +Leroy +Reginald +Shawn +Tracy +Fred +Jack +Jay +Jimmy +Lee +Tony +Alfred +Bill +Bob +Calvin +Danny +Jon +Marvin +Melvin +Theodore +Wesley +Billy +Bobby +Bradley +Don +Glen +Harold +Jerome +Lewis +Nathan +Nicholas +Phillip +Sean +Earl +Eddie +Johnny +Leonard +Norman +Orlando +Ronnie +Victor +Aaron +Adam +Dana +Darrell +Duane +Jim +Joe +Kelly +Kenny +Leslie +Randolph +Robin +Stanley +Tom +Vernon +Bernard +Clifford +Edwin +Everett +Garry +Herbert +Kent +Lance +Leon +Marcus +Maurice +Milton +Myron +Perry +Rodney +Roy +Russell +Stuart +Tyrone +Willis +David +John +Michael +Robert +James +William +Mark +Richard +Joseph +Thomas +Charles +Jeffrey +Kevin +Brian +Paul +Anthony +Christopher +Steven +Gregory +Kenneth +Timothy +Scott +Ronald +Donald +Stephen +Edward +Gary +Daniel +Andrew +George +Eric +Keith +Patrick +Bruce +Raymond +Dennis +Wayne +Douglas +Matthew +Walter +Howard +Larry +Frank +Glenn +Peter +Carl +Gerald +Philip +Steve +Louis +Roger +Dean +Francis +Phillip +Randy +Todd +Alan +Dale +Ernest +Harry +Jonathan +Vincent +Bryan +Curtis +Darryl +Henry +Jeffery +Jerry +Russell +Troy +Allen +Lawrence +Mike +Samuel +Eugene +Frederick +Ralph +Craig +Danny +Derrick +Martin +Terry +Arthur +Barry +Chris +Dwayne +Jay +Norman +Victor +Albert +Greg +Jeff +Randall +Ricky +Warren +Bobby +Clarence +Don +Jerome +Micheal +Tim +Andre +Bill +Gordon +Kurt +Lee +Marvin +Melvin +Shawn +Willie +Aaron +Alfred +Brent +Brett +Darren +Edwin +Franklin +Harold +Johnny +Leon +Leonard +Lewis +Maurice +Sean +Stanley +Stewart +Tom +Clifford +Duane +Jesse +Joe +Marc +Nathaniel +Nelson +Nicholas +Rodney +Roy +Theodore +Tommy +Benjamin +Calvin +Clifton +Darrell +Earl +Edgar +Fred +Glen +Herbert +Jack +Jody +Jon +Leroy +Mario +Tony +Vernon +Clinton +Dana +Darin +Eddie +Edmund +Guy +Jessie +Kendall +Kirk +Lester +Orlando +Preston +Reginald +Rick +Roland +Terrence +Wendell +Willard +John +Michael +Robert +David +James +William +Mark +Richard +Jeffrey +Thomas +Kevin +Charles +Joseph +Kenneth +Paul +Brian +Daniel +Christopher +Steven +Timothy +Anthony +George +Scott +Edward +Donald +Stephen +Andrew +Ronald +Gregory +Keith +Gary +Eric +Douglas +Patrick +Todd +Bruce +Wayne +Frank +Curtis +Lawrence +Peter +Walter +Alan +Francis +Matthew +Raymond +Harry +Vincent +Carl +Bryan +Dennis +Larry +Samuel +Barry +Craig +Dean +Shawn +Gerald +Alfred +Darryl +Henry +Lee +Roger +Arthur +Dale +Danny +Dwayne +Glenn +Jeffery +Jerry +Ralph +Terry +Andre +Jack +Jeff +Randall +Randy +Chris +Jonathan +Louis +Russell +Steve +Howard +Joel +Marvin +Nicholas +Philip +Rodney +Tony +Albert +Allen +Darrell +Earl +Ernest +Eugene +Franklin +Lewis +Martin +Mike +Vernon +Benjamin +Darren +Harold +Maurice +Victor +Derrick +Erik +Jay +Joe +Johnny +Alexander +Bernard +Bradley +Derek +Dominick +Duane +Edwin +Jamie +Kurt +Leonard +Phillip +Reginald +Ricky +Roy +Sean +Theodore +Tim +Troy +Tyrone +Willie +Aaron +Arnold +Bobby +Christian +Frederick +Glen +Greg +Jerome +Micheal +Neil +Terence +Terrence +Tracy +Bill +Blair +Brent +Clarence +Clinton +Daryl +Eddie +Gordon +Gregg +Guy +Hugh +Jason +Karl +Ken +Kirk +Leon +Nathan +Nathaniel +Norman +Ray +Roland +Ronnie +Stanley +Stuart +Wendell +John +David +Michael +Robert +James +William +Thomas +Richard +Charles +Mark +Joseph +Jeffrey +Christopher +Kevin +Steven +Paul +Brian +Scott +Timothy +Edward +Stephen +Daniel +Eric +Anthony +Ronald +Kenneth +Donald +Andrew +Gregory +Gary +George +Keith +Douglas +Matthew +Bruce +Patrick +Frank +Peter +Rodney +Vincent +Wayne +Bryan +Francis +Raymond +Shawn +Carl +Philip +Walter +Craig +Russell +Todd +Alan +Allen +Dennis +Howard +Larry +Harry +Jeffery +Jerry +Marvin +Sean +Arthur +Barry +Eugene +Nicholas +Roger +Albert +Darrin +Jonathan +Randy +Roy +Aaron +Darren +Darryl +Glenn +Henry +Leonard +Ricky +Tyrone +Warren +Calvin +Dale +Dwayne +Louis +Martin +Randall +Willie +Danny +Jon +Lawrence +Melvin +Phillip +Terry +Theodore +Troy +Clarence +Earl +Frederick +Herbert +Leroy +Steve +Victor +Bernard +Billy +Derek +Harold +Jay +Jerome +Micheal +Ralph +Roland +Stuart +Tony +Alfred +Antonio +Chris +Curtis +Ernest +Franklin +Gerald +Gordon +Maurice +Norman +Preston +Samuel +Alexander +Bobby +Dean +Duane +Erik +Everett +Fred +Glen +Jason +Johnny +Jose +Leon +Mitchell +Terence +Adam +Andre +Angelo +Brad +Dana +Darnell +Guy +Harvey +Herman +Jesse +Joe +Joel +Kelly +Kurt +Lewis +Marc +Morris +Nick +Randolph +Ronnie +Stanley +Michael +Robert +John +David +James +William +Mark +Joseph +Richard +Christopher +Jeffrey +Thomas +Brian +Charles +Kevin +Timothy +Steven +Anthony +Kenneth +Paul +Eric +Scott +Stephen +Daniel +George +Matthew +Edward +Andrew +Gregory +Donald +Ronald +Keith +Peter +Douglas +Frank +Carl +Patrick +Gary +Rodney +Samuel +Shawn +Bryan +Darryl +Francis +Todd +Vincent +Craig +Curtis +Dennis +Gerald +Sean +Bruce +Roger +Eugene +Raymond +Glenn +Howard +Larry +Ralph +Lawrence +Harold +Jeffery +Jon +Marvin +Randy +Russell +Walter +Wayne +Alan +Barry +Darrin +Dean +Harry +Henry +Theodore +Troy +Albert +Alfred +Dale +Martin +Arthur +Clarence +Darren +Edwin +Philip +Warren +Willie +Chris +Lee +Maurice +Roy +Allen +Angelo +Glen +Jerry +Jonathan +Melvin +Ricky +Victor +Adam +Andre +Don +Dwayne +Franklin +Frederick +Jack +Jason +Jimmy +Leonard +Leroy +Louis +Nicholas +Tracy +Tyrone +Bernard +Bradley +Duane +Jerome +Joe +Leon +Lester +Randall +Ronnie +Tim +Wesley +Alexander +Brett +Calvin +Dana +Danny +Darin +Earl +Ernest +Fred +Jay +Jeff +Johnny +Lewis +Norman +Reginald +Steve +Stuart +Terrance +Terry +Wade +Michael +John +James +David +Robert +William +Mark +Joseph +Richard +Christopher +Brian +Thomas +Kevin +Charles +Steven +Jeffrey +Daniel +Paul +Timothy +Anthony +Donald +Kenneth +Matthew +Stephen +Andrew +Scott +Ronald +George +Edward +Eric +Douglas +Keith +Gregory +Gary +Patrick +Peter +Wayne +Bryan +Craig +Shawn +Bruce +Sean +Troy +Walter +Dean +Dennis +Francis +Frederick +Jonathan +Norman +Russell +Darren +Eugene +Glenn +Phillip +Vincent +Rodney +Jeffery +Larry +Marvin +Samuel +Alan +Curtis +Frank +Lawrence +Philip +Roger +Todd +Andre +Carl +Harry +Henry +Jerry +Maurice +Albert +Jon +Leonard +Martin +Ralph +Allen +Dale +Darryl +Ernest +Jay +Jesse +Louis +Reginald +Roy +Barry +Dwayne +Franklin +Fred +Mike +Nicholas +Raymond +Steve +Theodore +Victor +Benjamin +Calvin +Carlton +Derrick +Howard +Jeff +Johnny +Kent +Kirk +Kurt +Marcus +Nathaniel +Preston +Randall +Tracy +Tyrone +Adam +Alvin +Arthur +Chris +Gerald +Jerome +Jimmy +Joe +Karl +Lewis +Randy +Stanley +Brett +Clarence +Darrell +Guy +Harold +Jack +Jason +Joshua +Luis +Marc +Mario +Melvin +Roland +Stuart +Tim +Timmy +Tony +Willie +Michael +Robert +John +James +David +William +Christopher +Mark +Thomas +Richard +Joseph +Brian +Charles +Jeffrey +Scott +Stephen +Kevin +Steven +Anthony +Matthew +Ronald +Paul +Kenneth +Daniel +Eric +Timothy +Edward +Gregory +Donald +George +Keith +Douglas +Andrew +Patrick +Peter +Jonathan +Dennis +Frank +Sean +Phillip +Shawn +Wayne +Bryan +Larry +Raymond +Jay +Russell +Bruce +Francis +Gary +Samuel +Todd +Vincent +Craig +Rodney +Dean +Gerald +Ralph +Dwayne +Henry +Howard +Troy +Albert +Eugene +Lawrence +Theodore +Walter +Aaron +Alfred +Barry +Marvin +Randall +Allen +Clarence +Curtis +Darren +Frederick +Philip +Alan +Andre +Brent +Carl +Earl +Harry +Johnny +Lee +Nathan +Tony +Christian +Dale +Ernest +Jason +Jeffery +Joel +Kelly +Martin +Randy +Reginald +Roger +Terry +Vernon +Victor +Benjamin +Chris +Darrell +Darryl +Derek +Glen +Jerome +Jimmy +Jose +Louis +Norman +Ryan +Arthur +Bobby +Brett +Carlos +Darnell +Duane +Franklin +Fred +Glenn +Jerry +Kyle +Lester +Luke +Melvin +Nicholas +Roy +Stanley +Arnold +Bernard +Calvin +Chad +Clifford +Daryl +Edwin +Erik +Geoffrey +Gordon +Harold +Harvey +Jesse +Karl +Kirk +Leonard +Marshall +Perry +Preston +Ray +Ricky +Steve +Terrence +Wallace +Michael +John +Robert +David +William +James +Christopher +Brian +Mark +Richard +Jeffrey +Joseph +Charles +Thomas +Scott +Daniel +Kevin +Steven +Timothy +Paul +Stephen +Anthony +Eric +Gregory +Matthew +Ronald +Edward +Andrew +Kenneth +George +Patrick +Donald +Douglas +Keith +Wayne +Gary +Peter +Craig +Frank +Sean +Shawn +Todd +Jonathan +Larry +Raymond +Troy +Bryan +Jason +Walter +Bruce +Francis +Carl +Louis +Marc +Vincent +Alan +Jerry +Martin +Russell +Aaron +Albert +Andre +Dale +Dennis +Jeffery +Lawrence +Philip +Curtis +Eugene +Gerald +Ralph +Stanley +Chris +Frederick +Marvin +Rodney +Samuel +Allen +Barry +Benjamin +Corey +Glenn +Micheal +Tyrone +Willie +Billy +Bobby +Derrick +Dwayne +Franklin +Glen +Harry +Henry +Melvin +Nicholas +Norman +Randall +Roger +Terry +Theodore +Alfred +Bradley +Darrin +Derek +Erik +Ernest +Geoffrey +Jay +Roy +Adam +Arthur +Clarence +Darren +Dean +Duane +Jerome +Karl +Lee +Leon +Leroy +Nathan +Tony +Alex +Alvin +Antonio +Brent +Carlton +Chad +Darnell +Demetrius +Eddie +Herbert +Howard +Jesse +Joel +Kent +Lance +Milton +Phillip +Randy +Terrence +Wade +Alexander +Brett +Darin +Darryl +Earl +Jamie +Johnnie +Joshua +Lewis +Luis +Maurice +Neil +Orlando +Reginald +Shannon +Steve +Victor +Wallace +Michael +John +Robert +James +David +William +Christopher +Joseph +Mark +Richard +Jeffrey +Thomas +Brian +Charles +Kevin +Matthew +Stephen +Daniel +Anthony +Scott +Steven +Donald +Eric +Paul +Timothy +Andrew +Edward +Gregory +Ronald +Keith +Kenneth +George +Patrick +Shawn +Craig +Sean +Jason +Wayne +Douglas +Dennis +Raymond +Larry +Todd +Gary +Harry +Jonathan +Lawrence +Gerald +Marcus +Marc +Aaron +Troy +Walter +Bryan +Carl +Frank +Bruce +Francis +Jeffery +Russell +Andre +Darren +Frederick +Henry +Jerry +Vincent +Albert +Dean +Jeremy +Peter +Ralph +Roger +Terry +Adam +Chris +Curtis +Fred +Martin +Samuel +Alan +Arthur +Benjamin +Brent +Derek +Derrick +Dwayne +Louis +Rodney +Barry +Corey +Earl +Edwin +Erik +Glenn +Jon +Karl +Lance +Phillip +Stanley +Victor +Wesley +Alfred +Alvin +Brett +Chad +Jay +Jesse +Jose +Leroy +Maurice +Randall +Ricky +Travis +Brandon +Christian +Gene +Glen +Jerome +Jimmy +Joel +Joshua +Norman +Roy +Warren +Alexander +Allen +Antonio +Bradley +Calvin +Clinton +Dale +Danny +Darrell +Duane +Howard +Lee +Melvin +Nathan +Neil +Philip +Shannon +Theodore +Tony +Tyrone +Clarence +Clifford +Daryl +Ernest +Forrest +Geoffrey +Harold +Jamie +Leon +Marvin +Mike +Preston +Roland +Terrance +Willie +Michael +John +David +James +Robert +William +Brian +Christopher +Joseph +Thomas +Richard +Scott +Jeffrey +Steven +Matthew +Charles +Eric +Mark +Daniel +Kevin +Timothy +Jason +Gregory +Edward +Paul +Stephen +Ronald +Sean +Jonathan +Keith +Shawn +Anthony +Kenneth +Andrew +Donald +Wayne +George +Douglas +Aaron +Patrick +Peter +Gary +Raymond +Todd +Bryan +Adam +Walter +Carl +Craig +Frank +Vincent +Chad +Dennis +Christian +Larry +Lawrence +Samuel +Troy +Albert +Gerald +Martin +Antonio +Jerry +Marc +Bruce +Derrick +Erik +Victor +Corey +Darren +Harry +Leonard +Russell +Alan +Arthur +Benjamin +Dwayne +Jose +Rodney +Roger +Theodore +Alvin +Curtis +Derek +Ernest +Francis +Frederick +Glenn +Jack +Jeremy +Jermaine +Jesse +Leroy +Nicholas +Philip +Phillip +Ralph +Terry +Andre +Brent +Dwight +Earl +Joshua +Marcus +Marvin +Nathan +Roy +Ryan +Tyrone +Alexander +Brad +Clarence +Darryl +Duane +Henry +Joel +Kyle +Nathaniel +Neil +Norman +Roland +Stanley +Terrence +Alfred +Allen +Barry +Dean +Edwin +Eugene +Garrett +Geoffrey +Johnny +Lee +Louis +Maurice +Randall +Seth +Warren +Calvin +Chris +Cornelius +Dale +Daryl +Erick +Franklin +Harvey +Jamie +Jay +Jeffery +Jerome +Kelly +Lester +Lewis +Preston +Randy +Shane +Stuart +Travis +Wade +Willie +Michael +John +Robert +Christopher +James +David +William +Brian +Joseph +Charles +Scott +Eric +Jeffrey +Richard +Thomas +Mark +Matthew +Jason +Steven +Daniel +Anthony +Kevin +Stephen +Andrew +Keith +Shawn +Gregory +Kenneth +Donald +Jonathan +Edward +Sean +Paul +Ronald +Timothy +Craig +Douglas +George +Gary +Peter +Ryan +Benjamin +Chad +Marc +Adam +Dennis +Larry +Phillip +Shane +Bruce +Todd +Troy +Frank +Samuel +Vincent +Aaron +Allen +Bryan +Joshua +Patrick +Carl +Derek +Jeremy +Jesse +Lawrence +Rodney +Brandon +Erik +Gerald +Louis +Raymond +Arthur +Brent +Howard +Jamie +Jerry +Philip +Tyrone +Wayne +Albert +Christian +Duane +Frederick +Harry +Victor +Barry +Brett +Darren +Derrick +Jermaine +Joel +Jon +Lee +Marcus +Marvin +Nicholas +Ralph +Roy +Russell +Shannon +Walter +Alexander +Curtis +Eugene +Glenn +Lewis +Nathan +Reginald +Theodore +Alfred +Andre +Chester +Clarence +Dale +Henry +Herbert +Jeffery +Joe +Justin +Martin +Maurice +Ray +Ricky +Willie +Alan +Billy +Corey +Darrell +Dean +Francis +Gabriel +Isaac +Ivan +Jacob +Jose +Marlon +Ramon +Randall +Roger +Ronnie +Tony +Travis +Wade +Wesley +Michael +Christopher +James +David +William +Brian +Robert +John +Jason +Thomas +Joseph +Mark +Richard +Matthew +Daniel +Eric +Scott +Kevin +Jeffrey +Charles +Anthony +Steven +Sean +Andrew +Paul +Edward +Shawn +Timothy +Kenneth +Stephen +Gregory +Donald +Ronald +Jonathan +Keith +Raymond +Douglas +Joshua +Ryan +George +Bryan +Craig +Gary +Patrick +Adam +Larry +Peter +Ralph +Benjamin +Phillip +Todd +Aaron +Jermaine +Chad +Francis +Frank +Jeremy +Shane +Albert +Henry +Marc +Samuel +Frederick +Jerry +Tyrone +Allen +Derek +Ernest +Harold +Brent +Carl +Jeffery +Nathaniel +Wayne +Andre +Brett +Christian +Jamie +Justin +Lawrence +Luis +Nicholas +Roy +Shannon +Troy +Walter +Barry +Bruce +Clarence +Curtis +Dennis +Derrick +Eugene +Gerald +Harry +Marcus +Philip +Randy +Ricky +Vincent +Alfred +Damon +Geoffrey +Howard +Jay +Jerome +Jesse +Johnny +Marvin +Maurice +Nathan +Norman +Rodney +Terry +Wesley +Brandon +Dale +Darrell +Duane +Edwin +Erik +Glenn +Harvey +Jon +Jose +Juan +Lee +Martin +Melvin +Micheal +Randall +Terrance +Tony +Victor +Michael +John +Christopher +James +David +Brian +Robert +William +Jason +Matthew +Daniel +Mark +Charles +Eric +Joseph +Kevin +Jeffrey +Thomas +Timothy +Richard +Anthony +Steven +Scott +Stephen +Sean +Edward +Andrew +Paul +Gregory +Jonathan +Shawn +Donald +Kenneth +George +Dennis +Keith +Ronald +Todd +Aaron +Benjamin +Bryan +Joshua +Adam +Ryan +Carl +Douglas +Peter +Phillip +Samuel +Gary +Jeremy +Harry +Patrick +Troy +Alexander +Damon +Jermaine +Louis +Raymond +Chad +Craig +Shane +Andre +Erik +Howard +Larry +Marvin +Theodore +Wayne +Dwayne +Henry +Jamie +Jerry +Justin +Lawrence +Philip +Russell +Shannon +Albert +Dale +Frank +Ian +Jose +Martin +Vincent +Bruce +Cameron +Christian +Clarence +Francis +Jay +Joel +Marc +Preston +Travis +Allen +Barry +Corey +Darius +Derek +Earl +Jacob +Jeffery +Leon +Leonard +Nicholas +Tyrone +Victor +Walter +Wesley +Brent +Brett +Curtis +Ernest +Ralph +Terrence +Terry +Alan +Alfred +Arthur +Brandon +Darrell +Derrick +Drew +Dwight +Edwin +Franklin +Geoffrey +Glenn +Jesse +Johnny +Jon +Leroy +Luis +Marcus +Nakia +Randall +Reginald +Roy +Seth +Shaun +Michael +Christopher +James +David +Robert +John +William +Brian +Jason +Matthew +Joseph +Daniel +Mark +Eric +Thomas +Kevin +Richard +Jeffrey +Charles +Anthony +Andrew +Timothy +Gregory +Scott +Shawn +Edward +Ronald +Steven +Donald +Joshua +Benjamin +Jonathan +Kenneth +Paul +Stephen +Gary +Keith +Aaron +Patrick +Ryan +Todd +George +Bryan +Jeremy +Frank +Larry +Nathan +Sean +Jamie +Raymond +Chad +Craig +Dennis +Peter +Samuel +Wayne +Douglas +Jerry +Adam +Jerome +Arthur +Brandon +Roger +Walter +Andre +Bruce +Carl +Dwayne +Lawrence +Philip +Rodney +Shane +Albert +Allen +Brett +Damon +Frederick +Harold +Ian +Nicholas +Randy +Christian +Corey +Edwin +Gerald +Harry +Jesse +Justin +Maurice +Alexander +Erik +Ernest +Johnny +Leonard +Marc +Neil +Russell +Stanley +Barry +Bradley +Brent +Clifford +Derek +Eugene +Francis +Franklin +Jacob +Jermaine +Jose +Lee +Micheal +Victor +Vincent +Alfred +Bernard +Billy +Carlos +Carlton +Clifton +Dion +Duane +Geoffrey +Gordon +Henry +Jackie +Jay +Kurt +Louis +Nathaniel +Neal +Phillip +Ronnie +Trevor +Troy +Wade +Michael +Christopher +John +David +Jason +James +Robert +Brian +William +Matthew +Daniel +Mark +Kevin +Thomas +Joseph +Charles +Richard +Eric +Jeffrey +Anthony +Stephen +Andrew +Steven +Scott +Timothy +Shawn +Ryan +Gregory +Paul +Joshua +Jonathan +Kenneth +Aaron +Bryan +Edward +Keith +Ronald +Jeremy +Sean +Benjamin +George +Samuel +Adam +Donald +Gary +Chad +Raymond +Peter +Craig +Nicholas +Philip +Nathan +Shane +Patrick +Todd +Douglas +Frederick +Frank +Henry +Larry +Martin +Andre +Damon +Dwayne +Francis +Justin +Louis +Travis +Vincent +Brad +Dennis +Jamie +Juan +Roger +Terry +Brandon +Erik +Ernest +Harold +Jeffery +Joel +Kyle +Russell +Wayne +Alexander +Bradley +Brett +Bruce +Carlton +Clifford +Jerry +Jesse +Johnny +Jose +Lance +Lawrence +Lee +Randall +Walter +Zachary +Albert +Arthur +Christian +Darnell +Eugene +Geoffrey +Glenn +Jermaine +Kristopher +Nathaniel +Seth +Troy +Allen +Antonio +Antwine +Arnold +Brent +Carl +Cory +Curtis +Danny +Darren +Derrick +Edwin +Harry +Harvey +Ian +Isaac +Jacob +Jerome +Luke +Marvin +Norman +Rodney +Theodore +Tony +Michael +Jason +John +Christopher +Robert +James +David +Brian +Matthew +William +Joseph +Charles +Daniel +Jeffrey +Kevin +Thomas +Timothy +Richard +Eric +Andrew +Mark +Ryan +Steven +Jonathan +Joshua +Shawn +Gregory +Kenneth +Stephen +Paul +Jeremy +Aaron +Anthony +George +Scott +Adam +Bryan +Ronald +Edward +Donald +Keith +Peter +Benjamin +Craig +Samuel +Sean +Douglas +Todd +Chad +Frank +Justin +Nathan +Phillip +Gary +Raymond +Walter +Francis +Philip +Troy +Brandon +Dwayne +Larry +Lawrence +Nicholas +Terry +Wesley +Bradley +Henry +Patrick +Allen +Brad +Brent +Bruce +Clifford +Corey +Damon +Erik +Jose +Alan +Andre +Cory +Dennis +Duane +Edwin +Jamie +Jermaine +Jesse +Juan +Marc +Shane +Wayne +Antonio +Carl +Carlos +Christian +Devon +Frederick +Howard +Jacob +Jeremiah +Jerry +Leon +Rodney +Shaun +Warren +Alexander +Barry +Derrick +Dwight +Ernest +Jared +Joel +Marcus +Micheal +Nathaniel +Ricky +Roger +Shannon +Travis +Adrian +Alex +Arnold +Damian +Darnell +Darren +Darryl +Dean +Geoffrey +Kurt +Lamar +Luke +Norman +Russell +Terrance +Tyler +Tyrone +Vincent +Michael +Christopher +John +Robert +James +David +Matthew +Jason +Brian +William +Joseph +Thomas +Kevin +Jeffrey +Daniel +Andrew +Anthony +Eric +Steven +Timothy +Richard +Charles +Nicholas +Stephen +Paul +Mark +Jeremy +Adam +Joshua +Ronald +Scott +George +Ryan +Sean +Shawn +Gregory +Edward +Jonathan +Benjamin +Donald +Keith +Kenneth +Aaron +Patrick +Peter +Phillip +Craig +Douglas +Francis +Gary +Justin +Larry +Jesse +Nathan +Bryan +Chad +Jermaine +Kyle +Samuel +Brandon +Derek +Alexander +Raymond +Shaun +Wayne +Dennis +Frank +Marcus +Todd +Andre +Christian +Clarence +Derrick +Harry +Lawrence +Louis +Allen +Brett +Corey +Ernest +Franklin +Ian +Jeffery +Joel +Luis +Philip +Brent +Carl +Jerome +Jerry +Martin +Nathaniel +Roland +Seth +Shane +Walter +Zachary +Arthur +Barry +Billy +Bradley +Bruce +Curtis +Henry +Jay +Jon +Juan +Luke +Tyrone +Vincent +Antonio +Bernard +Damon +Danny +Erik +Frederick +Harold +Jamie +Johnny +Lee +Shannon +Travis +Albert +Antoine +Brendan +Cameron +Dale +Duane +Dwayne +Eugene +Jack +Jamar +Jared +Leon +Leonard +Marc +Maurice +Nelson +Norman +Ralph +Reginald +Roger +Ronnie +Roy +Russell +Terrence +Theodore +Victor +Michael +James +Robert +Christopher +David +John +Jason +William +Matthew +Brian +Joseph +Daniel +Andrew +Jeffrey +Kevin +Charles +Joshua +Thomas +Mark +Eric +Richard +Steven +Nicholas +Ryan +Timothy +Anthony +Jonathan +Scott +Stephen +Adam +Paul +Justin +Aaron +Patrick +Gregory +Jeremy +Kenneth +Bryan +George +Donald +Shawn +Keith +Sean +Gary +Jesse +Benjamin +Brandon +Edward +Ronald +Wayne +Larry +Phillip +Samuel +Bruce +Raymond +Shaun +Chad +Jose +Travis +Erik +Christian +Curtis +Dennis +Nathan +Peter +Philip +Walter +Jerry +Jon +Lawrence +Ralph +Todd +Zachary +Corey +Ian +Kyle +Micheal +Troy +Tyrone +Vincent +Alexander +Antonio +Dean +Douglas +Francis +Frank +Jacob +Lamar +Louis +Luis +Marcus +Maurice +Nathaniel +Russell +Albert +Arthur +Carl +Derek +Derrick +Kristopher +Lee +Roy +Barry +Brent +Craig +Damien +Dwayne +Ernest +Jamie +Joel +Martin +Shane +Alan +Angel +Billy +Brad +Bradley +Brett +Casey +Devin +Frederick +Geoffrey +Glenn +Harry +Jayson +Leonard +Lucas +Marc +Seth +Andre +Antoine +Calvin +Carlos +Cory +Danny +Edwin +Evan +Franklin +Gerald +Henry +Howard +Jeremiah +Jimmy +Jordan +Karl +Neil +Randy +Roger +Terence +Tyler +Willis +Michael +Jason +John +James +Robert +Christopher +William +Matthew +David +Brian +Joseph +Daniel +Kevin +Andrew +Jeffrey +Anthony +Joshua +Timothy +Eric +Richard +Thomas +Ryan +Jonathan +Justin +Charles +Mark +Steven +Patrick +Nicholas +Paul +Stephen +Jeremy +Kenneth +Adam +Scott +Aaron +Brandon +George +Jesse +Shawn +Bryan +Donald +Gregory +Sean +Benjamin +Keith +Ronald +Chad +Peter +Douglas +Edward +Shaun +Jamie +Raymond +Derrick +Gary +Nathan +Andre +Bradley +Bruce +Derek +Dwayne +Erik +Frank +Jermaine +Larry +Phillip +Wayne +Alexander +Curtis +Dennis +Frederick +Lawrence +Samuel +Travis +Carl +Eugene +Jacob +Jeremiah +Jose +Wesley +Christian +Corey +Craig +Dale +Dustin +Ian +Joel +Russell +Vincent +Walter +Arthur +Cory +Francis +Jared +Jeffery +Jerry +Louis +Marcus +Philip +Ralph +Alan +Antoine +Brent +Brett +Darren +Edwin +Ernest +Harry +Jon +Lucas +Marvin +Randy +Theodore +Alfred +Brad +Casey +Dominick +Earl +Franklin +Gerald +Harold +Kyle +Lamar +Mario +Nicolas +Todd +Troy +Vernon +Zachary +Bernard +Carlos +Damien +Darnell +Glenn +Harvey +Henry +Jay +Joe +Lee +Luke +Maurice +Ricky +Roger +Shane +Tony +Tyrone +Victor +Michael +James +Christopher +Matthew +John +Jason +David +Robert +William +Brian +Joseph +Daniel +Kevin +Ryan +Thomas +Joshua +Jonathan +Andrew +Eric +Mark +Brandon +Richard +Justin +Charles +Jeffrey +Anthony +Stephen +Steven +Nicholas +Aaron +Timothy +Adam +Jeremy +Sean +Shawn +Gregory +Paul +Scott +Keith +Edward +Jesse +Kenneth +Donald +Patrick +Gary +Benjamin +Bryan +George +Samuel +Brett +Larry +Vincent +Andre +Douglas +Peter +Philip +Kyle +Ronald +Todd +Troy +Carl +Walter +Dennis +Dwayne +Jamie +Nathan +Albert +Ian +Marcus +Wayne +Frank +Jacob +Jose +Lawrence +Raymond +Alan +Brent +Curtis +Derek +Derrick +Ernest +Jared +Jerome +Phillip +Travis +Allen +Antonio +Bradley +Bruce +Chad +Craig +Earl +Edwin +Erik +Harry +Jay +Nathaniel +Zachary +Adrian +Brad +Cameron +Corey +Henry +Jack +Jeffery +Jermaine +Micheal +Shaun +Terrance +Wesley +Alexander +Casey +Clarence +Cory +Dale +Dustin +Eugene +Gerald +Howard +Joel +Neil +Randy +Ronnie +Shane +Tyrone +Damien +Dana +Danny +Darrell +Darryl +Elijah +Francis +Gabriel +Jamar +Jeremiah +Jordan +Lloyd +Louis +Luke +Marvin +Roger +Russell +Seth +Terry +Tony +Tyler +Michael +Christopher +Robert +James +John +Matthew +David +Jason +Joseph +William +Andrew +Brian +Daniel +Mark +Richard +Joshua +Justin +Kevin +Eric +Ryan +Thomas +Jonathan +Jeffrey +Timothy +Anthony +Charles +Nicholas +Stephen +Brandon +Steven +Sean +Adam +Gregory +Scott +Patrick +Edward +Kenneth +Keith +Paul +Donald +Bryan +Jeremy +Kyle +Shawn +Nathan +Ronald +Aaron +Benjamin +Douglas +Jesse +Jacob +Philip +Travis +Gary +Raymond +Alexander +Vincent +Ian +Larry +Peter +Zachary +George +Marcus +Shaun +Derrick +Frank +Harry +Allen +Chad +Corey +Dennis +Derek +Jermaine +Jerome +Russell +Samuel +Theodore +Brent +Dustin +Lawrence +Wayne +Arthur +Bruce +Dwayne +Marc +Maurice +Phillip +Randy +Shane +Tyrone +Andre +Brad +Bradley +Erik +Gerald +Jared +Jeremiah +Jose +Lamar +Lewis +Billy +Blake +Brett +Christian +Curtis +Devon +Francis +Jeffery +Jordan +Orlando +Roger +Todd +Troy +Victor +Carl +Craig +Dale +Darius +Earl +Evan +Gabriel +Glenn +Jon +Julian +Nathaniel +Ricky +Tony +Walter +Wesley +Albert +Barry +Cory +Damien +Darrell +Dominic +Edwin +Ernest +Eugene +Geoffrey +Glen +Jamie +Jay +Leonard +Luis +Mathew +Micah +Micheal +Noah +Omar +Ramon +Michael +Christopher +Matthew +Robert +David +John +James +William +Brian +Joseph +Jason +Daniel +Joshua +Kevin +Justin +Andrew +Jonathan +Jeffrey +Ryan +Steven +Thomas +Brandon +Richard +Timothy +Mark +Eric +Anthony +Adam +Charles +Sean +Stephen +Aaron +Kyle +Gregory +Scott +Nicholas +Patrick +Shawn +Benjamin +Paul +Kenneth +Donald +Jeremy +Bryan +Samuel +Keith +Travis +Zachary +George +Ian +Bradley +Jacob +Nathan +Ronald +Vincent +Carl +Edward +Harry +Alexander +Curtis +Jared +Philip +Raymond +Douglas +Gary +Antonio +Jordan +Brett +Dustin +Jesse +Andre +Evan +Corey +Frank +Jermaine +Larry +Lawrence +Nathaniel +Peter +Shannon +Shaun +Tyler +Wayne +Albert +Bruce +Chad +Craig +Dennis +Derek +Earl +Ernest +Francis +Jeffery +Maurice +Randall +Russell +Shane +Troy +Tyrone +Antoine +Brent +Clayton +Lamar +Marcus +Wesley +Allen +Arthur +Blake +Bradford +Darnell +Derrick +Devin +Dominic +Gerald +Glenn +Henry +Jamie +Joel +Jose +Martin +Marvin +Phillip +Rodney +Ross +Trevor +Victor +Walter +Brad +Branden +Chase +Clarence +Clifton +Dwayne +Edwin +Eugene +Frederick +Jack +Jay +Julius +Lance +Lucas +Luke +Randy +Reginald +Ricky +Roger +Roland +Roy +Michael +Matthew +Christopher +John +David +Joshua +Robert +William +James +Joseph +Andrew +Brian +Daniel +Jason +Eric +Ryan +Anthony +Richard +Charles +Jonathan +Justin +Kevin +Thomas +Adam +Brandon +Jeffrey +Mark +Timothy +Nicholas +Sean +Patrick +Steven +Stephen +Paul +Gregory +Bryan +Zachary +Shawn +Benjamin +Kenneth +Jeremy +Aaron +Scott +Kyle +Gary +Keith +Samuel +Dustin +George +Nathan +Philip +Travis +Ronald +Donald +Peter +Tyler +Jacob +Raymond +Bruce +Chad +Edward +Ian +Jesse +Marcus +Andre +Erik +Vincent +Alan +Alexander +Craig +Douglas +Evan +Franklin +Jordan +Tyrone +Bradley +Brett +Derek +Frank +Phillip +Ross +Trevor +Allen +Clifton +Cory +Jose +Louis +Russell +Wayne +Antonio +Brent +Carl +Carlos +Curtis +Derrick +Drew +Jamar +Jerry +Lamar +Larry +Maurice +Quinton +Todd +Troy +Walter +Blake +Corey +Dale +Danny +Ernest +Francis +Gerald +Henry +Jared +Lee +Leonard +Lewis +Nathaniel +Omar +Roger +Wesley +Albert +Alfred +Cameron +Casey +Chase +Christian +Darius +Darnell +Dennis +Devin +Dwayne +Harold +Ivan +Johnathan +Johnny +Karl +Lawrence +Luke +Marc +Norman +Seth +Shane +Shannon +Theodore +Victor +Michael +Matthew +Christopher +James +David +John +Robert +Joseph +William +Andrew +Joshua +Ryan +Daniel +Brian +Jason +Anthony +Brandon +Thomas +Eric +Kevin +Justin +Steven +Timothy +Jonathan +Mark +Kyle +Stephen +Richard +Jeffrey +Sean +Nicholas +Charles +Adam +Benjamin +Gregory +Patrick +Aaron +Zachary +Paul +Jeremy +Scott +Shawn +Alexander +Bryan +Edward +Kenneth +Nathan +Raymond +Donald +Jesse +Keith +Douglas +Gary +Marcus +Samuel +Chad +George +Nathaniel +Craig +Dennis +Peter +Phillip +Tyler +Dustin +Vincent +Brett +Wayne +Allen +Jared +Larry +Brad +Cory +Derek +Erik +Ian +Jacob +Marc +Todd +Travis +Bradley +Brent +Bruce +Darren +Evan +Francis +Jeremiah +Louis +Russell +Shane +Walter +Andre +Corey +Frank +Harry +Lamar +Tyrell +Tyrone +Victor +Carl +Curtis +Devin +Devon +Dominick +Jeffery +Jermaine +Joel +Jordan +Lawrence +Lee +Philip +Ronald +Tony +Trevor +Wesley +Alan +Antonio +Branden +Brendan +Cody +Drew +Dwayne +Eugene +Franklin +Gabriel +Jerome +Luis +Randall +Stephan +Albert +Alvin +Austin +Carlos +Clarence +Colin +Darius +Darnell +Darrell +Dion +Johnathan +Luke +Martin +Ricky +Ross +Seth +Shaun +Terrance +Tristan +Vernon +Warren +Michael +Christopher +Matthew +Andrew +John +James +Ryan +Joseph +Robert +David +Joshua +Daniel +William +Brian +Kevin +Brandon +Jason +Kyle +Thomas +Richard +Anthony +Justin +Charles +Timothy +Eric +Jeffrey +Steven +Stephen +Jonathan +Sean +Nicholas +Mark +Zachary +Patrick +Gregory +Jeremy +Paul +Aaron +Benjamin +Adam +Bryan +Edward +Jordan +Alexander +Shawn +Keith +Scott +Nathan +Jacob +Dustin +Gary +Ian +Kenneth +Ronald +Douglas +Tyler +George +Jesse +Phillip +Samuel +Bradley +Donald +Raymond +Corey +Jeffery +Peter +Vincent +Brent +Andre +Darryl +Henry +Marcus +Philip +Shane +Travis +Carl +Evan +Nathaniel +Christian +Cory +Curtis +Dale +Darrell +Joel +Russell +Wayne +Alex +Antonio +Arthur +Austin +Chad +Jared +Terry +Todd +Victor +Albert +Casey +Dennis +Derek +Devin +Johnathan +Louis +Martin +Marvin +Randy +Trevor +Adrian +Alan +Allen +Antoine +Brett +Caleb +Colin +Deshawn +Edwin +Eugene +Francis +Jose +Juan +Karl +Luis +Marc +Rodney +Troy +Wesley +Brad +Bradford +Cody +Craig +Darius +Darren +Frank +Howard +Lamar +Lance +Larry +Lawrence +Lee +Marquis +Mathew +Norman +Ricky +Tyrone +Michael +Christopher +Matthew +David +James +John +Andrew +Robert +Daniel +Justin +Joshua +Ryan +William +Joseph +Jason +Thomas +Brandon +Kyle +Brian +Richard +Anthony +Charles +Eric +Kevin +Mark +Nicholas +Steven +Jeffrey +Sean +Jonathan +Timothy +Bryan +Paul +Zachary +Benjamin +Aaron +Adam +Stephen +Jeremy +Shawn +Patrick +Alexander +Gregory +Jacob +Donald +Peter +Scott +Edward +Jesse +Kenneth +Jordan +Tyler +Douglas +Philip +Phillip +Brett +Derek +Ronald +Samuel +Bradley +Dustin +Nathaniel +Corey +Frank +Nathan +George +Ian +Travis +Cory +Francis +Raymond +Shane +Vincent +Chad +Keith +Luke +Alex +Craig +Evan +Jared +Antonio +Carl +Dennis +Devon +Gary +Jamar +Jose +Marcus +Alan +Cody +Darrell +Ernest +Glenn +Jeffery +Lamar +Russell +Walter +Wayne +Wesley +Allen +Cameron +Derrick +Eugene +Jerome +Joel +Larry +Lawrence +Louis +Todd +Andre +Arthur +Bruce +Christian +Darius +Dwight +Erik +Geoffrey +Henry +Isaiah +Jay +Lee +Luis +Martin +Melvin +Rodney +Troy +Victor +Adrian +Austin +Carlos +Clifford +Curtis +Darren +Gerald +Grant +Jack +Jerry +Karl +Kristopher +Miguel +Mitchell +Ralph +Roy +Seth +Trevor +Tyrell +Tyrone +Vernon +Michael +Matthew +Christopher +John +Joshua +Andrew +David +James +Robert +Daniel +William +Justin +Joseph +Ryan +Kyle +Brian +Anthony +Nicholas +Brandon +Kevin +Thomas +Sean +Steven +Eric +Timothy +Charles +Stephen +Mark +Zachary +Jonathan +Adam +Richard +Jason +Jeffrey +Scott +Gregory +Aaron +Alexander +Benjamin +Jeremy +Kenneth +Paul +Tyler +Patrick +Bryan +Keith +Dustin +Jacob +Samuel +Vincent +Donald +Phillip +Shawn +Jesse +Corey +George +Edward +Nathan +Derek +Brett +Douglas +Travis +Cameron +Shane +Bradley +Craig +Ronald +Alex +Cody +Gary +Jordan +Randall +Carl +Erik +Jose +Marcus +Nathaniel +Peter +Philip +Andre +Brent +Dennis +Evan +Jared +Tyrone +Bruce +Christian +Colin +Devin +Francis +Frank +Joel +Raymond +Seth +Austin +Chad +Dylan +Henry +Ian +Larry +Shaun +Todd +Trevor +Alan +Arthur +Brad +Cory +Curtis +Gerald +Harry +Jeffery +Louis +Martin +Wesley +Blake +Brendan +Bryant +Dale +Darren +Emmanuel +Garrett +Luis +Mathew +Mitchell +Roger +Russell +Albert +Allen +Antoine +Antonio +Branden +Casey +Darryl +Devon +Dominic +Ernest +Franklin +Jamal +Julius +Lee +Maurice +Terrence +Theodore +Barry +Bernard +Caleb +Carlos +Damien +Darius +Darnell +Deshawn +Edwin +Glenn +Hunter +Jamar +Jon +Juan +Lamar +Leroy +Marquis +Rashad +Stanley +Terrance +Troy +Tyrell +Walter +Michael +Christopher +Matthew +Joshua +James +Andrew +David +Robert +Joseph +Ryan +John +Kevin +Daniel +William +Justin +Brandon +Thomas +Kyle +Nicholas +Anthony +Timothy +Jonathan +Brian +Steven +Zachary +Benjamin +Eric +Adam +Aaron +Jeffrey +Richard +Sean +Mark +Stephen +Patrick +Charles +Jason +Paul +Alexander +Jacob +Kenneth +Travis +Tyler +Jordan +Gregory +Bryan +Scott +Donald +Shawn +Vincent +Dustin +Jeremy +Nathan +Derek +Edward +Raymond +Samuel +Shane +Corey +Douglas +George +Peter +Chad +Jesse +Ronald +Evan +Ian +Brett +Cory +Bradley +Frank +Philip +Taylor +Brendan +Colin +Dylan +Erik +Wesley +Cody +Marcus +Russell +Troy +Wayne +Alex +Cameron +Derrick +Garrett +Jared +Phillip +Carl +Curtis +Dominique +Francis +Isaiah +Allen +Antonio +Ethan +Jamar +Jeffery +Keith +Alan +Andre +Bruce +Christian +Dale +Dennis +Gary +Harry +Logan +Marc +Trevor +Angel +Brent +Bryant +Darnell +Devon +Ernest +Jerry +Jose +Larry +Martin +Randy +Todd +Walter +Byron +Darius +Devin +Drew +Elijah +Henry +Isaac +Isiah +Lawrence +Maurice +Omar +Randall +Theodore +Victor +Adrian +Arthur +Austin +Blake +Casey +Chase +Clifford +Craig +Damian +Darrell +Darren +Darryl +Dominic +Gerald +Hakeem +Jamal +Johnathan +Kristopher +Lance +Louis +Lucas +Luis +Luke +Mathew +Miguel +Mitchell +Nathaniel +Neil +Norman +Seth +Shannon +Tyrone +Michael +Christopher +Matthew +Robert +Andrew +John +Joshua +David +Daniel +James +Ryan +William +Joseph +Kyle +Justin +Eric +Nicholas +Anthony +Zachary +Brandon +Kevin +Brian +Steven +Sean +Thomas +Jonathan +Richard +Stephen +Patrick +Charles +Jordan +Tyler +Adam +Alexander +Timothy +Mark +Aaron +Benjamin +Jeffrey +Gregory +Jason +Jacob +Donald +Kenneth +Shane +Shawn +Edward +Jeremy +Nathan +Samuel +Cody +Scott +Travis +Bryan +George +Paul +Ian +Ronald +Jose +Keith +Evan +Cory +Jesse +Dustin +Peter +Corey +Dylan +Marcus +Cameron +Craig +Vincent +Austin +Christian +Andre +Chad +Colin +Bradley +Derek +Douglas +Phillip +Carl +Dennis +Troy +Ethan +Jerry +Allen +Curtis +Darius +Erik +Garrett +Gary +Isaiah +Johnathan +Louis +Nathaniel +Raymond +Antonio +Arthur +Jeremiah +Julian +Martin +Maurice +Philip +Russell +Seth +Spencer +Tyrone +Alan +Brett +Casey +Derrick +Dominic +Dominique +Gabriel +Jeffery +Joel +Lamar +Larry +Lawrence +Randy +Taylor +Walter +Alex +Brendan +Dale +Deandre +Devin +Devon +Francis +Henry +Malcolm +Marvin +Noah +Raheem +Trevor +Victor +Wayne +Antoine +Bruce +Chase +Clayton +Connor +Damon +Frank +Geoffrey +Howard +Isaac +Jay +Jermaine +Lee +Lucas +Luis +Marquis +Ross +Vernon +Wesley +Adrian +Brent +Bryant +Caleb +Dwayne +Elijah +Ernest +Franklin +Jamil +Johnny +Kristopher +Logan +Mitchell +Rashad +Shaun +Theodore +Willis +Michael +Christopher +Matthew +Joshua +Robert +Ryan +Andrew +James +David +Nicholas +John +William +Kyle +Tyler +Daniel +Joseph +Anthony +Brandon +Justin +Eric +Thomas +Zachary +Kevin +Brian +Jonathan +Timothy +Patrick +Steven +Sean +Mark +Adam +Charles +Richard +Aaron +Benjamin +Jacob +Jeffrey +Jordan +Alexander +Stephen +Gregory +Jason +Cody +Paul +Dylan +Ian +Kenneth +Samuel +Jeremy +Jesse +Bryan +Nathan +Evan +Keith +Shane +Alex +George +Scott +Travis +Donald +Peter +Shawn +Bradley +Philip +Phillip +Austin +Cameron +Ethan +Gary +Derek +Edward +Brett +Ronald +Christian +Marcus +Vincent +Corey +Dustin +Taylor +Caleb +Chad +Craig +Erik +Gerald +Cory +Derrick +Douglas +Frank +Nathaniel +Raymond +Seth +Wesley +Blake +Dennis +Jose +Antonio +Casey +Henry +Julian +Luis +Spencer +Tevin +Trevor +Alan +Carlos +Chase +Colin +Dashawn +Francis +Jack +Larry +Luke +Troy +Unknown +Wayne +Bryant +Dakota +Devin +Devon +Dominic +Jared +Jeffery +Jonathon +Lawrence +Logan +Lucas +Manuel +Reginald +Tyree +Adrian +Angel +Brendan +Byron +Curtis +Dale +Damien +Darius +Darren +Deandre +Edwin +Elijah +Gabriel +Harry +Hunter +Isaiah +Jamal +Jeremiah +Joel +Keenan +Levi +Malcolm +Marc +Maxwell +Morgan +Ralph +Walter +Willie +Xavier +Zachery +Allen +Arthur +Colby +Dillon +Dominique +Eugene +Frederick +Garrett +Geoffrey +Hayden +Isaac +Ivan +Jamil +Javon +Jermaine +Juan +Louis +Marquis +Martin +Maurice +Nicolas +Omar +Preston +Rodney +Shaun +Terrance +Terry +Victor +Warren +Michael +Matthew +Christopher +James +Andrew +Tyler +Brandon +Joshua +John +Robert +Zachary +Ryan +William +Nicholas +Kyle +Joseph +David +Justin +Daniel +Brian +Jonathan +Thomas +Kevin +Eric +Alexander +Anthony +Jacob +Mark +Richard +Steven +Stephen +Cody +Patrick +Sean +Benjamin +Dylan +Timothy +Charles +Samuel +Aaron +Adam +Jordan +Jeffrey +Christian +Jason +Bryan +Corey +Edward +Jesse +Shane +Shawn +Taylor +Gregory +Ian +Keith +Trevor +Jeremy +Paul +Travis +Austin +Nathan +Scott +Vincent +Cameron +George +Kenneth +Bradley +Connor +Marcus +Alex +Evan +Derek +Dustin +Peter +Raymond +Wesley +Curtis +Jared +Luke +Andre +Chad +Devon +Hunter +Jose +Nathaniel +Tevin +Brendan +Brett +Ethan +Isaiah +Martin +Philip +Seth +Xavier +Alan +Donald +Douglas +Erik +Johnathan +Logan +Malcolm +Phillip +Ronald +Troy +Allen +Angel +Dakota +Devante +Devin +Dillon +Ernest +Gary +Lucas +Unknown +Victor +Brent +Carl +Colin +Cory +Craig +Dominic +Francis +Harry +Julian +Larry +Maurice +Nicolas +Shaun +Spencer +Terrance +Theodore +Tony +Zachery +Alec +Barry +Calvin +Chase +Clayton +Dalton +Dean +Deandre +Derrick +Deshawn +Frank +Frederick +Gabriel +Jamie +Marquis +Micheal +Miguel +Nolan +Walter +Wayne +Albert +Antonio +Caleb +Colby +Collin +Darin +Dennis +Drew +Dwayne +Edwin +Howard +Jack +Jake +Jamal +Javier +Jeffery +Joel +Keenan +Kristofer +Lance +Luis +Manuel +Marshall +Marvin +Randall +Reginald +Rodney +Shannon +Todd +Vernon +Michael +Matthew +Christopher +John +James +Andrew +Brandon +William +Ryan +Zachary +Tyler +Kyle +Robert +Daniel +David +Joseph +Nicholas +Joshua +Anthony +Kevin +Jacob +Justin +Alexander +Eric +Thomas +Benjamin +Jonathan +Jordan +Brian +Sean +Aaron +Cody +Stephen +Steven +Samuel +Mark +Timothy +Adam +Charles +Dylan +Patrick +Shawn +Evan +Richard +Austin +Shane +Jeremy +Jason +Jeffrey +Jesse +Paul +Alex +Ian +Gregory +Nathan +Donald +Brett +Christian +Connor +Kenneth +Edward +Bradley +Scott +Trevor +George +Peter +Travis +Vincent +Bryan +Colin +Cory +Keith +Luke +Taylor +Corey +Dustin +Marcus +Nathaniel +Jared +Jose +Max +Philip +Shaquille +Andre +Chad +Chase +Ronald +Cameron +Garrett +Hunter +Lucas +Brendan +Collin +Douglas +Drew +Isaiah +Juan +Logan +Troy +Xavier +Zachery +Alan +Caleb +Dakota +Derek +Devin +Devon +Elijah +Frank +Joel +Julian +Larry +Unknown +Antonio +Bryce +Casey +Curtis +Daquan +Dennis +Dominique +Erik +Ethan +Gary +Harry +Jay +Lance +Luis +Martin +Omar +Seth +Alvin +Avery +Colby +Colton +Dalton +Darnell +Darrell +Darren +Derrick +Gabriel +Johnathan +Louis +Malik +Miguel +Phillip +Raymond +Russell +Sebastian +Tanner +Wesley +Brent +Conor +Craig +Dale +Dillon +Gordon +Jamal +Jarrett +Johnny +Kristopher +Lee +Lewis +Mason +Micah +Miles +Randy +Spencer +Terrance +Tony +Tyrone +Michael +Matthew +Christopher +Tyler +James +Ryan +Joseph +William +Joshua +Brandon +John +Nicholas +Andrew +Zachary +Robert +Kyle +Jacob +David +Daniel +Alexander +Cody +Anthony +Thomas +Jordan +Justin +Eric +Samuel +Patrick +Aaron +Kevin +Richard +Austin +Dylan +Charles +Sean +Stephen +Steven +Jonathan +Benjamin +Adam +Brian +Christian +Timothy +Gregory +Jeremy +Mark +Shane +Marcus +Corey +Hunter +Kenneth +Nathan +Connor +Jason +Scott +Jeffrey +Jesse +Taylor +Travis +Ronald +Brett +Cory +Derek +Donald +Evan +Keith +Bradley +Chad +Devon +Ian +Nathaniel +Andre +Cameron +Douglas +Paul +Shawn +Alex +Devin +Edward +Ethan +Logan +Luke +Trevor +Vincent +Caleb +Chase +Jose +Seth +Shaquille +Brendan +Colin +Collin +Darren +Dustin +Gary +George +Phillip +Raymond +Todd +Unknown +Wayne +Alec +Bryan +Dennis +Lucas +Mitchell +Troy +Xavier +Carlos +Dakota +Dalton +Dominique +Erik +Francis +Keenan +Nicolas +Peter +Spencer +Walter +Clayton +Derrick +Garrett +Jack +Jake +Javon +Jeremiah +Lawrence +Louis +Marc +Philip +Zachery +Allen +Angelo +Antonio +Brendon +Colton +Dallas +Damian +Gabriel +Harrison +Isaac +Jaleel +Jalen +Jared +Jermaine +Jonathon +Juan +Larry +Liam +Morgan +Myles +Randall +Tanner +Wyatt +Arthur +Branden +Bryant +Calvin +Casey +Cole +Conner +Curtis +Danny +Dillon +Dominic +Drew +Frank +Henry +Isaiah +Joel +Johnathan +Mackenzie +Mathew +Miguel +Noah +Nolan +Randy +Roger +Michael +Matthew +Tyler +Brandon +John +Zachary +Andrew +Kyle +James +Ryan +Nicholas +Jacob +Christopher +Joshua +William +Daniel +David +Joseph +Anthony +Alexander +Justin +Robert +Austin +Thomas +Jonathan +Cody +Sean +Benjamin +Kevin +Eric +Dylan +Jordan +Mark +Aaron +Brian +Charles +Samuel +Steven +Patrick +Adam +Timothy +Connor +Ian +Jeffrey +Richard +Stephen +Hunter +Nathan +Christian +Evan +Jason +Ethan +Logan +Jeremy +Kenneth +Bryan +Vincent +Bradley +Isaiah +Paul +Shawn +Alex +Casey +Colin +Corey +Dakota +Ronald +Seth +Trevor +Brendan +Cory +Edward +Elijah +Jesse +Luke +Malik +Peter +Travis +Devon +Donald +Dustin +Jared +Joel +Lucas +Nathaniel +Troy +Unknown +Dalton +Dillon +Caleb +Cameron +Chad +Cole +Devin +Dominic +Frank +Gregory +Liam +Luis +Shane +Antonio +Dwayne +Erik +Garrett +Isaac +Jack +Keith +Wesley +Alan +Brendon +Brent +Derrick +George +Henry +Isiah +Jesus +Lawrence +Marcus +Taylor +Tristan +Alec +Arthur +Brett +Carlos +Chandler +Darren +Dennis +Francis +Gabriel +Grant +Johnathan +Jose +Juan +Malcolm +Marquis +Mason +Noah +Philip +Raymond +Rodney +Tyrone +Wyatt +Avery +Calvin +Chase +Colby +Collin +Dominick +Jackson +Javon +Miguel +Phillip +Raekwon +Scott +Victor +Adrian +Andre +Angel +Angelo +Blake +Brady +Bret +Bryce +Conor +Craig +Curtis +Dallas +Damon +Darius +Derek +Douglas +Ernest +Frederick +Gavin +Jeremiah +Jorge +Melvin +Myles +Nicolas +Spencer +Tanner +Theodore +Michael +Matthew +Christopher +Tyler +Ryan +Zachary +Brandon +John +Joshua +Nicholas +James +William +Jacob +Thomas +Andrew +Daniel +Joseph +Anthony +Kyle +Robert +David +Justin +Alexander +Austin +Jonathan +Eric +Kevin +Benjamin +Patrick +Dylan +Jordan +Samuel +Sean +Cody +Mark +Shane +Brian +Christian +Charles +Logan +Stephen +Timothy +Richard +Steven +Jason +Adam +Connor +Nathan +Jeffrey +Alex +Cameron +Gregory +Jared +Luke +Aaron +Edward +Ian +Ethan +Jeremy +Malik +Peter +Bryan +Shawn +Travis +Colin +Devon +Elijah +Marcus +Seth +Vincent +Nathaniel +Evan +Kenneth +Brett +Corey +Cory +Derek +Jack +Jesse +Juan +Paul +Ronald +Trevor +Collin +Hunter +Jose +Liam +Scott +Bradley +Chad +Cole +Dillon +Donald +Garrett +Adrian +Chase +Grant +Keith +Noah +Caleb +Daquan +Darius +Derrick +Dustin +Isaiah +Jake +Omar +Alec +Antonio +Brendan +Dominic +George +Henry +Lucas +Mitchell +Philip +Angel +Conor +Dennis +Drew +Erik +Frank +Gabriel +Julian +Luis +Tanner +Tristan +Troy +Wyatt +Arthur +Craig +Devin +Douglas +Frederick +Javon +Joel +Johnny +Martin +Mason +Mathew +Spencer +Wayne +Bruce +Bryce +Carl +Carlos +Chandler +Colby +Dalton +Donte +Edwin +Franklin +Gary +Gerald +Jamie +Jamier +Josiah +Kristopher +Lamar +Marvin +Maurice +Miles +Nikolas +Owen +Phillip +Raymond +Ricardo +Shaquille +Taylor +Victor +Zackary +Michael +Matthew +Tyler +Joshua +Christopher +Nicholas +Andrew +Jacob +Zachary +Ryan +John +James +Brandon +Daniel +Austin +Anthony +David +Robert +Joseph +Kyle +William +Justin +Thomas +Jordan +Samuel +Dylan +Kevin +Alexander +Jonathan +Brian +Christian +Benjamin +Isaiah +Patrick +Aaron +Connor +Nathan +Sean +Timothy +Adam +Eric +Ian +Richard +Steven +Cody +Jason +Logan +Jeremy +Jeffrey +Mark +Cameron +Stephen +Charles +Elijah +Evan +Jared +Hunter +Luke +Dominic +George +Cole +Corey +Dustin +Ethan +Trevor +Brendan +Paul +Caleb +Seth +Shane +Shawn +Julian +Nathaniel +Peter +Alex +Edward +Gregory +Noah +Bradley +Brett +Chase +Colin +Derek +Devin +Gabriel +Kenneth +Luis +Wyatt +Liam +Marcus +Troy +Vincent +Alec +Bryan +Calvin +Dakota +Devon +Juan +Scott +Travis +Colton +Daquan +Garrett +Jack +Jose +Malik +Wesley +Xavier +Andre +Brady +Francis +Grant +Jake +Jesse +Lucas +Maxwell +Russell +Tanner +Amir +Carlos +Colby +Cory +Dalton +Deandre +Edgar +Gavin +Henry +Jonah +Josiah +Louis +Mason +Owen +Phillip +Shakur +Tristan +Adrian +Alejandro +Antonio +Conner +Conor +Dante +Derrick +Dillon +Erik +Jackson +Jerry +Malachi +Martin +Myles +Quinn +Riley +Spencer +Victor +Aidan +Blake +Bryant +Carl +Chandler +Curtis +Darius +Davon +Demetrius +Douglas +Frank +Griffin +Harrison +Isaac +Isiah +Jeremiah +Marquise +Max +Mitchell +Nelson +Nickolas +Philip +Randy +Ross +Shamar +Taylor +Zachery +Zackary +Zane +Michael +Tyler +Matthew +Joshua +Christopher +Ryan +William +Nicholas +James +Jacob +Brandon +Zachary +John +Justin +Joseph +Robert +Andrew +Kyle +Daniel +David +Jordan +Alexander +Anthony +Dylan +Austin +Sean +Kevin +Thomas +Jonathan +Samuel +Benjamin +Eric +Charles +Nathan +Noah +Hunter +Cody +Brian +Mark +Steven +Aaron +Connor +Richard +Christian +Timothy +Jason +Patrick +Shane +Ethan +Evan +Shawn +Kenneth +Nathaniel +Chase +Isaiah +Jared +Adam +Brendan +Elijah +Jack +Bryan +Caleb +Colin +Jeremy +Logan +Alex +Cameron +Jose +Jeffrey +Luis +Luke +Stephen +Antonio +Donald +Edward +Ian +Scott +Owen +Gavin +Trevor +Brady +Dalton +Marcus +Peter +Cole +Garrett +Liam +Vincent +Chad +Dominic +Gabriel +Gregory +Jake +Jesse +Paul +Seth +Tanner +Andre +Bradley +Brett +Isaac +Jeremiah +Raymond +Ronald +Xavier +Bryce +Calvin +Dakota +Derek +Dillon +Dustin +Gary +Keith +Khalil +Malik +Mason +Miguel +Spencer +Travis +Aidan +Angel +Corey +Darius +Devin +Devon +George +Grant +Javon +Larry +Mitchell +Parker +Phillip +Tristan +Victor +Wyatt +Adrian +Bailey +Brennan +Brock +Carlos +Darren +Demetrius +Harrison +Hayden +Jermaine +Joel +Jorge +Julian +Kristopher +Marquise +Nicolas +Omar +Riley +Blake +Brenden +Brent +Carl +Curtis +Damon +Douglas +Francis +Frederick +Gage +Isiah +Jamar +Jayson +Josiah +Marquis +Nolan +Preston +Trent +Trevon +Zachery +Michael +Joshua +Ryan +Matthew +Andrew +Nicholas +Tyler +Jacob +Zachary +John +William +James +David +Daniel +Christopher +Kyle +Anthony +Alexander +Brandon +Dylan +Thomas +Joseph +Robert +Jordan +Justin +Austin +Noah +Jonathan +Kevin +Nathan +Benjamin +Jason +Sean +Eric +Samuel +Ethan +Brian +Hunter +Patrick +Connor +Isaiah +Logan +Aaron +Charles +Christian +Cameron +Luke +Steven +Timothy +Chase +Gabriel +Cody +Trevor +Adam +Cole +Richard +Stephen +Jared +Jeffrey +Bryce +Evan +Garrett +Juan +Shane +Jesse +Jose +Mark +Seth +Alex +Devon +Elijah +Bryan +Colin +Nathaniel +Shawn +Caleb +Corey +George +Ian +Kenneth +Travis +Tristan +Jack +Jake +Brendan +Carlos +Collin +Dalton +Edward +Edwin +Gregory +Jeremy +Julian +Luis +Owen +Amir +Brent +Cory +Gavin +Henry +Liam +Lucas +Paul +Vincent +Aidan +Blake +Dominic +Grant +Isaac +Jaden +Marcus +Mason +Maxwell +Phillip +Scott +Antonio +Bradley +Dante +Derek +Donovan +Douglas +Drew +Erik +Jaquan +Jarrett +Jeremiah +Keith +Malik +Ronald +Zion +Alexis +Brett +Colby +Curtis +Dakota +Emmanuel +Harrison +Javon +Victor +Wesley +Adrian +Bruce +Carter +Darren +Desmond +Devin +Donald +Francis +Jalen +Javier +Jayson +Johnathan +Maurice +Mitchell +Nasir +Philip +Raymond +Troy +Tyree +Wayne +Alec +Andre +Angelo +Brendon +Carson +Casey +Colton +Darius +Dean +Dillon +Dustin +Jamal +Joel +Johnny +Jonathon +Jorge +Khalil +Kristopher +Larry +Marc +Mateo +Myles +Nicolas +Nolan +Omar +Peter +Randy +Sebastian +Spencer +Todd +Tymere +Tyrese +Michael +Matthew +Jacob +Joshua +Nicholas +Christopher +William +John +Ryan +Joseph +Andrew +Tyler +Kyle +Benjamin +Brandon +Justin +David +Robert +Daniel +James +Zachary +Anthony +Alexander +Thomas +Dylan +Jonathan +Noah +Samuel +Christian +Nathan +Jordan +Kevin +Luke +Ethan +Cameron +Brian +Steven +Elijah +Eric +Patrick +Sean +Timothy +Adam +Gabriel +Hunter +Austin +Charles +Evan +Jason +Colin +Isaiah +Connor +Jared +Aaron +Jack +Richard +Jeremy +Mark +Cole +Garrett +Caleb +Luis +Seth +Jeffrey +Chase +Jose +Logan +Shane +Brendan +Nathaniel +Gavin +Bradley +Kenneth +Liam +Paul +Shawn +Vincent +Collin +Erik +Mason +Trevor +Xavier +Alex +Andre +Cody +Corey +Dominic +Jackson +Jeremiah +Julian +Wyatt +Bryan +Edward +Edwin +Gregory +Jake +Peter +Stephen +Victor +Antonio +Dalton +Hayden +Ian +Isaac +Maxwell +Owen +Riley +Scott +Carson +Devon +Jakob +Jalen +Joel +Nicolas +Wesley +Aidan +Avery +Brett +Bryce +Darius +Eduardo +Francis +George +Henry +Larry +Lucas +Miguel +Mitchell +Tanner +Zion +Brenden +Clayton +Conner +Donald +Dustin +Ivan +Jarrett +Josiah +Lawrence +Nolan +Parker +Russell +Spencer +Adrian +Alec +Blake +Carter +Chance +Conor +Cristian +Curtis +Damon +Dawson +Gary +Javon +Jesse +Jesus +Jorge +Keith +Malik +Micah +Travis +Trent +Trey +Troy +Alexis +Angel +Brady +Cade +Chad +Colby +Dakota +Damien +Dean +Derek +Deshawn +Devin +Dillon +Donovan +Dwayne +Eli +Grant +Harrison +Jaden +Jamir +Jeffery +Keegan +Kieran +Manuel +Marcus +Martin +Mekhi +Pedro +Ronald +Theodore +Zackary +Michael +Jacob +Matthew +Zachary +Ryan +Christopher +James +Joshua +Nicholas +John +Andrew +Joseph +Tyler +Anthony +William +Thomas +Daniel +Justin +Nathan +David +Dylan +Benjamin +Brandon +Alexander +Robert +Kyle +Logan +Cameron +Noah +Ethan +Christian +Samuel +Eric +Hunter +Luke +Austin +Jonathan +Sean +Elijah +Connor +Jason +Jordan +Kevin +Brian +Isaiah +Jared +Colin +Steven +Aaron +Gavin +Ian +Adam +Evan +Gabriel +Mason +Nathaniel +Patrick +Timothy +Aidan +Charles +Paul +Richard +Seth +Caleb +Dominic +Kenneth +Alex +Jose +Antonio +Devin +Jack +Liam +Luis +Stephen +Trevor +Brendan +Colby +Garrett +Jaden +Julian +Mark +Peter +Cody +Edward +Jackson +Jeffrey +Jeremiah +Jeremy +Juan +Shane +Bryan +Malik +Marcus +Shawn +Carlos +Chase +Cole +Dakota +George +Harrison +Vincent +Carter +Emmanuel +Lucas +Max +Owen +Scott +Wyatt +Angel +Dante +Gregory +Hayden +Isaac +Jake +Keith +Nicolas +Ronald +Spencer +Xavier +Alejandro +Alexis +Blake +Bradley +Bryce +Collin +Jakob +Javon +Marquis +Maxwell +Raymond +Travis +Tristan +Troy +Amir +Axel +Brett +Corey +Cristian +Dalton +Derek +Jayden +Johnathan +Josiah +Kaleb +Miguel +Nickolas +Omar +Oscar +Philip +Adrian +Carl +Cesar +Conor +Deandre +Derrick +Douglas +Gage +Giovanni +Grant +Griffin +Henry +Ivan +Jesus +Kobe +Malachi +Nasir +Sebastian +Shamar +Taylor +Victor +Zion +Brady +Caden +Calvin +Damien +Dillon +Dominick +Donovan +Edwin +Frank +Hector +Jalen +Javier +Jerome +Lawrence +Melvin +Shaun +Tanner +Trey +Tyree +Wesley +Zane +Matthew +Nicholas +Michael +Jacob +John +Ryan +William +Andrew +Joshua +Joseph +Christopher +James +Anthony +Tyler +Daniel +Brandon +Justin +Jordan +Zachary +David +Benjamin +Dylan +Robert +Alexander +Logan +Ethan +Nathan +Christian +Samuel +Austin +Kyle +Thomas +Jason +Kevin +Evan +Luke +Cameron +Jonathan +Jose +Charles +Connor +Elijah +Cole +Isaiah +Sean +Jack +Mason +Noah +Aidan +Timothy +Hunter +Patrick +Brian +Caleb +Gabriel +Mark +Seth +Xavier +Eric +Gavin +Steven +Jaden +Julian +Adam +Shane +Collin +Edward +Jackson +Jared +Aaron +Chase +Edwin +Nathaniel +Alex +Juan +Kenneth +Richard +Aiden +Cody +Colin +Ian +Jeremiah +Owen +Colby +Luis +Stephen +Blake +Gregory +Jayden +Trevor +Brett +Dominic +Liam +Shawn +Amir +Andre +Angel +Bryan +Carlos +Hayden +Jake +Jeffrey +Jeremy +Nasir +Peter +Tristan +Adrian +Antonio +Bryce +Garrett +Keith +Lucas +Riley +Scott +Brendan +Devon +Erik +Frank +Ivan +Jesus +Joel +Josiah +Maxwell +Sebastian +Victor +Derek +Donald +Emmanuel +George +Isaac +Javier +Jesse +Shaun +Spencer +Trey +Wyatt +Alec +Carter +Damian +Darius +Dawson +Donovan +Jorge +Kameron +Louis +Marvin +Max +Myles +Oscar +Paul +Quincy +Ricardo +Ronald +Savion +Wesley +Alberto +Alexis +Avery +Casey +Devin +Dominick +Drew +Gage +Henry +Jakob +Jalen +Javon +Jerry +Kody +Malik +Marcus +Maurice +Micah +Miguel +Miles +Nolan +Omar +Travis +Trent +Vincent +Walter +Ashton +Brady +Brayden +Brenden +Brody +Bryant +Chad +Conner +Damon +Derrick +Douglas +Elliott +Gary +Giovanni +Griffin +Harry +Hector +Jaheim +Jaquan +Jerome +Kai +Kaleb +Landon +Manuel +Marco +Mario +Maximus +Oliver +Roberto +Terrance +Michael +Andrew +Matthew +Ryan +John +Joshua +Jacob +Christopher +Joseph +James +William +Anthony +Daniel +Zachary +Nicholas +Tyler +Alexander +Benjamin +David +Christian +Ethan +Jonathan +Dylan +Nathan +Jordan +Logan +Sean +Brandon +Robert +Thomas +Jason +Justin +Gabriel +Kevin +Samuel +Elijah +Mason +Aidan +Caleb +Charles +Hunter +Austin +Evan +Aaron +Cameron +Connor +Ian +Noah +Jack +Jackson +Jaden +Gavin +Brian +Kyle +Owen +Adam +Eric +Isaiah +Luke +Nathaniel +Timothy +Aiden +Jose +Mark +Colin +Edward +Jayden +Julian +Bryan +Dominic +Juan +Chase +Cole +Jared +Shane +Patrick +Alex +Jeremiah +Steven +Hayden +Isaac +Jeffrey +Josiah +Richard +Xavier +Alan +Antonio +Kenneth +Liam +Shawn +Luis +Carter +Seth +Henry +Jeremy +Lucas +Ronald +Vincent +Angel +Bryce +Grant +Nasir +Carlos +Carson +Colby +Devon +Peter +Stephen +Travis +Trevor +Tristan +Alejandro +Andre +Ashton +Collin +Conor +Dalton +Dante +Garrett +Giovanni +Javier +Jesse +Maxwell +Mekhi +Miguel +Riley +Amir +Blake +Brayden +Brendan +Brett +Cody +Edgar +Edwin +Elias +Gregory +Jake +Mitchell +Paul +Zane +Zion +Bradley +Chad +Corey +Dakota +Damien +Darnell +Donovan +Erik +George +Jaiden +Jalen +Jayson +Jermaine +Jesus +Johnathan +Max +Sebastian +Trent +Troy +Xander +Arthur +Ayden +Darren +Enrique +Eugene +Gerald +Jerry +Landon +Malachi +Marco +Omar +Parker +Phillip +Raymond +Wesley +Alexis +Andy +Avery +Axel +Bailey +Branden +Caden +Conner +Conrad +Dillon +Dominick +Donald +Drew +Frank +Gordon +Griffin +Gustavo +Harrison +Hector +Jamar +Joel +Jonah +Kaden +Lane +Lawrence +Leon +Marc +Marquis +Micah +Nicolas +Nolan +Preston +Skyler +Spencer +Ty +Victor +Ryan +Michael +Joshua +Matthew +Nicholas +Anthony +William +Jacob +Tyler +Joseph +Andrew +John +Christopher +Christian +Nathan +Daniel +Dylan +Zachary +Ethan +Alexander +Thomas +Benjamin +James +Robert +Logan +Luke +Kevin +David +Elijah +Jonathan +Noah +Brandon +Jayden +Connor +Evan +Jordan +Samuel +Sean +Aiden +Cameron +Aidan +Austin +Jack +Justin +Mason +Jason +Jose +Aaron +Kyle +Gavin +Caleb +Charles +Jeremiah +Owen +Gabriel +Isaiah +Adam +Eric +Brian +Colin +Chase +Cole +Timothy +Alex +Bryan +Seth +Ian +Jeremy +Julian +Liam +Richard +Wyatt +Nathaniel +Angel +Hunter +Jaden +Patrick +Vincent +Dominic +Isaac +Steven +Jackson +Alexis +Antonio +Blake +Jeffrey +Juan +Shane +Xavier +Cody +Edward +Gage +Mark +Garrett +Henry +Jared +Shawn +Alan +Andre +Brendan +Dante +Edwin +Luis +Carter +Devin +Donovan +Jake +Josiah +Kaden +Kaleb +Lucas +Nasir +Paul +Riley +Stephen +Trevor +Brett +Bryce +Donald +Grant +Hayden +Javier +Jesus +Kenneth +Malachi +Marcus +Mekhi +Nicolas +Peyton +Wesley +Amir +Ashton +Brayden +Carlos +Conner +Derek +Giovanni +Joel +Landon +Ronald +Shaun +Collin +Darius +Diego +Frank +Kanye +Lukas +Miguel +Miles +Omar +Parker +Sebastian +Travis +Tristan +Alejandro +Brenden +Caden +Carson +Clayton +Colby +Devon +Dillon +Dominick +Eduardo +Erik +Francis +George +Harrison +Jaiden +Jalen +Johnathan +Maurice +Myles +Nolan +Oscar +Peter +Philip +Zackary +Zion +Abraham +Adrian +Brady +Brennan +Camron +Colton +Dalton +Darian +Drake +Gregory +Jaime +Jamar +Jaylen +Jayson +Jerome +Kai +Khalil +Makhi +Marvin +Ricardo +Scott +Spencer +Theodore +Tyree +Victor +Michael +Matthew +Ryan +Joshua +Jacob +Anthony +Nicholas +Alexander +Andrew +William +James +John +Nathan +Joseph +Brandon +David +Daniel +Tyler +Christopher +Robert +Christian +Luke +Elijah +Ethan +Thomas +Logan +Samuel +Aiden +Sean +Zachary +Owen +Dylan +Aidan +Benjamin +Jonathan +Justin +Jason +Cameron +Connor +Gavin +Isaiah +Jayden +Kevin +Noah +Brian +Kyle +Angel +Charles +Nathaniel +Jackson +Jordan +Mason +Gabriel +Jack +Lucas +Aaron +Austin +Hunter +Chase +Caleb +Evan +Ian +Jose +Patrick +Bryan +Juan +Cole +Eric +Liam +Timothy +Cody +Dominic +Edwin +Jeremiah +Trevor +Adam +Alex +Malachi +Paul +Bryce +Carlos +Colin +Garrett +Nasir +Richard +Shane +Stephen +Joel +Kenneth +Steven +Giovanni +Isaac +Jaden +Vincent +Antonio +Edward +Nolan +Xavier +Amir +Brayden +Brendan +Jesus +Omar +Zion +Hayden +Jeremy +Jesse +Landon +Luis +Mark +Seth +Wyatt +Blake +Bradley +Brady +Carter +Collin +Devin +Diego +Dominick +Emmanuel +Jaiden +Jake +Julian +Julius +Kaden +Micah +Riley +Roman +Shawn +Ayden +Carl +Cristian +Frank +George +Gregory +Jared +Javier +Josiah +Kai +Marcus +Ronald +Scott +Avery +Braden +Dakota +Devon +Eli +Ivan +Jalen +Jude +Max +Parker +Pedro +Peter +Raymond +Travis +Tristan +Ty +Alejandro +Alexis +Alijah +Ashton +Braeden +Caden +Donald +Drew +Henry +Josue +Maxwell +Miguel +Nicolas +Preston +Shaun +Trey +Troy +Adrian +Brent +Brody +Calvin +Camren +Carson +Casey +Chandler +Cooper +Damien +Darius +Gary +Gustavo +Jace +Jakob +Jaylen +Jeffrey +Johnny +Jorge +Keith +Lance +Makhi +Mario +Maurice +Nehemiah +Philip +Quinn +Rocco +Sebastian +Stanley +Tanner +Todd +Tyree +Victor +Wesley +Ryan +Michael +Jacob +John +Matthew +Nicholas +Christopher +Joshua +Anthony +James +Ethan +Alexander +William +Logan +Andrew +Nathan +Isaiah +Christian +Joseph +Cameron +Jonathan +Noah +Aiden +Elijah +Samuel +Tyler +Thomas +Daniel +David +Dylan +Jayden +Robert +Benjamin +Brandon +Luke +Aidan +Connor +Evan +Gabriel +Austin +Chase +Caleb +Gavin +Justin +Mason +Brian +Jason +Aaron +Zachary +Julian +Sean +Charles +Jackson +Jordan +Kevin +Xavier +Nathaniel +Jack +Kyle +Jaden +Shane +Colin +Dominic +Angel +Lucas +Owen +Richard +Steven +Eric +Jose +Juan +Bryce +Edward +Jeremiah +Liam +Carter +Cole +Hunter +Luis +Wyatt +Adam +Brady +Ian +Patrick +Trevor +Alex +Hayden +Henry +Isaac +Jake +Mark +Antonio +Bryan +Josiah +Kenneth +Landon +Malachi +Nasir +Vincent +Brayden +Jesus +Paul +Riley +Shawn +Timothy +Tristan +Carlos +Stephen +Braden +Bradley +Conner +Diego +Dominick +Eduardo +Emmanuel +Garrett +Jeffrey +Jeremy +Marcus +Nolan +Tanner +Braeden +Corey +Donald +Edwin +Grant +Jorge +Kaden +Malik +Maxwell +Seth +Adrian +Andres +Brody +Collin +Cooper +Gage +Giovanni +Gregory +Jaxon +Jesse +Joel +Keith +Miguel +Oliver +Scott +Travis +Yahir +Alan +Amir +Andre +Brendan +Caden +Cody +Colby +Dante +Drew +Erik +Francisco +George +Harrison +Jaiden +Jared +Mekhi +Melvin +Miles +Sawyer +Sebastian +Victor +Wesley +Andy +Avery +Camron +Damien +Devin +Edgar +Enrique +Gianni +Hugo +Myles +Orion +Parker +Peter +Peyton +Quentin +Raymond +Troy +Aden +Alejandro +Alexis +Asher +Ashton +Casey +Clayton +Cristian +Curtis +Derek +Eli +Emanuel +Frank +Jalen +Jaylen +Jayson +Jonah +Josue +Kareem +Marco +Micah +Mitchell +Naim +Nehemiah +Nickolas +Nicolas +Oscar +Pablo +Philip +Roman +Ronald +Sincere +Terrence +Tony +Zion +Zyaire +Michael +Ryan +Alexander +Christopher +Joshua +John +Matthew +Jacob +Anthony +James +William +Nicholas +Jayden +Ethan +Joseph +David +Aiden +Logan +Daniel +Jason +Gavin +Noah +Christian +Andrew +Jordan +Chase +Zachary +Nathan +Benjamin +Cameron +Kevin +Luke +Mason +Jonathan +Dylan +Gabriel +Justin +Tyler +Aidan +Brandon +Connor +Evan +Elijah +Jackson +Samuel +Thomas +Brian +Isaiah +Jose +Owen +Robert +Xavier +Aaron +Jeremiah +Kyle +Charles +Sean +Cole +Jack +Josiah +Liam +Diego +Austin +Ian +Julian +Angel +Jaden +Jeremy +Lucas +Nathaniel +Adam +Caleb +Carlos +Eric +Hunter +Shane +Bryan +Colin +Dominic +Timothy +Vincent +Antonio +Brady +Jared +Landon +Brayden +Luis +Malachi +Richard +Shawn +Alex +Bryce +Caden +Isaac +Mark +Devon +Juan +Paul +Trevor +Tristan +Edward +Edwin +Hayden +Henry +Nasir +Quinn +Victor +Zion +Ayden +Brody +Cody +Collin +Steven +Braden +Patrick +Peyton +Wyatt +Alan +Alexis +Blake +Brayan +Brendan +Carson +Carter +Dante +Jeffrey +Jesus +Kaleb +Leo +Malik +Maxwell +Miguel +Omar +Riley +Stephen +Dennis +Donovan +Edgar +Elias +Marcus +Max +Micah +Nolan +Scott +Tanner +Adrian +Ashton +Avery +Bradley +Cristian +Derek +Devin +Dillon +Eduardo +Giovanni +Jaylen +Jayson +Jesse +Joel +Jonah +Kaden +Oscar +Preston +Ricardo +Andre +Andres +Angelo +Cayden +Chad +Conner +Cooper +Damien +Dane +Eli +Emmanuel +Gary +Grady +Grayson +Jakai +Jake +Jakob +Javon +Julius +Kai +Kenneth +Lincoln +Martin +Nehemiah +Parker +Peter +Rohan +Seth +Sincere +Travis +Trey +Walter +Amir +Brett +Cesar +Chance +Corey +Craig +Davis +Declan +Dominick +Donald +Gage +George +Gregory +Israel +Ivan +Jaiden +Javier +Jaxon +Jeffery +Jermaine +Jorge +Josue +Kameron +Kayden +Keegan +Keith +Kieran +Mekhi +Randy +Roman +Ronald +Sawyer +Talan +Theodore +Wesley +Zyaire +Michael +William +Jacob +Christopher +Joshua +Jayden +Anthony +James +John +Matthew +Ryan +Chase +Daniel +Joseph +Andrew +Alexander +Noah +Ethan +Christian +Jonathan +Elijah +Nathan +Logan +Gabriel +Robert +Aidan +Tyler +David +Aiden +Brandon +Benjamin +Dylan +Mason +Gavin +Justin +Nicholas +Thomas +Austin +Jordan +Samuel +Cameron +Luke +Owen +Aaron +Brian +Jackson +Charles +Evan +Isaiah +Jason +Zachary +Connor +Kevin +Dominic +Jack +Jeremiah +Julian +Wyatt +Landon +Liam +Brady +Caleb +Xavier +Angel +Carter +Cole +Nathaniel +Adam +Brayden +Jose +Shane +Richard +Ayden +Eric +Hunter +Ian +Isaac +Josiah +Kyle +Sean +Jaden +Luis +Brody +Henry +Jaiden +Jeffrey +Patrick +Steven +Alex +Bryce +Edward +George +Juan +Lucas +Timothy +Carlos +Cristian +Gage +Edwin +Landen +Maxwell +Stephen +Vincent +Antonio +Brennan +Bryan +Caden +Colin +Colton +Devin +Grant +Jeremy +Kaleb +Marcus +Micah +Paul +Alan +Ashton +Diego +Dominick +Garrett +Hayden +Preston +Tanner +Avery +Blake +Braeden +Carson +Chris +Josue +Jude +Kayden +Mark +Nasir +Trent +Adrian +Amir +Brendan +Cooper +Derek +Devon +Emmanuel +Jake +Kaden +Riley +Seth +Victor +Zion +Alexis +Cayden +Collin +Donovan +Giovanni +Jaxon +Joel +Jonah +Julius +Kai +Kameron +Luca +Nolan +Rafael +Sebastian +Shawn +Sincere +Spencer +Theodore +Travis +Trevor +Bradley +Damien +Donald +Erik +Eugene +Jesus +Johnathan +Jorge +Kenneth +Levi +Mekhi +Mitchell +Oscar +Parker +Peter +Ricardo +Tristan +Zyaire +Angelo +Axel +Braden +Calvin +Casey +Chance +Conner +Corey +Dallas +Darren +Derrick +Edgar +Erick +Fernando +Gary +Gianni +Graham +Griffin +Harrison +Israel +Jalen +Jared +Javier +Jaxson +Jonas +Kareem +Lincoln +Malachi +Peyton +Quinn +Scott +Sergio +Troy +Tucker +Alexander +Michael +James +Jayden +Ethan +William +Matthew +Logan +Aiden +Chase +Jacob +Joshua +Anthony +Gavin +Joseph +Ryan +Christian +Daniel +Benjamin +Christopher +Nicholas +Tyler +Cameron +John +Noah +Nathan +Charles +David +Jordan +Jonathan +Gabriel +Robert +Carter +Justin +Caleb +Dylan +Liam +Andrew +Kevin +Brandon +Cole +Elijah +Landon +Zachary +Brayden +Evan +Jackson +Lucas +Isaiah +Jason +Luke +Sean +Aidan +Kyle +Thomas +Aaron +Austin +Jeremiah +Mason +Connor +Owen +Dominic +Ian +Adam +Nathaniel +Samuel +Hunter +Shane +George +Jack +Tristan +Bryce +Richard +Angel +Bryan +Colin +Eric +Riley +Antonio +Brian +Brody +Julian +Jaden +Malachi +Xavier +Brady +Jesus +Jose +Miguel +Paul +Alex +Amir +Jeremy +Josiah +Stephen +Steven +Wyatt +Blake +Carlos +Grayson +Kaden +Marcus +Nasir +Cooper +Jaiden +Mark +Patrick +Sebastian +Spencer +Trevor +Victor +Vincent +Brendan +Caden +Giovanni +Isaac +Joel +Jude +Larry +Max +Maxwell +Oliver +Timothy +Zion +Avery +Ayden +Collin +Colton +Conner +Cristian +Dalton +Edward +Edwin +Henry +Jonah +Juan +Kameron +Levi +Ronald +Sincere +Adrian +Bradley +Damien +Eduardo +Elias +Griffin +Jake +Jared +Jaylen +Jeffrey +Kaiden +Kenneth +Micah +Nolan +Trent +Trey +Wesley +Armando +Braden +Cesar +Chance +Cody +Corey +Dante +Derrick +Emmanuel +Gage +Gregory +Hayden +Holden +Jesse +Kaleb +Keith +Kristopher +Leonardo +Nicolas +Oscar +Peter +Randy +Ricardo +Seth +Silas +Skyler +Aaden +Ahmad +Alejandro +Angelo +Braydon +Brenden +Brennan +Caiden +Carson +Dakota +Darius +Darren +Derek +Diego +Dustin +Eli +Francis +Garrett +Grady +Ibrahim +Javon +Jaxon +Jaxson +Judah +Kieran +Kobe +Leo +Lincoln +Maurice +Miles +Myles +Parker +Raymond +Shawn +Tanner +Troy +Michael +William +Alexander +James +Anthony +Joshua +Mason +Gavin +Jacob +Ryan +Logan +Aiden +Andrew +Elijah +Ethan +Noah +Christopher +John +Jayden +Cameron +Tyler +Benjamin +Chase +Matthew +Daniel +David +Nicholas +Gabriel +Jackson +Joseph +Liam +Nathan +Christian +Luke +Caleb +Justin +Jeremiah +Brayden +Jonathan +Dylan +Kevin +Samuel +Zachary +Carter +Jordan +Lucas +Austin +Jason +Angel +Brandon +Cole +Connor +Charles +Jack +Landon +Colin +Dominic +Evan +Jaden +Owen +Thomas +Colton +Isaiah +Josiah +Robert +Kyle +Wyatt +Adrian +Henry +Richard +Timothy +Aaron +Ian +Tristan +Brian +Isaac +Sean +Bryce +Julian +Nathaniel +Carlos +Eli +Xavier +Antonio +Blake +Cody +Cooper +Hunter +Jose +Kaleb +Mark +Shane +Vincent +Aidan +Edward +Eric +Grayson +Jaxon +Jeremy +Luis +Malachi +Oliver +Patrick +Adam +Joel +Micah +Ayden +Bryson +Carson +Kaden +Max +Parker +Stephen +Alan +Alex +Hayden +Jake +Jaxson +Juan +Kayden +Miguel +Nasir +Nolan +Travis +Avery +Brendan +Brody +Declan +Diego +Gage +Giovanni +Leo +Levi +Steven +Bryan +Caden +Chance +Conner +Dominick +George +Grant +Hudson +Israel +Jaiden +Jorge +Jude +Keegan +Kenneth +Ronald +Ty +Alejandro +Alexis +Asher +Braiden +Cayden +Dallas +Dalton +Damien +Dean +Devin +Emmanuel +Finn +Ivan +Javier +Jesse +Jesus +Johnathan +Julius +Justice +Kingston +Leonardo +Maxwell +Peyton +Quentin +Sebastian +Shawn +Victor +Vincenzo +Wesley +Zion +Ahmad +Colby +Collin +Cullen +Cyrus +Damian +Darius +Donald +Eduardo +Edwin +Elias +Frank +Garrett +Jaylen +Jeffrey +Jonah +Kai +Kellan +Landen +Lawrence +Louis +Luca +Marshall +Maximilian +Miles +Myles +Nicolas +Pedro +Preston +Quinn +Randy +Rhys +Rowan +Santiago +Semaj +Tanner +Tyrone +Weston +Michael +Mason +Ryan +William +Noah +Ethan +Jacob +Anthony +Aiden +Jayden +Christopher +Joshua +Liam +Chase +Logan +Daniel +Elijah +Joseph +James +Alexander +David +Cameron +Dylan +Nathan +Christian +John +Jeremiah +Andrew +Benjamin +Gavin +Matthew +Tyler +Jonathan +Luke +Owen +Gabriel +Kevin +Samuel +Austin +Brayden +Carter +Lucas +Nicholas +Isaiah +Thomas +Cole +Caleb +Julian +Justin +Ayden +Jackson +Jordan +Robert +Charles +Landon +Evan +Aaron +Eli +Ian +Josiah +Aidan +Blake +Brandon +Jaxon +Kyle +Zachary +Dominic +Henry +Jack +Brian +Jason +Levi +Richard +Timothy +Vincent +Hunter +Nolan +Patrick +Wyatt +Adam +Colton +Connor +Jaden +Steven +Xavier +Bentley +Brady +Bryce +Caden +Colin +Eric +Isaac +Jeffrey +Marcus +Parker +Alex +Brody +Carlos +Jose +Luis +Malachi +Miles +Nathaniel +Shane +Angel +Declan +Kaden +Oliver +Ryder +Sean +Bryson +Hayden +Juan +Kaiden +Kenneth +Raymond +Travis +Tristan +Zion +Adrian +Avery +Collin +Damien +Dante +Elias +Grayson +Kaleb +Maxwell +Nasir +Nehemiah +Riley +Alan +Axel +Conner +Edward +Emmanuel +George +Giovanni +Jalen +Jared +Jeremy +Landen +Lane +Preston +Stephen +Alejandro +Amir +Antonio +Bradley +Brycen +Cullen +Darius +Derek +Edwin +Gregory +Greyson +Jace +Jesus +Joel +Jude +Kayden +Khalil +Mark +Micah +Miguel +Omar +Peter +Sebastian +Trenton +Wesley +Andre +Asher +Ashton +Bryan +Carson +Cayden +Cody +Cooper +Curtis +Danny +Elliot +Ezra +Finn +Harrison +Jake +Jaylen +Jesse +Josue +Keegan +Max +Maximus +Nicolas +Paul +Ronald +Shawn +Silas +Tanner +Victor +Alexis +Amare +Amari +Andy +Braden +Carl +Corey +Derrick +Devon +Diego +Dominick +Drew +Gianni +Graham +Ivan +Jasir +Lincoln +Maddox +Marshall +Quinn +Roman +Rylan +Ryland +Spencer +Troy +Michael +Anthony +Liam +Mason +Christopher +Alexander +Ethan +William +Elijah +Logan +John +Jacob +Jayden +Daniel +Noah +Aiden +Jackson +James +Joseph +Joshua +Chase +Andrew +Caleb +Christian +Luke +David +Ryan +Gabriel +Cameron +Lucas +Brayden +Carter +Robert +Tyler +Brandon +Jordan +Landon +Nathan +Owen +Jeremiah +Matthew +Samuel +Dominic +Nicholas +Thomas +Austin +Benjamin +Charles +Evan +Julian +Isaiah +Jonathan +Aaron +Dylan +Gavin +Jaxon +Cole +Connor +Parker +Xavier +Wyatt +Colton +Henry +Hunter +Declan +Kevin +Adam +Adrian +Alex +Grayson +Ian +Jace +Jack +Bryce +Isaac +Justin +Patrick +Shane +Tristan +Angel +Blake +Jason +Jose +Kayden +Zachary +Aidan +Ayden +Brody +Caden +Colin +Hayden +Maxwell +Sean +Sebastian +Steven +Timothy +Vincent +Zion +Eli +Kenneth +Mark +Roman +Victor +Avery +Bradley +Bryan +Bryson +Carson +Edward +Eric +Giovanni +Kaden +Kameron +Miles +Asher +Dominick +Edwin +Elias +Josiah +Kaiden +Kaleb +Levi +Nathaniel +Bennett +Brian +Cooper +Kyle +Lincoln +Luis +Malachi +Myles +Nolan +Preston +Richard +Seth +Silas +Amir +Ashton +Damian +Jaden +Jake +Jonah +Kingston +Maddox +Oliver +Raymond +Riley +Ryder +Trevor +Bentley +Bruce +Cayden +Colby +Collin +Dante +Darren +Gael +George +Iker +Jesus +Micah +Peter +Theodore +Amari +Andre +Angelo +Brady +Carlos +Cristian +Derrick +Emmanuel +Finn +Harrison +Joel +Juan +Judah +Kellan +Larry +Leon +Marcus +Nehemiah +Shawn +Travis +Alexis +Anderson +Aryan +Axel +Braeden +Dalton +Dean +Devon +Diego +Easton +Emmett +Erick +Everett +Greyson +Jaiden +Jared +Jasiah +Jayce +Jude +Kai +Layton +Malcolm +Marco +Max +Mekhi +Messiah +Miguel +Nicolas +Niko +Oscar +Peyton +Reid +Rocco +Ronan +Simon +Spencer +Stephen +Troy +Wesley +Zayden +Michael +Mason +Liam +Aiden +William +Jackson +Joseph +Alexander +Noah +John +Benjamin +Ethan +Logan +Jacob +Jayden +James +Andrew +Anthony +Ryan +Joshua +Christopher +Daniel +David +Luke +Cameron +Christian +Lucas +Nicholas +Caleb +Dylan +Elijah +Brayden +Landon +Chase +Owen +Gabriel +Henry +Gavin +Isaac +Jordan +Robert +Carter +Julian +Nathan +Jaxon +Jeremiah +Justin +Wyatt +Isaiah +Jonathan +Matthew +Samuel +Tyler +Zachary +Thomas +Jack +Jose +Josiah +Declan +Oliver +Vincent +Austin +Ayden +Brandon +Colton +Hunter +Jason +Kaiden +Blake +Charles +Connor +Dominic +Jace +Jase +Parker +Maxwell +Aaron +Adam +Bryce +Cole +Xavier +Edward +Evan +Giovanni +Ian +Kevin +Leo +Levi +Tristan +Aidan +Cayden +Grayson +Jaxson +Lincoln +Roman +Ryder +Timothy +Adrian +Brian +Bryson +George +Kayden +Malachi +Nolan +Patrick +Zion +Alex +Brody +Joel +Kaden +Luis +Miguel +Andre +Antonio +Avery +Eli +Shane +Stephen +Theodore +Victor +Asher +Bentley +Bryan +Carson +Colin +Diego +Emmanuel +Garrett +Jaiden +Jude +King +Micah +Miles +Tanner +Alexis +Angel +Axel +Carlos +Chance +Damian +Gage +Harrison +Jayce +Jeremy +Jonah +Kai +Kyle +Mark +Reid +Steven +Xander +Ashton +Bradley +Brantley +Collin +Cooper +Dean +Gregory +Hayden +Jameson +Kaleb +Larry +Leonardo +Max +Nathaniel +Nehemiah +Omar +Richard +Riley +Rowan +Rylan +Sebastian +Seth +Aarav +Alan +Amir +Brendan +Cody +Damien +Dominick +Eric +Grant +Ivan +Jaden +Jayceon +Lukas +Marcus +Maverick +Myles +Paul +Peter +Philip +Silas +Wesley +Zayden +Abel +Cristian +Dante +Davion +Eduardo +Elias +Emerson +Emilio +Everett +Fabian +Gideon +Hudson +Jamison +Javier +Jermaine +Jerome +Jesus +Jorge +Judah +Julius +Kane +Keith +Kenneth +Landen +Louis +Maddox +Marco +Messiah +Nasir +Oscar +Peyton +Scott +Shaun +Shawn +Troy +Liam +Michael +Mason +Jacob +Logan +William +James +Caleb +Carter +Jackson +Alexander +Noah +Anthony +Matthew +Elijah +Ethan +Aiden +Luke +Dylan +John +Lucas +Aaron +Christopher +Joseph +Andrew +Benjamin +Colton +Evan +Daniel +Owen +Austin +Jayden +Tyler +Brayden +Gabriel +Gavin +Joshua +David +Chase +Cameron +Jace +Landon +Nicholas +Ryan +Samuel +Eli +Jaxson +Jonathan +Robert +Connor +Thomas +Henry +Jordan +Oliver +Christian +Dominic +Jack +Kayden +Nathaniel +Wyatt +Hunter +Jase +Jaxon +Jeremiah +Nathan +Julian +Charles +Kevin +Levi +Parker +Tristan +Brandon +Isaiah +Kaiden +Sebastian +Ayden +Brian +Grayson +Jason +Justin +Vincent +Josiah +Zachary +Adrian +Blake +Colin +Isaac +Kyle +Carson +Ian +Karter +Patrick +Declan +Ezra +Nolan +Shane +Xavier +Cole +Harrison +Luca +Richard +Ryder +Adam +Amir +Antonio +Caden +Jake +Kaden +Malachi +Roman +Sean +Theodore +Timothy +Wesley +Avery +Brody +Calvin +Eric +Gage +Jayceon +Lincoln +Maxwell +Rowan +Travis +Victor +Angel +Axel +Bentley +Brady +Bryce +Cooper +Dalton +Elias +Emmanuel +George +Graham +Hudson +Jaden +Jax +Joel +Jude +Kenneth +Khalil +King +Luis +Mark +Miles +Muhammad +Steven +Alex +Alexis +Braxton +Caiden +Chance +Colby +Edward +Garrett +Giovanni +Ivan +Jaiden +Jayce +Jeremy +Jorge +Josue +Kingston +Landen +Micah +Miguel +Riley +Aidan +Alejandro +Anderson +Andy +Asher +Ashton +Bryson +Corey +Dean +Dominick +Hayden +Jeffrey +Jesus +Kai +Leo +Mateo +Maximus +Milo +Myles +Paul +Preston +Terrance +Zane +Abel +Andre +Angelo +Beau +Brantley +Brycen +Camden +Cody +Conner +Cristian +Damon +Danny +Desmond +Easton +Ezekiel +Greyson +Griffin +Israel +Jonah +Jose +Kasai +Kolton +Landyn +Lorenzo +Maddox +Marcus +Mario +Omar +Quinn +Reed +Reid +Rhys +Rory +Ryker +Santiago +Sawyer +Silas +Simon +Spencer +Stephen +Tyson +Walter +Zander +Zion +Mary +Annie +Ethel +Willie +Louise +Lillie +Ruby +Thelma +Gladys +Ruth +Bessie +Marie +Alice +Margaret +Rosa +Edna +Beatrice +Carrie +Elizabeth +Dorothy +Ida +Alma +Essie +Mildred +Myrtle +Minnie +Maggie +Mattie +Helen +Martha +Sarah +Mae +Lucille +Cora +Emma +Eva +Evelyn +Lillian +Lula +Mabel +Mamie +Irene +Josephine +Pearl +Viola +Bertha +Ella +Daisy +Anna +Florence +Grace +Jessie +Catherine +Clara +Fannie +Frances +Hattie +Susie +Virginia +Alberta +Nellie +Rose +Vera +Bernice +Gertrude +Juanita +Laura +Lois +Inez +Julia +Agnes +Lucy +Edith +Eula +Ada +Christine +Hazel +Lucile +Beulah +Esther +Flora +Gussie +Katherine +Lena +Sadie +Ellen +Katie +Leola +Mable +Marion +Maude +Pauline +Sallie +Estelle +Georgia +Lottie +Maria +Janie +Jennie +Leona +Lizzie +Marguerite +Nancy +Rebecca +Violet +Addie +Betty +Doris +Eunice +Flossie +Nettie +Ola +Theresa +Vivian +Dora +Eleanor +Etta +Kathleen +Lela +Lessie +Lola +Ollie +Rosetta +Charlotte +Florida +Nora +Rachel +Allie +Callie +Carmen +Christina +Elsie +Emily +Erma +Estella +Geneva +Hester +Hilda +Isabel +Naomi +Roberta +Verna +Victoria +Ann +Anne +Bertie +Blanche +Ernestine +Freddie +Gracie +Henrietta +Idella +Rosalie +Stella +Allene +Amanda +Amelia +Bonnie +Eliza +Eloise +Hallie +Hettie +Irma +Iva +Jannie +Jewell +Leila +Lily +Marjorie +Maxine +Mollie +Pansy +Pearlie +Rosie +Sally +Sara +Sue +Sybil +Wilhelmina +Winifred +Audrey +Belle +Caroline +Carolyn +Cassie +Celia +Claudia +Corinne +Delia +Effie +Elease +Elnora +Francis +Geraldine +Idell +Jane +Jean +Joan +Kathryn +Lenora +Matilda +Maud +May +Millie +Myrtice +Ora +Patricia +Rena +Mary +Annie +Willie +Elizabeth +Louise +Ruby +Ruth +Lillie +Frances +Margaret +Ethel +Thelma +Dorothy +Edna +Lucille +Alice +Helen +Marie +Rosa +Mildred +Florence +Lillian +Minnie +Bessie +Gladys +Clara +Emma +Ida +Julia +Lois +Bertha +Beatrice +Martha +Carrie +Evelyn +Grace +Jessie +Mattie +Alberta +Josephine +Mamie +Sarah +Ella +Eva +Nellie +Pearl +Viola +Hazel +Alma +Laura +Anna +Hattie +Susie +Gertrude +Irene +Fannie +Lula +Rose +Cora +Edith +Mabel +Virginia +Daisy +Essie +Mae +Myrtle +Inez +Pauline +Catherine +Eunice +Bernice +Beulah +Gussie +Dora +Stella +Ada +Agnes +Esther +Katie +Leola +Vera +Betty +Doris +Leona +Lucy +Addie +Ellen +Eloise +Georgia +Jennie +Maggie +Emily +Flora +Idella +Juanita +Lucile +Marion +Nancy +Ann +Blanche +Christine +Elsie +Estelle +Johnnie +Lena +Lessie +Lottie +Marguerite +Naomi +Sallie +Anne +Eula +Janie +Jewel +Katherine +Maria +Nettie +Sadie +Audrey +Bertie +Callie +Eleanor +Estella +Lenora +Lola +Mable +Millie +Rebecca +Roxie +Flossie +Jane +Josie +Marjorie +May +Roberta +Rosetta +Sylvia +Vivian +Albertha +Amanda +Amelia +Carolyn +Charlotte +Geneva +Gracie +Maude +Miriam +Myrtice +Ola +Ollie +Rachel +Wilma +Winnie +Allie +Clyde +Constance +Corine +Delia +Della +Effie +Erma +Hannah +Henrietta +Irma +Ivory +Jewell +Lela +Mercedes +Ophelia +Queen +Rena +Zella +Bonnie +Caroline +Connie +Corrine +Dollie +Eliza +Elouise +Etta +Florida +Genevieve +Hortense +Isabell +Iva +Jannie +Lilly +Lizzie +Nina +Nora +Olga +Patricia +Pearlie +Rosalie +Sara +Shirley +Velma +Violet +Zelma +Mary +Annie +Ruby +Dorothy +Ruth +Willie +Margaret +Elizabeth +Louise +Thelma +Helen +Mildred +Gladys +Marie +Ethel +Lillie +Edna +Frances +Eva +Florence +Alice +Lillian +Minnie +Beatrice +Rosa +Myrtle +Alma +Gertrude +Emma +Mattie +Evelyn +Hazel +Pearl +Bessie +Martha +Sarah +Clara +Lucille +Rose +Ida +Carrie +Edith +Grace +Alberta +Catherine +Josephine +Anna +Bertha +Daisy +Ella +Inez +Jessie +Lois +Maggie +Nellie +Essie +Irene +Pauline +Hattie +Mamie +Eunice +Laura +Bernice +Susie +Lula +Mae +Virginia +Doris +Agnes +Lucile +Elsie +Mable +Ada +Fannie +Geneva +Julia +Viola +Cora +Esther +Juanita +Leola +Marjorie +Ola +Rebecca +Eula +Lena +Mabel +Marguerite +Vera +Blanche +Flora +Katie +Sallie +Estelle +Lucy +Maude +Vivian +Marion +Eleanor +Janie +Katherine +Leona +Sadie +Dora +Erma +Geraldine +Johnnie +Lola +Addie +Betty +Christine +Georgia +Hilda +Naomi +Theresa +Effie +Eloise +Jennie +Lottie +Nancy +Pearlie +Rosie +Allie +Ellen +Irma +Leila +Lela +Sara +Ann +Anne +Cleo +Gracie +Ollie +Rosalie +Violet +Wilma +Carmen +Della +Dollie +Estella +Iva +Kathleen +Nell +Nora +Audrey +Barbara +Beulah +Corine +Elnora +Florida +Flossie +Harriet +Jewell +Olive +Ora +Peggy +Sally +Amelia +Elma +Ernestine +Genevieve +Gussie +Iris +Lizzie +Lorene +Maria +Marian +Nettie +Rachel +Stella +Sylvia +Velma +Wilhelmina +Winifred +Bertie +Cornelia +Eliza +Elouise +Henrietta +Hortense +Idella +Jane +Lenora +Lila +Lilly +Lorena +Loretta +Lorraine +Madeline +May +Miriam +Opal +Amanda +Caroline +Delia +Edythe +Emily +Etta +Frankie +Ira +Isabell +Jean +Julie +Kathryn +Lily +Mittie +Nina +Pansy +Pinkie +Rubye +Susan +Winnie +Adelina +Albertha +Althea +Carolyn +Clarice +Earnestine +Eddie +Francis +Hester +Jeanette +Josie +Kate +Lee +Lessie +Lilla +Margie +Maxine +Merle +Millie +Odessa +Ofelia +Phyllis +Queen +Rosetta +Roxie +Mary +Annie +Ruth +Elizabeth +Louise +Thelma +Margaret +Mildred +Marie +Ruby +Dorothy +Willie +Helen +Edna +Alice +Evelyn +Frances +Gladys +Ethel +Rosa +Lillie +Edith +Virginia +Mattie +Lillian +Eva +Julia +Josephine +Martha +Myrtle +Lucille +Beatrice +Bessie +Grace +Hazel +Anna +Florence +Inez +Minnie +Ida +Alma +Emma +Jessie +Viola +Doris +Irene +Vera +Carrie +Gertrude +Hattie +Mamie +Catherine +Sarah +Bertha +Rose +Mae +Agnes +Daisy +Ella +Lois +Susie +Bernice +Eunice +Nellie +Cora +Maggie +Alberta +Clara +Elsie +Pearl +Laura +Betty +Geneva +Lucile +Lula +Fannie +Mabel +Essie +Pauline +Ada +Katie +Leola +Juanita +Janie +Kathryn +Blanche +Estelle +Esther +Marjorie +Beulah +Eloise +Nancy +Ollie +Vivian +Addie +Ann +Christine +Estella +Eula +Flora +Jennie +Lena +Mable +Rachel +Sara +Johnnie +Lottie +Stella +Bonnie +Effie +Emily +Ernestine +Flossie +Jean +Katherine +Lizzie +Marguerite +Marion +Sallie +Dora +Eleanor +Georgia +Hilda +Iris +Irma +Lucy +Maude +Nettie +Rebecca +Sadie +Wilma +Ellen +Leona +Lola +Millie +Naomi +Ola +Olivia +Roberta +Albertha +Anne +Carmen +Lela +Pearlie +Alta +Audrey +Charlotte +Eliza +Erma +Gracie +Gussie +Jane +Jewell +Nell +Winifred +Barbara +Bertie +Carolyn +Harriet +Kathleen +Lydia +Mercedes +Miriam +Muriel +Nora +Rosie +Sally +Sylvia +Violet +Wilhelmina +Angelina +Della +Dorothea +Hannah +Henrietta +Joyce +Lenora +Lessie +Madeline +Myra +Norma +Olive +Opal +Robbie +Rosetta +Shirley +Susan +Velma +Victoria +Adele +Birdie +Clarice +Corine +Dolores +Elnora +Florida +Idella +Iva +Jeannette +Jewel +John +Leila +Lou +Margie +Maria +Maud +Maxine +Myrtis +Queen +Rhoda +Rosalee +Teresa +Theresa +Verna +Abbie +Allie +Amanda +Angela +Arrie +Callie +Cleo +Doretha +Elaine +Elise +Elma +Elouise +Elva +Francis +Genevieve +Geraldine +Ila +Ina +Leatha +Marian +May +Mollie +Myrtice +Odessa +Patricia +Regina +Retha +Rosalie +Sybil +Verdell +Mary +Annie +Dorothy +Ruby +Margaret +Helen +Thelma +Ruth +Louise +Mildred +Elizabeth +Edna +Evelyn +Willie +Ethel +Gladys +Lillie +Frances +Beatrice +Marie +Rosa +Lillian +Lucille +Alice +Irene +Nellie +Josephine +Martha +Lois +Alma +Bernice +Sarah +Eva +Hazel +Jessie +Daisy +Florence +Ida +Mamie +Inez +Myrtle +Emma +Gertrude +Bertha +Doris +Edith +Minnie +Anna +Bessie +Catherine +Rose +Clara +Carrie +Maggie +Grace +Cora +Ella +Virginia +Mabel +Mattie +Lula +Pearl +Vera +Essie +Hattie +Julia +Susie +Eunice +Laura +Elsie +Fannie +Vivian +Agnes +Mae +Viola +Emily +Esther +Juanita +Lena +Blanche +Katherine +Lottie +Pauline +Alberta +Eleanor +Flossie +Katie +Lucile +Mable +Eula +Nettie +Leola +Lucy +Marion +Ellen +Eloise +Anne +Barbara +Corine +Dora +Marguerite +Sadie +Estelle +Lola +Marjorie +Rebecca +Rosalie +Violet +Betty +Flora +Hilda +Janie +Nancy +Carmen +Christine +Georgia +Gussie +Kathleen +Maude +Naomi +Ada +Ann +Geneva +Jennie +Ola +Sara +Charlotte +Ernestine +Idella +Johnnie +Cleo +Henrietta +Iris +Lela +Ollie +Addie +Beulah +Carolyn +Leona +Lessie +Nina +Sallie +Allie +Effie +Erma +Florida +Gracie +Rosie +Winifred +June +Kathryn +Maria +Roberta +Stella +Velma +Verna +Wilma +Claudia +Estella +Irma +Jewell +Lenora +Lorene +Rachel +Della +Frankie +Isabelle +Jean +Jewel +Lydia +Muriel +Olga +Opal +Shirley +Theresa +Winnie +Billie +Bonnie +Genevieve +Harriet +Josie +May +Nell +Norma +Rosetta +Sally +Sylvia +Bertie +Dolores +Donnie +Elouise +Eugenia +Geraldine +Isabel +Jeanette +Lee +Lilly +Lizzie +Marian +Nora +Odessa +Olive +Ora +Anita +Audrey +Callie +Cassie +Celia +Cornelia +Edythe +Estell +Ina +Jane +Leila +Madeline +Mollie +Pearlie +Peggy +Phyllis +Rita +Sybil +Victoria +Willa +Alta +Amelia +Amy +Carol +Dessie +Dollie +Doretha +Elma +Elnora +Etha +Hannah +Iona +Jannie +Maudie +Mercedes +Merle +Miriam +Ophelia +Queen +Rena +Rubye +Sophie +Albertha +Aline +Amanda +Antonia +Clarice +Constance +Corinne +Eddie +Elaine +Francis +Gloria +Gwendolyn +Harriett +Hester +Iva +Jeannette +Joyce +Lily +Lucretia +Luella +Margie +Maxine +Melba +Mozelle +Myra +Nona +Ossie +Patricia +Reba +Rhoda +Rosalee +Vida +Wilhelmina +Mary +Annie +Dorothy +Margaret +Ruth +Elizabeth +Helen +Edna +Willie +Mildred +Frances +Ruby +Evelyn +Louise +Thelma +Gladys +Alice +Hazel +Marie +Ethel +Josephine +Lillian +Bessie +Rosa +Lillie +Edith +Martha +Sarah +Virginia +Doris +Clara +Julia +Lois +Minnie +Myrtle +Lucille +Beatrice +Eva +Bernice +Ida +Alma +Florence +Anna +Emma +Ella +Grace +Irene +Vera +Inez +Pauline +Catherine +Gertrude +Nellie +Pearl +Carrie +Mamie +Juanita +Bertha +Hattie +Lula +Mattie +Laura +Lucile +Rose +Agnes +Esther +Fannie +Maggie +Vivian +Essie +Eunice +Mabel +Viola +Daisy +Elsie +Mae +Mable +Alberta +Marjorie +Eula +Marion +Estelle +Katherine +Violet +Jessie +Leola +Sadie +Addie +Cora +Jane +Leona +Sara +Betty +Ernestine +Katie +Jean +Naomi +Eloise +Geneva +Lena +Marguerite +Rebecca +Ada +Barbara +Georgia +Susie +Carmen +Dora +Eleanor +Flora +Irma +Nancy +Ollie +Audrey +Blanche +Ellen +Janie +Kathleen +Kathryn +Maxine +Hilda +Marian +Nettie +Theresa +Ann +Lucy +Maria +Wilma +Beulah +Charlotte +Emily +Jennie +Rosie +Sallie +Anne +Carolyn +Christine +Cleo +Estella +Johnnie +Leila +Rosalie +Winifred +Bonnie +Iris +Lee +Lela +Lessie +Lottie +Anita +Celia +Florida +Lily +Miriam +Ophelia +Stella +Velma +Bertie +Clyde +Erma +Geraldine +Gracie +Henrietta +Jeanette +Lizzie +Lola +May +Verna +Allie +Delia +Earnestine +Elnora +Genevieve +Gussie +Isabel +Josie +Maude +Nora +Patricia +Sue +Corine +Effie +Etta +Flossie +Idella +Jewell +Melba +Myrtice +Phyllis +Roberta +Shirley +Victoria +Angelina +Billie +Callie +Elaine +Eliza +Florine +Iva +Lorena +Mollie +Nell +Norma +Ola +Ora +Rachel +Rita +Albertha +Antonia +Corinne +Edythe +Francis +Frankie +Jannie +Joyce +Lenora +Lila +Margie +Millie +Muriel +Olga +Peggy +Queen +Reba +Rena +Sylvia +Althea +Bettie +Claudia +Della +Dolly +Eddie +Elma +Elouise +Gwendolyn +Hannah +Isabelle +Lorraine +Lou +Lovie +Pearlie +Susan +Winnie +Yvonne +Aida +Alva +Amy +Artie +Charity +Constance +Dessie +Elisabeth +Emilia +Freda +Jewel +Jimmie +June +Linnie +Loretta +Madie +Maud +Neva +Olive +Opal +Rosalee +Roxie +Vermell +Abbie +Adele +Adeline +Alene +Amanda +Amelia +Bennie +Cecelia +Clifford +Delma +Dollie +Donnie +Eartha +Gloria +Goldie +Harriett +Hester +Ila +Ina +Iona +Janice +Kate +Leatha +Lettie +Lilly +Lorene +Lura +Lydia +Mercedes +Myrtie +Nina +Oveda +Pansy +Sally +Veda +Vesta +Mary +Dorothy +Annie +Margaret +Ruth +Louise +Mildred +Thelma +Elizabeth +Willie +Helen +Ruby +Edna +Marie +Alice +Evelyn +Ethel +Frances +Gladys +Lillie +Lillian +Doris +Lucille +Edith +Hazel +Julia +Lois +Emma +Martha +Sarah +Bessie +Pauline +Rosa +Virginia +Bernice +Beatrice +Nellie +Jessie +Ida +Eva +Clara +Catherine +Josephine +Florence +Alma +Mamie +Juanita +Minnie +Ella +Anna +Bertha +Mattie +Esther +Myrtle +Viola +Grace +Mae +Irene +Betty +Marguerite +Carrie +Inez +Katherine +Vera +Daisy +Eunice +Rose +Gertrude +Mabel +Susie +Laura +Fannie +Lucile +Essie +Cora +Geneva +Hattie +Elsie +Marjorie +Estelle +Marion +Mable +Pearl +Lena +Sara +Agnes +Leona +Alberta +Dora +Lula +Maggie +Ollie +Sallie +Vivian +Katie +Lucy +Barbara +Blanche +Eleanor +Lottie +Sadie +Wilma +Allie +Ann +Flora +Georgia +Jean +Jennie +Effie +Hilda +Kathryn +Nancy +Naomi +Velma +Jewel +Rebecca +Audrey +Eloise +Ernestine +Jane +Leola +Charlotte +Johnnie +Maude +Beulah +Carmen +Christine +Eula +Geraldine +Mercedes +Genevieve +Rachel +Addie +Cleo +Emily +Henrietta +Lola +Nettie +Norma +Roberta +Winifred +Marian +Ada +Amy +Estella +Harriet +Irma +Janie +Kathleen +Lee +Myrtice +Pearlie +Rosetta +Verna +Carolyn +Gloria +Gussie +Leila +Lessie +Lizzie +Stella +Theresa +Winnie +Ellen +Elouise +Francis +Iris +Maria +Nina +Opal +Rosalie +Corine +Florida +Iva +Maxine +Miriam +Violet +Delia +Dolores +Flossie +Jeanette +Lela +Letha +Nora +Ora +Phyllis +Sylvia +Victoria +Angelina +Angie +Bertie +Bonnie +Erma +Idella +Jeannette +Linnie +Matilda +Nell +Olivia +Pansy +Sybil +Aline +Anita +Caroline +Cassie +Celia +Corinne +Dollie +Elva +Ina +June +Lily +Margarita +Margie +Melba +Millie +Muriel +Olga +Olive +Patricia +Rosie +Susan +Tommie +Amelia +Callie +Celestine +Constance +Dixie +Doretha +Dorthy +Dovie +Elnora +Etta +Ezell +Faye +Frankie +Jimmie +Joyce +Leo +Lila +Lilly +Lydia +May +Ouida +Peggy +Rosalee +Sally +Allene +Annette +Billie +Clarice +Claudia +Dessie +Florine +Freddie +Georgie +Gwendolyn +Hester +Iona +Isabelle +Janet +Jeanne +Jewell +Josie +Kate +Lavada +Lorraine +Luella +Madeline +Maudie +Mavis +Odessa +Ola +Ophelia +Ruthie +Shirley +Sue +Theda +Vina +Adele +Albertha +Althea +Anne +Arlene +Artie +Carol +Cecilia +Cornelia +Dalia +Della +Earline +Eddie +Edwina +Elaine +Elease +Elise +Georgina +Jannie +Jaunita +Leatha +Lorena +Lorene +Lou +Mazie +Merle +Queen +Ramona +Rena +Rita +Robbie +Yvonne +Zora +Mary +Margaret +Annie +Dorothy +Helen +Ruth +Thelma +Mildred +Elizabeth +Edna +Louise +Alice +Willie +Frances +Ruby +Hazel +Martha +Marie +Gladys +Evelyn +Virginia +Rosa +Lillie +Ethel +Doris +Edith +Lucille +Beatrice +Myrtle +Sarah +Lillian +Lois +Minnie +Mattie +Julia +Bernice +Josephine +Florence +Inez +Alma +Bessie +Clara +Irene +Juanita +Ella +Emma +Jessie +Eva +Ida +Carrie +Essie +Hattie +Anna +Bertha +Gertrude +Catherine +Rose +Grace +Nellie +Susie +Alberta +Marjorie +Agnes +Esther +Mae +Mamie +Marguerite +Pauline +Vera +Viola +Betty +Daisy +Laura +Pearl +Eunice +Katherine +Cora +Lula +Mable +Marion +Johnnie +Mabel +Maggie +Nancy +Eleanor +Sara +Elsie +Eula +Leola +Barbara +Blanche +Dora +Effie +Ernestine +Estelle +Jennie +Naomi +Audrey +Geraldine +Kathryn +Leona +Roberta +Ada +Anne +Charlotte +Hilda +Eloise +Geneva +Rebecca +Vivian +Wilma +Cleo +Kathleen +Ora +Velma +Carolyn +Ellen +Fannie +Flora +Georgia +Katie +Lottie +Lucile +Gracie +Jane +Lena +Sallie +Emily +Jean +Lucy +Sadie +Violet +Beulah +Jewell +Mercedes +Miriam +Nettie +Nora +Ann +Erma +Estella +Gussie +Lizzie +Lola +Maxine +Melba +Opal +Elouise +Iris +Janie +Lydia +Margie +Maude +Norma +Pearlie +Rachel +Stella +Carmen +Christine +Henrietta +Irma +Joyce +Lorena +Marian +Myrtice +Nell +Ola +Queen +Theresa +Allie +Anita +Dolores +Flossie +Francis +Jewel +Letha +Lorene +Nina +Rosalie +Rosie +Bonnie +Ila +Jimmie +June +Maria +Olga +Olive +Rosetta +Shirley +Verna +Amanda +Claudia +Corine +Etta +Frankie +Mazie +Mittie +Myra +Ophelia +Patricia +Sylvia +Addie +Annette +Callie +Eddie +Gwendolyn +Harriet +Iona +Isabel +Iva +Leila +Lenora +Millie +Muriel +Reba +Rosalee +Aurora +Eliza +Elnora +Elvira +Faye +Genevieve +Hortense +Jeannette +Joan +Lorraine +Madeline +Myrtis +Ollie +Winifred +Winnie +Albertha +Aline +Bertie +Carol +Constance +Earnestine +Elaine +Elinor +Harriett +Idella +Jeanette +Lela +Lessie +May +Retha +Rita +Rubie +Sophie +Victoria +Willa +Adele +Alene +Althea +Amelia +Amy +Angeline +Caroline +Cassie +Celestine +Charlie +Christina +Clyde +Cornelia +Dixie +Eileen +Elma +Josie +Lettie +Lila +Marietta +Onelia +Ouida +Peggy +Phoebe +Rubye +Sybil +Teresa +Adelaide +Alfreda +Allean +Allene +Altamease +Berta +Clarice +Clydie +Connie +Dalia +Delia +Della +Donna +Donnie +Elease +Emilia +Evalyn +Florida +Freddie +Gail +George +Helena +Hester +Iola +Isabelle +Janice +Jannie +Leonora +Lilly +Lora +Lou +Luella +Maudie +Maybelle +Mina +Nadine +Nannie +Olivia +Ruthie +Selma +Sue +Tessie +Vesta +Virgie +Mary +Dorothy +Annie +Margaret +Ruth +Elizabeth +Willie +Louise +Mildred +Helen +Thelma +Ruby +Frances +Edna +Evelyn +Marie +Doris +Alice +Lillie +Ethel +Gladys +Rosa +Hazel +Edith +Emma +Virginia +Josephine +Lucille +Myrtle +Alma +Bessie +Catherine +Beatrice +Lillian +Martha +Sarah +Eva +Lois +Florence +Ida +Minnie +Grace +Jessie +Bertha +Irene +Juanita +Anna +Nellie +Laura +Clara +Essie +Julia +Lucile +Mamie +Marjorie +Agnes +Bernice +Gertrude +Lula +Inez +Carrie +Daisy +Ella +Fannie +Mae +Viola +Mattie +Vera +Esther +Lena +Marguerite +Betty +Hattie +Pearl +Rose +Susie +Elsie +Eula +Mable +Pauline +Dora +Eunice +Vivian +Eleanor +Katherine +Eloise +Kathryn +Sara +Mabel +Leola +Leona +Maggie +Cora +Jean +Lola +Nancy +Wilma +Alberta +Ellen +Hilda +Lucy +Marion +Ada +Ernestine +Barbara +Geneva +Janie +Johnnie +Katie +Rebecca +Sallie +Ann +Blanche +Charlotte +Emily +Estella +Lottie +Erma +Estelle +Violet +Christine +Cleo +Georgia +Ollie +Roberta +Sadie +Carolyn +Gussie +Nettie +Velma +Flora +Geraldine +Iris +Jane +Jennie +Lessie +Theresa +Bonnie +Eddie +Patricia +Jeanette +Kathleen +Lizzie +Naomi +Stella +Anne +Audrey +Beulah +Flossie +Genevieve +Josie +Lorene +Marian +Maude +Myrtice +Olive +Ora +Winifred +Addie +Eliza +Gwendolyn +Jewel +Lorraine +Ola +Queen +Rosalie +Dolores +Jewell +Miriam +Opal +Pearlie +Willa +Frankie +Joyce +Lila +Margie +Maxine +Myrtis +Pansy +Sybil +Sylvia +Carmen +Celia +Effie +June +Lily +Maria +Melba +Millie +Nina +Norma +Rachel +Sue +Verna +Victoria +Allie +Bertie +Billie +Caroline +Clarice +Delia +Gracie +Henrietta +Isabel +Iva +Janet +Luella +May +Nell +Winnie +Aline +Amanda +Amelia +Amy +Bennie +Bobbie +Callie +Corine +Dollie +Florida +Gloria +Lee +Leila +Lenora +Mercedes +Muriel +Nora +Sally +Aida +Claudia +Dorthy +Easter +Elnora +Elouise +Jimmie +Lora +Odessa +Ophelia +Ouida +Rita +Rosie +Shirley +Albertha +Cassie +Della +Dolly +Elma +Florine +Francis +Hortense +Lorena +Lydia +Olivia +Phyllis +Rena +Retha +Rosalee +Rosetta +Susan +Vida +Angelina +Anita +Annette +Carol +Clyde +Cornelia +Etta +Hettie +Idella +Ina +Inell +Irma +Jacqueline +Jannie +Jeanne +Jeannette +Joan +Lela +Magnolia +Mollie +Nona +Olga +Rubye +Tommie +Adeline +Adell +Althea +Avis +Berniece +Burnice +Cherry +Cynthia +Doreatha +Doretha +Earnestine +Elaine +Elizebeth +Faith +Faye +Goldie +Hannah +Harriet +Iona +Isabelle +Johnie +Lelia +Letha +Lettie +Lorine +Lou +Louisa +Lucie +Margarette +Mina +Mittie +Nadine +Neva +Peggy +Robbie +Shellie +Vernice +Vesta +Yvonne +Mary +Dorothy +Annie +Ruth +Margaret +Mildred +Helen +Ruby +Elizabeth +Willie +Louise +Evelyn +Gladys +Thelma +Edna +Marie +Frances +Hazel +Doris +Lillie +Ethel +Alice +Edith +Bessie +Virginia +Rosa +Martha +Lillian +Juanita +Bernice +Grace +Lucille +Emma +Clara +Lois +Catherine +Eunice +Jessie +Mattie +Betty +Irene +Florence +Ella +Myrtle +Nellie +Eva +Josephine +Sarah +Beatrice +Minnie +Julia +Pauline +Marjorie +Vera +Mamie +Anna +Inez +Pearl +Alma +Essie +Agnes +Gertrude +Lula +Hattie +Mae +Maggie +Bertha +Katherine +Fannie +Susie +Daisy +Ida +Carrie +Rose +Barbara +Cora +Estelle +Mabel +Viola +Marguerite +Laura +Sara +Nancy +Eleanor +Lucile +Vivian +Geneva +Hilda +Mable +Alberta +Naomi +Audrey +Blanche +Dora +Ernestine +Lena +Christine +Johnnie +Elsie +Velma +Esther +Georgia +Katie +Leola +Leona +Corine +Jean +Jeanette +Kathryn +Lucy +Marion +Ann +Beulah +Geraldine +Janie +Sadie +Stella +Eloise +Eula +Henrietta +Jennie +Ollie +Violet +Wilma +Anne +Flossie +Joyce +Nora +Ada +Ellen +Emily +Jane +Lorraine +Margie +Allie +Jewel +Lizzie +Lottie +Bonnie +Carolyn +Charlotte +Erma +Gloria +Kathleen +Miriam +Gussie +Iris +Leila +Lydia +Ola +Roberta +Victoria +Addie +Flora +Jimmie +Lola +Patricia +Rachel +Winifred +Dolores +Effie +Isabel +Jewell +Lila +Lorene +Maude +Olga +Ora +Sallie +Carmen +Estella +Irma +Muriel +Nettie +Queen +Rosetta +Shirley +Amy +Anita +June +Marian +Norma +Odessa +Rebecca +Sybil +Theresa +Billie +Christina +Idella +Myrtice +Ophelia +Pearlie +Susan +Sylvia +Winnie +Clarice +Cleo +Elouise +Harriet +Hortense +Josie +Lela +Myra +Rosalie +Callie +Clifford +Earnestine +Eddie +Eliza +Ina +Iva +Lenora +Maria +Matilda +Mercedes +Olive +Ouida +Priscilla +Della +Doretha +Elma +Fay +Frankie +Gwendolyn +Jacqueline +Jannie +Jeannette +Lilly +Lily +Madeline +Melba +Phyllis +Retha +Wilhelmina +Willa +Albertha +Aline +Alta +Corinne +Etta +Florida +Freda +Lee +Merle +Mollie +Nadine +Opal +Reba +Rosie +Sally +Virgie +Adele +Amanda +Amelia +Arrie +Caroline +Claudia +Dollie +Dolly +Elnora +Genevieve +Imogene +Isabelle +Mazie +Millie +Patsy +Rena +Rita +Ruthie +Yvonne +Adeline +Alva +Angeline +Angie +Charlie +Delia +Elaine +Florine +Francis +Hannah +Ira +Louvenia +Marina +May +Nona +Olivia +Onelia +Polly +Rosalee +Theo +Tommie +Vernell +Alene +Antonia +Aurora +Avis +Bennie +Bertie +Bettie +Carol +Cassie +Connie +Cornelia +Dessie +Dorothea +Dorthy +Edwina +Edythe +Elise +Elvie +Estell +Ester +Faith +Gracie +Idell +Ila +Iona +Isabell +Jaunita +Jeanne +Joan +Johnie +Kate +Keturah +Laurette +Letha +Linnie +Lorine +Luella +Marcella +Margarette +Maud +Maxine +Mozelle +Myrtis +Nina +Nita +Orene +Peggy +Pinkie +Robbie +Rosemary +Ruther +Tillie +Verdie +Vernice +Vina +Zelma +Mary +Dorothy +Margaret +Annie +Helen +Ruth +Mildred +Elizabeth +Frances +Willie +Doris +Evelyn +Louise +Alice +Thelma +Lillian +Edna +Ruby +Marie +Virginia +Gladys +Hazel +Edith +Sarah +Lillie +Rosa +Ethel +Bernice +Lucille +Martha +Betty +Juanita +Lois +Bessie +Florence +Bertha +Mattie +Nellie +Clara +Marjorie +Beatrice +Inez +Minnie +Ella +Josephine +Emma +Catherine +Ida +Myrtle +Eunice +Grace +Jessie +Laura +Eva +Mamie +Alma +Essie +Katherine +Maggie +Julia +Lula +Pauline +Vera +Anna +Carrie +Gertrude +Viola +Irene +Daisy +Hattie +Barbara +Vivian +Jean +Alberta +Nancy +Agnes +Eloise +Esther +Hilda +Ann +Cora +Wilma +Lucile +Dora +Mae +Marguerite +Norma +Pearl +Susie +Blanche +Eleanor +Elsie +Eula +June +Lucy +Rose +Fannie +Jane +Mabel +Addie +Flora +Janie +Katie +Marion +Nettie +Ernestine +Geneva +Audrey +Ellen +Estelle +Iris +Johnnie +Leona +Sara +Lola +Naomi +Joyce +Leola +Nell +Ola +Violet +Christine +Geraldine +Jennie +Kathleen +Kathryn +Mable +Anne +Beulah +Charlotte +Ollie +Patricia +Gwendolyn +Lena +Maude +Cleo +Erma +Jeanette +Margie +Velma +Carmen +Lottie +Maxine +Olga +Rebecca +Rosalie +Victoria +Gussie +Jewel +Carolyn +Claudia +Doretha +Elouise +Flossie +Georgia +Gracie +Jewell +Leila +Lenora +Melba +Muriel +Myrtice +Elnora +Irma +Madeline +Nora +Olivia +Sybil +Corine +Eddie +Emily +Genevieve +Gloria +Lela +Lessie +Lorene +Opal +Rosetta +Stella +Sylvia +Theresa +Ada +Earnestine +Merle +Miriam +Rachel +Sadie +Anita +Effie +Frankie +Henrietta +Jeanne +Joan +Lydia +Maria +Marian +Olive +Phyllis +Sally +Allie +Bonnie +Constance +Elma +Harriet +Isabel +Lila +Mollie +Ora +Queen +Roberta +Shirley +Verna +Winnie +Billie +Clarice +Dolores +Etta +Eugenia +Isabelle +Josie +May +Mercedes +Myra +Adelaide +Cassie +Cornelia +Estella +Idella +Lily +Linnie +Millie +Odessa +Peggy +Winifred +Albertha +Amelia +Bertie +Caroline +Coretha +Della +Dorthy +Florida +Ina +Iva +Janet +Jannie +Lelia +Lilly +Rena +Rosalee +Rosie +Sophie +Susan +Wilhelmina +Willa +Adele +Adeline +Amanda +Annette +Bobbie +Corinne +Dalia +Delia +Dollie +Eileen +Elaine +Elva +Ila +Imogene +Jimmie +Leatha +Lee +Matilda +Myrtis +Nina +Pearlie +Rhoda +Rita +Roxie +Sallie +Vida +Angelina +Beverly +Clyde +Elise +Erie +Florine +Francis +Hortense +Inell +Ira +Joe +Julie +Lilla +Lizzie +Loretta +Lorraine +Mazie +Nona +Ophelia +Ouida +Priscilla +Robbie +Rosebud +Rutha +Ruthie +Sue +Alfreda +Althea +Alva +Ara +Arlene +Berniece +Bettie +Celia +Charity +Christina +Dorothea +Dorris +Elease +Fay +Freddie +Harriett +Iona +Laverne +Leonora +Lou +Louisa +Lovie +Lucinda +Marcella +Mariah +Mittie +Mozell +Neva +Perry +Polly +Rosemary +Rossie +Selma +Veronica +Mary +Dorothy +Margaret +Helen +Annie +Mildred +Ruth +Elizabeth +Louise +Frances +Doris +Willie +Evelyn +Thelma +Virginia +Edna +Ruby +Gladys +Alice +Hazel +Bernice +Lillian +Juanita +Ethel +Edith +Lillie +Lois +Marie +Marjorie +Florence +Martha +Lucille +Sarah +Irene +Betty +Inez +Minnie +Catherine +Grace +Bertha +Emma +Ida +Myrtle +Jessie +Beatrice +Bessie +Eva +Alma +Josephine +Vera +Mattie +Rosa +Clara +Anna +Carrie +Daisy +Julia +Pauline +Katherine +Lula +Elsie +Nellie +Essie +Viola +Geraldine +Rose +Agnes +Eloise +Vivian +Gertrude +Laura +Mamie +Cora +Pearl +Margie +Ella +Eunice +Maggie +Sara +Jean +Marion +Hattie +Kathryn +Norma +Susie +Ernestine +Marguerite +Eleanor +June +Lucy +Wilma +Dora +Fannie +Alberta +Barbara +Estelle +Esther +Gloria +Johnnie +Lucile +Mae +Nancy +Audrey +Ollie +Kathleen +Rebecca +Violet +Christine +Hilda +Beulah +Jewel +Katie +Patricia +Carolyn +Cleo +Flora +Janie +Mabel +Velma +Blanche +Charlotte +Geneva +Lena +Lottie +Naomi +Ann +Bonnie +Georgia +Iris +Leona +Lorene +Marian +Opal +Eula +Jane +Leola +Mable +Miriam +Ellen +Carmen +Emily +Frankie +Nettie +Anne +Billie +Ola +Rachel +Sallie +Shirley +Dolores +Gwendolyn +Idella +Lorraine +Mercedes +Ouida +Peggy +Rosie +Sybil +Ada +Effie +Maxine +Sadie +Sylvia +Flossie +Jewell +Lenora +Lola +Stella +Verna +Wanda +Anita +Irma +Jeanne +Leila +Nell +Nina +Olga +Olive +Rosalie +Rosetta +Winifred +Amanda +Corine +Elnora +Estella +Harriet +Henrietta +Jennie +Lessie +Maria +Maude +Merle +Myrtice +Theresa +Addie +Albertha +Clarice +Erma +Gracie +Jeanette +Josie +Lizzie +Lydia +Roberta +Allie +Amelia +Doretha +Etta +Eugenia +Genevieve +Matilda +Melba +Pearlie +Willa +Callie +Carol +Cornelia +Elouise +Joyce +Lila +Ora +Queen +Robbie +Ruthie +Virgie +Earnestine +Faye +Ila +Ina +Isabell +Laverne +Lee +Lela +Letha +Lilla +Luella +May +Muriel +Myra +Myrtis +Nelda +Nora +Ophelia +Phyllis +Priscilla +Rosemary +Sally +Tommie +Aline +Bette +Bettie +Birdie +Caroline +Claudia +Della +Dorothea +Eddie +Eliza +Francis +Gussie +Jeannette +Jimmie +Lily +Mavis +Rena +Rutha +Susan +Trudie +Victoria +Yvonne +Aida +Althea +Beverly +Celia +Constance +Florida +Hortense +Iola +Isabel +Isabelle +Madge +Margery +Marilyn +Odessa +Pinkie +Rita +Vida +Winnie +Agatha +Alta +Bettye +Clifford +Corrine +Dollie +Elinor +Elma +Florine +Freddie +Harriette +Imogene +Ira +Jacqueline +Jannie +Johnie +Loraine +Lorena +Madeline +Margarette +Mariah +Myrtie +Retha +Roxie +Rubye +Sue +Zelma +Zenaida +Adelaide +Alicia +Allene +Alyce +Amy +Angie +Annette +Cassie +Charlie +Christina +Claire +Claudie +Dolly +Donnie +Elaine +Elease +Elvira +Fay +Harriett +Inell +James +Janet +Janice +Joan +Jonnie +Lelia +Linnie +Loretta +Madie +Marcia +Margarita +Marietta +Ofelia +Onie +Phoebe +Savannah +Syble +Verdell +Vesta +Mary +Dorothy +Margaret +Ruth +Annie +Helen +Mildred +Louise +Elizabeth +Evelyn +Doris +Ruby +Frances +Virginia +Edna +Willie +Thelma +Ethel +Betty +Alice +Gladys +Martha +Edith +Lillie +Lillian +Juanita +Lois +Hazel +Bernice +Rosa +Sarah +Marie +Marjorie +Ida +Inez +Bertha +Irene +Clara +Lucille +Catherine +Bessie +Minnie +Josephine +Pauline +Anna +Florence +Grace +Myrtle +Laura +Julia +Geraldine +Jessie +Vera +Vivian +Essie +Nellie +Alma +Mattie +Eva +Gertrude +Norma +Rose +Beatrice +Emma +Gloria +Katherine +Mae +Mamie +Jean +Viola +Wilma +Daisy +Lula +Pearl +Agnes +Carrie +Elsie +Ella +Marguerite +Esther +Barbara +Christine +Eloise +Alberta +Eleanor +Kathryn +Mable +Margie +Violet +Eunice +Johnnie +Rebecca +Audrey +Dora +Hattie +Lucy +Maggie +Sara +Ann +Lucile +Fannie +Nancy +Patricia +Ernestine +Georgia +Naomi +Charlotte +Geneva +Joyce +Kathleen +Marion +Susie +Ola +Blanche +Cora +Ellen +Flora +Mabel +Emily +Estelle +Eula +Marian +Bonnie +Jane +Maude +Winifred +Addie +Flossie +Hilda +Lorene +Olga +Shirley +Beulah +Jennie +Jewel +June +Corine +Effie +Iris +Katie +Myrtice +Carolyn +Henrietta +Lola +Rachel +Gussie +Harriet +Lena +Lottie +Peggy +Stella +Theresa +Lily +Muriel +Ora +Sadie +Sallie +Anita +Dolores +Etta +Frankie +Gwendolyn +Irma +Janie +Leila +Leola +Opal +Sylvia +Velma +Victoria +Ada +Anne +Elouise +Idella +Jewell +Olive +Ollie +Pearlie +Allie +Eddie +Estella +Jeanette +Miriam +Nell +Leona +Lorraine +Lydia +Maria +Maxine +Nettie +Phyllis +Rita +Sally +Callie +Carmen +Cleo +Florida +Nina +Nora +Rosetta +Doretha +Elnora +Erma +Jacqueline +Lizzie +Merle +Wanda +Cassie +Constance +Earnestine +Gracie +Ila +Josie +Mercedes +Ophelia +Rena +Sue +Vida +Winnie +Annette +Billie +Della +Dessie +Francis +Genevieve +Jeannette +Lenora +Madeline +Melba +Rosalie +Carol +Elease +Elise +Fay +Hettie +Janice +Jeanne +Jimmie +Joan +Marilyn +May +Nadine +Odessa +Queen +Rosie +Bertie +Cathryn +Celia +Charlie +Clarice +Connie +Edwina +Faye +Isabel +Janet +Jannie +Letha +Lettie +Lou +Ouida +Retha +Robbie +Roberta +Susan +Bette +Claudia +Clyde +Earline +Edythe +Eliza +Elmira +Floy +Freda +Iola +Lee +Lela +Lenore +Lila +Lilly +Loretta +Mazie +Millie +Myra +Nola +Olivia +Ruthie +Sybil +Verna +Virgie +Voncile +Wilhelmina +Willa +Aline +Altamese +Alva +Aretha +Aurora +Belle +Caroline +Claudie +Corrine +Delores +Dorthy +Eileen +Elva +Elvira +Hester +Isabelle +Iva +James +Jaunita +Judy +Lessie +Lilla +Linnie +Lora +Madge +Maudie +Mavis +Mollie +Nita +Oma +Rosemary +Rubye +Yvonne +Abbie +Adelaide +Albertha +Alyce +Amelia +Amy +Antoinette +Betsy +Bettie +Bettye +Camilla +Catharine +Cecilia +Celestine +Claire +Delia +Dollie +Donnie +Dorothea +Elena +Eugenia +Freddie +Imogene +Jacquelyn +Kate +Lelia +Lina +Luella +Lura +Luvenia +Madelyn +Marcia +Mittie +Mozelle +Neva +Odell +Oretha +Pansy +Paula +Reatha +Rossie +Selma +Theola +Vada +Velia +Verdie +Mary +Dorothy +Margaret +Helen +Mildred +Annie +Ruth +Elizabeth +Doris +Louise +Betty +Willie +Ruby +Evelyn +Thelma +Alice +Frances +Martha +Virginia +Lillian +Edna +Juanita +Edith +Gladys +Marie +Marjorie +Hazel +Ethel +Rosa +Catherine +Bernice +Lois +Emma +Sarah +Lillie +Grace +Eva +Josephine +Julia +Clara +Florence +Ida +Alma +Beatrice +Jessie +Bertha +Myrtle +Inez +Lucille +Nellie +Rose +Anna +Barbara +Bessie +Carrie +Ella +Jean +Irene +Minnie +Norma +Pauline +Agnes +Daisy +Gloria +Katherine +Mattie +Vera +Pearl +Viola +Vivian +Eunice +Geraldine +Mae +Elsie +Esther +Margie +Eleanor +Hattie +Mamie +Violet +Wilma +Audrey +Laura +Emily +Essie +Fannie +Cora +Johnnie +Lucile +Marguerite +Sara +Charlotte +Christine +Joyce +Lula +Gertrude +Kathryn +Mable +Marion +Naomi +Eloise +June +Mabel +Marian +Shirley +Carolyn +Nancy +Alberta +Ann +Lucy +Susie +Bonnie +Ernestine +Rebecca +Eula +Lottie +Patricia +Beulah +Dora +Georgia +Hilda +Kathleen +Maggie +Geneva +Velma +Ellen +Flossie +Iris +Jewel +Jewell +Olga +Sallie +Verna +Blanche +Cleo +Flora +Jennie +Leola +Leona +Myrtice +Opal +Erma +Jane +Katie +Sylvia +Anne +Elouise +Lena +Lizzie +Nina +Ada +Ollie +Anita +Estella +Estelle +Jacqueline +Lola +Roberta +Theresa +Victoria +Henrietta +Irma +Nell +Phyllis +Stella +Wanda +Dolores +Gracie +Maxine +Nettie +Rosetta +Faye +Frankie +Gwendolyn +Harriet +Jeanette +Jeanne +Peggy +Queen +Addie +Lilly +Marilyn +Miriam +Olive +Ouida +Rosalie +Sadie +Sybil +Bette +Carmen +Carol +Constance +Delores +Earnestine +Mercedes +Nora +Yvonne +Claudia +Della +Idella +Lenora +Lorraine +Ola +Rachel +Billie +Caroline +Clarice +Corine +Doretha +Effie +Francis +Gussie +Iva +Janet +Lila +Lorene +Maude +Merle +Myra +Nadine +Sally +Willa +Allie +Altamese +Clyde +Dorothea +Elaine +Janie +Jeannette +Jimmie +Joan +Laverne +Leila +Lettie +Lucinda +Luella +Retha +Rosemary +Amanda +Claire +Deloris +Dollie +Donna +Eddie +Eliza +Isabel +Jannie +Lily +Lou +Odessa +Ophelia +Vida +Winifred +Winnie +Alene +Alta +Callie +Cynthia +Elnora +Genevieve +Isabelle +Lela +Lydia +Marcia +May +Olivia +Ora +Pansy +Rita +Sue +Theola +Adell +Albertha +Amelia +Amy +Arlene +Bettye +Bobbie +Charlie +Connie +Dorris +Etta +Fay +Florine +Freda +Lessie +Madeline +Madge +Maria +Mavis +Muriel +Pearlie +Ruthie +Verdell +Aileen +Allene +Angie +Annabelle +Annette +Corinne +Delia +Dorthy +Earline +Edwina +Elease +Florida +Freddie +Hannah +Harriett +Harriette +Hortense +Jacquelyn +Joy +Loretta +Louvenia +Mazie +Melba +Ocie +Reba +Susan +Theda +Tommie +Alicia +Altha +Arrie +Bertie +Bettie +Beverly +Carmela +Clifford +Coral +Corene +Cornelia +Corrine +Dixie +Dolly +Eileen +Elise +Ellie +Elvia +Enid +Ethelyn +Ila +Ina +Jackie +Janice +Jaunita +Jerry +Jo +Joe +Johnie +Jonnie +Josie +Judith +Lelia +Letha +Linda +Margarette +Millie +Mollie +Mozelle +Myrtis +Nita +Patsy +Rosie +Rubie +Selma +Virgie +Wilhelmina +Zelma +Mary +Dorothy +Margaret +Betty +Helen +Mildred +Ruth +Elizabeth +Annie +Doris +Frances +Louise +Willie +Evelyn +Thelma +Ruby +Alice +Virginia +Martha +Gladys +Edna +Juanita +Lillian +Marie +Marjorie +Hazel +Lois +Bernice +Edith +Ethel +Sarah +Lillie +Florence +Rosa +Catherine +Bessie +Bertha +Eva +Ida +Myrtle +Alma +Josephine +Vera +Lucille +Anna +Minnie +Jessie +Julia +Barbara +Jean +Clara +Gloria +Grace +Katherine +Agnes +Irene +Patricia +Elsie +Lula +Mattie +Geraldine +Hattie +Daisy +Emma +Laura +Naomi +Vivian +Beatrice +Esther +Pauline +Viola +Ella +Eloise +Inez +Rose +Nellie +Eunice +Marion +Nancy +Ann +Kathryn +Carrie +Essie +Pearl +Violet +Johnnie +Norma +Sara +Shirley +Maggie +Peggy +Carolyn +Eleanor +Flora +Joyce +Mae +Gertrude +Jane +Rebecca +Audrey +Christine +June +Geneva +Mamie +Alberta +Charlotte +Katie +Mabel +Marguerite +Marian +Blanche +Lucy +Margie +Susie +Ernestine +Elouise +Hilda +Cora +Dora +Ellen +Eula +Georgia +Roberta +Bonnie +Estelle +Fannie +Jennie +Lucile +Kathleen +Olga +Rachel +Beulah +Iris +Mable +Ollie +Sallie +Jewel +Lottie +Nettie +Phyllis +Elnora +Irma +Jewell +Lola +Ola +Wilma +Cleo +Miriam +Nina +Bette +Bobbie +Doretha +Harriet +Jacqueline +Lorraine +Ora +Queen +Stella +Sylvia +Wanda +Anne +Carol +Emily +Frankie +Jeanette +Lena +Leola +Leona +Myrtice +Velma +Victoria +Ada +Billie +Gwendolyn +Joan +Lenora +Lorene +Maxine +Mercedes +Opal +Theresa +Anita +Carmen +Nora +Rosalie +Winifred +Eddie +Erma +Faye +Lily +Nell +Constance +Janie +Jeanne +Verna +Allie +Bettie +Connie +Corine +Dolores +Etta +Eugenia +Lee +Leila +Lila +Merle +Rosetta +Rutha +Sadie +Yvonne +Claudia +Elaine +Elma +Estella +Gussie +Janet +Lessie +Madeline +Mavis +Muriel +Ouida +Ruthie +Addie +Caroline +Effie +Eileen +Genevieve +Harriett +Lizzie +Luella +Rosie +Susan +Amanda +Donna +Florine +Francis +Henrietta +Idella +Janice +Josie +May +Olive +Ophelia +Reba +Rosemary +Sybil +Albertha +Callie +Delores +Earline +Flossie +Freddie +Gracie +Ina +Iva +Laverne +Lydia +Melba +Rita +Roxie +Vida +Althea +Amy +Bertie +Celia +Dollie +Florida +Hortense +Jacquelyn +Jo +Joy +Lela +Letha +Lorine +Myra +Nadine +Tommie +Aline +Alta +Angelina +Claire +Clarice +Clyde +Deloris +Dolly +Dorthy +Earnestine +Imogene +Jimmie +John +Johnie +Loretta +Marilyn +Myrtis +Patsy +Rubye +Selma +Sue +Adeline +Adell +Angie +Annette +Bettye +Cassie +Charlie +Clementine +Colleen +Delia +Eartha +Floy +Hester +Jeannette +Kate +Lettie +Lilly +Loretha +Lucinda +Maebell +Maude +Odessa +Pearlie +Retha +Rosalee +Arlene +Artie +Beverly +Birdie +Cecelia +Cornelia +Dalia +Edwina +Eliza +Elvira +Evangeline +Freida +Ira +James +Lelia +Lora +Louvenia +Maria +Millie +Pearly +Priscilla +Reva +Robbie +Sally +Sibyl +Teresa +Vernell +Allene +Amelia +Augusta +Caridad +Cathryn +Coretha +Corinne +Della +Dessie +Doreatha +Dovie +Earlene +Easter +Edythe +Elois +Evie +Ila +Isabel +Jerry +Leatha +Liza +Lonnie +Loyce +Marcia +Millicent +Myrtie +Natalie +Ofelia +Olivia +Ossie +Reather +Regina +Rena +Rhoda +Sandra +Sophia +Vallie +Verda +Voncile +Willa +Winnie +Winnifred +Winona +Mary +Dorothy +Betty +Margaret +Helen +Annie +Ruth +Elizabeth +Doris +Mildred +Evelyn +Louise +Ruby +Frances +Edna +Martha +Thelma +Alice +Virginia +Juanita +Willie +Lillie +Gladys +Gloria +Rosa +Barbara +Lois +Marjorie +Hazel +Sarah +Bernice +Marie +Ethel +Edith +Catherine +Emma +Lillian +Patricia +Clara +Julia +Lucille +Jessie +Anna +Minnie +Grace +Bertha +Jean +Mattie +Vera +Pauline +Irene +Eva +Ida +Josephine +Bessie +Ella +Inez +Joyce +Florence +Carrie +Mae +Beatrice +Myrtle +June +Carolyn +Christine +Mamie +Rose +Alma +Eleanor +Elsie +Marian +Essie +Nellie +Vivian +Ann +Johnnie +Katherine +Pearl +Viola +Eloise +Laura +Fannie +Shirley +Geraldine +Jane +Marion +Hilda +Margie +Wilma +Agnes +Daisy +Esther +Norma +Sara +Eunice +Gertrude +Charlotte +Lula +Kathleen +Nancy +Alberta +Geneva +Audrey +Hattie +Mable +Miriam +Violet +Emily +Lucile +Rebecca +Bonnie +Katie +Peggy +Cora +Flora +Marguerite +Naomi +Winifred +Gwendolyn +Kathryn +Maxine +Ollie +Georgia +Anne +Jacqueline +Lucy +Mabel +Opal +Beulah +Eula +Harriet +Janie +Jeanne +Maggie +Susie +Ernestine +Jennie +Dora +Jewell +Sylvia +Ada +Billie +Rachel +Iris +Marilyn +Nettie +Ora +Erma +Estelle +Gracie +Lizzie +Sadie +Addie +Blanche +Elouise +Henrietta +Joan +Lola +Maude +Nell +Wanda +Lena +Lessie +Lorene +Muriel +Myrtice +Olga +Phyllis +Victoria +Bobbie +Cleo +Faye +Frankie +Jewel +Roberta +Sallie +Velma +Allie +Corine +Dolores +Jeanette +Leola +Lorraine +Lottie +Lydia +Madeline +Queen +Rutha +Anita +Eddie +Flossie +Leona +Myra +Nina +Ophelia +Stella +Carol +Clarice +Genevieve +Lenora +Mercedes +Merle +Nora +Ola +Theresa +Vernell +Bettie +Donna +Florida +Janet +Janice +Josie +Loretta +Ouida +Rita +Roxie +Constance +Effie +Elaine +Estella +Irma +Iva +Odessa +Olive +Rosalie +Rosetta +Verna +Willa +Amelia +Bette +Dollie +Earline +Etta +James +Jeannette +Lee +Lila +Robbie +Rosie +Yvonne +Albertha +Celia +Colleen +Delia +Earnestine +Elma +Gussie +Idella +Ina +Jimmie +Lela +Mollie +Priscilla +Sybil +Angie +Carmen +Cornelia +Della +Delores +Dolly +Edythe +Francis +Jacquelyn +Jannie +Mavis +May +Melba +Patsy +Paula +Sally +Vida +Celestine +Claudia +Dorothea +Easter +Eliza +Ellen +Elnora +Eugenia +Fay +Freddie +John +Joy +Laverne +Nadine +Ossie +Sue +Aida +Allene +Althea +Amanda +Annette +Bettye +Christina +Corinne +Donnie +Eartha +Florine +Florrie +Hester +Hettie +Lily +Linda +Lou +Maria +Mazie +Pearlie +Polly +Reba +Rubye +Ruthie +Zelda +Adelaide +Aline +Bennie +Bertie +Claire +Doretha +Eileen +Elva +Hannah +Isabel +Isabell +Jaunita +Jerry +Judy +Leatrice +Leila +Lettie +Lorine +Madge +Olivia +Selma +Susan +Wilhelmina +Annabelle +Beverly +Bloneva +Callie +Caroline +Cassie +Cecelia +Cecil +Charlie +Claudie +Connie +Elinor +Ester +Gene +Goldie +Hortense +Ira +Isabelle +Kathrine +Letha +Linnie +Lovie +Marjory +Millie +Nita +Rhoda +Rosemary +Ruther +Tommie +Verdie +Virgie +Abbie +Alene +Alfreda +Almeda +Amy +Aretha +Beaulah +Berniece +Clyde +Coretha +Dalia +Doreatha +Dorris +Dorthy +Elease +Ellouise +Emilie +Evangeline +Evie +Fanny +Georgina +Hallie +Henry +Ila +Imogene +Jackie +Joe +Johnie +Leonora +Lilly +Lonnie +Lorena +Louvenia +Luella +Mammie +Marietta +Matilda +Nelda +Onelia +Rena +Rosalee +Rudolph +Terry +Tessie +Winona +Mary +Dorothy +Betty +Margaret +Helen +Doris +Mildred +Frances +Ruth +Annie +Elizabeth +Louise +Evelyn +Virginia +Alice +Barbara +Thelma +Martha +Edna +Willie +Gloria +Ruby +Juanita +Hazel +Lillian +Lois +Marjorie +Jean +Rosa +Gladys +Catherine +Edith +Bernice +Ethel +Lillie +Marie +Patricia +Sarah +Pauline +Joyce +Ida +Katherine +Florence +Josephine +Bertha +Mattie +Lucille +Julia +Marion +Anna +Myrtle +Nancy +Emma +Irene +Shirley +Ella +Clara +Grace +Geraldine +Minnie +Rose +Beatrice +Eleanor +Bessie +Ann +Eva +Norma +Vivian +Essie +Laura +Vera +Inez +Lula +Carrie +Alma +Jane +Carolyn +Jessie +Kathryn +Margie +Charlotte +Johnnie +June +Nellie +Sara +Audrey +Geneva +Mae +Peggy +Wilma +Cora +Eloise +Ernestine +Mamie +Hilda +Marian +Christine +Maggie +Eunice +Esther +Gertrude +Daisy +Elsie +Agnes +Kathleen +Pearl +Iris +Jacqueline +Susie +Violet +Hattie +Viola +Anne +Fannie +Jeanne +Emily +Mable +Dolores +Dora +Joan +Maxine +Ollie +Marilyn +Alberta +Georgia +Lucile +Ola +Rachel +Elouise +Estelle +Flora +Katie +Lucy +Marguerite +Sylvia +Ellen +Phyllis +Rebecca +Ada +Blanche +Jeanette +Jennie +Naomi +Sadie +Sallie +Sally +Eula +Gwendolyn +Jewel +Nettie +Velma +Yvonne +Bettie +Leona +Beverly +Billie +Lena +Constance +Janie +Bonnie +Lenora +Mabel +Nina +Theresa +Beulah +Irma +Lola +Olga +Patsy +Wanda +Winifred +Erma +Frankie +Laverne +Myrtice +Addie +Estella +Maude +Opal +Rosalie +Verna +Faye +Harriet +Jewell +Lorraine +Nell +Nora +Roberta +Rosemary +Susan +Allie +Anita +Doretha +Francis +Lorene +Pearlie +Sybil +Bettye +Carol +Fay +Myra +Nadine +Rosetta +Bobbie +Cynthia +Elaine +Jeannette +Joy +Lottie +Miriam +Muriel +Reba +Stella +Bette +Carmen +Earnestine +Elnora +Henrietta +Rita +Willa +Colleen +Della +Imogene +Janet +Jannie +Leola +Lessie +Mercedes +Olive +Altamese +Clarice +Flossie +Gussie +Jacquelyn +Jo +Lydia +Olivia +Rutha +Cleo +Corine +Effie +Ina +Iva +Madeline +Melba +Merle +Odessa +Ruthie +Albertha +Alene +Charlie +Claudia +Connie +Dolly +Edwina +Eileen +Elease +Eugenia +Genevieve +Jackie +Jimmie +Joanne +Josie +Lelia +Millie +Victoria +Allene +Claire +Delores +Eddie +Eliza +Etta +Florida +Florine +Lela +Lila +Lily +Myrtis +Pansy +Rena +Winnie +Aline +Angie +Annette +Caroline +Clifford +Dalia +Dollie +Dorthy +Isabelle +Letha +Lorine +Margarette +Maria +Nona +Ora +Priscilla +Queen +Retha +Tommie +Aileen +Althea +Amy +Angeline +Arlene +Callie +Carmel +Cecelia +Dessie +Donna +Donnie +Easter +Gracie +Idella +Ila +Janice +Jaunita +Joann +Judy +Lee +Lizzie +Loretta +Molly +Ophelia +Ouida +Polly +Robbie +Rosie +Suzanne +Tessie +William +Abbie +Amanda +Amelia +Bertie +Cassie +Charlene +Corrine +Dixie +Dorris +Elinor +Elise +Florene +Freddie +Glenna +Isabel +Isabella +Lilla +Maud +May +Renee +Rubye +Sue +Vernell +Veronica +Alfreda +Alicia +Cecil +Christina +Daphne +Dona +Earlene +Edythe +Elvira +Freda +Iola +Kathleene +Leila +Louvenia +Lucinda +Luella +Lulu +Marcia +Margarita +Mollie +Richard +Robert +Rubie +Syble +Teresa +Voncile +Alethia +Alyce +Aretha +Berniece +Birdie +Blanch +Celia +Corinne +Dovie +Earline +Elva +Evelyne +Faith +Georgie +Hannah +Harriett +Helena +Hope +Hortense +James +Joe +Johnie +Jonnie +Judith +Junita +Katrina +Leah +Madelyn +Madge +Margery +Mavis +Mona +Mozelle +Natalie +Rachael +Reatha +Rosalee +Sharon +Sophia +Theo +Vida +Wilda +Yolanda +Zenaida +Mary +Dorothy +Betty +Margaret +Mildred +Helen +Doris +Frances +Annie +Ruth +Evelyn +Virginia +Louise +Elizabeth +Barbara +Martha +Thelma +Alice +Juanita +Ruby +Willie +Edna +Lois +Gloria +Marie +Gladys +Catherine +Sarah +Bernice +Jean +Patricia +Ethel +Hazel +Rosa +Shirley +Lillian +Marjorie +Joyce +Edith +Lillie +Beatrice +Rose +Irene +Marion +Emma +Inez +Bertha +Florence +Alma +Bessie +Clara +Mattie +Ida +Lucille +Nancy +Pauline +Carrie +Josephine +Grace +Norma +Vera +Eva +Ann +Anna +June +Nellie +Geraldine +Mamie +Carolyn +Minnie +Ella +Julia +Katherine +Laura +Lula +Myrtle +Jane +Jessie +Peggy +Eleanor +Johnnie +Agnes +Vivian +Eunice +Iris +Marian +Eloise +Esther +Gertrude +Hattie +Christine +Mae +Viola +Daisy +Violet +Audrey +Essie +Wilma +Elsie +Kathryn +Margie +Maggie +Charlotte +Naomi +Susie +Cora +Eula +Jacqueline +Roberta +Emily +Geneva +Jewel +Mable +Pearl +Ernestine +Hilda +Jeanette +Jeanne +Blanche +Dora +Ellen +Marilyn +Phyllis +Dolores +Flora +Kathleen +Sara +Gwendolyn +Katie +Fannie +Velma +Erma +Jewell +Joan +Lola +Mabel +Maxine +Ada +Anne +Billie +Elouise +Lena +Leola +Lucile +Rebecca +Wanda +Bettye +Miriam +Sally +Alberta +Janet +Marguerite +Nell +Olga +Opal +Beverly +Bonnie +Janie +Lottie +Ollie +Sallie +Sylvia +Bettie +Elaine +Jennie +Myra +Estelle +Leona +Lucy +Ora +Patsy +Anita +Beulah +Faye +Irma +Joy +Stella +Verna +Winifred +Carmen +Carol +Georgia +Lizzie +Ola +Rachel +Rosemary +Addie +Doretha +Mavis +Mercedes +Nora +Queen +Rosalie +Bobbie +Effie +Elnora +Estella +Lila +Muriel +Sadie +Theresa +Yvonne +Connie +Constance +Gracie +Henrietta +Maude +May +Nina +Pearlie +Claire +Della +Earnestine +Francis +Frankie +Iva +Lenora +Lorene +Lydia +Melba +Rita +Rosetta +Susan +Bette +Cleo +Donna +Gussie +Jackie +Jacquelyn +Jimmie +Leila +Lorraine +Myrtice +Victoria +Willa +Allie +Charlie +Imogene +Jaunita +Madeline +Ophelia +Rosie +Annette +Caroline +Eddie +Ina +Jannie +Joanne +Ouida +Ruthie +Sybil +Angie +Clarice +Dalia +Delores +Flossie +Freddie +Harriet +Harriett +Laverne +Lessie +Lily +Odessa +Olive +Sue +Bennie +Bertie +Claudia +Colleen +Corine +Dorthy +Eartha +Florida +Hannah +Janice +Jeannette +Linda +Maria +Mollie +Altamese +Dolly +Earline +Elinor +Elois +Elvira +Eugenia +Florine +Genevieve +Idella +Jo +Lelia +Millie +Priscilla +Robert +Winnie +Angelina +Avis +Celia +Earlene +Elva +Etta +Fay +Iona +Isabel +Jonnie +Josie +Madge +Marcia +Polly +Retha +Suzanne +Tommie +Vernell +Wilhelmina +Zelma +Aileen +Alfreda +Amelia +Cornelia +Corrine +Cynthia +Delia +Dorothea +Elma +Floy +Hope +Iola +Kay +Lee +Lilly +Lora +Lorine +Lou +Mazie +Nettie +Pansy +Paula +Rosalee +Sophie +Theodora +Adell +Althea +Arlene +Bernessia +Bobby +Callie +Cleopatra +Dollie +Eileen +Goldie +Hortense +Isabelle +James +Lela +Margret +Merle +Myrle +Nadine +Nita +Osie +Regina +Rena +Ruther +Selma +Syble +Abbie +Adrienne +Aida +Amy +Cecil +Christina +Clyde +Corinne +Donnie +Doreatha +Edwina +Eliza +Evangeline +Faith +Freda +Helene +Hester +Judy +Katheryn +Kathrine +Lorena +Loretta +Louisa +Louvenia +Luella +Margarette +Maryland +Maud +Maudie +Melvina +Millicent +Molly +Mona +Natalie +Nelda +Pat +Reatha +Reba +Renee +Roxie +Sidney +Teresa +Virgie +Mary +Dorothy +Betty +Margaret +Helen +Annie +Doris +Ruth +Mildred +Barbara +Evelyn +Martha +Frances +Elizabeth +Louise +Virginia +Alice +Ruby +Patricia +Willie +Edna +Thelma +Gloria +Juanita +Lois +Sarah +Gladys +Joyce +Lillian +Bernice +Catherine +Jean +Shirley +Marjorie +Rosa +Marie +Hazel +Ethel +Bertha +Lillie +Edith +Johnnie +Geraldine +Nancy +Ella +Florence +Myrtle +Grace +Pauline +Lucille +Ann +Laura +Norma +Vera +Bessie +Irene +Ida +Peggy +Anna +Emma +Carolyn +Clara +Rose +Alma +Beatrice +Josephine +June +Carrie +Eva +Inez +Minnie +Ernestine +Mae +Marion +Audrey +Julia +Marian +Vivian +Sara +Elsie +Naomi +Hattie +Pearl +Wilma +Lula +Mattie +Nellie +Charlotte +Christine +Katherine +Esther +Iris +Margie +Eleanor +Jessie +Kathryn +Mamie +Jane +Daisy +Roberta +Wanda +Dora +Billie +Joan +Viola +Dolores +Essie +Gertrude +Hilda +Gwendolyn +Maggie +Maxine +Blanche +Eunice +Yvonne +Geneva +Kathleen +Lucy +Agnes +Beulah +Eloise +Jewel +Ollie +Susie +Beverly +Emily +Fannie +Marilyn +Alberta +Erma +Mable +Nina +Patsy +Phyllis +Velma +Jeanette +Jeanne +Lorraine +Delores +Eula +Lola +Theresa +Bonnie +Mabel +Katie +Melba +Ramona +Sylvia +Cora +Janet +Lucile +Myrtice +Rutha +Winifred +Anne +Bettie +Flora +Georgia +Jacqueline +Leona +Marguerite +Miriam +Sadie +Ada +Anita +Ellen +Leola +Lottie +Opal +Addie +Flossie +Lena +Nell +Rebecca +Rosemary +Sallie +Carol +Cynthia +Eddie +Elouise +Janie +Pearlie +Imogene +Joy +Nettie +Susan +Gussie +Irma +Joanne +Leila +Lorene +Olga +Olive +Ruthie +Violet +Earnestine +Estelle +Francis +Frankie +Harriet +Janice +Jennie +Jewell +Lizzie +Queen +Rachel +Rosalie +Rosetta +Sally +Wilhelmina +Carmen +Clarice +Deloris +Estella +Florida +Genevieve +James +Allene +Bette +Bettye +Bobbie +Dorthy +Elaine +Elnora +Faye +Jackie +Jeannette +Myra +Ora +Verna +Annette +Cleo +Colleen +Lenora +Lessie +Nora +Paula +Reba +Stella +Claudia +Dalia +Donna +Doretha +Earlene +Effie +Gracie +Iva +Merle +Muriel +Ola +Ophelia +Allie +Amelia +Bennie +Caroline +Constance +Corine +Delia +Della +Jacquelyn +Jimmie +Jo +Laverne +Loretta +Madeline +Maude +Sybil +Charlie +Connie +Dolly +Earline +Eileen +Hortense +Jannie +Joann +Josie +Lee +Linda +Lorine +Lou +Luella +Odessa +Pansy +Rita +Rosie +Suzanne +Tommie +Willa +Angie +Blanch +Cassie +Dessie +Dorris +Edwina +Edythe +Elma +Etta +Harriett +Jerry +Joanna +Katharine +Maria +Mavis +May +Thomas +Virgie +Albertha +Altamease +Amy +Celia +Charles +Donnie +Eartha +Eugenia +Freddie +Glenna +Isabelle +Judy +Letha +Lily +Lue +Margarette +Millie +Molly +Myrna +Myrtis +Ofelia +Olivia +Ossie +Ouida +Priscilla +Rena +Rossie +Sharon +Sue +William +Adele +Alene +Altamese +Avis +Berta +Bertie +Bobby +Celestine +Corrine +Daphne +Dixie +Dollie +Florine +Freida +Hannah +Idell +Joe +John +Julie +Kathrine +Lelia +Lila +Lilla +Lilly +Loraine +Louella +Madge +Marcia +Mazie +Mollie +Mozell +Ocie +Omega +Pat +Patty +Peggie +Phoebe +Pinkie +Richard +Roxie +Rubye +Selma +Theola +Veda +Verdell +Vernice +Vida +Voncile +Winona +Zula +Mary +Betty +Dorothy +Helen +Doris +Margaret +Mildred +Barbara +Annie +Frances +Ruth +Elizabeth +Louise +Virginia +Evelyn +Martha +Willie +Joyce +Thelma +Juanita +Ruby +Alice +Hazel +Patricia +Edna +Lois +Rosa +Jean +Marjorie +Gloria +Bernice +Geraldine +Gladys +Ethel +Catherine +Shirley +Sarah +Clara +Lillian +Emma +Rose +Edith +Irene +Lucille +Joan +Nancy +Marie +Mattie +Lillie +Minnie +Alma +Ann +Vivian +Carolyn +Ida +Julia +Norma +Marion +Pauline +Peggy +Anna +Carrie +Ella +Bertha +Dolores +Florence +Vera +Grace +Nellie +Josephine +Laura +Katherine +Audrey +Myrtle +Eva +Johnnie +June +Jessie +Lula +Sara +Bessie +Christine +Inez +Jane +Mamie +Margie +Alberta +Beatrice +Mae +Viola +Charlotte +Gertrude +Kathryn +Cora +Ernestine +Essie +Esther +Eunice +Jacqueline +Anne +Elsie +Geneva +Agnes +Wilma +Billie +Dora +Daisy +Hattie +Marian +Eloise +Hilda +Katie +Maxine +Pearl +Violet +Phyllis +Fannie +Leola +Naomi +Iris +Leona +Lucy +Bobbie +Ellen +Jeanne +Mable +Marilyn +Patsy +Roberta +Wanda +Beulah +Bonnie +Erma +Gwendolyn +Lena +Lucile +Beverly +Flora +Lottie +Eleanor +Estelle +Eula +Kathleen +Sadie +Carol +Faye +Georgia +Jeanette +Maggie +Sue +Carmen +Elouise +Jennie +Jewel +Nettie +Opal +Rebecca +Susie +Addie +Elnora +Emily +Joanne +Sallie +Sylvia +Yvonne +Ada +Delores +Gracie +Janie +Mabel +Miriam +Rachel +Susan +Velma +Winifred +Harriet +Jewell +Rita +Rosemary +Bettie +Lola +Lorraine +Myrtice +Ramona +Sally +Theresa +Jimmie +Marguerite +Nina +Ruthie +Verna +Blanche +Cleo +Earnestine +Ina +Jannie +Joann +Myra +Ola +Olga +Rutha +Charlie +Della +Eddie +Estella +Jo +Joy +Sybil +Victoria +Bettye +Corine +Elaine +Jackie +Lorene +Ollie +Pearlie +Queen +Rosetta +Albertha +Dollie +Doretha +Etta +Frankie +Idella +Jacquelyn +Lee +Lizzie +Loretta +Maude +Muriel +Nell +Ora +Wilhelmina +Willa +Anita +Annette +Claire +Clarice +Connie +Deloris +Flossie +Iona +Irma +Isabel +Josie +Lonnie +Lydia +Margarette +Bertie +Bette +Cecelia +Colleen +Donna +Easter +Edwina +Florida +Freddie +Genevieve +Janet +Janice +Jeannine +Leila +Lelia +Lila +Lily +Maria +Mavis +Mercedes +Millie +Nora +Ophelia +Patty +Priscilla +Reba +Rosalie +Voncile +Angie +Bennie +Caroline +Claudia +Constance +Earlene +Elva +Fay +Francis +Gussie +Iva +James +Lessie +Linnie +Loraine +Madeline +Margery +Merle +Odessa +Robbie +Vernell +Winnie +Althea +Amy +Celia +Christina +Donnie +Dorothea +Dorris +Dorthy +Earline +Effie +Fern +Florrie +George +Henrietta +Ila +Iola +Jeannette +Johnie +Lela +Lenora +Lilly +Lorine +Luella +May +Ofelia +Ouida +Rosie +Stella +Veda +Vilma +Aline +Allie +Altamese +Altha +Amelia +Betsy +Carole +Celeste +Celestine +Coretha +Cynthia +Dolly +Doreatha +Doreen +Eileen +Eliza +Elma +Elmira +Elna +Elvira +Ester +Eugenia +Gearldine +Harriette +Hester +Imogene +Jaunita +Judith +Julie +Leatha +Lettie +Lilla +Lou +Lucinda +Lue +Madie +Melba +Molly +Myrna +Myrtis +Nadine +Olive +Olivia +Ona +Ossie +Pansy +Regina +Reva +Sharon +Theola +Tommie +Verdell +Virgie +Wilhelmena +Yolanda +Mary +Betty +Dorothy +Barbara +Margaret +Doris +Helen +Mildred +Frances +Evelyn +Elizabeth +Ruth +Annie +Martha +Joyce +Thelma +Louise +Alice +Ruby +Willie +Gloria +Patricia +Virginia +Jean +Edna +Juanita +Shirley +Gladys +Sarah +Lois +Catherine +Rosa +Marjorie +Lillie +Bernice +Lillian +Marie +Nancy +Hazel +Ethel +Ida +Vivian +Geraldine +Carolyn +Edith +Emma +Joan +Clara +Laura +Rose +Lucille +Ella +Minnie +Pauline +Dolores +Grace +Ann +Norma +Jane +Josephine +Julia +Vera +Eleanor +Eva +Irene +Jessie +Mae +Myrtle +Peggy +Bertha +June +Marilyn +Anna +Christine +Ernestine +Inez +Marion +Audrey +Charlotte +Eunice +Nellie +Katherine +Delores +Viola +Wanda +Elsie +Mattie +Sara +Florence +Bessie +Agnes +Ellen +Lucy +Carrie +Elouise +Alma +Johnnie +Violet +Daisy +Eloise +Jeanette +Lula +Wilma +Essie +Esther +Marian +Cora +Kathryn +Mamie +Geneva +Hattie +Margie +Sally +Alberta +Eula +Hilda +Janie +Katie +Billie +Joanne +Lena +Susie +Anne +Beatrice +Bobbie +Jacqueline +Erma +Flora +Georgia +Maggie +Pearl +Velma +Bettie +Beverly +Fannie +Gertrude +Maxine +Faye +Jo +Lorraine +Rebecca +Dora +Iris +Naomi +Nettie +Nora +Anita +Emily +Jeanne +Phyllis +Rachel +Rita +Joann +Kathleen +Lenora +Lucile +Myra +Patsy +Theresa +Bettye +Earnestine +Irma +Janice +Lorine +Roberta +Janet +Jewel +Leola +Leona +Verna +Blanche +Carol +Corine +Elaine +Harriet +Mable +Miriam +Olga +Sylvia +Constance +Dollie +Rosemary +Bonnie +Deloris +Eddie +Estelle +Jackie +Jeannette +Jewell +Loretta +Mercedes +Rosie +Sadie +Yvonne +Donna +Flossie +Gwendolyn +Leila +Lydia +Ola +Ollie +Opal +Queen +Winifred +Eliza +Frankie +Freddie +Jacquelyn +Joy +Lila +Lola +Lottie +Nell +Nina +Ophelia +Addie +Albertha +Beulah +Carmen +Lorene +Mabel +Nadine +Pearlie +Reba +Ruthie +Sue +Susan +Ada +Alene +Annette +Caroline +Dolly +Earlene +Elma +Estella +Etta +Gracie +Letha +Mavis +Ora +Rena +Suzanne +Victoria +Altamese +Bette +Charlie +Claudia +Henrietta +Josie +Judith +Linda +Maxie +Merle +Pansy +Priscilla +Ramona +Stella +Cleo +Doretha +Dorothea +Eileen +Elnora +Jennie +John +Lee +Lily +Lizzie +Marguerite +Mona +Myrtice +Nona +Rosetta +Rutha +Sallie +Allie +Amelia +Callie +Clarice +Della +Donnie +Dorthy +Effie +Francis +Gussie +Iona +Jerry +Jimmie +Lela +Lessie +Lonnie +Lucinda +Marcia +Maria +Melba +Neva +Odessa +Olive +Olivia +Rosalie +Sharon +Sheila +Voncile +Zelma +Aline +Bennie +Connie +Cornelia +Cynthia +Florine +Genevieve +George +Harriett +Ina +Isabel +James +Joe +Lona +May +Millie +Mollie +Muriel +Pat +Paula +Robbie +Vida +Winnie +Alicia +Allene +Angie +Antoinette +Bobby +Bonita +Cathryn +Cecilia +Celia +Cherry +Christina +Claire +Daphne +Deborah +Delphine +Edwina +Estell +Fay +Gay +Glenda +Imogene +Inell +Janis +Jeannine +Jenny +Lilly +Louvenia +Loyce +Lulu +Madeline +Madge +Margarette +Myrna +Phoebe +Sammie +Selma +Sybil +Teresa +Verdell +Vernell +Wilhelmina +Zella +Mary +Betty +Dorothy +Barbara +Margaret +Helen +Elizabeth +Doris +Frances +Annie +Mildred +Martha +Patricia +Ruth +Evelyn +Joyce +Virginia +Shirley +Gloria +Alice +Willie +Thelma +Louise +Juanita +Joan +Lois +Ruby +Hazel +Catherine +Edna +Bernice +Lillian +Nancy +Jean +Carolyn +Clara +Sarah +Marjorie +Peggy +Edith +Ethel +Norma +Rosa +June +Marie +Ann +Gladys +Josephine +Emma +Vivian +Johnnie +Lillie +Lucille +Marilyn +Ida +Carrie +Geraldine +Julia +Nellie +Anna +Ella +Laura +Mattie +Alma +Bessie +Pauline +Bertha +Christine +Grace +Margie +Marian +Vera +Delores +Jessie +Dolores +Florence +Minnie +Inez +Katherine +Myrtle +Rose +Irene +Jane +Audrey +Jeanette +Beatrice +Eleanor +Eunice +Elsie +Ernestine +Joanne +Marion +Daisy +Eloise +Jacqueline +Phyllis +Eva +Mae +Sara +Wanda +Gwendolyn +Hattie +Hilda +Beverly +Kathleen +Maggie +Mamie +Patsy +Sylvia +Agnes +Alberta +Bobbie +Bonnie +Charlotte +Essie +Esther +Geneva +Jo +Violet +Wilma +Anne +Billie +Lula +Mable +Carol +Joann +Pearl +Theresa +Flora +Georgia +Katie +Janice +Kathryn +Lucy +Maxine +Viola +Dora +Ellen +Imogene +Joy +Leola +Naomi +Irma +Janie +Rebecca +Anita +Cora +Janet +Nettie +Sallie +Sally +Velma +Ada +Donna +Emily +Eula +Faye +Jeanne +Loretta +Marguerite +Olga +Pearlie +Roberta +Bettie +Bettye +Iris +Jimmie +Leona +Susie +Yvonne +Addie +Constance +Doretha +Earnestine +Fannie +Lola +Ollie +Opal +Vernell +Carmen +Elouise +Jacquelyn +Lena +Lucile +Marlene +Ola +Rita +Ruthie +Sue +Beulah +Connie +Estelle +Fay +Frankie +Gertrude +Jackie +Jeannette +Jewel +Lessie +Lizzie +Mabel +Melba +Miriam +Nina +Blanche +Corine +Deloris +Elaine +Jennie +Letha +Lottie +Queen +Rachel +Rosemary +Rutha +Stella +Caroline +Cecelia +Charlie +Cleo +Effie +Erma +Flossie +Lorraine +Mercedes +Mollie +Muriel +Reba +Rosetta +Sadie +Bette +Clarice +Claudia +Dolly +Gracie +Jewell +Leila +Lila +Lydia +Myra +Rosie +Susan +Verna +Amelia +Annette +Elma +Estella +Gussie +Harriet +Idella +Lelia +Lorene +Myrtice +Odessa +Ora +Wilhelmina +Zelma +Allie +Elnora +Freddie +Henrietta +Inell +Isabella +Jaunita +Jerry +Judy +Louvenia +Mavis +Nell +Nora +Olivia +Patty +Paula +Adell +Albertha +Delia +Della +Eddie +Ina +Joe +Lenora +Lettie +Myrtis +Pansy +Ramona +Retha +Rosalie +Roxie +Syble +Victoria +Alene +Aline +Bertie +Callie +Claire +Dorthy +Elease +Elinor +Glenda +Joycelyn +Lee +Luella +Maria +Nadine +Nelda +Nella +Ophelia +Pat +Rena +Willa +Winifred +Winona +Althea +Amanda +Arlene +Bennie +Carole +Celia +Charlene +Colleen +Conchita +Dalia +Dorcas +Eartha +Florida +Francena +Francis +Genevieve +Harriett +Isabel +James +Jannie +Josie +Kay +Laverne +Loretha +Lorine +Lovie +Marcia +Matilda +Mazie +Mittie +Mona +Nita +Ouida +Ovida +Polly +Priscilla +Robbie +Sharon +Teresa +Tillie +Verlie +Voncile +Mary +Betty +Dorothy +Barbara +Margaret +Helen +Patricia +Martha +Annie +Elizabeth +Doris +Joyce +Frances +Virginia +Evelyn +Ruth +Gloria +Mildred +Shirley +Alice +Ruby +Louise +Juanita +Willie +Nancy +Joan +Sarah +Carolyn +Edna +Catherine +Thelma +Rosa +Lois +Gladys +Lillie +Hazel +Norma +Jean +Peggy +Vera +Edith +Ethel +Marjorie +Bernice +Emma +Marie +Lillian +Ann +Anna +Dolores +Pauline +Vivian +Minnie +Ida +Julia +Rose +Bertha +Florence +Geraldine +Bessie +Clara +Delores +Laura +Lucille +Carrie +Irene +Alma +Eunice +Johnnie +Mattie +Sara +Daisy +Eleanor +Eva +Anne +Constance +Jeanette +Myrtle +Christine +Ella +June +Nellie +Patsy +Beatrice +Bonnie +Josephine +Beverly +Carol +Charlotte +Grace +Jessie +Agnes +Inez +Mae +Marilyn +Wilma +Ellen +Elsie +Joanne +Kathryn +Maxine +Cora +Geneva +Katherine +Bobbie +Essie +Gwendolyn +Jane +Jo +Margie +Marian +Ernestine +Joann +Lula +Jacqueline +Dora +Velma +Audrey +Fannie +Sylvia +Iris +Marion +Eloise +Elouise +Esther +Faye +Janet +Phyllis +Hilda +Irma +Kathleen +Maggie +Naomi +Ollie +Theresa +Hattie +Lucy +Sally +Alberta +Anita +Katie +Rachel +Rebecca +Violet +Wanda +Billie +Erma +Frankie +Gertrude +Joy +Susie +Yvonne +Emily +Leola +Mamie +Roberta +Ada +Bettye +Beulah +Blanche +Earnestine +Flora +Georgia +Lena +Nettie +Pearl +Ruthie +Donna +Jacquelyn +Loretta +Mable +Ola +Viola +Elaine +Janie +Lottie +Melba +Elnora +Jewel +Jewell +Lola +Lucile +Mavis +Myrtice +Nora +Opal +Pearlie +Bettie +Corine +Doretha +Etta +Ina +Jackie +Jeanne +Jennie +Leila +Leona +Lizzie +Queen +Rosetta +Sallie +Harriet +Jimmie +Marlene +Miriam +Myra +Nina +Reba +Sadie +Sue +Wilhelmina +Annette +Charlene +Effie +Gracie +Janice +Kay +Lorene +Rutha +Tommie +Addie +Bette +Carmen +Clarice +Diane +Eddie +Imogene +Laverne +Lydia +Marguerite +Muriel +Nadine +Ora +Rosemary +Vernell +Connie +Cynthia +Eugenia +Henrietta +Jeannette +Lee +Lorraine +Nell +Susan +Sybil +Albertha +Dorthy +Earlene +Estelle +Eula +Iva +Jerry +Josie +Linda +Olga +Stella +Amanda +Bertie +Caroline +Celia +Charlie +Claudia +Della +Earline +Edwina +Elma +Flossie +Francis +Freddie +Gussie +Lenora +Louvenia +Mabel +Polly +Ramona +Allie +Althea +Carole +Dalia +Deloris +Dollie +Estella +Fay +Genevieve +Greta +Hellen +Hortense +James +Judith +Judy +Lila +Lily +Lou +Marcia +Maria +Maud +Mona +Olivia +Pat +Rena +Rita +Sheila +Suzanne +Verdell +Winnie +Alta +Altamese +Alva +Angie +Arlene +Bennie +Cleo +Edythe +Elease +Florine +Harriett +Iola +Janette +Lela +Letha +Linnie +Luella +Madeline +Margarita +Mercedes +Ouida +Pearline +Verna +Victoria +Willa +Winifred +Winona +Bobby +Cecelia +Celestine +Colleen +Cornelia +Diana +Dolly +Dorothea +Easter +Eileen +Elinor +Emmie +Faith +Gail +Georgie +Gwen +Hallie +Idella +Ila +Ira +Jannie +Jeannie +Lessie +Lettie +Lilly +Lora +Luvenia +Marietta +Maude +Myrna +Nelda +Nita +Olive +Ophelia +Patty +Reatha +Retha +Robert +Rosalie +Rosie +Syble +William +Mary +Betty +Dorothy +Barbara +Margaret +Patricia +Helen +Annie +Joyce +Shirley +Martha +Doris +Elizabeth +Frances +Ruth +Alice +Mildred +Carolyn +Gloria +Nancy +Evelyn +Virginia +Jean +Joan +Louise +Juanita +Edna +Norma +Sarah +Peggy +Ruby +Lois +Willie +Hazel +Clara +Bernice +Gladys +Thelma +Ann +Lillian +Lillie +Rosa +Marjorie +Catherine +Geraldine +Ethel +Sylvia +Vivian +Ida +Emma +Eleanor +Vera +Josephine +Florence +Marie +Nellie +Edith +Katherine +Anna +Christine +June +Beverly +Marilyn +Carol +Johnnie +Bobbie +Geneva +Julia +Mattie +Dolores +Eunice +Jane +Jo +Lucille +Joanne +Bertha +Bessie +Delores +Irene +Margie +Mae +Minnie +Ella +Laura +Pauline +Bettye +Carrie +Lula +Patsy +Sara +Alma +Jessie +Janet +Marian +Phyllis +Rose +Charlotte +Esther +Hattie +Inez +Marlene +Myrtle +Naomi +Kathryn +Mamie +Audrey +Elsie +Ernestine +Grace +Katie +Anne +Cora +Faye +Beatrice +Elouise +Eva +Fannie +Marion +Maxine +Wilma +Daisy +Mable +Yvonne +Agnes +Constance +Jeanette +Joann +Billie +Janie +Jewel +Eloise +Gwendolyn +Jacqueline +Lucy +Alberta +Bonnie +Emily +Frankie +Miriam +Pearl +Hilda +Iris +Jacquelyn +Janice +Kathleen +Rebecca +Sally +Anita +Connie +Jimmie +Verna +Wanda +Ada +Elaine +Gertrude +Imogene +Lorene +Maggie +Marguerite +Queen +Sue +Dora +Ellen +Erma +Essie +Georgia +Joy +Leola +Susie +Annette +Rachel +Roberta +Violet +Deloris +Elnora +Eula +Flora +Irma +Jewell +Lessie +Loretta +Myrtice +Nettie +Ola +Pearlie +Sadie +Theresa +Bettie +Blanche +Donna +Gracie +Jeannette +Leona +Lottie +Myra +Nora +Ollie +Opal +Pat +Sandra +Velma +Viola +Addie +Allie +Corine +Cynthia +Diane +Edwina +Estelle +Freddie +Gussie +Melba +Nina +Olga +Olive +Rosetta +Harriet +Henrietta +Jeanne +Judith +Lee +Lenora +Lorraine +Rosemary +Ruthie +Bette +Beulah +Claudia +Diana +Earnestine +Eddie +Eugenia +Genevieve +Jennie +Lola +Lucile +Nadine +Sallie +Susan +Sybil +Winifred +Callie +Carmen +Carole +Charlene +Fay +Jackie +Janette +Linda +Millie +Nell +Ouida +Polly +Reba +Stella +Tommie +Alene +Caroline +Charlie +Earline +Elva +Iva +Jerry +Joe +Lena +Lila +Madeline +Mercedes +Ora +Rosie +Rutha +Sheila +William +Aldonia +Amelia +Bertie +Claretha +Clarice +Cleo +Cornelia +Dolly +Doretha +Eartha +Estella +Etta +Faith +Florida +Glenda +Idella +Joanna +Lizzie +Marcia +Mavis +Olivia +Patty +Rubye +Victoria +Willa +Winnie +Alva +Arlene +Cecil +Della +Delma +Dollie +Elease +Elizebeth +Elvira +Harriett +Iona +Judy +Kay +Laverne +Loretha +Lorine +Louvenia +Mabel +Marcella +Maria +Muriel +Nira +Pansy +Priscilla +Ramona +Rita +Virgie +Voncile +Wilda +Alfreda +Alta +Altamese +Angela +Bobby +Cecelia +Celestine +Claire +Daphne +Darlene +Dorthy +Earlene +Easter +Francis +Gail +Greta +Gwen +Ina +Janis +Josie +Julie +Katharine +Katrina +Leah +Leila +Lela +Loraine +Lydia +Molly +Mona +Mozell +Myrtis +Nelda +Odessa +Pearline +Phoebe +Rena +Rosalie +Suzanne +Teresa +Vernell +Yolanda +Mary +Betty +Barbara +Dorothy +Shirley +Patricia +Helen +Margaret +Martha +Frances +Annie +Joyce +Evelyn +Doris +Carolyn +Virginia +Elizabeth +Joan +Nancy +Mildred +Juanita +Gloria +Alice +Jean +Louise +Ruby +Catherine +Ruth +Norma +Edna +Thelma +Willie +Lois +Peggy +Bernice +Geraldine +Sylvia +Ann +Gladys +Carol +Clara +Lillian +Marjorie +Sarah +Ida +Rosa +Marie +Edith +Rose +Emma +Hazel +June +Bertha +Ethel +Minnie +Lillie +Anna +Vera +Christine +Dolores +Florence +Joann +Alma +Bessie +Audrey +Beatrice +Beverly +Charlotte +Josephine +Laura +Mae +Irene +Jeanette +Jo +Joanne +Mamie +Marion +Delores +Eva +Jessie +Lucille +Margie +Sara +Wanda +Ernestine +Gwendolyn +Ella +Katherine +Marilyn +Sally +Julia +Mattie +Agnes +Eloise +Johnnie +Esther +Faye +Grace +Myrtle +Janet +Kathryn +Eleanor +Phyllis +Cora +Hattie +Jane +Kathleen +Daisy +Maggie +Pauline +Sandra +Wilma +Bobbie +Marian +Nellie +Yvonne +Donna +Elsie +Flora +Frankie +Geneva +Inez +Maxine +Patsy +Alberta +Carrie +Janie +Lula +Deloris +Ellen +Hilda +Viola +Bettye +Georgia +Iris +Anne +Erma +Eunice +Lucy +Naomi +Vivian +Emily +Loretta +Miriam +Bonnie +Carole +Ollie +Pearl +Bettie +Constance +Dora +Elouise +Jacqueline +Jacquelyn +Janice +Billie +Connie +Jackie +Nell +Nora +Susie +Violet +Ada +Beulah +Cynthia +Essie +Eula +Judith +Lola +Opal +Pat +Velma +Fannie +Lena +Mable +Rachel +Roberta +Sadie +Theresa +Estelle +Harriet +Katie +Leola +Rita +Rosemary +Rutha +Sue +Imogene +Jeanne +Leona +Linda +Lizzie +Lottie +Myrtice +Nina +Ruthie +Verna +Altamese +Gail +Jewell +Lila +Pearlie +Rebecca +Susan +Elinor +Gertrude +Ora +Paula +Rosetta +Anita +Earnestine +Glenda +Irma +Jennie +Joy +Kay +Lorraine +Lucile +Marlene +Melba +Myra +Nettie +Suzanne +Annette +Claudette +Claudia +Doretha +Eddie +Eileen +Freddie +Jeannette +Robbie +Addie +Bette +Carmen +Charlene +Clarice +Diane +Elnora +Idella +Jewel +Joanna +Lela +Lorene +Lou +Mabel +Marguerite +Millie +Priscilla +Sallie +Victoria +Caroline +Charlie +Cornelia +Earlene +Estella +Jimmie +Laverne +Lydia +Marcia +Mavis +Rosie +Vernell +Cleo +Colleen +Dollie +Fay +Florine +Gwen +Henrietta +Ila +Maria +Myrna +Odessa +Ola +Queen +Ramona +Reatha +Retha +Rubye +Allene +Allie +Arlene +Bennie +Claretha +Della +Diana +Dolly +Dorthy +Effie +Goldie +Gracie +Ina +Jaunita +Judy +Lessie +Lora +Mona +Muriel +Nelda +Olivia +Ouida +Patty +Rhoda +Rosella +Sharon +Sheila +Stella +Toni +Vilma +Winifred +Althea +Amanda +Bertie +Blanche +Callie +Corrine +Dalia +Delois +Dixie +Eartha +Elaine +Elvira +Flossie +Francis +Genevieve +Gussie +Hannah +Hortense +Isabel +Iva +James +Joe +Josie +Julie +Leah +Lee +Madeline +Matilda +Maude +Mercedes +Merle +Mittie +Molly +Nadine +Nan +Ophelia +Pearly +Peggie +Regina +Robert +Rosalee +Rosalie +Sybil +Theola +Tommie +Verdell +Vida +Voncile +Willa +Zelda +Mary +Betty +Shirley +Barbara +Dorothy +Patricia +Margaret +Frances +Martha +Helen +Annie +Joyce +Doris +Elizabeth +Evelyn +Gloria +Virginia +Nancy +Carolyn +Joan +Mildred +Ruth +Alice +Juanita +Ruby +Louise +Willie +Sarah +Norma +Ann +Carol +Catherine +Edna +Bernice +Marie +Sylvia +Hazel +Lois +Thelma +Lillie +Jean +Gladys +Peggy +Marilyn +Rosa +Ethel +June +Geraldine +Delores +Lillian +Sandra +Clara +Joann +Irene +Anna +Jo +Lucille +Marjorie +Yvonne +Christine +Ella +Emma +Minnie +Pauline +Vera +Bessie +Charlotte +Ida +Julia +Laura +Beverly +Inez +Johnnie +Marion +Beatrice +Bertha +Josephine +Rose +Sally +Eleanor +Grace +Gwendolyn +Dolores +Jeanette +Margie +Sara +Janet +Vivian +Bobbie +Bonnie +Edith +Jane +Katherine +Mae +Naomi +Annette +Donna +Marian +Marlene +Patsy +Phyllis +Carrie +Essie +Jessie +Myrtle +Wanda +Alma +Geneva +Joanne +Lula +Nellie +Audrey +Eva +Mattie +Anne +Cora +Ernestine +Jacqueline +Wilma +Agnes +Daisy +Janice +Loretta +Florence +Kathleen +Roberta +Alberta +Rebecca +Earnestine +Elsie +Eunice +Gertrude +Hattie +Kathryn +Mable +Mamie +Bettye +Deloris +Erma +Georgia +Janie +Susie +Velma +Billie +Constance +Ellen +Esther +Lucy +Maxine +Melba +Rachel +Carole +Elouise +Emily +Jacquelyn +Maggie +Ada +Eloise +Fannie +Jeannette +Judith +Pearl +Susan +Viola +Dora +Faye +Joy +Lola +Jennie +Nina +Pat +Sue +Connie +Flora +Iris +Irma +Linda +Nell +Pearlie +Rosemary +Violet +Anita +Myrna +Ollie +Claudia +Eula +Gail +Hilda +Imogene +Jackie +Judy +Lorraine +Bettie +Earline +Elnora +Frankie +Jewel +Kay +Lena +Leola +Opal +Beulah +Leona +Lou +Lucile +Miriam +Ora +Queen +Ruthie +Sadie +Suzanne +Theresa +Arlene +Gwen +Harriet +Jeanne +Nettie +Odessa +Stella +Victoria +Allie +Amelia +Carmen +Celia +Charlene +Claudette +Cleo +Eddie +Estella +Francis +Henrietta +Jimmie +Leila +Lottie +Mabel +Merle +Nadine +Priscilla +Rosetta +Sallie +Sharon +Sybil +Charlie +Corine +Cynthia +Diane +Dollie +Dorthy +Elaine +Lee +Marcia +Nora +Ouida +Retha +Verdell +Blanche +Della +Effie +Freida +Georgie +Gracie +Gussie +Ina +Jewell +Joanna +Katie +Laverne +Lela +Lessie +Lorene +Marguerite +Mavis +Millie +Myra +Ola +Olivia +Paula +Rena +Rutha +Sheila +Tommie +Alene +Betsy +Clarice +Estelle +Etta +Florine +Flossie +Freddie +Genevieve +Glenda +Goldie +Louvenia +Lydia +Maria +Marva +Mercedes +Mona +Ramona +Rita +Teresa +Verna +Addie +Altamese +Angie +Bette +Carlene +Claire +Claretha +Corene +Cornelia +Darlene +Delia +Delois +Diana +Eileen +Gay +Ila +Jerry +Lila +Lily +Lizzie +Luella +Marianne +May +Melvina +Mollie +Myrtice +Nita +Rosie +Sherry +Willa +Winnie +Adrienne +Almeta +Avis +Bennie +Blondell +Carla +Caroline +Celestine +Clyde +Donnie +Doretha +Earlene +Eartha +Florida +Freda +Gayle +Ginger +Harriette +Hester +Idella +Isabel +Janette +Janis +Joe +Lorena +Lue +Madeline +Maye +Molly +Monica +Muriel +Olga +Reba +Robbie +Sonia +Tillie +Vernell +Vernice +Winifred +Mary +Betty +Barbara +Shirley +Dorothy +Patricia +Margaret +Martha +Joyce +Carolyn +Annie +Frances +Helen +Joan +Elizabeth +Nancy +Doris +Gloria +Virginia +Mildred +Evelyn +Alice +Ruth +Sylvia +Jean +Ruby +Louise +Peggy +Juanita +Thelma +Willie +Geraldine +Catherine +Ann +Sarah +Lois +Norma +Bernice +Marie +Edna +Lillie +Carol +Hazel +Janice +Rose +Jo +Marilyn +Beverly +Gladys +Lillian +Clara +Johnnie +Emma +Ethel +Rosa +Sandra +Yvonne +June +Marjorie +Edith +Minnie +Eleanor +Delores +Carrie +Gwendolyn +Jane +Jeanette +Vivian +Bessie +Joann +Laura +Lula +Sara +Alma +Ida +Bertha +Ella +Margie +Phyllis +Cora +Janet +Patsy +Sally +Annette +Beatrice +Bobbie +Gail +Josephine +Mattie +Jacqueline +Marion +Vera +Audrey +Grace +Julia +Marian +Anne +Bonnie +Deloris +Lucille +Pauline +Charlotte +Christine +Donna +Joanne +Katherine +Nellie +Geneva +Roberta +Bettye +Dolores +Ellen +Eva +Judith +Kathryn +Mamie +Faye +Florence +Linda +Wilma +Daisy +Elsie +Essie +Irene +Anna +Kathleen +Naomi +Ernestine +Glenda +Kay +Loretta +Marlene +Melba +Ada +Anita +Earnestine +Elouise +Iris +Jeannette +Myrtle +Sue +Wanda +Agnes +Connie +Alberta +Eloise +Georgia +Inez +Mable +Rebecca +Constance +Esther +Hattie +Jacquelyn +Judy +Susan +Elaine +Eunice +Janie +Joy +Katie +Lorene +Mae +Myra +Ruthie +Blanche +Lola +Lucy +Maxine +Susie +Viola +Carole +Claudia +Frankie +Jessie +Maggie +Myrna +Nina +Ora +Billie +Charlene +Dora +Eula +Gracie +Leola +Paula +Rosetta +Sharon +Suzanne +Tommie +Velma +Gertrude +Harriet +Jennie +Jewel +Lena +Nell +Nettie +Ola +Ollie +Violet +Diane +Hilda +Irma +Marguerite +Pat +Rachel +Etta +Leona +Mabel +Pearl +Sadie +Sybil +Verna +Winifred +Amy +Bette +Bettie +Emily +Fannie +Jackie +Miriam +Pearlie +Polly +Rita +Rutha +Sallie +Albertha +Beulah +Carmen +Cynthia +Doretha +Eartha +Erma +Lydia +Madeline +Patty +Reba +Theresa +Callie +Claudette +Delois +Diana +Estella +Gussie +Gwen +Harriett +Henrietta +Ila +Jeanne +Jimmie +Lizzie +Lottie +Myrtice +Opal +Syble +Addie +Altamese +Arlene +Charlie +Earline +Eddie +Fay +Freddie +Gayle +Ina +Lessie +Lorraine +Maria +Maude +Maureen +Nadine +Olivia +Rosemary +Stella +Voncile +Bobby +Flora +Janette +Jaunita +Jewell +Josie +Lou +Marcia +Marva +Merle +Mona +Queen +Verdell +Willa +Allie +Altamease +Cassie +Darlene +Elinor +Elva +Faith +Flossie +Joe +John +Lee +Leila +Lela +Lenora +Lonnie +Lucile +Magdalene +Marsha +Nora +Robbie +Rosie +Sonia +Alpha +Alta +Althea +Angeline +Beth +Celestine +Christene +Cornelia +Dorothea +Elease +Elnora +Estelle +Francis +Freda +Genevieve +George +Hannah +Harriette +Iva +Jannie +Jerry +Joanna +Karen +Laverne +Lorine +Louvenia +Muriel +Odessa +Regina +Rosalind +Shelby +Teresa +Vernell +Victoria +Zelma +Adele +Aline +Aretha +Bennie +Betsy +Carlene +Caroline +Cecile +Cecilia +Cleo +Dale +Dalia +Deborah +Dixie +Dolly +Donnie +Earlene +Eileen +Elise +Georgie +James +Jeannie +Jeraldine +Jonnie +Kitty +Lelia +Lila +Lynn +May +Meredith +Merlene +Mollie +Ophelia +Ouida +Rena +Winnie +Mary +Betty +Barbara +Shirley +Dorothy +Patricia +Martha +Margaret +Carolyn +Frances +Joyce +Nancy +Annie +Helen +Elizabeth +Joan +Doris +Gloria +Sylvia +Evelyn +Virginia +Jean +Juanita +Sandra +Carol +Alice +Ruth +Peggy +Willie +Sarah +Ruby +Ann +Thelma +Lillie +Edna +Lois +Louise +Jeanette +Ethel +Norma +Rosa +Mildred +Yvonne +Beverly +Emma +Catherine +Bertha +Delores +Jo +Minnie +Annette +Hazel +Marilyn +Rose +Vivian +Marjorie +Bernice +Gladys +Marie +Geraldine +Janice +June +Johnnie +Julia +Florence +Jane +Lillian +Nellie +Patsy +Charlotte +Mattie +Ida +Laura +Daisy +Josephine +Katherine +Sara +Vera +Wanda +Bobbie +Gwendolyn +Janet +Sue +Anna +Bonnie +Edith +Dolores +Jacqueline +Mae +Phyllis +Bessie +Ella +Eva +Irene +Jessie +Margie +Bettye +Joann +Christine +Eleanor +Grace +Joanne +Kay +Alma +Carrie +Clara +Loretta +Lucille +Agnes +Audrey +Beatrice +Judith +Linda +Wilma +Lula +Sally +Donna +Geneva +Inez +Ernestine +Faye +Kathryn +Myrtle +Anne +Gail +Anita +Cora +Elsie +Esther +Marian +Marion +Naomi +Elaine +Ellen +Emily +Eunice +Marlene +Ada +Judy +Pauline +Velma +Constance +Rachel +Carole +Eloise +Iris +Flora +Hattie +Roberta +Susan +Dora +Glenda +Rebecca +Theresa +Billie +Fannie +Gertrude +Earnestine +Georgia +Jacquelyn +Jeannette +Alberta +Deloris +Essie +Jackie +Joy +Katie +Maxine +Rita +Doretha +Imogene +Lucy +Marcia +Melba +Pearlie +Susie +Verna +Connie +Cynthia +Hilda +Janie +Jewel +Kathleen +Lottie +Myrna +Nettie +Ola +Viola +Claudia +Della +Erma +Irma +Lena +Rosemary +Rosetta +Ruthie +Blanche +Diana +Maggie +Marva +Mavis +Miriam +Sharon +Bettie +Dianne +Fay +Jimmie +Leola +Mamie +Mona +Pat +Pearl +Addie +Charlene +Diane +Earlene +Eula +Leila +Mable +Nadine +Nina +Arlene +Beulah +Dorthy +Elouise +Frankie +Gayle +Harriett +Lenora +Lorine +Lorraine +Myra +Opal +Priscilla +Queen +Sallie +Suzanne +Amelia +Carmen +Charlie +Clarice +Francis +Laverne +Leona +Lorene +Lydia +Mabel +Ora +Cecelia +Deanna +Eileen +Flossie +Genevieve +Harriet +Jennie +Jewell +Julie +Lola +Lou +Marguerite +Ollie +Paula +Rosalie +Rosie +Sadie +Sheila +Sonya +Violet +Cecilia +Corine +Dixie +Estella +Freda +Gussie +Iva +James +Joanna +Lela +Lessie +Marcella +Marsha +Myrtice +Ramona +Rhoda +Robbie +Tommie +Valerie +Victoria +Winifred +Bobby +Claudette +Deanne +Delois +Dorothea +Effie +Florida +Freida +Gracie +Henrietta +Idella +Janette +Jeanne +Jeannine +Lee +Lila +Lizzie +Lucile +Lucinda +Madeline +May +Merle +Nora +Reba +Rutha +Alene +Altamese +Althea +Alyce +Angela +Antoinette +Becky +Bette +Callie +Claretha +Cleo +Delia +Eddie +Elnora +Etta +Freddie +Jannie +Josie +Leah +Lelia +Lynn +Maria +Marianne +Mercedes +Molly +Odessa +Ouida +Patti +Patty +Polly +Regina +Rena +Sonja +Syble +Teresa +Verdell +Vernell +Voncile +Willa +Winnie +Abbie +Allie +Amanda +Amy +Bennie +Bertie +Caroline +Celia +Cornelia +Eartha +Faith +Gay +Ginger +Janis +Jaunita +Jerry +Johnie +Karen +Kathy +Loretha +Neva +Olive +Olivia +Roxie +Rubye +Sherry +Sonia +Stella +Yolanda +Mary +Barbara +Betty +Shirley +Patricia +Dorothy +Martha +Carolyn +Margaret +Frances +Annie +Helen +Nancy +Joyce +Elizabeth +Sandra +Evelyn +Gloria +Virginia +Carol +Sylvia +Alice +Doris +Louise +Joan +Sarah +Mildred +Juanita +Ann +Ruth +Ruby +Peggy +Beverly +Norma +Willie +Edna +Catherine +Geraldine +Rosa +Thelma +Jean +Delores +Rose +Gladys +Hazel +Janice +Judith +Julia +Annette +Lillian +Lillie +Linda +Patsy +Vivian +Marjorie +Laura +Ethel +Jane +Lois +Vera +Emma +Jeanette +Marie +Marilyn +Minnie +Donna +Yvonne +Alma +Gwendolyn +Sara +Charlotte +Clara +Jo +Joann +Bettye +Judy +Margie +Bertha +Phyllis +Susan +Bobbie +Eleanor +Ella +Ida +Johnnie +Sally +Anna +Bernice +Bonnie +Irene +Christine +Edith +Jacqueline +June +Wanda +Carrie +Audrey +Josephine +Loretta +Mae +Nellie +Eva +Katherine +Dolores +Glenda +Janet +Roberta +Beatrice +Lula +Anne +Cora +Esther +Kay +Bessie +Faye +Florence +Grace +Pauline +Jessie +Joanne +Mattie +Maxine +Sue +Viola +Ellen +Carole +Elsie +Ernestine +Jacquelyn +Kathleen +Lucille +Lucy +Myrna +Rebecca +Sharon +Anita +Emily +Inez +Mamie +Marian +Agnes +Billie +Constance +Gail +Theresa +Alberta +Eloise +Elouise +Essie +Fannie +Flora +Hattie +Janie +Marcia +Myrtle +Wilma +Connie +Joy +Kathryn +Naomi +Pearl +Daisy +Diane +Earnestine +Erma +Geneva +Jeannette +Charlene +Deloris +Diana +Marion +Myra +Elaine +Harriet +Nina +Rachel +Rosalie +Claudette +Claudia +Deanna +Irma +Jimmie +Marlene +Ollie +Priscilla +Sallie +Bettie +Eddie +Eunice +Frankie +Hilda +Iris +Jackie +Ruthie +Violet +Dora +Georgia +Melba +Rosetta +Velma +Verna +Cynthia +Gertrude +Lottie +Maggie +Myrtice +Sadie +Susie +Jeanne +Katie +Leola +Mabel +Pat +Patty +Sonja +Suzanne +Ada +Doretha +Dorthy +Gracie +Imogene +Karen +Mable +Nettie +Arlene +Blanche +Carmen +Fay +Gayle +Laverne +Leona +Lydia +Ora +Pearlie +Rita +Addie +Bennie +Beulah +Corine +Dixie +Earline +Josie +Lola +Lorraine +Lucile +Lynda +Nora +Paula +Queen +Rosemary +Shelby +Celia +Jewell +Lena +Maria +Muriel +Nadine +Nell +Ola +Reba +Sybil +Amelia +Bobby +Cornelia +Darlene +Earlene +Effie +Gwen +Harriett +Jannie +Lizzie +Madeline +Marva +Mavis +Miriam +Ramona +Tommie +Vernell +Victoria +Caroline +Charlie +Eileen +Elnora +Eula +Genevieve +Gretchen +Gussie +Henrietta +Ina +Lila +Lorene +Sonia +Alene +Allie +Althea +Amy +Angela +Bertie +Carla +Cecelia +Claire +Dianne +Easter +Eliza +Estelle +Flossie +Freddie +Freida +Jan +Janette +Jennie +Jerry +Julie +Leah +Lenora +Letha +Marguerite +Maureen +Opal +Sheila +Verdell +Willa +Winifred +Avis +Betsy +Bette +Brenda +Callie +Celestine +Della +Dottie +Elma +Etta +Eugenia +Florine +Idella +Isabelle +Iva +Janis +Jewel +Joe +Leila +Lessie +Marianne +Mercedes +Merle +Millie +Mollie +Mona +Myrtis +Olivia +Phoebe +Rhoda +Roxie +Rutha +Sondra +Voncile +Albertha +Altamese +Angie +Aretha +Cassie +Claretha +Clyde +Dollie +Dorothea +Eartha +Edwina +Estella +Gearldine +Inell +Jaunita +Jeanie +Joanna +Kaye +Lee +Linnie +Loraine +Lou +Lynn +Marsha +Maude +Nelda +Olga +Olive +Patti +Peggie +Robbie +Rochelle +Rosie +Sherry +Sonya +Susanne +Winnie +Mary +Barbara +Betty +Patricia +Shirley +Dorothy +Martha +Margaret +Nancy +Carolyn +Joyce +Frances +Elizabeth +Helen +Sandra +Annie +Linda +Carol +Virginia +Gloria +Alice +Doris +Evelyn +Sylvia +Ruth +Judith +Ruby +Joan +Sarah +Judy +Mildred +Norma +Catherine +Willie +Janice +Marilyn +Jean +Juanita +Lillian +Geraldine +Peggy +Ann +Jeanette +Joann +Louise +Edna +Jacqueline +Thelma +Beverly +Emma +Janet +Charlotte +Marie +Annette +Lois +Yvonne +Donna +Rose +Vivian +Bertha +Delores +Hazel +Wanda +Jo +Mae +Phyllis +Irene +Laura +Sharon +Marjorie +Minnie +Ethel +Eleanor +Glenda +Julia +Ella +Jane +Loretta +Bernice +Clara +Gladys +Gwendolyn +Lillie +Rosa +Grace +Margie +Sara +Josephine +Patsy +Bonnie +June +Alma +Maxine +Rebecca +Sally +Vera +Anita +Edith +Eva +Ida +Mattie +Wilma +Anna +Christine +Katherine +Daisy +Florence +Gail +Naomi +Bettye +Carole +Audrey +Bessie +Iris +Esther +Kay +Anne +Carrie +Ellen +Elsie +Jessie +Johnnie +Bobbie +Kathryn +Marcia +Beatrice +Deloris +Mamie +Marian +Marion +Myrtle +Nellie +Cynthia +Diana +Elaine +Roberta +Velma +Alberta +Eunice +Faye +Lucille +Pat +Susan +Ernestine +Hattie +Janie +Joanne +Katie +Lucy +Elouise +Flora +Irma +Jackie +Pauline +Claudia +Connie +Diane +Emily +Gertrude +Hilda +Kathleen +Theresa +Agnes +Harriet +Lula +Melba +Myrna +Priscilla +Susie +Billie +Constance +Eula +Maggie +Sue +Essie +Freddie +Mable +Sheila +Dora +Erma +Jeannette +Joy +Karen +Lenora +Leola +Myra +Ollie +Suzanne +Violet +Dolores +Fannie +Gayle +Geneva +Jacquelyn +Marlene +Nora +Bettie +Eloise +Georgia +Inez +Nina +Rita +Sonja +Cecelia +Cora +Jewel +Viola +Jimmie +Leona +Lola +Miriam +Earnestine +Fay +Lorraine +Marva +Rosetta +Ruthie +Sondra +Arlene +Carmen +Corine +Frankie +Henrietta +Jennie +Reba +Rosemary +Sadie +Stella +Winifred +Ada +Blanche +Brenda +Caroline +Charlene +Charlie +Claudette +Della +Earlene +Jeanne +Josie +Laverne +Mavis +Mercedes +Nettie +Sherry +Tommie +Verna +Andrea +Cornelia +Dixie +Gwen +Lucile +Mabel +Marianne +Marsha +Ola +Olivia +Pearl +Rachel +Rosalie +Betsy +Eddie +Elnora +Francis +Imogene +Jerry +Jewell +Lena +Mona +Myrtice +Ora +Patty +Queen +Ramona +Robbie +Selma +Terry +Willa +Winnie +Beulah +Cecilia +Darlene +Deanna +Dianne +Eartha +Estella +Gracie +John +Lorene +Lorine +Myrtis +Penelope +Vernell +Addie +Albertha +Alfreda +Alyce +Bennie +Bertie +Bette +Claretha +Cleo +Etta +Eugenia +Genevieve +Julie +Lizzie +Lottie +Luella +Marguerite +Merle +Opal +Paula +Rhoda +Rutha +Saundra +Verdell +Victoria +Zelma +Abbie +Amy +Antoinette +Celia +Deborah +Doretha +Earline +Estelle +Gussie +Ina +Jaunita +Joe +Leah +Leila +Lila +Lora +Lou +Lucretia +Maria +Millie +Mollie +Monica +Nadine +Nelda +Nell +Pearlie +Peggie +Robert +Sallie +Sybil +Wilda +Wilhelmina +Altamese +Althea +Bobby +Bonita +Cherry +Clarice +Delia +Dorothea +Dorthy +Edwina +Elinor +Eliza +Evangeline +Flossie +Francina +Francine +Gale +Gay +Gaye +George +Ginger +Harriett +Ira +Isabel +Jannie +Jeannie +Jill +Lee +Leslie +Lessie +Lydia +Lynda +Lynn +Marcella +Margarett +Maureen +Mazie +Molly +Nita +Odessa +Olga +Penny +Regina +Rena +Retha +Rosie +Sherron +Syble +Teresa +Virgie +Voncile +William +Yolanda +Mary +Betty +Barbara +Patricia +Dorothy +Shirley +Linda +Carolyn +Joyce +Margaret +Sandra +Frances +Nancy +Martha +Gloria +Annie +Elizabeth +Helen +Virginia +Judith +Carol +Evelyn +Alice +Doris +Judy +Joan +Sylvia +Sarah +Peggy +Marilyn +Ruby +Ann +Janice +Norma +Catherine +Juanita +Mildred +Willie +Emma +Ruth +Louise +Jean +Jeanette +Yvonne +Beverly +Geraldine +Thelma +Marie +Rosa +Annette +Wanda +Edna +Sally +Delores +Bernice +Lillie +Bonnie +Lois +Vivian +Donna +Charlotte +Joann +Phyllis +Edith +Rose +Josephine +Julia +Lillian +Susan +Diane +Ethel +Jo +Eleanor +Glenda +Christine +Hazel +Jane +Katherine +Brenda +Gladys +Janet +Clara +June +Marion +Marjorie +Sharon +Carrie +Johnnie +Maxine +Marian +Bertha +Jacqueline +Patsy +Sara +Beatrice +Gail +Bobbie +Deloris +Ella +Irene +Pauline +Laura +Anita +Gwendolyn +Margie +Audrey +Kathleen +Rebecca +Anna +Alma +Bettye +Jessie +Loretta +Nellie +Eva +Florence +Ida +Kay +Dolores +Faye +Mae +Minnie +Priscilla +Roberta +Wilma +Elaine +Hattie +Sue +Jacquelyn +Lucille +Bessie +Constance +Diana +Janie +Vera +Kathryn +Marcia +Mattie +Agnes +Anne +Claudia +Cynthia +Ellen +Ernestine +Grace +Myrtle +Daisy +Elsie +Mamie +Connie +Harriet +Joanne +Myrna +Carole +Esther +Inez +Lucy +Bettie +Nina +Velma +Dora +Earnestine +Gertrude +Naomi +Rita +Billie +Cora +Eunice +Gayle +Geneva +Pearl +Eloise +Georgia +Jackie +Marlene +Pearlie +Suzanne +Theresa +Gracie +Iris +Irma +Lynda +Myra +Rosemary +Flora +Joy +Karen +Leola +Pat +Victoria +Jennie +Lula +Maggie +Miriam +Ruthie +Sallie +Alberta +Gussie +Lorraine +Mable +Marva +Arlene +Emily +Frankie +Jeannette +Nettie +Rachel +Sheila +Stella +Elouise +Fannie +Jimmie +Katie +Paula +Rosetta +Verna +Beulah +Claudette +Dianne +Estella +Hilda +Ina +Jewell +Lizzie +Lola +Marsha +Reba +Viola +Blanche +Deanna +Dixie +Fay +Francis +Laverne +Nora +Ollie +Rutha +Shelby +Susie +Yolanda +Ada +Carmen +Charlene +Darlene +Eddie +Essie +Eula +Jeanne +Joe +Nadine +Nell +Olivia +Sherry +Becky +Bennie +Caroline +Cleo +Dolly +Eugenia +Freddie +Henrietta +Lucile +Mercedes +Opal +Rosie +Sondra +Sonja +Amanda +Carla +Charlie +Corine +Earline +Estelle +Harriett +Jan +Jeanie +Jewel +Julie +Lenora +Madeline +Marianne +Ola +Sandy +Sybil +Valerie +Violet +Angela +Celia +Claire +Della +Dorthy +Eartha +Etta +Faith +Idella +Kaye +Lana +Loretha +Melba +Nelda +Patty +Queen +Rosalie +Sonia +Winifred +Addie +Andrea +Antoinette +Cecelia +Celestine +Cornelia +Dale +Dawn +Delia +Delois +Dollie +Elvira +Erma +Glenna +Gwen +Harriette +Ira +Jannie +Lena +Lorna +Mabel +Maureen +Olga +Ora +Peggie +Sadie +Sonya +Teresa +Vernell +Albertha +Aline +Allie +Alyce +Amelia +Amy +Cherry +Clarice +Doretha +Earlene +Eileen +Elnora +Flossie +Janis +Jeannie +Josie +Kathy +Lee +Lelia +Lessie +Lila +Lorine +Lottie +Lucretia +Lydia +Marguerite +Maria +Mavis +Muriel +Myrtice +Nan +Odessa +Ouida +Penny +Ramona +Regina +Rena +Terry +Tommie +Verdell +Wilhelmina +Adeline +Altamese +Bertie +Camilla +Cecilia +Colleen +Dottie +Edwina +Ester +Iva +Jacquline +Jamie +Janette +Jerry +Johanna +John +Leona +Lorena +Louvenia +Lynn +Marcella +Marilynn +Melanie +Melinda +Merry +Mona +Ophelia +Pamela +Patti +Penelope +Robbie +Sharron +Toni +Trudy +Veronica +Wendy +Wilhelmenia +Winnie +Mary +Barbara +Betty +Patricia +Linda +Shirley +Dorothy +Carolyn +Sandra +Joyce +Margaret +Gloria +Martha +Nancy +Frances +Judith +Elizabeth +Helen +Annie +Carol +Virginia +Judy +Alice +Sharon +Evelyn +Joan +Sarah +Sylvia +Doris +Janice +Ruth +Beverly +Catherine +Juanita +Ann +Brenda +Peggy +Charlotte +Norma +Mildred +Ruby +Geraldine +Jean +Donna +Delores +Yvonne +Bonnie +Emma +Louise +Wanda +Marilyn +Marie +Janet +Ethel +Julia +Lois +Thelma +Jo +Susan +Vivian +Edna +Bernice +Rosa +Willie +Glenda +Gwendolyn +Patsy +Rose +Jeanette +Josephine +Lillie +Edith +Annette +Ella +Hazel +Phyllis +Jacqueline +Marjorie +Laura +Clara +Deloris +Gladys +Anna +Lillian +Eleanor +Audrey +Gail +Minnie +Bertha +Joann +Bobbie +Eva +Katherine +Margie +Mattie +Johnnie +June +Sally +Sara +Diana +Florence +Kathryn +Rebecca +Carole +Christine +Irene +Mae +Bettye +Ida +Jane +Loretta +Diane +Sue +Wilma +Joanne +Karen +Grace +Marion +Alma +Connie +Cynthia +Ellen +Lucille +Roberta +Elaine +Maxine +Vera +Ernestine +Geneva +Beatrice +Bessie +Carrie +Kay +Anita +Billie +Emily +Esther +Faye +Myrtle +Dolores +Agnes +Anne +Priscilla +Daisy +Cora +Eunice +Lucy +Lynda +Nellie +Rachel +Theresa +Harriet +Joy +Marian +Claudia +Eloise +Iris +Jacquelyn +Alberta +Hattie +Mamie +Marcia +Earnestine +Elsie +Georgia +Inez +Janie +Jeannette +Jessie +Kathleen +Pat +Rosemary +Sheila +Suzanne +Charlene +Constance +Julie +Lorraine +Ollie +Paula +Pauline +Pearl +Sherry +Dianne +Mable +Maggie +Nina +Pamela +Rita +Flora +Gayle +Ruthie +Erma +Marsha +Melba +Ola +Ada +Arlene +Essie +Lola +Lula +Marlene +Myra +Myrna +Naomi +Velma +Deanna +Dora +Elouise +Gertrude +Gracie +Jackie +Leola +Maria +Marva +Rosetta +Sybil +Addie +Caroline +Darlene +Eula +Jeanne +Katie +Marguerite +Miriam +Sonja +Susie +Winifred +Beth +Hilda +Jewel +Nettie +Verna +Cecilia +Henrietta +Jennie +Jimmie +Lizzie +Olivia +Penelope +Violet +Bettie +Beulah +Celia +Earlene +Frankie +Freddie +Laverne +Lottie +Lydia +Mabel +Madeline +Mavis +Nadine +Pearlie +Queen +Terry +Earline +Irma +Lana +Lena +Rutha +Vicki +Viola +Bette +Carlene +Claretha +Claudette +Dixie +Edwina +Gussie +Harriett +Lee +Lela +Lorene +Margo +Mona +Nora +Opal +Penny +Rena +Sallie +Saundra +Shelby +Teresa +Tommie +Allie +Andrea +Becky +Blanche +Carmen +Eddie +Eileen +Estella +Estelle +Ginger +Iva +Lenora +Lila +Lou +Mollie +Nelda +Peggie +Robin +Rosie +Sadie +Sharron +Victoria +Betsy +Burma +Cecelia +Celestine +Charlie +Claire +Corine +Cornelia +Delois +Denise +Effie +Elinor +Fannie +Flossie +Freida +Gwen +Jan +Jewell +Joe +Kathy +Leila +Lorine +Nell +Ora +Polly +Ramona +Rhoda +Stella +Vernell +Winnie +Alta +Altamese +Althea +Amanda +Cassie +Cherry +Clarice +Dawn +Dolly +Dona +Donnie +Dorothea +Elisabeth +Eugenia +Idella +Ina +Jeanie +Jeannie +Josie +Lucretia +Maryann +May +Mazie +Melinda +Nona +Olga +Reba +Regina +Rosalind +Sheron +Sondra +Stephanie +Albertha +Antoinette +Callie +Christina +Dale +Deborah +Doretha +Dottie +Ester +Evie +Francis +Gale +Imogene +James +Janette +Jeraldine +Jerry +Juliette +Kate +Leslie +Linnie +Marilee +Molly +Muriel +Myrtice +Odessa +Patti +Pearline +Rochelle +Rosalie +Selma +Sophia +Susanne +Toni +Valerie +Veronica +Voncile +Willa +Yolanda +Zelma +Mary +Barbara +Betty +Patricia +Linda +Sandra +Carolyn +Shirley +Dorothy +Margaret +Martha +Nancy +Joyce +Gloria +Elizabeth +Carol +Judith +Frances +Sharon +Virginia +Annie +Helen +Judy +Joan +Alice +Ruth +Evelyn +Doris +Sylvia +Donna +Beverly +Susan +Sarah +Janice +Marie +Brenda +Catherine +Willie +Charlotte +Juanita +Mildred +Peggy +Ann +Ruby +Norma +Bonnie +Janet +Geraldine +Jean +Julia +Marilyn +Glenda +Delores +Emma +Jo +Lillie +Diane +Edith +Jacqueline +Louise +Jeanette +Rosa +Wanda +Joann +Katherine +Karen +Lois +Carole +Thelma +Clara +Rose +Yvonne +Edna +Phyllis +Bernice +Vivian +Ethel +Annette +Gwendolyn +Minnie +Ellen +Hazel +Cynthia +Christine +Lillian +Gladys +Jane +Alma +Anita +Anna +Kathryn +Laura +Marion +Marjorie +Patsy +Kathleen +Lynda +Mae +Sara +Diana +Loretta +Bertha +Ernestine +Gail +Johnnie +Dolores +Ida +Mattie +Rebecca +Bobbie +Margie +Eva +Jessie +Florence +Anne +Carrie +Eleanor +Josephine +Sally +Vera +Audrey +Elaine +Irene +Maxine +Bettye +Grace +June +Kay +Ella +Billie +Constance +Faye +Jacquelyn +Joanne +Joy +Marian +Claudia +Priscilla +Rita +Alberta +Charlene +Daisy +Emily +Geneva +Nellie +Suzanne +Theresa +Beatrice +Lucille +Roberta +Sue +Deloris +Hattie +Pearl +Dianne +Inez +Bessie +Harriet +Myra +Bettie +Elsie +Gertrude +Mamie +Paula +Sheila +Earnestine +Georgia +Lula +Pauline +Sherry +Wilma +Eunice +Victoria +Cora +Pamela +Agnes +Connie +Iris +Marcia +Caroline +Elouise +Katie +Lena +Lucy +Rachel +Velma +Esther +Frankie +Marsha +Naomi +Olivia +Pearlie +Henrietta +Hilda +Janie +Jeannette +Myrtle +Rosetta +Arlene +Erma +Fannie +Gayle +Lorraine +Lynn +Mable +Paulette +Viola +Jackie +Jewell +Leona +Madeline +Maria +Marlene +Melba +Nettie +Rosemary +Sadie +Sallie +Saundra +Verna +Deanna +Estella +Leola +Maggie +Carmen +Eileen +Flora +Jeanne +Jimmie +Lydia +Susie +Dora +Harriett +Julie +Lola +Miriam +Veronica +Bette +Darlene +Earlene +Eddie +Elnora +Eloise +Essie +Ginger +Janette +Laverne +Leslie +Mavis +May +Patty +Rosalie +Sonja +Teresa +Violet +Ada +Amelia +Angela +Irma +Lee +Lizzie +Lorine +Nina +Ollie +Queen +Ramona +Ruthie +Sybil +Tommie +Toni +Della +Dixie +Gracie +Gussie +Jerry +Jewel +Nora +Polly +Reba +Robbie +Addie +Andrea +Bonita +Cleo +Earline +Edwina +Eula +Francis +Jennie +Lana +Maryann +Melanie +Myrna +Nadine +Ola +Penelope +Penny +Winnie +Bennie +Claire +Cornelia +Dollie +Florine +Ina +Lenora +Lottie +Lynne +Nell +Ora +Ouida +Rosalind +Sharron +Syble +Vicki +Yolanda +Amanda +Becky +Beth +Beulah +Blanche +Cecelia +Cecilia +Effie +Estelle +Fay +Freda +Genevieve +Idella +Imogene +Jan +Jayne +Jill +Kathy +Leila +Lucretia +Marguerite +Odessa +Pat +Sonia +Terry +Albertha +Belinda +Claudette +Dee +Delma +Dolly +Eugenia +Freddie +James +Janis +Jeraldine +John +Kaye +Lettie +Lorene +Lucinda +Mabel +Marva +Maude +Maureen +Melinda +Mercedes +Pansy +Regina +Retha +Robin +Rutha +Winifred +Alfreda +Amy +Callie +Celestine +Charlie +Cherry +Claretha +Clarice +Denise +Doretha +Dorothea +Dottie +Eartha +Elease +Elma +Elois +Etta +Evangeline +Flossie +Harriette +Hortense +Jannie +Jeannie +Lela +Marcella +Marilou +Muriel +Nelda +Olive +Rosie +Stella +Valerie +Verdell +Vernell +Willa +Allie +Alpha +Althea +Angeline +April +Ava +Betsy +Carla +Carlene +Cathy +Celia +Deborah +Donnie +Dorris +Dorthy +Elinor +Eyvonne +Francine +Freida +Gay +George +Georgiana +Gwen +Jamie +Jenny +Joanna +Jonnie +Leah +Lessie +Lila +Lilly +Lily +Loraine +Lucile +Luvenia +Marianne +Marietta +Mazie +Melva +Millie +Mona +Myrtice +Nan +Robert +Sandy +Shelia +Sondra +Sonya +Tina +Vilma +Vonnie +Wilda +Mary +Barbara +Linda +Patricia +Betty +Sandra +Carolyn +Shirley +Dorothy +Sharon +Margaret +Joyce +Carol +Nancy +Martha +Frances +Judith +Gloria +Elizabeth +Judy +Helen +Virginia +Annie +Susan +Evelyn +Alice +Donna +Doris +Janice +Beverly +Joan +Ann +Sarah +Brenda +Diane +Bonnie +Charlotte +Sylvia +Peggy +Juanita +Ruth +Karen +Mildred +Marie +Jo +Janet +Ruby +Geraldine +Marilyn +Catherine +Jean +Louise +Phyllis +Pamela +Gwendolyn +Glenda +Kathleen +Gail +Willie +Rosa +Katherine +Wanda +Edna +Joann +Christine +Jacqueline +Lillie +Norma +Rose +Vivian +Yvonne +Carole +Delores +Emma +Hazel +Lois +Diana +Jane +Julia +Patsy +Rebecca +Elaine +Bobbie +Marjorie +Sally +Anna +Margie +Annette +Cynthia +Anne +Ethel +Connie +Jeanette +Paula +Lynda +Anita +Edith +Josephine +Lillian +Sara +Clara +Ella +Gladys +Mattie +Roberta +Bernice +Sue +Constance +Ellen +Ernestine +Laura +Vera +Bettye +Loretta +Minnie +Bertha +Deloris +Irene +Grace +Jacquelyn +Lucille +Suzanne +Thelma +Eleanor +Kathryn +Pauline +Rita +Claudia +Dianne +Janie +Kay +Marion +Marsha +Maxine +Audrey +Cheryl +Georgia +Ida +Marcia +Sherry +Johnnie +Nellie +Wilma +Carrie +Joy +Marian +Faye +Joanne +Rachel +Bessie +Florence +June +Priscilla +Sheila +Victoria +Mae +Eloise +Elouise +Geneva +Jackie +Rosemary +Theresa +Billie +Daisy +Harriet +Julie +Beatrice +Elsie +Lorraine +Lucy +Mamie +Paulette +Eva +Jessie +Jimmie +Terry +Darlene +Dolores +Eunice +Myra +Pat +Andrea +Erma +Esther +Jennie +Susie +Bettie +Emily +Frankie +Hilda +Jeanne +Rosetta +Charlene +Eileen +Kathy +Lena +Veronica +Alberta +Alma +Deanna +Dora +Earnestine +Fannie +Lola +Ollie +Earline +Flora +Gayle +Iris +Leslie +Viola +Arlene +Cecelia +Gertrude +Hattie +Leona +Lynn +Saundra +Agnes +Jeannette +Jerry +Madeline +Melba +Miriam +Myrtle +Pearlie +Sharron +Henrietta +Inez +Jill +Naomi +Nina +Rosalind +Ruthie +Cecilia +Claudette +Cora +Deborah +Earlene +Eddie +Essie +Janette +Jannie +Jewel +Katie +Mable +Maggie +Marlene +Marva +Robin +Teresa +Bette +Carla +Carmen +Corine +Dixie +Freddie +Harriett +Jan +Lana +Lenora +Lila +Myrna +Olivia +Pearl +Velma +Verna +Vernell +Amanda +Blanche +Lottie +Lynne +Marguerite +Maria +Penny +Sondra +Tommie +Caroline +Cathy +Doretha +Eula +Gracie +Irma +Jeannie +Jenny +Melinda +Nettie +Opal +Queen +Regina +Sadie +Sonia +Stella +Ada +Addie +Antoinette +Bennie +Dollie +Dottie +Fay +Francis +Gale +Jennifer +Laverne +Lee +Lydia +Marianne +Maureen +Mavis +Mercedes +Merle +Michele +Michelle +Nadine +Nelda +Ola +Ramona +Reba +Sallie +Sonja +Stephanie +Vicki +Violet +Willa +Albertha +April +Beulah +Celia +Clarice +Estella +Ginger +Janis +Lessie +Maryann +Nell +Nora +Robbie +Rosalie +Angie +Beth +Betsy +Camille +Charlie +Claire +Diann +Dona +Edwina +Eugenia +Freda +Gwen +Joanna +Leila +Leola +Lorene +Lula +Mabel +Melva +Myrtice +Nan +Ophelia +Sandy +Shelby +Sheryl +Sybil +Toni +Winifred +Altamese +Amy +Angela +Angeline +Becky +Christina +Cornelia +Della +Freida +Genevieve +Ina +Jewell +Joe +Lucretia +May +Muriel +Nita +Ora +Patti +Renee +Tanya +Tina +Vickie +Winnie +Yolanda +Alta +Amelia +Bonita +Candace +Celeste +Dinah +Elinor +Elnora +Elsa +Elva +Etta +Faith +Imogene +James +Jeanie +Jeraldine +John +Katharine +Lonnie +Loraine +Melanie +Nedra +Ouida +Portia +Roxie +Trudy +Valeria +Allie +Altamease +Arthur +Bertie +Cherry +Cindy +Claretha +Clyde +Colleen +Dale +Delois +Denise +Dian +Dolly +Donnie +Dorris +Eartha +Edythe +Effie +Estelle +Florine +Gay +George +Gretchen +Gussie +Hannah +Helene +Hope +Ila +Jamie +Josie +Judi +Katrina +Leah +Lelia +Lora +Lorena +Lorine +Louella +Lucile +Lucinda +Margret +Mariah +Melissa +Merry +Michael +Millie +Myrtis +Nona +Odessa +Patty +Penelope +Phylis +Polly +Retha +Rosalyn +Selma +Sherrie +Sophia +Susanne +Valerie +Verdell +Voncile +Wendy +Mary +Barbara +Linda +Patricia +Betty +Sandra +Carolyn +Carol +Shirley +Nancy +Dorothy +Sharon +Judith +Margaret +Joyce +Gloria +Elizabeth +Judy +Susan +Martha +Donna +Frances +Helen +Karen +Alice +Janice +Virginia +Annie +Brenda +Joan +Diane +Janet +Beverly +Marilyn +Sarah +Ann +Cheryl +Evelyn +Bonnie +Doris +Kathleen +Catherine +Jean +Carole +Sylvia +Pamela +Ruby +Peggy +Ruth +Charlotte +Geraldine +Jacqueline +Lois +Glenda +Phyllis +Rose +Louise +Gwendolyn +Mildred +Cynthia +Jo +Juanita +Marie +Jane +Katherine +Delores +Kathryn +Wanda +Norma +Laura +Willie +Emma +Lillie +Lynda +Edith +Ethel +Vivian +Joann +Patsy +Christine +Edna +Gail +Rosa +Rebecca +Diana +Gladys +Julia +Marjorie +Connie +Jeanette +Elaine +Yvonne +Anne +Claudia +Marcia +Ellen +Annette +Dianne +Johnnie +Marion +Marsha +Sheila +Sue +Grace +Minnie +Sara +Anita +Bernice +Suzanne +Florence +Ella +Eva +Irene +Loretta +Sally +Anna +Bobbie +Constance +Kay +Margie +Theresa +Clara +Hazel +Rita +Josephine +Maxine +Priscilla +Joanne +Vera +Bettye +Lillian +Sherry +Jacquelyn +Janie +Paula +Bertha +Mamie +Pauline +Esther +Georgia +Roberta +Emily +Lorraine +Charlene +Jessie +Joy +Lynn +Mae +Thelma +Cora +Daisy +Deloris +Andrea +Eileen +Eleanor +Faye +Mattie +Naomi +Darlene +Eunice +Geneva +Marian +Bessie +Jeanne +Wilma +Alma +Billie +Dora +Rosemary +Audrey +Dolores +Arlene +Hattie +Terry +Velma +Beatrice +Harriet +Victoria +Gayle +Iris +June +Lula +Paulette +Susie +Ernestine +Ida +Teresa +Vicki +Carrie +Lucille +Rachel +Rosetta +Deborah +Kathy +Nellie +Nina +Agnes +Earnestine +Jeannette +Maggie +Myrtle +Ola +Olivia +Alberta +Angela +Erma +Frankie +Leslie +Maria +Pat +Penny +Caroline +Elsie +Hilda +Jackie +Lana +Leola +Ada +Eula +Fannie +Inez +Marlene +Pearl +Penelope +Janis +Lee +Marianne +Maureen +Melba +Miriam +Myra +Regina +Sharron +Stephanie +Toni +Veronica +Flora +Irma +Julie +Carmen +Charlie +Eddie +Elouise +Gracie +Lola +Lucy +Nadine +Ollie +Robin +Becky +Cecelia +Dixie +Gwen +Henrietta +Jewel +Jill +Jimmie +Lynne +Nora +Dianna +Essie +Freddie +Marva +Sallie +Sheryl +Sybil +Betsy +Dana +Deanna +Earlene +Eloise +Gertrude +Jan +Jannie +Jennifer +Katie +Nettie +Sandy +Valerie +Viola +Antoinette +Beth +Bette +Bonita +Della +Francine +Jennie +Laverne +Leona +Lottie +Lou +Lydia +Mable +Margo +Marguerite +Melinda +Myrna +Saundra +Cathy +Celia +Dale +Doretha +Gale +Harriett +Johanna +Lena +Lila +Michele +Stella +Violet +Alyce +Bennie +Bettie +Blanche +Christina +Claudette +Earline +Effie +Etta +Jeannie +Jerry +Lenora +Letha +Mona +Muriel +Opal +Queen +Ramona +Tommie +Verna +Alicia +April +Beulah +Carlene +Cassandra +Cecilia +Cherry +Claretha +Cornelia +Dee +Eartha +Faith +Flossie +Gay +Gussie +Janette +Jonnie +Josie +Leila +Loraine +Mabel +Molly +Myrtice +Rena +Rosie +Rutha +Sadie +Sonja +Trudy +Vickie +Wilhelmina +Camille +Claire +Denise +Donnie +Estelle +Francis +Frieda +Helene +Jeanie +Lizzie +Lorene +Lucinda +Mavis +May +Mercedes +Michelle +Nelda +Ora +Patty +Pearlie +Peggie +Polly +Reatha +Rosalie +Wilhelmenia +Yolanda +Alexis +Alta +Amanda +Amy +Cecile +Celestine +Daphne +Dollie +Dorinda +Dorthy +Edwina +Elinor +Elois +Francina +Hannah +Hellen +Ina +Jayne +Jewell +Joanna +Judie +Katharine +Katheryn +Lela +Lilly +Lisa +Madeline +Malinda +Maryann +Merle +Nona +Patti +Robbie +Rosalind +Ruthie +Sherrie +Tina +Vernell +Vilma +Voncile +Willa +Winifred +Winnie +Zelda +Addie +Alene +Altamease +Altamese +Amelia +Angie +Ava +Avis +Corrine +Crystal +Delois +Dolly +Eliza +Elnora +Estella +Fay +Florine +Freda +Gretchen +Helena +Hope +Imogene +Iva +Jacklyn +Johnny +Judi +Kathie +Katrina +Kitty +Leah +Lelia +Lessie +Lettie +Lora +Loretha +Lorine +Marilynn +Melody +Nell +Reba +Renee +Robert +Rosella +Rosemarie +Sheron +Sondra +Sonia +Terri +Wilda +William +Mary +Linda +Patricia +Barbara +Sandra +Betty +Carol +Shirley +Carolyn +Sharon +Margaret +Nancy +Gloria +Dorothy +Joyce +Susan +Judith +Judy +Martha +Donna +Frances +Elizabeth +Virginia +Karen +Diane +Janice +Annie +Helen +Alice +Janet +Bonnie +Beverly +Brenda +Cheryl +Evelyn +Peggy +Ann +Ruth +Joan +Kathleen +Doris +Pamela +Marilyn +Sarah +Catherine +Jean +Sylvia +Willie +Glenda +Juanita +Mildred +Diana +Suzanne +Marie +Ruby +Geraldine +Laura +Phyllis +Charlotte +Gail +Jacqueline +Julia +Louise +Wanda +Gwendolyn +Jane +Vivian +Jo +Rose +Cynthia +Lillie +Rosa +Carole +Rebecca +Katherine +Yvonne +Norma +Kathryn +Lynda +Paula +Lillian +Emma +Anne +Connie +Jeanette +Marcia +Delores +Edna +Irene +Sherry +Elaine +Ellen +Sheila +Joann +Marjorie +Christine +Lois +Sue +Dianne +Patsy +Annette +Kay +Anita +Theresa +Anna +Roberta +Thelma +Victoria +Clara +Edith +Josephine +Minnie +Claudia +Marsha +Vera +Deloris +Sara +Joanne +Lynn +Rita +Sally +Mae +Margie +Bettye +Constance +Alma +Ella +Ethel +Grace +Janie +Jessie +Maxine +Audrey +Bessie +Loretta +Georgia +Gladys +Rosemary +June +Marian +Hazel +Jacquelyn +Bertha +Emily +Eva +Ida +Jeanne +Lucy +Bernice +Billie +Charlene +Harriet +Bobbie +Kathy +Mattie +Andrea +Florence +Lula +Marion +Nellie +Wilma +Darlene +Dolores +Ernestine +Pauline +Vicki +Jackie +Joy +Paulette +Susie +Eleanor +Jan +Marlene +Arlene +Cora +Geneva +Iris +Johnnie +Priscilla +Rachel +Sheryl +Deborah +Esther +Hattie +Rosetta +Eloise +Faye +Lorraine +Mamie +Myra +Naomi +Angela +Carrie +Erma +Jewel +Leslie +Terry +Carmen +Caroline +Eileen +Julie +Lucille +Maureen +Velma +Beatrice +Daisy +Fannie +Henrietta +Jeannette +Lynne +Maria +Michele +Earnestine +Elouise +Frankie +Gayle +Regina +Viola +Agnes +Pat +Pearl +Toni +Alberta +Jennie +Laverne +Lena +Leona +Sonja +Teresa +Veronica +Ada +Jennifer +Jill +Myrtle +Ola +Penny +Saundra +Valerie +Cecilia +Dale +Hilda +Jeannie +Katie +Maggie +Miriam +Nora +Sallie +Bettie +Cathy +Dawn +Eunice +Robin +Sadie +Beth +Carla +Delois +Diann +Essie +Eula +Lana +Lenora +Leola +Lydia +Marva +Myrna +Nina +Ora +Sharron +Vickie +Dora +Elsie +Harriett +Irma +Jewell +Lola +Patty +Stella +Cassandra +Dianna +Gracie +Inez +Marianne +Olivia +Rosie +Willa +Becky +Claudette +Flora +Francine +Gertrude +Lorene +Marguerite +Ollie +Pearlie +Rhonda +Robbie +Sherrie +Susanne +Tina +Trudy +Verna +Amy +Bette +Beverley +Callie +Candace +Cornelia +Dana +Deanna +Earlene +Etta +Janis +Laurie +Lee +Loraine +Lottie +Maryann +Melinda +Ophelia +Queen +Sandy +Stephanie +Amelia +Betsy +Cecelia +Celestine +Cherie +Cherry +Doretha +Earline +Eddie +Eugenia +Freddie +Gale +Ginger +Iva +Jerry +Jimmie +Lou +Margo +Nadine +Opal +Ruthie +Sharyn +Violet +Antoinette +Blanche +Bonita +Christina +Cindy +Della +Dixie +Dottie +Estella +Harriette +Jamie +Jeanie +Jenny +Lessie +Lilla +Mable +Madeline +May +Melba +Michelle +Millie +Mollie +Molly +Nettie +Rosalie +Rutha +Vicky +Addie +Amanda +Beulah +Denise +Donnie +Drucilla +Edwina +Effie +Fay +Genevieve +Jessica +Katharine +Kaye +Leah +Lela +Lila +Lora +Lucinda +Lynette +Melody +Nelda +Patti +Penelope +Polly +Rochelle +Wendy +Winifred +Alicia +Altamese +Althea +Alyce +Candy +Cathleen +Celia +Charla +Cheryle +Claire +Colleen +Daphne +Dian +Dona +Edythe +Elma +Elnora +Faith +Gay +Helene +Ina +Jannie +Jaunita +Jayne +Joanna +Josie +Leila +Lonnie +Marcella +Mavis +Melanie +Muriel +Myrtice +Nell +Odessa +Pattie +Rena +Rosalind +Sondra +Suzan +Sybil +Sydney +Verdell +Voncile +Willene +Yolanda +Zelma +Alene +Bobby +Cathrine +Clementine +Corine +Darla +Freida +Frieda +Gerry +Glinda +Gretchen +Gwen +Hannah +Hope +Idella +Imogene +Jacquline +James +Jonnie +Lani +Lavern +Lawanda +Lily +Lisa +Lizzie +Louella +Margarett +Monica +Nan +Nanette +Natalie +Nikki +Patrica +Ramona +Renee +Rhoda +Ronnie +Sherri +Sonya +Suellen +Thomasina +Tommie +William +Winnie +Mary +Linda +Patricia +Barbara +Sandra +Betty +Carolyn +Carol +Sharon +Shirley +Susan +Nancy +Margaret +Dorothy +Gloria +Joyce +Martha +Donna +Judith +Judy +Elizabeth +Janice +Brenda +Frances +Helen +Alice +Diane +Virginia +Cynthia +Pamela +Cheryl +Beverly +Karen +Annie +Catherine +Kathleen +Janet +Joan +Marilyn +Bonnie +Evelyn +Sarah +Sylvia +Doris +Ann +Jane +Peggy +Laura +Wanda +Ruth +Charlotte +Geraldine +Jo +Julia +Gwendolyn +Jean +Rose +Glenda +Rebecca +Phyllis +Gail +Kathryn +Christine +Connie +Mildred +Diana +Vivian +Willie +Marie +Sheila +Jacqueline +Katherine +Louise +Norma +Paula +Suzanne +Juanita +Sherry +Delores +Patsy +Ruby +Yvonne +Joann +Lois +Lynda +Sue +Sara +Dianne +Marsha +Carole +Roberta +Sally +Edith +Jacquelyn +Jeanette +Edna +Marcia +Elaine +Ellen +Rita +Clara +Emma +Theresa +Annette +June +Lillian +Constance +Thelma +Anita +Rosa +Claudia +Deloris +Lillie +Margie +Maxine +Priscilla +Anne +Ella +Jackie +Gladys +Hazel +Marjorie +Vera +Jeanne +Joanne +Faye +Kathy +Marion +Bernice +Ethel +Minnie +Audrey +Carrie +Emily +Loretta +Jennifer +Mae +Bertha +Bettye +Charlene +Darlene +Jessie +Johnnie +Lorraine +Pauline +Rosemary +Dolores +Ernestine +Ida +Mattie +Kay +Vicki +Victoria +Bobbie +Eva +Georgia +Irene +Terry +Wilma +Anna +Paulette +Janie +Lynn +Eleanor +Julie +Bessie +Deborah +Hattie +Marian +Alma +Grace +Lucille +Beatrice +Daisy +Harriet +Jeannette +Mamie +Nellie +Earnestine +Pat +Sheryl +Billie +Esther +Gayle +Janis +Josephine +Leslie +Eileen +Eunice +Agnes +Candace +Cathy +Florence +Geneva +Lana +Veronica +Cecilia +Cora +Iris +Ruthie +Teresa +Toni +Maria +Melba +Myra +Rachel +Stephanie +Ada +Alberta +Cecelia +Elsie +Joy +Lucy +Myrtle +Velma +Arlene +Bettie +Caroline +Inez +Katie +Lena +Maureen +Michele +Rosetta +Denise +Lenora +Maggie +Angela +Carmen +Fannie +Flora +Frankie +Lynne +Naomi +Queen +Sallie +Valerie +Verna +Carla +Elouise +Erma +Lee +Susie +Henrietta +Hilda +Jill +Lola +Nina +Nora +Regina +Saundra +Christina +Gertrude +Gilda +Gracie +Gwen +Lula +Robin +Sandy +Amy +Earlene +Essie +Eugenia +Irma +Jeannie +Marlene +Miriam +Sadie +Tanya +Vickie +Andrea +Cassandra +Dale +Jan +Jennie +Jewel +Marianne +Nadine +Cheri +Cherry +Dawn +Deanna +Eloise +Harriett +Laverne +Leona +Lou +Ollie +Penny +Polly +Sharron +Shelia +Sonia +Viola +Antoinette +Cindy +Claudette +Dianna +Dixie +Estelle +Lottie +Lydia +Mable +Pearl +Rosalind +Sharyn +Sherrie +Sonja +Tina +Winifred +April +Bernadette +Claire +Cleo +Corine +Debra +Faith +Gale +Janette +Leola +Madeline +Marva +May +Olivia +Rosie +Sondra +Stella +Susanne +Violet +Alicia +Bennie +Beth +Bette +Blanche +Bonita +Claretha +Dana +Dora +Doretha +Eddie +Elnora +Gretchen +Jerry +Joe +Laurie +Lizzie +Marguerite +Melody +Ora +Penelope +Robbie +Sybil +Amelia +Becky +Betsy +Bobby +Celia +Charlie +Darla +Dollie +Earline +Estella +Etta +Eula +Fay +Ginny +Hope +Jewell +Jimmie +Kitty +Laurel +Leila +Lessie +Lora +Mavis +Michelle +Muriel +Nettie +Ola +Opal +Pam +Pearlie +Rosalie +Rutha +Sherri +Tommie +Vernell +Yolanda +Albertha +Alfreda +Altamese +Amanda +Beulah +Edwina +Florine +Francine +Frieda +Gay +Holly +Idella +Jannie +Jaunita +Jeanie +Joanna +Kaye +Lauren +Lelia +Libby +Loraine +Lorene +Lorine +Margo +Maude +Melanie +Merle +Merry +Millie +Myrna +Myrtis +Nell +Patti +Ramona +Retha +Rhonda +Rosalyn +Terri +Wendy +Addie +Adrienne +Althea +Celeste +Cherie +Crystal +Delia +Dian +Diann +Dona +Effie +Flossie +Genevieve +Gussie +Imogene +Jeraldine +John +Judi +Louvenia +Lucile +Mazie +Mona +Odessa +Olga +Patty +Reatha +Reba +Renee +Rhoda +Roxie +Shelley +Tonya +Willa +Zelma +Belva +Camille +Candice +Carlene +Caryl +Cheryle +Chris +Corliss +Danna +Daphne +Darleen +Debbie +Delois +Dolly +Easter +Elisabeth +Eliza +Enid +Evie +Francis +Freda +Glenn +Glenna +Ingrid +Iva +Jacquline +Josie +Katrina +Kattie +Kim +Leigh +Lisa +Lucia +Lucinda +Lura +Luvenia +Lynette +Mabel +Madelyn +Maryann +Melissa +Mercedes +Mollie +Molly +Myrtice +Nelda +Pattie +Portia +Rosalee +Roslyn +Sheri +Sherrill +Shirlene +Tracy +Trudy +Verdell +Vicky +Linda +Mary +Patricia +Barbara +Sandra +Betty +Carolyn +Sharon +Carol +Shirley +Nancy +Susan +Gloria +Donna +Dorothy +Margaret +Judy +Brenda +Martha +Elizabeth +Janice +Joyce +Judith +Cynthia +Karen +Diane +Pamela +Helen +Beverly +Alice +Janet +Frances +Annie +Peggy +Cheryl +Virginia +Marilyn +Catherine +Bonnie +Joan +Jo +Sylvia +Kathleen +Phyllis +Wanda +Gail +Ann +Evelyn +Glenda +Gwendolyn +Christine +Ruth +Kathryn +Jane +Sarah +Delores +Rebecca +Jacqueline +Jean +Charlotte +Doris +Connie +Suzanne +Laura +Julia +Rose +Sheila +Lynda +Marsha +Diana +Deborah +Katherine +Sherry +Vivian +Marie +Norma +Paula +Rosa +Louise +Constance +Juanita +Willie +Jacquelyn +Geraldine +Ruby +Joann +Yvonne +Elaine +Ellen +Dianne +Anita +Sara +Anne +Annette +Kathy +Mildred +Theresa +Lois +Hazel +Jeanette +Joanne +Carole +Marcia +Emma +Gladys +Kay +Margie +Priscilla +Darlene +Ethel +Marjorie +Sally +Anna +Teresa +Vera +Clara +Edith +Eva +Patsy +Claudia +Sue +Thelma +Edna +Ella +Rita +Charlene +Irene +Lillie +Loretta +Lynn +Bertha +June +Deloris +Gayle +Janis +Johnnie +Julie +Bernice +Josephine +Victoria +Rosemary +Marian +Alma +Janie +Lillian +Roberta +Jeanne +Mae +Marion +Vicki +Carrie +Faye +Joy +Maria +Mattie +Wilma +Jessie +Sheryl +Terry +Audrey +Jan +Rachel +Eleanor +Leslie +Minnie +Paulette +Cecelia +Emily +Lucille +Penny +Bettye +Florence +Jeannette +Lula +Nellie +Andrea +Eileen +Esther +Georgia +Ida +Toni +Bobbie +Jackie +Lorraine +Billie +Cathy +Earnestine +Grace +Beatrice +Jennifer +Myra +Susie +Irma +Michele +Rosetta +Angela +Carla +Fannie +Harriet +Iris +Lydia +Maggie +Pauline +Bessie +Henrietta +Lucy +Maureen +Maxine +Stella +Veronica +Vickie +Dora +Geneva +Robin +Saundra +Ernestine +Pat +Viola +Cora +Daisy +Eloise +Jill +Regina +Sharyn +Agnes +Cherry +Mable +Madeline +Margo +Myrtle +Pearl +Sandy +Dianna +Erma +Mamie +Marlene +Nora +Queen +Sallie +Stephanie +Alberta +Cecilia +Christina +Dolores +Elouise +Essie +Ginger +Hilda +Katie +Sharron +Verna +Frankie +Hattie +Inez +Jeannie +Leola +Nadine +Olivia +Rutha +Trudy +Bonita +Candace +Caroline +Eula +Gale +Gilda +Jewel +Nettie +Nina +Patty +Rosie +Sybil +Valerie +Velma +Arlene +Bettie +Dawn +Denise +Jimmie +Marguerite +Marva +Melody +Ruthie +Sonja +Beth +Bette +Claudette +Diann +Harriett +Lee +Lola +Lorene +Melba +Michelle +Ollie +Violet +Alicia +Becky +Bobby +Carmen +Della +Flora +Freddie +Lana +Lottie +Ola +Pearlie +Penelope +Shelia +Tina +Winifred +April +Cheri +Cindy +Claire +Colleen +Crystal +Earlene +Eugenia +Francine +Gertrude +Jessica +Lena +Lenora +Lessie +Lorine +Miriam +Wendy +Amelia +Antoinette +Beulah +Blanche +Debbie +Delois +Dixie +Eunice +Gracie +Holly +Hope +Ina +Jennie +Jenny +Lizzie +Lynne +Meredith +Merry +Millie +Patti +Robyn +Sadie +Ada +Addie +Cassandra +Cheryle +Clarice +Earline +Eddie +Janette +Jeri +Joanna +Loraine +Lou +Naomi +Polly +Rena +Rhonda +Sherrie +Terri +Candy +Dale +Deanna +Effie +Elsie +Gay +Gretchen +Gwen +Jeanie +Josie +Lela +Marianne +Mavis +Melinda +Myrna +Ouida +Pam +Reba +Rosalind +Sherrill +Adrienne +Amy +Celia +Charlie +Cherie +Corine +Dana +Debra +Doreen +Dorthy +Eartha +Faith +Fay +Francis +Freda +Glynda +Helena +Imogene +James +Jannie +Jeraldine +Jerry +Kathie +Kaye +Leila +Lucinda +Madelyn +Marcella +Maryann +Molly +Nelda +Nona +Olive +Patrica +Roxie +Sondra +Susanne +Tanya +Vernell +Vicky +Willa +Alfreda +Amanda +Aretha +Ava +Bernadette +Betsy +Candice +Carlene +Celestine +Dee +Dollie +Dolly +Doretha +Dottie +Estella +Freida +Gerry +Gina +Ginny +Harriette +Jeanine +Jewell +Joe +John +Judie +Laverne +Leah +Leona +Letha +Lynette +Melissa +Mona +Myrtice +Nell +Nikki +Olga +Pearline +Renee +Sonya +Suzette +Tamara +Tommie +Verdell +Winnie +Adrian +Alexis +Altamese +Alva +Aurora +Belinda +Camilla +Cecile +Charleen +Cherrie +Clementine +Cleo +Daphne +Dorinda +Drucilla +Florine +Fran +Gene +Heidi +Helene +Hettie +Ingrid +Iona +Ira +Isabel +Iva +Jamie +Janine +Jannette +Jayne +Jerelene +Johanna +Jonnie +Judi +Karon +Kathrine +Kitty +Laurie +Leilani +Lila +Louisa +Louvenia +Loyce +Lyn +Mabel +Marcelle +Mari +Marilynn +Marla +May +Melanie +Mollie +Monica +Muriel +Odessa +Ophelia +Portia +Retha +Rhoda +Robbie +Robert +Rochelle +Ronda +Rosalyn +Roslyn +Sandi +Shannon +Sherlyn +Suzan +Unknown +Yolanda +Linda +Mary +Patricia +Barbara +Sandra +Betty +Sharon +Carolyn +Susan +Nancy +Shirley +Carol +Brenda +Gloria +Margaret +Donna +Dorothy +Martha +Joyce +Cynthia +Judy +Elizabeth +Janice +Karen +Pamela +Judith +Cheryl +Beverly +Diane +Frances +Helen +Deborah +Peggy +Virginia +Annie +Kathleen +Catherine +Janet +Alice +Joan +Evelyn +Jo +Marilyn +Bonnie +Doris +Gail +Wanda +Gwendolyn +Sarah +Sylvia +Jacqueline +Sherry +Glenda +Ann +Charlotte +Kathryn +Phyllis +Christine +Jane +Rose +Ruth +Lynda +Katherine +Laura +Rebecca +Jean +Sheila +Vivian +Diana +Geraldine +Juanita +Mildred +Ruby +Connie +Yvonne +Paula +Suzanne +Marie +Theresa +Ethel +Delores +Elaine +Marsha +Willie +Julia +Marjorie +Joann +Lois +Ellen +Rosa +Teresa +Lillie +Jacquelyn +Louise +Constance +Darlene +Edna +Norma +Anna +Emma +Kathy +Edith +Marcia +Vicki +Claudia +Patsy +Lynn +Gladys +Victoria +Charlene +Rita +Anita +Jeanette +Sally +Anne +Annette +Carrie +Clara +Dianne +Hazel +Minnie +Thelma +Irene +June +Sue +Deloris +Janis +Lillian +Margie +Carole +Ella +Ida +Joanne +Marion +Josephine +Paulette +Sara +Joy +Julie +Roberta +Bobbie +Eva +Regina +Mae +Loretta +Toni +Vera +Audrey +Veronica +Dolores +Esther +Kay +Marian +Priscilla +Andrea +Cathy +Georgia +Johnnie +Mattie +Daisy +Jeanne +Jennifer +Lorraine +Rosemary +Bernice +Bertha +Janie +Mamie +Marlene +Alma +Bettye +Sheryl +Terry +Eleanor +Geneva +Jackie +Leslie +Maxine +Grace +Faye +Jan +Stephanie +Valerie +Candace +Beatrice +Bessie +Gayle +Myra +Susie +Melanie +Nora +Pauline +Rosetta +Ernestine +Iris +Maria +Billie +Cora +Florence +Lula +Penny +Robin +Emily +Jill +Lucille +Cassandra +Gertrude +Hattie +Naomi +Wendy +Cecelia +Eileen +Nina +Becky +Dora +Harriet +Jeannette +Jessie +Lucy +Melody +Sharyn +Agnes +Caroline +Dale +Earlene +Katie +Maggie +Velma +Viola +Angela +Arlene +Christina +Debbie +Dianna +Earnestine +Frankie +Gale +Harriett +Hilda +Lydia +Marva +Maureen +Michele +Nellie +Olivia +Wilma +Antoinette +Carmen +Denise +Elouise +Inez +Lola +Nettie +Ollie +Sonja +Doretha +Essie +Henrietta +Jannie +Jennie +Jewel +Lenora +Trudy +Carla +Cecilia +Erma +Eunice +Jeannie +Laverne +Lee +Mable +Melba +Michelle +Alfreda +Cherry +Claudette +Dawn +Elsie +Gracie +Joanna +Renee +Verna +Winifred +Yolanda +Bettie +Blanche +Cindy +Claretha +Debra +Della +Eloise +Ginger +Laurie +Madeline +Marianne +Miriam +Pat +Sandy +Saundra +Stella +Unknown +Addie +Betsy +Janette +Jessica +Lana +Lora +Lucile +Melinda +Melissa +Myrtle +Queen +Reba +Rhonda +Rosalind +Rutha +Sallie +Sharron +Terri +Tommie +Violet +Bonita +Cheri +Claire +Doreen +Eula +Francine +Gilda +Leona +Lynne +Pearl +Rosie +Vernell +Ada +Alberta +Alicia +Colleen +Delois +Estella +Flora +Freddie +Leila +Leola +May +Mona +Nelda +Patty +Penelope +Polly +Rachel +Shelia +Sonia +Tina +Amelia +Carlene +Charlie +Dana +Diann +Elnora +Gay +Gretchen +Gussie +Gwen +Ina +Irma +Jimmie +Josie +Marguerite +Nadine +Natalie +Nikki +Regenia +Rosalyn +Shelley +Sherrie +William +Adrienne +Althea +Beulah +Celia +Deanna +Deidre +Dixie +Dolly +Dorthy +Earline +Eddie +Effie +Estelle +Etta +Hannah +Iva +Jeanie +Lena +Lila +Lisa +Luvenia +Lyndia +Lynette +Merry +Muriel +Pearlie +Peggie +Robbie +Ruthie +Sadie +Sonya +Susanne +Sybil +Tanya +Vicky +April +Belinda +Bennie +Bernadette +Candice +Christy +Clarice +Dottie +Fannie +Florine +Glinda +Holly +Jacklyn +Jamie +Jenny +Jeraldine +Kaye +Lela +Lessie +Lorene +Lucinda +Lucretia +Mavis +Mercedes +Nita +Odessa +Ola +Ophelia +Patti +Portia +Ramona +Rosalie +Sheri +Shirlene +Valeria +Allie +Ava +Beth +Carlotta +Casandra +Corine +Cornelia +Dona +Edwina +Elvira +Freda +George +Helene +Ilene +Jerry +Judie +Kimberly +Lelia +Leta +Lizzie +Madelyn +Maryann +Maude +Millie +Mollie +Molly +Myrna +Opal +Ouida +Pam +Reatha +Rhoda +Ricki +Robert +Roslyn +Sandi +Sheron +Sherrill +Starr +Suzan +Trudie +Vickie +Winnie +Zelma +Alene +Amanda +Antonia +Camilla +Carrol +Cherie +Cleo +Deana +Debby +Deena +Dollie +Donnie +Eartha +Eliza +Elois +Elva +Eugenia +Fay +Felicia +Flossie +Francis +Freida +Georgianna +Gerry +Gina +Hortense +Ila +James +Jerri +Jewell +Karon +Katharine +Kristine +Lauren +Lea +Libby +Lorine +Lorna +Margo +Marilynn +Martina +Merle +Noreen +Olive +Ora +Patrica +Retha +Ronnie +Shari +Shawn +Shelly +Sherri +Sondra +Syble +Therese +Valorie +Veda +Verdell +Voncile +Willa +Yvette +Linda +Mary +Patricia +Barbara +Sandra +Sharon +Shirley +Susan +Betty +Brenda +Carolyn +Nancy +Gloria +Carol +Margaret +Donna +Deborah +Elizabeth +Cynthia +Joyce +Dorothy +Judy +Janice +Martha +Karen +Diane +Pamela +Beverly +Cheryl +Bonnie +Kathleen +Frances +Catherine +Judith +Virginia +Peggy +Janet +Wanda +Helen +Gwendolyn +Christine +Annie +Alice +Charlotte +Jo +Doris +Rebecca +Joan +Sylvia +Kathryn +Gail +Sarah +Theresa +Glenda +Evelyn +Jacqueline +Marilyn +Jane +Ruth +Ann +Katherine +Marsha +Phyllis +Sherry +Laura +Juanita +Kathy +Yvonne +Geraldine +Jean +Mildred +Connie +Sheila +Elaine +Rose +Suzanne +Vivian +Jacquelyn +Marie +Diana +Paula +Ruby +Joann +Dianne +Julia +Cathy +Delores +Rita +Willie +Emma +Constance +Marcia +Darlene +Ethel +June +Lois +Lynda +Patsy +Teresa +Edna +Lynn +Josephine +Jeanette +Deloris +Edith +Ellen +Norma +Priscilla +Anita +Charlene +Louise +Rosa +Sally +Thelma +Marjorie +Jennifer +Vicki +Janie +Hazel +Johnnie +Lillian +Margie +Vera +Loretta +Anne +Audrey +Gladys +Mae +Sue +Rosemary +Annette +Minnie +Paulette +Anna +Belinda +Bernice +Claudia +Irene +Lillie +Marion +Stephanie +Victoria +Gayle +Rhonda +Sara +Bobbie +Dolores +Grace +Maxine +Angela +Clara +Faye +Maria +Roberta +Bertha +Carole +Cassandra +Mattie +Carrie +Joanne +Joy +Julie +Leslie +Marian +Ella +Sheryl +Eleanor +Veronica +Janis +Valerie +Debbie +Jackie +Jan +Kay +Pauline +Regina +Cecelia +Jeanne +Michele +Terry +Wilma +Alma +Emily +Cora +Lorraine +Marlene +Renee +Esther +Eunice +Eva +Harriet +Candace +Caroline +Debra +Lucy +Melinda +Robin +Rosetta +Andrea +Carmen +Daisy +Dale +Florence +Georgia +Jessie +Lucille +Shelia +Susie +Viola +Beatrice +Bessie +Hattie +Ida +Nina +Olivia +Rachel +Vickie +Alberta +Eileen +Hilda +Inez +Laverne +Becky +Bettye +Geneva +Ginger +Melanie +Ruthie +Toni +Arlene +Gertrude +Lula +Marguerite +Myra +Rosalyn +Frankie +Jill +Lana +Lorene +Mamie +Nora +Penny +Wendy +Billie +Christina +Dora +Ernestine +Essie +Iris +Lynne +Marva +Velma +Beth +Cindy +Denise +Henrietta +Lola +Melissa +Naomi +Pearlie +Queen +Carla +Cecilia +Dana +Irma +Jennie +Lydia +Margo +Melody +Michelle +Polly +Sandy +Della +Earnestine +Gale +Jeannie +Mable +Madeline +Maureen +Miriam +Pam +Stella +Amy +Elouise +Erma +Eula +Flora +Jeannette +Lee +Leona +Patty +Sadie +Sallie +Tina +Betsy +Celestine +Dianna +Eloise +Elsie +Jenny +Lena +Leola +Myrtle +Nellie +Nettie +Ola +Rutha +Saundra +Sharron +Shelley +Agnes +Colleen +Cornelia +Earline +Fannie +Fay +Francine +Katie +Rosie +Trudy +Winifred +Bette +Charlie +Claire +Claretha +Claudette +Earlene +Etta +Harriett +Jannie +Rosalind +Terri +Valarie +Yolanda +Addie +Amanda +Amelia +Cherie +Cherry +Estella +Hope +Jayne +Jimmie +Lila +Lucinda +Lynette +Molly +Nita +Pat +Roslyn +Sharyn +Sonia +Vicky +Violet +Antoinette +Blanche +Cathleen +Clementine +Dawn +Deanna +Doretha +Freddie +Jamie +Laurie +Leila +Marcella +Nadine +Ollie +Penelope +Rosemarie +Verna +Alicia +Candice +Cathryn +Delois +Diann +Dona +Flossie +Francis +Georgette +Gilda +Jeanie +Jewel +Joanna +Lizzie +Lorine +Lottie +Madelyn +Mickey +Mona +Muriel +Patti +Rena +Rosalie +Sondra +Sonya +Unknown +Wilhelmina +Ada +Alfreda +Altamese +Alyce +Bettie +Cassie +Cathie +Celeste +Charles +Dorthy +Eddie +Elnora +Florine +Gay +Genevieve +Gracie +Gretchen +Holly +Ina +Jaunita +Jewell +Joe +John +Juliette +Kathie +Kaye +Kristin +Lenora +Lisa +Loretha +Margarett +Marianne +Maryann +Mollie +Monica +Myrna +Nona +Peggie +Robbie +Sherrie +Sherrill +Sonja +Susanne +Willa +Alexis +Antionette +April +Beulah +Callie +Candy +Carlene +Celia +Clarice +Cleo +Debby +Delorise +Dixie +Drucilla +Elinor +Estelle +Eugenia +Felicia +Frieda +Heather +Jana +Janette +Jessica +Kimberly +Kristine +Laurel +Leatha +Lora +Lou +Lucretia +Malinda +Marilynn +Millie +Myrtice +Ora +Pearl +Portia +Rochelle +Roxie +Tara +Terrie +Winnie +Yvette +Albertha +Althea +Andra +Angeline +Ava +Bernadette +Bonita +Cathrine +Charmaine +Christie +Christy +Darleen +Debora +Delia +Dell +Dollie +Edwina +Effie +Florida +Gearldine +Gwen +Idella +Isabel +Jacquline +Jerri +Jody +Johnny +Jonnie +Julianne +Katharine +Kerry +Kristina +Lauren +Leah +Leigh +Lela +Lelia +Letha +Lily +Lucile +Lyndia +Maggie +Marla +Mavis +May +Michael +Nanette +Nola +Olga +Patrica +Patrice +Ramona +Reatha +Sharleen +Sherryl +Shirlene +Sybil +Therese +Vernell +Linda +Mary +Patricia +Barbara +Sandra +Susan +Deborah +Brenda +Shirley +Nancy +Sharon +Betty +Carol +Carolyn +Cynthia +Donna +Gloria +Karen +Margaret +Joyce +Martha +Pamela +Elizabeth +Janice +Dorothy +Judy +Beverly +Kathleen +Janet +Diane +Wanda +Gwendolyn +Judith +Cheryl +Catherine +Kathy +Gail +Bonnie +Annie +Rebecca +Frances +Marilyn +Peggy +Virginia +Helen +Alice +Joan +Sheila +Charlotte +Glenda +Doris +Ann +Evelyn +Kathryn +Laura +Christine +Sherry +Jacqueline +Diana +Jo +Sarah +Phyllis +Sylvia +Rose +Paula +Katherine +Marsha +Theresa +Yvonne +Connie +Debra +Ruth +Suzanne +Marcia +Cathy +Juanita +Dianne +Jane +Joann +Vivian +Delores +Jacquelyn +Marie +Teresa +Geraldine +Constance +Jean +Ruby +Elaine +Ellen +Willie +Lois +Julia +Norma +Rita +Louise +Lynda +Irene +Ethel +Mildred +Anne +Charlene +Patsy +Edna +Terry +Lynn +Sally +Lillie +Jeanette +Sara +Ella +Emma +Valerie +Deloris +Lillian +Sue +Vicki +Annette +Darlene +Joanne +Vickie +Anita +June +Lorraine +Belinda +Edith +Priscilla +Angela +Johnnie +Victoria +Jennifer +Julie +Rosa +Rhonda +Robin +Loretta +Thelma +Claudia +Debbie +Eileen +Eva +Bertha +Clara +Marjorie +Roberta +Anna +Maxine +Sheryl +Jackie +Joy +Marian +Paulette +Rosemary +Alma +Gayle +Kay +Mae +Marion +Faye +Marlene +Mattie +Bobbie +Colleen +Denise +Audrey +Jill +Josephine +Bernice +Janis +Regina +Vera +Carrie +Ernestine +Hazel +Iris +Stephanie +Candace +Christina +Leslie +Pauline +Carole +Daisy +Gladys +Grace +Jessie +Margie +Michele +Shelia +Cassandra +Minnie +Rosetta +Carla +Carmen +Michelle +Veronica +Earnestine +Emily +Florence +Hilda +Jan +Jeanne +Myra +Rachel +Agnes +Amy +Andrea +Lucy +Susie +Toni +Viola +Wendy +Georgia +Janie +Penny +Arlene +Dolores +Hattie +Jeannette +Maureen +Melanie +Melinda +Althea +Becky +Cecilia +Cora +Esther +Maria +Renee +Ruthie +Shelley +Wilma +Beth +Lena +Myrtle +Naomi +Beatrice +Billie +Dale +Erma +Harriett +Ida +Lula +Nora +Velma +Alberta +Dianna +Essie +Flora +Jeannie +Mamie +Mona +Nellie +Olivia +Verna +Bettye +Cindy +Claudette +Francine +Ginger +Lana +Lola +Ramona +Bessie +Eleanor +Gale +Henrietta +Inez +Marva +Melissa +Nina +Stella +Eunice +Frankie +Geneva +Lee +Lucille +Lynne +Patti +Patty +Sandy +Beulah +Bonita +Candice +Earlene +Eloise +Fannie +Gertrude +Katie +Laverne +Melody +Nadine +Rosalyn +Trudy +Vicky +Cecelia +Cherry +Diann +Gracie +Harriet +Irma +Lisa +Miriam +Pam +Antoinette +Dawn +Jamie +Lydia +Merry +Ollie +Pearlie +Queen +Sherrie +Betsy +Della +Dora +Eula +Freda +Janette +Laurie +Leola +Lorene +Lucinda +Madeline +Retha +Rosalind +Sharron +Terri +Tina +Celia +Deanna +Delia +Francina +Jeanie +Jennie +Jenny +Lenora +Lynette +Marguerite +Maryann +Ola +Pearl +Valarie +Addie +Amanda +Blanche +Candy +Caroline +Claire +Dana +Debora +Doretha +Faith +Gay +Holly +Maggie +Muriel +Pat +Penelope +Rhoda +Rosie +Shari +Susanne +Vernell +Violet +Adrienne +Albertha +April +Carlene +Cathleen +Cherie +Claretha +Cornelia +Dixie +Fay +Francis +Gussie +Jannette +Jeri +Jewel +Jimmie +Josie +Karla +Karon +Kristine +Laurel +Mable +Malinda +Marta +Molly +Patrice +Polly +Rutha +Sallie +Shannon +Tanya +Tommie +Alfreda +Alicia +Bettie +Celeste +Cheri +Eddie +Elouise +Elsie +Eugenia +Gilda +Gwen +Idella +Jannie +Jessica +Leona +Lottie +Mabel +Margo +Marla +Melba +Mercedes +Mollie +Monica +Pansy +Reba +Rena +Rosalie +Roslyn +Saundra +Sonya +Ada +Alva +Alyce +Bette +Clementine +Cleo +Dollie +Earline +Effie +Estella +Felicia +Heather +Jewell +Katharine +Katheryn +Katrina +Letha +Lizzie +Louvenia +Madelyn +Marianne +Marilynn +Millie +Nell +Nettie +Ophelia +Sadie +Sherri +Sonja +Sybil +Unknown +Valorie +Winifred +Yolanda +Yvette +Bernadette +Callie +Cathryn +Celestine +Chris +Christie +Debby +Dee +Delois +Dona +Doreen +Elma +Elnora +Freddie +George +Glenna +Helene +Ilene +Jeraldine +Joanna +Juana +Kitty +Lelia +Lessie +Lonnie +Lucile +Marcella +Nita +Nola +Ora +Roseann +Roxanne +Sheri +Teri +Wilhelmina +Willa +Aida +Alison +Altamease +Amelia +Ava +Barbra +Bobby +Caryn +Clarice +Dian +Dinah +Dolly +Dorothea +Dorthy +Dottie +Drucilla +Elena +Flossie +Freida +Georgina +Gretchen +Ina +Ivy +Jacquelin +Jacquelyne +Joe +Kathie +Kathrine +Kim +Kimberly +Kristina +Lavern +Lavonne +Leila +Lela +Lou +Lucretia +Margery +Mavis +May +Millicent +Myrna +Nanette +Natalie +Nelda +Portia +Robbie +Ronnie +Sharyn +Sherrill +Teressa +Vernita +Voncille +Winnie +Linda +Mary +Patricia +Deborah +Barbara +Sandra +Susan +Brenda +Sharon +Nancy +Cynthia +Donna +Carolyn +Shirley +Karen +Carol +Pamela +Gloria +Betty +Debra +Margaret +Dorothy +Janice +Elizabeth +Martha +Joyce +Diane +Judy +Kathleen +Janet +Wanda +Beverly +Catherine +Gail +Cheryl +Judith +Christine +Rebecca +Peggy +Kathryn +Kathy +Virginia +Alice +Gwendolyn +Helen +Bonnie +Jacqueline +Phyllis +Frances +Marilyn +Annie +Jo +Glenda +Katherine +Sylvia +Yvonne +Marsha +Sarah +Evelyn +Laura +Joan +Paula +Connie +Jane +Theresa +Charlotte +Sheila +Cathy +Ruth +Teresa +Vicki +Ann +Sherry +Diana +Jacquelyn +Vivian +Rose +Constance +Delores +Ruby +Doris +Rita +Juanita +Elaine +Ellen +Norma +Marcia +Marie +Lynn +Victoria +Charlene +Geraldine +Jean +Belinda +Jeanette +Darlene +Denise +Joanne +Mildred +Jan +Suzanne +Anita +Edith +Julia +Annette +Edna +Lynda +Rhonda +Anne +Sally +Priscilla +Rosa +Sara +Ethel +Dianne +Janis +Joann +Julie +Paulette +Veronica +Patsy +Robin +Rosemary +Valerie +Willie +Jennifer +Louise +Anna +Clara +Deloris +Lillie +Loretta +Terry +Angela +Claudia +Gladys +Hazel +Lois +Vickie +Irene +Jeanne +June +Lillian +Lorraine +Roberta +Audrey +Bobbie +Candace +Gayle +Joy +Sue +Vera +Cassandra +Janie +Kay +Thelma +Wendy +Debbie +Emma +Marion +Grace +Marjorie +Sheryl +Marian +Faye +Michelle +Stephanie +Leslie +Esther +Michele +Carla +Margie +Carrie +Regina +Alma +Ella +Beatrice +Bernice +Bertha +Eleanor +Josephine +Mae +Maxine +Carole +Colleen +Eva +Iris +Marlene +Shelia +Mattie +Nora +Emily +Georgia +Maria +Maureen +Andrea +Arlene +Beth +Cecelia +Harriet +Johnnie +Melody +Shelley +Ida +Mona +Pauline +Dolores +Erma +Jill +Nina +Penny +Ernestine +Eunice +Melissa +Myra +Rachel +Cindy +Florence +Jackie +Jessie +Patti +Terri +Velma +Christina +Melanie +Melinda +Daisy +Gale +Lula +Lynne +Renee +Rosetta +Billie +Cecilia +Dale +Dora +Laurie +Mamie +Vicky +Amy +Betsy +Bettye +Frankie +Ginger +Lisa +Lucille +Olivia +Wilma +Althea +Bessie +Janette +Jeannie +Marianne +Minnie +Rosalind +Susie +Viola +Alberta +Carmen +Eileen +Geneva +Holly +Leola +Roxanne +Cheri +Dana +Essie +Hattie +Jenny +Lee +Patrice +Ruthie +Toni +Verna +Alicia +Earnestine +Jeannette +Lorene +Lucy +May +Molly +Patty +Rosalyn +Amelia +Claudette +Cora +Debora +Diann +Doretha +Elsie +Fannie +Inez +Lana +Laverne +Lenora +Marva +Naomi +Ola +Ollie +Tina +Violet +Alfreda +Dianna +Francine +Henrietta +Hilda +Irma +Jennie +Lena +Maggie +Margo +Nadine +Pearl +Pearlie +Ramona +Stella +Becky +Bonita +Crystal +Dawn +Katie +Lynette +Madeline +Queen +Sallie +Ada +Antoinette +Earline +Elouise +Flora +Gay +Gertrude +Gilda +Harriett +Jimmie +Katrina +Kim +Lola +Mable +Marcella +Marguerite +Melba +Mindy +Monica +Nellie +Ora +Reba +Roslyn +Agnes +Bernadette +Candice +Eula +Fay +Gwen +Jessica +Kristine +Leona +Lora +Miriam +Nettie +Sonya +Unknown +Valarie +Ava +Bettie +Cathleen +Celia +Cherry +Deanna +Dona +Faith +Gracie +Jayne +Jerry +Jewel +Lila +Lucinda +Muriel +Portia +Robyn +Rosie +Tanya +Teri +Winifred +April +Candy +Celeste +Christy +Claretha +Dixie +Freddie +Gretchen +Gussie +Janine +Jerri +Lori +Nona +Polly +Saundra +Tommie +Yvette +Allison +Angeline +Blanche +Cheryle +Della +Earlene +Eddie +Frieda +Ilene +Jeri +Joe +Karla +Kimberly +Leila +Letitia +Madelyn +Melodie +Myrtle +Patrica +Robbie +Robert +Rosalie +Rosemarie +Sadie +Sharron +Tonya +Trudy +Wilhelmina +Addie +Beulah +Carlene +Cathie +Charlie +Charolette +Corine +Dorthy +Dottie +Easter +Edwina +Elise +Elnora +Eloise +Enid +Estella +Eugenia +Genevieve +Glynda +Helene +James +Jana +Jeannine +Jewell +Karol +Kate +Lizzie +Lydia +Marta +Maryann +Nelda +Nell +Pam +Penelope +Selma +Shawn +Sherrie +Sonja +Susanne +Suzette +Sybil +Vernell +Willa +Yolanda +Adrienne +Agatha +Bette +Beverley +Catharine +Cherie +Clarice +Corinne +Darla +Delois +Etta +Freida +Ira +Jamie +Janna +Jannette +Jeanie +Joanna +Jody +John +Josie +Kaye +Laurel +Leatha +Loretha +Lorna +Lou +Lucretia +Marleen +Mavis +Meredith +Ophelia +Rhoda +Rutha +Sandy +Shari +Sharlene +Shelly +Stacey +Terrie +Therese +Velda +Vernita +Winnie +Abigail +Adele +Aileen +Ana +Angelia +Callie +Caroline +Cecile +Celestine +Chris +Claire +Clementine +Cornelia +Daryl +Dee +Delia +Dena +Denice +Doreen +Dorothea +Elvira +Francina +Freda +Hannah +Hope +Ila +Imogene +Isabel +Iva +Ivory +Janelle +Katharine +Kitty +Lavonia +Lela +Lona +Lonnie +Lorine +Lutricia +Mabel +Marla +Mercedes +Millie +Myrtice +Nan +Natalie +Olga +Pamala +Pansy +Rena +Retha +Rochelle +Ronnie +Sheryll +Sondra +Sonia +Verdell +Linda +Mary +Patricia +Deborah +Barbara +Susan +Debra +Sandra +Brenda +Nancy +Cynthia +Sharon +Karen +Donna +Carolyn +Carol +Betty +Shirley +Pamela +Elizabeth +Janice +Gloria +Diane +Janet +Margaret +Kathleen +Judy +Joyce +Martha +Beverly +Catherine +Dorothy +Cheryl +Wanda +Gail +Christine +Rebecca +Judith +Kathy +Virginia +Kathryn +Gwendolyn +Marilyn +Peggy +Bonnie +Annie +Frances +Jacqueline +Laura +Sheila +Joan +Helen +Paula +Cathy +Ann +Phyllis +Alice +Katherine +Connie +Jo +Rose +Evelyn +Teresa +Glenda +Denise +Sarah +Marsha +Theresa +Jane +Charlotte +Diana +Victoria +Sylvia +Ellen +Sherry +Doris +Vivian +Yvonne +Jean +Elaine +Ruth +Julia +Rita +Suzanne +Rhonda +Charlene +Dianne +Vicki +Jacquelyn +Constance +Lynn +Marie +Anita +Darlene +Marcia +Valerie +Belinda +Julie +Norma +Rosa +Vickie +Ruby +Geraldine +Jennifer +Leslie +Mildred +Edith +Joann +Delores +Juanita +Willie +Ethel +Angela +Anna +Debbie +Jeanette +Lois +Sally +Thelma +Annette +Edna +Emma +Loretta +Maria +Anne +Patsy +Sara +Sue +Robin +Janis +Joanne +Joy +Lillie +Marjorie +Audrey +Clara +Esther +Laurie +Melinda +Roberta +Stephanie +Jan +Lisa +Sheryl +Terry +Marion +Jeanne +Jill +June +Marlene +Michelle +Priscilla +Veronica +Wendy +Claudia +Ella +Margie +Lillian +Lynda +Beatrice +Grace +Louise +Mae +Rosemary +Toni +Bernice +Deloris +Lorraine +Penny +Regina +Bertha +Bobbie +Cindy +Faye +Gladys +Janie +Josephine +Michele +Paulette +Carla +Carmen +Marian +Melissa +Arlene +Cassandra +Maureen +Colleen +Melanie +Gayle +Hazel +Lucy +Candace +Carrie +Iris +Emily +Eva +Georgia +Harriet +Johnnie +Nora +Irene +Kay +Bonita +Jackie +Jessie +Nina +Renee +Tina +Vera +Andrea +Dale +Dawn +Ida +Lynne +Mattie +Shelley +Alma +Eunice +Katie +Myra +Olivia +Terri +Carole +Florence +Holly +Wilma +Christina +Eileen +Gale +Lydia +Pauline +Dolores +Earnestine +Ernestine +Lucille +Maxine +Beth +Minnie +Rachel +Alicia +Debora +Dora +Eleanor +Kim +Nellie +Rosetta +Shelia +Susie +Agnes +Candice +Frankie +Melody +Nettie +Patti +Cecilia +Francine +Hattie +Jeannette +Unknown +Amy +Bessie +Billie +Erma +Essie +Ginger +Marianne +Mona +Sherrie +Althea +Antoinette +Cecelia +Claudette +Daisy +Molly +Patty +Sonya +Vicky +Bettye +Cora +Dana +Jeannie +Jenny +Lee +Lucinda +Marguerite +Stella +Velma +Caroline +Crystal +Diann +Eugenia +Janette +Lana +Laverne +Naomi +Rosalind +Roxanne +Verna +Winifred +Amelia +Betsy +Dianna +Elouise +Geneva +Jewel +Kristine +Lenora +Leona +Miriam +Monica +Nadine +Patrice +Pearlie +Queen +Rosalyn +Tanya +Viola +Ada +Alberta +Faith +Jennie +Laurel +Leola +Marcella +Myrtle +Ruthie +Yvette +Becky +Eula +Irma +Jody +Mable +Madeline +Mamie +Marva +Ramona +Charmaine +Cheri +Claire +Doretha +Flora +Inez +Kerry +Leah +Lora +Reba +Sallie +Sharron +Sherri +Trudy +Adrienne +Alexis +Alfreda +Blanche +Cherry +Deanna +Dixie +Fannie +Freda +Henrietta +Hilda +Jerri +Lila +Lola +Lori +Margo +Marta +Myrna +Nita +Polly +Valeria +Albertha +April +Bette +Cathleen +Celeste +Charlie +Gertrude +Heidi +Jamie +Jeanie +Katrina +Lula +Nanette +Nelda +Ola +Peggie +Roslyn +Saundra +Shelly +Sherrill +Sonja +Tommie +Violet +Cassie +Claretha +Delilah +Della +Doreen +Earline +Eloise +Freddie +Gay +Gina +Harriett +Harriette +Heather +Jannie +Kathie +Kathrine +Kimberly +Leila +Lela +Lena +Lottie +Malinda +May +Meredith +Mollie +Nola +Ollie +Penelope +Shannon +Shari +Sybil +Therese +Vanessa +Yolanda +Alison +Allison +Amanda +Angelia +Ava +Candy +Christie +Christy +Dinah +Donnie +Earlene +Eddie +Elsie +Fay +Freida +Gilda +Gracie +Gwen +Hope +Jeri +Jimmie +Josie +Julianne +Lizzie +Lou +Mercedes +Merry +Nona +Ophelia +Pearl +Robbie +Sheri +Sonia +Susanne +Teri +Terrie +Vernell +Aileen +Bernadette +Bridget +Carlene +Cathryn +Celestine +Celia +Corliss +David +Dona +Florine +Glenna +Isabel +Jessica +Karon +Katheryn +Lauren +Loraine +Lorene +Lucile +Lyn +Melba +Mindy +Muriel +Opal +Patrica +Rhoda +Rosie +Rowena +Sondra +Tracy +Valorie +Abigail +Angie +Bernadine +Brinda +Cherie +Clarice +Cleo +Dollie +Dorothea +Elnora +Francis +Glory +Helena +Helene +Ina +Ira +Jacquline +James +Janine +Joanna +Karin +Kristina +Lea +Linnie +Lorna +Lucia +Madelyn +Maggie +Melva +Mercy +Rochelle +Roseanna +Roxann +Sydney +Tamara +Winnie +Addie +Alana +Alene +Antonia +Arlinda +Arnita +Avis +Babette +Barbra +Bennie +Beulah +Beverley +Cathie +Clementine +Dee +Deidre +Dolly +Edwina +Effie +Elise +Estella +Ester +Felecia +Gayla +Ginny +Glynda +Gretchen +Ila +Imogene +Ivy +Jacqulyn +Janell +Jannette +Jerry +Karla +Katharine +Kathi +Kaye +Kristi +Kristin +Ladonna +Larry +Lesley +Lettie +Lolita +Lona +Lonnie +Loretha +Lorie +Lynette +Marcie +Marilynn +Maryann +Matilda +Mavis +Mimi +Nan +Natalie +Neva +Odessa +Olga +Olive +Ouida +Pandora +Portia +Retha +Rosanne +Rosemarie +Rubye +Sandy +Syble +Theodora +Valarie +Veda +Verdell +Vida +Voncile +Zandra +Linda +Mary +Deborah +Patricia +Susan +Barbara +Debra +Brenda +Sandra +Cynthia +Pamela +Nancy +Sharon +Karen +Donna +Carol +Shirley +Carolyn +Janet +Janice +Elizabeth +Betty +Diane +Gloria +Margaret +Beverly +Rebecca +Kathleen +Joyce +Dorothy +Catherine +Judy +Wanda +Martha +Kathy +Marilyn +Gail +Cheryl +Bonnie +Teresa +Laura +Peggy +Kathryn +Christine +Judith +Paula +Gwendolyn +Virginia +Frances +Sheila +Robin +Helen +Cathy +Jacqueline +Jo +Alice +Theresa +Annie +Denise +Katherine +Phyllis +Glenda +Connie +Joan +Marsha +Rose +Victoria +Marcia +Sylvia +Rhonda +Ann +Evelyn +Ruth +Darlene +Vivian +Sarah +Elaine +Jane +Suzanne +Valerie +Doris +Diana +Sherry +Angela +Rita +Vicki +Yvonne +Constance +Charlotte +Julie +Leslie +Jean +Jennifer +Annette +Lynn +Julia +Debbie +Ruby +Marie +Charlene +Jacquelyn +Geraldine +Lisa +Anita +Ellen +Vickie +Terry +Anne +Sally +Roberta +Louise +Stephanie +Jeanette +Joy +Emma +Juanita +Belinda +Veronica +June +Priscilla +Sue +Delores +Audrey +Lynda +Dianne +Loretta +Mildred +Sheryl +Terri +Wendy +Regina +Patsy +Willie +Bobbie +Clara +Anna +Joanne +Sara +Edna +Mae +Jeanne +Laurie +Norma +Lois +Rosa +Jan +Marion +Marjorie +Melissa +Rosemary +Candace +Jill +Eva +Joann +Michelle +Cindy +Gayle +Hazel +Claudia +Dawn +Deloris +Lillie +Edith +Paulette +Carrie +Kay +Kim +Melinda +Shelia +Lillian +Lorraine +Andrea +Carla +Ethel +Janis +Melanie +Toni +Josephine +Patti +Eleanor +Maria +Michele +Vanessa +Cassandra +Colleen +Gladys +Iris +Lucy +Rachel +Thelma +Alma +Bertha +Holly +Vera +Jackie +Minnie +Renee +Arlene +Marlene +Melody +Penny +Carmen +Ella +Grace +Margie +Nina +Unknown +Daisy +Dale +Florence +Maureen +Maxine +Sherri +Bonita +Carole +Georgia +Marian +Monica +Amy +Beth +Ginger +Ida +Irene +Tina +Wilma +Beatrice +Christina +Esther +Frankie +Gale +Johnnie +Myra +Roxanne +Shelley +Vicky +Emily +Hilda +Janie +Pauline +Cecelia +Dolores +Eileen +Jeannette +Jessie +Nora +Becky +Dianna +Jeannie +Patrice +Bernice +Celia +Debora +Dora +Harriet +Lee +Mamie +Nadine +Susie +Agnes +April +Faye +Geneva +Lou +Lucille +Alberta +Billie +Dana +Lydia +Naomi +Nellie +Rosalind +Francine +Hattie +Jennie +Lynne +Mona +Betsy +Cora +Crystal +Eunice +Lori +Robyn +Claire +Dixie +Jamie +Katie +Sherrie +Yvette +Cecilia +Ernestine +Fannie +Jenny +Jody +Lana +Lucinda +Lynette +Pearl +Rosalyn +Sallie +Viola +Ava +Caroline +Gertrude +Harriett +Henrietta +Joni +Laverne +Mattie +Miriam +Velma +Alicia +Bessie +Diann +Flora +Irma +Katrina +Lola +Lula +Mable +Reba +Shelly +Stella +Adele +Alfreda +Cathleen +Earnestine +Elsie +Inez +Jeanie +Jeri +Karla +Lena +Melba +Myrtice +Patty +Ramona +Ruthie +Bernadette +Candice +Celeste +Cherie +Erma +Kimberly +Leah +Nona +Rosetta +Sheri +Suzette +Trudy +Althea +Amanda +Elouise +Essie +Jana +Laurel +Leila +Lora +Lorna +Marguerite +Marla +Marva +Myrtle +Ophelia +Patrica +Rosanne +Roslyn +Velda +Violet +Amelia +Candy +Carlene +Cheri +Cherry +Della +Doretha +Genevieve +Georgette +Jewel +Joanna +Katharine +Lauren +Lenora +Leola +Luann +Maggie +Marcie +Mavis +Merry +Penelope +Sharron +Sonja +Verna +Winifred +Yolanda +Addie +Angelia +Earlene +Eddie +Estella +Fay +Joe +Kathi +Margo +Molly +Robbie +Shannon +Sonya +Susanne +Antoinette +Bettye +Claudette +Doreen +Eloise +Eugenia +Eula +Faith +Freda +Gay +Gracie +Ivy +Janette +Kathie +Kitty +Leanne +Leona +Lorena +Lottie +Marcella +Marianne +Olivia +Rutha +Sadie +Sandy +Saundra +Sherryl +Sonia +Sybil +Teri +William +Bette +Beverley +Blanche +Camille +Christie +Debrah +Dollie +Edwina +Elnora +Gayla +Gina +Glinda +Gwen +Ingrid +Jerri +Karol +Kristine +Lyn +Madeline +Marietta +Marilynn +Maryann +Merle +Michael +Mindy +Polly +Portia +Queen +Rhoda +Rosie +Tonya +Wilhelmina +Antionette +Cathryn +Celestine +Charmaine +Chris +Dee +Earline +Freddie +James +Jayne +Jerry +Jessica +Jewell +Josie +Julianne +Karin +Kristin +Libby +Lorene +Loretha +Marcy +Nanette +Ola +Olga +Ollie +Rena +Ronda +Rosemarie +Sondra +Stacey +Suzan +Tamara +Tanya +Terrie +Therese +Valarie +Willa +Abigail +Ada +Alison +Avis +Bettie +Callie +Cecile +Christy +Claretha +Clarice +Clementine +Corinne +Deanna +Debby +Delia +Dolly +Elena +Elise +Felice +Francina +Gwenda +Heidi +Hope +Ilene +Jacqulyn +Jannie +Jocelyn +Johanna +John +Kerry +Ladonna +Lelia +Lesley +Lessie +Lila +Lilly +Lizabeth +Malinda +Margret +Mari +Marta +May +Melodie +Mollie +Muriel +Noreen +Odessa +Opal +Pattie +Pearlie +Ronnie +Roxann +Shawn +Shirleen +Tracy +Valencia +Valorie +Verdell +Vernell +Wynell +Adrianne +Adrienne +Alva +Arleen +Bari +Beryl +Bonny +Caron +Cathie +Cecily +Charlie +Cheryll +Colette +Cornelia +Darla +Debroah +Delorise +Delphine +Donnie +Drucilla +Elisa +Elisabeth +Estelle +Ester +Etta +Felecia +Francis +Freida +Gaye +Gena +Gretchen +Harriette +Helene +Hollie +Ila +Ina +Ira +Jacquelin +Jacquline +Janelle +Janine +Jimmie +Johnny +Jonnie +Juliette +Kathrine +Lani +Leatha +Lela +Lizzie +Lorie +Lorine +Luanne +Lucretia +Margery +Matilda +Mitzi +Nannette +Natalie +Nedra +Nettie +Neva +Nicki +Norene +Ossie +Pamelia +Pansy +Pat +Regenia +Rene +Retha +Robbin +Rochelle +Roseann +Scarlett +Selina +Selma +Sheilah +Shelby +Sherrill +Shirlene +Stacy +Twila +Valeria +Veda +Vernita +Vikki +Linda +Deborah +Mary +Patricia +Debra +Susan +Barbara +Sandra +Cynthia +Karen +Brenda +Donna +Sharon +Pamela +Nancy +Carol +Shirley +Carolyn +Elizabeth +Janet +Janice +Beverly +Gloria +Betty +Diane +Cheryl +Margaret +Catherine +Kathy +Joyce +Rebecca +Wanda +Kathleen +Judy +Marilyn +Teresa +Dorothy +Martha +Gail +Theresa +Robin +Peggy +Denise +Bonnie +Judith +Paula +Rose +Gwendolyn +Virginia +Laura +Kathryn +Katherine +Jo +Connie +Cathy +Helen +Sylvia +Frances +Alice +Sarah +Vicki +Phyllis +Joan +Jacqueline +Glenda +Ann +Debbie +Christine +Lisa +Sheila +Annie +Sherry +Rhonda +Diana +Ruth +Evelyn +Terry +Valerie +Elaine +Victoria +Charlotte +Marsha +Darlene +Angela +Jane +Jean +Julia +Vivian +Jennifer +Marcia +Suzanne +Ellen +Yvonne +Lynn +Jan +Julie +Maria +Regina +Rita +Dianne +Vickie +Doris +Charlene +Leslie +Constance +Sally +Stephanie +Terri +Jeanette +Michelle +Juanita +Anita +Joanne +Marie +Norma +Cindy +Rosa +Priscilla +Anna +Lois +Annette +Delores +Emma +Edna +Melanie +Roberta +Anne +Sue +Audrey +Joy +Loretta +Laurie +Melissa +Willie +Sheryl +Jacquelyn +Patsy +Veronica +Belinda +Jill +Ruby +Cassandra +Dawn +Lillian +Lynda +Vanessa +Vera +Kim +Louise +Mildred +Penny +Geraldine +Wendy +Shelia +Thelma +Lori +Marian +Paulette +Edith +Lillie +Toni +Sara +Deloris +Marjorie +Candace +Carrie +Claudia +Eva +Irene +June +Lorraine +Michele +Faye +Holly +Margie +Melody +Josephine +Patti +Renee +Carla +Ethel +Hazel +Joann +Marlene +Unknown +Bertha +Jackie +Jeanne +Kay +Kimberly +Andrea +Maxine +Amy +Wilma +Bernice +Bobbie +Eileen +Iris +Arlene +Ella +Grace +Melinda +Gladys +Janis +Lou +Mae +Alma +Clara +Colleen +Emily +Gayle +Marion +Pauline +Rosemary +Vicky +Lucy +Mona +Dale +Debora +Johnnie +Lynne +Nadine +Nina +Esther +Georgia +Lydia +Maureen +Monica +Janie +Myra +Nora +Tina +Beth +Eleanor +Ernestine +Jessie +Sherri +Becky +Carmen +Florence +Lucille +Lucinda +Shelley +Sherrie +Fannie +Ida +Jamie +Minnie +Patrice +Ramona +Susie +Harriet +Patty +Velma +Alicia +Beatrice +Betsy +Dianna +Dolores +Gale +Geneva +Jennie +Lee +Marguerite +Rachel +Roxanne +Althea +Billie +Carole +Harriett +Jeannie +Mattie +Stella +Yolanda +Antoinette +Jeannette +Lola +Naomi +Olivia +Rosalind +Bessie +Bonita +Cora +Frankie +Ginger +Viola +Cathleen +Crystal +Diann +Earnestine +Hilda +Joni +Mamie +Miriam +Robyn +Tracy +Alberta +Cheri +Daisy +Dana +Essie +Gay +Henrietta +Lynette +Rosetta +Sheree +Sondra +Terrie +April +Bettye +Cecilia +Elouise +Eula +Faith +Francine +Hattie +Leola +Luann +Maggie +Marva +Nellie +Sonja +Sonya +Trudy +Valarie +Caroline +Claire +Daphne +Eloise +Gina +Inez +Janette +Jody +Katie +Laurel +Lula +Marianne +Reba +Suzan +Felicia +Flora +Jana +Jenny +Lena +Merry +Myrtle +Penelope +Rosalyn +Sonia +Verna +Violet +Winifred +Agnes +Ava +Bernadette +Christy +Dolly +Elsie +Gwen +Jannie +Lenora +Leona +Nettie +Tanya +Yvette +Alison +Amanda +Bettie +Cecelia +Della +Gretchen +Heather +Irma +Janine +Laverne +Lorene +Mercedes +Muriel +Rena +Robbie +Ruthie +Shannon +Ada +Adrienne +Candice +Candy +Cherry +Dora +Doretha +Erma +Eugenia +Freda +Joanna +Karla +Katharine +Kathi +Margo +Marla +Mitzi +Patrica +Pearl +Rosanne +Sharron +Susanne +Valeria +Vernita +Blanche +Cathryn +Christina +Earlene +Gayla +Heidi +Jeanie +Jeri +Julianne +Leah +Lizzie +Lora +Mindy +Natalie +Queen +Rachael +Teri +Addie +Amelia +Bridget +Celeste +Celia +Clarice +Debrah +Dena +Dona +Etta +Eve +Gertrude +Glenna +Harriette +Ina +Jerry +Joe +Jonnie +Kathie +Katrina +Lauren +Lavern +Leila +Lessie +Lila +Marcella +Myrna +Ola +Rosemarie +Sadie +Sallie +Saundra +Sheri +Sybil +Theodora +Valorie +Velda +Winnie +Allison +Bridgett +Charlie +Chris +Corine +Dixie +Dollie +Doreen +Dorothea +Elise +Eunice +Fran +Georgette +Helena +Ivy +Jacalyn +Jayne +Jewel +Kerry +Letha +Louvenia +Luella +Madeline +Margret +Odessa +Sharlene +Shelby +Adele +Alisa +Angelia +Avis +Bobbi +Cassie +Cathi +Claudette +Cornelia +Danielle +Darla +Delois +Desiree +Edwina +Erin +Evangeline +Fay +Francis +Georgie +Gracie +Hester +Iva +Jessica +Josie +Kelly +Kristine +Lucia +Lucretia +Luvenia +Madelyn +Marcie +Molly +Neva +Nita +Olga +Pearlie +Rebekah +Retha +Ronald +Ronna +Suzette +Tracey +Valinda +Verdell +Vida +Willa +Aletha +Allene +Angeline +Beverley +Carlene +Celestine +Cherie +Claretha +Deanna +Donnie +Dorene +Earline +Eartha +Effie +Elisa +Elvira +Estella +Francina +Frieda +Gaynell +Glinda +Hallie +Hope +Jann +Joanie +Jodi +Karin +Karon +Kaye +Lana +Laureen +Leigh +Libby +Lona +Loretha +Lorna +Lottie +Luanne +Mable +Marcy +Marietta +Marilynn +Marta +May +Melba +Melodie +Nola +Ophelia +Pam +Pat +Peggie +Robbin +Ronda +Roxie +Sandy +Shelly +Sherryl +Stacy +Tara +Teressa +Therese +Trina +Vernell +Winona +Alecia +Alene +Alfreda +Altamese +Angie +Annetta +Barbra +Bernita +Beulah +Caren +Cheryle +Christi +Claudine +Coleen +Corinne +Corliss +Corrine +Deana +Debi +Dee +Deirdre +Delia +Delorise +Dinah +Flossie +Freddie +Gaye +George +Gilda +Glynda +Ilene +Isabell +Jacquline +Jacqulyn +Jeannine +Jocelyn +Jodie +Jolene +Joycelyn +Karol +Kathrine +Kitty +Krista +Lawanda +Leatha +Lolita +Lorena +Lu +Lucile +Lynnette +Margarett +Meredith +Merrie +Michael +Nanette +Nelda +Nikki +Ollie +Ora +Pandora +Prudence +Rachelle +Rosita +Rubye +Sabrina +Scarlet +Shawn +Sydney +Toby +Tonya +Vernice +Vikki +Mary +Deborah +Linda +Debra +Patricia +Susan +Barbara +Cynthia +Brenda +Sandra +Donna +Karen +Sharon +Pamela +Nancy +Carol +Cheryl +Elizabeth +Diane +Carolyn +Janet +Betty +Shirley +Janice +Gloria +Kathy +Beverly +Teresa +Wanda +Margaret +Joyce +Kathleen +Denise +Dorothy +Theresa +Catherine +Robin +Rebecca +Gail +Martha +Judy +Laura +Marilyn +Judith +Connie +Bonnie +Kathryn +Sherry +Cathy +Debbie +Jo +Lisa +Virginia +Paula +Rose +Sheila +Gwendolyn +Phyllis +Peggy +Katherine +Vicki +Victoria +Jacqueline +Valerie +Helen +Diana +Rhonda +Christine +Terry +Alice +Ann +Sylvia +Angela +Sarah +Evelyn +Glenda +Lynn +Elaine +Joan +Julie +Terri +Jane +Jennifer +Ruth +Annie +Doris +Kim +Frances +Yvonne +Anita +Suzanne +Jean +Cindy +Darlene +Vivian +Stephanie +Leslie +Jacquelyn +Marie +Sheryl +Constance +Rita +Juanita +Loretta +Marcia +Marsha +Julia +Melanie +Charlene +Audrey +Charlotte +Ellen +Regina +Vanessa +Maria +Ruby +Annette +Dawn +Lori +Belinda +Michelle +Vickie +Sally +Wendy +Anne +Renee +Jan +Jeanette +Tina +Delores +Dianne +Roberta +Laurie +Emma +Andrea +Edna +Jill +Joy +Shelia +Anna +Melinda +Norma +Sue +Debora +Eva +Jeanne +Melody +Mildred +Joann +Lynda +Willie +Faye +Geraldine +Lois +Sara +Gayle +Penny +Priscilla +Amy +Joanne +Melissa +Patti +Rosa +Toni +Clara +Lillie +Lorraine +Vicky +Carmen +Edith +Holly +Kimberly +Marjorie +Patsy +Ethel +Lillian +Veronica +Janis +Lee +Michele +Josephine +Vera +Candace +Carla +Johnnie +June +Kay +Marion +Sabrina +Louise +Marian +Gladys +Iris +Maxine +Thelma +Beth +Claudia +Irene +Cassandra +Maureen +Georgia +Marlene +Colleen +Jackie +Lynne +Arlene +Bobbie +Eleanor +Lydia +Ella +Harriet +Rachel +Carole +Janie +Nina +Paulette +Sherri +Teri +Beatrice +Bernice +Carrie +Jeannie +Lucy +Mattie +Bertha +Emily +Florence +Hazel +Susie +Christina +Marla +Sheree +Alicia +Gina +Myra +Ida +Jamie +Joni +Lucille +Mae +Becky +Eileen +Esther +Grace +Laverne +Sherrie +Unknown +Alma +Dale +Desiree +Jeannette +Lauren +Lou +Margie +Miriam +Mona +Wilma +Bonita +Dana +Marianne +Olivia +Ramona +Rosemary +Tracy +Velma +Billie +Cherie +Deloris +Erma +Faith +Ginger +Jessie +Roxanne +Sheri +Yolanda +Cathleen +Cora +Daisy +Flora +Patty +April +Caroline +Dolores +Dora +Nadine +Pauline +Celia +Mitzi +Suzan +Bessie +Cecelia +Hattie +Lucinda +Minnie +Monica +Nora +Patrice +Rosalyn +Shelley +Sonja +Terrie +Viola +Ava +Cheri +Dianna +Geneva +Hilda +Jennie +Lena +Lenora +Robbie +Rosetta +Earnestine +Jenny +Jessica +Naomi +Queen +Shannon +Valarie +Winifred +Agnes +Alberta +Betsy +Essie +Freda +Laurel +Leah +Mamie +Tanya +Amanda +Angelia +Dixie +Ernestine +Heather +Jana +Kathie +Merry +Robyn +Amelia +Cecilia +Della +Frankie +Heidi +Henrietta +Inez +Leigh +Lola +Maggie +Marva +Rosalind +Sallie +Sandy +Sonya +Stella +Therese +Verna +Antoinette +Bridget +Crystal +Doretha +Dorothea +Gale +Irma +Jayne +Lana +Melba +Sonia +Tara +Violet +Alfreda +Bernadette +Blanche +Candy +Celeste +Christy +Claudette +Earlene +Eddie +Elnora +Elsie +Gwen +Jeanie +Katie +Lorna +Lynette +Mable +Molly +Nettie +Nita +Robbin +Sharron +Tamara +Allison +Althea +Bonny +Candice +Claire +Deanna +Dena +Doreen +Earline +Eunice +Gertrude +Ivy +Janette +Joanna +Karla +Margo +Marguerite +Mercedes +Mindy +Pearlie +Penelope +Reba +Rosanne +Rosie +Roslyn +Sybil +Tracey +Yvette +Alison +Avis +Celestine +Elise +Eloise +Eugenia +Francine +Gracie +Hope +Jannie +Jeri +Jerri +Jody +Katharine +Kathi +Lessie +Luann +Luanne +Lula +Nellie +Olga +Rena +Rutha +Ada +Adrienne +Angie +Bette +Caren +Clare +Corinne +Darla +Dolly +Dona +Donnie +Freddie +Harriett +Jeannine +Kaye +Kelly +Leona +Lila +Lottie +Nelda +Ollie +Ora +Pattie +Polly +Ronda +Shelby +Tonia +Antionette +Bettie +Carlene +Charlie +Cherry +Chris +Clarissa +Debby +Deena +Diann +Elouise +Estella +Etta +Felecia +Felicia +Gilda +Jacquline +Jewel +Jodi +Karin +Leila +Lora +May +Myrna +Myrtle +Natalie +Neva +Nola +Patrica +Pearl +Peggie +Suzette +Tonya +Trudy +Valeria +Benita +Bennie +Bettye +Beverley +Bobbi +Camille +Clarice +Delilah +Dollie +Edwina +Effie +Elena +Eliza +Fannie +Fay +Gay +Glinda +Isabel +Jenifer +Jerry +Jocelyn +Joe +Katrina +Kitty +Lavern +Lea +Leola +Lorene +Lucretia +Madeline +Marilynn +Meredith +Michael +Nanette +Ola +Robert +Rosemarie +Roxann +Shari +Sondra +Stacey +Tommie +Valorie +Zandra +Arleen +Barbra +Bethany +Beulah +Bobby +Callie +Charleen +Charmaine +Cheryll +Colette +Cornelia +Danielle +Deirdre +Delia +Denice +Elisa +Ester +Eula +Evangeline +Eve +Francina +George +Georgina +Greta +Gretchen +Helene +Ilene +Jacalyn +James +Jannette +Jeanine +Kathrine +Kristi +Lesa +Letha +Lonnie +Loretha +Louvenia +Lu +Marcella +Matilda +Millie +Pam +Pandora +Rae +Randi +Renita +Ruthie +Sebrina +Sharlene +Sheron +Sophia +Theodora +Vernell +Willene +Yasmin +Alfredia +Alisa +Allie +Ana +Antonia +Arnita +Athena +Bambi +Beryl +Camilla +Cecile +Christie +Clementine +Cleo +Darby +Deana +Debrah +Denese +Dinah +Fran +Francis +Freida +Genevieve +Georgette +Ginny +Glenna +Gwyn +Hannah +Hettie +Irish +Iva +Jacqulyn +Janine +Janna +Joellen +Johanna +John +Josie +Joycelyn +Julianne +Juliet +Kathe +Kris +Kristie +Kristina +Kristine +Laureen +Lavonne +Lawana +Lelia +Lesley +Libby +Lizzie +Lorena +Lue +Mabel +Mara +Margarita +Marta +Megan +Melodie +Melonie +Merrie +Millicent +Missy +Mollie +Muriel +Nikki +Pamella +Pennie +Rosalee +Sabrena +Saundra +Selina +Sherrill +Starr +Sydney +Teena +Terese +Thomasina +Tony +Trina +Valencia +Velda +Vickey +Wilhelmina +Willette +Zelda +Mary +Deborah +Linda +Patricia +Debra +Susan +Cynthia +Barbara +Karen +Sharon +Brenda +Pamela +Sandra +Donna +Cheryl +Nancy +Carol +Kathy +Diane +Carolyn +Teresa +Elizabeth +Shirley +Janet +Janice +Wanda +Joyce +Betty +Gloria +Beverly +Robin +Margaret +Kathleen +Catherine +Lisa +Denise +Dorothy +Martha +Theresa +Rebecca +Debbie +Judy +Gail +Bonnie +Laura +Cathy +Gwendolyn +Angela +Kathryn +Jo +Sheila +Phyllis +Sherry +Connie +Paula +Jacqueline +Rose +Judith +Kim +Katherine +Marilyn +Virginia +Darlene +Rhonda +Vicki +Valerie +Lynn +Peggy +Frances +Kimberly +Tina +Julie +Terry +Anita +Diana +Alice +Vivian +Helen +Ann +Jennifer +Sarah +Terri +Victoria +Yvonne +Cindy +Doris +Sylvia +Christine +Annie +Vickie +Evelyn +Glenda +Stephanie +Ruth +Suzanne +Annette +Julia +Elaine +Leslie +Jane +Joan +Melanie +Michelle +Ellen +Belinda +Rita +Charlene +Marsha +Vanessa +Sheryl +Laurie +Joy +Charlotte +Dawn +Jean +Loretta +Maria +Marcia +Debora +Marie +Ruby +Wendy +Juanita +Sally +Audrey +Andrea +Anne +Carla +Melissa +Anna +Jan +Lori +Renee +Michele +Norma +Roberta +Constance +Melody +Mildred +Dianne +Jeanne +Regina +Melinda +Rosa +Sabrina +Shelia +Delores +Toni +Cassandra +Jill +Lois +Veronica +Edith +Kay +Jacquelyn +Holly +Lorraine +Willie +Lynda +Sue +Gayle +Penny +Priscilla +Geraldine +Lynne +Sara +Gladys +Lillian +Carrie +Emma +Joanne +Louise +Jeanette +April +Janis +Colleen +Edna +Ethel +Eva +Jackie +Candace +Grace +Patsy +Patti +Maureen +Sheree +Carmen +Clara +Deloris +Eileen +Lee +Paulette +Lucy +Marjorie +Monica +Yvette +Beth +Lillie +Faye +Irene +Joni +Vera +June +Amy +Josephine +Sheri +Sherri +Gina +Iris +Joann +Marion +Marlene +Miriam +Claudia +Harriet +Marian +Roxanne +Gale +Rosalind +Tanya +Dana +Esther +Velma +Betsy +Bobbie +Cherie +Ella +Johnnie +Lydia +Arlene +Beatrice +Becky +Janie +Jeannie +Mattie +Emily +Margie +Rosalyn +Rosemary +Sherrie +Bernice +Hazel +Mae +Nina +Sandy +Vicky +Eleanor +Susie +Tracy +Daisy +Naomi +Teri +Alma +Carole +Christina +Ernestine +Georgia +Ginger +Maxine +Nora +Shelley +Yolanda +Candy +Lou +Marianne +Pauline +Ramona +Caroline +Cecilia +Dale +Desiree +Katie +Lucinda +Patty +Robyn +Thelma +Alicia +Althea +Cheri +Crystal +Ida +Jeannette +Lynette +Verna +Bertha +Claire +Jenny +Laurel +Leigh +Lucille +Rachel +Sharron +Bonita +Francine +Jody +Karla +Minnie +Amanda +Billie +Doreen +Flora +Florence +Frankie +Geneva +Hilda +Jamie +Jennie +Jeri +Laverne +Shannon +Alfreda +Bessie +Cathleen +Celia +Dianna +Faith +Gwen +Hattie +Nadine +Rosetta +Terrie +Tracey +Wilma +Amelia +Angelia +Ava +Dolores +Dora +Earnestine +Eunice +Fannie +Jessie +Kelly +Lula +Margo +Marla +Mindy +Mona +Myra +Valarie +Gay +Jayne +Kathi +Patrice +Tonya +Antoinette +Candice +Cora +Deanna +Eula +Katrina +Lenora +Mamie +Natalie +Olivia +Ruthie +Sonia +Celeste +Eloise +Erma +Leah +Marguerite +Marva +Merry +Nellie +Reba +Sallie +Stacey +Unknown +Agnes +Cecelia +Inez +Jannie +Lora +Lorene +Maggie +Malinda +Molly +Nettie +Robbin +Ronda +Rosie +Stacy +Velda +Bernadette +Christy +Diann +Heidi +Kimberley +Lauren +Leola +Millie +Nanette +Pearl +Rena +Shari +Shawn +Sonya +Stella +Suzan +Valeria +Alberta +Essie +Ina +Jessica +Karin +Kathie +Lena +Mitzi +Robbie +Trudy +Alisa +Avis +Blanche +Cathryn +Chandra +Cheryle +Della +Dixie +Etta +Felicia +Harriett +Jana +Kerry +Leesa +Lela +Loraine +Lorna +Lorrie +Luanne +Nita +Pearline +Roslyn +Saundra +Suzette +Viola +Winifred +Bettye +Caryl +Claudette +Fay +Felecia +Freda +Georgette +Henrietta +Janelle +Jewel +Joanna +Jocelyn +Leona +Lola +Lorie +Lucia +Mable +Melodie +Mercedes +Patrica +Polly +Queen +Randi +Rene +Sonja +Tamara +Therese +Ada +Adrienne +Allison +Angelina +Angeline +Bridget +Cathrine +Daphne +Debrah +Dena +Denice +Doretha +Dorthy +Elise +Estella +Eve +Genevieve +James +Janine +Luann +Marcie +Melba +Olga +Pat +Retha +Sondra +Susanne +Tara +Trina +Vernell +Violet +Bambi +Benita +Charlie +Darla +Debby +Dee +Deena +Edwina +Elisa +Elouise +Eugenia +Fran +Freddie +Greta +Hannah +Heather +Irma +Janette +Jeanie +Jeannine +Jerry +Joe +Juliet +Kaye +Kitty +Lauri +Lavern +Lila +Madeline +Margret +Marilynn +Nona +Ollie +Pam +Robert +Rutha +Sharlene +Valorie +Willa +Zelda +Zelma +Adele +Antionette +Bette +Camille +Caren +Cassie +Charles +Cherry +Claretha +Daryl +Deidre +Dinah +Earlene +Elena +Francina +Gracie +Hope +Ira +Isabel +Iva +Jerri +Jodi +Kandy +Kari +Karon +Katharine +Kimberlee +Lana +Lawanna +Loretha +Lucretia +Marcella +May +Melva +Mollie +Myrna +Nannette +Nell +Pattie +Renita +Rochelle +Ronnie +Serena +Shelby +Shelly +Sherie +Shirlene +Sybil +Tonie +Vernetta +Voncile +Vonda +Adrianne +Aida +Albertha +Alfredia +Angel +Anthony +Bernadine +Beverley +Bobbi +Cathie +Chris +Cleo +Colette +Danita +Dolly +Dorothea +Dottie +Eddie +Francis +Gayla +Gertrude +Gilda +Glenna +Glynis +Gussie +Harriette +Idella +Ilene +Karyn +Kate +Kristina +Lottie +Marcy +Marta +Mavis +Muriel +Myrtice +Myrtle +Nena +Pamala +Pearlie +Peggie +Penelope +Rebekah +Roxann +Scarlett +Selma +Sheena +Tangela +Teena +William +Alana +Alison +Alyce +Ana +Angie +Beulah +Bobby +Bridgett +Bunny +Candis +Carey +Carlene +Caron +Charmaine +Clare +Corinne +Dara +Debbra +Dedra +Delia +Delilah +Delois +Denese +Dian +Dona +Dori +Dorinda +Elnora +Elsie +Erin +Fredia +Gaye +Gena +Gerri +Ginny +Gretchen +Hilary +Ivy +Janell +Jeanine +Jeanna +Jodie +John +Joycelyn +Juliana +Justine +Kathey +Kathrine +Kristine +Laurette +Lea +Leanne +Lelia +Leonora +Lesley +Lissa +Lizzie +Louvenia +Luella +Lynnette +Madonna +Margarett +Marietta +Marisa +Maryann +Matilda +Melonie +Meredith +Merri +Michael +Mimi +Nan +Opal +Ora +Ouida +Pandora +Pricilla +Princess +Reva +Rise +Rosalie +Roxane +Roxie +Sadie +Sandi +Sherree +Sydney +Terese +Tonda +Tonia +Ursula +Veda +Velinda +Venetia +Venita +Verdell +Vernita +Wendi +Wilhelmina +Mary +Linda +Deborah +Cynthia +Patricia +Debra +Susan +Karen +Barbara +Brenda +Sharon +Donna +Sandra +Pamela +Nancy +Cheryl +Kathy +Carol +Elizabeth +Teresa +Carolyn +Cindy +Lisa +Diane +Janice +Shirley +Janet +Robin +Wanda +Betty +Theresa +Catherine +Beverly +Joyce +Gloria +Laura +Margaret +Kathleen +Debbie +Rebecca +Denise +Julie +Gail +Martha +Dorothy +Kim +Cathy +Judy +Valerie +Vicki +Katherine +Sheila +Rhonda +Darlene +Kathryn +Terri +Kimberly +Sherry +Virginia +Angela +Gwendolyn +Paula +Bonnie +Connie +Rose +Jacqueline +Sylvia +Phyllis +Jo +Judith +Diana +Helen +Anita +Lynn +Tina +Terry +Marilyn +Victoria +Peggy +Leslie +Lori +Christine +Jane +Jennifer +Joan +Ann +Evelyn +Sarah +Vickie +Alice +Annette +Frances +Belinda +Glenda +Laurie +Sheryl +Charlotte +Ruth +Suzanne +Julia +Jean +Annie +Charlene +Michelle +Yvonne +Vivian +Elaine +Marie +Rita +Maria +Ellen +Stephanie +Tammy +Doris +Anne +Vanessa +Loretta +Dawn +Carla +Regina +Melanie +Jan +Marsha +Amy +Audrey +Michele +Renee +Joy +Andrea +Delores +Anna +Holly +Juanita +Melinda +Melody +Wendy +Sally +Geraldine +Jacquelyn +Marcia +Norma +Roberta +Ruby +Sara +Veronica +Cassandra +Dianne +Jeanette +Jeanne +Melissa +Constance +Penny +Dana +Carrie +Tracy +Becky +Lorraine +Joann +Priscilla +Shelia +Sue +Lillian +Mildred +Toni +Rosa +Jill +Debora +Lillie +Vicky +Edith +Jackie +Sherri +Louise +Lynda +Edna +Gayle +Eva +Marian +Gina +Joanne +Patti +Irene +Kelly +Lynne +Maureen +Susie +Bobbie +Christina +Kay +Thelma +Willie +Carmen +Ella +Lee +Marion +Sandy +Beth +Lydia +Marjorie +Tanya +Georgia +Janis +Vera +Faye +Gladys +June +Patsy +Rachel +Claudia +Ginger +Joni +Lois +Margie +Patty +Emma +Grace +Ramona +Candace +Colleen +Monica +Paulette +Teri +Myra +Nina +Sabrina +Sheri +Sherrie +Velma +April +Bernice +Cecelia +Pam +Gale +Eileen +Janie +Marlene +Marianne +Rosemary +Candy +Maxine +Miriam +Sheree +Alma +Clara +Iris +Josephine +Unknown +Yolanda +Alicia +Beatrice +Bertha +Jamie +Jeannie +Tamara +Cheri +Crystal +Deloris +Hazel +Ida +Mattie +Terrie +Wilma +Caroline +Felicia +Jenny +Roxanne +Bonita +Cathleen +Ethel +Geneva +Lauren +Lucille +Lucinda +Natalie +Nora +Pauline +Sonia +Arlene +Dianna +Heidi +Johnnie +Katie +Katrina +Lucy +Tracey +Alberta +Angelia +Bernadette +Eleanor +Emily +Esther +Mae +Patrice +Althea +Antoinette +Karla +Marla +Mona +Cora +Ernestine +Florence +Jeanie +Jessie +Lou +Valarie +Betsy +Dale +Erin +Francine +Minnie +Patrica +Robyn +Rosalind +Stella +Bernadine +Cecilia +Christy +Claire +Daisy +Dolores +Gwen +Jody +Laverne +Lenora +Lola +Olivia +Shawn +Tami +Tammie +Verna +Vikki +Adrienne +Carole +Fannie +Jayne +Jeannette +Lavern +Lora +Sonja +Amanda +Ava +Bessie +Cherie +Doreen +Faith +Harriet +Hattie +Janette +Sharron +Billie +Desiree +Elsie +Hilda +Maggie +Pat +Ruthie +Shelley +Violet +Elisabeth +Elouise +Felecia +Flora +Frankie +Joanna +Jodi +Lena +Lynette +Rene +Shannon +Sonya +Tonya +Alfreda +Blanche +Dora +Erma +Gay +Inez +Laurel +Robbie +Rosalyn +Rosetta +Roslyn +Tara +Valorie +Yvette +Alison +Amelia +Chris +Cindi +Deanna +Della +Eula +Gertrude +Gracie +Heather +Jennie +Leah +Leigh +Lula +Marguerite +Melodie +Mindy +Nadine +Nanette +Naomi +Ronda +Ada +Allison +Benita +Dorothea +Earnestine +Katharine +Lucretia +Mamie +Molly +Queen +Rosie +Sallie +Shari +Shelly +Suzette +Cheryle +Daphne +Darla +Diann +Dorinda +Eunice +Hope +Jana +Jerri +Juliet +Karin +Larry +Marcella +Penelope +Polly +Rena +Rosemarie +Saundra +Sondra +Stacey +Stacy +Suzan +Sybil +Trudy +Agnes +Avis +Beryl +Bridget +Caren +Celia +Cherry +Danita +Delia +Earline +Gilda +Irma +Ivy +Kerry +Kristina +Lorna +Melba +Nellie +Pearl +Pearlie +Reba +Valeria +Vickey +Camille +Christie +Claudette +Danette +Debby +Debi +Dee +Denice +Dixie +Elnora +Freda +Harriett +Jannie +Jessica +John +Kathie +Kimberlee +Kimberley +Leisa +Lorrie +Luann +Malinda +Margo +Maryann +Michael +Renita +Robbin +Sherree +Vernell +Viola +William +Winifred +Ana +Angie +Bette +Bettye +Candice +Celeste +Dena +Dolly +Doretha +Earlene +Fran +Freida +Greta +Gretchen +James +Janine +Jeannine +Jerry +Karon +Lawanda +Lesley +Myrtle +Nona +Ollie +Phoebe +Serena +Sharlene +Shelby +Therese +Velda +Bettie +Beverley +Cathryn +Charles +Clarice +Cornelia +Debrah +Deena +Dinah +Eartha +Eloise +Essie +Etta +Eve +Francis +Georgette +Ginny +Jeri +Juliana +Kathi +Kristin +Leola +Lila +Lorene +Lynnette +Madeline +Marilynn +Marina +Marva +Melva +Merry +Nena +Nettie +Nola +Ora +Pennie +Rhoda +Ronnie +Roxie +Shirlene +Susanna +Tena +Tia +Tracie +Vernita +Albertha +Alva +Beulah +Camilla +Candi +Celestine +Chandra +Darby +Dorthy +Eddie +Edwina +Elise +Geri +Henrietta +Idella +Ila +Ina +Iva +Jocelyn +Jodie +Josie +Joycelyn +Karol +Kathrine +Kitty +Kristy +Ladonna +Lana +Lauri +Leila +Lizzie +Loraine +Lorena +Lottie +Mable +Margarett +Matilda +Melonie +Nannette +Nita +Reva +Robert +Rutha +Spring +Teressa +Tommie +Traci +Trina +Zelda +Zelma +Adele +Alexis +Alisa +Altamese +Angel +Annetta +Antonia +Arleen +Bambi +Barbra +Bernita +Bettina +Carroll +Cathi +Cathie +Clare +Claretha +Clementine +Colette +David +Dina +Elease +Fay +Helena +Isabel +Jacki +Janelle +Janna +Jewel +Joe +Judi +Julianne +Karyn +Kaye +Kenneth +Kristie +Laureen +Leanne +Lesa +Lessie +Luanne +Lyn +Marcy +Mari +Marisa +Maritza +Melvina +Meredith +Nelda +Neva +Ola +Pattie +Sandi +Selma +Starr +Tamera +Terese +Valencia +Wilhelmina +Willette +Abbie +Abigail +Aimee +Alfredia +Anastasia +Athena +Bobbi +Bridgett +Callie +Cara +Carlene +Carlotta +Caron +Casandra +Catharine +Cheryll +Christi +Cinda +Debbra +Deirdre +Edie +Eldora +Elisa +Elsa +Erica +Eugenia +Evon +Flossie +Francina +Gaye +Gena +Gisele +Helene +Hester +Holli +Ilene +Ingrid +Ira +Jacquelin +Jacquline +Jaye +Jeanine +Jenifer +Jewell +Judie +Kandy +Kathyrn +Katy +Kelley +Kerri +Lanette +Larita +Lea +Lela +Lelia +Letha +Letitia +Libby +Lindy +Loretha +Lorie +Lorri +Lu +Lucile +Madelyn +Margarita +Marietta +Marta +Maurine +Merrie +Mimi +Mollie +Myrna +Myrtis +Niki +Noreen +Olga +Opal +Ophelia +Rae +Randi +Rebekah +Renae +Retha +Rochelle +Rona +Roseann +Roselyn +Sherilyn +Sheron +Sherron +Sindy +Stacie +Susanne +Suzy +Tammi +Theressa +Winnie +Zoe +Mary +Patricia +Linda +Cynthia +Deborah +Susan +Debra +Karen +Barbara +Donna +Brenda +Pamela +Sandra +Cheryl +Sharon +Kathy +Lisa +Nancy +Carol +Teresa +Elizabeth +Debbie +Diane +Janice +Cindy +Carolyn +Theresa +Beverly +Laura +Julie +Robin +Shirley +Janet +Kathleen +Catherine +Joyce +Denise +Cathy +Margaret +Wanda +Gloria +Rebecca +Betty +Judy +Valerie +Peggy +Tammy +Darlene +Kimberly +Dorothy +Lori +Rhonda +Angela +Sheila +Kim +Kathryn +Terri +Katherine +Tina +Martha +Phyllis +Bonnie +Rose +Paula +Gail +Vicki +Leslie +Sherry +Annette +Connie +Diana +Terry +Gwendolyn +Jacqueline +Jennifer +Lynn +Marilyn +Michelle +Virginia +Christine +Sylvia +Ann +Anita +Helen +Jo +Belinda +Alice +Judith +Stephanie +Frances +Sheryl +Glenda +Sarah +Suzanne +Julia +Elaine +Vickie +Victoria +Vivian +Joan +Jane +Ruth +Yvonne +Charlotte +Maria +Evelyn +Doris +Laurie +Rita +Dawn +Ellen +Renee +Regina +Vanessa +Jean +Marie +Charlene +Joy +Melanie +Anna +Loretta +Beth +Wendy +Patti +Penny +Amy +Sally +Anne +Annie +Toni +Audrey +Michele +Melissa +Joanne +Rosa +Jill +Kelly +Melinda +Holly +Veronica +Carrie +Marcia +Shelia +Juanita +Dianne +Jackie +Marsha +Sue +Becky +Jeanne +Sara +Constance +Melody +Pam +Andrea +Priscilla +Cassandra +Jeanette +Vicky +Carla +Sherri +Tracy +Lorraine +Jacquelyn +Gina +June +Roberta +Lee +Ruby +Myra +Tamara +Colleen +Dana +Lillian +Lynda +Norma +Joann +Jan +Lois +Teri +April +Delores +Susie +Carmen +Kay +Sabrina +Debora +Geraldine +Grace +Louise +Carole +Faye +Marian +Sheri +Maureen +Mildred +Patty +Sandy +Vera +Edith +Edna +Jody +Claudia +Esther +Gladys +Lydia +Tami +Bobbie +Monica +Heidi +Iris +Josephine +Margie +Yolanda +Beatrice +Emma +Lillie +Rachel +Willie +Alicia +Joni +Karla +Maxine +Patrice +Tanya +Thelma +Ethel +Eva +Ginger +Marlene +Natalie +Eileen +Gayle +Hazel +Marianne +Patsy +Paulette +Rosemary +Emily +Irene +Janie +Marion +Sherrie +Stacy +Christina +Jeannie +Katrina +Marjorie +Tammie +Arlene +Candy +Cecelia +Georgia +Ramona +Frankie +Sonia +Christy +Clara +Janis +Lenora +Miriam +Amanda +Betsy +Crystal +Deanna +Dora +Doreen +Florence +Gale +Harriet +Jodi +Laverne +Lynne +Nora +Rosalind +Stacey +Dianna +Dolores +Lynette +Tracey +Yvette +Caroline +Cheri +Felicia +Jeanie +Johnnie +Shannon +Sonya +Terrie +Allison +Bertha +Bonita +Daisy +Eunice +Shelley +Valarie +Velma +Bernice +Cecilia +Chris +Deloris +Laurel +Lauren +Lucinda +Mattie +Nina +Shari +Alison +Antoinette +Candace +Ella +Geneva +Jamie +Jana +Lena +Lucy +Pat +Pauline +Robyn +Sonja +Therese +Valeria +Adrienne +Hilda +Jayne +Jeannette +Kerry +Penelope +Rosetta +Shelly +Alisa +Daphne +Della +Francine +Gwen +Ida +Jenny +Kathi +Marla +Billie +Carlene +Cathleen +Eleanor +Faith +Gay +Jennie +Lora +Lucille +Nita +Rosalyn +Roxanne +Alfreda +Danette +Erin +Heather +Kelley +Mae +Marguerite +Minnie +Molly +Tonya +Valencia +Wilma +Angelia +Delphine +Dena +Earnestine +Henrietta +Jessie +Kelli +Leigh +Nellie +Olga +Winifred +Celeste +Christie +Debby +Desiree +Flora +Inez +Jeri +Jewel +Kimberley +Lou +Lula +Maryann +Nadine +Naomi +Reba +Rena +Shawn +Tammi +Cherry +Joanna +Lea +Lola +Maggie +Mamie +Mona +Tamra +Tara +Tonia +Violet +Ada +Alma +Ava +Candice +Claire +Dale +Ernestine +Hope +Irma +Katie +Lesa +Malinda +Margo +Melodie +Olivia +Rene +Robbie +Rochelle +Ronda +Althea +Bernadette +Chandra +Cherie +Claudette +Coleen +Cora +Doretha +Essie +Fay +Gracie +Harriett +Ingrid +Jeannine +Jodie +Marcella +Melba +Mitzi +Ora +Sandi +Unknown +Valorie +Verna +Alberta +Angie +Antionette +Bernadine +Cheryle +Dee +Hattie +Ivy +James +Jerri +Jewell +Kathrine +Kellie +Leah +Mercedes +Pattie +Polly +Ruthie +Selena +Sharron +Stella +Trina +Velda +Agnes +Bessie +Celia +Darla +Dolly +Elouise +Felecia +Gretchen +Jocelyn +Lana +Lila +Lizzie +Luann +Luanne +Mable +Mindy +Sheree +Susanne +Suzette +Trudy +Vernita +Alecia +Benita +Bettye +Bobbi +Cathie +Corine +Diann +Dinah +Dollie +Dona +Elnora +Elsie +Erma +Estella +Georgette +Gertrude +Jerry +Jessica +Lauri +Lavern +Leisa +Leola +Madeline +Marva +Nan +Rachelle +Tangela +Viola +Alfredia +Amelia +Annetta +Avis +Bettie +Cindi +Colette +Darleen +Deana +Denice +Dixie +Earline +Effie +Elisabeth +Eugenia +Fern +Freda +Helene +Juliette +Kris +Kristina +Lawanda +Leatha +Leila +Libby +Lucretia +Marina +Marta +Ollie +Patrica +Robbin +Rosie +Roslyn +Suzan +Sybil +Tamela +Tricia +Vickey +Vonda +Abigail +Adrian +Allyson +Angelita +Bambi +Beulah +Candi +Clare +Danita +Dara +Darcy +Dorothea +Edwina +Eloise +Freddie +Freida +Gerri +Ginny +Greta +Ilene +Janelle +Janette +Katharine +Kristin +Ladonna +Lindy +Marisa +Meredith +Merri +Merry +Myrna +Nanette +Pamala +Sallie +Selina +Shelby +Sondra +Tania +Traci +Angel +Angelina +Arleen +Bette +Beverley +Bonny +Bridget +Bridgett +Bridgette +Cathryn +Cecile +Claretha +Clarice +Cornelia +Darby +Debi +Deena +Delia +Dottie +Elise +Eula +Genevieve +George +Jannie +Juliet +Karol +Karon +Krista +Lavonne +Lessie +Letitia +Lorie +Lorna +Lorrie +Louann +Mari +Maritza +Mayra +Michael +Odessa +Ola +Peggie +Randi +Robert +Roxie +Sadie +Scarlett +Sheron +Sophia +Teena +Vernell +William +Adele +Adrianne +Aletha +Alexis +Ana +Andra +Arnita +Athena +Bobby +Camilla +Camille +Cassie +Celestine +Corlis +Cristina +Deanne +Debrah +Delilah +Dina +Dorene +Eddie +Elisa +Erica +Estelle +Evette +Evon +Florine +Gaye +Georgie +Gilda +Gisele +Janine +Jenifer +John +Jolene +Josie +Julianne +Karan +Kari +Kathie +Kaye +Kimberlee +Kitty +Kristie +Latanya +Leona +Lily +Loren +Lorene +Lottie +Lyn +Lynnette +Mara +Marcy +Megan +Muriel +Myrtle +Neva +Nola +Pearl +Pearlie +Queen +Renita +Rosalie +Rosemarie +Roxann +Selma +Sharlene +Sherron +Silvia +Venetia +Wilda +Willa +Zenobia +Albertha +Alexandra +Alyce +Angeline +Antonia +Barbra +Bettina +Cary +Casandra +Charlie +Cheryll +Corinne +Corrine +Damaris +Dannette +Daryl +David +Debbi +Deedee +Elena +Elvira +Etta +Fannie +Glenna +Griselda +Harriette +Iva +Janna +Jaye +Jerilyn +Jerrie +Johanna +Judi +Karin +Katheryn +Kathey +Kristi +Kristy +Krystal +Lanita +Larry +Leann +Lizabeth +Loraine +Mandy +Marcelle +Margret +Marilee +Marti +Mechelle +Mickey +Millicent +Miranda +Nettie +Nicole +Phylis +Rhoda +Rosanne +Roxane +Saundra +Serena +Sheena +Sherrell +Shirlene +Susanna +Suzanna +Suzy +Tamera +Tena +Tommie +Tracie +Twila +Vannessa +Vikki +Mary +Cynthia +Linda +Donna +Patricia +Susan +Debra +Deborah +Karen +Barbara +Brenda +Sharon +Lisa +Pamela +Sandra +Cheryl +Kathy +Debbie +Elizabeth +Teresa +Nancy +Carol +Cindy +Carolyn +Diane +Robin +Tammy +Beverly +Laura +Janet +Janice +Denise +Cathy +Theresa +Wanda +Kimberly +Julie +Shirley +Angela +Lori +Valerie +Rhonda +Betty +Sheila +Catherine +Kathleen +Rebecca +Tina +Kim +Judy +Margaret +Terri +Joyce +Gloria +Sherry +Bonnie +Vicki +Michelle +Connie +Peggy +Gail +Martha +Annette +Phyllis +Darlene +Dawn +Katherine +Diana +Dorothy +Virginia +Kathryn +Paula +Terry +Leslie +Jennifer +Rose +Christine +Lynn +Gwendolyn +Laurie +Suzanne +Wendy +Ann +Jacqueline +Anita +Kelly +Sylvia +Helen +Belinda +Anna +Marie +Marilyn +Stephanie +Vanessa +Rita +Beth +Charlotte +Joan +Melanie +Sarah +Alice +Maria +Ellen +Frances +Elaine +Loretta +Amy +Judith +Vivian +Glenda +Regina +Vickie +Jean +Julia +Victoria +Melissa +Sheryl +Jane +Jo +Andrea +Gina +Michele +Evelyn +Jill +Ruth +Yvonne +Tracy +Anne +Pam +Shelia +Joy +Penny +Annie +Cassandra +Marcia +Renee +Toni +Melinda +Holly +Jackie +Tami +Veronica +Audrey +Carla +Charlene +Joanne +Joann +Constance +Melody +Ruby +Carrie +Dana +Doris +Sally +Lorraine +Sherri +Becky +Delores +Priscilla +Sandy +Jacquelyn +Lois +Patti +Patty +Vicky +Dianne +Marsha +Sue +Jan +Norma +Jeanette +Carmen +Jeanne +Juanita +Colleen +Tanya +Lynda +Sara +Rosa +Tamara +Eileen +Louise +Myra +Roberta +April +Arlene +Jamie +Lillian +Marjorie +Eva +Monica +Sabrina +Edith +Faye +Lillie +Teri +Yolanda +Grace +Tammie +Willie +Betsy +Crystal +Natalie +Felicia +June +Alicia +Edna +Nina +Rosemary +Lee +Mildred +Geraldine +Susie +Emma +Allison +Bobbie +Heidi +Kay +Lydia +Maureen +Emily +Jeannie +Rachel +Stacy +Cheri +Katrina +Marion +Carole +Debora +Eleanor +Gayle +Gwen +Ramona +Sonia +Vera +Margie +Sherrie +Sonya +Robyn +Terrie +Irene +Iris +Lynne +Mona +Rosalind +Sonja +Amanda +Ginger +Johnnie +Maxine +Miriam +Patrice +Shelley +Sheri +Tracey +Yvette +Esther +Shari +Jenny +Joni +Kathi +Katie +Patsy +Alison +Deanna +Lucinda +Pauline +Shelly +Dora +Ella +Ethel +Gay +Georgia +Gladys +Josephine +Marian +Paulette +Caroline +Cecelia +Claudia +Marianne +Alma +Christina +Dolores +Florence +Harriet +Hazel +Mae +Marlene +Nora +Thelma +Cherie +Ida +Karla +Lauren +Roxanne +Stacey +Ana +Bernadette +Candace +Christy +Erin +Ernestine +Laverne +Leah +Pat +Rene +Tonya +Valarie +Angelia +Antoinette +Billie +Clara +Daisy +Della +Deloris +Desiree +Leigh +Lucy +Dianna +Eunice +Janis +Jennie +Jeri +Kelli +Lou +Minnie +Rosalyn +Shawn +Candy +Dale +Faith +Francine +Hope +Mattie +Valeria +Alfreda +Angie +Bernice +Bonita +Celia +Doreen +Felecia +Gale +Jeannette +Lola +Lynette +Therese +Claire +Heather +Jessica +Lorrie +Marcy +Ronda +Shannon +Sheree +Sophia +Velma +Bridgette +Cecilia +Geneva +Hattie +Henrietta +Jody +Lora +Penelope +Robbie +Verna +Beatrice +Bertha +Bridget +Dena +Elisa +Jessie +Jodi +Kelley +Leanne +Marguerite +Nadine +Ollie +Rena +Wilma +Alberta +Debby +Flora +Lauri +Mindy +Olivia +Shelby +Tangela +Tara +Traci +Alisa +Bessie +Chris +Frankie +Gigi +Janie +Marcella +Nanette +Nellie +Polly +Rosemarie +Rosetta +Rosie +Ruthie +Susanne +Trina +Trudy +Zelda +Antionette +Cindi +Daphne +Darla +Debi +Delphine +Jeanie +Joanna +Katharine +Kimberley +Kristin +Liz +Malinda +Mamie +Marla +Naomi +Robbin +Selena +Sondra +Suzette +Tammi +Tamra +Amelia +Ava +Bobbi +Deena +Ginny +Gracie +Gretchen +Irma +Jana +Janine +Jayne +Jeanine +Kerry +Kimberlee +Kristine +Ladonna +Lana +Laurel +Lenora +Maryann +Queen +Saundra +Sharron +Stella +Ada +Adrienne +Cathleen +Claudette +Danette +Dolly +Elisabeth +Georgette +Jerri +John +Leila +Luz +Madeline +Merry +Patrica +Roslyn +Tamela +Tricia +Winifred +Althea +Amber +Avis +Cathie +Celeste +Cherry +Cora +Doretha +Elnora +Freda +Ilene +Joe +Karin +Kathie +Lena +Letha +Lula +Marva +Mitzi +Monique +Reba +Valencia +Agnes +Brigitte +Charmaine +Cheryle +Christa +Dee +Deirdre +Erma +Eugenia +Freida +Greta +Harriett +Helene +Jeanna +Judi +Karan +Kitty +Lawanda +Lea +Lorna +Lucille +Natasha +Selina +Suzy +Tamera +Tamie +Venus +Vickey +Abigail +Arleen +Bambi +Carey +Cassie +Corinne +Diann +Dona +Dorene +Earlene +Elise +Essie +Eve +Glenna +Ingrid +Iva +Ivy +Jeannine +Jerry +Jewel +Kandi +Kerri +Krista +Leola +Lesa +Lessie +Lindy +Lizzie +Lottie +Luann +Mabel +Margarita +Marilynn +Melodie +Molly +Myrna +Nita +Ola +Renita +Sharlene +Tonia +Twila +Willa +Benita +Candice +Claretha +Colette +Deana +Debrah +Deidra +Dixie +Eartha +Edwina +Gaye +Gerri +Hilda +Jacquelin +James +Janette +Jocelyn +Julianne +Juliette +Kaye +Leona +Lesia +Liza +Lorene +Lucretia +Maggie +Margo +Marta +Michael +Nola +Pattie +Pearlie +Rochelle +Romona +Sheron +Tommie +Tracie +Unknown +Viola +Albertha +Alecia +Bettye +Beulah +Camille +Carlene +Carolynn +Carrol +Celestine +Charla +Christie +Darline +Dinah +Dorian +Dottie +Earnestine +Eddie +Elouise +Elsie +Estelle +Fran +Francis +Gayla +Gertrude +Helena +Inez +Isabel +Jannie +Joanie +Johanna +Karon +Kris +Kristi +Kristina +Lavern +Leisa +Leta +Lyn +Lynnette +Marietta +Marisa +Megan +Merrie +Millie +Missy +Nelda +Ora +Randy +Sallie +Shirlene +Susanna +Sybil +Taryn +Tori +Vonnie +Adrian +Allyson +Andra +Angel +Barbra +Bette +Bettie +Blanche +Cara +Caron +Caryn +Clarissa +Debbi +Deedee +Denice +Dina +Dorthy +Elena +Eloise +Elsa +Elvira +Enid +Estella +Etta +Eula +Evon +Fannie +Francina +Gaynell +Glory +Harriette +Hester +Jacqulyn +Jodie +Joetta +Joycelyn +Justine +Karol +Karyn +Kathrine +Kellie +Kristen +Kristie +Lela +Lesley +Letitia +Lilly +Lita +Lonnie +Lorie +Mable +Marci +Marcie +Marybeth +Melba +Michell +Mollie +Muriel +Portia +Randi +Retha +Richard +Robert +Roxann +Roxie +Sammie +Serena +Shauna +Tania +Theodora +Valorie +Veda +Venita +Verdell +Violet +Aimee +Aletha +Alexandra +Annemarie +Barrie +Bridgett +Cathey +Cathryn +Cecile +Chandra +Christi +Collette +Cornelia +Danna +Dara +David +Deann +Dedra +Deidre +Delia +Donnie +Dori +Dorothea +Edie +Ester +Fern +Freddie +Fredericka +Genevieve +Gisele +Hannah +Irish +Janeen +Josie +Kari +Kendra +Kenneth +Latanya +Laureen +Lauretta +Lila +Lina +Lona +Loraine +Lorri +Lucile +Madonna +Marina +May +Melonie +Mercedes +Meredith +Myrtle +Nicole +Ophelia +Pearl +Pennie +Peri +Perri +Princess +Rae +Rebekah +Sandi +Sherryl +Sheryll +Starla +Starr +Suzan +Teena +Terrye +Valery +Velda +Vernita +Vikki +William +Zoe +Mary +Donna +Linda +Cynthia +Susan +Patricia +Lisa +Karen +Debra +Sandra +Deborah +Brenda +Sharon +Barbara +Teresa +Pamela +Cheryl +Kathy +Debbie +Nancy +Elizabeth +Kimberly +Laura +Carol +Robin +Cindy +Angela +Tammy +Lori +Janet +Carolyn +Diane +Theresa +Janice +Kim +Denise +Wanda +Beverly +Terri +Julie +Shirley +Tina +Margaret +Rebecca +Sheila +Valerie +Rhonda +Gloria +Cathy +Sherry +Connie +Michelle +Betty +Kathleen +Catherine +Dorothy +Judy +Annette +Joyce +Laurie +Kelly +Jennifer +Anita +Darlene +Bonnie +Diana +Martha +Paula +Vicki +Kathryn +Wendy +Jacqueline +Suzanne +Virginia +Gwendolyn +Stephanie +Katherine +Terry +Phyllis +Christine +Gail +Melanie +Rose +Peggy +Tracy +Dawn +Leslie +Victoria +Ann +Amy +Marilyn +Maria +Vickie +Melissa +Evelyn +Belinda +Regina +Lynn +Rita +Sarah +Sylvia +Julia +Yvonne +Marie +Elaine +Helen +Ruth +Judith +Carla +Penny +Alice +Charlotte +Andrea +Jill +Frances +Anne +Sherri +Pam +Renee +Melody +Charlene +Michele +Glenda +Vanessa +Loretta +Beth +Jackie +Cassandra +Joy +Annie +Gina +Sheryl +Joan +Jeanette +Jo +Jane +Melinda +Joann +Anna +Audrey +Sandy +Veronica +Holly +Vivian +Doris +Ellen +Delores +Toni +Becky +Jean +Lorraine +Patti +Shelia +Tammie +April +Dana +Joanne +Carrie +Patty +Jan +Lynda +Sabrina +Sonya +Jeanne +Juanita +Sue +Marsha +Norma +Jacquelyn +Rosa +Priscilla +Roberta +Tami +Edna +June +Vicky +Alicia +Jamie +Lydia +Teri +Dianne +Lee +Sally +Colleen +Marcia +Tanya +Sheri +Tamara +Constance +Ruby +Christina +Deanna +Carmen +Edith +Katrina +Sara +Felicia +Yolanda +Gayle +Lillian +Monica +Shari +Eva +Natalie +Tracey +Crystal +Eileen +Emma +Geraldine +Louise +Rosemary +Tonya +Cheri +Joni +Marjorie +Maureen +Rachel +Angie +Kay +Valarie +Debora +Faye +Heidi +Mildred +Robyn +Yvette +Gladys +Lillie +Willie +Grace +Allison +Arlene +Lois +Margie +Nina +Ronda +Clara +Dianna +Lynne +Miriam +Ramona +Shelly +Sherrie +Sonia +Alison +Candy +Erin +Ginger +Irene +Jeannie +Marion +Vera +Caroline +Hazel +Iris +Jody +Lora +Mattie +Myra +Angelia +Carole +Janine +Mona +Paulette +Bobbie +Bridget +Josephine +Lauren +Lorrie +Roxanne +Deloris +Harriet +Janie +Marian +Marlene +Patrice +Pauline +Rosalind +Sonja +Amanda +Betsy +Emily +Ethel +Gwen +Katie +Maxine +Susie +Terrie +Thelma +Beatrice +Cecilia +Claudia +Jeannette +Rene +Shelley +Stacy +Dora +Jenny +Karla +Nora +Shannon +Chris +Antoinette +Felecia +Gretchen +Marianne +Alma +Bernice +Ida +Lucinda +Lucy +Lynette +Nadine +Tara +Velma +Ana +Bonita +Francine +Georgia +Joanna +Johnnie +Patsy +Dolores +Ella +Ernestine +Heather +Janis +Lorri +Shawn +Wilma +Bertha +Desiree +Eleanor +Esther +Jennie +Jodi +Kathi +Leigh +Rena +Bridgette +Cherie +Christy +Debby +Jessie +Kelley +Marcella +Minnie +Naomi +Olga +Rosetta +Stacey +Tammi +Alfreda +Benita +Celeste +Lauri +Marla +Tracie +Trina +Dina +Doreen +Elisa +Faith +Frankie +Gay +Kerry +Leah +Lorna +Lucille +Molly +Suzette +Traci +Verna +Amelia +Bernadette +Candace +Cecelia +Darla +Jerri +Lorie +Robbie +Sondra +Antionette +Ava +Brigitte +Dena +Eunice +Kimberley +Laverne +Lesa +Lucretia +Pat +Rosalyn +Tangela +Alesia +Dee +Dixie +Earnestine +Hilda +Ingrid +Jeanie +Jewel +Mae +Olivia +Ruthie +Selena +Viola +Adrienne +Alisa +Billie +Cindi +Daphne +Deirdre +Gena +Hattie +Jayne +Kellie +Lana +Lena +Lola +Sharron +Tamela +Tonia +Bessie +Cathleen +Cora +Daisy +Della +Florence +Hope +Jana +Janette +John +Kelli +Laurel +Lenora +Liz +Luann +Madeline +Mamie +Margo +Rosemarie +Stella +Therese +Valorie +Bridgett +Colette +Dale +Dolly +Elise +Eloise +Geneva +Judi +Karin +Lesia +Marguerite +Mindy +Monique +Renea +Sallie +Sophia +Trudy +Vickey +Violet +Winifred +Abby +Celia +Deana +Diann +Essie +Freda +Harriett +Karon +Marisa +Nellie +Polly +Queen +Randi +Reba +Rhoda +Shelby +Agnes +Althea +Cherry +Christie +Delphine +Dinah +Dona +Doretha +Earlene +Edwina +Eugenia +Fay +Gale +Gayla +Gracie +Jeanine +Jeannine +Jeri +Juliet +Kathie +Kimberlee +Kitty +Leila +Lou +Luanne +Marina +Marva +Maryann +Melodie +Paige +Pearl +Rosie +Roslyn +Sharlene +Shellie +Susanne +Valencia +Alberta +Cathryn +Claire +Cornelia +Danielle +Deanne +Erma +Gigi +Henrietta +Inez +Jacquline +Jessica +Ladonna +Leola +Leona +Lisha +Nanette +Nelda +Nita +Patrica +Pearlie +Renita +Suzan +Valeria +Vikki +Zelda +Avis +Bettina +Blanche +Cheryle +Deidre +Delia +Earline +Eve +Flora +Greta +Isabel +Jannette +Joanie +Johanna +Krista +Kristi +Kristy +Latanya +Lawanda +Lea +Lorene +Lory +Lula +Lynnette +Maggie +Malinda +Michael +Mitzi +Myrna +Pamala +Penelope +Roxanna +Selina +Sybil +Tamie +Teressa +Venita +Adele +Aileen +Bambi +Blanca +Cassie +Cathi +Chandra +Cherri +Christa +Coleen +Denice +Dori +Edie +Elena +Fawn +Irma +Jannie +Kandi +Kari +Karrie +Kerri +Leanne +Mari +May +Melonie +Melony +Meredith +Michell +Rae +Robbin +Robert +Rochelle +Sandi +Sheree +Stacie +Tamera +Venus +Ada +Bobbi +Caron +Charmaine +Cherrie +Clare +Clarissa +Claudette +Danette +Darcy +Debrah +Dedra +Dorinda +Elnora +Eula +Evette +Francina +Gaye +Geri +Gertrude +Glenna +Glinda +Ilene +Ina +Ivy +Jacquelin +Jodie +Julianna +Kathey +Keri +Kristina +Lawana +Lourdes +Lyn +Marcie +Marilynn +Marta +Meg +Miranda +Misty +Muriel +Myrtle +Neva +Ollie +Ora +Phoebe +Roxane +Sadie +Sheena +Shelli +Sheron +Starr +Susanna +Tamra +Toby +Tricia +Velda +Vernessa +Vernita +William +Adrian +Alexis +Allyson +Amber +Angel +Annetta +Antonia +Bunny +Candice +Carey +Casandra +Clarice +Corinne +Corrine +Dayna +Debi +Delinda +Delois +Dorothea +Dottie +Drusilla +Elisha +Erica +Estella +Estelle +Ester +Etta +Fran +James +Janelle +Janna +Jeffery +Jewell +Josie +Juliette +Karol +Kristin +Lanita +Laquita +Laurette +Leann +Lela +Lelia +Lesley +Letha +Libby +Linnie +Loraine +Loretha +Lottie +Lucia +Luz +Mandy +Marietta +Mavis +Melisa +Merrie +Merry +Mimi +Noreen +Ola +Portia +Renae +Retha +Rosanne +Sabrena +Sherrill +Shirlene +Sidney +Suzie +Thomas +Thomasina +Thresa +Treva +Wendi +Zandra +Aletha +Alexandra +Barrie +Bethany +Bettie +Bobby +Bonni +Bonny +Camilla +Cara +Carleen +Carlene +Carroll +Cathie +Celestine +Chana +Charise +Charity +Charlie +Claretha +Darby +David +Debbi +Dede +Deedee +Deidra +Delilah +Detra +Elana +Elisabeth +Elma +Elsie +Evie +Freida +Genevieve +Gilda +Ginny +Helene +Iva +Jami +Jeana +Jenni +Jeraldine +Jerry +Julianne +Justina +Justine +Kate +Kristine +Lanette +Latricia +Leatha +Leesa +Leisa +Lenita +Lissa +Liza +Lorelei +Lorena +Lorinda +Mable +Mahalia +Margret +Maritza +Maryellen +Megan +Mercedes +Migdalia +Millicent +Nanci +Nettie +Odessa +Ona +Pamelia +Pandora +Pennie +Phylis +Rachelle +Rebekah +Regena +Ronna +Roseann +Roxana +Roxann +Roxie +Scarlett +Shana +Sherryl +Simone +Stefanie +Suzy +Teena +Tia +Tonda +Tresa +Verlinda +Virgie +Vonnie +Mary +Lisa +Linda +Patricia +Susan +Cynthia +Karen +Brenda +Donna +Sandra +Sharon +Deborah +Debra +Pamela +Barbara +Teresa +Cheryl +Elizabeth +Tammy +Laura +Nancy +Debbie +Robin +Kathy +Lori +Angela +Kimberly +Carol +Denise +Cindy +Janet +Carolyn +Theresa +Tina +Julie +Janice +Kim +Wanda +Jacqueline +Michelle +Diane +Rhonda +Beverly +Sherry +Sheila +Cathy +Valerie +Connie +Terri +Catherine +Kathleen +Rebecca +Margaret +Judy +Shirley +Jennifer +Tracy +Gloria +Laurie +Betty +Kelly +Dorothy +Maria +Joyce +Stephanie +Paula +Leslie +Vicki +Suzanne +Christine +Martha +Melissa +Anita +Annette +Dawn +Bonnie +Carla +Katherine +Sylvia +Peggy +Phyllis +Wendy +Darlene +Melanie +Jackie +Belinda +Michele +Kathryn +Regina +Diana +Rose +Gail +Amy +Terry +Frances +Gwendolyn +Ann +Julia +Lynn +Vickie +Victoria +Charlotte +Virginia +Renee +Sherri +Andrea +Beth +Gina +Judith +Penny +Sarah +Elaine +Cassandra +Melinda +Jill +Loretta +Shari +Evelyn +Joy +Pam +Marilyn +Ruth +Glenda +Helen +Anna +Joan +Alice +Rita +Dana +Yvonne +Marie +Vanessa +Anne +Sheryl +Vivian +Jean +Sandy +Colleen +Toni +Charlene +Patty +Veronica +Carrie +Christina +Carmen +Holly +Becky +Melody +Shelia +Jeanette +Sonya +Tonya +Tammie +Annie +Doris +Jo +Marcia +Monica +Tamara +Ellen +Jane +Tracey +Sally +Felicia +Lorraine +Joanne +Delores +Jeanne +Jamie +Marsha +Sue +Vicky +Audrey +Rosa +Jacquelyn +Joann +Sheri +Teri +Tanya +Alicia +Rosemary +Crystal +Jan +Juanita +Maureen +Roberta +Priscilla +Ruby +Caroline +Ana +Edith +Patti +Tami +Yolanda +Yvette +Katrina +April +Constance +Dianne +Lynda +Sherrie +Heidi +Deanna +June +Robyn +Sara +Alison +Cheri +Eileen +Sabrina +Lillian +Marlene +Arlene +Lois +Marjorie +Shelly +Lydia +Norma +Valarie +Geraldine +Patsy +Susie +Allison +Angie +Carole +Eva +Rachel +Debora +Kay +Lynne +Shelley +Jenny +Lucy +Myra +Lee +Alma +Emma +Kelley +Chris +Emily +Gayle +Bonita +Ginger +Gwen +Mildred +Stacy +Georgia +Gladys +Grace +Janine +Jodi +Lorie +Ramona +Shannon +Sonia +Terrie +Alisa +Angelia +Ethel +Jana +Karla +Lillie +Rene +Sonja +Bobbie +Christy +Esther +Josephine +Leigh +Lora +Margie +Stacey +Vera +Amanda +Betsy +Cecilia +Dena +Ella +Iris +Jody +Natalie +Ronda +Willie +Clara +Edna +Faye +Lenora +Nina +Rosalind +Thelma +Claudia +Daisy +Daphne +Louise +Tammi +Bridgette +Dianna +Harriet +Joni +Lola +Marian +Bernadette +Bridget +Faith +Ida +Irene +Joanna +Johnnie +Paulette +Pauline +Tangela +Traci +Bernice +Dolores +Lorrie +Marion +Adrienne +Alfreda +Hazel +Heather +Janie +Jeannie +Lana +Mae +Angel +Mattie +Miriam +Mona +Wilma +Eunice +Gay +Lauren +Lucinda +Lynette +Marianne +Marla +Shawn +Tara +Velma +Darla +Eleanor +Jeannette +Kimberley +Laverne +Patrice +Suzette +Candy +Cathleen +Deirdre +Dora +Doreen +Erin +Janis +Kelli +Maryann +Minnie +Rosetta +Sharron +Amelia +Beatrice +Celeste +Della +Deloris +Hilda +Kristi +Laurel +Mamie +Monique +Polly +Robbin +Rosalyn +Roxanne +Selina +Alesia +Antoinette +Benita +Bertha +Billie +Cecelia +Dale +Desiree +Elisa +Kellie +Lauri +Lorri +Lucille +Nanette +Naomi +Nora +Olga +Selena +Candace +Dina +Florence +Jacquline +Jeri +Jessica +Maxine +Nadine +Pat +Reba +Rena +Sophia +Avis +Deidre +Felecia +Flora +Gale +Gigi +Hope +Jennie +Sallie +Sondra +Tracie +Violet +Amber +Bessie +Cherie +Claire +Ernestine +Jeanine +Katie +Lawanda +Leah +Lena +Lesa +Lucretia +Robbie +Rochelle +Rosemarie +Velvet +Celia +Chandra +Debby +Essie +Jeanie +Johnna +Karin +Karol +Leanne +Liz +Marcella +Pamala +Valencia +Valeria +Denice +Frankie +Kimberlee +Leola +Lorene +Lou +Margarita +Valorie +Verna +Alina +Bridgett +Cherry +Cindi +Delia +Francine +Harriett +Isabel +Janette +Jayne +Jessie +Karon +Kathi +Kristina +Kristy +Letitia +Marguerite +Mitzi +Molly +Saundra +Shelby +Viola +Abby +Althea +Bambi +Cora +Diann +Doretha +Elena +Eugenia +Eula +Fannie +Freda +Geneva +Gretchen +Hattie +Helene +Lea +Lorena +Lorna +Lula +Malinda +Marta +Michael +Paige +Pearl +Queen +Sandi +Susanne +Trina +Trudy +Venita +Adriana +Brigitte +Claudette +Danette +David +Deana +Deanne +Dori +Eloise +Etta +Fay +Ginny +Ingrid +Irma +Janna +Jeannine +Jerri +Judi +Kerri +Leila +Lesia +Libby +Lila +Lucia +Nellie +Nita +Olivia +Pennie +Silvia +Tamela +Tamra +Therese +Tricia +Vikki +Winifred +Winona +Ada +Adrianne +Antionette +Arleen +Ava +Caren +Christie +Delphine +Dollie +Dona +Drucilla +Earlene +Elise +Elsie +Fran +Francis +Jacquelin +James +Jodie +Julianne +Kara +Kaye +Kerry +Kristin +Leisa +Lesley +Madeline +Maggie +Marcie +Marcy +Merry +Myrna +Nikki +Noreen +Patrica +Penelope +Roslyn +Ruthie +Sherie +Stella +Tamera +Tonja +Agnes +Allyson +Antonia +Aretha +Blanche +Brigette +Brinda +Cara +Corinne +Cyndi +Darby +Darcy +Dee +Deena +Deidra +Earnestine +Edwina +Erma +Estella +Greta +Helena +Henrietta +Iva +Ivy +Jenifer +Joanie +Johanna +John +Juliet +Kathie +Krista +Ladonna +Latanya +Lisette +Loria +Lourdes +Luanne +Mable +Mindy +Nicole +Rachael +Regenia +Rhoda +Robert +Rosie +Rosita +Roxann +Susana +Tena +Teresita +Vernell +Aileen +Alexis +Ashley +Aurora +Beatriz +Bethany +Bettie +Bettina +Candice +Cari +Cherri +Christa +Danita +Debi +Dedra +Dinah +Donald +Dorothea +Fonda +Gena +Inez +Ivonne +Jimmie +Joe +Jolene +Juliana +Katharine +Kris +Latricia +Lela +Leona +Leonor +Lessie +Letha +Lindy +Lynnette +Margo +Mari +Marilynn +Marina +Marva +Melisa +Melodie +Myrtle +Nanci +Pamelia +Pattie +Rae +Renita +Retha +Sebrina +Sybil +Tonia +William +Adele +Aida +Alana +Alberta +Aletha +Babette +Bette +Bobby +Camilla +Camille +Caprice +Cassie +Cathryn +Charity +Charla +Charmaine +Cristina +Damita +Darleen +Debroah +Delilah +Denita +Dixie +Dolly +Dorcas +Eartha +Edie +Elisabeth +Elouise +Estelle +Ester +Evette +Frederica +Gerri +Ilene +Jacki +Jami +Janene +Jewel +Jewell +Juana +Juli +Juliette +Kandi +Kandy +Kari +Kitty +Kristine +Kyle +Lanita +Lavonne +Leann +Leesa +Lesli +Leticia +Liane +Lizzie +Luisa +Marietta +Megan +Melonie +Minerva +Missy +Myrtice +Nettie +Pandora +Pearlie +Randi +Romona +Rosalie +Selma +Serena +Sherrill +Suzie +Suzy +Tamie +Tawanda +Teressa +Thomasina +Vernita +Vonda +Adrian +Adriane +Albertha +Alethea +Alyson +Angeline +Annetta +Aundrea +Barbra +Caridad +Carolann +Carolynn +Caryn +Cathie +Cathrine +Celestine +Christi +Clarissa +Coleen +Coral +Cornelia +Corrine +Courtney +Cyndee +Danielle +Dannette +Daryl +Dayna +Denese +Donnie +Earline +Eve +Fern +Freida +Genevieve +George +Georgette +Georgina +Gilda +Gracie +Gregory +Hannah +Ivette +Jannette +Jeana +Jerry +Johnny +Joseph +Joycelyn +Justine +Katheryn +Kimberlyn +Krystal +Lavonda +Lawanna +Leeann +Lezlie +Lilly +Lily +Lizette +Luann +Margarette +Marisa +Marnita +Marshall +Marti +Maura +Mavis +Melba +Milagros +Misty +Nannette +Natasha +Nona +Octavia +Odessa +Paris +Pearline +Pilar +Rachelle +Renae +Ronnie +Roselyn +Rowena +Roxanna +Sandee +Sheree +Sherryl +Simone +Starla +Suzan +Synthia +Tanja +Taryn +Teena +Thea +Theodora +Thomas +Tommie +Twanda +Twila +Twyla +Vannessa +Zelda +Lisa +Mary +Karen +Cynthia +Linda +Patricia +Susan +Deborah +Sharon +Brenda +Donna +Sandra +Pamela +Debra +Barbara +Teresa +Kimberly +Tammy +Elizabeth +Angela +Lori +Cheryl +Robin +Debbie +Kathy +Tina +Laura +Nancy +Carol +Cindy +Janet +Julie +Michelle +Denise +Theresa +Jacqueline +Carolyn +Rhonda +Wanda +Kim +Jennifer +Sheila +Terri +Diane +Janice +Sherry +Rebecca +Maria +Beverly +Valerie +Connie +Kelly +Catherine +Margaret +Shirley +Tracy +Laurie +Bonnie +Cathy +Gloria +Stephanie +Suzanne +Kathleen +Joyce +Dawn +Melissa +Betty +Judy +Anita +Regina +Diana +Leslie +Melanie +Wendy +Christine +Sherri +Annette +Vicki +Carla +Gwendolyn +Katherine +Paula +Amy +Dorothy +Phyllis +Terry +Martha +Melinda +Michele +Penny +Ann +Virginia +Gail +Sylvia +Sarah +Belinda +Darlene +Peggy +Renee +Rose +Vickie +Marilyn +Victoria +Andrea +Lynn +Kathryn +Veronica +Julia +Jackie +Beth +Helen +Sheryl +Dana +Gina +Cassandra +Charlotte +Evelyn +Anna +Vivian +Glenda +Judith +Loretta +Becky +Monica +Pam +Toni +Ruth +Tonya +Yvonne +Annie +Frances +Marie +Rita +Sonya +Jill +Charlene +Felicia +Jacquelyn +Joan +Jane +Joy +Elaine +Tracey +Christina +Holly +Marsha +Shelia +Anne +Tamara +Carmen +Carrie +Melody +Sheri +Alice +Jeanette +Vanessa +Audrey +Jamie +Dianne +Jo +Yolanda +April +Deanna +Shari +Juanita +Ana +Katrina +Tammie +Alicia +Patti +Ellen +Sandy +Jean +Tami +Heidi +Natalie +Marcia +Patty +Rosa +Doris +Joann +Sara +Vicky +Sabrina +Sue +Colleen +Joanne +Norma +Ruby +Jan +Jeanne +Sally +Priscilla +Teri +Constance +Susie +Kay +Lynda +Bridget +Nina +Rosemary +Yvette +Crystal +Karla +Margie +Rachel +Robyn +Stacey +Angelia +Cheri +Lee +Lois +Caroline +June +Stacy +Tanya +Roberta +Shelly +Grace +Irene +Kimberley +Lillian +Shelley +Allison +Sherrie +Alison +Delores +Lorraine +Marlene +Ramona +Edna +Marjorie +Miriam +Tara +Angie +Bonita +Daphne +Jana +Lydia +Cecilia +Esther +Amanda +Arlene +Edith +Eva +Sophia +Clara +Mildred +Terrie +Antoinette +Heather +Lynne +Myra +Shannon +Bridgette +Emma +Geraldine +Leah +Mona +Jenny +Lorie +Lynette +Marian +Sonia +Sonja +Tangela +Gladys +Josephine +Maureen +Willie +Beatrice +Claudia +Emily +Janine +Lauren +Lourdes +Marianne +Bernice +Betsy +Bobbie +Debora +Felecia +Iris +Jeannie +Kelley +Kelli +Lora +Marion +Valarie +Carole +Ella +Faith +Rene +Ronda +Shawn +Thelma +Dianna +Jodi +Joni +Marla +Nora +Cherie +Darla +Dena +Dina +Gayle +Ginger +Janie +Jody +Lillie +Traci +Alisa +Bertha +Candace +Chris +Eleanor +Elisa +Ernestine +Lorrie +Naomi +Tracie +Candy +Cora +Doreen +Jessica +Jessie +Leigh +Patrice +Rosalind +Tonia +Dolores +Gwen +Jeannette +Kristine +Pauline +Rosemarie +Vera +Alma +Daisy +Joanna +Kara +Lenora +Louise +Lucinda +Lucy +Molly +Paige +Velma +Christy +Desiree +Jeri +Kerry +Lauri +Maxine +Nadine +Nanette +Patsy +Paulette +Tammi +Trina +Alesia +Bernadette +Celeste +Ethel +Faye +Monique +Robbie +Tamela +Ava +Della +Deloris +Eileen +Georgia +Harriet +Hilda +Isabel +Kristi +Lesa +Madeline +Nicole +Robbin +Roxanne +Verna +Angel +Billie +Cara +Erin +Henrietta +Hope +Jerri +Katie +Mae +Olga +Olivia +Rochelle +Rosalyn +Ada +Cecelia +Celia +Florence +Gay +Janette +Malinda +Mattie +Selena +Valeria +Amelia +Antionette +Bridgett +Deirdre +Gretchen +Hazel +Jeanine +Lea +Liz +Lola +Pat +Renae +Sondra +Velvet +Deana +Dee +Deena +Dora +Elena +Ida +Ileana +Kimberlee +Laurel +Laverne +Leanne +Lolita +Lorri +Marcella +Maritza +Mindy +Rosie +Teressa +Adrienne +Alfreda +Avis +Danielle +Debi +Eunice +Georgina +Helena +Jacquline +Johnnie +Karin +Kathrine +Kellie +Lana +Latonya +Lena +Maggie +Marcy +Mavis +Selina +Stella +Suzette +Therese +Whitney +Wilma +Alberta +Amber +Arleen +Benita +Bessie +Bobbi +Cherry +Claire +Clarissa +Claudette +Cristina +Dale +Elise +Flora +Francine +Geneva +Harriett +Ingrid +Irma +James +Jeanie +Jeannine +Karol +Kerri +Lawanda +Leila +Lorene +Lorna +Marnita +Marva +Maryann +Minnie +Misty +Pearl +Polly +Ruthie +Sybil +Tamra +Teresita +Twila +Zelda +Aimee +Aretha +Caren +Caridad +Deedee +Dorothea +Erma +Frankie +Gena +Georgette +Gigi +Ginny +Jayne +Jennie +Leisa +Leona +Letitia +Mandy +Marcie +Myrna +Sharlene +Sherrill +Tricia +Valorie +Viola +Cathleen +Charla +Colette +Conchita +Dedra +Edwina +Erica +Eugenia +Eve +Fay +Hattie +Helene +Karon +Kaye +Kristina +Lizette +Lyn +Mable +Mamie +Margarita +Melodie +Noreen +Penelope +Shellie +Teena +Trudy +Valencia +Venus +Violet +Abby +Alina +Brigitte +Cheryle +Christi +Coleen +Danita +Debby +Earlene +Earnestine +Edie +Evangeline +Fonda +Gale +Gerri +Johanna +Judi +Kari +Kathie +Kitty +Kristen +Kristin +Ladonna +Latanya +Lesley +Lisha +Loraine +Lou +Marisa +Melba +Mercedes +Michael +Nannette +Nellie +Nikki +Patrica +Rena +Robert +Sandi +Saundra +Shelby +Sheree +Suzy +Twanda +William +Winifred +Aida +Allyson +Angeline +Anthony +Candi +Candice +Cassie +Cathryn +Chandra +Corinne +Cornelia +David +Deanne +Deidra +Elsie +Gaye +Genevieve +Ilene +Janis +Joseph +Josie +Juliette +Justine +Karyn +Kathi +Kristy +Lucille +Lynnette +Merry +Mitzi +Muriel +Myrtle +Nita +Pennie +Randi +Reba +Renita +Rhoda +Roslyn +Silvia +Suzie +Tawana +Vonda +Abigail +Adrian +Adrianne +Aileen +Antonia +Barbie +Bethany +Carlene +Cathie +Celestine +Charmaine +Christie +Darby +Dayna +Deidre +Delia +Demetria +Dinah +Dorinda +Elnora +Elouise +Elsa +Fannie +Freda +Geri +Giselle +Idella +Janna +Jeanna +Josefina +Juliet +Lavonne +Leola +Lesia +Lila +Loretha +Machelle +Margo +Marlena +May +Mayra +Melonie +Millie +Mollie +Princess +Retha +Roxanna +Sarita +Scarlet +Sharla +Sharron +Shirlene +Stacie +Suzan +Tana +Tania +Tena +Tiffany +Tonja +Zina +Adriana +Agnes +Alexandra +Althea +Arnetta +Barbra +Bernadine +Bettina +Blanche +Cherrie +Clare +Clarice +Cleo +Dorene +Dottie +Eartha +Eloise +Eula +Francina +Genia +Gertrude +Glynis +Gracie +Ila +Isabell +Jocelyn +Johnna +Joycelyn +Juana +Juliana +Julianne +Karan +Karrie +Kate +Katharine +Kenneth +Kris +Lavern +Libby +Lorelei +Loria +Lorinda +Lula +Luz +Mabel +Marci +Marguerite +Mari +Marietta +Marta +Melony +Mia +Miranda +Nan +Nettie +Pattie +Pearlie +Portia +Rachael +Raquel +Renea +Rosalie +Rosanne +Rosetta +Sallie +Sandie +Serena +Sheron +Sheryll +Susana +Tambra +Thea +Tori +Vernita +Wendi +Adele +Alana +Alexis +Aline +Altamese +Alyson +Angelique +Antonette +Arline +Babette +Beatriz +Bernita +Bette +Blanca +Camille +Carey +Caryn +Cathi +Claretha +Corliss +Cristal +Danette +Danna +Darci +Darleen +Dawna +Deann +Debrah +Dede +Delana +Delinda +Delphine +Dixie +Dolly +Doretha +Dori +Earline +Eddie +Elana +Esperanza +Evette +Fran +Freddie +Gabrielle +Gregory +Greta +Gretta +Hannah +Hilary +Hillary +Inez +Isabelle +Ivette +Ivonne +Ivy +Jacki +Jacquelin +Janell +Janelle +Jannie +Jenifer +Jerrie +Jewel +Jimmie +Joanie +Jodie +John +Justina +Kandi +Katheryn +Kathyrn +Kelle +Kendra +Kerrie +Kevin +Kimberli +Lanita +Laureen +Lawanna +Leeann +Letha +Leticia +Liana +Lily +Lisette +Loren +Lucretia +Madeleine +Madelyn +Maribel +Marquita +Megan +Meredith +Mimi +Missy +Odalys +Odessa +Ouida +Pamala +Pamelia +Pamella +Pandora +Phoebe +Pilar +Queen +Rae +Randy +Reta +Reva +Ronnie +Rowena +Roxann +Sabra +Sabrena +Samantha +Sebrina +Shanna +Sherrell +Tamie +Thomasina +Trish +Troy +Twyla +Valrie +Venetia +Vickey +Vikki +Vonnie +Willa +Windy +Zena +Lisa +Mary +Karen +Susan +Cynthia +Linda +Donna +Patricia +Deborah +Kimberly +Tammy +Sandra +Sharon +Pamela +Brenda +Lori +Debra +Teresa +Angela +Barbara +Elizabeth +Laura +Robin +Cheryl +Nancy +Tina +Michelle +Kathy +Cindy +Kim +Theresa +Debbie +Carol +Rhonda +Julie +Jennifer +Denise +Kelly +Diane +Terri +Sheila +Wanda +Sherry +Carolyn +Tracy +Jacqueline +Valerie +Janet +Paula +Stephanie +Janice +Cathy +Rebecca +Christine +Laurie +Maria +Melissa +Beverly +Margaret +Connie +Catherine +Anita +Kathleen +Shirley +Sherri +Betty +Annette +Carla +Michele +Gloria +Wendy +Suzanne +Melanie +Dawn +Judy +Amy +Bonnie +Darlene +Leslie +Diana +Regina +Dana +Martha +Virginia +Katherine +Joyce +Gwendolyn +Dorothy +Terry +Andrea +Vicki +Beth +Renee +Sarah +Belinda +Gina +Kathryn +Sylvia +Lynn +Melinda +Ann +Jill +Penny +Sheryl +Marilyn +Phyllis +Rose +Charlotte +Julia +Tracey +Helen +Peggy +Veronica +Vickie +Anna +Gail +Charlene +Ruth +Sheri +Judith +Christina +Victoria +April +Jackie +Alicia +Cassandra +Anne +Tonya +Sandy +Marie +Rita +Alice +Melody +Vivian +Elaine +Carmen +Ellen +Felicia +Monica +Joan +Loretta +Pam +Jean +Sonya +Frances +Jane +Tamara +Stacy +Becky +Holly +Juanita +Shelia +Vanessa +Sara +Evelyn +Yvonne +Deanna +Tammie +Toni +Yolanda +Tami +Carrie +Crystal +Yvette +Doris +Stacey +Norma +Glenda +Jamie +Joy +Shari +Tanya +Audrey +Sally +Lorraine +Natalie +Sabrina +Marcia +Katrina +Joanne +Marsha +Annie +Shannon +Patty +Vicky +Angelia +Constance +Delores +Dianne +Jacquelyn +Ana +Colleen +Priscilla +Joann +Sonia +Tara +Cheri +Heidi +Shelly +Teri +Caroline +Lora +Ramona +Lynda +Shelley +Sherrie +Cherie +Eva +Kelley +Lillian +Patti +Rosa +Jeanne +Jo +Lorrie +Ruby +Allison +Darla +Jeanette +Jodi +Lauren +Rachel +Daphne +Jan +Kelli +Roberta +Tangela +Angie +Margie +Maureen +Ronda +Traci +Dianna +Bridget +Eileen +Mona +Alisa +Carole +Joni +Rosemary +Valarie +Lee +Leigh +Lorie +Lynette +Marion +Marlene +Robyn +Sonja +Arlene +Irene +Kimberley +Lois +Lourdes +Sue +Alison +Esther +Ginger +Heather +Karla +Leah +Marian +Marjorie +Myra +Patsy +Paulette +Amanda +Desiree +Sophia +Janie +Laurel +Rosalind +Claudia +Emily +Gladys +Jana +June +Terrie +Willie +Clara +Dena +Doreen +Miriam +Nina +Thelma +Candace +Faye +Gayle +Jessica +Lydia +Shawn +Susie +Zina +Bobbie +Cecilia +Dora +Edith +Ella +Jeannette +Kellie +Kristine +Lynne +Mildred +Nanette +Antoinette +Bernice +Bonita +Georgia +Gretchen +Betsy +Ida +Kay +Lucinda +Adrienne +Beatrice +Bridgette +Cecelia +Daisy +Debora +Dolores +Josephine +Laverne +Marla +Patrice +Roxanne +Tracie +Vera +Faith +Florence +Jenny +Joanna +Louise +Paige +Bernadette +Deirdre +Edna +Emma +Ernestine +Janis +Kerry +Trina +Angel +Celeste +Dee +Eleanor +Grace +Kara +Katie +Lucille +Nadine +Rene +Sondra +Chris +Dina +Elisa +Ethel +Eunice +Felecia +Johnnie +Kristina +Margarita +Misty +Nicole +Stella +Christy +Hazel +Mae +Maggie +Rena +Rosalyn +Celia +Erica +Lana +Naomi +Olga +Pauline +Polly +Susanne +Alesia +Amelia +Geraldine +Iris +Jennie +Leona +Lillie +Maxine +Mindy +Monique +Benita +Bertha +Billie +Candy +Cara +Christie +Erin +Ingrid +Janine +Jeannie +Lolita +Marianne +Mattie +Selina +Avis +Danielle +Deana +Dedra +Deidre +Eugenia +Gay +Gwen +Kari +Kathi +Kristen +Mercedes +Saundra +Suzette +Bridgett +Della +Hilda +Hope +Isabel +Jeri +Kristin +Lauri +Lola +Minnie +Nora +Roslyn +Selena +Valeria +Wilma +Winifred +Ava +Bessie +Camille +Claire +Deloris +Elise +Harriet +James +Jerri +Kristi +Lenora +Nannette +Tammi +Therese +Viola +Bobbi +Caren +Francine +Hattie +Jodie +Lawanda +Lea +Lucy +Marguerite +Marta +Melodie +Molly +Randi +Valencia +Zelda +Antionette +Caridad +Cathleen +Christa +Dale +Deena +Deidra +Flora +Gena +Glynis +Henrietta +Ivy +Jannie +Jessie +Juliet +Karin +Kerri +Letitia +Lila +Lorri +Lynnette +Marcie +Marcy +Sebrina +Serena +Tamela +Tamra +Ada +Allyson +Bethany +Camilla +Christi +Debby +Edwina +Elisabeth +Gale +Helene +Jayne +Jeanine +Jody +Lawanna +Leisa +Michael +Penelope +Raquel +Robbin +Robert +Rochelle +Rosemarie +Rosie +Sandi +Sharlene +Velma +Wendi +Alexandra +Beatriz +Bettina +Claudette +Colette +Darcy +Dixie +Dorothea +Erma +Fay +Frankie +Gayla +Greta +Irma +Ivette +Jacquline +Kristy +Lena +Lesa +Libby +Lizzie +Loraine +Luann +Mamie +Maryann +Melisa +Muriel +Noreen +Olivia +Ollie +Pamala +Robbie +Ruthie +Stacie +Tania +Teresita +Tiffany +Trudy +Venus +Verna +Alecia +Althea +Alyson +Amber +Cherry +Cora +Danette +Deanne +Deedee +Elena +Elsie +Essie +Etta +Francina +Geneva +Helena +Janna +Jewel +Johnna +Judi +Karyn +Lashawn +Letha +Liz +Lorena +Lorene +Lou +Madeline +Marcella +Maritza +May +Melonie +Reba +Rosetta +Sabra +Shelby +Tonia +Twila +Vonda +Abby +Alberta +Alina +Alma +Brigette +Callie +Caryn +Cornelia +David +Dayna +Delia +Eloise +Georgette +Harriett +Ivonne +Jewell +Jimmie +Jocelyn +Ladonna +Leann +Leila +Lorna +Mandy +Mara +Marci +Marisa +Mavis +Meredith +Mitzi +Nellie +Pat +Patrica +Phoebe +Queen +Sharron +Shawna +Shellie +Silvia +Stefanie +Tricia +Trisha +Valorie +Vikki +Abigail +Adriane +Agnes +Alexis +Andra +Arletha +Bambi +Bonny +Brigitte +Candi +Carolina +Cassie +Cathryn +Cindi +Consuelo +Cristina +Danita +Darby +Deann +Debbi +Detra +Dori +Earnestine +Elissa +Eve +Freda +Genevieve +Gertrude +Gigi +Ginny +Gracie +Jacquelin +Jacqulyn +Jeannine +Johanna +Juli +Justine +Kirsten +Kris +Leesa +Lela +Liza +Lizette +Lucia +Lucretia +Luz +Malinda +Mechelle +Melba +Opal +Pennie +Renita +Sallie +Sheree +Staci +Susanna +Suzy +Tamala +Tamera +Toby +Tresa +Velvet +Vernell +Vickey +Adriana +Adrianne +Aileen +Aimee +Alana +Alethea +Annetta +Anthony +Antonia +Arleen +Athena +Aurelia +Carey +Carlene +Chandra +Charles +Charlie +Charmaine +Clarissa +Dede +Delinda +Denese +Denice +Dolly +Dona +Dottie +Earline +Elvira +Erika +Estelle +Fran +Gwyn +Hilary +Hillary +Holli +Hollie +Ileana +Ina +Inez +Janette +Jeffrey +Jenifer +John +Juliana +Karon +Karrie +Katharine +Katy +Kendra +Keri +Kimberlee +Kristie +Krystal +Kym +Leeann +Lindy +Lisette +Luisa +Lula +Machelle +Margo +Mari +Mayra +Merry +Nell +Portia +Rebeca +Romona +Roxane +Shanda +Sharen +Sherie +Shiela +Shirlene +Suzan +Sybil +Tana +Tawana +Teressa +Thomas +Torri +Violet +Windy +Aletha +Alfreda +Angelique +Ashley +Babette +Bernadine +Brooke +Candice +Carletha +Carmella +Cecile +Celestine +Charla +Cheryle +Chevelle +Clare +Conchita +Damita +Debi +Deedra +Delphine +Dinah +Earlene +Elsa +Elyse +Florine +Francis +Genie +George +Gerri +Gregory +Iliana +Jackeline +Jenna +Jennette +Jerry +Josefina +Juliette +Kandy +Karol +Katheryn +Kathie +Kathrine +Kerrie +Lanette +Lanita +Latanya +Latonya +Lavonne +Leanne +Lessie +Leticia +Lily +Lizabeth +Lottie +Luanne +Lura +Luvenia +Mable +Malissa +Marva +Maura +Megan +Melynda +Mercy +Milagros +Minerva +Missy +Nan +Nanci +Nettie +Nilsa +Nita +Nola +Page +Pattie +Pearl +Pearlie +Penni +Precious +Rachael +Rachelle +Renae +Renea +Rhoda +Richelle +Risa +Ronnie +Rosanna +Roselyn +Roxanna +Roxie +Sarita +Sheron +Sidney +Soraya +Starr +Suzie +Tamie +Tanja +Teena +Tommie +Treasa +Trena +Twanda +Ursula +Valinda +Zena +Lisa +Mary +Karen +Patricia +Kimberly +Susan +Cynthia +Tammy +Pamela +Angela +Linda +Donna +Sharon +Deborah +Sandra +Teresa +Laura +Brenda +Elizabeth +Debra +Barbara +Robin +Michelle +Lori +Tina +Cheryl +Jacqueline +Jennifer +Julie +Theresa +Carol +Denise +Nancy +Kelly +Rhonda +Cindy +Kathy +Tracy +Kim +Sheila +Sherry +Dawn +Stephanie +Maria +Janet +Debbie +Margaret +Valerie +Rebecca +Carolyn +Christine +Wanda +Terri +Diane +Melissa +Kathleen +Catherine +Paula +Janice +Wendy +Connie +Dana +Cathy +Michele +Beverly +Gloria +Carla +Darlene +Leslie +Melanie +Amy +Laurie +Annette +Regina +Diana +Sherri +Shirley +Suzanne +Anita +Katherine +Andrea +Dorothy +Judy +Sarah +Renee +Jill +Bonnie +Joyce +Melinda +Tonya +Gina +Kathryn +Sylvia +Martha +Lynn +Penny +Ann +Betty +Beth +Charlene +Peggy +Phyllis +Rose +Vicki +Vickie +Cassandra +Tracey +Christina +Jackie +Virginia +Anna +Gail +Holly +Judith +Monica +April +Ruth +Belinda +Gwendolyn +Sheri +Sheryl +Charlotte +Helen +Julia +Marilyn +Tammie +Veronica +Vivian +Deanna +Vanessa +Frances +Terry +Joy +Sonya +Crystal +Tamara +Toni +Alice +Marie +Shelia +Juanita +Victoria +Carmen +Yolanda +Yvonne +Elaine +Felicia +Alicia +Yvette +Colleen +Evelyn +Stacey +Jane +Joan +Loretta +Natalie +Rita +Stacy +Becky +Carrie +Jean +Sara +Ellen +Patty +Tanya +Jeanette +Melody +Constance +Katrina +Rachel +Shelly +Lorraine +Allison +Audrey +Glenda +Annie +Heather +Lynda +Priscilla +Rosa +Shannon +Ana +Pam +Jacquelyn +Sandy +Shawn +Traci +Norma +Anne +Doris +Joanne +Karla +Sonja +Jodi +Shari +Tara +Marcia +Vicky +Angelia +Dianna +Heidi +Sally +Tami +Caroline +Marsha +Hope +Jamie +Teri +Amanda +Angie +Maureen +Patti +Sabrina +Sherrie +Tangela +Geraldine +Lillian +Dianne +Jeanne +Roberta +Joann +Darla +Deneen +Jo +Lora +Lydia +Rosemary +Terrie +Dora +June +Kelli +Shelley +Kimberley +Lynette +Ronda +Alisa +Candace +Jessica +Marjorie +Delores +Kellie +Nina +Ramona +Bridget +Cheri +Joanna +Kelley +Miriam +Trina +Antoinette +Eva +Grace +Jan +Leah +Marlene +Robyn +Ruby +Sonia +Tracie +Valarie +Alison +Emma +Kristine +Zina +Betsy +Clara +Lois +Marian +Christy +Edith +Esther +Faye +Ginger +Jana +Margie +Marion +Edna +Ida +Arlene +Claudia +Debora +Eleanor +Felecia +Kristina +Nora +Sue +Willie +Beatrice +Carole +Francine +Kay +Kristi +Vera +Candy +Cecilia +Daphne +Eileen +Gayle +Gladys +Jenny +Lillie +Lorie +Molly +Paige +Vonda +Billie +Chris +Emily +Georgia +Janie +Lauren +Lynne +Mildred +Monique +Thelma +Bertha +Bridgette +Danielle +Desiree +Jeannie +Kerry +Lauri +Lee +Lorrie +Lucinda +Lucy +Myra +Patrice +Alma +Doreen +Erin +Louise +Mona +Sophia +Susie +Valeria +Bobbie +Bridgett +Irene +Jacquline +Marianne +Suzette +Adrienne +Bernice +Bonita +Cherie +Dena +Elisa +Jeannette +Paulette +Pauline +Cara +Deloris +Geneva +Kristin +Lana +Lourdes +Nadine +Polly +Rosalyn +Amber +Amelia +Celeste +Dina +Faith +Karin +Katie +Sondra +Tammi +Velma +Verna +Deidre +Gretchen +Marla +Rosalind +Roxanne +Trudy +Valencia +Alesia +Angelina +Ava +Deana +Ethel +Gena +Jerri +Johnnie +Joni +Kara +Leigh +Maxine +Misty +Nicole +Patsy +Sharron +Tonia +Colette +Deena +Deirdre +Dolores +Henrietta +Iris +Josephine +Kristy +Laverne +Lenora +Mitzi +Naomi +Pearl +Rene +Beatriz +Daisy +Dee +Della +Edwina +Erma +Florence +Gwen +Hilda +Janine +Jody +Leanne +Lena +Lesley +Lola +Maryann +Melodie +Pamala +Robbie +Samantha +Stefanie +Alfreda +Benita +Elena +Ingrid +James +Janis +Jodie +Kari +Marcy +Minnie +Nanette +Patrica +Therese +Wendi +Alina +Bobbi +Celia +Dale +Darcy +Dawna +Frankie +Jacquelin +Jeannine +Jeri +Karyn +Kristen +Lawanda +Lorri +Margarita +Marta +Sandi +Selina +Tamela +Trisha +Althea +Candi +Cathleen +Chandra +Charmaine +Claire +Dixie +Elise +Ella +Jeanine +Karol +Kimberlee +Ladonna +Latonya +Leona +Melonie +Mia +Rena +Rochelle +Rosemarie +Rosie +Selena +Staci +Tania +Bessie +Bettina +Christie +Eugenia +Eunice +Harriet +Isabel +Jennie +Laurel +Leisa +Lesa +Letitia +Lynnette +Marcella +Princess +Robbin +Tiffany +Whitney +Winifred +Angel +Babette +Bernadette +Danette +Dori +Erica +Gale +Gay +Glynis +Helene +Kecia +Kerri +Lolita +Lorene +Lorna +Mamie +Melisa +Mercedes +Pat +Sharlene +Silvia +Simone +Tresa +Twyla +Valorie +Wilma +Abigail +Allyson +Antionette +Avis +Brigitte +Caren +Cora +Cristina +Debby +Deidra +Delia +Diann +Elisabeth +Ernestine +Geri +Hazel +Irma +Ivette +Janette +Jeanna +Kendall +Kris +Krista +Lea +Leila +Liz +Lucille +Madeline +Malinda +Mari +Marisa +Mattie +Michael +Millie +Randi +Robert +Tonja +Viola +Adrian +Ashley +Bethany +Blanca +Bobby +Bonny +Cecelia +Cherry +Courtney +Danita +David +Debi +Earlene +Evette +Flora +Georgette +Gigi +Ginny +Hattie +Jewel +Jewell +Juliette +Kathie +Kaye +Lottie +Mae +Marcie +Marva +Mindy +Myrna +Olivia +Renea +Rhoda +Saundra +Shellie +Sybil +Tamera +Tamra +Ada +Alberta +Alecia +Camille +Cari +Caridad +Cindi +Clarissa +Cyndi +Deanne +Dedra +Demetria +Dorothea +Eddie +Erika +Evangeline +Eve +Fannie +Freda +Gayla +Gracie +Ina +Jolene +Juliet +Katharine +Kristie +Lesli +Lucia +Lucretia +Lula +Lyn +Marguerite +Marisol +Maritza +Maryellen +Mayra +Nannette +Olga +Penelope +Ronnie +Rosetta +Ruthie +Sabra +Shana +Shelby +Sheree +Shirl +Stella +Susanne +Suzan +Sydney +Tanja +Teresita +Violet +Zelda +Zena +Aida +Aileen +Amie +Angelica +Angeline +Arnita +Barbie +Carman +Cathi +Cathryn +Charleen +Cheryle +Chiquita +Christa +Claudette +Danna +Dara +Denice +Diedra +Djuna +Dorene +Dorinda +Gaye +Harriett +Helena +Hilary +Hollie +Ilene +Inez +Janelle +Jayne +Jessie +Jocelyn +Katy +Lashon +Latanya +Lavern +Lawana +Lawanna +Leann +Lesia +Libby +Loraine +Lory +Maura +Miranda +Missy +Nita +Octavia +Pearlie +Rachelle +Randy +Regena +Renita +Risa +Roslyn +Serena +Shaun +Shawna +Shiela +Stacie +Susana +Suzy +Tena +Teressa +Tobi +Agnes +Aimee +Alexandra +Alisha +Anjanette +Annemarie +Arleen +Bernita +Carolina +Caryn +Cathie +Cathrine +Charlie +Claretha +Cleo +Coleen +Corinne +Darby +Debrah +Dona +Dorthy +Earline +Fay +Genevieve +Georgina +Gwyn +Ivy +Joe +John +Juliana +Julianne +Justine +Kathi +Kathrine +Kayla +Kerrie +Kirsten +Kitty +Krystal +Lanette +Lanita +Lavonda +Lessie +Letha +Lily +Lisette +Lorelei +Lou +Luanne +Luz +Madelyn +Maggie +Malissa +Margo +Martina +Matilda +Meredith +Noreen +Pennie +Phoebe +Portia +Queen +Renae +Roni +Sallie +Scarlett +Sheena +Sherrill +Stacia +Susanna +Tangie +Tasha +Tawanna +Thomasina +Trena +Tricia +Vickey +Vikki +Yolonda +Abby +Adele +Allen +Alyce +Angelique +Angelita +Aurora +Beverley +Carletta +Carmela +Charles +Cornelia +Dania +Daria +Darleen +Darlena +Deedee +Delphine +Denna +Diedre +Dolly +Dottie +Earnestine +Elouise +Elsie +Elvira +Elyse +Eric +Essie +Francina +Francis +Gertrude +Glenna +Greta +Guadalupe +Gussie +Hannah +Ileana +Imogene +Ines +Inger +Ira +Irish +Jacki +Jackqueline +Jami +Jeanie +Jerry +Johanna +Joye +Juana +Judi +Kandy +Kendra +Kenna +Kym +Lajuana +Lashawn +Latasha +Latricia +Leeann +Lela +Leola +Lila +Lina +Liza +Lona +Loretha +Luci +Luisa +Marci +Marina +Melony +Merry +Michell +Mimi +Mindi +Mollie +Muriel +Nellie +Nereida +Neva +Nikki +Odessa +Pandora +Pattie +Rachael +Rosalie +Rosanne +Roseann +Roseanne +Roxie +Sarita +Sharri +Shirlene +Shonda +Starla +Suzie +Tamala +Tawanda +Teena +Tracee +Twanna +Twila +Vannessa +Veda +Velvet +Vernice +Lisa +Kimberly +Mary +Karen +Angela +Patricia +Cynthia +Tammy +Susan +Sharon +Linda +Pamela +Deborah +Donna +Elizabeth +Brenda +Teresa +Sandra +Barbara +Cheryl +Laura +Tina +Debra +Michelle +Robin +Jennifer +Rhonda +Lori +Stephanie +Carol +Julie +Melissa +Dawn +Kelly +Theresa +Tracy +Denise +Rebecca +Wendy +Sheila +Nancy +Jacqueline +Kim +Carolyn +Christine +Amy +Sherry +Valerie +Cindy +Maria +Wanda +Kathy +Diane +Janet +Terri +Michele +Debbie +Catherine +Janice +Margaret +Kathleen +Leslie +Andrea +Regina +Carla +Connie +Paula +Betty +Beverly +Suzanne +Gina +Tonya +Joyce +Jill +Shirley +Katherine +Annette +Bonnie +Cathy +Laurie +Sherri +April +Gloria +Monica +Darlene +Dorothy +Dana +Diana +Sonya +Felicia +Charlotte +Christina +Kathryn +Martha +Renee +Judy +Melinda +Melanie +Sylvia +Phyllis +Tracey +Ann +Stacey +Gwendolyn +Sheri +Anita +Sarah +Vicki +Virginia +Beth +Cassandra +Victoria +Allison +Penny +Veronica +Yolanda +Holly +Belinda +Julia +Anne +Vickie +Anna +Helen +Toni +Deanna +Charlene +Alicia +Terry +Judith +Marie +Shannon +Rose +Sheryl +Lynn +Peggy +Stacy +Yvonne +Marilyn +Frances +Vanessa +Jamie +Katrina +Gail +Shelia +Jackie +Kimberley +Rita +Tanya +Traci +Melody +Heather +Juanita +Loretta +Ruth +Samantha +Evelyn +Glenda +Jane +Natalie +Vivian +Alice +Constance +Jodi +Ronda +Tamara +Carmen +Sandy +Yvette +Lynda +Ellen +Sherrie +Crystal +Ana +Colleen +Priscilla +Sonja +Audrey +Heidi +Lee +Jean +Joan +Joy +Rachel +Tammie +Carrie +Marsha +Angie +Becky +Tami +Amanda +Elaine +Joann +Pam +Tara +Bridget +Norma +Rosa +Sabrina +Shawn +Jacquelyn +Patti +Patty +Candace +Jeanette +Lorraine +Marcia +Ruby +Shari +Karla +Maureen +Shelly +Angelia +Joanne +Lora +Vonda +Jo +Alison +Sonia +Doris +Eva +Roberta +Robyn +Sally +Tangela +Kristine +Annie +Bobbie +Caroline +Cherie +Valarie +Betsy +Darla +Irene +Kelley +Lois +Ramona +Dianna +June +Kristin +Lynette +Mia +Monique +Patrice +Sue +Vicky +Alisa +Teri +Ginger +Kelli +Lillian +Rosemary +Sara +Dianne +Erin +Joanna +Leah +Shelley +Sophia +Desiree +Edith +Jeanne +Marjorie +Nina +Tracie +Willie +Esther +Gladys +Hope +Iris +Jan +Leigh +Marion +Myra +Terrie +Thelma +Antoinette +Bridgette +Carole +Grace +Dena +Jessica +Kellie +Beatrice +Bonita +Josephine +Kristina +Lauren +Louise +Daphne +Delores +Selena +Debora +Edna +Ethel +Jeannie +Mildred +Mona +Paige +Paulette +Arlene +Bridgett +Cara +Cheri +Nadine +Selina +Bobbi +Dina +Eileen +Eleanor +Faith +Georgia +Kimberlee +Lawanda +Lenora +Marianne +Nora +Bertha +Celeste +Clara +Deana +Emma +Nicole +Polly +Rosalind +Tonja +Althea +Candy +Christy +Geraldine +Jana +Janie +Jody +Lorie +Lynne +Mattie +Miriam +Pauline +Sondra +Trina +Cecilia +Chris +Doreen +Joni +Kay +Letitia +Lillie +Lorrie +Lydia +Marian +Marlene +Naomi +Suzette +Bernice +Billie +Kristi +Lucy +Patsy +Silvia +Tammi +Tiffany +Alma +Emily +Eugenia +Felecia +Hilda +Jenny +Latonya +Lena +Lesley +Lourdes +Marla +Misty +Rosalyn +Allyson +Cristina +Danielle +Elena +Elisa +Gayle +Krista +Margie +Susie +Tonia +Wilma +Adrienne +Alfreda +Ashley +Ava +Chandra +Claudia +Erica +Faye +Jodie +Karin +Katie +Lesa +Lucinda +Alesia +Amber +Amelia +Benita +Eunice +Gretchen +Harriet +Janine +Jeannette +Jeri +Jerri +Lana +Laurel +Lorri +Malinda +Maxine +Molly +Roxanne +Vera +Angel +Elisabeth +Ella +Frankie +Gena +Kara +Kecia +Nanette +Sharron +Valeria +Zina +Beatriz +Dolores +Dora +Ernestine +Isabel +Ivy +Jacquline +James +Janette +Jeannine +Jennie +Jessie +Karol +Kerri +Lea +Leanne +Marcella +Minnie +Olivia +Rochelle +Sandi +Susanne +Therese +Trisha +Alberta +Bernadette +Cathleen +Celia +Daisy +Diann +Geneva +Kerry +Kris +Kristen +Maggie +Mari +Megan +Melisa +Nellie +Raquel +Rene +Rosemarie +Shawna +Shelby +Valencia +Wendi +Adriana +Aimee +Bessie +Christie +Deirdre +Delia +Deloris +Florence +Jami +Ladonna +Lola +Lucretia +Marisa +Marnie +Mercedes +Meredith +Mindy +Miranda +Pearlie +Penelope +Roslyn +Stella +Ursula +Valorie +Viola +Aurora +Avis +Caryn +Cecelia +Cora +Della +Dorinda +Edwina +Elise +Francine +Gale +Gwen +Helene +Ida +Irma +Jeanie +Johanna +Julianne +Karyn +Lashawn +Laverne +Lesia +Lolita +Lorna +Lynnette +Marguerite +Martina +Olga +Robbie +Rosie +Saundra +Serena +Tricia +Alina +Anthony +Antonia +Chiquita +Christi +Darcy +Dee +Deena +Deidre +Dorene +Dorothea +Erika +Essie +Estelle +Fay +Inez +Jeanine +Johnnie +Judi +Kristy +Madeline +Malissa +Marina +Marta +Nanci +Patrica +Rhoda +Robbin +Sherie +Staci +Stacie +Sybil +Tania +Trudy +Velma +Venus +Vernita +Angelina +Babette +Candice +Cindi +Danette +Deann +Deedee +Deidra +Dixie +Gayla +Greta +Hattie +Ileana +Ivette +Janis +Jannie +Jewell +John +Kenneth +Keri +Kevin +Lauri +Leona +Lucille +Mae +Marcie +Margo +Marissa +Marva +Michael +Mitzi +Sarita +Sharlene +Shirlene +Tamela +Tawana +Teresita +Tia +Verna +Winifred +Zena +Abby +Aileen +Alexandra +Alisha +Angeline +Angelique +Angelita +Annemarie +Antionette +Arnette +Camilla +Caren +Casandra +Cathryn +Charmaine +Christa +Coleen +Dale +Dania +Dayna +Dedra +Detra +Dionne +Francina +Gay +Harriett +Ingrid +Iva +Jewel +Jimmie +Kandi +Katharine +Latanya +Latricia +Lavette +Lavonne +Leatha +Letha +Liz +Lorinda +Lory +Mamie +Marci +Melonie +Nita +Pamala +Patrina +Princess +Rachael +Reba +Rebekah +Rena +Robert +Roxie +Scarlett +Shellie +Sheron +Stefanie +Susanna +Suzan +Teressa +Whitney +Alyson +Andra +Andre +Bethany +Bettina +Brandi +Cassie +Catrina +Charles +Cherry +Claire +Claretha +Claudette +Corinne +Cornelia +Danita +Dannette +Demetrice +Denice +Diedra +Dolly +Dorcas +Elisha +Ellie +Etta +Eula +Eve +Freda +Gerald +Geri +Glynis +Henrietta +Ivonne +Jada +Jayne +Jenifer +Jocelyn +Joycelyn +Juliet +Kari +Kathie +Keli +Kendra +Kimberli +Lavon +Leann +Leila +Lela +Leticia +Loraine +Lorene +Lyn +Mandy +Margarita +Maryann +Mechelle +Mellissa +Melva +Missy +Nannette +Noreen +Octavia +Pattie +Pennie +Rae +Renae +Romona +Rosanne +Rosetta +Roxane +Roxanna +Sadie +Samanthia +Shana +Shanna +Sharonda +Shauna +Sherrill +Sonji +Susana +Thea +Towanda +Velda +Vikki +Violet +Abbie +Ada +Adriane +Adrianne +Agnes +Aida +Alecia +Alexis +Alyce +Angelica +Aretha +Arleen +Barbra +Brenna +Brigitte +Camille +Carlene +Celestine +Cheryle +Cheryll +Clarissa +Conchita +Darby +Darleen +Deanne +Debby +Delinda +Dominique +Earline +Earnestine +Eden +Elnora +Elsa +Elsie +Esperanza +Eugena +Evangeline +Fern +Flora +Francis +Genevieve +Georgette +Georgina +Gerri +Gertrude +Gracie +Gregory +Hazel +Jaime +Jena +Joanie +Joe +Joelle +Josie +Kathi +Kirsten +Kristie +Lara +Latrenda +Lavonda +Leeann +Lilia +Lina +Lindy +Lisette +Lisha +Loretha +Mabel +Marcy +Margret +Mavis +Mayra +Melodee +Melodie +Melony +Melynda +Mercy +Merri +Milagros +Mollie +Muriel +Mylinda +Noelle +Ola +Rachelle +Randi +Rhea +Roxana +Sallie +Shanda +Shonna +Starla +Synthia +Tamie +Tamra +Tana +Tangie +Teena +Tessa +Thomasina +Timothy +Tommie +Trena +Tresa +Twanna +Twila +Unknown +Velvet +Willette +Yolonda +Zelda +Lisa +Kimberly +Mary +Angela +Michelle +Karen +Patricia +Cynthia +Tammy +Pamela +Susan +Sharon +Deborah +Donna +Melissa +Teresa +Elizabeth +Linda +Sandra +Jennifer +Tina +Barbara +Laura +Brenda +Lori +Stephanie +Julie +Cheryl +Debra +Tracy +Kelly +Rhonda +Dawn +Robin +Nancy +Sheila +Christine +Theresa +Amy +Denise +Michele +Wendy +Carol +Kim +Rebecca +Catherine +Andrea +Maria +Jacqueline +Sherry +Cindy +Margaret +Janet +Diane +Carolyn +Wanda +Terri +Kathy +Kathleen +Valerie +Debbie +Janice +Carla +Paula +Leslie +Sonya +Christina +Suzanne +Connie +Beverly +Shirley +April +Gina +Dana +Laurie +Anita +Katherine +Melanie +Regina +Jill +Sherri +Tonya +Diana +Tracey +Cathy +Monica +Sheri +Felicia +Darlene +Gloria +Renee +Betty +Bonnie +Melinda +Joyce +Annette +Judy +Dorothy +Sylvia +Shannon +Lynn +Veronica +Kathryn +Yolanda +Vicki +Sarah +Cassandra +Ann +Deanna +Martha +Virginia +Amanda +Beth +Charlotte +Joy +Victoria +Stacey +Anna +Anne +Belinda +Tamara +Toni +Gwendolyn +Frances +Rose +Alicia +Helen +Julia +Heather +Holly +Phyllis +Sabrina +Sheryl +Traci +Katrina +Peggy +Sonja +Vickie +Heidi +Penny +Judith +Ruth +Tanya +Marie +Melody +Evelyn +Yvette +Alice +Natalie +Shelia +Kimberley +Ellen +Yvonne +Gail +Audrey +Rachel +Carmen +Carrie +Charlene +Doris +Terry +Glenda +Hope +Samantha +Vivian +Jamie +Marilyn +Rosa +Sara +Jackie +Sandy +Stacy +Loretta +Vanessa +Crystal +Allison +Marcia +Tiffany +Ana +Candace +Jacquelyn +Joann +Karla +Kristin +Nicole +Tammie +Rita +Shari +Jeanette +Joanne +Colleen +Constance +Ginger +Shawn +Angelia +Angie +Becky +Marsha +Bridget +Eva +Jean +Joan +Kelli +Monique +Sherrie +Sonia +Tangela +Lauren +Lynda +Elaine +Dianna +Jessica +Jodi +Kristine +Priscilla +Ramona +Ronda +Delores +Lee +Lillian +Nina +Norma +Shelley +Tami +Vicky +Juanita +Kellie +Tara +Annie +Erin +Lesley +Roberta +Sally +Jo +Teri +Christy +Jane +June +Maureen +Robyn +Ruby +Valarie +Cheri +Edith +Jeanne +Lorraine +Mona +Tia +Kelley +Leah +Marlene +Shelly +Alisa +Dianne +Kristen +Lorie +Miriam +Claudia +Janine +Jeannie +Kristi +Lourdes +Pam +Tracie +Alison +Caroline +Desiree +Kristina +Leigh +Lora +Sophia +Bobbie +Darla +Mildred +Emily +Emma +Joanna +Sue +Tonia +Vonda +Daphne +Eileen +Faith +Kendra +Marjorie +Patrice +Celeste +Cherie +Clara +Latonya +Lynette +Marian +Nora +Patty +Bonita +Cara +Dena +Dina +Felecia +Grace +Gretchen +Iris +Jody +Josephine +Sonji +Adrienne +Carole +Elena +Esther +Georgia +Ida +Suzette +Antoinette +Arlene +Debora +Gayle +Lois +Lynne +Trina +Bridgette +Cecilia +Deidre +Elisa +Lydia +Marion +Paige +Willie +Billie +Danielle +Irene +Jan +Jeanine +Marla +Molly +Pauline +Rene +Rosemary +Selina +Susie +Bernice +Candy +Dee +Jana +Leanne +Lorrie +Margie +Patti +Valorie +Alma +Bernadette +Bertha +Betsy +Bobbi +Chris +Dora +Geraldine +Ingrid +Janette +Jessie +Mia +Mitzi +Paulette +Tamela +Thelma +Angelina +Audra +Bridgett +Cristina +Edna +Ella +Gladys +Greta +Lawanda +Lucille +Margarita +Rochelle +Roxanne +Stefanie +Tonja +Aimee +Amber +Ashley +Ivette +Kirsten +Kris +Letitia +Lillie +Lorri +Louise +Meredith +Misty +Myra +Olga +Polly +Silvia +Tammi +Terrie +Alesia +Beatrice +Christi +Danette +Deirdre +Dolores +Doreen +Ethel +Florence +Gwen +James +Jennie +Jenny +Jerri +Katie +Selena +Tabitha +Wendi +Ada +Althea +Beatriz +Deana +Deidra +Inez +Kerri +Kerry +Lana +Lucinda +Madeline +Marianne +Mercedes +Nadine +Penelope +Rosalind +Rosetta +Tabatha +Ursula +Verna +Alina +Amelia +Ava +Casandra +Cecelia +Christie +Daisy +Francine +Janie +Kara +Lucy +Marcy +Michael +Minnie +Missy +Naomi +Rena +Robbie +Rosalyn +Stella +Sybil +Tania +Valeria +Velma +Angel +Della +Edwina +Gena +Geneva +Gidget +Hilda +Isabel +Ivonne +Laurel +Marcie +Marva +Maxine +Shawna +Sondra +Staci +Trudy +Vera +Aileen +Bethany +Chandra +Colette +Cora +Deena +Erica +Harriet +Hazel +Jacquline +Janis +Johnnie +Kimberlee +Krista +Kristy +Ladonna +Latonia +Leann +Leisa +Leona +Lola +Shonda +Stacie +Susana +Susanne +Tamra +Alberta +Alexandra +Delia +Deloris +Detra +Dona +Elise +Estella +Eugenia +Hattie +Helena +Ileana +Jeannette +Jeannine +Jeri +Joelle +Karin +Katharine +Laverne +Lea +Lenora +Lesa +Lisette +Lorene +Luz +Marta +Mattie +Mechelle +Merry +Olivia +Randi +Robbin +Sandi +Shauna +Tawana +Valencia +Violet +Wilma +Zina +Adrian +Antonia +Avis +Candice +Cassie +Claire +Clarissa +Claudette +Darcy +Eleanor +Elsie +Ernestine +Eunice +Gay +John +Josie +Lara +Lashawn +Leila +Lynnette +Mandy +Marcella +Margo +Melisa +Nanette +Patsy +Portia +Reba +Romona +Rosemarie +Saundra +Shanda +Shelby +Twanda +Vickey +Abby +Alexis +Andria +Anthony +Blanca +Brooke +Celia +Diann +Elvira +Frankie +Freda +Gale +Georgina +Helene +Jannie +Jodie +Joni +Julianne +Justine +Kathie +Kimberlie +Lena +Lesia +Leticia +Malinda +Marguerite +Maritza +Maryann +Megan +Michell +Myrna +Nikki +Rae +Raquel +Rebekah +Renea +Robert +Sabrena +Sallie +Sebrina +Serena +Sharlene +Sharonda +Tamera +Tangie +Thomasina +Tonda +Tricia +Trisha +Twila +Venus +Willa +Abigail +Arletha +Barbra +Camille +Caridad +Cathryn +Chantel +Charla +Cherri +Cherry +Christian +Dawna +Elisabeth +Erika +Evangeline +Faye +Gia +Irma +Janna +Jenifer +Jocelyn +Joycelyn +Judi +Juli +Katheryn +Kay +Kecia +Lauri +Lou +Louisa +Lucretia +Maggie +Malissa +Mari +Nannette +Pamala +Pearlie +Rachael +Rhoda +Richard +Ronna +Rosalie +Sheron +Tawanda +Teresita +Therese +William +Winifred +Zoe +Adrianne +Agnes +Aida +Alfreda +Alissa +Allyson +Antonette +Arnita +Bernita +Bonny +Caren +Carlette +Courtney +Dayna +Deanne +Debbi +Dedra +Dionne +Dolly +Dorothea +Edie +Eve +Freddie +Gayla +Georgette +Geri +Gertrude +Gracie +Ivy +Jacquelin +Jayne +Jewel +Johanna +Juliette +Kandace +Karol +Karyn +Keli +Kristie +Latanya +Latrenda +Latricia +Lavonda +Lesli +Lolita +Loren +Lorna +Lory +Lula +Mae +Mamie +Maribel +Marina +Marisa +Melodie +Melonie +Melony +Migdalia +Mindy +Miranda +Nanci +Nichole +Octavia +Patrica +Rachelle +Regena +Reginia +Renae +Roni +Rosie +Roslyn +Shana +Sharron +Shellie +Sheree +Susanna +Tasha +Teressa +Whitney +Windy +Abbie +Alecia +Aleta +Alisha +Anglea +Arleen +Arnetta +Benita +Bettina +Bobby +Brandi +Bridgitte +Brigitte +Callie +Carey +Carmella +Carroll +Caryn +Cathleen +Celestine +Charita +Chiquita +Christa +Corinna +Danita +David +Demetria +Erma +Essie +Etta +Eula +Fatima +Felisha +Fontella +Francina +Francis +Gigi +Hilary +Iva +Jackeline +Jaime +Jeanie +Jeanna +Josefina +Juliet +Kandi +Kandy +Kari +Kasey +Kathlyn +Kaye +Keri +Krystal +Leola +Lessie +Letha +Lila +Lindy +Lissette +Liz +Lizabeth +Lottie +Madelyn +Malisa +Malvina +Marchelle +Marci +Marlena +Marlo +Marni +Marnie +Marybeth +Mayra +Mellissa +Melva +Mercy +Muriel +Nicola +Nita +Noelle +Pattie +Paul +Pennie +Princess +Queen +Rolanda +Roseanne +Ruthie +Sadie +Scarlett +Sebrena +Shenita +Shirlene +Sophie +Soraya +Sunday +Suzanna +Tatia +Tawnya +Terresa +Tobi +Tracee +Trudi +Tuesday +Wende +Willette +Zelda +Lisa +Kimberly +Michelle +Mary +Angela +Tammy +Melissa +Karen +Cynthia +Susan +Patricia +Pamela +Stephanie +Jennifer +Elizabeth +Sandra +Tina +Laura +Deborah +Teresa +Sharon +Linda +Donna +Barbara +Cheryl +Tracy +Amy +Brenda +Kelly +Wendy +Julie +Dawn +Debra +Lori +Christine +Carol +Theresa +Rebecca +Robin +Nancy +Denise +Rhonda +April +Jacqueline +Michele +Andrea +Paula +Kim +Christina +Sheila +Tonya +Carolyn +Maria +Sherry +Sabrina +Leslie +Valerie +Kathy +Dana +Margaret +Terri +Catherine +Janet +Wanda +Katherine +Kathleen +Regina +Cindy +Suzanne +Jill +Carla +Diane +Gina +Janice +Connie +Stacey +Heather +Sonya +Sherri +Beverly +Debbie +Tracey +Diana +Bonnie +Darlene +Felicia +Melinda +Dorothy +Laurie +Kathryn +Monica +Betty +Melanie +Renee +Annette +Beth +Sheri +Virginia +Cathy +Yolanda +Shannon +Stacy +Shirley +Tamara +Tanya +Victoria +Yvette +Anita +Charlotte +Vicki +Cassandra +Gloria +Lynn +Veronica +Martha +Sheryl +Katrina +Joyce +Anna +Sarah +Vanessa +Deanna +Judy +Vickie +Ann +Carrie +Penny +Gwendolyn +Rachel +Belinda +Traci +Alicia +Nicole +Holly +Loretta +Julia +Kelli +Marie +Amanda +Judith +Peggy +Heidi +Sonja +Vivian +Audrey +Helen +Anne +Carmen +Charlene +Shelia +Alice +Juanita +Marilyn +Crystal +Jodi +Sylvia +Jamie +Yvonne +Toni +Ruth +Melody +Samantha +Sara +Rose +Terry +Tonia +Evelyn +Kristin +Tammie +Tangela +Allison +Ana +Frances +Phyllis +Ellen +Kimberley +Tiffany +Sonia +Doris +Gail +Elaine +Shawn +Bridget +Jeanette +Joy +Kelley +Kristine +Marsha +Jessica +Natalie +Rita +Candace +Colleen +Constance +Monique +Shelly +Tara +Kristina +Priscilla +Angelia +Becky +Ginger +Rosa +Shelley +Sophia +Lynda +Mia +Vicky +Jeanne +Norma +Tami +Daphne +Desiree +Emily +Jacquelyn +Lara +Leah +Lorraine +Sherrie +Teri +Erika +Marlene +Valarie +Dianna +Glenda +Kristen +Robyn +Sally +Eva +Hope +Jean +Joan +Lillian +Lora +Angie +Maureen +Shari +Caroline +Lee +Sandy +Alisa +Arlene +Bobbie +Bridgette +Jane +Kendra +Lynette +Miriam +Annie +Cheri +Dena +Dina +Irene +Jo +Karla +Ronda +Trina +Adrienne +Christie +Jackie +Jeannie +Kristi +Leigh +Paige +Antoinette +Cherie +Danielle +Delores +Joanne +Bernadette +Christy +Lourdes +Marcia +Ramona +Stefanie +Audra +Emma +Joann +Lauren +Marjorie +Sue +Tracie +Edith +Erin +Lydia +Misty +Eileen +Latonya +Alison +Darla +Gladys +Patti +Roberta +Ruby +Tonja +Aretha +Celeste +Clara +Grace +Jana +Kellie +Marla +Edna +Faith +Iris +Jeri +Jody +Kerry +Lorrie +Nina +Debora +Joanna +Kara +Lorie +Lucy +Marian +Rosemary +Aimee +Ashley +Bertha +Daisy +Erica +Margarita +Patrice +Paulette +Rosalind +Wendi +Angel +Bridgett +Cristina +Deirdre +Dianne +Elena +Esther +Georgia +Greta +Janine +Jerri +Jodie +Kari +Kay +Lenora +Lillie +Pam +Patty +Roxanne +Trudy +Billie +Candy +Cecilia +Claudia +Deana +Eleanor +Ethel +Geraldine +Johnnie +Josephine +Kerri +Lois +Marianne +Tammi +Amber +Candice +Dee +Faye +Jan +June +Lana +Louise +Melisa +Molly +Olga +Pauline +Tabatha +Tamela +Tia +Valencia +Valeria +Vera +Alma +Dionne +Gretchen +Janie +Krista +Lesley +Lynne +Nikki +Rene +Rosalyn +Staci +Willie +Alina +Beatrice +Cecelia +Felecia +Harriet +Janette +Kristy +Marcy +Sebrina +Suzette +Ursula +Alberta +Cara +Cathleen +Deidre +Dora +Elisa +Katie +Kirsten +Ladonna +Latonia +Lauri +Lawanda +Lea +Leanne +Lesa +Meredith +Naomi +Nora +Rena +Stacie +Terrie +Thelma +Althea +Betsy +Bobbi +Christi +Deena +Deloris +Ella +Gena +Ida +Kimberlee +Laurel +Marion +Michell +Myra +Olivia +Patsy +Rochelle +Sondra +Stella +Susanne +Bernice +Camille +Cora +Dara +Della +Dolores +Doreen +Florence +Gayle +Geneva +Hilda +Jenny +Karin +Kristie +Marcella +Marta +Mercedes +Mildred +Missy +Rachelle +Saundra +Tabitha +Teresita +Tricia +Ada +Adriene +Barbra +Benita +Bonita +Casandra +Chris +Eunice +Frankie +Ingrid +Ivette +Jessie +Joni +Karrie +Kathie +Keri +Lynnette +Mattie +Michael +Nadine +Nanette +Rae +Randi +Rosemarie +Sabrena +Selena +Serena +Valorie +Adriana +Alexandra +Alisha +Angelina +Beatriz +Bessie +Carole +Colette +Courtney +Deanne +Demetria +Gabrielle +James +Lashawn +Malinda +Malissa +Nichelle +Octavia +Shana +Shanda +Sharlene +Sharron +Silvia +Tania +Twila +Viola +Wilma +Agnes +Alesia +Amelia +Antionette +Avis +Carey +Chandra +Chiquita +Christa +Claudette +Darcy +David +Deann +Dolly +Eugenia +Ilene +Isabel +Janelle +Janis +Karyn +Kris +Laverne +Lena +Lisette +Lorri +Lucille +Madeline +Maggie +Marci +Margie +Marisa +Maxine +Miranda +Mitzi +Natasha +Penelope +Princess +Raquel +Robert +Selina +Shonda +Susana +Susie +Sybil +Tamra +Tawanda +Towanda +Vikki +Violet +Abigail +Aileen +Alana +Andra +Anissa +Brandy +Dixie +Dorothea +Elisabeth +Ernestine +Hattie +Irma +Jacquelin +Jami +Janna +Jeannette +Jeannine +Jennie +Jocelyn +Karie +Latanya +Liza +Lorena +Lou +Mara +Marguerite +Marnie +Maryann +Mayra +Mechelle +Megan +Meri +Noelle +Polly +Rachael +Reba +Robbin +Shauna +Shawna +Shelby +Sonji +Susanna +Tamatha +Tamera +Tasha +Tracee +Velma +Vernita +Vonda +William +Zandra +Adrian +Adrianne +Alecia +Alfreda +Autumn +Bethany +Blanca +Brandi +Brooke +Buffy +Camilla +Carolina +Carroll +Caryn +Charmaine +Dale +Danita +Dona +Estella +Francine +Gale +Georgianna +Helena +Hilary +Hillary +Jacki +Jacquline +Jeanie +Jeanine +Jenifer +Josette +Judi +Katharine +Kathrine +Kaye +Kimberli +Krystal +Leann +Leona +Lesia +Letha +Letitia +Lila +Lissette +Lizzie +Lolita +Lorna +Lucinda +Mandy +Margo +Mimi +Minnie +Nellie +Portia +Precious +Renita +Roslyn +Sheree +Tawana +Tijuana +Trisha +Venus +Adriane +Allyson +Amie +Andria +Angeline +Annetta +Antonia +Aundrea +Beverley +Candi +Caren +Casey +Celestine +Charles +Charlette +Christopher +Claire +Danelle +Danette +Dania +Daniel +Dawne +Deidra +Dollie +Dorinda +Estelle +Evette +Francis +Georgina +Graciela +Harriett +Ivy +Janell +Jeana +Jewell +John +Juliana +Justina +Karol +Kecia +Kristal +Latricia +Lavette +Leila +Lesli +Leticia +Libby +Linette +Madelyn +Madonna +Marlo +Marva +Mavis +Melissia +Mellissa +Mindy +Mona +Myrtle +Noel +Opal +Pamala +Petra +Phoebe +Queen +Retha +Robbie +Ruthie +Sharonda +Shellie +Sherryl +Simone +Susannah +Suzanna +Tanja +Tosha +Twanda +Whitney +Willa +Willette +Windy +Alissa +Angelica +Angella +Anjanette +Annmarie +Arlisa +Ava +Bettina +Blanche +Bonny +Brigette +Brigitte +Callie +Cammie +Caridad +Carlotta +Caron +Celia +Charla +Charleen +Chenita +Cindi +Consuelo +Davina +Dayna +Deedee +Demetra +Denice +Diann +Donald +Edie +Elicia +Elise +Elsie +Elyse +Ericka +Evangeline +Eve +Gigi +Glenna +Gwen +Ilona +Ivonne +Jamey +Jannie +Jerrie +Jewel +Joelle +Johanna +Jon +Juana +Juli +Julianne +Juliet +Juliette +Katrice +Kerrie +Kimberlie +Lanora +Larissa +Leeann +Leisa +Lela +Leola +Lola +Loren +Loria +Luz +Lyn +Madeleine +Mae +Magda +Mamie +Maribel +Marina +Maritza +Marlen +Martina +Melodie +Melonie +Melony +Melynda +Mollie +Myla +Nanci +Nannette +Natalia +Niki +Pennie +Quanda +Regena +Reginald +Renae +Ronna +Ronnie +Rosetta +Rosie +Roxann +Sadie +Sandi +Shea +Sherie +Sonjia +Subrina +Tana +Tawanna +Tena +Teressa +Tessa +Thalia +Tisha +Tonda +Valery +Verna +Vickey +Winifred +Yolonda +Lisa +Kimberly +Michelle +Tammy +Melissa +Jennifer +Angela +Mary +Cynthia +Karen +Pamela +Laura +Patricia +Elizabeth +Susan +Stephanie +Tina +Kelly +Tracy +Donna +Sharon +Deborah +Sandra +Dawn +Teresa +Barbara +Linda +Lori +Christine +Julie +Amy +Cheryl +Wendy +Brenda +Rebecca +Robin +Denise +Theresa +Michele +Rhonda +Carol +Debra +Tonya +Nancy +Christina +Shannon +Andrea +Maria +Sherry +Jacqueline +Paula +Sheila +Catherine +Leslie +Stacey +April +Katherine +Regina +Yolanda +Carolyn +Margaret +Kathleen +Heather +Dana +Kathy +Valerie +Stacy +Cindy +Kim +Monica +Melanie +Carla +Suzanne +Wanda +Jill +Terri +Victoria +Gina +Sonya +Tracey +Janet +Diane +Diana +Tanya +Samantha +Felicia +Sabrina +Alicia +Melinda +Sherri +Ann +Beverly +Janice +Connie +Renee +Deanna +Gloria +Tammie +Rachel +Annette +Sarah +Kathryn +Cassandra +Tamara +Bonnie +Laurie +Vicki +Katrina +Anita +Carrie +Natalie +Anna +Veronica +Virginia +Martha +Amanda +Holly +Sheryl +Belinda +Beth +Debbie +Darlene +Joyce +Betty +Tara +Traci +Dorothy +Julia +Joy +Lynn +Ruth +Shirley +Carmen +Charlene +Nicole +Sheri +Vanessa +Yvonne +Sylvia +Anne +Vickie +Helen +Judith +Allison +Frances +Kelli +Cathy +Toni +Kristin +Sonja +Heidi +Jodi +Kristen +Gwendolyn +Yvette +Charlotte +Christy +Evelyn +Kimberley +Kristina +Vivian +Judy +Marie +Danielle +Shelly +Bridget +Jacquelyn +Juanita +Penny +Terry +Kellie +Melody +Tiffany +Ana +Crystal +Loretta +Marilyn +Rose +Shawn +Erika +Latonya +Sara +Sherrie +Sonia +Angie +Jamie +Kelley +Alice +Candace +Constance +Lara +Peggy +Rita +Ronda +Shelia +Jane +Kristine +Marlene +Phyllis +Priscilla +Tonia +Angelia +Doris +Jackie +Sandy +Tami +Gail +Jo +Robyn +Audrey +Colleen +Daphne +Elaine +Erin +Tracie +Dina +Lee +Teri +Alisa +Becky +Cheri +Leigh +Lora +Shari +Glenda +Joann +Leah +Lorraine +Shelley +Tangela +Adrienne +Cristina +Jeanette +Joanne +Kerry +Vicky +Caroline +Jean +Jessica +Joanna +Laurel +Roberta +Emily +Lauren +Maureen +Monique +Rosa +Tammi +Christie +Dianne +Ellen +Marcia +Lorie +Lynda +Mia +Valarie +Edith +Joan +Kristi +Norma +Staci +Alison +Dianna +Hope +Lillian +Candy +Dena +Ginger +Misty +Chandra +Irene +Marsha +Miriam +Paige +Patrice +Sophia +Tabatha +Trina +Bridgette +Desiree +Faith +Jeanne +Jody +Lesley +Raquel +Ruby +Tabitha +Annie +Billie +Bobbie +Elisa +Karin +Kerri +Pauline +Tricia +Antoinette +Audra +Claudia +Darla +Deana +Grace +Lynette +Pam +Tonja +Eva +Janie +Jeannie +Karla +Lois +Lourdes +Amber +Geraldine +Josephine +June +Krista +Patty +Angel +Arlene +Bernadette +Candice +Cherie +Iris +Jana +Kristie +Ladonna +Marjorie +Marla +Melisa +Rosemary +Sally +Terrie +Cecilia +Gladys +Kari +Lydia +Patti +Ramona +Sue +Suzette +Courtney +Erica +Esther +Georgia +Jeri +Lawanda +Mercedes +Paulette +Stacie +Susanne +Tamatha +Ashley +Debora +Dionne +Jenny +Kendra +Kristy +Lenora +Marion +Natasha +Nina +Ursula +Edna +Elena +Emma +Gayle +Gretchen +Jodie +Kara +Kirsten +Rene +Wendi +Aimee +Aretha +Bonita +Bridgett +Christa +Christi +Clara +Della +Delores +Eileen +Florence +Janine +Mechelle +Molly +Silvia +Tania +Angelique +Anissa +Cathleen +Ida +Isabel +Katie +Lana +Leanne +Penelope +Rachael +Rosalind +Rosalyn +Susie +Vera +Vonda +Willie +Beatrice +Bertha +Betsy +Cara +Clarissa +Daisy +Felecia +Lashawn +Leann +Marian +Marlo +Maryann +Meredith +Myra +Nanette +Olga +Rena +Rochelle +Alma +Ava +Casandra +Celeste +Deanne +Deena +Ella +Ivette +James +Jennie +Jerri +Lea +Lissette +Lorrie +Louise +Lucinda +Lucy +Marcy +Marta +Mona +Robbin +Serena +Tamera +Tawana +Aileen +Angelina +Bethany +Brandy +Carole +Cecelia +Colette +Coretta +Danita +Dora +Gena +Jocelyn +Kay +Margie +Maxine +Mitzi +Naomi +Nichelle +Nikki +Rosemarie +Shana +Sondra +Valencia +William +Adrian +Alina +Benita +Bernice +Bobbi +Caridad +Henrietta +Julianne +Keri +Kimberlee +Lesa +Lillie +Margarita +Marisa +Marnie +Megan +Michael +Michell +Nora +Polly +Renita +Selena +Shonda +Windy +Adriana +Amelia +Cari +Chris +Eleanor +Francine +Ileana +Janelle +Jeannette +Jeannine +Kris +Lisette +Lorri +Malissa +Marci +Marcie +Marianne +Mildred +Stacia +Tasha +Trisha +Vikki +Adriane +Alexandra +Allyson +Althea +Antonia +Brandi +Buffy +Caren +Doreen +Elisabeth +Elise +Ericka +Geneva +Ingrid +Jami +Jan +Jeanie +Jeanine +Letitia +Lizette +Lolita +Lynne +Madeline +Mandy +Miranda +Patrica +Rebekah +Roxanne +Susana +Tamela +Tamiko +Tamra +Tawanna +Trudy +Valorie +Ada +Alberta +Annmarie +Antionette +Carolina +Caryn +Cinnamon +Claudine +Darcy +Demetria +Doretha +Eunice +Faye +Gay +Gwen +Hazel +Jenifer +Jolie +Kathrine +Latanya +Laverne +Leona +Leticia +Malinda +Marcella +Maritza +Mattie +Missy +Olivia +Robbie +Rosie +Sabrena +Sallie +Sebrina +Selina +Shanda +Shawna +Thelma +Tia +Velma +Whitney +Winifred +Alesia +Alexis +Anastasia +Anjanette +Brigette +Brigitte +Cathryn +Celia +Danna +Davina +Dedra +Deirdre +Delia +Dorinda +Estelle +Eugenia +Flora +Gale +Georgina +Helena +Irma +Ivy +Janis +Jewel +Karon +Lahoma +Latonia +Luz +Milagros +Mindy +Minnie +Nedra +Pamala +Rae +Robert +Saundra +Shelby +Stefanie +Suzy +Abby +Adrianne +Alfreda +Beatriz +Charity +Cora +Deidra +Deidre +Dorothea +Edie +Elissa +Essie +Estella +Frankie +Greta +Harriet +Ivonne +Jacquelin +Johnnie +Joni +Juana +Judi +Juli +Kenneth +Lashan +Lasonya +Latasha +Latricia +Leanna +Leila +Lorena +Lucille +Machelle +Margo +Nadine +Nannette +Natalia +Noelle +Patsy +Richelle +Roxana +Sharlene +Sharron +Shaun +Tamika +Tarsha +Tawanda +Towanda +Treva +Valeria +Vernita +Wilma +Zelda +Abigail +Alisha +Alycia +Alysia +Annemarie +Avis +Blanca +Cameron +Carey +Carmel +Cassie +Catrina +Chanda +Charisse +Charles +Cherry +Cindi +Claudette +Consuelo +Corinna +Dale +Danette +Dania +Dara +Dayna +Dee +Deloris +Dona +Elvira +Elyse +Erma +Ethel +Etta +Evette +Fannie +Francis +Gerri +Hannah +Hilary +Hollie +Ina +Inez +Janel +Janell +Jeanna +Jena +Jessie +Joelle +Joycelyn +Kandi +Karlene +Karyn +Kecia +Kevin +Krystal +Lashaun +Lauri +Lavonda +Lenore +Lesia +Loren +Lorene +Lucretia +Mabel +Maggie +Mamie +Mara +Mari +Marisol +Mayra +Mellissa +Mollie +Nellie +Nicola +Noel +Page +Portia +Rachelle +Roni +Ronnie +Rosetta +Roslyn +Sarita +Shanon +Shauna +Shawanda +Sherie +Sonji +Stella +Tena +Terra +Tess +Thea +Timothy +Venus +Verna +Willette +Adrianna +Alecia +Alyssa +Amie +Angeline +Annetta +Antonette +Aurora +Bette +Brenna +Brian +Brooke +Buffie +Carin +Carlene +Cary +Casey +Celina +Chantel +Charla +Chrissy +Coleen +Cristal +Dallas +Dannielle +David +Dawna +Deedee +Delisa +Demetra +Denice +Dolores +Edwina +Elsie +Eve +Gabrielle +Gennifer +Georgette +Harriett +Hattie +Helene +Hilda +Idella +Jacquline +Jacqulyn +Janette +Janna +Jaqueline +Joey +Johanna +Johnna +Josie +Julianna +Juliet +Juliette +Karrie +Katharine +Katheryn +Katina +Katy +Kerrie +Lacey +Lashon +Lasonja +Latarsha +Latrice +Leeann +Lela +Lena +Liana +Liza +Lola +Lory +Lou +Luann +Lynnette +Marcelle +Marguerite +Marni +Marva +Marybeth +Melissia +Mellisa +Melodie +Nichole +Nilda +Noemi +Octavia +Oretha +Petra +Phaedra +Reba +Renea +Rhoda +Ronald +Rosanna +Scarlett +Shalonda +Shane +Shannan +Shellie +Susanna +Suzan +Sybil +Tabetha +Tamie +Tereasa +Teresita +Teressa +Terrell +Tessa +Therese +Thresa +Tony +Tosha +Towanna +Twanda +Violet +Willa +Lisa +Kimberly +Michelle +Jennifer +Angela +Tammy +Melissa +Mary +Laura +Karen +Tracy +Stephanie +Pamela +Elizabeth +Cynthia +Kelly +Patricia +Amy +Susan +Sandra +Julie +Donna +Shannon +Deborah +Christine +Teresa +Tina +Sharon +Lori +Wendy +Dawn +Barbara +Rebecca +Linda +Rhonda +Heather +Christina +Tonya +Cheryl +Michele +Brenda +Robin +Theresa +Debra +Denise +Andrea +Catherine +Nicole +Nancy +Carol +Sherry +Jacqueline +Leslie +April +Stacey +Maria +Paula +Regina +Carolyn +Sheila +Dana +Katherine +Valerie +Stacy +Tracey +Kathleen +Monica +Sabrina +Suzanne +Victoria +Yolanda +Melinda +Carla +Kathy +Sherri +Melanie +Kim +Rachel +Cindy +Margaret +Tanya +Janet +Laurie +Wanda +Gina +Diana +Terri +Ann +Julia +Tamara +Traci +Sarah +Holly +Kathryn +Sonya +Cassandra +Tara +Connie +Samantha +Deanna +Jill +Bonnie +Anita +Renee +Felicia +Virginia +Alicia +Diane +Janice +Anna +Carrie +Martha +Sheri +Veronica +Vicki +Annette +Natalie +Beth +Katrina +Tammie +Charlotte +Vanessa +Amanda +Beverly +Kellie +Jodi +Joyce +Frances +Cathy +Kristin +Shawn +Anne +Christy +Heidi +Betty +Shirley +Tiffany +Toni +Dorothy +Kelli +Crystal +Darlene +Gloria +Debbie +Yvonne +Carmen +Charlene +Penny +Alice +Helen +Peggy +Tricia +Kristen +Robyn +Judy +Sheryl +Sylvia +Belinda +Lynn +Shelly +Yvette +Audrey +Trina +Jessica +Joy +Allison +Erika +Shelia +Erin +Jamie +Kristina +Marie +Danielle +Erica +Sara +Vickie +Dina +Latonya +Rita +Gwendolyn +Ruth +Candace +Leigh +Tami +Caroline +Glenda +Kara +Loretta +Evelyn +Kimberley +Priscilla +Sonia +Elaine +Kristine +Sonja +Tangela +Tonia +Jacquelyn +Marilyn +Jean +Shelley +Juanita +Judith +Kelley +Melody +Ronda +Terry +Marlene +Colleen +Jackie +Lora +Sandy +Tabitha +Ana +Bobbie +Kristi +Lara +Leah +Rosa +Tracie +Ginger +Karla +Kerry +Rose +Angelia +Bridget +Cheri +Deana +Lillian +Marsha +Ashley +Joanna +Angie +Lauren +Roberta +Staci +Adrienne +Dena +Edith +Jeanette +Jo +Sherrie +Vivian +Alisa +Becky +Candy +Daphne +Doris +Ellen +Emily +Eva +Lorrie +Lynda +Stacie +Iris +Jeanne +Joan +Joann +Lourdes +Monique +Phyllis +Sophia +Alison +Cherie +Hope +Kerri +Marcia +Sally +Cristina +Dianna +Jane +Paige +Valarie +Aimee +Angel +Annie +Chandra +Constance +Joanne +Lorraine +Rachael +Shari +Tammi +Vicky +Lee +Maureen +Norma +Serena +Shana +Christie +Marla +Nina +Claudia +Gail +Lashawn +Lorie +Elena +Irene +Jody +Lucinda +Meredith +Misty +Candice +Laurel +Lesley +Miriam +Tabatha +Tania +Teri +Antoinette +Audra +Beatrice +Eileen +Roxanne +Trisha +Arlene +Bridgett +Bridgette +Jeannie +Louise +Natasha +Raquel +Ruby +Desiree +Kristy +Ramona +Angelique +Beatriz +Dianne +Gretchen +Jenny +Kendra +Keri +Lawanda +Marlo +Patrice +Paulette +Sue +Amber +Billie +Elisa +Kari +Kirsten +Krista +Marjorie +Patty +Shawna +Susie +Anissa +Bernadette +Cara +Christi +Dionne +Felecia +Jana +Jenifer +June +Lana +Lisette +Molly +Rosalind +Sebrina +Willie +Darla +Debora +Eleanor +Faith +Gladys +Katie +Lynette +Michael +Nichole +Rochelle +Selena +Alexandra +Angelina +Carole +Cecilia +Jan +Jodie +Karin +Latonia +Lucy +Lydia +Margarita +Mindy +Rosemary +Silvia +Sondra +Valencia +Vera +Alina +Bethany +Casandra +Clara +Emma +Janette +Katharine +Lynne +Mia +Mildred +Mona +Rachelle +Shanna +Terrie +Tonja +Adriana +Deena +Deirdre +Edna +Ericka +Eugenia +Ingrid +Ivette +Jeri +Jerri +Kimberlee +Kristie +Marcy +Olga +Rene +Tamatha +Tia +Wendi +Amelia +Bertha +Chris +Coretta +Courtney +Delores +Georgia +Jeanine +Josephine +Lena +Madeline +Margie +Marianne +Stefanie +Susanne +Suzette +Ursula +Bobbi +Bonita +Chiquita +Deidra +Deidre +Elisabeth +Geraldine +Hilary +Ida +Janie +Janine +Jeannette +Jessie +Latasha +Lauri +Lissette +Maggie +Rena +Rosalyn +Shauna +Tamela +Tamra +Tasha +Aretha +Brooke +Camille +Cathleen +Celeste +Dara +Dora +Esther +Gabrielle +Grace +Isabel +Jennie +Juliet +Ladonna +Latanya +Mercedes +Myra +Naomi +Nikki +Nora +Adrian +Claire +Dania +Deann +Gena +Joni +Lenora +Lesa +Lillie +Lorna +Lynnette +Malinda +Marci +Melisa +Mellissa +Noelle +Rebekah +Saundra +Sharonda +Sharron +Shelby +Bernice +Brandi +Carey +Caridad +Catrina +Claudine +Dee +Doreen +Ella +Ethel +Geneva +Gwen +James +John +Julianne +Kay +Keisha +Latricia +Lucretia +Marian +Marion +Marisol +Missy +Pamala +Patti +Pauline +Penelope +Robert +Tamera +Tawana +Teresita +Tisha +Valeria +Wilma +Alana +Alma +Annmarie +Avis +Charity +Clarissa +Danita +Eunice +Faye +Florence +Helena +Hilda +Irma +Ivy +Jocelyn +Karyn +Lea +Lorri +Malissa +Marcella +Margo +Marni +Marva +Mayra +Megan +Nadine +Renita +Sandi +Shannan +Sheree +Shonda +Stacia +Tarsha +Twyla +Abby +Adrianne +Aileen +Alisha +Althea +Anastasia +Brandy +Christa +Daisy +Deanne +Deloris +Edwina +Ernestine +Frankie +Gayle +Ina +Johnnie +Kenya +Lanette +Letitia +Lizette +Lolita +Marcie +Mari +Maritza +Marnie +Maryann +Mellisa +Nanette +Patsy +Rosetta +Thelma +Valorie +Vikki +Whitney +Abigail +Ada +Alecia +Alissa +Amie +Betsy +Buffy +Carolina +Cecelia +Charlette +Chelsea +Christal +Dale +Danna +David +Dedra +Demetria +Dona +Elsa +Francine +Georgette +Harriet +Hazel +Hillary +Jacquline +Jami +Janis +Johanna +Lashon +Latrice +Leanne +Leona +Libby +Liza +Lois +Mindi +Miranda +Myrna +Olivia +Pam +Richelle +Robbie +Rosalinda +Selina +Shanon +Shawanda +Simone +Tamika +Tracee +Tresa +William +Windy +Yolonda +Zandra +Antionette +Benita +Bessie +Camilla +Candi +Carlene +Caryn +Casey +Cornelia +Dawna +Debrah +Denice +Dixie +Geri +Jaime +Janel +Janelle +Joelle +Josette +Joycelyn +Juli +Juliette +Kandi +Kimberely +Lashanda +Latosha +Leann +Leila +Leticia +Lidia +Lola +Lula +Luz +Mandy +Mara +Mattie +Melodie +Michell +Millicent +Mimi +Mitzi +Patrica +Patrina +Pennie +Rae +Rosemarie +Rosie +Ruthie +Sallie +Sebrena +Shane +Shani +Sharlene +Shawanna +Starla +Stella +Stephaine +Stephenie +Tawanna +Teressa +Trudy +Twila +Verna +Vonda +Adina +Alexandria +Alycia +Andria +Angella +Anglea +Annemarie +Anthony +Antonia +Athena +Aundrea +Caren +Cary +Charisse +Charles +Cherry +Cristy +Danette +Darby +Darcy +Dayna +Delia +Dione +Dolores +Dominique +Donald +Dorothea +Elsie +Evette +Genevieve +Georgianna +Gia +Gilda +Giselle +Greta +Hattie +Helene +Ileana +Ilene +Inga +Ivonne +Janeen +Jeannine +Jena +Joetta +Kathrine +Kimberli +Krystal +Laronda +Lashonda +Laticia +Latrina +Lenore +Linette +Lonnie +Lory +Lottie +Lou +Maura +Maxine +Meg +Melba +Melony +Mercy +Misti +Nichelle +Noel +Petrina +Phoebe +Portia +Randi +Retha +Romona +Ronna +Rosanna +Sabrena +Serina +Shiela +Susana +Sybil +Tangie +Tess +Tisa +Trena +Trish +Twanda +Vernita +Yolando +Yulonda +Adriane +Agnes +Alberta +Allyson +Alyson +Andra +Angelita +Arnita +Ava +Barbra +Bettina +Bobby +Bonny +Brenna +Brigitte +Calandra +Candance +Cari +Catharine +Charlie +Christopher +Cinnamon +Colette +Collette +Corrina +Cory +Della +Dinah +Donya +Eliza +Ena +Evangeline +Eve +Flora +Harriett +Henrietta +Joseph +Juliana +Karey +Kasandra +Kaye +Kayla +Kecia +Kenneth +Kevin +Kimberlie +Kimmy +Kris +Kristal +Kristyn +Larae +Lavetta +Leeann +Letha +Loraine +Lorene +Magaly +Mamie +Marguerite +Martina +Marty +Mechelle +Meri +Merrilee +Merry +Michaela +Mollie +Nannette +Niki +Odessa +Pearl +Regena +Rhea +Sadie +Sandie +Sarita +Shanda +Sharman +Sherria +Shondra +Stephany +Susanna +Suzan +Sydney +Tawanda +Thea +Therese +Thomasina +Tish +Tori +Treva +Viola +Violet +Wendie +Jennifer +Kimberly +Lisa +Michelle +Angela +Melissa +Tammy +Mary +Tracy +Stephanie +Amy +Elizabeth +Patricia +Karen +Pamela +Shannon +Dawn +Laura +Julie +Cynthia +Susan +Tina +Kelly +Christine +Heather +Lori +Wendy +Donna +Sandra +Teresa +Deborah +Sharon +Barbara +Rebecca +Tonya +Michele +Christina +Nicole +Robin +Cheryl +Rhonda +Sabrina +Linda +Brenda +Andrea +Theresa +Debra +Denise +Stacey +Stacy +Nancy +Sherry +April +Jacqueline +Maria +Tara +Tracey +Paula +Catherine +Katherine +Leslie +Dana +Monica +Carolyn +Regina +Carla +Carol +Tanya +Tiffany +Victoria +Kathleen +Yolanda +Cindy +Kathy +Amanda +Holly +Rachel +Traci +Gina +Jill +Alicia +Wanda +Carrie +Melanie +Deanna +Tamara +Felicia +Sheila +Margaret +Cassandra +Kim +Valerie +Diana +Kathryn +Melinda +Renee +Katrina +Suzanne +Ann +Allison +Laurie +Sarah +Sheri +Sonya +Sherri +Anita +Terri +Janet +Jessica +Kelli +Samantha +Vicki +Diane +Vanessa +Virginia +Beverly +Janice +Connie +Crystal +Tammie +Erin +Christy +Veronica +Dorothy +Bonnie +Kristin +Julia +Beth +Anna +Kristina +Cathy +Debbie +Annette +Erika +Lynn +Shawn +Charlotte +Joyce +Natalie +Jodi +Danielle +Gloria +Heidi +Kristen +Darlene +Joy +Martha +Tracie +Sylvia +Toni +Anne +Carmen +Frances +Shelley +Shirley +Tricia +Jamie +Betty +Erica +Gwendolyn +Kristi +Trina +Candace +Yvonne +Peggy +Shelly +Charlene +Jeanette +Penny +Sheryl +Stacie +Kellie +Melody +Kimberley +Leigh +Sonia +Sonja +Helen +Marie +Vickie +Becky +Colleen +Dena +Robyn +Kristine +Alice +Cheri +Evelyn +Kelley +Krista +Ruth +Yvette +Ana +Alison +Belinda +Dina +Jacquelyn +Tonia +Ashley +Loretta +Marsha +Meredith +Sara +Kristie +Vivian +Angel +Audrey +Emily +Jackie +Latonya +Priscilla +Patrice +Ronda +Bobbie +Bridget +Kerry +Lara +Marilyn +Angelia +Jean +Kendra +Tangela +Terry +Deana +Ginger +Monique +Sandy +Tabitha +Aimee +Constance +Karla +Lourdes +Rose +Staci +Tami +Elaine +Jody +Judy +Leah +Shelia +Adrienne +Caroline +Jeannie +Joanne +Kara +Kristy +Marcia +Natasha +Cristina +Hope +Jeanne +Lashawn +Lorraine +Wendi +Angelique +Bridgette +Ellen +Kerri +Phyllis +Rita +Alisa +Antoinette +Doris +Judith +Billie +Christa +Jenny +Norma +Angie +Candy +Dianne +Iris +Joanna +Lora +Claudia +Jane +Joann +Juanita +Paulette +Rosa +Daphne +Sherrie +Eva +Jo +Lauren +Maureen +Sophia +Amber +Christie +Lee +Marlene +Shari +Tammi +Brandy +Chandra +Glenda +Joan +Keri +Laurel +Lawanda +Lorie +Ruby +Shana +Stefanie +Vicky +Arlene +Gretchen +Misty +Ramona +Roberta +Rochelle +Suzette +Jenifer +Kari +Lynda +Nina +Shawna +Valarie +Angelina +Anissa +Candice +Cecilia +Ericka +Janie +Lesley +Raquel +Sally +Teri +Cherie +Desiree +Dionne +Gail +Ingrid +Jana +Karin +Lydia +Marla +Rachael +Shanna +Susana +Annie +Audra +Dora +Sondra +Tabatha +Tasha +Vera +Dianna +Eileen +Grace +Isabel +Latonia +Lillian +Lissette +Lucinda +Lynette +Marcy +Nichole +Paige +Rachelle +Sebrina +Alexandra +Brooke +Jodie +Marjorie +Megan +Mildred +Molly +Nikki +Rosemary +Bobbi +Bridgett +Camille +Celeste +Edna +Jeannette +June +Katie +Kirsten +Melisa +Miriam +Nadine +Beatrice +Deidre +Edith +Elena +Ivette +Lenora +Marion +Marlo +Serena +Shonda +Susie +Trisha +Carole +Caryn +Emma +Jeanine +Jeri +Latanya +Lena +Olga +Selena +Tania +Amie +Bernadette +Deena +Elisa +Faith +Keisha +Latasha +Leticia +Marianne +Michael +Sandi +Aretha +Beatriz +Casey +David +Delores +Esther +Irene +Janine +Jeannine +Lashonda +Lorrie +Malissa +Marcella +Myra +Nanette +Rebekah +Rene +Rosalind +Rosalyn +Sharonda +Shauna +Tamatha +Tamela +Aileen +Alina +Carey +Christi +Clara +Courtney +Debora +Doreen +Elisabeth +Florence +Geraldine +Hillary +Jessie +Lana +Lea +Leanne +Lisette +Margie +Mercedes +Mindy +Vonda +Buffy +Catrina +Dara +Darcy +Eleanor +Eugenia +Felecia +Gayle +Johanna +Krystal +Marci +Margarita +Marnie +Missy +Patti +Randi +Roxanne +Shelby +Teresita +Tia +Tisha +Tonja +Valencia +Windy +Abigail +Adriana +Amelia +Annmarie +Cara +Casandra +Cassie +Chanda +Danette +Darla +Deanne +Deloris +James +Janette +Jeanie +Jerri +Josephine +Juliet +Leann +Lynne +Madeline +Marcie +Marisol +Maryann +Olivia +Thelma +Trena +Whitney +Bertha +Bethany +Brandi +Candi +Coretta +Daisy +Deidra +Georgina +Gladys +Greta +Juliette +Kay +Kenya +Kimberlee +Latrice +Lizbeth +Louise +Michell +Naomi +Octavia +Rena +Silvia +Terra +Tobi +Vikki +Ada +Adrian +Adrianne +Alexis +Anastasia +Ava +Betsy +Cathleen +Cecelia +Claudine +Gabrielle +Harriet +Ileana +India +Jami +Kerrie +Lois +Maritza +Mia +Patsy +Pauline +Polly +Precious +Robert +Rosetta +Shanda +Sharron +Shellie +Sue +Terrie +Twanda +Ursula +Valeria +Antionette +Benita +Bernice +Caridad +Celia +Charity +Christian +Christopher +Colette +Deirdre +Dona +Francine +Frankie +Inga +Janna +Jeana +Jocelyn +Josette +Katharine +Kecia +Lillie +Lorri +Lory +Marva +Mercy +Mona +Noelle +Nora +Pamala +Penelope +Selina +Shanon +Stacia +Tamika +Tarsha +Teressa +Adriane +Alisha +Althea +Alyssa +Ami +Bobby +Dedra +Dolores +Dori +Elissa +Ethel +Gena +Genevieve +Hazel +Ida +Irma +Jeanna +Jennie +Karrie +Kesha +Letitia +Lucretia +Lucy +Luisa +Lynnette +Maggie +Malinda +Maxine +Mechelle +Mellissa +Misti +Mollie +Renae +Robbie +Shannan +Tamra +Tawanda +Tomeka +Valorie +Yolonda +Adria +Alana +Alecia +Alexa +Alfreda +Alissa +Bonita +Cari +Charmaine +Chelsea +Chris +Chrystal +Claire +Dania +Darby +Della +Demetria +Edwina +Ella +Erma +Ernestine +Eve +Evette +Felisha +Georgette +Georgia +Helena +Jan +Janel +Janelle +Johnnie +Jolie +Juli +Kathrine +Kimberlie +Ladonna +Lashanda +Latina +Lauri +Leona +Leslee +Liza +Lola +Lucille +Margo +Maribel +Merry +Pam +Patrica +Serina +Shani +Shiela +Shonna +Spring +Susanne +Tawana +Tosha +Velma +William +Abby +Alexandria +Allyson +Alyson +Andria +Angelica +Antonia +Bettina +Brigitte +Callie +Cary +Charisse +Charles +Cherry +Cristal +Cristin +Dale +Dayna +Dee +Deedee +Deedra +Delia +Dixie +Dorothea +Esmeralda +Eunice +Faye +Flora +Fonda +Harriett +Hilary +Hilda +Holli +Ivonne +Ivy +Jade +Janeen +John +Kassandra +Lanette +Larhonda +Larissa +Lashon +Latarsha +Latisha +Latosha +Latricia +Lavette +Lesli +Luz +Magaly +Mamie +Mandy +Marian +Martina +Nathalie +Patty +Rebeca +Renita +Rosalinda +Rosie +Roxann +Ruthie +Sabrena +Saundra +Shalonda +Shantel +Sharlene +Sheree +Tabetha +Tarra +Tessa +Tiffani +Tonda +Trinette +Tyra +Willette +Aliza +Angeline +Bessie +Blanca +Brian +Bronwyn +Caren +Carissa +Carolina +Cathryn +Charissa +Charla +Chiquita +Christal +Clarissa +Consuela +Cora +Delilah +Denice +Donya +Earnestine +Elsie +Fannie +Felita +Geneva +Gerri +Henrietta +Jada +Jaime +Janene +Janis +Jannette +Jasmine +Joseph +Josie +Juana +Julissa +Justine +Kandy +Karyn +Kate +Kenyatta +Kevin +Krysta +Laronda +Lashunda +Lasonya +Latonja +Lawanna +Leila +Lenore +Lesa +Liz +Lizette +Machelle +Marguerite +Marni +Mattie +Maya +Mayra +Millie +Miranda +Monika +Nellie +Nilda +Noel +Phoebe +Portia +Rae +Regena +Rhoda +Richard +Rona +Rosanna +Rosita +Roslyn +Shaunda +Shawanda +Shena +Sheronda +Simone +Stephaine +Summer +Suzanna +Tamala +Tawanna +Tawnya +Thomasina +Tommie +Tracee +Treena +Trudy +Twyla +Zandra +Agnes +Alberta +Annemarie +Anthony +Buffie +Calandra +Carlene +Cathrine +Catrice +Celina +Celinda +Cher +Cherly +Cherri +Corinne +Cristy +Dallas +Deann +Demetra +Dominique +Edie +Elise +Elsa +Elyse +Eric +Fawn +Freda +Gwen +Inez +Jacklyn +Jacquelynn +Jeniffer +Joelle +Joi +Jolene +Joni +Joycelyn +Juliana +Juliane +Julianne +Kandi +Karey +Kasey +Kathie +Kelle +Kenneth +Kimberely +Kris +Lacey +Larry +Lashan +Laticia +Latoya +Latrina +Lauretta +Lavinia +Lavonda +Leanna +Leatrice +Leeann +Leisa +Letha +Lilly +Lisbeth +Loren +Lorretta +Luann +Lucia +Lula +Marisa +Marta +Maryjo +Mayte +Meghan +Melaine +Melba +Melissia +Mellisa +Merri +Milagros +Minnie +Nicola +Nicolle +Odalys +Penni +Regenia +Rosalie +Sabina +Sallie +Sandee +Scott +Shandra +Shane +Shanta +Sharmon +Shay +Shelli +Starla +Stefani +Stella +Synthia +Tamera +Terrilyn +Tess +Therese +Tiffney +Timothy +Tisa +Toby +Tona +Tony +Tori +Toya +Tresa +Tressa +Treva +Twila +Viola +Wende +Willie +Wilma +Jennifer +Kimberly +Michelle +Lisa +Angela +Melissa +Tammy +Amy +Mary +Tracy +Shannon +Stephanie +Heather +Cynthia +Karen +Elizabeth +Patricia +Tina +Dawn +Laura +Pamela +Susan +Julie +Christine +Kelly +Christina +Lori +Wendy +Teresa +Rebecca +Deborah +Donna +Sandra +Tonya +Barbara +Stacy +April +Sharon +Nicole +Rhonda +Tiffany +Linda +Tara +Michele +Maria +Dana +Andrea +Stacey +Robin +Brenda +Cheryl +Denise +Sherry +Monica +Catherine +Melanie +Theresa +Debra +Yolanda +Sabrina +Tanya +Leslie +Victoria +Jacqueline +Rachel +Nancy +Cindy +Paula +Katrina +Sheila +Jessica +Alicia +Regina +Katherine +Margaret +Carrie +Suzanne +Melinda +Tracey +Tamara +Felicia +Erica +Holly +Carol +Sonya +Amanda +Carla +Gina +Sarah +Christy +Carolyn +Renee +Diana +Sherri +Kathleen +Wanda +Valerie +Vanessa +Deanna +Kathy +Kim +Kristin +Janet +Allison +Anna +Samantha +Ann +Cassandra +Diane +Jill +Terri +Kathryn +Kristina +Traci +Heidi +Connie +Erin +Charlene +Erika +Laurie +Anita +Bonnie +Veronica +Tracie +Kristen +Charlotte +Natalie +Crystal +Dorothy +Tammie +Julia +Jodi +Shawn +Virginia +Debbie +Sheri +Belinda +Janice +Cathy +Darlene +Latonya +Annette +Natasha +Danielle +Jamie +Martha +Anne +Beverly +Carmen +Betty +Ginger +Kristi +Yvonne +Beth +Shelley +Kristine +Sara +Stacie +Sylvia +Tricia +Yvette +Kristy +Penny +Shelly +Peggy +Vicki +Gloria +Jenny +Alison +Sonja +Trina +Candace +Hope +Shirley +Toni +Kelli +Bridget +Leigh +Judy +Alice +Angel +Gwendolyn +Helen +Joanna +Joyce +Krista +Ashley +Jean +Joy +Kelley +Meredith +Amber +Becky +Cristina +Ana +Frances +Monique +Latasha +Robyn +Rose +Shelia +Dena +Lynn +Priscilla +Tonia +Aimee +Angelia +Audrey +Joann +Kendra +Kimberley +Marcia +Ruth +Sheryl +Caroline +Kerri +Loretta +Vivian +Jacquelyn +Marie +Colleen +Tangela +Christa +Emily +Gail +Marsha +Misty +Sandy +Jeanette +Jeanne +Kellie +Kerry +Marla +Nichole +Tabitha +Candice +Marilyn +Melody +Tami +Bobbie +Evelyn +Judith +Rosa +Christie +Dina +Esther +Glenda +Sonia +Tasha +Teri +Angie +Lashawn +Vickie +Adrienne +Daphne +Rita +Alisa +Kristie +Lora +Raquel +Terry +Marcy +Patrice +Doris +Eva +Juanita +Lara +Lee +Tabatha +Billie +Jenifer +Roberta +Ronda +Sophia +Cheri +Dionne +Ericka +Kara +Selena +Antoinette +Chandra +Jackie +Joan +Leah +Lourdes +Melisa +Shari +Sherrie +Elaine +Joanne +Lawanda +Marlene +Shawna +Alisha +Anissa +Bridgett +Celeste +Deana +Lorie +Nikki +Cherie +Jody +Karla +Lynda +Lynette +Nina +Paige +Staci +Tammi +Claudia +Ellen +Jennie +Keisha +Lillian +Marjorie +Rachael +Tarsha +Tisha +Brooke +Dianna +Elena +Jana +Jane +Jo +Katie +Lorraine +Lydia +Norma +Serena +Stefanie +Wendi +Angelique +Audra +Constance +Elisa +Georgia +Jeannie +Kari +Lesley +Ruby +Shelby +Arlene +Desiree +Ivette +Latanya +Lissette +Rosemary +Sally +Bridgette +Camille +Cecilia +Keri +Lana +Lashonda +Lauren +Mia +Beatriz +Betsy +Candy +Felecia +Gretchen +Iris +Jodie +Karin +Kirsten +Naomi +Ramona +Shana +Christi +Miriam +Rebekah +Trisha +Alexandra +Faith +Kimberlee +Latrice +Marci +Paulette +Tania +Adrian +Bobbi +Brandy +Cara +Daisy +Edith +Emma +Irene +Jeannette +Jeri +Latosha +Lena +Marcie +Nora +Octavia +Patty +Phyllis +Selina +Suzette +Vicky +Brandi +Darcy +Darla +Rochelle +Susanne +Tawanda +Terrie +Annie +Deena +Dora +Eileen +Latonia +Lucretia +Marlo +Maureen +Megan +Mindy +Rachelle +Amelia +Beatrice +Bernadette +Bethany +Bonita +Courtney +Dara +Dianne +Gena +Grace +Isabel +Kerrie +Krystal +Latricia +Lorrie +Louise +Margarita +Patti +Pauline +Shanna +Shauna +Thelma +Amie +Catrina +Deirdre +Demetria +Ella +Janie +Jeannine +June +Lenora +Leticia +Lillie +Lucinda +Maggie +Mona +Robert +Sue +Tia +Valarie +Windy +Yolonda +Adriana +Angelina +Carole +Caryn +Cathleen +Chanda +Florence +Gabrielle +Hollie +Janette +Josephine +Josie +Kesha +Ladonna +Lois +Lorri +Marianne +Marion +Maryann +Mercedes +Michael +Myra +Olga +Rosalind +Roxanne +Susana +Susie +Tawanna +Terra +Tonja +Ursula +Valencia +William +Alecia +Alina +Bernice +Blanca +Cecelia +Deidra +Edna +Gayle +Ingrid +Janine +Karyn +Larissa +Marcella +Margie +Marisa +Marnie +Penelope +Sondra +Tiffani +Alma +Buffy +Carey +Cari +Caridad +Carolina +Eleanor +Jan +Johanna +Juliet +Lashanda +Lisette +Lynne +Marisol +Monika +Noelle +Shannan +Sharonda +Stacia +Vera +Aileen +Alexis +Allyson +Angelica +Aretha +Ava +Benita +Cindi +Danette +Davina +Deidre +Dolores +Ethel +Eugenia +Eve +Francine +Geraldine +Ileana +James +Jeanine +Latisha +Letitia +Marta +Mellisa +Rosemarie +Roxana +Sharron +Shonda +Twana +Abigail +Alyssa +Carie +Casandra +Cristy +Della +Doreen +Dori +Elsa +Greta +Hilda +Ida +Janelle +Johnnie +Kay +Kecia +Kimberli +Lakisha +Lauri +Madeline +Margo +Mellissa +Michell +Mildred +Nadine +Olivia +Pamala +Patsy +Rene +Rosalyn +Serina +Simone +Tamela +Tawana +Tera +Abby +Alysia +Angelita +Anthony +Brigitte +Carissa +Cassie +Cherry +Chiquita +Chrystal +Clara +Claudine +Eric +Felisa +Gayla +Gwen +India +Inez +Irma +Ivy +Janna +Jessie +Karrie +Kasey +Kenya +Latrina +Lea +Leanne +Malissa +Mayra +Molly +Niki +Patrica +Rena +Richard +Richelle +Robbin +Sandi +Sebrina +Sharlene +Shellie +Susannah +Tamala +Tamra +Tosha +Trena +Twanda +Velma +Verna +Viola +Whitney +Willie +Yesenia +Zandra +Angeline +Anglea +Anjanette +Antionette +Carletta +Celena +Celia +Chantel +Charisse +Charity +Christian +Christin +Christopher +Consuela +Cora +Dawna +Deanne +Debora +Dee +Elise +Elissa +Flora +Genevieve +Georgina +Helena +Hilary +Holley +Ivonne +Janell +Janis +Jason +Jeana +Jeanie +Jerri +Jolie +Juliette +Kimberely +Kristal +Larhonda +Lashawnda +Latarsha +Laurel +Lorena +Lorinda +Lynnette +Mara +Marian +Maribel +Meghan +Milissa +Miranda +Mitzi +Pam +Princess +Renae +Rolanda +Shanda +Shani +Shawana +Shawanda +Shelli +Silvia +Tamatha +Therese +Tiffanie +Towanda +Trista +Venus +Ada +Alexandria +Alfreda +Ali +Althea +Alyson +Ami +Anastasia +Athena +Autumn +Barbra +Bernadine +Brigette +Brittany +Casey +Chanel +Chantal +Chantelle +Charles +Cher +Chris +Claire +Clarissa +Consuelo +Coretta +Corrie +Crista +Debby +Delia +Denice +Dona +Dorene +Dorothea +Edwina +Estela +Eunice +Frankie +Geneva +Gladys +Harriet +Hazel +Hillary +Ines +Jacquline +Jena +Jenna +Jewell +Jocelyn +Juli +Julissa +Kandi +Kendall +Kisha +Krysta +Lashaun +Lashon +Lasonya +Latoya +Lucia +Mandy +Marguerite +Maritza +Mattie +Mechelle +Melodie +Melonie +Merry +Millie +Missy +Nanette +Natacha +Nichelle +Precious +Rebeca +Rosie +Salena +Salina +Saundra +Shalanda +Shawnda +Shayla +Sheena +Sheronda +Shiela +Tanisha +Tessa +Tonda +Violet +Vonda +Adria +Adriane +Adrianna +Adrianne +Agnes +Alana +Alberta +Alena +Alissa +Annmarie +Candida +Caprice +Caren +Carri +Cary +Charla +Christal +Coleen +Colette +David +Dawne +Dedra +Elvira +Evette +Fawn +Francesca +Georgette +Ginny +Hattie +Henrietta +Holli +Jackeline +Jami +Jeanna +Jerry +John +Karma +Katharine +Kathi +Kathie +Keli +Lasandra +Laverne +Leann +Leeann +Leila +Leona +Liza +Lorna +Lucy +Luz +Malinda +Marva +Michaela +Milagros +Nicolette +Nicolle +Nikita +Patrina +Phaedra +Polly +Prudence +Racheal +Rae +Randi +Rhoda +Robbie +Sabrena +Sallie +Saprina +Shea +Stephaine +Stephenie +Susanna +Teresita +Tresa +Tressa +Twyla +Tyra +Valeria +Vikki +Aaron +Angella +Antonette +Antonia +Bessie +Bonny +Calandra +Carmel +Carroll +Charlette +Cherri +Christiane +Cori +Corina +Corinne +Cory +Dacia +Danita +Danya +Deedee +Deedra +Delicia +Delilah +Deloris +Delphine +Demetrice +Denita +Diedra +Ebony +Elisabeth +Elisha +Ester +Evangeline +Fay +Haley +Inga +Inger +Iva +Janene +Jannette +Jayne +Jeanene +Jeanetta +Joelle +Johnetta +Joni +Jonna +Josette +Juana +Julianne +Justine +Karie +Karina +Katheryn +Kathrine +Katrice +Kelsey +Kris +Lacheryl +Lajuana +Lakesha +Lani +Larina +Laronda +Latashia +Latoshia +Latrell +Latunya +Lawanna +Lesa +Lilia +Lina +Lola +Lolita +Loraine +Lou +Lucille +Lula +Madelyn +Marina +Marlena +Marquita +Martina +Maura +Maya +Meridith +Merri +Mollie +Nannette +Nerissa +Noel +Patience +Pennie +Phoebe +Portia +Pricilla +Raina +Rana +Reva +Rhea +Rosanne +Roseann +Rosetta +Scarlett +Shalonda +Shandra +Shane +Shanita +Shanon +Sharri +Shawnee +Shawnna +Shay +Shonna +Shontel +Starla +Starr +Stephany +Summer +Sunday +Suzanna +Tajuana +Tameka +Tana +Tangi +Tari +Tena +Teressa +Tijuana +Tori +Toya +Tracee +Trellany +Twalla +Tywanda +Valentina +Vannessa +Wenona +Wilma +Yoland +Jennifer +Kimberly +Michelle +Lisa +Angela +Melissa +Stephanie +Amy +Tammy +Heather +Mary +Elizabeth +Shannon +Christina +Dawn +Tracy +Tina +Cynthia +Nicole +Julie +Rebecca +Karen +Laura +Patricia +Kelly +Christine +Susan +Pamela +Tonya +Teresa +Wendy +Katina +Sandra +Andrea +Lori +April +Donna +Barbara +Maria +Dana +Melanie +Tara +Stacy +Deborah +Sharon +Tanya +Tiffany +Stacey +Cheryl +Monica +Rhonda +Linda +Michele +Denise +Brenda +Sherry +Debra +Robin +Katrina +Jessica +Catherine +Rachel +Theresa +Yolanda +Amanda +Leslie +Victoria +Nancy +Holly +Jacqueline +Alicia +Carrie +Sabrina +Katherine +Felicia +Paula +Melinda +Regina +Crystal +Carolyn +Kristin +Samantha +Sonya +Tamara +Christy +Carol +Carla +Kathryn +Natasha +Tracey +Sarah +Cassandra +Erika +Gina +Kathleen +Sheila +Terri +Allison +Veronica +Cindy +Janet +Erica +Kristina +Laurie +Heidi +Margaret +Jill +Renee +Traci +Angel +Jenny +Kathy +Diana +Valerie +Catina +Deanna +Sherri +Suzanne +Erin +Wanda +Anna +Diane +Anita +Misty +Danielle +Kelli +Latonya +Julia +Jamie +Jodi +Ann +Kim +Latasha +Vanessa +Virginia +Belinda +Beverly +Tammie +Dorothy +Monique +Sonja +Aimee +Charlotte +Shawn +Natalie +Hope +Kristi +Shelley +Sheri +Kristen +Yvette +Sara +Debbie +Shirley +Ana +Beth +Bridget +Evelyn +Gloria +Janice +Nichole +Shelly +Lynn +Sylvia +Ashley +Bonnie +Charlene +Darlene +Joy +Kristine +Cathy +Christie +Connie +Alison +Nikki +Annette +Frances +Martha +Tabitha +Tonia +Betty +Carmen +Emily +Tricia +Vicki +Kelley +Yvonne +Amber +Candace +Marie +Kimberley +Robyn +Jeanette +Joanna +Kristie +Tracie +Alice +Brandy +Kara +Adrienne +Gwendolyn +Kristy +Sonia +Toni +Trina +Brandi +Colleen +Krista +Meredith +Peggy +Stacie +Vickie +Anne +Marsha +Penny +Tami +Tangela +Audrey +Christi +Rosa +Candice +Cherie +Christa +Helen +Joyce +Sheryl +Billie +Bobbie +Ginger +Jeannie +Lara +Leigh +Rose +Ruth +Kerry +Marilyn +Staci +Becky +Ericka +Gail +Shelby +Ivette +Kellie +Kendra +Tasha +Kerri +Teri +Eva +Jane +Judy +Loretta +Candy +Cheri +Jackie +Jean +Lashawn +Lawanda +Lynette +Melody +Shelia +Angelia +Desiree +Doris +Jacquelyn +Judith +Leah +Marlene +Vivian +Caroline +Dina +Elaine +Lillian +Molly +Shana +Shawna +Terry +Dena +Jody +Keisha +Keri +Tabatha +Audra +Cristina +Kari +Alexandra +Angelique +Chandra +Claudia +Ellen +Joann +Miriam +Tanisha +Chiquita +Constance +Glenda +Lauren +Marcia +Priscilla +Deana +Juanita +Karla +Lashonda +Lissette +Lora +Patrice +Rachael +Roberta +Arlene +Gretchen +Jodie +Norma +Trisha +Wendi +Yesenia +Angie +Bridgette +Ronda +Tania +Alisha +Faith +Irene +Jana +Kenya +Latanya +Leticia +Lorraine +Melisa +Ramona +Ruby +Sandy +Selena +Amelia +Annie +Bernadette +Catrina +Contina +Elisa +Grace +Jeanne +Joan +Katie +Lana +Lourdes +Lydia +Mindy +Nina +Sophia +Antoinette +Beatriz +Bobbi +Cecilia +Eileen +Elena +Esther +Hollie +Joanne +Karin +Latosha +Lucy +Megan +Raquel +Rita +Shari +Tammi +Tonja +James +Kirsten +Latisha +Lesley +Lorie +Mercedes +Phyllis +Serena +Tawana +Terra +Alisa +Bridgett +Courtney +Dianna +Felecia +Iris +Marla +Sherrie +Cara +Celeste +Charity +Consuelo +Deena +Dionne +Edith +Georgia +Jenifer +Jennie +Marcy +Octavia +Paige +Tawanda +Angelina +Carey +Ingrid +Jo +Kimberlee +Laurel +Louise +Marjorie +Rene +Sally +Valarie +Amie +Anissa +Brooke +Casey +Janette +Lee +Margarita +Michael +Robert +Roxanne +Sharonda +Stefanie +Tarsha +Brandie +Christian +Cristy +Demetria +Lashanda +Latonia +Latoya +Layla +Maribel +Marion +Nora +Pauline +Sondra +Tamika +Tera +Tisha +Ursula +Alexis +Alina +Angelica +Bernice +Betsy +Brigitte +Cassie +Dianne +Edna +Gena +Isabel +Ivy +Jeannette +Johanna +Josephine +Lisette +Marcella +Marci +Mona +Patty +Rochelle +Rosemary +Shalonda +Shanna +Tameka +Whitney +Windy +Angeline +Beatrice +Cathleen +Eugenia +India +Jenna +Krystal +Lena +Lillie +Lucretia +Lynda +Maggie +Niki +Olga +Racheal +Rachelle +Rena +Shonda +Suzette +Terrie +Vicky +Adriana +Alfreda +Alyson +Casandra +Clara +Daphne +Emma +Janie +Janine +Jerri +John +June +Kasey +Katharine +Ladonna +Latarsha +Latina +Leanne +Lorrie +Lucinda +Marian +Marisol +Maritza +Marta +Mildred +Miranda +Mitzi +Nikita +Olivia +Paulette +Rosalyn +Susana +Susanna +Tia +Valencia +Adrian +Alecia +Althea +Chantel +Charla +Chrystal +Clarissa +Colette +Crissy +Dara +Darcy +Darla +Dayna +Deidra +Felisha +Freda +Gabrielle +Ida +Katrena +Kerrie +Keysha +Lakeisha +Latricia +Leona +Letitia +Lois +Lucille +Lynne +Malinda +Malissa +Mara +Margie +Maureen +Maxine +Mia +Shanda +Shauna +Shellie +Sue +Summer +Suzanna +Tiffani +Vikki +Willie +Zandra +Alissa +Allyson +Ayanna +Benita +Bethany +Bonita +Camille +Camisha +Chanda +Cherry +Christopher +Cristi +Dee +Delores +Ebony +Elisabeth +Ethel +Felisa +Francesca +Geneva +Georgina +Jami +Kesha +Lakesha +Lakisha +Latashia +Latrice +Lea +Lenora +Liza +Lynnette +Madeline +Marianne +Marlo +Maryann +Minnie +Missy +Nadine +Nanette +Naomi +Patrica +Penelope +Rebekah +Richard +Rosalind +Shannan +Susanne +Tamra +Vera +Abigail +Adriane +Alana +Alberta +Alma +Antonia +Autumn +Bertha +Calandra +Caridad +Carole +Cecelia +Claire +Claudine +Consuela +Daisy +Deann +Dedra +Delia +Della +Eleanor +Gayle +Helena +Holli +Inga +Jeannine +Jeri +Jessie +Lorena +Lory +Mabel +Marina +Michell +Myra +Robbin +Rosalinda +Roslyn +Sebrina +Shane +Shanon +Shantel +Shea +Stephaine +Steven +Tamala +Teressa +Tessa +Tosha +Tracee +Tressa +Trista +Venus +Veronique +Aileen +Alyssa +Anastasia +Angelic +Angelita +Annemarie +Aretha +Blanca +Buffy +Cari +Carie +Carin +Chelsea +Cotina +Davina +Debora +Deidre +Deirdre +Dinah +Ella +Francine +Gayla +Georgette +Gwen +Harriet +Hillary +Janel +Janis +Janna +Jeanine +Jenni +Jocelyn +Josie +Juliet +Kevin +Kristal +Mamie +Marisa +Milissa +Pearl +Precious +Randi +Salena +Shandra +Shelli +Stella +Tanesha +Tatanisha +Teresita +Tesha +Tyra +Yolonda +Adina +Adria +Aida +Antionette +Ashlee +Ava +Bobby +Brittany +Cary +Christal +Cora +Corina +Corinne +Danita +David +Deanne +Esperanza +Eureka +Faye +Genevieve +Geri +Hannah +Hilda +Jan +Jeanie +Joelle +Johnnie +Joseph +Justine +Kami +Karrie +Katrice +Keena +Lamonica +Lasandra +Lashawnda +Lavonne +Leann +Lizette +Magaly +Marcie +Marguerite +Maya +Mayra +Mechelle +Melba +Melissia +Mellissa +Merry +Noel +Pam +Patti +Princess +Renita +Rosanna +Roxana +Sandi +Sasha +Shalanda +Sharron +Shawanda +Shenita +Silvia +Stephany +Susannah +Susie +Tawanna +Thelma +Timothy +Tonda +Tresa +Twanda +Adrianne +Alexandria +Ali +Ami +Andria +Anthony +Athena +Bettina +Billy +Brigette +Camilla +Candida +Caren +Carissa +Celena +Charmin +Chastity +Cher +Cori +Damaris +Darcie +Deedee +Deloris +Detra +Detrice +Dolores +Dora +Doreen +Doretha +Dori +Eliza +Elsa +Essie +Felica +Geraldine +Gladys +Greta +Ileana +Jacquline +Jada +Jade +Janell +Janelle +Jannette +Jeana +Jeanna +Jewel +Joellen +Juliana +Lashunda +Lasonya +Latrina +Leandra +Lela +Lolita +Loren +Lorene +Lucia +Mandy +Marissa +Marni +Melodie +Melonie +Melony +Natacha +Nichol +Nicola +Noelle +Ollie +Patrina +Pebbles +Petra +Rosemarie +Salina +Shanita +Shantell +Sharlene +Sheree +Sherie +Sheronda +Simona +Sofia +Stephenie +Suzan +Tamera +Tanja +Tarra +Tashara +Telisa +Thea +Twanna +Valorie +Viola +Yulanda +Ada +Aleshia +Andra +Anglea +Annmarie +Aurora +Callie +Caryn +Celia +Charles +Chasity +Chris +Christin +Coretta +Corey +Corie +Corinna +Crista +Dale +Delilah +Denna +Deon +Derrick +Devon +Donald +Dusty +Edie +Elizebeth +Eric +Eunice +Evette +Fatima +Florence +Francis +Frankie +Gabriela +Gerri +Gilda +Hayley +Iliana +Irma +Ivonne +Joey +Josette +Juli +Julianne +Karena +Karina +Karri +Karyn +Kate +Kateena +Kayla +Kecia +Kena +Kenyetta +Ketina +Kisha +Kyra +Lakeshia +Lashandra +Laticia +Latrica +Leesa +Lenore +Lily +Linette +Lorianne +Lorri +Luz +Madelyn +Margo +Marnie +Mendy +Mercy +Michaela +Milagros +Misti +Mollie +Monika +Morgan +Nellie +Nicki +Nickole +Reba +Rolanda +Rosetta +Ruthie +Samara +Saundra +Scarlett +Shani +Shanta +Shawnda +Shawnee +Shay +Shayna +Sheena +Shonna +Stacia +Tamatha +Tawnya +Therese +Tiffiny +Tijuana +Toya +Treva +Trudy +Twyla +Velma +Verna +Vonda +Yamile +Yulonda +Jennifer +Kimberly +Michelle +Melissa +Angela +Lisa +Amy +Stephanie +Heather +Christina +Rebecca +Mary +Tammy +Elizabeth +Shannon +Nicole +Tina +Dawn +Cynthia +Kelly +Julie +Patricia +Christine +Tracy +Wendy +April +Laura +Karen +Tonya +Susan +Lori +Andrea +Tiffany +Stacy +Pamela +Barbara +Tara +Michele +Monica +Sandra +Teresa +Stacey +Maria +Melanie +Donna +Tanya +Deborah +Denise +Katina +Sharon +Jessica +Robin +Catherine +Katrina +Alicia +Rachel +Amanda +Dana +Rhonda +Theresa +Carrie +Sherry +Linda +Tamara +Brenda +Holly +Melinda +Danielle +Kristen +Yolanda +Katherine +Cheryl +Crystal +Leslie +Christy +Erica +Kristina +Allison +Carol +Nancy +Sabrina +Natasha +Jacqueline +Debra +Gina +Regina +Diana +Brandy +Sarah +Victoria +Tracey +Renee +Felicia +Samantha +Kathryn +Kristin +Suzanne +Carla +Erika +Erin +Anna +Heidi +Veronica +Misty +Angel +Margaret +Sonya +Vanessa +Cindy +Valerie +Janet +Paula +Jill +Sheila +Latasha +Cassandra +Kathleen +Shelly +Deanna +Laurie +Shelley +Carolyn +Bonnie +Belinda +Virginia +Ann +Kathy +Kelli +Wanda +Emily +Jamie +Brandi +Joy +Terri +Diane +Latonya +Traci +Sherri +Carmen +Charlotte +Kerry +Kristi +Ashley +Kim +Sheri +Aimee +Bridget +Ana +Cathy +Jodi +Amber +Beverly +Joanna +Shawn +Gloria +Nichole +Dorothy +Jenny +Catina +Marie +Annette +Julia +Tasha +Connie +Alison +Beth +Nikki +Betty +Meredith +Shirley +Monique +Kerri +Melody +Natalie +Tammie +Cristina +Frances +Kristine +Penny +Yvonne +Kristie +Leah +Martha +Sylvia +Anita +Anne +Sonia +Tonia +Darlene +Kelley +Priscilla +Tricia +Vicki +Candace +Christie +Evelyn +Krista +Sara +Charlene +Janice +Marcia +Marsha +Selena +Helen +Kenya +Kimberley +Audrey +Ericka +Joyce +Kristy +Lynn +Sheryl +Tracie +Jeanette +Stacie +Kara +Robyn +Tangela +Billie +Chandra +Chiquita +Debbie +Loretta +Sonja +Gwendolyn +Toni +Colleen +Keri +Lauren +Peggy +Latoya +Yvette +Alice +Becky +Jean +Judy +Lashawn +Jody +Leigh +Rose +Adrienne +Cheri +Lorraine +Tabitha +Charity +Hope +Kendra +Lawanda +Lorie +Megan +Angelia +Christa +Elaine +Ginger +Keisha +Lissette +Rebekah +Rosa +Shelia +Bobbie +Celeste +Jacquelyn +Jenifer +Juanita +Karla +Marilyn +Roberta +Sherrie +Candice +Caroline +Joanne +Lesley +Naomi +Ronda +Ruby +Shawna +Staci +Tameka +Cherie +Christi +Kellie +Rita +Vivian +Courtney +Ellen +Judith +Melisa +Terry +Vickie +Angie +Kari +Latanya +Marlene +Raquel +Sandy +Sophia +Catrina +Daphne +Demetria +Iris +Jane +Rachael +Ruth +Alisa +Brandie +Carey +Dena +Eva +Gretchen +Lillian +Marla +Bethany +Candy +Casey +Chastity +Dionne +Gail +Jackie +Jennie +Lashonda +Marcy +Phyllis +Shelby +Trina +Bridgette +Claudia +Desiree +Elisa +Joann +Jodie +Latonia +Latosha +Mindy +Norma +Olivia +Shana +Tamika +Alexandra +Antoinette +Cecilia +Dina +Doris +Hollie +Irene +Jeanne +Katie +Lara +Marjorie +Mercedes +Nina +Patrice +Serena +Tami +Tammi +Kimberlee +Maribel +Miriam +Molly +Paige +Rosemary +Shanna +Angelina +Bridgett +Esther +Faith +Glenda +Jana +Krystal +Michael +Sally +Tabatha +Annie +Ladonna +Lakesha +Maggie +Margie +Olga +Ramona +Rochelle +Roxanne +Selina +Shari +Terra +Wendi +Alina +Amelia +Angelique +Deana +Dianne +Eileen +Ivette +Jeannette +Jeannie +Jessie +Laurel +Leticia +Letitia +Lynette +Stefanie +Tania +Trisha +Vicky +Adrian +Amie +Chasity +Constance +Daisy +Lashanda +Liza +Lora +Lourdes +Shanda +Susie +Alisha +Arlene +Audra +Brooke +Clara +Dianna +Ida +Joan +Johanna +Karrie +Kesha +Lakisha +Lydia +Marisa +Octavia +Rachelle +Robert +Tawanda +Tera +Alana +Alexis +Bernadette +Caridad +Cassie +Dora +Grace +Ingrid +Janette +Jeanie +Jo +Latarsha +Marci +Margarita +Marisol +Maureen +Miranda +Rena +Sharonda +Sondra +Tisha +Valencia +Bertha +Cara +Christopher +Delia +Elena +Felecia +Florence +James +Janie +Karin +Kisha +Lakeisha +Lana +Latricia +Leanne +Lee +Lynda +Malinda +Mandy +Marion +Mona +Paulette +Teri +Tosha +Ursula +Ada +Adriana +Antonia +Chelsea +Deidra +Ebony +Latisha +Latoshia +Lorena +Lucy +Marian +Marianne +Myra +Nadine +Nora +Shauna +Shonda +Silvia +Stephenie +Susanne +Tawana +Tiffani +Vonetta +Windy +Yesenia +Abigail +Bobbi +Cathleen +Chantel +Darcy +Davina +Hazel +Josephine +Lorrie +Malissa +Maritza +Mellissa +Misti +Sasha +Shantel +Susanna +Terrie +Tessa +Vikki +Angelica +Betsy +Claire +Darla +Edith +Eleanor +Georgette +Geraldine +Gladys +Hilary +Hilda +Jami +Janna +Jeri +Jocelyn +Jolie +Karyn +Lashawnda +Latrice +Mari +Marissa +Marta +Mia +Natosha +Nichol +Patrica +Penelope +Stacia +Suzanna +Suzette +Tanisha +Tarsha +Tia +Tracee +Whitney +Alyssa +Ami +Anastasia +Beatriz +Bernice +Casandra +Chantelle +Clarissa +Consuelo +Danette +Dara +Denice +Eugenia +Gena +Isabel +Jena +John +June +Laronda +Lashon +Lela +Lesli +Lois +Lucinda +Lucretia +Meghan +Melynda +Mitzi +Niki +Petrina +Rene +Shandra +Shanita +Shellie +Shenita +Sue +Summer +Tawanna +Tomeka +William +Aileen +Alethea +Anitra +Antionette +Athena +Bettina +Brigitte +Camille +Carole +Celena +Celina +Chanda +Charmaine +Christal +Damaris +Debora +Delores +Dixie +Dori +Genevieve +Ivy +Laquita +Layla +Lena +Lindy +Marcella +Michell +Nikita +Noel +Pauline +Shalonda +Shawanna +Shawnda +Starla +Therese +Towanda +Tyra +Venus +Adria +Anglea +Buffy +Candi +Carri +Celia +Chris +Claudette +Coleen +Dania +Deanne +Deena +Della +Elisabeth +Emma +Eunice +Gidget +Helena +Hillary +Ileana +Jan +Janis +Jenna +Jerri +Jillian +Juliet +Kasey +Kerrie +Kyla +Larissa +Latrina +Lillie +Lisette +Marni +Mellisa +Mildred +Mollie +Patrina +Patty +Renita +Rhoda +Rosalyn +Sandi +Shane +Sheree +Stella +Stephaine +Susana +Toya +Tressa +Valarie +Africa +Alecia +Alexandria +Alyson +Angelic +Barbie +Bianca +Cari +Carie +Carly +Cherry +Chrystal +Cicely +Claudine +Consuela +Corey +Corinne +Danyell +David +Dedra +Deidre +Doreen +Elisha +Ella +Elsa +Ernestine +Ethel +Fatima +Faye +Felice +Francine +Gayle +Holley +Irma +Jada +Janine +Jeanine +Jeanna +Jeannine +Jenniffer +Jewel +Kandi +Kay +Keshia +Kirsten +Lakeshia +Lamonica +Larhonda +Larry +Lasonya +Lea +Marguerite +Marnie +Mattie +Milagros +Milissa +Pamala +Petra +Randi +Rosalind +Rosie +Roxann +Shonna +Shonta +Spring +Sunshine +Tamela +Tawnya +Teresita +Thelma +Tonja +Yolonda +Zandra +Adriane +Adrianne +Aida +Alethia +Allyson +Andria +Angeline +Anjanette +Apryl +Ava +Blanca +Briana +Britt +Camilla +Cary +Cecelia +Charisse +Charlette +Cher +Colette +Cori +Corina +Corinna +Crista +Daniele +Deirdre +Demetrice +Dusty +Edna +Edwina +Estella +Fawn +Francesca +Georgia +Geri +Greta +Grisel +Gwen +Jackeline +Janel +Janelle +Jenni +Johnnie +Joni +Josie +Juliette +Kami +Kandy +Karena +Katrice +Kecia +Keli +Kenyatta +Kia +Lashaunda +Lashunda +Lauri +Lavonda +Leila +Lizette +Lory +Madeline +Mara +Marcie +Margo +Marlo +Maryann +Melodie +Minnie +Monika +Natacha +Nicola +Nita +Patsy +Racheal +Rochell +Rosalinda +Roslyn +Salena +Saundra +Shanon +Shawanda +Shea +Sheria +Simone +Stacee +Sybil +Syreeta +Tamica +Tatiana +Teressa +Tessie +Thea +Tijuana +Tiki +Tori +Travis +Tresa +Trudy +Velma +Viola +Zenobia +Aaron +Abby +Alanna +Alejandra +Alesia +Alissa +Alycia +Alysia +Annmarie +Anthony +Antonio +Autumn +Ayanna +Beatrice +Belkys +Bessie +Brigette +Brittany +Calandra +Callie +Candida +Caren +Carissa +Carlos +Carlotta +Carolina +Caryn +Chantell +Chenita +Cherri +Christian +Cleopatra +Cotina +Cristin +Cristy +Daniela +Darby +Dee +Deedee +Deedra +Deirdra +Destiny +Dinah +Earlene +Edie +Elise +Elissa +Elvira +Eric +Esmeralda +Felisha +Genea +Georgina +Ginny +Griselda +Hattie +Ina +India +Ivonne +Jacklyn +Jacquelin +Jannette +Jasmine +Jason +Jayne +Jeana +Joelle +Joey +Jolene +Justine +Karina +Karmen +Kassandra +Katonya +Keesha +Kendall +Kenneth +Keva +Kimberely +Kimberli +Kinya +Kris +Kristan +Lakeesha +Lasandra +Latashia +Latina +Lawanna +Leann +Lenora +Leona +Lesia +Lidia +Lola +Lolita +Lonna +Lorinda +Lorna +Louise +Lucille +Mabel +Mariah +Marti +Martine +Marva +Mayra +Melina +Missy +Morgan +Nanette +Natarsha +Necole +Nena +Nikole +Noelle +Odessa +Ola +Patti +Pearl +Phoebe +Precious +Richelle +Robbie +Ronnie +Roxana +Samara +Scarlett +Sharlene +Shawana +Shawnee +Sherita +Stephani +Stephen +Stephine +Tabetha +Tamala +Tamera +Tamiko +Tarra +Telisa +Tenisha +Teria +Thomas +Tiffanie +Trenise +Treva +Trinette +Twana +Twanda +Twila +Venessa +Vera +Vernita +Willie +Zoe +Jennifer +Kimberly +Michelle +Angela +Heather +Melissa +Amy +Stephanie +Lisa +Christina +Shannon +Rebecca +Mary +Elizabeth +Nicole +Tammy +April +Kelly +Tracy +Julie +Patricia +Dawn +Tina +Christine +Tiffany +Laura +Jessica +Wendy +Cynthia +Tonya +Karen +Tara +Amanda +Lori +Pamela +Rachel +Susan +Monica +Sandra +Teresa +Maria +Tanya +Barbara +Andrea +Stacy +Tamara +Stacey +Katrina +Erin +Crystal +Dana +Kristen +Sarah +Michele +Holly +Melanie +Robin +Danielle +Sharon +Linda +Donna +Carrie +Deborah +Denise +Leslie +Theresa +Brandy +Jacqueline +Brenda +Catherine +Katherine +Alicia +Erica +Christy +Cheryl +Joy +Rhonda +Yolanda +Misty +Felicia +Melinda +Samantha +Nancy +Debra +Erika +Sherry +Emily +Natasha +Sabrina +Valerie +Victoria +Allison +Margaret +Anna +Brandi +Christie +Tracey +Paula +Vanessa +Kristina +Carla +Cindy +Diana +Kathryn +Kristin +Regina +Natalie +Latasha +Amber +Jill +Ashley +Heidi +Sonya +Veronica +Gina +Renee +Deanna +Sara +Angel +Cassandra +Suzanne +Carolyn +Beverly +Katina +Shelly +Jenny +Kathleen +Latonya +Alison +Jamie +Virginia +Wanda +Anita +Jodi +Sheila +Ann +Carmen +Robyn +Janet +Laurie +Bonnie +Kristi +Carol +Julia +Terri +Cristina +Hope +Bridget +Courtney +Martha +Sylvia +Yvonne +Kristy +Joanna +Kristie +Shelley +Traci +Meredith +Betty +Diane +Kathy +Sherri +Tracie +Dorothy +Kelley +Ana +Janice +Kim +Nichole +Shawn +Beth +Kelli +Krista +Nakia +Aimee +Anne +Charity +Connie +Frances +Charlene +Latoya +Marie +Rachael +Sheri +Stacie +Tasha +Lauren +Priscilla +Tammie +Audrey +Jeanette +Leah +Ginger +Tricia +Belinda +Bobbie +Cathy +Gloria +Megan +Melody +Tabitha +Yvette +Colleen +Jody +Kara +Sonia +Toni +Trina +Vicki +Annette +Charlotte +Kendra +Angie +Debbie +Evelyn +Nikki +Candace +Darlene +Kari +Keisha +Kimberley +Rose +Caroline +Jackie +Kerri +Loretta +Mindy +Sonja +Casey +Kristine +Shawna +Shirley +Tameka +Cara +Ericka +Gwendolyn +Kenya +Kerry +Leigh +Marcia +Rosa +Adrienne +Claudia +Dena +Juanita +Judy +Kellie +Keri +Penny +Shelby +Tania +Alice +Chandra +Chastity +Helen +Jenifer +Lakesha +Lynn +Marilyn +Marlene +Cheri +Joanne +Lawanda +Marsha +Tamika +Bethany +Billie +Dina +Joyce +Lashonda +Lesley +Tonia +Candice +Christi +Daphne +Jeannie +Karla +Latanya +Vivian +Becky +Celeste +Elaine +Eva +Iris +Monique +Peggy +Rebekah +Sheryl +Brooke +Eileen +Jeannette +Judith +Latisha +Lissette +Raquel +Tami +Katie +Lydia +Melisa +Molly +Patrice +Selena +Antoinette +Christa +Shanna +Wendi +Angelina +Catina +Elena +Ellen +Glenda +Jana +Jean +Lakeisha +Lashawn +Sally +Alexis +Alisa +Angelia +Candy +Desiree +Irene +Jeanne +Kirsten +Lakisha +Latosha +Lourdes +Roberta +Ruth +Terry +Vickie +Carey +Joann +Krystal +Lara +Lashanda +Miriam +Naomi +Nina +Olivia +Shelia +Tammi +Tangela +Tawana +Aileen +Alisha +Chelsea +Mercedes +Alexandra +Brandie +Cherie +Esther +Jodie +Michael +Stefanie +Terra +Alina +Grace +Jacquelyn +Lena +Marcy +Marisol +Miranda +Rita +Ronda +Sandy +Shana +Trisha +Vicky +Arlene +Deana +Johanna +Letitia +Margarita +Myra +Octavia +Sherrie +Staci +Teri +Bridgette +Chiquita +Constance +Doris +Ingrid +James +Jo +Lucretia +Lynette +Marjorie +Rachelle +Ramona +Rochelle +Roxanne +Sophia +Tanisha +Tia +Yesenia +Angelica +Bobbi +Bridgett +Cecilia +Daisy +Demetria +Felecia +Isabel +Janie +Joan +Kesha +Lora +Marianne +Marion +Paige +Shonda +Sue +Abigail +Anitra +Audra +Cicely +Dianna +Jane +Lillian +Lorrie +Maureen +Mia +Ruby +Shari +Tabatha +Tisha +Alexa +Angelique +Annie +Beatriz +Faith +Gail +Gladys +Ivette +Jennie +Latricia +Layla +Mandy +Marla +Natalia +Rosemary +Sharonda +Shauna +Summer +Tosha +Adriana +Catrina +Jolene +Kimberlee +Latonia +Leticia +Maggie +Marisa +Nora +Norma +Susana +Susanna +Tera +Tiffani +Windy +Allyson +Alma +Amie +Autumn +Camille +Chasity +Chrystal +Edith +Ida +Jenna +Jocelyn +Lee +Lois +Madeline +Marcie +Maribel +Michell +Nia +Shellie +Shenika +Tarsha +Toya +Ursula +Betsy +Caren +Cassie +Claire +Ebony +Gretchen +Hollie +Ivy +Jerri +Ladonna +Latrice +Liza +Louise +Margie +Mercy +Olga +Patty +Shalonda +Shantell +Sheree +Valarie +Whitney +Alyssa +Antionette +Bonita +Brandee +Charmaine +Darcy +Dora +Elisa +Eugenia +Ileana +Jessie +June +Lea +Lorie +Lorraine +Marissa +Nikia +Selina +Serena +Shanda +Sunshine +Tawanda +Tawanna +Alyson +Cari +Caridad +Chantel +Christian +Christopher +Deidra +Deidre +Deirdre +Delia +Elsa +Emma +Ethel +Eve +Gabrielle +Genevieve +Jan +Jena +Karina +Katrice +Kisha +Latarsha +Lisette +Mildred +Misti +Phyllis +Randi +Silvia +Susie +Tonja +Valencia +Vera +Adrianne +Aida +Alana +Amelia +Beatrice +Candida +Carly +Caryn +Clara +Daniel +Danita +Dianne +Dionne +Dolores +Edna +Elisabeth +Elisha +Georgia +Georgina +Hannah +Hazel +Hilary +Hilda +Hillary +Janette +Jeanie +Lana +Latesha +Leanne +Luciana +Lucy +Malinda +Mara +Marcella +Maritza +Marlo +Maryann +Meghan +Monika +Rosalind +Sebrina +Shenita +Thelma +Tijuana +Tomeka +Violet +Adrian +Alecia +Alissa +Ami +Barbra +Bernadette +Bianca +Brigette +Buffy +Carie +Celena +Chanda +Chantell +Clarissa +Corey +Dania +Danyell +Dara +Darla +Eleanor +Gayle +Giselle +Harmony +Irma +Ivonne +Jeannine +Jolie +Josephine +Karrie +Kenyatta +Lauri +Lila +Lynda +Margo +Melodie +Mitzi +Nikita +Polly +Robert +Shanita +Shannan +Shawanda +Simone +Stephenie +Susanne +Suzette +Yolonda +Alexia +Angeline +Antonia +Aurora +Bertha +Bettina +Blanca +Casandra +Chris +Christel +Corina +Corrie +Crista +Cristie +Dayna +Deann +Deena +Denice +Dixie +Dominique +Ella +Eric +Esmeralda +Eunice +Florence +Francine +Gena +Gidget +Helena +Janine +John +Josie +Justina +Kami +Karin +Kathrine +Kayla +Kristal +Lashon +Leeann +Leila +Lela +Lenora +Lesli +Lillie +Lorena +Lory +Malissa +Marian +Marta +Nadine +Patrina +Rena +Roxana +Sandi +Shantel +Sharla +Shay +Stella +Takisha +Tamisha +Tammara +Teena +Tessa +Toshiba +Valorie +William +Yashica +Alfreda +Althea +Angelita +Anglea +Ava +Brande +Brittany +Candi +Carissa +Carole +Carolina +Cathleen +Cherry +Christen +Consuelo +Cristine +Danelle +Darby +Faye +Felisha +Francis +Holley +Inez +Jaime +Jami +Janis +Janna +Jasmine +Jason +Jayme +Jenniffer +Jeri +Johnetta +Kate +Katharine +Katisha +Keshia +Lakeshia +Lakiesha +Lashunda +Lasonya +Latoshia +Laurel +Lawanna +Leandra +Leona +Lily +Lindsay +Lucinda +Lynnette +Mabel +Madelyn +Marci +Milagros +Nathalie +Patti +Pauline +Precious +Rana +Rene +Renita +Richelle +Robbin +Rolanda +Ryan +Sasha +Scott +Shanon +Shanta +Sondra +Stacia +Syreeta +Tamala +Tamela +Tamera +Temeka +Teresita +Terrie +Tiffaney +Tori +Tressa +Trinity +Venus +Willie +Zoraida +Adelaida +Adria +Alethea +Alexandria +Amina +Amity +Anastasia +Andria +Annmarie +Antonette +Ashlee +Aundrea +Benita +Bernice +Callie +Carmon +Cathryn +Celia +Christal +Christin +Corinne +Cornelia +Cristal +Damaris +David +Dawna +Delilah +Delta +Destiny +Doreen +Ebonie +Fatima +Frankie +Gerri +Guadalupe +Henrietta +Jacquline +Janel +Janell +Janelle +Jeana +Jeanine +Jeanna +Jeniffer +Joi +Joni +Josette +Juliet +Julissa +Kandy +Karyn +Kasey +Katrena +Kay +Kecia +Keli +Kendall +Kerrie +Kia +Kimberlie +Kris +Lakeysha +Laronda +Latina +Leann +Leanna +Lindsey +Loren +Luz +Mariah +Marva +Maxine +Mellissa +Melony +Merry +Minnie +Nellie +Neva +Nichelle +Patsy +Paulette +Princess +Rosalie +Rosemarie +Salena +Samatha +Saundra +Shalanda +Shameka +Shane +Shanika +Sharhonda +Sharlene +Shawana +Shawnda +Shea +Shemeka +Stephaine +Tamar +Tamesha +Tatiana +Tiffanie +Tommie +Twanda +Verna +Viola +Vonetta +Abby +Ada +Angelic +Angella +Annemarie +Ansley +Apryl +Aretha +Arleen +Athena +Britt +Calandra +Candie +Carisa +Carlie +Carri +Cary +Casie +Chanel +Charnissa +Charron +Cherilyn +Cherise +Cicily +Claudine +Coleen +Consuela +Cora +Corie +Corrina +Cristy +Dalia +Danette +Daniele +Danyel +Davina +Dedra +Delicia +Della +Delores +Denisha +Dennise +Dorie +Dorothea +Elyse +Fawn +Flora +Francina +Gwen +Harriet +Holli +Joycelyn +Juana +Julianne +Kary +Kasandra +Katy +Keturah +Kimberlea +Kimberli +Kristan +Lakeesha +Larhonda +Larissa +Lashawnda +Lashondra +Latara +Latrina +Lavonda +Lenore +Leola +Lesa +Liana +Liliana +Mae +Maite +Makisha +Mamie +Marguerite +Mari +Marina +Marty +Matthew +Mechelle +Melonie +Mendy +Milissa +Millicent +Millie +Mollie +Mona +Natarsha +Niki +Nikkia +Nissa +Noel +Nova +Patience +Penelope +Racheal +Reva +Rosanna +Roseann +Salina +Samara +Shante +Shantrell +Sharron +Shayne +Sheronda +Sofia +Stephany +Suzanna +Talisa +Talisha +Tanesha +Tangie +Tanika +Taylor +Tequila +Terrance +Therese +Thomasina +Tiffiny +Tiffney +Timitra +Toinette +Towanda +Tracee +Trinette +Trista +Twana +Venessa +Wilma +Jennifer +Amy +Heather +Kimberly +Melissa +Michelle +Angela +Stephanie +Lisa +Christina +Amanda +Rebecca +Mary +Elizabeth +Nicole +Shannon +Jessica +Kelly +Dawn +Julie +April +Tiffany +Laura +Tammy +Christine +Patricia +Wendy +Karen +Susan +Tina +Tracy +Cynthia +Rachel +Tara +Andrea +Tonya +Stacey +Carrie +Lori +Stacy +Maria +Teresa +Brandy +Sarah +Christy +Crystal +Dana +Melanie +Erin +Barbara +Monica +Holly +Danielle +Sandra +Katherine +Tamara +Erica +Misty +Michele +Katrina +Pamela +Tanya +Yolanda +Alicia +Robin +Jacqueline +Victoria +Denise +Donna +Samantha +Leslie +Felicia +Catherine +Amber +Sharon +Linda +Emily +Deborah +Theresa +Kristen +Kristina +Brenda +Allison +Cheryl +Jill +Rhonda +Anna +Brandi +Sherry +Ashley +Vanessa +Tamika +Valerie +Natalie +Jamie +Kathleen +Heidi +Joy +Melinda +Natasha +Carla +Christie +Nancy +Regina +Kristin +Latasha +Kathryn +Carolyn +Gina +Paula +Sara +Alison +Erika +Jodi +Diana +Margaret +Renee +Sonya +Veronica +Angel +Megan +Virginia +Deanna +Cindy +Janet +Angie +Latoya +Mandy +Tracey +Cassandra +Carol +Latonya +Sabrina +Suzanne +Courtney +Cristina +Laurie +Kendra +Terri +Charity +Jenny +Tameka +Ann +Debra +Leah +Adrienne +Bridget +Carmen +Julia +Marie +Anita +Shelly +Meredith +Sheila +Aimee +Martha +Kristi +Annette +Hope +Kristie +Traci +Candace +Joanna +Kathy +Lakisha +Kelley +Monique +Sheri +Sonia +Betty +Lauren +Nichole +Shelley +Stacie +Anne +Beth +Joyce +Keri +Robyn +Shirley +Kristy +Shawn +Summer +Tricia +Bobbie +Kara +Rachael +Trisha +Charlene +Diane +Kari +Nikki +Ana +Evelyn +Gloria +Jeanette +Kelli +Tasha +Wanda +Mindy +Bonnie +Kristine +Lawanda +Lissette +Melody +Candice +Kerry +Kim +Loretta +Nakia +Penny +Caroline +Charlotte +Dorothy +Kenya +Sherri +Sylvia +Toni +Darlene +Frances +Jacquelyn +Janice +Latisha +Rebekah +Connie +Gwendolyn +Lakesha +Rosa +Shana +Tami +Beverly +Katina +Kerri +Ruth +Tracie +Trina +Belinda +Helen +Olivia +Yvonne +Brooke +Cathy +Marsha +Priscilla +Alice +Audrey +Brandie +Casey +Cheri +Kellie +Kimberley +Tonia +Yvette +Cara +Chandra +Keisha +Lashonda +Leigh +Tangela +Judith +Krista +Shawna +Staci +Christi +Ginger +Marcia +Nina +Peggy +Sandy +Sonja +Tammie +Alisha +Christa +Claudia +Gretchen +Judy +Karla +Marilyn +Miranda +Norma +Selena +Colleen +Jeannie +Vivian +Alexandra +Alexis +Debbie +Ericka +Lynn +Raquel +Rose +Serena +Shelby +Tabitha +Tamiko +Angelia +Angelica +Angelina +Autumn +Ivette +Jaime +Jenifer +Joanne +Katie +Latosha +Lee +Michael +Sheryl +Wendi +Candy +Cherie +Elaine +Jackie +Jana +Juanita +Lakeisha +Lena +Lourdes +Octavia +Paige +Rochelle +Tania +Angelique +Anitra +Bethany +Billie +Chasity +Leticia +Melisa +Naomi +Sherrie +Teri +Vicki +Abigail +Allyson +Antoinette +Demetria +Eileen +Esther +Janette +Jean +Molly +Ruby +Shanna +Tawana +Tomika +Desiree +Dianna +Ebony +Maggie +Miriam +Tabatha +Tia +Annie +Dena +Jennie +Kerrie +Lisette +Shalonda +Tanisha +Tomeka +Vickie +Aileen +Amie +Becky +Chastity +Ellen +Iris +Jeanne +Joann +Jody +Johanna +Kenyatta +Latarsha +Lesley +Letitia +Patrice +Rita +Roxanne +Tawanna +Alisa +Bridgette +Elena +Felecia +Gail +Jami +Jane +Kirsten +Lorraine +Lydia +Marisa +Marisol +Marjorie +Marlene +Roberta +Shonda +Yesenia +Audra +Bobbi +Catrina +Chanda +Daphne +Dora +Eva +Grace +Ivy +Karrie +Lara +Margarita +Sally +Sharonda +Sophia +Terra +Vicky +Amelia +Carey +Caridad +Gena +Jodie +Lashawn +Leanne +Marcie +Marla +Maureen +Pauline +Rachelle +Shenika +Tanika +Terry +Tosha +Alana +Anika +Chiquita +Constance +Dina +Edna +Faith +Gladys +Hilary +Irene +Jo +June +Krystal +Mia +Ronda +Shauna +Shawanda +Sunshine +Tawanda +Adriana +Bridgett +Cari +Carissa +Cecilia +Daisy +Elisabeth +Isabel +Jenna +Kimberlee +Lakeshia +Lana +Lorie +Luciana +Lynette +Malinda +Mandi +Misti +Phyllis +Ramona +Shelia +Sue +Alina +Alyson +Alyssa +Betsy +Brittany +Casandra +Cassie +Christopher +Clara +Dayanara +Edith +Elisa +Elisha +Ida +Josephine +Latanya +Latrice +Lillian +Lindsay +Lora +Lynnette +Maribel +Marion +Michell +Shalanda +Shantel +Shari +Stefanie +Tera +Tisha +Tori +Vera +Zandra +Aisha +Arlene +Caryn +Celeste +Chantel +Christal +Darcy +Darla +Deana +Dionne +Emma +Glenda +Ingrid +Irma +James +Janelle +Joan +Kisha +Lashanda +Marci +Olga +Rene +Shantell +Shellie +Sunny +Taryn +Windy +Alissa +Callie +Camille +Carolina +Cecelia +Danette +Dara +Deena +Deidre +Doris +Eve +Hannah +Hillary +Jolene +Karin +Kesha +Latonia +Latricia +Layla +Lynda +Marcy +Marian +Marianne +Marlo +Meghan +Mercedes +Mildred +Nora +Precious +Shanda +Silvia +Tammi +Temeka +Valarie +Venus +Abby +Adrianne +Andria +Angelita +Carie +Carly +Janie +Janna +Jasmine +Kami +Kasey +Lakiesha +Latrina +Laurel +Lindsey +Mitzi +Noelle +Rolanda +Rosemary +Sasha +Shandra +Shayna +Sondra +Spring +Susanne +Tamekia +Tamela +Temika +Tiffani +Tiffanie +Ursula +Adria +Alexa +Anastasia +Chris +Chrystal +Clarissa +Consuelo +Demetrice +Gabrielle +Georgia +Gwen +Hollie +Jason +Jeanie +Jeanna +Jeannette +Jeri +Jessie +Leanna +Lenore +Lois +Maryann +Mercy +Paulette +Penelope +Phoebe +Robert +Sandi +Shameka +Shamika +Shanika +Sharron +Shawana +Tarsha +Terrie +Alaina +Ali +Ami +Aurora +Ava +Barbra +Beatrice +Bernadette +Bianca +Britt +Caren +Carin +Carlotta +Catalina +Celia +Charmaine +Chelsea +Cindi +Davina +Delia +Dianne +Esmeralda +Faye +Felisha +Genevieve +Georgina +Ileana +Jamila +Jeana +Jeanine +John +Joni +Joseph +Juliet +Karri +Katharine +Kay +Kristal +Lacy +Lakita +Laquita +Laronda +Lashunda +Latesha +Leann +Leeann +Lenora +Liza +Lola +Lory +Malissa +Mamie +Nadine +Patti +Randi +Rosalind +Sallie +Stacia +Stephenie +Susana +Susie +Takesha +Thelma +Tonja +Trudy +Whitney +Adrian +Alecia +Alma +Angeline +Athena +Beatriz +Bertha +Bonita +Celena +Charles +Cher +Christin +Claudette +Corey +David +Deanne +Delicia +Deloris +Demetra +Denice +Destiny +Dixie +Dolores +Doreen +Elise +Eugenia +Fatima +Francis +Giselle +Harriet +Holley +Jan +Jeannine +Jocelyn +Kacey +Kandice +Karina +Lacey +Ladonna +Leona +Lillie +Lorrie +Lucretia +Madeline +Marcella +Marissa +Maritza +Marta +Mayra +Mellisa +Melony +Missy +Mona +Nellie +Niki +Nikia +Nikita +Patty +Racheal +Regan +Robbie +Rosemarie +Rosetta +Ryan +Sean +Sebrina +Shani +Shawanna +Susanna +Takisha +Tanesha +Teresita +Therese +Thomasina +Treva +Turkessa +Valencia +Ada +Alejandra +Alysia +Annmarie +Antionette +Ayana +Bambi +Buffy +Carmelita +Catina +Cherilyn +Christian +Christiana +Cinnamon +Claire +Consuela +Cordelia +Corinne +Cristy +Damaris +Daniele +Dedra +Deidra +Deirdre +Dominique +Dorian +Elsa +Elsie +Ethel +Eunice +Francine +Frankie +Geneva +Georgette +Gisela +Grisel +Guadalupe +Harmony +Helena +Janel +Janine +Jerri +Jimmie +Jobina +Joi +Juana +Juliette +Kacy +Karyn +Kate +Keshia +Kia +Kiesha +Lakesia +Laquanda +Larissa +Lashon +Lauri +Lily +Lorena +Louise +Lucia +Lucy +Luz +Magdalena +Margo +Marguerite +Marlen +Martina +Melissia +Micah +Michel +Milagros +Mollie +Myra +Nakisha +Natalia +Nekia +Nicolle +Pepper +Polly +Rena +Renae +Rhoda +Rosalyn +Rosario +Rosita +Salina +Serina +Shannan +Shanon +Shanta +Sharla +Sharlene +Sheree +Sherie +Sherita +Tamala +Tamera +Tamica +Tamisha +Taneka +Tashia +Tashika +Tequila +Tiana +Timeka +Toby +Tommie +Toshiba +Yulanda +Adriene +Alexia +Altovise +Angella +Annemarie +Aretha +Ashleigh +Aubrey +Audrea +Augusta +Aurelia +Becki +Benita +Bernice +Billy +Bobbijo +Brande +Brandon +Bree +Brianna +Brigitte +Brook +Calandra +Candi +Carli +Carmel +Cathryn +Chanel +Charis +Chrissy +Cicely +Clarice +Cora +Crista +Cristal +Danyel +Darby +Darci +Dawna +Deedra +Demetris +Dusty +Elissa +Eliza +Ella +Emilie +Felica +Felicity +Florence +Francesca +Freda +Gabriela +Gayle +Ginny +Greta +Holli +Isis +Jacinta +Jade +Janean +Janeen +Janis +January +Jena +Jeni +Jeniffer +Jenniffer +Joey +Joycelyn +Juan +Juli +Juliana +Kanika +Karie +Kelsey +Kenyetta +Kutana +Laila +Lakenya +Lakeysha +Lakia +Lamonica +Lashandra +Latara +Latashia +Latishia +Latonja +Lavonda +Lea +Lekisha +Liana +Lolita +Lorna +Lucille +Lucinda +Manda +Mara +Maranda +Marcus +Margie +Mari +Mariana +Mark +Marti +Melodie +Milissa +Myrna +Nakita +Natosha +Noel +Odalys +Opal +Patrick +Patrina +Patsy +Phaedra +Rayna +Rebeca +Rebecka +Reina +Richelle +Ricky +Robbin +Ronald +Roshanda +Roxana +Sadie +Saundra +Shane +Shaneka +Shanetta +Shanita +Shantrell +Sharee +Shea +Sheena +Shekita +Sheneka +Sofia +Star +Starr +Stella +Steven +Suzanna +Suzette +Sybil +Talisa +Talitha +Tameeka +Tamesha +Tamra +Tenika +Tequilla +Tessa +Tiki +Tobi +Torrie +Toshia +Tracee +Tressa +Twana +Valorie +Verna +Violet +Vonda +William +Yamile +Yashica +Jennifer +Amy +Heather +Melissa +Kimberly +Angela +Michelle +Christina +Lisa +Jessica +Stephanie +Amanda +Shannon +Elizabeth +Rebecca +Mary +Nicole +Kelly +Tiffany +Laura +Jamie +April +Christine +Dawn +Julie +Sarah +Karen +Rachel +Jaime +Andrea +Cynthia +Tammy +Susan +Tracy +Erin +Carrie +Stacy +Maria +Patricia +Wendy +Tina +Tara +Danielle +Tonya +Erica +Tanya +Sandra +Brandy +Katherine +Stacey +Crystal +Christy +Lori +Samantha +Teresa +Monica +Sara +Dana +Allison +Alicia +Katrina +Melanie +Holly +Misty +Sharon +Michele +Theresa +Leslie +Catherine +Natalie +Barbara +Pamela +Amber +Latoya +Felicia +Robin +Jacqueline +Victoria +Tamara +Jill +Emily +Denise +Kristina +Natasha +Regina +Ashley +Linda +Sabrina +Yolanda +Nancy +Vanessa +Kristin +Valerie +Brenda +Courtney +Brandi +Erika +Cheryl +Donna +Kristen +Deborah +Margaret +Carla +Anna +Kathryn +Sherry +Melinda +Tamika +Joy +Latasha +Angel +Megan +Veronica +Kathleen +Lauren +Cristina +Virginia +Cindy +Diana +Gina +Tameka +Tracey +Renee +Rhonda +Alison +Christie +Suzanne +Carmen +Debra +Aimee +Janet +Carolyn +Heidi +Jodi +Sonya +Terri +Kelli +Mandy +Deanna +Jenny +Paula +Joanna +Sheila +Marie +Nichole +Candace +Carol +Kristy +Summer +Adrienne +Charity +Julia +Angie +Latonya +Martha +Anita +Kristi +Toni +Laurie +Sylvia +Tasha +Candice +Connie +Kendra +Leah +Cassandra +Charlene +Hope +Lindsay +Melody +Shelley +Annette +Kenya +Tabitha +Ana +Caroline +Diane +Janice +Shelly +Betty +Kellie +Traci +Yvette +Ann +Anne +Belinda +Ebony +Kathy +Kristie +Marsha +Rose +Dorothy +Kara +Marilyn +Monique +Olivia +Beth +Frances +Jeanette +Keri +Nikki +Shana +Sheri +Kerry +Bonnie +Kerri +Lakeisha +Lakisha +Sonia +Sherri +Shirley +Tracie +Gloria +Shawn +Beverly +Kari +Krista +Robyn +Lakesha +Rachael +Tennille +Audrey +Bridget +Meredith +Ruth +Alisha +Brooke +Colleen +Kim +Bethany +Helen +Jacquelyn +Katie +Krystal +Lissette +Peggy +Rebekah +Shawna +Alice +Anitra +Billie +Kelley +Kristine +Latisha +Mindy +Trina +Bobbie +Chastity +Evelyn +Jami +Joanne +Jody +Miranda +Stacie +Cara +Chandra +Christa +Joyce +Lawanda +Wanda +Alexandra +Ericka +Faith +Lynn +Priscilla +Staci +Alexis +Gwendolyn +Karla +Lashonda +Latosha +Melisa +Naomi +Raquel +Yvonne +Desiree +Gretchen +Juanita +Judith +Marisol +Molly +Sonja +Tania +Vickie +Angelia +Ginger +Jeannie +Leticia +Nadia +Penny +Rosa +Tammie +Tomeka +Autumn +Casey +Claudia +Darlene +Jean +Katina +Leigh +Loretta +Marcia +Trisha +Amie +Chasity +Daphne +Farrah +Keisha +Tori +Alisa +Elena +Jana +Jenifer +Kimberley +Marlene +Rita +Selena +Shanna +Sheryl +Tia +Becky +Charlotte +Esther +Lee +Miriam +Norma +Shelby +Tabatha +Tonia +Brandie +Carey +Christi +Felecia +Iris +Jackie +Jennie +Joann +Lindsey +Lourdes +Marisa +Sally +Sandy +Sharonda +Tangela +Vivian +Antoinette +Arlene +Carissa +Elisabeth +Lesley +Lorraine +Mandi +Tami +Tomika +Tricia +Angelica +Cathy +Celeste +Latanya +Lydia +Margarita +Marla +Michael +Shari +Cheri +Dena +Doris +Eileen +Elaine +Eva +Glenda +Hollie +Jane +Jodie +Latarsha +Maggie +Octavia +Paige +Tanika +Tanisha +Aisha +Angelique +Beatriz +Cecilia +Debbie +Edith +Grace +Marissa +Nakia +Roberta +Roxanne +Sherrie +Angelina +Bridgett +Ivette +Janette +Jeannette +Jocelyn +Johanna +Kesha +Kirsten +Lana +Lara +Liberty +Malinda +Marcy +Nora +Patrice +Rosemary +Shalonda +Shanika +Sophia +Stefanie +Tawanda +Terry +Wendi +Allyson +Bobbi +Brittany +Carly +Chanda +Clara +Ingrid +Ivy +Jessie +Joni +Kimberlee +Rochelle +Sasha +Selina +Serena +Shellie +Sunshine +Vicki +Abigail +Audra +Betsy +Bridgette +Deana +Elisa +Gabrielle +Joan +Jolene +Lashawn +Lisette +Lynette +Marianne +Maribel +Maureen +Shameka +Shayna +Shenika +Sunny +Takisha +Tarsha +Tawana +Ursula +Adrian +Amelia +Bianca +Cari +Caridad +Carolina +Constance +Edna +Hilary +Irene +Isabel +Jayme +Jena +Lakeshia +Lashanda +Liza +Lora +Marjorie +Maryann +Mercedes +Myra +Nina +Rosalyn +Shandra +Taryn +Valencia +Vicky +Yashica +Aileen +Alina +Alyson +Anastasia +Annmarie +Chantel +Chelsea +Cherie +Claire +Deidra +Deidre +Dora +Genevieve +Hilda +Janie +Judy +Karin +Karina +Latrice +Lea +Lillian +Lucy +Marci +Misti +Olga +Rachelle +Ramona +Salina +Shauna +Shayla +Susana +Susie +Yesenia +Alana +Alma +Ami +Annie +Ashlee +Ava +Bernadette +Blanca +Camille +Catrina +Chiquita +Chrystal +Cicely +Demetria +Eric +Esmeralda +Eve +Farah +Helena +Kenyatta +Kisha +Larissa +Latonia +Letitia +Madeline +Marion +Pauline +Phyllis +Shakira +Shantel +Susanne +Temeka +Terra +Tosha +Windy +Adrianne +Alecia +Beatrice +Candy +Caryn +Charmaine +Clarissa +Cristy +Dania +Deena +Dionne +Felisha +Georgia +Ginny +Isis +Jaimie +Jan +Jasmine +Jenna +Jolie +Josephine +Khalilah +Laquita +Layla +Leann +Lorena +Lorie +Marian +Meagan +Opal +Ronda +Shawanda +Sherika +Shonda +Tera +Tiffani +Tisha +Toya +Valarie +Whitney +Ada +Adria +Alissa +Chaka +Christen +Christopher +Consuelo +Daisy +Dina +Ellen +Elsa +Emma +Geneva +Inez +Irma +James +Janell +Janelle +Janna +Jeanine +Jo +Katharine +Katrice +Lakeesha +Lakeysha +Laquanda +Lashawnda +Latoria +Latoyia +Laurel +Lola +Luciana +Lucinda +Lynda +Marta +Mona +Natalia +Noelle +Patty +Rene +Robert +Ruby +Scarlett +Shamika +Shanell +Shannan +Shanon +Shantell +Shonta +Sue +Suzette +Tammi +Teri +Tiana +Tiffanie +Tonja +Turkessa +Twanna +Vonda +Yolonda +Adriana +Bobby +Cassie +Cathleen +Celena +Cheyenne +Contessa +Cora +Corey +Corrie +Cory +Danna +David +Dolores +Edwina +Elisha +Florence +Francis +Harmony +Hillary +India +Jaclyn +Jamila +Jeanne +Josie +Kerrie +Latesha +Latrina +Latrisha +Leanne +Lena +Lenora +Lizette +Louise +Lucille +Lucretia +Maya +Meghan +Melony +Mia +Mildred +Niki +Nikia +Patrica +Rebeca +Sheneka +Silvia +Tamala +Tameika +Tamiko +Tawanna +Teresita +Thelma +Violet +Adriane +Alejandra +Alycia +Alyssa +Andria +Anissa +Athena +Ayana +Bernice +Bessie +Brandee +Chantal +Cherish +Chris +Cortney +Dara +Davina +Demetra +Demetrice +Dianne +Dominique +Doreen +Eleanor +Elise +Elvira +Felica +Georgette +Giselle +Gladys +Holley +Ileana +Jammie +January +Joanie +Juana +Kia +Latricia +Lia +Lillie +Lorrie +Marcella +Mari +Mayra +Mellisa +Mitzi +Monika +Pepper +Precious +Quintina +Randi +Rena +Rosalind +Sandi +Shaneka +Shea +Sheena +Sheree +Spring +Stephaine +Stephenie +Susanna +Sydney +Tamekia +Tamera +Tessa +Tiffiny +Torie +Toshiba +Tracee +William +Amee +Antonia +Buffy +Calandra +Callie +Caren +Casandra +Celina +Chanel +Cher +Christal +Colette +Cori +Corina +Courtenay +Cristie +Damaris +Danelle +Darcie +Dedra +Deirdre +Delia +Delores +Demetrius +Destiny +Dusty +Eugenia +Frankie +Gail +Graciela +Guadalupe +Hannah +Hattie +Jade +Janine +Jeana +Jeanie +Jeanna +Jerri +Johnnie +Juliana +Julianne +June +Justina +Kandy +Karyn +Kasey +Kathrine +Kay +Keli +Kenisha +Kira +Kyla +Lacey +Lashandra +Lashunda +Latavia +Laticia +Leila +Lekisha +Lela +Leona +Lois +Lynnette +Machelle +Mackenzie +Malissa +Maranda +Marcie +Marguerite +Marina +Maritza +Marlo +Martina +Mellissa +Melonie +Mistie +Morgan +Nadine +Nakesha +Nanette +Nicolle +Nikita +Niya +Penelope +Princess +Rana +Reagan +Reina +Renita +Rhiannon +Rolanda +Rosario +Sabra +Salena +Samara +Serenity +Shanda +Shane +Shara +Shasta +Shelia +Shemika +Shenita +Shona +Simone +Sondra +Starr +Stephany +Talisa +Tamatha +Tamica +Taneshia +Tenisha +Tequila +Therese +Timothy +Tora +Tory +Treva +Trudy +Viola +Adela +Alesha +Alethea +Alexia +Alishia +Anetra +Anette +Ansley +Antionette +Antonio +Aretha +Aubrey +Bambi +Barbra +Benita +Bertha +Brianna +Brigitte +Brook +Candi +Carmelita +Casie +Cassaundra +Chana +Chantelle +Charmain +Christel +Christin +Cinnamon +Consuela +Cornelia +Cristin +Danette +Daniela +Danita +Dayanara +Debora +Dolly +Dulce +Eliza +Fara +Francesca +Francine +Freda +Geraldine +Gillian +Glenna +Gwen +Harriet +Hazel +Ivonne +Jamee +Jamey +Jason +Jeffrey +Jeri +Joelle +John +Josefina +Judi +Juliet +Kai +Kanika +Karie +Kate +Kecia +Kimberlea +Kristal +Lakenya +Lamonica +Larhonda +Latara +Latashia +Latina +Latoshia +Leanna +Leeann +Leilani +Lorelei +Lorene +Maite +Marlena +Marquita +Maryanne +Mattie +Maxine +Mayte +Michell +Milagros +Mina +Minnie +Natara +Nathalie +Natosha +Nekia +Nicky +Nicola +Nikole +Noel +Paulette +Portia +Quanda +Racheal +Rashida +Rayna +Rebecka +Renae +Rhea +Richard +Rosalinda +Rosalynn +Roshonda +Ryan +Samatha +Sarai +Season +Shakita +Sharhonda +Sharron +Shawanna +Sheba +Sherie +Sherina +Sherita +Sherrell +Sunni +Takiyah +Tamesha +Tamra +Taneka +Tarra +Tashara +Tashika +Tawnya +Teneka +Tenika +Tequilla +Thomas +Tierra +Timika +Toria +Valorie +Venessa +Willie +Zenobia +Jennifer +Melissa +Heather +Michelle +Jessica +Amy +Angela +Kimberly +Christina +Amanda +Lisa +Kelly +Stephanie +Elizabeth +Shannon +Nicole +Rebecca +Sarah +Mary +Jamie +Laura +Tiffany +April +Andrea +Julie +Christine +Crystal +Patricia +Erin +Rachel +Karen +Carrie +Tara +Danielle +Dawn +Erica +Monica +Maria +Tammy +Melanie +Tina +Cynthia +Sabrina +Wendy +Sara +Tracy +Amber +Misty +Katherine +Susan +Stacy +Brandy +Jaime +Alicia +Latoya +Holly +Tonya +Natalie +Stacey +Lori +Sandra +Kristina +Catherine +Barbara +Dana +Summer +Vanessa +Allison +Christy +Leslie +Ashley +Tamara +Emily +Natasha +Samantha +Tanya +Donna +Jill +Angel +Sharon +Victoria +Teresa +Michele +Erika +Anna +Robin +Yolanda +Jacqueline +Felicia +Kristen +Valerie +Kathryn +Courtney +Pamela +Diana +Linda +Lauren +Suzanne +Denise +Katrina +Deborah +Veronica +Kristin +Cheryl +Rhonda +Theresa +Megan +Brenda +Sherry +Cassandra +Leah +Brandi +Gina +Deanna +Joy +Tamika +Latasha +Melinda +Regina +Carolyn +Kristy +Kelli +Christie +Aimee +Nancy +Renee +Debra +Carla +Margaret +Kathleen +Marie +Tameka +Cindy +Nichole +Jenny +Kizzy +Kristi +Mandy +Cristina +Lakisha +Ebony +Shana +Brooke +Heidi +Alison +Janet +Lindsay +Sheila +Bonnie +Jodi +Melody +Adrienne +Ann +Anne +Paula +Tabitha +Kara +Charlene +Joanna +Julia +Sonya +Farrah +Tracey +Virginia +Diane +Kelley +Monique +Shawna +Carmen +Jaclyn +Martha +Robyn +Katie +Shanna +Beth +Carol +Frances +Meredith +Ruth +Shelly +Tasha +Charlotte +Krista +Laurie +Ana +Kathy +Kristie +Kristine +Latonya +Terri +Kendra +Marisa +Annette +Rachael +Anita +Belinda +Candice +Colleen +Janice +Gloria +Kari +Kellie +Dorothy +Hope +Kenya +Rebekah +Sheri +Sylvia +Alisha +Molly +Lawanda +Betty +Beverly +Ericka +Lakesha +Lashonda +Eva +Evelyn +Kim +Nikki +Sonia +Aisha +Bethany +Bobbie +Bridget +Caroline +Jacquelyn +Jami +Lakeisha +Lynn +Mindy +Toni +Angie +Cara +Jeanette +Latisha +Olivia +Priscilla +Alisa +Autumn +Candace +Charity +Connie +Ginger +Keri +Nadia +Sherri +Traci +Trisha +Darlene +Faith +Joyce +Juanita +Lesley +Miranda +Naomi +Shawn +Stacie +Jenifer +Kerry +Lindsey +Karla +Kerri +Trina +Alexis +Casey +Jana +Penny +Shelley +Tania +Tonia +Yvette +Yvonne +Christa +Jocelyn +Jody +Keisha +Marsha +Melisa +Rosa +Rose +Shelby +Stefanie +Audrey +Chandra +Ellen +Helen +Iris +Johanna +Lissette +Marilyn +Marlene +Sally +Sharonda +Shayla +Staci +Alice +Candy +Cathy +Claudia +Judith +Kimberley +Krystal +Marissa +Ruby +Sandy +Tori +Chasity +Elena +Latosha +Leigh +Leticia +Marcia +Tabatha +Teri +Tia +Tricia +Alexandra +Amie +Billie +Bobbi +Desiree +Lara +Lydia +Michael +Nina +Shirley +Vicki +Angelica +Becky +Eileen +Esther +Jackie +Jennie +Jillian +Lakeshia +Loretta +Marisol +Mia +Miriam +Selena +Shameka +Shauna +Tracie +Abigail +Adriana +Dianna +Elaine +Gwendolyn +Joanne +Karrie +Peggy +Raquel +Tanika +Vivian +Angelina +Antoinette +Carey +Deana +Isabel +Jeannie +Lashanda +Latanya +Meghan +Norma +Octavia +Shalonda +Sophia +Tomeka +Wanda +Whitney +Anitra +Annie +Brandie +Bridgette +Chiquita +Jeannette +Kizzie +Lee +Ramona +Sonja +Carissa +Chanda +Doris +Emma +Grace +Hillary +Jean +Joann +Kesha +Lora +Lourdes +Nakia +Rita +Rochelle +Shanta +Vickie +Yesenia +Alina +Chelsea +Christi +Constance +Elisa +Felecia +Glenda +Hannah +Janette +Jasmine +Jodie +Katina +Shellie +Sommer +Terra +Cari +Cherie +Daisy +Debbie +Hollie +Karin +Khalilah +Mara +Marion +Marjorie +Tammie +Tanisha +Tawana +Tequila +Amelia +Ashlee +Audra +Brittany +Dena +Elisabeth +Gretchen +Ivette +Jenna +Josephine +Mandi +Maribel +Patrice +Rachelle +Ronda +Rosemary +Tami +Tawanna +Tennille +Alyssa +Angelia +Bridgett +Charmaine +Chastity +Cheri +Daphne +Demetria +Genevieve +Ingrid +Jamila +Jane +Janelle +Jason +Jessie +Kisha +Latrice +Malinda +Marla +Noelle +Shelia +Sherrie +Takisha +Taryn +Bianca +Callie +Caridad +Carolina +Catrina +Corey +Cori +Delia +Dina +Dionne +Haley +Joan +Ladonna +Lashawn +Laurel +Lena +Lynda +Mellissa +Mercedes +Roxanne +Shamika +Shanika +Shawnta +Sheryl +Spring +Tammi +Tangela +Alecia +Alyson +Bernadette +Carly +Cecilia +Christopher +Deidre +Elisha +Gena +Georgia +Joni +Judy +Kate +Keli +Kirsten +Latonia +Liana +Lisette +Liza +Lorena +Maryann +Misti +Rosalind +Rosalyn +Ryan +Selina +Serena +Shani +Shante +Shenika +Suhaill +Sunshine +Tamekia +Ursula +Alissa +Chantel +Chrystal +Dominique +Gail +James +Janie +Jolene +Karina +Kenisha +Latarsha +Latoria +Lorie +Lorraine +Marianne +Milagros +Nora +Robert +Roberta +Salena +Samara +Sandi +Shantel +Shawanda +Sheree +Tamera +Tosha +Valarie +Vicky +Windy +Allyson +Angelique +Bambi +Casandra +Cassie +Christin +Danette +Edith +Edna +Esmeralda +Janel +Jeanne +June +Kasey +Katharine +Lakeysha +Maggie +Marcie +Marcy +Margarita +Marlena +Maureen +Meagan +Mona +Rashida +Raven +Rhiannon +Shawnte +Tawanda +Yolonda +Aileen +Alana +Alma +Athena +Ayanna +Beatriz +Betsy +Caryn +Christal +Christian +Cristal +Cristy +Danita +Destiny +Eric +Eugenia +Hilary +Irene +Laquanda +Laquita +Latesha +Latricia +Layla +Leann +Melodie +Minnie +Nikia +Phyllis +Precious +Randi +Rene +Scarlett +Shannan +Shantell +Susana +Talia +Tanesha +Tera +Tiffani +Twanna +Valencia +Adria +Adrian +Andria +Charla +Cicely +Corinne +Deena +Deirdre +Devon +Dixie +Fawn +Holli +Ileana +Isis +Jaimie +Jammie +Jan +Janell +Janna +Kimberlee +Lana +Latashia +Leila +Lindy +Lynette +Malissa +Maranda +Margie +Paige +Paulette +Penelope +Shari +Shawana +Stacia +Stephaine +Tamica +Tamra +Tarsha +Tisha +Venus +Wendi +William +Ami +Annmarie +Antionette +Arlene +Aubrey +Avis +Bree +Briana +Brianna +Brook +Camille +Cathleen +Catina +Celena +Celeste +Claire +Clarissa +Damaris +Darcie +Dayna +Deidra +Delores +Dianne +Ella +Farah +Felisha +Gabrielle +Gladys +Irma +Ivy +Jacklyn +January +Jayme +Jeanie +Joey +Josie +Julianne +Kamilah +Lakita +Larissa +Leanne +Lenora +Mariah +Martina +Maya +Melonie +Michell +Myra +Natalia +Nicolle +Olga +Salina +Shakita +Shanita +Sharlene +Shaunta +Shayna +Sondra +Susie +Takesha +Tarah +Tarra +Temeka +Terrie +Terry +Thelma +Yashica +Adriane +Adrianne +Angella +Antonia +Ashleigh +Ayesha +Blanca +Brittney +Candida +Celina +Chanel +Clara +Colette +Consuelo +Dania +Deanne +Denice +Elaina +Elissa +Ernestine +Eunice +Florence +Hazel +Helena +Holley +Jada +Janis +Jenniffer +Jeri +Jo +Jolie +Kacey +Kami +Keely +Kerrie +Lashunda +Latina +Letitia +Lillian +Lois +Lolita +Louise +Lucy +Madeline +Marcella +Marta +Mildred +Mitzi +Monika +Nadine +Nakisha +Natosha +Nikita +Piper +Racheal +Rikki +Rosie +Roxana +Sabrena +Shanda +Shanon +Sharika +Shawnna +Sheena +Sheria +Sherika +Shonna +Simone +Star +Stephenie +Sunny +Suzette +Tameika +Tamiko +Temika +Teresita +Tomika +Torri +Tory +Trinity +Trish +Twila +Valeria +Viola +Alexia +Antonette +Araceli +Ava +Benita +Bonita +Breanne +Buffy +Calandra +Candi +Carl +Carri +Cecelia +Chantelle +Charissa +Charles +Christen +Corrie +Dallas +Danelle +Daniel +Darcy +Darla +David +Deloris +Demetra +Demetrice +Devona +Dora +Dusty +Elise +Evette +Fatima +Felisa +Francesca +Francine +Francis +Freda +Gracie +Henrietta +Ida +Jamey +Jeanna +Jeniffer +John +Johnnie +Joi +Juana +Kenna +Kenyatta +Keshia +Kia +Kirstin +Kristal +Lacey +Lakeesha +Lakenya +Lakishia +Lashawna +Lashawnda +Lashondra +Latara +Laticia +Latoyia +Latrina +Lea +Leeann +Lela +Lidia +Lillie +Lola +Lorna +Luciana +Lucinda +Lucretia +Luz +Maite +Malika +Marci +Mariela +Marisela +Marlo +Mattie +Maura +Mellisa +Mollie +Morgan +Natacha +Noel +Pepper +Qiana +Rana +Rena +Renae +Robbie +Rosalynn +Rosanna +Rosemarie +Roshanda +Sacha +Sasha +Season +Shandra +Shane +Shaneka +Shantae +Sharhonda +Shasta +Shea +Shemeka +Sofia +Starla +Stella +Sue +Tabetha +Tamesha +Tammara +Tarrah +Tatiana +Tobi +Torrie +Tynisha +Vera +Yalonda +Yasmin +Ada +Addie +Alejandra +Althea +Alysia +Angeline +Antonio +Ariane +Ariel +Ashlie +Autum +Billiejo +Bobbijo +Brandee +Candis +Carisa +Carole +Celia +Chasidy +Contessa +Cora +Corrina +Cortney +Cristi +Dale +Dara +Darby +Dedra +Della +Dolly +Donya +Dorian +Eve +Faye +Feather +Felica +Gayle +Geneva +Georgette +Harmony +Harriet +Jacquelin +Jade +Jeannine +Jerri +Jesenia +Jesse +Julianna +Juliet +Justina +Kanika +Kanisha +Karyn +Katheryn +Kathrine +Katia +Kayla +Kenyetta +Kiki +Kori +Krysta +Lakecia +Laquisha +Lashay +Lashon +Latavia +Lawana +Leanna +Lila +Lizette +Loren +Lorinda +Lorrie +Lyndsay +Lynne +Marilu +Mark +Marysol +Mayte +Melynda +Micah +Nathalie +Nekesha +Nerissa +Nila +Patrica +Patty +Pauline +Rasheeda +Rhea +Richelle +Rolanda +Ronica +Sallie +Sebrina +Shalanda +Shalandra +Shalon +Shamekia +Shantrell +Shawnda +Shawntae +Shena +Sherell +Sheronda +Shira +Shonda +Shondra +Shonte +Silvia +Starr +Sugey +Takiyah +Tamala +Tamarra +Tamisha +Telisha +Tequilla +Terica +Tiana +Tiffaney +Toya +Trudy +Twana +Venessa +Yarnell +Jennifer +Melissa +Jessica +Heather +Kimberly +Michelle +Christina +Angela +Amanda +Amy +Kelly +Stephanie +Lisa +Nicole +Elizabeth +Crystal +Sarah +Shannon +Rebecca +Tiffany +Mary +April +Laura +Andrea +Jamie +Erin +Rachel +Erica +Julie +Brandy +Danielle +Christine +Carrie +Tara +Monica +Patricia +Karen +Cynthia +Tina +Amber +Sara +Maria +Tracy +Vanessa +Ashley +Holly +Dawn +Katherine +Alicia +Natalie +Stacy +Emily +Samantha +Wendy +Melanie +Stacey +Christy +Kristina +Misty +Tammy +Leslie +Susan +Sabrina +Jacqueline +Lauren +Brandi +Tonya +Kristy +Allison +Teresa +Dana +Tanya +Catherine +Kathryn +Kristen +Latoya +Robin +Natasha +Sandra +Barbara +Deborah +Tamara +Victoria +Katrina +Michele +Jill +Melinda +Cheryl +Felicia +Lori +Theresa +Anna +Denise +Erika +Courtney +Sharon +Yolanda +Kristin +Linda +Summer +Donna +Megan +Valerie +Veronica +Joy +Margaret +Nancy +Pamela +Tabitha +Cassandra +Jaime +Kathleen +Regina +Alison +Nichole +Deanna +Latasha +Renee +Angel +Carolyn +Diana +Gina +Leah +Meredith +Heidi +Tamika +Kendra +Carla +Suzanne +Debra +Ebony +Lindsay +Mandy +Brooke +Rhonda +Aimee +Kristi +Katie +Cristina +Virginia +Candice +Julia +Kelli +Jenny +Tameka +Janet +Sherry +Paula +Shanna +Brenda +Shana +Beth +Christie +Marie +Adrienne +Jodi +Monique +Casey +Kelley +Lakesha +Ana +Kara +Toni +Anne +Carmen +Colleen +Lakisha +Rebekah +Dorothy +Melody +Cindy +Tasha +Ann +Desiree +Jaclyn +Olivia +Tracey +Krista +Shelly +Bonnie +Carol +Latonya +Sylvia +Charlene +Connie +Kristine +Marilyn +Audrey +Janelle +Lindsey +Sonya +Traci +Bethany +Bridget +Diane +Kellie +Yvette +Annette +Trisha +Candace +Evelyn +Gloria +Sheila +Angie +Anita +Cara +Marsha +Shawna +Janice +Keri +Kristie +Krystal +Martha +Meghan +Beverly +Charity +Lakeisha +Leigh +Marisa +Miranda +Sherri +Tricia +Alisha +Caroline +Jeanette +Kari +Laurie +Priscilla +Shauna +Alexis +Keisha +Frances +Kizzy +Rita +Alexandra +Hope +Lawanda +Molly +Rachael +Sonia +Terri +Autumn +Darlene +Kerry +Latisha +Marcia +Rosa +Ruth +Juanita +Yvonne +Becky +Betty +Billie +Jenifer +Kenya +Mindy +Ericka +Lashonda +Rose +Shanika +Shayla +Sheri +Esther +Jacquelyn +Jana +Kathy +Marissa +Robyn +Selena +Stacie +Angelina +Bobbie +Faith +Joanna +Melisa +Shameka +Shelley +Shirley +Tori +Aisha +Chandra +Jody +Kim +Naomi +Tia +Devon +Eva +Hillary +Amelia +Corinne +Grace +Jessie +Jillian +Joni +Kerri +Latanya +Lora +Lourdes +Nadia +Penny +Raquel +Sommer +Tiffani +Whitney +Adriana +Amie +Angelique +Audra +Claudia +Elisa +Gabrielle +Iris +Jocelyn +Judith +Nikki +Alice +Antoinette +Christa +Christi +Eileen +Elaine +Lesley +Lydia +Mandi +Marisol +Mercedes +Serena +Staci +Tabatha +Adrian +Belinda +Carly +Debbie +Farrah +Jami +Karla +Latosha +Malinda +Sharonda +Shawn +Tammie +Tanisha +Vivian +Alyson +Helen +Ivette +Jeannie +Karrie +Lee +Trina +Abigail +Alyssa +Angelia +Chrystal +Dena +Elisha +Ginger +Gwendolyn +Hollie +Jasmine +Joanne +Johanna +Karina +Lacey +Lorraine +Lynn +Nakisha +Norma +Sandy +Tomeka +Tonia +Allyson +Bridgette +Brittany +Carey +Cassie +Charlotte +Chelsea +Doris +Glenda +Hilary +Jackie +Jennie +Kenisha +Kimberley +Kirsten +Lakeshia +Leticia +Ryan +Sophia +Tracie +Yesenia +Carolina +Chasity +Gretchen +Hannah +Irene +Joann +Jodie +Kenyatta +Lena +Lissette +Loretta +Nora +Shanta +Tawanna +Teri +Vicki +Vickie +Wanda +Alissa +Bianca +Celeste +Elena +Ivy +Janette +Jean +Joyce +Kimberlee +Marla +Marta +Nina +Selina +Stefanie +Tangela +Temeka +Tosha +Athena +Carissa +Constance +Cristy +Jane +Janine +Jeanne +Jolene +Lana +Leanne +Margarita +Mia +Rachelle +Shantel +Susana +Taryn +Tawana +Venus +Abby +Alana +Alisa +Anitra +Antonia +Aubrey +Bobbi +Brandie +Caryn +Cherie +Deana +Dianna +Edna +James +January +Jenna +Lara +Lea +Lynda +Miriam +Natalia +Octavia +Roberta +Shamika +Silvia +Alecia +Angelica +Annie +Beatriz +Cathy +Cheri +Chiquita +Claire +Elisabeth +Eugenia +Jamila +Lashanda +Latrice +Maureen +Michael +Noelle +Olga +Paulette +Peggy +Randi +Rosemary +Roxanne +Sally +Sasha +Shalanda +Shalonda +Tania +Tawanda +Aileen +Aja +Arlene +Bernadette +Bridgett +Candy +Catrina +Chantel +Charmaine +Chastity +Daisy +Daphne +Ellen +Esmeralda +Felecia +Gail +Haley +Jo +Karin +Katina +Kesha +Kia +Kylie +Lashawn +Lynette +Marlene +Misti +Noemi +Patrice +Phyllis +Precious +Rhiannon +Shari +Sheree +Tequila +Terra +Wendi +Adrianne +Andria +Betsy +Dionne +Ingrid +Isabel +Jammie +Janel +Joan +Judy +Karyn +Kasey +Kristal +Lashunda +Latarsha +Latricia +Leila +Letitia +Lisette +Marci +Maribel +Maritza +Marlena +Milagros +Nadine +Nikita +Robert +Ruby +Shaneka +Shayna +Shenika +Sonja +Takesha +Tamekia +Tami +Terry +Valarie +Yolonda +Adriane +Alma +Ami +Cari +Casandra +Cecilia +Cicely +Clara +Dina +Elise +Emma +Isis +Jaimie +June +Katharine +Kisha +Latoria +Leona +Marcie +Marianne +Marjorie +Myra +Pauline +Rena +Rochelle +Shawanda +Shelby +Sherrie +Sheryl +Spring +Stella +Sunshine +Tameika +Tamica +Tisha +Tomika +Adria +Alina +Ashlie +Ayesha +Bambi +Caridad +Dara +Davina +Deidra +Deidre +Destiny +Dixie +Hayley +Helena +Jena +Kizzie +Krissy +Leanna +Lillian +Liza +Meagan +Melony +Monika +Nakia +Rae +Ramona +Salina +Sebrina +Shavon +Shavonda +Sherika +Sunny +Susanne +Suzette +Takisha +Talia +Tamiko +Tanika +Tarah +Windy +Alysia +Angeline +Anissa +Blanca +Chanda +Chrissy +Christal +Darcy +Dayna +Dominique +Elaina +Elissa +Felisha +Giselle +Irma +Janell +Janie +Janna +John +Josephine +Kayla +Lacy +Latonia +Latoyia +Leann +Lorie +Madelyn +Maggie +Marcella +Mariela +Meghann +Mellissa +Nikia +Qiana +Racheal +Rebeca +Ronda +Rosalind +Shameika +Shawana +Shawnta +Star +Tanesha +Tenisha +Tessa +Tiana +Tiffanie +Vicky +Willie +Adrianna +Anastasia +Ariane +Calandra +Camille +Christen +Christopher +Cora +Deandra +Demetria +Devin +Dianne +Gayle +Gena +Jan +Jason +Jeanna +Jeannette +Joelle +Joi +Jordan +Kandi +Karri +Kate +Keely +Kellee +Khalilah +Lakenya +Lashaunda +Lashawnda +Lucretia +Lucy +Malissa +Maranda +Mariah +Marion +Martina +Maya +Morgan +Natacha +Natosha +Paige +Raven +Rene +Rosalyn +Shane +Shawnte +Shellie +Shemeka +Simone +Somer +Sondra +Sue +Susanna +Tammi +Taneka +Toya +Tressa +Twanna +Ursula +Valencia +Valeria +Viola +Annmarie +Benita +Bettina +Brian +Briana +Carisa +Carlotta +Casie +Cheyenne +Clarissa +Corey +Corina +Cory +Dacia +Danita +Delores +Dione +Dora +Eboni +Eleanor +Eric +Geneva +Genevieve +Gillian +Gladys +Harmony +Ida +Ileana +Jayme +Jeanine +Jeannine +Juliana +Julissa +Kacey +Karey +Kathrine +Keli +Kerrie +Kitty +Laquanda +Laquita +Larissa +Latina +Latrell +Laurel +Leilani +Lizette +Lolita +Lorrie +Louise +Lucinda +Marcy +Marlana +Marni +Melodie +Michell +Nakesha +Natashia +Niki +Patience +Quiana +Raina +Regan +Renae +Samatha +Shakita +Shandra +Shantae +Sharee +Shaunna +Shena +Shonda +Starr +Stephaine +Tedra +Tera +Thomas +Twyla +Tynisha +Alberta +Alfreda +Alycia +Ansley +Anthony +Antionette +Aretha +Ariana +Ashleigh +Ava +Bernice +Brandee +Brenna +Brianne +Callie +Cameron +Caron +Cassidy +Cathleen +Cathryn +Celena +Chanel +Chris +Christel +Claudine +Coral +Cortney +Damaris +Dannielle +Delana +Dinah +Dolores +Ethel +Eve +Faye +Francesca +Francine +Freda +Hallie +Hilda +Holley +Jada +Jade +Jeanie +Jesica +Johnnie +Joshua +Juli +Justin +Justine +Karie +Kawana +Keturah +Kiley +Kourtney +Kyla +Latesha +Latrese +Latrina +Layla +Lekisha +Letisha +Lois +Madeline +Mae +Mamie +Mara +Margo +Maryann +Melba +Mellisa +Melonie +Mendy +Mildred +Myrna +Nicola +Polly +Rashonda +Richard +Richelle +Rosemarie +Shanda +Shani +Shanita +Shante +Sharla +Shasta +Shaun +Shaunte +Shawntae +Shelia +Sheneka +Sherell +Sherita +Shona +Shonna +Stacia +Tamesha +Tamra +Tatiana +Taylor +Temika +Teresita +Thelma +Trinity +Tyra +Yashica +Yasmin +Abbie +Adina +Aida +Alexa +Alexia +Alishia +Amalia +Anika +Annemarie +Ashanti +Avis +Beatrice +Bonita +Brianna +Brook +Caren +Cary +Chante +Charissa +Charlie +Christiana +Consuela +Corrie +Corrine +Crissy +Crista +Cristin +Cybil +Daneen +Danette +Danna +Daria +Darla +Deann +Deirdre +Delicia +Delilah +Della +Elsa +Elsie +Elyse +Eunice +Francis +Frankie +Gabriela +Georgette +Georgia +Georgina +Ginny +Gwen +Hazel +Holli +Ilene +Ivey +Ivory +Jacki +Jacklyn +Jacqulyn +Janene +Jannette +Jasmin +Jeniffer +Jeri +Jerri +Jessi +Jovanna +Juana +Julianne +Juliette +Justina +Kami +Kamilah +Kandice +Kanisha +Kasie +Katheryn +Katy +Kissy +Ladonna +Lakendra +Larhonda +Lashawna +Lashawndra +Laticia +Latronda +Lavonda +Leana +Leeanne +Lenora +Lidia +Loren +Lucia +Lynsey +Mabel +Mahogany +Maite +Marina +Marquita +Matthew +Mckenzie +Micheal +Natisha +Nedra +Nikisha +Noel +Patrick +Patty +Penelope +Portia +Princess +Priscila +Rashanda +Reagan +Roxana +Salena +Samara +Sandi +Sarina +Scarlett +Season +Serina +Shamekia +Shanekia +Shanequa +Shannan +Shanon +Shantell +Sharhonda +Sharlene +Shavonne +Shawanna +Shawnda +Sherrell +Shunta +Sofia +Starla +Stephany +Stephenie +Susie +Sydney +Tabetha +Talisha +Talitha +Tamisha +Tammara +Tanzania +Tarsha +Tavia +Tawnya +Tequilla +Terika +Terrica +Therese +Tiffiny +Timeka +Timika +Tory +Tracee +Trish +Trudy +Vera +Viviana +Yulonda +Jennifer +Melissa +Amanda +Jessica +Christina +Heather +Michelle +Kimberly +Angela +Nicole +Stephanie +Amy +Lisa +Elizabeth +Kelly +Sarah +Tiffany +Rebecca +April +Crystal +Shannon +Laura +Mary +Jamie +Erica +Erin +Andrea +Rachel +Amber +Danielle +Julie +Christine +Patricia +Brandy +Tracy +Katherine +Maria +Monica +Samantha +Sara +Alicia +Tara +Ashley +Dana +Holly +Dawn +Carrie +Susan +Emily +Lauren +Vanessa +Misty +Cynthia +Tina +Jacqueline +Tammy +Karen +Melanie +Stacey +Kristina +Stacy +Megan +Natalie +Wendy +Leslie +Allison +Brandi +Christy +Natasha +Sabrina +Sandra +Pamela +Kathryn +Kristy +Tamara +Barbara +Tonya +Catherine +Courtney +Cheryl +Erika +Latoya +Theresa +Katrina +Anna +Lori +Kristen +Teresa +Denise +Kristin +Tanya +Melinda +Leah +Sharon +Robin +Brooke +Felicia +Michele +Yolanda +Veronica +Katie +Mindy +Linda +Jill +Heidi +Latasha +Summer +Donna +Kathleen +Victoria +Valerie +Alison +Nichole +Jaime +Joy +Regina +Aimee +Nancy +Bonnie +Cristina +Lindsey +Kendra +Cassandra +Gina +Renee +Angel +Jenny +Lindsay +Monique +Mandy +Marie +Jaclyn +Rhonda +Brenda +Carla +Carolyn +Diana +Margaret +Suzanne +Candice +Cindy +Deanna +Julia +Kristi +Ebony +Kara +Virginia +Adrienne +Lakisha +Carmen +Christie +Melody +Tamika +Deborah +Sherry +Ana +Debra +Janet +Tabitha +Casey +Krista +Olivia +Candace +Meredith +Gloria +Rebekah +Shanna +Paula +Priscilla +Rachael +Shana +Tameka +Janice +Kelli +Anne +Meghan +Desiree +Jacquelyn +Naomi +Robyn +Trisha +Jodi +Beth +Charity +Kelley +Kellie +Lakeisha +Bridget +Toni +Ann +Bethany +Joanna +Martha +Shawna +Alexandra +Tracey +Cara +Colleen +Alisha +Autumn +Brianne +Charlene +Kristie +Miranda +Shanika +Terri +Audrey +Dorothy +Marissa +Sheila +Latonya +Laurie +Leigh +Angie +Helen +Hope +Carol +Jana +Kari +Stacie +Tasha +Traci +Alissa +Belinda +Janelle +Shelley +Sonya +Tabatha +Caroline +Christa +Ericka +Frances +Sylvia +Alexis +Annette +Keri +Kristine +Latisha +Nikki +Nina +Shelly +Sherri +Kerri +Kerry +Rosa +Shauna +Sonia +Tricia +Anita +Evelyn +Jeanette +Jillian +Juanita +Lakesha +Lesley +Miriam +Shalonda +Angelina +Diane +Jasmine +Patrice +Rose +Ruth +Viviana +Audra +Judith +Marsha +Vivian +Yvonne +Alyssa +Charlotte +Connie +Faith +Grace +Karla +Kathy +Krystal +Marilyn +Mia +Tania +Yvette +Amie +Antoinette +Carly +Carolina +Eva +Ginger +Kenya +Sandy +Aisha +Alice +Amelia +Cathy +Lashonda +Lynn +Marcia +Marisa +Shameka +Tia +Betty +Brandie +Brittany +Elisha +Esther +Gwendolyn +Iris +Latosha +Lawanda +Marisol +Marlene +Ryan +Sharonda +Sheri +Bobbie +Brianna +Chandra +Jackie +Jami +Lydia +Raquel +Shayla +Abigail +Beverly +Claudia +Irene +Jenifer +Joyce +Kimberley +Lashanda +Shaneka +Sherrie +Yesenia +Billie +Elaine +Hannah +Jocelyn +Leticia +Marjorie +Penny +Staci +Tammie +Becky +Cecilia +Chasity +Darlene +Dena +Elena +Jennie +Jodie +Kim +Molly +Shirley +Annie +Bianca +Cheri +Corinne +Daphne +Deana +Hilary +Joann +Keisha +Lakeshia +Latanya +Lea +Nadia +Peggy +Ruby +Selena +Tonia +Whitney +Alana +Angelique +Gabrielle +Giselle +Hillary +Hollie +Jean +Joanne +Katharine +Katina +Kristal +Lara +Lissette +Loretta +Lourdes +Maya +Melisa +Michael +Rita +Roxanne +Shantell +Tawana +Angelica +Ashlee +Christi +Debbie +Dianna +Johanna +Karina +Lora +Lynette +Maggie +Maribel +Precious +Shari +Adrian +Cherie +Clara +Eboni +Elisa +Ellen +Farrah +Harmony +Ivette +Jane +Jeanne +Jeannie +Kate +Marlena +Noelle +Rachelle +Roberta +Serena +Shawn +Tanisha +Tracie +Alecia +Alisa +Allyson +Angelia +Carissa +Chelsea +Jenna +Jolene +Kirsten +Laurel +Lorraine +Marci +Morgan +Rochelle +Shamika +Shantel +Sheryl +Sophia +Tami +Tangela +Abby +Ashleigh +Aubrey +Bridgette +Cassie +Catrina +Chastity +Christal +Clarissa +Doris +Jada +Janette +Jeannette +Jody +Lana +Mercedes +Natalia +Norma +Octavia +Shanta +Sheree +Terry +Tomeka +Trina +Wendi +Adriana +Adrianne +Callie +Chiquita +Constance +Daisy +Devin +Devon +Eileen +Emma +Isabel +Joni +Kasey +Kyla +Ladonna +Latrice +Leanne +Lee +Marcie +Marianne +Paige +Shelby +Shenika +Stefanie +Terra +Alyson +Camille +Candy +Christian +Edith +Genevieve +Gretchen +Ivy +Karrie +Kimberlee +Kizzy +Mandi +Marcella +Quiana +Robert +Shemeka +Spring +Tawanna +Vicki +Bernadette +Briana +Christopher +Damaris +Dominique +Felecia +Gail +Glenda +Holli +James +Janell +Joan +John +Kylie +Mara +Margarita +Maryann +Nora +Rebeca +Rena +Renata +Rene +Sally +Sandi +Shanita +Susana +Teri +Bambi +Bettina +Candi +Caryn +Celeste +Chanda +Christen +Demetria +Elisabeth +Janna +Karin +Lacey +Leann +Leanna +Lena +Lillian +Lisette +Lorie +Marla +Maureen +Meagan +Mellissa +Misti +Noel +Noemi +Sasha +Shante +Shelia +Tanika +Tera +Tosha +Wanda +Adria +Arlene +Athena +Beatrice +Bobbi +Bridgett +Carey +Chanel +Crissy +Deidra +Deirdre +Destiny +Dina +Elissa +Esmeralda +Gena +Georgina +Jan +Janine +Jeri +Judy +Kathrine +Kiley +Lashawn +Liza +Malinda +Malissa +Marcy +Mari +Mariah +Meghann +Nicolette +Rosalyn +Silvia +Stephaine +Susanna +Taryn +Tiffani +Tori +Valarie +Vera +Windy +Adriane +Aileen +Alesha +Betsy +Casandra +Casie +Cecelia +Charmaine +Christin +Darcy +David +Deidre +Delores +Geneva +Haley +Jaimie +Janessa +January +Jeanine +Jeannine +Jenelle +Jo +Jordan +Juliet +Kamilah +Kellee +Kisha +Latarsha +Lily +Lorena +Luisa +Nadine +Nakia +Nakisha +Olga +Rhiannon +Scarlett +Shakita +Shanon +Shawanda +Sherita +Shonda +Sofia +Sondra +Sonja +Sunshine +Susie +Talia +Tammi +Tiana +Willie +Alina +Andria +Apryl +Cari +Carisa +Chrissy +Chrystal +Cortney +Cristy +Dianne +Faye +Geraldine +Hilda +Ingrid +Jacklyn +Janel +Janie +Jason +Juliana +June +Katy +Kenisha +Kizzie +Laquanda +Larissa +Latricia +Leeann +Linsey +Lucy +Maranda +Marina +Mayra +Milagros +Myesha +Princess +Randi +Raven +Ronda +Rosemary +Sharhonda +Shunta +Siobhan +Susanne +Tamra +Tashara +Tessa +Thelma +Tomika +Toya +Ada +Alberta +Alysia +Anastasia +Andra +Anitra +Bernice +Breanne +Caridad +Celina +Chanelle +Chantel +Charlie +Claire +Dania +Dara +Dayna +Edna +Elise +Eugenia +Ginny +Guadalupe +Hayley +Helena +Ida +India +Janis +Jasmin +Jeanie +Jeanna +Juana +Kacey +Keely +Keli +Lashaunda +Lashawnda +Latonia +Latoria +Leila +Leilani +Letisha +Letitia +Lillie +Lindy +Loren +Madeline +Mae +Marian +Mariel +Maritza +Marlana +Meaghan +Mercy +Mindi +Monika +Patti +Pauline +Qiana +Rae +Ramona +Richard +Sarina +Selina +Shannan +Sheneka +Sherika +Sue +Takeisha +Tamekia +Tarsha +Tatiana +Tequilla +Trinity +Trista +Tyra +Vickie +Yashica +Yolonda +Abbie +Alanna +Alejandra +Alexia +Annmarie +Anthony +Antonia +Asia +Benita +Brandee +Brittney +Celena +Celia +Chantal +Cory +Danica +Daniela +Deanne +Elana +Elicia +Ella +Evie +Fawn +Francesca +Francine +Francis +Gayla +Gladys +Irma +Jamila +Jammie +Kacy +Kayla +Keesha +Keturah +Kyra +Lani +Laquita +Latashia +Latesha +Lavonda +Lidia +Lina +Luz +Maren +Mellisa +Melodie +Mildred +Mollie +Mona +Nakesha +Nathalie +Natisha +Nikia +Nikita +Nikkia +Nova +Regan +Shakira +Shanda +Shanell +Shani +Shantae +Sharee +Shavon +Shawana +Sommer +Sparkle +Starr +Stephany +Stephenie +Steven +Tameika +Tamera +Tashika +Tawanda +Temeka +Tequila +Tiara +Ursula +Aaron +Aja +Amberly +Ami +Angeline +Anika +Antionette +Ashanti +Ashlie +Aurora +Bertha +Blanca +Camilla +Carina +Carole +Cathleen +Charles +Christel +Colette +Coral +Corey +Corine +Corrie +Cristal +Cristin +Daniel +Daniele +Daniella +Darla +Dee +Deena +Donald +Donya +Elaina +Eleanor +Elsie +Eric +Frankie +Georgette +Grisel +Inga +Jade +Jaimee +Jeniffer +Jerri +Jesica +Jesse +Jessi +Jessie +Joseph +Josephine +Juliette +Karyn +Katheryn +Kati +Kay +Keila +Kesha +Kori +Kyle +Kylee +Kylene +Lacie +Lacy +Lakia +Lanette +Laquisha +Laronda +Latorria +Layla +Lenora +Letoya +Lizette +Lorrie +Lucinda +Lynda +Madelyn +Margie +Mariam +Marion +Martina +Minnie +Nathan +Nia +Nichelle +Nickie +Niya +Patrina +Paulette +Racheal +Rachele +Reina +Rhianna +Richelle +Risa +Robbin +Rosanna +Rosetta +Roxanna +Salina +Samatha +Sebrina +Shalanda +Shaneika +Sharell +Sharita +Shasta +Shaunna +Shaunta +Shavonda +Shawanna +Shayna +Shellie +Suzette +Tabetha +Takisha +Takita +Tanesha +Tangie +Tarra +Teneka +Timothy +Valencia +Vicky +Winter +Yamile +Abbey +Alexa +Alexandria +Ali +Allie +Ashly +Beatriz +Belkis +Belkys +Bonny +Bree +Candis +Candra +Carie +Carlene +Cathryn +Chantelle +Charla +Charline +Chimere +Chisa +Chris +Consuelo +Cora +Corrine +Danette +Danita +Danna +Dannette +Darby +Davina +Dawna +Delia +Delilah +Deven +Doreen +Dori +Elsa +Eureka +Felisha +Florence +Fredricka +Gabriela +Georgia +Hazel +Henrietta +Ivonne +Jacquline +Janeen +Jannette +Jayne +Jazmin +Jeana +Jennafer +Jenniffer +Jewel +Joshua +Jovan +Julianne +Justina +Kandace +Katisha +Katrena +Katrice +Kenneth +Kia +Kiana +Kourtney +Lakevia +Larhonda +Lashay +Latara +Latavia +Laticia +Latoyia +Leona +Leslee +Lianne +Lila +Lucia +Lucretia +Lynne +Lynnette +Makesha +Malisa +Marguerite +Mariela +Marni +Marta +Maryanne +Mattie +Melissia +Melynda +Micah +Mitzi +Natarsha +Natashia +Nellie +Niccole +Nicki +Nikole +Opal +Patty +Petrina +Phoebe +Polly +Rashida +Rebbecca +Renae +Rhea +Risha +Rolanda +Rosalind +Roxana +Sallie +Saundra +Shaina +Shamekia +Shanelle +Shara +Shareka +Sharika +Sharmaine +Shatara +Shavonne +Shay +Shea +Shelli +Shereka +Sierra +Starla +Stephani +Sunny +Sybil +Sydney +Syreeta +Tajuana +Tamela +Tamesha +Tameshia +Taneka +Taneshia +Taylor +Temika +Tenisha +Tennille +Tiffanie +Tiffiny +Tisa +Tomekia +Torri +Trudy +Twanna +Velma +Venessa +Violet +Yasmin +Jennifer +Amanda +Jessica +Melissa +Kimberly +Christina +Heather +Michelle +Tiffany +Nicole +Sarah +Angela +Elizabeth +Stephanie +Amy +Crystal +Kelly +Rebecca +Lisa +April +Mary +Shannon +Erin +Laura +Amber +Danielle +Rachel +Jamie +Ashley +Erica +Andrea +Julie +Lauren +Brandy +Sara +Kristin +Christine +Maria +Kristen +Katherine +Monica +Alicia +Patricia +Vanessa +Samantha +Leslie +Tara +Karen +Latoya +Courtney +Dawn +Kristina +Holly +Natalie +Carrie +Megan +Tracy +Emily +Katrina +Misty +Dana +Brandi +Allison +Stacy +Tina +Brooke +Natasha +Cynthia +Kathryn +Jacqueline +Sandra +Melanie +Sabrina +Susan +Catherine +Barbara +Stacey +Pamela +Anna +Teresa +Monique +Christy +Veronica +Tanya +Katie +Wendy +Lori +Tamara +Erika +Kristy +Tammy +Victoria +Linda +Tonya +Robin +Denise +Candice +Latasha +Leah +Cheryl +Lindsey +Melinda +Valerie +Alison +Gina +Julia +Sharon +Diana +Theresa +Donna +Kathleen +Lindsay +Yolanda +Renee +Summer +Margaret +Casey +Tasha +Deanna +Nichole +Cassandra +Cristina +Carolyn +Jaime +Regina +Jenny +Nancy +Angel +Deborah +Michele +Nina +Ebony +Heidi +Cindy +Jill +Joy +Miranda +Suzanne +Bonnie +Felicia +Krista +Brenda +Marie +Tabitha +Virginia +Carla +Kelli +Kara +Bethany +Candace +Carmen +Meredith +Tamika +Alisha +Aimee +Debra +Rhonda +Toni +Jaclyn +Melody +Rachael +Tia +Latonya +Meghan +Mindy +Sherry +Adrienne +Colleen +Joanna +Kendra +Mandy +Charlene +Shanna +Tracey +Audrey +Paula +Kristi +Alexis +Janet +Kelley +Carol +Latisha +Rebekah +Shana +Tameka +Ana +Anne +Autumn +Priscilla +Frances +Christie +Kellie +Sheila +Beth +Caroline +Sylvia +Shameka +Desiree +Robyn +Alexandra +Faith +Martha +Naomi +Shelly +Amie +Ann +Brittany +Jodi +Kari +Kerry +Tabatha +Bridget +Jacquelyn +Ruth +Shelley +Shirley +Cara +Evelyn +Jasmine +Renata +Charity +Gloria +Molly +Betty +Dorothy +Ericka +Esther +Janice +Jeanette +Jenna +Trisha +Jennie +Lakisha +Marissa +Sonya +Stefanie +Beverly +Diane +Jenifer +Marilyn +Selena +Yvette +Claudia +Laurie +Leigh +Morgan +Shauna +Alana +Helen +Lesley +Olivia +Rose +Terri +Traci +Anita +Hope +Jana +Jillian +Kenya +Krystal +Melisa +Shawna +Sonia +Stacie +Annette +Becky +Connie +Kerri +Lakesha +Lydia +Michael +Patrice +Angelina +Christa +Iris +Kathy +Lissette +Marcia +Maribel +Adriana +Janelle +Jeannie +Joyce +Kristine +Lakeisha +Shayla +Sherri +Sophia +Whitney +Annie +Bianca +Kate +Keisha +Kristie +Lashonda +Latosha +Hannah +Judith +Keri +Tracie +Amelia +Belinda +Carolina +Elaine +Elisabeth +Eva +Marsha +Meagan +Rosa +Sasha +Yvonne +Alissa +Cecilia +Darlene +Lawanda +Sandy +Angie +Antoinette +Carly +Karla +Lynn +Mia +Nikki +Tami +Tanisha +Alyssa +Billie +Brianne +Chandra +Dara +Elena +Jackie +Jami +Joann +Kasey +Rita +Ruby +Sharonda +Shawn +Adrianne +Bobbie +Celeste +Charlotte +Chrystal +Elisa +Grace +Jean +Joan +Latrice +Nadia +Octavia +Rachelle +Raquel +Ryan +Shanika +Wanda +Abigail +Angelica +Angelique +Carissa +Cassie +Johanna +Juanita +Marisa +Precious +Roxanne +Tania +Terra +Vivian +Aisha +Brandie +Chasity +Dionne +Jessie +Joanne +Laurel +Lee +Lorena +Miriam +Shamika +Vicki +Cherie +Cristy +Daisy +Dena +Gretchen +Ingrid +Isabel +Joni +Kim +Kirsten +Lashanda +Lashawn +Lourdes +Trina +Yesenia +Anya +Audra +Camille +Devon +Elisha +Ellen +Hillary +Irene +Katina +Lara +Marlene +Maureen +Nicolette +Noelle +Serena +Sheri +Adrian +Aubrey +Christen +Deidra +Ginger +Jordan +Leticia +Lillian +Loretta +Marjorie +Mercedes +Norma +Randi +Rochelle +Rosemary +Antonia +Bobbi +Catrina +Christopher +Deana +Eboni +Jeanne +Kimberley +Lea +Leanne +Marianne +Roberta +Shanta +Shari +Susana +Tammie +Tonia +Tricia +Valencia +Alice +Briana +Brook +Debbie +Demetria +Dina +Haley +Jeannette +Jocelyn +Jody +Jolene +Katharine +Lacey +Liza +Marcella +Nora +Sally +Shaneka +Shelby +Tangela +Tori +Vicky +Angelia +Cathy +Charmaine +Cheri +Ivette +Ivy +Jane +Karina +Maggie +Marisol +Natalia +Peggy +Shalonda +Tawanda +Tiffani +Viviana +Wendi +Aileen +Alaina +Alexandria +Alexia +Alina +Beatriz +Cecelia +Chanel +Chrissy +Christi +Clara +Constance +Daphne +Edith +Eileen +Emma +Gabrielle +Janette +Judy +Karissa +Latoria +Lena +Lynda +Marcie +Sebrina +Shayna +Staci +Stella +Alisa +Allyson +Alyson +Casandra +Christin +Corinne +Deidre +Destiny +Dora +Felecia +Gabriela +Lucinda +Maranda +Maritza +Marla +Princess +Renada +Rene +Rhiannon +Ronda +Shawanda +Shenika +Sherrie +Yashica +Abby +Anastasia +Andria +Arlene +Ashlee +Bridgett +Candi +Chantel +Chelsea +Christian +Cortney +Cristin +Dixie +Dominique +Doris +Genevieve +Gwendolyn +Ileana +Jade +James +Janie +Kimberlee +Kristal +Lakeshia +Latanya +Liana +Lisette +Marci +Mariah +Mariel +Marta +Paige +Phyllis +Shantel +Sondra +Stephenie +Talia +Teri +Tiana +Tiffanie +Tosha +Alma +Ashanti +Ashleigh +Blanca +Brianna +Bridgette +Candy +Chastity +Chimere +Dianna +Georgia +Glenda +Hilda +Hollie +Jason +Ladonna +Leanna +Margarita +Milagros +Nakia +Noel +Pauline +Racheal +Rosemarie +Shanon +Shemeka +Sheneka +Tawana +Thelma +William +Alena +Athena +Bambi +Beatrice +Betsy +Brittney +Candis +Clarissa +Dallas +Daniela +David +Deirdre +Florence +Francesca +Helena +Irma +Jena +Jodie +Karyn +Kesha +Leann +Leeann +Letitia +Loren +Lucy +Niya +Regan +Shakira +Shantell +Shara +Sonja +Starla +Syreeta +Tatiana +Temeka +Tequila +Tessa +Tomeka +Valarie +Ada +Adria +Annmarie +Ariana +Bernadette +Callie +Casie +Chanda +Christal +Claire +Dalia +Dayna +Geneva +Hilary +India +Jaimie +Jammie +Janna +Jeanna +John +Josephine +Josie +Juliana +Kandice +Karin +Kizzie +Lana +Larissa +Lashawnda +Latarsha +Latesha +Madeline +Marcy +Maryann +Mellissa +Misti +Quiana +Raven +Rena +Shasta +Sheree +Sheryl +Stacia +Sue +Susie +Tana +Terrie +Terry +Vickie +Yolonda +Aja +Antionette +Arielle +Avis +Brenna +Caitlin +Carey +Celina +Cheyenne +Chiquita +Corey +Daniella +Darla +Delia +Devin +Gail +Guadalupe +Janell +Janine +Jeanine +Joshua +Kami +Kenisha +Kenyatta +Lacy +Lakeysha +Larhonda +Lashunda +Lola +Loni +Lorie +Lorraine +Lucia +Lynette +Madelyn +Malinda +Mandi +Marian +Marlena +Meaghan +Mildred +Myra +Nikole +Noemi +Olga +Penny +Rayna +Rebeca +Samara +Shavon +Shawana +Shelia +Sierra +Silvia +Simone +Sofia +Sunshine +Tanika +Tarra +Taryn +Tennille +Treva +Yamile +Abbey +Alanna +Alecia +Alesha +Angelita +Aretha +Ashlea +Asia +Aurora +Benita +Bernice +Breanna +Cari +Charissa +Colette +Coral +Cori +Dawna +Dolores +Dori +Dorian +Eleanor +Elise +Enjoli +Esmeralda +Farrah +Francis +Gena +Georgina +Harmony +Holli +Iliana +Jerri +Jesica +Jo +Johnna +Joseph +Juana +Juliet +Justine +Kaci +Katheryn +Kisha +Kristan +Kyla +Kylie +Laquanda +Laquita +Latonia +Layla +Leila +Lora +Louise +Mamie +Maya +Mayra +Melodie +Michaela +Nadine +Nikita +Paola +Ramona +Rosetta +Shandra +Sharee +Shareka +Sheena +Shemika +Sherita +Sommer +Stephany +Tamesha +Tammi +Tamra +Tanesha +Tera +Tomika +Venessa +Windy +Yadira +Adrianna +Ami +Angeline +Antonette +Ariel +Asha +Ava +Ayesha +Bettina +Breanne +Cameron +Caryn +Celia +Chantal +Chantell +Crissy +Cristal +Damaris +Daniel +Daniele +Davina +Deena +Delores +Desirae +Dianne +Ebonie +Elaina +Eve +Farah +Gabriella +Ivonne +Jamila +Janessa +Jasmin +Jayme +Jeana +Jeri +Jonathan +Josefina +June +Kandi +Kati +Katy +Kendall +Kenneth +Khalilah +Kristyn +Latia +Latoyia +Latricia +Lauri +Lekisha +Leona +Liane +Lillie +Lina +Lucille +Lynne +Margo +Martina +Mercy +Monika +Nakisha +Natisha +Natosha +Nellie +Nicki +Nicola +Nikia +Rashonda +Renarda +Roxana +Salena +Shaina +Shakita +Shanelle +Shanita +Shante +Shantrell +Sharhonda +Sharika +Shaunna +Shawnta +Shonda +Shonta +Sunny +Suzanna +Takia +Takisha +Talisha +Tamela +Tiffaney +Towanda +Tramaine +Ursula +Valeria +Venus +Yasmin +Addie +Adriane +Aleisha +Alejandra +Alysia +Amberly +Anitra +Bertha +Blair +Brandee +Bree +Camilla +Caridad +Cherry +Christel +Corrine +Crista +Danna +Darcy +Deanne +Dedra +Della +Elissa +Eliza +Ester +Eugenia +Eunice +Fatima +Francine +Frankie +Georgette +Gladys +Hazel +Ida +Janel +Janis +Jeanie +Jessenia +Johana +Joi +Julissa +Justin +Karisa +Kathrine +Katia +Kayla +Kellee +Kelsey +Kerline +Keturah +Keya +Kia +Kira +Kourtney +Lakenya +Laquisha +Lashana +Latorya +Lidia +Lila +Linsey +Lucretia +Lynnette +Mariana +Marina +Marisela +Marlo +Matthew +May +Mellisa +Melynda +Misha +Nichelle +Nichol +Niki +Nikisha +Paulette +Rachell +Renae +Richelle +Robbie +Rosalinda +Rosalyn +Rosanna +Roshanda +Sanjuanita +Scarlett +Serina +Shalanda +Shanda +Sharita +Sherika +Shira +Sirena +Stephaine +Suzette +Tamera +Taneshia +Tashara +Tawanna +Tequilla +Teresita +Therese +Tracee +Travis +Tyra +Valentina +Viola +Aleshia +Alesia +Alexa +Andrew +Anglea +Anika +Anisha +Ansley +Anthony +Antonio +Arianna +Arianne +Aundrea +Barbra +Bobby +Brian +Brigette +Britt +Buffy +Carina +Carl +Catharine +Cathrine +Cecile +Cerissa +Chanelle +Cheree +Chianti +Christinia +Clarice +Collette +Corina +Corrie +Cristi +Danica +Danya +Debora +Demetra +Edna +Ella +Elvira +Ethel +Eureka +Fawn +Felisha +Gayle +Gia +Giselle +Goldie +Graciela +Hanna +Harriet +Hayley +Ilana +Jacklyn +Jacquline +Jada +Jaimee +Jamey +Jan +Jannette +Jenell +Jenelle +Jeniffer +Jenniffer +Jewel +Joannie +Joleen +Julianne +Kacey +Karly +Keli +Keona +Kerrie +Kimberely +Kizzy +Kori +Lakevia +Laquana +Lashaunda +Lashondra +Lashundra +Lasonya +Latavia +Laterica +Lateshia +Lavonda +Lawanna +Leeanna +Leilani +Lia +Logan +Luz +Lyndsey +Mahogany +Malisa +Marcelle +Margie +Margot +Marianna +Marquita +Minerva +Mitzi +Natacha +Nathalie +Nathan +Niccole +Nickole +Ofelia +Peter +Pricilla +Qiana +Racquel +Rashida +Rikki +Robert +Roselyn +Roshonda +Rosie +Roslyn +Ryann +Shamica +Shani +Shannan +Shanreka +Shanti +Shaundra +Shaunte +Shawanna +Shawnda +Shea +Shellie +Shenita +Sherena +Sherese +Siobhan +Skye +Somer +Star +Starr +Stephen +Steven +Susanna +Sybil +Tahisha +Takesha +Tameika +Tamica +Tamisha +Taneisha +Tarah +Tashia +Taylor +Tenisha +Thea +Theodora +Thomas +Tiara +Tomekia +Trista +Twanna +Xiomara +Yajaira +Yashika +Jennifer +Jessica +Amanda +Melissa +Tiffany +Christina +Stephanie +Sarah +Heather +Michelle +Kimberly +Nicole +Crystal +Elizabeth +Amy +Rebecca +Angela +Lisa +Kelly +April +Mary +Erin +Danielle +Ashley +Rachel +Amber +Shannon +Andrea +Laura +Lauren +Kristin +Jamie +Kristen +Sara +Erica +Latoya +Brandy +Samantha +Katherine +Alicia +Tara +Emily +Courtney +Maria +Christine +Patricia +Julie +Monica +Vanessa +Brandi +Megan +Natalie +Jacqueline +Katrina +Kristina +Cynthia +Natasha +Karen +Carrie +Leslie +Stacy +Catherine +Brooke +Lindsay +Victoria +Barbara +Kathryn +Dana +Christy +Diana +Dawn +Melanie +Allison +Tracy +Veronica +Misty +Sandra +Pamela +Teresa +Candice +Susan +Holly +Tanya +Lindsey +Sabrina +Tina +Latasha +Monique +Krystal +Cassandra +Erika +Leah +Stacey +Tonya +Linda +Katie +Nancy +Anna +Julia +Wendy +Denise +Tammy +Cristina +Kathleen +Renee +Lori +Robin +Jaime +Nichole +Valerie +Tamara +Cheryl +Candace +Michele +Donna +Heidi +Theresa +Brenda +Kristy +Melinda +Yolanda +Gina +Casey +Margaret +Sharon +Angel +Tasha +Jill +Kelli +Alexis +Kara +Marie +Tabitha +Alisha +Ebony +Ana +Brittany +Carolyn +Felicia +Carla +Sophia +Deanna +Joy +Summer +Virginia +Alison +Deborah +Jenny +Meghan +Rachael +Regina +Suzanne +Priscilla +Bonnie +Mandy +Rebekah +Jaclyn +Shanna +Janet +Adrienne +Meredith +Miranda +Toni +Bethany +Joanna +Paula +Anne +Cindy +Krista +Aimee +Carmen +Rhonda +Alexandra +Audrey +Tia +Debra +Morgan +Ruth +Evelyn +Nina +Autumn +Jacquelyn +Latisha +Whitney +Charlene +Desiree +Diane +Jillian +Kendra +Latonya +Tamika +Caroline +Colleen +Frances +Kristi +Shameka +Tameka +Jodi +Sheila +Janice +Rose +Lacey +Martha +Robyn +Ericka +Jasmine +Beth +Bridget +Dorothy +Jenna +Stefanie +Ann +Kristine +Angelina +Carly +Leigh +Mindy +Sherry +Annette +Christie +Gloria +Naomi +Nikki +Trisha +Yvonne +Beverly +Faith +Kellie +Marissa +Shirley +Sonya +Hope +Melody +Shawna +Charlotte +Kari +Sylvia +Cara +Laurie +Shayla +Abigail +Cassie +Constance +Helen +Jami +Olivia +Rosa +Shelly +Stacie +Anita +Johanna +Lakisha +Tabatha +Terri +Adriana +Angelica +Billie +Kristie +Lakesha +Marsha +Selena +Carolina +Keri +Marilyn +Shelley +Toccara +Bianca +Eva +Jenifer +Juanita +Lynn +Molly +Randi +Sheri +Tracey +Angie +Annie +Jana +Jean +Jeanette +Joyce +Kelley +Patrice +Antoinette +Belinda +Brandie +Cecilia +Darlene +Esther +Hannah +Jennie +Marisa +Alice +Betty +Charity +Chasity +Joanne +Keisha +Kenya +Kerri +Lissette +Sonia +Yesenia +Becky +Carol +Christa +Christen +Grace +Jessie +Kasey +Shana +Vivian +Alissa +Claudia +Lashonda +Lydia +Traci +Christin +Genevieve +Ginger +Janelle +Judy +Kathy +Marcia +Raquel +Serena +Shamika +Sonja +Teri +Alyssa +Elaine +Meagan +Ryan +Shauna +Sherri +Alana +Cari +Carissa +Chrystal +Ivette +Joann +Jocelyn +Kate +Kerry +Paige +Rita +Tricia +Yvette +Aisha +Chandra +Daisy +Judith +Margarita +Melisa +Roxanne +Sandy +Tiffani +Adrian +Bobbie +Dianna +Iris +Jolene +Joni +Karla +Katharine +Leticia +Lorraine +Nadia +Roberta +Shanika +Sherika +Ashlee +Ashleigh +Bobbi +Bridgette +Cathy +Haley +Jackie +Lena +Lesley +Michael +Natalia +Precious +Shaneka +Alexandria +Catrina +Connie +Gabrielle +Gwendolyn +Jeannie +Lakeisha +Noelle +Staci +Tania +Amelia +Amie +Audra +Candy +Chelsea +Clarissa +Cortney +Debbie +Deidre +Dionne +Eboni +Elena +Ellen +Ingrid +Jodie +Latosha +Lawanda +Lee +Loretta +Maggie +Octavia +Rachelle +Simone +Tami +Tanisha +Wanda +Allyson +Aubrey +Blair +Chimere +Doris +Elisa +Hillary +Jeannette +Kirsten +Lara +Marisol +Miriam +Niki +Rochelle +Sharonda +Sheena +Tatiana +Alaina +Alisa +Angelique +Dara +David +Devon +Geneva +Isabel +Jade +Karina +Kimberley +Kristal +Latoria +Lisette +Lorena +Mia +Penny +Rosemary +Sasha +Shelby +Tomeka +Wendi +Adrianne +Chantal +Christian +Demetria +Dena +Jeanne +Jody +Lacy +Lucinda +Margo +Marjorie +Nora +Ruby +Sally +Tiffanie +Abby +Alyson +Ariana +Beatrice +Casandra +Claire +Daphne +Elisabeth +Elisha +Ivy +Janie +Latanya +Liza +Lora +Lynette +Nicolette +Princess +Shantel +Shari +Susana +Tanesha +Trina +Vicki +Viviana +Brianna +Brittney +Brook +Chantel +Cheri +Daniela +Deidra +Janette +Lea +Leann +Letitia +Lourdes +Marta +Maureen +Nadine +Shantell +Tangela +Aileen +Alina +Caryn +Cristy +Hilary +Jacklyn +Joshua +Kim +Lakeshia +Lashanda +Laurel +Lucy +Marlene +Mellisa +Norma +Rebeca +Rene +Shanta +Sheryl +Tammie +Tawanda +Tawanna +Tracie +Valarie +Alma +Andria +Arlene +Athena +Beatriz +Betsy +Camille +Celeste +Charmaine +Chastity +Cherie +Christopher +Cora +Destiny +Eileen +Francesca +Gillian +Giselle +Glenda +Gretchen +Irene +Jane +Jeri +Joan +Jordan +Krystle +Liliana +Lillian +Loni +Marcie +Martina +Maryann +Mercedes +Nikia +Peggy +Rena +Shelia +Sofia +Alexia +Angelia +Briana +Brianne +Cory +Cristin +Devin +Dina +Emma +Eugenia +Geraldine +Hayley +Janessa +Juliet +Juliette +Katy +Kerline +Kesha +Kyla +Lana +Lashawn +Leanne +Leeann +Lynda +Maranda +Marianne +Maribel +Marion +Noemi +Renita +Rhiannon +Sherrie +Sommer +Stacia +Sue +Talia +Taryn +Tequila +Terra +Alecia +Althea +Aurora +Bridgett +Caridad +Corinne +Dayna +Elise +Elissa +Evita +Janell +Janine +Jayme +Jo +Joi +Josephine +Kia +Kizzy +Leilani +Lina +Logan +Loren +Maritza +Monika +Nakia +Sharita +Shavon +Shenika +Sheree +Silvia +Star +Tarah +Tawana +Taylor +Tonia +William +Adria +Anastasia +Annmarie +Antionette +Bettina +Caitlin +Candi +Celia +Chanel +Chantell +Cheyenne +Corey +Dalia +Dianne +Dominique +Edith +Edna +Elicia +Esmeralda +Fawn +Gail +Georgina +Isis +James +Jamila +Janna +Jena +Kami +Lashunda +Latavia +Lucretia +Marcella +Marlena +Nakisha +Natacha +Niya +Olga +Olympia +Phyllis +Rosemarie +Rosie +Roxanna +Selina +Shalonda +Shandra +Shanita +Shawn +Shayna +Shemika +Sherita +Tanika +Tess +Tiara +Ursula +Alanna +Angeline +Ariel +Bambi +Bernadette +Brandee +Chrissy +Christiana +Darla +Delores +Dixie +Dolores +Fallon +Farah +Felecia +Francine +Georgia +Hilda +Hollie +Janeen +Jerri +Jessi +Joelle +Joseph +June +Justine +Kira +Kristan +Ladonna +Laquanda +Latarsha +Latrice +Louise +Madeline +Martine +Mildred +Misti +Nadege +Nicola +Nikole +Paulette +Samara +Sharika +Shawanda +Tabetha +Tamica +Terry +Tessa +Tisha +Tramaine +Tshwanda +Valeria +Yashica +Aaron +Adriane +Adrianna +Aja +Alejandra +Alysia +Brenna +Celina +Chiquita +Christi +Cicely +Clara +Coral +Daniel +Deana +Deanne +Deirdre +Ebonie +Faye +Florence +Francis +Georgette +Gladys +Ida +Irma +Jammie +Jasmin +Jeanie +Jeanine +Jesica +Jesse +John +Juliana +Kacey +Karrie +Katina +Kerrie +Khalilah +Kimberlee +Kisha +Larhonda +Larissa +Laronda +Leanna +Leia +Mandi +Marci +Mariana +Marla +Matthew +Maya +Michell +Nathalie +Pearl +Ramona +Rasheeda +Rashonda +Renada +Renata +Robert +Rosalyn +Roxana +Samatha +Shakita +Shanreka +Shara +Sharee +Shaun +Shonda +Siobhan +Starla +Stephany +Sunny +Takisha +Tamesha +Tamra +Temeka +Tera +Thomas +Tierra +Tiffaney +Tiffiny +Yalonda +Yamile +Yasmin +Aida +Alishia +Alysha +Anitra +Arielle +Brigitte +Candis +Carie +Cassidy +Cathleen +Cecelia +Cecily +Crista +Cristal +Dania +Darcy +Davida +Edwina +Eleanor +Elsa +Farrah +Fatima +Gabriela +Graciela +Gwen +Helena +Ileana +Jacinta +Jacquelynn +Janel +Jayne +Jenilee +Josie +Julianne +Justin +Kacie +Kandace +Kandi +Kandice +Karissa +Kayla +Keely +Kendall +Kevin +Lakeysha +Lani +Lashundra +Latonia +Latoyia +Latrina +Lillie +Lily +Linsey +Lucia +Luz +Margie +Mari +Mayra +Meaghan +Mellissa +Melony +Michaela +Milagros +Mona +Nakesha +Quiana +Raina +Raven +Rhea +Richard +Rosario +Salena +Shaina +Shakira +Shaquanda +Shay +Shemeka +Stefani +Sunshine +Susanne +Suzanna +Syreeta +Tamela +Tiffiany +Tori +Vicky +Windy +Yessenia +Abbie +Adeline +Alesha +Alesia +Alexa +Alycia +Ami +Andra +Anthony +Antonette +Antonia +Asha +Ashanti +Ava +Bernice +Blanca +Brandice +Breanne +Brian +Britt +Carey +Cary +Cathryn +Chantelle +Cherline +Chloe +Christal +Ciara +Cori +Cristine +Dallas +Danica +Daniella +Demetrice +Denisse +Desirae +Desire +Dione +Elaina +Eliza +Ella +Elsie +Emilie +Emmy +Eric +Eryn +Estelle +Eunice +Eve +Felica +Felisha +Fiona +Gena +Gisela +Greta +Guadalupe +Harmony +Hazel +Holli +Iesha +Jada +Jannelle +January +Jaqueline +Jason +Jeanelle +Jeniffer +Jenni +Jonathan +Josette +Julissa +Katheryn +Katrice +Kenneth +Kourtney +Krissy +Kristyn +Krysten +Kyle +Lacresha +Lakendra +Latara +Latesha +Latia +Latoiya +Lauri +Lavonda +Leslee +Lorie +Lorrie +Lucie +Lyndsey +Mackenzie +Mamie +Mandie +Marcela +Marcy +Marian +Maricela +Marina +Marnie +Marquita +Mattie +Melina +Melodie +Mercy +Minnie +Noel +Odalys +Portia +Quintina +Racheal +Rayna +Renae +Ronda +Roseline +Roshanda +Roshonda +Sabine +Sadie +Scarlett +Shanell +Shaniqua +Shanon +Shareka +Shaunna +Shaunte +Shea +Shellie +Sheneka +Shira +Shyla +Takesha +Tamekia +Taneisha +Tashara +Tequesta +Tequilla +Therese +Tiffini +Valencia +Violet +Willie +Abbey +Abra +Afton +Agnes +Alethia +Aline +Angelic +Angelita +Ansley +Arianna +Ashlie +Aundrea +Avery +Ayanna +Ayesha +Benita +Benjamin +Billy +Brea +Breanna +Bree +Camilla +Carli +Carline +Carole +Catalina +Chanda +Chanell +Charise +Charissa +Charles +Chassidy +Cherly +Cherry +Claudette +Colette +Corrie +Danna +Dannielle +Davina +Deena +Della +Deondra +Dori +Dorian +Elana +Esperanza +Estela +Ester +Ethel +Evette +Gabriella +Geri +Gerri +Gracie +Holley +Ines +Ivey +Jackelyn +Jacquelyne +Jameka +Jamey +Jan +Janey +Jeannine +Jessika +Johana +Jolie +Jordana +Josefina +Kaitlin +Kanesha +Kanisha +Karly +Karri +Karyn +Kassie +Kathrine +Katisha +Keesha +Kenisha +Kenyata +Kenyatta +Kenyetta +Keshia +Kimiko +Kinsey +Lakenya +Lakiesha +Lashandra +Lashaunda +Lashawndra +Lashira +Latangela +Latashia +Laticia +Latina +Latoia +Latorya +Latresa +Layla +Leila +Leona +Lila +Lovely +Luisa +Lynsey +Malisha +Mara +Marguerite +Mariela +Matilda +Maxine +Mechelle +Melaine +Mollie +Myra +Natarsha +Natashia +Natosha +Nicki +Nicolle +Nikisha +Patience +Pauline +Penelope +Petra +Qiana +Queen +Ragan +Rashida +Rebecka +Rian +Rina +Rocio +Rolanda +Rosalind +Scarlet +Shamara +Shamekia +Shamica +Shandi +Shannan +Sharhonda +Shasta +Shatara +Shawana +Shawnna +Shawntrell +Sherrina +Somer +Sondra +Spring +Starr +Stella +Stephani +Stormy +Susie +Suzie +Sybil +Sydney +Talitha +Temika +Tenesha +Terah +Tiffiney +Timothy +Tonisha +Tosha +Tracee +Travis +Trenise +Tressa +Treva +Trinity +Venessa +Venus +Yadira +Yolonda +Zulema +Jennifer +Jessica +Amanda +Melissa +Nicole +Crystal +Tiffany +Michelle +Stephanie +Sarah +Christina +Ashley +Elizabeth +Kimberly +Heather +Amy +Angela +Rebecca +Amber +Kelly +Rachel +Erin +Lauren +Lisa +Danielle +Mary +April +Shannon +Laura +Jamie +Kristen +Kristin +Erica +Katherine +Andrea +Vanessa +Samantha +Sara +Emily +Jacqueline +Brandy +Tara +Christine +Maria +Courtney +Lindsey +Megan +Monica +Brandi +Lindsay +Natalie +Julie +Patricia +Kristina +Alicia +Latoya +Natasha +Leslie +Allison +Katrina +Dana +Cynthia +Karen +Carrie +Kathryn +Sandra +Diana +Holly +Victoria +Krystal +Candice +Catherine +Tracy +Cassandra +Melanie +Pamela +Anna +Sabrina +Valerie +Erika +Alexis +Dawn +Stacey +Stacy +Barbara +Ebony +Brittany +Linda +Candace +Katie +Tina +Nichole +Misty +Leah +Veronica +Teresa +Robin +Susan +Monique +Kathleen +Christy +Denise +Julia +Brooke +Cristina +Rachael +Latasha +Margaret +Tamara +Wendy +Renee +Heidi +Kristy +Tonya +Miranda +Sheena +Yolanda +Cheryl +Tammy +Tanya +Casey +Jillian +Sharon +Kelli +Michele +Nancy +Melinda +Rebekah +Alison +Gina +Marie +Lori +Theresa +Tabitha +Alexandra +Virginia +Deanna +Deborah +Carolyn +Jacquelyn +Cindy +Ana +Caroline +Tasha +Felicia +Joanna +Meghan +Brenda +Carla +Lacey +Summer +Angel +Desiree +Jaime +Regina +Evelyn +Sophia +Christie +Shawna +Tia +Jenny +Jill +Priscilla +Kara +Morgan +Bonnie +Cassie +Bridget +Janet +Joy +Kayla +Krista +Charlene +Donna +Melody +Meredith +Whitney +Audrey +Autumn +Charity +Chelsea +Adrienne +Alisha +Toccara +Carmen +Kendra +Stefanie +Jaclyn +Rose +Suzanne +Angelica +Bethany +Colleen +Diane +Tamika +Toni +Paula +Sherry +Aimee +Kristi +Ruth +Ann +Anne +Adriana +Claudia +Janice +Sheila +Sonya +Kari +Naomi +Nina +Rosa +Jasmine +Marissa +Rhonda +Carly +Mandy +Marilyn +Robyn +Annie +Jessie +Kelley +Raquel +Tameka +Abigail +Betty +Carol +Debra +Gloria +Jodi +Laurie +Miriam +Terri +Angie +Beth +Dorothy +Hannah +Martha +Sandy +Helen +Janelle +Latonya +Ariel +Eva +Keri +Shelley +Jeanette +Kathy +Olivia +Patrice +Haley +Beverly +Faith +Kenya +Kristine +Lydia +Meagan +Shanika +Shayla +Yvonne +Ericka +Esther +Joyce +Randi +Shauna +Antoinette +Constance +Daisy +Frances +Jean +Jenna +Kellie +Lacy +Lakeisha +Lakisha +Leigh +Mindy +Sylvia +Bobbie +Brandie +Charlotte +Judith +Tracey +Traci +Yvette +Ashlee +Grace +Kerri +Latisha +Shanna +Shelly +Alexandria +Juanita +Karla +Kira +Kristie +Lillian +Molly +Natalia +Trisha +Christa +Devon +Elaine +Jami +Jocelyn +Krystle +Lesley +Marisa +Sonia +Alyssa +Amie +Chrystal +Jeannie +Kate +Lynn +Shirley +Tatiana +Alana +Amelia +Cara +Jade +Johanna +Kasey +Lakesha +Marjorie +Nikki +Precious +Rachelle +Shameka +Taylor +Carolina +Fallon +Genevieve +Kerry +Kristal +Lourdes +Annette +Bianca +Brittney +Daphne +Jeannette +Stacie +Tabatha +Christen +Claire +Elisabeth +Irene +Jennie +Leanne +Michael +Roxanne +Angelina +Ginger +Hope +Jane +Jenifer +Karina +Leticia +Lissette +Maureen +Ryan +Sasha +Serena +Sherri +Alissa +Carissa +Eboni +Elena +Iris +Kimberley +Lara +Rita +Rosemary +Shana +Shenika +Vivian +Adrianne +Aubrey +Cecilia +Chandra +Destiny +Gabrielle +Giselle +Hillary +Keisha +Lashonda +Nadia +Octavia +Arlene +Audra +Brianna +Christian +Christin +Clarissa +Marlene +Norma +Peggy +Tangela +Aisha +Alaina +Alina +Bridgette +Caitlin +Camille +Cathy +Dara +Janette +Joni +Katharine +Latrice +Marianne +Noelle +Paige +Shelby +Sheryl +Staci +Tanisha +Tricia +Alice +Allyson +Anita +Becky +Dominique +Elisa +Ellen +Emma +Isabel +Ivette +Jackie +Joanne +Latosha +Lora +Lorraine +Princess +Rochelle +Shaneka +Tanika +Teri +Tiffani +Ashleigh +Beatrice +Belinda +Celeste +Connie +Darlene +Gretchen +Janna +Loretta +Shamika +Sharonda +Wanda +Aileen +Alexia +Alyson +Cortney +Daniel +Eileen +Georgia +Gwendolyn +Jana +Joann +Jordan +Judy +Maggie +Mandi +Melisa +Mercedes +Mia +Nora +Selena +Sheri +Tammie +Yesenia +Abby +Alanna +Angelique +Bernadette +Billie +Bobbi +Callie +Caridad +Chantel +Chasity +Christopher +Dionne +Hollie +Janine +Kassandra +Kirsten +Liza +Marisol +Marsha +Ruby +Selina +Shantel +Tami +Tania +Adrian +Alisa +Anastasia +Beatriz +Cari +Debbie +Edna +Gail +Glenda +Jayme +Lucy +Marcia +Nadine +Briana +Brianne +Chiquita +Christal +Deidre +Edith +Geraldine +Gladys +Ivy +Janell +Kacey +Latara +Lea +Lucinda +Lyndsey +Nicolette +Racheal +Rene +Shawn +Sherika +Taryn +Tawana +Tera +Tessa +Tracie +Trina +Aja +Alejandra +Alma +Candi +Chastity +Cheri +Cherie +Cori +Corinne +Daniela +Hayley +Jeanine +Joan +Kendall +Lakeshia +Larissa +Lashanda +Lashawn +Leann +Lee +Lynda +Marian +Maribel +Sally +Simone +Arielle +Ashlie +Candy +Catrina +Chantal +Christi +Ileana +Ingrid +Irma +Janie +Jeanie +John +Kerline +Latoyia +Lawanda +Lena +Lisette +Lorena +Lynette +Margarita +Olga +Penny +Rhiannon +Ronda +Shalonda +Shantell +Shari +Sonja +Tanesha +Terra +Tiara +Antonia +Candis +Carey +Celina +Charmaine +Dena +Dixie +Elisha +Elsa +Helena +Jodie +Josephine +Kandice +Karin +Ladonna +Loren +Madeline +Marina +Maritza +Maya +Myra +Portia +Rena +Renata +Roberta +Shaina +Shakira +Shanta +Shemeka +Sherrie +Sofia +Tiffanie +William +Adriane +Blair +Breanna +Bridgett +Clara +Dianna +Doris +Farah +Francesca +Francine +James +Jesica +Jody +Justin +Kim +Kristyn +Lois +Loni +Margo +Mariah +Marla +Marquita +Martina +Meaghan +Michell +Monika +Nathalie +Nikia +Roxana +Sharika +Shena +Sheree +Shonda +Sommer +Stacia +Sue +Terry +Tomeka +Wendi +Ariana +Casie +Chanel +David +Deena +Deidra +Deirdre +Devin +Dianne +Dina +Geneva +Georgina +Ivory +Jason +Jeanne +Jeannine +Justina +Kacie +Kaleena +Kandi +Kia +Kimberlee +Larhonda +Laurel +Leeann +Lina +Lola +Lucia +Malinda +Malissa +Mara +Maranda +Mellissa +Milagros +Mildred +Nakia +Raven +Richard +Robert +Rosalie +Shanon +Shawanna +Shelli +Sherly +Sondra +Susana +Takisha +Talia +Tammi +Tenika +Tocarra +Tosha +Valeria +Vicky +Viviana +Angeline +Apryl +Arianna +Athena +Casandra +Cassidy +Chantelle +Chloe +Corey +Cristin +Dora +Emilie +Harmony +Hilary +Jamila +Janessa +Jena +Jeri +Jolene +Jonathan +Jonelle +Josie +Juliana +June +Kali +Karissa +Karyn +Kenyatta +Kiara +Kristan +Latia +Leila +Leona +Lilly +Louise +Lynnette +Marcella +Marta +Martine +Maryann +Misti +Natacha +Richelle +Shante +Sharee +Shawanda +Shayna +Starr +Sunny +Sunshine +Tacara +Tameika +Tarah +Tenisha +Tiana +Tonia +Valarie +Vickie +Wilma +Aida +Alecia +Alena +Alesha +Andria +Angelia +Ashely +Ashlea +Ashli +Brynn +Cameron +Carlie +Cassondra +Celia +Charles +Christiana +Colette +Cristal +Cristen +Daniella +Deana +Deanne +Delores +Demetria +Eleanor +Elise +Elissa +Esmeralda +Florence +Gabriella +Graciela +Hilda +Ida +Jacquelin +Janae +Jeanna +Jenilee +Jeremy +Jo +Joanie +Joi +Julianna +Kaci +Katia +Keely +Kelsey +Kyra +Laci +Lana +Lashawna +Latavia +Lenora +Liliana +Lindy +Lorie +Luisa +Luz +Madelyn +Marion +Maura +Nakisha +Niki +Paola +Ramona +Rebeca +Rosanna +Roseline +Roshonda +Rosie +Roxanna +Shameika +Shanell +Shaquanda +Shavonda +Sheneka +Siobhan +Stephany +Stephenie +Tabetha +Tawanda +Temeka +Tierra +Tonisha +Venessa +Adria +Afton +Alesia +Alexa +Alysia +Anais +Antionette +Anya +Bambi +Bettina +Blanca +Brandee +Brandon +Carin +Cassi +Cathryn +Cecelia +Chaquita +Charis +Chimere +Claudette +Coretta +Corrie +Cory +Crissy +Damaris +Dania +Daniele +Darcy +Eugenia +Fabiola +Falon +Gillian +Ginny +India +Isis +Jackeline +Jackelyn +Jamese +Jammie +Jasmin +Jayne +Jeniffer +Jenniffer +Jesseca +Jessi +Joelle +Juana +Karri +Karrie +Kenisha +Keosha +Kerrie +Keturah +Kisha +Kristian +Kyla +Kyle +Kylee +Laquisha +Lasheena +Lashunda +Latanya +Latarsha +Latesha +Latrese +Latrina +Leanna +Liana +Lila +Linsey +Magdalena +Marcy +Marlana +Marlena +Maxine +Mayra +Mellisa +Mollie +Nakeisha +Natosha +Nichol +Niesha +Phyllis +Quiana +Roseanna +Rosemarie +Sarina +Shalanda +Shandra +Shara +Sharhonda +Sherica +Sierra +Sophie +Stefani +Taccara +Tamisha +Tequila +Thelma +Tiffaney +Vicki +Wilda +Aaron +Abbey +Abbie +Ada +Alia +Althea +Andrew +Anthony +Arianne +Arica +Astrid +Ava +Benjamin +Betsy +Breanne +Britni +Brook +Caressa +Cassey +Catalina +Chelsey +Ciara +Corina +Corrine +Cristy +Daphney +Darla +Dayna +Delilah +Desire +Donielle +Ester +Farrah +Fawn +Felecia +Felisha +Gena +Giovanna +Guadalupe +Guerline +Hazel +Iliana +Jacinta +Jacklyn +Jada +Jaimee +Jan +Jenise +Jenni +Jesenia +Jesse +Jessika +Jihan +Johnna +Joseph +Josette +Julianne +Juliette +Julissa +Kala +Karly +Katina +Katrice +Kenia +Kenyetta +Kiana +Kirstin +Kori +Kortney +Lanita +Laquanda +Laquinta +Laquita +Lashawnda +Latonia +Latoria +Letitia +Lizette +Magda +Mamie +Marcie +Margie +Marguerite +Mariana +Marlyn +Matthew +Meghann +Melina +Micheline +Mona +Myesha +Nakesha +Nicola +Noel +Nydia +Paris +Pauline +Rachele +Raisa +Rayna +Rosalind +Roslyn +Ryann +Samara +Sarita +Scarlett +Shandi +Shani +Shanita +Shantia +Shasta +Shawnta +Shemika +Sherita +Sherley +Silvia +Star +Sybil +Syreeta +Tamala +Tamekia +Tamesha +Tawanna +Teneshia +Terika +Tisha +Tomika +Tori +Tyler +Valencia +Velma +Vera +Xiomara +Yamile +Adam +Adeline +Adrianna +Alethea +Alfreda +Alishia +Amalia +Amee +Ami +Amiee +Angelena +Angelita +Anika +Annamarie +Aundrea +Ayesha +Aymee +Bertha +Brian +Brie +Brigitte +Candance +Carlee +Cary +Cassaundra +Cassy +Cathleen +Chanelle +Charlie +Charline +Clare +Consuelo +Contessa +Cora +Cristine +Danica +Danyell +Danyelle +Davina +Dedra +Delia +Denisse +Dolores +Ebonee +Edeline +Elaina +Ella +Emerald +Eric +Eunice +Eve +Evette +Faye +Gabriela +Genie +Georgette +Geri +Gerline +Glenna +Hailey +Hallie +Holli +Idalmis +Ilana +Jacquelynn +Jaimi +Jamey +Janeen +Jayna +Jazmin +Jeana +Joshua +Jovan +Juliann +Junie +Justine +Kacy +Karie +Karli +Kathrine +Kellee +Kenyada +Kenyata +Kesha +Keshia +Keyonda +Kylie +Lacie +Lacresha +Laine +Lakenya +Lakesia +Lakiesha +Lani +Laronda +Lashaun +Lashondra +Lateisha +Latorya +Latricia +Latrisha +Layla +Lekesha +Lia +Linette +Loreal +Lorna +Lorrie +Louisa +Lucille +Lura +Lyndsay +Mahogany +Marcela +Margot +Mariela +Marlina +Marysol +Maude +Melodie +Merline +Michaela +Mindi +Mirlande +Muriel +Nadege +Naomie +Nastassia +Natashia +Necole +Nicholas +Nickie +Nikole +Noemi +Patrica +Patsy +Paul +Paulette +Paulina +Renae +Rolanda +Rosalyn +Rosita +Shacara +Shakia +Shanae +Shanda +Shane +Shanetta +Shantay +Shareka +Sharron +Shatara +Shaunna +Shavon +Shawntavia +Shellie +Sherell +Sherline +Shyla +Sidney +Sophonie +Stella +Stephaine +Stephani +Stormy +Susanne +Susie +Takeia +Talisa +Tamar +Tamela +Tamera +Tashara +Telicia +Tequilla +Teresita +Terrica +Tess +Thomas +Tiffiany +Timeka +Tyechia +Ursula +Verna +Vianca +Violet +Willie +Yasmin +Yasmine +Yuliana +Jennifer +Jessica +Ashley +Amanda +Melissa +Heather +Stephanie +Christina +Sarah +Nicole +Crystal +Tiffany +Michelle +Elizabeth +Kimberly +Amy +Lauren +Rebecca +Rachel +Amber +Angela +Danielle +Kelly +Lisa +Erin +Megan +Laura +Vanessa +Jamie +Erica +Andrea +Mary +Shannon +Kristen +Alicia +April +Katherine +Samantha +Christine +Lindsey +Kristin +Sara +Jacqueline +Emily +Victoria +Lindsay +Maria +Natalie +Tara +Brandy +Courtney +Holly +Brandi +Brittany +Patricia +Latoya +Natasha +Monica +Kathryn +Julie +Diana +Kristina +Veronica +Catherine +Krystal +Allison +Leslie +Alexis +Stacy +Cynthia +Marquita +Carrie +Katie +Dana +Sandra +Ebony +Erika +Stacey +Barbara +Pamela +Anna +Cassandra +Tracy +Sabrina +Leah +Candice +Desiree +Karen +Denise +Meghan +Katrina +Melanie +Linda +Nichole +Kathleen +Candace +Monique +Susan +Tamara +Valerie +Cristina +Dawn +Julia +Sheena +Kayla +Tina +Alisha +Miranda +Casey +Gina +Kara +Margaret +Teresa +Theresa +Marie +Robin +Tonya +Misty +Stefanie +Deanna +Latasha +Lori +Brooke +Jenny +Tanya +Kristy +Christy +Rebekah +Melinda +Virginia +Tammy +Alexandra +Rachael +Heidi +Cheryl +Jacquelyn +Michele +Chelsea +Jaclyn +Tabitha +Wendy +Carolyn +Alison +Nancy +Felicia +Joanna +Kelli +Krista +Morgan +Renee +Jillian +Sophia +Aimee +Summer +Tasha +Brenda +Adrienne +Yolanda +Kari +Donna +Janet +Sharon +Ana +Marissa +Carla +Angel +Deborah +Joy +Priscilla +Audrey +Bethany +Anne +Meagan +Nina +Ashlee +Charlene +Tia +Toni +Caroline +Jasmine +Robyn +Diane +Evelyn +Jaime +Kristine +Lacey +Whitney +Regina +Shawna +Christie +Meredith +Carmen +Suzanne +Martha +Carly +Tameka +Cindy +Hannah +Kendra +Kristi +Rhonda +Bonnie +Sherry +Autumn +Tabatha +Dorothy +Johanna +Naomi +Shanna +Tamika +Adriana +Ariel +Debra +Jill +Ann +Cara +Carol +Claudia +Colleen +Sylvia +Bridget +Jessie +Marilyn +Melody +Olivia +Sandy +Shirley +Traci +Bianca +Ericka +Rosa +Shayla +Anita +Cassie +Frances +Gloria +Grace +Rose +Shelly +Abigail +Nikki +Paula +Beth +Kathy +Kelley +Krystle +Ruth +Sheila +Angelica +Ashleigh +Brandie +Caitlin +Latonya +Charlotte +Latisha +Lydia +Mindy +Shana +Tracey +Alyssa +Cecilia +Charity +Constance +Elaine +Janice +Jeanette +Kellie +Raquel +Ryan +Terri +Trista +Carolina +Judith +Laurie +Mandy +Staci +Eva +Janelle +Jodi +Roxanne +Sonya +Christen +Sonia +Vivian +Amelia +Beverly +Bobbie +Christa +Kate +Lakisha +Octavia +Sasha +Antoinette +Eileen +Esther +Jade +Kasey +Miriam +Shauna +Taylor +Yvonne +Belinda +Betty +Chrystal +Helen +Jenifer +Jenna +Kenya +Kerri +Leigh +Marisol +Natalia +Christin +Hillary +Jane +Lynn +Marisa +Michael +Sheri +Sherri +Stacie +Anastasia +Jackie +Jacklyn +Jordan +Juanita +Lakesha +Lashonda +Mercedes +Rachelle +Sharonda +Annette +Chantel +Connie +Haley +Jean +Joyce +Keri +Lourdes +Patrice +Shelley +Tatiana +Trisha +Alexandria +Alice +Angelina +Camille +Chanel +Destiny +Hope +Lacy +Lara +Lesley +Molly +Paige +Precious +Tanisha +Tiara +Yvette +Adrian +Amie +Claire +Clarissa +Darlene +Gabrielle +Irene +Jami +Karina +Katharine +Lakeisha +Lillian +Nadia +Tiffanie +Abby +Alana +Chasity +Christopher +Elena +Janine +Karla +Kerry +Mallory +Marsha +Rochelle +Ruby +Shawn +Tania +Toccara +Annie +Brianna +Brittney +Christi +Daphne +Elisha +Hollie +Isabel +Jeannie +Kelsey +Maggie +Margarita +Marjorie +Sally +Shanika +Yesenia +Angie +Caridad +Daisy +Faith +Fallon +Hilary +Kia +Lissette +Loretta +Marianne +Princess +Randi +Shelby +Teri +Ashlie +Audra +Bobbi +Celeste +Devin +Dina +Ingrid +Jocelyn +Jodie +Keisha +Kristal +Latoria +Leann +Leticia +Lorraine +Selena +Shamika +Shari +Taryn +Tricia +Aileen +Alissa +Alyson +Antonia +Brianne +Bridgette +Dena +Dianna +Dwan +Elisa +Elisabeth +Gwendolyn +Janette +Larissa +Marcia +Nathalie +Shantel +Tracie +Alejandra +Alisa +Bridgett +Daniela +David +Devon +Jana +Jeannette +Lyndsey +Mariah +Marla +Maureen +Rhiannon +Rita +Shalonda +Tiffani +Aja +Beatrice +Briana +Cortney +Dara +Dominique +Emma +Ginger +Iris +Ivette +Justine +Latrice +Mandi +Maranda +Marina +Melisa +Nadine +Racheal +Serena +Shameka +Simone +Susana +Tami +Alecia +Becky +Billie +Celia +Cherie +Deidre +Ellen +Ivy +James +Joann +Joanne +Josephine +Kimberley +Kira +Kristie +Laurel +Leanne +Myra +Nora +Olga +Savannah +Aisha +Alexia +Arielle +Brenna +Corey +Dania +Elise +Francesca +Genevieve +Giselle +Hayley +Joni +Justin +Katy +Lakeshia +Latavia +Leeann +Lena +Lisette +Maritza +Shakira +Shaneka +Shayna +Tanesha +Abbey +Alesha +Antionette +Arlene +Blair +Carissa +Charmaine +Daniella +Deana +Debbie +Doris +Felecia +Georgia +Jennie +Jolene +Kirsten +Kyla +Latosha +Lucy +Lynda +Marlene +Meaghan +Peggy +Rosanna +Tangela +Tanika +Terra +Valencia +Wanda +Alaina +Britney +Candy +Carey +Cari +Chandra +Chelsey +Cheri +Chiquita +Christian +Ciji +Daniel +Delia +Janna +Jayme +Joan +Judy +June +Laquita +Lea +Lee +Liza +Lora +Loren +Mari +Noelle +Rene +Roxana +Silvia +Talia +Tequila +Ashli +Aubrey +Bertha +Callie +Caryn +Cassidy +Chantelle +Dannielle +Dayna +Gabriela +Gail +Gretchen +Jeanne +Juliana +Kendall +Laquanda +Lawanda +Madeline +Marlena +Mayra +Mia +Robert +Sherika +Stephaine +Viviana +Alma +Angelique +Bailey +Beatriz +Betsy +Brandon +Candi +Chantal +Christal +Cristy +Deidra +Delores +Geneva +Gladys +Glenda +Ivory +Jody +Kaleena +Ladonna +Latoyia +Lorena +Marcie +Marguita +Martine +Maya +Melina +Mildred +Misti +Mollie +Norma +Raven +Rebeca +Ronda +Shantell +Sharika +Shavon +Sofia +Sommer +Tarah +Tessa +Thomas +Tosha +Tyesha +Vickie +Adrianne +Andria +Asia +Breanna +Casandra +Corrie +Dionne +Dora +Eboni +Ileana +Jackeline +Janie +John +Karin +Karyn +Kassandra +Kristyn +Lashanda +Leanna +Lyndsay +Lynette +Maryann +Matthew +Meghann +Natacha +Nikole +Paola +Rosemary +Sarai +Selina +Shanon +Shatoya +Sheree +Sonja +Tabetha +Tenisha +Tera +Teresita +Ursula +Aida +Alesia +Alexa +Angelia +Anthony +Ashely +Athena +Ayesha +Bernadette +Chastity +Clara +Crissy +Danelle +Demetria +Eleanor +Elyse +Emilee +Emilie +Georgina +Ivonne +Jamila +Jeannine +Jenelle +Jesica +Jesse +Johana +Josie +Joycelyn +Julianne +Kacey +Kala +Kandace +Kandi +Kenyatta +Kevin +Kyle +Lashunda +Latanya +Leila +Letitia +Lillie +Linsey +Louise +Markita +Mattie +Mellisa +Mellissa +Nakisha +Nicki +Nicolette +Noemi +Roberta +Shaina +Shanta +Shanteria +Shaquita +Shawanda +Shenika +Sherrie +Shonda +Susanna +Suzette +Suzie +Tamar +Taneisha +Tess +Valeria +Venessa +Wendi +William +Adrianna +Alanna +Alexander +Alina +Annemarie +Ariana +Arianna +Ashlei +Ashly +Bettina +Blanca +Breanne +Carole +Cathryn +Cathy +Darby +Ebonie +Edna +Elissa +Eugenia +Francine +Gillian +Ginny +Guadalupe +Harmony +Holli +Jaqueline +Jasmin +Jonathan +Joshua +Kaitlyn +Karissa +Karrie +Kathrine +Kenisha +Kerline +Kyra +Lana +Latora +Latricia +Leighann +Liliana +Loni +Luz +Mabel +Marci +Margie +Maribel +Martina +Michell +Natashia +Natosha +Nicolle +Nikia +Patty +Penny +Phyllis +Raina +Rashida +Rosalyn +Shameika +Shanda +Shanel +Shantavia +Shara +Sharhonda +Shemika +Sheryl +Shira +Siobhan +Stefani +Stevie +Susannah +Tamekia +Tashara +Terry +Therese +Tiana +Tierra +Tiesha +Tisha +Tocarra +Trina +Valarie +Adriane +Alisia +Allyson +Amberly +Ami +Asha +Avis +Brian +Brigette +Catrina +Cecelia +Celina +Charline +Cicely +Colby +Colette +Contessa +Cori +Corina +Corinne +Damaris +Darcie +Darcy +Darla +Davina +Deena +Della +Dolores +Eve +Genie +Guerline +Helena +Holley +Ines +Isis +Jacquelin +Jameka +Jammie +Jason +Jeana +Jeanie +Jenni +Jessi +Johnnie +Jordana +Joseph +Julissa +Justina +Katina +Kiara +Kiley +Kirby +Kori +Laci +Latesha +Latia +Lela +Leona +Lina +Lois +Lucia +Lucretia +Malissa +Marcella +Marquitta +Mercy +Milagros +Mindi +Nakia +Natassia +Niki +Noel +Paris +Ramona +Rena +Richelle +Rosalind +Roxanna +Salina +Shanita +Shannan +Shante +Shelli +Shemeka +Star +Starr +Stephenie +Stephine +Sue +Sunshine +Susie +Suzanna +Tacara +Talisha +Tammie +Tawana +Thelma +Tori +Vanesa +Vicki +Willie +Yamile +Yashica +Yessenia +Alberta +Aleisha +Alfreda +Anais +Andrew +Anissa +Ashanti +Aurora +Barbra +Brandee +Candis +Carie +Carina +Carline +Casie +Celisse +Chanda +Chaquita +Charles +Cherish +Chloe +Chrissy +Ciara +Corrine +Cristen +Deirdre +Deloris +Desirae +Dianne +Dixie +Ebonee +Echo +Elana +Elsa +Emilia +Essence +Eunice +Fabiola +Falon +Farah +Farrah +Gisela +Hanna +Ida +Inez +Jan +Jannette +Jeanine +Jeanna +Jena +Jeniffer +Jesenia +Joelle +Julienne +Juliet +Kacie +Kaila +Karie +Kassie +Kera +Keturah +Keyana +Kim +Kimberlee +Lacie +Larhonda +Lashandra +Lashaunda +Lashawnda +Leandra +Leeanne +Lia +Liana +Lidia +Lilian +Lorie +Luisa +Madelin +Maegan +Magan +Mahogany +Mandie +Mara +Marcy +Marion +Markesha +Marta +Moriah +Nicholas +Nicola +Noelia +Porscha +Regine +Risa +Rosario +Rosemarie +Samatha +Shakita +Shala +Shandra +Shanell +Shaquanda +Sharee +Shareka +Shasta +Shaunna +Shaunte +Shena +Shenita +Sherica +Sydney +Takeisha +Tamera +Tamra +Taneka +Tawanna +Temeka +Timothy +Tomika +Travis +Trudy +Valentina +Yadira +Yolonda +Ada +Akira +Alea +Aleshia +Alethea +Ali +Angeline +Bambi +Barbie +Benita +Bilan +Bryan +Cameron +Candie +Carl +Carlisa +Cary +Cassy +Chanell +Chantell +Charise +Clare +Coretta +Cristine +Crystall +Dalia +Dallas +Damarys +Danica +Danika +Dayana +Deann +Desire +Dominque +Drew +Eboney +Elaina +Elishia +Eric +Esmeralda +Estrella +Evelyne +Evette +Fatima +Fawn +Felica +Felisha +Florence +Francis +Francoise +Freda +Frederica +Gayle +Giovanna +India +Irma +Jaimee +Jaimie +Jamey +Jamika +Janae +Janel +Janell +Janessa +Jazmine +Jennette +Jenniffer +Jessenia +Joleen +Jourdan +Juana +Juliette +Junie +Kacy +Kaitlin +Katelyn +Kathlene +Katia +Kendal +Kenia +Keosha +Kesha +Khalilah +Kiana +Kimberely +Krystel +Krystina +Lakenya +Lakia +Lakiesha +Lasheena +Latara +Laticia +Leilani +Letesha +Letisha +Lissa +Lory +Lucinda +Luisana +Lynsey +Madelyn +Magen +Malena +Malinda +Marcus +Maren +Margaux +Marguerite +Mariam +Marian +Maricela +Marietta +Maryanne +Melaine +Meryl +Miesha +Milca +Mona +Monika +Myriam +Nadege +Nastassia +Paul +Paulette +Pauline +Perla +Piper +Rashonda +Rhea +Rosana +Roseline +Roxann +Samara +Sarina +Shakena +Shakeya +Shantoria +Sharita +Sharlene +Shavonda +Shawanna +Sherell +Sherley +Sierra +Sophie +Takeshia +Takisha +Tamela +Tamica +Tana +Tasheka +Tashina +Tavia +Temika +Teneshia +Tenika +Terica +Terrica +Terrie +Tiera +Tonisha +Tyler +Venus +Vicky +Wilda +Xiomara +Yamila +Yasmin +Jennifer +Jessica +Ashley +Amanda +Stephanie +Nicole +Heather +Melissa +Sarah +Christina +Tiffany +Crystal +Elizabeth +Danielle +Michelle +Kimberly +Rachel +Amber +Lauren +Megan +Amy +Rebecca +Kelly +Laura +Angela +Erin +Shannon +Erica +Lisa +Brittany +Katherine +Latoya +Kristen +Samantha +Jamie +April +Vanessa +Christine +Andrea +Mary +Kristin +Sara +Lindsey +Alicia +Jacqueline +Tara +Emily +Victoria +Courtney +Lindsay +Patricia +Monica +Natalie +Brandy +Kristina +Julie +Maria +Brandi +Jenna +Holly +Allison +Katie +Cynthia +Alexis +Diana +Sheena +Kathryn +Krystal +Cassandra +Meghan +Natasha +Catherine +Stacy +Katrina +Alexandra +Veronica +Kathleen +Sandra +Valerie +Dana +Anna +Erika +Melanie +Candice +Karen +Stacey +Joanna +Sabrina +Candace +Tina +Nichole +Tracy +Barbara +Carrie +Misty +Rachael +Teresa +Leslie +Tamara +Morgan +Monique +Margaret +Casey +Leah +Gina +Julia +Cristina +Ebony +Pamela +Chelsea +Jillian +Dawn +Denise +Marquita +Melinda +Theresa +Brooke +Desiree +Susan +Jenny +Kara +Renee +Tabitha +Miranda +Tonya +Whitney +Shana +Tanya +Jasmine +Linda +Deanna +Kristy +Alison +Lacey +Christy +Michele +Virginia +Alisha +Carolyn +Nancy +Rebekah +Latasha +Lori +Tammy +Ana +Priscilla +Kelli +Regina +Dominique +Felicia +Heidi +Robin +Stefanie +Caroline +Cindy +Angel +Jacquelyn +Meredith +Jaclyn +Kayla +Kristine +Marie +Carly +Krista +Carla +Olivia +Tabatha +Tasha +Audrey +Bonnie +Cassie +Meagan +Sharon +Summer +Brenda +Janet +Wendy +Ashlee +Colleen +Deborah +Bethany +Jaime +Bridget +Rhonda +Adrienne +Cheryl +Shanna +Aimee +Alexandria +Kendra +Sophia +Brittney +Carmen +Anne +Evelyn +Kari +Kristi +Yolanda +Donna +Marissa +Shawna +Grace +Hannah +Keri +Charlene +Mindy +Amelia +Jill +Krystle +Mallory +Ann +Autumn +Frances +Nina +Shauna +Shelby +Suzanne +Tia +Diane +Robyn +Rose +Taylor +Carol +Dorothy +Ruth +Tatiana +Rachelle +Sylvia +Kellie +Melody +Shelly +Toni +Beth +Caitlin +Christie +Janice +Joy +Sheila +Tameka +Debra +Jodi +Johanna +Naomi +Stacie +Carolina +Charlotte +Leigh +Ariel +Cara +Judith +Lydia +Rosa +Sonya +Alyssa +Christa +Claudia +Gabrielle +Jenifer +Sherry +Tamika +Abigail +Ericka +Jade +Joyce +Paula +Shayla +Cecilia +Hilary +Kasey +Natalia +Adriana +Ashleigh +Christin +Helen +Jana +Kelley +Audra +Beverly +Bianca +Hope +Lacy +Miriam +Raquel +Gloria +Jessie +Mandy +Antoinette +Christen +Faith +Hillary +Kira +Lara +Latisha +Maggie +Trista +Yvonne +Elena +Kate +Katharine +Lesley +Martha +Precious +Sandy +Savannah +Sherri +Tracey +Angelica +Charity +Chrystal +Elaine +Ellen +Esther +Eva +Karina +Karla +Keisha +Lakesha +Molly +Shelley +Traci +Aubrey +Chantel +Laurie +Nathalie +Nikki +Briana +Brianna +Carissa +Jeanette +Jordan +Kathy +Octavia +Patrice +Tiffani +Aileen +Belinda +Bridgette +Lashonda +Latonya +Latoria +Roxanne +Tiara +Valencia +Vivian +Alana +Annette +Christian +Claire +Clarissa +Constance +Elise +Haley +Jocelyn +Kelsey +Lakeisha +Leanne +Lissette +Maureen +Norma +Randi +Rita +Shayna +Tanisha +Terra +Terri +Abby +Connie +Isabel +Janelle +Kerry +Marilyn +Trisha +Adrian +Brandie +Chasity +Dena +Destiny +Giselle +India +Jami +Jennie +Kristal +Kristie +Lakisha +Nadia +Sally +Sasha +Selena +Shari +Shirley +Tiffanie +Alice +Anastasia +Arielle +Betty +Daisy +Daniela +Daphne +Joann +Juanita +Latrice +Lynn +Marisa +Racheal +Rochelle +Alyson +Angelina +Cassidy +Janine +Jena +Kerri +Leticia +Lyndsey +Paige +Serena +Shameka +Staci +Alissa +Amie +Ashlie +Billie +Breanna +Jackie +Jean +Joan +Kenya +Kirsten +Mia +Ryan +Sheri +Sonia +Teri +Angie +Annie +Antonia +Betsy +Brenna +Caridad +Chandra +Christopher +Cori +Devon +Elisa +Fallon +Joanne +Shaina +Shantell +Yesenia +Alejandra +Anita +Celeste +Celia +Chiquita +Eileen +Elisabeth +Hollie +Jeannie +Jolene +Joni +Lena +Lillian +Mercedes +Princess +Shanika +Tessa +Trina +Aisha +Allyson +Chanel +Christi +Cortney +Daniel +Darlene +Dianna +Jayme +Lashawn +Laurel +Loren +Lourdes +Maritza +Taryn +Tera +Wanda +Alesha +Alina +Alma +Becky +Callie +Chelsey +Ginger +Hayley +Ingrid +Iris +James +Julianne +Larissa +Leann +Marjorie +Olga +Ruby +Shantel +Sheryl +Tania +Tricia +Yvette +Blair +Bobbie +Brianne +Britney +Debbie +Eboni +Emma +Irene +Jacklyn +Janette +Josephine +Judy +Katy +Kim +Lee +Lora +Lorraine +Maryann +Michael +Noel +Robert +Ashely +Beatriz +Cari +Charmaine +Doris +Ivette +Janie +Jeannette +Kali +Lucia +Margarita +Marsha +Nadine +Noelle +Nora +Shalonda +Shamika +Sharonda +Adrianne +Asia +Beatrice +Cameron +Chantal +Christal +Corey +Corinne +Daniella +Demetria +Elisha +Francesca +Genevieve +Jane +Jody +Juliana +Justine +Kacie +Kassandra +Lashawnda +Liza +Marcia +Meaghan +Peggy +Penny +Shakira +Shaneka +Shawn +Sherika +Simone +Alanna +Andria +Ariana +Arlene +Brittani +Candy +Cathy +Cecelia +Cherie +Deana +Devin +Elissa +Gwendolyn +Jasmin +Joshua +Katelyn +Kendall +Lacie +Latosha +Leeann +Loretta +Lyndsay +Madeline +Marcella +Maribel +Marina +Matthew +Michaela +Nicolette +Raven +Rhiannon +Shanell +Shara +Shellie +Sherrie +Stephany +Tammie +Tierra +Alisa +Ashly +Cheri +Clara +Dara +David +Dianne +Dina +Elyse +Eugenia +Felecia +Francine +Gabriela +Georgette +Gretchen +Janell +Jeri +John +Juliette +Justina +Kandice +Kathrine +Katia +Kimberley +Kristian +Laci +Lashanda +Lea +Leilani +Lynette +Mandi +Markita +Marla +Melisa +Mollie +Nakia +Paola +Selina +Shenna +Shonda +Stephaine +Tabetha +Tangela +Tawanna +Yasmin +Abbey +Angelique +Ava +Bobbi +Brian +Bridgett +Candi +Carina +Dixie +Gail +Georgia +Glenda +Ivy +Jenni +Jodie +Kandace +Kristyn +Lana +Laquanda +Laquisha +Latavia +Latricia +Lawanda +Leanna +Linsey +Magen +Mara +Maranda +Mariana +Marianne +Marlene +Marta +Nikia +Noemi +Rena +Roberta +Roxana +Teela +Tori +Tracie +Valarie +Alecia +Anais +Athena +Carey +Casandra +Cathryn +Cherish +Darcy +Darla +Dionne +Farah +Geraldine +Ileana +Jeanne +Jonathan +Kaitlyn +Kalyn +Keely +Layla +Lizette +Lorena +Marian +Marlena +Marquitta +Martina +Mayra +Natosha +Niki +Phyllis +Rebeca +Rhea +Rikki +Rosemary +Shanta +Sharina +Shenika +Sheree +Silvia +Sofia +Susana +Takara +Talia +Tami +Tarah +Toccara +Vanesa +Vera +Vicky +Wendi +Adriane +Alaina +Amalia +Antionette +Ashlea +Aurora +Bailey +Brandee +Brandon +Breanne +Brett +Brynn +Candis +Daphney +Desirae +Dorian +Dulce +Edna +Eleanor +Elicia +Felisha +Gabriella +Gayle +Geneva +Gillian +Helena +Hilda +Holley +Jamila +Janel +Janessa +Johana +Joseph +June +Justin +Kacey +Kami +Karin +Katina +Kenyatta +Kimberlee +Kirby +Laquita +Lina +Lisette +Mackenzie +Maegan +Mari +Maya +Milagros +Natacha +Nikita +Roxanna +Santana +Sarina +Shante +Shaquita +Shareka +Shena +Tawanda +Tyler +Viviana +Aaron +Adria +Alexia +Ali +Annmarie +Anthony +Bernadette +Britni +Carley +Carlie +Carlos +Caryn +Catalina +Chantelle +Chastity +Cheyenne +Ciara +Cody +Cory +Crista +Cristin +Cristine +Cristy +Dalia +Deanne +Deena +Dora +Edith +Eliza +Emilia +Emilie +Emmanuela +Eryn +Farrah +Guadalupe +Ivory +Jackelyn +Jesse +Jessi +Jewel +Kaitlin +Kaley +Karrie +Katheryn +Kati +Kristan +Krystin +Kyla +Lashay +Latesha +Lorna +Luz +Lynda +Malissa +Marisol +Mellisa +Mildred +Monika +Nichelle +Ramona +Rosalinda +Rosalyn +Rosanna +Sandi +Sarai +Shatoya +Shavon +Shawana +Sierra +Sonja +Starla +Stephani +Stevie +Tamra +Tanika +Tegan +Temeka +Tosha +Vickie +Xiomara +Ada +Aja +Alycia +Alyse +Ami +Andrew +Angeline +Anya +Asha +Bernice +Blanca +Candie +Carolann +Casie +Celisse +Chanell +Chanelle +Charissa +Chelsie +Cherrelle +Chimere +Ciji +Colette +Cora +Cristal +Damaris +Danelle +Dania +Daniell +Danyell +Deidre +Denisha +Dominque +Ebonie +Elaina +Fatima +Florence +Francis +Hanna +Harmony +Jaqueline +Jason +Jerri +Jonelle +Josie +Joycelyn +Juana +Julissa +Kacy +Kayce +Kenneth +Kenyetta +Kevin +Kourtney +Kyle +Kylie +Latia +Liana +Lucinda +Lucy +Lynnette +Lynsey +Malinda +Margo +Maricela +Mariel +Marquetta +Mattie +Meggan +Meghann +Melina +Nataly +Paulette +Pauline +Porsha +Racquel +Reina +Rosalie +Rosalind +Savanna +Shakelia +Shandra +Shannan +Sharla +Shawanda +Shea +Sheneka +Shira +Sommer +Sondra +Stefani +Stephenie +Sue +Suzanna +Sydney +Takia +Tammi +Tenesha +Tenisha +Tequila +Tequilla +Therese +Tiana +Tiffaney +Tiffiny +Tracee +Treva +Valeria +Venessa +Windy +Yajaira +Yamile +Adeline +Alessandra +Alysha +Angelia +Apollonia +Apryl +Ashanti +Ashlei +Ashli +Astrid +Ayana +Benita +Bettina +Brittny +Bryan +Camille +Carli +Catrina +Celina +Chantell +Charlee +Consuelo +Coral +Corrie +Dallas +Danise +Danyel +Dayna +Delia +Delores +Denice +Devan +Donielle +Emerald +Fabiola +Franchesca +Georgina +Gisselle +Gracie +Harriet +Ida +Isabelle +Isis +Ivonne +Janna +Jeana +Jeanine +Jenelle +Jenise +Jesica +Jessika +Jo +Joana +Joanie +Johnnie +Josette +Julianna +Kanesha +Kanisha +Karli +Karyn +Kasandra +Kay +Keeley +Keosha +Kera +Kerrie +Keyona +Kori +Kylene +Laila +Lakeshia +Lashaunda +Latoyia +Latrell +Latrina +Lavonda +Leandra +Leighann +Leila +Lela +Lilia +Liliana +Logan +Loni +Lucretia +Luisa +Mabel +Magan +Magdala +Mailyn +Marci +Marcy +Marion +Martine +Maxine +Merissa +Merline +Meryl +Nastassia +Nedra +Nicholas +Portia +Rene +Renita +Rina +Ronda +Rosanne +Salena +Salina +Sarita +Scarlett +Shakina +Shakita +Shala +Shamira +Shanae +Shani +Shaniqua +Shanita +Shanon +Shantelle +Shaquana +Shaquanda +Sharell +Sharika +Sharita +Shaunna +Shelia +Siobhan +Skye +Spring +Stacia +Starr +Steffanie +Sunshine +Susanne +Tamar +Tamica +Taneisha +Tanesha +Tasia +Terry +Thelma +Thomas +Tiesha +Tocarra +Tomeka +Tonia +Adela +Adina +Aida +Aleshia +Alex +Alexander +Alishia +Alisia +Allyssa +Alvina +Alysia +Anitra +Annemarie +Ayasha +Bertha +Blaine +Blaire +Blythe +Breana +Brigette +Brigitte +Camilla +Carie +Carline +Carlyn +Carole +Chanta +Charis +Cheree +China +Chloe +Chrissy +Christan +Claudine +Cornelia +Corrine +Cristen +Cyrstal +Danae +Daniele +Davina +Deandra +Deandrea +Deidra +Deirdre +Della +Demetrice +Desarae +Desire +Diandra +Echo +Edwina +Elana +Elda +Ella +Eric +Ethel +Eunice +Flora +Fredricka +Gia +Gladys +Hallie +Hazel +Iesha +Iliana +Ines +Jackeline +Jada +Jamesha +Jammie +Jan +Janae +Jannette +Jasmyne +Jeffrey +Jeniffer +Jesseca +Joelle +Joi +Jolie +Josefina +Joslyn +Kaci +Kandis +Karissa +Katarina +Katelin +Katlyn +Katrice +Kaylan +Kellee +Kellyn +Kesha +Kiara +Kylee +Kymberly +Kyra +Ladonna +Lakendra +Larhonda +Latoia +Lazara +Lidia +Lillie +Lindy +Lolita +Louise +Madelyn +Magda +Manda +Marcela +Marguerite +Mariah +Mariam +Marilee +Mayte +Melba +Miesha +Milissa +Nakisha +Natali +Nathalia +Nena +Nichol +Nicki +Patti +Paulina +Pearl +Rashida +Rashonda +Richard +Risa +Ronald +Roseanna +Roshonda +Sabine +Sabrena +Shakeila +Shaketa +Shanee +Shaneika +Shantavia +Sharena +Sharmaine +Sharyl +Shatara +Shawntavia +Shawnte +Shelli +Shenita +Sherica +Sherita +Somer +Stefany +Stella +Stevi +Stormy +Susie +Suzette +Tacarra +Tamekia +Tanishia +Tashara +Tashia +Tavia +Tawny +Tenika +Thomasina +Thuy +Tonika +Tristan +Ursula +Velma +Willa +Willie +Yadira +Yamilet +Yecenia +Yessenia +Jessica +Ashley +Jennifer +Amanda +Stephanie +Heather +Nicole +Melissa +Christina +Sarah +Tiffany +Brittany +Crystal +Elizabeth +Danielle +Lauren +Megan +Amber +Rachel +Michelle +Kimberly +Laura +Samantha +Amy +Rebecca +Jamie +Kelly +Erica +Kristen +Shannon +Angela +Vanessa +Sara +Katherine +Mary +Erin +Lisa +Lindsey +Andrea +April +Christine +Alicia +Emily +Kristina +Natalie +Courtney +Krystal +Kristin +Victoria +Latoya +Lindsay +Tara +Allison +Jacqueline +Kathryn +Jenna +Monica +Julie +Maria +Katie +Patricia +Brandy +Dominique +Brandi +Holly +Meghan +Natasha +Katrina +Stacy +Anna +Catherine +Alexandra +Cynthia +Whitney +Diana +Alexis +Sheena +Brittney +Erika +Veronica +Kathleen +Candice +Leah +Cassandra +Melanie +Rachael +Pamela +Leslie +Sandra +Dana +Candace +Nichole +Barbara +Karen +Julia +Tina +Valerie +Chelsea +Cristina +Felicia +Stacey +Sabrina +Casey +Jasmine +Krystle +Tracy +Carrie +Denise +Margaret +Tabitha +Melinda +Linda +Meagan +Morgan +Monique +Summer +Angel +Tamara +Brooke +Desiree +Gina +Alison +Caitlin +Kara +Ebony +Ashlee +Nancy +Susan +Deanna +Dawn +Misty +Tonya +Jaclyn +Jacquelyn +Jillian +Teresa +Christy +Renee +Bethany +Caroline +Joanna +Alisha +Marie +Priscilla +Tanya +Carolyn +Christie +Lacey +Robin +Miranda +Cindy +Regina +Ana +Theresa +Kristy +Mallory +Sharon +Deborah +Jaime +Kristi +Marissa +Jenny +Hannah +Kari +Cheryl +Kayla +Michele +Krista +Rebekah +Brenda +Kendra +Latasha +Sierra +Carmen +Sophia +Virginia +Aimee +Audrey +Carly +Nina +Shanna +Yolanda +Joy +Shana +Tasha +Carla +Kelli +Kristine +Donna +Raquel +Stefanie +Toni +Alyssa +Cassie +Charlene +Wendy +Alexandria +Bridget +Lori +Meredith +Paula +Tammy +Adrienne +Bonnie +Cara +Olivia +Colleen +Heidi +Debra +India +Jocelyn +Shawna +Taylor +Tia +Sherry +Abigail +Alana +Charlotte +Elena +Gloria +Janelle +Janet +Jessie +Mandy +Savannah +Autumn +Ann +Keri +Anne +Claudia +Dorothy +Molly +Rachelle +Robyn +Angelica +Cierra +Jill +Naomi +Sylvia +Diane +Haley +Hope +Nikki +Tamika +Adriana +Ashleigh +Charity +Evelyn +Frances +Judith +Mindy +Sasha +Shelly +Tabatha +Trisha +Amelia +Carol +Kate +Katelyn +Sheila +Chiquita +Helen +Jeanette +Kerri +Traci +Bianca +Ciara +Elise +Jodi +Johanna +Lakeisha +Melody +Patrice +Rose +Ruth +Terri +Ericka +Jenifer +Randi +Shayla +Suzanne +Betty +Christa +Grace +Lydia +Marquita +Precious +Aubrey +Gabrielle +Janice +Jordan +Kelley +Martha +Rhonda +Rosa +Shirley +Carolina +Claire +Hilary +Keisha +Leigh +Lissette +Shauna +Tatiana +Antoinette +Brandie +Brianna +Christopher +Latisha +Shelby +Angelina +Esther +Laurel +Mercedes +Nathalie +Rita +Shayna +Fallon +Hillary +Karla +Sade +Shari +Sonia +Britney +Cortney +Kristie +Lillian +Lourdes +Paige +Rosemary +Tameka +Taryn +Ashlie +Bobbie +Elaine +Faith +Hayley +Justine +Lacy +Laurie +Rochelle +Annette +Annie +Beverly +Brittani +Carissa +Christen +Christin +Irene +Jade +Kathy +Kellie +Shantel +Staci +Allyson +Beth +Blair +Connie +Francesca +Jana +Kaitlin +Marjorie +Tanisha +Tiffani +Adrian +Constance +Kasey +Kendall +Lakisha +Lara +Lyndsey +Marilyn +Michael +Roxanne +Shelley +Sonya +Tracey +Vivian +Alisa +Angie +Cecilia +Chantal +Chrystal +Corey +Daphne +Darlene +Jeannie +Kaley +Karina +Katy +Kelsey +Kristal +Valencia +Yvette +Alyson +Belinda +Isabel +Jami +Jasmin +Jena +Juanita +Kaitlyn +Kira +Lakesha +Latonya +Marisa +Nadia +Noelle +Alissa +Ariel +Chantel +Debbie +Deidre +Eva +Jackie +Jean +Meaghan +Melisa +Ryan +Sandy +Tierra +Alice +Amie +Audra +Briana +Bridgette +Christian +Devin +Gabriela +Genevieve +Iris +Janette +Katharine +Kirsten +Loren +Marianne +Miriam +Serena +Stacie +Yvonne +Abby +Aileen +Alina +Ciera +Daniela +Daniella +Eileen +Julianne +Lakeshia +Lynn +Mackenzie +Octavia +Santana +Adrianne +Alecia +Anita +Billie +Chanel +David +Dayna +Dianna +Elisa +Elisabeth +Emma +Hollie +Jayme +Kristan +Maggie +Maureen +Racheal +Selena +Shawn +Sherri +Tiffanie +Beatrice +Brenna +Chloe +Dominque +Joann +Josephine +Kimberley +Lesley +Micaela +Sally +Shameka +Shanika +Shante +Tracie +Ashely +Britni +Chasity +Christi +Ivette +Jane +Janine +Jennie +Jodie +Kerry +Krystina +Lucy +Marisol +Natalia +Norma +Ruby +Sheri +Yesenia +Anastasia +Beatriz +Brianne +Callie +Christal +Daisy +Destiny +James +Joan +Judy +Kenya +Kia +Latoria +Lawanda +Lena +Lorena +Loretta +Lucia +Maranda +Marcia +Margarita +Pauline +Shaina +Tania +Tessa +Tiara +Tricia +Trista +Viviana +Anais +Camille +Clarissa +Corinne +Devon +Eboni +Joanne +Jolene +Joyce +Juliana +Lana +Lashonda +Liliana +Lorraine +Marlene +Marsha +Olga +Princess +Terra +Alejandra +Arlene +Blanca +Bridgett +Casandra +Chandra +Chelsey +Cherie +Doris +Elyse +Georgia +Ginger +Gwendolyn +Justina +Kassie +Kristyn +Leann +Lora +Luz +Mayra +Robert +Shakita +Shamika +Sharonda +Sofia +Sydney +Vicky +Ashli +Ashly +Breanna +Cathy +Celia +Clara +Cori +Cristy +Edith +Giselle +Janna +Jeannette +Kacey +Kassandra +Kerrie +Keshia +Lashanda +Latrice +Leanne +Matthew +Mellissa +Nadine +Rebeca +Shakira +Shantavia +Shaquita +Susana +Wanda +Alaina +Ariana +Arielle +Britany +Cari +Celeste +Charmaine +Daniel +Dannielle +Deandra +Dena +Dionne +Edna +Elisha +Ellen +Geneva +Jacklyn +Janessa +Janie +Jessenia +Keosha +Lashawn +Lisette +Lucinda +Magen +Mariana +Meghann +Mia +Noemi +Roberta +Selina +Shardae +Sherrie +Talia +Tangela +Teri +Tiana +Becky +Bobbi +Brandee +Catrina +Chantelle +Cristin +Dania +Delilah +Demetria +Eric +Gena +Gretchen +Jesica +Juliette +Kacy +Katheryn +Kathrine +Katina +Kyla +Kyle +Ladonna +Larissa +Lee +Leeann +Lyndsay +Marisela +Maryann +Nakia +Peggy +Penny +Rene +Rosanna +Shandra +Shea +Sherika +Silvia +Sonja +Stephany +Tami +Tammie +Tarah +Trina +Yarenis +Aisha +Amberly +Ami +Antonia +Athena +Brandon +Celina +Dara +Deidra +Dina +Dolores +Elaina +Felisha +Gabriella +Geraldine +Gladys +Hailey +Ivy +Jason +Jody +June +Kati +Kayleigh +Kourtney +Laquanda +Laquita +Latavia +Latesha +Lea +Leanna +Michaela +Nataly +Nicholas +Nicolle +Paulette +Rhiannon +Rosalyn +Rosemarie +Roxana +Shaneka +Shareka +Suzanna +Tabetha +Tanika +Tasia +Tiera +Tonia +Valeria +Alia +Alona +Alyse +Andria +Betsy +Cameron +Candyce +Carey +Casie +Cecelia +Corrie +Danyelle +Deana +Deena +Denisha +Falon +Felecia +Glenda +Joni +Joseph +Justin +Kandice +Karyn +Latoyia +Leighann +Lily +Linsey +Lynsey +Madeline +Mariah +Marta +Mollie +Niki +Nikole +Noel +Nora +Paola +Porsha +Raven +Shannan +Shantrell +Shena +Simone +Suzette +Tawanna +Tera +Tosha +Wendi +Alena +Alysia +Anika +Annmarie +Candi +Candy +Caridad +Carley +Carlie +Cary +Cassidy +Cody +Cyrstal +Damaris +Deann +Desirae +Domonique +Drew +Eleanor +Elicia +Elissa +Farah +Florence +Gail +Helena +Holli +Ileana +Jazmin +Jeanna +Jenni +Joshua +Kacie +Katia +Kesha +Lashawnda +Latosha +Lois +Maegan +Magdalena +Mandi +Margo +Maribel +Maricela +Maritza +Marla +Misti +Nicolette +Odalys +Ronda +Sadie +Shanta +Shantell +Shavon +Shawanda +Shawnta +Siobhan +Stefani +Stephenie +Tameika +Tamra +Taneisha +Alanna +Alexander +Alexia +Alma +Alycia +Alysha +Antionette +Aubree +Aundrea +Bailey +Bernadette +Bessie +Breanne +Brittaney +Brittni +Caitlyn +Camilla +Candis +Carina +Cathleen +Cheyenne +Colby +Cristal +Cyndi +Dalia +Darcy +Darla +Diandra +Dulce +Ethel +Fawn +Francis +Georgette +Georgina +Gianna +Gillian +Graciela +Guadalupe +Harmony +Holley +Isis +Jaimie +Jeanine +Jenniffer +Jerrica +Johana +Jonathan +Karin +Karissa +Keely +Kerline +Kiara +Kimberlee +Krystin +Kylie +Laci +Lacie +Leticia +Lorna +Luisa +Magan +Malinda +Marcie +Marina +Marlena +Martina +Maura +Merline +Milagros +Pearl +Portia +Ramona +Richelle +Rikki +Sarai +Savanna +Shanice +Shanita +Shantae +Shaquana +Sharday +Sharhonda +Sharina +Shawntavia +Shenika +Shenna +Sheryl +Shonda +Sommer +Steven +Susie +Tanesha +Tenisha +Terry +Theodora +Toya +Tristan +Tyler +Tyra +Valentina +Valorie +Vickie +William +Abbey +Alesha +Alexa +Alexandrea +Alfreda +Angeline +Angelita +Ashton +Bernice +Bettina +Brett +Brittanie +Cali +Carline +Carole +Caryn +Charisse +Chassity +Cheri +Cherise +Clarice +Coral +Corie +Crystle +Dayana +Dixie +Dora +Eliza +Emilee +Esperanza +Francine +Gisela +Iliana +Ingrid +Jacinda +Jackelyn +Jamila +Janis +Jaqueline +Jesse +Jessika +Joana +Juana +Julianna +Julissa +Kaleigh +Kali +Karrie +Kasandra +Keila +Keli +Kenyetta +Keturah +Kiley +Kirby +Kristian +Krysten +Leandra +Leila +Lila +Logan +Lynette +Malorie +Marcella +Marian +Marion +Meggan +Mellisa +Melodie +Micah +Monika +Natacha +Nicki +Nikia +Pilar +Quiana +Racquel +Rayna +Renae +Renata +Renita +Salena +Samatha +Scarlett +Shalonda +Shanell +Shara +Sharde +Sharena +Sharika +Shawana +Shelia +Shellie +Shera +Sheree +Sherilyn +Starla +Sunny +Tacara +Tamera +Tana +Taren +Tarra +Thelma +Tiffiny +Ursula +Valarie +Vanna +Venessa +Vicki +Aaron +Adam +Alishia +Allie +Andrew +Angelia +Angelique +Apollonia +Arianne +Asia +Aurora +Ava +Barbie +Bertha +Blake +Bobby +Brian +Brigette +Brigitte +Britteny +Brittny +Brook +Camila +Carli +Carlyn +Catalina +Catlin +Charles +Chastity +Chelsy +Christinia +Cora +Cory +Cristen +Danica +Daniele +Dedra +Deondra +Devan +Dianne +Dionna +Elsa +Elysia +Eugenia +Eunice +Eve +Fabiola +Fatima +Felica +Fiona +Franchesca +Francisca +Ginny +Giovanna +Halley +Ida +Infant +Ivonne +Jada +Jameka +Jamika +Janell +Jaymie +Jeana +Jenelle +Jeniffer +Jennefer +Jessalyn +John +Jonelle +Josie +Juliann +Juliet +Kallie +Kandace +Kandis +Kay +Kenisha +Kenyatta +Kevin +Khristina +Kiera +Kiesha +Kim +Kimberli +Laquisha +Larhonda +Laronda +Lashannon +Lashundra +Latashia +Leona +Lizbeth +Loni +Lotoya +Madeleine +Madonna +Marcy +Margie +Mari +Martine +Maxine +Maya +Meagen +Melaine +Michell +Mirlande +Myra +Natashia +Natavia +Natosha +Nichol +Nikita +Paris +Phoebe +Phyllis +Rachal +Rachell +Raina +Rashida +Reva +Reyna +Roxanna +Salina +Sandi +Sarina +Shakia +Shanon +Shantia +Shasta +Shatoya +Shavonda +Shawanna +Sheana +Shelli +Somer +Sophie +Stephen +Stevie +Stormy +Sue +Susannah +Susanne +Takesha +Tamar +Tamesha +Tashara +Teela +Teena +Thomas +Tisha +Toccara +Tori +Vanesa +Vera +Xiomara +Yamile +Yasmin +Yessenia +Zoe +Adrianna +Afton +Alessandra +Alisia +Allana +Allegra +Amaris +Ananda +Andreia +Anissa +Annemarie +Ansley +Arianna +Arleen +Aryn +Ashlea +Autum +Benjamin +Britt +Brittan +Cammie +Casi +Cassaundra +Cassi +Cathryn +Cayce +Chanelle +Chelsi +Chelsie +Chris +Christan +Cinthia +Cinthya +Claudette +Cleo +Coleen +Colette +Collette +Courtenay +Cristie +Daniell +Danyel +Davida +Deanne +Delores +Dorian +Ebonie +Eden +Emilie +Enjoli +Ernestina +Eryn +Esmeralda +Evette +Farrah +Flora +Glenna +Gracie +Hallie +Iesha +Ilana +Ivory +Jackeline +Jacquelin +Jamia +Janely +Janita +Jayne +Jeanie +Jeanne +Jeannine +Jenise +Jeri +Jesenia +Josefina +Junia +Kaci +Kadie +Kailey +Kalie +Kalyn +Kandi +Katara +Kaylie +Kedra +Keena +Keira +Keith +Kellee +Keondra +Kiana +Kori +Kortney +Kristel +Krizia +Krystel +Kyra +Laila +Laken +Lashondra +Lashunda +Latanya +Latarsha +Lateshia +Latia +Laticia +Layla +Leeanne +Lia +Liana +Lillie +Lizette +Lola +Louise +Lucretia +Lynda +Lynne +Madison +Makeda +Mallary +Marcela +Marci +Maren +Margaux +Markita +Maryanne +Mayte +Micheal +Mikaela +Mindi +Minnie +Muriel +Myesha +Myrlande +Nakisha +Nastassia +Nelly +Niccole +Nikesha +Nova +Phillip +Pia +Rae +Rashonda +Reba +Rebbecca +Rolanda +Roshonda +Rosie +Samara +Scarlet +Shakeria +Shala +Shane +Shanequa +Shantay +Shantelle +Shanteria +Sharee +Sharell +Sharita +Sharlene +Shatavia +Shaunte +Shavonne +Shemika +Sherena +Sheria +Shira +Shontae +Siara +Sirena +Skye +Stacia +Stephaine +Takia +Talitha +Tamela +Taneka +Tasheena +Tashina +Tawana +Tawanda +Tegan +Temeka +Teneshia +Tequila +Terrica +Tiarra +Tifany +Tocarra +Tonisha +Tory +Whittney +Windy +Yolonda +Zachary +Jessica +Ashley +Amanda +Jennifer +Brittany +Sarah +Stephanie +Heather +Nicole +Tiffany +Melissa +Amber +Danielle +Christina +Lauren +Elizabeth +Megan +Samantha +Crystal +Kimberly +Rachel +Michelle +Amy +Rebecca +Kelly +Laura +Katherine +Shannon +Vanessa +Whitney +Courtney +Erica +Jamie +Sara +Angela +Kristen +Lindsey +Erin +Emily +Andrea +Mary +Christine +Lisa +Natalie +Alicia +Victoria +Kristina +Kristin +Krystal +Katie +Jacqueline +April +Patricia +Allison +Lindsay +Monica +Kathryn +Jenna +Brittney +Maria +Brandy +Tara +Alexandra +Holly +Cassandra +Catherine +Erika +Julie +Natasha +Brandi +Diana +Anna +Chelsea +Latoya +Cynthia +Casey +Katrina +Dominique +Kathleen +Meghan +Cristina +Felicia +Alexis +Stacy +Veronica +Leslie +Sabrina +Leah +Kayla +Jasmine +Rachael +Valerie +Dana +Krista +Brooke +Caitlin +Stacey +Sandra +Melanie +Ebony +Kendra +Tracy +Morgan +Karen +Candice +Krystle +Candace +Gina +Carrie +Mallory +Barbara +Alyssa +Tamara +Julia +Monique +Kara +Pamela +Tabitha +Ashlee +Nichole +Meagan +Margaret +Robin +Sierra +Marie +Alisha +Caroline +Susan +Bethany +Denise +Nancy +Renee +Carla +Joanna +Melinda +Virginia +Britney +Jordan +Christa +Jaclyn +Nikita +Jillian +Teresa +Ana +Linda +Sharon +Angel +Meredith +Miranda +Sheena +Summer +Alison +Tina +Marissa +Sade +Deanna +Hannah +Rebekah +Desiree +Kristy +Tonya +Christy +Priscilla +Theresa +Kelli +Carolyn +Angelica +Misty +Ciara +Deborah +Kristi +Michele +Brenda +Kristine +Brianna +Jacquelyn +Lacey +Savannah +Tatiana +Christie +Latasha +Regina +Stefanie +Aimee +Ashleigh +Shana +Jaime +Kelsey +Tasha +Audrey +Olivia +Suzanne +Tanya +Dawn +Katelyn +Sasha +Cindy +Cara +Cassie +Jessie +Taylor +Wendy +Yolanda +Jenny +Kari +Abigail +Carmen +Donna +Jeanette +Nikki +Adriana +Alexandria +Joy +Randi +Tammy +Heidi +Kaitlin +Keri +Mandy +Robyn +Jade +Janet +Carolina +Molly +Sophia +Adrienne +Evelyn +Haley +Hope +Kasey +Naomi +Sheila +Anne +Bonnie +Frances +Gabrielle +Raquel +Shawna +Ann +Gloria +Kellie +Carly +Charity +Elena +Lydia +Tabatha +Amelia +Antoinette +Cheryl +Cierra +Colleen +Precious +Rose +Tia +Bianca +Bridget +Brittani +Charlene +Eva +Kelley +Melody +Shanna +Ashton +Carol +Grace +Janelle +Lori +Autumn +Charlotte +India +Jocelyn +Karina +Kate +Toni +Rachelle +Trisha +Allyson +Elise +Hayley +Karla +Lyndsey +Nathalie +Nina +Roxanne +Sherry +Yesenia +Chiquita +Dorothy +Jill +Katharine +Ruth +Diane +Esther +Kaley +Rhonda +Shaina +Shirley +Traci +Briana +Clarissa +Claudia +Kayleigh +Kerri +Shelby +Stacie +Sylvia +Ariel +Emma +Francesca +Hillary +Latisha +Marilyn +Marisa +Martha +Natalia +Tiara +Tiffani +Angelina +Beth +Johanna +Kerry +Kristie +Leigh +Shelly +Sonia +Vivian +Faith +Joanne +Joyce +Mindy +Terri +Chantel +Christian +Ciera +Elyse +Ericka +Jenifer +Juanita +Judith +Maggie +Michael +Patrice +Ryan +Shantel +Shelley +Tanisha +Anita +Chasity +Christen +Daniella +Elaine +Justine +Latonya +Nadia +Yvonne +Brandie +Brianne +Carissa +Devin +Elisabeth +Janice +Keisha +Lakeisha +Sandy +Tania +Tracey +Jena +Jodi +Kathy +Lillian +Mercedes +Shayla +Tierra +Alaina +Alana +Belinda +Cecilia +Chloe +Daniela +Eileen +Gabriela +Jana +Lucy +Madison +Miriam +Paula +Princess +Rosa +Sally +Shayna +Yvette +Alyson +Annie +Beverly +Christopher +Daisy +Ellen +Gabriella +Genevieve +Kristal +Laurie +Marisol +Paige +Shari +Shauna +Sheri +Aileen +Alma +Annette +Aubrey +Chanel +Chelsey +Claire +Cortney +Debra +Elisha +Gwendolyn +Helen +Irene +Julianne +Lynn +Octavia +Staci +Stephany +Valencia +Arielle +Ashely +Audra +Bridgette +Christin +Chrystal +Constance +Cory +Darlene +Giselle +Jami +Kaitlyn +Lakisha +Lara +Marquita +Serena +Shameka +Sonya +Tamika +Terra +Abby +Alexa +Alice +Alissa +Beatrice +Blair +Callie +Daphne +Hilary +Ingrid +Isabel +Jennie +Latavia +Lissette +Lorena +Tameka +Angie +Ashlie +Betty +Brenna +Chantelle +Connie +Deidra +James +Jane +Janine +Jasmin +Kassandra +Keshia +Kira +Maegan +Mariah +Marjorie +Mia +Tiffanie +Asia +Bobbie +Fallon +Hollie +Jaimie +Kacie +Katy +Marcia +Maritza +Sharonda +Sheryl +Tessa +Tricia +Camille +Felisha +Jesse +Joshua +Kaylee +Kendall +Kristan +Lakeshia +Latoria +Latrice +Madeline +Marlene +Racheal +Alejandra +Ali +Alysia +Bobbi +Bridgett +Britany +Casandra +Celeste +Chantal +Corey +Damaris +Destiny +Guadalupe +Iris +Ivy +Joann +Kirsten +Kyla +Kyle +Lesley +Lorraine +Shanika +Sherri +Sofia +Yasmin +Alexander +Ariana +Betsy +Breanna +Caitlyn +Caridad +Carley +Cherie +Debbie +Dina +Domonique +Jackie +Josephine +Judy +Kaleigh +Lacy +Leanne +Mandi +Meaghan +Nakita +Paris +Rita +Ruby +Shawn +Talia +Trista +Adrianne +Aisha +Alisa +Amie +Anais +Anastasia +Ashly +Beatriz +Bernadette +Brittanie +Christal +Demetria +Elisa +Felecia +Geneva +Jacklyn +Jayme +Juliana +Kimberley +Kristyn +Krysta +Krystina +Lana +Leila +Linsey +Lourdes +Lynette +Magen +Marsha +Maureen +Mayra +Noelle +Peggy +Rochelle +Santana +Shakira +Sharday +Shatara +Sydney +Tori +Trina +Alexia +Brigitte +Cari +Carlie +Cassidy +Dara +Deidre +Dianna +Ginger +Janessa +Jeannette +Joelle +Justina +Kala +Kenya +Kimberlee +Kourtney +Lashanda +Lashonda +Lena +Loren +Mackenzie +Marianne +Marina +Nadine +Selena +Shamika +Shaneka +Tracie +Alina +Angelique +Bailey +Britni +Brittaney +Cameron +Chandra +Chantell +Clara +Cori +Corinne +Daniel +Desirae +Fabiola +Ivette +Janette +Janie +Jesica +Katheryn +Kathia +Kierra +Leticia +Lora +Loretta +Lucia +Olga +Paola +Savanna +Shantell +Shardae +Shenika +Stevie +Teri +Antionette +Arlene +Asha +Ashli +Becky +Billie +Cathy +Celia +Charmaine +Chastity +Cherrelle +Christi +Cora +Dena +Devon +Doris +Gretchen +Hailey +Jamila +Jeannie +Joan +Jody +Joni +Kia +Lakendra +Laurel +Leann +Liza +Lyndsay +Lynsey +Maranda +Marcy +Margarita +Nakia +Natacha +Noel +Penny +Porsha +Rikki +Sable +Shante +Susanna +Suzette +Taryn +Ursula +Alecia +Alishia +Alycia +Annmarie +Brandon +Casie +Catrina +Cheri +Cherish +Cheyenne +Corina +Deanne +Delia +Dominque +Edith +Farrah +Franchesca +Helena +Hilda +Holli +Ileana +Janell +Janna +Jazmin +Jodie +Jonathan +Kaci +Karissa +Kassie +Kati +Kim +Kori +Lakesha +Liana +Lynda +Marcella +Marion +Marla +Martina +Mollie +Norma +Rosemary +Shareka +Silvia +Sonja +Susana +Suzanna +Tangela +Venessa +William +Aja +Ami +Angeline +Antonia +Brittni +Carina +Cristal +Cristin +Dania +Deana +Eboni +Eliza +Estefania +Georgia +Gladys +June +Justin +Kalyn +Kenneth +Lea +Leanna +Liane +Liberty +Lily +Lois +Luz +Maryann +Melisa +Monika +Nicolette +Niki +Nora +Racquel +Raven +Roberta +Saundra +Scarlett +Shakia +Shanita +Shantae +Shaquita +Sharde +Sherita +Sherrie +Tiera +Tiffiny +Valarie +Valeria +Vicky +Yamile +Ahsley +Amberly +Candis +Candy +Cecelia +Chanell +Chelsie +Ciarra +Codi +Cody +Colby +Danyelle +Dayna +Deirdre +Eve +Felica +Francine +Gail +Geraldine +Gillian +Iliana +Jacquelynn +Janel +Jazmine +Jean +Jeanne +Jessi +Jessika +Joseph +Kacey +Kaila +Kandace +Kasie +Kathrine +Kaylin +Kiera +Kortney +Kristian +Laci +Laquisha +Laquita +Larissa +Leeann +Lizbeth +Lucinda +Luisa +Madelyn +Malinda +Margo +Markita +Merline +Natashia +Rachell +Rebeca +Reina +Rene +Rosanna +Roxana +Roxanna +Sarina +Selina +Shalonda +Shanell +Shantavia +Shatoya +Shavon +Shea +Shena +Shontae +Simone +Stefani +Tabetha +Takia +Tami +Tamra +Tanesha +Tarah +Tequila +Tera +Tosha +Vanesa +Viviana +Alanna +Alena +Alyse +Ava +Ayla +Blanca +Brittny +Catalina +Cathryn +Christiana +Danna +Dominic +Dora +Dulce +Elaina +Ella +Emilee +Esmeralda +Evette +Falon +Francis +Gena +Glenda +Halley +Jerrica +Jessenia +Jo +Johana +John +Jolene +Julianna +Juliette +Karmen +Kaylyn +Keli +Kiara +Krystel +Krysten +Kylie +Kyra +Kyrie +Lakia +Latosha +Leona +Lina +Lisette +Lizette +Lorin +Lorna +Mara +Marisela +Marlana +Marlena +Matthew +Meggan +Meghann +Mellissa +Michaela +Milagros +Mildred +Mona +Nadege +Phyllis +Porsche +Portia +Rashida +Rhiannon +Richard +Rosalinda +Rosana +Salena +Shacara +Shaquana +Shera +Sherell +Sophie +Stacia +Tamera +Tareva +Thomas +Tyler +Valentina +Vicki +Wanda +Xiomara +Adrian +Adrianna +Alessandra +Alex +Allie +Andria +Ansley +Anthony +Ashtin +Athena +Breanne +Brett +Britteny +Candi +Candra +Cathleen +Charlie +Cherelle +Colette +Coral +Crista +Cristen +Danelle +Daniele +Dannielle +Darcy +David +Dianne +Dionne +Ebonie +Eden +Edna +Elana +Elicia +Essence +Eugenia +Faren +Faye +Florence +Gayle +Hanna +Harmony +Isabelle +Jackeline +Jammie +Jaqueline +Jenni +Jerica +Jesseca +Joana +Johnna +Josie +Kali +Karin +Kaycee +Kenyatta +Kera +Kirby +Krystin +Kylee +Lacie +Ladonna +Lashawn +Latia +Lawanda +Lee +Leighann +Leilani +Letitia +Liliana +Magdalena +Malissa +Marcus +Mariana +Maribel +Marta +Martine +Mckenzie +Melonie +Micaela +Myriam +Natosha +Nikkita +Paulette +Porcha +Rashonda +Reva +Rhea +Robert +Ronda +Rosemarie +Salina +Sean +Shanta +Shanteria +Shantia +Shantoria +Shaquanda +Sharika +Sharlene +Stephaine +Tamesha +Tasia +Tawanna +Tenisha +Thelma +Adriane +Amaris +Andra +Araceli +Asheley +Austin +Avery +Ayesha +Baby +Brittnay +Brittnie +Brook +Brynn +Candyce +Carey +Cassondra +Cassy +Celena +Celina +Chardae +Charisse +Chimere +Chrissy +Corrie +Cristy +Crystle +Dakota +Danae +Danica +Danyell +Davina +Ebonee +Eleanor +Eliana +Elissa +Elsa +Emilia +Emilie +Farah +Francheska +Fredricka +Genna +Gisela +Hali +Ida +Irma +Ivonne +Jacinta +Jacquelin +Jada +Jamee +Jamey +Jason +Jeannine +Jenae +Jeniffer +Jenilee +Jennette +Jeri +Jesenia +Joleen +Juana +Julienne +Kandice +Katia +Katina +Katlyn +Kay +Keely +Keren +Kevin +Kirstin +Laquanda +Latanya +Latara +Latrisha +Layla +Lidia +Lindy +Logan +Louise +Lovely +Lucretia +Lynne +Mabel +Mallorie +Marcie +Mari +Maura +Maxine +Misti +Myra +Naomie +Natali +Noemi +Phoebe +Phylicia +Porscha +Priscila +Raina +Rena +Renata +Riley +Rosalyn +Roseanne +Roxann +Shadae +Shakera +Shakita +Shanelle +Sharda +Sharina +Shaunte +Shawanna +Shemeka +Shequita +Sherika +Sherina +Shira +Shonte +Sommer +Starr +Stephenie +Steven +Takiyah +Tamar +Tammie +Taneisha +Terica +Terry +Tiffaney +Trenise +Tristan +Tyisha +Vanna +Wesley +Yadira +Zoe +Abbey +Ada +Adria +Aida +Akilah +Alea +Alesha +Alfreda +Alisia +Alysha +Andre +Anika +Anjelica +Annamarie +Antonio +Apryl +Arica +Ashlyn +Aurora +Breana +Brielle +Carlee +Chanelle +Channing +Chante +Chaquita +Charla +Clare +Clarice +Dallas +Danika +Darla +Daryl +Deena +Donielle +Elsie +Eric +Farren +Fatima +Frankie +Gianna +Giovanna +Gregory +Hazel +Holley +Iesha +Ilana +Ivory +Jacinda +Jacquline +Jameka +Jamilah +Jan +Jaymie +Jayna +Jayne +Jeana +Jeanine +Jeanna +Jenelle +Jennafer +Jessic +Jovan +Juliann +Jullian +Kacy +Kailey +Kamaria +Karah +Karly +Karrie +Kasandra +Kasha +Katelynn +Keosha +Kerrie +Kesha +Kiana +Kiesha +Kindra +Kory +Krysti +Lakiesha +Lashaundra +Lashera +Latashia +Lateria +Latesha +Latora +Latoyia +Latricia +Lauran +Laureen +Leandra +Lilia +Lisandra +Loreal +Lorrie +Madelin +Magan +Mallori +Margot +Marguerite +Mariel +Marilee +Mark +Maya +Melaine +Melina +Melony +Mercy +Milissa +Mitzi +Monet +Nastassia +Nathaly +Natisha +Nellie +Nia +Nicki +Nicolle +Nikia +Noelia +Priya +Quanisha +Ramona +Rayna +Reba +Rosalie +Sequoia +Serina +Shaday +Shalanda +Shanae +Shandi +Shane +Shaneika +Shanel +Shanese +Shaniqua +Shanon +Shanti +Shaunna +Shavonne +Shawanda +Shawnna +Shawntavia +Shawntay +Shelia +Shellie +Shemika +Sheneka +Sheree +Sherelle +Siera +Somer +Star +Tacarra +Takara +Takeisha +Talisa +Tamela +Tamisha +Taneshia +Tegan +Teneshia +Terika +Tess +Tiarra +Tonie +Vera +Vickie +Wendi +Zandra +Jessica +Ashley +Amanda +Jennifer +Brittany +Stephanie +Sarah +Heather +Danielle +Melissa +Tiffany +Nicole +Amber +Christina +Samantha +Lauren +Megan +Elizabeth +Michelle +Rachel +Kimberly +Crystal +Rebecca +Kelly +Laura +Amy +Vanessa +Sara +Katherine +Shannon +Erica +Whitney +Courtney +Emily +Angela +Kristen +Kayla +Jamie +Mary +Andrea +Erin +Victoria +Lindsey +Chelsea +Christine +Brittney +Kristina +Lisa +Katie +Alicia +Jacqueline +Natalie +Allison +Alexandra +April +Monica +Lindsay +Kathryn +Krystal +Jenna +Kristin +Natasha +Patricia +Maria +Kendra +Julie +Tara +Caitlin +Brandy +Erika +Brandi +Cassandra +Casey +Anna +Dana +Kathleen +Dominique +Latoya +Katrina +Cynthia +Yesenia +Veronica +Alexis +Catherine +Holly +Alyssa +Jasmine +Sabrina +Meghan +Leah +Leslie +Rachael +Brooke +Stacey +Diana +Julia +Candace +Sandra +Ashlee +Cristina +Hannah +Kelli +Morgan +Nichole +Jillian +Stacy +Felicia +Ebony +Melanie +Desiree +Kelsey +Meagan +Tabitha +Mallory +Barbara +Monique +Valerie +Angelica +Margaret +Susan +Sasha +Karen +Kara +Alison +Candice +Alexandria +Nancy +Krista +Sierra +Tamara +Tracy +Bethany +Pamela +Britney +Joanna +Alisha +Taylor +Marissa +Teresa +Carrie +Gina +Jacquelyn +Rebekah +Robin +Jaclyn +Miranda +Caroline +Carolyn +Linda +Angel +Lacey +Priscilla +Ana +Melinda +Jordan +Aimee +Denise +Jenny +Renee +Marie +Tina +Tonya +Virginia +Ciara +Misty +Regina +Carly +Cassie +Cindy +Gabrielle +Theresa +Ashleigh +Audrey +Dawn +Michele +Deanna +Latasha +Summer +Briana +Janay +Kristine +Kristy +Tatiana +Brianna +Deborah +Molly +Autumn +Brenda +Jessie +Kasey +Nikita +Olivia +Raquel +Adrienne +Donna +Kristi +Tanya +Amelia +Charlene +Katelyn +Toni +Savannah +Sheena +Wendy +Christa +Carolina +Christy +Colleen +Haley +Krystle +Kaitlin +Meredith +Anne +Cierra +Heidi +Kari +Nina +Paige +Sharon +Shawna +Sophia +Tasha +Alexa +Shelby +Jocelyn +Nikki +Sade +Stefanie +Bonnie +Chantel +Janet +Kelley +Chelsey +Joy +Suzanne +Abigail +Carla +Carmen +Cheryl +Elise +Grace +Kellie +Robyn +Keri +Angelina +Antoinette +Christie +Ciera +Jaime +Janelle +Bianca +Frances +Gloria +Keisha +Randi +Brittani +Ericka +Jade +Kaitlyn +Martha +Mindy +Shaina +Tabatha +Adriana +Cara +Claudia +Rhonda +Shayla +Sheila +Allyson +Anastasia +Ashton +Bridget +Jeanette +Justine +Kate +Francesca +Gabriela +Lydia +Ruth +Shana +Yolanda +Constance +Jaimie +Rosa +Staci +Charlotte +Cortney +Karla +Mercedes +Nathalie +Trisha +Charity +Lori +Mandy +Rachelle +Ann +Annette +Evelyn +Hillary +Kirsten +Melody +Shanna +Anita +Carol +Kaley +Karina +Kendall +Rochelle +Roxanne +Shantel +Sylvia +Tammy +Dorothy +Emma +Helen +Hope +Natalia +Precious +Rose +Jodi +Kristie +Tia +Aubrey +Cecilia +Esther +Hayley +Katy +Octavia +Paula +Stacie +Ariel +Ashely +Jena +Joyce +Lyndsey +Marisa +Naomi +Terri +Elena +Jill +Taryn +Traci +Alyson +Chiquita +Diane +Gabriella +Lacy +Maggie +Shanika +Shirley +Tania +Tiara +Tierra +Tracey +Ayla +Camille +Destiny +Eva +Juanita +Kerri +Laurie +Sandy +Beverly +Debra +Elyse +Hilary +Juliana +Leigh +Michael +Ryan +Bridgette +Daniela +Eileen +Isabel +Johanna +Madeline +Mia +Patrice +Princess +Shayna +Shelly +Belinda +Brandie +Carissa +Jana +Joann +Latisha +Marilyn +Shauna +Simone +Yessenia +Ashlie +Beth +Jasmin +Jayme +Kayleigh +Mayra +Alana +Angie +Bobbi +Faith +Katharine +Kerry +Loren +Mackenzie +Madison +Maegan +Miriam +Nadia +Rita +Sherry +Tameka +Tiffani +Annie +Ashly +Channing +Christian +Kathy +Kaylee +Krystina +Lakeisha +Shelley +Sonya +Yvette +Audra +Blair +Breanna +Caitlyn +Chanel +Christen +Claire +Daisy +Ellen +India +Ingrid +Jessika +Joanne +Judith +Latonya +Marlene +Noelle +Vivian +Alecia +Brianne +Cori +Daniella +Darlene +Devon +Dianna +Elisabeth +Hailey +Iris +Jane +Janice +Leila +Sherri +Sonia +Yvonne +Alice +Alina +Arielle +Chandra +Chasity +Cherie +Guadalupe +Kaleigh +Keshia +Lakesha +Lea +Maribel +Ruby +Savanna +Shameka +Tamika +Tanisha +Tricia +Valencia +Abby +Aisha +Alisa +Bailey +Celeste +Chelsie +Chloe +Connie +Elaine +Farrah +Giselle +Gwendolyn +Jackie +Jesenia +Jessenia +Joelle +Lakeshia +Lara +Lena +Leticia +Lourdes +Olga +Sydney +Tiffanie +Chantal +Elisha +Janine +Jenifer +Judy +Kimberlee +Kira +Lesley +Lissette +Marjorie +Marquita +Norma +Paola +Shaneka +Alaina +Alejandra +Alexia +Alissa +Betty +Cassidy +Cheyenne +Christin +Jeannette +Joan +Julianne +Kali +Kenya +Kim +Lakisha +Latoria +Michaela +Portia +Racheal +Serena +Stephany +Adrian +Amie +Anthony +Ariana +Billie +Blanca +Brenna +Celia +Clara +Daphne +David +Deidre +Georgia +Kyla +Kyle +Lakendra +Laurel +Leanne +Lillian +Nakita +Roxana +Sally +Selina +Shalonda +Shari +Alex +Angelique +Arlene +Brigitte +Callie +Caryn +Chantelle +Clarissa +Corey +Elisa +Jacklyn +Jami +Janette +Jerrica +Joshua +Kacie +Larissa +Latrice +Lorena +Lynette +Lynn +Marina +Marisol +Nora +Paris +Racquel +Robert +Sofia +Tessa +Aileen +Alysia +Becky +Christal +Christopher +Chrystal +Dara +Deana +Domonique +Fallon +Farah +Fawn +Felisha +Francis +Genesis +Hollie +Irene +Jennie +Joseph +Kacey +Kalyn +Karissa +Kristyn +Lashonda +Lisette +Lorraine +Luz +Lyndsay +Lynsey +Marsha +Noel +Porsha +Roberta +Sheri +Sheryl +Susana +Tiana +Tyler +Wanda +Alessandra +Antonia +Ashlea +Bobbie +Britni +Brittaney +Caridad +Cayla +Daniel +Dannielle +Desirae +Dianne +Elissa +Fabiola +Glenda +Jazmine +Jeanne +Josie +Justina +Kandice +Karli +Kassandra +Leann +Lee +Liliana +Magan +Mandi +Marcia +Maritza +Maryann +Meaghan +Nadine +Nicolette +Samatha +Shantell +Shantrell +Talia +Tiera +Tori +Tyesha +Valeria +William +Yasmin +Adrianna +Adrianne +Alexander +Ali +Alyse +Alysha +Ami +Betsy +Camila +Cheri +Cristal +Debbie +Dina +Elaina +Franchesca +Genevieve +Ginger +Ivy +Janae +Janie +Janna +Kailey +Krystin +Kylie +Ladonna +Lashawn +Linsey +Lora +Mallorie +Maureen +Melisa +Monika +Peggy +Richelle +Rosanna +Shakira +Shantoria +Sharonda +Shatavia +Sherell +Sonja +Stevie +Tosha +Tracie +Trista +Alesha +Angeline +Asha +Beatrice +Bernadette +Britany +Brittanie +Cameron +Candis +Cari +Casandra +Cody +Cristy +Danna +Demetria +Devin +Doris +Eboni +Eden +Emely +Fatima +Jamila +Jeannie +Jesica +Jessi +Josephine +Kalie +Kati +Kaycee +Lana +Laquita +Latia +Lawanda +Leandra +Leanna +Loretta +Lynnette +Marcela +Mariah +Marla +Noemi +Shakera +Shanay +Shanta +Shanteria +Silvia +Sommer +Stefani +Trina +Ada +Allie +Alycia +Annemarie +Antionette +Ashlyn +Brittni +Cassondra +Charmaine +Christi +Corinne +Danyelle +Denisha +Diamond +Dominque +Gillian +Janel +Janell +Janessa +Jazmin +Jeanna +Juana +Juliet +Justin +Kasie +Katelynn +Katheryn +Kathrine +Kelsie +Kera +Kristal +Kyra +Larhonda +Latricia +Lina +Lucy +Martina +Matthew +Milagros +Natacha +Reva +Rosemary +Santana +Sarina +Shakia +Shanon +Shante +Shantelle +Shaquita +Shardae +Sharika +Shawn +Sophie +Tanesha +Tangela +Anjelica +Ashanti +Asia +Aubree +Baby +Beatriz +Carley +Carli +Carole +Casie +Catrina +Cherish +Dallas +Daniele +Darline +Deandra +Delia +Desire +Dolores +Edith +Eliza +Esperanza +Felecia +Georgina +Geraldine +Gretchen +Holley +Ida +Ileana +Jaqueline +Jayne +Jean +Jeri +Jesse +Jodie +Kaylie +Kiera +Kierra +Kourtney +Laquisha +Latavia +Latosha +Lucia +Marcy +Marianne +Mattie +Micaela +Mona +Pauline +Ramona +Rebeca +Roxanna +Sarai +Shanice +Shatara +Shea +Stephani +Tami +Taneshia +Tarah +Tashara +Teri +Terry +Ursula +Vickie +Vicky +Alanna +Anais +Andria +Ariane +Blake +Brandee +Brett +Bria +Britteny +Brittnee +Brittnie +Carina +Carlee +Chante +Corina +Corrine +Cory +Danelle +Dani +Dena +Gianna +Grecia +Hanna +Helena +Hilda +Jackeline +James +Jeanine +Jesseca +Jody +John +Julianna +Kaci +Kacy +Karin +Karly +Kassie +Kaylyn +Keely +Kenisha +Kimberley +Kristan +Krizia +Krysten +Kymberly +Laquanda +Lashawnda +Lashay +Latara +Lenora +Lizette +Lucille +Lucinda +Luisa +Madelyn +Maranda +Marcella +Margie +Margo +Marian +Mellissa +Nakia +Nicholas +Nicolle +Niki +Penny +Phylicia +Porscha +Rosalyn +Rosemarie +Sable +Scarlett +Shakita +Shamika +Shandra +Shanita +Shaquanda +Shenika +Siobhan +Skylar +Stephenie +Susannah +Suzette +Suzie +Tabetha +Tatyana +Tempestt +Vicki +Abbie +Aleshia +Amaris +Angelika +Athena +Ava +Barbie +Bertha +Brandon +Brielle +Cathy +Cecelia +Cecily +Charli +Chelsy +Cherise +Christiana +Cora +Corie +Cristine +Dalia +Damaris +Dania +Danyell +Davina +Deidra +Deirdre +Denice +Denielle +Ebone +Emilie +Eryn +Eugenia +Farren +Gabriel +Geneva +Giovanna +Hali +Haylee +Hazel +Holli +Ivonne +Jada +Janina +Jeanie +Jenise +Jeree +Jerica +Jonathan +Julissa +Kala +Kandace +Kandi +Karie +Karyn +Kathryne +Katia +Katrice +Keara +Kendal +Kerline +Kia +Kiara +Kirby +Kirstie +Krysta +Lakita +Laporsha +Lashana +Layla +Leeann +Leighann +Liana +Logan +Lynda +Mabel +Madeleine +Magen +Mariana +Marisela +Markita +Marta +Maura +Maya +Meghann +Mindi +Mollie +Moriah +Myesha +Nikia +Nikole +Paulette +Rashonda +Raychel +Rayna +Renae +Sean +Selena +Shakeria +Shantavia +Shantia +Sharhonda +Sharita +Sheree +Sherika +Sherrie +Sondra +Stephaine +Steven +Susie +Tamra +Tana +Tawana +Tenisha +Tequila +Terrika +Thomas +Tianna +Tomeka +Tory +Valentina +Yasmine +Zoe +Aaron +Adriane +Alayna +Alise +Alma +Alyce +Amberly +Anabel +Andrew +Anisha +Ansley +Ashli +Bernice +Breanne +Bridgett +Brittnay +Candyce +Carlos +Cathleen +Charis +Charline +Cherrelle +Cherri +Clare +Codi +Colby +Coretta +Cristen +Danae +Darcy +Dayna +Deena +Deloris +Denisse +Destini +Diandra +Dixie +Dominica +Elyssa +Emilee +Esmeralda +Eunice +Evette +Falon +Florence +Genna +Halley +Iliana +Isis +Jacinda +Jaimee +Jaleesa +Jamesha +Jeana +Jeniffer +Joi +Jolene +Joni +Kaela +Kandis +Katlin +Kay +Kayce +Keila +Kenyatta +Keosha +Kesha +Khadija +Kori +Kristian +Laci +Lacie +Leia +Leigha +Leilani +Leona +Leondra +Lidia +Lorin +Lorna +Magaly +Magda +Malissa +Mara +Marci +Marguerite +Marion +Marquetta +Meggan +Melani +Melodie +Micah +Natesha +Natosha +Nichelle +Patsy +Perla +Petra +Porsche +Rae +Raven +Reba +Regan +Regine +Rhiannon +Ronisha +Rosalinda +Rosita +Sadie +Shandreka +Shanell +Shareka +Sharell +Sharisse +Shaunna +Shawanda +Shawanna +Shontae +Siera +Skye +Stephane +Stephania +Sunny +Susanna +Takia +Taneisha +Tanika +Teaira +Tempest +Terra +Terrica +Tierney +Trinity +Tyeisha +Valarie +Vanna +Vannessa +Venessa +Viviana +Whittney +Yazmin +Zena +Abbey +Alexandrea +Alia +Ambria +Angelena +Annika +Annmarie +Antonette +Arianna +Artavia +Asheley +Astrid +Austin +Ayesha +Bonita +Breana +Brian +Brigette +Brittiany +Bryan +Bryanna +Calla +Camelia +Candi +Candy +Caressa +Carri +Chanda +Chanelle +Chantell +Chara +Charise +Charissa +Charla +Charlie +Chelsi +Cherelle +Coral +Crystall +Dalila +Daniell +Danni +Danyel +Darryl +Davida +Dayana +Debora +Dedra +Delana +Delilah +Della +Doreen +Dusty +Edna +Elana +Eleanor +Ella +Elsa +Elvia +Emmanuela +Eric +Erinn +Evan +Eve +Faye +Francheska +Francine +Gail +Gayle +Georgette +Gia +Gisselle +Gladys +Graciela +Griselda +Hailee +Hallie +Iesha +Ilana +Iman +Irma +Isabella +Isabelle +Ivette +Ivey +Janeen +Janika +Jannet +Jaquita +Jason +Jaymie +Jayna +Jenay +Jenee +Jenelle +Jeremy +Jerika +Jewel +Jo +Joana +Joanie +Johnna +Juliann +June +Kaila +Kaitlynn +Kalee +Kaleena +Kalli +Kallie +Kanisha +Karlie +Kasandra +Katelin +Katey +Katina +Katlyn +Kayley +Kelcie +Kenia +Kenyetta +Kevin +Kiley +Kimber +Kiri +Kisha +Krystyna +Kylee +Kymberli +Laila +Laquinta +Lashanda +Lashara +Latonia +Latoyia +Lauryn +Leana +Leatrice +Letitia +Lia +Lilia +Lily +Lois +Loni +Luciana +Makenzie +Malinda +Marcus +Maricela +Mario +Markia +Marlena +Marybeth +Meagen +Mechelle +Melina +Merry +Michell +Mina +Miracle +Misti +Muriel +Myranda +Natashia +Nelly +Nichol +Nicki +Nisha +Patience +Patrick +Patrisha +Phyllis +Pilar +Rashunda +Rena +Reyna +Roseanna +Roshanda +Rosie +Ryann +Sari +Scott +Seana +Sebrina +Sequoia +Shakari +Shanae +Shandi +Shani +Shantay +Shantrel +Shara +Sharde +Sharee +Shatoya +Shaunta +Shaunte +Shawnta +Shawntel +Shella +Shellie +Shena +Shenna +Sherley +Sherrell +Shonta +Skyler +Stephen +Takara +Tamera +Tamesha +Tammi +Tawanda +Tera +Thelma +Tiffney +Timothy +Tonia +Tonisha +Tristan +Tyra +Vanesa +Xiomara +Yaritza +Zaneta +Ashley +Jessica +Amanda +Brittany +Jennifer +Stephanie +Sarah +Nicole +Tiffany +Lauren +Heather +Amber +Samantha +Melissa +Danielle +Christina +Elizabeth +Megan +Michelle +Rachel +Courtney +Kimberly +Crystal +Rebecca +Kayla +Erica +Katherine +Chelsea +Laura +Emily +Sara +Kelly +Alexandra +Amy +Brittney +Angela +Vanessa +Victoria +Andrea +Kristen +Jamie +Shannon +Jasmine +Mary +Caitlin +Christine +Erin +Lindsey +Whitney +Natalie +Kristin +Alicia +Katie +Jacqueline +Kristina +Lisa +Allison +Kathryn +Maria +Krystal +Alyssa +Natasha +Lindsay +Patricia +Catherine +Tara +April +Cassandra +Monica +Jenna +Anna +Alexis +Erika +Brandy +Kathleen +Veronica +Julie +Kendra +Dana +Brandi +Morgan +Bianca +Leah +Holly +Casey +Hannah +Kelsey +Cynthia +Brooke +Felicia +Latoya +Diana +Cristina +Rachael +Sabrina +Dominique +Katrina +Marissa +Julia +Leslie +Kara +Meghan +Valerie +Nichole +Melanie +Sandra +Britney +Katelyn +Desiree +Jillian +Candace +Kaitlin +Karen +Meagan +Priscilla +Barbara +Candice +Caroline +Kaitlyn +Alexandria +Stacey +Stacy +Ashlee +Krista +Monique +Gina +Taylor +Bethany +Margaret +Sierra +Carrie +Melinda +Tabitha +Angelica +Alison +Olivia +Ebony +Jordan +Joanna +Robin +Sasha +Briana +Deanna +Adriana +Denise +Jacquelyn +Angel +Gabrielle +Tamara +Autumn +Lacey +Rebekah +Carolyn +Miranda +Carly +Brianna +Jaclyn +Mallory +Audrey +Yesenia +Alisha +Carolina +Linda +Marie +Virginia +Haley +Susan +Ana +Kelli +Kristi +Kristy +Nancy +Renee +Tracy +Teresa +Tiara +Tina +Carla +Ciara +Grace +Kelley +Michele +Chelsey +Karina +Tanya +Christa +Christy +Raquel +Pamela +Theresa +Paige +Ashleigh +Carmen +Ericka +Latasha +Molly +Savannah +Summer +Brenda +Martha +Tonya +Abigail +Kristine +Meredith +Shaina +Cassie +Janelle +Nikki +Precious +Regina +Kari +Roxanne +Tatiana +Angelina +Ariel +Jenny +Misty +Sophia +Joy +Krystle +Hillary +Robyn +Bridget +Cindy +Kasey +Sharon +Toni +Bonnie +Elise +Justine +Shawna +Aimee +Brittani +Cara +Christie +Claudia +Donna +Jaime +Melody +Nina +Sheena +Dawn +Evelyn +Kaley +Marisa +Jessie +Jocelyn +Mercedes +Shelby +Alexa +Deborah +Naomi +Simone +Suzanne +Tabatha +Yolanda +Adrienne +Charlene +Heidi +Kellie +Ruth +Shanice +Tasha +Anne +Cortney +Lydia +Rachelle +Stefanie +Caitlyn +Colleen +Emma +Gloria +Shana +Wendy +Frances +Lori +Ciera +Diane +Yessenia +Ann +Charity +Hope +Janet +Jeanette +Unknown +Allyson +Chantel +Cheryl +Destiny +Jade +Janay +Jessenia +Kate +Natalia +Nathalie +Rosa +Charlotte +Madison +Anastasia +Antoinette +Cierra +Ellen +Janice +Keri +Kristie +Tierra +Amelia +Gabriela +Mindy +Nikita +Rhonda +Rose +Alana +Arielle +Breanna +Cecilia +Kendall +Nadia +Shayla +Sheila +Sonia +Brandie +Brianne +Carissa +Elyse +Jena +Jill +Kirsten +Paula +Sade +Sydney +Sylvia +Tia +Tiffani +Ashton +Carol +Jaimie +Kaylee +Kayleigh +Leigh +Lissette +Maggie +Marilyn +Randi +Shantel +Sonya +Taryn +Daniella +Esther +Katharine +Lakeisha +Mandy +Trisha +Vivian +Anita +Beth +Chasity +Dorothy +Giselle +Jaleesa +Karla +Princess +Shayna +Staci +Tammy +Alice +Alyson +Camille +Christin +Daniela +Elisabeth +Francesca +Hayley +Kerri +Kerry +Kylie +Octavia +Traci +Ariana +Chelsie +Claire +Hilary +Jodi +Johanna +Latonya +Paola +Patrice +Rochelle +Shanna +Tanisha +Terri +Annette +Daisy +Eileen +Faith +Gabriella +Jana +Lesley +Lyndsey +Stephany +Tiffanie +Yvette +Alexia +Aubrey +Belinda +Bridgette +Christian +Debra +Elaine +Elena +Elisa +Latisha +Judy +Sherry +Tamika +Brittni +Clarissa +Constance +Irene +Joanne +Mia +Nadine +Sally +Shauna +Shirley +Tania +Alisa +Alissa +Ashely +Ashlie +Ashly +Bailey +Christen +Jasmin +Judith +Keisha +Lacy +Madeline +Maritza +Michael +Sandy +Blair +Cayla +Cherie +Chloe +Daphne +Devin +Eva +Jerrica +Leanne +Alejandra +Alexander +Angie +Annie +Ashli +Chantal +Cori +Jami +Juliana +Kenya +Kiara +Lara +Leticia +Maribel +Marjorie +Meaghan +Noelle +Olga +Ryan +Stacie +Abby +Aileen +Brittny +Darlene +Genesis +Genevieve +Iris +Jacklyn +Jalisa +Jayme +Josephine +Juanita +Kala +Kaleigh +Kassandra +Kristyn +Lea +Lillian +Mackenzie +Marlene +Shelley +Tameka +Tracey +Alycia +Beverly +Chanel +Helen +Hollie +India +Kira +Kourtney +Leann +Lorraine +Maegan +Miriam +Porsha +Ruby +Adrian +Alaina +Antonia +Beatriz +Betty +Billie +Callie +Connie +Demetria +Diamond +Isabel +Jazmine +Kali +Katelin +Kyla +Loren +Mayra +Shakira +Shanika +Valencia +Adrianna +Alessandra +Alysha +Beatrice +Bobbie +Christi +Janae +Joyce +Justina +Kaila +Kathy +Katlyn +Kierra +Krysten +Latrice +Lourdes +Lynn +Nicolette +Norma +Portia +Racheal +Rita +Shelly +Tricia +Whitley +Yvonne +Alyse +Angelique +Audra +Ayla +Chiquita +Deandra +Devon +Domonique +Eboni +Jane +Janine +Jenifer +Joshua +Kacie +Kailey +Kimber +Kimberlee +Lashonda +Leanna +Maureen +Shari +Tiana +Adrianne +Aja +Cameron +Carley +Cecily +Chrystal +Diandra +Dina +Dominque +Esmeralda +Jackie +Jazmin +Jennie +Kathrine +Kiera +Laurie +Lena +Lorena +Magen +Margarita +Mariah +Mariana +Marina +Michaela +Raven +Rosemary +Roxanna +Selina +Shalonda +Shameka +Shamika +Shante +Silvia +Sofia +Alanna +Alesha +Alina +Brenna +Britni +Chantelle +Cheyenne +Clara +Corey +Corinne +Doris +Eleanor +Emilie +Glenda +Guadalupe +Janel +Janie +Jean +Julianna +Juliette +Kasie +Kristal +Krysta +Krystina +Lakendra +Laurel +Leila +Lynette +Marcella +Marcia +Serena +Shaneka +Sheri +Stefani +Taja +Yasmin +Aisha +Amie +Annmarie +Blanca +Britany +Cari +Celeste +Celia +Christopher +Dianna +Fallon +Geneva +Georgia +Hailey +Hanna +Janell +Jerica +Jessika +Joann +Kalyn +Kandice +Karissa +Kaylin +Kelsie +Kimberley +Kristian +Kyra +Luz +Marisol +Noel +Rebeca +Savanna +Suzette +Valeria +Wanda +Alex +Alysia +Chandra +Charmaine +Daniel +Eden +Elisha +Eryn +Fatima +Irma +Janna +Jeanna +Jeannie +Julianne +Katelynn +Keshia +Kirstin +Lakesha +Lana +Laquanda +Lee +Leighann +Linsey +Liza +Logan +Lucy +Mandi +Marianne +Melisa +Myra +Nataly +Raina +Rosalinda +Shatara +Sonja +Susana +Talia +Ursula +Alesia +Alexandrea +Ali +Arlene +Ashlyn +Asia +Betsy +Brittaney +Casandra +Cassidy +Catalina +Cecelia +Christiana +Debbie +Estefania +Geraldine +Hali +Kacey +Kaela +Kalee +Kandis +Katy +Kaycee +Kyle +Lacie +Lakeshia +Latoria +Leeann +Lyndsay +Marquita +Phylicia +Reva +Samatha +Tanesha +Terra +Tiera +Tosha +Bernadette +Channing +Cody +Cristal +Dania +Davina +Dayna +Deidra +Deidre +Delia +Dena +Elyssa +Gabriel +Gwendolyn +Ileana +Ingrid +Ivy +Janessa +Jesica +Juana +Julissa +Kaci +Karly +Katina +Katlin +Kaylyn +Krystin +Larissa +Lashanda +Latavia +Liliana +Lily +Lizette +Lucia +Marlena +Maya +Monika +Nora +Peggy +Racquel +Selena +Sharonda +Sherri +Susanna +Talisha +Tera +Tessa +Tyler +Venessa +Alma +Angeline +Aurora +Breanne +Bridgett +Brigitte +Brittanie +Brittnay +Camila +Carina +Catrina +Cherish +Dara +Edith +Farrah +Georgina +Gladys +Isabella +Janette +Joan +Jolene +Jonathan +Juliet +Karrie +Kasi +Kaylynn +Kim +Laquita +Layla +Lisette +Lizbeth +Malinda +Mara +Maranda +Mari +Mckenzie +Melina +Miracle +Porsche +Raechel +Ronda +Rosalie +Scarlett +Shanda +Shantell +Shaquita +Shenika +Sheree +Shira +Stephaine +Tarah +Tenisha +Tisha +Tracie +Trinity +Vania +Vicky +Abbey +Alecia +Allie +Alysa +Andrew +Antionette +Ashlea +Athena +Brittnee +Candy +Caryn +Casie +Chantale +Chastity +Christal +Cornelia +Cory +Cristy +Danyel +Darcy +Elaina +Eunice +Francisca +Ginger +Holley +Ivette +Jacquelynn +Jalessa +James +Jamesha +Jammie +Joana +Joelle +Kacy +Katerina +Kenia +Kerrie +Kylee +Laporsha +Laquisha +Lashawn +Latosha +Leandra +Lia +Lina +Loretta +Lucinda +Lynda +Lynnette +Maricela +Mariel +Marisela +Marta +Martina +Martine +Meghann +Natacha +Porscha +Rhiannon +Richelle +Robert +Samone +Sarina +Shakia +Shanell +Shaniece +Shanteria +Shawanda +Shea +Shelia +Sherika +Siobhan +Sommer +Sophie +Stevie +Susannah +Takara +Terrica +Terry +Tiarra +Tonisha +Tori +Trista +Wendi +Aleshia +Alishia +Ambar +Amberly +Anabel +Anais +Anjelica +Ansley +Anthony +Asha +Ashlynn +Avery +Bobbi +Brandee +Cali +Carey +Caridad +Carli +Carole +Cathy +Celina +Chantell +Chaya +Cherelle +Corina +Corinna +Corrie +Deana +Destini +Elissa +Ella +Emilee +Fabiola +Farah +Gretchen +Hilda +Holli +Ilana +Jackeline +Jamila +Janee +Jeniffer +Jesenia +Jody +Johnna +Josie +Karli +Kasandra +Katheryn +Kaylie +Krizia +Krystine +Lakia +Latoyia +Lauryn +Lora +Marcie +Marcy +Markesha +Michell +Mildred +Mollie +Nichelle +Nikole +Noemi +Perla +Pricilla +Quanisha +Regan +Reina +Renae +Roberta +Rosemarie +Rosie +Santana +Sarai +Shakeria +Shamara +Shantoria +Sheryl +Sunny +Taneisha +Tangela +Teri +Terrie +Tiffini +Timothy +Trina +Viola +Viviana +Yamile +Yanira +Yasmine +Alia +Allyssa +Ami +Annemarie +Arianna +Belen +Blake +Brandice +Brandon +Breann +Brittnie +Candi +Candis +Cassi +Chanda +Chanell +Chante +Chaquita +Clarice +Damaris +Danica +Danika +Deanne +Deja +Delores +Denisha +Destinee +Dianne +Donielle +Elana +Emerald +Eugenia +Flor +Florence +Gillian +Guerline +Harmony +Jamee +Jannie +Jaquelyn +Jeannette +Jenniffer +Jo +John +Joni +Jonna +Karyn +Katarina +Katey +Katlynn +Kaylan +Kaylen +Keely +Kelcie +Kelsi +Kenisha +Kenyatta +Kia +Kiersten +Kiley +Kirby +Kori +Kristan +Lakisha +Leilani +Liana +Lillie +Lilly +Liz +Lucretia +Luisa +Lynsey +Margie +Margo +Marion +Marsha +Maxine +Merissa +Micaela +Milagros +Nakita +Nastassia +Paulette +Phoebe +Reba +Rene +Rocio +Ronni +Rosanna +Sable +Shaneice +Shanelle +Shanta +Shantae +Shantal +Shantavia +Shantelle +Shantia +Shardae +Shatavia +Shatoya +Shaunte +Shawn +Shekinah +Shera +Sherita +Shonda +Simona +Sondra +Starla +Starr +Stephani +Stephenie +Stormy +Susie +Tacara +Takia +Tamar +Tamela +Tamesha +Tawana +Thea +Abbie +Ada +Addie +Alena +Alyssia +Amethyst +Andria +Anya +Araceli +Ashanti +Ashlei +Austin +Ayesha +Becky +Bernice +Bertha +Brie +Britnee +Britny +Bryanna +Candance +Candra +Cathryn +Chanelle +Channel +Chanta +Cheyanne +Chiara +Corie +Courtnie +Cristen +Cristin +Cristine +Danette +Daniele +Dannielle +Darby +Deondra +Dionne +Dora +Ebonie +Eleni +Eliza +Elsa +Elsie +Ember +Emilia +Fabienne +Felecia +Frankie +Gail +Genna +Giovanna +Grecia +Haydee +Haylee +Ida +Isis +Ivonne +Jacquelin +Jaimee +Janis +Jaqueline +Jeannine +Jeri +Jesika +Jesse +Jewel +Joia +Kathlyn +Katiana +Kattie +Keandra +Kelci +Keli +Keyanna +Laquesha +Larhonda +Latanya +Latesha +Leona +Letitia +Lilia +Louise +Madelyn +Magdalena +Marah +Marcela +Marguita +Marian +Maricruz +Mariela +Markita +Marla +Marlee +Marline +Maryann +Maryanne +Matthew +Mattie +Mellissa +Melyssa +Micah +Miesha +Montana +Nellie +Nicola +Nicolle +Niki +Nikkita +Noelia +Pauline +Penny +Quintina +Raisa +Renita +Reyna +Rosalyn +Rosetta +Sadie +Sapphire +Shae +Shakendra +Shakita +Shanae +Shanon +Sharita +Sharmaine +Shaunta +Sherell +Sheria +Sherrell +Sidney +Sirena +Storm +Talisa +Tami +Tamia +Tarra +Tawanna +Tiffaney +Vanity +Vicki +Aleisha +Aline +Alise +Alisia +Alixandra +Anisha +Annabel +Annamarie +Antwanette +Aracely +Aubree +Aubri +Aura +Belkis +Bianka +Blaire +Bree +Britani +Britnie +Bryana +Calandra +Cally +Caren +Casi +Cassondra +Cathleen +Caylee +Charisse +Chassity +Chelsa +Chelsi +Cheri +Cherise +Cherry +Christel +Ciarra +Clare +Colby +Consuelo +Cora +Coral +Corrine +Crystle +Dakota +Dalila +Dallas +Danae +Dasha +David +Davida +Delilah +Desirae +Diondra +Doreen +Elicia +Eric +Essence +Evette +Falon +Franchesca +Giana +Gisselle +Grisel +Ibis +Infant +Jacinda +Jada +Jalissa +Jazma +Jeanie +Jeanine +Jeanne +Jelisa +Jenae +Jenee +Jenelle +Jeremy +Jerika +Jessi +Jessyca +Jodie +Johana +Joi +Joleen +Joselyn +Joseph +Justin +Kaitlynn +Kami +Kamilah +Kamisha +Kandace +Karie +Karin +Kassie +Katherin +Kati +Katia +Kayce +Kayleen +Kayli +Kendal +Keondra +Kevin +Keyonna +Kiana +Kiran +Kirstie +Kisha +Laci +Ladonna +Lakenya +Lakiesha +Lani +Laquinta +Laronda +Lashay +Lateshia +Latrina +Lawanda +Leana +Leigha +Leighanna +Lenora +Leslee +Lidia +Lindy +Lolita +Loreal +Lorna +Madeleine +Magaly +Magan +Malissa +Mallorie +Malorie +Manda +Marchelle +Marci +Markie +Marnie +Marti +Marybeth +Mechelle +Meighan +Mikaela +Milagro +Mirna +Missy +Misti +Moriah +Nakisha +Nathaly +Nekia +Niccole +Nicholas +Nikkia +Oprah +Patsy +Porcha +Rachal +Ramona +Randee +Rashonda +Rayna +Rebbecca +Renea +Richard +Romina +Rosalind +Roseanne +Rossana +Roxana +Saundra +Savanah +Sebrina +Serenity +Shakevia +Shalanda +Shanay +Shanea +Shantrel +Shantrell +Shareka +Sharell +Sharice +Sharika +Sharnice +Shawanna +Shawnta +Shawntavia +Shay +Shelbi +Sherley +Sherrie +Siedah +Solana +Soraya +Stella +Stephania +Suzanna +Tacarra +Tamekia +Tammi +Tamra +Taneshia +Tanika +Tashika +Tawny +Teal +Tegan +Terrell +Tess +Tianna +Tierney +Tory +Travis +Tristan +Valarie +Valentina +Vanesa +Vickie +Xiomara +Yalonda +Yanelys +Zana +Ashley +Jessica +Brittany +Amanda +Stephanie +Jennifer +Sarah +Samantha +Lauren +Tiffany +Heather +Amber +Nicole +Christina +Megan +Elizabeth +Danielle +Melissa +Michelle +Rachel +Kayla +Chelsea +Courtney +Rebecca +Crystal +Katherine +Kimberly +Emily +Jasmine +Alexandra +Brittney +Sara +Erica +Victoria +Laura +Kristen +Kelly +Andrea +Mary +Vanessa +Amy +Lindsey +Kristin +Jamie +Caitlin +Kristina +Shannon +Christine +Natalie +Angela +Erin +Alicia +Alyssa +Lisa +Katie +Maria +Whitney +Kelsey +Cassandra +Jacqueline +Krystal +Allison +Kathryn +April +Catherine +Alexis +Tara +Anna +Bianca +Patricia +Monica +Jordan +Lindsay +Kiara +Morgan +Hannah +Taylor +Natasha +Erika +Veronica +Brooke +Holly +Marissa +Cynthia +Brandi +Alexandria +Jenna +Kathleen +Leah +Britney +Cristina +Katrina +Sabrina +Diana +Julie +Brandy +Felicia +Rachael +Casey +Brianna +Melanie +Meagan +Meghan +Kara +Katelyn +Latoya +Dana +Gabrielle +Kaitlyn +Sandra +Kaitlin +Desiree +Kendra +Caroline +Julia +Olivia +Candace +Jillian +Leslie +Angelica +Barbara +Ashlee +Deanna +Paige +Valerie +Karen +Jaclyn +Margaret +Sierra +Adriana +Monique +Candice +Ebony +Tabitha +Alisha +Gina +Stacey +Denise +Sasha +Bethany +Nichole +Ana +Angel +Miranda +Chelsey +Krista +Priscilla +Rebekah +Briana +Carolina +Mallory +Tiara +Dominique +Alexa +Joanna +Linda +Molly +Robin +Melinda +Arielle +Carrie +Abigail +Kelli +Tamara +Alison +Claudia +Savannah +Yesenia +Haley +Karina +Lacey +Nancy +Mercedes +Carly +Carolyn +Jacquelyn +Grace +Audrey +Kristine +Renee +Tracy +Cindy +Marie +Summer +Autumn +Kasey +Michele +Caitlyn +Kari +Pamela +Stacy +Virginia +Susan +Ciara +Dawn +Ariel +Raquel +Ashleigh +Gabriela +Nadia +Amelia +Jade +Kellie +Madison +Brittani +Janelle +Kristi +Natalia +Cierra +Regina +Sharon +Shelby +Nina +Tatiana +Wendy +Deborah +Kylie +Nikki +Rosa +Tina +Cassie +Cortney +Kirsten +Meredith +Ashton +Christy +Joy +Kaley +Kaylee +Marilyn +Misty +Shawna +Stefanie +Brenda +Heidi +Lydia +Sophia +Sydney +Angelina +Anne +Breanna +Charlotte +Colleen +Kristy +Martha +Theresa +Yolanda +Chloe +Jenny +Rose +Destiny +Cara +Evelyn +Ruth +Aimee +Hillary +Teresa +Antoinette +Bridget +Cheryl +Daniela +Krystle +Toni +Bailey +Carmen +Christie +Jaleesa +Precious +Carol +Charlene +Janet +Jasmin +Kristie +Melody +Robyn +Sandy +Donna +Emma +Gabriella +Tasha +Lillian +Nathalie +Tanya +Adrianna +Allyson +Esther +Helen +Hilary +Jessie +Roxanne +Simone +Suzanne +Carla +Frances +Gloria +Latasha +Madeline +Sheena +Staci +Tabatha +Tonya +Anastasia +Chantel +Claire +Elaine +Justine +Lori +Marisa +Shaina +Sylvia +Tia +Adrienne +Britni +Diane +Hope +Jaime +Jeanette +Kala +Karla +Keri +Meaghan +Shana +Britany +Camille +Ericka +Eva +Genesis +Kelley +Rochelle +Alejandra +Faith +Judith +Kendall +Miriam +Naomi +Paula +Randi +Tierra +Alexia +Brianne +Brittni +Cecilia +Christin +Ciera +Dorothy +Jocelyn +Sheila +Bonnie +Carissa +Daisy +Devon +Janice +Kayleigh +Keisha +Lea +Lissette +Mayra +Shayna +Trisha +Chelsie +Daniella +Elise +Juliana +Kaleigh +Kierra +Sonia +Belinda +Elisabeth +Jaimie +Johanna +Maegan +Mindy +Rachelle +Ruby +Shantel +Ariana +Giselle +Isabel +Jalisa +Maggie +Maritza +Mia +Patrice +Shanika +Sonya +Tiffani +Yessenia +Betty +Callie +Francesca +Nikita +Shanna +Alisa +Anita +Chantal +Christa +Christen +Hayley +Leanne +Lyndsey +Norma +Alice +Aubrey +Brittny +Christian +Elisa +Kassandra +Kate +Kiera +Michaela +Shayla +Shelly +Tracey +Abby +Alina +Alyson +Beth +Cayla +Irene +Jami +Lacy +Latisha +Shanice +Shauna +Shirley +Tanisha +Taryn +Ann +Ashlie +Beatriz +Bridgette +Celeste +Debra +India +Iris +Joanne +Kenya +Kyla +Laurie +Marisol +Marlene +Stacie +Tameka +Tammy +Traci +Alissa +Cecily +Diamond +Janay +Jena +Jennie +Josephine +Julianne +Kali +Katy +Kerri +Nadine +Racheal +Yvette +Angie +Annette +Brittaney +Chanel +Chrystal +Clarissa +Devin +Janae +Jane +Katharine +Kristyn +Lana +Lara +Leanna +Logan +Marina +Octavia +Ryan +Shelley +Silvia +Tessa +Annie +Arlene +Cameron +Chasity +Eden +Elisha +Jazmin +Jazmine +Jenifer +Jill +Kathy +Kelsie +Lorena +Mandy +Maranda +Sofia +Tamika +Tori +Tyler +Aileen +Alana +Asia +Casandra +Chandra +Elena +Jerrica +Karissa +Katelin +Princess +Stephany +Vivian +Yvonne +Alaina +Alysia +Beverly +Blanca +Brandie +Brittanie +Clara +Connie +Constance +Jana +Jerica +Lakeisha +Latonya +Leticia +Marsha +Nataly +Noel +Selina +Tequila +Terri +Aisha +Alessandra +Ashli +Ashly +Audra +Beatrice +Blair +Bobbi +Cassidy +Catalina +Chiquita +Desirae +Eboni +Ellen +Glenda +Hanna +Joann +Juanita +Katelynn +Katlyn +Kira +Krystina +Kylee +Larissa +Leigh +Lourdes +Lucia +Mackenzie +Margarita +Serena +Shanteria +Sherry +Talia +Tania +Adrianne +Alexander +Alycia +Carina +Charity +Daphne +Darlene +Emilie +Georgia +Hailey +Jackie +Jacklyn +Joan +Kaila +Kerry +Kori +Kourtney +Krysten +Lacie +Lashonda +Lena +Lorraine +Lynn +Noelle +Nora +Sade +Sadie +Shakira +Tanika +Tiffanie +Alma +Alyse +Alysha +Anais +Ashlyn +Corinne +Dayna +Elyse +Gwendolyn +Jodi +Josie +Joyce +Juliet +Kathrine +Kimberlee +Kimberley +Kristal +Kristian +Kyra +Lakeshia +Lynette +Mara +Paris +Porsha +Roxanna +Shantavia +Tiana +Abbey +Ashanti +Bobbie +Brigitte +Brittnie +Cristal +Ingrid +Janette +Janine +Jayme +Kaci +Kacie +Kailey +Kandace +Kelsea +Laurel +Leann +Loren +Luz +Maribel +Porscha +Rhonda +Rita +Shantell +Shea +Wanda +Yasmin +Adrian +Alesha +Alexandrea +Arianna +Breanne +Corey +Deja +Demetria +Dina +Eileen +Genevieve +Hollie +Ivy +Jordyn +Julianna +Justina +Katheryn +Keshia +Lakisha +Lashay +Liana +Lucy +Maryann +Racquel +Savanna +Selena +Venessa +Antionette +Araceli +Bridgett +Carli +Catrina +Chantelle +Dianna +Elissa +Esmeralda +Ivette +Jenelle +Jesenia +Jessenia +Juana +Julissa +Kailyn +Kiana +Kiersten +Kirstin +Krysta +Lee +Liza +Mandi +Marisela +Marjorie +Marquita +Martika +Maureen +Mildred +Paulina +Richelle +Shante +Shaquita +Stevie +Valencia +Alanna +Anquette +Ashely +Brittnee +Candis +Cora +Coral +Doris +Fallon +Francis +Gabriel +Hallie +Janessa +Jeannie +Juliette +Kalyn +Kasandra +Kimber +Kortney +Latrice +Leeann +Lesley +Loretta +Mariah +Maya +Mollie +Noemi +Paola +Portia +Roxana +Scarlett +Shalonda +Sharonda +Sheryl +Tanesha +Valeria +Yadira +Alecia +Alysa +Angelia +Angelique +Brenna +Britteny +Brittnay +Caley +Cari +Caridad +Charmaine +Cheyenne +Dara +Edith +Emerald +Francisca +Gillian +Giovanna +Guadalupe +Jeanne +Jeri +Johana +Kacey +Kaela +Kalee +Kandice +Kaylyn +Kelsi +Kenisha +Kirstie +Laquisha +Latoria +Leilani +Lily +Lisette +Louise +Luisa +Marcela +Margie +Mariana +Martina +Meghann +Monika +Nikole +Olga +Raven +Rebeca +Rosalinda +Rosemary +Sally +Sarai +Shameka +Shanita +Sherika +Susana +Tracie +Tricia +Whitley +Zoe +Amaris +Asha +Athena +Audriana +Britny +Carlee +Carley +Cheri +Cherry +Christal +Christi +Cori +Cory +Damaris +Dania +Debbie +Deidra +Dena +Denisse +Fabiola +Gladys +Gretchen +Hali +Ivana +Jaqueline +Jodie +Joelle +Judy +Kacy +Kasie +Kiley +Latia +Lauryn +Leeanna +Lia +Lina +Lora +Marlena +Mckenzie +Michael +Myesha +Natacha +Nicolette +Pauline +Reyna +Roberta +Shatara +Skye +Soraya +Stefani +Taja +Teri +Trista +Tristan +Vanesa +Aja +Amie +Anjelica +Antonia +Brandee +Brigette +Cathleen +Celina +Chastity +Danica +Dannielle +Dixie +Eleanor +Farrah +Geneva +Ileana +Isabella +Jacquelin +James +Jean +Jessi +Karin +Kassie +Katia +Katina +Katlin +Keira +Laci +Lakesha +Laquanda +Laquita +Liliana +Magan +Malissa +Marcia +Marion +Maura +Melisa +Micaela +Mikayla +Myra +Paulette +Peggy +Quanisha +Rachele +Raina +Rhiannon +Robert +Rosemarie +Ryann +Sable +Samatha +Samone +Shamika +Shanae +Shanelle +Shari +Shawn +Skylar +Sonja +Sophie +Tamisha +Tarah +Tera +Tyesha +Yasmine +Alesia +Allie +Ayanna +Ayla +Bernadette +Bree +Camila +Caryn +Cecelia +Cherelle +Clare +Corina +Courtnie +Daniele +Darcy +Delia +Della +Denisha +Devan +Edna +Elsie +Ester +Eunice +Felisha +Gianna +Ginger +Hazel +Heaven +Iesha +Jacquelynn +Jaimee +Janel +Janna +Jeanna +Jeannette +Jeniffer +Jesse +Jessika +Jewel +Jolene +Kaitlynn +Katrice +Kaylie +Kaylin +Keandra +Keely +Kenia +Kenyetta +Kia +Leigha +Leila +Maricela +Nakia +Natosha +Nellie +Nicolle +Niki +Penny +Phylicia +Rashida +Reina +Rena +Renae +Rene +Rikki +Ronisha +Salena +Salina +Santana +Sarina +Shacara +Shantia +Sharika +Starr +Stephani +Tana +Terra +Tess +Vannessa +Vera +Viviana +Yajaira +Alex +Amberly +Andriana +Annamarie +Aurielle +Ava +Avery +Betsy +Billie +Blaire +Breana +Britani +Casie +Celia +Chelsi +Cherish +Cherrelle +Corrie +Darla +Deana +Dianne +Dominque +Elvia +Emilee +Estefania +Farah +Felecia +Haleigh +Holley +Ivonne +Jada +Jamesha +Jamila +Janee +Jasmyn +Jody +Jolisa +Joni +Kalie +Kallie +Karie +Katerina +Kaycee +Kaylan +Kayli +Keona +Kirby +Krystyna +Kyle +Lashawn +Latoyia +Leandra +Lillie +Lizette +Lynda +Magdalena +Marcella +Marcy +Marguerite +Marian +Marla +Martine +Matthew +Minerva +Phoebe +Ramona +Reva +Sherri +Talisa +Tamra +Taneisha +Tayler +Tiarra +Tiera +Trinity +Vicki +Abbie +Ada +Ahsley +Alba +Alix +America +Angeline +Anissa +Apryl +Ashlea +Ashlynn +Austin +Bertha +Bryanna +Brynne +Camilla +Carlene +Cassaundra +Cathy +Chanell +China +Christianne +Chynna +Codi +Colby +Courteney +Crista +Cristian +Daniel +Darci +Deidre +Demi +Dominica +Domonique +Dulce +Elana +Elyssa +Ethel +Eugenia +Fatima +Franchesca +Geraldine +Hilda +Iliana +Irma +Isabelle +Jammie +Janell +Jeanine +Jerika +Joi +Joshua +Joycelyn +Kalynn +Kandis +Kanisha +Keosha +Kristyna +Krizia +Lakendra +Lashanda +Latara +Latesha +Latricia +Leighann +Lenora +Lianne +Lidia +Linsey +Lois +Lorna +Lyndsay +Magen +Marianne +Mariela +Mattie +Maxine +Milagros +Misti +Natalee +Nichelle +Page +Porshia +Quanesha +Rana +Regan +Romina +Rosalie +Rubi +Samara +Sammantha +Sandi +Shakara +Shakera +Shaniece +Shaniqua +Shanique +Shanta +Shantrell +Sharelle +Sheree +Sheri +Sherita +Sherrie +Stefany +Stephenie +Tabetha +Tamela +Tawny +Teaira +Telisha +Tiesha +Unique +Valarie +Vicky +Yazmin +Adeline +Adria +Aida +Alena +Aleshia +Ali +Alisia +Anabel +Anamaria +Andreina +Angelita +Annemarie +Ansley +Antwanette +Ashlei +Baby +Becky +Bernice +Blake +Brittiany +Brook +Caitlynn +Candance +Candida +Carey +Chanelle +Charisma +Charissa +Charnele +Chassidy +Cherie +Christopher +Chyna +Collette +Corinna +Cortni +Cristin +Cristine +Dalia +Danika +Daphney +Deandra +Delilah +Dionne +Dora +Drew +Eliana +Eliza +Elora +Elsa +Erinn +Esperanza +Essence +Estela +Evan +Felica +Francheska +Gisselle +Helena +Holli +Infant +Ivory +Jackeline +Jamee +Jameshia +Jamey +Janea +Janie +Jaquelyn +Jasmaine +Jenae +Jennica +Jessyca +Joana +Joselyn +Kacee +Kailee +Kami +Karol +Karrie +Kati +Kayle +Kaylen +Keara +Kendell +Kenyatta +Kerrie +Kerstin +Kiarra +Kristan +Krystin +Kyara +Laila +Lakia +Laporsha +Lashae +Lashawnda +Laticia +Latosha +Lavonda +Layla +Lilian +Lilly +Loni +Madeleine +Malinda +Malisa +Mari +Marilee +Marlana +Meagen +Mercy +Meylin +Mikaela +Mikala +Miracle +Misha +Moriah +Nadeige +Nicholas +Patience +Pricilla +Raechel +Rania +Reba +Sari +Sequoia +Shadae +Shakayla +Shalanda +Shaneka +Shani +Shannan +Shantae +Shatavia +Shavon +Shawnta +Siedah +Skyler +Sommer +Stella +Steven +Sunny +Susanna +Symone +Takia +Tashara +Tatianna +Tempest +Tempestt +Tenesha +Tenisha +Terica +Terrica +Tianna +Trina +Tyeisha +Valentina +Vickie +Winnie +Yanira +Agnes +Aleisha +Alia +Alishia +Amarilys +Amethyst +Anisha +Annmarie +Anthony +Anya +Aryn +Ashante +Astrid +Aubrie +Audreana +Audrianna +Barbie +Bionca +Brandon +Brett +Brittini +Cali +Caprice +Casee +Cassi +Cassondra +Catlin +Cherise +Christianna +Cody +Colette +Consuelo +Cristy +Danae +Danna +Danyelle +Davida +Dayana +Debora +Dedra +Deena +Deirdre +Delores +Deneisha +Deona +Destany +Destiney +Diandra +Dorian +Ebonie +Echo +Elaina +Ella +Emilia +Eryn +Estrella +Fawn +Fernanda +Flor +Flora +Florence +Gail +Gena +Gigi +Gisel +Gisela +Ilana +Imani +Indira +Isis +Jaclynn +Jacquline +Jael +Jalessa +Jamara +Jamia +Janina +Janis +Jasmyne +Jazma +Jazmyn +Jeanie +Jelisa +Jennah +Jenni +Jenniffer +Jesica +Jessa +Jo +Johnna +Joseph +Josette +Jourdan +Julee +Julian +Julisa +Kaelyn +Kamisha +Karena +Karlee +Karly +Karoline +Kasha +Kaylene +Kaytlyn +Keaira +Kenesha +Kenna +Kesha +Keturah +Keyana +Kiaya +Kim +Kindra +Kisha +Kristiana +Krysti +Laquandra +Latavia +Leyla +Lissa +Liz +Lizbeth +Lorin +Lucerito +Madalyn +Madelyn +Maite +Mallorie +Marcie +Mariel +Markesha +Markeshia +Markia +Marta +Maylin +Mellisa +Mellissa +Melyssa +Mercedez +Meridith +Micah +Michell +Miesha +Mimi +Mindi +Mona +Monet +Montana +Nakita +Nastassia +Natali +Natalya +Natashia +Nicki +Niesha +Nilda +Porche +Priya +Rae +Riley +Rocio +Ronnisha +Rosalia +Rosalyn +Rosanna +Rosario +Rosetta +Sabine +Sada +Sage +Saudia +Saundra +Sebrina +Selene +Shakeira +Shaketa +Shakia +Shala +Shamara +Shamekia +Shandra +Shandrea +Shanequa +Shanise +Shantal +Shantelle +Sharda +Sharron +Shaunna +Shavonna +Shena +Sheneka +Sherell +Sheridan +Shiloh +Shyla +Siobhan +Sky +Sloane +Stephaine +Stephania +Susie +Suzette +Tacara +Tamia +Tequilla +Terria +Terry +Thelma +Tierney +Tisha +Tonia +Tracee +Tyisha +Tyra +Ursula +Valery +Vania +Veronique +Vianca +Vilma +Whittney +Winter +Xiomara +Zipporah +Zuri +Ashley +Jessica +Brittany +Amanda +Stephanie +Samantha +Sarah +Jennifer +Lauren +Nicole +Amber +Tiffany +Elizabeth +Megan +Kayla +Courtney +Danielle +Heather +Melissa +Chelsea +Christina +Michelle +Rachel +Rebecca +Emily +Jasmine +Kimberly +Alexandra +Katherine +Victoria +Kristen +Crystal +Sara +Alyssa +Brittney +Erica +Laura +Kelly +Vanessa +Caitlin +Alexis +Mary +Taylor +Andrea +Erin +Natalie +Amy +Jamie +Kelsey +Lindsey +Maria +Christine +Angela +Shannon +Hannah +Alicia +Cassandra +Kristina +Kathryn +Katie +Jordan +Morgan +Kristin +Jacqueline +Allison +Lisa +Monica +Brianna +Whitney +Bianca +Brooke +Lindsay +Patricia +Erika +Anna +Catherine +Alexandria +Krystal +Marissa +April +Tara +Brandi +Melanie +Ariel +Casey +Kaitlyn +Jenna +Julia +Olivia +Sabrina +Shelby +Veronica +Gabrielle +Julie +Kaitlin +Katelyn +Diana +Kathleen +Cynthia +Leah +Paige +Meghan +Natasha +Brandy +Cristina +Britney +Holly +Katrina +Felicia +Briana +Desiree +Rachael +Kara +Leslie +Meagan +Dana +Miranda +Caroline +Margaret +Monique +Candace +Angelica +Gina +Sierra +Kiara +Alexa +Haley +Ana +Ashlee +Dominique +Bethany +Breanna +Molly +Candice +Yesenia +Karen +Valerie +Chelsey +Carolina +Mercedes +Rebekah +Kendra +Deanna +Tatiana +Adriana +Priscilla +Sandra +Tabitha +Abigail +Latoya +Grace +Stacey +Jaclyn +Arielle +Brittani +Nancy +Sasha +Alison +Krista +Nichole +Alisha +Ashleigh +Barbara +Kirsten +Tamara +Raquel +Summer +Ebony +Jillian +Caitlyn +Joanna +Carly +Lacey +Sydney +Gabriela +Savannah +Ciara +Autumn +Angel +Gabriella +Pamela +Stacy +Kelli +Brenda +Janelle +Karina +Virginia +Robin +Amelia +Carrie +Michele +Linda +Teresa +Denise +Kaley +Marie +Susan +Kasey +Cindy +Kristy +Mallory +Christy +Destiny +Emma +Deborah +Claudia +Angelina +Cierra +Sophia +Carolyn +Carmen +Cortney +Raven +Renee +Chloe +Jacquelyn +Kristine +Tiara +Cara +Kristi +Bridget +Ericka +Gloria +Hillary +Jenny +Shaniqua +Audrey +Madison +Melinda +Tina +Allyson +Anne +Stefanie +Tracy +Adrienne +Hope +Jade +Jocelyn +Regina +Janet +Toni +Karla +Wendy +Jasmin +Melody +Nina +Theresa +Lydia +Kaylee +Kierra +Rachelle +Tierra +Aimee +Cassie +Christie +Colleen +Justine +Kari +Kylie +Bailey +Claire +Heidi +Marisa +Rosa +Ariana +Hayley +Madeline +Paula +Ciera +Kellie +Precious +Sharon +Tia +Antoinette +Camille +Carla +Charlene +Daniella +Jeanette +Natalia +Brittni +Carol +Charlotte +Jaime +Keri +Meredith +Aubrey +Hilary +Jessie +Lillian +Trisha +Alejandra +Ann +Ashton +Carissa +Daniela +Dawn +Devin +Ellen +Evelyn +Joy +Katlyn +Martha +Ruby +Chantel +Chelsie +Margarita +Robyn +Ruth +Asia +Devon +Genesis +Nikki +Patrice +Rose +Shawna +Simone +Tabatha +Yolanda +Adrianna +Francesca +Kate +Naomi +Tanya +Tonya +Abby +Alexia +Callie +Cassidy +Donna +Frances +Giselle +Kaleigh +Meaghan +Mia +Shaina +Shanna +Shayla +Suzanne +Alissa +Cayla +Dorothy +Elisabeth +Karissa +Kelley +Miriam +Misty +Cecilia +Shayna +Taryn +Alana +Anastasia +Jazmine +Judith +Mackenzie +Nathalie +Shantel +Sheena +Tiffani +Alyson +Clarissa +Elise +Esther +Faith +Lori +Marilyn +Michaela +Randi +Stacie +Yessenia +Christian +Elena +Eva +Kassandra +Kourtney +Lakeisha +Lena +Nadia +Angelia +Christa +Elisa +Isabel +Kristie +Krystle +Mariah +Roxanne +Shauna +Tori +Bonnie +Debra +Hailey +Iris +Janice +Jazmin +Marina +Sandy +Sonia +Alanna +Chantal +Daisy +Katelynn +Kendall +Kristian +Krystina +Mayra +Noelle +Shana +Tammy +Tasha +Brandie +Diane +Elaine +Jerrica +Kiera +Kyla +Lacy +Lissette +Sally +Sheila +Betty +Breana +Cheryl +Genevieve +Johanna +Kaila +Keisha +Kerry +Lyndsey +Maranda +Racheal +Rochelle +Sylvia +Terri +Annie +Belinda +Helen +India +Jalisa +Jana +Kailey +Kira +Kirstie +Lucy +Marisol +Rosemary +Savanna +Shirley +Beverly +Britni +Chrystal +Jane +Jill +Kala +Kristyn +Leanna +Loren +Maggie +Paola +Stephany +Adrian +Alisa +Arianna +Chanel +Jena +Jenifer +Jessenia +Joanne +Juliana +Katharine +Kirstin +Latasha +Leticia +Lorena +Rhonda +Tamika +Yvette +Alesha +Alycia +Britany +Carina +Dianna +Janae +Juanita +Julianne +Kerri +Mandy +Maritza +Octavia +Sonya +Tanisha +Tiffanie +Traci +Tyler +Aisha +Alice +Alysha +Angie +Ashlie +Bridgett +Charity +Constance +Daphne +Hanna +Iesha +Jessika +Katelin +Mindy +Nikita +Serena +Shelly +Skylar +Tessa +Valencia +Beth +Brianne +Bridgette +Cheyenne +Darlene +Eileen +Guadalupe +Isabella +Jami +Jodi +Justina +Kaylyn +Kristal +Marla +Marlene +Mollie +Princess +Shanika +Sherry +Staci +Tania +Tracey +Alaina +Alina +Anita +Beatriz +Blanca +Brittaney +Brittanie +Christin +Coral +Cristal +Diamond +Irene +Janette +Kacie +Kayleigh +Kenya +Krysten +Liliana +Lynn +Marjorie +Nicolette +Sade +Stefani +Talia +Valeria +Aileen +Alessandra +Annette +Blair +Britny +Casandra +Chiquita +Corey +Ingrid +Isamar +Ivana +Jacklyn +Jaleesa +Joan +Juana +Kali +Kanisha +Kaylin +Kiersten +Kimberlee +Lacie +Leanne +Leigh +Lorraine +Lucia +Maegan +Marsha +Maya +Rita +Shameka +Shante +Sofia +Tameka +Vivian +Yvonne +Alecia +Alma +Ashely +Ashlyn +Elyse +Esmeralda +Jaimie +Josephine +Kaitlynn +Kanesha +Kelsi +Kenisha +Keshia +Kyra +Laquita +Larissa +Lauryn +Logan +Maribel +Monika +Nadine +Norma +Symone +Ali +Brittny +Christen +Cori +Fatima +Janay +Janine +Jerica +Joyce +Kaci +Kalyn +Kathy +Kelsie +Latonya +Macy +Mara +Marcella +Silvia +Tiera +Tricia +Viviana +Alysia +Brenna +Camila +Celeste +Celia +Chasity +Connie +Dakota +Demetria +Devan +Geraldine +Jamila +Kalie +Latifah +Latrice +Laurel +Leandra +Leila +Luz +Mari +Olga +Shantell +Zoe +Alexandrea +Allie +Angelique +Ashly +Billie +Danica +Destinee +Emilee +Georgia +Haleigh +Jayme +Jesse +Kia +Lana +Lea +Mariana +Marisela +Rebeca +Sadie +Shantavia +Shea +Shelley +Terra +Tiana +Alyse +Amie +Anais +Beatrice +Bryanna +Clara +Danyelle +Deana +Desirae +Elyssa +Gabriel +Gretchen +Ivy +Jackie +Jennie +Jesenia +Johana +Julissa +Kacey +Kaneisha +Katy +Kaylie +Kim +Mandi +Marcia +Maura +Nakita +Nataly +Paris +Porsche +Sarai +Shakira +Shaneka +Shaquita +Vanesa +Wanda +Yasmin +Ashli +Blake +Breanne +Brittnay +Cecily +Chandra +Cherie +Corinne +Dara +Dayna +Debbie +Deidra +Dominque +Eboni +Edith +Elisha +Elissa +Emilie +Farah +Gladys +Hollie +Janie +Janna +Joelle +Kandice +Karyn +Katlin +Kaycee +Kimberley +Lashonda +Lesley +Liza +Marcela +Maricela +Marlena +Mckenzie +Noemi +Porsha +Ryan +Selena +Sharonda +Sonja +Tianna +Abbey +Ada +Baby +Brittnee +Cameron +Chantelle +Charmaine +Chastity +Christi +Cody +Cory +Cristine +Danae +Daniele +Deja +Deondra +Devyn +Dina +Eleanor +Eliza +Felisha +Ginger +Holli +Jesica +Jordyn +Josie +Julianna +Kacy +Kandace +Kati +Keeley +Kiana +Kiarra +Krysta +Krystin +Lakeshia +Latavia +Latisha +Latoria +Laurie +Leann +Leeann +Lisette +Loretta +Lyndsay +Maureen +Melisa +Micaela +Michael +Nia +Nikole +Peggy +Portia +Rhiannon +Shanequa +Shantrell +Sheri +Stefany +Susana +Tamesha +Yasmine +Alannah +Alesia +Alex +Anabel +Antionette +Audra +Austin +Becky +Bobbie +Chantell +Chelsy +Cherish +Damaris +Danna +Denisha +Eden +Fallon +Geneva +Gwendolyn +Helena +Jean +Jeanine +Jeannie +Jelisa +Kaela +Kathrine +Kathryne +Katlynn +Keely +Kenia +Keondra +Kylee +Laci +Laporsha +Lashawn +Latosha +Lillie +Madelyn +Magdalena +Magen +Makayla +Maryann +Milagros +Myra +Reyna +Shanice +Shanique +Shanteria +Shari +Shawn +Skye +Skyler +Suzette +Tashara +Adrianne +Alia +Allyssa +Antonia +Arlene +Asha +Ashanti +Athena +Brielle +Carlie +Catalina +Cathryn +Celina +Chanelle +Cheri +Christal +Danisha +Domonique +Emerald +Estefania +Fabiola +Farrah +Flor +Francis +Giovanna +Heaven +Ida +Ivette +Ivory +Janel +Jolene +Joselyn +Kallie +Kaneesha +Katherin +Katheryn +Kenyatta +Kimber +Kristan +Leigha +Lina +Lizbeth +Lourdes +Lucero +Lynette +Madeleine +Margo +Marion +Markeisha +Marquita +Rebeka +Reina +Ryann +Sage +Scarlett +Sharlene +Siera +Stevie +Suzanna +Taneisha +Taneshia +Tonisha +Tristan +Vicky +Abbie +Ashlynn +Aubrie +Bernice +Betsy +Cathy +Cecelia +Chelsi +Dannielle +Darcy +Deidre +Demi +Diandra +Edna +Eliana +Essence +Glenda +Hazel +Iliana +Isabelle +Jackeline +Jaimee +Janee +Jasmyne +Jeannette +Joann +Jordana +Jourdan +Kasandra +Kaylah +Kayley +Kortney +Lakesha +Lakisha +Lara +Liana +Lily +Lora +Malissa +Mallorie +Marcie +Marcy +Marlee +Maxine +Melina +Mellissa +Merissa +Mona +Natali +Nicolle +Paulette +Pauline +Phylicia +Quanisha +Rosalinda +Rosalyn +Rubi +Sequoia +Shalonda +Shamika +Shani +Shantal +Shatara +Shelbi +Sheryl +Sophie +Spencer +Takara +Tarah +Tayler +Tera +Trina +Trinity +Vannessa +Whitley +Aja +Aleshia +Alexi +Alishia +Alyssia +Amberly +Ariell +Ariella +Ashliegh +Audriana +Avery +Ayla +Brandee +Breonna +Bria +Britnee +Brittnie +Bryana +Cari +Carley +Cassondra +Catrina +Cheyanne +China +Christiana +Chynna +Colby +Corrine +Crista +Danika +Dixie +Elana +Eleni +Francine +Georgina +Gianna +Gillian +Haylee +Hilda +Ilana +Ivonne +Jalissa +Janell +Jaqueline +Jasmyn +Jeana +Jeanne +Jenelle +Jeniffer +Jessi +Jewel +Joana +Jody +Judy +Juliette +Kaitlan +Kalynn +Kamilah +Kandyce +Karin +Kasie +Kaylan +Keandra +Keanna +Kelsea +Kesha +Kiley +Kirstyn +Krizia +Kyle +Laquisha +Lawanda +Layla +Leilani +Lia +Lindy +Lisbeth +Lizette +Lucille +Malika +Marianne +Marta +Martika +Micah +Milagro +Misti +Moriah +Natalya +Rachele +Rashida +Rena +Richelle +Roberta +Roxanna +Santana +Selina +Shakita +Shamara +Shanae +Shanelle +Shaniece +Shanita +Shanta +Shantae +Sharita +Shena +Shenika +Sherika +Sherri +Sommer +Soraya +Sunny +Susanna +Tanesha +Tequila +Teri +Tess +Tiarra +Trista +Yanira +Alayna +Alena +Alora +Alyshia +America +Anjelica +Araceli +Ariela +Arika +Ashia +Ashlea +Aurora +Bailee +Bernadette +Bionca +Bobbi +Brigitte +Cady +Caitlan +Caley +Caylee +Chanda +Ciarra +Cinthia +Clare +Codi +Cristin +Daniell +Dora +Elaina +Elsa +Estela +Eugenia +Francina +Gisselle +Graciela +Griselda +Hallie +Harley +Ileana +Jada +Jalesa +Jamesha +Janessa +Jazmyn +Jazmyne +Juliet +Kadie +Kady +Karisa +Karly +Karri +Katerina +Katia +Kaylen +Kelcie +Kenyetta +Keosha +Keyla +Kori +Kourtni +Kyrie +Lakendra +Lakia +Laquinta +Lashanda +Latesha +Latia +Latravia +Lee +Leondra +Leonor +Linsey +Lissa +Lynda +Marah +Marianna +Maricruz +Markita +Mechelle +Meisha +Meranda +Nakia +Natalee +Niesha +Noel +Nora +Paulina +Raisa +Renae +Reva +Rosalind +Roxana +Shanell +Shantelle +Shantoria +Shay +Shelbie +Sheree +Susannah +Sydni +Taniesha +Tanika +Teal +Tynisha +Valentina +Vanity +Vicki +Alba +Alberta +Aleisha +Alexsandra +Alica +Alysa +Anissa +Annabel +Annabelle +Annemarie +Annmarie +Anquette +Aria +Ashlei +Ava +Ayana +Brieanna +Brionna +Britteny +Brittiany +Candy +Carli +Cera +Channel +Chanteria +Chantrell +Charlie +Corie +Courtnie +Cristian +Dania +Danyell +Darby +Darci +Delicia +Delilah +Dena +Desire +Destini +Dianne +Dionne +Doris +Elia +Ella +Emilia +Eunice +Felecia +Franchesca +Francisca +Gia +Halie +Irma +Isabela +Isis +Jacquelin +Jamia +Jamilah +Janielle +Jenise +Jeri +Jessa +Jesseca +Johnisha +Jolie +Kailee +Kailyn +Kami +Kassie +Katarina +Katiana +Katina +Kayli +Kaytlin +Kerstin +Keturah +Keyanna +Keyera +Khadijah +Kiah +Kianna +Kirby +Kyrstin +Laquanda +Laquandra +Lianna +Lilia +Lilian +Linnette +Lorna +Louise +Lovely +Lucinda +Luisa +Mabel +Mahogany +Mariam +Marian +Mariela +Marti +Melodie +Michell +Mikaela +Mildred +Miracle +Misha +Mya +Myranda +Natacha +Natascha +Natosha +Nereida +Nija +Patience +Patsy +Porscha +Quanesha +Racquel +Ramona +Ranisha +Rasheeda +Rhea +Riley +Rocio +Rosalie +Rosario +Salina +Samara +Shanay +Shantia +Shaquilla +Sharee +Sharell +Sharika +Sharnell +Shawanda +Shira +Sindy +Stacia +Stephenie +Stormie +Talisha +Tami +Tamra +Tawny +Tenesha +Tenisha +Tequilla +Terrica +Theodora +Tierney +Timesha +Torrie +Tyesha +Tyneshia +Vianca +Vickie +Violet +Violeta +Whittney +Yadira +Yecenia +Zara +Adina +Adriane +Akira +Alaura +Alexus +Aliza +Amalia +Amara +Andreina +Angelene +Angeline +Angelita +Aubree +Baylee +Bertha +Brea +Bree +Briauna +Britnie +Brittiney +Brittiny +Brook +Bryce +Brynn +Cali +Candis +Caridad +Carlita +Caryn +Cassey +Cathleen +Cathrine +Chandler +Channing +Chaquita +Chardae +Charissa +Charisse +Chelsee +Cherise +Christopher +Cinthya +Corinna +Cristen +Dallas +Daphney +Darielle +Daryl +Dayana +Deandra +Delaney +Denisse +Dolores +Dulce +Ebonie +Elicia +Elisabet +Emmanuela +Eryn +Esperanza +Eve +Fiona +Florence +Francheska +Gail +Gisel +Gracie +Hali +Iman +Ines +Ivanna +Ivis +Jaimi +Jannette +Jayla +Jeannine +Jenae +Jennyfer +Jessalyn +Jesselyn +Joane +Jodie +Jordon +Joshua +Kai +Kalee +Kalen +Kandi +Karah +Karena +Karlie +Kasi +Katey +Kathlyn +Katrice +Katya +Kayle +Kaylea +Keirra +Keirsten +Kenesha +Keona +Khadija +Kisha +Kourtnie +Krystine +Krystyna +Lashavia +Lashawnda +Latara +Latricia +Laurin +Leighann +Letitia +Lidia +Lila +Lilly +Lindsy +Loni +Lorie +Lyndsi +Lynsey +Macey +Madalyn +Madelaine +Magaly +Maia +Maira +Makeda +Makenzie +Malinda +Margaux +Markia +Marlana +Mattie +Maygan +Meagen +Mellanie +Mellisa +Melonie +Mercedez +Merline +Meryl +Mikayla +Mimi +Mirna +Mirtha +Monet +Montana +Myriam +Natashia +Natassia +Nehemie +Nichelle +Nisha +Nyssa +Phoebe +Porcha +Porshia +Pricilla +Quinisha +Raechel +Raina +Rainey +Reanna +Rebecka +Ricki +Rina +Roneisha +Rosemarie +Sacha +Saundra +Savanah +Shae +Shakari +Shakera +Shakeria +Shanetta +Shanterria +Shaquana +Shaquanda +Sharda +Sharmaine +Shatavia +Shatoria +Shellie +Shereka +Shyla +Siobhan +Sophonie +Starla +Starr +Steffanie +Steffany +Stella +Stephani +Sunshine +Sydnee +Tabetha +Takia +Tamekia +Tamisha +Tangela +Tatianna +Tatum +Tawana +Terria +Terry +Thea +Tiesha +Timeka +Tonia +Tory +Tracie +Tristen +Tynesha +Tyra +Valery +Venus +Vilma +Wendi +Wilda +Wilma +Yajaira +Yazmin +Zena +Ashley +Jessica +Brittany +Amanda +Stephanie +Samantha +Sarah +Jennifer +Kayla +Lauren +Nicole +Megan +Chelsea +Elizabeth +Amber +Danielle +Emily +Tiffany +Rachel +Michelle +Melissa +Heather +Christina +Courtney +Jasmine +Victoria +Rebecca +Alexandra +Shelby +Katherine +Taylor +Alexis +Kimberly +Crystal +Sara +Alyssa +Andrea +Kelly +Mary +Kristen +Kelsey +Erica +Lindsey +Maria +Laura +Caitlin +Hannah +Vanessa +Natalie +Jamie +Amy +Brittney +Ariel +Brianna +Katie +Morgan +Brooke +Cassandra +Erin +Shannon +Kathryn +Allison +Alicia +Kristina +Christine +Angela +Catherine +Olivia +Jacqueline +Bianca +Lindsay +Kaitlyn +Julia +Alexandria +Kristin +Anna +Whitney +Erika +Jordan +Mariah +Monica +Krystal +Marissa +Brandi +Katelyn +Patricia +Jenna +Lisa +Veronica +Melanie +Briana +Gabrielle +Paige +Leah +Kaitlin +Desiree +Miranda +Kathleen +April +Diana +Tara +Casey +Kara +Cynthia +Haley +Rachael +Alexa +Cristina +Julie +Holly +Caroline +Dominique +Iesha +Katrina +Meghan +Felicia +Sabrina +Ana +Arielle +Molly +Brandy +Carly +Meagan +Natasha +Kiara +Deanna +Adriana +Tabitha +Mercedes +Savannah +Valerie +Karen +Leslie +Margaret +Monique +Abigail +Dana +Kirsten +Sierra +Breanna +Raven +Sandra +Ashlee +Gabriela +Rebekah +Chelsey +Gina +Madison +Candace +Britney +Ebony +Gabriella +Chloe +Priscilla +Carolina +Jillian +Lacey +Ashleigh +Brenda +Alisha +Angelica +Mallory +Sydney +Caitlyn +Jade +Bethany +Kendra +Ciara +Angel +Joanna +Krista +Kaley +Linda +Nancy +Sasha +Destiny +Kaylee +Autumn +Barbara +Jaclyn +Jacquelyn +Karina +Candice +Cheyenne +Grace +Hillary +Nichole +Cindy +Kasey +Yesenia +Carrie +Carolyn +Kelli +Summer +Tatiana +Toni +Alison +Stacey +Stacy +Emma +Audrey +Kristi +Latoya +Melinda +Hayley +Cierra +Claudia +Cortney +Devon +Brittani +Denise +Faith +Janelle +Kristine +Teresa +Marie +Angelina +Raquel +Robin +Amelia +Hope +Jessie +Susan +Theresa +Bridget +Nina +Sophia +Madeline +Ariana +Simone +Tia +Cara +Devin +Jasmin +Tamara +Wendy +Daniela +Natalia +Renee +Deborah +Karla +Carla +Pamela +Shawna +Jenny +Regina +Virginia +Gloria +Naomi +Genesis +Hailey +Kari +Shaniqua +Zoe +Lydia +Martha +Melody +Rosa +Carmen +Cassie +Mackenzie +Michele +Paula +Shana +Tina +Evelyn +Tiara +Tierra +Colleen +Meredith +Tracy +Alissa +Frances +Jazmine +Keri +Kierra +Precious +Sharon +Bailey +Cecilia +Francesca +Kellie +Nadia +Alejandra +Aubrey +Chelsie +Christy +Misty +Nathalie +Ruth +Shayna +Tori +Callie +Ericka +Judith +Kayleigh +Kristy +Kylie +Aimee +Alexia +Allyson +Camille +Ciera +Heidi +Jalisa +Juliana +Kailey +Robyn +Adrianna +Janet +Joy +Justine +Kassandra +Shayla +Tonya +Annie +Charlotte +Diamond +Jazmin +Jocelyn +Katlyn +Kelley +Stefanie +Adrienne +Anita +Elisabeth +Hilary +Kaila +Kendall +Kenya +Vivian +Alana +Ashton +Carissa +Christian +Daphne +Mayra +Patrice +Rachelle +Sonia +Tabatha +Tyler +Brianne +Chanel +Chantel +Daisy +Dakota +Esther +Iris +Janae +Kiera +Lori +Marisa +Nikki +Tanya +Alice +Celeste +Donna +Jacklyn +Jeanette +Joanne +Lillian +Sofia +Suzanne +Ann +Asia +Bonnie +Carol +Cassidy +Claire +Elise +Eva +Hanna +Julianne +Kate +Kyla +Maranda +Miriam +Shaina +Tanisha +Tiffani +Ashlie +Corinne +Dawn +Ellen +Jenifer +Jessenia +Johanna +Kristie +Maegan +Maggie +Mia +Nikita +Roxanne +Aisha +Cayla +Janay +Kourtney +Lyndsey +Randi +Serena +Shantel +Sheila +Tasha +Christa +Giselle +Jaime +Jaimie +Jane +Kelsie +Kira +Latasha +Leanna +Lorena +Meaghan +Alina +Anastasia +Antoinette +Beatriz +Brittni +Charlene +Cheryl +Christen +Christie +Daniella +Elena +Helen +Octavia +Rose +Shakira +Anne +Demi +Isabel +Janice +Joyce +Kali +Keisha +Kenisha +Rochelle +Shirley +Stacie +Abby +Alanna +Arianna +Desirae +Kaleigh +Katharine +Kristyn +Lakeisha +Norma +Ruby +Shanice +Shanika +Staci +Stephany +Sylvia +Tania +Tessa +Yessenia +Alisa +Angelique +Ashlyn +Beatrice +Betty +Diane +Jami +Latisha +Marilyn +Noelle +Sandy +Taryn +Audra +Blair +Charity +Clarissa +Deidre +Ieshia +Jamesha +Lacy +Lucy +Maribel +Michaela +Mollie +Rebeca +Tayler +Tracey +Alexandrea +Alysha +Bridgette +Eileen +Emilie +Isabella +Kaci +Karissa +Katelynn +Larissa +Macy +Margarita +Marina +Shanna +Shauna +Shelly +Tamika +Yolanda +Ashely +Brenna +Elisa +Genevieve +India +Kirstie +Krystle +Leigh +Marlene +Tammy +Britni +Casandra +Chantal +Coral +Dorothy +Jana +Josephine +Kathy +Katy +Kaylin +Rita +Shelbi +Sherry +Silvia +Tiana +Alyson +Angie +Beverly +Blanca +Dianna +Elissa +Gianna +Jena +Jessika +Jodi +Justina +Kacie +Kalyn +Laquisha +Laurie +Logan +Mandy +Maritza +Nadine +Terri +Tiffanie +Yvette +Alaina +Ashli +Ashly +Britany +Carley +Chasity +Christin +Cristal +Debra +Demetria +Destinee +Devan +Ivette +Jackie +Janine +Jordyn +Julianna +Katlin +Kaylyn +Kelsi +Kiersten +Lacie +Lakendra +Lily +Mariana +Marjorie +Marsha +Maya +Princess +Rhiannon +Stefani +Susana +Viviana +Aileen +Alycia +Amie +Ayla +Camila +Clara +Corey +Esmeralda +Juanita +Kalie +Kerri +Leanne +Lena +Lissette +Loren +Marcia +Marisol +Melina +Nora +Paola +Paulina +Racheal +Rebeccah +Sharonda +Symone +Traci +Trisha +Yvonne +Alecia +Alessandra +Ali +Andria +Arlene +Breanne +Brittaney +Brittnee +Carina +Dara +Eunice +Giovanna +Jaleesa +Juana +Kerry +Krystina +Latesha +Leticia +Lidia +Mckenzie +Moriah +Noemi +Rosemary +Savanna +Shameka +Shanae +Shea +Sheena +Sonya +Stevie +Tanesha +Tiera +Alexus +Allyssa +Annette +Belinda +Beth +Chelsi +Chrystal +Cori +Dina +Eboni +Elaine +Estefania +Gretchen +Guadalupe +Hollie +Janie +Jean +Jennie +Jerica +Jesenia +Jill +Kacey +Kaitlynn +Kala +Kanesha +Kimberley +Latifah +Laurel +Lea +Maryann +Nicolette +Porsha +Rhonda +Shaquita +Tracie +Valencia +Valeria +Alesha +Allie +Alysia +Anjelica +Athena +Bobbi +Brandie +Carlee +Catalina +Christiana +Connie +Darlene +Domonique +Elyse +Gwendolyn +Heaven +Janna +Jeniffer +Jessi +Joelle +Julissa +Karly +Katelin +Kaylie +Kenyatta +Kimberlee +Kyra +Lauryn +Lorraine +Mara +Marisela +Marla +Myra +Sally +Shelbie +Skye +Skylar +Talia +Tameka +Tkeyah +Adrian +Anais +Aurora +Bobbie +Bridgett +Brigitte +Brittanie +Brittny +Carlie +Celia +Celina +Chantelle +Chiquita +Corina +Dayna +Deandra +Deidra +Emilee +Franchesca +Geneva +Halie +Ingrid +Jaimee +Janessa +Jesse +Joan +Josie +Juliette +Karli +Kathrine +Kelsea +Kirstin +Krysten +Lakesha +Latrice +Lesley +Liliana +Lizbeth +Lourdes +Lucia +Lynn +Melisa +Mindy +Nicollette +Noel +Quanisha +Sade +Sarai +Selena +Shanteria +Tess +Tiarra +Tyesha +Yasmin +Aerial +Alex +Alma +Anabel +Becky +Breonna +Bria +Brook +Bryanna +Cameron +Casie +Cheyanne +Cristine +Doris +Dulce +Eden +Edith +Elaina +Elisha +Farah +Fatima +Georgia +Geraldine +Gladys +Imani +Irene +Janel +Jesica +Johnna +Kasandra +Kasie +Katerina +Kaycee +Kayley +Keandra +Keila +Kristal +Krizia +Lana +Laquita +Latia +Leigha +Madeleine +Madelyn +Marian +Nikole +Paris +Rocio +Scarlett +Shakia +Shantell +Teri +Vanesa +Vicky +Whitley +Abbey +Annmarie +Asha +Baby +Billie +Blake +Caley +Candy +Cari +Caridad +Cherish +Christi +Chynna +Corrie +Corrine +Dania +Deja +Devyn +Eliana +Fabiola +Glenda +Hailee +Ilana +Isabelle +Isamar +Ivana +Jamila +Janell +Janette +Jeanne +Jerrica +Jewel +Juliet +Kacy +Keosha +Kiana +Kori +Lakeshia +Lashay +Leila +Luz +Lyndsay +Lynsey +Maira +Marcela +Marcella +Maura +Maureen +Olga +Paulette +Riley +Ryan +Samara +Selina +Shalonda +Shamika +Shani +Shantavia +Sidney +Siobhan +Tangela +Tenisha +Tianna +Vannessa +Whittney +Yasmine +Adrianne +Alia +Ashlynn +Aubree +Avery +Ayana +Betsy +Breana +Brielle +Bryana +Carline +Cathryn +Ceara +Chandra +Cherie +China +Ciarra +Deana +Desire +Dolores +Esperanza +Georgina +Haleigh +Hali +Hallie +Hana +Harley +Irma +Isis +Ivory +Jeannette +Jeannie +Joann +Jolie +Kailyn +Kalee +Kassie +Kati +Kayle +Laquesha +Leandra +Louise +Mandi +Markeisha +Marlena +Martine +Miracle +Monika +Nataly +Nia +Nikia +Perla +Racquel +Rikki +Sadie +Shakeria +Shanequa +Shelley +Sonja +Starr +Stormy +Tamra +Terra +Alysa +Anissa +Antonia +Aryn +Astrid +Brea +Britnee +Candis +Cecelia +Christal +Corrina +Danica +Dannielle +Darcy +Flor +Francheska +Francis +Gabriel +Ileana +Jacquelin +Jazzmine +Joana +Jodie +Judy +Karlee +Katarina +Katheryn +Kaylan +Keira +Keyonna +Kiesha +Kortney +Krysta +Krystin +Kyle +Laci +Lara +Lashonda +Latonya +Lawanda +Liana +Liz +Lynette +Magdalena +Magen +Malorie +Marianna +Marquita +Martika +Meranda +Myeisha +Niesha +Pauline +Phylicia +Rene +Richelle +Roneisha +Rosemarie +Roxana +Sage +Samira +Sarina +Shakayla +Shaquana +Shari +Shatavia +Sherika +Siera +Skyler +Susannah +Tatyana +Thalia +Tiesha +Tricia +Valarie +Vania +Ainsley +Allysa +Alyssia +Angelia +Araceli +Ariella +Ashlea +Ayanna +Ayesha +Brittnay +Brooklyn +Carey +Carli +Carson +Cathy +Cecily +Chanelle +Chantell +Charnelle +Cherelle +Cheri +Cristin +Ebonie +Edna +Eleanor +Essence +Falon +Felecia +Francisca +Hilda +Iliana +Infant +Jalissa +Jasmyn +Jayme +Jelisa +Jerika +Johana +Juliann +Kaela +Kailee +Karlie +Kendal +Kenesha +Kenia +Keondra +Kia +Kiley +Kristian +Kylee +Lacee +Laken +Leann +Lia +Lillie +Lisbeth +Madalyn +Margo +Mariel +Marion +Markie +Marta +Martina +Mellisa +Mellissa +Melyssa +Michael +Mikaela +Milagros +Mona +Nakia +Natalya +Nichelle +Nicolle +Patience +Phoebe +Porsche +Rachele +Rachell +Reva +Ronisha +Rosalie +Roxanna +Samatha +Shanelle +Shanique +Shatoya +Shawn +Sherri +Sinead +Stacia +Stefany +Tabetha +Tawny +Tierney +Trista +Vicki +Xiomara +Yadira +Abril +Aja +Alesia +Alli +Alyse +Amalia +Amaris +Angelita +Annika +Aracely +Ashlei +Aysia +Bernice +Blaire +Breona +Brionna +Britani +Camisha +Carole +Caryn +Cassondra +Chandler +Channel +Charmaine +Chastity +Chyna +Codie +Cody +Colby +Constance +Courtnee +Damaris +Danika +Danisha +Delaney +Delia +Denisha +Denisse +Destini +Ebonee +Ella +Elyssa +Emerald +Emilia +Estrella +Eugenia +Eve +Fallon +Farrah +Felisha +Gia +Gillian +Harmony +Helena +Jackeline +Jada +Jaymie +Jayna +Jeanine +Jesika +Jody +Kaneisha +Kanisha +Keara +Kelcie +Keren +Kinsey +Kirsty +Kirstyn +Kristan +Lakevia +Lakisha +Laquanda +Lashawnda +Latavia +Leeann +Leeanna +Leilani +Lesly +Lexi +Lila +Linsey +Loretta +Maricela +Micah +Mildred +Miriah +Misti +Montana +Myranda +Myriah +Nandi +Nathaly +Odalys +Petra +Reba +Rebekka +Renita +Roberta +Selene +Shaneka +Shanell +Shantoria +Shatara +Shateria +Shatoria +Shawanda +Shawnee +Shay +Sheree +Sloane +Sommer +Sophie +Spencer +Susanne +Tamesha +Taneisha +Tashara +Tequila +Tisha +Tyiesha +Valentina +Yajaira +Yanelis +Ada +Akilah +Akira +Alannah +Aleshia +Alise +Anamaria +Annabel +Ansley +Aria +Ariell +Arika +Ashanti +Aubrie +Aundrea +Barbie +Becca +Belkis +Bertha +Brandee +Breeanna +Brieanna +Brigette +Brittini +Cali +Calli +Camilla +Cassaundra +Cassia +Catrina +Chanell +Charlie +Chaya +Chelsee +Chelsy +Chrissy +Clare +Corissa +Cory +Crista +Danelle +Danna +Danyel +Danyelle +Darielle +Dayana +Dena +Deondra +Destinie +Diandra +Dixie +Dominque +Drew +Elia +Elsa +Elvira +Ester +Evette +Fiona +Geena +Giuliana +Gracie +Graciela +Griselda +Halley +Hazel +Ieisha +Inez +Ivonne +Ivy +Janea +Jannette +Jayne +Jazlyn +Jazmen +Jazmyne +Jeana +Jenelle +Jovanna +Kaelyn +Kandace +Kandice +Katlynn +Kayleen +Kaylen +Kayli +Keely +Kelci +Kelsy +Kerstin +Keturah +Keyondra +Kiarra +Kierstin +Kirsti +Kodi +Krystel +Lanisha +Leeanne +Lina +Lindy +Lisandra +Lisette +Liza +Lizeth +Lizzette +Loni +Luciana +Makeda +Marah +Mariam +Marianne +Marielle +Markesha +Maxine +Melonie +Micaela +Mikayla +Mina +Nastassia +Natacha +Natali +Natisha +Niki +Noelia +Paloma +Passion +Pearl +Portia +Pricilla +Priya +Rebeka +Renae +Rhea +Riana +Roneshia +Rubi +Sabina +Sallie +Sammantha +Samone +Shakara +Shakiyla +Shannel +Shante +Shantia +Shantrell +Shaquanda +Sharhonda +Sheri +Sheryl +Skyla +Stella +Stephenie +Suzette +Takisha +Tamera +Tanika +Taylar +Tera +Tyanna +Tyra +Vianca +Yael +Yamilet +Yazmin +Zakia +Zoraida +Adria +Aiesha +Alayna +Alba +Alberta +Aleah +Alexsis +Alexys +Alisia +Alivia +Alix +Allisha +Alyxandra +Amara +Amari +Amberly +Ami +Andie +Anisha +Annabelle +Annemarie +Aquila +Audriana +Austin +Ava +Aysha +Babygirl +Baylee +Bernadette +Bionca +Breann +Bree +Briona +Britny +Britteny +Carlene +Cassey +Catarina +Celena +Charley +Cherokee +Cindi +Cinnamon +Consuelo +Cora +Corneisha +Cristian +Cristy +Crystle +Cyndi +Danae +Daniele +Daphney +Davina +Debbie +Deloris +Dionne +Elana +Eleni +Eliza +Emmanuela +Eryn +Eulalia +Florence +Frankie +Fredricka +Gisselle +Grecia +Hailie +Haylee +Holli +Imari +Imelda +Indigo +Jaclynn +Jacquelynn +Jalesa +Jalessa +Jamia +Jammie +Janaye +Janielle +Jazmyn +Jeanna +Jenae +Jenniffer +Jeri +Jerri +Jessyca +Johnisha +Jordon +Joselyn +Josette +Joslyn +Jourdan +Kady +Kami +Karyn +Kasi +Katia +Kaylea +Keaira +Keiona +Keirra +Keneisha +Keneshia +Keyana +Khadija +Kiah +Kianna +Korey +Kristel +Kristyne +Kyara +Lakia +Lakin +Laporsha +Latosha +Leondra +Lois +Lora +Loriann +Lorna +Lucero +Lucinda +Luisa +Macey +Maci +Macie +Magan +Malika +Malinda +Mallorie +Marci +Marcy +Margaux +Marguerite +Mariela +Marilu +Marley +Marquisha +Marshae +Marybeth +Mattie +Mayte +Mckenna +Melia +Melodie +Merissa +Miesha +Misha +Najee +Nisha +Nissa +Philicia +Polly +Porscha +Quaneisha +Quanesha +Quinn +Ramona +Ranisha +Rayna +Reanna +Rebecka +Reema +Reina +Rhoda +Rodneshia +Romina +Sable +Samaria +Sarena +Shakendra +Shakera +Shambria +Shanay +Shandricka +Shanea +Shara +Sharla +Sharmaine +Shavonda +Shenika +Siara +Sky +Spring +Steffany +Stephane +Stephani +Takia +Talisha +Tana +Taneka +Tarah +Tarra +Tatianna +Tempest +Terika +Terry +Tesla +Therese +Tiffiny +Toria +Tristan +Tyeisha +Unique +Vannesa +Wanda +Yaritza +Yu +Zenaida +Zoey +Ashley +Jessica +Brittany +Amanda +Samantha +Stephanie +Sarah +Jennifer +Nicole +Lauren +Chelsea +Kayla +Emily +Megan +Danielle +Victoria +Elizabeth +Amber +Taylor +Rachel +Courtney +Alexandra +Michelle +Melissa +Rebecca +Tiffany +Christina +Alexis +Heather +Jasmine +Katherine +Shelby +Andrea +Kimberly +Kelsey +Alyssa +Sara +Hannah +Brianna +Natalie +Kelly +Erica +Mary +Vanessa +Morgan +Crystal +Lindsey +Kaitlyn +Kristen +Maria +Laura +Shannon +Brooke +Caitlin +Allison +Katie +Cassandra +Jamie +Amy +Brittney +Kathryn +Jordan +Erin +Olivia +Alexandria +Alicia +Gabrielle +Ariel +Jenna +Monica +Angela +Haley +Briana +Christine +Kristina +Katelyn +Bianca +Kristin +Catherine +Jacqueline +Erika +Marissa +Paige +Anna +Lindsay +Lisa +Julia +Melanie +Caroline +Veronica +Mariah +Leah +Dominique +Brandi +Sabrina +Rachael +Casey +Natasha +April +Madison +Kathleen +Krystal +Patricia +Holly +Tara +Savannah +Cynthia +Julie +Meghan +Shanice +Alexa +Angelica +Destiny +Whitney +Kaitlin +Katrina +Miranda +Breanna +Desiree +Kara +Margaret +Cristina +Brandy +Sierra +Kiara +Meagan +Karen +Monique +Gabriela +Sydney +Caitlyn +Kaylee +Valerie +Abigail +Priscilla +Chelsey +Tabitha +Ciara +Deanna +Ana +Gina +Molly +Adriana +Hayley +Kaley +Gabriella +Sandra +Rebekah +Diana +Leslie +Carly +Karina +Ashleigh +Alisha +Ashlee +Grace +Britney +Jade +Mercedes +Angel +Bethany +Mallory +Tatiana +Autumn +Candice +Cindy +Ebony +Raven +Kirsten +Krista +Chloe +Mackenzie +Cheyenne +Carolina +Dana +Yesenia +Emma +Hailey +Hillary +Arielle +Jaclyn +Amelia +Raquel +Barbara +Alison +Brenda +Felicia +Jillian +Kendra +Summer +Joanna +Nichole +Candace +Tamara +Audrey +Virginia +Teresa +Carrie +Kasey +Kassandra +Lacey +Carolyn +Allyson +Madeline +Tia +Denise +Evelyn +Stacey +Ariana +Daniela +Devin +Diamond +Melinda +Genesis +Jacquelyn +Sophia +Kendall +Nina +Brittani +Tori +Linda +Renee +Robin +Stacy +Toni +Nancy +Asia +Aubrey +Faith +Gloria +Tiara +Claudia +Jocelyn +Sasha +Claire +Kelli +Marie +Angelina +Carmen +Cierra +Jasmin +Lydia +Marisa +Camille +Deborah +Donna +Janelle +Francesca +Nathalie +Pamela +Theresa +Anne +Cara +Carissa +Kierra +Precious +Tyler +Alejandra +Colleen +Janet +Kiera +Natalia +Aimee +Charlotte +Kellie +Kristy +Bridget +Daniella +Jessie +Nikki +Regina +Rose +Shaina +Tracy +Angelique +Ashton +Bailey +Carla +Chelsie +Karla +Martha +Adrianna +Christy +Hilary +Kayleigh +Kristi +Kylie +Robyn +Ruth +Tierra +Alexia +Cassidy +Kaleigh +Kelley +Shawna +Susan +Tina +Bria +Cortney +Naomi +Shayla +Cassie +Elise +Logan +Melody +Meredith +Nicolette +Rachelle +Randi +Shayna +Tiffani +Christa +Hanna +Iesha +Isabel +Kristine +Shakira +Zoe +Antoinette +Christie +Devon +Heidi +Jazmine +Marina +Tessa +Ann +Elisabeth +Esther +Hope +Jazmin +Katlyn +Sharon +Stefanie +Adrienne +Daisy +Jaime +Justine +Kari +Simone +Ashlyn +Kelsie +Kiana +Lacy +Latoya +Carol +Ericka +Kailey +Alana +Alissa +Cayla +Ciera +Frances +Kaila +Kira +Shirley +Sylvia +Tanisha +Tanya +Brenna +Bridgette +Brittni +Christian +Jenny +Joy +Kala +Katelynn +Kenya +Kiersten +Lillian +Paola +Patrice +Rosa +Wendy +Bonnie +India +Isabella +Karissa +Kourtney +Mia +Michele +Sheila +Sonia +Suzanne +Cecilia +Clarissa +Elena +Kaylyn +Kelsea +Marilyn +Nadia +Shanna +Talia +Tiana +Valeria +Carley +Ellen +Jami +Jessenia +Lorena +Lyndsey +Paris +Rochelle +Shana +Sofia +Tracey +Casandra +Chanel +Eva +Joanne +Katharine +Kyla +Leanne +Paula +Savanna +Yvonne +Ashlie +Charlene +Dawn +Dorothy +Giselle +Irene +Jalisa +Janice +Jenifer +Jordyn +Latisha +Marjorie +Miriam +Roxanne +Ruby +Yessenia +Alice +Annie +Arianna +Chantel +Charity +Jeanette +Johanna +Kelsi +Kirstie +Maya +Noelle +Rebeca +Taryn +Abby +Alexus +Alyson +Angie +Britany +Cheryl +Clara +Devan +Elisa +Helen +Jana +Juliana +Latifah +Leticia +Lexus +Maggie +Mckenzie +Meaghan +Peyton +Sandy +Shauna +Vivian +Alaina +Alysha +Beatrice +Beatriz +Brianne +Callie +Chasity +Constance +Cristal +Diane +Heaven +Janae +Judith +Kacie +Kaitlynn +Kori +Macy +Melisa +Staci +Tayler +Tianna +Anastasia +Celeste +Delaney +Harley +Hollie +Jacklyn +Julianne +Kali +Katy +Kristyn +Latasha +Madelyn +Mayra +Misty +Nikita +Octavia +Tasha +Yolanda +Alexandrea +Alina +Brittanie +Dallas +Emilee +Georgia +Hali +Janay +Jena +Juanita +Judy +Kaylin +Keisha +Kyra +Lori +Michaela +Nadine +Shaniqua +Shelbi +Yasmine +Yvette +Alessandra +Anita +Brandie +Breanne +Carina +Chantal +Corinne +Debra +Haleigh +Iris +Ivana +Kacey +Kirstin +Leila +Lena +Liliana +Lissette +Lucia +Maranda +Mollie +Shantel +Shea +Tabatha +Belinda +Bryanna +Chelsi +Coral +Dakota +Gianna +Jesenia +Jill +Josephine +Katlin +Kristian +Marisol +Maritza +Noemi +Ronisha +Shelbie +Susana +Terri +Ashly +Beverly +Breana +Catalina +Catrina +Chandler +Charmaine +Chrystal +Demi +Elyse +Janine +Joann +Kate +Keri +Kerri +Krystina +Larissa +Liana +Mariana +Marianne +Marisela +Marlena +Moriah +Rosemary +Shameka +Stephany +Tania +Tricia +Yasmin +Billie +Blair +Carlie +Christen +Jane +Kasie +Katelin +Laurie +Lauryn +Leigh +Lily +Loren +Mandy +Mara +Margarita +Norma +Sarai +Scarlett +Selena +Skye +Sophie +Symone +Tatyana +Tonya +Trisha +Tyesha +Aileen +Avery +Betty +Camila +Christin +Corey +Darian +Eboni +Eileen +Fatima +Genevieve +Ivette +Jaimie +Janna +Jennie +Jessika +Joyce +Juliet +Kathrine +Kaylie +Kristie +Krysta +Lakeisha +Racheal +Sally +Tammy +Alanna +Annette +Bobbie +Cameron +Carlee +Carson +Celia +Cheyanne +Damaris +Daphne +Deidra +Destinee +Janell +Janie +Jazmyn +Katarina +Kenia +Krysten +Layla +Lea +Leanna +Lesley +Lucy +Nakia +Nikole +Princess +Serena +Shaniece +Sheena +Silvia +Skylar +Stacie +Stevie +Tamika +Traci +Valencia +Abbey +Alecia +Alycia +Ashanti +Britni +Cory +Devyn +Dina +Doris +Edith +Elaine +Elisha +Elissa +Estefania +Franchesca +Haylee +Ingrid +Janessa +Jayme +Jesse +Joan +Jodi +Julianna +Justina +Kaela +Karly +Keira +Krystle +Lara +Leann +Lizbeth +Marcia +Marta +Mindy +Nataly +Noel +Nora +Rhonda +Rita +Shakia +Shanique +Sidney +Skyler +Tatianna +Thalia +Tiffanie +Tkeyah +Aisha +Ali +Alma +Alysia +Anais +Ansley +Antonia +Blanca +Brigitte +Casie +Dara +Desirae +Domonique +Emilie +Gabriel +Ivy +Jaimee +Jamila +Jerica +Kaci +Karlee +Kasandra +Kathy +Kristal +Lynette +Lynn +Maegan +Marla +Marlee +Marsha +Payton +Raina +Roxana +Sade +Shanika +Shaquille +Sherry +Tanesha +Tiera +Trinity +Alyssia +Angelia +Araceli +Ashely +Audra +Ava +Brittaney +Brook +Brooklyn +Cori +Danyelle +Eden +Eleni +Esmeralda +Fallon +Geraldine +Gladys +Gwendolyn +Iliana +Isis +Jamesha +Jasmyn +Juliette +Kalie +Kaycee +Kayley +Kylee +Lakendra +Lourdes +Lucero +Luz +Lyndsay +Maribel +Marlene +Maureen +Monika +Nia +Reina +Shakera +Shanequa +Shanise +Shantell +Sharonda +Shelley +Tequila +Teri +Viviana +Alesha +Alex +Allie +Amie +Annmarie +Asha +Astrid +China +Chiquita +Christi +Christiana +Cody +Connie +Corrine +Darlene +Deandra +Deidre +Francheska +Hallie +Holli +Hunter +Imani +Isabelle +Ivanna +Jaleesa +Jaqueline +Jeanine +Jerrica +Jodie +Juana +Kalyn +Katerina +Kenisha +Kirby +Lacie +Lana +Laquisha +Latavia +Laurel +Lee +Lina +Lynsey +Madeleine +Mallorie +Melina +Mikaela +Miracle +Montana +Nikia +Quanisha +Ryan +Samara +Shanae +Shaneka +Shantavia +Shari +Shelly +Tess +Valentina +Vanesa +Adrianne +Alisa +Alysa +Angeline +Anjelica +Arianne +Becky +Bernice +Beth +Brandee +Breann +Bree +Brittnie +Cady +Cali +Cari +Cassondra +Cathleen +Chantelle +Cherish +Chynna +Dania +Deja +Demetria +Desire +Dianna +Ellie +Emilia +Felisha +Francis +Georgina +Guadalupe +Ieshia +Janette +Jeannie +Joelle +Joselyn +Kacy +Kailyn +Karlie +Karrie +Katia +Kaylynn +Keandra +Keara +Keely +Keosha +Kerry +Lisette +Lora +Magen +Makenzie +Marcela +Marcella +Mariel +Myra +Nichelle +Pauline +Perla +Quanesha +Sadie +Selina +Shakeria +Sonya +Terra +Adrian +Aja +Alayna +Alba +Alesia +Amaris +Annamarie +Ashli +Ashlynn +Aurora +Ayanna +Ayla +Baby +Brea +Bridgett +Carli +Celina +Codi +Corina +Darcy +Delia +Destini +Felecia +Gillian +Graciela +Ileana +Iman +Jackelyn +Jada +Janee +Jasmyne +Jody +Julissa +Kailee +Kalynn +Kanisha +Karah +Karli +Katheryn +Kati +Kenesha +Kenyatta +Keyanna +Kimberley +Leandra +Lia +Linsey +Lizette +Maddison +Magan +Micaela +Mikayla +Nicolle +Patience +Paulina +Portia +Pricilla +Regan +Rene +Rikki +Riley +Roberta +Rosalyn +Samatha +Shakara +Shante +Sterling +Stormy +Tamesha +Tawny +Tierney +Tonisha +Violet +Wanda +Aleah +Allyssa +Anabel +Andreina +Annabel +Annabelle +Ariella +Ashlea +Ashlei +Austin +Ayesha +Bethanie +Betsy +Brieanna +Brielle +Britny +Bryana +Cassey +Cathryn +Cecelia +Channing +Chelsy +Cherie +Colby +Colette +Cydney +Danica +Delana +Denisse +Donielle +Dora +Ebonee +Eleanor +Elle +Eugenia +Fantasia +Farrah +Flor +Ginger +Giovanna +Glenda +Halie +Haylie +Holley +Ivonne +Jacinda +Jalissa +Janel +Jean +Jeanna +Jenelle +Jesica +Jewel +Kalee +Kallie +Kandace +Kandice +Kaylan +Kelsy +Kia +Kiandra +Kiley +Kimberlee +Kinsey +Laci +Lanie +Laporsha +Latonya +Latrice +Leeann +Lidia +Lilian +Louisa +Louise +Mandi +Mariam +Marianna +Maricela +Mariela +Marion +Marquita +Martika +Maryann +Maxine +Meghann +Micah +Milagros +Nakita +Nandi +Paloma +Pilar +Porscha +Porsche +Porsha +Racquel +Reba +Rhiannon +Rosio +Rubi +Samone +Savanah +Shani +Sonja +Stefani +Stella +Stephani +Susanna +Susannah +Taisha +Taneisha +Tanika +Tashara +Trista +Vicky +Whitley +Yasmeen +Ada +Aleshia +Alexander +Alisia +Amberly +Andria +Angelic +Annemarie +Arelys +Arika +Arlene +Ayana +Bobbi +Brittny +Carey +Cassy +Chandra +Chanelle +Chante +Charley +Charlie +Chassidy +Cheri +Christal +Ciarra +Codie +Corine +Courtnee +Dannielle +Deana +Drew +Dulce +Elsa +Elyssa +Emely +Eunice +Geneva +Genna +Gisselle +Grecia +Hana +Jazmyne +Jeannette +Jeannine +Jeniffer +Jeri +Jessalyn +Jessi +Johana +Jonisha +Jordon +Josefina +Josie +Jourdan +Kacee +Karisa +Karley +Karson +Kassie +Katiana +Kaylah +Kayli +Keiana +Keona +Keyla +Kianna +Kierstin +Kimber +Lacee +Laken +Lashay +Lashonda +Latesha +Latoria +Leona +Liza +Loni +Luisa +Mabel +Macie +Madalyn +Makayla +Manuela +Marian +Marielena +Markeisha +Markesha +Markita +Marquisha +Mayte +Melonie +Mireya +Mona +Myia +Myranda +Natacha +Nisha +Olga +Paulette +Phoebe +Raechel +Reanna +Rhianna +Samaria +Shakayla +Shanay +Shannan +Sharika +Shawn +Shawnee +Sheri +Sherrie +Sky +Sloane +Sommer +Stacia +Tameka +Tempest +Tesla +Trina +Veronique +Yamile +Yanira +Zakiya +Adria +Aleisha +Alexi +Alix +Allegra +Ally +Alondra +Alyse +Amalia +Annelise +Athena +Aubrie +Audrianna +Aundrea +Bernadette +Brianda +Brionna +Britnie +Brittnee +Caitlynn +Camisha +Carline +Ceara +Chantell +Charlee +Charmayne +Chelcie +Cherelle +Cinthia +Clare +Conner +Connor +Corissa +Crysta +Dakotah +Danelle +Daniel +Danisha +Daria +Darien +Dayana +Daysha +Deena +Deirdre +Delicia +Denisha +Deondra +Destiney +Dianne +Dominque +Edna +Edwina +Elana +Eliza +Emerald +Essence +Estela +Evan +Gabriele +Gena +Georgette +Gracie +Gretchen +Griselda +Haven +Hilda +Ilana +Imari +Jackie +Jacy +Jakira +Jalesa +Jamecia +Jameka +Janaye +Janea +Jayla +Jenee +Jesika +Jolene +Joslyn +Julienne +Julisa +June +Kamilah +Kaneisha +Kaylen +Kelby +Kelcie +Keturah +Kim +Kindra +Kirsti +Kirstyn +Korina +Kortney +Krizia +Krystin +Kyrsten +Lakeshia +Lakisha +Laquanda +Latia +Latricia +Leia +Leilani +Lexie +Lilly +Lynnette +Magda +Maia +Malia +Malika +Margie +Marley +Mckayla +Mellissa +Melony +Mercedez +Merissa +Miesha +Mika +Monet +Naomie +Nathaly +Nelly +Nicola +Nicollette +Petra +Quaneisha +Rachele +Ramona +Raneisha +Rashida +Reagan +Rena +Renae +Richelle +Rocio +Roneisha +Samira +Sammantha +Sarina +Serina +Shamari +Shanell +Shanelle +Shanese +Shannen +Shanteria +Shantoria +Shantrell +Sharice +Shauni +Shauntavia +Shelbey +Shenequa +Shenika +Shericka +Sherri +Sindy +Skyla +Soraya +Spencer +Stefania +Stephania +Stephannie +Storm +Sydnie +Tabetha +Tarra +Tenisha +Terry +Thea +Tiare +Tiesha +Tracie +Treasure +Tyana +Tyeisha +Tyra +Vicki +Wendi +Yazmin +Yuri +Abrianna +Akilah +Alena +Alia +Alivia +Aliya +Allysa +Amani +Amara +Amira +Anamaria +Anastacia +Andriana +Angelena +Angelita +Aria +Ariane +Aubree +Aubry +Blake +Bonita +Breauna +Britnee +Brittnay +Brynn +Caley +Calli +Candis +Caressa +Carolann +Casi +Catelyn +Cayleigh +Charnelle +Chaya +Christianna +Christopher +Chyna +Cora +Corie +Corinna +Crista +Cristin +Cristine +Dalia +Danae +Darby +Daryl +David +Davina +Debbie +Delores +Dena +Deonna +Deshawn +Desiray +Destany +Diandra +Dolores +Elexis +Eliana +Ella +Eloisa +Elysa +Emelia +Emiley +Emmanuella +Epiphany +Erikka +Erinn +Eryn +Esperanza +Estefany +Estephanie +Eulalia +Eve +Fabiola +Falon +Farah +Faye +Francine +Geena +Giuliana +Hailee +Halle +Hayden +Hazel +Helena +Ida +Irma +Ivory +Jacquelin +Jacquelynn +Jakia +Jalecia +Jamey +Jamia +Janeen +Jaymi +Jazzmen +Jazzmine +Jeanne +Jelisa +Jelissa +Jenniffer +Jessa +Jessy +Johanne +Johnisha +Johnna +Joselin +Juliann +Kalisha +Kalli +Kanesha +Karena +Karmen +Karolina +Karyn +Katey +Katheryne +Kaytlyn +Keanna +Keiara +Kelci +Keneisha +Kenyetta +Kenzie +Keondra +Keonna +Kera +Keshia +Keyana +Khadijah +Khristina +Kiarra +Kieara +Krystyna +Kyara +Kyle +Kyleigh +Laila +Lakeitha +Lashae +Lashawnda +Latosha +Leigha +Lenora +Lexi +Lianna +Lillie +Linnea +Liz +Lucinda +Macey +Magaly +Maira +Malissa +Mallori +Margot +Mari +Martina +Marybeth +Mattie +Maura +Meagen +Mechelle +Meggan +Melodie +Meranda +Michael +Michell +Miriah +Misti +Myriah +Nakisha +Natali +Nateria +Nathalia +Nefertiti +Nichol +Niesha +Niki +Nikkita +Nisa +Odalys +Parris +Phylicia +Phyllis +Porche +Quaneshia +Rachell +Rana +Rebeccah +Rebeka +Reem +Renesha +Renisha +Reyna +Ronnesha +Roseline +Sage +Samia +Santana +Sarafina +Sascha +Schyler +Seaira +Shabria +Shae +Shakeila +Shakila +Shamira +Shandrea +Shanea +Shanel +Shanon +Shantal +Shantelle +Shatara +Shavontae +Shawanda +Shay +Shelia +Sherell +Shyla +Siera +Sigourney +Solange +Star +Steffanie +Steffany +Stormie +Takira +Talisha +Tameshia +Tamra +Tanasia +Taquila +Tarah +Tasia +Tawanna +Taylar +Tegan +Therese +Tiarra +Tiona +Torri +Tyanna +Valarie +Valery +Vannessa +Vera +Xiomara +Yanelis +Yarelis +Yashira +Yessica +Ashley +Jessica +Brittany +Samantha +Sarah +Amanda +Stephanie +Taylor +Emily +Nicole +Amber +Danielle +Victoria +Kayla +Jennifer +Elizabeth +Lauren +Rachel +Alexis +Megan +Chelsea +Courtney +Jasmine +Alexandra +Rebecca +Melissa +Michelle +Christina +Tiffany +Katherine +Alyssa +Heather +Hannah +Brianna +Morgan +Sara +Shelby +Kelsey +Kaitlyn +Natalie +Andrea +Shannon +Erica +Kimberly +Mary +Brooke +Kelly +Lindsey +Crystal +Vanessa +Allison +Haley +Laura +Maria +Caitlin +Kristen +Erin +Alexandria +Olivia +Katelyn +Savannah +Jordan +Marissa +Briana +Brittney +Alicia +Paige +Amy +Cassandra +Kathryn +Gabrielle +Catherine +Anna +Jamie +Katie +Jenna +Julia +Angela +Bianca +Kristina +Jacqueline +Madison +Monica +Erika +Alexa +Kassandra +Sabrina +Christine +Ariel +Breanna +Krystal +Caroline +Casey +Dominique +Brandi +Veronica +Melanie +Kristin +Lindsay +Abigail +Whitney +Lisa +Mariah +Meghan +Sierra +Natasha +Rachael +Patricia +Kaitlin +Cynthia +Diana +Angelica +April +Kathleen +Sydney +Cheyenne +Leah +Destiny +Holly +Miranda +Summer +Deanna +Cristina +Gabriela +Gabriella +Julie +Carly +Karina +Molly +Rebekah +Jade +Meagan +Tara +Kara +Tori +Ana +Margaret +Shanice +Tatiana +Bethany +Hayley +Kaley +Katrina +Adriana +Ashleigh +Kiara +Emma +Caitlyn +Ciara +Audrey +Hailey +Mercedes +Jillian +Leslie +Ashlee +Carolina +Cindy +Gina +Raven +Desiree +Karen +Monique +Autumn +Daniela +Felicia +Brandy +Chelsey +Cierra +Tabitha +Yesenia +Alisha +Kaylee +Sophia +Britney +Dana +Bria +Priscilla +Bailey +Kendra +Nichole +Sandra +Chloe +Jaclyn +Mackenzie +Alison +Diamond +Grace +Angel +Jacquelyn +Claudia +Lacey +Valerie +Kendall +Alexia +Kirsten +Brenda +Joanna +Marisa +Raquel +Jessie +Marie +Tamara +Tiara +Amelia +Barbara +Kasey +Madeline +Mallory +Natalia +Savanna +Anastasia +Angelina +Ebony +Jasmin +Nikki +Ariana +Jazmine +Katelynn +Nancy +Sasha +Ashlyn +Carolyn +Colleen +Jazmin +Tierra +Brittani +Carrie +Jocelyn +Marina +Devin +Katlyn +Melinda +Stacey +Susan +Candice +Daniella +Faith +Tessa +Candace +Ciera +Janelle +Kelli +Kristine +Isabella +Kristy +Naomi +Robin +Virginia +Asia +Krista +Linda +Rosa +Sofia +Zoe +Alexus +Alissa +Allyson +Bridget +Carissa +Pamela +Alana +Alejandra +Renee +Teresa +Genesis +Karla +Logan +Michaela +Dakota +Kenya +Lydia +Nicolette +Sharon +Gloria +Kierra +Maya +Cara +Cassidy +Cassie +Charlotte +Chelsie +Claire +Denise +Karissa +Tia +Tyler +Arielle +Carmen +Nina +Joy +Kelsie +Michele +Nathalie +Aubrey +Chandler +Daisy +Frances +Kaitlynn +Kelley +Toni +Adrienne +Angelique +Meredith +Mia +Nadia +Ruth +Shayla +Tiffani +Adrianna +Deborah +Evelyn +Harley +Hope +Kristi +Camille +Christy +Elisabeth +Jeanette +Kayleigh +Melody +Chanel +Hanna +Jenny +Jordyn +Kellie +Ruby +Trisha +Donna +Eva +Mariana +Precious +Rachelle +Regina +Robyn +Shawna +Stacy +Carla +Cecilia +Heidi +Isabel +Leticia +Tanya +Theresa +Dorothy +Giselle +Shaina +Stephany +Thalia +Devon +Esther +Kailey +Kiana +Kylie +Mckenzie +Rose +Tasha +Arianna +Ashton +Christian +Elisa +Iesha +Jaime +Janet +Johanna +Judith +Kaila +Maggie +Paula +Peyton +Tina +Aimee +Carina +Cortney +Ellen +Ericka +Helen +Hillary +Kali +Martha +Mikayla +Paola +Stefanie +Tiana +Alyson +Ann +Bryanna +Cayla +Francesca +Haylee +Kira +Maegan +Rochelle +Shirley +Skyler +Tayler +Anne +Bridgette +Elise +Guadalupe +Juliana +Lorena +Valeria +Anissa +Brenna +Christa +Christie +Clarissa +Latoya +Sade +Shayna +Simone +Tanisha +Tiera +Annie +Beatriz +Celeste +Celina +Charity +Kadijah +Kaleigh +Kari +Lillian +Meaghan +Payton +Shantel +Sonia +Tracy +Vivian +Antoinette +Kaylin +Kiersten +Marilyn +Mayra +Allie +Brianne +Carley +Chasity +Dawn +Ivana +Jane +Justine +Katarina +Lyndsey +Marisol +Wendy +Aileen +Alina +Alisa +Breana +Carol +Ivy +Jaimie +Joanne +Katharine +Kyra +Misty +Rebeca +Alice +Ashlynn +Camila +Demi +Diane +Elaine +Haleigh +Hunter +India +Janae +Jessenia +Kiera +Kyla +Lacy +Layla +Liliana +Loren +Talia +Yessenia +Britany +Chante +Elena +Jena +Jill +Joyce +Kalyn +Kate +Keri +Khadijah +Lori +Marjorie +Noelle +Randi +Shaniqua +Annette +Callie +Cheyanne +Jacklyn +Janice +Kasandra +Maranda +Nadine +Paris +Roxanne +Selena +Shanna +Skylar +Staci +Stacie +Taryn +Yolanda +Alanna +Bonnie +Casandra +Christen +Corinne +Darian +Emilee +Irene +Juliette +Katelin +Patrice +Symone +Tania +Yaritza +Anita +Celia +Dallas +Debra +Gianna +Giovanna +Iris +Jesse +Julianne +Katlin +Katy +Kristal +Kristie +Larissa +Latasha +Leigh +Maribel +Micaela +Princess +Rosemary +Scarlett +Selina +Shana +Sheila +Sherry +Viviana +Abby +Alysha +Blanca +Brittni +Chantel +Chantelle +Clara +Coral +Devan +Esmeralda +Fatima +Imani +Kelsea +Kori +Kristyn +Lakeisha +Latisha +Lea +Lena +Macy +Miriam +Paulina +Racheal +Ryan +Sadie +Shakeria +Shakira +Shannen +Suzanne +Tabatha +Yvette +Yvonne +Alaina +Ashanti +Betty +Beverly +Brandie +Chantal +Charlene +Cori +Darlene +Dianna +Domonique +Elisha +Janay +Jasmyne +Jennie +Joselyn +Julianna +Katerina +Leanna +Leanne +Lizbeth +Madeleine +Maritza +Mollie +Nia +Rhiannon +Shelbie +Shelly +Stefani +Sylvia +Tkeyah +Tyesha +Ashli +Avery +Corey +Destinee +Hallie +Jamila +Jesenia +Kala +Karli +Leeann +Lily +Lourdes +Marcela +Moriah +Serena +Tess +Yasmin +Angeline +Angie +Anjelica +Blair +Blake +Breanne +Cameron +Cheryl +Christiana +Chrystal +Cristal +Denisha +Desirae +Fallon +Gladys +Jenifer +Jessika +Josephine +Krysta +Laquita +Madelyn +Makayla +Mandy +Marlene +Melisa +Norma +Racquel +Sandy +Susana +Tammy +Tatyana +Tonya +Traci +Vianca +Yasmine +Aisha +Amaris +Antonia +Ava +Beatrice +Bobbi +Breonna +Brittnee +Carli +Constance +Crysta +Danisha +Deandra +Deja +Delaney +Georgia +Jalisa +Jana +Jazmyne +Kacie +Kalie +Kayley +Kia +Lara +Laurel +Nataly +Niki +Nikita +Nora +Octavia +Shea +Shelbi +Shelley +Sophie +Tatianna +Terri +Tracey +Tyra +Alessandra +Alexandrea +Arlene +Ashlie +Ayla +Brittanie +Carlee +Daphne +Dulce +Eden +Emilie +Jazmyn +Kanisha +Katheryn +Kaylyn +Keosha +Kourtney +Leandra +Lexus +Lissette +Lucy +Noel +Quanisha +Roxana +Shanteria +Sidney +Silvia +Skye +Tiffanie +Yazmin +Alayna +Anabel +Ansley +Ashely +Ashly +Austin +Bobbie +Brionna +Brittny +Carson +Celine +China +Coraima +Dayana +Deidra +Delia +Emerald +Fabiola +Hali +Jada +Jamesha +Jami +Janie +Janine +Joann +Juanita +Julissa +Karly +Kathy +Kenisha +Lashawn +Lauryn +Lorraine +Lucia +Luz +Lyndsay +Marcia +Margarita +Marlena +Nakia +Nikole +Riley +Sage +Sarai +Shanika +Shauna +Sheena +Sonya +Valentina +Yadira +Alecia +Alma +Alycia +Anais +Annemarie +Carlie +Charmaine +Chelsy +Connie +Danae +Dayna +Destiney +Devyn +Eboni +Elissa +Estefania +Francheska +Gwendolyn +Hilary +Isis +Kacey +Kandace +Kandice +Kaycee +Kaytlin +Kelsi +Kenyatta +Kimberlee +Kirstin +Lacie +Lana +Lina +Liza +Macey +Mariela +Maryann +Montana +Myra +Noemi +Rocio +Sally +Shante +Shaquita +Tamika +Terra +Trinity +Valencia +Vanesa +Adrianne +Aja +Antionette +Araceli +Belinda +Brea +Bridgett +Brook +Brooklyn +Caridad +Catalina +Chelsi +Christal +Codi +Dalia +Dara +Deana +Demetria +Destinie +Eileen +Elaina +Elyse +Eryn +Felisha +Genevieve +Griselda +Hailee +Hollie +Jackie +Jean +Jodi +Josie +Kaci +Karlie +Kaylynn +Kerry +Krystina +Latrice +Laurie +Lesley +Lillie +Lucero +Lynsey +Makenzie +Mara +Marcella +Marlee +Merissa +Mikaela +Milagros +Monika +Shakia +Siera +Adrian +Ariella +Ashlea +Aubrie +Audra +Aurora +Ayanna +Baby +Brittaney +Cody +Cora +Darby +Darrian +Edith +Eleanor +Emely +Gabriel +Genna +Glenda +Halie +Hana +Ingrid +Jaleesa +Jeanna +Jeannette +Jeniffer +Jerrica +Jesica +Joan +Kadejah +Kaneisha +Katia +Katlynn +Kayli +Kaylie +Keana +Kendal +Khadija +Kirstie +Kristian +Laquisha +Latonya +Lynn +Magen +Marian +Marla +Martina +Mindy +Pauline +Shanelle +Sommer +Tracie +Abbey +Alannah +Alex +Ali +Alia +Astrid +Becky +Beth +Breann +Breona +Britni +Cecelia +Chantell +Cherie +Corrine +Damaris +Darcy +Dasha +Destini +Dianne +Dina +Dixie +Dylan +Eunice +Georgina +Halle +Heaven +Ivette +Jamika +Jaqueline +Jody +Johana +Johnna +Justina +Kadie +Kaela +Kailyn +Keisha +Kelcie +Keren +Kerri +Keyana +Keyanna +Kianna +Kortney +Krysten +Kylee +Lakesha +Lateisha +Leilani +Lia +Liana +Madalyn +Malika +Mariel +Marquita +Melina +Mercedez +Miesha +Myesha +Natalee +Paulette +Perla +Rhonda +Rubi +Salina +Samara +Shae +Shakara +Shamika +Shanell +Shanique +Shannan +Sloane +Tarah +Tera +Terrica +Tiarra +Tricia +Trina +Wanda +Ada +Adela +Adria +Alena +Aleshia +Ally +Allyssa +Alysa +Alysia +Amie +Anika +Aspen +Athena +Betsy +Brigitte +Casie +Catarina +Chandra +Chanelle +Cherish +Codie +Crista +Dania +Danica +Deidre +Denisse +Desiray +Diandra +Dominque +Eleni +Elexis +Elsa +Farah +Francis +Francisca +Gillian +Gisela +Gretchen +Haven +Hazel +Isamar +Jameka +Jeannie +Jeri +Joelle +Jourdan +Juana +Judy +Kalene +Kalynn +Karin +Karlee +Kassidy +Kathrine +Katrice +Kaylen +Keely +Keila +Kendyl +Keona +Kierstin +Kimberlie +Kimberlyn +Kyle +Laila +Lee +Leila +Lexie +Linsey +Luisa +Maira +Marianne +Maureen +Maxine +Maylin +Nakita +Nathaly +Patience +Raechel +Rayna +Reagan +Regan +Rhianna +Roneshia +Roxanna +Ryann +Shakera +Shanise +Shantavia +Sharonda +Sheree +Shontavia +Shyann +Sonja +Stephenie +Tawny +Tayla +Tenisha +Teri +Tianna +Tierney +Tonisha +Xiomara +Alea +Alexzandria +Alix +America +Asha +Ashia +Bertha +Billie +Brittnie +Bryana +Cali +Cari +Chanice +Charissa +Chastity +Christin +Colby +Corina +Cory +Cydney +Daria +Darien +Dayanara +Deondra +Destany +Dionna +Ebone +Ebonie +Eliana +Eliza +Ella +Elyssa +Emmy +Farrah +Gail +Haily +Halley +Hilda +Jackelyn +Jacquelynn +Jaimee +Jakia +Janessa +Janette +Janna +Jayde +Jazzmine +Jazzmyn +Jeana +Jeanine +Jensen +Jessi +Jessyca +Jodie +Johnisha +Joslyn +Juliet +Kacy +Kalee +Kanesha +Karley +Kaylan +Kayle +Kayleen +Keira +Keirsten +Kenna +Kiley +Kim +Kimber +Kirstyn +Krystin +Krystle +Kyleigh +Lakeshia +Laquanda +Latesha +Layne +Lilia +Lynnette +Magdalena +Malia +Marisela +Miya +Nicolle +Phoebe +Priscila +Rachell +Regine +Reyna +Richelle +Ronisha +Rosanna +Sabine +Savana +Shakayla +Shani +Shaniece +Shantell +Shaquana +Shaquille +Shari +Shavon +Shawn +Shekinah +Sherika +Shyanne +Stacia +Stevie +Suzanna +Tamisha +Taylar +Tisha +Tyeisha +Vera +Violet +Yamilet +Yanelis +Yasmeen +Zhane +Addie +Aida +Akilah +Akira +Alesha +Alexsandra +Alishia +Alyssia +Alyx +Amani +Amina +Andria +Anjali +Annelise +Annika +Annmarie +Arden +Aria +Ashtyn +Ayesha +Bionca +Brigette +Brooklynn +Bryanne +Brynna +Calli +Camilla +Candy +Carisa +Carleigh +Cassaundra +Cathryn +Catrina +Chelse +Cherelle +Cheri +Chrissy +Christi +Chynna +Cristy +Daisha +Danyelle +Davina +Davisha +Deasia +Debbie +Delilah +Deyanira +Dolores +Donisha +Doris +Edna +Fabienne +Fantasia +Felicity +Geraldine +Giana +Ginger +Halee +Hayden +Holli +Ileana +Iman +Isabela +Isabelle +Jacey +Jalissa +Jamecia +Jamee +Jamia +Jamilah +Janea +Janee +Jayme +Jenniffer +Jerica +Jessa +Jewel +Jordana +Joselin +Julisa +Justice +Kadedra +Kaitlynne +Kalin +Kathryne +Kattie +Keandra +Keanna +Kelcey +Keondra +Keyla +Keyona +Keyonna +Kiah +Kiandra +Kimberley +Kyndal +Lashanda +Latavia +Lateria +Latia +Latricia +Lawanda +Leann +Leeanna +Leighann +Lesly +Lilian +Lisette +Lizabeth +Lizette +Lovely +Lyndsie +Lynette +Magan +Marena +Margaux +Mariam +Maricela +Marielena +Marsha +Maryam +Maura +Meghann +Mercy +Micah +Michael +Miracle +Nandi +Natacha +Nichelle +Noelia +Noor +Nyesha +Olga +Patsy +Peggy +Porscha +Porsha +Rasheka +Reba +Rebecka +Rikki +Sahara +Savanah +Shakita +Shanequa +Shanita +Shantelle +Shantia +Shantoria +Sharlene +Shawnee +Sheryl +Shiloh +Sirena +Sky +Steffi +Stormy +Susannah +Sydni +Takia +Tameka +Tamra +Taneisha +Taniqua +Tatum +Terry +Tesia +Torey +Torie +Tyla +Uniqua +Valarie +Valery +Venessa +Venus +Vicky +Yajaira +Yanira +Zoey +Zuleika +Aiesha +Alba +Alberta +Alisia +Allegra +Alora +Amberlynn +Annamarie +Anyssa +Aracely +Arianne +Artavia +Ashante +Aubree +Aundrea +Aurelia +Autum +Ayana +Bailee +Becca +Berenice +Brennan +Brieana +Brieanna +Brielle +Britnee +Britny +Brittnay +Brynn +Caitlynn +Camry +Candis +Capri +Caprice +Carey +Carlisha +Carrissa +Caryn +Cassondra +Cathleen +Cathrine +Ceara +Celene +Channel +Charlee +Chassity +Chelsee +Cherise +Cheyene +Chiquita +Chyanne +Chyenne +Ciarra +Cinthya +Clare +Coty +Courtnie +Curtisha +Danesha +Danika +Danyell +Deandrea +Desaray +Dionne +Dora +Elle +Ellie +Elysia +Emmalee +Emmanuela +Erinn +Esperanza +Essence +Estefani +Estephanie +Felecia +Flor +Franchesca +Gemma +Geneva +Gisselle +Glory +Gracie +Grecia +Hanah +Harlie +Harmony +Haylie +Iliana +Irma +Ivanna +Ivey +Izabella +Jackeline +Jalyn +Jamilla +Jamisha +Janelly +Janisha +Jasmyn +Jaymee +Jayne +Jazzmin +Jelisa +Jenelle +Jermeka +Joana +John +Jolene +Joni +Kadeidra +Kadeja +Kai +Kaili +Kaitlan +Kalen +Kalli +Kallie +Karis +Kasie +Katherin +Kati +Katiana +Kaylah +Kayte +Keaundra +Kebrina +Keiara +Keli +Kelsy +Kenia +Kera +Kezia +Khristina +Kieara +Kierstyn +Kiyana +Korey +Korie +Kyanna +Kyndall +Ladonna +Lakia +Laporsha +Laquesha +Larisa +Latifah +Latoria +Lenora +Lexi +Lisbeth +Lynda +Maci +Macie +Makeda +Manuela +Marcy +Mari +Marianna +Marion +Markeisha +Markesha +Markevia +Markia +Markie +Marley +Mattie +Melany +Melyssa +Michell +Minnie +Monet +Nada +Natali +Nikia +Nyasia +Oriana +Paisley +Penny +Quinn +Raina +Ranisha +Rayven +Rebekka +Reina +Renae +Rita +Roberta +Ronesha +Rosangelica +Rowan +Rylee +Samira +Santana +Sapphire +Sariah +Sequoia +Shadai +Shakiera +Shameka +Shanae +Shaneka +Shanta +Shantay +Shaquia +Sharice +Sharika +Sharmaine +Shatavia +Shay +Shayne +Shenika +Shereen +Sherrell +Sherri +Shoshana +Spencer +Starla +Starr +Stephani +Stormi +Sunny +Susanna +Taelor +Tamar +Tamera +Tanesha +Tangela +Tavia +Tequila +Thea +Tiona +Torri +Torrie +Tristan +Vannessa +Violeta +Wendi +Willow +Yanely +Yanet +Zakia +Ashley +Jessica +Samantha +Amanda +Brittany +Taylor +Sarah +Emily +Nicole +Kayla +Stephanie +Alexis +Victoria +Megan +Rachel +Lauren +Elizabeth +Jasmine +Danielle +Amber +Jennifer +Courtney +Alexandra +Rebecca +Hannah +Tiffany +Brianna +Michelle +Christina +Melissa +Alyssa +Chelsea +Katherine +Morgan +Kimberly +Shelby +Heather +Kaitlyn +Kelsey +Savannah +Natalie +Sara +Mary +Haley +Brooke +Allison +Kristen +Andrea +Crystal +Shannon +Kelly +Jordan +Maria +Erica +Erin +Gabrielle +Laura +Vanessa +Madison +Olivia +Briana +Jacqueline +Lindsey +Marissa +Katelyn +Alexandria +Abigail +Anna +Destiny +Kathryn +Sydney +Caitlin +Sierra +Julia +Katie +Angela +Cassandra +Miranda +Jamie +Jenna +Catherine +Brittney +Alexa +Cheyenne +Monica +Bianca +Mariah +Alicia +Paige +Caroline +Kristina +Amy +Sabrina +Summer +Christine +Breanna +Erika +Kaitlin +Patricia +Kristin +Veronica +Leah +Gabriella +Melanie +Cynthia +Gabriela +Dominique +Lindsay +Meghan +Rachael +Cassidy +Brandi +Casey +Natasha +Caitlyn +Ariel +Lisa +Angelica +Diana +Adriana +Karina +Deanna +Autumn +Cristina +Khadijah +Desiree +Chloe +Emma +Tara +Krystal +Bethany +Holly +Whitney +Kara +Tatiana +Kaylee +Kassandra +Tori +Carly +Ciara +Hayley +Jade +April +Margaret +Meagan +Hailey +Carolina +Ana +Mackenzie +Bailey +Grace +Ariana +Katrina +Kiara +Michaela +Rebekah +Sandra +Gina +Kendall +Isabella +Marisa +Mercedes +Kaley +Raven +Alexus +Jasmin +Karen +Nancy +Ashlee +Dana +Diamond +Krista +Tabitha +Valerie +Molly +Yesenia +Kathleen +Priscilla +Sophia +Angel +Ashleigh +Kendra +Julie +Mallory +Alisha +Brenda +Genesis +Aaliyah +Leslie +Madeline +Chelsey +Cindy +Alison +Monique +Nichole +Audrey +Claudia +Jocelyn +Kiana +Natalia +Daniela +Carolyn +Felicia +Jazmine +Kasey +Savanna +Alexia +Tia +Zoe +Cierra +Jazmin +Nathalie +Brandy +Jessie +Shanice +Alejandra +Ashlyn +Aubrey +Barbara +Kirsten +Lacey +Nikki +Bridget +Sasha +Britney +Allyson +Naomi +Raquel +Daniella +Tamara +Toni +Joanna +Kierra +Kylie +Faith +Isabel +Jillian +Marina +Rosa +Bria +Daisy +Francesca +Janelle +Kelli +Linda +Virginia +Angelina +Devin +Katlyn +Maya +Mikayla +Anne +Jacquelyn +Renee +Tyler +Denise +Cara +Hope +Karla +Theresa +Arielle +Lydia +Nina +Ruth +Tiana +Tiara +Colleen +Katelynn +Aimee +Amelia +Nicolette +Susan +Deborah +Jaclyn +Jenny +Meredith +Mia +Stacey +Claire +Helen +Shayla +Valeria +Adrianna +Alissa +Asia +Brenna +Candace +Candice +Evelyn +Kenya +Precious +Tessa +Hunter +Melinda +Pamela +Alana +Carmen +Carrie +Ebony +Lillian +Anastasia +Camille +Carla +Cassie +Cecilia +Tierra +Ashton +Carissa +Carol +Celeste +Darian +Elena +Esther +Giselle +Hanna +Jordyn +Justice +Kaleigh +Kristy +Mckenzie +Paola +Selena +Sofia +Tiffani +Camila +Devon +Frances +Gloria +Harley +Marie +Sharon +Sylvia +Tania +Wendy +Breana +Kadijah +Kayleigh +Kristi +Kristine +Cayla +Dakota +Donna +Janet +Regina +Arianna +Callie +Christy +Rachelle +Shayna +Stacy +Yolanda +Alina +Annie +Haleigh +Logan +Paula +Skylar +Charlotte +Delaney +Heidi +Ivy +Marilyn +Rose +Tayler +Brittani +Chasity +Justine +Kelsie +Kourtney +Kyra +Michele +Peyton +Robin +Talia +Tanisha +Teresa +Charlene +Emilee +Ericka +Josie +Joy +Kailey +Kali +Katarina +Madeleine +Mikaela +Riley +Alessandra +Aliyah +Bryanna +Chantel +Elisabeth +Eva +Imani +Lyndsey +Makayla +Martha +Meaghan +Serena +Tracy +Charity +Chelsie +Kaitlynn +Kari +Kiera +Lily +Vivian +Allie +Carley +Ciera +Clarissa +Ellen +Gianna +Judith +Kyla +Mayra +Selina +Shaina +Shirley +Simone +Destinee +Juliana +Kiersten +Leticia +Maggie +Maranda +Melody +Shawna +Sheila +Taryn +Zhane +Alexandrea +Carina +Chanel +Christa +Iesha +Jaime +Janice +Jessenia +Kaila +Karissa +Kelley +Kira +Miriam +Nadia +Sadie +Sonia +Stefanie +Adrienne +Alyson +Celina +Christian +Elise +Genevieve +Lexus +Macy +Mariana +Marisol +Tabatha +Tanya +Yasmin +Abby +Aileen +Bridgette +Carlie +Coral +Elisa +Haylee +Janae +Jane +Jeanette +Kassidy +Kaylin +Kellie +Shana +Tina +Yasmine +Angelique +Brianne +Chandler +Cortney +Diane +Eden +Elaine +Jada +Josephine +Katharine +Kaylyn +Lena +Noelle +Rebeca +Sandy +Stephany +Annette +Bonnie +Dorothy +Hillary +Latoya +Lorena +Maribel +Misty +Paris +Shakira +Aisha +Alanna +Alisa +Anissa +Brittni +Christie +Jena +Kala +Katelin +Kristal +Kylee +Leigh +Lourdes +Norma +Octavia +Patrice +Payton +Sade +Shaniqua +Tyra +Alma +Antonia +Ashanti +Ashlynn +Ayla +Beatriz +Blair +Blanca +Cheyanne +Corinne +Dallas +Giovanna +Isabelle +Jesse +Kori +Lori +Lucia +Margarita +Paulina +Quanisha +Randi +Robyn +Ruby +Sarai +Savanah +Angie +Antoinette +Belinda +Beverly +Denisha +Fabiola +Ingrid +Johanna +Joyce +Kacie +Kendal +Keri +Kristyn +Lea +Leanna +Liana +Lissette +Loren +Montana +Moriah +Scarlett +Shantel +Skyler +Darby +Dayana +Elaina +Emerald +Iris +Janell +Jenifer +Jodi +Julianne +Kimberley +Latisha +Leanne +Maegan +Mollie +Nora +Racheal +Regan +Rochelle +Shauna +Shelbi +Sidney +Staci +Susana +Suzanne +Tammy +Tess +Tonya +Yadira +Yaritza +Yessenia +Yvonne +Alaina +Alesha +Alice +Ashlie +Ashly +Audra +Blake +Bobbi +Britany +Cristal +Debra +Eboni +Emilie +Esmeralda +Guadalupe +India +Jacklyn +Janie +Jasmyn +Jazmyn +Jesenia +Juana +Kalyn +Kristie +Larissa +Maritza +Stevie +Tasha +Trisha +Ann +Brook +Cameron +Clara +Daphne +Deandra +Desirae +Devyn +Jazmyne +Joselyn +Kailee +Kalie +Kanisha +Karly +Kate +Katerina +Katlin +Kennedy +Kirstie +Lacie +Lynn +Mariela +Mckenna +Miracle +Nicolle +Princess +Shanna +Skye +Tatianna +Tianna +Trinity +Viviana +Abbey +Alecia +Avery +Brigitte +Brittanie +Carli +Catalina +Christen +Christiana +Corina +Dalia +Darlene +Dawn +Dayna +Deja +Gwendolyn +Iliana +Jamesha +Jana +Janessa +Juanita +Kacy +Keandra +Kenia +Laurel +Leandra +Liliana +Nadine +Nia +Nikita +Shakeria +Shannen +Shea +Tatyana +Tracey +Zana +Alysha +Alysia +Annabelle +Ayana +Brielle +Brionna +Casandra +Cheryl +China +Dara +Deidra +Destini +Edith +Elsa +Georgia +Iman +Irene +Jaimie +Jill +Juliette +Julissa +Kayli +Keisha +Kinsey +Lacy +Lara +Latasha +Lauryn +Layla +Lesley +Lizbeth +Melina +Micaela +Noemi +Regine +Roxana +Shanteria +Sheena +Shelly +Silvia +Thalia +Traci +Aleah +Allyssa +Anais +Beatrice +Brandie +Brigette +Cora +Dania +Danyelle +Domonique +Elyssa +Emely +Essence +Francheska +Gabriel +Halle +Hallie +Hilda +Hollie +Itzel +Janay +Jennie +Jessika +Joanne +Julianna +Kasandra +Kaycee +Kayley +Kelsea +Kerri +Kortney +Luisa +Madelyn +Magdalena +Marjorie +Marlene +Marley +Rikki +Sonya +Tanesha +Valencia +Vanesa +Whitley +Alex +Annamarie +Araceli +Aspen +Ava +Camilla +Caylee +Cecelia +Chantal +Courtnie +Doris +Hailee +Hali +Halie +Jalisa +Jean +Jodie +Kacey +Karlee +Karley +Kaylan +Keondra +Keyanna +Khadejah +Kristian +Lisette +Mara +Marcella +Nikole +Noel +Rhiannon +Sarina +Shanika +Shianne +Sophie +Stefani +Adrian +Ali +Andria +Annmarie +Ansley +Bobbie +Britni +Bryana +Carlee +Carson +Celine +Chelsy +Christin +Cydney +Danae +Darien +Demi +Devan +Dianna +Dixie +Eileen +Geneva +Glenda +Graciela +Ivana +Ivey +Janel +Joan +Kadejah +Karlie +Kathy +Kaylynn +Keona +Kerry +Kianna +Kimberlyn +Kirstin +Krysta +Krystina +Lana +Laquisha +Latrice +Leeza +Madalyn +Maryann +Myranda +Nataly +Racquel +Sally +Shanell +Sommer +Stacie +Suzette +Sydnie +Terra +Tiffanie +Tkeyah +Tricia +Valentina +Yasmeen +Adrianne +Amberly +Angelika +Betty +Brandee +Breanne +Brooklyn +Cari +Ciarra +Clarisa +Corey +Corinna +Damaris +Danica +Destiney +Edna +Emmalee +Estefania +Fatima +Francine +Geena +Gladys +Hazel +Isis +Ivette +Janette +Jayme +Jewel +Joann +Joycelyn +Juliet +Justina +Kaci +Kailyn +Karli +Kaylie +Keila +Kenzie +Keyana +Kiley +Krystle +Leeann +Leilani +Lexi +Lexis +Lia +Lorraine +Lucy +Luz +Marcia +Marian +Marianna +Marianne +Marlena +Mattie +Maxine +Myesha +Phoebe +Porsha +Raina +Reagan +Rebeka +Rhonda +Rosemary +Roxanne +Ryan +Sage +Sharonda +Shelbie +Shiann +Siera +Sky +Tesla +Tyesha +Yvette +Addison +Alayna +Alexys +Alisia +Amaris +Anjelica +Annemarie +Asha +Ashely +Ashli +Ayanna +Breonna +Bridgett +Brittnie +Caley +Chantelle +Chastity +Chelsi +Codie +Danesha +Dannielle +Delia +Deonna +Dominque +Drew +Ella +Farrah +Fernanda +Fredricka +Ivanna +Jackeline +Jalyn +Jamila +Janine +Jaqueline +Jayde +Jensen +Jerica +Jessi +Joelle +Judy +Kassie +Katia +Katy +Keanna +Kelsi +Kenisha +Keyona +Kyana +Lashay +Laurie +Lina +Lyndsay +Mandy +Marcela +Maryanne +Maylin +Mindy +Monika +Myra +Ricki +Rita +Rocio +Rosalinda +Shantavia +Shante +Shantell +Sherry +Sonja +Sumer +Tameka +Tequila +Terri +Tonisha +Unique +Xiomara +Aja +Alena +Alycia +Alysa +Alyse +Anabel +Anika +Anisa +Anita +Antonisha +Anya +Ashtyn +Astrid +Aubrie +Aurora +Baby +Bailee +Becky +Bernadette +Beth +Billie +Blaire +Breann +Brittny +Brynn +Caitlynn +Caridad +Celia +Chante +Chassidy +Cherokee +Chrystal +Connie +Constance +Cori +Corrina +Debbie +Demetria +Destinie +Elissa +Eliza +Ellie +Elyse +Fallon +Franchesca +Georgina +Gillian +Hadley +Infant +Jaimee +Jaleesa +Jalissa +Jeana +Jeanine +Jeannie +Jeniffer +Jerrica +Jessy +Julisa +Kaela +Karah +Kathrine +Kati +Katlynn +Kaylen +Keara +Kelsy +Keren +Khadija +Kim +Krysten +Macie +Maddison +Magen +Makala +Makenzie +Mallorie +Maricela +Marisela +Markia +Melisa +Natalee +Patience +Paulette +Peggy +Priscila +Quanesha +Reina +Richelle +Sabina +Shala +Shaquilla +Shaquita +Shay +Shelley +Shyanne +Stormy +Sunny +Sydni +Teri +Tiarra +Tiera +Tyisha +Vianca +Violeta +Yajaira +Yazmin +Abagail +Abbie +Alexcia +Alexi +Ami +Amie +Angeline +Aracely +Ashtin +Athena +Aubree +Aundrea +Baylee +Bree +Brieanna +Cailey +Cailin +Caylie +Cherish +Chiara +Christal +Cinthia +Cody +Colette +Connor +Cooper +Crista +Dahlia +Danisha +Darcy +Darrian +Denisse +Desirea +Destany +Deyanira +Dianne +Dolores +Dora +Dulce +Dylan +Eleanor +Elexis +Eliana +Eunice +Felisha +Fiona +Griselda +Harmony +Haylie +Helena +Isabela +Jacquelynn +Janna +Jazzmin +Jesica +Johana +Johnna +Jolene +Kandice +Karena +Karisa +Karolina +Karyna +Katya +Kaylah +Kaytlin +Keely +Keira +Kenyetta +Keonna +Keyonna +Kristan +Krystin +Kyndal +Kyndall +Lakendra +Latifah +Leann +Lee +Lindy +Linette +Liz +Liza +Lois +Lora +Louise +Lynette +Lynsey +Mabel +Maia +Maira +Makenna +Marena +Mariel +Markesha +Marlee +Marquisha +Marquita +Marsha +Martina +Mercedez +Miesha +Monet +Myriam +Nakia +Olga +Paloma +Passion +Phyllis +Presley +Raegan +Reem +Rene +Reyna +Rolanda +Rolonda +Ronesha +Rosalie +Roxanna +Salena +Salina +Samara +Shameka +Shanise +Stefania +Steffany +Sydnee +Synthia +Tabetha +Tamika +Taneisha +Tatum +Tichina +Tierney +Tisha +Tracie +Valery +Zayna +Aleisha +Alia +Alishia +Alivia +Allegra +Alliyah +Allysa +Alyssia +Amairani +Amari +Ambria +Amethyst +Angelia +Anisha +Annabel +Anyssa +Ariella +Arlene +Ashia +Ashlea +Asya +Aundria +Ayesha +Aysha +Bernice +Bertha +Bianka +Breona +Brett +Brie +Britnee +Brittnay +Brooklynn +Bryce +Carey +Carleigh +Cecily +Chanice +Charmaine +Chasidy +Cinthya +Corrie +Cristine +Daisha +Daneshia +Danna +Darla +Dasha +Dayanara +Deana +Delicia +Deneshia +Desiray +Desire +Ebone +Elana +Eleni +Elexus +Elisha +Elle +Eryn +Estrella +Eulalia +Evan +Evelin +Fabienne +Florence +Francis +Francisca +Ginger +Gisselle +Gretchen +Halley +Hana +Heaven +Holli +Ilana +Ileana +Ivonne +Jakia +Jameka +Jami +Jamika +Janee +Jaylyn +Jazmen +Jeanne +Jelisa +Jenelle +Joi +Jordana +Joslyn +Kadedra +Kadeidra +Kadesha +Kaelyn +Kalin +Kandace +Katryna +Kaytlyn +Keana +Kelcie +Kendyl +Kia +Kiarra +Kisha +Kya +Lakisha +Lane +Laporsha +Lashonda +Latonya +Latoria +Leeanne +Leigha +Lesly +Lidia +Linsey +Lizette +Lorelei +Mandi +Marguerite +Mari +Markisha +Marykate +Maureen +Michaella +Mikala +Milena +Mireya +Mona +Myisha +Natacha +Natali +Natalya +Nathaly +Nikia +Perla +Petra +Pricilla +Rayna +Rena +Reva +Rianna +Roberta +Rosemarie +Sapphire +Shae +Shakayla +Shakera +Shanelle +Shani +Shanique +Shannan +Shantae +Shantoria +Shaquanda +Shaquila +Shyann +Shyla +Siara +Spencer +Star +Stella +Sydne +Symone +Taelor +Takia +Tala +Tashara +Tawny +Tera +Tiesha +Trina +Venessa +Vicky +Violet +Yakira +Zahra +Zakiya +Adreanna +Akira +Aleia +Alesia +Alexanderia +Alexius +Alix +Aliya +Amani +Amira +Andi +Andriana +Angelic +Annelise +Apryl +Arika +Arin +Arissa +Aubrianna +Breeana +Breeanna +Briona +Britani +Britny +Brittnee +Caleigh +Cali +Carlisha +Caterina +Cathleen +Cathrine +Cathryn +Chanelle +Chantell +Charline +Cherie +Cheyene +Chyanne +Clarice +Claudine +Codi +Consuelo +Cory +Crissy +Crysta +Curtisha +Daphnie +Daryl +Davina +Deasia +Deidre +Delaina +Denesha +Deondra +Dezirae +Dionna +Dorian +Elsie +Ember +Emelia +Emili +Emilia +Estefany +Fabiana +Felecia +Felicity +Francina +Gena +Gisel +Gisela +Gizelle +Halee +Ieshia +Jacey +Jackie +Jacquline +Jacqulyn +Jamecia +Jamelia +James +Jamesia +Janai +Janely +Janis +Janisha +Janissa +Jaquelin +Jasmyne +Jayla +Jaymee +Jazlyn +Jeannette +Jenni +Jocelin +Johnetta +Jonisha +Jordin +Josefina +Justyce +Kadeshia +Kadie +Kaelin +Kaitlynne +Kalee +Kalynn +Kamilah +Kaneisha +Kanesha +Karin +Kasie +Kay +Kayci +Kayle +Kaylene +Kelci +Keosha +Kera +Kerrie +Keyla +Khadeja +Kimberlee +Kodi +Korie +Kyara +Kyrsten +Laila +Lakeisha +Lakesha +Lakia +Lanie +Lashae +Lashawn +Latesha +Latia +Lawanda +Leana +Leila +Libby +Liberty +Lila +Lillie +Lisandra +Lisbeth +Lismary +Lizzette +Loretta +Lynda +Macey +Maci +Madelaine +Maiya +Malia +Margo +Marielle +Marimar +Marla +Marline +Mckayla +Meg +Meghann +Melany +Melia +Micah +Michell +Mickayla +Mikeshia +Mina +Mishelle +Morganne +Nelly +Nicholas +Nicholle +Nickole +Niki +Nykia +Nyla +Oriana +Patsy +Pauline +Porcha +Priya +Quaneisha +Quaneshia +Queen +Quiana +Quinn +Rachell +Rain +Ramona +Rashonda +Reba +Rebekka +Rhianna +Roneshia +Ronisha +Ryley +Salma +Samaria +Samatha +Sammantha +Scarlet +Selene +Sequoia +Shade +Shai +Shaila +Shakara +Shakia +Shalonda +Shania +Shaquana +Shawanda +Shaylyn +Shekinah +Shenika +Sherline +Sheyenne +Sienna +Sindy +Sirena +Stacia +Susannah +Takeria +Takeya +Talisa +Talisha +Tamera +Tamisha +Tammi +Tangela +Taquisha +Tarah +Teanna +Thania +Thelma +Timesha +Torie +Torri +Torrie +Tynesha +Tyresha +Vashti +Vicki +Winter +Yaneli +Yanely +Zoey +Ashley +Jessica +Sarah +Emily +Samantha +Taylor +Brittany +Amanda +Kayla +Alexis +Stephanie +Rachel +Victoria +Nicole +Megan +Lauren +Courtney +Jennifer +Elizabeth +Jasmine +Brianna +Danielle +Hannah +Amber +Alexandra +Morgan +Christina +Alyssa +Melissa +Michelle +Kaitlyn +Rebecca +Tiffany +Madison +Katherine +Chelsea +Natalie +Savannah +Shelby +Brooke +Haley +Kimberly +Sydney +Heather +Jordan +Olivia +Kelsey +Maria +Kristen +Sara +Allison +Mary +Sierra +Destiny +Andrea +Gabrielle +Erin +Marissa +Briana +Shannon +Vanessa +Caitlin +Kelly +Laura +Erica +Anna +Katelyn +Miranda +Abigail +Alexandria +Lindsey +Jenna +Julia +Cheyenne +Crystal +Angela +Monica +Breanna +Paige +Jacqueline +Alexa +Katie +Amy +Gabriela +Alicia +Catherine +Kaitlin +Cassidy +Kathryn +Jamie +Caroline +Gabriella +Cassandra +Mariah +Angelica +Bianca +Sabrina +Melanie +Brandi +Karina +Selena +Brittney +Caitlyn +Kaylee +Erika +Ariel +Kristina +Summer +Patricia +Autumn +Emma +Christine +Casey +Leah +Rachael +Carly +Ciara +Mackenzie +Meghan +Bailey +Cynthia +Ana +Diana +Valerie +Desiree +Krystal +Kylie +Veronica +Dominique +Holly +Rebekah +Chloe +Isabella +Hayley +Kristin +Molly +Carolina +Jade +Tatiana +Deanna +Lindsay +Lisa +Madeline +April +Grace +Natasha +Ariana +Michaela +Monique +Tara +Hailey +Bethany +Julie +Tori +Cristina +Faith +Sophia +Kathleen +Kendall +Kiana +Raven +Adriana +Whitney +Alison +Margaret +Marisa +Aaliyah +Karen +Natalia +Zoe +Ashleigh +Jazmine +Daniela +Kaley +Meagan +Gina +Kiara +Alexus +Ashlee +Kassandra +Kara +Krista +Ashlyn +Cierra +Brandy +Claudia +Hope +Tabitha +Deja +Felicia +Mallory +Mercedes +Katrina +Savanna +Cindy +Leslie +Sandra +Angel +Kasey +Kendra +Diamond +Katelynn +Lydia +Makayla +Alexia +Jasmin +Joanna +Brenda +Genesis +Priscilla +Audrey +Tiara +Yesenia +Alejandra +Jazmin +Kirsten +Nathalie +Chelsey +Jocelyn +Raquel +Delaney +Denise +Nina +Dana +Asia +Jacquelyn +Jessie +Jillian +Katlyn +Nancy +Tatyana +Daisy +Tia +Dakota +Francesca +Nichole +Arianna +Naomi +Amelia +Cara +Jordyn +Justice +Renee +Tiana +Toni +Imani +Isabel +Bridget +Camille +Tamara +Britney +Candace +Daniella +Rosa +Sasha +Shanice +Alana +Allyson +Aubrey +Evelyn +Karla +Mikayla +Alisha +Barbara +Ebony +Kierra +Lacey +Sharon +Tiffani +Hanna +Mckenzie +Paola +Anne +Celeste +Teresa +Gianna +Marina +Sofia +Theresa +Tyler +Kenya +Maya +Mia +Precious +Ruth +Tierra +Angelina +Carissa +Carla +Carolyn +Jada +Logan +Ashton +Devon +Jenny +Adrianna +Carmen +Hunter +Janelle +Kailey +Kaitlynn +Thalia +Arielle +Charity +Clarissa +Devin +Kelsie +Pamela +Riley +Tessa +Virginia +Aimee +Claire +Destinee +Elena +Juliana +Stacey +Esther +Kelli +Kennedy +Lily +Marie +Regina +Selina +Susan +Charlotte +Dallas +Ericka +Helen +Lillian +Linda +Abby +Cecilia +Serena +Anastasia +Bria +Cheyanne +Ciera +Ellen +Giselle +Kira +Rose +Bryanna +Carrie +Chantel +Colleen +Deborah +Gloria +Jaclyn +Maranda +Meredith +Nadia +Yasmin +Brittani +Demi +Tina +Valeria +Aliyah +Alyson +Cayla +Darian +Harley +Haylee +Janae +Janet +Karissa +Melody +Nikki +Shayla +Alissa +Candice +Kellie +Kristine +Kyra +Makenzie +Meaghan +Melinda +Simone +Tianna +Vivian +Aisha +Annie +Brenna +Bridgette +Carina +Cassie +Chandler +Chantal +Christy +Kaleigh +Kayleigh +Kristy +Liliana +Maggie +Rachelle +Stephany +Ann +Darby +Elise +Eva +Heidi +Kassidy +Madeleine +Michele +Nicolette +Paula +Peyton +Robyn +Sade +Sidney +Sylvia +Tayler +Brianne +Callie +Kali +Lexus +Mariana +Marilyn +Mayra +Robin +Ruby +Sadie +Tanisha +Tracy +Yasmine +Alina +Alondra +Baylee +Breana +Elisabeth +Josie +Julianna +Justine +Khadijah +Kylee +Mikaela +Noelle +Payton +Skye +Tyra +Christian +Elaine +Emilee +Esmeralda +Ivy +Julianne +Leanna +Quanisha +Scarlett +Skyler +Stacy +Stefanie +Talia +Tania +Taryn +Alaina +Antonia +Ashanti +Cortney +Destiney +Jesse +Joy +Kaylyn +Kourtney +Kyla +Macy +Paris +Camila +Carley +Carol +Daphne +Destini +Guadalupe +Jaime +Kaila +Kala +Katarina +Maribel +Martha +Rochelle +Shakira +Tasha +Wendy +Adrienne +Angelique +Chanel +Frances +Haleigh +India +Johanna +Juana +Kari +Katlin +Kaylin +Kianna +Kiersten +Laurel +Lea +Lorena +Rosemary +Shaina +Shawna +Shayna +Skylar +Sonia +Yolanda +Allie +Beatriz +Breanne +Chelsie +Christa +Elisa +Hillary +Iris +Josephine +Kiera +Loren +Rebeca +Rhiannon +Shirley +Trinity +Ashlie +Essence +Giovanna +Iesha +Isabelle +Jenifer +Kaylie +Lyndsey +Marlene +Miriam +Nora +Tanya +Denisha +Irene +Janay +Judith +Kori +Lacy +Lena +Lucy +Melina +Montana +Nia +Shantel +Sophie +Tabatha +Abbey +Alisa +Annette +Antoinette +Blanca +Cameron +Carlie +Clara +Daisha +Dawn +Jane +Kelsi +Kristi +Lissette +Marisol +Sandy +Trisha +Tristan +Angie +Blair +Carlee +Catalina +Celina +Celine +Coral +Eileen +Janice +Jazmyn +Kelley +Kristyn +Leticia +Lyric +Mindy +Nataly +Alice +Bobbi +Bonnie +Breann +Brigitte +Charlene +Cristal +Diane +Emilie +Heaven +Jami +Jasmyne +Jesenia +Jessenia +Joyce +Juliette +Julissa +Karly +Katerina +Kayli +Keana +Kristal +Lucia +Maritza +Misty +Nadine +Racheal +Samara +Shauna +Shelbie +Addison +Alanna +Alayna +Anais +Avery +Betty +Brionna +Casandra +Damaris +Donna +Franchesca +Halie +Helena +Jalisa +Joanne +Jodi +Kaelyn +Kalyn +Lizbeth +Lourdes +Madelyn +Margarita +Marley +Micaela +Moriah +Myranda +Perla +Roxana +Shana +Shania +Shelbi +Terri +Yessenia +Yvette +Anita +Ashli +Beatrice +Brandie +Brittni +Brooklyn +Carli +Celia +Chante +Chelsi +Christie +Corinne +Dayana +Dejah +Emely +Genevieve +Isis +Jasmyn +Karlie +Katelin +Keyana +Kirstin +Leanne +Lori +Lynn +Marcella +Melisa +Miracle +Mollie +Noel +Patrice +Reagan +Regan +Sally +Sarai +Shea +Sheila +Tamera +Tiffanie +Tyesha +Yvonne +Alessandra +Ali +Alia +Alysa +Ashlynn +Athena +Ayanna +Beverly +Bryana +Drew +Fabiola +Hallie +Ivana +Jacklyn +Jaqueline +Jessika +Kalee +Kathy +Kenia +Keri +Keyla +Lexis +Lisette +Mckenna +Monika +Octavia +Roxanne +Savanah +Shanteria +Stacie +Symone +Tonya +Valentina +Zhane +Aileen +Alesha +Alex +Alysha +Anabel +Arlene +Ayla +Bailee +Belinda +Brittaney +Camilla +Ciarra +Constance +Cora +Dalia +Dasia +Eden +Edith +Francis +Hana +Iliana +Jazmyne +Jeannette +Kasandra +Katharine +Katlynn +Kierstin +Kimberley +Kinsey +Krysta +Lara +Leandra +Linsey +Maddison +Marcia +Martina +Noemi +Princess +Randi +Sage +Savana +Sheena +Shyanne +Sonya +Suzanne +Sydnee +Sydni +Zoey +Alecia +Alivia +Annabelle +Audra +Ayana +Blake +Bobbie +Breonna +Brieanna +Brielle +Cecelia +Courteney +Cydney +Daija +Darien +Dayna +Devan +Dina +Elaina +Elana +Eliza +Harmony +Jaimie +Janine +Jean +Jeanette +Jerrica +Joi +Kaela +Kailee +Karlee +Kate +Katia +Kerri +Keyonna +Kiley +Latisha +Laurie +Lexi +Lia +Liana +Madalyn +Mara +Michael +Nathalia +Nathaly +Nikole +Stevie +Tayla +Yadira +Yaritza +Adrian +Aja +Alexandrea +Allyssa +Amie +Austin +Beth +Chantelle +Chasity +Cheryl +Christen +Connie +Deandra +Domonique +Dorothy +Eboni +Eleanor +Eryn +Georgia +Hailee +Jamesha +Janel +Janessa +Janie +Jayla +Jensen +Jewel +Joelle +Kaylynn +Kerry +Keyanna +Kimberlee +Latasha +Lidia +Lizette +Lorraine +Maegan +Marla +Norma +Rikki +Shianne +Silvia +Susana +Tammy +Tatyanna +Tess +Tonisha +Viviana +Wanda +Yasmeen +Alycia +Alyssia +Ashely +Astrid +Bridgett +Carson +Christiana +Corey +Cori +Dannielle +Debra +Desirae +Fatima +Gabriel +Gillian +Halee +Jazzmin +Jena +Jessi +Jocelyne +Jodie +Jolene +Justina +Kacey +Kacie +Karley +Kathrine +Katiana +Katy +Keara +Keely +Kendal +Kenisha +Krystin +Lakeisha +Larissa +Latavia +Leigh +Leila +Leilani +Luz +Marcela +Marianna +Marjorie +Michaella +Morganne +Paulina +Reanna +Rene +Ricki +Rylee +Shakeria +Shameka +Shantell +Staci +Tamika +Terra +Vanesa +Xiomara +Alma +Alysia +Amaris +Angelia +Aria +Aundrea +Billie +Breeanna +Brigette +Brook +Carleigh +Chelsy +Daijah +Daja +Dajah +Danyelle +Daysha +Deidra +Demetria +Dulce +Eliana +Ella +Ellie +Elyse +Elyssa +Estefania +Ester +Fallon +Felisha +Geneva +Geraldine +Griselda +Hali +Harlie +Infant +Jacquelin +Jailene +Jamila +Janna +Jayde +Jazlyn +Jennie +Johana +Juanita +Kady +Kaliyah +Kayley +Keila +Keyona +Kia +Kim +Kristian +Kristie +Krysten +Leondra +Lesley +Macey +Mariam +Maricela +Marisela +Maxine +Mckayla +Melany +Natalya +Oriana +Phoebe +Priya +Racquel +Raegan +Regine +Reina +Rita +Rocio +Roselyn +Ryan +Shakera +Shanelle +Shaniqua +Shanna +Shaquanda +Shelly +Sommer +Suzette +Tanesha +Tatianna +Tiarra +Tichina +Traci +Xena +Yazmin +Abbigail +Ada +Akira +Alexys +Alliyah +Amani +Annmarie +Ansley +Antonella +Araceli +Ariella +Ashly +Aubrie +Aurora +Ava +Brittanie +Cary +Casie +Cherish +Christin +Clarice +Corina +Dania +Dara +Dayanara +Deana +Deidre +Delilah +Destany +Diandra +Dianna +Dixie +Dominque +Elsa +Farrah +Gabriele +Gladys +Glenda +Gwendolyn +Hilda +Hollie +Isabela +Ivanna +Ivette +Jazzmine +Jewell +Jill +Jordin +Josey +Judy +Kacy +Kaelin +Kalie +Kanisha +Karli +Kasie +Keisha +Kelsea +Kenzie +Keosha +Krystina +Lacie +Lana +Lisbeth +Liza +Luisa +Lyndsay +Maiya +Makala +Makenna +Mandy +Marianne +Marielena +Marlena +Marsha +Marta +Mattie +Maura +Meranda +Micah +Micayla +Mona +Natori +Nikita +Reyna +Rhianna +Richelle +Rowan +Ryann +Scarlet +Shanika +Shatavia +Sienna +Soraya +Susanna +Sydnie +Taylar +Tracey +Trista +Unique +Valencia +Widline +Yanira +Yessica +Aida +Alena +Alessia +Alexander +Alexcia +Alisia +Amara +Ambar +Andria +Annemarie +Ariela +Ashante +Ashlea +Aubree +Bella +Bernadette +Bertha +Brandee +Briona +Brittnee +Brooklynn +Bryce +Cecily +Celena +Charlie +Chase +Chrystal +Codi +Danna +Daphney +Darlene +Delanie +Dena +Deondra +Deonna +Desire +Destinie +Devyn +Doris +Elexus +Ember +Emerald +Emmalee +Eriel +Estefani +Evie +Farah +Geena +Ginger +Gretchen +Halle +Harlee +Haven +Hazel +Hilary +Ingrid +Ivory +Jackeline +Jackie +Jameka +Janee +Janette +Janina +Janisha +Jayme +Jennah +Jessy +Joana +Joann +Jordana +Joselyn +Kalynn +Katalina +Katheryn +Kaycee +Kaylah +Kaytlyn +Keandra +Keanna +Kendyl +Keondra +Kimber +Kyana +Kyndall +Lakia +Latoya +Lianna +Libby +Lilia +Lilibeth +Lina +Louise +Magan +Magdalena +Makeda +Mari +Mariel +Maryann +Melodie +Michell +Mikaila +Mikala +Mikesha +Mya +Natali +Nicolle +Olga +Quanesha +Quiana +Rachele +Reba +Rhea +Rolanda +Ronni +Sabine +Salena +Samaria +Shakayla +Shamika +Shante +Shari +Sheridan +Sherley +Sheyenne +Shiloh +Stella +Tamar +Tameka +Tristin +Tynesha +Tytiana +Unknown +Vannessa +Yamilet +Yesica +Aaron +Abbie +Abigayle +Adrianne +Akilah +Alexi +Alexsis +Alyse +America +Andie +Andreana +Andreina +Anika +Anitra +Anjelica +Annalise +Annamarie +Antionette +Arin +Breona +Breyanna +Briann +Britany +Britni +Bryn +Cailey +Cailin +Camisha +Candy +Caridad +Catelyn +Cathryn +Caylee +Chanelle +Charla +Charmaine +Chastity +Cherie +Cherokee +Chyna +Cinnamon +Clarisa +Colby +Colette +Corie +Cornelia +Corrie +Corrine +Danae +Darcy +Deandrea +Deasia +Deyanira +Dianne +Dionna +Donisha +Dora +Elisha +Emani +Evan +Fabienne +Fiona +Francheska +Francisca +Frankie +Giana +Grecia +Haylie +Iman +Imari +Iridian +Izabella +Jacey +Jael +Jaliyah +Jalyn +Jamecia +Jana +Janai +Janell +Jayda +Jennyfer +Jerica +Jesica +Joan +John +Jorden +Joslyn +Kaci +Kadesha +Kailah +Kaile +Kailyn +Kami +Katelynne +Kati +Katilyn +Kattie +Kaytlin +Kelsy +Kenna +Keonna +Keturah +Kirby +Kirstie +Kortney +Kymberly +Laken +Lakendra +Lakisha +Laquisha +Laquita +Latesha +Latrice +Lauryn +Lawanda +Layla +Leana +Leia +Lila +Liz +Lucero +Lynsey +Magaly +Magen +Maira +Makia +Malia +Malika +Mandi +Marcy +Marguerite +Mariajose +Marimar +Marion +Markesha +Marlee +Martine +Mekayla +Miya +Monet +Myra +Myriah +Nakia +Nelly +Nichelle +Nickole +Niya +Passion +Patience +Porsha +Presley +Rae +Raeann +Raychel +Rayne +Rayven +Rena +Renata +Rhonda +Rianna +Risa +Ronesha +Rosalinda +Rosalyn +Roslyn +Roxanna +Selene +Serenity +Shae +Sharlene +Sharonda +Shekinah +Shelley +Shyann +Star +Stephani +Sunshine +Suzanna +Tabetha +Tatiyana +Tatum +Therese +Tkeyah +Tristen +Vicky +Willow +Yazmine +Abriana +Abrianna +Adelina +Adina +Akila +Alea +Aleah +Alexzandra +Alishia +Alix +Alixandra +Aliya +Alora +Amalia +Anamaria +Anastacia +Anesia +Anisha +Anissa +Annabel +Annalee +Annika +Antwonette +Anya +Anyssa +Ashtyn +Aspen +Asya +Audrianna +Aurelia +Aya +Baleigh +Berenice +Betsy +Bianka +Brea +Breeana +Brie +Brittnay +Brittnie +Cailyn +Caleigh +Carey +Cari +Cassaundra +Caterina +Chantell +Charline +Chassidy +Chiara +Chyanne +Cinthia +Clare +Corrina +Cory +Crista +Dakotah +Daria +Dasha +Debbie +Denisse +Desree +Deven +Dylan +Dymond +Edna +Elicia +Emilia +Emmie +Emory +Estefany +Estrella +Eugenia +Eulalia +Eunice +Felicity +Flora +Gena +Gilda +Gisela +Gisselle +Graciela +Greer +Halley +Heidy +Holley +Ilana +Ileana +Isamar +Jacquelyne +Jakeria +Jalissa +Jaylin +Jayne +Jeanine +Jenniffer +Jesika +Jessalyn +Johnna +Johnnie +Joseline +Joshua +Journey +Julian +Julisa +Kadijah +Kailani +Kaitlan +Kalena +Kallie +Karoline +Karyna +Katerin +Kaylan +Kayleen +Keionna +Kelcey +Keona +Keyara +Keysha +Khalia +Kiarra +Kristiana +Krystle +Krystyna +Kyara +Kyle +Kyrsten +Laci +Laila +Lainey +Lakayla +Laney +Lashay +Latricia +Layne +Leeann +Leigha +Lesli +Lexie +Lilly +Linette +Loni +Lora +Lovely +Lucille +Maia +Malikah +Mallorie +Malory +Marena +Mariela +Markia +Markisha +Marquisha +Maryam +Maryssa +Maureen +Mellisa +Mercy +Miesha +Mika +Misha +Myiesha +Myriam +Nakisha +Nala +Nandi +Natacha +Nautica +Nicollette +Nigeria +Niki +Nisa +Nohely +Nyesha +Nykia +Odette +Pauline +Penelope +Pilar +Pooja +Portia +Prisca +Quinn +Raina +Rebeka +Rodnesha +Roseanna +Rosemarie +Sabina +Saige +Salina +Sari +Schyler +Seaira +Serina +Shakyra +Shambria +Shandrika +Shanell +Shantal +Shanterria +Shantoria +Shelbey +Shelsea +Sherry +Shyan +Shyla +Sierrah +Sirena +Sky +Sloane +Spencer +Stefany +Stephenie +Sumer +Tahlia +Takia +Talya +Tamisha +Tera +Tiera +Tory +Treasure +Trina +Tyanna +Tyneisha +Tynisha +Valarie +Waverly +Whitley +Xenia +Yamilex +Yarelis +Yoana +Zakia +Zakiya +Zaria +Zuri +Ashley +Jessica +Emily +Taylor +Sarah +Samantha +Alexis +Kayla +Brittany +Amanda +Rachel +Victoria +Stephanie +Elizabeth +Brianna +Megan +Nicole +Hannah +Jennifer +Jasmine +Lauren +Madison +Alexandra +Courtney +Amber +Savannah +Danielle +Rebecca +Alyssa +Morgan +Katherine +Shelby +Haley +Tiffany +Melissa +Natalie +Christina +Brooke +Chelsea +Kaitlyn +Sydney +Michelle +Sabrina +Gabrielle +Vanessa +Cheyenne +Kelsey +Sara +Jordan +Kimberly +Abigail +Maria +Olivia +Destiny +Briana +Andrea +Allison +Sierra +Anna +Julia +Mary +Shannon +Erin +Heather +Kristen +Kelly +Alexandria +Laura +Lindsey +Katelyn +Marissa +Caitlin +Mariah +Erica +Caroline +Crystal +Breanna +Katie +Melanie +Alexa +Jenna +Gabriella +Monica +Amy +Angelica +Jacqueline +Miranda +Gabriela +Kathryn +Paige +Angela +Cassandra +Jamie +Mackenzie +Casey +Catherine +Veronica +Alicia +Kaitlin +Bianca +Emma +Karina +Cassidy +Summer +Isabella +Dominique +Hailey +Tatiana +Brittney +Cynthia +Bailey +Kaylee +Erika +Jade +Brandi +Adriana +Lindsay +Caitlyn +Chloe +Kristina +Holly +Natasha +Sophia +Diana +Autumn +Grace +Kristin +Madeline +Meghan +Leah +Rachael +Angel +Ana +Carolina +Ariel +Julie +Michaela +Desiree +Rebekah +Carly +Hayley +Kiana +Deja +Zoe +Faith +Patricia +Ciara +Daniela +Selena +Ariana +Natalia +Christine +Kathleen +Kendall +Bethany +Diamond +Marisa +Alexus +Tabitha +Cierra +Claudia +Cristina +Tara +Valerie +Lisa +Whitney +Kiara +Kylie +Molly +Kassandra +Leslie +Genesis +Karen +Mia +April +Alexia +Meagan +Cindy +Dana +Deanna +Krystal +Maya +Monique +Nina +Gina +Brenda +Delaney +Arianna +Ashlee +Daniella +Jocelyn +Kirsten +Brandy +Alana +Asia +Hope +Mikayla +Savanna +Jada +Kaley +Margaret +Alejandra +Jasmin +Tori +Shania +Ashlyn +Kara +Lydia +Kasey +Ashleigh +Francesca +Katrina +Mallory +Makayla +Adrianna +Alison +Krista +Allyson +Alondra +Sandra +Chelsey +Kendra +Tiara +Carolyn +Naomi +Yesenia +Destinee +Imani +Jazmine +Mckenzie +Priscilla +Aubrey +Isabel +Dakota +Tamara +Tyra +Jillian +Lacey +Raquel +Teresa +Tia +Alisha +Ebony +Karla +Kierra +Nancy +Sharon +Aaliyah +Cheyanne +Jazmin +Jessie +Audrey +Marina +Mercedes +Nathalie +Raven +Tatyana +Toni +Claire +Denise +Hanna +Elena +Kali +Virginia +Amelia +Celeste +Shayla +Sofia +Abby +Tiana +Angelina +Peyton +Daisy +Logan +Nikki +Barbara +Jacquelyn +Linda +Pamela +Sasha +Evelyn +Lily +Tiffani +Camille +Katelynn +Lillian +Marisol +Paola +Thalia +Ashton +Bryanna +Kaitlynn +Kelsie +Kyra +Nadia +Precious +Ruth +Serena +Aliyah +Anastasia +Cara +Jordyn +Payton +Arielle +Bridget +Jenny +Moesha +Carrie +Harley +Kaila +Kailey +Katlyn +Kyla +Renee +Riley +Shanice +Skylar +Yasmine +Carla +Carmen +Joanna +Nia +Tamia +Tessa +Valeria +Angelique +Gloria +Juliana +Kaleigh +Kenya +Kiersten +Liliana +Tyler +Aimee +Britney +Cecilia +Devin +Jaclyn +Janelle +Kate +Kira +Melody +Simone +Talia +Tierra +Meredith +Robyn +Theresa +Brenna +Carissa +Emilee +Felicia +Giselle +Justice +Martha +Aisha +Callie +Candace +Dallas +Jaime +Joy +Justine +Kristi +Marie +Robin +Rose +Tianna +Annie +Camila +Carina +Elise +Heidi +Isabelle +Johanna +Josie +Julianna +Kayleigh +Kristy +Lorena +Mikaela +Paula +Rachelle +Rosa +Sadie +Vivian +Alina +Anne +Ashanti +Charlotte +Ericka +Gianna +Haylee +Juliette +Kelli +Kristine +Shyanne +Sidney +Valentina +Catalina +Deborah +Elisabeth +Eva +Haleigh +India +Kari +Ruby +Shaina +Tina +Alissa +Bria +Brianne +Christy +Ciera +Clarissa +Colleen +Helen +Kennedy +Kylee +Leanna +Sonia +Stephany +Baylee +Cayla +Christian +Ellen +Esther +Hunter +Katarina +Lexus +Mariana +Marilyn +Nicolette +Shayna +Stacy +Tania +Taryn +Tayler +Tracy +Carley +Charity +Christa +Demi +Irene +Ivy +Jayla +Kellie +Madeleine +Maggie +Skye +Skyler +Stacey +Yolanda +Breana +Candice +Coral +Daisha +Eden +Kourtney +Regina +Shakira +Tanisha +Darby +Devon +Guadalupe +Jane +Josephine +Lea +Nichole +Sophie +Cassie +Celina +Chantel +Halle +Infant +Janae +Janet +Loren +Melinda +Shana +Wendy +Alyson +Angie +Antonia +Chanel +Charlene +Clara +Destini +Elisa +Frances +Hailee +Jalisa +Joselyn +Kelsi +Makenzie +Margarita +Moriah +Viviana +Zaria +Alessandra +Antoinette +Brittani +Daphne +Elaine +Emely +Emilie +Judith +Karissa +Katlin +Kiera +Macy +Maribel +Meaghan +Micaela +Miracle +Noelle +Regan +Tatianna +Tristan +Zoey +Chandler +Darian +Kasandra +Kassidy +Kathy +Kaylie +Lissette +Miriam +Rebeca +Rochelle +Selina +Stefanie +Susan +Valencia +Yasmin +Alaina +Avery +Ayana +Cameron +Christie +Deandra +Hallie +Jamesha +Kaylin +Lucia +Mckenna +Princess +Sade +Adrienne +Alice +Anita +Ann +Antonella +Ashli +Ashly +Beatriz +Desirae +Devyn +Estefania +Gillian +Katerina +Madelyn +Scarlett +Shantel +Sheila +Shelbi +Yasmeen +Alisa +Brooklyn +Carli +Carlie +Chasity +Christen +Diane +Julianne +Lacy +Larissa +Michele +Norma +Paulina +Shauna +Shirley +Sylvia +Tess +Alanna +Alayna +Aleah +Alysha +Amani +Ashlynn +Brieanna +Casandra +Chantal +Christiana +Cristal +Daijah +Donna +Eleanor +Ella +Esmeralda +Essence +Fabiola +Iesha +Janessa +Jayme +Julissa +Kaela +Kaylyn +Kelley +Keondra +Lucy +Lyric +Mayra +Paris +Quanisha +Sandy +Shyann +Sonya +Suzanne +Tanya +Abbey +Alysa +Amari +Bobbie +Bonnie +Bridgette +Brielle +Brionna +Brook +Eliza +Helena +Ivana +Jacklyn +Joyce +Kacie +Kailee +Katharine +Keri +Lauryn +Lena +Lidia +Lizbeth +Maranda +Nadine +Sarai +Susana +Terri +Anais +Annette +Breanne +Carol +Chelsie +Chyanne +Cortney +Cydney +Dasia +Demetria +Genevieve +Georgia +Gwendolyn +Jaqueline +Joann +Joanne +Kala +Kalyn +Karli +Karly +Kianna +Laurel +Lexis +Liana +Lyndsey +Mandy +Melany +Noemi +Roxanne +Savanah +Shaniya +Shawna +Shea +Shelly +Trinity +Tristen +Aileen +Alyssia +Anabel +Araceli +Ashely +Athena +Ava +Beverly +Blair +Brea +Breeanna +Bryana +Chyenne +Corina +Damaris +Eileen +Emerald +Gisselle +Halie +Jailene +Jeanette +Jeanna +Jena +Jennie +Juliet +Kaelyn +Kayley +Kayli +Keely +Kelsea +Krystina +Lexi +Lexie +Macie +Marcela +Marlene +Melisa +Nora +Reagan +Shanna +Shianne +Alecia +Alexandrea +Allyssa +Anissa +Annamarie +Annemarie +Ashlie +Austin +Ayanna +Caylee +Caylin +Celine +Chase +Chynna +Constance +Daija +Dania +Dawn +Dejah +Dorothy +Eboni +Elexis +Fiona +Franchesca +Giovanna +Hali +Heaven +Ingrid +Jaimie +Janice +Janie +Jasmyne +Jazmyn +Jazmyne +Jenifer +Jessenia +Jill +Jodi +Joslyn +Kalie +Karlee +Karlie +Katlynn +Kaylan +Kendal +Kerri +Keyana +Khadijah +Kirstin +Layla +Leandra +Lesley +Lynn +Maddison +Magdalena +Mireya +Mollie +Nataly +Racheal +Roxana +Shelbie +Stacie +Sydni +Tamera +Tiarra +Unique +Yessenia +Aja +Alanis +Alena +Ali +Alia +Allie +Alliyah +Alycia +Anika +Armani +Aurora +Ayla +Bailee +Beatrice +Blanca +Brandie +Breonna +Carson +Celena +Cheryl +Chyna +Daja +Deana +Dianna +Elyse +Eryn +Graciela +Isis +Janine +Jasmyn +Jesenia +Juanita +Katia +Kiley +Kristian +Latoya +Maegan +Markia +Mckayla +Micah +Mindy +Myranda +Natalya +Noel +Reba +Rebecka +Rosemary +Sage +Sally +Silvia +Stevie +Tabatha +Tammy +Xena +Zena +Alisia +Alma +Alysia +Amaris +Asha +Aubree +Breona +Camilla +Carlee +Cecelia +Cheyanna +China +Chrystal +Cinthia +Danisha +Darlene +Denisha +Dulce +Edith +Eliana +Elsa +Eunice +Francis +Jackie +Janay +Jazlyn +Jensen +Jessi +Juana +Kailyn +Katelin +Kaycee +Kaylen +Keisha +Kia +Kimberlee +Latisha +Leeann +Lisette +Lizette +Lourdes +Macey +Malika +Marianna +Maricela +Mariela +Maritza +Marjorie +Marlena +Maxine +Monet +Monika +Nathaly +Nikole +Patrice +Phoebe +Rhiannon +Richelle +Ryan +Shiloh +Shyla +Tatyanna +Trisha +Tyesha +Xiomara +Yvonne +Amara +Anisa +Annmarie +Aria +Belinda +Betty +Blake +Britany +Brittni +Brooklynn +Cathleen +Cathryn +Ciarra +Courtnie +Dalia +Daphney +Deidra +Destiney +Dina +Dominque +Domonique +Elissa +Estefany +Estrella +Farrah +Francheska +Gracie +Harlee +Ileana +Isabela +Ivette +Jana +Jaycie +Jessika +Jocelyne +Justina +Kacy +Karley +Katheryn +Kaylah +Kaytlyn +Kerry +Leanne +Leigh +Leila +Lesly +Luz +Madalyn +Manuela +Marley +Maureen +Melina +Misty +Montana +Octavia +Odalys +Perla +Priya +Rikki +Rita +Rocio +Sarina +Shameka +Shantell +Siera +Sky +Tamika +Tasha +Tiera +Tonya +Tricia +Yvette +Abbigail +Alesha +Alexys +Alize +Amalia +Amie +Anisha +Ariella +Arlene +Ashante +Beth +Brittanie +Brittny +Carleigh +Catrina +Celia +Christal +Christin +Clare +Connie +Cora +Cori +Courteney +Daysha +Destany +Dylan +Elaina +Elexus +Fatima +Ginger +Hayden +Hilda +Hillary +Idalis +Iman +Ivanna +Jamila +Janel +Jazzmin +Jesica +Kaci +Kathrine +Katy +Kaylynn +Kaytlin +Keana +Kenyatta +Kristie +Kristyn +Krysten +Lakesha +Lara +Lilia +Lilly +Lina +Liz +Loretta +Lori +Lucero +Luisa +Malia +Mara +Marcia +Marianne +Marsha +Mikala +Mya +Nakia +Nyla +Odalis +Randi +Reina +Salina +Savana +Serina +Shae +Shanteria +Sonja +Suzette +Sydnee +Symone +Tegan +Terra +Traci +Abbie +Abrianna +Addison +Adrian +Akasha +Aleena +Aliah +Aliya +Andria +Angeline +Ashlei +Aspen +Astrid +Baby +Bernadette +Bianka +Bridgett +Brigitte +Cali +Camisha +Charis +Chaya +Cherokee +Connor +Dajah +Danika +Danyelle +Deasia +Denisse +Derricka +Drew +Dynasty +Elana +Elisha +Esperanza +Farah +Fernanda +Giana +Gretchen +Halee +Hana +Harlie +Holli +Iris +Jackeline +Janna +Jayde +Jaylin +Jenae +Joan +Joana +Joelle +Johana +Joseline +Judy +Katiana +Keeley +Kennedi +Keyona +Kristal +Krysta +Lacie +Latasha +Latrice +Laurie +Leann +Leilani +Lila +Luna +Lynsey +Maci +Madisen +Madyson +Maia +Maiya +Mariel +Marlee +Marlen +Martina +Maryann +Meranda +Michael +Milagros +Myesha +Nandi +Nikia +Paloma +Passion +Patience +Rayna +Rene +Rylee +Sahar +Samara +Samone +Shakayla +Shakera +Shaniah +Shanika +Sharmaine +Sheridan +Sherry +Siobhan +Sommer +Stefani +Suzanna +Takara +Tashara +Tatum +Therese +Tiffanie +Tracey +Veronika +Vianca +Yamilex +Yazmin +Yessica +Zoie +Adeline +Akia +Akira +Alex +Alivia +Alyse +Amira +Anamaria +Angelika +Annabelle +Annelise +Ansley +Aracely +Ashtyn +Bayleigh +Breyana +Brittnee +Brittnie +Caitlynn +Caleigh +Catarina +Caterina +Chastity +Chelsi +Chelsy +Christi +Cody +Corey +Corinne +Dahlia +Danesha +Daniele +Danna +Davina +Devan +Dora +Edna +Emani +Fallon +Geneva +Geraldine +Gianni +Gladys +Haven +Heidy +Jacey +Jacquline +Jalissa +Jayda +Jazzmine +Jean +Jeanne +Jennyfer +Jerica +Jesse +Jewel +Jodie +Johnisha +Jorden +Josefina +Joshua +Kalee +Karinna +Kassie +Kenisha +Kenzie +Keosha +Keren +Keyonna +Kimberley +Kori +Kylah +Kyndall +Lakeisha +Lana +Laquisha +Latavia +Lindy +Liza +Lyndsay +Magen +Mari +Marta +Miah +Miesha +Mika +Myah +Nathalia +Nehemie +Nereida +Nichelle +Nicolle +Olga +Oriana +Pauline +Racquel +Ricki +Rolanda +Roselyn +Samira +Serenity +Shaelyn +Shani +Shay +Shaye +Shekinah +Sheyenne +Shiann +Shoshana +Shyan +Sienna +Stormy +Sydnie +Tabetha +Teagan +Trista +Tyeisha +Aida +Aleesha +Alexander +Aliza +Allegra +Allissa +Amaya +Annabel +Annalee +Annalisa +Annalise +Anthony +Antonisha +Arden +Arianne +Ashlan +Audra +Aya +Ayah +Azaria +Bella +Bobbi +Breann +Bree +Brett +Briahna +Briann +Briauna +Brigette +Chantelle +Charmaine +Corinna +Corrine +Danica +Dara +Darcy +Darrian +David +Dayna +Debbie +Deidre +Delanie +Delia +Deondra +Desire +Diamonique +Eleni +Ellie +Ember +Emilia +Emmalee +Eugenia +Felisha +Flor +Florence +Francine +Georgina +Greta +Hadley +Harmony +Hilary +Ilana +Irma +Jacinda +Jailyn +Jaimee +Jakayla +Jamecia +Jameka +Jami +Jamia +Jaylene +Jayna +Jeanine +Jeannie +Jeniffer +Jessalyn +Jody +Johnesha +Johnna +Jonathan +Kacey +Kaelin +Kallie +Kanesha +Keaira +Keanna +Keila +Keirsten +Kelci +Kenna +Keturah +Kiandra +Kimber +Kinsey +Kristiana +Krizia +Kya +Kyanna +Kyleigh +Ladeja +Laila +Latonya +Leondra +Leticia +Lia +Lilian +Linsey +Lizabeth +Lora +Lorin +Louise +Lynette +Macayla +Madelaine +Makaela +Makala +Malorie +Malory +Mandi +Margo +Mariam +Marielle +Marisela +Marla +Maura +Maylin +Mercedez +Micayla +Micheala +Mina +Mykala +Nadja +Nastasia +Nikita +Nya +Penelope +Phoenix +Pilar +Porsha +Raisa +Raychel +Reanna +Rianna +Ronisha +Rosanna +Rosemarie +Ryann +Rylie +Salena +Santana +Sariah +Shakia +Shalonda +Shanell +Shanelle +Shaniqua +Shari +Shyanna +Sirena +Skyla +Somer +Star +Taelor +Takia +Taliah +Tichina +Timara +Torie +Treasure +Tyana +Tykeria +Tykia +Tyla +Valarie +Vanesa +William +Xenia +Xochitl +Yadira +Yanelis +Yaritza +Zahra +Zara +Zuri +Abigale +Ada +Adele +Adrianne +Aide +Aiesha +Aislinn +Alandra +Aleisha +Alexi +Alexsandra +Alexxis +Allana +Alora +Amairani +Ambar +Amberlyn +Amirah +Ania +Anjelica +Annastasia +Anya +Araseli +Ariane +Arleen +Aryn +Ashlin +Ashlyne +Aubrie +Audriana +Audrianna +Aundrea +Austyn +Autum +Ayesha +Ayleen +Babygirl +Bailie +Brie +Britni +Briyana +Bryce +Bryn +Cailey +Cailin +Carline +Carrington +Chabeli +Chanelle +Chante +Charlie +Cinnamon +Codi +Constanza +Cristine +Crysta +Curtisha +Danae +Dasha +Dashia +Dayana +Deanne +Debra +Dedra +Deonna +Desha +Destani +Devorah +Dezirae +Diandra +Dianne +Dinah +Domenica +Emery +Emmanuella +Estella +Fiorella +Francisca +Gabriele +Gail +Giuliana +Halley +Hanah +Harleigh +Hattie +Hazel +Honesty +Hosanna +Hydeia +Iyanna +Izabella +Jackelyn +Jacquelin +Jakeria +Jakia +Jalyssa +Jameisha +Jameshia +Jamesia +Janai +Janette +Jannelle +Jasmina +Jayleen +Jaymee +Jenica +Jenni +Jerika +Jerrica +Jessa +Jesslyn +Jo +Jonisha +Jordin +Joselin +Juliann +Kacee +Kady +Kaitlan +Kalli +Kambria +Kandace +Kandice +Kanisha +Karleigh +Kayle +Kayleen +Keara +Kelcie +Keshawna +Khalia +Khayla +Kiani +Kiarah +Kiarra +Kierstin +Kim +Klarissa +Kortney +Krystin +Krystle +Kyara +Labria +Laci +Laken +Lane +Laquita +Lashawn +Leana +Lee +Lilyan +Lindsy +Linette +Lovely +Makaila +Marcella +Maren +Marian +Mariella +Marion +Maryah +Mason +Mattie +Mellissa +Mercy +Michaella +Mikela +Mira +Misha +Mona +Myra +Nala +Natassia +Natia +Neha +Nicollette +Nidia +Niesha +Nijah +Niya +Noor +Nyesha +Parker +Penny +Phylicia +Quiana +Quinn +Raegan +Raina +Ramona +Ranesha +Ravin +Rayne +Rebeka +Regine +Reyna +Rhianna +Rosalee +Rosalia +Rosalie +Rosario +Rosie +Rowan +Sabina +Sabra +Sapphire +Sequoia +Shantavia +Shantelle +Shantoria +Shara +Shaylin +Shelley +Sloane +Soraya +Spencer +Stefany +Sterling +Stormie +Sumer +Tamesha +Tami +Tanika +Tanner +Tarah +Tasia +Teressa +Terry +Tiandra +Tierney +Tiesha +Tiona +Tonisha +Trina +Tristin +Vania +Vicky +Willow +Yamilet +Yanira +Yanitza +Yesica +Yuri +Zahria +Zaida +Zakiya +Zana +Zaynah +Zharia +Zoraida +Ashley +Jessica +Emily +Samantha +Taylor +Sarah +Alexis +Hannah +Kayla +Amanda +Victoria +Brittany +Brianna +Nicole +Megan +Lauren +Alyssa +Elizabeth +Rachel +Madison +Stephanie +Jennifer +Jasmine +Amber +Alexandra +Danielle +Morgan +Courtney +Rebecca +Savannah +Brooke +Katherine +Haley +Shelby +Sabrina +Sydney +Olivia +Kaitlyn +Tiffany +Natalie +Destiny +Melissa +Jordan +Christina +Sara +Vanessa +Michelle +Julia +Gabrielle +Cheyenne +Abigail +Chelsea +Kimberly +Maria +Sierra +Briana +Andrea +Allison +Kelsey +Anna +Mary +Laura +Erin +Gabriella +Alexandria +Kristen +Emma +Marissa +Monica +Sophia +Lindsey +Gabriela +Erica +Katelyn +Alexa +Bailey +Heather +Shannon +Jenna +Isabella +Jamie +Kelly +Miranda +Angelica +Catherine +Angela +Adriana +Caroline +Breanna +Summer +Dominique +Caitlin +Kaylee +Alicia +Jade +Melanie +Mariah +Paige +Amy +Grace +Crystal +Kathryn +Jacqueline +Diana +Mackenzie +Hailey +Katie +Chloe +Cassidy +Autumn +Bianca +Madeline +Cassandra +Casey +Brittney +Caitlyn +Kaitlin +Karina +Ariel +Leah +Meghan +Michaela +Veronica +Aaliyah +Ariana +Erika +Faith +Mia +Tatiana +Valerie +Jada +Sofia +Kristina +Ciara +Kylie +Zoe +Cierra +Cynthia +Lindsay +Ana +Hayley +Mikayla +Makayla +Carly +Desiree +Bethany +Rebekah +Daniela +Adrianna +Rachael +Angel +Patricia +Raven +Claudia +Selena +Tara +Genesis +Carolina +Christine +Julie +Margaret +Natasha +Daniella +Jocelyn +Leslie +Molly +Diamond +Kiana +Maya +Kassandra +Kiara +Krystal +Arianna +Ashlee +Brandi +Kendall +Alexus +Kara +Lisa +Cristina +Natalia +Savanna +Deanna +Isabel +Nina +Kaley +Kirsten +Meagan +Gina +Hope +Kristin +Asia +Deja +Jasmin +Dana +Holly +Kyla +Mallory +Amelia +Kathleen +Naomi +Jillian +Kyra +Lillian +Delaney +Karen +Whitney +Katlyn +Alexia +Brenda +Riley +Tabitha +Tyra +Marisa +Dakota +Hanna +Alison +Aubrey +Claire +Joanna +Alana +Cheyanne +Daisy +Julissa +Kasey +Audrey +Juliana +Katrina +Mercedes +Nadia +Alondra +April +Tori +Chelsey +Pamela +Payton +Tamara +Aliyah +Angelina +Barbara +Jessie +Kendra +Sandra +Ashlyn +Karla +Lacey +Lydia +Nancy +Peyton +Alejandra +Alisha +Alissa +Camille +Linda +Mckenzie +Cindy +Francesca +Jordyn +Imani +Krista +Logan +Marina +Sasha +Anastasia +Jazmin +Kennedy +Lily +Raquel +Yesenia +Allyson +Isabelle +Julianna +Brandy +Bryanna +Carmen +Celeste +Jazmine +Marie +Tatyana +Tiara +Ashleigh +Destinee +Jacquelyn +Kailey +Shayla +Carolyn +Carrie +Monique +Serena +Tia +Arielle +Elisabeth +Madeleine +Nathalie +Priscilla +Evelyn +Kierra +Mikaela +Sidney +Giselle +Katelynn +Paola +Cara +Carla +Kira +Anne +Deborah +Elena +Gianna +Skylar +Toni +Camila +Jenny +Talia +Theresa +Tyler +Cameron +Nichole +Tiana +Virginia +Yasmin +Bridget +Madelyn +Reagan +Simone +Teresa +Vivian +Baylee +Ciera +Clarissa +Janelle +Juliette +Valeria +Abby +Aimee +Denise +Ebony +Justine +Kali +Kayleigh +Makenzie +Mariana +Noelle +Precious +Chanel +Emilee +Johanna +Kaila +Melody +Tamia +Tierra +Yulissa +Avery +Ayanna +Callie +Gloria +Haylee +Helen +Jaclyn +Kassidy +Nia +Ruth +Shania +Tessa +Breana +Kaitlynn +Marilyn +Martha +Melinda +Renee +Rose +Skyler +Tayler +Thalia +Valentina +Colleen +Janae +Kylee +Lexus +Maribel +Paula +Ruby +Sadie +Sharon +Yasmine +Zaria +Ann +Hunter +Kaleigh +Lorena +Maggie +Sophie +Christian +Esmeralda +Esther +Katarina +Kaylin +Kelsie +Marisol +Mckenna +Ashton +Britney +Christy +Emilie +Felicia +Ivy +Kelli +Meredith +Skye +Stacey +Susan +Antonia +Charlotte +Eva +Gillian +Gisselle +Heidi +Josie +Juliet +Justice +Kiersten +Liliana +Montana +Tracy +Carissa +Carley +Celina +Celine +Christa +Elisa +Elise +Harley +Josephine +Judith +Kate +Alina +Angelique +Annette +Cassie +Cayla +Cecilia +Ellen +Emely +Ericka +Jailene +Miriam +Nikki +Rosa +Shayna +Tania +Ashanti +Candace +Destini +Frances +Haleigh +Jaime +Joy +Kaylyn +Kellie +Kianna +Nicolette +Nikita +Paris +Shakira +Sonia +Tiffani +Amari +Carina +Carli +Cristal +Heaven +Janet +Julianne +Keely +Kiera +Kourtney +Kristy +Leanna +Lucia +Luz +Lyric +Maranda +Micaela +Nadine +Nataly +Alaina +Alessandra +Alyson +Brenna +Brooklyn +Charlene +Dasia +Demi +Eden +Jayla +Jazmyn +Kaylie +Kenya +Laurel +Lyndsey +Regina +Robin +Robyn +Selina +Shaina +Shanice +Shirley +Wendy +Allie +Angie +Bria +Chantel +Erykah +Kacie +Kristine +Larissa +Loren +Miracle +Princess +Rachelle +Stacy +Sylvia +Trinity +Annie +Ansley +Beatriz +Blanca +Dallas +Giovanna +Halie +Isis +Kaela +Kari +Lena +Lourdes +Maddison +Mariela +Michele +Moesha +Moriah +Savanah +Shawna +Aileen +Antoinette +Brittani +Candice +Dayana +Essence +Genevieve +Karli +Kendal +Lauryn +Leticia +Liana +Lizbeth +Macy +Sarai +Shyanne +Susana +Tanisha +Taryn +Alice +Alysa +Ashlynn +Bailee +Brianne +Bridgette +Chasity +Christen +Christie +Cortney +Devin +Jane +Janessa +Jazlyn +Jazmyne +Juanita +Kailyn +Karissa +Kayli +Rochelle +Shianne +Addison +Anais +Chandler +Estefania +Jakayla +Kacey +Katlin +Lilly +Mara +Paulina +Shana +Stephany +Tina +Anika +Anita +Chase +Clara +Darby +Darian +Dorothy +Georgia +India +Irene +Ivana +Jessenia +Kaelyn +Kaycee +Kaylynn +Keri +Lissette +Maegan +Maritza +Mireya +Rylee +Sage +Sheila +Starr +Tamera +Tanya +Yasmeen +Zoey +Abbey +Adrienne +Aisha +Aleah +Carlie +Casandra +Deana +Donna +Eileen +Eleanor +Fabiola +Jesenia +Kailee +Kathy +Kelsi +Kristi +Lea +Leann +Mandy +Mayra +Phoebe +Regan +Reyna +Shauna +Shea +Stefanie +Tammy +Tatianna +Tianna +Trisha +Viviana +Yadira +Yessenia +Yolanda +Ali +Allyssa +Ashly +Aurora +Chelsie +Daija +Daisha +Hallie +Ileana +Jena +Katelin +Kiley +Kristal +Lacy +Lori +Shyann +Alisa +Alize +Alysia +Alyssia +Ashli +Ayana +Beverly +Bryana +Cecelia +Charity +Chyna +Daphne +Dawn +Halle +Jasmyne +Jesse +Jill +Joann +Juana +Kasandra +Katerina +Katia +Kirstin +Margarita +Maxine +Mollie +Norma +Reilly +Sandy +Tasha +Unique +Xena +Yvette +Alanna +Alayna +Alma +Alysha +Anissa +Astrid +Breanne +Brook +Carlee +Coral +Daja +Dayna +Destiney +Devon +Dina +Eboni +Eliza +Ella +Eryn +Fiona +Guadalupe +Gwendolyn +Helena +Iris +Janice +Jeanette +Kalie +Kalyn +Kaylan +Kenia +Kerri +Krysten +Leanne +Lesley +Madalyn +Marcella +Marian +Mckayla +Meaghan +Niya +Noel +Rebeca +Rosemary +Shantel +Sommer +Tabatha +Tess +Alanis +Alena +Alesha +Alia +Alliyah +Amaris +Athena +Beth +Betsy +Bonnie +Brandie +Brielle +Caitlynn +Camilla +Carol +Carson +Catalina +Christiana +Corina +Deandra +Diane +Elaina +Elissa +Fallon +Haylie +Jaida +Joanne +Joyce +Julisa +Katharine +Katy +Keila +Kelsea +Kerry +Keyla +Leilani +Lexi +Lilian +Lucy +Maia +Makala +Marlena +Marlene +Melina +Nora +Patrice +Raegan +Ryan +Sade +Sarina +Shelbi +Shelbie +Shyla +Stevie +Suzanne +Sydni +Sydnie +Tatum +Valencia +Alecia +Alexandrea +Alycia +Angeline +Annamarie +Ayla +Brittanie +China +Connor +Constance +Cori +Daysha +Devyn +Edith +Elexis +Emani +Farrah +Hana +Isabela +Jacklyn +Jamesha +Jayda +Katheryn +Kayley +Kelley +Kelsy +Kori +Lesly +Lisette +Makenna +Marianne +Marley +Melany +Monika +Myra +Myranda +Nautica +Nicolle +Ryann +Sienna +Taya +Tracey +Tristan +Yazmin +Yulisa +Aja +Amani +Anjelica +Arianne +Asha +Ashlie +Breonna +Brooklynn +Chantal +Damaris +Daria +Debra +Delanie +Delia +Desirae +Domonique +Ellie +Estrella +Hali +Iesha +Iliana +Jamia +Janay +Janie +Janine +Jensen +Jerrica +Jessika +Jewel +Jodi +Joselyn +Kalee +Karlie +Karly +Keyana +Kia +Kimberley +Lacie +Lara +Lexis +Lia +Madisyn +Madyson +Nakia +Olga +Rayna +Rhiannon +Savana +Shanteria +Shay +Shelley +Star +Symone +Tristen +Tyana +Yahaira +Zakiya +Abigale +Ada +Amie +Amira +Anabel +Annabelle +Aspen +Audra +Belinda +Betty +Bobbie +Brandon +Briauna +Camryn +Celia +Chante +Christal +Clare +Cora +Dahlia +Danae +Dianna +Dulce +Elyssa +Emerald +Franchesca +Gabriel +Graciela +Hailee +Hillary +Janna +Jasmyn +Jaylene +Jeanne +Jocelyne +Joelle +Johana +Justina +Kallie +Karlee +Karley +Katiana +Keana +Keyonna +Kortney +Krysta +Laila +Lakeisha +Lakia +Latisha +Latoya +Laurie +Lilliana +Malika +Mari +Marianna +Marjorie +Marsha +Martina +Micah +Micayla +Michael +Michayla +Mya +Myesha +Mykala +Octavia +Racheal +Rhianna +Saige +Sally +Scarlett +Sonya +Susanna +Tarah +Teagan +Tonya +Yanelis +Yaritza +Zoie +Abigayle +Adrian +Aida +Aislinn +Allana +Ally +Anahi +Annmarie +Ariella +Ashely +Baby +Berenice +Breann +Britany +Cathryn +Cheyann +Christin +Ciarra +Corinne +Corrine +Cydney +Dajah +Dania +Dara +Darcy +Darlene +Debbie +Demetria +Destany +Devan +Elyse +Emilia +Esperanza +Fatima +Gianni +Gretchen +Ingrid +Jackie +Jaliyah +Janel +Jayme +Jenifer +Jolene +Kady +Kaelin +Kaliyah +Katlynn +Kaylah +Kayleen +Kaytlyn +Keanna +Keisha +Kendia +Kenzie +Kierstin +Kyndall +Leeann +Leila +Magdalena +Markeisha +Markia +Mattie +Mikala +Milagros +Natalee +Nikole +Paloma +Pauline +Phoenix +Porsha +Priya +Raina +Rebeka +Reina +Roxana +Shae +Shanna +Shardae +Siera +Sky +Taelor +Tanesha +Tatyanna +Taylar +Tiffanie +Traci +Tyanna +Tyesha +Tykeria +Vanesa +Yvonne +Abagail +Alexsis +Alexys +Alexzandria +Aliah +Allysa +Amara +Amethyst +Andreina +Annabel +Arlene +Ashtyn +Aurelia +Aysia +Beatrice +Becky +Blake +Brieanna +Brigitte +Cailyn +Cali +Carleigh +Chelsi +Chyanne +Chyenne +Cinthia +Connie +Daijah +Dalia +Danisha +Darien +Deasia +Deidre +Drew +Elaine +Elisha +Emmalee +Farah +Glenda +Hazel +Ilana +Iman +Ivanna +Ivey +Jakia +Jami +Jana +Janette +Jaqueline +Jean +Jesica +Jodie +Johnna +Kaci +Kathrine +Kayle +Keandra +Keara +Kimberlee +Kyleigh +Leigh +Lillie +Lizette +Madelin +Magali +Manuela +Marla +Melisa +Milan +Mindy +Misty +Nathalia +Nathaly +Nyla +Peggy +Piper +Quanisha +Randi +Rebecka +Rhea +Rickia +Rosalie +Rosalyn +Rowan +Samara +Shaniqua +Shantavia +Silvia +Soraya +Stefani +Taliyah +Tatiyana +Tea +Terra +Tiera +Tiyana +Tyla +Abbie +Abbigail +Alex +Alexander +Alexi +Alisia +Aliya +Ambar +Amberly +Anabelle +Aniyah +Annika +Anya +Armani +Austin +Autum +Ava +Baylie +Billie +Blaire +Breeanna +Bridgett +Brittni +Brynn +Caleigh +Chelsy +Cheryl +Colette +Corey +Deondra +Destinie +Dora +Doris +Dymond +Elexus +Eliana +Elsa +Emoni +Estefani +Evangeline +Fabiana +Francis +Geneva +Giana +Ginger +Gladys +Hilary +Imari +Jacey +Jaden +Jailyn +Jalyn +Jamecia +Jameshia +Janai +Janell +Jayde +Jeanine +Jeannie +Jeniffer +Jessi +Joan +Joana +Jordin +Kala +Kalei +Karah +Karolina +Kaytlin +Keeley +Kenna +Kennisha +Keyanna +Keyona +Khadijah +Kristie +Kristyn +Laney +Layne +Leia +Leigha +Leondra +Loretta +Lynn +Madisen +Marcela +Melodie +Michala +Mikaila +Milena +Miriah +Mykayla +Nala +Natali +Nelly +Niki +Nikia +Nyasia +Oriana +Patience +Pilar +Priscila +Rayven +Reanna +Reese +Regine +Rianna +Rocio +Rosemarie +Salma +Samaria +Santana +Serina +Shanelle +Shanise +Shari +Shatoria +Sheena +Shelly +Shiloh +Siobhan +Sophonie +Sydnee +Taja +Tamika +Tasia +Tichina +Tytiana +Yakira +Yanira +Zara +Adilene +Ailyn +Akira +Alanah +Alesia +Alexcia +Alexius +Alexsandra +Alora +Alyse +Alyx +Amalia +Ambria +Ami +Amina +Analise +Angelena +Angelika +Anneliese +Araceli +Aryn +Ashlin +Aubree +Aundrea +Azia +Bayley +Bayli +Belle +Bernadette +Bethanie +Bianka +Brandee +Breauna +Breona +Brionna +Britni +Bryce +Cailey +Calyn +Candelaria +Cassia +Caylee +Caylin +Celena +Christi +Chrystal +Cidney +Crista +Danica +Daniele +Danna +Davida +Deandrea +Dena +Denisha +Denisse +Dericka +Destanie +Dixie +Dominque +Elana +Elsie +Elysia +Estefany +Fernanda +Geena +Geraldine +Grecia +Hadley +Haily +Halley +Harmony +Haven +Irma +Itzel +Jacalyn +Jackeline +Jackelyn +Jaelyn +James +Jania +Janique +Jaycee +Jayna +Jennah +Jennie +Jolie +Jonelle +Joslyn +Jourdan +June +Kalli +Kameron +Kaya +Kaylea +Kaylen +Keaira +Keira +Kelcey +Keshana +Keturah +Keyondra +Kristian +Lexie +Liberty +Lidia +Lila +Lilia +Lina +Lisset +Liza +London +Lorraine +Lucero +Luna +Macayla +Macey +Macie +Mackenzi +Maiya +Makaela +Malia +Maliyah +Mariam +Mariel +Marion +Markayla +Marlee +Mason +Maura +Mickayla +Mimi +Mina +Mira +Miya +Natalya +Noemi +Odalis +Odalys +Page +Passion +Petra +Quiana +Quinn +Rachell +Racquel +Raeven +Ramona +Ranesha +Raquelle +Ravyn +Rebekkah +Rikki +Rosie +Sabryna +Samira +Sammantha +Sarena +Shakayla +Shakeria +Shalonda +Shamika +Shawn +Sheree +Sheridan +Sherry +Silver +Somer +Stephania +Takia +Tala +Talitha +Tanner +Tayla +Tierney +Tory +Trista +Vania +Vannessa +Vicky +Winter +Xenia +Xiomara +Yessica +Zena +Zhane +Zharia +Abrianna +Adela +Aidan +Ajaysia +Akilah +Alani +Aleigha +Alessia +Alix +Aliza +Alkeria +Allegra +Amarilys +Amberlyn +Anabella +Anai +Anamaria +Ananda +Anastacia +Andie +Andria +Angelic +Ania +Anisa +Annalise +Annelise +Antonella +Aracely +Ariela +Ashia +Asya +Aubrie +Audrianna +Ayesha +Aylin +Aysha +Azaria +Bayleigh +Blair +Brea +Britani +Cailin +Caley +Cambria +Camisha +Caridad +Carlyn +Carmela +Cassaundra +Catera +Cayley +Ceara +Cera +Chana +Chanelle +Chantelle +Charissa +Charlie +Charmaine +Chastity +Chenelle +Chiara +Christelle +Ciana +Cloe +Corrie +Corrin +Cortnie +Cory +Dalila +Damari +Dani +Daniel +Daphney +Darielle +Darrian +Dasha +Deidra +Dejah +Delilah +Denae +Derica +Derricka +Desire +Destynee +Diandra +Dolores +Donisha +Dori +Elicia +Elisheva +Elle +Emylee +Eriana +Eugenia +Evita +Fantasia +Fiorella +Flora +Gabriele +Gisel +Gisela +Gracie +Halee +Harlee +Hayden +Hayli +Idalis +Imelda +Ines +Ivette +Ivonne +Ivory +Iyana +Izabella +Jacie +Jacinda +Jadyn +Jael +Jaileen +Jaimie +Jakeria +Jakira +Jalisa +Jameka +Jamelia +Jamiya +Janee +Jaquasha +Jaslyn +Jasmaine +Jatoria +Jaycie +Jenelle +Jocelynn +Joni +Josefina +Josselyn +Judy +Julienne +Kaeli +Kalia +Kalin +Kamille +Kamryn +Kanisha +Karena +Karis +Karyna +Kasie +Kassie +Kaydee +Kenda +Kendyl +Kenisha +Keona +Keonna +Keren +Keyera +Kezia +Keziah +Kiarra +Kimberleigh +Kinsey +Kristiana +Krystin +Kyana +Kyesha +Kyle +Kymberly +Kyrsten +Laci +Lakayla +Lashay +Latia +Latoria +Layla +Leighann +Lianna +Livia +Lynda +Lynne +Lynsey +Magen +Makaila +Malissa +Mallorie +Marah +Markeria +Marlo +Marquita +Maryam +Maryann +Matilda +Melyssa +Mercy +Michaella +Michela +Millie +Mirella +Mirian +Miyah +Monae +Monet +Myeshia +Natori +Naya +Neena +Neva +Nika +Niyah +Noelia +Nykeria +Ocean +Paulette +Paxton +Payten +Pearl +Penelope +Perla +Portia +Rain +Rana +Rawan +Reem +Rhonda +Richelle +Rita +Rosalinda +Roxanne +Ryleigh +Sabine +Salena +Salwa +Samia +Sean +Serenity +Shai +Shakyra +Shaniece +Shaniya +Shante +Shanterria +Shekinah +Shelbey +Sheyenne +Sheyla +Shivani +Shoshana +Siara +Sierrah +Sinead +Skyla +Skylynn +Sonja +Staci +Starla +Storm +Sunni +Susannah +Suzanna +Suzette +Tahlia +Taleah +Tamar +Tamisha +Taniyah +Tashana +Tashara +Tatayana +Terri +Tiarra +Tonisha +Treasure +Tyresha +Tytianna +Valery +Violet +Violeta +Wanda +Yajaira +Yara +Yenifer +Yennifer +Zariah +Emily +Ashley +Alexis +Samantha +Jessica +Taylor +Sarah +Hannah +Kayla +Madison +Amanda +Victoria +Brianna +Elizabeth +Alyssa +Nicole +Jasmine +Megan +Brittany +Lauren +Rachel +Alexandra +Jennifer +Stephanie +Savannah +Danielle +Destiny +Amber +Kaitlyn +Morgan +Rebecca +Abigail +Courtney +Olivia +Sabrina +Haley +Jordan +Natalie +Brooke +Katherine +Julia +Vanessa +Maria +Sydney +Tiffany +Shelby +Gabrielle +Michelle +Allison +Sierra +Cheyenne +Emma +Sara +Christina +Briana +Andrea +Kimberly +Anna +Melissa +Gabriella +Isabella +Mary +Gabriela +Katelyn +Sophia +Jenna +Kelsey +Alexa +Chelsea +Breanna +Caitlin +Bailey +Mariah +Alexandria +Erin +Kaylee +Madeline +Laura +Hailey +Jada +Mackenzie +Summer +Autumn +Catherine +Angelica +Grace +Marissa +Miranda +Alicia +Heather +Melanie +Kelly +Makayla +Caitlyn +Diana +Caroline +Chloe +Cassandra +Lindsey +Shannon +Cassidy +Monica +Tatiana +Crystal +Faith +Jacqueline +Bianca +Angela +Kristen +Veronica +Amy +Erica +Kathryn +Paige +Jamie +Mikayla +Katie +Ariel +Adriana +Jade +Mia +Ariana +Brittney +Erika +Daniela +Leah +Selena +Kaitlin +Michaela +Zoe +Ana +Kiara +Karina +Angel +Cynthia +Meghan +Maya +Sofia +Bethany +Diamond +Isabel +Christine +Dominique +Alexus +Carly +Carolina +Rebekah +Kylie +Natasha +Cristina +Casey +Ciara +Kiana +Skylar +Alexia +Delaney +Julie +Valerie +Naomi +Jillian +Natalia +Adrianna +Leslie +Esmeralda +Kendall +Lindsay +Tatyana +Aaliyah +Hanna +Molly +Cameron +Desiree +Jasmin +Kristin +Claudia +Kristina +Arianna +Hope +Dana +Daniella +Holly +Meagan +Savanna +Cierra +Ashlyn +Hayley +Jocelyn +Margaret +Patricia +Anastasia +Asia +Brenda +Claire +Raven +Kathleen +Mckenzie +Tara +Alejandra +Lillian +Genesis +Jazmine +Allyson +Riley +Kirsten +Krystal +Priscilla +Alana +Deja +Imani +Rachael +Audrey +Kassandra +Mya +Cindy +Juliana +Karen +Kendra +Kyra +Julianna +Kara +Nina +Peyton +Tiana +Deanna +Jordyn +Nathalie +Alissa +Francesca +Mallory +Daisy +Katlyn +Tabitha +April +Brandy +Lily +Serena +Angelina +Ashlee +Karla +Logan +Lydia +Raquel +Brandi +Gianna +Isabelle +Kasey +Katelynn +Kira +Amelia +Giselle +Kaley +Kyla +Shayla +Jazmin +Katrina +Skyler +Valeria +Lisa +Tyra +Cheyanne +Mercedes +Tamara +Dakota +Tori +Evelyn +Bryanna +Camille +Carmen +Kierra +Sandra +Aliyah +Ashleigh +Julissa +Monique +Tia +Aubrey +Alison +Arielle +Gina +Kennedy +Marisa +Payton +Tamia +Celeste +Hunter +Kaitlynn +Kayleigh +Nadia +Whitney +Kailey +Krista +Precious +Yesenia +Teresa +Toni +Esther +Madelyn +Mariana +Nancy +Paola +Tessa +Yasmin +Deborah +Ebony +Eva +Mikaela +Shania +Tiara +Avery +Britney +Elena +Marisol +Rosa +Tierra +Carla +Heaven +Jacquelyn +Jailene +Kylee +Sadie +Sasha +Zaria +Bridget +Carolyn +Cassie +Devin +Janelle +Joanna +Lacey +Nia +Sophie +Gillian +Harley +Kelli +Marina +Sharon +Camila +Jayla +Linda +Yasmine +Abby +Anne +Destinee +Emilee +Liliana +Sidney +Alina +Cecilia +Destini +Elise +Ivy +Kate +Melody +Paula +Rhiannon +Rose +Virginia +Amari +Angie +Ashlynn +Brooklyn +Charlotte +Helen +Marie +Renee +Ruth +Alisha +Allie +Elisa +Janae +Madeleine +Makenzie +Nichole +Theresa +Callie +Camryn +Jaclyn +Kaleigh +Meredith +Pamela +Ruby +Simone +Vivian +Alaina +Ashton +Ayanna +Breana +Cara +Celine +Gloria +Janet +Jessie +Kassidy +Kenya +Thalia +Alondra +Antonia +Chelsey +Kaylie +Kaylyn +Mckenna +Paris +Robin +Shayna +Stephany +Valentina +Baylee +Haleigh +Haylee +Kiersten +Mayra +Alyson +Ava +Brenna +Jenny +Juliette +Kaila +Kali +Noelle +Skye +Tania +Tianna +Aimee +Alessandra +Barbara +Ciera +Emely +Felicia +Guadalupe +Kelsie +Kianna +Maggie +Marilyn +Reagan +Taryn +Athena +Bria +Elisabeth +Joy +Julianne +Lena +Nikki +Rachelle +Tayler +Cayla +Chanel +Josephine +Justice +Justine +Larissa +Leticia +Savanah +Talia +Alisa +Ayana +Carissa +Carrie +Charity +Clarissa +Denise +Jazmyn +Jewel +Kacey +Kelsi +Lauryn +Lexi +Luz +Micaela +Shyanne +Annie +Baby +Chasity +Coral +Jazlyn +Kiera +Leanna +Lissette +Martha +Montana +Robyn +Shakira +Tyler +Aisha +Ally +Alysia +Beatriz +Carley +Carol +Christy +Eileen +Ellie +Gisselle +Katarina +Leann +Melinda +Regan +Rylee +Tatianna +Wendy +Yasmeen +Aileen +Angelique +Brianne +Brittani +Clara +Ericka +Heidi +Jaime +Janice +Jayda +Josie +Judith +Karissa +Kayley +Kaylin +Lilly +Regina +Shaina +Shanice +Bryana +Candace +Carlie +Carson +Colleen +Donna +Essence +Genevieve +Georgia +India +Janessa +Jena +Kacie +Katelin +Katerina +Kyleigh +Lucia +Meaghan +Miracle +Miriam +Princess +Shawna +Sienna +Tanisha +Tina +Zoey +Abbigail +Ashanti +Brook +Carina +Christa +Cortney +Darian +Dayana +Diane +Jesse +Juliet +Kailyn +Kelsea +Lexie +Lyndsey +Moriah +Nataly +Sarai +Yolanda +Alanna +Alice +Bailee +Catalina +Celina +Christiana +Damaris +Daphne +Demi +Elaine +Eliana +Emilie +Halie +Johanna +Kailee +Kasandra +Lea +Lexus +Macy +Michele +Sage +Sheila +Sonia +Stacey +Susan +Sydnee +Alycia +Anita +Calista +Christian +Cora +Demetria +Destiney +Eden +Frances +Franchesca +Iris +Isabela +Jazmyne +Katia +Kourtney +Kristy +Lesley +Lourdes +Lucy +Madalyn +Maranda +Mariela +Noemi +Sarina +Shirley +Tatum +Trinity +Viviana +Aleah +Amani +Ansley +Brooklynn +Carli +Casandra +Dallas +Dawn +Devon +Erykah +Isis +Ivana +Katlynn +Kellie +Kristi +Lorena +Moesha +Randi +Selina +Tatiyana +Unique +Alexys +Alma +Antoinette +Armani +Aurora +Brionna +Charlene +Chyna +Cristal +Desirae +Elaina +Ella +Ellen +Fatima +Irene +Izabella +Jane +Karlee +Kiley +Lara +Laurel +Leilani +Madisyn +Margarita +Mckayla +Mikala +Nyla +Perla +Reanna +Rebeca +Sade +Shyann +Tammy +Tyanna +Alayna +Alize +Ann +Brielle +Estefania +Hailee +Harmony +Iliana +Ireland +Jaylene +Kaelyn +Kalie +Karli +Karly +Keisha +Lizbeth +Maddison +Madisen +Madyson +Maegan +Maia +Nathaly +Nikita +Paulina +Scarlett +Shaniya +Tiffani +Tracy +Tristan +Yessenia +Addison +Adrienne +Alysa +Beverly +Breanne +Candice +Carlee +Chase +Cori +Daija +Deasia +Elisha +Eliza +Fiona +Giovanna +Gladys +Graciela +Hillary +Ivette +Jaida +Jalisa +Jamesha +Jana +Jessenia +Joyce +Julisa +Keely +Keri +Laurie +Lesly +Liana +Maribel +Micah +Misty +Myah +Nakia +Reilly +Reyna +Sandy +Shelbie +Silvia +Sydnie +Sylvia +Tanya +Abbey +Aja +Alexi +Anais +Annabelle +Blanca +Bobbi +Breeanna +Chantal +Chantel +Daisha +Darby +Dasia +Eleanor +Jaelyn +Jakayla +Jaqueline +Jasmyn +Jeanette +Jesenia +Joanne +Kaela +Kamryn +Karlie +Kayli +Kelsy +Leila +Maxine +Melisa +Myranda +Rhianna +Rochelle +Salma +Stacy +Tatyanna +Alexandrea +Aliya +Alyssia +Amaris +Anahi +Anjelica +Annette +Asha +Astrid +Bonnie +Bridgette +Chelsie +Christin +Constance +Denisha +Dina +Dylan +Eboni +Elissa +Fallon +Halle +Jamila +Joselyn +Juanita +Kaci +Karley +Kathy +Katlin +Kenzie +Kerri +Kerry +Kirstin +Kristine +Kristyn +Layla +Lidia +Loren +Luisa +Luna +Lyndsay +Lyric +Magdalena +Nicolette +Racheal +Ryan +Samira +Shana +Skyla +Starr +Stefanie +Sydni +Tamera +Alivia +Amara +Angeles +Anissa +Antonella +Arlene +Ayla +Breonna +Celia +Christal +Ciarra +Corinne +Danyelle +Deandra +Elyse +Elyssa +Gabriel +Hana +Jailyn +Janai +Janie +Jessika +Joann +Jodi +Joelle +Katharine +Keila +Keira +Kendal +Keyana +Kinsey +Lilian +Lynn +Macey +Madelynn +Makenna +Malia +Mara +Marcella +Maritza +Melina +Micayla +Nicolle +Noelia +Rylie +Serenity +Sherry +Stevie +Tabatha +Tea +Willow +Yvette +Yvonne +Alex +Amira +Anabel +Annabel +Araceli +Aubree +Breann +Cailin +Caitlynn +Catera +Chandler +Chantelle +Chynna +Clare +Daja +Dalia +Danna +Debra +Dejah +Destany +Dorothy +Drew +Elexis +Emerald +Emilia +Eryn +Geneva +Gwendolyn +Helena +Ileana +Jami +Janay +Jasmyne +Jaylin +Jensen +Justina +Keanna +Keyla +Khadijah +Kori +Kortney +Kristal +Myra +Nathalia +Naya +Nayeli +Nikole +Noel +Norma +Octavia +Olga +Parker +Patience +Quinn +Rosemary +Samara +Savana +Shea +Shianne +Sonya +Susana +Symone +Taliyah +Tasia +Tytiana +Valencia +Yadira +Yaritza +Zoie +Ada +Aida +Akira +Alea +Amalia +Anika +Aniya +Annamarie +Anya +Ashly +Aspen +Bella +Blair +Brandie +Brieanna +Cali +Cydney +Daijah +Daria +Dayna +Denisse +Devyn +Elsa +Estefany +Eunice +Felicity +Francheska +Gretchen +Hallie +Hollie +Jaimie +Janel +Janell +Jolie +Kala +Kalli +Kallie +Karena +Kaylan +Kaylea +Kelley +Kenia +Keren +Latavia +Leandra +Leeann +Linsey +Makala +Mariam +Marianna +Marjorie +Markia +Marlene +Milagros +Mireya +Miya +Mollie +Nadine +Phoebe +Priscila +Raegan +Shanna +Shelbi +Shiann +Shyla +Sky +Sommer +Stefani +Stella +Suzanne +Tayla +Tehya +Terra +Tess +Tracey +Trisha +Yazmin +Zariah +Alysha +Angelika +Angeline +Arianne +Ariella +Autum +Blake +Brittni +Brynn +Camilla +Celena +Chelsy +Cherish +Christie +Chyenne +Connie +Dania +Deondra +Destinie +Edith +Emmalee +Esperanza +Fabiola +Francis +Gia +Gissel +Giuliana +Halee +Hali +Haylie +Indira +Jenifer +Katiana +Kaylen +Keara +Kia +Kim +Kristie +Krysten +Krystina +Kyndal +Lexis +Lillie +Liza +Lori +Marlena +Marley +Maureen +Mina +Nora +Raina +Rocio +Roxana +Sariah +Serina +Shae +Shantel +Shantell +Shaye +Sirena +Tonya +Tristen +Winter +Xena +Abigale +Adela +Akia +Alannah +Alena +Alesha +Allyssa +Anamaria +Anaya +Angely +Annelise +Annemarie +Annika +Annmarie +Ashely +Ashli +Ashlie +Beatrice +Betty +Bobbie +Brandee +Brittanie +Cailey +Caleigh +Caylee +Caylin +Chantell +Chastity +Christen +Chrystal +Chyanne +Daniel +Darlene +Deana +Destanie +Doris +Dymond +Farah +Farrah +Geraldine +Grayson +Hadley +Haven +Heidy +Ida +Imari +Irma +Jakeria +Jamia +Jamya +Jayde +Jazzmin +Jean +Jennie +Jewell +Jill +Kalyn +Kameron +Kamila +Kari +Katy +Kaya +Kaycee +Kaylah +Kendyl +Kenisha +Keyanna +Keyona +Kiandra +Kimberley +Kristiana +Leanne +Leigha +Leighann +Lianna +Lilliana +Lisbeth +Lisette +Lorraine +Lynette +Maiya +Manuela +Marcela +Margaux +Maricela +Marquisha +Mason +Melany +Michayla +Mira +Nikia +Penelope +Piper +Rayna +Regine +Rosemarie +Salena +Shantrell +Shay +Siera +Sonja +Soraya +Spencer +Stefany +Tahlia +Tasha +Tyesha +Valery +Vanesa +Yajaira +Yazmine +Yulisa +Yulissa +Abigayle +Adrian +Alani +Aleena +Aleksandra +Alesia +Alexsandra +Alexzandra +Alliyah +Allysa +Andria +Aniyah +Aracely +Aryana +Aryanna +Aubrie +Audra +Ayesha +Bernadette +Bernice +Bethanie +Brea +Breona +Briona +Cache +Cailyn +Cassia +Cathleen +Cecelia +Chanelle +Chassidy +Chaya +Corrina +Dahlia +Danae +Dara +Darla +Daysha +Delanie +Delia +Diamonique +Diandra +Dinah +Estrella +Frankie +Gabriele +Gisell +Gwyneth +Holley +Ilana +Iman +Ingrid +Isha +Ivanna +Jackie +Jacquelin +Jaden +Jaide +Jaileen +Jaliyah +Janiya +Jaquelin +Jayme +Jenesis +Jesica +Joana +Johana +Johnna +Jorden +Jourdan +Kalee +Katera +Kayle +Kaylynn +Kaytlin +Keiana +Kimberlee +Kiyana +Krysta +Lakin +Laney +Latisha +Leondra +Lila +London +Loretta +Macayla +Maci +Madilyn +Mandy +Marisela +Marta +Martina +Milan +Monae +Myesha +Mykayla +Naja +Nastassja +Natalya +Nykeria +Nylah +Odalis +Paloma +Ravyn +Remi +Riana +Ronisha +Rosalie +Saige +Sally +Sana +Sarahi +Shakeria +Shanteria +Shanya +Shauna +Shelly +Siena +Susanna +Takeria +Teagan +Tracie +Yael +Yailin +Yailyn +Yessica +Zahria +Zakiya +Abbie +Abigael +Abriana +Adelina +Alanis +Alecia +Aleisha +Aliana +Aliza +Alli +Ambar +Annalise +Areli +Aria +Ariyon +Asya +Ayleen +Aysha +Bayleigh +Beth +Betsy +Bianka +Billie +Breasia +Breyanna +Brigitte +Britany +Bryce +Cami +Candy +Cari +Cathryn +Catrina +Cheryl +Cheyene +Cianna +Cinthia +Corina +Cristy +Dajah +Darien +Devan +Dharma +Dianna +Dixie +Domonique +Dyanna +Elicia +Emani +Eryka +Estefani +Eve +Giana +Gianni +Gisel +Glenda +Gracie +Halley +Harlee +Hilda +Holland +Imelda +Infinity +Isela +Ivory +Iyana +Jacey +Jael +Jailine +Jalissa +Jamecia +Jameshia +Jamisha +Janee +Janelly +Jaylynn +Jazzmine +Jeanne +Jeannette +Jennyfer +Joan +Jocelin +Jordana +Josefina +Judy +Kaili +Kalista +Kalynn +Kami +Kamia +Kassie +Katey +Kathlyn +Katya +Kaytlyn +Keana +Keandra +Keegan +Keeley +Keiara +Kennedi +Kenyatta +Kera +Keturah +Keyonna +Kiarra +Kinley +Kiran +Krystin +Kyanna +Kyara +Kyndall +Kyrsten +Lacy +Lakayla +Lana +Lane +Lashay +Latoya +Latricia +Leigh +Leona +Lianne +Lilah +Lillianna +Liz +Lois +Lucille +Macie +Malika +Mallorie +Marianne +Marion +Markeisha +Marla +Marlee +Mattie +Mercy +Merissa +Michaella +Miesha +Mika +Milagro +Mirella +Monet +Nandi +Nautica +Niki +Nisha +Niyah +Nya +Nyah +Ocean +Oriana +Patrice +Pricilla +Priya +Quanisha +Rachell +Rayven +Rebecka +Reina +Rheanna +Rita +Ronesha +Roselyn +Ryanne +Ryleigh +Sabine +Samaria +Scarlet +Sequoia +Shaila +Shantoria +Shayne +Shekinah +Sheyla +Shiloh +Shivani +Syanne +Taina +Talya +Tana +Taniya +Taya +Terri +Timesha +Tinesha +Treasure +Tristin +Tytianna +Valarie +Vianca +Xiomara +Yanelis +Yanet +Zena +Zhane +Zipporah +Zuri +Abril +Acacia +Adreanna +Aerial +Aiyana +Alanah +Alexsis +Alisia +Alissia +Alora +Amaya +Amie +Amina +Anabelle +Analise +Andie +Angeli +Angelia +Angelic +Anisha +Annabeth +Annalee +Anyssa +Arden +Ariane +Ariyana +Arlette +Armoni +Aubrianna +Aundria +Aurelia +Avianna +Aya +Aysia +Azaria +Azariah +Baylie +Belinda +Benita +Bertha +Breauna +Briahna +Brittnee +Bronwyn +Brookelyn +Calli +Cameryn +Camry +Carey +Caridad +Carleigh +Carrissa +Carter +Cassey +Cassi +Catlin +Caylie +Charisma +Charissa +Charlee +Chasidy +Cherise +Cheyanna +Chiara +Chiquita +Ciana +Contessa +Corey +Cristen +Danesha +Danica +Daniele +Danisha +Darbi +Davina +Delilah +Desire +Destanee +Destyni +Deziree +Domenica +Dorian +Dulce +Dyamond +Dynasty +Elana +Elayna +Elisabet +Emalee +Emelie +Emelyn +Emery +Emiley +Emilly +Eriel +Estela +Evangeline +Flor +Flora +Francine +Geena +Gemma +Gena +Ginger +Gracen +Hayden +Hayle +Hayleigh +Iesha +Ivelisse +Jackeline +Jacklyn +Jacquelynn +Jadelyn +Jaeda +Jakia +Jameisha +Jamesia +Jamey +Janaya +Janine +Janna +Jaylah +Jaymie +Jazlynn +Jocelyne +Johnnie +Joi +Jonathan +Jordin +Joseline +Joycelyn +Juana +Juliann +Kacee +Kai +Kailah +Kaira +Kalei +Kalen +Kamiyah +Karin +Karishma +Karmen +Kasi +Katalina +Katheryn +Katilyn +Kayleen +Kaylene +Keilah +Kenna +Keona +Kerstin +Keshawna +Kierstin +Kiona +Kirstyn +Kristian +Krystle +Kyana +Kylah +Lacee +Laila +Laken +Lakeria +Latasha +Latia +Leia +Leslye +Liberty +Lilli +Lina +Lizette +Lovely +Lucero +Madelyne +Madysen +Mahogany +Makiya +Maleena +Marena +Marian +Marielena +Marisha +Marlen +Marly +Marsha +Marshay +Maryam +Maryann +Maryjane +Michael +Misha +Mona +Myriam +Naiya +Naomie +Natalee +Neda +Nelly +Nicola +Nigeria +Nila +Nour +Oceana +Oneisha +Pearl +Presley +Raeanne +Rayanna +Rayne +Rebeka +Richelle +Roseline +Roxanna +Sabryna +Saray +Saskia +Seanna +Shaelyn +Shakia +Shalyn +Shani +Shaniah +Shaniece +Shanika +Shanise +Shantavia +Shatavia +Shauntavia +Shaylin +Shealyn +Sheyenne +Shoshana +Siobhan +Stacie +Star +Stephani +Stephania +Susanne +Takia +Taleah +Taliah +Tamika +Tangela +Taylar +Teaira +Tegan +Terrianna +Thais +Thania +Thelma +Theodora +Tiarra +Tiera +Tiesha +Tionna +Topaz +Torri +Traci +Triana +Tricia +Tristyn +Tyana +Tyla +Valeska +Vannessa +Venus +Vera +Violet +Vivica +Wynter +Yaileen +Yamileth +Yara +Yesica +Yuri +Zahra +Zainab +Zara +Zariyah +Emily +Ashley +Samantha +Sarah +Alexis +Hannah +Taylor +Victoria +Kayla +Jessica +Brianna +Madison +Alyssa +Lauren +Elizabeth +Amanda +Nicole +Jasmine +Rachel +Destiny +Alexandra +Jennifer +Megan +Brittany +Olivia +Stephanie +Abigail +Julia +Savannah +Sydney +Morgan +Natalie +Amber +Danielle +Haley +Brooke +Kaitlyn +Gabrielle +Katherine +Isabella +Emma +Courtney +Rebecca +Maria +Sierra +Grace +Sophia +Anna +Jordan +Sabrina +Vanessa +Kiara +Sara +Gabriela +Andrea +Michelle +Gabriella +Christina +Melissa +Briana +Mackenzie +Mary +Hailey +Tiffany +Shelby +Breanna +Chloe +Allison +Cheyenne +Jenna +Kimberly +Kaylee +Laura +Alexa +Katelyn +Angela +Faith +Jada +Veronica +Erin +Marissa +Alexandria +Makayla +Chelsea +Mariah +Jade +Caroline +Autumn +Zoe +Isabel +Melanie +Diana +Kelly +Catherine +Kelsey +Sofia +Heather +Mikayla +Cassidy +Kristen +Caitlin +Tatiana +Leah +Bailey +Bianca +Lindsey +Paige +Adriana +Angelica +Jacqueline +Alicia +Katie +Amy +Shannon +Angel +Summer +Skylar +Kathryn +Maya +Daniela +Mia +Miranda +Cassandra +Madeline +Arianna +Crystal +Ariana +Alexia +Casey +Erica +Brittney +Jamie +Selena +Ana +Tatyana +Diamond +Natalia +Valerie +Ariel +Kylie +Erika +Caitlyn +Meghan +Daniella +Molly +Cierra +Riley +Carolina +Julie +Dominique +Kaitlin +Patricia +Carly +Hayley +Rebekah +Shania +Cynthia +Desiree +Hanna +Hope +Karina +Lillian +Christine +Claudia +Britney +Leslie +Monica +Jillian +Isabelle +Jazmine +Kendall +Michaela +Savanna +Lindsay +Delaney +Camryn +Mya +Trinity +Holly +Naomi +Jocelyn +Juliana +Claire +Ashlyn +Bethany +Genesis +Lauryn +Cameron +Kristina +Kiana +Lydia +Margaret +Natasha +Gianna +Daisy +Deja +Nina +Raven +Mckenzie +Meagan +Rachael +Asia +Krystal +Valeria +Audrey +Cindy +Francesca +Cheyanne +Adrianna +Cristina +Camila +Ciara +Kassandra +Nathalie +Skyler +Jayla +Kara +Alana +Alexus +Karen +Sophie +Allyson +Evelyn +Giselle +Kyla +Paola +Aaliyah +Angelina +April +Dakota +Dana +Kendra +Jordyn +Destinee +Julianna +Katelynn +Katrina +Kristin +Aliyah +Amelia +Jasmin +Kira +Esmeralda +Kathleen +Lily +Tiana +Deanna +Kyra +Valentina +Yesenia +Kaley +Whitney +Cecilia +Elena +Felicity +Kirsten +Makenzie +Alissa +Brenda +Bryanna +Gina +Jazmin +Kylee +Madelyn +Mallory +Mariana +Abby +Priscilla +Brandi +Serena +Tabitha +Tessa +Alejandra +Sandra +Tara +Anastasia +Joanna +Karla +Marisa +Ruth +Shayla +Tamara +Yasmine +Emilee +Kasey +Ashlynn +Logan +Ashlee +Monique +Kailey +Lisa +Peyton +Rosa +Talia +Brandy +Imani +Sidney +Gillian +Mercedes +Kaitlynn +Marina +Sasha +Tori +Alison +Camille +Celeste +Lacey +Raquel +Rose +Ashleigh +Cassie +Zaria +Barbara +Carla +Carolyn +Eva +Jailene +Payton +Arielle +Aubrey +Brooklyn +Haylee +Hunter +Jessie +Nancy +Ava +Julissa +Katlyn +Linda +Amari +Kierra +Madeleine +Marie +Nadia +Nia +Tia +Toni +Yasmin +Ebony +Elise +Kaylin +Precious +Renee +Shanice +Teresa +Virginia +Alaina +Alanna +Alina +Avery +Ayanna +Carissa +Tiara +Callie +Destini +Janelle +Kate +Kaylie +Krista +Paula +Sharon +Tania +Tianna +Alondra +Brenna +Carmen +Deborah +Jacquelyn +Juliette +Kassidy +Kiera +Lexi +Liliana +Marisol +Nichole +Amaya +Breana +Cayla +Kaila +Kayleigh +Kianna +Macy +Mckenna +Melody +Meredith +Mikaela +Noelle +Pamela +Vivian +Emely +Esther +Frances +Jenny +Kaleigh +Kali +Kennedy +Alisha +Allie +Carley +Elisabeth +Isabela +Kamryn +Tamia +Theresa +Tyra +Angie +Annabelle +Bridget +Chasity +Chelsey +Denise +Felicia +Gisselle +Hallie +Anais +Anne +Annie +Ashton +Gloria +Kenya +Miriam +Tierra +Alessandra +Baylee +Cara +Ciera +Haleigh +Heaven +Helen +Johanna +Rhiannon +Rylee +Shayna +Shyanne +Tatianna +Charlotte +Georgia +Janet +Jazmyn +Julianne +Karissa +Lyric +Reagan +Ruby +Simone +Tyler +Wendy +Antonia +Destiney +Essence +Kiersten +Makenna +Sadie +Sage +Susan +Alice +Angelique +Christa +Fatima +Guadalupe +Ivy +Janae +Josephine +Shakira +Stacey +Abbey +Brielle +Chanel +Charity +Emilie +Heidi +Isis +Joy +Judith +Regan +Sonia +Ann +Bailee +Christy +Coral +Hailee +Kourtney +Kyara +Mayra +Micaela +Rachelle +Skye +Thalia +Viviana +Beatriz +Carrie +Chyna +Clarissa +Halle +Harley +Jasmyne +Juliet +Kayley +Kaylyn +Miracle +Paris +Tatyanna +Tayler +Zoey +Alisa +Brianne +Colleen +Elyssa +Ericka +Giovanna +India +Jaclyn +Jazlyn +Jenifer +Kacie +Kailee +Maggie +Melinda +Nicolette +Regina +Robyn +Sandy +Selina +Alayna +Alyson +Aurora +Catalina +Clara +Dejah +Eileen +Eliana +Elisa +Jaime +Josie +Katia +Kelli +Lesly +Lisette +Lissette +Luz +Maegan +Marilyn +Mckayla +Nikki +Noelia +Sheila +Beverly +Carol +Celine +Christian +Damaris +Devin +Genevieve +Jaden +Janessa +Juanita +Layla +Mara +Marianna +Maribel +Princess +Rebeca +Serenity +Stella +Stephany +Tatum +Aniya +Ashanti +Baby +Carina +Christiana +Eve +Iris +Jayda +Jewel +Lucy +Shyann +Addison +Annette +Antoinette +Anya +Athena +Candace +Dianna +Fabiola +Jane +Jasmyn +Joyce +Kacey +Katarina +Kellie +Lena +Maranda +Melany +Montana +Phoebe +Robin +Savanah +Susana +Tracy +Valery +Abbie +Aimee +Aisha +Daija +Dasia +Devon +Donna +Eden +Gracie +Irene +Jaida +Joanne +Kailyn +Kelsie +Kiarra +Lara +Larissa +Laurel +Leanna +Leticia +Liana +Lucia +Maddison +Madisyn +Margarita +Nataly +Nora +Sienna +Stacy +Unique +Adrienne +Aileen +Alycia +Amira +Ansley +Arlene +Armani +Blanca +Bria +Bridgette +Candice +Celina +Charlene +Darby +Dorothy +Franchesca +Hana +Janice +Janiya +Jesenia +Jesse +Kaylah +Kendal +Kiley +Leanne +Leila +Leilani +Lexie +Lilly +Lizbeth +Lorena +Lourdes +Lyndsey +Marcela +Mariela +Marlee +Melina +Moriah +Nikita +Piper +Shae +Sydni +Sylvia +Tess +Zoie +Abigayle +Anika +Ayla +Breonna +Brittani +Bryana +Carlie +Casandra +Daphne +Drew +Ellen +Fiona +Halley +Helena +Ivana +Jamya +Justine +Kristine +Kyleigh +Lexus +Maia +Maritza +Marley +Martha +Nadine +Nathaly +Patrice +Rochelle +Sarai +Sarina +Savana +Scarlett +Shianne +Skyla +Soraya +Taryn +Aleah +Alma +Amani +Ayana +Calista +Chyanne +Cristal +Delilah +Devyn +Diane +Jamesha +Kaela +Keanna +Laney +Lia +Luisa +Madisen +Marlene +Noemi +Norma +Olga +Oriana +Paulina +Rayna +Reanna +Ryan +Shana +Shaniya +Shea +Stefanie +Tyanna +Yolanda +Alexys +Anaya +Anissa +Ashly +Bobbi +Cali +Carli +Carson +Chantel +Daisha +Dalia +Dallas +Daria +Darlene +Elaina +Emerald +Estefania +Gabriel +Giana +Graciela +Hadley +Iliana +Jamia +Juana +Julisa +Justice +Kaelyn +Kalie +Kallie +Karlee +Karli +Katerina +Katharine +Kayle +Keana +Keara +Kristi +Lesley +Lila +Loren +Madalyn +Madyson +Micah +Miya +Mykayla +Nakia +Noel +Raina +Randi +Roxanne +Shaina +Shawna +Tamera +Tanisha +Aja +Alanis +Alex +Ally +Anabel +Astrid +Cameryn +Chandler +Chantal +Cortney +Daijah +Dayana +Debra +Elaine +Estrella +Farrah +Gwendolyn +Halie +Haylie +Ileana +Jalyn +Jaqueline +Joselyn +Kala +Kari +Kasandra +Katelin +Keely +Kenzie +Keri +Kortney +Lea +Meaghan +Myah +Parker +Reilly +Rosemary +Rowan +Salma +Shakayla +Shanna +Tanya +Teagan +Trisha +Willow +Xiomara +Yazmin +Aiyana +Aleena +Alexandrea +Alivia +Allyssa +Alysa +Alysha +Anabelle +Angeline +Aryana +Ashli +Aubrie +Cailyn +Celia +Chelsie +Cori +Corinne +Dina +Dulce +Eboni +Edith +Elexus +Eliza +Erykah +Fernanda +Griselda +Hillary +Itzel +Jacey +Jackie +Jakayla +Janie +Jayde +Jazmyne +Jessenia +Jodi +Kaci +Kalyn +Karley +Katlynn +Katya +Kayli +Kaylynn +Keisha +Keyla +Krysten +Lacie +Lana +Lizeth +Lizette +Lynn +Macey +Magdalena +Maiya +Malia +Mariam +Miah +Micayla +Nikole +Nyasia +Perla +Saige +Samaria +Sariah +Shantel +Shelbie +Silvia +Sonya +Starr +Suzanne +Sydnee +Tatiyana +Abigale +Alia +Alysia +Amara +Anabella +Annamarie +Annika +Annmarie +Ashlie +Audra +Bonnie +Brea +Bridgett +Caitlynn +Caleigh +Cheryl +Ciarra +Cora +Dania +Darian +Dawn +Deasia +Demi +Elissa +Ellie +Elyse +Esperanza +Fabiana +Fallon +Haven +Jana +Janay +Jaylene +Jeniffer +Jocelyne +Justina +Karlie +Keila +Keira +Kelley +Kinsey +Kirstin +Kristal +Kristy +Leandra +Lillie +Mollie +Nicolle +Odalys +Paloma +Quinn +Racquel +Reese +Sapphire +Shanya +Shelbi +Sydnie +Tamya +Tiffani +Tina +Yasmeen +Yessenia +Akira +Alena +Alexi +Alexie +Alyssia +Amaris +Anjali +Annalisa +Ariella +Aryanna +Aylin +Bayleigh +Bianka +Breanne +Brionna +Brooklynn +Brynn +Caterina +Caylee +Chante +Christal +Christen +Daniel +Daphney +Dasha +Dayna +Daysha +Deandra +Destine +Ella +Emilia +Emmalee +Farah +Geneva +Gianni +Gissel +Giulia +Halee +Harmony +Jamaya +Jamila +Jayleen +Jayme +Jazzmine +Jessi +Joelle +Kathy +Katlin +Kaylan +Kelsi +Keyanna +Keyona +Kimberlee +Leeann +Lilian +London +Macie +Mahogany +Makeda +Marisela +Martina +Michele +Moesha +Nathalia +Octavia +Pauline +Reina +Rene +Rhea +Ryleigh +Sally +Shelly +Siara +Sommer +Star +Taliyah +Yazmine +Yvonne +Zhane +Aida +Aliya +Alize +Alora +Anita +Antonella +Arden +Ashtyn +Aspen +Berenice +Blair +Blake +Breona +Brieanna +Carleigh +Cecelia +Chase +Christelle +Christie +Clare +Constance +Cydney +Dajah +Danisha +Delia +Demetria +Desirae +Destyni +Dionna +Dora +Dylan +Elisha +Eunice +Hayleigh +Hazel +Iesha +Isabell +Jadyn +Jaelyn +Jala +Jaslyn +Jaylynn +Jeanette +Johana +Jolie +Kaia +Karly +Katheryn +Kelsy +Keren +Kia +Kristie +Kyana +Lacy +Latoya +Laurie +Leann +Lilliana +Lina +Liz +Mandy +Marcella +Marjorie +Markayla +Maryann +Maura +Mikala +Milagros +Mireya +Monet +Myra +Natali +Nya +Nyla +Odalis +Priscila +Rachell +Reyna +Rhianna +Rianna +Rita +Rosalie +Sade +Sarena +Shaelyn +Shamya +Shanelle +Shyla +Sky +Sophonie +Stormy +Tabatha +Taina +Taliah +Tammy +Taniya +Tiera +Tiffanie +Tionna +Tionne +Tyana +Tyla +Violet +Whitley +Winter +Yaritza +Yessica +Zahria +Abbigail +Abriana +Abrianna +Adeline +Adrian +Adrianne +Ainsley +Alexcia +Alliyah +Ambria +Amie +Amya +Annemarie +Asha +Ashely +Aubree +Ayleen +Aysia +Azaria +Beatrice +Bernice +Cathryn +Chaya +Chiara +Christin +Cloe +Daja +Danae +Darcy +Dayanara +Desire +Destani +Domonique +Eleanor +Elexis +Ember +Francisca +Giavanna +Hadeel +Hollie +Ilana +Ingrid +Ireland +Iyanna +Jackeline +Jaimie +Jakeria +Jania +Janna +Jaylin +Jayna +Jensen +Jesica +Joana +Joann +Joi +Josefina +Kaili +Kayleen +Kaytlin +Kenna +Kennedi +Keyana +Kierstin +Kimberley +Kyndall +Lashay +Latisha +Leigha +Lidia +Lori +Luciana +Luna +Lynette +Malaysia +Malika +Markeisha +Melisa +Michaella +Myranda +Nadya +Nigeria +Niya +Patience +Ramona +Rikki +Ryann +Salina +Samara +Shaniah +Shaniyah +Shauna +Shay +Sheridan +Sloan +Stefany +Stevie +Taja +Tamar +Tasha +Tayla +Tea +Tehya +Tykeria +Tytiana +Tytianna +Xena +Yvette +Zariah +Abagail +Adia +Alea +Alexander +Aliana +Alona +Analise +Annabel +Aracely +Baily +Belen +Billie +Breeanna +Britany +Brook +Callista +Carlee +Celena +Chastity +Chrystal +Chynna +Courteney +Cyan +Danyelle +Davina +Delanie +Denesha +Destany +Destinie +Dixie +Dorian +Dyani +Elle +Emery +Francis +Gisela +Gladys +Glory +Heidy +Holley +Indya +Ivette +Ivory +Iyana +Izabella +Jaiden +Jaileen +Jailyn +Jaleah +Jami +Jamiya +Janiece +Jaquelin +Jaylen +Jaylyn +Jean +Jeannie +Jessika +Jodie +Johnna +Jonathan +Joslyn +Kai +Kaliyah +Kathrine +Katiana +Kayce +Kaycee +Kaycie +Kaylene +Kenia +Keondra +Khadijah +Kinley +Kiyah +Kristyn +Kylah +Laila +Latavia +Leena +Leona +Lili +Lisbeth +Lissa +Liza +Lucero +Lyla +Lynsey +Macayla +Maeve +Magaly +Maira +Makala +Manuela +Marian +Mariella +Mariyah +Maureen +Michael +Mickayla +Mikaila +Mira +Monika +Myia +Myriam +Natalya +Nayeli +Penelope +Remi +Rocio +Rosalinda +Sahara +Sana +Shaila +Shaye +Shekinah +Shirley +Shivani +Siera +Stefani +Takira +Tanaya +Taylar +Terra +Terri +Tonya +Tracey +Tristan +Tristin +Valencia +Vanesa +Yadira +Yailin +Yanelis +Yasmina +Yesica +Yulisa +Yulissa +Zipporah +Aidan +Ajah +Alecia +Alessia +Alexius +Aliah +Aliza +Alyse +Ambar +Amberly +Anahi +Anai +Analisa +Anastacia +Andie +Anisa +Aolani +Araceli +Areli +Armoni +Asya +Ayah +Azia +Betty +Blaire +Brandee +Brandie +Brittnay +Brittnee +Bryn +Cailey +Carsyn +Catarina +Catharine +Channel +Chardonnay +Charlie +China +Christianna +Chyenne +Ciana +Cinthia +Colby +Connor +Corrine +Courtnee +Dahlia +Danica +Danika +Dara +Debbie +Debora +Deirdre +Derricka +Doris +Dyamond +Dymond +Elysa +Eryn +Estefani +Ester +Evangeline +Evelin +Flora +Galilea +Gemma +Geraldine +Ginger +Gwyneth +Hanan +Hiba +Infant +Irma +Ivanna +Ivon +Iyanla +Jacquelin +Jacy +Jadah +Jaela +Jakira +Jalisa +Jaliyah +Jalynn +Jameshia +Jayden +Jena +Jennah +Jennie +Jessy +Jordana +Jordin +Jose +Joseph +Josette +Julieta +Jurnee +Kalee +Kalli +Kameryn +Kami +Karrie +Karrington +Karsen +Karson +Kassie +Kateria +Katy +Kaya +Kaylea +Kaylen +Keaira +Keandra +Keirra +Kelsea +Kenisha +Kerry +Kerstyn +Kimora +Kirstyn +Kori +Kristian +Latrice +Leia +Leigh +Leonor +Lexia +Lexis +Lianne +Lilith +Lisandra +Lisset +Lovely +Maci +Madelynn +Makaela +Marcia +Margo +Mariajose +Marianne +Maricela +Marielena +Marielle +Marlena +Maryam +Mattie +May +Mekayla +Mercedez +Micheala +Michela +Mikeria +Mildred +Milena +Miyah +Myla +Najah +Natacha +Niki +Noa +Odessa +Pilar +Racheal +Renata +Rhonda +Rosemarie +Roxanna +Rylie +Sallie +Selah +Selma +Serina +Shanaya +Shanika +Shaylyn +Sonja +Stacie +Stefania +Sterling +Sunny +Tamaya +Taya +Tiyana +Tristen +Tristyn +Valarie +Vicky +Yamilex +Yarelis +Ysabella +Zion +Adamaris +Adria +Aiyanna +Alannah +Alesha +Alexsandra +Ali +Alise +Althea +Amberlyn +America +Anayeli +Anecia +Aniyah +Annabella +Annaliese +Annamaria +Anyssa +Arely +Arianne +Arionna +Ariyana +Ashante +Asheley +Ashlin +Austin +Aysha +Baleigh +Bayley +Bella +Beth +Betsy +Bobbie +Breasia +Bree +Breyana +Brigitte +Britni +Brittanie +Brittni +Brittnie +Bryce +Bryonna +Calysta +Cambria +Camilla +Capri +Carey +Caridad +Carmella +Cassey +Catera +Cathy +Chance +Chantell +Charisma +Chesney +Cheyanna +Christi +Christiane +Codi +Colette +Corey +Cornelia +Corrie +Cosette +Dakotah +Danesha +Dani +Daniele +Danna +Denisha +Denisse +Deonna +Desirea +Destynee +Diamonique +Eleni +Elia +Elianna +Eliya +Elly +Elsa +Elvia +Elysia +Emalee +Emmaline +Eryka +Erynn +Fayth +Fiorella +Flor +Gabriell +Gia +Gianella +Glenda +Grayson +Greta +Gretchen +Hailie +Haily +Hali +Harlee +Hayden +Hilda +Holli +Idalis +Iman +Jacara +Jacinda +Jacklyn +Jakia +Jalen +Jamara +Jamiah +Jamilah +Janai +Janaya +Janea +Janee +Janell +Janesha +Janiah +Janina +Janiyah +Jaya +Jayci +Jaylan +Jazlynn +Jenica +Jessalyn +Jill +Joan +Joie +Jolene +Joselin +Joseline +Journey +Judy +Julieann +Kaeli +Kailah +Kaira +Kaliah +Kalista +Kameron +Kamiyah +Karolina +Kassi +Katey +Katherin +Kaytlyn +Kaytlynn +Keasia +Keiana +Keonna +Kerri +Keyonna +Keziah +Khalia +Khayla +Kierstyn +Kim +Krystin +Kyndal +Kyrah +Kyrsten +Laina +Lamaria +Lanaya +Lanie +Lela +Leondra +Leyla +Liberty +Lilia +Lilibeth +Liset +Lizabeth +Lizbet +Lora +Lorelei +Lorin +Lorna +Lorraine +Lucille +Mackenzi +Madelyne +Madilyn +Maisie +Makenzi +Mason +Melodie +Milagro +Millie +Mindy +Naila +Naisha +Naja +Nakayla +Naya +Niah +Noor +Nyia +Parris +Passion +Quanesha +Quanisha +Raelyn +Raini +Raychel +Rebekka +Remington +Remy +Renae +Renisha +Rickia +Rosalynn +Rosie +Roxana +Rubi +Ryley +Sabra +Salome +Samari +Samaya +Samuel +Saray +Sawyer +Saylor +Seanna +Shacoria +Shamari +Shamia +Shanel +Shanequa +Shani +Shanti +Shari +Shawn +Shawnee +Shaylee +Shaylin +Sheryl +Sheyla +Shreya +Shyra +Skylynn +Sloane +Soleil +Stephania +Susannah +Takara +Tamiya +Tanzania +Thais +Timya +Traci +Tracie +Tynesha +Vannessa +Venessa +Venus +Vianca +Wynter +Yahaira +Yamilet +Yaquelin +Yelitza +Zaida +Zakiya +Zara +Zayna +Emily +Ashley +Hannah +Samantha +Sarah +Alexis +Madison +Taylor +Kayla +Brianna +Jessica +Alyssa +Victoria +Lauren +Elizabeth +Destiny +Nicole +Amanda +Jasmine +Abigail +Olivia +Rachel +Alexandra +Megan +Jennifer +Isabella +Haley +Natalie +Sydney +Savannah +Emma +Kaitlyn +Stephanie +Morgan +Amber +Hailey +Katherine +Danielle +Julia +Chloe +Sophia +Brooke +Rebecca +Anna +Maria +Grace +Brittany +Gabrielle +Andrea +Jordan +Christina +Gabriela +Gabriella +Michelle +Sierra +Faith +Sabrina +Vanessa +Mackenzie +Sara +Trinity +Melissa +Courtney +Allison +Briana +Jada +Shelby +Alexa +Jenna +Mary +Katelyn +Caroline +Cheyenne +Caitlin +Sofia +Tiffany +Mia +Kaylee +Autumn +Melanie +Jade +Angela +Kiara +Kimberly +Catherine +Erin +Marissa +Bailey +Alexandria +Ariana +Daniela +Jacqueline +Laura +Zoe +Breanna +Bianca +Lindsey +Makayla +Cassidy +Katie +Isabel +Adriana +Leah +Erica +Summer +Cassandra +Tatiana +Britney +Mariah +Caitlyn +Skylar +Madeline +Angel +Arianna +Diana +Veronica +Paige +Kelly +Maya +Ana +Chelsea +Crystal +Kathryn +Alexia +Kelsey +Miranda +Amy +Natalia +Alicia +Mikayla +Heather +Angelica +Erika +Jillian +Carolina +Hayley +Kristen +Angelina +Brittney +Lillian +Kylie +Kendall +Diamond +Daniella +Meghan +Riley +Valerie +Hope +Karina +Aaliyah +Lily +Kaitlin +Shannon +Ariel +Jocelyn +Hanna +Jamie +Michaela +Molly +Naomi +Adrianna +Carly +Cierra +Leslie +Alejandra +Asia +Cristina +Genesis +Monica +Mya +Madelyn +Shania +Kristina +Raven +Amaya +Karen +Margaret +Mckenzie +Nadia +Valeria +Bethany +Ciara +Ashlyn +Cameron +Desiree +Juliana +Skyler +Nina +Rebekah +Selena +Cynthia +Julie +Savanna +Claudia +Daisy +Patricia +Delaney +Sophie +Peyton +Camryn +Holly +Isabelle +Casey +Kara +Kylee +Lindsay +Kathleen +Kiana +Audrey +Christine +Elena +Lauryn +Payton +Rachael +Claire +Gianna +Jazmine +Ava +Camila +Alana +Imani +Kendra +Yesenia +Esmeralda +Jasmin +Brenda +Kyra +Raquel +Aliyah +Dominique +Jayla +Jordyn +Tatyana +Valentina +Deanna +Julianna +Katelynn +Lydia +Tara +Aubrey +Priscilla +Alexus +Jazmin +Katrina +Kirsten +Nathalie +Evelyn +Kennedy +Karla +Kira +Kyla +Paola +Lisa +Anastasia +Natasha +Sandra +Avery +Mallory +Amelia +Makenzie +Tamara +Zaria +April +Giselle +Kristin +Sasha +Bryanna +Kailey +Nia +Serena +Cindy +Gina +Shayla +Ashlee +Deja +Destinee +Eva +Haylee +Tiara +Haleigh +Joanna +Krystal +Marisa +Reagan +Alison +Dakota +Kassandra +Allyson +Cheyanne +Elise +Emilee +Georgia +Abby +Ashleigh +Camille +Charlotte +Gillian +Marina +Mercedes +Rylee +Whitney +Alissa +Helen +Hunter +Mariana +Sidney +Tiana +Tori +Amari +Barbara +Celeste +Kayleigh +Yasmin +Alondra +Arielle +Ashlynn +Dana +Krista +Layla +Meagan +Yasmine +Francesca +Kaylin +Logan +Nancy +Brandi +Gracie +Tamia +Teresa +Ayanna +Denise +Esther +Kaley +Virginia +Callie +Carmen +Juliette +Liliana +Rosa +Rose +Ruth +Jenny +Kate +Tabitha +Tessa +Vivian +Carolyn +Gisselle +Hallie +Kaleigh +Marie +Marisol +Pamela +Precious +Tia +Cassie +Cecilia +Julissa +Kaylie +Kiersten +Linda +Renee +Sadie +Skye +Tyler +Angelique +Deborah +Johanna +Kassidy +Melody +Monique +Tania +Brooklyn +Janae +Kaitlynn +Kamryn +Katlyn +Carina +Destini +Hailee +Jacquelyn +Jayda +Lucia +Mckenna +Talia +Ashton +Elisa +Heaven +India +Ivy +Janelle +Lacey +Noelle +Ruby +Tyra +Wendy +Alaina +Aleah +Bridget +Eden +Jaqueline +Kenya +Kierra +Miriam +Paula +Serenity +Sharon +Tatianna +Angie +Anne +Baby +Brandy +Chyna +Fatima +Felicity +Jaden +Jessie +Josephine +Aimee +Alayna +Annie +Armani +Christy +Ella +Julianne +Kiley +Lexi +Paulina +Toni +Breana +Cayla +Ciera +Elisabeth +Essence +Janet +Justice +Kasey +Leticia +Luz +Susan +Alisha +Emely +Emilie +Felicia +Madisyn +Rosalinda +Addison +Brenna +Cara +Carissa +Carla +Catalina +Eliana +Gloria +Jazlyn +Kelli +Kianna +Litzy +Macy +Madeleine +Mikaela +Paris +Theresa +Alanna +Alessandra +Athena +Baylee +Carlie +Chelsey +Frances +Guadalupe +Heidi +Iris +Isabela +Leilani +Maggie +Makenna +Malia +Rhiannon +Sarai +Thalia +Tianna +Alina +Dasia +Ericka +Halie +Kaila +Kali +Lilly +Maddison +Savanah +Shyanne +Tierra +Aileen +Alisa +Antonia +Brianne +Carley +Ebony +Genevieve +Giovanna +Harley +Isis +Joy +Martha +Miracle +Shayna +Simone +Aisha +Allie +Alma +Alyson +Ayana +Beatriz +Carrie +Celine +Charity +Clarissa +Daija +Daphne +Eliza +Jazmyn +Josie +Juliet +Karissa +Kaylyn +Kellie +Lena +Lorena +Marilyn +Melany +Melina +Nataly +Nichole +Rachelle +Shakira +Shyann +Stacey +Sylvia +Taryn +Zoey +Alice +Anais +Annabelle +Eve +Fiona +Halle +Harmony +Janice +Lesley +Lexie +Maia +Mayra +Meredith +Princess +Yolanda +Aiyana +Aniya +Calista +Carson +Chanel +Christian +Darby +Devin +Elissa +Hailie +Jaelyn +Katerina +Kayli +Kyleigh +Laila +Loren +Micaela +Rosemary +Sandy +Shaniya +Stephany +Abbey +Alysa +Anahi +Casandra +Chasity +Clara +Devyn +Irene +Ivana +Jaclyn +Jakayla +Justine +Kailee +Katarina +Kiera +Lizbeth +Melinda +Montana +Phoebe +Sage +Sheila +Tanya +Abbie +Alia +Alivia +Alysha +Ann +Ansley +Ashanti +Blanca +Breonna +Candace +Desirae +Jaida +Janiya +Joselyn +Katia +Lea +Leila +Lia +Lourdes +Macey +Natalya +Regan +Shianne +Sonia +Stacy +Viviana +Aliya +Ally +Anaya +Annika +Carlee +Christiana +Coral +Donna +Graciela +Jayden +Kaylah +Kayley +Keyla +Kristal +Larissa +Madalyn +Nikki +Piper +Rebeca +Reese +Robyn +Selina +Shanice +Sky +Taniya +Tracy +Willow +Yessenia +Amya +Aria +Aryanna +Aurora +Destiney +Eileen +Gabriel +Helena +Jadyn +Karli +Katelin +Katharine +Kelsie +Kristine +Laurel +Lesly +Liana +Lyndsey +Nicolette +Noemi +Robin +Savana +Shaina +Shawna +Shirley +Susana +Tabatha +Tatiyana +Adrienne +Alena +Aniyah +Ayla +Bailee +Brisa +Caitlynn +Camilla +Daijah +Darian +Dejah +Edith +Fernanda +Jewel +Joanne +Kacie +Kaelyn +Kasandra +Katiana +Kenzie +Madisen +Madyson +Marian +Marley +Mckayla +Raegan +Rocio +Samara +Scarlett +Skyla +Zoie +Bella +Blake +Brionna +Carli +Celina +Chyanne +Deasia +Imari +Jaime +Jalyn +Jamya +Jessenia +Judith +Kayle +Kaylynn +Kendal +Leanne +Nikita +Nya +Nyah +Regina +Reyna +Sienna +Suzanne +Sydni +Yazmin +Aja +Alani +Anissa +Antoinette +Antonella +Breanne +Brielle +Brook +Chandler +Christie +Colleen +Cora +Cortney +Cristal +Damaris +Devon +Dixie +Elaina +Ellie +Fabiola +Franchesca +Ivanna +Jaquelin +Jean +Kari +Keara +Kristy +Leann +Leanna +Lexus +Lillie +Lucy +Luna +Marcella +Marianne +Mollie +Naya +Nora +Ryan +Saige +Sydnee +Tamya +Tionne +Yamilet +Alexys +Aliza +Alyssia +Anya +Aryana +Aubree +Beyonce +Bryana +Cameryn +Celia +Cloe +Daisha +Dania +Dariana +Destinie +Elyssa +Emani +Esperanza +Estrella +Gwendolyn +Hana +Haylie +Jazmyne +Jolie +Juana +Kailyn +Karlie +Kaya +Keyana +Kourtney +Lissette +Macie +Maegan +Margarita +Maritza +Natalee +Nathaly +Noelia +Parker +Priscila +Randi +Shamya +Silvia +Stefanie +Sydnie +Tess +Unique +Abagail +Abbigail +Akira +Alycia +Amaris +Angeline +Annabel +Annabella +Araceli +Bonnie +Bria +Cailyn +China +Cydney +Dallas +Dayana +Destany +Eleanor +Ellen +Emilia +Gladys +Hayden +Ingrid +Jacklyn +Jamesha +Janessa +Janya +Jesse +Jessika +Kaliyah +Kalyn +Karlee +Katlynn +Keyanna +Lara +Marcela +Marianna +Martina +Moriah +Nadine +Nathalia +Olga +Ryleigh +Sally +Salma +Samaria +Shana +Stella +Taliyah +Tammy +Tanisha +Tatum +Tayler +Xiomara +Yadira +Alanis +Allyssa +Anika +Anita +Anjali +Aracely +Ashly +Aubrie +Beatrice +Belen +Bridgette +Caley +Cali +Carol +Charlene +Chelsie +Chynna +Connie +Dajah +Daria +Demetria +Dianna +Elisha +Estefania +Flor +Halley +Ivette +Iyana +Jayde +Kacey +Kaela +Kassie +Kaycee +Kendyl +Kiarra +Kirstin +Lorraine +Luciana +Lyric +Maci +Madelynn +Marlene +Meaghan +Michayla +Michele +Mikala +Milagros +Niya +Nyasia +Perla +Rylie +Sade +Shamari +Shanya +Shea +Shelly +Star +Taina +Tina +Tyanna +Vanesa +Alex +Aliah +Alliyah +Amalia +Amara +Anabel +Anabelle +Annamarie +Annelise +Bayleigh +Baylie +Beverly +Bobbie +Charisma +Chase +Deana +Debbie +Demi +Denisse +Diane +Dorothy +Emerald +Gia +Haven +Iliana +Jacey +Jackelyn +Jaiden +Jalisa +Jamila +Janay +Janaya +Jane +Jasmyn +Jeanette +Jenifer +Jesenia +Joelle +Joyce +Kaia +Kaiya +Kalista +Kathrine +Keisha +Keren +Keyara +Kierstin +Kori +Lila +Lilian +Lilliana +Mara +Mariela +Markayla +Maryann +Misty +Myah +Noor +Nyla +Paloma +Rashel +Rayna +Sarina +Sheridan +Starr +Tayla +Tristin +Tyesha +Yaritza +Yasmeen +Zahria +Zariah +Abrianna +Ada +Alessia +Alexandrea +Alysia +Amani +Amiya +Annalise +Annette +Asha +Ashtyn +Ayleen +Brooklynn +Cailey +Caleigh +Candice +Carrington +Chantal +Chantel +Charlize +Christa +Dawn +Dayna +Deandra +Devan +Dina +Drew +Dulce +Dyamond +Elaine +Farah +Geraldine +Gisel +Halee +Hayleigh +Hazel +Iesha +Ivonne +Jacquelin +Jailene +Jana +Janasia +Jasmyne +Jaylah +Jayna +Jessalyn +Johana +Jovanna +Justina +Kaci +Kai +Krysta +Kyana +Latavia +Lynn +Manuela +Maranda +Maribel +Mattie +Maureen +Mina +Norma +Octavia +Reilly +Renata +Rhea +Rita +Rochelle +Roxanne +Shakayla +Shekinah +Sommer +Sonya +Talya +Tamera +Tatyanna +Tykeria +Tyla +Zion +Alannah +Alecia +Aleisha +Aliana +Amaiya +Amaria +Anabella +Andie +Andriana +Ania +Anisa +Annemarie +Arianne +Ashante +Ashlie +Aspen +Aysia +Brynn +Cathryn +Cherish +Christen +Clare +Cloey +Cori +Danyelle +Dara +Domonique +Eboni +Erykah +Eryn +Evangelina +Francis +Francisca +Gianella +Gwyneth +Harper +Jackeline +Jadah +Jayleen +Jaylin +Jena +Jennie +Juanita +Julisa +Kala +Kalei +Kalie +Karly +Katheryn +Katy +Kaytlin +Keely +Kelis +Kelley +Kenna +Keona +Kerri +Kimberlee +Kinsey +Kiya +Kristi +Kyrsten +Leeann +Leia +Lina +Lisette +Lynette +Mackenna +Magali +Mandy +Mariam +Mariel +Marielle +Marlee +Marlena +Mckinley +Meadow +Miah +Micah +Natali +Neha +Nigeria +Norah +Nykeria +Oriana +Patience +Quinn +Raelyn +Rhianna +Roxanna +Samira +Sarahi +Shaniah +Shauna +Shyla +Taya +Terri +Tionna +Tonya +Tytiana +Valencia +Violet +Yesica +Yvette +Zara +Zharia +Zykeria +Abigale +Adela +Aiyanna +Alanah +Alaysha +Allana +Amethyst +Anisha +Annmarie +Areli +Arlene +Astrid +Aundrea +Bayley +Blair +Breann +Bridgett +Bryn +Carleigh +Caylee +Caylin +Charlie +Christin +Citlalli +Codi +Colette +Corina +Corinne +Corrine +Danae +Danasia +Darlene +Delanie +Delia +Dynasty +Elexis +Francheska +Giulia +Hadley +Hillary +Hollie +Ilana +Iyanna +Izabella +Jakiya +Jalen +Jalynn +Janette +Janiece +Janiyah +Jaylen +Jazlynn +Joana +Kamaria +Kayleen +Keana +Keandra +Keeley +Kelsea +Kelsi +Kenia +Kerry +Keyonna +Kim +Kristian +Kyara +Lacie +Lakeria +Leana +Leigh +Leondra +Lexis +Livia +Lorelei +Louise +Luana +Lyla +Mahogany +Maliyah +Marla +Maura +Maxine +Micayla +Michaella +Mika +Mikeria +Milan +Milena +Mireya +Myra +Nayeli +Nicolle +Nikole +Odalys +Parris +Passion +Patrice +Racheal +Racquel +Reina +Rena +Ryann +Shantavia +Shreya +Susanna +Symone +Takiyah +Teagan +Tierney +Treasure +Trinitee +Triniti +Valarie +Valery +Yael +Yamile +Yamileth +Yanely +Yulisa +Yulissa +Zakiya +Abril +Adamaris +Adeline +Adrian +Aislinn +Alea +Alesha +Alexi +Alize +Alyse +Amiah +Amiyah +Amyah +Ananda +Angelika +Annalisa +Ashely +Aura +Azaria +Betsy +Bianka +Brea +Bree +Breona +Briauna +Brittani +Bryanne +Bryce +Chassidy +Chastity +Christelle +Chrystal +Cianna +Ciarra +Cielo +Constance +Dahlia +Daja +Darien +Denisha +Desire +Dora +Eleni +Elle +Elsa +Emerson +Emmalee +Estefany +Ester +Eunice +Georgina +Giavanna +Glenda +Griselda +Haile +Harleigh +Hosanna +Ivey +Jailyn +Jakia +Jaliyah +Jamaya +Jamia +Jamiah +Jamiya +Jania +Janiah +Janie +Jaylyn +Jaylynn +Jeniffer +Jennah +Joann +Jocelynn +Jodie +Joely +Jordin +Jordon +Judy +Kaileigh +Kalee +Kamia +Kaniya +Karyn +Kathy +Katlin +Kaylen +Keanna +Keasia +Keegan +Keiara +Keila +Keira +Kiandra +Kimberlyn +Kylah +Lacy +Lana +Leigha +Leighann +Liz +Lizeth +Lizette +London +Lori +Lucero +Lynda +Magaly +Mariajose +Marion +Mariyah +Marta +Mekenzie +Melisa +Michael +Mira +Monet +Monika +Nadya +Nevaeh +Noel +Raina +Rayne +Reanna +Rianna +Romina +Sapphire +Shani +Shaniyah +Shantell +Shelbi +Shiane +Shiloh +Stacie +Starla +Sumer +Tamiya +Taniyah +Trisha +Tristen +Tyonna +Veronika +Yaileen +Yanet +Yoselin +Zaira +Zaniya +Abigayle +Adelaide +Adilene +Adrianne +Aiden +Ajah +Alara +Alba +Allysa +Alyah +Amie +Amina +Amirah +Amoni +Anamaria +Antonique +Ariela +Ashli +Audra +Audrianna +Ayesha +Aylin +Aysha +Beth +Bethanie +Breasia +Britany +Candy +Carolynn +Casie +Catarina +Cayleigh +Cheyanna +Chiara +Chole +Ciana +Colby +Collette +Dalia +Daniel +Danika +Daphney +Dasani +Dayanna +Daysha +Debra +Deena +Delilah +Deondra +Deonna +Derricka +Diamonique +Elana +Elliana +Ellise +Elvira +Elysa +Emilly +Emmy +Emoni +Estefani +Evelin +Fallon +Farrah +Gena +Geneva +Genna +Gisell +Gretchen +Hadassah +Hali +Hanah +Harlee +Hayli +Heavenly +Honesty +Iman +Ireland +Isabell +Isaura +Isha +Jackie +Jaelynn +Jakerria +Jamecia +Janea +Janee +Janel +Jaslyn +Jaycee +Jenae +Jensen +Jill +Joan +Jodi +Josefina +Joslyn +Kaelin +Kaili +Kalia +Kallie +Kamiya +Karley +Karsen +Katelynne +Keonna +Keri +Kerstin +Khadijah +Kortney +Krysten +Krystina +Kyah +Kyler +Kyndall +Lane +Lani +Lanie +Laurie +Lazaria +Leilany +Lexia +Leyla +Liberty +Lilibeth +Linsey +Lisbeth +Lovely +Luisa +Luiza +Magdalena +Makeda +Malaysia +Malena +Mallorie +Mari +Marin +Marlen +Maryam +Maylin +Mekayla +Michel +Michela +Mikaila +Mila +Mindy +Moesha +Mykayla +Myranda +Nala +Natavia +Niyah +Nohemi +Ocean +Paisley +Pauline +Pilar +Presley +Priya +Raeanne +Raelin +Ravyn +Raya +Renae +Rheanna +Rhonda +Riya +Roselyn +Roxana +Salena +Samiya +Sana +Santana +Sera +Serina +Shae +Shaelyn +Shanna +Shante +Shantel +Shay +Shelley +Sheryl +Sheyla +Skylynn +Soleil +Sonja +Soraya +Stefany +Stevie +Susannah +Suzannah +Taijah +Tamar +Tamyra +Teaira +Tiera +Tory +Tracey +Tricia +Trina +Tristan +Tyana +Vicky +Viktoria +Yaneli +Yara +Yareli +Yazmine +Yessica +Yvonne +Zada +Zahra +Zipporah +Acacia +Aidan +Ailyn +Alayah +Alaysia +Aleena +Aleigha +Alesia +Alexcia +Alexsandra +Alexsis +Aleyna +Alora +Alysse +Alyze +Amaia +Amal +Ambar +America +Anaiya +Analia +Analisa +Anastacia +Anayah +Andreana +Angelia +Antasia +Arely +Ariyana +Ariyanna +Armoni +Aubry +Autum +Averi +Averie +Aviana +Aya +Ayah +Baileigh +Betty +Bobbi +Branda +Brandon +Briannah +Brieanna +Britni +Brittanee +Brittaney +Brittnie +Brookelyn +Bruna +Calli +Caridad +Carlisha +Celena +Chana +Chanelle +Charlee +Charli +Charmaine +Cheryl +Christianna +Chyenne +Connor +Cornelia +Danelle +Danesha +Danica +Danisha +Danya +Dasha +Dayanara +Daysi +Dena +Denia +Destanee +Diandra +Diondra +Divine +Divya +Donisha +Doris +Dyani +Dymond +Edna +Elicia +Elyse +Elysia +Emiley +Evangeline +Fay +Fiorela +Gaelle +Giana +Gisele +Giuliana +Giulianna +Gizelle +Grayson +Haili +Haille +Haily +Harlie +Haydee +Heidy +Hilda +Ida +Indira +Ines +Inez +Irma +Jabria +Jacy +Jaila +Jailah +Jailine +Jaimie +Jalesia +Jalissa +Jami +Jamyra +Janai +Janell +Janely +Janine +Jaquelyn +Jaya +Jaylene +Jeanna +Jemima +Jerica +Jerrica +Jesica +Jewelia +Johannah +Jordana +Joselin +Joseline +Josette +Josey +Joshlyn +Journey +Jules +Julieta +June +Kacy +Kaeli +Kailani +Kaily +Kalynn +Kameron +Kami +Kamya +Kandace +Kaniyah +Karah +Karena +Karime +Karis +Karleigh +Karsyn +Kassidi +Kayana +Kaydee +Kaylea +Keirra +Kelsy +Kendell +Keniya +Kennedi +Keondra +Keshawna +Keziah +Kia +Kiah +Kimberley +Kimora +Kionna +Kirstyn +Kitana +Kristie +Kya +Kyanna +Kyle +Lacee +Laci +Laine +Lainey +Laisha +Laken +Lanae +Laney +Laurin +Layne +Leasia +Leona +Lexy +Lianne +Lilah +Linette +Lisandra +Lisbet +Liset +Lola +Lora +Loretta +Lorna +Lorrie +Lucille +Mackayla +Mackenzy +Madilyn +Madilynn +Magnolia +Maiya +Makaela +Maleah +Mallori +Manal +Marcia +Margaux +Maricela +Marlie +Mason +May +Michal +Mickayla +Miesha +Mikaylah +Miya +Myisha +Nailah +Nanci +Naomy +Nayah +Niah +Nijah +Nour +Nubia +Nyesha +Odalis +Phoenix +Quiana +Raechelle +Raena +Ramona +Raneisha +Reba +Regine +Ria +Richelle +Rikki +Roberta +Rosy +Sahara +Salina +Samia +Shakeria +Shanaya +Shanelle +Shaniece +Shanterria +Shatavia +Shaunice +Shaylee +Sheyenne +Shyanna +Siara +Siena +Siera +Sinai +Sloan +Solimar +Steffany +Stormy +Sunni +Tali +Taliah +Tasha +Tasia +Teanna +Tera +Tiandra +Tiffani +Tiona +Traci +Trista +Vannessa +Vera +Vianca +Vivianna +Wanda +Whitley +Winter +Xena +Yenifer +Yisel +Zainab +Zena +Zhane +Zuleika +Emily +Madison +Ashley +Hannah +Samantha +Alexis +Sarah +Brianna +Jessica +Taylor +Alyssa +Kayla +Victoria +Elizabeth +Lauren +Isabella +Nicole +Jasmine +Destiny +Abigail +Olivia +Amanda +Megan +Rachel +Jennifer +Alexandra +Julia +Savannah +Morgan +Sophia +Grace +Hailey +Kaitlyn +Natalie +Katherine +Chloe +Stephanie +Haley +Emma +Sydney +Maria +Anna +Amber +Gabriella +Rebecca +Andrea +Jordan +Gabrielle +Mackenzie +Brooke +Michelle +Gabriela +Faith +Jada +Trinity +Danielle +Christina +Jenna +Sierra +Vanessa +Courtney +Aaliyah +Sabrina +Alexa +Briana +Sara +Caroline +Melissa +Melanie +Zoe +Shelby +Allison +Jade +Mary +Angelina +Sofia +Katelyn +Ariana +Makayla +Mia +Laura +Kaylee +Jacqueline +Angela +Cheyenne +Kiara +Natalia +Arianna +Kimberly +Adriana +Erin +Bianca +Ana +Angel +Diana +Catherine +Daniela +Leah +Lindsey +Caitlin +Madeline +Alexandria +Cassidy +Brittany +Tiffany +Angelica +Kelsey +Veronica +Breanna +Summer +Juliana +Mikayla +Skylar +Isabel +Maya +Bailey +Marissa +Alicia +Autumn +Kelly +Tatiana +Erica +Mariah +Cassandra +Paige +Chelsea +Crystal +Lily +Kylie +Karina +Alexia +Caitlyn +Mya +Miranda +Riley +Erika +Julianna +Britney +Carolina +Jamie +Kathryn +Katie +Amy +Valerie +Isabelle +Heather +Jocelyn +Shannon +Jayla +Jillian +Genesis +Hope +Naomi +Ariel +Daniella +Gianna +Lillian +Madelyn +Kendall +Adrianna +Hayley +Ashlyn +Delaney +Diamond +Jazmine +Molly +Desiree +Valeria +Monica +Valentina +Mckenzie +Rebekah +Selena +Kristen +Savanna +Ava +Jasmin +Aliyah +Audrey +Camila +Hanna +Brittney +Carly +Evelyn +Peyton +Cynthia +Meghan +Skyler +Julie +Payton +Alana +Bethany +Cristina +Karen +Kyra +Kristina +Alejandra +Aubrey +Kaitlin +Leslie +Avery +Lindsay +Patricia +Casey +Lydia +Margaret +Nayeli +Jordyn +Daisy +Claire +Holly +Camryn +Cierra +Joanna +Makenzie +Priscilla +Kyla +Mariana +Michaela +Ciara +Asia +Christine +Raven +Bryanna +Natasha +Alexus +Shayla +Sophie +Cameron +Claudia +Francesca +India +Kaley +Kathleen +Katrina +Dominique +Nathalie +Amelia +Karla +Paola +Raquel +Nia +April +Jazmin +Kennedy +Kylee +Melody +Tamia +Alissa +Camille +Kara +Nina +Sandra +Alondra +Elena +Mallory +Krystal +Lauryn +Rachael +Rylee +Ashleigh +Imani +Mercedes +Shania +Tatyana +Abby +Haylee +Kira +Reagan +Tabitha +Tiana +Amaya +Brenda +Esmeralda +Kate +Nadia +Angie +Kirsten +Serena +Anastasia +Celeste +Amari +Cindy +Dakota +Elise +Kiana +Nevaeh +Sadie +Sasha +Yasmine +Zaria +Allyson +Ashlee +Carmen +Giselle +Katelynn +Deja +Esther +Liliana +Macy +Rosa +Rose +Ayanna +Barbara +Elisabeth +Layla +Logan +Talia +Charlotte +Destinee +Heaven +Jaden +Ruth +Yesenia +Julissa +Kaitlynn +Lisa +Tori +Carolyn +Cecilia +Gracie +Marina +Mckenna +Tia +Jayda +Kassandra +Kristin +Yasmin +Eva +Hailee +Kailey +Leilani +Maggie +Carla +Josie +Kendra +Teresa +Ashlynn +Catalina +Gillian +Janelle +Katlyn +Kayleigh +Tamara +Tara +Alaina +Alanna +Antonia +Emely +Emilee +Gina +Hunter +Juliet +Kaylin +Marisa +Monique +Bridget +Deanna +Elisa +Ella +Fatima +Isabela +Janiya +Jenny +Jolie +Angelique +Aniya +Dana +Denise +Eden +Haleigh +Kamryn +Kaylie +Lacey +Meagan +Precious +Renee +Virginia +Whitney +Zoey +Alison +Brooklyn +Charity +Izabella +Lucia +Nyah +Sonia +Tyler +Annabelle +Anne +Aurora +Linda +Paulina +Tiara +Deborah +Gisselle +Kasey +Kassidy +Marisol +Ruby +Sidney +Skyla +Tessa +Vivian +Anahi +Callie +Cayla +Gloria +Julianne +Makenna +Marie +Nancy +Sage +Skye +Taryn +Thalia +Addison +Alisha +Ashton +Brandi +Cheyanne +Heidi +Kiley +Madisyn +Melina +Noelle +Phoebe +Serenity +Sharon +Stephany +Ainsley +Alina +Annie +Arielle +Brenna +Juliette +Lexi +Pamela +Shaniya +Simone +Alyson +Athena +Ayana +Carissa +Chelsey +Destiney +Emilie +Giovanna +Janae +Johanna +Josephine +Justice +Karissa +Kenya +Kianna +Kiera +Leila +Shyanne +Tianna +Eliana +Georgia +Hallie +Ivy +Jayden +Kaila +Kailyn +Kaleigh +Leticia +Madyson +Miracle +Theresa +Beatriz +Brandy +Ciera +Felicia +Jaida +Kiersten +Krista +Luz +Taina +Viviana +Ann +Genevieve +Jazmyn +Laila +Lucy +Madeleine +Mikaela +Sade +Stacey +Susan +Tania +Tayler +Toni +Tyra +Bailee +Carley +Celine +Clara +Jacquelyn +Janet +Kyleigh +Paula +Piper +Wendy +Aniyah +Ansley +Beyonce +Destini +Eve +Gia +Harley +Juanita +Lizbeth +Meredith +Micaela +Nichole +Noemi +Nya +Nyasia +Paris +Regina +Sarai +Tatianna +Abbey +Allie +Cara +Cassie +Chanel +Christian +Damaris +Guadalupe +Irene +Iris +Jalyn +Kayley +Kierra +Lilly +Marley +Miriam +Rebeca +Shyann +Taliyah +Tierra +Abbigail +Aiyana +Alessandra +Aliya +Amani +Armani +Baby +Carlee +Chasity +Helen +Jessie +Leanna +Nataly +Nora +Regan +Shaina +Tina +Annette +Bella +Breana +Bria +Chyna +Clarissa +Daphne +Felicity +Giuliana +Jaelyn +Joana +Joy +Kacey +Katarina +Katerina +Lesly +Maddison +Maritza +Natalya +Sydni +Zoie +Aileen +Aimee +Alyssia +Annika +Anya +Baylee +Brielle +Eileen +Elaine +Hayden +Kaliyah +Kasandra +Kaya +Lea +Lexie +Lyndsey +Madelynn +Mckayla +Naya +Robin +Savana +Shawna +Sylvia +Taniya +Alayna +Alice +Amya +Anabelle +Anais +Angeline +Candace +Carlie +Daisha +Edith +Ellie +Essence +Giana +Hana +Haven +Isis +Jaclyn +Jadyn +Jakayla +Janessa +Janiyah +Jazlyn +Jewel +Juana +Karly +Katia +Kaylah +Lillie +Macey +Macie +Madalyn +Maia +Marcela +Mayra +Melany +Nyla +Shakira +Stacy +Tanya +Alivia +Ally +Camilla +Candice +Carina +Carrie +Cora +Fiona +Jania +Kya +Lara +Lesley +Mara +Raegan +Reyna +Ryan +Sarina +Shanice +Shirley +Valery +Abbie +Alani +Alisa +Alma +Alysha +Alysia +Aracely +Ashanti +Ayla +Calista +Colleen +Dayana +Delilah +Dulce +Ebony +Fernanda +Jaliyah +Jaqueline +Jayleen +Joyce +Judith +Kali +Kayli +Kelsie +Lia +Luna +Nathaly +Anika +Brianne +Brooklynn +Christiana +Coral +Cristal +Dianna +Eleanor +Elissa +Ellen +Estefania +Graciela +Harmony +Jaiden +Jamesha +Jana +Janay +Jaylen +Jenifer +Jesenia +Keila +Kellie +Lissette +Lourdes +Malia +Martina +Moriah +Myah +Nicolle +Nikki +Parker +Perla +Reanna +Rhiannon +Ryleigh +Savanah +Susana +Tanisha +Tracy +Yuliana +Aisha +Aleah +Alexys +Alize +Anjali +Cali +Carson +Celina +Dallas +Deandra +Desirae +Donna +Elana +Eliza +Ericka +Fabiola +Halle +Haylie +Iyana +Iyanna +Jamya +Jeanette +Jena +Justine +Kaylynn +Kelli +Kiya +Kyara +Lila +Lorena +Lyric +Maribel +Martha +Meadow +Montana +Myra +Nayely +Nicolette +Reina +Rocio +Shayna +Teagan +Yolanda +Yvette +Adrienne +Akira +Alanis +Alena +Alia +Anabel +Beverly +Blanca +Brionna +Carol +Casandra +Christy +Daija +Daijah +Darby +Dayanara +Deasia +Emani +Emmalee +Fabiana +Fallon +Gabriel +Helena +Ivanna +Ivette +Jackeline +Jane +Janice +Jasmyn +Joselyn +Kaela +Kyndall +Laney +Larissa +Laurel +Madilyn +Maegan +Marilyn +Norma +Princess +Rhianna +Samya +Sheila +Sheyla +Sydnie +Tamya +Tatum +Treasure +Zariah +Abigayle +Allyssa +Amara +Anaya +Annalise +Annamarie +Araceli +Brisa +Brook +Daysha +Dejah +Devin +Dorothy +Drew +Elaina +Elyssa +Emilia +Eryn +Estrella +Frances +Franchesca +Francheska +Janiah +Kaia +Kalyn +Karli +Katharine +Kathy +Keira +Kenzie +Kristine +Leann +Lena +Lexus +Lisette +Madisen +Makaila +Makiya +Maleah +Margarita +Mariela +Melisa +Mollie +Nadine +Natali +Patience +Penelope +Rosalinda +Rosemary +Roxana +Samara +Shamya +Stefanie +Tristen +Willow +Yamilet +Alannah +Aliza +Alysa +Aria +Ashly +Carli +Chantel +Charisma +Chyanne +Dania +Devyn +Ingrid +Ivana +Jailyn +Jamia +Jesse +Jimena +Julisa +Kailee +Kaiya +Katherin +Katheryn +Kylah +Leanne +Liana +Litzy +Loren +Mariam +Mattie +Milagros +Nikita +Odalys +Olga +Quinn +Rachelle +Rayna +Samaria +Selina +Serina +Shyla +Sky +Sydnee +Tamar +Tristan +Unique +Yadira +Alaysia +Anissa +Anita +Annabella +Antonella +Arely +Aryana +Aryanna +Audra +Cameryn +Chastity +Clare +Dara +Dasia +Debra +Delanie +Dixie +Hazel +Hillary +Iliana +Jackie +Jailene +Jaime +Jamiah +Jaylah +Jaylin +Jaylynn +Jayme +Jazmyne +Jessika +Joanne +Kaelyn +Kaylyn +Keyla +Kourtney +Krysta +Leeann +Liz +Manuela +Marian +Marlee +Marlene +Mikaila +Milena +Nathalia +Noelia +Raina +Rashel +Reilly +Rianna +Robyn +Rylie +Scarlett +Shaniyah +Soraya +Tabatha +Tyana +Yaire +Yasmeen +Yessica +Abbigale +Amira +Amiya +Anayeli +Antoinette +Ariadna +Aya +Bonnie +Breanne +Breeanna +Breonna +Bridgette +Brieanna +Celia +Dawn +Dayna +Farrah +Gwendolyn +Hayleigh +Ireland +Jacey +Jacklyn +Jakiya +Janai +Kalee +Kameron +Kamya +Kari +Karley +Katlynn +Kayle +Keara +Keren +Keyara +Kristy +Lana +Lilian +Lilliana +Livia +Lola +Marcella +Meaghan +Melinda +Miya +Mykayla +Nakia +Nayelis +Niya +Oriana +Rochelle +Sabine +Shekinah +Stella +Tammy +Trina +Triniti +Yaritza +Aja +Alexandrea +Anabella +Angelika +Annabel +Aspen +Astrid +Asya +Aubree +Autum +Ayah +Belen +Belinda +Bryana +Caitlynn +Caylee +Cecelia +Chantal +Charlize +Chelsie +Cheryl +Christa +Daja +Danae +Danasia +Diane +Fiorella +Hadassah +Haileigh +Hailie +Halie +Isabell +Janya +Jayna +Jeniffer +Johana +Joslyn +Journey +Kalina +Kamila +Karsyn +Katelin +Kelsea +Kenisha +Laurie +Lexis +Liberty +Luisa +Malaysia +Marianna +Marla +Maxine +Micah +Moesha +Nakiya +Noel +Patrice +Racheal +Rileigh +Rosemarie +Ryley +Salma +Shana +Shaniah +Shanna +Shea +Shelbi +Shianne +Silvia +Suzanne +Tatyanna +Terri +Ximena +Xiomara +Yazmin +Yessenia +Zaida +Zaniya +Abrianna +Abril +Aida +Aiyanna +Alba +Alex +America +Amina +Angeles +Angelic +Ariyanna +Ashely +Ashtyn +Aubrie +Azaria +Blake +Brynna +Carleigh +Cathryn +Chiara +Christie +Ciarra +Constance +Corina +Daria +Darlene +Dasani +Dasha +Dayanna +Demetria +Destinie +Dina +Dymond +Emerald +Esperanza +Giavanna +Gladys +Honesty +Iesha +Jaidyn +Jala +Jalynn +Janelly +Janely +Janie +Jasmyne +Jayde +Jaylene +Jaylyn +Joelle +Kacie +Kala +Karisma +Karlie +Katya +Kaylen +Kelley +Kendal +Kendyl +Keyana +Keyanna +Keyonna +Kierstin +Kimberlee +Lacy +Leyla +Lina +Lisbeth +Liza +Lucero +Magaly +Mahogany +Makiyah +Malena +Maliyah +Maranda +Mari +Marta +Maura +Mikala +Myranda +Neyda +Noor +Octavia +Rhea +Sally +Samira +Sanaa +Sandy +Selah +Shanelle +Shaylee +Sheridan +Shreya +Sianna +Soleil +Stefany +Tamera +Taniyah +Tess +Thais +Tiarra +Vanesa +Yazmine +Abbygail +Adamaris +Adrian +Alaysha +Alecia +Alesha +Alexi +Allana +Amalia +Amaria +Amia +Angelie +Anneliese +Annmarie +Armoni +Averie +Aylin +Caleigh +Catarina +Chandler +Charlene +Chase +Corinne +Cosette +Dajah +Darcy +Derricka +Devon +Dreama +Dylan +Eboni +Elyse +Elysia +Emerson +Evelin +Farah +Florencia +Geneva +Gissell +Giulianna +Hali +Halley +Ilana +Ileana +Isha +Jacinda +Jadah +Jalisa +Jamiya +Jaycee +Joey +Joi +Jovana +Kamari +Kamiyah +Karime +Katy +Kaycee +Kaylan +Keana +Keasia +Keely +Khloe +Kiandra +Kiarra +Kirstin +Kristal +Kristyn +Kyndal +Lianna +Lisandra +Lyla +Lynn +Lynsey +Makenzi +Malika +Mandy +Marielle +Marisela +Marjorie +Marlena +Maryam +Mason +Mercy +Miah +Micayla +Michele +Mira +Monet +Myla +Nayla +Phoenix +Priya +Rachell +Rain +Randi +Rayanna +Rita +Sabina +Sahara +Salena +Sana +Sariah +Shakayla +Shanell +Shanya +Shauna +Shira +Siera +Sloane +Star +Sunshine +Symone +Takayla +Tatiyana +Tera +Tiffani +Tracey +Tyanna +Veronika +Vicky +Viridiana +Winter +Yael +Yanelis +Zahria +Zaniyah +Zion +Abagail +Abrielle +Adamari +Adeline +Aislinn +Aleisha +Aliana +Alliyah +Amaris +Ambar +Amethyst +Anai +Anamaria +Ananda +Ania +Anisa +Annaliese +Anyah +Areli +Arianne +Ariella +Arlene +Ashante +Ayleen +Aysha +Aysia +Baleigh +Beatrice +Becky +Berenice +Betty +Breann +Bree +Bridgett +Brigitte +Bryn +Camden +Chante +Charlee +Chelsi +Cherish +Cheyann +Ciana +Cianna +Colby +Dahlia +Demi +Desiray +Desire +Destany +Dinah +Dyamond +Dyani +Elisha +Elle +Frida +Gabriele +Geraldine +Ginger +Grayson +Hollie +Imari +Indya +Irina +Ivey +Izabel +Izabelle +Jacquelin +Jaela +Jakeria +Jakyra +Jalen +Jalia +Jalissa +Janine +Jaslyn +Jennie +Jessenia +Joan +Jodi +Joselin +Jovanna +Justina +Kaeli +Kai +Kalli +Kaniya +Karah +Karin +Kaytlyn +Kelsi +Kenia +Kim +Kinsey +Kodi +Kristi +Kyanna +Lakeisha +Laysha +Leia +Leigha +Lilith +Lori +Lynette +Macayla +Maci +Madelaine +Madelin +Maiya +Malorie +Michaella +Milan +Mindy +Mireya +Misty +Monserrat +Nailah +Naisha +Nallely +Neha +Nikole +Nykeria +Odalis +Olyvia +Raelin +Rayven +Rebeka +Reese +Rene +River +Romy +Rory +Rowan +Ryanna +Samiya +Sapphire +Scarlet +Shaelyn +Shelbie +Sommer +Sonya +Sophonie +Starr +Stevie +Sumer +Taliah +Tasha +Tea +Thelma +Tiera +Trisha +Tristin +Tytianna +Valencia +Yulianna +Yvonne +Zakiya +Zaniah +Zara +Zharia +Zykeria +Ada +Adelaide +Adia +Adrianne +Aidan +Alanah +Alaya +Alayah +Alisia +Alycia +Amirah +Andreina +Andrew +Anijah +Anjolie +Annelise +Asha +Ashlin +Aundrea +Austin +Ayonna +Baylie +Bertha +Betsy +Billie +Blessing +Briyanna +Cailey +Cailyn +Candy +Carsyn +Catrina +Caylie +Caylin +Chanelle +Chantelle +Charley +Chaya +Chelsy +China +Christal +Christelle +Christianna +Chyenne +Cielo +Citlalli +Cloe +Daeja +Daejah +Dalia +Daphney +Darian +Darla +Destyni +Devan +Edna +Elayna +Eleni +Emalee +Emmanuelle +Eriana +Estefani +Estefany +Estella +Evangelina +Fayth +Felisha +Flor +Francis +Francisca +Frankie +Gaelle +Galilea +Genna +Gianni +Giulia +Gretchen +Gwyneth +Haily +Harlie +Heavenly +Heidy +Iana +Iman +Ines +Irma +Italia +Ivelisse +Jacelyn +Jaeda +Jael +Jakira +Jamari +Janaya +Janee +Janel +Janyah +Jaquelin +Jaycie +Jazlynn +Jazzmine +Jazzmyn +Jeanna +Jeannie +Jenelle +Jianna +Jill +Joann +Jordana +Josefina +Jourdyn +Julieta +Kaci +Kaelin +Kaily +Kalani +Kaliah +Kalie +Kalista +Kalysta +Kamilah +Kamille +Karizma +Karlee +Karmen +Karyna +Katelynne +Katharina +Katiana +Katina +Katlin +Kayana +Kaytlin +Kenna +Kenyatta +Keona +Kerri +Khadijah +Khalia +Kortney +Kristian +Kyah +Kyana +Kyrah +Lainey +Lanie +Laniya +Leandra +Leena +Leonela +Lesli +Lexy +Lili +Lilia +Lilianna +Lillianna +Linsey +Lisset +Liyah +Lorna +Madalynn +Maeve +Magali +Magnolia +Makyla +Malina +Marah +Mariajose +Marianne +Maricela +Markia +Marlana +Maryah +Maryssa +Mercedez +Michala +Morghan +Nakiyah +Nalleli +Natalee +Nautica +Niyah +Nova +Nylah +Ocean +Pauline +Presley +Priscila +Raelyn +Rena +Romina +Roneisha +Rosalyn +Roxanne +Saige +Sailor +Salina +Saniya +Sarena +Sequoia +Shae +Shakeria +Shakia +Shakyra +Shamaria +Shiann +Shivani +Shyanna +Simran +Sofie +Stacie +Stephania +Storm +Tahlia +Teanna +Tonya +Traci +Valarie +Violet +Vivianna +Wynter +Yesica +Yoana +Yoselin +Zada +Zainab +Zarria +Abigael +Abigale +Abriana +Adilene +Adina +Adria +Ajah +Alea +Aleksandra +Alessia +Alexas +Alexcia +Alexie +Allissa +Alyia +Amariah +Ami +Amie +Amiyah +Analise +Anayah +Andrianna +Angelia +Angelita +Aniah +Anisha +Anjelina +Annalisa +Annemarie +Araya +Ariadne +Ariyana +Arleth +Arrianna +Ashia +Ashli +Asiah +Avigail +Ayanah +Azalea +Azariah +Azucena +Bayleigh +Belle +Bentley +Beyounce +Bianka +Blair +Brea +Breyana +Breyanna +Brianda +Brianny +Briauna +Britni +Brynn +Caila +Callista +Campbell +Carole +Cecily +Chana +Chassidy +Cheyanna +Cheyene +Chole +Chynna +Cinthia +Citlaly +Claudine +Colette +Connie +Cori +Corrine +Cortney +Cydney +Danisha +Danya +Dariana +Darien +Dashia +Daylin +Deana +Deisy +Delia +Denisse +Destanee +Dianelys +Dianne +Divine +Dora +Doreen +Doris +Dynasty +Ebonie +Elexia +Elexis +Emmanuela +Emmy +Emoni +Eryka +Erykah +Evangeline +Flora +Freya +Gemma +Gianella +Gisell +Gwenyth +Hanah +Harli +Hayle +Imelda +Infant +Itzel +Iyonna +Jabria +Jaelynn +Jaila +Jaileen +Jaimie +Jakiyah +Jakya +Jamaya +Jami +Jamiyah +Janaye +Janeliz +Janise +Jaydah +Jean +Jeannette +Jennah +Jesica +Jiselle +Jolee +Jorden +Josselyn +Juliann +Julysa +Kaili +Kalei +Kalena +Kallie +Kalynn +Kameryn +Kandace +Karlyn +Kassie +Katalina +Kathia +Kaylei +Keaira +Keeley +Keily +Keonna +Kerrigan +Kiarah +Kisha +Kiyanna +Kyrsten +Laci +Laisha +Lani +Laniyah +Laynee +Lazaria +Leighann +Leilany +Lela +Leonor +Leslye +Lidia +Lilyana +Lizette +London +Lorelei +Luciana +Lucila +Mabel +Mackenzy +Madaline +Maddalena +Madysen +Mae +Magdalena +Makala +Malak +Marielena +Mariella +Markayla +Marlen +Maryann +Mayah +Mayte +Melani +Melonie +Merritt +Michayla +Mickayla +Mickenzie +Mikyla +Millie +Mona +Myesha +Myriam +Najah +Nakya +Nalani +Natania +Nehemie +Nicola +Noa +Novalee +Paloma +Peri +Petra +Pilar +Racquel +Raelynn +Ragan +Raine +Rania +Raniyah +Rebecka +Reece +Renae +Rhyan +Ria +Richelle +Riya +Roxanna +Rubi +Saira +Samanta +Samiyah +Santana +Sarahi +Saray +Selma +Shamaya +Shamiya +Shannah +Shantel +Shantrell +Shay +Shaylin +Shaylyn +Sheena +Shelsey +Shelsy +Sherry +Shoshana +Silvana +Starla +Stefani +Stephane +Susanna +Suzette +Taisha +Tala +Tamesha +Tamiah +Tamiyah +Taniah +Tanija +Tarah +Tasia +Teah +Tegan +Terra +Terria +Terrica +Tionna +Tobi +Tory +Trinidy +Venus +Yamile +Yanet +Yareli +Yulisa +Zayna +Zenobia +Zipporah +Emily +Madison +Ashley +Isabella +Hannah +Brianna +Sarah +Samantha +Alexis +Alyssa +Kayla +Victoria +Abigail +Elizabeth +Taylor +Olivia +Jessica +Nicole +Lauren +Jasmine +Emma +Sophia +Jennifer +Alexandra +Rachel +Chloe +Natalie +Amanda +Grace +Megan +Hailey +Destiny +Kaitlyn +Savannah +Maria +Sydney +Morgan +Katherine +Haley +Julia +Anna +Stephanie +Jordan +Gabriella +Mia +Aaliyah +Brooke +Andrea +Gabriela +Mackenzie +Faith +Amber +Sofia +Vanessa +Gabrielle +Alexa +Jada +Melanie +Jade +Sierra +Sara +Rebecca +Makayla +Ashanti +Jenna +Angelina +Kaylee +Sabrina +Allison +Trinity +Danielle +Christina +Zoe +Briana +Michelle +Daniela +Kimberly +Kylie +Katelyn +Melissa +Paige +Caroline +Mary +Shelby +Courtney +Riley +Arianna +Autumn +Ariana +Isabel +Adriana +Ana +Angela +Laura +Alexandria +Breanna +Jacqueline +Angel +Maya +Madeline +Alicia +Bianca +Cheyenne +Lily +Bailey +Natalia +Alexia +Tiffany +Catherine +Leah +Angelica +Valerie +Kelly +Erin +Kiara +Isabelle +Mikayla +Amy +Cassandra +Katie +Juliana +Caitlin +Jocelyn +Gianna +Lindsey +Marissa +Tatiana +Summer +Diana +Cassidy +Ava +Veronica +Jillian +Amelia +Erica +Skylar +Carolina +Daniella +Kelsey +Karina +Valeria +Mya +Camila +Kyla +Caitlyn +Genesis +Lillian +Kathryn +Delaney +Madelyn +Valentina +Jordyn +Mariah +Hope +Erika +Chelsea +Crystal +Hanna +Ella +Julianna +Miranda +Brittany +Heather +Jamie +Jasmin +Kristen +Adrianna +Kendall +Monica +Aliyah +Audrey +Avery +Naomi +Karen +Ashlyn +Desiree +Diamond +Meghan +Lizbeth +Sophie +Evelyn +Hayley +Jayla +Molly +Shannon +Leslie +Nadia +Alana +Julie +Lydia +Mckenzie +Nevaeh +Cynthia +Daisy +Jazmine +Nina +Aubrey +Kaitlin +Alejandra +Cameron +Gracie +Savanna +Mariana +Angie +Cierra +Kylee +Rylee +Joanna +Rebekah +Amaya +Karla +Kassandra +Natasha +Ariel +Kiana +Kate +Nathalie +Bryanna +Margaret +Michaela +Kennedy +Kristina +Priscilla +Charlotte +Claudia +Haylee +Ashleigh +Brenda +Ciara +Claire +Holly +Makenzie +Carly +Raven +Asia +Britney +Cheyanne +Heaven +Jazmin +Layla +Nia +Peyton +Abby +Anastasia +Annabelle +Yesenia +Jaden +Kara +Macy +Payton +Eva +Giselle +Melody +Skyler +Yasmin +Casey +Kailey +Kaley +Paola +Serena +Alissa +Imani +Alexus +Esmeralda +Reagan +Sandra +Zaria +Camryn +Carla +Katelynn +Katrina +Kyra +Patricia +Rachael +Shayla +Kathleen +Mallory +Bethany +Christine +Cristina +Logan +Tiana +Amari +Aniyah +Cecilia +Kirsten +Nayeli +Raquel +Brittney +Dakota +Elena +Elise +Francesca +Zoey +Lindsay +Sasha +Serenity +Alina +Dominique +Mckenna +Tori +Vivian +Alison +Cindy +Deanna +Selena +Lisa +Marisa +Sadie +Talia +Camille +Esther +Fatima +Krystal +Liliana +Makenna +Ruth +Alisha +Dana +Emely +Haleigh +Jadyn +Leila +Aniya +Carmen +Janae +Emilee +Emilie +Georgia +India +Kayleigh +Marina +Skye +Tamia +Tara +Bella +Deja +Jayda +Kira +Nyla +Renee +Ruby +Sarai +Alondra +Ashlee +Deborah +Eden +Kendra +Laila +Precious +Shania +Yasmine +Addison +Alaina +Ashlynn +Bridget +Isabela +Lilly +Marisol +Rosa +Rose +Shakira +Carolyn +Gloria +Janiya +Juliette +Kamryn +Leilani +Tatyana +Alanna +Brooklyn +Celeste +Denise +Izabella +Jayden +Julissa +Kassidy +Whitney +Catalina +Jazlyn +Justice +Kaitlynn +Kaylie +Lauryn +Lexi +Mckayla +Miracle +Paulina +Virginia +Barbara +Ellie +Guadalupe +Linda +Lorena +Lucia +Maggie +Marie +Meagan +Melany +Tamara +Tia +Allyson +Angelique +Ansley +April +Carissa +Halle +Janiyah +Kristin +Mercedes +Sharon +Annie +Gina +Joy +Lucy +Madeleine +Nancy +Sidney +Tessa +Tyra +Alessandra +Arielle +Ayanna +Brandi +Clara +Hailee +Jenny +Juliet +Kaila +Nichole +Sage +Simone +Theresa +Elisa +Giovanna +Heidi +Madisyn +Maia +Monique +Paris +Teresa +Tyler +Abbey +Josephine +Kiersten +Krista +Kyleigh +Malia +Melina +Noelle +Pamela +Paula +Shyanne +Sonia +Taliyah +Thalia +Tianna +Ayana +Dasia +Felicity +Jewel +Karissa +Susan +Wendy +Ashton +Chasity +Clarissa +Eliana +Gisselle +Iris +Jacquelyn +Jaelyn +Jaida +Janelle +Johanna +Kaia +Kailyn +Kaleigh +Lacey +Nya +Shaniya +Tabitha +Tania +Tiara +Annette +Antonia +Breana +Eliza +Felicia +Helen +Kasey +Lara +Miriam +Ryleigh +Viviana +Ainsley +Charity +Dayana +Destinee +Elisabeth +Jaliyah +Jessie +Katlyn +Kiera +Lyric +Reese +Regan +Stacey +Tatianna +Willow +Alysa +Anabella +Ann +Brandy +Brenna +Celine +Estefania +Genevieve +Gwendolyn +Janet +Josie +Rhiannon +Aisha +Alice +Alyson +Anaya +Callie +Ericka +Fiona +Harley +Irene +Jakayla +Kaylin +Kierra +Kiley +Larissa +Madalyn +Nathaly +Alivia +Allie +Amani +Anne +Antonella +Anya +Brielle +Bryana +Helena +Hunter +Julianne +Kianna +Liberty +Lisbeth +Nora +Nyah +Robyn +Taryn +Aileen +Amya +Celina +Isis +Ivy +Jamya +Janessa +Jazmyn +Kali +Kendal +Lea +Lena +Luz +Perla +Sade +Shayna +Skyla +Adrienne +Aimee +Alisa +Aliya +Anabelle +Anahi +Araceli +Cara +Ciera +Devin +Emilia +Farah +Hallie +Iyana +Jesenia +Lola +Lourdes +Madyson +Marilyn +Mayra +Noemi +Penelope +Piper +Samara +Sheila +Stephany +Taniya +Tayler +Toni +Zoie +Angeline +Aria +Baylee +Beatriz +Carlie +Cassie +Cayla +Eileen +Harmony +Hayden +Iliana +Jolie +Joyce +Kaya +Micaela +Nataly +Priscila +Shea +Stacy +Tierra +Alexandrea +Anabel +Annabella +Armani +Aryanna +Aurora +Carina +Chanel +Christy +Damaris +Deasia +Fabiola +Gillian +Halie +Haylie +Jaiden +Jasmyn +Kaliyah +Luna +Maddison +Maegan +Marianna +Meredith +Montana +Shyann +Sylvia +Teagan +Abbie +Abbigail +Alayna +Athena +Destiney +Destini +Eleanor +Fernanda +Jane +Janice +Jena +Joselyn +Juana +Justine +Kenya +Nathalia +Phoebe +Reyna +Rylie +Sanaa +Valery +Xiomara +Yadira +Zariah +Aleah +Anika +Aubree +Baby +Carlee +Carrie +Cecelia +Daphne +Eve +Giana +Giuliana +Itzel +Jalynn +Janiah +Jaqueline +Kathy +Keyla +Leanna +Liana +Lilian +Lillie +Miah +Natalya +Princess +Rayna +Rebeca +Samira +Sandy +Savana +Tanya +Unique +Adeline +Aiyana +Anais +Annika +Ariyana +Brionna +Carley +Chelsey +Coral +Donna +Ebony +Elisha +Esperanza +Jaclyn +Jimena +Judith +Kailee +Kaiya +Katerina +Kaylah +Kayley +Keisha +Kelli +Laurel +Lesley +Lissette +Manuela +Marley +Martina +Mikaela +Milagros +Nicolette +Raegan +Sienna +Susana +Sydni +Taniyah +Austin +Ayla +Bailee +Candace +Celia +Chiara +Christian +Christie +Dorothy +Emmalee +Fabiana +Gia +Haven +Iyanna +Janay +Jaylene +Jazmyne +Kaylyn +Lana +Lesly +Marcela +Maribel +Mariela +Meadow +Regina +Shawna +Tristen +Abigayle +Agustina +Alexys +Ally +Amaris +Anissa +Aracely +Ashly +Azaria +Carson +Chyna +Daija +Daisha +Danae +Denisse +Elle +Elyssa +Essence +Frances +Hailie +Jeniffer +Katarina +Keely +Keila +Kelsie +Kyara +Leticia +Lia +Madelynn +Mara +Nikki +Norma +Robin +Salma +Scarlett +Selina +Shirley +Silvia +Sydnee +Taina +Tracy +Ximena +Alize +Alycia +Amira +Ashante +Astrid +Bria +Camilla +Casandra +Colleen +Dajah +Elaina +Elissa +Ellen +Jadah +Jayde +Jaylah +Joelle +Julisa +Kai +Kamila +Karlee +Keyonna +Kourtney +Kristine +Lexie +Madilyn +Mariam +Marlee +Myah +Niya +Odalys +Reina +Rosalinda +Sarina +Savanah +Selah +Shaniah +Shanice +Shaniyah +Sydnie +Tanisha +Tyanna +Violet +Zaniyah +Aliana +Alliyah +Belen +Christa +Chyanne +Dallas +Dejah +Desirae +Diane +Dulce +Fallon +Ingrid +Ivette +Jackeline +Jailyn +Jamia +Jaylin +Jenifer +Joana +Joanne +Karis +Karlie +Kasandra +Katharine +Kayle +Kaylynn +Keira +Kenna +Kiya +Kristy +Leandra +Liz +Lyndsey +Macey +Maci +Makaila +Miya +Nakiya +Nicolle +Nikita +Noel +Noelia +Ravyn +Reilly +Rochelle +Rosemary +Roxana +Ryan +Shaina +Shamya +Shaylee +Sky +Yazmin +Yessenia +Yuliana +Zakiya +Aidan +Alani +Allana +Alma +Anastacia +Annabel +Annamarie +Aryana +Cali +Carli +Corinne +Cristal +Daja +Darian +Darlene +Dawn +Dayanara +Desire +Devon +Dina +Edith +Emerson +Franchesca +Hana +Jalyn +Jania +Jashanti +Jasmyne +Jazlynn +Journey +Karli +Katia +Kenia +Kennedi +Keyanna +Kirstin +Kiyah +Kyndall +Leann +Lila +Lina +Lisbet +Lisette +Macie +Madisen +Makena +Maleah +Milena +Nyasia +Oriana +Raina +Reanna +Rocio +Samaria +Sequoia +Shanya +Soleil +Star +Stefanie +Stella +Tatum +Yolanda +Alena +Alexi +Alia +Aliah +Aliza +Alysha +Anjali +Annalise +Arely +Asha +Aspen +Breonna +Brianne +Calista +Candice +Caylee +Chantal +Daijah +Dalia +Darby +Delia +Dianna +Emani +Estrella +Haily +Isabell +Ivana +Ivanna +Jaime +Janna +Jaylyn +Jodi +Joslyn +Kalyn +Kamya +Kaylen +Kellie +Kenzie +Keziah +Kierstin +Laney +Lilliana +Lizbet +Martha +Micah +Moriah +Myla +Myra +Nadine +Nikole +Presley +Rachelle +Rashel +Sabina +Shyla +Sonya +Tamya +Tristan +Yvonne +Zaniya +Abriana +Aja +Aleena +Alisia +Alysia +America +Amiyah +Anamaria +Ananda +Angelia +Anisa +Anita +Brook +Chantel +Cora +Dayna +Delanie +Delilah +Demetria +Devyn +Drew +Dylan +Eboni +Elaine +Emerald +Eryn +Fiorella +Flor +Harper +Hazel +Heidy +Infant +Jacklyn +Jaela +Jaila +Jalissa +Jamila +Jamiya +Janya +Jayme +Jeanette +Jeanna +Joann +Jovanna +Juanita +Kacie +Kaela +Kaelyn +Kailah +Kalani +Kamaria +Kayleen +Keara +Kiah +Kimberlee +Kinsey +Kylah +Lani +Lashanti +Leanne +Lexus +Lidia +Luana +Makiya +Margarita +Marianne +Maritza +Marlene +Maxine +Michele +Mina +Mollie +Monet +Mykayla +Natalee +Nayla +Octavia +Rhianna +Rita +Rosalie +Rosemarie +Rowan +Saniya +Shelbie +Shyanna +Siera +Taya +Tayla +Tea +Tyana +Vanesa +Winter +Abigale +Ada +Aiyanna +Alannah +Allyssa +Amara +Amaria +Amina +Anjelica +Annabell +Annmarie +Ariadna +Beatrice +Bianka +Blake +Bonnie +Brea +Breyanna +Bridgette +Cailyn +Caitlynn +Cami +Campbell +Carol +Charisma +Chelsie +Christen +Christiana +Dahlia +Destany +Estefani +Giulia +Gwyneth +Halee +Hayleigh +Ilana +Imari +Indya +Jaleah +Jana +Janaya +Janeth +Jayleen +Jaylynn +Jennie +Jensen +Johana +Julieta +Kacey +Kalei +Kalina +Kameron +Karley +Karolina +Kayli +Keily +Keri +Kerry +Kiarra +Kinsley +Kya +Latavia +Leigha +Leyla +Lilah +Livia +Lorraine +Magdalena +Makala +Marcella +Marian +Maricela +Maryam +Mireya +Olga +Parker +Patrice +Quinn +Renata +Rianna +Saige +Samaya +Samya +Saniah +Sapphire +Shana +Shanel +Shanna +Tatiyana +Tess +Treasure +Yasmeen +Yazmine +Zykeria +Abagail +Abrianna +Abril +Adela +Akira +Alecia +Aleigha +Alex +Alexcia +Alexzandria +Amerie +Anaiya +Areli +Aylin +Azariah +Bayleigh +Beverly +Brieanna +Brooklynn +Callista +Charlize +Cheyann +Dara +Darla +Debra +Elianna +Elyse +Endia +Estefany +Farrah +Georgina +Gladys +Glory +Griselda +Hadley +Jackie +Jaelynn +Jaidyn +Jakiya +Janie +Jaquelin +Jaycee +Jaylen +Jayna +Jennah +Jessenia +Jessika +Jodie +Josey +Kalia +Kaniya +Karly +Katelin +Katherin +Katiana +Katlin +Katlynn +Katy +Katya +Kaycee +Kaytlin +Keyona +Khaliyah +Kori +Krysta +Laniya +Lazaria +Leeann +Leena +Litzy +Lizeth +Lori +Luisa +Maliyah +Mandy +Markayla +Mason +Mattie +Maura +Melinda +Melisa +Mila +Mindy +Monserrat +Naiya +Naya +Neha +Nelly +Noa +Noor +Racheal +Ria +Sariah +Scarlet +Shekinah +Sheridan +Shianne +Siena +Silvana +Symone +Tabatha +Tamar +Tamera +Terra +Timia +Tina +Tiyana +Trinitee +Tykeria +Yamilet +Yanet +Yaquelin +Yoselin +Adreanna +Adria +Adrian +Aida +Aislinn +Alanis +Alaya +Alaysia +Alexander +Amiracle +Analise +Anayah +Anayeli +Andie +Aniah +Anja +Annalisa +Anyssa +Ashari +Ashia +Ashlie +Ashtyn +Autum +Beyonce +Blanca +Bree +Breyonna +Bridgett +Cadence +Cameryn +Carleigh +Celena +Chandler +Charlene +Citlaly +Cloe +Dania +Danisha +Danna +Danyelle +Daphney +Deandra +Deena +Demi +Dena +Destinie +Dixie +Elana +Elia +Emalee +Emelie +Eunice +Georgette +Gianni +Gissel +Graciela +Hillary +Jacey +Jacinda +Jacquelin +Jaedyn +Jakeria +Jalisa +Janely +Jaquelyn +Jaslyn +Jessi +Joan +Joi +Jordana +Jordynn +Joselin +Kaci +Kailynn +Kaleah +Kalie +Kaniyah +Karsyn +Katalina +Katheryn +Kaytlyn +Keanna +Keasia +Keeley +Kelsea +Kelsi +Kimora +Kristi +Kyndal +Lacie +Lainey +Leana +Lexy +Lilia +Liyah +Liza +Love +Luciana +Lynn +Lynsey +Macayla +Makenzi +Malaysia +Mariajose +Maryann +Micayla +Milan +Mira +Nadya +Nalani +Niyah +Nydia +Paloma +Patience +Queen +Raelyn +Rhonda +Riana +Richelle +Riya +Roberta +Rory +Ryann +Salome +Samia +Samiyah +Shae +Shaelyn +Shakayla +Shamaria +Shantel +Shantell +Shelly +Shreya +Siara +Skyy +Sneha +Stormy +Taelor +Tai +Tamiya +Tammy +Tera +Terri +Tionna +Tracey +Traci +Trista +Tristin +Tyesha +Tyla +Vianna +Yaire +Yakira +Yaritza +Yulianna +Yulissa +Yvette +Zahria +Zaniah +Zion +Adamari +Adamaris +Adelina +Adina +Ailyn +Alba +Alyssia +Amalia +Amariah +Amberlyn +Ambria +Amelie +Amia +Amie +Amirah +Amiya +Anabell +Anamarie +Ananya +Aneesa +Angely +Annaliese +Annamaria +Annemarie +Antoinette +Arden +Ariella +Arlene +Ashaunti +Ashely +Ashli +Aya +Ayleen +Aysia +Azucena +Baleigh +Belinda +Bernadette +Betty +Bibiana +Billie +Breeanna +Briannah +Briauna +Brigitte +Briley +Brisa +Britany +Briyanna +Brynn +Bryonna +Caliyah +Casie +Cassidi +Cathryn +Chana +Chantelle +Charlie +Chassity +Chaya +Cherish +Christal +Christelle +Chyenne +Ciarra +Citlali +Clare +Colby +Constance +Cori +Cortney +Danasia +Danesha +Dani +Darcy +Dasani +Dasha +Dayanna +Denisha +Deven +Diamonique +Dianne +Divya +Dyamond +Elayna +Elicia +Elsa +Elysia +Ember +Emiliana +Emmanuela +Emmy +Emory +Eriana +Francisca +Gabriel +Gabriele +Giavanna +Gisel +Gissell +Grayson +Haile +Haileigh +Hali +Harli +Harmoni +Ileana +Ireland +Ivory +Jael +Jaileen +Jailynn +Jaimee +Jakhia +Jakira +Jameria +Jamiah +Janai +Janette +Jaya +Jaycie +Jazzmine +Josefina +Joseline +Jourdyn +Journee +Judy +Kadence +Kaelynn +Kaili +Kala +Kaliah +Kamari +Kamia +Kamiyah +Kari +Karol +Kelley +Keren +Kerri +Kortney +Kristian +Kyah +Kyana +Kyrsten +Lacy +Laurie +Lee +Leeanna +William +James +Charles +George +Frank +Joseph +Thomas +Henry +Robert +Edward +Harry +Walter +Arthur +Fred +Albert +Samuel +David +Louis +Joe +Charlie +Clarence +Richard +Andrew +Daniel +Ernest +Will +Jesse +Oscar +Lewis +Peter +Benjamin +Frederick +Willie +Alfred +Sam +Roy +Herbert +Jacob +Tom +Elmer +Carl +Lee +Howard +Martin +Michael +Bert +Herman +Jim +Francis +Harvey +Earl +Eugene +Ralph +Ed +Claude +Edwin +Ben +Charley +Paul +Edgar +Isaac +Otto +Luther +Lawrence +Ira +Patrick +Guy +Oliver +Theodore +Hugh +Clyde +Alexander +August +Floyd +Homer +Jack +Leonard +Horace +Marion +Philip +Allen +Archie +Stephen +Chester +Willis +Raymond +Rufus +Warren +Jessie +Milton +Alex +Leo +Julius +Ray +Sidney +Bernard +Dan +Jerry +Calvin +Perry +Dave +Anthony +Eddie +Amos +Dennis +Clifford +Leroy +Wesley +Alonzo +Garfield +Franklin +Emil +Leon +Nathan +Harold +Matthew +Levi +Moses +Everett +Lester +Winfield +Adam +Lloyd +Mack +Fredrick +Jay +Jess +Melvin +Noah +Aaron +Alvin +Norman +Gilbert +Elijah +Victor +Gus +Nelson +Jasper +Silas +Christopher +Jake +Mike +Percy +Adolph +Maurice +Cornelius +Felix +Reuben +Wallace +Claud +Roscoe +Sylvester +Earnest +Hiram +Otis +Simon +Willard +Irvin +Mark +Jose +Wilbur +Abraham +Virgil +Clinton +Elbert +Leslie +Marshall +Owen +Wiley +Anton +Morris +Manuel +Phillip +Augustus +Emmett +Eli +Nicholas +Wilson +Alva +Harley +Newton +Timothy +Marvin +Ross +Curtis +Edmund +Jeff +Elias +Harrison +Stanley +Columbus +Lon +Ora +Ollie +Russell +Pearl +Solomon +Arch +Asa +Clayton +Enoch +Irving +Mathew +Nathaniel +Scott +Hubert +Lemuel +Andy +Ellis +Emanuel +Joshua +Millard +Vernon +Wade +Cyrus +Miles +Rudolph +Sherman +Austin +Bill +Chas +Lonnie +Monroe +Byron +Edd +Emery +Grant +Jerome +Max +Mose +Steve +Gordon +Abe +Pete +Chris +Clark +Gustave +Orville +Lorenzo +Bruce +Marcus +Preston +Bob +Dock +Donald +Jackson +Cecil +Barney +Delbert +Edmond +Anderson +Christian +Glenn +Jefferson +Luke +Neal +Burt +Ike +Myron +Tony +Conrad +Joel +Matt +Riley +Vincent +Emory +Isaiah +Nick +Ezra +Green +Juan +Clifton +Lucius +Porter +Arnold +Bud +Jeremiah +Taylor +Forrest +Roland +Spencer +Burton +Don +Emmet +Gustav +Louie +Morgan +Ned +Van +Ambrose +Chauncey +Elisha +Ferdinand +General +Julian +Kenneth +Mitchell +Allie +Josh +Judson +Lyman +Napoleon +Pedro +Berry +Dewitt +Ervin +Forest +Lynn +Pink +Ruben +Sanford +Ward +Douglas +Ole +Omer +Ulysses +Walker +Wilbert +Adelbert +Benjiman +Ivan +Jonas +Major +Abner +Archibald +Caleb +Clint +Dudley +Granville +King +Mary +Merton +Antonio +Bennie +Carroll +Freeman +Josiah +Milo +Royal +Dick +Earle +Elza +Emerson +Fletcher +Judge +Laurence +Neil +Roger +Seth +Glen +Hugo +Jimmie +Johnnie +Washington +Elwood +Gust +Harmon +Jordan +Simeon +Wayne +Wilber +Clem +Evan +Frederic +Irwin +Junius +Lafayette +Loren +Madison +Mason +Orval +Abram +Aubrey +Elliott +Hans +Karl +Minor +Wash +Wilfred +Allan +Alphonse +Dallas +Dee +Isiah +Jason +Johnny +Lawson +Lew +Micheal +Orin +Addison +Cal +Erastus +Francisco +Hardy +Lucien +Randolph +Stewart +Vern +Wilmer +EMILY +ASHLEY +SAMANTHA +ISABELLA +MIA +NATALIE +SOPHIA +EMMA +ALYSSA +MADISON +JASMINE +ELIZABETH +JESSICA +KIMBERLY +ABIGAIL +BRIANNA +JENNIFER +AVA +HANNAH +SARAH +ALEXIS +ANDREA +ANGELINA +STEPHANIE +VANESSA +DANIEL +ANTHONY +ANGEL +DAVID +JOSHUA +JOSE +ANDREW +JACOB +MATTHEW +MICHAEL +JONATHAN +CHRISTOPHER +JOSEPH +ALEXANDER +NATHAN +ETHAN +RYAN +DIEGO +JUAN +KEVIN +BRANDON +CHRISTIAN +LUIS +JESUS +GABRIEL +EMILY +ISABELLA +ASHLEY +MIA +SAMANTHA +NATALIE +SOPHIA +EMMA +ABIGAIL +AVA +MADISON +ELIZABETH +ALYSSA +BRIANNA +KIMBERLY +JASMINE +ANDREA +JESSICA +ALEXA +OLIVIA +HANNAH +VALERIA +ANGELINA +SARAH +JOCELYN +DANIEL +ANTHONY +ANGEL +JACOB +DAVID +ANDREW +JOSE +JOSHUA +CHRISTOPHER +MATTHEW +DIEGO +MICHAEL +JONATHAN +ALEXANDER +NATHAN +ETHAN +JOSEPH +CHRISTIAN +ADRIAN +JUAN +BRANDON +LUIS +KEVIN +RYAN +JESUS +EMILY +ISABELLA +SOPHIA +ASHLEY +SAMANTHA +MIA +NATALIE +EMMA +ALYSSA +JOCELYN +ELIZABETH +AVA +ABIGAIL +KIMBERLY +MADISON +OLIVIA +BRIANNA +SOFIA +JASMINE +ANDREA +VANESSA +HANNAH +CHLOE +ALEXA +VICTORIA +DANIEL +ANTHONY +ANGEL +JACOB +DAVID +ANDREW +CHRISTOPHER +JOSHUA +JOSE +ALEXANDER +DIEGO +MATTHEW +MICHAEL +ETHAN +JONATHAN +NATHAN +JOSEPH +ADRIAN +BRANDON +KEVIN +CHRISTIAN +LUIS +ISAAC +RYAN +NOAH +EMILY +ISABELLA +SOPHIA +SAMANTHA +ASHLEY +NATALIE +MIA +EMMA +ABIGAIL +AVA +OLIVIA +ELIZABETH +MADISON +VALERIA +ALYSSA +CHLOE +KIMBERLY +SOFIA +BRIANNA +VICTORIA +ANDREA +CAMILA +JOCELYN +JASMINE +VANESSA +DANIEL +ANTHONY +ANGEL +JACOB +DAVID +ALEXANDER +ANDREW +JOSHUA +CHRISTOPHER +JOSE +MATTHEW +ETHAN +NATHAN +MICHAEL +JONATHAN +JOSEPH +ADRIAN +DIEGO +JAYDEN +BRANDON +ISAAC +NOAH +KEVIN +CHRISTIAN +RYAN +ISABELLA +SOPHIA +EMILY +MIA +SAMANTHA +NATALIE +EMMA +ASHLEY +ABIGAIL +OLIVIA +AVA +ELIZABETH +CHLOE +VALERIA +SOFIA +MADISON +ALYSSA +BRIANNA +KIMBERLY +ANDREA +CAMILA +ALEXA +VICTORIA +ALEXIS +EVELYN +DANIEL +ANTHONY +ANGEL +JACOB +ALEXANDER +ETHAN +DAVID +ANDREW +MATTHEW +JOSHUA +CHRISTOPHER +MICHAEL +NATHAN +JAYDEN +JOSE +ADRIAN +JOSEPH +JONATHAN +NOAH +ISAAC +AIDEN +CHRISTIAN +JULIAN +DIEGO +BRANDON +ISABELLA +SOPHIA +EMILY +MIA +EMMA +SAMANTHA +OLIVIA +ABIGAIL +NATALIE +AVA +SOFIA +CHLOE +ASHLEY +CAMILA +ELIZABETH +ALYSSA +VICTORIA +BRIANNA +MADISON +KIMBERLY +EVELYN +ALEXA +VALERIA +HAILEY +BELLA +JACOB +DANIEL +ANTHONY +ALEXANDER +ANGEL +ETHAN +JAYDEN +DAVID +ANDREW +NATHAN +MATTHEW +JOSHUA +NOAH +MICHAEL +CHRISTOPHER +JONATHAN +ADRIAN +AIDEN +JOSE +JULIAN +JOSEPH +ISAAC +GABRIEL +CHRISTIAN +BRANDON +SOPHIA +ISABELLA +EMILY +MIA +EMMA +OLIVIA +SOFIA +ABIGAIL +SAMANTHA +NATALIE +CAMILA +AVA +CHLOE +VICTORIA +ELIZABETH +ASHLEY +MADISON +EVELYN +KIMBERLY +ALYSSA +HAILEY +ANDREA +ELLA +ALEXA +ZOE +JACOB +DANIEL +JAYDEN +ANTHONY +MATTHEW +ALEXANDER +ETHAN +DAVID +ANDREW +NATHAN +NOAH +ANGEL +MICHAEL +JULIAN +AIDEN +JOSHUA +JONATHAN +ISAAC +MASON +ADRIAN +CHRISTOPHER +JOSEPH +JOSE +BENJAMIN +AARON +SOPHIA +ISABELLA +EMMA +EMILY +MIA +OLIVIA +SOFIA +ABIGAIL +SAMANTHA +AVA +CAMILA +VICTORIA +NATALIE +ELIZABETH +CHLOE +EVELYN +GENESIS +ASHLEY +MADISON +ZOE +CHARLOTTE +HAILEY +MELANIE +AUDREY +KIMBERLY +JACOB +JAYDEN +ETHAN +DANIEL +MATTHEW +NOAH +ALEXANDER +ANTHONY +NATHAN +ANDREW +DAVID +MICHAEL +AIDEN +ANGEL +ISAAC +JULIAN +MASON +ADRIAN +JONATHAN +JOSHUA +CHRISTOPHER +BENJAMIN +JOSEPH +LIAM +DYLAN +SOPHIA +ISABELLA +MIA +EMMA +EMILY +OLIVIA +SOFIA +ABIGAIL +CAMILA +SAMANTHA +VICTORIA +AVA +NATALIE +ELIZABETH +CHARLOTTE +CHLOE +GENESIS +AUDREY +MADISON +EVELYN +ZOE +MELANIE +GRACE +ALEXA +SCARLETT +JACOB +ETHAN +DANIEL +JAYDEN +MATTHEW +NOAH +ALEXANDER +ANTHONY +NATHAN +DAVID +MICHAEL +ANDREW +JULIAN +BENJAMIN +AIDEN +ISAAC +ANGEL +MASON +LIAM +ADRIAN +SEBASTIAN +DYLAN +JOSHUA +JOSEPH +AARON +SOPHIA +ISABELLA +EMMA +MIA +OLIVIA +EMILY +SOFIA +VICTORIA +ABIGAIL +CAMILA +AVA +SAMANTHA +CHARLOTTE +EVELYN +ELIZABETH +NATALIE +CHLOE +MADISON +GENESIS +SCARLETT +GRACE +ZOE +MELANIE +ALLISON +AUDREY +NOAH +JACOB +ETHAN +DANIEL +ALEXANDER +MATTHEW +JAYDEN +ANTHONY +SEBASTIAN +DAVID +MICHAEL +ANDREW +JULIAN +BENJAMIN +AIDEN +NATHAN +LIAM +MASON +ISAAC +AARON +ANGEL +DYLAN +JAMES +ADRIAN +LOGAN +SOPHIA +MIA +EMMA +OLIVIA +ISABELLA +EMILY +SOFIA +ABIGAIL +VICTORIA +AVA +ALEXA +CAMILA +CHARLOTTE +SAMANTHA +EVELYN +SCARLETT +MADISON +ELIZABETH +PENELOPE +ZOE +CHLOE +NATALIE +AVERY +ALLISON +ARIA +GRACE +NOAH +JACOB +ETHAN +DANIEL +MATTHEW +ALEXANDER +JAYDEN +SEBASTIAN +LIAM +DAVID +JULIAN +AIDEN +MICHAEL +NATHAN +BENJAMIN +ANTHONY +ISAAC +MASON +DYLAN +ANDREW +JAMES +ANGEL +ADRIAN +JOSEPH +ELIJAH +MIA +SOPHIA +EMMA +OLIVIA +ISABELLA +EMILY +SOFIA +CAMILA +AVA +ABIGAIL +VICTORIA +CHARLOTTE +EVELYN +SCARLETT +PENELOPE +AMELIA +ALEXA +ELIZABETH +SAMANTHA +ARIA +CHLOE +AVERY +MADISON +ZOE +GENESIS +NOAH +MATTHEW +ETHAN +DANIEL +JACOB +SEBASTIAN +ALEXANDER +JULIAN +LIAM +BENJAMIN +JAYDEN +MATEO +MICHAEL +AIDEN +DAVID +NATHAN +ANTHONY +LUCAS +JAMES +ELIJAH +ISAAC +AARON +OLIVER +DYLAN +MASON +EMMA +MIA +OLIVIA +SOPHIA +ISABELLA +EMILY +CAMILA +SOFIA +ABIGAIL +AVA +VICTORIA +CHARLOTTE +EVELYN +LUNA +SCARLETT +PENELOPE +AMELIA +ARIA +MILA +ELIZABETH +CHLOE +ZOE +GRACE +SAMANTHA +GENESIS +NOAH +SEBASTIAN +LIAM +ETHAN +MATTHEW +DANIEL +JACOB +MATEO +ALEXANDER +JULIAN +BENJAMIN +LOGAN +JAYDEN +LUCAS +AIDEN +OLIVER +DAVID +AARON +NATHAN +DYLAN +JAMES +MICHAEL +ELIJAH +ANTHONY +ISAAC +namn +Anna +Anita +Astrid +Annika +Alice +Amanda +Ann +Agneta +Anette +Alexandra +Anneli +Agnes +Anne +Alva +Alma +Angelica +Alicia +Annie +Annelie +Ann-Marie +Ann-Charlotte +Annette +Aina +Ann-Christin +Andrea +Anna-Karin +Anna-Lena +Anne-Marie +Annica +Ann-Sofie +Ann-Kristin +Ann-Mari +Ann-Britt +Asta +Ali +Ahmed +Ann-Louise +Anja +Ann-Christine +Aurora +Angela +Anna-Lisa +Ann-Sofi +Annikki +Amina +Ana +Angelina +Amelia +Alina +Amelie +Ann-Charlott +Antonia +Anna-Maria +Amalia +Angelika +Ann-Katrin +Abdi +Adele +Ann-Margret +Aleksandra +Anna-Greta +Agnieszka +Augusta +Aino +Aida +Anny +Aisha +Amal +Amira +Anna-Carin +Anastasia +Adina +Anni +Adriana +Aya +Amy +Anne-Charlotte +Anna-Stina +Abdullahi +Adela +Alfhild +Ahmad +Ada +Agnetha +Adéle +Alejandra +Albertina +Alaa +Alida +Andréa +Anders +Alexander +Andreas +Axel +Arne +Anton +Adam +Ali +Arvid +Albin +Alf +Allan +Ahmed +Alfred +André +Adrian +Ahmad +Albert +August +Alex +Alvar +Artur +Alvin +Antonio +Antero +Algot +Arnold +Arthur +Aron +Amir +Agne +Abdi +Abdullah +Alfons +Abdul +Anthony +Adnan +Abdullahi +Andréas +Abdirahman +Abbas +Assar +Adolf +Andrzej +Andrew +Alejandro +Alan +Amin +Andres +Alberto +Alexis +Ari +Amadeus +Anas +Alve +Adel +Aziz +Aaron +Abraham +Abdulrahman +Amer +Ammar +Alaa +Aleksander +Angelo +Aleksandar +Aston +Abdulkadir +Armin +Alrik +Abbe +Ahmet +Armas +Andrés +Angel +Astor +Akram +Abd +Antti +Ayman +Anwar +Andrei +Abdallah +Aram +Andre +Amar +Aaa +Attila +Adem +Arian +Birgitta +Barbro +Britt +Berit +Birgit +Britt-Marie +Britta +Beatrice +Brita +Bodil +Barbara +Beata +Bianca +Britt-Mari +Boel +Betty +Britt-Inger +Bella +Berta +Britt-Louise +Berith +Benita +Belinda +Bonnie +Brigitte +Bozena +Belle +Birthe +Beatriz +Bente +Björnsdotter +Bibbi +Bettina +Birgitte +Beate +Britt Marie +Britt Inger +Bibi +Biljana +Björg +Blenda +Bushra +Bengtsdotter +Bent +Beda +Bahar +Britten +Bashir +Bayan +Blanca +Billie +Bitte +Bernice +Bertha +Beatrix +Beth +Batoul +Bea +Bernadette +Bojan +Beryl +Borghild +Berivan +Berna +Belma +Bertilsdotter +Branka +Basma +Brith +Blanche +Berfin +Blanka +Bernhardina +Brenda +Brigitta +Bosdotter +Birgith +Bogumila +Britt-Lis +Bengta +Benedicte +Bim +Brittmarie +Ban +Bich +Berhane +Bojana +Björk +Bo +Baraa +Bengt +Bo +Björn +Bertil +Börje +Bernt +Bror +Birger +Benjamin +Benny +Bert +Bernhard +Bruno +Berndt +Billy +Bjarne +Ben +Bill +Boris +Bilal +Brian +Bengt-Åke +Berne +Bashir +Berth +Bernard +Bassam +Bastian +Bob +Bengt-Olof +Bosse +Bogdan +Bashar +Bengt-Göran +Bengt-Erik +Brynolf +Bernth +Bent +Bobby +Basel +Birk +Bo-Göran +Boo +Bengt Åke +Bruce +Branko +Buster +Bartosz +Bojan +Berthold +Berhane +Bengt-Arne +Bobo +Bonde +Bereket +Barry +Belal +Bernd +Besim +Babak +Baran +Baltzar +Burhan +Brandon +Börge +Biniam +Bengt-Olov +Bryan +Bartlomiej +Basem +Bin +Bahram +Bengt Göran +Benno +Bertel +Bajram +Bekim +Brage +Berat +Basim +Bo Göran +Behnam +Bengt-Ove +Björne +Beppe +Besnik +Basil +Benyamin +Baker +Bahman +Christina +Cecilia +Carina +Camilla +Caroline +Charlotte +Charlotta +Carolina +Christine +Carin +Clara +Catharina +Cornelia +Catarina +Carola +Christin +Christel +Cristina +Catrin +Carmen +Carolin +Cassandra +Charlott +Claudia +Cathrine +Cajsa +Carita +Celine +Catherine +Catrine +Clary +Chatarina +Carla +Cathrin +Celina +Charlie +Cindy +Constance +Céline +Claire +Christa +Caisa +Cleo +Carol +Connie +Chris +Catalina +Chanel +Chatrine +Celia +Chloé +Chelsea +Chloe +Corinne +Cynthia +Cecilie +Camila +Cristin +Celeste +Christiane +Chatrin +Cristine +Chantal +Corina +Casandra +Chanelle +Carlsdotter +Chiara +Carine +Cia +Camille +Christelle +Cicilia +Cordelia +Carolyn +Carole +Cherie +Charina +Cilla +Chi +Cim +Claesdotter +Cina +Catrina +Clarissa +Camelia +Caterina +Cristel +Claudine +Caitlin +Carl +Christer +Christian +Claes +Christoffer +Conny +Charlie +Christopher +Casper +Charles +Curt +Clas +Carlos +Christofer +Carl-Johan +Colin +Cristian +Claes-Göran +Calle +Crister +Cornelis +Caspian +Chris +Cesar +Conrad +Carl-Gustav +Carl-Erik +Constantin +Clarence +Carl-Henrik +Carsten +Carl-Gustaf +Christos +Claudio +Carl-Axel +Claus +Charbel +Carl-Magnus +Cornelius +Carl Johan +Carl-Fredrik +Carlo +Caesar +Cristoffer +Can +Collin +Clas-Göran +Camilo +Caspar +Claude +Carl-Olof +Caj +Clifford +Clemens +Christoph +Carl-Eric +Ceasar +Csaba +Chi +Carl-Gunnar +Cliff +Cuong +Christophe +Carl-Göran +Casimir +Cameron +Craig +Catalin +Carl-Åke +Claes Göran +Cyril +Czeslaw +Curth +Cay +Cezary +Cedric +Cyrus +Cristopher +Cenneth +Cem +Claes-Håkan +Calvin +Cristofer +Carl-Oscar +Connie +Cai +Carl Magnus +Cevin +Carl-Anders +Chadi +Doris +Diana +Dagmar +Dagny +Desirée +Denise +Daniela +Daniella +Del +Disa +Dorotea +Dina +Desiré +Daisy +De +Danuta +Dorota +Dorothea +Dana +Dalia +Danielle +Désirée +Desideria +Desireé +Daga +Dolores +Dora +Denice +Daria +Deborah +Debora +Dorothy +Dania +Dragana +Danijela +Dominika +Dragica +Ditte +Desiree +Dima +Dalal +Dijana +Dahir +Diane +Dilan +Dahlia +Dominique +Danica +Destiny +Dilara +Deniz +Donna +Derya +Dimitra +Davida +Delia +Donya +Doaa +Denize +Daphne +Dawood +Dorrit +Dolly +Dunia +Dorthy +Darya +Dilek +Dafina +Delina +Duaa +Despina +Denisa +Dunya +Daniel +Dalila +Donia +Dusanka +Dajana +Dawn +Darin +Dorit +Dea +Dung +Drita +Da +Desire +Dalya +Dagmara +Danielsdotter +Dorina +Daniel +David +Dan +Dennis +Dick +Douglas +Dag +Dante +Donald +Denis +Didrik +Dragan +Dylan +Dariusz +Danny +Dexter +Dimitrios +Dino +Dejan +Damian +Diego +Dawid +Denny +Dominic +Deniz +Damir +Dominik +Dieter +Devin +Dario +Dawit +Darko +Dani +Danilo +Dahir +Darin +Danial +Dean +Danijel +Dusan +Duc +Damien +Darius +De +Dimitri +Dawood +Don +Dilan +Diyar +Dana +Dirk +Dion +Daoud +Derek +Denniz +Dominique +Dorian +Dalibor +Davor +Dane +Duy +Dinh +Daud +Dung +Dara +Diar +Desmond +Daniele +Drago +Dumitru +Driton +Dzevad +Davide +Dong +Damon +Dany +Darian +Dimitris +Djordje +Darren +Dewin +Detlef +Dardan +Donny +Duncan +Demir +Dmitri +Dave +Dariush +Davood +Elisabeth +Eva +Elisabet +Emma +Elin +Elsa +Emelie +Emilia +Ebba +Ellen +Erika +Ella +Evelina +Elvira +Ester +Elise +Ellinor +Eleonora +Eivor +Ewa +Elina +Evy +Erica +Elsie +Edith +Emmy +Elizabeth +Edit +Elena +Elna +Eleonor +Elsy +Elly +Elinor +Elvy +Esther +Ellie +Eva-Lena +Engla +Emily +Emilie +Ethel +Evelyn +Else +Elisa +Erna +Eila +Eva-Britt +Emelia +Eira +Elenor +Elma +Elaine +Eleonore +Estelle +Eugenia +Elzbieta +Eva-Lotta +Eva-Marie +Emmie +Embla +Esmeralda +Emmelie +Edla +Eija +Emina +Eeva +Estrid +Elvi +Emy +Else-Marie +Elli +Enya +Eleni +Eriksdotter +Elida +Ellinore +Ellenor +Ejvor +Ewelina +Emine +Eveline +Eva-Karin +Eliza +Evelin +Emeli +Elif +Emmi +Edina +Eva-Maria +Erik +Emil +Eric +Emanuel +Elias +Edvin +Evert +Einar +Ernst +Elliot +Erland +Edvard +Erling +Elis +Edward +Ebbe +Egon +Eskil +Eddie +Evald +Edwin +Elof +Enar +Elton +Eugen +Emilio +Elvis +Elvin +Edgar +Elmer +Esbjörn +Eduardo +Enrique +Erkki +Ensio +Emir +Eugén +Emmanuel +Elliott +Edmund +Elon +Egil +Edin +Eddy +Eino +Eje +Eero +Ejnar +Esa +Ernesto +Esko +Enzo +Emad +Emin +Eilert +Eli +Emrik +Evan +Enes +Eduard +Elving +Emre +Elov +Elvir +Erich +Eve +Esteban +Efraim +Elia +Ebrahim +Erwin +Eddin +Engelbrekt +Ehsan +Erhard +Ebbot +Enver +El +Enok +Ernest +Elie +Ellert +Ervin +Eldin +Elijah +Esaias +Elwin +Einari +Erick +Eivind +Frida +Felicia +Fanny +Filippa +Freja +Fredrika +Fatima +Florence +Frideborg +Fatma +Fatemeh +Farah +Fadumo +Flora +Fia +Freya +Fiona +Fatema +Frances +Francesca +Fernanda +Francisca +Farida +Faten +Fatou +Fredrica +Fariba +Fartun +Fadia +Franziska +Faduma +Fatimah +Fahima +Fatime +Florentina +Febe +Faiza +Fideli +Fannie +Felizia +Frieda +Fredriksdotter +Farhiya +Farzaneh +Felice +Fabiola +Farideh +Fatuma +Filiz +Feven +Faith +Franciska +Farhan +Fatme +Fardowsa +Fereshteh +Fadhil +Fadila +Feride +Faisal +Fina +Fouad +Francoise +Farhiyo +Farzana +Fathi +Farhia +Francine +Faisa +Fadime +Ferial +Friederike +Firas +Francis +Freyja +Fatiha +Farahnaz +Fikreta +Faraj +Franka +Fanni +Fatmire +Fawzi +Flor +Falah +Faris +Ferida +Florina +Freweini +Fehime +Fredrik +Filip +Folke +Felix +Frank +Frans +Fabian +Fred +Fritz +Fredric +Ferdinand +Fadi +Franz +Fernando +Francisco +Freddy +Finn +Francis +Freddie +Fritiof +Frej +Felipe +Firas +Farhad +Frederik +Farid +Faisal +Fouad +Florian +Fredrick +Ferenc +Farhan +Farah +Friedrich +Francesco +Fuad +Feras +Fritjof +Fares +Flemming +Frederick +Fridolf +Faruk +Faris +Frode +Florin +Fahad +Francois +Fadil +Franco +Franciszek +Fadhil +Federico +Falah +Filmon +Fingal +Fabio +Fawzi +Frederic +Filiph +Fatih +Faraj +Fikret +Farzad +Fadel +Frits +Faysal +Franklin +Farouk +Firat +Fayez +Fride +Frithiof +Fathi +Fatmir +Faik +Ferhat +Fahed +Fehmi +Fahim +Fawaz +Filipe +Faiz +Foad +Fahmi +Furkan +Ferid +Franciscus +Frédéric +Fidel +Gunilla +Gun +Gunnel +Gerd +Gunvor +Gudrun +Greta +Gabriella +Gunhild +Gertrud +Gunborg +Gun-Britt +Gerda +Gulli +Gisela +Gull-Britt +Göta +Gunn +Gunbritt +Gurli +Gabriela +Gullan +Grace +Görel +Gabrielle +Gina +Gullvi +Gloria +Gunni +Gertie +Gull +Grazyna +Gullbritt +Gry +Git +Gunnarsdotter +Gärd +Gordana +Gun-Marie +Gunn-Britt +Gitte +Grethe +Gladys +Gill +Georgina +Galina +Ghada +Grete +Gunda +Gustava +Gabriele +Gunlög +Georgia +Göransdotter +Gerty +Gunvi +Gullevi +Ghazal +Gunny +Gull-Maj +Gördis +Graciela +Gith +Gretel +Gun-Mari +Gully +Gittan +Genet +Geraldine +Giovanna +Ginger +Georgette +Gro +Giulia +Gunnie +Gaby +Guadalupe +George +Gun-Inger +Gita +Gerti +Gul +Gunnevi +Gilda +Gun-Lis +Gertrude +Gia +Gun Britt +Gemma +Grethel +Gunnar +Gustav +Göran +Gustaf +Gösta +Georg +Gabriel +Göte +Gert +George +Gerhard +Glenn +Greger +Gottfrid +Gilbert +Gillis +Georgios +Grzegorz +Goran +Gordon +Gotthard +Görgen +Georges +Gideon +Guy +Giovanni +Gunder +Gary +Gusten +Ghassan +Gerry +Guillermo +Gerard +Gregor +Gerth +Gudmund +Gustavo +Günter +Göthe +Giuseppe +Gheorghe +Günther +Gabor +Grim +Glen +Gerald +Gregory +Gunnarsson +Germund +Gonzalo +Gaston +Gino +Gholam +Geir +Ghazi +Gunde +Graham +György +Ghaith +Gunno +Gerardo +Gert-Ove +Gyula +Gabi +German +Geoffrey +Guido +Guled +Gunne +Gökhan +Georgi +Giorgio +Goitom +Gert-Inge +Ghulam +Gullmar +Guillaume +Gavin +Gunvald +Gerardus +Gábor +Gert-Åke +Ghazwan +Gia +Grant +Gerd +Gorm +Gaby +Gholamreza +Garry +Helena +Hanna +Helen +Helene +Helén +Harriet +Hilda +Hillevi +Hedvig +Hannah +Heléne +Hilma +Helga +Hannele +Hjördis +Henrietta +Heidi +Hedda +Hassan +Hildegard +Hussein +Henny +Hildur +Hulda +Hanan +Henriette +Hala +Hana +Hanne +Hasan +Huda +Hiba +Hilkka +Halina +Halima +Helmi +Hilde +Holly +Hellevi +Herta +Hailey +Hermine +Helin +Heli +Heba +Hayat +Hamdi +Hansdotter +Hilja +Heléna +Helle +Hawa +Hatice +Hong +Hani +Helny +Hodan +Helené +Hoda +Hanaa +Héléne +Havanna +Huong +Hanin +Hafsa +Habiba +Hedwig +Helinä +Helvi +Henrika +Hee +Hellen +Halimo +Haji +Hamid +Hadi +Hind +Helfrid +Hadil +Ha +Hope +Hertha +Hawo +Hibo +Hannelore +Hameed +Haya +Hoa +Houda +Håkansdotter +Hans +Henrik +Håkan +Hugo +Henry +Harry +Harald +Hampus +Helge +Hjalmar +Holger +Herman +Henning +Hassan +Hannes +Hussein +Herbert +Hilding +Helmer +Hasan +Henric +Hamid +Hamza +Hasse +Hans-Erik +Hubert +Heikki +Hadi +Hossein +Hannu +Hilmer +Henri +Harri +Hector +Heinz +Hanna +Habib +Hans-Olof +Haris +Hussain +Hamed +Hani +Hardy +Haidar +Hans-Åke +Hermann +Hendrik +Henryk +Harley +Haider +Halvar +Heinrich +Hans-Göran +Helmut +Husein +Hashim +Halvard +Halil +Hussam +Horst +Hüseyin +Haitham +Hung +Hans-Olov +Hans Erik +Hernan +Hayder +Haji +Harun +Hazem +Husam +Hisham +Hakim +Haile +Hadar +Hoang +Haydar +Hameed +Hakan +Hemming +Henok +Hashem +Hartvig +Humberto +Hamad +Habtom +Hanad +Hhh +Hans Åke +Hatem +Ingrid +Inger +Ida +Irene +Ingegerd +Inga +Ingeborg +Ingela +Ingegärd +Isabelle +Isabella +Iréne +Iris +Inga-Lill +Irma +Inez +Isabell +Ingalill +Isabel +Ing-Marie +Inga-Britt +Ing-Britt +Ines +Ilona +Isa +Ibrahim +Ina +Ingvor +Irina +Izabella +Inkeri +Irmeli +Iman +Ingbritt +Ing-Mari +Inga-Maj +Irena +Irja +Inga-Lisa +Idun +Ilse +Irené +Izabelle +Inga-Lena +Isolde +Iwona +Ivana +Irén +Izabela +Ismail +Ingmarie +Iren +IngMari +Ia +Indra +Iza +Isadora +Ingemo +Inge +Izabell +Israa +Iva +Isra +Indira +Irmgard +Ioana +Ilham +Ingar +Ifrah +Ibtisam +Iryna +Inna +Inga-Britta +Inga-Lis +Ismael +Ildiko +Ida-Maria +Issa +Irmelin +Idil +Imad +Ingemarsdotter +Ingert +Ivy +Inas +Ikram +Ioanna +Ingabritt +Iqra +Ivonne +Ingemar +Ingvar +Ivar +Inge +Isak +Ivan +Ibrahim +Ingmar +Isac +Ismail +Ian +Ilmari +Isaac +Isidor +Igor +Imad +Issa +Istvan +Ioannis +Ismael +Idris +Isa +Imran +Ismet +Imre +Ingvald +Ilyas +Ignacio +Ioan +Ivo +Issam +Ilias +Ishak +Ingolf +Ivica +Islam +Ion +Immanuel +Ilkka +Irfan +Ilija +Isam +Israel +Ihsan +Ib +Ismo +Ihab +Ionut +Iyad +Ilir +Ingo +Isse +Ingemund +Iwan +Ireneusz +Iman +Ilari +Ingeman +Iii +Isaak +Izet +Ilpo +Ilja +Ibraheem +Iulian +Ilhan +Ilia +Ivanov +Izak +Iisakki +Ibrahem +Ilya +Iggy +Ishaq +Ilmar +Ilon +Idriz +Iqbal +István +Irving +Ingbert +Ingevald +Ionel +Iraj +Isaiah +Iosif +Ilie +Ive +Iain +Iskender +Johanna +Jenny +Julia +Jessica +Josefin +Josefine +Jeanette +Jennifer +Jennie +Josefina +Jane +Jonna +Joanna +Josephine +Jasmine +Janet +Juni +Judith +Jasmin +Joline +Jill +Julie +Jacqueline +Janina +Jessika +Judit +Jana +Jasmina +Jenni +Jaana +Jelena +Jolanta +Juliana +Joy +Jadwiga +Johanne +Justina +Janette +June +Jamila +Jenna +Jean +Juliette +Jeannette +Jannike +Junie +Justyna +Jamal +Jaqueline +Janna +Juno +Joan +Jannica +Jessie +Jansdotter +Joyce +Jeanne +Johansdotter +Jolin +Jolie +Julianna +Jama +Junis +Jasim +Jasminka +Jabbar +Jade +Juli +Jorunn +Jennica +Jannice +Janeth +Jin +Jutta +Jing +Jolina +Jannika +Jackie +Janni +Juana +Jytte +Jonasdotter +Jovana +Juliet +Janine +Jolene +Jawad +Junia +Jihan +Jung +Johan +Jan +John +Jonas +Joakim +Johannes +Jörgen +Jonathan +Jesper +Joel +Jens +Jimmy +Jakob +Jacob +Johnny +Josef +Jonny +Juhani +Jonatan +Jack +Jan-Erik +James +Julius +Jon +Jim +Jerry +Joachim +Jan-Olof +Joseph +Julian +Joacim +Jarl +Jean +Jerker +Juan +Jari +Jan-Åke +Junior +José +Jimmie +Jamal +Janne +Juha +Jose +Jorge +Jan-Olov +Jan Erik +Jamie +Joar +Jason +Jorma +Javier +Joshua +Jakub +Jarmo +Jerzy +Jozef +Jacek +Johann +Jukka +Jan-Eric +Jani +Jamil +Jan-Ove +Johny +Jaakko +Jürgen +Jalal +Janos +Janusz +Jouni +Jawad +Jouko +Jaroslaw +Jan Olof +Jordan +Jan Åke +Jasmin +Justin +Jesus +Jöns +Julio +Jaime +Jeff +Jozsef +Jussi +Josip +Joe +Jacques +Justus +Kristina +Karin +Kerstin +Katarina +Karolina +Kristin +Klara +Kajsa +Katrin +Karina +Kaarina +Kim +Katharina +Kristine +Katja +Katarzyna +Kristiina +Kyllikki +Kersti +Karolin +Karoline +Krystyna +Kate +Karla +Karen +Kaisa +Kirsti +Katrine +Katariina +Khadija +Katrina +Kirsten +Kelly +Kari +Kicki +Kamilla +Kirsi +Katalin +Ketty +Kimberly +Kathrin +Karola +Katri +Kitty +Kaija +Kathrine +Kinga +Kamila +Klaudia +Katherine +Khalid +Kornelia +Kjerstin +Katerina +Kerttu +Katriina +Kira +Käthe +Kathleen +Kia +Kaur +Kamal +Khalil +Katinka +Khaled +Karima +Kadhim +Karoliina +Kareem +Karim +Karna +Khadra +Kiara +Karita +Khalaf +Katia +Kati +Katie +Kobra +Knutsdotter +Kathe +Kayla +Kirstine +Kristel +Kay +Krista +Karlsdotter +Khadijeh +Krisztina +Kkk +Karl +Kjell +Kent +Kenneth +Kurt +Krister +Kristian +Knut +Kevin +Klas +Kristoffer +Kim +Kaj +Kenth +Kennet +Karl-Erik +Kristofer +Kalevi +Kalle +Khaled +Kenny +Kasper +Konrad +Kari +Krzysztof +Karim +Khalid +Karl-Johan +Kai +Kalervo +Khalil +Karl-Gustav +Kjell-Åke +Ken +Kian +Kumar +Kamal +Kåre +Kamil +Karl-Axel +Konstantin +Klaus +Kennert +Karl Erik +Konstantinos +Kenan +Karl-Gunnar +Keith +Kimmo +Keijo +Karol +Karam +Karl-Olof +Klas-Göran +Kemal +Karl-Gustaf +Kay +Kareem +Kjell Åke +Karl-Åke +Kacper +Kullervo +Kazimierz +Karl-Göran +Kennerth +Karsten +Kauko +Kadhim +Karl-Henrik +Karl-Oskar +Kamel +Kaarlo +Krystian +Khan +Kid +Khalaf +Kadir +Kidane +Kelvin +Kjell-Arne +Kjell-Ove +Konny +Karl Johan +Kamran +Kjell-Erik +Kewin +Karl-Arne +Kerim +Knud +Karl-Magnus +Linnéa +Lena +Linnea +Louise +Linda +Lovisa +Lisa +Lina +Lisbeth +Lilian +Linn +Lilly +Laila +Lillemor +Liv +Laura +Lotta +Lova +Lisbet +Liselotte +Lucia +Liselott +Lea +Lydia +Liisa +Leila +Lily +Livia +Lise-Lotte +Li +Leia +Leah +Leena +Lise-Lott +Lo +Lykke +Lillian +Luna +Lovis +Leona +Larsdotter +Lara +Lisette +Lill +Lana +Liza +Lola +Lilja +Lee +Lisen +Line +Leonora +Liz +Louisa +Leyla +Lis +Lizette +Lise +Lidia +Lejla +Lizzie +Lillie +Lia +Lotten +Louice +Luisa +Lynn +Lowa +Liliana +Lorena +Lin +Lucy +Layla +Lenita +Love +Lou +Lili +Lilli +Luz +Lene +Ljiljana +Leonie +Lajla +Luise +Leen +Linda-Marie +Lan +Lone +Lillan +Larisa +Lars +Lennart +Leif +Linus +Leo +Ludvig +Lucas +Liam +Lukas +Love +Leon +Lars-Erik +Ludwig +Leonard +Lars-Göran +Loke +Lars-Åke +Luis +Lars-Olof +Leopold +Levi +Lage +Louis +Lasse +Lars-Gunnar +Leonardo +Lee +Lowe +Lars Erik +Lukasz +Lars Göran +Lillebror +Lorentz +Loui +Lo +Laszlo +Lars-Ove +Lars-Olov +Louie +Lauri +Lars Åke +Leander +Lionel +Lars-Eric +Lennarth +Lars-Inge +Luka +Larry +Léon +Lennox +Lars Olof +Luca +Lorenzo +Liban +Lenny +Lion +Laith +Lars Gunnar +Leonel +Luke +Leandro +Linné +Leszek +Lamin +Lawrence +Lennie +Loa +Luciano +Lars-Håkan +Lewis +Lars-Johan +Lorenz +Lajos +Latif +Leonidas +Lars-Ola +Lennon +Laban +Luigi +Long +Lave +Lias +León +Leslie +Levin +Lars-Anders +Lex +Lazar +Lorens +Lambert +Maria +Margareta +Marie +Marianne +Malin +Monica +Matilda +Margaretha +Maja +Märta +Madeleine +Mona +Magdalena +Monika +Maj +Moa +Marita +Mari +Margit +Martina +Mikaela +Maud +Maj-Britt +Marina +Marie-Louise +Mary +My +Mathilda +Molly +Madelene +Mia +Mariana +Michelle +Michaela +Mohamed +Mariann +Marika +Majken +Marta +Maya +Marjatta +Marlene +Mimmi +Maj-Lis +Melissa +Miranda +Minna +Mohammed +May +Mira +Margot +Miriam +Mariam +Maryam +Meja +Marja +Majvor +Mirjam +Melina +Maarit +Märtha +Margret +Margaret +Marit +Malgorzata +Marielle +Martha +Mina +Melinda +Margita +Marion +Marija +Malva +Milla +Madelen +Mildred +Majlis +Mercedes +Micaela +Mariette +Melanie +Madelaine +Mirja +Maija +Mohammad +Mari-Ann +Mai +Malena +Mila +Margareth +Mikael +Magnus +Martin +Mats +Mattias +Michael +Marcus +Max +Markus +Mohamed +Mohammad +Mathias +Mohammed +Morgan +Malte +Mohamad +Melker +Melvin +Måns +Mårten +Mustafa +Micael +Mauritz +Mahmoud +Maximilian +Matti +Milton +Milo +Muhammad +Manfred +Michel +Manuel +Marko +Mario +Mark +Matias +Mio +Matts +Marco +Melwin +Mika +Mahdi +Marek +Miguel +Milan +Mehmet +Marcin +Mickael +Michal +Markku +Matthias +Marcel +Mehdi +Muhammed +Malcolm +Matteus +Manne +Marc +Mahamed +Mhd +Marius +Morris +Mostafa +Matteo +Mohamud +Mattis +Mmm +Maher +Mariusz +Majid +Martti +Matthew +Mike +Milad +Mille +Maciej +Milian +Mahmood +Mateusz +Matheo +Maximus +Mikko +Mohsen +Musa +Marian +Mauricio +Muhamed +Matz +Marwan +Md +Nina +Nathalie +Nora +Natalie +Nova +Nellie +Nicole +Nelly +Natalia +Nancy +Nadja +Nadia +Nanna +Nour +Noomi +Nike +Nanny +Noor +Naemi +Nada +Naima +Ninni +Naomi +Novalie +Nicolina +Nikki +Nadine +Nea +Nikita +Natasha +Noelle +Nikolina +Ngoc +Nur +Norma +Nasrin +Nawal +Natali +Norah +Nilsdotter +Nilla +Noelia +Ninnie +Niki +Neda +Nimo +Natasa +Nesrin +Nelli +Noura +Najma +Najah +Nahid +Naya +Narin +Narges +Noemi +Najat +Ninja +Nor +Nasra +Nazanin +Ninna +Niina +Nathalia +Nelia +Nermin +Nermina +Nomi +Nagham +Nahla +Nura +Nicola +Natalija +Nadin +Nathali +Nicoline +Noora +Nemi +Naser +Nella +Nisa +Nabila +Nikola +Nell +Natalja +Norea +Natacha +Nicki +Nicoleta +Nils +Niklas +Niclas +Nicklas +Noah +Noel +Neo +Nicolas +Natanael +Nicholas +Nils-Erik +Nikola +Noa +Nabil +Niels +Naser +Nathan +Nathanael +Nelson +Napoleon +Nikolaos +Nour +Nick +Nikolai +Nils-Olof +Nader +Nima +Nikolaj +Nikolaus +Nicolai +Nathaniel +Nenad +Nore +Nils Erik +Nils-Åke +Nasser +Noor +Naim +Norbert +Nemo +Nasir +Nino +Nur +Nikolas +Nico +Nils-Göran +Neil +Nestor +Nichlas +Nils-Gunnar +Navid +Nermin +Najib +Nisse +Nicolae +Niilo +Nihad +Ninos +Norton +Nicola +Nuur +Nazar +Nahom +Ngoc +Natnael +Naji +Niko +Norman +Nils-Olov +Nebojsa +Nilas +Nizar +Nilo +Nedim +Nedzad +Nikodemus +Natan +Nabeel +Nikita +Nemanja +Nam +Noak +Nidal +Nadim +Nils-Eric +Nuri +Nils Olof +Nadir +Nasim +Nikolay +Olivia +Olga +Ottilia +Orvokki +Omar +Osman +Ofelia +Olofsdotter +Othilia +Oliwia +Otilia +Oline +Olena +Oksana +Ophelia +Onerva +Ola +Outi +Omer +Olivera +Odette +Oili +Othman +Oda +Olympia +Olovsdotter +Oana +Oxana +Olly +Olasdotter +Oona +Osama +Oliva +Ok +Oriana +Orsolya +Oanh +Orawan +Octavia +Olina +Olimpia +Olive +Ornina +Olha +Ozra +Obaid +Olava +Olaug +Orathai +Oday +Ottilie +Omaima +Ornella +Oula +Odile +Olu +Ossie +Oktavia +Olea +Oddny +Ovesdotter +Olgica +Oraha +Oleksandra +Ósk +Olegovna +Oudah +Ooo +Onny +Oumie +Odessa +Ourania +Oi +Osk +Oskarsdotter +Olesya +Ona +Odelia +Olinda +Oya +Oddveig +Olesia +Otti +Ottonie +Omnia +Ottolina +Olars +Olla +Oscaria +Oscarsdotter +Olof +Oskar +Oscar +Olov +Ove +Olle +Oliver +Ola +Otto +Omar +Olavi +Ossian +Owe +Osman +Ole +Olav +Oliwer +Odd +Osama +Omer +Orvar +Omid +Osvald +Otis +Orlando +Olaf +Olivier +Othman +Orhan +Ozzy +Onni +Odin +Osmo +Oleg +Oden +Oskari +Olli +Olaus +Owen +Omran +Oswald +Ossi +Osborn +Osvaldo +Olow +Oiva +Oday +Olliver +Onur +Orion +Oddvar +Ousman +Omed +Oleksandr +Osborne +Ottar +Obada +Ovidiu +Ozan +Octavio +Oliwier +Odai +Olofsson +Osamah +Obaid +Oussama +Oktay +Octavian +Obaida +Ognjen +Okan +Ossama +Oddbjörn +Oswaldo +Oguzhan +Ousama +Olafur +Odal +Orm +Oluf +Oumar +Orla +Orre +Obinna +Odisho +Ored +Oudah +Ollie +Otieno +Olivér +Pia +Pernilla +Petra +Paulina +Patricia +Paula +Pauline +Petronella +Pirjo +Pamela +Pirkko +Päivi +Persdotter +Paola +Penny +Philippa +Peggy +Phuong +Patrycja +Pilar +Parisa +Petersdotter +Pauliina +Polly +Parvin +Perla +Pixie +Päivikki +Pernille +Priscilla +Paulin +Paloma +Paz +Penelope +Ping +Pippi +Panagiota +Princess +Pari +Parvaneh +Polina +Poppy +Py +Pella +Pinar +Pearl +Pelin +Pim +Pi +Phoebe +Piroska +Pyret +Priya +Paraskevi +Pranee +Patrizia +Piia +Pärsdotter +Patrice +Pegah +Pethra +Pärla +Paris +Parwin +Precious +Priyanka +Pia-Maria +Petrea +Pia-Lena +Perihan +Puck +Pascale +Paulette +Patriksdotter +Pavlina +Pers +Pandora +Petrine +Payman +Parthena +Phung +Patience +Pola +Pantea +Priscila +Pooja +Piret +Pornthip +Peri +Parveen +Per +Peter +Patrik +Paul +Philip +Pär +Pontus +Petter +Pierre +Patrick +Peder +Per-Olof +Per-Erik +Patric +Piotr +Pelle +Pekka +Pawel +Per-Åke +Petri +Petrus +Per-Olov +Percy +Per-Arne +Per-Anders +Per-Ola +Pentti +Per Olof +Pål +Pablo +Pehr +Pedro +Petteri +Pertti +Pauli +Per Erik +Patricio +Pascal +Pasi +Pavel +Philippe +Petar +Patryk +Paavo +Per-Gunnar +Per-Ove +Per Anders +Per Arne +Przemyslaw +Poul +Per Åke +Per-Inge +Panagiotis +Prince +Per-Eric +Paolo +Paulo +Per Olov +Perry +Preben +Per-Axel +Per-Johan +Petros +Pieter +Predrag +Pether +Phillip +Paulus +Per-Göran +Palle +Per Ola +Philipp +Putte +Pedram +Per-Henrik +Pier +Parviz +Per-Håkan +Peo +Pal +Peeter +Per-Magnus +Péter +Pär-Ola +Phoenix +Pietro +Per Ove +Petru +Per Gunnar +Pa +Qasim +Qamar +Quynh +Qi +Qing +Qader +Qian +Qendresa +Quyen +Qin +Queen +Qays +Qusay +Quan +Qaali +Qadir +Qais +Qasem +Qiong +Qadro +Qali +Qadra +Qamile +Que +Qizi +Qahtan +Queenie +Qassim +Qun +Qaryaqos +Qui +Qui +Qiu +Quinn +Qudsia +Qiao +Qaasim +Qutaiba +Qasin +Qianqian +Qaid +Qingqing +Qadijo +Qefsere +Qëndresa +Quy +Qadan +Qadiijo +Qassem +Qadar +Qalif +Qabas +Quoc +Qurat +Qarin +Quang +Qayssar +Qiuhong +Qiuping +Qristina +Qiuyue +Qendrese +Qadriya +Quman +Quyên +Quresh +Qiang +Qamilla +Quilla +Qu +Qim +Quinta +Qerime +Qaidar +Qiuxia +Qusai +Qianru +Qossay +Quennie +Qamer +Qaiss +Qia +Qussay +Qiuyan +Qingyun +Qina +Qianyu +Qianyi +Qvist +Qandi +Quang +Qasim +Quoc +Qais +Qasem +Qader +Quentin +Qusay +Quan +Qusai +Qadir +Qays +Qendrim +Qiang +Quy +Qahtan +Quintus +Qi +Qazim +Qadar +Qvintus +Qutaiba +Qassim +Quincy +Quyen +Qamil +Qaisar +Quinn +Qasin +Qalid +Qing +Qaiser +Qqq +Qassem +Qussay +Qui +Qamar +Qian +Qerim +Qaid +Qurban +Qudratullah +Qahraman +Qin +Qayssar +Quintin +Qaasim +Qussai +Qosai +Qaalid +Quinton +Qaed +Qani +Qaiss +Quinten +Qaryaqos +Qaddoori +Qadeer +Quyet +Qalif +Qossay +Qiao +Qorban +Qaro +Quynh +Qvitt +Qëndrim +Qorane +Qudrat +Qemajl +Qeis +Qodrat +Qrt +Qinghua +Quimey +Qazi +Qayyum +Qahar +Qalinle +Qanbar +Que +Qadri +Quirino +Quân +Qaseem +Qasm +Qim +Qun +Quno +Quirinus +Rut +Rebecca +Rebecka +Ruth +Rose-Marie +Ragnhild +Ronja +Regina +Rita +Rosa +Rigmor +Rose +Rosita +Ritva +Renée +Ros-Marie +Riitta +Rakel +Ramona +Raija +Rana +Runa +Renate +Raili +Renata +Ragna +Ros-Mari +Rania +Rima +Rosalie +Rachel +Rasha +Reem +Rosanna +Rama +Rosmarie +Rosemarie +Randi +Rahma +Rim +Rosie +René +Reidun +Roxana +Roza +Rawan +Rahaf +Rayan +Rose-Mari +Rosario +Rashid +Rosmari +Raquel +Reneé +Ruby +Roya +Rahel +Raghad +Rebeca +Robin +Rabia +Randa +Razan +Radmila +Rolfsdotter +Rosina +Rina +Roberta +Romina +Rauni +Ronya +Rocio +Ruta +Rafaela +Rauha +Rand +Roula +Ruzica +Rani +Rozalia +Rahwa +Raad +Ranim +Rode +Ruba +Riham +Ranya +Reham +Rojin +Rajaa +Robert +Rolf +Roland +Roger +Robin +Rune +Rickard +Rasmus +Richard +Ragnar +Ronny +Rikard +Reinhold +Roy +Ruben +Ronnie +Reza +Rudolf +Ralf +Ronald +Raymond +Rafael +Reine +Roberto +Ralph +Rami +Roine +Reidar +Raimo +Rainer +Ragnvald +René +Roman +Ricardo +Rutger +Reijo +Reino +Roberth +Rafal +Rashid +Runo +Rodrigo +Rahman +Ryan +Raul +Risto +Ricky +Rayan +Raoul +Runar +Romeo +Ryszard +Raed +Ramon +Ramadan +Ray +Royne +Raad +Rufus +Robbin +Rahim +Ramin +Robel +Rauno +Ricard +Ramazan +Rene +Roni +Riad +Rex +Raphael +Rio +Rustan +Radoslaw +Ramzi +Ramiz +Rachid +Renato +Rikhard +Reda +River +Rein +Rocky +Rudi +Rick +Rasim +Radwan +Ryno +Reddy +Ruslan +Sofia +Sara +Susanne +Siv +Sandra +Sofie +Sonja +Stina +Signe +Solveig +Saga +Sigrid +Susanna +Svea +Sanna +Siri +Selma +Sylvia +Sarah +Stella +Sophie +Sabina +Sophia +Sofi +Susann +Sally +Simone +Stephanie +Suzanne +Susan +Solvig +Samira +Sinikka +Sonia +Synnöve +Smilla +Sari +Seija +Silvia +Siw +Sabine +Sigbritt +Salma +Sirpa +Svetlana +Signhild +Sol +Sisko +Sirkka +Said +Sahar +Sibylla +Solbritt +Samantha +Sabrina +Satu +Sanne +Sabah +Shirin +Simona +Sylwia +Sahra +Silva +Suzana +Sanja +Stefanie +Solweig +Selina +Siham +Stigsdotter +Suzan +Sana +Savannah +Samar +Saba +Saleh +Sanela +Sham +Sylvi +Sol-Britt +Sandy +Shukri +Saida +Silvana +Safa +Snezana +Saeed +Samia +Susana +Saad +Sven +Stefan +Stig +Simon +Sebastian +Sten +Samuel +Sören +Sture +Sune +Staffan +Sixten +Sigvard +Svante +Sam +Sigurd +Stellan +Sven-Erik +Sigge +Said +Sami +Samir +Sigfrid +Sonny +Sivert +Seth +Sven-Olof +Sverker +Sakari +Sven-Åke +Saleh +Stephan +Salah +Steve +Stanislaw +Saad +Samer +Seppo +Steven +Sven Erik +Salim +Seyed +Sean +Stephen +Salih +Saeed +Scott +Stanley +Sölve +Salman +Sabah +Severin +Salem +Sander +Sergio +Salomon +Sven-Olov +Seved +Singh +Salam +Saman +Set +Sakarias +Sven Olof +Sammy +Sandor +Senad +Slawomir +Sverre +Sayed +Solomon +Saif +Sabri +Sven Åke +Silas +Sasa +Sylve +Syed +Sten-Åke +Santiago +Sylvester +Selim +Sharif +Sead +Sinan +Shadi +Sulaiman +Suleiman +Styrbjörn +Slobodan +Therese +Therése +Tina +Tyra +Teresia +Tove +Tilda +Thea +Tindra +Tilde +Tuva +Terese +Thi +Teresa +Theresia +Tova +Tuulikki +Tora +Tanja +Theres +Tuula +Tea +Tellervo +Thyra +Theresa +Tarja +Tatiana +Tamara +Torborg +Terttu +Tara +Theresé +Terése +Titti +Tiina +Tekla +Thérése +Tess +Thérese +Tatjana +Thelma +Thilde +Teres +Thilda +Teodora +Theodora +Tania +Thuy +Thu +Tuija +Tintin +Thanh +Towe +Taina +Tanya +Therés +Tone +Tiffany +Turid +Tua +Toini +Tilly +Teija +Torun +Tala +Thérèse +Towa +Taimi +Thindra +Thomasdotter +Trang +Tuva-Li +Tilia +Tasnim +Tuulia +Tuyet +Thora +Trine +Talia +Tahereh +Tuwa +Tyyne +Taha +Tereza +Thao +Tesfay +Tine +Tu +Timea +Toma +Thomas +Tommy +Tomas +Tobias +Torbjörn +Tore +Tony +Torsten +Tage +Tim +Tord +Theodor +Tom +Theo +Ture +Teodor +Tor +Ted +Torgny +Tapani +Tapio +Thor +Thure +Thore +Tomasz +Timo +Toni +Timmy +Thord +Thorbjörn +Tristan +Timothy +Teo +Torvald +Tommie +Tonny +Thommy +Theodore +Thorsten +Toivo +Truls +Tarek +Teddy +Torkel +Taha +Tryggve +Terje +Tiger +Tadeusz +Tommi +Texas +Thanh +Tarik +Torben +Thom +Tibor +Torleif +Thobias +Taisto +Thorvald +Taher +Tyko +Troy +Tyrone +Tomislav +Tuan +Talal +Tahir +Totte +Tauno +Tintin +Tareq +Tomi +Teuvo +Titus +Taim +Thim +Timmie +Tero +Tuve +Tino +Tor-Björn +Thony +Tuomo +Tuomas +Toma +Tarmo +Tedros +Tamas +Tesfay +Ximena +Xenia +Xuan +Xin +Xiao +Xia +Xue +Xi +Xiomara +Xhemile +Xiaoyan +Xiu +Xinyi +Xhevrije +Xhevahire +Xiang +Xena +Xiaohong +Xiaoli +Xiaojing +Xing +Xiaoyu +Xu +Xandra +Xian +Xantippa +Xinyue +Xiaomei +Xiaoying +Xinyu +Xhejlane +Xiaowen +Xiaoqin +Xiaoxia +Xueying +Xiaoyun +Xuemei +Xiaoqing +Xanthi +Xiaoling +Xiaolu +Xiaodan +Xiaofeng +Xheneta +Xinxin +Xiaoxiao +Xhezide +Xiuli +Xasan +Xun +Xiaohua +Xiaohui +Xiaomin +XiaoPing +Xiaomeng +Xiaoting +Xuyen +Xiaoyi +Xaviera +Xiaojie +Xochitl +Xiaofang +Xiaolei +Xintong +Xiaolan +Xiwen +Xiaochen +Xiaoming +Xiaoqian +Xufe +Xiaohan +Xiuying +Xiaoxue +Xueli +Xinhua +Xinmei +Xhyla +Xinran +Xuân +Xiaodong +Xuseen +Xiaojun +Xiaoqi +Xiaowei +Xara +Xinyan +Xiaozhen +Xiumei +Xiaoxi +Xieu +Xavier +Xander +Xerxes +Xuan +Xin +Xhevat +Xiang +Xiao +Xhavit +Xi +Xhevdet +Xu +Xhafer +Xaver +Xavi +Xiaojun +Xuong +Xhelal +Xing +Xhemajl +Xiaofeng +Xiaodong +Xenofon +Xiaoming +Xiong +Xheladin +Xabier +Xamse +Xasan +Xiaolong +Xiaowei +Xue +Xia +Xiaolei +Xian +Xinyu +Xiaoyu +Xuân +Xun +Xuseen +Xhemail +Xiaoyong +Xiangdong +Xiangyu +Xuefeng +Xiaolin +Xiaofei +Xhavid +Xuejun +Xiaogang +Xhemal +Xiaohua +Xiaoyi +Xxx +Xawery +Xiaobo +Xiaohu +Xiaochen +Xingyu +Xhemshir +Xiaotian +Xiaobing +Xiaonan +Xiyu +Xiaobin +Xiaohui +Xose +Xiaoliang +Xenophon +Xinyi +Xiwen +Xinjun +Xassan +Xinyuan +Xudong +Xinghua +Xan +Xiaokai +Xamza +Xiaoyuan +Xufeng +Xiangyang +Xirui +Xiaoqi +Xuecheng +Xiaozhong +Xolani +Xiaoxiao +Xhabir +Xhevit +Yvonne +Ylva +Yasmin +Yasmine +Yvette +Yara +Yusuf +Yousif +Ying +Yasemin +Young +Yusra +Yrsa +Yolanda +Yordanos +Yousef +Yan +Yen +Yasmina +Ywonne +Yi +Yu +Yodit +Yassin +Yulia +Yasin +Yemane +Yildiz +Yalda +Yun +Yee +Ylwa +Youssef +Yvonn +Yohannes +Yang +Yahya +Yue +Yousuf +Yana +Yousra +Yin +Yohana +Yohanna +Yuan +Youn +Yyy +Yuliya +Yonas +Yasamin +Yasmeen +Yael +Yaseen +Yosra +Yagmur +Ylva-Li +Yamina +Yaren +Yeliz +Yoko +Yasir +Ya +Yacoub +Yuusuf +Yosan +Yvonny +Yanina +Yrla +Yasaman +Yaser +Yong +Yeter +Ylvali +Yorsalem +Yussuf +Yoon +Yasna +Ye +Younus +Yuk +Younis +Yosief +Yuki +Yaqoob +Yüksel +Yosef +Yanet +Yelena +Younan +Yasar +Yngve +Yusuf +Yousef +Youssef +Yasin +Yousif +Yahya +Yosef +Yassin +Yonas +Yazan +Yaser +Yohannes +Younes +Yasser +Yasir +Yrjö +Yacoub +Yemane +Yousuf +Yunus +Yahye +Yonis +Yamen +Yahia +Young +Yakob +Yves +Yaseen +Yaman +Yong +Yakup +Yonatan +Younis +Yang +Yu +Yosief +Yusef +Yilmaz +Yones +Yussuf +Yacob +Yassine +Yi +Yasar +Yoel +Yassir +Younus +Yan +Yuusuf +Yared +Yashar +Ymer +Yannick +Yafet +Yehya +Ümit +Younan +Yuri +Yehia +Yyy +Yosuf +Yad +Yann +Yaqoob +Yaqub +Yosif +Yalda +Yury +Yakoub +Yaw +Yngvar +Yonan +Yavuz +Yohanes +Youcef +Yigit +Yuan +Yacqub +Yamin +Ylli +Yakub +Yvon +Yonathan +Younas +Yacine +Yossef +Yoda +Yohan +Youssouf +Zahra +Zainab +Zandra +Zara +Zofia +Zeinab +Zoe +Zelda +Zahraa +Zeynep +Zina +Zarah +Zuzanna +Zehra +Zorica +Zsuzsanna +Zenita +Zoey +Zanna +Zohra +Zohreh +Zena +Zaynab +Zaida +Zakia +Zeina +Zaid +Zita +Zlata +Zamzam +Zeynab +Zaneta +Zana +Zdenka +Zoë +Zora +Zoé +Zoi +Zozan +Zaga +Ziba +Zeljka +Zilan +Zenobia +Zabina +Zuhra +Zeliha +Zuzana +Zaki +Zinah +Zahida +Ziad +Zelma +Zorka +Zuhair +Zinab +Zarina +Zekiye +Zenab +Zineb +Zaklina +Zinita +Zeineb +Zelal +Zerina +Zinaida +Zeyad +Zoya +Zenitha +Zineta +Zin +Zaina +Zakaria +Zenta +Zaineb +Zübeyde +Zeyneb +Zinat +Zubaida +Zhen +Zdzislawa +Zebib +Zahide +Za +Zdravka +Zhanna +Zoila +Zumreta +Zaman +Zlatka +Zacharias +Zakaria +Zoran +Zackarias +Zbigniew +Zakarias +Zaid +Zebastian +Ziad +Zack +Zoltan +Zeljko +Zeb +Zaki +Zion +Zeke +Zlatko +Zlatan +Zaher +Zain +Zsolt +Zakariya +Zander +Zeki +Zana +Zuhair +Zdzislaw +Zeyad +Zeth +Zakariye +Zygmunt +Zdravko +Zenon +Ziyad +Zoltán +Zein +Zia +Zijad +Zahid +Zigge +Zachary +Zeid +Zaman +Zarko +Zebulon +Zac +Zvonko +Zafer +Zahir +Zubair +Zvonimir +Zaim +Zuher +Ziggy +Zimon +Zdenko +Zakir +Zeeshan +Zerny +Ziya +Zakk +Zeray +Zivko +Zafar +Zach +Zuheir +Zaya +Zdenek +Zhi +Zoher +Zheng +Zid +Zekeriya +Zayd +Zekarias +Zyad +Zackaria +Zaia +Zak +Zidane +Zin +Zakarie +Zed +Zzz +Zacarias +Zivorad +Zuhir +Zydrunas +Zeru +Zidan +Brycen +Oakley +Isabel +Estella +Enoch +Natasha +Brynn +Jayde +Kyla +Sophie +Sterling +Sydney +Marilyn +Andrew +Evangeline +Royce +Rebekah +Christian +Lyric +Cristiano +Jewel +Isla +Randy +Boone +Hamza +Pedro +Kaylee +Jasmin +Julianne +Deborah +Luke +Darius +Karson +Giuliana +Gianni +Blair +Callan +Azariah +Caleb +Anniston +Jaylen +Bexley +Stephen +Addilyn +Amirah +Joyce +Royalty +Nicholas +Elisabeth +Carter +Fernanda +Roland +Louisa +Valerie +Walker +Vaughn +Maximilian +Maddux +Caroline +Micheal +Kolton +Paislee +Braydon +Harris +Quentin +Will +Logan +Avi +Liliana +Roman +Ian +Emmitt +Dalton +Nancy +Andi +Thalia +Ahmir +Payton +Alaina +Aubri +Dexter +Hassan +Dante +Krish +Leanna +Amiya +Micah +Alonzo +Noelle +Corinne +Carter +Nataly +Ingrid +Chase +Heather +Hezekiah +Boston +Andres +Henrik +Jericho +Zendaya +Rudy +Duke +Armando +Jayce +Briar +Daxton +Trevor +Gracelyn +Adelynn +Graham +Riaan +Forrest +Brysen +Kelly +Jerome +Rosalie +Prince +Zuri +Brody +Johnny +Maison +Rayna +Skyler +Kyree +Braelyn +Tyler +Ronin +Antonella +Huxley +Lawrence +Emelia +Danny +Kolby +Emiliano +Owen +Phillip +Mayson +Kayleigh +Jeremias +Greyson +Thaddeus +Ali +Bristol +Saige +Alberto +Kai +Jeremiah +Iker +Kyra +Tristian +Blaise +Miller +Mae +Bryleigh +Amir +Haylee +Reina +Max +Melissa +Ashlyn +Jedidiah +Angela +Sam +Alden +Moshe +Lachlan +Nathaly +Brayden +Anders +Dayana +Kennedi +Shawn +Angelica +Gustavo +Cara +Alayna +Jesus +London +Finley +Maria +Nehemiah +Kase +Mason +Josiah +Ishaan +Ramona +Memphis +Chloe +Ivy +Corey +Davis +Eddie +Madelynn +Edgar +Selah +Zaiden +Eden +Raegan +Laila +Aurelia +Anya +Leonidas +Emily +Anastasia +Kamdyn +Sophia +Braylee +Delaney +Hunter +Annika +Princeton +Wynter +Emely +Maya +Karina +Tanner +Kaliyah +Brixton +Maci +Khloe +Vihaan +Genesis +Ariana +Dawson +Jolie +Blaze +Tyson +Lena +Jett +Ember +Augustus +Karen +Oscar +Desiree +Elias +Karim +Julio +Rayan +Flynn +Kinley +Londyn +Dallas +Amare +Anabella +Makayla +Connor +Heaven +Willow +Kole +Amina +Celia +Eileen +Erika +Alisha +Troy +Andrea +Dax +Averie +Konnor +Fatima +Jaelynn +Georgia +Jazmin +Adelaide +Regina +Camilo +Donald +Callen +Rolando +Amayah +Gabriela +Marjorie +Ana +Harry +Lilah +Trent +Charlie +Tori +Ezra +Zariah +Porter +Ethan +Lennox +Camden +Delilah +Aaron +Khalid +Blaire +Alexander +Felipe +Leonardo +Saul +Sarah +Taliyah +Audrey +Raelyn +Kaiden +Romina +Alessandro +Brianna +Sylvie +Joey +Eugene +Jane +Willie +Kymani +June +Emanuel +Julieta +Janelle +Farrah +Lillie +Hayley +Chaim +Destiny +Adalyn +Emory +Zane +Gianna +Mckinley +Laylah +Paula +Jair +Shiloh +Jamarion +Harley +Daleyza +Zainab +Issac +Hanna +Yahir +Evalyn +Valentina +King +Kevin +Cora +Maximiliano +Marcelo +Ally +Aidan +Damon +Ignacio +Elliott +Micah +Beatrice +Jonah +Seamus +Enzo +Dana +Emerson +Emery +Nikolai +Jaime +Damari +Ansley +Maia +Kalani +Remington +Elyse +Brooks +Mustafa +Lorelai +Sarai +Alfonso +Julius +Bella +Maurice +Romeo +Scarlett +Nathaniel +Jenna +Madden +Amya +Esperanza +Alejandra +Madilyn +Tinley +Iris +Melody +Nadia +Madelyn +Raiden +Frankie +Lindsey +Deacon +Perla +Meilani +Erica +Laney +Duncan +Clementine +Zackary +Kaleb +Stetson +Felicity +Ximena +Mauricio +Ellen +Bodhi +Aisha +Kaydence +Mohammed +Sadie +Seth +Lilian +Gavin +Lylah +Brent +Aleena +Maliyah +Olivia +Raylan +Rodney +Remington +Nora +Clayton +Keira +Vance +Sylas +Hayden +Emmeline +Cristian +Hank +Charles +Ayana +Misael +Bailey +Ayden +Xavier +Karla +Vincent +Sean +Kane +Curtis +Gregory +Samson +Andre +Danielle +Angelique +Franklin +Adeline +Kohen +Sullivan +Dwayne +Rylie +Stephanie +Madeleine +Kenley +Erik +Joelle +Elisa +Ameer +Isabella +Monica +Raina +Kayden +David +Reuben +Harlan +Imani +Ann +Jace +Konner +Esme +Lyric +Mila +Louie +Omari +Kaysen +Kashton +Nikolas +Karsyn +Kash +Cesar +Jimmy +Marisol +Sloane +Kyle +Declan +Daniella +Salvatore +Ryker +Lawson +Bobby +Alijah +Adonis +Chelsea +Judah +Arian +Fox +Tiffany +Adele +Ahmed +Cooper +Alana +Westin +Dakota +Nalani +Rocco +Amanda +Kailyn +Kinslee +Camdyn +Elise +Tucker +Amelie +Anthony +Braxton +Vienna +Allison +Corbin +Dennis +Kayson +Mallory +Jennifer +Maylee +Zoie +Nash +Stevie +Angelo +Channing +Skye +Bronson +Ciara +Finn +Mitchell +Victoria +Madisyn +Jackson +Castiel +Harrison +Aldo +Jad +Beckett +Alia +Aliana +Bennett +Madalynn +Ryland +Kobe +Bonnie +Calvin +Viviana +Giovanna +Levi +Jamari +Ellison +Hailee +Trace +Giana +Jessa +Raul +Emmet +Gibson +Dariel +Phoebe +Ryan +Journee +Emmett +Xzavier +Greta +Oliver +Darren +Demetrius +Vivienne +Neymar +Mateo +Malakai +Marco +Yisroel +Mohamed +Casey +Addyson +Keegan +Emery +Landry +Vincenzo +Hannah +Gannon +Andy +Maxwell +Dorothy +Yasmin +Autumn +Marlon +Isabela +Charleigh +Foster +Benjamin +Carmelo +Esteban +Bryson +Sierra +Zain +Tabitha +Paulina +Bridger +Paola +Frances +Zayden +Abram +Houston +Gabrielle +Heavenly +Serena +Langston +Rosemary +Irene +Steve +Eduardo +Zayne +Zariyah +Ezequiel +Nayeli +Christine +Esmeralda +Veda +Ronald +Arielle +Carson +James +Kali +Jaxon +Alianna +Helen +Lauryn +Jessie +Jadiel +Lilianna +Evan +Joziah +Jamie +Scott +Mariah +Landon +Marc +Hakeem +Derrick +Mikael +Tatum +Kaylynn +Esther +Finnley +Aislinn +Sonny +Maliah +Anson +Rivka +Thea +Natalie +Camila +Solomon +Rodrigo +Jensen +Nathalia +Johnathan +Malachi +Giovanni +Kameron +Christopher +Millie +Amiyah +Mya +Zoey +Jermaine +Shayla +Sergio +Quinn +Francesca +Lucian +Brayan +Amaris +Cheyenne +Leia +Uriel +Lacey +Vanessa +Terrence +Mark +Quincy +Nia +Rose +Kamila +Jamal +Kenna +Leah +Hugo +Kellan +Augustine +Muhammad +Maxton +Lochlan +Sariyah +Addison +Gemma +Zechariah +Malcolm +Amari +Markus +Kenia +Kimber +Keyla +Santana +Ashley +Douglas +Ivan +Kyson +Liberty +Hayden +Brittany +Brooke +Cherish +Nicole +Lewis +Laura +Kathleen +Nyla +Kaden +Livia +Miguel +Tate +Vera +Austin +Catalina +Lilith +Kylan +Ryleigh +Ramiro +Skyla +Emerson +Drew +Ayleen +Arjun +Junior +Wade +Tiana +Kelvin +Marcus +Louise +Lamar +Edwin +Luciano +Ashton +Khaleesi +Dakota +Aleah +Kieran +Elian +Zavier +Melina +Miranda +Coen +Priscilla +Angie +Diego +Jason +Zelda +Lennon +Aydin +Maisie +Frida +Casen +Jasiah +Lana +Riley +Alexandria +Rowan +Gideon +Arlo +Chaya +Kelsey +Marquis +Simone +Janessa +Allie +Rohan +Clark +Alexandra +Malia +Santiago +Daisy +Elaine +Juliet +Leonard +Alan +Aryana +Santino +Ruby +Nickolas +Milana +Coraline +Mia +Eden +Dash +Mathias +Alexa +Jacqueline +Carla +Avery +Tatiana +Jefferson +Nixon +Lilyanna +Alaya +Milo +Jacob +Madison +Renata +Cataleya +Bruno +Liv +Ellianna +Braelynn +Cynthia +Alexis +Charley +Marley +Angel +Waylon +Winston +Emmy +Peyton +Kimberly +Tinsley +Jacoby +Ford +Clyde +Lillianna +Walter +Quinn +Arthur +Alani +Raymond +Colin +Karter +Brenda +Draven +Bailee +Cali +Hattie +Nathan +Cason +Mabel +Paul +Adalynn +Salma +Katie +Nala +Brennan +Marshall +Maximo +Leon +Sutton +Zander +Mariana +Warren +Eliezer +Yosef +Rocky +Rachel +Ben +Paisley +Angelina +Magnolia +Lennon +Kira +Marvin +Jamar +Johanna +Isabelle +Israel +Braiden +Calliope +Leyla +Paityn +Gabriel +Briella +Hailey +Lucille +Joslyn +Casey +Elliot +Kingston +Kaison +Ruben +Jonathon +Cayden +Norah +Jaycee +Julianna +Averi +Arianna +Riya +Wilson +Briley +Maeve +Carly +Michael +Alvin +Emilia +Jemma +Brantlee +Lily +London +Darwin +Gus +Zara +Ellie +Jonathan +Jazlyn +Antonio +Gael +Adley +Blakely +Westley +Phoenix +Brylee +Chandler +Aliza +Armani +Ashlynn +Kolten +Briana +Luis +Jordan +Lance +Kareem +Jairo +Thatcher +Rene +Landyn +Rowen +Elaina +Heath +Gracie +Kaylin +Alejandro +Kara +Otis +Azaria +Hadleigh +Brock +Paloma +Anna +Nicolas +Karlee +Grace +Julian +Dustin +Peyton +Aliya +Alessia +Zoe +Marley +Shepherd +Tripp +Niko +Annalise +Aria +Alyssa +Brenden +Maxim +Kinsley +Larry +Anne +Kyleigh +Zayn +Shaun +Kamden +Parker +Rogelio +Robert +Mckenna +Emerie +Peter +Izabella +Arely +Aniyah +April +Easton +Kyrie +Ariyah +Blake +Holland +Trey +Jayleen +Astrid +Stanley +Alexis +Victor +Mohammad +Lilyana +Thomas +Eloise +Ellis +Jordan +Makenna +Santos +Branson +Kamryn +Cassidy +Jack +Kristian +Jaylee +Jay +Jaxen +Isaiah +Jaxson +Evie +Nola +Atticus +River +Dane +Judson +Makai +Samara +Jasmine +Lucia +Cruz +Annabel +Reyansh +Sincere +Brynlee +Jordyn +Jabari +Reese +Marcos +Myah +Ariya +Sky +Apollo +Samantha +Alivia +Ari +Callum +Jillian +Lila +Mary +Mariam +Estrella +Byron +Sutton +Maddox +Noe +Lauren +Ray +Holly +Lizbeth +Jeremy +Damien +Immanuel +Aubrie +Analia +Kynlee +Colton +Aliyah +Mercy +Eva +Jeffrey +Zaria +Sariah +Jose +Rhys +Adaline +Cash +Susan +Brenna +Raquel +Garrett +Ainsley +Miah +Titan +Hector +Alec +Moriah +Siena +Everleigh +Fernando +Leighton +Halle +Kenneth +Daniela +Jaylene +Gia +Talia +Hunter +Alexzander +Patricia +Amia +Alyson +Dillon +Grady +Emersyn +Rory +Keenan +Tegan +Ari +Cecelia +Savannah +Jasper +Kalel +Kailey +Alison +Kathryn +Maleah +Matteo +Marlee +Sage +Camille +Musa +Nathalie +Liana +Bruce +Ismael +Kailee +Princess +Mack +Trinity +Dalary +Alex +Justin +Alyvia +Evelynn +Terry +Jayda +Elisha +Vicente +Roger +Harley +Demi +Urijah +Leslie +Harmony +Gilbert +Sawyer +Jazmine +Karlie +Amani +Ivory +Edward +Bo +Fiona +Paige +Jase +Abraham +Gunnar +Alistair +Vivaan +Zion +Erin +Drake +Aileen +Milania +Leo +Nico +Lilliana +Fabian +Michelle +Matthew +Dominick +Meredith +Lainey +Kiera +Lea +Gwendolyn +Aiden +Rey +Kensley +Carolina +Cain +Alayah +Ibrahim +Chad +Yareli +Monroe +Aranza +Ophelia +Amos +Leif +Anahi +Bradley +Molly +Emilio +Greysen +Wyatt +Mario +Kallie +Zion +Aubrielle +Keagan +Nina +Brantley +Kendall +Quinton +Elora +Johan +Luz +Makenzie +Alina +Sebastian +Reginald +Courtney +Ariel +Winter +Harlow +Xander +Cayson +Conner +Kylee +Sara +Yusuf +Harold +Lorelei +Lee +Messiah +Whitney +Sofia +Ryder +Itzayana +Knox +Annabella +Keanu +John +Marianna +Anton +Adrianna +Jax +Camron +Lillian +Kaylani +Gracelynn +Brayson +Josie +Lucas +Remy +Jayden +Aurora +Giovani +Hope +Kamari +Ernesto +Adriel +Juliana +Braden +Dylan +Scarlet +Kayla +Ruth +Sawyer +Davina +Enrique +Juan +Rebecca +Janiyah +Michaela +Estelle +Leilani +Adelyn +Catherine +Eli +Madyson +Wesley +Charli +Teagan +Savanna +Madilynn +Jorge +August +Kylie +Milan +Brentley +Stefan +Javon +Christina +Jaxton +Crosby +Crew +Caylee +Mavis +Ty +Jessie +Harmoni +Brielle +Terrell +Juliette +Brooklynn +Noa +Alice +Jayson +Ariella +Annalee +Myles +Skylar +Lyla +Rylan +Toby +Ace +Piper +Daniel +Dayton +Aubree +Malaysia +Penelope +Amaya +Cade +Cole +Faith +Amalia +Alma +Layton +Skyler +Paris +Gauge +Mikaela +Rowan +Arabella +Stella +Veronica +Steven +Melanie +Gerald +Orion +Lucca +Abigail +Elsie +Kenzie +Eric +Luca +Aryanna +Finley +Conor +Jamison +Megan +Cameron +Joy +Coleman +Chandler +Joe +Lydia +Hudson +Silas +Nathanael +William +Taylor +Harper +Joselyn +Celeste +Benton +Odin +Harper +Hadassah +Poppy +Erick +Eason +Eliseo +Yehuda +Merrick +Canaan +Kristina +Mckenzie +Theodore +Ricardo +Roberto +Hugh +Devon +Case +Carmen +Lucy +Malaya +Julissa +Rylee +Billy +Riley +Jaden +Maximus +Darian +Guadalupe +Paxton +Cohen +Arden +Tessa +Camryn +Rhea +Elena +Claire +Bentley +Bodie +Matias +Myla +Scarlette +Ira +Joaquin +Axel +Gerardo +Ava +Carl +Sabrina +Dominic +Leonel +Royal +Jake +Jayla +Brecken +Antonia +Ronan +Mina +Harleigh +Angel +Tadeo +Mira +Morgan +Wayne +Lyra +Kassidy +Jayden +Leland +Camilla +Adrienne +Martin +Danna +Jameson +Finnegan +Jonas +Joanna +Dean +Karter +Miracle +Kadence +Saylor +Naomi +Lorenzo +Tomas +Wesson +Yaretzi +Rafael +Zaniyah +Kehlani +Jagger +Melany +Landen +Addisyn +Nevaeh +Cadence +Brooklyn +Oakley +Kate +Anika +Kaia +Dallas +Russell +Kade +Haven +Kylo +Alvaro +Yahya +Brady +Moses +Soren +Margot +Magnus +Clare +Lexie +Kendall +Rex +Everly +Isaac +Axl +Selena +Axton +Jaylah +Madeline +Joel +Jeffery +Avalynn +Kody +Emmanuel +Carlee +Arya +Novalee +Blaine +Bentlee +Lola +Leighton +Jamir +Carolyn +Milani +Colette +Ezekiel +Ahmad +Aiyana +Braeden +Emmaline +Olive +Reese +Jaylynn +Brandon +Aspen +Nasir +Izaiah +Jayceon +Valentin +Helena +Zachariah +Alena +Javion +Katalina +Willa +Ada +Rosie +Avianna +Miles +Maren +Azariah +Franco +Payton +Sienna +Valentino +Jon +Brett +Kenya +Maryam +Sage +Derek +Serenity +Frank +Presley +Marissa +Korbin +Colt +Royal +Marie +Aniya +Remy +Bode +Bria +Jesse +Jade +Rylan +Nova +Grant +Hallie +Yousef +Rhett +Kaiya +Bethany +Elliott +Mekhi +Bryce +Allyson +Laurel +Barrett +Dominik +Remi +Justice +Kaelyn +Conrad +Nolan +Roselyn +Avery +Jamie +Ronnie +Jared +Trenton +Skylar +Carlos +Zachary +Alaia +Clay +Lilia +Edith +Wilder +Javier +Wendy +Shane +Samuel +Haley +Josue +Macy +Kassandra +Caiden +Dimitri +Kairi +Jerry +Jada +Amber +Kailani +Julia +Benicio +Callie +Mara +Cory +Jessica +Aviana +Cassius +Miriam +Lyle +Rayden +Joshua +Turner +Cassandra +Mikayla +Zyaire +Matthias +Talon +Liam +Zeke +Chris +Otto +Braylon +Ernest +Emory +Gloria +Charlee +Archer +Noel +Titus +Layla +Kannon +Harvey +Jocelyn +Eliana +Keaton +Anabelle +Cairo +Hadley +Addilynn +Elijah +Allan +Fisher +Myra +Aubriella +Reid +Linda +Belle +Clarissa +Wren +Amy +Louis +Miya +Athena +Theo +Ariel +Adilynn +Barbara +Legend +Raphael +Vivian +Elin +Alannah +Tristan +Jana +Alfred +Anaya +Sylvia +Henley +Sasha +Gordon +Tristen +Tatum +Tobias +Lionel +Briggs +Zaylee +Rory +Cannon +Evelyn +Crystal +Aryan +Hayes +Van +Isaias +Kyler +Brendan +Leandro +Emilee +Kori +Pierce +Kaylie +Patrick +Elliot +Craig +Elle +Samir +Francis +Agustin +Jaliyah +Margaret +Reed +Lexi +Zaire +Juniper +Dulce +Genevieve +Omar +Albert +Kiana +Luna +Everett +Cody +Colby +Galilea +Nelson +Itzel +Rayne +Elliana +Maddison +Lilly +Kingsley +Salvador +Ariadne +Reagan +Howard +Maverick +Logan +Mariyah +Elianna +Cullen +Ares +Lane +Major +Teresa +Bryant +Ridge +Reece +Dario +Layne +Kai +Damian +Natalia +Orlando +Iliana +Tony +Graysen +Deandre +Lukas +Cyrus +Ariah +Timothy +Gary +Leila +Monserrat +Collin +Virginia +Baylor +Julie +Justice +Sloan +Katherine +Chana +Kellen +Alfredo +Diana +Brian +Alessandra +Brinley +Khalil +Audrina +Charlotte +Alanna +Alexia +Holden +George +Jimena +Kennedy +Hazel +Abel +Aylin +Adelina +Lincoln +Melvin +Noor +Freya +Martha +Frederick +Violet +Celine +Dangelo +Belen +Avah +Davion +Kaya +Shiloh +Asa +Chance +Davian +Jakob +Braylen +Desmond +Amira +Justus +Leona +Roy +Aron +Beckham +Atlas +Naya +Pablo +Kaitlyn +Ralph +Taylor +Rosalyn +Nylah +Leroy +Armani +Kian +Weston +Koda +Ricky +Gwen +Philip +Jalen +Charlie +Jude +Shelby +Ulises +Montserrat +Jolene +Achilles +Gabriella +Alicia +Uriah +Griffin +Milan +Denver +Kora +Kendra +Ellis +Aarav +Collins +Adriana +Maggie +Dylan +Mackenzie +Devin +Heidi +Bowen +Vada +Sandra +Grey +Eliza +Travis +Kye +Faye +Cedric +Anakin +Tommy +Annie +Caden +Ramon +Aaliyah +Malik +Zaid +Baylee +Cecilia +Emmalyn +Emma +Aitana +Lennox +Eleanor +Lina +Reign +Madalyn +Adrian +Raelynn +Amelia +Mathew +Simon +Edison +Marina +Gage +Ella +Preston +Giselle +Aya +Adam +Lara +Rosa +Felix +Ailani +Abdullah +Claudia +Sharon +Jaiden +Dorian +Alonso +Elizabeth +Luciana +Abril +Matilda +Dominique +Creed +Giancarlo +Ryann +Breanna +Guillermo +Hana +Adan +Bryan +Zahra +Grayson +Kasen +Blake +Reyna +Kiara +Noemi +Richard +Abby +Abdiel +Kamryn +Ayla +Journey +Valeria +Clara +River +Eve +Ivanna +Jaziel +Gunner +Darrell +Fletcher +Alondra +Marleigh +Bianca +Donovan +Lailah +Ryan +Luka +Marcel +Chanel +Annabelle +Brodie +Judith +Elsa +Aadhya +Julien +Spencer +Parker +Kendrick +Adrien +Francisco +Kenny +Henry +Danica +Jazlynn +Emmalynn +Aubrey +Ephraim +Josephine +Cameron +Manuel +Kristopher +Thiago +Raven +Benson +Harlee +Hendrix +Hadlee +Ayaan +Allen +Colten +Bridget +Beau +Emmie +Landry +Katelyn +Morgan +Terrance +Asher +Emilie +Amara +Phoenix +Killian +Kason +Moises +Amari +Joseph +Aden +Saoirse +Noah +Tenley +Keith +Lisa +Jaelyn +Azalea +Anderson +Lia +Jordy +Neil +Dahlia +Maxine +Penny +Meadow +Yamileth +Arturo +Daphne +Macie +Summer +Milena +Pearl \ No newline at end of file diff --git a/ML/Projects/text_generation_babynames/data/shakespeare_larger.txt b/ML/Projects/text_generation_babynames/data/shakespeare_larger.txt new file mode 100644 index 0000000..40a2082 --- /dev/null +++ b/ML/Projects/text_generation_babynames/data/shakespeare_larger.txt @@ -0,0 +1,167204 @@ +First Citizen: +Before we proceed any further, hear me speak. + +All: +Speak, speak. + +First Citizen: +You are all resolved rather to die than to famish? + +All: +Resolved. resolved. + +First Citizen: +First, you know Caius Marcius is chief enemy to the people. + +All: +We know't, we know't. + +First Citizen: +Let us kill him, and we'll have corn at our own price. +Is't a verdict? + +All: +No more talking on't; let it be done: away, away! + +Second Citizen: +One word, good citizens. + +First Citizen: +We are accounted poor citizens, the patricians good. +What authority surfeits on would relieve us: if they +would yield us but the superfluity, while it were +wholesome, we might guess they relieved us humanely; +but they think we are too dear: the leanness that +afflicts us, the object of our misery, is as an +inventory to particularise their abundance; our +sufferance is a gain to them Let us revenge this with +our pikes, ere we become rakes: for the gods know I +speak this in hunger for bread, not in thirst for revenge. + +Second Citizen: +Would you proceed especially against Caius Marcius? + +All: +Against him first: he's a very dog to the commonalty. + +Second Citizen: +Consider you what services he has done for his country? + +First Citizen: +Very well; and could be content to give him good +report fort, but that he pays himself with being proud. + +Second Citizen: +Nay, but speak not maliciously. + +First Citizen: +I say unto you, what he hath done famously, he did +it to that end: though soft-conscienced men can be +content to say it was for his country he did it to +please his mother and to be partly proud; which he +is, even till the altitude of his virtue. + +Second Citizen: +What he cannot help in his nature, you account a +vice in him. You must in no way say he is covetous. + +First Citizen: +If I must not, I need not be barren of accusations; +he hath faults, with surplus, to tire in repetition. +What shouts are these? The other side o' the city +is risen: why stay we prating here? to the Capitol! + +All: +Come, come. + +First Citizen: +Soft! who comes here? + +Second Citizen: +Worthy Menenius Agrippa; one that hath always loved +the people. + +First Citizen: +He's one honest enough: would all the rest were so! + +MENENIUS: +What work's, my countrymen, in hand? where go you +With bats and clubs? The matter? speak, I pray you. + +First Citizen: +Our business is not unknown to the senate; they have +had inkling this fortnight what we intend to do, +which now we'll show 'em in deeds. They say poor +suitors have strong breaths: they shall know we +have strong arms too. + +MENENIUS: +Why, masters, my good friends, mine honest neighbours, +Will you undo yourselves? + +First Citizen: +We cannot, sir, we are undone already. + +MENENIUS: +I tell you, friends, most charitable care +Have the patricians of you. For your wants, +Your suffering in this dearth, you may as well +Strike at the heaven with your staves as lift them +Against the Roman state, whose course will on +The way it takes, cracking ten thousand curbs +Of more strong link asunder than can ever +Appear in your impediment. For the dearth, +The gods, not the patricians, make it, and +Your knees to them, not arms, must help. Alack, +You are transported by calamity +Thither where more attends you, and you slander +The helms o' the state, who care for you like fathers, +When you curse them as enemies. + +First Citizen: +Care for us! True, indeed! They ne'er cared for us +yet: suffer us to famish, and their store-houses +crammed with grain; make edicts for usury, to +support usurers; repeal daily any wholesome act +established against the rich, and provide more +piercing statutes daily, to chain up and restrain +the poor. If the wars eat us not up, they will; and +there's all the love they bear us. + +MENENIUS: +Either you must +Confess yourselves wondrous malicious, +Or be accused of folly. I shall tell you +A pretty tale: it may be you have heard it; +But, since it serves my purpose, I will venture +To stale 't a little more. + +First Citizen: +Well, I'll hear it, sir: yet you must not think to +fob off our disgrace with a tale: but, an 't please +you, deliver. + +MENENIUS: +There was a time when all the body's members +Rebell'd against the belly, thus accused it: +That only like a gulf it did remain +I' the midst o' the body, idle and unactive, +Still cupboarding the viand, never bearing +Like labour with the rest, where the other instruments +Did see and hear, devise, instruct, walk, feel, +And, mutually participate, did minister +Unto the appetite and affection common +Of the whole body. The belly answer'd-- + +First Citizen: +Well, sir, what answer made the belly? + +MENENIUS: +Sir, I shall tell you. With a kind of smile, +Which ne'er came from the lungs, but even thus-- +For, look you, I may make the belly smile +As well as speak--it tauntingly replied +To the discontented members, the mutinous parts +That envied his receipt; even so most fitly +As you malign our senators for that +They are not such as you. + +First Citizen: +Your belly's answer? What! +The kingly-crowned head, the vigilant eye, +The counsellor heart, the arm our soldier, +Our steed the leg, the tongue our trumpeter. +With other muniments and petty helps +In this our fabric, if that they-- + +MENENIUS: +What then? +'Fore me, this fellow speaks! What then? what then? + +First Citizen: +Should by the cormorant belly be restrain'd, +Who is the sink o' the body,-- + +MENENIUS: +Well, what then? + +First Citizen: +The former agents, if they did complain, +What could the belly answer? + +MENENIUS: +I will tell you +If you'll bestow a small--of what you have little-- +Patience awhile, you'll hear the belly's answer. + +First Citizen: +Ye're long about it. + +MENENIUS: +Note me this, good friend; +Your most grave belly was deliberate, +Not rash like his accusers, and thus answer'd: +'True is it, my incorporate friends,' quoth he, +'That I receive the general food at first, +Which you do live upon; and fit it is, +Because I am the store-house and the shop +Of the whole body: but, if you do remember, +I send it through the rivers of your blood, +Even to the court, the heart, to the seat o' the brain; +And, through the cranks and offices of man, +The strongest nerves and small inferior veins +From me receive that natural competency +Whereby they live: and though that all at once, +You, my good friends,'--this says the belly, mark me,-- + +First Citizen: +Ay, sir; well, well. + +MENENIUS: +'Though all at once cannot +See what I do deliver out to each, +Yet I can make my audit up, that all +From me do back receive the flour of all, +And leave me but the bran.' What say you to't? + +First Citizen: +It was an answer: how apply you this? + +MENENIUS: +The senators of Rome are this good belly, +And you the mutinous members; for examine +Their counsels and their cares, digest things rightly +Touching the weal o' the common, you shall find +No public benefit which you receive +But it proceeds or comes from them to you +And no way from yourselves. What do you think, +You, the great toe of this assembly? + +First Citizen: +I the great toe! why the great toe? + +MENENIUS: +For that, being one o' the lowest, basest, poorest, +Of this most wise rebellion, thou go'st foremost: +Thou rascal, that art worst in blood to run, +Lead'st first to win some vantage. +But make you ready your stiff bats and clubs: +Rome and her rats are at the point of battle; +The one side must have bale. +Hail, noble Marcius! + +MARCIUS: +Thanks. What's the matter, you dissentious rogues, +That, rubbing the poor itch of your opinion, +Make yourselves scabs? + +First Citizen: +We have ever your good word. + +MARCIUS: +He that will give good words to thee will flatter +Beneath abhorring. What would you have, you curs, +That like nor peace nor war? the one affrights you, +The other makes you proud. He that trusts to you, +Where he should find you lions, finds you hares; +Where foxes, geese: you are no surer, no, +Than is the coal of fire upon the ice, +Or hailstone in the sun. Your virtue is +To make him worthy whose offence subdues him +And curse that justice did it. +Who deserves greatness +Deserves your hate; and your affections are +A sick man's appetite, who desires most that +Which would increase his evil. He that depends +Upon your favours swims with fins of lead +And hews down oaks with rushes. Hang ye! Trust Ye? +With every minute you do change a mind, +And call him noble that was now your hate, +Him vile that was your garland. What's the matter, +That in these several places of the city +You cry against the noble senate, who, +Under the gods, keep you in awe, which else +Would feed on one another? What's their seeking? + +MENENIUS: +For corn at their own rates; whereof, they say, +The city is well stored. + +MARCIUS: +Hang 'em! They say! +They'll sit by the fire, and presume to know +What's done i' the Capitol; who's like to rise, +Who thrives and who declines; side factions +and give out +Conjectural marriages; making parties strong +And feebling such as stand not in their liking +Below their cobbled shoes. They say there's +grain enough! +Would the nobility lay aside their ruth, +And let me use my sword, I'll make a quarry +With thousands of these quarter'd slaves, as high +As I could pick my lance. + +MENENIUS: +Nay, these are almost thoroughly persuaded; +For though abundantly they lack discretion, +Yet are they passing cowardly. But, I beseech you, +What says the other troop? + +MARCIUS: +They are dissolved: hang 'em! +They said they were an-hungry; sigh'd forth proverbs, +That hunger broke stone walls, that dogs must eat, +That meat was made for mouths, that the gods sent not +Corn for the rich men only: with these shreds +They vented their complainings; which being answer'd, +And a petition granted them, a strange one-- +To break the heart of generosity, +And make bold power look pale--they threw their caps +As they would hang them on the horns o' the moon, +Shouting their emulation. + +MENENIUS: +What is granted them? + +MARCIUS: +Five tribunes to defend their vulgar wisdoms, +Of their own choice: one's Junius Brutus, +Sicinius Velutus, and I know not--'Sdeath! +The rabble should have first unroof'd the city, +Ere so prevail'd with me: it will in time +Win upon power and throw forth greater themes +For insurrection's arguing. + +MENENIUS: +This is strange. + +MARCIUS: +Go, get you home, you fragments! + +Messenger: +Where's Caius Marcius? + +MARCIUS: +Here: what's the matter? + +Messenger: +The news is, sir, the Volsces are in arms. + +MARCIUS: +I am glad on 't: then we shall ha' means to vent +Our musty superfluity. See, our best elders. + +First Senator: +Marcius, 'tis true that you have lately told us; +The Volsces are in arms. + +MARCIUS: +They have a leader, +Tullus Aufidius, that will put you to 't. +I sin in envying his nobility, +And were I any thing but what I am, +I would wish me only he. + +COMINIUS: +You have fought together. + +MARCIUS: +Were half to half the world by the ears and he. +Upon my party, I'ld revolt to make +Only my wars with him: he is a lion +That I am proud to hunt. + +First Senator: +Then, worthy Marcius, +Attend upon Cominius to these wars. + +COMINIUS: +It is your former promise. + +MARCIUS: +Sir, it is; +And I am constant. Titus Lartius, thou +Shalt see me once more strike at Tullus' face. +What, art thou stiff? stand'st out? + +TITUS: +No, Caius Marcius; +I'll lean upon one crutch and fight with t'other, +Ere stay behind this business. + +MENENIUS: +O, true-bred! + +First Senator: +Your company to the Capitol; where, I know, +Our greatest friends attend us. + +TITUS: + +COMINIUS: +Noble Marcius! + +First Senator: + +MARCIUS: +Nay, let them follow: +The Volsces have much corn; take these rats thither +To gnaw their garners. Worshipful mutiners, +Your valour puts well forth: pray, follow. + +SICINIUS: +Was ever man so proud as is this Marcius? + +BRUTUS: +He has no equal. + +SICINIUS: +When we were chosen tribunes for the people,-- + +BRUTUS: +Mark'd you his lip and eyes? + +SICINIUS: +Nay. but his taunts. + +BRUTUS: +Being moved, he will not spare to gird the gods. + +SICINIUS: +Be-mock the modest moon. + +BRUTUS: +The present wars devour him: he is grown +Too proud to be so valiant. + +SICINIUS: +Such a nature, +Tickled with good success, disdains the shadow +Which he treads on at noon: but I do wonder +His insolence can brook to be commanded +Under Cominius. + +BRUTUS: +Fame, at the which he aims, +In whom already he's well graced, can not +Better be held nor more attain'd than by +A place below the first: for what miscarries +Shall be the general's fault, though he perform +To the utmost of a man, and giddy censure +Will then cry out of Marcius 'O if he +Had borne the business!' + +SICINIUS: +Besides, if things go well, +Opinion that so sticks on Marcius shall +Of his demerits rob Cominius. + +BRUTUS: +Come: +Half all Cominius' honours are to Marcius. +Though Marcius earned them not, and all his faults +To Marcius shall be honours, though indeed +In aught he merit not. + +SICINIUS: +Let's hence, and hear +How the dispatch is made, and in what fashion, +More than his singularity, he goes +Upon this present action. + +BRUTUS: +Lets along. + +First Senator: +So, your opinion is, Aufidius, +That they of Rome are entered in our counsels +And know how we proceed. + +AUFIDIUS: +Is it not yours? +What ever have been thought on in this state, +That could be brought to bodily act ere Rome +Had circumvention? 'Tis not four days gone +Since I heard thence; these are the words: I think +I have the letter here; yes, here it is. +'They have press'd a power, but it is not known +Whether for east or west: the dearth is great; +The people mutinous; and it is rumour'd, +Cominius, Marcius your old enemy, +Who is of Rome worse hated than of you, +And Titus Lartius, a most valiant Roman, +These three lead on this preparation +Whither 'tis bent: most likely 'tis for you: +Consider of it.' + +First Senator: +Our army's in the field +We never yet made doubt but Rome was ready +To answer us. + +AUFIDIUS: +Nor did you think it folly +To keep your great pretences veil'd till when +They needs must show themselves; which +in the hatching, +It seem'd, appear'd to Rome. By the discovery. +We shall be shorten'd in our aim, which was +To take in many towns ere almost Rome +Should know we were afoot. + +Second Senator: +Noble Aufidius, +Take your commission; hie you to your bands: +Let us alone to guard Corioli: +If they set down before 's, for the remove +Bring your army; but, I think, you'll find +They've not prepared for us. + +AUFIDIUS: +O, doubt not that; +I speak from certainties. Nay, more, +Some parcels of their power are forth already, +And only hitherward. I leave your honours. +If we and Caius Marcius chance to meet, +'Tis sworn between us we shall ever strike +Till one can do no more. + +All: +The gods assist you! + +AUFIDIUS: +And keep your honours safe! + +First Senator: +Farewell. + +Second Senator: +Farewell. + +All: +Farewell. + +VOLUMNIA: +I pray you, daughter, sing; or express yourself in a +more comfortable sort: if my son were my husband, I +should freelier rejoice in that absence wherein he +won honour than in the embracements of his bed where +he would show most love. When yet he was but +tender-bodied and the only son of my womb, when +youth with comeliness plucked all gaze his way, when +for a day of kings' entreaties a mother should not +sell him an hour from her beholding, I, considering +how honour would become such a person. that it was +no better than picture-like to hang by the wall, if +renown made it not stir, was pleased to let him seek +danger where he was like to find fame. To a cruel +war I sent him; from whence he returned, his brows +bound with oak. I tell thee, daughter, I sprang not +more in joy at first hearing he was a man-child +than now in first seeing he had proved himself a +man. + +VIRGILIA: +But had he died in the business, madam; how then? + +VOLUMNIA: +Then his good report should have been my son; I +therein would have found issue. Hear me profess +sincerely: had I a dozen sons, each in my love +alike and none less dear than thine and my good +Marcius, I had rather had eleven die nobly for their +country than one voluptuously surfeit out of action. + +Gentlewoman: +Madam, the Lady Valeria is come to visit you. + +VIRGILIA: +Beseech you, give me leave to retire myself. + +VOLUMNIA: +Indeed, you shall not. +Methinks I hear hither your husband's drum, +See him pluck Aufidius down by the hair, +As children from a bear, the Volsces shunning him: +Methinks I see him stamp thus, and call thus: +'Come on, you cowards! you were got in fear, +Though you were born in Rome:' his bloody brow +With his mail'd hand then wiping, forth he goes, +Like to a harvest-man that's task'd to mow +Or all or lose his hire. + +VIRGILIA: +His bloody brow! O Jupiter, no blood! + +VOLUMNIA: +Away, you fool! it more becomes a man +Than gilt his trophy: the breasts of Hecuba, +When she did suckle Hector, look'd not lovelier +Than Hector's forehead when it spit forth blood +At Grecian sword, contemning. Tell Valeria, +We are fit to bid her welcome. + +VIRGILIA: +Heavens bless my lord from fell Aufidius! + +VOLUMNIA: +He'll beat Aufidius 'head below his knee +And tread upon his neck. + +VALERIA: +My ladies both, good day to you. + +VOLUMNIA: +Sweet madam. + +VIRGILIA: +I am glad to see your ladyship. + +VALERIA: +How do you both? you are manifest house-keepers. +What are you sewing here? A fine spot, in good +faith. How does your little son? + +VIRGILIA: +I thank your ladyship; well, good madam. + +VOLUMNIA: +He had rather see the swords, and hear a drum, than +look upon his school-master. + +VALERIA: +O' my word, the father's son: I'll swear,'tis a +very pretty boy. O' my troth, I looked upon him o' +Wednesday half an hour together: has such a +confirmed countenance. I saw him run after a gilded +butterfly: and when he caught it, he let it go +again; and after it again; and over and over he +comes, and again; catched it again; or whether his +fall enraged him, or how 'twas, he did so set his +teeth and tear it; O, I warrant it, how he mammocked +it! + +VOLUMNIA: +One on 's father's moods. + +VALERIA: +Indeed, la, 'tis a noble child. + +VIRGILIA: +A crack, madam. + +VALERIA: +Come, lay aside your stitchery; I must have you play +the idle husewife with me this afternoon. + +VIRGILIA: +No, good madam; I will not out of doors. + +VALERIA: +Not out of doors! + +VOLUMNIA: +She shall, she shall. + +VIRGILIA: +Indeed, no, by your patience; I'll not over the +threshold till my lord return from the wars. + +VALERIA: +Fie, you confine yourself most unreasonably: come, +you must go visit the good lady that lies in. + +VIRGILIA: +I will wish her speedy strength, and visit her with +my prayers; but I cannot go thither. + +VOLUMNIA: +Why, I pray you? + +VIRGILIA: +'Tis not to save labour, nor that I want love. + +VALERIA: +You would be another Penelope: yet, they say, all +the yarn she spun in Ulysses' absence did but fill +Ithaca full of moths. Come; I would your cambric +were sensible as your finger, that you might leave +pricking it for pity. Come, you shall go with us. + +VIRGILIA: +No, good madam, pardon me; indeed, I will not forth. + +VALERIA: +In truth, la, go with me; and I'll tell you +excellent news of your husband. + +VIRGILIA: +O, good madam, there can be none yet. + +VALERIA: +Verily, I do not jest with you; there came news from +him last night. + +VIRGILIA: +Indeed, madam? + +VALERIA: +In earnest, it's true; I heard a senator speak it. +Thus it is: the Volsces have an army forth; against +whom Cominius the general is gone, with one part of +our Roman power: your lord and Titus Lartius are set +down before their city Corioli; they nothing doubt +prevailing and to make it brief wars. This is true, +on mine honour; and so, I pray, go with us. + +VIRGILIA: +Give me excuse, good madam; I will obey you in every +thing hereafter. + +VOLUMNIA: +Let her alone, lady: as she is now, she will but +disease our better mirth. + +VALERIA: +In troth, I think she would. Fare you well, then. +Come, good sweet lady. Prithee, Virgilia, turn thy +solemness out o' door. and go along with us. + +VIRGILIA: +No, at a word, madam; indeed, I must not. I wish +you much mirth. + +VALERIA: +Well, then, farewell. + +MARCIUS: +Yonder comes news. A wager they have met. + +LARTIUS: +My horse to yours, no. + +MARCIUS: +'Tis done. + +LARTIUS: +Agreed. + +MARCIUS: +Say, has our general met the enemy? + +Messenger: +They lie in view; but have not spoke as yet. + +LARTIUS: +So, the good horse is mine. + +MARCIUS: +I'll buy him of you. + +LARTIUS: +No, I'll nor sell nor give him: lend you him I will +For half a hundred years. Summon the town. + +MARCIUS: +How far off lie these armies? + +Messenger: +Within this mile and half. + +MARCIUS: +Then shall we hear their 'larum, and they ours. +Now, Mars, I prithee, make us quick in work, +That we with smoking swords may march from hence, +To help our fielded friends! Come, blow thy blast. +Tutus Aufidius, is he within your walls? + +First Senator: +No, nor a man that fears you less than he, +That's lesser than a little. +Hark! our drums +Are bringing forth our youth. We'll break our walls, +Rather than they shall pound us up: our gates, +Which yet seem shut, we, have but pinn'd with rushes; +They'll open of themselves. +Hark you. far off! +There is Aufidius; list, what work he makes +Amongst your cloven army. + +MARCIUS: +O, they are at it! + +LARTIUS: +Their noise be our instruction. Ladders, ho! + +MARCIUS: +They fear us not, but issue forth their city. +Now put your shields before your hearts, and fight +With hearts more proof than shields. Advance, +brave Titus: +They do disdain us much beyond our thoughts, +Which makes me sweat with wrath. Come on, my fellows: +He that retires I'll take him for a Volsce, +And he shall feel mine edge. + +MARCIUS: +All the contagion of the south light on you, +You shames of Rome! you herd of--Boils and plagues +Plaster you o'er, that you may be abhorr'd +Further than seen and one infect another +Against the wind a mile! You souls of geese, +That bear the shapes of men, how have you run +From slaves that apes would beat! Pluto and hell! +All hurt behind; backs red, and faces pale +With flight and agued fear! Mend and charge home, +Or, by the fires of heaven, I'll leave the foe +And make my wars on you: look to't: come on; +If you'll stand fast, we'll beat them to their wives, +As they us to our trenches followed. +So, now the gates are ope: now prove good seconds: +'Tis for the followers fortune widens them, +Not for the fliers: mark me, and do the like. + +First Soldier: +Fool-hardiness; not I. + +Second Soldier: +Nor I. + +First Soldier: +See, they have shut him in. + +All: +To the pot, I warrant him. + +LARTIUS: +What is become of Marcius? + +All: +Slain, sir, doubtless. + +First Soldier: +Following the fliers at the very heels, +With them he enters; who, upon the sudden, +Clapp'd to their gates: he is himself alone, +To answer all the city. + +LARTIUS: +O noble fellow! +Who sensibly outdares his senseless sword, +And, when it bows, stands up. Thou art left, Marcius: +A carbuncle entire, as big as thou art, +Were not so rich a jewel. Thou wast a soldier +Even to Cato's wish, not fierce and terrible +Only in strokes; but, with thy grim looks and +The thunder-like percussion of thy sounds, +Thou madst thine enemies shake, as if the world +Were feverous and did tremble. + +First Soldier: +Look, sir. + +LARTIUS: +O,'tis Marcius! +Let's fetch him off, or make remain alike. + +First Roman: +This will I carry to Rome. + +Second Roman: +And I this. + +Third Roman: +A murrain on't! I took this for silver. + +MARCIUS: +See here these movers that do prize their hours +At a crack'd drachm! Cushions, leaden spoons, +Irons of a doit, doublets that hangmen would +Bury with those that wore them, these base slaves, +Ere yet the fight be done, pack up: down with them! +And hark, what noise the general makes! To him! +There is the man of my soul's hate, Aufidius, +Piercing our Romans: then, valiant Titus, take +Convenient numbers to make good the city; +Whilst I, with those that have the spirit, will haste +To help Cominius. + +LARTIUS: +Worthy sir, thou bleed'st; +Thy exercise hath been too violent for +A second course of fight. + +MARCIUS: +Sir, praise me not; +My work hath yet not warm'd me: fare you well: +The blood I drop is rather physical +Than dangerous to me: to Aufidius thus +I will appear, and fight. + +LARTIUS: +Now the fair goddess, Fortune, +Fall deep in love with thee; and her great charms +Misguide thy opposers' swords! Bold gentleman, +Prosperity be thy page! + +MARCIUS: +Thy friend no less +Than those she placeth highest! So, farewell. + +LARTIUS: +Thou worthiest Marcius! +Go, sound thy trumpet in the market-place; +Call thither all the officers o' the town, +Where they shall know our mind: away! + +COMINIUS: +Breathe you, my friends: well fought; +we are come off +Like Romans, neither foolish in our stands, +Nor cowardly in retire: believe me, sirs, +We shall be charged again. Whiles we have struck, +By interims and conveying gusts we have heard +The charges of our friends. Ye Roman gods! +Lead their successes as we wish our own, +That both our powers, with smiling +fronts encountering, +May give you thankful sacrifice. +Thy news? + +Messenger: +The citizens of Corioli have issued, +And given to Lartius and to Marcius battle: +I saw our party to their trenches driven, +And then I came away. + +COMINIUS: +Though thou speak'st truth, +Methinks thou speak'st not well. +How long is't since? + +Messenger: +Above an hour, my lord. + +COMINIUS: +'Tis not a mile; briefly we heard their drums: +How couldst thou in a mile confound an hour, +And bring thy news so late? + +Messenger: +Spies of the Volsces +Held me in chase, that I was forced to wheel +Three or four miles about, else had I, sir, +Half an hour since brought my report. + +COMINIUS: +Who's yonder, +That does appear as he were flay'd? O gods +He has the stamp of Marcius; and I have +Before-time seen him thus. + +MARCIUS: + +COMINIUS: +The shepherd knows not thunder from a tabour +More than I know the sound of Marcius' tongue +From every meaner man. + +MARCIUS: +Come I too late? + +COMINIUS: +Ay, if you come not in the blood of others, +But mantled in your own. + +MARCIUS: +O, let me clip ye +In arms as sound as when I woo'd, in heart +As merry as when our nuptial day was done, +And tapers burn'd to bedward! + +COMINIUS: +Flower of warriors, +How is it with Titus Lartius? + +MARCIUS: +As with a man busied about decrees: +Condemning some to death, and some to exile; +Ransoming him, or pitying, threatening the other; +Holding Corioli in the name of Rome, +Even like a fawning greyhound in the leash, +To let him slip at will. + +COMINIUS: +Where is that slave +Which told me they had beat you to your trenches? +Where is he? call him hither. + +MARCIUS: +Let him alone; +He did inform the truth: but for our gentlemen, +The common file--a plague! tribunes for them!-- +The mouse ne'er shunn'd the cat as they did budge +From rascals worse than they. + +COMINIUS: +But how prevail'd you? + +MARCIUS: +Will the time serve to tell? I do not think. +Where is the enemy? are you lords o' the field? +If not, why cease you till you are so? + +COMINIUS: +Marcius, +We have at disadvantage fought and did +Retire to win our purpose. + +MARCIUS: +How lies their battle? know you on which side +They have placed their men of trust? + +COMINIUS: +As I guess, Marcius, +Their bands i' the vaward are the Antiates, +Of their best trust; o'er them Aufidius, +Their very heart of hope. + +MARCIUS: +I do beseech you, +By all the battles wherein we have fought, +By the blood we have shed together, by the vows +We have made to endure friends, that you directly +Set me against Aufidius and his Antiates; +And that you not delay the present, but, +Filling the air with swords advanced and darts, +We prove this very hour. + +COMINIUS: +Though I could wish +You were conducted to a gentle bath +And balms applied to, you, yet dare I never +Deny your asking: take your choice of those +That best can aid your action. + +MARCIUS: +Those are they +That most are willing. If any such be here-- +As it were sin to doubt--that love this painting +Wherein you see me smear'd; if any fear +Lesser his person than an ill report; +If any think brave death outweighs bad life +And that his country's dearer than himself; +Let him alone, or so many so minded, +Wave thus, to express his disposition, +And follow Marcius. +O, me alone! make you a sword of me? +If these shows be not outward, which of you +But is four Volsces? none of you but is +Able to bear against the great Aufidius +A shield as hard as his. A certain number, +Though thanks to all, must I select +from all: the rest +Shall bear the business in some other fight, +As cause will be obey'd. Please you to march; +And four shall quickly draw out my command, +Which men are best inclined. + +COMINIUS: +March on, my fellows: +Make good this ostentation, and you shall +Divide in all with us. + +LARTIUS: +So, let the ports be guarded: keep your duties, +As I have set them down. If I do send, dispatch +Those centuries to our aid: the rest will serve +For a short holding: if we lose the field, +We cannot keep the town. + +Lieutenant: +Fear not our care, sir. + +LARTIUS: +Hence, and shut your gates upon's. +Our guider, come; to the Roman camp conduct us. + +MARCIUS: +I'll fight with none but thee; for I do hate thee +Worse than a promise-breaker. + +AUFIDIUS: +We hate alike: +Not Afric owns a serpent I abhor +More than thy fame and envy. Fix thy foot. + +MARCIUS: +Let the first budger die the other's slave, +And the gods doom him after! + +AUFIDIUS: +If I fly, Marcius, +Holloa me like a hare. + +MARCIUS: +Within these three hours, Tullus, +Alone I fought in your Corioli walls, +And made what work I pleased: 'tis not my blood +Wherein thou seest me mask'd; for thy revenge +Wrench up thy power to the highest. + +AUFIDIUS: +Wert thou the Hector +That was the whip of your bragg'd progeny, +Thou shouldst not scape me here. +Officious, and not valiant, you have shamed me +In your condemned seconds. + +COMINIUS: +If I should tell thee o'er this thy day's work, +Thou'ldst not believe thy deeds: but I'll report it +Where senators shall mingle tears with smiles, +Where great patricians shall attend and shrug, +I' the end admire, where ladies shall be frighted, +And, gladly quaked, hear more; where the +dull tribunes, +That, with the fusty plebeians, hate thine honours, +Shall say against their hearts 'We thank the gods +Our Rome hath such a soldier.' +Yet camest thou to a morsel of this feast, +Having fully dined before. + +LARTIUS: +O general, +Here is the steed, we the caparison: +Hadst thou beheld-- + +MARCIUS: +Pray now, no more: my mother, +Who has a charter to extol her blood, +When she does praise me grieves me. I have done +As you have done; that's what I can; induced +As you have been; that's for my country: +He that has but effected his good will +Hath overta'en mine act. + +COMINIUS: +You shall not be +The grave of your deserving; Rome must know +The value of her own: 'twere a concealment +Worse than a theft, no less than a traducement, +To hide your doings; and to silence that, +Which, to the spire and top of praises vouch'd, +Would seem but modest: therefore, I beseech you +In sign of what you are, not to reward +What you have done--before our army hear me. + +MARCIUS: +I have some wounds upon me, and they smart +To hear themselves remember'd. + +COMINIUS: +Should they not, +Well might they fester 'gainst ingratitude, +And tent themselves with death. Of all the horses, +Whereof we have ta'en good and good store, of all +The treasure in this field achieved and city, +We render you the tenth, to be ta'en forth, +Before the common distribution, at +Your only choice. + +MARCIUS: +I thank you, general; +But cannot make my heart consent to take +A bribe to pay my sword: I do refuse it; +And stand upon my common part with those +That have beheld the doing. + +MARCIUS: +May these same instruments, which you profane, +Never sound more! when drums and trumpets shall +I' the field prove flatterers, let courts and cities be +Made all of false-faced soothing! +When steel grows soft as the parasite's silk, +Let him be made a coverture for the wars! +No more, I say! For that I have not wash'd +My nose that bled, or foil'd some debile wretch.-- +Which, without note, here's many else have done,-- +You shout me forth +In acclamations hyperbolical; +As if I loved my little should be dieted +In praises sauced with lies. + +COMINIUS: +Too modest are you; +More cruel to your good report than grateful +To us that give you truly: by your patience, +If 'gainst yourself you be incensed, we'll put you, +Like one that means his proper harm, in manacles, +Then reason safely with you. Therefore, be it known, +As to us, to all the world, that Caius Marcius +Wears this war's garland: in token of the which, +My noble steed, known to the camp, I give him, +With all his trim belonging; and from this time, +For what he did before Corioli, call him, +With all the applause and clamour of the host, +CAIUS MARCIUS CORIOLANUS! Bear +The addition nobly ever! + +All: +Caius Marcius Coriolanus! + +CORIOLANUS: +I will go wash; +And when my face is fair, you shall perceive +Whether I blush or no: howbeit, I thank you. +I mean to stride your steed, and at all times +To undercrest your good addition +To the fairness of my power. + +COMINIUS: +So, to our tent; +Where, ere we do repose us, we will write +To Rome of our success. You, Titus Lartius, +Must to Corioli back: send us to Rome +The best, with whom we may articulate, +For their own good and ours. + +LARTIUS: +I shall, my lord. + +CORIOLANUS: +The gods begin to mock me. I, that now +Refused most princely gifts, am bound to beg +Of my lord general. + +COMINIUS: +Take't; 'tis yours. What is't? + +CORIOLANUS: +I sometime lay here in Corioli +At a poor man's house; he used me kindly: +He cried to me; I saw him prisoner; +But then Aufidius was within my view, +And wrath o'erwhelm'd my pity: I request you +To give my poor host freedom. + +COMINIUS: +O, well begg'd! +Were he the butcher of my son, he should +Be free as is the wind. Deliver him, Titus. + +LARTIUS: +Marcius, his name? + +CORIOLANUS: +By Jupiter! forgot. +I am weary; yea, my memory is tired. +Have we no wine here? + +COMINIUS: +Go we to our tent: +The blood upon your visage dries; 'tis time +It should be look'd to: come. + +AUFIDIUS: +The town is ta'en! + +First Soldier: +'Twill be deliver'd back on good condition. + +AUFIDIUS: +Condition! +I would I were a Roman; for I cannot, +Being a Volsce, be that I am. Condition! +What good condition can a treaty find +I' the part that is at mercy? Five times, Marcius, +I have fought with thee: so often hast thou beat me, +And wouldst do so, I think, should we encounter +As often as we eat. By the elements, +If e'er again I meet him beard to beard, +He's mine, or I am his: mine emulation +Hath not that honour in't it had; for where +I thought to crush him in an equal force, +True sword to sword, I'll potch at him some way +Or wrath or craft may get him. + +First Soldier: +He's the devil. + +AUFIDIUS: +Bolder, though not so subtle. My valour's poison'd +With only suffering stain by him; for him +Shall fly out of itself: nor sleep nor sanctuary, +Being naked, sick, nor fane nor Capitol, +The prayers of priests nor times of sacrifice, +Embarquements all of fury, shall lift up +Their rotten privilege and custom 'gainst +My hate to Marcius: where I find him, were it +At home, upon my brother's guard, even there, +Against the hospitable canon, would I +Wash my fierce hand in's heart. Go you to the city; +Learn how 'tis held; and what they are that must +Be hostages for Rome. + +First Soldier: +Will not you go? + +AUFIDIUS: +I am attended at the cypress grove: I pray you-- +'Tis south the city mills--bring me word thither +How the world goes, that to the pace of it +I may spur on my journey. + +First Soldier: +I shall, sir. + +MENENIUS: +The augurer tells me we shall have news to-night. + +BRUTUS: +Good or bad? + +MENENIUS: +Not according to the prayer of the people, for they +love not Marcius. + +SICINIUS: +Nature teaches beasts to know their friends. + +MENENIUS: +Pray you, who does the wolf love? + +SICINIUS: +The lamb. + +MENENIUS: +Ay, to devour him; as the hungry plebeians would the +noble Marcius. + +BRUTUS: +He's a lamb indeed, that baes like a bear. + +MENENIUS: +He's a bear indeed, that lives like a lamb. You two +are old men: tell me one thing that I shall ask you. + +Both: +Well, sir. + +MENENIUS: +In what enormity is Marcius poor in, that you two +have not in abundance? + +BRUTUS: +He's poor in no one fault, but stored with all. + +SICINIUS: +Especially in pride. + +BRUTUS: +And topping all others in boasting. + +MENENIUS: +This is strange now: do you two know how you are +censured here in the city, I mean of us o' the +right-hand file? do you? + +Both: +Why, how are we censured? + +MENENIUS: +Because you talk of pride now,--will you not be angry? + +Both: +Well, well, sir, well. + +MENENIUS: +Why, 'tis no great matter; for a very little thief of +occasion will rob you of a great deal of patience: +give your dispositions the reins, and be angry at +your pleasures; at the least if you take it as a +pleasure to you in being so. You blame Marcius for +being proud? + +BRUTUS: +We do it not alone, sir. + +MENENIUS: +I know you can do very little alone; for your helps +are many, or else your actions would grow wondrous +single: your abilities are too infant-like for +doing much alone. You talk of pride: O that you +could turn your eyes toward the napes of your necks, +and make but an interior survey of your good selves! +O that you could! + +BRUTUS: +What then, sir? + +MENENIUS: +Why, then you should discover a brace of unmeriting, +proud, violent, testy magistrates, alias fools, as +any in Rome. + +SICINIUS: +Menenius, you are known well enough too. + +MENENIUS: +I am known to be a humorous patrician, and one that +loves a cup of hot wine with not a drop of allaying +Tiber in't; said to be something imperfect in +favouring the first complaint; hasty and tinder-like +upon too trivial motion; one that converses more +with the buttock of the night than with the forehead +of the morning: what I think I utter, and spend my +malice in my breath. Meeting two such wealsmen as +you are--I cannot call you Lycurguses--if the drink +you give me touch my palate adversely, I make a +crooked face at it. I can't say your worships have +delivered the matter well, when I find the ass in +compound with the major part of your syllables: and +though I must be content to bear with those that say +you are reverend grave men, yet they lie deadly that +tell you you have good faces. If you see this in +the map of my microcosm, follows it that I am known +well enough too? what barm can your bisson +conspectuities glean out of this character, if I be +known well enough too? + +BRUTUS: +Come, sir, come, we know you well enough. + +MENENIUS: +You know neither me, yourselves nor any thing. You +are ambitious for poor knaves' caps and legs: you +wear out a good wholesome forenoon in hearing a +cause between an orange wife and a fosset-seller; +and then rejourn the controversy of three pence to a +second day of audience. When you are hearing a +matter between party and party, if you chance to be +pinched with the colic, you make faces like +mummers; set up the bloody flag against all +patience; and, in roaring for a chamber-pot, +dismiss the controversy bleeding the more entangled +by your hearing: all the peace you make in their +cause is, calling both the parties knaves. You are +a pair of strange ones. + +BRUTUS: +Come, come, you are well understood to be a +perfecter giber for the table than a necessary +bencher in the Capitol. + +MENENIUS: +Our very priests must become mockers, if they shall +encounter such ridiculous subjects as you are. When +you speak best unto the purpose, it is not worth the +wagging of your beards; and your beards deserve not +so honourable a grave as to stuff a botcher's +cushion, or to be entombed in an ass's pack- +saddle. Yet you must be saying, Marcius is proud; +who in a cheap estimation, is worth predecessors +since Deucalion, though peradventure some of the +best of 'em were hereditary hangmen. God-den to +your worships: more of your conversation would +infect my brain, being the herdsmen of the beastly +plebeians: I will be bold to take my leave of you. +How now, my as fair as noble ladies,--and the moon, +were she earthly, no nobler,--whither do you follow +your eyes so fast? + +VOLUMNIA: +Honourable Menenius, my boy Marcius approaches; for +the love of Juno, let's go. + +MENENIUS: +Ha! Marcius coming home! + +VOLUMNIA: +Ay, worthy Menenius; and with most prosperous +approbation. + +MENENIUS: +Take my cap, Jupiter, and I thank thee. Hoo! +Marcius coming home! + +VOLUMNIA: +Nay,'tis true. + +VOLUMNIA: +Look, here's a letter from him: the state hath +another, his wife another; and, I think, there's one +at home for you. + +MENENIUS: +I will make my very house reel tonight: a letter for +me! + +VIRGILIA: +Yes, certain, there's a letter for you; I saw't. + +MENENIUS: +A letter for me! it gives me an estate of seven +years' health; in which time I will make a lip at +the physician: the most sovereign prescription in +Galen is but empiricutic, and, to this preservative, +of no better report than a horse-drench. Is he +not wounded? he was wont to come home wounded. + +VIRGILIA: +O, no, no, no. + +VOLUMNIA: +O, he is wounded; I thank the gods for't. + +MENENIUS: +So do I too, if it be not too much: brings a' +victory in his pocket? the wounds become him. + +VOLUMNIA: +On's brows: Menenius, he comes the third time home +with the oaken garland. + +MENENIUS: +Has he disciplined Aufidius soundly? + +VOLUMNIA: +Titus Lartius writes, they fought together, but +Aufidius got off. + +MENENIUS: +And 'twas time for him too, I'll warrant him that: +an he had stayed by him, I would not have been so +fidiused for all the chests in Corioli, and the gold +that's in them. Is the senate possessed of this? + +VOLUMNIA: +Good ladies, let's go. Yes, yes, yes; the senate +has letters from the general, wherein he gives my +son the whole name of the war: he hath in this +action outdone his former deeds doubly + +VALERIA: +In troth, there's wondrous things spoke of him. + +MENENIUS: +Wondrous! ay, I warrant you, and not without his +true purchasing. + +VIRGILIA: +The gods grant them true! + +VOLUMNIA: +True! pow, wow. + +MENENIUS: +True! I'll be sworn they are true. +Where is he wounded? +God save your good worships! Marcius is coming +home: he has more cause to be proud. Where is he wounded? + +VOLUMNIA: +I' the shoulder and i' the left arm there will be +large cicatrices to show the people, when he shall +stand for his place. He received in the repulse of +Tarquin seven hurts i' the body. + +MENENIUS: +One i' the neck, and two i' the thigh,--there's +nine that I know. + +VOLUMNIA: +He had, before this last expedition, twenty-five +wounds upon him. + +MENENIUS: +Now it's twenty-seven: every gash was an enemy's grave. +Hark! the trumpets. + +VOLUMNIA: +These are the ushers of Marcius: before him he +carries noise, and behind him he leaves tears: +Death, that dark spirit, in 's nervy arm doth lie; +Which, being advanced, declines, and then men die. + +Herald: +Know, Rome, that all alone Marcius did fight +Within Corioli gates: where he hath won, +With fame, a name to Caius Marcius; these +In honour follows Coriolanus. +Welcome to Rome, renowned Coriolanus! + +All: +Welcome to Rome, renowned Coriolanus! + +CORIOLANUS: +No more of this; it does offend my heart: +Pray now, no more. + +COMINIUS: +Look, sir, your mother! + +CORIOLANUS: +O, +You have, I know, petition'd all the gods +For my prosperity! + +VOLUMNIA: +Nay, my good soldier, up; +My gentle Marcius, worthy Caius, and +By deed-achieving honour newly named,-- +What is it?--Coriolanus must I call thee?-- +But O, thy wife! + +CORIOLANUS: +My gracious silence, hail! +Wouldst thou have laugh'd had I come coffin'd home, +That weep'st to see me triumph? Ay, my dear, +Such eyes the widows in Corioli wear, +And mothers that lack sons. + +MENENIUS: +Now, the gods crown thee! + +CORIOLANUS: +And live you yet? +O my sweet lady, pardon. + +VOLUMNIA: +I know not where to turn: O, welcome home: +And welcome, general: and ye're welcome all. + +MENENIUS: +A hundred thousand welcomes. I could weep +And I could laugh, I am light and heavy. Welcome. +A curse begin at very root on's heart, +That is not glad to see thee! You are three +That Rome should dote on: yet, by the faith of men, +We have some old crab-trees here +at home that will not +Be grafted to your relish. Yet welcome, warriors: +We call a nettle but a nettle and +The faults of fools but folly. + +COMINIUS: +Ever right. + +CORIOLANUS: +Menenius ever, ever. + +Herald: +Give way there, and go on! + +CORIOLANUS: + +VOLUMNIA: +I have lived +To see inherited my very wishes +And the buildings of my fancy: only +There's one thing wanting, which I doubt not but +Our Rome will cast upon thee. + +CORIOLANUS: +Know, good mother, +I had rather be their servant in my way, +Than sway with them in theirs. + +COMINIUS: +On, to the Capitol! + +BRUTUS: +All tongues speak of him, and the bleared sights +Are spectacled to see him: your prattling nurse +Into a rapture lets her baby cry +While she chats him: the kitchen malkin pins +Her richest lockram 'bout her reechy neck, +Clambering the walls to eye him: stalls, bulks, windows, +Are smother'd up, leads fill'd, and ridges horsed +With variable complexions, all agreeing +In earnestness to see him: seld-shown flamens +Do press among the popular throngs and puff +To win a vulgar station: or veil'd dames +Commit the war of white and damask in +Their nicely-gawded cheeks to the wanton spoil +Of Phoebus' burning kisses: such a pother +As if that whatsoever god who leads him +Were slily crept into his human powers +And gave him graceful posture. + +SICINIUS: +On the sudden, +I warrant him consul. + +BRUTUS: +Then our office may, +During his power, go sleep. + +SICINIUS: +He cannot temperately transport his honours +From where he should begin and end, but will +Lose those he hath won. + +BRUTUS: +In that there's comfort. + +SICINIUS: +Doubt not +The commoners, for whom we stand, but they +Upon their ancient malice will forget +With the least cause these his new honours, which +That he will give them make I as little question +As he is proud to do't. + +BRUTUS: +I heard him swear, +Were he to stand for consul, never would he +Appear i' the market-place nor on him put +The napless vesture of humility; +Nor showing, as the manner is, his wounds +To the people, beg their stinking breaths. + +SICINIUS: +'Tis right. + +BRUTUS: +It was his word: O, he would miss it rather +Than carry it but by the suit of the gentry to him, +And the desire of the nobles. + +SICINIUS: +I wish no better +Than have him hold that purpose and to put it +In execution. + +BRUTUS: +'Tis most like he will. + +SICINIUS: +It shall be to him then as our good wills, +A sure destruction. + +BRUTUS: +So it must fall out +To him or our authorities. For an end, +We must suggest the people in what hatred +He still hath held them; that to's power he would +Have made them mules, silenced their pleaders and +Dispropertied their freedoms, holding them, +In human action and capacity, +Of no more soul nor fitness for the world +Than camels in the war, who have their provand +Only for bearing burdens, and sore blows +For sinking under them. + +SICINIUS: +This, as you say, suggested +At some time when his soaring insolence +Shall touch the people--which time shall not want, +If he be put upon 't; and that's as easy +As to set dogs on sheep--will be his fire +To kindle their dry stubble; and their blaze +Shall darken him for ever. + +BRUTUS: +What's the matter? + +Messenger: +You are sent for to the Capitol. 'Tis thought +That Marcius shall be consul: +I have seen the dumb men throng to see him and +The blind to bear him speak: matrons flung gloves, +Ladies and maids their scarfs and handkerchers, +Upon him as he pass'd: the nobles bended, +As to Jove's statue, and the commons made +A shower and thunder with their caps and shouts: +I never saw the like. + +BRUTUS: +Let's to the Capitol; +And carry with us ears and eyes for the time, +But hearts for the event. + +SICINIUS: +Have with you. + +First Officer: +Come, come, they are almost here. How many stand +for consulships? + +Second Officer: +Three, they say: but 'tis thought of every one +Coriolanus will carry it. + +First Officer: +That's a brave fellow; but he's vengeance proud, and +loves not the common people. + +Second Officer: +Faith, there had been many great men that have +flattered the people, who ne'er loved them; and there +be many that they have loved, they know not +wherefore: so that, if they love they know not why, +they hate upon no better a ground: therefore, for +Coriolanus neither to care whether they love or hate +him manifests the true knowledge he has in their +disposition; and out of his noble carelessness lets +them plainly see't. + +First Officer: +If he did not care whether he had their love or no, +he waved indifferently 'twixt doing them neither +good nor harm: but he seeks their hate with greater +devotion than can render it him; and leaves +nothing undone that may fully discover him their +opposite. Now, to seem to affect the malice and +displeasure of the people is as bad as that which he +dislikes, to flatter them for their love. + +Second Officer: +He hath deserved worthily of his country: and his +ascent is not by such easy degrees as those who, +having been supple and courteous to the people, +bonneted, without any further deed to have them at +an into their estimation and report: but he hath so +planted his honours in their eyes, and his actions +in their hearts, that for their tongues to be +silent, and not confess so much, were a kind of +ingrateful injury; to report otherwise, were a +malice, that, giving itself the lie, would pluck +reproof and rebuke from every ear that heard it. + +First Officer: +No more of him; he is a worthy man: make way, they +are coming. + +MENENIUS: +Having determined of the Volsces and +To send for Titus Lartius, it remains, +As the main point of this our after-meeting, +To gratify his noble service that +Hath thus stood for his country: therefore, +please you, +Most reverend and grave elders, to desire +The present consul, and last general +In our well-found successes, to report +A little of that worthy work perform'd +By Caius Marcius Coriolanus, whom +We met here both to thank and to remember +With honours like himself. + +First Senator: +Speak, good Cominius: +Leave nothing out for length, and make us think +Rather our state's defective for requital +Than we to stretch it out. +Masters o' the people, +We do request your kindest ears, and after, +Your loving motion toward the common body, +To yield what passes here. + +SICINIUS: +We are convented +Upon a pleasing treaty, and have hearts +Inclinable to honour and advance +The theme of our assembly. + +BRUTUS: +Which the rather +We shall be blest to do, if he remember +A kinder value of the people than +He hath hereto prized them at. + +MENENIUS: +That's off, that's off; +I would you rather had been silent. Please you +To hear Cominius speak? + +BRUTUS: +Most willingly; +But yet my caution was more pertinent +Than the rebuke you give it. + +MENENIUS: +He loves your people +But tie him not to be their bedfellow. +Worthy Cominius, speak. +Nay, keep your place. + +First Senator: +Sit, Coriolanus; never shame to hear +What you have nobly done. + +CORIOLANUS: +Your horror's pardon: +I had rather have my wounds to heal again +Than hear say how I got them. + +BRUTUS: +Sir, I hope +My words disbench'd you not. + +CORIOLANUS: +No, sir: yet oft, +When blows have made me stay, I fled from words. +You soothed not, therefore hurt not: but +your people, +I love them as they weigh. + +MENENIUS: +Pray now, sit down. + +CORIOLANUS: +I had rather have one scratch my head i' the sun +When the alarum were struck than idly sit +To hear my nothings monster'd. + +MENENIUS: +Masters of the people, +Your multiplying spawn how can he flatter-- +That's thousand to one good one--when you now see +He had rather venture all his limbs for honour +Than one on's ears to hear it? Proceed, Cominius. + +COMINIUS: +I shall lack voice: the deeds of Coriolanus +Should not be utter'd feebly. It is held +That valour is the chiefest virtue, and +Most dignifies the haver: if it be, +The man I speak of cannot in the world +Be singly counterpoised. At sixteen years, +When Tarquin made a head for Rome, he fought +Beyond the mark of others: our then dictator, +Whom with all praise I point at, saw him fight, +When with his Amazonian chin he drove +The bristled lips before him: be bestrid +An o'er-press'd Roman and i' the consul's view +Slew three opposers: Tarquin's self he met, +And struck him on his knee: in that day's feats, +When he might act the woman in the scene, +He proved best man i' the field, and for his meed +Was brow-bound with the oak. His pupil age +Man-enter'd thus, he waxed like a sea, +And in the brunt of seventeen battles since +He lurch'd all swords of the garland. For this last, +Before and in Corioli, let me say, +I cannot speak him home: he stopp'd the fliers; +And by his rare example made the coward +Turn terror into sport: as weeds before +A vessel under sail, so men obey'd +And fell below his stem: his sword, death's stamp, +Where it did mark, it took; from face to foot +He was a thing of blood, whose every motion +Was timed with dying cries: alone he enter'd +The mortal gate of the city, which he painted +With shunless destiny; aidless came off, +And with a sudden reinforcement struck +Corioli like a planet: now all's his: +When, by and by, the din of war gan pierce +His ready sense; then straight his doubled spirit +Re-quicken'd what in flesh was fatigate, +And to the battle came he; where he did +Run reeking o'er the lives of men, as if +'Twere a perpetual spoil: and till we call'd +Both field and city ours, he never stood +To ease his breast with panting. + +MENENIUS: +Worthy man! + +First Senator: +He cannot but with measure fit the honours +Which we devise him. + +COMINIUS: +Our spoils he kick'd at, +And look'd upon things precious as they were +The common muck of the world: he covets less +Than misery itself would give; rewards +His deeds with doing them, and is content +To spend the time to end it. + +MENENIUS: +He's right noble: +Let him be call'd for. + +First Senator: +Call Coriolanus. + +Officer: +He doth appear. + +MENENIUS: +The senate, Coriolanus, are well pleased +To make thee consul. + +CORIOLANUS: +I do owe them still +My life and services. + +MENENIUS: +It then remains +That you do speak to the people. + +CORIOLANUS: +I do beseech you, +Let me o'erleap that custom, for I cannot +Put on the gown, stand naked and entreat them, +For my wounds' sake, to give their suffrage: please you +That I may pass this doing. + +SICINIUS: +Sir, the people +Must have their voices; neither will they bate +One jot of ceremony. + +MENENIUS: +Put them not to't: +Pray you, go fit you to the custom and +Take to you, as your predecessors have, +Your honour with your form. + +CORIOLANUS: +It is apart +That I shall blush in acting, and might well +Be taken from the people. + +BRUTUS: +Mark you that? + +CORIOLANUS: +To brag unto them, thus I did, and thus; +Show them the unaching scars which I should hide, +As if I had received them for the hire +Of their breath only! + +MENENIUS: +Do not stand upon't. +We recommend to you, tribunes of the people, +Our purpose to them: and to our noble consul +Wish we all joy and honour. + +Senators: +To Coriolanus come all joy and honour! + +BRUTUS: +You see how he intends to use the people. + +SICINIUS: +May they perceive's intent! He will require them, +As if he did contemn what he requested +Should be in them to give. + +BRUTUS: +Come, we'll inform them +Of our proceedings here: on the marketplace, +I know, they do attend us. + +First Citizen: +Once, if he do require our voices, we ought not to deny him. + +Second Citizen: +We may, sir, if we will. + +Third Citizen: +We have power in ourselves to do it, but it is a +power that we have no power to do; for if he show us +his wounds and tell us his deeds, we are to put our +tongues into those wounds and speak for them; so, if +he tell us his noble deeds, we must also tell him +our noble acceptance of them. Ingratitude is +monstrous, and for the multitude to be ingrateful, +were to make a monster of the multitude: of the +which we being members, should bring ourselves to be +monstrous members. + +First Citizen: +And to make us no better thought of, a little help +will serve; for once we stood up about the corn, he +himself stuck not to call us the many-headed multitude. + +Third Citizen: +We have been called so of many; not that our heads +are some brown, some black, some auburn, some bald, +but that our wits are so diversely coloured: and +truly I think if all our wits were to issue out of +one skull, they would fly east, west, north, south, +and their consent of one direct way should be at +once to all the points o' the compass. + +Second Citizen: +Think you so? Which way do you judge my wit would +fly? + +Third Citizen: +Nay, your wit will not so soon out as another man's +will;'tis strongly wedged up in a block-head, but +if it were at liberty, 'twould, sure, southward. + +Second Citizen: +Why that way? + +Third Citizen: +To lose itself in a fog, where being three parts +melted away with rotten dews, the fourth would return +for conscience sake, to help to get thee a wife. + +Second Citizen: +You are never without your tricks: you may, you may. + +Third Citizen: +Are you all resolved to give your voices? But +that's no matter, the greater part carries it. I +say, if he would incline to the people, there was +never a worthier man. +Here he comes, and in the gown of humility: mark his +behavior. We are not to stay all together, but to +come by him where he stands, by ones, by twos, and +by threes. He's to make his requests by +particulars; wherein every one of us has a single +honour, in giving him our own voices with our own +tongues: therefore follow me, and I direct you how +you shall go by him. + +All: +Content, content. + +MENENIUS: +O sir, you are not right: have you not known +The worthiest men have done't? + +CORIOLANUS: +What must I say? +'I Pray, sir'--Plague upon't! I cannot bring +My tongue to such a pace:--'Look, sir, my wounds! +I got them in my country's service, when +Some certain of your brethren roar'd and ran +From the noise of our own drums.' + +MENENIUS: +O me, the gods! +You must not speak of that: you must desire them +To think upon you. + +CORIOLANUS: +Think upon me! hang 'em! +I would they would forget me, like the virtues +Which our divines lose by 'em. + +MENENIUS: +You'll mar all: +I'll leave you: pray you, speak to 'em, I pray you, +In wholesome manner. + +CORIOLANUS: +Bid them wash their faces +And keep their teeth clean. +So, here comes a brace. +You know the cause, air, of my standing here. + +Third Citizen: +We do, sir; tell us what hath brought you to't. + +CORIOLANUS: +Mine own desert. + +Second Citizen: +Your own desert! + +CORIOLANUS: +Ay, but not mine own desire. + +Third Citizen: +How not your own desire? + +CORIOLANUS: +No, sir,'twas never my desire yet to trouble the +poor with begging. + +Third Citizen: +You must think, if we give you any thing, we hope to +gain by you. + +CORIOLANUS: +Well then, I pray, your price o' the consulship? + +First Citizen: +The price is to ask it kindly. + +CORIOLANUS: +Kindly! Sir, I pray, let me ha't: I have wounds to +show you, which shall be yours in private. Your +good voice, sir; what say you? + +Second Citizen: +You shall ha' it, worthy sir. + +CORIOLANUS: +A match, sir. There's in all two worthy voices +begged. I have your alms: adieu. + +Third Citizen: +But this is something odd. + +Second Citizen: +An 'twere to give again,--but 'tis no matter. + +CORIOLANUS: +Pray you now, if it may stand with the tune of your +voices that I may be consul, I have here the +customary gown. + +Fourth Citizen: +You have deserved nobly of your country, and you +have not deserved nobly. + +CORIOLANUS: +Your enigma? + +Fourth Citizen: +You have been a scourge to her enemies, you have +been a rod to her friends; you have not indeed loved +the common people. + +CORIOLANUS: +You should account me the more virtuous that I have +not been common in my love. I will, sir, flatter my +sworn brother, the people, to earn a dearer +estimation of them; 'tis a condition they account +gentle: and since the wisdom of their choice is +rather to have my hat than my heart, I will practise +the insinuating nod and be off to them most +counterfeitly; that is, sir, I will counterfeit the +bewitchment of some popular man and give it +bountiful to the desirers. Therefore, beseech you, +I may be consul. + +Fifth Citizen: +We hope to find you our friend; and therefore give +you our voices heartily. + +Fourth Citizen: +You have received many wounds for your country. + +CORIOLANUS: +I will not seal your knowledge with showing them. I +will make much of your voices, and so trouble you no further. + +Both Citizens: +The gods give you joy, sir, heartily! + +CORIOLANUS: +Most sweet voices! +Better it is to die, better to starve, +Than crave the hire which first we do deserve. +Why in this woolvish toge should I stand here, +To beg of Hob and Dick, that do appear, +Their needless vouches? Custom calls me to't: +What custom wills, in all things should we do't, +The dust on antique time would lie unswept, +And mountainous error be too highly heapt +For truth to o'er-peer. Rather than fool it so, +Let the high office and the honour go +To one that would do thus. I am half through; +The one part suffer'd, the other will I do. +Here come more voices. +Your voices: for your voices I have fought; +Watch'd for your voices; for Your voices bear +Of wounds two dozen odd; battles thrice six +I have seen and heard of; for your voices have +Done many things, some less, some more your voices: +Indeed I would be consul. + +Sixth Citizen: +He has done nobly, and cannot go without any honest +man's voice. + +Seventh Citizen: +Therefore let him be consul: the gods give him joy, +and make him good friend to the people! + +All Citizens: +Amen, amen. God save thee, noble consul! + +CORIOLANUS: +Worthy voices! + +MENENIUS: +You have stood your limitation; and the tribunes +Endue you with the people's voice: remains +That, in the official marks invested, you +Anon do meet the senate. + +CORIOLANUS: +Is this done? + +SICINIUS: +The custom of request you have discharged: +The people do admit you, and are summon'd +To meet anon, upon your approbation. + +CORIOLANUS: +Where? at the senate-house? + +SICINIUS: +There, Coriolanus. + +CORIOLANUS: +May I change these garments? + +SICINIUS: +You may, sir. + +CORIOLANUS: +That I'll straight do; and, knowing myself again, +Repair to the senate-house. + +MENENIUS: +I'll keep you company. Will you along? + +BRUTUS: +We stay here for the people. + +SICINIUS: +Fare you well. +He has it now, and by his looks methink +'Tis warm at 's heart. + +BRUTUS: +With a proud heart he wore his humble weeds. +will you dismiss the people? + +SICINIUS: +How now, my masters! have you chose this man? + +First Citizen: +He has our voices, sir. + +BRUTUS: +We pray the gods he may deserve your loves. + +Second Citizen: +Amen, sir: to my poor unworthy notice, +He mock'd us when he begg'd our voices. + +Third Citizen: +Certainly +He flouted us downright. + +First Citizen: +No,'tis his kind of speech: he did not mock us. + +Second Citizen: +Not one amongst us, save yourself, but says +He used us scornfully: he should have show'd us +His marks of merit, wounds received for's country. + +SICINIUS: +Why, so he did, I am sure. + +Citizens: +No, no; no man saw 'em. + +Third Citizen: +He said he had wounds, which he could show +in private; +And with his hat, thus waving it in scorn, +'I would be consul,' says he: 'aged custom, +But by your voices, will not so permit me; +Your voices therefore.' When we granted that, +Here was 'I thank you for your voices: thank you: +Your most sweet voices: now you have left +your voices, +I have no further with you.' Was not this mockery? + +SICINIUS: +Why either were you ignorant to see't, +Or, seeing it, of such childish friendliness +To yield your voices? + +BRUTUS: +Could you not have told him +As you were lesson'd, when he had no power, +But was a petty servant to the state, +He was your enemy, ever spake against +Your liberties and the charters that you bear +I' the body of the weal; and now, arriving +A place of potency and sway o' the state, +If he should still malignantly remain +Fast foe to the plebeii, your voices might +Be curses to yourselves? You should have said +That as his worthy deeds did claim no less +Than what he stood for, so his gracious nature +Would think upon you for your voices and +Translate his malice towards you into love, +Standing your friendly lord. + +SICINIUS: +Thus to have said, +As you were fore-advised, had touch'd his spirit +And tried his inclination; from him pluck'd +Either his gracious promise, which you might, +As cause had call'd you up, have held him to +Or else it would have gall'd his surly nature, +Which easily endures not article +Tying him to aught; so putting him to rage, +You should have ta'en the advantage of his choler +And pass'd him unelected. + +BRUTUS: +Did you perceive +He did solicit you in free contempt +When he did need your loves, and do you think +That his contempt shall not be bruising to you, +When he hath power to crush? Why, had your bodies +No heart among you? or had you tongues to cry +Against the rectorship of judgment? + +SICINIUS: +Have you +Ere now denied the asker? and now again +Of him that did not ask, but mock, bestow +Your sued-for tongues? + +Third Citizen: +He's not confirm'd; we may deny him yet. + +Second Citizen: +And will deny him: +I'll have five hundred voices of that sound. + +First Citizen: +I twice five hundred and their friends to piece 'em. + +BRUTUS: +Get you hence instantly, and tell those friends, +They have chose a consul that will from them take +Their liberties; make them of no more voice +Than dogs that are as often beat for barking +As therefore kept to do so. + +SICINIUS: +Let them assemble, +And on a safer judgment all revoke +Your ignorant election; enforce his pride, +And his old hate unto you; besides, forget not +With what contempt he wore the humble weed, +How in his suit he scorn'd you; but your loves, +Thinking upon his services, took from you +The apprehension of his present portance, +Which most gibingly, ungravely, he did fashion +After the inveterate hate he bears you. + +BRUTUS: +Lay +A fault on us, your tribunes; that we laboured, +No impediment between, but that you must +Cast your election on him. + +SICINIUS: +Say, you chose him +More after our commandment than as guided +By your own true affections, and that your minds, +Preoccupied with what you rather must do +Than what you should, made you against the grain +To voice him consul: lay the fault on us. + +BRUTUS: +Ay, spare us not. Say we read lectures to you. +How youngly he began to serve his country, +How long continued, and what stock he springs of, +The noble house o' the Marcians, from whence came +That Ancus Marcius, Numa's daughter's son, +Who, after great Hostilius, here was king; +Of the same house Publius and Quintus were, +That our beat water brought by conduits hither; +And +Twice being +Was his great ancestor. + +SICINIUS: +One thus descended, +That hath beside well in his person wrought +To be set high in place, we did commend +To your remembrances: but you have found, +Scaling his present bearing with his past, +That he's your fixed enemy, and revoke +Your sudden approbation. + +BRUTUS: +Say, you ne'er had done't-- +Harp on that still--but by our putting on; +And presently, when you have drawn your number, +Repair to the Capitol. + +All: +We will so: almost all +Repent in their election. + +BRUTUS: +Let them go on; +This mutiny were better put in hazard, +Than stay, past doubt, for greater: +If, as his nature is, he fall in rage +With their refusal, both observe and answer +The vantage of his anger. + +SICINIUS: +To the Capitol, come: +We will be there before the stream o' the people; +And this shall seem, as partly 'tis, their own, +Which we have goaded onward. + +CORIOLANUS: +Tullus Aufidius then had made new head? + +LARTIUS: +He had, my lord; and that it was which caused +Our swifter composition. + +CORIOLANUS: +So then the Volsces stand but as at first, +Ready, when time shall prompt them, to make road. +Upon's again. + +COMINIUS: +They are worn, lord consul, so, +That we shall hardly in our ages see +Their banners wave again. + +CORIOLANUS: +Saw you Aufidius? + +LARTIUS: +On safe-guard he came to me; and did curse +Against the Volsces, for they had so vilely +Yielded the town: he is retired to Antium. + +CORIOLANUS: +Spoke he of me? + +LARTIUS: +He did, my lord. + +CORIOLANUS: +How? what? + +LARTIUS: +How often he had met you, sword to sword; +That of all things upon the earth he hated +Your person most, that he would pawn his fortunes +To hopeless restitution, so he might +Be call'd your vanquisher. + +CORIOLANUS: +At Antium lives he? + +LARTIUS: +At Antium. + +CORIOLANUS: +I wish I had a cause to seek him there, +To oppose his hatred fully. Welcome home. +Behold, these are the tribunes of the people, +The tongues o' the common mouth: I do despise them; +For they do prank them in authority, +Against all noble sufferance. + +SICINIUS: +Pass no further. + +CORIOLANUS: +Ha! what is that? + +BRUTUS: +It will be dangerous to go on: no further. + +CORIOLANUS: +What makes this change? + +MENENIUS: +The matter? + +COMINIUS: +Hath he not pass'd the noble and the common? + +BRUTUS: +Cominius, no. + +CORIOLANUS: +Have I had children's voices? + +First Senator: +Tribunes, give way; he shall to the market-place. + +BRUTUS: +The people are incensed against him. + +SICINIUS: +Stop, +Or all will fall in broil. + +CORIOLANUS: +Are these your herd? +Must these have voices, that can yield them now +And straight disclaim their tongues? What are +your offices? +You being their mouths, why rule you not their teeth? +Have you not set them on? + +MENENIUS: +Be calm, be calm. + +CORIOLANUS: +It is a purposed thing, and grows by plot, +To curb the will of the nobility: +Suffer't, and live with such as cannot rule +Nor ever will be ruled. + +BRUTUS: +Call't not a plot: +The people cry you mock'd them, and of late, +When corn was given them gratis, you repined; +Scandal'd the suppliants for the people, call'd them +Time-pleasers, flatterers, foes to nobleness. + +CORIOLANUS: +Why, this was known before. + +BRUTUS: +Not to them all. + +CORIOLANUS: +Have you inform'd them sithence? + +BRUTUS: +How! I inform them! + +CORIOLANUS: +You are like to do such business. + +BRUTUS: +Not unlike, +Each way, to better yours. + +CORIOLANUS: +Why then should I be consul? By yond clouds, +Let me deserve so ill as you, and make me +Your fellow tribune. + +SICINIUS: +You show too much of that +For which the people stir: if you will pass +To where you are bound, you must inquire your way, +Which you are out of, with a gentler spirit, +Or never be so noble as a consul, +Nor yoke with him for tribune. + +MENENIUS: +Let's be calm. + +COMINIUS: +The people are abused; set on. This paltering +Becomes not Rome, nor has Coriolanus +Deserved this so dishonour'd rub, laid falsely +I' the plain way of his merit. + +CORIOLANUS: +Tell me of corn! +This was my speech, and I will speak't again-- + +MENENIUS: +Not now, not now. + +First Senator: +Not in this heat, sir, now. + +CORIOLANUS: +Now, as I live, I will. My nobler friends, +I crave their pardons: +For the mutable, rank-scented many, let them +Regard me as I do not flatter, and +Therein behold themselves: I say again, +In soothing them, we nourish 'gainst our senate +The cockle of rebellion, insolence, sedition, +Which we ourselves have plough'd for, sow'd, +and scatter'd, +By mingling them with us, the honour'd number, +Who lack not virtue, no, nor power, but that +Which they have given to beggars. + +MENENIUS: +Well, no more. + +First Senator: +No more words, we beseech you. + +CORIOLANUS: +How! no more! +As for my country I have shed my blood, +Not fearing outward force, so shall my lungs +Coin words till their decay against those measles, +Which we disdain should tatter us, yet sought +The very way to catch them. + +BRUTUS: +You speak o' the people, +As if you were a god to punish, not +A man of their infirmity. + +SICINIUS: +'Twere well +We let the people know't. + +MENENIUS: +What, what? his choler? + +CORIOLANUS: +Choler! +Were I as patient as the midnight sleep, +By Jove, 'twould be my mind! + +SICINIUS: +It is a mind +That shall remain a poison where it is, +Not poison any further. + +CORIOLANUS: +Shall remain! +Hear you this Triton of the minnows? mark you +His absolute 'shall'? + +COMINIUS: +'Twas from the canon. + +CORIOLANUS: +'Shall'! +O good but most unwise patricians! why, +You grave but reckless senators, have you thus +Given Hydra here to choose an officer, +That with his peremptory 'shall,' being but +The horn and noise o' the monster's, wants not spirit +To say he'll turn your current in a ditch, +And make your channel his? If he have power +Then vail your ignorance; if none, awake +Your dangerous lenity. If you are learn'd, +Be not as common fools; if you are not, +Let them have cushions by you. You are plebeians, +If they be senators: and they are no less, +When, both your voices blended, the great'st taste +Most palates theirs. They choose their magistrate, +And such a one as he, who puts his 'shall,' +His popular 'shall' against a graver bench +Than ever frown in Greece. By Jove himself! +It makes the consuls base: and my soul aches +To know, when two authorities are up, +Neither supreme, how soon confusion +May enter 'twixt the gap of both and take +The one by the other. + +COMINIUS: +Well, on to the market-place. + +CORIOLANUS: +Whoever gave that counsel, to give forth +The corn o' the storehouse gratis, as 'twas used +Sometime in Greece,-- + +MENENIUS: +Well, well, no more of that. + +CORIOLANUS: +Though there the people had more absolute power, +I say, they nourish'd disobedience, fed +The ruin of the state. + +BRUTUS: +Why, shall the people give +One that speaks thus their voice? + +CORIOLANUS: +I'll give my reasons, +More worthier than their voices. They know the corn +Was not our recompense, resting well assured +That ne'er did service for't: being press'd to the war, +Even when the navel of the state was touch'd, +They would not thread the gates. This kind of service +Did not deserve corn gratis. Being i' the war +Their mutinies and revolts, wherein they show'd +Most valour, spoke not for them: the accusation +Which they have often made against the senate, +All cause unborn, could never be the motive +Of our so frank donation. Well, what then? +How shall this bisson multitude digest +The senate's courtesy? Let deeds express +What's like to be their words: 'we did request it; +We are the greater poll, and in true fear +They gave us our demands.' Thus we debase +The nature of our seats and make the rabble +Call our cares fears; which will in time +Break ope the locks o' the senate and bring in +The crows to peck the eagles. + +MENENIUS: +Come, enough. + +BRUTUS: +Enough, with over-measure. + +CORIOLANUS: +No, take more: +What may be sworn by, both divine and human, +Seal what I end withal! This double worship, +Where one part does disdain with cause, the other +Insult without all reason, where gentry, title, wisdom, +Cannot conclude but by the yea and no +Of general ignorance,--it must omit +Real necessities, and give way the while +To unstable slightness: purpose so barr'd, +it follows, +Nothing is done to purpose. Therefore, beseech you,-- +You that will be less fearful than discreet, +That love the fundamental part of state +More than you doubt the change on't, that prefer +A noble life before a long, and wish +To jump a body with a dangerous physic +That's sure of death without it, at once pluck out +The multitudinous tongue; let them not lick +The sweet which is their poison: your dishonour +Mangles true judgment and bereaves the state +Of that integrity which should become't, +Not having the power to do the good it would, +For the in which doth control't. + +BRUTUS: +Has said enough. + +SICINIUS: +Has spoken like a traitor, and shall answer +As traitors do. + +CORIOLANUS: +Thou wretch, despite o'erwhelm thee! +What should the people do with these bald tribunes? +On whom depending, their obedience fails +To the greater bench: in a rebellion, +When what's not meet, but what must be, was law, +Then were they chosen: in a better hour, +Let what is meet be said it must be meet, +And throw their power i' the dust. + +BRUTUS: +Manifest treason! + +SICINIUS: +This a consul? no. + +BRUTUS: +The aediles, ho! +Let him be apprehended. + +SICINIUS: +Go, call the people: +in whose name myself +Attach thee as a traitorous innovator, +A foe to the public weal: obey, I charge thee, +And follow to thine answer. + +CORIOLANUS: +Hence, old goat! + +Senators, &C: +We'll surety him. + +COMINIUS: +Aged sir, hands off. + +CORIOLANUS: +Hence, rotten thing! or I shall shake thy bones +Out of thy garments. + +SICINIUS: +Help, ye citizens! + +MENENIUS: +On both sides more respect. + +SICINIUS: +Here's he that would take from you all your power. + +BRUTUS: +Seize him, AEdiles! + +Citizens: +Down with him! down with him! + +Senators, &C: +Weapons, weapons, weapons! +'Tribunes!' 'Patricians!' 'Citizens!' 'What, ho!' +'Sicinius!' 'Brutus!' 'Coriolanus!' 'Citizens!' +'Peace, peace, peace!' 'Stay, hold, peace!' + +MENENIUS: +What is about to be? I am out of breath; +Confusion's near; I cannot speak. You, tribunes +To the people! Coriolanus, patience! +Speak, good Sicinius. + +SICINIUS: +Hear me, people; peace! + +Citizens: +Let's hear our tribune: peace Speak, speak, speak. + +SICINIUS: +You are at point to lose your liberties: +Marcius would have all from you; Marcius, +Whom late you have named for consul. + +MENENIUS: +Fie, fie, fie! +This is the way to kindle, not to quench. + +First Senator: +To unbuild the city and to lay all flat. + +SICINIUS: +What is the city but the people? + +Citizens: +True, +The people are the city. + +BRUTUS: +By the consent of all, we were establish'd +The people's magistrates. + +Citizens: +You so remain. + +MENENIUS: +And so are like to do. + +COMINIUS: +That is the way to lay the city flat; +To bring the roof to the foundation, +And bury all, which yet distinctly ranges, +In heaps and piles of ruin. + +SICINIUS: +This deserves death. + +BRUTUS: +Or let us stand to our authority, +Or let us lose it. We do here pronounce, +Upon the part o' the people, in whose power +We were elected theirs, Marcius is worthy +Of present death. + +SICINIUS: +Therefore lay hold of him; +Bear him to the rock Tarpeian, and from thence +Into destruction cast him. + +BRUTUS: +AEdiles, seize him! + +Citizens: +Yield, Marcius, yield! + +MENENIUS: +Hear me one word; +Beseech you, tribunes, hear me but a word. + +AEdile: +Peace, peace! + +MENENIUS: + +BRUTUS: +Sir, those cold ways, +That seem like prudent helps, are very poisonous +Where the disease is violent. Lay hands upon him, +And bear him to the rock. + +CORIOLANUS: +No, I'll die here. +There's some among you have beheld me fighting: +Come, try upon yourselves what you have seen me. + +MENENIUS: +Down with that sword! Tribunes, withdraw awhile. + +BRUTUS: +Lay hands upon him. + +COMINIUS: +Help Marcius, help, +You that be noble; help him, young and old! + +Citizens: +Down with him, down with him! + +MENENIUS: +Go, get you to your house; be gone, away! +All will be naught else. + +Second Senator: +Get you gone. + +COMINIUS: +Stand fast; +We have as many friends as enemies. + +MENENIUS: +Sham it be put to that? + +First Senator: +The gods forbid! +I prithee, noble friend, home to thy house; +Leave us to cure this cause. + +MENENIUS: +For 'tis a sore upon us, +You cannot tent yourself: be gone, beseech you. + +COMINIUS: +Come, sir, along with us. + +CORIOLANUS: +I would they were barbarians--as they are, +Though in Rome litter'd--not Romans--as they are not, +Though calved i' the porch o' the Capitol-- + +MENENIUS: +Be gone; +Put not your worthy rage into your tongue; +One time will owe another. + +CORIOLANUS: +On fair ground +I could beat forty of them. + +COMINIUS: +I could myself +Take up a brace o' the best of them; yea, the +two tribunes: +But now 'tis odds beyond arithmetic; +And manhood is call'd foolery, when it stands +Against a falling fabric. Will you hence, +Before the tag return? whose rage doth rend +Like interrupted waters and o'erbear +What they are used to bear. + +MENENIUS: +Pray you, be gone: +I'll try whether my old wit be in request +With those that have but little: this must be patch'd +With cloth of any colour. + +COMINIUS: +Nay, come away. + +A Patrician: +This man has marr'd his fortune. + +MENENIUS: +His nature is too noble for the world: +He would not flatter Neptune for his trident, +Or Jove for's power to thunder. His heart's his mouth: +What his breast forges, that his tongue must vent; +And, being angry, does forget that ever +He heard the name of death. +Here's goodly work! + +Second Patrician: +I would they were abed! + +MENENIUS: +I would they were in Tiber! What the vengeance! +Could he not speak 'em fair? + +SICINIUS: +Where is this viper +That would depopulate the city and +Be every man himself? + +MENENIUS: +You worthy tribunes,-- + +SICINIUS: +He shall be thrown down the Tarpeian rock +With rigorous hands: he hath resisted law, +And therefore law shall scorn him further trial +Than the severity of the public power +Which he so sets at nought. + +First Citizen: +He shall well know +The noble tribunes are the people's mouths, +And we their hands. + +Citizens: +He shall, sure on't. + +MENENIUS: +Sir, sir,-- + +SICINIUS: +Peace! + +MENENIUS: +Do not cry havoc, where you should but hunt +With modest warrant. + +SICINIUS: +Sir, how comes't that you +Have holp to make this rescue? + +MENENIUS: +Hear me speak: +As I do know the consul's worthiness, +So can I name his faults,-- + +SICINIUS: +Consul! what consul? + +MENENIUS: +The consul Coriolanus. + +BRUTUS: +He consul! + +Citizens: +No, no, no, no, no. + +MENENIUS: +If, by the tribunes' leave, and yours, good people, +I may be heard, I would crave a word or two; +The which shall turn you to no further harm +Than so much loss of time. + +SICINIUS: +Speak briefly then; +For we are peremptory to dispatch +This viperous traitor: to eject him hence +Were but one danger, and to keep him here +Our certain death: therefore it is decreed +He dies to-night. + +MENENIUS: +Now the good gods forbid +That our renowned Rome, whose gratitude +Towards her deserved children is enroll'd +In Jove's own book, like an unnatural dam +Should now eat up her own! + +SICINIUS: +He's a disease that must be cut away. + +MENENIUS: +O, he's a limb that has but a disease; +Mortal, to cut it off; to cure it, easy. +What has he done to Rome that's worthy death? +Killing our enemies, the blood he hath lost-- +Which, I dare vouch, is more than that he hath, +By many an ounce--he dropp'd it for his country; +And what is left, to lose it by his country, +Were to us all, that do't and suffer it, +A brand to the end o' the world. + +SICINIUS: +This is clean kam. + +BRUTUS: +Merely awry: when he did love his country, +It honour'd him. + +MENENIUS: +The service of the foot +Being once gangrened, is not then respected +For what before it was. + +BRUTUS: +We'll hear no more. +Pursue him to his house, and pluck him thence: +Lest his infection, being of catching nature, +Spread further. + +MENENIUS: +One word more, one word. +This tiger-footed rage, when it shall find +The harm of unscann'd swiftness, will too late +Tie leaden pounds to's heels. Proceed by process; +Lest parties, as he is beloved, break out, +And sack great Rome with Romans. + +BRUTUS: +If it were so,-- + +SICINIUS: +What do ye talk? +Have we not had a taste of his obedience? +Our aediles smote? ourselves resisted? Come. + +MENENIUS: +Consider this: he has been bred i' the wars +Since he could draw a sword, and is ill school'd +In bolted language; meal and bran together +He throws without distinction. Give me leave, +I'll go to him, and undertake to bring him +Where he shall answer, by a lawful form, +In peace, to his utmost peril. + +First Senator: +Noble tribunes, +It is the humane way: the other course +Will prove too bloody, and the end of it +Unknown to the beginning. + +SICINIUS: +Noble Menenius, +Be you then as the people's officer. +Masters, lay down your weapons. + +BRUTUS: +Go not home. + +SICINIUS: +Meet on the market-place. We'll attend you there: +Where, if you bring not Marcius, we'll proceed +In our first way. + +MENENIUS: +I'll bring him to you. +Let me desire your company: he must come, +Or what is worst will follow. + +First Senator: +Pray you, let's to him. + +CORIOLANUS: +Let them puff all about mine ears, present me +Death on the wheel or at wild horses' heels, +Or pile ten hills on the Tarpeian rock, +That the precipitation might down stretch +Below the beam of sight, yet will I still +Be thus to them. + +A Patrician: +You do the nobler. + +CORIOLANUS: +I muse my mother +Does not approve me further, who was wont +To call them woollen vassals, things created +To buy and sell with groats, to show bare heads +In congregations, to yawn, be still and wonder, +When one but of my ordinance stood up +To speak of peace or war. +I talk of you: +Why did you wish me milder? would you have me +False to my nature? Rather say I play +The man I am. + +VOLUMNIA: +O, sir, sir, sir, +I would have had you put your power well on, +Before you had worn it out. + +CORIOLANUS: +Let go. + +VOLUMNIA: +You might have been enough the man you are, +With striving less to be so; lesser had been +The thwartings of your dispositions, if +You had not show'd them how ye were disposed +Ere they lack'd power to cross you. + +CORIOLANUS: +Let them hang. + +A Patrician: +Ay, and burn too. + +MENENIUS: +Come, come, you have been too rough, something +too rough; +You must return and mend it. + +First Senator: +There's no remedy; +Unless, by not so doing, our good city +Cleave in the midst, and perish. + +VOLUMNIA: +Pray, be counsell'd: +I have a heart as little apt as yours, +But yet a brain that leads my use of anger +To better vantage. + +MENENIUS: +Well said, noble woman? +Before he should thus stoop to the herd, but that +The violent fit o' the time craves it as physic +For the whole state, I would put mine armour on, +Which I can scarcely bear. + +CORIOLANUS: +What must I do? + +MENENIUS: +Return to the tribunes. + +CORIOLANUS: +Well, what then? what then? + +MENENIUS: +Repent what you have spoke. + +CORIOLANUS: +For them! I cannot do it to the gods; +Must I then do't to them? + +VOLUMNIA: +You are too absolute; +Though therein you can never be too noble, +But when extremities speak. I have heard you say, +Honour and policy, like unsever'd friends, +I' the war do grow together: grant that, and tell me, +In peace what each of them by the other lose, +That they combine not there. + +CORIOLANUS: +Tush, tush! + +MENENIUS: +A good demand. + +VOLUMNIA: +If it be honour in your wars to seem +The same you are not, which, for your best ends, +You adopt your policy, how is it less or worse, +That it shall hold companionship in peace +With honour, as in war, since that to both +It stands in like request? + +CORIOLANUS: +Why force you this? + +VOLUMNIA: +Because that now it lies you on to speak +To the people; not by your own instruction, +Nor by the matter which your heart prompts you, +But with such words that are but rooted in +Your tongue, though but bastards and syllables +Of no allowance to your bosom's truth. +Now, this no more dishonours you at all +Than to take in a town with gentle words, +Which else would put you to your fortune and +The hazard of much blood. +I would dissemble with my nature where +My fortunes and my friends at stake required +I should do so in honour: I am in this, +Your wife, your son, these senators, the nobles; +And you will rather show our general louts +How you can frown than spend a fawn upon 'em, +For the inheritance of their loves and safeguard +Of what that want might ruin. + +MENENIUS: +Noble lady! +Come, go with us; speak fair: you may salve so, +Not what is dangerous present, but the loss +Of what is past. + +VOLUMNIA: +I prithee now, my son, +Go to them, with this bonnet in thy hand; +And thus far having stretch'd it--here be with them-- +Thy knee bussing the stones--for in such business +Action is eloquence, and the eyes of the ignorant +More learned than the ears--waving thy head, +Which often, thus, correcting thy stout heart, +Now humble as the ripest mulberry +That will not hold the handling: or say to them, +Thou art their soldier, and being bred in broils +Hast not the soft way which, thou dost confess, +Were fit for thee to use as they to claim, +In asking their good loves, but thou wilt frame +Thyself, forsooth, hereafter theirs, so far +As thou hast power and person. + +MENENIUS: +This but done, +Even as she speaks, why, their hearts were yours; +For they have pardons, being ask'd, as free +As words to little purpose. + +VOLUMNIA: +Prithee now, +Go, and be ruled: although I know thou hadst rather +Follow thine enemy in a fiery gulf +Than flatter him in a bower. Here is Cominius. + +COMINIUS: +I have been i' the market-place; and, sir,'tis fit +You make strong party, or defend yourself +By calmness or by absence: all's in anger. + +MENENIUS: +Only fair speech. + +COMINIUS: +I think 'twill serve, if he +Can thereto frame his spirit. + +VOLUMNIA: +He must, and will +Prithee now, say you will, and go about it. + +CORIOLANUS: +Must I go show them my unbarbed sconce? +Must I with base tongue give my noble heart +A lie that it must bear? Well, I will do't: +Yet, were there but this single plot to lose, +This mould of Marcius, they to dust should grind it +And throw't against the wind. To the market-place! +You have put me now to such a part which never +I shall discharge to the life. + +COMINIUS: +Come, come, we'll prompt you. + +VOLUMNIA: +I prithee now, sweet son, as thou hast said +My praises made thee first a soldier, so, +To have my praise for this, perform a part +Thou hast not done before. + +CORIOLANUS: +Well, I must do't: +Away, my disposition, and possess me +Some harlot's spirit! my throat of war be turn'd, +Which quired with my drum, into a pipe +Small as an eunuch, or the virgin voice +That babies lulls asleep! the smiles of knaves +Tent in my cheeks, and schoolboys' tears take up +The glasses of my sight! a beggar's tongue +Make motion through my lips, and my arm'd knees, +Who bow'd but in my stirrup, bend like his +That hath received an alms! I will not do't, +Lest I surcease to honour mine own truth +And by my body's action teach my mind +A most inherent baseness. + +VOLUMNIA: +At thy choice, then: +To beg of thee, it is my more dishonour +Than thou of them. Come all to ruin; let +Thy mother rather feel thy pride than fear +Thy dangerous stoutness, for I mock at death +With as big heart as thou. Do as thou list +Thy valiantness was mine, thou suck'dst it from me, +But owe thy pride thyself. + +CORIOLANUS: +Pray, be content: +Mother, I am going to the market-place; +Chide me no more. I'll mountebank their loves, +Cog their hearts from them, and come home beloved +Of all the trades in Rome. Look, I am going: +Commend me to my wife. I'll return consul; +Or never trust to what my tongue can do +I' the way of flattery further. + +VOLUMNIA: +Do your will. + +COMINIUS: +Away! the tribunes do attend you: arm yourself +To answer mildly; for they are prepared +With accusations, as I hear, more strong +Than are upon you yet. + +CORIOLANUS: +The word is 'mildly.' Pray you, let us go: +Let them accuse me by invention, I +Will answer in mine honour. + +MENENIUS: +Ay, but mildly. + +CORIOLANUS: +Well, mildly be it then. Mildly! + +BRUTUS: +In this point charge him home, that he affects +Tyrannical power: if he evade us there, +Enforce him with his envy to the people, +And that the spoil got on the Antiates +Was ne'er distributed. +What, will he come? + +AEdile: +He's coming. + +BRUTUS: +How accompanied? + +AEdile: +With old Menenius, and those senators +That always favour'd him. + +SICINIUS: +Have you a catalogue +Of all the voices that we have procured +Set down by the poll? + +AEdile: +I have; 'tis ready. + +SICINIUS: +Have you collected them by tribes? + +AEdile: +I have. + +SICINIUS: +Assemble presently the people hither; +And when they bear me say 'It shall be so +I' the right and strength o' the commons,' be it either +For death, for fine, or banishment, then let them +If I say fine, cry 'Fine;' if death, cry 'Death.' +Insisting on the old prerogative +And power i' the truth o' the cause. + +AEdile: +I shall inform them. + +BRUTUS: +And when such time they have begun to cry, +Let them not cease, but with a din confused +Enforce the present execution +Of what we chance to sentence. + +AEdile: +Very well. + +SICINIUS: +Make them be strong and ready for this hint, +When we shall hap to give 't them. + +BRUTUS: +Go about it. +Put him to choler straight: he hath been used +Ever to conquer, and to have his worth +Of contradiction: being once chafed, he cannot +Be rein'd again to temperance; then he speaks +What's in his heart; and that is there which looks +With us to break his neck. + +SICINIUS: +Well, here he comes. + +MENENIUS: +Calmly, I do beseech you. + +CORIOLANUS: +Ay, as an ostler, that for the poorest piece +Will bear the knave by the volume. The honour'd gods +Keep Rome in safety, and the chairs of justice +Supplied with worthy men! plant love among 's! +Throng our large temples with the shows of peace, +And not our streets with war! + +First Senator: +Amen, amen. + +MENENIUS: +A noble wish. + +SICINIUS: +Draw near, ye people. + +AEdile: +List to your tribunes. Audience: peace, I say! + +CORIOLANUS: +First, hear me speak. + +Both Tribunes: +Well, say. Peace, ho! + +CORIOLANUS: +Shall I be charged no further than this present? +Must all determine here? + +SICINIUS: +I do demand, +If you submit you to the people's voices, +Allow their officers and are content +To suffer lawful censure for such faults +As shall be proved upon you? + +CORIOLANUS: +I am content. + +MENENIUS: +Lo, citizens, he says he is content: +The warlike service he has done, consider; think +Upon the wounds his body bears, which show +Like graves i' the holy churchyard. + +CORIOLANUS: +Scratches with briers, +Scars to move laughter only. + +MENENIUS: +Consider further, +That when he speaks not like a citizen, +You find him like a soldier: do not take +His rougher accents for malicious sounds, +But, as I say, such as become a soldier, +Rather than envy you. + +COMINIUS: +Well, well, no more. + +CORIOLANUS: +What is the matter +That being pass'd for consul with full voice, +I am so dishonour'd that the very hour +You take it off again? + +SICINIUS: +Answer to us. + +CORIOLANUS: +Say, then: 'tis true, I ought so. + +SICINIUS: +We charge you, that you have contrived to take +From Rome all season'd office and to wind +Yourself into a power tyrannical; +For which you are a traitor to the people. + +CORIOLANUS: +How! traitor! + +MENENIUS: +Nay, temperately; your promise. + +CORIOLANUS: +The fires i' the lowest hell fold-in the people! +Call me their traitor! Thou injurious tribune! +Within thine eyes sat twenty thousand deaths, +In thy hand clutch'd as many millions, in +Thy lying tongue both numbers, I would say +'Thou liest' unto thee with a voice as free +As I do pray the gods. + +SICINIUS: +Mark you this, people? + +Citizens: +To the rock, to the rock with him! + +SICINIUS: +Peace! +We need not put new matter to his charge: +What you have seen him do and heard him speak, +Beating your officers, cursing yourselves, +Opposing laws with strokes and here defying +Those whose great power must try him; even this, +So criminal and in such capital kind, +Deserves the extremest death. + +BRUTUS: +But since he hath +Served well for Rome,-- + +CORIOLANUS: +What do you prate of service? + +BRUTUS: +I talk of that, that know it. + +CORIOLANUS: +You? + +MENENIUS: +Is this the promise that you made your mother? + +COMINIUS: +Know, I pray you,-- + +CORIOLANUS: +I know no further: +Let them pronounce the steep Tarpeian death, +Vagabond exile, raying, pent to linger +But with a grain a day, I would not buy +Their mercy at the price of one fair word; +Nor cheque my courage for what they can give, +To have't with saying 'Good morrow.' + +SICINIUS: +For that he has, +As much as in him lies, from time to time +Envied against the people, seeking means +To pluck away their power, as now at last +Given hostile strokes, and that not in the presence +Of dreaded justice, but on the ministers +That do distribute it; in the name o' the people +And in the power of us the tribunes, we, +Even from this instant, banish him our city, +In peril of precipitation +From off the rock Tarpeian never more +To enter our Rome gates: i' the people's name, +I say it shall be so. + +Citizens: +It shall be so, it shall be so; let him away: +He's banish'd, and it shall be so. + +COMINIUS: +Hear me, my masters, and my common friends,-- + +SICINIUS: +He's sentenced; no more hearing. + +COMINIUS: +Let me speak: +I have been consul, and can show for Rome +Her enemies' marks upon me. I do love +My country's good with a respect more tender, +More holy and profound, than mine own life, +My dear wife's estimate, her womb's increase, +And treasure of my loins; then if I would +Speak that,-- + +SICINIUS: +We know your drift: speak what? + +BRUTUS: +There's no more to be said, but he is banish'd, +As enemy to the people and his country: +It shall be so. + +Citizens: +It shall be so, it shall be so. + +CORIOLANUS: +You common cry of curs! whose breath I hate +As reek o' the rotten fens, whose loves I prize +As the dead carcasses of unburied men +That do corrupt my air, I banish you; +And here remain with your uncertainty! +Let every feeble rumour shake your hearts! +Your enemies, with nodding of their plumes, +Fan you into despair! Have the power still +To banish your defenders; till at length +Your ignorance, which finds not till it feels, +Making not reservation of yourselves, +Still your own foes, deliver you as most +Abated captives to some nation +That won you without blows! Despising, +For you, the city, thus I turn my back: +There is a world elsewhere. + +AEdile: +The people's enemy is gone, is gone! + +Citizens: +Our enemy is banish'd! he is gone! Hoo! hoo! + +SICINIUS: +Go, see him out at gates, and follow him, +As he hath followed you, with all despite; +Give him deserved vexation. Let a guard +Attend us through the city. + +Citizens: +Come, come; let's see him out at gates; come. +The gods preserve our noble tribunes! Come. + +CORIOLANUS: +Come, leave your tears: a brief farewell: the beast +With many heads butts me away. Nay, mother, +Where is your ancient courage? you were used +To say extremity was the trier of spirits; +That common chances common men could bear; +That when the sea was calm all boats alike +Show'd mastership in floating; fortune's blows, +When most struck home, being gentle wounded, craves +A noble cunning: you were used to load me +With precepts that would make invincible +The heart that conn'd them. + +VIRGILIA: +O heavens! O heavens! + +CORIOLANUS: +Nay! prithee, woman,-- + +VOLUMNIA: +Now the red pestilence strike all trades in Rome, +And occupations perish! + +CORIOLANUS: +What, what, what! +I shall be loved when I am lack'd. Nay, mother. +Resume that spirit, when you were wont to say, +If you had been the wife of Hercules, +Six of his labours you'ld have done, and saved +Your husband so much sweat. Cominius, +Droop not; adieu. Farewell, my wife, my mother: +I'll do well yet. Thou old and true Menenius, +Thy tears are salter than a younger man's, +And venomous to thine eyes. My sometime general, +I have seen thee stem, and thou hast oft beheld +Heart-hardening spectacles; tell these sad women +'Tis fond to wail inevitable strokes, +As 'tis to laugh at 'em. My mother, you wot well +My hazards still have been your solace: and +Believe't not lightly--though I go alone, +Like to a lonely dragon, that his fen +Makes fear'd and talk'd of more than seen--your son +Will or exceed the common or be caught +With cautelous baits and practise. + +VOLUMNIA: +My first son. +Whither wilt thou go? Take good Cominius +With thee awhile: determine on some course, +More than a wild exposture to each chance +That starts i' the way before thee. + +CORIOLANUS: +O the gods! + +COMINIUS: +I'll follow thee a month, devise with thee +Where thou shalt rest, that thou mayst hear of us +And we of thee: so if the time thrust forth +A cause for thy repeal, we shall not send +O'er the vast world to seek a single man, +And lose advantage, which doth ever cool +I' the absence of the needer. + +CORIOLANUS: +Fare ye well: +Thou hast years upon thee; and thou art too full +Of the wars' surfeits, to go rove with one +That's yet unbruised: bring me but out at gate. +Come, my sweet wife, my dearest mother, and +My friends of noble touch, when I am forth, +Bid me farewell, and smile. I pray you, come. +While I remain above the ground, you shall +Hear from me still, and never of me aught +But what is like me formerly. + +MENENIUS: +That's worthily +As any ear can hear. Come, let's not weep. +If I could shake off but one seven years +From these old arms and legs, by the good gods, +I'ld with thee every foot. + +CORIOLANUS: +Give me thy hand: Come. + +SICINIUS: +Bid them all home; he's gone, and we'll no further. +The nobility are vex'd, whom we see have sided +In his behalf. + +BRUTUS: +Now we have shown our power, +Let us seem humbler after it is done +Than when it was a-doing. + +SICINIUS: +Bid them home: +Say their great enemy is gone, and they +Stand in their ancient strength. + +BRUTUS: +Dismiss them home. +Here comes his mother. + +SICINIUS: +Let's not meet her. + +BRUTUS: +Why? + +SICINIUS: +They say she's mad. + +BRUTUS: +They have ta'en note of us: keep on your way. + +VOLUMNIA: +O, ye're well met: the hoarded plague o' the gods +Requite your love! + +MENENIUS: +Peace, peace; be not so loud. + +VOLUMNIA: +If that I could for weeping, you should hear,-- +Nay, and you shall hear some. +Will you be gone? + +VIRGILIA: + +SICINIUS: +Are you mankind? + +VOLUMNIA: +Ay, fool; is that a shame? Note but this fool. +Was not a man my father? Hadst thou foxship +To banish him that struck more blows for Rome +Than thou hast spoken words? + +SICINIUS: +O blessed heavens! + +VOLUMNIA: +More noble blows than ever thou wise words; +And for Rome's good. I'll tell thee what; yet go: +Nay, but thou shalt stay too: I would my son +Were in Arabia, and thy tribe before him, +His good sword in his hand. + +SICINIUS: +What then? + +VIRGILIA: +What then! +He'ld make an end of thy posterity. + +VOLUMNIA: +Bastards and all. +Good man, the wounds that he does bear for Rome! + +MENENIUS: +Come, come, peace. + +SICINIUS: +I would he had continued to his country +As he began, and not unknit himself +The noble knot he made. + +BRUTUS: +I would he had. + +VOLUMNIA: +'I would he had'! 'Twas you incensed the rabble: +Cats, that can judge as fitly of his worth +As I can of those mysteries which heaven +Will not have earth to know. + +BRUTUS: +Pray, let us go. + +VOLUMNIA: +Now, pray, sir, get you gone: +You have done a brave deed. Ere you go, hear this:-- +As far as doth the Capitol exceed +The meanest house in Rome, so far my son-- +This lady's husband here, this, do you see-- +Whom you have banish'd, does exceed you all. + +BRUTUS: +Well, well, we'll leave you. + +SICINIUS: +Why stay we to be baited +With one that wants her wits? + +VOLUMNIA: +Take my prayers with you. +I would the gods had nothing else to do +But to confirm my curses! Could I meet 'em +But once a-day, it would unclog my heart +Of what lies heavy to't. + +MENENIUS: +You have told them home; +And, by my troth, you have cause. You'll sup with me? + +VOLUMNIA: +Anger's my meat; I sup upon myself, +And so shall starve with feeding. Come, let's go: +Leave this faint puling and lament as I do, +In anger, Juno-like. Come, come, come. + +MENENIUS: +Fie, fie, fie! + +Roman: +I know you well, sir, and you know +me: your name, I think, is Adrian. + +Volsce: +It is so, sir: truly, I have forgot you. + +Roman: +I am a Roman; and my services are, +as you are, against 'em: know you me yet? + +Volsce: +Nicanor? no. + +Roman: +The same, sir. + +Volsce: +You had more beard when I last saw you; but your +favour is well approved by your tongue. What's the +news in Rome? I have a note from the Volscian state, +to find you out there: you have well saved me a +day's journey. + +Roman: +There hath been in Rome strange insurrections; the +people against the senators, patricians, and nobles. + +Volsce: +Hath been! is it ended, then? Our state thinks not +so: they are in a most warlike preparation, and +hope to come upon them in the heat of their division. + +Roman: +The main blaze of it is past, but a small thing +would make it flame again: for the nobles receive +so to heart the banishment of that worthy +Coriolanus, that they are in a ripe aptness to take +all power from the people and to pluck from them +their tribunes for ever. This lies glowing, I can +tell you, and is almost mature for the violent +breaking out. + +Volsce: +Coriolanus banished! + +Roman: +Banished, sir. + +Volsce: +You will be welcome with this intelligence, Nicanor. + +Roman: +The day serves well for them now. I have heard it +said, the fittest time to corrupt a man's wife is +when she's fallen out with her husband. Your noble +Tullus Aufidius will appear well in these wars, his +great opposer, Coriolanus, being now in no request +of his country. + +Volsce: +He cannot choose. I am most fortunate, thus +accidentally to encounter you: you have ended my +business, and I will merrily accompany you home. + +Roman: +I shall, between this and supper, tell you most +strange things from Rome; all tending to the good of +their adversaries. Have you an army ready, say you? + +Volsce: +A most royal one; the centurions and their charges, +distinctly billeted, already in the entertainment, +and to be on foot at an hour's warning. + +Roman: +I am joyful to hear of their readiness, and am the +man, I think, that shall set them in present action. +So, sir, heartily well met, and most glad of your company. + +Volsce: +You take my part from me, sir; I have the most cause +to be glad of yours. + +Roman: +Well, let us go together. + +CORIOLANUS: +A goodly city is this Antium. City, +'Tis I that made thy widows: many an heir +Of these fair edifices 'fore my wars +Have I heard groan and drop: then know me not, +Lest that thy wives with spits and boys with stones +In puny battle slay me. +Save you, sir. + +Citizen: +And you. + +CORIOLANUS: +Direct me, if it be your will, +Where great Aufidius lies: is he in Antium? + +Citizen: +He is, and feasts the nobles of the state +At his house this night. + +CORIOLANUS: +Which is his house, beseech you? + +Citizen: +This, here before you. + +CORIOLANUS: +Thank you, sir: farewell. +O world, thy slippery turns! Friends now fast sworn, +Whose double bosoms seem to wear one heart, +Whose house, whose bed, whose meal, and exercise, +Are still together, who twin, as 'twere, in love +Unseparable, shall within this hour, +On a dissension of a doit, break out +To bitterest enmity: so, fellest foes, +Whose passions and whose plots have broke their sleep, +To take the one the other, by some chance, +Some trick not worth an egg, shall grow dear friends +And interjoin their issues. So with me: +My birth-place hate I, and my love's upon +This enemy town. I'll enter: if he slay me, +He does fair justice; if he give me way, +I'll do his country service. + +First Servingman: +Wine, wine, wine! What service +is here! I think our fellows are asleep. + +Second Servingman: +Where's Cotus? my master calls +for him. Cotus! + +CORIOLANUS: +A goodly house: the feast smells well; but I +Appear not like a guest. + +First Servingman: +What would you have, friend? whence are you? +Here's no place for you: pray, go to the door. + +CORIOLANUS: +I have deserved no better entertainment, +In being Coriolanus. + +Second Servingman: +Whence are you, sir? Has the porter his eyes in his +head; that he gives entrance to such companions? +Pray, get you out. + +CORIOLANUS: +Away! + +Second Servingman: +Away! get you away. + +CORIOLANUS: +Now thou'rt troublesome. + +Second Servingman: +Are you so brave? I'll have you talked with anon. + +Third Servingman: +What fellow's this? + +First Servingman: +A strange one as ever I looked on: I cannot get him +out of the house: prithee, call my master to him. + +Third Servingman: +What have you to do here, fellow? Pray you, avoid +the house. + +CORIOLANUS: +Let me but stand; I will not hurt your hearth. + +Third Servingman: +What are you? + +CORIOLANUS: +A gentleman. + +Third Servingman: +A marvellous poor one. + +CORIOLANUS: +True, so I am. + +Third Servingman: +Pray you, poor gentleman, take up some other +station; here's no place for you; pray you, avoid: come. + +CORIOLANUS: +Follow your function, go, and batten on cold bits. + +Third Servingman: +What, you will not? Prithee, tell my master what a +strange guest he has here. + +Second Servingman: +And I shall. + +Third Servingman: +Where dwellest thou? + +CORIOLANUS: +Under the canopy. + +Third Servingman: +Under the canopy! + +CORIOLANUS: +Ay. + +Third Servingman: +Where's that? + +CORIOLANUS: +I' the city of kites and crows. + +Third Servingman: +I' the city of kites and crows! What an ass it is! +Then thou dwellest with daws too? + +CORIOLANUS: +No, I serve not thy master. + +Third Servingman: +How, sir! do you meddle with my master? + +CORIOLANUS: +Ay; 'tis an honester service than to meddle with thy +mistress. Thou pratest, and pratest; serve with thy +trencher, hence! + +AUFIDIUS: +Where is this fellow? + +Second Servingman: +Here, sir: I'ld have beaten him like a dog, but for +disturbing the lords within. + +AUFIDIUS: +Whence comest thou? what wouldst thou? thy name? +Why speak'st not? speak, man: what's thy name? + +CORIOLANUS: +If, Tullus, +Not yet thou knowest me, and, seeing me, dost not +Think me for the man I am, necessity +Commands me name myself. + +AUFIDIUS: +What is thy name? + +CORIOLANUS: +A name unmusical to the Volscians' ears, +And harsh in sound to thine. + +AUFIDIUS: +Say, what's thy name? +Thou hast a grim appearance, and thy face +Bears a command in't; though thy tackle's torn. +Thou show'st a noble vessel: what's thy name? + +CORIOLANUS: +Prepare thy brow to frown: know'st +thou me yet? + +AUFIDIUS: +I know thee not: thy name? + +CORIOLANUS: +My name is Caius Marcius, who hath done +To thee particularly and to all the Volsces +Great hurt and mischief; thereto witness may +My surname, Coriolanus: the painful service, +The extreme dangers and the drops of blood +Shed for my thankless country are requited +But with that surname; a good memory, +And witness of the malice and displeasure +Which thou shouldst bear me: only that name remains; +The cruelty and envy of the people, +Permitted by our dastard nobles, who +Have all forsook me, hath devour'd the rest; +And suffer'd me by the voice of slaves to be +Whoop'd out of Rome. Now this extremity +Hath brought me to thy hearth; not out of hope-- +Mistake me not--to save my life, for if +I had fear'd death, of all the men i' the world +I would have 'voided thee, but in mere spite, +To be full quit of those my banishers, +Stand I before thee here. Then if thou hast +A heart of wreak in thee, that wilt revenge +Thine own particular wrongs and stop those maims +Of shame seen through thy country, speed +thee straight, +And make my misery serve thy turn: so use it +That my revengeful services may prove +As benefits to thee, for I will fight +Against my canker'd country with the spleen +Of all the under fiends. But if so be +Thou darest not this and that to prove more fortunes +Thou'rt tired, then, in a word, I also am +Longer to live most weary, and present +My throat to thee and to thy ancient malice; +Which not to cut would show thee but a fool, +Since I have ever follow'd thee with hate, +Drawn tuns of blood out of thy country's breast, +And cannot live but to thy shame, unless +It be to do thee service. + +AUFIDIUS: +O Marcius, Marcius! +Each word thou hast spoke hath weeded from my heart +A root of ancient envy. If Jupiter +Should from yond cloud speak divine things, +And say 'Tis true,' I'ld not believe them more +Than thee, all noble Marcius. Let me twine +Mine arms about that body, where against +My grained ash an hundred times hath broke +And scarr'd the moon with splinters: here I clip +The anvil of my sword, and do contest +As hotly and as nobly with thy love +As ever in ambitious strength I did +Contend against thy valour. Know thou first, +I loved the maid I married; never man +Sigh'd truer breath; but that I see thee here, +Thou noble thing! more dances my rapt heart +Than when I first my wedded mistress saw +Bestride my threshold. Why, thou Mars! I tell thee, +We have a power on foot; and I had purpose +Once more to hew thy target from thy brawn, +Or lose mine arm fort: thou hast beat me out +Twelve several times, and I have nightly since +Dreamt of encounters 'twixt thyself and me; +We have been down together in my sleep, +Unbuckling helms, fisting each other's throat, +And waked half dead with nothing. Worthy Marcius, +Had we no quarrel else to Rome, but that +Thou art thence banish'd, we would muster all +From twelve to seventy, and pouring war +Into the bowels of ungrateful Rome, +Like a bold flood o'er-bear. O, come, go in, +And take our friendly senators by the hands; +Who now are here, taking their leaves of me, +Who am prepared against your territories, +Though not for Rome itself. + +CORIOLANUS: +You bless me, gods! + +AUFIDIUS: +Therefore, most absolute sir, if thou wilt have +The leading of thine own revenges, take +The one half of my commission; and set down-- +As best thou art experienced, since thou know'st +Thy country's strength and weakness,--thine own ways; +Whether to knock against the gates of Rome, +Or rudely visit them in parts remote, +To fright them, ere destroy. But come in: +Let me commend thee first to those that shall +Say yea to thy desires. A thousand welcomes! +And more a friend than e'er an enemy; +Yet, Marcius, that was much. Your hand: most welcome! + +First Servingman: +Here's a strange alteration! + +Second Servingman: +By my hand, I had thought to have strucken him with +a cudgel; and yet my mind gave me his clothes made a +false report of him. + +First Servingman: +What an arm he has! he turned me about with his +finger and his thumb, as one would set up a top. + +Second Servingman: +Nay, I knew by his face that there was something in +him: he had, sir, a kind of face, methought,--I +cannot tell how to term it. + +First Servingman: +He had so; looking as it were--would I were hanged, +but I thought there was more in him than I could think. + +Second Servingman: +So did I, I'll be sworn: he is simply the rarest +man i' the world. + +First Servingman: +I think he is: but a greater soldier than he you wot on. + +Second Servingman: +Who, my master? + +First Servingman: +Nay, it's no matter for that. + +Second Servingman: +Worth six on him. + +First Servingman: +Nay, not so neither: but I take him to be the +greater soldier. + +Second Servingman: +Faith, look you, one cannot tell how to say that: +for the defence of a town, our general is excellent. + +First Servingman: +Ay, and for an assault too. + +Third Servingman: +O slaves, I can tell you news,-- news, you rascals! + +First Servingman: +What, what, what? let's partake. + +Third Servingman: +I would not be a Roman, of all nations; I had as +lieve be a condemned man. + +First Servingman: +Wherefore? wherefore? + +Third Servingman: +Why, here's he that was wont to thwack our general, +Caius Marcius. + +First Servingman: +Why do you say 'thwack our general '? + +Third Servingman: +I do not say 'thwack our general;' but he was always +good enough for him. + +Second Servingman: +Come, we are fellows and friends: he was ever too +hard for him; I have heard him say so himself. + +First Servingman: +He was too hard for him directly, to say the troth +on't: before Corioli he scotched him and notched +him like a carbon ado. + +Second Servingman: +An he had been cannibally given, he might have +broiled and eaten him too. + +First Servingman: +But, more of thy news? + +Third Servingman: +Why, he is so made on here within, as if he were son +and heir to Mars; set at upper end o' the table; no +question asked him by any of the senators, but they +stand bald before him: our general himself makes a +mistress of him: sanctifies himself with's hand and +turns up the white o' the eye to his discourse. But +the bottom of the news is that our general is cut i' +the middle and but one half of what he was +yesterday; for the other has half, by the entreaty +and grant of the whole table. He'll go, he says, +and sowl the porter of Rome gates by the ears: he +will mow all down before him, and leave his passage polled. + +Second Servingman: +And he's as like to do't as any man I can imagine. + +Third Servingman: +Do't! he will do't; for, look you, sir, he has as +many friends as enemies; which friends, sir, as it +were, durst not, look you, sir, show themselves, as +we term it, his friends whilst he's in directitude. + +First Servingman: +Directitude! what's that? + +Third Servingman: +But when they shall see, sir, his crest up again, +and the man in blood, they will out of their +burrows, like conies after rain, and revel all with +him. + +First Servingman: +But when goes this forward? + +Third Servingman: +To-morrow; to-day; presently; you shall have the +drum struck up this afternoon: 'tis, as it were, a +parcel of their feast, and to be executed ere they +wipe their lips. + +Second Servingman: +Why, then we shall have a stirring world again. +This peace is nothing, but to rust iron, increase +tailors, and breed ballad-makers. + +First Servingman: +Let me have war, say I; it exceeds peace as far as +day does night; it's spritely, waking, audible, and +full of vent. Peace is a very apoplexy, lethargy; +mulled, deaf, sleepy, insensible; a getter of more +bastard children than war's a destroyer of men. + +Second Servingman: +'Tis so: and as war, in some sort, may be said to +be a ravisher, so it cannot be denied but peace is a +great maker of cuckolds. + +First Servingman: +Ay, and it makes men hate one another. + +Third Servingman: +Reason; because they then less need one another. +The wars for my money. I hope to see Romans as cheap +as Volscians. They are rising, they are rising. + +All: +In, in, in, in! + +SICINIUS: +We hear not of him, neither need we fear him; +His remedies are tame i' the present peace +And quietness of the people, which before +Were in wild hurry. Here do we make his friends +Blush that the world goes well, who rather had, +Though they themselves did suffer by't, behold +Dissentious numbers pestering streets than see +Our tradesmen with in their shops and going +About their functions friendly. + +BRUTUS: +We stood to't in good time. +Is this Menenius? + +SICINIUS: +'Tis he,'tis he: O, he is grown most kind of late. + +Both Tribunes: +Hail sir! + +MENENIUS: +Hail to you both! + +SICINIUS: +Your Coriolanus +Is not much miss'd, but with his friends: +The commonwealth doth stand, and so would do, +Were he more angry at it. + +MENENIUS: +All's well; and might have been much better, if +He could have temporized. + +SICINIUS: +Where is he, hear you? + +MENENIUS: +Nay, I hear nothing: his mother and his wife +Hear nothing from him. + +Citizens: +The gods preserve you both! + +SICINIUS: +God-den, our neighbours. + +BRUTUS: +God-den to you all, god-den to you all. + +First Citizen: +Ourselves, our wives, and children, on our knees, +Are bound to pray for you both. + +SICINIUS: +Live, and thrive! + +BRUTUS: +Farewell, kind neighbours: we wish'd Coriolanus +Had loved you as we did. + +Citizens: +Now the gods keep you! + +Both Tribunes: +Farewell, farewell. + +SICINIUS: +This is a happier and more comely time +Than when these fellows ran about the streets, +Crying confusion. + +BRUTUS: +Caius Marcius was +A worthy officer i' the war; but insolent, +O'ercome with pride, ambitious past all thinking, +Self-loving,-- + +SICINIUS: +And affecting one sole throne, +Without assistance. + +MENENIUS: +I think not so. + +SICINIUS: +We should by this, to all our lamentation, +If he had gone forth consul, found it so. + +BRUTUS: +The gods have well prevented it, and Rome +Sits safe and still without him. + +AEdile: +Worthy tribunes, +There is a slave, whom we have put in prison, +Reports, the Volsces with two several powers +Are enter'd in the Roman territories, +And with the deepest malice of the war +Destroy what lies before 'em. + +MENENIUS: +'Tis Aufidius, +Who, hearing of our Marcius' banishment, +Thrusts forth his horns again into the world; +Which were inshell'd when Marcius stood for Rome, +And durst not once peep out. + +SICINIUS: +Come, what talk you +Of Marcius? + +BRUTUS: +Go see this rumourer whipp'd. It cannot be +The Volsces dare break with us. + +MENENIUS: +Cannot be! +We have record that very well it can, +And three examples of the like have been +Within my age. But reason with the fellow, +Before you punish him, where he heard this, +Lest you shall chance to whip your information +And beat the messenger who bids beware +Of what is to be dreaded. + +SICINIUS: +Tell not me: +I know this cannot be. + +BRUTUS: +Not possible. + +Messenger: +The nobles in great earnestness are going +All to the senate-house: some news is come +That turns their countenances. + +SICINIUS: +'Tis this slave;-- +Go whip him, 'fore the people's eyes:--his raising; +Nothing but his report. + +Messenger: +Yes, worthy sir, +The slave's report is seconded; and more, +More fearful, is deliver'd. + +SICINIUS: +What more fearful? + +Messenger: +It is spoke freely out of many mouths-- +How probable I do not know--that Marcius, +Join'd with Aufidius, leads a power 'gainst Rome, +And vows revenge as spacious as between +The young'st and oldest thing. + +SICINIUS: +This is most likely! + +BRUTUS: +Raised only, that the weaker sort may wish +Good Marcius home again. + +SICINIUS: +The very trick on't. + +MENENIUS: +This is unlikely: +He and Aufidius can no more atone +Than violentest contrariety. + +Second Messenger: +You are sent for to the senate: +A fearful army, led by Caius Marcius +Associated with Aufidius, rages +Upon our territories; and have already +O'erborne their way, consumed with fire, and took +What lay before them. + +COMINIUS: +O, you have made good work! + +MENENIUS: +What news? what news? + +COMINIUS: +You have holp to ravish your own daughters and +To melt the city leads upon your pates, +To see your wives dishonour'd to your noses,-- + +MENENIUS: +What's the news? what's the news? + +COMINIUS: +Your temples burned in their cement, and +Your franchises, whereon you stood, confined +Into an auger's bore. + +MENENIUS: +Pray now, your news? +You have made fair work, I fear me.--Pray, your news?-- +If Marcius should be join'd with Volscians,-- + +COMINIUS: +If! +He is their god: he leads them like a thing +Made by some other deity than nature, +That shapes man better; and they follow him, +Against us brats, with no less confidence +Than boys pursuing summer butterflies, +Or butchers killing flies. + +MENENIUS: +You have made good work, +You and your apron-men; you that stood so up much +on the voice of occupation and +The breath of garlic-eaters! + +COMINIUS: +He will shake +Your Rome about your ears. + +MENENIUS: +As Hercules +Did shake down mellow fruit. +You have made fair work! + +BRUTUS: +But is this true, sir? + +COMINIUS: +Ay; and you'll look pale +Before you find it other. All the regions +Do smilingly revolt; and who resist +Are mock'd for valiant ignorance, +And perish constant fools. Who is't can blame him? +Your enemies and his find something in him. + +MENENIUS: +We are all undone, unless +The noble man have mercy. + +COMINIUS: +Who shall ask it? +The tribunes cannot do't for shame; the people +Deserve such pity of him as the wolf +Does of the shepherds: for his best friends, if they +Should say 'Be good to Rome,' they charged him even +As those should do that had deserved his hate, +And therein show'd like enemies. + +MENENIUS: +'Tis true: +If he were putting to my house the brand +That should consume it, I have not the face +To say 'Beseech you, cease.' You have made fair hands, +You and your crafts! you have crafted fair! + +COMINIUS: +You have brought +A trembling upon Rome, such as was never +So incapable of help. + +Both Tribunes: +Say not we brought it. + +MENENIUS: +How! Was it we? we loved him but, like beasts +And cowardly nobles, gave way unto your clusters, +Who did hoot him out o' the city. + +COMINIUS: +But I fear +They'll roar him in again. Tullus Aufidius, +The second name of men, obeys his points +As if he were his officer: desperation +Is all the policy, strength and defence, +That Rome can make against them. + +MENENIUS: +Here come the clusters. +And is Aufidius with him? You are they +That made the air unwholesome, when you cast +Your stinking greasy caps in hooting at +Coriolanus' exile. Now he's coming; +And not a hair upon a soldier's head +Which will not prove a whip: as many coxcombs +As you threw caps up will he tumble down, +And pay you for your voices. 'Tis no matter; +if he could burn us all into one coal, +We have deserved it. + +Citizens: +Faith, we hear fearful news. + +First Citizen: +For mine own part, +When I said, banish him, I said 'twas pity. + +Second Citizen: +And so did I. + +Third Citizen: +And so did I; and, to say the truth, so did very +many of us: that we did, we did for the best; and +though we willingly consented to his banishment, yet +it was against our will. + +COMINIUS: +Ye re goodly things, you voices! + +MENENIUS: +You have made +Good work, you and your cry! Shall's to the Capitol? + +COMINIUS: +O, ay, what else? + +SICINIUS: +Go, masters, get you home; be not dismay'd: +These are a side that would be glad to have +This true which they so seem to fear. Go home, +And show no sign of fear. + +First Citizen: +The gods be good to us! Come, masters, let's home. +I ever said we were i' the wrong when we banished +him. + +Second Citizen: +So did we all. But, come, let's home. + +BRUTUS: +I do not like this news. + +SICINIUS: +Nor I. + +BRUTUS: +Let's to the Capitol. Would half my wealth +Would buy this for a lie! + +SICINIUS: +Pray, let us go. + +AUFIDIUS: +Do they still fly to the Roman? + +Lieutenant: +I do not know what witchcraft's in him, but +Your soldiers use him as the grace 'fore meat, +Their talk at table, and their thanks at end; +And you are darken'd in this action, sir, +Even by your own. + +AUFIDIUS: +I cannot help it now, +Unless, by using means, I lame the foot +Of our design. He bears himself more proudlier, +Even to my person, than I thought he would +When first I did embrace him: yet his nature +In that's no changeling; and I must excuse +What cannot be amended. + +Lieutenant: +Yet I wish, sir,-- +I mean for your particular,--you had not +Join'd in commission with him; but either +Had borne the action of yourself, or else +To him had left it solely. + +AUFIDIUS: +I understand thee well; and be thou sure, +when he shall come to his account, he knows not +What I can urge against him. Although it seems, +And so he thinks, and is no less apparent +To the vulgar eye, that he bears all things fairly. +And shows good husbandry for the Volscian state, +Fights dragon-like, and does achieve as soon +As draw his sword; yet he hath left undone +That which shall break his neck or hazard mine, +Whene'er we come to our account. + +Lieutenant: +Sir, I beseech you, think you he'll carry Rome? + +AUFIDIUS: +All places yield to him ere he sits down; +And the nobility of Rome are his: +The senators and patricians love him too: +The tribunes are no soldiers; and their people +Will be as rash in the repeal, as hasty +To expel him thence. I think he'll be to Rome +As is the osprey to the fish, who takes it +By sovereignty of nature. First he was +A noble servant to them; but he could not +Carry his honours even: whether 'twas pride, +Which out of daily fortune ever taints +The happy man; whether defect of judgment, +To fail in the disposing of those chances +Which he was lord of; or whether nature, +Not to be other than one thing, not moving +From the casque to the cushion, but commanding peace +Even with the same austerity and garb +As he controll'd the war; but one of these-- +As he hath spices of them all, not all, +For I dare so far free him--made him fear'd, +So hated, and so banish'd: but he has a merit, +To choke it in the utterance. So our virtues +Lie in the interpretation of the time: +And power, unto itself most commendable, +Hath not a tomb so evident as a chair +To extol what it hath done. +One fire drives out one fire; one nail, one nail; +Rights by rights falter, strengths by strengths do fail. +Come, let's away. When, Caius, Rome is thine, +Thou art poor'st of all; then shortly art thou mine. + +MENENIUS: +No, I'll not go: you hear what he hath said +Which was sometime his general; who loved him +In a most dear particular. He call'd me father: +But what o' that? Go, you that banish'd him; +A mile before his tent fall down, and knee +The way into his mercy: nay, if he coy'd +To hear Cominius speak, I'll keep at home. + +COMINIUS: +He would not seem to know me. + +MENENIUS: +Do you hear? + +COMINIUS: +Yet one time he did call me by my name: +I urged our old acquaintance, and the drops +That we have bled together. Coriolanus +He would not answer to: forbad all names; +He was a kind of nothing, titleless, +Till he had forged himself a name o' the fire +Of burning Rome. + +MENENIUS: +Why, so: you have made good work! +A pair of tribunes that have rack'd for Rome, +To make coals cheap,--a noble memory! + +COMINIUS: +I minded him how royal 'twas to pardon +When it was less expected: he replied, +It was a bare petition of a state +To one whom they had punish'd. + +MENENIUS: +Very well: +Could he say less? + +COMINIUS: +I offer'd to awaken his regard +For's private friends: his answer to me was, +He could not stay to pick them in a pile +Of noisome musty chaff: he said 'twas folly, +For one poor grain or two, to leave unburnt, +And still to nose the offence. + +MENENIUS: +For one poor grain or two! +I am one of those; his mother, wife, his child, +And this brave fellow too, we are the grains: +You are the musty chaff; and you are smelt +Above the moon: we must be burnt for you. + +SICINIUS: +Nay, pray, be patient: if you refuse your aid +In this so never-needed help, yet do not +Upbraid's with our distress. But, sure, if you +Would be your country's pleader, your good tongue, +More than the instant army we can make, +Might stop our countryman. + +MENENIUS: +No, I'll not meddle. + +SICINIUS: +Pray you, go to him. + +MENENIUS: +What should I do? + +BRUTUS: +Only make trial what your love can do +For Rome, towards Marcius. + +MENENIUS: +Well, and say that Marcius +Return me, as Cominius is return'd, +Unheard; what then? +But as a discontented friend, grief-shot +With his unkindness? say't be so? + +SICINIUS: +Yet your good will +must have that thanks from Rome, after the measure +As you intended well. + +MENENIUS: +I'll undertake 't: +I think he'll hear me. Yet, to bite his lip +And hum at good Cominius, much unhearts me. +He was not taken well; he had not dined: +The veins unfill'd, our blood is cold, and then +We pout upon the morning, are unapt +To give or to forgive; but when we have stuff'd +These and these conveyances of our blood +With wine and feeding, we have suppler souls +Than in our priest-like fasts: therefore I'll watch him +Till he be dieted to my request, +And then I'll set upon him. + +BRUTUS: +You know the very road into his kindness, +And cannot lose your way. + +MENENIUS: +Good faith, I'll prove him, +Speed how it will. I shall ere long have knowledge +Of my success. + +COMINIUS: +He'll never hear him. + +SICINIUS: +Not? + +COMINIUS: +I tell you, he does sit in gold, his eye +Red as 'twould burn Rome; and his injury +The gaoler to his pity. I kneel'd before him; +'Twas very faintly he said 'Rise;' dismiss'd me +Thus, with his speechless hand: what he would do, +He sent in writing after me; what he would not, +Bound with an oath to yield to his conditions: +So that all hope is vain. +Unless his noble mother, and his wife; +Who, as I hear, mean to solicit him +For mercy to his country. Therefore, let's hence, +And with our fair entreaties haste them on. + +First Senator: +Stay: whence are you? + +Second Senator: +Stand, and go back. + +MENENIUS: +You guard like men; 'tis well: but, by your leave, +I am an officer of state, and come +To speak with Coriolanus. + +First Senator: +From whence? + +MENENIUS: +From Rome. + +First Senator: +You may not pass, you must return: our general +Will no more hear from thence. + +Second Senator: +You'll see your Rome embraced with fire before +You'll speak with Coriolanus. + +MENENIUS: +Good my friends, +If you have heard your general talk of Rome, +And of his friends there, it is lots to blanks, +My name hath touch'd your ears it is Menenius. + +First Senator: +Be it so; go back: the virtue of your name +Is not here passable. + +MENENIUS: +I tell thee, fellow, +The general is my lover: I have been +The book of his good acts, whence men have read +His name unparallel'd, haply amplified; +For I have ever verified my friends, +Of whom he's chief, with all the size that verity +Would without lapsing suffer: nay, sometimes, +Like to a bowl upon a subtle ground, +I have tumbled past the throw; and in his praise +Have almost stamp'd the leasing: therefore, fellow, +I must have leave to pass. + +First Senator: +Faith, sir, if you had told as many lies in his +behalf as you have uttered words in your own, you +should not pass here; no, though it were as virtuous +to lie as to live chastely. Therefore, go back. + +MENENIUS: +Prithee, fellow, remember my name is Menenius, +always factionary on the party of your general. + +Second Senator: +Howsoever you have been his liar, as you say you +have, I am one that, telling true under him, must +say, you cannot pass. Therefore, go back. + +MENENIUS: +Has he dined, canst thou tell? for I would not +speak with him till after dinner. + +First Senator: +You are a Roman, are you? + +MENENIUS: +I am, as thy general is. + +First Senator: +Then you should hate Rome, as he does. Can you, +when you have pushed out your gates the very +defender of them, and, in a violent popular +ignorance, given your enemy your shield, think to +front his revenges with the easy groans of old +women, the virginal palms of your daughters, or with +the palsied intercession of such a decayed dotant as +you seem to be? Can you think to blow out the +intended fire your city is ready to flame in, with +such weak breath as this? No, you are deceived; +therefore, back to Rome, and prepare for your +execution: you are condemned, our general has sworn +you out of reprieve and pardon. + +MENENIUS: +Sirrah, if thy captain knew I were here, he would +use me with estimation. + +Second Senator: +Come, my captain knows you not. + +MENENIUS: +I mean, thy general. + +First Senator: +My general cares not for you. Back, I say, go; lest +I let forth your half-pint of blood; back,--that's +the utmost of your having: back. + +MENENIUS: +Nay, but, fellow, fellow,-- + +CORIOLANUS: +What's the matter? + +MENENIUS: +Now, you companion, I'll say an errand for you: +You shall know now that I am in estimation; you shall +perceive that a Jack guardant cannot office me from +my son Coriolanus: guess, but by my entertainment +with him, if thou standest not i' the state of +hanging, or of some death more long in +spectatorship, and crueller in suffering; behold now +presently, and swoon for what's to come upon thee. +The glorious gods sit in hourly synod about thy +particular prosperity, and love thee no worse than +thy old father Menenius does! O my son, my son! +thou art preparing fire for us; look thee, here's +water to quench it. I was hardly moved to come to +thee; but being assured none but myself could move +thee, I have been blown out of your gates with +sighs; and conjure thee to pardon Rome, and thy +petitionary countrymen. The good gods assuage thy +wrath, and turn the dregs of it upon this varlet +here,--this, who, like a block, hath denied my +access to thee. + +CORIOLANUS: +Away! + +MENENIUS: +How! away! + +CORIOLANUS: +Wife, mother, child, I know not. My affairs +Are servanted to others: though I owe +My revenge properly, my remission lies +In Volscian breasts. That we have been familiar, +Ingrate forgetfulness shall poison, rather +Than pity note how much. Therefore, be gone. +Mine ears against your suits are stronger than +Your gates against my force. Yet, for I loved thee, +Take this along; I writ it for thy sake +And would have rent it. Another word, Menenius, +I will not hear thee speak. This man, Aufidius, +Was my beloved in Rome: yet thou behold'st! + +AUFIDIUS: +You keep a constant temper. + +First Senator: +Now, sir, is your name Menenius? + +Second Senator: +'Tis a spell, you see, of much power: you know the +way home again. + +First Senator: +Do you hear how we are shent for keeping your +greatness back? + +Second Senator: +What cause, do you think, I have to swoon? + +MENENIUS: +I neither care for the world nor your general: for +such things as you, I can scarce think there's any, +ye're so slight. He that hath a will to die by +himself fears it not from another: let your general +do his worst. For you, be that you are, long; and +your misery increase with your age! I say to you, +as I was said to, Away! + +First Senator: +A noble fellow, I warrant him. + +Second Senator: +The worthy fellow is our general: he's the rock, the +oak not to be wind-shaken. + +CORIOLANUS: +We will before the walls of Rome tomorrow +Set down our host. My partner in this action, +You must report to the Volscian lords, how plainly +I have borne this business. + +AUFIDIUS: +Only their ends +You have respected; stopp'd your ears against +The general suit of Rome; never admitted +A private whisper, no, not with such friends +That thought them sure of you. + +CORIOLANUS: +This last old man, +Whom with a crack'd heart I have sent to Rome, +Loved me above the measure of a father; +Nay, godded me, indeed. Their latest refuge +Was to send him; for whose old love I have, +Though I show'd sourly to him, once more offer'd +The first conditions, which they did refuse +And cannot now accept; to grace him only +That thought he could do more, a very little +I have yielded to: fresh embassies and suits, +Nor from the state nor private friends, hereafter +Will I lend ear to. Ha! what shout is this? +Shall I be tempted to infringe my vow +In the same time 'tis made? I will not. +My wife comes foremost; then the honour'd mould +Wherein this trunk was framed, and in her hand +The grandchild to her blood. But, out, affection! +All bond and privilege of nature, break! +Let it be virtuous to be obstinate. +What is that curt'sy worth? or those doves' eyes, +Which can make gods forsworn? I melt, and am not +Of stronger earth than others. My mother bows; +As if Olympus to a molehill should +In supplication nod: and my young boy +Hath an aspect of intercession, which +Great nature cries 'Deny not.' let the Volsces +Plough Rome and harrow Italy: I'll never +Be such a gosling to obey instinct, but stand, +As if a man were author of himself +And knew no other kin. + +VIRGILIA: +My lord and husband! + +CORIOLANUS: +These eyes are not the same I wore in Rome. + +VIRGILIA: +The sorrow that delivers us thus changed +Makes you think so. + +CORIOLANUS: +Like a dull actor now, +I have forgot my part, and I am out, +Even to a full disgrace. Best of my flesh, +Forgive my tyranny; but do not say +For that 'Forgive our Romans.' O, a kiss +Long as my exile, sweet as my revenge! +Now, by the jealous queen of heaven, that kiss +I carried from thee, dear; and my true lip +Hath virgin'd it e'er since. You gods! I prate, +And the most noble mother of the world +Leave unsaluted: sink, my knee, i' the earth; +Of thy deep duty more impression show +Than that of common sons. + +VOLUMNIA: +O, stand up blest! +Whilst, with no softer cushion than the flint, +I kneel before thee; and unproperly +Show duty, as mistaken all this while +Between the child and parent. + +CORIOLANUS: +What is this? +Your knees to me? to your corrected son? +Then let the pebbles on the hungry beach +Fillip the stars; then let the mutinous winds +Strike the proud cedars 'gainst the fiery sun; +Murdering impossibility, to make +What cannot be, slight work. + +VOLUMNIA: +Thou art my warrior; +I holp to frame thee. Do you know this lady? + +CORIOLANUS: +The noble sister of Publicola, +The moon of Rome, chaste as the icicle +That's curdied by the frost from purest snow +And hangs on Dian's temple: dear Valeria! + +VOLUMNIA: +This is a poor epitome of yours, +Which by the interpretation of full time +May show like all yourself. + +CORIOLANUS: +The god of soldiers, +With the consent of supreme Jove, inform +Thy thoughts with nobleness; that thou mayst prove +To shame unvulnerable, and stick i' the wars +Like a great sea-mark, standing every flaw, +And saving those that eye thee! + +VOLUMNIA: +Your knee, sirrah. + +CORIOLANUS: +That's my brave boy! + +VOLUMNIA: +Even he, your wife, this lady, and myself, +Are suitors to you. + +CORIOLANUS: +I beseech you, peace: +Or, if you'ld ask, remember this before: +The thing I have forsworn to grant may never +Be held by you denials. Do not bid me +Dismiss my soldiers, or capitulate +Again with Rome's mechanics: tell me not +Wherein I seem unnatural: desire not +To ally my rages and revenges with +Your colder reasons. + +VOLUMNIA: +O, no more, no more! +You have said you will not grant us any thing; +For we have nothing else to ask, but that +Which you deny already: yet we will ask; +That, if you fail in our request, the blame +May hang upon your hardness: therefore hear us. + +CORIOLANUS: +Aufidius, and you Volsces, mark; for we'll +Hear nought from Rome in private. Your request? + +VOLUMNIA: +Should we be silent and not speak, our raiment +And state of bodies would bewray what life +We have led since thy exile. Think with thyself +How more unfortunate than all living women +Are we come hither: since that thy sight, +which should +Make our eyes flow with joy, hearts dance +with comforts, +Constrains them weep and shake with fear and sorrow; +Making the mother, wife and child to see +The son, the husband and the father tearing +His country's bowels out. And to poor we +Thine enmity's most capital: thou barr'st us +Our prayers to the gods, which is a comfort +That all but we enjoy; for how can we, +Alas, how can we for our country pray. +Whereto we are bound, together with thy victory, +Whereto we are bound? alack, or we must lose +The country, our dear nurse, or else thy person, +Our comfort in the country. We must find +An evident calamity, though we had +Our wish, which side should win: for either thou +Must, as a foreign recreant, be led +With manacles thorough our streets, or else +triumphantly tread on thy country's ruin, +And bear the palm for having bravely shed +Thy wife and children's blood. For myself, son, +I purpose not to wait on fortune till +These wars determine: if I cannot persuade thee +Rather to show a noble grace to both parts +Than seek the end of one, thou shalt no sooner +March to assault thy country than to tread-- +Trust to't, thou shalt not--on thy mother's womb, +That brought thee to this world. + +VIRGILIA: +Ay, and mine, +That brought you forth this boy, to keep your name +Living to time. + +Young MARCIUS: +A' shall not tread on me; +I'll run away till I am bigger, but then I'll fight. + +CORIOLANUS: +Not of a woman's tenderness to be, +Requires nor child nor woman's face to see. +I have sat too long. + +VOLUMNIA: +Nay, go not from us thus. +If it were so that our request did tend +To save the Romans, thereby to destroy +The Volsces whom you serve, you might condemn us, +As poisonous of your honour: no; our suit +Is that you reconcile them: while the Volsces +May say 'This mercy we have show'd;' the Romans, +'This we received;' and each in either side +Give the all-hail to thee and cry 'Be blest +For making up this peace!' Thou know'st, great son, +The end of war's uncertain, but this certain, +That, if thou conquer Rome, the benefit +Which thou shalt thereby reap is such a name, +Whose repetition will be dogg'd with curses; +Whose chronicle thus writ: 'The man was noble, +But with his last attempt he wiped it out; +Destroy'd his country, and his name remains +To the ensuing age abhorr'd.' Speak to me, son: +Thou hast affected the fine strains of honour, +To imitate the graces of the gods; +To tear with thunder the wide cheeks o' the air, +And yet to charge thy sulphur with a bolt +That should but rive an oak. Why dost not speak? +Think'st thou it honourable for a noble man +Still to remember wrongs? Daughter, speak you: +He cares not for your weeping. Speak thou, boy: +Perhaps thy childishness will move him more +Than can our reasons. There's no man in the world +More bound to 's mother; yet here he lets me prate +Like one i' the stocks. Thou hast never in thy life +Show'd thy dear mother any courtesy, +When she, poor hen, fond of no second brood, +Has cluck'd thee to the wars and safely home, +Loaden with honour. Say my request's unjust, +And spurn me back: but if it be not so, +Thou art not honest; and the gods will plague thee, +That thou restrain'st from me the duty which +To a mother's part belongs. He turns away: +Down, ladies; let us shame him with our knees. +To his surname Coriolanus 'longs more pride +Than pity to our prayers. Down: an end; +This is the last: so we will home to Rome, +And die among our neighbours. Nay, behold 's: +This boy, that cannot tell what he would have +But kneels and holds up bands for fellowship, +Does reason our petition with more strength +Than thou hast to deny 't. Come, let us go: +This fellow had a Volscian to his mother; +His wife is in Corioli and his child +Like him by chance. Yet give us our dispatch: +I am hush'd until our city be a-fire, +And then I'll speak a little. + +CORIOLANUS: +O mother, mother! +What have you done? Behold, the heavens do ope, +The gods look down, and this unnatural scene +They laugh at. O my mother, mother! O! +You have won a happy victory to Rome; +But, for your son,--believe it, O, believe it, +Most dangerously you have with him prevail'd, +If not most mortal to him. But, let it come. +Aufidius, though I cannot make true wars, +I'll frame convenient peace. Now, good Aufidius, +Were you in my stead, would you have heard +A mother less? or granted less, Aufidius? + +AUFIDIUS: +I was moved withal. + +CORIOLANUS: +I dare be sworn you were: +And, sir, it is no little thing to make +Mine eyes to sweat compassion. But, good sir, +What peace you'll make, advise me: for my part, +I'll not to Rome, I'll back with you; and pray you, +Stand to me in this cause. O mother! wife! + +AUFIDIUS: + +CORIOLANUS: +Ay, by and by; +But we will drink together; and you shall bear +A better witness back than words, which we, +On like conditions, will have counter-seal'd. +Come, enter with us. Ladies, you deserve +To have a temple built you: all the swords +In Italy, and her confederate arms, +Could not have made this peace. + +MENENIUS: +See you yond coign o' the Capitol, yond +corner-stone? + +SICINIUS: +Why, what of that? + +MENENIUS: +If it be possible for you to displace it with your +little finger, there is some hope the ladies of +Rome, especially his mother, may prevail with him. +But I say there is no hope in't: our throats are +sentenced and stay upon execution. + +SICINIUS: +Is't possible that so short a time can alter the +condition of a man! + +MENENIUS: +There is differency between a grub and a butterfly; +yet your butterfly was a grub. This Marcius is grown +from man to dragon: he has wings; he's more than a +creeping thing. + +SICINIUS: +He loved his mother dearly. + +MENENIUS: +So did he me: and he no more remembers his mother +now than an eight-year-old horse. The tartness +of his face sours ripe grapes: when he walks, he +moves like an engine, and the ground shrinks before +his treading: he is able to pierce a corslet with +his eye; talks like a knell, and his hum is a +battery. He sits in his state, as a thing made for +Alexander. What he bids be done is finished with +his bidding. He wants nothing of a god but eternity +and a heaven to throne in. + +SICINIUS: +Yes, mercy, if you report him truly. + +MENENIUS: +I paint him in the character. Mark what mercy his +mother shall bring from him: there is no more mercy +in him than there is milk in a male tiger; that +shall our poor city find: and all this is long of +you. + +SICINIUS: +The gods be good unto us! + +MENENIUS: +No, in such a case the gods will not be good unto +us. When we banished him, we respected not them; +and, he returning to break our necks, they respect not us. + +Messenger: +Sir, if you'ld save your life, fly to your house: +The plebeians have got your fellow-tribune +And hale him up and down, all swearing, if +The Roman ladies bring not comfort home, +They'll give him death by inches. + +SICINIUS: +What's the news? + +Second Messenger: +Good news, good news; the ladies have prevail'd, +The Volscians are dislodged, and Marcius gone: +A merrier day did never yet greet Rome, +No, not the expulsion of the Tarquins. + +SICINIUS: +Friend, +Art thou certain this is true? is it most certain? + +Second Messenger: +As certain as I know the sun is fire: +Where have you lurk'd, that you make doubt of it? +Ne'er through an arch so hurried the blown tide, +As the recomforted through the gates. Why, hark you! +The trumpets, sackbuts, psalteries and fifes, +Tabours and cymbals and the shouting Romans, +Make the sun dance. Hark you! + +MENENIUS: +This is good news: +I will go meet the ladies. This Volumnia +Is worth of consuls, senators, patricians, +A city full; of tribunes, such as you, +A sea and land full. You have pray'd well to-day: +This morning for ten thousand of your throats +I'd not have given a doit. Hark, how they joy! + +SICINIUS: +First, the gods bless you for your tidings; next, +Accept my thankfulness. + +Second Messenger: +Sir, we have all +Great cause to give great thanks. + +SICINIUS: +They are near the city? + +Second Messenger: +Almost at point to enter. + +SICINIUS: +We will meet them, +And help the joy. + +First Senator: +Behold our patroness, the life of Rome! +Call all your tribes together, praise the gods, +And make triumphant fires; strew flowers before them: +Unshout the noise that banish'd Marcius, +Repeal him with the welcome of his mother; +Cry 'Welcome, ladies, welcome!' + +All: +Welcome, ladies, Welcome! + +AUFIDIUS: +Go tell the lords o' the city I am here: +Deliver them this paper: having read it, +Bid them repair to the market place; where I, +Even in theirs and in the commons' ears, +Will vouch the truth of it. Him I accuse +The city ports by this hath enter'd and +Intends to appear before the people, hoping +To purge herself with words: dispatch. +Most welcome! + +First Conspirator: +How is it with our general? + +AUFIDIUS: +Even so +As with a man by his own alms empoison'd, +And with his charity slain. + +Second Conspirator: +Most noble sir, +If you do hold the same intent wherein +You wish'd us parties, we'll deliver you +Of your great danger. + +AUFIDIUS: +Sir, I cannot tell: +We must proceed as we do find the people. + +Third Conspirator: +The people will remain uncertain whilst +'Twixt you there's difference; but the fall of either +Makes the survivor heir of all. + +AUFIDIUS: +I know it; +And my pretext to strike at him admits +A good construction. I raised him, and I pawn'd +Mine honour for his truth: who being so heighten'd, +He water'd his new plants with dews of flattery, +Seducing so my friends; and, to this end, +He bow'd his nature, never known before +But to be rough, unswayable and free. + +Third Conspirator: +Sir, his stoutness +When he did stand for consul, which he lost +By lack of stooping,-- + +AUFIDIUS: +That I would have spoke of: +Being banish'd for't, he came unto my hearth; +Presented to my knife his throat: I took him; +Made him joint-servant with me; gave him way +In all his own desires; nay, let him choose +Out of my files, his projects to accomplish, +My best and freshest men; served his designments +In mine own person; holp to reap the fame +Which he did end all his; and took some pride +To do myself this wrong: till, at the last, +I seem'd his follower, not partner, and +He waged me with his countenance, as if +I had been mercenary. + +First Conspirator: +So he did, my lord: +The army marvell'd at it, and, in the last, +When he had carried Rome and that we look'd +For no less spoil than glory,-- + +AUFIDIUS: +There was it: +For which my sinews shall be stretch'd upon him. +At a few drops of women's rheum, which are +As cheap as lies, he sold the blood and labour +Of our great action: therefore shall he die, +And I'll renew me in his fall. But, hark! + +First Conspirator: +Your native town you enter'd like a post, +And had no welcomes home: but he returns, +Splitting the air with noise. + +Second Conspirator: +And patient fools, +Whose children he hath slain, their base throats tear +With giving him glory. + +Third Conspirator: +Therefore, at your vantage, +Ere he express himself, or move the people +With what he would say, let him feel your sword, +Which we will second. When he lies along, +After your way his tale pronounced shall bury +His reasons with his body. + +AUFIDIUS: +Say no more: +Here come the lords. + +All The Lords: +You are most welcome home. + +AUFIDIUS: +I have not deserved it. +But, worthy lords, have you with heed perused +What I have written to you? + +Lords: +We have. + +First Lord: +And grieve to hear't. +What faults he made before the last, I think +Might have found easy fines: but there to end +Where he was to begin and give away +The benefit of our levies, answering us +With our own charge, making a treaty where +There was a yielding,--this admits no excuse. + +AUFIDIUS: +He approaches: you shall hear him. + +CORIOLANUS: +Hail, lords! I am return'd your soldier, +No more infected with my country's love +Than when I parted hence, but still subsisting +Under your great command. You are to know +That prosperously I have attempted and +With bloody passage led your wars even to +The gates of Rome. Our spoils we have brought home +Do more than counterpoise a full third part +The charges of the action. We have made peace +With no less honour to the Antiates +Than shame to the Romans: and we here deliver, +Subscribed by the consuls and patricians, +Together with the seal o' the senate, what +We have compounded on. + +AUFIDIUS: +Read it not, noble lords; +But tell the traitor, in the high'st degree +He hath abused your powers. + +CORIOLANUS: +Traitor! how now! + +AUFIDIUS: +Ay, traitor, Marcius! + +CORIOLANUS: +Marcius! + +AUFIDIUS: +Ay, Marcius, Caius Marcius: dost thou think +I'll grace thee with that robbery, thy stol'n name +Coriolanus in Corioli? +You lords and heads o' the state, perfidiously +He has betray'd your business, and given up, +For certain drops of salt, your city Rome, +I say 'your city,' to his wife and mother; +Breaking his oath and resolution like +A twist of rotten silk, never admitting +Counsel o' the war, but at his nurse's tears +He whined and roar'd away your victory, +That pages blush'd at him and men of heart +Look'd wondering each at other. + +CORIOLANUS: +Hear'st thou, Mars? + +AUFIDIUS: +Name not the god, thou boy of tears! + +CORIOLANUS: +Ha! + +AUFIDIUS: +No more. + +CORIOLANUS: +Measureless liar, thou hast made my heart +Too great for what contains it. Boy! O slave! +Pardon me, lords, 'tis the first time that ever +I was forced to scold. Your judgments, my grave lords, +Must give this cur the lie: and his own notion-- +Who wears my stripes impress'd upon him; that +Must bear my beating to his grave--shall join +To thrust the lie unto him. + +First Lord: +Peace, both, and hear me speak. + +CORIOLANUS: +Cut me to pieces, Volsces; men and lads, +Stain all your edges on me. Boy! false hound! +If you have writ your annals true, 'tis there, +That, like an eagle in a dove-cote, I +Flutter'd your Volscians in Corioli: +Alone I did it. Boy! + +AUFIDIUS: +Why, noble lords, +Will you be put in mind of his blind fortune, +Which was your shame, by this unholy braggart, +'Fore your own eyes and ears? + +All Conspirators: +Let him die for't. + +All The People: +'Tear him to pieces.' 'Do it presently.' 'He kill'd +my son.' 'My daughter.' 'He killed my cousin +Marcus.' 'He killed my father.' + +Second Lord: +Peace, ho! no outrage: peace! +The man is noble and his fame folds-in +This orb o' the earth. His last offences to us +Shall have judicious hearing. Stand, Aufidius, +And trouble not the peace. + +CORIOLANUS: +O that I had him, +With six Aufidiuses, or more, his tribe, +To use my lawful sword! + +AUFIDIUS: +Insolent villain! + +All Conspirators: +Kill, kill, kill, kill, kill him! + +Lords: +Hold, hold, hold, hold! + +AUFIDIUS: +My noble masters, hear me speak. + +First Lord: +O Tullus,-- + +Second Lord: +Thou hast done a deed whereat valour will weep. + +Third Lord: +Tread not upon him. Masters all, be quiet; +Put up your swords. + +AUFIDIUS: +My lords, when you shall know--as in this rage, +Provoked by him, you cannot--the great danger +Which this man's life did owe you, you'll rejoice +That he is thus cut off. Please it your honours +To call me to your senate, I'll deliver +Myself your loyal servant, or endure +Your heaviest censure. + +First Lord: +Bear from hence his body; +And mourn you for him: let him be regarded +As the most noble corse that ever herald +Did follow to his urn. + +Second Lord: +His own impatience +Takes from Aufidius a great part of blame. +Let's make the best of it. + +AUFIDIUS: +My rage is gone; +And I am struck with sorrow. Take him up. +Help, three o' the chiefest soldiers; I'll be one. +Beat thou the drum, that it speak mournfully: +Trail your steel pikes. Though in this city he +Hath widow'd and unchilded many a one, +Which to this hour bewail the injury, +Yet he shall have a noble memory. Assist. + +GLOUCESTER: +Now is the winter of our discontent +Made glorious summer by this sun of York; +And all the clouds that lour'd upon our house +In the deep bosom of the ocean buried. +Now are our brows bound with victorious wreaths; +Our bruised arms hung up for monuments; +Our stern alarums changed to merry meetings, +Our dreadful marches to delightful measures. +Grim-visaged war hath smooth'd his wrinkled front; +And now, instead of mounting barded steeds +To fright the souls of fearful adversaries, +He capers nimbly in a lady's chamber +To the lascivious pleasing of a lute. +But I, that am not shaped for sportive tricks, +Nor made to court an amorous looking-glass; +I, that am rudely stamp'd, and want love's majesty +To strut before a wanton ambling nymph; +I, that am curtail'd of this fair proportion, +Cheated of feature by dissembling nature, +Deformed, unfinish'd, sent before my time +Into this breathing world, scarce half made up, +And that so lamely and unfashionable +That dogs bark at me as I halt by them; +Why, I, in this weak piping time of peace, +Have no delight to pass away the time, +Unless to spy my shadow in the sun +And descant on mine own deformity: +And therefore, since I cannot prove a lover, +To entertain these fair well-spoken days, +I am determined to prove a villain +And hate the idle pleasures of these days. +Plots have I laid, inductions dangerous, +By drunken prophecies, libels and dreams, +To set my brother Clarence and the king +In deadly hate the one against the other: +And if King Edward be as true and just +As I am subtle, false and treacherous, +This day should Clarence closely be mew'd up, +About a prophecy, which says that 'G' +Of Edward's heirs the murderer shall be. +Dive, thoughts, down to my soul: here +Clarence comes. +Brother, good day; what means this armed guard +That waits upon your grace? + +CLARENCE: +His majesty +Tendering my person's safety, hath appointed +This conduct to convey me to the Tower. + +GLOUCESTER: +Upon what cause? + +CLARENCE: +Because my name is George. + +GLOUCESTER: +Alack, my lord, that fault is none of yours; +He should, for that, commit your godfathers: +O, belike his majesty hath some intent +That you shall be new-christen'd in the Tower. +But what's the matter, Clarence? may I know? + +CLARENCE: +Yea, Richard, when I know; for I protest +As yet I do not: but, as I can learn, +He hearkens after prophecies and dreams; +And from the cross-row plucks the letter G. +And says a wizard told him that by G +His issue disinherited should be; +And, for my name of George begins with G, +It follows in his thought that I am he. +These, as I learn, and such like toys as these +Have moved his highness to commit me now. + +GLOUCESTER: +Why, this it is, when men are ruled by women: +'Tis not the king that sends you to the Tower: +My Lady Grey his wife, Clarence, 'tis she +That tempers him to this extremity. +Was it not she and that good man of worship, +Anthony Woodville, her brother there, +That made him send Lord Hastings to the Tower, +From whence this present day he is deliver'd? +We are not safe, Clarence; we are not safe. + +CLARENCE: +By heaven, I think there's no man is secure +But the queen's kindred and night-walking heralds +That trudge betwixt the king and Mistress Shore. +Heard ye not what an humble suppliant +Lord hastings was to her for his delivery? + +GLOUCESTER: +Humbly complaining to her deity +Got my lord chamberlain his liberty. +I'll tell you what; I think it is our way, +If we will keep in favour with the king, +To be her men and wear her livery: +The jealous o'erworn widow and herself, +Since that our brother dubb'd them gentlewomen. +Are mighty gossips in this monarchy. + +BRAKENBURY: +I beseech your graces both to pardon me; +His majesty hath straitly given in charge +That no man shall have private conference, +Of what degree soever, with his brother. + +GLOUCESTER: +Even so; an't please your worship, Brakenbury, +You may partake of any thing we say: +We speak no treason, man: we say the king +Is wise and virtuous, and his noble queen +Well struck in years, fair, and not jealous; +We say that Shore's wife hath a pretty foot, +A cherry lip, a bonny eye, a passing pleasing tongue; +And that the queen's kindred are made gentle-folks: +How say you sir? Can you deny all this? + +BRAKENBURY: +With this, my lord, myself have nought to do. + +GLOUCESTER: +Naught to do with mistress Shore! I tell thee, fellow, +He that doth naught with her, excepting one, +Were best he do it secretly, alone. + +BRAKENBURY: +What one, my lord? + +GLOUCESTER: +Her husband, knave: wouldst thou betray me? + +BRAKENBURY: +I beseech your grace to pardon me, and withal +Forbear your conference with the noble duke. + +CLARENCE: +We know thy charge, Brakenbury, and will obey. + +GLOUCESTER: +We are the queen's abjects, and must obey. +Brother, farewell: I will unto the king; +And whatsoever you will employ me in, +Were it to call King Edward's widow sister, +I will perform it to enfranchise you. +Meantime, this deep disgrace in brotherhood +Touches me deeper than you can imagine. + +CLARENCE: +I know it pleaseth neither of us well. + +GLOUCESTER: +Well, your imprisonment shall not be long; +Meantime, have patience. + +CLARENCE: +I must perforce. Farewell. + +GLOUCESTER: +Go, tread the path that thou shalt ne'er return. +Simple, plain Clarence! I do love thee so, +That I will shortly send thy soul to heaven, +If heaven will take the present at our hands. +But who comes here? the new-deliver'd Hastings? + +HASTINGS: +Good time of day unto my gracious lord! + +GLOUCESTER: +As much unto my good lord chamberlain! +Well are you welcome to the open air. +How hath your lordship brook'd imprisonment? + +HASTINGS: +With patience, noble lord, as prisoners must: +But I shall live, my lord, to give them thanks +That were the cause of my imprisonment. + +GLOUCESTER: +No doubt, no doubt; and so shall Clarence too; +For they that were your enemies are his, +And have prevail'd as much on him as you. + +HASTINGS: +More pity that the eagle should be mew'd, +While kites and buzzards prey at liberty. + +GLOUCESTER: +What news abroad? + +HASTINGS: +No news so bad abroad as this at home; +The King is sickly, weak and melancholy, +And his physicians fear him mightily. + +GLOUCESTER: +Now, by Saint Paul, this news is bad indeed. +O, he hath kept an evil diet long, +And overmuch consumed his royal person: +'Tis very grievous to be thought upon. +What, is he in his bed? + +HASTINGS: +He is. + +GLOUCESTER: +Go you before, and I will follow you. +He cannot live, I hope; and must not die +Till George be pack'd with post-horse up to heaven. +I'll in, to urge his hatred more to Clarence, +With lies well steel'd with weighty arguments; +And, if I fall not in my deep intent, +Clarence hath not another day to live: +Which done, God take King Edward to his mercy, +And leave the world for me to bustle in! +For then I'll marry Warwick's youngest daughter. +What though I kill'd her husband and her father? +The readiest way to make the wench amends +Is to become her husband and her father: +The which will I; not all so much for love +As for another secret close intent, +By marrying her which I must reach unto. +But yet I run before my horse to market: +Clarence still breathes; Edward still lives and reigns: +When they are gone, then must I count my gains. + +LADY ANNE: +Set down, set down your honourable load, +If honour may be shrouded in a hearse, +Whilst I awhile obsequiously lament +The untimely fall of virtuous Lancaster. +Poor key-cold figure of a holy king! +Pale ashes of the house of Lancaster! +Thou bloodless remnant of that royal blood! +Be it lawful that I invocate thy ghost, +To hear the lamentations of Poor Anne, +Wife to thy Edward, to thy slaughter'd son, +Stabb'd by the selfsame hand that made these wounds! +Lo, in these windows that let forth thy life, +I pour the helpless balm of my poor eyes. +Cursed be the hand that made these fatal holes! +Cursed be the heart that had the heart to do it! +Cursed the blood that let this blood from hence! +More direful hap betide that hated wretch, +That makes us wretched by the death of thee, +Than I can wish to adders, spiders, toads, +Or any creeping venom'd thing that lives! +If ever he have child, abortive be it, +Prodigious, and untimely brought to light, +Whose ugly and unnatural aspect +May fright the hopeful mother at the view; +And that be heir to his unhappiness! +If ever he have wife, let her he made +A miserable by the death of him +As I am made by my poor lord and thee! +Come, now towards Chertsey with your holy load, +Taken from Paul's to be interred there; +And still, as you are weary of the weight, +Rest you, whiles I lament King Henry's corse. + +GLOUCESTER: +Stay, you that bear the corse, and set it down. + +LADY ANNE: +What black magician conjures up this fiend, +To stop devoted charitable deeds? + +GLOUCESTER: +Villains, set down the corse; or, by Saint Paul, +I'll make a corse of him that disobeys. + +Gentleman: +My lord, stand back, and let the coffin pass. + +GLOUCESTER: +Unmanner'd dog! stand thou, when I command: +Advance thy halbert higher than my breast, +Or, by Saint Paul, I'll strike thee to my foot, +And spurn upon thee, beggar, for thy boldness. + +LADY ANNE: +What, do you tremble? are you all afraid? +Alas, I blame you not; for you are mortal, +And mortal eyes cannot endure the devil. +Avaunt, thou dreadful minister of hell! +Thou hadst but power over his mortal body, +His soul thou canst not have; therefore be gone. + +GLOUCESTER: +Sweet saint, for charity, be not so curst. + +LADY ANNE: +Foul devil, for God's sake, hence, and trouble us not; +For thou hast made the happy earth thy hell, +Fill'd it with cursing cries and deep exclaims. +If thou delight to view thy heinous deeds, +Behold this pattern of thy butcheries. +O, gentlemen, see, see! dead Henry's wounds +Open their congeal'd mouths and bleed afresh! +Blush, Blush, thou lump of foul deformity; +For 'tis thy presence that exhales this blood +From cold and empty veins, where no blood dwells; +Thy deed, inhuman and unnatural, +Provokes this deluge most unnatural. +O God, which this blood madest, revenge his death! +O earth, which this blood drink'st revenge his death! +Either heaven with lightning strike the +murderer dead, +Or earth, gape open wide and eat him quick, +As thou dost swallow up this good king's blood +Which his hell-govern'd arm hath butchered! + +GLOUCESTER: +Lady, you know no rules of charity, +Which renders good for bad, blessings for curses. + +LADY ANNE: +Villain, thou know'st no law of God nor man: +No beast so fierce but knows some touch of pity. + +GLOUCESTER: +But I know none, and therefore am no beast. + +LADY ANNE: +O wonderful, when devils tell the truth! + +GLOUCESTER: +More wonderful, when angels are so angry. +Vouchsafe, divine perfection of a woman, +Of these supposed-evils, to give me leave, +By circumstance, but to acquit myself. + +LADY ANNE: +Vouchsafe, defused infection of a man, +For these known evils, but to give me leave, +By circumstance, to curse thy cursed self. + +GLOUCESTER: +Fairer than tongue can name thee, let me have +Some patient leisure to excuse myself. + +LADY ANNE: +Fouler than heart can think thee, thou canst make +No excuse current, but to hang thyself. + +GLOUCESTER: +By such despair, I should accuse myself. + +LADY ANNE: +And, by despairing, shouldst thou stand excused; +For doing worthy vengeance on thyself, +Which didst unworthy slaughter upon others. + +GLOUCESTER: +Say that I slew them not? + +LADY ANNE: +Why, then they are not dead: +But dead they are, and devilish slave, by thee. + +GLOUCESTER: +I did not kill your husband. + +LADY ANNE: +Why, then he is alive. + +GLOUCESTER: +Nay, he is dead; and slain by Edward's hand. + +LADY ANNE: +In thy foul throat thou liest: Queen Margaret saw +Thy murderous falchion smoking in his blood; +The which thou once didst bend against her breast, +But that thy brothers beat aside the point. + +GLOUCESTER: +I was provoked by her slanderous tongue, +which laid their guilt upon my guiltless shoulders. + +LADY ANNE: +Thou wast provoked by thy bloody mind. +Which never dreamt on aught but butcheries: +Didst thou not kill this king? + +GLOUCESTER: +I grant ye. + +LADY ANNE: +Dost grant me, hedgehog? then, God grant me too +Thou mayst be damned for that wicked deed! +O, he was gentle, mild, and virtuous! + +GLOUCESTER: +The fitter for the King of heaven, that hath him. + +LADY ANNE: +He is in heaven, where thou shalt never come. + +GLOUCESTER: +Let him thank me, that holp to send him thither; +For he was fitter for that place than earth. + +LADY ANNE: +And thou unfit for any place but hell. + +GLOUCESTER: +Yes, one place else, if you will hear me name it. + +LADY ANNE: +Some dungeon. + +GLOUCESTER: +Your bed-chamber. + +LADY ANNE: +I'll rest betide the chamber where thou liest! + +GLOUCESTER: +So will it, madam till I lie with you. + +LADY ANNE: +I hope so. + +GLOUCESTER: +I know so. But, gentle Lady Anne, +To leave this keen encounter of our wits, +And fall somewhat into a slower method, +Is not the causer of the timeless deaths +Of these Plantagenets, Henry and Edward, +As blameful as the executioner? + +LADY ANNE: +Thou art the cause, and most accursed effect. + +GLOUCESTER: +Your beauty was the cause of that effect; +Your beauty: which did haunt me in my sleep +To undertake the death of all the world, +So I might live one hour in your sweet bosom. + +LADY ANNE: +If I thought that, I tell thee, homicide, +These nails should rend that beauty from my cheeks. + +GLOUCESTER: +These eyes could never endure sweet beauty's wreck; +You should not blemish it, if I stood by: +As all the world is cheered by the sun, +So I by that; it is my day, my life. + +LADY ANNE: +Black night o'ershade thy day, and death thy life! + +GLOUCESTER: +Curse not thyself, fair creature thou art both. + +LADY ANNE: +I would I were, to be revenged on thee. + +GLOUCESTER: +It is a quarrel most unnatural, +To be revenged on him that loveth you. + +LADY ANNE: +It is a quarrel just and reasonable, +To be revenged on him that slew my husband. + +GLOUCESTER: +He that bereft thee, lady, of thy husband, +Did it to help thee to a better husband. + +LADY ANNE: +His better doth not breathe upon the earth. + +GLOUCESTER: +He lives that loves thee better than he could. + +LADY ANNE: +Name him. + +GLOUCESTER: +Plantagenet. + +LADY ANNE: +Why, that was he. + +GLOUCESTER: +The selfsame name, but one of better nature. + +LADY ANNE: +Where is he? + +GLOUCESTER: +Here. +Why dost thou spit at me? + +LADY ANNE: +Would it were mortal poison, for thy sake! + +GLOUCESTER: +Never came poison from so sweet a place. + +LADY ANNE: +Never hung poison on a fouler toad. +Out of my sight! thou dost infect my eyes. + +GLOUCESTER: +Thine eyes, sweet lady, have infected mine. + +LADY ANNE: +Would they were basilisks, to strike thee dead! + +GLOUCESTER: +I would they were, that I might die at once; +For now they kill me with a living death. +Those eyes of thine from mine have drawn salt tears, +Shamed their aspect with store of childish drops: +These eyes that never shed remorseful tear, +No, when my father York and Edward wept, +To hear the piteous moan that Rutland made +When black-faced Clifford shook his sword at him; +Nor when thy warlike father, like a child, +Told the sad story of my father's death, +And twenty times made pause to sob and weep, +That all the standers-by had wet their cheeks +Like trees bedash'd with rain: in that sad time +My manly eyes did scorn an humble tear; +And what these sorrows could not thence exhale, +Thy beauty hath, and made them blind with weeping. +I never sued to friend nor enemy; +My tongue could never learn sweet smoothing word; +But now thy beauty is proposed my fee, +My proud heart sues, and prompts my tongue to speak. +Teach not thy lips such scorn, for they were made +For kissing, lady, not for such contempt. +If thy revengeful heart cannot forgive, +Lo, here I lend thee this sharp-pointed sword; +Which if thou please to hide in this true bosom. +And let the soul forth that adoreth thee, +I lay it naked to the deadly stroke, +And humbly beg the death upon my knee. +Nay, do not pause; for I did kill King Henry, +But 'twas thy beauty that provoked me. +Nay, now dispatch; 'twas I that stabb'd young Edward, +But 'twas thy heavenly face that set me on. +Take up the sword again, or take up me. + +LADY ANNE: +Arise, dissembler: though I wish thy death, +I will not be the executioner. + +GLOUCESTER: +Then bid me kill myself, and I will do it. + +LADY ANNE: +I have already. + +GLOUCESTER: +Tush, that was in thy rage: +Speak it again, and, even with the word, +That hand, which, for thy love, did kill thy love, +Shall, for thy love, kill a far truer love; +To both their deaths thou shalt be accessary. + +LADY ANNE: +I would I knew thy heart. + +GLOUCESTER: +'Tis figured in my tongue. + +LADY ANNE: +I fear me both are false. + +GLOUCESTER: +Then never man was true. + +LADY ANNE: +Well, well, put up your sword. + +GLOUCESTER: +Say, then, my peace is made. + +LADY ANNE: +That shall you know hereafter. + +GLOUCESTER: +But shall I live in hope? + +LADY ANNE: +All men, I hope, live so. + +GLOUCESTER: +Vouchsafe to wear this ring. + +LADY ANNE: +To take is not to give. + +GLOUCESTER: +Look, how this ring encompasseth finger. +Even so thy breast encloseth my poor heart; +Wear both of them, for both of them are thine. +And if thy poor devoted suppliant may +But beg one favour at thy gracious hand, +Thou dost confirm his happiness for ever. + +LADY ANNE: +What is it? + +GLOUCESTER: +That it would please thee leave these sad designs +To him that hath more cause to be a mourner, +And presently repair to Crosby Place; +Where, after I have solemnly interr'd +At Chertsey monastery this noble king, +And wet his grave with my repentant tears, +I will with all expedient duty see you: +For divers unknown reasons. I beseech you, +Grant me this boon. + +LADY ANNE: +With all my heart; and much it joys me too, +To see you are become so penitent. +Tressel and Berkeley, go along with me. + +GLOUCESTER: +Bid me farewell. + +LADY ANNE: +'Tis more than you deserve; +But since you teach me how to flatter you, +Imagine I have said farewell already. + +GLOUCESTER: +Sirs, take up the corse. + +GENTLEMEN: +Towards Chertsey, noble lord? + +GLOUCESTER: +No, to White-Friars; there attend my coining. +Was ever woman in this humour woo'd? +Was ever woman in this humour won? +I'll have her; but I will not keep her long. +What! I, that kill'd her husband and his father, +To take her in her heart's extremest hate, +With curses in her mouth, tears in her eyes, +The bleeding witness of her hatred by; +Having God, her conscience, and these bars +against me, +And I nothing to back my suit at all, +But the plain devil and dissembling looks, +And yet to win her, all the world to nothing! +Ha! +Hath she forgot already that brave prince, +Edward, her lord, whom I, some three months since, +Stabb'd in my angry mood at Tewksbury? +A sweeter and a lovelier gentleman, +Framed in the prodigality of nature, +Young, valiant, wise, and, no doubt, right royal, +The spacious world cannot again afford +And will she yet debase her eyes on me, +That cropp'd the golden prime of this sweet prince, +And made her widow to a woful bed? +On me, whose all not equals Edward's moiety? +On me, that halt and am unshapen thus? +My dukedom to a beggarly denier, +I do mistake my person all this while: +Upon my life, she finds, although I cannot, +Myself to be a marvellous proper man. +I'll be at charges for a looking-glass, +And entertain some score or two of tailors, +To study fashions to adorn my body: +Since I am crept in favour with myself, +Will maintain it with some little cost. +But first I'll turn yon fellow in his grave; +And then return lamenting to my love. +Shine out, fair sun, till I have bought a glass, +That I may see my shadow as I pass. + +RIVERS: +Have patience, madam: there's no doubt his majesty +Will soon recover his accustom'd health. + +GREY: +In that you brook it in, it makes him worse: +Therefore, for God's sake, entertain good comfort, +And cheer his grace with quick and merry words. + +QUEEN ELIZABETH: +If he were dead, what would betide of me? + +RIVERS: +No other harm but loss of such a lord. + +QUEEN ELIZABETH: +The loss of such a lord includes all harm. + +GREY: +The heavens have bless'd you with a goodly son, +To be your comforter when he is gone. + +QUEEN ELIZABETH: +Oh, he is young and his minority +Is put unto the trust of Richard Gloucester, +A man that loves not me, nor none of you. + +RIVERS: +Is it concluded that he shall be protector? + +QUEEN ELIZABETH: +It is determined, not concluded yet: +But so it must be, if the king miscarry. + +GREY: +Here come the lords of Buckingham and Derby. + +BUCKINGHAM: +Good time of day unto your royal grace! + +DERBY: +God make your majesty joyful as you have been! + +QUEEN ELIZABETH: +The Countess Richmond, good my Lord of Derby. +To your good prayers will scarcely say amen. +Yet, Derby, notwithstanding she's your wife, +And loves not me, be you, good lord, assured +I hate not you for her proud arrogance. + +DERBY: +I do beseech you, either not believe +The envious slanders of her false accusers; +Or, if she be accused in true report, +Bear with her weakness, which, I think proceeds +From wayward sickness, and no grounded malice. + +RIVERS: +Saw you the king to-day, my Lord of Derby? + +DERBY: +But now the Duke of Buckingham and I +Are come from visiting his majesty. + +QUEEN ELIZABETH: +What likelihood of his amendment, lords? + +BUCKINGHAM: +Madam, good hope; his grace speaks cheerfully. + +QUEEN ELIZABETH: +God grant him health! Did you confer with him? + +BUCKINGHAM: +Madam, we did: he desires to make atonement +Betwixt the Duke of Gloucester and your brothers, +And betwixt them and my lord chamberlain; +And sent to warn them to his royal presence. + +QUEEN ELIZABETH: +Would all were well! but that will never be +I fear our happiness is at the highest. + +GLOUCESTER: +They do me wrong, and I will not endure it: +Who are they that complain unto the king, +That I, forsooth, am stern, and love them not? +By holy Paul, they love his grace but lightly +That fill his ears with such dissentious rumours. +Because I cannot flatter and speak fair, +Smile in men's faces, smooth, deceive and cog, +Duck with French nods and apish courtesy, +I must be held a rancorous enemy. +Cannot a plain man live and think no harm, +But thus his simple truth must be abused +By silken, sly, insinuating Jacks? + +RIVERS: +To whom in all this presence speaks your grace? + +GLOUCESTER: +To thee, that hast nor honesty nor grace. +When have I injured thee? when done thee wrong? +Or thee? or thee? or any of your faction? +A plague upon you all! His royal person,-- +Whom God preserve better than you would wish!-- +Cannot be quiet scarce a breathing-while, +But you must trouble him with lewd complaints. + +QUEEN ELIZABETH: +Brother of Gloucester, you mistake the matter. +The king, of his own royal disposition, +And not provoked by any suitor else; +Aiming, belike, at your interior hatred, +Which in your outward actions shows itself +Against my kindred, brothers, and myself, +Makes him to send; that thereby he may gather +The ground of your ill-will, and so remove it. + +GLOUCESTER: +I cannot tell: the world is grown so bad, +That wrens make prey where eagles dare not perch: +Since every Jack became a gentleman +There's many a gentle person made a Jack. + +QUEEN ELIZABETH: +Come, come, we know your meaning, brother +Gloucester; +You envy my advancement and my friends': +God grant we never may have need of you! + +GLOUCESTER: +Meantime, God grants that we have need of you: +Your brother is imprison'd by your means, +Myself disgraced, and the nobility +Held in contempt; whilst many fair promotions +Are daily given to ennoble those +That scarce, some two days since, were worth a noble. + +QUEEN ELIZABETH: +By Him that raised me to this careful height +From that contented hap which I enjoy'd, +I never did incense his majesty +Against the Duke of Clarence, but have been +An earnest advocate to plead for him. +My lord, you do me shameful injury, +Falsely to draw me in these vile suspects. + +GLOUCESTER: +You may deny that you were not the cause +Of my Lord Hastings' late imprisonment. + +RIVERS: +She may, my lord, for-- + +GLOUCESTER: +She may, Lord Rivers! why, who knows not so? +She may do more, sir, than denying that: +She may help you to many fair preferments, +And then deny her aiding hand therein, +And lay those honours on your high deserts. +What may she not? She may, yea, marry, may she-- + +RIVERS: +What, marry, may she? + +GLOUCESTER: +What, marry, may she! marry with a king, +A bachelor, a handsome stripling too: +I wis your grandam had a worser match. + +QUEEN ELIZABETH: +My Lord of Gloucester, I have too long borne +Your blunt upbraidings and your bitter scoffs: +By heaven, I will acquaint his majesty +With those gross taunts I often have endured. +I had rather be a country servant-maid +Than a great queen, with this condition, +To be thus taunted, scorn'd, and baited at: +Small joy have I in being England's queen. + +QUEEN MARGARET: +And lessen'd be that small, God, I beseech thee! +Thy honour, state and seat is due to me. + +GLOUCESTER: +What! threat you me with telling of the king? +Tell him, and spare not: look, what I have said +I will avouch in presence of the king: +I dare adventure to be sent to the Tower. +'Tis time to speak; my pains are quite forgot. + +QUEEN MARGARET: +Out, devil! I remember them too well: +Thou slewest my husband Henry in the Tower, +And Edward, my poor son, at Tewksbury. + +GLOUCESTER: +Ere you were queen, yea, or your husband king, +I was a pack-horse in his great affairs; +A weeder-out of his proud adversaries, +A liberal rewarder of his friends: +To royalize his blood I spilt mine own. + +QUEEN MARGARET: +Yea, and much better blood than his or thine. + +GLOUCESTER: +In all which time you and your husband Grey +Were factious for the house of Lancaster; +And, Rivers, so were you. Was not your husband +In Margaret's battle at Saint Alban's slain? +Let me put in your minds, if you forget, +What you have been ere now, and what you are; +Withal, what I have been, and what I am. + +QUEEN MARGARET: +A murderous villain, and so still thou art. + +GLOUCESTER: +Poor Clarence did forsake his father, Warwick; +Yea, and forswore himself,--which Jesu pardon!-- + +QUEEN MARGARET: +Which God revenge! + +GLOUCESTER: +To fight on Edward's party for the crown; +And for his meed, poor lord, he is mew'd up. +I would to God my heart were flint, like Edward's; +Or Edward's soft and pitiful, like mine +I am too childish-foolish for this world. + +QUEEN MARGARET: +Hie thee to hell for shame, and leave the world, +Thou cacodemon! there thy kingdom is. + +RIVERS: +My Lord of Gloucester, in those busy days +Which here you urge to prove us enemies, +We follow'd then our lord, our lawful king: +So should we you, if you should be our king. + +GLOUCESTER: +If I should be! I had rather be a pedlar: +Far be it from my heart, the thought of it! + +QUEEN ELIZABETH: +As little joy, my lord, as you suppose +You should enjoy, were you this country's king, +As little joy may you suppose in me. +That I enjoy, being the queen thereof. + +QUEEN MARGARET: +A little joy enjoys the queen thereof; +For I am she, and altogether joyless. +I can no longer hold me patient. +Hear me, you wrangling pirates, that fall out +In sharing that which you have pill'd from me! +Which of you trembles not that looks on me? +If not, that, I being queen, you bow like subjects, +Yet that, by you deposed, you quake like rebels? +O gentle villain, do not turn away! + +GLOUCESTER: +Foul wrinkled witch, what makest thou in my sight? + +QUEEN MARGARET: +But repetition of what thou hast marr'd; +That will I make before I let thee go. + +GLOUCESTER: +Wert thou not banished on pain of death? + +QUEEN MARGARET: +I was; but I do find more pain in banishment +Than death can yield me here by my abode. +A husband and a son thou owest to me; +And thou a kingdom; all of you allegiance: +The sorrow that I have, by right is yours, +And all the pleasures you usurp are mine. + +GLOUCESTER: +The curse my noble father laid on thee, +When thou didst crown his warlike brows with paper +And with thy scorns drew'st rivers from his eyes, +And then, to dry them, gavest the duke a clout +Steep'd in the faultless blood of pretty Rutland-- +His curses, then from bitterness of soul +Denounced against thee, are all fall'n upon thee; +And God, not we, hath plagued thy bloody deed. + +QUEEN ELIZABETH: +So just is God, to right the innocent. + +HASTINGS: +O, 'twas the foulest deed to slay that babe, +And the most merciless that e'er was heard of! + +RIVERS: +Tyrants themselves wept when it was reported. + +DORSET: +No man but prophesied revenge for it. + +BUCKINGHAM: +Northumberland, then present, wept to see it. + +QUEEN MARGARET: +What were you snarling all before I came, +Ready to catch each other by the throat, +And turn you all your hatred now on me? +Did York's dread curse prevail so much with heaven? +That Henry's death, my lovely Edward's death, +Their kingdom's loss, my woful banishment, +Could all but answer for that peevish brat? +Can curses pierce the clouds and enter heaven? +Why, then, give way, dull clouds, to my quick curses! +If not by war, by surfeit die your king, +As ours by murder, to make him a king! +Edward thy son, which now is Prince of Wales, +For Edward my son, which was Prince of Wales, +Die in his youth by like untimely violence! +Thyself a queen, for me that was a queen, +Outlive thy glory, like my wretched self! +Long mayst thou live to wail thy children's loss; +And see another, as I see thee now, +Deck'd in thy rights, as thou art stall'd in mine! +Long die thy happy days before thy death; +And, after many lengthen'd hours of grief, +Die neither mother, wife, nor England's queen! +Rivers and Dorset, you were standers by, +And so wast thou, Lord Hastings, when my son +Was stabb'd with bloody daggers: God, I pray him, +That none of you may live your natural age, +But by some unlook'd accident cut off! + +GLOUCESTER: +Have done thy charm, thou hateful wither'd hag! + +QUEEN MARGARET: +And leave out thee? stay, dog, for thou shalt hear me. +If heaven have any grievous plague in store +Exceeding those that I can wish upon thee, +O, let them keep it till thy sins be ripe, +And then hurl down their indignation +On thee, the troubler of the poor world's peace! +The worm of conscience still begnaw thy soul! +Thy friends suspect for traitors while thou livest, +And take deep traitors for thy dearest friends! +No sleep close up that deadly eye of thine, +Unless it be whilst some tormenting dream +Affrights thee with a hell of ugly devils! +Thou elvish-mark'd, abortive, rooting hog! +Thou that wast seal'd in thy nativity +The slave of nature and the son of hell! +Thou slander of thy mother's heavy womb! +Thou loathed issue of thy father's loins! +Thou rag of honour! thou detested-- + +GLOUCESTER: +Margaret. + +QUEEN MARGARET: +Richard! + +GLOUCESTER: +Ha! + +QUEEN MARGARET: +I call thee not. + +GLOUCESTER: +I cry thee mercy then, for I had thought +That thou hadst call'd me all these bitter names. + +QUEEN MARGARET: +Why, so I did; but look'd for no reply. +O, let me make the period to my curse! + +GLOUCESTER: +'Tis done by me, and ends in 'Margaret.' + +QUEEN ELIZABETH: +Thus have you breathed your curse against yourself. + +QUEEN MARGARET: +Poor painted queen, vain flourish of my fortune! +Why strew'st thou sugar on that bottled spider, +Whose deadly web ensnareth thee about? +Fool, fool! thou whet'st a knife to kill thyself. +The time will come when thou shalt wish for me +To help thee curse that poisonous bunchback'd toad. + +HASTINGS: +False-boding woman, end thy frantic curse, +Lest to thy harm thou move our patience. + +QUEEN MARGARET: +Foul shame upon you! you have all moved mine. + +RIVERS: +Were you well served, you would be taught your duty. + +QUEEN MARGARET: +To serve me well, you all should do me duty, +Teach me to be your queen, and you my subjects: +O, serve me well, and teach yourselves that duty! + +DORSET: +Dispute not with her; she is lunatic. + +QUEEN MARGARET: +Peace, master marquess, you are malapert: +Your fire-new stamp of honour is scarce current. +O, that your young nobility could judge +What 'twere to lose it, and be miserable! +They that stand high have many blasts to shake them; +And if they fall, they dash themselves to pieces. + +GLOUCESTER: +Good counsel, marry: learn it, learn it, marquess. + +DORSET: +It toucheth you, my lord, as much as me. + +GLOUCESTER: +Yea, and much more: but I was born so high, +Our aery buildeth in the cedar's top, +And dallies with the wind and scorns the sun. + +QUEEN MARGARET: +And turns the sun to shade; alas! alas! +Witness my son, now in the shade of death; +Whose bright out-shining beams thy cloudy wrath +Hath in eternal darkness folded up. +Your aery buildeth in our aery's nest. +O God, that seest it, do not suffer it! +As it was won with blood, lost be it so! + +BUCKINGHAM: +Have done! for shame, if not for charity. + +QUEEN MARGARET: +Urge neither charity nor shame to me: +Uncharitably with me have you dealt, +And shamefully by you my hopes are butcher'd. +My charity is outrage, life my shame +And in that shame still live my sorrow's rage. + +BUCKINGHAM: +Have done, have done. + +QUEEN MARGARET: +O princely Buckingham I'll kiss thy hand, +In sign of league and amity with thee: +Now fair befal thee and thy noble house! +Thy garments are not spotted with our blood, +Nor thou within the compass of my curse. + +BUCKINGHAM: +Nor no one here; for curses never pass +The lips of those that breathe them in the air. + +QUEEN MARGARET: +I'll not believe but they ascend the sky, +And there awake God's gentle-sleeping peace. +O Buckingham, take heed of yonder dog! +Look, when he fawns, he bites; and when he bites, +His venom tooth will rankle to the death: +Have not to do with him, beware of him; +Sin, death, and hell have set their marks on him, +And all their ministers attend on him. + +GLOUCESTER: +What doth she say, my Lord of Buckingham? + +BUCKINGHAM: +Nothing that I respect, my gracious lord. + +QUEEN MARGARET: +What, dost thou scorn me for my gentle counsel? +And soothe the devil that I warn thee from? +O, but remember this another day, +When he shall split thy very heart with sorrow, +And say poor Margaret was a prophetess! +Live each of you the subjects to his hate, +And he to yours, and all of you to God's! + +HASTINGS: +My hair doth stand on end to hear her curses. + +RIVERS: +And so doth mine: I muse why she's at liberty. + +GLOUCESTER: +I cannot blame her: by God's holy mother, +She hath had too much wrong; and I repent +My part thereof that I have done to her. + +QUEEN ELIZABETH: +I never did her any, to my knowledge. + +GLOUCESTER: +But you have all the vantage of her wrong. +I was too hot to do somebody good, +That is too cold in thinking of it now. +Marry, as for Clarence, he is well repaid, +He is frank'd up to fatting for his pains +God pardon them that are the cause of it! + +RIVERS: +A virtuous and a Christian-like conclusion, +To pray for them that have done scathe to us. + +GLOUCESTER: +So do I ever: +being well-advised. +For had I cursed now, I had cursed myself. + +CATESBY: +Madam, his majesty doth call for you, +And for your grace; and you, my noble lords. + +QUEEN ELIZABETH: +Catesby, we come. Lords, will you go with us? + +RIVERS: +Madam, we will attend your grace. + +GLOUCESTER: +I do the wrong, and first begin to brawl. +The secret mischiefs that I set abroach +I lay unto the grievous charge of others. +Clarence, whom I, indeed, have laid in darkness, +I do beweep to many simple gulls +Namely, to Hastings, Derby, Buckingham; +And say it is the queen and her allies +That stir the king against the duke my brother. +Now, they believe it; and withal whet me +To be revenged on Rivers, Vaughan, Grey: +But then I sigh; and, with a piece of scripture, +Tell them that God bids us do good for evil: +And thus I clothe my naked villany +With old odd ends stolen out of holy writ; +And seem a saint, when most I play the devil. +But, soft! here come my executioners. +How now, my hardy, stout resolved mates! +Are you now going to dispatch this deed? + +First Murderer: +We are, my lord; and come to have the warrant +That we may be admitted where he is. + +GLOUCESTER: +Well thought upon; I have it here about me. +When you have done, repair to Crosby Place. +But, sirs, be sudden in the execution, +Withal obdurate, do not hear him plead; +For Clarence is well-spoken, and perhaps +May move your hearts to pity if you mark him. + +First Murderer: +Tush! +Fear not, my lord, we will not stand to prate; +Talkers are no good doers: be assured +We come to use our hands and not our tongues. + +GLOUCESTER: +Your eyes drop millstones, when fools' eyes drop tears: +I like you, lads; about your business straight; +Go, go, dispatch. + +First Murderer: +We will, my noble lord. + +BRAKENBURY: +Why looks your grace so heavily today? + +CLARENCE: +O, I have pass'd a miserable night, +So full of ugly sights, of ghastly dreams, +That, as I am a Christian faithful man, +I would not spend another such a night, +Though 'twere to buy a world of happy days, +So full of dismal terror was the time! + +BRAKENBURY: +What was your dream? I long to hear you tell it. + +CLARENCE: +Methoughts that I had broken from the Tower, +And was embark'd to cross to Burgundy; +And, in my company, my brother Gloucester; +Who from my cabin tempted me to walk +Upon the hatches: thence we looked toward England, +And cited up a thousand fearful times, +During the wars of York and Lancaster +That had befall'n us. As we paced along +Upon the giddy footing of the hatches, +Methought that Gloucester stumbled; and, in falling, +Struck me, that thought to stay him, overboard, +Into the tumbling billows of the main. +Lord, Lord! methought, what pain it was to drown! +What dreadful noise of waters in mine ears! +What ugly sights of death within mine eyes! +Methought I saw a thousand fearful wrecks; +Ten thousand men that fishes gnaw'd upon; +Wedges of gold, great anchors, heaps of pearl, +Inestimable stones, unvalued jewels, +All scatter'd in the bottom of the sea: +Some lay in dead men's skulls; and, in those holes +Where eyes did once inhabit, there were crept, +As 'twere in scorn of eyes, reflecting gems, +Which woo'd the slimy bottom of the deep, +And mock'd the dead bones that lay scatter'd by. + +BRAKENBURY: +Had you such leisure in the time of death +To gaze upon the secrets of the deep? + +CLARENCE: +Methought I had; and often did I strive +To yield the ghost: but still the envious flood +Kept in my soul, and would not let it forth +To seek the empty, vast and wandering air; +But smother'd it within my panting bulk, +Which almost burst to belch it in the sea. + +BRAKENBURY: +Awaked you not with this sore agony? + +CLARENCE: +O, no, my dream was lengthen'd after life; +O, then began the tempest to my soul, +Who pass'd, methought, the melancholy flood, +With that grim ferryman which poets write of, +Unto the kingdom of perpetual night. +The first that there did greet my stranger soul, +Was my great father-in-law, renowned Warwick; +Who cried aloud, 'What scourge for perjury +Can this dark monarchy afford false Clarence?' +And so he vanish'd: then came wandering by +A shadow like an angel, with bright hair +Dabbled in blood; and he squeak'd out aloud, +'Clarence is come; false, fleeting, perjured Clarence, +That stabb'd me in the field by Tewksbury; +Seize on him, Furies, take him to your torments!' +With that, methoughts, a legion of foul fiends +Environ'd me about, and howled in mine ears +Such hideous cries, that with the very noise +I trembling waked, and for a season after +Could not believe but that I was in hell, +Such terrible impression made the dream. + +BRAKENBURY: +No marvel, my lord, though it affrighted you; +I promise, I am afraid to hear you tell it. + +CLARENCE: +O Brakenbury, I have done those things, +Which now bear evidence against my soul, +For Edward's sake; and see how he requites me! +O God! if my deep prayers cannot appease thee, +But thou wilt be avenged on my misdeeds, +Yet execute thy wrath in me alone, +O, spare my guiltless wife and my poor children! +I pray thee, gentle keeper, stay by me; +My soul is heavy, and I fain would sleep. + +BRAKENBURY: +I will, my lord: God give your grace good rest! +Sorrow breaks seasons and reposing hours, +Makes the night morning, and the noon-tide night. +Princes have but their tides for their glories, +An outward honour for an inward toil; +And, for unfelt imagination, +They often feel a world of restless cares: +So that, betwixt their tides and low names, +There's nothing differs but the outward fame. + +First Murderer: +Ho! who's here? + +BRAKENBURY: +In God's name what are you, and how came you hither? + +First Murderer: +I would speak with Clarence, and I came hither on my legs. + +BRAKENBURY: +Yea, are you so brief? + +Second Murderer: +O sir, it is better to be brief than tedious. Show +him our commission; talk no more. + +BRAKENBURY: +I am, in this, commanded to deliver +The noble Duke of Clarence to your hands: +I will not reason what is meant hereby, +Because I will be guiltless of the meaning. +Here are the keys, there sits the duke asleep: +I'll to the king; and signify to him +That thus I have resign'd my charge to you. + +First Murderer: +Do so, it is a point of wisdom: fare you well. + +Second Murderer: +What, shall we stab him as he sleeps? + +First Murderer: +No; then he will say 'twas done cowardly, when he wakes. + +Second Murderer: +When he wakes! why, fool, he shall never wake till +the judgment-day. + +First Murderer: +Why, then he will say we stabbed him sleeping. + +Second Murderer: +The urging of that word 'judgment' hath bred a kind +of remorse in me. + +First Murderer: +What, art thou afraid? + +Second Murderer: +Not to kill him, having a warrant for it; but to be +damned for killing him, from which no warrant can defend us. + +First Murderer: +I thought thou hadst been resolute. + +Second Murderer: +So I am, to let him live. + +First Murderer: +Back to the Duke of Gloucester, tell him so. + +Second Murderer: +I pray thee, stay a while: I hope my holy humour +will change; 'twas wont to hold me but while one +would tell twenty. + +First Murderer: +How dost thou feel thyself now? + +Second Murderer: +'Faith, some certain dregs of conscience are yet +within me. + +First Murderer: +Remember our reward, when the deed is done. + +Second Murderer: +'Zounds, he dies: I had forgot the reward. + +First Murderer: +Where is thy conscience now? + +Second Murderer: +In the Duke of Gloucester's purse. + +First Murderer: +So when he opens his purse to give us our reward, +thy conscience flies out. + +Second Murderer: +Let it go; there's few or none will entertain it. + +First Murderer: +How if it come to thee again? + +Second Murderer: +I'll not meddle with it: it is a dangerous thing: it +makes a man a coward: a man cannot steal, but it +accuseth him; he cannot swear, but it cheques him; +he cannot lie with his neighbour's wife, but it +detects him: 'tis a blushing shamefast spirit that +mutinies in a man's bosom; it fills one full of +obstacles: it made me once restore a purse of gold +that I found; it beggars any man that keeps it: it +is turned out of all towns and cities for a +dangerous thing; and every man that means to live +well endeavours to trust to himself and to live +without it. + +First Murderer: +'Zounds, it is even now at my elbow, persuading me +not to kill the duke. + +Second Murderer: +Take the devil in thy mind, and relieve him not: he +would insinuate with thee but to make thee sigh. + +First Murderer: +Tut, I am strong-framed, he cannot prevail with me, +I warrant thee. + +Second Murderer: +Spoke like a tail fellow that respects his +reputation. Come, shall we to this gear? + +First Murderer: +Take him over the costard with the hilts of thy +sword, and then we will chop him in the malmsey-butt +in the next room. + +Second Murderer: +O excellent devise! make a sop of him. + +First Murderer: +Hark! he stirs: shall I strike? + +Second Murderer: +No, first let's reason with him. + +CLARENCE: +Where art thou, keeper? give me a cup of wine. + +Second murderer: +You shall have wine enough, my lord, anon. + +CLARENCE: +In God's name, what art thou? + +Second Murderer: +A man, as you are. + +CLARENCE: +But not, as I am, royal. + +Second Murderer: +Nor you, as we are, loyal. + +CLARENCE: +Thy voice is thunder, but thy looks are humble. + +Second Murderer: +My voice is now the king's, my looks mine own. + +CLARENCE: +How darkly and how deadly dost thou speak! +Your eyes do menace me: why look you pale? +Who sent you hither? Wherefore do you come? + +Both: +To, to, to-- + +CLARENCE: +To murder me? + +Both: +Ay, ay. + +CLARENCE: +You scarcely have the hearts to tell me so, +And therefore cannot have the hearts to do it. +Wherein, my friends, have I offended you? + +First Murderer: +Offended us you have not, but the king. + +CLARENCE: +I shall be reconciled to him again. + +Second Murderer: +Never, my lord; therefore prepare to die. + +CLARENCE: +Are you call'd forth from out a world of men +To slay the innocent? What is my offence? +Where are the evidence that do accuse me? +What lawful quest have given their verdict up +Unto the frowning judge? or who pronounced +The bitter sentence of poor Clarence' death? +Before I be convict by course of law, +To threaten me with death is most unlawful. +I charge you, as you hope to have redemption +By Christ's dear blood shed for our grievous sins, +That you depart and lay no hands on me +The deed you undertake is damnable. + +First Murderer: +What we will do, we do upon command. + +Second Murderer: +And he that hath commanded is the king. + +CLARENCE: +Erroneous vassal! the great King of kings +Hath in the tables of his law commanded +That thou shalt do no murder: and wilt thou, then, +Spurn at his edict and fulfil a man's? +Take heed; for he holds vengeance in his hands, +To hurl upon their heads that break his law. + +Second Murderer: +And that same vengeance doth he hurl on thee, +For false forswearing and for murder too: +Thou didst receive the holy sacrament, +To fight in quarrel of the house of Lancaster. + +First Murderer: +And, like a traitor to the name of God, +Didst break that vow; and with thy treacherous blade +Unrip'dst the bowels of thy sovereign's son. + +Second Murderer: +Whom thou wert sworn to cherish and defend. + +First Murderer: +How canst thou urge God's dreadful law to us, +When thou hast broke it in so dear degree? + +CLARENCE: +Alas! for whose sake did I that ill deed? +For Edward, for my brother, for his sake: Why, sirs, +He sends ye not to murder me for this +For in this sin he is as deep as I. +If God will be revenged for this deed. +O, know you yet, he doth it publicly, +Take not the quarrel from his powerful arm; +He needs no indirect nor lawless course +To cut off those that have offended him. + +First Murderer: +Who made thee, then, a bloody minister, +When gallant-springing brave Plantagenet, +That princely novice, was struck dead by thee? + +CLARENCE: +My brother's love, the devil, and my rage. + +First Murderer: +Thy brother's love, our duty, and thy fault, +Provoke us hither now to slaughter thee. + +CLARENCE: +Oh, if you love my brother, hate not me; +I am his brother, and I love him well. +If you be hired for meed, go back again, +And I will send you to my brother Gloucester, +Who shall reward you better for my life +Than Edward will for tidings of my death. + +Second Murderer: +You are deceived, your brother Gloucester hates you. + +CLARENCE: +O, no, he loves me, and he holds me dear: +Go you to him from me. + +Both: +Ay, so we will. + +CLARENCE: +Tell him, when that our princely father York +Bless'd his three sons with his victorious arm, +And charged us from his soul to love each other, +He little thought of this divided friendship: +Bid Gloucester think of this, and he will weep. + +First Murderer: +Ay, millstones; as be lesson'd us to weep. + +CLARENCE: +O, do not slander him, for he is kind. + +First Murderer: +Right, +As snow in harvest. Thou deceivest thyself: +'Tis he that sent us hither now to slaughter thee. + +CLARENCE: +It cannot be; for when I parted with him, +He hugg'd me in his arms, and swore, with sobs, +That he would labour my delivery. + +Second Murderer: +Why, so he doth, now he delivers thee +From this world's thraldom to the joys of heaven. + +First Murderer: +Make peace with God, for you must die, my lord. + +CLARENCE: +Hast thou that holy feeling in thy soul, +To counsel me to make my peace with God, +And art thou yet to thy own soul so blind, +That thou wilt war with God by murdering me? +Ah, sirs, consider, he that set you on +To do this deed will hate you for the deed. + +Second Murderer: +What shall we do? + +CLARENCE: +Relent, and save your souls. + +First Murderer: +Relent! 'tis cowardly and womanish. + +CLARENCE: +Not to relent is beastly, savage, devilish. +Which of you, if you were a prince's son, +Being pent from liberty, as I am now, +if two such murderers as yourselves came to you, +Would not entreat for life? +My friend, I spy some pity in thy looks: +O, if thine eye be not a flatterer, +Come thou on my side, and entreat for me, +As you would beg, were you in my distress +A begging prince what beggar pities not? + +Second Murderer: +Look behind you, my lord. + +First Murderer: +Take that, and that: if all this will not do, +I'll drown you in the malmsey-butt within. + +Second Murderer: +A bloody deed, and desperately dispatch'd! +How fain, like Pilate, would I wash my hands +Of this most grievous guilty murder done! + +First Murderer: +How now! what mean'st thou, that thou help'st me not? +By heavens, the duke shall know how slack thou art! + +Second Murderer: +I would he knew that I had saved his brother! +Take thou the fee, and tell him what I say; +For I repent me that the duke is slain. + +First Murderer: +So do not I: go, coward as thou art. +Now must I hide his body in some hole, +Until the duke take order for his burial: +And when I have my meed, I must away; +For this will out, and here I must not stay. + +KING EDWARD IV: +Why, so: now have I done a good day's work: +You peers, continue this united league: +I every day expect an embassage +From my Redeemer to redeem me hence; +And now in peace my soul shall part to heaven, +Since I have set my friends at peace on earth. +Rivers and Hastings, take each other's hand; +Dissemble not your hatred, swear your love. + +RIVERS: +By heaven, my heart is purged from grudging hate: +And with my hand I seal my true heart's love. + +HASTINGS: +So thrive I, as I truly swear the like! + +KING EDWARD IV: +Take heed you dally not before your king; +Lest he that is the supreme King of kings +Confound your hidden falsehood, and award +Either of you to be the other's end. + +HASTINGS: +So prosper I, as I swear perfect love! + +RIVERS: +And I, as I love Hastings with my heart! + +KING EDWARD IV: +Madam, yourself are not exempt in this, +Nor your son Dorset, Buckingham, nor you; +You have been factious one against the other, +Wife, love Lord Hastings, let him kiss your hand; +And what you do, do it unfeignedly. + +QUEEN ELIZABETH: +Here, Hastings; I will never more remember +Our former hatred, so thrive I and mine! + +KING EDWARD IV: +Dorset, embrace him; Hastings, love lord marquess. + +DORSET: +This interchange of love, I here protest, +Upon my part shall be unviolable. + +HASTINGS: +And so swear I, my lord + +KING EDWARD IV: +Now, princely Buckingham, seal thou this league +With thy embracements to my wife's allies, +And make me happy in your unity. + +BUCKINGHAM: +Whenever Buckingham doth turn his hate +On you or yours, +but with all duteous love +Doth cherish you and yours, God punish me +With hate in those where I expect most love! +When I have most need to employ a friend, +And most assured that he is a friend +Deep, hollow, treacherous, and full of guile, +Be he unto me! this do I beg of God, +When I am cold in zeal to yours. + +KING EDWARD IV: +A pleasing cordial, princely Buckingham, +is this thy vow unto my sickly heart. +There wanteth now our brother Gloucester here, +To make the perfect period of this peace. + +BUCKINGHAM: +And, in good time, here comes the noble duke. + +GLOUCESTER: +Good morrow to my sovereign king and queen: +And, princely peers, a happy time of day! + +KING EDWARD IV: +Happy, indeed, as we have spent the day. +Brother, we done deeds of charity; +Made peace enmity, fair love of hate, +Between these swelling wrong-incensed peers. + +GLOUCESTER: +A blessed labour, my most sovereign liege: +Amongst this princely heap, if any here, +By false intelligence, or wrong surmise, +Hold me a foe; +If I unwittingly, or in my rage, +Have aught committed that is hardly borne +By any in this presence, I desire +To reconcile me to his friendly peace: +'Tis death to me to be at enmity; +I hate it, and desire all good men's love. +First, madam, I entreat true peace of you, +Which I will purchase with my duteous service; +Of you, my noble cousin Buckingham, +If ever any grudge were lodged between us; +Of you, Lord Rivers, and, Lord Grey, of you; +That without desert have frown'd on me; +Dukes, earls, lords, gentlemen; indeed, of all. +I do not know that Englishman alive +With whom my soul is any jot at odds +More than the infant that is born to-night +I thank my God for my humility. + +QUEEN ELIZABETH: +A holy day shall this be kept hereafter: +I would to God all strifes were well compounded. +My sovereign liege, I do beseech your majesty +To take our brother Clarence to your grace. + +GLOUCESTER: +Why, madam, have I offer'd love for this +To be so bouted in this royal presence? +Who knows not that the noble duke is dead? +You do him injury to scorn his corse. + +RIVERS: +Who knows not he is dead! who knows he is? + +QUEEN ELIZABETH: +All seeing heaven, what a world is this! + +BUCKINGHAM: +Look I so pale, Lord Dorset, as the rest? + +DORSET: +Ay, my good lord; and no one in this presence +But his red colour hath forsook his cheeks. + +KING EDWARD IV: +Is Clarence dead? the order was reversed. + +GLOUCESTER: +But he, poor soul, by your first order died, +And that a winged Mercury did bear: +Some tardy cripple bore the countermand, +That came too lag to see him buried. +God grant that some, less noble and less loyal, +Nearer in bloody thoughts, but not in blood, +Deserve not worse than wretched Clarence did, +And yet go current from suspicion! + +DORSET: +A boon, my sovereign, for my service done! + +KING EDWARD IV: +I pray thee, peace: my soul is full of sorrow. + +DORSET: +I will not rise, unless your highness grant. + +KING EDWARD IV: +Then speak at once what is it thou demand'st. + +DORSET: +The forfeit, sovereign, of my servant's life; +Who slew to-day a righteous gentleman +Lately attendant on the Duke of Norfolk. + +KING EDWARD IV: +Have a tongue to doom my brother's death, +And shall the same give pardon to a slave? +My brother slew no man; his fault was thought, +And yet his punishment was cruel death. +Who sued to me for him? who, in my rage, +Kneel'd at my feet, and bade me be advised +Who spake of brotherhood? who spake of love? +Who told me how the poor soul did forsake +The mighty Warwick, and did fight for me? +Who told me, in the field by Tewksbury +When Oxford had me down, he rescued me, +And said, 'Dear brother, live, and be a king'? +Who told me, when we both lay in the field +Frozen almost to death, how he did lap me +Even in his own garments, and gave himself, +All thin and naked, to the numb cold night? +All this from my remembrance brutish wrath +Sinfully pluck'd, and not a man of you +Had so much grace to put it in my mind. +But when your carters or your waiting-vassals +Have done a drunken slaughter, and defaced +The precious image of our dear Redeemer, +You straight are on your knees for pardon, pardon; +And I unjustly too, must grant it you +But for my brother not a man would speak, +Nor I, ungracious, speak unto myself +For him, poor soul. The proudest of you all +Have been beholding to him in his life; +Yet none of you would once plead for his life. +O God, I fear thy justice will take hold +On me, and you, and mine, and yours for this! +Come, Hastings, help me to my closet. +Oh, poor Clarence! + +GLOUCESTER: +This is the fruit of rashness! Mark'd you not +How that the guilty kindred of the queen +Look'd pale when they did hear of Clarence' death? +O, they did urge it still unto the king! +God will revenge it. But come, let us in, +To comfort Edward with our company. + +BUCKINGHAM: +We wait upon your grace. + +Boy: +Tell me, good grandam, is our father dead? + +DUCHESS OF YORK: +No, boy. + +Boy: +Why do you wring your hands, and beat your breast, +And cry 'O Clarence, my unhappy son!' + +Girl: +Why do you look on us, and shake your head, +And call us wretches, orphans, castaways +If that our noble father be alive? + +DUCHESS OF YORK: +My pretty cousins, you mistake me much; +I do lament the sickness of the king. +As loath to lose him, not your father's death; +It were lost sorrow to wail one that's lost. + +Boy: +Then, grandam, you conclude that he is dead. +The king my uncle is to blame for this: +God will revenge it; whom I will importune +With daily prayers all to that effect. + +Girl: +And so will I. + +DUCHESS OF YORK: +Peace, children, peace! the king doth love you well: +Incapable and shallow innocents, +You cannot guess who caused your father's death. + +Boy: +Grandam, we can; for my good uncle Gloucester +Told me, the king, provoked by the queen, +Devised impeachments to imprison him : +And when my uncle told me so, he wept, +And hugg'd me in his arm, and kindly kiss'd my cheek; +Bade me rely on him as on my father, +And he would love me dearly as his child. + +DUCHESS OF YORK: +Oh, that deceit should steal such gentle shapes, +And with a virtuous vizard hide foul guile! +He is my son; yea, and therein my shame; +Yet from my dugs he drew not this deceit. + +Boy: +Think you my uncle did dissemble, grandam? + +DUCHESS OF YORK: +Ay, boy. + +Boy: +I cannot think it. Hark! what noise is this? + +QUEEN ELIZABETH: +Oh, who shall hinder me to wail and weep, +To chide my fortune, and torment myself? +I'll join with black despair against my soul, +And to myself become an enemy. + +DUCHESS OF YORK: +What means this scene of rude impatience? + +QUEEN ELIZABETH: +To make an act of tragic violence: +Edward, my lord, your son, our king, is dead. +Why grow the branches now the root is wither'd? +Why wither not the leaves the sap being gone? +If you will live, lament; if die, be brief, +That our swift-winged souls may catch the king's; +Or, like obedient subjects, follow him +To his new kingdom of perpetual rest. + +DUCHESS OF YORK: +Ah, so much interest have I in thy sorrow +As I had title in thy noble husband! +I have bewept a worthy husband's death, +And lived by looking on his images: +But now two mirrors of his princely semblance +Are crack'd in pieces by malignant death, +And I for comfort have but one false glass, +Which grieves me when I see my shame in him. +Thou art a widow; yet thou art a mother, +And hast the comfort of thy children left thee: +But death hath snatch'd my husband from mine arms, +And pluck'd two crutches from my feeble limbs, +Edward and Clarence. O, what cause have I, +Thine being but a moiety of my grief, +To overgo thy plaints and drown thy cries! + +Boy: +Good aunt, you wept not for our father's death; +How can we aid you with our kindred tears? + +Girl: +Our fatherless distress was left unmoan'd; +Your widow-dolour likewise be unwept! + +QUEEN ELIZABETH: +Give me no help in lamentation; +I am not barren to bring forth complaints +All springs reduce their currents to mine eyes, +That I, being govern'd by the watery moon, +May send forth plenteous tears to drown the world! +Oh for my husband, for my dear lord Edward! + +Children: +Oh for our father, for our dear lord Clarence! + +DUCHESS OF YORK: +Alas for both, both mine, Edward and Clarence! + +QUEEN ELIZABETH: +What stay had I but Edward? and he's gone. + +Children: +What stay had we but Clarence? and he's gone. + +DUCHESS OF YORK: +What stays had I but they? and they are gone. + +QUEEN ELIZABETH: +Was never widow had so dear a loss! + +Children: +Were never orphans had so dear a loss! + +DUCHESS OF YORK: +Was never mother had so dear a loss! +Alas, I am the mother of these moans! +Their woes are parcell'd, mine are general. +She for an Edward weeps, and so do I; +I for a Clarence weep, so doth not she: +These babes for Clarence weep and so do I; +I for an Edward weep, so do not they: +Alas, you three, on me, threefold distress'd, +Pour all your tears! I am your sorrow's nurse, +And I will pamper it with lamentations. + +DORSET: +Comfort, dear mother: God is much displeased +That you take with unthankfulness, his doing: +In common worldly things, 'tis call'd ungrateful, +With dull unwilligness to repay a debt +Which with a bounteous hand was kindly lent; +Much more to be thus opposite with heaven, +For it requires the royal debt it lent you. + +RIVERS: +Madam, bethink you, like a careful mother, +Of the young prince your son: send straight for him +Let him be crown'd; in him your comfort lives: +Drown desperate sorrow in dead Edward's grave, +And plant your joys in living Edward's throne. + +GLOUCESTER: +Madam, have comfort: all of us have cause +To wail the dimming of our shining star; +But none can cure their harms by wailing them. +Madam, my mother, I do cry you mercy; +I did not see your grace: humbly on my knee +I crave your blessing. + +DUCHESS OF YORK: +God bless thee; and put meekness in thy mind, +Love, charity, obedience, and true duty! + +GLOUCESTER: + +BUCKINGHAM: +You cloudy princes and heart-sorrowing peers, +That bear this mutual heavy load of moan, +Now cheer each other in each other's love +Though we have spent our harvest of this king, +We are to reap the harvest of his son. +The broken rancour of your high-swoln hearts, +But lately splinter'd, knit, and join'd together, +Must gently be preserved, cherish'd, and kept: +Me seemeth good, that, with some little train, +Forthwith from Ludlow the young prince be fetch'd +Hither to London, to be crown'd our king. + +RIVERS: +Why with some little train, my Lord of Buckingham? + +BUCKINGHAM: +Marry, my lord, lest, by a multitude, +The new-heal'd wound of malice should break out, +Which would be so much the more dangerous +By how much the estate is green and yet ungovern'd: +Where every horse bears his commanding rein, +And may direct his course as please himself, +As well the fear of harm, as harm apparent, +In my opinion, ought to be prevented. + +GLOUCESTER: +I hope the king made peace with all of us +And the compact is firm and true in me. + +RIVERS: +And so in me; and so, I think, in all: +Yet, since it is but green, it should be put +To no apparent likelihood of breach, +Which haply by much company might be urged: +Therefore I say with noble Buckingham, +That it is meet so few should fetch the prince. + +HASTINGS: +And so say I. + +GLOUCESTER: +Then be it so; and go we to determine +Who they shall be that straight shall post to Ludlow. +Madam, and you, my mother, will you go +To give your censures in this weighty business? + +QUEEN ELIZABETH: +With all our harts. + +BUCKINGHAM: +My lord, whoever journeys to the Prince, +For God's sake, let not us two be behind; +For, by the way, I'll sort occasion, +As index to the story we late talk'd of, +To part the queen's proud kindred from the king. + +GLOUCESTER: +My other self, my counsel's consistory, +My oracle, my prophet! My dear cousin, +I, like a child, will go by thy direction. +Towards Ludlow then, for we'll not stay behind. + +First Citizen: +Neighbour, well met: whither away so fast? + +Second Citizen: +I promise you, I scarcely know myself: +Hear you the news abroad? + +First Citizen: +Ay, that the king is dead. + +Second Citizen: +Bad news, by'r lady; seldom comes the better: +I fear, I fear 'twill prove a troublous world. + +Third Citizen: +Neighbours, God speed! + +First Citizen: +Give you good morrow, sir. + +Third Citizen: +Doth this news hold of good King Edward's death? + +Second Citizen: +Ay, sir, it is too true; God help the while! + +Third Citizen: +Then, masters, look to see a troublous world. + +First Citizen: +No, no; by God's good grace his son shall reign. + +Third Citizen: +Woe to the land that's govern'd by a child! + +Second Citizen: +In him there is a hope of government, +That in his nonage council under him, +And in his full and ripen'd years himself, +No doubt, shall then and till then govern well. + +First Citizen: +So stood the state when Henry the Sixth +Was crown'd in Paris but at nine months old. + +Third Citizen: +Stood the state so? No, no, good friends, God wot; +For then this land was famously enrich'd +With politic grave counsel; then the king +Had virtuous uncles to protect his grace. + +First Citizen: +Why, so hath this, both by the father and mother. + +Third Citizen: +Better it were they all came by the father, +Or by the father there were none at all; +For emulation now, who shall be nearest, +Will touch us all too near, if God prevent not. +O, full of danger is the Duke of Gloucester! +And the queen's sons and brothers haught and proud: +And were they to be ruled, and not to rule, +This sickly land might solace as before. + +First Citizen: +Come, come, we fear the worst; all shall be well. + +Third Citizen: +When clouds appear, wise men put on their cloaks; +When great leaves fall, the winter is at hand; +When the sun sets, who doth not look for night? +Untimely storms make men expect a dearth. +All may be well; but, if God sort it so, +'Tis more than we deserve, or I expect. + +Second Citizen: +Truly, the souls of men are full of dread: +Ye cannot reason almost with a man +That looks not heavily and full of fear. + +Third Citizen: +Before the times of change, still is it so: +By a divine instinct men's minds mistrust +Ensuing dangers; as by proof, we see +The waters swell before a boisterous storm. +But leave it all to God. whither away? + +Second Citizen: +Marry, we were sent for to the justices. + +Third Citizen: +And so was I: I'll bear you company. + +ARCHBISHOP OF YORK: +Last night, I hear, they lay at Northampton; +At Stony-Stratford will they be to-night: +To-morrow, or next day, they will be here. + +DUCHESS OF YORK: +I long with all my heart to see the prince: +I hope he is much grown since last I saw him. + +QUEEN ELIZABETH: +But I hear, no; they say my son of York +Hath almost overta'en him in his growth. + +YORK: +Ay, mother; but I would not have it so. + +DUCHESS OF YORK: +Why, my young cousin, it is good to grow. + +YORK: +Grandam, one night, as we did sit at supper, +My uncle Rivers talk'd how I did grow +More than my brother: 'Ay,' quoth my uncle +Gloucester, +'Small herbs have grace, great weeds do grow apace:' +And since, methinks, I would not grow so fast, +Because sweet flowers are slow and weeds make haste. + +DUCHESS OF YORK: +Good faith, good faith, the saying did not hold +In him that did object the same to thee; +He was the wretched'st thing when he was young, +So long a-growing and so leisurely, +That, if this rule were true, he should be gracious. + +ARCHBISHOP OF YORK: +Why, madam, so, no doubt, he is. + +DUCHESS OF YORK: +I hope he is; but yet let mothers doubt. + +YORK: +Now, by my troth, if I had been remember'd, +I could have given my uncle's grace a flout, +To touch his growth nearer than he touch'd mine. + +DUCHESS OF YORK: +How, my pretty York? I pray thee, let me hear it. + +YORK: +Marry, they say my uncle grew so fast +That he could gnaw a crust at two hours old +'Twas full two years ere I could get a tooth. +Grandam, this would have been a biting jest. + +DUCHESS OF YORK: +I pray thee, pretty York, who told thee this? + +YORK: +Grandam, his nurse. + +DUCHESS OF YORK: +His nurse! why, she was dead ere thou wert born. + +YORK: +If 'twere not she, I cannot tell who told me. + +QUEEN ELIZABETH: +A parlous boy: go to, you are too shrewd. + +ARCHBISHOP OF YORK: +Good madam, be not angry with the child. + +QUEEN ELIZABETH: +Pitchers have ears. + +ARCHBISHOP OF YORK: +Here comes a messenger. What news? + +Messenger: +Such news, my lord, as grieves me to unfold. + +QUEEN ELIZABETH: +How fares the prince? + +Messenger: +Well, madam, and in health. + +DUCHESS OF YORK: +What is thy news then? + +Messenger: +Lord Rivers and Lord Grey are sent to Pomfret, +With them Sir Thomas Vaughan, prisoners. + +DUCHESS OF YORK: +Who hath committed them? + +Messenger: +The mighty dukes +Gloucester and Buckingham. + +QUEEN ELIZABETH: +For what offence? + +Messenger: +The sum of all I can, I have disclosed; +Why or for what these nobles were committed +Is all unknown to me, my gracious lady. + +QUEEN ELIZABETH: +Ay me, I see the downfall of our house! +The tiger now hath seized the gentle hind; +Insulting tyranny begins to jet +Upon the innocent and aweless throne: +Welcome, destruction, death, and massacre! +I see, as in a map, the end of all. + +DUCHESS OF YORK: +Accursed and unquiet wrangling days, +How many of you have mine eyes beheld! +My husband lost his life to get the crown; +And often up and down my sons were toss'd, +For me to joy and weep their gain and loss: +And being seated, and domestic broils +Clean over-blown, themselves, the conquerors. +Make war upon themselves; blood against blood, +Self against self: O, preposterous +And frantic outrage, end thy damned spleen; +Or let me die, to look on death no more! + +QUEEN ELIZABETH: +Come, come, my boy; we will to sanctuary. +Madam, farewell. + +DUCHESS OF YORK: +I'll go along with you. + +QUEEN ELIZABETH: +You have no cause. + +ARCHBISHOP OF YORK: +My gracious lady, go; +And thither bear your treasure and your goods. +For my part, I'll resign unto your grace +The seal I keep: and so betide to me +As well I tender you and all of yours! +Come, I'll conduct you to the sanctuary. + +BUCKINGHAM: +Welcome, sweet prince, to London, to your chamber. + +GLOUCESTER: +Welcome, dear cousin, my thoughts' sovereign +The weary way hath made you melancholy. + +PRINCE EDWARD: +No, uncle; but our crosses on the way +Have made it tedious, wearisome, and heavy +I want more uncles here to welcome me. + +GLOUCESTER: +Sweet prince, the untainted virtue of your years +Hath not yet dived into the world's deceit +Nor more can you distinguish of a man +Than of his outward show; which, God he knows, +Seldom or never jumpeth with the heart. +Those uncles which you want were dangerous; +Your grace attended to their sugar'd words, +But look'd not on the poison of their hearts : +God keep you from them, and from such false friends! + +PRINCE EDWARD: +God keep me from false friends! but they were none. + +GLOUCESTER: +My lord, the mayor of London comes to greet you. + +Lord Mayor: +God bless your grace with health and happy days! + +PRINCE EDWARD: +I thank you, good my lord; and thank you all. +I thought my mother, and my brother York, +Would long ere this have met us on the way +Fie, what a slug is Hastings, that he comes not +To tell us whether they will come or no! + +BUCKINGHAM: +And, in good time, here comes the sweating lord. + +PRINCE EDWARD: +Welcome, my lord: what, will our mother come? + +HASTINGS: +On what occasion, God he knows, not I, +The queen your mother, and your brother York, +Have taken sanctuary: the tender prince +Would fain have come with me to meet your grace, +But by his mother was perforce withheld. + +BUCKINGHAM: +Fie, what an indirect and peevish course +Is this of hers! Lord cardinal, will your grace +Persuade the queen to send the Duke of York +Unto his princely brother presently? +If she deny, Lord Hastings, go with him, +And from her jealous arms pluck him perforce. + +CARDINAL: +My Lord of Buckingham, if my weak oratory +Can from his mother win the Duke of York, +Anon expect him here; but if she be obdurate +To mild entreaties, God in heaven forbid +We should infringe the holy privilege +Of blessed sanctuary! not for all this land +Would I be guilty of so deep a sin. + +BUCKINGHAM: +You are too senseless--obstinate, my lord, +Too ceremonious and traditional +Weigh it but with the grossness of this age, +You break not sanctuary in seizing him. +The benefit thereof is always granted +To those whose dealings have deserved the place, +And those who have the wit to claim the place: +This prince hath neither claim'd it nor deserved it; +And therefore, in mine opinion, cannot have it: +Then, taking him from thence that is not there, +You break no privilege nor charter there. +Oft have I heard of sanctuary men; +But sanctuary children ne'er till now. + +CARDINAL: +My lord, you shall o'er-rule my mind for once. +Come on, Lord Hastings, will you go with me? + +HASTINGS: +I go, my lord. + +PRINCE EDWARD: +Good lords, make all the speedy haste you may. +Say, uncle Gloucester, if our brother come, +Where shall we sojourn till our coronation? + +GLOUCESTER: +Where it seems best unto your royal self. +If I may counsel you, some day or two +Your highness shall repose you at the Tower: +Then where you please, and shall be thought most fit +For your best health and recreation. + +PRINCE EDWARD: +I do not like the Tower, of any place. +Did Julius Caesar build that place, my lord? + +BUCKINGHAM: +He did, my gracious lord, begin that place; +Which, since, succeeding ages have re-edified. + +PRINCE EDWARD: +Is it upon record, or else reported +Successively from age to age, he built it? + +BUCKINGHAM: +Upon record, my gracious lord. + +PRINCE EDWARD: +But say, my lord, it were not register'd, +Methinks the truth should live from age to age, +As 'twere retail'd to all posterity, +Even to the general all-ending day. + +GLOUCESTER: + +PRINCE EDWARD: +What say you, uncle? + +GLOUCESTER: +I say, without characters, fame lives long. +Thus, like the formal vice, Iniquity, +I moralize two meanings in one word. + +PRINCE EDWARD: +That Julius Caesar was a famous man; +With what his valour did enrich his wit, +His wit set down to make his valour live +Death makes no conquest of this conqueror; +For now he lives in fame, though not in life. +I'll tell you what, my cousin Buckingham,-- + +BUCKINGHAM: +What, my gracious lord? + +PRINCE EDWARD: +An if I live until I be a man, +I'll win our ancient right in France again, +Or die a soldier, as I lived a king. + +GLOUCESTER: + +BUCKINGHAM: +Now, in good time, here comes the Duke of York. + +PRINCE EDWARD: +Richard of York! how fares our loving brother? + +YORK: +Well, my dread lord; so must I call you now. + +PRINCE EDWARD: +Ay, brother, to our grief, as it is yours: +Too late he died that might have kept that title, +Which by his death hath lost much majesty. + +GLOUCESTER: +How fares our cousin, noble Lord of York? + +YORK: +I thank you, gentle uncle. O, my lord, +You said that idle weeds are fast in growth +The prince my brother hath outgrown me far. + +GLOUCESTER: +He hath, my lord. + +YORK: +And therefore is he idle? + +GLOUCESTER: +O, my fair cousin, I must not say so. + +YORK: +Then is he more beholding to you than I. + +GLOUCESTER: +He may command me as my sovereign; +But you have power in me as in a kinsman. + +YORK: +I pray you, uncle, give me this dagger. + +GLOUCESTER: +My dagger, little cousin? with all my heart. + +PRINCE EDWARD: +A beggar, brother? + +YORK: +Of my kind uncle, that I know will give; +And being but a toy, which is no grief to give. + +GLOUCESTER: +A greater gift than that I'll give my cousin. + +YORK: +A greater gift! O, that's the sword to it. + +GLOUCESTER: +A gentle cousin, were it light enough. + +YORK: +O, then, I see, you will part but with light gifts; +In weightier things you'll say a beggar nay. + +GLOUCESTER: +It is too heavy for your grace to wear. + +YORK: +I weigh it lightly, were it heavier. + +GLOUCESTER: +What, would you have my weapon, little lord? + +YORK: +I would, that I might thank you as you call me. + +GLOUCESTER: +How? + +YORK: +Little. + +PRINCE EDWARD: +My Lord of York will still be cross in talk: +Uncle, your grace knows how to bear with him. + +YORK: +You mean, to bear me, not to bear with me: +Uncle, my brother mocks both you and me; +Because that I am little, like an ape, +He thinks that you should bear me on your shoulders. + +BUCKINGHAM: +With what a sharp-provided wit he reasons! +To mitigate the scorn he gives his uncle, +He prettily and aptly taunts himself: +So cunning and so young is wonderful. + +GLOUCESTER: +My lord, will't please you pass along? +Myself and my good cousin Buckingham +Will to your mother, to entreat of her +To meet you at the Tower and welcome you. + +YORK: +What, will you go unto the Tower, my lord? + +PRINCE EDWARD: +My lord protector needs will have it so. + +YORK: +I shall not sleep in quiet at the Tower. + +GLOUCESTER: +Why, what should you fear? + +YORK: +Marry, my uncle Clarence' angry ghost: +My grandam told me he was murdered there. + +PRINCE EDWARD: +I fear no uncles dead. + +GLOUCESTER: +Nor none that live, I hope. + +PRINCE EDWARD: +An if they live, I hope I need not fear. +But come, my lord; and with a heavy heart, +Thinking on them, go I unto the Tower. + +BUCKINGHAM: +Think you, my lord, this little prating York +Was not incensed by his subtle mother +To taunt and scorn you thus opprobriously? + +GLOUCESTER: +No doubt, no doubt; O, 'tis a parlous boy; +Bold, quick, ingenious, forward, capable +He is all the mother's, from the top to toe. + +BUCKINGHAM: +Well, let them rest. Come hither, Catesby. +Thou art sworn as deeply to effect what we intend +As closely to conceal what we impart: +Thou know'st our reasons urged upon the way; +What think'st thou? is it not an easy matter +To make William Lord Hastings of our mind, +For the instalment of this noble duke +In the seat royal of this famous isle? + +CATESBY: +He for his father's sake so loves the prince, +That he will not be won to aught against him. + +BUCKINGHAM: +What think'st thou, then, of Stanley? what will he? + +CATESBY: +He will do all in all as Hastings doth. + +BUCKINGHAM: +Well, then, no more but this: go, gentle Catesby, +And, as it were far off sound thou Lord Hastings, +How doth he stand affected to our purpose; +And summon him to-morrow to the Tower, +To sit about the coronation. +If thou dost find him tractable to us, +Encourage him, and show him all our reasons: +If he be leaden, icy-cold, unwilling, +Be thou so too; and so break off your talk, +And give us notice of his inclination: +For we to-morrow hold divided councils, +Wherein thyself shalt highly be employ'd. + +GLOUCESTER: +Commend me to Lord William: tell him, Catesby, +His ancient knot of dangerous adversaries +To-morrow are let blood at Pomfret-castle; +And bid my friend, for joy of this good news, +Give mistress Shore one gentle kiss the more. + +BUCKINGHAM: +Good Catesby, go, effect this business soundly. + +CATESBY: +My good lords both, with all the heed I may. + +GLOUCESTER: +Shall we hear from you, Catesby, ere we sleep? + +CATESBY: +You shall, my lord. + +GLOUCESTER: +At Crosby Place, there shall you find us both. + +BUCKINGHAM: +Now, my lord, what shall we do, if we perceive +Lord Hastings will not yield to our complots? + +GLOUCESTER: +Chop off his head, man; somewhat we will do: +And, look, when I am king, claim thou of me +The earldom of Hereford, and the moveables +Whereof the king my brother stood possess'd. + +BUCKINGHAM: +I'll claim that promise at your grace's hands. + +GLOUCESTER: +And look to have it yielded with all willingness. +Come, let us sup betimes, that afterwards +We may digest our complots in some form. + +Messenger: +What, ho! my lord! + +HASTINGS: + +Messenger: +A messenger from the Lord Stanley. + +HASTINGS: +What is't o'clock? + +Messenger: +Upon the stroke of four. + +HASTINGS: +Cannot thy master sleep these tedious nights? + +Messenger: +So it should seem by that I have to say. +First, he commends him to your noble lordship. + +HASTINGS: +And then? + +Messenger: +And then he sends you word +He dreamt to-night the boar had razed his helm: +Besides, he says there are two councils held; +And that may be determined at the one +which may make you and him to rue at the other. +Therefore he sends to know your lordship's pleasure, +If presently you will take horse with him, +And with all speed post with him toward the north, +To shun the danger that his soul divines. + +HASTINGS: +Go, fellow, go, return unto thy lord; +Bid him not fear the separated councils +His honour and myself are at the one, +And at the other is my servant Catesby +Where nothing can proceed that toucheth us +Whereof I shall not have intelligence. +Tell him his fears are shallow, wanting instance: +And for his dreams, I wonder he is so fond +To trust the mockery of unquiet slumbers +To fly the boar before the boar pursues, +Were to incense the boar to follow us +And make pursuit where he did mean no chase. +Go, bid thy master rise and come to me +And we will both together to the Tower, +Where, he shall see, the boar will use us kindly. + +Messenger: +My gracious lord, I'll tell him what you say. + +CATESBY: +Many good morrows to my noble lord! + +HASTINGS: +Good morrow, Catesby; you are early stirring +What news, what news, in this our tottering state? + +CATESBY: +It is a reeling world, indeed, my lord; +And I believe twill never stand upright +Tim Richard wear the garland of the realm. + +HASTINGS: +How! wear the garland! dost thou mean the crown? + +CATESBY: +Ay, my good lord. + +HASTINGS: +I'll have this crown of mine cut from my shoulders +Ere I will see the crown so foul misplaced. +But canst thou guess that he doth aim at it? + +CATESBY: +Ay, on my life; and hopes to find forward +Upon his party for the gain thereof: +And thereupon he sends you this good news, +That this same very day your enemies, +The kindred of the queen, must die at Pomfret. + +HASTINGS: +Indeed, I am no mourner for that news, +Because they have been still mine enemies: +But, that I'll give my voice on Richard's side, +To bar my master's heirs in true descent, +God knows I will not do it, to the death. + +CATESBY: +God keep your lordship in that gracious mind! + +HASTINGS: +But I shall laugh at this a twelve-month hence, +That they who brought me in my master's hate +I live to look upon their tragedy. +I tell thee, Catesby-- + +CATESBY: +What, my lord? + +HASTINGS: +Ere a fortnight make me elder, +I'll send some packing that yet think not on it. + +CATESBY: +'Tis a vile thing to die, my gracious lord, +When men are unprepared and look not for it. + +HASTINGS: +O monstrous, monstrous! and so falls it out +With Rivers, Vaughan, Grey: and so 'twill do +With some men else, who think themselves as safe +As thou and I; who, as thou know'st, are dear +To princely Richard and to Buckingham. + +CATESBY: +The princes both make high account of you; +For they account his head upon the bridge. + +HASTINGS: +I know they do; and I have well deserved it. +Come on, come on; where is your boar-spear, man? +Fear you the boar, and go so unprovided? + +STANLEY: +My lord, good morrow; good morrow, Catesby: +You may jest on, but, by the holy rood, +I do not like these several councils, I. + +HASTINGS: +My lord, +I hold my life as dear as you do yours; +And never in my life, I do protest, +Was it more precious to me than 'tis now: +Think you, but that I know our state secure, +I would be so triumphant as I am? + +STANLEY: +The lords at Pomfret, when they rode from London, +Were jocund, and supposed their state was sure, +And they indeed had no cause to mistrust; +But yet, you see how soon the day o'ercast. +This sudden stag of rancour I misdoubt: +Pray God, I say, I prove a needless coward! +What, shall we toward the Tower? the day is spent. + +HASTINGS: +Come, come, have with you. Wot you what, my lord? +To-day the lords you talk of are beheaded. + +LORD STANLEY: +They, for their truth, might better wear their heads +Than some that have accused them wear their hats. +But come, my lord, let us away. + +HASTINGS: +Go on before; I'll talk with this good fellow. +How now, sirrah! how goes the world with thee? + +Pursuivant: +The better that your lordship please to ask. + +HASTINGS: +I tell thee, man, 'tis better with me now +Than when I met thee last where now we meet: +Then was I going prisoner to the Tower, +By the suggestion of the queen's allies; +But now, I tell thee--keep it to thyself-- +This day those enemies are put to death, +And I in better state than e'er I was. + +Pursuivant: +God hold it, to your honour's good content! + +HASTINGS: +Gramercy, fellow: there, drink that for me. + +Pursuivant: +God save your lordship! + +Priest: +Well met, my lord; I am glad to see your honour. + +HASTINGS: +I thank thee, good Sir John, with all my heart. +I am in your debt for your last exercise; +Come the next Sabbath, and I will content you. + +BUCKINGHAM: +What, talking with a priest, lord chamberlain? +Your friends at Pomfret, they do need the priest; +Your honour hath no shriving work in hand. + +HASTINGS: +Good faith, and when I met this holy man, +Those men you talk of came into my mind. +What, go you toward the Tower? + +BUCKINGHAM: +I do, my lord; but long I shall not stay +I shall return before your lordship thence. + +HASTINGS: +'Tis like enough, for I stay dinner there. + +BUCKINGHAM: + +HASTINGS: +I'll wait upon your lordship. + +RATCLIFF: +Come, bring forth the prisoners. + +RIVERS: +Sir Richard Ratcliff, let me tell thee this: +To-day shalt thou behold a subject die +For truth, for duty, and for loyalty. + +GREY: +God keep the prince from all the pack of you! +A knot you are of damned blood-suckers! + +VAUGHAN: +You live that shall cry woe for this after. + +RATCLIFF: +Dispatch; the limit of your lives is out. + +RIVERS: +O Pomfret, Pomfret! O thou bloody prison, +Fatal and ominous to noble peers! +Within the guilty closure of thy walls +Richard the second here was hack'd to death; +And, for more slander to thy dismal seat, +We give thee up our guiltless blood to drink. + +GREY: +Now Margaret's curse is fall'n upon our heads, +For standing by when Richard stabb'd her son. + +RIVERS: +Then cursed she Hastings, then cursed she Buckingham, +Then cursed she Richard. O, remember, God +To hear her prayers for them, as now for us +And for my sister and her princely sons, +Be satisfied, dear God, with our true blood, +Which, as thou know'st, unjustly must be spilt. + +RATCLIFF: +Make haste; the hour of death is expiate. + +RIVERS: +Come, Grey, come, Vaughan, let us all embrace: +And take our leave, until we meet in heaven. + +HASTINGS: +My lords, at once: the cause why we are met +Is, to determine of the coronation. +In God's name, speak: when is the royal day? + +BUCKINGHAM: +Are all things fitting for that royal time? + +DERBY: +It is, and wants but nomination. + +BISHOP OF ELY: +To-morrow, then, I judge a happy day. + +BUCKINGHAM: +Who knows the lord protector's mind herein? +Who is most inward with the royal duke? + +BISHOP OF ELY: +Your grace, we think, should soonest know his mind. + +BUCKINGHAM: +Who, I, my lord I we know each other's faces, +But for our hearts, he knows no more of mine, +Than I of yours; +Nor I no more of his, than you of mine. +Lord Hastings, you and he are near in love. + +HASTINGS: +I thank his grace, I know he loves me well; +But, for his purpose in the coronation. +I have not sounded him, nor he deliver'd +His gracious pleasure any way therein: +But you, my noble lords, may name the time; +And in the duke's behalf I'll give my voice, +Which, I presume, he'll take in gentle part. + +BISHOP OF ELY: +Now in good time, here comes the duke himself. + +GLOUCESTER: +My noble lords and cousins all, good morrow. +I have been long a sleeper; but, I hope, +My absence doth neglect no great designs, +Which by my presence might have been concluded. + +BUCKINGHAM: +Had not you come upon your cue, my lord +William Lord Hastings had pronounced your part,-- +I mean, your voice,--for crowning of the king. + +GLOUCESTER: +Than my Lord Hastings no man might be bolder; +His lordship knows me well, and loves me well. + +HASTINGS: +I thank your grace. + +GLOUCESTER: +My lord of Ely! + +BISHOP OF ELY: +My lord? + +GLOUCESTER: +When I was last in Holborn, +I saw good strawberries in your garden there +I do beseech you send for some of them. + +BISHOP OF ELY: +Marry, and will, my lord, with all my heart. + +GLOUCESTER: +Cousin of Buckingham, a word with you. +Catesby hath sounded Hastings in our business, +And finds the testy gentleman so hot, +As he will lose his head ere give consent +His master's son, as worshipful as he terms it, +Shall lose the royalty of England's throne. + +BUCKINGHAM: +Withdraw you hence, my lord, I'll follow you. + +DERBY: +We have not yet set down this day of triumph. +To-morrow, in mine opinion, is too sudden; +For I myself am not so well provided +As else I would be, were the day prolong'd. + +BISHOP OF ELY: +Where is my lord protector? I have sent for these +strawberries. + +HASTINGS: +His grace looks cheerfully and smooth to-day; +There's some conceit or other likes him well, +When he doth bid good morrow with such a spirit. +I think there's never a man in Christendom +That can less hide his love or hate than he; +For by his face straight shall you know his heart. + +DERBY: +What of his heart perceive you in his face +By any likelihood he show'd to-day? + +HASTINGS: +Marry, that with no man here he is offended; +For, were he, he had shown it in his looks. + +DERBY: +I pray God he be not, I say. + +GLOUCESTER: +I pray you all, tell me what they deserve +That do conspire my death with devilish plots +Of damned witchcraft, and that have prevail'd +Upon my body with their hellish charms? + +HASTINGS: +The tender love I bear your grace, my lord, +Makes me most forward in this noble presence +To doom the offenders, whatsoever they be +I say, my lord, they have deserved death. + +GLOUCESTER: +Then be your eyes the witness of this ill: +See how I am bewitch'd; behold mine arm +Is, like a blasted sapling, wither'd up: +And this is Edward's wife, that monstrous witch, +Consorted with that harlot strumpet Shore, +That by their witchcraft thus have marked me. + +HASTINGS: +If they have done this thing, my gracious lord-- + +GLOUCESTER: +If I thou protector of this damned strumpet-- +Tellest thou me of 'ifs'? Thou art a traitor: +Off with his head! Now, by Saint Paul I swear, +I will not dine until I see the same. +Lovel and Ratcliff, look that it be done: +The rest, that love me, rise and follow me. + +HASTINGS: +Woe, woe for England! not a whit for me; +For I, too fond, might have prevented this. +Stanley did dream the boar did raze his helm; +But I disdain'd it, and did scorn to fly: +Three times to-day my foot-cloth horse did stumble, +And startled, when he look'd upon the Tower, +As loath to bear me to the slaughter-house. +O, now I want the priest that spake to me: +I now repent I told the pursuivant +As 'twere triumphing at mine enemies, +How they at Pomfret bloodily were butcher'd, +And I myself secure in grace and favour. +O Margaret, Margaret, now thy heavy curse +Is lighted on poor Hastings' wretched head! + +RATCLIFF: +Dispatch, my lord; the duke would be at dinner: +Make a short shrift; he longs to see your head. + +HASTINGS: +O momentary grace of mortal men, +Which we more hunt for than the grace of God! +Who builds his hopes in air of your good looks, +Lives like a drunken sailor on a mast, +Ready, with every nod, to tumble down +Into the fatal bowels of the deep. + +LOVEL: +Come, come, dispatch; 'tis bootless to exclaim. + +HASTINGS: +O bloody Richard! miserable England! +I prophesy the fearful'st time to thee +That ever wretched age hath look'd upon. +Come, lead me to the block; bear him my head. +They smile at me that shortly shall be dead. + +GLOUCESTER: +Come, cousin, canst thou quake, and change thy colour, +Murder thy breath in the middle of a word, +And then begin again, and stop again, +As if thou wert distraught and mad with terror? + +BUCKINGHAM: +Tut, I can counterfeit the deep tragedian; +Speak and look back, and pry on every side, +Tremble and start at wagging of a straw, +Intending deep suspicion: ghastly looks +Are at my service, like enforced smiles; +And both are ready in their offices, +At any time, to grace my stratagems. +But what, is Catesby gone? + +GLOUCESTER: +He is; and, see, he brings the mayor along. + +BUCKINGHAM: +Lord mayor,-- + +GLOUCESTER: +Look to the drawbridge there! + +BUCKINGHAM: +Hark! a drum. + +GLOUCESTER: +Catesby, o'erlook the walls. + +BUCKINGHAM: +Lord mayor, the reason we have sent-- + +GLOUCESTER: +Look back, defend thee, here are enemies. + +BUCKINGHAM: +God and our innocency defend and guard us! + +GLOUCESTER: +Be patient, they are friends, Ratcliff and Lovel. + +LOVEL: +Here is the head of that ignoble traitor, +The dangerous and unsuspected Hastings. + +GLOUCESTER: +So dear I loved the man, that I must weep. +I took him for the plainest harmless creature +That breathed upon this earth a Christian; +Made him my book wherein my soul recorded +The history of all her secret thoughts: +So smooth he daub'd his vice with show of virtue, +That, his apparent open guilt omitted, +I mean, his conversation with Shore's wife, +He lived from all attainder of suspect. + +BUCKINGHAM: +Well, well, he was the covert'st shelter'd traitor +That ever lived. +Would you imagine, or almost believe, +Were't not that, by great preservation, +We live to tell it you, the subtle traitor +This day had plotted, in the council-house +To murder me and my good Lord of Gloucester? + +Lord Mayor: +What, had he so? + +GLOUCESTER: +What, think You we are Turks or infidels? +Or that we would, against the form of law, +Proceed thus rashly to the villain's death, +But that the extreme peril of the case, +The peace of England and our persons' safety, +Enforced us to this execution? + +Lord Mayor: +Now, fair befall you! he deserved his death; +And you my good lords, both have well proceeded, +To warn false traitors from the like attempts. +I never look'd for better at his hands, +After he once fell in with Mistress Shore. + +GLOUCESTER: +Yet had not we determined he should die, +Until your lordship came to see his death; +Which now the loving haste of these our friends, +Somewhat against our meaning, have prevented: +Because, my lord, we would have had you heard +The traitor speak, and timorously confess +The manner and the purpose of his treason; +That you might well have signified the same +Unto the citizens, who haply may +Misconstrue us in him and wail his death. + +Lord Mayor: +But, my good lord, your grace's word shall serve, +As well as I had seen and heard him speak +And doubt you not, right noble princes both, +But I'll acquaint our duteous citizens +With all your just proceedings in this cause. + +GLOUCESTER: +And to that end we wish'd your lord-ship here, +To avoid the carping censures of the world. + +BUCKINGHAM: +But since you come too late of our intents, +Yet witness what you hear we did intend: +And so, my good lord mayor, we bid farewell. + +GLOUCESTER: +Go, after, after, cousin Buckingham. +The mayor towards Guildhall hies him in all post: +There, at your meet'st advantage of the time, +Infer the bastardy of Edward's children: +Tell them how Edward put to death a citizen, +Only for saying he would make his son +Heir to the crown; meaning indeed his house, +Which, by the sign thereof was termed so. +Moreover, urge his hateful luxury +And bestial appetite in change of lust; +Which stretched to their servants, daughters, wives, +Even where his lustful eye or savage heart, +Without control, listed to make his prey. +Nay, for a need, thus far come near my person: +Tell them, when that my mother went with child +Of that unsatiate Edward, noble York +My princely father then had wars in France +And, by just computation of the time, +Found that the issue was not his begot; +Which well appeared in his lineaments, +Being nothing like the noble duke my father: +But touch this sparingly, as 'twere far off, +Because you know, my lord, my mother lives. + +BUCKINGHAM: +Fear not, my lord, I'll play the orator +As if the golden fee for which I plead +Were for myself: and so, my lord, adieu. + +GLOUCESTER: +If you thrive well, bring them to Baynard's Castle; +Where you shall find me well accompanied +With reverend fathers and well-learned bishops. + +BUCKINGHAM: +I go: and towards three or four o'clock +Look for the news that the Guildhall affords. + +GLOUCESTER: +Go, Lovel, with all speed to Doctor Shaw; +Go thou to Friar Penker; bid them both +Meet me within this hour at Baynard's Castle. +Now will I in, to take some privy order, +To draw the brats of Clarence out of sight; +And to give notice, that no manner of person +At any time have recourse unto the princes. + +Scrivener: +This is the indictment of the good Lord Hastings; +Which in a set hand fairly is engross'd, +That it may be this day read over in Paul's. +And mark how well the sequel hangs together: +Eleven hours I spent to write it over, +For yesternight by Catesby was it brought me; +The precedent was full as long a-doing: +And yet within these five hours lived Lord Hastings, +Untainted, unexamined, free, at liberty +Here's a good world the while! Why who's so gross, +That seeth not this palpable device? +Yet who's so blind, but says he sees it not? +Bad is the world; and all will come to nought, +When such bad dealings must be seen in thought. + +GLOUCESTER: +How now, my lord, what say the citizens? + +BUCKINGHAM: +Now, by the holy mother of our Lord, +The citizens are mum and speak not a word. + +GLOUCESTER: +Touch'd you the bastardy of Edward's children? + +BUCKINGHAM: +I did; with his contract with Lady Lucy, +And his contract by deputy in France; +The insatiate greediness of his desires, +And his enforcement of the city wives; +His tyranny for trifles; his own bastardy, +As being got, your father then in France, +His resemblance, being not like the duke; +Withal I did infer your lineaments, +Being the right idea of your father, +Both in your form and nobleness of mind; +Laid open all your victories in Scotland, +Your dicipline in war, wisdom in peace, +Your bounty, virtue, fair humility: +Indeed, left nothing fitting for the purpose +Untouch'd, or slightly handled, in discourse +And when mine oratory grew to an end +I bid them that did love their country's good +Cry 'God save Richard, England's royal king!' + +GLOUCESTER: +Ah! and did they so? + +BUCKINGHAM: +No, so God help me, they spake not a word; +But, like dumb statues or breathing stones, +Gazed each on other, and look'd deadly pale. +Which when I saw, I reprehended them; +And ask'd the mayor what meant this wilful silence: +His answer was, the people were not wont +To be spoke to but by the recorder. +Then he was urged to tell my tale again, +'Thus saith the duke, thus hath the duke inferr'd;' +But nothing spake in warrant from himself. +When he had done, some followers of mine own, +At the lower end of the hall, hurl'd up their caps, +And some ten voices cried 'God save King Richard!' +And thus I took the vantage of those few, +'Thanks, gentle citizens and friends,' quoth I; +'This general applause and loving shout +Argues your wisdoms and your love to Richard:' +And even here brake off, and came away. + +GLOUCESTER: +What tongueless blocks were they! would not they speak? + +BUCKINGHAM: +No, by my troth, my lord. + +GLOUCESTER: +Will not the mayor then and his brethren come? + +BUCKINGHAM: +The mayor is here at hand: intend some fear; +Be not you spoke with, but by mighty suit: +And look you get a prayer-book in your hand, +And stand betwixt two churchmen, good my lord; +For on that ground I'll build a holy descant: +And be not easily won to our request: +Play the maid's part, still answer nay, and take it. + +GLOUCESTER: +I go; and if you plead as well for them +As I can say nay to thee for myself, +No doubt well bring it to a happy issue. + +BUCKINGHAM: +Go, go, up to the leads; the lord mayor knocks. +Welcome my lord; I dance attendance here; +I think the duke will not be spoke withal. +Here comes his servant: how now, Catesby, +What says he? + +CATESBY: +My lord: he doth entreat your grace; +To visit him to-morrow or next day: +He is within, with two right reverend fathers, +Divinely bent to meditation; +And no worldly suit would he be moved, +To draw him from his holy exercise. + +BUCKINGHAM: +Return, good Catesby, to thy lord again; +Tell him, myself, the mayor and citizens, +In deep designs and matters of great moment, +No less importing than our general good, +Are come to have some conference with his grace. + +CATESBY: +I'll tell him what you say, my lord. + +BUCKINGHAM: +Ah, ha, my lord, this prince is not an Edward! +He is not lolling on a lewd day-bed, +But on his knees at meditation; +Not dallying with a brace of courtezans, +But meditating with two deep divines; +Not sleeping, to engross his idle body, +But praying, to enrich his watchful soul: +Happy were England, would this gracious prince +Take on himself the sovereignty thereof: +But, sure, I fear, we shall ne'er win him to it. + +Lord Mayor: +Marry, God forbid his grace should say us nay! + +BUCKINGHAM: +I fear he will. +How now, Catesby, what says your lord? + +CATESBY: +My lord, +He wonders to what end you have assembled +Such troops of citizens to speak with him, +His grace not being warn'd thereof before: +My lord, he fears you mean no good to him. + +BUCKINGHAM: +Sorry I am my noble cousin should +Suspect me, that I mean no good to him: +By heaven, I come in perfect love to him; +And so once more return and tell his grace. +When holy and devout religious men +Are at their beads, 'tis hard to draw them thence, +So sweet is zealous contemplation. + +Lord Mayor: +See, where he stands between two clergymen! + +BUCKINGHAM: +Two props of virtue for a Christian prince, +To stay him from the fall of vanity: +And, see, a book of prayer in his hand, +True ornaments to know a holy man. +Famous Plantagenet, most gracious prince, +Lend favourable ears to our request; +And pardon us the interruption +Of thy devotion and right Christian zeal. + +GLOUCESTER: +My lord, there needs no such apology: +I rather do beseech you pardon me, +Who, earnest in the service of my God, +Neglect the visitation of my friends. +But, leaving this, what is your grace's pleasure? + +BUCKINGHAM: +Even that, I hope, which pleaseth God above, +And all good men of this ungovern'd isle. + +GLOUCESTER: +I do suspect I have done some offence +That seems disgracious in the city's eyes, +And that you come to reprehend my ignorance. + +BUCKINGHAM: +You have, my lord: would it might please your grace, +At our entreaties, to amend that fault! + +GLOUCESTER: +Else wherefore breathe I in a Christian land? + +BUCKINGHAM: +Then know, it is your fault that you resign +The supreme seat, the throne majestical, +The scepter'd office of your ancestors, +Your state of fortune and your due of birth, +The lineal glory of your royal house, +To the corruption of a blemished stock: +Whilst, in the mildness of your sleepy thoughts, +Which here we waken to our country's good, +This noble isle doth want her proper limbs; +Her face defaced with scars of infamy, +Her royal stock graft with ignoble plants, +And almost shoulder'd in the swallowing gulf +Of blind forgetfulness and dark oblivion. +Which to recure, we heartily solicit +Your gracious self to take on you the charge +And kingly government of this your land, +Not as protector, steward, substitute, +Or lowly factor for another's gain; +But as successively from blood to blood, +Your right of birth, your empery, your own. +For this, consorted with the citizens, +Your very worshipful and loving friends, +And by their vehement instigation, +In this just suit come I to move your grace. + +GLOUCESTER: +I know not whether to depart in silence, +Or bitterly to speak in your reproof. +Best fitteth my degree or your condition +If not to answer, you might haply think +Tongue-tied ambition, not replying, yielded +To bear the golden yoke of sovereignty, +Which fondly you would here impose on me; +If to reprove you for this suit of yours, +So season'd with your faithful love to me. +Then, on the other side, I cheque'd my friends. +Therefore, to speak, and to avoid the first, +And then, in speaking, not to incur the last, +Definitively thus I answer you. +Your love deserves my thanks; but my desert +Unmeritable shuns your high request. +First if all obstacles were cut away, +And that my path were even to the crown, +As my ripe revenue and due by birth +Yet so much is my poverty of spirit, +So mighty and so many my defects, +As I had rather hide me from my greatness, +Being a bark to brook no mighty sea, +Than in my greatness covet to be hid, +And in the vapour of my glory smother'd. +But, God be thank'd, there's no need of me, +And much I need to help you, if need were; +The royal tree hath left us royal fruit, +Which, mellow'd by the stealing hours of time, +Will well become the seat of majesty, +And make, no doubt, us happy by his reign. +On him I lay what you would lay on me, +The right and fortune of his happy stars; +Which God defend that I should wring from him! + +BUCKINGHAM: +My lord, this argues conscience in your grace; +But the respects thereof are nice and trivial, +All circumstances well considered. +You say that Edward is your brother's son: +So say we too, but not by Edward's wife; +For first he was contract to Lady Lucy-- +Your mother lives a witness to that vow-- +And afterward by substitute betroth'd +To Bona, sister to the King of France. +These both put by a poor petitioner, +A care-crazed mother of a many children, +A beauty-waning and distressed widow, +Even in the afternoon of her best days, +Made prize and purchase of his lustful eye, +Seduced the pitch and height of all his thoughts +To base declension and loathed bigamy +By her, in his unlawful bed, he got +This Edward, whom our manners term the prince. +More bitterly could I expostulate, +Save that, for reverence to some alive, +I give a sparing limit to my tongue. +Then, good my lord, take to your royal self +This proffer'd benefit of dignity; +If non to bless us and the land withal, +Yet to draw forth your noble ancestry +From the corruption of abusing times, +Unto a lineal true-derived course. + +Lord Mayor: +Do, good my lord, your citizens entreat you. + +BUCKINGHAM: +Refuse not, mighty lord, this proffer'd love. + +CATESBY: +O, make them joyful, grant their lawful suit! + +GLOUCESTER: +Alas, why would you heap these cares on me? +I am unfit for state and majesty; +I do beseech you, take it not amiss; +I cannot nor I will not yield to you. + +BUCKINGHAM: +If you refuse it,--as, in love and zeal, +Loath to depose the child, Your brother's son; +As well we know your tenderness of heart +And gentle, kind, effeminate remorse, +Which we have noted in you to your kin, +And egally indeed to all estates,-- +Yet whether you accept our suit or no, +Your brother's son shall never reign our king; +But we will plant some other in the throne, +To the disgrace and downfall of your house: +And in this resolution here we leave you.-- +Come, citizens: 'zounds! I'll entreat no more. + +GLOUCESTER: +O, do not swear, my lord of Buckingham. + +CATESBY: +Call them again, my lord, and accept their suit. + +ANOTHER: +Do, good my lord, lest all the land do rue it. + +GLOUCESTER: +Would you enforce me to a world of care? +Well, call them again. I am not made of stone, +But penetrable to your. kind entreats, +Albeit against my conscience and my soul. +Cousin of Buckingham, and you sage, grave men, +Since you will buckle fortune on my back, +To bear her burthen, whether I will or no, +I must have patience to endure the load: +But if black scandal or foul-faced reproach +Attend the sequel of your imposition, +Your mere enforcement shall acquittance me +From all the impure blots and stains thereof; +For God he knows, and you may partly see, +How far I am from the desire thereof. + +Lord Mayor: +God bless your grace! we see it, and will say it. + +GLOUCESTER: +In saying so, you shall but say the truth. + +BUCKINGHAM: +Then I salute you with this kingly title: +Long live Richard, England's royal king! + +Lord Mayor: +Amen. + +BUCKINGHAM: +To-morrow will it please you to be crown'd? + +GLOUCESTER: +Even when you please, since you will have it so. + +BUCKINGHAM: +To-morrow, then, we will attend your grace: +And so most joyfully we take our leave. + +GLOUCESTER: +Come, let us to our holy task again. +Farewell, good cousin; farewell, gentle friends. + +DUCHESS OF YORK: +Who meets us here? my niece Plantagenet +Led in the hand of her kind aunt of Gloucester? +Now, for my life, she's wandering to the Tower, +On pure heart's love to greet the tender princes. +Daughter, well met. + +LADY ANNE: +God give your graces both +A happy and a joyful time of day! + +QUEEN ELIZABETH: +As much to you, good sister! Whither away? + +LADY ANNE: +No farther than the Tower; and, as I guess, +Upon the like devotion as yourselves, +To gratulate the gentle princes there. + +QUEEN ELIZABETH: +Kind sister, thanks: we'll enter all together. +And, in good time, here the lieutenant comes. +Master lieutenant, pray you, by your leave, +How doth the prince, and my young son of York? + +BRAKENBURY: +Right well, dear madam. By your patience, +I may not suffer you to visit them; +The king hath straitly charged the contrary. + +QUEEN ELIZABETH: +The king! why, who's that? + +BRAKENBURY: +I cry you mercy: I mean the lord protector. + +QUEEN ELIZABETH: +The Lord protect him from that kingly title! +Hath he set bounds betwixt their love and me? +I am their mother; who should keep me from them? + +DUCHESS OF YORK: +I am their fathers mother; I will see them. + +LADY ANNE: +Their aunt I am in law, in love their mother: +Then bring me to their sights; I'll bear thy blame +And take thy office from thee, on my peril. + +BRAKENBURY: +No, madam, no; I may not leave it so: +I am bound by oath, and therefore pardon me. + +LORD STANLEY: +Let me but meet you, ladies, one hour hence, +And I'll salute your grace of York as mother, +And reverend looker on, of two fair queens. +Come, madam, you must straight to Westminster, +There to be crowned Richard's royal queen. + +QUEEN ELIZABETH: +O, cut my lace in sunder, that my pent heart +May have some scope to beat, or else I swoon +With this dead-killing news! + +LADY ANNE: +Despiteful tidings! O unpleasing news! + +DORSET: +Be of good cheer: mother, how fares your grace? + +QUEEN ELIZABETH: +O Dorset, speak not to me, get thee hence! +Death and destruction dog thee at the heels; +Thy mother's name is ominous to children. +If thou wilt outstrip death, go cross the seas, +And live with Richmond, from the reach of hell +Go, hie thee, hie thee from this slaughter-house, +Lest thou increase the number of the dead; +And make me die the thrall of Margaret's curse, +Nor mother, wife, nor England's counted queen. + +LORD STANLEY: +Full of wise care is this your counsel, madam. +Take all the swift advantage of the hours; +You shall have letters from me to my son +To meet you on the way, and welcome you. +Be not ta'en tardy by unwise delay. + +DUCHESS OF YORK: +O ill-dispersing wind of misery! +O my accursed womb, the bed of death! +A cockatrice hast thou hatch'd to the world, +Whose unavoided eye is murderous. + +LORD STANLEY: +Come, madam, come; I in all haste was sent. + +LADY ANNE: +And I in all unwillingness will go. +I would to God that the inclusive verge +Of golden metal that must round my brow +Were red-hot steel, to sear me to the brain! +Anointed let me be with deadly venom, +And die, ere men can say, God save the queen! + +QUEEN ELIZABETH: +Go, go, poor soul, I envy not thy glory +To feed my humour, wish thyself no harm. + +LADY ANNE: +No! why? When he that is my husband now +Came to me, as I follow'd Henry's corse, +When scarce the blood was well wash'd from his hands +Which issued from my other angel husband +And that dead saint which then I weeping follow'd; +O, when, I say, I look'd on Richard's face, +This was my wish: 'Be thou,' quoth I, ' accursed, +For making me, so young, so old a widow! +And, when thou wed'st, let sorrow haunt thy bed; +And be thy wife--if any be so mad-- +As miserable by the life of thee +As thou hast made me by my dear lord's death! +Lo, ere I can repeat this curse again, +Even in so short a space, my woman's heart +Grossly grew captive to his honey words +And proved the subject of my own soul's curse, +Which ever since hath kept my eyes from rest; +For never yet one hour in his bed +Have I enjoy'd the golden dew of sleep, +But have been waked by his timorous dreams. +Besides, he hates me for my father Warwick; +And will, no doubt, shortly be rid of me. + +QUEEN ELIZABETH: +Poor heart, adieu! I pity thy complaining. + +LADY ANNE: +No more than from my soul I mourn for yours. + +QUEEN ELIZABETH: +Farewell, thou woful welcomer of glory! + +LADY ANNE: +Adieu, poor soul, that takest thy leave of it! + +DUCHESS OF YORK: + +QUEEN ELIZABETH: +Stay, yet look back with me unto the Tower. +Pity, you ancient stones, those tender babes +Whom envy hath immured within your walls! +Rough cradle for such little pretty ones! +Rude ragged nurse, old sullen playfellow +For tender princes, use my babies well! +So foolish sorrow bids your stones farewell. + +KING RICHARD III: +Stand all apart Cousin of Buckingham! + +BUCKINGHAM: +My gracious sovereign? + +KING RICHARD III: +Give me thy hand. +Thus high, by thy advice +And thy assistance, is King Richard seated; +But shall we wear these honours for a day? +Or shall they last, and we rejoice in them? + +BUCKINGHAM: +Still live they and for ever may they last! + +KING RICHARD III: +O Buckingham, now do I play the touch, +To try if thou be current gold indeed +Young Edward lives: think now what I would say. + +BUCKINGHAM: +Say on, my loving lord. + +KING RICHARD III: +Why, Buckingham, I say, I would be king, + +BUCKINGHAM: +Why, so you are, my thrice renowned liege. + +KING RICHARD III: +Ha! am I king? 'tis so: but Edward lives. + +BUCKINGHAM: +True, noble prince. + +KING RICHARD III: +O bitter consequence, +That Edward still should live! 'True, noble prince!' +Cousin, thou wert not wont to be so dull: +Shall I be plain? I wish the bastards dead; +And I would have it suddenly perform'd. +What sayest thou? speak suddenly; be brief. + +BUCKINGHAM: +Your grace may do your pleasure. + +KING RICHARD III: +Tut, tut, thou art all ice, thy kindness freezeth: +Say, have I thy consent that they shall die? + +BUCKINGHAM: +Give me some breath, some little pause, my lord +Before I positively herein: +I will resolve your grace immediately. + +CATESBY: + +KING RICHARD III: +I will converse with iron-witted fools +And unrespective boys: none are for me +That look into me with considerate eyes: +High-reaching Buckingham grows circumspect. +Boy! + +Page: +My lord? + +KING RICHARD III: +Know'st thou not any whom corrupting gold +Would tempt unto a close exploit of death? + +Page: +My lord, I know a discontented gentleman, +Whose humble means match not his haughty mind: +Gold were as good as twenty orators, +And will, no doubt, tempt him to any thing. + +KING RICHARD III: +What is his name? + +Page: +His name, my lord, is Tyrrel. + +KING RICHARD III: +I partly know the man: go, call him hither. +The deep-revolving witty Buckingham +No more shall be the neighbour to my counsel: +Hath he so long held out with me untired, +And stops he now for breath? +How now! what news with you? + +STANLEY: +My lord, I hear the Marquis Dorset's fled +To Richmond, in those parts beyond the sea +Where he abides. + +KING RICHARD III: +Catesby! + +CATESBY: +My lord? + +KING RICHARD III: +Rumour it abroad +That Anne, my wife, is sick and like to die: +I will take order for her keeping close. +Inquire me out some mean-born gentleman, +Whom I will marry straight to Clarence' daughter: +The boy is foolish, and I fear not him. +Look, how thou dream'st! I say again, give out +That Anne my wife is sick and like to die: +About it; for it stands me much upon, +To stop all hopes whose growth may damage me. +I must be married to my brother's daughter, +Or else my kingdom stands on brittle glass. +Murder her brothers, and then marry her! +Uncertain way of gain! But I am in +So far in blood that sin will pluck on sin: +Tear-falling pity dwells not in this eye. +Is thy name Tyrrel? + +TYRREL: +James Tyrrel, and your most obedient subject. + +KING RICHARD III: +Art thou, indeed? + +TYRREL: +Prove me, my gracious sovereign. + +KING RICHARD III: +Darest thou resolve to kill a friend of mine? + +TYRREL: +Ay, my lord; +But I had rather kill two enemies. + +KING RICHARD III: +Why, there thou hast it: two deep enemies, +Foes to my rest and my sweet sleep's disturbers +Are they that I would have thee deal upon: +Tyrrel, I mean those bastards in the Tower. + +TYRREL: +Let me have open means to come to them, +And soon I'll rid you from the fear of them. + +KING RICHARD III: +Thou sing'st sweet music. Hark, come hither, Tyrrel +Go, by this token: rise, and lend thine ear: +There is no more but so: say it is done, +And I will love thee, and prefer thee too. + +TYRREL: +'Tis done, my gracious lord. + +KING RICHARD III: +Shall we hear from thee, Tyrrel, ere we sleep? + +TYRREL: +Ye shall, my Lord. + +BUCKINGHAM: +My Lord, I have consider'd in my mind +The late demand that you did sound me in. + +KING RICHARD III: +Well, let that pass. Dorset is fled to Richmond. + +BUCKINGHAM: +I hear that news, my lord. + +KING RICHARD III: +Stanley, he is your wife's son well, look to it. + +BUCKINGHAM: +My lord, I claim your gift, my due by promise, +For which your honour and your faith is pawn'd; +The earldom of Hereford and the moveables +The which you promised I should possess. + +KING RICHARD III: +Stanley, look to your wife; if she convey +Letters to Richmond, you shall answer it. + +BUCKINGHAM: +What says your highness to my just demand? + +KING RICHARD III: +As I remember, Henry the Sixth +Did prophesy that Richmond should be king, +When Richmond was a little peevish boy. +A king, perhaps, perhaps,-- + +BUCKINGHAM: +My lord! + +KING RICHARD III: +How chance the prophet could not at that time +Have told me, I being by, that I should kill him? + +BUCKINGHAM: +My lord, your promise for the earldom,-- + +KING RICHARD III: +Richmond! When last I was at Exeter, +The mayor in courtesy show'd me the castle, +And call'd it Rougemont: at which name I started, +Because a bard of Ireland told me once +I should not live long after I saw Richmond. + +BUCKINGHAM: +My Lord! + +KING RICHARD III: +Ay, what's o'clock? + +BUCKINGHAM: +I am thus bold to put your grace in mind +Of what you promised me. + +KING RICHARD III: +Well, but what's o'clock? + +BUCKINGHAM: +Upon the stroke of ten. + +KING RICHARD III: +Well, let it strike. + +BUCKINGHAM: +Why let it strike? + +KING RICHARD III: +Because that, like a Jack, thou keep'st the stroke +Betwixt thy begging and my meditation. +I am not in the giving vein to-day. + +BUCKINGHAM: +Why, then resolve me whether you will or no. + +KING RICHARD III: +Tut, tut, +Thou troublest me; am not in the vein. + +BUCKINGHAM: +Is it even so? rewards he my true service +With such deep contempt made I him king for this? +O, let me think on Hastings, and be gone +To Brecknock, while my fearful head is on! + +TYRREL: +The tyrannous and bloody deed is done. +The most arch of piteous massacre +That ever yet this land was guilty of. +Dighton and Forrest, whom I did suborn +To do this ruthless piece of butchery, +Although they were flesh'd villains, bloody dogs, +Melting with tenderness and kind compassion +Wept like two children in their deaths' sad stories. +'Lo, thus' quoth Dighton, 'lay those tender babes:' +'Thus, thus,' quoth Forrest, 'girdling one another +Within their innocent alabaster arms: +Their lips were four red roses on a stalk, +Which in their summer beauty kiss'd each other. +A book of prayers on their pillow lay; +Which once,' quoth Forrest, 'almost changed my mind; +But O! the devil'--there the villain stopp'd +Whilst Dighton thus told on: 'We smothered +The most replenished sweet work of nature, +That from the prime creation e'er she framed.' +Thus both are gone with conscience and remorse; +They could not speak; and so I left them both, +To bring this tidings to the bloody king. +And here he comes. +All hail, my sovereign liege! + +KING RICHARD III: +Kind Tyrrel, am I happy in thy news? + +TYRREL: +If to have done the thing you gave in charge +Beget your happiness, be happy then, +For it is done, my lord. + +KING RICHARD III: +But didst thou see them dead? + +TYRREL: +I did, my lord. + +KING RICHARD III: +And buried, gentle Tyrrel? + +TYRREL: +The chaplain of the Tower hath buried them; +But how or in what place I do not know. + +KING RICHARD III: +Come to me, Tyrrel, soon at after supper, +And thou shalt tell the process of their death. +Meantime, but think how I may do thee good, +And be inheritor of thy desire. +Farewell till soon. +The son of Clarence have I pent up close; +His daughter meanly have I match'd in marriage; +The sons of Edward sleep in Abraham's bosom, +And Anne my wife hath bid the world good night. +Now, for I know the Breton Richmond aims +At young Elizabeth, my brother's daughter, +And, by that knot, looks proudly o'er the crown, +To her I go, a jolly thriving wooer. + +CATESBY: +My lord! + +KING RICHARD III: +Good news or bad, that thou comest in so bluntly? + +CATESBY: +Bad news, my lord: Ely is fled to Richmond; +And Buckingham, back'd with the hardy Welshmen, +Is in the field, and still his power increaseth. + +KING RICHARD III: +Ely with Richmond troubles me more near +Than Buckingham and his rash-levied army. +Come, I have heard that fearful commenting +Is leaden servitor to dull delay; +Delay leads impotent and snail-paced beggary +Then fiery expedition be my wing, +Jove's Mercury, and herald for a king! +Come, muster men: my counsel is my shield; +We must be brief when traitors brave the field. + +QUEEN MARGARET: +So, now prosperity begins to mellow +And drop into the rotten mouth of death. +Here in these confines slily have I lurk'd, +To watch the waning of mine adversaries. +A dire induction am I witness to, +And will to France, hoping the consequence +Will prove as bitter, black, and tragical. +Withdraw thee, wretched Margaret: who comes here? + +QUEEN ELIZABETH: +Ah, my young princes! ah, my tender babes! +My unblown flowers, new-appearing sweets! +If yet your gentle souls fly in the air +And be not fix'd in doom perpetual, +Hover about me with your airy wings +And hear your mother's lamentation! + +QUEEN MARGARET: +Hover about her; say, that right for right +Hath dimm'd your infant morn to aged night. + +DUCHESS OF YORK: +So many miseries have crazed my voice, +That my woe-wearied tongue is mute and dumb, +Edward Plantagenet, why art thou dead? + +QUEEN MARGARET: +Plantagenet doth quit Plantagenet. +Edward for Edward pays a dying debt. + +QUEEN ELIZABETH: +Wilt thou, O God, fly from such gentle lambs, +And throw them in the entrails of the wolf? +When didst thou sleep when such a deed was done? + +QUEEN MARGARET: +When holy Harry died, and my sweet son. + +DUCHESS OF YORK: +Blind sight, dead life, poor mortal living ghost, +Woe's scene, world's shame, grave's due by life usurp'd, +Brief abstract and record of tedious days, +Rest thy unrest on England's lawful earth, +Unlawfully made drunk with innocents' blood! + +QUEEN ELIZABETH: +O, that thou wouldst as well afford a grave +As thou canst yield a melancholy seat! +Then would I hide my bones, not rest them here. +O, who hath any cause to mourn but I? + +QUEEN MARGARET: +If ancient sorrow be most reverend, +Give mine the benefit of seniory, +And let my woes frown on the upper hand. +If sorrow can admit society, +Tell o'er your woes again by viewing mine: +I had an Edward, till a Richard kill'd him; +I had a Harry, till a Richard kill'd him: +Thou hadst an Edward, till a Richard kill'd him; +Thou hadst a Richard, till a Richard killed him; + +DUCHESS OF YORK: +I had a Richard too, and thou didst kill him; +I had a Rutland too, thou holp'st to kill him. + +QUEEN MARGARET: +Thou hadst a Clarence too, and Richard kill'd him. +From forth the kennel of thy womb hath crept +A hell-hound that doth hunt us all to death: +That dog, that had his teeth before his eyes, +To worry lambs and lap their gentle blood, +That foul defacer of God's handiwork, +That excellent grand tyrant of the earth, +That reigns in galled eyes of weeping souls, +Thy womb let loose, to chase us to our graves. +O upright, just, and true-disposing God, +How do I thank thee, that this carnal cur +Preys on the issue of his mother's body, +And makes her pew-fellow with others' moan! + +DUCHESS OF YORK: +O Harry's wife, triumph not in my woes! +God witness with me, I have wept for thine. + +QUEEN MARGARET: +Bear with me; I am hungry for revenge, +And now I cloy me with beholding it. +Thy Edward he is dead, that stabb'd my Edward: +Thy other Edward dead, to quit my Edward; +Young York he is but boot, because both they +Match not the high perfection of my loss: +Thy Clarence he is dead that kill'd my Edward; +And the beholders of this tragic play, +The adulterate Hastings, Rivers, Vaughan, Grey, +Untimely smother'd in their dusky graves. +Richard yet lives, hell's black intelligencer, +Only reserved their factor, to buy souls +And send them thither: but at hand, at hand, +Ensues his piteous and unpitied end: +Earth gapes, hell burns, fiends roar, saints pray. +To have him suddenly convey'd away. +Cancel his bond of life, dear God, I prey, +That I may live to say, The dog is dead! + +QUEEN ELIZABETH: +O, thou didst prophesy the time would come +That I should wish for thee to help me curse +That bottled spider, that foul bunch-back'd toad! + +QUEEN MARGARET: +I call'd thee then vain flourish of my fortune; +I call'd thee then poor shadow, painted queen; +The presentation of but what I was; +The flattering index of a direful pageant; +One heaved a-high, to be hurl'd down below; +A mother only mock'd with two sweet babes; +A dream of what thou wert, a breath, a bubble, +A sign of dignity, a garish flag, +To be the aim of every dangerous shot, +A queen in jest, only to fill the scene. +Where is thy husband now? where be thy brothers? +Where are thy children? wherein dost thou, joy? +Who sues to thee and cries 'God save the queen'? +Where be the bending peers that flatter'd thee? +Where be the thronging troops that follow'd thee? +Decline all this, and see what now thou art: +For happy wife, a most distressed widow; +For joyful mother, one that wails the name; +For queen, a very caitiff crown'd with care; +For one being sued to, one that humbly sues; +For one that scorn'd at me, now scorn'd of me; +For one being fear'd of all, now fearing one; +For one commanding all, obey'd of none. +Thus hath the course of justice wheel'd about, +And left thee but a very prey to time; +Having no more but thought of what thou wert, +To torture thee the more, being what thou art. +Thou didst usurp my place, and dost thou not +Usurp the just proportion of my sorrow? +Now thy proud neck bears half my burthen'd yoke; +From which even here I slip my weary neck, +And leave the burthen of it all on thee. +Farewell, York's wife, and queen of sad mischance: +These English woes will make me smile in France. + +QUEEN ELIZABETH: +O thou well skill'd in curses, stay awhile, +And teach me how to curse mine enemies! + +QUEEN MARGARET: +Forbear to sleep the nights, and fast the days; +Compare dead happiness with living woe; +Think that thy babes were fairer than they were, +And he that slew them fouler than he is: +Bettering thy loss makes the bad causer worse: +Revolving this will teach thee how to curse. + +QUEEN ELIZABETH: +My words are dull; O, quicken them with thine! + +QUEEN MARGARET: +Thy woes will make them sharp, and pierce like mine. + +DUCHESS OF YORK: +Why should calamity be full of words? + +QUEEN ELIZABETH: +Windy attorneys to their client woes, +Airy succeeders of intestate joys, +Poor breathing orators of miseries! +Let them have scope: though what they do impart +Help not all, yet do they ease the heart. + +DUCHESS OF YORK: +If so, then be not tongue-tied: go with me. +And in the breath of bitter words let's smother +My damned son, which thy two sweet sons smother'd. +I hear his drum: be copious in exclaims. + +KING RICHARD III: +Who intercepts my expedition? + +DUCHESS OF YORK: +O, she that might have intercepted thee, +By strangling thee in her accursed womb +From all the slaughters, wretch, that thou hast done! + +QUEEN ELIZABETH: +Hidest thou that forehead with a golden crown, +Where should be graven, if that right were right, +The slaughter of the prince that owed that crown, +And the dire death of my two sons and brothers? +Tell me, thou villain slave, where are my children? + +DUCHESS OF YORK: +Thou toad, thou toad, where is thy brother Clarence? +And little Ned Plantagenet, his son? + +QUEEN ELIZABETH: +Where is kind Hastings, Rivers, Vaughan, Grey? + +KING RICHARD III: +A flourish, trumpets! strike alarum, drums! +Let not the heavens hear these tell-tale women +Rail on the Lord's enointed: strike, I say! +Either be patient, and entreat me fair, +Or with the clamorous report of war +Thus will I drown your exclamations. + +DUCHESS OF YORK: +Art thou my son? + +KING RICHARD III: +Ay, I thank God, my father, and yourself. + +DUCHESS OF YORK: +Then patiently hear my impatience. + +KING RICHARD III: +Madam, I have a touch of your condition, +Which cannot brook the accent of reproof. + +DUCHESS OF YORK: +O, let me speak! + +KING RICHARD III: +Do then: but I'll not hear. + +DUCHESS OF YORK: +I will be mild and gentle in my speech. + +KING RICHARD III: +And brief, good mother; for I am in haste. + +DUCHESS OF YORK: +Art thou so hasty? I have stay'd for thee, +God knows, in anguish, pain and agony. + +KING RICHARD III: +And came I not at last to comfort you? + +DUCHESS OF YORK: +No, by the holy rood, thou know'st it well, +Thou camest on earth to make the earth my hell. +A grievous burthen was thy birth to me; +Tetchy and wayward was thy infancy; +Thy school-days frightful, desperate, wild, and furious, +Thy prime of manhood daring, bold, and venturous, +Thy age confirm'd, proud, subdued, bloody, +treacherous, +More mild, but yet more harmful, kind in hatred: +What comfortable hour canst thou name, +That ever graced me in thy company? + +KING RICHARD III: +Faith, none, but Humphrey Hour, that call'd +your grace +To breakfast once forth of my company. +If I be so disgracious in your sight, +Let me march on, and not offend your grace. +Strike the drum. + +DUCHESS OF YORK: +I prithee, hear me speak. + +KING RICHARD III: +You speak too bitterly. + +DUCHESS OF YORK: +Hear me a word; +For I shall never speak to thee again. + +KING RICHARD III: +So. + +DUCHESS OF YORK: +Either thou wilt die, by God's just ordinance, +Ere from this war thou turn a conqueror, +Or I with grief and extreme age shall perish +And never look upon thy face again. +Therefore take with thee my most heavy curse; +Which, in the day of battle, tire thee more +Than all the complete armour that thou wear'st! +My prayers on the adverse party fight; +And there the little souls of Edward's children +Whisper the spirits of thine enemies +And promise them success and victory. +Bloody thou art, bloody will be thy end; +Shame serves thy life and doth thy death attend. + +QUEEN ELIZABETH: +Though far more cause, yet much less spirit to curse +Abides in me; I say amen to all. + +KING RICHARD III: +Stay, madam; I must speak a word with you. + +QUEEN ELIZABETH: +I have no more sons of the royal blood +For thee to murder: for my daughters, Richard, +They shall be praying nuns, not weeping queens; +And therefore level not to hit their lives. + +KING RICHARD III: +You have a daughter call'd Elizabeth, +Virtuous and fair, royal and gracious. + +QUEEN ELIZABETH: +And must she die for this? O, let her live, +And I'll corrupt her manners, stain her beauty; +Slander myself as false to Edward's bed; +Throw over her the veil of infamy: +So she may live unscarr'd of bleeding slaughter, +I will confess she was not Edward's daughter. + +KING RICHARD III: +Wrong not her birth, she is of royal blood. + +QUEEN ELIZABETH: +To save her life, I'll say she is not so. + +KING RICHARD III: +Her life is only safest in her birth. + +QUEEN ELIZABETH: +And only in that safety died her brothers. + +KING RICHARD III: +Lo, at their births good stars were opposite. + +QUEEN ELIZABETH: +No, to their lives bad friends were contrary. + +KING RICHARD III: +All unavoided is the doom of destiny. + +QUEEN ELIZABETH: +True, when avoided grace makes destiny: +My babes were destined to a fairer death, +If grace had bless'd thee with a fairer life. + +KING RICHARD III: +You speak as if that I had slain my cousins. + +QUEEN ELIZABETH: +Cousins, indeed; and by their uncle cozen'd +Of comfort, kingdom, kindred, freedom, life. +Whose hand soever lanced their tender hearts, +Thy head, all indirectly, gave direction: +No doubt the murderous knife was dull and blunt +Till it was whetted on thy stone-hard heart, +To revel in the entrails of my lambs. +But that still use of grief makes wild grief tame, +My tongue should to thy ears not name my boys +Till that my nails were anchor'd in thine eyes; +And I, in such a desperate bay of death, +Like a poor bark, of sails and tackling reft, +Rush all to pieces on thy rocky bosom. + +KING RICHARD III: +Madam, so thrive I in my enterprise +And dangerous success of bloody wars, +As I intend more good to you and yours, +Than ever you or yours were by me wrong'd! + +QUEEN ELIZABETH: +What good is cover'd with the face of heaven, +To be discover'd, that can do me good? + +KING RICHARD III: +The advancement of your children, gentle lady. + +QUEEN ELIZABETH: +Up to some scaffold, there to lose their heads? + +KING RICHARD III: +No, to the dignity and height of honour +The high imperial type of this earth's glory. + +QUEEN ELIZABETH: +Flatter my sorrows with report of it; +Tell me what state, what dignity, what honour, +Canst thou demise to any child of mine? + +KING RICHARD III: +Even all I have; yea, and myself and all, +Will I withal endow a child of thine; +So in the Lethe of thy angry soul +Thou drown the sad remembrance of those wrongs +Which thou supposest I have done to thee. + +QUEEN ELIZABETH: +Be brief, lest that be process of thy kindness +Last longer telling than thy kindness' date. + +KING RICHARD III: +Then know, that from my soul I love thy daughter. + +QUEEN ELIZABETH: +My daughter's mother thinks it with her soul. + +KING RICHARD III: +What do you think? + +QUEEN ELIZABETH: +That thou dost love my daughter from thy soul: +So from thy soul's love didst thou love her brothers; +And from my heart's love I do thank thee for it. + +KING RICHARD III: +Be not so hasty to confound my meaning: +I mean, that with my soul I love thy daughter, +And mean to make her queen of England. + +QUEEN ELIZABETH: +Say then, who dost thou mean shall be her king? + +KING RICHARD III: +Even he that makes her queen who should be else? + +QUEEN ELIZABETH: +What, thou? + +KING RICHARD III: +I, even I: what think you of it, madam? + +QUEEN ELIZABETH: +How canst thou woo her? + +KING RICHARD III: +That would I learn of you, +As one that are best acquainted with her humour. + +QUEEN ELIZABETH: +And wilt thou learn of me? + +KING RICHARD III: +Madam, with all my heart. + +QUEEN ELIZABETH: +Send to her, by the man that slew her brothers, +A pair of bleeding-hearts; thereon engrave +Edward and York; then haply she will weep: +Therefore present to her--as sometime Margaret +Did to thy father, steep'd in Rutland's blood,-- +A handkerchief; which, say to her, did drain +The purple sap from her sweet brother's body +And bid her dry her weeping eyes therewith. +If this inducement force her not to love, +Send her a story of thy noble acts; +Tell her thou madest away her uncle Clarence, +Her uncle Rivers; yea, and, for her sake, +Madest quick conveyance with her good aunt Anne. + +KING RICHARD III: +Come, come, you mock me; this is not the way +To win our daughter. + +QUEEN ELIZABETH: +There is no other way +Unless thou couldst put on some other shape, +And not be Richard that hath done all this. + +KING RICHARD III: +Say that I did all this for love of her. + +QUEEN ELIZABETH: +Nay, then indeed she cannot choose but hate thee, +Having bought love with such a bloody spoil. + +KING RICHARD III: +Look, what is done cannot be now amended: +Men shall deal unadvisedly sometimes, +Which after hours give leisure to repent. +If I did take the kingdom from your sons, +To make amends, Ill give it to your daughter. +If I have kill'd the issue of your womb, +To quicken your increase, I will beget +Mine issue of your blood upon your daughter +A grandam's name is little less in love +Than is the doting title of a mother; +They are as children but one step below, +Even of your mettle, of your very blood; +Of an one pain, save for a night of groans +Endured of her, for whom you bid like sorrow. +Your children were vexation to your youth, +But mine shall be a comfort to your age. +The loss you have is but a son being king, +And by that loss your daughter is made queen. +I cannot make you what amends I would, +Therefore accept such kindness as I can. +Dorset your son, that with a fearful soul +Leads discontented steps in foreign soil, +This fair alliance quickly shall call home +To high promotions and great dignity: +The king, that calls your beauteous daughter wife. +Familiarly shall call thy Dorset brother; +Again shall you be mother to a king, +And all the ruins of distressful times +Repair'd with double riches of content. +What! we have many goodly days to see: +The liquid drops of tears that you have shed +Shall come again, transform'd to orient pearl, +Advantaging their loan with interest +Of ten times double gain of happiness. +Go, then my mother, to thy daughter go +Make bold her bashful years with your experience; +Prepare her ears to hear a wooer's tale +Put in her tender heart the aspiring flame +Of golden sovereignty; acquaint the princess +With the sweet silent hours of marriage joys +And when this arm of mine hath chastised +The petty rebel, dull-brain'd Buckingham, +Bound with triumphant garlands will I come +And lead thy daughter to a conqueror's bed; +To whom I will retail my conquest won, +And she shall be sole victress, Caesar's Caesar. + +QUEEN ELIZABETH: +What were I best to say? her father's brother +Would be her lord? or shall I say, her uncle? +Or, he that slew her brothers and her uncles? +Under what title shall I woo for thee, +That God, the law, my honour and her love, +Can make seem pleasing to her tender years? + +KING RICHARD III: +Infer fair England's peace by this alliance. + +QUEEN ELIZABETH: +Which she shall purchase with still lasting war. + +KING RICHARD III: +Say that the king, which may command, entreats. + +QUEEN ELIZABETH: +That at her hands which the king's King forbids. + +KING RICHARD III: +Say, she shall be a high and mighty queen. + +QUEEN ELIZABETH: +To wail the tide, as her mother doth. + +KING RICHARD III: +Say, I will love her everlastingly. + +QUEEN ELIZABETH: +But how long shall that title 'ever' last? + +KING RICHARD III: +Sweetly in force unto her fair life's end. + +QUEEN ELIZABETH: +But how long fairly shall her sweet lie last? + +KING RICHARD III: +So long as heaven and nature lengthens it. + +QUEEN ELIZABETH: +So long as hell and Richard likes of it. + +KING RICHARD III: +Say, I, her sovereign, am her subject love. + +QUEEN ELIZABETH: +But she, your subject, loathes such sovereignty. + +KING RICHARD III: +Be eloquent in my behalf to her. + +QUEEN ELIZABETH: +An honest tale speeds best being plainly told. + +KING RICHARD III: +Then in plain terms tell her my loving tale. + +QUEEN ELIZABETH: +Plain and not honest is too harsh a style. + +KING RICHARD III: +Your reasons are too shallow and too quick. + +QUEEN ELIZABETH: +O no, my reasons are too deep and dead; +Too deep and dead, poor infants, in their grave. + +KING RICHARD III: +Harp not on that string, madam; that is past. + +QUEEN ELIZABETH: +Harp on it still shall I till heart-strings break. + +KING RICHARD III: +Now, by my George, my garter, and my crown,-- + +QUEEN ELIZABETH: +Profaned, dishonour'd, and the third usurp'd. + +KING RICHARD III: +I swear-- + +QUEEN ELIZABETH: +By nothing; for this is no oath: +The George, profaned, hath lost his holy honour; +The garter, blemish'd, pawn'd his knightly virtue; +The crown, usurp'd, disgraced his kingly glory. +if something thou wilt swear to be believed, +Swear then by something that thou hast not wrong'd. + +KING RICHARD III: +Now, by the world-- + +QUEEN ELIZABETH: +'Tis full of thy foul wrongs. + +KING RICHARD III: +My father's death-- + +QUEEN ELIZABETH: +Thy life hath that dishonour'd. + +KING RICHARD III: +Then, by myself-- + +QUEEN ELIZABETH: +Thyself thyself misusest. + +KING RICHARD III: +Why then, by God-- + +QUEEN ELIZABETH: +God's wrong is most of all. +If thou hadst fear'd to break an oath by Him, +The unity the king thy brother made +Had not been broken, nor my brother slain: +If thou hadst fear'd to break an oath by Him, +The imperial metal, circling now thy brow, +Had graced the tender temples of my child, +And both the princes had been breathing here, +Which now, two tender playfellows to dust, +Thy broken faith hath made a prey for worms. +What canst thou swear by now? + +KING RICHARD III: +The time to come. + +QUEEN ELIZABETH: +That thou hast wronged in the time o'erpast; +For I myself have many tears to wash +Hereafter time, for time past wrong'd by thee. +The children live, whose parents thou hast +slaughter'd, +Ungovern'd youth, to wail it in their age; +The parents live, whose children thou hast butcher'd, +Old wither'd plants, to wail it with their age. +Swear not by time to come; for that thou hast +Misused ere used, by time misused o'erpast. + +KING RICHARD III: +As I intend to prosper and repent, +So thrive I in my dangerous attempt +Of hostile arms! myself myself confound! +Heaven and fortune bar me happy hours! +Day, yield me not thy light; nor, night, thy rest! +Be opposite all planets of good luck +To my proceedings, if, with pure heart's love, +Immaculate devotion, holy thoughts, +I tender not thy beauteous princely daughter! +In her consists my happiness and thine; +Without her, follows to this land and me, +To thee, herself, and many a Christian soul, +Death, desolation, ruin and decay: +It cannot be avoided but by this; +It will not be avoided but by this. +Therefore, good mother,--I must can you so-- +Be the attorney of my love to her: +Plead what I will be, not what I have been; +Not my deserts, but what I will deserve: +Urge the necessity and state of times, +And be not peevish-fond in great designs. + +QUEEN ELIZABETH: +Shall I be tempted of the devil thus? + +KING RICHARD III: +Ay, if the devil tempt thee to do good. + +QUEEN ELIZABETH: +Shall I forget myself to be myself? + +KING RICHARD III: +Ay, if yourself's remembrance wrong yourself. + +QUEEN ELIZABETH: +But thou didst kill my children. + +KING RICHARD III: +But in your daughter's womb I bury them: +Where in that nest of spicery they shall breed +Selves of themselves, to your recomforture. + +QUEEN ELIZABETH: +Shall I go win my daughter to thy will? + +KING RICHARD III: +And be a happy mother by the deed. + +QUEEN ELIZABETH: +I go. Write to me very shortly. +And you shall understand from me her mind. + +KING RICHARD III: +Bear her my true love's kiss; and so, farewell. +Relenting fool, and shallow, changing woman! +How now! what news? + +RATCLIFF: +My gracious sovereign, on the western coast +Rideth a puissant navy; to the shore +Throng many doubtful hollow-hearted friends, +Unarm'd, and unresolved to beat them back: +'Tis thought that Richmond is their admiral; +And there they hull, expecting but the aid +Of Buckingham to welcome them ashore. + +KING RICHARD III: +Some light-foot friend post to the Duke of Norfolk: +Ratcliff, thyself, or Catesby; where is he? + +CATESBY: +Here, my lord. + +KING RICHARD III: +Fly to the duke: +Post thou to Salisbury +When thou comest thither-- +Dull, unmindful villain, +Why stand'st thou still, and go'st not to the duke? + +CATESBY: +First, mighty sovereign, let me know your mind, +What from your grace I shall deliver to him. + +KING RICHARD III: +O, true, good Catesby: bid him levy straight +The greatest strength and power he can make, +And meet me presently at Salisbury. + +CATESBY: +I go. + +RATCLIFF: +What is't your highness' pleasure I shall do at +Salisbury? + +KING RICHARD III: +Why, what wouldst thou do there before I go? + +RATCLIFF: +Your highness told me I should post before. + +KING RICHARD III: +My mind is changed, sir, my mind is changed. +How now, what news with you? + +STANLEY: +None good, my lord, to please you with the hearing; +Nor none so bad, but it may well be told. + +KING RICHARD III: +Hoyday, a riddle! neither good nor bad! +Why dost thou run so many mile about, +When thou mayst tell thy tale a nearer way? +Once more, what news? + +STANLEY: +Richmond is on the seas. + +KING RICHARD III: +There let him sink, and be the seas on him! +White-liver'd runagate, what doth he there? + +STANLEY: +I know not, mighty sovereign, but by guess. + +KING RICHARD III: +Well, sir, as you guess, as you guess? + +STANLEY: +Stirr'd up by Dorset, Buckingham, and Ely, +He makes for England, there to claim the crown. + +KING RICHARD III: +Is the chair empty? is the sword unsway'd? +Is the king dead? the empire unpossess'd? +What heir of York is there alive but we? +And who is England's king but great York's heir? +Then, tell me, what doth he upon the sea? + +STANLEY: +Unless for that, my liege, I cannot guess. + +KING RICHARD III: +Unless for that he comes to be your liege, +You cannot guess wherefore the Welshman comes. +Thou wilt revolt, and fly to him, I fear. + +STANLEY: +No, mighty liege; therefore mistrust me not. + +KING RICHARD III: +Where is thy power, then, to beat him back? +Where are thy tenants and thy followers? +Are they not now upon the western shore. +Safe-conducting the rebels from their ships! + +STANLEY: +No, my good lord, my friends are in the north. + +KING RICHARD III: +Cold friends to Richard: what do they in the north, +When they should serve their sovereign in the west? + +STANLEY: +They have not been commanded, mighty sovereign: +Please it your majesty to give me leave, +I'll muster up my friends, and meet your grace +Where and what time your majesty shall please. + +KING RICHARD III: +Ay, ay. thou wouldst be gone to join with Richmond: +I will not trust you, sir. + +STANLEY: +Most mighty sovereign, +You have no cause to hold my friendship doubtful: +I never was nor never will be false. + +KING RICHARD III: +Well, +Go muster men; but, hear you, leave behind +Your son, George Stanley: look your faith be firm. +Or else his head's assurance is but frail. + +STANLEY: +So deal with him as I prove true to you. + +Messenger: +My gracious sovereign, now in Devonshire, +As I by friends am well advertised, +Sir Edward Courtney, and the haughty prelate +Bishop of Exeter, his brother there, +With many more confederates, are in arms. + +Second Messenger: +My liege, in Kent the Guildfords are in arms; +And every hour more competitors +Flock to their aid, and still their power increaseth. + +Third Messenger: +My lord, the army of the Duke of Buckingham-- + +KING RICHARD III: +Out on you, owls! nothing but songs of death? +Take that, until thou bring me better news. + +Third Messenger: +The news I have to tell your majesty +Is, that by sudden floods and fall of waters, +Buckingham's army is dispersed and scatter'd; +And he himself wander'd away alone, +No man knows whither. + +KING RICHARD III: +I cry thee mercy: +There is my purse to cure that blow of thine. +Hath any well-advised friend proclaim'd +Reward to him that brings the traitor in? + +Third Messenger: +Such proclamation hath been made, my liege. + +Fourth Messenger: +Sir Thomas Lovel and Lord Marquis Dorset, +'Tis said, my liege, in Yorkshire are in arms. +Yet this good comfort bring I to your grace, +The Breton navy is dispersed by tempest: +Richmond, in Yorkshire, sent out a boat +Unto the shore, to ask those on the banks +If they were his assistants, yea or no; +Who answer'd him, they came from Buckingham. +Upon his party: he, mistrusting them, +Hoisted sail and made away for Brittany. + +KING RICHARD III: +March on, march on, since we are up in arms; +If not to fight with foreign enemies, +Yet to beat down these rebels here at home. + +CATESBY: +My liege, the Duke of Buckingham is taken; +That is the best news: that the Earl of Richmond +Is with a mighty power landed at Milford, +Is colder tidings, yet they must be told. + +KING RICHARD III: +Away towards Salisbury! while we reason here, +A royal battle might be won and lost +Some one take order Buckingham be brought +To Salisbury; the rest march on with me. + +DERBY: +Sir Christopher, tell Richmond this from me: +That in the sty of this most bloody boar +My son George Stanley is frank'd up in hold: +If I revolt, off goes young George's head; +The fear of that withholds my present aid. +But, tell me, where is princely Richmond now? + +CHRISTOPHER: +At Pembroke, or at Harford-west, in Wales. + +DERBY: +What men of name resort to him? + +CHRISTOPHER: +Sir Walter Herbert, a renowned soldier; +Sir Gilbert Talbot, Sir William Stanley; +Oxford, redoubted Pembroke, Sir James Blunt, +And Rice ap Thomas with a valiant crew; +And many more of noble fame and worth: +And towards London they do bend their course, +If by the way they be not fought withal. + +DERBY: +Return unto thy lord; commend me to him: +Tell him the queen hath heartily consented +He shall espouse Elizabeth her daughter. +These letters will resolve him of my mind. Farewell. + +BUCKINGHAM: +Will not King Richard let me speak with him? + +Sheriff: +No, my good lord; therefore be patient. + +BUCKINGHAM: +Hastings, and Edward's children, Rivers, Grey, +Holy King Henry, and thy fair son Edward, +Vaughan, and all that have miscarried +By underhand corrupted foul injustice, +If that your moody discontented souls +Do through the clouds behold this present hour, +Even for revenge mock my destruction! +This is All-Souls' day, fellows, is it not? + +Sheriff: +It is, my lord. + +BUCKINGHAM: +Why, then All-Souls' day is my body's doomsday. +This is the day that, in King Edward's time, +I wish't might fall on me, when I was found +False to his children or his wife's allies +This is the day wherein I wish'd to fall +By the false faith of him I trusted most; +This, this All-Souls' day to my fearful soul +Is the determined respite of my wrongs: +That high All-Seer that I dallied with +Hath turn'd my feigned prayer on my head +And given in earnest what I begg'd in jest. +Thus doth he force the swords of wicked men +To turn their own points on their masters' bosoms: +Now Margaret's curse is fallen upon my head; +'When he,' quoth she, 'shall split thy heart with sorrow, +Remember Margaret was a prophetess.' +Come, sirs, convey me to the block of shame; +Wrong hath but wrong, and blame the due of blame. + +RICHMOND: +Fellows in arms, and my most loving friends, +Bruised underneath the yoke of tyranny, +Thus far into the bowels of the land +Have we march'd on without impediment; +And here receive we from our father Stanley +Lines of fair comfort and encouragement. +The wretched, bloody, and usurping boar, +That spoil'd your summer fields and fruitful vines, +Swills your warm blood like wash, and makes his trough +In your embowell'd bosoms, this foul swine +Lies now even in the centre of this isle, +Near to the town of Leicester, as we learn +From Tamworth thither is but one day's march. +In God's name, cheerly on, courageous friends, +To reap the harvest of perpetual peace +By this one bloody trial of sharp war. + +OXFORD: +Every man's conscience is a thousand swords, +To fight against that bloody homicide. + +HERBERT: +I doubt not but his friends will fly to us. + +BLUNT: +He hath no friends but who are friends for fear. +Which in his greatest need will shrink from him. + +RICHMOND: +All for our vantage. Then, in God's name, march: +True hope is swift, and flies with swallow's wings: +Kings it makes gods, and meaner creatures kings. + +KING RICHARD III: +Here pitch our tents, even here in Bosworth field. +My Lord of Surrey, why look you so sad? + +SURREY: +My heart is ten times lighter than my looks. + +KING RICHARD III: +My Lord of Norfolk,-- + +NORFOLK: +Here, most gracious liege. + +KING RICHARD III: +Norfolk, we must have knocks; ha! must we not? + +NORFOLK: +We must both give and take, my gracious lord. + +KING RICHARD III: +Up with my tent there! here will I lie tonight; +But where to-morrow? Well, all's one for that. +Who hath descried the number of the foe? + +NORFOLK: +Six or seven thousand is their utmost power. + +KING RICHARD III: +Why, our battalion trebles that account: +Besides, the king's name is a tower of strength, +Which they upon the adverse party want. +Up with my tent there! Valiant gentlemen, +Let us survey the vantage of the field +Call for some men of sound direction +Let's want no discipline, make no delay, +For, lords, to-morrow is a busy day. + +RICHMOND: +The weary sun hath made a golden set, +And by the bright track of his fiery car, +Gives signal, of a goodly day to-morrow. +Sir William Brandon, you shall bear my standard. +Give me some ink and paper in my tent +I'll draw the form and model of our battle, +Limit each leader to his several charge, +And part in just proportion our small strength. +My Lord of Oxford, you, Sir William Brandon, +And you, Sir Walter Herbert, stay with me. +The Earl of Pembroke keeps his regiment: +Good Captain Blunt, bear my good night to him +And by the second hour in the morning +Desire the earl to see me in my tent: +Yet one thing more, good Blunt, before thou go'st, +Where is Lord Stanley quarter'd, dost thou know? + +BLUNT: +Unless I have mista'en his colours much, +Which well I am assured I have not done, +His regiment lies half a mile at least +South from the mighty power of the king. + +RICHMOND: +If without peril it be possible, +Good Captain Blunt, bear my good-night to him, +And give him from me this most needful scroll. + +BLUNT: +Upon my life, my lord, I'll under-take it; +And so, God give you quiet rest to-night! + +RICHMOND: +Good night, good Captain Blunt. Come gentlemen, +Let us consult upon to-morrow's business +In to our tent; the air is raw and cold. + +KING RICHARD III: +What is't o'clock? + +CATESBY: +It's supper-time, my lord; +It's nine o'clock. + +KING RICHARD III: +I will not sup to-night. +Give me some ink and paper. +What, is my beaver easier than it was? +And all my armour laid into my tent? + +CATESBY: +If is, my liege; and all things are in readiness. + +KING RICHARD III: +Good Norfolk, hie thee to thy charge; +Use careful watch, choose trusty sentinels. + +NORFOLK: +I go, my lord. + +KING RICHARD III: +Stir with the lark to-morrow, gentle Norfolk. + +NORFOLK: +I warrant you, my lord. + +KING RICHARD III: +Catesby! + +CATESBY: +My lord? + +KING RICHARD III: +Send out a pursuivant at arms +To Stanley's regiment; bid him bring his power +Before sunrising, lest his son George fall +Into the blind cave of eternal night. +Fill me a bowl of wine. Give me a watch. +Saddle white Surrey for the field to-morrow. +Look that my staves be sound, and not too heavy. +Ratcliff! + +RATCLIFF: +My lord? + +KING RICHARD III: +Saw'st thou the melancholy Lord Northumberland? + +RATCLIFF: +Thomas the Earl of Surrey, and himself, +Much about cock-shut time, from troop to troop +Went through the army, cheering up the soldiers. + +KING RICHARD III: +So, I am satisfied. Give me a bowl of wine: +I have not that alacrity of spirit, +Nor cheer of mind, that I was wont to have. +Set it down. Is ink and paper ready? + +RATCLIFF: +It is, my lord. + +KING RICHARD III: +Bid my guard watch; leave me. +Ratcliff, about the mid of night come to my tent +And help to arm me. Leave me, I say. + +DERBY: +Fortune and victory sit on thy helm! + +RICHMOND: +All comfort that the dark night can afford +Be to thy person, noble father-in-law! +Tell me, how fares our loving mother? + +DERBY: +I, by attorney, bless thee from thy mother +Who prays continually for Richmond's good: +So much for that. The silent hours steal on, +And flaky darkness breaks within the east. +In brief,--for so the season bids us be,-- +Prepare thy battle early in the morning, +And put thy fortune to the arbitrement +Of bloody strokes and mortal-staring war. +I, as I may--that which I would I cannot,-- +With best advantage will deceive the time, +And aid thee in this doubtful shock of arms: +But on thy side I may not be too forward +Lest, being seen, thy brother, tender George, +Be executed in his father's sight. +Farewell: the leisure and the fearful time +Cuts off the ceremonious vows of love +And ample interchange of sweet discourse, +Which so long sunder'd friends should dwell upon: +God give us leisure for these rites of love! +Once more, adieu: be valiant, and speed well! + +RICHMOND: +Good lords, conduct him to his regiment: +I'll strive, with troubled thoughts, to take a nap, +Lest leaden slumber peise me down to-morrow, +When I should mount with wings of victory: +Once more, good night, kind lords and gentlemen. +O Thou, whose captain I account myself, +Look on my forces with a gracious eye; +Put in their hands thy bruising irons of wrath, +That they may crush down with a heavy fall +The usurping helmets of our adversaries! +Make us thy ministers of chastisement, +That we may praise thee in the victory! +To thee I do commend my watchful soul, +Ere I let fall the windows of mine eyes: +Sleeping and waking, O, defend me still! + +Ghost of Prince Edward: + +Ghost of King Henry VI: + +Ghost of CLARENCE: + +Ghost of RIVERS: + +Ghost of GREY: + +Ghost of VAUGHAN: + +All: + +Ghost of HASTINGS: + +Ghosts of young Princes: + +Ghost of LADY ANNE: + +Ghost of BUCKINGHAM: + +KING RICHARD III: +Give me another horse: bind up my wounds. +Have mercy, Jesu!--Soft! I did but dream. +O coward conscience, how dost thou afflict me! +The lights burn blue. It is now dead midnight. +Cold fearful drops stand on my trembling flesh. +What do I fear? myself? there's none else by: +Richard loves Richard; that is, I am I. +Is there a murderer here? No. Yes, I am: +Then fly. What, from myself? Great reason why: +Lest I revenge. What, myself upon myself? +Alack. I love myself. Wherefore? for any good +That I myself have done unto myself? +O, no! alas, I rather hate myself +For hateful deeds committed by myself! +I am a villain: yet I lie. I am not. +Fool, of thyself speak well: fool, do not flatter. +My conscience hath a thousand several tongues, +And every tongue brings in a several tale, +And every tale condemns me for a villain. +Perjury, perjury, in the high'st degree +Murder, stem murder, in the direst degree; +All several sins, all used in each degree, +Throng to the bar, crying all, Guilty! guilty! +I shall despair. There is no creature loves me; +And if I die, no soul shall pity me: +Nay, wherefore should they, since that I myself +Find in myself no pity to myself? +Methought the souls of all that I had murder'd +Came to my tent; and every one did threat +To-morrow's vengeance on the head of Richard. + +RATCLIFF: +My lord! + +KING RICHARD III: +'Zounds! who is there? + +RATCLIFF: +Ratcliff, my lord; 'tis I. The early village-cock +Hath twice done salutation to the morn; +Your friends are up, and buckle on their armour. + +KING RICHARD III: +O Ratcliff, I have dream'd a fearful dream! +What thinkest thou, will our friends prove all true? + +RATCLIFF: +No doubt, my lord. + +KING RICHARD III: +O Ratcliff, I fear, I fear,-- + +RATCLIFF: +Nay, good my lord, be not afraid of shadows. + +KING RICHARD III: +By the apostle Paul, shadows to-night +Have struck more terror to the soul of Richard +Than can the substance of ten thousand soldiers +Armed in proof, and led by shallow Richmond. +It is not yet near day. Come, go with me; +Under our tents I'll play the eaves-dropper, +To see if any mean to shrink from me. + +LORDS: +Good morrow, Richmond! + +RICHMOND: +Cry mercy, lords and watchful gentlemen, +That you have ta'en a tardy sluggard here. + +LORDS: +How have you slept, my lord? + +RICHMOND: +The sweetest sleep, and fairest-boding dreams +That ever enter'd in a drowsy head, +Have I since your departure had, my lords. +Methought their souls, whose bodies Richard murder'd, +Came to my tent, and cried on victory: +I promise you, my soul is very jocund +In the remembrance of so fair a dream. +How far into the morning is it, lords? + +LORDS: +Upon the stroke of four. + +RICHMOND: +Why, then 'tis time to arm and give direction. +More than I have said, loving countrymen, +The leisure and enforcement of the time +Forbids to dwell upon: yet remember this, +God and our good cause fight upon our side; +The prayers of holy saints and wronged souls, +Like high-rear'd bulwarks, stand before our faces; +Richard except, those whom we fight against +Had rather have us win than him they follow: +For what is he they follow? truly, gentlemen, +A bloody tyrant and a homicide; +One raised in blood, and one in blood establish'd; +One that made means to come by what he hath, +And slaughter'd those that were the means to help him; +Abase foul stone, made precious by the foil +Of England's chair, where he is falsely set; +One that hath ever been God's enemy: +Then, if you fight against God's enemy, +God will in justice ward you as his soldiers; +If you do sweat to put a tyrant down, +You sleep in peace, the tyrant being slain; +If you do fight against your country's foes, +Your country's fat shall pay your pains the hire; +If you do fight in safeguard of your wives, +Your wives shall welcome home the conquerors; +If you do free your children from the sword, +Your children's children quit it in your age. +Then, in the name of God and all these rights, +Advance your standards, draw your willing swords. +For me, the ransom of my bold attempt +Shall be this cold corpse on the earth's cold face; +But if I thrive, the gain of my attempt +The least of you shall share his part thereof. +Sound drums and trumpets boldly and cheerfully; +God and Saint George! Richmond and victory! + +KING RICHARD III: +What said Northumberland as touching Richmond? + +RATCLIFF: +That he was never trained up in arms. + +KING RICHARD III: +He said the truth: and what said Surrey then? + +RATCLIFF: +He smiled and said 'The better for our purpose.' + +KING RICHARD III: +He was in the right; and so indeed it is. +Ten the clock there. Give me a calendar. +Who saw the sun to-day? + +RATCLIFF: +Not I, my lord. + +KING RICHARD III: +Then he disdains to shine; for by the book +He should have braved the east an hour ago +A black day will it be to somebody. Ratcliff! + +RATCLIFF: +My lord? + +KING RICHARD III: +The sun will not be seen to-day; +The sky doth frown and lour upon our army. +I would these dewy tears were from the ground. +Not shine to-day! Why, what is that to me +More than to Richmond? for the selfsame heaven +That frowns on me looks sadly upon him. + +NORFOLK: +Arm, arm, my lord; the foe vaunts in the field. + +KING RICHARD III: +Come, bustle, bustle; caparison my horse. +Call up Lord Stanley, bid him bring his power: +I will lead forth my soldiers to the plain, +And thus my battle shall be ordered: +My foreward shall be drawn out all in length, +Consisting equally of horse and foot; +Our archers shall be placed in the midst +John Duke of Norfolk, Thomas Earl of Surrey, +Shall have the leading of this foot and horse. +They thus directed, we will follow +In the main battle, whose puissance on either side +Shall be well winged with our chiefest horse. +This, and Saint George to boot! What think'st thou, Norfolk? + +NORFOLK: +A good direction, warlike sovereign. +This found I on my tent this morning. + +KING RICHARD III: + +Messenger: +My lord, he doth deny to come. + +KING RICHARD III: +Off with his son George's head! + +NORFOLK: +My lord, the enemy is past the marsh +After the battle let George Stanley die. + +KING RICHARD III: +A thousand hearts are great within my bosom: +Advance our standards, set upon our foes +Our ancient word of courage, fair Saint George, +Inspire us with the spleen of fiery dragons! +Upon them! victory sits on our helms. + +CATESBY: +Rescue, my Lord of Norfolk, rescue, rescue! +The king enacts more wonders than a man, +Daring an opposite to every danger: +His horse is slain, and all on foot he fights, +Seeking for Richmond in the throat of death. +Rescue, fair lord, or else the day is lost! + +KING RICHARD III: +A horse! a horse! my kingdom for a horse! + +CATESBY: +Withdraw, my lord; I'll help you to a horse. + +KING RICHARD III: +Slave, I have set my life upon a cast, +And I will stand the hazard of the die: +I think there be six Richmonds in the field; +Five have I slain to-day instead of him. +A horse! a horse! my kingdom for a horse! + +RICHMOND: +God and your arms be praised, victorious friends, +The day is ours, the bloody dog is dead. + +DERBY: +Courageous Richmond, well hast thou acquit thee. +Lo, here, this long-usurped royalty +From the dead temples of this bloody wretch +Have I pluck'd off, to grace thy brows withal: +Wear it, enjoy it, and make much of it. + +RICHMOND: +Great God of heaven, say Amen to all! +But, tell me, is young George Stanley living? + +DERBY: +He is, my lord, and safe in Leicester town; +Whither, if it please you, we may now withdraw us. + +RICHMOND: +What men of name are slain on either side? + +DERBY: +John Duke of Norfolk, Walter Lord Ferrers, +Sir Robert Brakenbury, and Sir William Brandon. + +RICHMOND: +Inter their bodies as becomes their births: +Proclaim a pardon to the soldiers fled +That in submission will return to us: +And then, as we have ta'en the sacrament, +We will unite the white rose and the red: +Smile heaven upon this fair conjunction, +That long have frown'd upon their enmity! +What traitor hears me, and says not amen? +England hath long been mad, and scarr'd herself; +The brother blindly shed the brother's blood, +The father rashly slaughter'd his own son, +The son, compell'd, been butcher to the sire: +All this divided York and Lancaster, +Divided in their dire division, +O, now, let Richmond and Elizabeth, +The true succeeders of each royal house, +By God's fair ordinance conjoin together! +And let their heirs, God, if thy will be so. +Enrich the time to come with smooth-faced peace, +With smiling plenty and fair prosperous days! +Abate the edge of traitors, gracious Lord, +That would reduce these bloody days again, +And make poor England weep in streams of blood! +Let them not live to taste this land's increase +That would with treason wound this fair land's peace! +Now civil wounds are stopp'd, peace lives again: +That she may long live here, God say amen! + +KING RICHARD II: +Old John of Gaunt, time-honour'd Lancaster, +Hast thou, according to thy oath and band, +Brought hither Henry Hereford thy bold son, +Here to make good the boisterous late appeal, +Which then our leisure would not let us hear, +Against the Duke of Norfolk, Thomas Mowbray? + +JOHN OF GAUNT: +I have, my liege. + +KING RICHARD II: +Tell me, moreover, hast thou sounded him, +If he appeal the duke on ancient malice; +Or worthily, as a good subject should, +On some known ground of treachery in him? + +JOHN OF GAUNT: +As near as I could sift him on that argument, +On some apparent danger seen in him +Aim'd at your highness, no inveterate malice. + +KING RICHARD II: +Then call them to our presence; face to face, +And frowning brow to brow, ourselves will hear +The accuser and the accused freely speak: +High-stomach'd are they both, and full of ire, +In rage deaf as the sea, hasty as fire. + +HENRY BOLINGBROKE: +Many years of happy days befal +My gracious sovereign, my most loving liege! + +THOMAS MOWBRAY: +Each day still better other's happiness; +Until the heavens, envying earth's good hap, +Add an immortal title to your crown! + +KING RICHARD II: +We thank you both: yet one but flatters us, +As well appeareth by the cause you come; +Namely to appeal each other of high treason. +Cousin of Hereford, what dost thou object +Against the Duke of Norfolk, Thomas Mowbray? + +HENRY BOLINGBROKE: +First, heaven be the record to my speech! +In the devotion of a subject's love, +Tendering the precious safety of my prince, +And free from other misbegotten hate, +Come I appellant to this princely presence. +Now, Thomas Mowbray, do I turn to thee, +And mark my greeting well; for what I speak +My body shall make good upon this earth, +Or my divine soul answer it in heaven. +Thou art a traitor and a miscreant, +Too good to be so and too bad to live, +Since the more fair and crystal is the sky, +The uglier seem the clouds that in it fly. +Once more, the more to aggravate the note, +With a foul traitor's name stuff I thy throat; +And wish, so please my sovereign, ere I move, +What my tongue speaks my right drawn sword may prove. + +THOMAS MOWBRAY: +Let not my cold words here accuse my zeal: +'Tis not the trial of a woman's war, +The bitter clamour of two eager tongues, +Can arbitrate this cause betwixt us twain; +The blood is hot that must be cool'd for this: +Yet can I not of such tame patience boast +As to be hush'd and nought at all to say: +First, the fair reverence of your highness curbs me +From giving reins and spurs to my free speech; +Which else would post until it had return'd +These terms of treason doubled down his throat. +Setting aside his high blood's royalty, +And let him be no kinsman to my liege, +I do defy him, and I spit at him; +Call him a slanderous coward and a villain: +Which to maintain I would allow him odds, +And meet him, were I tied to run afoot +Even to the frozen ridges of the Alps, +Or any other ground inhabitable, +Where ever Englishman durst set his foot. +Mean time let this defend my loyalty, +By all my hopes, most falsely doth he lie. + +HENRY BOLINGBROKE: +Pale trembling coward, there I throw my gage, +Disclaiming here the kindred of the king, +And lay aside my high blood's royalty, +Which fear, not reverence, makes thee to except. +If guilty dread have left thee so much strength +As to take up mine honour's pawn, then stoop: +By that and all the rites of knighthood else, +Will I make good against thee, arm to arm, +What I have spoke, or thou canst worse devise. + +THOMAS MOWBRAY: +I take it up; and by that sword I swear +Which gently laid my knighthood on my shoulder, +I'll answer thee in any fair degree, +Or chivalrous design of knightly trial: +And when I mount, alive may I not light, +If I be traitor or unjustly fight! + +KING RICHARD II: +What doth our cousin lay to Mowbray's charge? +It must be great that can inherit us +So much as of a thought of ill in him. + +HENRY BOLINGBROKE: +Look, what I speak, my life shall prove it true; +That Mowbray hath received eight thousand nobles +In name of lendings for your highness' soldiers, +The which he hath detain'd for lewd employments, +Like a false traitor and injurious villain. +Besides I say and will in battle prove, +Or here or elsewhere to the furthest verge +That ever was survey'd by English eye, +That all the treasons for these eighteen years +Complotted and contrived in this land +Fetch from false Mowbray their first head and spring. +Further I say and further will maintain +Upon his bad life to make all this good, +That he did plot the Duke of Gloucester's death, +Suggest his soon-believing adversaries, +And consequently, like a traitor coward, +Sluiced out his innocent soul through streams of blood: +Which blood, like sacrificing Abel's, cries, +Even from the tongueless caverns of the earth, +To me for justice and rough chastisement; +And, by the glorious worth of my descent, +This arm shall do it, or this life be spent. + +KING RICHARD II: +How high a pitch his resolution soars! +Thomas of Norfolk, what say'st thou to this? + +THOMAS MOWBRAY: +O, let my sovereign turn away his face +And bid his ears a little while be deaf, +Till I have told this slander of his blood, +How God and good men hate so foul a liar. + +KING RICHARD II: +Mowbray, impartial are our eyes and ears: +Were he my brother, nay, my kingdom's heir, +As he is but my father's brother's son, +Now, by my sceptre's awe, I make a vow, +Such neighbour nearness to our sacred blood +Should nothing privilege him, nor partialize +The unstooping firmness of my upright soul: +He is our subject, Mowbray; so art thou: +Free speech and fearless I to thee allow. + +THOMAS MOWBRAY: +Then, Bolingbroke, as low as to thy heart, +Through the false passage of thy throat, thou liest. +Three parts of that receipt I had for Calais +Disbursed I duly to his highness' soldiers; +The other part reserved I by consent, +For that my sovereign liege was in my debt +Upon remainder of a dear account, +Since last I went to France to fetch his queen: +Now swallow down that lie. For Gloucester's death, +I slew him not; but to my own disgrace +Neglected my sworn duty in that case. +For you, my noble Lord of Lancaster, +The honourable father to my foe +Once did I lay an ambush for your life, +A trespass that doth vex my grieved soul +But ere I last received the sacrament +I did confess it, and exactly begg'd +Your grace's pardon, and I hope I had it. +This is my fault: as for the rest appeall'd, +It issues from the rancour of a villain, +A recreant and most degenerate traitor +Which in myself I boldly will defend; +And interchangeably hurl down my gage +Upon this overweening traitor's foot, +To prove myself a loyal gentleman +Even in the best blood chamber'd in his bosom. +In haste whereof, most heartily I pray +Your highness to assign our trial day. + +KING RICHARD II: +Wrath-kindled gentlemen, be ruled by me; +Let's purge this choler without letting blood: +This we prescribe, though no physician; +Deep malice makes too deep incision; +Forget, forgive; conclude and be agreed; +Our doctors say this is no month to bleed. +Good uncle, let this end where it begun; +We'll calm the Duke of Norfolk, you your son. + +JOHN OF GAUNT: +To be a make-peace shall become my age: +Throw down, my son, the Duke of Norfolk's gage. + +KING RICHARD II: +And, Norfolk, throw down his. + +JOHN OF GAUNT: +When, Harry, when? +Obedience bids I should not bid again. + +KING RICHARD II: +Norfolk, throw down, we bid; there is no boot. + +THOMAS MOWBRAY: +Myself I throw, dread sovereign, at thy foot. +My life thou shalt command, but not my shame: +The one my duty owes; but my fair name, +Despite of death that lives upon my grave, +To dark dishonour's use thou shalt not have. +I am disgraced, impeach'd and baffled here, +Pierced to the soul with slander's venom'd spear, +The which no balm can cure but his heart-blood +Which breathed this poison. + +KING RICHARD II: +Rage must be withstood: +Give me his gage: lions make leopards tame. + +THOMAS MOWBRAY: +Yea, but not change his spots: take but my shame. +And I resign my gage. My dear dear lord, +The purest treasure mortal times afford +Is spotless reputation: that away, +Men are but gilded loam or painted clay. +A jewel in a ten-times-barr'd-up chest +Is a bold spirit in a loyal breast. +Mine honour is my life; both grow in one: +Take honour from me, and my life is done: +Then, dear my liege, mine honour let me try; +In that I live and for that will I die. + +KING RICHARD II: +Cousin, throw up your gage; do you begin. + +HENRY BOLINGBROKE: +O, God defend my soul from such deep sin! +Shall I seem crest-fall'n in my father's sight? +Or with pale beggar-fear impeach my height +Before this out-dared dastard? Ere my tongue +Shall wound my honour with such feeble wrong, +Or sound so base a parle, my teeth shall tear +The slavish motive of recanting fear, +And spit it bleeding in his high disgrace, +Where shame doth harbour, even in Mowbray's face. + +KING RICHARD II: +We were not born to sue, but to command; +Which since we cannot do to make you friends, +Be ready, as your lives shall answer it, +At Coventry, upon Saint Lambert's day: +There shall your swords and lances arbitrate +The swelling difference of your settled hate: +Since we can not atone you, we shall see +Justice design the victor's chivalry. +Lord marshal, command our officers at arms +Be ready to direct these home alarms. + +JOHN OF GAUNT: +Alas, the part I had in Woodstock's blood +Doth more solicit me than your exclaims, +To stir against the butchers of his life! +But since correction lieth in those hands +Which made the fault that we cannot correct, +Put we our quarrel to the will of heaven; +Who, when they see the hours ripe on earth, +Will rain hot vengeance on offenders' heads. + +DUCHESS: +Finds brotherhood in thee no sharper spur? +Hath love in thy old blood no living fire? +Edward's seven sons, whereof thyself art one, +Were as seven vials of his sacred blood, +Or seven fair branches springing from one root: +Some of those seven are dried by nature's course, +Some of those branches by the Destinies cut; +But Thomas, my dear lord, my life, my Gloucester, +One vial full of Edward's sacred blood, +One flourishing branch of his most royal root, +Is crack'd, and all the precious liquor spilt, +Is hack'd down, and his summer leaves all faded, +By envy's hand and murder's bloody axe. +Ah, Gaunt, his blood was thine! that bed, that womb, +That metal, that self-mould, that fashion'd thee +Made him a man; and though thou livest and breathest, +Yet art thou slain in him: thou dost consent +In some large measure to thy father's death, +In that thou seest thy wretched brother die, +Who was the model of thy father's life. +Call it not patience, Gaunt; it is despair: +In suffering thus thy brother to be slaughter'd, +Thou showest the naked pathway to thy life, +Teaching stern murder how to butcher thee: +That which in mean men we intitle patience +Is pale cold cowardice in noble breasts. +What shall I say? to safeguard thine own life, +The best way is to venge my Gloucester's death. + +JOHN OF GAUNT: +God's is the quarrel; for God's substitute, +His deputy anointed in His sight, +Hath caused his death: the which if wrongfully, +Let heaven revenge; for I may never lift +An angry arm against His minister. + +DUCHESS: +Where then, alas, may I complain myself? + +JOHN OF GAUNT: +To God, the widow's champion and defence. + +DUCHESS: +Why, then, I will. Farewell, old Gaunt. +Thou goest to Coventry, there to behold +Our cousin Hereford and fell Mowbray fight: +O, sit my husband's wrongs on Hereford's spear, +That it may enter butcher Mowbray's breast! +Or, if misfortune miss the first career, +Be Mowbray's sins so heavy in his bosom, +They may break his foaming courser's back, +And throw the rider headlong in the lists, +A caitiff recreant to my cousin Hereford! +Farewell, old Gaunt: thy sometimes brother's wife +With her companion grief must end her life. + +JOHN OF GAUNT: +Sister, farewell; I must to Coventry: +As much good stay with thee as go with me! + +DUCHESS: +Yet one word more: grief boundeth where it falls, +Not with the empty hollowness, but weight: +I take my leave before I have begun, +For sorrow ends not when it seemeth done. +Commend me to thy brother, Edmund York. +Lo, this is all:--nay, yet depart not so; +Though this be all, do not so quickly go; +I shall remember more. Bid him--ah, what?-- +With all good speed at Plashy visit me. +Alack, and what shall good old York there see +But empty lodgings and unfurnish'd walls, +Unpeopled offices, untrodden stones? +And what hear there for welcome but my groans? +Therefore commend me; let him not come there, +To seek out sorrow that dwells every where. +Desolate, desolate, will I hence and die: +The last leave of thee takes my weeping eye. + +Lord Marshal: +My Lord Aumerle, is Harry Hereford arm'd? + +DUKE OF AUMERLE: +Yea, at all points; and longs to enter in. + +Lord Marshal: +The Duke of Norfolk, sprightfully and bold, +Stays but the summons of the appellant's trumpet. + +DUKE OF AUMERLE: +Why, then, the champions are prepared, and stay +For nothing but his majesty's approach. + +KING RICHARD II: +Marshal, demand of yonder champion +The cause of his arrival here in arms: +Ask him his name and orderly proceed +To swear him in the justice of his cause. + +Lord Marshal: +In God's name and the king's, say who thou art +And why thou comest thus knightly clad in arms, +Against what man thou comest, and what thy quarrel: +Speak truly, on thy knighthood and thy oath; +As so defend thee heaven and thy valour! + +THOMAS MOWBRAY: +My name is Thomas Mowbray, Duke of Norfolk; +Who hither come engaged by my oath-- +Which God defend a knight should violate!-- +Both to defend my loyalty and truth +To God, my king and my succeeding issue, +Against the Duke of Hereford that appeals me +And, by the grace of God and this mine arm, +To prove him, in defending of myself, +A traitor to my God, my king, and me: +And as I truly fight, defend me heaven! + +KING RICHARD II: +Marshal, ask yonder knight in arms, +Both who he is and why he cometh hither +Thus plated in habiliments of war, +And formally, according to our law, +Depose him in the justice of his cause. + +Lord Marshal: +What is thy name? and wherefore comest thou hither, +Before King Richard in his royal lists? +Against whom comest thou? and what's thy quarrel? +Speak like a true knight, so defend thee heaven! + +HENRY BOLINGBROKE: +Harry of Hereford, Lancaster and Derby +Am I; who ready here do stand in arms, +To prove, by God's grace and my body's valour, +In lists, on Thomas Mowbray, Duke of Norfolk, +That he is a traitor, foul and dangerous, +To God of heaven, King Richard and to me; +And as I truly fight, defend me heaven! + +Lord Marshal: +On pain of death, no person be so bold +Or daring-hardy as to touch the lists, +Except the marshal and such officers +Appointed to direct these fair designs. + +HENRY BOLINGBROKE: +Lord marshal, let me kiss my sovereign's hand, +And bow my knee before his majesty: +For Mowbray and myself are like two men +That vow a long and weary pilgrimage; +Then let us take a ceremonious leave +And loving farewell of our several friends. + +Lord Marshal: +The appellant in all duty greets your highness, +And craves to kiss your hand and take his leave. + +KING RICHARD II: +We will descend and fold him in our arms. +Cousin of Hereford, as thy cause is right, +So be thy fortune in this royal fight! +Farewell, my blood; which if to-day thou shed, +Lament we may, but not revenge thee dead. + +HENRY BOLINGBROKE: +O let no noble eye profane a tear +For me, if I be gored with Mowbray's spear: +As confident as is the falcon's flight +Against a bird, do I with Mowbray fight. +My loving lord, I take my leave of you; +Of you, my noble cousin, Lord Aumerle; +Not sick, although I have to do with death, +But lusty, young, and cheerly drawing breath. +Lo, as at English feasts, so I regreet +The daintiest last, to make the end most sweet: +O thou, the earthly author of my blood, +Whose youthful spirit, in me regenerate, +Doth with a twofold vigour lift me up +To reach at victory above my head, +Add proof unto mine armour with thy prayers; +And with thy blessings steel my lance's point, +That it may enter Mowbray's waxen coat, +And furbish new the name of John a Gaunt, +Even in the lusty havior of his son. + +JOHN OF GAUNT: +God in thy good cause make thee prosperous! +Be swift like lightning in the execution; +And let thy blows, doubly redoubled, +Fall like amazing thunder on the casque +Of thy adverse pernicious enemy: +Rouse up thy youthful blood, be valiant and live. + +HENRY BOLINGBROKE: +Mine innocency and Saint George to thrive! + +THOMAS MOWBRAY: +However God or fortune cast my lot, +There lives or dies, true to King Richard's throne, +A loyal, just and upright gentleman: +Never did captive with a freer heart +Cast off his chains of bondage and embrace +His golden uncontroll'd enfranchisement, +More than my dancing soul doth celebrate +This feast of battle with mine adversary. +Most mighty liege, and my companion peers, +Take from my mouth the wish of happy years: +As gentle and as jocund as to jest +Go I to fight: truth hath a quiet breast. + +KING RICHARD II: +Farewell, my lord: securely I espy +Virtue with valour couched in thine eye. +Order the trial, marshal, and begin. + +Lord Marshal: +Harry of Hereford, Lancaster and Derby, +Receive thy lance; and God defend the right! + +HENRY BOLINGBROKE: +Strong as a tower in hope, I cry amen. + +Lord Marshal: +Go bear this lance to Thomas, Duke of Norfolk. + +First Herald: +Harry of Hereford, Lancaster and Derby, +Stands here for God, his sovereign and himself, +On pain to be found false and recreant, +To prove the Duke of Norfolk, Thomas Mowbray, +A traitor to his God, his king and him; +And dares him to set forward to the fight. + +Second Herald: +Here standeth Thomas Mowbray, Duke of Norfolk, +On pain to be found false and recreant, +Both to defend himself and to approve +Henry of Hereford, Lancaster, and Derby, +To God, his sovereign and to him disloyal; +Courageously and with a free desire +Attending but the signal to begin. + +Lord Marshal: +Sound, trumpets; and set forward, combatants. +Stay, the king hath thrown his warder down. + +KING RICHARD II: +Let them lay by their helmets and their spears, +And both return back to their chairs again: +Withdraw with us: and let the trumpets sound +While we return these dukes what we decree. +Draw near, +And list what with our council we have done. +For that our kingdom's earth should not be soil'd +With that dear blood which it hath fostered; +And for our eyes do hate the dire aspect +Of civil wounds plough'd up with neighbours' sword; +And for we think the eagle-winged pride +Of sky-aspiring and ambitious thoughts, +With rival-hating envy, set on you +To wake our peace, which in our country's cradle +Draws the sweet infant breath of gentle sleep; +Which so roused up with boisterous untuned drums, +With harsh resounding trumpets' dreadful bray, +And grating shock of wrathful iron arms, +Might from our quiet confines fright fair peace +And make us wade even in our kindred's blood, +Therefore, we banish you our territories: +You, cousin Hereford, upon pain of life, +Till twice five summers have enrich'd our fields +Shall not regreet our fair dominions, +But tread the stranger paths of banishment. + +HENRY BOLINGBROKE: +Your will be done: this must my comfort be, +Sun that warms you here shall shine on me; +And those his golden beams to you here lent +Shall point on me and gild my banishment. + +KING RICHARD II: +Norfolk, for thee remains a heavier doom, +Which I with some unwillingness pronounce: +The sly slow hours shall not determinate +The dateless limit of thy dear exile; +The hopeless word of 'never to return' +Breathe I against thee, upon pain of life. + +THOMAS MOWBRAY: +A heavy sentence, my most sovereign liege, +And all unlook'd for from your highness' mouth: +A dearer merit, not so deep a maim +As to be cast forth in the common air, +Have I deserved at your highness' hands. +The language I have learn'd these forty years, +My native English, now I must forego: +And now my tongue's use is to me no more +Than an unstringed viol or a harp, +Or like a cunning instrument cased up, +Or, being open, put into his hands +That knows no touch to tune the harmony: +Within my mouth you have engaol'd my tongue, +Doubly portcullis'd with my teeth and lips; +And dull unfeeling barren ignorance +Is made my gaoler to attend on me. +I am too old to fawn upon a nurse, +Too far in years to be a pupil now: +What is thy sentence then but speechless death, +Which robs my tongue from breathing native breath? + +KING RICHARD II: +It boots thee not to be compassionate: +After our sentence plaining comes too late. + +THOMAS MOWBRAY: +Then thus I turn me from my country's light, +To dwell in solemn shades of endless night. + +KING RICHARD II: +Return again, and take an oath with thee. +Lay on our royal sword your banish'd hands; +Swear by the duty that you owe to God-- +Our part therein we banish with yourselves-- +To keep the oath that we administer: +You never shall, so help you truth and God! +Embrace each other's love in banishment; +Nor never look upon each other's face; +Nor never write, regreet, nor reconcile +This louring tempest of your home-bred hate; +Nor never by advised purpose meet +To plot, contrive, or complot any ill +'Gainst us, our state, our subjects, or our land. + +HENRY BOLINGBROKE: +I swear. + +THOMAS MOWBRAY: +And I, to keep all this. + +HENRY BOLINGBROKE: +Norfolk, so far as to mine enemy:-- +By this time, had the king permitted us, +One of our souls had wander'd in the air. +Banish'd this frail sepulchre of our flesh, +As now our flesh is banish'd from this land: +Confess thy treasons ere thou fly the realm; +Since thou hast far to go, bear not along +The clogging burthen of a guilty soul. + +THOMAS MOWBRAY: +No, Bolingbroke: if ever I were traitor, +My name be blotted from the book of life, +And I from heaven banish'd as from hence! +But what thou art, God, thou, and I do know; +And all too soon, I fear, the king shall rue. +Farewell, my liege. Now no way can I stray; +Save back to England, all the world's my way. + +KING RICHARD II: +Uncle, even in the glasses of thine eyes +I see thy grieved heart: thy sad aspect +Hath from the number of his banish'd years +Pluck'd four away. +Six frozen winter spent, +Return with welcome home from banishment. + +HENRY BOLINGBROKE: +How long a time lies in one little word! +Four lagging winters and four wanton springs +End in a word: such is the breath of kings. + +JOHN OF GAUNT: +I thank my liege, that in regard of me +He shortens four years of my son's exile: +But little vantage shall I reap thereby; +For, ere the six years that he hath to spend +Can change their moons and bring their times about +My oil-dried lamp and time-bewasted light +Shall be extinct with age and endless night; +My inch of taper will be burnt and done, +And blindfold death not let me see my son. + +KING RICHARD II: +Why uncle, thou hast many years to live. + +JOHN OF GAUNT: +But not a minute, king, that thou canst give: +Shorten my days thou canst with sullen sorrow, +And pluck nights from me, but not lend a morrow; +Thou canst help time to furrow me with age, +But stop no wrinkle in his pilgrimage; +Thy word is current with him for my death, +But dead, thy kingdom cannot buy my breath. + +KING RICHARD II: +Thy son is banish'd upon good advice, +Whereto thy tongue a party-verdict gave: +Why at our justice seem'st thou then to lour? + +JOHN OF GAUNT: +Things sweet to taste prove in digestion sour. +You urged me as a judge; but I had rather +You would have bid me argue like a father. +O, had it been a stranger, not my child, +To smooth his fault I should have been more mild: +A partial slander sought I to avoid, +And in the sentence my own life destroy'd. +Alas, I look'd when some of you should say, +I was too strict to make mine own away; +But you gave leave to my unwilling tongue +Against my will to do myself this wrong. + +KING RICHARD II: +Cousin, farewell; and, uncle, bid him so: +Six years we banish him, and he shall go. + +DUKE OF AUMERLE: +Cousin, farewell: what presence must not know, +From where you do remain let paper show. + +Lord Marshal: +My lord, no leave take I; for I will ride, +As far as land will let me, by your side. + +JOHN OF GAUNT: +O, to what purpose dost thou hoard thy words, +That thou return'st no greeting to thy friends? + +HENRY BOLINGBROKE: +I have too few to take my leave of you, +When the tongue's office should be prodigal +To breathe the abundant dolour of the heart. + +JOHN OF GAUNT: +Thy grief is but thy absence for a time. + +HENRY BOLINGBROKE: +Joy absent, grief is present for that time. + +JOHN OF GAUNT: +What is six winters? they are quickly gone. + +HENRY BOLINGBROKE: +To men in joy; but grief makes one hour ten. + +JOHN OF GAUNT: +Call it a travel that thou takest for pleasure. + +HENRY BOLINGBROKE: +My heart will sigh when I miscall it so, +Which finds it an inforced pilgrimage. + +JOHN OF GAUNT: +The sullen passage of thy weary steps +Esteem as foil wherein thou art to set +The precious jewel of thy home return. + +HENRY BOLINGBROKE: +Nay, rather, every tedious stride I make +Will but remember me what a deal of world +I wander from the jewels that I love. +Must I not serve a long apprenticehood +To foreign passages, and in the end, +Having my freedom, boast of nothing else +But that I was a journeyman to grief? + +JOHN OF GAUNT: +All places that the eye of heaven visits +Are to a wise man ports and happy havens. +Teach thy necessity to reason thus; +There is no virtue like necessity. +Think not the king did banish thee, +But thou the king. Woe doth the heavier sit, +Where it perceives it is but faintly borne. +Go, say I sent thee forth to purchase honour +And not the king exiled thee; or suppose +Devouring pestilence hangs in our air +And thou art flying to a fresher clime: +Look, what thy soul holds dear, imagine it +To lie that way thou go'st, not whence thou comest: +Suppose the singing birds musicians, +The grass whereon thou tread'st the presence strew'd, +The flowers fair ladies, and thy steps no more +Than a delightful measure or a dance; +For gnarling sorrow hath less power to bite +The man that mocks at it and sets it light. + +HENRY BOLINGBROKE: +O, who can hold a fire in his hand +By thinking on the frosty Caucasus? +Or cloy the hungry edge of appetite +By bare imagination of a feast? +Or wallow naked in December snow +By thinking on fantastic summer's heat? +O, no! the apprehension of the good +Gives but the greater feeling to the worse: +Fell sorrow's tooth doth never rankle more +Than when he bites, but lanceth not the sore. + +JOHN OF GAUNT: +Come, come, my son, I'll bring thee on thy way: +Had I thy youth and cause, I would not stay. + +HENRY BOLINGBROKE: +Then, England's ground, farewell; sweet soil, adieu; +My mother, and my nurse, that bears me yet! +Where'er I wander, boast of this I can, +Though banish'd, yet a trueborn Englishman. + +KING RICHARD II: +We did observe. Cousin Aumerle, +How far brought you high Hereford on his way? + +DUKE OF AUMERLE: +I brought high Hereford, if you call him so, +But to the next highway, and there I left him. + +KING RICHARD II: +And say, what store of parting tears were shed? + +DUKE OF AUMERLE: +Faith, none for me; except the north-east wind, +Which then blew bitterly against our faces, +Awaked the sleeping rheum, and so by chance +Did grace our hollow parting with a tear. + +KING RICHARD II: +What said our cousin when you parted with him? + +DUKE OF AUMERLE: +'Farewell:' +And, for my heart disdained that my tongue +Should so profane the word, that taught me craft +To counterfeit oppression of such grief +That words seem'd buried in my sorrow's grave. +Marry, would the word 'farewell' have lengthen'd hours +And added years to his short banishment, +He should have had a volume of farewells; +But since it would not, he had none of me. + +KING RICHARD II: +He is our cousin, cousin; but 'tis doubt, +When time shall call him home from banishment, +Whether our kinsman come to see his friends. +Ourself and Bushy, Bagot here and Green +Observed his courtship to the common people; +How he did seem to dive into their hearts +With humble and familiar courtesy, +What reverence he did throw away on slaves, +Wooing poor craftsmen with the craft of smiles +And patient underbearing of his fortune, +As 'twere to banish their affects with him. +Off goes his bonnet to an oyster-wench; +A brace of draymen bid God speed him well +And had the tribute of his supple knee, +With 'Thanks, my countrymen, my loving friends;' +As were our England in reversion his, +And he our subjects' next degree in hope. + +GREEN: +Well, he is gone; and with him go these thoughts. +Now for the rebels which stand out in Ireland, +Expedient manage must be made, my liege, +Ere further leisure yield them further means +For their advantage and your highness' loss. + +KING RICHARD II: +We will ourself in person to this war: +And, for our coffers, with too great a court +And liberal largess, are grown somewhat light, +We are inforced to farm our royal realm; +The revenue whereof shall furnish us +For our affairs in hand: if that come short, +Our substitutes at home shall have blank charters; +Whereto, when they shall know what men are rich, +They shall subscribe them for large sums of gold +And send them after to supply our wants; +For we will make for Ireland presently. +Bushy, what news? + +BUSHY: +Old John of Gaunt is grievous sick, my lord, +Suddenly taken; and hath sent post haste +To entreat your majesty to visit him. + +KING RICHARD II: +Where lies he? + +BUSHY: +At Ely House. + +KING RICHARD II: +Now put it, God, in the physician's mind +To help him to his grave immediately! +The lining of his coffers shall make coats +To deck our soldiers for these Irish wars. +Come, gentlemen, let's all go visit him: +Pray God we may make haste, and come too late! + +All: +Amen. + +JOHN OF GAUNT: +Will the king come, that I may breathe my last +In wholesome counsel to his unstaid youth? + +DUKE OF YORK: +Vex not yourself, nor strive not with your breath; +For all in vain comes counsel to his ear. + +JOHN OF GAUNT: +O, but they say the tongues of dying men +Enforce attention like deep harmony: +Where words are scarce, they are seldom spent in vain, +For they breathe truth that breathe their words in pain. +He that no more must say is listen'd more +Than they whom youth and ease have taught to glose; +More are men's ends mark'd than their lives before: +The setting sun, and music at the close, +As the last taste of sweets, is sweetest last, +Writ in remembrance more than things long past: +Though Richard my life's counsel would not hear, +My death's sad tale may yet undeaf his ear. + +DUKE OF YORK: +No; it is stopp'd with other flattering sounds, +As praises, of whose taste the wise are fond, +Lascivious metres, to whose venom sound +The open ear of youth doth always listen; +Report of fashions in proud Italy, +Whose manners still our tardy apish nation +Limps after in base imitation. +Where doth the world thrust forth a vanity-- +So it be new, there's no respect how vile-- +That is not quickly buzzed into his ears? +Then all too late comes counsel to be heard, +Where will doth mutiny with wit's regard. +Direct not him whose way himself will choose: +'Tis breath thou lack'st, and that breath wilt thou lose. + +JOHN OF GAUNT: +Methinks I am a prophet new inspired +And thus expiring do foretell of him: +His rash fierce blaze of riot cannot last, +For violent fires soon burn out themselves; +Small showers last long, but sudden storms are short; +He tires betimes that spurs too fast betimes; +With eager feeding food doth choke the feeder: +Light vanity, insatiate cormorant, +Consuming means, soon preys upon itself. +This royal throne of kings, this scepter'd isle, +This earth of majesty, this seat of Mars, +This other Eden, demi-paradise, +This fortress built by Nature for herself +Against infection and the hand of war, +This happy breed of men, this little world, +This precious stone set in the silver sea, +Which serves it in the office of a wall, +Or as a moat defensive to a house, +Against the envy of less happier lands, +This blessed plot, this earth, this realm, this England, +This nurse, this teeming womb of royal kings, +Fear'd by their breed and famous by their birth, +Renowned for their deeds as far from home, +For Christian service and true chivalry, +As is the sepulchre in stubborn Jewry, +Of the world's ransom, blessed Mary's Son, +This land of such dear souls, this dear dear land, +Dear for her reputation through the world, +Is now leased out, I die pronouncing it, +Like to a tenement or pelting farm: +England, bound in with the triumphant sea +Whose rocky shore beats back the envious siege +Of watery Neptune, is now bound in with shame, +With inky blots and rotten parchment bonds: +That England, that was wont to conquer others, +Hath made a shameful conquest of itself. +Ah, would the scandal vanish with my life, +How happy then were my ensuing death! + +DUKE OF YORK: +The king is come: deal mildly with his youth; +For young hot colts being raged do rage the more. + +QUEEN: +How fares our noble uncle, Lancaster? + +KING RICHARD II: +What comfort, man? how is't with aged Gaunt? + +JOHN OF GAUNT: +O how that name befits my composition! +Old Gaunt indeed, and gaunt in being old: +Within me grief hath kept a tedious fast; +And who abstains from meat that is not gaunt? +For sleeping England long time have I watch'd; +Watching breeds leanness, leanness is all gaunt: +The pleasure that some fathers feed upon, +Is my strict fast; I mean, my children's looks; +And therein fasting, hast thou made me gaunt: +Gaunt am I for the grave, gaunt as a grave, +Whose hollow womb inherits nought but bones. + +KING RICHARD II: +Can sick men play so nicely with their names? + +JOHN OF GAUNT: +No, misery makes sport to mock itself: +Since thou dost seek to kill my name in me, +I mock my name, great king, to flatter thee. + +KING RICHARD II: +Should dying men flatter with those that live? + +JOHN OF GAUNT: +No, no, men living flatter those that die. + +KING RICHARD II: +Thou, now a-dying, say'st thou flatterest me. + +JOHN OF GAUNT: +O, no! thou diest, though I the sicker be. + +KING RICHARD II: +I am in health, I breathe, and see thee ill. + +JOHN OF GAUNT: +Now He that made me knows I see thee ill; +Ill in myself to see, and in thee seeing ill. +Thy death-bed is no lesser than thy land +Wherein thou liest in reputation sick; +And thou, too careless patient as thou art, +Commit'st thy anointed body to the cure +Of those physicians that first wounded thee: +A thousand flatterers sit within thy crown, +Whose compass is no bigger than thy head; +And yet, incaged in so small a verge, +The waste is no whit lesser than thy land. +O, had thy grandsire with a prophet's eye +Seen how his son's son should destroy his sons, +From forth thy reach he would have laid thy shame, +Deposing thee before thou wert possess'd, +Which art possess'd now to depose thyself. +Why, cousin, wert thou regent of the world, +It were a shame to let this land by lease; +But for thy world enjoying but this land, +Is it not more than shame to shame it so? +Landlord of England art thou now, not king: +Thy state of law is bondslave to the law; And thou-- + +KING RICHARD II: +A lunatic lean-witted fool, +Presuming on an ague's privilege, +Darest with thy frozen admonition +Make pale our cheek, chasing the royal blood +With fury from his native residence. +Now, by my seat's right royal majesty, +Wert thou not brother to great Edward's son, +This tongue that runs so roundly in thy head +Should run thy head from thy unreverent shoulders. + +JOHN OF GAUNT: +O, spare me not, my brother Edward's son, +For that I was his father Edward's son; +That blood already, like the pelican, +Hast thou tapp'd out and drunkenly caroused: +My brother Gloucester, plain well-meaning soul, +Whom fair befal in heaven 'mongst happy souls! +May be a precedent and witness good +That thou respect'st not spilling Edward's blood: +Join with the present sickness that I have; +And thy unkindness be like crooked age, +To crop at once a too long wither'd flower. +Live in thy shame, but die not shame with thee! +These words hereafter thy tormentors be! +Convey me to my bed, then to my grave: +Love they to live that love and honour have. + +KING RICHARD II: +And let them die that age and sullens have; +For both hast thou, and both become the grave. + +DUKE OF YORK: +I do beseech your majesty, impute his words +To wayward sickliness and age in him: +He loves you, on my life, and holds you dear +As Harry Duke of Hereford, were he here. + +KING RICHARD II: +Right, you say true: as Hereford's love, so his; +As theirs, so mine; and all be as it is. + +NORTHUMBERLAND: +My liege, old Gaunt commends him to your majesty. + +KING RICHARD II: +What says he? + +NORTHUMBERLAND: +Nay, nothing; all is said +His tongue is now a stringless instrument; +Words, life and all, old Lancaster hath spent. + +DUKE OF YORK: +Be York the next that must be bankrupt so! +Though death be poor, it ends a mortal woe. + +KING RICHARD II: +The ripest fruit first falls, and so doth he; +His time is spent, our pilgrimage must be. +So much for that. Now for our Irish wars: +We must supplant those rough rug-headed kerns, +Which live like venom where no venom else +But only they have privilege to live. +And for these great affairs do ask some charge, +Towards our assistance we do seize to us +The plate, corn, revenues and moveables, +Whereof our uncle Gaunt did stand possess'd. + +DUKE OF YORK: +How long shall I be patient? ah, how long +Shall tender duty make me suffer wrong? +Not Gloucester's death, nor Hereford's banishment +Not Gaunt's rebukes, nor England's private wrongs, +Nor the prevention of poor Bolingbroke +About his marriage, nor my own disgrace, +Have ever made me sour my patient cheek, +Or bend one wrinkle on my sovereign's face. +I am the last of noble Edward's sons, +Of whom thy father, Prince of Wales, was first: +In war was never lion raged more fierce, +In peace was never gentle lamb more mild, +Than was that young and princely gentleman. +His face thou hast, for even so look'd he, +Accomplish'd with the number of thy hours; +But when he frown'd, it was against the French +And not against his friends; his noble hand +Did will what he did spend and spent not that +Which his triumphant father's hand had won; +His hands were guilty of no kindred blood, +But bloody with the enemies of his kin. +O Richard! York is too far gone with grief, +Or else he never would compare between. + +KING RICHARD II: +Why, uncle, what's the matter? + +DUKE OF YORK: +O my liege, +Pardon me, if you please; if not, I, pleased +Not to be pardon'd, am content withal. +Seek you to seize and gripe into your hands +The royalties and rights of banish'd Hereford? +Is not Gaunt dead, and doth not Hereford live? +Was not Gaunt just, and is not Harry true? +Did not the one deserve to have an heir? +Is not his heir a well-deserving son? +Take Hereford's rights away, and take from Time +His charters and his customary rights; +Let not to-morrow then ensue to-day; +Be not thyself; for how art thou a king +But by fair sequence and succession? +Now, afore God--God forbid I say true!-- +If you do wrongfully seize Hereford's rights, +Call in the letters patent that he hath +By his attorneys-general to sue +His livery, and deny his offer'd homage, +You pluck a thousand dangers on your head, +You lose a thousand well-disposed hearts +And prick my tender patience, to those thoughts +Which honour and allegiance cannot think. + +KING RICHARD II: +Think what you will, we seize into our hands +His plate, his goods, his money and his lands. + +DUKE OF YORK: +I'll not be by the while: my liege, farewell: +What will ensue hereof, there's none can tell; +But by bad courses may be understood +That their events can never fall out good. + +KING RICHARD II: +Go, Bushy, to the Earl of Wiltshire straight: +Bid him repair to us to Ely House +To see this business. To-morrow next +We will for Ireland; and 'tis time, I trow: +And we create, in absence of ourself, +Our uncle York lord governor of England; +For he is just and always loved us well. +Come on, our queen: to-morrow must we part; +Be merry, for our time of stay is short + +NORTHUMBERLAND: +Well, lords, the Duke of Lancaster is dead. + +LORD ROSS: +And living too; for now his son is duke. + +LORD WILLOUGHBY: +Barely in title, not in revenue. + +NORTHUMBERLAND: +Richly in both, if justice had her right. + +LORD ROSS: +My heart is great; but it must break with silence, +Ere't be disburden'd with a liberal tongue. + +NORTHUMBERLAND: +Nay, speak thy mind; and let him ne'er speak more +That speaks thy words again to do thee harm! + +LORD WILLOUGHBY: +Tends that thou wouldst speak to the Duke of Hereford? +If it be so, out with it boldly, man; +Quick is mine ear to hear of good towards him. + +LORD ROSS: +No good at all that I can do for him; +Unless you call it good to pity him, +Bereft and gelded of his patrimony. + +NORTHUMBERLAND: +Now, afore God, 'tis shame such wrongs are borne +In him, a royal prince, and many moe +Of noble blood in this declining land. +The king is not himself, but basely led +By flatterers; and what they will inform, +Merely in hate, 'gainst any of us all, +That will the king severely prosecute +'Gainst us, our lives, our children, and our heirs. + +LORD ROSS: +The commons hath he pill'd with grievous taxes, +And quite lost their hearts: the nobles hath he fined +For ancient quarrels, and quite lost their hearts. + +LORD WILLOUGHBY: +And daily new exactions are devised, +As blanks, benevolences, and I wot not what: +But what, o' God's name, doth become of this? + +NORTHUMBERLAND: +Wars have not wasted it, for warr'd he hath not, +But basely yielded upon compromise +That which his noble ancestors achieved with blows: +More hath he spent in peace than they in wars. + +LORD ROSS: +The Earl of Wiltshire hath the realm in farm. + +LORD WILLOUGHBY: +The king's grown bankrupt, like a broken man. + +NORTHUMBERLAND: +Reproach and dissolution hangeth over him. + +LORD ROSS: +He hath not money for these Irish wars, +His burthenous taxations notwithstanding, +But by the robbing of the banish'd duke. + +NORTHUMBERLAND: +His noble kinsman: most degenerate king! +But, lords, we hear this fearful tempest sing, +Yet see no shelter to avoid the storm; +We see the wind sit sore upon our sails, +And yet we strike not, but securely perish. + +LORD ROSS: +We see the very wreck that we must suffer; +And unavoided is the danger now, +For suffering so the causes of our wreck. + +NORTHUMBERLAND: +Not so; even through the hollow eyes of death +I spy life peering; but I dare not say +How near the tidings of our comfort is. + +LORD WILLOUGHBY: +Nay, let us share thy thoughts, as thou dost ours. + +LORD ROSS: +Be confident to speak, Northumberland: +We three are but thyself; and, speaking so, +Thy words are but as thoughts; therefore, be bold. + +NORTHUMBERLAND: +Then thus: I have from Port le Blanc, a bay +In Brittany, received intelligence +That Harry Duke of Hereford, Rainold Lord Cobham, +That late broke from the Duke of Exeter, +His brother, Archbishop late of Canterbury, +Sir Thomas Erpingham, Sir John Ramston, +Sir John Norbery, Sir Robert Waterton and Francis Quoint, +All these well furnish'd by the Duke of Bretagne +With eight tall ships, three thousand men of war, +Are making hither with all due expedience +And shortly mean to touch our northern shore: +Perhaps they had ere this, but that they stay +The first departing of the king for Ireland. +If then we shall shake off our slavish yoke, +Imp out our drooping country's broken wing, +Redeem from broking pawn the blemish'd crown, +Wipe off the dust that hides our sceptre's gilt +And make high majesty look like itself, +Away with me in post to Ravenspurgh; +But if you faint, as fearing to do so, +Stay and be secret, and myself will go. + +LORD ROSS: +To horse, to horse! urge doubts to them that fear. + +LORD WILLOUGHBY: +Hold out my horse, and I will first be there. + +BUSHY: +Madam, your majesty is too much sad: +You promised, when you parted with the king, +To lay aside life-harming heaviness +And entertain a cheerful disposition. + +QUEEN: +To please the king I did; to please myself +I cannot do it; yet I know no cause +Why I should welcome such a guest as grief, +Save bidding farewell to so sweet a guest +As my sweet Richard: yet again, methinks, +Some unborn sorrow, ripe in fortune's womb, +Is coming towards me, and my inward soul +With nothing trembles: at some thing it grieves, +More than with parting from my lord the king. + +BUSHY: +Each substance of a grief hath twenty shadows, +Which shows like grief itself, but is not so; +For sorrow's eye, glazed with blinding tears, +Divides one thing entire to many objects; +Like perspectives, which rightly gazed upon +Show nothing but confusion, eyed awry +Distinguish form: so your sweet majesty, +Looking awry upon your lord's departure, +Find shapes of grief, more than himself, to wail; +Which, look'd on as it is, is nought but shadows +Of what it is not. Then, thrice-gracious queen, +More than your lord's departure weep not: more's not seen; +Or if it be, 'tis with false sorrow's eye, +Which for things true weeps things imaginary. + +QUEEN: +It may be so; but yet my inward soul +Persuades me it is otherwise: howe'er it be, +I cannot but be sad; so heavy sad +As, though on thinking on no thought I think, +Makes me with heavy nothing faint and shrink. + +BUSHY: +'Tis nothing but conceit, my gracious lady. + +QUEEN: +'Tis nothing less: conceit is still derived +From some forefather grief; mine is not so, +For nothing had begot my something grief; +Or something hath the nothing that I grieve: +'Tis in reversion that I do possess; +But what it is, that is not yet known; what +I cannot name; 'tis nameless woe, I wot. + +GREEN: +God save your majesty! and well met, gentlemen: +I hope the king is not yet shipp'd for Ireland. + +QUEEN: +Why hopest thou so? 'tis better hope he is; +For his designs crave haste, his haste good hope: +Then wherefore dost thou hope he is not shipp'd? + +GREEN: +That he, our hope, might have retired his power, +And driven into despair an enemy's hope, +Who strongly hath set footing in this land: +The banish'd Bolingbroke repeals himself, +And with uplifted arms is safe arrived +At Ravenspurgh. + +QUEEN: +Now God in heaven forbid! + +GREEN: +Ah, madam, 'tis too true: and that is worse, +The Lord Northumberland, his son young Henry Percy, +The Lords of Ross, Beaumond, and Willoughby, +With all their powerful friends, are fled to him. + +BUSHY: +Why have you not proclaim'd Northumberland +And all the rest revolted faction traitors? + +GREEN: +We have: whereupon the Earl of Worcester +Hath broke his staff, resign'd his stewardship, +And all the household servants fled with him +To Bolingbroke. + +QUEEN: +So, Green, thou art the midwife to my woe, +And Bolingbroke my sorrow's dismal heir: +Now hath my soul brought forth her prodigy, +And I, a gasping new-deliver'd mother, +Have woe to woe, sorrow to sorrow join'd. + +BUSHY: +Despair not, madam. + +QUEEN: +Who shall hinder me? +I will despair, and be at enmity +With cozening hope: he is a flatterer, +A parasite, a keeper back of death, +Who gently would dissolve the bands of life, +Which false hope lingers in extremity. + +GREEN: +Here comes the Duke of York. + +QUEEN: +With signs of war about his aged neck: +O, full of careful business are his looks! +Uncle, for God's sake, speak comfortable words. + +DUKE OF YORK: +Should I do so, I should belie my thoughts: +Comfort's in heaven; and we are on the earth, +Where nothing lives but crosses, cares and grief. +Your husband, he is gone to save far off, +Whilst others come to make him lose at home: +Here am I left to underprop his land, +Who, weak with age, cannot support myself: +Now comes the sick hour that his surfeit made; +Now shall he try his friends that flatter'd him. + +Servant: +My lord, your son was gone before I came. + +DUKE OF YORK: +He was? Why, so! go all which way it will! +The nobles they are fled, the commons they are cold, +And will, I fear, revolt on Hereford's side. +Sirrah, get thee to Plashy, to my sister Gloucester; +Bid her send me presently a thousand pound: +Hold, take my ring. + +Servant: +My lord, I had forgot to tell your lordship, +To-day, as I came by, I called there; +But I shall grieve you to report the rest. + +DUKE OF YORK: +What is't, knave? + +Servant: +An hour before I came, the duchess died. + +DUKE OF YORK: +God for his mercy! what a tide of woes +Comes rushing on this woeful land at once! +I know not what to do: I would to God, +So my untruth had not provoked him to it, +The king had cut off my head with my brother's. +What, are there no posts dispatch'd for Ireland? +How shall we do for money for these wars? +Come, sister,--cousin, I would say--pray, pardon me. +Go, fellow, get thee home, provide some carts +And bring away the armour that is there. +Gentlemen, will you go muster men? +If I know how or which way to order these affairs +Thus thrust disorderly into my hands, +Never believe me. Both are my kinsmen: +The one is my sovereign, whom both my oath +And duty bids defend; the other again +Is my kinsman, whom the king hath wrong'd, +Whom conscience and my kindred bids to right. +Well, somewhat we must do. Come, cousin, I'll +Dispose of you. +Gentlemen, go, muster up your men, +And meet me presently at Berkeley. +I should to Plashy too; +But time will not permit: all is uneven, +And every thing is left at six and seven. + +BUSHY: +The wind sits fair for news to go to Ireland, +But none returns. For us to levy power +Proportionable to the enemy +Is all unpossible. + +GREEN: +Besides, our nearness to the king in love +Is near the hate of those love not the king. + +BAGOT: +And that's the wavering commons: for their love +Lies in their purses, and whoso empties them +By so much fills their hearts with deadly hate. + +BUSHY: +Wherein the king stands generally condemn'd. + +BAGOT: +If judgement lie in them, then so do we, +Because we ever have been near the king. + +GREEN: +Well, I will for refuge straight to Bristol castle: +The Earl of Wiltshire is already there. + +BUSHY: +Thither will I with you; for little office +The hateful commons will perform for us, +Except like curs to tear us all to pieces. +Will you go along with us? + +BAGOT: +No; I will to Ireland to his majesty. +Farewell: if heart's presages be not vain, +We three here art that ne'er shall meet again. + +BUSHY: +That's as York thrives to beat back Bolingbroke. + +GREEN: +Alas, poor duke! the task he undertakes +Is numbering sands and drinking oceans dry: +Where one on his side fights, thousands will fly. +Farewell at once, for once, for all, and ever. + +BUSHY: +Well, we may meet again. + +BAGOT: +I fear me, never. + +HENRY BOLINGBROKE: +How far is it, my lord, to Berkeley now? + +NORTHUMBERLAND: +Believe me, noble lord, +I am a stranger here in Gloucestershire: +These high wild hills and rough uneven ways +Draws out our miles, and makes them wearisome, +And yet your fair discourse hath been as sugar, +Making the hard way sweet and delectable. +But I bethink me what a weary way +From Ravenspurgh to Cotswold will be found +In Ross and Willoughby, wanting your company, +Which, I protest, hath very much beguiled +The tediousness and process of my travel: +But theirs is sweetened with the hope to have +The present benefit which I possess; +And hope to joy is little less in joy +Than hope enjoy'd: by this the weary lords +Shall make their way seem short, as mine hath done +By sight of what I have, your noble company. + +HENRY BOLINGBROKE: +Of much less value is my company +Than your good words. But who comes here? + +NORTHUMBERLAND: +It is my son, young Harry Percy, +Sent from my brother Worcester, whencesoever. +Harry, how fares your uncle? + +HENRY PERCY: +I had thought, my lord, to have learn'd his health of you. + +NORTHUMBERLAND: +Why, is he not with the queen? + +HENRY PERCY: +No, my good Lord; he hath forsook the court, +Broken his staff of office and dispersed +The household of the king. + +NORTHUMBERLAND: +What was his reason? +He was not so resolved when last we spake together. + +HENRY PERCY: +Because your lordship was proclaimed traitor. +But he, my lord, is gone to Ravenspurgh, +To offer service to the Duke of Hereford, +And sent me over by Berkeley, to discover +What power the Duke of York had levied there; +Then with directions to repair to Ravenspurgh. + +NORTHUMBERLAND: +Have you forgot the Duke of Hereford, boy? + +HENRY PERCY: +No, my good lord, for that is not forgot +Which ne'er I did remember: to my knowledge, +I never in my life did look on him. + +NORTHUMBERLAND: +Then learn to know him now; this is the duke. + +HENRY PERCY: +My gracious lord, I tender you my service, +Such as it is, being tender, raw and young: +Which elder days shall ripen and confirm +To more approved service and desert. + +HENRY BOLINGBROKE: +I thank thee, gentle Percy; and be sure +I count myself in nothing else so happy +As in a soul remembering my good friends; +And, as my fortune ripens with thy love, +It shall be still thy true love's recompense: +My heart this covenant makes, my hand thus seals it. + +NORTHUMBERLAND: +How far is it to Berkeley? and what stir +Keeps good old York there with his men of war? + +HENRY PERCY: +There stands the castle, by yon tuft of trees, +Mann'd with three hundred men, as I have heard; +And in it are the Lords of York, Berkeley, and Seymour; +None else of name and noble estimate. + +NORTHUMBERLAND: +Here come the Lords of Ross and Willoughby, +Bloody with spurring, fiery-red with haste. + +HENRY BOLINGBROKE: +Welcome, my lords. I wot your love pursues +A banish'd traitor: all my treasury +Is yet but unfelt thanks, which more enrich'd +Shall be your love and labour's recompense. + +LORD ROSS: +Your presence makes us rich, most noble lord. + +LORD WILLOUGHBY: +And far surmounts our labour to attain it. + +HENRY BOLINGBROKE: +Evermore thanks, the exchequer of the poor; +Which, till my infant fortune comes to years, +Stands for my bounty. But who comes here? + +NORTHUMBERLAND: +It is my Lord of Berkeley, as I guess. + +LORD BERKELEY: +My Lord of Hereford, my message is to you. + +HENRY BOLINGBROKE: +My lord, my answer is--to Lancaster; +And I am come to seek that name in England; +And I must find that title in your tongue, +Before I make reply to aught you say. + +LORD BERKELEY: +Mistake me not, my lord; 'tis not my meaning +To raze one title of your honour out: +To you, my lord, I come, what lord you will, +From the most gracious regent of this land, +The Duke of York, to know what pricks you on +To take advantage of the absent time +And fright our native peace with self-born arms. + +HENRY BOLINGBROKE: +I shall not need transport my words by you; +Here comes his grace in person. My noble uncle! + +DUKE OF YORK: +Show me thy humble heart, and not thy knee, +Whose duty is deceiveable and false. + +HENRY BOLINGBROKE: +My gracious uncle-- + +DUKE OF YORK: +Tut, tut! +Grace me no grace, nor uncle me no uncle: +I am no traitor's uncle; and that word 'grace.' +In an ungracious mouth is but profane. +Why have those banish'd and forbidden legs +Dared once to touch a dust of England's ground? +But then more 'why?' why have they dared to march +So many miles upon her peaceful bosom, +Frighting her pale-faced villages with war +And ostentation of despised arms? +Comest thou because the anointed king is hence? +Why, foolish boy, the king is left behind, +And in my loyal bosom lies his power. +Were I but now the lord of such hot youth +As when brave Gaunt, thy father, and myself +Rescued the Black Prince, that young Mars of men, +From forth the ranks of many thousand French, +O, then how quickly should this arm of mine. +Now prisoner to the palsy, chastise thee +And minister correction to thy fault! + +HENRY BOLINGBROKE: +My gracious uncle, let me know my fault: +On what condition stands it and wherein? + +DUKE OF YORK: +Even in condition of the worst degree, +In gross rebellion and detested treason: +Thou art a banish'd man, and here art come +Before the expiration of thy time, +In braving arms against thy sovereign. + +HENRY BOLINGBROKE: +As I was banish'd, I was banish'd Hereford; +But as I come, I come for Lancaster. +And, noble uncle, I beseech your grace +Look on my wrongs with an indifferent eye: +You are my father, for methinks in you +I see old Gaunt alive; O, then, my father, +Will you permit that I shall stand condemn'd +A wandering vagabond; my rights and royalties +Pluck'd from my arms perforce and given away +To upstart unthrifts? Wherefore was I born? +If that my cousin king be King of England, +It must be granted I am Duke of Lancaster. +You have a son, Aumerle, my noble cousin; +Had you first died, and he been thus trod down, +He should have found his uncle Gaunt a father, +To rouse his wrongs and chase them to the bay. +I am denied to sue my livery here, +And yet my letters-patents give me leave: +My father's goods are all distrain'd and sold, +And these and all are all amiss employ'd. +What would you have me do? I am a subject, +And I challenge law: attorneys are denied me; +And therefore, personally I lay my claim +To my inheritance of free descent. + +NORTHUMBERLAND: +The noble duke hath been too much abused. + +LORD ROSS: +It stands your grace upon to do him right. + +LORD WILLOUGHBY: +Base men by his endowments are made great. + +DUKE OF YORK: +My lords of England, let me tell you this: +I have had feeling of my cousin's wrongs +And laboured all I could to do him right; +But in this kind to come, in braving arms, +Be his own carver and cut out his way, +To find out right with wrong, it may not be; +And you that do abet him in this kind +Cherish rebellion and are rebels all. + +NORTHUMBERLAND: +The noble duke hath sworn his coming is +But for his own; and for the right of that +We all have strongly sworn to give him aid; +And let him ne'er see joy that breaks that oath! + +DUKE OF YORK: +Well, well, I see the issue of these arms: +I cannot mend it, I must needs confess, +Because my power is weak and all ill left: +But if I could, by Him that gave me life, +I would attach you all and make you stoop +Unto the sovereign mercy of the king; +But since I cannot, be it known to you +I do remain as neuter. So, fare you well; +Unless you please to enter in the castle +And there repose you for this night. + +HENRY BOLINGBROKE: +An offer, uncle, that we will accept: +But we must win your grace to go with us +To Bristol castle, which they say is held +By Bushy, Bagot and their complices, +The caterpillars of the commonwealth, +Which I have sworn to weed and pluck away. + +DUKE OF YORK: +It may be I will go with you: but yet I'll pause; +For I am loath to break our country's laws. +Nor friends nor foes, to me welcome you are: +Things past redress are now with me past care. + +Captain: +My lord of Salisbury, we have stay'd ten days, +And hardly kept our countrymen together, +And yet we hear no tidings from the king; +Therefore we will disperse ourselves: farewell. + +EARL OF SALISBURY: +Stay yet another day, thou trusty Welshman: +The king reposeth all his confidence in thee. + +Captain: +'Tis thought the king is dead; we will not stay. +The bay-trees in our country are all wither'd +And meteors fright the fixed stars of heaven; +The pale-faced moon looks bloody on the earth +And lean-look'd prophets whisper fearful change; +Rich men look sad and ruffians dance and leap, +The one in fear to lose what they enjoy, +The other to enjoy by rage and war: +These signs forerun the death or fall of kings. +Farewell: our countrymen are gone and fled, +As well assured Richard their king is dead. + +EARL OF SALISBURY: +Ah, Richard, with the eyes of heavy mind +I see thy glory like a shooting star +Fall to the base earth from the firmament. +Thy sun sets weeping in the lowly west, +Witnessing storms to come, woe and unrest: +Thy friends are fled to wait upon thy foes, +And crossly to thy good all fortune goes. + +HENRY BOLINGBROKE: +Bring forth these men. +Bushy and Green, I will not vex your souls-- +Since presently your souls must part your bodies-- +With too much urging your pernicious lives, +For 'twere no charity; yet, to wash your blood +From off my hands, here in the view of men +I will unfold some causes of your deaths. +You have misled a prince, a royal king, +A happy gentleman in blood and lineaments, +By you unhappied and disfigured clean: +You have in manner with your sinful hours +Made a divorce betwixt his queen and him, +Broke the possession of a royal bed +And stain'd the beauty of a fair queen's cheeks +With tears drawn from her eyes by your foul wrongs. +Myself, a prince by fortune of my birth, +Near to the king in blood, and near in love +Till you did make him misinterpret me, +Have stoop'd my neck under your injuries, +And sigh'd my English breath in foreign clouds, +Eating the bitter bread of banishment; +Whilst you have fed upon my signories, +Dispark'd my parks and fell'd my forest woods, +From my own windows torn my household coat, +Razed out my imprese, leaving me no sign, +Save men's opinions and my living blood, +To show the world I am a gentleman. +This and much more, much more than twice all this, +Condemns you to the death. See them deliver'd over +To execution and the hand of death. + +BUSHY: +More welcome is the stroke of death to me +Than Bolingbroke to England. Lords, farewell. + +GREEN: +My comfort is that heaven will take our souls +And plague injustice with the pains of hell. + +HENRY BOLINGBROKE: +My Lord Northumberland, see them dispatch'd. +Uncle, you say the queen is at your house; +For God's sake, fairly let her be entreated: +Tell her I send to her my kind commends; +Take special care my greetings be deliver'd. + +DUKE OF YORK: +A gentleman of mine I have dispatch'd +With letters of your love to her at large. + +HENRY BOLINGBROKE: +Thank, gentle uncle. Come, lords, away. +To fight with Glendower and his complices: +Awhile to work, and after holiday. + +KING RICHARD II: +Barkloughly castle call they this at hand? + +DUKE OF AUMERLE: +Yea, my lord. How brooks your grace the air, +After your late tossing on the breaking seas? + +KING RICHARD II: +Needs must I like it well: I weep for joy +To stand upon my kingdom once again. +Dear earth, I do salute thee with my hand, +Though rebels wound thee with their horses' hoofs: +As a long-parted mother with her child +Plays fondly with her tears and smiles in meeting, +So, weeping, smiling, greet I thee, my earth, +And do thee favours with my royal hands. +Feed not thy sovereign's foe, my gentle earth, +Nor with thy sweets comfort his ravenous sense; +But let thy spiders, that suck up thy venom, +And heavy-gaited toads lie in their way, +Doing annoyance to the treacherous feet +Which with usurping steps do trample thee: +Yield stinging nettles to mine enemies; +And when they from thy bosom pluck a flower, +Guard it, I pray thee, with a lurking adder +Whose double tongue may with a mortal touch +Throw death upon thy sovereign's enemies. +Mock not my senseless conjuration, lords: +This earth shall have a feeling and these stones +Prove armed soldiers, ere her native king +Shall falter under foul rebellion's arms. + +BISHOP OF CARLISLE: +Fear not, my lord: that Power that made you king +Hath power to keep you king in spite of all. +The means that heaven yields must be embraced, +And not neglected; else, if heaven would, +And we will not, heaven's offer we refuse, +The proffer'd means of succor and redress. + +DUKE OF AUMERLE: +He means, my lord, that we are too remiss; +Whilst Bolingbroke, through our security, +Grows strong and great in substance and in power. + +KING RICHARD II: +Discomfortable cousin! know'st thou not +That when the searching eye of heaven is hid, +Behind the globe, that lights the lower world, +Then thieves and robbers range abroad unseen +In murders and in outrage, boldly here; +But when from under this terrestrial ball +He fires the proud tops of the eastern pines +And darts his light through every guilty hole, +Then murders, treasons and detested sins, +The cloak of night being pluck'd from off their backs, +Stand bare and naked, trembling at themselves? +So when this thief, this traitor, Bolingbroke, +Who all this while hath revell'd in the night +Whilst we were wandering with the antipodes, +Shall see us rising in our throne, the east, +His treasons will sit blushing in his face, +Not able to endure the sight of day, +But self-affrighted tremble at his sin. +Not all the water in the rough rude sea +Can wash the balm off from an anointed king; +The breath of worldly men cannot depose +The deputy elected by the Lord: +For every man that Bolingbroke hath press'd +To lift shrewd steel against our golden crown, +God for his Richard hath in heavenly pay +A glorious angel: then, if angels fight, +Weak men must fall, for heaven still guards the right. +Welcome, my lord how far off lies your power? + +EARL OF SALISBURY: +Nor near nor farther off, my gracious lord, +Than this weak arm: discomfort guides my tongue +And bids me speak of nothing but despair. +One day too late, I fear me, noble lord, +Hath clouded all thy happy days on earth: +O, call back yesterday, bid time return, +And thou shalt have twelve thousand fighting men! +To-day, to-day, unhappy day, too late, +O'erthrows thy joys, friends, fortune and thy state: +For all the Welshmen, hearing thou wert dead. +Are gone to Bolingbroke, dispersed and fled. + +DUKE OF AUMERLE: +Comfort, my liege; why looks your grace so pale? + +KING RICHARD II: +But now the blood of twenty thousand men +Did triumph in my face, and they are fled; +And, till so much blood thither come again, +Have I not reason to look pale and dead? +All souls that will be safe fly from my side, +For time hath set a blot upon my pride. + +DUKE OF AUMERLE: +Comfort, my liege; remember who you are. + +KING RICHARD II: +I had forgot myself; am I not king? +Awake, thou coward majesty! thou sleepest. +Is not the king's name twenty thousand names? +Arm, arm, my name! a puny subject strikes +At thy great glory. Look not to the ground, +Ye favourites of a king: are we not high? +High be our thoughts: I know my uncle York +Hath power enough to serve our turn. But who comes here? + +SIR STEPHEN SCROOP: +More health and happiness betide my liege +Than can my care-tuned tongue deliver him! + +KING RICHARD II: +Mine ear is open and my heart prepared; +The worst is worldly loss thou canst unfold. +Say, is my kingdom lost? why, 'twas my care +And what loss is it to be rid of care? +Strives Bolingbroke to be as great as we? +Greater he shall not be; if he serve God, +We'll serve Him too and be his fellow so: +Revolt our subjects? that we cannot mend; +They break their faith to God as well as us: +Cry woe, destruction, ruin and decay: +The worst is death, and death will have his day. + +SIR STEPHEN SCROOP: +Glad am I that your highness is so arm'd +To bear the tidings of calamity. +Like an unseasonable stormy day, +Which makes the silver rivers drown their shores, +As if the world were all dissolved to tears, +So high above his limits swells the rage +Of Bolingbroke, covering your fearful land +With hard bright steel and hearts harder than steel. +White-beards have arm'd their thin and hairless scalps +Against thy majesty; boys, with women's voices, +Strive to speak big and clap their female joints +In stiff unwieldy arms against thy crown: +The very beadsmen learn to bend their bows +Of double-fatal yew against thy state; +Yea, distaff-women manage rusty bills +Against thy seat: both young and old rebel, +And all goes worse than I have power to tell. + +KING RICHARD II: +Too well, too well thou tell'st a tale so ill. +Where is the Earl of Wiltshire? where is Bagot? +What is become of Bushy? where is Green? +That they have let the dangerous enemy +Measure our confines with such peaceful steps? +If we prevail, their heads shall pay for it: +I warrant they have made peace with Bolingbroke. + +SIR STEPHEN SCROOP: +Peace have they made with him indeed, my lord. + +KING RICHARD II: +O villains, vipers, damn'd without redemption! +Dogs, easily won to fawn on any man! +Snakes, in my heart-blood warm'd, that sting my heart! +Three Judases, each one thrice worse than Judas! +Would they make peace? terrible hell make war +Upon their spotted souls for this offence! + +SIR STEPHEN SCROOP: +Sweet love, I see, changing his property, +Turns to the sourest and most deadly hate: +Again uncurse their souls; their peace is made +With heads, and not with hands; those whom you curse +Have felt the worst of death's destroying wound +And lie full low, graved in the hollow ground. + +DUKE OF AUMERLE: +Is Bushy, Green, and the Earl of Wiltshire dead? + +SIR STEPHEN SCROOP: +Ay, all of them at Bristol lost their heads. + +DUKE OF AUMERLE: +Where is the duke my father with his power? + +KING RICHARD II: +No matter where; of comfort no man speak: +Let's talk of graves, of worms, and epitaphs; +Make dust our paper and with rainy eyes +Write sorrow on the bosom of the earth, +Let's choose executors and talk of wills: +And yet not so, for what can we bequeath +Save our deposed bodies to the ground? +Our lands, our lives and all are Bolingbroke's, +And nothing can we call our own but death +And that small model of the barren earth +Which serves as paste and cover to our bones. +For God's sake, let us sit upon the ground +And tell sad stories of the death of kings; +How some have been deposed; some slain in war, +Some haunted by the ghosts they have deposed; +Some poison'd by their wives: some sleeping kill'd; +All murder'd: for within the hollow crown +That rounds the mortal temples of a king +Keeps Death his court and there the antic sits, +Scoffing his state and grinning at his pomp, +Allowing him a breath, a little scene, +To monarchize, be fear'd and kill with looks, +Infusing him with self and vain conceit, +As if this flesh which walls about our life, +Were brass impregnable, and humour'd thus +Comes at the last and with a little pin +Bores through his castle wall, and farewell king! +Cover your heads and mock not flesh and blood +With solemn reverence: throw away respect, +Tradition, form and ceremonious duty, +For you have but mistook me all this while: +I live with bread like you, feel want, +Taste grief, need friends: subjected thus, +How can you say to me, I am a king? + +BISHOP OF CARLISLE: +My lord, wise men ne'er sit and wail their woes, +But presently prevent the ways to wail. +To fear the foe, since fear oppresseth strength, +Gives in your weakness strength unto your foe, +And so your follies fight against yourself. +Fear and be slain; no worse can come to fight: +And fight and die is death destroying death; +Where fearing dying pays death servile breath. + +DUKE OF AUMERLE: +My father hath a power; inquire of him +And learn to make a body of a limb. + +KING RICHARD II: +Thou chidest me well: proud Bolingbroke, I come +To change blows with thee for our day of doom. +This ague fit of fear is over-blown; +An easy task it is to win our own. +Say, Scroop, where lies our uncle with his power? +Speak sweetly, man, although thy looks be sour. + +SIR STEPHEN SCROOP: +Men judge by the complexion of the sky +The state and inclination of the day: +So may you by my dull and heavy eye, +My tongue hath but a heavier tale to say. +I play the torturer, by small and small +To lengthen out the worst that must be spoken: +Your uncle York is join'd with Bolingbroke, +And all your northern castles yielded up, +And all your southern gentlemen in arms +Upon his party. + +KING RICHARD II: +Thou hast said enough. +Beshrew thee, cousin, which didst lead me forth +Of that sweet way I was in to despair! +What say you now? what comfort have we now? +By heaven, I'll hate him everlastingly +That bids me be of comfort any more. +Go to Flint castle: there I'll pine away; +A king, woe's slave, shall kingly woe obey. +That power I have, discharge; and let them go +To ear the land that hath some hope to grow, +For I have none: let no man speak again +To alter this, for counsel is but vain. + +DUKE OF AUMERLE: +My liege, one word. + +KING RICHARD II: +He does me double wrong +That wounds me with the flatteries of his tongue. +Discharge my followers: let them hence away, +From Richard's night to Bolingbroke's fair day. + +HENRY BOLINGBROKE: +So that by this intelligence we learn +The Welshmen are dispersed, and Salisbury +Is gone to meet the king, who lately landed +With some few private friends upon this coast. + +NORTHUMBERLAND: +The news is very fair and good, my lord: +Richard not far from hence hath hid his head. + +DUKE OF YORK: +It would beseem the Lord Northumberland +To say 'King Richard:' alack the heavy day +When such a sacred king should hide his head. + +NORTHUMBERLAND: +Your grace mistakes; only to be brief +Left I his title out. + +DUKE OF YORK: +The time hath been, +Would you have been so brief with him, he would +Have been so brief with you, to shorten you, +For taking so the head, your whole head's length. + +HENRY BOLINGBROKE: +Mistake not, uncle, further than you should. + +DUKE OF YORK: +Take not, good cousin, further than you should. +Lest you mistake the heavens are o'er our heads. + +HENRY BOLINGBROKE: +I know it, uncle, and oppose not myself +Against their will. But who comes here? +Welcome, Harry: what, will not this castle yield? + +HENRY PERCY: +The castle royally is mann'd, my lord, +Against thy entrance. + +HENRY BOLINGBROKE: +Royally! +Why, it contains no king? + +HENRY PERCY: +Yes, my good lord, +It doth contain a king; King Richard lies +Within the limits of yon lime and stone: +And with him are the Lord Aumerle, Lord Salisbury, +Sir Stephen Scroop, besides a clergyman +Of holy reverence; who, I cannot learn. + +NORTHUMBERLAND: +O, belike it is the Bishop of Carlisle. + +HENRY BOLINGBROKE: +Noble lords, +Go to the rude ribs of that ancient castle; +Through brazen trumpet send the breath of parley +Into his ruin'd ears, and thus deliver: +Henry Bolingbroke +On both his knees doth kiss King Richard's hand +And sends allegiance and true faith of heart +To his most royal person, hither come +Even at his feet to lay my arms and power, +Provided that my banishment repeal'd +And lands restored again be freely granted: +If not, I'll use the advantage of my power +And lay the summer's dust with showers of blood +Rain'd from the wounds of slaughter'd Englishmen: +The which, how far off from the mind of Bolingbroke +It is, such crimson tempest should bedrench +The fresh green lap of fair King Richard's land, +My stooping duty tenderly shall show. +Go, signify as much, while here we march +Upon the grassy carpet of this plain. +Let's march without the noise of threatening drum, +That from this castle's tatter'd battlements +Our fair appointments may be well perused. +Methinks King Richard and myself should meet +With no less terror than the elements +Of fire and water, when their thundering shock +At meeting tears the cloudy cheeks of heaven. +Be he the fire, I'll be the yielding water: +The rage be his, whilst on the earth I rain +My waters; on the earth, and not on him. +March on, and mark King Richard how he looks. +See, see, King Richard doth himself appear, +As doth the blushing discontented sun +From out the fiery portal of the east, +When he perceives the envious clouds are bent +To dim his glory and to stain the track +Of his bright passage to the occident. + +DUKE OF YORK: +Yet looks he like a king: behold, his eye, +As bright as is the eagle's, lightens forth +Controlling majesty: alack, alack, for woe, +That any harm should stain so fair a show! + +KING RICHARD II: +We are amazed; and thus long have we stood +To watch the fearful bending of thy knee, +Because we thought ourself thy lawful king: +And if we be, how dare thy joints forget +To pay their awful duty to our presence? +If we be not, show us the hand of God +That hath dismissed us from our stewardship; +For well we know, no hand of blood and bone +Can gripe the sacred handle of our sceptre, +Unless he do profane, steal, or usurp. +And though you think that all, as you have done, +Have torn their souls by turning them from us, +And we are barren and bereft of friends; +Yet know, my master, God omnipotent, +Is mustering in his clouds on our behalf +Armies of pestilence; and they shall strike +Your children yet unborn and unbegot, +That lift your vassal hands against my head +And threat the glory of my precious crown. +Tell Bolingbroke--for yond methinks he stands-- +That every stride he makes upon my land +Is dangerous treason: he is come to open +The purple testament of bleeding war; +But ere the crown he looks for live in peace, +Ten thousand bloody crowns of mothers' sons +Shall ill become the flower of England's face, +Change the complexion of her maid-pale peace +To scarlet indignation and bedew +Her pastures' grass with faithful English blood. + +NORTHUMBERLAND: +The king of heaven forbid our lord the king +Should so with civil and uncivil arms +Be rush'd upon! Thy thrice noble cousin +Harry Bolingbroke doth humbly kiss thy hand; +And by the honourable tomb he swears, +That stands upon your royal grandsire's bones, +And by the royalties of both your bloods, +Currents that spring from one most gracious head, +And by the buried hand of warlike Gaunt, +And by the worth and honour of himself, +Comprising all that may be sworn or said, +His coming hither hath no further scope +Than for his lineal royalties and to beg +Enfranchisement immediate on his knees: +Which on thy royal party granted once, +His glittering arms he will commend to rust, +His barbed steeds to stables, and his heart +To faithful service of your majesty. +This swears he, as he is a prince, is just; +And, as I am a gentleman, I credit him. + +KING RICHARD II: +Northumberland, say thus the king returns: +His noble cousin is right welcome hither; +And all the number of his fair demands +Shall be accomplish'd without contradiction: +With all the gracious utterance thou hast +Speak to his gentle hearing kind commends. +We do debase ourselves, cousin, do we not, +To look so poorly and to speak so fair? +Shall we call back Northumberland, and send +Defiance to the traitor, and so die? + +DUKE OF AUMERLE: +No, good my lord; let's fight with gentle words +Till time lend friends and friends their helpful swords. + +KING RICHARD II: +O God, O God! that e'er this tongue of mine, +That laid the sentence of dread banishment +On yon proud man, should take it off again +With words of sooth! O that I were as great +As is my grief, or lesser than my name! +Or that I could forget what I have been, +Or not remember what I must be now! +Swell'st thou, proud heart? I'll give thee scope to beat, +Since foes have scope to beat both thee and me. + +DUKE OF AUMERLE: +Northumberland comes back from Bolingbroke. + +KING RICHARD II: +What must the king do now? must he submit? +The king shall do it: must he be deposed? +The king shall be contented: must he lose +The name of king? o' God's name, let it go: +I'll give my jewels for a set of beads, +My gorgeous palace for a hermitage, +My gay apparel for an almsman's gown, +My figured goblets for a dish of wood, +My sceptre for a palmer's walking staff, +My subjects for a pair of carved saints +And my large kingdom for a little grave, +A little little grave, an obscure grave; +Or I'll be buried in the king's highway, +Some way of common trade, where subjects' feet +May hourly trample on their sovereign's head; +For on my heart they tread now whilst I live; +And buried once, why not upon my head? +Aumerle, thou weep'st, my tender-hearted cousin! +We'll make foul weather with despised tears; +Our sighs and they shall lodge the summer corn, +And make a dearth in this revolting land. +Or shall we play the wantons with our woes, +And make some pretty match with shedding tears? +As thus, to drop them still upon one place, +Till they have fretted us a pair of graves +Within the earth; and, therein laid,--there lies +Two kinsmen digg'd their graves with weeping eyes. +Would not this ill do well? Well, well, I see +I talk but idly, and you laugh at me. +Most mighty prince, my Lord Northumberland, +What says King Bolingbroke? will his majesty +Give Richard leave to live till Richard die? +You make a leg, and Bolingbroke says ay. + +NORTHUMBERLAND: +My lord, in the base court he doth attend +To speak with you; may it please you to come down. + +KING RICHARD II: +Down, down I come; like glistering Phaethon, +Wanting the manage of unruly jades. +In the base court? Base court, where kings grow base, +To come at traitors' calls and do them grace. +In the base court? Come down? Down, court! +down, king! +For night-owls shriek where mounting larks +should sing. + +HENRY BOLINGBROKE: +What says his majesty? + +NORTHUMBERLAND: +Sorrow and grief of heart +Makes him speak fondly, like a frantic man +Yet he is come. + +HENRY BOLINGBROKE: +Stand all apart, +And show fair duty to his majesty. +My gracious lord,-- + +KING RICHARD II: +Fair cousin, you debase your princely knee +To make the base earth proud with kissing it: +Me rather had my heart might feel your love +Than my unpleased eye see your courtesy. +Up, cousin, up; your heart is up, I know, +Thus high at least, although your knee be low. + +HENRY BOLINGBROKE: +My gracious lord, I come but for mine own. + +KING RICHARD II: +Your own is yours, and I am yours, and all. + +HENRY BOLINGBROKE: +So far be mine, my most redoubted lord, +As my true service shall deserve your love. + +KING RICHARD II: +Well you deserve: they well deserve to have, +That know the strong'st and surest way to get. +Uncle, give me your hands: nay, dry your eyes; +Tears show their love, but want their remedies. +Cousin, I am too young to be your father, +Though you are old enough to be my heir. +What you will have, I'll give, and willing too; +For do we must what force will have us do. +Set on towards London, cousin, is it so? + +HENRY BOLINGBROKE: +Yea, my good lord. + +KING RICHARD II: +Then I must not say no. + +QUEEN: +What sport shall we devise here in this garden, +To drive away the heavy thought of care? + +Lady: +Madam, we'll play at bowls. + +QUEEN: +'Twill make me think the world is full of rubs, +And that my fortune rubs against the bias. + +Lady: +Madam, we'll dance. + +QUEEN: +My legs can keep no measure in delight, +When my poor heart no measure keeps in grief: +Therefore, no dancing, girl; some other sport. + +Lady: +Madam, we'll tell tales. + +QUEEN: +Of sorrow or of joy? + +Lady: +Of either, madam. + +QUEEN: +Of neither, girl: +For of joy, being altogether wanting, +It doth remember me the more of sorrow; +Or if of grief, being altogether had, +It adds more sorrow to my want of joy: +For what I have I need not to repeat; +And what I want it boots not to complain. + +Lady: +Madam, I'll sing. + +QUEEN: +'Tis well that thou hast cause +But thou shouldst please me better, wouldst thou weep. + +Lady: +I could weep, madam, would it do you good. + +QUEEN: +And I could sing, would weeping do me good, +And never borrow any tear of thee. +But stay, here come the gardeners: +Let's step into the shadow of these trees. +My wretchedness unto a row of pins, +They'll talk of state; for every one doth so +Against a change; woe is forerun with woe. + +Gardener: +Go, bind thou up yon dangling apricocks, +Which, like unruly children, make their sire +Stoop with oppression of their prodigal weight: +Give some supportance to the bending twigs. +Go thou, and like an executioner, +Cut off the heads of too fast growing sprays, +That look too lofty in our commonwealth: +All must be even in our government. +You thus employ'd, I will go root away +The noisome weeds, which without profit suck +The soil's fertility from wholesome flowers. + +Servant: +Why should we in the compass of a pale +Keep law and form and due proportion, +Showing, as in a model, our firm estate, +When our sea-walled garden, the whole land, +Is full of weeds, her fairest flowers choked up, +Her fruit-trees all upturned, her hedges ruin'd, +Her knots disorder'd and her wholesome herbs +Swarming with caterpillars? + +Gardener: +Hold thy peace: +He that hath suffer'd this disorder'd spring +Hath now himself met with the fall of leaf: +The weeds which his broad-spreading leaves did shelter, +That seem'd in eating him to hold him up, +Are pluck'd up root and all by Bolingbroke, +I mean the Earl of Wiltshire, Bushy, Green. + +Servant: +What, are they dead? + +Gardener: +They are; and Bolingbroke +Hath seized the wasteful king. O, what pity is it +That he had not so trimm'd and dress'd his land +As we this garden! We at time of year +Do wound the bark, the skin of our fruit-trees, +Lest, being over-proud in sap and blood, +With too much riches it confound itself: +Had he done so to great and growing men, +They might have lived to bear and he to taste +Their fruits of duty: superfluous branches +We lop away, that bearing boughs may live: +Had he done so, himself had borne the crown, +Which waste of idle hours hath quite thrown down. + +Servant: +What, think you then the king shall be deposed? + +Gardener: +Depress'd he is already, and deposed +'Tis doubt he will be: letters came last night +To a dear friend of the good Duke of York's, +That tell black tidings. + +QUEEN: +O, I am press'd to death through want of speaking! +Thou, old Adam's likeness, set to dress this garden, +How dares thy harsh rude tongue sound this unpleasing news? +What Eve, what serpent, hath suggested thee +To make a second fall of cursed man? +Why dost thou say King Richard is deposed? +Darest thou, thou little better thing than earth, +Divine his downfall? Say, where, when, and how, +Camest thou by this ill tidings? speak, thou wretch. + +Gardener: +Pardon me, madam: little joy have I +To breathe this news; yet what I say is true. +King Richard, he is in the mighty hold +Of Bolingbroke: their fortunes both are weigh'd: +In your lord's scale is nothing but himself, +And some few vanities that make him light; +But in the balance of great Bolingbroke, +Besides himself, are all the English peers, +And with that odds he weighs King Richard down. +Post you to London, and you will find it so; +I speak no more than every one doth know. + +QUEEN: +Nimble mischance, that art so light of foot, +Doth not thy embassage belong to me, +And am I last that knows it? O, thou think'st +To serve me last, that I may longest keep +Thy sorrow in my breast. Come, ladies, go, +To meet at London London's king in woe. +What, was I born to this, that my sad look +Should grace the triumph of great Bolingbroke? +Gardener, for telling me these news of woe, +Pray God the plants thou graft'st may never grow. + +GARDENER: +Poor queen! so that thy state might be no worse, +I would my skill were subject to thy curse. +Here did she fall a tear; here in this place +I'll set a bank of rue, sour herb of grace: +Rue, even for ruth, here shortly shall be seen, +In the remembrance of a weeping queen. + +HENRY BOLINGBROKE: +Call forth Bagot. +Now, Bagot, freely speak thy mind; +What thou dost know of noble Gloucester's death, +Who wrought it with the king, and who perform'd +The bloody office of his timeless end. + +BAGOT: +Then set before my face the Lord Aumerle. + +HENRY BOLINGBROKE: +Cousin, stand forth, and look upon that man. + +BAGOT: +My Lord Aumerle, I know your daring tongue +Scorns to unsay what once it hath deliver'd. +In that dead time when Gloucester's death was plotted, +I heard you say, 'Is not my arm of length, +That reacheth from the restful English court +As far as Calais, to mine uncle's head?' +Amongst much other talk, that very time, +I heard you say that you had rather refuse +The offer of an hundred thousand crowns +Than Bolingbroke's return to England; +Adding withal how blest this land would be +In this your cousin's death. + +DUKE OF AUMERLE: +Princes and noble lords, +What answer shall I make to this base man? +Shall I so much dishonour my fair stars, +On equal terms to give him chastisement? +Either I must, or have mine honour soil'd +With the attainder of his slanderous lips. +There is my gage, the manual seal of death, +That marks thee out for hell: I say, thou liest, +And will maintain what thou hast said is false +In thy heart-blood, though being all too base +To stain the temper of my knightly sword. + +HENRY BOLINGBROKE: +Bagot, forbear; thou shalt not take it up. + +DUKE OF AUMERLE: +Excepting one, I would he were the best +In all this presence that hath moved me so. + +LORD FITZWATER: +If that thy valour stand on sympathy, +There is my gage, Aumerle, in gage to thine: +By that fair sun which shows me where thou stand'st, +I heard thee say, and vauntingly thou spakest it +That thou wert cause of noble Gloucester's death. +If thou deny'st it twenty times, thou liest; +And I will turn thy falsehood to thy heart, +Where it was forged, with my rapier's point. + +DUKE OF AUMERLE: +Thou darest not, coward, live to see that day. + +LORD FITZWATER: +Now by my soul, I would it were this hour. + +DUKE OF AUMERLE: +Fitzwater, thou art damn'd to hell for this. + +HENRY PERCY: +Aumerle, thou liest; his honour is as true +In this appeal as thou art all unjust; +And that thou art so, there I throw my gage, +To prove it on thee to the extremest point +Of mortal breathing: seize it, if thou darest. + +DUKE OF AUMERLE: +An if I do not, may my hands rot off +And never brandish more revengeful steel +Over the glittering helmet of my foe! + +Lord: +I task the earth to the like, forsworn Aumerle; +And spur thee on with full as many lies +As may be holloa'd in thy treacherous ear +From sun to sun: there is my honour's pawn; +Engage it to the trial, if thou darest. + +DUKE OF AUMERLE: +Who sets me else? by heaven, I'll throw at all: +I have a thousand spirits in one breast, +To answer twenty thousand such as you. + +DUKE OF SURREY: +My Lord Fitzwater, I do remember well +The very time Aumerle and you did talk. + +LORD FITZWATER: +'Tis very true: you were in presence then; +And you can witness with me this is true. + +DUKE OF SURREY: +As false, by heaven, as heaven itself is true. + +LORD FITZWATER: +Surrey, thou liest. + +DUKE OF SURREY: +Dishonourable boy! +That lie shall lie so heavy on my sword, +That it shall render vengeance and revenge +Till thou the lie-giver and that lie do lie +In earth as quiet as thy father's skull: +In proof whereof, there is my honour's pawn; +Engage it to the trial, if thou darest. + +LORD FITZWATER: +How fondly dost thou spur a forward horse! +If I dare eat, or drink, or breathe, or live, +I dare meet Surrey in a wilderness, +And spit upon him, whilst I say he lies, +And lies, and lies: there is my bond of faith, +To tie thee to my strong correction. +As I intend to thrive in this new world, +Aumerle is guilty of my true appeal: +Besides, I heard the banish'd Norfolk say +That thou, Aumerle, didst send two of thy men +To execute the noble duke at Calais. + +DUKE OF AUMERLE: +Some honest Christian trust me with a gage +That Norfolk lies: here do I throw down this, +If he may be repeal'd, to try his honour. + +HENRY BOLINGBROKE: +These differences shall all rest under gage +Till Norfolk be repeal'd: repeal'd he shall be, +And, though mine enemy, restored again +To all his lands and signories: when he's return'd, +Against Aumerle we will enforce his trial. + +BISHOP OF CARLISLE: +That honourable day shall ne'er be seen. +Many a time hath banish'd Norfolk fought +For Jesu Christ in glorious Christian field, +Streaming the ensign of the Christian cross +Against black pagans, Turks, and Saracens: +And toil'd with works of war, retired himself +To Italy; and there at Venice gave +His body to that pleasant country's earth, +And his pure soul unto his captain Christ, +Under whose colours he had fought so long. + +HENRY BOLINGBROKE: +Why, bishop, is Norfolk dead? + +BISHOP OF CARLISLE: +As surely as I live, my lord. + +HENRY BOLINGBROKE: +Sweet peace conduct his sweet soul to the bosom +Of good old Abraham! Lords appellants, +Your differences shall all rest under gage +Till we assign you to your days of trial. + +DUKE OF YORK: +Great Duke of Lancaster, I come to thee +From plume-pluck'd Richard; who with willing soul +Adopts thee heir, and his high sceptre yields +To the possession of thy royal hand: +Ascend his throne, descending now from him; +And long live Henry, fourth of that name! + +HENRY BOLINGBROKE: +In God's name, I'll ascend the regal throne. + +BISHOP OF CARLISLE: +Marry. God forbid! +Worst in this royal presence may I speak, +Yet best beseeming me to speak the truth. +Would God that any in this noble presence +Were enough noble to be upright judge +Of noble Richard! then true noblesse would +Learn him forbearance from so foul a wrong. +What subject can give sentence on his king? +And who sits here that is not Richard's subject? +Thieves are not judged but they are by to hear, +Although apparent guilt be seen in them; +And shall the figure of God's majesty, +His captain, steward, deputy-elect, +Anointed, crowned, planted many years, +Be judged by subject and inferior breath, +And he himself not present? O, forfend it, God, +That in a Christian climate souls refined +Should show so heinous, black, obscene a deed! +I speak to subjects, and a subject speaks, +Stirr'd up by God, thus boldly for his king: +My Lord of Hereford here, whom you call king, +Is a foul traitor to proud Hereford's king: +And if you crown him, let me prophesy: +The blood of English shall manure the ground, +And future ages groan for this foul act; +Peace shall go sleep with Turks and infidels, +And in this seat of peace tumultuous wars +Shall kin with kin and kind with kind confound; +Disorder, horror, fear and mutiny +Shall here inhabit, and this land be call'd +The field of Golgotha and dead men's skulls. +O, if you raise this house against this house, +It will the woefullest division prove +That ever fell upon this cursed earth. +Prevent it, resist it, let it not be so, +Lest child, child's children, cry against you woe! + +NORTHUMBERLAND: +Well have you argued, sir; and, for your pains, +Of capital treason we arrest you here. +My Lord of Westminster, be it your charge +To keep him safely till his day of trial. +May it please you, lords, to grant the commons' suit. + +HENRY BOLINGBROKE: +Fetch hither Richard, that in common view +He may surrender; so we shall proceed +Without suspicion. + +DUKE OF YORK: +I will be his conduct. + +HENRY BOLINGBROKE: +Lords, you that here are under our arrest, +Procure your sureties for your days of answer. +Little are we beholding to your love, +And little look'd for at your helping hands. + +KING RICHARD II: +Alack, why am I sent for to a king, +Before I have shook off the regal thoughts +Wherewith I reign'd? I hardly yet have learn'd +To insinuate, flatter, bow, and bend my limbs: +Give sorrow leave awhile to tutor me +To this submission. Yet I well remember +The favours of these men: were they not mine? +Did they not sometime cry, 'all hail!' to me? +So Judas did to Christ: but he, in twelve, +Found truth in all but one: I, in twelve thousand, none. +God save the king! Will no man say amen? +Am I both priest and clerk? well then, amen. +God save the king! although I be not he; +And yet, amen, if heaven do think him me. +To do what service am I sent for hither? + +DUKE OF YORK: +To do that office of thine own good will +Which tired majesty did make thee offer, +The resignation of thy state and crown +To Henry Bolingbroke. + +KING RICHARD II: +Give me the crown. Here, cousin, seize the crown; +Here cousin: +On this side my hand, and on that side yours. +Now is this golden crown like a deep well +That owes two buckets, filling one another, +The emptier ever dancing in the air, +The other down, unseen and full of water: +That bucket down and full of tears am I, +Drinking my griefs, whilst you mount up on high. + +HENRY BOLINGBROKE: +I thought you had been willing to resign. + +KING RICHARD II: +My crown I am; but still my griefs are mine: +You may my glories and my state depose, +But not my griefs; still am I king of those. + +HENRY BOLINGBROKE: +Part of your cares you give me with your crown. + +KING RICHARD II: +Your cares set up do not pluck my cares down. +My care is loss of care, by old care done; +Your care is gain of care, by new care won: +The cares I give I have, though given away; +They tend the crown, yet still with me they stay. + +HENRY BOLINGBROKE: +Are you contented to resign the crown? + +KING RICHARD II: +Ay, no; no, ay; for I must nothing be; +Therefore no no, for I resign to thee. +Now mark me, how I will undo myself; +I give this heavy weight from off my head +And this unwieldy sceptre from my hand, +The pride of kingly sway from out my heart; +With mine own tears I wash away my balm, +With mine own hands I give away my crown, +With mine own tongue deny my sacred state, +With mine own breath release all duty's rites: +All pomp and majesty I do forswear; +My manors, rents, revenues I forego; +My acts, decrees, and statutes I deny: +God pardon all oaths that are broke to me! +God keep all vows unbroke that swear to thee! +Make me, that nothing have, with nothing grieved, +And thou with all pleased, that hast all achieved! +Long mayst thou live in Richard's seat to sit, +And soon lie Richard in an earthly pit! +God save King Harry, unking'd Richard says, +And send him many years of sunshine days! +What more remains? + +NORTHUMBERLAND: +No more, but that you read +These accusations and these grievous crimes +Committed by your person and your followers +Against the state and profit of this land; +That, by confessing them, the souls of men +May deem that you are worthily deposed. + +KING RICHARD II: +Must I do so? and must I ravel out +My weaved-up folly? Gentle Northumberland, +If thy offences were upon record, +Would it not shame thee in so fair a troop +To read a lecture of them? If thou wouldst, +There shouldst thou find one heinous article, +Containing the deposing of a king +And cracking the strong warrant of an oath, +Mark'd with a blot, damn'd in the book of heaven: +Nay, all of you that stand and look upon, +Whilst that my wretchedness doth bait myself, +Though some of you with Pilate wash your hands +Showing an outward pity; yet you Pilates +Have here deliver'd me to my sour cross, +And water cannot wash away your sin. + +NORTHUMBERLAND: +My lord, dispatch; read o'er these articles. + +KING RICHARD II: +Mine eyes are full of tears, I cannot see: +And yet salt water blinds them not so much +But they can see a sort of traitors here. +Nay, if I turn mine eyes upon myself, +I find myself a traitor with the rest; +For I have given here my soul's consent +To undeck the pompous body of a king; +Made glory base and sovereignty a slave, +Proud majesty a subject, state a peasant. + +NORTHUMBERLAND: +My lord,-- + +KING RICHARD II: +No lord of thine, thou haught insulting man, +Nor no man's lord; I have no name, no title, +No, not that name was given me at the font, +But 'tis usurp'd: alack the heavy day, +That I have worn so many winters out, +And know not now what name to call myself! +O that I were a mockery king of snow, +Standing before the sun of Bolingbroke, +To melt myself away in water-drops! +Good king, great king, and yet not greatly good, +An if my word be sterling yet in England, +Let it command a mirror hither straight, +That it may show me what a face I have, +Since it is bankrupt of his majesty. + +HENRY BOLINGBROKE: +Go some of you and fetch a looking-glass. + +NORTHUMBERLAND: +Read o'er this paper while the glass doth come. + +KING RICHARD II: +Fiend, thou torment'st me ere I come to hell! + +HENRY BOLINGBROKE: +Urge it no more, my Lord Northumberland. + +NORTHUMBERLAND: +The commons will not then be satisfied. + +KING RICHARD II: +They shall be satisfied: I'll read enough, +When I do see the very book indeed +Where all my sins are writ, and that's myself. +Give me the glass, and therein will I read. +No deeper wrinkles yet? hath sorrow struck +So many blows upon this face of mine, +And made no deeper wounds? O flattering glass, +Like to my followers in prosperity, +Thou dost beguile me! Was this face the face +That every day under his household roof +Did keep ten thousand men? was this the face +That, like the sun, did make beholders wink? +Was this the face that faced so many follies, +And was at last out-faced by Bolingbroke? +A brittle glory shineth in this face: +As brittle as the glory is the face; +For there it is, crack'd in a hundred shivers. +Mark, silent king, the moral of this sport, +How soon my sorrow hath destroy'd my face. + +HENRY BOLINGBROKE: +The shadow of your sorrow hath destroy'd +The shadow or your face. + +KING RICHARD II: +Say that again. +The shadow of my sorrow! ha! let's see: +'Tis very true, my grief lies all within; +And these external manners of laments +Are merely shadows to the unseen grief +That swells with silence in the tortured soul; +There lies the substance: and I thank thee, king, +For thy great bounty, that not only givest +Me cause to wail but teachest me the way +How to lament the cause. I'll beg one boon, +And then be gone and trouble you no more. +Shall I obtain it? + +HENRY BOLINGBROKE: +Name it, fair cousin. + +KING RICHARD II: +'Fair cousin'? I am greater than a king: +For when I was a king, my flatterers +Were then but subjects; being now a subject, +I have a king here to my flatterer. +Being so great, I have no need to beg. + +HENRY BOLINGBROKE: +Yet ask. + +KING RICHARD II: +And shall I have? + +HENRY BOLINGBROKE: +You shall. + +KING RICHARD II: +Then give me leave to go. + +HENRY BOLINGBROKE: +Whither? + +KING RICHARD II: +Whither you will, so I were from your sights. + +HENRY BOLINGBROKE: +Go, some of you convey him to the Tower. + +KING RICHARD II: +O, good! convey? conveyers are you all, +That rise thus nimbly by a true king's fall. + +HENRY BOLINGBROKE: +On Wednesday next we solemnly set down +Our coronation: lords, prepare yourselves. + +Abbot: +A woeful pageant have we here beheld. + +BISHOP OF CARLISLE: +The woe's to come; the children yet unborn. +Shall feel this day as sharp to them as thorn. + +DUKE OF AUMERLE: +You holy clergymen, is there no plot +To rid the realm of this pernicious blot? + +Abbot: +My lord, +Before I freely speak my mind herein, +You shall not only take the sacrament +To bury mine intents, but also to effect +Whatever I shall happen to devise. +I see your brows are full of discontent, +Your hearts of sorrow and your eyes of tears: +Come home with me to supper; and I'll lay +A plot shall show us all a merry day. + +QUEEN: +This way the king will come; this is the way +To Julius Caesar's ill-erected tower, +To whose flint bosom my condemned lord +Is doom'd a prisoner by proud Bolingbroke: +Here let us rest, if this rebellious earth +Have any resting for her true king's queen. +But soft, but see, or rather do not see, +My fair rose wither: yet look up, behold, +That you in pity may dissolve to dew, +And wash him fresh again with true-love tears. +Ah, thou, the model where old Troy did stand, +Thou map of honour, thou King Richard's tomb, +And not King Richard; thou most beauteous inn, +Why should hard-favour'd grief be lodged in thee, +When triumph is become an alehouse guest? + +KING RICHARD II: +Join not with grief, fair woman, do not so, +To make my end too sudden: learn, good soul, +To think our former state a happy dream; +From which awaked, the truth of what we are +Shows us but this: I am sworn brother, sweet, +To grim Necessity, and he and I +Will keep a league till death. Hie thee to France +And cloister thee in some religious house: +Our holy lives must win a new world's crown, +Which our profane hours here have stricken down. + +QUEEN: +What, is my Richard both in shape and mind +Transform'd and weaken'd? hath Bolingbroke deposed +Thine intellect? hath he been in thy heart? +The lion dying thrusteth forth his paw, +And wounds the earth, if nothing else, with rage +To be o'erpower'd; and wilt thou, pupil-like, +Take thy correction mildly, kiss the rod, +And fawn on rage with base humility, +Which art a lion and a king of beasts? + +KING RICHARD II: +A king of beasts, indeed; if aught but beasts, +I had been still a happy king of men. +Good sometime queen, prepare thee hence for France: +Think I am dead and that even here thou takest, +As from my death-bed, thy last living leave. +In winter's tedious nights sit by the fire +With good old folks and let them tell thee tales +Of woeful ages long ago betid; +And ere thou bid good night, to quit their griefs, +Tell thou the lamentable tale of me +And send the hearers weeping to their beds: +For why, the senseless brands will sympathize +The heavy accent of thy moving tongue +And in compassion weep the fire out; +And some will mourn in ashes, some coal-black, +For the deposing of a rightful king. + +NORTHUMBERLAND: +My lord, the mind of Bolingbroke is changed: +You must to Pomfret, not unto the Tower. +And, madam, there is order ta'en for you; +With all swift speed you must away to France. + +KING RICHARD II: +Northumberland, thou ladder wherewithal +The mounting Bolingbroke ascends my throne, +The time shall not be many hours of age +More than it is ere foul sin gathering head +Shalt break into corruption: thou shalt think, +Though he divide the realm and give thee half, +It is too little, helping him to all; +And he shall think that thou, which know'st the way +To plant unrightful kings, wilt know again, +Being ne'er so little urged, another way +To pluck him headlong from the usurped throne. +The love of wicked men converts to fear; +That fear to hate, and hate turns one or both +To worthy danger and deserved death. + +NORTHUMBERLAND: +My guilt be on my head, and there an end. +Take leave and part; for you must part forthwith. + +KING RICHARD II: +Doubly divorced! Bad men, you violate +A twofold marriage, 'twixt my crown and me, +And then betwixt me and my married wife. +Let me unkiss the oath 'twixt thee and me; +And yet not so, for with a kiss 'twas made. +Part us, Northumberland; I toward the north, +Where shivering cold and sickness pines the clime; +My wife to France: from whence, set forth in pomp, +She came adorned hither like sweet May, +Sent back like Hallowmas or short'st of day. + +QUEEN: +And must we be divided? must we part? + +KING RICHARD II: +Ay, hand from hand, my love, and heart from heart. + +QUEEN: +Banish us both and send the king with me. + +NORTHUMBERLAND: +That were some love but little policy. + +QUEEN: +Then whither he goes, thither let me go. + +KING RICHARD II: +So two, together weeping, make one woe. +Weep thou for me in France, I for thee here; +Better far off than near, be ne'er the near. +Go, count thy way with sighs; I mine with groans. + +QUEEN: +So longest way shall have the longest moans. + +KING RICHARD II: +Twice for one step I'll groan, the way being short, +And piece the way out with a heavy heart. +Come, come, in wooing sorrow let's be brief, +Since, wedding it, there is such length in grief; +One kiss shall stop our mouths, and dumbly part; +Thus give I mine, and thus take I thy heart. + +QUEEN: +Give me mine own again; 'twere no good part +To take on me to keep and kill thy heart. +So, now I have mine own again, be gone, +That I might strive to kill it with a groan. + +KING RICHARD II: +We make woe wanton with this fond delay: +Once more, adieu; the rest let sorrow say. + +DUCHESS OF YORK: +My lord, you told me you would tell the rest, +When weeping made you break the story off, +of our two cousins coming into London. + +DUKE OF YORK: +Where did I leave? + +DUCHESS OF YORK: +At that sad stop, my lord, +Where rude misgovern'd hands from windows' tops +Threw dust and rubbish on King Richard's head. + +DUKE OF YORK: +Then, as I said, the duke, great Bolingbroke, +Mounted upon a hot and fiery steed +Which his aspiring rider seem'd to know, +With slow but stately pace kept on his course, +Whilst all tongues cried 'God save thee, +Bolingbroke!' +You would have thought the very windows spake, +So many greedy looks of young and old +Through casements darted their desiring eyes +Upon his visage, and that all the walls +With painted imagery had said at once +'Jesu preserve thee! welcome, Bolingbroke!' +Whilst he, from the one side to the other turning, +Bareheaded, lower than his proud steed's neck, +Bespake them thus: 'I thank you, countrymen:' +And thus still doing, thus he pass'd along. + +DUCHESS OF YORK: +Alack, poor Richard! where rode he the whilst? + +DUKE OF YORK: +As in a theatre, the eyes of men, +After a well-graced actor leaves the stage, +Are idly bent on him that enters next, +Thinking his prattle to be tedious; +Even so, or with much more contempt, men's eyes +Did scowl on gentle Richard; no man cried 'God save him!' +No joyful tongue gave him his welcome home: +But dust was thrown upon his sacred head: +Which with such gentle sorrow he shook off, +His face still combating with tears and smiles, +The badges of his grief and patience, +That had not God, for some strong purpose, steel'd +The hearts of men, they must perforce have melted +And barbarism itself have pitied him. +But heaven hath a hand in these events, +To whose high will we bound our calm contents. +To Bolingbroke are we sworn subjects now, +Whose state and honour I for aye allow. + +DUCHESS OF YORK: +Here comes my son Aumerle. + +DUKE OF YORK: +Aumerle that was; +But that is lost for being Richard's friend, +And, madam, you must call him Rutland now: +I am in parliament pledge for his truth +And lasting fealty to the new-made king. + +DUCHESS OF YORK: +Welcome, my son: who are the violets now +That strew the green lap of the new come spring? + +DUKE OF AUMERLE: +Madam, I know not, nor I greatly care not: +God knows I had as lief be none as one. + +DUKE OF YORK: +Well, bear you well in this new spring of time, +Lest you be cropp'd before you come to prime. +What news from Oxford? hold those justs and triumphs? + +DUKE OF AUMERLE: +For aught I know, my lord, they do. + +DUKE OF YORK: +You will be there, I know. + +DUKE OF AUMERLE: +If God prevent not, I purpose so. + +DUKE OF YORK: +What seal is that, that hangs without thy bosom? +Yea, look'st thou pale? let me see the writing. + +DUKE OF AUMERLE: +My lord, 'tis nothing. + +DUKE OF YORK: +No matter, then, who see it; +I will be satisfied; let me see the writing. + +DUKE OF AUMERLE: +I do beseech your grace to pardon me: +It is a matter of small consequence, +Which for some reasons I would not have seen. + +DUKE OF YORK: +Which for some reasons, sir, I mean to see. +I fear, I fear,-- + +DUCHESS OF YORK: +What should you fear? +'Tis nothing but some bond, that he is enter'd into +For gay apparel 'gainst the triumph day. + +DUKE OF YORK: +Bound to himself! what doth he with a bond +That he is bound to? Wife, thou art a fool. +Boy, let me see the writing. + +DUKE OF AUMERLE: +I do beseech you, pardon me; I may not show it. + +DUKE OF YORK: +I will be satisfied; let me see it, I say. +Treason! foul treason! Villain! traitor! slave! + +DUCHESS OF YORK: +What is the matter, my lord? + +DUKE OF YORK: +Ho! who is within there? +Saddle my horse. +God for his mercy, what treachery is here! + +DUCHESS OF YORK: +Why, what is it, my lord? + +DUKE OF YORK: +Give me my boots, I say; saddle my horse. +Now, by mine honour, by my life, by my troth, +I will appeach the villain. + +DUCHESS OF YORK: +What is the matter? + +DUKE OF YORK: +Peace, foolish woman. + +DUCHESS OF YORK: +I will not peace. What is the matter, Aumerle. + +DUKE OF AUMERLE: +Good mother, be content; it is no more +Than my poor life must answer. + +DUCHESS OF YORK: +Thy life answer! + +DUKE OF YORK: +Bring me my boots: I will unto the king. + +DUCHESS OF YORK: +Strike him, Aumerle. Poor boy, thou art amazed. +Hence, villain! never more come in my sight. + +DUKE OF YORK: +Give me my boots, I say. + +DUCHESS OF YORK: +Why, York, what wilt thou do? +Wilt thou not hide the trespass of thine own? +Have we more sons? or are we like to have? +Is not my teeming date drunk up with time? +And wilt thou pluck my fair son from mine age, +And rob me of a happy mother's name? +Is he not like thee? is he not thine own? + +DUKE OF YORK: +Thou fond mad woman, +Wilt thou conceal this dark conspiracy? +A dozen of them here have ta'en the sacrament, +And interchangeably set down their hands, +To kill the king at Oxford. + +DUCHESS OF YORK: +He shall be none; +We'll keep him here: then what is that to him? + +DUKE OF YORK: +Away, fond woman! were he twenty times my son, +I would appeach him. + +DUCHESS OF YORK: +Hadst thou groan'd for him +As I have done, thou wouldst be more pitiful. +But now I know thy mind; thou dost suspect +That I have been disloyal to thy bed, +And that he is a bastard, not thy son: +Sweet York, sweet husband, be not of that mind: +He is as like thee as a man may be, +Not like to me, or any of my kin, +And yet I love him. + +DUKE OF YORK: +Make way, unruly woman! + +DUCHESS OF YORK: +After, Aumerle! mount thee upon his horse; +Spur post, and get before him to the king, +And beg thy pardon ere he do accuse thee. +I'll not be long behind; though I be old, +I doubt not but to ride as fast as York: +And never will I rise up from the ground +Till Bolingbroke have pardon'd thee. Away, be gone! + +HENRY BOLINGBROKE: +Can no man tell me of my unthrifty son? +'Tis full three months since I did see him last; +If any plague hang over us, 'tis he. +I would to God, my lords, he might be found: +Inquire at London, 'mongst the taverns there, +For there, they say, he daily doth frequent, +With unrestrained loose companions, +Even such, they say, as stand in narrow lanes, +And beat our watch, and rob our passengers; +Which he, young wanton and effeminate boy, +Takes on the point of honour to support +So dissolute a crew. + +HENRY PERCY: +My lord, some two days since I saw the prince, +And told him of those triumphs held at Oxford. + +HENRY BOLINGBROKE: +And what said the gallant? + +HENRY PERCY: +His answer was, he would unto the stews, +And from the common'st creature pluck a glove, +And wear it as a favour; and with that +He would unhorse the lustiest challenger. + +HENRY BOLINGBROKE: +As dissolute as desperate; yet through both +I see some sparks of better hope, which elder years +May happily bring forth. But who comes here? + +DUKE OF AUMERLE: +Where is the king? + +HENRY BOLINGBROKE: +What means our cousin, that he stares and looks +So wildly? + +DUKE OF AUMERLE: +God save your grace! I do beseech your majesty, +To have some conference with your grace alone. + +HENRY BOLINGBROKE: +Withdraw yourselves, and leave us here alone. +What is the matter with our cousin now? + +DUKE OF AUMERLE: +For ever may my knees grow to the earth, +My tongue cleave to my roof within my mouth +Unless a pardon ere I rise or speak. + +HENRY BOLINGBROKE: +Intended or committed was this fault? +If on the first, how heinous e'er it be, +To win thy after-love I pardon thee. + +DUKE OF AUMERLE: +Then give me leave that I may turn the key, +That no man enter till my tale be done. + +HENRY BOLINGBROKE: +Have thy desire. + +DUKE OF YORK: + +HENRY BOLINGBROKE: +Villain, I'll make thee safe. + +DUKE OF AUMERLE: +Stay thy revengeful hand; thou hast no cause to fear. + +DUKE OF YORK: + +HENRY BOLINGBROKE: +What is the matter, uncle? speak; +Recover breath; tell us how near is danger, +That we may arm us to encounter it. + +DUKE OF YORK: +Peruse this writing here, and thou shalt know +The treason that my haste forbids me show. + +DUKE OF AUMERLE: +Remember, as thou read'st, thy promise pass'd: +I do repent me; read not my name there +My heart is not confederate with my hand. + +DUKE OF YORK: +It was, villain, ere thy hand did set it down. +I tore it from the traitor's bosom, king; +Fear, and not love, begets his penitence: +Forget to pity him, lest thy pity prove +A serpent that will sting thee to the heart. + +HENRY BOLINGBROKE: +O heinous, strong and bold conspiracy! +O loyal father of a treacherous son! +Thou sheer, immaculate and silver fountain, +From when this stream through muddy passages +Hath held his current and defiled himself! +Thy overflow of good converts to bad, +And thy abundant goodness shall excuse +This deadly blot in thy digressing son. + +DUKE OF YORK: +So shall my virtue be his vice's bawd; +And he shall spend mine honour with his shame, +As thriftless sons their scraping fathers' gold. +Mine honour lives when his dishonour dies, +Or my shamed life in his dishonour lies: +Thou kill'st me in his life; giving him breath, +The traitor lives, the true man's put to death. + +DUCHESS OF YORK: + +HENRY BOLINGBROKE: +What shrill-voiced suppliant makes this eager cry? + +DUCHESS OF YORK: +A woman, and thy aunt, great king; 'tis I. +Speak with me, pity me, open the door. +A beggar begs that never begg'd before. + +HENRY BOLINGBROKE: +Our scene is alter'd from a serious thing, +And now changed to 'The Beggar and the King.' +My dangerous cousin, let your mother in: +I know she is come to pray for your foul sin. + +DUKE OF YORK: +If thou do pardon, whosoever pray, +More sins for this forgiveness prosper may. +This fester'd joint cut off, the rest rest sound; +This let alone will all the rest confound. + +DUCHESS OF YORK: +O king, believe not this hard-hearted man! +Love loving not itself none other can. + +DUKE OF YORK: +Thou frantic woman, what dost thou make here? +Shall thy old dugs once more a traitor rear? + +DUCHESS OF YORK: +Sweet York, be patient. Hear me, gentle liege. + +HENRY BOLINGBROKE: +Rise up, good aunt. + +DUCHESS OF YORK: +Not yet, I thee beseech: +For ever will I walk upon my knees, +And never see day that the happy sees, +Till thou give joy; until thou bid me joy, +By pardoning Rutland, my transgressing boy. + +DUKE OF AUMERLE: +Unto my mother's prayers I bend my knee. + +DUKE OF YORK: +Against them both my true joints bended be. +Ill mayst thou thrive, if thou grant any grace! + +DUCHESS OF YORK: +Pleads he in earnest? look upon his face; +His eyes do drop no tears, his prayers are in jest; +His words come from his mouth, ours from our breast: +He prays but faintly and would be denied; +We pray with heart and soul and all beside: +His weary joints would gladly rise, I know; +Our knees shall kneel till to the ground they grow: +His prayers are full of false hypocrisy; +Ours of true zeal and deep integrity. +Our prayers do out-pray his; then let them have +That mercy which true prayer ought to have. + +HENRY BOLINGBROKE: +Good aunt, stand up. + +DUCHESS OF YORK: +Nay, do not say, 'stand up;' +Say, 'pardon' first, and afterwards 'stand up.' +And if I were thy nurse, thy tongue to teach, +'Pardon' should be the first word of thy speech. +I never long'd to hear a word till now; +Say 'pardon,' king; let pity teach thee how: +The word is short, but not so short as sweet; +No word like 'pardon' for kings' mouths so meet. + +DUKE OF YORK: +Speak it in French, king; say, 'pardonne moi.' + +DUCHESS OF YORK: +Dost thou teach pardon pardon to destroy? +Ah, my sour husband, my hard-hearted lord, +That set'st the word itself against the word! +Speak 'pardon' as 'tis current in our land; +The chopping French we do not understand. +Thine eye begins to speak; set thy tongue there; +Or in thy piteous heart plant thou thine ear; +That hearing how our plaints and prayers do pierce, +Pity may move thee 'pardon' to rehearse. + +HENRY BOLINGBROKE: +Good aunt, stand up. + +DUCHESS OF YORK: +I do not sue to stand; +Pardon is all the suit I have in hand. + +HENRY BOLINGBROKE: +I pardon him, as God shall pardon me. + +DUCHESS OF YORK: +O happy vantage of a kneeling knee! +Yet am I sick for fear: speak it again; +Twice saying 'pardon' doth not pardon twain, +But makes one pardon strong. + +HENRY BOLINGBROKE: +With all my heart +I pardon him. + +DUCHESS OF YORK: +A god on earth thou art. + +HENRY BOLINGBROKE: +But for our trusty brother-in-law and the abbot, +With all the rest of that consorted crew, +Destruction straight shall dog them at the heels. +Good uncle, help to order several powers +To Oxford, or where'er these traitors are: +They shall not live within this world, I swear, +But I will have them, if I once know where. +Uncle, farewell: and, cousin too, adieu: +Your mother well hath pray'd, and prove you true. + +DUCHESS OF YORK: +Come, my old son: I pray God make thee new. + +EXTON: +Didst thou not mark the king, what words he spake, +'Have I no friend will rid me of this living fear?' +Was it not so? + +Servant: +These were his very words. + +EXTON: +'Have I no friend?' quoth he: he spake it twice, +And urged it twice together, did he not? + +Servant: +He did. + +EXTON: +And speaking it, he wistly look'd on me, +And who should say, 'I would thou wert the man' +That would divorce this terror from my heart;' +Meaning the king at Pomfret. Come, let's go: +I am the king's friend, and will rid his foe. + +KING RICHARD II: +I have been studying how I may compare +This prison where I live unto the world: +And for because the world is populous +And here is not a creature but myself, +I cannot do it; yet I'll hammer it out. +My brain I'll prove the female to my soul, +My soul the father; and these two beget +A generation of still-breeding thoughts, +And these same thoughts people this little world, +In humours like the people of this world, +For no thought is contented. The better sort, +As thoughts of things divine, are intermix'd +With scruples and do set the word itself +Against the word: +As thus, 'Come, little ones,' and then again, +'It is as hard to come as for a camel +To thread the postern of a small needle's eye.' +Thoughts tending to ambition, they do plot +Unlikely wonders; how these vain weak nails +May tear a passage through the flinty ribs +Of this hard world, my ragged prison walls, +And, for they cannot, die in their own pride. +Thoughts tending to content flatter themselves +That they are not the first of fortune's slaves, +Nor shall not be the last; like silly beggars +Who sitting in the stocks refuge their shame, +That many have and others must sit there; +And in this thought they find a kind of ease, +Bearing their own misfortunes on the back +Of such as have before endured the like. +Thus play I in one person many people, +And none contented: sometimes am I king; +Then treasons make me wish myself a beggar, +And so I am: then crushing penury +Persuades me I was better when a king; +Then am I king'd again: and by and by +Think that I am unking'd by Bolingbroke, +And straight am nothing: but whate'er I be, +Nor I nor any man that but man is +With nothing shall be pleased, till he be eased +With being nothing. Music do I hear? +Ha, ha! keep time: how sour sweet music is, +When time is broke and no proportion kept! +So is it in the music of men's lives. +And here have I the daintiness of ear +To cheque time broke in a disorder'd string; +But for the concord of my state and time +Had not an ear to hear my true time broke. +I wasted time, and now doth time waste me; +For now hath time made me his numbering clock: +My thoughts are minutes; and with sighs they jar +Their watches on unto mine eyes, the outward watch, +Whereto my finger, like a dial's point, +Is pointing still, in cleansing them from tears. +Now sir, the sound that tells what hour it is +Are clamorous groans, which strike upon my heart, +Which is the bell: so sighs and tears and groans +Show minutes, times, and hours: but my time +Runs posting on in Bolingbroke's proud joy, +While I stand fooling here, his Jack o' the clock. +This music mads me; let it sound no more; +For though it have holp madmen to their wits, +In me it seems it will make wise men mad. +Yet blessing on his heart that gives it me! +For 'tis a sign of love; and love to Richard +Is a strange brooch in this all-hating world. + +Groom: +Hail, royal prince! + +KING RICHARD II: +Thanks, noble peer; +The cheapest of us is ten groats too dear. +What art thou? and how comest thou hither, +Where no man never comes but that sad dog +That brings me food to make misfortune live? + +Groom: +I was a poor groom of thy stable, king, +When thou wert king; who, travelling towards York, +With much ado at length have gotten leave +To look upon my sometimes royal master's face. +O, how it yearn'd my heart when I beheld +In London streets, that coronation-day, +When Bolingbroke rode on roan Barbary, +That horse that thou so often hast bestrid, +That horse that I so carefully have dress'd! + +KING RICHARD II: +Rode he on Barbary? Tell me, gentle friend, +How went he under him? + +Groom: +So proudly as if he disdain'd the ground. + +KING RICHARD II: +So proud that Bolingbroke was on his back! +That jade hath eat bread from my royal hand; +This hand hath made him proud with clapping him. +Would he not stumble? would he not fall down, +Since pride must have a fall, and break the neck +Of that proud man that did usurp his back? +Forgiveness, horse! why do I rail on thee, +Since thou, created to be awed by man, +Wast born to bear? I was not made a horse; +And yet I bear a burthen like an ass, +Spurr'd, gall'd and tired by jouncing Bolingbroke. + +Keeper: +Fellow, give place; here is no longer stay. + +KING RICHARD II: +If thou love me, 'tis time thou wert away. + +Groom: +What my tongue dares not, that my heart shall say. + +Keeper: +My lord, will't please you to fall to? + +KING RICHARD II: +Taste of it first, as thou art wont to do. + +Keeper: +My lord, I dare not: Sir Pierce of Exton, who +lately came from the king, commands the contrary. + +KING RICHARD II: +The devil take Henry of Lancaster and thee! +Patience is stale, and I am weary of it. + +Keeper: +Help, help, help! + +KING RICHARD II: +How now! what means death in this rude assault? +Villain, thy own hand yields thy death's instrument. +Go thou, and fill another room in hell. +That hand shall burn in never-quenching fire +That staggers thus my person. Exton, thy fierce hand +Hath with the king's blood stain'd the king's own land. +Mount, mount, my soul! thy seat is up on high; +Whilst my gross flesh sinks downward, here to die. + +EXTON: +As full of valour as of royal blood: +Both have I spill'd; O would the deed were good! +For now the devil, that told me I did well, +Says that this deed is chronicled in hell. +This dead king to the living king I'll bear +Take hence the rest, and give them burial here. + +HENRY BOLINGBROKE: +Kind uncle York, the latest news we hear +Is that the rebels have consumed with fire +Our town of Cicester in Gloucestershire; +But whether they be ta'en or slain we hear not. +Welcome, my lord what is the news? + +NORTHUMBERLAND: +First, to thy sacred state wish I all happiness. +The next news is, I have to London sent +The heads of Oxford, Salisbury, Blunt, and Kent: +The manner of their taking may appear +At large discoursed in this paper here. + +HENRY BOLINGBROKE: +We thank thee, gentle Percy, for thy pains; +And to thy worth will add right worthy gains. + +LORD FITZWATER: +My lord, I have from Oxford sent to London +The heads of Brocas and Sir Bennet Seely, +Two of the dangerous consorted traitors +That sought at Oxford thy dire overthrow. + +HENRY BOLINGBROKE: +Thy pains, Fitzwater, shall not be forgot; +Right noble is thy merit, well I wot. + +HENRY PERCY: +The grand conspirator, Abbot of Westminster, +With clog of conscience and sour melancholy +Hath yielded up his body to the grave; +But here is Carlisle living, to abide +Thy kingly doom and sentence of his pride. + +HENRY BOLINGBROKE: +Carlisle, this is your doom: +Choose out some secret place, some reverend room, +More than thou hast, and with it joy thy life; +So as thou livest in peace, die free from strife: +For though mine enemy thou hast ever been, +High sparks of honour in thee have I seen. + +EXTON: +Great king, within this coffin I present +Thy buried fear: herein all breathless lies +The mightiest of thy greatest enemies, +Richard of Bordeaux, by me hither brought. + +HENRY BOLINGBROKE: +Exton, I thank thee not; for thou hast wrought +A deed of slander with thy fatal hand +Upon my head and all this famous land. + +EXTON: +From your own mouth, my lord, did I this deed. + +HENRY BOLINGBROKE: +They love not poison that do poison need, +Nor do I thee: though I did wish him dead, +I hate the murderer, love him murdered. +The guilt of conscience take thou for thy labour, +But neither my good word nor princely favour: +With Cain go wander through shades of night, +And never show thy head by day nor light. +Lords, I protest, my soul is full of woe, +That blood should sprinkle me to make me grow: +Come, mourn with me for that I do lament, +And put on sullen black incontinent: +I'll make a voyage to the Holy Land, +To wash this blood off from my guilty hand: +March sadly after; grace my mournings here; +In weeping after this untimely bier. + + +SAMPSON: +Gregory, o' my word, we'll not carry coals. + +GREGORY: +No, for then we should be colliers. + +SAMPSON: +I mean, an we be in choler, we'll draw. + +GREGORY: +Ay, while you live, draw your neck out o' the collar. + +SAMPSON: +I strike quickly, being moved. + +GREGORY: +But thou art not quickly moved to strike. + +SAMPSON: +A dog of the house of Montague moves me. + +GREGORY: +To move is to stir; and to be valiant is to stand: +therefore, if thou art moved, thou runn'st away. + +SAMPSON: +A dog of that house shall move me to stand: I will +take the wall of any man or maid of Montague's. + +GREGORY: +That shows thee a weak slave; for the weakest goes +to the wall. + +SAMPSON: +True; and therefore women, being the weaker vessels, +are ever thrust to the wall: therefore I will push +Montague's men from the wall, and thrust his maids +to the wall. + +GREGORY: +The quarrel is between our masters and us their men. + +SAMPSON: +'Tis all one, I will show myself a tyrant: when I +have fought with the men, I will be cruel with the +maids, and cut off their heads. + +GREGORY: +The heads of the maids? + +SAMPSON: +Ay, the heads of the maids, or their maidenheads; +take it in what sense thou wilt. + +GREGORY: +They must take it in sense that feel it. + +SAMPSON: +Me they shall feel while I am able to stand: and +'tis known I am a pretty piece of flesh. + +GREGORY: +'Tis well thou art not fish; if thou hadst, thou +hadst been poor John. Draw thy tool! here comes +two of the house of the Montagues. + +SAMPSON: +My naked weapon is out: quarrel, I will back thee. + +GREGORY: +How! turn thy back and run? + +SAMPSON: +Fear me not. + +GREGORY: +No, marry; I fear thee! + +SAMPSON: +Let us take the law of our sides; let them begin. + +GREGORY: +I will frown as I pass by, and let them take it as +they list. + +SAMPSON: +Nay, as they dare. I will bite my thumb at them; +which is a disgrace to them, if they bear it. + +ABRAHAM: +Do you bite your thumb at us, sir? + +SAMPSON: +I do bite my thumb, sir. + +ABRAHAM: +Do you bite your thumb at us, sir? + +SAMPSON: + +GREGORY: +No. + +SAMPSON: +No, sir, I do not bite my thumb at you, sir, but I +bite my thumb, sir. + +GREGORY: +Do you quarrel, sir? + +ABRAHAM: +Quarrel sir! no, sir. + +SAMPSON: +If you do, sir, I am for you: I serve as good a man as you. + +ABRAHAM: +No better. + +SAMPSON: +Well, sir. + +GREGORY: +Say 'better:' here comes one of my master's kinsmen. + +SAMPSON: +Yes, better, sir. + +ABRAHAM: +You lie. + +SAMPSON: +Draw, if you be men. Gregory, remember thy swashing blow. + +BENVOLIO: +Part, fools! +Put up your swords; you know not what you do. + +TYBALT: +What, art thou drawn among these heartless hinds? +Turn thee, Benvolio, look upon thy death. + +BENVOLIO: +I do but keep the peace: put up thy sword, +Or manage it to part these men with me. + +TYBALT: +What, drawn, and talk of peace! I hate the word, +As I hate hell, all Montagues, and thee: +Have at thee, coward! + +First Citizen: +Clubs, bills, and partisans! strike! beat them down! +Down with the Capulets! down with the Montagues! + +CAPULET: +What noise is this? Give me my long sword, ho! + +LADY CAPULET: +A crutch, a crutch! why call you for a sword? + +CAPULET: +My sword, I say! Old Montague is come, +And flourishes his blade in spite of me. + +MONTAGUE: +Thou villain Capulet,--Hold me not, let me go. + +LADY MONTAGUE: +Thou shalt not stir a foot to seek a foe. + +PRINCE: +Rebellious subjects, enemies to peace, +Profaners of this neighbour-stained steel,-- +Will they not hear? What, ho! you men, you beasts, +That quench the fire of your pernicious rage +With purple fountains issuing from your veins, +On pain of torture, from those bloody hands +Throw your mistemper'd weapons to the ground, +And hear the sentence of your moved prince. +Three civil brawls, bred of an airy word, +By thee, old Capulet, and Montague, +Have thrice disturb'd the quiet of our streets, +And made Verona's ancient citizens +Cast by their grave beseeming ornaments, +To wield old partisans, in hands as old, +Canker'd with peace, to part your canker'd hate: +If ever you disturb our streets again, +Your lives shall pay the forfeit of the peace. +For this time, all the rest depart away: +You Capulet; shall go along with me: +And, Montague, come you this afternoon, +To know our further pleasure in this case, +To old Free-town, our common judgment-place. +Once more, on pain of death, all men depart. + +MONTAGUE: +Who set this ancient quarrel new abroach? +Speak, nephew, were you by when it began? + +BENVOLIO: +Here were the servants of your adversary, +And yours, close fighting ere I did approach: +I drew to part them: in the instant came +The fiery Tybalt, with his sword prepared, +Which, as he breathed defiance to my ears, +He swung about his head and cut the winds, +Who nothing hurt withal hiss'd him in scorn: +While we were interchanging thrusts and blows, +Came more and more and fought on part and part, +Till the prince came, who parted either part. + +LADY MONTAGUE: +O, where is Romeo? saw you him to-day? +Right glad I am he was not at this fray. + +BENVOLIO: +Madam, an hour before the worshipp'd sun +Peer'd forth the golden window of the east, +A troubled mind drave me to walk abroad; +Where, underneath the grove of sycamore +That westward rooteth from the city's side, +So early walking did I see your son: +Towards him I made, but he was ware of me +And stole into the covert of the wood: +I, measuring his affections by my own, +That most are busied when they're most alone, +Pursued my humour not pursuing his, +And gladly shunn'd who gladly fled from me. + +MONTAGUE: +Many a morning hath he there been seen, +With tears augmenting the fresh morning dew. +Adding to clouds more clouds with his deep sighs; +But all so soon as the all-cheering sun +Should in the furthest east begin to draw +The shady curtains from Aurora's bed, +Away from the light steals home my heavy son, +And private in his chamber pens himself, +Shuts up his windows, locks far daylight out +And makes himself an artificial night: +Black and portentous must this humour prove, +Unless good counsel may the cause remove. + +BENVOLIO: +My noble uncle, do you know the cause? + +MONTAGUE: +I neither know it nor can learn of him. + +BENVOLIO: +Have you importuned him by any means? + +MONTAGUE: +Both by myself and many other friends: +But he, his own affections' counsellor, +Is to himself--I will not say how true-- +But to himself so secret and so close, +So far from sounding and discovery, +As is the bud bit with an envious worm, +Ere he can spread his sweet leaves to the air, +Or dedicate his beauty to the sun. +Could we but learn from whence his sorrows grow. +We would as willingly give cure as know. + +BENVOLIO: +See, where he comes: so please you, step aside; +I'll know his grievance, or be much denied. + +MONTAGUE: +I would thou wert so happy by thy stay, +To hear true shrift. Come, madam, let's away. + +BENVOLIO: +Good-morrow, cousin. + +ROMEO: +Is the day so young? + +BENVOLIO: +But new struck nine. + +ROMEO: +Ay me! sad hours seem long. +Was that my father that went hence so fast? + +BENVOLIO: +It was. What sadness lengthens Romeo's hours? + +ROMEO: +Not having that, which, having, makes them short. + +BENVOLIO: +In love? + +ROMEO: +Out-- + +BENVOLIO: +Of love? + +ROMEO: +Out of her favour, where I am in love. + +BENVOLIO: +Alas, that love, so gentle in his view, +Should be so tyrannous and rough in proof! + +ROMEO: +Alas, that love, whose view is muffled still, +Should, without eyes, see pathways to his will! +Where shall we dine? O me! What fray was here? +Yet tell me not, for I have heard it all. +Here's much to do with hate, but more with love. +Why, then, O brawling love! O loving hate! +O any thing, of nothing first create! +O heavy lightness! serious vanity! +Mis-shapen chaos of well-seeming forms! +Feather of lead, bright smoke, cold fire, +sick health! +Still-waking sleep, that is not what it is! +This love feel I, that feel no love in this. +Dost thou not laugh? + +BENVOLIO: +No, coz, I rather weep. + +ROMEO: +Good heart, at what? + +BENVOLIO: +At thy good heart's oppression. + +ROMEO: +Why, such is love's transgression. +Griefs of mine own lie heavy in my breast, +Which thou wilt propagate, to have it prest +With more of thine: this love that thou hast shown +Doth add more grief to too much of mine own. +Love is a smoke raised with the fume of sighs; +Being purged, a fire sparkling in lovers' eyes; +Being vex'd a sea nourish'd with lovers' tears: +What is it else? a madness most discreet, +A choking gall and a preserving sweet. +Farewell, my coz. + +BENVOLIO: +Soft! I will go along; +An if you leave me so, you do me wrong. + +ROMEO: +Tut, I have lost myself; I am not here; +This is not Romeo, he's some other where. + +BENVOLIO: +Tell me in sadness, who is that you love. + +ROMEO: +What, shall I groan and tell thee? + +BENVOLIO: +Groan! why, no. +But sadly tell me who. + +ROMEO: +Bid a sick man in sadness make his will: +Ah, word ill urged to one that is so ill! +In sadness, cousin, I do love a woman. + +BENVOLIO: +I aim'd so near, when I supposed you loved. + +ROMEO: +A right good mark-man! And she's fair I love. + +BENVOLIO: +A right fair mark, fair coz, is soonest hit. + +ROMEO: +Well, in that hit you miss: she'll not be hit +With Cupid's arrow; she hath Dian's wit; +And, in strong proof of chastity well arm'd, +From love's weak childish bow she lives unharm'd. +She will not stay the siege of loving terms, +Nor bide the encounter of assailing eyes, +Nor ope her lap to saint-seducing gold: +O, she is rich in beauty, only poor, +That when she dies with beauty dies her store. + +BENVOLIO: +Then she hath sworn that she will still live chaste? + +ROMEO: +She hath, and in that sparing makes huge waste, +For beauty starved with her severity +Cuts beauty off from all posterity. +She is too fair, too wise, wisely too fair, +To merit bliss by making me despair: +She hath forsworn to love, and in that vow +Do I live dead that live to tell it now. + +BENVOLIO: +Be ruled by me, forget to think of her. + +ROMEO: +O, teach me how I should forget to think. + +BENVOLIO: +By giving liberty unto thine eyes; +Examine other beauties. + +ROMEO: +'Tis the way +To call hers exquisite, in question more: +These happy masks that kiss fair ladies' brows +Being black put us in mind they hide the fair; +He that is strucken blind cannot forget +The precious treasure of his eyesight lost: +Show me a mistress that is passing fair, +What doth her beauty serve, but as a note +Where I may read who pass'd that passing fair? +Farewell: thou canst not teach me to forget. + +BENVOLIO: +I'll pay that doctrine, or else die in debt. + +CAPULET: +But Montague is bound as well as I, +In penalty alike; and 'tis not hard, I think, +For men so old as we to keep the peace. + +PARIS: +Of honourable reckoning are you both; +And pity 'tis you lived at odds so long. +But now, my lord, what say you to my suit? + +CAPULET: +But saying o'er what I have said before: +My child is yet a stranger in the world; +She hath not seen the change of fourteen years, +Let two more summers wither in their pride, +Ere we may think her ripe to be a bride. + +PARIS: +Younger than she are happy mothers made. + +CAPULET: +And too soon marr'd are those so early made. +The earth hath swallow'd all my hopes but she, +She is the hopeful lady of my earth: +But woo her, gentle Paris, get her heart, +My will to her consent is but a part; +An she agree, within her scope of choice +Lies my consent and fair according voice. +This night I hold an old accustom'd feast, +Whereto I have invited many a guest, +Such as I love; and you, among the store, +One more, most welcome, makes my number more. +At my poor house look to behold this night +Earth-treading stars that make dark heaven light: +Such comfort as do lusty young men feel +When well-apparell'd April on the heel +Of limping winter treads, even such delight +Among fresh female buds shall you this night +Inherit at my house; hear all, all see, +And like her most whose merit most shall be: +Which on more view, of many mine being one +May stand in number, though in reckoning none, +Come, go with me. +Go, sirrah, trudge about +Through fair Verona; find those persons out +Whose names are written there, and to them say, +My house and welcome on their pleasure stay. + +Servant: +Find them out whose names are written here! It is +written, that the shoemaker should meddle with his +yard, and the tailor with his last, the fisher with +his pencil, and the painter with his nets; but I am +sent to find those persons whose names are here +writ, and can never find what names the writing +person hath here writ. I must to the learned.--In good time. + +BENVOLIO: +Tut, man, one fire burns out another's burning, +One pain is lessen'd by another's anguish; +Turn giddy, and be holp by backward turning; +One desperate grief cures with another's languish: +Take thou some new infection to thy eye, +And the rank poison of the old will die. + +ROMEO: +Your plaintain-leaf is excellent for that. + +BENVOLIO: +For what, I pray thee? + +ROMEO: +For your broken shin. + +BENVOLIO: +Why, Romeo, art thou mad? + +ROMEO: +Not mad, but bound more than a mad-man is; +Shut up in prison, kept without my food, +Whipp'd and tormented and--God-den, good fellow. + +Servant: +God gi' god-den. I pray, sir, can you read? + +ROMEO: +Ay, mine own fortune in my misery. + +Servant: +Perhaps you have learned it without book: but, I +pray, can you read any thing you see? + +ROMEO: +Ay, if I know the letters and the language. + +Servant: +Ye say honestly: rest you merry! + +ROMEO: +Stay, fellow; I can read. +'Signior Martino and his wife and daughters; +County Anselme and his beauteous sisters; the lady +widow of Vitravio; Signior Placentio and his lovely +nieces; Mercutio and his brother Valentine; mine +uncle Capulet, his wife and daughters; my fair niece +Rosaline; Livia; Signior Valentio and his cousin +Tybalt, Lucio and the lively Helena.' A fair +assembly: whither should they come? + +Servant: +Up. + +ROMEO: +Whither? + +Servant: +To supper; to our house. + +ROMEO: +Whose house? + +Servant: +My master's. + +ROMEO: +Indeed, I should have ask'd you that before. + +Servant: +Now I'll tell you without asking: my master is the +great rich Capulet; and if you be not of the house +of Montagues, I pray, come and crush a cup of wine. +Rest you merry! + +BENVOLIO: +At this same ancient feast of Capulet's +Sups the fair Rosaline whom thou so lovest, +With all the admired beauties of Verona: +Go thither; and, with unattainted eye, +Compare her face with some that I shall show, +And I will make thee think thy swan a crow. + +ROMEO: +When the devout religion of mine eye +Maintains such falsehood, then turn tears to fires; +And these, who often drown'd could never die, +Transparent heretics, be burnt for liars! +One fairer than my love! the all-seeing sun +Ne'er saw her match since first the world begun. + +BENVOLIO: +Tut, you saw her fair, none else being by, +Herself poised with herself in either eye: +But in that crystal scales let there be weigh'd +Your lady's love against some other maid +That I will show you shining at this feast, +And she shall scant show well that now shows best. + +ROMEO: +I'll go along, no such sight to be shown, +But to rejoice in splendor of mine own. + +LADY CAPULET: +Nurse, where's my daughter? call her forth to me. + +Nurse: +Now, by my maidenhead, at twelve year old, +I bade her come. What, lamb! what, ladybird! +God forbid! Where's this girl? What, Juliet! + +JULIET: +How now! who calls? + +Nurse: +Your mother. + +JULIET: +Madam, I am here. +What is your will? + +LADY CAPULET: +This is the matter:--Nurse, give leave awhile, +We must talk in secret:--nurse, come back again; +I have remember'd me, thou's hear our counsel. +Thou know'st my daughter's of a pretty age. + +Nurse: +Faith, I can tell her age unto an hour. + +LADY CAPULET: +She's not fourteen. + +Nurse: +I'll lay fourteen of my teeth,-- +And yet, to my teeth be it spoken, I have but four-- +She is not fourteen. How long is it now +To Lammas-tide? + +LADY CAPULET: +A fortnight and odd days. + +Nurse: +Even or odd, of all days in the year, +Come Lammas-eve at night shall she be fourteen. +Susan and she--God rest all Christian souls!-- +Were of an age: well, Susan is with God; +She was too good for me: but, as I said, +On Lammas-eve at night shall she be fourteen; +That shall she, marry; I remember it well. +'Tis since the earthquake now eleven years; +And she was wean'd,--I never shall forget it,-- +Of all the days of the year, upon that day: +For I had then laid wormwood to my dug, +Sitting in the sun under the dove-house wall; +My lord and you were then at Mantua:-- +Nay, I do bear a brain:--but, as I said, +When it did taste the wormwood on the nipple +Of my dug and felt it bitter, pretty fool, +To see it tetchy and fall out with the dug! +Shake quoth the dove-house: 'twas no need, I trow, +To bid me trudge: +And since that time it is eleven years; +For then she could stand alone; nay, by the rood, +She could have run and waddled all about; +For even the day before, she broke her brow: +And then my husband--God be with his soul! +A' was a merry man--took up the child: +'Yea,' quoth he, 'dost thou fall upon thy face? +Thou wilt fall backward when thou hast more wit; +Wilt thou not, Jule?' and, by my holidame, +The pretty wretch left crying and said 'Ay.' +To see, now, how a jest shall come about! +I warrant, an I should live a thousand years, +I never should forget it: 'Wilt thou not, Jule?' quoth he; +And, pretty fool, it stinted and said 'Ay.' + +LADY CAPULET: +Enough of this; I pray thee, hold thy peace. + +Nurse: +Yes, madam: yet I cannot choose but laugh, +To think it should leave crying and say 'Ay.' +And yet, I warrant, it had upon its brow +A bump as big as a young cockerel's stone; +A parlous knock; and it cried bitterly: +'Yea,' quoth my husband,'fall'st upon thy face? +Thou wilt fall backward when thou comest to age; +Wilt thou not, Jule?' it stinted and said 'Ay.' + +JULIET: +And stint thou too, I pray thee, nurse, say I. + +Nurse: +Peace, I have done. God mark thee to his grace! +Thou wast the prettiest babe that e'er I nursed: +An I might live to see thee married once, +I have my wish. + +LADY CAPULET: +Marry, that 'marry' is the very theme +I came to talk of. Tell me, daughter Juliet, +How stands your disposition to be married? + +JULIET: +It is an honour that I dream not of. + +Nurse: +An honour! were not I thine only nurse, +I would say thou hadst suck'd wisdom from thy teat. + +LADY CAPULET: +Well, think of marriage now; younger than you, +Here in Verona, ladies of esteem, +Are made already mothers: by my count, +I was your mother much upon these years +That you are now a maid. Thus then in brief: +The valiant Paris seeks you for his love. + +Nurse: +A man, young lady! lady, such a man +As all the world--why, he's a man of wax. + +LADY CAPULET: +Verona's summer hath not such a flower. + +Nurse: +Nay, he's a flower; in faith, a very flower. + +LADY CAPULET: +What say you? can you love the gentleman? +This night you shall behold him at our feast; +Read o'er the volume of young Paris' face, +And find delight writ there with beauty's pen; +Examine every married lineament, +And see how one another lends content +And what obscured in this fair volume lies +Find written in the margent of his eyes. +This precious book of love, this unbound lover, +To beautify him, only lacks a cover: +The fish lives in the sea, and 'tis much pride +For fair without the fair within to hide: +That book in many's eyes doth share the glory, +That in gold clasps locks in the golden story; +So shall you share all that he doth possess, +By having him, making yourself no less. + +Nurse: +No less! nay, bigger; women grow by men. + +LADY CAPULET: +Speak briefly, can you like of Paris' love? + +JULIET: +I'll look to like, if looking liking move: +But no more deep will I endart mine eye +Than your consent gives strength to make it fly. + +Servant: +Madam, the guests are come, supper served up, you +called, my young lady asked for, the nurse cursed in +the pantry, and every thing in extremity. I must +hence to wait; I beseech you, follow straight. + +LADY CAPULET: +We follow thee. +Juliet, the county stays. + +Nurse: +Go, girl, seek happy nights to happy days. + +ROMEO: +What, shall this speech be spoke for our excuse? +Or shall we on without a apology? + +BENVOLIO: +The date is out of such prolixity: +We'll have no Cupid hoodwink'd with a scarf, +Bearing a Tartar's painted bow of lath, +Scaring the ladies like a crow-keeper; +Nor no without-book prologue, faintly spoke +After the prompter, for our entrance: +But let them measure us by what they will; +We'll measure them a measure, and be gone. + +ROMEO: +Give me a torch: I am not for this ambling; +Being but heavy, I will bear the light. + +MERCUTIO: +Nay, gentle Romeo, we must have you dance. + +ROMEO: +Not I, believe me: you have dancing shoes +With nimble soles: I have a soul of lead +So stakes me to the ground I cannot move. + +MERCUTIO: +You are a lover; borrow Cupid's wings, +And soar with them above a common bound. + +ROMEO: +I am too sore enpierced with his shaft +To soar with his light feathers, and so bound, +I cannot bound a pitch above dull woe: +Under love's heavy burden do I sink. + +MERCUTIO: +And, to sink in it, should you burden love; +Too great oppression for a tender thing. + +ROMEO: +Is love a tender thing? it is too rough, +Too rude, too boisterous, and it pricks like thorn. + +MERCUTIO: +If love be rough with you, be rough with love; +Prick love for pricking, and you beat love down. +Give me a case to put my visage in: +A visor for a visor! what care I +What curious eye doth quote deformities? +Here are the beetle brows shall blush for me. + +BENVOLIO: +Come, knock and enter; and no sooner in, +But every man betake him to his legs. + +ROMEO: +A torch for me: let wantons light of heart +Tickle the senseless rushes with their heels, +For I am proverb'd with a grandsire phrase; +I'll be a candle-holder, and look on. +The game was ne'er so fair, and I am done. + +MERCUTIO: +Tut, dun's the mouse, the constable's own word: +If thou art dun, we'll draw thee from the mire +Of this sir-reverence love, wherein thou stick'st +Up to the ears. Come, we burn daylight, ho! + +ROMEO: +Nay, that's not so. + +MERCUTIO: +I mean, sir, in delay +We waste our lights in vain, like lamps by day. +Take our good meaning, for our judgment sits +Five times in that ere once in our five wits. + +ROMEO: +And we mean well in going to this mask; +But 'tis no wit to go. + +MERCUTIO: +Why, may one ask? + +ROMEO: +I dream'd a dream to-night. + +MERCUTIO: +And so did I. + +ROMEO: +Well, what was yours? + +MERCUTIO: +That dreamers often lie. + +ROMEO: +In bed asleep, while they do dream things true. + +MERCUTIO: +O, then, I see Queen Mab hath been with you. +She is the fairies' midwife, and she comes +In shape no bigger than an agate-stone +On the fore-finger of an alderman, +Drawn with a team of little atomies +Athwart men's noses as they lie asleep; +Her wagon-spokes made of long spiders' legs, +The cover of the wings of grasshoppers, +The traces of the smallest spider's web, +The collars of the moonshine's watery beams, +Her whip of cricket's bone, the lash of film, +Her wagoner a small grey-coated gnat, +Not so big as a round little worm +Prick'd from the lazy finger of a maid; +Her chariot is an empty hazel-nut +Made by the joiner squirrel or old grub, +Time out o' mind the fairies' coachmakers. +And in this state she gallops night by night +Through lovers' brains, and then they dream of love; +O'er courtiers' knees, that dream on court'sies straight, +O'er lawyers' fingers, who straight dream on fees, +O'er ladies ' lips, who straight on kisses dream, +Which oft the angry Mab with blisters plagues, +Because their breaths with sweetmeats tainted are: +Sometime she gallops o'er a courtier's nose, +And then dreams he of smelling out a suit; +And sometime comes she with a tithe-pig's tail +Tickling a parson's nose as a' lies asleep, +Then dreams, he of another benefice: +Sometime she driveth o'er a soldier's neck, +And then dreams he of cutting foreign throats, +Of breaches, ambuscadoes, Spanish blades, +Of healths five-fathom deep; and then anon +Drums in his ear, at which he starts and wakes, +And being thus frighted swears a prayer or two +And sleeps again. This is that very Mab +That plats the manes of horses in the night, +And bakes the elflocks in foul sluttish hairs, +Which once untangled, much misfortune bodes: +This is the hag, when maids lie on their backs, +That presses them and learns them first to bear, +Making them women of good carriage: +This is she-- + +ROMEO: +Peace, peace, Mercutio, peace! +Thou talk'st of nothing. + +MERCUTIO: +True, I talk of dreams, +Which are the children of an idle brain, +Begot of nothing but vain fantasy, +Which is as thin of substance as the air +And more inconstant than the wind, who wooes +Even now the frozen bosom of the north, +And, being anger'd, puffs away from thence, +Turning his face to the dew-dropping south. + +BENVOLIO: +This wind, you talk of, blows us from ourselves; +Supper is done, and we shall come too late. + +ROMEO: +I fear, too early: for my mind misgives +Some consequence yet hanging in the stars +Shall bitterly begin his fearful date +With this night's revels and expire the term +Of a despised life closed in my breast +By some vile forfeit of untimely death. +But He, that hath the steerage of my course, +Direct my sail! On, lusty gentlemen. + +BENVOLIO: +Strike, drum. + +First Servant: +Where's Potpan, that he helps not to take away? He +shift a trencher? he scrape a trencher! + +Second Servant: +When good manners shall lie all in one or two men's +hands and they unwashed too, 'tis a foul thing. + +First Servant: +Away with the joint-stools, remove the +court-cupboard, look to the plate. Good thou, save +me a piece of marchpane; and, as thou lovest me, let +the porter let in Susan Grindstone and Nell. +Antony, and Potpan! + +Second Servant: +Ay, boy, ready. + +First Servant: +You are looked for and called for, asked for and +sought for, in the great chamber. + +Second Servant: +We cannot be here and there too. Cheerly, boys; be +brisk awhile, and the longer liver take all. + +CAPULET: +Welcome, gentlemen! ladies that have their toes +Unplagued with corns will have a bout with you. +Ah ha, my mistresses! which of you all +Will now deny to dance? she that makes dainty, +She, I'll swear, hath corns; am I come near ye now? +Welcome, gentlemen! I have seen the day +That I have worn a visor and could tell +A whispering tale in a fair lady's ear, +Such as would please: 'tis gone, 'tis gone, 'tis gone: +You are welcome, gentlemen! come, musicians, play. +A hall, a hall! give room! and foot it, girls. +More light, you knaves; and turn the tables up, +And quench the fire, the room is grown too hot. +Ah, sirrah, this unlook'd-for sport comes well. +Nay, sit, nay, sit, good cousin Capulet; +For you and I are past our dancing days: +How long is't now since last yourself and I +Were in a mask? + +Second Capulet: +By'r lady, thirty years. + +CAPULET: +What, man! 'tis not so much, 'tis not so much: +'Tis since the nuptials of Lucentio, +Come pentecost as quickly as it will, +Some five and twenty years; and then we mask'd. + +Second Capulet: +'Tis more, 'tis more, his son is elder, sir; +His son is thirty. + +CAPULET: +Will you tell me that? +His son was but a ward two years ago. + +ROMEO: + +Servant: +I know not, sir. + +ROMEO: +O, she doth teach the torches to burn bright! +It seems she hangs upon the cheek of night +Like a rich jewel in an Ethiope's ear; +Beauty too rich for use, for earth too dear! +So shows a snowy dove trooping with crows, +As yonder lady o'er her fellows shows. +The measure done, I'll watch her place of stand, +And, touching hers, make blessed my rude hand. +Did my heart love till now? forswear it, sight! +For I ne'er saw true beauty till this night. + +TYBALT: +This, by his voice, should be a Montague. +Fetch me my rapier, boy. What dares the slave +Come hither, cover'd with an antic face, +To fleer and scorn at our solemnity? +Now, by the stock and honour of my kin, +To strike him dead, I hold it not a sin. + +CAPULET: +Why, how now, kinsman! wherefore storm you so? + +TYBALT: +Uncle, this is a Montague, our foe, +A villain that is hither come in spite, +To scorn at our solemnity this night. + +CAPULET: +Young Romeo is it? + +TYBALT: +'Tis he, that villain Romeo. + +CAPULET: +Content thee, gentle coz, let him alone; +He bears him like a portly gentleman; +And, to say truth, Verona brags of him +To be a virtuous and well-govern'd youth: +I would not for the wealth of all the town +Here in my house do him disparagement: +Therefore be patient, take no note of him: +It is my will, the which if thou respect, +Show a fair presence and put off these frowns, +And ill-beseeming semblance for a feast. + +TYBALT: +It fits, when such a villain is a guest: +I'll not endure him. + +CAPULET: +He shall be endured: +What, goodman boy! I say, he shall: go to; +Am I the master here, or you? go to. +You'll not endure him! God shall mend my soul! +You'll make a mutiny among my guests! +You will set cock-a-hoop! you'll be the man! + +TYBALT: +Why, uncle, 'tis a shame. + +CAPULET: +Go to, go to; +You are a saucy boy: is't so, indeed? +This trick may chance to scathe you, I know what: +You must contrary me! marry, 'tis time. +Well said, my hearts! You are a princox; go: +Be quiet, or--More light, more light! For shame! +I'll make you quiet. What, cheerly, my hearts! + +TYBALT: +Patience perforce with wilful choler meeting +Makes my flesh tremble in their different greeting. +I will withdraw: but this intrusion shall +Now seeming sweet convert to bitter gall. + +ROMEO: + +JULIET: +Good pilgrim, you do wrong your hand too much, +Which mannerly devotion shows in this; +For saints have hands that pilgrims' hands do touch, +And palm to palm is holy palmers' kiss. + +ROMEO: +Have not saints lips, and holy palmers too? + +JULIET: +Ay, pilgrim, lips that they must use in prayer. + +ROMEO: +O, then, dear saint, let lips do what hands do; +They pray, grant thou, lest faith turn to despair. + +JULIET: +Saints do not move, though grant for prayers' sake. + +ROMEO: +Then move not, while my prayer's effect I take. +Thus from my lips, by yours, my sin is purged. + +JULIET: +Then have my lips the sin that they have took. + +ROMEO: +Sin from thy lips? O trespass sweetly urged! +Give me my sin again. + +JULIET: +You kiss by the book. + +Nurse: +Madam, your mother craves a word with you. + +ROMEO: +What is her mother? + +Nurse: +Marry, bachelor, +Her mother is the lady of the house, +And a good lady, and a wise and virtuous +I nursed her daughter, that you talk'd withal; +I tell you, he that can lay hold of her +Shall have the chinks. + +ROMEO: +Is she a Capulet? +O dear account! my life is my foe's debt. + +BENVOLIO: +Away, begone; the sport is at the best. + +ROMEO: +Ay, so I fear; the more is my unrest. + +CAPULET: +Nay, gentlemen, prepare not to be gone; +We have a trifling foolish banquet towards. +Is it e'en so? why, then, I thank you all +I thank you, honest gentlemen; good night. +More torches here! Come on then, let's to bed. +Ah, sirrah, by my fay, it waxes late: +I'll to my rest. + +JULIET: +Come hither, nurse. What is yond gentleman? + +Nurse: +The son and heir of old Tiberio. + +JULIET: +What's he that now is going out of door? + +Nurse: +Marry, that, I think, be young Petrucio. + +JULIET: +What's he that follows there, that would not dance? + +Nurse: +I know not. + +JULIET: +Go ask his name: if he be married. +My grave is like to be my wedding bed. + +Nurse: +His name is Romeo, and a Montague; +The only son of your great enemy. + +JULIET: +My only love sprung from my only hate! +Too early seen unknown, and known too late! +Prodigious birth of love it is to me, +That I must love a loathed enemy. + +Nurse: +What's this? what's this? + +JULIET: +A rhyme I learn'd even now +Of one I danced withal. + +Nurse: +Anon, anon! +Come, let's away; the strangers all are gone. + +Chorus: +Now old desire doth in his death-bed lie, +And young affection gapes to be his heir; +That fair for which love groan'd for and would die, +With tender Juliet match'd, is now not fair. +Now Romeo is beloved and loves again, +Alike betwitched by the charm of looks, +But to his foe supposed he must complain, +And she steal love's sweet bait from fearful hooks: +Being held a foe, he may not have access +To breathe such vows as lovers use to swear; +And she as much in love, her means much less +To meet her new-beloved any where: +But passion lends them power, time means, to meet +Tempering extremities with extreme sweet. + +ROMEO: +Can I go forward when my heart is here? +Turn back, dull earth, and find thy centre out. + +BENVOLIO: +Romeo! my cousin Romeo! + +MERCUTIO: +He is wise; +And, on my lie, hath stol'n him home to bed. + +BENVOLIO: +He ran this way, and leap'd this orchard wall: +Call, good Mercutio. + +MERCUTIO: +Nay, I'll conjure too. +Romeo! humours! madman! passion! lover! +Appear thou in the likeness of a sigh: +Speak but one rhyme, and I am satisfied; +Cry but 'Ay me!' pronounce but 'love' and 'dove;' +Speak to my gossip Venus one fair word, +One nick-name for her purblind son and heir, +Young Adam Cupid, he that shot so trim, +When King Cophetua loved the beggar-maid! +He heareth not, he stirreth not, he moveth not; +The ape is dead, and I must conjure him. +I conjure thee by Rosaline's bright eyes, +By her high forehead and her scarlet lip, +By her fine foot, straight leg and quivering thigh +And the demesnes that there adjacent lie, +That in thy likeness thou appear to us! + +BENVOLIO: +And if he hear thee, thou wilt anger him. + +MERCUTIO: +This cannot anger him: 'twould anger him +To raise a spirit in his mistress' circle +Of some strange nature, letting it there stand +Till she had laid it and conjured it down; +That were some spite: my invocation +Is fair and honest, and in his mistress' name +I conjure only but to raise up him. + +BENVOLIO: +Come, he hath hid himself among these trees, +To be consorted with the humorous night: +Blind is his love and best befits the dark. + +MERCUTIO: +If love be blind, love cannot hit the mark. +Now will he sit under a medlar tree, +And wish his mistress were that kind of fruit +As maids call medlars, when they laugh alone. +Romeo, that she were, O, that she were +An open et caetera, thou a poperin pear! +Romeo, good night: I'll to my truckle-bed; +This field-bed is too cold for me to sleep: +Come, shall we go? + +BENVOLIO: +Go, then; for 'tis in vain +To seek him here that means not to be found. + +ROMEO: +He jests at scars that never felt a wound. +But, soft! what light through yonder window breaks? +It is the east, and Juliet is the sun. +Arise, fair sun, and kill the envious moon, +Who is already sick and pale with grief, +That thou her maid art far more fair than she: +Be not her maid, since she is envious; +Her vestal livery is but sick and green +And none but fools do wear it; cast it off. +It is my lady, O, it is my love! +O, that she knew she were! +She speaks yet she says nothing: what of that? +Her eye discourses; I will answer it. +I am too bold, 'tis not to me she speaks: +Two of the fairest stars in all the heaven, +Having some business, do entreat her eyes +To twinkle in their spheres till they return. +What if her eyes were there, they in her head? +The brightness of her cheek would shame those stars, +As daylight doth a lamp; her eyes in heaven +Would through the airy region stream so bright +That birds would sing and think it were not night. +See, how she leans her cheek upon her hand! +O, that I were a glove upon that hand, +That I might touch that cheek! + +JULIET: +Ay me! + +ROMEO: +She speaks: +O, speak again, bright angel! for thou art +As glorious to this night, being o'er my head +As is a winged messenger of heaven +Unto the white-upturned wondering eyes +Of mortals that fall back to gaze on him +When he bestrides the lazy-pacing clouds +And sails upon the bosom of the air. + +JULIET: +O Romeo, Romeo! wherefore art thou Romeo? +Deny thy father and refuse thy name; +Or, if thou wilt not, be but sworn my love, +And I'll no longer be a Capulet. + +ROMEO: + +JULIET: +'Tis but thy name that is my enemy; +Thou art thyself, though not a Montague. +What's Montague? it is nor hand, nor foot, +Nor arm, nor face, nor any other part +Belonging to a man. O, be some other name! +What's in a name? that which we call a rose +By any other name would smell as sweet; +So Romeo would, were he not Romeo call'd, +Retain that dear perfection which he owes +Without that title. Romeo, doff thy name, +And for that name which is no part of thee +Take all myself. + +ROMEO: +I take thee at thy word: +Call me but love, and I'll be new baptized; +Henceforth I never will be Romeo. + +JULIET: +What man art thou that thus bescreen'd in night +So stumblest on my counsel? + +ROMEO: +By a name +I know not how to tell thee who I am: +My name, dear saint, is hateful to myself, +Because it is an enemy to thee; +Had I it written, I would tear the word. + +JULIET: +My ears have not yet drunk a hundred words +Of that tongue's utterance, yet I know the sound: +Art thou not Romeo and a Montague? + +ROMEO: +Neither, fair saint, if either thee dislike. + +JULIET: +How camest thou hither, tell me, and wherefore? +The orchard walls are high and hard to climb, +And the place death, considering who thou art, +If any of my kinsmen find thee here. + +ROMEO: +With love's light wings did I o'er-perch these walls; +For stony limits cannot hold love out, +And what love can do that dares love attempt; +Therefore thy kinsmen are no let to me. + +JULIET: +If they do see thee, they will murder thee. + +ROMEO: +Alack, there lies more peril in thine eye +Than twenty of their swords: look thou but sweet, +And I am proof against their enmity. + +JULIET: +I would not for the world they saw thee here. + +ROMEO: +I have night's cloak to hide me from their sight; +And but thou love me, let them find me here: +My life were better ended by their hate, +Than death prorogued, wanting of thy love. + +JULIET: +By whose direction found'st thou out this place? + +ROMEO: +By love, who first did prompt me to inquire; +He lent me counsel and I lent him eyes. +I am no pilot; yet, wert thou as far +As that vast shore wash'd with the farthest sea, +I would adventure for such merchandise. + +JULIET: +Thou know'st the mask of night is on my face, +Else would a maiden blush bepaint my cheek +For that which thou hast heard me speak to-night +Fain would I dwell on form, fain, fain deny +What I have spoke: but farewell compliment! +Dost thou love me? I know thou wilt say 'Ay,' +And I will take thy word: yet if thou swear'st, +Thou mayst prove false; at lovers' perjuries +Then say, Jove laughs. O gentle Romeo, +If thou dost love, pronounce it faithfully: +Or if thou think'st I am too quickly won, +I'll frown and be perverse an say thee nay, +So thou wilt woo; but else, not for the world. +In truth, fair Montague, I am too fond, +And therefore thou mayst think my 'havior light: +But trust me, gentleman, I'll prove more true +Than those that have more cunning to be strange. +I should have been more strange, I must confess, +But that thou overheard'st, ere I was ware, +My true love's passion: therefore pardon me, +And not impute this yielding to light love, +Which the dark night hath so discovered. + +ROMEO: +Lady, by yonder blessed moon I swear +That tips with silver all these fruit-tree tops-- + +JULIET: +O, swear not by the moon, the inconstant moon, +That monthly changes in her circled orb, +Lest that thy love prove likewise variable. + +ROMEO: +What shall I swear by? + +JULIET: +Do not swear at all; +Or, if thou wilt, swear by thy gracious self, +Which is the god of my idolatry, +And I'll believe thee. + +ROMEO: +If my heart's dear love-- + +JULIET: +Well, do not swear: although I joy in thee, +I have no joy of this contract to-night: +It is too rash, too unadvised, too sudden; +Too like the lightning, which doth cease to be +Ere one can say 'It lightens.' Sweet, good night! +This bud of love, by summer's ripening breath, +May prove a beauteous flower when next we meet. +Good night, good night! as sweet repose and rest +Come to thy heart as that within my breast! + +ROMEO: +O, wilt thou leave me so unsatisfied? + +JULIET: +What satisfaction canst thou have to-night? + +ROMEO: +The exchange of thy love's faithful vow for mine. + +JULIET: +I gave thee mine before thou didst request it: +And yet I would it were to give again. + +ROMEO: +Wouldst thou withdraw it? for what purpose, love? + +JULIET: +But to be frank, and give it thee again. +And yet I wish but for the thing I have: +My bounty is as boundless as the sea, +My love as deep; the more I give to thee, +The more I have, for both are infinite. +I hear some noise within; dear love, adieu! +Anon, good nurse! Sweet Montague, be true. +Stay but a little, I will come again. + +ROMEO: +O blessed, blessed night! I am afeard. +Being in night, all this is but a dream, +Too flattering-sweet to be substantial. + +JULIET: +Three words, dear Romeo, and good night indeed. +If that thy bent of love be honourable, +Thy purpose marriage, send me word to-morrow, +By one that I'll procure to come to thee, +Where and what time thou wilt perform the rite; +And all my fortunes at thy foot I'll lay +And follow thee my lord throughout the world. + +Nurse: + +JULIET: +I come, anon.--But if thou mean'st not well, +I do beseech thee-- + +Nurse: + +JULIET: +By and by, I come:-- +To cease thy suit, and leave me to my grief: +To-morrow will I send. + +ROMEO: +So thrive my soul-- + +JULIET: +A thousand times good night! + +ROMEO: +A thousand times the worse, to want thy light. +Love goes toward love, as schoolboys from +their books, +But love from love, toward school with heavy looks. + +JULIET: +Hist! Romeo, hist! O, for a falconer's voice, +To lure this tassel-gentle back again! +Bondage is hoarse, and may not speak aloud; +Else would I tear the cave where Echo lies, +And make her airy tongue more hoarse than mine, +With repetition of my Romeo's name. + +ROMEO: +It is my soul that calls upon my name: +How silver-sweet sound lovers' tongues by night, +Like softest music to attending ears! + +JULIET: +Romeo! + +ROMEO: +My dear? + +JULIET: +At what o'clock to-morrow +Shall I send to thee? + +ROMEO: +At the hour of nine. + +JULIET: +I will not fail: 'tis twenty years till then. +I have forgot why I did call thee back. + +ROMEO: +Let me stand here till thou remember it. + +JULIET: +I shall forget, to have thee still stand there, +Remembering how I love thy company. + +ROMEO: +And I'll still stay, to have thee still forget, +Forgetting any other home but this. + +JULIET: +'Tis almost morning; I would have thee gone: +And yet no further than a wanton's bird; +Who lets it hop a little from her hand, +Like a poor prisoner in his twisted gyves, +And with a silk thread plucks it back again, +So loving-jealous of his liberty. + +ROMEO: +I would I were thy bird. + +JULIET: +Sweet, so would I: +Yet I should kill thee with much cherishing. +Good night, good night! parting is such +sweet sorrow, +That I shall say good night till it be morrow. + +ROMEO: +Sleep dwell upon thine eyes, peace in thy breast! +Would I were sleep and peace, so sweet to rest! +Hence will I to my ghostly father's cell, +His help to crave, and my dear hap to tell. + +FRIAR LAURENCE: +The grey-eyed morn smiles on the frowning night, +Chequering the eastern clouds with streaks of light, +And flecked darkness like a drunkard reels +From forth day's path and Titan's fiery wheels: +Now, ere the sun advance his burning eye, +The day to cheer and night's dank dew to dry, +I must up-fill this osier cage of ours +With baleful weeds and precious-juiced flowers. +The earth that's nature's mother is her tomb; +What is her burying grave that is her womb, +And from her womb children of divers kind +We sucking on her natural bosom find, +Many for many virtues excellent, +None but for some and yet all different. +O, mickle is the powerful grace that lies +In herbs, plants, stones, and their true qualities: +For nought so vile that on the earth doth live +But to the earth some special good doth give, +Nor aught so good but strain'd from that fair use +Revolts from true birth, stumbling on abuse: +Virtue itself turns vice, being misapplied; +And vice sometimes by action dignified. +Within the infant rind of this small flower +Poison hath residence and medicine power: +For this, being smelt, with that part cheers each part; +Being tasted, slays all senses with the heart. +Two such opposed kings encamp them still +In man as well as herbs, grace and rude will; +And where the worser is predominant, +Full soon the canker death eats up that plant. + +ROMEO: +Good morrow, father. + +FRIAR LAURENCE: +Benedicite! +What early tongue so sweet saluteth me? +Young son, it argues a distemper'd head +So soon to bid good morrow to thy bed: +Care keeps his watch in every old man's eye, +And where care lodges, sleep will never lie; +But where unbruised youth with unstuff'd brain +Doth couch his limbs, there golden sleep doth reign: +Therefore thy earliness doth me assure +Thou art up-roused by some distemperature; +Or if not so, then here I hit it right, +Our Romeo hath not been in bed to-night. + +ROMEO: +That last is true; the sweeter rest was mine. + +FRIAR LAURENCE: +God pardon sin! wast thou with Rosaline? + +ROMEO: +With Rosaline, my ghostly father? no; +I have forgot that name, and that name's woe. + +FRIAR LAURENCE: +That's my good son: but where hast thou been, then? + +ROMEO: +I'll tell thee, ere thou ask it me again. +I have been feasting with mine enemy, +Where on a sudden one hath wounded me, +That's by me wounded: both our remedies +Within thy help and holy physic lies: +I bear no hatred, blessed man, for, lo, +My intercession likewise steads my foe. + +FRIAR LAURENCE: +Be plain, good son, and homely in thy drift; +Riddling confession finds but riddling shrift. + +ROMEO: +Then plainly know my heart's dear love is set +On the fair daughter of rich Capulet: +As mine on hers, so hers is set on mine; +And all combined, save what thou must combine +By holy marriage: when and where and how +We met, we woo'd and made exchange of vow, +I'll tell thee as we pass; but this I pray, +That thou consent to marry us to-day. + +FRIAR LAURENCE: +Holy Saint Francis, what a change is here! +Is Rosaline, whom thou didst love so dear, +So soon forsaken? young men's love then lies +Not truly in their hearts, but in their eyes. +Jesu Maria, what a deal of brine +Hath wash'd thy sallow cheeks for Rosaline! +How much salt water thrown away in waste, +To season love, that of it doth not taste! +The sun not yet thy sighs from heaven clears, +Thy old groans ring yet in my ancient ears; +Lo, here upon thy cheek the stain doth sit +Of an old tear that is not wash'd off yet: +If e'er thou wast thyself and these woes thine, +Thou and these woes were all for Rosaline: +And art thou changed? pronounce this sentence then, +Women may fall, when there's no strength in men. + +ROMEO: +Thou chid'st me oft for loving Rosaline. + +FRIAR LAURENCE: +For doting, not for loving, pupil mine. + +ROMEO: +And bad'st me bury love. + +FRIAR LAURENCE: +Not in a grave, +To lay one in, another out to have. + +ROMEO: +I pray thee, chide not; she whom I love now +Doth grace for grace and love for love allow; +The other did not so. + +FRIAR LAURENCE: +O, she knew well +Thy love did read by rote and could not spell. +But come, young waverer, come, go with me, +In one respect I'll thy assistant be; +For this alliance may so happy prove, +To turn your households' rancour to pure love. + +ROMEO: +O, let us hence; I stand on sudden haste. + +FRIAR LAURENCE: +Wisely and slow; they stumble that run fast. + +MERCUTIO: +Where the devil should this Romeo be? +Came he not home to-night? + +BENVOLIO: +Not to his father's; I spoke with his man. + +MERCUTIO: +Ah, that same pale hard-hearted wench, that Rosaline. +Torments him so, that he will sure run mad. + +BENVOLIO: +Tybalt, the kinsman of old Capulet, +Hath sent a letter to his father's house. + +MERCUTIO: +A challenge, on my life. + +BENVOLIO: +Romeo will answer it. + +MERCUTIO: +Any man that can write may answer a letter. + +BENVOLIO: +Nay, he will answer the letter's master, how he +dares, being dared. + +MERCUTIO: +Alas poor Romeo! he is already dead; stabbed with a +white wench's black eye; shot through the ear with a +love-song; the very pin of his heart cleft with the +blind bow-boy's butt-shaft: and is he a man to +encounter Tybalt? + +BENVOLIO: +Why, what is Tybalt? + +MERCUTIO: +More than prince of cats, I can tell you. O, he is +the courageous captain of compliments. He fights as +you sing prick-song, keeps time, distance, and +proportion; rests me his minim rest, one, two, and +the third in your bosom: the very butcher of a silk +button, a duellist, a duellist; a gentleman of the +very first house, of the first and second cause: +ah, the immortal passado! the punto reverso! the +hai! + +BENVOLIO: +The what? + +MERCUTIO: +The pox of such antic, lisping, affecting +fantasticoes; these new tuners of accents! 'By Jesu, +a very good blade! a very tall man! a very good +whore!' Why, is not this a lamentable thing, +grandsire, that we should be thus afflicted with +these strange flies, these fashion-mongers, these +perdona-mi's, who stand so much on the new form, +that they cannot at ease on the old bench? O, their +bones, their bones! + +BENVOLIO: +Here comes Romeo, here comes Romeo. + +MERCUTIO: +Without his roe, like a dried herring: flesh, flesh, +how art thou fishified! Now is he for the numbers +that Petrarch flowed in: Laura to his lady was but a +kitchen-wench; marry, she had a better love to +be-rhyme her; Dido a dowdy; Cleopatra a gipsy; +Helen and Hero hildings and harlots; Thisbe a grey +eye or so, but not to the purpose. Signior +Romeo, bon jour! there's a French salutation +to your French slop. You gave us the counterfeit +fairly last night. + +ROMEO: +Good morrow to you both. What counterfeit did I give you? + +MERCUTIO: +The ship, sir, the slip; can you not conceive? + +ROMEO: +Pardon, good Mercutio, my business was great; and in +such a case as mine a man may strain courtesy. + +MERCUTIO: +That's as much as to say, such a case as yours +constrains a man to bow in the hams. + +ROMEO: +Meaning, to court'sy. + +MERCUTIO: +Thou hast most kindly hit it. + +ROMEO: +A most courteous exposition. + +MERCUTIO: +Nay, I am the very pink of courtesy. + +ROMEO: +Pink for flower. + +MERCUTIO: +Right. + +ROMEO: +Why, then is my pump well flowered. + +MERCUTIO: +Well said: follow me this jest now till thou hast +worn out thy pump, that when the single sole of it +is worn, the jest may remain after the wearing sole singular. + +ROMEO: +O single-soled jest, solely singular for the +singleness. + +MERCUTIO: +Come between us, good Benvolio; my wits faint. + +ROMEO: +Switch and spurs, switch and spurs; or I'll cry a match. + +MERCUTIO: +Nay, if thy wits run the wild-goose chase, I have +done, for thou hast more of the wild-goose in one of +thy wits than, I am sure, I have in my whole five: +was I with you there for the goose? + +ROMEO: +Thou wast never with me for any thing when thou wast +not there for the goose. + +MERCUTIO: +I will bite thee by the ear for that jest. + +ROMEO: +Nay, good goose, bite not. + +MERCUTIO: +Thy wit is a very bitter sweeting; it is a most +sharp sauce. + +ROMEO: +And is it not well served in to a sweet goose? + +MERCUTIO: +O here's a wit of cheveril, that stretches from an +inch narrow to an ell broad! + +ROMEO: +I stretch it out for that word 'broad;' which added +to the goose, proves thee far and wide a broad goose. + +MERCUTIO: +Why, is not this better now than groaning for love? +now art thou sociable, now art thou Romeo; now art +thou what thou art, by art as well as by nature: +for this drivelling love is like a great natural, +that runs lolling up and down to hide his bauble in a hole. + +BENVOLIO: +Stop there, stop there. + +MERCUTIO: +Thou desirest me to stop in my tale against the hair. + +BENVOLIO: +Thou wouldst else have made thy tale large. + +MERCUTIO: +O, thou art deceived; I would have made it short: +for I was come to the whole depth of my tale; and +meant, indeed, to occupy the argument no longer. + +ROMEO: +Here's goodly gear! + +MERCUTIO: +A sail, a sail! + +BENVOLIO: +Two, two; a shirt and a smock. + +Nurse: +Peter! + +PETER: +Anon! + +Nurse: +My fan, Peter. + +MERCUTIO: +Good Peter, to hide her face; for her fan's the +fairer face. + +Nurse: +God ye good morrow, gentlemen. + +MERCUTIO: +God ye good den, fair gentlewoman. + +Nurse: +Is it good den? + +MERCUTIO: +'Tis no less, I tell you, for the bawdy hand of the +dial is now upon the prick of noon. + +Nurse: +Out upon you! what a man are you! + +ROMEO: +One, gentlewoman, that God hath made for himself to +mar. + +Nurse: +By my troth, it is well said; 'for himself to mar,' +quoth a'? Gentlemen, can any of you tell me where I +may find the young Romeo? + +ROMEO: +I can tell you; but young Romeo will be older when +you have found him than he was when you sought him: +I am the youngest of that name, for fault of a worse. + +Nurse: +You say well. + +MERCUTIO: +Yea, is the worst well? very well took, i' faith; +wisely, wisely. + +Nurse: +if you be he, sir, I desire some confidence with +you. + +BENVOLIO: +She will indite him to some supper. + +MERCUTIO: +A bawd, a bawd, a bawd! so ho! + +ROMEO: +What hast thou found? + +MERCUTIO: +No hare, sir; unless a hare, sir, in a lenten pie, +that is something stale and hoar ere it be spent. +An old hare hoar, +And an old hare hoar, +Is very good meat in lent +But a hare that is hoar +Is too much for a score, +When it hoars ere it be spent. +Romeo, will you come to your father's? we'll +to dinner, thither. + +ROMEO: +I will follow you. + +MERCUTIO: +Farewell, ancient lady; farewell, +'lady, lady, lady.' + +Nurse: +Marry, farewell! I pray you, sir, what saucy +merchant was this, that was so full of his ropery? + +ROMEO: +A gentleman, nurse, that loves to hear himself talk, +and will speak more in a minute than he will stand +to in a month. + +Nurse: +An a' speak any thing against me, I'll take him +down, an a' were lustier than he is, and twenty such +Jacks; and if I cannot, I'll find those that shall. +Scurvy knave! I am none of his flirt-gills; I am +none of his skains-mates. And thou must stand by +too, and suffer every knave to use me at his pleasure? + +PETER: +I saw no man use you a pleasure; if I had, my weapon +should quickly have been out, I warrant you: I dare +draw as soon as another man, if I see occasion in a +good quarrel, and the law on my side. + +Nurse: +Now, afore God, I am so vexed, that every part about +me quivers. Scurvy knave! Pray you, sir, a word: +and as I told you, my young lady bade me inquire you +out; what she bade me say, I will keep to myself: +but first let me tell ye, if ye should lead her into +a fool's paradise, as they say, it were a very gross +kind of behavior, as they say: for the gentlewoman +is young; and, therefore, if you should deal double +with her, truly it were an ill thing to be offered +to any gentlewoman, and very weak dealing. + +ROMEO: +Nurse, commend me to thy lady and mistress. I +protest unto thee-- + +Nurse: +Good heart, and, i' faith, I will tell her as much: +Lord, Lord, she will be a joyful woman. + +ROMEO: +What wilt thou tell her, nurse? thou dost not mark me. + +Nurse: +I will tell her, sir, that you do protest; which, as +I take it, is a gentlemanlike offer. + +ROMEO: +Bid her devise +Some means to come to shrift this afternoon; +And there she shall at Friar Laurence' cell +Be shrived and married. Here is for thy pains. + +Nurse: +No truly sir; not a penny. + +ROMEO: +Go to; I say you shall. + +Nurse: +This afternoon, sir? well, she shall be there. + +ROMEO: +And stay, good nurse, behind the abbey wall: +Within this hour my man shall be with thee +And bring thee cords made like a tackled stair; +Which to the high top-gallant of my joy +Must be my convoy in the secret night. +Farewell; be trusty, and I'll quit thy pains: +Farewell; commend me to thy mistress. + +Nurse: +Now God in heaven bless thee! Hark you, sir. + +ROMEO: +What say'st thou, my dear nurse? + +Nurse: +Is your man secret? Did you ne'er hear say, +Two may keep counsel, putting one away? + +ROMEO: +I warrant thee, my man's as true as steel. + +NURSE: +Well, sir; my mistress is the sweetest lady--Lord, +Lord! when 'twas a little prating thing:--O, there +is a nobleman in town, one Paris, that would fain +lay knife aboard; but she, good soul, had as lief +see a toad, a very toad, as see him. I anger her +sometimes and tell her that Paris is the properer +man; but, I'll warrant you, when I say so, she looks +as pale as any clout in the versal world. Doth not +rosemary and Romeo begin both with a letter? + +ROMEO: +Ay, nurse; what of that? both with an R. + +Nurse: +Ah. mocker! that's the dog's name; R is for +the--No; I know it begins with some other +letter:--and she hath the prettiest sententious of +it, of you and rosemary, that it would do you good +to hear it. + +ROMEO: +Commend me to thy lady. + +Nurse: +Ay, a thousand times. +Peter! + +PETER: +Anon! + +Nurse: +Peter, take my fan, and go before and apace. + +JULIET: +The clock struck nine when I did send the nurse; +In half an hour she promised to return. +Perchance she cannot meet him: that's not so. +O, she is lame! love's heralds should be thoughts, +Which ten times faster glide than the sun's beams, +Driving back shadows over louring hills: +Therefore do nimble-pinion'd doves draw love, +And therefore hath the wind-swift Cupid wings. +Now is the sun upon the highmost hill +Of this day's journey, and from nine till twelve +Is three long hours, yet she is not come. +Had she affections and warm youthful blood, +She would be as swift in motion as a ball; +My words would bandy her to my sweet love, +And his to me: +But old folks, many feign as they were dead; +Unwieldy, slow, heavy and pale as lead. +O God, she comes! +O honey nurse, what news? +Hast thou met with him? Send thy man away. + +Nurse: +Peter, stay at the gate. + +JULIET: +Now, good sweet nurse,--O Lord, why look'st thou sad? +Though news be sad, yet tell them merrily; +If good, thou shamest the music of sweet news +By playing it to me with so sour a face. + +Nurse: +I am a-weary, give me leave awhile: +Fie, how my bones ache! what a jaunt have I had! + +JULIET: +I would thou hadst my bones, and I thy news: +Nay, come, I pray thee, speak; good, good nurse, speak. + +Nurse: +Jesu, what haste? can you not stay awhile? +Do you not see that I am out of breath? + +JULIET: +How art thou out of breath, when thou hast breath +To say to me that thou art out of breath? +The excuse that thou dost make in this delay +Is longer than the tale thou dost excuse. +Is thy news good, or bad? answer to that; +Say either, and I'll stay the circumstance: +Let me be satisfied, is't good or bad? + +Nurse: +Well, you have made a simple choice; you know not +how to choose a man: Romeo! no, not he; though his +face be better than any man's, yet his leg excels +all men's; and for a hand, and a foot, and a body, +though they be not to be talked on, yet they are +past compare: he is not the flower of courtesy, +but, I'll warrant him, as gentle as a lamb. Go thy +ways, wench; serve God. What, have you dined at home? + +JULIET: +No, no: but all this did I know before. +What says he of our marriage? what of that? + +Nurse: +Lord, how my head aches! what a head have I! +It beats as it would fall in twenty pieces. +My back o' t' other side,--O, my back, my back! +Beshrew your heart for sending me about, +To catch my death with jaunting up and down! + +JULIET: +I' faith, I am sorry that thou art not well. +Sweet, sweet, sweet nurse, tell me, what says my love? + +Nurse: +Your love says, like an honest gentleman, and a +courteous, and a kind, and a handsome, and, I +warrant, a virtuous,--Where is your mother? + +JULIET: +Where is my mother! why, she is within; +Where should she be? How oddly thou repliest! +'Your love says, like an honest gentleman, +Where is your mother?' + +Nurse: +O God's lady dear! +Are you so hot? marry, come up, I trow; +Is this the poultice for my aching bones? +Henceforward do your messages yourself. + +JULIET: +Here's such a coil! come, what says Romeo? + +Nurse: +Have you got leave to go to shrift to-day? + +JULIET: +I have. + +Nurse: +Then hie you hence to Friar Laurence' cell; +There stays a husband to make you a wife: +Now comes the wanton blood up in your cheeks, +They'll be in scarlet straight at any news. +Hie you to church; I must another way, +To fetch a ladder, by the which your love +Must climb a bird's nest soon when it is dark: +I am the drudge and toil in your delight, +But you shall bear the burden soon at night. +Go; I'll to dinner: hie you to the cell. + +JULIET: +Hie to high fortune! Honest nurse, farewell. + +FRIAR LAURENCE: +So smile the heavens upon this holy act, +That after hours with sorrow chide us not! + +ROMEO: +Amen, amen! but come what sorrow can, +It cannot countervail the exchange of joy +That one short minute gives me in her sight: +Do thou but close our hands with holy words, +Then love-devouring death do what he dare; +It is enough I may but call her mine. + +FRIAR LAURENCE: +These violent delights have violent ends +And in their triumph die, like fire and powder, +Which as they kiss consume: the sweetest honey +Is loathsome in his own deliciousness +And in the taste confounds the appetite: +Therefore love moderately; long love doth so; +Too swift arrives as tardy as too slow. +Here comes the lady: O, so light a foot +Will ne'er wear out the everlasting flint: +A lover may bestride the gossamer +That idles in the wanton summer air, +And yet not fall; so light is vanity. + +JULIET: +Good even to my ghostly confessor. + +FRIAR LAURENCE: +Romeo shall thank thee, daughter, for us both. + +JULIET: +As much to him, else is his thanks too much. + +ROMEO: +Ah, Juliet, if the measure of thy joy +Be heap'd like mine and that thy skill be more +To blazon it, then sweeten with thy breath +This neighbour air, and let rich music's tongue +Unfold the imagined happiness that both +Receive in either by this dear encounter. + +JULIET: +Conceit, more rich in matter than in words, +Brags of his substance, not of ornament: +They are but beggars that can count their worth; +But my true love is grown to such excess +I cannot sum up sum of half my wealth. + +FRIAR LAURENCE: +Come, come with me, and we will make short work; +For, by your leaves, you shall not stay alone +Till holy church incorporate two in one. + +BENVOLIO: +I pray thee, good Mercutio, let's retire: +The day is hot, the Capulets abroad, +And, if we meet, we shall not scape a brawl; +For now, these hot days, is the mad blood stirring. + +MERCUTIO: +Thou art like one of those fellows that when he +enters the confines of a tavern claps me his sword +upon the table and says 'God send me no need of +thee!' and by the operation of the second cup draws +it on the drawer, when indeed there is no need. + +BENVOLIO: +Am I like such a fellow? + +MERCUTIO: +Come, come, thou art as hot a Jack in thy mood as +any in Italy, and as soon moved to be moody, and as +soon moody to be moved. + +BENVOLIO: +And what to? + +MERCUTIO: +Nay, an there were two such, we should have none +shortly, for one would kill the other. Thou! why, +thou wilt quarrel with a man that hath a hair more, +or a hair less, in his beard, than thou hast: thou +wilt quarrel with a man for cracking nuts, having no +other reason but because thou hast hazel eyes: what +eye but such an eye would spy out such a quarrel? +Thy head is as fun of quarrels as an egg is full of +meat, and yet thy head hath been beaten as addle as +an egg for quarrelling: thou hast quarrelled with a +man for coughing in the street, because he hath +wakened thy dog that hath lain asleep in the sun: +didst thou not fall out with a tailor for wearing +his new doublet before Easter? with another, for +tying his new shoes with old riband? and yet thou +wilt tutor me from quarrelling! + +BENVOLIO: +An I were so apt to quarrel as thou art, any man +should buy the fee-simple of my life for an hour and a quarter. + +MERCUTIO: +The fee-simple! O simple! + +BENVOLIO: +By my head, here come the Capulets. + +MERCUTIO: +By my heel, I care not. + +TYBALT: +Follow me close, for I will speak to them. +Gentlemen, good den: a word with one of you. + +MERCUTIO: +And but one word with one of us? couple it with +something; make it a word and a blow. + +TYBALT: +You shall find me apt enough to that, sir, an you +will give me occasion. + +MERCUTIO: +Could you not take some occasion without giving? + +TYBALT: +Mercutio, thou consort'st with Romeo,-- + +MERCUTIO: +Consort! what, dost thou make us minstrels? an +thou make minstrels of us, look to hear nothing but +discords: here's my fiddlestick; here's that shall +make you dance. 'Zounds, consort! + +BENVOLIO: +We talk here in the public haunt of men: +Either withdraw unto some private place, +And reason coldly of your grievances, +Or else depart; here all eyes gaze on us. + +MERCUTIO: +Men's eyes were made to look, and let them gaze; +I will not budge for no man's pleasure, I. + +TYBALT: +Well, peace be with you, sir: here comes my man. + +MERCUTIO: +But I'll be hanged, sir, if he wear your livery: +Marry, go before to field, he'll be your follower; +Your worship in that sense may call him 'man.' + +TYBALT: +Romeo, the hate I bear thee can afford +No better term than this,--thou art a villain. + +ROMEO: +Tybalt, the reason that I have to love thee +Doth much excuse the appertaining rage +To such a greeting: villain am I none; +Therefore farewell; I see thou know'st me not. + +TYBALT: +Boy, this shall not excuse the injuries +That thou hast done me; therefore turn and draw. + +ROMEO: +I do protest, I never injured thee, +But love thee better than thou canst devise, +Till thou shalt know the reason of my love: +And so, good Capulet,--which name I tender +As dearly as my own,--be satisfied. + +MERCUTIO: +O calm, dishonourable, vile submission! +Alla stoccata carries it away. +Tybalt, you rat-catcher, will you walk? + +TYBALT: +What wouldst thou have with me? + +MERCUTIO: +Good king of cats, nothing but one of your nine +lives; that I mean to make bold withal, and as you +shall use me hereafter, drybeat the rest of the +eight. Will you pluck your sword out of his pitcher +by the ears? make haste, lest mine be about your +ears ere it be out. + +TYBALT: +I am for you. + +ROMEO: +Gentle Mercutio, put thy rapier up. + +MERCUTIO: +Come, sir, your passado. + +ROMEO: +Draw, Benvolio; beat down their weapons. +Gentlemen, for shame, forbear this outrage! +Tybalt, Mercutio, the prince expressly hath +Forbidden bandying in Verona streets: +Hold, Tybalt! good Mercutio! + +MERCUTIO: +I am hurt. +A plague o' both your houses! I am sped. +Is he gone, and hath nothing? + +BENVOLIO: +What, art thou hurt? + +MERCUTIO: +Ay, ay, a scratch, a scratch; marry, 'tis enough. +Where is my page? Go, villain, fetch a surgeon. + +ROMEO: +Courage, man; the hurt cannot be much. + +MERCUTIO: +No, 'tis not so deep as a well, nor so wide as a +church-door; but 'tis enough,'twill serve: ask for +me to-morrow, and you shall find me a grave man. I +am peppered, I warrant, for this world. A plague o' +both your houses! 'Zounds, a dog, a rat, a mouse, a +cat, to scratch a man to death! a braggart, a +rogue, a villain, that fights by the book of +arithmetic! Why the devil came you between us? I +was hurt under your arm. + +ROMEO: +I thought all for the best. + +MERCUTIO: +Help me into some house, Benvolio, +Or I shall faint. A plague o' both your houses! +They have made worms' meat of me: I have it, +And soundly too: your houses! + +ROMEO: +This gentleman, the prince's near ally, +My very friend, hath got his mortal hurt +In my behalf; my reputation stain'd +With Tybalt's slander,--Tybalt, that an hour +Hath been my kinsman! O sweet Juliet, +Thy beauty hath made me effeminate +And in my temper soften'd valour's steel! + +BENVOLIO: +O Romeo, Romeo, brave Mercutio's dead! +That gallant spirit hath aspired the clouds, +Which too untimely here did scorn the earth. + +ROMEO: +This day's black fate on more days doth depend; +This but begins the woe, others must end. + +BENVOLIO: +Here comes the furious Tybalt back again. + +ROMEO: +Alive, in triumph! and Mercutio slain! +Away to heaven, respective lenity, +And fire-eyed fury be my conduct now! +Now, Tybalt, take the villain back again, +That late thou gavest me; for Mercutio's soul +Is but a little way above our heads, +Staying for thine to keep him company: +Either thou, or I, or both, must go with him. + +TYBALT: +Thou, wretched boy, that didst consort him here, +Shalt with him hence. + +ROMEO: +This shall determine that. + +BENVOLIO: +Romeo, away, be gone! +The citizens are up, and Tybalt slain. +Stand not amazed: the prince will doom thee death, +If thou art taken: hence, be gone, away! + +ROMEO: +O, I am fortune's fool! + +BENVOLIO: +Why dost thou stay? + +First Citizen: +Which way ran he that kill'd Mercutio? +Tybalt, that murderer, which way ran he? + +BENVOLIO: +There lies that Tybalt. + +First Citizen: +Up, sir, go with me; +I charge thee in the princes name, obey. + +PRINCE: +Where are the vile beginners of this fray? + +BENVOLIO: +O noble prince, I can discover all +The unlucky manage of this fatal brawl: +There lies the man, slain by young Romeo, +That slew thy kinsman, brave Mercutio. + +LADY CAPULET: +Tybalt, my cousin! O my brother's child! +O prince! O cousin! husband! O, the blood is spilt +O my dear kinsman! Prince, as thou art true, +For blood of ours, shed blood of Montague. +O cousin, cousin! + +PRINCE: +Benvolio, who began this bloody fray? + +BENVOLIO: +Tybalt, here slain, whom Romeo's hand did slay; +Romeo that spoke him fair, bade him bethink +How nice the quarrel was, and urged withal +Your high displeasure: all this uttered +With gentle breath, calm look, knees humbly bow'd, +Could not take truce with the unruly spleen +Of Tybalt deaf to peace, but that he tilts +With piercing steel at bold Mercutio's breast, +Who all as hot, turns deadly point to point, +And, with a martial scorn, with one hand beats +Cold death aside, and with the other sends +It back to Tybalt, whose dexterity, +Retorts it: Romeo he cries aloud, +'Hold, friends! friends, part!' and, swifter than +his tongue, +His agile arm beats down their fatal points, +And 'twixt them rushes; underneath whose arm +An envious thrust from Tybalt hit the life +Of stout Mercutio, and then Tybalt fled; +But by and by comes back to Romeo, +Who had but newly entertain'd revenge, +And to 't they go like lightning, for, ere I +Could draw to part them, was stout Tybalt slain. +And, as he fell, did Romeo turn and fly. +This is the truth, or let Benvolio die. + +LADY CAPULET: +He is a kinsman to the Montague; +Affection makes him false; he speaks not true: +Some twenty of them fought in this black strife, +And all those twenty could but kill one life. +I beg for justice, which thou, prince, must give; +Romeo slew Tybalt, Romeo must not live. + +PRINCE: +Romeo slew him, he slew Mercutio; +Who now the price of his dear blood doth owe? + +MONTAGUE: +Not Romeo, prince, he was Mercutio's friend; +His fault concludes but what the law should end, +The life of Tybalt. + +PRINCE: +And for that offence +Immediately we do exile him hence: +I have an interest in your hate's proceeding, +My blood for your rude brawls doth lie a-bleeding; +But I'll amerce you with so strong a fine +That you shall all repent the loss of mine: +I will be deaf to pleading and excuses; +Nor tears nor prayers shall purchase out abuses: +Therefore use none: let Romeo hence in haste, +Else, when he's found, that hour is his last. +Bear hence this body and attend our will: +Mercy but murders, pardoning those that kill. + +JULIET: +Gallop apace, you fiery-footed steeds, +Towards Phoebus' lodging: such a wagoner +As Phaethon would whip you to the west, +And bring in cloudy night immediately. +Spread thy close curtain, love-performing night, +That runaway's eyes may wink and Romeo +Leap to these arms, untalk'd of and unseen. +Lovers can see to do their amorous rites +By their own beauties; or, if love be blind, +It best agrees with night. Come, civil night, +Thou sober-suited matron, all in black, +And learn me how to lose a winning match, +Play'd for a pair of stainless maidenhoods: +Hood my unmann'd blood, bating in my cheeks, +With thy black mantle; till strange love, grown bold, +Think true love acted simple modesty. +Come, night; come, Romeo; come, thou day in night; +For thou wilt lie upon the wings of night +Whiter than new snow on a raven's back. +Come, gentle night, come, loving, black-brow'd night, +Give me my Romeo; and, when he shall die, +Take him and cut him out in little stars, +And he will make the face of heaven so fine +That all the world will be in love with night +And pay no worship to the garish sun. +O, I have bought the mansion of a love, +But not possess'd it, and, though I am sold, +Not yet enjoy'd: so tedious is this day +As is the night before some festival +To an impatient child that hath new robes +And may not wear them. O, here comes my nurse, +And she brings news; and every tongue that speaks +But Romeo's name speaks heavenly eloquence. +Now, nurse, what news? What hast thou there? the cords +That Romeo bid thee fetch? + +Nurse: +Ay, ay, the cords. + +JULIET: +Ay me! what news? why dost thou wring thy hands? + +Nurse: +Ah, well-a-day! he's dead, he's dead, he's dead! +We are undone, lady, we are undone! +Alack the day! he's gone, he's kill'd, he's dead! + +JULIET: +Can heaven be so envious? + +Nurse: +Romeo can, +Though heaven cannot: O Romeo, Romeo! +Who ever would have thought it? Romeo! + +JULIET: +What devil art thou, that dost torment me thus? +This torture should be roar'd in dismal hell. +Hath Romeo slain himself? say thou but 'I,' +And that bare vowel 'I' shall poison more +Than the death-darting eye of cockatrice: +I am not I, if there be such an I; +Or those eyes shut, that make thee answer 'I.' +If he be slain, say 'I'; or if not, no: +Brief sounds determine of my weal or woe. + +Nurse: +I saw the wound, I saw it with mine eyes,-- +God save the mark!--here on his manly breast: +A piteous corse, a bloody piteous corse; +Pale, pale as ashes, all bedaub'd in blood, +All in gore-blood; I swounded at the sight. + +JULIET: +O, break, my heart! poor bankrupt, break at once! +To prison, eyes, ne'er look on liberty! +Vile earth, to earth resign; end motion here; +And thou and Romeo press one heavy bier! + +Nurse: +O Tybalt, Tybalt, the best friend I had! +O courteous Tybalt! honest gentleman! +That ever I should live to see thee dead! + +JULIET: +What storm is this that blows so contrary? +Is Romeo slaughter'd, and is Tybalt dead? +My dear-loved cousin, and my dearer lord? +Then, dreadful trumpet, sound the general doom! +For who is living, if those two are gone? + +Nurse: +Tybalt is gone, and Romeo banished; +Romeo that kill'd him, he is banished. + +JULIET: +O God! did Romeo's hand shed Tybalt's blood? + +Nurse: +It did, it did; alas the day, it did! + +JULIET: +O serpent heart, hid with a flowering face! +Did ever dragon keep so fair a cave? +Beautiful tyrant! fiend angelical! +Dove-feather'd raven! wolvish-ravening lamb! +Despised substance of divinest show! +Just opposite to what thou justly seem'st, +A damned saint, an honourable villain! +O nature, what hadst thou to do in hell, +When thou didst bower the spirit of a fiend +In moral paradise of such sweet flesh? +Was ever book containing such vile matter +So fairly bound? O that deceit should dwell +In such a gorgeous palace! + +Nurse: +There's no trust, +No faith, no honesty in men; all perjured, +All forsworn, all naught, all dissemblers. +Ah, where's my man? give me some aqua vitae: +These griefs, these woes, these sorrows make me old. +Shame come to Romeo! + +JULIET: +Blister'd be thy tongue +For such a wish! he was not born to shame: +Upon his brow shame is ashamed to sit; +For 'tis a throne where honour may be crown'd +Sole monarch of the universal earth. +O, what a beast was I to chide at him! + +Nurse: +Will you speak well of him that kill'd your cousin? + +JULIET: +Shall I speak ill of him that is my husband? +Ah, poor my lord, what tongue shall smooth thy name, +When I, thy three-hours wife, have mangled it? +But, wherefore, villain, didst thou kill my cousin? +That villain cousin would have kill'd my husband: +Back, foolish tears, back to your native spring; +Your tributary drops belong to woe, +Which you, mistaking, offer up to joy. +My husband lives, that Tybalt would have slain; +And Tybalt's dead, that would have slain my husband: +All this is comfort; wherefore weep I then? +Some word there was, worser than Tybalt's death, +That murder'd me: I would forget it fain; +But, O, it presses to my memory, +Like damned guilty deeds to sinners' minds: +'Tybalt is dead, and Romeo--banished;' +That 'banished,' that one word 'banished,' +Hath slain ten thousand Tybalts. Tybalt's death +Was woe enough, if it had ended there: +Or, if sour woe delights in fellowship +And needly will be rank'd with other griefs, +Why follow'd not, when she said 'Tybalt's dead,' +Thy father, or thy mother, nay, or both, +Which modern lamentations might have moved? +But with a rear-ward following Tybalt's death, +'Romeo is banished,' to speak that word, +Is father, mother, Tybalt, Romeo, Juliet, +All slain, all dead. 'Romeo is banished!' +There is no end, no limit, measure, bound, +In that word's death; no words can that woe sound. +Where is my father, and my mother, nurse? + +Nurse: +Weeping and wailing over Tybalt's corse: +Will you go to them? I will bring you thither. + +JULIET: +Wash they his wounds with tears: mine shall be spent, +When theirs are dry, for Romeo's banishment. +Take up those cords: poor ropes, you are beguiled, +Both you and I; for Romeo is exiled: +He made you for a highway to my bed; +But I, a maid, die maiden-widowed. +Come, cords, come, nurse; I'll to my wedding-bed; +And death, not Romeo, take my maidenhead! + +Nurse: +Hie to your chamber: I'll find Romeo +To comfort you: I wot well where he is. +Hark ye, your Romeo will be here at night: +I'll to him; he is hid at Laurence' cell. + +JULIET: +O, find him! give this ring to my true knight, +And bid him come to take his last farewell. + +FRIAR LAURENCE: +Romeo, come forth; come forth, thou fearful man: +Affliction is enamour'd of thy parts, +And thou art wedded to calamity. + +ROMEO: +Father, what news? what is the prince's doom? +What sorrow craves acquaintance at my hand, +That I yet know not? + +FRIAR LAURENCE: +Too familiar +Is my dear son with such sour company: +I bring thee tidings of the prince's doom. + +ROMEO: +What less than dooms-day is the prince's doom? + +FRIAR LAURENCE: +A gentler judgment vanish'd from his lips, +Not body's death, but body's banishment. + +ROMEO: +Ha, banishment! be merciful, say 'death;' +For exile hath more terror in his look, +Much more than death: do not say 'banishment.' + +FRIAR LAURENCE: +Hence from Verona art thou banished: +Be patient, for the world is broad and wide. + +ROMEO: +There is no world without Verona walls, +But purgatory, torture, hell itself. +Hence-banished is banish'd from the world, +And world's exile is death: then banished, +Is death mis-term'd: calling death banishment, +Thou cutt'st my head off with a golden axe, +And smilest upon the stroke that murders me. + +FRIAR LAURENCE: +O deadly sin! O rude unthankfulness! +Thy fault our law calls death; but the kind prince, +Taking thy part, hath rush'd aside the law, +And turn'd that black word death to banishment: +This is dear mercy, and thou seest it not. + +ROMEO: +'Tis torture, and not mercy: heaven is here, +Where Juliet lives; and every cat and dog +And little mouse, every unworthy thing, +Live here in heaven and may look on her; +But Romeo may not: more validity, +More honourable state, more courtship lives +In carrion-flies than Romeo: they my seize +On the white wonder of dear Juliet's hand +And steal immortal blessing from her lips, +Who even in pure and vestal modesty, +Still blush, as thinking their own kisses sin; +But Romeo may not; he is banished: +Flies may do this, but I from this must fly: +They are free men, but I am banished. +And say'st thou yet that exile is not death? +Hadst thou no poison mix'd, no sharp-ground knife, +No sudden mean of death, though ne'er so mean, +But 'banished' to kill me?--'banished'? +O friar, the damned use that word in hell; +Howlings attend it: how hast thou the heart, +Being a divine, a ghostly confessor, +A sin-absolver, and my friend profess'd, +To mangle me with that word 'banished'? + +FRIAR LAURENCE: +Thou fond mad man, hear me but speak a word. + +ROMEO: +O, thou wilt speak again of banishment. + +FRIAR LAURENCE: +I'll give thee armour to keep off that word: +Adversity's sweet milk, philosophy, +To comfort thee, though thou art banished. + +ROMEO: +Yet 'banished'? Hang up philosophy! +Unless philosophy can make a Juliet, +Displant a town, reverse a prince's doom, +It helps not, it prevails not: talk no more. + +FRIAR LAURENCE: +O, then I see that madmen have no ears. + +ROMEO: +How should they, when that wise men have no eyes? + +FRIAR LAURENCE: +Let me dispute with thee of thy estate. + +ROMEO: +Thou canst not speak of that thou dost not feel: +Wert thou as young as I, Juliet thy love, +An hour but married, Tybalt murdered, +Doting like me and like me banished, +Then mightst thou speak, then mightst thou tear thy hair, +And fall upon the ground, as I do now, +Taking the measure of an unmade grave. + +FRIAR LAURENCE: +Arise; one knocks; good Romeo, hide thyself. + +ROMEO: +Not I; unless the breath of heartsick groans, +Mist-like, infold me from the search of eyes. + +FRIAR LAURENCE: +Hark, how they knock! Who's there? Romeo, arise; +Thou wilt be taken. Stay awhile! Stand up; +Run to my study. By and by! God's will, +What simpleness is this! I come, I come! +Who knocks so hard? whence come you? what's your will? + +Nurse: + +FRIAR LAURENCE: +Welcome, then. + +Nurse: +O holy friar, O, tell me, holy friar, +Where is my lady's lord, where's Romeo? + +FRIAR LAURENCE: +There on the ground, with his own tears made drunk. + +Nurse: +O, he is even in my mistress' case, +Just in her case! O woful sympathy! +Piteous predicament! Even so lies she, +Blubbering and weeping, weeping and blubbering. +Stand up, stand up; stand, and you be a man: +For Juliet's sake, for her sake, rise and stand; +Why should you fall into so deep an O? + +ROMEO: +Nurse! + +Nurse: +Ah sir! ah sir! Well, death's the end of all. + +ROMEO: +Spakest thou of Juliet? how is it with her? +Doth she not think me an old murderer, +Now I have stain'd the childhood of our joy +With blood removed but little from her own? +Where is she? and how doth she? and what says +My conceal'd lady to our cancell'd love? + +Nurse: +O, she says nothing, sir, but weeps and weeps; +And now falls on her bed; and then starts up, +And Tybalt calls; and then on Romeo cries, +And then down falls again. + +ROMEO: +As if that name, +Shot from the deadly level of a gun, +Did murder her; as that name's cursed hand +Murder'd her kinsman. O, tell me, friar, tell me, +In what vile part of this anatomy +Doth my name lodge? tell me, that I may sack +The hateful mansion. + +FRIAR LAURENCE: +Hold thy desperate hand: +Art thou a man? thy form cries out thou art: +Thy tears are womanish; thy wild acts denote +The unreasonable fury of a beast: +Unseemly woman in a seeming man! +Or ill-beseeming beast in seeming both! +Thou hast amazed me: by my holy order, +I thought thy disposition better temper'd. +Hast thou slain Tybalt? wilt thou slay thyself? +And stay thy lady too that lives in thee, +By doing damned hate upon thyself? +Why rail'st thou on thy birth, the heaven, and earth? +Since birth, and heaven, and earth, all three do meet +In thee at once; which thou at once wouldst lose. +Fie, fie, thou shamest thy shape, thy love, thy wit; +Which, like a usurer, abound'st in all, +And usest none in that true use indeed +Which should bedeck thy shape, thy love, thy wit: +Thy noble shape is but a form of wax, +Digressing from the valour of a man; +Thy dear love sworn but hollow perjury, +Killing that love which thou hast vow'd to cherish; +Thy wit, that ornament to shape and love, +Misshapen in the conduct of them both, +Like powder in a skitless soldier's flask, +Is set afire by thine own ignorance, +And thou dismember'd with thine own defence. +What, rouse thee, man! thy Juliet is alive, +For whose dear sake thou wast but lately dead; +There art thou happy: Tybalt would kill thee, +But thou slew'st Tybalt; there are thou happy too: +The law that threaten'd death becomes thy friend +And turns it to exile; there art thou happy: +A pack of blessings lights up upon thy back; +Happiness courts thee in her best array; +But, like a misbehaved and sullen wench, +Thou pout'st upon thy fortune and thy love: +Take heed, take heed, for such die miserable. +Go, get thee to thy love, as was decreed, +Ascend her chamber, hence and comfort her: +But look thou stay not till the watch be set, +For then thou canst not pass to Mantua; +Where thou shalt live, till we can find a time +To blaze your marriage, reconcile your friends, +Beg pardon of the prince, and call thee back +With twenty hundred thousand times more joy +Than thou went'st forth in lamentation. +Go before, nurse: commend me to thy lady; +And bid her hasten all the house to bed, +Which heavy sorrow makes them apt unto: +Romeo is coming. + +Nurse: +O Lord, I could have stay'd here all the night +To hear good counsel: O, what learning is! +My lord, I'll tell my lady you will come. + +ROMEO: +Do so, and bid my sweet prepare to chide. + +Nurse: +Here, sir, a ring she bid me give you, sir: +Hie you, make haste, for it grows very late. + +ROMEO: +How well my comfort is revived by this! + +FRIAR LAURENCE: +Go hence; good night; and here stands all your state: +Either be gone before the watch be set, +Or by the break of day disguised from hence: +Sojourn in Mantua; I'll find out your man, +And he shall signify from time to time +Every good hap to you that chances here: +Give me thy hand; 'tis late: farewell; good night. + +ROMEO: +But that a joy past joy calls out on me, +It were a grief, so brief to part with thee: Farewell. + +CAPULET: +Things have fall'n out, sir, so unluckily, +That we have had no time to move our daughter: +Look you, she loved her kinsman Tybalt dearly, +And so did I:--Well, we were born to die. +'Tis very late, she'll not come down to-night: +I promise you, but for your company, +I would have been a-bed an hour ago. + +PARIS: +These times of woe afford no time to woo. +Madam, good night: commend me to your daughter. + +LADY CAPULET: +I will, and know her mind early to-morrow; +To-night she is mew'd up to her heaviness. + +CAPULET: +Sir Paris, I will make a desperate tender +Of my child's love: I think she will be ruled +In all respects by me; nay, more, I doubt it not. +Wife, go you to her ere you go to bed; +Acquaint her here of my son Paris' love; +And bid her, mark you me, on Wednesday next-- +But, soft! what day is this? + +PARIS: +Monday, my lord, + +CAPULET: +Monday! ha, ha! Well, Wednesday is too soon, +O' Thursday let it be: o' Thursday, tell her, +She shall be married to this noble earl. +Will you be ready? do you like this haste? +We'll keep no great ado,--a friend or two; +For, hark you, Tybalt being slain so late, +It may be thought we held him carelessly, +Being our kinsman, if we revel much: +Therefore we'll have some half a dozen friends, +And there an end. But what say you to Thursday? + +PARIS: +My lord, I would that Thursday were to-morrow. + +CAPULET: +Well get you gone: o' Thursday be it, then. +Go you to Juliet ere you go to bed, +Prepare her, wife, against this wedding-day. +Farewell, my lord. Light to my chamber, ho! +Afore me! it is so very very late, +That we may call it early by and by. +Good night. + +JULIET: +Wilt thou be gone? it is not yet near day: +It was the nightingale, and not the lark, +That pierced the fearful hollow of thine ear; +Nightly she sings on yon pomegranate-tree: +Believe me, love, it was the nightingale. + +ROMEO: +It was the lark, the herald of the morn, +No nightingale: look, love, what envious streaks +Do lace the severing clouds in yonder east: +Night's candles are burnt out, and jocund day +Stands tiptoe on the misty mountain tops. +I must be gone and live, or stay and die. + +JULIET: +Yon light is not day-light, I know it, I: +It is some meteor that the sun exhales, +To be to thee this night a torch-bearer, +And light thee on thy way to Mantua: +Therefore stay yet; thou need'st not to be gone. + +ROMEO: +Let me be ta'en, let me be put to death; +I am content, so thou wilt have it so. +I'll say yon grey is not the morning's eye, +'Tis but the pale reflex of Cynthia's brow; +Nor that is not the lark, whose notes do beat +The vaulty heaven so high above our heads: +I have more care to stay than will to go: +Come, death, and welcome! Juliet wills it so. +How is't, my soul? let's talk; it is not day. + +JULIET: +It is, it is: hie hence, be gone, away! +It is the lark that sings so out of tune, +Straining harsh discords and unpleasing sharps. +Some say the lark makes sweet division; +This doth not so, for she divideth us: +Some say the lark and loathed toad change eyes, +O, now I would they had changed voices too! +Since arm from arm that voice doth us affray, +Hunting thee hence with hunt's-up to the day, +O, now be gone; more light and light it grows. + +ROMEO: +More light and light; more dark and dark our woes! + +Nurse: +Madam! + +JULIET: +Nurse? + +Nurse: +Your lady mother is coming to your chamber: +The day is broke; be wary, look about. + +JULIET: +Then, window, let day in, and let life out. + +ROMEO: +Farewell, farewell! one kiss, and I'll descend. + +JULIET: +Art thou gone so? love, lord, ay, husband, friend! +I must hear from thee every day in the hour, +For in a minute there are many days: +O, by this count I shall be much in years +Ere I again behold my Romeo! + +ROMEO: +Farewell! +I will omit no opportunity +That may convey my greetings, love, to thee. + +JULIET: +O think'st thou we shall ever meet again? + +ROMEO: +I doubt it not; and all these woes shall serve +For sweet discourses in our time to come. + +JULIET: +O God, I have an ill-divining soul! +Methinks I see thee, now thou art below, +As one dead in the bottom of a tomb: +Either my eyesight fails, or thou look'st pale. + +ROMEO: +And trust me, love, in my eye so do you: +Dry sorrow drinks our blood. Adieu, adieu! + +JULIET: +O fortune, fortune! all men call thee fickle: +If thou art fickle, what dost thou with him. +That is renown'd for faith? Be fickle, fortune; +For then, I hope, thou wilt not keep him long, +But send him back. + +LADY CAPULET: + +JULIET: +Who is't that calls? is it my lady mother? +Is she not down so late, or up so early? +What unaccustom'd cause procures her hither? + +LADY CAPULET: +Why, how now, Juliet! + +JULIET: +Madam, I am not well. + +LADY CAPULET: +Evermore weeping for your cousin's death? +What, wilt thou wash him from his grave with tears? +An if thou couldst, thou couldst not make him live; +Therefore, have done: some grief shows much of love; +But much of grief shows still some want of wit. + +JULIET: +Yet let me weep for such a feeling loss. + +LADY CAPULET: +So shall you feel the loss, but not the friend +Which you weep for. + +JULIET: +Feeling so the loss, +Cannot choose but ever weep the friend. + +LADY CAPULET: +Well, girl, thou weep'st not so much for his death, +As that the villain lives which slaughter'd him. + +JULIET: +What villain madam? + +LADY CAPULET: +That same villain, Romeo. + +JULIET: + +LADY CAPULET: +That is, because the traitor murderer lives. + +JULIET: +Ay, madam, from the reach of these my hands: +Would none but I might venge my cousin's death! + +LADY CAPULET: +We will have vengeance for it, fear thou not: +Then weep no more. I'll send to one in Mantua, +Where that same banish'd runagate doth live, +Shall give him such an unaccustom'd dram, +That he shall soon keep Tybalt company: +And then, I hope, thou wilt be satisfied. + +JULIET: +Indeed, I never shall be satisfied +With Romeo, till I behold him--dead-- +Is my poor heart for a kinsman vex'd. +Madam, if you could find out but a man +To bear a poison, I would temper it; +That Romeo should, upon receipt thereof, +Soon sleep in quiet. O, how my heart abhors +To hear him named, and cannot come to him. +To wreak the love I bore my cousin +Upon his body that slaughter'd him! + +LADY CAPULET: +Find thou the means, and I'll find such a man. +But now I'll tell thee joyful tidings, girl. + +JULIET: +And joy comes well in such a needy time: +What are they, I beseech your ladyship? + +LADY CAPULET: +Well, well, thou hast a careful father, child; +One who, to put thee from thy heaviness, +Hath sorted out a sudden day of joy, +That thou expect'st not nor I look'd not for. + +JULIET: +Madam, in happy time, what day is that? + +LADY CAPULET: +Marry, my child, early next Thursday morn, +The gallant, young and noble gentleman, +The County Paris, at Saint Peter's Church, +Shall happily make thee there a joyful bride. + +JULIET: +Now, by Saint Peter's Church and Peter too, +He shall not make me there a joyful bride. +I wonder at this haste; that I must wed +Ere he, that should be husband, comes to woo. +I pray you, tell my lord and father, madam, +I will not marry yet; and, when I do, I swear, +It shall be Romeo, whom you know I hate, +Rather than Paris. These are news indeed! + +LADY CAPULET: +Here comes your father; tell him so yourself, +And see how he will take it at your hands. + +CAPULET: +When the sun sets, the air doth drizzle dew; +But for the sunset of my brother's son +It rains downright. +How now! a conduit, girl? what, still in tears? +Evermore showering? In one little body +Thou counterfeit'st a bark, a sea, a wind; +For still thy eyes, which I may call the sea, +Do ebb and flow with tears; the bark thy body is, +Sailing in this salt flood; the winds, thy sighs; +Who, raging with thy tears, and they with them, +Without a sudden calm, will overset +Thy tempest-tossed body. How now, wife! +Have you deliver'd to her our decree? + +LADY CAPULET: +Ay, sir; but she will none, she gives you thanks. +I would the fool were married to her grave! + +CAPULET: +Soft! take me with you, take me with you, wife. +How! will she none? doth she not give us thanks? +Is she not proud? doth she not count her blest, +Unworthy as she is, that we have wrought +So worthy a gentleman to be her bridegroom? + +JULIET: +Not proud, you have; but thankful, that you have: +Proud can I never be of what I hate; +But thankful even for hate, that is meant love. + +CAPULET: +How now, how now, chop-logic! What is this? +'Proud,' and 'I thank you,' and 'I thank you not;' +And yet 'not proud,' mistress minion, you, +Thank me no thankings, nor, proud me no prouds, +But fettle your fine joints 'gainst Thursday next, +To go with Paris to Saint Peter's Church, +Or I will drag thee on a hurdle thither. +Out, you green-sickness carrion! out, you baggage! +You tallow-face! + +LADY CAPULET: +Fie, fie! what, are you mad? + +JULIET: +Good father, I beseech you on my knees, +Hear me with patience but to speak a word. + +CAPULET: +Hang thee, young baggage! disobedient wretch! +I tell thee what: get thee to church o' Thursday, +Or never after look me in the face: +Speak not, reply not, do not answer me; +My fingers itch. Wife, we scarce thought us blest +That God had lent us but this only child; +But now I see this one is one too much, +And that we have a curse in having her: +Out on her, hilding! + +Nurse: +God in heaven bless her! +You are to blame, my lord, to rate her so. + +CAPULET: +And why, my lady wisdom? hold your tongue, +Good prudence; smatter with your gossips, go. + +Nurse: +I speak no treason. + +CAPULET: +O, God ye god-den. + +Nurse: +May not one speak? + +CAPULET: +Peace, you mumbling fool! +Utter your gravity o'er a gossip's bowl; +For here we need it not. + +LADY CAPULET: +You are too hot. + +CAPULET: +God's bread! it makes me mad: +Day, night, hour, tide, time, work, play, +Alone, in company, still my care hath been +To have her match'd: and having now provided +A gentleman of noble parentage, +Of fair demesnes, youthful, and nobly train'd, +Stuff'd, as they say, with honourable parts, +Proportion'd as one's thought would wish a man; +And then to have a wretched puling fool, +A whining mammet, in her fortune's tender, +To answer 'I'll not wed; I cannot love, +I am too young; I pray you, pardon me.' +But, as you will not wed, I'll pardon you: +Graze where you will you shall not house with me: +Look to't, think on't, I do not use to jest. +Thursday is near; lay hand on heart, advise: +An you be mine, I'll give you to my friend; +And you be not, hang, beg, starve, die in +the streets, +For, by my soul, I'll ne'er acknowledge thee, +Nor what is mine shall never do thee good: +Trust to't, bethink you; I'll not be forsworn. + +JULIET: +Is there no pity sitting in the clouds, +That sees into the bottom of my grief? +O, sweet my mother, cast me not away! +Delay this marriage for a month, a week; +Or, if you do not, make the bridal bed +In that dim monument where Tybalt lies. + +LADY CAPULET: +Talk not to me, for I'll not speak a word: +Do as thou wilt, for I have done with thee. + +JULIET: +O God!--O nurse, how shall this be prevented? +My husband is on earth, my faith in heaven; +How shall that faith return again to earth, +Unless that husband send it me from heaven +By leaving earth? comfort me, counsel me. +Alack, alack, that heaven should practise stratagems +Upon so soft a subject as myself! +What say'st thou? hast thou not a word of joy? +Some comfort, nurse. + +Nurse: +Faith, here it is. +Romeo is banish'd; and all the world to nothing, +That he dares ne'er come back to challenge you; +Or, if he do, it needs must be by stealth. +Then, since the case so stands as now it doth, +I think it best you married with the county. +O, he's a lovely gentleman! +Romeo's a dishclout to him: an eagle, madam, +Hath not so green, so quick, so fair an eye +As Paris hath. Beshrew my very heart, +I think you are happy in this second match, +For it excels your first: or if it did not, +Your first is dead; or 'twere as good he were, +As living here and you no use of him. + +JULIET: +Speakest thou from thy heart? + +Nurse: +And from my soul too; +Or else beshrew them both. + +JULIET: +Amen! + +Nurse: +What? + +JULIET: +Well, thou hast comforted me marvellous much. +Go in: and tell my lady I am gone, +Having displeased my father, to Laurence' cell, +To make confession and to be absolved. + +Nurse: +Marry, I will; and this is wisely done. + +JULIET: +Ancient damnation! O most wicked fiend! +Is it more sin to wish me thus forsworn, +Or to dispraise my lord with that same tongue +Which she hath praised him with above compare +So many thousand times? Go, counsellor; +Thou and my bosom henceforth shall be twain. +I'll to the friar, to know his remedy: +If all else fail, myself have power to die. + +FRIAR LAURENCE: +On Thursday, sir? the time is very short. + +PARIS: +My father Capulet will have it so; +And I am nothing slow to slack his haste. + +FRIAR LAURENCE: +You say you do not know the lady's mind: +Uneven is the course, I like it not. + +PARIS: +Immoderately she weeps for Tybalt's death, +And therefore have I little talk'd of love; +For Venus smiles not in a house of tears. +Now, sir, her father counts it dangerous +That she doth give her sorrow so much sway, +And in his wisdom hastes our marriage, +To stop the inundation of her tears; +Which, too much minded by herself alone, +May be put from her by society: +Now do you know the reason of this haste. + +FRIAR LAURENCE: + +PARIS: +Happily met, my lady and my wife! + +JULIET: +That may be, sir, when I may be a wife. + +PARIS: +That may be must be, love, on Thursday next. + +JULIET: +What must be shall be. + +FRIAR LAURENCE: +That's a certain text. + +PARIS: +Come you to make confession to this father? + +JULIET: +To answer that, I should confess to you. + +PARIS: +Do not deny to him that you love me. + +JULIET: +I will confess to you that I love him. + +PARIS: +So will ye, I am sure, that you love me. + +JULIET: +If I do so, it will be of more price, +Being spoke behind your back, than to your face. + +PARIS: +Poor soul, thy face is much abused with tears. + +JULIET: +The tears have got small victory by that; +For it was bad enough before their spite. + +PARIS: +Thou wrong'st it, more than tears, with that report. + +JULIET: +That is no slander, sir, which is a truth; +And what I spake, I spake it to my face. + +PARIS: +Thy face is mine, and thou hast slander'd it. + +JULIET: +It may be so, for it is not mine own. +Are you at leisure, holy father, now; +Or shall I come to you at evening mass? + +FRIAR LAURENCE: +My leisure serves me, pensive daughter, now. +My lord, we must entreat the time alone. + +PARIS: +God shield I should disturb devotion! +Juliet, on Thursday early will I rouse ye: +Till then, adieu; and keep this holy kiss. + +JULIET: +O shut the door! and when thou hast done so, +Come weep with me; past hope, past cure, past help! + +FRIAR LAURENCE: +Ah, Juliet, I already know thy grief; +It strains me past the compass of my wits: +I hear thou must, and nothing may prorogue it, +On Thursday next be married to this county. + +JULIET: +Tell me not, friar, that thou hear'st of this, +Unless thou tell me how I may prevent it: +If, in thy wisdom, thou canst give no help, +Do thou but call my resolution wise, +And with this knife I'll help it presently. +God join'd my heart and Romeo's, thou our hands; +And ere this hand, by thee to Romeo seal'd, +Shall be the label to another deed, +Or my true heart with treacherous revolt +Turn to another, this shall slay them both: +Therefore, out of thy long-experienced time, +Give me some present counsel, or, behold, +'Twixt my extremes and me this bloody knife +Shall play the umpire, arbitrating that +Which the commission of thy years and art +Could to no issue of true honour bring. +Be not so long to speak; I long to die, +If what thou speak'st speak not of remedy. + +FRIAR LAURENCE: +Hold, daughter: I do spy a kind of hope, +Which craves as desperate an execution. +As that is desperate which we would prevent. +If, rather than to marry County Paris, +Thou hast the strength of will to slay thyself, +Then is it likely thou wilt undertake +A thing like death to chide away this shame, +That copest with death himself to scape from it: +And, if thou darest, I'll give thee remedy. + +JULIET: +O, bid me leap, rather than marry Paris, +From off the battlements of yonder tower; +Or walk in thievish ways; or bid me lurk +Where serpents are; chain me with roaring bears; +Or shut me nightly in a charnel-house, +O'er-cover'd quite with dead men's rattling bones, +With reeky shanks and yellow chapless skulls; +Or bid me go into a new-made grave +And hide me with a dead man in his shroud; +Things that, to hear them told, have made me tremble; +And I will do it without fear or doubt, +To live an unstain'd wife to my sweet love. + +FRIAR LAURENCE: +Hold, then; go home, be merry, give consent +To marry Paris: Wednesday is to-morrow: +To-morrow night look that thou lie alone; +Let not thy nurse lie with thee in thy chamber: +Take thou this vial, being then in bed, +And this distilled liquor drink thou off; +When presently through all thy veins shall run +A cold and drowsy humour, for no pulse +Shall keep his native progress, but surcease: +No warmth, no breath, shall testify thou livest; +The roses in thy lips and cheeks shall fade +To paly ashes, thy eyes' windows fall, +Like death, when he shuts up the day of life; +Each part, deprived of supple government, +Shall, stiff and stark and cold, appear like death: +And in this borrow'd likeness of shrunk death +Thou shalt continue two and forty hours, +And then awake as from a pleasant sleep. +Now, when the bridegroom in the morning comes +To rouse thee from thy bed, there art thou dead: +Then, as the manner of our country is, +In thy best robes uncover'd on the bier +Thou shalt be borne to that same ancient vault +Where all the kindred of the Capulets lie. +In the mean time, against thou shalt awake, +Shall Romeo by my letters know our drift, +And hither shall he come: and he and I +Will watch thy waking, and that very night +Shall Romeo bear thee hence to Mantua. +And this shall free thee from this present shame; +If no inconstant toy, nor womanish fear, +Abate thy valour in the acting it. + +JULIET: +Give me, give me! O, tell not me of fear! + +FRIAR LAURENCE: +Hold; get you gone, be strong and prosperous +In this resolve: I'll send a friar with speed +To Mantua, with my letters to thy lord. + +JULIET: +Love give me strength! and strength shall help afford. +Farewell, dear father! + +CAPULET: +So many guests invite as here are writ. +Sirrah, go hire me twenty cunning cooks. + +Second Servant: +You shall have none ill, sir; for I'll try if they +can lick their fingers. + +CAPULET: +How canst thou try them so? + +Second Servant: +Marry, sir, 'tis an ill cook that cannot lick his +own fingers: therefore he that cannot lick his +fingers goes not with me. + +CAPULET: +Go, be gone. +We shall be much unfurnished for this time. +What, is my daughter gone to Friar Laurence? + +Nurse: +Ay, forsooth. + +CAPULET: +Well, he may chance to do some good on her: +A peevish self-will'd harlotry it is. + +Nurse: +See where she comes from shrift with merry look. + +CAPULET: +How now, my headstrong! where have you been gadding? + +JULIET: +Where I have learn'd me to repent the sin +Of disobedient opposition +To you and your behests, and am enjoin'd +By holy Laurence to fall prostrate here, +And beg your pardon: pardon, I beseech you! +Henceforward I am ever ruled by you. + +CAPULET: +Send for the county; go tell him of this: +I'll have this knot knit up to-morrow morning. + +JULIET: +I met the youthful lord at Laurence' cell; +And gave him what becomed love I might, +Not step o'er the bounds of modesty. + +CAPULET: +Why, I am glad on't; this is well: stand up: +This is as't should be. Let me see the county; +Ay, marry, go, I say, and fetch him hither. +Now, afore God! this reverend holy friar, +Our whole city is much bound to him. + +JULIET: +Nurse, will you go with me into my closet, +To help me sort such needful ornaments +As you think fit to furnish me to-morrow? + +LADY CAPULET: +No, not till Thursday; there is time enough. + +CAPULET: +Go, nurse, go with her: we'll to church to-morrow. + +LADY CAPULET: +We shall be short in our provision: +'Tis now near night. + +CAPULET: +Tush, I will stir about, +And all things shall be well, I warrant thee, wife: +Go thou to Juliet, help to deck up her; +I'll not to bed to-night; let me alone; +I'll play the housewife for this once. What, ho! +They are all forth. Well, I will walk myself +To County Paris, to prepare him up +Against to-morrow: my heart is wondrous light, +Since this same wayward girl is so reclaim'd. + +JULIET: +Ay, those attires are best: but, gentle nurse, +I pray thee, leave me to myself to-night, +For I have need of many orisons +To move the heavens to smile upon my state, +Which, well thou know'st, is cross, and full of sin. + +LADY CAPULET: +What, are you busy, ho? need you my help? + +JULIET: +No, madam; we have cull'd such necessaries +As are behoveful for our state to-morrow: +So please you, let me now be left alone, +And let the nurse this night sit up with you; +For, I am sure, you have your hands full all, +In this so sudden business. + +LADY CAPULET: +Good night: +Get thee to bed, and rest; for thou hast need. + +JULIET: +Farewell! God knows when we shall meet again. +I have a faint cold fear thrills through my veins, +That almost freezes up the heat of life: +I'll call them back again to comfort me: +Nurse! What should she do here? +My dismal scene I needs must act alone. +Come, vial. +What if this mixture do not work at all? +Shall I be married then to-morrow morning? +No, no: this shall forbid it: lie thou there. +What if it be a poison, which the friar +Subtly hath minister'd to have me dead, +Lest in this marriage he should be dishonour'd, +Because he married me before to Romeo? +I fear it is: and yet, methinks, it should not, +For he hath still been tried a holy man. +How if, when I am laid into the tomb, +I wake before the time that Romeo +Come to redeem me? there's a fearful point! +Shall I not, then, be stifled in the vault, +To whose foul mouth no healthsome air breathes in, +And there die strangled ere my Romeo comes? +Or, if I live, is it not very like, +The horrible conceit of death and night, +Together with the terror of the place,-- +As in a vault, an ancient receptacle, +Where, for these many hundred years, the bones +Of all my buried ancestors are packed: +Where bloody Tybalt, yet but green in earth, +Lies festering in his shroud; where, as they say, +At some hours in the night spirits resort;-- +Alack, alack, is it not like that I, +So early waking, what with loathsome smells, +And shrieks like mandrakes' torn out of the earth, +That living mortals, hearing them, run mad:-- +O, if I wake, shall I not be distraught, +Environed with all these hideous fears? +And madly play with my forefather's joints? +And pluck the mangled Tybalt from his shroud? +And, in this rage, with some great kinsman's bone, +As with a club, dash out my desperate brains? +O, look! methinks I see my cousin's ghost +Seeking out Romeo, that did spit his body +Upon a rapier's point: stay, Tybalt, stay! +Romeo, I come! this do I drink to thee. + +LADY CAPULET: +Hold, take these keys, and fetch more spices, nurse. + +Nurse: +They call for dates and quinces in the pastry. + +CAPULET: +Come, stir, stir, stir! the second cock hath crow'd, +The curfew-bell hath rung, 'tis three o'clock: +Look to the baked meats, good Angelica: +Spare not for the cost. + +Nurse: +Go, you cot-quean, go, +Get you to bed; faith, You'll be sick to-morrow +For this night's watching. + +CAPULET: +No, not a whit: what! I have watch'd ere now +All night for lesser cause, and ne'er been sick. + +LADY CAPULET: +Ay, you have been a mouse-hunt in your time; +But I will watch you from such watching now. + +CAPULET: +A jealous hood, a jealous hood! +Now, fellow, +What's there? + +First Servant: +Things for the cook, sir; but I know not what. + +CAPULET: +Make haste, make haste. +Sirrah, fetch drier logs: +Call Peter, he will show thee where they are. + +Second Servant: +I have a head, sir, that will find out logs, +And never trouble Peter for the matter. + +CAPULET: +Mass, and well said; a merry whoreson, ha! +Thou shalt be logger-head. Good faith, 'tis day: +The county will be here with music straight, +For so he said he would: I hear him near. +Nurse! Wife! What, ho! What, nurse, I say! +Go waken Juliet, go and trim her up; +I'll go and chat with Paris: hie, make haste, +Make haste; the bridegroom he is come already: +Make haste, I say. + +Nurse: +Mistress! what, mistress! Juliet! fast, I warrant her, she: +Why, lamb! why, lady! fie, you slug-a-bed! +Why, love, I say! madam! sweet-heart! why, bride! +What, not a word? you take your pennyworths now; +Sleep for a week; for the next night, I warrant, +The County Paris hath set up his rest, +That you shall rest but little. God forgive me, +Marry, and amen, how sound is she asleep! +I must needs wake her. Madam, madam, madam! +Ay, let the county take you in your bed; +He'll fright you up, i' faith. Will it not be? +What, dress'd! and in your clothes! and down again! +I must needs wake you; Lady! lady! lady! +Alas, alas! Help, help! my lady's dead! +O, well-a-day, that ever I was born! +Some aqua vitae, ho! My lord! my lady! + +LADY CAPULET: +What noise is here? + +Nurse: +O lamentable day! + +LADY CAPULET: +What is the matter? + +Nurse: +Look, look! O heavy day! + +LADY CAPULET: +O me, O me! My child, my only life, +Revive, look up, or I will die with thee! +Help, help! Call help. + +CAPULET: +For shame, bring Juliet forth; her lord is come. + +Nurse: +She's dead, deceased, she's dead; alack the day! + +LADY CAPULET: +Alack the day, she's dead, she's dead, she's dead! + +CAPULET: +Ha! let me see her: out, alas! she's cold: +Her blood is settled, and her joints are stiff; +Life and these lips have long been separated: +Death lies on her like an untimely frost +Upon the sweetest flower of all the field. + +Nurse: +O lamentable day! + +LADY CAPULET: +O woful time! + +CAPULET: +Death, that hath ta'en her hence to make me wail, +Ties up my tongue, and will not let me speak. + +FRIAR LAURENCE: +Come, is the bride ready to go to church? + +CAPULET: +Ready to go, but never to return. +O son! the night before thy wedding-day +Hath Death lain with thy wife. There she lies, +Flower as she was, deflowered by him. +Death is my son-in-law, Death is my heir; +My daughter he hath wedded: I will die, +And leave him all; life, living, all is Death's. + +PARIS: +Have I thought long to see this morning's face, +And doth it give me such a sight as this? + +LADY CAPULET: +Accursed, unhappy, wretched, hateful day! +Most miserable hour that e'er time saw +In lasting labour of his pilgrimage! +But one, poor one, one poor and loving child, +But one thing to rejoice and solace in, +And cruel death hath catch'd it from my sight! + +Nurse: +O woe! O woful, woful, woful day! +Most lamentable day, most woful day, +That ever, ever, I did yet behold! +O day! O day! O day! O hateful day! +Never was seen so black a day as this: +O woful day, O woful day! + +PARIS: +Beguiled, divorced, wronged, spited, slain! +Most detestable death, by thee beguil'd, +By cruel cruel thee quite overthrown! +O love! O life! not life, but love in death! + +CAPULET: +Despised, distressed, hated, martyr'd, kill'd! +Uncomfortable time, why camest thou now +To murder, murder our solemnity? +O child! O child! my soul, and not my child! +Dead art thou! Alack! my child is dead; +And with my child my joys are buried. + +FRIAR LAURENCE: +Peace, ho, for shame! confusion's cure lives not +In these confusions. Heaven and yourself +Had part in this fair maid; now heaven hath all, +And all the better is it for the maid: +Your part in her you could not keep from death, +But heaven keeps his part in eternal life. +The most you sought was her promotion; +For 'twas your heaven she should be advanced: +And weep ye now, seeing she is advanced +Above the clouds, as high as heaven itself? +O, in this love, you love your child so ill, +That you run mad, seeing that she is well: +She's not well married that lives married long; +But she's best married that dies married young. +Dry up your tears, and stick your rosemary +On this fair corse; and, as the custom is, +In all her best array bear her to church: +For though fond nature bids us an lament, +Yet nature's tears are reason's merriment. + +CAPULET: +All things that we ordained festival, +Turn from their office to black funeral; +Our instruments to melancholy bells, +Our wedding cheer to a sad burial feast, +Our solemn hymns to sullen dirges change, +Our bridal flowers serve for a buried corse, +And all things change them to the contrary. + +FRIAR LAURENCE: +Sir, go you in; and, madam, go with him; +And go, Sir Paris; every one prepare +To follow this fair corse unto her grave: +The heavens do lour upon you for some ill; +Move them no more by crossing their high will. + +First Musician: +Faith, we may put up our pipes, and be gone. + +Nurse: +Honest goodfellows, ah, put up, put up; +For, well you know, this is a pitiful case. + +First Musician: +Ay, by my troth, the case may be amended. + +PETER: +Musicians, O, musicians, 'Heart's ease, Heart's +ease:' O, an you will have me live, play 'Heart's ease.' + +First Musician: +Why 'Heart's ease?' + +PETER: +O, musicians, because my heart itself plays 'My +heart is full of woe:' O, play me some merry dump, +to comfort me. + +First Musician: +Not a dump we; 'tis no time to play now. + +PETER: +You will not, then? + +First Musician: +No. + +PETER: +I will then give it you soundly. + +First Musician: +What will you give us? + +PETER: +No money, on my faith, but the gleek; +I will give you the minstrel. + +First Musician: +Then I will give you the serving-creature. + +PETER: +Then will I lay the serving-creature's dagger on +your pate. I will carry no crotchets: I'll re you, +I'll fa you; do you note me? + +First Musician: +An you re us and fa us, you note us. + +Second Musician: +Pray you, put up your dagger, and put out your wit. + +PETER: +Then have at you with my wit! I will dry-beat you +with an iron wit, and put up my iron dagger. Answer +me like men: +'When griping grief the heart doth wound, +And doleful dumps the mind oppress, +Then music with her silver sound'-- +why 'silver sound'? why 'music with her silver +sound'? What say you, Simon Catling? + +Musician: +Marry, sir, because silver hath a sweet sound. + +PETER: +Pretty! What say you, Hugh Rebeck? + +Second Musician: +I say 'silver sound,' because musicians sound for silver. + +PETER: +Pretty too! What say you, James Soundpost? + +Third Musician: +Faith, I know not what to say. + +PETER: +O, I cry you mercy; you are the singer: I will say +for you. It is 'music with her silver sound,' +because musicians have no gold for sounding: +'Then music with her silver sound +With speedy help doth lend redress.' + +First Musician: +What a pestilent knave is this same! + +Second Musician: +Hang him, Jack! Come, we'll in here; tarry for the +mourners, and stay dinner. + +ROMEO: +If I may trust the flattering truth of sleep, +My dreams presage some joyful news at hand: +My bosom's lord sits lightly in his throne; +And all this day an unaccustom'd spirit +Lifts me above the ground with cheerful thoughts. +I dreamt my lady came and found me dead-- +Strange dream, that gives a dead man leave +to think!-- +And breathed such life with kisses in my lips, +That I revived, and was an emperor. +Ah me! how sweet is love itself possess'd, +When but love's shadows are so rich in joy! +News from Verona!--How now, Balthasar! +Dost thou not bring me letters from the friar? +How doth my lady? Is my father well? +How fares my Juliet? that I ask again; +For nothing can be ill, if she be well. + +BALTHASAR: +Then she is well, and nothing can be ill: +Her body sleeps in Capel's monument, +And her immortal part with angels lives. +I saw her laid low in her kindred's vault, +And presently took post to tell it you: +O, pardon me for bringing these ill news, +Since you did leave it for my office, sir. + +ROMEO: +Is it even so? then I defy you, stars! +Thou know'st my lodging: get me ink and paper, +And hire post-horses; I will hence to-night. + +BALTHASAR: +I do beseech you, sir, have patience: +Your looks are pale and wild, and do import +Some misadventure. + +ROMEO: +Tush, thou art deceived: +Leave me, and do the thing I bid thee do. +Hast thou no letters to me from the friar? + +BALTHASAR: +No, my good lord. + +ROMEO: +No matter: get thee gone, +And hire those horses; I'll be with thee straight. +Well, Juliet, I will lie with thee to-night. +Let's see for means: O mischief, thou art swift +To enter in the thoughts of desperate men! +I do remember an apothecary,-- +And hereabouts he dwells,--which late I noted +In tatter'd weeds, with overwhelming brows, +Culling of simples; meagre were his looks, +Sharp misery had worn him to the bones: +And in his needy shop a tortoise hung, +An alligator stuff'd, and other skins +Of ill-shaped fishes; and about his shelves +A beggarly account of empty boxes, +Green earthen pots, bladders and musty seeds, +Remnants of packthread and old cakes of roses, +Were thinly scatter'd, to make up a show. +Noting this penury, to myself I said +'An if a man did need a poison now, +Whose sale is present death in Mantua, +Here lives a caitiff wretch would sell it him.' +O, this same thought did but forerun my need; +And this same needy man must sell it me. +As I remember, this should be the house. +Being holiday, the beggar's shop is shut. +What, ho! apothecary! + +Apothecary: +Who calls so loud? + +ROMEO: +Come hither, man. I see that thou art poor: +Hold, there is forty ducats: let me have +A dram of poison, such soon-speeding gear +As will disperse itself through all the veins +That the life-weary taker may fall dead +And that the trunk may be discharged of breath +As violently as hasty powder fired +Doth hurry from the fatal cannon's womb. + +Apothecary: +Such mortal drugs I have; but Mantua's law +Is death to any he that utters them. + +ROMEO: +Art thou so bare and full of wretchedness, +And fear'st to die? famine is in thy cheeks, +Need and oppression starveth in thine eyes, +Contempt and beggary hangs upon thy back; +The world is not thy friend nor the world's law; +The world affords no law to make thee rich; +Then be not poor, but break it, and take this. + +Apothecary: +My poverty, but not my will, consents. + +ROMEO: +I pay thy poverty, and not thy will. + +Apothecary: +Put this in any liquid thing you will, +And drink it off; and, if you had the strength +Of twenty men, it would dispatch you straight. + +ROMEO: +There is thy gold, worse poison to men's souls, +Doing more murders in this loathsome world, +Than these poor compounds that thou mayst not sell. +I sell thee poison; thou hast sold me none. +Farewell: buy food, and get thyself in flesh. +Come, cordial and not poison, go with me +To Juliet's grave; for there must I use thee. + +FRIAR JOHN: +Holy Franciscan friar! brother, ho! + +FRIAR LAURENCE: +This same should be the voice of Friar John. +Welcome from Mantua: what says Romeo? +Or, if his mind be writ, give me his letter. + +FRIAR JOHN: +Going to find a bare-foot brother out +One of our order, to associate me, +Here in this city visiting the sick, +And finding him, the searchers of the town, +Suspecting that we both were in a house +Where the infectious pestilence did reign, +Seal'd up the doors, and would not let us forth; +So that my speed to Mantua there was stay'd. + +FRIAR LAURENCE: +Who bare my letter, then, to Romeo? + +FRIAR JOHN: +I could not send it,--here it is again,-- +Nor get a messenger to bring it thee, +So fearful were they of infection. + +FRIAR LAURENCE: +Unhappy fortune! by my brotherhood, +The letter was not nice but full of charge +Of dear import, and the neglecting it +May do much danger. Friar John, go hence; +Get me an iron crow, and bring it straight +Unto my cell. + +FRIAR JOHN: +Brother, I'll go and bring it thee. + +FRIAR LAURENCE: +Now must I to the monument alone; +Within three hours will fair Juliet wake: +She will beshrew me much that Romeo +Hath had no notice of these accidents; +But I will write again to Mantua, +And keep her at my cell till Romeo come; +Poor living corse, closed in a dead man's tomb! + +PARIS: +Give me thy torch, boy: hence, and stand aloof: +Yet put it out, for I would not be seen. +Under yond yew-trees lay thee all along, +Holding thine ear close to the hollow ground; +So shall no foot upon the churchyard tread, +Being loose, unfirm, with digging up of graves, +But thou shalt hear it: whistle then to me, +As signal that thou hear'st something approach. +Give me those flowers. Do as I bid thee, go. + +PAGE: + +PARIS: +Sweet flower, with flowers thy bridal bed I strew,-- +O woe! thy canopy is dust and stones;-- +Which with sweet water nightly I will dew, +Or, wanting that, with tears distill'd by moans: +The obsequies that I for thee will keep +Nightly shall be to strew thy grave and weep. +The boy gives warning something doth approach. +What cursed foot wanders this way to-night, +To cross my obsequies and true love's rite? +What with a torch! muffle me, night, awhile. + +ROMEO: +Give me that mattock and the wrenching iron. +Hold, take this letter; early in the morning +See thou deliver it to my lord and father. +Give me the light: upon thy life, I charge thee, +Whate'er thou hear'st or seest, stand all aloof, +And do not interrupt me in my course. +Why I descend into this bed of death, +Is partly to behold my lady's face; +But chiefly to take thence from her dead finger +A precious ring, a ring that I must use +In dear employment: therefore hence, be gone: +But if thou, jealous, dost return to pry +In what I further shall intend to do, +By heaven, I will tear thee joint by joint +And strew this hungry churchyard with thy limbs: +The time and my intents are savage-wild, +More fierce and more inexorable far +Than empty tigers or the roaring sea. + +BALTHASAR: +I will be gone, sir, and not trouble you. + +ROMEO: +So shalt thou show me friendship. Take thou that: +Live, and be prosperous: and farewell, good fellow. + +BALTHASAR: + +ROMEO: +Thou detestable maw, thou womb of death, +Gorged with the dearest morsel of the earth, +Thus I enforce thy rotten jaws to open, +And, in despite, I'll cram thee with more food! + +PARIS: +This is that banish'd haughty Montague, +That murder'd my love's cousin, with which grief, +It is supposed, the fair creature died; +And here is come to do some villanous shame +To the dead bodies: I will apprehend him. +Stop thy unhallow'd toil, vile Montague! +Can vengeance be pursued further than death? +Condemned villain, I do apprehend thee: +Obey, and go with me; for thou must die. + +ROMEO: +I must indeed; and therefore came I hither. +Good gentle youth, tempt not a desperate man; +Fly hence, and leave me: think upon these gone; +Let them affright thee. I beseech thee, youth, +Put not another sin upon my head, +By urging me to fury: O, be gone! +By heaven, I love thee better than myself; +For I come hither arm'd against myself: +Stay not, be gone; live, and hereafter say, +A madman's mercy bade thee run away. + +PARIS: +I do defy thy conjurations, +And apprehend thee for a felon here. + +ROMEO: +Wilt thou provoke me? then have at thee, boy! + +PAGE: +O Lord, they fight! I will go call the watch. + +PARIS: +O, I am slain! +If thou be merciful, +Open the tomb, lay me with Juliet. + +ROMEO: +In faith, I will. Let me peruse this face. +Mercutio's kinsman, noble County Paris! +What said my man, when my betossed soul +Did not attend him as we rode? I think +He told me Paris should have married Juliet: +Said he not so? or did I dream it so? +Or am I mad, hearing him talk of Juliet, +To think it was so? O, give me thy hand, +One writ with me in sour misfortune's book! +I'll bury thee in a triumphant grave; +A grave? O no! a lantern, slaughter'd youth, +For here lies Juliet, and her beauty makes +This vault a feasting presence full of light. +Death, lie thou there, by a dead man interr'd. +How oft when men are at the point of death +Have they been merry! which their keepers call +A lightning before death: O, how may I +Call this a lightning? O my love! my wife! +Death, that hath suck'd the honey of thy breath, +Hath had no power yet upon thy beauty: +Thou art not conquer'd; beauty's ensign yet +Is crimson in thy lips and in thy cheeks, +And death's pale flag is not advanced there. +Tybalt, liest thou there in thy bloody sheet? +O, what more favour can I do to thee, +Than with that hand that cut thy youth in twain +To sunder his that was thine enemy? +Forgive me, cousin! Ah, dear Juliet, +Why art thou yet so fair? shall I believe +That unsubstantial death is amorous, +And that the lean abhorred monster keeps +Thee here in dark to be his paramour? +For fear of that, I still will stay with thee; +And never from this palace of dim night +Depart again: here, here will I remain +With worms that are thy chamber-maids; O, here +Will I set up my everlasting rest, +And shake the yoke of inauspicious stars +From this world-wearied flesh. Eyes, look your last! +Arms, take your last embrace! and, lips, O you +The doors of breath, seal with a righteous kiss +A dateless bargain to engrossing death! +Come, bitter conduct, come, unsavoury guide! +Thou desperate pilot, now at once run on +The dashing rocks thy sea-sick weary bark! +Here's to my love! +O true apothecary! +Thy drugs are quick. Thus with a kiss I die. + +FRIAR LAURENCE: +Saint Francis be my speed! how oft to-night +Have my old feet stumbled at graves! Who's there? + +BALTHASAR: +Here's one, a friend, and one that knows you well. + +FRIAR LAURENCE: +Bliss be upon you! Tell me, good my friend, +What torch is yond, that vainly lends his light +To grubs and eyeless skulls? as I discern, +It burneth in the Capel's monument. + +BALTHASAR: +It doth so, holy sir; and there's my master, +One that you love. + +FRIAR LAURENCE: +Who is it? + +BALTHASAR: +Romeo. + +FRIAR LAURENCE: +How long hath he been there? + +BALTHASAR: +Full half an hour. + +FRIAR LAURENCE: +Go with me to the vault. + +BALTHASAR: +I dare not, sir +My master knows not but I am gone hence; +And fearfully did menace me with death, +If I did stay to look on his intents. + +FRIAR LAURENCE: +Stay, then; I'll go alone. Fear comes upon me: +O, much I fear some ill unlucky thing. + +BALTHASAR: +As I did sleep under this yew-tree here, +I dreamt my master and another fought, +And that my master slew him. + +FRIAR LAURENCE: +Romeo! +Alack, alack, what blood is this, which stains +The stony entrance of this sepulchre? +What mean these masterless and gory swords +To lie discolour'd by this place of peace? +Romeo! O, pale! Who else? what, Paris too? +And steep'd in blood? Ah, what an unkind hour +Is guilty of this lamentable chance! +The lady stirs. + +JULIET: +O comfortable friar! where is my lord? +I do remember well where I should be, +And there I am. Where is my Romeo? + +FRIAR LAURENCE: +I hear some noise. Lady, come from that nest +Of death, contagion, and unnatural sleep: +A greater power than we can contradict +Hath thwarted our intents. Come, come away. +Thy husband in thy bosom there lies dead; +And Paris too. Come, I'll dispose of thee +Among a sisterhood of holy nuns: +Stay not to question, for the watch is coming; +Come, go, good Juliet, +I dare no longer stay. + +JULIET: +Go, get thee hence, for I will not away. +What's here? a cup, closed in my true love's hand? +Poison, I see, hath been his timeless end: +O churl! drunk all, and left no friendly drop +To help me after? I will kiss thy lips; +Haply some poison yet doth hang on them, +To make die with a restorative. +Thy lips are warm. + +First Watchman: + +JULIET: +Yea, noise? then I'll be brief. O happy dagger! +This is thy sheath; +there rust, and let me die. + +PAGE: +This is the place; there, where the torch doth burn. + +First Watchman: +The ground is bloody; search about the churchyard: +Go, some of you, whoe'er you find attach. +Pitiful sight! here lies the county slain, +And Juliet bleeding, warm, and newly dead, +Who here hath lain these two days buried. +Go, tell the prince: run to the Capulets: +Raise up the Montagues: some others search: +We see the ground whereon these woes do lie; +But the true ground of all these piteous woes +We cannot without circumstance descry. + +Second Watchman: +Here's Romeo's man; we found him in the churchyard. + +First Watchman: +Hold him in safety, till the prince come hither. + +Third Watchman: +Here is a friar, that trembles, sighs and weeps: +We took this mattock and this spade from him, +As he was coming from this churchyard side. + +First Watchman: +A great suspicion: stay the friar too. + +PRINCE: +What misadventure is so early up, +That calls our person from our morning's rest? + +CAPULET: +What should it be, that they so shriek abroad? + +LADY CAPULET: +The people in the street cry Romeo, +Some Juliet, and some Paris; and all run, +With open outcry toward our monument. + +PRINCE: +What fear is this which startles in our ears? + +First Watchman: +Sovereign, here lies the County Paris slain; +And Romeo dead; and Juliet, dead before, +Warm and new kill'd. + +PRINCE: +Search, seek, and know how this foul murder comes. + +First Watchman: +Here is a friar, and slaughter'd Romeo's man; +With instruments upon them, fit to open +These dead men's tombs. + +CAPULET: +O heavens! O wife, look how our daughter bleeds! +This dagger hath mista'en--for, lo, his house +Is empty on the back of Montague,-- +And it mis-sheathed in my daughter's bosom! + +LADY CAPULET: +O me! this sight of death is as a bell, +That warns my old age to a sepulchre. + +PRINCE: +Come, Montague; for thou art early up, +To see thy son and heir more early down. + +MONTAGUE: +Alas, my liege, my wife is dead to-night; +Grief of my son's exile hath stopp'd her breath: +What further woe conspires against mine age? + +PRINCE: +Look, and thou shalt see. + +MONTAGUE: +O thou untaught! what manners is in this? +To press before thy father to a grave? + +PRINCE: +Seal up the mouth of outrage for a while, +Till we can clear these ambiguities, +And know their spring, their head, their +true descent; +And then will I be general of your woes, +And lead you even to death: meantime forbear, +And let mischance be slave to patience. +Bring forth the parties of suspicion. + +FRIAR LAURENCE: +I am the greatest, able to do least, +Yet most suspected, as the time and place +Doth make against me of this direful murder; +And here I stand, both to impeach and purge +Myself condemned and myself excused. + +PRINCE: +Then say at once what thou dost know in this. + +FRIAR LAURENCE: +I will be brief, for my short date of breath +Is not so long as is a tedious tale. +Romeo, there dead, was husband to that Juliet; +And she, there dead, that Romeo's faithful wife: +I married them; and their stol'n marriage-day +Was Tybalt's dooms-day, whose untimely death +Banish'd the new-made bridegroom from the city, +For whom, and not for Tybalt, Juliet pined. +You, to remove that siege of grief from her, +Betroth'd and would have married her perforce +To County Paris: then comes she to me, +And, with wild looks, bid me devise some mean +To rid her from this second marriage, +Or in my cell there would she kill herself. +Then gave I her, so tutor'd by my art, +A sleeping potion; which so took effect +As I intended, for it wrought on her +The form of death: meantime I writ to Romeo, +That he should hither come as this dire night, +To help to take her from her borrow'd grave, +Being the time the potion's force should cease. +But he which bore my letter, Friar John, +Was stay'd by accident, and yesternight +Return'd my letter back. Then all alone +At the prefixed hour of her waking, +Came I to take her from her kindred's vault; +Meaning to keep her closely at my cell, +Till I conveniently could send to Romeo: +But when I came, some minute ere the time +Of her awaking, here untimely lay +The noble Paris and true Romeo dead. +She wakes; and I entreated her come forth, +And bear this work of heaven with patience: +But then a noise did scare me from the tomb; +And she, too desperate, would not go with me, +But, as it seems, did violence on herself. +All this I know; and to the marriage +Her nurse is privy: and, if aught in this +Miscarried by my fault, let my old life +Be sacrificed, some hour before his time, +Unto the rigour of severest law. + +PRINCE: +We still have known thee for a holy man. +Where's Romeo's man? what can he say in this? + +BALTHASAR: +I brought my master news of Juliet's death; +And then in post he came from Mantua +To this same place, to this same monument. +This letter he early bid me give his father, +And threatened me with death, going in the vault, +I departed not and left him there. + +PRINCE: +Give me the letter; I will look on it. +Where is the county's page, that raised the watch? +Sirrah, what made your master in this place? + +PAGE: +He came with flowers to strew his lady's grave; +And bid me stand aloof, and so I did: +Anon comes one with light to ope the tomb; +And by and by my master drew on him; +And then I ran away to call the watch. + +PRINCE: +This letter doth make good the friar's words, +Their course of love, the tidings of her death: +And here he writes that he did buy a poison +Of a poor 'pothecary, and therewithal +Came to this vault to die, and lie with Juliet. +Where be these enemies? Capulet! Montague! +See, what a scourge is laid upon your hate, +That heaven finds means to kill your joys with love. +And I for winking at your discords too +Have lost a brace of kinsmen: all are punish'd. + +CAPULET: +O brother Montague, give me thy hand: +This is my daughter's jointure, for no more +Can I demand. + +MONTAGUE: +But I can give thee more: +For I will raise her statue in pure gold; +That while Verona by that name is known, +There shall no figure at such rate be set +As that of true and faithful Juliet. + +CAPULET: +As rich shall Romeo's by his lady's lie; +Poor sacrifices of our enmity! + +PRINCE: +A glooming peace this morning with it brings; +The sun, for sorrow, will not show his head: +Go hence, to have more talk of these sad things; +Some shall be pardon'd, and some punished: +For never was a story of more woe +Than this of Juliet and her Romeo. + +WARWICK: +I wonder how the king escaped our hands. + +YORK: +While we pursued the horsemen of the north, +He slily stole away and left his men: +Whereat the great Lord of Northumberland, +Whose warlike ears could never brook retreat, +Cheer'd up the drooping army; and himself, +Lord Clifford and Lord Stafford, all abreast, +Charged our main battle's front, and breaking in +Were by the swords of common soldiers slain. + +EDWARD: +Lord Stafford's father, Duke of Buckingham, +Is either slain or wounded dangerously; +I cleft his beaver with a downright blow: +That this is true, father, behold his blood. + +MONTAGUE: +And, brother, here's the Earl of Wiltshire's blood, +Whom I encounter'd as the battles join'd. + +RICHARD: +Speak thou for me and tell them what I did. + +YORK: +Richard hath best deserved of all my sons. +But is your grace dead, my Lord of Somerset? + +NORFOLK: +Such hope have all the line of John of Gaunt! + +RICHARD: +Thus do I hope to shake King Henry's head. + +WARWICK: +And so do I. Victorious Prince of York, +Before I see thee seated in that throne +Which now the house of Lancaster usurps, +I vow by heaven these eyes shall never close. +This is the palace of the fearful king, +And this the regal seat: possess it, York; +For this is thine and not King Henry's heirs' + +YORK: +Assist me, then, sweet Warwick, and I will; +For hither we have broken in by force. + +NORFOLK: +We'll all assist you; he that flies shall die. + +YORK: +Thanks, gentle Norfolk: stay by me, my lords; +And, soldiers, stay and lodge by me this night. + +WARWICK: +And when the king comes, offer no violence, +Unless he seek to thrust you out perforce. + +YORK: +The queen this day here holds her parliament, +But little thinks we shall be of her council: +By words or blows here let us win our right. + +RICHARD: +Arm'd as we are, let's stay within this house. + +WARWICK: +The bloody parliament shall this be call'd, +Unless Plantagenet, Duke of York, be king, +And bashful Henry deposed, whose cowardice +Hath made us by-words to our enemies. + +YORK: +Then leave me not, my lords; be resolute; +I mean to take possession of my right. + +WARWICK: +Neither the king, nor he that loves him best, +The proudest he that holds up Lancaster, +Dares stir a wing, if Warwick shake his bells. +I'll plant Plantagenet, root him up who dares: +Resolve thee, Richard; claim the English crown. + +KING HENRY VI: +My lords, look where the sturdy rebel sits, +Even in the chair of state: belike he means, +Back'd by the power of Warwick, that false peer, +To aspire unto the crown and reign as king. +Earl of Northumberland, he slew thy father. +And thine, Lord Clifford; and you both have vow'd revenge +On him, his sons, his favourites and his friends. + +NORTHUMBERLAND: +If I be not, heavens be revenged on me! + +CLIFFORD: +The hope thereof makes Clifford mourn in steel. + +WESTMORELAND: +What, shall we suffer this? let's pluck him down: +My heart for anger burns; I cannot brook it. + +KING HENRY VI: +Be patient, gentle Earl of Westmoreland. + +CLIFFORD: +Patience is for poltroons, such as he: +He durst not sit there, had your father lived. +My gracious lord, here in the parliament +Let us assail the family of York. + +NORTHUMBERLAND: +Well hast thou spoken, cousin: be it so. + +KING HENRY VI: +Ah, know you not the city favours them, +And they have troops of soldiers at their beck? + +EXETER: +But when the duke is slain, they'll quickly fly. + +KING HENRY VI: +Far be the thought of this from Henry's heart, +To make a shambles of the parliament-house! +Cousin of Exeter, frowns, words and threats +Shall be the war that Henry means to use. +Thou factious Duke of York, descend my throne, +and kneel for grace and mercy at my feet; +I am thy sovereign. + +YORK: +I am thine. + +EXETER: +For shame, come down: he made thee Duke of York. + +YORK: +'Twas my inheritance, as the earldom was. + +EXETER: +Thy father was a traitor to the crown. + +WARWICK: +Exeter, thou art a traitor to the crown +In following this usurping Henry. + +CLIFFORD: +Whom should he follow but his natural king? + +WARWICK: +True, Clifford; and that's Richard Duke of York. + +KING HENRY VI: +And shall I stand, and thou sit in my throne? + +YORK: +It must and shall be so: content thyself. + +WARWICK: +Be Duke of Lancaster; let him be king. + +WESTMORELAND: +He is both king and Duke of Lancaster; +And that the Lord of Westmoreland shall maintain. + +WARWICK: +And Warwick shall disprove it. You forget +That we are those which chased you from the field +And slew your fathers, and with colours spread +March'd through the city to the palace gates. + +NORTHUMBERLAND: +Yes, Warwick, I remember it to my grief; +And, by his soul, thou and thy house shall rue it. + +WESTMORELAND: +Plantagenet, of thee and these thy sons, +Thy kinsman and thy friends, I'll have more lives +Than drops of blood were in my father's veins. + +CLIFFORD: +Urge it no more; lest that, instead of words, +I send thee, Warwick, such a messenger +As shall revenge his death before I stir. + +WARWICK: +Poor Clifford! how I scorn his worthless threats! + +YORK: +Will you we show our title to the crown? +If not, our swords shall plead it in the field. + +KING HENRY VI: +What title hast thou, traitor, to the crown? +Thy father was, as thou art, Duke of York; +Thy grandfather, Roger Mortimer, Earl of March: +I am the son of Henry the Fifth, +Who made the Dauphin and the French to stoop +And seized upon their towns and provinces. + +WARWICK: +Talk not of France, sith thou hast lost it all. + +KING HENRY VI: +The lord protector lost it, and not I: +When I was crown'd I was but nine months old. + +RICHARD: +You are old enough now, and yet, methinks, you lose. +Father, tear the crown from the usurper's head. + +EDWARD: +Sweet father, do so; set it on your head. + +MONTAGUE: +Good brother, as thou lovest and honourest arms, +Let's fight it out and not stand cavilling thus. + +RICHARD: +Sound drums and trumpets, and the king will fly. + +YORK: +Sons, peace! + +KING HENRY VI: +Peace, thou! and give King Henry leave to speak. + +WARWICK: +Plantagenet shall speak first: hear him, lords; +And be you silent and attentive too, +For he that interrupts him shall not live. + +KING HENRY VI: +Think'st thou that I will leave my kingly throne, +Wherein my grandsire and my father sat? +No: first shall war unpeople this my realm; +Ay, and their colours, often borne in France, +And now in England to our heart's great sorrow, +Shall be my winding-sheet. Why faint you, lords? +My title's good, and better far than his. + +WARWICK: +Prove it, Henry, and thou shalt be king. + +KING HENRY VI: +Henry the Fourth by conquest got the crown. + +YORK: +'Twas by rebellion against his king. + +KING HENRY VI: + +YORK: +What then? + +KING HENRY VI: +An if he may, then am I lawful king; +For Richard, in the view of many lords, +Resign'd the crown to Henry the Fourth, +Whose heir my father was, and I am his. + +YORK: +He rose against him, being his sovereign, +And made him to resign his crown perforce. + +WARWICK: +Suppose, my lords, he did it unconstrain'd, +Think you 'twere prejudicial to his crown? + +EXETER: +No; for he could not so resign his crown +But that the next heir should succeed and reign. + +KING HENRY VI: +Art thou against us, Duke of Exeter? + +EXETER: +His is the right, and therefore pardon me. + +YORK: +Why whisper you, my lords, and answer not? + +EXETER: +My conscience tells me he is lawful king. + +KING HENRY VI: + +NORTHUMBERLAND: +Plantagenet, for all the claim thou lay'st, +Think not that Henry shall be so deposed. + +WARWICK: +Deposed he shall be, in despite of all. + +NORTHUMBERLAND: +Thou art deceived: 'tis not thy southern power, +Of Essex, Norfolk, Suffolk, nor of Kent, +Which makes thee thus presumptuous and proud, +Can set the duke up in despite of me. + +CLIFFORD: +King Henry, be thy title right or wrong, +Lord Clifford vows to fight in thy defence: +May that ground gape and swallow me alive, +Where I shall kneel to him that slew my father! + +KING HENRY VI: +O Clifford, how thy words revive my heart! + +YORK: +Henry of Lancaster, resign thy crown. +What mutter you, or what conspire you, lords? + +WARWICK: +Do right unto this princely Duke of York, +Or I will fill the house with armed men, +And over the chair of state, where now he sits, +Write up his title with usurping blood. + +KING HENRY VI: +My Lord of Warwick, hear me but one word: +Let me for this my life-time reign as king. + +YORK: +Confirm the crown to me and to mine heirs, +And thou shalt reign in quiet while thou livest. + +KING HENRY VI: +I am content: Richard Plantagenet, +Enjoy the kingdom after my decease. + +CLIFFORD: +What wrong is this unto the prince your son! + +WARWICK: +What good is this to England and himself! + +WESTMORELAND: +Base, fearful and despairing Henry! + +CLIFFORD: +How hast thou injured both thyself and us! + +WESTMORELAND: +I cannot stay to hear these articles. + +NORTHUMBERLAND: +Nor I. + +CLIFFORD: +Come, cousin, let us tell the queen these news. + +WESTMORELAND: +Farewell, faint-hearted and degenerate king, +In whose cold blood no spark of honour bides. + +NORTHUMBERLAND: +Be thou a prey unto the house of York, +And die in bands for this unmanly deed! + +CLIFFORD: +In dreadful war mayst thou be overcome, +Or live in peace abandon'd and despised! + +WARWICK: +Turn this way, Henry, and regard them not. + +EXETER: +They seek revenge and therefore will not yield. + +KING HENRY VI: +Ah, Exeter! + +WARWICK: +Why should you sigh, my lord? + +KING HENRY VI: +Not for myself, Lord Warwick, but my son, +Whom I unnaturally shall disinherit. +But be it as it may: I here entail +The crown to thee and to thine heirs for ever; +Conditionally, that here thou take an oath +To cease this civil war, and, whilst I live, +To honour me as thy king and sovereign, +And neither by treason nor hostility +To seek to put me down and reign thyself. + +YORK: +This oath I willingly take and will perform. + +WARWICK: +Long live King Henry! Plantagenet embrace him. + +KING HENRY VI: +And long live thou and these thy forward sons! + +YORK: +Now York and Lancaster are reconciled. + +EXETER: +Accursed be he that seeks to make them foes! + +YORK: +Farewell, my gracious lord; I'll to my castle. + +WARWICK: +And I'll keep London with my soldiers. + +NORFOLK: +And I to Norfolk with my followers. + +MONTAGUE: +And I unto the sea from whence I came. + +KING HENRY VI: +And I, with grief and sorrow, to the court. + +EXETER: +Here comes the queen, whose looks bewray her anger: +I'll steal away. + +KING HENRY VI: +Exeter, so will I. + +QUEEN MARGARET: +Nay, go not from me; I will follow thee. + +KING HENRY VI: +Be patient, gentle queen, and I will stay. + +QUEEN MARGARET: +Who can be patient in such extremes? +Ah, wretched man! would I had died a maid +And never seen thee, never borne thee son, +Seeing thou hast proved so unnatural a father +Hath he deserved to lose his birthright thus? +Hadst thou but loved him half so well as I, +Or felt that pain which I did for him once, +Or nourish'd him as I did with my blood, +Thou wouldst have left thy dearest heart-blood there, +Rather than have that savage duke thine heir +And disinherited thine only son. + +PRINCE EDWARD: +Father, you cannot disinherit me: +If you be king, why should not I succeed? + +KING HENRY VI: +Pardon me, Margaret; pardon me, sweet son: +The Earl of Warwick and the duke enforced me. + +QUEEN MARGARET: +Enforced thee! art thou king, and wilt be forced? +I shame to hear thee speak. Ah, timorous wretch! +Thou hast undone thyself, thy son and me; +And given unto the house of York such head +As thou shalt reign but by their sufferance. +To entail him and his heirs unto the crown, +What is it, but to make thy sepulchre +And creep into it far before thy time? +Warwick is chancellor and the lord of Calais; +Stern Falconbridge commands the narrow seas; +The duke is made protector of the realm; +And yet shalt thou be safe? such safety finds +The trembling lamb environed with wolves. +Had I been there, which am a silly woman, +The soldiers should have toss'd me on their pikes +Before I would have granted to that act. +But thou preferr'st thy life before thine honour: +And seeing thou dost, I here divorce myself +Both from thy table, Henry, and thy bed, +Until that act of parliament be repeal'd +Whereby my son is disinherited. +The northern lords that have forsworn thy colours +Will follow mine, if once they see them spread; +And spread they shall be, to thy foul disgrace +And utter ruin of the house of York. +Thus do I leave thee. Come, son, let's away; +Our army is ready; come, we'll after them. + +KING HENRY VI: +Stay, gentle Margaret, and hear me speak. + +QUEEN MARGARET: +Thou hast spoke too much already: get thee gone. + +KING HENRY VI: +Gentle son Edward, thou wilt stay with me? + +QUEEN MARGARET: +Ay, to be murder'd by his enemies. + +PRINCE EDWARD: +When I return with victory from the field +I'll see your grace: till then I'll follow her. + +QUEEN MARGARET: +Come, son, away; we may not linger thus. + +KING HENRY VI: +Poor queen! how love to me and to her son +Hath made her break out into terms of rage! +Revenged may she be on that hateful duke, +Whose haughty spirit, winged with desire, +Will cost my crown, and like an empty eagle +Tire on the flesh of me and of my son! +The loss of those three lords torments my heart: +I'll write unto them and entreat them fair. +Come, cousin you shall be the messenger. + +EXETER: +And I, I hope, shall reconcile them all. +3 KING HENRY VI + +RICHARD: +Brother, though I be youngest, give me leave. + +EDWARD: +No, I can better play the orator. + +MONTAGUE: +But I have reasons strong and forcible. + +YORK: +Why, how now, sons and brother! at a strife? +What is your quarrel? how began it first? + +EDWARD: +No quarrel, but a slight contention. + +YORK: +About what? + +RICHARD: +About that which concerns your grace and us; +The crown of England, father, which is yours. + +YORK: +Mine boy? not till King Henry be dead. + +RICHARD: +Your right depends not on his life or death. + +EDWARD: +Now you are heir, therefore enjoy it now: +By giving the house of Lancaster leave to breathe, +It will outrun you, father, in the end. + +YORK: +I took an oath that he should quietly reign. + +EDWARD: +But for a kingdom any oath may be broken: +I would break a thousand oaths to reign one year. + +RICHARD: +No; God forbid your grace should be forsworn. + +YORK: +I shall be, if I claim by open war. + +RICHARD: +I'll prove the contrary, if you'll hear me speak. + +YORK: +Thou canst not, son; it is impossible. + +RICHARD: +An oath is of no moment, being not took +Before a true and lawful magistrate, +That hath authority over him that swears: +Henry had none, but did usurp the place; +Then, seeing 'twas he that made you to depose, +Your oath, my lord, is vain and frivolous. +Therefore, to arms! And, father, do but think +How sweet a thing it is to wear a crown; +Within whose circuit is Elysium +And all that poets feign of bliss and joy. +Why do we finger thus? I cannot rest +Until the white rose that I wear be dyed +Even in the lukewarm blood of Henry's heart. + +YORK: +Richard, enough; I will be king, or die. +Brother, thou shalt to London presently, +And whet on Warwick to this enterprise. +Thou, Richard, shalt to the Duke of Norfolk, +And tell him privily of our intent. +You Edward, shall unto my Lord Cobham, +With whom the Kentishmen will willingly rise: +In them I trust; for they are soldiers, +Witty, courteous, liberal, full of spirit. +While you are thus employ'd, what resteth more, +But that I seek occasion how to rise, +And yet the king not privy to my drift, +Nor any of the house of Lancaster? +But, stay: what news? Why comest thou in such post? + +Messenger: +The queen with all the northern earls and lords +Intend here to besiege you in your castle: +She is hard by with twenty thousand men; +And therefore fortify your hold, my lord. + +YORK: +Ay, with my sword. What! think'st thou that we fear them? +Edward and Richard, you shall stay with me; +My brother Montague shall post to London: +Let noble Warwick, Cobham, and the rest, +Whom we have left protectors of the king, +With powerful policy strengthen themselves, +And trust not simple Henry nor his oaths. + +MONTAGUE: +Brother, I go; I'll win them, fear it not: +And thus most humbly I do take my leave. +Sir John and Sir Hugh Mortimer, mine uncles, +You are come to Sandal in a happy hour; +The army of the queen mean to besiege us. + +JOHN MORTIMER: +She shall not need; we'll meet her in the field. + +YORK: +What, with five thousand men? + +RICHARD: +Ay, with five hundred, father, for a need: +A woman's general; what should we fear? + +EDWARD: +I hear their drums: let's set our men in order, +And issue forth and bid them battle straight. + +YORK: +Five men to twenty! though the odds be great, +I doubt not, uncle, of our victory. +Many a battle have I won in France, +When as the enemy hath been ten to one: +Why should I not now have the like success? +3 KING HENRY VI + +RUTLAND: +Ah, whither shall I fly to 'scape their hands? +Ah, tutor, look where bloody Clifford comes! + +CLIFFORD: +Chaplain, away! thy priesthood saves thy life. +As for the brat of this accursed duke, +Whose father slew my father, he shall die. + +Tutor: +And I, my lord, will bear him company. + +CLIFFORD: +Soldiers, away with him! + +Tutor: +Ah, Clifford, murder not this innocent child, +Lest thou be hated both of God and man! + +CLIFFORD: +How now! is he dead already? or is it fear +That makes him close his eyes? I'll open them. + +RUTLAND: +So looks the pent-up lion o'er the wretch +That trembles under his devouring paws; +And so he walks, insulting o'er his prey, +And so he comes, to rend his limbs asunder. +Ah, gentle Clifford, kill me with thy sword, +And not with such a cruel threatening look. +Sweet Clifford, hear me speak before I die. +I am too mean a subject for thy wrath: +Be thou revenged on men, and let me live. + +CLIFFORD: +In vain thou speak'st, poor boy; my father's blood +Hath stopp'd the passage where thy words should enter. + +RUTLAND: +Then let my father's blood open it again: +He is a man, and, Clifford, cope with him. + +CLIFFORD: +Had thy brethren here, their lives and thine +Were not revenge sufficient for me; +No, if I digg'd up thy forefathers' graves +And hung their rotten coffins up in chains, +It could not slake mine ire, nor ease my heart. +The sight of any of the house of York +Is as a fury to torment my soul; +And till I root out their accursed line +And leave not one alive, I live in hell. +Therefore-- + +RUTLAND: +O, let me pray before I take my death! +To thee I pray; sweet Clifford, pity me! + +CLIFFORD: +Such pity as my rapier's point affords. + +RUTLAND: +I never did thee harm: why wilt thou slay me? + +CLIFFORD: +Thy father hath. + +RUTLAND: +But 'twas ere I was born. +Thou hast one son; for his sake pity me, +Lest in revenge thereof, sith God is just, +He be as miserably slain as I. +Ah, let me live in prison all my days; +And when I give occasion of offence, +Then let me die, for now thou hast no cause. + +CLIFFORD: +No cause! +Thy father slew my father; therefore, die. + +RUTLAND: +Di faciant laudis summa sit ista tuae! + +CLIFFORD: +Plantagenet! I come, Plantagenet! +And this thy son's blood cleaving to my blade +Shall rust upon my weapon, till thy blood, +Congeal'd with this, do make me wipe off both. +3 KING HENRY VI + +YORK: +The army of the queen hath got the field: +My uncles both are slain in rescuing me; +And all my followers to the eager foe +Turn back and fly, like ships before the wind +Or lambs pursued by hunger-starved wolves. +My sons, God knows what hath bechanced them: +But this I know, they have demean'd themselves +Like men born to renown by life or death. +Three times did Richard make a lane to me. +And thrice cried 'Courage, father! fight it out!' +And full as oft came Edward to my side, +With purple falchion, painted to the hilt +In blood of those that had encounter'd him: +And when the hardiest warriors did retire, +Richard cried 'Charge! and give no foot of ground!' +And cried 'A crown, or else a glorious tomb! +A sceptre, or an earthly sepulchre!' +With this, we charged again: but, out, alas! +We bodged again; as I have seen a swan +With bootless labour swim against the tide +And spend her strength with over-matching waves. +Ah, hark! the fatal followers do pursue; +And I am faint and cannot fly their fury: +And were I strong, I would not shun their fury: +The sands are number'd that make up my life; +Here must I stay, and here my life must end. +Come, bloody Clifford, rough Northumberland, +I dare your quenchless fury to more rage: +I am your butt, and I abide your shot. + +NORTHUMBERLAND: +Yield to our mercy, proud Plantagenet. + +CLIFFORD: +Ay, to such mercy as his ruthless arm, +With downright payment, show'd unto my father. +Now Phaethon hath tumbled from his car, +And made an evening at the noontide prick. + +YORK: +My ashes, as the phoenix, may bring forth +A bird that will revenge upon you all: +And in that hope I throw mine eyes to heaven, +Scorning whate'er you can afflict me with. +Why come you not? what! multitudes, and fear? + +CLIFFORD: +So cowards fight when they can fly no further; +So doves do peck the falcon's piercing talons; +So desperate thieves, all hopeless of their lives, +Breathe out invectives 'gainst the officers. + +YORK: +O Clifford, but bethink thee once again, +And in thy thought o'er-run my former time; +And, if though canst for blushing, view this face, +And bite thy tongue, that slanders him with cowardice +Whose frown hath made thee faint and fly ere this! + +CLIFFORD: +I will not bandy with thee word for word, +But buckle with thee blows, twice two for one. + +QUEEN MARGARET: +Hold, valiant Clifford! for a thousand causes +I would prolong awhile the traitor's life. +Wrath makes him deaf: speak thou, Northumberland. + +NORTHUMBERLAND: +Hold, Clifford! do not honour him so much +To prick thy finger, though to wound his heart: +What valour were it, when a cur doth grin, +For one to thrust his hand between his teeth, +When he might spurn him with his foot away? +It is war's prize to take all vantages; +And ten to one is no impeach of valour. + +CLIFFORD: +Ay, ay, so strives the woodcock with the gin. + +NORTHUMBERLAND: +So doth the cony struggle in the net. + +YORK: +So triumph thieves upon their conquer'd booty; +So true men yield, with robbers so o'ermatch'd. + +NORTHUMBERLAND: +What would your grace have done unto him now? + +QUEEN MARGARET: +Brave warriors, Clifford and Northumberland, +Come, make him stand upon this molehill here, +That raught at mountains with outstretched arms, +Yet parted but the shadow with his hand. +What! was it you that would be England's king? +Was't you that revell'd in our parliament, +And made a preachment of your high descent? +Where are your mess of sons to back you now? +The wanton Edward, and the lusty George? +And where's that valiant crook-back prodigy, +Dicky your boy, that with his grumbling voice +Was wont to cheer his dad in mutinies? +Or, with the rest, where is your darling Rutland? +Look, York: I stain'd this napkin with the blood +That valiant Clifford, with his rapier's point, +Made issue from the bosom of the boy; +And if thine eyes can water for his death, +I give thee this to dry thy cheeks withal. +Alas poor York! but that I hate thee deadly, +I should lament thy miserable state. +I prithee, grieve, to make me merry, York. +What, hath thy fiery heart so parch'd thine entrails +That not a tear can fall for Rutland's death? +Why art thou patient, man? thou shouldst be mad; +And I, to make thee mad, do mock thee thus. +Stamp, rave, and fret, that I may sing and dance. +Thou wouldst be fee'd, I see, to make me sport: +York cannot speak, unless he wear a crown. +A crown for York! and, lords, bow low to him: +Hold you his hands, whilst I do set it on. +Ay, marry, sir, now looks he like a king! +Ay, this is he that took King Henry's chair, +And this is he was his adopted heir. +But how is it that great Plantagenet +Is crown'd so soon, and broke his solemn oath? +As I bethink me, you should not be king +Till our King Henry had shook hands with death. +And will you pale your head in Henry's glory, +And rob his temples of the diadem, +Now in his life, against your holy oath? +O, 'tis a fault too too unpardonable! +Off with the crown, and with the crown his head; +And, whilst we breathe, take time to do him dead. + +CLIFFORD: +That is my office, for my father's sake. + +QUEEN MARGARET: +Nay, stay; lets hear the orisons he makes. + +YORK: +She-wolf of France, but worse than wolves of France, +Whose tongue more poisons than the adder's tooth! +How ill-beseeming is it in thy sex +To triumph, like an Amazonian trull, +Upon their woes whom fortune captivates! +But that thy face is, vizard-like, unchanging, +Made impudent with use of evil deeds, +I would assay, proud queen, to make thee blush. +To tell thee whence thou camest, of whom derived, +Were shame enough to shame thee, wert thou not shameless. +Thy father bears the type of King of Naples, +Of both the Sicils and Jerusalem, +Yet not so wealthy as an English yeoman. +Hath that poor monarch taught thee to insult? +It needs not, nor it boots thee not, proud queen, +Unless the adage must be verified, +That beggars mounted run their horse to death. +'Tis beauty that doth oft make women proud; +But, God he knows, thy share thereof is small: +'Tis virtue that doth make them most admired; +The contrary doth make thee wonder'd at: +'Tis government that makes them seem divine; +The want thereof makes thee abominable: +Thou art as opposite to every good +As the Antipodes are unto us, +Or as the south to the septentrion. +O tiger's heart wrapt in a woman's hide! +How couldst thou drain the life-blood of the child, +To bid the father wipe his eyes withal, +And yet be seen to bear a woman's face? +Women are soft, mild, pitiful and flexible; +Thou stern, obdurate, flinty, rough, remorseless. +Bids't thou me rage? why, now thou hast thy wish: +Wouldst have me weep? why, now thou hast thy will: +For raging wind blows up incessant showers, +And when the rage allays, the rain begins. +These tears are my sweet Rutland's obsequies: +And every drop cries vengeance for his death, +'Gainst thee, fell Clifford, and thee, false +Frenchwoman. + +NORTHUMBERLAND: +Beshrew me, but his passion moves me so +That hardly can I cheque my eyes from tears. + +YORK: +That face of his the hungry cannibals +Would not have touch'd, would not have stain'd with blood: +But you are more inhuman, more inexorable, +O, ten times more, than tigers of Hyrcania. +See, ruthless queen, a hapless father's tears: +This cloth thou dip'dst in blood of my sweet boy, +And I with tears do wash the blood away. +Keep thou the napkin, and go boast of this: +And if thou tell'st the heavy story right, +Upon my soul, the hearers will shed tears; +Yea even my foes will shed fast-falling tears, +And say 'Alas, it was a piteous deed!' +There, take the crown, and, with the crown, my curse; +And in thy need such comfort come to thee +As now I reap at thy too cruel hand! +Hard-hearted Clifford, take me from the world: +My soul to heaven, my blood upon your heads! + +NORTHUMBERLAND: +Had he been slaughter-man to all my kin, +I should not for my life but weep with him. +To see how inly sorrow gripes his soul. + +QUEEN MARGARET: +What, weeping-ripe, my Lord Northumberland? +Think but upon the wrong he did us all, +And that will quickly dry thy melting tears. + +CLIFFORD: +Here's for my oath, here's for my father's death. + +QUEEN MARGARET: +And here's to right our gentle-hearted king. + +YORK: +Open Thy gate of mercy, gracious God! +My soul flies through these wounds to seek out Thee. + +QUEEN MARGARET: +Off with his head, and set it on York gates; +So York may overlook the town of York. +3 KING HENRY VI + +EDWARD: +I wonder how our princely father 'scaped, +Or whether he be 'scaped away or no +From Clifford's and Northumberland's pursuit: +Had he been ta'en, we should have heard the news; +Had he been slain, we should have heard the news; +Or had he 'scaped, methinks we should have heard +The happy tidings of his good escape. +How fares my brother? why is he so sad? + +RICHARD: +I cannot joy, until I be resolved +Where our right valiant father is become. +I saw him in the battle range about; +And watch'd him how he singled Clifford forth. +Methought he bore him in the thickest troop +As doth a lion in a herd of neat; +Or as a bear, encompass'd round with dogs, +Who having pinch'd a few and made them cry, +The rest stand all aloof, and bark at him. +So fared our father with his enemies; +So fled his enemies my warlike father: +Methinks, 'tis prize enough to be his son. +See how the morning opes her golden gates, +And takes her farewell of the glorious sun! +How well resembles it the prime of youth, +Trimm'd like a younker prancing to his love! + +EDWARD: +Dazzle mine eyes, or do I see three suns? + +RICHARD: +Three glorious suns, each one a perfect sun; +Not separated with the racking clouds, +But sever'd in a pale clear-shining sky. +See, see! they join, embrace, and seem to kiss, +As if they vow'd some league inviolable: +Now are they but one lamp, one light, one sun. +In this the heaven figures some event. + +EDWARD: +'Tis wondrous strange, the like yet never heard of. +I think it cites us, brother, to the field, +That we, the sons of brave Plantagenet, +Each one already blazing by our meeds, +Should notwithstanding join our lights together +And over-shine the earth as this the world. +Whate'er it bodes, henceforward will I bear +Upon my target three fair-shining suns. + +RICHARD: +Nay, bear three daughters: by your leave I speak it, +You love the breeder better than the male. +But what art thou, whose heavy looks foretell +Some dreadful story hanging on thy tongue? + +Messenger: +Ah, one that was a woful looker-on +When as the noble Duke of York was slain, +Your princely father and my loving lord! + +EDWARD: +O, speak no more, for I have heard too much. + +RICHARD: +Say how he died, for I will hear it all. + +Messenger: +Environed he was with many foes, +And stood against them, as the hope of Troy +Against the Greeks that would have enter'd Troy. +But Hercules himself must yield to odds; +And many strokes, though with a little axe, +Hew down and fell the hardest-timber'd oak. +By many hands your father was subdued; +But only slaughter'd by the ireful arm +Of unrelenting Clifford and the queen, +Who crown'd the gracious duke in high despite, +Laugh'd in his face; and when with grief he wept, +The ruthless queen gave him to dry his cheeks +A napkin steeped in the harmless blood +Of sweet young Rutland, by rough Clifford slain: +And after many scorns, many foul taunts, +They took his head, and on the gates of York +They set the same; and there it doth remain, +The saddest spectacle that e'er I view'd. + +EDWARD: +Sweet Duke of York, our prop to lean upon, +Now thou art gone, we have no staff, no stay. +O Clifford, boisterous Clifford! thou hast slain +The flower of Europe for his chivalry; +And treacherously hast thou vanquish'd him, +For hand to hand he would have vanquish'd thee. +Now my soul's palace is become a prison: +Ah, would she break from hence, that this my body +Might in the ground be closed up in rest! +For never henceforth shall I joy again, +Never, O never shall I see more joy! + +RICHARD: +I cannot weep; for all my body's moisture +Scarce serves to quench my furnace-burning heart: +Nor can my tongue unload my heart's great burthen; +For selfsame wind that I should speak withal +Is kindling coals that fires all my breast, +And burns me up with flames that tears would quench. +To weep is to make less the depth of grief: +Tears then for babes; blows and revenge for me +Richard, I bear thy name; I'll venge thy death, +Or die renowned by attempting it. + +EDWARD: +His name that valiant duke hath left with thee; +His dukedom and his chair with me is left. + +RICHARD: +Nay, if thou be that princely eagle's bird, +Show thy descent by gazing 'gainst the sun: +For chair and dukedom, throne and kingdom say; +Either that is thine, or else thou wert not his. + +WARWICK: +How now, fair lords! What fare? what news abroad? + +RICHARD: +Great Lord of Warwick, if we should recount +Our baleful news, and at each word's deliverance +Stab poniards in our flesh till all were told, +The words would add more anguish than the wounds. +O valiant lord, the Duke of York is slain! + +EDWARD: +O Warwick, Warwick! that Plantagenet, +Which held three dearly as his soul's redemption, +Is by the stern Lord Clifford done to death. + +WARWICK: +Ten days ago I drown'd these news in tears; +And now, to add more measure to your woes, +I come to tell you things sith then befall'n. +After the bloody fray at Wakefield fought, +Where your brave father breathed his latest gasp, +Tidings, as swiftly as the posts could run, +Were brought me of your loss and his depart. +I, then in London keeper of the king, +Muster'd my soldiers, gather'd flocks of friends, +And very well appointed, as I thought, +March'd toward Saint Alban's to intercept the queen, +Bearing the king in my behalf along; +For by my scouts I was advertised +That she was coming with a full intent +To dash our late decree in parliament +Touching King Henry's oath and your succession. +Short tale to make, we at Saint Alban's met +Our battles join'd, and both sides fiercely fought: +But whether 'twas the coldness of the king, +Who look'd full gently on his warlike queen, +That robb'd my soldiers of their heated spleen; +Or whether 'twas report of her success; +Or more than common fear of Clifford's rigour, +Who thunders to his captives blood and death, +I cannot judge: but to conclude with truth, +Their weapons like to lightning came and went; +Our soldiers', like the night-owl's lazy flight, +Or like an idle thresher with a flail, +Fell gently down, as if they struck their friends. +I cheer'd them up with justice of our cause, +With promise of high pay and great rewards: +But all in vain; they had no heart to fight, +And we in them no hope to win the day; +So that we fled; the king unto the queen; +Lord George your brother, Norfolk and myself, +In haste, post-haste, are come to join with you: +For in the marches here we heard you were, +Making another head to fight again. + +EDWARD: +Where is the Duke of Norfolk, gentle Warwick? +And when came George from Burgundy to England? + +WARWICK: +Some six miles off the duke is with the soldiers; +And for your brother, he was lately sent +From your kind aunt, Duchess of Burgundy, +With aid of soldiers to this needful war. + +RICHARD: +'Twas odds, belike, when valiant Warwick fled: +Oft have I heard his praises in pursuit, +But ne'er till now his scandal of retire. + +WARWICK: +Nor now my scandal, Richard, dost thou hear; +For thou shalt know this strong right hand of mine +Can pluck the diadem from faint Henry's head, +And wring the awful sceptre from his fist, +Were he as famous and as bold in war +As he is famed for mildness, peace, and prayer. + +RICHARD: +I know it well, Lord Warwick; blame me not: +'Tis love I bear thy glories makes me speak. +But in this troublous time what's to be done? +Shall we go throw away our coats of steel, +And wrap our bodies in black mourning gowns, +Numbering our Ave-Maries with our beads? +Or shall we on the helmets of our foes +Tell our devotion with revengeful arms? +If for the last, say ay, and to it, lords. + +WARWICK: +Why, therefore Warwick came to seek you out; +And therefore comes my brother Montague. +Attend me, lords. The proud insulting queen, +With Clifford and the haught Northumberland, +And of their feather many more proud birds, +Have wrought the easy-melting king like wax. +He swore consent to your succession, +His oath enrolled in the parliament; +And now to London all the crew are gone, +To frustrate both his oath and what beside +May make against the house of Lancaster. +Their power, I think, is thirty thousand strong: +Now, if the help of Norfolk and myself, +With all the friends that thou, brave Earl of March, +Amongst the loving Welshmen canst procure, +Will but amount to five and twenty thousand, +Why, Via! to London will we march amain, +And once again bestride our foaming steeds, +And once again cry 'Charge upon our foes!' +But never once again turn back and fly. + +RICHARD: +Ay, now methinks I hear great Warwick speak: +Ne'er may he live to see a sunshine day, +That cries 'Retire,' if Warwick bid him stay. + +EDWARD: +Lord Warwick, on thy shoulder will I lean; +And when thou fail'st--as God forbid the hour!-- +Must Edward fall, which peril heaven forfend! + +WARWICK: +No longer Earl of March, but Duke of York: +The next degree is England's royal throne; +For King of England shalt thou be proclaim'd +In every borough as we pass along; +And he that throws not up his cap for joy +Shall for the fault make forfeit of his head. +King Edward, valiant Richard, Montague, +Stay we no longer, dreaming of renown, +But sound the trumpets, and about our task. + +RICHARD: +Then, Clifford, were thy heart as hard as steel, +As thou hast shown it flinty by thy deeds, +I come to pierce it, or to give thee mine. + +EDWARD: +Then strike up drums: God and Saint George for us! + +WARWICK: +How now! what news? + +Messenger: +The Duke of Norfolk sends you word by me, +The queen is coming with a puissant host; +And craves your company for speedy counsel. + +WARWICK: +Why then it sorts, brave warriors, let's away. +3 KING HENRY VI + +QUEEN MARGARET: +Welcome, my lord, to this brave town of York. +Yonder's the head of that arch-enemy +That sought to be encompass'd with your crown: +Doth not the object cheer your heart, my lord? + +KING HENRY VI: +Ay, as the rocks cheer them that fear their wreck: +To see this sight, it irks my very soul. +Withhold revenge, dear God! 'tis not my fault, +Nor wittingly have I infringed my vow. + +CLIFFORD: +My gracious liege, this too much lenity +And harmful pity must be laid aside. +To whom do lions cast their gentle looks? +Not to the beast that would usurp their den. +Whose hand is that the forest bear doth lick? +Not his that spoils her young before her face. +Who 'scapes the lurking serpent's mortal sting? +Not he that sets his foot upon her back. +The smallest worm will turn being trodden on, +And doves will peck in safeguard of their brood. +Ambitious York doth level at thy crown, +Thou smiling while he knit his angry brows: +He, but a duke, would have his son a king, +And raise his issue, like a loving sire; +Thou, being a king, blest with a goodly son, +Didst yield consent to disinherit him, +Which argued thee a most unloving father. +Unreasonable creatures feed their young; +And though man's face be fearful to their eyes, +Yet, in protection of their tender ones, +Who hath not seen them, even with those wings +Which sometime they have used with fearful flight, +Make war with him that climb'd unto their nest, +Offer their own lives in their young's defence? +For shame, my liege, make them your precedent! +Were it not pity that this goodly boy +Should lose his birthright by his father's fault, +And long hereafter say unto his child, +'What my great-grandfather and his grandsire got +My careless father fondly gave away'? +Ah, what a shame were this! Look on the boy; +And let his manly face, which promiseth +Successful fortune, steel thy melting heart +To hold thine own and leave thine own with him. + +KING HENRY VI: +Full well hath Clifford play'd the orator, +Inferring arguments of mighty force. +But, Clifford, tell me, didst thou never hear +That things ill-got had ever bad success? +And happy always was it for that son +Whose father for his hoarding went to hell? +I'll leave my son my virtuous deeds behind; +And would my father had left me no more! +For all the rest is held at such a rate +As brings a thousand-fold more care to keep +Than in possession and jot of pleasure. +Ah, cousin York! would thy best friends did know +How it doth grieve me that thy head is here! + +QUEEN MARGARET: +My lord, cheer up your spirits: our foes are nigh, +And this soft courage makes your followers faint. +You promised knighthood to our forward son: +Unsheathe your sword, and dub him presently. +Edward, kneel down. + +KING HENRY VI: +Edward Plantagenet, arise a knight; +And learn this lesson, draw thy sword in right. + +PRINCE: +My gracious father, by your kingly leave, +I'll draw it as apparent to the crown, +And in that quarrel use it to the death. + +CLIFFORD: +Why, that is spoken like a toward prince. + +Messenger: +Royal commanders, be in readiness: +For with a band of thirty thousand men +Comes Warwick, backing of the Duke of York; +And in the towns, as they do march along, +Proclaims him king, and many fly to him: +Darraign your battle, for they are at hand. + +CLIFFORD: +I would your highness would depart the field: +The queen hath best success when you are absent. + +QUEEN MARGARET: +Ay, good my lord, and leave us to our fortune. + +KING HENRY VI: +Why, that's my fortune too; therefore I'll stay. + +NORTHUMBERLAND: +Be it with resolution then to fight. + +PRINCE EDWARD: +My royal father, cheer these noble lords +And hearten those that fight in your defence: +Unsheathe your sword, good father; cry 'Saint George!' + +EDWARD: +Now, perjured Henry! wilt thou kneel for grace, +And set thy diadem upon my head; +Or bide the mortal fortune of the field? + +QUEEN MARGARET: +Go, rate thy minions, proud insulting boy! +Becomes it thee to be thus bold in terms +Before thy sovereign and thy lawful king? + +EDWARD: +I am his king, and he should bow his knee; +I was adopted heir by his consent: +Since when, his oath is broke; for, as I hear, +You, that are king, though he do wear the crown, +Have caused him, by new act of parliament, +To blot out me, and put his own son in. + +CLIFFORD: +And reason too: +Who should succeed the father but the son? + +RICHARD: +Are you there, butcher? O, I cannot speak! + +CLIFFORD: +Ay, crook-back, here I stand to answer thee, +Or any he the proudest of thy sort. + +RICHARD: +'Twas you that kill'd young Rutland, was it not? + +CLIFFORD: +Ay, and old York, and yet not satisfied. + +RICHARD: +For God's sake, lords, give signal to the fight. + +WARWICK: +What say'st thou, Henry, wilt thou yield the crown? + +QUEEN MARGARET: +Why, how now, long-tongued Warwick! dare you speak? +When you and I met at Saint Alban's last, +Your legs did better service than your hands. + +WARWICK: +Then 'twas my turn to fly, and now 'tis thine. + +CLIFFORD: +You said so much before, and yet you fled. + +WARWICK: +'Twas not your valour, Clifford, drove me thence. + +NORTHUMBERLAND: +No, nor your manhood that durst make you stay. + +RICHARD: +Northumberland, I hold thee reverently. +Break off the parley; for scarce I can refrain +The execution of my big-swoln heart +Upon that Clifford, that cruel child-killer. + +CLIFFORD: +I slew thy father, call'st thou him a child? + +RICHARD: +Ay, like a dastard and a treacherous coward, +As thou didst kill our tender brother Rutland; +But ere sunset I'll make thee curse the deed. + +KING HENRY VI: +Have done with words, my lords, and hear me speak. + +QUEEN MARGARET: +Defy them then, or else hold close thy lips. + +KING HENRY VI: +I prithee, give no limits to my tongue: +I am a king, and privileged to speak. + +CLIFFORD: +My liege, the wound that bred this meeting here +Cannot be cured by words; therefore be still. + +RICHARD: +Then, executioner, unsheathe thy sword: +By him that made us all, I am resolved +that Clifford's manhood lies upon his tongue. + +EDWARD: +Say, Henry, shall I have my right, or no? +A thousand men have broke their fasts to-day, +That ne'er shall dine unless thou yield the crown. + +WARWICK: +If thou deny, their blood upon thy head; +For York in justice puts his armour on. + +PRINCE EDWARD: +If that be right which Warwick says is right, +There is no wrong, but every thing is right. + +RICHARD: +Whoever got thee, there thy mother stands; +For, well I wot, thou hast thy mother's tongue. + +QUEEN MARGARET: +But thou art neither like thy sire nor dam; +But like a foul mis-shapen stigmatic, +Mark'd by the destinies to be avoided, +As venom toads, or lizards' dreadful stings. + +RICHARD: +Iron of Naples hid with English gilt, +Whose father bears the title of a king,-- +As if a channel should be call'd the sea,-- +Shamest thou not, knowing whence thou art extraught, +To let thy tongue detect thy base-born heart? + +EDWARD: +A wisp of straw were worth a thousand crowns, +To make this shameless callet know herself. +Helen of Greece was fairer far than thou, +Although thy husband may be Menelaus; +And ne'er was Agamemnon's brother wrong'd +By that false woman, as this king by thee. +His father revell'd in the heart of France, +And tamed the king, and made the dauphin stoop; +And had he match'd according to his state, +He might have kept that glory to this day; +But when he took a beggar to his bed, +And graced thy poor sire with his bridal-day, +Even then that sunshine brew'd a shower for him, +That wash'd his father's fortunes forth of France, +And heap'd sedition on his crown at home. +For what hath broach'd this tumult but thy pride? +Hadst thou been meek, our title still had slept; +And we, in pity of the gentle king, +Had slipp'd our claim until another age. + +GEORGE: +But when we saw our sunshine made thy spring, +And that thy summer bred us no increase, +We set the axe to thy usurping root; +And though the edge hath something hit ourselves, +Yet, know thou, since we have begun to strike, +We'll never leave till we have hewn thee down, +Or bathed thy growing with our heated bloods. + +EDWARD: +And, in this resolution, I defy thee; +Not willing any longer conference, +Since thou deniest the gentle king to speak. +Sound trumpets! let our bloody colours wave! +And either victory, or else a grave. + +QUEEN MARGARET: +Stay, Edward. + +EDWARD: +No, wrangling woman, we'll no longer stay: +These words will cost ten thousand lives this day. +3 KING HENRY VI + +WARWICK: +Forspent with toil, as runners with a race, +I lay me down a little while to breathe; +For strokes received, and many blows repaid, +Have robb'd my strong-knit sinews of their strength, +And spite of spite needs must I rest awhile. + +EDWARD: +Smile, gentle heaven! or strike, ungentle death! +For this world frowns, and Edward's sun is clouded. + +WARWICK: +How now, my lord! what hap? what hope of good? + +GEORGE: +Our hap is loss, our hope but sad despair; +Our ranks are broke, and ruin follows us: +What counsel give you? whither shall we fly? + +EDWARD: +Bootless is flight, they follow us with wings; +And weak we are and cannot shun pursuit. + +RICHARD: +Ah, Warwick, why hast thou withdrawn thyself? +Thy brother's blood the thirsty earth hath drunk, +Broach'd with the steely point of Clifford's lance; +And in the very pangs of death he cried, +Like to a dismal clangour heard from far, +'Warwick, revenge! brother, revenge my death!' +So, underneath the belly of their steeds, +That stain'd their fetlocks in his smoking blood, +The noble gentleman gave up the ghost. + +WARWICK: +Then let the earth be drunken with our blood: +I'll kill my horse, because I will not fly. +Why stand we like soft-hearted women here, +Wailing our losses, whiles the foe doth rage; +And look upon, as if the tragedy +Were play'd in jest by counterfeiting actors? +Here on my knee I vow to God above, +I'll never pause again, never stand still, +Till either death hath closed these eyes of mine +Or fortune given me measure of revenge. + +EDWARD: +O Warwick, I do bend my knee with thine; +And in this vow do chain my soul to thine! +And, ere my knee rise from the earth's cold face, +I throw my hands, mine eyes, my heart to thee, +Thou setter up and plucker down of kings, +Beseeching thee, if with they will it stands +That to my foes this body must be prey, +Yet that thy brazen gates of heaven may ope, +And give sweet passage to my sinful soul! +Now, lords, take leave until we meet again, +Where'er it be, in heaven or in earth. + +RICHARD: +Brother, give me thy hand; and, gentle Warwick, +Let me embrace thee in my weary arms: +I, that did never weep, now melt with woe +That winter should cut off our spring-time so. + +WARWICK: +Away, away! Once more, sweet lords farewell. + +GEORGE: +Yet let us all together to our troops, +And give them leave to fly that will not stay; +And call them pillars that will stand to us; +And, if we thrive, promise them such rewards +As victors wear at the Olympian games: +This may plant courage in their quailing breasts; +For yet is hope of life and victory. +Forslow no longer, make we hence amain. +3 KING HENRY VI + +RICHARD: +Now, Clifford, I have singled thee alone: +Suppose this arm is for the Duke of York, +And this for Rutland; both bound to revenge, +Wert thou environ'd with a brazen wall. + +CLIFFORD: +Now, Richard, I am with thee here alone: +This is the hand that stabb'd thy father York; +And this the hand that slew thy brother Rutland; +And here's the heart that triumphs in their death +And cheers these hands that slew thy sire and brother +To execute the like upon thyself; +And so, have at thee! + +RICHARD: +Nay Warwick, single out some other chase; +For I myself will hunt this wolf to death. +3 KING HENRY VI + +KING HENRY VI: +This battle fares like to the morning's war, +When dying clouds contend with growing light, +What time the shepherd, blowing of his nails, +Can neither call it perfect day nor night. +Now sways it this way, like a mighty sea +Forced by the tide to combat with the wind; +Now sways it that way, like the selfsame sea +Forced to retire by fury of the wind: +Sometime the flood prevails, and then the wind; +Now one the better, then another best; +Both tugging to be victors, breast to breast, +Yet neither conqueror nor conquered: +So is the equal of this fell war. +Here on this molehill will I sit me down. +To whom God will, there be the victory! +For Margaret my queen, and Clifford too, +Have chid me from the battle; swearing both +They prosper best of all when I am thence. +Would I were dead! if God's good will were so; +For what is in this world but grief and woe? +O God! methinks it were a happy life, +To be no better than a homely swain; +To sit upon a hill, as I do now, +To carve out dials quaintly, point by point, +Thereby to see the minutes how they run, +How many make the hour full complete; +How many hours bring about the day; +How many days will finish up the year; +How many years a mortal man may live. +When this is known, then to divide the times: +So many hours must I tend my flock; +So many hours must I take my rest; +So many hours must I contemplate; +So many hours must I sport myself; +So many days my ewes have been with young; +So many weeks ere the poor fools will ean: +So many years ere I shall shear the fleece: +So minutes, hours, days, months, and years, +Pass'd over to the end they were created, +Would bring white hairs unto a quiet grave. +Ah, what a life were this! how sweet! how lovely! +Gives not the hawthorn-bush a sweeter shade +To shepherds looking on their silly sheep, +Than doth a rich embroider'd canopy +To kings that fear their subjects' treachery? +O, yes, it doth; a thousand-fold it doth. +And to conclude, the shepherd's homely curds, +His cold thin drink out of his leather bottle. +His wonted sleep under a fresh tree's shade, +All which secure and sweetly he enjoys, +Is far beyond a prince's delicates, +His viands sparkling in a golden cup, +His body couched in a curious bed, +When care, mistrust, and treason waits on him. + +Son: +Ill blows the wind that profits nobody. +This man, whom hand to hand I slew in fight, +May be possessed with some store of crowns; +And I, that haply take them from him now, +May yet ere night yield both my life and them +To some man else, as this dead man doth me. +Who's this? O God! it is my father's face, +Whom in this conflict I unwares have kill'd. +O heavy times, begetting such events! +From London by the king was I press'd forth; +My father, being the Earl of Warwick's man, +Came on the part of York, press'd by his master; +And I, who at his hands received my life, him +Have by my hands of life bereaved him. +Pardon me, God, I knew not what I did! +And pardon, father, for I knew not thee! +My tears shall wipe away these bloody marks; +And no more words till they have flow'd their fill. + +KING HENRY VI: +O piteous spectacle! O bloody times! +Whiles lions war and battle for their dens, +Poor harmless lambs abide their enmity. +Weep, wretched man, I'll aid thee tear for tear; +And let our hearts and eyes, like civil war, +Be blind with tears, and break o'ercharged with grief. + +Father: +Thou that so stoutly hast resisted me, +Give me thy gold, if thou hast any gold: +For I have bought it with an hundred blows. +But let me see: is this our foeman's face? +Ah, no, no, no, it is mine only son! +Ah, boy, if any life be left in thee, +Throw up thine eye! see, see what showers arise, +Blown with the windy tempest of my heart, +Upon thy words, that kill mine eye and heart! +O, pity, God, this miserable age! +What stratagems, how fell, how butcherly, +Erroneous, mutinous and unnatural, +This deadly quarrel daily doth beget! +O boy, thy father gave thee life too soon, +And hath bereft thee of thy life too late! + +KING HENRY VI: +Woe above woe! grief more than common grief! +O that my death would stay these ruthful deeds! +O pity, pity, gentle heaven, pity! +The red rose and the white are on his face, +The fatal colours of our striving houses: +The one his purple blood right well resembles; +The other his pale cheeks, methinks, presenteth: +Wither one rose, and let the other flourish; +If you contend, a thousand lives must wither. + +Son: +How will my mother for a father's death +Take on with me and ne'er be satisfied! + +Father: +How will my wife for slaughter of my son +Shed seas of tears and ne'er be satisfied! + +KING HENRY VI: +How will the country for these woful chances +Misthink the king and not be satisfied! + +Son: +Was ever son so rued a father's death? + +Father: +Was ever father so bemoan'd his son? + +KING HENRY VI: +Was ever king so grieved for subjects' woe? +Much is your sorrow; mine ten times so much. + +Son: +I'll bear thee hence, where I may weep my fill. + +Father: +These arms of mine shall be thy winding-sheet; +My heart, sweet boy, shall be thy sepulchre, +For from my heart thine image ne'er shall go; +My sighing breast shall be thy funeral bell; +And so obsequious will thy father be, +Even for the loss of thee, having no more, +As Priam was for all his valiant sons. +I'll bear thee hence; and let them fight that will, +For I have murdered where I should not kill. + +KING HENRY VI: +Sad-hearted men, much overgone with care, +Here sits a king more woful than you are. + +PRINCE EDWARD: +Fly, father, fly! for all your friends are fled, +And Warwick rages like a chafed bull: +Away! for death doth hold us in pursuit. + +QUEEN MARGARET: +Mount you, my lord; towards Berwick post amain: +Edward and Richard, like a brace of greyhounds +Having the fearful flying hare in sight, +With fiery eyes sparkling for very wrath, +And bloody steel grasp'd in their ireful hands, +Are at our backs; and therefore hence amain. + +EXETER: +Away! for vengeance comes along with them: +Nay, stay not to expostulate, make speed; +Or else come after: I'll away before. + +KING HENRY VI: +Nay, take me with thee, good sweet Exeter: +Not that I fear to stay, but love to go +Whither the queen intends. Forward; away! +3 KING HENRY VI + +CLIFFORD: +Here burns my candle out; ay, here it dies, +Which, whiles it lasted, gave King Henry light. +O Lancaster, I fear thy overthrow +More than my body's parting with my soul! +My love and fear glued many friends to thee; +And, now I fall, thy tough commixture melts. +Impairing Henry, strengthening misproud York, +The common people swarm like summer flies; +And whither fly the gnats but to the sun? +And who shines now but Henry's enemies? +O Phoebus, hadst thou never given consent +That Phaethon should cheque thy fiery steeds, +Thy burning car never had scorch'd the earth! +And, Henry, hadst thou sway'd as kings should do, +Or as thy father and his father did, +Giving no ground unto the house of York, +They never then had sprung like summer flies; +I and ten thousand in this luckless realm +Had left no mourning widows for our death; +And thou this day hadst kept thy chair in peace. +For what doth cherish weeds but gentle air? +And what makes robbers bold but too much lenity? +Bootless are plaints, and cureless are my wounds; +No way to fly, nor strength to hold out flight: +The foe is merciless, and will not pity; +For at their hands I have deserved no pity. +The air hath got into my deadly wounds, +And much effuse of blood doth make me faint. +Come, York and Richard, Warwick and the rest; +I stabb'd your fathers' bosoms, split my breast. + +EDWARD: +Now breathe we, lords: good fortune bids us pause, +And smooth the frowns of war with peaceful looks. +Some troops pursue the bloody-minded queen, +That led calm Henry, though he were a king, +As doth a sail, fill'd with a fretting gust, +Command an argosy to stem the waves. +But think you, lords, that Clifford fled with them? + +WARWICK: +No, 'tis impossible he should escape, +For, though before his face I speak the words +Your brother Richard mark'd him for the grave: +And wheresoe'er he is, he's surely dead. + +EDWARD: +Whose soul is that which takes her heavy leave? + +RICHARD: +A deadly groan, like life and death's departing. + +EDWARD: +See who it is: and, now the battle's ended, +If friend or foe, let him be gently used. + +RICHARD: +Revoke that doom of mercy, for 'tis Clifford; +Who not contented that he lopp'd the branch +In hewing Rutland when his leaves put forth, +But set his murdering knife unto the root +From whence that tender spray did sweetly spring, +I mean our princely father, Duke of York. + +WARWICK: +From off the gates of York fetch down the head, +Your father's head, which Clifford placed there; +Instead whereof let this supply the room: +Measure for measure must be answered. + +EDWARD: +Bring forth that fatal screech-owl to our house, +That nothing sung but death to us and ours: +Now death shall stop his dismal threatening sound, +And his ill-boding tongue no more shall speak. + +WARWICK: +I think his understanding is bereft. +Speak, Clifford, dost thou know who speaks to thee? +Dark cloudy death o'ershades his beams of life, +And he nor sees nor hears us what we say. + +RICHARD: +O, would he did! and so perhaps he doth: +'Tis but his policy to counterfeit, +Because he would avoid such bitter taunts +Which in the time of death he gave our father. + +GEORGE: +If so thou think'st, vex him with eager words. + +RICHARD: +Clifford, ask mercy and obtain no grace. + +EDWARD: +Clifford, repent in bootless penitence. + +WARWICK: +Clifford, devise excuses for thy faults. + +GEORGE: +While we devise fell tortures for thy faults. + +RICHARD: +Thou didst love York, and I am son to York. + +EDWARD: +Thou pitied'st Rutland; I will pity thee. + +GEORGE: +Where's Captain Margaret, to fence you now? + +WARWICK: +They mock thee, Clifford: swear as thou wast wont. + +RICHARD: +What, not an oath? nay, then the world goes hard +When Clifford cannot spare his friends an oath. +I know by that he's dead; and, by my soul, +If this right hand would buy two hour's life, +That I in all despite might rail at him, +This hand should chop it off, and with the +issuing blood +Stifle the villain whose unstanched thirst +York and young Rutland could not satisfy. + +WARWICK: +Ay, but he's dead: off with the traitor's head, +And rear it in the place your father's stands. +And now to London with triumphant march, +There to be crowned England's royal king: +From whence shall Warwick cut the sea to France, +And ask the Lady Bona for thy queen: +So shalt thou sinew both these lands together; +And, having France thy friend, thou shalt not dread +The scatter'd foe that hopes to rise again; +For though they cannot greatly sting to hurt, +Yet look to have them buzz to offend thine ears. +First will I see the coronation; +And then to Brittany I'll cross the sea, +To effect this marriage, so it please my lord. + +EDWARD: +Even as thou wilt, sweet Warwick, let it be; +For in thy shoulder do I build my seat, +And never will I undertake the thing +Wherein thy counsel and consent is wanting. +Richard, I will create thee Duke of Gloucester, +And George, of Clarence: Warwick, as ourself, +Shall do and undo as him pleaseth best. + +RICHARD: +Let me be Duke of Clarence, George of Gloucester; +For Gloucester's dukedom is too ominous. + +WARWICK: +Tut, that's a foolish observation: +Richard, be Duke of Gloucester. Now to London, +To see these honours in possession. +3 KING HENRY VI + +First Keeper: +Under this thick-grown brake we'll shroud ourselves; +For through this laund anon the deer will come; +And in this covert will we make our stand, +Culling the principal of all the deer. + +Second Keeper: +I'll stay above the hill, so both may shoot. + +First Keeper: +That cannot be; the noise of thy cross-bow +Will scare the herd, and so my shoot is lost. +Here stand we both, and aim we at the best: +And, for the time shall not seem tedious, +I'll tell thee what befell me on a day +In this self-place where now we mean to stand. + +Second Keeper: +Here comes a man; let's stay till he be past. + +KING HENRY VI: +From Scotland am I stol'n, even of pure love, +To greet mine own land with my wishful sight. +No, Harry, Harry, 'tis no land of thine; +Thy place is fill'd, thy sceptre wrung from thee, +Thy balm wash'd off wherewith thou wast anointed: +No bending knee will call thee Caesar now, +No humble suitors press to speak for right, +No, not a man comes for redress of thee; +For how can I help them, and not myself? + +First Keeper: +Ay, here's a deer whose skin's a keeper's fee: +This is the quondam king; let's seize upon him. + +KING HENRY VI: +Let me embrace thee, sour adversity, +For wise men say it is the wisest course. + +Second Keeper: +Why linger we? let us lay hands upon him. + +First Keeper: +Forbear awhile; we'll hear a little more. + +KING HENRY VI: +My queen and son are gone to France for aid; +And, as I hear, the great commanding Warwick +Is thither gone, to crave the French king's sister +To wife for Edward: if this news be true, +Poor queen and son, your labour is but lost; +For Warwick is a subtle orator, +And Lewis a prince soon won with moving words. +By this account then Margaret may win him; +For she's a woman to be pitied much: +Her sighs will make a battery in his breast; +Her tears will pierce into a marble heart; +The tiger will be mild whiles she doth mourn; +And Nero will be tainted with remorse, +To hear and see her plaints, her brinish tears. +Ay, but she's come to beg, Warwick to give; +She, on his left side, craving aid for Henry, +He, on his right, asking a wife for Edward. +She weeps, and says her Henry is deposed; +He smiles, and says his Edward is install'd; +That she, poor wretch, for grief can speak no more; +Whiles Warwick tells his title, smooths the wrong, +Inferreth arguments of mighty strength, +And in conclusion wins the king from her, +With promise of his sister, and what else, +To strengthen and support King Edward's place. +O Margaret, thus 'twill be; and thou, poor soul, +Art then forsaken, as thou went'st forlorn! + +Second Keeper: +Say, what art thou that talk'st of kings and queens? + +KING HENRY VI: +More than I seem, and less than I was born to: +A man at least, for less I should not be; +And men may talk of kings, and why not I? + +Second Keeper: +Ay, but thou talk'st as if thou wert a king. + +KING HENRY VI: +Why, so I am, in mind; and that's enough. + +Second Keeper: +But, if thou be a king, where is thy crown? + +KING HENRY VI: +My crown is in my heart, not on my head; +Not decked with diamonds and Indian stones, +Nor to be seen: my crown is called content: +A crown it is that seldom kings enjoy. + +Second Keeper: +Well, if you be a king crown'd with content, +Your crown content and you must be contented +To go along with us; for as we think, +You are the king King Edward hath deposed; +And we his subjects sworn in all allegiance +Will apprehend you as his enemy. + +KING HENRY VI: +But did you never swear, and break an oath? + +Second Keeper: +No, never such an oath; nor will not now. + +KING HENRY VI: +Where did you dwell when I was King of England? + +Second Keeper: +Here in this country, where we now remain. + +KING HENRY VI: +I was anointed king at nine months old; +My father and my grandfather were kings, +And you were sworn true subjects unto me: +And tell me, then, have you not broke your oaths? + +First Keeper: +No; +For we were subjects but while you were king. + +KING HENRY VI: +Why, am I dead? do I not breathe a man? +Ah, simple men, you know not what you swear! +Look, as I blow this feather from my face, +And as the air blows it to me again, +Obeying with my wind when I do blow, +And yielding to another when it blows, +Commanded always by the greater gust; +Such is the lightness of you common men. +But do not break your oaths; for of that sin +My mild entreaty shall not make you guilty. +Go where you will, the king shall be commanded; +And be you kings, command, and I'll obey. + +First Keeper: +We are true subjects to the king, King Edward. + +KING HENRY VI: +So would you be again to Henry, +If he were seated as King Edward is. + +First Keeper: +We charge you, in God's name, and the king's, +To go with us unto the officers. + +KING HENRY VI: +In God's name, lead; your king's name be obey'd: +And what God will, that let your king perform; +And what he will, I humbly yield unto. +3 KING HENRY VI + +KING EDWARD IV: +Brother of Gloucester, at Saint Alban's field +This lady's husband, Sir Richard Grey, was slain, +His lands then seized on by the conqueror: +Her suit is now to repossess those lands; +Which we in justice cannot well deny, +Because in quarrel of the house of York +The worthy gentleman did lose his life. + +GLOUCESTER: +Your highness shall do well to grant her suit; +It were dishonour to deny it her. + +KING EDWARD IV: +It were no less; but yet I'll make a pause. + +GLOUCESTER: + +CLARENCE: + +GLOUCESTER: + +KING EDWARD IV: +Widow, we will consider of your suit; +And come some other time to know our mind. + +LADY GREY: +Right gracious lord, I cannot brook delay: +May it please your highness to resolve me now; +And what your pleasure is, shall satisfy me. + +GLOUCESTER: + +CLARENCE: + +GLOUCESTER: + +KING EDWARD IV: +How many children hast thou, widow? tell me. + +CLARENCE: + +GLOUCESTER: + +LADY GREY: +Three, my most gracious lord. + +GLOUCESTER: + +KING EDWARD IV: +'Twere pity they should lose their father's lands. + +LADY GREY: +Be pitiful, dread lord, and grant it then. + +KING EDWARD IV: +Lords, give us leave: I'll try this widow's wit. + +GLOUCESTER: + +KING EDWARD IV: +Now tell me, madam, do you love your children? + +LADY GREY: +Ay, full as dearly as I love myself. + +KING EDWARD IV: +And would you not do much to do them good? + +LADY GREY: +To do them good, I would sustain some harm. + +KING EDWARD IV: +Then get your husband's lands, to do them good. + +LADY GREY: +Therefore I came unto your majesty. + +KING EDWARD IV: +I'll tell you how these lands are to be got. + +LADY GREY: +So shall you bind me to your highness' service. + +KING EDWARD IV: +What service wilt thou do me, if I give them? + +LADY GREY: +What you command, that rests in me to do. + +KING EDWARD IV: +But you will take exceptions to my boon. + +LADY GREY: +No, gracious lord, except I cannot do it. + +KING EDWARD IV: +Ay, but thou canst do what I mean to ask. + +LADY GREY: +Why, then I will do what your grace commands. + +GLOUCESTER: + +CLARENCE: + +LADY GREY: +Why stops my lord, shall I not hear my task? + +KING EDWARD IV: +An easy task; 'tis but to love a king. + +LADY GREY: +That's soon perform'd, because I am a subject. + +KING EDWARD IV: +Why, then, thy husband's lands I freely give thee. + +LADY GREY: +I take my leave with many thousand thanks. + +GLOUCESTER: + +KING EDWARD IV: +But stay thee, 'tis the fruits of love I mean. + +LADY GREY: +The fruits of love I mean, my loving liege. + +KING EDWARD IV: +Ay, but, I fear me, in another sense. +What love, think'st thou, I sue so much to get? + +LADY GREY: +My love till death, my humble thanks, my prayers; +That love which virtue begs and virtue grants. + +KING EDWARD IV: +No, by my troth, I did not mean such love. + +LADY GREY: +Why, then you mean not as I thought you did. + +KING EDWARD IV: +But now you partly may perceive my mind. + +LADY GREY: +My mind will never grant what I perceive +Your highness aims at, if I aim aright. + +KING EDWARD IV: +To tell thee plain, I aim to lie with thee. + +LADY GREY: +To tell you plain, I had rather lie in prison. + +KING EDWARD IV: +Why, then thou shalt not have thy husband's lands. + +LADY GREY: +Why, then mine honesty shall be my dower; +For by that loss I will not purchase them. + +KING EDWARD IV: +Therein thou wrong'st thy children mightily. + +LADY GREY: +Herein your highness wrongs both them and me. +But, mighty lord, this merry inclination +Accords not with the sadness of my suit: +Please you dismiss me either with 'ay' or 'no.' + +KING EDWARD IV: +Ay, if thou wilt say 'ay' to my request; +No if thou dost say 'no' to my demand. + +LADY GREY: +Then, no, my lord. My suit is at an end. + +GLOUCESTER: + +CLARENCE: + +KING EDWARD IV: + +LADY GREY: +'Tis better said than done, my gracious lord: +I am a subject fit to jest withal, +But far unfit to be a sovereign. + +KING EDWARD IV: +Sweet widow, by my state I swear to thee +I speak no more than what my soul intends; +And that is, to enjoy thee for my love. + +LADY GREY: +And that is more than I will yield unto: +I know I am too mean to be your queen, +And yet too good to be your concubine. + +KING EDWARD IV: +You cavil, widow: I did mean, my queen. + +LADY GREY: +'Twill grieve your grace my sons should call you father. + +KING EDWARD IV: +No more than when my daughters call thee mother. +Thou art a widow, and thou hast some children; +And, by God's mother, I, being but a bachelor, +Have other some: why, 'tis a happy thing +To be the father unto many sons. +Answer no more, for thou shalt be my queen. + +GLOUCESTER: + +CLARENCE: + +KING EDWARD IV: +Brothers, you muse what chat we two have had. + +GLOUCESTER: +The widow likes it not, for she looks very sad. + +KING EDWARD IV: +You'll think it strange if I should marry her. + +CLARENCE: +To whom, my lord? + +KING EDWARD IV: +Why, Clarence, to myself. + +GLOUCESTER: +That would be ten days' wonder at the least. + +CLARENCE: +That's a day longer than a wonder lasts. + +GLOUCESTER: +By so much is the wonder in extremes. + +KING EDWARD IV: +Well, jest on, brothers: I can tell you both +Her suit is granted for her husband's lands. + +Nobleman: +My gracious lord, Henry your foe is taken, +And brought your prisoner to your palace gate. + +KING EDWARD IV: +See that he be convey'd unto the Tower: +And go we, brothers, to the man that took him, +To question of his apprehension. +Widow, go you along. Lords, use her honourably. + +GLOUCESTER: +Ay, Edward will use women honourably. +Would he were wasted, marrow, bones and all, +That from his loins no hopeful branch may spring, +To cross me from the golden time I look for! +And yet, between my soul's desire and me-- +The lustful Edward's title buried-- +Is Clarence, Henry, and his son young Edward, +And all the unlook'd for issue of their bodies, +To take their rooms, ere I can place myself: +A cold premeditation for my purpose! +Why, then, I do but dream on sovereignty; +Like one that stands upon a promontory, +And spies a far-off shore where he would tread, +Wishing his foot were equal with his eye, +And chides the sea that sunders him from thence, +Saying, he'll lade it dry to have his way: +So do I wish the crown, being so far off; +And so I chide the means that keeps me from it; +And so I say, I'll cut the causes off, +Flattering me with impossibilities. +My eye's too quick, my heart o'erweens too much, +Unless my hand and strength could equal them. +Well, say there is no kingdom then for Richard; +What other pleasure can the world afford? +I'll make my heaven in a lady's lap, +And deck my body in gay ornaments, +And witch sweet ladies with my words and looks. +O miserable thought! and more unlikely +Than to accomplish twenty golden crowns! +Why, love forswore me in my mother's womb: +And, for I should not deal in her soft laws, +She did corrupt frail nature with some bribe, +To shrink mine arm up like a wither'd shrub; +To make an envious mountain on my back, +Where sits deformity to mock my body; +To shape my legs of an unequal size; +To disproportion me in every part, +Like to a chaos, or an unlick'd bear-whelp +That carries no impression like the dam. +And am I then a man to be beloved? +O monstrous fault, to harbour such a thought! +Then, since this earth affords no joy to me, +But to command, to cheque, to o'erbear such +As are of better person than myself, +I'll make my heaven to dream upon the crown, +And, whiles I live, to account this world but hell, +Until my mis-shaped trunk that bears this head +Be round impaled with a glorious crown. +And yet I know not how to get the crown, +For many lives stand between me and home: +And I,--like one lost in a thorny wood, +That rends the thorns and is rent with the thorns, +Seeking a way and straying from the way; +Not knowing how to find the open air, +But toiling desperately to find it out,-- +Torment myself to catch the English crown: +And from that torment I will free myself, +Or hew my way out with a bloody axe. +Why, I can smile, and murder whiles I smile, +And cry 'Content' to that which grieves my heart, +And wet my cheeks with artificial tears, +And frame my face to all occasions. +I'll drown more sailors than the mermaid shall; +I'll slay more gazers than the basilisk; +I'll play the orator as well as Nestor, +Deceive more slily than Ulysses could, +And, like a Sinon, take another Troy. +I can add colours to the chameleon, +Change shapes with Proteus for advantages, +And set the murderous Machiavel to school. +Can I do this, and cannot get a crown? +Tut, were it farther off, I'll pluck it down. +3 KING HENRY VI + +KING LEWIS XI: +Fair Queen of England, worthy Margaret, +Sit down with us: it ill befits thy state +And birth, that thou shouldst stand while Lewis doth sit. + +QUEEN MARGARET: +No, mighty King of France: now Margaret +Must strike her sail and learn awhile to serve +Where kings command. I was, I must confess, +Great Albion's queen in former golden days: +But now mischance hath trod my title down, +And with dishonour laid me on the ground; +Where I must take like seat unto my fortune, +And to my humble seat conform myself. + +KING LEWIS XI: +Why, say, fair queen, whence springs this deep despair? + +QUEEN MARGARET: +From such a cause as fills mine eyes with tears +And stops my tongue, while heart is drown'd in cares. + +KING LEWIS XI: +Whate'er it be, be thou still like thyself, +And sit thee by our side: +Yield not thy neck +To fortune's yoke, but let thy dauntless mind +Still ride in triumph over all mischance. +Be plain, Queen Margaret, and tell thy grief; +It shall be eased, if France can yield relief. + +QUEEN MARGARET: +Those gracious words revive my drooping thoughts +And give my tongue-tied sorrows leave to speak. +Now, therefore, be it known to noble Lewis, +That Henry, sole possessor of my love, +Is of a king become a banish'd man, +And forced to live in Scotland a forlorn; +While proud ambitious Edward Duke of York +Usurps the regal title and the seat +Of England's true-anointed lawful king. +This is the cause that I, poor Margaret, +With this my son, Prince Edward, Henry's heir, +Am come to crave thy just and lawful aid; +And if thou fail us, all our hope is done: +Scotland hath will to help, but cannot help; +Our people and our peers are both misled, +Our treasures seized, our soldiers put to flight, +And, as thou seest, ourselves in heavy plight. + +KING LEWIS XI: +Renowned queen, with patience calm the storm, +While we bethink a means to break it off. + +QUEEN MARGARET: +The more we stay, the stronger grows our foe. + +KING LEWIS XI: +The more I stay, the more I'll succor thee. + +QUEEN MARGARET: +O, but impatience waiteth on true sorrow. +And see where comes the breeder of my sorrow! + +KING LEWIS XI: +What's he approacheth boldly to our presence? + +QUEEN MARGARET: +Our Earl of Warwick, Edward's greatest friend. + +KING LEWIS XI: +Welcome, brave Warwick! What brings thee to France? + +QUEEN MARGARET: +Ay, now begins a second storm to rise; +For this is he that moves both wind and tide. + +WARWICK: +From worthy Edward, King of Albion, +My lord and sovereign, and thy vowed friend, +I come, in kindness and unfeigned love, +First, to do greetings to thy royal person; +And then to crave a league of amity; +And lastly, to confirm that amity +With a nuptial knot, if thou vouchsafe to grant +That virtuous Lady Bona, thy fair sister, +To England's king in lawful marriage. + +QUEEN MARGARET: + +WARWICK: + +QUEEN MARGARET: +King Lewis and Lady Bona, hear me speak, +Before you answer Warwick. His demand +Springs not from Edward's well-meant honest love, +But from deceit bred by necessity; +For how can tyrants safely govern home, +Unless abroad they purchase great alliance? +To prove him tyrant this reason may suffice, +That Henry liveth still: but were he dead, +Yet here Prince Edward stands, King Henry's son. +Look, therefore, Lewis, that by this league and marriage +Thou draw not on thy danger and dishonour; +For though usurpers sway the rule awhile, +Yet heavens are just, and time suppresseth wrongs. + +WARWICK: +Injurious Margaret! + +PRINCE EDWARD: +And why not queen? + +WARWICK: +Because thy father Henry did usurp; +And thou no more are prince than she is queen. + +OXFORD: +Then Warwick disannuls great John of Gaunt, +Which did subdue the greatest part of Spain; +And, after John of Gaunt, Henry the Fourth, +Whose wisdom was a mirror to the wisest; +And, after that wise prince, Henry the Fifth, +Who by his prowess conquered all France: +From these our Henry lineally descends. + +WARWICK: +Oxford, how haps it, in this smooth discourse, +You told not how Henry the Sixth hath lost +All that which Henry Fifth had gotten? +Methinks these peers of France should smile at that. +But for the rest, you tell a pedigree +Of threescore and two years; a silly time +To make prescription for a kingdom's worth. + +OXFORD: +Why, Warwick, canst thou speak against thy liege, +Whom thou obeyed'st thirty and six years, +And not bewray thy treason with a blush? + +WARWICK: +Can Oxford, that did ever fence the right, +Now buckler falsehood with a pedigree? +For shame! leave Henry, and call Edward king. + +OXFORD: +Call him my king by whose injurious doom +My elder brother, the Lord Aubrey Vere, +Was done to death? and more than so, my father, +Even in the downfall of his mellow'd years, +When nature brought him to the door of death? +No, Warwick, no; while life upholds this arm, +This arm upholds the house of Lancaster. + +WARWICK: +And I the house of York. + +KING LEWIS XI: +Queen Margaret, Prince Edward, and Oxford, +Vouchsafe, at our request, to stand aside, +While I use further conference with Warwick. + +QUEEN MARGARET: +Heavens grant that Warwick's words bewitch him not! + +KING LEWIS XI: +Now Warwick, tell me, even upon thy conscience, +Is Edward your true king? for I were loath +To link with him that were not lawful chosen. + +WARWICK: +Thereon I pawn my credit and mine honour. + +KING LEWIS XI: +But is he gracious in the people's eye? + +WARWICK: +The more that Henry was unfortunate. + +KING LEWIS XI: +Then further, all dissembling set aside, +Tell me for truth the measure of his love +Unto our sister Bona. + +WARWICK: +Such it seems +As may beseem a monarch like himself. +Myself have often heard him say and swear +That this his love was an eternal plant, +Whereof the root was fix'd in virtue's ground, +The leaves and fruit maintain'd with beauty's sun, +Exempt from envy, but not from disdain, +Unless the Lady Bona quit his pain. + +KING LEWIS XI: +Now, sister, let us hear your firm resolve. + +BONA: +Your grant, or your denial, shall be mine: +Yet I confess that often ere this day, +When I have heard your king's desert recounted, +Mine ear hath tempted judgment to desire. + +KING LEWIS XI: +Then, Warwick, thus: our sister shall be Edward's; +And now forthwith shall articles be drawn +Touching the jointure that your king must make, +Which with her dowry shall be counterpoised. +Draw near, Queen Margaret, and be a witness +That Bona shall be wife to the English king. + +PRINCE EDWARD: +To Edward, but not to the English king. + +QUEEN MARGARET: +Deceitful Warwick! it was thy device +By this alliance to make void my suit: +Before thy coming Lewis was Henry's friend. + +KING LEWIS XI: +And still is friend to him and Margaret: +But if your title to the crown be weak, +As may appear by Edward's good success, +Then 'tis but reason that I be released +From giving aid which late I promised. +Yet shall you have all kindness at my hand +That your estate requires and mine can yield. + +WARWICK: +Henry now lives in Scotland at his ease, +Where having nothing, nothing can he lose. +And as for you yourself, our quondam queen, +You have a father able to maintain you; +And better 'twere you troubled him than France. + +QUEEN MARGARET: +Peace, impudent and shameless Warwick, peace, +Proud setter up and puller down of kings! +I will not hence, till, with my talk and tears, +Both full of truth, I make King Lewis behold +Thy sly conveyance and thy lord's false love; +For both of you are birds of selfsame feather. + +KING LEWIS XI: +Warwick, this is some post to us or thee. + +Post: + +OXFORD: +I like it well that our fair queen and mistress +Smiles at her news, while Warwick frowns at his. + +PRINCE EDWARD: +Nay, mark how Lewis stamps, as he were nettled: +I hope all's for the best. + +KING LEWIS XI: +Warwick, what are thy news? and yours, fair queen? + +QUEEN MARGARET: +Mine, such as fill my heart with unhoped joys. + +WARWICK: +Mine, full of sorrow and heart's discontent. + +KING LEWIS XI: +What! has your king married the Lady Grey! +And now, to soothe your forgery and his, +Sends me a paper to persuade me patience? +Is this the alliance that he seeks with France? +Dare he presume to scorn us in this manner? + +QUEEN MARGARET: +I told your majesty as much before: +This proveth Edward's love and Warwick's honesty. + +WARWICK: +King Lewis, I here protest, in sight of heaven, +And by the hope I have of heavenly bliss, +That I am clear from this misdeed of Edward's, +No more my king, for he dishonours me, +But most himself, if he could see his shame. +Did I forget that by the house of York +My father came untimely to his death? +Did I let pass the abuse done to my niece? +Did I impale him with the regal crown? +Did I put Henry from his native right? +And am I guerdon'd at the last with shame? +Shame on himself! for my desert is honour: +And to repair my honour lost for him, +I here renounce him and return to Henry. +My noble queen, let former grudges pass, +And henceforth I am thy true servitor: +I will revenge his wrong to Lady Bona, +And replant Henry in his former state. + +QUEEN MARGARET: +Warwick, these words have turn'd my hate to love; +And I forgive and quite forget old faults, +And joy that thou becomest King Henry's friend. + +WARWICK: +So much his friend, ay, his unfeigned friend, +That, if King Lewis vouchsafe to furnish us +With some few bands of chosen soldiers, +I'll undertake to land them on our coast +And force the tyrant from his seat by war. +'Tis not his new-made bride shall succor him: +And as for Clarence, as my letters tell me, +He's very likely now to fall from him, +For matching more for wanton lust than honour, +Or than for strength and safety of our country. + +BONA: +Dear brother, how shall Bona be revenged +But by thy help to this distressed queen? + +QUEEN MARGARET: +Renowned prince, how shall poor Henry live, +Unless thou rescue him from foul despair? + +BONA: +My quarrel and this English queen's are one. + +WARWICK: +And mine, fair lady Bona, joins with yours. + +KING LEWIS XI: +And mine with hers, and thine, and Margaret's. +Therefore at last I firmly am resolved +You shall have aid. + +QUEEN MARGARET: +Let me give humble thanks for all at once. + +KING LEWIS XI: +Then, England's messenger, return in post, +And tell false Edward, thy supposed king, +That Lewis of France is sending over masquers +To revel it with him and his new bride: +Thou seest what's past, go fear thy king withal. + +BONA: +Tell him, in hope he'll prove a widower shortly, +I'll wear the willow garland for his sake. + +QUEEN MARGARET: +Tell him, my mourning weeds are laid aside, +And I am ready to put armour on. + +WARWICK: +Tell him from me that he hath done me wrong, +And therefore I'll uncrown him ere't be long. +There's thy reward: be gone. + +KING LEWIS XI: +But, Warwick, +Thou and Oxford, with five thousand men, +Shall cross the seas, and bid false Edward battle; +And, as occasion serves, this noble queen +And prince shall follow with a fresh supply. +Yet, ere thou go, but answer me one doubt, +What pledge have we of thy firm loyalty? + +WARWICK: +This shall assure my constant loyalty, +That if our queen and this young prince agree, +I'll join mine eldest daughter and my joy +To him forthwith in holy wedlock bands. + +QUEEN MARGARET: +Yes, I agree, and thank you for your motion. +Son Edward, she is fair and virtuous, +Therefore delay not, give thy hand to Warwick; +And, with thy hand, thy faith irrevocable, +That only Warwick's daughter shall be thine. + +PRINCE EDWARD: +Yes, I accept her, for she well deserves it; +And here, to pledge my vow, I give my hand. + +KING LEWIS XI: +Why stay we now? These soldiers shall be levied, +And thou, Lord Bourbon, our high admiral, +Shalt waft them over with our royal fleet. +I long till Edward fall by war's mischance, +For mocking marriage with a dame of France. + +WARWICK: +I came from Edward as ambassador, +But I return his sworn and mortal foe: +Matter of marriage was the charge he gave me, +But dreadful war shall answer his demand. +Had he none else to make a stale but me? +Then none but I shall turn his jest to sorrow. +I was the chief that raised him to the crown, +And I'll be chief to bring him down again: +Not that I pity Henry's misery, +But seek revenge on Edward's mockery. +3 KING HENRY VI + +GLOUCESTER: +Now tell me, brother Clarence, what think you +Of this new marriage with the Lady Grey? +Hath not our brother made a worthy choice? + +CLARENCE: +Alas, you know, 'tis far from hence to France; +How could he stay till Warwick made return? + +SOMERSET: +My lords, forbear this talk; here comes the king. + +GLOUCESTER: +And his well-chosen bride. + +CLARENCE: +I mind to tell him plainly what I think. + +KING EDWARD IV: +Now, brother of Clarence, how like you our choice, +That you stand pensive, as half malcontent? + +CLARENCE: +As well as Lewis of France, or the Earl of Warwick, +Which are so weak of courage and in judgment +That they'll take no offence at our abuse. + +KING EDWARD IV: +Suppose they take offence without a cause, +They are but Lewis and Warwick: I am Edward, +Your king and Warwick's, and must have my will. + +GLOUCESTER: +And shall have your will, because our king: +Yet hasty marriage seldom proveth well. + +KING EDWARD IV: +Yea, brother Richard, are you offended too? + +GLOUCESTER: +Not I: +No, God forbid that I should wish them sever'd +Whom God hath join'd together; ay, and 'twere pity +To sunder them that yoke so well together. + +KING EDWARD IV: +Setting your scorns and your mislike aside, +Tell me some reason why the Lady Grey +Should not become my wife and England's queen. +And you too, Somerset and Montague, +Speak freely what you think. + +CLARENCE: +Then this is mine opinion: that King Lewis +Becomes your enemy, for mocking him +About the marriage of the Lady Bona. + +GLOUCESTER: +And Warwick, doing what you gave in charge, +Is now dishonoured by this new marriage. + +KING EDWARD IV: +What if both Lewis and Warwick be appeased +By such invention as I can devise? + +MONTAGUE: +Yet, to have join'd with France in such alliance +Would more have strengthen'd this our commonwealth +'Gainst foreign storms than any home-bred marriage. + +HASTINGS: +Why, knows not Montague that of itself +England is safe, if true within itself? + +MONTAGUE: +But the safer when 'tis back'd with France. + +HASTINGS: +'Tis better using France than trusting France: +Let us be back'd with God and with the seas +Which He hath given for fence impregnable, +And with their helps only defend ourselves; +In them and in ourselves our safety lies. + +CLARENCE: +For this one speech Lord Hastings well deserves +To have the heir of the Lord Hungerford. + +KING EDWARD IV: +Ay, what of that? it was my will and grant; +And for this once my will shall stand for law. + +GLOUCESTER: +And yet methinks your grace hath not done well, +To give the heir and daughter of Lord Scales +Unto the brother of your loving bride; +She better would have fitted me or Clarence: +But in your bride you bury brotherhood. + +CLARENCE: +Or else you would not have bestow'd the heir +Of the Lord Bonville on your new wife's son, +And leave your brothers to go speed elsewhere. + +KING EDWARD IV: +Alas, poor Clarence! is it for a wife +That thou art malcontent? I will provide thee. + +CLARENCE: +In choosing for yourself, you show'd your judgment, +Which being shallow, you give me leave +To play the broker in mine own behalf; +And to that end I shortly mind to leave you. + +KING EDWARD IV: +Leave me, or tarry, Edward will be king, +And not be tied unto his brother's will. + +QUEEN ELIZABETH: +My lords, before it pleased his majesty +To raise my state to title of a queen, +Do me but right, and you must all confess +That I was not ignoble of descent; +And meaner than myself have had like fortune. +But as this title honours me and mine, +So your dislike, to whom I would be pleasing, +Doth cloud my joys with danger and with sorrow. + +KING EDWARD IV: +My love, forbear to fawn upon their frowns: +What danger or what sorrow can befall thee, +So long as Edward is thy constant friend, +And their true sovereign, whom they must obey? +Nay, whom they shall obey, and love thee too, +Unless they seek for hatred at my hands; +Which if they do, yet will I keep thee safe, +And they shall feel the vengeance of my wrath. + +GLOUCESTER: + +KING EDWARD IV: +Now, messenger, what letters or what news +From France? + +Post: +My sovereign liege, no letters; and few words, +But such as I, without your special pardon, +Dare not relate. + +KING EDWARD IV: +Go to, we pardon thee: therefore, in brief, +Tell me their words as near as thou canst guess them. +What answer makes King Lewis unto our letters? + +Post: +At my depart, these were his very words: +'Go tell false Edward, thy supposed king, +That Lewis of France is sending over masquers +To revel it with him and his new bride.' + +KING EDWARD IV: +Is Lewis so brave? belike he thinks me Henry. +But what said Lady Bona to my marriage? + +Post: +These were her words, utter'd with mad disdain: +'Tell him, in hope he'll prove a widower shortly, +I'll wear the willow garland for his sake.' + +KING EDWARD IV: +I blame not her, she could say little less; +She had the wrong. But what said Henry's queen? +For I have heard that she was there in place. + +Post: +'Tell him,' quoth she, 'my mourning weeds are done, +And I am ready to put armour on.' + +KING EDWARD IV: +Belike she minds to play the Amazon. +But what said Warwick to these injuries? + +Post: +He, more incensed against your majesty +Than all the rest, discharged me with these words: +'Tell him from me that he hath done me wrong, +And therefore I'll uncrown him ere't be long.' + +KING EDWARD IV: +Ha! durst the traitor breathe out so proud words? +Well I will arm me, being thus forewarn'd: +They shall have wars and pay for their presumption. +But say, is Warwick friends with Margaret? + +Post: +Ay, gracious sovereign; they are so link'd in +friendship +That young Prince Edward marries Warwick's daughter. + +CLARENCE: +Belike the elder; Clarence will have the younger. +Now, brother king, farewell, and sit you fast, +For I will hence to Warwick's other daughter; +That, though I want a kingdom, yet in marriage +I may not prove inferior to yourself. +You that love me and Warwick, follow me. + +GLOUCESTER: + +KING EDWARD IV: +Clarence and Somerset both gone to Warwick! +Yet am I arm'd against the worst can happen; +And haste is needful in this desperate case. +Pembroke and Stafford, you in our behalf +Go levy men, and make prepare for war; +They are already, or quickly will be landed: +Myself in person will straight follow you. +But, ere I go, Hastings and Montague, +Resolve my doubt. You twain, of all the rest, +Are near to Warwick by blood and by alliance: +Tell me if you love Warwick more than me? +If it be so, then both depart to him; +I rather wish you foes than hollow friends: +But if you mind to hold your true obedience, +Give me assurance with some friendly vow, +That I may never have you in suspect. + +MONTAGUE: +So God help Montague as he proves true! + +HASTINGS: +And Hastings as he favours Edward's cause! + +KING EDWARD IV: +Now, brother Richard, will you stand by us? + +GLOUCESTER: +Ay, in despite of all that shall withstand you. + +KING EDWARD IV: +Why, so! then am I sure of victory. +Now therefore let us hence; and lose no hour, +Till we meet Warwick with his foreign power. +3 KING HENRY VI + +WARWICK: +Trust me, my lord, all hitherto goes well; +The common people by numbers swarm to us. +But see where Somerset and Clarence come! +Speak suddenly, my lords, are we all friends? + +CLARENCE: +Fear not that, my lord. + +WARWICK: +Then, gentle Clarence, welcome unto Warwick; +And welcome, Somerset: I hold it cowardice +To rest mistrustful where a noble heart +Hath pawn'd an open hand in sign of love; +Else might I think that Clarence, Edward's brother, +Were but a feigned friend to our proceedings: +But welcome, sweet Clarence; my daughter shall be thine. +And now what rests but, in night's coverture, +Thy brother being carelessly encamp'd, +His soldiers lurking in the towns about, +And but attended by a simple guard, +We may surprise and take him at our pleasure? +Our scouts have found the adventure very easy: +That as Ulysses and stout Diomede +With sleight and manhood stole to Rhesus' tents, +And brought from thence the Thracian fatal steeds, +So we, well cover'd with the night's black mantle, +At unawares may beat down Edward's guard +And seize himself; I say not, slaughter him, +For I intend but only to surprise him. +You that will follow me to this attempt, +Applaud the name of Henry with your leader. +Why, then, let's on our way in silent sort: +For Warwick and his friends, God and Saint George! +3 KING HENRY VI + +First Watchman: +Come on, my masters, each man take his stand: +The king by this is set him down to sleep. + +Second Watchman: +What, will he not to bed? + +First Watchman: +Why, no; for he hath made a solemn vow +Never to lie and take his natural rest +Till Warwick or himself be quite suppress'd. + +Second Watchman: +To-morrow then belike shall be the day, +If Warwick be so near as men report. + +Third Watchman: +But say, I pray, what nobleman is that +That with the king here resteth in his tent? + +First Watchman: +'Tis the Lord Hastings, the king's chiefest friend. + +Third Watchman: +O, is it so? But why commands the king +That his chief followers lodge in towns about him, +While he himself keeps in the cold field? + +Second Watchman: +'Tis the more honour, because more dangerous. + +Third Watchman: +Ay, but give me worship and quietness; +I like it better than a dangerous honour. +If Warwick knew in what estate he stands, +'Tis to be doubted he would waken him. + +First Watchman: +Unless our halberds did shut up his passage. + +Second Watchman: +Ay, wherefore else guard we his royal tent, +But to defend his person from night-foes? + +WARWICK: +This is his tent; and see where stand his guard. +Courage, my masters! honour now or never! +But follow me, and Edward shall be ours. + +First Watchman: +Who goes there? + +Second Watchman: +Stay, or thou diest! + +SOMERSET: +What are they that fly there? + +WARWICK: +Richard and Hastings: let them go; here is The duke. + +KING EDWARD IV: +The duke! Why, Warwick, when we parted, +Thou call'dst me king. + +WARWICK: +Ay, but the case is alter'd: +When you disgraced me in my embassade, +Then I degraded you from being king, +And come now to create you Duke of York. +Alas! how should you govern any kingdom, +That know not how to use ambassadors, +Nor how to be contented with one wife, +Nor how to use your brothers brotherly, +Nor how to study for the people's welfare, +Nor how to shroud yourself from enemies? + +KING EDWARD IV: +Yea, brother of Clarence, are thou here too? +Nay, then I see that Edward needs must down. +Yet, Warwick, in despite of all mischance, +Of thee thyself and all thy complices, +Edward will always bear himself as king: +Though fortune's malice overthrow my state, +My mind exceeds the compass of her wheel. + +WARWICK: +Then, for his mind, be Edward England's king: +But Henry now shall wear the English crown, +And be true king indeed, thou but the shadow. +My Lord of Somerset, at my request, +See that forthwith Duke Edward be convey'd +Unto my brother, Archbishop of York. +When I have fought with Pembroke and his fellows, +I'll follow you, and tell what answer +Lewis and the Lady Bona send to him. +Now, for a while farewell, good Duke of York. + +KING EDWARD IV: +What fates impose, that men must needs abide; +It boots not to resist both wind and tide. + +OXFORD: +What now remains, my lords, for us to do +But march to London with our soldiers? + +WARWICK: +Ay, that's the first thing that we have to do; +To free King Henry from imprisonment +And see him seated in the regal throne. +3 KING HENRY VI + +RIVERS: +Madam, what makes you in this sudden change? + +QUEEN ELIZABETH: +Why brother Rivers, are you yet to learn +What late misfortune is befall'n King Edward? + +RIVERS: +What! loss of some pitch'd battle against Warwick? + +QUEEN ELIZABETH: +No, but the loss of his own royal person. + +RIVERS: +Then is my sovereign slain? + +QUEEN ELIZABETH: +Ay, almost slain, for he is taken prisoner, +Either betray'd by falsehood of his guard +Or by his foe surprised at unawares: +And, as I further have to understand, +Is new committed to the Bishop of York, +Fell Warwick's brother and by that our foe. + +RIVERS: +These news I must confess are full of grief; +Yet, gracious madam, bear it as you may: +Warwick may lose, that now hath won the day. + +QUEEN ELIZABETH: +Till then fair hope must hinder life's decay. +And I the rather wean me from despair +For love of Edward's offspring in my womb: +This is it that makes me bridle passion +And bear with mildness my misfortune's cross; +Ay, ay, for this I draw in many a tear +And stop the rising of blood-sucking sighs, +Lest with my sighs or tears I blast or drown +King Edward's fruit, true heir to the English crown. + +RIVERS: +But, madam, where is Warwick then become? + +QUEEN ELIZABETH: +I am inform'd that he comes towards London, +To set the crown once more on Henry's head: +Guess thou the rest; King Edward's friends must down, +But, to prevent the tyrant's violence,-- +For trust not him that hath once broken faith,-- +I'll hence forthwith unto the sanctuary, +To save at least the heir of Edward's right: +There shall I rest secure from force and fraud. +Come, therefore, let us fly while we may fly: +If Warwick take us we are sure to die. +3 KING HENRY VI + +GLOUCESTER: +Now, my Lord Hastings and Sir William Stanley, +Leave off to wonder why I drew you hither, +Into this chiefest thicket of the park. +Thus stands the case: you know our king, my brother, +Is prisoner to the bishop here, at whose hands +He hath good usage and great liberty, +And, often but attended with weak guard, +Comes hunting this way to disport himself. +I have advertised him by secret means +That if about this hour he make his way +Under the colour of his usual game, +He shall here find his friends with horse and men +To set him free from his captivity. + +Huntsman: +This way, my lord; for this way lies the game. + +KING EDWARD IV: +Nay, this way, man: see where the huntsmen stand. +Now, brother of Gloucester, Lord Hastings, and the rest, +Stand you thus close, to steal the bishop's deer? + +GLOUCESTER: +Brother, the time and case requireth haste: +Your horse stands ready at the park-corner. + +KING EDWARD IV: +But whither shall we then? + +HASTINGS: +To Lynn, my lord, +And ship from thence to Flanders. + +GLOUCESTER: +Well guess'd, believe me; for that was my meaning. + +KING EDWARD IV: +Stanley, I will requite thy forwardness. + +GLOUCESTER: +But wherefore stay we? 'tis no time to talk. + +KING EDWARD IV: +Huntsman, what say'st thou? wilt thou go along? + +Huntsman: +Better do so than tarry and be hang'd. + +GLOUCESTER: +Come then, away; let's ha' no more ado. + +KING EDWARD IV: +Bishop, farewell: shield thee from Warwick's frown; +And pray that I may repossess the crown. +3 KING HENRY VI + +KING HENRY VI: +Master lieutenant, now that God and friends +Have shaken Edward from the regal seat, +And turn'd my captive state to liberty, +My fear to hope, my sorrows unto joys, +At our enlargement what are thy due fees? + +Lieutenant: +Subjects may challenge nothing of their sovereigns; +But if an humble prayer may prevail, +I then crave pardon of your majesty. + +KING HENRY VI: +For what, lieutenant? for well using me? +Nay, be thou sure I'll well requite thy kindness, +For that it made my imprisonment a pleasure; +Ay, such a pleasure as incaged birds +Conceive when after many moody thoughts +At last by notes of household harmony +They quite forget their loss of liberty. +But, Warwick, after God, thou set'st me free, +And chiefly therefore I thank God and thee; +He was the author, thou the instrument. +Therefore, that I may conquer fortune's spite +By living low, where fortune cannot hurt me, +And that the people of this blessed land +May not be punish'd with my thwarting stars, +Warwick, although my head still wear the crown, +I here resign my government to thee, +For thou art fortunate in all thy deeds. + +WARWICK: +Your grace hath still been famed for virtuous; +And now may seem as wise as virtuous, +By spying and avoiding fortune's malice, +For few men rightly temper with the stars: +Yet in this one thing let me blame your grace, +For choosing me when Clarence is in place. + +CLARENCE: +No, Warwick, thou art worthy of the sway, +To whom the heavens in thy nativity +Adjudged an olive branch and laurel crown, +As likely to be blest in peace and war; +And therefore I yield thee my free consent. + +WARWICK: +And I choose Clarence only for protector. + +KING HENRY VI: +Warwick and Clarence give me both your hands: +Now join your hands, and with your hands your hearts, +That no dissension hinder government: +I make you both protectors of this land, +While I myself will lead a private life +And in devotion spend my latter days, +To sin's rebuke and my Creator's praise. + +WARWICK: +What answers Clarence to his sovereign's will? + +CLARENCE: +That he consents, if Warwick yield consent; +For on thy fortune I repose myself. + +WARWICK: +Why, then, though loath, yet must I be content: +We'll yoke together, like a double shadow +To Henry's body, and supply his place; +I mean, in bearing weight of government, +While he enjoys the honour and his ease. +And, Clarence, now then it is more than needful +Forthwith that Edward be pronounced a traitor, +And all his lands and goods be confiscate. + +CLARENCE: +What else? and that succession be determined. + +WARWICK: +Ay, therein Clarence shall not want his part. + +KING HENRY VI: +But, with the first of all your chief affairs, +Let me entreat, for I command no more, +That Margaret your queen and my son Edward +Be sent for, to return from France with speed; +For, till I see them here, by doubtful fear +My joy of liberty is half eclipsed. + +CLARENCE: +It shall be done, my sovereign, with all speed. + +KING HENRY VI: +My Lord of Somerset, what youth is that, +Of whom you seem to have so tender care? + +SOMERSET: +My liege, it is young Henry, earl of Richmond. + +KING HENRY VI: +Come hither, England's hope. +If secret powers +Suggest but truth to my divining thoughts, +This pretty lad will prove our country's bliss. +His looks are full of peaceful majesty, +His head by nature framed to wear a crown, +His hand to wield a sceptre, and himself +Likely in time to bless a regal throne. +Make much of him, my lords, for this is he +Must help you more than you are hurt by me. + +WARWICK: +What news, my friend? + +Post: +That Edward is escaped from your brother, +And fled, as he hears since, to Burgundy. + +WARWICK: +Unsavoury news! but how made he escape? + +Post: +He was convey'd by Richard Duke of Gloucester +And the Lord Hastings, who attended him +In secret ambush on the forest side +And from the bishop's huntsmen rescued him; +For hunting was his daily exercise. + +WARWICK: +My brother was too careless of his charge. +But let us hence, my sovereign, to provide +A salve for any sore that may betide. + +SOMERSET: +My lord, I like not of this flight of Edward's; +For doubtless Burgundy will yield him help, +And we shall have more wars before 't be long. +As Henry's late presaging prophecy +Did glad my heart with hope of this young Richmond, +So doth my heart misgive me, in these conflicts +What may befall him, to his harm and ours: +Therefore, Lord Oxford, to prevent the worst, +Forthwith we'll send him hence to Brittany, +Till storms be past of civil enmity. + +OXFORD: +Ay, for if Edward repossess the crown, +'Tis like that Richmond with the rest shall down. + +SOMERSET: +It shall be so; he shall to Brittany. +Come, therefore, let's about it speedily. +3 KING HENRY VI + +KING EDWARD IV: +Now, brother Richard, Lord Hastings, and the rest, +Yet thus far fortune maketh us amends, +And says that once more I shall interchange +My waned state for Henry's regal crown. +Well have we pass'd and now repass'd the seas +And brought desired help from Burgundy: +What then remains, we being thus arrived +From Ravenspurgh haven before the gates of York, +But that we enter, as into our dukedom? + +GLOUCESTER: +The gates made fast! Brother, I like not this; +For many men that stumble at the threshold +Are well foretold that danger lurks within. + +KING EDWARD IV: +Tush, man, abodements must not now affright us: +By fair or foul means we must enter in, +For hither will our friends repair to us. + +HASTINGS: +My liege, I'll knock once more to summon them. + +Mayor: +My lords, we were forewarned of your coming, +And shut the gates for safety of ourselves; +For now we owe allegiance unto Henry. + +KING EDWARD IV: +But, master mayor, if Henry be your king, +Yet Edward at the least is Duke of York. + +Mayor: +True, my good lord; I know you for no less. + +KING EDWARD IV: +Why, and I challenge nothing but my dukedom, +As being well content with that alone. + +GLOUCESTER: + +HASTINGS: +Why, master mayor, why stand you in a doubt? +Open the gates; we are King Henry's friends. + +Mayor: +Ay, say you so? the gates shall then be open'd. + +GLOUCESTER: +A wise stout captain, and soon persuaded! + +HASTINGS: +The good old man would fain that all were well, +So 'twere not 'long of him; but being enter'd, +I doubt not, I, but we shall soon persuade +Both him and all his brothers unto reason. + +KING EDWARD IV: +So, master mayor: these gates must not be shut +But in the night or in the time of war. +What! fear not, man, but yield me up the keys; +For Edward will defend the town and thee, +And all those friends that deign to follow me. + +GLOUCESTER: +Brother, this is Sir John Montgomery, +Our trusty friend, unless I be deceived. + +KING EDWARD IV: +Welcome, Sir John! But why come you in arms? + +MONTAGUE: +To help King Edward in his time of storm, +As every loyal subject ought to do. + +KING EDWARD IV: +Thanks, good Montgomery; but we now forget +Our title to the crown and only claim +Our dukedom till God please to send the rest. + +MONTAGUE: +Then fare you well, for I will hence again: +I came to serve a king and not a duke. +Drummer, strike up, and let us march away. + +KING EDWARD IV: +Nay, stay, Sir John, awhile, and we'll debate +By what safe means the crown may be recover'd. + +MONTAGUE: +What talk you of debating? in few words, +If you'll not here proclaim yourself our king, +I'll leave you to your fortune and be gone +To keep them back that come to succor you: +Why shall we fight, if you pretend no title? + +GLOUCESTER: +Why, brother, wherefore stand you on nice points? + +KING EDWARD IV: +When we grow stronger, then we'll make our claim: +Till then, 'tis wisdom to conceal our meaning. + +HASTINGS: +Away with scrupulous wit! now arms must rule. + +GLOUCESTER: +And fearless minds climb soonest unto crowns. +Brother, we will proclaim you out of hand: +The bruit thereof will bring you many friends. + +KING EDWARD IV: +Then be it as you will; for 'tis my right, +And Henry but usurps the diadem. + +MONTAGUE: +Ay, now my sovereign speaketh like himself; +And now will I be Edward's champion. + +HASTINGS: +Sound trumpet; Edward shall be here proclaim'd: +Come, fellow-soldier, make thou proclamation. + +Soldier: +Edward the Fourth, by the grace of God, king of +England and France, and lord of Ireland, &c. + +MONTAGUE: +And whosoe'er gainsays King Edward's right, +By this I challenge him to single fight. + +All: +Long live Edward the Fourth! + +KING EDWARD IV: +Thanks, brave Montgomery; and thanks unto you all: +If fortune serve me, I'll requite this kindness. +Now, for this night, let's harbour here in York; +And when the morning sun shall raise his car +Above the border of this horizon, +We'll forward towards Warwick and his mates; +For well I wot that Henry is no soldier. +Ah, froward Clarence! how evil it beseems thee +To flatter Henry and forsake thy brother! +Yet, as we may, we'll meet both thee and Warwick. +Come on, brave soldiers: doubt not of the day, +And, that once gotten, doubt not of large pay. +3 KING HENRY VI + +WARWICK: +What counsel, lords? Edward from Belgia, +With hasty Germans and blunt Hollanders, +Hath pass'd in safety through the narrow seas, +And with his troops doth march amain to London; +And many giddy people flock to him. + +KING HENRY VI: +Let's levy men, and beat him back again. + +CLARENCE: +A little fire is quickly trodden out; +Which, being suffer'd, rivers cannot quench. + +WARWICK: +In Warwickshire I have true-hearted friends, +Not mutinous in peace, yet bold in war; +Those will I muster up: and thou, son Clarence, +Shalt stir up in Suffolk, Norfolk, and in Kent, +The knights and gentlemen to come with thee: +Thou, brother Montague, in Buckingham, +Northampton and in Leicestershire, shalt find +Men well inclined to hear what thou command'st: +And thou, brave Oxford, wondrous well beloved, +In Oxfordshire shalt muster up thy friends. +My sovereign, with the loving citizens, +Like to his island girt in with the ocean, +Or modest Dian circled with her nymphs, +Shall rest in London till we come to him. +Fair lords, take leave and stand not to reply. +Farewell, my sovereign. + +KING HENRY VI: +Farewell, my Hector, and my Troy's true hope. + +CLARENCE: +In sign of truth, I kiss your highness' hand. + +KING HENRY VI: +Well-minded Clarence, be thou fortunate! + +MONTAGUE: +Comfort, my lord; and so I take my leave. + +OXFORD: +And thus I seal my truth, and bid adieu. + +KING HENRY VI: +Sweet Oxford, and my loving Montague, +And all at once, once more a happy farewell. + +WARWICK: +Farewell, sweet lords: let's meet at Coventry. + +KING HENRY VI: +Here at the palace I will rest awhile. +Cousin of Exeter, what thinks your lordship? +Methinks the power that Edward hath in field +Should not be able to encounter mine. + +EXETER: +The doubt is that he will seduce the rest. + +KING HENRY VI: +That's not my fear; my meed hath got me fame: +I have not stopp'd mine ears to their demands, +Nor posted off their suits with slow delays; +My pity hath been balm to heal their wounds, +My mildness hath allay'd their swelling griefs, +My mercy dried their water-flowing tears; +I have not been desirous of their wealth, +Nor much oppress'd them with great subsidies. +Nor forward of revenge, though they much err'd: +Then why should they love Edward more than me? +No, Exeter, these graces challenge grace: +And when the lion fawns upon the lamb, +The lamb will never cease to follow him. + +EXETER: +Hark, hark, my lord! what shouts are these? + +KING EDWARD IV: +Seize on the shame-faced Henry, bear him hence; +And once again proclaim us King of England. +You are the fount that makes small brooks to flow: +Now stops thy spring; my sea sha$l suck them dry, +And swell so much the higher by their ebb. +Hence with him to the Tower; let him not speak. +And, lords, towards Coventry bend we our course +Where peremptory Warwick now remains: +The sun shines hot; and, if we use delay, +Cold biting winter mars our hoped-for hay. + +GLOUCESTER: +Away betimes, before his forces join, +And take the great-grown traitor unawares: +Brave warriors, march amain towards Coventry. +3 KING HENRY VI + +WARWICK: +Where is the post that came from valiant Oxford? +How far hence is thy lord, mine honest fellow? + +First Messenger: +By this at Dunsmore, marching hitherward. + +WARWICK: +How far off is our brother Montague? +Where is the post that came from Montague? + +Second Messenger: +By this at Daintry, with a puissant troop. + +WARWICK: +Say, Somerville, what says my loving son? +And, by thy guess, how nigh is Clarence now? + +SOMERSET: +At Southam I did leave him with his forces, +And do expect him here some two hours hence. + +WARWICK: +Then Clarence is at hand, I hear his drum. + +SOMERSET: +It is not his, my lord; here Southam lies: +The drum your honour hears marcheth from Warwick. + +WARWICK: +Who should that be? belike, unlook'd-for friends. + +SOMERSET: +They are at hand, and you shall quickly know. + +KING EDWARD IV: +Go, trumpet, to the walls, and sound a parle. + +GLOUCESTER: +See how the surly Warwick mans the wall! + +WARWICK: +O unbid spite! is sportful Edward come? +Where slept our scouts, or how are they seduced, +That we could hear no news of his repair? + +KING EDWARD IV: +Now, Warwick, wilt thou ope the city gates, +Speak gentle words and humbly bend thy knee, +Call Edward king and at his hands beg mercy? +And he shall pardon thee these outrages. + +WARWICK: +Nay, rather, wilt thou draw thy forces hence, +Confess who set thee up and pluck'd thee own, +Call Warwick patron and be penitent? +And thou shalt still remain the Duke of York. + +GLOUCESTER: +I thought, at least, he would have said the king; +Or did he make the jest against his will? + +WARWICK: +Is not a dukedom, sir, a goodly gift? + +GLOUCESTER: +Ay, by my faith, for a poor earl to give: +I'll do thee service for so good a gift. + +WARWICK: +'Twas I that gave the kingdom to thy brother. + +KING EDWARD IV: +Why then 'tis mine, if but by Warwick's gift. + +WARWICK: +Thou art no Atlas for so great a weight: +And weakling, Warwick takes his gift again; +And Henry is my king, Warwick his subject. + +KING EDWARD IV: +But Warwick's king is Edward's prisoner: +And, gallant Warwick, do but answer this: +What is the body when the head is off? + +GLOUCESTER: +Alas, that Warwick had no more forecast, +But, whiles he thought to steal the single ten, +The king was slily finger'd from the deck! +You left poor Henry at the Bishop's palace, +And, ten to one, you'll meet him in the Tower. + +EDWARD: +'Tis even so; yet you are Warwick still. + +GLOUCESTER: +Come, Warwick, take the time; kneel down, kneel down: +Nay, when? strike now, or else the iron cools. + +WARWICK: +I had rather chop this hand off at a blow, +And with the other fling it at thy face, +Than bear so low a sail, to strike to thee. + +KING EDWARD IV: +Sail how thou canst, have wind and tide thy friend, +This hand, fast wound about thy coal-black hair +Shall, whiles thy head is warm and new cut off, +Write in the dust this sentence with thy blood, +'Wind-changing Warwick now can change no more.' + +WARWICK: +O cheerful colours! see where Oxford comes! + +OXFORD: +Oxford, Oxford, for Lancaster! + +GLOUCESTER: +The gates are open, let us enter too. + +KING EDWARD IV: +So other foes may set upon our backs. +Stand we in good array; for they no doubt +Will issue out again and bid us battle: +If not, the city being but of small defence, +We'll quickly rouse the traitors in the same. + +WARWICK: +O, welcome, Oxford! for we want thy help. + +MONTAGUE: +Montague, Montague, for Lancaster! + +GLOUCESTER: +Thou and thy brother both shall buy this treason +Even with the dearest blood your bodies bear. + +KING EDWARD IV: +The harder match'd, the greater victory: +My mind presageth happy gain and conquest. + +SOMERSET: +Somerset, Somerset, for Lancaster! + +GLOUCESTER: +Two of thy name, both Dukes of Somerset, +Have sold their lives unto the house of York; +And thou shalt be the third if this sword hold. + +WARWICK: +And lo, where George of Clarence sweeps along, +Of force enough to bid his brother battle; +With whom an upright zeal to right prevails +More than the nature of a brother's love! +Come, Clarence, come; thou wilt, if Warwick call. + +CLARENCE: +Father of Warwick, know you what this means? +Look here, I throw my infamy at thee +I will not ruinate my father's house, +Who gave his blood to lime the stones together, +And set up Lancaster. Why, trow'st thou, Warwick, +That Clarence is so harsh, so blunt, unnatural, +To bend the fatal instruments of war +Against his brother and his lawful king? +Perhaps thou wilt object my holy oath: +To keep that oath were more impiety +Than Jephthah's, when he sacrificed his daughter. +I am so sorry for my trespass made +That, to deserve well at my brother's hands, +I here proclaim myself thy mortal foe, +With resolution, wheresoe'er I meet thee-- +As I will meet thee, if thou stir abroad-- +To plague thee for thy foul misleading me. +And so, proud-hearted Warwick, I defy thee, +And to my brother turn my blushing cheeks. +Pardon me, Edward, I will make amends: +And, Richard, do not frown upon my faults, +For I will henceforth be no more unconstant. + +KING EDWARD IV: +Now welcome more, and ten times more beloved, +Than if thou never hadst deserved our hate. + +GLOUCESTER: +Welcome, good Clarence; this is brotherlike. + +WARWICK: +O passing traitor, perjured and unjust! + +KING EDWARD IV: +What, Warwick, wilt thou leave the town and fight? +Or shall we beat the stones about thine ears? + +WARWICK: +Alas, I am not coop'd here for defence! +I will away towards Barnet presently, +And bid thee battle, Edward, if thou darest. + +KING EDWARD IV: +Yes, Warwick, Edward dares, and leads the way. +Lords, to the field; Saint George and victory! +3 KING HENRY VI + +KING EDWARD IV: +So, lie thou there: die thou, and die our fear; +For Warwick was a bug that fear'd us all. +Now, Montague, sit fast; I seek for thee, +That Warwick's bones may keep thine company. + +WARWICK: +Ah, who is nigh? come to me, friend or foe, +And tell me who is victor, York or Warwick? +Why ask I that? my mangled body shows, +My blood, my want of strength, my sick heart shows. +That I must yield my body to the earth +And, by my fall, the conquest to my foe. +Thus yields the cedar to the axe's edge, +Whose arms gave shelter to the princely eagle, +Under whose shade the ramping lion slept, +Whose top-branch overpeer'd Jove's spreading tree +And kept low shrubs from winter's powerful wind. +These eyes, that now are dimm'd with death's black veil, +Have been as piercing as the mid-day sun, +To search the secret treasons of the world: +The wrinkles in my brows, now filled with blood, +Were liken'd oft to kingly sepulchres; +For who lived king, but I could dig his grave? +And who durst mine when Warwick bent his brow? +Lo, now my glory smear'd in dust and blood! +My parks, my walks, my manors that I had. +Even now forsake me, and of all my lands +Is nothing left me but my body's length. +Why, what is pomp, rule, reign, but earth and dust? +And, live we how we can, yet die we must. + +SOMERSET: +Ah, Warwick, Warwick! wert thou as we are. +We might recover all our loss again; +The queen from France hath brought a puissant power: +Even now we heard the news: ah, could'st thou fly! + +WARWICK: +Why, then I would not fly. Ah, Montague, +If thou be there, sweet brother, take my hand. +And with thy lips keep in my soul awhile! +Thou lovest me not; for, brother, if thou didst, +Thy tears would wash this cold congealed blood +That glues my lips and will not let me speak. +Come quickly, Montague, or I am dead. + +SOMERSET: +Ah, Warwick! Montague hath breathed his last; +And to the latest gasp cried out for Warwick, +And said 'Commend me to my valiant brother.' +And more he would have said, and more he spoke, +Which sounded like a clamour in a vault, +That mought not be distinguished; but at last +I well might hear, delivered with a groan, +'O, farewell, Warwick!' + +WARWICK: +Sweet rest his soul! Fly, lords, and save yourselves; +For Warwick bids you all farewell to meet in heaven. + +OXFORD: +Away, away, to meet the queen's great power! +3 KING HENRY VI + +KING EDWARD IV: +Thus far our fortune keeps an upward course, +And we are graced with wreaths of victory. +But, in the midst of this bright-shining day, +I spy a black, suspicious, threatening cloud, +That will encounter with our glorious sun, +Ere he attain his easeful western bed: +I mean, my lords, those powers that the queen +Hath raised in Gallia have arrived our coast +And, as we hear, march on to fight with us. + +CLARENCE: +A little gale will soon disperse that cloud +And blow it to the source from whence it came: +The very beams will dry those vapours up, +For every cloud engenders not a storm. + +GLOUCESTER: +The queen is valued thirty thousand strong, +And Somerset, with Oxford fled to her: +If she have time to breathe be well assured +Her faction will be full as strong as ours. + +KING EDWARD IV: +We are advertised by our loving friends +That they do hold their course toward Tewksbury: +We, having now the best at Barnet field, +Will thither straight, for willingness rids way; +And, as we march, our strength will be augmented +In every county as we go along. +Strike up the drum; cry 'Courage!' and away. +3 KING HENRY VI + +QUEEN MARGARET: +Great lords, wise men ne'er sit and wail their loss, +But cheerly seek how to redress their harms. +What though the mast be now blown overboard, +The cable broke, the holding-anchor lost, +And half our sailors swallow'd in the flood? +Yet lives our pilot still. Is't meet that he +Should leave the helm and like a fearful lad +With tearful eyes add water to the sea +And give more strength to that which hath too much, +Whiles, in his moan, the ship splits on the rock, +Which industry and courage might have saved? +Ah, what a shame! ah, what a fault were this! +Say Warwick was our anchor; what of that? +And Montague our topmost; what of him? +Our slaughter'd friends the tackles; what of these? +Why, is not Oxford here another anchor? +And Somerset another goodly mast? +The friends of France our shrouds and tacklings? +And, though unskilful, why not Ned and I +For once allow'd the skilful pilot's charge? +We will not from the helm to sit and weep, +But keep our course, though the rough wind say no, +From shelves and rocks that threaten us with wreck. +As good to chide the waves as speak them fair. +And what is Edward but ruthless sea? +What Clarence but a quicksand of deceit? +And Richard but a ragged fatal rock? +All these the enemies to our poor bark. +Say you can swim; alas, 'tis but a while! +Tread on the sand; why, there you quickly sink: +Bestride the rock; the tide will wash you off, +Or else you famish; that's a threefold death. +This speak I, lords, to let you understand, +If case some one of you would fly from us, +That there's no hoped-for mercy with the brothers +More than with ruthless waves, with sands and rocks. +Why, courage then! what cannot be avoided +'Twere childish weakness to lament or fear. + +PRINCE EDWARD: +Methinks a woman of this valiant spirit +Should, if a coward heard her speak these words, +Infuse his breast with magnanimity +And make him, naked, foil a man at arms. +I speak not this as doubting any here +For did I but suspect a fearful man +He should have leave to go away betimes, +Lest in our need he might infect another +And make him of like spirit to himself. +If any such be here--as God forbid!-- +Let him depart before we need his help. + +OXFORD: +Women and children of so high a courage, +And warriors faint! why, 'twere perpetual shame. +O brave young prince! thy famous grandfather +Doth live again in thee: long mayst thou live +To bear his image and renew his glories! + +SOMERSET: +And he that will not fight for such a hope. +Go home to bed, and like the owl by day, +If he arise, be mock'd and wonder'd at. + +QUEEN MARGARET: +Thanks, gentle Somerset; sweet Oxford, thanks. + +PRINCE EDWARD: +And take his thanks that yet hath nothing else. + +Messenger: +Prepare you, lords, for Edward is at hand. +Ready to fight; therefore be resolute. + +OXFORD: +I thought no less: it is his policy +To haste thus fast, to find us unprovided. + +SOMERSET: +But he's deceived; we are in readiness. + +QUEEN MARGARET: +This cheers my heart, to see your forwardness. + +OXFORD: +Here pitch our battle; hence we will not budge. + +KING EDWARD IV: +Brave followers, yonder stands the thorny wood, +Which, by the heavens' assistance and your strength, +Must by the roots be hewn up yet ere night. +I need not add more fuel to your fire, +For well I wot ye blaze to burn them out +Give signal to the fight, and to it, lords! + +QUEEN MARGARET: +Lords, knights, and gentlemen, what I should say +My tears gainsay; for every word I speak, +Ye see, I drink the water of mine eyes. +Therefore, no more but this: Henry, your sovereign, +Is prisoner to the foe; his state usurp'd, +His realm a slaughter-house, his subjects slain, +His statutes cancell'd and his treasure spent; +And yonder is the wolf that makes this spoil. +You fight in justice: then, in God's name, lords, +Be valiant and give signal to the fight. +3 KING HENRY VI + +KING EDWARD IV: +Now here a period of tumultuous broils. +Away with Oxford to Hames Castle straight: +For Somerset, off with his guilty head. +Go, bear them hence; I will not hear them speak. + +OXFORD: +For my part, I'll not trouble thee with words. + +SOMERSET: +Nor I, but stoop with patience to my fortune. + +QUEEN MARGARET: +So part we sadly in this troublous world, +To meet with joy in sweet Jerusalem. + +KING EDWARD IV: +Is proclamation made, that who finds Edward +Shall have a high reward, and he his life? + +GLOUCESTER: +It is: and lo, where youthful Edward comes! + +KING EDWARD IV: +Bring forth the gallant, let us hear him speak. +What! can so young a thorn begin to prick? +Edward, what satisfaction canst thou make +For bearing arms, for stirring up my subjects, +And all the trouble thou hast turn'd me to? + +PRINCE EDWARD: +Speak like a subject, proud ambitious York! +Suppose that I am now my father's mouth; +Resign thy chair, and where I stand kneel thou, +Whilst I propose the selfsame words to thee, +Which traitor, thou wouldst have me answer to. + +QUEEN MARGARET: +Ah, that thy father had been so resolved! + +GLOUCESTER: +That you might still have worn the petticoat, +And ne'er have stol'n the breech from Lancaster. + +PRINCE EDWARD: +Let AEsop fable in a winter's night; +His currish riddles sort not with this place. + +GLOUCESTER: +By heaven, brat, I'll plague ye for that word. + +QUEEN MARGARET: +Ay, thou wast born to be a plague to men. + +GLOUCESTER: +For God's sake, take away this captive scold. + +PRINCE EDWARD: +Nay, take away this scolding crookback rather. + +KING EDWARD IV: +Peace, wilful boy, or I will charm your tongue. + +CLARENCE: +Untutor'd lad, thou art too malapert. + +PRINCE EDWARD: +I know my duty; you are all undutiful: +Lascivious Edward, and thou perjured George, +And thou mis-shapen Dick, I tell ye all +I am your better, traitors as ye are: +And thou usurp'st my father's right and mine. + +KING EDWARD IV: +Take that, thou likeness of this railer here. + +GLOUCESTER: +Sprawl'st thou? take that, to end thy agony. + +CLARENCE: +And there's for twitting me with perjury. + +QUEEN MARGARET: +O, kill me too! + +GLOUCESTER: +Marry, and shall. + +KING EDWARD IV: +Hold, Richard, hold; for we have done too much. + +GLOUCESTER: +Why should she live, to fill the world with words? + +KING EDWARD IV: +What, doth she swoon? use means for her recovery. + +GLOUCESTER: +Clarence, excuse me to the king my brother; +I'll hence to London on a serious matter: +Ere ye come there, be sure to hear some news. + +CLARENCE: +What? what? + +GLOUCESTER: +The Tower, the Tower. + +QUEEN MARGARET: +O Ned, sweet Ned! speak to thy mother, boy! +Canst thou not speak? O traitors! murderers! +They that stabb'd Caesar shed no blood at all, +Did not offend, nor were not worthy blame, +If this foul deed were by to equal it: +He was a man; this, in respect, a child: +And men ne'er spend their fury on a child. +What's worse than murderer, that I may name it? +No, no, my heart will burst, and if I speak: +And I will speak, that so my heart may burst. +Butchers and villains! bloody cannibals! +How sweet a plant have you untimely cropp'd! +You have no children, butchers! if you had, +The thought of them would have stirr'd up remorse: +But if you ever chance to have a child, +Look in his youth to have him so cut off +As, deathmen, you have rid this sweet young prince! + +KING EDWARD IV: +Away with her; go, bear her hence perforce. + +QUEEN MARGARET: +Nay, never bear me hence, dispatch me here, +Here sheathe thy sword, I'll pardon thee my death: +What, wilt thou not? then, Clarence, do it thou. + +CLARENCE: +By heaven, I will not do thee so much ease. + +QUEEN MARGARET: +Good Clarence, do; sweet Clarence, do thou do it. + +CLARENCE: +Didst thou not hear me swear I would not do it? + +QUEEN MARGARET: +Ay, but thou usest to forswear thyself: +'Twas sin before, but now 'tis charity. +What, wilt thou not? Where is that devil's butcher, +Hard-favour'd Richard? Richard, where art thou? +Thou art not here: murder is thy alms-deed; +Petitioners for blood thou ne'er put'st back. + +KING EDWARD IV: +Away, I say; I charge ye, bear her hence. + +QUEEN MARGARET: +So come to you and yours, as to this Prince! + +KING EDWARD IV: +Where's Richard gone? + +CLARENCE: +To London, all in post; and, as I guess, +To make a bloody supper in the Tower. + +KING EDWARD IV: +He's sudden, if a thing comes in his head. +Now march we hence: discharge the common sort +With pay and thanks, and let's away to London +And see our gentle queen how well she fares: +By this, I hope, she hath a son for me. +3 KING HENRY VI + +GLOUCESTER: +Good day, my lord. What, at your book so hard? + +KING HENRY VI: +Ay, my good lord:--my lord, I should say rather; +'Tis sin to flatter; 'good' was little better: +'Good Gloucester' and 'good devil' were alike, +And both preposterous; therefore, not 'good lord.' + +GLOUCESTER: +Sirrah, leave us to ourselves: we must confer. + +KING HENRY VI: +So flies the reckless shepherd from the wolf; +So first the harmless sheep doth yield his fleece +And next his throat unto the butcher's knife. +What scene of death hath Roscius now to act? + +GLOUCESTER: +Suspicion always haunts the guilty mind; +The thief doth fear each bush an officer. + +KING HENRY VI: +The bird that hath been limed in a bush, +With trembling wings misdoubteth every bush; +And I, the hapless male to one sweet bird, +Have now the fatal object in my eye +Where my poor young was limed, was caught and kill'd. + +GLOUCESTER: +Why, what a peevish fool was that of Crete, +That taught his son the office of a fowl! +An yet, for all his wings, the fool was drown'd. + +KING HENRY VI: +I, Daedalus; my poor boy, Icarus; +Thy father, Minos, that denied our course; +The sun that sear'd the wings of my sweet boy +Thy brother Edward, and thyself the sea +Whose envious gulf did swallow up his life. +Ah, kill me with thy weapon, not with words! +My breast can better brook thy dagger's point +Than can my ears that tragic history. +But wherefore dost thou come? is't for my life? + +GLOUCESTER: +Think'st thou I am an executioner? + +KING HENRY VI: +A persecutor, I am sure, thou art: +If murdering innocents be executing, +Why, then thou art an executioner. + +GLOUCESTER: +Thy son I kill'd for his presumption. + +KING HENRY VI: +Hadst thou been kill'd when first thou didst presume, +Thou hadst not lived to kill a son of mine. +And thus I prophesy, that many a thousand, +Which now mistrust no parcel of my fear, +And many an old man's sigh and many a widow's, +And many an orphan's water-standing eye-- +Men for their sons, wives for their husbands, +And orphans for their parents timeless death-- +Shall rue the hour that ever thou wast born. +The owl shriek'd at thy birth,--an evil sign; +The night-crow cried, aboding luckless time; +Dogs howl'd, and hideous tempest shook down trees; +The raven rook'd her on the chimney's top, +And chattering pies in dismal discords sung. +Thy mother felt more than a mother's pain, +And, yet brought forth less than a mother's hope, +To wit, an indigested and deformed lump, +Not like the fruit of such a goodly tree. +Teeth hadst thou in thy head when thou wast born, +To signify thou camest to bite the world: +And, if the rest be true which I have heard, +Thou camest-- + +GLOUCESTER: +I'll hear no more: die, prophet in thy speech: +For this amongst the rest, was I ordain'd. + +KING HENRY VI: +Ay, and for much more slaughter after this. +God forgive my sins, and pardon thee! + +GLOUCESTER: +What, will the aspiring blood of Lancaster +Sink in the ground? I thought it would have mounted. +See how my sword weeps for the poor king's death! +O, may such purple tears be alway shed +From those that wish the downfall of our house! +If any spark of life be yet remaining, +Down, down to hell; and say I sent thee thither: +I, that have neither pity, love, nor fear. +Indeed, 'tis true that Henry told me of; +For I have often heard my mother say +I came into the world with my legs forward: +Had I not reason, think ye, to make haste, +And seek their ruin that usurp'd our right? +The midwife wonder'd and the women cried +'O, Jesus bless us, he is born with teeth!' +And so I was; which plainly signified +That I should snarl and bite and play the dog. +Then, since the heavens have shaped my body so, +Let hell make crook'd my mind to answer it. +I have no brother, I am like no brother; +And this word 'love,' which graybeards call divine, +Be resident in men like one another +And not in me: I am myself alone. +Clarence, beware; thou keep'st me from the light: +But I will sort a pitchy day for thee; +For I will buz abroad such prophecies +That Edward shall be fearful of his life, +And then, to purge his fear, I'll be thy death. +King Henry and the prince his son are gone: +Clarence, thy turn is next, and then the rest, +Counting myself but bad till I be best. +I'll throw thy body in another room +And triumph, Henry, in thy day of doom. +3 KING HENRY VI + +KING EDWARD IV: +Once more we sit in England's royal throne, +Re-purchased with the blood of enemies. +What valiant foemen, like to autumn's corn, +Have we mow'd down, in tops of all their pride! +Three Dukes of Somerset, threefold renown'd +For hardy and undoubted champions; +Two Cliffords, as the father and the son, +And two Northumberlands; two braver men +Ne'er spurr'd their coursers at the trumpet's sound; +With them, the two brave bears, Warwick and Montague, +That in their chains fetter'd the kingly lion +And made the forest tremble when they roar'd. +Thus have we swept suspicion from our seat +And made our footstool of security. +Come hither, Bess, and let me kiss my boy. +Young Ned, for thee, thine uncles and myself +Have in our armours watch'd the winter's night, +Went all afoot in summer's scalding heat, +That thou mightst repossess the crown in peace; +And of our labours thou shalt reap the gain. + +GLOUCESTER: + +KING EDWARD IV: +Clarence and Gloucester, love my lovely queen; +And kiss your princely nephew, brothers both. + +CLARENCE: +The duty that I owe unto your majesty +I seal upon the lips of this sweet babe. + +QUEEN ELIZABETH: +Thanks, noble Clarence; worthy brother, thanks. + +GLOUCESTER: +And, that I love the tree from whence thou sprang'st, +Witness the loving kiss I give the fruit. + +KING EDWARD IV: +Now am I seated as my soul delights, +Having my country's peace and brothers' loves. + +CLARENCE: +What will your grace have done with Margaret? +Reignier, her father, to the king of France +Hath pawn'd the Sicils and Jerusalem, +And hither have they sent it for her ransom. + +KING EDWARD IV: +Away with her, and waft her hence to France. +And now what rests but that we spend the time +With stately triumphs, mirthful comic shows, +Such as befits the pleasure of the court? +Sound drums and trumpets! farewell sour annoy! +For here, I hope, begins our lasting joy. + +ARCHIDAMUS: +If you shall chance, Camillo, to visit Bohemia, on +the like occasion whereon my services are now on +foot, you shall see, as I have said, great +difference betwixt our Bohemia and your Sicilia. + +CAMILLO: +I think, this coming summer, the King of Sicilia +means to pay Bohemia the visitation which he justly owes him. + +ARCHIDAMUS: +Wherein our entertainment shall shame us we will be +justified in our loves; for indeed-- + +CAMILLO: +Beseech you,-- + +ARCHIDAMUS: +Verily, I speak it in the freedom of my knowledge: +we cannot with such magnificence--in so rare--I know +not what to say. We will give you sleepy drinks, +that your senses, unintelligent of our insufficience, +may, though they cannot praise us, as little accuse +us. + +CAMILLO: +You pay a great deal too dear for what's given freely. + +ARCHIDAMUS: +Believe me, I speak as my understanding instructs me +and as mine honesty puts it to utterance. + +CAMILLO: +Sicilia cannot show himself over-kind to Bohemia. +They were trained together in their childhoods; and +there rooted betwixt them then such an affection, +which cannot choose but branch now. Since their +more mature dignities and royal necessities made +separation of their society, their encounters, +though not personal, have been royally attorneyed +with interchange of gifts, letters, loving +embassies; that they have seemed to be together, +though absent, shook hands, as over a vast, and +embraced, as it were, from the ends of opposed +winds. The heavens continue their loves! + +ARCHIDAMUS: +I think there is not in the world either malice or +matter to alter it. You have an unspeakable +comfort of your young prince Mamillius: it is a +gentleman of the greatest promise that ever came +into my note. + +CAMILLO: +I very well agree with you in the hopes of him: it +is a gallant child; one that indeed physics the +subject, makes old hearts fresh: they that went on +crutches ere he was born desire yet their life to +see him a man. + +ARCHIDAMUS: +Would they else be content to die? + +CAMILLO: +Yes; if there were no other excuse why they should +desire to live. + +ARCHIDAMUS: +If the king had no son, they would desire to live +on crutches till he had one. + +POLIXENES: +Nine changes of the watery star hath been +The shepherd's note since we have left our throne +Without a burthen: time as long again +Would be find up, my brother, with our thanks; +And yet we should, for perpetuity, +Go hence in debt: and therefore, like a cipher, +Yet standing in rich place, I multiply +With one 'We thank you' many thousands moe +That go before it. + +LEONTES: +Stay your thanks a while; +And pay them when you part. + +POLIXENES: +Sir, that's to-morrow. +I am question'd by my fears, of what may chance +Or breed upon our absence; that may blow +No sneaping winds at home, to make us say +'This is put forth too truly:' besides, I have stay'd +To tire your royalty. + +LEONTES: +We are tougher, brother, +Than you can put us to't. + +POLIXENES: +No longer stay. + +LEONTES: +One seven-night longer. + +POLIXENES: +Very sooth, to-morrow. + +LEONTES: +We'll part the time between's then; and in that +I'll no gainsaying. + +POLIXENES: +Press me not, beseech you, so. +There is no tongue that moves, none, none i' the world, +So soon as yours could win me: so it should now, +Were there necessity in your request, although +'Twere needful I denied it. My affairs +Do even drag me homeward: which to hinder +Were in your love a whip to me; my stay +To you a charge and trouble: to save both, +Farewell, our brother. + +LEONTES: +Tongue-tied, our queen? +speak you. + +HERMIONE: +I had thought, sir, to have held my peace until +You have drawn oaths from him not to stay. You, sir, +Charge him too coldly. Tell him, you are sure +All in Bohemia's well; this satisfaction +The by-gone day proclaim'd: say this to him, +He's beat from his best ward. + +LEONTES: +Well said, Hermione. + +HERMIONE: +To tell, he longs to see his son, were strong: +But let him say so then, and let him go; +But let him swear so, and he shall not stay, +We'll thwack him hence with distaffs. +Yet of your royal presence I'll adventure +The borrow of a week. When at Bohemia +You take my lord, I'll give him my commission +To let him there a month behind the gest +Prefix'd for's parting: yet, good deed, Leontes, +I love thee not a jar o' the clock behind +What lady-she her lord. You'll stay? + +POLIXENES: +No, madam. + +HERMIONE: +Nay, but you will? + +POLIXENES: +I may not, verily. + +HERMIONE: +Verily! +You put me off with limber vows; but I, +Though you would seek to unsphere the +stars with oaths, +Should yet say 'Sir, no going.' Verily, +You shall not go: a lady's 'Verily' 's +As potent as a lord's. Will you go yet? +Force me to keep you as a prisoner, +Not like a guest; so you shall pay your fees +When you depart, and save your thanks. How say you? +My prisoner? or my guest? by your dread 'Verily,' +One of them you shall be. + +POLIXENES: +Your guest, then, madam: +To be your prisoner should import offending; +Which is for me less easy to commit +Than you to punish. + +HERMIONE: +Not your gaoler, then, +But your kind hostess. Come, I'll question you +Of my lord's tricks and yours when you were boys: +You were pretty lordings then? + +POLIXENES: +We were, fair queen, +Two lads that thought there was no more behind +But such a day to-morrow as to-day, +And to be boy eternal. + +HERMIONE: +Was not my lord +The verier wag o' the two? + +POLIXENES: +We were as twinn'd lambs that did frisk i' the sun, +And bleat the one at the other: what we changed +Was innocence for innocence; we knew not +The doctrine of ill-doing, nor dream'd +That any did. Had we pursued that life, +And our weak spirits ne'er been higher rear'd +With stronger blood, we should have answer'd heaven +Boldly 'not guilty;' the imposition clear'd +Hereditary ours. + +HERMIONE: +By this we gather +You have tripp'd since. + +POLIXENES: +O my most sacred lady! +Temptations have since then been born to's; for +In those unfledged days was my wife a girl; +Your precious self had then not cross'd the eyes +Of my young play-fellow. + +HERMIONE: +Grace to boot! +Of this make no conclusion, lest you say +Your queen and I are devils: yet go on; +The offences we have made you do we'll answer, +If you first sinn'd with us and that with us +You did continue fault and that you slipp'd not +With any but with us. + +LEONTES: +Is he won yet? + +HERMIONE: +He'll stay my lord. + +LEONTES: +At my request he would not. +Hermione, my dearest, thou never spokest +To better purpose. + +HERMIONE: +Never? + +LEONTES: +Never, but once. + +HERMIONE: +What! have I twice said well? when was't before? +I prithee tell me; cram's with praise, and make's +As fat as tame things: one good deed dying tongueless +Slaughters a thousand waiting upon that. +Our praises are our wages: you may ride's +With one soft kiss a thousand furlongs ere +With spur we beat an acre. But to the goal: +My last good deed was to entreat his stay: +What was my first? it has an elder sister, +Or I mistake you: O, would her name were Grace! +But once before I spoke to the purpose: when? +Nay, let me have't; I long. + +LEONTES: +Why, that was when +Three crabbed months had sour'd themselves to death, +Ere I could make thee open thy white hand +And clap thyself my love: then didst thou utter +'I am yours for ever.' + +HERMIONE: +'Tis grace indeed. +Why, lo you now, I have spoke to the purpose twice: +The one for ever earn'd a royal husband; +The other for some while a friend. + +LEONTES: + +MAMILLIUS: +Ay, my good lord. + +LEONTES: +I' fecks! +Why, that's my bawcock. What, hast +smutch'd thy nose? +They say it is a copy out of mine. Come, captain, +We must be neat; not neat, but cleanly, captain: +And yet the steer, the heifer and the calf +Are all call'd neat.--Still virginalling +Upon his palm!--How now, you wanton calf! +Art thou my calf? + +MAMILLIUS: +Yes, if you will, my lord. + +LEONTES: +Thou want'st a rough pash and the shoots that I have, +To be full like me: yet they say we are +Almost as like as eggs; women say so, +That will say anything but were they false +As o'er-dyed blacks, as wind, as waters, false +As dice are to be wish'd by one that fixes +No bourn 'twixt his and mine, yet were it true +To say this boy were like me. Come, sir page, +Look on me with your welkin eye: sweet villain! +Most dear'st! my collop! Can thy dam?--may't be?-- +Affection! thy intention stabs the centre: +Thou dost make possible things not so held, +Communicatest with dreams;--how can this be?-- +With what's unreal thou coactive art, +And fellow'st nothing: then 'tis very credent +Thou mayst co-join with something; and thou dost, +And that beyond commission, and I find it, +And that to the infection of my brains +And hardening of my brows. + +POLIXENES: +What means Sicilia? + +HERMIONE: +He something seems unsettled. + +POLIXENES: +How, my lord! +What cheer? how is't with you, best brother? + +HERMIONE: +You look as if you held a brow of much distraction +Are you moved, my lord? + +LEONTES: +No, in good earnest. +How sometimes nature will betray its folly, +Its tenderness, and make itself a pastime +To harder bosoms! Looking on the lines +Of my boy's face, methoughts I did recoil +Twenty-three years, and saw myself unbreech'd, +In my green velvet coat, my dagger muzzled, +Lest it should bite its master, and so prove, +As ornaments oft do, too dangerous: +How like, methought, I then was to this kernel, +This squash, this gentleman. Mine honest friend, +Will you take eggs for money? + +MAMILLIUS: +No, my lord, I'll fight. + +LEONTES: +You will! why, happy man be's dole! My brother, +Are you so fond of your young prince as we +Do seem to be of ours? + +POLIXENES: +If at home, sir, +He's all my exercise, my mirth, my matter, +Now my sworn friend and then mine enemy, +My parasite, my soldier, statesman, all: +He makes a July's day short as December, +And with his varying childness cures in me +Thoughts that would thick my blood. + +LEONTES: +So stands this squire +Officed with me: we two will walk, my lord, +And leave you to your graver steps. Hermione, +How thou lovest us, show in our brother's welcome; +Let what is dear in Sicily be cheap: +Next to thyself and my young rover, he's +Apparent to my heart. + +HERMIONE: +If you would seek us, +We are yours i' the garden: shall's attend you there? + +LEONTES: +To your own bents dispose you: you'll be found, +Be you beneath the sky. +I am angling now, +Though you perceive me not how I give line. +Go to, go to! +How she holds up the neb, the bill to him! +And arms her with the boldness of a wife +To her allowing husband! +Gone already! +Inch-thick, knee-deep, o'er head and +ears a fork'd one! +Go, play, boy, play: thy mother plays, and I +Play too, but so disgraced a part, whose issue +Will hiss me to my grave: contempt and clamour +Will be my knell. Go, play, boy, play. +There have been, +Or I am much deceived, cuckolds ere now; +And many a man there is, even at this present, +Now while I speak this, holds his wife by the arm, +That little thinks she has been sluiced in's absence +And his pond fish'd by his next neighbour, by +Sir Smile, his neighbour: nay, there's comfort in't +Whiles other men have gates and those gates open'd, +As mine, against their will. Should all despair +That have revolted wives, the tenth of mankind +Would hang themselves. Physic for't there is none; +It is a bawdy planet, that will strike +Where 'tis predominant; and 'tis powerful, think it, +From east, west, north and south: be it concluded, +No barricado for a belly; know't; +It will let in and out the enemy +With bag and baggage: many thousand on's +Have the disease, and feel't not. How now, boy! + +MAMILLIUS: +I am like you, they say. + +LEONTES: +Why that's some comfort. What, Camillo there? + +CAMILLO: +Ay, my good lord. + +LEONTES: +Go play, Mamillius; thou'rt an honest man. +Camillo, this great sir will yet stay longer. + +CAMILLO: +You had much ado to make his anchor hold: +When you cast out, it still came home. + +LEONTES: +Didst note it? + +CAMILLO: +He would not stay at your petitions: made +His business more material. + +LEONTES: +Didst perceive it? +They're here with me already, whispering, rounding +'Sicilia is a so-forth:' 'tis far gone, +When I shall gust it last. How came't, Camillo, +That he did stay? + +CAMILLO: +At the good queen's entreaty. + +LEONTES: +At the queen's be't: 'good' should be pertinent +But, so it is, it is not. Was this taken +By any understanding pate but thine? +For thy conceit is soaking, will draw in +More than the common blocks: not noted, is't, +But of the finer natures? by some severals +Of head-piece extraordinary? lower messes +Perchance are to this business purblind? say. + +CAMILLO: +Business, my lord! I think most understand +Bohemia stays here longer. + +LEONTES: +Ha! + +CAMILLO: +Stays here longer. + +LEONTES: +Ay, but why? + +CAMILLO: +To satisfy your highness and the entreaties +Of our most gracious mistress. + +LEONTES: +Satisfy! +The entreaties of your mistress! satisfy! +Let that suffice. I have trusted thee, Camillo, +With all the nearest things to my heart, as well +My chamber-councils, wherein, priest-like, thou +Hast cleansed my bosom, I from thee departed +Thy penitent reform'd: but we have been +Deceived in thy integrity, deceived +In that which seems so. + +CAMILLO: +Be it forbid, my lord! + +LEONTES: +To bide upon't, thou art not honest, or, +If thou inclinest that way, thou art a coward, +Which hoxes honesty behind, restraining +From course required; or else thou must be counted +A servant grafted in my serious trust +And therein negligent; or else a fool +That seest a game play'd home, the rich stake drawn, +And takest it all for jest. + +CAMILLO: +My gracious lord, +I may be negligent, foolish and fearful; +In every one of these no man is free, +But that his negligence, his folly, fear, +Among the infinite doings of the world, +Sometime puts forth. In your affairs, my lord, +If ever I were wilful-negligent, +It was my folly; if industriously +I play'd the fool, it was my negligence, +Not weighing well the end; if ever fearful +To do a thing, where I the issue doubted, +Where of the execution did cry out +Against the non-performance, 'twas a fear +Which oft infects the wisest: these, my lord, +Are such allow'd infirmities that honesty +Is never free of. But, beseech your grace, +Be plainer with me; let me know my trespass +By its own visage: if I then deny it, +'Tis none of mine. + +LEONTES: +Ha' not you seen, Camillo,-- +But that's past doubt, you have, or your eye-glass +Is thicker than a cuckold's horn,--or heard,-- +For to a vision so apparent rumour +Cannot be mute,--or thought,--for cogitation +Resides not in that man that does not think,-- +My wife is slippery? If thou wilt confess, +Or else be impudently negative, +To have nor eyes nor ears nor thought, then say +My wife's a hobby-horse, deserves a name +As rank as any flax-wench that puts to +Before her troth-plight: say't and justify't. + +CAMILLO: +I would not be a stander-by to hear +My sovereign mistress clouded so, without +My present vengeance taken: 'shrew my heart, +You never spoke what did become you less +Than this; which to reiterate were sin +As deep as that, though true. + +LEONTES: +Is whispering nothing? +Is leaning cheek to cheek? is meeting noses? +Kissing with inside lip? stopping the career +Of laughing with a sigh?--a note infallible +Of breaking honesty--horsing foot on foot? +Skulking in corners? wishing clocks more swift? +Hours, minutes? noon, midnight? and all eyes +Blind with the pin and web but theirs, theirs only, +That would unseen be wicked? is this nothing? +Why, then the world and all that's in't is nothing; +The covering sky is nothing; Bohemia nothing; +My wife is nothing; nor nothing have these nothings, +If this be nothing. + +CAMILLO: +Good my lord, be cured +Of this diseased opinion, and betimes; +For 'tis most dangerous. + +LEONTES: +Say it be, 'tis true. + +CAMILLO: +No, no, my lord. + +LEONTES: +It is; you lie, you lie: +I say thou liest, Camillo, and I hate thee, +Pronounce thee a gross lout, a mindless slave, +Or else a hovering temporizer, that +Canst with thine eyes at once see good and evil, +Inclining to them both: were my wife's liver +Infected as her life, she would not live +The running of one glass. + +CAMILLO: +Who does infect her? + +LEONTES: +Why, he that wears her like a medal, hanging +About his neck, Bohemia: who, if I +Had servants true about me, that bare eyes +To see alike mine honour as their profits, +Their own particular thrifts, they would do that +Which should undo more doing: ay, and thou, +His cupbearer,--whom I from meaner form +Have benched and reared to worship, who mayst see +Plainly as heaven sees earth and earth sees heaven, +How I am galled,--mightst bespice a cup, +To give mine enemy a lasting wink; +Which draught to me were cordial. + +CAMILLO: +Sir, my lord, +I could do this, and that with no rash potion, +But with a lingering dram that should not work +Maliciously like poison: but I cannot +Believe this crack to be in my dread mistress, +So sovereignly being honourable. +I have loved thee,-- + +LEONTES: +Make that thy question, and go rot! +Dost think I am so muddy, so unsettled, +To appoint myself in this vexation, sully +The purity and whiteness of my sheets, +Which to preserve is sleep, which being spotted +Is goads, thorns, nettles, tails of wasps, +Give scandal to the blood o' the prince my son, +Who I do think is mine and love as mine, +Without ripe moving to't? Would I do this? +Could man so blench? + +CAMILLO: +I must believe you, sir: +I do; and will fetch off Bohemia for't; +Provided that, when he's removed, your highness +Will take again your queen as yours at first, +Even for your son's sake; and thereby for sealing +The injury of tongues in courts and kingdoms +Known and allied to yours. + +LEONTES: +Thou dost advise me +Even so as I mine own course have set down: +I'll give no blemish to her honour, none. + +CAMILLO: +My lord, +Go then; and with a countenance as clear +As friendship wears at feasts, keep with Bohemia +And with your queen. I am his cupbearer: +If from me he have wholesome beverage, +Account me not your servant. + +LEONTES: +This is all: +Do't and thou hast the one half of my heart; +Do't not, thou split'st thine own. + +CAMILLO: +I'll do't, my lord. + +LEONTES: +I will seem friendly, as thou hast advised me. + +CAMILLO: +O miserable lady! But, for me, +What case stand I in? I must be the poisoner +Of good Polixenes; and my ground to do't +Is the obedience to a master, one +Who in rebellion with himself will have +All that are his so too. To do this deed, +Promotion follows. If I could find example +Of thousands that had struck anointed kings +And flourish'd after, I'ld not do't; but since +Nor brass nor stone nor parchment bears not one, +Let villany itself forswear't. I must +Forsake the court: to do't, or no, is certain +To me a break-neck. Happy star, reign now! +Here comes Bohemia. + +POLIXENES: +This is strange: methinks +My favour here begins to warp. Not speak? +Good day, Camillo. + +CAMILLO: +Hail, most royal sir! + +POLIXENES: +What is the news i' the court? + +CAMILLO: +None rare, my lord. + +POLIXENES: +The king hath on him such a countenance +As he had lost some province and a region +Loved as he loves himself: even now I met him +With customary compliment; when he, +Wafting his eyes to the contrary and falling +A lip of much contempt, speeds from me and +So leaves me to consider what is breeding +That changeth thus his manners. + +CAMILLO: +I dare not know, my lord. + +POLIXENES: +How! dare not! do not. Do you know, and dare not? +Be intelligent to me: 'tis thereabouts; +For, to yourself, what you do know, you must. +And cannot say, you dare not. Good Camillo, +Your changed complexions are to me a mirror +Which shows me mine changed too; for I must be +A party in this alteration, finding +Myself thus alter'd with 't. + +CAMILLO: +There is a sickness +Which puts some of us in distemper, but +I cannot name the disease; and it is caught +Of you that yet are well. + +POLIXENES: +How! caught of me! +Make me not sighted like the basilisk: +I have look'd on thousands, who have sped the better +By my regard, but kill'd none so. Camillo,-- +As you are certainly a gentleman, thereto +Clerk-like experienced, which no less adorns +Our gentry than our parents' noble names, +In whose success we are gentle,--I beseech you, +If you know aught which does behove my knowledge +Thereof to be inform'd, imprison't not +In ignorant concealment. + +CAMILLO: +I may not answer. + +POLIXENES: +A sickness caught of me, and yet I well! +I must be answer'd. Dost thou hear, Camillo, +I conjure thee, by all the parts of man +Which honour does acknowledge, whereof the least +Is not this suit of mine, that thou declare +What incidency thou dost guess of harm +Is creeping toward me; how far off, how near; +Which way to be prevented, if to be; +If not, how best to bear it. + +CAMILLO: +Sir, I will tell you; +Since I am charged in honour and by him +That I think honourable: therefore mark my counsel, +Which must be even as swiftly follow'd as +I mean to utter it, or both yourself and me +Cry lost, and so good night! + +POLIXENES: +On, good Camillo. + +CAMILLO: +I am appointed him to murder you. + +POLIXENES: +By whom, Camillo? + +CAMILLO: +By the king. + +POLIXENES: +For what? + +CAMILLO: +He thinks, nay, with all confidence he swears, +As he had seen't or been an instrument +To vice you to't, that you have touch'd his queen +Forbiddenly. + +POLIXENES: +O, then my best blood turn +To an infected jelly and my name +Be yoked with his that did betray the Best! +Turn then my freshest reputation to +A savour that may strike the dullest nostril +Where I arrive, and my approach be shunn'd, +Nay, hated too, worse than the great'st infection +That e'er was heard or read! + +CAMILLO: +Swear his thought over +By each particular star in heaven and +By all their influences, you may as well +Forbid the sea for to obey the moon +As or by oath remove or counsel shake +The fabric of his folly, whose foundation +Is piled upon his faith and will continue +The standing of his body. + +POLIXENES: +How should this grow? + +CAMILLO: +I know not: but I am sure 'tis safer to +Avoid what's grown than question how 'tis born. +If therefore you dare trust my honesty, +That lies enclosed in this trunk which you +Shall bear along impawn'd, away to-night! +Your followers I will whisper to the business, +And will by twos and threes at several posterns +Clear them o' the city. For myself, I'll put +My fortunes to your service, which are here +By this discovery lost. Be not uncertain; +For, by the honour of my parents, I +Have utter'd truth: which if you seek to prove, +I dare not stand by; nor shall you be safer +Than one condemn'd by the king's own mouth, thereon +His execution sworn. + +POLIXENES: +I do believe thee: +I saw his heart in 's face. Give me thy hand: +Be pilot to me and thy places shall +Still neighbour mine. My ships are ready and +My people did expect my hence departure +Two days ago. This jealousy +Is for a precious creature: as she's rare, +Must it be great, and as his person's mighty, +Must it be violent, and as he does conceive +He is dishonour'd by a man which ever +Profess'd to him, why, his revenges must +In that be made more bitter. Fear o'ershades me: +Good expedition be my friend, and comfort +The gracious queen, part of his theme, but nothing +Of his ill-ta'en suspicion! Come, Camillo; +I will respect thee as a father if +Thou bear'st my life off hence: let us avoid. + +CAMILLO: +It is in mine authority to command +The keys of all the posterns: please your highness +To take the urgent hour. Come, sir, away. + +HERMIONE: +Take the boy to you: he so troubles me, +'Tis past enduring. + +First Lady: +Come, my gracious lord, +Shall I be your playfellow? + +MAMILLIUS: +No, I'll none of you. + +First Lady: +Why, my sweet lord? + +MAMILLIUS: +You'll kiss me hard and speak to me as if +I were a baby still. I love you better. + +Second Lady: +And why so, my lord? + +MAMILLIUS: +Not for because +Your brows are blacker; yet black brows, they say, +Become some women best, so that there be not +Too much hair there, but in a semicircle +Or a half-moon made with a pen. + +Second Lady: +Who taught you this? + +MAMILLIUS: +I learnt it out of women's faces. Pray now +What colour are your eyebrows? + +First Lady: +Blue, my lord. + +MAMILLIUS: +Nay, that's a mock: I have seen a lady's nose +That has been blue, but not her eyebrows. + +First Lady: +Hark ye; +The queen your mother rounds apace: we shall +Present our services to a fine new prince +One of these days; and then you'ld wanton with us, +If we would have you. + +Second Lady: +She is spread of late +Into a goodly bulk: good time encounter her! + +HERMIONE: +What wisdom stirs amongst you? Come, sir, now +I am for you again: pray you, sit by us, +And tell 's a tale. + +MAMILLIUS: +Merry or sad shall't be? + +HERMIONE: +As merry as you will. + +MAMILLIUS: +A sad tale's best for winter: I have one +Of sprites and goblins. + +HERMIONE: +Let's have that, good sir. +Come on, sit down: come on, and do your best +To fright me with your sprites; you're powerful at it. + +MAMILLIUS: +There was a man-- + +HERMIONE: +Nay, come, sit down; then on. + +MAMILLIUS: +Dwelt by a churchyard: I will tell it softly; +Yond crickets shall not hear it. + +HERMIONE: +Come on, then, +And give't me in mine ear. + +LEONTES: +Was he met there? his train? Camillo with him? + +First Lord: +Behind the tuft of pines I met them; never +Saw I men scour so on their way: I eyed them +Even to their ships. + +LEONTES: +How blest am I +In my just censure, in my true opinion! +Alack, for lesser knowledge! how accursed +In being so blest! There may be in the cup +A spider steep'd, and one may drink, depart, +And yet partake no venom, for his knowledge +Is not infected: but if one present +The abhorr'd ingredient to his eye, make known +How he hath drunk, he cracks his gorge, his sides, +With violent hefts. I have drunk, +and seen the spider. +Camillo was his help in this, his pander: +There is a plot against my life, my crown; +All's true that is mistrusted: that false villain +Whom I employ'd was pre-employ'd by him: +He has discover'd my design, and I +Remain a pinch'd thing; yea, a very trick +For them to play at will. How came the posterns +So easily open? + +First Lord: +By his great authority; +Which often hath no less prevail'd than so +On your command. + +LEONTES: +I know't too well. +Give me the boy: I am glad you did not nurse him: +Though he does bear some signs of me, yet you +Have too much blood in him. + +HERMIONE: +What is this? sport? + +LEONTES: +Bear the boy hence; he shall not come about her; +Away with him! and let her sport herself +With that she's big with; for 'tis Polixenes +Has made thee swell thus. + +HERMIONE: +But I'ld say he had not, +And I'll be sworn you would believe my saying, +Howe'er you lean to the nayward. + +LEONTES: +You, my lords, +Look on her, mark her well; be but about +To say 'she is a goodly lady,' and +The justice of your bearts will thereto add +'Tis pity she's not honest, honourable:' +Praise her but for this her without-door form, +Which on my faith deserves high speech, and straight +The shrug, the hum or ha, these petty brands +That calumny doth use--O, I am out-- +That mercy does, for calumny will sear +Virtue itself: these shrugs, these hums and ha's, +When you have said 'she's goodly,' come between +Ere you can say 'she's honest:' but be 't known, +From him that has most cause to grieve it should be, +She's an adulteress. + +HERMIONE: +Should a villain say so, +The most replenish'd villain in the world, +He were as much more villain: you, my lord, +Do but mistake. + +LEONTES: +You have mistook, my lady, +Polixenes for Leontes: O thou thing! +Which I'll not call a creature of thy place, +Lest barbarism, making me the precedent, +Should a like language use to all degrees +And mannerly distinguishment leave out +Betwixt the prince and beggar: I have said +She's an adulteress; I have said with whom: +More, she's a traitor and Camillo is +A federary with her, and one that knows +What she should shame to know herself +But with her most vile principal, that she's +A bed-swerver, even as bad as those +That vulgars give bold'st titles, ay, and privy +To this their late escape. + +HERMIONE: +No, by my life. +Privy to none of this. How will this grieve you, +When you shall come to clearer knowledge, that +You thus have publish'd me! Gentle my lord, +You scarce can right me throughly then to say +You did mistake. + +LEONTES: +No; if I mistake +In those foundations which I build upon, +The centre is not big enough to bear +A school-boy's top. Away with her! to prison! +He who shall speak for her is afar off guilty +But that he speaks. + +HERMIONE: +There's some ill planet reigns: +I must be patient till the heavens look +With an aspect more favourable. Good my lords, +I am not prone to weeping, as our sex +Commonly are; the want of which vain dew +Perchance shall dry your pities: but I have +That honourable grief lodged here which burns +Worse than tears drown: beseech you all, my lords, +With thoughts so qualified as your charities +Shall best instruct you, measure me; and so +The king's will be perform'd! + +LEONTES: +Shall I be heard? + +HERMIONE: +Who is't that goes with me? Beseech your highness, +My women may be with me; for you see +My plight requires it. Do not weep, good fools; +There is no cause: when you shall know your mistress +Has deserved prison, then abound in tears +As I come out: this action I now go on +Is for my better grace. Adieu, my lord: +I never wish'd to see you sorry; now +I trust I shall. My women, come; you have leave. + +LEONTES: +Go, do our bidding; hence! + +First Lord: +Beseech your highness, call the queen again. + +ANTIGONUS: +Be certain what you do, sir, lest your justice +Prove violence; in the which three great ones suffer, +Yourself, your queen, your son. + +First Lord: +For her, my lord, +I dare my life lay down and will do't, sir, +Please you to accept it, that the queen is spotless +I' the eyes of heaven and to you; I mean, +In this which you accuse her. + +ANTIGONUS: +If it prove +She's otherwise, I'll keep my stables where +I lodge my wife; I'll go in couples with her; +Than when I feel and see her no farther trust her; +For every inch of woman in the world, +Ay, every dram of woman's flesh is false, If she be. + +LEONTES: +Hold your peaces. + +First Lord: +Good my lord,-- + +ANTIGONUS: +It is for you we speak, not for ourselves: +You are abused and by some putter-on +That will be damn'd for't; would I knew the villain, +I would land-damn him. Be she honour-flaw'd, +I have three daughters; the eldest is eleven +The second and the third, nine, and some five; +If this prove true, they'll pay for't: +by mine honour, +I'll geld 'em all; fourteen they shall not see, +To bring false generations: they are co-heirs; +And I had rather glib myself than they +Should not produce fair issue. + +LEONTES: +Cease; no more. +You smell this business with a sense as cold +As is a dead man's nose: but I do see't and feel't +As you feel doing thus; and see withal +The instruments that feel. + +ANTIGONUS: +If it be so, +We need no grave to bury honesty: +There's not a grain of it the face to sweeten +Of the whole dungy earth. + +LEONTES: +What! lack I credit? + +First Lord: +I had rather you did lack than I, my lord, +Upon this ground; and more it would content me +To have her honour true than your suspicion, +Be blamed for't how you might. + +LEONTES: +Why, what need we +Commune with you of this, but rather follow +Our forceful instigation? Our prerogative +Calls not your counsels, but our natural goodness +Imparts this; which if you, or stupefied +Or seeming so in skill, cannot or will not +Relish a truth like us, inform yourselves +We need no more of your advice: the matter, +The loss, the gain, the ordering on't, is all +Properly ours. + +ANTIGONUS: +And I wish, my liege, +You had only in your silent judgment tried it, +Without more overture. + +LEONTES: +How could that be? +Either thou art most ignorant by age, +Or thou wert born a fool. Camillo's flight, +Added to their familiarity, +Which was as gross as ever touch'd conjecture, +That lack'd sight only, nought for approbation +But only seeing, all other circumstances +Made up to the deed, doth push on this proceeding: +Yet, for a greater confirmation, +For in an act of this importance 'twere +Most piteous to be wild, I have dispatch'd in post +To sacred Delphos, to Apollo's temple, +Cleomenes and Dion, whom you know +Of stuff'd sufficiency: now from the oracle +They will bring all; whose spiritual counsel had, +Shall stop or spur me. Have I done well? + +First Lord: +Well done, my lord. + +LEONTES: +Though I am satisfied and need no more +Than what I know, yet shall the oracle +Give rest to the minds of others, such as he +Whose ignorant credulity will not +Come up to the truth. So have we thought it good +From our free person she should be confined, +Lest that the treachery of the two fled hence +Be left her to perform. Come, follow us; +We are to speak in public; for this business +Will raise us all. + +ANTIGONUS: + +PAULINA: +The keeper of the prison, call to him; +let him have knowledge who I am. +Good lady, +No court in Europe is too good for thee; +What dost thou then in prison? +Now, good sir, +You know me, do you not? + +Gaoler: +For a worthy lady +And one whom much I honour. + +PAULINA: +Pray you then, +Conduct me to the queen. + +Gaoler: +I may not, madam: +To the contrary I have express commandment. + +PAULINA: +Here's ado, +To lock up honesty and honour from +The access of gentle visitors! +Is't lawful, pray you, +To see her women? any of them? Emilia? + +Gaoler: +So please you, madam, +To put apart these your attendants, I +Shall bring Emilia forth. + +PAULINA: +I pray now, call her. +Withdraw yourselves. + +Gaoler: +And, madam, +I must be present at your conference. + +PAULINA: +Well, be't so, prithee. +Here's such ado to make no stain a stain +As passes colouring. +Dear gentlewoman, +How fares our gracious lady? + +EMILIA: +As well as one so great and so forlorn +May hold together: on her frights and griefs, +Which never tender lady hath born greater, +She is something before her time deliver'd. + +PAULINA: +A boy? + +EMILIA: +A daughter, and a goodly babe, +Lusty and like to live: the queen receives +Much comfort in't; says 'My poor prisoner, +I am innocent as you.' + +PAULINA: +I dare be sworn +These dangerous unsafe lunes i' the king, +beshrew them! +He must be told on't, and he shall: the office +Becomes a woman best; I'll take't upon me: +If I prove honey-mouth'd let my tongue blister +And never to my red-look'd anger be +The trumpet any more. Pray you, Emilia, +Commend my best obedience to the queen: +If she dares trust me with her little babe, +I'll show't the king and undertake to be +Her advocate to the loud'st. We do not know +How he may soften at the sight o' the child: +The silence often of pure innocence +Persuades when speaking fails. + +EMILIA: +Most worthy madam, +Your honour and your goodness is so evident +That your free undertaking cannot miss +A thriving issue: there is no lady living +So meet for this great errand. Please your ladyship +To visit the next room, I'll presently +Acquaint the queen of your most noble offer; +Who but to-day hammer'd of this design, +But durst not tempt a minister of honour, +Lest she should be denied. + +PAULINA: +Tell her, Emilia. +I'll use that tongue I have: if wit flow from't +As boldness from my bosom, let 't not be doubted +I shall do good. + +EMILIA: +Now be you blest for it! +I'll to the queen: please you, +come something nearer. + +Gaoler: +Madam, if't please the queen to send the babe, +I know not what I shall incur to pass it, +Having no warrant. + +PAULINA: +You need not fear it, sir: +This child was prisoner to the womb and is +By law and process of great nature thence +Freed and enfranchised, not a party to +The anger of the king nor guilty of, +If any be, the trespass of the queen. + +Gaoler: +I do believe it. + +PAULINA: +Do not you fear: upon mine honour, +I will stand betwixt you and danger. + +LEONTES: +Nor night nor day no rest: it is but weakness +To bear the matter thus; mere weakness. If +The cause were not in being,--part o' the cause, +She the adulteress; for the harlot king +Is quite beyond mine arm, out of the blank +And level of my brain, plot-proof; but she +I can hook to me: say that she were gone, +Given to the fire, a moiety of my rest +Might come to me again. Who's there? + +First Servant: +My lord? + +LEONTES: +How does the boy? + +First Servant: +He took good rest to-night; +'Tis hoped his sickness is discharged. + +LEONTES: +To see his nobleness! +Conceiving the dishonour of his mother, +He straight declined, droop'd, took it deeply, +Fasten'd and fix'd the shame on't in himself, +Threw off his spirit, his appetite, his sleep, +And downright languish'd. Leave me solely: go, +See how he fares. +Fie, fie! no thought of him: +The thought of my revenges that way +Recoil upon me: in himself too mighty, +And in his parties, his alliance; let him be +Until a time may serve: for present vengeance, +Take it on her. Camillo and Polixenes +Laugh at me, make their pastime at my sorrow: +They should not laugh if I could reach them, nor +Shall she within my power. + +First Lord: +You must not enter. + +PAULINA: +Nay, rather, good my lords, be second to me: +Fear you his tyrannous passion more, alas, +Than the queen's life? a gracious innocent soul, +More free than he is jealous. + +ANTIGONUS: +That's enough. + +Second Servant: +Madam, he hath not slept tonight; commanded +None should come at him. + +PAULINA: +Not so hot, good sir: +I come to bring him sleep. 'Tis such as you, +That creep like shadows by him and do sigh +At each his needless heavings, such as you +Nourish the cause of his awaking: I +Do come with words as medicinal as true, +Honest as either, to purge him of that humour +That presses him from sleep. + +LEONTES: +What noise there, ho? + +PAULINA: +No noise, my lord; but needful conference +About some gossips for your highness. + +LEONTES: +How! +Away with that audacious lady! Antigonus, +I charged thee that she should not come about me: +I knew she would. + +ANTIGONUS: +I told her so, my lord, +On your displeasure's peril and on mine, +She should not visit you. + +LEONTES: +What, canst not rule her? + +PAULINA: +From all dishonesty he can: in this, +Unless he take the course that you have done, +Commit me for committing honour, trust it, +He shall not rule me. + +ANTIGONUS: +La you now, you hear: +When she will take the rein I let her run; +But she'll not stumble. + +PAULINA: +Good my liege, I come; +And, I beseech you, hear me, who profess +Myself your loyal servant, your physician, +Your most obedient counsellor, yet that dare +Less appear so in comforting your evils, +Than such as most seem yours: I say, I come +From your good queen. + +LEONTES: +Good queen! + +PAULINA: +Good queen, my lord, +Good queen; I say good queen; +And would by combat make her good, so were I +A man, the worst about you. + +LEONTES: +Force her hence. + +PAULINA: +Let him that makes but trifles of his eyes +First hand me: on mine own accord I'll off; +But first I'll do my errand. The good queen, +For she is good, hath brought you forth a daughter; +Here 'tis; commends it to your blessing. + +LEONTES: +Out! +A mankind witch! Hence with her, out o' door: +A most intelligencing bawd! + +PAULINA: +Not so: +I am as ignorant in that as you +In so entitling me, and no less honest +Than you are mad; which is enough, I'll warrant, +As this world goes, to pass for honest. + +LEONTES: +Traitors! +Will you not push her out? Give her the bastard. +Thou dotard! thou art woman-tired, unroosted +By thy dame Partlet here. Take up the bastard; +Take't up, I say; give't to thy crone. + +PAULINA: +For ever +Unvenerable be thy hands, if thou +Takest up the princess by that forced baseness +Which he has put upon't! + +LEONTES: +He dreads his wife. + +PAULINA: +So I would you did; then 'twere past all doubt +You'ld call your children yours. + +LEONTES: +A nest of traitors! + +ANTIGONUS: +I am none, by this good light. + +PAULINA: +Nor I, nor any +But one that's here, and that's himself, for he +The sacred honour of himself, his queen's, +His hopeful son's, his babe's, betrays to slander, +Whose sting is sharper than the sword's; +and will not-- +For, as the case now stands, it is a curse +He cannot be compell'd to't--once remove +The root of his opinion, which is rotten +As ever oak or stone was sound. + +LEONTES: +A callat +Of boundless tongue, who late hath beat her husband +And now baits me! This brat is none of mine; +It is the issue of Polixenes: +Hence with it, and together with the dam +Commit them to the fire! + +PAULINA: +It is yours; +And, might we lay the old proverb to your charge, +So like you, 'tis the worse. Behold, my lords, +Although the print be little, the whole matter +And copy of the father, eye, nose, lip, +The trick of's frown, his forehead, nay, the valley, +The pretty dimples of his chin and cheek, +His smiles, +The very mould and frame of hand, nail, finger: +And thou, good goddess Nature, which hast made it +So like to him that got it, if thou hast +The ordering of the mind too, 'mongst all colours +No yellow in't, lest she suspect, as he does, +Her children not her husband's! + +LEONTES: +A gross hag +And, lozel, thou art worthy to be hang'd, +That wilt not stay her tongue. + +ANTIGONUS: +Hang all the husbands +That cannot do that feat, you'll leave yourself +Hardly one subject. + +LEONTES: +Once more, take her hence. + +PAULINA: +A most unworthy and unnatural lord +Can do no more. + +LEONTES: +I'll ha' thee burnt. + +PAULINA: +I care not: +It is an heretic that makes the fire, +Not she which burns in't. I'll not call you tyrant; +But this most cruel usage of your queen, +Not able to produce more accusation +Than your own weak-hinged fancy, something savours +Of tyranny and will ignoble make you, +Yea, scandalous to the world. + +LEONTES: +On your allegiance, +Out of the chamber with her! Were I a tyrant, +Where were her life? she durst not call me so, +If she did know me one. Away with her! + +PAULINA: +I pray you, do not push me; I'll be gone. +Look to your babe, my lord; 'tis yours: +Jove send her +A better guiding spirit! What needs these hands? +You, that are thus so tender o'er his follies, +Will never do him good, not one of you. +So, so: farewell; we are gone. + +LEONTES: +Thou, traitor, hast set on thy wife to this. +My child? away with't! Even thou, that hast +A heart so tender o'er it, take it hence +And see it instantly consumed with fire; +Even thou and none but thou. Take it up straight: +Within this hour bring me word 'tis done, +And by good testimony, or I'll seize thy life, +With what thou else call'st thine. If thou refuse +And wilt encounter with my wrath, say so; +The bastard brains with these my proper hands +Shall I dash out. Go, take it to the fire; +For thou set'st on thy wife. + +ANTIGONUS: +I did not, sir: +These lords, my noble fellows, if they please, +Can clear me in't. + +Lords: +We can: my royal liege, +He is not guilty of her coming hither. + +LEONTES: +You're liars all. + +First Lord: +Beseech your highness, give us better credit: +We have always truly served you, and beseech you +So to esteem of us, and on our knees we beg, +As recompense of our dear services +Past and to come, that you do change this purpose, +Which being so horrible, so bloody, must +Lead on to some foul issue: we all kneel. + +LEONTES: +I am a feather for each wind that blows: +Shall I live on to see this bastard kneel +And call me father? better burn it now +Than curse it then. But be it; let it live. +It shall not neither. You, sir, come you hither; +You that have been so tenderly officious +With Lady Margery, your midwife there, +To save this bastard's life,--for 'tis a bastard, +So sure as this beard's grey, +--what will you adventure +To save this brat's life? + +ANTIGONUS: +Any thing, my lord, +That my ability may undergo +And nobleness impose: at least thus much: +I'll pawn the little blood which I have left +To save the innocent: any thing possible. + +LEONTES: +It shall be possible. Swear by this sword +Thou wilt perform my bidding. + +ANTIGONUS: +I will, my lord. + +LEONTES: +Mark and perform it, see'st thou! for the fail +Of any point in't shall not only be +Death to thyself but to thy lewd-tongued wife, +Whom for this time we pardon. We enjoin thee, +As thou art liege-man to us, that thou carry +This female bastard hence and that thou bear it +To some remote and desert place quite out +Of our dominions, and that there thou leave it, +Without more mercy, to its own protection +And favour of the climate. As by strange fortune +It came to us, I do in justice charge thee, +On thy soul's peril and thy body's torture, +That thou commend it strangely to some place +Where chance may nurse or end it. Take it up. + +ANTIGONUS: +I swear to do this, though a present death +Had been more merciful. Come on, poor babe: +Some powerful spirit instruct the kites and ravens +To be thy nurses! Wolves and bears, they say +Casting their savageness aside have done +Like offices of pity. Sir, be prosperous +In more than this deed does require! And blessing +Against this cruelty fight on thy side, +Poor thing, condemn'd to loss! + +LEONTES: +No, I'll not rear +Another's issue. + +Servant: +Please your highness, posts +From those you sent to the oracle are come +An hour since: Cleomenes and Dion, +Being well arrived from Delphos, are both landed, +Hasting to the court. + +First Lord: +So please you, sir, their speed +Hath been beyond account. + +LEONTES: +Twenty-three days +They have been absent: 'tis good speed; foretells +The great Apollo suddenly will have +The truth of this appear. Prepare you, lords; +Summon a session, that we may arraign +Our most disloyal lady, for, as she hath +Been publicly accused, so shall she have +A just and open trial. While she lives +My heart will be a burthen to me. Leave me, +And think upon my bidding. + +CLEOMENES: +The climate's delicate, the air most sweet, +Fertile the isle, the temple much surpassing +The common praise it bears. + +DION: +I shall report, +For most it caught me, the celestial habits, +Methinks I so should term them, and the reverence +Of the grave wearers. O, the sacrifice! +How ceremonious, solemn and unearthly +It was i' the offering! + +CLEOMENES: +But of all, the burst +And the ear-deafening voice o' the oracle, +Kin to Jove's thunder, so surprised my sense. +That I was nothing. + +DION: +If the event o' the journey +Prove as successful to the queen,--O be't so!-- +As it hath been to us rare, pleasant, speedy, +The time is worth the use on't. + +CLEOMENES: +Great Apollo +Turn all to the best! These proclamations, +So forcing faults upon Hermione, +I little like. + +DION: +The violent carriage of it +Will clear or end the business: when the oracle, +Thus by Apollo's great divine seal'd up, +Shall the contents discover, something rare +Even then will rush to knowledge. Go: fresh horses! +And gracious be the issue! + +LEONTES: +This sessions, to our great grief we pronounce, +Even pushes 'gainst our heart: the party tried +The daughter of a king, our wife, and one +Of us too much beloved. Let us be clear'd +Of being tyrannous, since we so openly +Proceed in justice, which shall have due course, +Even to the guilt or the purgation. +Produce the prisoner. + +Officer: +It is his highness' pleasure that the queen +Appear in person here in court. Silence! + +LEONTES: +Read the indictment. + +Officer: + +HERMIONE: +Since what I am to say must be but that +Which contradicts my accusation and +The testimony on my part no other +But what comes from myself, it shall scarce boot me +To say 'not guilty:' mine integrity +Being counted falsehood, shall, as I express it, +Be so received. But thus: if powers divine +Behold our human actions, as they do, +I doubt not then but innocence shall make +False accusation blush and tyranny +Tremble at patience. You, my lord, best know, +Who least will seem to do so, my past life +Hath been as continent, as chaste, as true, +As I am now unhappy; which is more +Than history can pattern, though devised +And play'd to take spectators. For behold me +A fellow of the royal bed, which owe +A moiety of the throne a great king's daughter, +The mother to a hopeful prince, here standing +To prate and talk for life and honour 'fore +Who please to come and hear. For life, I prize it +As I weigh grief, which I would spare: for honour, +'Tis a derivative from me to mine, +And only that I stand for. I appeal +To your own conscience, sir, before Polixenes +Came to your court, how I was in your grace, +How merited to be so; since he came, +With what encounter so uncurrent I +Have strain'd to appear thus: if one jot beyond +The bound of honour, or in act or will +That way inclining, harden'd be the hearts +Of all that hear me, and my near'st of kin +Cry fie upon my grave! + +LEONTES: +I ne'er heard yet +That any of these bolder vices wanted +Less impudence to gainsay what they did +Than to perform it first. + +HERMIONE: +That's true enough; +Through 'tis a saying, sir, not due to me. + +LEONTES: +You will not own it. + +HERMIONE: +More than mistress of +Which comes to me in name of fault, I must not +At all acknowledge. For Polixenes, +With whom I am accused, I do confess +I loved him as in honour he required, +With such a kind of love as might become +A lady like me, with a love even such, +So and no other, as yourself commanded: +Which not to have done I think had been in me +Both disobedience and ingratitude +To you and toward your friend, whose love had spoke, +Even since it could speak, from an infant, freely +That it was yours. Now, for conspiracy, +I know not how it tastes; though it be dish'd +For me to try how: all I know of it +Is that Camillo was an honest man; +And why he left your court, the gods themselves, +Wotting no more than I, are ignorant. + +LEONTES: +You knew of his departure, as you know +What you have underta'en to do in's absence. + +HERMIONE: +Sir, +You speak a language that I understand not: +My life stands in the level of your dreams, +Which I'll lay down. + +LEONTES: +Your actions are my dreams; +You had a bastard by Polixenes, +And I but dream'd it. As you were past all shame,-- +Those of your fact are so--so past all truth: +Which to deny concerns more than avails; for as +Thy brat hath been cast out, like to itself, +No father owning it,--which is, indeed, +More criminal in thee than it,--so thou +Shalt feel our justice, in whose easiest passage +Look for no less than death. + +HERMIONE: +Sir, spare your threats: +The bug which you would fright me with I seek. +To me can life be no commodity: +The crown and comfort of my life, your favour, +I do give lost; for I do feel it gone, +But know not how it went. My second joy +And first-fruits of my body, from his presence +I am barr'd, like one infectious. My third comfort +Starr'd most unluckily, is from my breast, +The innocent milk in its most innocent mouth, +Haled out to murder: myself on every post +Proclaimed a strumpet: with immodest hatred +The child-bed privilege denied, which 'longs +To women of all fashion; lastly, hurried +Here to this place, i' the open air, before +I have got strength of limit. Now, my liege, +Tell me what blessings I have here alive, +That I should fear to die? Therefore proceed. +But yet hear this: mistake me not; no life, +I prize it not a straw, but for mine honour, +Which I would free, if I shall be condemn'd +Upon surmises, all proofs sleeping else +But what your jealousies awake, I tell you +'Tis rigor and not law. Your honours all, +I do refer me to the oracle: +Apollo be my judge! + +First Lord: +This your request +Is altogether just: therefore bring forth, +And in Apollos name, his oracle. + +HERMIONE: +The Emperor of Russia was my father: +O that he were alive, and here beholding +His daughter's trial! that he did but see +The flatness of my misery, yet with eyes +Of pity, not revenge! + +Officer: +You here shall swear upon this sword of justice, +That you, Cleomenes and Dion, have +Been both at Delphos, and from thence have brought +The seal'd-up oracle, by the hand deliver'd +Of great Apollo's priest; and that, since then, +You have not dared to break the holy seal +Nor read the secrets in't. + +CLEOMENES: +All this we swear. + +LEONTES: +Break up the seals and read. + +Officer: + +Lords: +Now blessed be the great Apollo! + +HERMIONE: +Praised! + +LEONTES: +Hast thou read truth? + +Officer: +Ay, my lord; even so +As it is here set down. + +LEONTES: +There is no truth at all i' the oracle: +The sessions shall proceed: this is mere falsehood. + +Servant: +My lord the king, the king! + +LEONTES: +What is the business? + +Servant: +O sir, I shall be hated to report it! +The prince your son, with mere conceit and fear +Of the queen's speed, is gone. + +LEONTES: +How! gone! + +Servant: +Is dead. + +LEONTES: +Apollo's angry; and the heavens themselves +Do strike at my injustice. +How now there! + +PAULINA: +This news is mortal to the queen: look down +And see what death is doing. + +LEONTES: +Take her hence: +Her heart is but o'ercharged; she will recover: +I have too much believed mine own suspicion: +Beseech you, tenderly apply to her +Some remedies for life. +Apollo, pardon +My great profaneness 'gainst thine oracle! +I'll reconcile me to Polixenes, +New woo my queen, recall the good Camillo, +Whom I proclaim a man of truth, of mercy; +For, being transported by my jealousies +To bloody thoughts and to revenge, I chose +Camillo for the minister to poison +My friend Polixenes: which had been done, +But that the good mind of Camillo tardied +My swift command, though I with death and with +Reward did threaten and encourage him, +Not doing 't and being done: he, most humane +And fill'd with honour, to my kingly guest +Unclasp'd my practise, quit his fortunes here, +Which you knew great, and to the hazard +Of all encertainties himself commended, +No richer than his honour: how he glisters +Thorough my rust! and how his pity +Does my deeds make the blacker! + +PAULINA: +Woe the while! +O, cut my lace, lest my heart, cracking it, +Break too. + +First Lord: +What fit is this, good lady? + +PAULINA: +What studied torments, tyrant, hast for me? +What wheels? racks? fires? what flaying? boiling? +In leads or oils? what old or newer torture +Must I receive, whose every word deserves +To taste of thy most worst? Thy tyranny +Together working with thy jealousies, +Fancies too weak for boys, too green and idle +For girls of nine, O, think what they have done +And then run mad indeed, stark mad! for all +Thy by-gone fooleries were but spices of it. +That thou betray'dst Polixenes,'twas nothing; +That did but show thee, of a fool, inconstant +And damnable ingrateful: nor was't much, +Thou wouldst have poison'd good Camillo's honour, +To have him kill a king: poor trespasses, +More monstrous standing by: whereof I reckon +The casting forth to crows thy baby-daughter +To be or none or little; though a devil +Would have shed water out of fire ere done't: +Nor is't directly laid to thee, the death +Of the young prince, whose honourable thoughts, +Thoughts high for one so tender, cleft the heart +That could conceive a gross and foolish sire +Blemish'd his gracious dam: this is not, no, +Laid to thy answer: but the last,--O lords, +When I have said, cry 'woe!' the queen, the queen, +The sweet'st, dear'st creature's dead, +and vengeance for't +Not dropp'd down yet. + +First Lord: +The higher powers forbid! + +PAULINA: +I say she's dead; I'll swear't. If word nor oath +Prevail not, go and see: if you can bring +Tincture or lustre in her lip, her eye, +Heat outwardly or breath within, I'll serve you +As I would do the gods. But, O thou tyrant! +Do not repent these things, for they are heavier +Than all thy woes can stir; therefore betake thee +To nothing but despair. A thousand knees +Ten thousand years together, naked, fasting, +Upon a barren mountain and still winter +In storm perpetual, could not move the gods +To look that way thou wert. + +LEONTES: +Go on, go on +Thou canst not speak too much; I have deserved +All tongues to talk their bitterest. + +First Lord: +Say no more: +Howe'er the business goes, you have made fault +I' the boldness of your speech. + +PAULINA: +I am sorry for't: +All faults I make, when I shall come to know them, +I do repent. Alas! I have show'd too much +The rashness of a woman: he is touch'd +To the noble heart. What's gone and what's past help +Should be past grief: do not receive affliction +At my petition; I beseech you, rather +Let me be punish'd, that have minded you +Of what you should forget. Now, good my liege +Sir, royal sir, forgive a foolish woman: +The love I bore your queen--lo, fool again!-- +I'll speak of her no more, nor of your children; +I'll not remember you of my own lord, +Who is lost too: take your patience to you, +And I'll say nothing. + +LEONTES: +Thou didst speak but well +When most the truth; which I receive much better +Than to be pitied of thee. Prithee, bring me +To the dead bodies of my queen and son: +One grave shall be for both: upon them shall +The causes of their death appear, unto +Our shame perpetual. Once a day I'll visit +The chapel where they lie, and tears shed there +Shall be my recreation: so long as nature +Will bear up with this exercise, so long +I daily vow to use it. Come and lead me +Unto these sorrows. + +ANTIGONUS: +Thou art perfect then, our ship hath touch'd upon +The deserts of Bohemia? + +Mariner: +Ay, my lord: and fear +We have landed in ill time: the skies look grimly +And threaten present blusters. In my conscience, +The heavens with that we have in hand are angry +And frown upon 's. + +ANTIGONUS: +Their sacred wills be done! Go, get aboard; +Look to thy bark: I'll not be long before +I call upon thee. + +Mariner: +Make your best haste, and go not +Too far i' the land: 'tis like to be loud weather; +Besides, this place is famous for the creatures +Of prey that keep upon't. + +ANTIGONUS: +Go thou away: +I'll follow instantly. + +Mariner: +I am glad at heart +To be so rid o' the business. + +ANTIGONUS: +Come, poor babe: +I have heard, but not believed, +the spirits o' the dead +May walk again: if such thing be, thy mother +Appear'd to me last night, for ne'er was dream +So like a waking. To me comes a creature, +Sometimes her head on one side, some another; +I never saw a vessel of like sorrow, +So fill'd and so becoming: in pure white robes, +Like very sanctity, she did approach +My cabin where I lay; thrice bow'd before me, +And gasping to begin some speech, her eyes +Became two spouts: the fury spent, anon +Did this break-from her: 'Good Antigonus, +Since fate, against thy better disposition, +Hath made thy person for the thrower-out +Of my poor babe, according to thine oath, +Places remote enough are in Bohemia, +There weep and leave it crying; and, for the babe +Is counted lost for ever, Perdita, +I prithee, call't. For this ungentle business +Put on thee by my lord, thou ne'er shalt see +Thy wife Paulina more.' And so, with shrieks +She melted into air. Affrighted much, +I did in time collect myself and thought +This was so and no slumber. Dreams are toys: +Yet for this once, yea, superstitiously, +I will be squared by this. I do believe +Hermione hath suffer'd death, and that +Apollo would, this being indeed the issue +Of King Polixenes, it should here be laid, +Either for life or death, upon the earth +Of its right father. Blossom, speed thee well! +There lie, and there thy character: there these; +Which may, if fortune please, both breed thee, pretty, +And still rest thine. The storm begins; poor wretch, +That for thy mother's fault art thus exposed +To loss and what may follow! Weep I cannot, +But my heart bleeds; and most accursed am I +To be by oath enjoin'd to this. Farewell! +The day frowns more and more: thou'rt like to have +A lullaby too rough: I never saw +The heavens so dim by day. A savage clamour! +Well may I get aboard! This is the chase: +I am gone for ever. + +Shepherd: +I would there were no age between sixteen and +three-and-twenty, or that youth would sleep out the +rest; for there is nothing in the between but +getting wenches with child, wronging the ancientry, +stealing, fighting--Hark you now! Would any but +these boiled brains of nineteen and two-and-twenty +hunt this weather? They have scared away two of my +best sheep, which I fear the wolf will sooner find +than the master: if any where I have them, 'tis by +the seaside, browsing of ivy. Good luck, an't be thy +will what have we here! Mercy on 's, a barne a very +pretty barne! A boy or a child, I wonder? A +pretty one; a very pretty one: sure, some 'scape: +though I am not bookish, yet I can read +waiting-gentlewoman in the 'scape. This has been +some stair-work, some trunk-work, some +behind-door-work: they were warmer that got this +than the poor thing is here. I'll take it up for +pity: yet I'll tarry till my son come; he hallooed +but even now. Whoa, ho, hoa! + +Clown: +Hilloa, loa! + +Shepherd: +What, art so near? If thou'lt see a thing to talk +on when thou art dead and rotten, come hither. What +ailest thou, man? + +Clown: +I have seen two such sights, by sea and by land! +but I am not to say it is a sea, for it is now the +sky: betwixt the firmament and it you cannot thrust +a bodkin's point. + +Shepherd: +Why, boy, how is it? + +Clown: +I would you did but see how it chafes, how it rages, +how it takes up the shore! but that's not the +point. O, the most piteous cry of the poor souls! +sometimes to see 'em, and not to see 'em; now the +ship boring the moon with her main-mast, and anon +swallowed with yest and froth, as you'ld thrust a +cork into a hogshead. And then for the +land-service, to see how the bear tore out his +shoulder-bone; how he cried to me for help and said +his name was Antigonus, a nobleman. But to make an +end of the ship, to see how the sea flap-dragoned +it: but, first, how the poor souls roared, and the +sea mocked them; and how the poor gentleman roared +and the bear mocked him, both roaring louder than +the sea or weather. + +Shepherd: +Name of mercy, when was this, boy? + +Clown: +Now, now: I have not winked since I saw these +sights: the men are not yet cold under water, nor +the bear half dined on the gentleman: he's at it +now. + +Shepherd: +Would I had been by, to have helped the old man! + +Clown: +I would you had been by the ship side, to have +helped her: there your charity would have lacked footing. + +Shepherd: +Heavy matters! heavy matters! but look thee here, +boy. Now bless thyself: thou mettest with things +dying, I with things newborn. Here's a sight for +thee; look thee, a bearing-cloth for a squire's +child! look thee here; take up, take up, boy; +open't. So, let's see: it was told me I should be +rich by the fairies. This is some changeling: +open't. What's within, boy? + +Clown: +You're a made old man: if the sins of your youth +are forgiven you, you're well to live. Gold! all gold! + +Shepherd: +This is fairy gold, boy, and 'twill prove so: up +with't, keep it close: home, home, the next way. +We are lucky, boy; and to be so still requires +nothing but secrecy. Let my sheep go: come, good +boy, the next way home. + +Clown: +Go you the next way with your findings. I'll go see +if the bear be gone from the gentleman and how much +he hath eaten: they are never curst but when they +are hungry: if there be any of him left, I'll bury +it. + +Shepherd: +That's a good deed. If thou mayest discern by that +which is left of him what he is, fetch me to the +sight of him. + +Clown: +Marry, will I; and you shall help to put him i' the ground. + +Shepherd: +'Tis a lucky day, boy, and we'll do good deeds on't. + +Time: +I, that please some, try all, both joy and terror +Of good and bad, that makes and unfolds error, +Now take upon me, in the name of Time, +To use my wings. Impute it not a crime +To me or my swift passage, that I slide +O'er sixteen years and leave the growth untried +Of that wide gap, since it is in my power +To o'erthrow law and in one self-born hour +To plant and o'erwhelm custom. Let me pass +The same I am, ere ancient'st order was +Or what is now received: I witness to +The times that brought them in; so shall I do +To the freshest things now reigning and make stale +The glistering of this present, as my tale +Now seems to it. Your patience this allowing, +I turn my glass and give my scene such growing +As you had slept between: Leontes leaving, +The effects of his fond jealousies so grieving +That he shuts up himself, imagine me, +Gentle spectators, that I now may be +In fair Bohemia, and remember well, +I mentioned a son o' the king's, which Florizel +I now name to you; and with speed so pace +To speak of Perdita, now grown in grace +Equal with wondering: what of her ensues +I list not prophecy; but let Time's news +Be known when 'tis brought forth. +A shepherd's daughter, +And what to her adheres, which follows after, +Is the argument of Time. Of this allow, +If ever you have spent time worse ere now; +If never, yet that Time himself doth say +He wishes earnestly you never may. + +POLIXENES: +I pray thee, good Camillo, be no more importunate: +'tis a sickness denying thee any thing; a death to +grant this. + +CAMILLO: +It is fifteen years since I saw my country: though +I have for the most part been aired abroad, I +desire to lay my bones there. Besides, the penitent +king, my master, hath sent for me; to whose feeling +sorrows I might be some allay, or I o'erween to +think so, which is another spur to my departure. + +POLIXENES: +As thou lovest me, Camillo, wipe not out the rest of +thy services by leaving me now: the need I have of +thee thine own goodness hath made; better not to +have had thee than thus to want thee: thou, having +made me businesses which none without thee can +sufficiently manage, must either stay to execute +them thyself or take away with thee the very +services thou hast done; which if I have not enough +considered, as too much I cannot, to be more +thankful to thee shall be my study, and my profit +therein the heaping friendships. Of that fatal +country, Sicilia, prithee speak no more; whose very +naming punishes me with the remembrance of that +penitent, as thou callest him, and reconciled king, +my brother; whose loss of his most precious queen +and children are even now to be afresh lamented. +Say to me, when sawest thou the Prince Florizel, my +son? Kings are no less unhappy, their issue not +being gracious, than they are in losing them when +they have approved their virtues. + +CAMILLO: +Sir, it is three days since I saw the prince. What +his happier affairs may be, are to me unknown: but I +have missingly noted, he is of late much retired +from court and is less frequent to his princely +exercises than formerly he hath appeared. + +POLIXENES: +I have considered so much, Camillo, and with some +care; so far that I have eyes under my service which +look upon his removedness; from whom I have this +intelligence, that he is seldom from the house of a +most homely shepherd; a man, they say, that from +very nothing, and beyond the imagination of his +neighbours, is grown into an unspeakable estate. + +CAMILLO: +I have heard, sir, of such a man, who hath a +daughter of most rare note: the report of her is +extended more than can be thought to begin from such a cottage. + +POLIXENES: +That's likewise part of my intelligence; but, I +fear, the angle that plucks our son thither. Thou +shalt accompany us to the place; where we will, not +appearing what we are, have some question with the +shepherd; from whose simplicity I think it not +uneasy to get the cause of my son's resort thither. +Prithee, be my present partner in this business, and +lay aside the thoughts of Sicilia. + +CAMILLO: +I willingly obey your command. + +POLIXENES: +My best Camillo! We must disguise ourselves. + +AUTOLYCUS: +When daffodils begin to peer, +With heigh! the doxy over the dale, +Why, then comes in the sweet o' the year; +For the red blood reigns in the winter's pale. +The white sheet bleaching on the hedge, +With heigh! the sweet birds, O, how they sing! +Doth set my pugging tooth on edge; +For a quart of ale is a dish for a king. +The lark, that tirra-lyra chants, +With heigh! with heigh! the thrush and the jay, +Are summer songs for me and my aunts, +While we lie tumbling in the hay. +I have served Prince Florizel and in my time +wore three-pile; but now I am out of service: +But shall I go mourn for that, my dear? +The pale moon shines by night: +And when I wander here and there, +I then do most go right. +If tinkers may have leave to live, +And bear the sow-skin budget, +Then my account I well may, give, +And in the stocks avouch it. +My traffic is sheets; when the kite builds, look to +lesser linen. My father named me Autolycus; who +being, as I am, littered under Mercury, was likewise +a snapper-up of unconsidered trifles. With die and +drab I purchased this caparison, and my revenue is +the silly cheat. Gallows and knock are too powerful +on the highway: beating and hanging are terrors to +me: for the life to come, I sleep out the thought +of it. A prize! a prize! + +Clown: +Let me see: every 'leven wether tods; every tod +yields pound and odd shilling; fifteen hundred +shorn. what comes the wool to? + +AUTOLYCUS: + +Clown: +I cannot do't without counters. Let me see; what am +I to buy for our sheep-shearing feast? Three pound +of sugar, five pound of currants, rice,--what will +this sister of mine do with rice? But my father +hath made her mistress of the feast, and she lays it +on. She hath made me four and twenty nose-gays for +the shearers, three-man-song-men all, and very good +ones; but they are most of them means and bases; but +one puritan amongst them, and he sings psalms to +horn-pipes. I must have saffron to colour the warden +pies; mace; dates?--none, that's out of my note; +nutmegs, seven; a race or two of ginger, but that I +may beg; four pound of prunes, and as many of +raisins o' the sun. + +AUTOLYCUS: +O that ever I was born! + +Clown: +I' the name of me-- + +AUTOLYCUS: +O, help me, help me! pluck but off these rags; and +then, death, death! + +Clown: +Alack, poor soul! thou hast need of more rags to lay +on thee, rather than have these off. + +AUTOLYCUS: +O sir, the loathsomeness of them offends me more +than the stripes I have received, which are mighty +ones and millions. + +Clown: +Alas, poor man! a million of beating may come to a +great matter. + +AUTOLYCUS: +I am robbed, sir, and beaten; my money and apparel +ta'en from me, and these detestable things put upon +me. + +Clown: +What, by a horseman, or a footman? + +AUTOLYCUS: +A footman, sweet sir, a footman. + +Clown: +Indeed, he should be a footman by the garments he +has left with thee: if this be a horseman's coat, +it hath seen very hot service. Lend me thy hand, +I'll help thee: come, lend me thy hand. + +AUTOLYCUS: +O, good sir, tenderly, O! + +Clown: +Alas, poor soul! + +AUTOLYCUS: +O, good sir, softly, good sir! I fear, sir, my +shoulder-blade is out. + +Clown: +How now! canst stand? + +AUTOLYCUS: + +Clown: +Dost lack any money? I have a little money for thee. + +AUTOLYCUS: +No, good sweet sir; no, I beseech you, sir: I have +a kinsman not past three quarters of a mile hence, +unto whom I was going; I shall there have money, or +any thing I want: offer me no money, I pray you; +that kills my heart. + +Clown: +What manner of fellow was he that robbed you? + +AUTOLYCUS: +A fellow, sir, that I have known to go about with +troll-my-dames; I knew him once a servant of the +prince: I cannot tell, good sir, for which of his +virtues it was, but he was certainly whipped out of the court. + +Clown: +His vices, you would say; there's no virtue whipped +out of the court: they cherish it to make it stay +there; and yet it will no more but abide. + +AUTOLYCUS: +Vices, I would say, sir. I know this man well: he +hath been since an ape-bearer; then a +process-server, a bailiff; then he compassed a +motion of the Prodigal Son, and married a tinker's +wife within a mile where my land and living lies; +and, having flown over many knavish professions, he +settled only in rogue: some call him Autolycus. + +Clown: +Out upon him! prig, for my life, prig: he haunts +wakes, fairs and bear-baitings. + +AUTOLYCUS: +Very true, sir; he, sir, he; that's the rogue that +put me into this apparel. + +Clown: +Not a more cowardly rogue in all Bohemia: if you had +but looked big and spit at him, he'ld have run. + +AUTOLYCUS: +I must confess to you, sir, I am no fighter: I am +false of heart that way; and that he knew, I warrant +him. + +Clown: +How do you now? + +AUTOLYCUS: +Sweet sir, much better than I was; I can stand and +walk: I will even take my leave of you, and pace +softly towards my kinsman's. + +Clown: +Shall I bring thee on the way? + +AUTOLYCUS: +No, good-faced sir; no, sweet sir. + +Clown: +Then fare thee well: I must go buy spices for our +sheep-shearing. + +AUTOLYCUS: +Prosper you, sweet sir! +Your purse is not hot enough to purchase your spice. +I'll be with you at your sheep-shearing too: if I +make not this cheat bring out another and the +shearers prove sheep, let me be unrolled and my name +put in the book of virtue! +Jog on, jog on, the foot-path way, +And merrily hent the stile-a: +A merry heart goes all the day, +Your sad tires in a mile-a. + +FLORIZEL: +These your unusual weeds to each part of you +Do give a life: no shepherdess, but Flora +Peering in April's front. This your sheep-shearing +Is as a meeting of the petty gods, +And you the queen on't. + +PERDITA: +Sir, my gracious lord, +To chide at your extremes it not becomes me: +O, pardon, that I name them! Your high self, +The gracious mark o' the land, you have obscured +With a swain's wearing, and me, poor lowly maid, +Most goddess-like prank'd up: but that our feasts +In every mess have folly and the feeders +Digest it with a custom, I should blush +To see you so attired, sworn, I think, +To show myself a glass. + +FLORIZEL: +I bless the time +When my good falcon made her flight across +Thy father's ground. + +PERDITA: +Now Jove afford you cause! +To me the difference forges dread; your greatness +Hath not been used to fear. Even now I tremble +To think your father, by some accident, +Should pass this way as you did: O, the Fates! +How would he look, to see his work so noble +Vilely bound up? What would he say? Or how +Should I, in these my borrow'd flaunts, behold +The sternness of his presence? + +FLORIZEL: +Apprehend +Nothing but jollity. The gods themselves, +Humbling their deities to love, have taken +The shapes of beasts upon them: Jupiter +Became a bull, and bellow'd; the green Neptune +A ram, and bleated; and the fire-robed god, +Golden Apollo, a poor humble swain, +As I seem now. Their transformations +Were never for a piece of beauty rarer, +Nor in a way so chaste, since my desires +Run not before mine honour, nor my lusts +Burn hotter than my faith. + +PERDITA: +O, but, sir, +Your resolution cannot hold, when 'tis +Opposed, as it must be, by the power of the king: +One of these two must be necessities, +Which then will speak, that you must +change this purpose, +Or I my life. + +FLORIZEL: +Thou dearest Perdita, +With these forced thoughts, I prithee, darken not +The mirth o' the feast. Or I'll be thine, my fair, +Or not my father's. For I cannot be +Mine own, nor any thing to any, if +I be not thine. To this I am most constant, +Though destiny say no. Be merry, gentle; +Strangle such thoughts as these with any thing +That you behold the while. Your guests are coming: +Lift up your countenance, as it were the day +Of celebration of that nuptial which +We two have sworn shall come. + +PERDITA: +O lady Fortune, +Stand you auspicious! + +FLORIZEL: +See, your guests approach: +Address yourself to entertain them sprightly, +And let's be red with mirth. + +Shepherd: +Fie, daughter! when my old wife lived, upon +This day she was both pantler, butler, cook, +Both dame and servant; welcomed all, served all; +Would sing her song and dance her turn; now here, +At upper end o' the table, now i' the middle; +On his shoulder, and his; her face o' fire +With labour and the thing she took to quench it, +She would to each one sip. You are retired, +As if you were a feasted one and not +The hostess of the meeting: pray you, bid +These unknown friends to's welcome; for it is +A way to make us better friends, more known. +Come, quench your blushes and present yourself +That which you are, mistress o' the feast: come on, +And bid us welcome to your sheep-shearing, +As your good flock shall prosper. + +PERDITA: + +POLIXENES: +Shepherdess, +A fair one are you--well you fit our ages +With flowers of winter. + +PERDITA: +Sir, the year growing ancient, +Not yet on summer's death, nor on the birth +Of trembling winter, the fairest +flowers o' the season +Are our carnations and streak'd gillyvors, +Which some call nature's bastards: of that kind +Our rustic garden's barren; and I care not +To get slips of them. + +POLIXENES: +Wherefore, gentle maiden, +Do you neglect them? + +PERDITA: +For I have heard it said +There is an art which in their piedness shares +With great creating nature. + +POLIXENES: +Say there be; +Yet nature is made better by no mean +But nature makes that mean: so, over that art +Which you say adds to nature, is an art +That nature makes. You see, sweet maid, we marry +A gentler scion to the wildest stock, +And make conceive a bark of baser kind +By bud of nobler race: this is an art +Which does mend nature, change it rather, but +The art itself is nature. + +PERDITA: +So it is. + +POLIXENES: +Then make your garden rich in gillyvors, +And do not call them bastards. + +PERDITA: +I'll not put +The dibble in earth to set one slip of them; +No more than were I painted I would wish +This youth should say 'twere well and only therefore +Desire to breed by me. Here's flowers for you; +Hot lavender, mints, savoury, marjoram; +The marigold, that goes to bed wi' the sun +And with him rises weeping: these are flowers +Of middle summer, and I think they are given +To men of middle age. You're very welcome. + +CAMILLO: +I should leave grazing, were I of your flock, +And only live by gazing. + +PERDITA: +Out, alas! +You'd be so lean, that blasts of January +Would blow you through and through. +Now, my fair'st friend, +I would I had some flowers o' the spring that might +Become your time of day; and yours, and yours, +That wear upon your virgin branches yet +Your maidenheads growing: O Proserpina, +For the flowers now, that frighted thou let'st fall +From Dis's waggon! daffodils, +That come before the swallow dares, and take +The winds of March with beauty; violets dim, +But sweeter than the lids of Juno's eyes +Or Cytherea's breath; pale primroses +That die unmarried, ere they can behold +Bight Phoebus in his strength--a malady +Most incident to maids; bold oxlips and +The crown imperial; lilies of all kinds, +The flower-de-luce being one! O, these I lack, +To make you garlands of, and my sweet friend, +To strew him o'er and o'er! + +FLORIZEL: +What, like a corse? + +PERDITA: +No, like a bank for love to lie and play on; +Not like a corse; or if, not to be buried, +But quick and in mine arms. Come, take your flowers: +Methinks I play as I have seen them do +In Whitsun pastorals: sure this robe of mine +Does change my disposition. + +FLORIZEL: +What you do +Still betters what is done. When you speak, sweet. +I'ld have you do it ever: when you sing, +I'ld have you buy and sell so, so give alms, +Pray so; and, for the ordering your affairs, +To sing them too: when you do dance, I wish you +A wave o' the sea, that you might ever do +Nothing but that; move still, still so, +And own no other function: each your doing, +So singular in each particular, +Crowns what you are doing in the present deed, +That all your acts are queens. + +PERDITA: +O Doricles, +Your praises are too large: but that your youth, +And the true blood which peepeth fairly through't, +Do plainly give you out an unstain'd shepherd, +With wisdom I might fear, my Doricles, +You woo'd me the false way. + +FLORIZEL: +I think you have +As little skill to fear as I have purpose +To put you to't. But come; our dance, I pray: +Your hand, my Perdita: so turtles pair, +That never mean to part. + +PERDITA: +I'll swear for 'em. + +POLIXENES: +This is the prettiest low-born lass that ever +Ran on the green-sward: nothing she does or seems +But smacks of something greater than herself, +Too noble for this place. + +CAMILLO: +He tells her something +That makes her blood look out: good sooth, she is +The queen of curds and cream. + +Clown: +Come on, strike up! + +DORCAS: +Mopsa must be your mistress: marry, garlic, +To mend her kissing with! + +MOPSA: +Now, in good time! + +Clown: +Not a word, a word; we stand upon our manners. +Come, strike up! + +POLIXENES: +Pray, good shepherd, what fair swain is this +Which dances with your daughter? + +Shepherd: +They call him Doricles; and boasts himself +To have a worthy feeding: but I have it +Upon his own report and I believe it; +He looks like sooth. He says he loves my daughter: +I think so too; for never gazed the moon +Upon the water as he'll stand and read +As 'twere my daughter's eyes: and, to be plain. +I think there is not half a kiss to choose +Who loves another best. + +POLIXENES: +She dances featly. + +Shepherd: +So she does any thing; though I report it, +That should be silent: if young Doricles +Do light upon her, she shall bring him that +Which he not dreams of. + +Servant: +O master, if you did but hear the pedlar at the +door, you would never dance again after a tabour and +pipe; no, the bagpipe could not move you: he sings +several tunes faster than you'll tell money; he +utters them as he had eaten ballads and all men's +ears grew to his tunes. + +Clown: +He could never come better; he shall come in. I +love a ballad but even too well, if it be doleful +matter merrily set down, or a very pleasant thing +indeed and sung lamentably. + +Servant: +He hath songs for man or woman, of all sizes; no +milliner can so fit his customers with gloves: he +has the prettiest love-songs for maids; so without +bawdry, which is strange; with such delicate +burthens of dildos and fadings, 'jump her and thump +her;' and where some stretch-mouthed rascal would, +as it were, mean mischief and break a foul gap into +the matter, he makes the maid to answer 'Whoop, do me +no harm, good man;' puts him off, slights him, with +'Whoop, do me no harm, good man.' + +POLIXENES: +This is a brave fellow. + +Clown: +Believe me, thou talkest of an admirable conceited +fellow. Has he any unbraided wares? + +Servant: +He hath ribbons of an the colours i' the rainbow; +points more than all the lawyers in Bohemia can +learnedly handle, though they come to him by the +gross: inkles, caddisses, cambrics, lawns: why, he +sings 'em over as they were gods or goddesses; you +would think a smock were a she-angel, he so chants +to the sleeve-hand and the work about the square on't. + +Clown: +Prithee bring him in; and let him approach singing. + +PERDITA: +Forewarn him that he use no scurrilous words in 's tunes. + +Clown: +You have of these pedlars, that have more in them +than you'ld think, sister. + +PERDITA: +Ay, good brother, or go about to think. + +AUTOLYCUS: +Lawn as white as driven snow; +Cyprus black as e'er was crow; +Gloves as sweet as damask roses; +Masks for faces and for noses; +Bugle bracelet, necklace amber, +Perfume for a lady's chamber; +Golden quoifs and stomachers, +For my lads to give their dears: +Pins and poking-sticks of steel, +What maids lack from head to heel: +Come buy of me, come; come buy, come buy; +Buy lads, or else your lasses cry: Come buy. + +Clown: +If I were not in love with Mopsa, thou shouldst take +no money of me; but being enthralled as I am, it +will also be the bondage of certain ribbons and gloves. + +MOPSA: +I was promised them against the feast; but they come +not too late now. + +DORCAS: +He hath promised you more than that, or there be liars. + +MOPSA: +He hath paid you all he promised you; may be, he has +paid you more, which will shame you to give him again. + +Clown: +Is there no manners left among maids? will they +wear their plackets where they should bear their +faces? Is there not milking-time, when you are +going to bed, or kiln-hole, to whistle off these +secrets, but you must be tittle-tattling before all +our guests? 'tis well they are whispering: clamour +your tongues, and not a word more. + +MOPSA: +I have done. Come, you promised me a tawdry-lace +and a pair of sweet gloves. + +Clown: +Have I not told thee how I was cozened by the way +and lost all my money? + +AUTOLYCUS: +And indeed, sir, there are cozeners abroad; +therefore it behoves men to be wary. + +Clown: +Fear not thou, man, thou shalt lose nothing here. + +AUTOLYCUS: +I hope so, sir; for I have about me many parcels of charge. + +Clown: +What hast here? ballads? + +MOPSA: +Pray now, buy some: I love a ballad in print o' +life, for then we are sure they are true. + +AUTOLYCUS: +Here's one to a very doleful tune, how a usurer's +wife was brought to bed of twenty money-bags at a +burthen and how she longed to eat adders' heads and +toads carbonadoed. + +MOPSA: +Is it true, think you? + +AUTOLYCUS: +Very true, and but a month old. + +DORCAS: +Bless me from marrying a usurer! + +AUTOLYCUS: +Here's the midwife's name to't, one Mistress +Tale-porter, and five or six honest wives that were +present. Why should I carry lies abroad? + +MOPSA: +Pray you now, buy it. + +Clown: +Come on, lay it by: and let's first see moe +ballads; we'll buy the other things anon. + +AUTOLYCUS: +Here's another ballad of a fish, that appeared upon +the coast on Wednesday the four-score of April, +forty thousand fathom above water, and sung this +ballad against the hard hearts of maids: it was +thought she was a woman and was turned into a cold +fish for she would not exchange flesh with one that +loved her: the ballad is very pitiful and as true. + +DORCAS: +Is it true too, think you? + +AUTOLYCUS: +Five justices' hands at it, and witnesses more than +my pack will hold. + +Clown: +Lay it by too: another. + +AUTOLYCUS: +This is a merry ballad, but a very pretty one. + +MOPSA: +Let's have some merry ones. + +AUTOLYCUS: +Why, this is a passing merry one and goes to +the tune of 'Two maids wooing a man:' there's +scarce a maid westward but she sings it; 'tis in +request, I can tell you. + +MOPSA: +We can both sing it: if thou'lt bear a part, thou +shalt hear; 'tis in three parts. + +DORCAS: +We had the tune on't a month ago. + +AUTOLYCUS: +I can bear my part; you must know 'tis my +occupation; have at it with you. + +AUTOLYCUS: +Get you hence, for I must go +Where it fits not you to know. + +DORCAS: +Whither? + +MOPSA: +O, whither? + +DORCAS: +Whither? + +MOPSA: +It becomes thy oath full well, +Thou to me thy secrets tell. + +DORCAS: +Me too, let me go thither. + +MOPSA: +Or thou goest to the orange or mill. + +DORCAS: +If to either, thou dost ill. + +AUTOLYCUS: +Neither. + +DORCAS: +What, neither? + +AUTOLYCUS: +Neither. + +DORCAS: +Thou hast sworn my love to be. + +MOPSA: +Thou hast sworn it more to me: +Then whither goest? say, whither? + +Clown: +We'll have this song out anon by ourselves: my +father and the gentlemen are in sad talk, and we'll +not trouble them. Come, bring away thy pack after +me. Wenches, I'll buy for you both. Pedlar, let's +have the first choice. Follow me, girls. + +AUTOLYCUS: +And you shall pay well for 'em. +Will you buy any tape, +Or lace for your cape, +My dainty duck, my dear-a? +Any silk, any thread, +Any toys for your head, +Of the new'st and finest, finest wear-a? +Come to the pedlar; +Money's a medler. +That doth utter all men's ware-a. + +Servant: +Master, there is three carters, three shepherds, +three neat-herds, three swine-herds, that have made +themselves all men of hair, they call themselves +Saltiers, and they have a dance which the wenches +say is a gallimaufry of gambols, because they are +not in't; but they themselves are o' the mind, if it +be not too rough for some that know little but +bowling, it will please plentifully. + +Shepherd: +Away! we'll none on 't: here has been too much +homely foolery already. I know, sir, we weary you. + +POLIXENES: +You weary those that refresh us: pray, let's see +these four threes of herdsmen. + +Servant: +One three of them, by their own report, sir, hath +danced before the king; and not the worst of the +three but jumps twelve foot and a half by the squier. + +Shepherd: +Leave your prating: since these good men are +pleased, let them come in; but quickly now. + +Servant: +Why, they stay at door, sir. + +POLIXENES: +O, father, you'll know more of that hereafter. +Is it not too far gone? 'Tis time to part them. +He's simple and tells much. +How now, fair shepherd! +Your heart is full of something that does take +Your mind from feasting. Sooth, when I was young +And handed love as you do, I was wont +To load my she with knacks: I would have ransack'd +The pedlar's silken treasury and have pour'd it +To her acceptance; you have let him go +And nothing marted with him. If your lass +Interpretation should abuse and call this +Your lack of love or bounty, you were straited +For a reply, at least if you make a care +Of happy holding her. + +FLORIZEL: +Old sir, I know +She prizes not such trifles as these are: +The gifts she looks from me are pack'd and lock'd +Up in my heart; which I have given already, +But not deliver'd. O, hear me breathe my life +Before this ancient sir, who, it should seem, +Hath sometime loved! I take thy hand, this hand, +As soft as dove's down and as white as it, +Or Ethiopian's tooth, or the fann'd +snow that's bolted +By the northern blasts twice o'er. + +POLIXENES: +What follows this? +How prettily the young swain seems to wash +The hand was fair before! I have put you out: +But to your protestation; let me hear +What you profess. + +FLORIZEL: +Do, and be witness to 't. + +POLIXENES: +And this my neighbour too? + +FLORIZEL: +And he, and more +Than he, and men, the earth, the heavens, and all: +That, were I crown'd the most imperial monarch, +Thereof most worthy, were I the fairest youth +That ever made eye swerve, had force and knowledge +More than was ever man's, I would not prize them +Without her love; for her employ them all; +Commend them and condemn them to her service +Or to their own perdition. + +POLIXENES: +Fairly offer'd. + +CAMILLO: +This shows a sound affection. + +Shepherd: +But, my daughter, +Say you the like to him? + +PERDITA: +I cannot speak +So well, nothing so well; no, nor mean better: +By the pattern of mine own thoughts I cut out +The purity of his. + +Shepherd: +Take hands, a bargain! +And, friends unknown, you shall bear witness to 't: +I give my daughter to him, and will make +Her portion equal his. + +FLORIZEL: +O, that must be +I' the virtue of your daughter: one being dead, +I shall have more than you can dream of yet; +Enough then for your wonder. But, come on, +Contract us 'fore these witnesses. + +Shepherd: +Come, your hand; +And, daughter, yours. + +POLIXENES: +Soft, swain, awhile, beseech you; +Have you a father? + +FLORIZEL: +I have: but what of him? + +POLIXENES: +Knows he of this? + +FLORIZEL: +He neither does nor shall. + +POLIXENES: +Methinks a father +Is at the nuptial of his son a guest +That best becomes the table. Pray you once more, +Is not your father grown incapable +Of reasonable affairs? is he not stupid +With age and altering rheums? can he speak? hear? +Know man from man? dispute his own estate? +Lies he not bed-rid? and again does nothing +But what he did being childish? + +FLORIZEL: +No, good sir; +He has his health and ampler strength indeed +Than most have of his age. + +POLIXENES: +By my white beard, +You offer him, if this be so, a wrong +Something unfilial: reason my son +Should choose himself a wife, but as good reason +The father, all whose joy is nothing else +But fair posterity, should hold some counsel +In such a business. + +FLORIZEL: +I yield all this; +But for some other reasons, my grave sir, +Which 'tis not fit you know, I not acquaint +My father of this business. + +POLIXENES: +Let him know't. + +FLORIZEL: +He shall not. + +POLIXENES: +Prithee, let him. + +FLORIZEL: +No, he must not. + +Shepherd: +Let him, my son: he shall not need to grieve +At knowing of thy choice. + +FLORIZEL: +Come, come, he must not. +Mark our contract. + +POLIXENES: +Mark your divorce, young sir, +Whom son I dare not call; thou art too base +To be acknowledged: thou a sceptre's heir, +That thus affect'st a sheep-hook! Thou old traitor, +I am sorry that by hanging thee I can +But shorten thy life one week. And thou, fresh piece +Of excellent witchcraft, who of force must know +The royal fool thou copest with,-- + +Shepherd: +O, my heart! + +POLIXENES: +I'll have thy beauty scratch'd with briers, and made +More homely than thy state. For thee, fond boy, +If I may ever know thou dost but sigh +That thou no more shalt see this knack, as never +I mean thou shalt, we'll bar thee from succession; +Not hold thee of our blood, no, not our kin, +Far than Deucalion off: mark thou my words: +Follow us to the court. Thou churl, for this time, +Though full of our displeasure, yet we free thee +From the dead blow of it. And you, enchantment.-- +Worthy enough a herdsman: yea, him too, +That makes himself, but for our honour therein, +Unworthy thee,--if ever henceforth thou +These rural latches to his entrance open, +Or hoop his body more with thy embraces, +I will devise a death as cruel for thee +As thou art tender to't. + +PERDITA: +Even here undone! +I was not much afeard; for once or twice +I was about to speak and tell him plainly, +The selfsame sun that shines upon his court +Hides not his visage from our cottage but +Looks on alike. Will't please you, sir, be gone? +I told you what would come of this: beseech you, +Of your own state take care: this dream of mine,-- +Being now awake, I'll queen it no inch farther, +But milk my ewes and weep. + +CAMILLO: +Why, how now, father! +Speak ere thou diest. + +Shepherd: +I cannot speak, nor think +Nor dare to know that which I know. O sir! +You have undone a man of fourscore three, +That thought to fill his grave in quiet, yea, +To die upon the bed my father died, +To lie close by his honest bones: but now +Some hangman must put on my shroud and lay me +Where no priest shovels in dust. O cursed wretch, +That knew'st this was the prince, +and wouldst adventure +To mingle faith with him! Undone! undone! +If I might die within this hour, I have lived +To die when I desire. + +FLORIZEL: +Why look you so upon me? +I am but sorry, not afeard; delay'd, +But nothing alter'd: what I was, I am; +More straining on for plucking back, not following +My leash unwillingly. + +CAMILLO: +Gracious my lord, +You know your father's temper: at this time +He will allow no speech, which I do guess +You do not purpose to him; and as hardly +Will he endure your sight as yet, I fear: +Then, till the fury of his highness settle, +Come not before him. + +FLORIZEL: +I not purpose it. +I think, Camillo? + +CAMILLO: +Even he, my lord. + +PERDITA: +How often have I told you 'twould be thus! +How often said, my dignity would last +But till 'twere known! + +FLORIZEL: +It cannot fail but by +The violation of my faith; and then +Let nature crush the sides o' the earth together +And mar the seeds within! Lift up thy looks: +From my succession wipe me, father; I +Am heir to my affection. + +CAMILLO: +Be advised. + +FLORIZEL: +I am, and by my fancy: if my reason +Will thereto be obedient, I have reason; +If not, my senses, better pleased with madness, +Do bid it welcome. + +CAMILLO: +This is desperate, sir. + +FLORIZEL: +So call it: but it does fulfil my vow; +I needs must think it honesty. Camillo, +Not for Bohemia, nor the pomp that may +Be thereat glean'd, for all the sun sees or +The close earth wombs or the profound sea hides +In unknown fathoms, will I break my oath +To this my fair beloved: therefore, I pray you, +As you have ever been my father's honour'd friend, +When he shall miss me,--as, in faith, I mean not +To see him any more,--cast your good counsels +Upon his passion; let myself and fortune +Tug for the time to come. This you may know +And so deliver, I am put to sea +With her whom here I cannot hold on shore; +And most opportune to our need I have +A vessel rides fast by, but not prepared +For this design. What course I mean to hold +Shall nothing benefit your knowledge, nor +Concern me the reporting. + +CAMILLO: +O my lord! +I would your spirit were easier for advice, +Or stronger for your need. + +FLORIZEL: +Hark, Perdita +I'll hear you by and by. + +CAMILLO: +He's irremoveable, +Resolved for flight. Now were I happy, if +His going I could frame to serve my turn, +Save him from danger, do him love and honour, +Purchase the sight again of dear Sicilia +And that unhappy king, my master, whom +I so much thirst to see. + +FLORIZEL: +Now, good Camillo; +I am so fraught with curious business that +I leave out ceremony. + +CAMILLO: +Sir, I think +You have heard of my poor services, i' the love +That I have borne your father? + +FLORIZEL: +Very nobly +Have you deserved: it is my father's music +To speak your deeds, not little of his care +To have them recompensed as thought on. + +CAMILLO: +Well, my lord, +If you may please to think I love the king +And through him what is nearest to him, which is +Your gracious self, embrace but my direction: +If your more ponderous and settled project +May suffer alteration, on mine honour, +I'll point you where you shall have such receiving +As shall become your highness; where you may +Enjoy your mistress, from the whom, I see, +There's no disjunction to be made, but by-- +As heavens forefend!--your ruin; marry her, +And, with my best endeavours in your absence, +Your discontenting father strive to qualify +And bring him up to liking. + +FLORIZEL: +How, Camillo, +May this, almost a miracle, be done? +That I may call thee something more than man +And after that trust to thee. + +CAMILLO: +Have you thought on +A place whereto you'll go? + +FLORIZEL: +Not any yet: +But as the unthought-on accident is guilty +To what we wildly do, so we profess +Ourselves to be the slaves of chance and flies +Of every wind that blows. + +CAMILLO: +Then list to me: +This follows, if you will not change your purpose +But undergo this flight, make for Sicilia, +And there present yourself and your fair princess, +For so I see she must be, 'fore Leontes: +She shall be habited as it becomes +The partner of your bed. Methinks I see +Leontes opening his free arms and weeping +His welcomes forth; asks thee the son forgiveness, +As 'twere i' the father's person; kisses the hands +Of your fresh princess; o'er and o'er divides him +'Twixt his unkindness and his kindness; the one +He chides to hell and bids the other grow +Faster than thought or time. + +FLORIZEL: +Worthy Camillo, +What colour for my visitation shall I +Hold up before him? + +CAMILLO: +Sent by the king your father +To greet him and to give him comforts. Sir, +The manner of your bearing towards him, with +What you as from your father shall deliver, +Things known betwixt us three, I'll write you down: +The which shall point you forth at every sitting +What you must say; that he shall not perceive +But that you have your father's bosom there +And speak his very heart. + +FLORIZEL: +I am bound to you: +There is some sap in this. + +CAMILLO: +A cause more promising +Than a wild dedication of yourselves +To unpath'd waters, undream'd shores, most certain +To miseries enough; no hope to help you, +But as you shake off one to take another; +Nothing so certain as your anchors, who +Do their best office, if they can but stay you +Where you'll be loath to be: besides you know +Prosperity's the very bond of love, +Whose fresh complexion and whose heart together +Affliction alters. + +PERDITA: +One of these is true: +I think affliction may subdue the cheek, +But not take in the mind. + +CAMILLO: +Yea, say you so? +There shall not at your father's house these +seven years +Be born another such. + +FLORIZEL: +My good Camillo, +She is as forward of her breeding as +She is i' the rear our birth. + +CAMILLO: +I cannot say 'tis pity +She lacks instructions, for she seems a mistress +To most that teach. + +PERDITA: +Your pardon, sir; for this +I'll blush you thanks. + +FLORIZEL: +My prettiest Perdita! +But O, the thorns we stand upon! Camillo, +Preserver of my father, now of me, +The medicine of our house, how shall we do? +We are not furnish'd like Bohemia's son, +Nor shall appear in Sicilia. + +CAMILLO: +My lord, +Fear none of this: I think you know my fortunes +Do all lie there: it shall be so my care +To have you royally appointed as if +The scene you play were mine. For instance, sir, +That you may know you shall not want, one word. + +AUTOLYCUS: +Ha, ha! what a fool Honesty is! and Trust, his +sworn brother, a very simple gentleman! I have sold +all my trumpery; not a counterfeit stone, not a +ribbon, glass, pomander, brooch, table-book, ballad, +knife, tape, glove, shoe-tie, bracelet, horn-ring, +to keep my pack from fasting: they throng who +should buy first, as if my trinkets had been +hallowed and brought a benediction to the buyer: +by which means I saw whose purse was best in +picture; and what I saw, to my good use I +remembered. My clown, who wants but something to +be a reasonable man, grew so in love with the +wenches' song, that he would not stir his pettitoes +till he had both tune and words; which so drew the +rest of the herd to me that all their other senses +stuck in ears: you might have pinched a placket, it +was senseless; 'twas nothing to geld a codpiece of a +purse; I could have filed keys off that hung in +chains: no hearing, no feeling, but my sir's song, +and admiring the nothing of it. So that in this +time of lethargy I picked and cut most of their +festival purses; and had not the old man come in +with a whoo-bub against his daughter and the king's +son and scared my choughs from the chaff, I had not +left a purse alive in the whole army. + +CAMILLO: +Nay, but my letters, by this means being there +So soon as you arrive, shall clear that doubt. + +FLORIZEL: +And those that you'll procure from King Leontes-- + +CAMILLO: +Shall satisfy your father. + +PERDITA: +Happy be you! +All that you speak shows fair. + +CAMILLO: +Who have we here? +We'll make an instrument of this, omit +Nothing may give us aid. + +AUTOLYCUS: +If they have overheard me now, why, hanging. + +CAMILLO: +How now, good fellow! why shakest thou so? Fear +not, man; here's no harm intended to thee. + +AUTOLYCUS: +I am a poor fellow, sir. + +CAMILLO: +Why, be so still; here's nobody will steal that from +thee: yet for the outside of thy poverty we must +make an exchange; therefore discase thee instantly, +--thou must think there's a necessity in't,--and +change garments with this gentleman: though the +pennyworth on his side be the worst, yet hold thee, +there's some boot. + +AUTOLYCUS: +I am a poor fellow, sir. +I know ye well enough. + +CAMILLO: +Nay, prithee, dispatch: the gentleman is half +flayed already. + +AUTOLYCUS: +Are you in earnest, sir? +I smell the trick on't. + +FLORIZEL: +Dispatch, I prithee. + +AUTOLYCUS: +Indeed, I have had earnest: but I cannot with +conscience take it. + +CAMILLO: +Unbuckle, unbuckle. +Fortunate mistress,--let my prophecy +Come home to ye!--you must retire yourself +Into some covert: take your sweetheart's hat +And pluck it o'er your brows, muffle your face, +Dismantle you, and, as you can, disliken +The truth of your own seeming; that you may-- +For I do fear eyes over--to shipboard +Get undescried. + +PERDITA: +I see the play so lies +That I must bear a part. + +CAMILLO: +No remedy. +Have you done there? + +FLORIZEL: +Should I now meet my father, +He would not call me son. + +CAMILLO: +Nay, you shall have no hat. +Come, lady, come. Farewell, my friend. + +AUTOLYCUS: +Adieu, sir. + +FLORIZEL: +O Perdita, what have we twain forgot! +Pray you, a word. + +CAMILLO: + +FLORIZEL: +Fortune speed us! +Thus we set on, Camillo, to the sea-side. + +CAMILLO: +The swifter speed the better. + +AUTOLYCUS: +I understand the business, I hear it: to have an +open ear, a quick eye, and a nimble hand, is +necessary for a cut-purse; a good nose is requisite +also, to smell out work for the other senses. I see +this is the time that the unjust man doth thrive. +What an exchange had this been without boot! What +a boot is here with this exchange! Sure the gods do +this year connive at us, and we may do any thing +extempore. The prince himself is about a piece of +iniquity, stealing away from his father with his +clog at his heels: if I thought it were a piece of +honesty to acquaint the king withal, I would not +do't: I hold it the more knavery to conceal it; +and therein am I constant to my profession. +Aside, aside; here is more matter for a hot brain: +every lane's end, every shop, church, session, +hanging, yields a careful man work. + +Clown: +See, see; what a man you are now! +There is no other way but to tell the king +she's a changeling and none of your flesh and blood. + +Shepherd: +Nay, but hear me. + +Clown: +Nay, but hear me. + +Shepherd: +Go to, then. + +Clown: +She being none of your flesh and blood, your flesh +and blood has not offended the king; and so your +flesh and blood is not to be punished by him. Show +those things you found about her, those secret +things, all but what she has with her: this being +done, let the law go whistle: I warrant you. + +Shepherd: +I will tell the king all, every word, yea, and his +son's pranks too; who, I may say, is no honest man, +neither to his father nor to me, to go about to make +me the king's brother-in-law. + +Clown: +Indeed, brother-in-law was the farthest off you +could have been to him and then your blood had been +the dearer by I know how much an ounce. + +AUTOLYCUS: + +Shepherd: +Well, let us to the king: there is that in this +fardel will make him scratch his beard. + +AUTOLYCUS: + +Clown: +Pray heartily he be at palace. + +AUTOLYCUS: + +Shepherd: +To the palace, an it like your worship. + +AUTOLYCUS: +Your affairs there, what, with whom, the condition +of that fardel, the place of your dwelling, your +names, your ages, of what having, breeding, and any +thing that is fitting to be known, discover. + +Clown: +We are but plain fellows, sir. + +AUTOLYCUS: +A lie; you are rough and hairy. Let me have no +lying: it becomes none but tradesmen, and they +often give us soldiers the lie: but we pay them for +it with stamped coin, not stabbing steel; therefore +they do not give us the lie. + +Clown: +Your worship had like to have given us one, if you +had not taken yourself with the manner. + +Shepherd: +Are you a courtier, an't like you, sir? + +AUTOLYCUS: +Whether it like me or no, I am a courtier. Seest +thou not the air of the court in these enfoldings? +hath not my gait in it the measure of the court? +receives not thy nose court-odor from me? reflect I +not on thy baseness court-contempt? Thinkest thou, +for that I insinuate, or toaze from thee thy +business, I am therefore no courtier? I am courtier +cap-a-pe; and one that will either push on or pluck +back thy business there: whereupon I command thee to +open thy affair. + +Shepherd: +My business, sir, is to the king. + +AUTOLYCUS: +What advocate hast thou to him? + +Shepherd: +I know not, an't like you. + +Clown: +Advocate's the court-word for a pheasant: say you +have none. + +Shepherd: +None, sir; I have no pheasant, cock nor hen. + +AUTOLYCUS: +How blessed are we that are not simple men! +Yet nature might have made me as these are, +Therefore I will not disdain. + +Clown: +This cannot be but a great courtier. + +Shepherd: +His garments are rich, but he wears +them not handsomely. + +Clown: +He seems to be the more noble in being fantastical: +a great man, I'll warrant; I know by the picking +on's teeth. + +AUTOLYCUS: +The fardel there? what's i' the fardel? +Wherefore that box? + +Shepherd: +Sir, there lies such secrets in this fardel and box, +which none must know but the king; and which he +shall know within this hour, if I may come to the +speech of him. + +AUTOLYCUS: +Age, thou hast lost thy labour. + +Shepherd: +Why, sir? + +AUTOLYCUS: +The king is not at the palace; he is gone aboard a +new ship to purge melancholy and air himself: for, +if thou beest capable of things serious, thou must +know the king is full of grief. + +Shepard: +So 'tis said, sir; about his son, that should have +married a shepherd's daughter. + +AUTOLYCUS: +If that shepherd be not in hand-fast, let him fly: +the curses he shall have, the tortures he shall +feel, will break the back of man, the heart of monster. + +Clown: +Think you so, sir? + +AUTOLYCUS: +Not he alone shall suffer what wit can make heavy +and vengeance bitter; but those that are germane to +him, though removed fifty times, shall all come +under the hangman: which though it be great pity, +yet it is necessary. An old sheep-whistling rogue a +ram-tender, to offer to have his daughter come into +grace! Some say he shall be stoned; but that death +is too soft for him, say I draw our throne into a +sheep-cote! all deaths are too few, the sharpest too easy. + +Clown: +Has the old man e'er a son, sir, do you hear. an't +like you, sir? + +AUTOLYCUS: +He has a son, who shall be flayed alive; then +'nointed over with honey, set on the head of a +wasp's nest; then stand till he be three quarters +and a dram dead; then recovered again with +aqua-vitae or some other hot infusion; then, raw as +he is, and in the hottest day prognostication +proclaims, shall be be set against a brick-wall, the +sun looking with a southward eye upon him, where he +is to behold him with flies blown to death. But what +talk we of these traitorly rascals, whose miseries +are to be smiled at, their offences being so +capital? Tell me, for you seem to be honest plain +men, what you have to the king: being something +gently considered, I'll bring you where he is +aboard, tender your persons to his presence, +whisper him in your behalfs; and if it be in man +besides the king to effect your suits, here is man +shall do it. + +Clown: +He seems to be of great authority: close with him, +give him gold; and though authority be a stubborn +bear, yet he is oft led by the nose with gold: show +the inside of your purse to the outside of his hand, +and no more ado. Remember 'stoned,' and 'flayed alive.' + +Shepherd: +An't please you, sir, to undertake the business for +us, here is that gold I have: I'll make it as much +more and leave this young man in pawn till I bring it you. + +AUTOLYCUS: +After I have done what I promised? + +Shepherd: +Ay, sir. + +AUTOLYCUS: +Well, give me the moiety. Are you a party in this business? + +Clown: +In some sort, sir: but though my case be a pitiful +one, I hope I shall not be flayed out of it. + +AUTOLYCUS: +O, that's the case of the shepherd's son: hang him, +he'll be made an example. + +Clown: +Comfort, good comfort! We must to the king and show +our strange sights: he must know 'tis none of your +daughter nor my sister; we are gone else. Sir, I +will give you as much as this old man does when the +business is performed, and remain, as he says, your +pawn till it be brought you. + +AUTOLYCUS: +I will trust you. Walk before toward the sea-side; +go on the right hand: I will but look upon the +hedge and follow you. + +Clown: +We are blest in this man, as I may say, even blest. + +Shepherd: +Let's before as he bids us: he was provided to do us good. + +AUTOLYCUS: +If I had a mind to be honest, I see Fortune would +not suffer me: she drops booties in my mouth. I am +courted now with a double occasion, gold and a means +to do the prince my master good; which who knows how +that may turn back to my advancement? I will bring +these two moles, these blind ones, aboard him: if he +think it fit to shore them again and that the +complaint they have to the king concerns him +nothing, let him call me rogue for being so far +officious; for I am proof against that title and +what shame else belongs to't. To him will I present +them: there may be matter in it. + +CLEOMENES: +Sir, you have done enough, and have perform'd +A saint-like sorrow: no fault could you make, +Which you have not redeem'd; indeed, paid down +More penitence than done trespass: at the last, +Do as the heavens have done, forget your evil; +With them forgive yourself. + +LEONTES: +Whilst I remember +Her and her virtues, I cannot forget +My blemishes in them, and so still think of +The wrong I did myself; which was so much, +That heirless it hath made my kingdom and +Destroy'd the sweet'st companion that e'er man +Bred his hopes out of. + +PAULINA: +True, too true, my lord: +If, one by one, you wedded all the world, +Or from the all that are took something good, +To make a perfect woman, she you kill'd +Would be unparallel'd. + +LEONTES: +I think so. Kill'd! +She I kill'd! I did so: but thou strikest me +Sorely, to say I did; it is as bitter +Upon thy tongue as in my thought: now, good now, +Say so but seldom. + +CLEOMENES: +Not at all, good lady: +You might have spoken a thousand things that would +Have done the time more benefit and graced +Your kindness better. + +PAULINA: +You are one of those +Would have him wed again. + +DION: +If you would not so, +You pity not the state, nor the remembrance +Of his most sovereign name; consider little +What dangers, by his highness' fail of issue, +May drop upon his kingdom and devour +Incertain lookers on. What were more holy +Than to rejoice the former queen is well? +What holier than, for royalty's repair, +For present comfort and for future good, +To bless the bed of majesty again +With a sweet fellow to't? + +PAULINA: +There is none worthy, +Respecting her that's gone. Besides, the gods +Will have fulfill'd their secret purposes; +For has not the divine Apollo said, +Is't not the tenor of his oracle, +That King Leontes shall not have an heir +Till his lost child be found? which that it shall, +Is all as monstrous to our human reason +As my Antigonus to break his grave +And come again to me; who, on my life, +Did perish with the infant. 'Tis your counsel +My lord should to the heavens be contrary, +Oppose against their wills. +Care not for issue; +The crown will find an heir: great Alexander +Left his to the worthiest; so his successor +Was like to be the best. + +LEONTES: +Good Paulina, +Who hast the memory of Hermione, +I know, in honour, O, that ever I +Had squared me to thy counsel! then, even now, +I might have look'd upon my queen's full eyes, +Have taken treasure from her lips-- + +PAULINA: +And left them +More rich for what they yielded. + +LEONTES: +Thou speak'st truth. +No more such wives; therefore, no wife: one worse, +And better used, would make her sainted spirit +Again possess her corpse, and on this stage, +Where we're offenders now, appear soul-vex'd, +And begin, 'Why to me?' + +PAULINA: +Had she such power, +She had just cause. + +LEONTES: +She had; and would incense me +To murder her I married. + +PAULINA: +I should so. +Were I the ghost that walk'd, I'ld bid you mark +Her eye, and tell me for what dull part in't +You chose her; then I'ld shriek, that even your ears +Should rift to hear me; and the words that follow'd +Should be 'Remember mine.' + +LEONTES: +Stars, stars, +And all eyes else dead coals! Fear thou no wife; +I'll have no wife, Paulina. + +PAULINA: +Will you swear +Never to marry but by my free leave? + +LEONTES: +Never, Paulina; so be blest my spirit! + +PAULINA: +Then, good my lords, bear witness to his oath. + +CLEOMENES: +You tempt him over-much. + +PAULINA: +Unless another, +As like Hermione as is her picture, +Affront his eye. + +CLEOMENES: +Good madam,-- + +PAULINA: +I have done. +Yet, if my lord will marry,--if you will, sir, +No remedy, but you will,--give me the office +To choose you a queen: she shall not be so young +As was your former; but she shall be such +As, walk'd your first queen's ghost, +it should take joy +To see her in your arms. + +LEONTES: +My true Paulina, +We shall not marry till thou bid'st us. + +PAULINA: +That +Shall be when your first queen's again in breath; +Never till then. + +Gentleman: +One that gives out himself Prince Florizel, +Son of Polixenes, with his princess, she +The fairest I have yet beheld, desires access +To your high presence. + +LEONTES: +What with him? he comes not +Like to his father's greatness: his approach, +So out of circumstance and sudden, tells us +'Tis not a visitation framed, but forced +By need and accident. What train? + +Gentleman: +But few, +And those but mean. + +LEONTES: +His princess, say you, with him? + +Gentleman: +Ay, the most peerless piece of earth, I think, +That e'er the sun shone bright on. + +PAULINA: +O Hermione, +As every present time doth boast itself +Above a better gone, so must thy grave +Give way to what's seen now! Sir, you yourself +Have said and writ so, but your writing now +Is colder than that theme, 'She had not been, +Nor was not to be equall'd;'--thus your verse +Flow'd with her beauty once: 'tis shrewdly ebb'd, +To say you have seen a better. + +Gentleman: +Pardon, madam: +The one I have almost forgot,--your pardon,-- +The other, when she has obtain'd your eye, +Will have your tongue too. This is a creature, +Would she begin a sect, might quench the zeal +Of all professors else, make proselytes +Of who she but bid follow. + +PAULINA: +How! not women? + +Gentleman: +Women will love her, that she is a woman +More worth than any man; men, that she is +The rarest of all women. + +LEONTES: +Go, Cleomenes; +Yourself, assisted with your honour'd friends, +Bring them to our embracement. Still, 'tis strange +He thus should steal upon us. + +PAULINA: +Had our prince, +Jewel of children, seen this hour, he had pair'd +Well with this lord: there was not full a month +Between their births. + +LEONTES: +Prithee, no more; cease; thou know'st +He dies to me again when talk'd of: sure, +When I shall see this gentleman, thy speeches +Will bring me to consider that which may +Unfurnish me of reason. They are come. +Your mother was most true to wedlock, prince; +For she did print your royal father off, +Conceiving you: were I but twenty-one, +Your father's image is so hit in you, +His very air, that I should call you brother, +As I did him, and speak of something wildly +By us perform'd before. Most dearly welcome! +And your fair princess,--goddess!--O, alas! +I lost a couple, that 'twixt heaven and earth +Might thus have stood begetting wonder as +You, gracious couple, do: and then I lost-- +All mine own folly--the society, +Amity too, of your brave father, whom, +Though bearing misery, I desire my life +Once more to look on him. + +FLORIZEL: +By his command +Have I here touch'd Sicilia and from him +Give you all greetings that a king, at friend, +Can send his brother: and, but infirmity +Which waits upon worn times hath something seized +His wish'd ability, he had himself +The lands and waters 'twixt your throne and his +Measured to look upon you; whom he loves-- +He bade me say so--more than all the sceptres +And those that bear them living. + +LEONTES: +O my brother, +Good gentleman! the wrongs I have done thee stir +Afresh within me, and these thy offices, +So rarely kind, are as interpreters +Of my behind-hand slackness. Welcome hither, +As is the spring to the earth. And hath he too +Exposed this paragon to the fearful usage, +At least ungentle, of the dreadful Neptune, +To greet a man not worth her pains, much less +The adventure of her person? + +FLORIZEL: +Good my lord, +She came from Libya. + +LEONTES: +Where the warlike Smalus, +That noble honour'd lord, is fear'd and loved? + +FLORIZEL: +Most royal sir, from thence; from him, whose daughter +His tears proclaim'd his, parting with her: thence, +A prosperous south-wind friendly, we have cross'd, +To execute the charge my father gave me +For visiting your highness: my best train +I have from your Sicilian shores dismiss'd; +Who for Bohemia bend, to signify +Not only my success in Libya, sir, +But my arrival and my wife's in safety +Here where we are. + +LEONTES: +The blessed gods +Purge all infection from our air whilst you +Do climate here! You have a holy father, +A graceful gentleman; against whose person, +So sacred as it is, I have done sin: +For which the heavens, taking angry note, +Have left me issueless; and your father's blest, +As he from heaven merits it, with you +Worthy his goodness. What might I have been, +Might I a son and daughter now have look'd on, +Such goodly things as you! + +Lord: +Most noble sir, +That which I shall report will bear no credit, +Were not the proof so nigh. Please you, great sir, +Bohemia greets you from himself by me; +Desires you to attach his son, who has-- +His dignity and duty both cast off-- +Fled from his father, from his hopes, and with +A shepherd's daughter. + +LEONTES: +Where's Bohemia? speak. + +Lord: +Here in your city; I now came from him: +I speak amazedly; and it becomes +My marvel and my message. To your court +Whiles he was hastening, in the chase, it seems, +Of this fair couple, meets he on the way +The father of this seeming lady and +Her brother, having both their country quitted +With this young prince. + +FLORIZEL: +Camillo has betray'd me; +Whose honour and whose honesty till now +Endured all weathers. + +Lord: +Lay't so to his charge: +He's with the king your father. + +LEONTES: +Who? Camillo? + +Lord: +Camillo, sir; I spake with him; who now +Has these poor men in question. Never saw I +Wretches so quake: they kneel, they kiss the earth; +Forswear themselves as often as they speak: +Bohemia stops his ears, and threatens them +With divers deaths in death. + +PERDITA: +O my poor father! +The heaven sets spies upon us, will not have +Our contract celebrated. + +LEONTES: +You are married? + +FLORIZEL: +We are not, sir, nor are we like to be; +The stars, I see, will kiss the valleys first: +The odds for high and low's alike. + +LEONTES: +My lord, +Is this the daughter of a king? + +FLORIZEL: +She is, +When once she is my wife. + +LEONTES: +That 'once' I see by your good father's speed +Will come on very slowly. I am sorry, +Most sorry, you have broken from his liking +Where you were tied in duty, and as sorry +Your choice is not so rich in worth as beauty, +That you might well enjoy her. + +FLORIZEL: +Dear, look up: +Though Fortune, visible an enemy, +Should chase us with my father, power no jot +Hath she to change our loves. Beseech you, sir, +Remember since you owed no more to time +Than I do now: with thought of such affections, +Step forth mine advocate; at your request +My father will grant precious things as trifles. + +LEONTES: +Would he do so, I'ld beg your precious mistress, +Which he counts but a trifle. + +PAULINA: +Sir, my liege, +Your eye hath too much youth in't: not a month +'Fore your queen died, she was more worth such gazes +Than what you look on now. + +LEONTES: +I thought of her, +Even in these looks I made. +But your petition +Is yet unanswer'd. I will to your father: +Your honour not o'erthrown by your desires, +I am friend to them and you: upon which errand +I now go toward him; therefore follow me +And mark what way I make: come, good my lord. + +AUTOLYCUS: +Beseech you, sir, were you present at this relation? + +First Gentleman: +I was by at the opening of the fardel, heard the old +shepherd deliver the manner how he found it: +whereupon, after a little amazedness, we were all +commanded out of the chamber; only this methought I +heard the shepherd say, he found the child. + +AUTOLYCUS: +I would most gladly know the issue of it. + +First Gentleman: +I make a broken delivery of the business; but the +changes I perceived in the king and Camillo were +very notes of admiration: they seemed almost, with +staring on one another, to tear the cases of their +eyes; there was speech in their dumbness, language +in their very gesture; they looked as they had heard +of a world ransomed, or one destroyed: a notable +passion of wonder appeared in them; but the wisest +beholder, that knew no more but seeing, could not +say if the importance were joy or sorrow; but in the +extremity of the one, it must needs be. +Here comes a gentleman that haply knows more. +The news, Rogero? + +Second Gentleman: +Nothing but bonfires: the oracle is fulfilled; the +king's daughter is found: such a deal of wonder is +broken out within this hour that ballad-makers +cannot be able to express it. +Here comes the Lady Paulina's steward: he can +deliver you more. How goes it now, sir? this news +which is called true is so like an old tale, that +the verity of it is in strong suspicion: has the king +found his heir? + +Third Gentleman: +Most true, if ever truth were pregnant by +circumstance: that which you hear you'll swear you +see, there is such unity in the proofs. The mantle +of Queen Hermione's, her jewel about the neck of it, +the letters of Antigonus found with it which they +know to be his character, the majesty of the +creature in resemblance of the mother, the affection +of nobleness which nature shows above her breeding, +and many other evidences proclaim her with all +certainty to be the king's daughter. Did you see +the meeting of the two kings? + +Second Gentleman: +No. + +Third Gentleman: +Then have you lost a sight, which was to be seen, +cannot be spoken of. There might you have beheld one +joy crown another, so and in such manner that it +seemed sorrow wept to take leave of them, for their +joy waded in tears. There was casting up of eyes, +holding up of hands, with countenances of such +distraction that they were to be known by garment, +not by favour. Our king, being ready to leap out of +himself for joy of his found daughter, as if that +joy were now become a loss, cries 'O, thy mother, +thy mother!' then asks Bohemia forgiveness; then +embraces his son-in-law; then again worries he his +daughter with clipping her; now he thanks the old +shepherd, which stands by like a weather-bitten +conduit of many kings' reigns. I never heard of such +another encounter, which lames report to follow it +and undoes description to do it. + +Second Gentleman: +What, pray you, became of Antigonus, that carried +hence the child? + +Third Gentleman: +Like an old tale still, which will have matter to +rehearse, though credit be asleep and not an ear +open. He was torn to pieces with a bear: this +avouches the shepherd's son; who has not only his +innocence, which seems much, to justify him, but a +handkerchief and rings of his that Paulina knows. + +First Gentleman: +What became of his bark and his followers? + +Third Gentleman: +Wrecked the same instant of their master's death and +in the view of the shepherd: so that all the +instruments which aided to expose the child were +even then lost when it was found. But O, the noble +combat that 'twixt joy and sorrow was fought in +Paulina! She had one eye declined for the loss of +her husband, another elevated that the oracle was +fulfilled: she lifted the princess from the earth, +and so locks her in embracing, as if she would pin +her to her heart that she might no more be in danger +of losing. + +First Gentleman: +The dignity of this act was worth the audience of +kings and princes; for by such was it acted. + +Third Gentleman: +One of the prettiest touches of all and that which +angled for mine eyes, caught the water though not +the fish, was when, at the relation of the queen's +death, with the manner how she came to't bravely +confessed and lamented by the king, how +attentiveness wounded his daughter; till, from one +sign of dolour to another, she did, with an 'Alas,' +I would fain say, bleed tears, for I am sure my +heart wept blood. Who was most marble there changed +colour; some swooned, all sorrowed: if all the world +could have seen 't, the woe had been universal. + +First Gentleman: +Are they returned to the court? + +Third Gentleman: +No: the princess hearing of her mother's statue, +which is in the keeping of Paulina,--a piece many +years in doing and now newly performed by that rare +Italian master, Julio Romano, who, had he himself +eternity and could put breath into his work, would +beguile Nature of her custom, so perfectly he is her +ape: he so near to Hermione hath done Hermione that +they say one would speak to her and stand in hope of +answer: thither with all greediness of affection +are they gone, and there they intend to sup. + +Second Gentleman: +I thought she had some great matter there in hand; +for she hath privately twice or thrice a day, ever +since the death of Hermione, visited that removed +house. Shall we thither and with our company piece +the rejoicing? + +First Gentleman: +Who would be thence that has the benefit of access? +every wink of an eye some new grace will be born: +our absence makes us unthrifty to our knowledge. +Let's along. + +AUTOLYCUS: +Now, had I not the dash of my former life in me, +would preferment drop on my head. I brought the old +man and his son aboard the prince: told him I heard +them talk of a fardel and I know not what: but he +at that time, overfond of the shepherd's daughter, +so he then took her to be, who began to be much +sea-sick, and himself little better, extremity of +weather continuing, this mystery remained +undiscovered. But 'tis all one to me; for had I +been the finder out of this secret, it would not +have relished among my other discredits. +Here come those I have done good to against my will, +and already appearing in the blossoms of their fortune. + +Shepherd: +Come, boy; I am past moe children, but thy sons and +daughters will be all gentlemen born. + +Clown: +You are well met, sir. You denied to fight with me +this other day, because I was no gentleman born. +See you these clothes? say you see them not and +think me still no gentleman born: you were best say +these robes are not gentlemen born: give me the +lie, do, and try whether I am not now a gentleman born. + +AUTOLYCUS: +I know you are now, sir, a gentleman born. + +Clown: +Ay, and have been so any time these four hours. + +Shepherd: +And so have I, boy. + +Clown: +So you have: but I was a gentleman born before my +father; for the king's son took me by the hand, and +called me brother; and then the two kings called my +father brother; and then the prince my brother and +the princess my sister called my father father; and +so we wept, and there was the first gentleman-like +tears that ever we shed. + +Shepherd: +We may live, son, to shed many more. + +Clown: +Ay; or else 'twere hard luck, being in so +preposterous estate as we are. + +AUTOLYCUS: +I humbly beseech you, sir, to pardon me all the +faults I have committed to your worship and to give +me your good report to the prince my master. + +Shepherd: +Prithee, son, do; for we must be gentle, now we are +gentlemen. + +Clown: +Thou wilt amend thy life? + +AUTOLYCUS: +Ay, an it like your good worship. + +Clown: +Give me thy hand: I will swear to the prince thou +art as honest a true fellow as any is in Bohemia. + +Shepherd: +You may say it, but not swear it. + +Clown: +Not swear it, now I am a gentleman? Let boors and +franklins say it, I'll swear it. + +Shepherd: +How if it be false, son? + +Clown: +If it be ne'er so false, a true gentleman may swear +it in the behalf of his friend: and I'll swear to +the prince thou art a tall fellow of thy hands and +that thou wilt not be drunk; but I know thou art no +tall fellow of thy hands and that thou wilt be +drunk: but I'll swear it, and I would thou wouldst +be a tall fellow of thy hands. + +AUTOLYCUS: +I will prove so, sir, to my power. + +Clown: +Ay, by any means prove a tall fellow: if I do not +wonder how thou darest venture to be drunk, not +being a tall fellow, trust me not. Hark! the kings +and the princes, our kindred, are going to see the +queen's picture. Come, follow us: we'll be thy +good masters. + +LEONTES: +O grave and good Paulina, the great comfort +That I have had of thee! + +PAULINA: +What, sovereign sir, +I did not well I meant well. All my services +You have paid home: but that you have vouchsafed, +With your crown'd brother and these your contracted +Heirs of your kingdoms, my poor house to visit, +It is a surplus of your grace, which never +My life may last to answer. + +LEONTES: +O Paulina, +We honour you with trouble: but we came +To see the statue of our queen: your gallery +Have we pass'd through, not without much content +In many singularities; but we saw not +That which my daughter came to look upon, +The statue of her mother. + +PAULINA: +As she lived peerless, +So her dead likeness, I do well believe, +Excels whatever yet you look'd upon +Or hand of man hath done; therefore I keep it +Lonely, apart. But here it is: prepare +To see the life as lively mock'd as ever +Still sleep mock'd death: behold, and say 'tis well. +I like your silence, it the more shows off +Your wonder: but yet speak; first, you, my liege, +Comes it not something near? + +LEONTES: +Her natural posture! +Chide me, dear stone, that I may say indeed +Thou art Hermione; or rather, thou art she +In thy not chiding, for she was as tender +As infancy and grace. But yet, Paulina, +Hermione was not so much wrinkled, nothing +So aged as this seems. + +POLIXENES: +O, not by much. + +PAULINA: +So much the more our carver's excellence; +Which lets go by some sixteen years and makes her +As she lived now. + +LEONTES: +As now she might have done, +So much to my good comfort, as it is +Now piercing to my soul. O, thus she stood, +Even with such life of majesty, warm life, +As now it coldly stands, when first I woo'd her! +I am ashamed: does not the stone rebuke me +For being more stone than it? O royal piece, +There's magic in thy majesty, which has +My evils conjured to remembrance and +From thy admiring daughter took the spirits, +Standing like stone with thee. + +PERDITA: +And give me leave, +And do not say 'tis superstition, that +I kneel and then implore her blessing. Lady, +Dear queen, that ended when I but began, +Give me that hand of yours to kiss. + +PAULINA: +O, patience! +The statue is but newly fix'd, the colour's Not dry. + +CAMILLO: +My lord, your sorrow was too sore laid on, +Which sixteen winters cannot blow away, +So many summers dry; scarce any joy +Did ever so long live; no sorrow +But kill'd itself much sooner. + +POLIXENES: +Dear my brother, +Let him that was the cause of this have power +To take off so much grief from you as he +Will piece up in himself. + +PAULINA: +Indeed, my lord, +If I had thought the sight of my poor image +Would thus have wrought you,--for the stone is mine-- +I'ld not have show'd it. + +LEONTES: +Do not draw the curtain. + +PAULINA: +No longer shall you gaze on't, lest your fancy +May think anon it moves. + +LEONTES: +Let be, let be. +Would I were dead, but that, methinks, already-- +What was he that did make it? See, my lord, +Would you not deem it breathed? and that those veins +Did verily bear blood? + +POLIXENES: +Masterly done: +The very life seems warm upon her lip. + +LEONTES: +The fixture of her eye has motion in't, +As we are mock'd with art. + +PAULINA: +I'll draw the curtain: +My lord's almost so far transported that +He'll think anon it lives. + +LEONTES: +O sweet Paulina, +Make me to think so twenty years together! +No settled senses of the world can match +The pleasure of that madness. Let 't alone. + +PAULINA: +I am sorry, sir, I have thus far stirr'd you: but +I could afflict you farther. + +LEONTES: +Do, Paulina; +For this affliction has a taste as sweet +As any cordial comfort. Still, methinks, +There is an air comes from her: what fine chisel +Could ever yet cut breath? Let no man mock me, +For I will kiss her. + +PAULINA: +Good my lord, forbear: +The ruddiness upon her lip is wet; +You'll mar it if you kiss it, stain your own +With oily painting. Shall I draw the curtain? + +LEONTES: +No, not these twenty years. + +PERDITA: +So long could I +Stand by, a looker on. + +PAULINA: +Either forbear, +Quit presently the chapel, or resolve you +For more amazement. If you can behold it, +I'll make the statue move indeed, descend +And take you by the hand; but then you'll think-- +Which I protest against--I am assisted +By wicked powers. + +LEONTES: +What you can make her do, +I am content to look on: what to speak, +I am content to hear; for 'tis as easy +To make her speak as move. + +PAULINA: +It is required +You do awake your faith. Then all stand still; +On: those that think it is unlawful business +I am about, let them depart. + +LEONTES: +Proceed: +No foot shall stir. + +PAULINA: +Music, awake her; strike! +'Tis time; descend; be stone no more; approach; +Strike all that look upon with marvel. Come, +I'll fill your grave up: stir, nay, come away, +Bequeath to death your numbness, for from him +Dear life redeems you. You perceive she stirs: +Start not; her actions shall be holy as +You hear my spell is lawful: do not shun her +Until you see her die again; for then +You kill her double. Nay, present your hand: +When she was young you woo'd her; now in age +Is she become the suitor? + +LEONTES: +O, she's warm! +If this be magic, let it be an art +Lawful as eating. + +POLIXENES: +She embraces him. + +CAMILLO: +She hangs about his neck: +If she pertain to life let her speak too. + +POLIXENES: +Ay, and make't manifest where she has lived, +Or how stolen from the dead. + +PAULINA: +That she is living, +Were it but told you, should be hooted at +Like an old tale: but it appears she lives, +Though yet she speak not. Mark a little while. +Please you to interpose, fair madam: kneel +And pray your mother's blessing. Turn, good lady; +Our Perdita is found. + +HERMIONE: +You gods, look down +And from your sacred vials pour your graces +Upon my daughter's head! Tell me, mine own. +Where hast thou been preserved? where lived? how found +Thy father's court? for thou shalt hear that I, +Knowing by Paulina that the oracle +Gave hope thou wast in being, have preserved +Myself to see the issue. + +PAULINA: +There's time enough for that; +Lest they desire upon this push to trouble +Your joys with like relation. Go together, +You precious winners all; your exultation +Partake to every one. I, an old turtle, +Will wing me to some wither'd bough and there +My mate, that's never to be found again, +Lament till I am lost. + +LEONTES: +O, peace, Paulina! +Thou shouldst a husband take by my consent, +As I by thine a wife: this is a match, +And made between's by vows. Thou hast found mine; +But how, is to be question'd; for I saw her, +As I thought, dead, and have in vain said many +A prayer upon her grave. I'll not seek far-- +For him, I partly know his mind--to find thee +An honourable husband. Come, Camillo, +And take her by the hand, whose worth and honesty +Is richly noted and here justified +By us, a pair of kings. Let's from this place. +What! look upon my brother: both your pardons, +That e'er I put between your holy looks +My ill suspicion. This is your son-in-law, +And son unto the king, who, heavens directing, +Is troth-plight to your daughter. Good Paulina, +Lead us from hence, where we may leisurely +Each one demand an answer to his part +Perform'd in this wide gap of time since first +We were dissever'd: hastily lead away. + +DUKE VINCENTIO: +Escalus. + +ESCALUS: +My lord. + +DUKE VINCENTIO: +Of government the properties to unfold, +Would seem in me to affect speech and discourse; +Since I am put to know that your own science +Exceeds, in that, the lists of all advice +My strength can give you: then no more remains, +But that to your sufficiency, as your Worth is able, +And let them work. The nature of our people, +Our city's institutions, and the terms +For common justice, you're as pregnant in +As art and practise hath enriched any +That we remember. There is our commission, +From which we would not have you warp. Call hither, +I say, bid come before us Angelo. +What figure of us think you he will bear? +For you must know, we have with special soul +Elected him our absence to supply, +Lent him our terror, dress'd him with our love, +And given his deputation all the organs +Of our own power: what think you of it? + +ESCALUS: +If any in Vienna be of worth +To undergo such ample grace and honour, +It is Lord Angelo. + +DUKE VINCENTIO: +Look where he comes. + +ANGELO: +Always obedient to your grace's will, +I come to know your pleasure. + +DUKE VINCENTIO: +Angelo, +There is a kind of character in thy life, +That to the observer doth thy history +Fully unfold. Thyself and thy belongings +Are not thine own so proper as to waste +Thyself upon thy virtues, they on thee. +Heaven doth with us as we with torches do, +Not light them for themselves; for if our virtues +Did not go forth of us, 'twere all alike +As if we had them not. Spirits are not finely touch'd +But to fine issues, nor Nature never lends +The smallest scruple of her excellence +But, like a thrifty goddess, she determines +Herself the glory of a creditor, +Both thanks and use. But I do bend my speech +To one that can my part in him advertise; +Hold therefore, Angelo:-- +In our remove be thou at full ourself; +Mortality and mercy in Vienna +Live in thy tongue and heart: old Escalus, +Though first in question, is thy secondary. +Take thy commission. + +ANGELO: +Now, good my lord, +Let there be some more test made of my metal, +Before so noble and so great a figure +Be stamp'd upon it. + +DUKE VINCENTIO: +No more evasion: +We have with a leaven'd and prepared choice +Proceeded to you; therefore take your honours. +Our haste from hence is of so quick condition +That it prefers itself and leaves unquestion'd +Matters of needful value. We shall write to you, +As time and our concernings shall importune, +How it goes with us, and do look to know +What doth befall you here. So, fare you well; +To the hopeful execution do I leave you +Of your commissions. + +ANGELO: +Yet give leave, my lord, +That we may bring you something on the way. + +DUKE VINCENTIO: +My haste may not admit it; +Nor need you, on mine honour, have to do +With any scruple; your scope is as mine own +So to enforce or qualify the laws +As to your soul seems good. Give me your hand: +I'll privily away. I love the people, +But do not like to stage me to their eyes: +Through it do well, I do not relish well +Their loud applause and Aves vehement; +Nor do I think the man of safe discretion +That does affect it. Once more, fare you well. + +ANGELO: +The heavens give safety to your purposes! + +ESCALUS: +Lead forth and bring you back in happiness! + +DUKE: +I thank you. Fare you well. + +ESCALUS: +I shall desire you, sir, to give me leave +To have free speech with you; and it concerns me +To look into the bottom of my place: +A power I have, but of what strength and nature +I am not yet instructed. + +ANGELO: +'Tis so with me. Let us withdraw together, +And we may soon our satisfaction have +Touching that point. + +ESCALUS: +I'll wait upon your honour. + +LUCIO: +If the duke with the other dukes come not to +composition with the King of Hungary, why then all +the dukes fall upon the king. + +First Gentleman: +Heaven grant us its peace, but not the King of +Hungary's! + +Second Gentleman: +Amen. + +LUCIO: +Thou concludest like the sanctimonious pirate, that +went to sea with the Ten Commandments, but scraped +one out of the table. + +Second Gentleman: +'Thou shalt not steal'? + +LUCIO: +Ay, that he razed. + +First Gentleman: +Why, 'twas a commandment to command the captain and +all the rest from their functions: they put forth +to steal. There's not a soldier of us all, that, in +the thanksgiving before meat, do relish the petition +well that prays for peace. + +Second Gentleman: +I never heard any soldier dislike it. + +LUCIO: +I believe thee; for I think thou never wast where +grace was said. + +Second Gentleman: +No? a dozen times at least. + +First Gentleman: +What, in metre? + +LUCIO: +In any proportion or in any language. + +First Gentleman: +I think, or in any religion. + +LUCIO: +Ay, why not? Grace is grace, despite of all +controversy: as, for example, thou thyself art a +wicked villain, despite of all grace. + +First Gentleman: +Well, there went but a pair of shears between us. + +LUCIO: +I grant; as there may between the lists and the +velvet. Thou art the list. + +First Gentleman: +And thou the velvet: thou art good velvet; thou'rt +a three-piled piece, I warrant thee: I had as lief +be a list of an English kersey as be piled, as thou +art piled, for a French velvet. Do I speak +feelingly now? + +LUCIO: +I think thou dost; and, indeed, with most painful +feeling of thy speech: I will, out of thine own +confession, learn to begin thy health; but, whilst I +live, forget to drink after thee. + +First Gentleman: +I think I have done myself wrong, have I not? + +Second Gentleman: +Yes, that thou hast, whether thou art tainted or free. + +LUCIO: +Behold, behold. where Madam Mitigation comes! I +have purchased as many diseases under her roof as come to-- + +Second Gentleman: +To what, I pray? + +LUCIO: +Judge. + +Second Gentleman: +To three thousand dolours a year. + +First Gentleman: +Ay, and more. + +LUCIO: +A French crown more. + +First Gentleman: +Thou art always figuring diseases in me; but thou +art full of error; I am sound. + +LUCIO: +Nay, not as one would say, healthy; but so sound as +things that are hollow: thy bones are hollow; +impiety has made a feast of thee. + +First Gentleman: +How now! which of your hips has the most profound sciatica? + +MISTRESS OVERDONE: +Well, well; there's one yonder arrested and carried +to prison was worth five thousand of you all. + +Second Gentleman: +Who's that, I pray thee? + +MISTRESS OVERDONE: +Marry, sir, that's Claudio, Signior Claudio. + +First Gentleman: +Claudio to prison? 'tis not so. + +MISTRESS OVERDONE: +Nay, but I know 'tis so: I saw him arrested, saw +him carried away; and, which is more, within these +three days his head to be chopped off. + +LUCIO: +But, after all this fooling, I would not have it so. +Art thou sure of this? + +MISTRESS OVERDONE: +I am too sure of it: and it is for getting Madam +Julietta with child. + +LUCIO: +Believe me, this may be: he promised to meet me two +hours since, and he was ever precise in +promise-keeping. + +Second Gentleman: +Besides, you know, it draws something near to the +speech we had to such a purpose. + +First Gentleman: +But, most of all, agreeing with the proclamation. + +LUCIO: +Away! let's go learn the truth of it. + +MISTRESS OVERDONE: +Thus, what with the war, what with the sweat, what +with the gallows and what with poverty, I am +custom-shrunk. +How now! what's the news with you? + +POMPEY: +Yonder man is carried to prison. + +MISTRESS OVERDONE: +Well; what has he done? + +POMPEY: +A woman. + +MISTRESS OVERDONE: +But what's his offence? + +POMPEY: +Groping for trouts in a peculiar river. + +MISTRESS OVERDONE: +What, is there a maid with child by him? + +POMPEY: +No, but there's a woman with maid by him. You have +not heard of the proclamation, have you? + +MISTRESS OVERDONE: +What proclamation, man? + +POMPEY: +All houses in the suburbs of Vienna must be plucked down. + +MISTRESS OVERDONE: +And what shall become of those in the city? + +POMPEY: +They shall stand for seed: they had gone down too, +but that a wise burgher put in for them. + +MISTRESS OVERDONE: +But shall all our houses of resort in the suburbs be +pulled down? + +POMPEY: +To the ground, mistress. + +MISTRESS OVERDONE: +Why, here's a change indeed in the commonwealth! +What shall become of me? + +POMPEY: +Come; fear you not: good counsellors lack no +clients: though you change your place, you need not +change your trade; I'll be your tapster still. +Courage! there will be pity taken on you: you that +have worn your eyes almost out in the service, you +will be considered. + +MISTRESS OVERDONE: +What's to do here, Thomas tapster? let's withdraw. + +POMPEY: +Here comes Signior Claudio, led by the provost to +prison; and there's Madam Juliet. + +CLAUDIO: +Fellow, why dost thou show me thus to the world? +Bear me to prison, where I am committed. + +Provost: +I do it not in evil disposition, +But from Lord Angelo by special charge. + +CLAUDIO: +Thus can the demigod Authority +Make us pay down for our offence by weight +The words of heaven; on whom it will, it will; +On whom it will not, so; yet still 'tis just. + +LUCIO: +Why, how now, Claudio! whence comes this restraint? + +CLAUDIO: +From too much liberty, my Lucio, liberty: +As surfeit is the father of much fast, +So every scope by the immoderate use +Turns to restraint. Our natures do pursue, +Like rats that ravin down their proper bane, +A thirsty evil; and when we drink we die. + +LUCIO: +If could speak so wisely under an arrest, I would +send for certain of my creditors: and yet, to say +the truth, I had as lief have the foppery of freedom +as the morality of imprisonment. What's thy +offence, Claudio? + +CLAUDIO: +What but to speak of would offend again. + +LUCIO: +What, is't murder? + +CLAUDIO: +No. + +LUCIO: +Lechery? + +CLAUDIO: +Call it so. + +Provost: +Away, sir! you must go. + +CLAUDIO: +One word, good friend. Lucio, a word with you. + +LUCIO: +A hundred, if they'll do you any good. +Is lechery so look'd after? + +CLAUDIO: +Thus stands it with me: upon a true contract +I got possession of Julietta's bed: +You know the lady; she is fast my wife, +Save that we do the denunciation lack +Of outward order: this we came not to, +Only for propagation of a dower +Remaining in the coffer of her friends, +From whom we thought it meet to hide our love +Till time had made them for us. But it chances +The stealth of our most mutual entertainment +With character too gross is writ on Juliet. + +LUCIO: +With child, perhaps? + +CLAUDIO: +Unhappily, even so. +And the new deputy now for the duke-- +Whether it be the fault and glimpse of newness, +Or whether that the body public be +A horse whereon the governor doth ride, +Who, newly in the seat, that it may know +He can command, lets it straight feel the spur; +Whether the tyranny be in his place, +Or in his emmence that fills it up, +I stagger in:--but this new governor +Awakes me all the enrolled penalties +Which have, like unscour'd armour, hung by the wall +So long that nineteen zodiacs have gone round +And none of them been worn; and, for a name, +Now puts the drowsy and neglected act +Freshly on me: 'tis surely for a name. + +LUCIO: +I warrant it is: and thy head stands so tickle on +thy shoulders that a milkmaid, if she be in love, +may sigh it off. Send after the duke and appeal to +him. + +CLAUDIO: +I have done so, but he's not to be found. +I prithee, Lucio, do me this kind service: +This day my sister should the cloister enter +And there receive her approbation: +Acquaint her with the danger of my state: +Implore her, in my voice, that she make friends +To the strict deputy; bid herself assay him: +I have great hope in that; for in her youth +There is a prone and speechless dialect, +Such as move men; beside, she hath prosperous art +When she will play with reason and discourse, +And well she can persuade. + +LUCIO: +I pray she may; as well for the encouragement of the +like, which else would stand under grievous +imposition, as for the enjoying of thy life, who I +would be sorry should be thus foolishly lost at a +game of tick-tack. I'll to her. + +CLAUDIO: +I thank you, good friend Lucio. + +LUCIO: +Within two hours. + +CLAUDIO: +Come, officer, away! + +DUKE VINCENTIO: +No, holy father; throw away that thought; +Believe not that the dribbling dart of love +Can pierce a complete bosom. Why I desire thee +To give me secret harbour, hath a purpose +More grave and wrinkled than the aims and ends +Of burning youth. + +FRIAR THOMAS: +May your grace speak of it? + +DUKE VINCENTIO: +My holy sir, none better knows than you +How I have ever loved the life removed +And held in idle price to haunt assemblies +Where youth, and cost, and witless bravery keeps. +I have deliver'd to Lord Angelo, +A man of stricture and firm abstinence, +My absolute power and place here in Vienna, +And he supposes me travell'd to Poland; +For so I have strew'd it in the common ear, +And so it is received. Now, pious sir, +You will demand of me why I do this? + +FRIAR THOMAS: +Gladly, my lord. + +DUKE VINCENTIO: +We have strict statutes and most biting laws. +The needful bits and curbs to headstrong weeds, +Which for this nineteen years we have let slip; +Even like an o'ergrown lion in a cave, +That goes not out to prey. Now, as fond fathers, +Having bound up the threatening twigs of birch, +Only to stick it in their children's sight +For terror, not to use, in time the rod +Becomes more mock'd than fear'd; so our decrees, +Dead to infliction, to themselves are dead; +And liberty plucks justice by the nose; +The baby beats the nurse, and quite athwart +Goes all decorum. + +FRIAR THOMAS: +It rested in your grace +To unloose this tied-up justice when you pleased: +And it in you more dreadful would have seem'd +Than in Lord Angelo. + +DUKE VINCENTIO: +I do fear, too dreadful: +Sith 'twas my fault to give the people scope, +'Twould be my tyranny to strike and gall them +For what I bid them do: for we bid this be done, +When evil deeds have their permissive pass +And not the punishment. Therefore indeed, my father, +I have on Angelo imposed the office; +Who may, in the ambush of my name, strike home, +And yet my nature never in the fight +To do in slander. And to behold his sway, +I will, as 'twere a brother of your order, +Visit both prince and people: therefore, I prithee, +Supply me with the habit and instruct me +How I may formally in person bear me +Like a true friar. More reasons for this action +At our more leisure shall I render you; +Only, this one: Lord Angelo is precise; +Stands at a guard with envy; scarce confesses +That his blood flows, or that his appetite +Is more to bread than stone: hence shall we see, +If power change purpose, what our seemers be. + +ISABELLA: +And have you nuns no farther privileges? + +FRANCISCA: +Are not these large enough? + +ISABELLA: +Yes, truly; I speak not as desiring more; +But rather wishing a more strict restraint +Upon the sisterhood, the votarists of Saint Clare. + +LUCIO: + +ISABELLA: +Who's that which calls? + +FRANCISCA: +It is a man's voice. Gentle Isabella, +Turn you the key, and know his business of him; +You may, I may not; you are yet unsworn. +When you have vow'd, you must not speak with men +But in the presence of the prioress: +Then, if you speak, you must not show your face, +Or, if you show your face, you must not speak. +He calls again; I pray you, answer him. + +ISABELLA: +Peace and prosperity! Who is't that calls + +LUCIO: +Hail, virgin, if you be, as those cheek-roses +Proclaim you are no less! Can you so stead me +As bring me to the sight of Isabella, +A novice of this place and the fair sister +To her unhappy brother Claudio? + +ISABELLA: +Why 'her unhappy brother'? let me ask, +The rather for I now must make you know +I am that Isabella and his sister. + +LUCIO: +Gentle and fair, your brother kindly greets you: +Not to be weary with you, he's in prison. + +ISABELLA: +Woe me! for what? + +LUCIO: +For that which, if myself might be his judge, +He should receive his punishment in thanks: +He hath got his friend with child. + +ISABELLA: +Sir, make me not your story. + +LUCIO: +It is true. +I would not--though 'tis my familiar sin +With maids to seem the lapwing and to jest, +Tongue far from heart--play with all virgins so: +I hold you as a thing ensky'd and sainted. +By your renouncement an immortal spirit, +And to be talk'd with in sincerity, +As with a saint. + +ISABELLA: +You do blaspheme the good in mocking me. + +LUCIO: +Do not believe it. Fewness and truth, 'tis thus: +Your brother and his lover have embraced: +As those that feed grow full, as blossoming time +That from the seedness the bare fallow brings +To teeming foison, even so her plenteous womb +Expresseth his full tilth and husbandry. + +ISABELLA: +Some one with child by him? My cousin Juliet? + +LUCIO: +Is she your cousin? + +ISABELLA: +Adoptedly; as school-maids change their names +By vain though apt affection. + +LUCIO: +She it is. + +ISABELLA: +O, let him marry her. + +LUCIO: +This is the point. +The duke is very strangely gone from hence; +Bore many gentlemen, myself being one, +In hand and hope of action: but we do learn +By those that know the very nerves of state, +His givings-out were of an infinite distance +From his true-meant design. Upon his place, +And with full line of his authority, +Governs Lord Angelo; a man whose blood +Is very snow-broth; one who never feels +The wanton stings and motions of the sense, +But doth rebate and blunt his natural edge +With profits of the mind, study and fast. +He--to give fear to use and liberty, +Which have for long run by the hideous law, +As mice by lions--hath pick'd out an act, +Under whose heavy sense your brother's life +Falls into forfeit: he arrests him on it; +And follows close the rigour of the statute, +To make him an example. All hope is gone, +Unless you have the grace by your fair prayer +To soften Angelo: and that's my pith of business +'Twixt you and your poor brother. + +ISABELLA: +Doth he so seek his life? + +LUCIO: +Has censured him +Already; and, as I hear, the provost hath +A warrant for his execution. + +ISABELLA: +Alas! what poor ability's in me +To do him good? + +LUCIO: +Assay the power you have. + +ISABELLA: +My power? Alas, I doubt-- + +LUCIO: +Our doubts are traitors +And make us lose the good we oft might win +By fearing to attempt. Go to Lord Angelo, +And let him learn to know, when maidens sue, +Men give like gods; but when they weep and kneel, +All their petitions are as freely theirs +As they themselves would owe them. + +ISABELLA: +I'll see what I can do. + +LUCIO: +But speedily. + +ISABELLA: +I will about it straight; +No longer staying but to give the mother +Notice of my affair. I humbly thank you: +Commend me to my brother: soon at night +I'll send him certain word of my success. + +LUCIO: +I take my leave of you. + +ISABELLA: +Good sir, adieu. + +ANGELO: +We must not make a scarecrow of the law, +Setting it up to fear the birds of prey, +And let it keep one shape, till custom make it +Their perch and not their terror. + +ESCALUS: +Ay, but yet +Let us be keen, and rather cut a little, +Than fall, and bruise to death. Alas, this gentleman +Whom I would save, had a most noble father! +Let but your honour know, +Whom I believe to be most strait in virtue, +That, in the working of your own affections, +Had time cohered with place or place with wishing, +Or that the resolute acting of your blood +Could have attain'd the effect of your own purpose, +Whether you had not sometime in your life +Err'd in this point which now you censure him, +And pull'd the law upon you. + +ANGELO: +'Tis one thing to be tempted, Escalus, +Another thing to fall. I not deny, +The jury, passing on the prisoner's life, +May in the sworn twelve have a thief or two +Guiltier than him they try. What's open made to justice, +That justice seizes: what know the laws +That thieves do pass on thieves? 'Tis very pregnant, +The jewel that we find, we stoop and take't +Because we see it; but what we do not see +We tread upon, and never think of it. +You may not so extenuate his offence +For I have had such faults; but rather tell me, +When I, that censure him, do so offend, +Let mine own judgment pattern out my death, +And nothing come in partial. Sir, he must die. + +ESCALUS: +Be it as your wisdom will. + +ANGELO: +Where is the provost? + +Provost: +Here, if it like your honour. + +ANGELO: +See that Claudio +Be executed by nine to-morrow morning: +Bring him his confessor, let him be prepared; +For that's the utmost of his pilgrimage. + +ESCALUS: + +ELBOW: +Come, bring them away: if these be good people in +a commonweal that do nothing but use their abuses in +common houses, I know no law: bring them away. + +ANGELO: +How now, sir! What's your name? and what's the matter? + +ELBOW: +If it Please your honour, I am the poor duke's +constable, and my name is Elbow: I do lean upon +justice, sir, and do bring in here before your good +honour two notorious benefactors. + +ANGELO: +Benefactors? Well; what benefactors are they? are +they not malefactors? + +ELBOW: +If it? please your honour, I know not well what they +are: but precise villains they are, that I am sure +of; and void of all profanation in the world that +good Christians ought to have. + +ESCALUS: +This comes off well; here's a wise officer. + +ANGELO: +Go to: what quality are they of? Elbow is your +name? why dost thou not speak, Elbow? + +POMPEY: +He cannot, sir; he's out at elbow. + +ANGELO: +What are you, sir? + +ELBOW: +He, sir! a tapster, sir; parcel-bawd; one that +serves a bad woman; whose house, sir, was, as they +say, plucked down in the suburbs; and now she +professes a hot-house, which, I think, is a very ill house too. + +ESCALUS: +How know you that? + +ELBOW: +My wife, sir, whom I detest before heaven and your honour,-- + +ESCALUS: +How? thy wife? + +ELBOW: +Ay, sir; whom, I thank heaven, is an honest woman,-- + +ESCALUS: +Dost thou detest her therefore? + +ELBOW: +I say, sir, I will detest myself also, as well as +she, that this house, if it be not a bawd's house, +it is pity of her life, for it is a naughty house. + +ESCALUS: +How dost thou know that, constable? + +ELBOW: +Marry, sir, by my wife; who, if she had been a woman +cardinally given, might have been accused in +fornication, adultery, and all uncleanliness there. + +ESCALUS: +By the woman's means? + +ELBOW: +Ay, sir, by Mistress Overdone's means: but as she +spit in his face, so she defied him. + +POMPEY: +Sir, if it please your honour, this is not so. + +ELBOW: +Prove it before these varlets here, thou honourable +man; prove it. + +ESCALUS: +Do you hear how he misplaces? + +POMPEY: +Sir, she came in great with child; and longing, +saving your honour's reverence, for stewed prunes; +sir, we had but two in the house, which at that very +distant time stood, as it were, in a fruit-dish, a +dish of some three-pence; your honours have seen +such dishes; they are not China dishes, but very +good dishes,-- + +ESCALUS: +Go to, go to: no matter for the dish, sir. + +POMPEY: +No, indeed, sir, not of a pin; you are therein in +the right: but to the point. As I say, this +Mistress Elbow, being, as I say, with child, and +being great-bellied, and longing, as I said, for +prunes; and having but two in the dish, as I said, +Master Froth here, this very man, having eaten the +rest, as I said, and, as I say, paying for them very +honestly; for, as you know, Master Froth, I could +not give you three-pence again. + +FROTH: +No, indeed. + +POMPEY: +Very well: you being then, if you be remembered, +cracking the stones of the foresaid prunes,-- + +FROTH: +Ay, so I did indeed. + +POMPEY: +Why, very well; I telling you then, if you be +remembered, that such a one and such a one were past +cure of the thing you wot of, unless they kept very +good diet, as I told you,-- + +FROTH: +All this is true. + +POMPEY: +Why, very well, then,-- + +ESCALUS: +Come, you are a tedious fool: to the purpose. What +was done to Elbow's wife, that he hath cause to +complain of? Come me to what was done to her. + +POMPEY: +Sir, your honour cannot come to that yet. + +ESCALUS: +No, sir, nor I mean it not. + +POMPEY: +Sir, but you shall come to it, by your honour's +leave. And, I beseech you, look into Master Froth +here, sir; a man of four-score pound a year; whose +father died at Hallowmas: was't not at Hallowmas, +Master Froth? + +FROTH: +All-hallond eve. + +POMPEY: +Why, very well; I hope here be truths. He, sir, +sitting, as I say, in a lower chair, sir; 'twas in +the Bunch of Grapes, where indeed you have a delight +to sit, have you not? + +FROTH: +I have so; because it is an open room and good for winter. + +POMPEY: +Why, very well, then; I hope here be truths. + +ANGELO: +This will last out a night in Russia, +When nights are longest there: I'll take my leave. +And leave you to the hearing of the cause; +Hoping you'll find good cause to whip them all. + +ESCALUS: +I think no less. Good morrow to your lordship. +Now, sir, come on: what was done to Elbow's wife, once more? + +POMPEY: +Once, sir? there was nothing done to her once. + +ELBOW: +I beseech you, sir, ask him what this man did to my wife. + +POMPEY: +I beseech your honour, ask me. + +ESCALUS: +Well, sir; what did this gentleman to her? + +POMPEY: +I beseech you, sir, look in this gentleman's face. +Good Master Froth, look upon his honour; 'tis for a +good purpose. Doth your honour mark his face? + +ESCALUS: +Ay, sir, very well. + +POMPEY: +Nay; I beseech you, mark it well. + +ESCALUS: +Well, I do so. + +POMPEY: +Doth your honour see any harm in his face? + +ESCALUS: +Why, no. + +POMPEY: +I'll be supposed upon a book, his face is the worst +thing about him. Good, then; if his face be the +worst thing about him, how could Master Froth do the +constable's wife any harm? I would know that of +your honour. + +ESCALUS: +He's in the right. Constable, what say you to it? + +ELBOW: +First, an it like you, the house is a respected +house; next, this is a respected fellow; and his +mistress is a respected woman. + +POMPEY: +By this hand, sir, his wife is a more respected +person than any of us all. + +ELBOW: +Varlet, thou liest; thou liest, wicked varlet! the +time has yet to come that she was ever respected +with man, woman, or child. + +POMPEY: +Sir, she was respected with him before he married with her. + +ESCALUS: +Which is the wiser here? Justice or Iniquity? Is +this true? + +ELBOW: +O thou caitiff! O thou varlet! O thou wicked +Hannibal! I respected with her before I was married +to her! If ever I was respected with her, or she +with me, let not your worship think me the poor +duke's officer. Prove this, thou wicked Hannibal, or +I'll have mine action of battery on thee. + +ESCALUS: +If he took you a box o' the ear, you might have your +action of slander too. + +ELBOW: +Marry, I thank your good worship for it. What is't +your worship's pleasure I shall do with this wicked caitiff? + +ESCALUS: +Truly, officer, because he hath some offences in him +that thou wouldst discover if thou couldst, let him +continue in his courses till thou knowest what they +are. + +ELBOW: +Marry, I thank your worship for it. Thou seest, thou +wicked varlet, now, what's come upon thee: thou art +to continue now, thou varlet; thou art to continue. + +ESCALUS: +Where were you born, friend? + +FROTH: +Here in Vienna, sir. + +ESCALUS: +Are you of fourscore pounds a year? + +FROTH: +Yes, an't please you, sir. + +ESCALUS: +So. What trade are you of, sir? + +POMPHEY: +Tapster; a poor widow's tapster. + +ESCALUS: +Your mistress' name? + +POMPHEY: +Mistress Overdone. + +ESCALUS: +Hath she had any more than one husband? + +POMPEY: +Nine, sir; Overdone by the last. + +ESCALUS: +Nine! Come hither to me, Master Froth. Master +Froth, I would not have you acquainted with +tapsters: they will draw you, Master Froth, and you +will hang them. Get you gone, and let me hear no +more of you. + +FROTH: +I thank your worship. For mine own part, I never +come into any room in a tap-house, but I am drawn +in. + +ESCALUS: +Well, no more of it, Master Froth: farewell. +Come you hither to me, Master tapster. What's your +name, Master tapster? + +POMPEY: +Pompey. + +ESCALUS: +What else? + +POMPEY: +Bum, sir. + +ESCALUS: +Troth, and your bum is the greatest thing about you; +so that in the beastliest sense you are Pompey the +Great. Pompey, you are partly a bawd, Pompey, +howsoever you colour it in being a tapster, are you +not? come, tell me true: it shall be the better for you. + +POMPEY: +Truly, sir, I am a poor fellow that would live. + +ESCALUS: +How would you live, Pompey? by being a bawd? What +do you think of the trade, Pompey? is it a lawful trade? + +POMPEY: +If the law would allow it, sir. + +ESCALUS: +But the law will not allow it, Pompey; nor it shall +not be allowed in Vienna. + +POMPEY: +Does your worship mean to geld and splay all the +youth of the city? + +ESCALUS: +No, Pompey. + +POMPEY: +Truly, sir, in my poor opinion, they will to't then. +If your worship will take order for the drabs and +the knaves, you need not to fear the bawds. + +ESCALUS: +There are pretty orders beginning, I can tell you: +it is but heading and hanging. + +POMPEY: +If you head and hang all that offend that way but +for ten year together, you'll be glad to give out a +commission for more heads: if this law hold in +Vienna ten year, I'll rent the fairest house in it +after three-pence a bay: if you live to see this +come to pass, say Pompey told you so. + +ESCALUS: +Thank you, good Pompey; and, in requital of your +prophecy, hark you: I advise you, let me not find +you before me again upon any complaint whatsoever; +no, not for dwelling where you do: if I do, Pompey, +I shall beat you to your tent, and prove a shrewd +Caesar to you; in plain dealing, Pompey, I shall +have you whipt: so, for this time, Pompey, fare you well. + +POMPEY: +I thank your worship for your good counsel: +but I shall follow it as the flesh and fortune shall +better determine. +Whip me? No, no; let carman whip his jade: +The valiant heart is not whipt out of his trade. + +ESCALUS: +Come hither to me, Master Elbow; come hither, Master +constable. How long have you been in this place of constable? + +ELBOW: +Seven year and a half, sir. + +ESCALUS: +I thought, by your readiness in the office, you had +continued in it some time. You say, seven years together? + +ELBOW: +And a half, sir. + +ESCALUS: +Alas, it hath been great pains to you. They do you +wrong to put you so oft upon 't: are there not men +in your ward sufficient to serve it? + +ELBOW: +Faith, sir, few of any wit in such matters: as they +are chosen, they are glad to choose me for them; I +do it for some piece of money, and go through with +all. + +ESCALUS: +Look you bring me in the names of some six or seven, +the most sufficient of your parish. + +ELBOW: +To your worship's house, sir? + +ESCALUS: +To my house. Fare you well. +What's o'clock, think you? + +Justice: +Eleven, sir. + +ESCALUS: +I pray you home to dinner with me. + +Justice: +I humbly thank you. + +ESCALUS: +It grieves me for the death of Claudio; +But there's no remedy. + +Justice: +Lord Angelo is severe. + +ESCALUS: +It is but needful: +Mercy is not itself, that oft looks so; +Pardon is still the nurse of second woe: +But yet,--poor Claudio! There is no remedy. +Come, sir. + +Servant: +He's hearing of a cause; he will come straight +I'll tell him of you. + +Provost: +Pray you, do. +I'll know +His pleasure; may be he will relent. Alas, +He hath but as offended in a dream! +All sects, all ages smack of this vice; and he +To die for't! + +ANGELO: +Now, what's the matter. Provost? + +Provost: +Is it your will Claudio shall die tomorrow? + +ANGELO: +Did not I tell thee yea? hadst thou not order? +Why dost thou ask again? + +Provost: +Lest I might be too rash: +Under your good correction, I have seen, +When, after execution, judgment hath +Repented o'er his doom. + +ANGELO: +Go to; let that be mine: +Do you your office, or give up your place, +And you shall well be spared. + +Provost: +I crave your honour's pardon. +What shall be done, sir, with the groaning Juliet? +She's very near her hour. + +ANGELO: +Dispose of her +To some more fitter place, and that with speed. + +Servant: +Here is the sister of the man condemn'd +Desires access to you. + +ANGELO: +Hath he a sister? + +Provost: +Ay, my good lord; a very virtuous maid, +And to be shortly of a sisterhood, +If not already. + +ANGELO: +Well, let her be admitted. +See you the fornicatress be removed: +Let have needful, but not lavish, means; +There shall be order for't. + +Provost: +God save your honour! + +ANGELO: +Stay a little while. +You're welcome: what's your will? + +ISABELLA: +I am a woeful suitor to your honour, +Please but your honour hear me. + +ANGELO: +Well; what's your suit? + +ISABELLA: +There is a vice that most I do abhor, +And most desire should meet the blow of justice; +For which I would not plead, but that I must; +For which I must not plead, but that I am +At war 'twixt will and will not. + +ANGELO: +Well; the matter? + +ISABELLA: +I have a brother is condemn'd to die: +I do beseech you, let it be his fault, +And not my brother. + +Provost: + +ANGELO: +Condemn the fault and not the actor of it? +Why, every fault's condemn'd ere it be done: +Mine were the very cipher of a function, +To fine the faults whose fine stands in record, +And let go by the actor. + +ISABELLA: +O just but severe law! +I had a brother, then. Heaven keep your honour! + +LUCIO: + +ISABELLA: +Must he needs die? + +ANGELO: +Maiden, no remedy. + +ISABELLA: +Yes; I do think that you might pardon him, +And neither heaven nor man grieve at the mercy. + +ANGELO: +I will not do't. + +ISABELLA: +But can you, if you would? + +ANGELO: +Look, what I will not, that I cannot do. + +ISABELLA: +But might you do't, and do the world no wrong, +If so your heart were touch'd with that remorse +As mine is to him? + +ANGELO: +He's sentenced; 'tis too late. + +LUCIO: + +ISABELLA: +Too late? why, no; I, that do speak a word. +May call it back again. Well, believe this, +No ceremony that to great ones 'longs, +Not the king's crown, nor the deputed sword, +The marshal's truncheon, nor the judge's robe, +Become them with one half so good a grace +As mercy does. +If he had been as you and you as he, +You would have slipt like him; but he, like you, +Would not have been so stern. + +ANGELO: +Pray you, be gone. + +ISABELLA: +I would to heaven I had your potency, +And you were Isabel! should it then be thus? +No; I would tell what 'twere to be a judge, +And what a prisoner. + +LUCIO: + +ANGELO: +Your brother is a forfeit of the law, +And you but waste your words. + +ISABELLA: +Alas, alas! +Why, all the souls that were were forfeit once; +And He that might the vantage best have took +Found out the remedy. How would you be, +If He, which is the top of judgment, should +But judge you as you are? O, think on that; +And mercy then will breathe within your lips, +Like man new made. + +ANGELO: +Be you content, fair maid; +It is the law, not I condemn your brother: +Were he my kinsman, brother, or my son, +It should be thus with him: he must die tomorrow. + +ISABELLA: +To-morrow! O, that's sudden! Spare him, spare him! +He's not prepared for death. Even for our kitchens +We kill the fowl of season: shall we serve heaven +With less respect than we do minister +To our gross selves? Good, good my lord, bethink you; +Who is it that hath died for this offence? +There's many have committed it. + +LUCIO: + +ANGELO: +The law hath not been dead, though it hath slept: +Those many had not dared to do that evil, +If the first that did the edict infringe +Had answer'd for his deed: now 'tis awake +Takes note of what is done; and, like a prophet, +Looks in a glass, that shows what future evils, +Either new, or by remissness new-conceived, +And so in progress to be hatch'd and born, +Are now to have no successive degrees, +But, ere they live, to end. + +ISABELLA: +Yet show some pity. + +ANGELO: +I show it most of all when I show justice; +For then I pity those I do not know, +Which a dismiss'd offence would after gall; +And do him right that, answering one foul wrong, +Lives not to act another. Be satisfied; +Your brother dies to-morrow; be content. + +ISABELLA: +So you must be the first that gives this sentence, +And he, that suffer's. O, it is excellent +To have a giant's strength; but it is tyrannous +To use it like a giant. + +LUCIO: + +ISABELLA: +Could great men thunder +As Jove himself does, Jove would ne'er be quiet, +For every pelting, petty officer +Would use his heaven for thunder; +Nothing but thunder! Merciful Heaven, +Thou rather with thy sharp and sulphurous bolt +Split'st the unwedgeable and gnarled oak +Than the soft myrtle: but man, proud man, +Drest in a little brief authority, +Most ignorant of what he's most assured, +His glassy essence, like an angry ape, +Plays such fantastic tricks before high heaven +As make the angels weep; who, with our spleens, +Would all themselves laugh mortal. + +LUCIO: + +Provost: + +ISABELLA: +We cannot weigh our brother with ourself: +Great men may jest with saints; 'tis wit in them, +But in the less foul profanation. + +LUCIO: +Thou'rt i' the right, girl; more o, that. + +ISABELLA: +That in the captain's but a choleric word, +Which in the soldier is flat blasphemy. + +LUCIO: + +ANGELO: +Why do you put these sayings upon me? + +ISABELLA: +Because authority, though it err like others, +Hath yet a kind of medicine in itself, +That skins the vice o' the top. Go to your bosom; +Knock there, and ask your heart what it doth know +That's like my brother's fault: if it confess +A natural guiltiness such as is his, +Let it not sound a thought upon your tongue +Against my brother's life. + +ANGELO: + +ISABELLA: +Gentle my lord, turn back. + +ANGELO: +I will bethink me: come again tomorrow. + +ISABELLA: +Hark how I'll bribe you: good my lord, turn back. + +ANGELO: +How! bribe me? + +ISABELLA: +Ay, with such gifts that heaven shall share with you. + +LUCIO: + +ISABELLA: +Not with fond shekels of the tested gold, +Or stones whose rates are either rich or poor +As fancy values them; but with true prayers +That shall be up at heaven and enter there +Ere sun-rise, prayers from preserved souls, +From fasting maids whose minds are dedicate +To nothing temporal. + +ANGELO: +Well; come to me to-morrow. + +LUCIO: + +ISABELLA: +Heaven keep your honour safe! + +ANGELO: + +ISABELLA: +At what hour to-morrow +Shall I attend your lordship? + +ANGELO: +At any time 'fore noon. + +ISABELLA: +'Save your honour! + +ANGELO: +From thee, even from thy virtue! +What's this, what's this? Is this her fault or mine? +The tempter or the tempted, who sins most? +Ha! +Not she: nor doth she tempt: but it is I +That, lying by the violet in the sun, +Do as the carrion does, not as the flower, +Corrupt with virtuous season. Can it be +That modesty may more betray our sense +Than woman's lightness? Having waste ground enough, +Shall we desire to raze the sanctuary +And pitch our evils there? O, fie, fie, fie! +What dost thou, or what art thou, Angelo? +Dost thou desire her foully for those things +That make her good? O, let her brother live! +Thieves for their robbery have authority +When judges steal themselves. What, do I love her, +That I desire to hear her speak again, +And feast upon her eyes? What is't I dream on? +O cunning enemy, that, to catch a saint, +With saints dost bait thy hook! Most dangerous +Is that temptation that doth goad us on +To sin in loving virtue: never could the strumpet, +With all her double vigour, art and nature, +Once stir my temper; but this virtuous maid +Subdues me quite. Even till now, +When men were fond, I smiled and wonder'd how. + +DUKE VINCENTIO: +Hail to you, provost! so I think you are. + +Provost: +I am the provost. What's your will, good friar? + +DUKE VINCENTIO: +Bound by my charity and my blest order, +I come to visit the afflicted spirits +Here in the prison. Do me the common right +To let me see them and to make me know +The nature of their crimes, that I may minister +To them accordingly. + +Provost: +I would do more than that, if more were needful. +Look, here comes one: a gentlewoman of mine, +Who, falling in the flaws of her own youth, +Hath blister'd her report: she is with child; +And he that got it, sentenced; a young man +More fit to do another such offence +Than die for this. + +DUKE VINCENTIO: +When must he die? + +Provost: +As I do think, to-morrow. +I have provided for you: stay awhile, +And you shall be conducted. + +DUKE VINCENTIO: +Repent you, fair one, of the sin you carry? + +JULIET: +I do; and bear the shame most patiently. + +DUKE VINCENTIO: +I'll teach you how you shall arraign your conscience, +And try your penitence, if it be sound, +Or hollowly put on. + +JULIET: +I'll gladly learn. + +DUKE VINCENTIO: +Love you the man that wrong'd you? + +JULIET: +Yes, as I love the woman that wrong'd him. + +DUKE VINCENTIO: +So then it seems your most offenceful act +Was mutually committed? + +JULIET: +Mutually. + +DUKE VINCENTIO: +Then was your sin of heavier kind than his. + +JULIET: +I do confess it, and repent it, father. + +DUKE VINCENTIO: +'Tis meet so, daughter: but lest you do repent, +As that the sin hath brought you to this shame, +Which sorrow is always towards ourselves, not heaven, +Showing we would not spare heaven as we love it, +But as we stand in fear,-- + +JULIET: +I do repent me, as it is an evil, +And take the shame with joy. + +DUKE VINCENTIO: +There rest. +Your partner, as I hear, must die to-morrow, +And I am going with instruction to him. +Grace go with you, Benedicite! + +JULIET: +Must die to-morrow! O injurious love, +That respites me a life, whose very comfort +Is still a dying horror! + +Provost: +'Tis pity of him. + +ANGELO: +When I would pray and think, I think and pray +To several subjects. Heaven hath my empty words; +Whilst my invention, hearing not my tongue, +Anchors on Isabel: Heaven in my mouth, +As if I did but only chew his name; +And in my heart the strong and swelling evil +Of my conception. The state, whereon I studied +Is like a good thing, being often read, +Grown fear'd and tedious; yea, my gravity, +Wherein--let no man hear me--I take pride, +Could I with boot change for an idle plume, +Which the air beats for vain. O place, O form, +How often dost thou with thy case, thy habit, +Wrench awe from fools and tie the wiser souls +To thy false seeming! Blood, thou art blood: +Let's write good angel on the devil's horn: +'Tis not the devil's crest. +How now! who's there? + +Servant: +One Isabel, a sister, desires access to you. + +ANGELO: +Teach her the way. +O heavens! +Why does my blood thus muster to my heart, +Making both it unable for itself, +And dispossessing all my other parts +Of necessary fitness? +So play the foolish throngs with one that swoons; +Come all to help him, and so stop the air +By which he should revive: and even so +The general, subject to a well-wish'd king, +Quit their own part, and in obsequious fondness +Crowd to his presence, where their untaught love +Must needs appear offence. +How now, fair maid? + +ISABELLA: +I am come to know your pleasure. + +ANGELO: +That you might know it, would much better please me +Than to demand what 'tis. Your brother cannot live. + +ISABELLA: +Even so. Heaven keep your honour! + +ANGELO: +Yet may he live awhile; and, it may be, +As long as you or I yet he must die. + +ISABELLA: +Under your sentence? + +ANGELO: +Yea. + +ISABELLA: +When, I beseech you? that in his reprieve, +Longer or shorter, he may be so fitted +That his soul sicken not. + +ANGELO: +Ha! fie, these filthy vices! It were as good +To pardon him that hath from nature stolen +A man already made, as to remit +Their saucy sweetness that do coin heaven's image +In stamps that are forbid: 'tis all as easy +Falsely to take away a life true made +As to put metal in restrained means +To make a false one. + +ISABELLA: +'Tis set down so in heaven, but not in earth. + +ANGELO: +Say you so? then I shall pose you quickly. +Which had you rather, that the most just law +Now took your brother's life; or, to redeem him, +Give up your body to such sweet uncleanness +As she that he hath stain'd? + +ISABELLA: +Sir, believe this, +I had rather give my body than my soul. + +ANGELO: +I talk not of your soul: our compell'd sins +Stand more for number than for accompt. + +ISABELLA: +How say you? + +ANGELO: +Nay, I'll not warrant that; for I can speak +Against the thing I say. Answer to this: +I, now the voice of the recorded law, +Pronounce a sentence on your brother's life: +Might there not be a charity in sin +To save this brother's life? + +ISABELLA: +Please you to do't, +I'll take it as a peril to my soul, +It is no sin at all, but charity. + +ANGELO: +Pleased you to do't at peril of your soul, +Were equal poise of sin and charity. + +ISABELLA: +That I do beg his life, if it be sin, +Heaven let me bear it! you granting of my suit, +If that be sin, I'll make it my morn prayer +To have it added to the faults of mine, +And nothing of your answer. + +ANGELO: +Nay, but hear me. +Your sense pursues not mine: either you are ignorant, +Or seem so craftily; and that's not good. + +ISABELLA: +Let me be ignorant, and in nothing good, +But graciously to know I am no better. + +ANGELO: +Thus wisdom wishes to appear most bright +When it doth tax itself; as these black masks +Proclaim an enshield beauty ten times louder +Than beauty could, display'd. But mark me; +To be received plain, I'll speak more gross: +Your brother is to die. + +ISABELLA: +So. + +ANGELO: +And his offence is so, as it appears, +Accountant to the law upon that pain. + +ISABELLA: +True. + +ANGELO: +Admit no other way to save his life,-- +As I subscribe not that, nor any other, +But in the loss of question,--that you, his sister, +Finding yourself desired of such a person, +Whose credit with the judge, or own great place, +Could fetch your brother from the manacles +Of the all-building law; and that there were +No earthly mean to save him, but that either +You must lay down the treasures of your body +To this supposed, or else to let him suffer; +What would you do? + +ISABELLA: +As much for my poor brother as myself: +That is, were I under the terms of death, +The impression of keen whips I'ld wear as rubies, +And strip myself to death, as to a bed +That longing have been sick for, ere I'ld yield +My body up to shame. + +ANGELO: +Then must your brother die. + +ISABELLA: +And 'twere the cheaper way: +Better it were a brother died at once, +Than that a sister, by redeeming him, +Should die for ever. + +ANGELO: +Were not you then as cruel as the sentence +That you have slander'd so? + +ISABELLA: +Ignomy in ransom and free pardon +Are of two houses: lawful mercy +Is nothing kin to foul redemption. + +ANGELO: +You seem'd of late to make the law a tyrant; +And rather proved the sliding of your brother +A merriment than a vice. + +ISABELLA: +O, pardon me, my lord; it oft falls out, +To have what we would have, we speak not what we mean: +I something do excuse the thing I hate, +For his advantage that I dearly love. + +ANGELO: +We are all frail. + +ISABELLA: +Else let my brother die, +If not a feodary, but only he +Owe and succeed thy weakness. + +ANGELO: +Nay, women are frail too. + +ISABELLA: +Ay, as the glasses where they view themselves; +Which are as easy broke as they make forms. +Women! Help Heaven! men their creation mar +In profiting by them. Nay, call us ten times frail; +For we are soft as our complexions are, +And credulous to false prints. + +ANGELO: +I think it well: +And from this testimony of your own sex,-- +Since I suppose we are made to be no stronger +Than faults may shake our frames,--let me be bold; +I do arrest your words. Be that you are, +That is, a woman; if you be more, you're none; +If you be one, as you are well express'd +By all external warrants, show it now, +By putting on the destined livery. + +ISABELLA: +I have no tongue but one: gentle my lord, +Let me entreat you speak the former language. + +ANGELO: +Plainly conceive, I love you. + +ISABELLA: +My brother did love Juliet, +And you tell me that he shall die for it. + +ANGELO: +He shall not, Isabel, if you give me love. + +ISABELLA: +I know your virtue hath a licence in't, +Which seems a little fouler than it is, +To pluck on others. + +ANGELO: +Believe me, on mine honour, +My words express my purpose. + +ISABELLA: +Ha! little honour to be much believed, +And most pernicious purpose! Seeming, seeming! +I will proclaim thee, Angelo; look for't: +Sign me a present pardon for my brother, +Or with an outstretch'd throat I'll tell the world aloud +What man thou art. + +ANGELO: +Who will believe thee, Isabel? +My unsoil'd name, the austereness of my life, +My vouch against you, and my place i' the state, +Will so your accusation overweigh, +That you shall stifle in your own report +And smell of calumny. I have begun, +And now I give my sensual race the rein: +Fit thy consent to my sharp appetite; +Lay by all nicety and prolixious blushes, +That banish what they sue for; redeem thy brother +By yielding up thy body to my will; +Or else he must not only die the death, +But thy unkindness shall his death draw out +To lingering sufferance. Answer me to-morrow, +Or, by the affection that now guides me most, +I'll prove a tyrant to him. As for you, +Say what you can, my false o'erweighs your true. + +ISABELLA: +To whom should I complain? Did I tell this, +Who would believe me? O perilous mouths, +That bear in them one and the self-same tongue, +Either of condemnation or approof; +Bidding the law make court'sy to their will: +Hooking both right and wrong to the appetite, +To follow as it draws! I'll to my brother: +Though he hath fallen by prompture of the blood, +Yet hath he in him such a mind of honour. +That, had he twenty heads to tender down +On twenty bloody blocks, he'ld yield them up, +Before his sister should her body stoop +To such abhorr'd pollution. +Then, Isabel, live chaste, and, brother, die: +More than our brother is our chastity. +I'll tell him yet of Angelo's request, +And fit his mind to death, for his soul's rest. + +DUKE VINCENTIO: +So then you hope of pardon from Lord Angelo? + +CLAUDIO: +The miserable have no other medicine +But only hope: +I've hope to live, and am prepared to die. + +DUKE VINCENTIO: +Be absolute for death; either death or life +Shall thereby be the sweeter. Reason thus with life: +If I do lose thee, I do lose a thing +That none but fools would keep: a breath thou art, +Servile to all the skyey influences, +That dost this habitation, where thou keep'st, +Hourly afflict: merely, thou art death's fool; +For him thou labour'st by thy flight to shun +And yet runn'st toward him still. Thou art not noble; +For all the accommodations that thou bear'st +Are nursed by baseness. Thou'rt by no means valiant; +For thou dost fear the soft and tender fork +Of a poor worm. Thy best of rest is sleep, +And that thou oft provokest; yet grossly fear'st +Thy death, which is no more. Thou art not thyself; +For thou exist'st on many a thousand grains +That issue out of dust. Happy thou art not; +For what thou hast not, still thou strivest to get, +And what thou hast, forget'st. Thou art not certain; +For thy complexion shifts to strange effects, +After the moon. If thou art rich, thou'rt poor; +For, like an ass whose back with ingots bows, +Thou bear's thy heavy riches but a journey, +And death unloads thee. Friend hast thou none; +For thine own bowels, which do call thee sire, +The mere effusion of thy proper loins, +Do curse the gout, serpigo, and the rheum, +For ending thee no sooner. Thou hast nor youth nor age, +But, as it were, an after-dinner's sleep, +Dreaming on both; for all thy blessed youth +Becomes as aged, and doth beg the alms +Of palsied eld; and when thou art old and rich, +Thou hast neither heat, affection, limb, nor beauty, +To make thy riches pleasant. What's yet in this +That bears the name of life? Yet in this life +Lie hid moe thousand deaths: yet death we fear, +That makes these odds all even. + +CLAUDIO: +I humbly thank you. +To sue to live, I find I seek to die; +And, seeking death, find life: let it come on. + +ISABELLA: + +Provost: +Who's there? come in: the wish deserves a welcome. + +DUKE VINCENTIO: +Dear sir, ere long I'll visit you again. + +CLAUDIO: +Most holy sir, I thank you. + +ISABELLA: +My business is a word or two with Claudio. + +Provost: +And very welcome. Look, signior, here's your sister. + +DUKE VINCENTIO: +Provost, a word with you. + +Provost: +As many as you please. + +DUKE VINCENTIO: +Bring me to hear them speak, where I may be concealed. + +CLAUDIO: +Now, sister, what's the comfort? + +ISABELLA: +Why, +As all comforts are; most good, most good indeed. +Lord Angelo, having affairs to heaven, +Intends you for his swift ambassador, +Where you shall be an everlasting leiger: +Therefore your best appointment make with speed; +To-morrow you set on. + +CLAUDIO: +Is there no remedy? + +ISABELLA: +None, but such remedy as, to save a head, +To cleave a heart in twain. + +CLAUDIO: +But is there any? + +ISABELLA: +Yes, brother, you may live: +There is a devilish mercy in the judge, +If you'll implore it, that will free your life, +But fetter you till death. + +CLAUDIO: +Perpetual durance? + +ISABELLA: +Ay, just; perpetual durance, a restraint, +Though all the world's vastidity you had, +To a determined scope. + +CLAUDIO: +But in what nature? + +ISABELLA: +In such a one as, you consenting to't, +Would bark your honour from that trunk you bear, +And leave you naked. + +CLAUDIO: +Let me know the point. + +ISABELLA: +O, I do fear thee, Claudio; and I quake, +Lest thou a feverous life shouldst entertain, +And six or seven winters more respect +Than a perpetual honour. Darest thou die? +The sense of death is most in apprehension; +And the poor beetle, that we tread upon, +In corporal sufferance finds a pang as great +As when a giant dies. + +CLAUDIO: +Why give you me this shame? +Think you I can a resolution fetch +From flowery tenderness? If I must die, +I will encounter darkness as a bride, +And hug it in mine arms. + +ISABELLA: +There spake my brother; there my father's grave +Did utter forth a voice. Yes, thou must die: +Thou art too noble to conserve a life +In base appliances. This outward-sainted deputy, +Whose settled visage and deliberate word +Nips youth i' the head and follies doth emmew +As falcon doth the fowl, is yet a devil +His filth within being cast, he would appear +A pond as deep as hell. + +CLAUDIO: +The prenzie Angelo! + +ISABELLA: +O, 'tis the cunning livery of hell, +The damned'st body to invest and cover +In prenzie guards! Dost thou think, Claudio? +If I would yield him my virginity, +Thou mightst be freed. + +CLAUDIO: +O heavens! it cannot be. + +ISABELLA: +Yes, he would give't thee, from this rank offence, +So to offend him still. This night's the time +That I should do what I abhor to name, +Or else thou diest to-morrow. + +CLAUDIO: +Thou shalt not do't. + +ISABELLA: +O, were it but my life, +I'ld throw it down for your deliverance +As frankly as a pin. + +CLAUDIO: +Thanks, dear Isabel. + +ISABELLA: +Be ready, Claudio, for your death tomorrow. + +CLAUDIO: +Yes. Has he affections in him, +That thus can make him bite the law by the nose, +When he would force it? Sure, it is no sin, +Or of the deadly seven, it is the least. + +ISABELLA: +Which is the least? + +CLAUDIO: +If it were damnable, he being so wise, +Why would he for the momentary trick +Be perdurably fined? O Isabel! + +ISABELLA: +What says my brother? + +CLAUDIO: +Death is a fearful thing. + +ISABELLA: +And shamed life a hateful. + +CLAUDIO: +Ay, but to die, and go we know not where; +To lie in cold obstruction and to rot; +This sensible warm motion to become +A kneaded clod; and the delighted spirit +To bathe in fiery floods, or to reside +In thrilling region of thick-ribbed ice; +To be imprison'd in the viewless winds, +And blown with restless violence round about +The pendent world; or to be worse than worst +Of those that lawless and incertain thought +Imagine howling: 'tis too horrible! +The weariest and most loathed worldly life +That age, ache, penury and imprisonment +Can lay on nature is a paradise +To what we fear of death. + +ISABELLA: +Alas, alas! + +CLAUDIO: +Sweet sister, let me live: +What sin you do to save a brother's life, +Nature dispenses with the deed so far +That it becomes a virtue. + +ISABELLA: +O you beast! +O faithless coward! O dishonest wretch! +Wilt thou be made a man out of my vice? +Is't not a kind of incest, to take life +From thine own sister's shame? What should I think? +Heaven shield my mother play'd my father fair! +For such a warped slip of wilderness +Ne'er issued from his blood. Take my defiance! +Die, perish! Might but my bending down +Reprieve thee from thy fate, it should proceed: +I'll pray a thousand prayers for thy death, +No word to save thee. + +CLAUDIO: +Nay, hear me, Isabel. + +ISABELLA: +O, fie, fie, fie! +Thy sin's not accidental, but a trade. +Mercy to thee would prove itself a bawd: +'Tis best thou diest quickly. + +CLAUDIO: +O hear me, Isabella! + +DUKE VINCENTIO: +Vouchsafe a word, young sister, but one word. + +ISABELLA: +What is your will? + +DUKE VINCENTIO: +Might you dispense with your leisure, I would by and +by have some speech with you: the satisfaction I +would require is likewise your own benefit. + +ISABELLA: +I have no superfluous leisure; my stay must be +stolen out of other affairs; but I will attend you awhile. + +DUKE VINCENTIO: +Son, I have overheard what hath passed between you +and your sister. Angelo had never the purpose to +corrupt her; only he hath made an essay of her +virtue to practise his judgment with the disposition +of natures: she, having the truth of honour in her, +hath made him that gracious denial which he is most +glad to receive. I am confessor to Angelo, and I +know this to be true; therefore prepare yourself to +death: do not satisfy your resolution with hopes +that are fallible: tomorrow you must die; go to +your knees and make ready. + +CLAUDIO: +Let me ask my sister pardon. I am so out of love +with life that I will sue to be rid of it. + +DUKE VINCENTIO: +Hold you there: farewell. +Provost, a word with you! + +Provost: +What's your will, father + +DUKE VINCENTIO: +That now you are come, you will be gone. Leave me +awhile with the maid: my mind promises with my +habit no loss shall touch her by my company. + +Provost: +In good time. + +DUKE VINCENTIO: +The hand that hath made you fair hath made you good: +the goodness that is cheap in beauty makes beauty +brief in goodness; but grace, being the soul of +your complexion, shall keep the body of it ever +fair. The assault that Angelo hath made to you, +fortune hath conveyed to my understanding; and, but +that frailty hath examples for his falling, I should +wonder at Angelo. How will you do to content this +substitute, and to save your brother? + +ISABELLA: +I am now going to resolve him: I had rather my +brother die by the law than my son should be +unlawfully born. But, O, how much is the good duke +deceived in Angelo! If ever he return and I can +speak to him, I will open my lips in vain, or +discover his government. + +DUKE VINCENTIO: +That shall not be much amiss: Yet, as the matter +now stands, he will avoid your accusation; he made +trial of you only. Therefore fasten your ear on my +advisings: to the love I have in doing good a +remedy presents itself. I do make myself believe +that you may most uprighteously do a poor wronged +lady a merited benefit; redeem your brother from +the angry law; do no stain to your own gracious +person; and much please the absent duke, if +peradventure he shall ever return to have hearing of +this business. + +ISABELLA: +Let me hear you speak farther. I have spirit to do +anything that appears not foul in the truth of my spirit. + +DUKE VINCENTIO: +Virtue is bold, and goodness never fearful. Have +you not heard speak of Mariana, the sister of +Frederick the great soldier who miscarried at sea? + +ISABELLA: +I have heard of the lady, and good words went with her name. + +DUKE VINCENTIO: +She should this Angelo have married; was affianced +to her by oath, and the nuptial appointed: between +which time of the contract and limit of the +solemnity, her brother Frederick was wrecked at sea, +having in that perished vessel the dowry of his +sister. But mark how heavily this befell to the +poor gentlewoman: there she lost a noble and +renowned brother, in his love toward her ever most +kind and natural; with him, the portion and sinew of +her fortune, her marriage-dowry; with both, her +combinate husband, this well-seeming Angelo. + +ISABELLA: +Can this be so? did Angelo so leave her? + +DUKE VINCENTIO: +Left her in her tears, and dried not one of them +with his comfort; swallowed his vows whole, +pretending in her discoveries of dishonour: in few, +bestowed her on her own lamentation, which she yet +wears for his sake; and he, a marble to her tears, +is washed with them, but relents not. + +ISABELLA: +What a merit were it in death to take this poor maid +from the world! What corruption in this life, that +it will let this man live! But how out of this can she avail? + +DUKE VINCENTIO: +It is a rupture that you may easily heal: and the +cure of it not only saves your brother, but keeps +you from dishonour in doing it. + +ISABELLA: +Show me how, good father. + +DUKE VINCENTIO: +This forenamed maid hath yet in her the continuance +of her first affection: his unjust unkindness, that +in all reason should have quenched her love, hath, +like an impediment in the current, made it more +violent and unruly. Go you to Angelo; answer his +requiring with a plausible obedience; agree with +his demands to the point; only refer yourself to +this advantage, first, that your stay with him may +not be long; that the time may have all shadow and +silence in it; and the place answer to convenience. +This being granted in course,--and now follows +all,--we shall advise this wronged maid to stead up +your appointment, go in your place; if the encounter +acknowledge itself hereafter, it may compel him to +her recompense: and here, by this, is your brother +saved, your honour untainted, the poor Mariana +advantaged, and the corrupt deputy scaled. The maid +will I frame and make fit for his attempt. If you +think well to carry this as you may, the doubleness +of the benefit defends the deceit from reproof. +What think you of it? + +ISABELLA: +The image of it gives me content already; and I +trust it will grow to a most prosperous perfection. + +DUKE VINCENTIO: +It lies much in your holding up. Haste you speedily +to Angelo: if for this night he entreat you to his +bed, give him promise of satisfaction. I will +presently to Saint Luke's: there, at the moated +grange, resides this dejected Mariana. At that +place call upon me; and dispatch with Angelo, that +it may be quickly. + +ISABELLA: +I thank you for this comfort. Fare you well, good father. + +ELBOW: +Nay, if there be no remedy for it, but that you will +needs buy and sell men and women like beasts, we +shall have all the world drink brown and white bastard. + +DUKE VINCENTIO: +O heavens! what stuff is here + +POMPEY: +'Twas never merry world since, of two usuries, the +merriest was put down, and the worser allowed by +order of law a furred gown to keep him warm; and +furred with fox and lamb-skins too, to signify, that +craft, being richer than innocency, stands for the facing. + +ELBOW: +Come your way, sir. 'Bless you, good father friar. + +DUKE VINCENTIO: +And you, good brother father. What offence hath +this man made you, sir? + +ELBOW: +Marry, sir, he hath offended the law: and, sir, we +take him to be a thief too, sir; for we have found +upon him, sir, a strange picklock, which we have +sent to the deputy. + +DUKE VINCENTIO: +Fie, sirrah! a bawd, a wicked bawd! +The evil that thou causest to be done, +That is thy means to live. Do thou but think +What 'tis to cram a maw or clothe a back +From such a filthy vice: say to thyself, +From their abominable and beastly touches +I drink, I eat, array myself, and live. +Canst thou believe thy living is a life, +So stinkingly depending? Go mend, go mend. + +POMPEY: +Indeed, it does stink in some sort, sir; but yet, +sir, I would prove-- + +DUKE VINCENTIO: +Nay, if the devil have given thee proofs for sin, +Thou wilt prove his. Take him to prison, officer: +Correction and instruction must both work +Ere this rude beast will profit. + +ELBOW: +He must before the deputy, sir; he has given him +warning: the deputy cannot abide a whoremaster: if +he be a whoremonger, and comes before him, he were +as good go a mile on his errand. + +DUKE VINCENTIO: +That we were all, as some would seem to be, +From our faults, as faults from seeming, free! + +ELBOW: +His neck will come to your waist,--a cord, sir. + +POMPEY: +I spy comfort; I cry bail. Here's a gentleman and a +friend of mine. + +LUCIO: +How now, noble Pompey! What, at the wheels of +Caesar? art thou led in triumph? What, is there +none of Pygmalion's images, newly made woman, to be +had now, for putting the hand in the pocket and +extracting it clutch'd? What reply, ha? What +sayest thou to this tune, matter and method? Is't +not drowned i' the last rain, ha? What sayest +thou, Trot? Is the world as it was, man? Which is +the way? Is it sad, and few words? or how? The +trick of it? + +DUKE VINCENTIO: +Still thus, and thus; still worse! + +LUCIO: +How doth my dear morsel, thy mistress? Procures she +still, ha? + +POMPEY: +Troth, sir, she hath eaten up all her beef, and she +is herself in the tub. + +LUCIO: +Why, 'tis good; it is the right of it; it must be +so: ever your fresh whore and your powdered bawd: +an unshunned consequence; it must be so. Art going +to prison, Pompey? + +POMPEY: +Yes, faith, sir. + +LUCIO: +Why, 'tis not amiss, Pompey. Farewell: go, say I +sent thee thither. For debt, Pompey? or how? + +ELBOW: +For being a bawd, for being a bawd. + +LUCIO: +Well, then, imprison him: if imprisonment be the +due of a bawd, why, 'tis his right: bawd is he +doubtless, and of antiquity too; bawd-born. +Farewell, good Pompey. Commend me to the prison, +Pompey: you will turn good husband now, Pompey; you +will keep the house. + +POMPEY: +I hope, sir, your good worship will be my bail. + +LUCIO: +No, indeed, will I not, Pompey; it is not the wear. +I will pray, Pompey, to increase your bondage: If +you take it not patiently, why, your mettle is the +more. Adieu, trusty Pompey. 'Bless you, friar. + +DUKE VINCENTIO: +And you. + +LUCIO: +Does Bridget paint still, Pompey, ha? + +ELBOW: +Come your ways, sir; come. + +POMPEY: +You will not bail me, then, sir? + +LUCIO: +Then, Pompey, nor now. What news abroad, friar? +what news? + +ELBOW: +Come your ways, sir; come. + +LUCIO: +Go to kennel, Pompey; go. +What news, friar, of the duke? + +DUKE VINCENTIO: +I know none. Can you tell me of any? + +LUCIO: +Some say he is with the Emperor of Russia; other +some, he is in Rome: but where is he, think you? + +DUKE VINCENTIO: +I know not where; but wheresoever, I wish him well. + +LUCIO: +It was a mad fantastical trick of him to steal from +the state, and usurp the beggary he was never born +to. Lord Angelo dukes it well in his absence; he +puts transgression to 't. + +DUKE VINCENTIO: +He does well in 't. + +LUCIO: +A little more lenity to lechery would do no harm in +him: something too crabbed that way, friar. + +DUKE VINCENTIO: +It is too general a vice, and severity must cure it. + +LUCIO: +Yes, in good sooth, the vice is of a great kindred; +it is well allied: but it is impossible to extirp +it quite, friar, till eating and drinking be put +down. They say this Angelo was not made by man and +woman after this downright way of creation: is it +true, think you? + +DUKE VINCENTIO: +How should he be made, then? + +LUCIO: +Some report a sea-maid spawned him; some, that he +was begot between two stock-fishes. But it is +certain that when he makes water his urine is +congealed ice; that I know to be true: and he is a +motion generative; that's infallible. + +DUKE VINCENTIO: +You are pleasant, sir, and speak apace. + +LUCIO: +Why, what a ruthless thing is this in him, for the +rebellion of a codpiece to take away the life of a +man! Would the duke that is absent have done this? +Ere he would have hanged a man for the getting a +hundred bastards, he would have paid for the nursing +a thousand: he had some feeling of the sport: he +knew the service, and that instructed him to mercy. + +DUKE VINCENTIO: +I never heard the absent duke much detected for +women; he was not inclined that way. + +LUCIO: +O, sir, you are deceived. + +DUKE VINCENTIO: +'Tis not possible. + +LUCIO: +Who, not the duke? yes, your beggar of fifty; and +his use was to put a ducat in her clack-dish: the +duke had crotchets in him. He would be drunk too; +that let me inform you. + +DUKE VINCENTIO: +You do him wrong, surely. + +LUCIO: +Sir, I was an inward of his. A shy fellow was the +duke: and I believe I know the cause of his +withdrawing. + +DUKE VINCENTIO: +What, I prithee, might be the cause? + +LUCIO: +No, pardon; 'tis a secret must be locked within the +teeth and the lips: but this I can let you +understand, the greater file of the subject held the +duke to be wise. + +DUKE VINCENTIO: +Wise! why, no question but he was. + +LUCIO: +A very superficial, ignorant, unweighing fellow. + +DUKE VINCENTIO: +Either this is the envy in you, folly, or mistaking: +the very stream of his life and the business he hath +helmed must upon a warranted need give him a better +proclamation. Let him be but testimonied in his own +bringings-forth, and he shall appear to the +envious a scholar, a statesman and a soldier. +Therefore you speak unskilfully: or if your +knowledge be more it is much darkened in your malice. + +LUCIO: +Sir, I know him, and I love him. + +DUKE VINCENTIO: +Love talks with better knowledge, and knowledge with +dearer love. + +LUCIO: +Come, sir, I know what I know. + +DUKE VINCENTIO: +I can hardly believe that, since you know not what +you speak. But, if ever the duke return, as our +prayers are he may, let me desire you to make your +answer before him. If it be honest you have spoke, +you have courage to maintain it: I am bound to call +upon you; and, I pray you, your name? + +LUCIO: +Sir, my name is Lucio; well known to the duke. + +DUKE VINCENTIO: +He shall know you better, sir, if I may live to +report you. + +LUCIO: +I fear you not. + +DUKE VINCENTIO: +O, you hope the duke will return no more; or you +imagine me too unhurtful an opposite. But indeed I +can do you little harm; you'll forswear this again. + +LUCIO: +I'll be hanged first: thou art deceived in me, +friar. But no more of this. Canst thou tell if +Claudio die to-morrow or no? + +DUKE VINCENTIO: +Why should he die, sir? + +LUCIO: +Why? For filling a bottle with a tundish. I would +the duke we talk of were returned again: the +ungenitured agent will unpeople the province with +continency; sparrows must not build in his +house-eaves, because they are lecherous. The duke +yet would have dark deeds darkly answered; he would +never bring them to light: would he were returned! +Marry, this Claudio is condemned for untrussing. +Farewell, good friar: I prithee, pray for me. The +duke, I say to thee again, would eat mutton on +Fridays. He's not past it yet, and I say to thee, +he would mouth with a beggar, though she smelt brown +bread and garlic: say that I said so. Farewell. + +DUKE VINCENTIO: +No might nor greatness in mortality +Can censure 'scape; back-wounding calumny +The whitest virtue strikes. What king so strong +Can tie the gall up in the slanderous tongue? +But who comes here? + +ESCALUS: +Go; away with her to prison! + +MISTRESS OVERDONE: +Good my lord, be good to me; your honour is accounted +a merciful man; good my lord. + +ESCALUS: +Double and treble admonition, and still forfeit in +the same kind! This would make mercy swear and play +the tyrant. + +Provost: +A bawd of eleven years' continuance, may it please +your honour. + +MISTRESS OVERDONE: +My lord, this is one Lucio's information against me. +Mistress Kate Keepdown was with child by him in the +duke's time; he promised her marriage: his child +is a year and a quarter old, come Philip and Jacob: +I have kept it myself; and see how he goes about to abuse me! + +ESCALUS: +That fellow is a fellow of much licence: let him be +called before us. Away with her to prison! Go to; +no more words. +Provost, my brother Angelo will not be altered; +Claudio must die to-morrow: let him be furnished +with divines, and have all charitable preparation. +if my brother wrought by my pity, it should not be +so with him. + +Provost: +So please you, this friar hath been with him, and +advised him for the entertainment of death. + +ESCALUS: +Good even, good father. + +DUKE VINCENTIO: +Bliss and goodness on you! + +ESCALUS: +Of whence are you? + +DUKE VINCENTIO: +Not of this country, though my chance is now +To use it for my time: I am a brother +Of gracious order, late come from the See +In special business from his holiness. + +ESCALUS: +What news abroad i' the world? + +DUKE VINCENTIO: +None, but that there is so great a fever on +goodness, that the dissolution of it must cure it: +novelty is only in request; and it is as dangerous +to be aged in any kind of course, as it is virtuous +to be constant in any undertaking. There is scarce +truth enough alive to make societies secure; but +security enough to make fellowships accurst: much +upon this riddle runs the wisdom of the world. This +news is old enough, yet it is every day's news. I +pray you, sir, of what disposition was the duke? + +ESCALUS: +One that, above all other strifes, contended +especially to know himself. + +DUKE VINCENTIO: +What pleasure was he given to? + +ESCALUS: +Rather rejoicing to see another merry, than merry at +any thing which professed to make him rejoice: a +gentleman of all temperance. But leave we him to +his events, with a prayer they may prove prosperous; +and let me desire to know how you find Claudio +prepared. I am made to understand that you have +lent him visitation. + +DUKE VINCENTIO: +He professes to have received no sinister measure +from his judge, but most willingly humbles himself +to the determination of justice: yet had he framed +to himself, by the instruction of his frailty, many +deceiving promises of life; which I by my good +leisure have discredited to him, and now is he +resolved to die. + +ESCALUS: +You have paid the heavens your function, and the +prisoner the very debt of your calling. I have +laboured for the poor gentleman to the extremest +shore of my modesty: but my brother justice have I +found so severe, that he hath forced me to tell him +he is indeed Justice. + +DUKE VINCENTIO: +If his own life answer the straitness of his +proceeding, it shall become him well; wherein if he +chance to fail, he hath sentenced himself. + +ESCALUS: +I am going to visit the prisoner. Fare you well. + +DUKE VINCENTIO: +Peace be with you! +He who the sword of heaven will bear +Should be as holy as severe; +Pattern in himself to know, +Grace to stand, and virtue go; +More nor less to others paying +Than by self-offences weighing. +Shame to him whose cruel striking +Kills for faults of his own liking! +Twice treble shame on Angelo, +To weed my vice and let his grow! +O, what may man within him hide, +Though angel on the outward side! +How may likeness made in crimes, +Making practise on the times, +To draw with idle spiders' strings +Most ponderous and substantial things! +Craft against vice I must apply: +With Angelo to-night shall lie +His old betrothed but despised; +So disguise shall, by the disguised, +Pay with falsehood false exacting, +And perform an old contracting. + + +MARIANA: +Break off thy song, and haste thee quick away: +Here comes a man of comfort, whose advice +Hath often still'd my brawling discontent. +I cry you mercy, sir; and well could wish +You had not found me here so musical: +Let me excuse me, and believe me so, +My mirth it much displeased, but pleased my woe. + +DUKE VINCENTIO: +'Tis good; though music oft hath such a charm +To make bad good, and good provoke to harm. +I pray, you, tell me, hath any body inquired +for me here to-day? much upon this time have +I promised here to meet. + +MARIANA: +You have not been inquired after: +I have sat here all day. + +DUKE VINCENTIO: +I do constantly believe you. The time is come even +now. I shall crave your forbearance a little: may +be I will call upon you anon, for some advantage to yourself. + +MARIANA: +I am always bound to you. + +DUKE VINCENTIO: +Very well met, and well come. +What is the news from this good deputy? + +ISABELLA: +He hath a garden circummured with brick, +Whose western side is with a vineyard back'd; +And to that vineyard is a planched gate, +That makes his opening with this bigger key: +This other doth command a little door +Which from the vineyard to the garden leads; +There have I made my promise +Upon the heavy middle of the night +To call upon him. + +DUKE VINCENTIO: +But shall you on your knowledge find this way? + +ISABELLA: +I have ta'en a due and wary note upon't: +With whispering and most guilty diligence, +In action all of precept, he did show me +The way twice o'er. + +DUKE VINCENTIO: +Are there no other tokens +Between you 'greed concerning her observance? + +ISABELLA: +No, none, but only a repair i' the dark; +And that I have possess'd him my most stay +Can be but brief; for I have made him know +I have a servant comes with me along, +That stays upon me, whose persuasion is +I come about my brother. + +DUKE VINCENTIO: +'Tis well borne up. +I have not yet made known to Mariana +A word of this. What, ho! within! come forth! +I pray you, be acquainted with this maid; +She comes to do you good. + +ISABELLA: +I do desire the like. + +DUKE VINCENTIO: +Do you persuade yourself that I respect you? + +MARIANA: +Good friar, I know you do, and have found it. + +DUKE VINCENTIO: +Take, then, this your companion by the hand, +Who hath a story ready for your ear. +I shall attend your leisure: but make haste; +The vaporous night approaches. + +MARIANA: +Will't please you walk aside? + +DUKE VINCENTIO: +O place and greatness! millions of false eyes +Are stuck upon thee: volumes of report +Run with these false and most contrarious quests +Upon thy doings: thousand escapes of wit +Make thee the father of their idle dreams +And rack thee in their fancies. +Welcome, how agreed? + +ISABELLA: +She'll take the enterprise upon her, father, +If you advise it. + +DUKE VINCENTIO: +It is not my consent, +But my entreaty too. + +ISABELLA: +Little have you to say +When you depart from him, but, soft and low, +'Remember now my brother.' + +MARIANA: +Fear me not. + +DUKE VINCENTIO: +Nor, gentle daughter, fear you not at all. +He is your husband on a pre-contract: +To bring you thus together, 'tis no sin, +Sith that the justice of your title to him +Doth flourish the deceit. Come, let us go: +Our corn's to reap, for yet our tithe's to sow. + +Provost: +Come hither, sirrah. Can you cut off a man's head? + +POMPEY: +If the man be a bachelor, sir, I can; but if he be a +married man, he's his wife's head, and I can never +cut off a woman's head. + +Provost: +Come, sir, leave me your snatches, and yield me a +direct answer. To-morrow morning are to die Claudio +and Barnardine. Here is in our prison a common +executioner, who in his office lacks a helper: if +you will take it on you to assist him, it shall +redeem you from your gyves; if not, you shall have +your full time of imprisonment and your deliverance +with an unpitied whipping, for you have been a +notorious bawd. + +POMPEY: +Sir, I have been an unlawful bawd time out of mind; +but yet I will be content to be a lawful hangman. I +would be glad to receive some instruction from my +fellow partner. + +Provost: +What, ho! Abhorson! Where's Abhorson, there? + +ABHORSON: +Do you call, sir? + +Provost: +Sirrah, here's a fellow will help you to-morrow in +your execution. If you think it meet, compound with +him by the year, and let him abide here with you; if +not, use him for the present and dismiss him. He +cannot plead his estimation with you; he hath been a bawd. + +ABHORSON: +A bawd, sir? fie upon him! he will discredit our mystery. + +Provost: +Go to, sir; you weigh equally; a feather will turn +the scale. + +POMPEY: +Pray, sir, by your good favour,--for surely, sir, a +good favour you have, but that you have a hanging +look,--do you call, sir, your occupation a mystery? + +ABHORSON: +Ay, sir; a mystery + +POMPEY: +Painting, sir, I have heard say, is a mystery; and +your whores, sir, being members of my occupation, +using painting, do prove my occupation a mystery: +but what mystery there should be in hanging, if I +should be hanged, I cannot imagine. + +ABHORSON: +Sir, it is a mystery. + +POMPEY: +Proof? + +ABHORSON: +Every true man's apparel fits your thief: if it be +too little for your thief, your true man thinks it +big enough; if it be too big for your thief, your +thief thinks it little enough: so every true man's +apparel fits your thief. + +Provost: +Are you agreed? + +POMPEY: +Sir, I will serve him; for I do find your hangman is +a more penitent trade than your bawd; he doth +oftener ask forgiveness. + +Provost: +You, sirrah, provide your block and your axe +to-morrow four o'clock. + +ABHORSON: +Come on, bawd; I will instruct thee in my trade; follow. + +POMPEY: +I do desire to learn, sir: and I hope, if you have +occasion to use me for your own turn, you shall find +me yare; for truly, sir, for your kindness I owe you +a good turn. + +Provost: +Call hither Barnardine and Claudio: +The one has my pity; not a jot the other, +Being a murderer, though he were my brother. +Look, here's the warrant, Claudio, for thy death: +'Tis now dead midnight, and by eight to-morrow +Thou must be made immortal. Where's Barnardine? + +CLAUDIO: +As fast lock'd up in sleep as guiltless labour +When it lies starkly in the traveller's bones: +He will not wake. + +Provost: +Who can do good on him? +Well, go, prepare yourself. +But, hark, what noise? +Heaven give your spirits comfort! +By and by. +I hope it is some pardon or reprieve +For the most gentle Claudio. +Welcome father. + +DUKE VINCENTIO: +The best and wholesomest spirts of the night +Envelope you, good Provost! Who call'd here of late? + +Provost: +None, since the curfew rung. + +DUKE VINCENTIO: +Not Isabel? + +Provost: +No. + +DUKE VINCENTIO: +They will, then, ere't be long. + +Provost: +What comfort is for Claudio? + +DUKE VINCENTIO: +There's some in hope. + +Provost: +It is a bitter deputy. + +DUKE VINCENTIO: +Not so, not so; his life is parallel'd +Even with the stroke and line of his great justice: +He doth with holy abstinence subdue +That in himself which he spurs on his power +To qualify in others: were he meal'd with that +Which he corrects, then were he tyrannous; +But this being so, he's just. +Now are they come. +This is a gentle provost: seldom when +The steeled gaoler is the friend of men. +How now! what noise? That spirit's possessed with haste +That wounds the unsisting postern with these strokes. + +Provost: +There he must stay until the officer +Arise to let him in: he is call'd up. + +DUKE VINCENTIO: +Have you no countermand for Claudio yet, +But he must die to-morrow? + +Provost: +None, sir, none. + +DUKE VINCENTIO: +As near the dawning, provost, as it is, +You shall hear more ere morning. + +Provost: +Happily +You something know; yet I believe there comes +No countermand; no such example have we: +Besides, upon the very siege of justice +Lord Angelo hath to the public ear +Profess'd the contrary. +This is his lordship's man. + +DUKE VINCENTIO: +And here comes Claudio's pardon. + +Messenger: + +Provost: +I shall obey him. + +DUKE VINCENTIO: + +Provost: +I told you. Lord Angelo, belike thinking me remiss +in mine office, awakens me with this unwonted +putting-on; methinks strangely, for he hath not used it before. + +DUKE VINCENTIO: +Pray you, let's hear. + +Provost: + +DUKE VINCENTIO: +What is that Barnardine who is to be executed in the +afternoon? + +Provost: +A Bohemian born, but here nursed un and bred; one +that is a prisoner nine years old. + +DUKE VINCENTIO: +How came it that the absent duke had not either +delivered him to his liberty or executed him? I +have heard it was ever his manner to do so. + +Provost: +His friends still wrought reprieves for him: and, +indeed, his fact, till now in the government of Lord +Angelo, came not to an undoubtful proof. + +DUKE VINCENTIO: +It is now apparent? + +Provost: +Most manifest, and not denied by himself. + +DUKE VINCENTIO: +Hath he born himself penitently in prison? how +seems he to be touched? + +Provost: +A man that apprehends death no more dreadfully but +as a drunken sleep; careless, reckless, and fearless +of what's past, present, or to come; insensible of +mortality, and desperately mortal. + +DUKE VINCENTIO: +He wants advice. + +Provost: +He will hear none: he hath evermore had the liberty +of the prison; give him leave to escape hence, he +would not: drunk many times a day, if not many days +entirely drunk. We have very oft awaked him, as if +to carry him to execution, and showed him a seeming +warrant for it: it hath not moved him at all. + +DUKE VINCENTIO: +More of him anon. There is written in your brow, +provost, honesty and constancy: if I read it not +truly, my ancient skill beguiles me; but, in the +boldness of my cunning, I will lay myself in hazard. +Claudio, whom here you have warrant to execute, is +no greater forfeit to the law than Angelo who hath +sentenced him. To make you understand this in a +manifested effect, I crave but four days' respite; +for the which you are to do me both a present and a +dangerous courtesy. + +Provost: +Pray, sir, in what? + +DUKE VINCENTIO: +In the delaying death. + +Provost: +A lack, how may I do it, having the hour limited, +and an express command, under penalty, to deliver +his head in the view of Angelo? I may make my case +as Claudio's, to cross this in the smallest. + +DUKE VINCENTIO: +By the vow of mine order I warrant you, if my +instructions may be your guide. Let this Barnardine +be this morning executed, and his head born to Angelo. + +Provost: +Angelo hath seen them both, and will discover the favour. + +DUKE VINCENTIO: +O, death's a great disguiser; and you may add to it. +Shave the head, and tie the beard; and say it was +the desire of the penitent to be so bared before his +death: you know the course is common. If any thing +fall to you upon this, more than thanks and good +fortune, by the saint whom I profess, I will plead +against it with my life. + +Provost: +Pardon me, good father; it is against my oath. + +DUKE VINCENTIO: +Were you sworn to the duke, or to the deputy? + +Provost: +To him, and to his substitutes. + +DUKE VINCENTIO: +You will think you have made no offence, if the duke +avouch the justice of your dealing? + +Provost: +But what likelihood is in that? + +DUKE VINCENTIO: +Not a resemblance, but a certainty. Yet since I see +you fearful, that neither my coat, integrity, nor +persuasion can with ease attempt you, I will go +further than I meant, to pluck all fears out of you. +Look you, sir, here is the hand and seal of the +duke: you know the character, I doubt not; and the +signet is not strange to you. + +Provost: +I know them both. + +DUKE VINCENTIO: +The contents of this is the return of the duke: you +shall anon over-read it at your pleasure; where you +shall find, within these two days he will be here. +This is a thing that Angelo knows not; for he this +very day receives letters of strange tenor; +perchance of the duke's death; perchance entering +into some monastery; but, by chance, nothing of what +is writ. Look, the unfolding star calls up the +shepherd. Put not yourself into amazement how these +things should be: all difficulties are but easy +when they are known. Call your executioner, and off +with Barnardine's head: I will give him a present +shrift and advise him for a better place. Yet you +are amazed; but this shall absolutely resolve you. +Come away; it is almost clear dawn. + +POMPEY: +I am as well acquainted here as I was in our house +of profession: one would think it were Mistress +Overdone's own house, for here be many of her old +customers. First, here's young Master Rash; he's in +for a commodity of brown paper and old ginger, +ninescore and seventeen pounds; of which he made +five marks, ready money: marry, then ginger was not +much in request, for the old women were all dead. +Then is there here one Master Caper, at the suit of +Master Three-pile the mercer, for some four suits of +peach-coloured satin, which now peaches him a +beggar. Then have we here young Dizy, and young +Master Deep-vow, and Master Copperspur, and Master +Starve-lackey the rapier and dagger man, and young +Drop-heir that killed lusty Pudding, and Master +Forthlight the tilter, and brave Master Shooty the +great traveller, and wild Half-can that stabbed +Pots, and, I think, forty more; all great doers in +our trade, and are now 'for the Lord's sake.' + +ABHORSON: +Sirrah, bring Barnardine hither. + +POMPEY: +Master Barnardine! you must rise and be hanged. +Master Barnardine! + +ABHORSON: +What, ho, Barnardine! + +BARNARDINE: + +POMPEY: +Your friends, sir; the hangman. You must be so +good, sir, to rise and be put to death. + +BARNARDINE: + +ABHORSON: +Tell him he must awake, and that quickly too. + +POMPEY: +Pray, Master Barnardine, awake till you are +executed, and sleep afterwards. + +ABHORSON: +Go in to him, and fetch him out. + +POMPEY: +He is coming, sir, he is coming; I hear his straw rustle. + +ABHORSON: +Is the axe upon the block, sirrah? + +POMPEY: +Very ready, sir. + +BARNARDINE: +How now, Abhorson? what's the news with you? + +ABHORSON: +Truly, sir, I would desire you to clap into your +prayers; for, look you, the warrant's come. + +BARNARDINE: +You rogue, I have been drinking all night; I am not +fitted for 't. + +POMPEY: +O, the better, sir; for he that drinks all night, +and is hanged betimes in the morning, may sleep the +sounder all the next day. + +ABHORSON: +Look you, sir; here comes your ghostly father: do +we jest now, think you? + +DUKE VINCENTIO: +Sir, induced by my charity, and hearing how hastily +you are to depart, I am come to advise you, comfort +you and pray with you. + +BARNARDINE: +Friar, not I I have been drinking hard all night, +and I will have more time to prepare me, or they +shall beat out my brains with billets: I will not +consent to die this day, that's certain. + +DUKE VINCENTIO: +O, sir, you must: and therefore I beseech you +Look forward on the journey you shall go. + +BARNARDINE: +I swear I will not die to-day for any man's +persuasion. + +DUKE VINCENTIO: +But hear you. + +BARNARDINE: +Not a word: if you have any thing to say to me, +come to my ward; for thence will not I to-day. + +DUKE VINCENTIO: +Unfit to live or die: O gravel heart! +After him, fellows; bring him to the block. + +Provost: +Now, sir, how do you find the prisoner? + +DUKE VINCENTIO: +A creature unprepared, unmeet for death; +And to transport him in the mind he is +Were damnable. + +Provost: +Here in the prison, father, +There died this morning of a cruel fever +One Ragozine, a most notorious pirate, +A man of Claudio's years; his beard and head +Just of his colour. What if we do omit +This reprobate till he were well inclined; +And satisfy the deputy with the visage +Of Ragozine, more like to Claudio? + +DUKE VINCENTIO: +O, 'tis an accident that heaven provides! +Dispatch it presently; the hour draws on +Prefix'd by Angelo: see this be done, +And sent according to command; whiles I +Persuade this rude wretch willingly to die. + +Provost: +This shall be done, good father, presently. +But Barnardine must die this afternoon: +And how shall we continue Claudio, +To save me from the danger that might come +If he were known alive? + +DUKE VINCENTIO: +Let this be done. +Put them in secret holds, both Barnardine and Claudio: +Ere twice the sun hath made his journal greeting +To the under generation, you shall find +Your safety manifested. + +Provost: +I am your free dependant. + +DUKE VINCENTIO: +Quick, dispatch, and send the head to Angelo. +Now will I write letters to Angelo,-- +The provost, he shall bear them, whose contents +Shall witness to him I am near at home, +And that, by great injunctions, I am bound +To enter publicly: him I'll desire +To meet me at the consecrated fount +A league below the city; and from thence, +By cold gradation and well-balanced form, +We shall proceed with Angelo. + +Provost: +Here is the head; I'll carry it myself. + +DUKE VINCENTIO: +Convenient is it. Make a swift return; +For I would commune with you of such things +That want no ear but yours. + +Provost: +I'll make all speed. + +ISABELLA: + +DUKE VINCENTIO: +The tongue of Isabel. She's come to know +If yet her brother's pardon be come hither: +But I will keep her ignorant of her good, +To make her heavenly comforts of despair, +When it is least expected. + +ISABELLA: +Ho, by your leave! + +DUKE VINCENTIO: +Good morning to you, fair and gracious daughter. + +ISABELLA: +The better, given me by so holy a man. +Hath yet the deputy sent my brother's pardon? + +DUKE VINCENTIO: +He hath released him, Isabel, from the world: +His head is off and sent to Angelo. + +ISABELLA: +Nay, but it is not so. + +DUKE VINCENTIO: +It is no other: show your wisdom, daughter, +In your close patience. + +ISABELLA: +O, I will to him and pluck out his eyes! + +DUKE VINCENTIO: +You shall not be admitted to his sight. + +ISABELLA: +Unhappy Claudio! wretched Isabel! +Injurious world! most damned Angelo! + +DUKE VINCENTIO: +This nor hurts him nor profits you a jot; +Forbear it therefore; give your cause to heaven. +Mark what I say, which you shall find +By every syllable a faithful verity: +The duke comes home to-morrow; nay, dry your eyes; +One of our convent, and his confessor, +Gives me this instance: already he hath carried +Notice to Escalus and Angelo, +Who do prepare to meet him at the gates, +There to give up their power. If you can, pace your wisdom +In that good path that I would wish it go, +And you shall have your bosom on this wretch, +Grace of the duke, revenges to your heart, +And general honour. + +ISABELLA: +I am directed by you. + +DUKE VINCENTIO: +This letter, then, to Friar Peter give; +'Tis that he sent me of the duke's return: +Say, by this token, I desire his company +At Mariana's house to-night. Her cause and yours +I'll perfect him withal, and he shall bring you +Before the duke, and to the head of Angelo +Accuse him home and home. For my poor self, +I am combined by a sacred vow +And shall be absent. Wend you with this letter: +Command these fretting waters from your eyes +With a light heart; trust not my holy order, +If I pervert your course. Who's here? + +LUCIO: +Good even. Friar, where's the provost? + +DUKE VINCENTIO: +Not within, sir. + +LUCIO: +O pretty Isabella, I am pale at mine heart to see +thine eyes so red: thou must be patient. I am fain +to dine and sup with water and bran; I dare not for +my head fill my belly; one fruitful meal would set +me to 't. But they say the duke will be here +to-morrow. By my troth, Isabel, I loved thy brother: +if the old fantastical duke of dark corners had been +at home, he had lived. + +DUKE VINCENTIO: +Sir, the duke is marvellous little beholding to your +reports; but the best is, he lives not in them. + +LUCIO: +Friar, thou knowest not the duke so well as I do: +he's a better woodman than thou takest him for. + +DUKE VINCENTIO: +Well, you'll answer this one day. Fare ye well. + +LUCIO: +Nay, tarry; I'll go along with thee +I can tell thee pretty tales of the duke. + +DUKE VINCENTIO: +You have told me too many of him already, sir, if +they be true; if not true, none were enough. + +LUCIO: +I was once before him for getting a wench with child. + +DUKE VINCENTIO: +Did you such a thing? + +LUCIO: +Yes, marry, did I but I was fain to forswear it; +they would else have married me to the rotten medlar. + +DUKE VINCENTIO: +Sir, your company is fairer than honest. Rest you well. + +LUCIO: +By my troth, I'll go with thee to the lane's end: +if bawdy talk offend you, we'll have very little of +it. Nay, friar, I am a kind of burr; I shall stick. + +ESCALUS: +Every letter he hath writ hath disvouched other. + +ANGELO: +In most uneven and distracted manner. His actions +show much like to madness: pray heaven his wisdom be +not tainted! And why meet him at the gates, and +redeliver our authorities there + +ESCALUS: +I guess not. + +ANGELO: +And why should we proclaim it in an hour before his +entering, that if any crave redress of injustice, +they should exhibit their petitions in the street? + +ESCALUS: +He shows his reason for that: to have a dispatch of +complaints, and to deliver us from devices +hereafter, which shall then have no power to stand +against us. + +ANGELO: +Well, I beseech you, let it be proclaimed betimes +i' the morn; I'll call you at your house: give +notice to such men of sort and suit as are to meet +him. + +ESCALUS: +I shall, sir. Fare you well. + +ANGELO: +Good night. +This deed unshapes me quite, makes me unpregnant +And dull to all proceedings. A deflower'd maid! +And by an eminent body that enforced +The law against it! But that her tender shame +Will not proclaim against her maiden loss, +How might she tongue me! Yet reason dares her no; +For my authority bears of a credent bulk, +That no particular scandal once can touch +But it confounds the breather. He should have lived, +Save that riotous youth, with dangerous sense, +Might in the times to come have ta'en revenge, +By so receiving a dishonour'd life +With ransom of such shame. Would yet he had lived! +A lack, when once our grace we have forgot, +Nothing goes right: we would, and we would not. + +DUKE VINCENTIO: +These letters at fit time deliver me +The provost knows our purpose and our plot. +The matter being afoot, keep your instruction, +And hold you ever to our special drift; +Though sometimes you do blench from this to that, +As cause doth minister. Go call at Flavius' house, +And tell him where I stay: give the like notice +To Valentinus, Rowland, and to Crassus, +And bid them bring the trumpets to the gate; +But send me Flavius first. + +FRIAR PETER: +It shall be speeded well. + +DUKE VINCENTIO: +I thank thee, Varrius; thou hast made good haste: +Come, we will walk. There's other of our friends +Will greet us here anon, my gentle Varrius. + +ISABELLA: +To speak so indirectly I am loath: +I would say the truth; but to accuse him so, +That is your part: yet I am advised to do it; +He says, to veil full purpose. + +MARIANA: +Be ruled by him. + +ISABELLA: +Besides, he tells me that, if peradventure +He speak against me on the adverse side, +I should not think it strange; for 'tis a physic +That's bitter to sweet end. + +MARIANA: +I would Friar Peter-- + +ISABELLA: +O, peace! the friar is come. + +FRIAR PETER: +Come, I have found you out a stand most fit, +Where you may have such vantage on the duke, +He shall not pass you. Twice have the trumpets sounded; +The generous and gravest citizens +Have hent the gates, and very near upon +The duke is entering: therefore, hence, away! + +DUKE VINCENTIO: +My very worthy cousin, fairly met! +Our old and faithful friend, we are glad to see you. + +ANGELO: +Happy return be to your royal grace! + +DUKE VINCENTIO: +Many and hearty thankings to you both. +We have made inquiry of you; and we hear +Such goodness of your justice, that our soul +Cannot but yield you forth to public thanks, +Forerunning more requital. + +ANGELO: +You make my bonds still greater. + +DUKE VINCENTIO: +O, your desert speaks loud; and I should wrong it, +To lock it in the wards of covert bosom, +When it deserves, with characters of brass, +A forted residence 'gainst the tooth of time +And razure of oblivion. Give me your hand, +And let the subject see, to make them know +That outward courtesies would fain proclaim +Favours that keep within. Come, Escalus, +You must walk by us on our other hand; +And good supporters are you. + +FRIAR PETER: +Now is your time: speak loud and kneel before him. + +ISABELLA: +Justice, O royal duke! Vail your regard +Upon a wrong'd, I would fain have said, a maid! +O worthy prince, dishonour not your eye +By throwing it on any other object +Till you have heard me in my true complaint +And given me justice, justice, justice, justice! + +DUKE VINCENTIO: +Relate your wrongs; in what? by whom? be brief. +Here is Lord Angelo shall give you justice: +Reveal yourself to him. + +ISABELLA: +O worthy duke, +You bid me seek redemption of the devil: +Hear me yourself; for that which I must speak +Must either punish me, not being believed, +Or wring redress from you. Hear me, O hear me, here! + +ANGELO: +My lord, her wits, I fear me, are not firm: +She hath been a suitor to me for her brother +Cut off by course of justice,-- + +ISABELLA: +By course of justice! + +ANGELO: +And she will speak most bitterly and strange. + +ISABELLA: +Most strange, but yet most truly, will I speak: +That Angelo's forsworn; is it not strange? +That Angelo's a murderer; is 't not strange? +That Angelo is an adulterous thief, +An hypocrite, a virgin-violator; +Is it not strange and strange? + +DUKE VINCENTIO: +Nay, it is ten times strange. + +ISABELLA: +It is not truer he is Angelo +Than this is all as true as it is strange: +Nay, it is ten times true; for truth is truth +To the end of reckoning. + +DUKE VINCENTIO: +Away with her! Poor soul, +She speaks this in the infirmity of sense. + +ISABELLA: +O prince, I conjure thee, as thou believest +There is another comfort than this world, +That thou neglect me not, with that opinion +That I am touch'd with madness! Make not impossible +That which but seems unlike: 'tis not impossible +But one, the wicked'st caitiff on the ground, +May seem as shy, as grave, as just, as absolute +As Angelo; even so may Angelo, +In all his dressings, characts, titles, forms, +Be an arch-villain; believe it, royal prince: +If he be less, he's nothing; but he's more, +Had I more name for badness. + +DUKE VINCENTIO: +By mine honesty, +If she be mad,--as I believe no other,-- +Her madness hath the oddest frame of sense, +Such a dependency of thing on thing, +As e'er I heard in madness. + +ISABELLA: +O gracious duke, +Harp not on that, nor do not banish reason +For inequality; but let your reason serve +To make the truth appear where it seems hid, +And hide the false seems true. + +DUKE VINCENTIO: +Many that are not mad +Have, sure, more lack of reason. What would you say? + +ISABELLA: +I am the sister of one Claudio, +Condemn'd upon the act of fornication +To lose his head; condemn'd by Angelo: +I, in probation of a sisterhood, +Was sent to by my brother; one Lucio +As then the messenger,-- + +LUCIO: +That's I, an't like your grace: +I came to her from Claudio, and desired her +To try her gracious fortune with Lord Angelo +For her poor brother's pardon. + +ISABELLA: +That's he indeed. + +DUKE VINCENTIO: +You were not bid to speak. + +LUCIO: +No, my good lord; +Nor wish'd to hold my peace. + +DUKE VINCENTIO: +I wish you now, then; +Pray you, take note of it: and when you have +A business for yourself, pray heaven you then +Be perfect. + +LUCIO: +I warrant your honour. + +DUKE VINCENTIO: +The warrants for yourself; take heed to't. + +ISABELLA: +This gentleman told somewhat of my tale,-- + +LUCIO: +Right. + +DUKE VINCENTIO: +It may be right; but you are i' the wrong +To speak before your time. Proceed. + +ISABELLA: +I went +To this pernicious caitiff deputy,-- + +DUKE VINCENTIO: +That's somewhat madly spoken. + +ISABELLA: +Pardon it; +The phrase is to the matter. + +DUKE VINCENTIO: +Mended again. The matter; proceed. + +ISABELLA: +In brief, to set the needless process by, +How I persuaded, how I pray'd, and kneel'd, +How he refell'd me, and how I replied,-- +For this was of much length,--the vile conclusion +I now begin with grief and shame to utter: +He would not, but by gift of my chaste body +To his concupiscible intemperate lust, +Release my brother; and, after much debatement, +My sisterly remorse confutes mine honour, +And I did yield to him: but the next morn betimes, +His purpose surfeiting, he sends a warrant +For my poor brother's head. + +DUKE VINCENTIO: +This is most likely! + +ISABELLA: +O, that it were as like as it is true! + +DUKE VINCENTIO: +By heaven, fond wretch, thou knowist not what thou speak'st, +Or else thou art suborn'd against his honour +In hateful practise. First, his integrity +Stands without blemish. Next, it imports no reason +That with such vehemency he should pursue +Faults proper to himself: if he had so offended, +He would have weigh'd thy brother by himself +And not have cut him off. Some one hath set you on: +Confess the truth, and say by whose advice +Thou camest here to complain. + +ISABELLA: +And is this all? +Then, O you blessed ministers above, +Keep me in patience, and with ripen'd time +Unfold the evil which is here wrapt up +In countenance! Heaven shield your grace from woe, +As I, thus wrong'd, hence unbelieved go! + +DUKE VINCENTIO: +I know you'ld fain be gone. An officer! +To prison with her! Shall we thus permit +A blasting and a scandalous breath to fall +On him so near us? This needs must be a practise. +Who knew of Your intent and coming hither? + +ISABELLA: +One that I would were here, Friar Lodowick. + +DUKE VINCENTIO: +A ghostly father, belike. Who knows that Lodowick? + +LUCIO: +My lord, I know him; 'tis a meddling friar; +I do not like the man: had he been lay, my lord +For certain words he spake against your grace +In your retirement, I had swinged him soundly. + +DUKE VINCENTIO: +Words against me? this is a good friar, belike! +And to set on this wretched woman here +Against our substitute! Let this friar be found. + +LUCIO: +But yesternight, my lord, she and that friar, +I saw them at the prison: a saucy friar, +A very scurvy fellow. + +FRIAR PETER: +Blessed be your royal grace! +I have stood by, my lord, and I have heard +Your royal ear abused. First, hath this woman +Most wrongfully accused your substitute, +Who is as free from touch or soil with her +As she from one ungot. + +DUKE VINCENTIO: +We did believe no less. +Know you that Friar Lodowick that she speaks of? + +FRIAR PETER: +I know him for a man divine and holy; +Not scurvy, nor a temporary meddler, +As he's reported by this gentleman; +And, on my trust, a man that never yet +Did, as he vouches, misreport your grace. + +LUCIO: +My lord, most villanously; believe it. + +FRIAR PETER: +Well, he in time may come to clear himself; +But at this instant he is sick my lord, +Of a strange fever. Upon his mere request, +Being come to knowledge that there was complaint +Intended 'gainst Lord Angelo, came I hither, +To speak, as from his mouth, what he doth know +Is true and false; and what he with his oath +And all probation will make up full clear, +Whensoever he's convented. First, for this woman. +To justify this worthy nobleman, +So vulgarly and personally accused, +Her shall you hear disproved to her eyes, +Till she herself confess it. + +DUKE VINCENTIO: +Good friar, let's hear it. +Do you not smile at this, Lord Angelo? +O heaven, the vanity of wretched fools! +Give us some seats. Come, cousin Angelo; +In this I'll be impartial; be you judge +Of your own cause. Is this the witness, friar? +First, let her show her face, and after speak. + +MARIANA: +Pardon, my lord; I will not show my face +Until my husband bid me. + +DUKE VINCENTIO: +What, are you married? + +MARIANA: +No, my lord. + +DUKE VINCENTIO: +Are you a maid? + +MARIANA: +No, my lord. + +DUKE VINCENTIO: +A widow, then? + +MARIANA: +Neither, my lord. + +DUKE VINCENTIO: +Why, you are nothing then: neither maid, widow, nor wife? + +LUCIO: +My lord, she may be a punk; for many of them are +neither maid, widow, nor wife. + +DUKE VINCENTIO: +Silence that fellow: I would he had some cause +To prattle for himself. + +LUCIO: +Well, my lord. + +MARIANA: +My lord; I do confess I ne'er was married; +And I confess besides I am no maid: +I have known my husband; yet my husband +Knows not that ever he knew me. + +LUCIO: +He was drunk then, my lord: it can be no better. + +DUKE VINCENTIO: +For the benefit of silence, would thou wert so too! + +LUCIO: +Well, my lord. + +DUKE VINCENTIO: +This is no witness for Lord Angelo. + +MARIANA: +Now I come to't my lord +She that accuses him of fornication, +In self-same manner doth accuse my husband, +And charges him my lord, with such a time +When I'll depose I had him in mine arms +With all the effect of love. + +ANGELO: +Charges she more than me? + +MARIANA: +Not that I know. + +DUKE VINCENTIO: +No? you say your husband. + +MARIANA: +Why, just, my lord, and that is Angelo, +Who thinks he knows that he ne'er knew my body, +But knows he thinks that he knows Isabel's. + +ANGELO: +This is a strange abuse. Let's see thy face. + +MARIANA: +My husband bids me; now I will unmask. +This is that face, thou cruel Angelo, +Which once thou sworest was worth the looking on; +This is the hand which, with a vow'd contract, +Was fast belock'd in thine; this is the body +That took away the match from Isabel, +And did supply thee at thy garden-house +In her imagined person. + +DUKE VINCENTIO: +Know you this woman? + +LUCIO: +Carnally, she says. + +DUKE VINCENTIO: +Sirrah, no more! + +LUCIO: +Enough, my lord. + +ANGELO: +My lord, I must confess I know this woman: +And five years since there was some speech of marriage +Betwixt myself and her; which was broke off, +Partly for that her promised proportions +Came short of composition, but in chief +For that her reputation was disvalued +In levity: since which time of five years +I never spake with her, saw her, nor heard from her, +Upon my faith and honour. + +MARIANA: +Noble prince, +As there comes light from heaven and words from breath, +As there is sense in truth and truth in virtue, +I am affianced this man's wife as strongly +As words could make up vows: and, my good lord, +But Tuesday night last gone in's garden-house +He knew me as a wife. As this is true, +Let me in safety raise me from my knees +Or else for ever be confixed here, +A marble monument! + +ANGELO: +I did but smile till now: +Now, good my lord, give me the scope of justice +My patience here is touch'd. I do perceive +These poor informal women are no more +But instruments of some more mightier member +That sets them on: let me have way, my lord, +To find this practise out. + +DUKE VINCENTIO: +Ay, with my heart +And punish them to your height of pleasure. +Thou foolish friar, and thou pernicious woman, +Compact with her that's gone, think'st thou thy oaths, +Though they would swear down each particular saint, +Were testimonies against his worth and credit +That's seal'd in approbation? You, Lord Escalus, +Sit with my cousin; lend him your kind pains +To find out this abuse, whence 'tis derived. +There is another friar that set them on; +Let him be sent for. + +FRIAR PETER: +Would he were here, my lord! for he indeed +Hath set the women on to this complaint: +Your provost knows the place where he abides +And he may fetch him. + +DUKE VINCENTIO: +Go do it instantly. +And you, my noble and well-warranted cousin, +Whom it concerns to hear this matter forth, +Do with your injuries as seems you best, +In any chastisement: I for a while will leave you; +But stir not you till you have well determined +Upon these slanderers. + +ESCALUS: +My lord, we'll do it throughly. +Signior Lucio, did not you say you knew that +Friar Lodowick to be a dishonest person? + +LUCIO: +'Cucullus non facit monachum:' honest in nothing +but in his clothes; and one that hath spoke most +villanous speeches of the duke. + +ESCALUS: +We shall entreat you to abide here till he come and +enforce them against him: we shall find this friar a +notable fellow. + +LUCIO: +As any in Vienna, on my word. + +ESCALUS: +Call that same Isabel here once again; I would speak with her. +Pray you, my lord, give me leave to question; you +shall see how I'll handle her. + +LUCIO: +Not better than he, by her own report. + +ESCALUS: +Say you? + +LUCIO: +Marry, sir, I think, if you handled her privately, +she would sooner confess: perchance, publicly, +she'll be ashamed. + +ESCALUS: +I will go darkly to work with her. + +LUCIO: +That's the way; for women are light at midnight. + +ESCALUS: +Come on, mistress: here's a gentlewoman denies all +that you have said. + +LUCIO: +My lord, here comes the rascal I spoke of; here with +the provost. + +ESCALUS: +In very good time: speak not you to him till we +call upon you. + +LUCIO: +Mum. + +ESCALUS: +Come, sir: did you set these women on to slander +Lord Angelo? they have confessed you did. + +DUKE VINCENTIO: +'Tis false. + +ESCALUS: +How! know you where you are? + +DUKE VINCENTIO: +Respect to your great place! and let the devil +Be sometime honour'd for his burning throne! +Where is the duke? 'tis he should hear me speak. + +ESCALUS: +The duke's in us; and we will hear you speak: +Look you speak justly. + +DUKE VINCENTIO: +Boldly, at least. But, O, poor souls, +Come you to seek the lamb here of the fox? +Good night to your redress! Is the duke gone? +Then is your cause gone too. The duke's unjust, +Thus to retort your manifest appeal, +And put your trial in the villain's mouth +Which here you come to accuse. + +LUCIO: +This is the rascal; this is he I spoke of. + +ESCALUS: +Why, thou unreverend and unhallow'd friar, +Is't not enough thou hast suborn'd these women +To accuse this worthy man, but, in foul mouth +And in the witness of his proper ear, +To call him villain? and then to glance from him +To the duke himself, to tax him with injustice? +Take him hence; to the rack with him! We'll touse you +Joint by joint, but we will know his purpose. +What 'unjust'! + +DUKE VINCENTIO: +Be not so hot; the duke +Dare no more stretch this finger of mine than he +Dare rack his own: his subject am I not, +Nor here provincial. My business in this state +Made me a looker on here in Vienna, +Where I have seen corruption boil and bubble +Till it o'er-run the stew; laws for all faults, +But faults so countenanced, that the strong statutes +Stand like the forfeits in a barber's shop, +As much in mock as mark. + +ESCALUS: +Slander to the state! Away with him to prison! + +ANGELO: +What can you vouch against him, Signior Lucio? +Is this the man that you did tell us of? + +LUCIO: +'Tis he, my lord. Come hither, goodman baldpate: +do you know me? + +DUKE VINCENTIO: +I remember you, sir, by the sound of your voice: I +met you at the prison, in the absence of the duke. + +LUCIO: +O, did you so? And do you remember what you said of the duke? + +DUKE VINCENTIO: +Most notedly, sir. + +LUCIO: +Do you so, sir? And was the duke a fleshmonger, a +fool, and a coward, as you then reported him to be? + +DUKE VINCENTIO: +You must, sir, change persons with me, ere you make +that my report: you, indeed, spoke so of him; and +much more, much worse. + +LUCIO: +O thou damnable fellow! Did not I pluck thee by the +nose for thy speeches? + +DUKE VINCENTIO: +I protest I love the duke as I love myself. + +ANGELO: +Hark, how the villain would close now, after his +treasonable abuses! + +ESCALUS: +Such a fellow is not to be talked withal. Away with +him to prison! Where is the provost? Away with him +to prison! lay bolts enough upon him: let him +speak no more. Away with those giglots too, and +with the other confederate companion! + +DUKE VINCENTIO: + +ANGELO: +What, resists he? Help him, Lucio. + +LUCIO: +Come, sir; come, sir; come, sir; foh, sir! Why, you +bald-pated, lying rascal, you must be hooded, must +you? Show your knave's visage, with a pox to you! +show your sheep-biting face, and be hanged an hour! +Will't not off? + +DUKE VINCENTIO: +Thou art the first knave that e'er madest a duke. +First, provost, let me bail these gentle three. +Sneak not away, sir; for the friar and you +Must have a word anon. Lay hold on him. + +LUCIO: +This may prove worse than hanging. + +DUKE VINCENTIO: + +ANGELO: +O my dread lord, +I should be guiltier than my guiltiness, +To think I can be undiscernible, +When I perceive your grace, like power divine, +Hath look'd upon my passes. Then, good prince, +No longer session hold upon my shame, +But let my trial be mine own confession: +Immediate sentence then and sequent death +Is all the grace I beg. + +DUKE VINCENTIO: +Come hither, Mariana. +Say, wast thou e'er contracted to this woman? + +ANGELO: +I was, my lord. + +DUKE VINCENTIO: +Go take her hence, and marry her instantly. +Do you the office, friar; which consummate, +Return him here again. Go with him, provost. + +ESCALUS: +My lord, I am more amazed at his dishonour +Than at the strangeness of it. + +DUKE VINCENTIO: +Come hither, Isabel. +Your friar is now your prince: as I was then +Advertising and holy to your business, +Not changing heart with habit, I am still +Attorney'd at your service. + +ISABELLA: +O, give me pardon, +That I, your vassal, have employ'd and pain'd +Your unknown sovereignty! + +DUKE VINCENTIO: +You are pardon'd, Isabel: +And now, dear maid, be you as free to us. +Your brother's death, I know, sits at your heart; +And you may marvel why I obscured myself, +Labouring to save his life, and would not rather +Make rash remonstrance of my hidden power +Than let him so be lost. O most kind maid, +It was the swift celerity of his death, +Which I did think with slower foot came on, +That brain'd my purpose. But, peace be with him! +That life is better life, past fearing death, +Than that which lives to fear: make it your comfort, +So happy is your brother. + +ISABELLA: +I do, my lord. + +DUKE VINCENTIO: +For this new-married man approaching here, +Whose salt imagination yet hath wrong'd +Your well defended honour, you must pardon +For Mariana's sake: but as he adjudged your brother,-- +Being criminal, in double violation +Of sacred chastity and of promise-breach +Thereon dependent, for your brother's life,-- +The very mercy of the law cries out +Most audible, even from his proper tongue, +'An Angelo for Claudio, death for death!' +Haste still pays haste, and leisure answers leisure; +Like doth quit like, and MEASURE still FOR MEASURE. +Then, Angelo, thy fault's thus manifested; +Which, though thou wouldst deny, denies thee vantage. +We do condemn thee to the very block +Where Claudio stoop'd to death, and with like haste. +Away with him! + +MARIANA: +O my most gracious lord, +I hope you will not mock me with a husband. + +DUKE VINCENTIO: +It is your husband mock'd you with a husband. +Consenting to the safeguard of your honour, +I thought your marriage fit; else imputation, +For that he knew you, might reproach your life +And choke your good to come; for his possessions, +Although by confiscation they are ours, +We do instate and widow you withal, +To buy you a better husband. + +MARIANA: +O my dear lord, +I crave no other, nor no better man. + +DUKE VINCENTIO: +Never crave him; we are definitive. + +MARIANA: +Gentle my liege,-- + +DUKE VINCENTIO: +You do but lose your labour. +Away with him to death! +Now, sir, to you. + +MARIANA: +O my good lord! Sweet Isabel, take my part; +Lend me your knees, and all my life to come +I'll lend you all my life to do you service. + +DUKE VINCENTIO: +Against all sense you do importune her: +Should she kneel down in mercy of this fact, +Her brother's ghost his paved bed would break, +And take her hence in horror. + +MARIANA: +Isabel, +Sweet Isabel, do yet but kneel by me; +Hold up your hands, say nothing; I'll speak all. +They say, best men are moulded out of faults; +And, for the most, become much more the better +For being a little bad: so may my husband. +O Isabel, will you not lend a knee? + +DUKE VINCENTIO: +He dies for Claudio's death. + +ISABELLA: +Most bounteous sir, +Look, if it please you, on this man condemn'd, +As if my brother lived: I partly think +A due sincerity govern'd his deeds, +Till he did look on me: since it is so, +Let him not die. My brother had but justice, +In that he did the thing for which he died: +For Angelo, +His act did not o'ertake his bad intent, +And must be buried but as an intent +That perish'd by the way: thoughts are no subjects; +Intents but merely thoughts. + +MARIANA: +Merely, my lord. + +DUKE VINCENTIO: +Your suit's unprofitable; stand up, I say. +I have bethought me of another fault. +Provost, how came it Claudio was beheaded +At an unusual hour? + +Provost: +It was commanded so. + +DUKE VINCENTIO: +Had you a special warrant for the deed? + +Provost: +No, my good lord; it was by private message. + +DUKE VINCENTIO: +For which I do discharge you of your office: +Give up your keys. + +Provost: +Pardon me, noble lord: +I thought it was a fault, but knew it not; +Yet did repent me, after more advice; +For testimony whereof, one in the prison, +That should by private order else have died, +I have reserved alive. + +DUKE VINCENTIO: +What's he? + +Provost: +His name is Barnardine. + +DUKE VINCENTIO: +I would thou hadst done so by Claudio. +Go fetch him hither; let me look upon him. + +ESCALUS: +I am sorry, one so learned and so wise +As you, Lord Angelo, have still appear'd, +Should slip so grossly, both in the heat of blood. +And lack of temper'd judgment afterward. + +ANGELO: +I am sorry that such sorrow I procure: +And so deep sticks it in my penitent heart +That I crave death more willingly than mercy; +'Tis my deserving, and I do entreat it. + +DUKE VINCENTIO: +Which is that Barnardine? + +Provost: +This, my lord. + +DUKE VINCENTIO: +There was a friar told me of this man. +Sirrah, thou art said to have a stubborn soul. +That apprehends no further than this world, +And squarest thy life according. Thou'rt condemn'd: +But, for those earthly faults, I quit them all; +And pray thee take this mercy to provide +For better times to come. Friar, advise him; +I leave him to your hand. What muffled fellow's that? + +Provost: +This is another prisoner that I saved. +Who should have died when Claudio lost his head; +As like almost to Claudio as himself. + +DUKE VINCENTIO: + +LUCIO: +'Faith, my lord. I spoke it but according to the +trick. If you will hang me for it, you may; but I +had rather it would please you I might be whipt. + +DUKE VINCENTIO: +Whipt first, sir, and hanged after. +Proclaim it, provost, round about the city. +Is any woman wrong'd by this lewd fellow, +As I have heard him swear himself there's one +Whom he begot with child, let her appear, +And he shall marry her: the nuptial finish'd, +Let him be whipt and hang'd. + +LUCIO: +I beseech your highness, do not marry me to a whore. +Your highness said even now, I made you a duke: +good my lord, do not recompense me in making me a cuckold. + +DUKE VINCENTIO: +Upon mine honour, thou shalt marry her. +Thy slanders I forgive; and therewithal +Remit thy other forfeits. Take him to prison; +And see our pleasure herein executed. + +LUCIO: +Marrying a punk, my lord, is pressing to death, +whipping, and hanging. + +DUKE VINCENTIO: +Slandering a prince deserves it. +She, Claudio, that you wrong'd, look you restore. +Joy to you, Mariana! Love her, Angelo: +I have confess'd her and I know her virtue. +Thanks, good friend Escalus, for thy much goodness: +There's more behind that is more gratulate. +Thanks, provost, for thy care and secrecy: +We shill employ thee in a worthier place. +Forgive him, Angelo, that brought you home +The head of Ragozine for Claudio's: +The offence pardons itself. Dear Isabel, +I have a motion much imports your good; +Whereto if you'll a willing ear incline, +What's mine is yours and what is yours is mine. +So, bring us to our palace; where we'll show +What's yet behind, that's meet you all should know. + +SLY: +I'll pheeze you, in faith. + +Hostess: +A pair of stocks, you rogue! + +SLY: +Ye are a baggage: the Slys are no rogues; look in +the chronicles; we came in with Richard Conqueror. +Therefore paucas pallabris; let the world slide: sessa! + +Hostess: +You will not pay for the glasses you have burst? + +SLY: +No, not a denier. Go by, Jeronimy: go to thy cold +bed, and warm thee. + +Hostess: +I know my remedy; I must go fetch the +third--borough. + +SLY: +Third, or fourth, or fifth borough, I'll answer him +by law: I'll not budge an inch, boy: let him come, +and kindly. + +Lord: +Huntsman, I charge thee, tender well my hounds: +Brach Merriman, the poor cur is emboss'd; +And couple Clowder with the deep--mouth'd brach. +Saw'st thou not, boy, how Silver made it good +At the hedge-corner, in the coldest fault? +I would not lose the dog for twenty pound. + +First Huntsman: +Why, Belman is as good as he, my lord; +He cried upon it at the merest loss +And twice to-day pick'd out the dullest scent: +Trust me, I take him for the better dog. + +Lord: +Thou art a fool: if Echo were as fleet, +I would esteem him worth a dozen such. +But sup them well and look unto them all: +To-morrow I intend to hunt again. + +First Huntsman: +I will, my lord. + +Lord: +What's here? one dead, or drunk? See, doth he breathe? + +Second Huntsman: +He breathes, my lord. Were he not warm'd with ale, +This were a bed but cold to sleep so soundly. + +Lord: +O monstrous beast! how like a swine he lies! +Grim death, how foul and loathsome is thine image! +Sirs, I will practise on this drunken man. +What think you, if he were convey'd to bed, +Wrapp'd in sweet clothes, rings put upon his fingers, +A most delicious banquet by his bed, +And brave attendants near him when he wakes, +Would not the beggar then forget himself? + +First Huntsman: +Believe me, lord, I think he cannot choose. + +Second Huntsman: +It would seem strange unto him when he waked. + +Lord: +Even as a flattering dream or worthless fancy. +Then take him up and manage well the jest: +Carry him gently to my fairest chamber +And hang it round with all my wanton pictures: +Balm his foul head in warm distilled waters +And burn sweet wood to make the lodging sweet: +Procure me music ready when he wakes, +To make a dulcet and a heavenly sound; +And if he chance to speak, be ready straight +And with a low submissive reverence +Say 'What is it your honour will command?' +Let one attend him with a silver basin +Full of rose-water and bestrew'd with flowers, +Another bear the ewer, the third a diaper, +And say 'Will't please your lordship cool your hands?' +Some one be ready with a costly suit +And ask him what apparel he will wear; +Another tell him of his hounds and horse, +And that his lady mourns at his disease: +Persuade him that he hath been lunatic; +And when he says he is, say that he dreams, +For he is nothing but a mighty lord. +This do and do it kindly, gentle sirs: +It will be pastime passing excellent, +If it be husbanded with modesty. + +First Huntsman: +My lord, I warrant you we will play our part, +As he shall think by our true diligence +He is no less than what we say he is. + +Lord: +Take him up gently and to bed with him; +And each one to his office when he wakes. +Sirrah, go see what trumpet 'tis that sounds: +Belike, some noble gentleman that means, +Travelling some journey, to repose him here. +How now! who is it? + +Servant: +An't please your honour, players +That offer service to your lordship. + +Lord: +Bid them come near. +Now, fellows, you are welcome. + +Players: +We thank your honour. + +Lord: +Do you intend to stay with me tonight? + +A Player: +So please your lordship to accept our duty. + +Lord: +With all my heart. This fellow I remember, +Since once he play'd a farmer's eldest son: +'Twas where you woo'd the gentlewoman so well: +I have forgot your name; but, sure, that part +Was aptly fitted and naturally perform'd. + +A Player: +I think 'twas Soto that your honour means. + +Lord: +'Tis very true: thou didst it excellent. +Well, you are come to me in a happy time; +The rather for I have some sport in hand +Wherein your cunning can assist me much. +There is a lord will hear you play to-night: +But I am doubtful of your modesties; +Lest over-eyeing of his odd behavior,-- +For yet his honour never heard a play-- +You break into some merry passion +And so offend him; for I tell you, sirs, +If you should smile he grows impatient. + +A Player: +Fear not, my lord: we can contain ourselves, +Were he the veriest antic in the world. + +Lord: +Go, sirrah, take them to the buttery, +And give them friendly welcome every one: +Let them want nothing that my house affords. +Sirrah, go you to Barthol'mew my page, +And see him dress'd in all suits like a lady: +That done, conduct him to the drunkard's chamber; +And call him 'madam,' do him obeisance. +Tell him from me, as he will win my love, +He bear himself with honourable action, +Such as he hath observed in noble ladies +Unto their lords, by them accomplished: +Such duty to the drunkard let him do +With soft low tongue and lowly courtesy, +And say 'What is't your honour will command, +Wherein your lady and your humble wife +May show her duty and make known her love?' +And then with kind embracements, tempting kisses, +And with declining head into his bosom, +Bid him shed tears, as being overjoy'd +To see her noble lord restored to health, +Who for this seven years hath esteem'd him +No better than a poor and loathsome beggar: +And if the boy have not a woman's gift +To rain a shower of commanded tears, +An onion will do well for such a shift, +Which in a napkin being close convey'd +Shall in despite enforce a watery eye. +See this dispatch'd with all the haste thou canst: +Anon I'll give thee more instructions. +I know the boy will well usurp the grace, +Voice, gait and action of a gentlewoman: +I long to hear him call the drunkard husband, +And how my men will stay themselves from laughter +When they do homage to this simple peasant. +I'll in to counsel them; haply my presence +May well abate the over-merry spleen +Which otherwise would grow into extremes. + +SLY: +For God's sake, a pot of small ale. + +First Servant: +Will't please your lordship drink a cup of sack? + +Second Servant: +Will't please your honour taste of these conserves? + +Third Servant: +What raiment will your honour wear to-day? + +SLY: +I am Christophero Sly; call not me 'honour' nor +'lordship:' I ne'er drank sack in my life; and if +you give me any conserves, give me conserves of +beef: ne'er ask me what raiment I'll wear; for I +have no more doublets than backs, no more stockings +than legs, nor no more shoes than feet; nay, +sometimes more feet than shoes, or such shoes as my +toes look through the over-leather. + +Lord: +Heaven cease this idle humour in your honour! +O, that a mighty man of such descent, +Of such possessions and so high esteem, +Should be infused with so foul a spirit! + +SLY: +What, would you make me mad? Am not I Christopher +Sly, old Sly's son of Burtonheath, by birth a +pedlar, by education a cardmaker, by transmutation a +bear-herd, and now by present profession a tinker? +Ask Marian Hacket, the fat ale-wife of Wincot, if +she know me not: if she say I am not fourteen pence +on the score for sheer ale, score me up for the +lyingest knave in Christendom. What! I am not +bestraught: here's-- + +Third Servant: +O, this it is that makes your lady mourn! + +Second Servant: +O, this is it that makes your servants droop! + +Lord: +Hence comes it that your kindred shuns your house, +As beaten hence by your strange lunacy. +O noble lord, bethink thee of thy birth, +Call home thy ancient thoughts from banishment +And banish hence these abject lowly dreams. +Look how thy servants do attend on thee, +Each in his office ready at thy beck. +Wilt thou have music? hark! Apollo plays, +And twenty caged nightingales do sing: +Or wilt thou sleep? we'll have thee to a couch +Softer and sweeter than the lustful bed +On purpose trimm'd up for Semiramis. +Say thou wilt walk; we will bestrew the ground: +Or wilt thou ride? thy horses shall be trapp'd, +Their harness studded all with gold and pearl. +Dost thou love hawking? thou hast hawks will soar +Above the morning lark or wilt thou hunt? +Thy hounds shall make the welkin answer them +And fetch shrill echoes from the hollow earth. + +First Servant: +Say thou wilt course; thy greyhounds are as swift +As breathed stags, ay, fleeter than the roe. + +Second Servant: +Dost thou love pictures? we will fetch thee straight +Adonis painted by a running brook, +And Cytherea all in sedges hid, +Which seem to move and wanton with her breath, +Even as the waving sedges play with wind. + +Lord: +We'll show thee Io as she was a maid, +And how she was beguiled and surprised, +As lively painted as the deed was done. + +Third Servant: +Or Daphne roaming through a thorny wood, +Scratching her legs that one shall swear she bleeds, +And at that sight shall sad Apollo weep, +So workmanly the blood and tears are drawn. + +Lord: +Thou art a lord, and nothing but a lord: +Thou hast a lady far more beautiful +Than any woman in this waning age. + +First Servant: +And till the tears that she hath shed for thee +Like envious floods o'er-run her lovely face, +She was the fairest creature in the world; +And yet she is inferior to none. + +SLY: +Am I a lord? and have I such a lady? +Or do I dream? or have I dream'd till now? +I do not sleep: I see, I hear, I speak; +I smell sweet savours and I feel soft things: +Upon my life, I am a lord indeed +And not a tinker nor Christophero Sly. +Well, bring our lady hither to our sight; +And once again, a pot o' the smallest ale. + +Second Servant: +Will't please your mightiness to wash your hands? +O, how we joy to see your wit restored! +O, that once more you knew but what you are! +These fifteen years you have been in a dream; +Or when you waked, so waked as if you slept. + +SLY: +These fifteen years! by my fay, a goodly nap. +But did I never speak of all that time? + +First Servant: +O, yes, my lord, but very idle words: +For though you lay here in this goodly chamber, +Yet would you say ye were beaten out of door; +And rail upon the hostess of the house; +And say you would present her at the leet, +Because she brought stone jugs and no seal'd quarts: +Sometimes you would call out for Cicely Hacket. + +SLY: +Ay, the woman's maid of the house. + +Third Servant: +Why, sir, you know no house nor no such maid, +Nor no such men as you have reckon'd up, +As Stephen Sly and did John Naps of Greece +And Peter Turph and Henry Pimpernell +And twenty more such names and men as these +Which never were nor no man ever saw. + +SLY: +Now Lord be thanked for my good amends! + +ALL: +Amen. + +SLY: +I thank thee: thou shalt not lose by it. + +Page: +How fares my noble lord? + +SLY: +Marry, I fare well for here is cheer enough. +Where is my wife? + +Page: +Here, noble lord: what is thy will with her? + +SLY: +Are you my wife and will not call me husband? +My men should call me 'lord:' I am your goodman. + +Page: +My husband and my lord, my lord and husband; +I am your wife in all obedience. + +SLY: +I know it well. What must I call her? + +Lord: +Madam. + +SLY: +Al'ce madam, or Joan madam? + +Lord: +'Madam,' and nothing else: so lords +call ladies. + +SLY: +Madam wife, they say that I have dream'd +And slept above some fifteen year or more. + +Page: +Ay, and the time seems thirty unto me, +Being all this time abandon'd from your bed. + +SLY: +'Tis much. Servants, leave me and her alone. +Madam, undress you and come now to bed. + +Page: +Thrice noble lord, let me entreat of you +To pardon me yet for a night or two, +Or, if not so, until the sun be set: +For your physicians have expressly charged, +In peril to incur your former malady, +That I should yet absent me from your bed: +I hope this reason stands for my excuse. + +SLY: +Ay, it stands so that I may hardly +tarry so long. But I would be loath to fall into +my dreams again: I will therefore tarry in +despite of the flesh and the blood. + +Messenger: +Your honour's players, heating your amendment, +Are come to play a pleasant comedy; +For so your doctors hold it very meet, +Seeing too much sadness hath congeal'd your blood, +And melancholy is the nurse of frenzy: +Therefore they thought it good you hear a play +And frame your mind to mirth and merriment, +Which bars a thousand harms and lengthens life. + +SLY: +Marry, I will, let them play it. Is not a +comondy a Christmas gambold or a tumbling-trick? + +Page: +No, my good lord; it is more pleasing stuff. + +SLY: +What, household stuff? + +Page: +It is a kind of history. + +SLY: +Well, well see't. Come, madam wife, sit by my side +and let the world slip: we shall ne'er be younger. + +LUCENTIO: +Tranio, since for the great desire I had +To see fair Padua, nursery of arts, +I am arrived for fruitful Lombardy, +The pleasant garden of great Italy; +And by my father's love and leave am arm'd +With his good will and thy good company, +My trusty servant, well approved in all, +Here let us breathe and haply institute +A course of learning and ingenious studies. +Pisa renown'd for grave citizens +Gave me my being and my father first, +A merchant of great traffic through the world, +Vincetino come of Bentivolii. +Vincetino's son brought up in Florence +It shall become to serve all hopes conceived, +To deck his fortune with his virtuous deeds: +And therefore, Tranio, for the time I study, +Virtue and that part of philosophy +Will I apply that treats of happiness +By virtue specially to be achieved. +Tell me thy mind; for I have Pisa left +And am to Padua come, as he that leaves +A shallow plash to plunge him in the deep +And with satiety seeks to quench his thirst. + +TRANIO: +Mi perdonato, gentle master mine, +I am in all affected as yourself; +Glad that you thus continue your resolve +To suck the sweets of sweet philosophy. +Only, good master, while we do admire +This virtue and this moral discipline, +Let's be no stoics nor no stocks, I pray; +Or so devote to Aristotle's cheques +As Ovid be an outcast quite abjured: +Balk logic with acquaintance that you have +And practise rhetoric in your common talk; +Music and poesy use to quicken you; +The mathematics and the metaphysics, +Fall to them as you find your stomach serves you; +No profit grows where is no pleasure ta'en: +In brief, sir, study what you most affect. + +LUCENTIO: +Gramercies, Tranio, well dost thou advise. +If, Biondello, thou wert come ashore, +We could at once put us in readiness, +And take a lodging fit to entertain +Such friends as time in Padua shall beget. +But stay a while: what company is this? + +TRANIO: +Master, some show to welcome us to town. + +BAPTISTA: +Gentlemen, importune me no farther, +For how I firmly am resolved you know; +That is, not bestow my youngest daughter +Before I have a husband for the elder: +If either of you both love Katharina, +Because I know you well and love you well, +Leave shall you have to court her at your pleasure. + +GREMIO: + +KATHARINA: +I pray you, sir, is it your will +To make a stale of me amongst these mates? + +HORTENSIO: +Mates, maid! how mean you that? no mates for you, +Unless you were of gentler, milder mould. + +KATHARINA: +I'faith, sir, you shall never need to fear: +I wis it is not half way to her heart; +But if it were, doubt not her care should be +To comb your noddle with a three-legg'd stool +And paint your face and use you like a fool. + +HORTENSIA: +From all such devils, good Lord deliver us! + +GREMIO: +And me too, good Lord! + +TRANIO: +Hush, master! here's some good pastime toward: +That wench is stark mad or wonderful froward. + +LUCENTIO: +But in the other's silence do I see +Maid's mild behavior and sobriety. +Peace, Tranio! + +TRANIO: +Well said, master; mum! and gaze your fill. + +BAPTISTA: +Gentlemen, that I may soon make good +What I have said, Bianca, get you in: +And let it not displease thee, good Bianca, +For I will love thee ne'er the less, my girl. + +KATHARINA: +A pretty peat! it is best +Put finger in the eye, an she knew why. + +BIANCA: +Sister, content you in my discontent. +Sir, to your pleasure humbly I subscribe: +My books and instruments shall be my company, +On them to took and practise by myself. + +LUCENTIO: +Hark, Tranio! thou may'st hear Minerva speak. + +HORTENSIO: +Signior Baptista, will you be so strange? +Sorry am I that our good will effects +Bianca's grief. + +GREMIO: +Why will you mew her up, +Signior Baptista, for this fiend of hell, +And make her bear the penance of her tongue? + +BAPTISTA: +Gentlemen, content ye; I am resolved: +Go in, Bianca: +And for I know she taketh most delight +In music, instruments and poetry, +Schoolmasters will I keep within my house, +Fit to instruct her youth. If you, Hortensio, +Or Signior Gremio, you, know any such, +Prefer them hither; for to cunning men +I will be very kind, and liberal +To mine own children in good bringing up: +And so farewell. Katharina, you may stay; +For I have more to commune with Bianca. + +KATHARINA: +Why, and I trust I may go too, may I not? What, +shall I be appointed hours; as though, belike, I +knew not what to take and what to leave, ha? + +GREMIO: +You may go to the devil's dam: your gifts are so +good, here's none will hold you. Their love is not +so great, Hortensio, but we may blow our nails +together, and fast it fairly out: our cakes dough on +both sides. Farewell: yet for the love I bear my +sweet Bianca, if I can by any means light on a fit +man to teach her that wherein she delights, I will +wish him to her father. + +HORTENSIO: +So will I, Signior Gremio: but a word, I pray. +Though the nature of our quarrel yet never brooked +parle, know now, upon advice, it toucheth us both, +that we may yet again have access to our fair +mistress and be happy rivals in Bianco's love, to +labour and effect one thing specially. + +GREMIO: +What's that, I pray? + +HORTENSIO: +Marry, sir, to get a husband for her sister. + +GREMIO: +A husband! a devil. + +HORTENSIO: +I say, a husband. + +GREMIO: +I say, a devil. Thinkest thou, Hortensio, though +her father be very rich, any man is so very a fool +to be married to hell? + +HORTENSIO: +Tush, Gremio, though it pass your patience and mine +to endure her loud alarums, why, man, there be good +fellows in the world, an a man could light on them, +would take her with all faults, and money enough. + +GREMIO: +I cannot tell; but I had as lief take her dowry with +this condition, to be whipped at the high cross +every morning. + +HORTENSIO: +Faith, as you say, there's small choice in rotten +apples. But come; since this bar in law makes us +friends, it shall be so far forth friendly +maintained all by helping Baptista's eldest daughter +to a husband we set his youngest free for a husband, +and then have to't a fresh. Sweet Bianca! Happy man +be his dole! He that runs fastest gets the ring. +How say you, Signior Gremio? + +GREMIO: +I am agreed; and would I had given him the best +horse in Padua to begin his wooing that would +thoroughly woo her, wed her and bed her and rid the +house of her! Come on. + +TRANIO: +I pray, sir, tell me, is it possible +That love should of a sudden take such hold? + +LUCENTIO: +O Tranio, till I found it to be true, +I never thought it possible or likely; +But see, while idly I stood looking on, +I found the effect of love in idleness: +And now in plainness do confess to thee, +That art to me as secret and as dear +As Anna to the queen of Carthage was, +Tranio, I burn, I pine, I perish, Tranio, +If I achieve not this young modest girl. +Counsel me, Tranio, for I know thou canst; +Assist me, Tranio, for I know thou wilt. + +TRANIO: +Master, it is no time to chide you now; +Affection is not rated from the heart: +If love have touch'd you, nought remains but so, +'Redime te captum quam queas minimo.' + +LUCENTIO: +Gramercies, lad, go forward; this contents: +The rest will comfort, for thy counsel's sound. + +TRANIO: +Master, you look'd so longly on the maid, +Perhaps you mark'd not what's the pith of all. + +LUCENTIO: +O yes, I saw sweet beauty in her face, +Such as the daughter of Agenor had, +That made great Jove to humble him to her hand. +When with his knees he kiss'd the Cretan strand. + +TRANIO: +Saw you no more? mark'd you not how her sister +Began to scold and raise up such a storm +That mortal ears might hardly endure the din? + +LUCENTIO: +Tranio, I saw her coral lips to move +And with her breath she did perfume the air: +Sacred and sweet was all I saw in her. + +TRANIO: +Nay, then, 'tis time to stir him from his trance. +I pray, awake, sir: if you love the maid, +Bend thoughts and wits to achieve her. Thus it stands: +Her eldest sister is so curst and shrewd +That till the father rid his hands of her, +Master, your love must live a maid at home; +And therefore has he closely mew'd her up, +Because she will not be annoy'd with suitors. + +LUCENTIO: +Ah, Tranio, what a cruel father's he! +But art thou not advised, he took some care +To get her cunning schoolmasters to instruct her? + +TRANIO: +Ay, marry, am I, sir; and now 'tis plotted. + +LUCENTIO: +I have it, Tranio. + +TRANIO: +Master, for my hand, +Both our inventions meet and jump in one. + +LUCENTIO: +Tell me thine first. + +TRANIO: +You will be schoolmaster +And undertake the teaching of the maid: +That's your device. + +LUCENTIO: +It is: may it be done? + +TRANIO: +Not possible; for who shall bear your part, +And be in Padua here Vincentio's son, +Keep house and ply his book, welcome his friends, +Visit his countrymen and banquet them? + +LUCENTIO: +Basta; content thee, for I have it full. +We have not yet been seen in any house, +Nor can we lie distinguish'd by our faces +For man or master; then it follows thus; +Thou shalt be master, Tranio, in my stead, +Keep house and port and servants as I should: +I will some other be, some Florentine, +Some Neapolitan, or meaner man of Pisa. +'Tis hatch'd and shall be so: Tranio, at once +Uncase thee; take my colour'd hat and cloak: +When Biondello comes, he waits on thee; +But I will charm him first to keep his tongue. + +TRANIO: +So had you need. +In brief, sir, sith it your pleasure is, +And I am tied to be obedient; +For so your father charged me at our parting, +'Be serviceable to my son,' quoth he, +Although I think 'twas in another sense; +I am content to be Lucentio, +Because so well I love Lucentio. + +LUCENTIO: +Tranio, be so, because Lucentio loves: +And let me be a slave, to achieve that maid +Whose sudden sight hath thrall'd my wounded eye. +Here comes the rogue. +Sirrah, where have you been? + +BIONDELLO: +Where have I been! Nay, how now! where are you? +Master, has my fellow Tranio stolen your clothes? Or +you stolen his? or both? pray, what's the news? + +LUCENTIO: +Sirrah, come hither: 'tis no time to jest, +And therefore frame your manners to the time. +Your fellow Tranio here, to save my life, +Puts my apparel and my countenance on, +And I for my escape have put on his; +For in a quarrel since I came ashore +I kill'd a man and fear I was descried: +Wait you on him, I charge you, as becomes, +While I make way from hence to save my life: +You understand me? + +BIONDELLO: +I, sir! ne'er a whit. + +LUCENTIO: +And not a jot of Tranio in your mouth: +Tranio is changed into Lucentio. + +BIONDELLO: +The better for him: would I were so too! + +TRANIO: +So could I, faith, boy, to have the next wish after, +That Lucentio indeed had Baptista's youngest daughter. +But, sirrah, not for my sake, but your master's, I advise +You use your manners discreetly in all kind of companies: +When I am alone, why, then I am Tranio; +But in all places else your master Lucentio. + +LUCENTIO: +Tranio, let's go: one thing more rests, that +thyself execute, to make one among these wooers: if +thou ask me why, sufficeth, my reasons are both good +and weighty. + +First Servant: +My lord, you nod; you do not mind the play. + +SLY: +Yes, by Saint Anne, do I. A good matter, surely: +comes there any more of it? + +Page: +My lord, 'tis but begun. + +SLY: +'Tis a very excellent piece of work, madam lady: +would 'twere done! + +PETRUCHIO: +Verona, for a while I take my leave, +To see my friends in Padua, but of all +My best beloved and approved friend, +Hortensio; and I trow this is his house. +Here, sirrah Grumio; knock, I say. + +GRUMIO: +Knock, sir! whom should I knock? is there man has +rebused your worship? + +PETRUCHIO: +Villain, I say, knock me here soundly. + +GRUMIO: +Knock you here, sir! why, sir, what am I, sir, that +I should knock you here, sir? + +PETRUCHIO: +Villain, I say, knock me at this gate +And rap me well, or I'll knock your knave's pate. + +GRUMIO: +My master is grown quarrelsome. I should knock +you first, +And then I know after who comes by the worst. + +PETRUCHIO: +Will it not be? +Faith, sirrah, an you'll not knock, I'll ring it; +I'll try how you can sol, fa, and sing it. + +GRUMIO: +Help, masters, help! my master is mad. + +PETRUCHIO: +Now, knock when I bid you, sirrah villain! + +HORTENSIO: +How now! what's the matter? My old friend Grumio! +and my good friend Petruchio! How do you all at Verona? + +PETRUCHIO: +Signior Hortensio, come you to part the fray? +'Con tutto il cuore, ben trovato,' may I say. + +HORTENSIO: +'Alla nostra casa ben venuto, molto honorato signor +mio Petruchio.' Rise, Grumio, rise: we will compound +this quarrel. + +GRUMIO: +Nay, 'tis no matter, sir, what he 'leges in Latin. +if this be not a lawful case for me to leave his +service, look you, sir, he bid me knock him and rap +him soundly, sir: well, was it fit for a servant to +use his master so, being perhaps, for aught I see, +two and thirty, a pip out? Whom would to God I had +well knock'd at first, Then had not Grumio come by the worst. + +PETRUCHIO: +A senseless villain! Good Hortensio, +I bade the rascal knock upon your gate +And could not get him for my heart to do it. + +GRUMIO: +Knock at the gate! O heavens! Spake you not these +words plain, 'Sirrah, knock me here, rap me here, +knock me well, and knock me soundly'? And come you +now with, 'knocking at the gate'? + +PETRUCHIO: +Sirrah, be gone, or talk not, I advise you. + +HORTENSIO: +Petruchio, patience; I am Grumio's pledge: +Why, this's a heavy chance 'twixt him and you, +Your ancient, trusty, pleasant servant Grumio. +And tell me now, sweet friend, what happy gale +Blows you to Padua here from old Verona? + +PETRUCHIO: +Such wind as scatters young men through the world, +To seek their fortunes farther than at home +Where small experience grows. But in a few, +Signior Hortensio, thus it stands with me: +Antonio, my father, is deceased; +And I have thrust myself into this maze, +Haply to wive and thrive as best I may: +Crowns in my purse I have and goods at home, +And so am come abroad to see the world. + +HORTENSIO: +Petruchio, shall I then come roundly to thee +And wish thee to a shrewd ill-favour'd wife? +Thou'ldst thank me but a little for my counsel: +And yet I'll promise thee she shall be rich +And very rich: but thou'rt too much my friend, +And I'll not wish thee to her. + +PETRUCHIO: +Signior Hortensio, 'twixt such friends as we +Few words suffice; and therefore, if thou know +One rich enough to be Petruchio's wife, +As wealth is burden of my wooing dance, +Be she as foul as was Florentius' love, +As old as Sibyl and as curst and shrewd +As Socrates' Xanthippe, or a worse, +She moves me not, or not removes, at least, +Affection's edge in me, were she as rough +As are the swelling Adriatic seas: +I come to wive it wealthily in Padua; +If wealthily, then happily in Padua. + +GRUMIO: +Nay, look you, sir, he tells you flatly what his +mind is: Why give him gold enough and marry him to +a puppet or an aglet-baby; or an old trot with ne'er +a tooth in her head, though she have as many diseases +as two and fifty horses: why, nothing comes amiss, +so money comes withal. + +HORTENSIO: +Petruchio, since we are stepp'd thus far in, +I will continue that I broach'd in jest. +I can, Petruchio, help thee to a wife +With wealth enough and young and beauteous, +Brought up as best becomes a gentlewoman: +Her only fault, and that is faults enough, +Is that she is intolerable curst +And shrewd and froward, so beyond all measure +That, were my state far worser than it is, +I would not wed her for a mine of gold. + +PETRUCHIO: +Hortensio, peace! thou know'st not gold's effect: +Tell me her father's name and 'tis enough; +For I will board her, though she chide as loud +As thunder when the clouds in autumn crack. + +HORTENSIO: +Her father is Baptista Minola, +An affable and courteous gentleman: +Her name is Katharina Minola, +Renown'd in Padua for her scolding tongue. + +PETRUCHIO: +I know her father, though I know not her; +And he knew my deceased father well. +I will not sleep, Hortensio, till I see her; +And therefore let me be thus bold with you +To give you over at this first encounter, +Unless you will accompany me thither. + +GRUMIO: +I pray you, sir, let him go while the humour lasts. +O' my word, an she knew him as well as I do, she +would think scolding would do little good upon him: +she may perhaps call him half a score knaves or so: +why, that's nothing; an he begin once, he'll rail in +his rope-tricks. I'll tell you what sir, an she +stand him but a little, he will throw a figure in +her face and so disfigure her with it that she +shall have no more eyes to see withal than a cat. +You know him not, sir. + +HORTENSIO: +Tarry, Petruchio, I must go with thee, +For in Baptista's keep my treasure is: +He hath the jewel of my life in hold, +His youngest daughter, beautiful Binaca, +And her withholds from me and other more, +Suitors to her and rivals in my love, +Supposing it a thing impossible, +For those defects I have before rehearsed, +That ever Katharina will be woo'd; +Therefore this order hath Baptista ta'en, +That none shall have access unto Bianca +Till Katharina the curst have got a husband. + +GRUMIO: +Katharina the curst! +A title for a maid of all titles the worst. + +HORTENSIO: +Now shall my friend Petruchio do me grace, +And offer me disguised in sober robes +To old Baptista as a schoolmaster +Well seen in music, to instruct Bianca; +That so I may, by this device, at least +Have leave and leisure to make love to her +And unsuspected court her by herself. + +GRUMIO: +Here's no knavery! See, to beguile the old folks, +how the young folks lay their heads together! +Master, master, look about you: who goes there, ha? + +HORTENSIO: +Peace, Grumio! it is the rival of my love. +Petruchio, stand by a while. + +GRUMIO: +A proper stripling and an amorous! + +GREMIO: +O, very well; I have perused the note. +Hark you, sir: I'll have them very fairly bound: +All books of love, see that at any hand; +And see you read no other lectures to her: +You understand me: over and beside +Signior Baptista's liberality, +I'll mend it with a largess. Take your paper too, +And let me have them very well perfumed +For she is sweeter than perfume itself +To whom they go to. What will you read to her? + +LUCENTIO: +Whate'er I read to her, I'll plead for you +As for my patron, stand you so assured, +As firmly as yourself were still in place: +Yea, and perhaps with more successful words +Than you, unless you were a scholar, sir. + +GREMIO: +O this learning, what a thing it is! + +GRUMIO: +O this woodcock, what an ass it is! + +PETRUCHIO: +Peace, sirrah! + +HORTENSIO: +Grumio, mum! God save you, Signior Gremio. + +GREMIO: +And you are well met, Signior Hortensio. +Trow you whither I am going? To Baptista Minola. +I promised to inquire carefully +About a schoolmaster for the fair Bianca: +And by good fortune I have lighted well +On this young man, for learning and behavior +Fit for her turn, well read in poetry +And other books, good ones, I warrant ye. + +HORTENSIO: +'Tis well; and I have met a gentleman +Hath promised me to help me to another, +A fine musician to instruct our mistress; +So shall I no whit be behind in duty +To fair Bianca, so beloved of me. + +GREMIO: +Beloved of me; and that my deeds shall prove. + +GRUMIO: +And that his bags shall prove. + +HORTENSIO: +Gremio, 'tis now no time to vent our love: +Listen to me, and if you speak me fair, +I'll tell you news indifferent good for either. +Here is a gentleman whom by chance I met, +Upon agreement from us to his liking, +Will undertake to woo curst Katharina, +Yea, and to marry her, if her dowry please. + +GREMIO: +So said, so done, is well. +Hortensio, have you told him all her faults? + +PETRUCHIO: +I know she is an irksome brawling scold: +If that be all, masters, I hear no harm. + +GREMIO: +No, say'st me so, friend? What countryman? + +PETRUCHIO: +Born in Verona, old Antonio's son: +My father dead, my fortune lives for me; +And I do hope good days and long to see. + +GREMIO: +O sir, such a life, with such a wife, were strange! +But if you have a stomach, to't i' God's name: +You shall have me assisting you in all. +But will you woo this wild-cat? + +PETRUCHIO: +Will I live? + +GRUMIO: +Will he woo her? ay, or I'll hang her. + +PETRUCHIO: +Why came I hither but to that intent? +Think you a little din can daunt mine ears? +Have I not in my time heard lions roar? +Have I not heard the sea puff'd up with winds +Rage like an angry boar chafed with sweat? +Have I not heard great ordnance in the field, +And heaven's artillery thunder in the skies? +Have I not in a pitched battle heard +Loud 'larums, neighing steeds, and trumpets' clang? +And do you tell me of a woman's tongue, +That gives not half so great a blow to hear +As will a chestnut in a farmer's fire? +Tush, tush! fear boys with bugs. + +GRUMIO: +For he fears none. + +GREMIO: +Hortensio, hark: +This gentleman is happily arrived, +My mind presumes, for his own good and ours. + +HORTENSIO: +I promised we would be contributors +And bear his charging of wooing, whatsoe'er. + +GREMIO: +And so we will, provided that he win her. + +GRUMIO: +I would I were as sure of a good dinner. + +TRANIO: +Gentlemen, God save you. If I may be bold, +Tell me, I beseech you, which is the readiest way +To the house of Signior Baptista Minola? + +BIONDELLO: +He that has the two fair daughters: is't he you mean? + +TRANIO: +Even he, Biondello. + +GREMIO: +Hark you, sir; you mean not her to-- + +TRANIO: +Perhaps, him and her, sir: what have you to do? + +PETRUCHIO: +Not her that chides, sir, at any hand, I pray. + +TRANIO: +I love no chiders, sir. Biondello, let's away. + +LUCENTIO: +Well begun, Tranio. + +HORTENSIO: +Sir, a word ere you go; +Are you a suitor to the maid you talk of, yea or no? + +TRANIO: +And if I be, sir, is it any offence? + +GREMIO: +No; if without more words you will get you hence. + +TRANIO: +Why, sir, I pray, are not the streets as free +For me as for you? + +GREMIO: +But so is not she. + +TRANIO: +For what reason, I beseech you? + +GREMIO: +For this reason, if you'll know, +That she's the choice love of Signior Gremio. + +HORTENSIO: +That she's the chosen of Signior Hortensio. + +TRANIO: +Softly, my masters! if you be gentlemen, +Do me this right; hear me with patience. +Baptista is a noble gentleman, +To whom my father is not all unknown; +And were his daughter fairer than she is, +She may more suitors have and me for one. +Fair Leda's daughter had a thousand wooers; +Then well one more may fair Bianca have: +And so she shall; Lucentio shall make one, +Though Paris came in hope to speed alone. + +GREMIO: +What! this gentleman will out-talk us all. + +LUCENTIO: +Sir, give him head: I know he'll prove a jade. + +PETRUCHIO: +Hortensio, to what end are all these words? + +HORTENSIO: +Sir, let me be so bold as ask you, +Did you yet ever see Baptista's daughter? + +TRANIO: +No, sir; but hear I do that he hath two, +The one as famous for a scolding tongue +As is the other for beauteous modesty. + +PETRUCHIO: +Sir, sir, the first's for me; let her go by. + +GREMIO: +Yea, leave that labour to great Hercules; +And let it be more than Alcides' twelve. + +PETRUCHIO: +Sir, understand you this of me in sooth: +The youngest daughter whom you hearken for +Her father keeps from all access of suitors, +And will not promise her to any man +Until the elder sister first be wed: +The younger then is free and not before. + +TRANIO: +If it be so, sir, that you are the man +Must stead us all and me amongst the rest, +And if you break the ice and do this feat, +Achieve the elder, set the younger free +For our access, whose hap shall be to have her +Will not so graceless be to be ingrate. + +HORTENSIO: +Sir, you say well and well you do conceive; +And since you do profess to be a suitor, +You must, as we do, gratify this gentleman, +To whom we all rest generally beholding. + +TRANIO: +Sir, I shall not be slack: in sign whereof, +Please ye we may contrive this afternoon, +And quaff carouses to our mistress' health, +And do as adversaries do in law, +Strive mightily, but eat and drink as friends. + +GRUMIO: +O excellent motion! Fellows, let's be gone. + +HORTENSIO: +The motion's good indeed and be it so, +Petruchio, I shall be your ben venuto. + +BIANCA: +Good sister, wrong me not, nor wrong yourself, +To make a bondmaid and a slave of me; +That I disdain: but for these other gawds, +Unbind my hands, I'll pull them off myself, +Yea, all my raiment, to my petticoat; +Or what you will command me will I do, +So well I know my duty to my elders. + +KATHARINA: +Of all thy suitors, here I charge thee, tell +Whom thou lovest best: see thou dissemble not. + +BIANCA: +Believe me, sister, of all the men alive +I never yet beheld that special face +Which I could fancy more than any other. + +KATHARINA: +Minion, thou liest. Is't not Hortensio? + +BIANCA: +If you affect him, sister, here I swear +I'll plead for you myself, but you shall have +him. + +KATHARINA: +O then, belike, you fancy riches more: +You will have Gremio to keep you fair. + +BIANCA: +Is it for him you do envy me so? +Nay then you jest, and now I well perceive +You have but jested with me all this while: +I prithee, sister Kate, untie my hands. + +KATHARINA: +If that be jest, then all the rest was so. + +BAPTISTA: +Why, how now, dame! whence grows this insolence? +Bianca, stand aside. Poor girl! she weeps. +Go ply thy needle; meddle not with her. +For shame, thou helding of a devilish spirit, +Why dost thou wrong her that did ne'er wrong thee? +When did she cross thee with a bitter word? + +KATHARINA: +Her silence flouts me, and I'll be revenged. + +BAPTISTA: +What, in my sight? Bianca, get thee in. + +KATHARINA: +What, will you not suffer me? Nay, now I see +She is your treasure, she must have a husband; +I must dance bare-foot on her wedding day +And for your love to her lead apes in hell. +Talk not to me: I will go sit and weep +Till I can find occasion of revenge. + +BAPTISTA: +Was ever gentleman thus grieved as I? +But who comes here? + +GREMIO: +Good morrow, neighbour Baptista. + +BAPTISTA: +Good morrow, neighbour Gremio. +God save you, gentlemen! + +PETRUCHIO: +And you, good sir! Pray, have you not a daughter +Call'd Katharina, fair and virtuous? + +BAPTISTA: +I have a daughter, sir, called Katharina. + +GREMIO: +You are too blunt: go to it orderly. + +PETRUCHIO: +You wrong me, Signior Gremio: give me leave. +I am a gentleman of Verona, sir, +That, hearing of her beauty and her wit, +Her affability and bashful modesty, +Her wondrous qualities and mild behavior, +Am bold to show myself a forward guest +Within your house, to make mine eye the witness +Of that report which I so oft have heard. +And, for an entrance to my entertainment, +I do present you with a man of mine, +Cunning in music and the mathematics, +To instruct her fully in those sciences, +Whereof I know she is not ignorant: +Accept of him, or else you do me wrong: +His name is Licio, born in Mantua. + +BAPTISTA: +You're welcome, sir; and he, for your good sake. +But for my daughter Katharina, this I know, +She is not for your turn, the more my grief. + +PETRUCHIO: +I see you do not mean to part with her, +Or else you like not of my company. + +BAPTISTA: +Mistake me not; I speak but as I find. +Whence are you, sir? what may I call your name? + +PETRUCHIO: +Petruchio is my name; Antonio's son, +A man well known throughout all Italy. + +BAPTISTA: +I know him well: you are welcome for his sake. + +GREMIO: +Saving your tale, Petruchio, I pray, +Let us, that are poor petitioners, speak too: +Baccare! you are marvellous forward. + +PETRUCHIO: +O, pardon me, Signior Gremio; I would fain be doing. + +GREMIO: +I doubt it not, sir; but you will curse your +wooing. Neighbour, this is a gift very grateful, I am +sure of it. To express the like kindness, myself, +that have been more kindly beholding to you than +any, freely give unto you this young scholar, +that hath been long studying at Rheims; as cunning +in Greek, Latin, and other languages, as the other +in music and mathematics: his name is Cambio; pray, +accept his service. + +BAPTISTA: +A thousand thanks, Signior Gremio. +Welcome, good Cambio. +But, gentle sir, methinks you walk like a stranger: +may I be so bold to know the cause of your coming? + +TRANIO: +Pardon me, sir, the boldness is mine own, +That, being a stranger in this city here, +Do make myself a suitor to your daughter, +Unto Bianca, fair and virtuous. +Nor is your firm resolve unknown to me, +In the preferment of the eldest sister. +This liberty is all that I request, +That, upon knowledge of my parentage, +I may have welcome 'mongst the rest that woo +And free access and favour as the rest: +And, toward the education of your daughters, +I here bestow a simple instrument, +And this small packet of Greek and Latin books: +If you accept them, then their worth is great. + +BAPTISTA: +Lucentio is your name; of whence, I pray? + +TRANIO: +Of Pisa, sir; son to Vincentio. + +BAPTISTA: +A mighty man of Pisa; by report +I know him well: you are very welcome, sir, +Take you the lute, and you the set of books; +You shall go see your pupils presently. +Holla, within! +Sirrah, lead these gentlemen +To my daughters; and tell them both, +These are their tutors: bid them use them well. +We will go walk a little in the orchard, +And then to dinner. You are passing welcome, +And so I pray you all to think yourselves. + +PETRUCHIO: +Signior Baptista, my business asketh haste, +And every day I cannot come to woo. +You knew my father well, and in him me, +Left solely heir to all his lands and goods, +Which I have better'd rather than decreased: +Then tell me, if I get your daughter's love, +What dowry shall I have with her to wife? + +BAPTISTA: +After my death the one half of my lands, +And in possession twenty thousand crowns. + +PETRUCHIO: +And, for that dowry, I'll assure her of +Her widowhood, be it that she survive me, +In all my lands and leases whatsoever: +Let specialties be therefore drawn between us, +That covenants may be kept on either hand. + +BAPTISTA: +Ay, when the special thing is well obtain'd, +That is, her love; for that is all in all. + +PETRUCHIO: +Why, that is nothing: for I tell you, father, +I am as peremptory as she proud-minded; +And where two raging fires meet together +They do consume the thing that feeds their fury: +Though little fire grows great with little wind, +Yet extreme gusts will blow out fire and all: +So I to her and so she yields to me; +For I am rough and woo not like a babe. + +BAPTISTA: +Well mayst thou woo, and happy be thy speed! +But be thou arm'd for some unhappy words. + +PETRUCHIO: +Ay, to the proof; as mountains are for winds, +That shake not, though they blow perpetually. + +BAPTISTA: +How now, my friend! why dost thou look so pale? + +HORTENSIO: +For fear, I promise you, if I look pale. + +BAPTISTA: +What, will my daughter prove a good musician? + +HORTENSIO: +I think she'll sooner prove a soldier +Iron may hold with her, but never lutes. + +BAPTISTA: +Why, then thou canst not break her to the lute? + +HORTENSIO: +Why, no; for she hath broke the lute to me. +I did but tell her she mistook her frets, +And bow'd her hand to teach her fingering; +When, with a most impatient devilish spirit, +'Frets, call you these?' quoth she; 'I'll fume +with them:' +And, with that word, she struck me on the head, +And through the instrument my pate made way; +And there I stood amazed for a while, +As on a pillory, looking through the lute; +While she did call me rascal fiddler +And twangling Jack; with twenty such vile terms, +As had she studied to misuse me so. + +PETRUCHIO: +Now, by the world, it is a lusty wench; +I love her ten times more than e'er I did: +O, how I long to have some chat with her! + +BAPTISTA: +Well, go with me and be not so discomfited: +Proceed in practise with my younger daughter; +She's apt to learn and thankful for good turns. +Signior Petruchio, will you go with us, +Or shall I send my daughter Kate to you? + +PETRUCHIO: +I pray you do. +I will attend her here, +And woo her with some spirit when she comes. +Say that she rail; why then I'll tell her plain +She sings as sweetly as a nightingale: +Say that she frown, I'll say she looks as clear +As morning roses newly wash'd with dew: +Say she be mute and will not speak a word; +Then I'll commend her volubility, +And say she uttereth piercing eloquence: +If she do bid me pack, I'll give her thanks, +As though she bid me stay by her a week: +If she deny to wed, I'll crave the day +When I shall ask the banns and when be married. +But here she comes; and now, Petruchio, speak. +Good morrow, Kate; for that's your name, I hear. + +KATHARINA: +Well have you heard, but something hard of hearing: +They call me Katharina that do talk of me. + +PETRUCHIO: +You lie, in faith; for you are call'd plain Kate, +And bonny Kate and sometimes Kate the curst; +But Kate, the prettiest Kate in Christendom +Kate of Kate Hall, my super-dainty Kate, +For dainties are all Kates, and therefore, Kate, +Take this of me, Kate of my consolation; +Hearing thy mildness praised in every town, +Thy virtues spoke of, and thy beauty sounded, +Yet not so deeply as to thee belongs, +Myself am moved to woo thee for my wife. + +KATHARINA: +Moved! in good time: let him that moved you hither +Remove you hence: I knew you at the first +You were a moveable. + +PETRUCHIO: +Why, what's a moveable? + +KATHARINA: +A join'd-stool. + +PETRUCHIO: +Thou hast hit it: come, sit on me. + +KATHARINA: +Asses are made to bear, and so are you. + +PETRUCHIO: +Women are made to bear, and so are you. + +KATHARINA: +No such jade as you, if me you mean. + +PETRUCHIO: +Alas! good Kate, I will not burden thee; +For, knowing thee to be but young and light-- + +KATHARINA: +Too light for such a swain as you to catch; +And yet as heavy as my weight should be. + +PETRUCHIO: +Should be! should--buzz! + +KATHARINA: +Well ta'en, and like a buzzard. + +PETRUCHIO: +O slow-wing'd turtle! shall a buzzard take thee? + +KATHARINA: +Ay, for a turtle, as he takes a buzzard. + +PETRUCHIO: +Come, come, you wasp; i' faith, you are too angry. + +KATHARINA: +If I be waspish, best beware my sting. + +PETRUCHIO: +My remedy is then, to pluck it out. + +KATHARINA: +Ay, if the fool could find it where it lies, + +PETRUCHIO: +Who knows not where a wasp does +wear his sting? In his tail. + +KATHARINA: +In his tongue. + +PETRUCHIO: +Whose tongue? + +KATHARINA: +Yours, if you talk of tails: and so farewell. + +PETRUCHIO: +What, with my tongue in your tail? nay, come again, +Good Kate; I am a gentleman. + +KATHARINA: +That I'll try. + +PETRUCHIO: +I swear I'll cuff you, if you strike again. + +KATHARINA: +So may you lose your arms: +If you strike me, you are no gentleman; +And if no gentleman, why then no arms. + +PETRUCHIO: +A herald, Kate? O, put me in thy books! + +KATHARINA: +What is your crest? a coxcomb? + +PETRUCHIO: +A combless cock, so Kate will be my hen. + +KATHARINA: +No cock of mine; you crow too like a craven. + +PETRUCHIO: +Nay, come, Kate, come; you must not look so sour. + +KATHARINA: +It is my fashion, when I see a crab. + +PETRUCHIO: +Why, here's no crab; and therefore look not sour. + +KATHARINA: +There is, there is. + +PETRUCHIO: +Then show it me. + +KATHARINA: +Had I a glass, I would. + +PETRUCHIO: +What, you mean my face? + +KATHARINA: +Well aim'd of such a young one. + +PETRUCHIO: +Now, by Saint George, I am too young for you. + +KATHARINA: +Yet you are wither'd. + +PETRUCHIO: +'Tis with cares. + +KATHARINA: +I care not. + +PETRUCHIO: +Nay, hear you, Kate: in sooth you scape not so. + +KATHARINA: +I chafe you, if I tarry: let me go. + +PETRUCHIO: +No, not a whit: I find you passing gentle. +'Twas told me you were rough and coy and sullen, +And now I find report a very liar; +For thou are pleasant, gamesome, passing courteous, +But slow in speech, yet sweet as spring-time flowers: +Thou canst not frown, thou canst not look askance, +Nor bite the lip, as angry wenches will, +Nor hast thou pleasure to be cross in talk, +But thou with mildness entertain'st thy wooers, +With gentle conference, soft and affable. +Why does the world report that Kate doth limp? +O slanderous world! Kate like the hazel-twig +Is straight and slender and as brown in hue +As hazel nuts and sweeter than the kernels. +O, let me see thee walk: thou dost not halt. + +KATHARINA: +Go, fool, and whom thou keep'st command. + +PETRUCHIO: +Did ever Dian so become a grove +As Kate this chamber with her princely gait? +O, be thou Dian, and let her be Kate; +And then let Kate be chaste and Dian sportful! + +KATHARINA: +Where did you study all this goodly speech? + +PETRUCHIO: +It is extempore, from my mother-wit. + +KATHARINA: +A witty mother! witless else her son. + +PETRUCHIO: +Am I not wise? + +KATHARINA: +Yes; keep you warm. + +PETRUCHIO: +Marry, so I mean, sweet Katharina, in thy bed: +And therefore, setting all this chat aside, +Thus in plain terms: your father hath consented +That you shall be my wife; your dowry 'greed on; +And, Will you, nill you, I will marry you. +Now, Kate, I am a husband for your turn; +For, by this light, whereby I see thy beauty, +Thy beauty, that doth make me like thee well, +Thou must be married to no man but me; +For I am he am born to tame you Kate, +And bring you from a wild Kate to a Kate +Conformable as other household Kates. +Here comes your father: never make denial; +I must and will have Katharina to my wife. + +BAPTISTA: +Now, Signior Petruchio, how speed you with my daughter? + +PETRUCHIO: +How but well, sir? how but well? +It were impossible I should speed amiss. + +BAPTISTA: +Why, how now, daughter Katharina! in your dumps? + +KATHARINA: +Call you me daughter? now, I promise you +You have show'd a tender fatherly regard, +To wish me wed to one half lunatic; +A mad-cup ruffian and a swearing Jack, +That thinks with oaths to face the matter out. + +PETRUCHIO: +Father, 'tis thus: yourself and all the world, +That talk'd of her, have talk'd amiss of her: +If she be curst, it is for policy, +For she's not froward, but modest as the dove; +She is not hot, but temperate as the morn; +For patience she will prove a second Grissel, +And Roman Lucrece for her chastity: +And to conclude, we have 'greed so well together, +That upon Sunday is the wedding-day. + +KATHARINA: +I'll see thee hang'd on Sunday first. + +GREMIO: +Hark, Petruchio; she says she'll see thee +hang'd first. + +TRANIO: +Is this your speeding? nay, then, good night our part! + +PETRUCHIO: +Be patient, gentlemen; I choose her for myself: +If she and I be pleased, what's that to you? +'Tis bargain'd 'twixt us twain, being alone, +That she shall still be curst in company. +I tell you, 'tis incredible to believe +How much she loves me: O, the kindest Kate! +She hung about my neck; and kiss on kiss +She vied so fast, protesting oath on oath, +That in a twink she won me to her love. +O, you are novices! 'tis a world to see, +How tame, when men and women are alone, +A meacock wretch can make the curstest shrew. +Give me thy hand, Kate: I will unto Venice, +To buy apparel 'gainst the wedding-day. +Provide the feast, father, and bid the guests; +I will be sure my Katharina shall be fine. + +BAPTISTA: +I know not what to say: but give me your hands; +God send you joy, Petruchio! 'tis a match. + +GREMIO: +Amen, say we: we will be witnesses. + +PETRUCHIO: +Father, and wife, and gentlemen, adieu; +I will to Venice; Sunday comes apace: +We will have rings and things and fine array; +And kiss me, Kate, we will be married o'Sunday. + +GREMIO: +Was ever match clapp'd up so suddenly? + +BAPTISTA: +Faith, gentlemen, now I play a merchant's part, +And venture madly on a desperate mart. + +TRANIO: +'Twas a commodity lay fretting by you: +'Twill bring you gain, or perish on the seas. + +BAPTISTA: +The gain I seek is, quiet in the match. + +GREMIO: +No doubt but he hath got a quiet catch. +But now, Baptists, to your younger daughter: +Now is the day we long have looked for: +I am your neighbour, and was suitor first. + +TRANIO: +And I am one that love Bianca more +Than words can witness, or your thoughts can guess. + +GREMIO: +Youngling, thou canst not love so dear as I. + +TRANIO: +Graybeard, thy love doth freeze. + +GREMIO: +But thine doth fry. +Skipper, stand back: 'tis age that nourisheth. + +TRANIO: +But youth in ladies' eyes that flourisheth. + +BAPTISTA: +Content you, gentlemen: I will compound this strife: +'Tis deeds must win the prize; and he of both +That can assure my daughter greatest dower +Shall have my Bianca's love. +Say, Signior Gremio, What can you assure her? + +GREMIO: +First, as you know, my house within the city +Is richly furnished with plate and gold; +Basins and ewers to lave her dainty hands; +My hangings all of Tyrian tapestry; +In ivory coffers I have stuff'd my crowns; +In cypress chests my arras counterpoints, +Costly apparel, tents, and canopies, +Fine linen, Turkey cushions boss'd with pearl, +Valance of Venice gold in needlework, +Pewter and brass and all things that belong +To house or housekeeping: then, at my farm +I have a hundred milch-kine to the pail, +Sixscore fat oxen standing in my stalls, +And all things answerable to this portion. +Myself am struck in years, I must confess; +And if I die to-morrow, this is hers, +If whilst I live she will be only mine. + +TRANIO: +That 'only' came well in. Sir, list to me: +I am my father's heir and only son: +If I may have your daughter to my wife, +I'll leave her houses three or four as good, +Within rich Pisa walls, as any one +Old Signior Gremio has in Padua; +Besides two thousand ducats by the year +Of fruitful land, all which shall be her jointure. +What, have I pinch'd you, Signior Gremio? + +GREMIO: +Two thousand ducats by the year of land! +My land amounts not to so much in all: +That she shall have; besides an argosy +That now is lying in Marseilles' road. +What, have I choked you with an argosy? + +TRANIO: +Gremio, 'tis known my father hath no less +Than three great argosies; besides two galliases, +And twelve tight galleys: these I will assure her, +And twice as much, whate'er thou offer'st next. + +GREMIO: +Nay, I have offer'd all, I have no more; +And she can have no more than all I have: +If you like me, she shall have me and mine. + +TRANIO: +Why, then the maid is mine from all the world, +By your firm promise: Gremio is out-vied. + +BAPTISTA: +I must confess your offer is the best; +And, let your father make her the assurance, +She is your own; else, you must pardon me, +if you should die before him, where's her dower? + +TRANIO: +That's but a cavil: he is old, I young. + +GREMIO: +And may not young men die, as well as old? + +BAPTISTA: +Well, gentlemen, +I am thus resolved: on Sunday next you know +My daughter Katharina is to be married: +Now, on the Sunday following, shall Bianca +Be bride to you, if you this assurance; +If not, Signior Gremio: +And so, I take my leave, and thank you both. + +GREMIO: +Adieu, good neighbour. +Now I fear thee not: +Sirrah young gamester, your father were a fool +To give thee all, and in his waning age +Set foot under thy table: tut, a toy! +An old Italian fox is not so kind, my boy. + +TRANIO: +A vengeance on your crafty wither'd hide! +Yet I have faced it with a card of ten. +'Tis in my head to do my master good: +I see no reason but supposed Lucentio +Must get a father, call'd 'supposed Vincentio;' +And that's a wonder: fathers commonly +Do get their children; but in this case of wooing, +A child shall get a sire, if I fail not of my cunning. + +LUCENTIO: +Fiddler, forbear; you grow too forward, sir: +Have you so soon forgot the entertainment +Her sister Katharina welcomed you withal? + +HORTENSIO: +But, wrangling pedant, this is +The patroness of heavenly harmony: +Then give me leave to have prerogative; +And when in music we have spent an hour, +Your lecture shall have leisure for as much. + +LUCENTIO: +Preposterous ass, that never read so far +To know the cause why music was ordain'd! +Was it not to refresh the mind of man +After his studies or his usual pain? +Then give me leave to read philosophy, +And while I pause, serve in your harmony. + +HORTENSIO: +Sirrah, I will not bear these braves of thine. + +BIANCA: +Why, gentlemen, you do me double wrong, +To strive for that which resteth in my choice: +I am no breeching scholar in the schools; +I'll not be tied to hours nor 'pointed times, +But learn my lessons as I please myself. +And, to cut off all strife, here sit we down: +Take you your instrument, play you the whiles; +His lecture will be done ere you have tuned. + +HORTENSIO: +You'll leave his lecture when I am in tune? + +LUCENTIO: +That will be never: tune your instrument. + +BIANCA: +Where left we last? + +LUCENTIO: +Here, madam: +'Hic ibat Simois; hic est Sigeia tellus; +Hic steterat Priami regia celsa senis.' + +BIANCA: +Construe them. + +LUCENTIO: +'Hic ibat,' as I told you before, 'Simois,' I am +Lucentio, 'hic est,' son unto Vincentio of Pisa, +'Sigeia tellus,' disguised thus to get your love; +'Hic steterat,' and that Lucentio that comes +a-wooing, 'Priami,' is my man Tranio, 'regia,' +bearing my port, 'celsa senis,' that we might +beguile the old pantaloon. + +HORTENSIO: +Madam, my instrument's in tune. + +BIANCA: +Let's hear. O fie! the treble jars. + +LUCENTIO: +Spit in the hole, man, and tune again. + +BIANCA: +Now let me see if I can construe it: 'Hic ibat +Simois,' I know you not, 'hic est Sigeia tellus,' I +trust you not; 'Hic steterat Priami,' take heed +he hear us not, 'regia,' presume not, 'celsa senis,' +despair not. + +HORTENSIO: +Madam, 'tis now in tune. + +LUCENTIO: +All but the base. + +HORTENSIO: +The base is right; 'tis the base knave that jars. +How fiery and forward our pedant is! +Now, for my life, the knave doth court my love: +Pedascule, I'll watch you better yet. + +BIANCA: +In time I may believe, yet I mistrust. + +LUCENTIO: +Mistrust it not: for, sure, AEacides +Was Ajax, call'd so from his grandfather. + +BIANCA: +I must believe my master; else, I promise you, +I should be arguing still upon that doubt: +But let it rest. Now, Licio, to you: +Good masters, take it not unkindly, pray, +That I have been thus pleasant with you both. + +HORTENSIO: +You may go walk, and give me leave a while: +My lessons make no music in three parts. + +LUCENTIO: +Are you so formal, sir? well, I must wait, +And watch withal; for, but I be deceived, +Our fine musician groweth amorous. + +HORTENSIO: +Madam, before you touch the instrument, +To learn the order of my fingering, +I must begin with rudiments of art; +To teach you gamut in a briefer sort, +More pleasant, pithy and effectual, +Than hath been taught by any of my trade: +And there it is in writing, fairly drawn. + +BIANCA: +Why, I am past my gamut long ago. + +HORTENSIO: +Yet read the gamut of Hortensio. + +BIANCA: + +Servant: +Mistress, your father prays you leave your books +And help to dress your sister's chamber up: +You know to-morrow is the wedding-day. + +BIANCA: +Farewell, sweet masters both; I must be gone. + +LUCENTIO: +Faith, mistress, then I have no cause to stay. + +HORTENSIO: +But I have cause to pry into this pedant: +Methinks he looks as though he were in love: +Yet if thy thoughts, Bianca, be so humble +To cast thy wandering eyes on every stale, +Seize thee that list: if once I find thee ranging, +Hortensio will be quit with thee by changing. + +BAPTISTA: + +KATHARINA: +No shame but mine: I must, forsooth, be forced +To give my hand opposed against my heart +Unto a mad-brain rudesby full of spleen; +Who woo'd in haste and means to wed at leisure. +I told you, I, he was a frantic fool, +Hiding his bitter jests in blunt behavior: +And, to be noted for a merry man, +He'll woo a thousand, 'point the day of marriage, +Make feasts, invite friends, and proclaim the banns; +Yet never means to wed where he hath woo'd. +Now must the world point at poor Katharina, +And say, 'Lo, there is mad Petruchio's wife, +If it would please him come and marry her!' + +TRANIO: +Patience, good Katharina, and Baptista too. +Upon my life, Petruchio means but well, +Whatever fortune stays him from his word: +Though he be blunt, I know him passing wise; +Though he be merry, yet withal he's honest. + +KATHARINA: +Would Katharina had never seen him though! + +BAPTISTA: +Go, girl; I cannot blame thee now to weep; +For such an injury would vex a very saint, +Much more a shrew of thy impatient humour. + +BIONDELLO: +Master, master! news, old news, and such news as +you never heard of! + +BAPTISTA: +Is it new and old too? how may that be? + +BIONDELLO: +Why, is it not news, to hear of Petruchio's coming? + +BAPTISTA: +Is he come? + +BIONDELLO: +Why, no, sir. + +BAPTISTA: +What then? + +BIONDELLO: +He is coming. + +BAPTISTA: +When will he be here? + +BIONDELLO: +When he stands where I am and sees you there. + +TRANIO: +But say, what to thine old news? + +BIONDELLO: +Why, Petruchio is coming in a new hat and an old +jerkin, a pair of old breeches thrice turned, a pair +of boots that have been candle-cases, one buckled, +another laced, an old rusty sword ta'en out of the +town-armory, with a broken hilt, and chapeless; +with two broken points: his horse hipped with an +old mothy saddle and stirrups of no kindred; +besides, possessed with the glanders and like to mose +in the chine; troubled with the lampass, infected +with the fashions, full of wingdalls, sped with +spavins, rayed with yellows, past cure of the fives, +stark spoiled with the staggers, begnawn with the +bots, swayed in the back and shoulder-shotten; +near-legged before and with, a half-chequed bit +and a head-stall of sheeps leather which, being +restrained to keep him from stumbling, hath been +often burst and now repaired with knots; one girth +six time pieced and a woman's crupper of velure, +which hath two letters for her name fairly set down +in studs, and here and there pieced with packthread. + +BAPTISTA: +Who comes with him? + +BIONDELLO: +O, sir, his lackey, for all the world caparisoned +like the horse; with a linen stock on one leg and a +kersey boot-hose on the other, gartered with a red +and blue list; an old hat and 'the humour of forty +fancies' pricked in't for a feather: a monster, a +very monster in apparel, and not like a Christian +footboy or a gentleman's lackey. + +TRANIO: +'Tis some odd humour pricks him to this fashion; +Yet oftentimes he goes but mean-apparell'd. + +BAPTISTA: +I am glad he's come, howsoe'er he comes. + +BIONDELLO: +Why, sir, he comes not. + +BAPTISTA: +Didst thou not say he comes? + +BIONDELLO: +Who? that Petruchio came? + +BAPTISTA: +Ay, that Petruchio came. + +BIONDELLO: +No, sir, I say his horse comes, with him on his back. + +BAPTISTA: +Why, that's all one. + +BIONDELLO: +Nay, by Saint Jamy, +I hold you a penny, +A horse and a man +Is more than one, +And yet not many. + +PETRUCHIO: +Come, where be these gallants? who's at home? + +BAPTISTA: +You are welcome, sir. + +PETRUCHIO: +And yet I come not well. + +BAPTISTA: +And yet you halt not. + +TRANIO: +Not so well apparell'd +As I wish you were. + +PETRUCHIO: +Were it better, I should rush in thus. +But where is Kate? where is my lovely bride? +How does my father? Gentles, methinks you frown: +And wherefore gaze this goodly company, +As if they saw some wondrous monument, +Some comet or unusual prodigy? + +BAPTISTA: +Why, sir, you know this is your wedding-day: +First were we sad, fearing you would not come; +Now sadder, that you come so unprovided. +Fie, doff this habit, shame to your estate, +An eye-sore to our solemn festival! + +TRANIO: +And tells us, what occasion of import +Hath all so long detain'd you from your wife, +And sent you hither so unlike yourself? + +PETRUCHIO: +Tedious it were to tell, and harsh to hear: +Sufficeth I am come to keep my word, +Though in some part enforced to digress; +Which, at more leisure, I will so excuse +As you shall well be satisfied withal. +But where is Kate? I stay too long from her: +The morning wears, 'tis time we were at church. + +TRANIO: +See not your bride in these unreverent robes: +Go to my chamber; Put on clothes of mine. + +PETRUCHIO: +Not I, believe me: thus I'll visit her. + +BAPTISTA: +But thus, I trust, you will not marry her. + +PETRUCHIO: +Good sooth, even thus; therefore ha' done with words: +To me she's married, not unto my clothes: +Could I repair what she will wear in me, +As I can change these poor accoutrements, +'Twere well for Kate and better for myself. +But what a fool am I to chat with you, +When I should bid good morrow to my bride, +And seal the title with a lovely kiss! + +TRANIO: +He hath some meaning in his mad attire: +We will persuade him, be it possible, +To put on better ere he go to church. + +BAPTISTA: +I'll after him, and see the event of this. + +TRANIO: +But to her love concerneth us to add +Her father's liking: which to bring to pass, +As I before unparted to your worship, +I am to get a man,--whate'er he be, +It skills not much. we'll fit him to our turn,-- +And he shall be Vincentio of Pisa; +And make assurance here in Padua +Of greater sums than I have promised. +So shall you quietly enjoy your hope, +And marry sweet Bianca with consent. + +LUCENTIO: +Were it not that my fellow-school-master +Doth watch Bianca's steps so narrowly, +'Twere good, methinks, to steal our marriage; +Which once perform'd, let all the world say no, +I'll keep mine own, despite of all the world. + +TRANIO: +That by degrees we mean to look into, +And watch our vantage in this business: +We'll over-reach the greybeard, Gremio, +The narrow-prying father, Minola, +The quaint musician, amorous Licio; +All for my master's sake, Lucentio. +Signior Gremio, came you from the church? + +GREMIO: +As willingly as e'er I came from school. + +TRANIO: +And is the bride and bridegroom coming home? + +GREMIO: +A bridegroom say you? 'tis a groom indeed, +A grumbling groom, and that the girl shall find. + +TRANIO: +Curster than she? why, 'tis impossible. + +GREMIO: +Why he's a devil, a devil, a very fiend. + +TRANIO: +Why, she's a devil, a devil, the devil's dam. + +GREMIO: +Tut, she's a lamb, a dove, a fool to him! +I'll tell you, Sir Lucentio: when the priest +Should ask, if Katharina should be his wife, +'Ay, by gogs-wouns,' quoth he; and swore so loud, +That, all-amazed, the priest let fall the book; +And, as he stoop'd again to take it up, +The mad-brain'd bridegroom took him such a cuff +That down fell priest and book and book and priest: +'Now take them up,' quoth he, 'if any list.' + +TRANIO: +What said the wench when he rose again? + +GREMIO: +Trembled and shook; for why, he stamp'd and swore, +As if the vicar meant to cozen him. +But after many ceremonies done, +He calls for wine: 'A health!' quoth he, as if +He had been aboard, carousing to his mates +After a storm; quaff'd off the muscadel +And threw the sops all in the sexton's face; +Having no other reason +But that his beard grew thin and hungerly +And seem'd to ask him sops as he was drinking. +This done, he took the bride about the neck +And kiss'd her lips with such a clamorous smack +That at the parting all the church did echo: +And I seeing this came thence for very shame; +And after me, I know, the rout is coming. +Such a mad marriage never was before: +Hark, hark! I hear the minstrels play. + +PETRUCHIO: +Gentlemen and friends, I thank you for your pains: +I know you think to dine with me to-day, +And have prepared great store of wedding cheer; +But so it is, my haste doth call me hence, +And therefore here I mean to take my leave. + +BAPTISTA: +Is't possible you will away to-night? + +PETRUCHIO: +I must away to-day, before night come: +Make it no wonder; if you knew my business, +You would entreat me rather go than stay. +And, honest company, I thank you all, +That have beheld me give away myself +To this most patient, sweet and virtuous wife: +Dine with my father, drink a health to me; +For I must hence; and farewell to you all. + +TRANIO: +Let us entreat you stay till after dinner. + +PETRUCHIO: +It may not be. + +GREMIO: +Let me entreat you. + +PETRUCHIO: +It cannot be. + +KATHARINA: +Let me entreat you. + +PETRUCHIO: +I am content. + +KATHARINA: +Are you content to stay? + +PETRUCHIO: +I am content you shall entreat me stay; +But yet not stay, entreat me how you can. + +KATHARINA: +Now, if you love me, stay. + +PETRUCHIO: +Grumio, my horse. + +GRUMIO: +Ay, sir, they be ready: the oats have eaten the horses. + +KATHARINA: +Nay, then, +Do what thou canst, I will not go to-day; +No, nor to-morrow, not till I please myself. +The door is open, sir; there lies your way; +You may be jogging whiles your boots are green; +For me, I'll not be gone till I please myself: +'Tis like you'll prove a jolly surly groom, +That take it on you at the first so roundly. + +PETRUCHIO: +O Kate, content thee; prithee, be not angry. + +KATHARINA: +I will be angry: what hast thou to do? +Father, be quiet; he shall stay my leisure. + +GREMIO: +Ay, marry, sir, now it begins to work. + +KATARINA: +Gentlemen, forward to the bridal dinner: +I see a woman may be made a fool, +If she had not a spirit to resist. + +PETRUCHIO: +They shall go forward, Kate, at thy command. +Obey the bride, you that attend on her; +Go to the feast, revel and domineer, +Carouse full measure to her maidenhead, +Be mad and merry, or go hang yourselves: +But for my bonny Kate, she must with me. +Nay, look not big, nor stamp, nor stare, nor fret; +I will be master of what is mine own: +She is my goods, my chattels; she is my house, +My household stuff, my field, my barn, +My horse, my ox, my ass, my any thing; +And here she stands, touch her whoever dare; +I'll bring mine action on the proudest he +That stops my way in Padua. Grumio, +Draw forth thy weapon, we are beset with thieves; +Rescue thy mistress, if thou be a man. +Fear not, sweet wench, they shall not touch +thee, Kate: +I'll buckler thee against a million. + +BAPTISTA: +Nay, let them go, a couple of quiet ones. + +GREMIO: +Went they not quickly, I should die with laughing. + +TRANIO: +Of all mad matches never was the like. + +LUCENTIO: +Mistress, what's your opinion of your sister? + +BIANCA: +That, being mad herself, she's madly mated. + +GREMIO: +I warrant him, Petruchio is Kated. + +BAPTISTA: +Neighbours and friends, though bride and +bridegroom wants +For to supply the places at the table, +You know there wants no junkets at the feast. +Lucentio, you shall supply the bridegroom's place: +And let Bianca take her sister's room. + +TRANIO: +Shall sweet Bianca practise how to bride it? + +BAPTISTA: +She shall, Lucentio. Come, gentlemen, let's go. + +GRUMIO: +Fie, fie on all tired jades, on all mad masters, and +all foul ways! Was ever man so beaten? was ever +man so rayed? was ever man so weary? I am sent +before to make a fire, and they are coming after to +warm them. Now, were not I a little pot and soon +hot, my very lips might freeze to my teeth, my +tongue to the roof of my mouth, my heart in my +belly, ere I should come by a fire to thaw me: but +I, with blowing the fire, shall warm myself; for, +considering the weather, a taller man than I will +take cold. Holla, ho! Curtis. + +CURTIS: +Who is that calls so coldly? + +GRUMIO: +A piece of ice: if thou doubt it, thou mayst slide +from my shoulder to my heel with no greater a run +but my head and my neck. A fire good Curtis. + +CURTIS: +Is my master and his wife coming, Grumio? + +GRUMIO: +O, ay, Curtis, ay: and therefore fire, fire; cast +on no water. + +CURTIS: +Is she so hot a shrew as she's reported? + +GRUMIO: +She was, good Curtis, before this frost: but, thou +knowest, winter tames man, woman and beast; for it +hath tamed my old master and my new mistress and +myself, fellow Curtis. + +CURTIS: +Away, you three-inch fool! I am no beast. + +GRUMIO: +Am I but three inches? why, thy horn is a foot; and +so long am I at the least. But wilt thou make a +fire, or shall I complain on thee to our mistress, +whose hand, she being now at hand, thou shalt soon +feel, to thy cold comfort, for being slow in thy hot office? + +CURTIS: +I prithee, good Grumio, tell me, how goes the world? + +GRUMIO: +A cold world, Curtis, in every office but thine; and +therefore fire: do thy duty, and have thy duty; for +my master and mistress are almost frozen to death. + +CURTIS: +There's fire ready; and therefore, good Grumio, the news. + +GRUMIO: +Why, 'Jack, boy! ho! boy!' and as much news as +will thaw. + +CURTIS: +Come, you are so full of cony-catching! + +GRUMIO: +Why, therefore fire; for I have caught extreme cold. +Where's the cook? is supper ready, the house +trimmed, rushes strewed, cobwebs swept; the +serving-men in their new fustian, their white +stockings, and every officer his wedding-garment on? +Be the jacks fair within, the jills fair without, +the carpets laid, and every thing in order? + +CURTIS: +All ready; and therefore, I pray thee, news. + +GRUMIO: +First, know, my horse is tired; my master and +mistress fallen out. + +CURTIS: +How? + +GRUMIO: +Out of their saddles into the dirt; and thereby +hangs a tale. + +CURTIS: +Let's ha't, good Grumio. + +GRUMIO: +Lend thine ear. + +CURTIS: +Here. + +GRUMIO: +There. + +CURTIS: +This is to feel a tale, not to hear a tale. + +GRUMIO: +And therefore 'tis called a sensible tale: and this +cuff was but to knock at your ear, and beseech +listening. Now I begin: Imprimis, we came down a +foul hill, my master riding behind my mistress,-- + +CURTIS: +Both of one horse? + +GRUMIO: +What's that to thee? + +CURTIS: +Why, a horse. + +GRUMIO: +Tell thou the tale: but hadst thou not crossed me, +thou shouldst have heard how her horse fell and she +under her horse; thou shouldst have heard in how +miry a place, how she was bemoiled, how he left her +with the horse upon her, how he beat me because +her horse stumbled, how she waded through the dirt +to pluck him off me, how he swore, how she prayed, +that never prayed before, how I cried, how the +horses ran away, how her bridle was burst, how I +lost my crupper, with many things of worthy memory, +which now shall die in oblivion and thou return +unexperienced to thy grave. + +CURTIS: +By this reckoning he is more shrew than she. + +GRUMIO: +Ay; and that thou and the proudest of you all shall +find when he comes home. But what talk I of this? +Call forth Nathaniel, Joseph, Nicholas, Philip, +Walter, Sugarsop and the rest: let their heads be +sleekly combed their blue coats brushed and their +garters of an indifferent knit: let them curtsy +with their left legs and not presume to touch a hair +of my master's horse-tail till they kiss their +hands. Are they all ready? + +CURTIS: +They are. + +GRUMIO: +Call them forth. + +CURTIS: +Do you hear, ho? you must meet my master to +countenance my mistress. + +GRUMIO: +Why, she hath a face of her own. + +CURTIS: +Who knows not that? + +GRUMIO: +Thou, it seems, that calls for company to +countenance her. + +CURTIS: +I call them forth to credit her. + +GRUMIO: +Why, she comes to borrow nothing of them. + +NATHANIEL: +Welcome home, Grumio! + +PHILIP: +How now, Grumio! + +JOSEPH: +What, Grumio! + +NICHOLAS: +Fellow Grumio! + +NATHANIEL: +How now, old lad? + +GRUMIO: +Welcome, you;--how now, you;-- what, you;--fellow, +you;--and thus much for greeting. Now, my spruce +companions, is all ready, and all things neat? + +NATHANIEL: +All things is ready. How near is our master? + +GRUMIO: +E'en at hand, alighted by this; and therefore be +not--Cock's passion, silence! I hear my master. + +PETRUCHIO: +Where be these knaves? What, no man at door +To hold my stirrup nor to take my horse! +Where is Nathaniel, Gregory, Philip? + +ALL SERVING-MEN: +Here, here, sir; here, sir. + +PETRUCHIO: +Here, sir! here, sir! here, sir! here, sir! +You logger-headed and unpolish'd grooms! +What, no attendance? no regard? no duty? +Where is the foolish knave I sent before? + +GRUMIO: +Here, sir; as foolish as I was before. + +PETRUCHIO: +You peasant swain! you whoreson malt-horse drudge! +Did I not bid thee meet me in the park, +And bring along these rascal knaves with thee? + +GRUMIO: +Nathaniel's coat, sir, was not fully made, +And Gabriel's pumps were all unpink'd i' the heel; +There was no link to colour Peter's hat, +And Walter's dagger was not come from sheathing: +There were none fine but Adam, Ralph, and Gregory; +The rest were ragged, old, and beggarly; +Yet, as they are, here are they come to meet you. + +PETRUCHIO: +Go, rascals, go, and fetch my supper in. +Where is the life that late I led-- +Where are those--Sit down, Kate, and welcome.-- +Sound, sound, sound, sound! +Why, when, I say? Nay, good sweet Kate, be merry. +Off with my boots, you rogues! you villains, when? +It was the friar of orders grey, +As he forth walked on his way:-- +Out, you rogue! you pluck my foot awry: +Take that, and mend the plucking off the other. +Be merry, Kate. Some water, here; what, ho! +Where's my spaniel Troilus? Sirrah, get you hence, +And bid my cousin Ferdinand come hither: +One, Kate, that you must kiss, and be acquainted with. +Where are my slippers? Shall I have some water? +Come, Kate, and wash, and welcome heartily. +You whoreson villain! will you let it fall? + +KATHARINA: +Patience, I pray you; 'twas a fault unwilling. + +PETRUCHIO: +A whoreson beetle-headed, flap-ear'd knave! +Come, Kate, sit down; I know you have a stomach. +Will you give thanks, sweet Kate; or else shall I? +What's this? mutton? + +First Servant: +Ay. + +PETRUCHIO: +Who brought it? + +PETER: +I. + +PETRUCHIO: +'Tis burnt; and so is all the meat. +What dogs are these! Where is the rascal cook? +How durst you, villains, bring it from the dresser, +And serve it thus to me that love it not? +Theretake it to you, trenchers, cups, and all; +You heedless joltheads and unmanner'd slaves! +What, do you grumble? I'll be with you straight. + +KATHARINA: +I pray you, husband, be not so disquiet: +The meat was well, if you were so contented. + +PETRUCHIO: +I tell thee, Kate, 'twas burnt and dried away; +And I expressly am forbid to touch it, +For it engenders choler, planteth anger; +And better 'twere that both of us did fast, +Since, of ourselves, ourselves are choleric, +Than feed it with such over-roasted flesh. +Be patient; to-morrow 't shall be mended, +And, for this night, we'll fast for company: +Come, I will bring thee to thy bridal chamber. + +NATHANIEL: +Peter, didst ever see the like? + +PETER: +He kills her in her own humour. + +GRUMIO: +Where is he? + +CURTIS: +In her chamber, making a sermon of continency to her; +And rails, and swears, and rates, that she, poor soul, +Knows not which way to stand, to look, to speak, +And sits as one new-risen from a dream. +Away, away! for he is coming hither. + +PETRUCHIO: +Thus have I politicly begun my reign, +And 'tis my hope to end successfully. +My falcon now is sharp and passing empty; +And till she stoop she must not be full-gorged, +For then she never looks upon her lure. +Another way I have to man my haggard, +To make her come and know her keeper's call, +That is, to watch her, as we watch these kites +That bate and beat and will not be obedient. +She eat no meat to-day, nor none shall eat; +Last night she slept not, nor to-night she shall not; +As with the meat, some undeserved fault +I'll find about the making of the bed; +And here I'll fling the pillow, there the bolster, +This way the coverlet, another way the sheets: +Ay, and amid this hurly I intend +That all is done in reverend care of her; +And in conclusion she shall watch all night: +And if she chance to nod I'll rail and brawl +And with the clamour keep her still awake. +This is a way to kill a wife with kindness; +And thus I'll curb her mad and headstrong humour. +He that knows better how to tame a shrew, +Now let him speak: 'tis charity to show. + +TRANIO: +Is't possible, friend Licio, that Mistress Bianca +Doth fancy any other but Lucentio? +I tell you, sir, she bears me fair in hand. + +HORTENSIO: +Sir, to satisfy you in what I have said, +Stand by and mark the manner of his teaching. + +LUCENTIO: +Now, mistress, profit you in what you read? + +BIANCA: +What, master, read you? first resolve me that. + +LUCENTIO: +I read that I profess, the Art to Love. + +BIANCA: +And may you prove, sir, master of your art! + +LUCENTIO: +While you, sweet dear, prove mistress of my heart! + +HORTENSIO: +Quick proceeders, marry! Now, tell me, I pray, +You that durst swear at your mistress Bianca +Loved none in the world so well as Lucentio. + +TRANIO: +O despiteful love! unconstant womankind! +I tell thee, Licio, this is wonderful. + +HORTENSIO: +Mistake no more: I am not Licio, +Nor a musician, as I seem to be; +But one that scorn to live in this disguise, +For such a one as leaves a gentleman, +And makes a god of such a cullion: +Know, sir, that I am call'd Hortensio. + +TRANIO: +Signior Hortensio, I have often heard +Of your entire affection to Bianca; +And since mine eyes are witness of her lightness, +I will with you, if you be so contented, +Forswear Bianca and her love for ever. + +HORTENSIO: +See, how they kiss and court! Signior Lucentio, +Here is my hand, and here I firmly vow +Never to woo her no more, but do forswear her, +As one unworthy all the former favours +That I have fondly flatter'd her withal. + +TRANIO: +And here I take the unfeigned oath, +Never to marry with her though she would entreat: +Fie on her! see, how beastly she doth court him! + +HORTENSIO: +Would all the world but he had quite forsworn! +For me, that I may surely keep mine oath, +I will be married to a wealthy widow, +Ere three days pass, which hath as long loved me +As I have loved this proud disdainful haggard. +And so farewell, Signior Lucentio. +Kindness in women, not their beauteous looks, +Shall win my love: and so I take my leave, +In resolution as I swore before. + +TRANIO: +Mistress Bianca, bless you with such grace +As 'longeth to a lover's blessed case! +Nay, I have ta'en you napping, gentle love, +And have forsworn you with Hortensio. + +BIANCA: +Tranio, you jest: but have you both forsworn me? + +TRANIO: +Mistress, we have. + +LUCENTIO: +Then we are rid of Licio. + +TRANIO: +I' faith, he'll have a lusty widow now, +That shall be wood and wedded in a day. + +BIANCA: +God give him joy! + +TRANIO: +Ay, and he'll tame her. + +BIANCA: +He says so, Tranio. + +TRANIO: +Faith, he is gone unto the taming-school. + +BIANCA: +The taming-school! what, is there such a place? + +TRANIO: +Ay, mistress, and Petruchio is the master; +That teacheth tricks eleven and twenty long, +To tame a shrew and charm her chattering tongue. + +BIONDELLO: +O master, master, I have watch'd so long +That I am dog-weary: but at last I spied +An ancient angel coming down the hill, +Will serve the turn. + +TRANIO: +What is he, Biondello? + +BIONDELLO: +Master, a mercatante, or a pedant, +I know not what; but format in apparel, +In gait and countenance surely like a father. + +LUCENTIO: +And what of him, Tranio? + +TRANIO: +If he be credulous and trust my tale, +I'll make him glad to seem Vincentio, +And give assurance to Baptista Minola, +As if he were the right Vincentio +Take in your love, and then let me alone. + +Pedant: +God save you, sir! + +TRANIO: +And you, sir! you are welcome. +Travel you far on, or are you at the farthest? + +Pedant: +Sir, at the farthest for a week or two: +But then up farther, and as for as Rome; +And so to Tripoli, if God lend me life. + +TRANIO: +What countryman, I pray? + +Pedant: +Of Mantua. + +TRANIO: +Of Mantua, sir? marry, God forbid! +And come to Padua, careless of your life? + +Pedant: +My life, sir! how, I pray? for that goes hard. + +TRANIO: +'Tis death for any one in Mantua +To come to Padua. Know you not the cause? +Your ships are stay'd at Venice, and the duke, +For private quarrel 'twixt your duke and him, +Hath publish'd and proclaim'd it openly: +'Tis, marvel, but that you are but newly come, +You might have heard it else proclaim'd about. + +Pedant: +Alas! sir, it is worse for me than so; +For I have bills for money by exchange +From Florence and must here deliver them. + +TRANIO: +Well, sir, to do you courtesy, +This will I do, and this I will advise you: +First, tell me, have you ever been at Pisa? + +Pedant: +Ay, sir, in Pisa have I often been, +Pisa renowned for grave citizens. + +TRANIO: +Among them know you one Vincentio? + +Pedant: +I know him not, but I have heard of him; +A merchant of incomparable wealth. + +TRANIO: +He is my father, sir; and, sooth to say, +In countenance somewhat doth resemble you. + +BIONDELLO: + +TRANIO: +To save your life in this extremity, +This favour will I do you for his sake; +And think it not the worst of an your fortunes +That you are like to Sir Vincentio. +His name and credit shall you undertake, +And in my house you shall be friendly lodged: +Look that you take upon you as you should; +You understand me, sir: so shall you stay +Till you have done your business in the city: +If this be courtesy, sir, accept of it. + +Pedant: +O sir, I do; and will repute you ever +The patron of my life and liberty. + +TRANIO: +Then go with me to make the matter good. +This, by the way, I let you understand; +my father is here look'd for every day, +To pass assurance of a dower in marriage +'Twixt me and one Baptista's daughter here: +In all these circumstances I'll instruct you: +Go with me to clothe you as becomes you. + +GRUMIO: +No, no, forsooth; I dare not for my life. + +KATHARINA: +The more my wrong, the more his spite appears: +What, did he marry me to famish me? +Beggars, that come unto my father's door, +Upon entreaty have a present aims; +If not, elsewhere they meet with charity: +But I, who never knew how to entreat, +Nor never needed that I should entreat, +Am starved for meat, giddy for lack of sleep, +With oath kept waking and with brawling fed: +And that which spites me more than all these wants, +He does it under name of perfect love; +As who should say, if I should sleep or eat, +'Twere deadly sickness or else present death. +I prithee go and get me some repast; +I care not what, so it be wholesome food. + +GRUMIO: +What say you to a neat's foot? + +KATHARINA: +'Tis passing good: I prithee let me have it. + +GRUMIO: +I fear it is too choleric a meat. +How say you to a fat tripe finely broil'd? + +KATHARINA: +I like it well: good Grumio, fetch it me. + +GRUMIO: +I cannot tell; I fear 'tis choleric. +What say you to a piece of beef and mustard? + +KATHARINA: +A dish that I do love to feed upon. + +GRUMIO: +Ay, but the mustard is too hot a little. + +KATHARINA: +Why then, the beef, and let the mustard rest. + +GRUMIO: +Nay then, I will not: you shall have the mustard, +Or else you get no beef of Grumio. + +KATHARINA: +Then both, or one, or any thing thou wilt. + +GRUMIO: +Why then, the mustard without the beef. + +KATHARINA: +Go, get thee gone, thou false deluding slave, +That feed'st me with the very name of meat: +Sorrow on thee and all the pack of you, +That triumph thus upon my misery! +Go, get thee gone, I say. + +PETRUCHIO: +How fares my Kate? What, sweeting, all amort? + +HORTENSIO: +Mistress, what cheer? + +KATHARINA: +Faith, as cold as can be. + +PETRUCHIO: +Pluck up thy spirits; look cheerfully upon me. +Here love; thou see'st how diligent I am +To dress thy meat myself and bring it thee: +I am sure, sweet Kate, this kindness merits thanks. +What, not a word? Nay, then thou lovest it not; +And all my pains is sorted to no proof. +Here, take away this dish. + +KATHARINA: +I pray you, let it stand. + +PETRUCHIO: +The poorest service is repaid with thanks; +And so shall mine, before you touch the meat. + +KATHARINA: +I thank you, sir. + +HORTENSIO: +Signior Petruchio, fie! you are to blame. +Come, mistress Kate, I'll bear you company. + +PETRUCHIO: + +Haberdasher: +Here is the cap your worship did bespeak. + +PETRUCHIO: +Why, this was moulded on a porringer; +A velvet dish: fie, fie! 'tis lewd and filthy: +Why, 'tis a cockle or a walnut-shell, +A knack, a toy, a trick, a baby's cap: +Away with it! come, let me have a bigger. + +KATHARINA: +I'll have no bigger: this doth fit the time, +And gentlewomen wear such caps as these + +PETRUCHIO: +When you are gentle, you shall have one too, +And not till then. + +HORTENSIO: + +KATHARINA: +Why, sir, I trust I may have leave to speak; +And speak I will; I am no child, no babe: +Your betters have endured me say my mind, +And if you cannot, best you stop your ears. +My tongue will tell the anger of my heart, +Or else my heart concealing it will break, +And rather than it shall, I will be free +Even to the uttermost, as I please, in words. + +PETRUCHIO: +Why, thou say'st true; it is a paltry cap, +A custard-coffin, a bauble, a silken pie: +I love thee well, in that thou likest it not. + +KATHARINA: +Love me or love me not, I like the cap; +And it I will have, or I will have none. + +PETRUCHIO: +Thy gown? why, ay: come, tailor, let us see't. +O mercy, God! what masquing stuff is here? +What's this? a sleeve? 'tis like a demi-cannon: +What, up and down, carved like an apple-tart? +Here's snip and nip and cut and slish and slash, +Like to a censer in a barber's shop: +Why, what, i' devil's name, tailor, call'st thou this? + +HORTENSIO: + +Tailor: +You bid me make it orderly and well, +According to the fashion and the time. + +PETRUCHIO: +Marry, and did; but if you be remember'd, +I did not bid you mar it to the time. +Go, hop me over every kennel home, +For you shall hop without my custom, sir: +I'll none of it: hence! make your best of it. + +KATHARINA: +I never saw a better-fashion'd gown, +More quaint, more pleasing, nor more commendable: +Belike you mean to make a puppet of me. + +PETRUCHIO: +Why, true; he means to make a puppet of thee. + +Tailor: +She says your worship means to make +a puppet of her. + +PETRUCHIO: +O monstrous arrogance! Thou liest, thou thread, +thou thimble, +Thou yard, three-quarters, half-yard, quarter, nail! +Thou flea, thou nit, thou winter-cricket thou! +Braved in mine own house with a skein of thread? +Away, thou rag, thou quantity, thou remnant; +Or I shall so be-mete thee with thy yard +As thou shalt think on prating whilst thou livest! +I tell thee, I, that thou hast marr'd her gown. + +Tailor: +Your worship is deceived; the gown is made +Just as my master had direction: +Grumio gave order how it should be done. + +GRUMIO: +I gave him no order; I gave him the stuff. + +Tailor: +But how did you desire it should be made? + +GRUMIO: +Marry, sir, with needle and thread. + +Tailor: +But did you not request to have it cut? + +GRUMIO: +Thou hast faced many things. + +Tailor: +I have. + +GRUMIO: +Face not me: thou hast braved many men; brave not +me; I will neither be faced nor braved. I say unto +thee, I bid thy master cut out the gown; but I did +not bid him cut it to pieces: ergo, thou liest. + +Tailor: +Why, here is the note of the fashion to testify + +PETRUCHIO: +Read it. + +GRUMIO: +The note lies in's throat, if he say I said so. + +Tailor: + +GRUMIO: +Master, if ever I said loose-bodied gown, sew me in +the skirts of it, and beat me to death with a bottom +of brown thread: I said a gown. + +PETRUCHIO: +Proceed. + +Tailor: + +GRUMIO: +I confess the cape. + +Tailor: + +GRUMIO: +I confess two sleeves. + +Tailor: + +PETRUCHIO: +Ay, there's the villany. + +GRUMIO: +Error i' the bill, sir; error i' the bill. +I commanded the sleeves should be cut out and +sewed up again; and that I'll prove upon thee, +though thy little finger be armed in a thimble. + +Tailor: +This is true that I say: an I had thee +in place where, thou shouldst know it. + +GRUMIO: +I am for thee straight: take thou the +bill, give me thy mete-yard, and spare not me. + +HORTENSIO: +God-a-mercy, Grumio! then he shall have no odds. + +PETRUCHIO: +Well, sir, in brief, the gown is not for me. + +GRUMIO: +You are i' the right, sir: 'tis for my mistress. + +PETRUCHIO: +Go, take it up unto thy master's use. + +GRUMIO: +Villain, not for thy life: take up my mistress' +gown for thy master's use! + +PETRUCHIO: +Why, sir, what's your conceit in that? + +GRUMIO: +O, sir, the conceit is deeper than you think for: +Take up my mistress' gown to his master's use! +O, fie, fie, fie! + +PETRUCHIO: + +HORTENSIO: +Tailor, I'll pay thee for thy gown tomorrow: +Take no unkindness of his hasty words: +Away! I say; commend me to thy master. + +PETRUCHIO: +Well, come, my Kate; we will unto your father's +Even in these honest mean habiliments: +Our purses shall be proud, our garments poor; +For 'tis the mind that makes the body rich; +And as the sun breaks through the darkest clouds, +So honour peereth in the meanest habit. +What is the jay more precious than the lark, +Because his fathers are more beautiful? +Or is the adder better than the eel, +Because his painted skin contents the eye? +O, no, good Kate; neither art thou the worse +For this poor furniture and mean array. +if thou account'st it shame. lay it on me; +And therefore frolic: we will hence forthwith, +To feast and sport us at thy father's house. +Go, call my men, and let us straight to him; +And bring our horses unto Long-lane end; +There will we mount, and thither walk on foot +Let's see; I think 'tis now some seven o'clock, +And well we may come there by dinner-time. + +KATHARINA: +I dare assure you, sir, 'tis almost two; +And 'twill be supper-time ere you come there. + +PETRUCHIO: +It shall be seven ere I go to horse: +Look, what I speak, or do, or think to do, +You are still crossing it. Sirs, let't alone: +I will not go to-day; and ere I do, +It shall be what o'clock I say it is. + +HORTENSIO: + +TRANIO: +Sir, this is the house: please it you that I call? + +Pedant: +Ay, what else? and but I be deceived +Signior Baptista may remember me, +Near twenty years ago, in Genoa, +Where we were lodgers at the Pegasus. + +TRANIO: +'Tis well; and hold your own, in any case, +With such austerity as 'longeth to a father. + +Pedant: +I warrant you. +But, sir, here comes your boy; +'Twere good he were school'd. + +TRANIO: +Fear you not him. Sirrah Biondello, +Now do your duty throughly, I advise you: +Imagine 'twere the right Vincentio. + +BIONDELLO: +Tut, fear not me. + +TRANIO: +But hast thou done thy errand to Baptista? + +BIONDELLO: +I told him that your father was at Venice, +And that you look'd for him this day in Padua. + +TRANIO: +Thou'rt a tall fellow: hold thee that to drink. +Here comes Baptista: set your countenance, sir. +Signior Baptista, you are happily met. +Sir, this is the gentleman I told you of: +I pray you stand good father to me now, +Give me Bianca for my patrimony. + +Pedant: +Soft son! +Sir, by your leave: having come to Padua +To gather in some debts, my son Lucentio +Made me acquainted with a weighty cause +Of love between your daughter and himself: +And, for the good report I hear of you +And for the love he beareth to your daughter +And she to him, to stay him not too long, +I am content, in a good father's care, +To have him match'd; and if you please to like +No worse than I, upon some agreement +Me shall you find ready and willing +With one consent to have her so bestow'd; +For curious I cannot be with you, +Signior Baptista, of whom I hear so well. + +BAPTISTA: +Sir, pardon me in what I have to say: +Your plainness and your shortness please me well. +Right true it is, your son Lucentio here +Doth love my daughter and she loveth him, +Or both dissemble deeply their affections: +And therefore, if you say no more than this, +That like a father you will deal with him +And pass my daughter a sufficient dower, +The match is made, and all is done: +Your son shall have my daughter with consent. + +TRANIO: +I thank you, sir. Where then do you know best +We be affied and such assurance ta'en +As shall with either part's agreement stand? + +BAPTISTA: +Not in my house, Lucentio; for, you know, +Pitchers have ears, and I have many servants: +Besides, old Gremio is hearkening still; +And happily we might be interrupted. + +TRANIO: +Then at my lodging, an it like you: +There doth my father lie; and there, this night, +We'll pass the business privately and well. +Send for your daughter by your servant here: +My boy shall fetch the scrivener presently. +The worst is this, that, at so slender warning, +You are like to have a thin and slender pittance. + +BAPTISTA: +It likes me well. Biondello, hie you home, +And bid Bianca make her ready straight; +And, if you will, tell what hath happened, +Lucentio's father is arrived in Padua, +And how she's like to be Lucentio's wife. + +BIONDELLO: +I pray the gods she may with all my heart! + +TRANIO: +Dally not with the gods, but get thee gone. +Signior Baptista, shall I lead the way? +Welcome! one mess is like to be your cheer: +Come, sir; we will better it in Pisa. + +BAPTISTA: +I follow you. + +BIONDELLO: +Cambio! + +LUCENTIO: +What sayest thou, Biondello? + +BIONDELLO: +You saw my master wink and laugh upon you? + +LUCENTIO: +Biondello, what of that? + +BIONDELLO: +Faith, nothing; but has left me here behind, to +expound the meaning or moral of his signs and tokens. + +LUCENTIO: +I pray thee, moralize them. + +BIONDELLO: +Then thus. Baptista is safe, talking with the +deceiving father of a deceitful son. + +LUCENTIO: +And what of him? + +BIONDELLO: +His daughter is to be brought by you to the supper. + +LUCENTIO: +And then? + +BIONDELLO: +The old priest of Saint Luke's church is at your +command at all hours. + +LUCENTIO: +And what of all this? + +BIONDELLO: +I cannot tell; expect they are busied about a +counterfeit assurance: take you assurance of her, +'cum privilegio ad imprimendum solum:' to the +church; take the priest, clerk, and some sufficient +honest witnesses: If this be not that you look for, +I have no more to say, But bid Bianca farewell for +ever and a day. + +LUCENTIO: +Hearest thou, Biondello? + +BIONDELLO: +I cannot tarry: I knew a wench married in an +afternoon as she went to the garden for parsley to +stuff a rabbit; and so may you, sir: and so, adieu, +sir. My master hath appointed me to go to Saint +Luke's, to bid the priest be ready to come against +you come with your appendix. + +LUCENTIO: +I may, and will, if she be so contented: +She will be pleased; then wherefore should I doubt? +Hap what hap may, I'll roundly go about her: +It shall go hard if Cambio go without her. + +PETRUCHIO: +Come on, i' God's name; once more toward our father's. +Good Lord, how bright and goodly shines the moon! + +KATHARINA: +The moon! the sun: it is not moonlight now. + +PETRUCHIO: +I say it is the moon that shines so bright. + +KATHARINA: +I know it is the sun that shines so bright. + +PETRUCHIO: +Now, by my mother's son, and that's myself, +It shall be moon, or star, or what I list, +Or ere I journey to your father's house. +Go on, and fetch our horses back again. +Evermore cross'd and cross'd; nothing but cross'd! + +HORTENSIO: +Say as he says, or we shall never go. + +KATHARINA: +Forward, I pray, since we have come so far, +And be it moon, or sun, or what you please: +An if you please to call it a rush-candle, +Henceforth I vow it shall be so for me. + +PETRUCHIO: +I say it is the moon. + +KATHARINA: +I know it is the moon. + +PETRUCHIO: +Nay, then you lie: it is the blessed sun. + +KATHARINA: +Then, God be bless'd, it is the blessed sun: +But sun it is not, when you say it is not; +And the moon changes even as your mind. +What you will have it named, even that it is; +And so it shall be so for Katharina. + +HORTENSIO: +Petruchio, go thy ways; the field is won. + +PETRUCHIO: +Well, forward, forward! thus the bowl should run, +And not unluckily against the bias. +But, soft! company is coming here. +Good morrow, gentle mistress: where away? +Tell me, sweet Kate, and tell me truly too, +Hast thou beheld a fresher gentlewoman? +Such war of white and red within her cheeks! +What stars do spangle heaven with such beauty, +As those two eyes become that heavenly face? +Fair lovely maid, once more good day to thee. +Sweet Kate, embrace her for her beauty's sake. + +HORTENSIO: +A' will make the man mad, to make a woman of him. + +KATHARINA: +Young budding virgin, fair and fresh and sweet, +Whither away, or where is thy abode? +Happy the parents of so fair a child; +Happier the man, whom favourable stars +Allot thee for his lovely bed-fellow! + +PETRUCHIO: +Why, how now, Kate! I hope thou art not mad: +This is a man, old, wrinkled, faded, wither'd, +And not a maiden, as thou say'st he is. + +KATHARINA: +Pardon, old father, my mistaking eyes, +That have been so bedazzled with the sun +That everything I look on seemeth green: +Now I perceive thou art a reverend father; +Pardon, I pray thee, for my mad mistaking. + +PETRUCHIO: +Do, good old grandsire; and withal make known +Which way thou travellest: if along with us, +We shall be joyful of thy company. + +VINCENTIO: +Fair sir, and you my merry mistress, +That with your strange encounter much amazed me, +My name is call'd Vincentio; my dwelling Pisa; +And bound I am to Padua; there to visit +A son of mine, which long I have not seen. + +PETRUCHIO: +What is his name? + +VINCENTIO: +Lucentio, gentle sir. + +PETRUCHIO: +Happily we met; the happier for thy son. +And now by law, as well as reverend age, +I may entitle thee my loving father: +The sister to my wife, this gentlewoman, +Thy son by this hath married. Wonder not, +Nor be grieved: she is of good esteem, +Her dowery wealthy, and of worthy birth; +Beside, so qualified as may beseem +The spouse of any noble gentleman. +Let me embrace with old Vincentio, +And wander we to see thy honest son, +Who will of thy arrival be full joyous. + +VINCENTIO: +But is it true? or else is it your pleasure, +Like pleasant travellers, to break a jest +Upon the company you overtake? + +HORTENSIO: +I do assure thee, father, so it is. + +PETRUCHIO: +Come, go along, and see the truth hereof; +For our first merriment hath made thee jealous. + +HORTENSIO: +Well, Petruchio, this has put me in heart. +Have to my widow! and if she be froward, +Then hast thou taught Hortensio to be untoward. + +BIONDELLO: +Softly and swiftly, sir; for the priest is ready. + +LUCENTIO: +I fly, Biondello: but they may chance to need thee +at home; therefore leave us. + +BIONDELLO: +Nay, faith, I'll see the church o' your back; and +then come back to my master's as soon as I can. + +GREMIO: +I marvel Cambio comes not all this while. + +PETRUCHIO: +Sir, here's the door, this is Lucentio's house: +My father's bears more toward the market-place; +Thither must I, and here I leave you, sir. + +VINCENTIO: +You shall not choose but drink before you go: +I think I shall command your welcome here, +And, by all likelihood, some cheer is toward. + +GREMIO: +They're busy within; you were best knock louder. + +Pedant: +What's he that knocks as he would beat down the gate? + +VINCENTIO: +Is Signior Lucentio within, sir? + +Pedant: +He's within, sir, but not to be spoken withal. + +VINCENTIO: +What if a man bring him a hundred pound or two, to +make merry withal? + +Pedant: +Keep your hundred pounds to yourself: he shall +need none, so long as I live. + +PETRUCHIO: +Nay, I told you your son was well beloved in Padua. +Do you hear, sir? To leave frivolous circumstances, +I pray you, tell Signior Lucentio that his father is +come from Pisa, and is here at the door to speak with him. + +Pedant: +Thou liest: his father is come from Padua and here +looking out at the window. + +VINCENTIO: +Art thou his father? + +Pedant: +Ay, sir; so his mother says, if I may believe her. + +PETRUCHIO: + +Pedant: +Lay hands on the villain: I believe a' means to +cozen somebody in this city under my countenance. + +BIONDELLO: +I have seen them in the church together: God send +'em good shipping! But who is here? mine old +master Vincentio! now we are undone and brought to nothing. + +VINCENTIO: + +BIONDELLO: +Hope I may choose, sir. + +VINCENTIO: +Come hither, you rogue. What, have you forgot me? + +BIONDELLO: +Forgot you! no, sir: I could not forget you, for I +never saw you before in all my life. + +VINCENTIO: +What, you notorious villain, didst thou never see +thy master's father, Vincentio? + +BIONDELLO: +What, my old worshipful old master? yes, marry, sir: +see where he looks out of the window. + +VINCENTIO: +Is't so, indeed. + +BIONDELLO: +Help, help, help! here's a madman will murder me. + +Pedant: +Help, son! help, Signior Baptista! + +PETRUCHIO: +Prithee, Kate, let's stand aside and see the end of +this controversy. + +TRANIO: +Sir, what are you that offer to beat my servant? + +VINCENTIO: +What am I, sir! nay, what are you, sir? O immortal +gods! O fine villain! A silken doublet! a velvet +hose! a scarlet cloak! and a copatain hat! O, I +am undone! I am undone! while I play the good +husband at home, my son and my servant spend all at +the university. + +TRANIO: +How now! what's the matter? + +BAPTISTA: +What, is the man lunatic? + +TRANIO: +Sir, you seem a sober ancient gentleman by your +habit, but your words show you a madman. Why, sir, +what 'cerns it you if I wear pearl and gold? I +thank my good father, I am able to maintain it. + +VINCENTIO: +Thy father! O villain! he is a sailmaker in Bergamo. + +BAPTISTA: +You mistake, sir, you mistake, sir. Pray, what do +you think is his name? + +VINCENTIO: +His name! as if I knew not his name: I have brought +him up ever since he was three years old, and his +name is Tranio. + +Pedant: +Away, away, mad ass! his name is Lucentio and he is +mine only son, and heir to the lands of me, Signior Vincentio. + +VINCENTIO: +Lucentio! O, he hath murdered his master! Lay hold +on him, I charge you, in the duke's name. O, my +son, my son! Tell me, thou villain, where is my son Lucentio? + +TRANIO: +Call forth an officer. +Carry this mad knave to the gaol. Father Baptista, +I charge you see that he be forthcoming. + +VINCENTIO: +Carry me to the gaol! + +GREMIO: +Stay, officer: he shall not go to prison. + +BAPTISTA: +Talk not, Signior Gremio: I say he shall go to prison. + +GREMIO: +Take heed, Signior Baptista, lest you be +cony-catched in this business: I dare swear this +is the right Vincentio. + +Pedant: +Swear, if thou darest. + +GREMIO: +Nay, I dare not swear it. + +TRANIO: +Then thou wert best say that I am not Lucentio. + +GREMIO: +Yes, I know thee to be Signior Lucentio. + +BAPTISTA: +Away with the dotard! to the gaol with him! + +VINCENTIO: +Thus strangers may be hailed and abused: O +monstrous villain! + +BIONDELLO: +O! we are spoiled and--yonder he is: deny him, +forswear him, or else we are all undone. + +LUCENTIO: + +VINCENTIO: +Lives my sweet son? + +BIANCA: +Pardon, dear father. + +BAPTISTA: +How hast thou offended? +Where is Lucentio? + +LUCENTIO: +Here's Lucentio, +Right son to the right Vincentio; +That have by marriage made thy daughter mine, +While counterfeit supposes bleared thine eyne. + +GREMIO: +Here's packing, with a witness to deceive us all! + +VINCENTIO: +Where is that damned villain Tranio, +That faced and braved me in this matter so? + +BAPTISTA: +Why, tell me, is not this my Cambio? + +BIANCA: +Cambio is changed into Lucentio. + +LUCENTIO: +Love wrought these miracles. Bianca's love +Made me exchange my state with Tranio, +While he did bear my countenance in the town; +And happily I have arrived at the last +Unto the wished haven of my bliss. +What Tranio did, myself enforced him to; +Then pardon him, sweet father, for my sake. + +VINCENTIO: +I'll slit the villain's nose, that would have sent +me to the gaol. + +BAPTISTA: +But do you hear, sir? have you married my daughter +without asking my good will? + +VINCENTIO: +Fear not, Baptista; we will content you, go to: but +I will in, to be revenged for this villany. + +BAPTISTA: +And I, to sound the depth of this knavery. + +LUCENTIO: +Look not pale, Bianca; thy father will not frown. + +GREMIO: +My cake is dough; but I'll in among the rest, +Out of hope of all, but my share of the feast. + +KATHARINA: +Husband, let's follow, to see the end of this ado. + +PETRUCHIO: +First kiss me, Kate, and we will. + +KATHARINA: +What, in the midst of the street? + +PETRUCHIO: +What, art thou ashamed of me? + +KATHARINA: +No, sir, God forbid; but ashamed to kiss. + +PETRUCHIO: +Why, then let's home again. Come, sirrah, let's away. + +KATHARINA: +Nay, I will give thee a kiss: now pray thee, love, stay. + +PETRUCHIO: +Is not this well? Come, my sweet Kate: +Better once than never, for never too late. + +LUCENTIO: +At last, though long, our jarring notes agree: +And time it is, when raging war is done, +To smile at scapes and perils overblown. +My fair Bianca, bid my father welcome, +While I with self-same kindness welcome thine. +Brother Petruchio, sister Katharina, +And thou, Hortensio, with thy loving widow, +Feast with the best, and welcome to my house: +My banquet is to close our stomachs up, +After our great good cheer. Pray you, sit down; +For now we sit to chat as well as eat. + +PETRUCHIO: +Nothing but sit and sit, and eat and eat! + +BAPTISTA: +Padua affords this kindness, son Petruchio. + +PETRUCHIO: +Padua affords nothing but what is kind. + +HORTENSIO: +For both our sakes, I would that word were true. + +PETRUCHIO: +Now, for my life, Hortensio fears his widow. + +Widow: +Then never trust me, if I be afeard. + +PETRUCHIO: +You are very sensible, and yet you miss my sense: +I mean, Hortensio is afeard of you. + +Widow: +He that is giddy thinks the world turns round. + +PETRUCHIO: +Roundly replied. + +KATHARINA: +Mistress, how mean you that? + +Widow: +Thus I conceive by him. + +PETRUCHIO: +Conceives by me! How likes Hortensio that? + +HORTENSIO: +My widow says, thus she conceives her tale. + +PETRUCHIO: +Very well mended. Kiss him for that, good widow. + +KATHARINA: +'He that is giddy thinks the world turns round:' +I pray you, tell me what you meant by that. + +Widow: +Your husband, being troubled with a shrew, +Measures my husband's sorrow by his woe: +And now you know my meaning, + +KATHARINA: +A very mean meaning. + +Widow: +Right, I mean you. + +KATHARINA: +And I am mean indeed, respecting you. + +PETRUCHIO: +To her, Kate! + +HORTENSIO: +To her, widow! + +PETRUCHIO: +A hundred marks, my Kate does put her down. + +HORTENSIO: +That's my office. + +PETRUCHIO: +Spoke like an officer; ha' to thee, lad! + +BAPTISTA: +How likes Gremio these quick-witted folks? + +GREMIO: +Believe me, sir, they butt together well. + +BIANCA: +Head, and butt! an hasty-witted body +Would say your head and butt were head and horn. + +VINCENTIO: +Ay, mistress bride, hath that awaken'd you? + +BIANCA: +Ay, but not frighted me; therefore I'll sleep again. + +PETRUCHIO: +Nay, that you shall not: since you have begun, +Have at you for a bitter jest or two! + +BIANCA: +Am I your bird? I mean to shift my bush; +And then pursue me as you draw your bow. +You are welcome all. + +PETRUCHIO: +She hath prevented me. Here, Signior Tranio. +This bird you aim'd at, though you hit her not; +Therefore a health to all that shot and miss'd. + +TRANIO: +O, sir, Lucentio slipp'd me like his greyhound, +Which runs himself and catches for his master. + +PETRUCHIO: +A good swift simile, but something currish. + +TRANIO: +'Tis well, sir, that you hunted for yourself: +'Tis thought your deer does hold you at a bay. + +BAPTISTA: +O ho, Petruchio! Tranio hits you now. + +LUCENTIO: +I thank thee for that gird, good Tranio. + +HORTENSIO: +Confess, confess, hath he not hit you here? + +PETRUCHIO: +A' has a little gall'd me, I confess; +And, as the jest did glance away from me, +'Tis ten to one it maim'd you two outright. + +BAPTISTA: +Now, in good sadness, son Petruchio, +I think thou hast the veriest shrew of all. + +PETRUCHIO: +Well, I say no: and therefore for assurance +Let's each one send unto his wife; +And he whose wife is most obedient +To come at first when he doth send for her, +Shall win the wager which we will propose. + +HORTENSIO: +Content. What is the wager? + +LUCENTIO: +Twenty crowns. + +PETRUCHIO: +Twenty crowns! +I'll venture so much of my hawk or hound, +But twenty times so much upon my wife. + +LUCENTIO: +A hundred then. + +HORTENSIO: +Content. + +PETRUCHIO: +A match! 'tis done. + +HORTENSIO: +Who shall begin? + +LUCENTIO: +That will I. +Go, Biondello, bid your mistress come to me. + +BIONDELLO: +I go. + +BAPTISTA: +Son, I'll be your half, Bianca comes. + +LUCENTIO: +I'll have no halves; I'll bear it all myself. +How now! what news? + +BIONDELLO: +Sir, my mistress sends you word +That she is busy and she cannot come. + +PETRUCHIO: +How! she is busy and she cannot come! +Is that an answer? + +GREMIO: +Ay, and a kind one too: +Pray God, sir, your wife send you not a worse. + +PETRUCHIO: +I hope better. + +HORTENSIO: +Sirrah Biondello, go and entreat my wife +To come to me forthwith. + +PETRUCHIO: +O, ho! entreat her! +Nay, then she must needs come. + +HORTENSIO: +I am afraid, sir, +Do what you can, yours will not be entreated. +Now, where's my wife? + +BIONDELLO: +She says you have some goodly jest in hand: +She will not come: she bids you come to her. + +PETRUCHIO: +Worse and worse; she will not come! O vile, +Intolerable, not to be endured! +Sirrah Grumio, go to your mistress; +Say, I command her to come to me. + +HORTENSIO: +I know her answer. + +PETRUCHIO: +What? + +HORTENSIO: +She will not. + +PETRUCHIO: +The fouler fortune mine, and there an end. + +BAPTISTA: +Now, by my holidame, here comes Katharina! + +KATHARINA: +What is your will, sir, that you send for me? + +PETRUCHIO: +Where is your sister, and Hortensio's wife? + +KATHARINA: +They sit conferring by the parlor fire. + +PETRUCHIO: +Go fetch them hither: if they deny to come. +Swinge me them soundly forth unto their husbands: +Away, I say, and bring them hither straight. + +LUCENTIO: +Here is a wonder, if you talk of a wonder. + +HORTENSIO: +And so it is: I wonder what it bodes. + +PETRUCHIO: +Marry, peace it bodes, and love and quiet life, +And awful rule and right supremacy; +And, to be short, what not, that's sweet and happy? + +BAPTISTA: +Now, fair befal thee, good Petruchio! +The wager thou hast won; and I will add +Unto their losses twenty thousand crowns; +Another dowry to another daughter, +For she is changed, as she had never been. + +PETRUCHIO: +Nay, I will win my wager better yet +And show more sign of her obedience, +Her new-built virtue and obedience. +See where she comes and brings your froward wives +As prisoners to her womanly persuasion. +Katharina, that cap of yours becomes you not: +Off with that bauble, throw it under-foot. + +Widow: +Lord, let me never have a cause to sigh, +Till I be brought to such a silly pass! + +BIANCA: +Fie! what a foolish duty call you this? + +LUCENTIO: +I would your duty were as foolish too: +The wisdom of your duty, fair Bianca, +Hath cost me an hundred crowns since supper-time. + +BIANCA: +The more fool you, for laying on my duty. + +PETRUCHIO: +Katharina, I charge thee, tell these headstrong women +What duty they do owe their lords and husbands. + +Widow: +Come, come, you're mocking: we will have no telling. + +PETRUCHIO: +Come on, I say; and first begin with her. + +Widow: +She shall not. + +PETRUCHIO: +I say she shall: and first begin with her. + +KATHARINA: +Fie, fie! unknit that threatening unkind brow, +And dart not scornful glances from those eyes, +To wound thy lord, thy king, thy governor: +It blots thy beauty as frosts do bite the meads, +Confounds thy fame as whirlwinds shake fair buds, +And in no sense is meet or amiable. +A woman moved is like a fountain troubled, +Muddy, ill-seeming, thick, bereft of beauty; +And while it is so, none so dry or thirsty +Will deign to sip or touch one drop of it. +Thy husband is thy lord, thy life, thy keeper, +Thy head, thy sovereign; one that cares for thee, +And for thy maintenance commits his body +To painful labour both by sea and land, +To watch the night in storms, the day in cold, +Whilst thou liest warm at home, secure and safe; +And craves no other tribute at thy hands +But love, fair looks and true obedience; +Too little payment for so great a debt. +Such duty as the subject owes the prince +Even such a woman oweth to her husband; +And when she is froward, peevish, sullen, sour, +And not obedient to his honest will, +What is she but a foul contending rebel +And graceless traitor to her loving lord? +I am ashamed that women are so simple +To offer war where they should kneel for peace; +Or seek for rule, supremacy and sway, +When they are bound to serve, love and obey. +Why are our bodies soft and weak and smooth, +Unapt to toil and trouble in the world, +But that our soft conditions and our hearts +Should well agree with our external parts? +Come, come, you froward and unable worms! +My mind hath been as big as one of yours, +My heart as great, my reason haply more, +To bandy word for word and frown for frown; +But now I see our lances are but straws, +Our strength as weak, our weakness past compare, +That seeming to be most which we indeed least are. +Then vail your stomachs, for it is no boot, +And place your hands below your husband's foot: +In token of which duty, if he please, +My hand is ready; may it do him ease. + +PETRUCHIO: +Why, there's a wench! Come on, and kiss me, Kate. + +LUCENTIO: +Well, go thy ways, old lad; for thou shalt ha't. + +VINCENTIO: +'Tis a good hearing when children are toward. + +LUCENTIO: +But a harsh hearing when women are froward. + +PETRUCHIO: +Come, Kate, we'll to bed. +We three are married, but you two are sped. +'Twas I won the wager, though you hit the white; +And, being a winner, God give you good night! + +HORTENSIO: +Now, go thy ways; thou hast tamed a curst shrew. + +LUCENTIO: +'Tis a wonder, by your leave, she will be tamed so. + +Master: +Boatswain! + +Boatswain: +Here, master: what cheer? + +Master: +Good, speak to the mariners: fall to't, yarely, +or we run ourselves aground: bestir, bestir. + +Boatswain: +Heigh, my hearts! cheerly, cheerly, my hearts! +yare, yare! Take in the topsail. Tend to the +master's whistle. Blow, till thou burst thy wind, +if room enough! + +ALONSO: +Good boatswain, have care. Where's the master? +Play the men. + +Boatswain: +I pray now, keep below. + +ANTONIO: +Where is the master, boatswain? + +Boatswain: +Do you not hear him? You mar our labour: keep your +cabins: you do assist the storm. + +GONZALO: +Nay, good, be patient. + +Boatswain: +When the sea is. Hence! What cares these roarers +for the name of king? To cabin: silence! trouble us not. + +GONZALO: +Good, yet remember whom thou hast aboard. + +Boatswain: +None that I more love than myself. You are a +counsellor; if you can command these elements to +silence, and work the peace of the present, we will +not hand a rope more; use your authority: if you +cannot, give thanks you have lived so long, and make +yourself ready in your cabin for the mischance of +the hour, if it so hap. Cheerly, good hearts! Out +of our way, I say. + +GONZALO: +I have great comfort from this fellow: methinks he +hath no drowning mark upon him; his complexion is +perfect gallows. Stand fast, good Fate, to his +hanging: make the rope of his destiny our cable, +for our own doth little advantage. If he be not +born to be hanged, our case is miserable. + +Boatswain: +Down with the topmast! yare! lower, lower! Bring +her to try with main-course. +A plague upon this howling! they are louder than +the weather or our office. +Yet again! what do you here? Shall we give o'er +and drown? Have you a mind to sink? + +SEBASTIAN: +A pox o' your throat, you bawling, blasphemous, +incharitable dog! + +Boatswain: +Work you then. + +ANTONIO: +Hang, cur! hang, you whoreson, insolent noisemaker! +We are less afraid to be drowned than thou art. + +GONZALO: +I'll warrant him for drowning; though the ship were +no stronger than a nutshell and as leaky as an +unstanched wench. + +Boatswain: +Lay her a-hold, a-hold! set her two courses off to +sea again; lay her off. + +Mariners: +All lost! to prayers, to prayers! all lost! + +Boatswain: +What, must our mouths be cold? + +GONZALO: +The king and prince at prayers! let's assist them, +For our case is as theirs. + +SEBASTIAN: +I'm out of patience. + +ANTONIO: +We are merely cheated of our lives by drunkards: +This wide-chapp'd rascal--would thou mightst lie drowning +The washing of ten tides! + +GONZALO: +He'll be hang'd yet, +Though every drop of water swear against it +And gape at widest to glut him. + +ANTONIO: +Let's all sink with the king. + +SEBASTIAN: +Let's take leave of him. + +GONZALO: +Now would I give a thousand furlongs of sea for an +acre of barren ground, long heath, brown furze, any +thing. The wills above be done! but I would fain +die a dry death. + +MIRANDA: +If by your art, my dearest father, you have +Put the wild waters in this roar, allay them. +The sky, it seems, would pour down stinking pitch, +But that the sea, mounting to the welkin's cheek, +Dashes the fire out. O, I have suffered +With those that I saw suffer: a brave vessel, +Who had, no doubt, some noble creature in her, +Dash'd all to pieces. O, the cry did knock +Against my very heart. Poor souls, they perish'd. +Had I been any god of power, I would +Have sunk the sea within the earth or ere +It should the good ship so have swallow'd and +The fraughting souls within her. + +PROSPERO: +Be collected: +No more amazement: tell your piteous heart +There's no harm done. + +MIRANDA: +O, woe the day! + +PROSPERO: +No harm. +I have done nothing but in care of thee, +Of thee, my dear one, thee, my daughter, who +Art ignorant of what thou art, nought knowing +Of whence I am, nor that I am more better +Than Prospero, master of a full poor cell, +And thy no greater father. + +MIRANDA: +More to know +Did never meddle with my thoughts. + +PROSPERO: +'Tis time +I should inform thee farther. Lend thy hand, +And pluck my magic garment from me. So: +Lie there, my art. Wipe thou thine eyes; have comfort. +The direful spectacle of the wreck, which touch'd +The very virtue of compassion in thee, +I have with such provision in mine art +So safely ordered that there is no soul-- +No, not so much perdition as an hair +Betid to any creature in the vessel +Which thou heard'st cry, which thou saw'st sink. Sit down; +For thou must now know farther. + +MIRANDA: +You have often +Begun to tell me what I am, but stopp'd +And left me to a bootless inquisition, +Concluding 'Stay: not yet.' + +PROSPERO: +The hour's now come; +The very minute bids thee ope thine ear; +Obey and be attentive. Canst thou remember +A time before we came unto this cell? +I do not think thou canst, for then thou wast not +Out three years old. + +MIRANDA: +Certainly, sir, I can. + +PROSPERO: +By what? by any other house or person? +Of any thing the image tell me that +Hath kept with thy remembrance. + +MIRANDA: +'Tis far off +And rather like a dream than an assurance +That my remembrance warrants. Had I not +Four or five women once that tended me? + +PROSPERO: +Thou hadst, and more, Miranda. But how is it +That this lives in thy mind? What seest thou else +In the dark backward and abysm of time? +If thou remember'st aught ere thou camest here, +How thou camest here thou mayst. + +MIRANDA: +But that I do not. + +PROSPERO: +Twelve year since, Miranda, twelve year since, +Thy father was the Duke of Milan and +A prince of power. + +MIRANDA: +Sir, are not you my father? + +PROSPERO: +Thy mother was a piece of virtue, and +She said thou wast my daughter; and thy father +Was Duke of Milan; and thou his only heir +And princess no worse issued. + +MIRANDA: +O the heavens! +What foul play had we, that we came from thence? +Or blessed was't we did? + +PROSPERO: +Both, both, my girl: +By foul play, as thou say'st, were we heaved thence, +But blessedly holp hither. + +MIRANDA: +O, my heart bleeds +To think o' the teen that I have turn'd you to, +Which is from my remembrance! Please you, farther. + +PROSPERO: +My brother and thy uncle, call'd Antonio-- +I pray thee, mark me--that a brother should +Be so perfidious!--he whom next thyself +Of all the world I loved and to him put +The manage of my state; as at that time +Through all the signories it was the first +And Prospero the prime duke, being so reputed +In dignity, and for the liberal arts +Without a parallel; those being all my study, +The government I cast upon my brother +And to my state grew stranger, being transported +And rapt in secret studies. Thy false uncle-- +Dost thou attend me? + +MIRANDA: +Sir, most heedfully. + +PROSPERO: +Being once perfected how to grant suits, +How to deny them, who to advance and who +To trash for over-topping, new created +The creatures that were mine, I say, or changed 'em, +Or else new form'd 'em; having both the key +Of officer and office, set all hearts i' the state +To what tune pleased his ear; that now he was +The ivy which had hid my princely trunk, +And suck'd my verdure out on't. Thou attend'st not. + +MIRANDA: +O, good sir, I do. + +PROSPERO: +I pray thee, mark me. +I, thus neglecting worldly ends, all dedicated +To closeness and the bettering of my mind +With that which, but by being so retired, +O'er-prized all popular rate, in my false brother +Awaked an evil nature; and my trust, +Like a good parent, did beget of him +A falsehood in its contrary as great +As my trust was; which had indeed no limit, +A confidence sans bound. He being thus lorded, +Not only with what my revenue yielded, +But what my power might else exact, like one +Who having into truth, by telling of it, +Made such a sinner of his memory, +To credit his own lie, he did believe +He was indeed the duke; out o' the substitution +And executing the outward face of royalty, +With all prerogative: hence his ambition growing-- +Dost thou hear? + +MIRANDA: +Your tale, sir, would cure deafness. + +PROSPERO: +To have no screen between this part he play'd +And him he play'd it for, he needs will be +Absolute Milan. Me, poor man, my library +Was dukedom large enough: of temporal royalties +He thinks me now incapable; confederates-- +So dry he was for sway--wi' the King of Naples +To give him annual tribute, do him homage, +Subject his coronet to his crown and bend +The dukedom yet unbow'd--alas, poor Milan!-- +To most ignoble stooping. + +MIRANDA: +O the heavens! + +PROSPERO: +Mark his condition and the event; then tell me +If this might be a brother. + +MIRANDA: +I should sin +To think but nobly of my grandmother: +Good wombs have borne bad sons. + +PROSPERO: +Now the condition. +The King of Naples, being an enemy +To me inveterate, hearkens my brother's suit; +Which was, that he, in lieu o' the premises +Of homage and I know not how much tribute, +Should presently extirpate me and mine +Out of the dukedom and confer fair Milan +With all the honours on my brother: whereon, +A treacherous army levied, one midnight +Fated to the purpose did Antonio open +The gates of Milan, and, i' the dead of darkness, +The ministers for the purpose hurried thence +Me and thy crying self. + +MIRANDA: +Alack, for pity! +I, not remembering how I cried out then, +Will cry it o'er again: it is a hint +That wrings mine eyes to't. + +PROSPERO: +Hear a little further +And then I'll bring thee to the present business +Which now's upon's; without the which this story +Were most impertinent. + +MIRANDA: +Wherefore did they not +That hour destroy us? + +PROSPERO: +Well demanded, wench: +My tale provokes that question. Dear, they durst not, +So dear the love my people bore me, nor set +A mark so bloody on the business, but +With colours fairer painted their foul ends. +In few, they hurried us aboard a bark, +Bore us some leagues to sea; where they prepared +A rotten carcass of a boat, not rigg'd, +Nor tackle, sail, nor mast; the very rats +Instinctively had quit it: there they hoist us, +To cry to the sea that roar'd to us, to sigh +To the winds whose pity, sighing back again, +Did us but loving wrong. + +MIRANDA: +Alack, what trouble +Was I then to you! + +PROSPERO: +O, a cherubim +Thou wast that did preserve me. Thou didst smile. +Infused with a fortitude from heaven, +When I have deck'd the sea with drops full salt, +Under my burthen groan'd; which raised in me +An undergoing stomach, to bear up +Against what should ensue. + +MIRANDA: +How came we ashore? + +PROSPERO: +By Providence divine. +Some food we had and some fresh water that +A noble Neapolitan, Gonzalo, +Out of his charity, being then appointed +Master of this design, did give us, with +Rich garments, linens, stuffs and necessaries, +Which since have steaded much; so, of his gentleness, +Knowing I loved my books, he furnish'd me +From mine own library with volumes that +I prize above my dukedom. + +MIRANDA: +Would I might +But ever see that man! + +PROSPERO: +Now I arise: +Sit still, and hear the last of our sea-sorrow. +Here in this island we arrived; and here +Have I, thy schoolmaster, made thee more profit +Than other princesses can that have more time +For vainer hours and tutors not so careful. + +MIRANDA: +Heavens thank you for't! And now, I pray you, sir, +For still 'tis beating in my mind, your reason +For raising this sea-storm? + +PROSPERO: +Know thus far forth. +By accident most strange, bountiful Fortune, +Now my dear lady, hath mine enemies +Brought to this shore; and by my prescience +I find my zenith doth depend upon +A most auspicious star, whose influence +If now I court not but omit, my fortunes +Will ever after droop. Here cease more questions: +Thou art inclined to sleep; 'tis a good dulness, +And give it way: I know thou canst not choose. +Come away, servant, come. I am ready now. +Approach, my Ariel, come. + +ARIEL: +All hail, great master! grave sir, hail! I come +To answer thy best pleasure; be't to fly, +To swim, to dive into the fire, to ride +On the curl'd clouds, to thy strong bidding task +Ariel and all his quality. + +PROSPERO: +Hast thou, spirit, +Perform'd to point the tempest that I bade thee? + +ARIEL: +To every article. +I boarded the king's ship; now on the beak, +Now in the waist, the deck, in every cabin, +I flamed amazement: sometime I'ld divide, +And burn in many places; on the topmast, +The yards and bowsprit, would I flame distinctly, +Then meet and join. Jove's lightnings, the precursors +O' the dreadful thunder-claps, more momentary +And sight-outrunning were not; the fire and cracks +Of sulphurous roaring the most mighty Neptune +Seem to besiege and make his bold waves tremble, +Yea, his dread trident shake. + +PROSPERO: +My brave spirit! +Who was so firm, so constant, that this coil +Would not infect his reason? + +ARIEL: +Not a soul +But felt a fever of the mad and play'd +Some tricks of desperation. All but mariners +Plunged in the foaming brine and quit the vessel, +Then all afire with me: the king's son, Ferdinand, +With hair up-staring,--then like reeds, not hair,-- +Was the first man that leap'd; cried, 'Hell is empty +And all the devils are here.' + +PROSPERO: +Why that's my spirit! +But was not this nigh shore? + +ARIEL: +Close by, my master. + +PROSPERO: +But are they, Ariel, safe? + +ARIEL: +Not a hair perish'd; +On their sustaining garments not a blemish, +But fresher than before: and, as thou badest me, +In troops I have dispersed them 'bout the isle. +The king's son have I landed by himself; +Whom I left cooling of the air with sighs +In an odd angle of the isle and sitting, +His arms in this sad knot. + +PROSPERO: +Of the king's ship +The mariners say how thou hast disposed +And all the rest o' the fleet. + +ARIEL: +Safely in harbour +Is the king's ship; in the deep nook, where once +Thou call'dst me up at midnight to fetch dew +From the still-vex'd Bermoothes, there she's hid: +The mariners all under hatches stow'd; +Who, with a charm join'd to their suffer'd labour, +I have left asleep; and for the rest o' the fleet +Which I dispersed, they all have met again +And are upon the Mediterranean flote, +Bound sadly home for Naples, +Supposing that they saw the king's ship wreck'd +And his great person perish. + +PROSPERO: +Ariel, thy charge +Exactly is perform'd: but there's more work. +What is the time o' the day? + +ARIEL: +Past the mid season. + +PROSPERO: +At least two glasses. The time 'twixt six and now +Must by us both be spent most preciously. + +ARIEL: +Is there more toil? Since thou dost give me pains, +Let me remember thee what thou hast promised, +Which is not yet perform'd me. + +PROSPERO: +How now? moody? +What is't thou canst demand? + +ARIEL: +My liberty. + +PROSPERO: +Before the time be out? no more! + +ARIEL: +I prithee, +Remember I have done thee worthy service; +Told thee no lies, made thee no mistakings, served +Without or grudge or grumblings: thou didst promise +To bate me a full year. + +PROSPERO: +Dost thou forget +From what a torment I did free thee? + +ARIEL: +No. + +PROSPERO: +Thou dost, and think'st it much to tread the ooze +Of the salt deep, +To run upon the sharp wind of the north, +To do me business in the veins o' the earth +When it is baked with frost. + +ARIEL: +I do not, sir. + +PROSPERO: +Thou liest, malignant thing! Hast thou forgot +The foul witch Sycorax, who with age and envy +Was grown into a hoop? hast thou forgot her? + +ARIEL: +No, sir. + +PROSPERO: +Thou hast. Where was she born? speak; tell me. + +ARIEL: +Sir, in Argier. + +PROSPERO: +O, was she so? I must +Once in a month recount what thou hast been, +Which thou forget'st. This damn'd witch Sycorax, +For mischiefs manifold and sorceries terrible +To enter human hearing, from Argier, +Thou know'st, was banish'd: for one thing she did +They would not take her life. Is not this true? + +ARIEL: +Ay, sir. + +PROSPERO: +This blue-eyed hag was hither brought with child +And here was left by the sailors. Thou, my slave, +As thou report'st thyself, wast then her servant; +And, for thou wast a spirit too delicate +To act her earthy and abhorr'd commands, +Refusing her grand hests, she did confine thee, +By help of her more potent ministers +And in her most unmitigable rage, +Into a cloven pine; within which rift +Imprison'd thou didst painfully remain +A dozen years; within which space she died +And left thee there; where thou didst vent thy groans +As fast as mill-wheels strike. Then was this island-- +Save for the son that she did litter here, +A freckled whelp hag-born--not honour'd with +A human shape. + +ARIEL: +Yes, Caliban her son. + +PROSPERO: +Dull thing, I say so; he, that Caliban +Whom now I keep in service. Thou best know'st +What torment I did find thee in; thy groans +Did make wolves howl and penetrate the breasts +Of ever angry bears: it was a torment +To lay upon the damn'd, which Sycorax +Could not again undo: it was mine art, +When I arrived and heard thee, that made gape +The pine and let thee out. + +ARIEL: +I thank thee, master. + +PROSPERO: +If thou more murmur'st, I will rend an oak +And peg thee in his knotty entrails till +Thou hast howl'd away twelve winters. + +ARIEL: +Pardon, master; +I will be correspondent to command +And do my spiriting gently. + +PROSPERO: +Do so, and after two days +I will discharge thee. + +ARIEL: +That's my noble master! +What shall I do? say what; what shall I do? + +PROSPERO: +Go make thyself like a nymph o' the sea: be subject +To no sight but thine and mine, invisible +To every eyeball else. Go take this shape +And hither come in't: go, hence with diligence! +Awake, dear heart, awake! thou hast slept well; Awake! + +MIRANDA: +The strangeness of your story put +Heaviness in me. + +PROSPERO: +Shake it off. Come on; +We'll visit Caliban my slave, who never +Yields us kind answer. + +MIRANDA: +'Tis a villain, sir, +I do not love to look on. + +PROSPERO: +But, as 'tis, +We cannot miss him: he does make our fire, +Fetch in our wood and serves in offices +That profit us. What, ho! slave! Caliban! +Thou earth, thou! speak. + +CALIBAN: + +PROSPERO: +Come forth, I say! there's other business for thee: +Come, thou tortoise! when? +Fine apparition! My quaint Ariel, +Hark in thine ear. + +ARIEL: +My lord it shall be done. + +PROSPERO: +Thou poisonous slave, got by the devil himself +Upon thy wicked dam, come forth! + +CALIBAN: +As wicked dew as e'er my mother brush'd +With raven's feather from unwholesome fen +Drop on you both! a south-west blow on ye +And blister you all o'er! + +PROSPERO: +For this, be sure, to-night thou shalt have cramps, +Side-stitches that shall pen thy breath up; urchins +Shall, for that vast of night that they may work, +All exercise on thee; thou shalt be pinch'd +As thick as honeycomb, each pinch more stinging +Than bees that made 'em. + +CALIBAN: +I must eat my dinner. +This island's mine, by Sycorax my mother, +Which thou takest from me. When thou camest first, +Thou strokedst me and madest much of me, wouldst give me +Water with berries in't, and teach me how +To name the bigger light, and how the less, +That burn by day and night: and then I loved thee +And show'd thee all the qualities o' the isle, +The fresh springs, brine-pits, barren place and fertile: +Cursed be I that did so! All the charms +Of Sycorax, toads, beetles, bats, light on you! +For I am all the subjects that you have, +Which first was mine own king: and here you sty me +In this hard rock, whiles you do keep from me +The rest o' the island. + +PROSPERO: +Thou most lying slave, +Whom stripes may move, not kindness! I have used thee, +Filth as thou art, with human care, and lodged thee +In mine own cell, till thou didst seek to violate +The honour of my child. + +CALIBAN: +O ho, O ho! would't had been done! +Thou didst prevent me; I had peopled else +This isle with Calibans. + +PROSPERO: +Abhorred slave, +Which any print of goodness wilt not take, +Being capable of all ill! I pitied thee, +Took pains to make thee speak, taught thee each hour +One thing or other: when thou didst not, savage, +Know thine own meaning, but wouldst gabble like +A thing most brutish, I endow'd thy purposes +With words that made them known. But thy vile race, +Though thou didst learn, had that in't which +good natures +Could not abide to be with; therefore wast thou +Deservedly confined into this rock, +Who hadst deserved more than a prison. + +CALIBAN: +You taught me language; and my profit on't +Is, I know how to curse. The red plague rid you +For learning me your language! + +PROSPERO: +Hag-seed, hence! +Fetch us in fuel; and be quick, thou'rt best, +To answer other business. Shrug'st thou, malice? +If thou neglect'st or dost unwillingly +What I command, I'll rack thee with old cramps, +Fill all thy bones with aches, make thee roar +That beasts shall tremble at thy din. + +CALIBAN: +No, pray thee. +I must obey: his art is of such power, +It would control my dam's god, Setebos, +and make a vassal of him. + +PROSPERO: +So, slave; hence! +Come unto these yellow sands, +And then take hands: +Courtsied when you have and kiss'd +The wild waves whist, +Foot it featly here and there; +And, sweet sprites, the burthen bear. +Hark, hark! + +FERDINAND: +Where should this music be? i' the air or the earth? +It sounds no more: and sure, it waits upon +Some god o' the island. Sitting on a bank, +Weeping again the king my father's wreck, +This music crept by me upon the waters, +Allaying both their fury and my passion +With its sweet air: thence I have follow'd it, +Or it hath drawn me rather. But 'tis gone. +No, it begins again. +Full fathom five thy father lies; +Of his bones are coral made; +Those are pearls that were his eyes: +Nothing of him that doth fade +But doth suffer a sea-change +Into something rich and strange. +Sea-nymphs hourly ring his knell +Hark! now I hear them,--Ding-dong, bell. + +FERDINAND: +The ditty does remember my drown'd father. +This is no mortal business, nor no sound +That the earth owes. I hear it now above me. + +PROSPERO: +The fringed curtains of thine eye advance +And say what thou seest yond. + +MIRANDA: +What is't? a spirit? +Lord, how it looks about! Believe me, sir, +It carries a brave form. But 'tis a spirit. + +PROSPERO: +No, wench; it eats and sleeps and hath such senses +As we have, such. This gallant which thou seest +Was in the wreck; and, but he's something stain'd +With grief that's beauty's canker, thou mightst call him +A goodly person: he hath lost his fellows +And strays about to find 'em. + +MIRANDA: +I might call him +A thing divine, for nothing natural +I ever saw so noble. + +PROSPERO: + +FERDINAND: +Most sure, the goddess +On whom these airs attend! Vouchsafe my prayer +May know if you remain upon this island; +And that you will some good instruction give +How I may bear me here: my prime request, +Which I do last pronounce, is, O you wonder! +If you be maid or no? + +MIRANDA: +No wonder, sir; +But certainly a maid. + +FERDINAND: +My language! heavens! +I am the best of them that speak this speech, +Were I but where 'tis spoken. + +PROSPERO: +How? the best? +What wert thou, if the King of Naples heard thee? + +FERDINAND: +A single thing, as I am now, that wonders +To hear thee speak of Naples. He does hear me; +And that he does I weep: myself am Naples, +Who with mine eyes, never since at ebb, beheld +The king my father wreck'd. + +MIRANDA: +Alack, for mercy! + +FERDINAND: +Yes, faith, and all his lords; the Duke of Milan +And his brave son being twain. + +PROSPERO: + +MIRANDA: +Why speaks my father so ungently? This +Is the third man that e'er I saw, the first +That e'er I sigh'd for: pity move my father +To be inclined my way! + +FERDINAND: +O, if a virgin, +And your affection not gone forth, I'll make you +The queen of Naples. + +PROSPERO: +Soft, sir! one word more. +They are both in either's powers; but this swift business +I must uneasy make, lest too light winning +Make the prize light. +One word more; I charge thee +That thou attend me: thou dost here usurp +The name thou owest not; and hast put thyself +Upon this island as a spy, to win it +From me, the lord on't. + +FERDINAND: +No, as I am a man. + +MIRANDA: +There's nothing ill can dwell in such a temple: +If the ill spirit have so fair a house, +Good things will strive to dwell with't. + +PROSPERO: +Follow me. +Speak not you for him; he's a traitor. Come; +I'll manacle thy neck and feet together: +Sea-water shalt thou drink; thy food shall be +The fresh-brook muscles, wither'd roots and husks +Wherein the acorn cradled. Follow. + +FERDINAND: +No; +I will resist such entertainment till +Mine enemy has more power. + +MIRANDA: +O dear father, +Make not too rash a trial of him, for +He's gentle and not fearful. + +PROSPERO: +What? I say, +My foot my tutor? Put thy sword up, traitor; +Who makest a show but darest not strike, thy conscience +Is so possess'd with guilt: come from thy ward, +For I can here disarm thee with this stick +And make thy weapon drop. + +MIRANDA: +Beseech you, father. + +PROSPERO: +Hence! hang not on my garments. + +MIRANDA: +Sir, have pity; +I'll be his surety. + +PROSPERO: +Silence! one word more +Shall make me chide thee, if not hate thee. What! +An advocate for an imposter! hush! +Thou think'st there is no more such shapes as he, +Having seen but him and Caliban: foolish wench! +To the most of men this is a Caliban +And they to him are angels. + +MIRANDA: +My affections +Are then most humble; I have no ambition +To see a goodlier man. + +PROSPERO: +Come on; obey: +Thy nerves are in their infancy again +And have no vigour in them. + +FERDINAND: +So they are; +My spirits, as in a dream, are all bound up. +My father's loss, the weakness which I feel, +The wreck of all my friends, nor this man's threats, +To whom I am subdued, are but light to me, +Might I but through my prison once a day +Behold this maid: all corners else o' the earth +Let liberty make use of; space enough +Have I in such a prison. + +PROSPERO: + +MIRANDA: +Be of comfort; +My father's of a better nature, sir, +Than he appears by speech: this is unwonted +Which now came from him. + +PROSPERO: +Thou shalt be free +As mountain winds: but then exactly do +All points of my command. + +ARIEL: +To the syllable. + +PROSPERO: +Come, follow. Speak not for him. + +GONZALO: +Beseech you, sir, be merry; you have cause, +So have we all, of joy; for our escape +Is much beyond our loss. Our hint of woe +Is common; every day some sailor's wife, +The masters of some merchant and the merchant +Have just our theme of woe; but for the miracle, +I mean our preservation, few in millions +Can speak like us: then wisely, good sir, weigh +Our sorrow with our comfort. + +ALONSO: +Prithee, peace. + +SEBASTIAN: +He receives comfort like cold porridge. + +ANTONIO: +The visitor will not give him o'er so. + +SEBASTIAN: +Look he's winding up the watch of his wit; +by and by it will strike. + +GONZALO: +Sir,-- + +SEBASTIAN: +One: tell. + +GONZALO: +When every grief is entertain'd that's offer'd, +Comes to the entertainer-- + +SEBASTIAN: +A dollar. + +GONZALO: +Dolour comes to him, indeed: you +have spoken truer than you purposed. + +SEBASTIAN: +You have taken it wiselier than I meant you should. + +GONZALO: +Therefore, my lord,-- + +ANTONIO: +Fie, what a spendthrift is he of his tongue! + +ALONSO: +I prithee, spare. + +GONZALO: +Well, I have done: but yet,-- + +SEBASTIAN: +He will be talking. + +ANTONIO: +Which, of he or Adrian, for a good +wager, first begins to crow? + +SEBASTIAN: +The old cock. + +ANTONIO: +The cockerel. + +SEBASTIAN: +Done. The wager? + +ANTONIO: +A laughter. + +SEBASTIAN: +A match! + +ADRIAN: +Though this island seem to be desert,-- + +SEBASTIAN: +Ha, ha, ha! So, you're paid. + +ADRIAN: +Uninhabitable and almost inaccessible,-- + +SEBASTIAN: +Yet,-- + +ADRIAN: +Yet,-- + +ANTONIO: +He could not miss't. + +ADRIAN: +It must needs be of subtle, tender and delicate +temperance. + +ANTONIO: +Temperance was a delicate wench. + +SEBASTIAN: +Ay, and a subtle; as he most learnedly delivered. + +ADRIAN: +The air breathes upon us here most sweetly. + +SEBASTIAN: +As if it had lungs and rotten ones. + +ANTONIO: +Or as 'twere perfumed by a fen. + +GONZALO: +Here is everything advantageous to life. + +ANTONIO: +True; save means to live. + +SEBASTIAN: +Of that there's none, or little. + +GONZALO: +How lush and lusty the grass looks! how green! + +ANTONIO: +The ground indeed is tawny. + +SEBASTIAN: +With an eye of green in't. + +ANTONIO: +He misses not much. + +SEBASTIAN: +No; he doth but mistake the truth totally. + +GONZALO: +But the rarity of it is,--which is indeed almost +beyond credit,-- + +SEBASTIAN: +As many vouched rarities are. + +GONZALO: +That our garments, being, as they were, drenched in +the sea, hold notwithstanding their freshness and +glosses, being rather new-dyed than stained with +salt water. + +ANTONIO: +If but one of his pockets could speak, would it not +say he lies? + +SEBASTIAN: +Ay, or very falsely pocket up his report + +GONZALO: +Methinks our garments are now as fresh as when we +put them on first in Afric, at the marriage of +the king's fair daughter Claribel to the King of Tunis. + +SEBASTIAN: +'Twas a sweet marriage, and we prosper well in our return. + +ADRIAN: +Tunis was never graced before with such a paragon to +their queen. + +GONZALO: +Not since widow Dido's time. + +ANTONIO: +Widow! a pox o' that! How came that widow in? +widow Dido! + +SEBASTIAN: +What if he had said 'widower AEneas' too? Good Lord, +how you take it! + +ADRIAN: +'Widow Dido' said you? you make me study of that: +she was of Carthage, not of Tunis. + +GONZALO: +This Tunis, sir, was Carthage. + +ADRIAN: +Carthage? + +GONZALO: +I assure you, Carthage. + +SEBASTIAN: +His word is more than the miraculous harp; he hath +raised the wall and houses too. + +ANTONIO: +What impossible matter will he make easy next? + +SEBASTIAN: +I think he will carry this island home in his pocket +and give it his son for an apple. + +ANTONIO: +And, sowing the kernels of it in the sea, bring +forth more islands. + +GONZALO: +Ay. + +ANTONIO: +Why, in good time. + +GONZALO: +Sir, we were talking that our garments seem now +as fresh as when we were at Tunis at the marriage +of your daughter, who is now queen. + +ANTONIO: +And the rarest that e'er came there. + +SEBASTIAN: +Bate, I beseech you, widow Dido. + +ANTONIO: +O, widow Dido! ay, widow Dido. + +GONZALO: +Is not, sir, my doublet as fresh as the first day I +wore it? I mean, in a sort. + +ANTONIO: +That sort was well fished for. + +GONZALO: +When I wore it at your daughter's marriage? + +ALONSO: +You cram these words into mine ears against +The stomach of my sense. Would I had never +Married my daughter there! for, coming thence, +My son is lost and, in my rate, she too, +Who is so far from Italy removed +I ne'er again shall see her. O thou mine heir +Of Naples and of Milan, what strange fish +Hath made his meal on thee? + +FRANCISCO: +Sir, he may live: +I saw him beat the surges under him, +And ride upon their backs; he trod the water, +Whose enmity he flung aside, and breasted +The surge most swoln that met him; his bold head +'Bove the contentious waves he kept, and oar'd +Himself with his good arms in lusty stroke +To the shore, that o'er his wave-worn basis bow'd, +As stooping to relieve him: I not doubt +He came alive to land. + +ALONSO: +No, no, he's gone. + +SEBASTIAN: +Sir, you may thank yourself for this great loss, +That would not bless our Europe with your daughter, +But rather lose her to an African; +Where she at least is banish'd from your eye, +Who hath cause to wet the grief on't. + +ALONSO: +Prithee, peace. + +SEBASTIAN: +You were kneel'd to and importuned otherwise +By all of us, and the fair soul herself +Weigh'd between loathness and obedience, at +Which end o' the beam should bow. We have lost your +son, +I fear, for ever: Milan and Naples have +More widows in them of this business' making +Than we bring men to comfort them: +The fault's your own. + +ALONSO: +So is the dear'st o' the loss. + +GONZALO: +My lord Sebastian, +The truth you speak doth lack some gentleness +And time to speak it in: you rub the sore, +When you should bring the plaster. + +SEBASTIAN: +Very well. + +ANTONIO: +And most chirurgeonly. + +GONZALO: +It is foul weather in us all, good sir, +When you are cloudy. + +SEBASTIAN: +Foul weather? + +ANTONIO: +Very foul. + +GONZALO: +Had I plantation of this isle, my lord,-- + +ANTONIO: +He'ld sow't with nettle-seed. + +SEBASTIAN: +Or docks, or mallows. + +GONZALO: +And were the king on't, what would I do? + +SEBASTIAN: +'Scape being drunk for want of wine. + +GONZALO: +I' the commonwealth I would by contraries +Execute all things; for no kind of traffic +Would I admit; no name of magistrate; +Letters should not be known; riches, poverty, +And use of service, none; contract, succession, +Bourn, bound of land, tilth, vineyard, none; +No use of metal, corn, or wine, or oil; +No occupation; all men idle, all; +And women too, but innocent and pure; +No sovereignty;-- + +SEBASTIAN: +Yet he would be king on't. + +ANTONIO: +The latter end of his commonwealth forgets the +beginning. + +GONZALO: +All things in common nature should produce +Without sweat or endeavour: treason, felony, +Sword, pike, knife, gun, or need of any engine, +Would I not have; but nature should bring forth, +Of its own kind, all foison, all abundance, +To feed my innocent people. + +SEBASTIAN: +No marrying 'mong his subjects? + +ANTONIO: +None, man; all idle: whores and knaves. + +GONZALO: +I would with such perfection govern, sir, +To excel the golden age. + +SEBASTIAN: +God save his majesty! + +ANTONIO: +Long live Gonzalo! + +GONZALO: +And,--do you mark me, sir? + +ALONSO: +Prithee, no more: thou dost talk nothing to me. + +GONZALO: +I do well believe your highness; and +did it to minister occasion to these gentlemen, +who are of such sensible and nimble lungs that +they always use to laugh at nothing. + +ANTONIO: +'Twas you we laughed at. + +GONZALO: +Who in this kind of merry fooling am nothing +to you: so you may continue and laugh at +nothing still. + +ANTONIO: +What a blow was there given! + +SEBASTIAN: +An it had not fallen flat-long. + +GONZALO: +You are gentlemen of brave metal; you would lift +the moon out of her sphere, if she would continue +in it five weeks without changing. + +SEBASTIAN: +We would so, and then go a bat-fowling. + +ANTONIO: +Nay, good my lord, be not angry. + +GONZALO: +No, I warrant you; I will not adventure +my discretion so weakly. Will you laugh +me asleep, for I am very heavy? + +ANTONIO: +Go sleep, and hear us. + +ALONSO: +What, all so soon asleep! I wish mine eyes +Would, with themselves, shut up my thoughts: I find +They are inclined to do so. + +SEBASTIAN: +Please you, sir, +Do not omit the heavy offer of it: +It seldom visits sorrow; when it doth, +It is a comforter. + +ANTONIO: +We two, my lord, +Will guard your person while you take your rest, +And watch your safety. + +ALONSO: +Thank you. Wondrous heavy. + +SEBASTIAN: +What a strange drowsiness possesses them! + +ANTONIO: +It is the quality o' the climate. + +SEBASTIAN: +Why +Doth it not then our eyelids sink? I find not +Myself disposed to sleep. + +ANTONIO: +Nor I; my spirits are nimble. +They fell together all, as by consent; +They dropp'd, as by a thunder-stroke. What might, +Worthy Sebastian? O, what might?--No more:-- +And yet me thinks I see it in thy face, +What thou shouldst be: the occasion speaks thee, and +My strong imagination sees a crown +Dropping upon thy head. + +SEBASTIAN: +What, art thou waking? + +ANTONIO: +Do you not hear me speak? + +SEBASTIAN: +I do; and surely +It is a sleepy language and thou speak'st +Out of thy sleep. What is it thou didst say? +This is a strange repose, to be asleep +With eyes wide open; standing, speaking, moving, +And yet so fast asleep. + +ANTONIO: +Noble Sebastian, +Thou let'st thy fortune sleep--die, rather; wink'st +Whiles thou art waking. + +SEBASTIAN: +Thou dost snore distinctly; +There's meaning in thy snores. + +ANTONIO: +I am more serious than my custom: you +Must be so too, if heed me; which to do +Trebles thee o'er. + +SEBASTIAN: +Well, I am standing water. + +ANTONIO: +I'll teach you how to flow. + +SEBASTIAN: +Do so: to ebb +Hereditary sloth instructs me. + +ANTONIO: +O, +If you but knew how you the purpose cherish +Whiles thus you mock it! how, in stripping it, +You more invest it! Ebbing men, indeed, +Most often do so near the bottom run +By their own fear or sloth. + +SEBASTIAN: +Prithee, say on: +The setting of thine eye and cheek proclaim +A matter from thee, and a birth indeed +Which throes thee much to yield. + +ANTONIO: +Thus, sir: +Although this lord of weak remembrance, this, +Who shall be of as little memory +When he is earth'd, hath here almost persuade,-- +For he's a spirit of persuasion, only +Professes to persuade,--the king his son's alive, +'Tis as impossible that he's undrown'd +And he that sleeps here swims. + +SEBASTIAN: +I have no hope +That he's undrown'd. + +ANTONIO: +O, out of that 'no hope' +What great hope have you! no hope that way is +Another way so high a hope that even +Ambition cannot pierce a wink beyond, +But doubt discovery there. Will you grant with me +That Ferdinand is drown'd? + +SEBASTIAN: +He's gone. + +ANTONIO: +Then, tell me, +Who's the next heir of Naples? + +SEBASTIAN: +Claribel. + +ANTONIO: +She that is queen of Tunis; she that dwells +Ten leagues beyond man's life; she that from Naples +Can have no note, unless the sun were post-- +The man i' the moon's too slow--till new-born chins +Be rough and razorable; she that--from whom? +We all were sea-swallow'd, though some cast again, +And by that destiny to perform an act +Whereof what's past is prologue, what to come +In yours and my discharge. + +SEBASTIAN: +What stuff is this! how say you? +'Tis true, my brother's daughter's queen of Tunis; +So is she heir of Naples; 'twixt which regions +There is some space. + +ANTONIO: +A space whose every cubit +Seems to cry out, 'How shall that Claribel +Measure us back to Naples? Keep in Tunis, +And let Sebastian wake.' Say, this were death +That now hath seized them; why, they were no worse +Than now they are. There be that can rule Naples +As well as he that sleeps; lords that can prate +As amply and unnecessarily +As this Gonzalo; I myself could make +A chough of as deep chat. O, that you bore +The mind that I do! what a sleep were this +For your advancement! Do you understand me? + +SEBASTIAN: +Methinks I do. + +ANTONIO: +And how does your content +Tender your own good fortune? + +SEBASTIAN: +I remember +You did supplant your brother Prospero. + +ANTONIO: +True: +And look how well my garments sit upon me; +Much feater than before: my brother's servants +Were then my fellows; now they are my men. + +SEBASTIAN: +But, for your conscience? + +ANTONIO: +Ay, sir; where lies that? if 'twere a kibe, +'Twould put me to my slipper: but I feel not +This deity in my bosom: twenty consciences, +That stand 'twixt me and Milan, candied be they +And melt ere they molest! Here lies your brother, +No better than the earth he lies upon, +If he were that which now he's like, that's dead; +Whom I, with this obedient steel, three inches of it, +Can lay to bed for ever; whiles you, doing thus, +To the perpetual wink for aye might put +This ancient morsel, this Sir Prudence, who +Should not upbraid our course. For all the rest, +They'll take suggestion as a cat laps milk; +They'll tell the clock to any business that +We say befits the hour. + +SEBASTIAN: +Thy case, dear friend, +Shall be my precedent; as thou got'st Milan, +I'll come by Naples. Draw thy sword: one stroke +Shall free thee from the tribute which thou payest; +And I the king shall love thee. + +ANTONIO: +Draw together; +And when I rear my hand, do you the like, +To fall it on Gonzalo. + +SEBASTIAN: +O, but one word. + +ARIEL: +My master through his art foresees the danger +That you, his friend, are in; and sends me forth-- +For else his project dies--to keep them living. +While you here do snoring lie, +Open-eyed conspiracy +His time doth take. +If of life you keep a care, +Shake off slumber, and beware: +Awake, awake! + +ANTONIO: +Then let us both be sudden. + +GONZALO: +Now, good angels +Preserve the king. + +ALONSO: +Why, how now? ho, awake! Why are you drawn? +Wherefore this ghastly looking? + +GONZALO: +What's the matter? + +SEBASTIAN: +Whiles we stood here securing your repose, +Even now, we heard a hollow burst of bellowing +Like bulls, or rather lions: did't not wake you? +It struck mine ear most terribly. + +ALONSO: +I heard nothing. + +ANTONIO: +O, 'twas a din to fright a monster's ear, +To make an earthquake! sure, it was the roar +Of a whole herd of lions. + +ALONSO: +Heard you this, Gonzalo? + +GONZALO: +Upon mine honour, sir, I heard a humming, +And that a strange one too, which did awake me: +I shaked you, sir, and cried: as mine eyes open'd, +I saw their weapons drawn: there was a noise, +That's verily. 'Tis best we stand upon our guard, +Or that we quit this place; let's draw our weapons. + +ALONSO: +Lead off this ground; and let's make further search +For my poor son. + +GONZALO: +Heavens keep him from these beasts! +For he is, sure, i' the island. + +ALONSO: +Lead away. + +ARIEL: +Prospero my lord shall know what I have done: +So, king, go safely on to seek thy son. + +CALIBAN: +All the infections that the sun sucks up +From bogs, fens, flats, on Prosper fall and make him +By inch-meal a disease! His spirits hear me +And yet I needs must curse. But they'll nor pinch, +Fright me with urchin--shows, pitch me i' the mire, +Nor lead me, like a firebrand, in the dark +Out of my way, unless he bid 'em; but +For every trifle are they set upon me; +Sometime like apes that mow and chatter at me +And after bite me, then like hedgehogs which +Lie tumbling in my barefoot way and mount +Their pricks at my footfall; sometime am I +All wound with adders who with cloven tongues +Do hiss me into madness. +Lo, now, lo! +Here comes a spirit of his, and to torment me +For bringing wood in slowly. I'll fall flat; +Perchance he will not mind me. + +TRINCULO: +Here's neither bush nor shrub, to bear off +any weather at all, and another storm brewing; +I hear it sing i' the wind: yond same black +cloud, yond huge one, looks like a foul +bombard that would shed his liquor. If it +should thunder as it did before, I know not +where to hide my head: yond same cloud cannot +choose but fall by pailfuls. What have we +here? a man or a fish? dead or alive? A fish: +he smells like a fish; a very ancient and fish- +like smell; a kind of not of the newest Poor- +John. A strange fish! Were I in England now, +as once I was, and had but this fish painted, +not a holiday fool there but would give a piece +of silver: there would this monster make a +man; any strange beast there makes a man: +when they will not give a doit to relieve a lame +beggar, they will lazy out ten to see a dead +Indian. Legged like a man and his fins like +arms! Warm o' my troth! I do now let loose +my opinion; hold it no longer: this is no fish, +but an islander, that hath lately suffered by a +thunderbolt. +Alas, the storm is come again! my best way is to +creep under his gaberdine; there is no other +shelter hereabouts: misery acquaints a man with +strange bed-fellows. I will here shroud till the +dregs of the storm be past. + +STEPHANO: +I shall no more to sea, to sea, +Here shall I die ashore-- +This is a very scurvy tune to sing at a man's +funeral: well, here's my comfort. +The master, the swabber, the boatswain and I, +The gunner and his mate +Loved Mall, Meg and Marian and Margery, +But none of us cared for Kate; +For she had a tongue with a tang, +Would cry to a sailor, Go hang! +She loved not the savour of tar nor of pitch, +Yet a tailor might scratch her where'er she did itch: +Then to sea, boys, and let her go hang! +This is a scurvy tune too: but here's my comfort. + +CALIBAN: +Do not torment me: Oh! + +STEPHANO: +What's the matter? Have we devils here? Do you put +tricks upon's with savages and men of Ind, ha? I +have not scaped drowning to be afeard now of your +four legs; for it hath been said, As proper a man as +ever went on four legs cannot make him give ground; +and it shall be said so again while Stephano +breathes at's nostrils. + +CALIBAN: +The spirit torments me; Oh! + +STEPHANO: +This is some monster of the isle with four legs, who +hath got, as I take it, an ague. Where the devil +should he learn our language? I will give him some +relief, if it be but for that. if I can recover him +and keep him tame and get to Naples with him, he's a +present for any emperor that ever trod on neat's leather. + +CALIBAN: +Do not torment me, prithee; I'll bring my wood home faster. + +STEPHANO: +He's in his fit now and does not talk after the +wisest. He shall taste of my bottle: if he have +never drunk wine afore will go near to remove his +fit. If I can recover him and keep him tame, I will +not take too much for him; he shall pay for him that +hath him, and that soundly. + +CALIBAN: +Thou dost me yet but little hurt; thou wilt anon, I +know it by thy trembling: now Prosper works upon thee. + +STEPHANO: +Come on your ways; open your mouth; here is that +which will give language to you, cat: open your +mouth; this will shake your shaking, I can tell you, +and that soundly: you cannot tell who's your friend: +open your chaps again. + +TRINCULO: +I should know that voice: it should be--but he is +drowned; and these are devils: O defend me! + +STEPHANO: +Four legs and two voices: a most delicate monster! +His forward voice now is to speak well of his +friend; his backward voice is to utter foul speeches +and to detract. If all the wine in my bottle will +recover him, I will help his ague. Come. Amen! I +will pour some in thy other mouth. + +TRINCULO: +Stephano! + +STEPHANO: +Doth thy other mouth call me? Mercy, mercy! This is +a devil, and no monster: I will leave him; I have no +long spoon. + +TRINCULO: +Stephano! If thou beest Stephano, touch me and +speak to me: for I am Trinculo--be not afeard--thy +good friend Trinculo. + +STEPHANO: +If thou beest Trinculo, come forth: I'll pull thee +by the lesser legs: if any be Trinculo's legs, +these are they. Thou art very Trinculo indeed! How +camest thou to be the siege of this moon-calf? can +he vent Trinculos? + +TRINCULO: +I took him to be killed with a thunder-stroke. But +art thou not drowned, Stephano? I hope now thou art +not drowned. Is the storm overblown? I hid me +under the dead moon-calf's gaberdine for fear of +the storm. And art thou living, Stephano? O +Stephano, two Neapolitans 'scaped! + +STEPHANO: +Prithee, do not turn me about; my stomach is not constant. + +CALIBAN: + +STEPHANO: +How didst thou 'scape? How camest thou hither? +swear by this bottle how thou camest hither. I +escaped upon a butt of sack which the sailors +heaved o'erboard, by this bottle; which I made of +the bark of a tree with mine own hands since I was +cast ashore. + +CALIBAN: +I'll swear upon that bottle to be thy true subject; +for the liquor is not earthly. + +STEPHANO: +Here; swear then how thou escapedst. + +TRINCULO: +Swum ashore. man, like a duck: I can swim like a +duck, I'll be sworn. + +STEPHANO: +Here, kiss the book. Though thou canst swim like a +duck, thou art made like a goose. + +TRINCULO: +O Stephano. hast any more of this? + +STEPHANO: +The whole butt, man: my cellar is in a rock by the +sea-side where my wine is hid. How now, moon-calf! +how does thine ague? + +CALIBAN: +Hast thou not dropp'd from heaven? + +STEPHANO: +Out o' the moon, I do assure thee: I was the man i' +the moon when time was. + +CALIBAN: +I have seen thee in her and I do adore thee: +My mistress show'd me thee and thy dog and thy bush. + +STEPHANO: +Come, swear to that; kiss the book: I will furnish +it anon with new contents swear. + +TRINCULO: +By this good light, this is a very shallow monster! +I afeard of him! A very weak monster! The man i' +the moon! A most poor credulous monster! Well +drawn, monster, in good sooth! + +CALIBAN: +I'll show thee every fertile inch o' th' island; +And I will kiss thy foot: I prithee, be my god. + +TRINCULO: +By this light, a most perfidious and drunken +monster! when 's god's asleep, he'll rob his bottle. + +CALIBAN: +I'll kiss thy foot; I'll swear myself thy subject. + +STEPHANO: +Come on then; down, and swear. + +TRINCULO: +I shall laugh myself to death at this puppy-headed +monster. A most scurvy monster! I could find in my +heart to beat him,-- + +STEPHANO: +Come, kiss. + +TRINCULO: +But that the poor monster's in drink: an abominable monster! + +CALIBAN: +I'll show thee the best springs; I'll pluck thee berries; +I'll fish for thee and get thee wood enough. +A plague upon the tyrant that I serve! +I'll bear him no more sticks, but follow thee, +Thou wondrous man. + +TRINCULO: +A most ridiculous monster, to make a wonder of a +Poor drunkard! + +CALIBAN: +I prithee, let me bring thee where crabs grow; +And I with my long nails will dig thee pignuts; +Show thee a jay's nest and instruct thee how +To snare the nimble marmoset; I'll bring thee +To clustering filberts and sometimes I'll get thee +Young scamels from the rock. Wilt thou go with me? + +STEPHANO: +I prithee now, lead the way without any more +talking. Trinculo, the king and all our company +else being drowned, we will inherit here: here; +bear my bottle: fellow Trinculo, we'll fill him by +and by again. + +CALIBAN: + +TRINCULO: +A howling monster: a drunken monster! + +CALIBAN: +No more dams I'll make for fish +Nor fetch in firing +At requiring; +Nor scrape trencher, nor wash dish +'Ban, 'Ban, Cacaliban +Has a new master: get a new man. +Freedom, hey-day! hey-day, freedom! freedom, +hey-day, freedom! + +STEPHANO: +O brave monster! Lead the way. + +FERDINAND: +There be some sports are painful, and their labour +Delight in them sets off: some kinds of baseness +Are nobly undergone and most poor matters +Point to rich ends. This my mean task +Would be as heavy to me as odious, but +The mistress which I serve quickens what's dead +And makes my labours pleasures: O, she is +Ten times more gentle than her father's crabbed, +And he's composed of harshness. I must remove +Some thousands of these logs and pile them up, +Upon a sore injunction: my sweet mistress +Weeps when she sees me work, and says, such baseness +Had never like executor. I forget: +But these sweet thoughts do even refresh my labours, +Most busy lest, when I do it. + +MIRANDA: +Alas, now, pray you, +Work not so hard: I would the lightning had +Burnt up those logs that you are enjoin'd to pile! +Pray, set it down and rest you: when this burns, +'Twill weep for having wearied you. My father +Is hard at study; pray now, rest yourself; +He's safe for these three hours. + +FERDINAND: +O most dear mistress, +The sun will set before I shall discharge +What I must strive to do. + +MIRANDA: +If you'll sit down, +I'll bear your logs the while: pray, give me that; +I'll carry it to the pile. + +FERDINAND: +No, precious creature; +I had rather crack my sinews, break my back, +Than you should such dishonour undergo, +While I sit lazy by. + +MIRANDA: +It would become me +As well as it does you: and I should do it +With much more ease; for my good will is to it, +And yours it is against. + +PROSPERO: +Poor worm, thou art infected! +This visitation shows it. + +MIRANDA: +You look wearily. + +FERDINAND: +No, noble mistress;'tis fresh morning with me +When you are by at night. I do beseech you-- +Chiefly that I might set it in my prayers-- +What is your name? + +MIRANDA: +Miranda.--O my father, +I have broke your hest to say so! + +FERDINAND: +Admired Miranda! +Indeed the top of admiration! worth +What's dearest to the world! Full many a lady +I have eyed with best regard and many a time +The harmony of their tongues hath into bondage +Brought my too diligent ear: for several virtues +Have I liked several women; never any +With so fun soul, but some defect in her +Did quarrel with the noblest grace she owed +And put it to the foil: but you, O you, +So perfect and so peerless, are created +Of every creature's best! + +MIRANDA: +I do not know +One of my sex; no woman's face remember, +Save, from my glass, mine own; nor have I seen +More that I may call men than you, good friend, +And my dear father: how features are abroad, +I am skilless of; but, by my modesty, +The jewel in my dower, I would not wish +Any companion in the world but you, +Nor can imagination form a shape, +Besides yourself, to like of. But I prattle +Something too wildly and my father's precepts +I therein do forget. + +FERDINAND: +I am in my condition +A prince, Miranda; I do think, a king; +I would, not so!--and would no more endure +This wooden slavery than to suffer +The flesh-fly blow my mouth. Hear my soul speak: +The very instant that I saw you, did +My heart fly to your service; there resides, +To make me slave to it; and for your sake +Am I this patient log--man. + +MIRANDA: +Do you love me? + +FERDINAND: +O heaven, O earth, bear witness to this sound +And crown what I profess with kind event +If I speak true! if hollowly, invert +What best is boded me to mischief! I +Beyond all limit of what else i' the world +Do love, prize, honour you. + +MIRANDA: +I am a fool +To weep at what I am glad of. + +PROSPERO: +Fair encounter +Of two most rare affections! Heavens rain grace +On that which breeds between 'em! + +FERDINAND: +Wherefore weep you? + +MIRANDA: +At mine unworthiness that dare not offer +What I desire to give, and much less take +What I shall die to want. But this is trifling; +And all the more it seeks to hide itself, +The bigger bulk it shows. Hence, bashful cunning! +And prompt me, plain and holy innocence! +I am your wife, it you will marry me; +If not, I'll die your maid: to be your fellow +You may deny me; but I'll be your servant, +Whether you will or no. + +FERDINAND: +My mistress, dearest; +And I thus humble ever. + +MIRANDA: +My husband, then? + +FERDINAND: +Ay, with a heart as willing +As bondage e'er of freedom: here's my hand. + +MIRANDA: +And mine, with my heart in't; and now farewell +Till half an hour hence. + +FERDINAND: +A thousand thousand! + +PROSPERO: +So glad of this as they I cannot be, +Who are surprised withal; but my rejoicing +At nothing can be more. I'll to my book, +For yet ere supper-time must I perform +Much business appertaining. + +STEPHANO: +Tell not me; when the butt is out, we will drink +water; not a drop before: therefore bear up, and +board 'em. Servant-monster, drink to me. + +TRINCULO: +Servant-monster! the folly of this island! They +say there's but five upon this isle: we are three +of them; if th' other two be brained like us, the +state totters. + +STEPHANO: +Drink, servant-monster, when I bid thee: thy eyes +are almost set in thy head. + +TRINCULO: +Where should they be set else? he were a brave +monster indeed, if they were set in his tail. + +STEPHANO: +My man-monster hath drown'd his tongue in sack: +for my part, the sea cannot drown me; I swam, ere I +could recover the shore, five and thirty leagues off +and on. By this light, thou shalt be my lieutenant, +monster, or my standard. + +TRINCULO: +Your lieutenant, if you list; he's no standard. + +STEPHANO: +We'll not run, Monsieur Monster. + +TRINCULO: +Nor go neither; but you'll lie like dogs and yet say +nothing neither. + +STEPHANO: +Moon-calf, speak once in thy life, if thou beest a +good moon-calf. + +CALIBAN: +How does thy honour? Let me lick thy shoe. +I'll not serve him; he's not valiant. + +TRINCULO: +Thou liest, most ignorant monster: I am in case to +justle a constable. Why, thou deboshed fish thou, +was there ever man a coward that hath drunk so much +sack as I to-day? Wilt thou tell a monstrous lie, +being but half a fish and half a monster? + +CALIBAN: +Lo, how he mocks me! wilt thou let him, my lord? + +TRINCULO: +'Lord' quoth he! That a monster should be such a natural! + +CALIBAN: +Lo, lo, again! bite him to death, I prithee. + +STEPHANO: +Trinculo, keep a good tongue in your head: if you +prove a mutineer,--the next tree! The poor monster's +my subject and he shall not suffer indignity. + +CALIBAN: +I thank my noble lord. Wilt thou be pleased to +hearken once again to the suit I made to thee? + +STEPHANO: +Marry, will I kneel and repeat it; I will stand, +and so shall Trinculo. + +CALIBAN: +As I told thee before, I am subject to a tyrant, a +sorcerer, that by his cunning hath cheated me of the island. + +ARIEL: +Thou liest. + +CALIBAN: +Thou liest, thou jesting monkey, thou: I would my +valiant master would destroy thee! I do not lie. + +STEPHANO: +Trinculo, if you trouble him any more in's tale, by +this hand, I will supplant some of your teeth. + +TRINCULO: +Why, I said nothing. + +STEPHANO: +Mum, then, and no more. Proceed. + +CALIBAN: +I say, by sorcery he got this isle; +From me he got it. if thy greatness will +Revenge it on him,--for I know thou darest, +But this thing dare not,-- + +STEPHANO: +That's most certain. + +CALIBAN: +Thou shalt be lord of it and I'll serve thee. + +STEPHANO: +How now shall this be compassed? +Canst thou bring me to the party? + +CALIBAN: +Yea, yea, my lord: I'll yield him thee asleep, +Where thou mayst knock a nail into his bead. + +ARIEL: +Thou liest; thou canst not. + +CALIBAN: +What a pied ninny's this! Thou scurvy patch! +I do beseech thy greatness, give him blows +And take his bottle from him: when that's gone +He shall drink nought but brine; for I'll not show him +Where the quick freshes are. + +STEPHANO: +Trinculo, run into no further danger: +interrupt the monster one word further, and, +by this hand, I'll turn my mercy out o' doors +and make a stock-fish of thee. + +TRINCULO: +Why, what did I? I did nothing. I'll go farther +off. + +STEPHANO: +Didst thou not say he lied? + +ARIEL: +Thou liest. + +STEPHANO: +Do I so? take thou that. +As you like this, give me the lie another time. + +TRINCULO: +I did not give the lie. Out o' your +wits and bearing too? A pox o' your bottle! +this can sack and drinking do. A murrain on +your monster, and the devil take your fingers! + +CALIBAN: +Ha, ha, ha! + +STEPHANO: +Now, forward with your tale. Prithee, stand farther +off. + +CALIBAN: +Beat him enough: after a little time +I'll beat him too. + +STEPHANO: +Stand farther. Come, proceed. + +CALIBAN: +Why, as I told thee, 'tis a custom with him, +I' th' afternoon to sleep: there thou mayst brain him, +Having first seized his books, or with a log +Batter his skull, or paunch him with a stake, +Or cut his wezand with thy knife. Remember +First to possess his books; for without them +He's but a sot, as I am, nor hath not +One spirit to command: they all do hate him +As rootedly as I. Burn but his books. +He has brave utensils,--for so he calls them-- +Which when he has a house, he'll deck withal +And that most deeply to consider is +The beauty of his daughter; he himself +Calls her a nonpareil: I never saw a woman, +But only Sycorax my dam and she; +But she as far surpasseth Sycorax +As great'st does least. + +STEPHANO: +Is it so brave a lass? + +CALIBAN: +Ay, lord; she will become thy bed, I warrant. +And bring thee forth brave brood. + +STEPHANO: +Monster, I will kill this man: his daughter and I +will be king and queen--save our graces!--and +Trinculo and thyself shall be viceroys. Dost thou +like the plot, Trinculo? + +TRINCULO: +Excellent. + +STEPHANO: +Give me thy hand: I am sorry I beat thee; but, +while thou livest, keep a good tongue in thy head. + +CALIBAN: +Within this half hour will he be asleep: +Wilt thou destroy him then? + +STEPHANO: +Ay, on mine honour. + +ARIEL: +This will I tell my master. + +CALIBAN: +Thou makest me merry; I am full of pleasure: +Let us be jocund: will you troll the catch +You taught me but while-ere? + +STEPHANO: +At thy request, monster, I will do reason, any +reason. Come on, Trinculo, let us sing. +Flout 'em and scout 'em +And scout 'em and flout 'em +Thought is free. + +CALIBAN: +That's not the tune. + +STEPHANO: +What is this same? + +TRINCULO: +This is the tune of our catch, played by the picture +of Nobody. + +STEPHANO: +If thou beest a man, show thyself in thy likeness: +if thou beest a devil, take't as thou list. + +TRINCULO: +O, forgive me my sins! + +STEPHANO: +He that dies pays all debts: I defy thee. Mercy upon us! + +CALIBAN: +Art thou afeard? + +STEPHANO: +No, monster, not I. + +CALIBAN: +Be not afeard; the isle is full of noises, +Sounds and sweet airs, that give delight and hurt not. +Sometimes a thousand twangling instruments +Will hum about mine ears, and sometime voices +That, if I then had waked after long sleep, +Will make me sleep again: and then, in dreaming, +The clouds methought would open and show riches +Ready to drop upon me that, when I waked, +I cried to dream again. + +STEPHANO: +This will prove a brave kingdom to me, where I shall +have my music for nothing. + +CALIBAN: +When Prospero is destroyed. + +STEPHANO: +That shall be by and by: I remember the story. + +TRINCULO: +The sound is going away; let's follow it, and +after do our work. + +STEPHANO: +Lead, monster; we'll follow. I would I could see +this tabourer; he lays it on. + +TRINCULO: +Wilt come? I'll follow, Stephano. + +GONZALO: +By'r lakin, I can go no further, sir; +My old bones ache: here's a maze trod indeed +Through forth-rights and meanders! By your patience, +I needs must rest me. + +ALONSO: +Old lord, I cannot blame thee, +Who am myself attach'd with weariness, +To the dulling of my spirits: sit down, and rest. +Even here I will put off my hope and keep it +No longer for my flatterer: he is drown'd +Whom thus we stray to find, and the sea mocks +Our frustrate search on land. Well, let him go. + +ANTONIO: + +SEBASTIAN: + +ANTONIO: + +SEBASTIAN: + +ALONSO: +What harmony is this? My good friends, hark! + +GONZALO: +Marvellous sweet music! + +ALONSO: +Give us kind keepers, heavens! What were these? + +SEBASTIAN: +A living drollery. Now I will believe +That there are unicorns, that in Arabia +There is one tree, the phoenix' throne, one phoenix +At this hour reigning there. + +ANTONIO: +I'll believe both; +And what does else want credit, come to me, +And I'll be sworn 'tis true: travellers ne'er did +lie, +Though fools at home condemn 'em. + +GONZALO: +If in Naples +I should report this now, would they believe me? +If I should say, I saw such islanders-- +For, certes, these are people of the island-- +Who, though they are of monstrous shape, yet, note, +Their manners are more gentle-kind than of +Our human generation you shall find +Many, nay, almost any. + +PROSPERO: + +ALONSO: +I cannot too much muse +Such shapes, such gesture and such sound, expressing, +Although they want the use of tongue, a kind +Of excellent dumb discourse. + +PROSPERO: + +FRANCISCO: +They vanish'd strangely. + +SEBASTIAN: +No matter, since +They have left their viands behind; for we have stomachs. +Will't please you taste of what is here? + +ALONSO: +Not I. + +GONZALO: +Faith, sir, you need not fear. When we were boys, +Who would believe that there were mountaineers +Dew-lapp'd like bulls, whose throats had hanging at 'em +Wallets of flesh? or that there were such men +Whose heads stood in their breasts? which now we find +Each putter-out of five for one will bring us +Good warrant of. + +ALONSO: +I will stand to and feed, +Although my last: no matter, since I feel +The best is past. Brother, my lord the duke, +Stand to and do as we. + +ARIEL: +You are three men of sin, whom Destiny, +That hath to instrument this lower world +And what is in't, the never-surfeited sea +Hath caused to belch up you; and on this island +Where man doth not inhabit; you 'mongst men +Being most unfit to live. I have made you mad; +And even with such-like valour men hang and drown +Their proper selves. +You fools! I and my fellows +Are ministers of Fate: the elements, +Of whom your swords are temper'd, may as well +Wound the loud winds, or with bemock'd-at stabs +Kill the still-closing waters, as diminish +One dowle that's in my plume: my fellow-ministers +Are like invulnerable. If you could hurt, +Your swords are now too massy for your strengths +And will not be uplifted. But remember-- +For that's my business to you--that you three +From Milan did supplant good Prospero; +Exposed unto the sea, which hath requit it, +Him and his innocent child: for which foul deed +The powers, delaying, not forgetting, have +Incensed the seas and shores, yea, all the creatures, +Against your peace. Thee of thy son, Alonso, +They have bereft; and do pronounce by me: +Lingering perdition, worse than any death +Can be at once, shall step by step attend +You and your ways; whose wraths to guard you from-- +Which here, in this most desolate isle, else falls +Upon your heads--is nothing but heart-sorrow +And a clear life ensuing. + +PROSPERO: +Bravely the figure of this harpy hast thou +Perform'd, my Ariel; a grace it had, devouring: +Of my instruction hast thou nothing bated +In what thou hadst to say: so, with good life +And observation strange, my meaner ministers +Their several kinds have done. My high charms work +And these mine enemies are all knit up +In their distractions; they now are in my power; +And in these fits I leave them, while I visit +Young Ferdinand, whom they suppose is drown'd, +And his and mine loved darling. + +GONZALO: +I' the name of something holy, sir, why stand you +In this strange stare? + +ALONSO: +O, it is monstrous, monstrous: +Methought the billows spoke and told me of it; +The winds did sing it to me, and the thunder, +That deep and dreadful organ-pipe, pronounced +The name of Prosper: it did bass my trespass. +Therefore my son i' the ooze is bedded, and +I'll seek him deeper than e'er plummet sounded +And with him there lie mudded. + +SEBASTIAN: +But one fiend at a time, +I'll fight their legions o'er. + +ANTONIO: +I'll be thy second. + +GONZALO: +All three of them are desperate: their great guilt, +Like poison given to work a great time after, +Now 'gins to bite the spirits. I do beseech you +That are of suppler joints, follow them swiftly +And hinder them from what this ecstasy +May now provoke them to. + +ADRIAN: +Follow, I pray you. + +PROSPERO: +If I have too austerely punish'd you, +Your compensation makes amends, for I +Have given you here a third of mine own life, +Or that for which I live; who once again +I tender to thy hand: all thy vexations +Were but my trials of thy love and thou +Hast strangely stood the test here, afore Heaven, +I ratify this my rich gift. O Ferdinand, +Do not smile at me that I boast her off, +For thou shalt find she will outstrip all praise +And make it halt behind her. + +FERDINAND: +I do believe it +Against an oracle. + +PROSPERO: +Then, as my gift and thine own acquisition +Worthily purchased take my daughter: but +If thou dost break her virgin-knot before +All sanctimonious ceremonies may +With full and holy rite be minister'd, +No sweet aspersion shall the heavens let fall +To make this contract grow: but barren hate, +Sour-eyed disdain and discord shall bestrew +The union of your bed with weeds so loathly +That you shall hate it both: therefore take heed, +As Hymen's lamps shall light you. + +FERDINAND: +As I hope +For quiet days, fair issue and long life, +With such love as 'tis now, the murkiest den, +The most opportune place, the strong'st suggestion. +Our worser genius can, shall never melt +Mine honour into lust, to take away +The edge of that day's celebration +When I shall think: or Phoebus' steeds are founder'd, +Or Night kept chain'd below. + +PROSPERO: +Fairly spoke. +Sit then and talk with her; she is thine own. +What, Ariel! my industrious servant, Ariel! + +ARIEL: +What would my potent master? here I am. + +PROSPERO: +Thou and thy meaner fellows your last service +Did worthily perform; and I must use you +In such another trick. Go bring the rabble, +O'er whom I give thee power, here to this place: +Incite them to quick motion; for I must +Bestow upon the eyes of this young couple +Some vanity of mine art: it is my promise, +And they expect it from me. + +ARIEL: +Presently? + +PROSPERO: +Ay, with a twink. + +ARIEL: +Before you can say 'come' and 'go,' +And breathe twice and cry 'so, so,' +Each one, tripping on his toe, +Will be here with mop and mow. +Do you love me, master? no? + +PROSPERO: +Dearly my delicate Ariel. Do not approach +Till thou dost hear me call. + +ARIEL: +Well, I conceive. + +PROSPERO: +Look thou be true; do not give dalliance +Too much the rein: the strongest oaths are straw +To the fire i' the blood: be more abstemious, +Or else, good night your vow! + +FERDINAND: +I warrant you sir; +The white cold virgin snow upon my heart +Abates the ardour of my liver. + +PROSPERO: +Well. +Now come, my Ariel! bring a corollary, +Rather than want a spirit: appear and pertly! +No tongue! all eyes! be silent. + +IRIS: +Ceres, most bounteous lady, thy rich leas +Of wheat, rye, barley, vetches, oats and pease; +Thy turfy mountains, where live nibbling sheep, +And flat meads thatch'd with stover, them to keep; +Thy banks with pioned and twilled brims, +Which spongy April at thy hest betrims, +To make cold nymphs chaste crowns; and thy broom -groves, +Whose shadow the dismissed bachelor loves, +Being lass-lorn: thy pole-clipt vineyard; +And thy sea-marge, sterile and rocky-hard, +Where thou thyself dost air;--the queen o' the sky, +Whose watery arch and messenger am I, +Bids thee leave these, and with her sovereign grace, +Here on this grass-plot, in this very place, +To come and sport: her peacocks fly amain: +Approach, rich Ceres, her to entertain. + +CERES: +Hail, many-colour'd messenger, that ne'er +Dost disobey the wife of Jupiter; +Who with thy saffron wings upon my flowers +Diffusest honey-drops, refreshing showers, +And with each end of thy blue bow dost crown +My bosky acres and my unshrubb'd down, +Rich scarf to my proud earth; why hath thy queen +Summon'd me hither, to this short-grass'd green? + +IRIS: +A contract of true love to celebrate; +And some donation freely to estate +On the blest lovers. + +CERES: +Tell me, heavenly bow, +If Venus or her son, as thou dost know, +Do now attend the queen? Since they did plot +The means that dusky Dis my daughter got, +Her and her blind boy's scandal'd company +I have forsworn. + +IRIS: +Of her society +Be not afraid: I met her deity +Cutting the clouds towards Paphos and her son +Dove-drawn with her. Here thought they to have done +Some wanton charm upon this man and maid, +Whose vows are, that no bed-right shall be paid +Till Hymen's torch be lighted: but vain; +Mars's hot minion is returned again; +Her waspish-headed son has broke his arrows, +Swears he will shoot no more but play with sparrows +And be a boy right out. + +CERES: +High'st queen of state, +Great Juno, comes; I know her by her gait. + +JUNO: +How does my bounteous sister? Go with me +To bless this twain, that they may prosperous be +And honour'd in their issue. + +JUNO: +Honour, riches, marriage-blessing, +Long continuance, and increasing, +Hourly joys be still upon you! +Juno sings her blessings upon you. + +CERES: +Earth's increase, foison plenty, +Barns and garners never empty, +Vines and clustering bunches growing, +Plants with goodly burthen bowing; +Spring come to you at the farthest +In the very end of harvest! +Scarcity and want shall shun you; +Ceres' blessing so is on you. + +FERDINAND: +This is a most majestic vision, and +Harmoniously charmingly. May I be bold +To think these spirits? + +PROSPERO: +Spirits, which by mine art +I have from their confines call'd to enact +My present fancies. + +FERDINAND: +Let me live here ever; +So rare a wonder'd father and a wife +Makes this place Paradise. + +PROSPERO: +Sweet, now, silence! +Juno and Ceres whisper seriously; +There's something else to do: hush, and be mute, +Or else our spell is marr'd. + +IRIS: +You nymphs, call'd Naiads, of the windring brooks, +With your sedged crowns and ever-harmless looks, +Leave your crisp channels and on this green land +Answer your summons; Juno does command: +Come, temperate nymphs, and help to celebrate +A contract of true love; be not too late. +You sunburnt sicklemen, of August weary, +Come hither from the furrow and be merry: +Make holiday; your rye-straw hats put on +And these fresh nymphs encounter every one +In country footing. + +PROSPERO: + +FERDINAND: +This is strange: your father's in some passion +That works him strongly. + +MIRANDA: +Never till this day +Saw I him touch'd with anger so distemper'd. + +PROSPERO: +You do look, my son, in a moved sort, +As if you were dismay'd: be cheerful, sir. +Our revels now are ended. These our actors, +As I foretold you, were all spirits and +Are melted into air, into thin air: +And, like the baseless fabric of this vision, +The cloud-capp'd towers, the gorgeous palaces, +The solemn temples, the great globe itself, +Ye all which it inherit, shall dissolve +And, like this insubstantial pageant faded, +Leave not a rack behind. We are such stuff +As dreams are made on, and our little life +Is rounded with a sleep. Sir, I am vex'd; +Bear with my weakness; my, brain is troubled: +Be not disturb'd with my infirmity: +If you be pleased, retire into my cell +And there repose: a turn or two I'll walk, +To still my beating mind. + +FERDINAND: +We wish your peace. + +PROSPERO: +Come with a thought I thank thee, Ariel: come. + +ARIEL: +Thy thoughts I cleave to. What's thy pleasure? + +PROSPERO: +Spirit, +We must prepare to meet with Caliban. + +ARIEL: +Ay, my commander: when I presented Ceres, +I thought to have told thee of it, but I fear'd +Lest I might anger thee. + +PROSPERO: +Say again, where didst thou leave these varlets? + +ARIEL: +I told you, sir, they were red-hot with drinking; +So fun of valour that they smote the air +For breathing in their faces; beat the ground +For kissing of their feet; yet always bending +Towards their project. Then I beat my tabour; +At which, like unback'd colts, they prick'd +their ears, +Advanced their eyelids, lifted up their noses +As they smelt music: so I charm'd their ears +That calf-like they my lowing follow'd through +Tooth'd briers, sharp furzes, pricking goss and thorns, +Which entered their frail shins: at last I left them +I' the filthy-mantled pool beyond your cell, +There dancing up to the chins, that the foul lake +O'erstunk their feet. + +PROSPERO: +This was well done, my bird. +Thy shape invisible retain thou still: +The trumpery in my house, go bring it hither, +For stale to catch these thieves. + +ARIEL: +I go, I go. + +PROSPERO: +A devil, a born devil, on whose nature +Nurture can never stick; on whom my pains, +Humanely taken, all, all lost, quite lost; +And as with age his body uglier grows, +So his mind cankers. I will plague them all, +Even to roaring. +Come, hang them on this line. + +CALIBAN: +Pray you, tread softly, that the blind mole may not +Hear a foot fall: we now are near his cell. + +STEPHANO: +Monster, your fairy, which you say is +a harmless fairy, has done little better than +played the Jack with us. + +TRINCULO: +Monster, I do smell all horse-piss; at +which my nose is in great indignation. + +STEPHANO: +So is mine. Do you hear, monster? If I should take +a displeasure against you, look you,-- + +TRINCULO: +Thou wert but a lost monster. + +CALIBAN: +Good my lord, give me thy favour still. +Be patient, for the prize I'll bring thee to +Shall hoodwink this mischance: therefore speak softly. +All's hush'd as midnight yet. + +TRINCULO: +Ay, but to lose our bottles in the pool,-- + +STEPHANO: +There is not only disgrace and dishonour in that, +monster, but an infinite loss. + +TRINCULO: +That's more to me than my wetting: yet this is your +harmless fairy, monster. + +STEPHANO: +I will fetch off my bottle, though I be o'er ears +for my labour. + +CALIBAN: +Prithee, my king, be quiet. Seest thou here, +This is the mouth o' the cell: no noise, and enter. +Do that good mischief which may make this island +Thine own for ever, and I, thy Caliban, +For aye thy foot-licker. + +STEPHANO: +Give me thy hand. I do begin to have bloody thoughts. + +TRINCULO: +O king Stephano! O peer! O worthy Stephano! look +what a wardrobe here is for thee! + +CALIBAN: +Let it alone, thou fool; it is but trash. + +TRINCULO: +O, ho, monster! we know what belongs to a frippery. +O king Stephano! + +STEPHANO: +Put off that gown, Trinculo; by this hand, I'll have +that gown. + +TRINCULO: +Thy grace shall have it. + +CALIBAN: +The dropsy drown this fool I what do you mean +To dote thus on such luggage? Let's alone +And do the murder first: if he awake, +From toe to crown he'll fill our skins with pinches, +Make us strange stuff. + +STEPHANO: +Be you quiet, monster. Mistress line, +is not this my jerkin? Now is the jerkin under +the line: now, jerkin, you are like to lose your +hair and prove a bald jerkin. + +TRINCULO: +Do, do: we steal by line and level, an't like your grace. + +STEPHANO: +I thank thee for that jest; here's a garment for't: +wit shall not go unrewarded while I am king of this +country. 'Steal by line and level' is an excellent +pass of pate; there's another garment for't. + +TRINCULO: +Monster, come, put some lime upon your fingers, and +away with the rest. + +CALIBAN: +I will have none on't: we shall lose our time, +And all be turn'd to barnacles, or to apes +With foreheads villanous low. + +STEPHANO: +Monster, lay-to your fingers: help to bear this +away where my hogshead of wine is, or I'll turn you +out of my kingdom: go to, carry this. + +TRINCULO: +And this. + +STEPHANO: +Ay, and this. + +PROSPERO: +Hey, Mountain, hey! + +ARIEL: +Silver I there it goes, Silver! + +PROSPERO: +Fury, Fury! there, Tyrant, there! hark! hark! +Go charge my goblins that they grind their joints +With dry convulsions, shorten up their sinews +With aged cramps, and more pinch-spotted make them +Than pard or cat o' mountain. + +ARIEL: +Hark, they roar! + +PROSPERO: +Let them be hunted soundly. At this hour +Lie at my mercy all mine enemies: +Shortly shall all my labours end, and thou +Shalt have the air at freedom: for a little +Follow, and do me service. + +PROSPERO: +Now does my project gather to a head: +My charms crack not; my spirits obey; and time +Goes upright with his carriage. How's the day? + +ARIEL: +On the sixth hour; at which time, my lord, +You said our work should cease. + +PROSPERO: +I did say so, +When first I raised the tempest. Say, my spirit, +How fares the king and's followers? + +ARIEL: +Confined together +In the same fashion as you gave in charge, +Just as you left them; all prisoners, sir, +In the line-grove which weather-fends your cell; +They cannot budge till your release. The king, +His brother and yours, abide all three distracted +And the remainder mourning over them, +Brimful of sorrow and dismay; but chiefly +Him that you term'd, sir, 'The good old lord Gonzalo;' +His tears run down his beard, like winter's drops +From eaves of reeds. Your charm so strongly works 'em +That if you now beheld them, your affections +Would become tender. + +PROSPERO: +Dost thou think so, spirit? + +ARIEL: +Mine would, sir, were I human. + +PROSPERO: +And mine shall. +Hast thou, which art but air, a touch, a feeling +Of their afflictions, and shall not myself, +One of their kind, that relish all as sharply, +Passion as they, be kindlier moved than thou art? +Though with their high wrongs I am struck to the quick, +Yet with my nobler reason 'gaitist my fury +Do I take part: the rarer action is +In virtue than in vengeance: they being penitent, +The sole drift of my purpose doth extend +Not a frown further. Go release them, Ariel: +My charms I'll break, their senses I'll restore, +And they shall be themselves. + +ARIEL: +I'll fetch them, sir. + +PROSPERO: +Ye elves of hills, brooks, standing lakes and groves, +And ye that on the sands with printless foot +Do chase the ebbing Neptune and do fly him +When he comes back; you demi-puppets that +By moonshine do the green sour ringlets make, +Whereof the ewe not bites, and you whose pastime +Is to make midnight mushrooms, that rejoice +To hear the solemn curfew; by whose aid, +Weak masters though ye be, I have bedimm'd +The noontide sun, call'd forth the mutinous winds, +And 'twixt the green sea and the azured vault +Set roaring war: to the dread rattling thunder +Have I given fire and rifted Jove's stout oak +With his own bolt; the strong-based promontory +Have I made shake and by the spurs pluck'd up +The pine and cedar: graves at my command +Have waked their sleepers, oped, and let 'em forth +By my so potent art. But this rough magic +I here abjure, and, when I have required +Some heavenly music, which even now I do, +To work mine end upon their senses that +This airy charm is for, I'll break my staff, +Bury it certain fathoms in the earth, +And deeper than did ever plummet sound +I'll drown my book. +A solemn air and the best comforter +To an unsettled fancy cure thy brains, +Now useless, boil'd within thy skull! There stand, +For you are spell-stopp'd. +Holy Gonzalo, honourable man, +Mine eyes, even sociable to the show of thine, +Fall fellowly drops. The charm dissolves apace, +And as the morning steals upon the night, +Melting the darkness, so their rising senses +Begin to chase the ignorant fumes that mantle +Their clearer reason. O good Gonzalo, +My true preserver, and a loyal sir +To him you follow'st! I will pay thy graces +Home both in word and deed. Most cruelly +Didst thou, Alonso, use me and my daughter: +Thy brother was a furtherer in the act. +Thou art pinch'd fort now, Sebastian. Flesh and blood, +You, brother mine, that entertain'd ambition, +Expell'd remorse and nature; who, with Sebastian, +Whose inward pinches therefore are most strong, +Would here have kill'd your king; I do forgive thee, +Unnatural though thou art. Their understanding +Begins to swell, and the approaching tide +Will shortly fill the reasonable shore +That now lies foul and muddy. Not one of them +That yet looks on me, or would know me Ariel, +Fetch me the hat and rapier in my cell: +I will discase me, and myself present +As I was sometime Milan: quickly, spirit; +Thou shalt ere long be free. +Where the bee sucks. there suck I: +In a cowslip's bell I lie; +There I couch when owls do cry. +On the bat's back I do fly +After summer merrily. +Merrily, merrily shall I live now +Under the blossom that hangs on the bough. + +PROSPERO: +Why, that's my dainty Ariel! I shall miss thee: +But yet thou shalt have freedom: so, so, so. +To the king's ship, invisible as thou art: +There shalt thou find the mariners asleep +Under the hatches; the master and the boatswain +Being awake, enforce them to this place, +And presently, I prithee. + +ARIEL: +I drink the air before me, and return +Or ere your pulse twice beat. + +GONZALO: +All torment, trouble, wonder and amazement +Inhabits here: some heavenly power guide us +Out of this fearful country! + +PROSPERO: +Behold, sir king, +The wronged Duke of Milan, Prospero: +For more assurance that a living prince +Does now speak to thee, I embrace thy body; +And to thee and thy company I bid +A hearty welcome. + +ALONSO: +Whether thou best he or no, +Or some enchanted trifle to abuse me, +As late I have been, I not know: thy pulse +Beats as of flesh and blood; and, since I saw thee, +The affliction of my mind amends, with which, +I fear, a madness held me: this must crave, +An if this be at all, a most strange story. +Thy dukedom I resign and do entreat +Thou pardon me my wrongs. But how should Prospero +Be living and be here? + +PROSPERO: +First, noble friend, +Let me embrace thine age, whose honour cannot +Be measured or confined. + +GONZALO: +Whether this be +Or be not, I'll not swear. + +PROSPERO: +You do yet taste +Some subtilties o' the isle, that will not let you +Believe things certain. Welcome, my friends all! +But you, my brace of lords, were I so minded, +I here could pluck his highness' frown upon you +And justify you traitors: at this time +I will tell no tales. + +SEBASTIAN: + +PROSPERO: +No. +For you, most wicked sir, whom to call brother +Would even infect my mouth, I do forgive +Thy rankest fault; all of them; and require +My dukedom of thee, which perforce, I know, +Thou must restore. + +ALONSO: +If thou be'st Prospero, +Give us particulars of thy preservation; +How thou hast met us here, who three hours since +Were wreck'd upon this shore; where I have lost-- +How sharp the point of this remembrance is!-- +My dear son Ferdinand. + +PROSPERO: +I am woe for't, sir. + +ALONSO: +Irreparable is the loss, and patience +Says it is past her cure. + +PROSPERO: +I rather think +You have not sought her help, of whose soft grace +For the like loss I have her sovereign aid +And rest myself content. + +ALONSO: +You the like loss! + +PROSPERO: +As great to me as late; and, supportable +To make the dear loss, have I means much weaker +Than you may call to comfort you, for I +Have lost my daughter. + +ALONSO: +A daughter? +O heavens, that they were living both in Naples, +The king and queen there! that they were, I wish +Myself were mudded in that oozy bed +Where my son lies. When did you lose your daughter? + +PROSPERO: +In this last tempest. I perceive these lords +At this encounter do so much admire +That they devour their reason and scarce think +Their eyes do offices of truth, their words +Are natural breath: but, howsoe'er you have +Been justled from your senses, know for certain +That I am Prospero and that very duke +Which was thrust forth of Milan, who most strangely +Upon this shore, where you were wreck'd, was landed, +To be the lord on't. No more yet of this; +For 'tis a chronicle of day by day, +Not a relation for a breakfast nor +Befitting this first meeting. Welcome, sir; +This cell's my court: here have I few attendants +And subjects none abroad: pray you, look in. +My dukedom since you have given me again, +I will requite you with as good a thing; +At least bring forth a wonder, to content ye +As much as me my dukedom. + +MIRANDA: +Sweet lord, you play me false. + +FERDINAND: +No, my dear'st love, +I would not for the world. + +MIRANDA: +Yes, for a score of kingdoms you should wrangle, +And I would call it, fair play. + +ALONSO: +If this prove +A vision of the Island, one dear son +Shall I twice lose. + +SEBASTIAN: +A most high miracle! + +FERDINAND: +Though the seas threaten, they are merciful; +I have cursed them without cause. + +ALONSO: +Now all the blessings +Of a glad father compass thee about! +Arise, and say how thou camest here. + +MIRANDA: +O, wonder! +How many goodly creatures are there here! +How beauteous mankind is! O brave new world, +That has such people in't! + +PROSPERO: +'Tis new to thee. + +ALONSO: +What is this maid with whom thou wast at play? +Your eld'st acquaintance cannot be three hours: +Is she the goddess that hath sever'd us, +And brought us thus together? + +FERDINAND: +Sir, she is mortal; +But by immortal Providence she's mine: +I chose her when I could not ask my father +For his advice, nor thought I had one. She +Is daughter to this famous Duke of Milan, +Of whom so often I have heard renown, +But never saw before; of whom I have +Received a second life; and second father +This lady makes him to me. + +ALONSO: +I am hers: +But, O, how oddly will it sound that I +Must ask my child forgiveness! + +PROSPERO: +There, sir, stop: +Let us not burthen our remembrance with +A heaviness that's gone. + +GONZALO: +I have inly wept, +Or should have spoke ere this. Look down, you god, +And on this couple drop a blessed crown! +For it is you that have chalk'd forth the way +Which brought us hither. + +ALONSO: +I say, Amen, Gonzalo! + +GONZALO: +Was Milan thrust from Milan, that his issue +Should become kings of Naples? O, rejoice +Beyond a common joy, and set it down +With gold on lasting pillars: In one voyage +Did Claribel her husband find at Tunis, +And Ferdinand, her brother, found a wife +Where he himself was lost, Prospero his dukedom +In a poor isle and all of us ourselves +When no man was his own. + +ALONSO: + +GONZALO: +Be it so! Amen! +O, look, sir, look, sir! here is more of us: +I prophesied, if a gallows were on land, +This fellow could not drown. Now, blasphemy, +That swear'st grace o'erboard, not an oath on shore? +Hast thou no mouth by land? What is the news? + +Boatswain: +The best news is, that we have safely found +Our king and company; the next, our ship-- +Which, but three glasses since, we gave out split-- +Is tight and yare and bravely rigg'd as when +We first put out to sea. + +ARIEL: + +PROSPERO: + +ALONSO: +These are not natural events; they strengthen +From strange to stranger. Say, how came you hither? + +Boatswain: +If I did think, sir, I were well awake, +I'ld strive to tell you. We were dead of sleep, +And--how we know not--all clapp'd under hatches; +Where but even now with strange and several noises +Of roaring, shrieking, howling, jingling chains, +And more diversity of sounds, all horrible, +We were awaked; straightway, at liberty; +Where we, in all her trim, freshly beheld +Our royal, good and gallant ship, our master +Capering to eye her: on a trice, so please you, +Even in a dream, were we divided from them +And were brought moping hither. + +ARIEL: + +PROSPERO: + +ALONSO: +This is as strange a maze as e'er men trod +And there is in this business more than nature +Was ever conduct of: some oracle +Must rectify our knowledge. + +PROSPERO: +Sir, my liege, +Do not infest your mind with beating on +The strangeness of this business; at pick'd leisure +Which shall be shortly, single I'll resolve you, +Which to you shall seem probable, of every +These happen'd accidents; till when, be cheerful +And think of each thing well. +Come hither, spirit: +Set Caliban and his companions free; +Untie the spell. +How fares my gracious sir? +There are yet missing of your company +Some few odd lads that you remember not. + +STEPHANO: +Every man shift for all the rest, and +let no man take care for himself; for all is +but fortune. Coragio, bully-monster, coragio! + +TRINCULO: +If these be true spies which I wear in my head, +here's a goodly sight. + +CALIBAN: +O Setebos, these be brave spirits indeed! +How fine my master is! I am afraid +He will chastise me. + +SEBASTIAN: +Ha, ha! +What things are these, my lord Antonio? +Will money buy 'em? + +ANTONIO: +Very like; one of them +Is a plain fish, and, no doubt, marketable. + +PROSPERO: +Mark but the badges of these men, my lords, +Then say if they be true. This mis-shapen knave, +His mother was a witch, and one so strong +That could control the moon, make flows and ebbs, +And deal in her command without her power. +These three have robb'd me; and this demi-devil-- +For he's a bastard one--had plotted with them +To take my life. Two of these fellows you +Must know and own; this thing of darkness! +Acknowledge mine. + +CALIBAN: +I shall be pinch'd to death. + +ALONSO: +Is not this Stephano, my drunken butler? + +SEBASTIAN: +He is drunk now: where had he wine? + +ALONSO: +And Trinculo is reeling ripe: where should they +Find this grand liquor that hath gilded 'em? +How camest thou in this pickle? + +TRINCULO: +I have been in such a pickle since I +saw you last that, I fear me, will never out of +my bones: I shall not fear fly-blowing. + +SEBASTIAN: +Why, how now, Stephano! + +STEPHANO: +O, touch me not; I am not Stephano, but a cramp. + +PROSPERO: +You'ld be king o' the isle, sirrah? + +STEPHANO: +I should have been a sore one then. + +ALONSO: +This is a strange thing as e'er I look'd on. + +PROSPERO: +He is as disproportion'd in his manners +As in his shape. Go, sirrah, to my cell; +Take with you your companions; as you look +To have my pardon, trim it handsomely. + +CALIBAN: +Ay, that I will; and I'll be wise hereafter +And seek for grace. What a thrice-double ass +Was I, to take this drunkard for a god +And worship this dull fool! + +PROSPERO: +Go to; away! + +ALONSO: +Hence, and bestow your luggage where you found it. + +SEBASTIAN: +Or stole it, rather. + +PROSPERO: +Sir, I invite your highness and your train +To my poor cell, where you shall take your rest +For this one night; which, part of it, I'll waste +With such discourse as, I not doubt, shall make it +Go quick away; the story of my life +And the particular accidents gone by +Since I came to this isle: and in the morn +I'll bring you to your ship and so to Naples, +Where I have hope to see the nuptial +Of these our dear-beloved solemnized; +And thence retire me to my Milan, where +Every third thought shall be my grave. + +ALONSO: +I long +To hear the story of your life, which must +Take the ear strangely. + +PROSPERO: +I'll deliver all; +And promise you calm seas, auspicious gales +And sail so expeditious that shall catch +Your royal fleet far off. +My Ariel, chick, +That is thy charge: then to the elements +Be free, and fare thou well! Please you, draw near. + +[PROSPERO]: +Now my charms are all o'erthrown, +And what strength I have's mine own, +Which is most faint: now, 'tis true, +I must be here confined by you, +Or sent to Naples. Let me not, +Since I have my dukedom got +And pardon'd the deceiver, dwell +In this bare island by your spell; +But release me from my bands +With the help of your good hands: +Gentle breath of yours my sails +Must fill, or else my project fails, +Which was to please. Now I want +Spirits to enforce, art to enchant, +And my ending is despair, +Unless I be relieved by prayer, +Which pierces so that it assaults +Mercy itself and frees all faults. +As you from crimes would pardon'd be, +Let your indulgence set me free. + +LEONATO: +I learn in this letter that Don Peter of Arragon +comes this night to Messina. + +Messenger: +He is very near by this: he was not three leagues off +when I left him. + +LEONATO: +How many gentlemen have you lost in this action? + +Messenger: +But few of any sort, and none of name. + +LEONATO: +A victory is twice itself when the achiever brings +home full numbers. I find here that Don Peter hath +bestowed much honour on a young Florentine called Claudio. + +Messenger: +Much deserved on his part and equally remembered by +Don Pedro: he hath borne himself beyond the +promise of his age, doing, in the figure of a lamb, +the feats of a lion: he hath indeed better +bettered expectation than you must expect of me to +tell you how. + +LEONATO: +He hath an uncle here in Messina will be very much +glad of it. + +Messenger: +I have already delivered him letters, and there +appears much joy in him; even so much that joy could +not show itself modest enough without a badge of +bitterness. + +LEONATO: +Did he break out into tears? + +Messenger: +In great measure. + +LEONATO: +A kind overflow of kindness: there are no faces +truer than those that are so washed. How much +better is it to weep at joy than to joy at weeping! + +BEATRICE: +I pray you, is Signior Mountanto returned from the +wars or no? + +Messenger: +I know none of that name, lady: there was none such +in the army of any sort. + +LEONATO: +What is he that you ask for, niece? + +HERO: +My cousin means Signior Benedick of Padua. + +Messenger: +O, he's returned; and as pleasant as ever he was. + +BEATRICE: +He set up his bills here in Messina and challenged +Cupid at the flight; and my uncle's fool, reading +the challenge, subscribed for Cupid, and challenged +him at the bird-bolt. I pray you, how many hath he +killed and eaten in these wars? But how many hath +he killed? for indeed I promised to eat all of his killing. + +LEONATO: +Faith, niece, you tax Signior Benedick too much; +but he'll be meet with you, I doubt it not. + +Messenger: +He hath done good service, lady, in these wars. + +BEATRICE: +You had musty victual, and he hath holp to eat it: +he is a very valiant trencherman; he hath an +excellent stomach. + +Messenger: +And a good soldier too, lady. + +BEATRICE: +And a good soldier to a lady: but what is he to a lord? + +Messenger: +A lord to a lord, a man to a man; stuffed with all +honourable virtues. + +BEATRICE: +It is so, indeed; he is no less than a stuffed man: +but for the stuffing,--well, we are all mortal. + +LEONATO: +You must not, sir, mistake my niece. There is a +kind of merry war betwixt Signior Benedick and her: +they never meet but there's a skirmish of wit +between them. + +BEATRICE: +Alas! he gets nothing by that. In our last +conflict four of his five wits went halting off, and +now is the whole man governed with one: so that if +he have wit enough to keep himself warm, let him +bear it for a difference between himself and his +horse; for it is all the wealth that he hath left, +to be known a reasonable creature. Who is his +companion now? He hath every month a new sworn brother. + +Messenger: +Is't possible? + +BEATRICE: +Very easily possible: he wears his faith but as +the fashion of his hat; it ever changes with the +next block. + +Messenger: +I see, lady, the gentleman is not in your books. + +BEATRICE: +No; an he were, I would burn my study. But, I pray +you, who is his companion? Is there no young +squarer now that will make a voyage with him to the devil? + +Messenger: +He is most in the company of the right noble Claudio. + +BEATRICE: +O Lord, he will hang upon him like a disease: he +is sooner caught than the pestilence, and the taker +runs presently mad. God help the noble Claudio! if +he have caught the Benedick, it will cost him a +thousand pound ere a' be cured. + +Messenger: +I will hold friends with you, lady. + +BEATRICE: +Do, good friend. + +LEONATO: +You will never run mad, niece. + +BEATRICE: +No, not till a hot January. + +Messenger: +Don Pedro is approached. + +DON PEDRO: +Good Signior Leonato, you are come to meet your +trouble: the fashion of the world is to avoid +cost, and you encounter it. + +LEONATO: +Never came trouble to my house in the likeness of +your grace: for trouble being gone, comfort should +remain; but when you depart from me, sorrow abides +and happiness takes his leave. + +DON PEDRO: +You embrace your charge too willingly. I think this +is your daughter. + +LEONATO: +Her mother hath many times told me so. + +BENEDICK: +Were you in doubt, sir, that you asked her? + +LEONATO: +Signior Benedick, no; for then were you a child. + +DON PEDRO: +You have it full, Benedick: we may guess by this +what you are, being a man. Truly, the lady fathers +herself. Be happy, lady; for you are like an +honourable father. + +BENEDICK: +If Signior Leonato be her father, she would not +have his head on her shoulders for all Messina, as +like him as she is. + +BEATRICE: +I wonder that you will still be talking, Signior +Benedick: nobody marks you. + +BENEDICK: +What, my dear Lady Disdain! are you yet living? + +BEATRICE: +Is it possible disdain should die while she hath +such meet food to feed it as Signior Benedick? +Courtesy itself must convert to disdain, if you come +in her presence. + +BENEDICK: +Then is courtesy a turncoat. But it is certain I +am loved of all ladies, only you excepted: and I +would I could find in my heart that I had not a hard +heart; for, truly, I love none. + +BEATRICE: +A dear happiness to women: they would else have +been troubled with a pernicious suitor. I thank God +and my cold blood, I am of your humour for that: I +had rather hear my dog bark at a crow than a man +swear he loves me. + +BENEDICK: +God keep your ladyship still in that mind! so some +gentleman or other shall 'scape a predestinate +scratched face. + +BEATRICE: +Scratching could not make it worse, an 'twere such +a face as yours were. + +BENEDICK: +Well, you are a rare parrot-teacher. + +BEATRICE: +A bird of my tongue is better than a beast of yours. + +BENEDICK: +I would my horse had the speed of your tongue, and +so good a continuer. But keep your way, i' God's +name; I have done. + +BEATRICE: +You always end with a jade's trick: I know you of old. + +DON PEDRO: +That is the sum of all, Leonato. Signior Claudio +and Signior Benedick, my dear friend Leonato hath +invited you all. I tell him we shall stay here at +the least a month; and he heartily prays some +occasion may detain us longer. I dare swear he is no +hypocrite, but prays from his heart. + +LEONATO: +If you swear, my lord, you shall not be forsworn. +Let me bid you welcome, my lord: being reconciled to +the prince your brother, I owe you all duty. + +DON JOHN: +I thank you: I am not of many words, but I thank +you. + +LEONATO: +Please it your grace lead on? + +DON PEDRO: +Your hand, Leonato; we will go together. + +CLAUDIO: +Benedick, didst thou note the daughter of Signior Leonato? + +BENEDICK: +I noted her not; but I looked on her. + +CLAUDIO: +Is she not a modest young lady? + +BENEDICK: +Do you question me, as an honest man should do, for +my simple true judgment; or would you have me speak +after my custom, as being a professed tyrant to their sex? + +CLAUDIO: +No; I pray thee speak in sober judgment. + +BENEDICK: +Why, i' faith, methinks she's too low for a high +praise, too brown for a fair praise and too little +for a great praise: only this commendation I can +afford her, that were she other than she is, she +were unhandsome; and being no other but as she is, I +do not like her. + +CLAUDIO: +Thou thinkest I am in sport: I pray thee tell me +truly how thou likest her. + +BENEDICK: +Would you buy her, that you inquire after her? + +CLAUDIO: +Can the world buy such a jewel? + +BENEDICK: +Yea, and a case to put it into. But speak you this +with a sad brow? or do you play the flouting Jack, +to tell us Cupid is a good hare-finder and Vulcan a +rare carpenter? Come, in what key shall a man take +you, to go in the song? + +CLAUDIO: +In mine eye she is the sweetest lady that ever I +looked on. + +BENEDICK: +I can see yet without spectacles and I see no such +matter: there's her cousin, an she were not +possessed with a fury, exceeds her as much in beauty +as the first of May doth the last of December. But I +hope you have no intent to turn husband, have you? + +CLAUDIO: +I would scarce trust myself, though I had sworn the +contrary, if Hero would be my wife. + +BENEDICK: +Is't come to this? In faith, hath not the world +one man but he will wear his cap with suspicion? +Shall I never see a bachelor of three-score again? +Go to, i' faith; an thou wilt needs thrust thy neck +into a yoke, wear the print of it and sigh away +Sundays. Look Don Pedro is returned to seek you. + +DON PEDRO: +What secret hath held you here, that you followed +not to Leonato's? + +BENEDICK: +I would your grace would constrain me to tell. + +DON PEDRO: +I charge thee on thy allegiance. + +BENEDICK: +You hear, Count Claudio: I can be secret as a dumb +man; I would have you think so; but, on my +allegiance, mark you this, on my allegiance. He is +in love. With who? now that is your grace's part. +Mark how short his answer is;--With Hero, Leonato's +short daughter. + +CLAUDIO: +If this were so, so were it uttered. + +BENEDICK: +Like the old tale, my lord: 'it is not so, nor +'twas not so, but, indeed, God forbid it should be +so.' + +CLAUDIO: +If my passion change not shortly, God forbid it +should be otherwise. + +DON PEDRO: +Amen, if you love her; for the lady is very well worthy. + +CLAUDIO: +You speak this to fetch me in, my lord. + +DON PEDRO: +By my troth, I speak my thought. + +CLAUDIO: +And, in faith, my lord, I spoke mine. + +BENEDICK: +And, by my two faiths and troths, my lord, I spoke mine. + +CLAUDIO: +That I love her, I feel. + +DON PEDRO: +That she is worthy, I know. + +BENEDICK: +That I neither feel how she should be loved nor +know how she should be worthy, is the opinion that +fire cannot melt out of me: I will die in it at the stake. + +DON PEDRO: +Thou wast ever an obstinate heretic in the despite +of beauty. + +CLAUDIO: +And never could maintain his part but in the force +of his will. + +BENEDICK: +That a woman conceived me, I thank her; that she +brought me up, I likewise give her most humble +thanks: but that I will have a recheat winded in my +forehead, or hang my bugle in an invisible baldrick, +all women shall pardon me. Because I will not do +them the wrong to mistrust any, I will do myself the +right to trust none; and the fine is, for the which +I may go the finer, I will live a bachelor. + +DON PEDRO: +I shall see thee, ere I die, look pale with love. + +BENEDICK: +With anger, with sickness, or with hunger, my lord, +not with love: prove that ever I lose more blood +with love than I will get again with drinking, pick +out mine eyes with a ballad-maker's pen and hang me +up at the door of a brothel-house for the sign of +blind Cupid. + +DON PEDRO: +Well, if ever thou dost fall from this faith, thou +wilt prove a notable argument. + +BENEDICK: +If I do, hang me in a bottle like a cat and shoot +at me; and he that hits me, let him be clapped on +the shoulder, and called Adam. + +DON PEDRO: +Well, as time shall try: 'In time the savage bull +doth bear the yoke.' + +BENEDICK: +The savage bull may; but if ever the sensible +Benedick bear it, pluck off the bull's horns and set +them in my forehead: and let me be vilely painted, +and in such great letters as they write 'Here is +good horse to hire,' let them signify under my sign +'Here you may see Benedick the married man.' + +CLAUDIO: +If this should ever happen, thou wouldst be horn-mad. + +DON PEDRO: +Nay, if Cupid have not spent all his quiver in +Venice, thou wilt quake for this shortly. + +BENEDICK: +I look for an earthquake too, then. + +DON PEDRO: +Well, you temporize with the hours. In the +meantime, good Signior Benedick, repair to +Leonato's: commend me to him and tell him I will +not fail him at supper; for indeed he hath made +great preparation. + +BENEDICK: +I have almost matter enough in me for such an +embassage; and so I commit you-- + +CLAUDIO: +To the tuition of God: From my house, if I had it,-- + +DON PEDRO: +The sixth of July: Your loving friend, Benedick. + +BENEDICK: +Nay, mock not, mock not. The body of your +discourse is sometime guarded with fragments, and +the guards are but slightly basted on neither: ere +you flout old ends any further, examine your +conscience: and so I leave you. + +CLAUDIO: +My liege, your highness now may do me good. + +DON PEDRO: +My love is thine to teach: teach it but how, +And thou shalt see how apt it is to learn +Any hard lesson that may do thee good. + +CLAUDIO: +Hath Leonato any son, my lord? + +DON PEDRO: +No child but Hero; she's his only heir. +Dost thou affect her, Claudio? + +CLAUDIO: +O, my lord, +When you went onward on this ended action, +I look'd upon her with a soldier's eye, +That liked, but had a rougher task in hand +Than to drive liking to the name of love: +But now I am return'd and that war-thoughts +Have left their places vacant, in their rooms +Come thronging soft and delicate desires, +All prompting me how fair young Hero is, +Saying, I liked her ere I went to wars. + +DON PEDRO: +Thou wilt be like a lover presently +And tire the hearer with a book of words. +If thou dost love fair Hero, cherish it, +And I will break with her and with her father, +And thou shalt have her. Was't not to this end +That thou began'st to twist so fine a story? + +CLAUDIO: +How sweetly you do minister to love, +That know love's grief by his complexion! +But lest my liking might too sudden seem, +I would have salved it with a longer treatise. + +DON PEDRO: +What need the bridge much broader than the flood? +The fairest grant is the necessity. +Look, what will serve is fit: 'tis once, thou lovest, +And I will fit thee with the remedy. +I know we shall have revelling to-night: +I will assume thy part in some disguise +And tell fair Hero I am Claudio, +And in her bosom I'll unclasp my heart +And take her hearing prisoner with the force +And strong encounter of my amorous tale: +Then after to her father will I break; +And the conclusion is, she shall be thine. +In practise let us put it presently. + +LEONATO: +How now, brother! Where is my cousin, your son? +hath he provided this music? + +ANTONIO: +He is very busy about it. But, brother, I can tell +you strange news that you yet dreamt not of. + +LEONATO: +Are they good? + +ANTONIO: +As the event stamps them: but they have a good +cover; they show well outward. The prince and Count +Claudio, walking in a thick-pleached alley in mine +orchard, were thus much overheard by a man of mine: +the prince discovered to Claudio that he loved my +niece your daughter and meant to acknowledge it +this night in a dance: and if he found her +accordant, he meant to take the present time by the +top and instantly break with you of it. + +LEONATO: +Hath the fellow any wit that told you this? + +ANTONIO: +A good sharp fellow: I will send for him; and +question him yourself. + +LEONATO: +No, no; we will hold it as a dream till it appear +itself: but I will acquaint my daughter withal, +that she may be the better prepared for an answer, +if peradventure this be true. Go you and tell her of it. +Cousins, you know what you have to do. O, I cry you +mercy, friend; go you with me, and I will use your +skill. Good cousin, have a care this busy time. + +CONRADE: +What the good-year, my lord! why are you thus out +of measure sad? + +DON JOHN: +There is no measure in the occasion that breeds; +therefore the sadness is without limit. + +CONRADE: +You should hear reason. + +DON JOHN: +And when I have heard it, what blessing brings it? + +CONRADE: +If not a present remedy, at least a patient +sufferance. + +DON JOHN: +I wonder that thou, being, as thou sayest thou art, +born under Saturn, goest about to apply a moral +medicine to a mortifying mischief. I cannot hide +what I am: I must be sad when I have cause and smile +at no man's jests, eat when I have stomach and wait +for no man's leisure, sleep when I am drowsy and +tend on no man's business, laugh when I am merry and +claw no man in his humour. + +CONRADE: +Yea, but you must not make the full show of this +till you may do it without controlment. You have of +late stood out against your brother, and he hath +ta'en you newly into his grace; where it is +impossible you should take true root but by the +fair weather that you make yourself: it is needful +that you frame the season for your own harvest. + +DON JOHN: +I had rather be a canker in a hedge than a rose in +his grace, and it better fits my blood to be +disdained of all than to fashion a carriage to rob +love from any: in this, though I cannot be said to +be a flattering honest man, it must not be denied +but I am a plain-dealing villain. I am trusted with +a muzzle and enfranchised with a clog; therefore I +have decreed not to sing in my cage. If I had my +mouth, I would bite; if I had my liberty, I would do +my liking: in the meantime let me be that I am and +seek not to alter me. + +CONRADE: +Can you make no use of your discontent? + +DON JOHN: +I make all use of it, for I use it only. +Who comes here? +What news, Borachio? + +BORACHIO: +I came yonder from a great supper: the prince your +brother is royally entertained by Leonato: and I +can give you intelligence of an intended marriage. + +DON JOHN: +Will it serve for any model to build mischief on? +What is he for a fool that betroths himself to +unquietness? + +BORACHIO: +Marry, it is your brother's right hand. + +DON JOHN: +Who? the most exquisite Claudio? + +BORACHIO: +Even he. + +DON JOHN: +A proper squire! And who, and who? which way looks +he? + +BORACHIO: +Marry, on Hero, the daughter and heir of Leonato. + +DON JOHN: +A very forward March-chick! How came you to this? + +BORACHIO: +Being entertained for a perfumer, as I was smoking a +musty room, comes me the prince and Claudio, hand +in hand in sad conference: I whipt me behind the +arras; and there heard it agreed upon that the +prince should woo Hero for himself, and having +obtained her, give her to Count Claudio. + +DON JOHN: +Come, come, let us thither: this may prove food to +my displeasure. That young start-up hath all the +glory of my overthrow: if I can cross him any way, I +bless myself every way. You are both sure, and will assist me? + +CONRADE: +To the death, my lord. + +DON JOHN: +Let us to the great supper: their cheer is the +greater that I am subdued. Would the cook were of +my mind! Shall we go prove what's to be done? + +BORACHIO: +We'll wait upon your lordship. + +LEONATO: +Was not Count John here at supper? + +ANTONIO: +I saw him not. + +BEATRICE: +How tartly that gentleman looks! I never can see +him but I am heart-burned an hour after. + +HERO: +He is of a very melancholy disposition. + +BEATRICE: +He were an excellent man that were made just in the +midway between him and Benedick: the one is too +like an image and says nothing, and the other too +like my lady's eldest son, evermore tattling. + +LEONATO: +Then half Signior Benedick's tongue in Count John's +mouth, and half Count John's melancholy in Signior +Benedick's face,-- + +BEATRICE: +With a good leg and a good foot, uncle, and money +enough in his purse, such a man would win any woman +in the world, if a' could get her good-will. + +LEONATO: +By my troth, niece, thou wilt never get thee a +husband, if thou be so shrewd of thy tongue. + +ANTONIO: +In faith, she's too curst. + +BEATRICE: +Too curst is more than curst: I shall lessen God's +sending that way; for it is said, 'God sends a curst +cow short horns;' but to a cow too curst he sends none. + +LEONATO: +So, by being too curst, God will send you no horns. + +BEATRICE: +Just, if he send me no husband; for the which +blessing I am at him upon my knees every morning and +evening. Lord, I could not endure a husband with a +beard on his face: I had rather lie in the woollen. + +LEONATO: +You may light on a husband that hath no beard. + +BEATRICE: +What should I do with him? dress him in my apparel +and make him my waiting-gentlewoman? He that hath a +beard is more than a youth, and he that hath no +beard is less than a man: and he that is more than +a youth is not for me, and he that is less than a +man, I am not for him: therefore, I will even take +sixpence in earnest of the bear-ward, and lead his +apes into hell. + +LEONATO: +Well, then, go you into hell? + +BEATRICE: +No, but to the gate; and there will the devil meet +me, like an old cuckold, with horns on his head, and +say 'Get you to heaven, Beatrice, get you to +heaven; here's no place for you maids:' so deliver +I up my apes, and away to Saint Peter for the +heavens; he shows me where the bachelors sit, and +there live we as merry as the day is long. + +ANTONIO: + +BEATRICE: +Yes, faith; it is my cousin's duty to make curtsy +and say 'Father, as it please you.' But yet for all +that, cousin, let him be a handsome fellow, or else +make another curtsy and say 'Father, as it please +me.' + +LEONATO: +Well, niece, I hope to see you one day fitted with a husband. + +BEATRICE: +Not till God make men of some other metal than +earth. Would it not grieve a woman to be +overmastered with a pierce of valiant dust? to make +an account of her life to a clod of wayward marl? +No, uncle, I'll none: Adam's sons are my brethren; +and, truly, I hold it a sin to match in my kindred. + +LEONATO: +Daughter, remember what I told you: if the prince +do solicit you in that kind, you know your answer. + +BEATRICE: +The fault will be in the music, cousin, if you be +not wooed in good time: if the prince be too +important, tell him there is measure in every thing +and so dance out the answer. For, hear me, Hero: +wooing, wedding, and repenting, is as a Scotch jig, +a measure, and a cinque pace: the first suit is hot +and hasty, like a Scotch jig, and full as +fantastical; the wedding, mannerly-modest, as a +measure, full of state and ancientry; and then comes +repentance and, with his bad legs, falls into the +cinque pace faster and faster, till he sink into his grave. + +LEONATO: +Cousin, you apprehend passing shrewdly. + +BEATRICE: +I have a good eye, uncle; I can see a church by daylight. + +LEONATO: +The revellers are entering, brother: make good room. + +DON PEDRO: +Lady, will you walk about with your friend? + +HERO: +So you walk softly and look sweetly and say nothing, +I am yours for the walk; and especially when I walk away. + +DON PEDRO: +With me in your company? + +HERO: +I may say so, when I please. + +DON PEDRO: +And when please you to say so? + +HERO: +When I like your favour; for God defend the lute +should be like the case! + +DON PEDRO: +My visor is Philemon's roof; within the house is Jove. + +HERO: +Why, then, your visor should be thatched. + +DON PEDRO: +Speak low, if you speak love. + +BALTHASAR: +Well, I would you did like me. + +MARGARET: +So would not I, for your own sake; for I have many +ill-qualities. + +BALTHASAR: +Which is one? + +MARGARET: +I say my prayers aloud. + +BALTHASAR: +I love you the better: the hearers may cry, Amen. + +MARGARET: +God match me with a good dancer! + +BALTHASAR: +Amen. + +MARGARET: +And God keep him out of my sight when the dance is +done! Answer, clerk. + +BALTHASAR: +No more words: the clerk is answered. + +URSULA: +I know you well enough; you are Signior Antonio. + +ANTONIO: +At a word, I am not. + +URSULA: +I know you by the waggling of your head. + +ANTONIO: +To tell you true, I counterfeit him. + +URSULA: +You could never do him so ill-well, unless you were +the very man. Here's his dry hand up and down: you +are he, you are he. + +ANTONIO: +At a word, I am not. + +URSULA: +Come, come, do you think I do not know you by your +excellent wit? can virtue hide itself? Go to, +mum, you are he: graces will appear, and there's an +end. + +BEATRICE: +Will you not tell me who told you so? + +BENEDICK: +No, you shall pardon me. + +BEATRICE: +Nor will you not tell me who you are? + +BENEDICK: +Not now. + +BEATRICE: +That I was disdainful, and that I had my good wit +out of the 'Hundred Merry Tales:'--well this was +Signior Benedick that said so. + +BENEDICK: +What's he? + +BEATRICE: +I am sure you know him well enough. + +BENEDICK: +Not I, believe me. + +BEATRICE: +Did he never make you laugh? + +BENEDICK: +I pray you, what is he? + +BEATRICE: +Why, he is the prince's jester: a very dull fool; +only his gift is in devising impossible slanders: +none but libertines delight in him; and the +commendation is not in his wit, but in his villany; +for he both pleases men and angers them, and then +they laugh at him and beat him. I am sure he is in +the fleet: I would he had boarded me. + +BENEDICK: +When I know the gentleman, I'll tell him what you say. + +BEATRICE: +Do, do: he'll but break a comparison or two on me; +which, peradventure not marked or not laughed at, +strikes him into melancholy; and then there's a +partridge wing saved, for the fool will eat no +supper that night. +We must follow the leaders. + +BENEDICK: +In every good thing. + +BEATRICE: +Nay, if they lead to any ill, I will leave them at +the next turning. + +DON JOHN: +Sure my brother is amorous on Hero and hath +withdrawn her father to break with him about it. +The ladies follow her and but one visor remains. + +BORACHIO: +And that is Claudio: I know him by his bearing. + +DON JOHN: +Are not you Signior Benedick? + +CLAUDIO: +You know me well; I am he. + +DON JOHN: +Signior, you are very near my brother in his love: +he is enamoured on Hero; I pray you, dissuade him +from her: she is no equal for his birth: you may +do the part of an honest man in it. + +CLAUDIO: +How know you he loves her? + +DON JOHN: +I heard him swear his affection. + +BORACHIO: +So did I too; and he swore he would marry her to-night. + +DON JOHN: +Come, let us to the banquet. + +CLAUDIO: +Thus answer I in the name of Benedick, +But hear these ill news with the ears of Claudio. +'Tis certain so; the prince wooes for himself. +Friendship is constant in all other things +Save in the office and affairs of love: +Therefore, all hearts in love use their own tongues; +Let every eye negotiate for itself +And trust no agent; for beauty is a witch +Against whose charms faith melteth into blood. +This is an accident of hourly proof, +Which I mistrusted not. Farewell, therefore, Hero! + +BENEDICK: +Count Claudio? + +CLAUDIO: +Yea, the same. + +BENEDICK: +Come, will you go with me? + +CLAUDIO: +Whither? + +BENEDICK: +Even to the next willow, about your own business, +county. What fashion will you wear the garland of? +about your neck, like an usurer's chain? or under +your arm, like a lieutenant's scarf? You must wear +it one way, for the prince hath got your Hero. + +CLAUDIO: +I wish him joy of her. + +BENEDICK: +Why, that's spoken like an honest drovier: so they +sell bullocks. But did you think the prince would +have served you thus? + +CLAUDIO: +I pray you, leave me. + +BENEDICK: +Ho! now you strike like the blind man: 'twas the +boy that stole your meat, and you'll beat the post. + +CLAUDIO: +If it will not be, I'll leave you. + +BENEDICK: +Alas, poor hurt fowl! now will he creep into sedges. +But that my Lady Beatrice should know me, and not +know me! The prince's fool! Ha? It may be I go +under that title because I am merry. Yea, but so I +am apt to do myself wrong; I am not so reputed: it +is the base, though bitter, disposition of Beatrice +that puts the world into her person and so gives me +out. Well, I'll be revenged as I may. + +DON PEDRO: +Now, signior, where's the count? did you see him? + +BENEDICK: +Troth, my lord, I have played the part of Lady Fame. +I found him here as melancholy as a lodge in a +warren: I told him, and I think I told him true, +that your grace had got the good will of this young +lady; and I offered him my company to a willow-tree, +either to make him a garland, as being forsaken, or +to bind him up a rod, as being worthy to be whipped. + +DON PEDRO: +To be whipped! What's his fault? + +BENEDICK: +The flat transgression of a schoolboy, who, being +overjoyed with finding a birds' nest, shows it his +companion, and he steals it. + +DON PEDRO: +Wilt thou make a trust a transgression? The +transgression is in the stealer. + +BENEDICK: +Yet it had not been amiss the rod had been made, +and the garland too; for the garland he might have +worn himself, and the rod he might have bestowed on +you, who, as I take it, have stolen his birds' nest. + +DON PEDRO: +I will but teach them to sing, and restore them to +the owner. + +BENEDICK: +If their singing answer your saying, by my faith, +you say honestly. + +DON PEDRO: +The Lady Beatrice hath a quarrel to you: the +gentleman that danced with her told her she is much +wronged by you. + +BENEDICK: +O, she misused me past the endurance of a block! +an oak but with one green leaf on it would have +answered her; my very visor began to assume life and +scold with her. She told me, not thinking I had been +myself, that I was the prince's jester, that I was +duller than a great thaw; huddling jest upon jest +with such impossible conveyance upon me that I stood +like a man at a mark, with a whole army shooting at +me. She speaks poniards, and every word stabs: +if her breath were as terrible as her terminations, +there were no living near her; she would infect to +the north star. I would not marry her, though she +were endowed with all that Adam bad left him before +he transgressed: she would have made Hercules have +turned spit, yea, and have cleft his club to make +the fire too. Come, talk not of her: you shall find +her the infernal Ate in good apparel. I would to God +some scholar would conjure her; for certainly, while +she is here, a man may live as quiet in hell as in a +sanctuary; and people sin upon purpose, because they +would go thither; so, indeed, all disquiet, horror +and perturbation follows her. + +DON PEDRO: +Look, here she comes. + +BENEDICK: +Will your grace command me any service to the +world's end? I will go on the slightest errand now +to the Antipodes that you can devise to send me on; +I will fetch you a tooth-picker now from the +furthest inch of Asia, bring you the length of +Prester John's foot, fetch you a hair off the great +Cham's beard, do you any embassage to the Pigmies, +rather than hold three words' conference with this +harpy. You have no employment for me? + +DON PEDRO: +None, but to desire your good company. + +BENEDICK: +O God, sir, here's a dish I love not: I cannot +endure my Lady Tongue. + +DON PEDRO: +Come, lady, come; you have lost the heart of +Signior Benedick. + +BEATRICE: +Indeed, my lord, he lent it me awhile; and I gave +him use for it, a double heart for his single one: +marry, once before he won it of me with false dice, +therefore your grace may well say I have lost it. + +DON PEDRO: +You have put him down, lady, you have put him down. + +BEATRICE: +So I would not he should do me, my lord, lest I +should prove the mother of fools. I have brought +Count Claudio, whom you sent me to seek. + +DON PEDRO: +Why, how now, count! wherefore are you sad? + +CLAUDIO: +Not sad, my lord. + +DON PEDRO: +How then? sick? + +CLAUDIO: +Neither, my lord. + +BEATRICE: +The count is neither sad, nor sick, nor merry, nor +well; but civil count, civil as an orange, and +something of that jealous complexion. + +DON PEDRO: +I' faith, lady, I think your blazon to be true; +though, I'll be sworn, if he be so, his conceit is +false. Here, Claudio, I have wooed in thy name, and +fair Hero is won: I have broke with her father, +and his good will obtained: name the day of +marriage, and God give thee joy! + +LEONATO: +Count, take of me my daughter, and with her my +fortunes: his grace hath made the match, and an +grace say Amen to it. + +BEATRICE: +Speak, count, 'tis your cue. + +CLAUDIO: +Silence is the perfectest herald of joy: I were +but little happy, if I could say how much. Lady, as +you are mine, I am yours: I give away myself for +you and dote upon the exchange. + +BEATRICE: +Speak, cousin; or, if you cannot, stop his mouth +with a kiss, and let not him speak neither. + +DON PEDRO: +In faith, lady, you have a merry heart. + +BEATRICE: +Yea, my lord; I thank it, poor fool, it keeps on +the windy side of care. My cousin tells him in his +ear that he is in her heart. + +CLAUDIO: +And so she doth, cousin. + +BEATRICE: +Good Lord, for alliance! Thus goes every one to the +world but I, and I am sunburnt; I may sit in a +corner and cry heigh-ho for a husband! + +DON PEDRO: +Lady Beatrice, I will get you one. + +BEATRICE: +I would rather have one of your father's getting. +Hath your grace ne'er a brother like you? Your +father got excellent husbands, if a maid could come by them. + +DON PEDRO: +Will you have me, lady? + +BEATRICE: +No, my lord, unless I might have another for +working-days: your grace is too costly to wear +every day. But, I beseech your grace, pardon me: I +was born to speak all mirth and no matter. + +DON PEDRO: +Your silence most offends me, and to be merry best +becomes you; for, out of question, you were born in +a merry hour. + +BEATRICE: +No, sure, my lord, my mother cried; but then there +was a star danced, and under that was I born. +Cousins, God give you joy! + +LEONATO: +Niece, will you look to those things I told you of? + +BEATRICE: +I cry you mercy, uncle. By your grace's pardon. + +DON PEDRO: +By my troth, a pleasant-spirited lady. + +LEONATO: +There's little of the melancholy element in her, my +lord: she is never sad but when she sleeps, and +not ever sad then; for I have heard my daughter say, +she hath often dreamed of unhappiness and waked +herself with laughing. + +DON PEDRO: +She cannot endure to hear tell of a husband. + +LEONATO: +O, by no means: she mocks all her wooers out of suit. + +DON PEDRO: +She were an excellent wife for Benedict. + +LEONATO: +O Lord, my lord, if they were but a week married, +they would talk themselves mad. + +DON PEDRO: +County Claudio, when mean you to go to church? + +CLAUDIO: +To-morrow, my lord: time goes on crutches till love +have all his rites. + +LEONATO: +Not till Monday, my dear son, which is hence a just +seven-night; and a time too brief, too, to have all +things answer my mind. + +DON PEDRO: +Come, you shake the head at so long a breathing: +but, I warrant thee, Claudio, the time shall not go +dully by us. I will in the interim undertake one of +Hercules' labours; which is, to bring Signior +Benedick and the Lady Beatrice into a mountain of +affection the one with the other. I would fain have +it a match, and I doubt not but to fashion it, if +you three will but minister such assistance as I +shall give you direction. + +LEONATO: +My lord, I am for you, though it cost me ten +nights' watchings. + +CLAUDIO: +And I, my lord. + +DON PEDRO: +And you too, gentle Hero? + +HERO: +I will do any modest office, my lord, to help my +cousin to a good husband. + +DON PEDRO: +And Benedick is not the unhopefullest husband that +I know. Thus far can I praise him; he is of a noble +strain, of approved valour and confirmed honesty. I +will teach you how to humour your cousin, that she +shall fall in love with Benedick; and I, with your +two helps, will so practise on Benedick that, in +despite of his quick wit and his queasy stomach, he +shall fall in love with Beatrice. If we can do this, +Cupid is no longer an archer: his glory shall be +ours, for we are the only love-gods. Go in with me, +and I will tell you my drift. + +DON JOHN: +It is so; the Count Claudio shall marry the +daughter of Leonato. + +BORACHIO: +Yea, my lord; but I can cross it. + +DON JOHN: +Any bar, any cross, any impediment will be +medicinable to me: I am sick in displeasure to him, +and whatsoever comes athwart his affection ranges +evenly with mine. How canst thou cross this marriage? + +BORACHIO: +Not honestly, my lord; but so covertly that no +dishonesty shall appear in me. + +DON JOHN: +Show me briefly how. + +BORACHIO: +I think I told your lordship a year since, how much +I am in the favour of Margaret, the waiting +gentlewoman to Hero. + +DON JOHN: +I remember. + +BORACHIO: +I can, at any unseasonable instant of the night, +appoint her to look out at her lady's chamber window. + +DON JOHN: +What life is in that, to be the death of this marriage? + +BORACHIO: +The poison of that lies in you to temper. Go you to +the prince your brother; spare not to tell him that +he hath wronged his honour in marrying the renowned +Claudio--whose estimation do you mightily hold +up--to a contaminated stale, such a one as Hero. + +DON JOHN: +What proof shall I make of that? + +BORACHIO: +Proof enough to misuse the prince, to vex Claudio, +to undo Hero and kill Leonato. Look you for any +other issue? + +DON JOHN: +Only to despite them, I will endeavour any thing. + +BORACHIO: +Go, then; find me a meet hour to draw Don Pedro and +the Count Claudio alone: tell them that you know +that Hero loves me; intend a kind of zeal both to the +prince and Claudio, as,--in love of your brother's +honour, who hath made this match, and his friend's +reputation, who is thus like to be cozened with the +semblance of a maid,--that you have discovered +thus. They will scarcely believe this without trial: +offer them instances; which shall bear no less +likelihood than to see me at her chamber-window, +hear me call Margaret Hero, hear Margaret term me +Claudio; and bring them to see this the very night +before the intended wedding,--for in the meantime I +will so fashion the matter that Hero shall be +absent,--and there shall appear such seeming truth +of Hero's disloyalty that jealousy shall be called +assurance and all the preparation overthrown. + +DON JOHN: +Grow this to what adverse issue it can, I will put +it in practise. Be cunning in the working this, and +thy fee is a thousand ducats. + +BORACHIO: +Be you constant in the accusation, and my cunning +shall not shame me. + +DON JOHN: +I will presently go learn their day of marriage. + +BENEDICK: +Boy! + +Boy: +Signior? + +BENEDICK: +In my chamber-window lies a book: bring it hither +to me in the orchard. + +Boy: +I am here already, sir. + +BENEDICK: +I know that; but I would have thee hence, and here again. +I do much wonder that one man, seeing how much +another man is a fool when he dedicates his +behaviors to love, will, after he hath laughed at +such shallow follies in others, become the argument +of his own scorn by failing in love: and such a man +is Claudio. I have known when there was no music +with him but the drum and the fife; and now had he +rather hear the tabour and the pipe: I have known +when he would have walked ten mile a-foot to see a +good armour; and now will he lie ten nights awake, +carving the fashion of a new doublet. He was wont to +speak plain and to the purpose, like an honest man +and a soldier; and now is he turned orthography; his +words are a very fantastical banquet, just so many +strange dishes. May I be so converted and see with +these eyes? I cannot tell; I think not: I will not +be sworn, but love may transform me to an oyster; but +I'll take my oath on it, till he have made an oyster +of me, he shall never make me such a fool. One woman +is fair, yet I am well; another is wise, yet I am +well; another virtuous, yet I am well; but till all +graces be in one woman, one woman shall not come in +my grace. Rich she shall be, that's certain; wise, +or I'll none; virtuous, or I'll never cheapen her; +fair, or I'll never look on her; mild, or come not +near me; noble, or not I for an angel; of good +discourse, an excellent musician, and her hair shall +be of what colour it please God. Ha! the prince and +Monsieur Love! I will hide me in the arbour. + +DON PEDRO: +Come, shall we hear this music? + +CLAUDIO: +Yea, my good lord. How still the evening is, +As hush'd on purpose to grace harmony! + +DON PEDRO: +See you where Benedick hath hid himself? + +CLAUDIO: +O, very well, my lord: the music ended, +We'll fit the kid-fox with a pennyworth. + +DON PEDRO: +Come, Balthasar, we'll hear that song again. + +BALTHASAR: +O, good my lord, tax not so bad a voice +To slander music any more than once. + +DON PEDRO: +It is the witness still of excellency +To put a strange face on his own perfection. +I pray thee, sing, and let me woo no more. + +BALTHASAR: +Because you talk of wooing, I will sing; +Since many a wooer doth commence his suit +To her he thinks not worthy, yet he wooes, +Yet will he swear he loves. + +DON PEDRO: +Now, pray thee, come; +Or, if thou wilt hold longer argument, +Do it in notes. + +BALTHASAR: +Note this before my notes; +There's not a note of mine that's worth the noting. + +DON PEDRO: +Why, these are very crotchets that he speaks; +Note, notes, forsooth, and nothing. + +BENEDICK: +Now, divine air! now is his soul ravished! Is it +not strange that sheeps' guts should hale souls out +of men's bodies? Well, a horn for my money, when +all's done. + +BALTHASAR: +Sigh no more, ladies, sigh no more, +Men were deceivers ever, +One foot in sea and one on shore, +To one thing constant never: +Then sigh not so, but let them go, +And be you blithe and bonny, +Converting all your sounds of woe +Into Hey nonny, nonny. +Sing no more ditties, sing no moe, +Of dumps so dull and heavy; +The fraud of men was ever so, +Since summer first was leafy: +Then sigh not so, &c. + +DON PEDRO: +By my troth, a good song. + +BALTHASAR: +And an ill singer, my lord. + +DON PEDRO: +Ha, no, no, faith; thou singest well enough for a shift. + +BENEDICK: +An he had been a dog that should have howled thus, +they would have hanged him: and I pray God his bad +voice bode no mischief. I had as lief have heard the +night-raven, come what plague could have come after +it. + +DON PEDRO: +Yea, marry, dost thou hear, Balthasar? I pray thee, +get us some excellent music; for to-morrow night we +would have it at the Lady Hero's chamber-window. + +BALTHASAR: +The best I can, my lord. + +DON PEDRO: +Do so: farewell. +Come hither, Leonato. What was it you told me of +to-day, that your niece Beatrice was in love with +Signior Benedick? + +CLAUDIO: +O, ay: stalk on. stalk on; the fowl sits. I did +never think that lady would have loved any man. + +LEONATO: +No, nor I neither; but most wonderful that she +should so dote on Signior Benedick, whom she hath in +all outward behaviors seemed ever to abhor. + +BENEDICK: +Is't possible? Sits the wind in that corner? + +LEONATO: +By my troth, my lord, I cannot tell what to think +of it but that she loves him with an enraged +affection: it is past the infinite of thought. + +DON PEDRO: +May be she doth but counterfeit. + +CLAUDIO: +Faith, like enough. + +LEONATO: +O God, counterfeit! There was never counterfeit of +passion came so near the life of passion as she +discovers it. + +DON PEDRO: +Why, what effects of passion shows she? + +CLAUDIO: +Bait the hook well; this fish will bite. + +LEONATO: +What effects, my lord? She will sit you, you heard +my daughter tell you how. + +CLAUDIO: +She did, indeed. + +DON PEDRO: +How, how, pray you? You amaze me: I would have I +thought her spirit had been invincible against all +assaults of affection. + +LEONATO: +I would have sworn it had, my lord; especially +against Benedick. + +BENEDICK: +I should think this a gull, but that the +white-bearded fellow speaks it: knavery cannot, +sure, hide himself in such reverence. + +CLAUDIO: +He hath ta'en the infection: hold it up. + +DON PEDRO: +Hath she made her affection known to Benedick? + +LEONATO: +No; and swears she never will: that's her torment. + +CLAUDIO: +'Tis true, indeed; so your daughter says: 'Shall +I,' says she, 'that have so oft encountered him +with scorn, write to him that I love him?' + +LEONATO: +This says she now when she is beginning to write to +him; for she'll be up twenty times a night, and +there will she sit in her smock till she have writ a +sheet of paper: my daughter tells us all. + +CLAUDIO: +Now you talk of a sheet of paper, I remember a +pretty jest your daughter told us of. + +LEONATO: +O, when she had writ it and was reading it over, she +found Benedick and Beatrice between the sheet? + +CLAUDIO: +That. + +LEONATO: +O, she tore the letter into a thousand halfpence; +railed at herself, that she should be so immodest +to write to one that she knew would flout her; 'I +measure him,' says she, 'by my own spirit; for I +should flout him, if he writ to me; yea, though I +love him, I should.' + +CLAUDIO: +Then down upon her knees she falls, weeps, sobs, +beats her heart, tears her hair, prays, curses; 'O +sweet Benedick! God give me patience!' + +LEONATO: +She doth indeed; my daughter says so: and the +ecstasy hath so much overborne her that my daughter +is sometime afeared she will do a desperate outrage +to herself: it is very true. + +DON PEDRO: +It were good that Benedick knew of it by some +other, if she will not discover it. + +CLAUDIO: +To what end? He would make but a sport of it and +torment the poor lady worse. + +DON PEDRO: +An he should, it were an alms to hang him. She's an +excellent sweet lady; and, out of all suspicion, +she is virtuous. + +CLAUDIO: +And she is exceeding wise. + +DON PEDRO: +In every thing but in loving Benedick. + +LEONATO: +O, my lord, wisdom and blood combating in so tender +a body, we have ten proofs to one that blood hath +the victory. I am sorry for her, as I have just +cause, being her uncle and her guardian. + +DON PEDRO: +I would she had bestowed this dotage on me: I would +have daffed all other respects and made her half +myself. I pray you, tell Benedick of it, and hear +what a' will say. + +LEONATO: +Were it good, think you? + +CLAUDIO: +Hero thinks surely she will die; for she says she +will die, if he love her not, and she will die, ere +she make her love known, and she will die, if he woo +her, rather than she will bate one breath of her +accustomed crossness. + +DON PEDRO: +She doth well: if she should make tender of her +love, 'tis very possible he'll scorn it; for the +man, as you know all, hath a contemptible spirit. + +CLAUDIO: +He is a very proper man. + +DON PEDRO: +He hath indeed a good outward happiness. + +CLAUDIO: +Before God! and, in my mind, very wise. + +DON PEDRO: +He doth indeed show some sparks that are like wit. + +CLAUDIO: +And I take him to be valiant. + +DON PEDRO: +As Hector, I assure you: and in the managing of +quarrels you may say he is wise; for either he +avoids them with great discretion, or undertakes +them with a most Christian-like fear. + +LEONATO: +If he do fear God, a' must necessarily keep peace: +if he break the peace, he ought to enter into a +quarrel with fear and trembling. + +DON PEDRO: +And so will he do; for the man doth fear God, +howsoever it seems not in him by some large jests +he will make. Well I am sorry for your niece. Shall +we go seek Benedick, and tell him of her love? + +CLAUDIO: +Never tell him, my lord: let her wear it out with +good counsel. + +LEONATO: +Nay, that's impossible: she may wear her heart out first. + +DON PEDRO: +Well, we will hear further of it by your daughter: +let it cool the while. I love Benedick well; and I +could wish he would modestly examine himself, to see +how much he is unworthy so good a lady. + +LEONATO: +My lord, will you walk? dinner is ready. + +CLAUDIO: +If he do not dote on her upon this, I will never +trust my expectation. + +DON PEDRO: +Let there be the same net spread for her; and that +must your daughter and her gentlewomen carry. The +sport will be, when they hold one an opinion of +another's dotage, and no such matter: that's the +scene that I would see, which will be merely a +dumb-show. Let us send her to call him in to dinner. + +BENEDICK: + +BEATRICE: +Against my will I am sent to bid you come in to dinner. + +BENEDICK: +Fair Beatrice, I thank you for your pains. + +BEATRICE: +I took no more pains for those thanks than you take +pains to thank me: if it had been painful, I would +not have come. + +BENEDICK: +You take pleasure then in the message? + +BEATRICE: +Yea, just so much as you may take upon a knife's +point and choke a daw withal. You have no stomach, +signior: fare you well. + +BENEDICK: +Ha! 'Against my will I am sent to bid you come in +to dinner;' there's a double meaning in that 'I took +no more pains for those thanks than you took pains +to thank me.' that's as much as to say, Any pains +that I take for you is as easy as thanks. If I do +not take pity of her, I am a villain; if I do not +love her, I am a Jew. I will go get her picture. + +HERO: +Good Margaret, run thee to the parlor; +There shalt thou find my cousin Beatrice +Proposing with the prince and Claudio: +Whisper her ear and tell her, I and Ursula +Walk in the orchard and our whole discourse +Is all of her; say that thou overheard'st us; +And bid her steal into the pleached bower, +Where honeysuckles, ripen'd by the sun, +Forbid the sun to enter, like favourites, +Made proud by princes, that advance their pride +Against that power that bred it: there will she hide her, +To listen our purpose. This is thy office; +Bear thee well in it and leave us alone. + +MARGARET: +I'll make her come, I warrant you, presently. + +HERO: +Now, Ursula, when Beatrice doth come, +As we do trace this alley up and down, +Our talk must only be of Benedick. +When I do name him, let it be thy part +To praise him more than ever man did merit: +My talk to thee must be how Benedick +Is sick in love with Beatrice. Of this matter +Is little Cupid's crafty arrow made, +That only wounds by hearsay. +Now begin; +For look where Beatrice, like a lapwing, runs +Close by the ground, to hear our conference. + +URSULA: +The pleasant'st angling is to see the fish +Cut with her golden oars the silver stream, +And greedily devour the treacherous bait: +So angle we for Beatrice; who even now +Is couched in the woodbine coverture. +Fear you not my part of the dialogue. + +HERO: +Then go we near her, that her ear lose nothing +Of the false sweet bait that we lay for it. +No, truly, Ursula, she is too disdainful; +I know her spirits are as coy and wild +As haggerds of the rock. + +URSULA: +But are you sure +That Benedick loves Beatrice so entirely? + +HERO: +So says the prince and my new-trothed lord. + +URSULA: +And did they bid you tell her of it, madam? + +HERO: +They did entreat me to acquaint her of it; +But I persuaded them, if they loved Benedick, +To wish him wrestle with affection, +And never to let Beatrice know of it. + +URSULA: +Why did you so? Doth not the gentleman +Deserve as full as fortunate a bed +As ever Beatrice shall couch upon? + +HERO: +O god of love! I know he doth deserve +As much as may be yielded to a man: +But Nature never framed a woman's heart +Of prouder stuff than that of Beatrice; +Disdain and scorn ride sparkling in her eyes, +Misprising what they look on, and her wit +Values itself so highly that to her +All matter else seems weak: she cannot love, +Nor take no shape nor project of affection, +She is so self-endeared. + +URSULA: +Sure, I think so; +And therefore certainly it were not good +She knew his love, lest she make sport at it. + +HERO: +Why, you speak truth. I never yet saw man, +How wise, how noble, young, how rarely featured, +But she would spell him backward: if fair-faced, +She would swear the gentleman should be her sister; +If black, why, Nature, drawing of an antique, +Made a foul blot; if tall, a lance ill-headed; +If low, an agate very vilely cut; +If speaking, why, a vane blown with all winds; +If silent, why, a block moved with none. +So turns she every man the wrong side out +And never gives to truth and virtue that +Which simpleness and merit purchaseth. + +URSULA: +Sure, sure, such carping is not commendable. + +HERO: +No, not to be so odd and from all fashions +As Beatrice is, cannot be commendable: +But who dare tell her so? If I should speak, +She would mock me into air; O, she would laugh me +Out of myself, press me to death with wit. +Therefore let Benedick, like cover'd fire, +Consume away in sighs, waste inwardly: +It were a better death than die with mocks, +Which is as bad as die with tickling. + +URSULA: +Yet tell her of it: hear what she will say. + +HERO: +No; rather I will go to Benedick +And counsel him to fight against his passion. +And, truly, I'll devise some honest slanders +To stain my cousin with: one doth not know +How much an ill word may empoison liking. + +URSULA: +O, do not do your cousin such a wrong. +She cannot be so much without true judgment-- +Having so swift and excellent a wit +As she is prized to have--as to refuse +So rare a gentleman as Signior Benedick. + +HERO: +He is the only man of Italy. +Always excepted my dear Claudio. + +URSULA: +I pray you, be not angry with me, madam, +Speaking my fancy: Signior Benedick, +For shape, for bearing, argument and valour, +Goes foremost in report through Italy. + +HERO: +Indeed, he hath an excellent good name. + +URSULA: +His excellence did earn it, ere he had it. +When are you married, madam? + +HERO: +Why, every day, to-morrow. Come, go in: +I'll show thee some attires, and have thy counsel +Which is the best to furnish me to-morrow. + +URSULA: +She's limed, I warrant you: we have caught her, madam. + +HERO: +If it proves so, then loving goes by haps: +Some Cupid kills with arrows, some with traps. + +BEATRICE: + +DON PEDRO: +I do but stay till your marriage be consummate, and +then go I toward Arragon. + +CLAUDIO: +I'll bring you thither, my lord, if you'll +vouchsafe me. + +DON PEDRO: +Nay, that would be as great a soil in the new gloss +of your marriage as to show a child his new coat +and forbid him to wear it. I will only be bold +with Benedick for his company; for, from the crown +of his head to the sole of his foot, he is all +mirth: he hath twice or thrice cut Cupid's +bow-string and the little hangman dare not shoot at +him; he hath a heart as sound as a bell and his +tongue is the clapper, for what his heart thinks his +tongue speaks. + +BENEDICK: +Gallants, I am not as I have been. + +LEONATO: +So say I methinks you are sadder. + +CLAUDIO: +I hope he be in love. + +DON PEDRO: +Hang him, truant! there's no true drop of blood in +him, to be truly touched with love: if he be sad, +he wants money. + +BENEDICK: +I have the toothache. + +DON PEDRO: +Draw it. + +BENEDICK: +Hang it! + +CLAUDIO: +You must hang it first, and draw it afterwards. + +DON PEDRO: +What! sigh for the toothache? + +LEONATO: +Where is but a humour or a worm. + +BENEDICK: +Well, every one can master a grief but he that has +it. + +CLAUDIO: +Yet say I, he is in love. + +DON PEDRO: +There is no appearance of fancy in him, unless it be +a fancy that he hath to strange disguises; as, to be +a Dutchman today, a Frenchman to-morrow, or in the +shape of two countries at once, as, a German from +the waist downward, all slops, and a Spaniard from +the hip upward, no doublet. Unless he have a fancy +to this foolery, as it appears he hath, he is no +fool for fancy, as you would have it appear he is. + +CLAUDIO: +If he be not in love with some woman, there is no +believing old signs: a' brushes his hat o' +mornings; what should that bode? + +DON PEDRO: +Hath any man seen him at the barber's? + +CLAUDIO: +No, but the barber's man hath been seen with him, +and the old ornament of his cheek hath already +stuffed tennis-balls. + +LEONATO: +Indeed, he looks younger than he did, by the loss of a beard. + +DON PEDRO: +Nay, a' rubs himself with civet: can you smell him +out by that? + +CLAUDIO: +That's as much as to say, the sweet youth's in love. + +DON PEDRO: +The greatest note of it is his melancholy. + +CLAUDIO: +And when was he wont to wash his face? + +DON PEDRO: +Yea, or to paint himself? for the which, I hear +what they say of him. + +CLAUDIO: +Nay, but his jesting spirit; which is now crept into +a lute-string and now governed by stops. + +DON PEDRO: +Indeed, that tells a heavy tale for him: conclude, +conclude he is in love. + +CLAUDIO: +Nay, but I know who loves him. + +DON PEDRO: +That would I know too: I warrant, one that knows him not. + +CLAUDIO: +Yes, and his ill conditions; and, in despite of +all, dies for him. + +DON PEDRO: +She shall be buried with her face upwards. + +BENEDICK: +Yet is this no charm for the toothache. Old +signior, walk aside with me: I have studied eight +or nine wise words to speak to you, which these +hobby-horses must not hear. + +DON PEDRO: +For my life, to break with him about Beatrice. + +CLAUDIO: +'Tis even so. Hero and Margaret have by this +played their parts with Beatrice; and then the two +bears will not bite one another when they meet. + +DON JOHN: +My lord and brother, God save you! + +DON PEDRO: +Good den, brother. + +DON JOHN: +If your leisure served, I would speak with you. + +DON PEDRO: +In private? + +DON JOHN: +If it please you: yet Count Claudio may hear; for +what I would speak of concerns him. + +DON PEDRO: +What's the matter? + +DON JOHN: + +DON PEDRO: +You know he does. + +DON JOHN: +I know not that, when he knows what I know. + +CLAUDIO: +If there be any impediment, I pray you discover it. + +DON JOHN: +You may think I love you not: let that appear +hereafter, and aim better at me by that I now will +manifest. For my brother, I think he holds you +well, and in dearness of heart hath holp to effect +your ensuing marriage;--surely suit ill spent and +labour ill bestowed. + +DON PEDRO: +Why, what's the matter? + +DON JOHN: +I came hither to tell you; and, circumstances +shortened, for she has been too long a talking of, +the lady is disloyal. + +CLAUDIO: +Who, Hero? + +DON PEDRO: +Even she; Leonato's Hero, your Hero, every man's Hero: + +CLAUDIO: +Disloyal? + +DON JOHN: +The word is too good to paint out her wickedness; I +could say she were worse: think you of a worse +title, and I will fit her to it. Wonder not till +further warrant: go but with me to-night, you shall +see her chamber-window entered, even the night +before her wedding-day: if you love her then, +to-morrow wed her; but it would better fit your honour +to change your mind. + +CLAUDIO: +May this be so? + +DON PEDRO: +I will not think it. + +DON JOHN: +If you dare not trust that you see, confess not +that you know: if you will follow me, I will show +you enough; and when you have seen more and heard +more, proceed accordingly. + +CLAUDIO: +If I see any thing to-night why I should not marry +her to-morrow in the congregation, where I should +wed, there will I shame her. + +DON PEDRO: +And, as I wooed for thee to obtain her, I will join +with thee to disgrace her. + +DON JOHN: +I will disparage her no farther till you are my +witnesses: bear it coldly but till midnight, and +let the issue show itself. + +DON PEDRO: +O day untowardly turned! + +CLAUDIO: +O mischief strangely thwarting! + +DON JOHN: +O plague right well prevented! so will you say when +you have seen the sequel. + +DOGBERRY: +Are you good men and true? + +VERGES: +Yea, or else it were pity but they should suffer +salvation, body and soul. + +DOGBERRY: +Nay, that were a punishment too good for them, if +they should have any allegiance in them, being +chosen for the prince's watch. + +VERGES: +Well, give them their charge, neighbour Dogberry. + +DOGBERRY: +First, who think you the most desertless man to be +constable? + +First Watchman: +Hugh Otecake, sir, or George Seacole; for they can +write and read. + +DOGBERRY: +Come hither, neighbour Seacole. God hath blessed +you with a good name: to be a well-favoured man is +the gift of fortune; but to write and read comes by nature. + +Second Watchman: +Both which, master constable,-- + +DOGBERRY: +You have: I knew it would be your answer. Well, +for your favour, sir, why, give God thanks, and make +no boast of it; and for your writing and reading, +let that appear when there is no need of such +vanity. You are thought here to be the most +senseless and fit man for the constable of the +watch; therefore bear you the lantern. This is your +charge: you shall comprehend all vagrom men; you are +to bid any man stand, in the prince's name. + +Second Watchman: +How if a' will not stand? + +DOGBERRY: +Why, then, take no note of him, but let him go; and +presently call the rest of the watch together and +thank God you are rid of a knave. + +VERGES: +If he will not stand when he is bidden, he is none +of the prince's subjects. + +DOGBERRY: +True, and they are to meddle with none but the +prince's subjects. You shall also make no noise in +the streets; for, for the watch to babble and to +talk is most tolerable and not to be endured. + +Watchman: +We will rather sleep than talk: we know what +belongs to a watch. + +DOGBERRY: +Why, you speak like an ancient and most quiet +watchman; for I cannot see how sleeping should +offend: only, have a care that your bills be not +stolen. Well, you are to call at all the +ale-houses, and bid those that are drunk get them to bed. + +Watchman: +How if they will not? + +DOGBERRY: +Why, then, let them alone till they are sober: if +they make you not then the better answer, you may +say they are not the men you took them for. + +Watchman: +Well, sir. + +DOGBERRY: +If you meet a thief, you may suspect him, by virtue +of your office, to be no true man; and, for such +kind of men, the less you meddle or make with them, +why the more is for your honesty. + +Watchman: +If we know him to be a thief, shall we not lay +hands on him? + +DOGBERRY: +Truly, by your office, you may; but I think they +that touch pitch will be defiled: the most peaceable +way for you, if you do take a thief, is to let him +show himself what he is and steal out of your company. + +VERGES: +You have been always called a merciful man, partner. + +DOGBERRY: +Truly, I would not hang a dog by my will, much more +a man who hath any honesty in him. + +VERGES: +If you hear a child cry in the night, you must call +to the nurse and bid her still it. + +Watchman: +How if the nurse be asleep and will not hear us? + +DOGBERRY: +Why, then, depart in peace, and let the child wake +her with crying; for the ewe that will not hear her +lamb when it baes will never answer a calf when he bleats. + +VERGES: +'Tis very true. + +DOGBERRY: +This is the end of the charge:--you, constable, are +to present the prince's own person: if you meet the +prince in the night, you may stay him. + +VERGES: +Nay, by'r our lady, that I think a' cannot. + +DOGBERRY: +Five shillings to one on't, with any man that knows +the statutes, he may stay him: marry, not without +the prince be willing; for, indeed, the watch ought +to offend no man; and it is an offence to stay a +man against his will. + +VERGES: +By'r lady, I think it be so. + +DOGBERRY: +Ha, ha, ha! Well, masters, good night: an there be +any matter of weight chances, call up me: keep your +fellows' counsels and your own; and good night. +Come, neighbour. + +Watchman: +Well, masters, we hear our charge: let us go sit here +upon the church-bench till two, and then all to bed. + +DOGBERRY: +One word more, honest neighbours. I pray you watch +about Signior Leonato's door; for the wedding being +there to-morrow, there is a great coil to-night. +Adieu: be vigitant, I beseech you. + +BORACHIO: +What Conrade! + +Watchman: + +BORACHIO: +Conrade, I say! + +CONRADE: +Here, man; I am at thy elbow. + +BORACHIO: +Mass, and my elbow itched; I thought there would a +scab follow. + +CONRADE: +I will owe thee an answer for that: and now forward +with thy tale. + +BORACHIO: +Stand thee close, then, under this pent-house, for +it drizzles rain; and I will, like a true drunkard, +utter all to thee. + +Watchman: + +BORACHIO: +Therefore know I have earned of Don John a thousand ducats. + +CONRADE: +Is it possible that any villany should be so dear? + +BORACHIO: +Thou shouldst rather ask if it were possible any +villany should be so rich; for when rich villains +have need of poor ones, poor ones may make what +price they will. + +CONRADE: +I wonder at it. + +BORACHIO: +That shows thou art unconfirmed. Thou knowest that +the fashion of a doublet, or a hat, or a cloak, is +nothing to a man. + +CONRADE: +Yes, it is apparel. + +BORACHIO: +I mean, the fashion. + +CONRADE: +Yes, the fashion is the fashion. + +BORACHIO: +Tush! I may as well say the fool's the fool. But +seest thou not what a deformed thief this fashion +is? + +Watchman: + +BORACHIO: +Didst thou not hear somebody? + +CONRADE: +No; 'twas the vane on the house. + +BORACHIO: +Seest thou not, I say, what a deformed thief this +fashion is? how giddily a' turns about all the hot +bloods between fourteen and five-and-thirty? +sometimes fashioning them like Pharaoh's soldiers +in the reeky painting, sometime like god Bel's +priests in the old church-window, sometime like the +shaven Hercules in the smirched worm-eaten tapestry, +where his codpiece seems as massy as his club? + +CONRADE: +All this I see; and I see that the fashion wears +out more apparel than the man. But art not thou +thyself giddy with the fashion too, that thou hast +shifted out of thy tale into telling me of the fashion? + +BORACHIO: +Not so, neither: but know that I have to-night +wooed Margaret, the Lady Hero's gentlewoman, by the +name of Hero: she leans me out at her mistress' +chamber-window, bids me a thousand times good +night,--I tell this tale vilely:--I should first +tell thee how the prince, Claudio and my master, +planted and placed and possessed by my master Don +John, saw afar off in the orchard this amiable encounter. + +CONRADE: +And thought they Margaret was Hero? + +BORACHIO: +Two of them did, the prince and Claudio; but the +devil my master knew she was Margaret; and partly +by his oaths, which first possessed them, partly by +the dark night, which did deceive them, but chiefly +by my villany, which did confirm any slander that +Don John had made, away went Claudio enraged; swore +he would meet her, as he was appointed, next morning +at the temple, and there, before the whole +congregation, shame her with what he saw o'er night +and send her home again without a husband. + +First Watchman: +We charge you, in the prince's name, stand! + +Second Watchman: +Call up the right master constable. We have here +recovered the most dangerous piece of lechery that +ever was known in the commonwealth. + +First Watchman: +And one Deformed is one of them: I know him; a' +wears a lock. + +CONRADE: +Masters, masters,-- + +Second Watchman: +You'll be made bring Deformed forth, I warrant you. + +CONRADE: +Masters,-- + +First Watchman: +Never speak: we charge you let us obey you to go with us. + +BORACHIO: +We are like to prove a goodly commodity, being taken +up of these men's bills. + +CONRADE: +A commodity in question, I warrant you. Come, we'll obey you. + +HERO: +Good Ursula, wake my cousin Beatrice, and desire +her to rise. + +URSULA: +I will, lady. + +HERO: +And bid her come hither. + +URSULA: +Well. + +MARGARET: +Troth, I think your other rabato were better. + +HERO: +No, pray thee, good Meg, I'll wear this. + +MARGARET: +By my troth, 's not so good; and I warrant your +cousin will say so. + +HERO: +My cousin's a fool, and thou art another: I'll wear +none but this. + +MARGARET: +I like the new tire within excellently, if the hair +were a thought browner; and your gown's a most rare +fashion, i' faith. I saw the Duchess of Milan's +gown that they praise so. + +HERO: +O, that exceeds, they say. + +MARGARET: +By my troth, 's but a night-gown in respect of +yours: cloth o' gold, and cuts, and laced with +silver, set with pearls, down sleeves, side sleeves, +and skirts, round underborne with a bluish tinsel: +but for a fine, quaint, graceful and excellent +fashion, yours is worth ten on 't. + +HERO: +God give me joy to wear it! for my heart is +exceeding heavy. + +MARGARET: +'Twill be heavier soon by the weight of a man. + +HERO: +Fie upon thee! art not ashamed? + +MARGARET: +Of what, lady? of speaking honourably? Is not +marriage honourable in a beggar? Is not your lord +honourable without marriage? I think you would have +me say, 'saving your reverence, a husband:' and bad +thinking do not wrest true speaking, I'll offend +nobody: is there any harm in 'the heavier for a +husband'? None, I think, and it be the right husband +and the right wife; otherwise 'tis light, and not +heavy: ask my Lady Beatrice else; here she comes. + +HERO: +Good morrow, coz. + +BEATRICE: +Good morrow, sweet Hero. + +HERO: +Why how now? do you speak in the sick tune? + +BEATRICE: +I am out of all other tune, methinks. + +MARGARET: +Clap's into 'Light o' love;' that goes without a +burden: do you sing it, and I'll dance it. + +BEATRICE: +Ye light o' love, with your heels! then, if your +husband have stables enough, you'll see he shall +lack no barns. + +MARGARET: +O illegitimate construction! I scorn that with my heels. + +BEATRICE: +'Tis almost five o'clock, cousin; tis time you were +ready. By my troth, I am exceeding ill: heigh-ho! + +MARGARET: +For a hawk, a horse, or a husband? + +BEATRICE: +For the letter that begins them all, H. + +MARGARET: +Well, and you be not turned Turk, there's no more +sailing by the star. + +BEATRICE: +What means the fool, trow? + +MARGARET: +Nothing I; but God send every one their heart's desire! + +HERO: +These gloves the count sent me; they are an +excellent perfume. + +BEATRICE: +I am stuffed, cousin; I cannot smell. + +MARGARET: +A maid, and stuffed! there's goodly catching of cold. + +BEATRICE: +O, God help me! God help me! how long have you +professed apprehension? + +MARGARET: +Even since you left it. Doth not my wit become me rarely? + +BEATRICE: +It is not seen enough, you should wear it in your +cap. By my troth, I am sick. + +MARGARET: +Get you some of this distilled Carduus Benedictus, +and lay it to your heart: it is the only thing for a qualm. + +HERO: +There thou prickest her with a thistle. + +BEATRICE: +Benedictus! why Benedictus? you have some moral in +this Benedictus. + +MARGARET: +Moral! no, by my troth, I have no moral meaning; I +meant, plain holy-thistle. You may think perchance +that I think you are in love: nay, by'r lady, I am +not such a fool to think what I list, nor I list +not to think what I can, nor indeed I cannot think, +if I would think my heart out of thinking, that you +are in love or that you will be in love or that you +can be in love. Yet Benedick was such another, and +now is he become a man: he swore he would never +marry, and yet now, in despite of his heart, he eats +his meat without grudging: and how you may be +converted I know not, but methinks you look with +your eyes as other women do. + +BEATRICE: +What pace is this that thy tongue keeps? + +MARGARET: +Not a false gallop. + +URSULA: +Madam, withdraw: the prince, the count, Signior +Benedick, Don John, and all the gallants of the +town, are come to fetch you to church. + +HERO: +Help to dress me, good coz, good Meg, good Ursula. + +LEONATO: +What would you with me, honest neighbour? + +DOGBERRY: +Marry, sir, I would have some confidence with you +that decerns you nearly. + +LEONATO: +Brief, I pray you; for you see it is a busy time with me. + +DOGBERRY: +Marry, this it is, sir. + +VERGES: +Yes, in truth it is, sir. + +LEONATO: +What is it, my good friends? + +DOGBERRY: +Goodman Verges, sir, speaks a little off the +matter: an old man, sir, and his wits are not so +blunt as, God help, I would desire they were; but, +in faith, honest as the skin between his brows. + +VERGES: +Yes, I thank God I am as honest as any man living +that is an old man and no honester than I. + +DOGBERRY: +Comparisons are odorous: palabras, neighbour Verges. + +LEONATO: +Neighbours, you are tedious. + +DOGBERRY: +It pleases your worship to say so, but we are the +poor duke's officers; but truly, for mine own part, +if I were as tedious as a king, I could find it in +my heart to bestow it all of your worship. + +LEONATO: +All thy tediousness on me, ah? + +DOGBERRY: +Yea, an 'twere a thousand pound more than 'tis; for +I hear as good exclamation on your worship as of any +man in the city; and though I be but a poor man, I +am glad to hear it. + +VERGES: +And so am I. + +LEONATO: +I would fain know what you have to say. + +VERGES: +Marry, sir, our watch to-night, excepting your +worship's presence, ha' ta'en a couple of as arrant +knaves as any in Messina. + +DOGBERRY: +A good old man, sir; he will be talking: as they +say, when the age is in, the wit is out: God help +us! it is a world to see. Well said, i' faith, +neighbour Verges: well, God's a good man; an two men +ride of a horse, one must ride behind. An honest +soul, i' faith, sir; by my troth he is, as ever +broke bread; but God is to be worshipped; all men +are not alike; alas, good neighbour! + +LEONATO: +Indeed, neighbour, he comes too short of you. + +DOGBERRY: +Gifts that God gives. + +LEONATO: +I must leave you. + +DOGBERRY: +One word, sir: our watch, sir, have indeed +comprehended two aspicious persons, and we would +have them this morning examined before your worship. + +LEONATO: +Take their examination yourself and bring it me: I +am now in great haste, as it may appear unto you. + +DOGBERRY: +It shall be suffigance. + +LEONATO: +Drink some wine ere you go: fare you well. + +Messenger: +My lord, they stay for you to give your daughter to +her husband. + +LEONATO: +I'll wait upon them: I am ready. + +DOGBERRY: +Go, good partner, go, get you to Francis Seacole; +bid him bring his pen and inkhorn to the gaol: we +are now to examination these men. + +VERGES: +And we must do it wisely. + +DOGBERRY: +We will spare for no wit, I warrant you; here's +that shall drive some of them to a non-come: only +get the learned writer to set down our +excommunication and meet me at the gaol. + +LEONATO: +Come, Friar Francis, be brief; only to the plain +form of marriage, and you shall recount their +particular duties afterwards. + +FRIAR FRANCIS: +You come hither, my lord, to marry this lady. + +CLAUDIO: +No. + +LEONATO: +To be married to her: friar, you come to marry her. + +FRIAR FRANCIS: +Lady, you come hither to be married to this count. + +HERO: +I do. + +FRIAR FRANCIS: +If either of you know any inward impediment why you +should not be conjoined, charge you, on your souls, +to utter it. + +CLAUDIO: +Know you any, Hero? + +HERO: +None, my lord. + +FRIAR FRANCIS: +Know you any, count? + +LEONATO: +I dare make his answer, none. + +CLAUDIO: +O, what men dare do! what men may do! what men daily +do, not knowing what they do! + +BENEDICK: +How now! interjections? Why, then, some be of +laughing, as, ah, ha, he! + +CLAUDIO: +Stand thee by, friar. Father, by your leave: +Will you with free and unconstrained soul +Give me this maid, your daughter? + +LEONATO: +As freely, son, as God did give her me. + +CLAUDIO: +And what have I to give you back, whose worth +May counterpoise this rich and precious gift? + +DON PEDRO: +Nothing, unless you render her again. + +CLAUDIO: +Sweet prince, you learn me noble thankfulness. +There, Leonato, take her back again: +Give not this rotten orange to your friend; +She's but the sign and semblance of her honour. +Behold how like a maid she blushes here! +O, what authority and show of truth +Can cunning sin cover itself withal! +Comes not that blood as modest evidence +To witness simple virtue? Would you not swear, +All you that see her, that she were a maid, +By these exterior shows? But she is none: +She knows the heat of a luxurious bed; +Her blush is guiltiness, not modesty. + +LEONATO: +What do you mean, my lord? + +CLAUDIO: +Not to be married, +Not to knit my soul to an approved wanton. + +LEONATO: +Dear my lord, if you, in your own proof, +Have vanquish'd the resistance of her youth, +And made defeat of her virginity,-- + +CLAUDIO: +I know what you would say: if I have known her, +You will say she did embrace me as a husband, +And so extenuate the 'forehand sin: +No, Leonato, +I never tempted her with word too large; +But, as a brother to his sister, show'd +Bashful sincerity and comely love. + +HERO: +And seem'd I ever otherwise to you? + +CLAUDIO: +Out on thee! Seeming! I will write against it: +You seem to me as Dian in her orb, +As chaste as is the bud ere it be blown; +But you are more intemperate in your blood +Than Venus, or those pamper'd animals +That rage in savage sensuality. + +HERO: +Is my lord well, that he doth speak so wide? + +LEONATO: +Sweet prince, why speak not you? + +DON PEDRO: +What should I speak? +I stand dishonour'd, that have gone about +To link my dear friend to a common stale. + +LEONATO: +Are these things spoken, or do I but dream? + +DON JOHN: +Sir, they are spoken, and these things are true. + +BENEDICK: +This looks not like a nuptial. + +HERO: +True! O God! + +CLAUDIO: +Leonato, stand I here? +Is this the prince? is this the prince's brother? +Is this face Hero's? are our eyes our own? + +LEONATO: +All this is so: but what of this, my lord? + +CLAUDIO: +Let me but move one question to your daughter; +And, by that fatherly and kindly power +That you have in her, bid her answer truly. + +LEONATO: +I charge thee do so, as thou art my child. + +HERO: +O, God defend me! how am I beset! +What kind of catechising call you this? + +CLAUDIO: +To make you answer truly to your name. + +HERO: +Is it not Hero? Who can blot that name +With any just reproach? + +CLAUDIO: +Marry, that can Hero; +Hero itself can blot out Hero's virtue. +What man was he talk'd with you yesternight +Out at your window betwixt twelve and one? +Now, if you are a maid, answer to this. + +HERO: +I talk'd with no man at that hour, my lord. + +DON PEDRO: +Why, then are you no maiden. Leonato, +I am sorry you must hear: upon mine honour, +Myself, my brother and this grieved count +Did see her, hear her, at that hour last night +Talk with a ruffian at her chamber-window +Who hath indeed, most like a liberal villain, +Confess'd the vile encounters they have had +A thousand times in secret. + +DON JOHN: +Fie, fie! they are not to be named, my lord, +Not to be spoke of; +There is not chastity enough in language +Without offence to utter them. Thus, pretty lady, +I am sorry for thy much misgovernment. + +CLAUDIO: +O Hero, what a Hero hadst thou been, +If half thy outward graces had been placed +About thy thoughts and counsels of thy heart! +But fare thee well, most foul, most fair! farewell, +Thou pure impiety and impious purity! +For thee I'll lock up all the gates of love, +And on my eyelids shall conjecture hang, +To turn all beauty into thoughts of harm, +And never shall it more be gracious. + +LEONATO: +Hath no man's dagger here a point for me? + +BEATRICE: +Why, how now, cousin! wherefore sink you down? + +DON JOHN: +Come, let us go. These things, come thus to light, +Smother her spirits up. + +BENEDICK: +How doth the lady? + +BEATRICE: +Dead, I think. Help, uncle! +Hero! why, Hero! Uncle! Signior Benedick! Friar! + +LEONATO: +O Fate! take not away thy heavy hand. +Death is the fairest cover for her shame +That may be wish'd for. + +BEATRICE: +How now, cousin Hero! + +FRIAR FRANCIS: +Have comfort, lady. + +LEONATO: +Dost thou look up? + +FRIAR FRANCIS: +Yea, wherefore should she not? + +LEONATO: +Wherefore! Why, doth not every earthly thing +Cry shame upon her? Could she here deny +The story that is printed in her blood? +Do not live, Hero; do not ope thine eyes: +For, did I think thou wouldst not quickly die, +Thought I thy spirits were stronger than thy shames, +Myself would, on the rearward of reproaches, +Strike at thy life. Grieved I, I had but one? +Chid I for that at frugal nature's frame? +O, one too much by thee! Why had I one? +Why ever wast thou lovely in my eyes? +Why had I not with charitable hand +Took up a beggar's issue at my gates, +Who smirch'd thus and mired with infamy, +I might have said 'No part of it is mine; +This shame derives itself from unknown loins'? +But mine and mine I loved and mine I praised +And mine that I was proud on, mine so much +That I myself was to myself not mine, +Valuing of her,--why, she, O, she is fallen +Into a pit of ink, that the wide sea +Hath drops too few to wash her clean again +And salt too little which may season give +To her foul-tainted flesh! + +BENEDICK: +Sir, sir, be patient. +For my part, I am so attired in wonder, +I know not what to say. + +BEATRICE: +O, on my soul, my cousin is belied! + +BENEDICK: +Lady, were you her bedfellow last night? + +BEATRICE: +No, truly not; although, until last night, +I have this twelvemonth been her bedfellow. + +LEONATO: +Confirm'd, confirm'd! O, that is stronger made +Which was before barr'd up with ribs of iron! +Would the two princes lie, and Claudio lie, +Who loved her so, that, speaking of her foulness, +Wash'd it with tears? Hence from her! let her die. + +FRIAR FRANCIS: +Hear me a little; for I have only been +Silent so long and given way unto +This course of fortune +By noting of the lady. I have mark'd +A thousand blushing apparitions +To start into her face, a thousand innocent shames +In angel whiteness beat away those blushes; +And in her eye there hath appear'd a fire, +To burn the errors that these princes hold +Against her maiden truth. Call me a fool; +Trust not my reading nor my observations, +Which with experimental seal doth warrant +The tenor of my book; trust not my age, +My reverence, calling, nor divinity, +If this sweet lady lie not guiltless here +Under some biting error. + +LEONATO: +Friar, it cannot be. +Thou seest that all the grace that she hath left +Is that she will not add to her damnation +A sin of perjury; she not denies it: +Why seek'st thou then to cover with excuse +That which appears in proper nakedness? + +FRIAR FRANCIS: +Lady, what man is he you are accused of? + +HERO: +They know that do accuse me; I know none: +If I know more of any man alive +Than that which maiden modesty doth warrant, +Let all my sins lack mercy! O my father, +Prove you that any man with me conversed +At hours unmeet, or that I yesternight +Maintain'd the change of words with any creature, +Refuse me, hate me, torture me to death! + +FRIAR FRANCIS: +There is some strange misprision in the princes. + +BENEDICK: +Two of them have the very bent of honour; +And if their wisdoms be misled in this, +The practise of it lives in John the bastard, +Whose spirits toil in frame of villanies. + +LEONATO: +I know not. If they speak but truth of her, +These hands shall tear her; if they wrong her honour, +The proudest of them shall well hear of it. +Time hath not yet so dried this blood of mine, +Nor age so eat up my invention, +Nor fortune made such havoc of my means, +Nor my bad life reft me so much of friends, +But they shall find, awaked in such a kind, +Both strength of limb and policy of mind, +Ability in means and choice of friends, +To quit me of them throughly. + +FRIAR FRANCIS: +Pause awhile, +And let my counsel sway you in this case. +Your daughter here the princes left for dead: +Let her awhile be secretly kept in, +And publish it that she is dead indeed; +Maintain a mourning ostentation +And on your family's old monument +Hang mournful epitaphs and do all rites +That appertain unto a burial. + +LEONATO: +What shall become of this? what will this do? + +FRIAR FRANCIS: +Marry, this well carried shall on her behalf +Change slander to remorse; that is some good: +But not for that dream I on this strange course, +But on this travail look for greater birth. +She dying, as it must so be maintain'd, +Upon the instant that she was accused, +Shall be lamented, pitied and excused +Of every hearer: for it so falls out +That what we have we prize not to the worth +Whiles we enjoy it, but being lack'd and lost, +Why, then we rack the value, then we find +The virtue that possession would not show us +Whiles it was ours. So will it fare with Claudio: +When he shall hear she died upon his words, +The idea of her life shall sweetly creep +Into his study of imagination, +And every lovely organ of her life +Shall come apparell'd in more precious habit, +More moving-delicate and full of life, +Into the eye and prospect of his soul, +Than when she lived indeed; then shall he mourn, +If ever love had interest in his liver, +And wish he had not so accused her, +No, though he thought his accusation true. +Let this be so, and doubt not but success +Will fashion the event in better shape +Than I can lay it down in likelihood. +But if all aim but this be levell'd false, +The supposition of the lady's death +Will quench the wonder of her infamy: +And if it sort not well, you may conceal her, +As best befits her wounded reputation, +In some reclusive and religious life, +Out of all eyes, tongues, minds and injuries. + +BENEDICK: +Signior Leonato, let the friar advise you: +And though you know my inwardness and love +Is very much unto the prince and Claudio, +Yet, by mine honour, I will deal in this +As secretly and justly as your soul +Should with your body. + +LEONATO: +Being that I flow in grief, +The smallest twine may lead me. + +FRIAR FRANCIS: +'Tis well consented: presently away; +For to strange sores strangely they strain the cure. +Come, lady, die to live: this wedding-day +Perhaps is but prolong'd: have patience and endure. + +BENEDICK: +Lady Beatrice, have you wept all this while? + +BEATRICE: +Yea, and I will weep a while longer. + +BENEDICK: +I will not desire that. + +BEATRICE: +You have no reason; I do it freely. + +BENEDICK: +Surely I do believe your fair cousin is wronged. + +BEATRICE: +Ah, how much might the man deserve of me that would right her! + +BENEDICK: +Is there any way to show such friendship? + +BEATRICE: +A very even way, but no such friend. + +BENEDICK: +May a man do it? + +BEATRICE: +It is a man's office, but not yours. + +BENEDICK: +I do love nothing in the world so well as you: is +not that strange? + +BEATRICE: +As strange as the thing I know not. It were as +possible for me to say I loved nothing so well as +you: but believe me not; and yet I lie not; I +confess nothing, nor I deny nothing. I am sorry for my cousin. + +BENEDICK: +By my sword, Beatrice, thou lovest me. + +BEATRICE: +Do not swear, and eat it. + +BENEDICK: +I will swear by it that you love me; and I will make +him eat it that says I love not you. + +BEATRICE: +Will you not eat your word? + +BENEDICK: +With no sauce that can be devised to it. I protest +I love thee. + +BEATRICE: +Why, then, God forgive me! + +BENEDICK: +What offence, sweet Beatrice? + +BEATRICE: +You have stayed me in a happy hour: I was about to +protest I loved you. + +BENEDICK: +And do it with all thy heart. + +BEATRICE: +I love you with so much of my heart that none is +left to protest. + +BENEDICK: +Come, bid me do any thing for thee. + +BEATRICE: +Kill Claudio. + +BENEDICK: +Ha! not for the wide world. + +BEATRICE: +You kill me to deny it. Farewell. + +BENEDICK: +Tarry, sweet Beatrice. + +BEATRICE: +I am gone, though I am here: there is no love in +you: nay, I pray you, let me go. + +BENEDICK: +Beatrice,-- + +BEATRICE: +In faith, I will go. + +BENEDICK: +We'll be friends first. + +BEATRICE: +You dare easier be friends with me than fight with mine enemy. + +BENEDICK: +Is Claudio thine enemy? + +BEATRICE: +Is he not approved in the height a villain, that +hath slandered, scorned, dishonoured my kinswoman? O +that I were a man! What, bear her in hand until they +come to take hands; and then, with public +accusation, uncovered slander, unmitigated rancour, +--O God, that I were a man! I would eat his heart +in the market-place. + +BENEDICK: +Hear me, Beatrice,-- + +BEATRICE: +Talk with a man out at a window! A proper saying! + +BENEDICK: +Nay, but, Beatrice,-- + +BEATRICE: +Sweet Hero! She is wronged, she is slandered, she is undone. + +BENEDICK: +Beat-- + +BEATRICE: +Princes and counties! Surely, a princely testimony, +a goodly count, Count Comfect; a sweet gallant, +surely! O that I were a man for his sake! or that I +had any friend would be a man for my sake! But +manhood is melted into courtesies, valour into +compliment, and men are only turned into tongue, and +trim ones too: he is now as valiant as Hercules +that only tells a lie and swears it. I cannot be a +man with wishing, therefore I will die a woman with grieving. + +BENEDICK: +Tarry, good Beatrice. By this hand, I love thee. + +BEATRICE: +Use it for my love some other way than swearing by it. + +BENEDICK: +Think you in your soul the Count Claudio hath wronged Hero? + +BEATRICE: +Yea, as sure as I have a thought or a soul. + +BENEDICK: +Enough, I am engaged; I will challenge him. I will +kiss your hand, and so I leave you. By this hand, +Claudio shall render me a dear account. As you +hear of me, so think of me. Go, comfort your +cousin: I must say she is dead: and so, farewell. + +DOGBERRY: +Is our whole dissembly appeared? + +VERGES: +O, a stool and a cushion for the sexton. + +Sexton: +Which be the malefactors? + +DOGBERRY: +Marry, that am I and my partner. + +VERGES: +Nay, that's certain; we have the exhibition to examine. + +Sexton: +But which are the offenders that are to be +examined? let them come before master constable. + +DOGBERRY: +Yea, marry, let them come before me. What is your +name, friend? + +BORACHIO: +Borachio. + +DOGBERRY: +Pray, write down, Borachio. Yours, sirrah? + +CONRADE: +I am a gentleman, sir, and my name is Conrade. + +DOGBERRY: +Write down, master gentleman Conrade. Masters, do +you serve God? + +CONRADE: +Yea, sir, we hope. + +DOGBERRY: +Write down, that they hope they serve God: and +write God first; for God defend but God should go +before such villains! Masters, it is proved already +that you are little better than false knaves; and it +will go near to be thought so shortly. How answer +you for yourselves? + +CONRADE: +Marry, sir, we say we are none. + +DOGBERRY: +A marvellous witty fellow, I assure you: but I +will go about with him. Come you hither, sirrah; a +word in your ear: sir, I say to you, it is thought +you are false knaves. + +BORACHIO: +Sir, I say to you we are none. + +DOGBERRY: +Well, stand aside. 'Fore God, they are both in a +tale. Have you writ down, that they are none? + +Sexton: +Master constable, you go not the way to examine: +you must call forth the watch that are their accusers. + +DOGBERRY: +Yea, marry, that's the eftest way. Let the watch +come forth. Masters, I charge you, in the prince's +name, accuse these men. + +First Watchman: +This man said, sir, that Don John, the prince's +brother, was a villain. + +DOGBERRY: +Write down Prince John a villain. Why, this is flat +perjury, to call a prince's brother villain. + +BORACHIO: +Master constable,-- + +DOGBERRY: +Pray thee, fellow, peace: I do not like thy look, +I promise thee. + +Sexton: +What heard you him say else? + +Second Watchman: +Marry, that he had received a thousand ducats of +Don John for accusing the Lady Hero wrongfully. + +DOGBERRY: +Flat burglary as ever was committed. + +VERGES: +Yea, by mass, that it is. + +Sexton: +What else, fellow? + +First Watchman: +And that Count Claudio did mean, upon his words, to +disgrace Hero before the whole assembly. and not marry her. + +DOGBERRY: +O villain! thou wilt be condemned into everlasting +redemption for this. + +Sexton: +What else? + +Watchman: +This is all. + +Sexton: +And this is more, masters, than you can deny. +Prince John is this morning secretly stolen away; +Hero was in this manner accused, in this very manner +refused, and upon the grief of this suddenly died. +Master constable, let these men be bound, and +brought to Leonato's: I will go before and show +him their examination. + +DOGBERRY: +Come, let them be opinioned. + +VERGES: +Let them be in the hands-- + +CONRADE: +Off, coxcomb! + +DOGBERRY: +God's my life, where's the sexton? let him write +down the prince's officer coxcomb. Come, bind them. +Thou naughty varlet! + +CONRADE: +Away! you are an ass, you are an ass. + +DOGBERRY: +Dost thou not suspect my place? dost thou not +suspect my years? O that he were here to write me +down an ass! But, masters, remember that I am an +ass; though it be not written down, yet forget not +that I am an ass. No, thou villain, thou art full of +piety, as shall be proved upon thee by good witness. +I am a wise fellow, and, which is more, an officer, +and, which is more, a householder, and, which is +more, as pretty a piece of flesh as any is in +Messina, and one that knows the law, go to; and a +rich fellow enough, go to; and a fellow that hath +had losses, and one that hath two gowns and every +thing handsome about him. Bring him away. O that +I had been writ down an ass! + +ANTONIO: +If you go on thus, you will kill yourself: +And 'tis not wisdom thus to second grief +Against yourself. + +LEONATO: +I pray thee, cease thy counsel, +Which falls into mine ears as profitless +As water in a sieve: give not me counsel; +Nor let no comforter delight mine ear +But such a one whose wrongs do suit with mine. +Bring me a father that so loved his child, +Whose joy of her is overwhelm'd like mine, +And bid him speak of patience; +Measure his woe the length and breadth of mine +And let it answer every strain for strain, +As thus for thus and such a grief for such, +In every lineament, branch, shape, and form: +If such a one will smile and stroke his beard, +Bid sorrow wag, cry 'hem!' when he should groan, +Patch grief with proverbs, make misfortune drunk +With candle-wasters; bring him yet to me, +And I of him will gather patience. +But there is no such man: for, brother, men +Can counsel and speak comfort to that grief +Which they themselves not feel; but, tasting it, +Their counsel turns to passion, which before +Would give preceptial medicine to rage, +Fetter strong madness in a silken thread, +Charm ache with air and agony with words: +No, no; 'tis all men's office to speak patience +To those that wring under the load of sorrow, +But no man's virtue nor sufficiency +To be so moral when he shall endure +The like himself. Therefore give me no counsel: +My griefs cry louder than advertisement. + +ANTONIO: +Therein do men from children nothing differ. + +LEONATO: +I pray thee, peace. I will be flesh and blood; +For there was never yet philosopher +That could endure the toothache patiently, +However they have writ the style of gods +And made a push at chance and sufferance. + +ANTONIO: +Yet bend not all the harm upon yourself; +Make those that do offend you suffer too. + +LEONATO: +There thou speak'st reason: nay, I will do so. +My soul doth tell me Hero is belied; +And that shall Claudio know; so shall the prince +And all of them that thus dishonour her. + +ANTONIO: +Here comes the prince and Claudio hastily. + +DON PEDRO: +Good den, good den. + +CLAUDIO: +Good day to both of you. + +LEONATO: +Hear you. my lords,-- + +DON PEDRO: +We have some haste, Leonato. + +LEONATO: +Some haste, my lord! well, fare you well, my lord: +Are you so hasty now? well, all is one. + +DON PEDRO: +Nay, do not quarrel with us, good old man. + +ANTONIO: +If he could right himself with quarreling, +Some of us would lie low. + +CLAUDIO: +Who wrongs him? + +LEONATO: +Marry, thou dost wrong me; thou dissembler, thou:-- +Nay, never lay thy hand upon thy sword; +I fear thee not. + +CLAUDIO: +Marry, beshrew my hand, +If it should give your age such cause of fear: +In faith, my hand meant nothing to my sword. + +LEONATO: +Tush, tush, man; never fleer and jest at me: +I speak not like a dotard nor a fool, +As under privilege of age to brag +What I have done being young, or what would do +Were I not old. Know, Claudio, to thy head, +Thou hast so wrong'd mine innocent child and me +That I am forced to lay my reverence by +And, with grey hairs and bruise of many days, +Do challenge thee to trial of a man. +I say thou hast belied mine innocent child; +Thy slander hath gone through and through her heart, +And she lies buried with her ancestors; +O, in a tomb where never scandal slept, +Save this of hers, framed by thy villany! + +CLAUDIO: +My villany? + +LEONATO: +Thine, Claudio; thine, I say. + +DON PEDRO: +You say not right, old man. + +LEONATO: +My lord, my lord, +I'll prove it on his body, if he dare, +Despite his nice fence and his active practise, +His May of youth and bloom of lustihood. + +CLAUDIO: +Away! I will not have to do with you. + +LEONATO: +Canst thou so daff me? Thou hast kill'd my child: +If thou kill'st me, boy, thou shalt kill a man. + +ANTONIO: +He shall kill two of us, and men indeed: +But that's no matter; let him kill one first; +Win me and wear me; let him answer me. +Come, follow me, boy; come, sir boy, come, follow me: +Sir boy, I'll whip you from your foining fence; +Nay, as I am a gentleman, I will. + +LEONATO: +Brother,-- + +ANTONIO: +Content yourself. God knows I loved my niece; +And she is dead, slander'd to death by villains, +That dare as well answer a man indeed +As I dare take a serpent by the tongue: +Boys, apes, braggarts, Jacks, milksops! + +LEONATO: +Brother Antony,-- + +ANTONIO: +Hold you content. What, man! I know them, yea, +And what they weigh, even to the utmost scruple,-- +Scrambling, out-facing, fashion-monging boys, +That lie and cog and flout, deprave and slander, +Go anticly, show outward hideousness, +And speak off half a dozen dangerous words, +How they might hurt their enemies, if they durst; +And this is all. + +LEONATO: +But, brother Antony,-- + +ANTONIO: +Come, 'tis no matter: +Do not you meddle; let me deal in this. + +DON PEDRO: +Gentlemen both, we will not wake your patience. +My heart is sorry for your daughter's death: +But, on my honour, she was charged with nothing +But what was true and very full of proof. + +LEONATO: +My lord, my lord,-- + +DON PEDRO: +I will not hear you. + +LEONATO: +No? Come, brother; away! I will be heard. + +ANTONIO: +And shall, or some of us will smart for it. + +DON PEDRO: +See, see; here comes the man we went to seek. + +CLAUDIO: +Now, signior, what news? + +BENEDICK: +Good day, my lord. + +DON PEDRO: +Welcome, signior: you are almost come to part +almost a fray. + +CLAUDIO: +We had like to have had our two noses snapped off +with two old men without teeth. + +DON PEDRO: +Leonato and his brother. What thinkest thou? Had +we fought, I doubt we should have been too young for them. + +BENEDICK: +In a false quarrel there is no true valour. I came +to seek you both. + +CLAUDIO: +We have been up and down to seek thee; for we are +high-proof melancholy and would fain have it beaten +away. Wilt thou use thy wit? + +BENEDICK: +It is in my scabbard: shall I draw it? + +DON PEDRO: +Dost thou wear thy wit by thy side? + +CLAUDIO: +Never any did so, though very many have been beside +their wit. I will bid thee draw, as we do the +minstrels; draw, to pleasure us. + +DON PEDRO: +As I am an honest man, he looks pale. Art thou +sick, or angry? + +CLAUDIO: +What, courage, man! What though care killed a cat, +thou hast mettle enough in thee to kill care. + +BENEDICK: +Sir, I shall meet your wit in the career, and you +charge it against me. I pray you choose another subject. + +CLAUDIO: +Nay, then, give him another staff: this last was +broke cross. + +DON PEDRO: +By this light, he changes more and more: I think +he be angry indeed. + +CLAUDIO: +If he be, he knows how to turn his girdle. + +BENEDICK: +Shall I speak a word in your ear? + +CLAUDIO: +God bless me from a challenge! + +BENEDICK: + +CLAUDIO: +Well, I will meet you, so I may have good cheer. + +DON PEDRO: +What, a feast, a feast? + +CLAUDIO: +I' faith, I thank him; he hath bid me to a calf's +head and a capon; the which if I do not carve most +curiously, say my knife's naught. Shall I not find +a woodcock too? + +BENEDICK: +Sir, your wit ambles well; it goes easily. + +DON PEDRO: +I'll tell thee how Beatrice praised thy wit the +other day. I said, thou hadst a fine wit: 'True,' +said she, 'a fine little one.' 'No,' said I, 'a +great wit:' 'Right,' says she, 'a great gross one.' +'Nay,' said I, 'a good wit:' 'Just,' said she, 'it +hurts nobody.' 'Nay,' said I, 'the gentleman +is wise:' 'Certain,' said she, 'a wise gentleman.' +'Nay,' said I, 'he hath the tongues:' 'That I +believe,' said she, 'for he swore a thing to me on +Monday night, which he forswore on Tuesday morning; +there's a double tongue; there's two tongues.' Thus +did she, an hour together, transshape thy particular +virtues: yet at last she concluded with a sigh, thou +wast the properest man in Italy. + +CLAUDIO: +For the which she wept heartily and said she cared +not. + +DON PEDRO: +Yea, that she did: but yet, for all that, an if she +did not hate him deadly, she would love him dearly: +the old man's daughter told us all. + +CLAUDIO: +All, all; and, moreover, God saw him when he was +hid in the garden. + +DON PEDRO: +But when shall we set the savage bull's horns on +the sensible Benedick's head? + +CLAUDIO: +Yea, and text underneath, 'Here dwells Benedick the +married man'? + +BENEDICK: +Fare you well, boy: you know my mind. I will leave +you now to your gossip-like humour: you break jests +as braggarts do their blades, which God be thanked, +hurt not. My lord, for your many courtesies I thank +you: I must discontinue your company: your brother +the bastard is fled from Messina: you have among +you killed a sweet and innocent lady. For my Lord +Lackbeard there, he and I shall meet: and, till +then, peace be with him. + +DON PEDRO: +He is in earnest. + +CLAUDIO: +In most profound earnest; and, I'll warrant you, for +the love of Beatrice. + +DON PEDRO: +And hath challenged thee. + +CLAUDIO: +Most sincerely. + +DON PEDRO: +What a pretty thing man is when he goes in his +doublet and hose and leaves off his wit! + +CLAUDIO: +He is then a giant to an ape; but then is an ape a +doctor to such a man. + +DON PEDRO: +But, soft you, let me be: pluck up, my heart, and +be sad. Did he not say, my brother was fled? + +DOGBERRY: +Come you, sir: if justice cannot tame you, she +shall ne'er weigh more reasons in her balance: nay, +an you be a cursing hypocrite once, you must be looked to. + +DON PEDRO: +How now? two of my brother's men bound! Borachio +one! + +CLAUDIO: +Hearken after their offence, my lord. + +DON PEDRO: +Officers, what offence have these men done? + +DOGBERRY: +Marry, sir, they have committed false report; +moreover, they have spoken untruths; secondarily, +they are slanders; sixth and lastly, they have +belied a lady; thirdly, they have verified unjust +things; and, to conclude, they are lying knaves. + +DON PEDRO: +First, I ask thee what they have done; thirdly, I +ask thee what's their offence; sixth and lastly, why +they are committed; and, to conclude, what you lay +to their charge. + +CLAUDIO: +Rightly reasoned, and in his own division: and, by +my troth, there's one meaning well suited. + +DON PEDRO: +Who have you offended, masters, that you are thus +bound to your answer? this learned constable is +too cunning to be understood: what's your offence? + +BORACHIO: +Sweet prince, let me go no farther to mine answer: +do you hear me, and let this count kill me. I have +deceived even your very eyes: what your wisdoms +could not discover, these shallow fools have brought +to light: who in the night overheard me confessing +to this man how Don John your brother incensed me +to slander the Lady Hero, how you were brought into +the orchard and saw me court Margaret in Hero's +garments, how you disgraced her, when you should +marry her: my villany they have upon record; which +I had rather seal with my death than repeat over +to my shame. The lady is dead upon mine and my +master's false accusation; and, briefly, I desire +nothing but the reward of a villain. + +DON PEDRO: +Runs not this speech like iron through your blood? + +CLAUDIO: +I have drunk poison whiles he utter'd it. + +DON PEDRO: +But did my brother set thee on to this? + +BORACHIO: +Yea, and paid me richly for the practise of it. + +DON PEDRO: +He is composed and framed of treachery: +And fled he is upon this villany. + +CLAUDIO: +Sweet Hero! now thy image doth appear +In the rare semblance that I loved it first. + +DOGBERRY: +Come, bring away the plaintiffs: by this time our +sexton hath reformed Signior Leonato of the matter: +and, masters, do not forget to specify, when time +and place shall serve, that I am an ass. + +VERGES: +Here, here comes master Signior Leonato, and the +Sexton too. + +LEONATO: +Which is the villain? let me see his eyes, +That, when I note another man like him, +I may avoid him: which of these is he? + +BORACHIO: +If you would know your wronger, look on me. + +LEONATO: +Art thou the slave that with thy breath hast kill'd +Mine innocent child? + +BORACHIO: +Yea, even I alone. + +LEONATO: +No, not so, villain; thou beliest thyself: +Here stand a pair of honourable men; +A third is fled, that had a hand in it. +I thank you, princes, for my daughter's death: +Record it with your high and worthy deeds: +'Twas bravely done, if you bethink you of it. + +CLAUDIO: +I know not how to pray your patience; +Yet I must speak. Choose your revenge yourself; +Impose me to what penance your invention +Can lay upon my sin: yet sinn'd I not +But in mistaking. + +DON PEDRO: +By my soul, nor I: +And yet, to satisfy this good old man, +I would bend under any heavy weight +That he'll enjoin me to. + +LEONATO: +I cannot bid you bid my daughter live; +That were impossible: but, I pray you both, +Possess the people in Messina here +How innocent she died; and if your love +Can labour ought in sad invention, +Hang her an epitaph upon her tomb +And sing it to her bones, sing it to-night: +To-morrow morning come you to my house, +And since you could not be my son-in-law, +Be yet my nephew: my brother hath a daughter, +Almost the copy of my child that's dead, +And she alone is heir to both of us: +Give her the right you should have given her cousin, +And so dies my revenge. + +CLAUDIO: +O noble sir, +Your over-kindness doth wring tears from me! +I do embrace your offer; and dispose +For henceforth of poor Claudio. + +LEONATO: +To-morrow then I will expect your coming; +To-night I take my leave. This naughty man +Shall face to face be brought to Margaret, +Who I believe was pack'd in all this wrong, +Hired to it by your brother. + +BORACHIO: +No, by my soul, she was not, +Nor knew not what she did when she spoke to me, +But always hath been just and virtuous +In any thing that I do know by her. + +DOGBERRY: +Moreover, sir, which indeed is not under white and +black, this plaintiff here, the offender, did call +me ass: I beseech you, let it be remembered in his +punishment. And also, the watch heard them talk of +one Deformed: they say be wears a key in his ear and +a lock hanging by it, and borrows money in God's +name, the which he hath used so long and never paid +that now men grow hard-hearted and will lend nothing +for God's sake: pray you, examine him upon that point. + +LEONATO: +I thank thee for thy care and honest pains. + +DOGBERRY: +Your worship speaks like a most thankful and +reverend youth; and I praise God for you. + +LEONATO: +There's for thy pains. + +DOGBERRY: +God save the foundation! + +LEONATO: +Go, I discharge thee of thy prisoner, and I thank thee. + +DOGBERRY: +I leave an arrant knave with your worship; which I +beseech your worship to correct yourself, for the +example of others. God keep your worship! I wish +your worship well; God restore you to health! I +humbly give you leave to depart; and if a merry +meeting may be wished, God prohibit it! Come, neighbour. + +LEONATO: +Until to-morrow morning, lords, farewell. + +ANTONIO: +Farewell, my lords: we look for you to-morrow. + +DON PEDRO: +We will not fail. + +CLAUDIO: +To-night I'll mourn with Hero. + +LEONATO: + +BENEDICK: +Pray thee, sweet Mistress Margaret, deserve well at +my hands by helping me to the speech of Beatrice. + +MARGARET: +Will you then write me a sonnet in praise of my beauty? + +BENEDICK: +In so high a style, Margaret, that no man living +shall come over it; for, in most comely truth, thou +deservest it. + +MARGARET: +To have no man come over me! why, shall I always +keep below stairs? + +BENEDICK: +Thy wit is as quick as the greyhound's mouth; it catches. + +MARGARET: +And yours as blunt as the fencer's foils, which hit, +but hurt not. + +BENEDICK: +A most manly wit, Margaret; it will not hurt a +woman: and so, I pray thee, call Beatrice: I give +thee the bucklers. + +MARGARET: +Give us the swords; we have bucklers of our own. + +BENEDICK: +If you use them, Margaret, you must put in the +pikes with a vice; and they are dangerous weapons for maids. + +MARGARET: +Well, I will call Beatrice to you, who I think hath legs. + +BENEDICK: +And therefore will come. +The god of love, +That sits above, +And knows me, and knows me, +How pitiful I deserve,-- +I mean in singing; but in loving, Leander the good +swimmer, Troilus the first employer of panders, and +a whole bookful of these quondam carpet-mangers, +whose names yet run smoothly in the even road of a +blank verse, why, they were never so truly turned +over and over as my poor self in love. Marry, I +cannot show it in rhyme; I have tried: I can find +out no rhyme to 'lady' but 'baby,' an innocent +rhyme; for 'scorn,' 'horn,' a hard rhyme; for, +'school,' 'fool,' a babbling rhyme; very ominous +endings: no, I was not born under a rhyming planet, +nor I cannot woo in festival terms. +Sweet Beatrice, wouldst thou come when I called thee? + +BEATRICE: +Yea, signior, and depart when you bid me. + +BENEDICK: +O, stay but till then! + +BEATRICE: +'Then' is spoken; fare you well now: and yet, ere +I go, let me go with that I came; which is, with +knowing what hath passed between you and Claudio. + +BENEDICK: +Only foul words; and thereupon I will kiss thee. + +BEATRICE: +Foul words is but foul wind, and foul wind is but +foul breath, and foul breath is noisome; therefore I +will depart unkissed. + +BENEDICK: +Thou hast frighted the word out of his right sense, +so forcible is thy wit. But I must tell thee +plainly, Claudio undergoes my challenge; and either +I must shortly hear from him, or I will subscribe +him a coward. And, I pray thee now, tell me for +which of my bad parts didst thou first fall in love with me? + +BEATRICE: +For them all together; which maintained so politic +a state of evil that they will not admit any good +part to intermingle with them. But for which of my +good parts did you first suffer love for me? + +BENEDICK: +Suffer love! a good epithet! I do suffer love +indeed, for I love thee against my will. + +BEATRICE: +In spite of your heart, I think; alas, poor heart! +If you spite it for my sake, I will spite it for +yours; for I will never love that which my friend hates. + +BENEDICK: +Thou and I are too wise to woo peaceably. + +BEATRICE: +It appears not in this confession: there's not one +wise man among twenty that will praise himself. + +BENEDICK: +An old, an old instance, Beatrice, that lived in +the lime of good neighbours. If a man do not erect +in this age his own tomb ere he dies, he shall live +no longer in monument than the bell rings and the +widow weeps. + +BEATRICE: +And how long is that, think you? + +BENEDICK: +Question: why, an hour in clamour and a quarter in +rheum: therefore is it most expedient for the +wise, if Don Worm, his conscience, find no +impediment to the contrary, to be the trumpet of his +own virtues, as I am to myself. So much for +praising myself, who, I myself will bear witness, is +praiseworthy: and now tell me, how doth your cousin? + +BEATRICE: +Very ill. + +BENEDICK: +And how do you? + +BEATRICE: +Very ill too. + +BENEDICK: +Serve God, love me and mend. There will I leave +you too, for here comes one in haste. + +URSULA: +Madam, you must come to your uncle. Yonder's old +coil at home: it is proved my Lady Hero hath been +falsely accused, the prince and Claudio mightily +abused; and Don John is the author of all, who is +fed and gone. Will you come presently? + +BEATRICE: +Will you go hear this news, signior? + +BENEDICK: +I will live in thy heart, die in thy lap, and be +buried in thy eyes; and moreover I will go with +thee to thy uncle's. + +CLAUDIO: +Is this the monument of Leonato? + +Lord: +It is, my lord. + +CLAUDIO: + +CLAUDIO: +Now, unto thy bones good night! +Yearly will I do this rite. + +DON PEDRO: +Good morrow, masters; put your torches out: +The wolves have prey'd; and look, the gentle day, +Before the wheels of Phoebus, round about +Dapples the drowsy east with spots of grey. +Thanks to you all, and leave us: fare you well. + +CLAUDIO: +Good morrow, masters: each his several way. + +DON PEDRO: +Come, let us hence, and put on other weeds; +And then to Leonato's we will go. + +CLAUDIO: +And Hymen now with luckier issue speed's +Than this for whom we render'd up this woe. + +FRIAR FRANCIS: +Did I not tell you she was innocent? + +LEONATO: +So are the prince and Claudio, who accused her +Upon the error that you heard debated: +But Margaret was in some fault for this, +Although against her will, as it appears +In the true course of all the question. + +ANTONIO: +Well, I am glad that all things sort so well. + +BENEDICK: +And so am I, being else by faith enforced +To call young Claudio to a reckoning for it. + +LEONATO: +Well, daughter, and you gentle-women all, +Withdraw into a chamber by yourselves, +And when I send for you, come hither mask'd. +The prince and Claudio promised by this hour +To visit me. You know your office, brother: +You must be father to your brother's daughter +And give her to young Claudio. + +ANTONIO: +Which I will do with confirm'd countenance. + +BENEDICK: +Friar, I must entreat your pains, I think. + +FRIAR FRANCIS: +To do what, signior? + +BENEDICK: +To bind me, or undo me; one of them. +Signior Leonato, truth it is, good signior, +Your niece regards me with an eye of favour. + +LEONATO: +That eye my daughter lent her: 'tis most true. + +BENEDICK: +And I do with an eye of love requite her. + +LEONATO: +The sight whereof I think you had from me, +From Claudio and the prince: but what's your will? + +BENEDICK: +Your answer, sir, is enigmatical: +But, for my will, my will is your good will +May stand with ours, this day to be conjoin'd +In the state of honourable marriage: +In which, good friar, I shall desire your help. + +LEONATO: +My heart is with your liking. + +FRIAR FRANCIS: +And my help. +Here comes the prince and Claudio. + +DON PEDRO: +Good morrow to this fair assembly. + +LEONATO: +Good morrow, prince; good morrow, Claudio: +We here attend you. Are you yet determined +To-day to marry with my brother's daughter? + +CLAUDIO: +I'll hold my mind, were she an Ethiope. + +LEONATO: +Call her forth, brother; here's the friar ready. + +DON PEDRO: +Good morrow, Benedick. Why, what's the matter, +That you have such a February face, +So full of frost, of storm and cloudiness? + +CLAUDIO: +I think he thinks upon the savage bull. +Tush, fear not, man; we'll tip thy horns with gold +And all Europa shall rejoice at thee, +As once Europa did at lusty Jove, +When he would play the noble beast in love. + +BENEDICK: +Bull Jove, sir, had an amiable low; +And some such strange bull leap'd your father's cow, +And got a calf in that same noble feat +Much like to you, for you have just his bleat. + +CLAUDIO: +For this I owe you: here comes other reckonings. +Which is the lady I must seize upon? + +ANTONIO: +This same is she, and I do give you her. + +CLAUDIO: +Why, then she's mine. Sweet, let me see your face. + +LEONATO: +No, that you shall not, till you take her hand +Before this friar and swear to marry her. + +CLAUDIO: +Give me your hand: before this holy friar, +I am your husband, if you like of me. + +HERO: +And when I lived, I was your other wife: +And when you loved, you were my other husband. + +CLAUDIO: +Another Hero! + +HERO: +Nothing certainer: +One Hero died defiled, but I do live, +And surely as I live, I am a maid. + +DON PEDRO: +The former Hero! Hero that is dead! + +LEONATO: +She died, my lord, but whiles her slander lived. + +FRIAR FRANCIS: +All this amazement can I qualify: +When after that the holy rites are ended, +I'll tell you largely of fair Hero's death: +Meantime let wonder seem familiar, +And to the chapel let us presently. + +BENEDICK: +Soft and fair, friar. Which is Beatrice? + +BEATRICE: + +BENEDICK: +Do not you love me? + +BEATRICE: +Why, no; no more than reason. + +BENEDICK: +Why, then your uncle and the prince and Claudio +Have been deceived; they swore you did. + +BEATRICE: +Do not you love me? + +BENEDICK: +Troth, no; no more than reason. + +BEATRICE: +Why, then my cousin Margaret and Ursula +Are much deceived; for they did swear you did. + +BENEDICK: +They swore that you were almost sick for me. + +BEATRICE: +They swore that you were well-nigh dead for me. + +BENEDICK: +'Tis no such matter. Then you do not love me? + +BEATRICE: +No, truly, but in friendly recompense. + +LEONATO: +Come, cousin, I am sure you love the gentleman. + +CLAUDIO: +And I'll be sworn upon't that he loves her; +For here's a paper written in his hand, +A halting sonnet of his own pure brain, +Fashion'd to Beatrice. + +HERO: +And here's another +Writ in my cousin's hand, stolen from her pocket, +Containing her affection unto Benedick. + +BENEDICK: +A miracle! here's our own hands against our hearts. +Come, I will have thee; but, by this light, I take +thee for pity. + +BEATRICE: +I would not deny you; but, by this good day, I yield +upon great persuasion; and partly to save your life, +for I was told you were in a consumption. + +BENEDICK: +Peace! I will stop your mouth. + +DON PEDRO: +How dost thou, Benedick, the married man? + +BENEDICK: +I'll tell thee what, prince; a college of +wit-crackers cannot flout me out of my humour. Dost +thou think I care for a satire or an epigram? No: +if a man will be beaten with brains, a' shall wear +nothing handsome about him. In brief, since I do +purpose to marry, I will think nothing to any +purpose that the world can say against it; and +therefore never flout at me for what I have said +against it; for man is a giddy thing, and this is my +conclusion. For thy part, Claudio, I did think to +have beaten thee, but in that thou art like to be my +kinsman, live unbruised and love my cousin. + +CLAUDIO: +I had well hoped thou wouldst have denied Beatrice, +that I might have cudgelled thee out of thy single +life, to make thee a double-dealer; which, out of +question, thou wilt be, if my cousin do not look +exceedingly narrowly to thee. + +BENEDICK: +Come, come, we are friends: let's have a dance ere +we are married, that we may lighten our own hearts +and our wives' heels. + +LEONATO: +We'll have dancing afterward. + +BENEDICK: +First, of my word; therefore play, music. Prince, +thou art sad; get thee a wife, get thee a wife: +there is no staff more reverend than one tipped with horn. + +Messenger: +My lord, your brother John is ta'en in flight, +And brought with armed men back to Messina. + +BENEDICK: +Think not on him till to-morrow: +I'll devise thee brave punishments for him. +Strike up, pipers. + +KENT: +I thought the king had more affected the Duke of +Albany than Cornwall. + +GLOUCESTER: +It did always seem so to us: but now, in the +division of the kingdom, it appears not which of +the dukes he values most; for equalities are so +weighed, that curiosity in neither can make choice +of either's moiety. + +KENT: +Is not this your son, my lord? + +GLOUCESTER: +His breeding, sir, hath been at my charge: I have +so often blushed to acknowledge him, that now I am +brazed to it. + +KENT: +I cannot conceive you. + +GLOUCESTER: +Sir, this young fellow's mother could: whereupon +she grew round-wombed, and had, indeed, sir, a son +for her cradle ere she had a husband for her bed. +Do you smell a fault? + +KENT: +I cannot wish the fault undone, the issue of it +being so proper. + +GLOUCESTER: +But I have, sir, a son by order of law, some year +elder than this, who yet is no dearer in my account: +though this knave came something saucily into the +world before he was sent for, yet was his mother +fair; there was good sport at his making, and the +whoreson must be acknowledged. Do you know this +noble gentleman, Edmund? + +EDMUND: +No, my lord. + +GLOUCESTER: +My lord of Kent: remember him hereafter as my +honourable friend. + +EDMUND: +My services to your lordship. + +KENT: +I must love you, and sue to know you better. + +EDMUND: +Sir, I shall study deserving. + +GLOUCESTER: +He hath been out nine years, and away he shall +again. The king is coming. + +KING LEAR: +Attend the lords of France and Burgundy, Gloucester. + +GLOUCESTER: +I shall, my liege. + +KING LEAR: +Meantime we shall express our darker purpose. +Give me the map there. Know that we have divided +In three our kingdom: and 'tis our fast intent +To shake all cares and business from our age; +Conferring them on younger strengths, while we +Unburthen'd crawl toward death. Our son of Cornwall, +And you, our no less loving son of Albany, +We have this hour a constant will to publish +Our daughters' several dowers, that future strife +May be prevented now. The princes, France and Burgundy, +Great rivals in our youngest daughter's love, +Long in our court have made their amorous sojourn, +And here are to be answer'd. Tell me, my daughters,-- +Since now we will divest us both of rule, +Interest of territory, cares of state,-- +Which of you shall we say doth love us most? +That we our largest bounty may extend +Where nature doth with merit challenge. Goneril, +Our eldest-born, speak first. + +GONERIL: +Sir, I love you more than words can wield the matter; +Dearer than eye-sight, space, and liberty; +Beyond what can be valued, rich or rare; +No less than life, with grace, health, beauty, honour; +As much as child e'er loved, or father found; +A love that makes breath poor, and speech unable; +Beyond all manner of so much I love you. + +CORDELIA: + +LEAR: +Of all these bounds, even from this line to this, +With shadowy forests and with champains rich'd, +With plenteous rivers and wide-skirted meads, +We make thee lady: to thine and Albany's issue +Be this perpetual. What says our second daughter, +Our dearest Regan, wife to Cornwall? Speak. + +REGAN: +Sir, I am made +Of the self-same metal that my sister is, +And prize me at her worth. In my true heart +I find she names my very deed of love; +Only she comes too short: that I profess +Myself an enemy to all other joys, +Which the most precious square of sense possesses; +And find I am alone felicitate +In your dear highness' love. + +CORDELIA: + +KING LEAR: +To thee and thine hereditary ever +Remain this ample third of our fair kingdom; +No less in space, validity, and pleasure, +Than that conferr'd on Goneril. Now, our joy, +Although the last, not least; to whose young love +The vines of France and milk of Burgundy +Strive to be interess'd; what can you say to draw +A third more opulent than your sisters? Speak. + +CORDELIA: +Nothing, my lord. + +KING LEAR: +Nothing! + +CORDELIA: +Nothing. + +KING LEAR: +Nothing will come of nothing: speak again. + +CORDELIA: +Unhappy that I am, I cannot heave +My heart into my mouth: I love your majesty +According to my bond; nor more nor less. + +KING LEAR: +How, how, Cordelia! mend your speech a little, +Lest it may mar your fortunes. + +CORDELIA: +Good my lord, +You have begot me, bred me, loved me: I +Return those duties back as are right fit, +Obey you, love you, and most honour you. +Why have my sisters husbands, if they say +They love you all? Haply, when I shall wed, +That lord whose hand must take my plight shall carry +Half my love with him, half my care and duty: +Sure, I shall never marry like my sisters, +To love my father all. + +KING LEAR: +But goes thy heart with this? + +CORDELIA: +Ay, good my lord. + +KING LEAR: +So young, and so untender? + +CORDELIA: +So young, my lord, and true. + +KING LEAR: +Let it be so; thy truth, then, be thy dower: +For, by the sacred radiance of the sun, +The mysteries of Hecate, and the night; +By all the operation of the orbs +From whom we do exist, and cease to be; +Here I disclaim all my paternal care, +Propinquity and property of blood, +And as a stranger to my heart and me +Hold thee, from this, for ever. The barbarous Scythian, +Or he that makes his generation messes +To gorge his appetite, shall to my bosom +Be as well neighbour'd, pitied, and relieved, +As thou my sometime daughter. + +KENT: +Good my liege,-- + +KING LEAR: +Peace, Kent! +Come not between the dragon and his wrath. +I loved her most, and thought to set my rest +On her kind nursery. Hence, and avoid my sight! +So be my grave my peace, as here I give +Her father's heart from her! Call France; who stirs? +Call Burgundy. Cornwall and Albany, +With my two daughters' dowers digest this third: +Let pride, which she calls plainness, marry her. +I do invest you jointly with my power, +Pre-eminence, and all the large effects +That troop with majesty. Ourself, by monthly course, +With reservation of an hundred knights, +By you to be sustain'd, shall our abode +Make with you by due turns. Only we still retain +The name, and all the additions to a king; +The sway, revenue, execution of the rest, +Beloved sons, be yours: which to confirm, +This coronet part betwixt you. + +KENT: +Royal Lear, +Whom I have ever honour'd as my king, +Loved as my father, as my master follow'd, +As my great patron thought on in my prayers,-- + +KING LEAR: +The bow is bent and drawn, make from the shaft. + +KENT: +Let it fall rather, though the fork invade +The region of my heart: be Kent unmannerly, +When Lear is mad. What wilt thou do, old man? +Think'st thou that duty shall have dread to speak, +When power to flattery bows? To plainness honour's bound, +When majesty stoops to folly. Reverse thy doom; +And, in thy best consideration, cheque +This hideous rashness: answer my life my judgment, +Thy youngest daughter does not love thee least; +Nor are those empty-hearted whose low sound +Reverbs no hollowness. + +KING LEAR: +Kent, on thy life, no more. + +KENT: +My life I never held but as a pawn +To wage against thy enemies; nor fear to lose it, +Thy safety being the motive. + +KING LEAR: +Out of my sight! + +KENT: +See better, Lear; and let me still remain +The true blank of thine eye. + +KING LEAR: +Now, by Apollo,-- + +KENT: +Now, by Apollo, king, +Thou swear'st thy gods in vain. + +KING LEAR: +O, vassal! miscreant! + +ALBANY: +Dear sir, forbear. + +KENT: +Do: +Kill thy physician, and the fee bestow +Upon thy foul disease. Revoke thy doom; +Or, whilst I can vent clamour from my throat, +I'll tell thee thou dost evil. + +KING LEAR: +Hear me, recreant! +On thine allegiance, hear me! +Since thou hast sought to make us break our vow, +Which we durst never yet, and with strain'd pride +To come between our sentence and our power, +Which nor our nature nor our place can bear, +Our potency made good, take thy reward. +Five days we do allot thee, for provision +To shield thee from diseases of the world; +And on the sixth to turn thy hated back +Upon our kingdom: if, on the tenth day following, +Thy banish'd trunk be found in our dominions, +The moment is thy death. Away! by Jupiter, +This shall not be revoked. + +KENT: +Fare thee well, king: sith thus thou wilt appear, +Freedom lives hence, and banishment is here. +The gods to their dear shelter take thee, maid, +That justly think'st, and hast most rightly said! +And your large speeches may your deeds approve, +That good effects may spring from words of love. +Thus Kent, O princes, bids you all adieu; +He'll shape his old course in a country new. + +GLOUCESTER: +Here's France and Burgundy, my noble lord. + +KING LEAR: +My lord of Burgundy. +We first address towards you, who with this king +Hath rivall'd for our daughter: what, in the least, +Will you require in present dower with her, +Or cease your quest of love? + +BURGUNDY: +Most royal majesty, +I crave no more than what your highness offer'd, +Nor will you tender less. + +KING LEAR: +Right noble Burgundy, +When she was dear to us, we did hold her so; +But now her price is fall'n. Sir, there she stands: +If aught within that little seeming substance, +Or all of it, with our displeasure pieced, +And nothing more, may fitly like your grace, +She's there, and she is yours. + +BURGUNDY: +I know no answer. + +KING LEAR: +Will you, with those infirmities she owes, +Unfriended, new-adopted to our hate, +Dower'd with our curse, and stranger'd with our oath, +Take her, or leave her? + +BURGUNDY: +Pardon me, royal sir; +Election makes not up on such conditions. + +KING LEAR: +Then leave her, sir; for, by the power that made me, +I tell you all her wealth. +For you, great king, +I would not from your love make such a stray, +To match you where I hate; therefore beseech you +To avert your liking a more worthier way +Than on a wretch whom nature is ashamed +Almost to acknowledge hers. + +KING OF FRANCE: +This is most strange, +That she, that even but now was your best object, +The argument of your praise, balm of your age, +Most best, most dearest, should in this trice of time +Commit a thing so monstrous, to dismantle +So many folds of favour. Sure, her offence +Must be of such unnatural degree, +That monsters it, or your fore-vouch'd affection +Fall'n into taint: which to believe of her, +Must be a faith that reason without miracle +Could never plant in me. + +CORDELIA: +I yet beseech your majesty,-- +If for I want that glib and oily art, +To speak and purpose not; since what I well intend, +I'll do't before I speak,--that you make known +It is no vicious blot, murder, or foulness, +No unchaste action, or dishonour'd step, +That hath deprived me of your grace and favour; +But even for want of that for which I am richer, +A still-soliciting eye, and such a tongue +As I am glad I have not, though not to have it +Hath lost me in your liking. + +KING LEAR: +Better thou +Hadst not been born than not to have pleased me better. + +KING OF FRANCE: +Is it but this,--a tardiness in nature +Which often leaves the history unspoke +That it intends to do? My lord of Burgundy, +What say you to the lady? Love's not love +When it is mingled with regards that stand +Aloof from the entire point. Will you have her? +She is herself a dowry. + +BURGUNDY: +Royal Lear, +Give but that portion which yourself proposed, +And here I take Cordelia by the hand, +Duchess of Burgundy. + +KING LEAR: +Nothing: I have sworn; I am firm. + +BURGUNDY: +I am sorry, then, you have so lost a father +That you must lose a husband. + +CORDELIA: +Peace be with Burgundy! +Since that respects of fortune are his love, +I shall not be his wife. + +KING OF FRANCE: +Fairest Cordelia, that art most rich, being poor; +Most choice, forsaken; and most loved, despised! +Thee and thy virtues here I seize upon: +Be it lawful I take up what's cast away. +Gods, gods! 'tis strange that from their cold'st neglect +My love should kindle to inflamed respect. +Thy dowerless daughter, king, thrown to my chance, +Is queen of us, of ours, and our fair France: +Not all the dukes of waterish Burgundy +Can buy this unprized precious maid of me. +Bid them farewell, Cordelia, though unkind: +Thou losest here, a better where to find. + +KING LEAR: +Thou hast her, France: let her be thine; for we +Have no such daughter, nor shall ever see +That face of hers again. Therefore be gone +Without our grace, our love, our benison. +Come, noble Burgundy. + +KING OF FRANCE: +Bid farewell to your sisters. + +CORDELIA: +The jewels of our father, with wash'd eyes +Cordelia leaves you: I know you what you are; +And like a sister am most loath to call +Your faults as they are named. Use well our father: +To your professed bosoms I commit him +But yet, alas, stood I within his grace, +I would prefer him to a better place. +So, farewell to you both. + +REGAN: +Prescribe not us our duties. + +GONERIL: +Let your study +Be to content your lord, who hath received you +At fortune's alms. You have obedience scanted, +And well are worth the want that you have wanted. + +CORDELIA: +Time shall unfold what plaited cunning hides: +Who cover faults, at last shame them derides. +Well may you prosper! + +KING OF FRANCE: +Come, my fair Cordelia. + +GONERIL: +Sister, it is not a little I have to say of what +most nearly appertains to us both. I think our +father will hence to-night. + +REGAN: +That's most certain, and with you; next month with us. + +GONERIL: +You see how full of changes his age is; the +observation we have made of it hath not been +little: he always loved our sister most; and +with what poor judgment he hath now cast her off +appears too grossly. + +REGAN: +'Tis the infirmity of his age: yet he hath ever +but slenderly known himself. + +GONERIL: +The best and soundest of his time hath been but +rash; then must we look to receive from his age, +not alone the imperfections of long-engraffed +condition, but therewithal the unruly waywardness +that infirm and choleric years bring with them. + +REGAN: +Such unconstant starts are we like to have from +him as this of Kent's banishment. + +GONERIL: +There is further compliment of leavetaking +between France and him. Pray you, let's hit +together: if our father carry authority with +such dispositions as he bears, this last +surrender of his will but offend us. + +REGAN: +We shall further think on't. + +GONERIL: +We must do something, and i' the heat. + +EDMUND: +Thou, nature, art my goddess; to thy law +My services are bound. Wherefore should I +Stand in the plague of custom, and permit +The curiosity of nations to deprive me, +For that I am some twelve or fourteen moon-shines +Lag of a brother? Why bastard? wherefore base? +When my dimensions are as well compact, +My mind as generous, and my shape as true, +As honest madam's issue? Why brand they us +With base? with baseness? bastardy? base, base? +Who, in the lusty stealth of nature, take +More composition and fierce quality +Than doth, within a dull, stale, tired bed, +Go to the creating a whole tribe of fops, +Got 'tween asleep and wake? Well, then, +Legitimate Edgar, I must have your land: +Our father's love is to the bastard Edmund +As to the legitimate: fine word,--legitimate! +Well, my legitimate, if this letter speed, +And my invention thrive, Edmund the base +Shall top the legitimate. I grow; I prosper: +Now, gods, stand up for bastards! + +GLOUCESTER: +Kent banish'd thus! and France in choler parted! +And the king gone to-night! subscribed his power! +Confined to exhibition! All this done +Upon the gad! Edmund, how now! what news? + +EDMUND: +So please your lordship, none. + +GLOUCESTER: +Why so earnestly seek you to put up that letter? + +EDMUND: +I know no news, my lord. + +GLOUCESTER: +What paper were you reading? + +EDMUND: +Nothing, my lord. + +GLOUCESTER: +No? What needed, then, that terrible dispatch of +it into your pocket? the quality of nothing hath +not such need to hide itself. Let's see: come, +if it be nothing, I shall not need spectacles. + +EDMUND: +I beseech you, sir, pardon me: it is a letter +from my brother, that I have not all o'er-read; +and for so much as I have perused, I find it not +fit for your o'er-looking. + +GLOUCESTER: +Give me the letter, sir. + +EDMUND: +I shall offend, either to detain or give it. The +contents, as in part I understand them, are to blame. + +GLOUCESTER: +Let's see, let's see. + +EDMUND: +I hope, for my brother's justification, he wrote +this but as an essay or taste of my virtue. + +GLOUCESTER: + +EDMUND: +It was not brought me, my lord; there's the +cunning of it; I found it thrown in at the +casement of my closet. + +GLOUCESTER: +You know the character to be your brother's? + +EDMUND: +If the matter were good, my lord, I durst swear +it were his; but, in respect of that, I would +fain think it were not. + +GLOUCESTER: +It is his. + +EDMUND: +It is his hand, my lord; but I hope his heart is +not in the contents. + +GLOUCESTER: +Hath he never heretofore sounded you in this business? + +EDMUND: +Never, my lord: but I have heard him oft +maintain it to be fit, that, sons at perfect age, +and fathers declining, the father should be as +ward to the son, and the son manage his revenue. + +GLOUCESTER: +O villain, villain! His very opinion in the +letter! Abhorred villain! Unnatural, detested, +brutish villain! worse than brutish! Go, sirrah, +seek him; I'll apprehend him: abominable villain! +Where is he? + +EDMUND: +I do not well know, my lord. If it shall please +you to suspend your indignation against my +brother till you can derive from him better +testimony of his intent, you shall run a certain +course; where, if you violently proceed against +him, mistaking his purpose, it would make a great +gap in your own honour, and shake in pieces the +heart of his obedience. I dare pawn down my life +for him, that he hath wrote this to feel my +affection to your honour, and to no further +pretence of danger. + +GLOUCESTER: +Think you so? + +EDMUND: +If your honour judge it meet, I will place you +where you shall hear us confer of this, and by an +auricular assurance have your satisfaction; and +that without any further delay than this very evening. + +GLOUCESTER: +He cannot be such a monster-- + +EDMUND: +Nor is not, sure. + +GLOUCESTER: +To his father, that so tenderly and entirely +loves him. Heaven and earth! Edmund, seek him +out: wind me into him, I pray you: frame the +business after your own wisdom. I would unstate +myself, to be in a due resolution. + +EDMUND: +I will seek him, sir, presently: convey the +business as I shall find means and acquaint you withal. + +GLOUCESTER: +These late eclipses in the sun and moon portend +no good to us: though the wisdom of nature can +reason it thus and thus, yet nature finds itself +scourged by the sequent effects: love cools, +friendship falls off, brothers divide: in +cities, mutinies; in countries, discord; in +palaces, treason; and the bond cracked 'twixt son +and father. This villain of mine comes under the +prediction; there's son against father: the king +falls from bias of nature; there's father against +child. We have seen the best of our time: +machinations, hollowness, treachery, and all +ruinous disorders, follow us disquietly to our +graves. Find out this villain, Edmund; it shall +lose thee nothing; do it carefully. And the +noble and true-hearted Kent banished! his +offence, honesty! 'Tis strange. + +EDMUND: +This is the excellent foppery of the world, that, +when we are sick in fortune,--often the surfeit +of our own behavior,--we make guilty of our +disasters the sun, the moon, and the stars: as +if we were villains by necessity; fools by +heavenly compulsion; knaves, thieves, and +treachers, by spherical predominance; drunkards, +liars, and adulterers, by an enforced obedience of +planetary influence; and all that we are evil in, +by a divine thrusting on: an admirable evasion +of whoremaster man, to lay his goatish +disposition to the charge of a star! My +father compounded with my mother under the +dragon's tail; and my nativity was under Ursa +major; so that it follows, I am rough and +lecherous. Tut, I should have been that I am, +had the maidenliest star in the firmament +twinkled on my bastardizing. Edgar-- +And pat he comes like the catastrophe of the old +comedy: my cue is villanous melancholy, with a +sigh like Tom o' Bedlam. O, these eclipses do +portend these divisions! fa, sol, la, mi. + +EDGAR: +How now, brother Edmund! what serious +contemplation are you in? + +EDMUND: +I am thinking, brother, of a prediction I read +this other day, what should follow these eclipses. + +EDGAR: +Do you busy yourself about that? + +EDMUND: +I promise you, the effects he writes of succeed +unhappily; as of unnaturalness between the child +and the parent; death, dearth, dissolutions of +ancient amities; divisions in state, menaces and +maledictions against king and nobles; needless +diffidences, banishment of friends, dissipation +of cohorts, nuptial breaches, and I know not what. + +EDGAR: +How long have you been a sectary astronomical? + +EDMUND: +Come, come; when saw you my father last? + +EDGAR: +Why, the night gone by. + +EDMUND: +Spake you with him? + +EDGAR: +Ay, two hours together. + +EDMUND: +Parted you in good terms? Found you no +displeasure in him by word or countenance? + +EDGAR: +None at all. + +EDMUND: +Bethink yourself wherein you may have offended +him: and at my entreaty forbear his presence +till some little time hath qualified the heat of +his displeasure; which at this instant so rageth +in him, that with the mischief of your person it +would scarcely allay. + +EDGAR: +Some villain hath done me wrong. + +EDMUND: +That's my fear. I pray you, have a continent +forbearance till the spied of his rage goes +slower; and, as I say, retire with me to my +lodging, from whence I will fitly bring you to +hear my lord speak: pray ye, go; there's my key: +if you do stir abroad, go armed. + +EDGAR: +Armed, brother! + +EDMUND: +Brother, I advise you to the best; go armed: I +am no honest man if there be any good meaning +towards you: I have told you what I have seen +and heard; but faintly, nothing like the image +and horror of it: pray you, away. + +EDGAR: +Shall I hear from you anon? + +EDMUND: +I do serve you in this business. +A credulous father! and a brother noble, +Whose nature is so far from doing harms, +That he suspects none: on whose foolish honesty +My practises ride easy! I see the business. +Let me, if not by birth, have lands by wit: +All with me's meet that I can fashion fit. + +GONERIL: +Did my father strike my gentleman for chiding of his fool? + +OSWALD: +Yes, madam. + +GONERIL: +By day and night he wrongs me; every hour +He flashes into one gross crime or other, +That sets us all at odds: I'll not endure it: +His knights grow riotous, and himself upbraids us +On every trifle. When he returns from hunting, +I will not speak with him; say I am sick: +If you come slack of former services, +You shall do well; the fault of it I'll answer. + +OSWALD: +He's coming, madam; I hear him. + +GONERIL: +Put on what weary negligence you please, +You and your fellows; I'll have it come to question: +If he dislike it, let him to our sister, +Whose mind and mine, I know, in that are one, +Not to be over-ruled. Idle old man, +That still would manage those authorities +That he hath given away! Now, by my life, +Old fools are babes again; and must be used +With cheques as flatteries,--when they are seen abused. +Remember what I tell you. + +OSWALD: +Well, madam. + +GONERIL: +And let his knights have colder looks among you; +What grows of it, no matter; advise your fellows so: +I would breed from hence occasions, and I shall, +That I may speak: I'll write straight to my sister, +To hold my very course. Prepare for dinner. + +KENT: +If but as well I other accents borrow, +That can my speech defuse, my good intent +May carry through itself to that full issue +For which I razed my likeness. Now, banish'd Kent, +If thou canst serve where thou dost stand condemn'd, +So may it come, thy master, whom thou lovest, +Shall find thee full of labours. + +KING LEAR: +Let me not stay a jot for dinner; go get it ready. +How now! what art thou? + +KENT: +A man, sir. + +KING LEAR: +What dost thou profess? what wouldst thou with us? + +KENT: +I do profess to be no less than I seem; to serve +him truly that will put me in trust: to love him +that is honest; to converse with him that is wise, +and says little; to fear judgment; to fight when I +cannot choose; and to eat no fish. + +KING LEAR: +What art thou? + +KENT: +A very honest-hearted fellow, and as poor as the king. + +KING LEAR: +If thou be as poor for a subject as he is for a +king, thou art poor enough. What wouldst thou? + +KENT: +Service. + +KING LEAR: +Who wouldst thou serve? + +KENT: +You. + +KING LEAR: +Dost thou know me, fellow? + +KENT: +No, sir; but you have that in your countenance +which I would fain call master. + +KING LEAR: +What's that? + +KENT: +Authority. + +KING LEAR: +What services canst thou do? + +KENT: +I can keep honest counsel, ride, run, mar a curious +tale in telling it, and deliver a plain message +bluntly: that which ordinary men are fit for, I am +qualified in; and the best of me is diligence. + +KING LEAR: +How old art thou? + +KENT: +Not so young, sir, to love a woman for singing, nor +so old to dote on her for any thing: I have years +on my back forty eight. + +KING LEAR: +Follow me; thou shalt serve me: if I like thee no +worse after dinner, I will not part from thee yet. +Dinner, ho, dinner! Where's my knave? my fool? +Go you, and call my fool hither. +You, you, sirrah, where's my daughter? + +OSWALD: +So please you,-- + +KING LEAR: +What says the fellow there? Call the clotpoll back. +Where's my fool, ho? I think the world's asleep. +How now! where's that mongrel? + +Knight: +He says, my lord, your daughter is not well. + +KING LEAR: +Why came not the slave back to me when I called him. + +Knight: +Sir, he answered me in the roundest manner, he would +not. + +KING LEAR: +He would not! + +Knight: +My lord, I know not what the matter is; but, to my +judgment, your highness is not entertained with that +ceremonious affection as you were wont; there's a +great abatement of kindness appears as well in the +general dependants as in the duke himself also and +your daughter. + +KING LEAR: +Ha! sayest thou so? + +Knight: +I beseech you, pardon me, my lord, if I be mistaken; +for my duty cannot be silent when I think your +highness wronged. + +KING LEAR: +Thou but rememberest me of mine own conception: I +have perceived a most faint neglect of late; which I +have rather blamed as mine own jealous curiosity +than as a very pretence and purpose of unkindness: +I will look further into't. But where's my fool? I +have not seen him this two days. + +Knight: +Since my young lady's going into France, sir, the +fool hath much pined away. + +KING LEAR: +No more of that; I have noted it well. Go you, and +tell my daughter I would speak with her. +Go you, call hither my fool. +O, you sir, you, come you hither, sir: who am I, +sir? + +OSWALD: +My lady's father. + +KING LEAR: +'My lady's father'! my lord's knave: your +whoreson dog! you slave! you cur! + +OSWALD: +I am none of these, my lord; I beseech your pardon. + +KING LEAR: +Do you bandy looks with me, you rascal? + +OSWALD: +I'll not be struck, my lord. + +KENT: +Nor tripped neither, you base football player. + +KING LEAR: +I thank thee, fellow; thou servest me, and I'll +love thee. + +KENT: +Come, sir, arise, away! I'll teach you differences: +away, away! if you will measure your lubber's +length again, tarry: but away! go to; have you +wisdom? so. + +KING LEAR: +Now, my friendly knave, I thank thee: there's +earnest of thy service. + +Fool: +Let me hire him too: here's my coxcomb. + +KING LEAR: +How now, my pretty knave! how dost thou? + +Fool: +Sirrah, you were best take my coxcomb. + +KENT: +Why, fool? + +Fool: +Why, for taking one's part that's out of favour: +nay, an thou canst not smile as the wind sits, +thou'lt catch cold shortly: there, take my coxcomb: +why, this fellow has banished two on's daughters, +and did the third a blessing against his will; if +thou follow him, thou must needs wear my coxcomb. +How now, nuncle! Would I had two coxcombs and two daughters! + +KING LEAR: +Why, my boy? + +Fool: +If I gave them all my living, I'ld keep my coxcombs +myself. There's mine; beg another of thy daughters. + +KING LEAR: +Take heed, sirrah; the whip. + +Fool: +Truth's a dog must to kennel; he must be whipped +out, when Lady the brach may stand by the fire and stink. + +KING LEAR: +A pestilent gall to me! + +Fool: +Sirrah, I'll teach thee a speech. + +KING LEAR: +Do. + +Fool: +Mark it, nuncle: +Have more than thou showest, +Speak less than thou knowest, +Lend less than thou owest, +Ride more than thou goest, +Learn more than thou trowest, +Set less than thou throwest; +Leave thy drink and thy whore, +And keep in-a-door, +And thou shalt have more +Than two tens to a score. + +KENT: +This is nothing, fool. + +Fool: +Then 'tis like the breath of an unfee'd lawyer; you +gave me nothing for't. Can you make no use of +nothing, nuncle? + +KING LEAR: +Why, no, boy; nothing can be made out of nothing. + +Fool: + +KING LEAR: +A bitter fool! + +Fool: +Dost thou know the difference, my boy, between a +bitter fool and a sweet fool? + +KING LEAR: +No, lad; teach me. + +Fool: +That lord that counsell'd thee +To give away thy land, +Come place him here by me, +Do thou for him stand: +The sweet and bitter fool +Will presently appear; +The one in motley here, +The other found out there. + +KING LEAR: +Dost thou call me fool, boy? + +Fool: +All thy other titles thou hast given away; that +thou wast born with. + +KENT: +This is not altogether fool, my lord. + +Fool: +No, faith, lords and great men will not let me; if +I had a monopoly out, they would have part on't: +and ladies too, they will not let me have all fool +to myself; they'll be snatching. Give me an egg, +nuncle, and I'll give thee two crowns. + +KING LEAR: +What two crowns shall they be? + +Fool: +Why, after I have cut the egg i' the middle, and eat +up the meat, the two crowns of the egg. When thou +clovest thy crown i' the middle, and gavest away +both parts, thou borest thy ass on thy back o'er +the dirt: thou hadst little wit in thy bald crown, +when thou gavest thy golden one away. If I speak +like myself in this, let him be whipped that first +finds it so. +Fools had ne'er less wit in a year; +For wise men are grown foppish, +They know not how their wits to wear, +Their manners are so apish. + +KING LEAR: +When were you wont to be so full of songs, sirrah? + +Fool: +I have used it, nuncle, ever since thou madest thy +daughters thy mothers: for when thou gavest them +the rod, and put'st down thine own breeches, +Then they for sudden joy did weep, +And I for sorrow sung, +That such a king should play bo-peep, +And go the fools among. +Prithee, nuncle, keep a schoolmaster that can teach +thy fool to lie: I would fain learn to lie. + +KING LEAR: +An you lie, sirrah, we'll have you whipped. + +Fool: +I marvel what kin thou and thy daughters are: +they'll have me whipped for speaking true, thou'lt +have me whipped for lying; and sometimes I am +whipped for holding my peace. I had rather be any +kind o' thing than a fool: and yet I would not be +thee, nuncle; thou hast pared thy wit o' both sides, +and left nothing i' the middle: here comes one o' +the parings. + +KING LEAR: +How now, daughter! what makes that frontlet on? +Methinks you are too much of late i' the frown. + +Fool: +Thou wast a pretty fellow when thou hadst no need to +care for her frowning; now thou art an O without a +figure: I am better than thou art now; I am a fool, +thou art nothing. +Yes, forsooth, I will hold my tongue; so your face +bids me, though you say nothing. Mum, mum, +He that keeps nor crust nor crum, +Weary of all, shall want some. +That's a shealed peascod. + +GONERIL: +Not only, sir, this your all-licensed fool, +But other of your insolent retinue +Do hourly carp and quarrel; breaking forth +In rank and not-to-be endured riots. Sir, +I had thought, by making this well known unto you, +To have found a safe redress; but now grow fearful, +By what yourself too late have spoke and done. +That you protect this course, and put it on +By your allowance; which if you should, the fault +Would not 'scape censure, nor the redresses sleep, +Which, in the tender of a wholesome weal, +Might in their working do you that offence, +Which else were shame, that then necessity +Will call discreet proceeding. + +Fool: +For, you trow, nuncle, +The hedge-sparrow fed the cuckoo so long, +That it's had it head bit off by it young. +So, out went the candle, and we were left darkling. + +KING LEAR: +Are you our daughter? + +GONERIL: +Come, sir, +I would you would make use of that good wisdom, +Whereof I know you are fraught; and put away +These dispositions, that of late transform you +From what you rightly are. + +Fool: +May not an ass know when the cart +draws the horse? Whoop, Jug! I love thee. + +KING LEAR: +Doth any here know me? This is not Lear: +Doth Lear walk thus? speak thus? Where are his eyes? +Either his notion weakens, his discernings +Are lethargied--Ha! waking? 'tis not so. +Who is it that can tell me who I am? + +Fool: +Lear's shadow. + +KING LEAR: +I would learn that; for, by the +marks of sovereignty, knowledge, and reason, +I should be false persuaded I had daughters. + +Fool: +Which they will make an obedient father. + +KING LEAR: +Your name, fair gentlewoman? + +GONERIL: +This admiration, sir, is much o' the savour +Of other your new pranks. I do beseech you +To understand my purposes aright: +As you are old and reverend, you should be wise. +Here do you keep a hundred knights and squires; +Men so disorder'd, so debosh'd and bold, +That this our court, infected with their manners, +Shows like a riotous inn: epicurism and lust +Make it more like a tavern or a brothel +Than a graced palace. The shame itself doth speak +For instant remedy: be then desired +By her, that else will take the thing she begs, +A little to disquantity your train; +And the remainder, that shall still depend, +To be such men as may besort your age, +And know themselves and you. + +KING LEAR: +Darkness and devils! +Saddle my horses; call my train together: +Degenerate bastard! I'll not trouble thee. +Yet have I left a daughter. + +GONERIL: +You strike my people; and your disorder'd rabble +Make servants of their betters. + +KING LEAR: +Woe, that too late repents,-- +O, sir, are you come? +Is it your will? Speak, sir. Prepare my horses. +Ingratitude, thou marble-hearted fiend, +More hideous when thou show'st thee in a child +Than the sea-monster! + +ALBANY: +Pray, sir, be patient. + +KING LEAR: + +ALBANY: +My lord, I am guiltless, as I am ignorant +Of what hath moved you. + +KING LEAR: +It may be so, my lord. +Hear, nature, hear; dear goddess, hear! +Suspend thy purpose, if thou didst intend +To make this creature fruitful! +Into her womb convey sterility! +Dry up in her the organs of increase; +And from her derogate body never spring +A babe to honour her! If she must teem, +Create her child of spleen; that it may live, +And be a thwart disnatured torment to her! +Let it stamp wrinkles in her brow of youth; +With cadent tears fret channels in her cheeks; +Turn all her mother's pains and benefits +To laughter and contempt; that she may feel +How sharper than a serpent's tooth it is +To have a thankless child! Away, away! + +ALBANY: +Now, gods that we adore, whereof comes this? + +GONERIL: +Never afflict yourself to know the cause; +But let his disposition have that scope +That dotage gives it. + +KING LEAR: +What, fifty of my followers at a clap! +Within a fortnight! + +ALBANY: +What's the matter, sir? + +KING LEAR: +I'll tell thee: +Life and death! I am ashamed +That thou hast power to shake my manhood thus; +That these hot tears, which break from me perforce, +Should make thee worth them. Blasts and fogs upon thee! +The untented woundings of a father's curse +Pierce every sense about thee! Old fond eyes, +Beweep this cause again, I'll pluck ye out, +And cast you, with the waters that you lose, +To temper clay. Yea, it is come to this? +Let is be so: yet have I left a daughter, +Who, I am sure, is kind and comfortable: +When she shall hear this of thee, with her nails +She'll flay thy wolvish visage. Thou shalt find +That I'll resume the shape which thou dost think +I have cast off for ever: thou shalt, +I warrant thee. + +GONERIL: +Do you mark that, my lord? + +ALBANY: +I cannot be so partial, Goneril, +To the great love I bear you,-- + +GONERIL: +Pray you, content. What, Oswald, ho! +You, sir, more knave than fool, after your master. + +Fool: +Nuncle Lear, nuncle Lear, tarry and take the fool +with thee. +A fox, when one has caught her, +And such a daughter, +Should sure to the slaughter, +If my cap would buy a halter: +So the fool follows after. + +GONERIL: +This man hath had good counsel:--a hundred knights! +'Tis politic and safe to let him keep +At point a hundred knights: yes, that, on every dream, +Each buzz, each fancy, each complaint, dislike, +He may enguard his dotage with their powers, +And hold our lives in mercy. Oswald, I say! + +ALBANY: +Well, you may fear too far. + +GONERIL: +Safer than trust too far: +Let me still take away the harms I fear, +Not fear still to be taken: I know his heart. +What he hath utter'd I have writ my sister +If she sustain him and his hundred knights +When I have show'd the unfitness,-- +How now, Oswald! +What, have you writ that letter to my sister? + +OSWALD: +Yes, madam. + +GONERIL: +Take you some company, and away to horse: +Inform her full of my particular fear; +And thereto add such reasons of your own +As may compact it more. Get you gone; +And hasten your return. +No, no, my lord, +This milky gentleness and course of yours +Though I condemn not, yet, under pardon, +You are much more attask'd for want of wisdom +Than praised for harmful mildness. + +ALBANY: +How far your eyes may pierce I can not tell: +Striving to better, oft we mar what's well. + +GONERIL: +Nay, then-- + +ALBANY: +Well, well; the event. + +KING LEAR: +Go you before to Gloucester with these letters. +Acquaint my daughter no further with any thing you +know than comes from her demand out of the letter. +If your diligence be not speedy, I shall be there afore you. + +KENT: +I will not sleep, my lord, till I have delivered +your letter. + +Fool: +If a man's brains were in's heels, were't not in +danger of kibes? + +KING LEAR: +Ay, boy. + +Fool: +Then, I prithee, be merry; thy wit shall ne'er go +slip-shod. + +KING LEAR: +Ha, ha, ha! + +Fool: +Shalt see thy other daughter will use thee kindly; +for though she's as like this as a crab's like an +apple, yet I can tell what I can tell. + +KING LEAR: +Why, what canst thou tell, my boy? + +Fool: +She will taste as like this as a crab does to a +crab. Thou canst tell why one's nose stands i' +the middle on's face? + +KING LEAR: +No. + +Fool: +Why, to keep one's eyes of either side's nose; that +what a man cannot smell out, he may spy into. + +KING LEAR: +I did her wrong-- + +Fool: +Canst tell how an oyster makes his shell? + +KING LEAR: +No. + +Fool: +Nor I neither; but I can tell why a snail has a house. + +KING LEAR: +Why? + +Fool: +Why, to put his head in; not to give it away to his +daughters, and leave his horns without a case. + +KING LEAR: +I will forget my nature. So kind a father! Be my +horses ready? + +Fool: +Thy asses are gone about 'em. The reason why the +seven stars are no more than seven is a pretty reason. + +KING LEAR: +Because they are not eight? + +Fool: +Yes, indeed: thou wouldst make a good fool. + +KING LEAR: +To take 't again perforce! Monster ingratitude! + +Fool: +If thou wert my fool, nuncle, I'ld have thee beaten +for being old before thy time. + +KING LEAR: +How's that? + +Fool: +Thou shouldst not have been old till thou hadst +been wise. + +KING LEAR: +O, let me not be mad, not mad, sweet heaven +Keep me in temper: I would not be mad! +How now! are the horses ready? + +Gentleman: +Ready, my lord. + +KING LEAR: +Come, boy. + +Fool: +She that's a maid now, and laughs at my departure, +Shall not be a maid long, unless things be cut shorter. + +EDMUND: +Save thee, Curan. + +CURAN: +And you, sir. I have been with your father, and +given him notice that the Duke of Cornwall and Regan +his duchess will be here with him this night. + +EDMUND: +How comes that? + +CURAN: +Nay, I know not. You have heard of the news abroad; +I mean the whispered ones, for they are yet but +ear-kissing arguments? + +EDMUND: +Not I pray you, what are they? + +CURAN: +Have you heard of no likely wars toward, 'twixt the +Dukes of Cornwall and Albany? + +EDMUND: +Not a word. + +CURAN: +You may do, then, in time. Fare you well, sir. + +EDMUND: +The duke be here to-night? The better! best! +This weaves itself perforce into my business. +My father hath set guard to take my brother; +And I have one thing, of a queasy question, +Which I must act: briefness and fortune, work! +Brother, a word; descend: brother, I say! +My father watches: O sir, fly this place; +Intelligence is given where you are hid; +You have now the good advantage of the night: +Have you not spoken 'gainst the Duke of Cornwall? +He's coming hither: now, i' the night, i' the haste, +And Regan with him: have you nothing said +Upon his party 'gainst the Duke of Albany? +Advise yourself. + +EDGAR: +I am sure on't, not a word. + +EDMUND: +I hear my father coming: pardon me: +In cunning I must draw my sword upon you +Draw; seem to defend yourself; now quit you well. +Yield: come before my father. Light, ho, here! +Fly, brother. Torches, torches! So, farewell. +Some blood drawn on me would beget opinion. +Of my more fierce endeavour: I have seen drunkards +Do more than this in sport. Father, father! +Stop, stop! No help? + +GLOUCESTER: +Now, Edmund, where's the villain? + +EDMUND: +Here stood he in the dark, his sharp sword out, +Mumbling of wicked charms, conjuring the moon +To stand auspicious mistress,-- + +GLOUCESTER: +But where is he? + +EDMUND: +Look, sir, I bleed. + +GLOUCESTER: +Where is the villain, Edmund? + +EDMUND: +Fled this way, sir. When by no means he could-- + +GLOUCESTER: +Pursue him, ho! Go after. +By no means what? + +EDMUND: +Persuade me to the murder of your lordship; +But that I told him, the revenging gods +'Gainst parricides did all their thunders bend; +Spoke, with how manifold and strong a bond +The child was bound to the father; sir, in fine, +Seeing how loathly opposite I stood +To his unnatural purpose, in fell motion, +With his prepared sword, he charges home +My unprovided body, lanced mine arm: +But when he saw my best alarum'd spirits, +Bold in the quarrel's right, roused to the encounter, +Or whether gasted by the noise I made, +Full suddenly he fled. + +GLOUCESTER: +Let him fly far: +Not in this land shall he remain uncaught; +And found--dispatch. The noble duke my master, +My worthy arch and patron, comes to-night: +By his authority I will proclaim it, +That he which finds him shall deserve our thanks, +Bringing the murderous coward to the stake; +He that conceals him, death. + +EDMUND: +When I dissuaded him from his intent, +And found him pight to do it, with curst speech +I threaten'd to discover him: he replied, +'Thou unpossessing bastard! dost thou think, +If I would stand against thee, would the reposal +Of any trust, virtue, or worth in thee +Make thy words faith'd? No: what I should deny,-- +As this I would: ay, though thou didst produce +My very character,--I'ld turn it all +To thy suggestion, plot, and damned practise: +And thou must make a dullard of the world, +If they not thought the profits of my death +Were very pregnant and potential spurs +To make thee seek it.' + +GLOUCESTER: +Strong and fasten'd villain +Would he deny his letter? I never got him. +Hark, the duke's trumpets! I know not why he comes. +All ports I'll bar; the villain shall not 'scape; +The duke must grant me that: besides, his picture +I will send far and near, that all the kingdom +May have the due note of him; and of my land, +Loyal and natural boy, I'll work the means +To make thee capable. + +CORNWALL: +How now, my noble friend! since I came hither, +Which I can call but now, I have heard strange news. + +REGAN: +If it be true, all vengeance comes too short +Which can pursue the offender. How dost, my lord? + +GLOUCESTER: +O, madam, my old heart is crack'd, it's crack'd! + +REGAN: +What, did my father's godson seek your life? +He whom my father named? your Edgar? + +GLOUCESTER: +O, lady, lady, shame would have it hid! + +REGAN: +Was he not companion with the riotous knights +That tend upon my father? + +GLOUCESTER: +I know not, madam: 'tis too bad, too bad. + +EDMUND: +Yes, madam, he was of that consort. + +REGAN: +No marvel, then, though he were ill affected: +'Tis they have put him on the old man's death, +To have the expense and waste of his revenues. +I have this present evening from my sister +Been well inform'd of them; and with such cautions, +That if they come to sojourn at my house, +I'll not be there. + +CORNWALL: +Nor I, assure thee, Regan. +Edmund, I hear that you have shown your father +A child-like office. + +EDMUND: +'Twas my duty, sir. + +GLOUCESTER: +He did bewray his practise; and received +This hurt you see, striving to apprehend him. + +CORNWALL: +Is he pursued? + +GLOUCESTER: +Ay, my good lord. + +CORNWALL: +If he be taken, he shall never more +Be fear'd of doing harm: make your own purpose, +How in my strength you please. For you, Edmund, +Whose virtue and obedience doth this instant +So much commend itself, you shall be ours: +Natures of such deep trust we shall much need; +You we first seize on. + +EDMUND: +I shall serve you, sir, +Truly, however else. + +GLOUCESTER: +For him I thank your grace. + +CORNWALL: +You know not why we came to visit you,-- + +REGAN: +Thus out of season, threading dark-eyed night: +Occasions, noble Gloucester, of some poise, +Wherein we must have use of your advice: +Our father he hath writ, so hath our sister, +Of differences, which I least thought it fit +To answer from our home; the several messengers +From hence attend dispatch. Our good old friend, +Lay comforts to your bosom; and bestow +Your needful counsel to our business, +Which craves the instant use. + +GLOUCESTER: +I serve you, madam: +Your graces are right welcome. + +OSWALD: +Good dawning to thee, friend: art of this house? + +KENT: +Ay. + +OSWALD: +Where may we set our horses? + +KENT: +I' the mire. + +OSWALD: +Prithee, if thou lovest me, tell me. + +KENT: +I love thee not. + +OSWALD: +Why, then, I care not for thee. + +KENT: +If I had thee in Lipsbury pinfold, I would make thee +care for me. + +OSWALD: +Why dost thou use me thus? I know thee not. + +KENT: +Fellow, I know thee. + +OSWALD: +What dost thou know me for? + +KENT: +A knave; a rascal; an eater of broken meats; a +base, proud, shallow, beggarly, three-suited, +hundred-pound, filthy, worsted-stocking knave; a +lily-livered, action-taking knave, a whoreson, +glass-gazing, super-serviceable finical rogue; +one-trunk-inheriting slave; one that wouldst be a +bawd, in way of good service, and art nothing but +the composition of a knave, beggar, coward, pandar, +and the son and heir of a mongrel bitch: one whom I +will beat into clamorous whining, if thou deniest +the least syllable of thy addition. + +OSWALD: +Why, what a monstrous fellow art thou, thus to rail +on one that is neither known of thee nor knows thee! + +KENT: +What a brazen-faced varlet art thou, to deny thou +knowest me! Is it two days ago since I tripped up +thy heels, and beat thee before the king? Draw, you +rogue: for, though it be night, yet the moon +shines; I'll make a sop o' the moonshine of you: +draw, you whoreson cullionly barber-monger, draw. + +OSWALD: +Away! I have nothing to do with thee. + +KENT: +Draw, you rascal: you come with letters against the +king; and take vanity the puppet's part against the +royalty of her father: draw, you rogue, or I'll so +carbonado your shanks: draw, you rascal; come your ways. + +OSWALD: +Help, ho! murder! help! + +KENT: +Strike, you slave; stand, rogue, stand; you neat +slave, strike. + +OSWALD: +Help, ho! murder! murder! + +EDMUND: +How now! What's the matter? + +KENT: +With you, goodman boy, an you please: come, I'll +flesh ye; come on, young master. + +GLOUCESTER: +Weapons! arms! What 's the matter here? + +CORNWALL: +Keep peace, upon your lives: +He dies that strikes again. What is the matter? + +REGAN: +The messengers from our sister and the king. + +CORNWALL: +What is your difference? speak. + +OSWALD: +I am scarce in breath, my lord. + +KENT: +No marvel, you have so bestirred your valour. You +cowardly rascal, nature disclaims in thee: a +tailor made thee. + +CORNWALL: +Thou art a strange fellow: a tailor make a man? + +KENT: +Ay, a tailor, sir: a stone-cutter or painter could +not have made him so ill, though he had been but two +hours at the trade. + +CORNWALL: +Speak yet, how grew your quarrel? + +OSWALD: +This ancient ruffian, sir, whose life I have spared +at suit of his gray beard,-- + +KENT: +Thou whoreson zed! thou unnecessary letter! My +lord, if you will give me leave, I will tread this +unbolted villain into mortar, and daub the wall of +a jakes with him. Spare my gray beard, you wagtail? + +CORNWALL: +Peace, sirrah! +You beastly knave, know you no reverence? + +KENT: +Yes, sir; but anger hath a privilege. + +CORNWALL: +Why art thou angry? + +KENT: +That such a slave as this should wear a sword, +Who wears no honesty. Such smiling rogues as these, +Like rats, oft bite the holy cords a-twain +Which are too intrinse t' unloose; smooth every passion +That in the natures of their lords rebel; +Bring oil to fire, snow to their colder moods; +Renege, affirm, and turn their halcyon beaks +With every gale and vary of their masters, +Knowing nought, like dogs, but following. +A plague upon your epileptic visage! +Smile you my speeches, as I were a fool? +Goose, if I had you upon Sarum plain, +I'ld drive ye cackling home to Camelot. + +CORNWALL: +Why, art thou mad, old fellow? + +GLOUCESTER: +How fell you out? say that. + +KENT: +No contraries hold more antipathy +Than I and such a knave. + +CORNWALL: +Why dost thou call him a knave? What's his offence? + +KENT: +His countenance likes me not. + +CORNWALL: +No more, perchance, does mine, nor his, nor hers. + +KENT: +Sir, 'tis my occupation to be plain: +I have seen better faces in my time +Than stands on any shoulder that I see +Before me at this instant. + +CORNWALL: +This is some fellow, +Who, having been praised for bluntness, doth affect +A saucy roughness, and constrains the garb +Quite from his nature: he cannot flatter, he, +An honest mind and plain, he must speak truth! +An they will take it, so; if not, he's plain. +These kind of knaves I know, which in this plainness +Harbour more craft and more corrupter ends +Than twenty silly ducking observants +That stretch their duties nicely. + +KENT: +Sir, in good sooth, in sincere verity, +Under the allowance of your great aspect, +Whose influence, like the wreath of radiant fire +On flickering Phoebus' front,-- + +CORNWALL: +What mean'st by this? + +KENT: +To go out of my dialect, which you +discommend so much. I know, sir, I am no +flatterer: he that beguiled you in a plain +accent was a plain knave; which for my part +I will not be, though I should win your displeasure +to entreat me to 't. + +CORNWALL: +What was the offence you gave him? + +OSWALD: +I never gave him any: +It pleased the king his master very late +To strike at me, upon his misconstruction; +When he, conjunct and flattering his displeasure, +Tripp'd me behind; being down, insulted, rail'd, +And put upon him such a deal of man, +That worthied him, got praises of the king +For him attempting who was self-subdued; +And, in the fleshment of this dread exploit, +Drew on me here again. + +KENT: +None of these rogues and cowards +But Ajax is their fool. + +CORNWALL: +Fetch forth the stocks! +You stubborn ancient knave, you reverend braggart, +We'll teach you-- + +KENT: +Sir, I am too old to learn: +Call not your stocks for me: I serve the king; +On whose employment I was sent to you: +You shall do small respect, show too bold malice +Against the grace and person of my master, +Stocking his messenger. + +CORNWALL: +Fetch forth the stocks! As I have life and honour, +There shall he sit till noon. + +REGAN: +Till noon! till night, my lord; and all night too. + +KENT: +Why, madam, if I were your father's dog, +You should not use me so. + +REGAN: +Sir, being his knave, I will. + +CORNWALL: +This is a fellow of the self-same colour +Our sister speaks of. Come, bring away the stocks! + +GLOUCESTER: +Let me beseech your grace not to do so: +His fault is much, and the good king his master +Will cheque him for 't: your purposed low correction +Is such as basest and contemned'st wretches +For pilferings and most common trespasses +Are punish'd with: the king must take it ill, +That he's so slightly valued in his messenger, +Should have him thus restrain'd. + +CORNWALL: +I'll answer that. + +REGAN: +My sister may receive it much more worse, +To have her gentleman abused, assaulted, +For following her affairs. Put in his legs. +Come, my good lord, away. + +GLOUCESTER: +I am sorry for thee, friend; 'tis the duke's pleasure, +Whose disposition, all the world well knows, +Will not be rubb'd nor stopp'd: I'll entreat for thee. + +KENT: +Pray, do not, sir: I have watched and travell'd hard; +Some time I shall sleep out, the rest I'll whistle. +A good man's fortune may grow out at heels: +Give you good morrow! + +GLOUCESTER: +The duke's to blame in this; 'twill be ill taken. + +KENT: +Good king, that must approve the common saw, +Thou out of heaven's benediction comest +To the warm sun! +Approach, thou beacon to this under globe, +That by thy comfortable beams I may +Peruse this letter! Nothing almost sees miracles +But misery: I know 'tis from Cordelia, +Who hath most fortunately been inform'd +Of my obscured course; and shall find time +From this enormous state, seeking to give +Losses their remedies. All weary and o'erwatch'd, +Take vantage, heavy eyes, not to behold +This shameful lodging. +Fortune, good night: smile once more: turn thy wheel! + +EDGAR: +I heard myself proclaim'd; +And by the happy hollow of a tree +Escaped the hunt. No port is free; no place, +That guard, and most unusual vigilance, +Does not attend my taking. Whiles I may 'scape, +I will preserve myself: and am bethought +To take the basest and most poorest shape +That ever penury, in contempt of man, +Brought near to beast: my face I'll grime with filth; +Blanket my loins: elf all my hair in knots; +And with presented nakedness out-face +The winds and persecutions of the sky. +The country gives me proof and precedent +Of Bedlam beggars, who, with roaring voices, +Strike in their numb'd and mortified bare arms +Pins, wooden pricks, nails, sprigs of rosemary; +And with this horrible object, from low farms, +Poor pelting villages, sheep-cotes, and mills, +Sometime with lunatic bans, sometime with prayers, +Enforce their charity. Poor Turlygod! poor Tom! +That's something yet: Edgar I nothing am. + +KING LEAR: +'Tis strange that they should so depart from home, +And not send back my messenger. + +Gentleman: +As I learn'd, +The night before there was no purpose in them +Of this remove. + +KENT: +Hail to thee, noble master! + +KING LEAR: +Ha! +Makest thou this shame thy pastime? + +KENT: +No, my lord. + +Fool: +Ha, ha! he wears cruel garters. Horses are tied +by the heads, dogs and bears by the neck, monkeys by +the loins, and men by the legs: when a man's +over-lusty at legs, then he wears wooden +nether-stocks. + +KING LEAR: +What's he that hath so much thy place mistook +To set thee here? + +KENT: +It is both he and she; +Your son and daughter. + +KING LEAR: +No. + +KENT: +Yes. + +KING LEAR: +No, I say. + +KENT: +I say, yea. + +KING LEAR: +No, no, they would not. + +KENT: +Yes, they have. + +KING LEAR: +By Jupiter, I swear, no. + +KENT: +By Juno, I swear, ay. + +KING LEAR: +They durst not do 't; +They could not, would not do 't; 'tis worse than murder, +To do upon respect such violent outrage: +Resolve me, with all modest haste, which way +Thou mightst deserve, or they impose, this usage, +Coming from us. + +KENT: +My lord, when at their home +I did commend your highness' letters to them, +Ere I was risen from the place that show'd +My duty kneeling, came there a reeking post, +Stew'd in his haste, half breathless, panting forth +From Goneril his mistress salutations; +Deliver'd letters, spite of intermission, +Which presently they read: on whose contents, +They summon'd up their meiny, straight took horse; +Commanded me to follow, and attend +The leisure of their answer; gave me cold looks: +And meeting here the other messenger, +Whose welcome, I perceived, had poison'd mine,-- +Being the very fellow that of late +Display'd so saucily against your highness,-- +Having more man than wit about me, drew: +He raised the house with loud and coward cries. +Your son and daughter found this trespass worth +The shame which here it suffers. + +Fool: +Winter's not gone yet, if the wild-geese fly that way. +Fathers that wear rags +Do make their children blind; +But fathers that bear bags +Shall see their children kind. +Fortune, that arrant whore, +Ne'er turns the key to the poor. +But, for all this, thou shalt have as many dolours +for thy daughters as thou canst tell in a year. + +KING LEAR: +O, how this mother swells up toward my heart! +Hysterica passio, down, thou climbing sorrow, +Thy element's below! Where is this daughter? + +KENT: +With the earl, sir, here within. + +KING LEAR: +Follow me not; +Stay here. + +Gentleman: +Made you no more offence but what you speak of? + +KENT: +None. +How chance the king comes with so small a train? + +Fool: +And thou hadst been set i' the stocks for that +question, thou hadst well deserved it. + +KENT: +Why, fool? + +Fool: +We'll set thee to school to an ant, to teach thee +there's no labouring i' the winter. All that follow +their noses are led by their eyes but blind men; and +there's not a nose among twenty but can smell him +that's stinking. Let go thy hold when a great wheel +runs down a hill, lest it break thy neck with +following it: but the great one that goes up the +hill, let him draw thee after. When a wise man +gives thee better counsel, give me mine again: I +would have none but knaves follow it, since a fool gives it. +That sir which serves and seeks for gain, +And follows but for form, +Will pack when it begins to rain, +And leave thee in the storm, +But I will tarry; the fool will stay, +And let the wise man fly: +The knave turns fool that runs away; +The fool no knave, perdy. + +KENT: +Where learned you this, fool? + +Fool: +Not i' the stocks, fool. + +KING LEAR: +Deny to speak with me? They are sick? they are weary? +They have travell'd all the night? Mere fetches; +The images of revolt and flying off. +Fetch me a better answer. + +GLOUCESTER: +My dear lord, +You know the fiery quality of the duke; +How unremoveable and fix'd he is +In his own course. + +KING LEAR: +Vengeance! plague! death! confusion! +Fiery? what quality? Why, Gloucester, Gloucester, +I'ld speak with the Duke of Cornwall and his wife. + +GLOUCESTER: +Well, my good lord, I have inform'd them so. + +KING LEAR: +Inform'd them! Dost thou understand me, man? + +GLOUCESTER: +Ay, my good lord. + +KING LEAR: +The king would speak with Cornwall; the dear father +Would with his daughter speak, commands her service: +Are they inform'd of this? My breath and blood! +Fiery? the fiery duke? Tell the hot duke that-- +No, but not yet: may be he is not well: +Infirmity doth still neglect all office +Whereto our health is bound; we are not ourselves +When nature, being oppress'd, commands the mind +To suffer with the body: I'll forbear; +And am fall'n out with my more headier will, +To take the indisposed and sickly fit +For the sound man. Death on my state! wherefore +Should he sit here? This act persuades me +That this remotion of the duke and her +Is practise only. Give me my servant forth. +Go tell the duke and 's wife I'ld speak with them, +Now, presently: bid them come forth and hear me, +Or at their chamber-door I'll beat the drum +Till it cry sleep to death. + +GLOUCESTER: +I would have all well betwixt you. + +KING LEAR: +O me, my heart, my rising heart! but, down! + +Fool: +Cry to it, nuncle, as the cockney did to the eels +when she put 'em i' the paste alive; she knapped 'em +o' the coxcombs with a stick, and cried 'Down, +wantons, down!' 'Twas her brother that, in pure +kindness to his horse, buttered his hay. + +KING LEAR: +Good morrow to you both. + +CORNWALL: +Hail to your grace! + +REGAN: +I am glad to see your highness. + +KING LEAR: +Regan, I think you are; I know what reason +I have to think so: if thou shouldst not be glad, +I would divorce me from thy mother's tomb, +Sepulchring an adultress. +O, are you free? +Some other time for that. Beloved Regan, +Thy sister's naught: O Regan, she hath tied +Sharp-tooth'd unkindness, like a vulture, here: +I can scarce speak to thee; thou'lt not believe +With how depraved a quality--O Regan! + +REGAN: +I pray you, sir, take patience: I have hope. +You less know how to value her desert +Than she to scant her duty. + +KING LEAR: +Say, how is that? + +REGAN: +I cannot think my sister in the least +Would fail her obligation: if, sir, perchance +She have restrain'd the riots of your followers, +'Tis on such ground, and to such wholesome end, +As clears her from all blame. + +KING LEAR: +My curses on her! + +REGAN: +O, sir, you are old. +Nature in you stands on the very verge +Of her confine: you should be ruled and led +By some discretion, that discerns your state +Better than you yourself. Therefore, I pray you, +That to our sister you do make return; +Say you have wrong'd her, sir. + +KING LEAR: +Ask her forgiveness? +Do you but mark how this becomes the house: +'Dear daughter, I confess that I am old; +Age is unnecessary: on my knees I beg +That you'll vouchsafe me raiment, bed, and food.' + +REGAN: +Good sir, no more; these are unsightly tricks: +Return you to my sister. + +KING LEAR: + +CORNWALL: +Fie, sir, fie! + +KING LEAR: +You nimble lightnings, dart your blinding flames +Into her scornful eyes! Infect her beauty, +You fen-suck'd fogs, drawn by the powerful sun, +To fall and blast her pride! + +REGAN: +O the blest gods! so will you wish on me, +When the rash mood is on. + +KING LEAR: +No, Regan, thou shalt never have my curse: +Thy tender-hefted nature shall not give +Thee o'er to harshness: her eyes are fierce; but thine +Do comfort and not burn. 'Tis not in thee +To grudge my pleasures, to cut off my train, +To bandy hasty words, to scant my sizes, +And in conclusion to oppose the bolt +Against my coming in: thou better know'st +The offices of nature, bond of childhood, +Effects of courtesy, dues of gratitude; +Thy half o' the kingdom hast thou not forgot, +Wherein I thee endow'd. + +REGAN: +Good sir, to the purpose. + +KING LEAR: +Who put my man i' the stocks? + +CORNWALL: +What trumpet's that? + +REGAN: +I know't, my sister's: this approves her letter, +That she would soon be here. +Is your lady come? + +KING LEAR: +This is a slave, whose easy-borrow'd pride +Dwells in the fickle grace of her he follows. +Out, varlet, from my sight! + +CORNWALL: +What means your grace? + +KING LEAR: +Who stock'd my servant? Regan, I have good hope +Thou didst not know on't. Who comes here? O heavens, +If you do love old men, if your sweet sway +Allow obedience, if yourselves are old, +Make it your cause; send down, and take my part! +Art not ashamed to look upon this beard? +O Regan, wilt thou take her by the hand? + +GONERIL: +Why not by the hand, sir? How have I offended? +All's not offence that indiscretion finds +And dotage terms so. + +KING LEAR: +O sides, you are too tough; +Will you yet hold? How came my man i' the stocks? + +CORNWALL: +I set him there, sir: but his own disorders +Deserved much less advancement. + +KING LEAR: +You! did you? + +REGAN: +I pray you, father, being weak, seem so. +If, till the expiration of your month, +You will return and sojourn with my sister, +Dismissing half your train, come then to me: +I am now from home, and out of that provision +Which shall be needful for your entertainment. + +KING LEAR: +Return to her, and fifty men dismiss'd? +No, rather I abjure all roofs, and choose +To wage against the enmity o' the air; +To be a comrade with the wolf and owl,-- +Necessity's sharp pinch! Return with her? +Why, the hot-blooded France, that dowerless took +Our youngest born, I could as well be brought +To knee his throne, and, squire-like; pension beg +To keep base life afoot. Return with her? +Persuade me rather to be slave and sumpter +To this detested groom. + +GONERIL: +At your choice, sir. + +KING LEAR: +I prithee, daughter, do not make me mad: +I will not trouble thee, my child; farewell: +We'll no more meet, no more see one another: +But yet thou art my flesh, my blood, my daughter; +Or rather a disease that's in my flesh, +Which I must needs call mine: thou art a boil, +A plague-sore, an embossed carbuncle, +In my corrupted blood. But I'll not chide thee; +Let shame come when it will, I do not call it: +I do not bid the thunder-bearer shoot, +Nor tell tales of thee to high-judging Jove: +Mend when thou canst; be better at thy leisure: +I can be patient; I can stay with Regan, +I and my hundred knights. + +REGAN: +Not altogether so: +I look'd not for you yet, nor am provided +For your fit welcome. Give ear, sir, to my sister; +For those that mingle reason with your passion +Must be content to think you old, and so-- +But she knows what she does. + +KING LEAR: +Is this well spoken? + +REGAN: +I dare avouch it, sir: what, fifty followers? +Is it not well? What should you need of more? +Yea, or so many, sith that both charge and danger +Speak 'gainst so great a number? How, in one house, +Should many people, under two commands, +Hold amity? 'Tis hard; almost impossible. + +GONERIL: +Why might not you, my lord, receive attendance +From those that she calls servants or from mine? + +REGAN: +Why not, my lord? If then they chanced to slack you, +We could control them. If you will come to me,-- +For now I spy a danger,--I entreat you +To bring but five and twenty: to no more +Will I give place or notice. + +KING LEAR: +I gave you all-- + +REGAN: +And in good time you gave it. + +KING LEAR: +Made you my guardians, my depositaries; +But kept a reservation to be follow'd +With such a number. What, must I come to you +With five and twenty, Regan? said you so? + +REGAN: +And speak't again, my lord; no more with me. + +KING LEAR: +Those wicked creatures yet do look well-favour'd, +When others are more wicked: not being the worst +Stands in some rank of praise. +I'll go with thee: +Thy fifty yet doth double five and twenty, +And thou art twice her love. + +GONERIL: +Hear me, my lord; +What need you five and twenty, ten, or five, +To follow in a house where twice so many +Have a command to tend you? + +REGAN: +What need one? + +KING LEAR: +O, reason not the need: our basest beggars +Are in the poorest thing superfluous: +Allow not nature more than nature needs, +Man's life's as cheap as beast's: thou art a lady; +If only to go warm were gorgeous, +Why, nature needs not what thou gorgeous wear'st, +Which scarcely keeps thee warm. But, for true need,-- +You heavens, give me that patience, patience I need! +You see me here, you gods, a poor old man, +As full of grief as age; wretched in both! +If it be you that stir these daughters' hearts +Against their father, fool me not so much +To bear it tamely; touch me with noble anger, +And let not women's weapons, water-drops, +Stain my man's cheeks! No, you unnatural hags, +I will have such revenges on you both, +That all the world shall--I will do such things,-- +What they are, yet I know not: but they shall be +The terrors of the earth. You think I'll weep +No, I'll not weep: +I have full cause of weeping; but this heart +Shall break into a hundred thousand flaws, +Or ere I'll weep. O fool, I shall go mad! + +CORNWALL: +Let us withdraw; 'twill be a storm. + +REGAN: +This house is little: the old man and his people +Cannot be well bestow'd. + +GONERIL: +'Tis his own blame; hath put himself from rest, +And must needs taste his folly. + +REGAN: +For his particular, I'll receive him gladly, +But not one follower. + +GONERIL: +So am I purposed. +Where is my lord of Gloucester? + +CORNWALL: +Follow'd the old man forth: he is return'd. + +GLOUCESTER: +The king is in high rage. + +CORNWALL: +Whither is he going? + +GLOUCESTER: +He calls to horse; but will I know not whither. + +CORNWALL: +'Tis best to give him way; he leads himself. + +GONERIL: +My lord, entreat him by no means to stay. + +GLOUCESTER: +Alack, the night comes on, and the bleak winds +Do sorely ruffle; for many miles about +There's scarce a bush. + +REGAN: +O, sir, to wilful men, +The injuries that they themselves procure +Must be their schoolmasters. Shut up your doors: +He is attended with a desperate train; +And what they may incense him to, being apt +To have his ear abused, wisdom bids fear. + +CORNWALL: +Shut up your doors, my lord; 'tis a wild night: +My Regan counsels well; come out o' the storm. + +KENT: +Who's there, besides foul weather? + +Gentleman: +One minded like the weather, most unquietly. + +KENT: +I know you. Where's the king? + +Gentleman: +Contending with the fretful element: +Bids the winds blow the earth into the sea, +Or swell the curled water 'bove the main, +That things might change or cease; tears his white hair, +Which the impetuous blasts, with eyeless rage, +Catch in their fury, and make nothing of; +Strives in his little world of man to out-scorn +The to-and-fro-conflicting wind and rain. +This night, wherein the cub-drawn bear would couch, +The lion and the belly-pinched wolf +Keep their fur dry, unbonneted he runs, +And bids what will take all. + +KENT: +But who is with him? + +Gentleman: +None but the fool; who labours to out-jest +His heart-struck injuries. + +KENT: +Sir, I do know you; +And dare, upon the warrant of my note, +Commend a dear thing to you. There is division, +Although as yet the face of it be cover'd +With mutual cunning, 'twixt Albany and Cornwall; +Who have--as who have not, that their great stars +Throned and set high?--servants, who seem no less, +Which are to France the spies and speculations +Intelligent of our state; what hath been seen, +Either in snuffs and packings of the dukes, +Or the hard rein which both of them have borne +Against the old kind king; or something deeper, +Whereof perchance these are but furnishings; +But, true it is, from France there comes a power +Into this scatter'd kingdom; who already, +Wise in our negligence, have secret feet +In some of our best ports, and are at point +To show their open banner. Now to you: +If on my credit you dare build so far +To make your speed to Dover, you shall find +Some that will thank you, making just report +Of how unnatural and bemadding sorrow +The king hath cause to plain. +I am a gentleman of blood and breeding; +And, from some knowledge and assurance, offer +This office to you. + +Gentleman: +I will talk further with you. + +KENT: +No, do not. +For confirmation that I am much more +Than my out-wall, open this purse, and take +What it contains. If you shall see Cordelia,-- +As fear not but you shall,--show her this ring; +And she will tell you who your fellow is +That yet you do not know. Fie on this storm! +I will go seek the king. + +Gentleman: +Give me your hand: have you no more to say? + +KENT: +Few words, but, to effect, more than all yet; +That, when we have found the king,--in which your pain +That way, I'll this,--he that first lights on him +Holla the other. + +KING LEAR: +Blow, winds, and crack your cheeks! rage! blow! +You cataracts and hurricanoes, spout +Till you have drench'd our steeples, drown'd the cocks! +You sulphurous and thought-executing fires, +Vaunt-couriers to oak-cleaving thunderbolts, +Singe my white head! And thou, all-shaking thunder, +Smite flat the thick rotundity o' the world! +Crack nature's moulds, an germens spill at once, +That make ingrateful man! + +Fool: +O nuncle, court holy-water in a dry +house is better than this rain-water out o' door. +Good nuncle, in, and ask thy daughters' blessing: +here's a night pities neither wise man nor fool. + +KING LEAR: +Rumble thy bellyful! Spit, fire! spout, rain! +Nor rain, wind, thunder, fire, are my daughters: +I tax not you, you elements, with unkindness; +I never gave you kingdom, call'd you children, +You owe me no subscription: then let fall +Your horrible pleasure: here I stand, your slave, +A poor, infirm, weak, and despised old man: +But yet I call you servile ministers, +That have with two pernicious daughters join'd +Your high engender'd battles 'gainst a head +So old and white as this. O! O! 'tis foul! + +Fool: +He that has a house to put's head in has a good +head-piece. +The cod-piece that will house +Before the head has any, +The head and he shall louse; +So beggars marry many. +The man that makes his toe +What he his heart should make +Shall of a corn cry woe, +And turn his sleep to wake. +For there was never yet fair woman but she made +mouths in a glass. + +KING LEAR: +No, I will be the pattern of all patience; +I will say nothing. + +KENT: +Who's there? + +Fool: +Marry, here's grace and a cod-piece; that's a wise +man and a fool. + +KENT: +Alas, sir, are you here? things that love night +Love not such nights as these; the wrathful skies +Gallow the very wanderers of the dark, +And make them keep their caves: since I was man, +Such sheets of fire, such bursts of horrid thunder, +Such groans of roaring wind and rain, I never +Remember to have heard: man's nature cannot carry +The affliction nor the fear. + +KING LEAR: +Let the great gods, +That keep this dreadful pother o'er our heads, +Find out their enemies now. Tremble, thou wretch, +That hast within thee undivulged crimes, +Unwhipp'd of justice: hide thee, thou bloody hand; +Thou perjured, and thou simular man of virtue +That art incestuous: caitiff, to pieces shake, +That under covert and convenient seeming +Hast practised on man's life: close pent-up guilts, +Rive your concealing continents, and cry +These dreadful summoners grace. I am a man +More sinn'd against than sinning. + +KENT: +Alack, bare-headed! +Gracious my lord, hard by here is a hovel; +Some friendship will it lend you 'gainst the tempest: +Repose you there; while I to this hard house-- +More harder than the stones whereof 'tis raised; +Which even but now, demanding after you, +Denied me to come in--return, and force +Their scanted courtesy. + +KING LEAR: +My wits begin to turn. +Come on, my boy: how dost, my boy? art cold? +I am cold myself. Where is this straw, my fellow? +The art of our necessities is strange, +That can make vile things precious. Come, +your hovel. +Poor fool and knave, I have one part in my heart +That's sorry yet for thee. + +Fool: + +KING LEAR: +True, my good boy. Come, bring us to this hovel. + +Fool: +This is a brave night to cool a courtezan. +I'll speak a prophecy ere I go: +When priests are more in word than matter; +When brewers mar their malt with water; +When nobles are their tailors' tutors; +No heretics burn'd, but wenches' suitors; +When every case in law is right; +No squire in debt, nor no poor knight; +When slanders do not live in tongues; +Nor cutpurses come not to throngs; +When usurers tell their gold i' the field; +And bawds and whores do churches build; +Then shall the realm of Albion +Come to great confusion: +Then comes the time, who lives to see't, +That going shall be used with feet. +This prophecy Merlin shall make; for I live before his time. + +GLOUCESTER: +Alack, alack, Edmund, I like not this unnatural +dealing. When I desire their leave that I might +pity him, they took from me the use of mine own +house; charged me, on pain of their perpetual +displeasure, neither to speak of him, entreat for +him, nor any way sustain him. + +EDMUND: +Most savage and unnatural! + +GLOUCESTER: +Go to; say you nothing. There's a division betwixt +the dukes; and a worse matter than that: I have +received a letter this night; 'tis dangerous to be +spoken; I have locked the letter in my closet: +these injuries the king now bears will be revenged +home; there's part of a power already footed: we +must incline to the king. I will seek him, and +privily relieve him: go you and maintain talk with +the duke, that my charity be not of him perceived: +if he ask for me. I am ill, and gone to bed. +Though I die for it, as no less is threatened me, +the king my old master must be relieved. There is +some strange thing toward, Edmund; pray you, be careful. + +EDMUND: +This courtesy, forbid thee, shall the duke +Instantly know; and of that letter too: +This seems a fair deserving, and must draw me +That which my father loses; no less than all: +The younger rises when the old doth fall. + +KENT: +Here is the place, my lord; good my lord, enter: +The tyranny of the open night's too rough +For nature to endure. + +KING LEAR: +Let me alone. + +KENT: +Good my lord, enter here. + +KING LEAR: +Wilt break my heart? + +KENT: +I had rather break mine own. Good my lord, enter. + +KING LEAR: +Thou think'st 'tis much that this contentious storm +Invades us to the skin: so 'tis to thee; +But where the greater malady is fix'd, +The lesser is scarce felt. Thou'ldst shun a bear; +But if thy flight lay toward the raging sea, +Thou'ldst meet the bear i' the mouth. When the +mind's free, +The body's delicate: the tempest in my mind +Doth from my senses take all feeling else +Save what beats there. Filial ingratitude! +Is it not as this mouth should tear this hand +For lifting food to't? But I will punish home: +No, I will weep no more. In such a night +To shut me out! Pour on; I will endure. +In such a night as this! O Regan, Goneril! +Your old kind father, whose frank heart gave all,-- +O, that way madness lies; let me shun that; +No more of that. + +KENT: +Good my lord, enter here. + +KING LEAR: +Prithee, go in thyself: seek thine own ease: +This tempest will not give me leave to ponder +On things would hurt me more. But I'll go in. +In, boy; go first. You houseless poverty,-- +Nay, get thee in. I'll pray, and then I'll sleep. +Poor naked wretches, whereso'er you are, +That bide the pelting of this pitiless storm, +How shall your houseless heads and unfed sides, +Your loop'd and window'd raggedness, defend you +From seasons such as these? O, I have ta'en +Too little care of this! Take physic, pomp; +Expose thyself to feel what wretches feel, +That thou mayst shake the superflux to them, +And show the heavens more just. + +EDGAR: + +Fool: +Come not in here, nuncle, here's a spirit +Help me, help me! + +KENT: +Give me thy hand. Who's there? + +Fool: +A spirit, a spirit: he says his name's poor Tom. + +KENT: +What art thou that dost grumble there i' the straw? +Come forth. + +EDGAR: +Away! the foul fiend follows me! +Through the sharp hawthorn blows the cold wind. +Hum! go to thy cold bed, and warm thee. + +KING LEAR: +Hast thou given all to thy two daughters? +And art thou come to this? + +EDGAR: +Who gives any thing to poor Tom? whom the foul +fiend hath led through fire and through flame, and +through ford and whirlipool e'er bog and quagmire; +that hath laid knives under his pillow, and halters +in his pew; set ratsbane by his porridge; made film +proud of heart, to ride on a bay trotting-horse over +four-inched bridges, to course his own shadow for a +traitor. Bless thy five wits! Tom's a-cold,--O, do +de, do de, do de. Bless thee from whirlwinds, +star-blasting, and taking! Do poor Tom some +charity, whom the foul fiend vexes: there could I +have him now,--and there,--and there again, and there. + +KING LEAR: +What, have his daughters brought him to this pass? +Couldst thou save nothing? Didst thou give them all? + +Fool: +Nay, he reserved a blanket, else we had been all shamed. + +KING LEAR: +Now, all the plagues that in the pendulous air +Hang fated o'er men's faults light on thy daughters! + +KENT: +He hath no daughters, sir. + +KING LEAR: +Death, traitor! nothing could have subdued nature +To such a lowness but his unkind daughters. +Is it the fashion, that discarded fathers +Should have thus little mercy on their flesh? +Judicious punishment! 'twas this flesh begot +Those pelican daughters. + +EDGAR: +Pillicock sat on Pillicock-hill: +Halloo, halloo, loo, loo! + +Fool: +This cold night will turn us all to fools and madmen. + +EDGAR: +Take heed o' the foul fiend: obey thy parents; +keep thy word justly; swear not; commit not with +man's sworn spouse; set not thy sweet heart on proud +array. Tom's a-cold. + +KING LEAR: +What hast thou been? + +EDGAR: +A serving-man, proud in heart and mind; that curled +my hair; wore gloves in my cap; served the lust of +my mistress' heart, and did the act of darkness with +her; swore as many oaths as I spake words, and +broke them in the sweet face of heaven: one that +slept in the contriving of lust, and waked to do it: +wine loved I deeply, dice dearly: and in woman +out-paramoured the Turk: false of heart, light of +ear, bloody of hand; hog in sloth, fox in stealth, +wolf in greediness, dog in madness, lion in prey. +Let not the creaking of shoes nor the rustling of +silks betray thy poor heart to woman: keep thy foot +out of brothels, thy hand out of plackets, thy pen +from lenders' books, and defy the foul fiend. +Still through the hawthorn blows the cold wind: +Says suum, mun, ha, no, nonny. +Dolphin my boy, my boy, sessa! let him trot by. + +KING LEAR: +Why, thou wert better in thy grave than to answer +with thy uncovered body this extremity of the skies. +Is man no more than this? Consider him well. Thou +owest the worm no silk, the beast no hide, the sheep +no wool, the cat no perfume. Ha! here's three on +'s are sophisticated! Thou art the thing itself: +unaccommodated man is no more but such a poor bare, +forked animal as thou art. Off, off, you lendings! +come unbutton here. + +Fool: +Prithee, nuncle, be contented; 'tis a naughty night +to swim in. Now a little fire in a wild field were +like an old lecher's heart; a small spark, all the +rest on's body cold. Look, here comes a walking fire. + +EDGAR: +This is the foul fiend Flibbertigibbet: he begins +at curfew, and walks till the first cock; he gives +the web and the pin, squints the eye, and makes the +hare-lip; mildews the white wheat, and hurts the +poor creature of earth. +S. Withold footed thrice the old; +He met the night-mare, and her nine-fold; +Bid her alight, +And her troth plight, +And, aroint thee, witch, aroint thee! + +KENT: +How fares your grace? + +KING LEAR: +What's he? + +KENT: +Who's there? What is't you seek? + +GLOUCESTER: +What are you there? Your names? + +EDGAR: +Poor Tom; that eats the swimming frog, the toad, +the tadpole, the wall-newt and the water; that in +the fury of his heart, when the foul fiend rages, +eats cow-dung for sallets; swallows the old rat and +the ditch-dog; drinks the green mantle of the +standing pool; who is whipped from tithing to +tithing, and stock- punished, and imprisoned; who +hath had three suits to his back, six shirts to his +body, horse to ride, and weapon to wear; +But mice and rats, and such small deer, +Have been Tom's food for seven long year. +Beware my follower. Peace, Smulkin; peace, thou fiend! + +GLOUCESTER: +What, hath your grace no better company? + +EDGAR: +The prince of darkness is a gentleman: +Modo he's call'd, and Mahu. + +GLOUCESTER: +Our flesh and blood is grown so vile, my lord, +That it doth hate what gets it. + +EDGAR: +Poor Tom's a-cold. + +GLOUCESTER: +Go in with me: my duty cannot suffer +To obey in all your daughters' hard commands: +Though their injunction be to bar my doors, +And let this tyrannous night take hold upon you, +Yet have I ventured to come seek you out, +And bring you where both fire and food is ready. + +KING LEAR: +First let me talk with this philosopher. +What is the cause of thunder? + +KENT: +Good my lord, take his offer; go into the house. + +KING LEAR: +I'll talk a word with this same learned Theban. +What is your study? + +EDGAR: +How to prevent the fiend, and to kill vermin. + +KING LEAR: +Let me ask you one word in private. + +KENT: +Importune him once more to go, my lord; +His wits begin to unsettle. + +GLOUCESTER: +Canst thou blame him? +His daughters seek his death: ah, that good Kent! +He said it would be thus, poor banish'd man! +Thou say'st the king grows mad; I'll tell thee, friend, +I am almost mad myself: I had a son, +Now outlaw'd from my blood; he sought my life, +But lately, very late: I loved him, friend; +No father his son dearer: truth to tell thee, +The grief hath crazed my wits. What a night's this! +I do beseech your grace,-- + +KING LEAR: +O, cry your mercy, sir. +Noble philosopher, your company. + +EDGAR: +Tom's a-cold. + +GLOUCESTER: +In, fellow, there, into the hovel: keep thee warm. + +KING LEAR: +Come let's in all. + +KENT: +This way, my lord. + +KING LEAR: +With him; +I will keep still with my philosopher. + +KENT: +Good my lord, soothe him; let him take the fellow. + +GLOUCESTER: +Take him you on. + +KENT: +Sirrah, come on; go along with us. + +KING LEAR: +Come, good Athenian. + +GLOUCESTER: +No words, no words: hush. + +EDGAR: +Child Rowland to the dark tower came, +His word was still,--Fie, foh, and fum, +I smell the blood of a British man. + +CORNWALL: +I will have my revenge ere I depart his house. + +EDMUND: +How, my lord, I may be censured, that nature thus +gives way to loyalty, something fears me to think +of. + +CORNWALL: +I now perceive, it was not altogether your +brother's evil disposition made him seek his death; +but a provoking merit, set a-work by a reprovable +badness in himself. + +EDMUND: +How malicious is my fortune, that I must repent to +be just! This is the letter he spoke of, which +approves him an intelligent party to the advantages +of France: O heavens! that this treason were not, +or not I the detector! + +CORNWALL: +o with me to the duchess. + +EDMUND: +If the matter of this paper be certain, you have +mighty business in hand. + +CORNWALL: +True or false, it hath made thee earl of +Gloucester. Seek out where thy father is, that he +may be ready for our apprehension. + +EDMUND: + +CORNWALL: +I will lay trust upon thee; and thou shalt find a +dearer father in my love. + +GLOUCESTER: +Here is better than the open air; take it +thankfully. I will piece out the comfort with what +addition I can: I will not be long from you. + +KENT: +All the power of his wits have given way to his +impatience: the gods reward your kindness! + +EDGAR: +Frateretto calls me; and tells me +Nero is an angler in the lake of darkness. +Pray, innocent, and beware the foul fiend. + +Fool: +Prithee, nuncle, tell me whether a madman be a +gentleman or a yeoman? + +KING LEAR: +A king, a king! + +Fool: +No, he's a yeoman that has a gentleman to his son; +for he's a mad yeoman that sees his son a gentleman +before him. + +KING LEAR: +To have a thousand with red burning spits +Come hissing in upon 'em,-- + +EDGAR: +The foul fiend bites my back. + +Fool: +He's mad that trusts in the tameness of a wolf, a +horse's health, a boy's love, or a whore's oath. + +KING LEAR: +It shall be done; I will arraign them straight. +Come, sit thou here, most learned justicer; +Thou, sapient sir, sit here. Now, you she foxes! + +EDGAR: +Look, where he stands and glares! +Wantest thou eyes at trial, madam? +Come o'er the bourn, Bessy, to me,-- + +Fool: +Her boat hath a leak, +And she must not speak +Why she dares not come over to thee. + +EDGAR: +The foul fiend haunts poor Tom in the voice of a +nightingale. Hopdance cries in Tom's belly for two +white herring. Croak not, black angel; I have no +food for thee. + +KENT: +How do you, sir? Stand you not so amazed: +Will you lie down and rest upon the cushions? + +KING LEAR: +I'll see their trial first. Bring in the evidence. +Thou robed man of justice, take thy place; +And thou, his yoke-fellow of equity, +Bench by his side: +you are o' the commission, +Sit you too. + +EDGAR: +Let us deal justly. +Sleepest or wakest thou, jolly shepherd? +Thy sheep be in the corn; +And for one blast of thy minikin mouth, +Thy sheep shall take no harm. +Pur! the cat is gray. + +KING LEAR: +Arraign her first; 'tis Goneril. I here take my +oath before this honourable assembly, she kicked the +poor king her father. + +Fool: +Come hither, mistress. Is your name Goneril? + +KING LEAR: +She cannot deny it. + +Fool: +Cry you mercy, I took you for a joint-stool. + +KING LEAR: +And here's another, whose warp'd looks proclaim +What store her heart is made on. Stop her there! +Arms, arms, sword, fire! Corruption in the place! +False justicer, why hast thou let her 'scape? + +EDGAR: +Bless thy five wits! + +KENT: +O pity! Sir, where is the patience now, +That thou so oft have boasted to retain? + +EDGAR: + +KING LEAR: +The little dogs and all, Tray, Blanch, and +Sweet-heart, see, they bark at me. + +EDGAR: +Tom will throw his head at them. Avaunt, you curs! +Be thy mouth or black or white, +Tooth that poisons if it bite; +Mastiff, grey-hound, mongrel grim, +Hound or spaniel, brach or lym, +Or bobtail tike or trundle-tail, +Tom will make them weep and wail: +For, with throwing thus my head, +Dogs leap the hatch, and all are fled. +Do de, de, de. Sessa! Come, march to wakes and +fairs and market-towns. Poor Tom, thy horn is dry. + +KING LEAR: +Then let them anatomize Regan; see what breeds +about her heart. Is there any cause in nature that +makes these hard hearts? +You, sir, I entertain for one of my hundred; only I +do not like the fashion of your garments: you will +say they are Persian attire: but let them be changed. + +KENT: +Now, good my lord, lie here and rest awhile. + +KING LEAR: +Make no noise, make no noise; draw the curtains: +so, so, so. We'll go to supper i' he morning. So, so, so. + +Fool: +And I'll go to bed at noon. + +GLOUCESTER: +Come hither, friend: where is the king my master? + +KENT: +Here, sir; but trouble him not, his wits are gone. + +GLOUCESTER: +Good friend, I prithee, take him in thy arms; +I have o'erheard a plot of death upon him: +There is a litter ready; lay him in 't, +And drive towards Dover, friend, where thou shalt meet +Both welcome and protection. Take up thy master: +If thou shouldst dally half an hour, his life, +With thine, and all that offer to defend him, +Stand in assured loss: take up, take up; +And follow me, that will to some provision +Give thee quick conduct. + +KENT: +Oppressed nature sleeps: +This rest might yet have balm'd thy broken senses, +Which, if convenience will not allow, +Stand in hard cure. +Come, help to bear thy master; +Thou must not stay behind. + +GLOUCESTER: +Come, come, away. + +EDGAR: +When we our betters see bearing our woes, +We scarcely think our miseries our foes. +Who alone suffers suffers most i' the mind, +Leaving free things and happy shows behind: +But then the mind much sufferance doth o'er skip, +When grief hath mates, and bearing fellowship. +How light and portable my pain seems now, +When that which makes me bend makes the king bow, +He childed as I father'd! Tom, away! +Mark the high noises; and thyself bewray, +When false opinion, whose wrong thought defiles thee, +In thy just proof, repeals and reconciles thee. +What will hap more to-night, safe 'scape the king! +Lurk, lurk. + +CORNWALL: +Post speedily to my lord your husband; show him +this letter: the army of France is landed. Seek +out the villain Gloucester. + +REGAN: +Hang him instantly. + +GONERIL: +Pluck out his eyes. + +CORNWALL: +Leave him to my displeasure. Edmund, keep you our +sister company: the revenges we are bound to take +upon your traitorous father are not fit for your +beholding. Advise the duke, where you are going, to +a most festinate preparation: we are bound to the +like. Our posts shall be swift and intelligent +betwixt us. Farewell, dear sister: farewell, my +lord of Gloucester. +How now! where's the king? + +OSWALD: +My lord of Gloucester hath convey'd him hence: +Some five or six and thirty of his knights, +Hot questrists after him, met him at gate; +Who, with some other of the lords dependants, +Are gone with him towards Dover; where they boast +To have well-armed friends. + +CORNWALL: +Get horses for your mistress. + +GONERIL: +Farewell, sweet lord, and sister. + +CORNWALL: +Edmund, farewell. +Go seek the traitor Gloucester, +Pinion him like a thief, bring him before us. +Though well we may not pass upon his life +Without the form of justice, yet our power +Shall do a courtesy to our wrath, which men +May blame, but not control. Who's there? the traitor? + +REGAN: +Ingrateful fox! 'tis he. + +CORNWALL: +Bind fast his corky arms. + +GLOUCESTER: +What mean your graces? Good my friends, consider +You are my guests: do me no foul play, friends. + +CORNWALL: +Bind him, I say. + +REGAN: +Hard, hard. O filthy traitor! + +GLOUCESTER: +Unmerciful lady as you are, I'm none. + +CORNWALL: +To this chair bind him. Villain, thou shalt find-- + +GLOUCESTER: +By the kind gods, 'tis most ignobly done +To pluck me by the beard. + +REGAN: +So white, and such a traitor! + +GLOUCESTER: +Naughty lady, +These hairs, which thou dost ravish from my chin, +Will quicken, and accuse thee: I am your host: +With robbers' hands my hospitable favours +You should not ruffle thus. What will you do? + +CORNWALL: +Come, sir, what letters had you late from France? + +REGAN: +Be simple answerer, for we know the truth. + +CORNWALL: +And what confederacy have you with the traitors +Late footed in the kingdom? + +REGAN: +To whose hands have you sent the lunatic king? Speak. + +GLOUCESTER: +I have a letter guessingly set down, +Which came from one that's of a neutral heart, +And not from one opposed. + +CORNWALL: +Cunning. + +REGAN: +And false. + +CORNWALL: +Where hast thou sent the king? + +GLOUCESTER: +To Dover. + +REGAN: +Wherefore to Dover? Wast thou not charged at peril-- + +CORNWALL: +Wherefore to Dover? Let him first answer that. + +GLOUCESTER: +I am tied to the stake, and I must stand the course. + +REGAN: +Wherefore to Dover, sir? + +GLOUCESTER: +Because I would not see thy cruel nails +Pluck out his poor old eyes; nor thy fierce sister +In his anointed flesh stick boarish fangs. +The sea, with such a storm as his bare head +In hell-black night endured, would have buoy'd up, +And quench'd the stelled fires: +Yet, poor old heart, he holp the heavens to rain. +If wolves had at thy gate howl'd that stern time, +Thou shouldst have said 'Good porter, turn the key,' +All cruels else subscribed: but I shall see +The winged vengeance overtake such children. + +CORNWALL: +See't shalt thou never. Fellows, hold the chair. +Upon these eyes of thine I'll set my foot. + +GLOUCESTER: +He that will think to live till he be old, +Give me some help! O cruel! O you gods! + +REGAN: +One side will mock another; the other too. + +CORNWALL: +If you see vengeance,-- + +First Servant: +Hold your hand, my lord: +I have served you ever since I was a child; +But better service have I never done you +Than now to bid you hold. + +REGAN: +How now, you dog! + +First Servant: +If you did wear a beard upon your chin, +I'd shake it on this quarrel. What do you mean? + +CORNWALL: +My villain! + +First Servant: +Nay, then, come on, and take the chance of anger. + +REGAN: +Give me thy sword. A peasant stand up thus! + +First Servant: +O, I am slain! My lord, you have one eye left +To see some mischief on him. O! + +CORNWALL: +Lest it see more, prevent it. Out, vile jelly! +Where is thy lustre now? + +GLOUCESTER: +All dark and comfortless. Where's my son Edmund? +Edmund, enkindle all the sparks of nature, +To quit this horrid act. + +REGAN: +Out, treacherous villain! +Thou call'st on him that hates thee: it was he +That made the overture of thy treasons to us; +Who is too good to pity thee. + +GLOUCESTER: +O my follies! then Edgar was abused. +Kind gods, forgive me that, and prosper him! + +REGAN: +Go thrust him out at gates, and let him smell +His way to Dover. +How is't, my lord? how look you? + +CORNWALL: +I have received a hurt: follow me, lady. +Turn out that eyeless villain; throw this slave +Upon the dunghill. Regan, I bleed apace: +Untimely comes this hurt: give me your arm. + +Second Servant: +I'll never care what wickedness I do, +If this man come to good. + +Third Servant: +If she live long, +And in the end meet the old course of death, +Women will all turn monsters. + +Second Servant: +Let's follow the old earl, and get the Bedlam +To lead him where he would: his roguish madness +Allows itself to any thing. + +Third Servant: +Go thou: I'll fetch some flax and whites of eggs +To apply to his bleeding face. Now, heaven help him! + +EDGAR: +Yet better thus, and known to be contemn'd, +Than still contemn'd and flatter'd. To be worst, +The lowest and most dejected thing of fortune, +Stands still in esperance, lives not in fear: +The lamentable change is from the best; +The worst returns to laughter. Welcome, then, +Thou unsubstantial air that I embrace! +The wretch that thou hast blown unto the worst +Owes nothing to thy blasts. But who comes here? +My father, poorly led? World, world, O world! +But that thy strange mutations make us hate thee, +Lie would not yield to age. + +Old Man: +O, my good lord, I have been your tenant, and +your father's tenant, these fourscore years. + +GLOUCESTER: +Away, get thee away; good friend, be gone: +Thy comforts can do me no good at all; +Thee they may hurt. + +Old Man: +Alack, sir, you cannot see your way. + +GLOUCESTER: +I have no way, and therefore want no eyes; +I stumbled when I saw: full oft 'tis seen, +Our means secure us, and our mere defects +Prove our commodities. O dear son Edgar, +The food of thy abused father's wrath! +Might I but live to see thee in my touch, +I'ld say I had eyes again! + +Old Man: +How now! Who's there? + +EDGAR: + +Old Man: +'Tis poor mad Tom. + +EDGAR: + +Old Man: +Fellow, where goest? + +GLOUCESTER: +Is it a beggar-man? + +Old Man: +Madman and beggar too. + +GLOUCESTER: +He has some reason, else he could not beg. +I' the last night's storm I such a fellow saw; +Which made me think a man a worm: my son +Came then into my mind; and yet my mind +Was then scarce friends with him: I have heard +more since. +As flies to wanton boys, are we to the gods. +They kill us for their sport. + +EDGAR: + +GLOUCESTER: +Is that the naked fellow? + +Old Man: +Ay, my lord. + +GLOUCESTER: +Then, prithee, get thee gone: if, for my sake, +Thou wilt o'ertake us, hence a mile or twain, +I' the way toward Dover, do it for ancient love; +And bring some covering for this naked soul, +Who I'll entreat to lead me. + +Old Man: +Alack, sir, he is mad. + +GLOUCESTER: +'Tis the times' plague, when madmen lead the blind. +Do as I bid thee, or rather do thy pleasure; +Above the rest, be gone. + +Old Man: +I'll bring him the best 'parel that I have, +Come on't what will. + +GLOUCESTER: +Sirrah, naked fellow,-- + +EDGAR: +Poor Tom's a-cold. +I cannot daub it further. + +GLOUCESTER: +Come hither, fellow. + +EDGAR: + +GLOUCESTER: +Know'st thou the way to Dover? + +EDGAR: +Both stile and gate, horse-way and foot-path. Poor +Tom hath been scared out of his good wits: bless +thee, good man's son, from the foul fiend! five +fiends have been in poor Tom at once; of lust, as +Obidicut; Hobbididence, prince of dumbness; Mahu, of +stealing; Modo, of murder; Flibbertigibbet, of +mopping and mowing, who since possesses chambermaids +and waiting-women. So, bless thee, master! + +GLOUCESTER: +Here, take this purse, thou whom the heavens' plagues +Have humbled to all strokes: that I am wretched +Makes thee the happier: heavens, deal so still! +Let the superfluous and lust-dieted man, +That slaves your ordinance, that will not see +Because he doth not feel, feel your power quickly; +So distribution should undo excess, +And each man have enough. Dost thou know Dover? + +EDGAR: +Ay, master. + +GLOUCESTER: +There is a cliff, whose high and bending head +Looks fearfully in the confined deep: +Bring me but to the very brim of it, +And I'll repair the misery thou dost bear +With something rich about me: from that place +I shall no leading need. + +EDGAR: +Give me thy arm: +Poor Tom shall lead thee. + +GONERIL: +Welcome, my lord: I marvel our mild husband +Not met us on the way. +Now, where's your master'? + +OSWALD: +Madam, within; but never man so changed. +I told him of the army that was landed; +He smiled at it: I told him you were coming: +His answer was 'The worse:' of Gloucester's treachery, +And of the loyal service of his son, +When I inform'd him, then he call'd me sot, +And told me I had turn'd the wrong side out: +What most he should dislike seems pleasant to him; +What like, offensive. + +GONERIL: + +EDMUND: +Yours in the ranks of death. + +GONERIL: +My most dear Gloucester! +O, the difference of man and man! +To thee a woman's services are due: +My fool usurps my body. + +OSWALD: +Madam, here comes my lord. + +GONERIL: +I have been worth the whistle. + +ALBANY: +O Goneril! +You are not worth the dust which the rude wind +Blows in your face. I fear your disposition: +That nature, which contemns its origin, +Cannot be border'd certain in itself; +She that herself will sliver and disbranch +From her material sap, perforce must wither +And come to deadly use. + +GONERIL: +No more; the text is foolish. + +ALBANY: +Wisdom and goodness to the vile seem vile: +Filths savour but themselves. What have you done? +Tigers, not daughters, what have you perform'd? +A father, and a gracious aged man, +Whose reverence even the head-lugg'd bear would lick, +Most barbarous, most degenerate! have you madded. +Could my good brother suffer you to do it? +A man, a prince, by him so benefited! +If that the heavens do not their visible spirits +Send quickly down to tame these vile offences, +It will come, +Humanity must perforce prey on itself, +Like monsters of the deep. + +GONERIL: +Milk-liver'd man! +That bear'st a cheek for blows, a head for wrongs; +Who hast not in thy brows an eye discerning +Thine honour from thy suffering; that not know'st +Fools do those villains pity who are punish'd +Ere they have done their mischief. Where's thy drum? +France spreads his banners in our noiseless land; +With plumed helm thy slayer begins threats; +Whiles thou, a moral fool, sit'st still, and criest +'Alack, why does he so?' + +ALBANY: +See thyself, devil! +Proper deformity seems not in the fiend +So horrid as in woman. + +GONERIL: +O vain fool! + +ALBANY: +Thou changed and self-cover'd thing, for shame, +Be-monster not thy feature. Were't my fitness +To let these hands obey my blood, +They are apt enough to dislocate and tear +Thy flesh and bones: howe'er thou art a fiend, +A woman's shape doth shield thee. + +GONERIL: +Marry, your manhood now-- + +ALBANY: +What news? + +Messenger: +O, my good lord, the Duke of Cornwall's dead: +Slain by his servant, going to put out +The other eye of Gloucester. + +ALBANY: +Gloucester's eye! + +Messenger: +A servant that he bred, thrill'd with remorse, +Opposed against the act, bending his sword +To his great master; who, thereat enraged, +Flew on him, and amongst them fell'd him dead; +But not without that harmful stroke, which since +Hath pluck'd him after. + +ALBANY: +This shows you are above, +You justicers, that these our nether crimes +So speedily can venge! But, O poor Gloucester! +Lost he his other eye? + +Messenger: +Both, both, my lord. +This letter, madam, craves a speedy answer; +'Tis from your sister. + +GONERIL: + +ALBANY: +Where was his son when they did take his eyes? + +Messenger: +Come with my lady hither. + +ALBANY: +He is not here. + +Messenger: +No, my good lord; I met him back again. + +ALBANY: +Knows he the wickedness? + +Messenger: +Ay, my good lord; 'twas he inform'd against him; +And quit the house on purpose, that their punishment +Might have the freer course. + +ALBANY: +Gloucester, I live +To thank thee for the love thou show'dst the king, +And to revenge thine eyes. Come hither, friend: +Tell me what more thou know'st. + +KENT: +Why the King of France is so suddenly gone back +know you the reason? + +Gentleman: +Something he left imperfect in the +state, which since his coming forth is thought +of; which imports to the kingdom so much +fear and danger, that his personal return was +most required and necessary. + +KENT: +Who hath he left behind him general? + +Gentleman: +The Marshal of France, Monsieur La Far. + +KENT: +Did your letters pierce the queen to any +demonstration of grief? + +Gentleman: +Ay, sir; she took them, read them in my presence; +And now and then an ample tear trill'd down +Her delicate cheek: it seem'd she was a queen +Over her passion; who, most rebel-like, +Sought to be king o'er her. + +KENT: +O, then it moved her. + +Gentleman: +Not to a rage: patience and sorrow strove +Who should express her goodliest. You have seen +Sunshine and rain at once: her smiles and tears +Were like a better way: those happy smilets, +That play'd on her ripe lip, seem'd not to know +What guests were in her eyes; which parted thence, +As pearls from diamonds dropp'd. In brief, +Sorrow would be a rarity most beloved, +If all could so become it. + +KENT: +Made she no verbal question? + +Gentleman: +'Faith, once or twice she heaved the name of 'father' +Pantingly forth, as if it press'd her heart: +Cried 'Sisters! sisters! Shame of ladies! sisters! +Kent! father! sisters! What, i' the storm? i' the night? +Let pity not be believed!' There she shook +The holy water from her heavenly eyes, +And clamour moisten'd: then away she started +To deal with grief alone. + +KENT: +It is the stars, +The stars above us, govern our conditions; +Else one self mate and mate could not beget +Such different issues. You spoke not with her since? + +Gentleman: +No. + +KENT: +Was this before the king return'd? + +Gentleman: +No, since. + +KENT: +Well, sir, the poor distressed Lear's i' the town; +Who sometime, in his better tune, remembers +What we are come about, and by no means +Will yield to see his daughter. + +Gentleman: +Why, good sir? + +KENT: +A sovereign shame so elbows him: his own unkindness, +That stripp'd her from his benediction, turn'd her +To foreign casualties, gave her dear rights +To his dog-hearted daughters, these things sting +His mind so venomously, that burning shame +Detains him from Cordelia. + +Gentleman: +Alack, poor gentleman! + +KENT: +Of Albany's and Cornwall's powers you heard not? + +Gentleman: +'Tis so, they are afoot. + +KENT: +Well, sir, I'll bring you to our master Lear, +And leave you to attend him: some dear cause +Will in concealment wrap me up awhile; +When I am known aright, you shall not grieve +Lending me this acquaintance. I pray you, go +Along with me. + +CORDELIA: +Alack, 'tis he: why, he was met even now +As mad as the vex'd sea; singing aloud; +Crown'd with rank fumiter and furrow-weeds, +With bur-docks, hemlock, nettles, cuckoo-flowers, +Darnel, and all the idle weeds that grow +In our sustaining corn. A century send forth; +Search every acre in the high-grown field, +And bring him to our eye. +What can man's wisdom +In the restoring his bereaved sense? +He that helps him take all my outward worth. + +Doctor: +There is means, madam: +Our foster-nurse of nature is repose, +The which he lacks; that to provoke in him, +Are many simples operative, whose power +Will close the eye of anguish. + +CORDELIA: +All blest secrets, +All you unpublish'd virtues of the earth, +Spring with my tears! be aidant and remediate +In the good man's distress! Seek, seek for him; +Lest his ungovern'd rage dissolve the life +That wants the means to lead it. + +Messenger: +News, madam; +The British powers are marching hitherward. + +CORDELIA: +'Tis known before; our preparation stands +In expectation of them. O dear father, +It is thy business that I go about; +Therefore great France +My mourning and important tears hath pitied. +No blown ambition doth our arms incite, +But love, dear love, and our aged father's right: +Soon may I hear and see him! + +REGAN: +But are my brother's powers set forth? + +OSWALD: +Ay, madam. + +REGAN: +Himself in person there? + +OSWALD: +Madam, with much ado: +Your sister is the better soldier. + +REGAN: +Lord Edmund spake not with your lord at home? + +OSWALD: +No, madam. + +REGAN: +What might import my sister's letter to him? + +OSWALD: +I know not, lady. + +REGAN: +'Faith, he is posted hence on serious matter. +It was great ignorance, Gloucester's eyes being out, +To let him live: where he arrives he moves +All hearts against us: Edmund, I think, is gone, +In pity of his misery, to dispatch +His nighted life: moreover, to descry +The strength o' the enemy. + +OSWALD: +I must needs after him, madam, with my letter. + +REGAN: +Our troops set forth to-morrow: stay with us; +The ways are dangerous. + +OSWALD: +I may not, madam: +My lady charged my duty in this business. + +REGAN: +Why should she write to Edmund? Might not you +Transport her purposes by word? Belike, +Something--I know not what: I'll love thee much, +Let me unseal the letter. + +OSWALD: +Madam, I had rather-- + +REGAN: +I know your lady does not love her husband; +I am sure of that: and at her late being here +She gave strange oeillades and most speaking looks +To noble Edmund. I know you are of her bosom. + +OSWALD: +I, madam? + +REGAN: +I speak in understanding; you are; I know't: +Therefore I do advise you, take this note: +My lord is dead; Edmund and I have talk'd; +And more convenient is he for my hand +Than for your lady's: you may gather more. +If you do find him, pray you, give him this; +And when your mistress hears thus much from you, +I pray, desire her call her wisdom to her. +So, fare you well. +If you do chance to hear of that blind traitor, +Preferment falls on him that cuts him off. + +OSWALD: +Would I could meet him, madam! I should show +What party I do follow. + +REGAN: +Fare thee well. + +GLOUCESTER: +When shall we come to the top of that same hill? + +EDGAR: +You do climb up it now: look, how we labour. + +GLOUCESTER: +Methinks the ground is even. + +EDGAR: +Horrible steep. +Hark, do you hear the sea? + +GLOUCESTER: +No, truly. + +EDGAR: +Why, then, your other senses grow imperfect +By your eyes' anguish. + +GLOUCESTER: +So may it be, indeed: +Methinks thy voice is alter'd; and thou speak'st +In better phrase and matter than thou didst. + +EDGAR: +You're much deceived: in nothing am I changed +But in my garments. + +GLOUCESTER: +Methinks you're better spoken. + +EDGAR: +Come on, sir; here's the place: stand still. How fearful +And dizzy 'tis, to cast one's eyes so low! +The crows and choughs that wing the midway air +Show scarce so gross as beetles: half way down +Hangs one that gathers samphire, dreadful trade! +Methinks he seems no bigger than his head: +The fishermen, that walk upon the beach, +Appear like mice; and yond tall anchoring bark, +Diminish'd to her cock; her cock, a buoy +Almost too small for sight: the murmuring surge, +That on the unnumber'd idle pebbles chafes, +Cannot be heard so high. I'll look no more; +Lest my brain turn, and the deficient sight +Topple down headlong. + +GLOUCESTER: +Set me where you stand. + +EDGAR: +Give me your hand: you are now within a foot +Of the extreme verge: for all beneath the moon +Would I not leap upright. + +GLOUCESTER: +Let go my hand. +Here, friend, 's another purse; in it a jewel +Well worth a poor man's taking: fairies and gods +Prosper it with thee! Go thou farther off; +Bid me farewell, and let me hear thee going. + +EDGAR: +Now fare you well, good sir. + +GLOUCESTER: +With all my heart. + +EDGAR: +Why I do trifle thus with his despair +Is done to cure it. + +GLOUCESTER: + +EDGAR: +Gone, sir: farewell. +And yet I know not how conceit may rob +The treasury of life, when life itself +Yields to the theft: had he been where he thought, +By this, had thought been past. Alive or dead? +Ho, you sir! friend! Hear you, sir! speak! +Thus might he pass indeed: yet he revives. +What are you, sir? + +GLOUCESTER: +Away, and let me die. + +EDGAR: +Hadst thou been aught but gossamer, feathers, air, +So many fathom down precipitating, +Thou'dst shiver'd like an egg: but thou dost breathe; +Hast heavy substance; bleed'st not; speak'st; art sound. +Ten masts at each make not the altitude +Which thou hast perpendicularly fell: +Thy life's a miracle. Speak yet again. + +GLOUCESTER: +But have I fall'n, or no? + +EDGAR: +From the dread summit of this chalky bourn. +Look up a-height; the shrill-gorged lark so far +Cannot be seen or heard: do but look up. + +GLOUCESTER: +Alack, I have no eyes. +Is wretchedness deprived that benefit, +To end itself by death? 'Twas yet some comfort, +When misery could beguile the tyrant's rage, +And frustrate his proud will. + +EDGAR: +Give me your arm: +Up: so. How is 't? Feel you your legs? You stand. + +GLOUCESTER: +Too well, too well. + +EDGAR: +This is above all strangeness. +Upon the crown o' the cliff, what thing was that +Which parted from you? + +GLOUCESTER: +A poor unfortunate beggar. + +EDGAR: +As I stood here below, methought his eyes +Were two full moons; he had a thousand noses, +Horns whelk'd and waved like the enridged sea: +It was some fiend; therefore, thou happy father, +Think that the clearest gods, who make them honours +Of men's impossibilities, have preserved thee. + +GLOUCESTER: +I do remember now: henceforth I'll bear +Affliction till it do cry out itself +'Enough, enough,' and die. That thing you speak of, +I took it for a man; often 'twould say +'The fiend, the fiend:' he led me to that place. + +EDGAR: +Bear free and patient thoughts. But who comes here? +The safer sense will ne'er accommodate +His master thus. + +KING LEAR: +No, they cannot touch me for coining; I am the +king himself. + +EDGAR: +O thou side-piercing sight! + +KING LEAR: +Nature's above art in that respect. There's your +press-money. That fellow handles his bow like a +crow-keeper: draw me a clothier's yard. Look, +look, a mouse! Peace, peace; this piece of toasted +cheese will do 't. There's my gauntlet; I'll prove +it on a giant. Bring up the brown bills. O, well +flown, bird! i' the clout, i' the clout: hewgh! +Give the word. + +EDGAR: +Sweet marjoram. + +KING LEAR: +Pass. + +GLOUCESTER: +I know that voice. + +KING LEAR: +Ha! Goneril, with a white beard! They flattered +me like a dog; and told me I had white hairs in my +beard ere the black ones were there. To say 'ay' +and 'no' to every thing that I said!--'Ay' and 'no' +too was no good divinity. When the rain came to +wet me once, and the wind to make me chatter; when +the thunder would not peace at my bidding; there I +found 'em, there I smelt 'em out. Go to, they are +not men o' their words: they told me I was every +thing; 'tis a lie, I am not ague-proof. + +GLOUCESTER: +The trick of that voice I do well remember: +Is 't not the king? + +KING LEAR: +Ay, every inch a king: +When I do stare, see how the subject quakes. +I pardon that man's life. What was thy cause? Adultery? +Thou shalt not die: die for adultery! No: +The wren goes to 't, and the small gilded fly +Does lecher in my sight. +Let copulation thrive; for Gloucester's bastard son +Was kinder to his father than my daughters +Got 'tween the lawful sheets. +To 't, luxury, pell-mell! for I lack soldiers. +Behold yond simpering dame, +Whose face between her forks presages snow; +That minces virtue, and does shake the head +To hear of pleasure's name; +The fitchew, nor the soiled horse, goes to 't +With a more riotous appetite. +Down from the waist they are Centaurs, +Though women all above: +But to the girdle do the gods inherit, +Beneath is all the fiends'; +There's hell, there's darkness, there's the +sulphurous pit, +Burning, scalding, stench, consumption; fie, +fie, fie! pah, pah! Give me an ounce of civet, +good apothecary, to sweeten my imagination: +there's money for thee. + +GLOUCESTER: +O, let me kiss that hand! + +KING LEAR: +Let me wipe it first; it smells of mortality. + +GLOUCESTER: +O ruin'd piece of nature! This great world +Shall so wear out to nought. Dost thou know me? + +KING LEAR: +I remember thine eyes well enough. Dost thou squiny +at me? No, do thy worst, blind Cupid! I'll not +love. Read thou this challenge; mark but the +penning of it. + +GLOUCESTER: +Were all the letters suns, I could not see one. + +EDGAR: +I would not take this from report; it is, +And my heart breaks at it. + +KING LEAR: +Read. + +GLOUCESTER: +What, with the case of eyes? + +KING LEAR: +O, ho, are you there with me? No eyes in your +head, nor no money in your purse? Your eyes are in +a heavy case, your purse in a light; yet you see how +this world goes. + +GLOUCESTER: +I see it feelingly. + +KING LEAR: +What, art mad? A man may see how this world goes +with no eyes. Look with thine ears: see how yond +justice rails upon yond simple thief. Hark, in +thine ear: change places; and, handy-dandy, which +is the justice, which is the thief? Thou hast seen +a farmer's dog bark at a beggar? + +GLOUCESTER: +Ay, sir. + +KING LEAR: +And the creature run from the cur? There thou +mightst behold the great image of authority: a +dog's obeyed in office. +Thou rascal beadle, hold thy bloody hand! +Why dost thou lash that whore? Strip thine own back; +Thou hotly lust'st to use her in that kind +For which thou whipp'st her. The usurer hangs the cozener. +Through tatter'd clothes small vices do appear; +Robes and furr'd gowns hide all. Plate sin with gold, +And the strong lance of justice hurtless breaks: +Arm it in rags, a pigmy's straw does pierce it. +None does offend, none, I say, none; I'll able 'em: +Take that of me, my friend, who have the power +To seal the accuser's lips. Get thee glass eyes; +And like a scurvy politician, seem +To see the things thou dost not. Now, now, now, now: +Pull off my boots: harder, harder: so. + +EDGAR: +O, matter and impertinency mix'd! Reason in madness! + +KING LEAR: +If thou wilt weep my fortunes, take my eyes. +I know thee well enough; thy name is Gloucester: +Thou must be patient; we came crying hither: +Thou know'st, the first time that we smell the air, +We wawl and cry. I will preach to thee: mark. + +GLOUCESTER: +Alack, alack the day! + +KING LEAR: +When we are born, we cry that we are come +To this great stage of fools: this a good block; +It were a delicate stratagem, to shoe +A troop of horse with felt: I'll put 't in proof; +And when I have stol'n upon these sons-in-law, +Then, kill, kill, kill, kill, kill, kill! + +Gentleman: +O, here he is: lay hand upon him. Sir, +Your most dear daughter-- + +KING LEAR: +No rescue? What, a prisoner? I am even +The natural fool of fortune. Use me well; +You shall have ransom. Let me have surgeons; +I am cut to the brains. + +Gentleman: +You shall have any thing. + +KING LEAR: +No seconds? all myself? +Why, this would make a man a man of salt, +To use his eyes for garden water-pots, +Ay, and laying autumn's dust. + +Gentleman: +Good sir,-- + +KING LEAR: +I will die bravely, like a bridegroom. What! +I will be jovial: come, come; I am a king, +My masters, know you that. + +Gentleman: +You are a royal one, and we obey you. + +KING LEAR: +Then there's life in't. Nay, if you get it, you +shall get it with running. Sa, sa, sa, sa. + +Gentleman: +A sight most pitiful in the meanest wretch, +Past speaking of in a king! Thou hast one daughter, +Who redeems nature from the general curse +Which twain have brought her to. + +EDGAR: +Hail, gentle sir. + +Gentleman: +Sir, speed you: what's your will? + +EDGAR: +Do you hear aught, sir, of a battle toward? + +Gentleman: +Most sure and vulgar: every one hears that, +Which can distinguish sound. + +EDGAR: +But, by your favour, +How near's the other army? + +Gentleman: +Near and on speedy foot; the main descry +Stands on the hourly thought. + +EDGAR: +I thank you, sir: that's all. + +Gentleman: +Though that the queen on special cause is here, +Her army is moved on. + +EDGAR: +I thank you, sir. + +GLOUCESTER: +You ever-gentle gods, take my breath from me: +Let not my worser spirit tempt me again +To die before you please! + +EDGAR: +Well pray you, father. + +GLOUCESTER: +Now, good sir, what are you? + +EDGAR: +A most poor man, made tame to fortune's blows; +Who, by the art of known and feeling sorrows, +Am pregnant to good pity. Give me your hand, +I'll lead you to some biding. + +GLOUCESTER: +Hearty thanks: +The bounty and the benison of heaven +To boot, and boot! + +OSWALD: +A proclaim'd prize! Most happy! +That eyeless head of thine was first framed flesh +To raise my fortunes. Thou old unhappy traitor, +Briefly thyself remember: the sword is out +That must destroy thee. + +GLOUCESTER: +Now let thy friendly hand +Put strength enough to't. + +OSWALD: +Wherefore, bold peasant, +Darest thou support a publish'd traitor? Hence; +Lest that the infection of his fortune take +Like hold on thee. Let go his arm. + +EDGAR: +Ch'ill not let go, zir, without vurther 'casion. + +OSWALD: +Let go, slave, or thou diest! + +EDGAR: +Good gentleman, go your gait, and let poor volk +pass. An chud ha' bin zwaggered out of my life, +'twould not ha' bin zo long as 'tis by a vortnight. +Nay, come not near th' old man; keep out, che vor +ye, or ise try whether your costard or my ballow be +the harder: ch'ill be plain with you. + +OSWALD: +Out, dunghill! + +EDGAR: +Ch'ill pick your teeth, zir: come; no matter vor +your foins. + +OSWALD: +Slave, thou hast slain me: villain, take my purse: +If ever thou wilt thrive, bury my body; +And give the letters which thou find'st about me +To Edmund earl of Gloucester; seek him out +Upon the British party: O, untimely death! + +EDGAR: +I know thee well: a serviceable villain; +As duteous to the vices of thy mistress +As badness would desire. + +GLOUCESTER: +What, is he dead? + +EDGAR: +Sit you down, father; rest you +Let's see these pockets: the letters that he speaks of +May be my friends. He's dead; I am only sorry +He had no other death's-man. Let us see: +Leave, gentle wax; and, manners, blame us not: +To know our enemies' minds, we'ld rip their hearts; +Their papers, is more lawful. +'Let our reciprocal vows be remembered. You have +many opportunities to cut him off: if your will +want not, time and place will be fruitfully offered. +There is nothing done, if he return the conqueror: +then am I the prisoner, and his bed my goal; from +the loathed warmth whereof deliver me, and supply +the place for your labour. +'Your--wife, so I would say-- +'Affectionate servant, +'GONERIL.' +O undistinguish'd space of woman's will! +A plot upon her virtuous husband's life; +And the exchange my brother! Here, in the sands, +Thee I'll rake up, the post unsanctified +Of murderous lechers: and in the mature time +With this ungracious paper strike the sight +Of the death practised duke: for him 'tis well +That of thy death and business I can tell. + +GLOUCESTER: +The king is mad: how stiff is my vile sense, +That I stand up, and have ingenious feeling +Of my huge sorrows! Better I were distract: +So should my thoughts be sever'd from my griefs, +And woes by wrong imaginations lose +The knowledge of themselves. + +EDGAR: +Give me your hand: +Far off, methinks, I hear the beaten drum: +Come, father, I'll bestow you with a friend. + +CORDELIA: +O thou good Kent, how shall I live and work, +To match thy goodness? My life will be too short, +And every measure fail me. + +KENT: +To be acknowledged, madam, is o'erpaid. +All my reports go with the modest truth; +Nor more nor clipp'd, but so. + +CORDELIA: +Be better suited: +These weeds are memories of those worser hours: +I prithee, put them off. + +KENT: +Pardon me, dear madam; +Yet to be known shortens my made intent: +My boon I make it, that you know me not +Till time and I think meet. + +CORDELIA: +Then be't so, my good lord. +How does the king? + +Doctor: +Madam, sleeps still. + +CORDELIA: +O you kind gods, +Cure this great breach in his abused nature! +The untuned and jarring senses, O, wind up +Of this child-changed father! + +Doctor: +So please your majesty +That we may wake the king: he hath slept long. + +CORDELIA: +Be govern'd by your knowledge, and proceed +I' the sway of your own will. Is he array'd? + +Gentleman: +Ay, madam; in the heaviness of his sleep +We put fresh garments on him. + +Doctor: +Be by, good madam, when we do awake him; +I doubt not of his temperance. + +CORDELIA: +Very well. + +Doctor: +Please you, draw near. Louder the music there! + +CORDELIA: +O my dear father! Restoration hang +Thy medicine on my lips; and let this kiss +Repair those violent harms that my two sisters +Have in thy reverence made! + +KENT: +Kind and dear princess! + +CORDELIA: +Had you not been their father, these white flakes +Had challenged pity of them. Was this a face +To be opposed against the warring winds? +To stand against the deep dread-bolted thunder? +In the most terrible and nimble stroke +Of quick, cross lightning? to watch--poor perdu!-- +With this thin helm? Mine enemy's dog, +Though he had bit me, should have stood that night +Against my fire; and wast thou fain, poor father, +To hovel thee with swine, and rogues forlorn, +In short and musty straw? Alack, alack! +'Tis wonder that thy life and wits at once +Had not concluded all. He wakes; speak to him. + +Doctor: +Madam, do you; 'tis fittest. + +CORDELIA: +How does my royal lord? How fares your majesty? + +KING LEAR: +You do me wrong to take me out o' the grave: +Thou art a soul in bliss; but I am bound +Upon a wheel of fire, that mine own tears +Do scald like moulten lead. + +CORDELIA: +Sir, do you know me? + +KING LEAR: +You are a spirit, I know: when did you die? + +CORDELIA: +Still, still, far wide! + +Doctor: +He's scarce awake: let him alone awhile. + +KING LEAR: +Where have I been? Where am I? Fair daylight? +I am mightily abused. I should e'en die with pity, +To see another thus. I know not what to say. +I will not swear these are my hands: let's see; +I feel this pin prick. Would I were assured +Of my condition! + +CORDELIA: +O, look upon me, sir, +And hold your hands in benediction o'er me: +No, sir, you must not kneel. + +KING LEAR: +Pray, do not mock me: +I am a very foolish fond old man, +Fourscore and upward, not an hour more nor less; +And, to deal plainly, +I fear I am not in my perfect mind. +Methinks I should know you, and know this man; +Yet I am doubtful for I am mainly ignorant +What place this is; and all the skill I have +Remembers not these garments; nor I know not +Where I did lodge last night. Do not laugh at me; +For, as I am a man, I think this lady +To be my child Cordelia. + +CORDELIA: +And so I am, I am. + +KING LEAR: +Be your tears wet? yes, 'faith. I pray, weep not: +If you have poison for me, I will drink it. +I know you do not love me; for your sisters +Have, as I do remember, done me wrong: +You have some cause, they have not. + +CORDELIA: +No cause, no cause. + +KING LEAR: +Am I in France? + +KENT: +In your own kingdom, sir. + +KING LEAR: +Do not abuse me. + +Doctor: +Be comforted, good madam: the great rage, +You see, is kill'd in him: and yet it is danger +To make him even o'er the time he has lost. +Desire him to go in; trouble him no more +Till further settling. + +CORDELIA: +Will't please your highness walk? + +KING LEAR: +You must bear with me: +Pray you now, forget and forgive: I am old and foolish. + +Gentleman: +Holds it true, sir, that the Duke of Cornwall was so slain? + +KENT: +Most certain, sir. + +Gentleman: +Who is conductor of his people? + +KENT: +As 'tis said, the bastard son of Gloucester. + +Gentleman: +They say Edgar, his banished son, is with the Earl +of Kent in Germany. + +KENT: +Report is changeable. 'Tis time to look about; the +powers of the kingdom approach apace. + +Gentleman: +The arbitrement is like to be bloody. Fare you +well, sir. + +KENT: +My point and period will be throughly wrought, +Or well or ill, as this day's battle's fought. + +REGAN: +Our sister's man is certainly miscarried. + +EDMUND: +'Tis to be doubted, madam. + +REGAN: +Now, sweet lord, +You know the goodness I intend upon you: +Tell me--but truly--but then speak the truth, +Do you not love my sister? + +EDMUND: +In honour'd love. + +REGAN: +But have you never found my brother's way +To the forfended place? + +EDMUND: +That thought abuses you. + +REGAN: +I am doubtful that you have been conjunct +And bosom'd with her, as far as we call hers. + +EDMUND: +No, by mine honour, madam. + +REGAN: +I never shall endure her: dear my lord, +Be not familiar with her. + +EDMUND: +Fear me not: +She and the duke her husband! + +GONERIL: + +ALBANY: +Our very loving sister, well be-met. +Sir, this I hear; the king is come to his daughter, +With others whom the rigor of our state +Forced to cry out. Where I could not be honest, +I never yet was valiant: for this business, +It toucheth us, as France invades our land, +Not bolds the king, with others, whom, I fear, +Most just and heavy causes make oppose. + +EDMUND: +Sir, you speak nobly. + +REGAN: +Why is this reason'd? + +GONERIL: +Combine together 'gainst the enemy; +For these domestic and particular broils +Are not the question here. + +ALBANY: +Let's then determine +With the ancient of war on our proceedings. + +EDMUND: +I shall attend you presently at your tent. + +REGAN: +Sister, you'll go with us? + +GONERIL: +No. + +REGAN: +'Tis most convenient; pray you, go with us. + +GONERIL: + +EDGAR: +If e'er your grace had speech with man so poor, +Hear me one word. + +ALBANY: +I'll overtake you. Speak. + +EDGAR: +Before you fight the battle, ope this letter. +If you have victory, let the trumpet sound +For him that brought it: wretched though I seem, +I can produce a champion that will prove +What is avouched there. If you miscarry, +Your business of the world hath so an end, +And machination ceases. Fortune love you. + +ALBANY: +Stay till I have read the letter. + +EDGAR: +I was forbid it. +When time shall serve, let but the herald cry, +And I'll appear again. + +ALBANY: +Why, fare thee well: I will o'erlook thy paper. + +EDMUND: +The enemy's in view; draw up your powers. +Here is the guess of their true strength and forces +By diligent discovery; but your haste +Is now urged on you. + +ALBANY: +We will greet the time. + +EDMUND: +To both these sisters have I sworn my love; +Each jealous of the other, as the stung +Are of the adder. Which of them shall I take? +Both? one? or neither? Neither can be enjoy'd, +If both remain alive: to take the widow +Exasperates, makes mad her sister Goneril; +And hardly shall I carry out my side, +Her husband being alive. Now then we'll use +His countenance for the battle; which being done, +Let her who would be rid of him devise +His speedy taking off. As for the mercy +Which he intends to Lear and to Cordelia, +The battle done, and they within our power, +Shall never see his pardon; for my state +Stands on me to defend, not to debate. + +EDGAR: +Here, father, take the shadow of this tree +For your good host; pray that the right may thrive: +If ever I return to you again, +I'll bring you comfort. + +GLOUCESTER: +Grace go with you, sir! + +EDGAR: +Away, old man; give me thy hand; away! +King Lear hath lost, he and his daughter ta'en: +Give me thy hand; come on. + +GLOUCESTER: +No farther, sir; a man may rot even here. + +EDGAR: +What, in ill thoughts again? Men must endure +Their going hence, even as their coming hither; +Ripeness is all: come on. + +GLOUCESTER: +And that's true too. + +EDMUND: +Some officers take them away: good guard, +Until their greater pleasures first be known +That are to censure them. + +CORDELIA: +We are not the first +Who, with best meaning, have incurr'd the worst. +For thee, oppressed king, am I cast down; +Myself could else out-frown false fortune's frown. +Shall we not see these daughters and these sisters? + +KING LEAR: +No, no, no, no! Come, let's away to prison: +We two alone will sing like birds i' the cage: +When thou dost ask me blessing, I'll kneel down, +And ask of thee forgiveness: so we'll live, +And pray, and sing, and tell old tales, and laugh +At gilded butterflies, and hear poor rogues +Talk of court news; and we'll talk with them too, +Who loses and who wins; who's in, who's out; +And take upon's the mystery of things, +As if we were God's spies: and we'll wear out, +In a wall'd prison, packs and sects of great ones, +That ebb and flow by the moon. + +EDMUND: +Take them away. + +KING LEAR: +Upon such sacrifices, my Cordelia, +The gods themselves throw incense. Have I caught thee? +He that parts us shall bring a brand from heaven, +And fire us hence like foxes. Wipe thine eyes; +The good-years shall devour them, flesh and fell, +Ere they shall make us weep: we'll see 'em starve +first. Come. + +EDMUND: +Come hither, captain; hark. +Take thou this note; +go follow them to prison: +One step I have advanced thee; if thou dost +As this instructs thee, thou dost make thy way +To noble fortunes: know thou this, that men +Are as the time is: to be tender-minded +Does not become a sword: thy great employment +Will not bear question; either say thou'lt do 't, +Or thrive by other means. + +Captain: +I'll do 't, my lord. + +EDMUND: +About it; and write happy when thou hast done. +Mark, I say, instantly; and carry it so +As I have set it down. + +Captain: +I cannot draw a cart, nor eat dried oats; +If it be man's work, I'll do 't. + +ALBANY: +Sir, you have shown to-day your valiant strain, +And fortune led you well: you have the captives +That were the opposites of this day's strife: +We do require them of you, so to use them +As we shall find their merits and our safety +May equally determine. + +EDMUND: +Sir, I thought it fit +To send the old and miserable king +To some retention and appointed guard; +Whose age has charms in it, whose title more, +To pluck the common bosom on his side, +An turn our impress'd lances in our eyes +Which do command them. With him I sent the queen; +My reason all the same; and they are ready +To-morrow, or at further space, to appear +Where you shall hold your session. At this time +We sweat and bleed: the friend hath lost his friend; +And the best quarrels, in the heat, are cursed +By those that feel their sharpness: +The question of Cordelia and her father +Requires a fitter place. + +ALBANY: +Sir, by your patience, +I hold you but a subject of this war, +Not as a brother. + +REGAN: +That's as we list to grace him. +Methinks our pleasure might have been demanded, +Ere you had spoke so far. He led our powers; +Bore the commission of my place and person; +The which immediacy may well stand up, +And call itself your brother. + +GONERIL: +Not so hot: +In his own grace he doth exalt himself, +More than in your addition. + +REGAN: +In my rights, +By me invested, he compeers the best. + +GONERIL: +That were the most, if he should husband you. + +REGAN: +Jesters do oft prove prophets. + +GONERIL: +Holla, holla! +That eye that told you so look'd but a-squint. + +REGAN: +Lady, I am not well; else I should answer +From a full-flowing stomach. General, +Take thou my soldiers, prisoners, patrimony; +Dispose of them, of me; the walls are thine: +Witness the world, that I create thee here +My lord and master. + +GONERIL: +Mean you to enjoy him? + +ALBANY: +The let-alone lies not in your good will. + +EDMUND: +Nor in thine, lord. + +ALBANY: +Half-blooded fellow, yes. + +REGAN: + +ALBANY: +Stay yet; hear reason. Edmund, I arrest thee +On capital treason; and, in thine attaint, +This gilded serpent +For your claim, fair sister, +I bar it in the interest of my wife: +'Tis she is sub-contracted to this lord, +And I, her husband, contradict your bans. +If you will marry, make your loves to me, +My lady is bespoke. + +GONERIL: +An interlude! + +ALBANY: +Thou art arm'd, Gloucester: let the trumpet sound: +If none appear to prove upon thy head +Thy heinous, manifest, and many treasons, +There is my pledge; +I'll prove it on thy heart, +Ere I taste bread, thou art in nothing less +Than I have here proclaim'd thee. + +REGAN: +Sick, O, sick! + +GONERIL: + +EDMUND: +There's my exchange: +what in the world he is +That names me traitor, villain-like he lies: +Call by thy trumpet: he that dares approach, +On him, on you, who not? I will maintain +My truth and honour firmly. + +ALBANY: +A herald, ho! + +EDMUND: +A herald, ho, a herald! + +ALBANY: +Trust to thy single virtue; for thy soldiers, +All levied in my name, have in my name +Took their discharge. + +REGAN: +My sickness grows upon me. + +ALBANY: +She is not well; convey her to my tent. +Come hither, herald,--Let the trumpet sound, +And read out this. + +Captain: +Sound, trumpet! + +Herald: + +EDMUND: +Sound! + +Herald: +Again! + +Herald: +Again! + +ALBANY: +Ask him his purposes, why he appears +Upon this call o' the trumpet. + +Herald: +What are you? +Your name, your quality? and why you answer +This present summons? + +EDGAR: +Know, my name is lost; +By treason's tooth bare-gnawn and canker-bit: +Yet am I noble as the adversary +I come to cope. + +ALBANY: +Which is that adversary? + +EDGAR: +What's he that speaks for Edmund Earl of Gloucester? + +EDMUND: +Himself: what say'st thou to him? + +EDGAR: +Draw thy sword, +That, if my speech offend a noble heart, +Thy arm may do thee justice: here is mine. +Behold, it is the privilege of mine honours, +My oath, and my profession: I protest, +Maugre thy strength, youth, place, and eminence, +Despite thy victor sword and fire-new fortune, +Thy valour and thy heart, thou art a traitor; +False to thy gods, thy brother, and thy father; +Conspirant 'gainst this high-illustrious prince; +And, from the extremest upward of thy head +To the descent and dust below thy foot, +A most toad-spotted traitor. Say thou 'No,' +This sword, this arm, and my best spirits, are bent +To prove upon thy heart, whereto I speak, +Thou liest. + +EDMUND: +In wisdom I should ask thy name; +But, since thy outside looks so fair and warlike, +And that thy tongue some say of breeding breathes, +What safe and nicely I might well delay +By rule of knighthood, I disdain and spurn: +Back do I toss these treasons to thy head; +With the hell-hated lie o'erwhelm thy heart; +Which, for they yet glance by and scarcely bruise, +This sword of mine shall give them instant way, +Where they shall rest for ever. Trumpets, speak! + +ALBANY: +Save him, save him! + +GONERIL: +This is practise, Gloucester: +By the law of arms thou wast not bound to answer +An unknown opposite; thou art not vanquish'd, +But cozen'd and beguiled. + +ALBANY: +Shut your mouth, dame, +Or with this paper shall I stop it: Hold, sir: +Thou worse than any name, read thine own evil: +No tearing, lady: I perceive you know it. + +GONERIL: +Say, if I do, the laws are mine, not thine: +Who can arraign me for't. + +ALBANY: +Most monstrous! oh! +Know'st thou this paper? + +GONERIL: +Ask me not what I know. + +ALBANY: +Go after her: she's desperate; govern her. + +EDMUND: +What you have charged me with, that have I done; +And more, much more; the time will bring it out: +'Tis past, and so am I. But what art thou +That hast this fortune on me? If thou'rt noble, +I do forgive thee. + +EDGAR: +Let's exchange charity. +I am no less in blood than thou art, Edmund; +If more, the more thou hast wrong'd me. +My name is Edgar, and thy father's son. +The gods are just, and of our pleasant vices +Make instruments to plague us: +The dark and vicious place where thee he got +Cost him his eyes. + +EDMUND: +Thou hast spoken right, 'tis true; +The wheel is come full circle: I am here. + +ALBANY: +Methought thy very gait did prophesy +A royal nobleness: I must embrace thee: +Let sorrow split my heart, if ever I +Did hate thee or thy father! + +EDGAR: +Worthy prince, I know't. + +ALBANY: +Where have you hid yourself? +How have you known the miseries of your father? + +EDGAR: +By nursing them, my lord. List a brief tale; +And when 'tis told, O, that my heart would burst! +The bloody proclamation to escape, +That follow'd me so near,--O, our lives' sweetness! +That we the pain of death would hourly die +Rather than die at once!--taught me to shift +Into a madman's rags; to assume a semblance +That very dogs disdain'd: and in this habit +Met I my father with his bleeding rings, +Their precious stones new lost: became his guide, +Led him, begg'd for him, saved him from despair; +Never,--O fault!--reveal'd myself unto him, +Until some half-hour past, when I was arm'd: +Not sure, though hoping, of this good success, +I ask'd his blessing, and from first to last +Told him my pilgrimage: but his flaw'd heart, +Alack, too weak the conflict to support! +'Twixt two extremes of passion, joy and grief, +Burst smilingly. + +EDMUND: +This speech of yours hath moved me, +And shall perchance do good: but speak you on; +You look as you had something more to say. + +ALBANY: +If there be more, more woeful, hold it in; +For I am almost ready to dissolve, +Hearing of this. + +EDGAR: +This would have seem'd a period +To such as love not sorrow; but another, +To amplify too much, would make much more, +And top extremity. +Whilst I was big in clamour came there in a man, +Who, having seen me in my worst estate, +Shunn'd my abhorr'd society; but then, finding +Who 'twas that so endured, with his strong arms +He fastened on my neck, and bellow'd out +As he'ld burst heaven; threw him on my father; +Told the most piteous tale of Lear and him +That ever ear received: which in recounting +His grief grew puissant and the strings of life +Began to crack: twice then the trumpets sounded, +And there I left him tranced. + +ALBANY: +But who was this? + +EDGAR: +Kent, sir, the banish'd Kent; who in disguise +Follow'd his enemy king, and did him service +Improper for a slave. + +Gentleman: +Help, help, O, help! + +EDGAR: +What kind of help? + +ALBANY: +Speak, man. + +EDGAR: +What means that bloody knife? + +Gentleman: +'Tis hot, it smokes; +It came even from the heart of--O, she's dead! + +ALBANY: +Who dead? speak, man. + +Gentleman: +Your lady, sir, your lady: and her sister +By her is poisoned; she hath confess'd it. + +EDMUND: +I was contracted to them both: all three +Now marry in an instant. + +EDGAR: +Here comes Kent. + +ALBANY: +Produce their bodies, be they alive or dead: +This judgment of the heavens, that makes us tremble, +Touches us not with pity. +O, is this he? +The time will not allow the compliment +Which very manners urges. + +KENT: +I am come +To bid my king and master aye good night: +Is he not here? + +ALBANY: +Great thing of us forgot! +Speak, Edmund, where's the king? and where's Cordelia? +See'st thou this object, Kent? + +KENT: +Alack, why thus? + +EDMUND: +Yet Edmund was beloved: +The one the other poison'd for my sake, +And after slew herself. + +ALBANY: +Even so. Cover their faces. + +EDMUND: +I pant for life: some good I mean to do, +Despite of mine own nature. Quickly send, +Be brief in it, to the castle; for my writ +Is on the life of Lear and on Cordelia: +Nay, send in time. + +ALBANY: +Run, run, O, run! + +EDGAR: +To who, my lord? Who hath the office? send +Thy token of reprieve. + +EDMUND: +Well thought on: take my sword, +Give it the captain. + +ALBANY: +Haste thee, for thy life. + +EDMUND: +He hath commission from thy wife and me +To hang Cordelia in the prison, and +To lay the blame upon her own despair, +That she fordid herself. + +ALBANY: +The gods defend her! Bear him hence awhile. + +KING LEAR: +Howl, howl, howl, howl! O, you are men of stones: +Had I your tongues and eyes, I'ld use them so +That heaven's vault should crack. She's gone for ever! +I know when one is dead, and when one lives; +She's dead as earth. Lend me a looking-glass; +If that her breath will mist or stain the stone, +Why, then she lives. + +KENT: +Is this the promised end + +EDGAR: +Or image of that horror? + +ALBANY: +Fall, and cease! + +KING LEAR: +This feather stirs; she lives! if it be so, +It is a chance which does redeem all sorrows +That ever I have felt. + +KENT: + +KING LEAR: +Prithee, away. + +EDGAR: +'Tis noble Kent, your friend. + +KING LEAR: +A plague upon you, murderers, traitors all! +I might have saved her; now she's gone for ever! +Cordelia, Cordelia! stay a little. Ha! +What is't thou say'st? Her voice was ever soft, +Gentle, and low, an excellent thing in woman. +I kill'd the slave that was a-hanging thee. + +Captain: +'Tis true, my lords, he did. + +KING LEAR: +Did I not, fellow? +I have seen the day, with my good biting falchion +I would have made them skip: I am old now, +And these same crosses spoil me. Who are you? +Mine eyes are not o' the best: I'll tell you straight. + +KENT: +If fortune brag of two she loved and hated, +One of them we behold. + +KING LEAR: +This is a dull sight. Are you not Kent? + +KENT: +The same, +Your servant Kent: Where is your servant Caius? + +KING LEAR: +He's a good fellow, I can tell you that; +He'll strike, and quickly too: he's dead and rotten. + +KENT: +No, my good lord; I am the very man,-- + +KING LEAR: +I'll see that straight. + +KENT: +That, from your first of difference and decay, +Have follow'd your sad steps. + +KING LEAR: +You are welcome hither. + +KENT: +Nor no man else: all's cheerless, dark, and deadly. +Your eldest daughters have fordone them selves, +And desperately are dead. + +KING LEAR: +Ay, so I think. + +ALBANY: +He knows not what he says: and vain it is +That we present us to him. + +EDGAR: +Very bootless. + +Captain: +Edmund is dead, my lord. + +ALBANY: +That's but a trifle here. +You lords and noble friends, know our intent. +What comfort to this great decay may come +Shall be applied: for us we will resign, +During the life of this old majesty, +To him our absolute power: +you, to your rights: +With boot, and such addition as your honours +Have more than merited. All friends shall taste +The wages of their virtue, and all foes +The cup of their deservings. O, see, see! + +KING LEAR: +And my poor fool is hang'd! No, no, no life! +Why should a dog, a horse, a rat, have life, +And thou no breath at all? Thou'lt come no more, +Never, never, never, never, never! +Pray you, undo this button: thank you, sir. +Do you see this? Look on her, look, her lips, +Look there, look there! + +EDGAR: +He faints! My lord, my lord! + +KENT: +Break, heart; I prithee, break! + +EDGAR: +Look up, my lord. + +KENT: +Vex not his ghost: O, let him pass! he hates him much +That would upon the rack of this tough world +Stretch him out longer. + +EDGAR: +He is gone, indeed. + +KENT: +The wonder is, he hath endured so long: +He but usurp'd his life. + +ALBANY: +Bear them from hence. Our present business +Is general woe. +Friends of my soul, you twain +Rule in this realm, and the gored state sustain. + +KENT: +I have a journey, sir, shortly to go; +My master calls me, I must not say no. + +ALBANY: +The weight of this sad time we must obey; +Speak what we feel, not what we ought to say. +The oldest hath borne most: we that are young +Shall never see so much, nor live so long. + +PHILO: +Nay, but this dotage of our general's +O'erflows the measure: those his goodly eyes, +That o'er the files and musters of the war +Have glow'd like plated Mars, now bend, now turn, +The office and devotion of their view +Upon a tawny front: his captain's heart, +Which in the scuffles of great fights hath burst +The buckles on his breast, reneges all temper, +And is become the bellows and the fan +To cool a gipsy's lust. +Look, where they come: +Take but good note, and you shall see in him. +The triple pillar of the world transform'd +Into a strumpet's fool: behold and see. + +CLEOPATRA: +If it be love indeed, tell me how much. + +MARK ANTONY: +There's beggary in the love that can be reckon'd. + +CLEOPATRA: +I'll set a bourn how far to be beloved. + +MARK ANTONY: +Then must thou needs find out new heaven, new earth. + +Attendant: +News, my good lord, from Rome. + +MARK ANTONY: +Grates me: the sum. + +CLEOPATRA: +Nay, hear them, Antony: +Fulvia perchance is angry; or, who knows +If the scarce-bearded Caesar have not sent +His powerful mandate to you, 'Do this, or this; +Take in that kingdom, and enfranchise that; +Perform 't, or else we damn thee.' + +MARK ANTONY: +How, my love! + +CLEOPATRA: +Perchance! nay, and most like: +You must not stay here longer, your dismission +Is come from Caesar; therefore hear it, Antony. +Where's Fulvia's process? Caesar's I would say? both? +Call in the messengers. As I am Egypt's queen, +Thou blushest, Antony; and that blood of thine +Is Caesar's homager: else so thy cheek pays shame +When shrill-tongued Fulvia scolds. The messengers! + +MARK ANTONY: +Let Rome in Tiber melt, and the wide arch +Of the ranged empire fall! Here is my space. +Kingdoms are clay: our dungy earth alike +Feeds beast as man: the nobleness of life +Is to do thus; when such a mutual pair +And such a twain can do't, in which I bind, +On pain of punishment, the world to weet +We stand up peerless. + +CLEOPATRA: +Excellent falsehood! +Why did he marry Fulvia, and not love her? +I'll seem the fool I am not; Antony +Will be himself. + +MARK ANTONY: +But stirr'd by Cleopatra. +Now, for the love of Love and her soft hours, +Let's not confound the time with conference harsh: +There's not a minute of our lives should stretch +Without some pleasure now. What sport tonight? + +CLEOPATRA: +Hear the ambassadors. + +MARK ANTONY: +Fie, wrangling queen! +Whom every thing becomes, to chide, to laugh, +To weep; whose every passion fully strives +To make itself, in thee, fair and admired! +No messenger, but thine; and all alone +To-night we'll wander through the streets and note +The qualities of people. Come, my queen; +Last night you did desire it: speak not to us. + +DEMETRIUS: +Is Caesar with Antonius prized so slight? + +PHILO: +Sir, sometimes, when he is not Antony, +He comes too short of that great property +Which still should go with Antony. + +DEMETRIUS: +I am full sorry +That he approves the common liar, who +Thus speaks of him at Rome: but I will hope +Of better deeds to-morrow. Rest you happy! + +CHARMIAN: +Lord Alexas, sweet Alexas, most any thing Alexas, +almost most absolute Alexas, where's the soothsayer +that you praised so to the queen? O, that I knew +this husband, which, you say, must charge his horns +with garlands! + +ALEXAS: +Soothsayer! + +Soothsayer: +Your will? + +CHARMIAN: +Is this the man? Is't you, sir, that know things? + +Soothsayer: +In nature's infinite book of secrecy +A little I can read. + +ALEXAS: +Show him your hand. + +DOMITIUS ENOBARBUS: +Bring in the banquet quickly; wine enough +Cleopatra's health to drink. + +CHARMIAN: +Good sir, give me good fortune. + +Soothsayer: +I make not, but foresee. + +CHARMIAN: +Pray, then, foresee me one. + +Soothsayer: +You shall be yet far fairer than you are. + +CHARMIAN: +He means in flesh. + +IRAS: +No, you shall paint when you are old. + +CHARMIAN: +Wrinkles forbid! + +ALEXAS: +Vex not his prescience; be attentive. + +CHARMIAN: +Hush! + +Soothsayer: +You shall be more beloving than beloved. + +CHARMIAN: +I had rather heat my liver with drinking. + +ALEXAS: +Nay, hear him. + +CHARMIAN: +Good now, some excellent fortune! Let me be married +to three kings in a forenoon, and widow them all: +let me have a child at fifty, to whom Herod of Jewry +may do homage: find me to marry me with Octavius +Caesar, and companion me with my mistress. + +Soothsayer: +You shall outlive the lady whom you serve. + +CHARMIAN: +O excellent! I love long life better than figs. + +Soothsayer: +You have seen and proved a fairer former fortune +Than that which is to approach. + +CHARMIAN: +Then belike my children shall have no names: +prithee, how many boys and wenches must I have? + +Soothsayer: +If every of your wishes had a womb. +And fertile every wish, a million. + +CHARMIAN: +Out, fool! I forgive thee for a witch. + +ALEXAS: +You think none but your sheets are privy to your wishes. + +CHARMIAN: +Nay, come, tell Iras hers. + +ALEXAS: +We'll know all our fortunes. + +DOMITIUS ENOBARBUS: +Mine, and most of our fortunes, to-night, shall +be--drunk to bed. + +IRAS: +There's a palm presages chastity, if nothing else. + +CHARMIAN: +E'en as the o'erflowing Nilus presageth famine. + +IRAS: +Go, you wild bedfellow, you cannot soothsay. + +CHARMIAN: +Nay, if an oily palm be not a fruitful +prognostication, I cannot scratch mine ear. Prithee, +tell her but a worky-day fortune. + +Soothsayer: +Your fortunes are alike. + +IRAS: +But how, but how? give me particulars. + +Soothsayer: +I have said. + +IRAS: +Am I not an inch of fortune better than she? + +CHARMIAN: +Well, if you were but an inch of fortune better than +I, where would you choose it? + +IRAS: +Not in my husband's nose. + +CHARMIAN: +Our worser thoughts heavens mend! Alexas,--come, +his fortune, his fortune! O, let him marry a woman +that cannot go, sweet Isis, I beseech thee! and let +her die too, and give him a worse! and let worst +follow worse, till the worst of all follow him +laughing to his grave, fifty-fold a cuckold! Good +Isis, hear me this prayer, though thou deny me a +matter of more weight; good Isis, I beseech thee! + +IRAS: +Amen. Dear goddess, hear that prayer of the people! +for, as it is a heartbreaking to see a handsome man +loose-wived, so it is a deadly sorrow to behold a +foul knave uncuckolded: therefore, dear Isis, keep +decorum, and fortune him accordingly! + +CHARMIAN: +Amen. + +ALEXAS: +Lo, now, if it lay in their hands to make me a +cuckold, they would make themselves whores, but +they'ld do't! + +DOMITIUS ENOBARBUS: +Hush! here comes Antony. + +CHARMIAN: +Not he; the queen. + +CLEOPATRA: +Saw you my lord? + +DOMITIUS ENOBARBUS: +No, lady. + +CLEOPATRA: +Was he not here? + +CHARMIAN: +No, madam. + +CLEOPATRA: +He was disposed to mirth; but on the sudden +A Roman thought hath struck him. Enobarbus! + +DOMITIUS ENOBARBUS: +Madam? + +CLEOPATRA: +Seek him, and bring him hither. +Where's Alexas? + +ALEXAS: +Here, at your service. My lord approaches. + +CLEOPATRA: +We will not look upon him: go with us. + +Messenger: +Fulvia thy wife first came into the field. + +MARK ANTONY: +Against my brother Lucius? + +Messenger: +Ay: +But soon that war had end, and the time's state +Made friends of them, joining their force 'gainst Caesar; +Whose better issue in the war, from Italy, +Upon the first encounter, drave them. + +MARK ANTONY: +Well, what worst? + +Messenger: +The nature of bad news infects the teller. + +MARK ANTONY: +When it concerns the fool or coward. On: +Things that are past are done with me. 'Tis thus: +Who tells me true, though in his tale lie death, +I hear him as he flatter'd. + +Messenger: +Labienus-- +This is stiff news--hath, with his Parthian force, +Extended Asia from Euphrates; +His conquering banner shook from Syria +To Lydia and to Ionia; Whilst-- + +MARK ANTONY: +Antony, thou wouldst say,-- + +Messenger: +O, my lord! + +MARK ANTONY: +Speak to me home, mince not the general tongue: +Name Cleopatra as she is call'd in Rome; +Rail thou in Fulvia's phrase; and taunt my faults +With such full licence as both truth and malice +Have power to utter. O, then we bring forth weeds, +When our quick minds lie still; and our ills told us +Is as our earing. Fare thee well awhile. + +Messenger: +At your noble pleasure. + +MARK ANTONY: +From Sicyon, ho, the news! Speak there! + +First Attendant: +The man from Sicyon,--is there such an one? + +Second Attendant: +He stays upon your will. + +MARK ANTONY: +Let him appear. +These strong Egyptian fetters I must break, +Or lose myself in dotage. +What are you? + +Second Messenger: +Fulvia thy wife is dead. + +MARK ANTONY: +Where died she? + +Second Messenger: +In Sicyon: +Her length of sickness, with what else more serious +Importeth thee to know, this bears. + +MARK ANTONY: +Forbear me. +There's a great spirit gone! Thus did I desire it: +What our contempt doth often hurl from us, +We wish it ours again; the present pleasure, +By revolution lowering, does become +The opposite of itself: she's good, being gone; +The hand could pluck her back that shoved her on. +I must from this enchanting queen break off: +Ten thousand harms, more than the ills I know, +My idleness doth hatch. How now! Enobarbus! + +DOMITIUS ENOBARBUS: +What's your pleasure, sir? + +MARK ANTONY: +I must with haste from hence. + +DOMITIUS ENOBARBUS: +Why, then, we kill all our women: +we see how mortal an unkindness is to them; +if they suffer our departure, death's the word. + +MARK ANTONY: +I must be gone. + +DOMITIUS ENOBARBUS: +Under a compelling occasion, let women die; it were +pity to cast them away for nothing; though, between +them and a great cause, they should be esteemed +nothing. Cleopatra, catching but the least noise of +this, dies instantly; I have seen her die twenty +times upon far poorer moment: I do think there is +mettle in death, which commits some loving act upon +her, she hath such a celerity in dying. + +MARK ANTONY: +She is cunning past man's thought. + +DOMITIUS ENOBARBUS: +Alack, sir, no; her passions are made of nothing but +the finest part of pure love: we cannot call her +winds and waters sighs and tears; they are greater +storms and tempests than almanacs can report: this +cannot be cunning in her; if it be, she makes a +shower of rain as well as Jove. + +MARK ANTONY: +Would I had never seen her. + +DOMITIUS ENOBARBUS: +O, sir, you had then left unseen a wonderful piece +of work; which not to have been blest withal would +have discredited your travel. + +MARK ANTONY: +Fulvia is dead. + +DOMITIUS ENOBARBUS: +Sir? + +MARK ANTONY: +Fulvia is dead. + +DOMITIUS ENOBARBUS: +Fulvia! + +MARK ANTONY: +Dead. + +DOMITIUS ENOBARBUS: +Why, sir, give the gods a thankful sacrifice. When +it pleaseth their deities to take the wife of a man +from him, it shows to man the tailors of the earth; +comforting therein, that when old robes are worn +out, there are members to make new. If there were +no more women but Fulvia, then had you indeed a cut, +and the case to be lamented: this grief is crowned +with consolation; your old smock brings forth a new +petticoat: and indeed the tears live in an onion +that should water this sorrow. + +MARK ANTONY: +The business she hath broached in the state +Cannot endure my absence. + +DOMITIUS ENOBARBUS: +And the business you have broached here cannot be +without you; especially that of Cleopatra's, which +wholly depends on your abode. + +MARK ANTONY: +No more light answers. Let our officers +Have notice what we purpose. I shall break +The cause of our expedience to the queen, +And get her leave to part. For not alone +The death of Fulvia, with more urgent touches, +Do strongly speak to us; but the letters too +Of many our contriving friends in Rome +Petition us at home: Sextus Pompeius +Hath given the dare to Caesar, and commands +The empire of the sea: our slippery people, +Whose love is never link'd to the deserver +Till his deserts are past, begin to throw +Pompey the Great and all his dignities +Upon his son; who, high in name and power, +Higher than both in blood and life, stands up +For the main soldier: whose quality, going on, +The sides o' the world may danger: much is breeding, +Which, like the courser's hair, hath yet but life, +And not a serpent's poison. Say, our pleasure, +To such whose place is under us, requires +Our quick remove from hence. + +DOMITIUS ENOBARBUS: +I shall do't. + +CLEOPATRA: +Where is he? + +CHARMIAN: +I did not see him since. + +CLEOPATRA: +See where he is, who's with him, what he does: +I did not send you: if you find him sad, +Say I am dancing; if in mirth, report +That I am sudden sick: quick, and return. + +CHARMIAN: +Madam, methinks, if you did love him dearly, +You do not hold the method to enforce +The like from him. + +CLEOPATRA: +What should I do, I do not? + +CHARMIAN: +In each thing give him way, cross him nothing. + +CLEOPATRA: +Thou teachest like a fool; the way to lose him. + +CHARMIAN: +Tempt him not so too far; I wish, forbear: +In time we hate that which we often fear. +But here comes Antony. + +CLEOPATRA: +I am sick and sullen. + +MARK ANTONY: +I am sorry to give breathing to my purpose,-- + +CLEOPATRA: +Help me away, dear Charmian; I shall fall: +It cannot be thus long, the sides of nature +Will not sustain it. + +MARK ANTONY: +Now, my dearest queen,-- + +CLEOPATRA: +Pray you, stand further from me. + +MARK ANTONY: +What's the matter? + +CLEOPATRA: +I know, by that same eye, there's some good news. +What says the married woman? You may go: +Would she had never given you leave to come! +Let her not say 'tis I that keep you here: +I have no power upon you; hers you are. + +MARK ANTONY: +The gods best know,-- + +CLEOPATRA: +O, never was there queen +So mightily betray'd! yet at the first +I saw the treasons planted. + +MARK ANTONY: +Cleopatra,-- + +CLEOPATRA: +Why should I think you can be mine and true, +Though you in swearing shake the throned gods, +Who have been false to Fulvia? Riotous madness, +To be entangled with those mouth-made vows, +Which break themselves in swearing! + +MARK ANTONY: +Most sweet queen,-- + +CLEOPATRA: +Nay, pray you, seek no colour for your going, +But bid farewell, and go: when you sued staying, +Then was the time for words: no going then; +Eternity was in our lips and eyes, +Bliss in our brows' bent; none our parts so poor, +But was a race of heaven: they are so still, +Or thou, the greatest soldier of the world, +Art turn'd the greatest liar. + +MARK ANTONY: +How now, lady! + +CLEOPATRA: +I would I had thy inches; thou shouldst know +There were a heart in Egypt. + +MARK ANTONY: +Hear me, queen: +The strong necessity of time commands +Our services awhile; but my full heart +Remains in use with you. Our Italy +Shines o'er with civil swords: Sextus Pompeius +Makes his approaches to the port of Rome: +Equality of two domestic powers +Breed scrupulous faction: the hated, grown to strength, +Are newly grown to love: the condemn'd Pompey, +Rich in his father's honour, creeps apace, +Into the hearts of such as have not thrived +Upon the present state, whose numbers threaten; +And quietness, grown sick of rest, would purge +By any desperate change: my more particular, +And that which most with you should safe my going, +Is Fulvia's death. + +CLEOPATRA: +Though age from folly could not give me freedom, +It does from childishness: can Fulvia die? + +MARK ANTONY: +She's dead, my queen: +Look here, and at thy sovereign leisure read +The garboils she awaked; at the last, best: +See when and where she died. + +CLEOPATRA: +O most false love! +Where be the sacred vials thou shouldst fill +With sorrowful water? Now I see, I see, +In Fulvia's death, how mine received shall be. + +MARK ANTONY: +Quarrel no more, but be prepared to know +The purposes I bear; which are, or cease, +As you shall give the advice. By the fire +That quickens Nilus' slime, I go from hence +Thy soldier, servant; making peace or war +As thou affect'st. + +CLEOPATRA: +Cut my lace, Charmian, come; +But let it be: I am quickly ill, and well, +So Antony loves. + +MARK ANTONY: +My precious queen, forbear; +And give true evidence to his love, which stands +An honourable trial. + +CLEOPATRA: +So Fulvia told me. +I prithee, turn aside and weep for her, +Then bid adieu to me, and say the tears +Belong to Egypt: good now, play one scene +Of excellent dissembling; and let it look +Life perfect honour. + +MARK ANTONY: +You'll heat my blood: no more. + +CLEOPATRA: +You can do better yet; but this is meetly. + +MARK ANTONY: +Now, by my sword,-- + +CLEOPATRA: +And target. Still he mends; +But this is not the best. Look, prithee, Charmian, +How this Herculean Roman does become +The carriage of his chafe. + +MARK ANTONY: +I'll leave you, lady. + +CLEOPATRA: +Courteous lord, one word. +Sir, you and I must part, but that's not it: +Sir, you and I have loved, but there's not it; +That you know well: something it is I would, +O, my oblivion is a very Antony, +And I am all forgotten. + +MARK ANTONY: +But that your royalty +Holds idleness your subject, I should take you +For idleness itself. + +CLEOPATRA: +'Tis sweating labour +To bear such idleness so near the heart +As Cleopatra this. But, sir, forgive me; +Since my becomings kill me, when they do not +Eye well to you: your honour calls you hence; +Therefore be deaf to my unpitied folly. +And all the gods go with you! upon your sword +Sit laurel victory! and smooth success +Be strew'd before your feet! + +MARK ANTONY: +Let us go. Come; +Our separation so abides, and flies, +That thou, residing here, go'st yet with me, +And I, hence fleeting, here remain with thee. Away! + +OCTAVIUS CAESAR: +You may see, Lepidus, and henceforth know, +It is not Caesar's natural vice to hate +Our great competitor: from Alexandria +This is the news: he fishes, drinks, and wastes +The lamps of night in revel; is not more man-like +Than Cleopatra; nor the queen of Ptolemy +More womanly than he; hardly gave audience, or +Vouchsafed to think he had partners: you shall find there +A man who is the abstract of all faults +That all men follow. + +LEPIDUS: +I must not think there are +Evils enow to darken all his goodness: +His faults in him seem as the spots of heaven, +More fiery by night's blackness; hereditary, +Rather than purchased; what he cannot change, +Than what he chooses. + +OCTAVIUS CAESAR: +You are too indulgent. Let us grant, it is not +Amiss to tumble on the bed of Ptolemy; +To give a kingdom for a mirth; to sit +And keep the turn of tippling with a slave; +To reel the streets at noon, and stand the buffet +With knaves that smell of sweat: say this +becomes him,-- +As his composure must be rare indeed +Whom these things cannot blemish,--yet must Antony +No way excuse his soils, when we do bear +So great weight in his lightness. If he fill'd +His vacancy with his voluptuousness, +Full surfeits, and the dryness of his bones, +Call on him for't: but to confound such time, +That drums him from his sport, and speaks as loud +As his own state and ours,--'tis to be chid +As we rate boys, who, being mature in knowledge, +Pawn their experience to their present pleasure, +And so rebel to judgment. + +LEPIDUS: +Here's more news. + +Messenger: +Thy biddings have been done; and every hour, +Most noble Caesar, shalt thou have report +How 'tis abroad. Pompey is strong at sea; +And it appears he is beloved of those +That only have fear'd Caesar: to the ports +The discontents repair, and men's reports +Give him much wrong'd. + +OCTAVIUS CAESAR: +I should have known no less. +It hath been taught us from the primal state, +That he which is was wish'd until he were; +And the ebb'd man, ne'er loved till ne'er worth love, +Comes dear'd by being lack'd. This common body, +Like to a vagabond flag upon the stream, +Goes to and back, lackeying the varying tide, +To rot itself with motion. + +Messenger: +Caesar, I bring thee word, +Menecrates and Menas, famous pirates, +Make the sea serve them, which they ear and wound +With keels of every kind: many hot inroads +They make in Italy; the borders maritime +Lack blood to think on't, and flush youth revolt: +No vessel can peep forth, but 'tis as soon +Taken as seen; for Pompey's name strikes more +Than could his war resisted. + +OCTAVIUS CAESAR: +Antony, +Leave thy lascivious wassails. When thou once +Wast beaten from Modena, where thou slew'st +Hirtius and Pansa, consuls, at thy heel +Did famine follow; whom thou fought'st against, +Though daintily brought up, with patience more +Than savages could suffer: thou didst drink +The stale of horses, and the gilded puddle +Which beasts would cough at: thy palate then did deign +The roughest berry on the rudest hedge; +Yea, like the stag, when snow the pasture sheets, +The barks of trees thou browsed'st; on the Alps +It is reported thou didst eat strange flesh, +Which some did die to look on: and all this-- +It wounds thine honour that I speak it now-- +Was borne so like a soldier, that thy cheek +So much as lank'd not. + +LEPIDUS: +'Tis pity of him. + +OCTAVIUS CAESAR: +Let his shames quickly +Drive him to Rome: 'tis time we twain +Did show ourselves i' the field; and to that end +Assemble we immediate council: Pompey +Thrives in our idleness. + +LEPIDUS: +To-morrow, Caesar, +I shall be furnish'd to inform you rightly +Both what by sea and land I can be able +To front this present time. + +OCTAVIUS CAESAR: +Till which encounter, +It is my business too. Farewell. + +LEPIDUS: +Farewell, my lord: what you shall know meantime +Of stirs abroad, I shall beseech you, sir, +To let me be partaker. + +OCTAVIUS CAESAR: +Doubt not, sir; +I knew it for my bond. + +CLEOPATRA: +Charmian! + +CHARMIAN: +Madam? + +CLEOPATRA: +Ha, ha! +Give me to drink mandragora. + +CHARMIAN: +Why, madam? + +CLEOPATRA: +That I might sleep out this great gap of time +My Antony is away. + +CHARMIAN: +You think of him too much. + +CLEOPATRA: +O, 'tis treason! + +CHARMIAN: +Madam, I trust, not so. + +CLEOPATRA: +Thou, eunuch Mardian! + +MARDIAN: +What's your highness' pleasure? + +CLEOPATRA: +Not now to hear thee sing; I take no pleasure +In aught an eunuch has: 'tis well for thee, +That, being unseminar'd, thy freer thoughts +May not fly forth of Egypt. Hast thou affections? + +MARDIAN: +Yes, gracious madam. + +CLEOPATRA: +Indeed! + +MARDIAN: +Not in deed, madam; for I can do nothing +But what indeed is honest to be done: +Yet have I fierce affections, and think +What Venus did with Mars. + +CLEOPATRA: +O Charmian, +Where think'st thou he is now? Stands he, or sits he? +Or does he walk? or is he on his horse? +O happy horse, to bear the weight of Antony! +Do bravely, horse! for wot'st thou whom thou movest? +The demi-Atlas of this earth, the arm +And burgonet of men. He's speaking now, +Or murmuring 'Where's my serpent of old Nile?' +For so he calls me: now I feed myself +With most delicious poison. Think on me, +That am with Phoebus' amorous pinches black, +And wrinkled deep in time? Broad-fronted Caesar, +When thou wast here above the ground, I was +A morsel for a monarch: and great Pompey +Would stand and make his eyes grow in my brow; +There would he anchor his aspect and die +With looking on his life. + +ALEXAS: +Sovereign of Egypt, hail! + +CLEOPATRA: +How much unlike art thou Mark Antony! +Yet, coming from him, that great medicine hath +With his tinct gilded thee. +How goes it with my brave Mark Antony? + +ALEXAS: +Last thing he did, dear queen, +He kiss'd,--the last of many doubled kisses,-- +This orient pearl. His speech sticks in my heart. + +CLEOPATRA: +Mine ear must pluck it thence. + +ALEXAS: +'Good friend,' quoth he, +'Say, the firm Roman to great Egypt sends +This treasure of an oyster; at whose foot, +To mend the petty present, I will piece +Her opulent throne with kingdoms; all the east, +Say thou, shall call her mistress.' So he nodded, +And soberly did mount an arm-gaunt steed, +Who neigh'd so high, that what I would have spoke +Was beastly dumb'd by him. + +CLEOPATRA: +What, was he sad or merry? + +ALEXAS: +Like to the time o' the year between the extremes +Of hot and cold, he was nor sad nor merry. + +CLEOPATRA: +O well-divided disposition! Note him, +Note him good Charmian, 'tis the man; but note him: +He was not sad, for he would shine on those +That make their looks by his; he was not merry, +Which seem'd to tell them his remembrance lay +In Egypt with his joy; but between both: +O heavenly mingle! Be'st thou sad or merry, +The violence of either thee becomes, +So does it no man else. Met'st thou my posts? + +ALEXAS: +Ay, madam, twenty several messengers: +Why do you send so thick? + +CLEOPATRA: +Who's born that day +When I forget to send to Antony, +Shall die a beggar. Ink and paper, Charmian. +Welcome, my good Alexas. Did I, Charmian, +Ever love Caesar so? + +CHARMIAN: +O that brave Caesar! + +CLEOPATRA: +Be choked with such another emphasis! +Say, the brave Antony. + +CHARMIAN: +The valiant Caesar! + +CLEOPATRA: +By Isis, I will give thee bloody teeth, +If thou with Caesar paragon again +My man of men. + +CHARMIAN: +By your most gracious pardon, +I sing but after you. + +CLEOPATRA: +My salad days, +When I was green in judgment: cold in blood, +To say as I said then! But, come, away; +Get me ink and paper: +He shall have every day a several greeting, +Or I'll unpeople Egypt. + +POMPEY: +If the great gods be just, they shall assist +The deeds of justest men. + +MENECRATES: +Know, worthy Pompey, +That what they do delay, they not deny. + +POMPEY: +Whiles we are suitors to their throne, decays +The thing we sue for. + +MENECRATES: +We, ignorant of ourselves, +Beg often our own harms, which the wise powers +Deny us for our good; so find we profit +By losing of our prayers. + +POMPEY: +I shall do well: +The people love me, and the sea is mine; +My powers are crescent, and my auguring hope +Says it will come to the full. Mark Antony +In Egypt sits at dinner, and will make +No wars without doors: Caesar gets money where +He loses hearts: Lepidus flatters both, +Of both is flatter'd; but he neither loves, +Nor either cares for him. + +MENAS: +Caesar and Lepidus +Are in the field: a mighty strength they carry. + +POMPEY: +Where have you this? 'tis false. + +MENAS: +From Silvius, sir. + +POMPEY: +He dreams: I know they are in Rome together, +Looking for Antony. But all the charms of love, +Salt Cleopatra, soften thy waned lip! +Let witchcraft join with beauty, lust with both! +Tie up the libertine in a field of feasts, +Keep his brain fuming; Epicurean cooks +Sharpen with cloyless sauce his appetite; +That sleep and feeding may prorogue his honour +Even till a Lethe'd dulness! +How now, Varrius! + +VARRIUS: +This is most certain that I shall deliver: +Mark Antony is every hour in Rome +Expected: since he went from Egypt 'tis +A space for further travel. + +POMPEY: +I could have given less matter +A better ear. Menas, I did not think +This amorous surfeiter would have donn'd his helm +For such a petty war: his soldiership +Is twice the other twain: but let us rear +The higher our opinion, that our stirring +Can from the lap of Egypt's widow pluck +The ne'er-lust-wearied Antony. + +MENAS: +I cannot hope +Caesar and Antony shall well greet together: +His wife that's dead did trespasses to Caesar; +His brother warr'd upon him; although, I think, +Not moved by Antony. + +POMPEY: +I know not, Menas, +How lesser enmities may give way to greater. +Were't not that we stand up against them all, +'Twere pregnant they should square between +themselves; +For they have entertained cause enough +To draw their swords: but how the fear of us +May cement their divisions and bind up +The petty difference, we yet not know. +Be't as our gods will have't! It only stands +Our lives upon to use our strongest hands. +Come, Menas. + +LEPIDUS: +Good Enobarbus, 'tis a worthy deed, +And shall become you well, to entreat your captain +To soft and gentle speech. + +DOMITIUS ENOBARBUS: +I shall entreat him +To answer like himself: if Caesar move him, +Let Antony look over Caesar's head +And speak as loud as Mars. By Jupiter, +Were I the wearer of Antonius' beard, +I would not shave't to-day. + +LEPIDUS: +'Tis not a time +For private stomaching. + +DOMITIUS ENOBARBUS: +Every time +Serves for the matter that is then born in't. + +LEPIDUS: +But small to greater matters must give way. + +DOMITIUS ENOBARBUS: +Not if the small come first. + +LEPIDUS: +Your speech is passion: +But, pray you, stir no embers up. Here comes +The noble Antony. + +DOMITIUS ENOBARBUS: +And yonder, Caesar. + +MARK ANTONY: +If we compose well here, to Parthia: +Hark, Ventidius. + +OCTAVIUS CAESAR: +I do not know, +Mecaenas; ask Agrippa. + +LEPIDUS: +Noble friends, +That which combined us was most great, and let not +A leaner action rend us. What's amiss, +May it be gently heard: when we debate +Our trivial difference loud, we do commit +Murder in healing wounds: then, noble partners, +The rather, for I earnestly beseech, +Touch you the sourest points with sweetest terms, +Nor curstness grow to the matter. + +MARK ANTONY: +'Tis spoken well. +Were we before our armies, and to fight. +I should do thus. + +OCTAVIUS CAESAR: +Welcome to Rome. + +MARK ANTONY: +Thank you. + +OCTAVIUS CAESAR: +Sit. + +MARK ANTONY: +Sit, sir. + +OCTAVIUS CAESAR: +Nay, then. + +MARK ANTONY: +I learn, you take things ill which are not so, +Or being, concern you not. + +OCTAVIUS CAESAR: +I must be laugh'd at, +If, or for nothing or a little, I +Should say myself offended, and with you +Chiefly i' the world; more laugh'd at, that I should +Once name you derogately, when to sound your name +It not concern'd me. + +MARK ANTONY: +My being in Egypt, Caesar, +What was't to you? + +OCTAVIUS CAESAR: +No more than my residing here at Rome +Might be to you in Egypt: yet, if you there +Did practise on my state, your being in Egypt +Might be my question. + +MARK ANTONY: +How intend you, practised? + +OCTAVIUS CAESAR: +You may be pleased to catch at mine intent +By what did here befal me. Your wife and brother +Made wars upon me; and their contestation +Was theme for you, you were the word of war. + +MARK ANTONY: +You do mistake your business; my brother never +Did urge me in his act: I did inquire it; +And have my learning from some true reports, +That drew their swords with you. Did he not rather +Discredit my authority with yours; +And make the wars alike against my stomach, +Having alike your cause? Of this my letters +Before did satisfy you. If you'll patch a quarrel, +As matter whole you have not to make it with, +It must not be with this. + +OCTAVIUS CAESAR: +You praise yourself +By laying defects of judgment to me; but +You patch'd up your excuses. + +MARK ANTONY: +Not so, not so; +I know you could not lack, I am certain on't, +Very necessity of this thought, that I, +Your partner in the cause 'gainst which he fought, +Could not with graceful eyes attend those wars +Which fronted mine own peace. As for my wife, +I would you had her spirit in such another: +The third o' the world is yours; which with a snaffle +You may pace easy, but not such a wife. + +DOMITIUS ENOBARBUS: +Would we had all such wives, that the men might go +to wars with the women! + +MARK ANTONY: +So much uncurbable, her garboils, Caesar +Made out of her impatience, which not wanted +Shrewdness of policy too, I grieving grant +Did you too much disquiet: for that you must +But say, I could not help it. + +OCTAVIUS CAESAR: +I wrote to you +When rioting in Alexandria; you +Did pocket up my letters, and with taunts +Did gibe my missive out of audience. + +MARK ANTONY: +Sir, +He fell upon me ere admitted: then +Three kings I had newly feasted, and did want +Of what I was i' the morning: but next day +I told him of myself; which was as much +As to have ask'd him pardon. Let this fellow +Be nothing of our strife; if we contend, +Out of our question wipe him. + +OCTAVIUS CAESAR: +You have broken +The article of your oath; which you shall never +Have tongue to charge me with. + +LEPIDUS: +Soft, Caesar! + +MARK ANTONY: +No, +Lepidus, let him speak: +The honour is sacred which he talks on now, +Supposing that I lack'd it. But, on, Caesar; +The article of my oath. + +OCTAVIUS CAESAR: +To lend me arms and aid when I required them; +The which you both denied. + +MARK ANTONY: +Neglected, rather; +And then when poison'd hours had bound me up +From mine own knowledge. As nearly as I may, +I'll play the penitent to you: but mine honesty +Shall not make poor my greatness, nor my power +Work without it. Truth is, that Fulvia, +To have me out of Egypt, made wars here; +For which myself, the ignorant motive, do +So far ask pardon as befits mine honour +To stoop in such a case. + +LEPIDUS: +'Tis noble spoken. + +MECAENAS: +If it might please you, to enforce no further +The griefs between ye: to forget them quite +Were to remember that the present need +Speaks to atone you. + +LEPIDUS: +Worthily spoken, Mecaenas. + +DOMITIUS ENOBARBUS: +Or, if you borrow one another's love for the +instant, you may, when you hear no more words of +Pompey, return it again: you shall have time to +wrangle in when you have nothing else to do. + +MARK ANTONY: +Thou art a soldier only: speak no more. + +DOMITIUS ENOBARBUS: +That truth should be silent I had almost forgot. + +MARK ANTONY: +You wrong this presence; therefore speak no more. + +DOMITIUS ENOBARBUS: +Go to, then; your considerate stone. + +OCTAVIUS CAESAR: +I do not much dislike the matter, but +The manner of his speech; for't cannot be +We shall remain in friendship, our conditions +So differing in their acts. Yet if I knew +What hoop should hold us stanch, from edge to edge +O' the world I would pursue it. + +AGRIPPA: +Give me leave, Caesar,-- + +OCTAVIUS CAESAR: +Speak, Agrippa. + +AGRIPPA: +Thou hast a sister by the mother's side, +Admired Octavia: great Mark Antony +Is now a widower. + +OCTAVIUS CAESAR: +Say not so, Agrippa: +If Cleopatra heard you, your reproof +Were well deserved of rashness. + +MARK ANTONY: +I am not married, Caesar: let me hear +Agrippa further speak. + +AGRIPPA: +To hold you in perpetual amity, +To make you brothers, and to knit your hearts +With an unslipping knot, take Antony +Octavia to his wife; whose beauty claims +No worse a husband than the best of men; +Whose virtue and whose general graces speak +That which none else can utter. By this marriage, +All little jealousies, which now seem great, +And all great fears, which now import their dangers, +Would then be nothing: truths would be tales, +Where now half tales be truths: her love to both +Would, each to other and all loves to both, +Draw after her. Pardon what I have spoke; +For 'tis a studied, not a present thought, +By duty ruminated. + +MARK ANTONY: +Will Caesar speak? + +OCTAVIUS CAESAR: +Not till he hears how Antony is touch'd +With what is spoke already. + +MARK ANTONY: +What power is in Agrippa, +If I would say, 'Agrippa, be it so,' +To make this good? + +OCTAVIUS CAESAR: +The power of Caesar, and +His power unto Octavia. + +MARK ANTONY: +May I never +To this good purpose, that so fairly shows, +Dream of impediment! Let me have thy hand: +Further this act of grace: and from this hour +The heart of brothers govern in our loves +And sway our great designs! + +OCTAVIUS CAESAR: +There is my hand. +A sister I bequeath you, whom no brother +Did ever love so dearly: let her live +To join our kingdoms and our hearts; and never +Fly off our loves again! + +LEPIDUS: +Happily, amen! + +MARK ANTONY: +I did not think to draw my sword 'gainst Pompey; +For he hath laid strange courtesies and great +Of late upon me: I must thank him only, +Lest my remembrance suffer ill report; +At heel of that, defy him. + +LEPIDUS: +Time calls upon's: +Of us must Pompey presently be sought, +Or else he seeks out us. + +MARK ANTONY: +Where lies he? + +OCTAVIUS CAESAR: +About the mount Misenum. + +MARK ANTONY: +What is his strength by land? + +OCTAVIUS CAESAR: +Great and increasing: but by sea +He is an absolute master. + +MARK ANTONY: +So is the fame. +Would we had spoke together! Haste we for it: +Yet, ere we put ourselves in arms, dispatch we +The business we have talk'd of. + +OCTAVIUS CAESAR: +With most gladness: +And do invite you to my sister's view, +Whither straight I'll lead you. + +MARK ANTONY: +Let us, Lepidus, +Not lack your company. + +LEPIDUS: +Noble Antony, +Not sickness should detain me. + +MECAENAS: +Welcome from Egypt, sir. + +DOMITIUS ENOBARBUS: +Half the heart of Caesar, worthy Mecaenas! My +honourable friend, Agrippa! + +AGRIPPA: +Good Enobarbus! + +MECAENAS: +We have cause to be glad that matters are so well +digested. You stayed well by 't in Egypt. + +DOMITIUS ENOBARBUS: +Ay, sir; we did sleep day out of countenance, and +made the night light with drinking. + +MECAENAS: +Eight wild-boars roasted whole at a breakfast, and +but twelve persons there; is this true? + +DOMITIUS ENOBARBUS: +This was but as a fly by an eagle: we had much more +monstrous matter of feast, which worthily deserved noting. + +MECAENAS: +She's a most triumphant lady, if report be square to +her. + +DOMITIUS ENOBARBUS: +When she first met Mark Antony, she pursed up +his heart, upon the river of Cydnus. + +AGRIPPA: +There she appeared indeed; or my reporter devised +well for her. + +DOMITIUS ENOBARBUS: +I will tell you. +The barge she sat in, like a burnish'd throne, +Burn'd on the water: the poop was beaten gold; +Purple the sails, and so perfumed that +The winds were love-sick with them; the oars were silver, +Which to the tune of flutes kept stroke, and made +The water which they beat to follow faster, +As amorous of their strokes. For her own person, +It beggar'd all description: she did lie +In her pavilion--cloth-of-gold of tissue-- +O'er-picturing that Venus where we see +The fancy outwork nature: on each side her +Stood pretty dimpled boys, like smiling Cupids, +With divers-colour'd fans, whose wind did seem +To glow the delicate cheeks which they did cool, +And what they undid did. + +AGRIPPA: +O, rare for Antony! + +DOMITIUS ENOBARBUS: +Her gentlewomen, like the Nereides, +So many mermaids, tended her i' the eyes, +And made their bends adornings: at the helm +A seeming mermaid steers: the silken tackle +Swell with the touches of those flower-soft hands, +That yarely frame the office. From the barge +A strange invisible perfume hits the sense +Of the adjacent wharfs. The city cast +Her people out upon her; and Antony, +Enthroned i' the market-place, did sit alone, +Whistling to the air; which, but for vacancy, +Had gone to gaze on Cleopatra too, +And made a gap in nature. + +AGRIPPA: +Rare Egyptian! + +DOMITIUS ENOBARBUS: +Upon her landing, Antony sent to her, +Invited her to supper: she replied, +It should be better he became her guest; +Which she entreated: our courteous Antony, +Whom ne'er the word of 'No' woman heard speak, +Being barber'd ten times o'er, goes to the feast, +And for his ordinary pays his heart +For what his eyes eat only. + +AGRIPPA: +Royal wench! +She made great Caesar lay his sword to bed: +He plough'd her, and she cropp'd. + +DOMITIUS ENOBARBUS: +I saw her once +Hop forty paces through the public street; +And having lost her breath, she spoke, and panted, +That she did make defect perfection, +And, breathless, power breathe forth. + +MECAENAS: +Now Antony must leave her utterly. + +DOMITIUS ENOBARBUS: +Never; he will not: +Age cannot wither her, nor custom stale +Her infinite variety: other women cloy +The appetites they feed: but she makes hungry +Where most she satisfies; for vilest things +Become themselves in her: that the holy priests +Bless her when she is riggish. + +MECAENAS: +If beauty, wisdom, modesty, can settle +The heart of Antony, Octavia is +A blessed lottery to him. + +AGRIPPA: +Let us go. +Good Enobarbus, make yourself my guest +Whilst you abide here. + +DOMITIUS ENOBARBUS: +Humbly, sir, I thank you. + +MARK ANTONY: +The world and my great office will sometimes +Divide me from your bosom. + +OCTAVIA: +All which time +Before the gods my knee shall bow my prayers +To them for you. + +MARK ANTONY: +Good night, sir. My Octavia, +Read not my blemishes in the world's report: +I have not kept my square; but that to come +Shall all be done by the rule. Good night, dear lady. +Good night, sir. + +OCTAVIUS CAESAR: +Good night. + +MARK ANTONY: +Now, sirrah; you do wish yourself in Egypt? + +Soothsayer: +Would I had never come from thence, nor you Thither! + +MARK ANTONY: +If you can, your reason? + +Soothsayer: +I see it in +My motion, have it not in my tongue: but yet +Hie you to Egypt again. + +MARK ANTONY: +Say to me, +Whose fortunes shall rise higher, Caesar's or mine? + +Soothsayer: +Caesar's. +Therefore, O Antony, stay not by his side: +Thy demon, that's thy spirit which keeps thee, is +Noble, courageous high, unmatchable, +Where Caesar's is not; but, near him, thy angel +Becomes a fear, as being o'erpower'd: therefore +Make space enough between you. + +MARK ANTONY: +Speak this no more. + +Soothsayer: +To none but thee; no more, but when to thee. +If thou dost play with him at any game, +Thou art sure to lose; and, of that natural luck, +He beats thee 'gainst the odds: thy lustre thickens, +When he shines by: I say again, thy spirit +Is all afraid to govern thee near him; +But, he away, 'tis noble. + +MARK ANTONY: +Get thee gone: +Say to Ventidius I would speak with him: +He shall to Parthia. Be it art or hap, +He hath spoken true: the very dice obey him; +And in our sports my better cunning faints +Under his chance: if we draw lots, he speeds; +His cocks do win the battle still of mine, +When it is all to nought; and his quails ever +Beat mine, inhoop'd, at odds. I will to Egypt: +And though I make this marriage for my peace, +I' the east my pleasure lies. +O, come, Ventidius, +You must to Parthia: your commission's ready; +Follow me, and receive't. + +LEPIDUS: +Trouble yourselves no further: pray you, hasten +Your generals after. + +AGRIPPA: +Sir, Mark Antony +Will e'en but kiss Octavia, and we'll follow. + +LEPIDUS: +Till I shall see you in your soldier's dress, +Which will become you both, farewell. + +MECAENAS: +We shall, +As I conceive the journey, be at the Mount +Before you, Lepidus. + +LEPIDUS: +Your way is shorter; +My purposes do draw me much about: +You'll win two days upon me. + +MECAENAS: +Sir, good success! + +LEPIDUS: +Farewell. + +CLEOPATRA: +Give me some music; music, moody food +Of us that trade in love. + +Attendants: +The music, ho! + +CLEOPATRA: +Let it alone; let's to billiards: come, Charmian. + +CHARMIAN: +My arm is sore; best play with Mardian. + +CLEOPATRA: +As well a woman with an eunuch play'd +As with a woman. Come, you'll play with me, sir? + +MARDIAN: +As well as I can, madam. + +CLEOPATRA: +And when good will is show'd, though't come +too short, +The actor may plead pardon. I'll none now: +Give me mine angle; we'll to the river: there, +My music playing far off, I will betray +Tawny-finn'd fishes; my bended hook shall pierce +Their slimy jaws; and, as I draw them up, +I'll think them every one an Antony, +And say 'Ah, ha! you're caught.' + +CHARMIAN: +'Twas merry when +You wager'd on your angling; when your diver +Did hang a salt-fish on his hook, which he +With fervency drew up. + +CLEOPATRA: +That time,--O times!-- +I laugh'd him out of patience; and that night +I laugh'd him into patience; and next morn, +Ere the ninth hour, I drunk him to his bed; +Then put my tires and mantles on him, whilst +I wore his sword Philippan. +O, from Italy +Ram thou thy fruitful tidings in mine ears, +That long time have been barren. + +Messenger: +Madam, madam,-- + +CLEOPATRA: +Antonius dead!--If thou say so, villain, +Thou kill'st thy mistress: but well and free, +If thou so yield him, there is gold, and here +My bluest veins to kiss; a hand that kings +Have lipp'd, and trembled kissing. + +Messenger: +First, madam, he is well. + +CLEOPATRA: +Why, there's more gold. +But, sirrah, mark, we use +To say the dead are well: bring it to that, +The gold I give thee will I melt and pour +Down thy ill-uttering throat. + +Messenger: +Good madam, hear me. + +CLEOPATRA: +Well, go to, I will; +But there's no goodness in thy face: if Antony +Be free and healthful,--so tart a favour +To trumpet such good tidings! If not well, +Thou shouldst come like a Fury crown'd with snakes, +Not like a formal man. + +Messenger: +Will't please you hear me? + +CLEOPATRA: +I have a mind to strike thee ere thou speak'st: +Yet if thou say Antony lives, is well, +Or friends with Caesar, or not captive to him, +I'll set thee in a shower of gold, and hail +Rich pearls upon thee. + +Messenger: +Madam, he's well. + +CLEOPATRA: +Well said. + +Messenger: +And friends with Caesar. + +CLEOPATRA: +Thou'rt an honest man. + +Messenger: +Caesar and he are greater friends than ever. + +CLEOPATRA: +Make thee a fortune from me. + +Messenger: +But yet, madam,-- + +CLEOPATRA: +I do not like 'But yet,' it does allay +The good precedence; fie upon 'But yet'! +'But yet' is as a gaoler to bring forth +Some monstrous malefactor. Prithee, friend, +Pour out the pack of matter to mine ear, +The good and bad together: he's friends with Caesar: +In state of health thou say'st; and thou say'st free. + +Messenger: +Free, madam! no; I made no such report: +He's bound unto Octavia. + +CLEOPATRA: +For what good turn? + +Messenger: +For the best turn i' the bed. + +CLEOPATRA: +I am pale, Charmian. + +Messenger: +Madam, he's married to Octavia. + +CLEOPATRA: +The most infectious pestilence upon thee! + +Messenger: +Good madam, patience. + +CLEOPATRA: +What say you? Hence, +Horrible villain! or I'll spurn thine eyes +Like balls before me; I'll unhair thy head: +Thou shalt be whipp'd with wire, and stew'd in brine, +Smarting in lingering pickle. + +Messenger: +Gracious madam, +I that do bring the news made not the match. + +CLEOPATRA: +Say 'tis not so, a province I will give thee, +And make thy fortunes proud: the blow thou hadst +Shall make thy peace for moving me to rage; +And I will boot thee with what gift beside +Thy modesty can beg. + +Messenger: +He's married, madam. + +CLEOPATRA: +Rogue, thou hast lived too long. + +Messenger: +Nay, then I'll run. +What mean you, madam? I have made no fault. + +CHARMIAN: +Good madam, keep yourself within yourself: +The man is innocent. + +CLEOPATRA: +Some innocents 'scape not the thunderbolt. +Melt Egypt into Nile! and kindly creatures +Turn all to serpents! Call the slave again: +Though I am mad, I will not bite him: call. + +CHARMIAN: +He is afeard to come. + +CLEOPATRA: +I will not hurt him. +These hands do lack nobility, that they strike +A meaner than myself; since I myself +Have given myself the cause. +Come hither, sir. +Though it be honest, it is never good +To bring bad news: give to a gracious message. +An host of tongues; but let ill tidings tell +Themselves when they be felt. + +Messenger: +I have done my duty. + +CLEOPATRA: +Is he married? +I cannot hate thee worser than I do, +If thou again say 'Yes.' + +Messenger: +He's married, madam. + +CLEOPATRA: +The gods confound thee! dost thou hold there still? + +Messenger: +Should I lie, madam? + +CLEOPATRA: +O, I would thou didst, +So half my Egypt were submerged and made +A cistern for scaled snakes! Go, get thee hence: +Hadst thou Narcissus in thy face, to me +Thou wouldst appear most ugly. He is married? + +Messenger: +I crave your highness' pardon. + +CLEOPATRA: +He is married? + +Messenger: +Take no offence that I would not offend you: +To punish me for what you make me do. +Seems much unequal: he's married to Octavia. + +CLEOPATRA: +O, that his fault should make a knave of thee, +That art not what thou'rt sure of! Get thee hence: +The merchandise which thou hast brought from Rome +Are all too dear for me: lie they upon thy hand, +And be undone by 'em! + +CHARMIAN: +Good your highness, patience. + +CLEOPATRA: +In praising Antony, I have dispraised Caesar. + +CHARMIAN: +Many times, madam. + +CLEOPATRA: +I am paid for't now. +Lead me from hence: +I faint: O Iras, Charmian! 'tis no matter. +Go to the fellow, good Alexas; bid him +Report the feature of Octavia, her years, +Her inclination, let him not leave out +The colour of her hair: bring me word quickly. +Let him for ever go:--let him not--Charmian, +Though he be painted one way like a Gorgon, +The other way's a Mars. Bid you Alexas +Bring me word how tall she is. Pity me, Charmian, +But do not speak to me. Lead me to my chamber. + +POMPEY: +Your hostages I have, so have you mine; +And we shall talk before we fight. + +OCTAVIUS CAESAR: +Most meet +That first we come to words; and therefore have we +Our written purposes before us sent; +Which, if thou hast consider'd, let us know +If 'twill tie up thy discontented sword, +And carry back to Sicily much tall youth +That else must perish here. + +POMPEY: +To you all three, +The senators alone of this great world, +Chief factors for the gods, I do not know +Wherefore my father should revengers want, +Having a son and friends; since Julius Caesar, +Who at Philippi the good Brutus ghosted, +There saw you labouring for him. What was't +That moved pale Cassius to conspire; and what +Made the all-honour'd, honest Roman, Brutus, +With the arm'd rest, courtiers and beauteous freedom, +To drench the Capitol; but that they would +Have one man but a man? And that is it +Hath made me rig my navy; at whose burthen +The anger'd ocean foams; with which I meant +To scourge the ingratitude that despiteful Rome +Cast on my noble father. + +OCTAVIUS CAESAR: +Take your time. + +MARK ANTONY: +Thou canst not fear us, Pompey, with thy sails; +We'll speak with thee at sea: at land, thou know'st +How much we do o'er-count thee. + +POMPEY: +At land, indeed, +Thou dost o'er-count me of my father's house: +But, since the cuckoo builds not for himself, +Remain in't as thou mayst. + +LEPIDUS: +Be pleased to tell us-- +For this is from the present--how you take +The offers we have sent you. + +OCTAVIUS CAESAR: +There's the point. + +MARK ANTONY: +Which do not be entreated to, but weigh +What it is worth embraced. + +OCTAVIUS CAESAR: +And what may follow, +To try a larger fortune. + +POMPEY: +You have made me offer +Of Sicily, Sardinia; and I must +Rid all the sea of pirates; then, to send +Measures of wheat to Rome; this 'greed upon +To part with unhack'd edges, and bear back +Our targes undinted. + +OCTAVIUS CAESAR: +That's our offer. + +POMPEY: +Know, then, +I came before you here a man prepared +To take this offer: but Mark Antony +Put me to some impatience: though I lose +The praise of it by telling, you must know, +When Caesar and your brother were at blows, +Your mother came to Sicily and did find +Her welcome friendly. + +MARK ANTONY: +I have heard it, Pompey; +And am well studied for a liberal thanks +Which I do owe you. + +POMPEY: +Let me have your hand: +I did not think, sir, to have met you here. + +MARK ANTONY: +The beds i' the east are soft; and thanks to you, +That call'd me timelier than my purpose hither; +For I have gain'd by 't. + +OCTAVIUS CAESAR: +Since I saw you last, +There is a change upon you. + +POMPEY: +Well, I know not +What counts harsh fortune casts upon my face; +But in my bosom shall she never come, +To make my heart her vassal. + +LEPIDUS: +Well met here. + +POMPEY: +I hope so, Lepidus. Thus we are agreed: +I crave our composition may be written, +And seal'd between us. + +OCTAVIUS CAESAR: +That's the next to do. + +POMPEY: +We'll feast each other ere we part; and let's +Draw lots who shall begin. + +MARK ANTONY: +That will I, Pompey. + +POMPEY: +No, Antony, take the lot: but, first +Or last, your fine Egyptian cookery +Shall have the fame. I have heard that Julius Caesar +Grew fat with feasting there. + +MARK ANTONY: +You have heard much. + +POMPEY: +I have fair meanings, sir. + +MARK ANTONY: +And fair words to them. + +POMPEY: +Then so much have I heard: +And I have heard, Apollodorus carried-- + +DOMITIUS ENOBARBUS: +No more of that: he did so. + +POMPEY: +What, I pray you? + +DOMITIUS ENOBARBUS: +A certain queen to Caesar in a mattress. + +POMPEY: +I know thee now: how farest thou, soldier? + +DOMITIUS ENOBARBUS: +Well; +And well am like to do; for, I perceive, +Four feasts are toward. + +POMPEY: +Let me shake thy hand; +I never hated thee: I have seen thee fight, +When I have envied thy behavior. + +DOMITIUS ENOBARBUS: +Sir, +I never loved you much; but I ha' praised ye, +When you have well deserved ten times as much +As I have said you did. + +POMPEY: +Enjoy thy plainness, +It nothing ill becomes thee. +Aboard my galley I invite you all: +Will you lead, lords? + +OCTAVIUS CAESAR: +Show us the way, sir. + +POMPEY: +Come. + +MENAS: + +DOMITIUS ENOBARBUS: +At sea, I think. + +MENAS: +We have, sir. + +DOMITIUS ENOBARBUS: +You have done well by water. + +MENAS: +And you by land. + +DOMITIUS ENOBARBUS: +I will praise any man that will praise me; though it +cannot be denied what I have done by land. + +MENAS: +Nor what I have done by water. + +DOMITIUS ENOBARBUS: +Yes, something you can deny for your own +safety: you have been a great thief by sea. + +MENAS: +And you by land. + +DOMITIUS ENOBARBUS: +There I deny my land service. But give me your +hand, Menas: if our eyes had authority, here they +might take two thieves kissing. + +MENAS: +All men's faces are true, whatsome'er their hands are. + +DOMITIUS ENOBARBUS: +But there is never a fair woman has a true face. + +MENAS: +No slander; they steal hearts. + +DOMITIUS ENOBARBUS: +We came hither to fight with you. + +MENAS: +For my part, I am sorry it is turned to a drinking. +Pompey doth this day laugh away his fortune. + +DOMITIUS ENOBARBUS: +If he do, sure, he cannot weep't back again. + +MENAS: +You've said, sir. We looked not for Mark Antony +here: pray you, is he married to Cleopatra? + +DOMITIUS ENOBARBUS: +Caesar's sister is called Octavia. + +MENAS: +True, sir; she was the wife of Caius Marcellus. + +DOMITIUS ENOBARBUS: +But she is now the wife of Marcus Antonius. + +MENAS: +Pray ye, sir? + +DOMITIUS ENOBARBUS: +'Tis true. + +MENAS: +Then is Caesar and he for ever knit together. + +DOMITIUS ENOBARBUS: +If I were bound to divine of this unity, I would +not prophesy so. + +MENAS: +I think the policy of that purpose made more in the +marriage than the love of the parties. + +DOMITIUS ENOBARBUS: +I think so too. But you shall find, the band that +seems to tie their friendship together will be the +very strangler of their amity: Octavia is of a +holy, cold, and still conversation. + +MENAS: +Who would not have his wife so? + +DOMITIUS ENOBARBUS: +Not he that himself is not so; which is Mark Antony. +He will to his Egyptian dish again: then shall the +sighs of Octavia blow the fire up in Caesar; and, as +I said before, that which is the strength of their +amity shall prove the immediate author of their +variance. Antony will use his affection where it is: +he married but his occasion here. + +MENAS: +And thus it may be. Come, sir, will you aboard? +I have a health for you. + +DOMITIUS ENOBARBUS: +I shall take it, sir: we have used our throats in Egypt. + +MENAS: +Come, let's away. + +First Servant: +Here they'll be, man. Some o' their plants are +ill-rooted already: the least wind i' the world +will blow them down. + +Second Servant: +Lepidus is high-coloured. + +First Servant: +They have made him drink alms-drink. + +Second Servant: +As they pinch one another by the disposition, he +cries out 'No more;' reconciles them to his +entreaty, and himself to the drink. + +First Servant: +But it raises the greater war between him and +his discretion. + +Second Servant: +Why, this is to have a name in great men's +fellowship: I had as lief have a reed that will do +me no service as a partisan I could not heave. + +First Servant: +To be called into a huge sphere, and not to be seen +to move in't, are the holes where eyes should be, +which pitifully disaster the cheeks. + +MARK ANTONY: + +LEPIDUS: +You've strange serpents there. + +MARK ANTONY: +Ay, Lepidus. + +LEPIDUS: +Your serpent of Egypt is bred now of your mud by the +operation of your sun: so is your crocodile. + +MARK ANTONY: +They are so. + +POMPEY: +Sit,--and some wine! A health to Lepidus! + +LEPIDUS: +I am not so well as I should be, but I'll ne'er out. + +DOMITIUS ENOBARBUS: +Not till you have slept; I fear me you'll be in till then. + +LEPIDUS: +Nay, certainly, I have heard the Ptolemies' +pyramises are very goodly things; without +contradiction, I have heard that. + +MENAS: + +POMPEY: + +MENAS: + +POMPEY: + +LEPIDUS: +What manner o' thing is your crocodile? + +MARK ANTONY: +It is shaped, sir, like itself; and it is as broad +as it hath breadth: it is just so high as it is, +and moves with its own organs: it lives by that +which nourisheth it; and the elements once out of +it, it transmigrates. + +LEPIDUS: +What colour is it of? + +MARK ANTONY: +Of it own colour too. + +LEPIDUS: +'Tis a strange serpent. + +MARK ANTONY: +'Tis so. And the tears of it are wet. + +OCTAVIUS CAESAR: +Will this description satisfy him? + +MARK ANTONY: +With the health that Pompey gives him, else he is a +very epicure. + +POMPEY: + +MENAS: + +POMPEY: + +MENAS: +I have ever held my cap off to thy fortunes. + +POMPEY: +Thou hast served me with much faith. What's else to say? +Be jolly, lords. + +MARK ANTONY: +These quick-sands, Lepidus, +Keep off them, for you sink. + +MENAS: +Wilt thou be lord of all the world? + +POMPEY: +What say'st thou? + +MENAS: +Wilt thou be lord of the whole world? That's twice. + +POMPEY: +How should that be? + +MENAS: +But entertain it, +And, though thou think me poor, I am the man +Will give thee all the world. + +POMPEY: +Hast thou drunk well? + +MENAS: +Now, Pompey, I have kept me from the cup. +Thou art, if thou darest be, the earthly Jove: +Whate'er the ocean pales, or sky inclips, +Is thine, if thou wilt ha't. + +POMPEY: +Show me which way. + +MENAS: +These three world-sharers, these competitors, +Are in thy vessel: let me cut the cable; +And, when we are put off, fall to their throats: +All there is thine. + +POMPEY: +Ah, this thou shouldst have done, +And not have spoke on't! In me 'tis villany; +In thee't had been good service. Thou must know, +'Tis not my profit that does lead mine honour; +Mine honour, it. Repent that e'er thy tongue +Hath so betray'd thine act: being done unknown, +I should have found it afterwards well done; +But must condemn it now. Desist, and drink. + +MENAS: + +POMPEY: +This health to Lepidus! + +MARK ANTONY: +Bear him ashore. I'll pledge it for him, Pompey. + +DOMITIUS ENOBARBUS: +Here's to thee, Menas! + +MENAS: +Enobarbus, welcome! + +POMPEY: +Fill till the cup be hid. + +DOMITIUS ENOBARBUS: +There's a strong fellow, Menas. + +MENAS: +Why? + +DOMITIUS ENOBARBUS: +A' bears the third part of the world, man; see'st +not? + +MENAS: +The third part, then, is drunk: would it were all, +That it might go on wheels! + +DOMITIUS ENOBARBUS: +Drink thou; increase the reels. + +MENAS: +Come. + +POMPEY: +This is not yet an Alexandrian feast. + +MARK ANTONY: +It ripens towards it. Strike the vessels, ho? +Here is to Caesar! + +OCTAVIUS CAESAR: +I could well forbear't. +It's monstrous labour, when I wash my brain, +And it grows fouler. + +MARK ANTONY: +Be a child o' the time. + +OCTAVIUS CAESAR: +Possess it, I'll make answer: +But I had rather fast from all four days +Than drink so much in one. + +DOMITIUS ENOBARBUS: +Ha, my brave emperor! +Shall we dance now the Egyptian Bacchanals, +And celebrate our drink? + +POMPEY: +Let's ha't, good soldier. + +MARK ANTONY: +Come, let's all take hands, +Till that the conquering wine hath steep'd our sense +In soft and delicate Lethe. + +DOMITIUS ENOBARBUS: +All take hands. +Make battery to our ears with the loud music: +The while I'll place you: then the boy shall sing; +The holding every man shall bear as loud +As his strong sides can volley. +Come, thou monarch of the vine, +Plumpy Bacchus with pink eyne! +In thy fats our cares be drown'd, +With thy grapes our hairs be crown'd: +Cup us, till the world go round, +Cup us, till the world go round! + +OCTAVIUS CAESAR: +What would you more? Pompey, good night. Good brother, +Let me request you off: our graver business +Frowns at this levity. Gentle lords, let's part; +You see we have burnt our cheeks: strong Enobarb +Is weaker than the wine; and mine own tongue +Splits what it speaks: the wild disguise hath almost +Antick'd us all. What needs more words? Good night. +Good Antony, your hand. + +POMPEY: +I'll try you on the shore. + +MARK ANTONY: +And shall, sir; give's your hand. + +POMPEY: +O Antony, +You have my father's house,--But, what? we are friends. +Come, down into the boat. + +DOMITIUS ENOBARBUS: +Take heed you fall not. +Menas, I'll not on shore. + +MENAS: +No, to my cabin. +These drums! these trumpets, flutes! what! +Let Neptune hear we bid a loud farewell +To these great fellows: sound and be hang'd, sound out! + +DOMITIUS ENOBARBUS: +Ho! says a' There's my cap. + +MENAS: +Ho! Noble captain, come. + +VENTIDIUS: +Now, darting Parthia, art thou struck; and now +Pleased fortune does of Marcus Crassus' death +Make me revenger. Bear the king's son's body +Before our army. Thy Pacorus, Orodes, +Pays this for Marcus Crassus. + +SILIUS: +Noble Ventidius, +Whilst yet with Parthian blood thy sword is warm, +The fugitive Parthians follow; spur through Media, +Mesopotamia, and the shelters whither +The routed fly: so thy grand captain Antony +Shall set thee on triumphant chariots and +Put garlands on thy head. + +VENTIDIUS: +O Silius, Silius, +I have done enough; a lower place, note well, +May make too great an act: for learn this, Silius; +Better to leave undone, than by our deed +Acquire too high a fame when him we serve's away. +Caesar and Antony have ever won +More in their officer than person: Sossius, +One of my place in Syria, his lieutenant, +For quick accumulation of renown, +Which he achieved by the minute, lost his favour. +Who does i' the wars more than his captain can +Becomes his captain's captain: and ambition, +The soldier's virtue, rather makes choice of loss, +Than gain which darkens him. +I could do more to do Antonius good, +But 'twould offend him; and in his offence +Should my performance perish. + +SILIUS: +Thou hast, Ventidius, +that +Without the which a soldier, and his sword, +Grants scarce distinction. Thou wilt write to Antony! + +VENTIDIUS: +I'll humbly signify what in his name, +That magical word of war, we have effected; +How, with his banners and his well-paid ranks, +The ne'er-yet-beaten horse of Parthia +We have jaded out o' the field. + +SILIUS: +Where is he now? + +VENTIDIUS: +He purposeth to Athens: whither, with what haste +The weight we must convey with's will permit, +We shall appear before him. On there; pass along! + +AGRIPPA: +What, are the brothers parted? + +DOMITIUS ENOBARBUS: +They have dispatch'd with Pompey, he is gone; +The other three are sealing. Octavia weeps +To part from Rome; Caesar is sad; and Lepidus, +Since Pompey's feast, as Menas says, is troubled +With the green sickness. + +AGRIPPA: +'Tis a noble Lepidus. + +DOMITIUS ENOBARBUS: +A very fine one: O, how he loves Caesar! + +AGRIPPA: +Nay, but how dearly he adores Mark Antony! + +DOMITIUS ENOBARBUS: +Caesar? Why, he's the Jupiter of men. + +AGRIPPA: +What's Antony? The god of Jupiter. + +DOMITIUS ENOBARBUS: +Spake you of Caesar? How! the non-pareil! + +AGRIPPA: +O Antony! O thou Arabian bird! + +DOMITIUS ENOBARBUS: +Would you praise Caesar, say 'Caesar:' go no further. + +AGRIPPA: +Indeed, he plied them both with excellent praises. + +DOMITIUS ENOBARBUS: +But he loves Caesar best; yet he loves Antony: +Ho! hearts, tongues, figures, scribes, bards, +poets, cannot +Think, speak, cast, write, sing, number, ho! +His love to Antony. But as for Caesar, +Kneel down, kneel down, and wonder. + +AGRIPPA: +Both he loves. + +DOMITIUS ENOBARBUS: +They are his shards, and he their beetle. +So; +This is to horse. Adieu, noble Agrippa. + +AGRIPPA: +Good fortune, worthy soldier; and farewell. + +MARK ANTONY: +No further, sir. + +OCTAVIUS CAESAR: +You take from me a great part of myself; +Use me well in 't. Sister, prove such a wife +As my thoughts make thee, and as my farthest band +Shall pass on thy approof. Most noble Antony, +Let not the piece of virtue, which is set +Betwixt us as the cement of our love, +To keep it builded, be the ram to batter +The fortress of it; for better might we +Have loved without this mean, if on both parts +This be not cherish'd. + +MARK ANTONY: +Make me not offended +In your distrust. + +OCTAVIUS CAESAR: +I have said. + +MARK ANTONY: +You shall not find, +Though you be therein curious, the least cause +For what you seem to fear: so, the gods keep you, +And make the hearts of Romans serve your ends! +We will here part. + +OCTAVIUS CAESAR: +Farewell, my dearest sister, fare thee well: +The elements be kind to thee, and make +Thy spirits all of comfort! fare thee well. + +OCTAVIA: +My noble brother! + +MARK ANTONY: +The April 's in her eyes: it is love's spring, +And these the showers to bring it on. Be cheerful. + +OCTAVIA: +Sir, look well to my husband's house; and-- + +OCTAVIUS CAESAR: +What, Octavia? + +OCTAVIA: +I'll tell you in your ear. + +MARK ANTONY: +Her tongue will not obey her heart, nor can +Her heart inform her tongue,--the swan's +down-feather, +That stands upon the swell at full of tide, +And neither way inclines. + +DOMITIUS ENOBARBUS: + +AGRIPPA: + +DOMITIUS ENOBARBUS: + +AGRIPPA: + +DOMITIUS ENOBARBUS: + +OCTAVIUS CAESAR: +No, sweet Octavia, +You shall hear from me still; the time shall not +Out-go my thinking on you. + +MARK ANTONY: +Come, sir, come; +I'll wrestle with you in my strength of love: +Look, here I have you; thus I let you go, +And give you to the gods. + +OCTAVIUS CAESAR: +Adieu; be happy! + +LEPIDUS: +Let all the number of the stars give light +To thy fair way! + +OCTAVIUS CAESAR: +Farewell, farewell! + +MARK ANTONY: +Farewell! + +CLEOPATRA: +Where is the fellow? + +ALEXAS: +Half afeard to come. + +CLEOPATRA: +Go to, go to. +Come hither, sir. + +ALEXAS: +Good majesty, +Herod of Jewry dare not look upon you +But when you are well pleased. + +CLEOPATRA: +That Herod's head +I'll have: but how, when Antony is gone +Through whom I might command it? Come thou near. + +Messenger: +Most gracious majesty,-- + +CLEOPATRA: +Didst thou behold Octavia? + +Messenger: +Ay, dread queen. + +CLEOPATRA: +Where? + +Messenger: +Madam, in Rome; +I look'd her in the face, and saw her led +Between her brother and Mark Antony. + +CLEOPATRA: +Is she as tall as me? + +Messenger: +She is not, madam. + +CLEOPATRA: +Didst hear her speak? is she shrill-tongued or low? + +Messenger: +Madam, I heard her speak; she is low-voiced. + +CLEOPATRA: +That's not so good: he cannot like her long. + +CHARMIAN: +Like her! O Isis! 'tis impossible. + +CLEOPATRA: +I think so, Charmian: dull of tongue, and dwarfish! +What majesty is in her gait? Remember, +If e'er thou look'dst on majesty. + +Messenger: +She creeps: +Her motion and her station are as one; +She shows a body rather than a life, +A statue than a breather. + +CLEOPATRA: +Is this certain? + +Messenger: +Or I have no observance. + +CHARMIAN: +Three in Egypt +Cannot make better note. + +CLEOPATRA: +He's very knowing; +I do perceive't: there's nothing in her yet: +The fellow has good judgment. + +CHARMIAN: +Excellent. + +CLEOPATRA: +Guess at her years, I prithee. + +Messenger: +Madam, +She was a widow,-- + +CLEOPATRA: +Widow! Charmian, hark. + +Messenger: +And I do think she's thirty. + +CLEOPATRA: +Bear'st thou her face in mind? is't long or round? + +Messenger: +Round even to faultiness. + +CLEOPATRA: +For the most part, too, they are foolish that are so. +Her hair, what colour? + +Messenger: +Brown, madam: and her forehead +As low as she would wish it. + +CLEOPATRA: +There's gold for thee. +Thou must not take my former sharpness ill: +I will employ thee back again; I find thee +Most fit for business: go make thee ready; +Our letters are prepared. + +CHARMIAN: +A proper man. + +CLEOPATRA: +Indeed, he is so: I repent me much +That so I harried him. Why, methinks, by him, +This creature's no such thing. + +CHARMIAN: +Nothing, madam. + +CLEOPATRA: +The man hath seen some majesty, and should know. + +CHARMIAN: +Hath he seen majesty? Isis else defend, +And serving you so long! + +CLEOPATRA: +I have one thing more to ask him yet, good Charmian: +But 'tis no matter; thou shalt bring him to me +Where I will write. All may be well enough. + +CHARMIAN: +I warrant you, madam. + +MARK ANTONY: +Nay, nay, Octavia, not only that,-- +That were excusable, that, and thousands more +Of semblable import,--but he hath waged +New wars 'gainst Pompey; made his will, and read it +To public ear: +Spoke scantly of me: when perforce he could not +But pay me terms of honour, cold and sickly +He vented them; most narrow measure lent me: +When the best hint was given him, he not took't, +Or did it from his teeth. + +OCTAVIA: +O my good lord, +Believe not all; or, if you must believe, +Stomach not all. A more unhappy lady, +If this division chance, ne'er stood between, +Praying for both parts: +The good gods me presently, +When I shall pray, 'O bless my lord and husband!' +Undo that prayer, by crying out as loud, +'O, bless my brother!' Husband win, win brother, +Prays, and destroys the prayer; no midway +'Twixt these extremes at all. + +MARK ANTONY: +Gentle Octavia, +Let your best love draw to that point, which seeks +Best to preserve it: if I lose mine honour, +I lose myself: better I were not yours +Than yours so branchless. But, as you requested, +Yourself shall go between 's: the mean time, lady, +I'll raise the preparation of a war +Shall stain your brother: make your soonest haste; +So your desires are yours. + +OCTAVIA: +Thanks to my lord. +The Jove of power make me most weak, most weak, +Your reconciler! Wars 'twixt you twain would be +As if the world should cleave, and that slain men +Should solder up the rift. + +MARK ANTONY: +When it appears to you where this begins, +Turn your displeasure that way: for our faults +Can never be so equal, that your love +Can equally move with them. Provide your going; +Choose your own company, and command what cost +Your heart has mind to. + +DOMITIUS ENOBARBUS: +How now, friend Eros! + +EROS: +There's strange news come, sir. + +DOMITIUS ENOBARBUS: +What, man? + +EROS: +Caesar and Lepidus have made wars upon Pompey. + +DOMITIUS ENOBARBUS: +This is old: what is the success? + +EROS: +Caesar, having made use of him in the wars 'gainst +Pompey, presently denied him rivality; would not let +him partake in the glory of the action: and not +resting here, accuses him of letters he had formerly +wrote to Pompey; upon his own appeal, seizes him: so +the poor third is up, till death enlarge his confine. + +DOMITIUS ENOBARBUS: +Then, world, thou hast a pair of chaps, no more; +And throw between them all the food thou hast, +They'll grind the one the other. Where's Antony? + +EROS: +He's walking in the garden--thus; and spurns +The rush that lies before him; cries, 'Fool Lepidus!' +And threats the throat of that his officer +That murder'd Pompey. + +DOMITIUS ENOBARBUS: +Our great navy's rigg'd. + +EROS: +For Italy and Caesar. More, Domitius; +My lord desires you presently: my news +I might have told hereafter. + +DOMITIUS ENOBARBUS: +'Twill be naught: +But let it be. Bring me to Antony. + +EROS: +Come, sir. + +OCTAVIUS CAESAR: +Contemning Rome, he has done all this, and more, +In Alexandria: here's the manner of 't: +I' the market-place, on a tribunal silver'd, +Cleopatra and himself in chairs of gold +Were publicly enthroned: at the feet sat +Caesarion, whom they call my father's son, +And all the unlawful issue that their lust +Since then hath made between them. Unto her +He gave the stablishment of Egypt; made her +Of lower Syria, Cyprus, Lydia, +Absolute queen. + +MECAENAS: +This in the public eye? + +OCTAVIUS CAESAR: +I' the common show-place, where they exercise. +His sons he there proclaim'd the kings of kings: +Great Media, Parthia, and Armenia. +He gave to Alexander; to Ptolemy he assign'd +Syria, Cilicia, and Phoenicia: she +In the habiliments of the goddess Isis +That day appear'd; and oft before gave audience, +As 'tis reported, so. + +MECAENAS: +Let Rome be thus Inform'd. + +AGRIPPA: +Who, queasy with his insolence +Already, will their good thoughts call from him. + +OCTAVIUS CAESAR: +The people know it; and have now received +His accusations. + +AGRIPPA: +Who does he accuse? + +OCTAVIUS CAESAR: +Caesar: and that, having in Sicily +Sextus Pompeius spoil'd, we had not rated him +His part o' the isle: then does he say, he lent me +Some shipping unrestored: lastly, he frets +That Lepidus of the triumvirate +Should be deposed; and, being, that we detain +All his revenue. + +AGRIPPA: +Sir, this should be answer'd. + +OCTAVIUS CAESAR: +'Tis done already, and the messenger gone. +I have told him, Lepidus was grown too cruel; +That he his high authority abused, +And did deserve his change: for what I have conquer'd, +I grant him part; but then, in his Armenia, +And other of his conquer'd kingdoms, I +Demand the like. + +MECAENAS: +He'll never yield to that. + +OCTAVIUS CAESAR: +Nor must not then be yielded to in this. + +OCTAVIA: +Hail, Caesar, and my lord! hail, most dear Caesar! + +OCTAVIUS CAESAR: +That ever I should call thee castaway! + +OCTAVIA: +You have not call'd me so, nor have you cause. + +OCTAVIUS CAESAR: +Why have you stol'n upon us thus! You come not +Like Caesar's sister: the wife of Antony +Should have an army for an usher, and +The neighs of horse to tell of her approach +Long ere she did appear; the trees by the way +Should have borne men; and expectation fainted, +Longing for what it had not; nay, the dust +Should have ascended to the roof of heaven, +Raised by your populous troops: but you are come +A market-maid to Rome; and have prevented +The ostentation of our love, which, left unshown, +Is often left unloved; we should have met you +By sea and land; supplying every stage +With an augmented greeting. + +OCTAVIA: +Good my lord, +To come thus was I not constrain'd, but did +On my free will. My lord, Mark Antony, +Hearing that you prepared for war, acquainted +My grieved ear withal; whereon, I begg'd +His pardon for return. + +OCTAVIUS CAESAR: +Which soon he granted, +Being an obstruct 'tween his lust and him. + +OCTAVIA: +Do not say so, my lord. + +OCTAVIUS CAESAR: +I have eyes upon him, +And his affairs come to me on the wind. +Where is he now? + +OCTAVIA: +My lord, in Athens. + +OCTAVIUS CAESAR: +No, my most wronged sister; Cleopatra +Hath nodded him to her. He hath given his empire +Up to a whore; who now are levying +The kings o' the earth for war; he hath assembled +Bocchus, the king of Libya; Archelaus, +Of Cappadocia; Philadelphos, king +Of Paphlagonia; the Thracian king, Adallas; +King Malchus of Arabia; King of Pont; +Herod of Jewry; Mithridates, king +Of Comagene; Polemon and Amyntas, +The kings of Mede and Lycaonia, +With a more larger list of sceptres. + +OCTAVIA: +Ay me, most wretched, +That have my heart parted betwixt two friends +That do afflict each other! + +OCTAVIUS CAESAR: +Welcome hither: +Your letters did withhold our breaking forth; +Till we perceived, both how you were wrong led, +And we in negligent danger. Cheer your heart; +Be you not troubled with the time, which drives +O'er your content these strong necessities; +But let determined things to destiny +Hold unbewail'd their way. Welcome to Rome; +Nothing more dear to me. You are abused +Beyond the mark of thought: and the high gods, +To do you justice, make them ministers +Of us and those that love you. Best of comfort; +And ever welcome to us. + +AGRIPPA: +Welcome, lady. + +MECAENAS: +Welcome, dear madam. +Each heart in Rome does love and pity you: +Only the adulterous Antony, most large +In his abominations, turns you off; +And gives his potent regiment to a trull, +That noises it against us. + +OCTAVIA: +Is it so, sir? + +OCTAVIUS CAESAR: +Most certain. Sister, welcome: pray you, +Be ever known to patience: my dear'st sister! + +CLEOPATRA: +I will be even with thee, doubt it not. + +DOMITIUS ENOBARBUS: +But why, why, why? + +CLEOPATRA: +Thou hast forspoke my being in these wars, +And say'st it is not fit. + +DOMITIUS ENOBARBUS: +Well, is it, is it? + +CLEOPATRA: +If not denounced against us, why should not we +Be there in person? + +DOMITIUS ENOBARBUS: + +CLEOPATRA: +What is't you say? + +DOMITIUS ENOBARBUS: +Your presence needs must puzzle Antony; +Take from his heart, take from his brain, +from's time, +What should not then be spared. He is already +Traduced for levity; and 'tis said in Rome +That Photinus an eunuch and your maids +Manage this war. + +CLEOPATRA: +Sink Rome, and their tongues rot +That speak against us! A charge we bear i' the war, +And, as the president of my kingdom, will +Appear there for a man. Speak not against it: +I will not stay behind. + +DOMITIUS ENOBARBUS: +Nay, I have done. +Here comes the emperor. + +MARK ANTONY: +Is it not strange, Canidius, +That from Tarentum and Brundusium +He could so quickly cut the Ionian sea, +And take in Toryne? You have heard on't, sweet? + +CLEOPATRA: +Celerity is never more admired +Than by the negligent. + +MARK ANTONY: +A good rebuke, +Which might have well becomed the best of men, +To taunt at slackness. Canidius, we +Will fight with him by sea. + +CLEOPATRA: +By sea! what else? + +CANIDIUS: +Why will my lord do so? + +MARK ANTONY: +For that he dares us to't. + +DOMITIUS ENOBARBUS: +So hath my lord dared him to single fight. + +CANIDIUS: +Ay, and to wage this battle at Pharsalia. +Where Caesar fought with Pompey: but these offers, +Which serve not for his vantage, be shakes off; +And so should you. + +DOMITIUS ENOBARBUS: +Your ships are not well mann'd; +Your mariners are muleters, reapers, people +Ingross'd by swift impress; in Caesar's fleet +Are those that often have 'gainst Pompey fought: +Their ships are yare; yours, heavy: no disgrace +Shall fall you for refusing him at sea, +Being prepared for land. + +MARK ANTONY: +By sea, by sea. + +DOMITIUS ENOBARBUS: +Most worthy sir, you therein throw away +The absolute soldiership you have by land; +Distract your army, which doth most consist +Of war-mark'd footmen; leave unexecuted +Your own renowned knowledge; quite forego +The way which promises assurance; and +Give up yourself merely to chance and hazard, +From firm security. + +MARK ANTONY: +I'll fight at sea. + +CLEOPATRA: +I have sixty sails, Caesar none better. + +MARK ANTONY: +Our overplus of shipping will we burn; +And, with the rest full-mann'd, from the head of Actium +Beat the approaching Caesar. But if we fail, +We then can do't at land. +Thy business? + +Messenger: +The news is true, my lord; he is descried; +Caesar has taken Toryne. + +MARK ANTONY: +Can he be there in person? 'tis impossible; +Strange that power should be. Canidius, +Our nineteen legions thou shalt hold by land, +And our twelve thousand horse. We'll to our ship: +Away, my Thetis! +How now, worthy soldier? + +Soldier: +O noble emperor, do not fight by sea; +Trust not to rotten planks: do you misdoubt +This sword and these my wounds? Let the Egyptians +And the Phoenicians go a-ducking; we +Have used to conquer, standing on the earth, +And fighting foot to foot. + +MARK ANTONY: +Well, well: away! + +Soldier: +By Hercules, I think I am i' the right. + +CANIDIUS: +Soldier, thou art: but his whole action grows +Not in the power on't: so our leader's led, +And we are women's men. + +Soldier: +You keep by land +The legions and the horse whole, do you not? + +CANIDIUS: +Marcus Octavius, Marcus Justeius, +Publicola, and Caelius, are for sea: +But we keep whole by land. This speed of Caesar's +Carries beyond belief. + +Soldier: +While he was yet in Rome, +His power went out in such distractions as +Beguiled all spies. + +CANIDIUS: +Who's his lieutenant, hear you? + +Soldier: +They say, one Taurus. + +CANIDIUS: +Well I know the man. + +Messenger: +The emperor calls Canidius. + +CANIDIUS: +With news the time's with labour, and throes forth, +Each minute, some. + +OCTAVIUS CAESAR: +Taurus! + +TAURUS: +My lord? + +OCTAVIUS CAESAR: +Strike not by land; keep whole: provoke not battle, +Till we have done at sea. Do not exceed +The prescript of this scroll: our fortune lies +Upon this jump. + +MARK ANTONY: +Set we our squadrons on yond side o' the hill, +In eye of Caesar's battle; from which place +We may the number of the ships behold, +And so proceed accordingly. + +DOMITIUS ENOBARBUS: +Naught, naught all, naught! I can behold no longer: +The Antoniad, the Egyptian admiral, +With all their sixty, fly and turn the rudder: +To see't mine eyes are blasted. + +SCARUS: +Gods and goddesses, +All the whole synod of them! + +DOMITIUS ENOBARBUS: +What's thy passion! + +SCARUS: +The greater cantle of the world is lost +With very ignorance; we have kiss'd away +Kingdoms and provinces. + +DOMITIUS ENOBARBUS: +How appears the fight? + +SCARUS: +On our side like the token'd pestilence, +Where death is sure. Yon ribaudred nag of Egypt,-- +Whom leprosy o'ertake!--i' the midst o' the fight, +When vantage like a pair of twins appear'd, +Both as the same, or rather ours the elder, +The breese upon her, like a cow in June, +Hoists sails and flies. + +DOMITIUS ENOBARBUS: +That I beheld: +Mine eyes did sicken at the sight, and could not +Endure a further view. + +SCARUS: +She once being loof'd, +The noble ruin of her magic, Antony, +Claps on his sea-wing, and, like a doting mallard, +Leaving the fight in height, flies after her: +I never saw an action of such shame; +Experience, manhood, honour, ne'er before +Did violate so itself. + +DOMITIUS ENOBARBUS: +Alack, alack! + +CANIDIUS: +Our fortune on the sea is out of breath, +And sinks most lamentably. Had our general +Been what he knew himself, it had gone well: +O, he has given example for our flight, +Most grossly, by his own! + +DOMITIUS ENOBARBUS: +Ay, are you thereabouts? +Why, then, good night indeed. + +CANIDIUS: +Toward Peloponnesus are they fled. + +SCARUS: +'Tis easy to't; and there I will attend +What further comes. + +CANIDIUS: +To Caesar will I render +My legions and my horse: six kings already +Show me the way of yielding. + +DOMITIUS ENOBARBUS: +I'll yet follow +The wounded chance of Antony, though my reason +Sits in the wind against me. + +MARK ANTONY: +Hark! the land bids me tread no more upon't; +It is ashamed to bear me! Friends, come hither: +I am so lated in the world, that I +Have lost my way for ever: I have a ship +Laden with gold; take that, divide it; fly, +And make your peace with Caesar. + +All: +Fly! not we. + +MARK ANTONY: +I have fled myself; and have instructed cowards +To run and show their shoulders. Friends, be gone; +I have myself resolved upon a course +Which has no need of you; be gone: +My treasure's in the harbour, take it. O, +I follow'd that I blush to look upon: +My very hairs do mutiny; for the white +Reprove the brown for rashness, and they them +For fear and doting. Friends, be gone: you shall +Have letters from me to some friends that will +Sweep your way for you. Pray you, look not sad, +Nor make replies of loathness: take the hint +Which my despair proclaims; let that be left +Which leaves itself: to the sea-side straightway: +I will possess you of that ship and treasure. +Leave me, I pray, a little: pray you now: +Nay, do so; for, indeed, I have lost command, +Therefore I pray you: I'll see you by and by. + +EROS: +Nay, gentle madam, to him, comfort him. + +IRAS: +Do, most dear queen. + +CHARMIAN: +Do! why: what else? + +CLEOPATRA: +Let me sit down. O Juno! + +MARK ANTONY: +No, no, no, no, no. + +EROS: +See you here, sir? + +MARK ANTONY: +O fie, fie, fie! + +CHARMIAN: +Madam! + +IRAS: +Madam, O good empress! + +EROS: +Sir, sir,-- + +MARK ANTONY: +Yes, my lord, yes; he at Philippi kept +His sword e'en like a dancer; while I struck +The lean and wrinkled Cassius; and 'twas I +That the mad Brutus ended: he alone +Dealt on lieutenantry, and no practise had +In the brave squares of war: yet now--No matter. + +CLEOPATRA: +Ah, stand by. + +EROS: +The queen, my lord, the queen. + +IRAS: +Go to him, madam, speak to him: +He is unqualitied with very shame. + +CLEOPATRA: +Well then, sustain him: O! + +EROS: +Most noble sir, arise; the queen approaches: +Her head's declined, and death will seize her, but +Your comfort makes the rescue. + +MARK ANTONY: +I have offended reputation, +A most unnoble swerving. + +EROS: +Sir, the queen. + +MARK ANTONY: +O, whither hast thou led me, Egypt? See, +How I convey my shame out of thine eyes +By looking back what I have left behind +'Stroy'd in dishonour. + +CLEOPATRA: +O my lord, my lord, +Forgive my fearful sails! I little thought +You would have follow'd. + +MARK ANTONY: +Egypt, thou knew'st too well +My heart was to thy rudder tied by the strings, +And thou shouldst tow me after: o'er my spirit +Thy full supremacy thou knew'st, and that +Thy beck might from the bidding of the gods +Command me. + +CLEOPATRA: +O, my pardon! + +MARK ANTONY: +Now I must +To the young man send humble treaties, dodge +And palter in the shifts of lowness; who +With half the bulk o' the world play'd as I pleased, +Making and marring fortunes. You did know +How much you were my conqueror; and that +My sword, made weak by my affection, would +Obey it on all cause. + +CLEOPATRA: +Pardon, pardon! + +MARK ANTONY: +Fall not a tear, I say; one of them rates +All that is won and lost: give me a kiss; +Even this repays me. We sent our schoolmaster; +Is he come back? Love, I am full of lead. +Some wine, within there, and our viands! Fortune knows +We scorn her most when most she offers blows. + +OCTAVIUS CAESAR: +Let him appear that's come from Antony. +Know you him? + +DOLABELLA: +Caesar, 'tis his schoolmaster: +An argument that he is pluck'd, when hither +He sends so poor a pinion off his wing, +Which had superfluous kings for messengers +Not many moons gone by. + +OCTAVIUS CAESAR: +Approach, and speak. + +EUPHRONIUS: +Such as I am, I come from Antony: +I was of late as petty to his ends +As is the morn-dew on the myrtle-leaf +To his grand sea. + +OCTAVIUS CAESAR: +Be't so: declare thine office. + +EUPHRONIUS: +Lord of his fortunes he salutes thee, and +Requires to live in Egypt: which not granted, +He lessens his requests; and to thee sues +To let him breathe between the heavens and earth, +A private man in Athens: this for him. +Next, Cleopatra does confess thy greatness; +Submits her to thy might; and of thee craves +The circle of the Ptolemies for her heirs, +Now hazarded to thy grace. + +OCTAVIUS CAESAR: +For Antony, +I have no ears to his request. The queen +Of audience nor desire shall fail, so she +From Egypt drive her all-disgraced friend, +Or take his life there: this if she perform, +She shall not sue unheard. So to them both. + +EUPHRONIUS: +Fortune pursue thee! + +OCTAVIUS CAESAR: +Bring him through the bands. + +THYREUS: +Caesar, I go. + +OCTAVIUS CAESAR: +Observe how Antony becomes his flaw, +And what thou think'st his very action speaks +In every power that moves. + +THYREUS: +Caesar, I shall. + +CLEOPATRA: +What shall we do, Enobarbus? + +DOMITIUS ENOBARBUS: +Think, and die. + +CLEOPATRA: +Is Antony or we in fault for this? + +DOMITIUS ENOBARBUS: +Antony only, that would make his will +Lord of his reason. What though you fled +From that great face of war, whose several ranges +Frighted each other? why should he follow? +The itch of his affection should not then +Have nick'd his captainship; at such a point, +When half to half the world opposed, he being +The meered question: 'twas a shame no less +Than was his loss, to course your flying flags, +And leave his navy gazing. + +CLEOPATRA: +Prithee, peace. + +MARK ANTONY: +Is that his answer? + +EUPHRONIUS: +Ay, my lord. + +MARK ANTONY: +The queen shall then have courtesy, so she +Will yield us up. + +EUPHRONIUS: +He says so. + +MARK ANTONY: +Let her know't. +To the boy Caesar send this grizzled head, +And he will fill thy wishes to the brim +With principalities. + +CLEOPATRA: +That head, my lord? + +MARK ANTONY: +To him again: tell him he wears the rose +Of youth upon him; from which the world should note +Something particular: his coin, ships, legions, +May be a coward's; whose ministers would prevail +Under the service of a child as soon +As i' the command of Caesar: I dare him therefore +To lay his gay comparisons apart, +And answer me declined, sword against sword, +Ourselves alone. I'll write it: follow me. + +DOMITIUS ENOBARBUS: + +Attendant: +A messenger from CAESAR. + +CLEOPATRA: +What, no more ceremony? See, my women! +Against the blown rose may they stop their nose +That kneel'd unto the buds. Admit him, sir. + +DOMITIUS ENOBARBUS: + +CLEOPATRA: +Caesar's will? + +THYREUS: +Hear it apart. + +CLEOPATRA: +None but friends: say boldly. + +THYREUS: +So, haply, are they friends to Antony. + +DOMITIUS ENOBARBUS: +He needs as many, sir, as Caesar has; +Or needs not us. If Caesar please, our master +Will leap to be his friend: for us, you know, +Whose he is we are, and that is, Caesar's. + +THYREUS: +So. +Thus then, thou most renown'd: Caesar entreats, +Not to consider in what case thou stand'st, +Further than he is Caesar. + +CLEOPATRA: +Go on: right royal. + +THYREUS: +He knows that you embrace not Antony +As you did love, but as you fear'd him. + +CLEOPATRA: +O! + +THYREUS: +The scars upon your honour, therefore, he +Does pity, as constrained blemishes, +Not as deserved. + +CLEOPATRA: +He is a god, and knows +What is most right: mine honour was not yielded, +But conquer'd merely. + +DOMITIUS ENOBARBUS: + +THYREUS: +Shall I say to Caesar +What you require of him? for he partly begs +To be desired to give. It much would please him, +That of his fortunes you should make a staff +To lean upon: but it would warm his spirits, +To hear from me you had left Antony, +And put yourself under his shrowd, +The universal landlord. + +CLEOPATRA: +What's your name? + +THYREUS: +My name is Thyreus. + +CLEOPATRA: +Most kind messenger, +Say to great Caesar this: in deputation +I kiss his conquering hand: tell him, I am prompt +To lay my crown at 's feet, and there to kneel: +Tell him from his all-obeying breath I hear +The doom of Egypt. + +THYREUS: +'Tis your noblest course. +Wisdom and fortune combating together, +If that the former dare but what it can, +No chance may shake it. Give me grace to lay +My duty on your hand. + +CLEOPATRA: +Your Caesar's father oft, +When he hath mused of taking kingdoms in, +Bestow'd his lips on that unworthy place, +As it rain'd kisses. + +MARK ANTONY: +Favours, by Jove that thunders! +What art thou, fellow? + +THYREUS: +One that but performs +The bidding of the fullest man, and worthiest +To have command obey'd. + +DOMITIUS ENOBARBUS: + +MARK ANTONY: +Approach, there! Ah, you kite! Now, gods +and devils! +Authority melts from me: of late, when I cried 'Ho!' +Like boys unto a muss, kings would start forth, +And cry 'Your will?' Have you no ears? I am +Antony yet. +Take hence this Jack, and whip him. + +DOMITIUS ENOBARBUS: + +MARK ANTONY: +Moon and stars! +Whip him. Were't twenty of the greatest tributaries +That do acknowledge Caesar, should I find them +So saucy with the hand of she here,--what's her name, +Since she was Cleopatra? Whip him, fellows, +Till, like a boy, you see him cringe his face, +And whine aloud for mercy: take him hence. + +THYREUS: +Mark Antony! + +MARK ANTONY: +Tug him away: being whipp'd, +Bring him again: this Jack of Caesar's shall +Bear us an errand to him. +You were half blasted ere I knew you: ha! +Have I my pillow left unpress'd in Rome, +Forborne the getting of a lawful race, +And by a gem of women, to be abused +By one that looks on feeders? + +CLEOPATRA: +Good my lord,-- + +MARK ANTONY: +You have been a boggler ever: +But when we in our viciousness grow hard-- +O misery on't!--the wise gods seel our eyes; +In our own filth drop our clear judgments; make us +Adore our errors; laugh at's, while we strut +To our confusion. + +CLEOPATRA: +O, is't come to this? + +MARK ANTONY: +I found you as a morsel cold upon +Dead Caesar's trencher; nay, you were a fragment +Of Cneius Pompey's; besides what hotter hours, +Unregister'd in vulgar fame, you have +Luxuriously pick'd out: for, I am sure, +Though you can guess what temperance should be, +You know not what it is. + +CLEOPATRA: +Wherefore is this? + +MARK ANTONY: +To let a fellow that will take rewards +And say 'God quit you!' be familiar with +My playfellow, your hand; this kingly seal +And plighter of high hearts! O, that I were +Upon the hill of Basan, to outroar +The horned herd! for I have savage cause; +And to proclaim it civilly, were like +A halter'd neck which does the hangman thank +For being yare about him. +Is he whipp'd? + +First Attendant: +Soundly, my lord. + +MARK ANTONY: +Cried he? and begg'd a' pardon? + +First Attendant: +He did ask favour. + +MARK ANTONY: +If that thy father live, let him repent +Thou wast not made his daughter; and be thou sorry +To follow Caesar in his triumph, since +Thou hast been whipp'd for following him: henceforth +The white hand of a lady fever thee, +Shake thou to look on 't. Get thee back to Caesar, +Tell him thy entertainment: look, thou say +He makes me angry with him; for he seems +Proud and disdainful, harping on what I am, +Not what he knew I was: he makes me angry; +And at this time most easy 'tis to do't, +When my good stars, that were my former guides, +Have empty left their orbs, and shot their fires +Into the abysm of hell. If he mislike +My speech and what is done, tell him he has +Hipparchus, my enfranched bondman, whom +He may at pleasure whip, or hang, or torture, +As he shall like, to quit me: urge it thou: +Hence with thy stripes, begone! + +CLEOPATRA: +Have you done yet? + +MARK ANTONY: +Alack, our terrene moon +Is now eclipsed; and it portends alone +The fall of Antony! + +CLEOPATRA: +I must stay his time. + +MARK ANTONY: +To flatter Caesar, would you mingle eyes +With one that ties his points? + +CLEOPATRA: +Not know me yet? + +MARK ANTONY: +Cold-hearted toward me? + +CLEOPATRA: +Ah, dear, if I be so, +From my cold heart let heaven engender hail, +And poison it in the source; and the first stone +Drop in my neck: as it determines, so +Dissolve my life! The next Caesarion smite! +Till by degrees the memory of my womb, +Together with my brave Egyptians all, +By the discandying of this pelleted storm, +Lie graveless, till the flies and gnats of Nile +Have buried them for prey! + +MARK ANTONY: +I am satisfied. +Caesar sits down in Alexandria; where +I will oppose his fate. Our force by land +Hath nobly held; our sever'd navy too +Have knit again, and fleet, threatening most sea-like. +Where hast thou been, my heart? Dost thou hear, lady? +If from the field I shall return once more +To kiss these lips, I will appear in blood; +I and my sword will earn our chronicle: +There's hope in't yet. + +CLEOPATRA: +That's my brave lord! + +MARK ANTONY: +I will be treble-sinew'd, hearted, breathed, +And fight maliciously: for when mine hours +Were nice and lucky, men did ransom lives +Of me for jests; but now I'll set my teeth, +And send to darkness all that stop me. Come, +Let's have one other gaudy night: call to me +All my sad captains; fill our bowls once more; +Let's mock the midnight bell. + +CLEOPATRA: +It is my birth-day: +I had thought to have held it poor: but, since my lord +Is Antony again, I will be Cleopatra. + +MARK ANTONY: +We will yet do well. + +CLEOPATRA: +Call all his noble captains to my lord. + +MARK ANTONY: +Do so, we'll speak to them; and to-night I'll force +The wine peep through their scars. Come on, my queen; +There's sap in't yet. The next time I do fight, +I'll make death love me; for I will contend +Even with his pestilent scythe. + +DOMITIUS ENOBARBUS: +Now he'll outstare the lightning. To be furious, +Is to be frighted out of fear; and in that mood +The dove will peck the estridge; and I see still, +A diminution in our captain's brain +Restores his heart: when valour preys on reason, +It eats the sword it fights with. I will seek +Some way to leave him. + +OCTAVIUS CAESAR: +He calls me boy; and chides, as he had power +To beat me out of Egypt; my messenger +He hath whipp'd with rods; dares me to personal combat, +Caesar to Antony: let the old ruffian know +I have many other ways to die; meantime +Laugh at his challenge. + +MECAENAS: +Caesar must think, +When one so great begins to rage, he's hunted +Even to falling. Give him no breath, but now +Make boot of his distraction: never anger +Made good guard for itself. + +OCTAVIUS CAESAR: +Let our best heads +Know, that to-morrow the last of many battles +We mean to fight: within our files there are, +Of those that served Mark Antony but late, +Enough to fetch him in. See it done: +And feast the army; we have store to do't, +And they have earn'd the waste. Poor Antony! + +MARK ANTONY: +He will not fight with me, Domitius. + +DOMITIUS ENOBARBUS: +No. + +MARK ANTONY: +Why should he not? + +DOMITIUS ENOBARBUS: +He thinks, being twenty times of better fortune, +He is twenty men to one. + +MARK ANTONY: +To-morrow, soldier, +By sea and land I'll fight: or I will live, +Or bathe my dying honour in the blood +Shall make it live again. Woo't thou fight well? + +DOMITIUS ENOBARBUS: +I'll strike, and cry 'Take all.' + +MARK ANTONY: +Well said; come on. +Call forth my household servants: let's to-night +Be bounteous at our meal. +Give me thy hand, +Thou hast been rightly honest;--so hast thou;-- +Thou,--and thou,--and thou:--you have served me well, +And kings have been your fellows. + +CLEOPATRA: + +DOMITIUS ENOBARBUS: + +MARK ANTONY: +And thou art honest too. +I wish I could be made so many men, +And all of you clapp'd up together in +An Antony, that I might do you service +So good as you have done. + +All: +The gods forbid! + +MARK ANTONY: +Well, my good fellows, wait on me to-night: +Scant not my cups; and make as much of me +As when mine empire was your fellow too, +And suffer'd my command. + +CLEOPATRA: + +DOMITIUS ENOBARBUS: + +MARK ANTONY: +Tend me to-night; +May be it is the period of your duty: +Haply you shall not see me more; or if, +A mangled shadow: perchance to-morrow +You'll serve another master. I look on you +As one that takes his leave. Mine honest friends, +I turn you not away; but, like a master +Married to your good service, stay till death: +Tend me to-night two hours, I ask no more, +And the gods yield you for't! + +DOMITIUS ENOBARBUS: +What mean you, sir, +To give them this discomfort? Look, they weep; +And I, an ass, am onion-eyed: for shame, +Transform us not to women. + +MARK ANTONY: +Ho, ho, ho! +Now the witch take me, if I meant it thus! +Grace grow where those drops fall! +My hearty friends, +You take me in too dolorous a sense; +For I spake to you for your comfort; did desire you +To burn this night with torches: know, my hearts, +I hope well of to-morrow; and will lead you +Where rather I'll expect victorious life +Than death and honour. Let's to supper, come, +And drown consideration. + +First Soldier: +Brother, good night: to-morrow is the day. + +Second Soldier: +It will determine one way: fare you well. +Heard you of nothing strange about the streets? + +First Soldier: +Nothing. What news? + +Second Soldier: +Belike 'tis but a rumour. Good night to you. + +First Soldier: +Well, sir, good night. + +Second Soldier: +Soldiers, have careful watch. + +Third Soldier: +And you. Good night, good night. + +Fourth Soldier: +Here we: and if to-morrow +Our navy thrive, I have an absolute hope +Our landmen will stand up. + +Third Soldier: +'Tis a brave army, +And full of purpose. + +Fourth Soldier: +Peace! what noise? + +First Soldier: +List, list! + +Second Soldier: +Hark! + +First Soldier: +Music i' the air. + +Third Soldier: +Under the earth. + +Fourth Soldier: +It signs well, does it not? + +Third Soldier: +No. + +First Soldier: +Peace, I say! +What should this mean? + +Second Soldier: +'Tis the god Hercules, whom Antony loved, +Now leaves him. + +First Soldier: +Walk; let's see if other watchmen +Do hear what we do? + +Second Soldier: +How now, masters! + +All: + +First Soldier: +Ay; is't not strange? + +Third Soldier: +Do you hear, masters? do you hear? + +First Soldier: +Follow the noise so far as we have quarter; +Let's see how it will give off. + +All: +Content. 'Tis strange. + +MARK ANTONY: +Eros! mine armour, Eros! + +CLEOPATRA: +Sleep a little. + +MARK ANTONY: +No, my chuck. Eros, come; mine armour, Eros! +Come good fellow, put mine iron on: +If fortune be not ours to-day, it is +Because we brave her: come. + +CLEOPATRA: +Nay, I'll help too. +What's this for? + +MARK ANTONY: +Ah, let be, let be! thou art +The armourer of my heart: false, false; this, this. + +CLEOPATRA: +Sooth, la, I'll help: thus it must be. + +MARK ANTONY: +Well, well; +We shall thrive now. Seest thou, my good fellow? +Go put on thy defences. + +EROS: +Briefly, sir. + +CLEOPATRA: +Is not this buckled well? + +MARK ANTONY: +Rarely, rarely: +He that unbuckles this, till we do please +To daff't for our repose, shall hear a storm. +Thou fumblest, Eros; and my queen's a squire +More tight at this than thou: dispatch. O love, +That thou couldst see my wars to-day, and knew'st +The royal occupation! thou shouldst see +A workman in't. +Good morrow to thee; welcome: +Thou look'st like him that knows a warlike charge: +To business that we love we rise betime, +And go to't with delight. + +Soldier: +A thousand, sir, +Early though't be, have on their riveted trim, +And at the port expect you. + +Captain: +The morn is fair. Good morrow, general. + +All: +Good morrow, general. + +MARK ANTONY: +'Tis well blown, lads: +This morning, like the spirit of a youth +That means to be of note, begins betimes. +So, so; come, give me that: this way; well said. +Fare thee well, dame, whate'er becomes of me: +This is a soldier's kiss: rebukeable +And worthy shameful cheque it were, to stand +On more mechanic compliment; I'll leave thee +Now, like a man of steel. You that will fight, +Follow me close; I'll bring you to't. Adieu. + +CHARMIAN: +Please you, retire to your chamber. + +CLEOPATRA: +Lead me. +He goes forth gallantly. That he and Caesar might +Determine this great war in single fight! +Then Antony,--but now--Well, on. + +Soldier: +The gods make this a happy day to Antony! + +MARK ANTONY: +Would thou and those thy scars had once prevail'd +To make me fight at land! + +Soldier: +Hadst thou done so, +The kings that have revolted, and the soldier +That has this morning left thee, would have still +Follow'd thy heels. + +MARK ANTONY: +Who's gone this morning? + +Soldier: +Who! +One ever near thee: call for Enobarbus, +He shall not hear thee; or from Caesar's camp +Say 'I am none of thine.' + +MARK ANTONY: +What say'st thou? + +Soldier: +Sir, +He is with Caesar. + +EROS: +Sir, his chests and treasure +He has not with him. + +MARK ANTONY: +Is he gone? + +Soldier: +Most certain. + +MARK ANTONY: +Go, Eros, send his treasure after; do it; +Detain no jot, I charge thee: write to him-- +I will subscribe--gentle adieus and greetings; +Say that I wish he never find more cause +To change a master. O, my fortunes have +Corrupted honest men! Dispatch.--Enobarbus! + +OCTAVIUS CAESAR: +Go forth, Agrippa, and begin the fight: +Our will is Antony be took alive; +Make it so known. + +AGRIPPA: +Caesar, I shall. + +OCTAVIUS CAESAR: +The time of universal peace is near: +Prove this a prosperous day, the three-nook'd world +Shall bear the olive freely. + +Messenger: +Antony +Is come into the field. + +OCTAVIUS CAESAR: +Go charge Agrippa +Plant those that have revolted in the van, +That Antony may seem to spend his fury +Upon himself. + +DOMITIUS ENOBARBUS: +Alexas did revolt; and went to Jewry on +Affairs of Antony; there did persuade +Great Herod to incline himself to Caesar, +And leave his master Antony: for this pains +Caesar hath hang'd him. Canidius and the rest +That fell away have entertainment, but +No honourable trust. I have done ill; +Of which I do accuse myself so sorely, +That I will joy no more. + +Soldier: +Enobarbus, Antony +Hath after thee sent all thy treasure, with +His bounty overplus: the messenger +Came on my guard; and at thy tent is now +Unloading of his mules. + +DOMITIUS ENOBARBUS: +I give it you. + +Soldier: +Mock not, Enobarbus. +I tell you true: best you safed the bringer +Out of the host; I must attend mine office, +Or would have done't myself. Your emperor +Continues still a Jove. + +DOMITIUS ENOBARBUS: +I am alone the villain of the earth, +And feel I am so most. O Antony, +Thou mine of bounty, how wouldst thou have paid +My better service, when my turpitude +Thou dost so crown with gold! This blows my heart: +If swift thought break it not, a swifter mean +Shall outstrike thought: but thought will do't, I feel. +I fight against thee! No: I will go seek +Some ditch wherein to die; the foul'st best fits +My latter part of life. + +AGRIPPA: +Retire, we have engaged ourselves too far: +Caesar himself has work, and our oppression +Exceeds what we expected. + +SCARUS: +O my brave emperor, this is fought indeed! +Had we done so at first, we had droven them home +With clouts about their heads. + +MARK ANTONY: +Thou bleed'st apace. + +SCARUS: +I had a wound here that was like a T, +But now 'tis made an H. + +MARK ANTONY: +They do retire. + +SCARUS: +We'll beat 'em into bench-holes: I have yet +Room for six scotches more. + +EROS: +They are beaten, sir, and our advantage serves +For a fair victory. + +SCARUS: +Let us score their backs, +And snatch 'em up, as we take hares, behind: +'Tis sport to maul a runner. + +MARK ANTONY: +I will reward thee +Once for thy spritely comfort, and ten-fold +For thy good valour. Come thee on. + +SCARUS: +I'll halt after. + +MARK ANTONY: +We have beat him to his camp: run one before, +And let the queen know of our gests. To-morrow, +Before the sun shall see 's, we'll spill the blood +That has to-day escaped. I thank you all; +For doughty-handed are you, and have fought +Not as you served the cause, but as 't had been +Each man's like mine; you have shown all Hectors. +Enter the city, clip your wives, your friends, +Tell them your feats; whilst they with joyful tears +Wash the congealment from your wounds, and kiss +The honour'd gashes whole. +Give me thy hand +To this great fairy I'll commend thy acts, +Make her thanks bless thee. +O thou day o' the world, +Chain mine arm'd neck; leap thou, attire and all, +Through proof of harness to my heart, and there +Ride on the pants triumphing! + +CLEOPATRA: +Lord of lords! +O infinite virtue, comest thou smiling from +The world's great snare uncaught? + +MARK ANTONY: +My nightingale, +We have beat them to their beds. What, girl! +though grey +Do something mingle with our younger brown, yet ha' we +A brain that nourishes our nerves, and can +Get goal for goal of youth. Behold this man; +Commend unto his lips thy favouring hand: +Kiss it, my warrior: he hath fought to-day +As if a god, in hate of mankind, had +Destroy'd in such a shape. + +CLEOPATRA: +I'll give thee, friend, +An armour all of gold; it was a king's. + +MARK ANTONY: +He has deserved it, were it carbuncled +Like holy Phoebus' car. Give me thy hand: +Through Alexandria make a jolly march; +Bear our hack'd targets like the men that owe them: +Had our great palace the capacity +To camp this host, we all would sup together, +And drink carouses to the next day's fate, +Which promises royal peril. Trumpeters, +With brazen din blast you the city's ear; +Make mingle with rattling tabourines; +That heaven and earth may strike their sounds together, +Applauding our approach. + +First Soldier: +If we be not relieved within this hour, +We must return to the court of guard: the night +Is shiny; and they say we shall embattle +By the second hour i' the morn. + +Second Soldier: +This last day was +A shrewd one to's. + +DOMITIUS ENOBARBUS: +O, bear me witness, night,-- + +Third Soldier: +What man is this? + +Second Soldier: +Stand close, and list him. + +DOMITIUS ENOBARBUS: +Be witness to me, O thou blessed moon, +When men revolted shall upon record +Bear hateful memory, poor Enobarbus did +Before thy face repent! + +First Soldier: +Enobarbus! + +Third Soldier: +Peace! +Hark further. + +DOMITIUS ENOBARBUS: +O sovereign mistress of true melancholy, +The poisonous damp of night disponge upon me, +That life, a very rebel to my will, +May hang no longer on me: throw my heart +Against the flint and hardness of my fault: +Which, being dried with grief, will break to powder, +And finish all foul thoughts. O Antony, +Nobler than my revolt is infamous, +Forgive me in thine own particular; +But let the world rank me in register +A master-leaver and a fugitive: +O Antony! O Antony! + +Second Soldier: +Let's speak To him. + +First Soldier: +Let's hear him, for the things he speaks +May concern Caesar. + +Third Soldier: +Let's do so. But he sleeps. + +First Soldier: +Swoons rather; for so bad a prayer as his +Was never yet for sleep. + +Second Soldier: +Go we to him. + +Third Soldier: +Awake, sir, awake; speak to us. + +Second Soldier: +Hear you, sir? + +First Soldier: +The hand of death hath raught him. +Hark! the drums +Demurely wake the sleepers. Let us bear him +To the court of guard; he is of note: our hour +Is fully out. + +Third Soldier: +Come on, then; +He may recover yet. + +MARK ANTONY: +Their preparation is to-day by sea; +We please them not by land. + +SCARUS: +For both, my lord. + +MARK ANTONY: +I would they'ld fight i' the fire or i' the air; +We'ld fight there too. But this it is; our foot +Upon the hills adjoining to the city +Shall stay with us: order for sea is given; +They have put forth the haven +Where their appointment we may best discover, +And look on their endeavour. + +OCTAVIUS CAESAR: +But being charged, we will be still by land, +Which, as I take't, we shall; for his best force +Is forth to man his galleys. To the vales, +And hold our best advantage. + +MARK ANTONY: +Yet they are not join'd: where yond pine +does stand, +I shall discover all: I'll bring thee word +Straight, how 'tis like to go. + +SCARUS: +Swallows have built +In Cleopatra's sails their nests: the augurers +Say they know not, they cannot tell; look grimly, +And dare not speak their knowledge. Antony +Is valiant, and dejected; and, by starts, +His fretted fortunes give him hope, and fear, +Of what he has, and has not. + +MARK ANTONY: +All is lost; +This foul Egyptian hath betrayed me: +My fleet hath yielded to the foe; and yonder +They cast their caps up and carouse together +Like friends long lost. Triple-turn'd whore! +'tis thou +Hast sold me to this novice; and my heart +Makes only wars on thee. Bid them all fly; +For when I am revenged upon my charm, +I have done all. Bid them all fly; begone. +O sun, thy uprise shall I see no more: +Fortune and Antony part here; even here +Do we shake hands. All come to this? The hearts +That spaniel'd me at heels, to whom I gave +Their wishes, do discandy, melt their sweets +On blossoming Caesar; and this pine is bark'd, +That overtopp'd them all. Betray'd I am: +O this false soul of Egypt! this grave charm,-- +Whose eye beck'd forth my wars, and call'd them home; +Whose bosom was my crownet, my chief end,-- +Like a right gipsy, hath, at fast and loose, +Beguiled me to the very heart of loss. +What, Eros, Eros! +Ah, thou spell! Avaunt! + +CLEOPATRA: +Why is my lord enraged against his love? + +MARK ANTONY: +Vanish, or I shall give thee thy deserving, +And blemish Caesar's triumph. Let him take thee, +And hoist thee up to the shouting plebeians: +Follow his chariot, like the greatest spot +Of all thy sex; most monster-like, be shown +For poor'st diminutives, for doits; and let +Patient Octavia plough thy visage up +With her prepared nails. +'Tis well thou'rt gone, +If it be well to live; but better 'twere +Thou fell'st into my fury, for one death +Might have prevented many. Eros, ho! +The shirt of Nessus is upon me: teach me, +Alcides, thou mine ancestor, thy rage: +Let me lodge Lichas on the horns o' the moon; +And with those hands, that grasp'd the heaviest club, +Subdue my worthiest self. The witch shall die: +To the young Roman boy she hath sold me, and I fall +Under this plot; she dies for't. Eros, ho! + +CLEOPATRA: +Help me, my women! O, he is more mad +Than Telamon for his shield; the boar of Thessaly +Was never so emboss'd. + +CHARMIAN: +To the monument! +There lock yourself, and send him word you are dead. +The soul and body rive not more in parting +Than greatness going off. + +CLEOPATRA: +To the monument! +Mardian, go tell him I have slain myself; +Say, that the last I spoke was 'Antony,' +And word it, prithee, piteously: hence, Mardian, +And bring me how he takes my death. +To the monument! + +MARK ANTONY: +Eros, thou yet behold'st me? + +EROS: +Ay, noble lord. + +MARK ANTONY: +Sometimes we see a cloud that's dragonish; +A vapour sometime like a bear or lion, +A tower'd citadel, a pendent rock, +A forked mountain, or blue promontory +With trees upon't, that nod unto the world, +And mock our eyes with air: thou hast seen +these signs; +They are black vesper's pageants. + +EROS: +Ay, my lord, + +MARK ANTONY: +That which is now a horse, even with a thought +The rack dislimns, and makes it indistinct, +As water is in water. + +EROS: +It does, my lord. + +MARK ANTONY: +My good knave Eros, now thy captain is +Even such a body: here I am Antony: +Yet cannot hold this visible shape, my knave. +I made these wars for Egypt: and the queen,-- +Whose heart I thought I had, for she had mine; +Which whilst it was mine had annex'd unto't +A million more, now lost,--she, Eros, has +Pack'd cards with Caesar, and false-play'd my glory +Unto an enemy's triumph. +Nay, weep not, gentle Eros; there is left us +Ourselves to end ourselves. +O! thy vile lady! +She has robb'd me of my sword. + +MARDIAN: +No, Antony; +My mistress loved thee, and her fortunes mingled +With thine entirely. + +MARK ANTONY: +Hence, saucy eunuch; peace! +She hath betray'd me and shall die the death. + +MARDIAN: +Death of one person can be paid but once, +And that she has discharged: what thou wouldst do +Is done unto thy hand: the last she spake +Was 'Antony! most noble Antony!' +Then in the midst a tearing groan did break +The name of Antony; it was divided +Between her heart and lips: she render'd life, +Thy name so buried in her. + +MARK ANTONY: +Dead, then? + +MARDIAN: +Dead. + +MARK ANTONY: +Unarm, Eros; the long day's task is done, +And we must sleep. +That thou depart'st hence safe, +Does pay thy labour richly; go. +Off, pluck off: +The seven-fold shield of Ajax cannot keep +The battery from my heart. O, cleave, my sides! +Heart, once be stronger than thy continent, +Crack thy frail case! Apace, Eros, apace. +No more a soldier: bruised pieces, go; +You have been nobly borne. From me awhile. +I will o'ertake thee, Cleopatra, and +Weep for my pardon. So it must be, for now +All length is torture: since the torch is out, +Lie down, and stray no farther: now all labour +Mars what it does; yea, very force entangles +Itself with strength: seal then, and all is done. +Eros!--I come, my queen:--Eros!--Stay for me: +Where souls do couch on flowers, we'll hand in hand, +And with our sprightly port make the ghosts gaze: +Dido and her AEneas shall want troops, +And all the haunt be ours. Come, Eros, Eros! + +EROS: +What would my lord? + +MARK ANTONY: +Since Cleopatra died, +I have lived in such dishonour, that the gods +Detest my baseness. I, that with my sword +Quarter'd the world, and o'er green Neptune's back +With ships made cities, condemn myself to lack +The courage of a woman; less noble mind +Than she which by her death our Caesar tells +'I am conqueror of myself.' Thou art sworn, Eros, +That, when the exigent should come, which now +Is come indeed, when I should see behind me +The inevitable prosecution of +Disgrace and horror, that, on my command, +Thou then wouldst kill me: do't; the time is come: +Thou strikest not me, 'tis Caesar thou defeat'st. +Put colour in thy cheek. + +EROS: +The gods withhold me! +Shall I do that which all the Parthian darts, +Though enemy, lost aim, and could not? + +MARK ANTONY: +Eros, +Wouldst thou be window'd in great Rome and see +Thy master thus with pleach'd arms, bending down +His corrigible neck, his face subdued +To penetrative shame, whilst the wheel'd seat +Of fortunate Caesar, drawn before him, branded +His baseness that ensued? + +EROS: +I would not see't. + +MARK ANTONY: +Come, then; for with a wound I must be cured. +Draw that thy honest sword, which thou hast worn +Most useful for thy country. + +EROS: +O, sir, pardon me! + +MARK ANTONY: +When I did make thee free, sworest thou not then +To do this when I bade thee? Do it at once; +Or thy precedent services are all +But accidents unpurposed. Draw, and come. + +EROS: +Turn from me, then, that noble countenance, +Wherein the worship of the whole world lies. + +MARK ANTONY: +Lo thee! + +EROS: +My sword is drawn. + +MARK ANTONY: +Then let it do at once +The thing why thou hast drawn it. + +EROS: +My dear master, +My captain, and my emperor, let me say, +Before I strike this bloody stroke, farewell. + +MARK ANTONY: +'Tis said, man; and farewell. + +EROS: +Farewell, great chief. Shall I strike now? + +MARK ANTONY: +Now, Eros. + +EROS: +Why, there then: thus I do escape the sorrow +Of Antony's death. + +MARK ANTONY: +Thrice-nobler than myself! +Thou teachest me, O valiant Eros, what +I should, and thou couldst not. My queen and Eros +Have by their brave instruction got upon me +A nobleness in record: but I will be +A bridegroom in my death, and run into't +As to a lover's bed. Come, then; and, Eros, +Thy master dies thy scholar: to do thus +I learn'd of thee. How! not dead? not dead? +The guard, ho! O, dispatch me! + +First Guard: +What's the noise? + +MARK ANTONY: +I have done my work in, friends: O, make an end +Of what I have begun. + +Second Guard: +The star is fall'n. + +First Guard: +And time is at his period. + +All: +Alas, and woe! + +MARK ANTONY: +Let him that loves me strike me dead. + +First Guard: +Not I. + +Second Guard: +Nor I. + +Third Guard: +Nor any one. + +DERCETAS: +Thy death and fortunes bid thy followers fly. +This sword but shown to Caesar, with this tidings, +Shall enter me with him. + +DIOMEDES: +Where's Antony? + +DERCETAS: +There, Diomed there. + +DIOMEDES: +Lives he? +Wilt thou not answer, man? + +MARK ANTONY: +Art thou there, Diomed? Draw thy sword, and give me +Sufficing strokes for death. + +DIOMEDES: +Most absolute lord, +My mistress Cleopatra sent me to thee. + +MARK ANTONY: +When did she send thee? + +DIOMEDES: +Now, my lord. + +MARK ANTONY: +Where is she? + +DIOMEDES: +Lock'd in her monument. She had a prophesying fear +Of what hath come to pass: for when she saw-- +Which never shall be found--you did suspect +She had disposed with Caesar, and that your rage +Would not be purged, she sent you word she was dead; +But, fearing since how it might work, hath sent +Me to proclaim the truth; and I am come, +I dread, too late. + +MARK ANTONY: +Too late, good Diomed: call my guard, I prithee. + +DIOMEDES: +What, ho, the emperor's guard! The guard, what, ho! +Come, your lord calls! + +MARK ANTONY: +Bear me, good friends, where Cleopatra bides; +'Tis the last service that I shall command you. + +First Guard: +Woe, woe are we, sir, you may not live to wear +All your true followers out. + +All: +Most heavy day! + +MARK ANTONY: +Nay, good my fellows, do not please sharp fate +To grace it with your sorrows: bid that welcome +Which comes to punish us, and we punish it +Seeming to bear it lightly. Take me up: +I have led you oft: carry me now, good friends, +And have my thanks for all. + +CLEOPATRA: +O Charmian, I will never go from hence. + +CHARMIAN: +Be comforted, dear madam. + +CLEOPATRA: +No, I will not: +All strange and terrible events are welcome, +But comforts we despise; our size of sorrow, +Proportion'd to our cause, must be as great +As that which makes it. +How now! is he dead? + +DIOMEDES: +His death's upon him, but not dead. +Look out o' the other side your monument; +His guard have brought him thither. + +CLEOPATRA: +O sun, +Burn the great sphere thou movest in! +darkling stand +The varying shore o' the world. O Antony, +Antony, Antony! Help, Charmian, help, Iras, help; +Help, friends below; let's draw him hither. + +MARK ANTONY: +Peace! +Not Caesar's valour hath o'erthrown Antony, +But Antony's hath triumph'd on itself. + +CLEOPATRA: +So it should be, that none but Antony +Should conquer Antony; but woe 'tis so! + +MARK ANTONY: +I am dying, Egypt, dying; only +I here importune death awhile, until +Of many thousand kisses the poor last +I lay up thy lips. + +CLEOPATRA: +I dare not, dear,-- +Dear my lord, pardon,--I dare not, +Lest I be taken: not the imperious show +Of the full-fortuned Caesar ever shall +Be brooch'd with me; if knife, drugs, +serpents, have +Edge, sting, or operation, I am safe: +Your wife Octavia, with her modest eyes +And still conclusion, shall acquire no honour +Demuring upon me. But come, come, Antony,-- +Help me, my women,--we must draw thee up: +Assist, good friends. + +MARK ANTONY: +O, quick, or I am gone. + +CLEOPATRA: +Here's sport indeed! How heavy weighs my lord! +Our strength is all gone into heaviness, +That makes the weight: had I great Juno's power, +The strong-wing'd Mercury should fetch thee up, +And set thee by Jove's side. Yet come a little,-- +Wishes were ever fools,--O, come, come, come; +And welcome, welcome! die where thou hast lived: +Quicken with kissing: had my lips that power, +Thus would I wear them out. + +All: +A heavy sight! + +MARK ANTONY: +I am dying, Egypt, dying: +Give me some wine, and let me speak a little. + +CLEOPATRA: +No, let me speak; and let me rail so high, +That the false housewife Fortune break her wheel, +Provoked by my offence. + +MARK ANTONY: +One word, sweet queen: +Of Caesar seek your honour, with your safety. O! + +CLEOPATRA: +They do not go together. + +MARK ANTONY: +Gentle, hear me: +None about Caesar trust but Proculeius. + +CLEOPATRA: +My resolution and my hands I'll trust; +None about Caesar. + +MARK ANTONY: +The miserable change now at my end +Lament nor sorrow at; but please your thoughts +In feeding them with those my former fortunes +Wherein I lived, the greatest prince o' the world, +The noblest; and do now not basely die, +Not cowardly put off my helmet to +My countryman,--a Roman by a Roman +Valiantly vanquish'd. Now my spirit is going; +I can no more. + +CLEOPATRA: +Noblest of men, woo't die? +Hast thou no care of me? shall I abide +In this dull world, which in thy absence is +No better than a sty? O, see, my women, +The crown o' the earth doth melt. My lord! +O, wither'd is the garland of the war, +The soldier's pole is fall'n: young boys and girls +Are level now with men; the odds is gone, +And there is nothing left remarkable +Beneath the visiting moon. + +CHARMIAN: +O, quietness, lady! + +IRAS: +She is dead too, our sovereign. + +CHARMIAN: +Lady! + +IRAS: +Madam! + +CHARMIAN: +O madam, madam, madam! + +IRAS: +Royal Egypt, Empress! + +CHARMIAN: +Peace, peace, Iras! + +CLEOPATRA: +No more, but e'en a woman, and commanded +By such poor passion as the maid that milks +And does the meanest chares. It were for me +To throw my sceptre at the injurious gods; +To tell them that this world did equal theirs +Till they had stol'n our jewel. All's but naught; +Patience is scottish, and impatience does +Become a dog that's mad: then is it sin +To rush into the secret house of death, +Ere death dare come to us? How do you, women? +What, what! good cheer! Why, how now, Charmian! +My noble girls! Ah, women, women, look, +Our lamp is spent, it's out! Good sirs, take heart: +We'll bury him; and then, what's brave, +what's noble, +Let's do it after the high Roman fashion, +And make death proud to take us. Come, away: +This case of that huge spirit now is cold: +Ah, women, women! come; we have no friend +But resolution, and the briefest end. + +OCTAVIUS CAESAR: +Go to him, Dolabella, bid him yield; +Being so frustrate, tell him he mocks +The pauses that he makes. + +DOLABELLA: +Caesar, I shall. + +OCTAVIUS CAESAR: +Wherefore is that? and what art thou that darest +Appear thus to us? + +DERCETAS: +I am call'd Dercetas; +Mark Antony I served, who best was worthy +Best to be served: whilst he stood up and spoke, +He was my master; and I wore my life +To spend upon his haters. If thou please +To take me to thee, as I was to him +I'll be to Caesar; if thou pleasest not, +I yield thee up my life. + +OCTAVIUS CAESAR: +What is't thou say'st? + +DERCETAS: +I say, O Caesar, Antony is dead. + +OCTAVIUS CAESAR: +The breaking of so great a thing should make +A greater crack: the round world +Should have shook lions into civil streets, +And citizens to their dens: the death of Antony +Is not a single doom; in the name lay +A moiety of the world. + +DERCETAS: +He is dead, Caesar: +Not by a public minister of justice, +Nor by a hired knife; but that self hand, +Which writ his honour in the acts it did, +Hath, with the courage which the heart did lend it, +Splitted the heart. This is his sword; +I robb'd his wound of it; behold it stain'd +With his most noble blood. + +OCTAVIUS CAESAR: +Look you sad, friends? +The gods rebuke me, but it is tidings +To wash the eyes of kings. + +AGRIPPA: +And strange it is, +That nature must compel us to lament +Our most persisted deeds. + +MECAENAS: +His taints and honours +Waged equal with him. + +AGRIPPA: +A rarer spirit never +Did steer humanity: but you, gods, will give us +Some faults to make us men. Caesar is touch'd. + +MECAENAS: +When such a spacious mirror's set before him, +He needs must see himself. + +OCTAVIUS CAESAR: +O Antony! +I have follow'd thee to this; but we do lance +Diseases in our bodies: I must perforce +Have shown to thee such a declining day, +Or look on thine; we could not stall together +In the whole world: but yet let me lament, +With tears as sovereign as the blood of hearts, +That thou, my brother, my competitor +In top of all design, my mate in empire, +Friend and companion in the front of war, +The arm of mine own body, and the heart +Where mine his thoughts did kindle,--that our stars, +Unreconciliable, should divide +Our equalness to this. Hear me, good friends-- +But I will tell you at some meeter season: +The business of this man looks out of him; +We'll hear him what he says. Whence are you? + +Egyptian: +A poor Egyptian yet. The queen my mistress, +Confined in all she has, her monument, +Of thy intents desires instruction, +That she preparedly may frame herself +To the way she's forced to. + +OCTAVIUS CAESAR: +Bid her have good heart: +She soon shall know of us, by some of ours, +How honourable and how kindly we +Determine for her; for Caesar cannot live +To be ungentle. + +Egyptian: +So the gods preserve thee! + +OCTAVIUS CAESAR: +Come hither, Proculeius. Go and say, +We purpose her no shame: give her what comforts +The quality of her passion shall require, +Lest, in her greatness, by some mortal stroke +She do defeat us; for her life in Rome +Would be eternal in our triumph: go, +And with your speediest bring us what she says, +And how you find of her. + +PROCULEIUS: +Caesar, I shall. + +OCTAVIUS CAESAR: +Gallus, go you along. +Where's Dolabella, +To second Proculeius? + +All: +Dolabella! + +OCTAVIUS CAESAR: +Let him alone, for I remember now +How he's employ'd: he shall in time be ready. +Go with me to my tent; where you shall see +How hardly I was drawn into this war; +How calm and gentle I proceeded still +In all my writings: go with me, and see +What I can show in this. + +CLEOPATRA: +My desolation does begin to make +A better life. 'Tis paltry to be Caesar; +Not being Fortune, he's but Fortune's knave, +A minister of her will: and it is great +To do that thing that ends all other deeds; +Which shackles accidents and bolts up change; +Which sleeps, and never palates more the dug, +The beggar's nurse and Caesar's. + +PROCULEIUS: +Caesar sends greeting to the Queen of Egypt; +And bids thee study on what fair demands +Thou mean'st to have him grant thee. + +CLEOPATRA: +What's thy name? + +PROCULEIUS: +My name is Proculeius. + +CLEOPATRA: +Antony +Did tell me of you, bade me trust you; but +I do not greatly care to be deceived, +That have no use for trusting. If your master +Would have a queen his beggar, you must tell him, +That majesty, to keep decorum, must +No less beg than a kingdom: if he please +To give me conquer'd Egypt for my son, +He gives me so much of mine own, as I +Will kneel to him with thanks. + +PROCULEIUS: +Be of good cheer; +You're fall'n into a princely hand, fear nothing: +Make your full reference freely to my lord, +Who is so full of grace, that it flows over +On all that need: let me report to him +Your sweet dependency; and you shall find +A conqueror that will pray in aid for kindness, +Where he for grace is kneel'd to. + +CLEOPATRA: +Pray you, tell him +I am his fortune's vassal, and I send him +The greatness he has got. I hourly learn +A doctrine of obedience; and would gladly +Look him i' the face. + +PROCULEIUS: +This I'll report, dear lady. +Have comfort, for I know your plight is pitied +Of him that caused it. + +GALLUS: +You see how easily she may be surprised: +Guard her till Caesar come. + +IRAS: +Royal queen! + +CHARMIAN: +O Cleopatra! thou art taken, queen: + +CLEOPATRA: +Quick, quick, good hands. + +PROCULEIUS: +Hold, worthy lady, hold: +Do not yourself such wrong, who are in this +Relieved, but not betray'd. + +CLEOPATRA: +What, of death too, +That rids our dogs of languish? + +PROCULEIUS: +Cleopatra, +Do not abuse my master's bounty by +The undoing of yourself: let the world see +His nobleness well acted, which your death +Will never let come forth. + +CLEOPATRA: +Where art thou, death? +Come hither, come! come, come, and take a queen +Worthy many babes and beggars! + +PROCULEIUS: +O, temperance, lady! + +CLEOPATRA: +Sir, I will eat no meat, I'll not drink, sir; +If idle talk will once be necessary, +I'll not sleep neither: this mortal house I'll ruin, +Do Caesar what he can. Know, sir, that I +Will not wait pinion'd at your master's court; +Nor once be chastised with the sober eye +Of dull Octavia. Shall they hoist me up +And show me to the shouting varletry +Of censuring Rome? Rather a ditch in Egypt +Be gentle grave unto me! rather on Nilus' mud +Lay me stark naked, and let the water-flies +Blow me into abhorring! rather make +My country's high pyramides my gibbet, +And hang me up in chains! + +PROCULEIUS: +You do extend +These thoughts of horror further than you shall +Find cause in Caesar. + +DOLABELLA: +Proculeius, +What thou hast done thy master Caesar knows, +And he hath sent for thee: for the queen, +I'll take her to my guard. + +PROCULEIUS: +So, Dolabella, +It shall content me best: be gentle to her. +To Caesar I will speak what you shall please, +If you'll employ me to him. + +CLEOPATRA: +Say, I would die. + +DOLABELLA: +Most noble empress, you have heard of me? + +CLEOPATRA: +I cannot tell. + +DOLABELLA: +Assuredly you know me. + +CLEOPATRA: +No matter, sir, what I have heard or known. +You laugh when boys or women tell their dreams; +Is't not your trick? + +DOLABELLA: +I understand not, madam. + +CLEOPATRA: +I dream'd there was an Emperor Antony: +O, such another sleep, that I might see +But such another man! + +DOLABELLA: +If it might please ye,-- + +CLEOPATRA: +His face was as the heavens; and therein stuck +A sun and moon, which kept their course, +and lighted +The little O, the earth. + +DOLABELLA: +Most sovereign creature,-- + +CLEOPATRA: +His legs bestrid the ocean: his rear'd arm +Crested the world: his voice was propertied +As all the tuned spheres, and that to friends; +But when he meant to quail and shake the orb, +He was as rattling thunder. For his bounty, +There was no winter in't; an autumn 'twas +That grew the more by reaping: his delights +Were dolphin-like; they show'd his back above +The element they lived in: in his livery +Walk'd crowns and crownets; realms and islands were +As plates dropp'd from his pocket. + +DOLABELLA: +Cleopatra! + +CLEOPATRA: +Think you there was, or might be, such a man +As this I dream'd of? + +DOLABELLA: +Gentle madam, no. + +CLEOPATRA: +You lie, up to the hearing of the gods. +But, if there be, or ever were, one such, +It's past the size of dreaming: nature wants stuff +To vie strange forms with fancy; yet, to imagine +And Antony, were nature's piece 'gainst fancy, +Condemning shadows quite. + +DOLABELLA: +Hear me, good madam. +Your loss is as yourself, great; and you bear it +As answering to the weight: would I might never +O'ertake pursued success, but I do feel, +By the rebound of yours, a grief that smites +My very heart at root. + +CLEOPATRA: +I thank you, sir, +Know you what Caesar means to do with me? + +DOLABELLA: +I am loath to tell you what I would you knew. + +CLEOPATRA: +Nay, pray you, sir,-- + +DOLABELLA: +Though he be honourable,-- + +CLEOPATRA: +He'll lead me, then, in triumph? + +DOLABELLA: +Madam, he will; I know't. + +OCTAVIUS CAESAR: +Which is the Queen of Egypt? + +DOLABELLA: +It is the emperor, madam. + +OCTAVIUS CAESAR: +Arise, you shall not kneel: +I pray you, rise; rise, Egypt. + +CLEOPATRA: +Sir, the gods +Will have it thus; my master and my lord +I must obey. + +OCTAVIUS CAESAR: +Take to you no hard thoughts: +The record of what injuries you did us, +Though written in our flesh, we shall remember +As things but done by chance. + +CLEOPATRA: +Sole sir o' the world, +I cannot project mine own cause so well +To make it clear; but do confess I have +Been laden with like frailties which before +Have often shamed our sex. + +OCTAVIUS CAESAR: +Cleopatra, know, +We will extenuate rather than enforce: +If you apply yourself to our intents, +Which towards you are most gentle, you shall find +A benefit in this change; but if you seek +To lay on me a cruelty, by taking +Antony's course, you shall bereave yourself +Of my good purposes, and put your children +To that destruction which I'll guard them from, +If thereon you rely. I'll take my leave. + +CLEOPATRA: +And may, through all the world: 'tis yours; and we, +Your scutcheons and your signs of conquest, shall +Hang in what place you please. Here, my good lord. + +OCTAVIUS CAESAR: +You shall advise me in all for Cleopatra. + +CLEOPATRA: +This is the brief of money, plate, and jewels, +I am possess'd of: 'tis exactly valued; +Not petty things admitted. Where's Seleucus? + +SELEUCUS: +Here, madam. + +CLEOPATRA: +This is my treasurer: let him speak, my lord, +Upon his peril, that I have reserved +To myself nothing. Speak the truth, Seleucus. + +SELEUCUS: +Madam, +I had rather seal my lips, than, to my peril, +Speak that which is not. + +CLEOPATRA: +What have I kept back? + +SELEUCUS: +Enough to purchase what you have made known. + +OCTAVIUS CAESAR: +Nay, blush not, Cleopatra; I approve +Your wisdom in the deed. + +CLEOPATRA: +See, Caesar! O, behold, +How pomp is follow'd! mine will now be yours; +And, should we shift estates, yours would be mine. +The ingratitude of this Seleucus does +Even make me wild: O slave, of no more trust +Than love that's hired! What, goest thou back? thou shalt +Go back, I warrant thee; but I'll catch thine eyes, +Though they had wings: slave, soulless villain, dog! +O rarely base! + +OCTAVIUS CAESAR: +Good queen, let us entreat you. + +CLEOPATRA: +O Caesar, what a wounding shame is this, +That thou, vouchsafing here to visit me, +Doing the honour of thy lordliness +To one so meek, that mine own servant should +Parcel the sum of my disgraces by +Addition of his envy! Say, good Caesar, +That I some lady trifles have reserved, +Immoment toys, things of such dignity +As we greet modern friends withal; and say, +Some nobler token I have kept apart +For Livia and Octavia, to induce +Their mediation; must I be unfolded +With one that I have bred? The gods! it smites me +Beneath the fall I have. +Prithee, go hence; +Or I shall show the cinders of my spirits +Through the ashes of my chance: wert thou a man, +Thou wouldst have mercy on me. + +OCTAVIUS CAESAR: +Forbear, Seleucus. + +CLEOPATRA: +Be it known, that we, the greatest, are misthought +For things that others do; and, when we fall, +We answer others' merits in our name, +Are therefore to be pitied. + +OCTAVIUS CAESAR: +Cleopatra, +Not what you have reserved, nor what acknowledged, +Put we i' the roll of conquest: still be't yours, +Bestow it at your pleasure; and believe, +Caesar's no merchant, to make prize with you +Of things that merchants sold. Therefore be cheer'd; +Make not your thoughts your prisons: no, dear queen; +For we intend so to dispose you as +Yourself shall give us counsel. Feed, and sleep: +Our care and pity is so much upon you, +That we remain your friend; and so, adieu. + +CLEOPATRA: +My master, and my lord! + +OCTAVIUS CAESAR: +Not so. Adieu. + +CLEOPATRA: +He words me, girls, he words me, that I should not +Be noble to myself: but, hark thee, Charmian. + +IRAS: +Finish, good lady; the bright day is done, +And we are for the dark. + +CLEOPATRA: +Hie thee again: +I have spoke already, and it is provided; +Go put it to the haste. + +CHARMIAN: +Madam, I will. + +DOLABELLA: +Where is the queen? + +CHARMIAN: +Behold, sir. + +CLEOPATRA: +Dolabella! + +DOLABELLA: +Madam, as thereto sworn by your command, +Which my love makes religion to obey, +I tell you this: Caesar through Syria +Intends his journey; and within three days +You with your children will he send before: +Make your best use of this: I have perform'd +Your pleasure and my promise. + +CLEOPATRA: +Dolabella, +I shall remain your debtor. + +DOLABELLA: +I your servant, +Adieu, good queen; I must attend on Caesar. + +CLEOPATRA: +Farewell, and thanks. +Now, Iras, what think'st thou? +Thou, an Egyptian puppet, shalt be shown +In Rome, as well as I mechanic slaves +With greasy aprons, rules, and hammers, shall +Uplift us to the view; in their thick breaths, +Rank of gross diet, shall be enclouded, +And forced to drink their vapour. + +IRAS: +The gods forbid! + +CLEOPATRA: +Nay, 'tis most certain, Iras: saucy lictors +Will catch at us, like strumpets; and scald rhymers +Ballad us out o' tune: the quick comedians +Extemporally will stage us, and present +Our Alexandrian revels; Antony +Shall be brought drunken forth, and I shall see +Some squeaking Cleopatra boy my greatness +I' the posture of a whore. + +IRAS: +O the good gods! + +CLEOPATRA: +Nay, that's certain. + +IRAS: +I'll never see 't; for, I am sure, my nails +Are stronger than mine eyes. + +CLEOPATRA: +Why, that's the way +To fool their preparation, and to conquer +Their most absurd intents. +Now, Charmian! +Show me, my women, like a queen: go fetch +My best attires: I am again for Cydnus, +To meet Mark Antony: sirrah Iras, go. +Now, noble Charmian, we'll dispatch indeed; +And, when thou hast done this chare, I'll give thee leave +To play till doomsday. Bring our crown and all. +Wherefore's this noise? + +Guard: +Here is a rural fellow +That will not be denied your highness presence: +He brings you figs. + +CLEOPATRA: +Let him come in. +What poor an instrument +May do a noble deed! he brings me liberty. +My resolution's placed, and I have nothing +Of woman in me: now from head to foot +I am marble-constant; now the fleeting moon +No planet is of mine. + +Guard: +This is the man. + +CLEOPATRA: +Avoid, and leave him. +Hast thou the pretty worm of Nilus there, +That kills and pains not? + +Clown: +Truly, I have him: but I would not be the party +that should desire you to touch him, for his biting +is immortal; those that do die of it do seldom or +never recover. + +CLEOPATRA: +Rememberest thou any that have died on't? + +Clown: +Very many, men and women too. I heard of one of +them no longer than yesterday: a very honest woman, +but something given to lie; as a woman should not +do, but in the way of honesty: how she died of the +biting of it, what pain she felt: truly, she makes +a very good report o' the worm; but he that will +believe all that they say, shall never be saved by +half that they do: but this is most fallible, the +worm's an odd worm. + +CLEOPATRA: +Get thee hence; farewell. + +Clown: +I wish you all joy of the worm. + +CLEOPATRA: +Farewell. + +Clown: +You must think this, look you, that the worm will +do his kind. + +CLEOPATRA: +Ay, ay; farewell. + +Clown: +Look you, the worm is not to be trusted but in the +keeping of wise people; for, indeed, there is no +goodness in worm. + +CLEOPATRA: +Take thou no care; it shall be heeded. + +Clown: +Very good. Give it nothing, I pray you, for it is +not worth the feeding. + +CLEOPATRA: +Will it eat me? + +Clown: +You must not think I am so simple but I know the +devil himself will not eat a woman: I know that a +woman is a dish for the gods, if the devil dress her +not. But, truly, these same whoreson devils do the +gods great harm in their women; for in every ten +that they make, the devils mar five. + +CLEOPATRA: +Well, get thee gone; farewell. + +Clown: +Yes, forsooth: I wish you joy o' the worm. + +CLEOPATRA: +Give me my robe, put on my crown; I have +Immortal longings in me: now no more +The juice of Egypt's grape shall moist this lip: +Yare, yare, good Iras; quick. Methinks I hear +Antony call; I see him rouse himself +To praise my noble act; I hear him mock +The luck of Caesar, which the gods give men +To excuse their after wrath: husband, I come: +Now to that name my courage prove my title! +I am fire and air; my other elements +I give to baser life. So; have you done? +Come then, and take the last warmth of my lips. +Farewell, kind Charmian; Iras, long farewell. +Have I the aspic in my lips? Dost fall? +If thou and nature can so gently part, +The stroke of death is as a lover's pinch, +Which hurts, and is desired. Dost thou lie still? +If thus thou vanishest, thou tell'st the world +It is not worth leave-taking. + +CHARMIAN: +Dissolve, thick cloud, and rain; that I may say, +The gods themselves do weep! + +CLEOPATRA: +This proves me base: +If she first meet the curled Antony, +He'll make demand of her, and spend that kiss +Which is my heaven to have. Come, thou +mortal wretch, +With thy sharp teeth this knot intrinsicate +Of life at once untie: poor venomous fool +Be angry, and dispatch. O, couldst thou speak, +That I might hear thee call great Caesar ass +Unpolicied! + +CHARMIAN: +O eastern star! + +CLEOPATRA: +Peace, peace! +Dost thou not see my baby at my breast, +That sucks the nurse asleep? + +CHARMIAN: +O, break! O, break! + +CLEOPATRA: +As sweet as balm, as soft as air, as gentle,-- +O Antony!--Nay, I will take thee too. +What should I stay-- + +CHARMIAN: +In this vile world? So, fare thee well. +Now boast thee, death, in thy possession lies +A lass unparallel'd. Downy windows, close; +And golden Phoebus never be beheld +Of eyes again so royal! Your crown's awry; +I'll mend it, and then play. + +First Guard: +Where is the queen? + +CHARMIAN: +Speak softly, wake her not. + +First Guard: +Caesar hath sent-- + +CHARMIAN: +Too slow a messenger. +O, come apace, dispatch! I partly feel thee. + +First Guard: +Approach, ho! All's not well: Caesar's beguiled. + +Second Guard: +There's Dolabella sent from Caesar; call him. + +First Guard: +What work is here! Charmian, is this well done? + +CHARMIAN: +It is well done, and fitting for a princess +Descended of so many royal kings. +Ah, soldier! + +DOLABELLA: +How goes it here? + +Second Guard: +All dead. + +DOLABELLA: +Caesar, thy thoughts +Touch their effects in this: thyself art coming +To see perform'd the dreaded act which thou +So sought'st to hinder. + +DOLABELLA: +O sir, you are too sure an augurer; +That you did fear is done. + +OCTAVIUS CAESAR: +Bravest at the last, +She levell'd at our purposes, and, being royal, +Took her own way. The manner of their deaths? +I do not see them bleed. + +DOLABELLA: +Who was last with them? + +First Guard: +A simple countryman, that brought her figs: +This was his basket. + +OCTAVIUS CAESAR: +Poison'd, then. + +First Guard: +O Caesar, +This Charmian lived but now; she stood and spake: +I found her trimming up the diadem +On her dead mistress; tremblingly she stood +And on the sudden dropp'd. + +OCTAVIUS CAESAR: +O noble weakness! +If they had swallow'd poison, 'twould appear +By external swelling: but she looks like sleep, +As she would catch another Antony +In her strong toil of grace. + +DOLABELLA: +Here, on her breast, +There is a vent of blood and something blown: +The like is on her arm. + +First Guard: +This is an aspic's trail: and these fig-leaves +Have slime upon them, such as the aspic leaves +Upon the caves of Nile. + +OCTAVIUS CAESAR: +Most probable +That so she died; for her physician tells me +She hath pursued conclusions infinite +Of easy ways to die. Take up her bed; +And bear her women from the monument: +She shall be buried by her Antony: +No grave upon the earth shall clip in it +A pair so famous. High events as these +Strike those that make them; and their story is +No less in pity than his glory which +Brought them to be lamented. Our army shall +In solemn show attend this funeral; +And then to Rome. Come, Dolabella, see +High order in this great solemnity. + +ORLANDO: +As I remember, Adam, it was upon this fashion +bequeathed me by will but poor a thousand crowns, +and, as thou sayest, charged my brother, on his +blessing, to breed me well: and there begins my +sadness. My brother Jaques he keeps at school, and +report speaks goldenly of his profit: for my part, +he keeps me rustically at home, or, to speak more +properly, stays me here at home unkept; for call you +that keeping for a gentleman of my birth, that +differs not from the stalling of an ox? His horses +are bred better; for, besides that they are fair +with their feeding, they are taught their manage, +and to that end riders dearly hired: but I, his +brother, gain nothing under him but growth; for the +which his animals on his dunghills are as much +bound to him as I. Besides this nothing that he so +plentifully gives me, the something that nature gave +me his countenance seems to take from me: he lets +me feed with his hinds, bars me the place of a +brother, and, as much as in him lies, mines my +gentility with my education. This is it, Adam, that +grieves me; and the spirit of my father, which I +think is within me, begins to mutiny against this +servitude: I will no longer endure it, though yet I +know no wise remedy how to avoid it. + +ADAM: +Yonder comes my master, your brother. + +ORLANDO: +Go apart, Adam, and thou shalt hear how he will +shake me up. + +OLIVER: +Now, sir! what make you here? + +ORLANDO: +Nothing: I am not taught to make any thing. + +OLIVER: +What mar you then, sir? + +ORLANDO: +Marry, sir, I am helping you to mar that which God +made, a poor unworthy brother of yours, with idleness. + +OLIVER: +Marry, sir, be better employed, and be naught awhile. + +ORLANDO: +Shall I keep your hogs and eat husks with them? +What prodigal portion have I spent, that I should +come to such penury? + +OLIVER: +Know you where your are, sir? + +ORLANDO: +O, sir, very well; here in your orchard. + +OLIVER: +Know you before whom, sir? + +ORLANDO: +Ay, better than him I am before knows me. I know +you are my eldest brother; and, in the gentle +condition of blood, you should so know me. The +courtesy of nations allows you my better, in that +you are the first-born; but the same tradition +takes not away my blood, were there twenty brothers +betwixt us: I have as much of my father in me as +you; albeit, I confess, your coming before me is +nearer to his reverence. + +OLIVER: +What, boy! + +ORLANDO: +Come, come, elder brother, you are too young in this. + +OLIVER: +Wilt thou lay hands on me, villain? + +ORLANDO: +I am no villain; I am the youngest son of Sir +Rowland de Boys; he was my father, and he is thrice +a villain that says such a father begot villains. +Wert thou not my brother, I would not take this hand +from thy throat till this other had pulled out thy +tongue for saying so: thou hast railed on thyself. + +ADAM: +Sweet masters, be patient: for your father's +remembrance, be at accord. + +OLIVER: +Let me go, I say. + +ORLANDO: +I will not, till I please: you shall hear me. My +father charged you in his will to give me good +education: you have trained me like a peasant, +obscuring and hiding from me all gentleman-like +qualities. The spirit of my father grows strong in +me, and I will no longer endure it: therefore allow +me such exercises as may become a gentleman, or +give me the poor allottery my father left me by +testament; with that I will go buy my fortunes. + +OLIVER: +And what wilt thou do? beg, when that is spent? +Well, sir, get you in: I will not long be troubled +with you; you shall have some part of your will: I +pray you, leave me. + +ORLANDO: +I will no further offend you than becomes me for my good. + +OLIVER: +Get you with him, you old dog. + +ADAM: +Is 'old dog' my reward? Most true, I have lost my +teeth in your service. God be with my old master! +he would not have spoke such a word. + +OLIVER: +Is it even so? begin you to grow upon me? I will +physic your rankness, and yet give no thousand +crowns neither. Holla, Dennis! + +DENNIS: +Calls your worship? + +OLIVER: +Was not Charles, the duke's wrestler, here to speak with me? + +DENNIS: +So please you, he is here at the door and importunes +access to you. + +OLIVER: +Call him in. +'Twill be a good way; and to-morrow the wrestling is. + +CHARLES: +Good morrow to your worship. + +OLIVER: +Good Monsieur Charles, what's the new news at the +new court? + +CHARLES: +There's no news at the court, sir, but the old news: +that is, the old duke is banished by his younger +brother the new duke; and three or four loving lords +have put themselves into voluntary exile with him, +whose lands and revenues enrich the new duke; +therefore he gives them good leave to wander. + +OLIVER: +Can you tell if Rosalind, the duke's daughter, be +banished with her father? + +CHARLES: +O, no; for the duke's daughter, her cousin, so loves +her, being ever from their cradles bred together, +that she would have followed her exile, or have died +to stay behind her. She is at the court, and no +less beloved of her uncle than his own daughter; and +never two ladies loved as they do. + +OLIVER: +Where will the old duke live? + +CHARLES: +They say he is already in the forest of Arden, and +a many merry men with him; and there they live like +the old Robin Hood of England: they say many young +gentlemen flock to him every day, and fleet the time +carelessly, as they did in the golden world. + +OLIVER: +What, you wrestle to-morrow before the new duke? + +CHARLES: +Marry, do I, sir; and I came to acquaint you with a +matter. I am given, sir, secretly to understand +that your younger brother Orlando hath a disposition +to come in disguised against me to try a fall. +To-morrow, sir, I wrestle for my credit; and he that +escapes me without some broken limb shall acquit him +well. Your brother is but young and tender; and, +for your love, I would be loath to foil him, as I +must, for my own honour, if he come in: therefore, +out of my love to you, I came hither to acquaint you +withal, that either you might stay him from his +intendment or brook such disgrace well as he shall +run into, in that it is a thing of his own search +and altogether against my will. + +OLIVER: +Charles, I thank thee for thy love to me, which +thou shalt find I will most kindly requite. I had +myself notice of my brother's purpose herein and +have by underhand means laboured to dissuade him from +it, but he is resolute. I'll tell thee, Charles: +it is the stubbornest young fellow of France, full +of ambition, an envious emulator of every man's +good parts, a secret and villanous contriver against +me his natural brother: therefore use thy +discretion; I had as lief thou didst break his neck +as his finger. And thou wert best look to't; for if +thou dost him any slight disgrace or if he do not +mightily grace himself on thee, he will practise +against thee by poison, entrap thee by some +treacherous device and never leave thee till he +hath ta'en thy life by some indirect means or other; +for, I assure thee, and almost with tears I speak +it, there is not one so young and so villanous this +day living. I speak but brotherly of him; but +should I anatomize him to thee as he is, I must +blush and weep and thou must look pale and wonder. + +CHARLES: +I am heartily glad I came hither to you. If he come +to-morrow, I'll give him his payment: if ever he go +alone again, I'll never wrestle for prize more: and +so God keep your worship! + +OLIVER: +Farewell, good Charles. +Now will I stir this gamester: I hope I shall see +an end of him; for my soul, yet I know not why, +hates nothing more than he. Yet he's gentle, never +schooled and yet learned, full of noble device, of +all sorts enchantingly beloved, and indeed so much +in the heart of the world, and especially of my own +people, who best know him, that I am altogether +misprised: but it shall not be so long; this +wrestler shall clear all: nothing remains but that +I kindle the boy thither; which now I'll go about. + +CELIA: +I pray thee, Rosalind, sweet my coz, be merry. + +ROSALIND: +Dear Celia, I show more mirth than I am mistress of; +and would you yet I were merrier? Unless you could +teach me to forget a banished father, you must not +learn me how to remember any extraordinary pleasure. + +CELIA: +Herein I see thou lovest me not with the full weight +that I love thee. If my uncle, thy banished father, +had banished thy uncle, the duke my father, so thou +hadst been still with me, I could have taught my +love to take thy father for mine: so wouldst thou, +if the truth of thy love to me were so righteously +tempered as mine is to thee. + +ROSALIND: +Well, I will forget the condition of my estate, to +rejoice in yours. + +CELIA: +You know my father hath no child but I, nor none is +like to have: and, truly, when he dies, thou shalt +be his heir, for what he hath taken away from thy +father perforce, I will render thee again in +affection; by mine honour, I will; and when I break +that oath, let me turn monster: therefore, my +sweet Rose, my dear Rose, be merry. + +ROSALIND: +From henceforth I will, coz, and devise sports. Let +me see; what think you of falling in love? + +CELIA: +Marry, I prithee, do, to make sport withal: but +love no man in good earnest; nor no further in sport +neither than with safety of a pure blush thou mayst +in honour come off again. + +ROSALIND: +What shall be our sport, then? + +CELIA: +Let us sit and mock the good housewife Fortune from +her wheel, that her gifts may henceforth be bestowed equally. + +ROSALIND: +I would we could do so, for her benefits are +mightily misplaced, and the bountiful blind woman +doth most mistake in her gifts to women. + +CELIA: +'Tis true; for those that she makes fair she scarce +makes honest, and those that she makes honest she +makes very ill-favouredly. + +ROSALIND: +Nay, now thou goest from Fortune's office to +Nature's: Fortune reigns in gifts of the world, +not in the lineaments of Nature. + +CELIA: +No? when Nature hath made a fair creature, may she +not by Fortune fall into the fire? Though Nature +hath given us wit to flout at Fortune, hath not +Fortune sent in this fool to cut off the argument? + +ROSALIND: +Indeed, there is Fortune too hard for Nature, when +Fortune makes Nature's natural the cutter-off of +Nature's wit. + +CELIA: +Peradventure this is not Fortune's work neither, but +Nature's; who perceiveth our natural wits too dull +to reason of such goddesses and hath sent this +natural for our whetstone; for always the dulness of +the fool is the whetstone of the wits. How now, +wit! whither wander you? + +TOUCHSTONE: +Mistress, you must come away to your father. + +CELIA: +Were you made the messenger? + +TOUCHSTONE: +No, by mine honour, but I was bid to come for you. + +ROSALIND: +Where learned you that oath, fool? + +TOUCHSTONE: +Of a certain knight that swore by his honour they +were good pancakes and swore by his honour the +mustard was naught: now I'll stand to it, the +pancakes were naught and the mustard was good, and +yet was not the knight forsworn. + +CELIA: +How prove you that, in the great heap of your +knowledge? + +ROSALIND: +Ay, marry, now unmuzzle your wisdom. + +TOUCHSTONE: +Stand you both forth now: stroke your chins, and +swear by your beards that I am a knave. + +CELIA: +By our beards, if we had them, thou art. + +TOUCHSTONE: +By my knavery, if I had it, then I were; but if you +swear by that that is not, you are not forsworn: no +more was this knight swearing by his honour, for he +never had any; or if he had, he had sworn it away +before ever he saw those pancakes or that mustard. + +CELIA: +Prithee, who is't that thou meanest? + +TOUCHSTONE: +One that old Frederick, your father, loves. + +CELIA: +My father's love is enough to honour him: enough! +speak no more of him; you'll be whipped for taxation +one of these days. + +TOUCHSTONE: +The more pity, that fools may not speak wisely what +wise men do foolishly. + +CELIA: +By my troth, thou sayest true; for since the little +wit that fools have was silenced, the little foolery +that wise men have makes a great show. Here comes +Monsieur Le Beau. + +ROSALIND: +With his mouth full of news. + +CELIA: +Which he will put on us, as pigeons feed their young. + +ROSALIND: +Then shall we be news-crammed. + +CELIA: +All the better; we shall be the more marketable. +Bon jour, Monsieur Le Beau: what's the news? + +LE BEAU: +Fair princess, you have lost much good sport. + +CELIA: +Sport! of what colour? + +LE BEAU: +What colour, madam! how shall I answer you? + +ROSALIND: +As wit and fortune will. + +TOUCHSTONE: +Or as the Destinies decree. + +CELIA: +Well said: that was laid on with a trowel. + +TOUCHSTONE: +Nay, if I keep not my rank,-- + +ROSALIND: +Thou losest thy old smell. + +LE BEAU: +You amaze me, ladies: I would have told you of good +wrestling, which you have lost the sight of. + +ROSALIND: +You tell us the manner of the wrestling. + +LE BEAU: +I will tell you the beginning; and, if it please +your ladyships, you may see the end; for the best is +yet to do; and here, where you are, they are coming +to perform it. + +CELIA: +Well, the beginning, that is dead and buried. + +LE BEAU: +There comes an old man and his three sons,-- + +CELIA: +I could match this beginning with an old tale. + +LE BEAU: +Three proper young men, of excellent growth and presence. + +ROSALIND: +With bills on their necks, 'Be it known unto all men +by these presents.' + +LE BEAU: +The eldest of the three wrestled with Charles, the +duke's wrestler; which Charles in a moment threw him +and broke three of his ribs, that there is little +hope of life in him: so he served the second, and +so the third. Yonder they lie; the poor old man, +their father, making such pitiful dole over them +that all the beholders take his part with weeping. + +ROSALIND: +Alas! + +TOUCHSTONE: +But what is the sport, monsieur, that the ladies +have lost? + +LE BEAU: +Why, this that I speak of. + +TOUCHSTONE: +Thus men may grow wiser every day: it is the first +time that ever I heard breaking of ribs was sport +for ladies. + +CELIA: +Or I, I promise thee. + +ROSALIND: +But is there any else longs to see this broken music +in his sides? is there yet another dotes upon +rib-breaking? Shall we see this wrestling, cousin? + +LE BEAU: +You must, if you stay here; for here is the place +appointed for the wrestling, and they are ready to +perform it. + +CELIA: +Yonder, sure, they are coming: let us now stay and see it. + +DUKE FREDERICK: +Come on: since the youth will not be entreated, his +own peril on his forwardness. + +ROSALIND: +Is yonder the man? + +LE BEAU: +Even he, madam. + +CELIA: +Alas, he is too young! yet he looks successfully. + +DUKE FREDERICK: +How now, daughter and cousin! are you crept hither +to see the wrestling? + +ROSALIND: +Ay, my liege, so please you give us leave. + +DUKE FREDERICK: +You will take little delight in it, I can tell you; +there is such odds in the man. In pity of the +challenger's youth I would fain dissuade him, but he +will not be entreated. Speak to him, ladies; see if +you can move him. + +CELIA: +Call him hither, good Monsieur Le Beau. + +DUKE FREDERICK: +Do so: I'll not be by. + +LE BEAU: +Monsieur the challenger, the princesses call for you. + +ORLANDO: +I attend them with all respect and duty. + +ROSALIND: +Young man, have you challenged Charles the wrestler? + +ORLANDO: +No, fair princess; he is the general challenger: I +come but in, as others do, to try with him the +strength of my youth. + +CELIA: +Young gentleman, your spirits are too bold for your +years. You have seen cruel proof of this man's +strength: if you saw yourself with your eyes or +knew yourself with your judgment, the fear of your +adventure would counsel you to a more equal +enterprise. We pray you, for your own sake, to +embrace your own safety and give over this attempt. + +ROSALIND: +Do, young sir; your reputation shall not therefore +be misprised: we will make it our suit to the duke +that the wrestling might not go forward. + +ORLANDO: +I beseech you, punish me not with your hard +thoughts; wherein I confess me much guilty, to deny +so fair and excellent ladies any thing. But let +your fair eyes and gentle wishes go with me to my +trial: wherein if I be foiled, there is but one +shamed that was never gracious; if killed, but one +dead that was willing to be so: I shall do my +friends no wrong, for I have none to lament me, the +world no injury, for in it I have nothing; only in +the world I fill up a place, which may be better +supplied when I have made it empty. + +ROSALIND: +The little strength that I have, I would it were with you. + +CELIA: +And mine, to eke out hers. + +ROSALIND: +Fare you well: pray heaven I be deceived in you! + +CELIA: +Your heart's desires be with you! + +CHARLES: +Come, where is this young gallant that is so +desirous to lie with his mother earth? + +ORLANDO: +Ready, sir; but his will hath in it a more modest working. + +DUKE FREDERICK: +You shall try but one fall. + +CHARLES: +No, I warrant your grace, you shall not entreat him +to a second, that have so mightily persuaded him +from a first. + +ORLANDO: +An you mean to mock me after, you should not have +mocked me before: but come your ways. + +ROSALIND: +Now Hercules be thy speed, young man! + +CELIA: +I would I were invisible, to catch the strong +fellow by the leg. + +ROSALIND: +O excellent young man! + +CELIA: +If I had a thunderbolt in mine eye, I can tell who +should down. + +DUKE FREDERICK: +No more, no more. + +ORLANDO: +Yes, I beseech your grace: I am not yet well breathed. + +DUKE FREDERICK: +How dost thou, Charles? + +LE BEAU: +He cannot speak, my lord. + +DUKE FREDERICK: +Bear him away. What is thy name, young man? + +ORLANDO: +Orlando, my liege; the youngest son of Sir Rowland de Boys. + +DUKE FREDERICK: +I would thou hadst been son to some man else: +The world esteem'd thy father honourable, +But I did find him still mine enemy: +Thou shouldst have better pleased me with this deed, +Hadst thou descended from another house. +But fare thee well; thou art a gallant youth: +I would thou hadst told me of another father. + +CELIA: +Were I my father, coz, would I do this? + +ORLANDO: +I am more proud to be Sir Rowland's son, +His youngest son; and would not change that calling, +To be adopted heir to Frederick. + +ROSALIND: +My father loved Sir Rowland as his soul, +And all the world was of my father's mind: +Had I before known this young man his son, +I should have given him tears unto entreaties, +Ere he should thus have ventured. + +CELIA: +Gentle cousin, +Let us go thank him and encourage him: +My father's rough and envious disposition +Sticks me at heart. Sir, you have well deserved: +If you do keep your promises in love +But justly, as you have exceeded all promise, +Your mistress shall be happy. + +ROSALIND: +Gentleman, +Wear this for me, one out of suits with fortune, +That could give more, but that her hand lacks means. +Shall we go, coz? + +CELIA: +Ay. Fare you well, fair gentleman. + +ORLANDO: +Can I not say, I thank you? My better parts +Are all thrown down, and that which here stands up +Is but a quintain, a mere lifeless block. + +ROSALIND: +He calls us back: my pride fell with my fortunes; +I'll ask him what he would. Did you call, sir? +Sir, you have wrestled well and overthrown +More than your enemies. + +CELIA: +Will you go, coz? + +ROSALIND: +Have with you. Fare you well. + +ORLANDO: +What passion hangs these weights upon my tongue? +I cannot speak to her, yet she urged conference. +O poor Orlando, thou art overthrown! +Or Charles or something weaker masters thee. + +LE BEAU: +Good sir, I do in friendship counsel you +To leave this place. Albeit you have deserved +High commendation, true applause and love, +Yet such is now the duke's condition +That he misconstrues all that you have done. +The duke is humorous; what he is indeed, +More suits you to conceive than I to speak of. + +ORLANDO: +I thank you, sir: and, pray you, tell me this: +Which of the two was daughter of the duke +That here was at the wrestling? + +LE BEAU: +Neither his daughter, if we judge by manners; +But yet indeed the lesser is his daughter +The other is daughter to the banish'd duke, +And here detain'd by her usurping uncle, +To keep his daughter company; whose loves +Are dearer than the natural bond of sisters. +But I can tell you that of late this duke +Hath ta'en displeasure 'gainst his gentle niece, +Grounded upon no other argument +But that the people praise her for her virtues +And pity her for her good father's sake; +And, on my life, his malice 'gainst the lady +Will suddenly break forth. Sir, fare you well: +Hereafter, in a better world than this, +I shall desire more love and knowledge of you. + +ORLANDO: +I rest much bounden to you: fare you well. +Thus must I from the smoke into the smother; +From tyrant duke unto a tyrant brother: +But heavenly Rosalind! + +CELIA: +Why, cousin! why, Rosalind! Cupid have mercy! not a word? + +ROSALIND: +Not one to throw at a dog. + +CELIA: +No, thy words are too precious to be cast away upon +curs; throw some of them at me; come, lame me with reasons. + +ROSALIND: +Then there were two cousins laid up; when the one +should be lamed with reasons and the other mad +without any. + +CELIA: +But is all this for your father? + +ROSALIND: +No, some of it is for my child's father. O, how +full of briers is this working-day world! + +CELIA: +They are but burs, cousin, thrown upon thee in +holiday foolery: if we walk not in the trodden +paths our very petticoats will catch them. + +ROSALIND: +I could shake them off my coat: these burs are in my heart. + +CELIA: +Hem them away. + +ROSALIND: +I would try, if I could cry 'hem' and have him. + +CELIA: +Come, come, wrestle with thy affections. + +ROSALIND: +O, they take the part of a better wrestler than myself! + +CELIA: +O, a good wish upon you! you will try in time, in +despite of a fall. But, turning these jests out of +service, let us talk in good earnest: is it +possible, on such a sudden, you should fall into so +strong a liking with old Sir Rowland's youngest son? + +ROSALIND: +The duke my father loved his father dearly. + +CELIA: +Doth it therefore ensue that you should love his son +dearly? By this kind of chase, I should hate him, +for my father hated his father dearly; yet I hate +not Orlando. + +ROSALIND: +No, faith, hate him not, for my sake. + +CELIA: +Why should I not? doth he not deserve well? + +ROSALIND: +Let me love him for that, and do you love him +because I do. Look, here comes the duke. + +CELIA: +With his eyes full of anger. + +DUKE FREDERICK: +Mistress, dispatch you with your safest haste +And get you from our court. + +ROSALIND: +Me, uncle? + +DUKE FREDERICK: +You, cousin +Within these ten days if that thou be'st found +So near our public court as twenty miles, +Thou diest for it. + +ROSALIND: +I do beseech your grace, +Let me the knowledge of my fault bear with me: +If with myself I hold intelligence +Or have acquaintance with mine own desires, +If that I do not dream or be not frantic,-- +As I do trust I am not--then, dear uncle, +Never so much as in a thought unborn +Did I offend your highness. + +DUKE FREDERICK: +Thus do all traitors: +If their purgation did consist in words, +They are as innocent as grace itself: +Let it suffice thee that I trust thee not. + +ROSALIND: +Yet your mistrust cannot make me a traitor: +Tell me whereon the likelihood depends. + +DUKE FREDERICK: +Thou art thy father's daughter; there's enough. + +ROSALIND: +So was I when your highness took his dukedom; +So was I when your highness banish'd him: +Treason is not inherited, my lord; +Or, if we did derive it from our friends, +What's that to me? my father was no traitor: +Then, good my liege, mistake me not so much +To think my poverty is treacherous. + +CELIA: +Dear sovereign, hear me speak. + +DUKE FREDERICK: +Ay, Celia; we stay'd her for your sake, +Else had she with her father ranged along. + +CELIA: +I did not then entreat to have her stay; +It was your pleasure and your own remorse: +I was too young that time to value her; +But now I know her: if she be a traitor, +Why so am I; we still have slept together, +Rose at an instant, learn'd, play'd, eat together, +And wheresoever we went, like Juno's swans, +Still we went coupled and inseparable. + +DUKE FREDERICK: +She is too subtle for thee; and her smoothness, +Her very silence and her patience +Speak to the people, and they pity her. +Thou art a fool: she robs thee of thy name; +And thou wilt show more bright and seem more virtuous +When she is gone. Then open not thy lips: +Firm and irrevocable is my doom +Which I have pass'd upon her; she is banish'd. + +CELIA: +Pronounce that sentence then on me, my liege: +I cannot live out of her company. + +DUKE FREDERICK: +You are a fool. You, niece, provide yourself: +If you outstay the time, upon mine honour, +And in the greatness of my word, you die. + +CELIA: +O my poor Rosalind, whither wilt thou go? +Wilt thou change fathers? I will give thee mine. +I charge thee, be not thou more grieved than I am. + +ROSALIND: +I have more cause. + +CELIA: +Thou hast not, cousin; +Prithee be cheerful: know'st thou not, the duke +Hath banish'd me, his daughter? + +ROSALIND: +That he hath not. + +CELIA: +No, hath not? Rosalind lacks then the love +Which teacheth thee that thou and I am one: +Shall we be sunder'd? shall we part, sweet girl? +No: let my father seek another heir. +Therefore devise with me how we may fly, +Whither to go and what to bear with us; +And do not seek to take your change upon you, +To bear your griefs yourself and leave me out; +For, by this heaven, now at our sorrows pale, +Say what thou canst, I'll go along with thee. + +ROSALIND: +Why, whither shall we go? + +CELIA: +To seek my uncle in the forest of Arden. + +ROSALIND: +Alas, what danger will it be to us, +Maids as we are, to travel forth so far! +Beauty provoketh thieves sooner than gold. + +CELIA: +I'll put myself in poor and mean attire +And with a kind of umber smirch my face; +The like do you: so shall we pass along +And never stir assailants. + +ROSALIND: +Were it not better, +Because that I am more than common tall, +That I did suit me all points like a man? +A gallant curtle-axe upon my thigh, +A boar-spear in my hand; and--in my heart +Lie there what hidden woman's fear there will-- +We'll have a swashing and a martial outside, +As many other mannish cowards have +That do outface it with their semblances. + +CELIA: +What shall I call thee when thou art a man? + +ROSALIND: +I'll have no worse a name than Jove's own page; +And therefore look you call me Ganymede. +But what will you be call'd? + +CELIA: +Something that hath a reference to my state +No longer Celia, but Aliena. + +ROSALIND: +But, cousin, what if we assay'd to steal +The clownish fool out of your father's court? +Would he not be a comfort to our travel? + +CELIA: +He'll go along o'er the wide world with me; +Leave me alone to woo him. Let's away, +And get our jewels and our wealth together, +Devise the fittest time and safest way +To hide us from pursuit that will be made +After my flight. Now go we in content +To liberty and not to banishment. + +DUKE SENIOR: +Now, my co-mates and brothers in exile, +Hath not old custom made this life more sweet +Than that of painted pomp? Are not these woods +More free from peril than the envious court? +Here feel we but the penalty of Adam, +The seasons' difference, as the icy fang +And churlish chiding of the winter's wind, +Which, when it bites and blows upon my body, +Even till I shrink with cold, I smile and say +'This is no flattery: these are counsellors +That feelingly persuade me what I am.' +Sweet are the uses of adversity, +Which, like the toad, ugly and venomous, +Wears yet a precious jewel in his head; +And this our life exempt from public haunt +Finds tongues in trees, books in the running brooks, +Sermons in stones and good in every thing. +I would not change it. + +AMIENS: +Happy is your grace, +That can translate the stubbornness of fortune +Into so quiet and so sweet a style. + +DUKE SENIOR: +Come, shall we go and kill us venison? +And yet it irks me the poor dappled fools, +Being native burghers of this desert city, +Should in their own confines with forked heads +Have their round haunches gored. + +First Lord: +Indeed, my lord, +The melancholy Jaques grieves at that, +And, in that kind, swears you do more usurp +Than doth your brother that hath banish'd you. +To-day my Lord of Amiens and myself +Did steal behind him as he lay along +Under an oak whose antique root peeps out +Upon the brook that brawls along this wood: +To the which place a poor sequester'd stag, +That from the hunter's aim had ta'en a hurt, +Did come to languish, and indeed, my lord, +The wretched animal heaved forth such groans +That their discharge did stretch his leathern coat +Almost to bursting, and the big round tears +Coursed one another down his innocent nose +In piteous chase; and thus the hairy fool +Much marked of the melancholy Jaques, +Stood on the extremest verge of the swift brook, +Augmenting it with tears. + +DUKE SENIOR: +But what said Jaques? +Did he not moralize this spectacle? + +First Lord: +O, yes, into a thousand similes. +First, for his weeping into the needless stream; +'Poor deer,' quoth he, 'thou makest a testament +As worldlings do, giving thy sum of more +To that which had too much:' then, being there alone, +Left and abandon'd of his velvet friends, +''Tis right:' quoth he; 'thus misery doth part +The flux of company:' anon a careless herd, +Full of the pasture, jumps along by him +And never stays to greet him; 'Ay' quoth Jaques, +'Sweep on, you fat and greasy citizens; +'Tis just the fashion: wherefore do you look +Upon that poor and broken bankrupt there?' +Thus most invectively he pierceth through +The body of the country, city, court, +Yea, and of this our life, swearing that we +Are mere usurpers, tyrants and what's worse, +To fright the animals and to kill them up +In their assign'd and native dwelling-place. + +DUKE SENIOR: +And did you leave him in this contemplation? + +Second Lord: +We did, my lord, weeping and commenting +Upon the sobbing deer. + +DUKE SENIOR: +Show me the place: +I love to cope him in these sullen fits, +For then he's full of matter. + +First Lord: +I'll bring you to him straight. + +DUKE FREDERICK: +Can it be possible that no man saw them? +It cannot be: some villains of my court +Are of consent and sufferance in this. + +First Lord: +I cannot hear of any that did see her. +The ladies, her attendants of her chamber, +Saw her abed, and in the morning early +They found the bed untreasured of their mistress. + +Second Lord: +My lord, the roynish clown, at whom so oft +Your grace was wont to laugh, is also missing. +Hisperia, the princess' gentlewoman, +Confesses that she secretly o'erheard +Your daughter and her cousin much commend +The parts and graces of the wrestler +That did but lately foil the sinewy Charles; +And she believes, wherever they are gone, +That youth is surely in their company. + +DUKE FREDERICK: +Send to his brother; fetch that gallant hither; +If he be absent, bring his brother to me; +I'll make him find him: do this suddenly, +And let not search and inquisition quail +To bring again these foolish runaways. + +ORLANDO: +Who's there? + +ADAM: +What, my young master? O, my gentle master! +O my sweet master! O you memory +Of old Sir Rowland! why, what make you here? +Why are you virtuous? why do people love you? +And wherefore are you gentle, strong and valiant? +Why would you be so fond to overcome +The bonny priser of the humorous duke? +Your praise is come too swiftly home before you. +Know you not, master, to some kind of men +Their graces serve them but as enemies? +No more do yours: your virtues, gentle master, +Are sanctified and holy traitors to you. +O, what a world is this, when what is comely +Envenoms him that bears it! + +ORLANDO: +Why, what's the matter? + +ADAM: +O unhappy youth! +Come not within these doors; within this roof +The enemy of all your graces lives: +Your brother--no, no brother; yet the son-- +Yet not the son, I will not call him son +Of him I was about to call his father-- +Hath heard your praises, and this night he means +To burn the lodging where you use to lie +And you within it: if he fail of that, +He will have other means to cut you off. +I overheard him and his practises. +This is no place; this house is but a butchery: +Abhor it, fear it, do not enter it. + +ORLANDO: +Why, whither, Adam, wouldst thou have me go? + +ADAM: +No matter whither, so you come not here. + +ORLANDO: +What, wouldst thou have me go and beg my food? +Or with a base and boisterous sword enforce +A thievish living on the common road? +This I must do, or know not what to do: +Yet this I will not do, do how I can; +I rather will subject me to the malice +Of a diverted blood and bloody brother. + +ADAM: +But do not so. I have five hundred crowns, +The thrifty hire I saved under your father, +Which I did store to be my foster-nurse +When service should in my old limbs lie lame +And unregarded age in corners thrown: +Take that, and He that doth the ravens feed, +Yea, providently caters for the sparrow, +Be comfort to my age! Here is the gold; +And all this I give you. Let me be your servant: +Though I look old, yet I am strong and lusty; +For in my youth I never did apply +Hot and rebellious liquors in my blood, +Nor did not with unbashful forehead woo +The means of weakness and debility; +Therefore my age is as a lusty winter, +Frosty, but kindly: let me go with you; +I'll do the service of a younger man +In all your business and necessities. + +ORLANDO: +O good old man, how well in thee appears +The constant service of the antique world, +When service sweat for duty, not for meed! +Thou art not for the fashion of these times, +Where none will sweat but for promotion, +And having that, do choke their service up +Even with the having: it is not so with thee. +But, poor old man, thou prunest a rotten tree, +That cannot so much as a blossom yield +In lieu of all thy pains and husbandry +But come thy ways; well go along together, +And ere we have thy youthful wages spent, +We'll light upon some settled low content. + +ADAM: +Master, go on, and I will follow thee, +To the last gasp, with truth and loyalty. +From seventeen years till now almost fourscore +Here lived I, but now live here no more. +At seventeen years many their fortunes seek; +But at fourscore it is too late a week: +Yet fortune cannot recompense me better +Than to die well and not my master's debtor. + +ROSALIND: +O Jupiter, how weary are my spirits! + +TOUCHSTONE: +I care not for my spirits, if my legs were not weary. + +ROSALIND: +I could find in my heart to disgrace my man's +apparel and to cry like a woman; but I must comfort +the weaker vessel, as doublet and hose ought to show +itself courageous to petticoat: therefore courage, +good Aliena! + +CELIA: +I pray you, bear with me; I cannot go no further. + +TOUCHSTONE: +For my part, I had rather bear with you than bear +you; yet I should bear no cross if I did bear you, +for I think you have no money in your purse. + +ROSALIND: +Well, this is the forest of Arden. + +TOUCHSTONE: +Ay, now am I in Arden; the more fool I; when I was +at home, I was in a better place: but travellers +must be content. + +ROSALIND: +Ay, be so, good Touchstone. +Look you, who comes here; a young man and an old in +solemn talk. + +CORIN: +That is the way to make her scorn you still. + +SILVIUS: +O Corin, that thou knew'st how I do love her! + +CORIN: +I partly guess; for I have loved ere now. + +SILVIUS: +No, Corin, being old, thou canst not guess, +Though in thy youth thou wast as true a lover +As ever sigh'd upon a midnight pillow: +But if thy love were ever like to mine-- +As sure I think did never man love so-- +How many actions most ridiculous +Hast thou been drawn to by thy fantasy? + +CORIN: +Into a thousand that I have forgotten. + +SILVIUS: +O, thou didst then ne'er love so heartily! +If thou remember'st not the slightest folly +That ever love did make thee run into, +Thou hast not loved: +Or if thou hast not sat as I do now, +Wearying thy hearer in thy mistress' praise, +Thou hast not loved: +Or if thou hast not broke from company +Abruptly, as my passion now makes me, +Thou hast not loved. +O Phebe, Phebe, Phebe! + +ROSALIND: +Alas, poor shepherd! searching of thy wound, +I have by hard adventure found mine own. + +TOUCHSTONE: +And I mine. I remember, when I was in love I broke +my sword upon a stone and bid him take that for +coming a-night to Jane Smile; and I remember the +kissing of her batlet and the cow's dugs that her +pretty chopt hands had milked; and I remember the +wooing of a peascod instead of her, from whom I took +two cods and, giving her them again, said with +weeping tears 'Wear these for my sake.' We that are +true lovers run into strange capers; but as all is +mortal in nature, so is all nature in love mortal in folly. + +ROSALIND: +Thou speakest wiser than thou art ware of. + +TOUCHSTONE: +Nay, I shall ne'er be ware of mine own wit till I +break my shins against it. + +ROSALIND: +Jove, Jove! this shepherd's passion +Is much upon my fashion. + +TOUCHSTONE: +And mine; but it grows something stale with me. + +CELIA: +I pray you, one of you question yond man +If he for gold will give us any food: +I faint almost to death. + +TOUCHSTONE: +Holla, you clown! + +ROSALIND: +Peace, fool: he's not thy kinsman. + +CORIN: +Who calls? + +TOUCHSTONE: +Your betters, sir. + +CORIN: +Else are they very wretched. + +ROSALIND: +Peace, I say. Good even to you, friend. + +CORIN: +And to you, gentle sir, and to you all. + +ROSALIND: +I prithee, shepherd, if that love or gold +Can in this desert place buy entertainment, +Bring us where we may rest ourselves and feed: +Here's a young maid with travel much oppress'd +And faints for succor. + +CORIN: +Fair sir, I pity her +And wish, for her sake more than for mine own, +My fortunes were more able to relieve her; +But I am shepherd to another man +And do not shear the fleeces that I graze: +My master is of churlish disposition +And little recks to find the way to heaven +By doing deeds of hospitality: +Besides, his cote, his flocks and bounds of feed +Are now on sale, and at our sheepcote now, +By reason of his absence, there is nothing +That you will feed on; but what is, come see. +And in my voice most welcome shall you be. + +ROSALIND: +What is he that shall buy his flock and pasture? + +CORIN: +That young swain that you saw here but erewhile, +That little cares for buying any thing. + +ROSALIND: +I pray thee, if it stand with honesty, +Buy thou the cottage, pasture and the flock, +And thou shalt have to pay for it of us. + +CELIA: +And we will mend thy wages. I like this place. +And willingly could waste my time in it. + +CORIN: +Assuredly the thing is to be sold: +Go with me: if you like upon report +The soil, the profit and this kind of life, +I will your very faithful feeder be +And buy it with your gold right suddenly. + +AMIENS: +Under the greenwood tree +Who loves to lie with me, +And turn his merry note +Unto the sweet bird's throat, +Come hither, come hither, come hither: +Here shall he see No enemy +But winter and rough weather. + +JAQUES: +More, more, I prithee, more. + +AMIENS: +It will make you melancholy, Monsieur Jaques. + +JAQUES: +I thank it. More, I prithee, more. I can suck +melancholy out of a song, as a weasel sucks eggs. +More, I prithee, more. + +AMIENS: +My voice is ragged: I know I cannot please you. + +JAQUES: +I do not desire you to please me; I do desire you to +sing. Come, more; another stanzo: call you 'em stanzos? + +AMIENS: +What you will, Monsieur Jaques. + +JAQUES: +Nay, I care not for their names; they owe me +nothing. Will you sing? + +AMIENS: +More at your request than to please myself. + +JAQUES: +Well then, if ever I thank any man, I'll thank you; +but that they call compliment is like the encounter +of two dog-apes, and when a man thanks me heartily, +methinks I have given him a penny and he renders me +the beggarly thanks. Come, sing; and you that will +not, hold your tongues. + +AMIENS: +Well, I'll end the song. Sirs, cover the while; the +duke will drink under this tree. He hath been all +this day to look you. + +JAQUES: +And I have been all this day to avoid him. He is +too disputable for my company: I think of as many +matters as he, but I give heaven thanks and make no +boast of them. Come, warble, come. +Who doth ambition shun +And loves to live i' the sun, +Seeking the food he eats +And pleased with what he gets, +Come hither, come hither, come hither: +Here shall he see No enemy +But winter and rough weather. + +JAQUES: +I'll give you a verse to this note that I made +yesterday in despite of my invention. + +AMIENS: +And I'll sing it. + +JAQUES: +Thus it goes:-- +If it do come to pass +That any man turn ass, +Leaving his wealth and ease, +A stubborn will to please, +Ducdame, ducdame, ducdame: +Here shall he see +Gross fools as he, +An if he will come to me. + +AMIENS: +What's that 'ducdame'? + +JAQUES: +'Tis a Greek invocation, to call fools into a +circle. I'll go sleep, if I can; if I cannot, I'll +rail against all the first-born of Egypt. + +AMIENS: +And I'll go seek the duke: his banquet is prepared. + +ADAM: +Dear master, I can go no further. O, I die for food! +Here lie I down, and measure out my grave. Farewell, +kind master. + +ORLANDO: +Why, how now, Adam! no greater heart in thee? Live +a little; comfort a little; cheer thyself a little. +If this uncouth forest yield any thing savage, I +will either be food for it or bring it for food to +thee. Thy conceit is nearer death than thy powers. +For my sake be comfortable; hold death awhile at +the arm's end: I will here be with thee presently; +and if I bring thee not something to eat, I will +give thee leave to die: but if thou diest before I +come, thou art a mocker of my labour. Well said! +thou lookest cheerly, and I'll be with thee quickly. +Yet thou liest in the bleak air: come, I will bear +thee to some shelter; and thou shalt not die for +lack of a dinner, if there live any thing in this +desert. Cheerly, good Adam! + +DUKE SENIOR: +I think he be transform'd into a beast; +For I can no where find him like a man. + +First Lord: +My lord, he is but even now gone hence: +Here was he merry, hearing of a song. + +DUKE SENIOR: +If he, compact of jars, grow musical, +We shall have shortly discord in the spheres. +Go, seek him: tell him I would speak with him. + +First Lord: +He saves my labour by his own approach. + +DUKE SENIOR: +Why, how now, monsieur! what a life is this, +That your poor friends must woo your company? +What, you look merrily! + +JAQUES: +A fool, a fool! I met a fool i' the forest, +A motley fool; a miserable world! +As I do live by food, I met a fool +Who laid him down and bask'd him in the sun, +And rail'd on Lady Fortune in good terms, +In good set terms and yet a motley fool. +'Good morrow, fool,' quoth I. 'No, sir,' quoth he, +'Call me not fool till heaven hath sent me fortune:' +And then he drew a dial from his poke, +And, looking on it with lack-lustre eye, +Says very wisely, 'It is ten o'clock: +Thus we may see,' quoth he, 'how the world wags: +'Tis but an hour ago since it was nine, +And after one hour more 'twill be eleven; +And so, from hour to hour, we ripe and ripe, +And then, from hour to hour, we rot and rot; +And thereby hangs a tale.' When I did hear +The motley fool thus moral on the time, +My lungs began to crow like chanticleer, +That fools should be so deep-contemplative, +And I did laugh sans intermission +An hour by his dial. O noble fool! +A worthy fool! Motley's the only wear. + +DUKE SENIOR: +What fool is this? + +JAQUES: +O worthy fool! One that hath been a courtier, +And says, if ladies be but young and fair, +They have the gift to know it: and in his brain, +Which is as dry as the remainder biscuit +After a voyage, he hath strange places cramm'd +With observation, the which he vents +In mangled forms. O that I were a fool! +I am ambitious for a motley coat. + +DUKE SENIOR: +Thou shalt have one. + +JAQUES: +It is my only suit; +Provided that you weed your better judgments +Of all opinion that grows rank in them +That I am wise. I must have liberty +Withal, as large a charter as the wind, +To blow on whom I please; for so fools have; +And they that are most galled with my folly, +They most must laugh. And why, sir, must they so? +The 'why' is plain as way to parish church: +He that a fool doth very wisely hit +Doth very foolishly, although he smart, +Not to seem senseless of the bob: if not, +The wise man's folly is anatomized +Even by the squandering glances of the fool. +Invest me in my motley; give me leave +To speak my mind, and I will through and through +Cleanse the foul body of the infected world, +If they will patiently receive my medicine. + +DUKE SENIOR: +Fie on thee! I can tell what thou wouldst do. + +JAQUES: +What, for a counter, would I do but good? + +DUKE SENIOR: +Most mischievous foul sin, in chiding sin: +For thou thyself hast been a libertine, +As sensual as the brutish sting itself; +And all the embossed sores and headed evils, +That thou with licence of free foot hast caught, +Wouldst thou disgorge into the general world. + +JAQUES: +Why, who cries out on pride, +That can therein tax any private party? +Doth it not flow as hugely as the sea, +Till that the weary very means do ebb? +What woman in the city do I name, +When that I say the city-woman bears +The cost of princes on unworthy shoulders? +Who can come in and say that I mean her, +When such a one as she such is her neighbour? +Or what is he of basest function +That says his bravery is not of my cost, +Thinking that I mean him, but therein suits +His folly to the mettle of my speech? +There then; how then? what then? Let me see wherein +My tongue hath wrong'd him: if it do him right, +Then he hath wrong'd himself; if he be free, +Why then my taxing like a wild-goose flies, +Unclaim'd of any man. But who comes here? + +ORLANDO: +Forbear, and eat no more. + +JAQUES: +Why, I have eat none yet. + +ORLANDO: +Nor shalt not, till necessity be served. + +JAQUES: +Of what kind should this cock come of? + +DUKE SENIOR: +Art thou thus bolden'd, man, by thy distress, +Or else a rude despiser of good manners, +That in civility thou seem'st so empty? + +ORLANDO: +You touch'd my vein at first: the thorny point +Of bare distress hath ta'en from me the show +Of smooth civility: yet am I inland bred +And know some nurture. But forbear, I say: +He dies that touches any of this fruit +Till I and my affairs are answered. + +JAQUES: +An you will not be answered with reason, I must die. + +DUKE SENIOR: +What would you have? Your gentleness shall force +More than your force move us to gentleness. + +ORLANDO: +I almost die for food; and let me have it. + +DUKE SENIOR: +Sit down and feed, and welcome to our table. + +ORLANDO: +Speak you so gently? Pardon me, I pray you: +I thought that all things had been savage here; +And therefore put I on the countenance +Of stern commandment. But whate'er you are +That in this desert inaccessible, +Under the shade of melancholy boughs, +Lose and neglect the creeping hours of time +If ever you have look'd on better days, +If ever been where bells have knoll'd to church, +If ever sat at any good man's feast, +If ever from your eyelids wiped a tear +And know what 'tis to pity and be pitied, +Let gentleness my strong enforcement be: +In the which hope I blush, and hide my sword. + +DUKE SENIOR: +True is it that we have seen better days, +And have with holy bell been knoll'd to church +And sat at good men's feasts and wiped our eyes +Of drops that sacred pity hath engender'd: +And therefore sit you down in gentleness +And take upon command what help we have +That to your wanting may be minister'd. + +ORLANDO: +Then but forbear your food a little while, +Whiles, like a doe, I go to find my fawn +And give it food. There is an old poor man, +Who after me hath many a weary step +Limp'd in pure love: till he be first sufficed, +Oppress'd with two weak evils, age and hunger, +I will not touch a bit. + +DUKE SENIOR: +Go find him out, +And we will nothing waste till you return. + +ORLANDO: +I thank ye; and be blest for your good comfort! + +DUKE SENIOR: +Thou seest we are not all alone unhappy: +This wide and universal theatre +Presents more woeful pageants than the scene +Wherein we play in. + +JAQUES: +All the world's a stage, +And all the men and women merely players: +They have their exits and their entrances; +And one man in his time plays many parts, +His acts being seven ages. At first the infant, +Mewling and puking in the nurse's arms. +And then the whining school-boy, with his satchel +And shining morning face, creeping like snail +Unwillingly to school. And then the lover, +Sighing like furnace, with a woeful ballad +Made to his mistress' eyebrow. Then a soldier, +Full of strange oaths and bearded like the pard, +Jealous in honour, sudden and quick in quarrel, +Seeking the bubble reputation +Even in the cannon's mouth. And then the justice, +In fair round belly with good capon lined, +With eyes severe and beard of formal cut, +Full of wise saws and modern instances; +And so he plays his part. The sixth age shifts +Into the lean and slipper'd pantaloon, +With spectacles on nose and pouch on side, +His youthful hose, well saved, a world too wide +For his shrunk shank; and his big manly voice, +Turning again toward childish treble, pipes +And whistles in his sound. Last scene of all, +That ends this strange eventful history, +Is second childishness and mere oblivion, +Sans teeth, sans eyes, sans taste, sans everything. + +DUKE SENIOR: +Welcome. Set down your venerable burthen, +And let him feed. + +ORLANDO: +I thank you most for him. + +ADAM: +So had you need: +I scarce can speak to thank you for myself. + +DUKE SENIOR: +Welcome; fall to: I will not trouble you +As yet, to question you about your fortunes. +Give us some music; and, good cousin, sing. + +AMIENS: +Blow, blow, thou winter wind. +Thou art not so unkind +As man's ingratitude; +Thy tooth is not so keen, +Because thou art not seen, +Although thy breath be rude. +Heigh-ho! sing, heigh-ho! unto the green holly: +Most friendship is feigning, most loving mere folly: +Then, heigh-ho, the holly! +This life is most jolly. +Freeze, freeze, thou bitter sky, +That dost not bite so nigh +As benefits forgot: +Though thou the waters warp, +Thy sting is not so sharp +As friend remember'd not. +Heigh-ho! sing, &c. + +DUKE SENIOR: +If that you were the good Sir Rowland's son, +As you have whisper'd faithfully you were, +And as mine eye doth his effigies witness +Most truly limn'd and living in your face, +Be truly welcome hither: I am the duke +That loved your father: the residue of your fortune, +Go to my cave and tell me. Good old man, +Thou art right welcome as thy master is. +Support him by the arm. Give me your hand, +And let me all your fortunes understand. + +DUKE FREDERICK: +Not see him since? Sir, sir, that cannot be: +But were I not the better part made mercy, +I should not seek an absent argument +Of my revenge, thou present. But look to it: +Find out thy brother, wheresoe'er he is; +Seek him with candle; bring him dead or living +Within this twelvemonth, or turn thou no more +To seek a living in our territory. +Thy lands and all things that thou dost call thine +Worth seizure do we seize into our hands, +Till thou canst quit thee by thy brothers mouth +Of what we think against thee. + +OLIVER: +O that your highness knew my heart in this! +I never loved my brother in my life. + +DUKE FREDERICK: +More villain thou. Well, push him out of doors; +And let my officers of such a nature +Make an extent upon his house and lands: +Do this expediently and turn him going. + +ORLANDO: +Hang there, my verse, in witness of my love: +And thou, thrice-crowned queen of night, survey +With thy chaste eye, from thy pale sphere above, +Thy huntress' name that my full life doth sway. +O Rosalind! these trees shall be my books +And in their barks my thoughts I'll character; +That every eye which in this forest looks +Shall see thy virtue witness'd every where. +Run, run, Orlando; carve on every tree +The fair, the chaste and unexpressive she. + +CORIN: +And how like you this shepherd's life, Master Touchstone? + +TOUCHSTONE: +Truly, shepherd, in respect of itself, it is a good +life, but in respect that it is a shepherd's life, +it is naught. In respect that it is solitary, I +like it very well; but in respect that it is +private, it is a very vile life. Now, in respect it +is in the fields, it pleaseth me well; but in +respect it is not in the court, it is tedious. As +is it a spare life, look you, it fits my humour well; +but as there is no more plenty in it, it goes much +against my stomach. Hast any philosophy in thee, shepherd? + +CORIN: +No more but that I know the more one sickens the +worse at ease he is; and that he that wants money, +means and content is without three good friends; +that the property of rain is to wet and fire to +burn; that good pasture makes fat sheep, and that a +great cause of the night is lack of the sun; that +he that hath learned no wit by nature nor art may +complain of good breeding or comes of a very dull kindred. + +TOUCHSTONE: +Such a one is a natural philosopher. Wast ever in +court, shepherd? + +CORIN: +No, truly. + +TOUCHSTONE: +Then thou art damned. + +CORIN: +Nay, I hope. + +TOUCHSTONE: +Truly, thou art damned like an ill-roasted egg, all +on one side. + +CORIN: +For not being at court? Your reason. + +TOUCHSTONE: +Why, if thou never wast at court, thou never sawest +good manners; if thou never sawest good manners, +then thy manners must be wicked; and wickedness is +sin, and sin is damnation. Thou art in a parlous +state, shepherd. + +CORIN: +Not a whit, Touchstone: those that are good manners +at the court are as ridiculous in the country as the +behavior of the country is most mockable at the +court. You told me you salute not at the court, but +you kiss your hands: that courtesy would be +uncleanly, if courtiers were shepherds. + +TOUCHSTONE: +Instance, briefly; come, instance. + +CORIN: +Why, we are still handling our ewes, and their +fells, you know, are greasy. + +TOUCHSTONE: +Why, do not your courtier's hands sweat? and is not +the grease of a mutton as wholesome as the sweat of +a man? Shallow, shallow. A better instance, I say; come. + +CORIN: +Besides, our hands are hard. + +TOUCHSTONE: +Your lips will feel them the sooner. Shallow again. +A more sounder instance, come. + +CORIN: +And they are often tarred over with the surgery of +our sheep: and would you have us kiss tar? The +courtier's hands are perfumed with civet. + +TOUCHSTONE: +Most shallow man! thou worms-meat, in respect of a +good piece of flesh indeed! Learn of the wise, and +perpend: civet is of a baser birth than tar, the +very uncleanly flux of a cat. Mend the instance, shepherd. + +CORIN: +You have too courtly a wit for me: I'll rest. + +TOUCHSTONE: +Wilt thou rest damned? God help thee, shallow man! +God make incision in thee! thou art raw. + +CORIN: +Sir, I am a true labourer: I earn that I eat, get +that I wear, owe no man hate, envy no man's +happiness, glad of other men's good, content with my +harm, and the greatest of my pride is to see my ewes +graze and my lambs suck. + +TOUCHSTONE: +That is another simple sin in you, to bring the ewes +and the rams together and to offer to get your +living by the copulation of cattle; to be bawd to a +bell-wether, and to betray a she-lamb of a +twelvemonth to a crooked-pated, old, cuckoldly ram, +out of all reasonable match. If thou beest not +damned for this, the devil himself will have no +shepherds; I cannot see else how thou shouldst +'scape. + +CORIN: +Here comes young Master Ganymede, my new mistress's brother. + +ROSALIND: +From the east to western Ind, +No jewel is like Rosalind. +Her worth, being mounted on the wind, +Through all the world bears Rosalind. +All the pictures fairest lined +Are but black to Rosalind. +Let no fair be kept in mind +But the fair of Rosalind. + +TOUCHSTONE: +I'll rhyme you so eight years together, dinners and +suppers and sleeping-hours excepted: it is the +right butter-women's rank to market. + +ROSALIND: +Out, fool! + +TOUCHSTONE: +For a taste: +If a hart do lack a hind, +Let him seek out Rosalind. +If the cat will after kind, +So be sure will Rosalind. +Winter garments must be lined, +So must slender Rosalind. +They that reap must sheaf and bind; +Then to cart with Rosalind. +Sweetest nut hath sourest rind, +Such a nut is Rosalind. +He that sweetest rose will find +Must find love's prick and Rosalind. +This is the very false gallop of verses: why do you +infect yourself with them? + +ROSALIND: +Peace, you dull fool! I found them on a tree. + +TOUCHSTONE: +Truly, the tree yields bad fruit. + +ROSALIND: +I'll graff it with you, and then I shall graff it +with a medlar: then it will be the earliest fruit +i' the country; for you'll be rotten ere you be half +ripe, and that's the right virtue of the medlar. + +TOUCHSTONE: +You have said; but whether wisely or no, let the +forest judge. + +ROSALIND: +Peace! Here comes my sister, reading: stand aside. + +CELIA: + +ROSALIND: +O most gentle pulpiter! what tedious homily of love +have you wearied your parishioners withal, and never +cried 'Have patience, good people!' + +CELIA: +How now! back, friends! Shepherd, go off a little. +Go with him, sirrah. + +TOUCHSTONE: +Come, shepherd, let us make an honourable retreat; +though not with bag and baggage, yet with scrip and scrippage. + +CELIA: +Didst thou hear these verses? + +ROSALIND: +O, yes, I heard them all, and more too; for some of +them had in them more feet than the verses would bear. + +CELIA: +That's no matter: the feet might bear the verses. + +ROSALIND: +Ay, but the feet were lame and could not bear +themselves without the verse and therefore stood +lamely in the verse. + +CELIA: +But didst thou hear without wondering how thy name +should be hanged and carved upon these trees? + +ROSALIND: +I was seven of the nine days out of the wonder +before you came; for look here what I found on a +palm-tree. I was never so be-rhymed since +Pythagoras' time, that I was an Irish rat, which I +can hardly remember. + +CELIA: +Trow you who hath done this? + +ROSALIND: +Is it a man? + +CELIA: +And a chain, that you once wore, about his neck. +Change you colour? + +ROSALIND: +I prithee, who? + +CELIA: +O Lord, Lord! it is a hard matter for friends to +meet; but mountains may be removed with earthquakes +and so encounter. + +ROSALIND: +Nay, but who is it? + +CELIA: +Is it possible? + +ROSALIND: +Nay, I prithee now with most petitionary vehemence, +tell me who it is. + +CELIA: +O wonderful, wonderful, and most wonderful +wonderful! and yet again wonderful, and after that, +out of all hooping! + +ROSALIND: +Good my complexion! dost thou think, though I am +caparisoned like a man, I have a doublet and hose in +my disposition? One inch of delay more is a +South-sea of discovery; I prithee, tell me who is it +quickly, and speak apace. I would thou couldst +stammer, that thou mightst pour this concealed man +out of thy mouth, as wine comes out of a narrow- +mouthed bottle, either too much at once, or none at +all. I prithee, take the cork out of thy mouth that +may drink thy tidings. + +CELIA: +So you may put a man in your belly. + +ROSALIND: +Is he of God's making? What manner of man? Is his +head worth a hat, or his chin worth a beard? + +CELIA: +Nay, he hath but a little beard. + +ROSALIND: +Why, God will send more, if the man will be +thankful: let me stay the growth of his beard, if +thou delay me not the knowledge of his chin. + +CELIA: +It is young Orlando, that tripped up the wrestler's +heels and your heart both in an instant. + +ROSALIND: +Nay, but the devil take mocking: speak, sad brow and +true maid. + +CELIA: +I' faith, coz, 'tis he. + +ROSALIND: +Orlando? + +CELIA: +Orlando. + +ROSALIND: +Alas the day! what shall I do with my doublet and +hose? What did he when thou sawest him? What said +he? How looked he? Wherein went he? What makes +him here? Did he ask for me? Where remains he? +How parted he with thee? and when shalt thou see +him again? Answer me in one word. + +CELIA: +You must borrow me Gargantua's mouth first: 'tis a +word too great for any mouth of this age's size. To +say ay and no to these particulars is more than to +answer in a catechism. + +ROSALIND: +But doth he know that I am in this forest and in +man's apparel? Looks he as freshly as he did the +day he wrestled? + +CELIA: +It is as easy to count atomies as to resolve the +propositions of a lover; but take a taste of my +finding him, and relish it with good observance. +I found him under a tree, like a dropped acorn. + +ROSALIND: +It may well be called Jove's tree, when it drops +forth such fruit. + +CELIA: +Give me audience, good madam. + +ROSALIND: +Proceed. + +CELIA: +There lay he, stretched along, like a wounded knight. + +ROSALIND: +Though it be pity to see such a sight, it well +becomes the ground. + +CELIA: +Cry 'holla' to thy tongue, I prithee; it curvets +unseasonably. He was furnished like a hunter. + +ROSALIND: +O, ominous! he comes to kill my heart. + +CELIA: +I would sing my song without a burden: thou bringest +me out of tune. + +ROSALIND: +Do you not know I am a woman? when I think, I must +speak. Sweet, say on. + +CELIA: +You bring me out. Soft! comes he not here? + +ROSALIND: +'Tis he: slink by, and note him. + +JAQUES: +I thank you for your company; but, good faith, I had +as lief have been myself alone. + +ORLANDO: +And so had I; but yet, for fashion sake, I thank you +too for your society. + +JAQUES: +God be wi' you: let's meet as little as we can. + +ORLANDO: +I do desire we may be better strangers. + +JAQUES: +I pray you, mar no more trees with writing +love-songs in their barks. + +ORLANDO: +I pray you, mar no more of my verses with reading +them ill-favouredly. + +JAQUES: +Rosalind is your love's name? + +ORLANDO: +Yes, just. + +JAQUES: +I do not like her name. + +ORLANDO: +There was no thought of pleasing you when she was +christened. + +JAQUES: +What stature is she of? + +ORLANDO: +Just as high as my heart. + +JAQUES: +You are full of pretty answers. Have you not been +acquainted with goldsmiths' wives, and conned them +out of rings? + +ORLANDO: +Not so; but I answer you right painted cloth, from +whence you have studied your questions. + +JAQUES: +You have a nimble wit: I think 'twas made of +Atalanta's heels. Will you sit down with me? and +we two will rail against our mistress the world and +all our misery. + +ORLANDO: +I will chide no breather in the world but myself, +against whom I know most faults. + +JAQUES: +The worst fault you have is to be in love. + +ORLANDO: +'Tis a fault I will not change for your best virtue. +I am weary of you. + +JAQUES: +By my troth, I was seeking for a fool when I found +you. + +ORLANDO: +He is drowned in the brook: look but in, and you +shall see him. + +JAQUES: +There I shall see mine own figure. + +ORLANDO: +Which I take to be either a fool or a cipher. + +JAQUES: +I'll tarry no longer with you: farewell, good +Signior Love. + +ORLANDO: +I am glad of your departure: adieu, good Monsieur +Melancholy. + +ROSALIND: + +ORLANDO: +Very well: what would you? + +ROSALIND: +I pray you, what is't o'clock? + +ORLANDO: +You should ask me what time o' day: there's no clock +in the forest. + +ROSALIND: +Then there is no true lover in the forest; else +sighing every minute and groaning every hour would +detect the lazy foot of Time as well as a clock. + +ORLANDO: +And why not the swift foot of Time? had not that +been as proper? + +ROSALIND: +By no means, sir: Time travels in divers paces with +divers persons. I'll tell you who Time ambles +withal, who Time trots withal, who Time gallops +withal and who he stands still withal. + +ORLANDO: +I prithee, who doth he trot withal? + +ROSALIND: +Marry, he trots hard with a young maid between the +contract of her marriage and the day it is +solemnized: if the interim be but a se'nnight, +Time's pace is so hard that it seems the length of +seven year. + +ORLANDO: +Who ambles Time withal? + +ROSALIND: +With a priest that lacks Latin and a rich man that +hath not the gout, for the one sleeps easily because +he cannot study, and the other lives merrily because +he feels no pain, the one lacking the burden of lean +and wasteful learning, the other knowing no burden +of heavy tedious penury; these Time ambles withal. + +ORLANDO: +Who doth he gallop withal? + +ROSALIND: +With a thief to the gallows, for though he go as +softly as foot can fall, he thinks himself too soon there. + +ORLANDO: +Who stays it still withal? + +ROSALIND: +With lawyers in the vacation, for they sleep between +term and term and then they perceive not how Time moves. + +ORLANDO: +Where dwell you, pretty youth? + +ROSALIND: +With this shepherdess, my sister; here in the +skirts of the forest, like fringe upon a petticoat. + +ORLANDO: +Are you native of this place? + +ROSALIND: +As the cony that you see dwell where she is kindled. + +ORLANDO: +Your accent is something finer than you could +purchase in so removed a dwelling. + +ROSALIND: +I have been told so of many: but indeed an old +religious uncle of mine taught me to speak, who was +in his youth an inland man; one that knew courtship +too well, for there he fell in love. I have heard +him read many lectures against it, and I thank God +I am not a woman, to be touched with so many +giddy offences as he hath generally taxed their +whole sex withal. + +ORLANDO: +Can you remember any of the principal evils that he +laid to the charge of women? + +ROSALIND: +There were none principal; they were all like one +another as half-pence are, every one fault seeming +monstrous till his fellow fault came to match it. + +ORLANDO: +I prithee, recount some of them. + +ROSALIND: +No, I will not cast away my physic but on those that +are sick. There is a man haunts the forest, that +abuses our young plants with carving 'Rosalind' on +their barks; hangs odes upon hawthorns and elegies +on brambles, all, forsooth, deifying the name of +Rosalind: if I could meet that fancy-monger I would +give him some good counsel, for he seems to have the +quotidian of love upon him. + +ORLANDO: +I am he that is so love-shaked: I pray you tell me +your remedy. + +ROSALIND: +There is none of my uncle's marks upon you: he +taught me how to know a man in love; in which cage +of rushes I am sure you are not prisoner. + +ORLANDO: +What were his marks? + +ROSALIND: +A lean cheek, which you have not, a blue eye and +sunken, which you have not, an unquestionable +spirit, which you have not, a beard neglected, +which you have not; but I pardon you for that, for +simply your having in beard is a younger brother's +revenue: then your hose should be ungartered, your +bonnet unbanded, your sleeve unbuttoned, your shoe +untied and every thing about you demonstrating a +careless desolation; but you are no such man; you +are rather point-device in your accoutrements as +loving yourself than seeming the lover of any other. + +ORLANDO: +Fair youth, I would I could make thee believe I love. + +ROSALIND: +Me believe it! you may as soon make her that you +love believe it; which, I warrant, she is apter to +do than to confess she does: that is one of the +points in the which women still give the lie to +their consciences. But, in good sooth, are you he +that hangs the verses on the trees, wherein Rosalind +is so admired? + +ORLANDO: +I swear to thee, youth, by the white hand of +Rosalind, I am that he, that unfortunate he. + +ROSALIND: +But are you so much in love as your rhymes speak? + +ORLANDO: +Neither rhyme nor reason can express how much. + +ROSALIND: +Love is merely a madness, and, I tell you, deserves +as well a dark house and a whip as madmen do: and +the reason why they are not so punished and cured +is, that the lunacy is so ordinary that the whippers +are in love too. Yet I profess curing it by counsel. + +ORLANDO: +Did you ever cure any so? + +ROSALIND: +Yes, one, and in this manner. He was to imagine me +his love, his mistress; and I set him every day to +woo me: at which time would I, being but a moonish +youth, grieve, be effeminate, changeable, longing +and liking, proud, fantastical, apish, shallow, +inconstant, full of tears, full of smiles, for every +passion something and for no passion truly any +thing, as boys and women are for the most part +cattle of this colour; would now like him, now loathe +him; then entertain him, then forswear him; now weep +for him, then spit at him; that I drave my suitor +from his mad humour of love to a living humour of +madness; which was, to forswear the full stream of +the world, and to live in a nook merely monastic. +And thus I cured him; and this way will I take upon +me to wash your liver as clean as a sound sheep's +heart, that there shall not be one spot of love in't. + +ORLANDO: +I would not be cured, youth. + +ROSALIND: +I would cure you, if you would but call me Rosalind +and come every day to my cote and woo me. + +ORLANDO: +Now, by the faith of my love, I will: tell me +where it is. + +ROSALIND: +Go with me to it and I'll show it you and by the way +you shall tell me where in the forest you live. +Will you go? + +ORLANDO: +With all my heart, good youth. + +ROSALIND: +Nay you must call me Rosalind. Come, sister, will you go? + +TOUCHSTONE: +Come apace, good Audrey: I will fetch up your +goats, Audrey. And how, Audrey? am I the man yet? +doth my simple feature content you? + +AUDREY: +Your features! Lord warrant us! what features! + +TOUCHSTONE: +I am here with thee and thy goats, as the most +capricious poet, honest Ovid, was among the Goths. + +JAQUES: + +TOUCHSTONE: +When a man's verses cannot be understood, nor a +man's good wit seconded with the forward child +Understanding, it strikes a man more dead than a +great reckoning in a little room. Truly, I would +the gods had made thee poetical. + +AUDREY: +I do not know what 'poetical' is: is it honest in +deed and word? is it a true thing? + +TOUCHSTONE: +No, truly; for the truest poetry is the most +feigning; and lovers are given to poetry, and what +they swear in poetry may be said as lovers they do feign. + +AUDREY: +Do you wish then that the gods had made me poetical? + +TOUCHSTONE: +I do, truly; for thou swearest to me thou art +honest: now, if thou wert a poet, I might have some +hope thou didst feign. + +AUDREY: +Would you not have me honest? + +TOUCHSTONE: +No, truly, unless thou wert hard-favoured; for +honesty coupled to beauty is to have honey a sauce to sugar. + +JAQUES: + +AUDREY: +Well, I am not fair; and therefore I pray the gods +make me honest. + +TOUCHSTONE: +Truly, and to cast away honesty upon a foul slut +were to put good meat into an unclean dish. + +AUDREY: +I am not a slut, though I thank the gods I am foul. + +TOUCHSTONE: +Well, praised be the gods for thy foulness! +sluttishness may come hereafter. But be it as it may +be, I will marry thee, and to that end I have been +with Sir Oliver Martext, the vicar of the next +village, who hath promised to meet me in this place +of the forest and to couple us. + +JAQUES: + +AUDREY: +Well, the gods give us joy! + +TOUCHSTONE: +Amen. A man may, if he were of a fearful heart, +stagger in this attempt; for here we have no temple +but the wood, no assembly but horn-beasts. But what +though? Courage! As horns are odious, they are +necessary. It is said, 'many a man knows no end of +his goods:' right; many a man has good horns, and +knows no end of them. Well, that is the dowry of +his wife; 'tis none of his own getting. Horns? +Even so. Poor men alone? No, no; the noblest deer +hath them as huge as the rascal. Is the single man +therefore blessed? No: as a walled town is more +worthier than a village, so is the forehead of a +married man more honourable than the bare brow of a +bachelor; and by how much defence is better than no +skill, by so much is a horn more precious than to +want. Here comes Sir Oliver. +Sir Oliver Martext, you are well met: will you +dispatch us here under this tree, or shall we go +with you to your chapel? + +SIR OLIVER MARTEXT: +Is there none here to give the woman? + +TOUCHSTONE: +I will not take her on gift of any man. + +SIR OLIVER MARTEXT: +Truly, she must be given, or the marriage is not lawful. + +JAQUES: + +TOUCHSTONE: +Good even, good Master What-ye-call't: how do you, +sir? You are very well met: God 'ild you for your +last company: I am very glad to see you: even a +toy in hand here, sir: nay, pray be covered. + +JAQUES: +Will you be married, motley? + +TOUCHSTONE: +As the ox hath his bow, sir, the horse his curb and +the falcon her bells, so man hath his desires; and +as pigeons bill, so wedlock would be nibbling. + +JAQUES: +And will you, being a man of your breeding, be +married under a bush like a beggar? Get you to +church, and have a good priest that can tell you +what marriage is: this fellow will but join you +together as they join wainscot; then one of you will +prove a shrunk panel and, like green timber, warp, warp. + +TOUCHSTONE: + +JAQUES: +Go thou with me, and let me counsel thee. + +TOUCHSTONE: +'Come, sweet Audrey: +We must be married, or we must live in bawdry. +Farewell, good Master Oliver: not,-- +O sweet Oliver, +O brave Oliver, +Leave me not behind thee: but,-- +Wind away, +Begone, I say, +I will not to wedding with thee. + +SIR OLIVER MARTEXT: +'Tis no matter: ne'er a fantastical knave of them +all shall flout me out of my calling. + +ROSALIND: +Never talk to me; I will weep. + +CELIA: +Do, I prithee; but yet have the grace to consider +that tears do not become a man. + +ROSALIND: +But have I not cause to weep? + +CELIA: +As good cause as one would desire; therefore weep. + +ROSALIND: +His very hair is of the dissembling colour. + +CELIA: +Something browner than Judas's marry, his kisses are +Judas's own children. + +ROSALIND: +I' faith, his hair is of a good colour. + +CELIA: +An excellent colour: your chestnut was ever the only colour. + +ROSALIND: +And his kissing is as full of sanctity as the touch +of holy bread. + +CELIA: +He hath bought a pair of cast lips of Diana: a nun +of winter's sisterhood kisses not more religiously; +the very ice of chastity is in them. + +ROSALIND: +But why did he swear he would come this morning, and +comes not? + +CELIA: +Nay, certainly, there is no truth in him. + +ROSALIND: +Do you think so? + +CELIA: +Yes; I think he is not a pick-purse nor a +horse-stealer, but for his verity in love, I do +think him as concave as a covered goblet or a +worm-eaten nut. + +ROSALIND: +Not true in love? + +CELIA: +Yes, when he is in; but I think he is not in. + +ROSALIND: +You have heard him swear downright he was. + +CELIA: +'Was' is not 'is:' besides, the oath of a lover is +no stronger than the word of a tapster; they are +both the confirmer of false reckonings. He attends +here in the forest on the duke your father. + +ROSALIND: +I met the duke yesterday and had much question with +him: he asked me of what parentage I was; I told +him, of as good as he; so he laughed and let me go. +But what talk we of fathers, when there is such a +man as Orlando? + +CELIA: +O, that's a brave man! he writes brave verses, +speaks brave words, swears brave oaths and breaks +them bravely, quite traverse, athwart the heart of +his lover; as a puisny tilter, that spurs his horse +but on one side, breaks his staff like a noble +goose: but all's brave that youth mounts and folly +guides. Who comes here? + +CORIN: +Mistress and master, you have oft inquired +After the shepherd that complain'd of love, +Who you saw sitting by me on the turf, +Praising the proud disdainful shepherdess +That was his mistress. + +CELIA: +Well, and what of him? + +CORIN: +If you will see a pageant truly play'd, +Between the pale complexion of true love +And the red glow of scorn and proud disdain, +Go hence a little and I shall conduct you, +If you will mark it. + +ROSALIND: +O, come, let us remove: +The sight of lovers feedeth those in love. +Bring us to this sight, and you shall say +I'll prove a busy actor in their play. + +SILVIUS: +Sweet Phebe, do not scorn me; do not, Phebe; +Say that you love me not, but say not so +In bitterness. The common executioner, +Whose heart the accustom'd sight of death makes hard, +Falls not the axe upon the humbled neck +But first begs pardon: will you sterner be +Than he that dies and lives by bloody drops? + +PHEBE: +I would not be thy executioner: +I fly thee, for I would not injure thee. +Thou tell'st me there is murder in mine eye: +'Tis pretty, sure, and very probable, +That eyes, that are the frail'st and softest things, +Who shut their coward gates on atomies, +Should be call'd tyrants, butchers, murderers! +Now I do frown on thee with all my heart; +And if mine eyes can wound, now let them kill thee: +Now counterfeit to swoon; why now fall down; +Or if thou canst not, O, for shame, for shame, +Lie not, to say mine eyes are murderers! +Now show the wound mine eye hath made in thee: +Scratch thee but with a pin, and there remains +Some scar of it; lean but upon a rush, +The cicatrice and capable impressure +Thy palm some moment keeps; but now mine eyes, +Which I have darted at thee, hurt thee not, +Nor, I am sure, there is no force in eyes +That can do hurt. + +SILVIUS: +O dear Phebe, +If ever,--as that ever may be near,-- +You meet in some fresh cheek the power of fancy, +Then shall you know the wounds invisible +That love's keen arrows make. + +PHEBE: +But till that time +Come not thou near me: and when that time comes, +Afflict me with thy mocks, pity me not; +As till that time I shall not pity thee. + +ROSALIND: +And why, I pray you? Who might be your mother, +That you insult, exult, and all at once, +Over the wretched? What though you have no beauty,-- +As, by my faith, I see no more in you +Than without candle may go dark to bed-- +Must you be therefore proud and pitiless? +Why, what means this? Why do you look on me? +I see no more in you than in the ordinary +Of nature's sale-work. 'Od's my little life, +I think she means to tangle my eyes too! +No, faith, proud mistress, hope not after it: +'Tis not your inky brows, your black silk hair, +Your bugle eyeballs, nor your cheek of cream, +That can entame my spirits to your worship. +You foolish shepherd, wherefore do you follow her, +Like foggy south puffing with wind and rain? +You are a thousand times a properer man +Than she a woman: 'tis such fools as you +That makes the world full of ill-favour'd children: +'Tis not her glass, but you, that flatters her; +And out of you she sees herself more proper +Than any of her lineaments can show her. +But, mistress, know yourself: down on your knees, +And thank heaven, fasting, for a good man's love: +For I must tell you friendly in your ear, +Sell when you can: you are not for all markets: +Cry the man mercy; love him; take his offer: +Foul is most foul, being foul to be a scoffer. +So take her to thee, shepherd: fare you well. + +PHEBE: +Sweet youth, I pray you, chide a year together: +I had rather hear you chide than this man woo. + +ROSALIND: +He's fallen in love with your foulness and she'll +fall in love with my anger. If it be so, as fast as +she answers thee with frowning looks, I'll sauce her +with bitter words. Why look you so upon me? + +PHEBE: +For no ill will I bear you. + +ROSALIND: +I pray you, do not fall in love with me, +For I am falser than vows made in wine: +Besides, I like you not. If you will know my house, +'Tis at the tuft of olives here hard by. +Will you go, sister? Shepherd, ply her hard. +Come, sister. Shepherdess, look on him better, +And be not proud: though all the world could see, +None could be so abused in sight as he. +Come, to our flock. + +PHEBE: +Dead Shepherd, now I find thy saw of might, +'Who ever loved that loved not at first sight?' + +SILVIUS: +Sweet Phebe,-- + +PHEBE: +Ha, what say'st thou, Silvius? + +SILVIUS: +Sweet Phebe, pity me. + +PHEBE: +Why, I am sorry for thee, gentle Silvius. + +SILVIUS: +Wherever sorrow is, relief would be: +If you do sorrow at my grief in love, +By giving love your sorrow and my grief +Were both extermined. + +PHEBE: +Thou hast my love: is not that neighbourly? + +SILVIUS: +I would have you. + +PHEBE: +Why, that were covetousness. +Silvius, the time was that I hated thee, +And yet it is not that I bear thee love; +But since that thou canst talk of love so well, +Thy company, which erst was irksome to me, +I will endure, and I'll employ thee too: +But do not look for further recompense +Than thine own gladness that thou art employ'd. + +SILVIUS: +So holy and so perfect is my love, +And I in such a poverty of grace, +That I shall think it a most plenteous crop +To glean the broken ears after the man +That the main harvest reaps: loose now and then +A scatter'd smile, and that I'll live upon. + +PHEBE: +Know'st now the youth that spoke to me erewhile? + +SILVIUS: +Not very well, but I have met him oft; +And he hath bought the cottage and the bounds +That the old carlot once was master of. + +PHEBE: +Think not I love him, though I ask for him: +'Tis but a peevish boy; yet he talks well; +But what care I for words? yet words do well +When he that speaks them pleases those that hear. +It is a pretty youth: not very pretty: +But, sure, he's proud, and yet his pride becomes him: +He'll make a proper man: the best thing in him +Is his complexion; and faster than his tongue +Did make offence his eye did heal it up. +He is not very tall; yet for his years he's tall: +His leg is but so so; and yet 'tis well: +There was a pretty redness in his lip, +A little riper and more lusty red +Than that mix'd in his cheek; 'twas just the difference +Between the constant red and mingled damask. +There be some women, Silvius, had they mark'd him +In parcels as I did, would have gone near +To fall in love with him; but, for my part, +I love him not nor hate him not; and yet +I have more cause to hate him than to love him: +For what had he to do to chide at me? +He said mine eyes were black and my hair black: +And, now I am remember'd, scorn'd at me: +I marvel why I answer'd not again: +But that's all one; omittance is no quittance. +I'll write to him a very taunting letter, +And thou shalt bear it: wilt thou, Silvius? + +SILVIUS: +Phebe, with all my heart. + +PHEBE: +I'll write it straight; +The matter's in my head and in my heart: +I will be bitter with him and passing short. +Go with me, Silvius. + +JAQUES: +I prithee, pretty youth, let me be better acquainted +with thee. + +ROSALIND: +They say you are a melancholy fellow. + +JAQUES: +I am so; I do love it better than laughing. + +ROSALIND: +Those that are in extremity of either are abominable +fellows and betray themselves to every modern +censure worse than drunkards. + +JAQUES: +Why, 'tis good to be sad and say nothing. + +ROSALIND: +Why then, 'tis good to be a post. + +JAQUES: +I have neither the scholar's melancholy, which is +emulation, nor the musician's, which is fantastical, +nor the courtier's, which is proud, nor the +soldier's, which is ambitious, nor the lawyer's, +which is politic, nor the lady's, which is nice, nor +the lover's, which is all these: but it is a +melancholy of mine own, compounded of many simples, +extracted from many objects, and indeed the sundry's +contemplation of my travels, in which my often +rumination wraps me m a most humorous sadness. + +ROSALIND: +A traveller! By my faith, you have great reason to +be sad: I fear you have sold your own lands to see +other men's; then, to have seen much and to have +nothing, is to have rich eyes and poor hands. + +JAQUES: +Yes, I have gained my experience. + +ROSALIND: +And your experience makes you sad: I had rather have +a fool to make me merry than experience to make me +sad; and to travel for it too! + +ORLANDO: +Good day and happiness, dear Rosalind! + +JAQUES: +Nay, then, God be wi' you, an you talk in blank verse. + +ROSALIND: +Farewell, Monsieur Traveller: look you lisp and +wear strange suits, disable all the benefits of your +own country, be out of love with your nativity and +almost chide God for making you that countenance you +are, or I will scarce think you have swam in a +gondola. Why, how now, Orlando! where have you been +all this while? You a lover! An you serve me such +another trick, never come in my sight more. + +ORLANDO: +My fair Rosalind, I come within an hour of my promise. + +ROSALIND: +Break an hour's promise in love! He that will +divide a minute into a thousand parts and break but +a part of the thousandth part of a minute in the +affairs of love, it may be said of him that Cupid +hath clapped him o' the shoulder, but I'll warrant +him heart-whole. + +ORLANDO: +Pardon me, dear Rosalind. + +ROSALIND: +Nay, an you be so tardy, come no more in my sight: I +had as lief be wooed of a snail. + +ORLANDO: +Of a snail? + +ROSALIND: +Ay, of a snail; for though he comes slowly, he +carries his house on his head; a better jointure, +I think, than you make a woman: besides he brings +his destiny with him. + +ORLANDO: +What's that? + +ROSALIND: +Why, horns, which such as you are fain to be +beholding to your wives for: but he comes armed in +his fortune and prevents the slander of his wife. + +ORLANDO: +Virtue is no horn-maker; and my Rosalind is virtuous. + +ROSALIND: +And I am your Rosalind. + +CELIA: +It pleases him to call you so; but he hath a +Rosalind of a better leer than you. + +ROSALIND: +Come, woo me, woo me, for now I am in a holiday +humour and like enough to consent. What would you +say to me now, an I were your very very Rosalind? + +ORLANDO: +I would kiss before I spoke. + +ROSALIND: +Nay, you were better speak first, and when you were +gravelled for lack of matter, you might take +occasion to kiss. Very good orators, when they are +out, they will spit; and for lovers lacking--God +warn us!--matter, the cleanliest shift is to kiss. + +ORLANDO: +How if the kiss be denied? + +ROSALIND: +Then she puts you to entreaty, and there begins new matter. + +ORLANDO: +Who could be out, being before his beloved mistress? + +ROSALIND: +Marry, that should you, if I were your mistress, or +I should think my honesty ranker than my wit. + +ORLANDO: +What, of my suit? + +ROSALIND: +Not out of your apparel, and yet out of your suit. +Am not I your Rosalind? + +ORLANDO: +I take some joy to say you are, because I would be +talking of her. + +ROSALIND: +Well in her person I say I will not have you. + +ORLANDO: +Then in mine own person I die. + +ROSALIND: +No, faith, die by attorney. The poor world is +almost six thousand years old, and in all this time +there was not any man died in his own person, +videlicit, in a love-cause. Troilus had his brains +dashed out with a Grecian club; yet he did what he +could to die before, and he is one of the patterns +of love. Leander, he would have lived many a fair +year, though Hero had turned nun, if it had not been +for a hot midsummer night; for, good youth, he went +but forth to wash him in the Hellespont and being +taken with the cramp was drowned and the foolish +coroners of that age found it was 'Hero of Sestos.' +But these are all lies: men have died from time to +time and worms have eaten them, but not for love. + +ORLANDO: +I would not have my right Rosalind of this mind, +for, I protest, her frown might kill me. + +ROSALIND: +By this hand, it will not kill a fly. But come, now +I will be your Rosalind in a more coming-on +disposition, and ask me what you will. I will grant +it. + +ORLANDO: +Then love me, Rosalind. + +ROSALIND: +Yes, faith, will I, Fridays and Saturdays and all. + +ORLANDO: +And wilt thou have me? + +ROSALIND: +Ay, and twenty such. + +ORLANDO: +What sayest thou? + +ROSALIND: +Are you not good? + +ORLANDO: +I hope so. + +ROSALIND: +Why then, can one desire too much of a good thing? +Come, sister, you shall be the priest and marry us. +Give me your hand, Orlando. What do you say, sister? + +ORLANDO: +Pray thee, marry us. + +CELIA: +I cannot say the words. + +ROSALIND: +You must begin, 'Will you, Orlando--' + +CELIA: +Go to. Will you, Orlando, have to wife this Rosalind? + +ORLANDO: +I will. + +ROSALIND: +Ay, but when? + +ORLANDO: +Why now; as fast as she can marry us. + +ROSALIND: +Then you must say 'I take thee, Rosalind, for wife.' + +ORLANDO: +I take thee, Rosalind, for wife. + +ROSALIND: +I might ask you for your commission; but I do take +thee, Orlando, for my husband: there's a girl goes +before the priest; and certainly a woman's thought +runs before her actions. + +ORLANDO: +So do all thoughts; they are winged. + +ROSALIND: +Now tell me how long you would have her after you +have possessed her. + +ORLANDO: +For ever and a day. + +ROSALIND: +Say 'a day,' without the 'ever.' No, no, Orlando; +men are April when they woo, December when they wed: +maids are May when they are maids, but the sky +changes when they are wives. I will be more jealous +of thee than a Barbary cock-pigeon over his hen, +more clamorous than a parrot against rain, more +new-fangled than an ape, more giddy in my desires +than a monkey: I will weep for nothing, like Diana +in the fountain, and I will do that when you are +disposed to be merry; I will laugh like a hyen, and +that when thou art inclined to sleep. + +ORLANDO: +But will my Rosalind do so? + +ROSALIND: +By my life, she will do as I do. + +ORLANDO: +O, but she is wise. + +ROSALIND: +Or else she could not have the wit to do this: the +wiser, the waywarder: make the doors upon a woman's +wit and it will out at the casement; shut that and +'twill out at the key-hole; stop that, 'twill fly +with the smoke out at the chimney. + +ORLANDO: +A man that had a wife with such a wit, he might say +'Wit, whither wilt?' + +ROSALIND: +Nay, you might keep that cheque for it till you met +your wife's wit going to your neighbour's bed. + +ORLANDO: +And what wit could wit have to excuse that? + +ROSALIND: +Marry, to say she came to seek you there. You shall +never take her without her answer, unless you take +her without her tongue. O, that woman that cannot +make her fault her husband's occasion, let her +never nurse her child herself, for she will breed +it like a fool! + +ORLANDO: +For these two hours, Rosalind, I will leave thee. + +ROSALIND: +Alas! dear love, I cannot lack thee two hours. + +ORLANDO: +I must attend the duke at dinner: by two o'clock I +will be with thee again. + +ROSALIND: +Ay, go your ways, go your ways; I knew what you +would prove: my friends told me as much, and I +thought no less: that flattering tongue of yours +won me: 'tis but one cast away, and so, come, +death! Two o'clock is your hour? + +ORLANDO: +Ay, sweet Rosalind. + +ROSALIND: +By my troth, and in good earnest, and so God mend +me, and by all pretty oaths that are not dangerous, +if you break one jot of your promise or come one +minute behind your hour, I will think you the most +pathetical break-promise and the most hollow lover +and the most unworthy of her you call Rosalind that +may be chosen out of the gross band of the +unfaithful: therefore beware my censure and keep +your promise. + +ORLANDO: +With no less religion than if thou wert indeed my +Rosalind: so adieu. + +ROSALIND: +Well, Time is the old justice that examines all such +offenders, and let Time try: adieu. + +CELIA: +You have simply misused our sex in your love-prate: +we must have your doublet and hose plucked over your +head, and show the world what the bird hath done to +her own nest. + +ROSALIND: +O coz, coz, coz, my pretty little coz, that thou +didst know how many fathom deep I am in love! But +it cannot be sounded: my affection hath an unknown +bottom, like the bay of Portugal. + +CELIA: +Or rather, bottomless, that as fast as you pour +affection in, it runs out. + +ROSALIND: +No, that same wicked bastard of Venus that was begot +of thought, conceived of spleen and born of madness, +that blind rascally boy that abuses every one's eyes +because his own are out, let him be judge how deep I +am in love. I'll tell thee, Aliena, I cannot be out +of the sight of Orlando: I'll go find a shadow and +sigh till he come. + +CELIA: +And I'll sleep. + +JAQUES: +Which is he that killed the deer? + +A Lord: +Sir, it was I. + +JAQUES: +Let's present him to the duke, like a Roman +conqueror; and it would do well to set the deer's +horns upon his head, for a branch of victory. Have +you no song, forester, for this purpose? + +Forester: +Yes, sir. + +JAQUES: +Sing it: 'tis no matter how it be in tune, so it +make noise enough. + +Forester: +What shall he have that kill'd the deer? +His leather skin and horns to wear. +Then sing him home; +Take thou no scorn to wear the horn; +It was a crest ere thou wast born: +Thy father's father wore it, +And thy father bore it: +The horn, the horn, the lusty horn +Is not a thing to laugh to scorn. + +ROSALIND: +How say you now? Is it not past two o'clock? and +here much Orlando! + +CELIA: +I warrant you, with pure love and troubled brain, he +hath ta'en his bow and arrows and is gone forth to +sleep. Look, who comes here. + +SILVIUS: +My errand is to you, fair youth; +My gentle Phebe bid me give you this: +I know not the contents; but, as I guess +By the stern brow and waspish action +Which she did use as she was writing of it, +It bears an angry tenor: pardon me: +I am but as a guiltless messenger. + +ROSALIND: +Patience herself would startle at this letter +And play the swaggerer; bear this, bear all: +She says I am not fair, that I lack manners; +She calls me proud, and that she could not love me, +Were man as rare as phoenix. 'Od's my will! +Her love is not the hare that I do hunt: +Why writes she so to me? Well, shepherd, well, +This is a letter of your own device. + +SILVIUS: +No, I protest, I know not the contents: +Phebe did write it. + +ROSALIND: +Come, come, you are a fool +And turn'd into the extremity of love. +I saw her hand: she has a leathern hand. +A freestone-colour'd hand; I verily did think +That her old gloves were on, but 'twas her hands: +She has a huswife's hand; but that's no matter: +I say she never did invent this letter; +This is a man's invention and his hand. + +SILVIUS: +Sure, it is hers. + +ROSALIND: +Why, 'tis a boisterous and a cruel style. +A style for-challengers; why, she defies me, +Like Turk to Christian: women's gentle brain +Could not drop forth such giant-rude invention +Such Ethiope words, blacker in their effect +Than in their countenance. Will you hear the letter? + +SILVIUS: +So please you, for I never heard it yet; +Yet heard too much of Phebe's cruelty. + +ROSALIND: +She Phebes me: mark how the tyrant writes. +Art thou god to shepherd turn'd, +That a maiden's heart hath burn'd? +Can a woman rail thus? + +SILVIUS: +Call you this railing? + +ROSALIND: + +SILVIUS: +Call you this chiding? + +CELIA: +Alas, poor shepherd! + +ROSALIND: +Do you pity him? no, he deserves no pity. Wilt +thou love such a woman? What, to make thee an +instrument and play false strains upon thee! not to +be endured! Well, go your way to her, for I see +love hath made thee a tame snake, and say this to +her: that if she love me, I charge her to love +thee; if she will not, I will never have her unless +thou entreat for her. If you be a true lover, +hence, and not a word; for here comes more company. + +OLIVER: +Good morrow, fair ones: pray you, if you know, +Where in the purlieus of this forest stands +A sheep-cote fenced about with olive trees? + +CELIA: +West of this place, down in the neighbour bottom: +The rank of osiers by the murmuring stream +Left on your right hand brings you to the place. +But at this hour the house doth keep itself; +There's none within. + +OLIVER: +If that an eye may profit by a tongue, +Then should I know you by description; +Such garments and such years: 'The boy is fair, +Of female favour, and bestows himself +Like a ripe sister: the woman low +And browner than her brother.' Are not you +The owner of the house I did inquire for? + +CELIA: +It is no boast, being ask'd, to say we are. + +OLIVER: +Orlando doth commend him to you both, +And to that youth he calls his Rosalind +He sends this bloody napkin. Are you he? + +ROSALIND: +I am: what must we understand by this? + +OLIVER: +Some of my shame; if you will know of me +What man I am, and how, and why, and where +This handkercher was stain'd. + +CELIA: +I pray you, tell it. + +OLIVER: +When last the young Orlando parted from you +He left a promise to return again +Within an hour, and pacing through the forest, +Chewing the food of sweet and bitter fancy, +Lo, what befell! he threw his eye aside, +And mark what object did present itself: +Under an oak, whose boughs were moss'd with age +And high top bald with dry antiquity, +A wretched ragged man, o'ergrown with hair, +Lay sleeping on his back: about his neck +A green and gilded snake had wreathed itself, +Who with her head nimble in threats approach'd +The opening of his mouth; but suddenly, +Seeing Orlando, it unlink'd itself, +And with indented glides did slip away +Into a bush: under which bush's shade +A lioness, with udders all drawn dry, +Lay couching, head on ground, with catlike watch, +When that the sleeping man should stir; for 'tis +The royal disposition of that beast +To prey on nothing that doth seem as dead: +This seen, Orlando did approach the man +And found it was his brother, his elder brother. + +CELIA: +O, I have heard him speak of that same brother; +And he did render him the most unnatural +That lived amongst men. + +OLIVER: +And well he might so do, +For well I know he was unnatural. + +ROSALIND: +But, to Orlando: did he leave him there, +Food to the suck'd and hungry lioness? + +OLIVER: +Twice did he turn his back and purposed so; +But kindness, nobler ever than revenge, +And nature, stronger than his just occasion, +Made him give battle to the lioness, +Who quickly fell before him: in which hurtling +From miserable slumber I awaked. + +CELIA: +Are you his brother? + +ROSALIND: +Wast you he rescued? + +CELIA: +Was't you that did so oft contrive to kill him? + +OLIVER: +'Twas I; but 'tis not I I do not shame +To tell you what I was, since my conversion +So sweetly tastes, being the thing I am. + +ROSALIND: +But, for the bloody napkin? + +OLIVER: +By and by. +When from the first to last betwixt us two +Tears our recountments had most kindly bathed, +As how I came into that desert place:-- +In brief, he led me to the gentle duke, +Who gave me fresh array and entertainment, +Committing me unto my brother's love; +Who led me instantly unto his cave, +There stripp'd himself, and here upon his arm +The lioness had torn some flesh away, +Which all this while had bled; and now he fainted +And cried, in fainting, upon Rosalind. +Brief, I recover'd him, bound up his wound; +And, after some small space, being strong at heart, +He sent me hither, stranger as I am, +To tell this story, that you might excuse +His broken promise, and to give this napkin +Dyed in his blood unto the shepherd youth +That he in sport doth call his Rosalind. + +CELIA: +Why, how now, Ganymede! sweet Ganymede! + +OLIVER: +Many will swoon when they do look on blood. + +CELIA: +There is more in it. Cousin Ganymede! + +OLIVER: +Look, he recovers. + +ROSALIND: +I would I were at home. + +CELIA: +We'll lead you thither. +I pray you, will you take him by the arm? + +OLIVER: +Be of good cheer, youth: you a man! you lack a +man's heart. + +ROSALIND: +I do so, I confess it. Ah, sirrah, a body would +think this was well counterfeited! I pray you, tell +your brother how well I counterfeited. Heigh-ho! + +OLIVER: +This was not counterfeit: there is too great +testimony in your complexion that it was a passion +of earnest. + +ROSALIND: +Counterfeit, I assure you. + +OLIVER: +Well then, take a good heart and counterfeit to be a man. + +ROSALIND: +So I do: but, i' faith, I should have been a woman by right. + +CELIA: +Come, you look paler and paler: pray you, draw +homewards. Good sir, go with us. + +OLIVER: +That will I, for I must bear answer back +How you excuse my brother, Rosalind. + +ROSALIND: +I shall devise something: but, I pray you, commend +my counterfeiting to him. Will you go? + +TOUCHSTONE: +We shall find a time, Audrey; patience, gentle Audrey. + +AUDREY: +Faith, the priest was good enough, for all the old +gentleman's saying. + +TOUCHSTONE: +A most wicked Sir Oliver, Audrey, a most vile +Martext. But, Audrey, there is a youth here in the +forest lays claim to you. + +AUDREY: +Ay, I know who 'tis; he hath no interest in me in +the world: here comes the man you mean. + +TOUCHSTONE: +It is meat and drink to me to see a clown: by my +troth, we that have good wits have much to answer +for; we shall be flouting; we cannot hold. + +WILLIAM: +Good even, Audrey. + +AUDREY: +God ye good even, William. + +WILLIAM: +And good even to you, sir. + +TOUCHSTONE: +Good even, gentle friend. Cover thy head, cover thy +head; nay, prithee, be covered. How old are you, friend? + +WILLIAM: +Five and twenty, sir. + +TOUCHSTONE: +A ripe age. Is thy name William? + +WILLIAM: +William, sir. + +TOUCHSTONE: +A fair name. Wast born i' the forest here? + +WILLIAM: +Ay, sir, I thank God. + +TOUCHSTONE: +'Thank God;' a good answer. Art rich? + +WILLIAM: +Faith, sir, so so. + +TOUCHSTONE: +'So so' is good, very good, very excellent good; and +yet it is not; it is but so so. Art thou wise? + +WILLIAM: +Ay, sir, I have a pretty wit. + +TOUCHSTONE: +Why, thou sayest well. I do now remember a saying, +'The fool doth think he is wise, but the wise man +knows himself to be a fool.' The heathen +philosopher, when he had a desire to eat a grape, +would open his lips when he put it into his mouth; +meaning thereby that grapes were made to eat and +lips to open. You do love this maid? + +WILLIAM: +I do, sir. + +TOUCHSTONE: +Give me your hand. Art thou learned? + +WILLIAM: +No, sir. + +TOUCHSTONE: +Then learn this of me: to have, is to have; for it +is a figure in rhetoric that drink, being poured out +of a cup into a glass, by filling the one doth empty +the other; for all your writers do consent that ipse +is he: now, you are not ipse, for I am he. + +WILLIAM: +Which he, sir? + +TOUCHSTONE: +He, sir, that must marry this woman. Therefore, you +clown, abandon,--which is in the vulgar leave,--the +society,--which in the boorish is company,--of this +female,--which in the common is woman; which +together is, abandon the society of this female, or, +clown, thou perishest; or, to thy better +understanding, diest; or, to wit I kill thee, make +thee away, translate thy life into death, thy +liberty into bondage: I will deal in poison with +thee, or in bastinado, or in steel; I will bandy +with thee in faction; I will o'errun thee with +policy; I will kill thee a hundred and fifty ways: +therefore tremble and depart. + +AUDREY: +Do, good William. + +WILLIAM: +God rest you merry, sir. + +CORIN: +Our master and mistress seeks you; come, away, away! + +TOUCHSTONE: +Trip, Audrey! trip, Audrey! I attend, I attend. + +ORLANDO: +Is't possible that on so little acquaintance you +should like her? that but seeing you should love +her? and loving woo? and, wooing, she should +grant? and will you persever to enjoy her? + +OLIVER: +Neither call the giddiness of it in question, the +poverty of her, the small acquaintance, my sudden +wooing, nor her sudden consenting; but say with me, +I love Aliena; say with her that she loves me; +consent with both that we may enjoy each other: it +shall be to your good; for my father's house and all +the revenue that was old Sir Rowland's will I +estate upon you, and here live and die a shepherd. + +ORLANDO: +You have my consent. Let your wedding be to-morrow: +thither will I invite the duke and all's contented +followers. Go you and prepare Aliena; for look +you, here comes my Rosalind. + +ROSALIND: +God save you, brother. + +OLIVER: +And you, fair sister. + +ROSALIND: +O, my dear Orlando, how it grieves me to see thee +wear thy heart in a scarf! + +ORLANDO: +It is my arm. + +ROSALIND: +I thought thy heart had been wounded with the claws +of a lion. + +ORLANDO: +Wounded it is, but with the eyes of a lady. + +ROSALIND: +Did your brother tell you how I counterfeited to +swoon when he showed me your handkerchief? + +ORLANDO: +Ay, and greater wonders than that. + +ROSALIND: +O, I know where you are: nay, 'tis true: there was +never any thing so sudden but the fight of two rams +and Caesar's thrasonical brag of 'I came, saw, and +overcame:' for your brother and my sister no sooner +met but they looked, no sooner looked but they +loved, no sooner loved but they sighed, no sooner +sighed but they asked one another the reason, no +sooner knew the reason but they sought the remedy; +and in these degrees have they made a pair of stairs +to marriage which they will climb incontinent, or +else be incontinent before marriage: they are in +the very wrath of love and they will together; clubs +cannot part them. + +ORLANDO: +They shall be married to-morrow, and I will bid the +duke to the nuptial. But, O, how bitter a thing it +is to look into happiness through another man's +eyes! By so much the more shall I to-morrow be at +the height of heart-heaviness, by how much I shall +think my brother happy in having what he wishes for. + +ROSALIND: +Why then, to-morrow I cannot serve your turn for Rosalind? + +ORLANDO: +I can live no longer by thinking. + +ROSALIND: +I will weary you then no longer with idle talking. +Know of me then, for now I speak to some purpose, +that I know you are a gentleman of good conceit: I +speak not this that you should bear a good opinion +of my knowledge, insomuch I say I know you are; +neither do I labour for a greater esteem than may in +some little measure draw a belief from you, to do +yourself good and not to grace me. Believe then, if +you please, that I can do strange things: I have, +since I was three year old, conversed with a +magician, most profound in his art and yet not +damnable. If you do love Rosalind so near the heart +as your gesture cries it out, when your brother +marries Aliena, shall you marry her: I know into +what straits of fortune she is driven; and it is +not impossible to me, if it appear not inconvenient +to you, to set her before your eyes tomorrow human +as she is and without any danger. + +ORLANDO: +Speakest thou in sober meanings? + +ROSALIND: +By my life, I do; which I tender dearly, though I +say I am a magician. Therefore, put you in your +best array: bid your friends; for if you will be +married to-morrow, you shall, and to Rosalind, if you will. +Look, here comes a lover of mine and a lover of hers. + +PHEBE: +Youth, you have done me much ungentleness, +To show the letter that I writ to you. + +ROSALIND: +I care not if I have: it is my study +To seem despiteful and ungentle to you: +You are there followed by a faithful shepherd; +Look upon him, love him; he worships you. + +PHEBE: +Good shepherd, tell this youth what 'tis to love. + +SILVIUS: +It is to be all made of sighs and tears; +And so am I for Phebe. + +PHEBE: +And I for Ganymede. + +ORLANDO: +And I for Rosalind. + +ROSALIND: +And I for no woman. + +SILVIUS: +It is to be all made of faith and service; +And so am I for Phebe. + +PHEBE: +And I for Ganymede. + +ORLANDO: +And I for Rosalind. + +ROSALIND: +And I for no woman. + +SILVIUS: +It is to be all made of fantasy, +All made of passion and all made of wishes, +All adoration, duty, and observance, +All humbleness, all patience and impatience, +All purity, all trial, all observance; +And so am I for Phebe. + +PHEBE: +And so am I for Ganymede. + +ORLANDO: +And so am I for Rosalind. + +ROSALIND: +And so am I for no woman. + +PHEBE: +If this be so, why blame you me to love you? + +SILVIUS: +If this be so, why blame you me to love you? + +ORLANDO: +If this be so, why blame you me to love you? + +ROSALIND: +Who do you speak to, 'Why blame you me to love you?' + +ORLANDO: +To her that is not here, nor doth not hear. + +ROSALIND: +Pray you, no more of this; 'tis like the howling +of Irish wolves against the moon. +I will help you, if I can: +I would love you, if I could. To-morrow meet me all together. +I will marry you, if ever I marry woman, and I'll be +married to-morrow: +I will satisfy you, if ever I satisfied man, and you +shall be married to-morrow: +I will content you, if what pleases you contents +you, and you shall be married to-morrow. +As you love Rosalind, meet: +as you love Phebe, meet: and as I love no woman, +I'll meet. So fare you well: I have left you commands. + +SILVIUS: +I'll not fail, if I live. + +PHEBE: +Nor I. + +ORLANDO: +Nor I. + +TOUCHSTONE: +To-morrow is the joyful day, Audrey; to-morrow will +we be married. + +AUDREY: +I do desire it with all my heart; and I hope it is +no dishonest desire to desire to be a woman of the +world. Here comes two of the banished duke's pages. + +First Page: +Well met, honest gentleman. + +TOUCHSTONE: +By my troth, well met. Come, sit, sit, and a song. + +Second Page: +We are for you: sit i' the middle. + +First Page: +Shall we clap into't roundly, without hawking or +spitting or saying we are hoarse, which are the only +prologues to a bad voice? + +Second Page: +I'faith, i'faith; and both in a tune, like two +gipsies on a horse. +It was a lover and his lass, +With a hey, and a ho, and a hey nonino, +That o'er the green corn-field did pass +In the spring time, the only pretty ring time, +When birds do sing, hey ding a ding, ding: +Sweet lovers love the spring. +Between the acres of the rye, +With a hey, and a ho, and a hey nonino +These pretty country folks would lie, +In spring time, &c. +This carol they began that hour, +With a hey, and a ho, and a hey nonino, +How that a life was but a flower +In spring time, &c. +And therefore take the present time, +With a hey, and a ho, and a hey nonino; +For love is crowned with the prime +In spring time, &c. + +TOUCHSTONE: +Truly, young gentlemen, though there was no great +matter in the ditty, yet the note was very +untuneable. + +First Page: +You are deceived, sir: we kept time, we lost not our time. + +TOUCHSTONE: +By my troth, yes; I count it but time lost to hear +such a foolish song. God be wi' you; and God mend +your voices! Come, Audrey. + +DUKE SENIOR: +Dost thou believe, Orlando, that the boy +Can do all this that he hath promised? + +ORLANDO: +I sometimes do believe, and sometimes do not; +As those that fear they hope, and know they fear. + +ROSALIND: +Patience once more, whiles our compact is urged: +You say, if I bring in your Rosalind, +You will bestow her on Orlando here? + +DUKE SENIOR: +That would I, had I kingdoms to give with her. + +ROSALIND: +And you say, you will have her, when I bring her? + +ORLANDO: +That would I, were I of all kingdoms king. + +ROSALIND: +You say, you'll marry me, if I be willing? + +PHEBE: +That will I, should I die the hour after. + +ROSALIND: +But if you do refuse to marry me, +You'll give yourself to this most faithful shepherd? + +PHEBE: +So is the bargain. + +ROSALIND: +You say, that you'll have Phebe, if she will? + +SILVIUS: +Though to have her and death were both one thing. + +ROSALIND: +I have promised to make all this matter even. +Keep you your word, O duke, to give your daughter; +You yours, Orlando, to receive his daughter: +Keep your word, Phebe, that you'll marry me, +Or else refusing me, to wed this shepherd: +Keep your word, Silvius, that you'll marry her. +If she refuse me: and from hence I go, +To make these doubts all even. + +DUKE SENIOR: +I do remember in this shepherd boy +Some lively touches of my daughter's favour. + +ORLANDO: +My lord, the first time that I ever saw him +Methought he was a brother to your daughter: +But, my good lord, this boy is forest-born, +And hath been tutor'd in the rudiments +Of many desperate studies by his uncle, +Whom he reports to be a great magician, +Obscured in the circle of this forest. + +JAQUES: +There is, sure, another flood toward, and these +couples are coming to the ark. Here comes a pair of +very strange beasts, which in all tongues are called fools. + +TOUCHSTONE: +Salutation and greeting to you all! + +JAQUES: +Good my lord, bid him welcome: this is the +motley-minded gentleman that I have so often met in +the forest: he hath been a courtier, he swears. + +TOUCHSTONE: +If any man doubt that, let him put me to my +purgation. I have trod a measure; I have flattered +a lady; I have been politic with my friend, smooth +with mine enemy; I have undone three tailors; I have +had four quarrels, and like to have fought one. + +JAQUES: +And how was that ta'en up? + +TOUCHSTONE: +Faith, we met, and found the quarrel was upon the +seventh cause. + +JAQUES: +How seventh cause? Good my lord, like this fellow. + +DUKE SENIOR: +I like him very well. + +TOUCHSTONE: +God 'ild you, sir; I desire you of the like. I +press in here, sir, amongst the rest of the country +copulatives, to swear and to forswear: according as +marriage binds and blood breaks: a poor virgin, +sir, an ill-favoured thing, sir, but mine own; a poor +humour of mine, sir, to take that that no man else +will: rich honesty dwells like a miser, sir, in a +poor house; as your pearl in your foul oyster. + +DUKE SENIOR: +By my faith, he is very swift and sententious. + +TOUCHSTONE: +According to the fool's bolt, sir, and such dulcet diseases. + +JAQUES: +But, for the seventh cause; how did you find the +quarrel on the seventh cause? + +TOUCHSTONE: +Upon a lie seven times removed:--bear your body more +seeming, Audrey:--as thus, sir. I did dislike the +cut of a certain courtier's beard: he sent me word, +if I said his beard was not cut well, he was in the +mind it was: this is called the Retort Courteous. +If I sent him word again 'it was not well cut,' he +would send me word, he cut it to please himself: +this is called the Quip Modest. If again 'it was +not well cut,' he disabled my judgment: this is +called the Reply Churlish. If again 'it was not +well cut,' he would answer, I spake not true: this +is called the Reproof Valiant. If again 'it was not +well cut,' he would say I lied: this is called the +Counter-cheque Quarrelsome: and so to the Lie +Circumstantial and the Lie Direct. + +JAQUES: +And how oft did you say his beard was not well cut? + +TOUCHSTONE: +I durst go no further than the Lie Circumstantial, +nor he durst not give me the Lie Direct; and so we +measured swords and parted. + +JAQUES: +Can you nominate in order now the degrees of the lie? + +TOUCHSTONE: +O sir, we quarrel in print, by the book; as you have +books for good manners: I will name you the degrees. +The first, the Retort Courteous; the second, the +Quip Modest; the third, the Reply Churlish; the +fourth, the Reproof Valiant; the fifth, the +Countercheque Quarrelsome; the sixth, the Lie with +Circumstance; the seventh, the Lie Direct. All +these you may avoid but the Lie Direct; and you may +avoid that too, with an If. I knew when seven +justices could not take up a quarrel, but when the +parties were met themselves, one of them thought but +of an If, as, 'If you said so, then I said so;' and +they shook hands and swore brothers. Your If is the +only peacemaker; much virtue in If. + +JAQUES: +Is not this a rare fellow, my lord? he's as good at +any thing and yet a fool. + +DUKE SENIOR: +He uses his folly like a stalking-horse and under +the presentation of that he shoots his wit. + +HYMEN: +Then is there mirth in heaven, +When earthly things made even +Atone together. +Good duke, receive thy daughter +Hymen from heaven brought her, +Yea, brought her hither, +That thou mightst join her hand with his +Whose heart within his bosom is. + +ROSALIND: + +DUKE SENIOR: +If there be truth in sight, you are my daughter. + +ORLANDO: +If there be truth in sight, you are my Rosalind. + +PHEBE: +If sight and shape be true, +Why then, my love adieu! + +ROSALIND: +I'll have no father, if you be not he: +I'll have no husband, if you be not he: +Nor ne'er wed woman, if you be not she. + +HYMEN: +Peace, ho! I bar confusion: +'Tis I must make conclusion +Of these most strange events: +Here's eight that must take hands +To join in Hymen's bands, +If truth holds true contents. +You and you no cross shall part: +You and you are heart in heart +You to his love must accord, +Or have a woman to your lord: +You and you are sure together, +As the winter to foul weather. +Whiles a wedlock-hymn we sing, +Feed yourselves with questioning; +That reason wonder may diminish, +How thus we met, and these things finish. +Wedding is great Juno's crown: +O blessed bond of board and bed! +'Tis Hymen peoples every town; +High wedlock then be honoured: +Honour, high honour and renown, +To Hymen, god of every town! + +DUKE SENIOR: +O my dear niece, welcome thou art to me! +Even daughter, welcome, in no less degree. + +PHEBE: +I will not eat my word, now thou art mine; +Thy faith my fancy to thee doth combine. + +JAQUES DE BOYS: +Let me have audience for a word or two: +I am the second son of old Sir Rowland, +That bring these tidings to this fair assembly. +Duke Frederick, hearing how that every day +Men of great worth resorted to this forest, +Address'd a mighty power; which were on foot, +In his own conduct, purposely to take +His brother here and put him to the sword: +And to the skirts of this wild wood he came; +Where meeting with an old religious man, +After some question with him, was converted +Both from his enterprise and from the world, +His crown bequeathing to his banish'd brother, +And all their lands restored to them again +That were with him exiled. This to be true, +I do engage my life. + +DUKE SENIOR: +Welcome, young man; +Thou offer'st fairly to thy brothers' wedding: +To one his lands withheld, and to the other +A land itself at large, a potent dukedom. +First, in this forest, let us do those ends +That here were well begun and well begot: +And after, every of this happy number +That have endured shrewd days and nights with us +Shall share the good of our returned fortune, +According to the measure of their states. +Meantime, forget this new-fall'n dignity +And fall into our rustic revelry. +Play, music! And you, brides and bridegrooms all, +With measure heap'd in joy, to the measures fall. + +JAQUES: +Sir, by your patience. If I heard you rightly, +The duke hath put on a religious life +And thrown into neglect the pompous court? + +JAQUES DE BOYS: +He hath. + +JAQUES: +To him will I : out of these convertites +There is much matter to be heard and learn'd. +You to your former honour I bequeath; +Your patience and your virtue well deserves it: +You to a love that your true faith doth merit: +You to your land and love and great allies: +You to a long and well-deserved bed: +And you to wrangling; for thy loving voyage +Is but for two months victuall'd. So, to your pleasures: +I am for other than for dancing measures. + +DUKE SENIOR: +Stay, Jaques, stay. + +JAQUES: +To see no pastime I what you would have +I'll stay to know at your abandon'd cave. + +DUKE SENIOR: +Proceed, proceed: we will begin these rites, +As we do trust they'll end, in true delights. + +ROSALIND: +It is not the fashion to see the lady the epilogue; +but it is no more unhandsome than to see the lord +the prologue. If it be true that good wine needs +no bush, 'tis true that a good play needs no +epilogue; yet to good wine they do use good bushes, +and good plays prove the better by the help of good +epilogues. What a case am I in then, that am +neither a good epilogue nor cannot insinuate with +you in the behalf of a good play! I am not +furnished like a beggar, therefore to beg will not +become me: my way is to conjure you; and I'll begin +with the women. I charge you, O women, for the love +you bear to men, to like as much of this play as +please you: and I charge you, O men, for the love +you bear to women--as I perceive by your simpering, +none of you hates them--that between you and the +women the play may please. If I were a woman I +would kiss as many of you as had beards that pleased +me, complexions that liked me and breaths that I +defied not: and, I am sure, as many as have good +beards or good faces or sweet breaths will, for my +kind offer, when I make curtsy, bid me farewell. + +VALENTINE: +Cease to persuade, my loving Proteus: +Home-keeping youth have ever homely wits. +Were't not affection chains thy tender days +To the sweet glances of thy honour'd love, +I rather would entreat thy company +To see the wonders of the world abroad, +Than, living dully sluggardized at home, +Wear out thy youth with shapeless idleness. +But since thou lovest, love still and thrive therein, +Even as I would when I to love begin. + +PROTEUS: +Wilt thou be gone? Sweet Valentine, adieu! +Think on thy Proteus, when thou haply seest +Some rare note-worthy object in thy travel: +Wish me partaker in thy happiness +When thou dost meet good hap; and in thy danger, +If ever danger do environ thee, +Commend thy grievance to my holy prayers, +For I will be thy beadsman, Valentine. + +VALENTINE: +And on a love-book pray for my success? + +PROTEUS: +Upon some book I love I'll pray for thee. + +VALENTINE: +That's on some shallow story of deep love: +How young Leander cross'd the Hellespont. + +PROTEUS: +That's a deep story of a deeper love: +For he was more than over shoes in love. + +VALENTINE: +'Tis true; for you are over boots in love, +And yet you never swum the Hellespont. + +PROTEUS: +Over the boots? nay, give me not the boots. + +VALENTINE: +No, I will not, for it boots thee not. + +PROTEUS: +What? + +VALENTINE: +To be in love, where scorn is bought with groans; +Coy looks with heart-sore sighs; one fading moment's mirth +With twenty watchful, weary, tedious nights: +If haply won, perhaps a hapless gain; +If lost, why then a grievous labour won; +However, but a folly bought with wit, +Or else a wit by folly vanquished. + +PROTEUS: +So, by your circumstance, you call me fool. + +VALENTINE: +So, by your circumstance, I fear you'll prove. + +PROTEUS: +'Tis love you cavil at: I am not Love. + +VALENTINE: +Love is your master, for he masters you: +And he that is so yoked by a fool, +Methinks, should not be chronicled for wise. + +PROTEUS: +Yet writers say, as in the sweetest bud +The eating canker dwells, so eating love +Inhabits in the finest wits of all. + +VALENTINE: +And writers say, as the most forward bud +Is eaten by the canker ere it blow, +Even so by love the young and tender wit +Is turn'd to folly, blasting in the bud, +Losing his verdure even in the prime +And all the fair effects of future hopes. +But wherefore waste I time to counsel thee, +That art a votary to fond desire? +Once more adieu! my father at the road +Expects my coming, there to see me shipp'd. + +PROTEUS: +And thither will I bring thee, Valentine. + +VALENTINE: +Sweet Proteus, no; now let us take our leave. +To Milan let me hear from thee by letters +Of thy success in love, and what news else +Betideth here in absence of thy friend; +And likewise will visit thee with mine. + +PROTEUS: +All happiness bechance to thee in Milan! + +VALENTINE: +As much to you at home! and so, farewell. + +PROTEUS: +He after honour hunts, I after love: +He leaves his friends to dignify them more, +I leave myself, my friends and all, for love. +Thou, Julia, thou hast metamorphosed me, +Made me neglect my studies, lose my time, +War with good counsel, set the world at nought; +Made wit with musing weak, heart sick with thought. + +SPEED: +Sir Proteus, save you! Saw you my master? + +PROTEUS: +But now he parted hence, to embark for Milan. + +SPEED: +Twenty to one then he is shipp'd already, +And I have play'd the sheep in losing him. + +PROTEUS: +Indeed, a sheep doth very often stray, +An if the shepherd be a while away. + +SPEED: +You conclude that my master is a shepherd, then, +and I a sheep? + +PROTEUS: +I do. + +SPEED: +Why then, my horns are his horns, whether I wake or sleep. + +PROTEUS: +A silly answer and fitting well a sheep. + +SPEED: +This proves me still a sheep. + +PROTEUS: +True; and thy master a shepherd. + +SPEED: +Nay, that I can deny by a circumstance. + +PROTEUS: +It shall go hard but I'll prove it by another. + +SPEED: +The shepherd seeks the sheep, and not the sheep the +shepherd; but I seek my master, and my master seeks +not me: therefore I am no sheep. + +PROTEUS: +The sheep for fodder follow the shepherd; the +shepherd for food follows not the sheep: thou for +wages followest thy master; thy master for wages +follows not thee: therefore thou art a sheep. + +SPEED: +Such another proof will make me cry 'baa.' + +PROTEUS: +But, dost thou hear? gavest thou my letter to Julia? + +SPEED: +Ay sir: I, a lost mutton, gave your letter to her, +a laced mutton, and she, a laced mutton, gave me, a +lost mutton, nothing for my labour. + +PROTEUS: +Here's too small a pasture for such store of muttons. + +SPEED: +If the ground be overcharged, you were best stick her. + +PROTEUS: +Nay: in that you are astray, 'twere best pound you. + +SPEED: +Nay, sir, less than a pound shall serve me for +carrying your letter. + +PROTEUS: +You mistake; I mean the pound,--a pinfold. + +SPEED: +From a pound to a pin? fold it over and over, +'Tis threefold too little for carrying a letter to +your lover. + +PROTEUS: +But what said she? + +SPEED: + +PROTEUS: +Nod--Ay--why, that's noddy. + +SPEED: +You mistook, sir; I say, she did nod: and you ask +me if she did nod; and I say, 'Ay.' + +PROTEUS: +And that set together is noddy. + +SPEED: +Now you have taken the pains to set it together, +take it for your pains. + +PROTEUS: +No, no; you shall have it for bearing the letter. + +SPEED: +Well, I perceive I must be fain to bear with you. + +PROTEUS: +Why sir, how do you bear with me? + +SPEED: +Marry, sir, the letter, very orderly; having nothing +but the word 'noddy' for my pains. + +PROTEUS: +Beshrew me, but you have a quick wit. + +SPEED: +And yet it cannot overtake your slow purse. + +PROTEUS: +Come come, open the matter in brief: what said she? + +SPEED: +Open your purse, that the money and the matter may +be both at once delivered. + +PROTEUS: +Well, sir, here is for your pains. What said she? + +SPEED: +Truly, sir, I think you'll hardly win her. + +PROTEUS: +Why, couldst thou perceive so much from her? + +SPEED: +Sir, I could perceive nothing at all from her; no, +not so much as a ducat for delivering your letter: +and being so hard to me that brought your mind, I +fear she'll prove as hard to you in telling your +mind. Give her no token but stones; for she's as +hard as steel. + +PROTEUS: +What said she? nothing? + +SPEED: +No, not so much as 'Take this for thy pains.' To +testify your bounty, I thank you, you have testerned +me; in requital whereof, henceforth carry your +letters yourself: and so, sir, I'll commend you to my master. + +PROTEUS: +Go, go, be gone, to save your ship from wreck, +Which cannot perish having thee aboard, +Being destined to a drier death on shore. +I must go send some better messenger: +I fear my Julia would not deign my lines, +Receiving them from such a worthless post. + +JULIA: +But say, Lucetta, now we are alone, +Wouldst thou then counsel me to fall in love? + +LUCETTA: +Ay, madam, so you stumble not unheedfully. + +JULIA: +Of all the fair resort of gentlemen +That every day with parle encounter me, +In thy opinion which is worthiest love? + +LUCETTA: +Please you repeat their names, I'll show my mind +According to my shallow simple skill. + +JULIA: +What think'st thou of the fair Sir Eglamour? + +LUCETTA: +As of a knight well-spoken, neat and fine; +But, were I you, he never should be mine. + +JULIA: +What think'st thou of the rich Mercatio? + +LUCETTA: +Well of his wealth; but of himself, so so. + +JULIA: +What think'st thou of the gentle Proteus? + +LUCETTA: +Lord, Lord! to see what folly reigns in us! + +JULIA: +How now! what means this passion at his name? + +LUCETTA: +Pardon, dear madam: 'tis a passing shame +That I, unworthy body as I am, +Should censure thus on lovely gentlemen. + +JULIA: +Why not on Proteus, as of all the rest? + +LUCETTA: +Then thus: of many good I think him best. + +JULIA: +Your reason? + +LUCETTA: +I have no other, but a woman's reason; +I think him so because I think him so. + +JULIA: +And wouldst thou have me cast my love on him? + +LUCETTA: +Ay, if you thought your love not cast away. + +JULIA: +Why he, of all the rest, hath never moved me. + +LUCETTA: +Yet he, of all the rest, I think, best loves ye. + +JULIA: +His little speaking shows his love but small. + +LUCETTA: +Fire that's closest kept burns most of all. + +JULIA: +They do not love that do not show their love. + +LUCETTA: +O, they love least that let men know their love. + +JULIA: +I would I knew his mind. + +LUCETTA: +Peruse this paper, madam. + +JULIA: +'To Julia.' Say, from whom? + +LUCETTA: +That the contents will show. + +JULIA: +Say, say, who gave it thee? + +LUCETTA: +Valentine's page; and sent, I think, from Proteus. +He would have given it you; but I, being in the way, +Did in your name receive it: pardon the +fault I pray. + +JULIA: +Now, by my modesty, a goodly broker! +Dare you presume to harbour wanton lines? +To whisper and conspire against my youth? +Now, trust me, 'tis an office of great worth +And you an officer fit for the place. +Or else return no more into my sight. + +LUCETTA: +To plead for love deserves more fee than hate. + +JULIA: +Will ye be gone? + +LUCETTA: +That you may ruminate. + +JULIA: +And yet I would I had o'erlooked the letter: +It were a shame to call her back again +And pray her to a fault for which I chid her. +What a fool is she, that knows I am a maid, +And would not force the letter to my view! +Since maids, in modesty, say 'no' to that +Which they would have the profferer construe 'ay.' +Fie, fie, how wayward is this foolish love +That, like a testy babe, will scratch the nurse +And presently all humbled kiss the rod! +How churlishly I chid Lucetta hence, +When willingly I would have had her here! +How angerly I taught my brow to frown, +When inward joy enforced my heart to smile! +My penance is to call Lucetta back +And ask remission for my folly past. +What ho! Lucetta! + +LUCETTA: +What would your ladyship? + +JULIA: +Is't near dinner-time? + +LUCETTA: +I would it were, +That you might kill your stomach on your meat +And not upon your maid. + +JULIA: +What is't that you took up so gingerly? + +LUCETTA: +Nothing. + +JULIA: +Why didst thou stoop, then? + +LUCETTA: +To take a paper up that I let fall. + +JULIA: +And is that paper nothing? + +LUCETTA: +Nothing concerning me. + +JULIA: +Then let it lie for those that it concerns. + +LUCETTA: +Madam, it will not lie where it concerns +Unless it have a false interpeter. + +JULIA: +Some love of yours hath writ to you in rhyme. + +LUCETTA: +That I might sing it, madam, to a tune. +Give me a note: your ladyship can set. + +JULIA: +As little by such toys as may be possible. +Best sing it to the tune of 'Light o' love.' + +LUCETTA: +It is too heavy for so light a tune. + +JULIA: +Heavy! belike it hath some burden then? + +LUCETTA: +Ay, and melodious were it, would you sing it. + +JULIA: +And why not you? + +LUCETTA: +I cannot reach so high. + +JULIA: +Let's see your song. How now, minion! + +LUCETTA: +Keep tune there still, so you will sing it out: +And yet methinks I do not like this tune. + +JULIA: +You do not? + +LUCETTA: +No, madam; it is too sharp. + +JULIA: +You, minion, are too saucy. + +LUCETTA: +Nay, now you are too flat +And mar the concord with too harsh a descant: +There wanteth but a mean to fill your song. + +JULIA: +The mean is drown'd with your unruly bass. + +LUCETTA: +Indeed, I bid the base for Proteus. + +JULIA: +This babble shall not henceforth trouble me. +Here is a coil with protestation! +Go get you gone, and let the papers lie: +You would be fingering them, to anger me. + +LUCETTA: +She makes it strange; but she would be best pleased +To be so anger'd with another letter. + +JULIA: +Nay, would I were so anger'd with the same! +O hateful hands, to tear such loving words! +Injurious wasps, to feed on such sweet honey +And kill the bees that yield it with your stings! +I'll kiss each several paper for amends. +Look, here is writ 'kind Julia.' Unkind Julia! +As in revenge of thy ingratitude, +I throw thy name against the bruising stones, +Trampling contemptuously on thy disdain. +And here is writ 'love-wounded Proteus.' +Poor wounded name! my bosom as a bed +Shall lodge thee till thy wound be thoroughly heal'd; +And thus I search it with a sovereign kiss. +But twice or thrice was 'Proteus' written down. +Be calm, good wind, blow not a word away +Till I have found each letter in the letter, +Except mine own name: that some whirlwind bear +Unto a ragged fearful-hanging rock +And throw it thence into the raging sea! +Lo, here in one line is his name twice writ, +'Poor forlorn Proteus, passionate Proteus, +To the sweet Julia:' that I'll tear away. +And yet I will not, sith so prettily +He couples it to his complaining names. +Thus will I fold them one on another: +Now kiss, embrace, contend, do what you will. + +LUCETTA: +Madam, +Dinner is ready, and your father stays. + +JULIA: +Well, let us go. + +LUCETTA: +What, shall these papers lie like tell-tales here? + +JULIA: +If you respect them, best to take them up. + +LUCETTA: +Nay, I was taken up for laying them down: +Yet here they shall not lie, for catching cold. + +JULIA: +I see you have a month's mind to them. + +LUCETTA: +Ay, madam, you may say what sights you see; +I see things too, although you judge I wink. + +JULIA: +Come, come; will't please you go? + +ANTONIO: +Tell me, Panthino, what sad talk was that +Wherewith my brother held you in the cloister? + +PANTHINO: +'Twas of his nephew Proteus, your son. + +ANTONIO: +Why, what of him? + +PANTHINO: +He wonder'd that your lordship +Would suffer him to spend his youth at home, +While other men, of slender reputation, +Put forth their sons to seek preferment out: +Some to the wars, to try their fortune there; +Some to discover islands far away; +Some to the studious universities. +For any or for all these exercises, +He said that Proteus your son was meet, +And did request me to importune you +To let him spend his time no more at home, +Which would be great impeachment to his age, +In having known no travel in his youth. + +ANTONIO: +Nor need'st thou much importune me to that +Whereon this month I have been hammering. +I have consider'd well his loss of time +And how he cannot be a perfect man, +Not being tried and tutor'd in the world: +Experience is by industry achieved +And perfected by the swift course of time. +Then tell me, whither were I best to send him? + +PANTHINO: +I think your lordship is not ignorant +How his companion, youthful Valentine, +Attends the emperor in his royal court. + +ANTONIO: +I know it well. + +PANTHINO: +'Twere good, I think, your lordship sent him thither: +There shall he practise tilts and tournaments, +Hear sweet discourse, converse with noblemen. +And be in eye of every exercise +Worthy his youth and nobleness of birth. + +ANTONIO: +I like thy counsel; well hast thou advised: +And that thou mayst perceive how well I like it, +The execution of it shall make known. +Even with the speediest expedition +I will dispatch him to the emperor's court. + +PANTHINO: +To-morrow, may it please you, Don Alphonso, +With other gentlemen of good esteem, +Are journeying to salute the emperor +And to commend their service to his will. + +ANTONIO: +Good company; with them shall Proteus go: +And, in good time! now will we break with him. + +PROTEUS: +Sweet love! sweet lines! sweet life! +Here is her hand, the agent of her heart; +Here is her oath for love, her honour's pawn. +O, that our fathers would applaud our loves, +To seal our happiness with their consents! +O heavenly Julia! + +ANTONIO: +How now! what letter are you reading there? + +PROTEUS: +May't please your lordship, 'tis a word or two +Of commendations sent from Valentine, +Deliver'd by a friend that came from him. + +ANTONIO: +Lend me the letter; let me see what news. + +PROTEUS: +There is no news, my lord, but that he writes +How happily he lives, how well beloved +And daily graced by the emperor; +Wishing me with him, partner of his fortune. + +ANTONIO: +And how stand you affected to his wish? + +PROTEUS: +As one relying on your lordship's will +And not depending on his friendly wish. + +ANTONIO: +My will is something sorted with his wish. +Muse not that I thus suddenly proceed; +For what I will, I will, and there an end. +I am resolved that thou shalt spend some time +With Valentinus in the emperor's court: +What maintenance he from his friends receives, +Like exhibition thou shalt have from me. +To-morrow be in readiness to go: +Excuse it not, for I am peremptory. + +PROTEUS: +My lord, I cannot be so soon provided: +Please you, deliberate a day or two. + +ANTONIO: +Look, what thou want'st shall be sent after thee: +No more of stay! to-morrow thou must go. +Come on, Panthino: you shall be employ'd +To hasten on his expedition. + +PROTEUS: +Thus have I shunn'd the fire for fear of burning, +And drench'd me in the sea, where I am drown'd. +I fear'd to show my father Julia's letter, +Lest he should take exceptions to my love; +And with the vantage of mine own excuse +Hath he excepted most against my love. +O, how this spring of love resembleth +The uncertain glory of an April day, +Which now shows all the beauty of the sun, +And by and by a cloud takes all away! + +PANTHINO: +Sir Proteus, your father calls for you: +He is in haste; therefore, I pray you to go. + +PROTEUS: +Why, this it is: my heart accords thereto, +And yet a thousand times it answers 'no.' + +SPEED: +Sir, your glove. + +VALENTINE: +Not mine; my gloves are on. + +SPEED: +Why, then, this may be yours, for this is but one. + +VALENTINE: +Ha! let me see: ay, give it me, it's mine: +Sweet ornament that decks a thing divine! +Ah, Silvia, Silvia! + +SPEED: +Madam Silvia! Madam Silvia! + +VALENTINE: +How now, sirrah? + +SPEED: +She is not within hearing, sir. + +VALENTINE: +Why, sir, who bade you call her? + +SPEED: +Your worship, sir; or else I mistook. + +VALENTINE: +Well, you'll still be too forward. + +SPEED: +And yet I was last chidden for being too slow. + +VALENTINE: +Go to, sir: tell me, do you know Madam Silvia? + +SPEED: +She that your worship loves? + +VALENTINE: +Why, how know you that I am in love? + +SPEED: +Marry, by these special marks: first, you have +learned, like Sir Proteus, to wreathe your arms, +like a malecontent; to relish a love-song, like a +robin-redbreast; to walk alone, like one that had +the pestilence; to sigh, like a school-boy that had +lost his A B C; to weep, like a young wench that had +buried her grandam; to fast, like one that takes +diet; to watch like one that fears robbing; to +speak puling, like a beggar at Hallowmas. You were +wont, when you laughed, to crow like a cock; when you +walked, to walk like one of the lions; when you +fasted, it was presently after dinner; when you +looked sadly, it was for want of money: and now you +are metamorphosed with a mistress, that, when I look +on you, I can hardly think you my master. + +VALENTINE: +Are all these things perceived in me? + +SPEED: +They are all perceived without ye. + +VALENTINE: +Without me? they cannot. + +SPEED: +Without you? nay, that's certain, for, without you +were so simple, none else would: but you are so +without these follies, that these follies are within +you and shine through you like the water in an +urinal, that not an eye that sees you but is a +physician to comment on your malady. + +VALENTINE: +But tell me, dost thou know my lady Silvia? + +SPEED: +She that you gaze on so as she sits at supper? + +VALENTINE: +Hast thou observed that? even she, I mean. + +SPEED: +Why, sir, I know her not. + +VALENTINE: +Dost thou know her by my gazing on her, and yet +knowest her not? + +SPEED: +Is she not hard-favoured, sir? + +VALENTINE: +Not so fair, boy, as well-favoured. + +SPEED: +Sir, I know that well enough. + +VALENTINE: +What dost thou know? + +SPEED: +That she is not so fair as, of you, well-favoured. + +VALENTINE: +I mean that her beauty is exquisite, but her favour infinite. + +SPEED: +That's because the one is painted and the other out +of all count. + +VALENTINE: +How painted? and how out of count? + +SPEED: +Marry, sir, so painted, to make her fair, that no +man counts of her beauty. + +VALENTINE: +How esteemest thou me? I account of her beauty. + +SPEED: +You never saw her since she was deformed. + +VALENTINE: +How long hath she been deformed? + +SPEED: +Ever since you loved her. + +VALENTINE: +I have loved her ever since I saw her; and still I +see her beautiful. + +SPEED: +If you love her, you cannot see her. + +VALENTINE: +Why? + +SPEED: +Because Love is blind. O, that you had mine eyes; +or your own eyes had the lights they were wont to +have when you chid at Sir Proteus for going +ungartered! + +VALENTINE: +What should I see then? + +SPEED: +Your own present folly and her passing deformity: +for he, being in love, could not see to garter his +hose, and you, being in love, cannot see to put on your hose. + +VALENTINE: +Belike, boy, then, you are in love; for last +morning you could not see to wipe my shoes. + +SPEED: +True, sir; I was in love with my bed: I thank you, +you swinged me for my love, which makes me the +bolder to chide you for yours. + +VALENTINE: +In conclusion, I stand affected to her. + +SPEED: +I would you were set, so your affection would cease. + +VALENTINE: +Last night she enjoined me to write some lines to +one she loves. + +SPEED: +And have you? + +VALENTINE: +I have. + +SPEED: +Are they not lamely writ? + +VALENTINE: +No, boy, but as well as I can do them. Peace! +here she comes. + +SPEED: + +VALENTINE: +Madam and mistress, a thousand good-morrows. + +SPEED: + +SILVIA: +Sir Valentine and servant, to you two thousand. + +SPEED: + +VALENTINE: +As you enjoin'd me, I have writ your letter +Unto the secret nameless friend of yours; +Which I was much unwilling to proceed in +But for my duty to your ladyship. + +SILVIA: +I thank you gentle servant: 'tis very clerkly done. + +VALENTINE: +Now trust me, madam, it came hardly off; +For being ignorant to whom it goes +I writ at random, very doubtfully. + +SILVIA: +Perchance you think too much of so much pains? + +VALENTINE: +No, madam; so it stead you, I will write +Please you command, a thousand times as much; And yet-- + +SILVIA: +A pretty period! Well, I guess the sequel; +And yet I will not name it; and yet I care not; +And yet take this again; and yet I thank you, +Meaning henceforth to trouble you no more. + +SPEED: + +VALENTINE: +What means your ladyship? do you not like it? + +SILVIA: +Yes, yes; the lines are very quaintly writ; +But since unwillingly, take them again. +Nay, take them. + +VALENTINE: +Madam, they are for you. + +SILVIA: +Ay, ay: you writ them, sir, at my request; +But I will none of them; they are for you; +I would have had them writ more movingly. + +VALENTINE: +Please you, I'll write your ladyship another. + +SILVIA: +And when it's writ, for my sake read it over, +And if it please you, so; if not, why, so. + +VALENTINE: +If it please me, madam, what then? + +SILVIA: +Why, if it please you, take it for your labour: +And so, good morrow, servant. + +SPEED: +O jest unseen, inscrutable, invisible, +As a nose on a man's face, or a weathercock on a steeple! +My master sues to her, and she hath +taught her suitor, +He being her pupil, to become her tutor. +O excellent device! was there ever heard a better, +That my master, being scribe, to himself should write +the letter? + +VALENTINE: +How now, sir? what are you reasoning with yourself? + +SPEED: +Nay, I was rhyming: 'tis you that have the reason. + +VALENTINE: +To do what? + +SPEED: +To be a spokesman for Madam Silvia. + +VALENTINE: +To whom? + +SPEED: +To yourself: why, she wooes you by a figure. + +VALENTINE: +What figure? + +SPEED: +By a letter, I should say. + +VALENTINE: +Why, she hath not writ to me? + +SPEED: +What need she, when she hath made you write to +yourself? Why, do you not perceive the jest? + +VALENTINE: +No, believe me. + +SPEED: +No believing you, indeed, sir. But did you perceive +her earnest? + +VALENTINE: +She gave me none, except an angry word. + +SPEED: +Why, she hath given you a letter. + +VALENTINE: +That's the letter I writ to her friend. + +SPEED: +And that letter hath she delivered, and there an end. + +VALENTINE: +I would it were no worse. + +SPEED: +I'll warrant you, 'tis as well: +For often have you writ to her, and she, in modesty, +Or else for want of idle time, could not again reply; +Or fearing else some messenger that might her mind discover, +Herself hath taught her love himself to write unto her lover. +All this I speak in print, for in print I found it. +Why muse you, sir? 'tis dinner-time. + +VALENTINE: +I have dined. + +SPEED: +Ay, but hearken, sir; though the chameleon Love can +feed on the air, I am one that am nourished by my +victuals, and would fain have meat. O, be not like +your mistress; be moved, be moved. + +PROTEUS: +Have patience, gentle Julia. + +JULIA: +I must, where is no remedy. + +PROTEUS: +When possibly I can, I will return. + +JULIA: +If you turn not, you will return the sooner. +Keep this remembrance for thy Julia's sake. + +PROTEUS: +Why then, we'll make exchange; here, take you this. + +JULIA: +And seal the bargain with a holy kiss. + +PROTEUS: +Here is my hand for my true constancy; +And when that hour o'erslips me in the day +Wherein I sigh not, Julia, for thy sake, +The next ensuing hour some foul mischance +Torment me for my love's forgetfulness! +My father stays my coming; answer not; +The tide is now: nay, not thy tide of tears; +That tide will stay me longer than I should. +Julia, farewell! +What, gone without a word? +Ay, so true love should do: it cannot speak; +For truth hath better deeds than words to grace it. + +PANTHINO: +Sir Proteus, you are stay'd for. + +PROTEUS: +Go; I come, I come. +Alas! this parting strikes poor lovers dumb. + +LAUNCE: +Nay, 'twill be this hour ere I have done weeping; +all the kind of the Launces have this very fault. I +have received my proportion, like the prodigious +son, and am going with Sir Proteus to the Imperial's +court. I think Crab, my dog, be the sourest-natured +dog that lives: my mother weeping, my father +wailing, my sister crying, our maid howling, our cat +wringing her hands, and all our house in a great +perplexity, yet did not this cruel-hearted cur shed +one tear: he is a stone, a very pebble stone, and +has no more pity in him than a dog: a Jew would have +wept to have seen our parting; why, my grandam, +having no eyes, look you, wept herself blind at my +parting. Nay, I'll show you the manner of it. This +shoe is my father: no, this left shoe is my father: +no, no, this left shoe is my mother: nay, that +cannot be so neither: yes, it is so, it is so, it +hath the worser sole. This shoe, with the hole in +it, is my mother, and this my father; a vengeance +on't! there 'tis: now, sit, this staff is my +sister, for, look you, she is as white as a lily and +as small as a wand: this hat is Nan, our maid: I +am the dog: no, the dog is himself, and I am the +dog--Oh! the dog is me, and I am myself; ay, so, +so. Now come I to my father; Father, your blessing: +now should not the shoe speak a word for weeping: +now should I kiss my father; well, he weeps on. Now +come I to my mother: O, that she could speak now +like a wood woman! Well, I kiss her; why, there +'tis; here's my mother's breath up and down. Now +come I to my sister; mark the moan she makes. Now +the dog all this while sheds not a tear nor speaks a +word; but see how I lay the dust with my tears. + +PANTHINO: +Launce, away, away, aboard! thy master is shipped +and thou art to post after with oars. What's the +matter? why weepest thou, man? Away, ass! You'll +lose the tide, if you tarry any longer. + +LAUNCE: +It is no matter if the tied were lost; for it is the +unkindest tied that ever any man tied. + +PANTHINO: +What's the unkindest tide? + +LAUNCE: +Why, he that's tied here, Crab, my dog. + +PANTHINO: +Tut, man, I mean thou'lt lose the flood, and, in +losing the flood, lose thy voyage, and, in losing +thy voyage, lose thy master, and, in losing thy +master, lose thy service, and, in losing thy +service,--Why dost thou stop my mouth? + +LAUNCE: +For fear thou shouldst lose thy tongue. + +PANTHINO: +Where should I lose my tongue? + +LAUNCE: +In thy tale. + +PANTHINO: +In thy tail! + +LAUNCE: +Lose the tide, and the voyage, and the master, and +the service, and the tied! Why, man, if the river +were dry, I am able to fill it with my tears; if the +wind were down, I could drive the boat with my sighs. + +PANTHINO: +Come, come away, man; I was sent to call thee. + +LAUNCE: +Sir, call me what thou darest. + +PANTHINO: +Wilt thou go? + +LAUNCE: +Well, I will go. + +SILVIA: +Servant! + +VALENTINE: +Mistress? + +SPEED: +Master, Sir Thurio frowns on you. + +VALENTINE: +Ay, boy, it's for love. + +SPEED: +Not of you. + +VALENTINE: +Of my mistress, then. + +SPEED: +'Twere good you knocked him. + +SILVIA: +Servant, you are sad. + +VALENTINE: +Indeed, madam, I seem so. + +THURIO: +Seem you that you are not? + +VALENTINE: +Haply I do. + +THURIO: +So do counterfeits. + +VALENTINE: +So do you. + +THURIO: +What seem I that I am not? + +VALENTINE: +Wise. + +THURIO: +What instance of the contrary? + +VALENTINE: +Your folly. + +THURIO: +And how quote you my folly? + +VALENTINE: +I quote it in your jerkin. + +THURIO: +My jerkin is a doublet. + +VALENTINE: +Well, then, I'll double your folly. + +THURIO: +How? + +SILVIA: +What, angry, Sir Thurio! do you change colour? + +VALENTINE: +Give him leave, madam; he is a kind of chameleon. + +THURIO: +That hath more mind to feed on your blood than live +in your air. + +VALENTINE: +You have said, sir. + +THURIO: +Ay, sir, and done too, for this time. + +VALENTINE: +I know it well, sir; you always end ere you begin. + +SILVIA: +A fine volley of words, gentlemen, and quickly shot off. + +VALENTINE: +'Tis indeed, madam; we thank the giver. + +SILVIA: +Who is that, servant? + +VALENTINE: +Yourself, sweet lady; for you gave the fire. Sir +Thurio borrows his wit from your ladyship's looks, +and spends what he borrows kindly in your company. + +THURIO: +Sir, if you spend word for word with me, I shall +make your wit bankrupt. + +VALENTINE: +I know it well, sir; you have an exchequer of words, +and, I think, no other treasure to give your +followers, for it appears by their bare liveries, +that they live by your bare words. + +SILVIA: +No more, gentlemen, no more:--here comes my father. + +DUKE: +Now, daughter Silvia, you are hard beset. +Sir Valentine, your father's in good health: +What say you to a letter from your friends +Of much good news? + +VALENTINE: +My lord, I will be thankful. +To any happy messenger from thence. + +DUKE: +Know ye Don Antonio, your countryman? + +VALENTINE: +Ay, my good lord, I know the gentleman +To be of worth and worthy estimation +And not without desert so well reputed. + +DUKE: +Hath he not a son? + +VALENTINE: +Ay, my good lord; a son that well deserves +The honour and regard of such a father. + +DUKE: +You know him well? + +VALENTINE: +I know him as myself; for from our infancy +We have conversed and spent our hours together: +And though myself have been an idle truant, +Omitting the sweet benefit of time +To clothe mine age with angel-like perfection, +Yet hath Sir Proteus, for that's his name, +Made use and fair advantage of his days; +His years but young, but his experience old; +His head unmellow'd, but his judgment ripe; +And, in a word, for far behind his worth +Comes all the praises that I now bestow, +He is complete in feature and in mind +With all good grace to grace a gentleman. + +DUKE: +Beshrew me, sir, but if he make this good, +He is as worthy for an empress' love +As meet to be an emperor's counsellor. +Well, sir, this gentleman is come to me, +With commendation from great potentates; +And here he means to spend his time awhile: +I think 'tis no unwelcome news to you. + +VALENTINE: +Should I have wish'd a thing, it had been he. + +DUKE: +Welcome him then according to his worth. +Silvia, I speak to you, and you, Sir Thurio; +For Valentine, I need not cite him to it: +I will send him hither to you presently. + +VALENTINE: +This is the gentleman I told your ladyship +Had come along with me, but that his mistress +Did hold his eyes lock'd in her crystal looks. + +SILVIA: +Belike that now she hath enfranchised them +Upon some other pawn for fealty. + +VALENTINE: +Nay, sure, I think she holds them prisoners still. + +SILVIA: +Nay, then he should be blind; and, being blind +How could he see his way to seek out you? + +VALENTINE: +Why, lady, Love hath twenty pair of eyes. + +THURIO: +They say that Love hath not an eye at all. + +VALENTINE: +To see such lovers, Thurio, as yourself: +Upon a homely object Love can wink. + +SILVIA: +Have done, have done; here comes the gentleman. + +VALENTINE: +Welcome, dear Proteus! Mistress, I beseech you, +Confirm his welcome with some special favour. + +SILVIA: +His worth is warrant for his welcome hither, +If this be he you oft have wish'd to hear from. + +VALENTINE: +Mistress, it is: sweet lady, entertain him +To be my fellow-servant to your ladyship. + +SILVIA: +Too low a mistress for so high a servant. + +PROTEUS: +Not so, sweet lady: but too mean a servant +To have a look of such a worthy mistress. + +VALENTINE: +Leave off discourse of disability: +Sweet lady, entertain him for your servant. + +PROTEUS: +My duty will I boast of; nothing else. + +SILVIA: +And duty never yet did want his meed: +Servant, you are welcome to a worthless mistress. + +PROTEUS: +I'll die on him that says so but yourself. + +SILVIA: +That you are welcome? + +PROTEUS: +That you are worthless. + +THURIO: +Madam, my lord your father would speak with you. + +SILVIA: +I wait upon his pleasure. Come, Sir Thurio, +Go with me. Once more, new servant, welcome: +I'll leave you to confer of home affairs; +When you have done, we look to hear from you. + +PROTEUS: +We'll both attend upon your ladyship. + +VALENTINE: +Now, tell me, how do all from whence you came? + +PROTEUS: +Your friends are well and have them much commended. + +VALENTINE: +And how do yours? + +PROTEUS: +I left them all in health. + +VALENTINE: +How does your lady? and how thrives your love? + +PROTEUS: +My tales of love were wont to weary you; +I know you joy not in a love discourse. + +VALENTINE: +Ay, Proteus, but that life is alter'd now: +I have done penance for contemning Love, +Whose high imperious thoughts have punish'd me +With bitter fasts, with penitential groans, +With nightly tears and daily heart-sore sighs; +For in revenge of my contempt of love, +Love hath chased sleep from my enthralled eyes +And made them watchers of mine own heart's sorrow. +O gentle Proteus, Love's a mighty lord, +And hath so humbled me, as, I confess, +There is no woe to his correction, +Nor to his service no such joy on earth. +Now no discourse, except it be of love; +Now can I break my fast, dine, sup and sleep, +Upon the very naked name of love. + +PROTEUS: +Enough; I read your fortune in your eye. +Was this the idol that you worship so? + +VALENTINE: +Even she; and is she not a heavenly saint? + +PROTEUS: +No; but she is an earthly paragon. + +VALENTINE: +Call her divine. + +PROTEUS: +I will not flatter her. + +VALENTINE: +O, flatter me; for love delights in praises. + +PROTEUS: +When I was sick, you gave me bitter pills, +And I must minister the like to you. + +VALENTINE: +Then speak the truth by her; if not divine, +Yet let her be a principality, +Sovereign to all the creatures on the earth. + +PROTEUS: +Except my mistress. + +VALENTINE: +Sweet, except not any; +Except thou wilt except against my love. + +PROTEUS: +Have I not reason to prefer mine own? + +VALENTINE: +And I will help thee to prefer her too: +She shall be dignified with this high honour-- +To bear my lady's train, lest the base earth +Should from her vesture chance to steal a kiss +And, of so great a favour growing proud, +Disdain to root the summer-swelling flower +And make rough winter everlastingly. + +PROTEUS: +Why, Valentine, what braggardism is this? + +VALENTINE: +Pardon me, Proteus: all I can is nothing +To her whose worth makes other worthies nothing; +She is alone. + +PROTEUS: +Then let her alone. + +VALENTINE: +Not for the world: why, man, she is mine own, +And I as rich in having such a jewel +As twenty seas, if all their sand were pearl, +The water nectar and the rocks pure gold. +Forgive me that I do not dream on thee, +Because thou see'st me dote upon my love. +My foolish rival, that her father likes +Only for his possessions are so huge, +Is gone with her along, and I must after, +For love, thou know'st, is full of jealousy. + +PROTEUS: +But she loves you? + +VALENTINE: +Ay, and we are betroth'd: nay, more, our, +marriage-hour, +With all the cunning manner of our flight, +Determined of; how I must climb her window, +The ladder made of cords, and all the means +Plotted and 'greed on for my happiness. +Good Proteus, go with me to my chamber, +In these affairs to aid me with thy counsel. + +PROTEUS: +Go on before; I shall inquire you forth: +I must unto the road, to disembark +Some necessaries that I needs must use, +And then I'll presently attend you. + +VALENTINE: +Will you make haste? + +PROTEUS: +I will. +Even as one heat another heat expels, +Or as one nail by strength drives out another, +So the remembrance of my former love +Is by a newer object quite forgotten. +Is it mine, or Valentine's praise, +Her true perfection, or my false transgression, +That makes me reasonless to reason thus? +She is fair; and so is Julia that I love-- +That I did love, for now my love is thaw'd; +Which, like a waxen image, 'gainst a fire, +Bears no impression of the thing it was. +Methinks my zeal to Valentine is cold, +And that I love him not as I was wont. +O, but I love his lady too too much, +And that's the reason I love him so little. +How shall I dote on her with more advice, +That thus without advice begin to love her! +'Tis but her picture I have yet beheld, +And that hath dazzled my reason's light; +But when I look on her perfections, +There is no reason but I shall be blind. +If I can cheque my erring love, I will; +If not, to compass her I'll use my skill. + +SPEED: +Launce! by mine honesty, welcome to Milan! + +LAUNCE: +Forswear not thyself, sweet youth, for I am not +welcome. I reckon this always, that a man is never +undone till he be hanged, nor never welcome to a +place till some certain shot be paid and the hostess +say 'Welcome!' + +SPEED: +Come on, you madcap, I'll to the alehouse with you +presently; where, for one shot of five pence, thou +shalt have five thousand welcomes. But, sirrah, how +did thy master part with Madam Julia? + +LAUNCE: +Marry, after they closed in earnest, they parted very +fairly in jest. + +SPEED: +But shall she marry him? + +LAUNCE: +No. + +SPEED: +How then? shall he marry her? + +LAUNCE: +No, neither. + +SPEED: +What, are they broken? + +LAUNCE: +No, they are both as whole as a fish. + +SPEED: +Why, then, how stands the matter with them? + +LAUNCE: +Marry, thus: when it stands well with him, it +stands well with her. + +SPEED: +What an ass art thou! I understand thee not. + +LAUNCE: +What a block art thou, that thou canst not! My +staff understands me. + +SPEED: +What thou sayest? + +LAUNCE: +Ay, and what I do too: look thee, I'll but lean, +and my staff understands me. + +SPEED: +It stands under thee, indeed. + +LAUNCE: +Why, stand-under and under-stand is all one. + +SPEED: +But tell me true, will't be a match? + +LAUNCE: +Ask my dog: if he say ay, it will! if he say no, +it will; if he shake his tail and say nothing, it will. + +SPEED: +The conclusion is then that it will. + +LAUNCE: +Thou shalt never get such a secret from me but by a parable. + +SPEED: +'Tis well that I get it so. But, Launce, how sayest +thou, that my master is become a notable lover? + +LAUNCE: +I never knew him otherwise. + +SPEED: +Than how? + +LAUNCE: +A notable lubber, as thou reportest him to be. + +SPEED: +Why, thou whoreson ass, thou mistakest me. + +LAUNCE: +Why, fool, I meant not thee; I meant thy master. + +SPEED: +I tell thee, my master is become a hot lover. + +LAUNCE: +Why, I tell thee, I care not though he burn himself +in love. If thou wilt, go with me to the alehouse; +if not, thou art an Hebrew, a Jew, and not worth the +name of a Christian. + +SPEED: +Why? + +LAUNCE: +Because thou hast not so much charity in thee as to +go to the ale with a Christian. Wilt thou go? + +SPEED: +At thy service. + +PROTEUS: +To leave my Julia, shall I be forsworn; +To love fair Silvia, shall I be forsworn; +To wrong my friend, I shall be much forsworn; +And even that power which gave me first my oath +Provokes me to this threefold perjury; +Love bade me swear and Love bids me forswear. +O sweet-suggesting Love, if thou hast sinned, +Teach me, thy tempted subject, to excuse it! +At first I did adore a twinkling star, +But now I worship a celestial sun. +Unheedful vows may heedfully be broken, +And he wants wit that wants resolved will +To learn his wit to exchange the bad for better. +Fie, fie, unreverend tongue! to call her bad, +Whose sovereignty so oft thou hast preferr'd +With twenty thousand soul-confirming oaths. +I cannot leave to love, and yet I do; +But there I leave to love where I should love. +Julia I lose and Valentine I lose: +If I keep them, I needs must lose myself; +If I lose them, thus find I by their loss +For Valentine myself, for Julia Silvia. +I to myself am dearer than a friend, +For love is still most precious in itself; +And Silvia--witness Heaven, that made her fair!-- +Shows Julia but a swarthy Ethiope. +I will forget that Julia is alive, +Remembering that my love to her is dead; +And Valentine I'll hold an enemy, +Aiming at Silvia as a sweeter friend. +I cannot now prove constant to myself, +Without some treachery used to Valentine. +This night he meaneth with a corded ladder +To climb celestial Silvia's chamber-window, +Myself in counsel, his competitor. +Now presently I'll give her father notice +Of their disguising and pretended flight; +Who, all enraged, will banish Valentine; +For Thurio, he intends, shall wed his daughter; +But, Valentine being gone, I'll quickly cross +By some sly trick blunt Thurio's dull proceeding. +Love, lend me wings to make my purpose swift, +As thou hast lent me wit to plot this drift! + +JULIA: +Counsel, Lucetta; gentle girl, assist me; +And even in kind love I do conjure thee, +Who art the table wherein all my thoughts +Are visibly character'd and engraved, +To lesson me and tell me some good mean +How, with my honour, I may undertake +A journey to my loving Proteus. + +LUCETTA: +Alas, the way is wearisome and long! + +JULIA: +A true-devoted pilgrim is not weary +To measure kingdoms with his feeble steps; +Much less shall she that hath Love's wings to fly, +And when the flight is made to one so dear, +Of such divine perfection, as Sir Proteus. + +LUCETTA: +Better forbear till Proteus make return. + +JULIA: +O, know'st thou not his looks are my soul's food? +Pity the dearth that I have pined in, +By longing for that food so long a time. +Didst thou but know the inly touch of love, +Thou wouldst as soon go kindle fire with snow +As seek to quench the fire of love with words. + +LUCETTA: +I do not seek to quench your love's hot fire, +But qualify the fire's extreme rage, +Lest it should burn above the bounds of reason. + +JULIA: +The more thou damm'st it up, the more it burns. +The current that with gentle murmur glides, +Thou know'st, being stopp'd, impatiently doth rage; +But when his fair course is not hindered, +He makes sweet music with the enamell'ed stones, +Giving a gentle kiss to every sedge +He overtaketh in his pilgrimage, +And so by many winding nooks he strays +With willing sport to the wild ocean. +Then let me go and hinder not my course +I'll be as patient as a gentle stream +And make a pastime of each weary step, +Till the last step have brought me to my love; +And there I'll rest, as after much turmoil +A blessed soul doth in Elysium. + +LUCETTA: +But in what habit will you go along? + +JULIA: +Not like a woman; for I would prevent +The loose encounters of lascivious men: +Gentle Lucetta, fit me with such weeds +As may beseem some well-reputed page. + +LUCETTA: +Why, then, your ladyship must cut your hair. + +JULIA: +No, girl, I'll knit it up in silken strings +With twenty odd-conceited true-love knots. +To be fantastic may become a youth +Of greater time than I shall show to be. + +LUCETTA: +What fashion, madam shall I make your breeches? + +JULIA: +That fits as well as 'Tell me, good my lord, +What compass will you wear your farthingale?' +Why even what fashion thou best likest, Lucetta. + +LUCETTA: +You must needs have them with a codpiece, madam. + +JULIA: +Out, out, Lucetta! that would be ill-favour'd. + +LUCETTA: +A round hose, madam, now's not worth a pin, +Unless you have a codpiece to stick pins on. + +JULIA: +Lucetta, as thou lovest me, let me have +What thou thinkest meet and is most mannerly. +But tell me, wench, how will the world repute me +For undertaking so unstaid a journey? +I fear me, it will make me scandalized. + +LUCETTA: +If you think so, then stay at home and go not. + +JULIA: +Nay, that I will not. + +LUCETTA: +Then never dream on infamy, but go. +If Proteus like your journey when you come, +No matter who's displeased when you are gone: +I fear me, he will scarce be pleased withal. + +JULIA: +That is the least, Lucetta, of my fear: +A thousand oaths, an ocean of his tears +And instances of infinite of love +Warrant me welcome to my Proteus. + +LUCETTA: +All these are servants to deceitful men. + +JULIA: +Base men, that use them to so base effect! +But truer stars did govern Proteus' birth +His words are bonds, his oaths are oracles, +His love sincere, his thoughts immaculate, +His tears pure messengers sent from his heart, +His heart as far from fraud as heaven from earth. + +LUCETTA: +Pray heaven he prove so, when you come to him! + +JULIA: +Now, as thou lovest me, do him not that wrong +To bear a hard opinion of his truth: +Only deserve my love by loving him; +And presently go with me to my chamber, +To take a note of what I stand in need of, +To furnish me upon my longing journey. +All that is mine I leave at thy dispose, +My goods, my lands, my reputation; +Only, in lieu thereof, dispatch me hence. +Come, answer not, but to it presently! +I am impatient of my tarriance. + +DUKE: +Sir Thurio, give us leave, I pray, awhile; +We have some secrets to confer about. +Now, tell me, Proteus, what's your will with me? + +PROTEUS: +My gracious lord, that which I would discover +The law of friendship bids me to conceal; +But when I call to mind your gracious favours +Done to me, undeserving as I am, +My duty pricks me on to utter that +Which else no worldly good should draw from me. +Know, worthy prince, Sir Valentine, my friend, +This night intends to steal away your daughter: +Myself am one made privy to the plot. +I know you have determined to bestow her +On Thurio, whom your gentle daughter hates; +And should she thus be stol'n away from you, +It would be much vexation to your age. +Thus, for my duty's sake, I rather chose +To cross my friend in his intended drift +Than, by concealing it, heap on your head +A pack of sorrows which would press you down, +Being unprevented, to your timeless grave. + +DUKE: +Proteus, I thank thee for thine honest care; +Which to requite, command me while I live. +This love of theirs myself have often seen, +Haply when they have judged me fast asleep, +And oftentimes have purposed to forbid +Sir Valentine her company and my court: +But fearing lest my jealous aim might err +And so unworthily disgrace the man, +A rashness that I ever yet have shunn'd, +I gave him gentle looks, thereby to find +That which thyself hast now disclosed to me. +And, that thou mayst perceive my fear of this, +Knowing that tender youth is soon suggested, +I nightly lodge her in an upper tower, +The key whereof myself have ever kept; +And thence she cannot be convey'd away. + +PROTEUS: +Know, noble lord, they have devised a mean +How he her chamber-window will ascend +And with a corded ladder fetch her down; +For which the youthful lover now is gone +And this way comes he with it presently; +Where, if it please you, you may intercept him. +But, good my Lord, do it so cunningly +That my discovery be not aimed at; +For love of you, not hate unto my friend, +Hath made me publisher of this pretence. + +DUKE: +Upon mine honour, he shall never know +That I had any light from thee of this. + +PROTEUS: +Adieu, my Lord; Sir Valentine is coming. + +DUKE: +Sir Valentine, whither away so fast? + +VALENTINE: +Please it your grace, there is a messenger +That stays to bear my letters to my friends, +And I am going to deliver them. + +DUKE: +Be they of much import? + +VALENTINE: +The tenor of them doth but signify +My health and happy being at your court. + +DUKE: +Nay then, no matter; stay with me awhile; +I am to break with thee of some affairs +That touch me near, wherein thou must be secret. +'Tis not unknown to thee that I have sought +To match my friend Sir Thurio to my daughter. + +VALENTINE: +I know it well, my Lord; and, sure, the match +Were rich and honourable; besides, the gentleman +Is full of virtue, bounty, worth and qualities +Beseeming such a wife as your fair daughter: +Cannot your Grace win her to fancy him? + +DUKE: +No, trust me; she is peevish, sullen, froward, +Proud, disobedient, stubborn, lacking duty, +Neither regarding that she is my child +Nor fearing me as if I were her father; +And, may I say to thee, this pride of hers, +Upon advice, hath drawn my love from her; +And, where I thought the remnant of mine age +Should have been cherish'd by her child-like duty, +I now am full resolved to take a wife +And turn her out to who will take her in: +Then let her beauty be her wedding-dower; +For me and my possessions she esteems not. + +VALENTINE: +What would your Grace have me to do in this? + +DUKE: +There is a lady in Verona here +Whom I affect; but she is nice and coy +And nought esteems my aged eloquence: +Now therefore would I have thee to my tutor-- +For long agone I have forgot to court; +Besides, the fashion of the time is changed-- +How and which way I may bestow myself +To be regarded in her sun-bright eye. + +VALENTINE: +Win her with gifts, if she respect not words: +Dumb jewels often in their silent kind +More than quick words do move a woman's mind. + +DUKE: +But she did scorn a present that I sent her. + +VALENTINE: +A woman sometimes scorns what best contents her. +Send her another; never give her o'er; +For scorn at first makes after-love the more. +If she do frown, 'tis not in hate of you, +But rather to beget more love in you: +If she do chide, 'tis not to have you gone; +For why, the fools are mad, if left alone. +Take no repulse, whatever she doth say; +For 'get you gone,' she doth not mean 'away!' +Flatter and praise, commend, extol their graces; +Though ne'er so black, say they have angels' faces. +That man that hath a tongue, I say, is no man, +If with his tongue he cannot win a woman. + +DUKE: +But she I mean is promised by her friends +Unto a youthful gentleman of worth, +And kept severely from resort of men, +That no man hath access by day to her. + +VALENTINE: +Why, then, I would resort to her by night. + +DUKE: +Ay, but the doors be lock'd and keys kept safe, +That no man hath recourse to her by night. + +VALENTINE: +What lets but one may enter at her window? + +DUKE: +Her chamber is aloft, far from the ground, +And built so shelving that one cannot climb it +Without apparent hazard of his life. + +VALENTINE: +Why then, a ladder quaintly made of cords, +To cast up, with a pair of anchoring hooks, +Would serve to scale another Hero's tower, +So bold Leander would adventure it. + +DUKE: +Now, as thou art a gentleman of blood, +Advise me where I may have such a ladder. + +VALENTINE: +When would you use it? pray, sir, tell me that. + +DUKE: +This very night; for Love is like a child, +That longs for every thing that he can come by. + +VALENTINE: +By seven o'clock I'll get you such a ladder. + +DUKE: +But, hark thee; I will go to her alone: +How shall I best convey the ladder thither? + +VALENTINE: +It will be light, my lord, that you may bear it +Under a cloak that is of any length. + +DUKE: +A cloak as long as thine will serve the turn? + +VALENTINE: +Ay, my good lord. + +DUKE: +Then let me see thy cloak: +I'll get me one of such another length. + +VALENTINE: +Why, any cloak will serve the turn, my lord. + +DUKE: +How shall I fashion me to wear a cloak? +I pray thee, let me feel thy cloak upon me. +What letter is this same? What's here? 'To Silvia'! +And here an engine fit for my proceeding. +I'll be so bold to break the seal for once. +'My thoughts do harbour with my Silvia nightly, +And slaves they are to me that send them flying: +O, could their master come and go as lightly, +Himself would lodge where senseless they are lying! +My herald thoughts in thy pure bosom rest them: +While I, their king, that hither them importune, +Do curse the grace that with such grace hath bless'd them, +Because myself do want my servants' fortune: +I curse myself, for they are sent by me, +That they should harbour where their lord would be.' +What's here? +'Silvia, this night I will enfranchise thee.' +'Tis so; and here's the ladder for the purpose. +Why, Phaeton,--for thou art Merops' son,-- +Wilt thou aspire to guide the heavenly car +And with thy daring folly burn the world? +Wilt thou reach stars, because they shine on thee? +Go, base intruder! overweening slave! +Bestow thy fawning smiles on equal mates, +And think my patience, more than thy desert, +Is privilege for thy departure hence: +Thank me for this more than for all the favours +Which all too much I have bestow'd on thee. +But if thou linger in my territories +Longer than swiftest expedition +Will give thee time to leave our royal court, +By heaven! my wrath shall far exceed the love +I ever bore my daughter or thyself. +Be gone! I will not hear thy vain excuse; +But, as thou lovest thy life, make speed from hence. + +VALENTINE: +And why not death rather than living torment? +To die is to be banish'd from myself; +And Silvia is myself: banish'd from her +Is self from self: a deadly banishment! +What light is light, if Silvia be not seen? +What joy is joy, if Silvia be not by? +Unless it be to think that she is by +And feed upon the shadow of perfection +Except I be by Silvia in the night, +There is no music in the nightingale; +Unless I look on Silvia in the day, +There is no day for me to look upon; +She is my essence, and I leave to be, +If I be not by her fair influence +Foster'd, illumined, cherish'd, kept alive. +I fly not death, to fly his deadly doom: +Tarry I here, I but attend on death: +But, fly I hence, I fly away from life. + +PROTEUS: +Run, boy, run, run, and seek him out. + +LAUNCE: +Soho, soho! + +PROTEUS: +What seest thou? + +LAUNCE: +Him we go to find: there's not a hair on's head +but 'tis a Valentine. + +PROTEUS: +Valentine? + +VALENTINE: +No. + +PROTEUS: +Who then? his spirit? + +VALENTINE: +Neither. + +PROTEUS: +What then? + +VALENTINE: +Nothing. + +LAUNCE: +Can nothing speak? Master, shall I strike? + +PROTEUS: +Who wouldst thou strike? + +LAUNCE: +Nothing. + +PROTEUS: +Villain, forbear. + +LAUNCE: +Why, sir, I'll strike nothing: I pray you,-- + +PROTEUS: +Sirrah, I say, forbear. Friend Valentine, a word. + +VALENTINE: +My ears are stopt and cannot hear good news, +So much of bad already hath possess'd them. + +PROTEUS: +Then in dumb silence will I bury mine, +For they are harsh, untuneable and bad. + +VALENTINE: +Is Silvia dead? + +PROTEUS: +No, Valentine. + +VALENTINE: +No Valentine, indeed, for sacred Silvia. +Hath she forsworn me? + +PROTEUS: +No, Valentine. + +VALENTINE: +No Valentine, if Silvia have forsworn me. +What is your news? + +LAUNCE: +Sir, there is a proclamation that you are vanished. + +PROTEUS: +That thou art banished--O, that's the news!-- +From hence, from Silvia and from me thy friend. + +VALENTINE: +O, I have fed upon this woe already, +And now excess of it will make me surfeit. +Doth Silvia know that I am banished? + +PROTEUS: +Ay, ay; and she hath offer'd to the doom-- +Which, unreversed, stands in effectual force-- +A sea of melting pearl, which some call tears: +Those at her father's churlish feet she tender'd; +With them, upon her knees, her humble self; +Wringing her hands, whose whiteness so became them +As if but now they waxed pale for woe: +But neither bended knees, pure hands held up, +Sad sighs, deep groans, nor silver-shedding tears, +Could penetrate her uncompassionate sire; +But Valentine, if he be ta'en, must die. +Besides, her intercession chafed him so, +When she for thy repeal was suppliant, +That to close prison he commanded her, +With many bitter threats of biding there. + +VALENTINE: +No more; unless the next word that thou speak'st +Have some malignant power upon my life: +If so, I pray thee, breathe it in mine ear, +As ending anthem of my endless dolour. + +PROTEUS: +Cease to lament for that thou canst not help, +And study help for that which thou lament'st. +Time is the nurse and breeder of all good. +Here if thou stay, thou canst not see thy love; +Besides, thy staying will abridge thy life. +Hope is a lover's staff; walk hence with that +And manage it against despairing thoughts. +Thy letters may be here, though thou art hence; +Which, being writ to me, shall be deliver'd +Even in the milk-white bosom of thy love. +The time now serves not to expostulate: +Come, I'll convey thee through the city-gate; +And, ere I part with thee, confer at large +Of all that may concern thy love-affairs. +As thou lovest Silvia, though not for thyself, +Regard thy danger, and along with me! + +VALENTINE: +I pray thee, Launce, an if thou seest my boy, +Bid him make haste and meet me at the North-gate. + +PROTEUS: +Go, sirrah, find him out. Come, Valentine. + +VALENTINE: +O my dear Silvia! Hapless Valentine! + +LAUNCE: +I am but a fool, look you; and yet I have the wit to +think my master is a kind of a knave: but that's +all one, if he be but one knave. He lives not now +that knows me to be in love; yet I am in love; but a +team of horse shall not pluck that from me; nor who +'tis I love; and yet 'tis a woman; but what woman, I +will not tell myself; and yet 'tis a milkmaid; yet +'tis not a maid, for she hath had gossips; yet 'tis +a maid, for she is her master's maid, and serves for +wages. She hath more qualities than a water-spaniel; +which is much in a bare Christian. +Here is the cate-log of her condition. +'Imprimis: She can fetch and carry.' Why, a horse +can do no more: nay, a horse cannot fetch, but only +carry; therefore is she better than a jade. 'Item: +She can milk;' look you, a sweet virtue in a maid +with clean hands. + +SPEED: +How now, Signior Launce! what news with your +mastership? + +LAUNCE: +With my master's ship? why, it is at sea. + +SPEED: +Well, your old vice still; mistake the word. What +news, then, in your paper? + +LAUNCE: +The blackest news that ever thou heardest. + +SPEED: +Why, man, how black? + +LAUNCE: +Why, as black as ink. + +SPEED: +Let me read them. + +LAUNCE: +Fie on thee, jolt-head! thou canst not read. + +SPEED: +Thou liest; I can. + +LAUNCE: +I will try thee. Tell me this: who begot thee? + +SPEED: +Marry, the son of my grandfather. + +LAUNCE: +O illiterate loiterer! it was the son of thy +grandmother: this proves that thou canst not read. + +SPEED: +Come, fool, come; try me in thy paper. + +LAUNCE: +There; and St. Nicholas be thy speed! + +SPEED: + +LAUNCE: +Ay, that she can. + +SPEED: +'Item: She brews good ale.' + +LAUNCE: +And thereof comes the proverb: 'Blessing of your +heart, you brew good ale.' + +SPEED: +'Item: She can sew.' + +LAUNCE: +That's as much as to say, Can she so? + +SPEED: +'Item: She can knit.' + +LAUNCE: +What need a man care for a stock with a wench, when +she can knit him a stock? + +SPEED: +'Item: She can wash and scour.' + +LAUNCE: +A special virtue: for then she need not be washed +and scoured. + +SPEED: +'Item: She can spin.' + +LAUNCE: +Then may I set the world on wheels, when she can +spin for her living. + +SPEED: +'Item: She hath many nameless virtues.' + +LAUNCE: +That's as much as to say, bastard virtues; that, +indeed, know not their fathers and therefore have no names. + +SPEED: +'Here follow her vices.' + +LAUNCE: +Close at the heels of her virtues. + +SPEED: +'Item: She is not to be kissed fasting in respect +of her breath.' + +LAUNCE: +Well, that fault may be mended with a breakfast. Read on. + +SPEED: +'Item: She hath a sweet mouth.' + +LAUNCE: +That makes amends for her sour breath. + +SPEED: +'Item: She doth talk in her sleep.' + +LAUNCE: +It's no matter for that, so she sleep not in her talk. + +SPEED: +'Item: She is slow in words.' + +LAUNCE: +O villain, that set this down among her vices! To +be slow in words is a woman's only virtue: I pray +thee, out with't, and place it for her chief virtue. + +SPEED: +'Item: She is proud.' + +LAUNCE: +Out with that too; it was Eve's legacy, and cannot +be ta'en from her. + +SPEED: +'Item: She hath no teeth.' + +LAUNCE: +I care not for that neither, because I love crusts. + +SPEED: +'Item: She is curst.' + +LAUNCE: +Well, the best is, she hath no teeth to bite. + +SPEED: +'Item: She will often praise her liquor.' + +LAUNCE: +If her liquor be good, she shall: if she will not, I +will; for good things should be praised. + +SPEED: +'Item: She is too liberal.' + +LAUNCE: +Of her tongue she cannot, for that's writ down she +is slow of; of her purse she shall not, for that +I'll keep shut: now, of another thing she may, and +that cannot I help. Well, proceed. + +SPEED: +'Item: She hath more hair than wit, and more faults +than hairs, and more wealth than faults.' + +LAUNCE: +Stop there; I'll have her: she was mine, and not +mine, twice or thrice in that last article. +Rehearse that once more. + +SPEED: +'Item: She hath more hair than wit,'-- + +LAUNCE: +More hair than wit? It may be; I'll prove it. The +cover of the salt hides the salt, and therefore it +is more than the salt; the hair that covers the wit +is more than the wit, for the greater hides the +less. What's next? + +SPEED: +'And more faults than hairs,'-- + +LAUNCE: +That's monstrous: O, that that were out! + +SPEED: +'And more wealth than faults.' + +LAUNCE: +Why, that word makes the faults gracious. Well, +I'll have her; and if it be a match, as nothing is +impossible,-- + +SPEED: +What then? + +LAUNCE: +Why, then will I tell thee--that thy master stays +for thee at the North-gate. + +SPEED: +For me? + +LAUNCE: +For thee! ay, who art thou? he hath stayed for a +better man than thee. + +SPEED: +And must I go to him? + +LAUNCE: +Thou must run to him, for thou hast stayed so long +that going will scarce serve the turn. + +SPEED: +Why didst not tell me sooner? pox of your love letters! + +LAUNCE: +Now will he be swinged for reading my letter; an +unmannerly slave, that will thrust himself into +secrets! I'll after, to rejoice in the boy's correction. + +DUKE: +Sir Thurio, fear not but that she will love you, +Now Valentine is banish'd from her sight. + +THURIO: +Since his exile she hath despised me most, +Forsworn my company and rail'd at me, +That I am desperate of obtaining her. + +DUKE: +This weak impress of love is as a figure +Trenched in ice, which with an hour's heat +Dissolves to water and doth lose his form. +A little time will melt her frozen thoughts +And worthless Valentine shall be forgot. +How now, Sir Proteus! Is your countryman +According to our proclamation gone? + +PROTEUS: +Gone, my good lord. + +DUKE: +My daughter takes his going grievously. + +PROTEUS: +A little time, my lord, will kill that grief. + +DUKE: +So I believe; but Thurio thinks not so. +Proteus, the good conceit I hold of thee-- +For thou hast shown some sign of good desert-- +Makes me the better to confer with thee. + +PROTEUS: +Longer than I prove loyal to your grace +Let me not live to look upon your grace. + +DUKE: +Thou know'st how willingly I would effect +The match between Sir Thurio and my daughter. + +PROTEUS: +I do, my lord. + +DUKE: +And also, I think, thou art not ignorant +How she opposes her against my will + +PROTEUS: +She did, my lord, when Valentine was here. + +DUKE: +Ay, and perversely she persevers so. +What might we do to make the girl forget +The love of Valentine and love Sir Thurio? + +PROTEUS: +The best way is to slander Valentine +With falsehood, cowardice and poor descent, +Three things that women highly hold in hate. + +DUKE: +Ay, but she'll think that it is spoke in hate. + +PROTEUS: +Ay, if his enemy deliver it: +Therefore it must with circumstance be spoken +By one whom she esteemeth as his friend. + +DUKE: +Then you must undertake to slander him. + +PROTEUS: +And that, my lord, I shall be loath to do: +'Tis an ill office for a gentleman, +Especially against his very friend. + +DUKE: +Where your good word cannot advantage him, +Your slander never can endamage him; +Therefore the office is indifferent, +Being entreated to it by your friend. + +PROTEUS: +You have prevail'd, my lord; if I can do it +By ought that I can speak in his dispraise, +She shall not long continue love to him. +But say this weed her love from Valentine, +It follows not that she will love Sir Thurio. + +THURIO: +Therefore, as you unwind her love from him, +Lest it should ravel and be good to none, +You must provide to bottom it on me; +Which must be done by praising me as much +As you in worth dispraise Sir Valentine. + +DUKE: +And, Proteus, we dare trust you in this kind, +Because we know, on Valentine's report, +You are already Love's firm votary +And cannot soon revolt and change your mind. +Upon this warrant shall you have access +Where you with Silvia may confer at large; +For she is lumpish, heavy, melancholy, +And, for your friend's sake, will be glad of you; +Where you may temper her by your persuasion +To hate young Valentine and love my friend. + +PROTEUS: +As much as I can do, I will effect: +But you, Sir Thurio, are not sharp enough; +You must lay lime to tangle her desires +By wailful sonnets, whose composed rhymes +Should be full-fraught with serviceable vows. + +DUKE: +Ay, +Much is the force of heaven-bred poesy. + +PROTEUS: +Say that upon the altar of her beauty +You sacrifice your tears, your sighs, your heart: +Write till your ink be dry, and with your tears +Moist it again, and frame some feeling line +That may discover such integrity: +For Orpheus' lute was strung with poets' sinews, +Whose golden touch could soften steel and stones, +Make tigers tame and huge leviathans +Forsake unsounded deeps to dance on sands. +After your dire-lamenting elegies, +Visit by night your lady's chamber-window +With some sweet concert; to their instruments +Tune a deploring dump: the night's dead silence +Will well become such sweet-complaining grievance. +This, or else nothing, will inherit her. + +DUKE: +This discipline shows thou hast been in love. + +THURIO: +And thy advice this night I'll put in practise. +Therefore, sweet Proteus, my direction-giver, +Let us into the city presently +To sort some gentlemen well skill'd in music. +I have a sonnet that will serve the turn +To give the onset to thy good advice. + +DUKE: +About it, gentlemen! + +PROTEUS: +We'll wait upon your grace till after supper, +And afterward determine our proceedings. + +DUKE: +Even now about it! I will pardon you. + +First Outlaw: +Fellows, stand fast; I see a passenger. + +Second Outlaw: +If there be ten, shrink not, but down with 'em. + +Third Outlaw: +Stand, sir, and throw us that you have about ye: +If not: we'll make you sit and rifle you. + +SPEED: +Sir, we are undone; these are the villains +That all the travellers do fear so much. + +VALENTINE: +My friends,-- + +First Outlaw: +That's not so, sir: we are your enemies. + +Second Outlaw: +Peace! we'll hear him. + +Third Outlaw: +Ay, by my beard, will we, for he's a proper man. + +VALENTINE: +Then know that I have little wealth to lose: +A man I am cross'd with adversity; +My riches are these poor habiliments, +Of which if you should here disfurnish me, +You take the sum and substance that I have. + +Second Outlaw: +Whither travel you? + +VALENTINE: +To Verona. + +First Outlaw: +Whence came you? + +VALENTINE: +From Milan. + +Third Outlaw: +Have you long sojourned there? + +VALENTINE: +Some sixteen months, and longer might have stay'd, +If crooked fortune had not thwarted me. + +First Outlaw: +What, were you banish'd thence? + +VALENTINE: +I was. + +Second Outlaw: +For what offence? + +VALENTINE: +For that which now torments me to rehearse: +I kill'd a man, whose death I much repent; +But yet I slew him manfully in fight, +Without false vantage or base treachery. + +First Outlaw: +Why, ne'er repent it, if it were done so. +But were you banish'd for so small a fault? + +VALENTINE: +I was, and held me glad of such a doom. + +Second Outlaw: +Have you the tongues? + +VALENTINE: +My youthful travel therein made me happy, +Or else I often had been miserable. + +Third Outlaw: +By the bare scalp of Robin Hood's fat friar, +This fellow were a king for our wild faction! + +First Outlaw: +We'll have him. Sirs, a word. + +SPEED: +Master, be one of them; it's an honourable kind of thievery. + +VALENTINE: +Peace, villain! + +Second Outlaw: +Tell us this: have you any thing to take to? + +VALENTINE: +Nothing but my fortune. + +Third Outlaw: +Know, then, that some of us are gentlemen, +Such as the fury of ungovern'd youth +Thrust from the company of awful men: +Myself was from Verona banished +For practising to steal away a lady, +An heir, and near allied unto the duke. + +Second Outlaw: +And I from Mantua, for a gentleman, +Who, in my mood, I stabb'd unto the heart. + +First Outlaw: +And I for such like petty crimes as these, +But to the purpose--for we cite our faults, +That they may hold excus'd our lawless lives; +And partly, seeing you are beautified +With goodly shape and by your own report +A linguist and a man of such perfection +As we do in our quality much want-- + +Second Outlaw: +Indeed, because you are a banish'd man, +Therefore, above the rest, we parley to you: +Are you content to be our general? +To make a virtue of necessity +And live, as we do, in this wilderness? + +Third Outlaw: +What say'st thou? wilt thou be of our consort? +Say ay, and be the captain of us all: +We'll do thee homage and be ruled by thee, +Love thee as our commander and our king. + +First Outlaw: +But if thou scorn our courtesy, thou diest. + +Second Outlaw: +Thou shalt not live to brag what we have offer'd. + +VALENTINE: +I take your offer and will live with you, +Provided that you do no outrages +On silly women or poor passengers. + +Third Outlaw: +No, we detest such vile base practises. +Come, go with us, we'll bring thee to our crews, +And show thee all the treasure we have got, +Which, with ourselves, all rest at thy dispose. + +PROTEUS: +Already have I been false to Valentine +And now I must be as unjust to Thurio. +Under the colour of commending him, +I have access my own love to prefer: +But Silvia is too fair, too true, too holy, +To be corrupted with my worthless gifts. +When I protest true loyalty to her, +She twits me with my falsehood to my friend; +When to her beauty I commend my vows, +She bids me think how I have been forsworn +In breaking faith with Julia whom I loved: +And notwithstanding all her sudden quips, +The least whereof would quell a lover's hope, +Yet, spaniel-like, the more she spurns my love, +The more it grows and fawneth on her still. +But here comes Thurio: now must we to her window, +And give some evening music to her ear. + +THURIO: +How now, Sir Proteus, are you crept before us? + +PROTEUS: +Ay, gentle Thurio: for you know that love +Will creep in service where it cannot go. + +THURIO: +Ay, but I hope, sir, that you love not here. + +PROTEUS: +Sir, but I do; or else I would be hence. + +THURIO: +Who? Silvia? + +PROTEUS: +Ay, Silvia; for your sake. + +THURIO: +I thank you for your own. Now, gentlemen, +Let's tune, and to it lustily awhile. + +Host: +Now, my young guest, methinks you're allycholly: I +pray you, why is it? + +JULIA: +Marry, mine host, because I cannot be merry. + +Host: +Come, we'll have you merry: I'll bring you where +you shall hear music and see the gentleman that you asked for. + +JULIA: +But shall I hear him speak? + +Host: +Ay, that you shall. + +JULIA: +That will be music. + +Host: +Hark, hark! + +JULIA: +Is he among these? + +Host: +Ay: but, peace! let's hear 'em. +Who is Silvia? what is she, +That all our swains commend her? +Holy, fair and wise is she; +The heaven such grace did lend her, +That she might admired be. +Is she kind as she is fair? +For beauty lives with kindness. +Love doth to her eyes repair, +To help him of his blindness, +And, being help'd, inhabits there. +Then to Silvia let us sing, +That Silvia is excelling; +She excels each mortal thing +Upon the dull earth dwelling: +To her let us garlands bring. + +Host: +How now! are you sadder than you were before? How +do you, man? the music likes you not. + +JULIA: +You mistake; the musician likes me not. + +Host: +Why, my pretty youth? + +JULIA: +He plays false, father. + +Host: +How? out of tune on the strings? + +JULIA: +Not so; but yet so false that he grieves my very +heart-strings. + +Host: +You have a quick ear. + +JULIA: +Ay, I would I were deaf; it makes me have a slow heart. + +Host: +I perceive you delight not in music. + +JULIA: +Not a whit, when it jars so. + +Host: +Hark, what fine change is in the music! + +JULIA: +Ay, that change is the spite. + +Host: +You would have them always play but one thing? + +JULIA: +I would always have one play but one thing. +But, host, doth this Sir Proteus that we talk on +Often resort unto this gentlewoman? + +Host: +I tell you what Launce, his man, told me: he loved +her out of all nick. + +JULIA: +Where is Launce? + +Host: +Gone to seek his dog; which tomorrow, by his +master's command, he must carry for a present to his lady. + +JULIA: +Peace! stand aside: the company parts. + +PROTEUS: +Sir Thurio, fear not you: I will so plead +That you shall say my cunning drift excels. + +THURIO: +Where meet we? + +PROTEUS: +At Saint Gregory's well. + +THURIO: +Farewell. + +PROTEUS: +Madam, good even to your ladyship. + +SILVIA: +I thank you for your music, gentlemen. +Who is that that spake? + +PROTEUS: +One, lady, if you knew his pure heart's truth, +You would quickly learn to know him by his voice. + +SILVIA: +Sir Proteus, as I take it. + +PROTEUS: +Sir Proteus, gentle lady, and your servant. + +SILVIA: +What's your will? + +PROTEUS: +That I may compass yours. + +SILVIA: +You have your wish; my will is even this: +That presently you hie you home to bed. +Thou subtle, perjured, false, disloyal man! +Think'st thou I am so shallow, so conceitless, +To be seduced by thy flattery, +That hast deceived so many with thy vows? +Return, return, and make thy love amends. +For me, by this pale queen of night I swear, +I am so far from granting thy request +That I despise thee for thy wrongful suit, +And by and by intend to chide myself +Even for this time I spend in talking to thee. + +PROTEUS: +I grant, sweet love, that I did love a lady; +But she is dead. + +JULIA: + +SILVIA: +Say that she be; yet Valentine thy friend +Survives; to whom, thyself art witness, +I am betroth'd: and art thou not ashamed +To wrong him with thy importunacy? + +PROTEUS: +I likewise hear that Valentine is dead. + +SILVIA: +And so suppose am I; for in his grave +Assure thyself my love is buried. + +PROTEUS: +Sweet lady, let me rake it from the earth. + +SILVIA: +Go to thy lady's grave and call hers thence, +Or, at the least, in hers sepulchre thine. + +JULIA: + +PROTEUS: +Madam, if your heart be so obdurate, +Vouchsafe me yet your picture for my love, +The picture that is hanging in your chamber; +To that I'll speak, to that I'll sigh and weep: +For since the substance of your perfect self +Is else devoted, I am but a shadow; +And to your shadow will I make true love. + +JULIA: + +SILVIA: +I am very loath to be your idol, sir; +But since your falsehood shall become you well +To worship shadows and adore false shapes, +Send to me in the morning and I'll send it: +And so, good rest. + +PROTEUS: +As wretches have o'ernight +That wait for execution in the morn. + +JULIA: +Host, will you go? + +Host: +By my halidom, I was fast asleep. + +JULIA: +Pray you, where lies Sir Proteus? + +Host: +Marry, at my house. Trust me, I think 'tis almost +day. + +JULIA: +Not so; but it hath been the longest night +That e'er I watch'd and the most heaviest. + +EGLAMOUR: +This is the hour that Madam Silvia +Entreated me to call and know her mind: +There's some great matter she'ld employ me in. +Madam, madam! + +SILVIA: +Who calls? + +EGLAMOUR: +Your servant and your friend; +One that attends your ladyship's command. + +SILVIA: +Sir Eglamour, a thousand times good morrow. + +EGLAMOUR: +As many, worthy lady, to yourself: +According to your ladyship's impose, +I am thus early come to know what service +It is your pleasure to command me in. + +SILVIA: +O Eglamour, thou art a gentleman-- +Think not I flatter, for I swear I do not-- +Valiant, wise, remorseful, well accomplish'd: +Thou art not ignorant what dear good will +I bear unto the banish'd Valentine, +Nor how my father would enforce me marry +Vain Thurio, whom my very soul abhors. +Thyself hast loved; and I have heard thee say +No grief did ever come so near thy heart +As when thy lady and thy true love died, +Upon whose grave thou vow'dst pure chastity. +Sir Eglamour, I would to Valentine, +To Mantua, where I hear he makes abode; +And, for the ways are dangerous to pass, +I do desire thy worthy company, +Upon whose faith and honour I repose. +Urge not my father's anger, Eglamour, +But think upon my grief, a lady's grief, +And on the justice of my flying hence, +To keep me from a most unholy match, +Which heaven and fortune still rewards with plagues. +I do desire thee, even from a heart +As full of sorrows as the sea of sands, +To bear me company and go with me: +If not, to hide what I have said to thee, +That I may venture to depart alone. + +EGLAMOUR: +Madam, I pity much your grievances; +Which since I know they virtuously are placed, +I give consent to go along with you, +Recking as little what betideth me +As much I wish all good befortune you. +When will you go? + +SILVIA: +This evening coming. + +EGLAMOUR: +Where shall I meet you? + +SILVIA: +At Friar Patrick's cell, +Where I intend holy confession. + +EGLAMOUR: +I will not fail your ladyship. Good morrow, gentle lady. + +SILVIA: +Good morrow, kind Sir Eglamour. + +LAUNCE: +When a man's servant shall play the cur with him, +look you, it goes hard: one that I brought up of a +puppy; one that I saved from drowning, when three or +four of his blind brothers and sisters went to it. +I have taught him, even as one would say precisely, +'thus I would teach a dog.' I was sent to deliver +him as a present to Mistress Silvia from my master; +and I came no sooner into the dining-chamber but he +steps me to her trencher and steals her capon's leg: +O, 'tis a foul thing when a cur cannot keep himself +in all companies! I would have, as one should say, +one that takes upon him to be a dog indeed, to be, +as it were, a dog at all things. If I had not had +more wit than he, to take a fault upon me that he did, +I think verily he had been hanged for't; sure as I +live, he had suffered for't; you shall judge. He +thrusts me himself into the company of three or four +gentlemanlike dogs under the duke's table: he had +not been there--bless the mark!--a pissing while, but +all the chamber smelt him. 'Out with the dog!' says +one: 'What cur is that?' says another: 'Whip him +out' says the third: 'Hang him up' says the duke. +I, having been acquainted with the smell before, +knew it was Crab, and goes me to the fellow that +whips the dogs: 'Friend,' quoth I, 'you mean to whip +the dog?' 'Ay, marry, do I,' quoth he. 'You do him +the more wrong,' quoth I; ''twas I did the thing you +wot of.' He makes me no more ado, but whips me out +of the chamber. How many masters would do this for +his servant? Nay, I'll be sworn, I have sat in the +stocks for puddings he hath stolen, otherwise he had +been executed; I have stood on the pillory for geese +he hath killed, otherwise he had suffered for't. +Thou thinkest not of this now. Nay, I remember the +trick you served me when I took my leave of Madam +Silvia: did not I bid thee still mark me and do as I +do? when didst thou see me heave up my leg and make +water against a gentlewoman's farthingale? didst +thou ever see me do such a trick? + +PROTEUS: +Sebastian is thy name? I like thee well +And will employ thee in some service presently. + +JULIA: +In what you please: I'll do what I can. + +PROTEUS: +I hope thou wilt. +How now, you whoreson peasant! +Where have you been these two days loitering? + +LAUNCE: +Marry, sir, I carried Mistress Silvia the dog you bade me. + +PROTEUS: +And what says she to my little jewel? + +LAUNCE: +Marry, she says your dog was a cur, and tells you +currish thanks is good enough for such a present. + +PROTEUS: +But she received my dog? + +LAUNCE: +No, indeed, did she not: here have I brought him +back again. + +PROTEUS: +What, didst thou offer her this from me? + +LAUNCE: +Ay, sir: the other squirrel was stolen from me by +the hangman boys in the market-place: and then I +offered her mine own, who is a dog as big as ten of +yours, and therefore the gift the greater. + +PROTEUS: +Go get thee hence, and find my dog again, +Or ne'er return again into my sight. +Away, I say! stay'st thou to vex me here? +A slave, that still an end turns me to shame! +Sebastian, I have entertained thee, +Partly that I have need of such a youth +That can with some discretion do my business, +For 'tis no trusting to yond foolish lout, +But chiefly for thy face and thy behavior, +Which, if my augury deceive me not, +Witness good bringing up, fortune and truth: +Therefore know thou, for this I entertain thee. +Go presently and take this ring with thee, +Deliver it to Madam Silvia: +She loved me well deliver'd it to me. + +JULIA: +It seems you loved not her, to leave her token. +She is dead, belike? + +PROTEUS: +Not so; I think she lives. + +JULIA: +Alas! + +PROTEUS: +Why dost thou cry 'alas'? + +JULIA: +I cannot choose +But pity her. + +PROTEUS: +Wherefore shouldst thou pity her? + +JULIA: +Because methinks that she loved you as well +As you do love your lady Silvia: +She dreams of him that has forgot her love; +You dote on her that cares not for your love. +'Tis pity love should be so contrary; +And thinking of it makes me cry 'alas!' + +PROTEUS: +Well, give her that ring and therewithal +This letter. That's her chamber. Tell my lady +I claim the promise for her heavenly picture. +Your message done, hie home unto my chamber, +Where thou shalt find me, sad and solitary. + +JULIA: +How many women would do such a message? +Alas, poor Proteus! thou hast entertain'd +A fox to be the shepherd of thy lambs. +Alas, poor fool! why do I pity him +That with his very heart despiseth me? +Because he loves her, he despiseth me; +Because I love him I must pity him. +This ring I gave him when he parted from me, +To bind him to remember my good will; +And now am I, unhappy messenger, +To plead for that which I would not obtain, +To carry that which I would have refused, +To praise his faith which I would have dispraised. +I am my master's true-confirmed love; +But cannot be true servant to my master, +Unless I prove false traitor to myself. +Yet will I woo for him, but yet so coldly +As, heaven it knows, I would not have him speed. +Gentlewoman, good day! I pray you, be my mean +To bring me where to speak with Madam Silvia. + +SILVIA: +What would you with her, if that I be she? + +JULIA: +If you be she, I do entreat your patience +To hear me speak the message I am sent on. + +SILVIA: +From whom? + +JULIA: +From my master, Sir Proteus, madam. + +SILVIA: +O, he sends you for a picture. + +JULIA: +Ay, madam. + +SILVIA: +Ursula, bring my picture here. +Go give your master this: tell him from me, +One Julia, that his changing thoughts forget, +Would better fit his chamber than this shadow. + +JULIA: +Madam, please you peruse this letter.-- +Pardon me, madam; I have unadvised +Deliver'd you a paper that I should not: +This is the letter to your ladyship. + +SILVIA: +I pray thee, let me look on that again. + +JULIA: +It may not be; good madam, pardon me. + +SILVIA: +There, hold! +I will not look upon your master's lines: +I know they are stuff'd with protestations +And full of new-found oaths; which he will break +As easily as I do tear his paper. + +JULIA: +Madam, he sends your ladyship this ring. + +SILVIA: +The more shame for him that he sends it me; +For I have heard him say a thousand times +His Julia gave it him at his departure. +Though his false finger have profaned the ring, +Mine shall not do his Julia so much wrong. + +JULIA: +She thanks you. + +SILVIA: +What say'st thou? + +JULIA: +I thank you, madam, that you tender her. +Poor gentlewoman! my master wrongs her much. + +SILVIA: +Dost thou know her? + +JULIA: +Almost as well as I do know myself: +To think upon her woes I do protest +That I have wept a hundred several times. + +SILVIA: +Belike she thinks that Proteus hath forsook her. + +JULIA: +I think she doth; and that's her cause of sorrow. + +SILVIA: +Is she not passing fair? + +JULIA: +She hath been fairer, madam, than she is: +When she did think my master loved her well, +She, in my judgment, was as fair as you: +But since she did neglect her looking-glass +And threw her sun-expelling mask away, +The air hath starved the roses in her cheeks +And pinch'd the lily-tincture of her face, +That now she is become as black as I. + +SILVIA: +How tall was she? + +JULIA: +About my stature; for at Pentecost, +When all our pageants of delight were play'd, +Our youth got me to play the woman's part, +And I was trimm'd in Madam Julia's gown, +Which served me as fit, by all men's judgments, +As if the garment had been made for me: +Therefore I know she is about my height. +And at that time I made her weep agood, +For I did play a lamentable part: +Madam, 'twas Ariadne passioning +For Theseus' perjury and unjust flight; +Which I so lively acted with my tears +That my poor mistress, moved therewithal, +Wept bitterly; and would I might be dead +If I in thought felt not her very sorrow! + +SILVIA: +She is beholding to thee, gentle youth. +Alas, poor lady, desolate and left! +I weep myself to think upon thy words. +Here, youth, there is my purse; I give thee this +For thy sweet mistress' sake, because thou lovest her. +Farewell. + +JULIA: +And she shall thank you for't, if e'er you know her. +A virtuous gentlewoman, mild and beautiful +I hope my master's suit will be but cold, +Since she respects my mistress' love so much. +Alas, how love can trifle with itself! +Here is her picture: let me see; I think, +If I had such a tire, this face of mine +Were full as lovely as is this of hers: +And yet the painter flatter'd her a little, +Unless I flatter with myself too much. +Her hair is auburn, mine is perfect yellow: +If that be all the difference in his love, +I'll get me such a colour'd periwig. +Her eyes are grey as glass, and so are mine: +Ay, but her forehead's low, and mine's as high. +What should it be that he respects in her +But I can make respective in myself, +If this fond Love were not a blinded god? +Come, shadow, come and take this shadow up, +For 'tis thy rival. O thou senseless form, +Thou shalt be worshipp'd, kiss'd, loved and adored! +And, were there sense in his idolatry, +My substance should be statue in thy stead. +I'll use thee kindly for thy mistress' sake, +That used me so; or else, by Jove I vow, +I should have scratch'd out your unseeing eyes +To make my master out of love with thee! + +EGLAMOUR: +The sun begins to gild the western sky; +And now it is about the very hour +That Silvia, at Friar Patrick's cell, should meet me. +She will not fail, for lovers break not hours, +Unless it be to come before their time; +So much they spur their expedition. +See where she comes. +Lady, a happy evening! + +SILVIA: +Amen, amen! Go on, good Eglamour, +Out at the postern by the abbey-wall: +I fear I am attended by some spies. + +EGLAMOUR: +Fear not: the forest is not three leagues off; +If we recover that, we are sure enough. + +THURIO: +Sir Proteus, what says Silvia to my suit? + +PROTEUS: +O, sir, I find her milder than she was; +And yet she takes exceptions at your person. + +THURIO: +What, that my leg is too long? + +PROTEUS: +No; that it is too little. + +THURIO: +I'll wear a boot, to make it somewhat rounder. + +JULIA: + +THURIO: +What says she to my face? + +PROTEUS: +She says it is a fair one. + +THURIO: +Nay then, the wanton lies; my face is black. + +PROTEUS: +But pearls are fair; and the old saying is, +Black men are pearls in beauteous ladies' eyes. + +JULIA: + +THURIO: +How likes she my discourse? + +PROTEUS: +Ill, when you talk of war. + +THURIO: +But well, when I discourse of love and peace? + +JULIA: + +THURIO: +What says she to my valour? + +PROTEUS: +O, sir, she makes no doubt of that. + +JULIA: + +THURIO: +What says she to my birth? + +PROTEUS: +That you are well derived. + +JULIA: + +THURIO: +Considers she my possessions? + +PROTEUS: +O, ay; and pities them. + +THURIO: +Wherefore? + +JULIA: + +PROTEUS: +That they are out by lease. + +JULIA: +Here comes the duke. + +DUKE: +How now, Sir Proteus! how now, Thurio! +Which of you saw Sir Eglamour of late? + +THURIO: +Not I. + +PROTEUS: +Nor I. + +DUKE: +Saw you my daughter? + +PROTEUS: +Neither. + +DUKE: +Why then, +She's fled unto that peasant Valentine; +And Eglamour is in her company. +'Tis true; for Friar Laurence met them both, +As he in penance wander'd through the forest; +Him he knew well, and guess'd that it was she, +But, being mask'd, he was not sure of it; +Besides, she did intend confession +At Patrick's cell this even; and there she was not; +These likelihoods confirm her flight from hence. +Therefore, I pray you, stand not to discourse, +But mount you presently and meet with me +Upon the rising of the mountain-foot +That leads towards Mantua, whither they are fled: +Dispatch, sweet gentlemen, and follow me. + +THURIO: +Why, this it is to be a peevish girl, +That flies her fortune when it follows her. +I'll after, more to be revenged on Eglamour +Than for the love of reckless Silvia. + +PROTEUS: +And I will follow, more for Silvia's love +Than hate of Eglamour that goes with her. + +JULIA: +And I will follow, more to cross that love +Than hate for Silvia that is gone for love. + +First Outlaw: +Come, come, +Be patient; we must bring you to our captain. + +SILVIA: +A thousand more mischances than this one +Have learn'd me how to brook this patiently. + +Second Outlaw: +Come, bring her away. + +First Outlaw: +Where is the gentleman that was with her? + +Third Outlaw: +Being nimble-footed, he hath outrun us, +But Moyses and Valerius follow him. +Go thou with her to the west end of the wood; +There is our captain: we'll follow him that's fled; +The thicket is beset; he cannot 'scape. + +First Outlaw: +Come, I must bring you to our captain's cave: +Fear not; he bears an honourable mind, +And will not use a woman lawlessly. + +SILVIA: +O Valentine, this I endure for thee! + +VALENTINE: +How use doth breed a habit in a man! +This shadowy desert, unfrequented woods, +I better brook than flourishing peopled towns: +Here can I sit alone, unseen of any, +And to the nightingale's complaining notes +Tune my distresses and record my woes. +O thou that dost inhabit in my breast, +Leave not the mansion so long tenantless, +Lest, growing ruinous, the building fall +And leave no memory of what it was! +Repair me with thy presence, Silvia; +Thou gentle nymph, cherish thy forlorn swain! +What halloing and what stir is this to-day? +These are my mates, that make their wills their law, +Have some unhappy passenger in chase. +They love me well; yet I have much to do +To keep them from uncivil outrages. +Withdraw thee, Valentine: who's this comes here? + +PROTEUS: +Madam, this service I have done for you, +Though you respect not aught your servant doth, +To hazard life and rescue you from him +That would have forced your honour and your love; +Vouchsafe me, for my meed, but one fair look; +A smaller boon than this I cannot beg +And less than this, I am sure, you cannot give. + +VALENTINE: + +SILVIA: +O miserable, unhappy that I am! + +PROTEUS: +Unhappy were you, madam, ere I came; +But by my coming I have made you happy. + +SILVIA: +By thy approach thou makest me most unhappy. + +JULIA: + +SILVIA: +Had I been seized by a hungry lion, +I would have been a breakfast to the beast, +Rather than have false Proteus rescue me. +O, Heaven be judge how I love Valentine, +Whose life's as tender to me as my soul! +And full as much, for more there cannot be, +I do detest false perjured Proteus. +Therefore be gone; solicit me no more. + +PROTEUS: +What dangerous action, stood it next to death, +Would I not undergo for one calm look! +O, 'tis the curse in love, and still approved, +When women cannot love where they're beloved! + +SILVIA: +When Proteus cannot love where he's beloved. +Read over Julia's heart, thy first best love, +For whose dear sake thou didst then rend thy faith +Into a thousand oaths; and all those oaths +Descended into perjury, to love me. +Thou hast no faith left now, unless thou'dst two; +And that's far worse than none; better have none +Than plural faith which is too much by one: +Thou counterfeit to thy true friend! + +PROTEUS: +In love +Who respects friend? + +SILVIA: +All men but Proteus. + +PROTEUS: +Nay, if the gentle spirit of moving words +Can no way change you to a milder form, +I'll woo you like a soldier, at arms' end, +And love you 'gainst the nature of love,--force ye. + +SILVIA: +O heaven! + +PROTEUS: +I'll force thee yield to my desire. + +VALENTINE: +Ruffian, let go that rude uncivil touch, +Thou friend of an ill fashion! + +PROTEUS: +Valentine! + +VALENTINE: +Thou common friend, that's without faith or love, +For such is a friend now; treacherous man! +Thou hast beguiled my hopes; nought but mine eye +Could have persuaded me: now I dare not say +I have one friend alive; thou wouldst disprove me. +Who should be trusted, when one's own right hand +Is perjured to the bosom? Proteus, +I am sorry I must never trust thee more, +But count the world a stranger for thy sake. +The private wound is deepest: O time most accurst, +'Mongst all foes that a friend should be the worst! + +PROTEUS: +My shame and guilt confounds me. +Forgive me, Valentine: if hearty sorrow +Be a sufficient ransom for offence, +I tender 't here; I do as truly suffer +As e'er I did commit. + +VALENTINE: +Then I am paid; +And once again I do receive thee honest. +Who by repentance is not satisfied +Is nor of heaven nor earth, for these are pleased. +By penitence the Eternal's wrath's appeased: +And, that my love may appear plain and free, +All that was mine in Silvia I give thee. + +JULIA: +O me unhappy! + +PROTEUS: +Look to the boy. + +VALENTINE: +Why, boy! why, wag! how now! what's the matter? +Look up; speak. + +JULIA: +O good sir, my master charged me to deliver a ring +to Madam Silvia, which, out of my neglect, was never done. + +PROTEUS: +Where is that ring, boy? + +JULIA: +Here 'tis; this is it. + +PROTEUS: +How! let me see: +Why, this is the ring I gave to Julia. + +JULIA: +O, cry you mercy, sir, I have mistook: +This is the ring you sent to Silvia. + +PROTEUS: +But how camest thou by this ring? At my depart +I gave this unto Julia. + +JULIA: +And Julia herself did give it me; +And Julia herself hath brought it hither. + +PROTEUS: +How! Julia! + +JULIA: +Behold her that gave aim to all thy oaths, +And entertain'd 'em deeply in her heart. +How oft hast thou with perjury cleft the root! +O Proteus, let this habit make thee blush! +Be thou ashamed that I have took upon me +Such an immodest raiment, if shame live +In a disguise of love: +It is the lesser blot, modesty finds, +Women to change their shapes than men their minds. + +PROTEUS: +Than men their minds! 'tis true. +O heaven! were man +But constant, he were perfect. That one error +Fills him with faults; makes him run through all the sins: +Inconstancy falls off ere it begins. +What is in Silvia's face, but I may spy +More fresh in Julia's with a constant eye? + +VALENTINE: +Come, come, a hand from either: +Let me be blest to make this happy close; +'Twere pity two such friends should be long foes. + +PROTEUS: +Bear witness, Heaven, I have my wish for ever. + +JULIA: +And I mine. + +Outlaws: +A prize, a prize, a prize! + +VALENTINE: +Forbear, forbear, I say! it is my lord the duke. +Your grace is welcome to a man disgraced, +Banished Valentine. + +DUKE: +Sir Valentine! + +THURIO: +Yonder is Silvia; and Silvia's mine. + +VALENTINE: +Thurio, give back, or else embrace thy death; +Come not within the measure of my wrath; +Do not name Silvia thine; if once again, +Verona shall not hold thee. Here she stands; +Take but possession of her with a touch: +I dare thee but to breathe upon my love. + +THURIO: +Sir Valentine, I care not for her, I; +I hold him but a fool that will endanger +His body for a girl that loves him not: +I claim her not, and therefore she is thine. + +DUKE: +The more degenerate and base art thou, +To make such means for her as thou hast done +And leave her on such slight conditions. +Now, by the honour of my ancestry, +I do applaud thy spirit, Valentine, +And think thee worthy of an empress' love: +Know then, I here forget all former griefs, +Cancel all grudge, repeal thee home again, +Plead a new state in thy unrivall'd merit, +To which I thus subscribe: Sir Valentine, +Thou art a gentleman and well derived; +Take thou thy Silvia, for thou hast deserved her. + +VALENTINE: +I thank your grace; the gift hath made me happy. +I now beseech you, for your daughter's sake, +To grant one boom that I shall ask of you. + +DUKE: +I grant it, for thine own, whate'er it be. + +VALENTINE: +These banish'd men that I have kept withal +Are men endued with worthy qualities: +Forgive them what they have committed here +And let them be recall'd from their exile: +They are reformed, civil, full of good +And fit for great employment, worthy lord. + +DUKE: +Thou hast prevail'd; I pardon them and thee: +Dispose of them as thou know'st their deserts. +Come, let us go: we will include all jars +With triumphs, mirth and rare solemnity. + +VALENTINE: +And, as we walk along, I dare be bold +With our discourse to make your grace to smile. +What think you of this page, my lord? + +DUKE: +I think the boy hath grace in him; he blushes. + +VALENTINE: +I warrant you, my lord, more grace than boy. + +DUKE: +What mean you by that saying? + +VALENTINE: +Please you, I'll tell you as we pass along, +That you will wonder what hath fortuned. +Come, Proteus; 'tis your penance but to hear +The story of your loves discovered: +That done, our day of marriage shall be yours; +One feast, one house, one mutual happiness. + +[GOWER]: +To sing a song that old was sung, +From ashes ancient Gower is come; +Assuming man's infirmities, +To glad your ear, and please your eyes. +It hath been sung at festivals, +On ember-eves and holy-ales; +And lords and ladies in their lives +Have read it for restoratives: +The purchase is to make men glorious; +Et bonum quo antiquius, eo melius. +If you, born in these latter times, +When wit's more ripe, accept my rhymes. +And that to hear an old man sing +May to your wishes pleasure bring +I life would wish, and that I might +Waste it for you, like taper-light. +This Antioch, then, Antiochus the Great +Built up, this city, for his chiefest seat: +The fairest in all Syria, +I tell you what mine authors say: +This king unto him took a fere, +Who died and left a female heir, +So buxom, blithe, and full of face, +As heaven had lent her all his grace; +With whom the father liking took, +And her to incest did provoke: +Bad child; worse father! to entice his own +To evil should be done by none: +But custom what they did begin +Was with long use account no sin. +The beauty of this sinful dame +Made many princes thither frame, +To seek her as a bed-fellow, +In marriage-pleasures play-fellow: +Which to prevent he made a law, +To keep her still, and men in awe, +That whoso ask'd her for his wife, +His riddle told not, lost his life: +So for her many a wight did die, +As yon grim looks do testify. +What now ensues, to the judgment of your eye +I give, my cause who best can justify. + +ANTIOCHUS: +Young prince of Tyre, you have at large received +The danger of the task you undertake. + +PERICLES: +I have, Antiochus, and, with a soul +Embolden'd with the glory of her praise, +Think death no hazard in this enterprise. + +ANTIOCHUS: +Bring in our daughter, clothed like a bride, +For the embracements even of Jove himself; +At whose conception, till Lucina reign'd, +Nature this dowry gave, to glad her presence, +The senate-house of planets all did sit, +To knit in her their best perfections. + +PERICLES: +See where she comes, apparell'd like the spring, +Graces her subjects, and her thoughts the king +Of every virtue gives renown to men! +Her face the book of praises, where is read +Nothing but curious pleasures, as from thence +Sorrow were ever razed and testy wrath +Could never be her mild companion. +You gods that made me man, and sway in love, +That have inflamed desire in my breast +To taste the fruit of yon celestial tree, +Or die in the adventure, be my helps, +As I am son and servant to your will, +To compass such a boundless happiness! + +ANTIOCHUS: +Prince Pericles,-- + +PERICLES: +That would be son to great Antiochus. + +ANTIOCHUS: +Before thee stands this fair Hesperides, +With golden fruit, but dangerous to be touch'd; +For death-like dragons here affright thee hard: +Her face, like heaven, enticeth thee to view +Her countless glory, which desert must gain; +And which, without desert, because thine eye +Presumes to reach, all thy whole heap must die. +Yon sometimes famous princes, like thyself, +Drawn by report, adventurous by desire, +Tell thee, with speechless tongues and semblance pale, +That without covering, save yon field of stars, +Here they stand martyrs, slain in Cupid's wars; +And with dead cheeks advise thee to desist +For going on death's net, whom none resist. + +PERICLES: +Antiochus, I thank thee, who hath taught +My frail mortality to know itself, +And by those fearful objects to prepare +This body, like to them, to what I must; +For death remember'd should be like a mirror, +Who tells us life's but breath, to trust it error. +I'll make my will then, and, as sick men do +Who know the world, see heaven, but, feeling woe, +Gripe not at earthly joys as erst they did; +So I bequeath a happy peace to you +And all good men, as every prince should do; +My riches to the earth from whence they came; +But my unspotted fire of love to you. +Thus ready for the way of life or death, +I wait the sharpest blow, Antiochus. + +ANTIOCHUS: +Scorning advice, read the conclusion then: +Which read and not expounded, 'tis decreed, +As these before thee thou thyself shalt bleed. + +Daughter: +Of all say'd yet, mayst thou prove prosperous! +Of all say'd yet, I wish thee happiness! + +PERICLES: +Like a bold champion, I assume the lists, +Nor ask advice of any other thought +But faithfulness and courage. +I am no viper, yet I feed +On mother's flesh which did me breed. +I sought a husband, in which labour +I found that kindness in a father: +He's father, son, and husband mild; +I mother, wife, and yet his child. +How they may be, and yet in two, +As you will live, resolve it you. +Sharp physic is the last: but, O you powers +That give heaven countless eyes to view men's acts, +Why cloud they not their sights perpetually, +If this be true, which makes me pale to read it? +Fair glass of light, I loved you, and could still, +Were not this glorious casket stored with ill: +But I must tell you, now my thoughts revolt +For he's no man on whom perfections wait +That, knowing sin within, will touch the gate. +You are a fair viol, and your sense the strings; +Who, finger'd to make man his lawful music, +Would draw heaven down, and all the gods, to hearken: +But being play'd upon before your time, +Hell only danceth at so harsh a chime. +Good sooth, I care not for you. + +ANTIOCHUS: +Prince Pericles, touch not, upon thy life. +For that's an article within our law, +As dangerous as the rest. Your time's expired: +Either expound now, or receive your sentence. + +PERICLES: +Great king, +Few love to hear the sins they love to act; +'Twould braid yourself too near for me to tell it. +Who has a book of all that monarchs do, +He's more secure to keep it shut than shown: +For vice repeated is like the wandering wind. +Blows dust in other's eyes, to spread itself; +And yet the end of all is bought thus dear, +The breath is gone, and the sore eyes see clear: +To stop the air would hurt them. The blind mole casts +Copp'd hills towards heaven, to tell the earth is throng'd +By man's oppression; and the poor worm doth die for't. +Kings are earth's gods; in vice their law's +their will; +And if Jove stray, who dares say Jove doth ill? +It is enough you know; and it is fit, +What being more known grows worse, to smother it. +All love the womb that their first being bred, +Then give my tongue like leave to love my head. + +ANTIOCHUS: + +PERICLES: +How courtesy would seem to cover sin, +When what is done is like an hypocrite, +The which is good in nothing but in sight! +If it be true that I interpret false, +Then were it certain you were not so bad +As with foul incest to abuse your soul; +Where now you're both a father and a son, +By your untimely claspings with your child, +Which pleasure fits an husband, not a father; +And she an eater of her mother's flesh, +By the defiling of her parent's bed; +And both like serpents are, who though they feed +On sweetest flowers, yet they poison breed. +Antioch, farewell! for wisdom sees, those men +Blush not in actions blacker than the night, +Will shun no course to keep them from the light. +One sin, I know, another doth provoke; +Murder's as near to lust as flame to smoke: +Poison and treason are the hands of sin, +Ay, and the targets, to put off the shame: +Then, lest my lie be cropp'd to keep you clear, +By flight I'll shun the danger which I fear. + +ANTIOCHUS: +He hath found the meaning, for which we mean +To have his head. +He must not live to trumpet forth my infamy, +Nor tell the world Antiochus doth sin +In such a loathed manner; +And therefore instantly this prince must die: +For by his fall my honour must keep high. +Who attends us there? + +THALIARD: +Doth your highness call? + +ANTIOCHUS: +Thaliard, +You are of our chamber, and our mind partakes +Her private actions to your secrecy; +And for your faithfulness we will advance you. +Thaliard, behold, here's poison, and here's gold; +We hate the prince of Tyre, and thou must kill him: +It fits thee not to ask the reason why, +Because we bid it. Say, is it done? + +THALIARD: +My lord, +'Tis done. + +ANTIOCHUS: +Enough. +Let your breath cool yourself, telling your haste. + +Messenger: +My lord, prince Pericles is fled. + +ANTIOCHUS: +As thou +Wilt live, fly after: and like an arrow shot +From a well-experienced archer hits the mark +His eye doth level at, so thou ne'er return +Unless thou say 'Prince Pericles is dead.' + +THALIARD: +My lord, +If I can get him within my pistol's length, +I'll make him sure enough: so, farewell to your highness. + +ANTIOCHUS: +Thaliard, adieu! +Till Pericles be dead, +My heart can lend no succor to my head. + +PERICLES: + +First Lord: +Joy and all comfort in your sacred breast! + +Second Lord: +And keep your mind, till you return to us, +Peaceful and comfortable! + +HELICANUS: +Peace, peace, and give experience tongue. +They do abuse the king that flatter him: +For flattery is the bellows blows up sin; +The thing which is flatter'd, but a spark, +To which that blast gives heat and stronger glowing; +Whereas reproof, obedient and in order, +Fits kings, as they are men, for they may err. +When Signior Sooth here does proclaim a peace, +He flatters you, makes war upon your life. +Prince, pardon me, or strike me, if you please; +I cannot be much lower than my knees. + +PERICLES: +All leave us else; but let your cares o'erlook +What shipping and what lading's in our haven, +And then return to us. +Helicanus, thou +Hast moved us: what seest thou in our looks? + +HELICANUS: +An angry brow, dread lord. + +PERICLES: +If there be such a dart in princes' frowns, +How durst thy tongue move anger to our face? + +HELICANUS: +How dare the plants look up to heaven, from whence +They have their nourishment? + +PERICLES: +Thou know'st I have power +To take thy life from thee. + +HELICANUS: + +PERICLES: +Rise, prithee, rise. +Sit down: thou art no flatterer: +I thank thee for it; and heaven forbid +That kings should let their ears hear their +faults hid! +Fit counsellor and servant for a prince, +Who by thy wisdom makest a prince thy servant, +What wouldst thou have me do? + +HELICANUS: +To bear with patience +Such griefs as you yourself do lay upon yourself. + +PERICLES: +Thou speak'st like a physician, Helicanus, +That minister'st a potion unto me +That thou wouldst tremble to receive thyself. +Attend me, then: I went to Antioch, +Where as thou know'st, against the face of death, +I sought the purchase of a glorious beauty. +From whence an issue I might propagate, +Are arms to princes, and bring joys to subjects. +Her face was to mine eye beyond all wonder; +The rest--hark in thine ear--as black as incest: +Which by my knowledge found, the sinful father +Seem'd not to strike, but smooth: but thou +know'st this, +'Tis time to fear when tyrants seem to kiss. +Such fear so grew in me, I hither fled, +Under the covering of a careful night, +Who seem'd my good protector; and, being here, +Bethought me what was past, what might succeed. +I knew him tyrannous; and tyrants' fears +Decrease not, but grow faster than the years: +And should he doubt it, as no doubt he doth, +That I should open to the listening air +How many worthy princes' bloods were shed, +To keep his bed of blackness unlaid ope, +To lop that doubt, he'll fill this land with arms, +And make pretence of wrong that I have done him: +When all, for mine, if I may call offence, +Must feel war's blow, who spares not innocence: +Which love to all, of which thyself art one, +Who now reprovest me for it,-- + +HELICANUS: +Alas, sir! + +PERICLES: +Drew sleep out of mine eyes, blood from my cheeks, +Musings into my mind, with thousand doubts +How I might stop this tempest ere it came; +And finding little comfort to relieve them, +I thought it princely charity to grieve them. + +HELICANUS: +Well, my lord, since you have given me leave to speak. +Freely will I speak. Antiochus you fear, +And justly too, I think, you fear the tyrant, +Who either by public war or private treason +Will take away your life. +Therefore, my lord, go travel for a while, +Till that his rage and anger be forgot, +Or till the Destinies do cut his thread of life. +Your rule direct to any; if to me. +Day serves not light more faithful than I'll be. + +PERICLES: +I do not doubt thy faith; +But should he wrong my liberties in my absence? + +HELICANUS: +We'll mingle our bloods together in the earth, +From whence we had our being and our birth. + +PERICLES: +Tyre, I now look from thee then, and to Tarsus +Intend my travel, where I'll hear from thee; +And by whose letters I'll dispose myself. +The care I had and have of subjects' good +On thee I lay whose wisdom's strength can bear it. +I'll take thy word for faith, not ask thine oath: +Who shuns not to break one will sure crack both: +But in our orbs we'll live so round and safe, +That time of both this truth shall ne'er convince, +Thou show'dst a subject's shine, I a true prince. + +THALIARD: +So, this is Tyre, and this the court. Here must I +kill King Pericles; and if I do it not, I am sure to +be hanged at home: 'tis dangerous. Well, I perceive +he was a wise fellow, and had good discretion, that, +being bid to ask what he would of the king, desired +he might know none of his secrets: now do I see he +had some reason for't; for if a king bid a man be a +villain, he's bound by the indenture of his oath to +be one! Hush! here come the lords of Tyre. + +HELICANUS: +You shall not need, my fellow peers of Tyre, +Further to question me of your king's departure: +His seal'd commission, left in trust with me, +Doth speak sufficiently he's gone to travel. + +THALIARD: + +HELICANUS: +If further yet you will be satisfied, +Why, as it were unlicensed of your loves, +He would depart, I'll give some light unto you. +Being at Antioch-- + +THALIARD: + +HELICANUS: +Royal Antiochus--on what cause I know not-- +Took some displeasure at him; at least he judged so: +And doubting lest that he had err'd or sinn'd, +To show his sorrow, he'ld correct himself; +So puts himself unto the shipman's toil, +With whom each minute threatens life or death. + +THALIARD: + +HELICANUS: +Lord Thaliard from Antiochus is welcome. + +THALIARD: +From him I come +With message unto princely Pericles; +But since my landing I have understood +Your lord has betook himself to unknown travels, +My message must return from whence it came. + +HELICANUS: +We have no reason to desire it, +Commended to our master, not to us: +Yet, ere you shall depart, this we desire, +As friends to Antioch, we may feast in Tyre. + +CLEON: +My Dionyza, shall we rest us here, +And by relating tales of others' griefs, +See if 'twill teach us to forget our own? + +DIONYZA: +That were to blow at fire in hope to quench it; +For who digs hills because they do aspire +Throws down one mountain to cast up a higher. +O my distressed lord, even such our griefs are; +Here they're but felt, and seen with mischief's eyes, +But like to groves, being topp'd, they higher rise. + +CLEON: +O Dionyza, +Who wanteth food, and will not say he wants it, +Or can conceal his hunger till he famish? +Our tongues and sorrows do sound deep +Our woes into the air; our eyes do weep, +Till tongues fetch breath that may proclaim them louder; +That, if heaven slumber while their creatures want, +They may awake their helps to comfort them. +I'll then discourse our woes, felt several years, +And wanting breath to speak help me with tears. + +DIONYZA: +I'll do my best, sir. + +CLEON: +This Tarsus, o'er which I have the government, +A city on whom plenty held full hand, +For riches strew'd herself even in the streets; +Whose towers bore heads so high they kiss'd the clouds, +And strangers ne'er beheld but wondered at; +Whose men and dames so jetted and adorn'd, +Like one another's glass to trim them by: +Their tables were stored full, to glad the sight, +And not so much to feed on as delight; +All poverty was scorn'd, and pride so great, +The name of help grew odious to repeat. + +DIONYZA: +O, 'tis too true. + +CLEON: +But see what heaven can do! By this our change, +These mouths, who but of late, earth, sea, and air, +Were all too little to content and please, +Although they gave their creatures in abundance, +As houses are defiled for want of use, +They are now starved for want of exercise: +Those palates who, not yet two summers younger, +Must have inventions to delight the taste, +Would now be glad of bread, and beg for it: +Those mothers who, to nousle up their babes, +Thought nought too curious, are ready now +To eat those little darlings whom they loved. +So sharp are hunger's teeth, that man and wife +Draw lots who first shall die to lengthen life: +Here stands a lord, and there a lady weeping; +Here many sink, yet those which see them fall +Have scarce strength left to give them burial. +Is not this true? + +DIONYZA: +Our cheeks and hollow eyes do witness it. + +CLEON: +O, let those cities that of plenty's cup +And her prosperities so largely taste, +With their superfluous riots, hear these tears! +The misery of Tarsus may be theirs. + +Lord: +Where's the lord governor? + +CLEON: +Here. +Speak out thy sorrows which thou bring'st in haste, +For comfort is too far for us to expect. + +Lord: +We have descried, upon our neighbouring shore, +A portly sail of ships make hitherward. + +CLEON: +I thought as much. +One sorrow never comes but brings an heir, +That may succeed as his inheritor; +And so in ours: some neighbouring nation, +Taking advantage of our misery, +Hath stuff'd these hollow vessels with their power, +To beat us down, the which are down already; +And make a conquest of unhappy me, +Whereas no glory's got to overcome. + +Lord: +That's the least fear; for, by the semblance +Of their white flags display'd, they bring us peace, +And come to us as favourers, not as foes. + +CLEON: +Thou speak'st like him's untutor'd to repeat: +Who makes the fairest show means most deceit. +But bring they what they will and what they can, +What need we fear? +The ground's the lowest, and we are half way there. +Go tell their general we attend him here, +To know for what he comes, and whence he comes, +And what he craves. + +Lord: +I go, my lord. + +CLEON: +Welcome is peace, if he on peace consist; +If wars, we are unable to resist. + +PERICLES: +Lord governor, for so we hear you are, +Let not our ships and number of our men +Be like a beacon fired to amaze your eyes. +We have heard your miseries as far as Tyre, +And seen the desolation of your streets: +Nor come we to add sorrow to your tears, +But to relieve them of their heavy load; +And these our ships, you happily may think +Are like the Trojan horse was stuff'd within +With bloody veins, expecting overthrow, +Are stored with corn to make your needy bread, +And give them life whom hunger starved half dead. + +All: +The gods of Greece protect you! +And we'll pray for you. + +PERICLES: +Arise, I pray you, rise: +We do not look for reverence, but to love, +And harbourage for ourself, our ships, and men. + +CLEON: +The which when any shall not gratify, +Or pay you with unthankfulness in thought, +Be it our wives, our children, or ourselves, +The curse of heaven and men succeed their evils! +Till when,--the which I hope shall ne'er be seen,-- +Your grace is welcome to our town and us. + +PERICLES: +Which welcome we'll accept; feast here awhile, +Until our stars that frown lend us a smile. + +GOWER: +Here have you seen a mighty king +His child, I wis, to incest bring; +A better prince and benign lord, +That will prove awful both in deed and word. +Be quiet then as men should be, +Till he hath pass'd necessity. +I'll show you those in troubles reign, +Losing a mite, a mountain gain. +The good in conversation, +To whom I give my benison, +Is still at Tarsus, where each man +Thinks all is writ he speken can; +And, to remember what he does, +Build his statue to make him glorious: +But tidings to the contrary +Are brought your eyes; what need speak I? +Good Helicane, that stay'd at home, +Not to eat honey like a drone +From others' labours; for though he strive +To killen bad, keep good alive; +And to fulfil his prince' desire, +Sends word of all that haps in Tyre: +How Thaliard came full bent with sin +And had intent to murder him; +And that in Tarsus was not best +Longer for him to make his rest. +He, doing so, put forth to seas, +Where when men been, there's seldom ease; +For now the wind begins to blow; +Thunder above and deeps below +Make such unquiet, that the ship +Should house him safe is wreck'd and split; +And he, good prince, having all lost, +By waves from coast to coast is tost: +All perishen of man, of pelf, +Ne aught escapen but himself; +Till fortune, tired with doing bad, +Threw him ashore, to give him glad: +And here he comes. What shall be next, +Pardon old Gower,--this longs the text. + +PERICLES: +Yet cease your ire, you angry stars of heaven! +Wind, rain, and thunder, remember, earthly man +Is but a substance that must yield to you; +And I, as fits my nature, do obey you: +Alas, the sea hath cast me on the rocks, +Wash'd me from shore to shore, and left me breath +Nothing to think on but ensuing death: +Let it suffice the greatness of your powers +To have bereft a prince of all his fortunes; +And having thrown him from your watery grave, +Here to have death in peace is all he'll crave. + +First Fisherman: +What, ho, Pilch! + +Second Fisherman: +Ha, come and bring away the nets! + +First Fisherman: +What, Patch-breech, I say! + +Third Fisherman: +What say you, master? + +First Fisherman: +Look how thou stirrest now! come away, or I'll +fetch thee with a wanion. + +Third Fisherman: +Faith, master, I am thinking of the poor men that +were cast away before us even now. + +First Fisherman: +Alas, poor souls, it grieved my heart to hear what +pitiful cries they made to us to help them, when, +well-a-day, we could scarce help ourselves. + +Third Fisherman: +Nay, master, said not I as much when I saw the +porpus how he bounced and tumbled? they say +they're half fish, half flesh: a plague on them, +they ne'er come but I look to be washed. Master, I +marvel how the fishes live in the sea. + +First Fisherman: +Why, as men do a-land; the great ones eat up the +little ones: I can compare our rich misers to +nothing so fitly as to a whale; a' plays and +tumbles, driving the poor fry before him, and at +last devours them all at a mouthful: such whales +have I heard on o' the land, who never leave gaping +till they've swallowed the whole parish, church, +steeple, bells, and all. + +PERICLES: + +Third Fisherman: +But, master, if I had been the sexton, I would have +been that day in the belfry. + +Second Fisherman: +Why, man? + +Third Fisherman: +Because he should have swallowed me too: and when I +had been in his belly, I would have kept such a +jangling of the bells, that he should never have +left, till he cast bells, steeple, church, and +parish up again. But if the good King Simonides +were of my mind,-- + +PERICLES: + +Third Fisherman: +We would purge the land of these drones, that rob +the bee of her honey. + +PERICLES: + +Second Fisherman: +Honest! good fellow, what's that? If it be a day +fits you, search out of the calendar, and nobody +look after it. + +PERICLES: +May see the sea hath cast upon your coast. + +Second Fisherman: +What a drunken knave was the sea to cast thee in our +way! + +PERICLES: +A man whom both the waters and the wind, +In that vast tennis-court, have made the ball +For them to play upon, entreats you pity him: +He asks of you, that never used to beg. + +First Fisherman: +No, friend, cannot you beg? Here's them in our +country Greece gets more with begging than we can do +with working. + +Second Fisherman: +Canst thou catch any fishes, then? + +PERICLES: +I never practised it. + +Second Fisherman: +Nay, then thou wilt starve, sure; for here's nothing +to be got now-a-days, unless thou canst fish for't. + +PERICLES: +What I have been I have forgot to know; +But what I am, want teaches me to think on: +A man throng'd up with cold: my veins are chill, +And have no more of life than may suffice +To give my tongue that heat to ask your help; +Which if you shall refuse, when I am dead, +For that I am a man, pray see me buried. + +First Fisherman: +Die quoth-a? Now gods forbid! I have a gown here; +come, put it on; keep thee warm. Now, afore me, a +handsome fellow! Come, thou shalt go home, and +we'll have flesh for holidays, fish for +fasting-days, and moreo'er puddings and flap-jacks, +and thou shalt be welcome. + +PERICLES: +I thank you, sir. + +Second Fisherman: +Hark you, my friend; you said you could not beg. + +PERICLES: +I did but crave. + +Second Fisherman: +But crave! Then I'll turn craver too, and so I +shall 'scape whipping. + +PERICLES: +Why, are all your beggars whipped, then? + +Second Fisherman: +O, not all, my friend, not all; for if all your +beggars were whipped, I would wish no better office +than to be beadle. But, master, I'll go draw up the +net. + +PERICLES: + +First Fisherman: +Hark you, sir, do you know where ye are? + +PERICLES: +Not well. + +First Fisherman: +Why, I'll tell you: this is called Pentapolis, and +our king the good Simonides. + +PERICLES: +The good King Simonides, do you call him. + +First Fisherman: +Ay, sir; and he deserves so to be called for his +peaceable reign and good government. + +PERICLES: +He is a happy king, since he gains from his subjects +the name of good by his government. How far is his +court distant from this shore? + +First Fisherman: +Marry, sir, half a day's journey: and I'll tell +you, he hath a fair daughter, and to-morrow is her +birth-day; and there are princes and knights come +from all parts of the world to just and tourney for her love. + +PERICLES: +Were my fortunes equal to my desires, I could wish +to make one there. + +First Fisherman: +O, sir, things must be as they may; and what a man +cannot get, he may lawfully deal for--his wife's soul. + +Second Fisherman: +Help, master, help! here's a fish hangs in the net, +like a poor man's right in the law; 'twill hardly +come out. Ha! bots on't, 'tis come at last, and +'tis turned to a rusty armour. + +PERICLES: +An armour, friends! I pray you, let me see it. +Thanks, fortune, yet, that, after all my crosses, +Thou givest me somewhat to repair myself; +And though it was mine own, part of my heritage, +Which my dead father did bequeath to me. +With this strict charge, even as he left his life, +'Keep it, my Pericles; it hath been a shield +Twixt me and death;'--and pointed to this brace;-- +'For that it saved me, keep it; in like necessity-- +The which the gods protect thee from!--may +defend thee.' +It kept where I kept, I so dearly loved it; +Till the rough seas, that spare not any man, +Took it in rage, though calm'd have given't again: +I thank thee for't: my shipwreck now's no ill, +Since I have here my father's gift in's will. + +First Fisherman: +What mean you, sir? + +PERICLES: +To beg of you, kind friends, this coat of worth, +For it was sometime target to a king; +I know it by this mark. He loved me dearly, +And for his sake I wish the having of it; +And that you'ld guide me to your sovereign's court, +Where with it I may appear a gentleman; +And if that ever my low fortune's better, +I'll pay your bounties; till then rest your debtor. + +First Fisherman: +Why, wilt thou tourney for the lady? + +PERICLES: +I'll show the virtue I have borne in arms. + +First Fisherman: +Why, do 'e take it, and the gods give thee good on't! + +Second Fisherman: +Ay, but hark you, my friend; 'twas we that made up +this garment through the rough seams of the waters: +there are certain condolements, certain vails. I +hope, sir, if you thrive, you'll remember from +whence you had it. + +PERICLES: +Believe 't, I will. +By your furtherance I am clothed in steel; +And, spite of all the rapture of the sea, +This jewel holds his building on my arm: +Unto thy value I will mount myself +Upon a courser, whose delightful steps +Shall make the gazer joy to see him tread. +Only, my friend, I yet am unprovided +Of a pair of bases. + +Second Fisherman: +We'll sure provide: thou shalt have my best gown to +make thee a pair; and I'll bring thee to the court myself. + +PERICLES: +Then honour be but a goal to my will, +This day I'll rise, or else add ill to ill. + +SIMONIDES: +Are the knights ready to begin the triumph? + +First Lord: +They are, my liege; +And stay your coming to present themselves. + +SIMONIDES: +Return them, we are ready; and our daughter, +In honour of whose birth these triumphs are, +Sits here, like beauty's child, whom nature gat +For men to see, and seeing wonder at. + +THAISA: +It pleaseth you, my royal father, to express +My commendations great, whose merit's less. + +SIMONIDES: +It's fit it should be so; for princes are +A model which heaven makes like to itself: +As jewels lose their glory if neglected, +So princes their renowns if not respected. +'Tis now your honour, daughter, to explain +The labour of each knight in his device. + +THAISA: +Which, to preserve mine honour, I'll perform. + +SIMONIDES: +Who is the first that doth prefer himself? + +THAISA: +A knight of Sparta, my renowned father; +And the device he bears upon his shield +Is a black Ethiope reaching at the sun +The word, 'Lux tua vita mihi.' + +SIMONIDES: +He loves you well that holds his life of you. +Who is the second that presents himself? + +THAISA: +A prince of Macedon, my royal father; +And the device he bears upon his shield +Is an arm'd knight that's conquer'd by a lady; +The motto thus, in Spanish, 'Piu por dulzura que por fuerza.' + +SIMONIDES: +And what's the third? + +THAISA: +The third of Antioch; +And his device, a wreath of chivalry; +The word, 'Me pompae provexit apex.' + +SIMONIDES: +What is the fourth? + +THAISA: +A burning torch that's turned upside down; +The word, 'Quod me alit, me extinguit.' + +SIMONIDES: +Which shows that beauty hath his power and will, +Which can as well inflame as it can kill. + +THAISA: +The fifth, an hand environed with clouds, +Holding out gold that's by the touchstone tried; +The motto thus, 'Sic spectanda fides.' + +SIMONIDES: +And what's +The sixth and last, the which the knight himself +With such a graceful courtesy deliver'd? + +THAISA: +He seems to be a stranger; but his present is +A wither'd branch, that's only green at top; +The motto, 'In hac spe vivo.' + +SIMONIDES: +A pretty moral; +From the dejected state wherein he is, +He hopes by you his fortunes yet may flourish. + +First Lord: +He had need mean better than his outward show +Can any way speak in his just commend; +For by his rusty outside he appears +To have practised more the whipstock than the lance. + +Second Lord: +He well may be a stranger, for he comes +To an honour'd triumph strangely furnished. + +Third Lord: +And on set purpose let his armour rust +Until this day, to scour it in the dust. + +SIMONIDES: +Opinion's but a fool, that makes us scan +The outward habit by the inward man. +But stay, the knights are coming: we will withdraw +Into the gallery. + +SIMONIDES: +Knights, +To say you're welcome were superfluous. +To place upon the volume of your deeds, +As in a title-page, your worth in arms, +Were more than you expect, or more than's fit, +Since every worth in show commends itself. +Prepare for mirth, for mirth becomes a feast: +You are princes and my guests. + +THAISA: +But you, my knight and guest; +To whom this wreath of victory I give, +And crown you king of this day's happiness. + +PERICLES: +'Tis more by fortune, lady, than by merit. + +SIMONIDES: +Call it by what you will, the day is yours; +And here, I hope, is none that envies it. +In framing an artist, art hath thus decreed, +To make some good, but others to exceed; +And you are her labour'd scholar. Come, queen o' +the feast,-- +For, daughter, so you are,--here take your place: +Marshal the rest, as they deserve their grace. + +KNIGHTS: +We are honour'd much by good Simonides. + +SIMONIDES: +Your presence glads our days: honour we love; +For who hates honour hates the gods above. + +Marshal: +Sir, yonder is your place. + +PERICLES: +Some other is more fit. + +First Knight: +Contend not, sir; for we are gentlemen +That neither in our hearts nor outward eyes +Envy the great nor do the low despise. + +PERICLES: +You are right courteous knights. + +SIMONIDES: +Sit, sir, sit. + +PERICLES: +By Jove, I wonder, that is king of thoughts, +These cates resist me, she but thought upon. + +THAISA: +By Juno, that is queen of marriage, +All viands that I eat do seem unsavoury. +Wishing him my meat. Sure, he's a gallant gentleman. + +SIMONIDES: +He's but a country gentleman; +Has done no more than other knights have done; +Has broken a staff or so; so let it pass. + +THAISA: +To me he seems like diamond to glass. + +PERICLES: +Yon king's to me like to my father's picture, +Which tells me in that glory once he was; +Had princes sit, like stars, about his throne, +And he the sun, for them to reverence; +None that beheld him, but, like lesser lights, +Did vail their crowns to his supremacy: +Where now his son's like a glow-worm in the night, +The which hath fire in darkness, none in light: +Whereby I see that Time's the king of men, +He's both their parent, and he is their grave, +And gives them what he will, not what they crave. + +SIMONIDES: +What, are you merry, knights? + +Knights: +Who can be other in this royal presence? + +SIMONIDES: +Here, with a cup that's stored unto the brim,-- +As you do love, fill to your mistress' lips,-- +We drink this health to you. + +KNIGHTS: +We thank your grace. + +SIMONIDES: +Yet pause awhile: +Yon knight doth sit too melancholy, +As if the entertainment in our court +Had not a show might countervail his worth. +Note it not you, Thaisa? + +THAISA: +What is it +To me, my father? + +SIMONIDES: +O, attend, my daughter: +Princes in this should live like gods above, +Who freely give to every one that comes +To honour them: +And princes not doing so are like to gnats, +Which make a sound, but kill'd are wonder'd at. +Therefore to make his entrance more sweet, +Here, say we drink this standing-bowl of wine to him. + +THAISA: +Alas, my father, it befits not me +Unto a stranger knight to be so bold: +He may my proffer take for an offence, +Since men take women's gifts for impudence. + +SIMONIDES: +How! +Do as I bid you, or you'll move me else. + +THAISA: + +SIMONIDES: +And furthermore tell him, we desire to know of him, +Of whence he is, his name and parentage. + +THAISA: +The king my father, sir, has drunk to you. + +PERICLES: +I thank him. + +THAISA: +Wishing it so much blood unto your life. + +PERICLES: +I thank both him and you, and pledge him freely. + +THAISA: +And further he desires to know of you, +Of whence you are, your name and parentage. + +PERICLES: +A gentleman of Tyre; my name, Pericles; +My education been in arts and arms; +Who, looking for adventures in the world, +Was by the rough seas reft of ships and men, +And after shipwreck driven upon this shore. + +THAISA: +He thanks your grace; names himself Pericles, +A gentleman of Tyre, +Who only by misfortune of the seas +Bereft of ships and men, cast on this shore. + +SIMONIDES: +Now, by the gods, I pity his misfortune, +And will awake him from his melancholy. +Come, gentlemen, we sit too long on trifles, +And waste the time, which looks for other revels. +Even in your armours, as you are address'd, +Will very well become a soldier's dance. +I will not have excuse, with saying this +Loud music is too harsh for ladies' heads, +Since they love men in arms as well as beds. +So, this was well ask'd,'twas so well perform'd. +Come, sir; +Here is a lady that wants breathing too: +And I have heard, you knights of Tyre +Are excellent in making ladies trip; +And that their measures are as excellent. + +PERICLES: +In those that practise them they are, my lord. + +SIMONIDES: +O, that's as much as you would be denied +Of your fair courtesy. +Unclasp, unclasp: +Thanks, gentlemen, to all; all have done well. +But you the best. Pages and lights, to conduct +These knights unto their several lodgings! +Yours, sir, +We have given order to be next our own. + +PERICLES: +I am at your grace's pleasure. + +SIMONIDES: +Princes, it is too late to talk of love; +And that's the mark I know you level at: +Therefore each one betake him to his rest; +To-morrow all for speeding do their best. + +HELICANUS: +No, Escanes, know this of me, +Antiochus from incest lived not free: +For which, the most high gods not minding longer +To withhold the vengeance that they had in store, +Due to this heinous capital offence, +Even in the height and pride of all his glory, +When he was seated in a chariot +Of an inestimable value, and his daughter with him, +A fire from heaven came and shrivell'd up +Their bodies, even to loathing; for they so stunk, +That all those eyes adored them ere their fall +Scorn now their hand should give them burial. + +ESCANES: +'Twas very strange. + +HELICANUS: +And yet but justice; for though +This king were great, his greatness was no guard +To bar heaven's shaft, but sin had his reward. + +ESCANES: +'Tis very true. + +First Lord: +See, not a man in private conference +Or council has respect with him but he. + +Second Lord: +It shall no longer grieve without reproof. + +Third Lord: +And cursed be he that will not second it. + +First Lord: +Follow me, then. Lord Helicane, a word. + +HELICANUS: +With me? and welcome: happy day, my lords. + +First Lord: +Know that our griefs are risen to the top, +And now at length they overflow their banks. + +HELICANUS: +Your griefs! for what? wrong not your prince you love. + +First Lord: +Wrong not yourself, then, noble Helicane; +But if the prince do live, let us salute him, +Or know what ground's made happy by his breath. +If in the world he live, we'll seek him out; +If in his grave he rest, we'll find him there; +And be resolved he lives to govern us, +Or dead, give's cause to mourn his funeral, +And leave us to our free election. + +Second Lord: +Whose death indeed's the strongest in our censure: +And knowing this kingdom is without a head,-- +Like goodly buildings left without a roof +Soon fall to ruin,--your noble self, +That best know how to rule and how to reign, +We thus submit unto,--our sovereign. + +All: +Live, noble Helicane! + +HELICANUS: +For honour's cause, forbear your suffrages: +If that you love Prince Pericles, forbear. +Take I your wish, I leap into the seas, +Where's hourly trouble for a minute's ease. +A twelvemonth longer, let me entreat you to +Forbear the absence of your king: +If in which time expired, he not return, +I shall with aged patience bear your yoke. +But if I cannot win you to this love, +Go search like nobles, like noble subjects, +And in your search spend your adventurous worth; +Whom if you find, and win unto return, +You shall like diamonds sit about his crown. + +First Lord: +To wisdom he's a fool that will not yield; +And since Lord Helicane enjoineth us, +We with our travels will endeavour us. + +HELICANUS: +Then you love us, we you, and we'll clasp hands: +When peers thus knit, a kingdom ever stands. + +First Knight: +Good morrow to the good Simonides. + +SIMONIDES: +Knights, from my daughter this I let you know, +That for this twelvemonth she'll not undertake +A married life. +Her reason to herself is only known, +Which yet from her by no means can I get. + +Second Knight: +May we not get access to her, my lord? + +SIMONIDES: +'Faith, by no means; she has so strictly tied +Her to her chamber, that 'tis impossible. +One twelve moons more she'll wear Diana's livery; +This by the eye of Cynthia hath she vow'd +And on her virgin honour will not break it. + +Third Knight: +Loath to bid farewell, we take our leaves. + +SIMONIDES: +So, +They are well dispatch'd; now to my daughter's letter: +She tells me here, she'd wed the stranger knight, +Or never more to view nor day nor light. +'Tis well, mistress; your choice agrees with mine; +I like that well: nay, how absolute she's in't, +Not minding whether I dislike or no! +Well, I do commend her choice; +And will no longer have it be delay'd. +Soft! here he comes: I must dissemble it. + +PERICLES: +All fortune to the good Simonides! + +SIMONIDES: +To you as much, sir! I am beholding to you +For your sweet music this last night: I do +Protest my ears were never better fed +With such delightful pleasing harmony. + +PERICLES: +It is your grace's pleasure to commend; +Not my desert. + +SIMONIDES: +Sir, you are music's master. + +PERICLES: +The worst of all her scholars, my good lord. + +SIMONIDES: +Let me ask you one thing: +What do you think of my daughter, sir? + +PERICLES: +A most virtuous princess. + +SIMONIDES: +And she is fair too, is she not? + +PERICLES: +As a fair day in summer, wondrous fair. + +SIMONIDES: +Sir, my daughter thinks very well of you; +Ay, so well, that you must be her master, +And she will be your scholar: therefore look to it. + +PERICLES: +I am unworthy for her schoolmaster. + +SIMONIDES: +She thinks not so; peruse this writing else. + +PERICLES: + +SIMONIDES: +Thou hast bewitch'd my daughter, and thou art +A villain. + +PERICLES: +By the gods, I have not: +Never did thought of mine levy offence; +Nor never did my actions yet commence +A deed might gain her love or your displeasure. + +SIMONIDES: +Traitor, thou liest. + +PERICLES: +Traitor! + +SIMONIDES: +Ay, traitor. + +PERICLES: +Even in his throat--unless it be the king-- +That calls me traitor, I return the lie. + +SIMONIDES: + +PERICLES: +My actions are as noble as my thoughts, +That never relish'd of a base descent. +I came unto your court for honour's cause, +And not to be a rebel to her state; +And he that otherwise accounts of me, +This sword shall prove he's honour's enemy. + +SIMONIDES: +No? +Here comes my daughter, she can witness it. + +PERICLES: +Then, as you are as virtuous as fair, +Resolve your angry father, if my tongue +Did ere solicit, or my hand subscribe +To any syllable that made love to you. + +THAISA: +Why, sir, say if you had, +Who takes offence at that would make me glad? + +SIMONIDES: +Yea, mistress, are you so peremptory? +I am glad on't with all my heart.-- +I'll tame you; I'll bring you in subjection. +Will you, not having my consent, +Bestow your love and your affections +Upon a stranger? +who, for aught I know, +May be, nor can I think the contrary, +As great in blood as I myself.-- +Therefore hear you, mistress; either frame +Your will to mine,--and you, sir, hear you, +Either be ruled by me, or I will make you-- +Man and wife: +Nay, come, your hands and lips must seal it too: +And being join'd, I'll thus your hopes destroy; +And for a further grief,--God give you joy!-- +What, are you both pleased? + +THAISA: +Yes, if you love me, sir. + +PERICLES: +Even as my life, or blood that fosters it. + +SIMONIDES: +What, are you both agreed? + +BOTH: +Yes, if it please your majesty. + +SIMONIDES: +It pleaseth me so well, that I will see you wed; +And then with what haste you can get you to bed. + +GOWER: +Now sleep y-slaked hath the rout; +No din but snores the house about, +Made louder by the o'er-fed breast +Of this most pompous marriage-feast. +The cat, with eyne of burning coal, +Now crouches fore the mouse's hole; +And crickets sing at the oven's mouth, +E'er the blither for their drouth. +Hymen hath brought the bride to bed. +Where, by the loss of maidenhead, +A babe is moulded. Be attent, +And time that is so briefly spent +With your fine fancies quaintly eche: +What's dumb in show I'll plain with speech. +By many a dern and painful perch +Of Pericles the careful search, +By the four opposing coigns +Which the world together joins, +Is made with all due diligence +That horse and sail and high expense +Can stead the quest. At last from Tyre, +Fame answering the most strange inquire, +To the court of King Simonides +Are letters brought, the tenor these: +Antiochus and his daughter dead; +The men of Tyrus on the head +Of Helicanus would set on +The crown of Tyre, but he will none: +The mutiny he there hastes t' oppress; +Says to 'em, if King Pericles +Come not home in twice six moons, +He, obedient to their dooms, +Will take the crown. The sum of this, +Brought hither to Pentapolis, +Y-ravished the regions round, +And every one with claps can sound, +'Our heir-apparent is a king! +Who dream'd, who thought of such a thing?' +Brief, he must hence depart to Tyre: +His queen with child makes her desire-- +Which who shall cross?--along to go: +Omit we all their dole and woe: +Lychorida, her nurse, she takes, +And so to sea. Their vessel shakes +On Neptune's billow; half the flood +Hath their keel cut: but fortune's mood +Varies again; the grisly north +Disgorges such a tempest forth, +That, as a duck for life that dives, +So up and down the poor ship drives: +The lady shrieks, and well-a-near +Does fall in travail with her fear: +And what ensues in this fell storm +Shall for itself itself perform. +I nill relate, action may +Conveniently the rest convey; +Which might not what by me is told. +In your imagination hold +This stage the ship, upon whose deck +The sea-tost Pericles appears to speak. + +PERICLES: +Thou god of this great vast, rebuke these surges, +Which wash both heaven and hell; and thou, that hast +Upon the winds command, bind them in brass, +Having call'd them from the deep! O, still +Thy deafening, dreadful thunders; gently quench +Thy nimble, sulphurous flashes! O, how, Lychorida, +How does my queen? Thou stormest venomously; +Wilt thou spit all thyself? The seaman's whistle +Is as a whisper in the ears of death, +Unheard. Lychorida!--Lucina, O +Divinest patroness, and midwife gentle +To those that cry by night, convey thy deity +Aboard our dancing boat; make swift the pangs +Of my queen's travails! +Now, Lychorida! + +LYCHORIDA: +Here is a thing too young for such a place, +Who, if it had conceit, would die, as I +Am like to do: take in your arms this piece +Of your dead queen. + +PERICLES: +How, how, Lychorida! + +LYCHORIDA: +Patience, good sir; do not assist the storm. +Here's all that is left living of your queen, +A little daughter: for the sake of it, +Be manly, and take comfort. + +PERICLES: +O you gods! +Why do you make us love your goodly gifts, +And snatch them straight away? We here below +Recall not what we give, and therein may +Use honour with you. + +LYCHORIDA: +Patience, good sir, +Even for this charge. + +PERICLES: +Now, mild may be thy life! +For a more blustrous birth had never babe: +Quiet and gentle thy conditions! for +Thou art the rudeliest welcome to this world +That ever was prince's child. Happy what follows! +Thou hast as chiding a nativity +As fire, air, water, earth, and heaven can make, +To herald thee from the womb: even at the first +Thy loss is more than can thy portage quit, +With all thou canst find here. Now, the good gods +Throw their best eyes upon't! + +First Sailor: +What courage, sir? God save you! + +PERICLES: +Courage enough: I do not fear the flaw; +It hath done to me the worst. Yet, for the love +Of this poor infant, this fresh-new sea-farer, +I would it would be quiet. + +First Sailor: +Slack the bolins there! Thou wilt not, wilt thou? +Blow, and split thyself. + +Second Sailor: +But sea-room, an the brine and cloudy billow kiss +the moon, I care not. + +First Sailor: +Sir, your queen must overboard: the sea works high, +the wind is loud, and will not lie till the ship be +cleared of the dead. + +PERICLES: +That's your superstition. + +First Sailor: +Pardon us, sir; with us at sea it hath been still +observed: and we are strong in custom. Therefore +briefly yield her; for she must overboard straight. + +PERICLES: +As you think meet. Most wretched queen! + +LYCHORIDA: +Here she lies, sir. + +PERICLES: +A terrible childbed hast thou had, my dear; +No light, no fire: the unfriendly elements +Forgot thee utterly: nor have I time +To give thee hallow'd to thy grave, but straight +Must cast thee, scarcely coffin'd, in the ooze; +Where, for a monument upon thy bones, +And e'er-remaining lamps, the belching whale +And humming water must o'erwhelm thy corpse, +Lying with simple shells. O Lychorida, +Bid Nestor bring me spices, ink and paper, +My casket and my jewels; and bid Nicander +Bring me the satin coffer: lay the babe +Upon the pillow: hie thee, whiles I say +A priestly farewell to her: suddenly, woman. + +Second Sailor: +Sir, we have a chest beneath the hatches, caulked +and bitumed ready. + +PERICLES: +I thank thee. Mariner, say what coast is this? + +Second Sailor: +We are near Tarsus. + +PERICLES: +Thither, gentle mariner. +Alter thy course for Tyre. When canst thou reach it? + +Second Sailor: +By break of day, if the wind cease. + +PERICLES: +O, make for Tarsus! +There will I visit Cleon, for the babe +Cannot hold out to Tyrus: there I'll leave it +At careful nursing. Go thy ways, good mariner: +I'll bring the body presently. + +CERIMON: +Philemon, ho! + +PHILEMON: +Doth my lord call? + +CERIMON: +Get fire and meat for these poor men: +'T has been a turbulent and stormy night. + +Servant: +I have been in many; but such a night as this, +Till now, I ne'er endured. + +CERIMON: +Your master will be dead ere you return; +There's nothing can be minister'd to nature +That can recover him. +Give this to the 'pothecary, +And tell me how it works. + +First Gentleman: +Good morrow. + +Second Gentleman: +Good morrow to your lordship. + +CERIMON: +Gentlemen, +Why do you stir so early? + +First Gentleman: +Sir, +Our lodgings, standing bleak upon the sea, +Shook as the earth did quake; +The very principals did seem to rend, +And all-to topple: pure surprise and fear +Made me to quit the house. + +Second Gentleman: +That is the cause we trouble you so early; +'Tis not our husbandry. + +CERIMON: +O, you say well. + +First Gentleman: +But I much marvel that your lordship, having +Rich tire about you, should at these early hours +Shake off the golden slumber of repose. +'Tis most strange, +Nature should be so conversant with pain, +Being thereto not compell'd. + +CERIMON: +I hold it ever, +Virtue and cunning were endowments greater +Than nobleness and riches: careless heirs +May the two latter darken and expend; +But immortality attends the former. +Making a man a god. 'Tis known, I ever +Have studied physic, through which secret art, +By turning o'er authorities, I have, +Together with my practise, made familiar +To me and to my aid the blest infusions +That dwell in vegetives, in metals, stones; +And I can speak of the disturbances +That nature works, and of her cures; which doth give me +A more content in course of true delight +Than to be thirsty after tottering honour, +Or tie my treasure up in silken bags, +To please the fool and death. + +Second Gentleman: +Your honour has through Ephesus pour'd forth +Your charity, and hundreds call themselves +Your creatures, who by you have been restored: +And not your knowledge, your personal pain, but even +Your purse, still open, hath built Lord Cerimon +Such strong renown as time shall ne'er decay. + +First Servant: +So; lift there. + +CERIMON: +What is that? + +First Servant: +Sir, even now +Did the sea toss upon our shore this chest: +'Tis of some wreck. + +CERIMON: +Set 't down, let's look upon't. + +Second Gentleman: +'Tis like a coffin, sir. + +CERIMON: +Whate'er it be, +'Tis wondrous heavy. Wrench it open straight: +If the sea's stomach be o'ercharged with gold, +'Tis a good constraint of fortune it belches upon us. + +Second Gentleman: +'Tis so, my lord. + +CERIMON: +How close 'tis caulk'd and bitumed! +Did the sea cast it up? + +First Servant: +I never saw so huge a billow, sir, +As toss'd it upon shore. + +CERIMON: +Wrench it open; +Soft! it smells most sweetly in my sense. + +Second Gentleman: +A delicate odour. + +CERIMON: +As ever hit my nostril. So, up with it. +O you most potent gods! what's here? a corse! + +First Gentleman: +Most strange! + +CERIMON: +Shrouded in cloth of state; balm'd and entreasured +With full bags of spices! A passport too! +Apollo, perfect me in the characters! +'Here I give to understand, +If e'er this coffin drive a-land, +I, King Pericles, have lost +This queen, worth all our mundane cost. +Who finds her, give her burying; +She was the daughter of a king: +Besides this treasure for a fee, +The gods requite his charity!' +If thou livest, Pericles, thou hast a heart +That even cracks for woe! This chanced tonight. + +Second Gentleman: +Most likely, sir. + +CERIMON: +Nay, certainly to-night; +For look how fresh she looks! They were too rough +That threw her in the sea. Make a fire within: +Fetch hither all my boxes in my closet. +Death may usurp on nature many hours, +And yet the fire of life kindle again +The o'erpress'd spirits. I heard of an Egyptian +That had nine hours lien dead, +Who was by good appliance recovered. +Well said, well said; the fire and cloths. +The rough and woeful music that we have, +Cause it to sound, beseech you. +The viol once more: how thou stirr'st, thou block! +The music there!--I pray you, give her air. +Gentlemen. +This queen will live: nature awakes; a warmth +Breathes out of her: she hath not been entranced +Above five hours: see how she gins to blow +Into life's flower again! + +First Gentleman: +The heavens, +Through you, increase our wonder and set up +Your fame forever. + +CERIMON: +She is alive; behold, +Her eyelids, cases to those heavenly jewels +Which Pericles hath lost, +Begin to part their fringes of bright gold; +The diamonds of a most praised water +Do appear, to make the world twice rich. Live, +And make us weep to hear your fate, fair creature, +Rare as you seem to be. + +THAISA: +O dear Diana, +Where am I? Where's my lord? What world is this? + +Second Gentleman: +Is not this strange? + +First Gentleman: +Most rare. + +CERIMON: +Hush, my gentle neighbours! +Lend me your hands; to the next chamber bear her. +Get linen: now this matter must be look'd to, +For her relapse is mortal. Come, come; +And AEsculapius guide us! + +PERICLES: +Most honour'd Cleon, I must needs be gone; +My twelve months are expired, and Tyrus stands +In a litigious peace. You, and your lady, +Take from my heart all thankfulness! The gods +Make up the rest upon you! + +CLEON: +Your shafts of fortune, though they hurt you mortally, +Yet glance full wanderingly on us. + +DIONYZA: +O your sweet queen! +That the strict fates had pleased you had brought her hither, +To have bless'd mine eyes with her! + +PERICLES: +We cannot but obey +The powers above us. Could I rage and roar +As doth the sea she lies in, yet the end +Must be as 'tis. My gentle babe Marina, whom, +For she was born at sea, I have named so, here +I charge your charity withal, leaving her +The infant of your care; beseeching you +To give her princely training, that she may be +Manner'd as she is born. + +CLEON: +Fear not, my lord, but think +Your grace, that fed my country with your corn, +For which the people's prayers still fall upon you, +Must in your child be thought on. If neglection +Should therein make me vile, the common body, +By you relieved, would force me to my duty: +But if to that my nature need a spur, +The gods revenge it upon me and mine, +To the end of generation! + +PERICLES: +I believe you; +Your honour and your goodness teach me to't, +Without your vows. Till she be married, madam, +By bright Diana, whom we honour, all +Unscissor'd shall this hair of mine remain, +Though I show ill in't. So I take my leave. +Good madam, make me blessed in your care +In bringing up my child. + +DIONYZA: +I have one myself, +Who shall not be more dear to my respect +Than yours, my lord. + +PERICLES: +Madam, my thanks and prayers. + +CLEON: +We'll bring your grace e'en to the edge o' the shore, +Then give you up to the mask'd Neptune and +The gentlest winds of heaven. + +PERICLES: +I will embrace +Your offer. Come, dearest madam. O, no tears, +Lychorida, no tears: +Look to your little mistress, on whose grace +You may depend hereafter. Come, my lord. + +CERIMON: +Madam, this letter, and some certain jewels, +Lay with you in your coffer: which are now +At your command. Know you the character? + +THAISA: +It is my lord's. +That I was shipp'd at sea, I well remember, +Even on my eaning time; but whether there +Deliver'd, by the holy gods, +I cannot rightly say. But since King Pericles, +My wedded lord, I ne'er shall see again, +A vestal livery will I take me to, +And never more have joy. + +CERIMON: +Madam, if this you purpose as ye speak, +Diana's temple is not distant far, +Where you may abide till your date expire. +Moreover, if you please, a niece of mine +Shall there attend you. + +THAISA: +My recompense is thanks, that's all; +Yet my good will is great, though the gift small. + +GOWER: +Imagine Pericles arrived at Tyre, +Welcomed and settled to his own desire. +His woeful queen we leave at Ephesus, +Unto Diana there a votaress. +Now to Marina bend your mind, +Whom our fast-growing scene must find +At Tarsus, and by Cleon train'd +In music, letters; who hath gain'd +Of education all the grace, +Which makes her both the heart and place +Of general wonder. But, alack, +That monster envy, oft the wrack +Of earned praise, Marina's life +Seeks to take off by treason's knife. +And in this kind hath our Cleon +One daughter, and a wench full grown, +Even ripe for marriage-rite; this maid +Hight Philoten: and it is said +For certain in our story, she +Would ever with Marina be: +Be't when she weaved the sleided silk +With fingers long, small, white as milk; +Or when she would with sharp needle wound +The cambric, which she made more sound +By hurting it; or when to the lute +She sung, and made the night-bird mute, +That still records with moan; or when +She would with rich and constant pen +Vail to her mistress Dian; still +This Philoten contends in skill +With absolute Marina: so +With the dove of Paphos might the crow +Vie feathers white. Marina gets +All praises, which are paid as debts, +And not as given. This so darks +In Philoten all graceful marks, +That Cleon's wife, with envy rare, +A present murderer does prepare +For good Marina, that her daughter +Might stand peerless by this slaughter. +The sooner her vile thoughts to stead, +Lychorida, our nurse, is dead: +And cursed Dionyza hath +The pregnant instrument of wrath +Prest for this blow. The unborn event +I do commend to your content: +Only I carry winged time +Post on the lame feet of my rhyme; +Which never could I so convey, +Unless your thoughts went on my way. +Dionyza does appear, +With Leonine, a murderer. + +DIONYZA: +Thy oath remember; thou hast sworn to do't: +'Tis but a blow, which never shall be known. +Thou canst not do a thing in the world so soon, +To yield thee so much profit. Let not conscience, +Which is but cold, inflaming love i' thy bosom, +Inflame too nicely; nor let pity, which +Even women have cast off, melt thee, but be +A soldier to thy purpose. + +LEONINE: +I will do't; but yet she is a goodly creature. + +DIONYZA: +The fitter, then, the gods should have her. Here +she comes weeping for her only mistress' death. +Thou art resolved? + +LEONINE: +I am resolved. + +MARINA: +No, I will rob Tellus of her weed, +To strew thy green with flowers: the yellows, blues, +The purple violets, and marigolds, +Shall as a carpet hang upon thy grave, +While summer-days do last. Ay me! poor maid, +Born in a tempest, when my mother died, +This world to me is like a lasting storm, +Whirring me from my friends. + +DIONYZA: +How now, Marina! why do you keep alone? +How chance my daughter is not with you? Do not +Consume your blood with sorrowing: you have +A nurse of me. Lord, how your favour's changed +With this unprofitable woe! +Come, give me your flowers, ere the sea mar it. +Walk with Leonine; the air is quick there, +And it pierces and sharpens the stomach. Come, +Leonine, take her by the arm, walk with her. + +MARINA: +No, I pray you; +I'll not bereave you of your servant. + +DIONYZA: +Come, come; +I love the king your father, and yourself, +With more than foreign heart. We every day +Expect him here: when he shall come and find +Our paragon to all reports thus blasted, +He will repent the breadth of his great voyage; +Blame both my lord and me, that we have taken +No care to your best courses. Go, I pray you, +Walk, and be cheerful once again; reserve +That excellent complexion, which did steal +The eyes of young and old. Care not for me +I can go home alone. + +MARINA: +Well, I will go; +But yet I have no desire to it. + +DIONYZA: +Come, come, I know 'tis good for you. +Walk half an hour, Leonine, at the least: +Remember what I have said. + +LEONINE: +I warrant you, madam. + +DIONYZA: +I'll leave you, my sweet lady, for a while: +Pray, walk softly, do not heat your blood: +What! I must have a care of you. + +MARINA: +My thanks, sweet madam. +Is this wind westerly that blows? + +LEONINE: +South-west. + +MARINA: +When I was born, the wind was north. + +LEONINE: +Was't so? + +MARINA: +My father, as nurse said, did never fear, +But cried 'Good seaman!' to the sailors, galling +His kingly hands, haling ropes; +And, clasping to the mast, endured a sea +That almost burst the deck. + +LEONINE: +When was this? + +MARINA: +When I was born: +Never was waves nor wind more violent; +And from the ladder-tackle washes off +A canvas-climber. 'Ha!' says one, 'wilt out?' +And with a dropping industry they skip +From stem to stern: the boatswain whistles, and +The master calls, and trebles their confusion. + +LEONINE: +Come, say your prayers. + +MARINA: +What mean you? + +LEONINE: +If you require a little space for prayer, +I grant it: pray; but be not tedious, +For the gods are quick of ear, and I am sworn +To do my work with haste. + +MARINA: +Why will you kill me? + +LEONINE: +To satisfy my lady. + +MARINA: +Why would she have me kill'd? +Now, as I can remember, by my troth, +I never did her hurt in all my life: +I never spake bad word, nor did ill turn +To any living creature: believe me, la, +I never kill'd a mouse, nor hurt a fly: +I trod upon a worm against my will, +But I wept for it. How have I offended, +Wherein my death might yield her any profit, +Or my life imply her any danger? + +LEONINE: +My commission +Is not to reason of the deed, but do it. + +MARINA: +You will not do't for all the world, I hope. +You are well favour'd, and your looks foreshow +You have a gentle heart. I saw you lately, +When you caught hurt in parting two that fought: +Good sooth, it show'd well in you: do so now: +Your lady seeks my life; come you between, +And save poor me, the weaker. + +LEONINE: +I am sworn, +And will dispatch. + +First Pirate: +Hold, villain! + +Second Pirate: +A prize! a prize! + +Third Pirate: +Half-part, mates, half-part. +Come, let's have her aboard suddenly. + +LEONINE: +These roguing thieves serve the great pirate Valdes; +And they have seized Marina. Let her go: +There's no hope she will return. I'll swear +she's dead, +And thrown into the sea. But I'll see further: +Perhaps they will but please themselves upon her, +Not carry her aboard. If she remain, +Whom they have ravish'd must by me be slain. + +Pandar: +Boult! + +BOULT: +Sir? + +Pandar: +Search the market narrowly; Mytilene is full of +gallants. We lost too much money this mart by being +too wenchless. + +Bawd: +We were never so much out of creatures. We have but +poor three, and they can do no more than they can +do; and they with continual action are even as good as rotten. + +Pandar: +Therefore let's have fresh ones, whate'er we pay for +them. If there be not a conscience to be used in +every trade, we shall never prosper. + +Bawd: +Thou sayest true: 'tis not our bringing up of poor +bastards,--as, I think, I have brought up some eleven-- + +BOULT: +Ay, to eleven; and brought them down again. But +shall I search the market? + +Bawd: +What else, man? The stuff we have, a strong wind +will blow it to pieces, they are so pitifully sodden. + +Pandar: +Thou sayest true; they're too unwholesome, o' +conscience. The poor Transylvanian is dead, that +lay with the little baggage. + +BOULT: +Ay, she quickly pooped him; she made him roast-meat +for worms. But I'll go search the market. + +Pandar: +Three or four thousand chequins were as pretty a +proportion to live quietly, and so give over. + +Bawd: +Why to give over, I pray you? is it a shame to get +when we are old? + +Pandar: +O, our credit comes not in like the commodity, nor +the commodity wages not with the danger: therefore, +if in our youths we could pick up some pretty +estate, 'twere not amiss to keep our door hatched. +Besides, the sore terms we stand upon with the gods +will be strong with us for giving over. + +Bawd: +Come, other sorts offend as well as we. + +Pandar: +As well as we! ay, and better too; we offend worse. +Neither is our profession any trade; it's no +calling. But here comes Boult. + +BOULT: + +First Pirate: +O, sir, we doubt it not. + +BOULT: +Master, I have gone through for this piece, you see: +if you like her, so; if not, I have lost my earnest. + +Bawd: +Boult, has she any qualities? + +BOULT: +She has a good face, speaks well, and has excellent +good clothes: there's no further necessity of +qualities can make her be refused. + +Bawd: +What's her price, Boult? + +BOULT: +I cannot be bated one doit of a thousand pieces. + +Pandar: +Well, follow me, my masters, you shall have your +money presently. Wife, take her in; instruct her +what she has to do, that she may not be raw in her +entertainment. + +Bawd: +Boult, take you the marks of her, the colour of her +hair, complexion, height, age, with warrant of her +virginity; and cry 'He that will give most shall +have her first.' Such a maidenhead were no cheap +thing, if men were as they have been. Get this done +as I command you. + +BOULT: +Performance shall follow. + +MARINA: +Alack that Leonine was so slack, so slow! +He should have struck, not spoke; or that these pirates, +Not enough barbarous, had not o'erboard thrown me +For to seek my mother! + +Bawd: +Why lament you, pretty one? + +MARINA: +That I am pretty. + +Bawd: +Come, the gods have done their part in you. + +MARINA: +I accuse them not. + +Bawd: +You are light into my hands, where you are like to live. + +MARINA: +The more my fault +To scape his hands where I was like to die. + +Bawd: +Ay, and you shall live in pleasure. + +MARINA: +No. + +Bawd: +Yes, indeed shall you, and taste gentlemen of all +fashions: you shall fare well; you shall have the +difference of all complexions. What! do you stop your ears? + +MARINA: +Are you a woman? + +Bawd: +What would you have me be, an I be not a woman? + +MARINA: +An honest woman, or not a woman. + +Bawd: +Marry, whip thee, gosling: I think I shall have +something to do with you. Come, you're a young +foolish sapling, and must be bowed as I would have +you. + +MARINA: +The gods defend me! + +Bawd: +If it please the gods to defend you by men, then men +must comfort you, men must feed you, men must stir +you up. Boult's returned. +Now, sir, hast thou cried her through the market? + +BOULT: +I have cried her almost to the number of her hairs; +I have drawn her picture with my voice. + +Bawd: +And I prithee tell me, how dost thou find the +inclination of the people, especially of the younger sort? + +BOULT: +'Faith, they listened to me as they would have +hearkened to their father's testament. There was a +Spaniard's mouth so watered, that he went to bed to +her very description. + +Bawd: +We shall have him here to-morrow with his best ruff on. + +BOULT: +To-night, to-night. But, mistress, do you know the +French knight that cowers i' the hams? + +Bawd: +Who, Monsieur Veroles? + +BOULT: +Ay, he: he offered to cut a caper at the +proclamation; but he made a groan at it, and swore +he would see her to-morrow. + +Bawd: +Well, well; as for him, he brought his disease +hither: here he does but repair it. I know he will +come in our shadow, to scatter his crowns in the +sun. + +BOULT: +Well, if we had of every nation a traveller, we +should lodge them with this sign. + +Bawd: + +MARINA: +I understand you not. + +BOULT: +O, take her home, mistress, take her home: these +blushes of hers must be quenched with some present practise. + +Bawd: +Thou sayest true, i' faith, so they must; for your +bride goes to that with shame which is her way to go +with warrant. + +BOULT: +'Faith, some do, and some do not. But, mistress, if +I have bargained for the joint,-- + +Bawd: +Thou mayst cut a morsel off the spit. + +BOULT: +I may so. + +Bawd: +Who should deny it? Come, young one, I like the +manner of your garments well. + +BOULT: +Ay, by my faith, they shall not be changed yet. + +Bawd: +Boult, spend thou that in the town: report what a +sojourner we have; you'll lose nothing by custom. +When nature flamed this piece, she meant thee a good +turn; therefore say what a paragon she is, and thou +hast the harvest out of thine own report. + +BOULT: +I warrant you, mistress, thunder shall not so awake +the beds of eels as my giving out her beauty stir up +the lewdly-inclined. I'll bring home some to-night. + +Bawd: +Come your ways; follow me. + +MARINA: +If fires be hot, knives sharp, or waters deep, +Untied I still my virgin knot will keep. +Diana, aid my purpose! + +Bawd: +What have we to do with Diana? Pray you, will you go with us? + +DIONYZA: +Why, are you foolish? Can it be undone? + +CLEON: +O Dionyza, such a piece of slaughter +The sun and moon ne'er look'd upon! + +DIONYZA: +I think +You'll turn a child again. + +CLEON: +Were I chief lord of all this spacious world, +I'ld give it to undo the deed. O lady, +Much less in blood than virtue, yet a princess +To equal any single crown o' the earth +I' the justice of compare! O villain Leonine! +Whom thou hast poison'd too: +If thou hadst drunk to him, 't had been a kindness +Becoming well thy fact: what canst thou say +When noble Pericles shall demand his child? + +DIONYZA: +That she is dead. Nurses are not the fates, +To foster it, nor ever to preserve. +She died at night; I'll say so. Who can cross it? +Unless you play the pious innocent, +And for an honest attribute cry out +'She died by foul play.' + +CLEON: +O, go to. Well, well, +Of all the faults beneath the heavens, the gods +Do like this worst. + +DIONYZA: +Be one of those that think +The petty wrens of Tarsus will fly hence, +And open this to Pericles. I do shame +To think of what a noble strain you are, +And of how coward a spirit. + +CLEON: +To such proceeding +Who ever but his approbation added, +Though not his prime consent, he did not flow +From honourable sources. + +DIONYZA: +Be it so, then: +Yet none does know, but you, how she came dead, +Nor none can know, Leonine being gone. +She did disdain my child, and stood between +Her and her fortunes: none would look on her, +But cast their gazes on Marina's face; +Whilst ours was blurted at and held a malkin +Not worth the time of day. It pierced me through; +And though you call my course unnatural, +You not your child well loving, yet I find +It greets me as an enterprise of kindness +Perform'd to your sole daughter. + +CLEON: +Heavens forgive it! + +DIONYZA: +And as for Pericles, +What should he say? We wept after her hearse, +And yet we mourn: her monument +Is almost finish'd, and her epitaphs +In glittering golden characters express +A general praise to her, and care in us +At whose expense 'tis done. + +CLEON: +Thou art like the harpy, +Which, to betray, dost, with thine angel's face, +Seize with thine eagle's talons. + +DIONYZA: +You are like one that superstitiously +Doth swear to the gods that winter kills the flies: +But yet I know you'll do as I advise. + +GOWER: +Thus time we waste, and longest leagues make short; +Sail seas in cockles, have an wish but for't; +Making, to take your imagination, +From bourn to bourn, region to region. +By you being pardon'd, we commit no crime +To use one language in each several clime +Where our scenes seem to live. I do beseech you +To learn of me, who stand i' the gaps to teach you, +The stages of our story. Pericles +Is now again thwarting the wayward seas, +Attended on by many a lord and knight. +To see his daughter, all his life's delight. +Old Escanes, whom Helicanus late +Advanced in time to great and high estate, +Is left to govern. Bear you it in mind, +Old Helicanus goes along behind. +Well-sailing ships and bounteous winds have brought +This king to Tarsus,--think his pilot thought; +So with his steerage shall your thoughts grow on,-- +To fetch his daughter home, who first is gone. +Like motes and shadows see them move awhile; +Your ears unto your eyes I'll reconcile. +See how belief may suffer by foul show! +This borrow'd passion stands for true old woe; +And Pericles, in sorrow all devour'd, +With sighs shot through, and biggest tears +o'ershower'd, +Leaves Tarsus and again embarks. He swears +Never to wash his face, nor cut his hairs: +He puts on sackcloth, and to sea. He bears +A tempest, which his mortal vessel tears, +And yet he rides it out. Now please you wit. +The epitaph is for Marina writ +By wicked Dionyza. +'The fairest, sweet'st, and best lies here, +Who wither'd in her spring of year. +She was of Tyrus the king's daughter, +On whom foul death hath made this slaughter; +Marina was she call'd; and at her birth, +Thetis, being proud, swallow'd some part o' the earth: +Therefore the earth, fearing to be o'erflow'd, +Hath Thetis' birth-child on the heavens bestow'd: +Wherefore she does, and swears she'll never stint, +Make raging battery upon shores of flint.' +No visor does become black villany +So well as soft and tender flattery. +Let Pericles believe his daughter's dead, +And bear his courses to be ordered +By Lady Fortune; while our scene must play +His daughter's woe and heavy well-a-day +In her unholy service. Patience, then, +And think you now are all in Mytilene. + +First Gentleman: +Did you ever hear the like? + +Second Gentleman: +No, nor never shall do in such a place as this, she +being once gone. + +First Gentleman: +But to have divinity preached there! did you ever +dream of such a thing? + +Second Gentleman: +No, no. Come, I am for no more bawdy-houses: +shall's go hear the vestals sing? + +First Gentleman: +I'll do any thing now that is virtuous; but I +am out of the road of rutting for ever. + +Pandar: +Well, I had rather than twice the worth of her she +had ne'er come here. + +Bawd: +Fie, fie upon her! she's able to freeze the god +Priapus, and undo a whole generation. We must +either get her ravished, or be rid of her. When she +should do for clients her fitment, and do me the +kindness of our profession, she has me her quirks, +her reasons, her master reasons, her prayers, her +knees; that she would make a puritan of the devil, +if he should cheapen a kiss of her. + +BOULT: +'Faith, I must ravish her, or she'll disfurnish us +of all our cavaliers, and make our swearers priests. + +Pandar: +Now, the pox upon her green-sickness for me! + +Bawd: +'Faith, there's no way to be rid on't but by the +way to the pox. Here comes the Lord Lysimachus disguised. + +BOULT: +We should have both lord and lown, if the peevish +baggage would but give way to customers. + +LYSIMACHUS: +How now! How a dozen of virginities? + +Bawd: +Now, the gods to-bless your honour! + +BOULT: +I am glad to see your honour in good health. + +LYSIMACHUS: +You may so; 'tis the better for you that your +resorters stand upon sound legs. How now! +wholesome iniquity have you that a man may deal +withal, and defy the surgeon? + +Bawd: +We have here one, sir, if she would--but there never +came her like in Mytilene. + +LYSIMACHUS: +If she'ld do the deed of darkness, thou wouldst say. + +Bawd: +Your honour knows what 'tis to say well enough. + +LYSIMACHUS: +Well, call forth, call forth. + +BOULT: +For flesh and blood, sir, white and red, you shall +see a rose; and she were a rose indeed, if she had but-- + +LYSIMACHUS: +What, prithee? + +BOULT: +O, sir, I can be modest. + +LYSIMACHUS: +That dignifies the renown of a bawd, no less than it +gives a good report to a number to be chaste. + +Bawd: +Here comes that which grows to the stalk; never +plucked yet, I can assure you. +Is she not a fair creature? + +LYSIMACHUS: +'Faith, she would serve after a long voyage at sea. +Well, there's for you: leave us. + +Bawd: +I beseech your honour, give me leave: a word, and +I'll have done presently. + +LYSIMACHUS: +I beseech you, do. + +Bawd: + +MARINA: +I desire to find him so, that I may worthily note him. + +Bawd: +Next, he's the governor of this country, and a man +whom I am bound to. + +MARINA: +If he govern the country, you are bound to him +indeed; but how honourable he is in that, I know not. + +Bawd: +Pray you, without any more virginal fencing, will +you use him kindly? He will line your apron with gold. + +MARINA: +What he will do graciously, I will thankfully receive. + +LYSIMACHUS: +Ha' you done? + +Bawd: +My lord, she's not paced yet: you must take some +pains to work her to your manage. Come, we will +leave his honour and her together. Go thy ways. + +LYSIMACHUS: +Now, pretty one, how long have you been at this trade? + +MARINA: +What trade, sir? + +LYSIMACHUS: +Why, I cannot name't but I shall offend. + +MARINA: +I cannot be offended with my trade. Please you to name it. + +LYSIMACHUS: +How long have you been of this profession? + +MARINA: +E'er since I can remember. + +LYSIMACHUS: +Did you go to 't so young? Were you a gamester at +five or at seven? + +MARINA: +Earlier too, sir, if now I be one. + +LYSIMACHUS: +Why, the house you dwell in proclaims you to be a +creature of sale. + +MARINA: +Do you know this house to be a place of such resort, +and will come into 't? I hear say you are of +honourable parts, and are the governor of this place. + +LYSIMACHUS: +Why, hath your principal made known unto you who I am? + +MARINA: +Who is my principal? + +LYSIMACHUS: +Why, your herb-woman; she that sets seeds and roots +of shame and iniquity. O, you have heard something +of my power, and so stand aloof for more serious +wooing. But I protest to thee, pretty one, my +authority shall not see thee, or else look friendly +upon thee. Come, bring me to some private place: +come, come. + +MARINA: +If you were born to honour, show it now; +If put upon you, make the judgment good +That thought you worthy of it. + +LYSIMACHUS: +How's this? how's this? Some more; be sage. + +MARINA: +For me, +That am a maid, though most ungentle fortune +Have placed me in this sty, where, since I came, +Diseases have been sold dearer than physic, +O, that the gods +Would set me free from this unhallow'd place, +Though they did change me to the meanest bird +That flies i' the purer air! + +LYSIMACHUS: +I did not think +Thou couldst have spoke so well; ne'er dream'd thou couldst. +Had I brought hither a corrupted mind, +Thy speech had alter'd it. Hold, here's gold for thee: +Persever in that clear way thou goest, +And the gods strengthen thee! + +MARINA: +The good gods preserve you! + +LYSIMACHUS: +For me, be you thoughten +That I came with no ill intent; for to me +The very doors and windows savour vilely. +Fare thee well. Thou art a piece of virtue, and +I doubt not but thy training hath been noble. +Hold, here's more gold for thee. +A curse upon him, die he like a thief, +That robs thee of thy goodness! If thou dost +Hear from me, it shall be for thy good. + +BOULT: +I beseech your honour, one piece for me. + +LYSIMACHUS: +Avaunt, thou damned door-keeper! +Your house, but for this virgin that doth prop it, +Would sink and overwhelm you. Away! + +BOULT: +How's this? We must take another course with you. +If your peevish chastity, which is not worth a +breakfast in the cheapest country under the cope, +shall undo a whole household, let me be gelded like +a spaniel. Come your ways. + +MARINA: +Whither would you have me? + +BOULT: +I must have your maidenhead taken off, or the common +hangman shall execute it. Come your ways. We'll +have no more gentlemen driven away. Come your ways, I say. + +Bawd: +How now! what's the matter? + +BOULT: +Worse and worse, mistress; she has here spoken holy +words to the Lord Lysimachus. + +Bawd: +O abominable! + +BOULT: +She makes our profession as it were to stink afore +the face of the gods. + +Bawd: +Marry, hang her up for ever! + +BOULT: +The nobleman would have dealt with her like a +nobleman, and she sent him away as cold as a +snowball; saying his prayers too. + +Bawd: +Boult, take her away; use her at thy pleasure: +crack the glass of her virginity, and make the rest malleable. + +BOULT: +An if she were a thornier piece of ground than she +is, she shall be ploughed. + +MARINA: +Hark, hark, you gods! + +Bawd: +She conjures: away with her! Would she had never +come within my doors! Marry, hang you! She's born +to undo us. Will you not go the way of women-kind? +Marry, come up, my dish of chastity with rosemary and bays! + +BOULT: +Come, mistress; come your ways with me. + +MARINA: +Whither wilt thou have me? + +BOULT: +To take from you the jewel you hold so dear. + +MARINA: +Prithee, tell me one thing first. + +BOULT: +Come now, your one thing. + +MARINA: +What canst thou wish thine enemy to be? + +BOULT: +Why, I could wish him to be my master, or rather, my mistress. + +MARINA: +Neither of these are so bad as thou art, +Since they do better thee in their command. +Thou hold'st a place, for which the pained'st fiend +Of hell would not in reputation change: +Thou art the damned doorkeeper to every +Coistrel that comes inquiring for his Tib; +To the choleric fisting of every rogue +Thy ear is liable; thy food is such +As hath been belch'd on by infected lungs. + +BOULT: +What would you have me do? go to the wars, would +you? where a man may serve seven years for the loss +of a leg, and have not money enough in the end to +buy him a wooden one? + +MARINA: +Do any thing but this thou doest. Empty +Old receptacles, or common shores, of filth; +Serve by indenture to the common hangman: +Any of these ways are yet better than this; +For what thou professest, a baboon, could he speak, +Would own a name too dear. O, that the gods +Would safely deliver me from this place! +Here, here's gold for thee. +If that thy master would gain by thee, +Proclaim that I can sing, weave, sew, and dance, +With other virtues, which I'll keep from boast: +And I will undertake all these to teach. +I doubt not but this populous city will +Yield many scholars. + +BOULT: +But can you teach all this you speak of? + +MARINA: +Prove that I cannot, take me home again, +And prostitute me to the basest groom +That doth frequent your house. + +BOULT: +Well, I will see what I can do for thee: if I can +place thee, I will. + +MARINA: +But amongst honest women. + +BOULT: +'Faith, my acquaintance lies little amongst them. +But since my master and mistress have bought you, +there's no going but by their consent: therefore I +will make them acquainted with your purpose, and I +doubt not but I shall find them tractable enough. +Come, I'll do for thee what I can; come your ways. + +GOWER: +Marina thus the brothel 'scapes, and chances +Into an honest house, our story says. +She sings like one immortal, and she dances +As goddess-like to her admired lays; +Deep clerks she dumbs; and with her needle composes +Nature's own shape, of bud, bird, branch, or berry, +That even her art sisters the natural roses; +Her inkle, silk, twin with the rubied cherry: +That pupils lacks she none of noble race, +Who pour their bounty on her; and her gain +She gives the cursed bawd. Here we her place; +And to her father turn our thoughts again, +Where we left him, on the sea. We there him lost; +Whence, driven before the winds, he is arrived +Here where his daughter dwells; and on this coast +Suppose him now at anchor. The city strived +God Neptune's annual feast to keep: from whence +Lysimachus our Tyrian ship espies, +His banners sable, trimm'd with rich expense; +And to him in his barge with fervor hies. +In your supposing once more put your sight +Of heavy Pericles; think this his bark: +Where what is done in action, more, if might, +Shall be discover'd; please you, sit and hark. + +Tyrian Sailor: + +HELICANUS: +That he have his. Call up some gentlemen. + +Tyrian Sailor: +Ho, gentlemen! my lord calls. + +First Gentleman: +Doth your lordship call? + +HELICANUS: +Gentlemen, there's some of worth would come aboard; +I pray ye, greet them fairly. + +Tyrian Sailor: +Sir, +This is the man that can, in aught you would, +Resolve you. + +LYSIMACHUS: +Hail, reverend sir! the gods preserve you! + +HELICANUS: +And you, sir, to outlive the age I am, +And die as I would do. + +LYSIMACHUS: +You wish me well. +Being on shore, honouring of Neptune's triumphs, +Seeing this goodly vessel ride before us, +I made to it, to know of whence you are. + +HELICANUS: +First, what is your place? + +LYSIMACHUS: +I am the governor of this place you lie before. + +HELICANUS: +Sir, +Our vessel is of Tyre, in it the king; +A man who for this three months hath not spoken +To any one, nor taken sustenance +But to prorogue his grief. + +LYSIMACHUS: +Upon what ground is his distemperature? + +HELICANUS: +'Twould be too tedious to repeat; +But the main grief springs from the loss +Of a beloved daughter and a wife. + +LYSIMACHUS: +May we not see him? + +HELICANUS: +You may; +But bootless is your sight: he will not speak To any. + +LYSIMACHUS: +Yet let me obtain my wish. + +HELICANUS: +Behold him. +This was a goodly person, +Till the disaster that, one mortal night, +Drove him to this. + +LYSIMACHUS: +Sir king, all hail! the gods preserve you! +Hail, royal sir! + +HELICANUS: +It is in vain; he will not speak to you. + +First Lord: +Sir, +We have a maid in Mytilene, I durst wager, +Would win some words of him. + +LYSIMACHUS: +'Tis well bethought. +She questionless with her sweet harmony +And other chosen attractions, would allure, +And make a battery through his deafen'd parts, +Which now are midway stopp'd: +She is all happy as the fairest of all, +And, with her fellow maids is now upon +The leafy shelter that abuts against +The island's side. + +HELICANUS: +Sure, all's effectless; yet nothing we'll omit +That bears recovery's name. But, since your kindness +We have stretch'd thus far, let us beseech you +That for our gold we may provision have, +Wherein we are not destitute for want, +But weary for the staleness. + +LYSIMACHUS: +O, sir, a courtesy +Which if we should deny, the most just gods +For every graff would send a caterpillar, +And so afflict our province. Yet once more +Let me entreat to know at large the cause +Of your king's sorrow. + +HELICANUS: +Sit, sir, I will recount it to you: +But, see, I am prevented. + +LYSIMACHUS: +O, here is +The lady that I sent for. Welcome, fair one! +Is't not a goodly presence? + +HELICANUS: +She's a gallant lady. + +LYSIMACHUS: +She's such a one, that, were I well assured +Came of a gentle kind and noble stock, +I'ld wish no better choice, and think me rarely wed. +Fair one, all goodness that consists in bounty +Expect even here, where is a kingly patient: +If that thy prosperous and artificial feat +Can draw him but to answer thee in aught, +Thy sacred physic shall receive such pay +As thy desires can wish. + +MARINA: +Sir, I will use +My utmost skill in his recovery, Provided +That none but I and my companion maid +Be suffer'd to come near him. + +LYSIMACHUS: +Come, let us leave her; +And the gods make her prosperous! + +LYSIMACHUS: +Mark'd he your music? + +MARINA: +No, nor look'd on us. + +LYSIMACHUS: +See, she will speak to him. + +MARINA: +Hail, sir! my lord, lend ear. + +PERICLES: +Hum, ha! + +MARINA: +I am a maid, +My lord, that ne'er before invited eyes, +But have been gazed on like a comet: she speaks, +My lord, that, may be, hath endured a grief +Might equal yours, if both were justly weigh'd. +Though wayward fortune did malign my state, +My derivation was from ancestors +Who stood equivalent with mighty kings: +But time hath rooted out my parentage, +And to the world and awkward casualties +Bound me in servitude. +I will desist; +But there is something glows upon my cheek, +And whispers in mine ear, 'Go not till he speak.' + +PERICLES: +My fortunes--parentage--good parentage-- +To equal mine!--was it not thus? what say you? + +MARINA: +I said, my lord, if you did know my parentage, +You would not do me violence. + +PERICLES: +I do think so. Pray you, turn your eyes upon me. +You are like something that--What country-woman? +Here of these shores? + +MARINA: +No, nor of any shores: +Yet I was mortally brought forth, and am +No other than I appear. + +PERICLES: +I am great with woe, and shall deliver weeping. +My dearest wife was like this maid, and such a one +My daughter might have been: my queen's square brows; +Her stature to an inch; as wand-like straight; +As silver-voiced; her eyes as jewel-like +And cased as richly; in pace another Juno; +Who starves the ears she feeds, and makes them hungry, +The more she gives them speech. Where do you live? + +MARINA: +Where I am but a stranger: from the deck +You may discern the place. + +PERICLES: +Where were you bred? +And how achieved you these endowments, which +You make more rich to owe? + +MARINA: +If I should tell my history, it would seem +Like lies disdain'd in the reporting. + +PERICLES: +Prithee, speak: +Falseness cannot come from thee; for thou look'st +Modest as Justice, and thou seem'st a palace +For the crown'd Truth to dwell in: I will +believe thee, +And make my senses credit thy relation +To points that seem impossible; for thou look'st +Like one I loved indeed. What were thy friends? +Didst thou not say, when I did push thee back-- +Which was when I perceived thee--that thou camest +From good descending? + +MARINA: +So indeed I did. + +PERICLES: +Report thy parentage. I think thou said'st +Thou hadst been toss'd from wrong to injury, +And that thou thought'st thy griefs might equal mine, +If both were open'd. + +MARINA: +Some such thing +I said, and said no more but what my thoughts +Did warrant me was likely. + +PERICLES: +Tell thy story; +If thine consider'd prove the thousandth part +Of my endurance, thou art a man, and I +Have suffer'd like a girl: yet thou dost look +Like Patience gazing on kings' graves, and smiling +Extremity out of act. What were thy friends? +How lost thou them? Thy name, my most kind virgin? +Recount, I do beseech thee: come, sit by me. + +MARINA: +My name is Marina. + +PERICLES: +O, I am mock'd, +And thou by some incensed god sent hither +To make the world to laugh at me. + +MARINA: +Patience, good sir, +Or here I'll cease. + +PERICLES: +Nay, I'll be patient. +Thou little know'st how thou dost startle me, +To call thyself Marina. + +MARINA: +The name +Was given me by one that had some power, +My father, and a king. + +PERICLES: +How! a king's daughter? +And call'd Marina? + +MARINA: +You said you would believe me; +But, not to be a troubler of your peace, +I will end here. + +PERICLES: +But are you flesh and blood? +Have you a working pulse? and are no fairy? +Motion! Well; speak on. Where were you born? +And wherefore call'd Marina? + +MARINA: +Call'd Marina +For I was born at sea. + +PERICLES: +At sea! what mother? + +MARINA: +My mother was the daughter of a king; +Who died the minute I was born, +As my good nurse Lychorida hath oft +Deliver'd weeping. + +PERICLES: +O, stop there a little! +This is the rarest dream that e'er dull sleep +Did mock sad fools withal: this cannot be: +My daughter's buried. Well: where were you bred? +I'll hear you more, to the bottom of your story, +And never interrupt you. + +MARINA: +You scorn: believe me, 'twere best I did give o'er. + +PERICLES: +I will believe you by the syllable +Of what you shall deliver. Yet, give me leave: +How came you in these parts? where were you bred? + +MARINA: +The king my father did in Tarsus leave me; +Till cruel Cleon, with his wicked wife, +Did seek to murder me: and having woo'd +A villain to attempt it, who having drawn to do't, +A crew of pirates came and rescued me; +Brought me to Mytilene. But, good sir, +Whither will you have me? Why do you weep? +It may be, +You think me an impostor: no, good faith; +I am the daughter to King Pericles, +If good King Pericles be. + +PERICLES: +Ho, Helicanus! + +HELICANUS: +Calls my lord? + +PERICLES: +Thou art a grave and noble counsellor, +Most wise in general: tell me, if thou canst, +What this maid is, or what is like to be, +That thus hath made me weep? + +HELICANUS: +I know not; but +Here is the regent, sir, of Mytilene +Speaks nobly of her. + +LYSIMACHUS: +She would never tell +Her parentage; being demanded that, +She would sit still and weep. + +PERICLES: +O Helicanus, strike me, honour'd sir; +Give me a gash, put me to present pain; +Lest this great sea of joys rushing upon me +O'erbear the shores of my mortality, +And drown me with their sweetness. O, come hither, +Thou that beget'st him that did thee beget; +Thou that wast born at sea, buried at Tarsus, +And found at sea again! O Helicanus, +Down on thy knees, thank the holy gods as loud +As thunder threatens us: this is Marina. +What was thy mother's name? tell me but that, +For truth can never be confirm'd enough, +Though doubts did ever sleep. + +MARINA: +First, sir, I pray, +What is your title? + +PERICLES: +I am Pericles of Tyre: but tell me now +My drown'd queen's name, as in the rest you said +Thou hast been godlike perfect, +The heir of kingdoms and another like +To Pericles thy father. + +MARINA: +Is it no more to be your daughter than +To say my mother's name was Thaisa? +Thaisa was my mother, who did end +The minute I began. + +PERICLES: +Now, blessing on thee! rise; thou art my child. +Give me fresh garments. Mine own, Helicanus; +She is not dead at Tarsus, as she should have been, +By savage Cleon: she shall tell thee all; +When thou shalt kneel, and justify in knowledge +She is thy very princess. Who is this? + +HELICANUS: +Sir, 'tis the governor of Mytilene, +Who, hearing of your melancholy state, +Did come to see you. + +PERICLES: +I embrace you. +Give me my robes. I am wild in my beholding. +O heavens bless my girl! But, hark, what music? +Tell Helicanus, my Marina, tell him +O'er, point by point, for yet he seems to doubt, +How sure you are my daughter. But, what music? + +HELICANUS: +My lord, I hear none. + +PERICLES: +None! +The music of the spheres! List, my Marina. + +LYSIMACHUS: +It is not good to cross him; give him way. + +PERICLES: +Rarest sounds! Do ye not hear? + +LYSIMACHUS: +My lord, I hear. + +PERICLES: +Most heavenly music! +It nips me unto listening, and thick slumber +Hangs upon mine eyes: let me rest. + +LYSIMACHUS: +A pillow for his head: +So, leave him all. Well, my companion friends, +If this but answer to my just belief, +I'll well remember you. + +DIANA: +My temple stands in Ephesus: hie thee thither, +And do upon mine altar sacrifice. +There, when my maiden priests are met together, +Before the people all, +Reveal how thou at sea didst lose thy wife: +To mourn thy crosses, with thy daughter's, call +And give them repetition to the life. +Or perform my bidding, or thou livest in woe; +Do it, and happy; by my silver bow! +Awake, and tell thy dream. + +PERICLES: +Celestial Dian, goddess argentine, +I will obey thee. Helicanus! + +HELICANUS: +Sir? + +PERICLES: +My purpose was for Tarsus, there to strike +The inhospitable Cleon; but I am +For other service first: toward Ephesus +Turn our blown sails; eftsoons I'll tell thee why. +Shall we refresh us, sir, upon your shore, +And give you gold for such provision +As our intents will need? + +LYSIMACHUS: +Sir, +With all my heart; and, when you come ashore, +I have another suit. + +PERICLES: +You shall prevail, +Were it to woo my daughter; for it seems +You have been noble towards her. + +LYSIMACHUS: +Sir, lend me your arm. + +PERICLES: +Come, my Marina. + +GOWER: +Now our sands are almost run; +More a little, and then dumb. +This, my last boon, give me, +For such kindness must relieve me, +That you aptly will suppose +What pageantry, what feats, what shows, +What minstrelsy, and pretty din, +The regent made in Mytilene +To greet the king. So he thrived, +That he is promised to be wived +To fair Marina; but in no wise +Till he had done his sacrifice, +As Dian bade: whereto being bound, +The interim, pray you, all confound. +In feather'd briefness sails are fill'd, +And wishes fall out as they're will'd. +At Ephesus, the temple see, +Our king and all his company. +That he can hither come so soon, +Is by your fancy's thankful doom. + +PERICLES: +Hail, Dian! to perform thy just command, +I here confess myself the king of Tyre; +Who, frighted from my country, did wed +At Pentapolis the fair Thaisa. +At sea in childbed died she, but brought forth +A maid-child call'd Marina; who, O goddess, +Wears yet thy silver livery. She at Tarsus +Was nursed with Cleon; who at fourteen years +He sought to murder: but her better stars +Brought her to Mytilene; 'gainst whose shore +Riding, her fortunes brought the maid aboard us, +Where, by her own most clear remembrance, she +Made known herself my daughter. + +THAISA: +Voice and favour! +You are, you are--O royal Pericles! + +PERICLES: +What means the nun? she dies! help, gentlemen! + +CERIMON: +Noble sir, +If you have told Diana's altar true, +This is your wife. + +PERICLES: +Reverend appearer, no; +I threw her overboard with these very arms. + +CERIMON: +Upon this coast, I warrant you. + +PERICLES: +'Tis most certain. + +CERIMON: +Look to the lady; O, she's but o'erjoy'd. +Early in blustering morn this lady was +Thrown upon this shore. I oped the coffin, +Found there rich jewels; recover'd her, and placed her +Here in Diana's temple. + +PERICLES: +May we see them? + +CERIMON: +Great sir, they shall be brought you to my house, +Whither I invite you. Look, Thaisa is recovered. + +THAISA: +O, let me look! +If he be none of mine, my sanctity +Will to my sense bend no licentious ear, +But curb it, spite of seeing. O, my lord, +Are you not Pericles? Like him you spake, +Like him you are: did you not name a tempest, +A birth, and death? + +PERICLES: +The voice of dead Thaisa! + +THAISA: +That Thaisa am I, supposed dead +And drown'd. + +PERICLES: +Immortal Dian! + +THAISA: +Now I know you better. +When we with tears parted Pentapolis, +The king my father gave you such a ring. + +PERICLES: +This, this: no more, you gods! your present kindness +Makes my past miseries sports: you shall do well, +That on the touching of her lips I may +Melt and no more be seen. O, come, be buried +A second time within these arms. + +MARINA: +My heart +Leaps to be gone into my mother's bosom. + +PERICLES: +Look, who kneels here! Flesh of thy flesh, Thaisa; +Thy burden at the sea, and call'd Marina +For she was yielded there. + +THAISA: +Blest, and mine own! + +HELICANUS: +Hail, madam, and my queen! + +THAISA: +I know you not. + +PERICLES: +You have heard me say, when I did fly from Tyre, +I left behind an ancient substitute: +Can you remember what I call'd the man? +I have named him oft. + +THAISA: +'Twas Helicanus then. + +PERICLES: +Still confirmation: +Embrace him, dear Thaisa; this is he. +Now do I long to hear how you were found; +How possibly preserved; and who to thank, +Besides the gods, for this great miracle. + +THAISA: +Lord Cerimon, my lord; this man, +Through whom the gods have shown their power; that can +From first to last resolve you. + +PERICLES: +Reverend sir, +The gods can have no mortal officer +More like a god than you. Will you deliver +How this dead queen re-lives? + +CERIMON: +I will, my lord. +Beseech you, first go with me to my house, +Where shall be shown you all was found with her; +How she came placed here in the temple; +No needful thing omitted. + +PERICLES: +Pure Dian, bless thee for thy vision! I +Will offer night-oblations to thee. Thaisa, +This prince, the fair-betrothed of your daughter, +Shall marry her at Pentapolis. And now, +This ornament +Makes me look dismal will I clip to form; +And what this fourteen years no razor touch'd, +To grace thy marriage-day, I'll beautify. + +THAISA: +Lord Cerimon hath letters of good credit, sir, +My father's dead. + +PERICLES: +Heavens make a star of him! Yet there, my queen, +We'll celebrate their nuptials, and ourselves +Will in that kingdom spend our following days: +Our son and daughter shall in Tyrus reign. +Lord Cerimon, we do our longing stay +To hear the rest untold: sir, lead's the way. + +GOWER: +In Antiochus and his daughter you have heard +Of monstrous lust the due and just reward: +In Pericles, his queen and daughter, seen, +Although assail'd with fortune fierce and keen, +Virtue preserved from fell destruction's blast, +Led on by heaven, and crown'd with joy at last: +In Helicanus may you well descry +A figure of truth, of faith, of loyalty: +In reverend Cerimon there well appears +The worth that learned charity aye wears: +For wicked Cleon and his wife, when fame +Had spread their cursed deed, and honour'd name +Of Pericles, to rage the city turn, +That him and his they in his palace burn; +The gods for murder seemed so content +To punish them; although not done, but meant. +So, on your patience evermore attending, +New joy wait on you! Here our play has ending. + +SATURNINUS: +Noble patricians, patrons of my right, +Defend the justice of my cause with arms, +And, countrymen, my loving followers, +Plead my successive title with your swords: +I am his first-born son, that was the last +That wore the imperial diadem of Rome; +Then let my father's honours live in me, +Nor wrong mine age with this indignity. + +BASSIANUS: +Romans, friends, followers, favorers of my right, +If ever Bassianus, Caesar's son, +Were gracious in the eyes of royal Rome, +Keep then this passage to the Capitol +And suffer not dishonour to approach +The imperial seat, to virtue consecrate, +To justice, continence and nobility; +But let desert in pure election shine, +And, Romans, fight for freedom in your choice. + +MARCUS ANDRONICUS: +Princes, that strive by factions and by friends +Ambitiously for rule and empery, +Know that the people of Rome, for whom we stand +A special party, have, by common voice, +In election for the Roman empery, +Chosen Andronicus, surnamed Pius +For many good and great deserts to Rome: +A nobler man, a braver warrior, +Lives not this day within the city walls: +He by the senate is accit'd home +From weary wars against the barbarous Goths; +That, with his sons, a terror to our foes, +Hath yoked a nation strong, train'd up in arms. +Ten years are spent since first he undertook +This cause of Rome and chastised with arms +Our enemies' pride: five times he hath return'd +Bleeding to Rome, bearing his valiant sons +In coffins from the field; +And now at last, laden with horror's spoils, +Returns the good Andronicus to Rome, +Renowned Titus, flourishing in arms. +Let us entreat, by honour of his name, +Whom worthily you would have now succeed. +And in the Capitol and senate's right, +Whom you pretend to honour and adore, +That you withdraw you and abate your strength; +Dismiss your followers and, as suitors should, +Plead your deserts in peace and humbleness. + +SATURNINUS: +How fair the tribune speaks to calm my thoughts! + +BASSIANUS: +Marcus Andronicus, so I do ally +In thy uprightness and integrity, +And so I love and honour thee and thine, +Thy noble brother Titus and his sons, +And her to whom my thoughts are humbled all, +Gracious Lavinia, Rome's rich ornament, +That I will here dismiss my loving friends, +And to my fortunes and the people's favor +Commit my cause in balance to be weigh'd. + +SATURNINUS: +Friends, that have been thus forward in my right, +I thank you all and here dismiss you all, +And to the love and favor of my country +Commit myself, my person and the cause. +Rome, be as just and gracious unto me +As I am confident and kind to thee. +Open the gates, and let me in. + +BASSIANUS: +Tribunes, and me, a poor competitor. + +Captain: +Romans, make way: the good Andronicus. +Patron of virtue, Rome's best champion, +Successful in the battles that he fights, +With honour and with fortune is return'd +From where he circumscribed with his sword, +And brought to yoke, the enemies of Rome. + +TITUS ANDRONICUS: +Hail, Rome, victorious in thy mourning weeds! +Lo, as the bark, that hath discharged her fraught, +Returns with precious jading to the bay +From whence at first she weigh'd her anchorage, +Cometh Andronicus, bound with laurel boughs, +To re-salute his country with his tears, +Tears of true joy for his return to Rome. +Thou great defender of this Capitol, +Stand gracious to the rites that we intend! +Romans, of five and twenty valiant sons, +Half of the number that King Priam had, +Behold the poor remains, alive and dead! +These that survive let Rome reward with love; +These that I bring unto their latest home, +With burial amongst their ancestors: +Here Goths have given me leave to sheathe my sword. +Titus, unkind and careless of thine own, +Why suffer'st thou thy sons, unburied yet, +To hover on the dreadful shore of Styx? +Make way to lay them by their brethren. +There greet in silence, as the dead are wont, +And sleep in peace, slain in your country's wars! +O sacred receptacle of my joys, +Sweet cell of virtue and nobility, +How many sons of mine hast thou in store, +That thou wilt never render to me more! + +LUCIUS: +Give us the proudest prisoner of the Goths, +That we may hew his limbs, and on a pile +Ad manes fratrum sacrifice his flesh, +Before this earthy prison of their bones; +That so the shadows be not unappeased, +Nor we disturb'd with prodigies on earth. + +TITUS ANDRONICUS: +I give him you, the noblest that survives, +The eldest son of this distressed queen. + +TAMORA: +Stay, Roman brethren! Gracious conqueror, +Victorious Titus, rue the tears I shed, +A mother's tears in passion for her son: +And if thy sons were ever dear to thee, +O, think my son to be as dear to me! +Sufficeth not that we are brought to Rome, +To beautify thy triumphs and return, +Captive to thee and to thy Roman yoke, +But must my sons be slaughter'd in the streets, +For valiant doings in their country's cause? +O, if to fight for king and commonweal +Were piety in thine, it is in these. +Andronicus, stain not thy tomb with blood: +Wilt thou draw near the nature of the gods? +Draw near them then in being merciful: +Sweet mercy is nobility's true badge: +Thrice noble Titus, spare my first-born son. + +TITUS ANDRONICUS: +Patient yourself, madam, and pardon me. +These are their brethren, whom you Goths beheld +Alive and dead, and for their brethren slain +Religiously they ask a sacrifice: +To this your son is mark'd, and die he must, +To appease their groaning shadows that are gone. + +LUCIUS: +Away with him! and make a fire straight; +And with our swords, upon a pile of wood, +Let's hew his limbs till they be clean consumed. + +TAMORA: +O cruel, irreligious piety! + +CHIRON: +Was ever Scythia half so barbarous? + +DEMETRIUS: +Oppose not Scythia to ambitious Rome. +Alarbus goes to rest; and we survive +To tremble under Titus' threatening looks. +Then, madam, stand resolved, but hope withal +The self-same gods that arm'd the Queen of Troy +With opportunity of sharp revenge +Upon the Thracian tyrant in his tent, +May favor Tamora, the Queen of Goths-- +When Goths were Goths and Tamora was queen-- +To quit the bloody wrongs upon her foes. + +LUCIUS: +See, lord and father, how we have perform'd +Our Roman rites: Alarbus' limbs are lopp'd, +And entrails feed the sacrificing fire, +Whose smoke, like incense, doth perfume the sky. +Remaineth nought, but to inter our brethren, +And with loud 'larums welcome them to Rome. + +TITUS ANDRONICUS: +Let it be so; and let Andronicus +Make this his latest farewell to their souls. +In peace and honour rest you here, my sons; +Rome's readiest champions, repose you here in rest, +Secure from worldly chances and mishaps! +Here lurks no treason, here no envy swells, +Here grow no damned grudges; here are no storms, +No noise, but silence and eternal sleep: +In peace and honour rest you here, my sons! + +LAVINIA: +In peace and honour live Lord Titus long; +My noble lord and father, live in fame! +Lo, at this tomb my tributary tears +I render, for my brethren's obsequies; +And at thy feet I kneel, with tears of joy, +Shed on the earth, for thy return to Rome: +O, bless me here with thy victorious hand, +Whose fortunes Rome's best citizens applaud! + +TITUS ANDRONICUS: +Kind Rome, that hast thus lovingly reserved +The cordial of mine age to glad my heart! +Lavinia, live; outlive thy father's days, +And fame's eternal date, for virtue's praise! + +MARCUS ANDRONICUS: +Long live Lord Titus, my beloved brother, +Gracious triumpher in the eyes of Rome! + +TITUS ANDRONICUS: +Thanks, gentle tribune, noble brother Marcus. + +MARCUS ANDRONICUS: +And welcome, nephews, from successful wars, +You that survive, and you that sleep in fame! +Fair lords, your fortunes are alike in all, +That in your country's service drew your swords: +But safer triumph is this funeral pomp, +That hath aspired to Solon's happiness +And triumphs over chance in honour's bed. +Titus Andronicus, the people of Rome, +Whose friend in justice thou hast ever been, +Send thee by me, their tribune and their trust, +This palliament of white and spotless hue; +And name thee in election for the empire, +With these our late-deceased emperor's sons: +Be candidatus then, and put it on, +And help to set a head on headless Rome. + +TITUS ANDRONICUS: +A better head her glorious body fits +Than his that shakes for age and feebleness: +What should I don this robe, and trouble you? +Be chosen with proclamations to-day, +To-morrow yield up rule, resign my life, +And set abroad new business for you all? +Rome, I have been thy soldier forty years, +And led my country's strength successfully, +And buried one and twenty valiant sons, +Knighted in field, slain manfully in arms, +In right and service of their noble country +Give me a staff of honour for mine age, +But not a sceptre to control the world: +Upright he held it, lords, that held it last. + +MARCUS ANDRONICUS: +Titus, thou shalt obtain and ask the empery. + +SATURNINUS: +Proud and ambitious tribune, canst thou tell? + +TITUS ANDRONICUS: +Patience, Prince Saturninus. + +SATURNINUS: +Romans, do me right: +Patricians, draw your swords: and sheathe them not +Till Saturninus be Rome's emperor. +Andronicus, would thou wert shipp'd to hell, +Rather than rob me of the people's hearts! + +LUCIUS: +Proud Saturnine, interrupter of the good +That noble-minded Titus means to thee! + +TITUS ANDRONICUS: +Content thee, prince; I will restore to thee +The people's hearts, and wean them from themselves. + +BASSIANUS: +Andronicus, I do not flatter thee, +But honour thee, and will do till I die: +My faction if thou strengthen with thy friends, +I will most thankful be; and thanks to men +Of noble minds is honourable meed. + +TITUS ANDRONICUS: +People of Rome, and people's tribunes here, +I ask your voices and your suffrages: +Will you bestow them friendly on Andronicus? + +Tribunes: +To gratify the good Andronicus, +And gratulate his safe return to Rome, +The people will accept whom he admits. + +TITUS ANDRONICUS: +Tribunes, I thank you: and this suit I make, +That you create your emperor's eldest son, +Lord Saturnine; whose virtues will, I hope, +Reflect on Rome as Titan's rays on earth, +And ripen justice in this commonweal: +Then, if you will elect by my advice, +Crown him and say 'Long live our emperor!' + +MARCUS ANDRONICUS: +With voices and applause of every sort, +Patricians and plebeians, we create +Lord Saturninus Rome's great emperor, +And say 'Long live our Emperor Saturnine!' + +SATURNINUS: +Titus Andronicus, for thy favors done +To us in our election this day, +I give thee thanks in part of thy deserts, +And will with deeds requite thy gentleness: +And, for an onset, Titus, to advance +Thy name and honourable family, +Lavinia will I make my empress, +Rome's royal mistress, mistress of my heart, +And in the sacred Pantheon her espouse: +Tell me, Andronicus, doth this motion please thee? + +TITUS ANDRONICUS: +It doth, my worthy lord; and in this match +I hold me highly honour'd of your grace: +And here in sight of Rome to Saturnine, +King and commander of our commonweal, +The wide world's emperor, do I consecrate +My sword, my chariot and my prisoners; +Presents well worthy Rome's imperial lord: +Receive them then, the tribute that I owe, +Mine honour's ensigns humbled at thy feet. + +SATURNINUS: +Thanks, noble Titus, father of my life! +How proud I am of thee and of thy gifts +Rome shall record, and when I do forget +The least of these unspeakable deserts, +Romans, forget your fealty to me. + +TITUS ANDRONICUS: + +SATURNINUS: +A goodly lady, trust me; of the hue +That I would choose, were I to choose anew. +Clear up, fair queen, that cloudy countenance: +Though chance of war hath wrought this change of cheer, +Thou comest not to be made a scorn in Rome: +Princely shall be thy usage every way. +Rest on my word, and let not discontent +Daunt all your hopes: madam, he comforts you +Can make you greater than the Queen of Goths. +Lavinia, you are not displeased with this? + +LAVINIA: +Not I, my lord; sith true nobility +Warrants these words in princely courtesy. + +SATURNINUS: +Thanks, sweet Lavinia. Romans, let us go; +Ransomless here we set our prisoners free: +Proclaim our honours, lords, with trump and drum. + +BASSIANUS: +Lord Titus, by your leave, this maid is mine. + +TITUS ANDRONICUS: +How, sir! are you in earnest then, my lord? + +BASSIANUS: +Ay, noble Titus; and resolved withal +To do myself this reason and this right. + +MARCUS ANDRONICUS: +'Suum cuique' is our Roman justice: +This prince in justice seizeth but his own. + +LUCIUS: +And that he will, and shall, if Lucius live. + +TITUS ANDRONICUS: +Traitors, avaunt! Where is the emperor's guard? +Treason, my lord! Lavinia is surprised! + +SATURNINUS: +Surprised! by whom? + +BASSIANUS: +By him that justly may +Bear his betroth'd from all the world away. + +MUTIUS: +Brothers, help to convey her hence away, +And with my sword I'll keep this door safe. + +TITUS ANDRONICUS: +Follow, my lord, and I'll soon bring her back. + +MUTIUS: +My lord, you pass not here. + +TITUS ANDRONICUS: +What, villain boy! +Barr'st me my way in Rome? + +MUTIUS: +Help, Lucius, help! + +LUCIUS: +My lord, you are unjust, and, more than so, +In wrongful quarrel you have slain your son. + +TITUS ANDRONICUS: +Nor thou, nor he, are any sons of mine; +My sons would never so dishonour me: +Traitor, restore Lavinia to the emperor. + +LUCIUS: +Dead, if you will; but not to be his wife, +That is another's lawful promised love. + +SATURNINUS: +No, Titus, no; the emperor needs her not, +Nor her, nor thee, nor any of thy stock: +I'll trust, by leisure, him that mocks me once; +Thee never, nor thy traitorous haughty sons, +Confederates all thus to dishonour me. +Was there none else in Rome to make a stale, +But Saturnine? Full well, Andronicus, +Agree these deeds with that proud brag of thine, +That said'st I begg'd the empire at thy hands. + +TITUS ANDRONICUS: +O monstrous! what reproachful words are these? + +SATURNINUS: +But go thy ways; go, give that changing piece +To him that flourish'd for her with his sword +A valiant son-in-law thou shalt enjoy; +One fit to bandy with thy lawless sons, +To ruffle in the commonwealth of Rome. + +TITUS ANDRONICUS: +These words are razors to my wounded heart. + +SATURNINUS: +And therefore, lovely Tamora, queen of Goths, +That like the stately Phoebe 'mongst her nymphs +Dost overshine the gallant'st dames of Rome, +If thou be pleased with this my sudden choice, +Behold, I choose thee, Tamora, for my bride, +And will create thee empress of Rome, +Speak, Queen of Goths, dost thou applaud my choice? +And here I swear by all the Roman gods, +Sith priest and holy water are so near +And tapers burn so bright and every thing +In readiness for Hymenaeus stand, +I will not re-salute the streets of Rome, +Or climb my palace, till from forth this place +I lead espoused my bride along with me. + +TAMORA: +And here, in sight of heaven, to Rome I swear, +If Saturnine advance the Queen of Goths, +She will a handmaid be to his desires, +A loving nurse, a mother to his youth. + +SATURNINUS: +Ascend, fair queen, Pantheon. Lords, accompany +Your noble emperor and his lovely bride, +Sent by the heavens for Prince Saturnine, +Whose wisdom hath her fortune conquered: +There shall we consummate our spousal rites. + +TITUS ANDRONICUS: +I am not bid to wait upon this bride. +Titus, when wert thou wont to walk alone, +Dishonour'd thus, and challenged of wrongs? + +MARCUS ANDRONICUS: +O Titus, see, O, see what thou hast done! +In a bad quarrel slain a virtuous son. + +TITUS ANDRONICUS: +No, foolish tribune, no; no son of mine, +Nor thou, nor these, confederates in the deed +That hath dishonour'd all our family; +Unworthy brother, and unworthy sons! + +LUCIUS: +But let us give him burial, as becomes; +Give Mutius burial with our brethren. + +TITUS ANDRONICUS: +Traitors, away! he rests not in this tomb: +This monument five hundred years hath stood, +Which I have sumptuously re-edified: +Here none but soldiers and Rome's servitors +Repose in fame; none basely slain in brawls: +Bury him where you can; he comes not here. + +MARCUS ANDRONICUS: +My lord, this is impiety in you: +My nephew Mutius' deeds do plead for him +He must be buried with his brethren. + +QUINTUS: +And shall, or him we will accompany. + +TITUS ANDRONICUS: +'And shall!' what villain was it that spake +that word? + +QUINTUS: +He that would vouch it in any place but here. + +TITUS ANDRONICUS: +What, would you bury him in my despite? + +MARCUS ANDRONICUS: +No, noble Titus, but entreat of thee +To pardon Mutius and to bury him. + +TITUS ANDRONICUS: +Marcus, even thou hast struck upon my crest, +And, with these boys, mine honour thou hast wounded: +My foes I do repute you every one; +So, trouble me no more, but get you gone. + +MARTIUS: +He is not with himself; let us withdraw. + +QUINTUS: +Not I, till Mutius' bones be buried. + +MARCUS ANDRONICUS: +Brother, for in that name doth nature plead,-- + +QUINTUS: +Father, and in that name doth nature speak,-- + +TITUS ANDRONICUS: +Speak thou no more, if all the rest will speed. + +MARCUS ANDRONICUS: +Renowned Titus, more than half my soul,-- + +LUCIUS: +Dear father, soul and substance of us all,-- + +MARCUS ANDRONICUS: +Suffer thy brother Marcus to inter +His noble nephew here in virtue's nest, +That died in honour and Lavinia's cause. +Thou art a Roman; be not barbarous: +The Greeks upon advice did bury Ajax +That slew himself; and wise Laertes' son +Did graciously plead for his funerals: +Let not young Mutius, then, that was thy joy +Be barr'd his entrance here. + +TITUS ANDRONICUS: +Rise, Marcus, rise. +The dismall'st day is this that e'er I saw, +To be dishonour'd by my sons in Rome! +Well, bury him, and bury me the next. + +LUCIUS: +There lie thy bones, sweet Mutius, with thy friends, +Till we with trophies do adorn thy tomb. + +All: + +MARCUS ANDRONICUS: +My lord, to step out of these dreary dumps, +How comes it that the subtle Queen of Goths +Is of a sudden thus advanced in Rome? + +TITUS ANDRONICUS: +I know not, Marcus; but I know it is, +Whether by device or no, the heavens can tell: +Is she not then beholding to the man +That brought her for this high good turn so far? +Yes, and will nobly him remunerate. + +SATURNINUS: +So, Bassianus, you have play'd your prize: +God give you joy, sir, of your gallant bride! + +BASSIANUS: +And you of yours, my lord! I say no more, +Nor wish no less; and so, I take my leave. + +SATURNINUS: +Traitor, if Rome have law or we have power, +Thou and thy faction shall repent this rape. + +BASSIANUS: +Rape, call you it, my lord, to seize my own, +My truth-betrothed love and now my wife? +But let the laws of Rome determine all; +Meanwhile I am possess'd of that is mine. + +SATURNINUS: +'Tis good, sir: you are very short with us; +But, if we live, we'll be as sharp with you. + +BASSIANUS: +My lord, what I have done, as best I may, +Answer I must and shall do with my life. +Only thus much I give your grace to know: +By all the duties that I owe to Rome, +This noble gentleman, Lord Titus here, +Is in opinion and in honour wrong'd; +That in the rescue of Lavinia +With his own hand did slay his youngest son, +In zeal to you and highly moved to wrath +To be controll'd in that he frankly gave: +Receive him, then, to favor, Saturnine, +That hath express'd himself in all his deeds +A father and a friend to thee and Rome. + +TITUS ANDRONICUS: +Prince Bassianus, leave to plead my deeds: +'Tis thou and those that have dishonour'd me. +Rome and the righteous heavens be my judge, +How I have loved and honour'd Saturnine! + +TAMORA: +My worthy lord, if ever Tamora +Were gracious in those princely eyes of thine, +Then hear me speak in indifferently for all; +And at my suit, sweet, pardon what is past. + +SATURNINUS: +What, madam! be dishonour'd openly, +And basely put it up without revenge? + +TAMORA: +Not so, my lord; the gods of Rome forfend +I should be author to dishonour you! +But on mine honour dare I undertake +For good Lord Titus' innocence in all; +Whose fury not dissembled speaks his griefs: +Then, at my suit, look graciously on him; +Lose not so noble a friend on vain suppose, +Nor with sour looks afflict his gentle heart. + +SATURNINUS: +Rise, Titus, rise; my empress hath prevail'd. + +TITUS ANDRONICUS: +I thank your majesty, and her, my lord: +These words, these looks, infuse new life in me. + +TAMORA: +Titus, I am incorporate in Rome, +A Roman now adopted happily, +And must advise the emperor for his good. +This day all quarrels die, Andronicus; +And let it be mine honour, good my lord, +That I have reconciled your friends and you. +For you, Prince Bassianus, I have pass'd +My word and promise to the emperor, +That you will be more mild and tractable. +And fear not lords, and you, Lavinia; +By my advice, all humbled on your knees, +You shall ask pardon of his majesty. + +LUCIUS: +We do, and vow to heaven and to his highness, +That what we did was mildly as we might, +Tendering our sister's honour and our own. + +MARCUS ANDRONICUS: +That, on mine honour, here I do protest. + +SATURNINUS: +Away, and talk not; trouble us no more. + +TAMORA: +Nay, nay, sweet emperor, we must all be friends: +The tribune and his nephews kneel for grace; +I will not be denied: sweet heart, look back. + +SATURNINUS: +Marcus, for thy sake and thy brother's here, +And at my lovely Tamora's entreats, +I do remit these young men's heinous faults: Stand up. +Lavinia, though you left me like a churl, +I found a friend, and sure as death I swore +I would not part a bachelor from the priest. +Come, if the emperor's court can feast two brides, +You are my guest, Lavinia, and your friends. +This day shall be a love-day, Tamora. + +TITUS ANDRONICUS: +To-morrow, an it please your majesty +To hunt the panther and the hart with me, +With horn and hound we'll give your grace bonjour. + +SATURNINUS: +Be it so, Titus, and gramercy too. + +AARON: +Now climbeth Tamora Olympus' top, +Safe out of fortune's shot; and sits aloft, +Secure of thunder's crack or lightning flash; +Advanced above pale envy's threatening reach. +As when the golden sun salutes the morn, +And, having gilt the ocean with his beams, +Gallops the zodiac in his glistering coach, +And overlooks the highest-peering hills; +So Tamora: +Upon her wit doth earthly honour wait, +And virtue stoops and trembles at her frown. +Then, Aaron, arm thy heart, and fit thy thoughts, +To mount aloft with thy imperial mistress, +And mount her pitch, whom thou in triumph long +Hast prisoner held, fetter'd in amorous chains +And faster bound to Aaron's charming eyes +Than is Prometheus tied to Caucasus. +Away with slavish weeds and servile thoughts! +I will be bright, and shine in pearl and gold, +To wait upon this new-made empress. +To wait, said I? to wanton with this queen, +This goddess, this Semiramis, this nymph, +This siren, that will charm Rome's Saturnine, +And see his shipwreck and his commonweal's. +Holloa! what storm is this? + +DEMETRIUS: +Chiron, thy years want wit, thy wit wants edge, +And manners, to intrude where I am graced; +And may, for aught thou know'st, affected be. + +CHIRON: +Demetrius, thou dost over-ween in all; +And so in this, to bear me down with braves. +'Tis not the difference of a year or two +Makes me less gracious or thee more fortunate: +I am as able and as fit as thou +To serve, and to deserve my mistress' grace; +And that my sword upon thee shall approve, +And plead my passions for Lavinia's love. + +AARON: + +DEMETRIUS: +Why, boy, although our mother, unadvised, +Gave you a dancing-rapier by your side, +Are you so desperate grown, to threat your friends? +Go to; have your lath glued within your sheath +Till you know better how to handle it. + +CHIRON: +Meanwhile, sir, with the little skill I have, +Full well shalt thou perceive how much I dare. + +DEMETRIUS: +Ay, boy, grow ye so brave? + +AARON: + +DEMETRIUS: +Not I, till I have sheathed +My rapier in his bosom and withal +Thrust these reproachful speeches down his throat +That he hath breathed in my dishonour here. + +CHIRON: +For that I am prepared and full resolved. +Foul-spoken coward, that thunder'st with thy tongue, +And with thy weapon nothing darest perform! + +AARON: +Away, I say! +Now, by the gods that warlike Goths adore, +This petty brabble will undo us all. +Why, lords, and think you not how dangerous +It is to jet upon a prince's right? +What, is Lavinia then become so loose, +Or Bassianus so degenerate, +That for her love such quarrels may be broach'd +Without controlment, justice, or revenge? +Young lords, beware! and should the empress know +This discord's ground, the music would not please. + +CHIRON: +I care not, I, knew she and all the world: +I love Lavinia more than all the world. + +DEMETRIUS: +Youngling, learn thou to make some meaner choice: +Lavinia is thine elder brother's hope. + +AARON: +Why, are ye mad? or know ye not, in Rome +How furious and impatient they be, +And cannot brook competitors in love? +I tell you, lords, you do but plot your deaths +By this device. + +CHIRON: +Aaron, a thousand deaths +Would I propose to achieve her whom I love. + +AARON: +To achieve her! how? + +DEMETRIUS: +Why makest thou it so strange? +She is a woman, therefore may be woo'd; +She is a woman, therefore may be won; +She is Lavinia, therefore must be loved. +What, man! more water glideth by the mill +Than wots the miller of; and easy it is +Of a cut loaf to steal a shive, we know: +Though Bassianus be the emperor's brother. +Better than he have worn Vulcan's badge. + +AARON: + +DEMETRIUS: +Then why should he despair that knows to court it +With words, fair looks and liberality? +What, hast not thou full often struck a doe, +And borne her cleanly by the keeper's nose? + +AARON: +Why, then, it seems, some certain snatch or so +Would serve your turns. + +CHIRON: +Ay, so the turn were served. + +DEMETRIUS: +Aaron, thou hast hit it. + +AARON: +Would you had hit it too! +Then should not we be tired with this ado. +Why, hark ye, hark ye! and are you such fools +To square for this? would it offend you, then +That both should speed? + +CHIRON: +Faith, not me. + +DEMETRIUS: +Nor me, so I were one. + +AARON: +For shame, be friends, and join for that you jar: +'Tis policy and stratagem must do +That you affect; and so must you resolve, +That what you cannot as you would achieve, +You must perforce accomplish as you may. +Take this of me: Lucrece was not more chaste +Than this Lavinia, Bassianus' love. +A speedier course than lingering languishment +Must we pursue, and I have found the path. +My lords, a solemn hunting is in hand; +There will the lovely Roman ladies troop: +The forest walks are wide and spacious; +And many unfrequented plots there are +Fitted by kind for rape and villany: +Single you thither then this dainty doe, +And strike her home by force, if not by words: +This way, or not at all, stand you in hope. +Come, come, our empress, with her sacred wit +To villany and vengeance consecrate, +Will we acquaint with all that we intend; +And she shall file our engines with advice, +That will not suffer you to square yourselves, +But to your wishes' height advance you both. +The emperor's court is like the house of Fame, +The palace full of tongues, of eyes, and ears: +The woods are ruthless, dreadful, deaf, and dull; +There speak, and strike, brave boys, and take +your turns; +There serve your lusts, shadow'd from heaven's eye, +And revel in Lavinia's treasury. + +CHIRON: +Thy counsel, lad, smells of no cowardice, + +DEMETRIUS: +Sit fas aut nefas, till I find the stream +To cool this heat, a charm to calm these fits. +Per Styga, per manes vehor. + +TITUS ANDRONICUS: +The hunt is up, the morn is bright and grey, +The fields are fragrant and the woods are green: +Uncouple here and let us make a bay +And wake the emperor and his lovely bride +And rouse the prince and ring a hunter's peal, +That all the court may echo with the noise. +Sons, let it be your charge, as it is ours, +To attend the emperor's person carefully: +I have been troubled in my sleep this night, +But dawning day new comfort hath inspired. +Many good morrows to your majesty; +Madam, to you as many and as good: +I promised your grace a hunter's peal. + +SATURNINUS: +And you have rung it lustily, my lord; +Somewhat too early for new-married ladies. + +BASSIANUS: +Lavinia, how say you? + +LAVINIA: +I say, no; +I have been broad awake two hours and more. + +SATURNINUS: +Come on, then; horse and chariots let us have, +And to our sport. +Madam, now shall ye see +Our Roman hunting. + +MARCUS ANDRONICUS: +I have dogs, my lord, +Will rouse the proudest panther in the chase, +And climb the highest promontory top. + +TITUS ANDRONICUS: +And I have horse will follow where the game +Makes way, and run like swallows o'er the plain. + +DEMETRIUS: +Chiron, we hunt not, we, with horse nor hound, +But hope to pluck a dainty doe to ground. + +AARON: +He that had wit would think that I had none, +To bury so much gold under a tree, +And never after to inherit it. +Let him that thinks of me so abjectly +Know that this gold must coin a stratagem, +Which, cunningly effected, will beget +A very excellent piece of villany: +And so repose, sweet gold, for their unrest +That have their alms out of the empress' chest. + +TAMORA: +My lovely Aaron, wherefore look'st thou sad, +When every thing doth make a gleeful boast? +The birds chant melody on every bush, +The snake lies rolled in the cheerful sun, +The green leaves quiver with the cooling wind +And make a chequer'd shadow on the ground: +Under their sweet shade, Aaron, let us sit, +And, whilst the babbling echo mocks the hounds, +Replying shrilly to the well-tuned horns, +As if a double hunt were heard at once, +Let us sit down and mark their yelping noise; +And, after conflict such as was supposed +The wandering prince and Dido once enjoy'd, +When with a happy storm they were surprised +And curtain'd with a counsel-keeping cave, +We may, each wreathed in the other's arms, +Our pastimes done, possess a golden slumber; +Whiles hounds and horns and sweet melodious birds +Be unto us as is a nurse's song +Of lullaby to bring her babe asleep. + +AARON: +Madam, though Venus govern your desires, +Saturn is dominator over mine: +What signifies my deadly-standing eye, +My silence and my cloudy melancholy, +My fleece of woolly hair that now uncurls +Even as an adder when she doth unroll +To do some fatal execution? +No, madam, these are no venereal signs: +Vengeance is in my heart, death in my hand, +Blood and revenge are hammering in my head. +Hark Tamora, the empress of my soul, +Which never hopes more heaven than rests in thee, +This is the day of doom for Bassianus: +His Philomel must lose her tongue to-day, +Thy sons make pillage of her chastity +And wash their hands in Bassianus' blood. +Seest thou this letter? take it up, I pray thee, +And give the king this fatal plotted scroll. +Now question me no more; we are espied; +Here comes a parcel of our hopeful booty, +Which dreads not yet their lives' destruction. + +TAMORA: +Ah, my sweet Moor, sweeter to me than life! + +AARON: +No more, great empress; Bassianus comes: +Be cross with him; and I'll go fetch thy sons +To back thy quarrels, whatsoe'er they be. + +BASSIANUS: +Who have we here? Rome's royal empress, +Unfurnish'd of her well-beseeming troop? +Or is it Dian, habited like her, +Who hath abandoned her holy groves +To see the general hunting in this forest? + +TAMORA: +Saucy controller of our private steps! +Had I the power that some say Dian had, +Thy temples should be planted presently +With horns, as was Actaeon's; and the hounds +Should drive upon thy new-transformed limbs, +Unmannerly intruder as thou art! + +LAVINIA: +Under your patience, gentle empress, +'Tis thought you have a goodly gift in horning; +And to be doubted that your Moor and you +Are singled forth to try experiments: +Jove shield your husband from his hounds to-day! +'Tis pity they should take him for a stag. + +BASSIANUS: +Believe me, queen, your swarth Cimmerian +Doth make your honour of his body's hue, +Spotted, detested, and abominable. +Why are you sequester'd from all your train, +Dismounted from your snow-white goodly steed. +And wander'd hither to an obscure plot, +Accompanied but with a barbarous Moor, +If foul desire had not conducted you? + +LAVINIA: +And, being intercepted in your sport, +Great reason that my noble lord be rated +For sauciness. I pray you, let us hence, +And let her joy her raven-colour'd love; +This valley fits the purpose passing well. + +BASSIANUS: +The king my brother shall have note of this. + +LAVINIA: +Ay, for these slips have made him noted long: +Good king, to be so mightily abused! + +TAMORA: +Why have I patience to endure all this? + +DEMETRIUS: +How now, dear sovereign, and our gracious mother! +Why doth your highness look so pale and wan? + +TAMORA: +Have I not reason, think you, to look pale? +These two have 'ticed me hither to this place: +A barren detested vale, you see it is; +The trees, though summer, yet forlorn and lean, +O'ercome with moss and baleful mistletoe: +Here never shines the sun; here nothing breeds, +Unless the nightly owl or fatal raven: +And when they show'd me this abhorred pit, +They told me, here, at dead time of the night, +A thousand fiends, a thousand hissing snakes, +Ten thousand swelling toads, as many urchins, +Would make such fearful and confused cries +As any mortal body hearing it +Should straight fall mad, or else die suddenly. +No sooner had they told this hellish tale, +But straight they told me they would bind me here +Unto the body of a dismal yew, +And leave me to this miserable death: +And then they call'd me foul adulteress, +Lascivious Goth, and all the bitterest terms +That ever ear did hear to such effect: +And, had you not by wondrous fortune come, +This vengeance on me had they executed. +Revenge it, as you love your mother's life, +Or be ye not henceforth call'd my children. + +DEMETRIUS: +This is a witness that I am thy son. + +CHIRON: +And this for me, struck home to show my strength. + +LAVINIA: +Ay, come, Semiramis, nay, barbarous Tamora, +For no name fits thy nature but thy own! + +TAMORA: +Give me thy poniard; you shall know, my boys +Your mother's hand shall right your mother's wrong. + +DEMETRIUS: +Stay, madam; here is more belongs to her; +First thrash the corn, then after burn the straw: +This minion stood upon her chastity, +Upon her nuptial vow, her loyalty, +And with that painted hope braves your mightiness: +And shall she carry this unto her grave? + +CHIRON: +An if she do, I would I were an eunuch. +Drag hence her husband to some secret hole, +And make his dead trunk pillow to our lust. + +TAMORA: +But when ye have the honey ye desire, +Let not this wasp outlive, us both to sting. + +CHIRON: +I warrant you, madam, we will make that sure. +Come, mistress, now perforce we will enjoy +That nice-preserved honesty of yours. + +LAVINIA: +O Tamora! thou bear'st a woman's face,-- + +TAMORA: +I will not hear her speak; away with her! + +LAVINIA: +Sweet lords, entreat her hear me but a word. + +DEMETRIUS: +Listen, fair madam: let it be your glory +To see her tears; but be your heart to them +As unrelenting flint to drops of rain. + +LAVINIA: +When did the tiger's young ones teach the dam? +O, do not learn her wrath; she taught it thee; +The milk thou suck'dst from her did turn to marble; +Even at thy teat thou hadst thy tyranny. +Yet every mother breeds not sons alike: +Do thou entreat her show a woman pity. + +CHIRON: +What, wouldst thou have me prove myself a bastard? + +LAVINIA: +'Tis true; the raven doth not hatch a lark: +Yet have I heard,--O, could I find it now!-- +The lion moved with pity did endure +To have his princely paws pared all away: +Some say that ravens foster forlorn children, +The whilst their own birds famish in their nests: +O, be to me, though thy hard heart say no, +Nothing so kind, but something pitiful! + +TAMORA: +I know not what it means; away with her! + +LAVINIA: +O, let me teach thee! for my father's sake, +That gave thee life, when well he might have +slain thee, +Be not obdurate, open thy deaf ears. + +TAMORA: +Hadst thou in person ne'er offended me, +Even for his sake am I pitiless. +Remember, boys, I pour'd forth tears in vain, +To save your brother from the sacrifice; +But fierce Andronicus would not relent; +Therefore, away with her, and use her as you will, +The worse to her, the better loved of me. + +LAVINIA: +O Tamora, be call'd a gentle queen, +And with thine own hands kill me in this place! +For 'tis not life that I have begg'd so long; +Poor I was slain when Bassianus died. + +TAMORA: +What begg'st thou, then? fond woman, let me go. + +LAVINIA: +'Tis present death I beg; and one thing more +That womanhood denies my tongue to tell: +O, keep me from their worse than killing lust, +And tumble me into some loathsome pit, +Where never man's eye may behold my body: +Do this, and be a charitable murderer. + +TAMORA: +So should I rob my sweet sons of their fee: +No, let them satisfy their lust on thee. + +DEMETRIUS: +Away! for thou hast stay'd us here too long. + +LAVINIA: +No grace? no womanhood? Ah, beastly creature! +The blot and enemy to our general name! +Confusion fall-- + +CHIRON: +Nay, then I'll stop your mouth. Bring thou her husband: +This is the hole where Aaron bid us hide him. + +TAMORA: +Farewell, my sons: see that you make her sure. +Ne'er let my heart know merry cheer indeed, +Till all the Andronici be made away. +Now will I hence to seek my lovely Moor, +And let my spleenful sons this trull deflow'r. + +AARON: +Come on, my lords, the better foot before: +Straight will I bring you to the loathsome pit +Where I espied the panther fast asleep. + +QUINTUS: +My sight is very dull, whate'er it bodes. + +MARTIUS: +And mine, I promise you; were't not for shame, +Well could I leave our sport to sleep awhile. + +QUINTUS: +What art thou fall'n? What subtle hole is this, +Whose mouth is cover'd with rude-growing briers, +Upon whose leaves are drops of new-shed blood +As fresh as morning dew distill'd on flowers? +A very fatal place it seems to me. +Speak, brother, hast thou hurt thee with the fall? + +MARTIUS: +O brother, with the dismall'st object hurt +That ever eye with sight made heart lament! + +AARON: + +MARTIUS: +Why dost not comfort me, and help me out +From this unhallowed and blood-stained hole? + +QUINTUS: +I am surprised with an uncouth fear; +A chilling sweat o'er-runs my trembling joints: +My heart suspects more than mine eye can see. + +MARTIUS: +To prove thou hast a true-divining heart, +Aaron and thou look down into this den, +And see a fearful sight of blood and death. + +QUINTUS: +Aaron is gone; and my compassionate heart +Will not permit mine eyes once to behold +The thing whereat it trembles by surmise; +O, tell me how it is; for ne'er till now +Was I a child to fear I know not what. + +MARTIUS: +Lord Bassianus lies embrewed here, +All on a heap, like to a slaughter'd lamb, +In this detested, dark, blood-drinking pit. + +QUINTUS: +If it be dark, how dost thou know 'tis he? + +MARTIUS: +Upon his bloody finger he doth wear +A precious ring, that lightens all the hole, +Which, like a taper in some monument, +Doth shine upon the dead man's earthy cheeks, +And shows the ragged entrails of the pit: +So pale did shine the moon on Pyramus +When he by night lay bathed in maiden blood. +O brother, help me with thy fainting hand-- +If fear hath made thee faint, as me it hath-- +Out of this fell devouring receptacle, +As hateful as Cocytus' misty mouth. + +QUINTUS: +Reach me thy hand, that I may help thee out; +Or, wanting strength to do thee so much good, +I may be pluck'd into the swallowing womb +Of this deep pit, poor Bassianus' grave. +I have no strength to pluck thee to the brink. + +MARTIUS: +Nor I no strength to climb without thy help. + +QUINTUS: +Thy hand once more; I will not loose again, +Till thou art here aloft, or I below: +Thou canst not come to me: I come to thee. + +SATURNINUS: +Along with me: I'll see what hole is here, +And what he is that now is leap'd into it. +Say who art thou that lately didst descend +Into this gaping hollow of the earth? + +MARTIUS: +The unhappy son of old Andronicus: +Brought hither in a most unlucky hour, +To find thy brother Bassianus dead. + +SATURNINUS: +My brother dead! I know thou dost but jest: +He and his lady both are at the lodge +Upon the north side of this pleasant chase; +'Tis not an hour since I left him there. + +MARTIUS: +We know not where you left him all alive; +But, out, alas! here have we found him dead. + +TAMORA: +Where is my lord the king? + +SATURNINUS: +Here, Tamora, though grieved with killing grief. + +TAMORA: +Where is thy brother Bassianus? + +SATURNINUS: +Now to the bottom dost thou search my wound: +Poor Bassianus here lies murdered. + +TAMORA: +Then all too late I bring this fatal writ, +The complot of this timeless tragedy; +And wonder greatly that man's face can fold +In pleasing smiles such murderous tyranny. + +SATURNINUS: + +AARON: +My gracious lord, here is the bag of gold. + +SATURNINUS: + +TAMORA: +What, are they in this pit? O wondrous thing! +How easily murder is discovered! + +TITUS ANDRONICUS: +High emperor, upon my feeble knee +I beg this boon, with tears not lightly shed, +That this fell fault of my accursed sons, +Accursed if the fault be proved in them,-- + +SATURNINUS: +If it be proved! you see it is apparent. +Who found this letter? Tamora, was it you? + +TAMORA: +Andronicus himself did take it up. + +TITUS ANDRONICUS: +I did, my lord: yet let me be their bail; +For, by my father's reverend tomb, I vow +They shall be ready at your highness' will +To answer their suspicion with their lives. + +SATURNINUS: +Thou shalt not bail them: see thou follow me. +Some bring the murder'd body, some the murderers: +Let them not speak a word; the guilt is plain; +For, by my soul, were there worse end than death, +That end upon them should be executed. + +TAMORA: +Andronicus, I will entreat the king; +Fear not thy sons; they shall do well enough. + +TITUS ANDRONICUS: +Come, Lucius, come; stay not to talk with them. + +DEMETRIUS: +So, now go tell, an if thy tongue can speak, +Who 'twas that cut thy tongue and ravish'd thee. + +CHIRON: +Write down thy mind, bewray thy meaning so, +An if thy stumps will let thee play the scribe. + +DEMETRIUS: +See, how with signs and tokens she can scrowl. + +CHIRON: +Go home, call for sweet water, wash thy hands. + +DEMETRIUS: +She hath no tongue to call, nor hands to wash; +And so let's leave her to her silent walks. + +CHIRON: +An 'twere my case, I should go hang myself. + +DEMETRIUS: +If thou hadst hands to help thee knit the cord. + +MARCUS: +Who is this? my niece, that flies away so fast! +Cousin, a word; where is your husband? +If I do dream, would all my wealth would wake me! +If I do wake, some planet strike me down, +That I may slumber in eternal sleep! +Speak, gentle niece, what stern ungentle hands +Have lopp'd and hew'd and made thy body bare +Of her two branches, those sweet ornaments, +Whose circling shadows kings have sought to sleep in, +And might not gain so great a happiness +As have thy love? Why dost not speak to me? +Alas, a crimson river of warm blood, +Like to a bubbling fountain stirr'd with wind, +Doth rise and fall between thy rosed lips, +Coming and going with thy honey breath. +But, sure, some Tereus hath deflowered thee, +And, lest thou shouldst detect him, cut thy tongue. +Ah, now thou turn'st away thy face for shame! +And, notwithstanding all this loss of blood, +As from a conduit with three issuing spouts, +Yet do thy cheeks look red as Titan's face +Blushing to be encountered with a cloud. +Shall I speak for thee? shall I say 'tis so? +O, that I knew thy heart; and knew the beast, +That I might rail at him, to ease my mind! +Sorrow concealed, like an oven stopp'd, +Doth burn the heart to cinders where it is. +Fair Philomela, she but lost her tongue, +And in a tedious sampler sew'd her mind: +But, lovely niece, that mean is cut from thee; +A craftier Tereus, cousin, hast thou met, +And he hath cut those pretty fingers off, +That could have better sew'd than Philomel. +O, had the monster seen those lily hands +Tremble, like aspen-leaves, upon a lute, +And make the silken strings delight to kiss them, +He would not then have touch'd them for his life! +Or, had he heard the heavenly harmony +Which that sweet tongue hath made, +He would have dropp'd his knife, and fell asleep +As Cerberus at the Thracian poet's feet. +Come, let us go, and make thy father blind; +For such a sight will blind a father's eye: +One hour's storm will drown the fragrant meads; +What will whole months of tears thy father's eyes? +Do not draw back, for we will mourn with thee +O, could our mourning ease thy misery! + +TITUS ANDRONICUS: +Hear me, grave fathers! noble tribunes, stay! +For pity of mine age, whose youth was spent +In dangerous wars, whilst you securely slept; +For all my blood in Rome's great quarrel shed; +For all the frosty nights that I have watch'd; +And for these bitter tears, which now you see +Filling the aged wrinkles in my cheeks; +Be pitiful to my condemned sons, +Whose souls are not corrupted as 'tis thought. +For two and twenty sons I never wept, +Because they died in honour's lofty bed. +For these, these, tribunes, in the dust I write +My heart's deep languor and my soul's sad tears: +Let my tears stanch the earth's dry appetite; +My sons' sweet blood will make it shame and blush. +O earth, I will befriend thee more with rain, +That shall distil from these two ancient urns, +Than youthful April shall with all his showers: +In summer's drought I'll drop upon thee still; +In winter with warm tears I'll melt the snow +And keep eternal spring-time on thy face, +So thou refuse to drink my dear sons' blood. +O reverend tribunes! O gentle, aged men! +Unbind my sons, reverse the doom of death; +And let me say, that never wept before, +My tears are now prevailing orators. + +LUCIUS: +O noble father, you lament in vain: +The tribunes hear you not; no man is by; +And you recount your sorrows to a stone. + +TITUS ANDRONICUS: +Ah, Lucius, for thy brothers let me plead. +Grave tribunes, once more I entreat of you,-- + +LUCIUS: +My gracious lord, no tribune hears you speak. + +TITUS ANDRONICUS: +Why, tis no matter, man; if they did hear, +They would not mark me, or if they did mark, +They would not pity me, yet plead I must; +And bootless unto them. +Therefore I tell my sorrows to the stones; +Who, though they cannot answer my distress, +Yet in some sort they are better than the tribunes, +For that they will not intercept my tale: +When I do weep, they humbly at my feet +Receive my tears and seem to weep with me; +And, were they but attired in grave weeds, +Rome could afford no tribune like to these. +A stone is soft as wax,--tribunes more hard than stones; +A stone is silent, and offendeth not, +And tribunes with their tongues doom men to death. +But wherefore stand'st thou with thy weapon drawn? + +LUCIUS: +To rescue my two brothers from their death: +For which attempt the judges have pronounced +My everlasting doom of banishment. + +TITUS ANDRONICUS: +O happy man! they have befriended thee. +Why, foolish Lucius, dost thou not perceive +That Rome is but a wilderness of tigers? +Tigers must prey, and Rome affords no prey +But me and mine: how happy art thou, then, +From these devourers to be banished! +But who comes with our brother Marcus here? + +MARCUS ANDRONICUS: +Titus, prepare thy aged eyes to weep; +Or, if not so, thy noble heart to break: +I bring consuming sorrow to thine age. + +TITUS ANDRONICUS: +Will it consume me? let me see it, then. + +MARCUS ANDRONICUS: +This was thy daughter. + +TITUS ANDRONICUS: +Why, Marcus, so she is. + +LUCIUS: +Ay me, this object kills me! + +TITUS ANDRONICUS: +Faint-hearted boy, arise, and look upon her. +Speak, Lavinia, what accursed hand +Hath made thee handless in thy father's sight? +What fool hath added water to the sea, +Or brought a faggot to bright-burning Troy? +My grief was at the height before thou camest, +And now like Nilus, it disdaineth bounds. +Give me a sword, I'll chop off my hands too; +For they have fought for Rome, and all in vain; +And they have nursed this woe, in feeding life; +In bootless prayer have they been held up, +And they have served me to effectless use: +Now all the service I require of them +Is that the one will help to cut the other. +'Tis well, Lavinia, that thou hast no hands; +For hands, to do Rome service, are but vain. + +LUCIUS: +Speak, gentle sister, who hath martyr'd thee? + +MARCUS ANDRONICUS: +O, that delightful engine of her thoughts +That blabb'd them with such pleasing eloquence, +Is torn from forth that pretty hollow cage, +Where, like a sweet melodious bird, it sung +Sweet varied notes, enchanting every ear! + +LUCIUS: +O, say thou for her, who hath done this deed? + +MARCUS ANDRONICUS: +O, thus I found her, straying in the park, +Seeking to hide herself, as doth the deer +That hath received some unrecuring wound. + +TITUS ANDRONICUS: +It was my deer; and he that wounded her +Hath hurt me more than had he killed me dead: +For now I stand as one upon a rock +Environed with a wilderness of sea, +Who marks the waxing tide grow wave by wave, +Expecting ever when some envious surge +Will in his brinish bowels swallow him. +This way to death my wretched sons are gone; +Here stands my other son, a banished man, +And here my brother, weeping at my woes. +But that which gives my soul the greatest spurn, +Is dear Lavinia, dearer than my soul. +Had I but seen thy picture in this plight, +It would have madded me: what shall I do +Now I behold thy lively body so? +Thou hast no hands, to wipe away thy tears: +Nor tongue, to tell me who hath martyr'd thee: +Thy husband he is dead: and for his death +Thy brothers are condemn'd, and dead by this. +Look, Marcus! ah, son Lucius, look on her! +When I did name her brothers, then fresh tears +Stood on her cheeks, as doth the honey-dew +Upon a gather'd lily almost wither'd. + +MARCUS ANDRONICUS: +Perchance she weeps because they kill'd her husband; +Perchance because she knows them innocent. + +TITUS ANDRONICUS: +If they did kill thy husband, then be joyful +Because the law hath ta'en revenge on them. +No, no, they would not do so foul a deed; +Witness the sorrow that their sister makes. +Gentle Lavinia, let me kiss thy lips. +Or make some sign how I may do thee ease: +Shall thy good uncle, and thy brother Lucius, +And thou, and I, sit round about some fountain, +Looking all downwards to behold our cheeks +How they are stain'd, as meadows, yet not dry, +With miry slime left on them by a flood? +And in the fountain shall we gaze so long +Till the fresh taste be taken from that clearness, +And made a brine-pit with our bitter tears? +Or shall we cut away our hands, like thine? +Or shall we bite our tongues, and in dumb shows +Pass the remainder of our hateful days? +What shall we do? let us, that have our tongues, +Plot some deuce of further misery, +To make us wonder'd at in time to come. + +LUCIUS: +Sweet father, cease your tears; for, at your grief, +See how my wretched sister sobs and weeps. + +MARCUS ANDRONICUS: +Patience, dear niece. Good Titus, dry thine eyes. + +TITUS ANDRONICUS: +Ah, Marcus, Marcus! brother, well I wot +Thy napkin cannot drink a tear of mine, +For thou, poor man, hast drown'd it with thine own. + +LUCIUS: +Ah, my Lavinia, I will wipe thy cheeks. + +TITUS ANDRONICUS: +Mark, Marcus, mark! I understand her signs: +Had she a tongue to speak, now would she say +That to her brother which I said to thee: +His napkin, with his true tears all bewet, +Can do no service on her sorrowful cheeks. +O, what a sympathy of woe is this, +As far from help as Limbo is from bliss! + +AARON: +Titus Andronicus, my lord the emperor +Sends thee this word,--that, if thou love thy sons, +Let Marcus, Lucius, or thyself, old Titus, +Or any one of you, chop off your hand, +And send it to the king: he for the same +Will send thee hither both thy sons alive; +And that shall be the ransom for their fault. + +TITUS ANDRONICUS: +O gracious emperor! O gentle Aaron! +Did ever raven sing so like a lark, +That gives sweet tidings of the sun's uprise? +With all my heart, I'll send the emperor My hand: +Good Aaron, wilt thou help to chop it off? + +LUCIUS: +Stay, father! for that noble hand of thine, +That hath thrown down so many enemies, +Shall not be sent: my hand will serve the turn: +My youth can better spare my blood than you; +And therefore mine shall save my brothers' lives. + +MARCUS ANDRONICUS: +Which of your hands hath not defended Rome, +And rear'd aloft the bloody battle-axe, +Writing destruction on the enemy's castle? +O, none of both but are of high desert: +My hand hath been but idle; let it serve +To ransom my two nephews from their death; +Then have I kept it to a worthy end. + +AARON: +Nay, come, agree whose hand shall go along, +For fear they die before their pardon come. + +MARCUS ANDRONICUS: +My hand shall go. + +LUCIUS: +By heaven, it shall not go! + +TITUS ANDRONICUS: +Sirs, strive no more: such wither'd herbs as these +Are meet for plucking up, and therefore mine. + +LUCIUS: +Sweet father, if I shall be thought thy son, +Let me redeem my brothers both from death. + +MARCUS ANDRONICUS: +And, for our father's sake and mother's care, +Now let me show a brother's love to thee. + +TITUS ANDRONICUS: +Agree between you; I will spare my hand. + +LUCIUS: +Then I'll go fetch an axe. + +MARCUS ANDRONICUS: +But I will use the axe. + +TITUS ANDRONICUS: +Come hither, Aaron; I'll deceive them both: +Lend me thy hand, and I will give thee mine. + +AARON: + +TITUS ANDRONICUS: +Now stay your strife: what shall be is dispatch'd. +Good Aaron, give his majesty my hand: +Tell him it was a hand that warded him +From thousand dangers; bid him bury it +More hath it merited; that let it have. +As for my sons, say I account of them +As jewels purchased at an easy price; +And yet dear too, because I bought mine own. + +AARON: +I go, Andronicus: and for thy hand +Look by and by to have thy sons with thee. +Their heads, I mean. O, how this villany +Doth fat me with the very thoughts of it! +Let fools do good, and fair men call for grace. +Aaron will have his soul black like his face. + +TITUS ANDRONICUS: +O, here I lift this one hand up to heaven, +And bow this feeble ruin to the earth: +If any power pities wretched tears, +To that I call! +What, wilt thou kneel with me? +Do, then, dear heart; for heaven shall hear our prayers; +Or with our sighs we'll breathe the welkin dim, +And stain the sun with fog, as sometime clouds +When they do hug him in their melting bosoms. + +MARCUS ANDRONICUS: +O brother, speak with possibilities, +And do not break into these deep extremes. + +TITUS ANDRONICUS: +Is not my sorrow deep, having no bottom? +Then be my passions bottomless with them. + +MARCUS ANDRONICUS: +But yet let reason govern thy lament. + +TITUS ANDRONICUS: +If there were reason for these miseries, +Then into limits could I bind my woes: +When heaven doth weep, doth not the earth o'erflow? +If the winds rage, doth not the sea wax mad, +Threatening the welkin with his big-swoln face? +And wilt thou have a reason for this coil? +I am the sea; hark, how her sighs do blow! +She is the weeping welkin, I the earth: +Then must my sea be moved with her sighs; +Then must my earth with her continual tears +Become a deluge, overflow'd and drown'd; +For why my bowels cannot hide her woes, +But like a drunkard must I vomit them. +Then give me leave, for losers will have leave +To ease their stomachs with their bitter tongues. + +Messenger: +Worthy Andronicus, ill art thou repaid +For that good hand thou sent'st the emperor. +Here are the heads of thy two noble sons; +And here's thy hand, in scorn to thee sent back; +Thy griefs their sports, thy resolution mock'd; +That woe is me to think upon thy woes +More than remembrance of my father's death. + +MARCUS ANDRONICUS: +Now let hot AEtna cool in Sicily, +And be my heart an ever-burning hell! +These miseries are more than may be borne. +To weep with them that weep doth ease some deal; +But sorrow flouted at is double death. + +LUCIUS: +Ah, that this sight should make so deep a wound, +And yet detested life not shrink thereat! +That ever death should let life bear his name, +Where life hath no more interest but to breathe! + +MARCUS ANDRONICUS: +Alas, poor heart, that kiss is comfortless +As frozen water to a starved snake. + +TITUS ANDRONICUS: +When will this fearful slumber have an end? + +MARCUS ANDRONICUS: +Now, farewell, flattery: die, Andronicus; +Thou dost not slumber: see, thy two sons' heads, +Thy warlike hand, thy mangled daughter here: +Thy other banish'd son, with this dear sight +Struck pale and bloodless; and thy brother, I, +Even like a stony image, cold and numb. +Ah, now no more will I control thy griefs: +Rend off thy silver hair, thy other hand +Gnawing with thy teeth; and be this dismal sight +The closing up of our most wretched eyes; +Now is a time to storm; why art thou still? + +TITUS ANDRONICUS: +Ha, ha, ha! + +MARCUS ANDRONICUS: +Why dost thou laugh? it fits not with this hour. + +TITUS ANDRONICUS: +Why, I have not another tear to shed: +Besides, this sorrow is an enemy, +And would usurp upon my watery eyes +And make them blind with tributary tears: +Then which way shall I find Revenge's cave? +For these two heads do seem to speak to me, +And threat me I shall never come to bliss +Till all these mischiefs be return'd again +Even in their throats that have committed them. +Come, let me see what task I have to do. +You heavy people, circle me about, +That I may turn me to each one of you, +And swear unto my soul to right your wrongs. +The vow is made. Come, brother, take a head; +And in this hand the other I will bear. +Lavinia, thou shalt be employ'd: these arms! +Bear thou my hand, sweet wench, between thy teeth. +As for thee, boy, go get thee from my sight; +Thou art an exile, and thou must not stay: +Hie to the Goths, and raise an army there: +And, if you love me, as I think you do, +Let's kiss and part, for we have much to do. + +LUCIUS: +Farewell Andronicus, my noble father, +The wofull'st man that ever lived in Rome: +Farewell, proud Rome; till Lucius come again, +He leaves his pledges dearer than his life: +Farewell, Lavinia, my noble sister; +O, would thou wert as thou tofore hast been! +But now nor Lucius nor Lavinia lives +But in oblivion and hateful griefs. +If Lucius live, he will requite your wrongs; +And make proud Saturnine and his empress +Beg at the gates, like Tarquin and his queen. +Now will I to the Goths, and raise a power, +To be revenged on Rome and Saturnine. + +TITUS ANDRONICUS: +So, so; now sit: and look you eat no more +Than will preserve just so much strength in us +As will revenge these bitter woes of ours. +Marcus, unknit that sorrow-wreathen knot: +Thy niece and I, poor creatures, want our hands, +And cannot passionate our tenfold grief +With folded arms. This poor right hand of mine +Is left to tyrannize upon my breast; +Who, when my heart, all mad with misery, +Beats in this hollow prison of my flesh, +Then thus I thump it down. +Thou map of woe, that thus dost talk in signs! +When thy poor heart beats with outrageous beating, +Thou canst not strike it thus to make it still. +Wound it with sighing, girl, kill it with groans; +Or get some little knife between thy teeth, +And just against thy heart make thou a hole; +That all the tears that thy poor eyes let fall +May run into that sink, and soaking in +Drown the lamenting fool in sea-salt tears. + +MARCUS ANDRONICUS: +Fie, brother, fie! teach her not thus to lay +Such violent hands upon her tender life. + +TITUS ANDRONICUS: +How now! has sorrow made thee dote already? +Why, Marcus, no man should be mad but I. +What violent hands can she lay on her life? +Ah, wherefore dost thou urge the name of hands; +To bid AEneas tell the tale twice o'er, +How Troy was burnt and he made miserable? +O, handle not the theme, to talk of hands, +Lest we remember still that we have none. +Fie, fie, how franticly I square my talk, +As if we should forget we had no hands, +If Marcus did not name the word of hands! +Come, let's fall to; and, gentle girl, eat this: +Here is no drink! Hark, Marcus, what she says; +I can interpret all her martyr'd signs; +She says she drinks no other drink but tears, +Brew'd with her sorrow, mesh'd upon her cheeks: +Speechless complainer, I will learn thy thought; +In thy dumb action will I be as perfect +As begging hermits in their holy prayers: +Thou shalt not sigh, nor hold thy stumps to heaven, +Nor wink, nor nod, nor kneel, nor make a sign, +But I of these will wrest an alphabet +And by still practise learn to know thy meaning. + +Young LUCIUS: +Good grandsire, leave these bitter deep laments: +Make my aunt merry with some pleasing tale. + +MARCUS ANDRONICUS: +Alas, the tender boy, in passion moved, +Doth weep to see his grandsire's heaviness. + +TITUS ANDRONICUS: +Peace, tender sapling; thou art made of tears, +And tears will quickly melt thy life away. +What dost thou strike at, Marcus, with thy knife? + +MARCUS ANDRONICUS: +At that that I have kill'd, my lord; a fly. + +TITUS ANDRONICUS: +Out on thee, murderer! thou kill'st my heart; +Mine eyes are cloy'd with view of tyranny: +A deed of death done on the innocent +Becomes not Titus' brother: get thee gone: +I see thou art not for my company. + +MARCUS ANDRONICUS: +Alas, my lord, I have but kill'd a fly. + +TITUS ANDRONICUS: +But how, if that fly had a father and mother? +How would he hang his slender gilded wings, +And buzz lamenting doings in the air! +Poor harmless fly, +That, with his pretty buzzing melody, +Came here to make us merry! and thou hast +kill'd him. + +MARCUS ANDRONICUS: +Pardon me, sir; it was a black ill-favor'd fly, +Like to the empress' Moor; therefore I kill'd him. + +TITUS ANDRONICUS: +O, O, O, +Then pardon me for reprehending thee, +For thou hast done a charitable deed. +Give me thy knife, I will insult on him; +Flattering myself, as if it were the Moor +Come hither purposely to poison me.-- +There's for thyself, and that's for Tamora. +Ah, sirrah! +Yet, I think, we are not brought so low, +But that between us we can kill a fly +That comes in likeness of a coal-black Moor. + +MARCUS ANDRONICUS: +Alas, poor man! grief has so wrought on him, +He takes false shadows for true substances. + +TITUS ANDRONICUS: +Come, take away. Lavinia, go with me: +I'll to thy closet; and go read with thee +Sad stories chanced in the times of old. +Come, boy, and go with me: thy sight is young, +And thou shalt read when mine begin to dazzle. + +Young LUCIUS: +Help, grandsire, help! my aunt Lavinia +Follows me every where, I know not why: +Good uncle Marcus, see how swift she comes. +Alas, sweet aunt, I know not what you mean. + +MARCUS ANDRONICUS: +Stand by me, Lucius; do not fear thine aunt. + +TITUS ANDRONICUS: +She loves thee, boy, too well to do thee harm. + +Young LUCIUS: +Ay, when my father was in Rome she did. + +MARCUS ANDRONICUS: +What means my niece Lavinia by these signs? + +TITUS ANDRONICUS: +Fear her not, Lucius: somewhat doth she mean: +See, Lucius, see how much she makes of thee: +Somewhither would she have thee go with her. +Ah, boy, Cornelia never with more care +Read to her sons than she hath read to thee +Sweet poetry and Tully's Orator. + +MARCUS ANDRONICUS: +Canst thou not guess wherefore she plies thee thus? + +Young LUCIUS: +My lord, I know not, I, nor can I guess, +Unless some fit or frenzy do possess her: +For I have heard my grandsire say full oft, +Extremity of griefs would make men mad; +And I have read that Hecuba of Troy +Ran mad through sorrow: that made me to fear; +Although, my lord, I know my noble aunt +Loves me as dear as e'er my mother did, +And would not, but in fury, fright my youth: +Which made me down to throw my books, and fly-- +Causeless, perhaps. But pardon me, sweet aunt: +And, madam, if my uncle Marcus go, +I will most willingly attend your ladyship. + +MARCUS ANDRONICUS: +Lucius, I will. + +TITUS ANDRONICUS: +How now, Lavinia! Marcus, what means this? +Some book there is that she desires to see. +Which is it, girl, of these? Open them, boy. +But thou art deeper read, and better skill'd +Come, and take choice of all my library, +And so beguile thy sorrow, till the heavens +Reveal the damn'd contriver of this deed. +Why lifts she up her arms in sequence thus? + +MARCUS ANDRONICUS: +I think she means that there was more than one +Confederate in the fact: ay, more there was; +Or else to heaven she heaves them for revenge. + +TITUS ANDRONICUS: +Lucius, what book is that she tosseth so? + +Young LUCIUS: +Grandsire, 'tis Ovid's Metamorphoses; +My mother gave it me. + +MARCUS ANDRONICUS: +For love of her that's gone, +Perhaps she cull'd it from among the rest. + +TITUS ANDRONICUS: +Soft! see how busily she turns the leaves! +What would she find? Lavinia, shall I read? +This is the tragic tale of Philomel, +And treats of Tereus' treason and his rape: +And rape, I fear, was root of thine annoy. + +MARCUS ANDRONICUS: +See, brother, see; note how she quotes the leaves. + +TITUS ANDRONICUS: +Lavinia, wert thou thus surprised, sweet girl, +Ravish'd and wrong'd, as Philomela was, +Forced in the ruthless, vast, and gloomy woods? See, see! +Ay, such a place there is, where we did hunt-- +O, had we never, never hunted there!-- +Pattern'd by that the poet here describes, +By nature made for murders and for rapes. + +MARCUS ANDRONICUS: +O, why should nature build so foul a den, +Unless the gods delight in tragedies? + +TITUS ANDRONICUS: +Give signs, sweet girl, for here are none +but friends, +What Roman lord it was durst do the deed: +Or slunk not Saturnine, as Tarquin erst, +That left the camp to sin in Lucrece' bed? + +MARCUS ANDRONICUS: +Sit down, sweet niece: brother, sit down by me. +Apollo, Pallas, Jove, or Mercury, +Inspire me, that I may this treason find! +My lord, look here: look here, Lavinia: +This sandy plot is plain; guide, if thou canst +This after me, when I have writ my name +Without the help of any hand at all. +Cursed be that heart that forced us to this shift! +Write thou good niece; and here display, at last, +What God will have discover'd for revenge; +Heaven guide thy pen to print thy sorrows plain, +That we may know the traitors and the truth! + +TITUS ANDRONICUS: +O, do ye read, my lord, what she hath writ? +'Stuprum. Chiron. Demetrius.' + +MARCUS ANDRONICUS: +What, what! the lustful sons of Tamora +Performers of this heinous, bloody deed? + +TITUS ANDRONICUS: +Magni Dominator poli, +Tam lentus audis scelera? tam lentus vides? + +MARCUS ANDRONICUS: +O, calm thee, gentle lord; although I know +There is enough written upon this earth +To stir a mutiny in the mildest thoughts +And arm the minds of infants to exclaims. +My lord, kneel down with me; Lavinia, kneel; +And kneel, sweet boy, the Roman Hector's hope; +And swear with me, as, with the woful fere +And father of that chaste dishonour'd dame, +Lord Junius Brutus sware for Lucrece' rape, +That we will prosecute by good advice +Mortal revenge upon these traitorous Goths, +And see their blood, or die with this reproach. + +TITUS ANDRONICUS: +'Tis sure enough, an you knew how. +But if you hunt these bear-whelps, then beware: +The dam will wake; and, if she wind you once, +She's with the lion deeply still in league, +And lulls him whilst she playeth on her back, +And when he sleeps will she do what she list. +You are a young huntsman, Marcus; let it alone; +And, come, I will go get a leaf of brass, +And with a gad of steel will write these words, +And lay it by: the angry northern wind +Will blow these sands, like Sibyl's leaves, abroad, +And where's your lesson, then? Boy, what say you? + +Young LUCIUS: +I say, my lord, that if I were a man, +Their mother's bed-chamber should not be safe +For these bad bondmen to the yoke of Rome. + +MARCUS ANDRONICUS: +Ay, that's my boy! thy father hath full oft +For his ungrateful country done the like. + +Young LUCIUS: +And, uncle, so will I, an if I live. + +TITUS ANDRONICUS: +Come, go with me into mine armoury; +Lucius, I'll fit thee; and withal, my boy, +Shalt carry from me to the empress' sons +Presents that I intend to send them both: +Come, come; thou'lt do thy message, wilt thou not? + +Young LUCIUS: +Ay, with my dagger in their bosoms, grandsire. + +TITUS ANDRONICUS: +No, boy, not so; I'll teach thee another course. +Lavinia, come. Marcus, look to my house: +Lucius and I'll go brave it at the court: +Ay, marry, will we, sir; and we'll be waited on. + +MARCUS ANDRONICUS: +O heavens, can you hear a good man groan, +And not relent, or not compassion him? +Marcus, attend him in his ecstasy, +That hath more scars of sorrow in his heart +Than foemen's marks upon his batter'd shield; +But yet so just that he will not revenge. +Revenge, ye heavens, for old Andronicus! + +CHIRON: +Demetrius, here's the son of Lucius; +He hath some message to deliver us. + +AARON: +Ay, some mad message from his mad grandfather. + +Young LUCIUS: +My lords, with all the humbleness I may, +I greet your honours from Andronicus. +And pray the Roman gods confound you both! + +DEMETRIUS: +Gramercy, lovely Lucius: what's the news? + +Young LUCIUS: + +DEMETRIUS: +What's here? A scroll; and written round about? +Let's see; +'Integer vitae, scelerisque purus, +Non eget Mauri jaculis, nec arcu.' + +CHIRON: +O, 'tis a verse in Horace; I know it well: +I read it in the grammar long ago. + +AARON: +Ay, just; a verse in Horace; right, you have it. +Now, what a thing it is to be an ass! +Here's no sound jest! the old man hath found their guilt; +And sends them weapons wrapped about with lines, +That wound, beyond their feeling, to the quick. +But were our witty empress well afoot, +She would applaud Andronicus' conceit: +But let her rest in her unrest awhile. +And now, young lords, was't not a happy star +Led us to Rome, strangers, and more than so, +Captives, to be advanced to this height? +It did me good, before the palace gate +To brave the tribune in his brother's hearing. + +DEMETRIUS: +But me more good, to see so great a lord +Basely insinuate and send us gifts. + +AARON: +Had he not reason, Lord Demetrius? +Did you not use his daughter very friendly? + +DEMETRIUS: +I would we had a thousand Roman dames +At such a bay, by turn to serve our lust. + +CHIRON: +A charitable wish and full of love. + +AARON: +Here lacks but your mother for to say amen. + +CHIRON: +And that would she for twenty thousand more. + +DEMETRIUS: +Come, let us go; and pray to all the gods +For our beloved mother in her pains. + +AARON: + +DEMETRIUS: +Why do the emperor's trumpets flourish thus? + +CHIRON: +Belike, for joy the emperor hath a son. + +DEMETRIUS: +Soft! who comes here? + +Nurse: +Good morrow, lords: +O, tell me, did you see Aaron the Moor? + +AARON: +Well, more or less, or ne'er a whit at all, +Here Aaron is; and what with Aaron now? + +Nurse: +O gentle Aaron, we are all undone! +Now help, or woe betide thee evermore! + +AARON: +Why, what a caterwauling dost thou keep! +What dost thou wrap and fumble in thine arms? + +Nurse: +O, that which I would hide from heaven's eye, +Our empress' shame, and stately Rome's disgrace! +She is deliver'd, lords; she is deliver'd. + +AARON: +To whom? + +Nurse: +I mean, she is brought a-bed. + +AARON: +Well, God give her good rest! What hath he sent her? + +Nurse: +A devil. + +AARON: +Why, then she is the devil's dam; a joyful issue. + +Nurse: +A joyless, dismal, black, and sorrowful issue: +Here is the babe, as loathsome as a toad +Amongst the fairest breeders of our clime: +The empress sends it thee, thy stamp, thy seal, +And bids thee christen it with thy dagger's point. + +AARON: +'Zounds, ye whore! is black so base a hue? +Sweet blowse, you are a beauteous blossom, sure. + +DEMETRIUS: +Villain, what hast thou done? + +AARON: +That which thou canst not undo. + +CHIRON: +Thou hast undone our mother. + +AARON: +Villain, I have done thy mother. + +DEMETRIUS: +And therein, hellish dog, thou hast undone. +Woe to her chance, and damn'd her loathed choice! +Accursed the offspring of so foul a fiend! + +CHIRON: +It shall not live. + +AARON: +It shall not die. + +Nurse: +Aaron, it must; the mother wills it so. + +AARON: +What, must it, nurse? then let no man but I +Do execution on my flesh and blood. + +DEMETRIUS: +I'll broach the tadpole on my rapier's point: +Nurse, give it me; my sword shall soon dispatch it. + +AARON: +Sooner this sword shall plough thy bowels up. +Stay, murderous villains! will you kill your brother? +Now, by the burning tapers of the sky, +That shone so brightly when this boy was got, +He dies upon my scimitar's sharp point +That touches this my first-born son and heir! +I tell you, younglings, not Enceladus, +With all his threatening band of Typhon's brood, +Nor great Alcides, nor the god of war, +Shall seize this prey out of his father's hands. +What, what, ye sanguine, shallow-hearted boys! +Ye white-limed walls! ye alehouse painted signs! +Coal-black is better than another hue, +In that it scorns to bear another hue; +For all the water in the ocean +Can never turn the swan's black legs to white, +Although she lave them hourly in the flood. +Tell the empress from me, I am of age +To keep mine own, excuse it how she can. + +DEMETRIUS: +Wilt thou betray thy noble mistress thus? + +AARON: +My mistress is my mistress; this myself, +The vigour and the picture of my youth: +This before all the world do I prefer; +This maugre all the world will I keep safe, +Or some of you shall smoke for it in Rome. + +DEMETRIUS: +By this our mother is forever shamed. + +CHIRON: +Rome will despise her for this foul escape. + +Nurse: +The emperor, in his rage, will doom her death. + +CHIRON: +I blush to think upon this ignomy. + +AARON: +Why, there's the privilege your beauty bears: +Fie, treacherous hue, that will betray with blushing +The close enacts and counsels of the heart! +Here's a young lad framed of another leer: +Look, how the black slave smiles upon the father, +As who should say 'Old lad, I am thine own.' +He is your brother, lords, sensibly fed +Of that self-blood that first gave life to you, +And from that womb where you imprison'd were +He is enfranchised and come to light: +Nay, he is your brother by the surer side, +Although my seal be stamped in his face. + +Nurse: +Aaron, what shall I say unto the empress? + +DEMETRIUS: +Advise thee, Aaron, what is to be done, +And we will all subscribe to thy advice: +Save thou the child, so we may all be safe. + +AARON: +Then sit we down, and let us all consult. +My son and I will have the wind of you: +Keep there: now talk at pleasure of your safety. + +DEMETRIUS: +How many women saw this child of his? + +AARON: +Why, so, brave lords! when we join in league, +I am a lamb: but if you brave the Moor, +The chafed boar, the mountain lioness, +The ocean swells not so as Aaron storms. +But say, again; how many saw the child? + +Nurse: +Cornelia the midwife and myself; +And no one else but the deliver'd empress. + +AARON: +The empress, the midwife, and yourself: +Two may keep counsel when the third's away: +Go to the empress, tell her this I said. +Weke, weke! so cries a pig prepared to the spit. + +DEMETRIUS: +What mean'st thou, Aaron? wherefore didst thou this? + +AARON: +O Lord, sir, 'tis a deed of policy: +Shall she live to betray this guilt of ours, +A long-tongued babbling gossip? no, lords, no: +And now be it known to you my full intent. +Not far, one Muli lives, my countryman; +His wife but yesternight was brought to bed; +His child is like to her, fair as you are: +Go pack with him, and give the mother gold, +And tell them both the circumstance of all; +And how by this their child shall be advanced, +And be received for the emperor's heir, +And substituted in the place of mine, +To calm this tempest whirling in the court; +And let the emperor dandle him for his own. +Hark ye, lords; ye see I have given her physic, +And you must needs bestow her funeral; +The fields are near, and you are gallant grooms: +This done, see that you take no longer days, +But send the midwife presently to me. +The midwife and the nurse well made away, +Then let the ladies tattle what they please. + +CHIRON: +Aaron, I see thou wilt not trust the air +With secrets. + +DEMETRIUS: +For this care of Tamora, +Herself and hers are highly bound to thee. + +AARON: +Now to the Goths, as swift as swallow flies; +There to dispose this treasure in mine arms, +And secretly to greet the empress' friends. +Come on, you thick lipp'd slave, I'll bear you hence; +For it is you that puts us to our shifts: +I'll make you feed on berries and on roots, +And feed on curds and whey, and suck the goat, +And cabin in a cave, and bring you up +To be a warrior, and command a camp. + +TITUS ANDRONICUS: +Come, Marcus; come, kinsmen; this is the way. +Sir boy, now let me see your archery; +Look ye draw home enough, and 'tis there straight. +Terras Astraea reliquit: +Be you remember'd, Marcus, she's gone, she's fled. +Sirs, take you to your tools. You, cousins, shall +Go sound the ocean, and cast your nets; +Happily you may catch her in the sea; +Yet there's as little justice as at land: +No; Publius and Sempronius, you must do it; +'Tis you must dig with mattock and with spade, +And pierce the inmost centre of the earth: +Then, when you come to Pluto's region, +I pray you, deliver him this petition; +Tell him, it is for justice and for aid, +And that it comes from old Andronicus, +Shaken with sorrows in ungrateful Rome. +Ah, Rome! Well, well; I made thee miserable +What time I threw the people's suffrages +On him that thus doth tyrannize o'er me. +Go, get you gone; and pray be careful all, +And leave you not a man-of-war unsearch'd: +This wicked emperor may have shipp'd her hence; +And, kinsmen, then we may go pipe for justice. + +MARCUS ANDRONICUS: +O Publius, is not this a heavy case, +To see thy noble uncle thus distract? + +PUBLIUS: +Therefore, my lord, it highly us concerns +By day and night to attend him carefully, +And feed his humour kindly as we may, +Till time beget some careful remedy. + +MARCUS ANDRONICUS: +Kinsmen, his sorrows are past remedy. +Join with the Goths; and with revengeful war +Take wreak on Rome for this ingratitude, +And vengeance on the traitor Saturnine. + +TITUS ANDRONICUS: +Publius, how now! how now, my masters! +What, have you met with her? + +PUBLIUS: +No, my good lord; but Pluto sends you word, +If you will have Revenge from hell, you shall: +Marry, for Justice, she is so employ'd, +He thinks, with Jove in heaven, or somewhere else, +So that perforce you must needs stay a time. + +TITUS ANDRONICUS: +He doth me wrong to feed me with delays. +I'll dive into the burning lake below, +And pull her out of Acheron by the heels. +Marcus, we are but shrubs, no cedars we +No big-boned men framed of the Cyclops' size; +But metal, Marcus, steel to the very back, +Yet wrung with wrongs more than our backs can bear: +And, sith there's no justice in earth nor hell, +We will solicit heaven and move the gods +To send down Justice for to wreak our wrongs. +Come, to this gear. You are a good archer, Marcus; +'Ad Jovem,' that's for you: here, 'Ad Apollinem:' +'Ad Martem,' that's for myself: +Here, boy, to Pallas: here, to Mercury: +To Saturn, Caius, not to Saturnine; +You were as good to shoot against the wind. +To it, boy! Marcus, loose when I bid. +Of my word, I have written to effect; +There's not a god left unsolicited. + +MARCUS ANDRONICUS: +Kinsmen, shoot all your shafts into the court: +We will afflict the emperor in his pride. + +TITUS ANDRONICUS: +Now, masters, draw. +O, well said, Lucius! +Good boy, in Virgo's lap; give it Pallas. + +MARCUS ANDRONICUS: +My lord, I aim a mile beyond the moon; +Your letter is with Jupiter by this. + +TITUS ANDRONICUS: +Ha, ha! +Publius, Publius, what hast thou done? +See, see, thou hast shot off one of Taurus' horns. + +MARCUS ANDRONICUS: +This was the sport, my lord: when Publius shot, +The Bull, being gall'd, gave Aries such a knock +That down fell both the Ram's horns in the court; +And who should find them but the empress' villain? +She laugh'd, and told the Moor he should not choose +But give them to his master for a present. + +TITUS ANDRONICUS: +Why, there it goes: God give his lordship joy! +News, news from heaven! Marcus, the post is come. +Sirrah, what tidings? have you any letters? +Shall I have justice? what says Jupiter? + +Clown: +O, the gibbet-maker! he says that he hath taken +them down again, for the man must not be hanged till +the next week. + +TITUS ANDRONICUS: +But what says Jupiter, I ask thee? + +Clown: +Alas, sir, I know not Jupiter; I never drank with him +in all my life. + +TITUS ANDRONICUS: +Why, villain, art not thou the carrier? + +Clown: +Ay, of my pigeons, sir; nothing else. + +TITUS ANDRONICUS: +Why, didst thou not come from heaven? + +Clown: +From heaven! alas, sir, I never came there God +forbid I should be so bold to press to heaven in my +young days. Why, I am going with my pigeons to the +tribunal plebs, to take up a matter of brawl +betwixt my uncle and one of the emperial's men. + +MARCUS ANDRONICUS: +Why, sir, that is as fit as can be to serve for +your oration; and let him deliver the pigeons to +the emperor from you. + +TITUS ANDRONICUS: +Tell me, can you deliver an oration to the emperor +with a grace? + +Clown: +Nay, truly, sir, I could never say grace in all my life. + +TITUS ANDRONICUS: +Sirrah, come hither: make no more ado, +But give your pigeons to the emperor: +By me thou shalt have justice at his hands. +Hold, hold; meanwhile here's money for thy charges. +Give me pen and ink. Sirrah, can you with a grace +deliver a supplication? + +Clown: +Ay, sir. + +TITUS ANDRONICUS: +Then here is a supplication for you. And when you +come to him, at the first approach you must kneel, +then kiss his foot, then deliver up your pigeons, and +then look for your reward. I'll be at hand, sir; see +you do it bravely. + +Clown: +I warrant you, sir, let me alone. + +TITUS ANDRONICUS: +Sirrah, hast thou a knife? come, let me see it. +Here, Marcus, fold it in the oration; +For thou hast made it like an humble suppliant. +And when thou hast given it the emperor, +Knock at my door, and tell me what he says. + +Clown: +God be with you, sir; I will. + +TITUS ANDRONICUS: +Come, Marcus, let us go. Publius, follow me. + +SATURNINUS: +Why, lords, what wrongs are these! was ever seen +An emperor in Rome thus overborne, +Troubled, confronted thus; and, for the extent +Of egal justice, used in such contempt? +My lords, you know, as know the mightful gods, +However these disturbers of our peace +Buz in the people's ears, there nought hath pass'd, +But even with law, against the willful sons +Of old Andronicus. And what an if +His sorrows have so overwhelm'd his wits, +Shall we be thus afflicted in his wreaks, +His fits, his frenzy, and his bitterness? +And now he writes to heaven for his redress: +See, here's to Jove, and this to Mercury; +This to Apollo; this to the god of war; +Sweet scrolls to fly about the streets of Rome! +What's this but libelling against the senate, +And blazoning our injustice every where? +A goodly humour, is it not, my lords? +As who would say, in Rome no justice were. +But if I live, his feigned ecstasies +Shall be no shelter to these outrages: +But he and his shall know that justice lives +In Saturninus' health, whom, if she sleep, +He'll so awake as she in fury shall +Cut off the proud'st conspirator that lives. + +TAMORA: +My gracious lord, my lovely Saturnine, +Lord of my life, commander of my thoughts, +Calm thee, and bear the faults of Titus' age, +The effects of sorrow for his valiant sons, +Whose loss hath pierced him deep and scarr'd his heart; +And rather comfort his distressed plight +Than prosecute the meanest or the best +For these contempts. +Why, thus it shall become +High-witted Tamora to gloze with all: +But, Titus, I have touched thee to the quick, +Thy life-blood out: if Aaron now be wise, +Then is all safe, the anchor's in the port. +How now, good fellow! wouldst thou speak with us? + +Clown: +Yea, forsooth, an your mistership be emperial. + +TAMORA: +Empress I am, but yonder sits the emperor. + +Clown: +'Tis he. God and Saint Stephen give you good den: +I have brought you a letter and a couple of pigeons here. + +SATURNINUS: +Go, take him away, and hang him presently. + +Clown: +How much money must I have? + +TAMORA: +Come, sirrah, you must be hanged. + +Clown: +Hanged! by'r lady, then I have brought up a neck to +a fair end. + +SATURNINUS: +Despiteful and intolerable wrongs! +Shall I endure this monstrous villany? +I know from whence this same device proceeds: +May this be borne?--as if his traitorous sons, +That died by law for murder of our brother, +Have by my means been butcher'd wrongfully! +Go, drag the villain hither by the hair; +Nor age nor honour shall shape privilege: +For this proud mock I'll be thy slaughterman; +Sly frantic wretch, that holp'st to make me great, +In hope thyself should govern Rome and me. +What news with thee, AEmilius? + +AEMILIUS: +Arm, arm, my lord;--Rome never had more cause. +The Goths have gather'd head; and with a power +high-resolved men, bent to the spoil, +They hither march amain, under conduct +Of Lucius, son to old Andronicus; +Who threats, in course of this revenge, to do +As much as ever Coriolanus did. + +SATURNINUS: +Is warlike Lucius general of the Goths? +These tidings nip me, and I hang the head +As flowers with frost or grass beat down with storms: +Ay, now begin our sorrows to approach: +'Tis he the common people love so much; +Myself hath often over-heard them say, +When I have walked like a private man, +That Lucius' banishment was wrongfully, +And they have wish'd that Lucius were their emperor. + +TAMORA: +Why should you fear? is not your city strong? + +SATURNINUS: +Ay, but the citizens favor Lucius, +And will revolt from me to succor him. + +TAMORA: +King, be thy thoughts imperious, like thy name. +Is the sun dimm'd, that gnats do fly in it? +The eagle suffers little birds to sing, +And is not careful what they mean thereby, +Knowing that with the shadow of his wings +He can at pleasure stint their melody: +Even so mayst thou the giddy men of Rome. +Then cheer thy spirit : for know, thou emperor, +I will enchant the old Andronicus +With words more sweet, and yet more dangerous, +Than baits to fish, or honey-stalks to sheep, +When as the one is wounded with the bait, +The other rotted with delicious feed. + +SATURNINUS: +But he will not entreat his son for us. + +TAMORA: +If Tamora entreat him, then he will: +For I can smooth and fill his aged ear +With golden promises; that, were his heart +Almost impregnable, his old ears deaf, +Yet should both ear and heart obey my tongue. +Go thou before, be our ambassador: +Say that the emperor requests a parley +Of warlike Lucius, and appoint the meeting +Even at his father's house, the old Andronicus. + +SATURNINUS: +AEmilius, do this message honourably: +And if he stand on hostage for his safety, +Bid him demand what pledge will please him best. + +AEMILIUS: +Your bidding shall I do effectually. + +TAMORA: +Now will I to that old Andronicus; +And temper him with all the art I have, +To pluck proud Lucius from the warlike Goths. +And now, sweet emperor, be blithe again, +And bury all thy fear in my devices. + +SATURNINUS: +Then go successantly, and plead to him. + +LUCIUS: +Approved warriors, and my faithful friends, +I have received letters from great Rome, +Which signify what hate they bear their emperor +And how desirous of our sight they are. +Therefore, great lords, be, as your titles witness, +Imperious and impatient of your wrongs, +And wherein Rome hath done you any scath, +Let him make treble satisfaction. + +First Goth: +Brave slip, sprung from the great Andronicus, +Whose name was once our terror, now our comfort; +Whose high exploits and honourable deeds +Ingrateful Rome requites with foul contempt, +Be bold in us: we'll follow where thou lead'st, +Like stinging bees in hottest summer's day +Led by their master to the flowered fields, +And be avenged on cursed Tamora. + +All the Goths: +And as he saith, so say we all with him. + +LUCIUS: +I humbly thank him, and I thank you all. +But who comes here, led by a lusty Goth? + +Second Goth: +Renowned Lucius, from our troops I stray'd +To gaze upon a ruinous monastery; +And, as I earnestly did fix mine eye +Upon the wasted building, suddenly +I heard a child cry underneath a wall. +I made unto the noise; when soon I heard +The crying babe controll'd with this discourse: +'Peace, tawny slave, half me and half thy dam! +Did not thy hue bewray whose brat thou art, +Had nature lent thee but thy mother's look, +Villain, thou mightst have been an emperor: +But where the bull and cow are both milk-white, +They never do beget a coal-black calf. +Peace, villain, peace!'--even thus he rates +the babe,-- +'For I must bear thee to a trusty Goth; +Who, when he knows thou art the empress' babe, +Will hold thee dearly for thy mother's sake.' +With this, my weapon drawn, I rush'd upon him, +Surprised him suddenly, and brought him hither, +To use as you think needful of the man. + +LUCIUS: +O worthy Goth, this is the incarnate devil +That robb'd Andronicus of his good hand; +This is the pearl that pleased your empress' eye, +And here's the base fruit of his burning lust. +Say, wall-eyed slave, whither wouldst thou convey +This growing image of thy fiend-like face? +Why dost not speak? what, deaf? not a word? +A halter, soldiers! hang him on this tree. +And by his side his fruit of bastardy. + +AARON: +Touch not the boy; he is of royal blood. + +LUCIUS: +Too like the sire for ever being good. +First hang the child, that he may see it sprawl; +A sight to vex the father's soul withal. +Get me a ladder. + +AARON: +Lucius, save the child, +And bear it from me to the empress. +If thou do this, I'll show thee wondrous things, +That highly may advantage thee to hear: +If thou wilt not, befall what may befall, +I'll speak no more but 'Vengeance rot you all!' + +LUCIUS: +Say on: an if it please me which thou speak'st +Thy child shall live, and I will see it nourish'd. + +AARON: +An if it please thee! why, assure thee, Lucius, +'Twill vex thy soul to hear what I shall speak; +For I must talk of murders, rapes and massacres, +Acts of black night, abominable deeds, +Complots of mischief, treason, villanies +Ruthful to hear, yet piteously perform'd: +And this shall all be buried by my death, +Unless thou swear to me my child shall live. + +LUCIUS: +Tell on thy mind; I say thy child shall live. + +AARON: +Swear that he shall, and then I will begin. + +LUCIUS: +Who should I swear by? thou believest no god: +That granted, how canst thou believe an oath? + +AARON: +What if I do not? as, indeed, I do not; +Yet, for I know thou art religious +And hast a thing within thee called conscience, +With twenty popish tricks and ceremonies, +Which I have seen thee careful to observe, +Therefore I urge thy oath; for that I know +An idiot holds his bauble for a god +And keeps the oath which by that god he swears, +To that I'll urge him: therefore thou shalt vow +By that same god, what god soe'er it be, +That thou adorest and hast in reverence, +To save my boy, to nourish and bring him up; +Or else I will discover nought to thee. + +LUCIUS: +Even by my god I swear to thee I will. + +AARON: +First know thou, I begot him on the empress. + +LUCIUS: +O most insatiate and luxurious woman! + +AARON: +Tut, Lucius, this was but a deed of charity +To that which thou shalt hear of me anon. +'Twas her two sons that murder'd Bassianus; +They cut thy sister's tongue and ravish'd her +And cut her hands and trimm'd her as thou saw'st. + +LUCIUS: +O detestable villain! call'st thou that trimming? + +AARON: +Why, she was wash'd and cut and trimm'd, and 'twas +Trim sport for them that had the doing of it. + +LUCIUS: +O barbarous, beastly villains, like thyself! + +AARON: +Indeed, I was their tutor to instruct them: +That codding spirit had they from their mother, +As sure a card as ever won the set; +That bloody mind, I think, they learn'd of me, +As true a dog as ever fought at head. +Well, let my deeds be witness of my worth. +I train'd thy brethren to that guileful hole +Where the dead corpse of Bassianus lay: +I wrote the letter that thy father found +And hid the gold within the letter mention'd, +Confederate with the queen and her two sons: +And what not done, that thou hast cause to rue, +Wherein I had no stroke of mischief in it? +I play'd the cheater for thy father's hand, +And, when I had it, drew myself apart +And almost broke my heart with extreme laughter: +I pry'd me through the crevice of a wall +When, for his hand, he had his two sons' heads; +Beheld his tears, and laugh'd so heartily, +That both mine eyes were rainy like to his : +And when I told the empress of this sport, +She swooned almost at my pleasing tale, +And for my tidings gave me twenty kisses. + +First Goth: +What, canst thou say all this, and never blush? + +AARON: +Ay, like a black dog, as the saying is. + +LUCIUS: +Art thou not sorry for these heinous deeds? + +AARON: +Ay, that I had not done a thousand more. +Even now I curse the day--and yet, I think, +Few come within the compass of my curse,-- +Wherein I did not some notorious ill, +As kill a man, or else devise his death, +Ravish a maid, or plot the way to do it, +Accuse some innocent and forswear myself, +Set deadly enmity between two friends, +Make poor men's cattle break their necks; +Set fire on barns and hay-stacks in the night, +And bid the owners quench them with their tears. +Oft have I digg'd up dead men from their graves, +And set them upright at their dear friends' doors, +Even when their sorrows almost were forgot; +And on their skins, as on the bark of trees, +Have with my knife carved in Roman letters, +'Let not your sorrow die, though I am dead.' +Tut, I have done a thousand dreadful things +As willingly as one would kill a fly, +And nothing grieves me heartily indeed +But that I cannot do ten thousand more. + +LUCIUS: +Bring down the devil; for he must not die +So sweet a death as hanging presently. + +AARON: +If there be devils, would I were a devil, +To live and burn in everlasting fire, +So I might have your company in hell, +But to torment you with my bitter tongue! + +LUCIUS: +Sirs, stop his mouth, and let him speak no more. + +Third Goth: +My lord, there is a messenger from Rome +Desires to be admitted to your presence. + +LUCIUS: +Let him come near. +Welcome, AEmilius what's the news from Rome? + +AEMILIUS: +Lord Lucius, and you princes of the Goths, +The Roman emperor greets you all by me; +And, for he understands you are in arms, +He craves a parley at your father's house, +Willing you to demand your hostages, +And they shall be immediately deliver'd. + +First Goth: +What says our general? + +LUCIUS: +AEmilius, let the emperor give his pledges +Unto my father and my uncle Marcus, +And we will come. March away. + +TAMORA: +Thus, in this strange and sad habiliment, +I will encounter with Andronicus, +And say I am Revenge, sent from below +To join with him and right his heinous wrongs. +Knock at his study, where, they say, he keeps, +To ruminate strange plots of dire revenge; +Tell him Revenge is come to join with him, +And work confusion on his enemies. + +TITUS ANDRONICUS: +Who doth molest my contemplation? +Is it your trick to make me ope the door, +That so my sad decrees may fly away, +And all my study be to no effect? +You are deceived: for what I mean to do +See here in bloody lines I have set down; +And what is written shall be executed. + +TAMORA: +Titus, I am come to talk with thee. + +TITUS ANDRONICUS: +No, not a word; how can I grace my talk, +Wanting a hand to give it action? +Thou hast the odds of me; therefore no more. + +TAMORA: +If thou didst know me, thou wouldest talk with me. + +TITUS ANDRONICUS: +I am not mad; I know thee well enough: +Witness this wretched stump, witness these crimson lines; +Witness these trenches made by grief and care, +Witness the tiring day and heavy night; +Witness all sorrow, that I know thee well +For our proud empress, mighty Tamora: +Is not thy coming for my other hand? + +TAMORA: +Know, thou sad man, I am not Tamora; +She is thy enemy, and I thy friend: +I am Revenge: sent from the infernal kingdom, +To ease the gnawing vulture of thy mind, +By working wreakful vengeance on thy foes. +Come down, and welcome me to this world's light; +Confer with me of murder and of death: +There's not a hollow cave or lurking-place, +No vast obscurity or misty vale, +Where bloody murder or detested rape +Can couch for fear, but I will find them out; +And in their ears tell them my dreadful name, +Revenge, which makes the foul offender quake. + +TITUS ANDRONICUS: +Art thou Revenge? and art thou sent to me, +To be a torment to mine enemies? + +TAMORA: +I am; therefore come down, and welcome me. + +TITUS ANDRONICUS: +Do me some service, ere I come to thee. +Lo, by thy side where Rape and Murder stands; +Now give me some surance that thou art Revenge, +Stab them, or tear them on thy chariot-wheels; +And then I'll come and be thy waggoner, +And whirl along with thee about the globe. +Provide thee two proper palfreys, black as jet, +To hale thy vengeful waggon swift away, +And find out murderers in their guilty caves: +And when thy car is loaden with their heads, +I will dismount, and by the waggon-wheel +Trot, like a servile footman, all day long, +Even from Hyperion's rising in the east +Until his very downfall in the sea: +And day by day I'll do this heavy task, +So thou destroy Rapine and Murder there. + +TAMORA: +These are my ministers, and come with me. + +TITUS ANDRONICUS: +Are these thy ministers? what are they call'd? + +TAMORA: +Rapine and Murder; therefore called so, +Cause they take vengeance of such kind of men. + +TITUS ANDRONICUS: +Good Lord, how like the empress' sons they are! +And you, the empress! but we worldly men +Have miserable, mad, mistaking eyes. +O sweet Revenge, now do I come to thee; +And, if one arm's embracement will content thee, +I will embrace thee in it by and by. + +TAMORA: +This closing with him fits his lunacy +Whate'er I forge to feed his brain-sick fits, +Do you uphold and maintain in your speeches, +For now he firmly takes me for Revenge; +And, being credulous in this mad thought, +I'll make him send for Lucius his son; +And, whilst I at a banquet hold him sure, +I'll find some cunning practise out of hand, +To scatter and disperse the giddy Goths, +Or, at the least, make them his enemies. +See, here he comes, and I must ply my theme. + +TITUS ANDRONICUS: +Long have I been forlorn, and all for thee: +Welcome, dread Fury, to my woful house: +Rapine and Murder, you are welcome too. +How like the empress and her sons you are! +Well are you fitted, had you but a Moor: +Could not all hell afford you such a devil? +For well I wot the empress never wags +But in her company there is a Moor; +And, would you represent our queen aright, +It were convenient you had such a devil: +But welcome, as you are. What shall we do? + +TAMORA: +What wouldst thou have us do, Andronicus? + +DEMETRIUS: +Show me a murderer, I'll deal with him. + +CHIRON: +Show me a villain that hath done a rape, +And I am sent to be revenged on him. + +TAMORA: +Show me a thousand that have done thee wrong, +And I will be revenged on them all. + +TITUS ANDRONICUS: +Look round about the wicked streets of Rome; +And when thou find'st a man that's like thyself. +Good Murder, stab him; he's a murderer. +Go thou with him; and when it is thy hap +To find another that is like to thee, +Good Rapine, stab him; he's a ravisher. +Go thou with them; and in the emperor's court +There is a queen, attended by a Moor; +Well mayst thou know her by thy own proportion, +for up and down she doth resemble thee: +I pray thee, do on them some violent death; +They have been violent to me and mine. + +TAMORA: +Well hast thou lesson'd us; this shall we do. +But would it please thee, good Andronicus, +To send for Lucius, thy thrice-valiant son, +Who leads towards Rome a band of warlike Goths, +And bid him come and banquet at thy house; +When he is here, even at thy solemn feast, +I will bring in the empress and her sons, +The emperor himself and all thy foes; +And at thy mercy shalt they stoop and kneel, +And on them shalt thou ease thy angry heart. +What says Andronicus to this device? + +TITUS ANDRONICUS: +Marcus, my brother! 'tis sad Titus calls. +Go, gentle Marcus, to thy nephew Lucius; +Thou shalt inquire him out among the Goths: +Bid him repair to me, and bring with him +Some of the chiefest princes of the Goths; +Bid him encamp his soldiers where they are: +Tell him the emperor and the empress too +Feast at my house, and he shall feast with them. +This do thou for my love; and so let him, +As he regards his aged father's life. + +MARCUS ANDRONICUS: +This will I do, and soon return again. + +TAMORA: +Now will I hence about thy business, +And take my ministers along with me. + +TITUS ANDRONICUS: +Nay, nay, let Rape and Murder stay with me; +Or else I'll call my brother back again, +And cleave to no revenge but Lucius. + +TAMORA: + +TITUS ANDRONICUS: + +DEMETRIUS: +Madam, depart at pleasure; leave us here. + +TAMORA: +Farewell, Andronicus: Revenge now goes +To lay a complot to betray thy foes. + +TITUS ANDRONICUS: +I know thou dost; and, sweet Revenge, farewell. + +CHIRON: +Tell us, old man, how shall we be employ'd? + +TITUS ANDRONICUS: +Tut, I have work enough for you to do. +Publius, come hither, Caius, and Valentine! + +PUBLIUS: +What is your will? + +TITUS ANDRONICUS: +Know you these two? + +PUBLIUS: +The empress' sons, I take them, Chiron and Demetrius. + +TITUS ANDRONICUS: +Fie, Publius, fie! thou art too much deceived; +The one is Murder, Rape is the other's name; +And therefore bind them, gentle Publius. +Caius and Valentine, lay hands on them. +Oft have you heard me wish for such an hour, +And now I find it; therefore bind them sure, +And stop their mouths, if they begin to cry. + +CHIRON: +Villains, forbear! we are the empress' sons. + +PUBLIUS: +And therefore do we what we are commanded. +Stop close their mouths, let them not speak a word. +Is he sure bound? look that you bind them fast. + +TITUS ANDRONICUS: +Come, come, Lavinia; look, thy foes are bound. +Sirs, stop their mouths, let them not speak to me; +But let them hear what fearful words I utter. +O villains, Chiron and Demetrius! +Here stands the spring whom you have stain'd with mud, +This goodly summer with your winter mix'd. +You kill'd her husband, and for that vile fault +Two of her brothers were condemn'd to death, +My hand cut off and made a merry jest; +Both her sweet hands, her tongue, and that more dear +Than hands or tongue, her spotless chastity, +Inhuman traitors, you constrain'd and forced. +What would you say, if I should let you speak? +Villains, for shame you could not beg for grace. +Hark, wretches! how I mean to martyr you. +This one hand yet is left to cut your throats, +Whilst that Lavinia 'tween her stumps doth hold +The basin that receives your guilty blood. +You know your mother means to feast with me, +And calls herself Revenge, and thinks me mad: +Hark, villains! I will grind your bones to dust +And with your blood and it I'll make a paste, +And of the paste a coffin I will rear +And make two pasties of your shameful heads, +And bid that strumpet, your unhallow'd dam, +Like to the earth swallow her own increase. +This is the feast that I have bid her to, +And this the banquet she shall surfeit on; +For worse than Philomel you used my daughter, +And worse than Progne I will be revenged: +And now prepare your throats. Lavinia, come, +Receive the blood: and when that they are dead, +Let me go grind their bones to powder small +And with this hateful liquor temper it; +And in that paste let their vile heads be baked. +Come, come, be every one officious +To make this banquet; which I wish may prove +More stern and bloody than the Centaurs' feast. +So, now bring them in, for I'll play the cook, +And see them ready 'gainst their mother comes. + +LUCIUS: +Uncle Marcus, since it is my father's mind +That I repair to Rome, I am content. + +First Goth: +And ours with thine, befall what fortune will. + +LUCIUS: +Good uncle, take you in this barbarous Moor, +This ravenous tiger, this accursed devil; +Let him receive no sustenance, fetter him +Till he be brought unto the empress' face, +For testimony of her foul proceedings: +And see the ambush of our friends be strong; +I fear the emperor means no good to us. + +AARON: +Some devil whisper curses in mine ear, +And prompt me, that my tongue may utter forth +The venomous malice of my swelling heart! + +LUCIUS: +Away, inhuman dog! unhallow'd slave! +Sirs, help our uncle to convey him in. +The trumpets show the emperor is at hand. + +SATURNINUS: +What, hath the firmament more suns than one? + +LUCIUS: +What boots it thee to call thyself a sun? + +MARCUS ANDRONICUS: +Rome's emperor, and nephew, break the parle; +These quarrels must be quietly debated. +The feast is ready, which the careful Titus +Hath ordain'd to an honourable end, +For peace, for love, for league, and good to Rome: +Please you, therefore, draw nigh, and take your places. + +SATURNINUS: +Marcus, we will. + +TITUS ANDRONICUS: +Welcome, my gracious lord; welcome, dread queen; +Welcome, ye warlike Goths; welcome, Lucius; +And welcome, all: although the cheer be poor, +'Twill fill your stomachs; please you eat of it. + +SATURNINUS: +Why art thou thus attired, Andronicus? + +TITUS ANDRONICUS: +Because I would be sure to have all well, +To entertain your highness and your empress. + +TAMORA: +We are beholding to you, good Andronicus. + +TITUS ANDRONICUS: +An if your highness knew my heart, you were. +My lord the emperor, resolve me this: +Was it well done of rash Virginius +To slay his daughter with his own right hand, +Because she was enforced, stain'd, and deflower'd? + +SATURNINUS: +It was, Andronicus. + +TITUS ANDRONICUS: +Your reason, mighty lord? + +SATURNINUS: +Because the girl should not survive her shame, +And by her presence still renew his sorrows. + +TITUS ANDRONICUS: +A reason mighty, strong, and effectual; +A pattern, precedent, and lively warrant, +For me, most wretched, to perform the like. +Die, die, Lavinia, and thy shame with thee; +And, with thy shame, thy father's sorrow die! + +SATURNINUS: +What hast thou done, unnatural and unkind? + +TITUS ANDRONICUS: +Kill'd her, for whom my tears have made me blind. +I am as woful as Virginius was, +And have a thousand times more cause than he +To do this outrage: and it now is done. + +SATURNINUS: +What, was she ravish'd? tell who did the deed. + +TITUS ANDRONICUS: +Will't please you eat? will't please your +highness feed? + +TAMORA: +Why hast thou slain thine only daughter thus? + +TITUS ANDRONICUS: +Not I; 'twas Chiron and Demetrius: +They ravish'd her, and cut away her tongue; +And they, 'twas they, that did her all this wrong. + +SATURNINUS: +Go fetch them hither to us presently. + +TITUS ANDRONICUS: +Why, there they are both, baked in that pie; +Whereof their mother daintily hath fed, +Eating the flesh that she herself hath bred. +'Tis true, 'tis true; witness my knife's sharp point. + +SATURNINUS: +Die, frantic wretch, for this accursed deed! + +LUCIUS: +Can the son's eye behold his father bleed? +There's meed for meed, death for a deadly deed! + +MARCUS ANDRONICUS: +You sad-faced men, people and sons of Rome, +By uproar sever'd, like a flight of fowl +Scatter'd by winds and high tempestuous gusts, +O, let me teach you how to knit again +This scatter'd corn into one mutual sheaf, +These broken limbs again into one body; +Lest Rome herself be bane unto herself, +And she whom mighty kingdoms court'sy to, +Like a forlorn and desperate castaway, +Do shameful execution on herself. +But if my frosty signs and chaps of age, +Grave witnesses of true experience, +Cannot induce you to attend my words, +Speak, Rome's dear friend, as erst our ancestor, +When with his solemn tongue he did discourse +To love-sick Dido's sad attending ear +The story of that baleful burning night +When subtle Greeks surprised King Priam's Troy, +Tell us what Sinon hath bewitch'd our ears, +Or who hath brought the fatal engine in +That gives our Troy, our Rome, the civil wound. +My heart is not compact of flint nor steel; +Nor can I utter all our bitter grief, +But floods of tears will drown my oratory, +And break my utterance, even in the time +When it should move you to attend me most, +Lending your kind commiseration. +Here is a captain, let him tell the tale; +Your hearts will throb and weep to hear him speak. + +LUCIUS: +Then, noble auditory, be it known to you, +That cursed Chiron and Demetrius +Were they that murdered our emperor's brother; +And they it were that ravished our sister: +For their fell faults our brothers were beheaded; +Our father's tears despised, and basely cozen'd +Of that true hand that fought Rome's quarrel out, +And sent her enemies unto the grave. +Lastly, myself unkindly banished, +The gates shut on me, and turn'd weeping out, +To beg relief among Rome's enemies: +Who drown'd their enmity in my true tears. +And oped their arms to embrace me as a friend. +I am the turned forth, be it known to you, +That have preserved her welfare in my blood; +And from her bosom took the enemy's point, +Sheathing the steel in my adventurous body. +Alas, you know I am no vaunter, I; +My scars can witness, dumb although they are, +That my report is just and full of truth. +But, soft! methinks I do digress too much, +Citing my worthless praise: O, pardon me; +For when no friends are by, men praise themselves. + +MARCUS ANDRONICUS: +Now is my turn to speak. Behold this child: +Of this was Tamora delivered; +The issue of an irreligious Moor, +Chief architect and plotter of these woes: +The villain is alive in Titus' house, +And as he is, to witness this is true. +Now judge what cause had Titus to revenge +These wrongs, unspeakable, past patience, +Or more than any living man could bear. +Now you have heard the truth, what say you, Romans? +Have we done aught amiss,--show us wherein, +And, from the place where you behold us now, +The poor remainder of Andronici +Will, hand in hand, all headlong cast us down. +And on the ragged stones beat forth our brains, +And make a mutual closure of our house. +Speak, Romans, speak; and if you say we shall, +Lo, hand in hand, Lucius and I will fall. + +AEMILIUS: +Come, come, thou reverend man of Rome, +And bring our emperor gently in thy hand, +Lucius our emperor; for well I know +The common voice do cry it shall be so. + +All: +Lucius, all hail, Rome's royal emperor! + +MARCUS ANDRONICUS: +Go, go into old Titus' sorrowful house, +And hither hale that misbelieving Moor, +To be adjudged some direful slaughtering death, +As punishment for his most wicked life. + +All: +Lucius, all hail, Rome's gracious governor! + +LUCIUS: +Thanks, gentle Romans: may I govern so, +To heal Rome's harms, and wipe away her woe! +But, gentle people, give me aim awhile, +For nature puts me to a heavy task: +Stand all aloof: but, uncle, draw you near, +To shed obsequious tears upon this trunk. +O, take this warm kiss on thy pale cold lips, +These sorrowful drops upon thy blood-stain'd face, +The last true duties of thy noble son! + +MARCUS ANDRONICUS: +Tear for tear, and loving kiss for kiss, +Thy brother Marcus tenders on thy lips: +O were the sum of these that I should pay +Countless and infinite, yet would I pay them! + +LUCIUS: +Come hither, boy; come, come, and learn of us +To melt in showers: thy grandsire loved thee well: +Many a time he danced thee on his knee, +Sung thee asleep, his loving breast thy pillow: +Many a matter hath he told to thee, +Meet and agreeing with thine infancy; +In that respect, then, like a loving child, +Shed yet some small drops from thy tender spring, +Because kind nature doth require it so: +Friends should associate friends in grief and woe: +Bid him farewell; commit him to the grave; +Do him that kindness, and take leave of him. + +Young LUCIUS: +O grandsire, grandsire! even with all my heart +Would I were dead, so you did live again! +O Lord, I cannot speak to him for weeping; +My tears will choke me, if I ope my mouth. + +AEMILIUS: +You sad Andronici, have done with woes: +Give sentence on this execrable wretch, +That hath been breeder of these dire events. + +LUCIUS: +Set him breast-deep in earth, and famish him; +There let him stand, and rave, and cry for food; +If any one relieves or pities him, +For the offence he dies. This is our doom: +Some stay to see him fasten'd in the earth. + +AARON: +O, why should wrath be mute, and fury dumb? +I am no baby, I, that with base prayers +I should repent the evils I have done: +Ten thousand worse than ever yet I did +Would I perform, if I might have my will; +If one good deed in all my life I did, +I do repent it from my very soul. + +LUCIUS: +Some loving friends convey the emperor hence, +And give him burial in his father's grave: +My father and Lavinia shall forthwith +Be closed in our household's monument. +As for that heinous tiger, Tamora, +No funeral rite, nor man m mourning weeds, +No mournful bell shall ring her burial; +But throw her forth to beasts and birds of prey: +Her life was beast-like, and devoid of pity; +And, being so, shall have like want of pity. +See justice done on Aaron, that damn'd Moor, +By whom our heavy haps had their beginning: +Then, afterwards, to order well the state, +That like events may ne'er it ruinate. + +BEDFORD: +Hung be the heavens with black, yield day to night! +Comets, importing change of times and states, +Brandish your crystal tresses in the sky, +And with them scourge the bad revolting stars +That have consented unto Henry's death! +King Henry the Fifth, too famous to live long! +England ne'er lost a king of so much worth. + +GLOUCESTER: +England ne'er had a king until his time. +Virtue he had, deserving to command: +His brandish'd sword did blind men with his beams: +His arms spread wider than a dragon's wings; +His sparking eyes, replete with wrathful fire, +More dazzled and drove back his enemies +Than mid-day sun fierce bent against their faces. +What should I say? his deeds exceed all speech: +He ne'er lift up his hand but conquered. + +EXETER: +We mourn in black: why mourn we not in blood? +Henry is dead and never shall revive: +Upon a wooden coffin we attend, +And death's dishonourable victory +We with our stately presence glorify, +Like captives bound to a triumphant car. +What! shall we curse the planets of mishap +That plotted thus our glory's overthrow? +Or shall we think the subtle-witted French +Conjurers and sorcerers, that afraid of him +By magic verses have contrived his end? + +BISHOP OF WINCHESTER: +He was a king bless'd of the King of kings. +Unto the French the dreadful judgement-day +So dreadful will not be as was his sight. +The battles of the Lord of hosts he fought: +The church's prayers made him so prosperous. + +GLOUCESTER: +The church! where is it? Had not churchmen pray'd, +His thread of life had not so soon decay'd: +None do you like but an effeminate prince, +Whom, like a school-boy, you may over-awe. + +BISHOP OF WINCHESTER: +Gloucester, whate'er we like, thou art protector +And lookest to command the prince and realm. +Thy wife is proud; she holdeth thee in awe, +More than God or religious churchmen may. + +GLOUCESTER: +Name not religion, for thou lovest the flesh, +And ne'er throughout the year to church thou go'st +Except it be to pray against thy foes. + +BEDFORD: +Cease, cease these jars and rest your minds in peace: +Let's to the altar: heralds, wait on us: +Instead of gold, we'll offer up our arms: +Since arms avail not now that Henry's dead. +Posterity, await for wretched years, +When at their mothers' moist eyes babes shall suck, +Our isle be made a nourish of salt tears, +And none but women left to wail the dead. +Henry the Fifth, thy ghost I invocate: +Prosper this realm, keep it from civil broils, +Combat with adverse planets in the heavens! +A far more glorious star thy soul will make +Than Julius Caesar or bright-- + +Messenger: +My honourable lords, health to you all! +Sad tidings bring I to you out of France, +Of loss, of slaughter and discomfiture: +Guienne, Champagne, Rheims, Orleans, +Paris, Guysors, Poictiers, are all quite lost. + +BEDFORD: +What say'st thou, man, before dead Henry's corse? +Speak softly, or the loss of those great towns +Will make him burst his lead and rise from death. + +GLOUCESTER: +Is Paris lost? is Rouen yielded up? +If Henry were recall'd to life again, +These news would cause him once more yield the ghost. + +EXETER: +How were they lost? what treachery was used? + +Messenger: +No treachery; but want of men and money. +Amongst the soldiers this is muttered, +That here you maintain several factions, +And whilst a field should be dispatch'd and fought, +You are disputing of your generals: +One would have lingering wars with little cost; +Another would fly swift, but wanteth wings; +A third thinks, without expense at all, +By guileful fair words peace may be obtain'd. +Awake, awake, English nobility! +Let not sloth dim your horrors new-begot: +Cropp'd are the flower-de-luces in your arms; +Of England's coat one half is cut away. + +EXETER: +Were our tears wanting to this funeral, +These tidings would call forth their flowing tides. + +BEDFORD: +Me they concern; Regent I am of France. +Give me my steeled coat. I'll fight for France. +Away with these disgraceful wailing robes! +Wounds will I lend the French instead of eyes, +To weep their intermissive miseries. + +Messenger: +Lords, view these letters full of bad mischance. +France is revolted from the English quite, +Except some petty towns of no import: +The Dauphin Charles is crowned king of Rheims; +The Bastard of Orleans with him is join'd; +Reignier, Duke of Anjou, doth take his part; +The Duke of Alencon flieth to his side. + +EXETER: +The Dauphin crowned king! all fly to him! +O, whither shall we fly from this reproach? + +GLOUCESTER: +We will not fly, but to our enemies' throats. +Bedford, if thou be slack, I'll fight it out. + +BEDFORD: +Gloucester, why doubt'st thou of my forwardness? +An army have I muster'd in my thoughts, +Wherewith already France is overrun. + +Messenger: +My gracious lords, to add to your laments, +Wherewith you now bedew King Henry's hearse, +I must inform you of a dismal fight +Betwixt the stout Lord Talbot and the French. + +BISHOP OF WINCHESTER: +What! wherein Talbot overcame? is't so? + +Messenger: +O, no; wherein Lord Talbot was o'erthrown: +The circumstance I'll tell you more at large. +The tenth of August last this dreadful lord, +Retiring from the siege of Orleans, +Having full scarce six thousand in his troop. +By three and twenty thousand of the French +Was round encompassed and set upon. +No leisure had he to enrank his men; +He wanted pikes to set before his archers; +Instead whereof sharp stakes pluck'd out of hedges +They pitched in the ground confusedly, +To keep the horsemen off from breaking in. +More than three hours the fight continued; +Where valiant Talbot above human thought +Enacted wonders with his sword and lance: +Hundreds he sent to hell, and none durst stand him; +Here, there, and every where, enraged he flew: +The French exclaim'd, the devil was in arms; +All the whole army stood agazed on him: +His soldiers spying his undaunted spirit +A Talbot! a Talbot! cried out amain +And rush'd into the bowels of the battle. +Here had the conquest fully been seal'd up, +If Sir John Fastolfe had not play'd the coward: +He, being in the vaward, placed behind +With purpose to relieve and follow them, +Cowardly fled, not having struck one stroke. +Hence grew the general wreck and massacre; +Enclosed were they with their enemies: +A base Walloon, to win the Dauphin's grace, +Thrust Talbot with a spear into the back, +Whom all France with their chief assembled strength +Durst not presume to look once in the face. + +BEDFORD: +Is Talbot slain? then I will slay myself, +For living idly here in pomp and ease, +Whilst such a worthy leader, wanting aid, +Unto his dastard foemen is betray'd. + +Messenger: +O no, he lives; but is took prisoner, +And Lord Scales with him and Lord Hungerford: +Most of the rest slaughter'd or took likewise. + +BEDFORD: +His ransom there is none but I shall pay: +I'll hale the Dauphin headlong from his throne: +His crown shall be the ransom of my friend; +Four of their lords I'll change for one of ours. +Farewell, my masters; to my task will I; +Bonfires in France forthwith I am to make, +To keep our great Saint George's feast withal: +Ten thousand soldiers with me I will take, +Whose bloody deeds shall make all Europe quake. + +Messenger: +So you had need; for Orleans is besieged; +The English army is grown weak and faint: +The Earl of Salisbury craveth supply, +And hardly keeps his men from mutiny, +Since they, so few, watch such a multitude. + +EXETER: +Remember, lords, your oaths to Henry sworn, +Either to quell the Dauphin utterly, +Or bring him in obedience to your yoke. + +BEDFORD: +I do remember it; and here take my leave, +To go about my preparation. + +GLOUCESTER: +I'll to the Tower with all the haste I can, +To view the artillery and munition; +And then I will proclaim young Henry king. + +EXETER: +To Eltham will I, where the young king is, +Being ordain'd his special governor, +And for his safety there I'll best devise. + +BISHOP OF WINCHESTER: +Each hath his place and function to attend: +I am left out; for me nothing remains. +But long I will not be Jack out of office: +The king from Eltham I intend to steal +And sit at chiefest stern of public weal. + +CHARLES: +Mars his true moving, even as in the heavens +So in the earth, to this day is not known: +Late did he shine upon the English side; +Now we are victors; upon us he smiles. +What towns of any moment but we have? +At pleasure here we lie near Orleans; +Otherwhiles the famish'd English, like pale ghosts, +Faintly besiege us one hour in a month. + +ALENCON: +They want their porridge and their fat bull-beeves: +Either they must be dieted like mules +And have their provender tied to their mouths +Or piteous they will look, like drowned mice. + +REIGNIER: +Let's raise the siege: why live we idly here? +Talbot is taken, whom we wont to fear: +Remaineth none but mad-brain'd Salisbury; +And he may well in fretting spend his gall, +Nor men nor money hath he to make war. + +CHARLES: +Sound, sound alarum! we will rush on them. +Now for the honour of the forlorn French! +Him I forgive my death that killeth me +When he sees me go back one foot or fly. + +CHARLES: +Who ever saw the like? what men have I! +Dogs! cowards! dastards! I would ne'er have fled, +But that they left me 'midst my enemies. + +REIGNIER: +Salisbury is a desperate homicide; +He fighteth as one weary of his life. +The other lords, like lions wanting food, +Do rush upon us as their hungry prey. + +ALENCON: +Froissart, a countryman of ours, records, +England all Olivers and Rowlands bred, +During the time Edward the Third did reign. +More truly now may this be verified; +For none but Samsons and Goliases +It sendeth forth to skirmish. One to ten! +Lean, raw-boned rascals! who would e'er suppose +They had such courage and audacity? + +CHARLES: +Let's leave this town; for they are hare-brain'd slaves, +And hunger will enforce them to be more eager: +Of old I know them; rather with their teeth +The walls they'll tear down than forsake the siege. + +REIGNIER: +I think, by some odd gimmors or device +Their arms are set like clocks, stiff to strike on; +Else ne'er could they hold out so as they do. +By my consent, we'll even let them alone. + +ALENCON: +Be it so. + +BASTARD OF ORLEANS: +Where's the Prince Dauphin? I have news for him. + +CHARLES: +Bastard of Orleans, thrice welcome to us. + +BASTARD OF ORLEANS: +Methinks your looks are sad, your cheer appall'd: +Hath the late overthrow wrought this offence? +Be not dismay'd, for succor is at hand: +A holy maid hither with me I bring, +Which by a vision sent to her from heaven +Ordained is to raise this tedious siege +And drive the English forth the bounds of France. +The spirit of deep prophecy she hath, +Exceeding the nine sibyls of old Rome: +What's past and what's to come she can descry. +Speak, shall I call her in? Believe my words, +For they are certain and unfallible. + +CHARLES: +Go, call her in. +But first, to try her skill, +Reignier, stand thou as Dauphin in my place: +Question her proudly; let thy looks be stern: +By this means shall we sound what skill she hath. + +REIGNIER: +Fair maid, is't thou wilt do these wondrous feats? + +JOAN LA PUCELLE: +Reignier, is't thou that thinkest to beguile me? +Where is the Dauphin? Come, come from behind; +I know thee well, though never seen before. +Be not amazed, there's nothing hid from me: +In private will I talk with thee apart. +Stand back, you lords, and give us leave awhile. + +REIGNIER: +She takes upon her bravely at first dash. + +JOAN LA PUCELLE: +Dauphin, I am by birth a shepherd's daughter, +My wit untrain'd in any kind of art. +Heaven and our Lady gracious hath it pleased +To shine on my contemptible estate: +Lo, whilst I waited on my tender lambs, +And to sun's parching heat display'd my cheeks, +God's mother deigned to appear to me +And in a vision full of majesty +Will'd me to leave my base vocation +And free my country from calamity: +Her aid she promised and assured success: +In complete glory she reveal'd herself; +And, whereas I was black and swart before, +With those clear rays which she infused on me +That beauty am I bless'd with which you see. +Ask me what question thou canst possible, +And I will answer unpremeditated: +My courage try by combat, if thou darest, +And thou shalt find that I exceed my sex. +Resolve on this, thou shalt be fortunate, +If thou receive me for thy warlike mate. + +CHARLES: +Thou hast astonish'd me with thy high terms: +Only this proof I'll of thy valour make, +In single combat thou shalt buckle with me, +And if thou vanquishest, thy words are true; +Otherwise I renounce all confidence. + +JOAN LA PUCELLE: +I am prepared: here is my keen-edged sword, +Deck'd with five flower-de-luces on each side; +The which at Touraine, in Saint Katharine's +churchyard, +Out of a great deal of old iron I chose forth. + +CHARLES: +Then come, o' God's name; I fear no woman. + +JOAN LA PUCELLE: +And while I live, I'll ne'er fly from a man. + +CHARLES: +Stay, stay thy hands! thou art an Amazon +And fightest with the sword of Deborah. + +JOAN LA PUCELLE: +Christ's mother helps me, else I were too weak. + +CHARLES: +Whoe'er helps thee, 'tis thou that must help me: +Impatiently I burn with thy desire; +My heart and hands thou hast at once subdued. +Excellent Pucelle, if thy name be so, +Let me thy servant and not sovereign be: +'Tis the French Dauphin sueth to thee thus. + +JOAN LA PUCELLE: +I must not yield to any rites of love, +For my profession's sacred from above: +When I have chased all thy foes from hence, +Then will I think upon a recompense. + +CHARLES: +Meantime look gracious on thy prostrate thrall. + +REIGNIER: +My lord, methinks, is very long in talk. + +ALENCON: +Doubtless he shrives this woman to her smock; +Else ne'er could he so long protract his speech. + +REIGNIER: +Shall we disturb him, since he keeps no mean? + +ALENCON: +He may mean more than we poor men do know: +These women are shrewd tempters with their tongues. + +REIGNIER: +My lord, where are you? what devise you on? +Shall we give over Orleans, or no? + +JOAN LA PUCELLE: +Why, no, I say, distrustful recreants! +Fight till the last gasp; I will be your guard. + +CHARLES: +What she says I'll confirm: we'll fight it out. + +JOAN LA PUCELLE: +Assign'd am I to be the English scourge. +This night the siege assuredly I'll raise: +Expect Saint Martin's summer, halcyon days, +Since I have entered into these wars. +Glory is like a circle in the water, +Which never ceaseth to enlarge itself +Till by broad spreading it disperse to nought. +With Henry's death the English circle ends; +Dispersed are the glories it included. +Now am I like that proud insulting ship +Which Caesar and his fortune bare at once. + +CHARLES: +Was Mahomet inspired with a dove? +Thou with an eagle art inspired then. +Helen, the mother of great Constantine, +Nor yet Saint Philip's daughters, were like thee. +Bright star of Venus, fall'n down on the earth, +How may I reverently worship thee enough? + +ALENCON: +Leave off delays, and let us raise the siege. + +REIGNIER: +Woman, do what thou canst to save our honours; +Drive them from Orleans and be immortalized. + +CHARLES: +Presently we'll try: come, let's away about it: +No prophet will I trust, if she prove false. + +GLOUCESTER: +I am come to survey the Tower this day: +Since Henry's death, I fear, there is conveyance. +Where be these warders, that they wait not here? +Open the gates; 'tis Gloucester that calls. + +First Warder: + +First Serving-Man: +It is the noble Duke of Gloucester. + +Second Warder: + +First Serving-Man: +Villains, answer you so the lord protector? + +First Warder: + +GLOUCESTER: +Who willed you? or whose will stands but mine? +There's none protector of the realm but I. +Break up the gates, I'll be your warrantize. +Shall I be flouted thus by dunghill grooms? + +WOODVILE: +What noise is this? what traitors have we here? + +GLOUCESTER: +Lieutenant, is it you whose voice I hear? +Open the gates; here's Gloucester that would enter. + +WOODVILE: +Have patience, noble duke; I may not open; +The Cardinal of Winchester forbids: +From him I have express commandment +That thou nor none of thine shall be let in. + +GLOUCESTER: +Faint-hearted Woodvile, prizest him 'fore me? +Arrogant Winchester, that haughty prelate, +Whom Henry, our late sovereign, ne'er could brook? +Thou art no friend to God or to the king: +Open the gates, or I'll shut thee out shortly. + +Serving-Men: +Open the gates unto the lord protector, +Or we'll burst them open, if that you come not quickly. + +BISHOP OF WINCHESTER: +How now, ambitious Humphry! what means this? + +GLOUCESTER: +Peel'd priest, dost thou command me to be shut out? + +BISHOP OF WINCHESTER: +I do, thou most usurping proditor, +And not protector, of the king or realm. + +GLOUCESTER: +Stand back, thou manifest conspirator, +Thou that contrivedst to murder our dead lord; +Thou that givest whores indulgences to sin: +I'll canvass thee in thy broad cardinal's hat, +If thou proceed in this thy insolence. + +BISHOP OF WINCHESTER: +Nay, stand thou back, I will not budge a foot: +This be Damascus, be thou cursed Cain, +To slay thy brother Abel, if thou wilt. + +GLOUCESTER: +I will not slay thee, but I'll drive thee back: +Thy scarlet robes as a child's bearing-cloth +I'll use to carry thee out of this place. + +BISHOP OF WINCHESTER: +Do what thou darest; I beard thee to thy face. + +GLOUCESTER: +What! am I dared and bearded to my face? +Draw, men, for all this privileged place; +Blue coats to tawny coats. Priest, beware your beard, +I mean to tug it and to cuff you soundly: +Under my feet I stamp thy cardinal's hat: +In spite of pope or dignities of church, +Here by the cheeks I'll drag thee up and down. + +BISHOP OF WINCHESTER: +Gloucester, thou wilt answer this before the pope. + +GLOUCESTER: +Winchester goose, I cry, a rope! a rope! +Now beat them hence; why do you let them stay? +Thee I'll chase hence, thou wolf in sheep's array. +Out, tawny coats! out, scarlet hypocrite! + +Mayor: +Fie, lords! that you, being supreme magistrates, +Thus contumeliously should break the peace! + +GLOUCESTER: +Peace, mayor! thou know'st little of my wrongs: +Here's Beaufort, that regards nor God nor king, +Hath here distrain'd the Tower to his use. + +BISHOP OF WINCHESTER: +Here's Gloucester, a foe to citizens, +One that still motions war and never peace, +O'ercharging your free purses with large fines, +That seeks to overthrow religion, +Because he is protector of the realm, +And would have armour here out of the Tower, +To crown himself king and suppress the prince. + +GLOUCESTER: +I will not answer thee with words, but blows. + +Mayor: +Naught rests for me in this tumultuous strife +But to make open proclamation: +Come, officer; as loud as e'er thou canst, +Cry. + +Officer: +All manner of men assembled here in arms this day +against God's peace and the king's, we charge and +command you, in his highness' name, to repair to +your several dwelling-places; and not to wear, +handle, or use any sword, weapon, or dagger, +henceforward, upon pain of death. + +GLOUCESTER: +Cardinal, I'll be no breaker of the law: +But we shall meet, and break our minds at large. + +BISHOP OF WINCHESTER: +Gloucester, we will meet; to thy cost, be sure: +Thy heart-blood I will have for this day's work. + +Mayor: +I'll call for clubs, if you will not away. +This cardinal's more haughty than the devil. + +GLOUCESTER: +Mayor, farewell: thou dost but what thou mayst. + +BISHOP OF WINCHESTER: +Abominable Gloucester, guard thy head; +For I intend to have it ere long. + +Mayor: +See the coast clear'd, and then we will depart. +Good God, these nobles should such stomachs bear! +I myself fight not once in forty year. + +Master-Gunner: +Sirrah, thou know'st how Orleans is besieged, +And how the English have the suburbs won. + +Boy: +Father, I know; and oft have shot at them, +Howe'er unfortunate I miss'd my aim. + +Master-Gunner: +But now thou shalt not. Be thou ruled by me: +Chief master-gunner am I of this town; +Something I must do to procure me grace. +The prince's espials have informed me +How the English, in the suburbs close intrench'd, +Wont, through a secret grate of iron bars +In yonder tower, to overpeer the city, +And thence discover how with most advantage +They may vex us with shot, or with assault. +To intercept this inconvenience, +A piece of ordnance 'gainst it I have placed; +And even these three days have I watch'd, +If I could see them. +Now do thou watch, for I can stay no longer. +If thou spy'st any, run and bring me word; +And thou shalt find me at the governor's. + +Boy: +Father, I warrant you; take you no care; +I'll never trouble you, if I may spy them. + +SALISBURY: +Talbot, my life, my joy, again return'd! +How wert thou handled being prisoner? +Or by what means got'st thou to be released? +Discourse, I prithee, on this turret's top. + +TALBOT: +The Duke of Bedford had a prisoner +Call'd the brave Lord Ponton de Santrailles; +For him was I exchanged and ransomed. +But with a baser man of arms by far +Once in contempt they would have barter'd me: +Which I, disdaining, scorn'd; and craved death, +Rather than I would be so vile esteem'd. +In fine, redeem'd I was as I desired. +But, O! the treacherous Fastolfe wounds my heart, +Whom with my bare fists I would execute, +If I now had him brought into my power. + +SALISBURY: +Yet tell'st thou not how thou wert entertain'd. + +TALBOT: +With scoffs and scorns and contumelious taunts. +In open market-place produced they me, +To be a public spectacle to all: +Here, said they, is the terror of the French, +The scarecrow that affrights our children so. +Then broke I from the officers that led me, +And with my nails digg'd stones out of the ground, +To hurl at the beholders of my shame: +My grisly countenance made others fly; +None durst come near for fear of sudden death. +In iron walls they deem'd me not secure; +So great fear of my name 'mongst them was spread, +That they supposed I could rend bars of steel, +And spurn in pieces posts of adamant: +Wherefore a guard of chosen shot I had, +That walked about me every minute-while; +And if I did but stir out of my bed, +Ready they were to shoot me to the heart. + +SALISBURY: +I grieve to hear what torments you endured, +But we will be revenged sufficiently +Now it is supper-time in Orleans: +Here, through this grate, I count each one +and view the Frenchmen how they fortify: +Let us look in; the sight will much delight thee. +Sir Thomas Gargrave, and Sir William Glansdale, +Let me have your express opinions +Where is best place to make our battery next. + +GARGRAVE: +I think, at the north gate; for there stand lords. + +GLANSDALE: +And I, here, at the bulwark of the bridge. + +TALBOT: +For aught I see, this city must be famish'd, +Or with light skirmishes enfeebled. + +SALISBURY: +O Lord, have mercy on us, wretched sinners! + +GARGRAVE: +O Lord, have mercy on me, woful man! + +TALBOT: +What chance is this that suddenly hath cross'd us? +Speak, Salisbury; at least, if thou canst speak: +How farest thou, mirror of all martial men? +One of thy eyes and thy cheek's side struck off! +Accursed tower! accursed fatal hand +That hath contrived this woful tragedy! +In thirteen battles Salisbury o'ercame; +Henry the Fifth he first train'd to the wars; +Whilst any trump did sound, or drum struck up, +His sword did ne'er leave striking in the field. +Yet livest thou, Salisbury? though thy speech doth fail, +One eye thou hast, to look to heaven for grace: +The sun with one eye vieweth all the world. +Heaven, be thou gracious to none alive, +If Salisbury wants mercy at thy hands! +Bear hence his body; I will help to bury it. +Sir Thomas Gargrave, hast thou any life? +Speak unto Talbot; nay, look up to him. +Salisbury, cheer thy spirit with this comfort; +Thou shalt not die whiles-- +He beckons with his hand and smiles on me. +As who should say 'When I am dead and gone, +Remember to avenge me on the French.' +Plantagenet, I will; and like thee, Nero, +Play on the lute, beholding the towns burn: +Wretched shall France be only in my name. +What stir is this? what tumult's in the heavens? +Whence cometh this alarum and the noise? + +Messenger: +My lord, my lord, the French have gathered head: +The Dauphin, with one Joan la Pucelle join'd, +A holy prophetess new risen up, +Is come with a great power to raise the siege. + +TALBOT: +Hear, hear how dying Salisbury doth groan! +It irks his heart he cannot be revenged. +Frenchmen, I'll be a Salisbury to you: +Pucelle or puzzel, dolphin or dogfish, +Your hearts I'll stamp out with my horse's heels, +And make a quagmire of your mingled brains. +Convey me Salisbury into his tent, +And then we'll try what these dastard Frenchmen dare. + +TALBOT: +Where is my strength, my valour, and my force? +Our English troops retire, I cannot stay them: +A woman clad in armour chaseth them. +Here, here she comes. I'll have a bout with thee; +Devil or devil's dam, I'll conjure thee: +Blood will I draw on thee, thou art a witch, +And straightway give thy soul to him thou servest. + +JOAN LA PUCELLE: +Come, come, 'tis only I that must disgrace thee. + +TALBOT: +Heavens, can you suffer hell so to prevail? +My breast I'll burst with straining of my courage +And from my shoulders crack my arms asunder. +But I will chastise this high-minded strumpet. + +JOAN LA PUCELLE: +Talbot, farewell; thy hour is not yet come: +I must go victual Orleans forthwith. +O'ertake me, if thou canst; I scorn thy strength. +Go, go, cheer up thy hungry-starved men; +Help Salisbury to make his testament: +This day is ours, as many more shall be. + +TALBOT: +My thoughts are whirled like a potter's wheel; +I know not where I am, nor what I do; +A witch, by fear, not force, like Hannibal, +Drives back our troops and conquers as she lists: +So bees with smoke and doves with noisome stench +Are from their hives and houses driven away. +They call'd us for our fierceness English dogs; +Now, like to whelps, we crying run away. +Hark, countrymen! either renew the fight, +Or tear the lions out of England's coat; +Renounce your soil, give sheep in lions' stead: +Sheep run not half so treacherous from the wolf, +Or horse or oxen from the leopard, +As you fly from your oft-subdued slaves. +It will not be: retire into your trenches: +You all consented unto Salisbury's death, +For none would strike a stroke in his revenge. +Pucelle is enter'd into Orleans, +In spite of us or aught that we could do. +O, would I were to die with Salisbury! +The shame hereof will make me hide my head. + +JOAN LA PUCELLE: +Advance our waving colours on the walls; +Rescued is Orleans from the English +Thus Joan la Pucelle hath perform'd her word. + +CHARLES: +Divinest creature, Astraea's daughter, +How shall I honour thee for this success? +Thy promises are like Adonis' gardens +That one day bloom'd and fruitful were the next. +France, triumph in thy glorious prophetess! +Recover'd is the town of Orleans: +More blessed hap did ne'er befall our state. + +REIGNIER: +Why ring not out the bells aloud throughout the town? +Dauphin, command the citizens make bonfires +And feast and banquet in the open streets, +To celebrate the joy that God hath given us. + +ALENCON: +All France will be replete with mirth and joy, +When they shall hear how we have play'd the men. + +CHARLES: +'Tis Joan, not we, by whom the day is won; +For which I will divide my crown with her, +And all the priests and friars in my realm +Shall in procession sing her endless praise. +A statelier pyramis to her I'll rear +Than Rhodope's or Memphis' ever was: +In memory of her when she is dead, +Her ashes, in an urn more precious +Than the rich-jewel'd of Darius, +Transported shall be at high festivals +Before the kings and queens of France. +No longer on Saint Denis will we cry, +But Joan la Pucelle shall be France's saint. +Come in, and let us banquet royally, +After this golden day of victory. + +Sergeant: +Sirs, take your places and be vigilant: +If any noise or soldier you perceive +Near to the walls, by some apparent sign +Let us have knowledge at the court of guard. + +First Sentinel: +Sergeant, you shall. +Thus are poor servitors, +When others sleep upon their quiet beds, +Constrain'd to watch in darkness, rain and cold. + +TALBOT: +Lord Regent, and redoubted Burgundy, +By whose approach the regions of Artois, +Wallon and Picardy are friends to us, +This happy night the Frenchmen are secure, +Having all day caroused and banqueted: +Embrace we then this opportunity +As fitting best to quittance their deceit +Contrived by art and baleful sorcery. + +BEDFORD: +Coward of France! how much he wrongs his fame, +Despairing of his own arm's fortitude, +To join with witches and the help of hell! + +BURGUNDY: +Traitors have never other company. +But what's that Pucelle whom they term so pure? + +TALBOT: +A maid, they say. + +BEDFORD: +A maid! and be so martial! + +BURGUNDY: +Pray God she prove not masculine ere long, +If underneath the standard of the French +She carry armour as she hath begun. + +TALBOT: +Well, let them practise and converse with spirits: +God is our fortress, in whose conquering name +Let us resolve to scale their flinty bulwarks. + +BEDFORD: +Ascend, brave Talbot; we will follow thee. + +TALBOT: +Not all together: better far, I guess, +That we do make our entrance several ways; +That, if it chance the one of us do fail, +The other yet may rise against their force. + +BEDFORD: +Agreed: I'll to yond corner. + +BURGUNDY: +And I to this. + +TALBOT: +And here will Talbot mount, or make his grave. +Now, Salisbury, for thee, and for the right +Of English Henry, shall this night appear +How much in duty I am bound to both. + +Sentinels: +Arm! arm! the enemy doth make assault! + +ALENCON: +How now, my lords! what, all unready so? + +BASTARD OF ORLEANS: +Unready! ay, and glad we 'scaped so well. + +REIGNIER: +'Twas time, I trow, to wake and leave our beds, +Hearing alarums at our chamber-doors. + +ALENCON: +Of all exploits since first I follow'd arms, +Ne'er heard I of a warlike enterprise +More venturous or desperate than this. + +BASTARD OF ORLEANS: +I think this Talbot be a fiend of hell. + +REIGNIER: +If not of hell, the heavens, sure, favour him. + +ALENCON: +Here cometh Charles: I marvel how he sped. + +BASTARD OF ORLEANS: +Tut, holy Joan was his defensive guard. + +CHARLES: +Is this thy cunning, thou deceitful dame? +Didst thou at first, to flatter us withal, +Make us partakers of a little gain, +That now our loss might be ten times so much? + +JOAN LA PUCELLE: +Wherefore is Charles impatient with his friend! +At all times will you have my power alike? +Sleeping or waking must I still prevail, +Or will you blame and lay the fault on me? +Improvident soldiers! had your watch been good, +This sudden mischief never could have fall'n. + +CHARLES: +Duke of Alencon, this was your default, +That, being captain of the watch to-night, +Did look no better to that weighty charge. + +ALENCON: +Had all your quarters been as safely kept +As that whereof I had the government, +We had not been thus shamefully surprised. + +BASTARD OF ORLEANS: +Mine was secure. + +REIGNIER: +And so was mine, my lord. + +CHARLES: +And, for myself, most part of all this night, +Within her quarter and mine own precinct +I was employ'd in passing to and fro, +About relieving of the sentinels: +Then how or which way should they first break in? + +JOAN LA PUCELLE: +Question, my lords, no further of the case, +How or which way: 'tis sure they found some place +But weakly guarded, where the breach was made. +And now there rests no other shift but this; +To gather our soldiers, scatter'd and dispersed, +And lay new platforms to endamage them. + +Soldier: +I'll be so bold to take what they have left. +The cry of Talbot serves me for a sword; +For I have loaden me with many spoils, +Using no other weapon but his name. + +BEDFORD: +The day begins to break, and night is fled, +Whose pitchy mantle over-veil'd the earth. +Here sound retreat, and cease our hot pursuit. + +TALBOT: +Bring forth the body of old Salisbury, +And here advance it in the market-place, +The middle centre of this cursed town. +Now have I paid my vow unto his soul; +For every drop of blood was drawn from him, +There hath at least five Frenchmen died tonight. +And that hereafter ages may behold +What ruin happen'd in revenge of him, +Within their chiefest temple I'll erect +A tomb, wherein his corpse shall be interr'd: +Upon the which, that every one may read, +Shall be engraved the sack of Orleans, +The treacherous manner of his mournful death +And what a terror he had been to France. +But, lords, in all our bloody massacre, +I muse we met not with the Dauphin's grace, +His new-come champion, virtuous Joan of Arc, +Nor any of his false confederates. + +BEDFORD: +'Tis thought, Lord Talbot, when the fight began, +Roused on the sudden from their drowsy beds, +They did amongst the troops of armed men +Leap o'er the walls for refuge in the field. + +BURGUNDY: +Myself, as far as I could well discern +For smoke and dusky vapours of the night, +Am sure I scared the Dauphin and his trull, +When arm in arm they both came swiftly running, +Like to a pair of loving turtle-doves +That could not live asunder day or night. +After that things are set in order here, +We'll follow them with all the power we have. + +Messenger: +All hail, my lords! which of this princely train +Call ye the warlike Talbot, for his acts +So much applauded through the realm of France? + +TALBOT: +Here is the Talbot: who would speak with him? + +Messenger: +The virtuous lady, Countess of Auvergne, +With modesty admiring thy renown, +By me entreats, great lord, thou wouldst vouchsafe +To visit her poor castle where she lies, +That she may boast she hath beheld the man +Whose glory fills the world with loud report. + +BURGUNDY: +Is it even so? Nay, then, I see our wars +Will turn unto a peaceful comic sport, +When ladies crave to be encounter'd with. +You may not, my lord, despise her gentle suit. + +TALBOT: +Ne'er trust me then; for when a world of men +Could not prevail with all their oratory, +Yet hath a woman's kindness over-ruled: +And therefore tell her I return great thanks, +And in submission will attend on her. +Will not your honours bear me company? + +BEDFORD: +No, truly; it is more than manners will: +And I have heard it said, unbidden guests +Are often welcomest when they are gone. + +TALBOT: +Well then, alone, since there's no remedy, +I mean to prove this lady's courtesy. +Come hither, captain. +You perceive my mind? + +Captain: +I do, my lord, and mean accordingly. + +COUNTESS OF AUVERGNE: +Porter, remember what I gave in charge; +And when you have done so, bring the keys to me. + +Porter: +Madam, I will. + +COUNTESS OF AUVERGNE: +The plot is laid: if all things fall out right, +I shall as famous be by this exploit +As Scythian Tomyris by Cyrus' death. +Great is the rumor of this dreadful knight, +And his achievements of no less account: +Fain would mine eyes be witness with mine ears, +To give their censure of these rare reports. + +Messenger: +Madam, +According as your ladyship desired, +By message craved, so is Lord Talbot come. + +COUNTESS OF AUVERGNE: +And he is welcome. What! is this the man? + +Messenger: +Madam, it is. + +COUNTESS OF AUVERGNE: +Is this the scourge of France? +Is this the Talbot, so much fear'd abroad +That with his name the mothers still their babes? +I see report is fabulous and false: +I thought I should have seen some Hercules, +A second Hector, for his grim aspect, +And large proportion of his strong-knit limbs. +Alas, this is a child, a silly dwarf! +It cannot be this weak and writhled shrimp +Should strike such terror to his enemies. + +TALBOT: +Madam, I have been bold to trouble you; +But since your ladyship is not at leisure, +I'll sort some other time to visit you. + +COUNTESS OF AUVERGNE: +What means he now? Go ask him whither he goes. + +Messenger: +Stay, my Lord Talbot; for my lady craves +To know the cause of your abrupt departure. + +TALBOT: +Marry, for that she's in a wrong belief, +I go to certify her Talbot's here. + +COUNTESS OF AUVERGNE: +If thou be he, then art thou prisoner. + +TALBOT: +Prisoner! to whom? + +COUNTESS OF AUVERGNE: +To me, blood-thirsty lord; +And for that cause I trained thee to my house. +Long time thy shadow hath been thrall to me, +For in my gallery thy picture hangs: +But now the substance shall endure the like, +And I will chain these legs and arms of thine, +That hast by tyranny these many years +Wasted our country, slain our citizens +And sent our sons and husbands captivate. + +TALBOT: +Ha, ha, ha! + +COUNTESS OF AUVERGNE: +Laughest thou, wretch? thy mirth shall turn to moan. + +TALBOT: +I laugh to see your ladyship so fond +To think that you have aught but Talbot's shadow +Whereon to practise your severity. + +COUNTESS OF AUVERGNE: +Why, art not thou the man? + +TALBOT: +I am indeed. + +COUNTESS OF AUVERGNE: +Then have I substance too. + +TALBOT: +No, no, I am but shadow of myself: +You are deceived, my substance is not here; +For what you see is but the smallest part +And least proportion of humanity: +I tell you, madam, were the whole frame here, +It is of such a spacious lofty pitch, +Your roof were not sufficient to contain't. + +COUNTESS OF AUVERGNE: +This is a riddling merchant for the nonce; +He will be here, and yet he is not here: +How can these contrarieties agree? + +TALBOT: +That will I show you presently. +How say you, madam? are you now persuaded +That Talbot is but shadow of himself? +These are his substance, sinews, arms and strength, +With which he yoketh your rebellious necks, +Razeth your cities and subverts your towns +And in a moment makes them desolate. + +COUNTESS OF AUVERGNE: +Victorious Talbot! pardon my abuse: +I find thou art no less than fame hath bruited +And more than may be gather'd by thy shape. +Let my presumption not provoke thy wrath; +For I am sorry that with reverence +I did not entertain thee as thou art. + +TALBOT: +Be not dismay'd, fair lady; nor misconstrue +The mind of Talbot, as you did mistake +The outward composition of his body. +What you have done hath not offended me; +Nor other satisfaction do I crave, +But only, with your patience, that we may +Taste of your wine and see what cates you have; +For soldiers' stomachs always serve them well. + +COUNTESS OF AUVERGNE: +With all my heart, and think me honoured +To feast so great a warrior in my house. + +RICHARD PLANTAGENET: +Great lords and gentlemen, what means this silence? +Dare no man answer in a case of truth? + +SUFFOLK: +Within the Temple-hall we were too loud; +The garden here is more convenient. + +RICHARD PLANTAGENET: +Then say at once if I maintain'd the truth; +Or else was wrangling Somerset in the error? + +SUFFOLK: +Faith, I have been a truant in the law, +And never yet could frame my will to it; +And therefore frame the law unto my will. + +SOMERSET: +Judge you, my Lord of Warwick, then, between us. + +WARWICK: +Between two hawks, which flies the higher pitch; +Between two dogs, which hath the deeper mouth; +Between two blades, which bears the better temper: +Between two horses, which doth bear him best; +Between two girls, which hath the merriest eye; +I have perhaps some shallow spirit of judgement; +But in these nice sharp quillets of the law, +Good faith, I am no wiser than a daw. + +RICHARD PLANTAGENET: +Tut, tut, here is a mannerly forbearance: +The truth appears so naked on my side +That any purblind eye may find it out. + +SOMERSET: +And on my side it is so well apparell'd, +So clear, so shining and so evident +That it will glimmer through a blind man's eye. + +RICHARD PLANTAGENET: +Since you are tongue-tied and so loath to speak, +In dumb significants proclaim your thoughts: +Let him that is a true-born gentleman +And stands upon the honour of his birth, +If he suppose that I have pleaded truth, +From off this brier pluck a white rose with me. + +SOMERSET: +Let him that is no coward nor no flatterer, +But dare maintain the party of the truth, +Pluck a red rose from off this thorn with me. + +WARWICK: +I love no colours, and without all colour +Of base insinuating flattery +I pluck this white rose with Plantagenet. + +SUFFOLK: +I pluck this red rose with young Somerset +And say withal I think he held the right. + +VERNON: +Stay, lords and gentlemen, and pluck no more, +Till you conclude that he upon whose side +The fewest roses are cropp'd from the tree +Shall yield the other in the right opinion. + +SOMERSET: +Good Master Vernon, it is well objected: +If I have fewest, I subscribe in silence. + +RICHARD PLANTAGENET: +And I. + +VERNON: +Then for the truth and plainness of the case. +I pluck this pale and maiden blossom here, +Giving my verdict on the white rose side. + +SOMERSET: +Prick not your finger as you pluck it off, +Lest bleeding you do paint the white rose red +And fall on my side so, against your will. + +VERNON: +If I my lord, for my opinion bleed, +Opinion shall be surgeon to my hurt +And keep me on the side where still I am. + +SOMERSET: +Well, well, come on: who else? + +Lawyer: +Unless my study and my books be false, +The argument you held was wrong in you: +In sign whereof I pluck a white rose too. + +RICHARD PLANTAGENET: +Now, Somerset, where is your argument? + +SOMERSET: +Here in my scabbard, meditating that +Shall dye your white rose in a bloody red. + +RICHARD PLANTAGENET: +Meantime your cheeks do counterfeit our roses; +For pale they look with fear, as witnessing +The truth on our side. + +SOMERSET: +No, Plantagenet, +'Tis not for fear but anger that thy cheeks +Blush for pure shame to counterfeit our roses, +And yet thy tongue will not confess thy error. + +RICHARD PLANTAGENET: +Hath not thy rose a canker, Somerset? + +SOMERSET: +Hath not thy rose a thorn, Plantagenet? + +RICHARD PLANTAGENET: +Ay, sharp and piercing, to maintain his truth; +Whiles thy consuming canker eats his falsehood. + +SOMERSET: +Well, I'll find friends to wear my bleeding roses, +That shall maintain what I have said is true, +Where false Plantagenet dare not be seen. + +RICHARD PLANTAGENET: +Now, by this maiden blossom in my hand, +I scorn thee and thy fashion, peevish boy. + +SUFFOLK: +Turn not thy scorns this way, Plantagenet. + +RICHARD PLANTAGENET: +Proud Pole, I will, and scorn both him and thee. + +SUFFOLK: +I'll turn my part thereof into thy throat. + +SOMERSET: +Away, away, good William de la Pole! +We grace the yeoman by conversing with him. + +WARWICK: +Now, by God's will, thou wrong'st him, Somerset; +His grandfather was Lionel Duke of Clarence, +Third son to the third Edward King of England: +Spring crestless yeomen from so deep a root? + +RICHARD PLANTAGENET: +He bears him on the place's privilege, +Or durst not, for his craven heart, say thus. + +SOMERSET: +By him that made me, I'll maintain my words +On any plot of ground in Christendom. +Was not thy father, Richard Earl of Cambridge, +For treason executed in our late king's days? +And, by his treason, stand'st not thou attainted, +Corrupted, and exempt from ancient gentry? +His trespass yet lives guilty in thy blood; +And, till thou be restored, thou art a yeoman. + +RICHARD PLANTAGENET: +My father was attached, not attainted, +Condemn'd to die for treason, but no traitor; +And that I'll prove on better men than Somerset, +Were growing time once ripen'd to my will. +For your partaker Pole and you yourself, +I'll note you in my book of memory, +To scourge you for this apprehension: +Look to it well and say you are well warn'd. + +SOMERSET: +Ah, thou shalt find us ready for thee still; +And know us by these colours for thy foes, +For these my friends in spite of thee shall wear. + +RICHARD PLANTAGENET: +And, by my soul, this pale and angry rose, +As cognizance of my blood-drinking hate, +Will I for ever and my faction wear, +Until it wither with me to my grave +Or flourish to the height of my degree. + +SUFFOLK: +Go forward and be choked with thy ambition! +And so farewell until I meet thee next. + +SOMERSET: +Have with thee, Pole. Farewell, ambitious Richard. + +RICHARD PLANTAGENET: +How I am braved and must perforce endure it! + +WARWICK: +This blot that they object against your house +Shall be wiped out in the next parliament +Call'd for the truce of Winchester and Gloucester; +And if thou be not then created York, +I will not live to be accounted Warwick. +Meantime, in signal of my love to thee, +Against proud Somerset and William Pole, +Will I upon thy party wear this rose: +And here I prophesy: this brawl to-day, +Grown to this faction in the Temple-garden, +Shall send between the red rose and the white +A thousand souls to death and deadly night. + +RICHARD PLANTAGENET: +Good Master Vernon, I am bound to you, +That you on my behalf would pluck a flower. + +VERNON: +In your behalf still will I wear the same. + +Lawyer: +And so will I. + +RICHARD PLANTAGENET: +Thanks, gentle sir. +Come, let us four to dinner: I dare say +This quarrel will drink blood another day. + +MORTIMER: +Kind keepers of my weak decaying age, +Let dying Mortimer here rest himself. +Even like a man new haled from the rack, +So fare my limbs with long imprisonment. +And these grey locks, the pursuivants of death, +Nestor-like aged in an age of care, +Argue the end of Edmund Mortimer. +These eyes, like lamps whose wasting oil is spent, +Wax dim, as drawing to their exigent; +Weak shoulders, overborne with burthening grief, +And pithless arms, like to a wither'd vine +That droops his sapless branches to the ground; +Yet are these feet, whose strengthless stay is numb, +Unable to support this lump of clay, +Swift-winged with desire to get a grave, +As witting I no other comfort have. +But tell me, keeper, will my nephew come? + +First Gaoler: +Richard Plantagenet, my lord, will come: +We sent unto the Temple, unto his chamber; +And answer was return'd that he will come. + +MORTIMER: +Enough: my soul shall then be satisfied. +Poor gentleman! his wrong doth equal mine. +Since Henry Monmouth first began to reign, +Before whose glory I was great in arms, +This loathsome sequestration have I had: +And even since then hath Richard been obscured, +Deprived of honour and inheritance. +But now the arbitrator of despairs, +Just death, kind umpire of men's miseries, +With sweet enlargement doth dismiss me hence: +I would his troubles likewise were expired, +That so he might recover what was lost. + +First Gaoler: +My lord, your loving nephew now is come. + +MORTIMER: +Richard Plantagenet, my friend, is he come? + +RICHARD PLANTAGENET: +Ay, noble uncle, thus ignobly used, +Your nephew, late despised Richard, comes. + +MORTIMER: +Direct mine arms I may embrace his neck, +And in his bosom spend my latter gasp: +O, tell me when my lips do touch his cheeks, +That I may kindly give one fainting kiss. +And now declare, sweet stem from York's great stock, +Why didst thou say, of late thou wert despised? + +RICHARD PLANTAGENET: +First, lean thine aged back against mine arm; +And, in that ease, I'll tell thee my disease. +This day, in argument upon a case, +Some words there grew 'twixt Somerset and me; +Among which terms he used his lavish tongue +And did upbraid me with my father's death: +Which obloquy set bars before my tongue, +Else with the like I had requited him. +Therefore, good uncle, for my father's sake, +In honour of a true Plantagenet +And for alliance sake, declare the cause +My father, Earl of Cambridge, lost his head. + +MORTIMER: +That cause, fair nephew, that imprison'd me +And hath detain'd me all my flowering youth +Within a loathsome dungeon, there to pine, +Was cursed instrument of his decease. + +RICHARD PLANTAGENET: +Discover more at large what cause that was, +For I am ignorant and cannot guess. + +MORTIMER: +I will, if that my fading breath permit +And death approach not ere my tale be done. +Henry the Fourth, grandfather to this king, +Deposed his nephew Richard, Edward's son, +The first-begotten and the lawful heir, +Of Edward king, the third of that descent: +During whose reign the Percies of the north, +Finding his usurpation most unjust, +Endeavor'd my advancement to the throne: +The reason moved these warlike lords to this +Was, for that--young King Richard thus removed, +Leaving no heir begotten of his body-- +I was the next by birth and parentage; +For by my mother I derived am +From Lionel Duke of Clarence, the third son +To King Edward the Third; whereas he +From John of Gaunt doth bring his pedigree, +Being but fourth of that heroic line. +But mark: as in this haughty attempt +They laboured to plant the rightful heir, +I lost my liberty and they their lives. +Long after this, when Henry the Fifth, +Succeeding his father Bolingbroke, did reign, +Thy father, Earl of Cambridge, then derived +From famous Edmund Langley, Duke of York, +Marrying my sister that thy mother was, +Again in pity of my hard distress +Levied an army, weening to redeem +And have install'd me in the diadem: +But, as the rest, so fell that noble earl +And was beheaded. Thus the Mortimers, +In whom the tide rested, were suppress'd. + +RICHARD PLANTAGENET: +Of which, my lord, your honour is the last. + +MORTIMER: +True; and thou seest that I no issue have +And that my fainting words do warrant death; +Thou art my heir; the rest I wish thee gather: +But yet be wary in thy studious care. + +RICHARD PLANTAGENET: +Thy grave admonishments prevail with me: +But yet, methinks, my father's execution +Was nothing less than bloody tyranny. + +MORTIMER: +With silence, nephew, be thou politic: +Strong-fixed is the house of Lancaster, +And like a mountain, not to be removed. +But now thy uncle is removing hence: +As princes do their courts, when they are cloy'd +With long continuance in a settled place. + +RICHARD PLANTAGENET: +O, uncle, would some part of my young years +Might but redeem the passage of your age! + +MORTIMER: +Thou dost then wrong me, as that slaughterer doth +Which giveth many wounds when one will kill. +Mourn not, except thou sorrow for my good; +Only give order for my funeral: +And so farewell, and fair be all thy hopes +And prosperous be thy life in peace and war! + +RICHARD PLANTAGENET: +And peace, no war, befall thy parting soul! +In prison hast thou spent a pilgrimage +And like a hermit overpass'd thy days. +Well, I will lock his counsel in my breast; +And what I do imagine let that rest. +Keepers, convey him hence, and I myself +Will see his burial better than his life. +Here dies the dusky torch of Mortimer, +Choked with ambition of the meaner sort: +And for those wrongs, those bitter injuries, +Which Somerset hath offer'd to my house: +I doubt not but with honour to redress; +And therefore haste I to the parliament, +Either to be restored to my blood, +Or make my ill the advantage of my good. + +BISHOP OF WINCHESTER: +Comest thou with deep premeditated lines, +With written pamphlets studiously devised, +Humphrey of Gloucester? If thou canst accuse, +Or aught intend'st to lay unto my charge, +Do it without invention, suddenly; +As I with sudden and extemporal speech +Purpose to answer what thou canst object. + +GLOUCESTER: +Presumptuous priest! this place commands my patience, +Or thou shouldst find thou hast dishonour'd me. +Think not, although in writing I preferr'd +The manner of thy vile outrageous crimes, +That therefore I have forged, or am not able +Verbatim to rehearse the method of my pen: +No, prelate; such is thy audacious wickedness, +Thy lewd, pestiferous and dissentious pranks, +As very infants prattle of thy pride. +Thou art a most pernicious usurer, +Forward by nature, enemy to peace; +Lascivious, wanton, more than well beseems +A man of thy profession and degree; +And for thy treachery, what's more manifest? +In that thou laid'st a trap to take my life, +As well at London bridge as at the Tower. +Beside, I fear me, if thy thoughts were sifted, +The king, thy sovereign, is not quite exempt +From envious malice of thy swelling heart. + +BISHOP OF WINCHESTER: +Gloucester, I do defy thee. Lords, vouchsafe +To give me hearing what I shall reply. +If I were covetous, ambitious or perverse, +As he will have me, how am I so poor? +Or how haps it I seek not to advance +Or raise myself, but keep my wonted calling? +And for dissension, who preferreth peace +More than I do?--except I be provoked. +No, my good lords, it is not that offends; +It is not that that hath incensed the duke: +It is, because no one should sway but he; +No one but he should be about the king; +And that engenders thunder in his breast +And makes him roar these accusations forth. +But he shall know I am as good-- + +GLOUCESTER: +As good! +Thou bastard of my grandfather! + +BISHOP OF WINCHESTER: +Ay, lordly sir; for what are you, I pray, +But one imperious in another's throne? + +GLOUCESTER: +Am I not protector, saucy priest? + +BISHOP OF WINCHESTER: +And am not I a prelate of the church? + +GLOUCESTER: +Yes, as an outlaw in a castle keeps +And useth it to patronage his theft. + +BISHOP OF WINCHESTER: +Unreverent Gloster! + +GLOUCESTER: +Thou art reverent +Touching thy spiritual function, not thy life. + +BISHOP OF WINCHESTER: +Rome shall remedy this. + +WARWICK: +Roam thither, then. + +SOMERSET: +My lord, it were your duty to forbear. + +WARWICK: +Ay, see the bishop be not overborne. + +SOMERSET: +Methinks my lord should be religious +And know the office that belongs to such. + +WARWICK: +Methinks his lordship should be humbler; +it fitteth not a prelate so to plead. + +SOMERSET: +Yes, when his holy state is touch'd so near. + +WARWICK: +State holy or unhallow'd, what of that? +Is not his grace protector to the king? + +RICHARD PLANTAGENET: + +KING HENRY VI: +Uncles of Gloucester and of Winchester, +The special watchmen of our English weal, +I would prevail, if prayers might prevail, +To join your hearts in love and amity. +O, what a scandal is it to our crown, +That two such noble peers as ye should jar! +Believe me, lords, my tender years can tell +Civil dissension is a viperous worm +That gnaws the bowels of the commonwealth. +What tumult's this? + +WARWICK: +An uproar, I dare warrant, +Begun through malice of the bishop's men. + +Mayor: +O, my good lords, and virtuous Henry, +Pity the city of London, pity us! +The bishop and the Duke of Gloucester's men, +Forbidden late to carry any weapon, +Have fill'd their pockets full of pebble stones +And banding themselves in contrary parts +Do pelt so fast at one another's pate +That many have their giddy brains knock'd out: +Our windows are broke down in every street +And we for fear compell'd to shut our shops. + +KING HENRY VI: +We charge you, on allegiance to ourself, +To hold your slaughtering hands and keep the peace. +Pray, uncle Gloucester, mitigate this strife. + +First Serving-man: +Nay, if we be forbidden stones, +We'll fall to it with our teeth. + +Second Serving-man: +Do what ye dare, we are as resolute. + +GLOUCESTER: +You of my household, leave this peevish broil +And set this unaccustom'd fight aside. + +Third Serving-man: +My lord, we know your grace to be a man +Just and upright; and, for your royal birth, +Inferior to none but to his majesty: +And ere that we will suffer such a prince, +So kind a father of the commonweal, +To be disgraced by an inkhorn mate, +We and our wives and children all will fight +And have our bodies slaughtered by thy foes. + +First Serving-man: +Ay, and the very parings of our nails +Shall pitch a field when we are dead. + +GLOUCESTER: +Stay, stay, I say! +And if you love me, as you say you do, +Let me persuade you to forbear awhile. + +KING HENRY VI: +O, how this discord doth afflict my soul! +Can you, my Lord of Winchester, behold +My sighs and tears and will not once relent? +Who should be pitiful, if you be not? +Or who should study to prefer a peace. +If holy churchmen take delight in broils? + +WARWICK: +Yield, my lord protector; yield, Winchester; +Except you mean with obstinate repulse +To slay your sovereign and destroy the realm. +You see what mischief and what murder too +Hath been enacted through your enmity; +Then be at peace except ye thirst for blood. + +BISHOP OF WINCHESTER: +He shall submit, or I will never yield. + +GLOUCESTER: +Compassion on the king commands me stoop; +Or I would see his heart out, ere the priest +Should ever get that privilege of me. + +WARWICK: +Behold, my Lord of Winchester, the duke +Hath banish'd moody discontented fury, +As by his smoothed brows it doth appear: +Why look you still so stern and tragical? + +GLOUCESTER: +Here, Winchester, I offer thee my hand. + +KING HENRY VI: +Fie, uncle Beaufort! I have heard you preach +That malice was a great and grievous sin; +And will not you maintain the thing you teach, +But prove a chief offender in the same? + +WARWICK: +Sweet king! the bishop hath a kindly gird. +For shame, my lord of Winchester, relent! +What, shall a child instruct you what to do? + +BISHOP OF WINCHESTER: +Well, Duke of Gloucester, I will yield to thee; +Love for thy love and hand for hand I give. + +GLOUCESTER: + +BISHOP OF WINCHESTER: + +KING HENRY VI: +O, loving uncle, kind Duke of Gloucester, +How joyful am I made by this contract! +Away, my masters! trouble us no more; +But join in friendship, as your lords have done. + +First Serving-man: +Content: I'll to the surgeon's. + +Second Serving-man: +And so will I. + +Third Serving-man: +And I will see what physic the tavern affords. + +WARWICK: +Accept this scroll, most gracious sovereign, +Which in the right of Richard Plantagenet +We do exhibit to your majesty. + +GLOUCESTER: +Well urged, my Lord of Warwick: or sweet prince, +And if your grace mark every circumstance, +You have great reason to do Richard right; +Especially for those occasions +At Eltham Place I told your majesty. + +KING HENRY VI: +And those occasions, uncle, were of force: +Therefore, my loving lords, our pleasure is +That Richard be restored to his blood. + +WARWICK: +Let Richard be restored to his blood; +So shall his father's wrongs be recompensed. + +BISHOP OF WINCHESTER: +As will the rest, so willeth Winchester. + +KING HENRY VI: +If Richard will be true, not that alone +But all the whole inheritance I give +That doth belong unto the house of York, +From whence you spring by lineal descent. + +RICHARD PLANTAGENET: +Thy humble servant vows obedience +And humble service till the point of death. + +KING HENRY VI: +Stoop then and set your knee against my foot; +And, in reguerdon of that duty done, +I gird thee with the valiant sword of York: +Rise Richard, like a true Plantagenet, +And rise created princely Duke of York. + +RICHARD PLANTAGENET: +And so thrive Richard as thy foes may fall! +And as my duty springs, so perish they +That grudge one thought against your majesty! + +ALL: +Welcome, high prince, the mighty Duke of York! + +SOMERSET: + +GLOUCESTER: +Now will it best avail your majesty +To cross the seas and to be crown'd in France: +The presence of a king engenders love +Amongst his subjects and his loyal friends, +As it disanimates his enemies. + +KING HENRY VI: +When Gloucester says the word, King Henry goes; +For friendly counsel cuts off many foes. + +GLOUCESTER: +Your ships already are in readiness. + +EXETER: +Ay, we may march in England or in France, +Not seeing what is likely to ensue. +This late dissension grown betwixt the peers +Burns under feigned ashes of forged love +And will at last break out into a flame: +As fester'd members rot but by degree, +Till bones and flesh and sinews fall away, +So will this base and envious discord breed. +And now I fear that fatal prophecy +Which in the time of Henry named the Fifth +Was in the mouth of every sucking babe; +That Henry born at Monmouth should win all +And Henry born at Windsor lose all: +Which is so plain that Exeter doth wish +His days may finish ere that hapless time. + +JOAN LA PUCELLE: +These are the city gates, the gates of Rouen, +Through which our policy must make a breach: +Take heed, be wary how you place your words; +Talk like the vulgar sort of market men +That come to gather money for their corn. +If we have entrance, as I hope we shall, +And that we find the slothful watch but weak, +I'll by a sign give notice to our friends, +That Charles the Dauphin may encounter them. + +First Soldier: +Our sacks shall be a mean to sack the city, +And we be lords and rulers over Rouen; +Therefore we'll knock. + +Watch: + +JOAN LA PUCELLE: +Paysans, pauvres gens de France; +Poor market folks that come to sell their corn. + +Watch: +Enter, go in; the market bell is rung. + +JOAN LA PUCELLE: +Now, Rouen, I'll shake thy bulwarks to the ground. + +CHARLES: +Saint Denis bless this happy stratagem! +And once again we'll sleep secure in Rouen. + +BASTARD OF ORLEANS: +Here enter'd Pucelle and her practisants; +Now she is there, how will she specify +Where is the best and safest passage in? + +REIGNIER: +By thrusting out a torch from yonder tower; +Which, once discern'd, shows that her meaning is, +No way to that, for weakness, which she enter'd. + +JOAN LA PUCELLE: +Behold, this is the happy wedding torch +That joineth Rouen unto her countrymen, +But burning fatal to the Talbotites! + +BASTARD OF ORLEANS: +See, noble Charles, the beacon of our friend; +The burning torch in yonder turret stands. + +CHARLES: +Now shine it like a comet of revenge, +A prophet to the fall of all our foes! + +REIGNIER: +Defer no time, delays have dangerous ends; +Enter, and cry 'The Dauphin!' presently, +And then do execution on the watch. + +TALBOT: +France, thou shalt rue this treason with thy tears, +If Talbot but survive thy treachery. +Pucelle, that witch, that damned sorceress, +Hath wrought this hellish mischief unawares, +That hardly we escaped the pride of France. + +JOAN LA PUCELLE: +Good morrow, gallants! want ye corn for bread? +I think the Duke of Burgundy will fast +Before he'll buy again at such a rate: +'Twas full of darnel; do you like the taste? + +BURGUNDY: +Scoff on, vile fiend and shameless courtezan! +I trust ere long to choke thee with thine own +And make thee curse the harvest of that corn. + +CHARLES: +Your grace may starve perhaps before that time. + +BEDFORD: +O, let no words, but deeds, revenge this treason! + +JOAN LA PUCELLE: +What will you do, good grey-beard? break a lance, +And run a tilt at death within a chair? + +TALBOT: +Foul fiend of France, and hag of all despite, +Encompass'd with thy lustful paramours! +Becomes it thee to taunt his valiant age +And twit with cowardice a man half dead? +Damsel, I'll have a bout with you again, +Or else let Talbot perish with this shame. + +JOAN LA PUCELLE: +Are ye so hot, sir? yet, Pucelle, hold thy peace; +If Talbot do but thunder, rain will follow. +God speed the parliament! who shall be the speaker? + +TALBOT: +Dare ye come forth and meet us in the field? + +JOAN LA PUCELLE: +Belike your lordship takes us then for fools, +To try if that our own be ours or no. + +TALBOT: +I speak not to that railing Hecate, +But unto thee, Alencon, and the rest; +Will ye, like soldiers, come and fight it out? + +ALENCON: +Signior, no. + +TALBOT: +Signior, hang! base muleters of France! +Like peasant foot-boys do they keep the walls +And dare not take up arms like gentlemen. + +JOAN LA PUCELLE: +Away, captains! let's get us from the walls; +For Talbot means no goodness by his looks. +God be wi' you, my lord! we came but to tell you +That we are here. + +TALBOT: +And there will we be too, ere it be long, +Or else reproach be Talbot's greatest fame! +Vow, Burgundy, by honour of thy house, +Prick'd on by public wrongs sustain'd in France, +Either to get the town again or die: +And I, as sure as English Henry lives +And as his father here was conqueror, +As sure as in this late-betrayed town +Great Coeur-de-lion's heart was buried, +So sure I swear to get the town or die. + +BURGUNDY: +My vows are equal partners with thy vows. + +TALBOT: +But, ere we go, regard this dying prince, +The valiant Duke of Bedford. Come, my lord, +We will bestow you in some better place, +Fitter for sickness and for crazy age. + +BEDFORD: +Lord Talbot, do not so dishonour me: +Here will I sit before the walls of Rouen +And will be partner of your weal or woe. + +BURGUNDY: +Courageous Bedford, let us now persuade you. + +BEDFORD: +Not to be gone from hence; for once I read +That stout Pendragon in his litter sick +Came to the field and vanquished his foes: +Methinks I should revive the soldiers' hearts, +Because I ever found them as myself. + +TALBOT: +Undaunted spirit in a dying breast! +Then be it so: heavens keep old Bedford safe! +And now no more ado, brave Burgundy, +But gather we our forces out of hand +And set upon our boasting enemy. + +Captain: +Whither away, Sir John Fastolfe, in such haste? + +FASTOLFE: +Whither away! to save myself by flight: +We are like to have the overthrow again. + +Captain: +What! will you fly, and leave Lord Talbot? + +FASTOLFE: +Ay, +All the Talbots in the world, to save my life! + +Captain: +Cowardly knight! ill fortune follow thee! + +BEDFORD: +Now, quiet soul, depart when heaven please, +For I have seen our enemies' overthrow. +What is the trust or strength of foolish man? +They that of late were daring with their scoffs +Are glad and fain by flight to save themselves. + +TALBOT: +Lost, and recover'd in a day again! +This is a double honour, Burgundy: +Yet heavens have glory for this victory! + +BURGUNDY: +Warlike and martial Talbot, Burgundy +Enshrines thee in his heart and there erects +Thy noble deeds as valour's monuments. + +TALBOT: +Thanks, gentle duke. But where is Pucelle now? +I think her old familiar is asleep: +Now where's the Bastard's braves, and Charles his gleeks? +What, all amort? Rouen hangs her head for grief +That such a valiant company are fled. +Now will we take some order in the town, +Placing therein some expert officers, +And then depart to Paris to the king, +For there young Henry with his nobles lie. + +BURGUNDY: +What wills Lord Talbot pleaseth Burgundy. + +TALBOT: +But yet, before we go, let's not forget +The noble Duke of Bedford late deceased, +But see his exequies fulfill'd in Rouen: +A braver soldier never couched lance, +A gentler heart did never sway in court; +But kings and mightiest potentates must die, +For that's the end of human misery. + +JOAN LA PUCELLE: +Dismay not, princes, at this accident, +Nor grieve that Rouen is so recovered: +Care is no cure, but rather corrosive, +For things that are not to be remedied. +Let frantic Talbot triumph for a while +And like a peacock sweep along his tail; +We'll pull his plumes and take away his train, +If Dauphin and the rest will be but ruled. + +CHARLES: +We have been guided by thee hitherto, +And of thy cunning had no diffidence: +One sudden foil shall never breed distrust. + +BASTARD OF ORLEANS: +Search out thy wit for secret policies, +And we will make thee famous through the world. + +ALENCON: +We'll set thy statue in some holy place, +And have thee reverenced like a blessed saint: +Employ thee then, sweet virgin, for our good. + +JOAN LA PUCELLE: +Then thus it must be; this doth Joan devise: +By fair persuasions mix'd with sugar'd words +We will entice the Duke of Burgundy +To leave the Talbot and to follow us. + +CHARLES: +Ay, marry, sweeting, if we could do that, +France were no place for Henry's warriors; +Nor should that nation boast it so with us, +But be extirped from our provinces. + +ALENCON: +For ever should they be expulsed from France +And not have title of an earldom here. + +JOAN LA PUCELLE: +Your honours shall perceive how I will work +To bring this matter to the wished end. +Hark! by the sound of drum you may perceive +Their powers are marching unto Paris-ward. +There goes the Talbot, with his colours spread, +And all the troops of English after him. +Now in the rearward comes the duke and his: +Fortune in favour makes him lag behind. +Summon a parley; we will talk with him. + +CHARLES: +A parley with the Duke of Burgundy! + +BURGUNDY: +Who craves a parley with the Burgundy? + +JOAN LA PUCELLE: +The princely Charles of France, thy countryman. + +BURGUNDY: +What say'st thou, Charles? for I am marching hence. + +CHARLES: +Speak, Pucelle, and enchant him with thy words. + +JOAN LA PUCELLE: +Brave Burgundy, undoubted hope of France! +Stay, let thy humble handmaid speak to thee. + +BURGUNDY: +Speak on; but be not over-tedious. + +JOAN LA PUCELLE: +Look on thy country, look on fertile France, +And see the cities and the towns defaced +By wasting ruin of the cruel foe. +As looks the mother on her lowly babe +When death doth close his tender dying eyes, +See, see the pining malady of France; +Behold the wounds, the most unnatural wounds, +Which thou thyself hast given her woful breast. +O, turn thy edged sword another way; +Strike those that hurt, and hurt not those that help. +One drop of blood drawn from thy country's bosom +Should grieve thee more than streams of foreign gore: +Return thee therefore with a flood of tears, +And wash away thy country's stained spots. + +BURGUNDY: +Either she hath bewitch'd me with her words, +Or nature makes me suddenly relent. + +JOAN LA PUCELLE: +Besides, all French and France exclaims on thee, +Doubting thy birth and lawful progeny. +Who joint'st thou with but with a lordly nation +That will not trust thee but for profit's sake? +When Talbot hath set footing once in France +And fashion'd thee that instrument of ill, +Who then but English Henry will be lord +And thou be thrust out like a fugitive? +Call we to mind, and mark but this for proof, +Was not the Duke of Orleans thy foe? +And was he not in England prisoner? +But when they heard he was thine enemy, +They set him free without his ransom paid, +In spite of Burgundy and all his friends. +See, then, thou fight'st against thy countrymen +And joint'st with them will be thy slaughtermen. +Come, come, return; return, thou wandering lord: +Charles and the rest will take thee in their arms. + +BURGUNDY: +I am vanquished; these haughty words of hers +Have batter'd me like roaring cannon-shot, +And made me almost yield upon my knees. +Forgive me, country, and sweet countrymen, +And, lords, accept this hearty kind embrace: +My forces and my power of men are yours: +So farewell, Talbot; I'll no longer trust thee. + +JOAN LA PUCELLE: + +CHARLES: +Welcome, brave duke! thy friendship makes us fresh. + +BASTARD OF ORLEANS: +And doth beget new courage in our breasts. + +ALENCON: +Pucelle hath bravely play'd her part in this, +And doth deserve a coronet of gold. + +CHARLES: +Now let us on, my lords, and join our powers, +And seek how we may prejudice the foe. + +TALBOT: +My gracious prince, and honourable peers, +Hearing of your arrival in this realm, +I have awhile given truce unto my wars, +To do my duty to my sovereign: +In sign, whereof, this arm, that hath reclaim'd +To your obedience fifty fortresses, +Twelve cities and seven walled towns of strength, +Beside five hundred prisoners of esteem, +Lets fall his sword before your highness' feet, +And with submissive loyalty of heart +Ascribes the glory of his conquest got +First to my God and next unto your grace. + +KING HENRY VI: +Is this the Lord Talbot, uncle Gloucester, +That hath so long been resident in France? + +GLOUCESTER: +Yes, if it please your majesty, my liege. + +KING HENRY VI: +Welcome, brave captain and victorious lord! +When I was young, as yet I am not old, +I do remember how my father said +A stouter champion never handled sword. +Long since we were resolved of your truth, +Your faithful service and your toil in war; +Yet never have you tasted our reward, +Or been reguerdon'd with so much as thanks, +Because till now we never saw your face: +Therefore, stand up; and, for these good deserts, +We here create you Earl of Shrewsbury; +And in our coronation take your place. + +VERNON: +Now, sir, to you, that were so hot at sea, +Disgracing of these colours that I wear +In honour of my noble Lord of York: +Darest thou maintain the former words thou spakest? + +BASSET: +Yes, sir; as well as you dare patronage +The envious barking of your saucy tongue +Against my lord the Duke of Somerset. + +VERNON: +Sirrah, thy lord I honour as he is. + +BASSET: +Why, what is he? as good a man as York. + +VERNON: +Hark ye; not so: in witness, take ye that. + +BASSET: +Villain, thou know'st the law of arms is such +That whoso draws a sword, 'tis present death, +Or else this blow should broach thy dearest blood. +But I'll unto his majesty, and crave +I may have liberty to venge this wrong; +When thou shalt see I'll meet thee to thy cost. + +VERNON: +Well, miscreant, I'll be there as soon as you; +And, after, meet you sooner than you would. + +GLOUCESTER: +Lord bishop, set the crown upon his head. + +BISHOP OF WINCHESTER: +God save King Henry, of that name the sixth! + +GLOUCESTER: +Now, governor of Paris, take your oath, +That you elect no other king but him; +Esteem none friends but such as are his friends, +And none your foes but such as shall pretend +Malicious practises against his state: +This shall ye do, so help you righteous God! + +FASTOLFE: +My gracious sovereign, as I rode from Calais, +To haste unto your coronation, +A letter was deliver'd to my hands, +Writ to your grace from the Duke of Burgundy. + +TALBOT: +Shame to the Duke of Burgundy and thee! +I vow'd, base knight, when I did meet thee next, +To tear the garter from thy craven's leg, +Which I have done, because unworthily +Thou wast installed in that high degree. +Pardon me, princely Henry, and the rest +This dastard, at the battle of Patay, +When but in all I was six thousand strong +And that the French were almost ten to one, +Before we met or that a stroke was given, +Like to a trusty squire did run away: +In which assault we lost twelve hundred men; +Myself and divers gentlemen beside +Were there surprised and taken prisoners. +Then judge, great lords, if I have done amiss; +Or whether that such cowards ought to wear +This ornament of knighthood, yea or no. + +GLOUCESTER: +To say the truth, this fact was infamous +And ill beseeming any common man, +Much more a knight, a captain and a leader. + +TALBOT: +When first this order was ordain'd, my lords, +Knights of the garter were of noble birth, +Valiant and virtuous, full of haughty courage, +Such as were grown to credit by the wars; +Not fearing death, nor shrinking for distress, +But always resolute in most extremes. +He then that is not furnish'd in this sort +Doth but usurp the sacred name of knight, +Profaning this most honourable order, +And should, if I were worthy to be judge, +Be quite degraded, like a hedge-born swain +That doth presume to boast of gentle blood. + +KING HENRY VI: +Stain to thy countrymen, thou hear'st thy doom! +Be packing, therefore, thou that wast a knight: +Henceforth we banish thee, on pain of death. +And now, my lord protector, view the letter +Sent from our uncle Duke of Burgundy. + +GLOUCESTER: +What means his grace, that he hath changed his style? +No more but, plain and bluntly, 'To the king!' +Hath he forgot he is his sovereign? +Or doth this churlish superscription +Pretend some alteration in good will? +What's here? +'I have, upon especial cause, +Moved with compassion of my country's wreck, +Together with the pitiful complaints +Of such as your oppression feeds upon, +Forsaken your pernicious faction +And join'd with Charles, the rightful King of France.' +O monstrous treachery! can this be so, +That in alliance, amity and oaths, +There should be found such false dissembling guile? + +KING HENRY VI: +What! doth my uncle Burgundy revolt? + +GLOUCESTER: +He doth, my lord, and is become your foe. + +KING HENRY VI: +Is that the worst this letter doth contain? + +GLOUCESTER: +It is the worst, and all, my lord, he writes. + +KING HENRY VI: +Why, then, Lord Talbot there shall talk with him +And give him chastisement for this abuse. +How say you, my lord? are you not content? + +TALBOT: +Content, my liege! yes, but that I am prevented, +I should have begg'd I might have been employ'd. + +KING HENRY VI: +Then gather strength and march unto him straight: +Let him perceive how ill we brook his treason +And what offence it is to flout his friends. + +TALBOT: +I go, my lord, in heart desiring still +You may behold confusion of your foes. + +VERNON: +Grant me the combat, gracious sovereign. + +BASSET: +And me, my lord, grant me the combat too. + +YORK: +This is my servant: hear him, noble prince. + +SOMERSET: +And this is mine: sweet Henry, favour him. + +KING HENRY VI: +Be patient, lords; and give them leave to speak. +Say, gentlemen, what makes you thus exclaim? +And wherefore crave you combat? or with whom? + +VERNON: +With him, my lord; for he hath done me wrong. + +BASSET: +And I with him; for he hath done me wrong. + +KING HENRY VI: +What is that wrong whereof you both complain? +First let me know, and then I'll answer you. + +BASSET: +Crossing the sea from England into France, +This fellow here, with envious carping tongue, +Upbraided me about the rose I wear; +Saying, the sanguine colour of the leaves +Did represent my master's blushing cheeks, +When stubbornly he did repugn the truth +About a certain question in the law +Argued betwixt the Duke of York and him; +With other vile and ignominious terms: +In confutation of which rude reproach +And in defence of my lord's worthiness, +I crave the benefit of law of arms. + +VERNON: +And that is my petition, noble lord: +For though he seem with forged quaint conceit +To set a gloss upon his bold intent, +Yet know, my lord, I was provoked by him; +And he first took exceptions at this badge, +Pronouncing that the paleness of this flower +Bewray'd the faintness of my master's heart. + +YORK: +Will not this malice, Somerset, be left? + +SOMERSET: +Your private grudge, my Lord of York, will out, +Though ne'er so cunningly you smother it. + +KING HENRY VI: +Good Lord, what madness rules in brainsick men, +When for so slight and frivolous a cause +Such factious emulations shall arise! +Good cousins both, of York and Somerset, +Quiet yourselves, I pray, and be at peace. + +YORK: +Let this dissension first be tried by fight, +And then your highness shall command a peace. + +SOMERSET: +The quarrel toucheth none but us alone; +Betwixt ourselves let us decide it then. + +YORK: +There is my pledge; accept it, Somerset. + +VERNON: +Nay, let it rest where it began at first. + +BASSET: +Confirm it so, mine honourable lord. + +GLOUCESTER: +Confirm it so! Confounded be your strife! +And perish ye, with your audacious prate! +Presumptuous vassals, are you not ashamed +With this immodest clamorous outrage +To trouble and disturb the king and us? +And you, my lords, methinks you do not well +To bear with their perverse objections; +Much less to take occasion from their mouths +To raise a mutiny betwixt yourselves: +Let me persuade you take a better course. + +EXETER: +It grieves his highness: good my lords, be friends. + +KING HENRY VI: +Come hither, you that would be combatants: +Henceforth I charge you, as you love our favour, +Quite to forget this quarrel and the cause. +And you, my lords, remember where we are, +In France, amongst a fickle wavering nation: +If they perceive dissension in our looks +And that within ourselves we disagree, +How will their grudging stomachs be provoked +To wilful disobedience, and rebel! +Beside, what infamy will there arise, +When foreign princes shall be certified +That for a toy, a thing of no regard, +King Henry's peers and chief nobility +Destroy'd themselves, and lost the realm of France! +O, think upon the conquest of my father, +My tender years, and let us not forego +That for a trifle that was bought with blood +Let me be umpire in this doubtful strife. +I see no reason, if I wear this rose, +That any one should therefore be suspicious +I more incline to Somerset than York: +Both are my kinsmen, and I love them both: +As well they may upbraid me with my crown, +Because, forsooth, the king of Scots is crown'd. +But your discretions better can persuade +Than I am able to instruct or teach: +And therefore, as we hither came in peace, +So let us still continue peace and love. +Cousin of York, we institute your grace +To be our regent in these parts of France: +And, good my Lord of Somerset, unite +Your troops of horsemen with his bands of foot; +And, like true subjects, sons of your progenitors, +Go cheerfully together and digest. +Your angry choler on your enemies. +Ourself, my lord protector and the rest +After some respite will return to Calais; +From thence to England; where I hope ere long +To be presented, by your victories, +With Charles, Alencon and that traitorous rout. + +WARWICK: +My Lord of York, I promise you, the king +Prettily, methought, did play the orator. + +YORK: +And so he did; but yet I like it not, +In that he wears the badge of Somerset. + +WARWICK: +Tush, that was but his fancy, blame him not; +I dare presume, sweet prince, he thought no harm. + +YORK: +An if I wist he did,--but let it rest; +Other affairs must now be managed. + +EXETER: +Well didst thou, Richard, to suppress thy voice; +For, had the passions of thy heart burst out, +I fear we should have seen decipher'd there +More rancorous spite, more furious raging broils, +Than yet can be imagined or supposed. +But howsoe'er, no simple man that sees +This jarring discord of nobility, +This shouldering of each other in the court, +This factious bandying of their favourites, +But that it doth presage some ill event. +'Tis much when sceptres are in children's hands; +But more when envy breeds unkind division; +There comes the rain, there begins confusion. + +TALBOT: +Go to the gates of Bourdeaux, trumpeter: +Summon their general unto the wall. +English John Talbot, captains, calls you forth, +Servant in arms to Harry King of England; +And thus he would: Open your city gates; +Be humble to us; call my sovereign yours, +And do him homage as obedient subjects; +And I'll withdraw me and my bloody power: +But, if you frown upon this proffer'd peace, +You tempt the fury of my three attendants, +Lean famine, quartering steel, and climbing fire; +Who in a moment even with the earth +Shall lay your stately and air-braving towers, +If you forsake the offer of their love. + +General: +Thou ominous and fearful owl of death, +Our nation's terror and their bloody scourge! +The period of thy tyranny approacheth. +On us thou canst not enter but by death; +For, I protest, we are well fortified +And strong enough to issue out and fight: +If thou retire, the Dauphin, well appointed, +Stands with the snares of war to tangle thee: +On either hand thee there are squadrons pitch'd, +To wall thee from the liberty of flight; +And no way canst thou turn thee for redress, +But death doth front thee with apparent spoil +And pale destruction meets thee in the face. +Ten thousand French have ta'en the sacrament +To rive their dangerous artillery +Upon no Christian soul but English Talbot. +Lo, there thou stand'st, a breathing valiant man, +Of an invincible unconquer'd spirit! +This is the latest glory of thy praise +That I, thy enemy, due thee withal; +For ere the glass, that now begins to run, +Finish the process of his sandy hour, +These eyes, that see thee now well coloured, +Shall see thee wither'd, bloody, pale and dead. +Hark! hark! the Dauphin's drum, a warning bell, +Sings heavy music to thy timorous soul; +And mine shall ring thy dire departure out. + +TALBOT: +He fables not; I hear the enemy: +Out, some light horsemen, and peruse their wings. +O, negligent and heedless discipline! +How are we park'd and bounded in a pale, +A little herd of England's timorous deer, +Mazed with a yelping kennel of French curs! +If we be English deer, be then in blood; +Not rascal-like, to fall down with a pinch, +But rather, moody-mad and desperate stags, +Turn on the bloody hounds with heads of steel +And make the cowards stand aloof at bay: +Sell every man his life as dear as mine, +And they shall find dear deer of us, my friends. +God and Saint George, Talbot and England's right, +Prosper our colours in this dangerous fight! + +YORK: +Are not the speedy scouts return'd again, +That dogg'd the mighty army of the Dauphin? + +Messenger: +They are return'd, my lord, and give it out +That he is march'd to Bourdeaux with his power, +To fight with Talbot: as he march'd along, +By your espials were discovered +Two mightier troops than that the Dauphin led, +Which join'd with him and made their march for Bourdeaux. + +YORK: +A plague upon that villain Somerset, +That thus delays my promised supply +Of horsemen, that were levied for this siege! +Renowned Talbot doth expect my aid, +And I am lowted by a traitor villain +And cannot help the noble chevalier: +God comfort him in this necessity! +If he miscarry, farewell wars in France. + +LUCY: +Thou princely leader of our English strength, +Never so needful on the earth of France, +Spur to the rescue of the noble Talbot, +Who now is girdled with a waist of iron +And hemm'd about with grim destruction: +To Bourdeaux, warlike duke! to Bourdeaux, York! +Else, farewell Talbot, France, and England's honour. + +YORK: +O God, that Somerset, who in proud heart +Doth stop my cornets, were in Talbot's place! +So should we save a valiant gentleman +By forfeiting a traitor and a coward. +Mad ire and wrathful fury makes me weep, +That thus we die, while remiss traitors sleep. + +LUCY: +O, send some succor to the distress'd lord! + +YORK: +He dies, we lose; I break my warlike word; +We mourn, France smiles; we lose, they daily get; +All 'long of this vile traitor Somerset. + +LUCY: +Then God take mercy on brave Talbot's soul; +And on his son young John, who two hours since +I met in travel toward his warlike father! +This seven years did not Talbot see his son; +And now they meet where both their lives are done. + +YORK: +Alas, what joy shall noble Talbot have +To bid his young son welcome to his grave? +Away! vexation almost stops my breath, +That sunder'd friends greet in the hour of death. +Lucy, farewell; no more my fortune can, +But curse the cause I cannot aid the man. +Maine, Blois, Poictiers, and Tours, are won away, +'Long all of Somerset and his delay. + +LUCY: +Thus, while the vulture of sedition +Feeds in the bosom of such great commanders, +Sleeping neglection doth betray to loss +The conquest of our scarce cold conqueror, +That ever living man of memory, +Henry the Fifth: whiles they each other cross, +Lives, honours, lands and all hurry to loss. + +SOMERSET: +It is too late; I cannot send them now: +This expedition was by York and Talbot +Too rashly plotted: all our general force +Might with a sally of the very town +Be buckled with: the over-daring Talbot +Hath sullied all his gloss of former honour +By this unheedful, desperate, wild adventure: +York set him on to fight and die in shame, +That, Talbot dead, great York might bear the name. + +Captain: +Here is Sir William Lucy, who with me +Set from our o'ermatch'd forces forth for aid. + +SOMERSET: +How now, Sir William! whither were you sent? + +LUCY: +Whither, my lord? from bought and sold Lord Talbot; +Who, ring'd about with bold adversity, +Cries out for noble York and Somerset, +To beat assailing death from his weak legions: +And whiles the honourable captain there +Drops bloody sweat from his war-wearied limbs, +And, in advantage lingering, looks for rescue, +You, his false hopes, the trust of England's honour, +Keep off aloof with worthless emulation. +Let not your private discord keep away +The levied succors that should lend him aid, +While he, renowned noble gentleman, +Yields up his life unto a world of odds: +Orleans the Bastard, Charles, Burgundy, +Alencon, Reignier, compass him about, +And Talbot perisheth by your default. + +SOMERSET: +York set him on; York should have sent him aid. + +LUCY: +And York as fast upon your grace exclaims; +Swearing that you withhold his levied host, +Collected for this expedition. + +SOMERSET: +York lies; he might have sent and had the horse; +I owe him little duty, and less love; +And take foul scorn to fawn on him by sending. + +LUCY: +The fraud of England, not the force of France, +Hath now entrapp'd the noble-minded Talbot: +Never to England shall he bear his life; +But dies, betray'd to fortune by your strife. + +SOMERSET: +Come, go; I will dispatch the horsemen straight: +Within six hours they will be at his aid. + +LUCY: +Too late comes rescue: he is ta'en or slain; +For fly he could not, if he would have fled; +And fly would Talbot never, though he might. + +SOMERSET: +If he be dead, brave Talbot, then adieu! + +LUCY: +His fame lives in the world, his shame in you. + +TALBOT: +O young John Talbot! I did send for thee +To tutor thee in stratagems of war, +That Talbot's name might be in thee revived +When sapless age and weak unable limbs +Should bring thy father to his drooping chair. +But, O malignant and ill-boding stars! +Now thou art come unto a feast of death, +A terrible and unavoided danger: +Therefore, dear boy, mount on my swiftest horse; +And I'll direct thee how thou shalt escape +By sudden flight: come, dally not, be gone. + +JOHN TALBOT: +Is my name Talbot? and am I your son? +And shall I fly? O if you love my mother, +Dishonour not her honourable name, +To make a bastard and a slave of me! +The world will say, he is not Talbot's blood, +That basely fled when noble Talbot stood. + +TALBOT: +Fly, to revenge my death, if I be slain. + +JOHN TALBOT: +He that flies so will ne'er return again. + +TALBOT: +If we both stay, we both are sure to die. + +JOHN TALBOT: +Then let me stay; and, father, do you fly: +Your loss is great, so your regard should be; +My worth unknown, no loss is known in me. +Upon my death the French can little boast; +In yours they will, in you all hopes are lost. +Flight cannot stain the honour you have won; +But mine it will, that no exploit have done: +You fled for vantage, everyone will swear; +But, if I bow, they'll say it was for fear. +There is no hope that ever I will stay, +If the first hour I shrink and run away. +Here on my knee I beg mortality, +Rather than life preserved with infamy. + +TALBOT: +Shall all thy mother's hopes lie in one tomb? + +JOHN TALBOT: +Ay, rather than I'll shame my mother's womb. + +TALBOT: +Upon my blessing, I command thee go. + +JOHN TALBOT: +To fight I will, but not to fly the foe. + +TALBOT: +Part of thy father may be saved in thee. + +JOHN TALBOT: +No part of him but will be shame in me. + +TALBOT: +Thou never hadst renown, nor canst not lose it. + +JOHN TALBOT: +Yes, your renowned name: shall flight abuse it? + +TALBOT: +Thy father's charge shall clear thee from that stain. + +JOHN TALBOT: +You cannot witness for me, being slain. +If death be so apparent, then both fly. + +TALBOT: +And leave my followers here to fight and die? +My age was never tainted with such shame. + +JOHN TALBOT: +And shall my youth be guilty of such blame? +No more can I be sever'd from your side, +Than can yourself yourself in twain divide: +Stay, go, do what you will, the like do I; +For live I will not, if my father die. + +TALBOT: +Then here I take my leave of thee, fair son, +Born to eclipse thy life this afternoon. +Come, side by side together live and die. +And soul with soul from France to heaven fly. + +TALBOT: +Saint George and victory! fight, soldiers, fight. +The regent hath with Talbot broke his word +And left us to the rage of France his sword. +Where is John Talbot? Pause, and take thy breath; +I gave thee life and rescued thee from death. + +JOHN TALBOT: +O, twice my father, twice am I thy son! +The life thou gavest me first was lost and done, +Till with thy warlike sword, despite of late, +To my determined time thou gavest new date. + +TALBOT: +When from the Dauphin's crest thy sword struck fire, +It warm'd thy father's heart with proud desire +Of bold-faced victory. Then leaden age, +Quicken'd with youthful spleen and warlike rage, +Beat down Alencon, Orleans, Burgundy, +And from the pride of Gallia rescued thee. +The ireful bastard Orleans, that drew blood +From thee, my boy, and had the maidenhood +Of thy first fight, I soon encountered, +And interchanging blows I quickly shed +Some of his bastard blood; and in disgrace +Bespoke him thus; 'Contaminated, base +And misbegotten blood I spill of thine, +Mean and right poor, for that pure blood of mine +Which thou didst force from Talbot, my brave boy:' +Here, purposing the Bastard to destroy, +Came in strong rescue. Speak, thy father's care, +Art thou not weary, John? how dost thou fare? +Wilt thou yet leave the battle, boy, and fly, +Now thou art seal'd the son of chivalry? +Fly, to revenge my death when I am dead: +The help of one stands me in little stead. +O, too much folly is it, well I wot, +To hazard all our lives in one small boat! +If I to-day die not with Frenchmen's rage, +To-morrow I shall die with mickle age: +By me they nothing gain an if I stay; +'Tis but the shortening of my life one day: +In thee thy mother dies, our household's name, +My death's revenge, thy youth, and England's fame: +All these and more we hazard by thy stay; +All these are saved if thou wilt fly away. + +JOHN TALBOT: +The sword of Orleans hath not made me smart; +These words of yours draw life-blood from my heart: +On that advantage, bought with such a shame, +To save a paltry life and slay bright fame, +Before young Talbot from old Talbot fly, +The coward horse that bears me fail and die! +And like me to the peasant boys of France, +To be shame's scorn and subject of mischance! +Surely, by all the glory you have won, +An if I fly, I am not Talbot's son: +Then talk no more of flight, it is no boot; +If son to Talbot, die at Talbot's foot. + +TALBOT: +Then follow thou thy desperate sire of Crete, +Thou Icarus; thy life to me is sweet: +If thou wilt fight, fight by thy father's side; +And, commendable proved, let's die in pride. + +TALBOT: +Where is my other life? mine own is gone; +O, where's young Talbot? where is valiant John? +Triumphant death, smear'd with captivity, +Young Talbot's valour makes me smile at thee: +When he perceived me shrink and on my knee, +His bloody sword he brandish'd over me, +And, like a hungry lion, did commence +Rough deeds of rage and stern impatience; +But when my angry guardant stood alone, +Tendering my ruin and assail'd of none, +Dizzy-eyed fury and great rage of heart +Suddenly made him from my side to start +Into the clustering battle of the French; +And in that sea of blood my boy did drench +His over-mounting spirit, and there died, +My Icarus, my blossom, in his pride. + +Servant: +O, my dear lord, lo, where your son is borne! + +TALBOT: +Thou antic death, which laugh'st us here to scorn, +Anon, from thy insulting tyranny, +Coupled in bonds of perpetuity, +Two Talbots, winged through the lither sky, +In thy despite shall 'scape mortality. +O, thou, whose wounds become hard-favour'd death, +Speak to thy father ere thou yield thy breath! +Brave death by speaking, whether he will or no; +Imagine him a Frenchman and thy foe. +Poor boy! he smiles, methinks, as who should say, +Had death been French, then death had died to-day. +Come, come and lay him in his father's arms: +My spirit can no longer bear these harms. +Soldiers, adieu! I have what I would have, +Now my old arms are young John Talbot's grave. + +CHARLES: +Had York and Somerset brought rescue in, +We should have found a bloody day of this. + +BASTARD OF ORLEANS: +How the young whelp of Talbot's, raging-wood, +Did flesh his puny sword in Frenchmen's blood! + +JOAN LA PUCELLE: +Once I encounter'd him, and thus I said: +'Thou maiden youth, be vanquish'd by a maid:' +But, with a proud majestical high scorn, +He answer'd thus: 'Young Talbot was not born +To be the pillage of a giglot wench:' +So, rushing in the bowels of the French, +He left me proudly, as unworthy fight. + +BURGUNDY: +Doubtless he would have made a noble knight; +See, where he lies inhearsed in the arms +Of the most bloody nurser of his harms! + +BASTARD OF ORLEANS: +Hew them to pieces, hack their bones asunder +Whose life was England's glory, Gallia's wonder. + +CHARLES: +O, no, forbear! for that which we have fled +During the life, let us not wrong it dead. + +LUCY: +Herald, conduct me to the Dauphin's tent, +To know who hath obtained the glory of the day. + +CHARLES: +On what submissive message art thou sent? + +LUCY: +Submission, Dauphin! 'tis a mere French word; +We English warriors wot not what it means. +I come to know what prisoners thou hast ta'en +And to survey the bodies of the dead. + +CHARLES: +For prisoners ask'st thou? hell our prison is. +But tell me whom thou seek'st. + +LUCY: +But where's the great Alcides of the field, +Valiant Lord Talbot, Earl of Shrewsbury, +Created, for his rare success in arms, +Great Earl of Washford, Waterford and Valence; +Lord Talbot of Goodrig and Urchinfield, +Lord Strange of Blackmere, Lord Verdun of Alton, +Lord Cromwell of Wingfield, Lord Furnival of Sheffield, +The thrice-victorious Lord of Falconbridge; +Knight of the noble order of Saint George, +Worthy Saint Michael and the Golden Fleece; +Great marshal to Henry the Sixth +Of all his wars within the realm of France? + +JOAN LA PUCELLE: +Here is a silly stately style indeed! +The Turk, that two and fifty kingdoms hath, +Writes not so tedious a style as this. +Him that thou magnifiest with all these titles +Stinking and fly-blown lies here at our feet. + +LUCY: +Is Talbot slain, the Frenchmen's only scourge, +Your kingdom's terror and black Nemesis? +O, were mine eyeballs into bullets turn'd, +That I in rage might shoot them at your faces! +O, that I could but call these dead to life! +It were enough to fright the realm of France: +Were but his picture left amongst you here, +It would amaze the proudest of you all. +Give me their bodies, that I may bear them hence +And give them burial as beseems their worth. + +JOAN LA PUCELLE: +I think this upstart is old Talbot's ghost, +He speaks with such a proud commanding spirit. +For God's sake let him have 'em; to keep them here, +They would but stink, and putrefy the air. + +CHARLES: +Go, take their bodies hence. + +LUCY: +I'll bear them hence; but from their ashes shall be rear'd +A phoenix that shall make all France afeard. + +CHARLES: +So we be rid of them, do with 'em what thou wilt. +And now to Paris, in this conquering vein: +All will be ours, now bloody Talbot's slain. + +KING HENRY VI: +Have you perused the letters from the pope, +The emperor and the Earl of Armagnac? + +GLOUCESTER: +I have, my lord: and their intent is this: +They humbly sue unto your excellence +To have a godly peace concluded of +Between the realms of England and of France. + +KING HENRY VI: +How doth your grace affect their motion? + +GLOUCESTER: +Well, my good lord; and as the only means +To stop effusion of our Christian blood +And 'stablish quietness on every side. + +KING HENRY VI: +Ay, marry, uncle; for I always thought +It was both impious and unnatural +That such immanity and bloody strife +Should reign among professors of one faith. + +GLOUCESTER: +Beside, my lord, the sooner to effect +And surer bind this knot of amity, +The Earl of Armagnac, near knit to Charles, +A man of great authority in France, +Proffers his only daughter to your grace +In marriage, with a large and sumptuous dowry. + +KING HENRY VI: +Marriage, uncle! alas, my years are young! +And fitter is my study and my books +Than wanton dalliance with a paramour. +Yet call the ambassador; and, as you please, +So let them have their answers every one: +I shall be well content with any choice +Tends to God's glory and my country's weal. + +EXETER: +What! is my Lord of Winchester install'd, +And call'd unto a cardinal's degree? +Then I perceive that will be verified +Henry the Fifth did sometime prophesy, +'If once he come to be a cardinal, +He'll make his cap co-equal with the crown.' + +KING HENRY VI: +My lords ambassadors, your several suits +Have been consider'd and debated on. +And therefore are we certainly resolved +To draw conditions of a friendly peace; +Which by my Lord of Winchester we mean +Shall be transported presently to France. + +GLOUCESTER: +And for the proffer of my lord your master, +I have inform'd his highness so at large +As liking of the lady's virtuous gifts, +Her beauty and the value of her dower, +He doth intend she shall be England's queen. + +KING HENRY VI: +In argument and proof of which contract, +Bear her this jewel, pledge of my affection. +And so, my lord protector, see them guarded +And safely brought to Dover; where inshipp'd +Commit them to the fortune of the sea. + +CARDINAL OF WINCHESTER: +Stay, my lord legate: you shall first receive +The sum of money which I promised +Should be deliver'd to his holiness +For clothing me in these grave ornaments. + +Legate: +I will attend upon your lordship's leisure. + +CARDINAL OF WINCHESTER: + +CHARLES: +These news, my lord, may cheer our drooping spirits: +'Tis said the stout Parisians do revolt +And turn again unto the warlike French. + +ALENCON: +Then march to Paris, royal Charles of France, +And keep not back your powers in dalliance. + +JOAN LA PUCELLE: +Peace be amongst them, if they turn to us; +Else, ruin combat with their palaces! + +Scout: +Success unto our valiant general, +And happiness to his accomplices! + +CHARLES: +What tidings send our scouts? I prithee, speak. + +Scout: +The English army, that divided was +Into two parties, is now conjoined in one, +And means to give you battle presently. + +CHARLES: +Somewhat too sudden, sirs, the warning is; +But we will presently provide for them. + +BURGUNDY: +I trust the ghost of Talbot is not there: +Now he is gone, my lord, you need not fear. + +JOAN LA PUCELLE: +Of all base passions, fear is most accursed. +Command the conquest, Charles, it shall be thine, +Let Henry fret and all the world repine. + +CHARLES: +Then on, my lords; and France be fortunate! + +JOAN LA PUCELLE: +The regent conquers, and the Frenchmen fly. +Now help, ye charming spells and periapts; +And ye choice spirits that admonish me +And give me signs of future accidents. +You speedy helpers, that are substitutes +Under the lordly monarch of the north, +Appear and aid me in this enterprise. +This speedy and quick appearance argues proof +Of your accustom'd diligence to me. +Now, ye familiar spirits, that are cull'd +Out of the powerful regions under earth, +Help me this once, that France may get the field. +O, hold me not with silence over-long! +Where I was wont to feed you with my blood, +I'll lop a member off and give it you +In earnest of further benefit, +So you do condescend to help me now. +No hope to have redress? My body shall +Pay recompense, if you will grant my suit. +Cannot my body nor blood-sacrifice +Entreat you to your wonted furtherance? +Then take my soul, my body, soul and all, +Before that England give the French the foil. +See, they forsake me! Now the time is come +That France must vail her lofty-plumed crest +And let her head fall into England's lap. +My ancient incantations are too weak, +And hell too strong for me to buckle with: +Now, France, thy glory droopeth to the dust. + +YORK: +Damsel of France, I think I have you fast: +Unchain your spirits now with spelling charms +And try if they can gain your liberty. +A goodly prize, fit for the devil's grace! +See, how the ugly wench doth bend her brows, +As if with Circe she would change my shape! + +JOAN LA PUCELLE: +Changed to a worser shape thou canst not be. + +YORK: +O, Charles the Dauphin is a proper man; +No shape but his can please your dainty eye. + +JOAN LA PUCELLE: +A plaguing mischief light on Charles and thee! +And may ye both be suddenly surprised +By bloody hands, in sleeping on your beds! + +YORK: +Fell banning hag, enchantress, hold thy tongue! + +JOAN LA PUCELLE: +I prithee, give me leave to curse awhile. + +YORK: +Curse, miscreant, when thou comest to the stake. + +SUFFOLK: +Be what thou wilt, thou art my prisoner. +O fairest beauty, do not fear nor fly! +For I will touch thee but with reverent hands; +I kiss these fingers for eternal peace, +And lay them gently on thy tender side. +Who art thou? say, that I may honour thee. + +MARGARET: +Margaret my name, and daughter to a king, +The King of Naples, whosoe'er thou art. + +SUFFOLK: +An earl I am, and Suffolk am I call'd. +Be not offended, nature's miracle, +Thou art allotted to be ta'en by me: +So doth the swan her downy cygnets save, +Keeping them prisoner underneath her wings. +Yet, if this servile usage once offend. +Go, and be free again, as Suffolk's friend. +O, stay! I have no power to let her pass; +My hand would free her, but my heart says no +As plays the sun upon the glassy streams, +Twinkling another counterfeited beam, +So seems this gorgeous beauty to mine eyes. +Fain would I woo her, yet I dare not speak: +I'll call for pen and ink, and write my mind. +Fie, de la Pole! disable not thyself; +Hast not a tongue? is she not here? +Wilt thou be daunted at a woman's sight? +Ay, beauty's princely majesty is such, +Confounds the tongue and makes the senses rough. + +MARGARET: +Say, Earl of Suffolk--if thy name be so-- +What ransom must I pay before I pass? +For I perceive I am thy prisoner. + +SUFFOLK: +How canst thou tell she will deny thy suit, +Before thou make a trial of her love? + +MARGARET: +Why speak'st thou not? what ransom must I pay? + +SUFFOLK: +She's beautiful, and therefore to be woo'd; +She is a woman, therefore to be won. + +MARGARET: +Wilt thou accept of ransom? yea, or no. + +SUFFOLK: +Fond man, remember that thou hast a wife; +Then how can Margaret be thy paramour? + +MARGARET: +I were best to leave him, for he will not hear. + +SUFFOLK: +There all is marr'd; there lies a cooling card. + +MARGARET: +He talks at random; sure, the man is mad. + +SUFFOLK: +And yet a dispensation may be had. + +MARGARET: +And yet I would that you would answer me. + +SUFFOLK: +I'll win this Lady Margaret. For whom? +Why, for my king: tush, that's a wooden thing! + +MARGARET: +He talks of wood: it is some carpenter. + +SUFFOLK: +Yet so my fancy may be satisfied, +And peace established between these realms +But there remains a scruple in that too; +For though her father be the King of Naples, +Duke of Anjou and Maine, yet is he poor, +And our nobility will scorn the match. + +MARGARET: +Hear ye, captain, are you not at leisure? + +SUFFOLK: +It shall be so, disdain they ne'er so much. +Henry is youthful and will quickly yield. +Madam, I have a secret to reveal. + +MARGARET: +What though I be enthrall'd? he seems a knight, +And will not any way dishonour me. + +SUFFOLK: +Lady, vouchsafe to listen what I say. + +MARGARET: +Perhaps I shall be rescued by the French; +And then I need not crave his courtesy. + +SUFFOLK: +Sweet madam, give me a hearing in a cause-- + +MARGARET: +Tush, women have been captivate ere now. + +SUFFOLK: +Lady, wherefore talk you so? + +MARGARET: +I cry you mercy, 'tis but Quid for Quo. + +SUFFOLK: +Say, gentle princess, would you not suppose +Your bondage happy, to be made a queen? + +MARGARET: +To be a queen in bondage is more vile +Than is a slave in base servility; +For princes should be free. + +SUFFOLK: +And so shall you, +If happy England's royal king be free. + +MARGARET: +Why, what concerns his freedom unto me? + +SUFFOLK: +I'll undertake to make thee Henry's queen, +To put a golden sceptre in thy hand +And set a precious crown upon thy head, +If thou wilt condescend to be my-- + +MARGARET: +What? + +SUFFOLK: +His love. + +MARGARET: +I am unworthy to be Henry's wife. + +SUFFOLK: +No, gentle madam; I unworthy am +To woo so fair a dame to be his wife, +And have no portion in the choice myself. +How say you, madam, are ye so content? + +MARGARET: +An if my father please, I am content. + +SUFFOLK: +Then call our captains and our colours forth. +And, madam, at your father's castle walls +We'll crave a parley, to confer with him. +See, Reignier, see, thy daughter prisoner! + +REIGNIER: +To whom? + +SUFFOLK: +To me. + +REIGNIER: +Suffolk, what remedy? +I am a soldier, and unapt to weep, +Or to exclaim on fortune's fickleness. + +SUFFOLK: +Yes, there is remedy enough, my lord: +Consent, and for thy honour give consent, +Thy daughter shall be wedded to my king; +Whom I with pain have woo'd and won thereto; +And this her easy-held imprisonment +Hath gained thy daughter princely liberty. + +REIGNIER: +Speaks Suffolk as he thinks? + +SUFFOLK: +Fair Margaret knows +That Suffolk doth not flatter, face, or feign. + +REIGNIER: +Upon thy princely warrant, I descend +To give thee answer of thy just demand. + +SUFFOLK: +And here I will expect thy coming. + +REIGNIER: +Welcome, brave earl, into our territories: +Command in Anjou what your honour pleases. + +SUFFOLK: +Thanks, Reignier, happy for so sweet a child, +Fit to be made companion with a king: +What answer makes your grace unto my suit? + +REIGNIER: +Since thou dost deign to woo her little worth +To be the princely bride of such a lord; +Upon condition I may quietly +Enjoy mine own, the country Maine and Anjou, +Free from oppression or the stroke of war, +My daughter shall be Henry's, if he please. + +SUFFOLK: +That is her ransom; I deliver her; +And those two counties I will undertake +Your grace shall well and quietly enjoy. + +REIGNIER: +And I again, in Henry's royal name, +As deputy unto that gracious king, +Give thee her hand, for sign of plighted faith. + +SUFFOLK: +Reignier of France, I give thee kingly thanks, +Because this is in traffic of a king. +And yet, methinks, I could be well content +To be mine own attorney in this case. +I'll over then to England with this news, +And make this marriage to be solemnized. +So farewell, Reignier: set this diamond safe +In golden palaces, as it becomes. + +REIGNIER: +I do embrace thee, as I would embrace +The Christian prince, King Henry, were he here. + +MARGARET: +Farewell, my lord: good wishes, praise and prayers +Shall Suffolk ever have of Margaret. + +SUFFOLK: +Farewell, sweet madam: but hark you, Margaret; +No princely commendations to my king? + +MARGARET: +Such commendations as becomes a maid, +A virgin and his servant, say to him. + +SUFFOLK: +Words sweetly placed and modestly directed. +But madam, I must trouble you again; +No loving token to his majesty? + +MARGARET: +Yes, my good lord, a pure unspotted heart, +Never yet taint with love, I send the king. + +SUFFOLK: +And this withal. + +MARGARET: +That for thyself: I will not so presume +To send such peevish tokens to a king. + +SUFFOLK: +O, wert thou for myself! But, Suffolk, stay; +Thou mayst not wander in that labyrinth; +There Minotaurs and ugly treasons lurk. +Solicit Henry with her wondrous praise: +Bethink thee on her virtues that surmount, +And natural graces that extinguish art; +Repeat their semblance often on the seas, +That, when thou comest to kneel at Henry's feet, +Thou mayst bereave him of his wits with wonder. + +YORK: +Bring forth that sorceress condemn'd to burn. + +Shepherd: +Ah, Joan, this kills thy father's heart outright! +Have I sought every country far and near, +And, now it is my chance to find thee out, +Must I behold thy timeless cruel death? +Ah, Joan, sweet daughter Joan, I'll die with thee! + +JOAN LA PUCELLE: +Decrepit miser! base ignoble wretch! +I am descended of a gentler blood: +Thou art no father nor no friend of mine. + +Shepherd: +Out, out! My lords, an please you, 'tis not so; +I did beget her, all the parish knows: +Her mother liveth yet, can testify +She was the first fruit of my bachelorship. + +WARWICK: +Graceless! wilt thou deny thy parentage? + +YORK: +This argues what her kind of life hath been, +Wicked and vile; and so her death concludes. + +Shepherd: +Fie, Joan, that thou wilt be so obstacle! +God knows thou art a collop of my flesh; +And for thy sake have I shed many a tear: +Deny me not, I prithee, gentle Joan. + +JOAN LA PUCELLE: +Peasant, avaunt! You have suborn'd this man, +Of purpose to obscure my noble birth. + +Shepherd: +'Tis true, I gave a noble to the priest +The morn that I was wedded to her mother. +Kneel down and take my blessing, good my girl. +Wilt thou not stoop? Now cursed be the time +Of thy nativity! I would the milk +Thy mother gave thee when thou suck'dst her breast, +Had been a little ratsbane for thy sake! +Or else, when thou didst keep my lambs a-field, +I wish some ravenous wolf had eaten thee! +Dost thou deny thy father, cursed drab? +O, burn her, burn her! hanging is too good. + +YORK: +Take her away; for she hath lived too long, +To fill the world with vicious qualities. + +JOAN LA PUCELLE: +First, let me tell you whom you have condemn'd: +Not me begotten of a shepherd swain, +But issued from the progeny of kings; +Virtuous and holy; chosen from above, +By inspiration of celestial grace, +To work exceeding miracles on earth. +I never had to do with wicked spirits: +But you, that are polluted with your lusts, +Stain'd with the guiltless blood of innocents, +Corrupt and tainted with a thousand vices, +Because you want the grace that others have, +You judge it straight a thing impossible +To compass wonders but by help of devils. +No, misconceived! Joan of Arc hath been +A virgin from her tender infancy, +Chaste and immaculate in very thought; +Whose maiden blood, thus rigorously effused, +Will cry for vengeance at the gates of heaven. + +YORK: +Ay, ay: away with her to execution! + +WARWICK: +And hark ye, sirs; because she is a maid, +Spare for no faggots, let there be enow: +Place barrels of pitch upon the fatal stake, +That so her torture may be shortened. + +JOAN LA PUCELLE: +Will nothing turn your unrelenting hearts? +Then, Joan, discover thine infirmity, +That warranteth by law to be thy privilege. +I am with child, ye bloody homicides: +Murder not then the fruit within my womb, +Although ye hale me to a violent death. + +YORK: +Now heaven forfend! the holy maid with child! + +WARWICK: +The greatest miracle that e'er ye wrought: +Is all your strict preciseness come to this? + +YORK: +She and the Dauphin have been juggling: +I did imagine what would be her refuge. + +WARWICK: +Well, go to; we'll have no bastards live; +Especially since Charles must father it. + +JOAN LA PUCELLE: +You are deceived; my child is none of his: +It was Alencon that enjoy'd my love. + +YORK: +Alencon! that notorious Machiavel! +It dies, an if it had a thousand lives. + +JOAN LA PUCELLE: +O, give me leave, I have deluded you: +'Twas neither Charles nor yet the duke I named, +But Reignier, king of Naples, that prevail'd. + +WARWICK: +A married man! that's most intolerable. + +YORK: +Why, here's a girl! I think she knows not well, +There were so many, whom she may accuse. + +WARWICK: +It's sign she hath been liberal and free. + +YORK: +And yet, forsooth, she is a virgin pure. +Strumpet, thy words condemn thy brat and thee: +Use no entreaty, for it is in vain. + +JOAN LA PUCELLE: +Then lead me hence; with whom I leave my curse: +May never glorious sun reflex his beams +Upon the country where you make abode; +But darkness and the gloomy shade of death +Environ you, till mischief and despair +Drive you to break your necks or hang yourselves! + +YORK: +Break thou in pieces and consume to ashes, +Thou foul accursed minister of hell! + +CARDINAL OF WINCHESTER: +Lord regent, I do greet your excellence +With letters of commission from the king. +For know, my lords, the states of Christendom, +Moved with remorse of these outrageous broils, +Have earnestly implored a general peace +Betwixt our nation and the aspiring French; +And here at hand the Dauphin and his train +Approacheth, to confer about some matter. + +YORK: +Is all our travail turn'd to this effect? +After the slaughter of so many peers, +So many captains, gentlemen and soldiers, +That in this quarrel have been overthrown +And sold their bodies for their country's benefit, +Shall we at last conclude effeminate peace? +Have we not lost most part of all the towns, +By treason, falsehood and by treachery, +Our great progenitors had conquered? +O Warwick, Warwick! I foresee with grief +The utter loss of all the realm of France. + +WARWICK: +Be patient, York: if we conclude a peace, +It shall be with such strict and severe covenants +As little shall the Frenchmen gain thereby. + +CHARLES: +Since, lords of England, it is thus agreed +That peaceful truce shall be proclaim'd in France, +We come to be informed by yourselves +What the conditions of that league must be. + +YORK: +Speak, Winchester; for boiling choler chokes +The hollow passage of my poison'd voice, +By sight of these our baleful enemies. + +CARDINAL OF WINCHESTER: +Charles, and the rest, it is enacted thus: +That, in regard King Henry gives consent, +Of mere compassion and of lenity, +To ease your country of distressful war, +And suffer you to breathe in fruitful peace, +You shall become true liegemen to his crown: +And Charles, upon condition thou wilt swear +To pay him tribute, submit thyself, +Thou shalt be placed as viceroy under him, +And still enjoy thy regal dignity. + +ALENCON: +Must he be then as shadow of himself? +Adorn his temples with a coronet, +And yet, in substance and authority, +Retain but privilege of a private man? +This proffer is absurd and reasonless. + +CHARLES: +'Tis known already that I am possess'd +With more than half the Gallian territories, +And therein reverenced for their lawful king: +Shall I, for lucre of the rest unvanquish'd, +Detract so much from that prerogative, +As to be call'd but viceroy of the whole? +No, lord ambassador, I'll rather keep +That which I have than, coveting for more, +Be cast from possibility of all. + +YORK: +Insulting Charles! hast thou by secret means +Used intercession to obtain a league, +And, now the matter grows to compromise, +Stand'st thou aloof upon comparison? +Either accept the title thou usurp'st, +Of benefit proceeding from our king +And not of any challenge of desert, +Or we will plague thee with incessant wars. + +REIGNIER: +My lord, you do not well in obstinacy +To cavil in the course of this contract: +If once it be neglected, ten to one +We shall not find like opportunity. + +ALENCON: +To say the truth, it is your policy +To save your subjects from such massacre +And ruthless slaughters as are daily seen +By our proceeding in hostility; +And therefore take this compact of a truce, +Although you break it when your pleasure serves. + +WARWICK: +How say'st thou, Charles? shall our condition stand? + +CHARLES: +It shall; +Only reserved, you claim no interest +In any of our towns of garrison. + +YORK: +Then swear allegiance to his majesty, +As thou art knight, never to disobey +Nor be rebellious to the crown of England, +Thou, nor thy nobles, to the crown of England. +So, now dismiss your army when ye please: +Hang up your ensign, let your drums be still, +For here we entertain a solemn peace. + +KING HENRY VI: +Your wondrous rare description, noble earl, +Of beauteous Margaret hath astonish'd me: +Her virtues graced with external gifts +Do breed love's settled passions in my heart: +And like as rigor of tempestuous gusts +Provokes the mightiest hulk against the tide, +So am I driven by breath of her renown +Either to suffer shipwreck or arrive +Where I may have fruition of her love. + +SUFFOLK: +Tush, my good lord, this superficial tale +Is but a preface of her worthy praise; +The chief perfections of that lovely dame +Had I sufficient skill to utter them, +Would make a volume of enticing lines, +Able to ravish any dull conceit: +And, which is more, she is not so divine, +So full-replete with choice of all delights, +But with as humble lowliness of mind +She is content to be at your command; +Command, I mean, of virtuous chaste intents, +To love and honour Henry as her lord. + +KING HENRY VI: +And otherwise will Henry ne'er presume. +Therefore, my lord protector, give consent +That Margaret may be England's royal queen. + +GLOUCESTER: +So should I give consent to flatter sin. +You know, my lord, your highness is betroth'd +Unto another lady of esteem: +How shall we then dispense with that contract, +And not deface your honour with reproach? + +SUFFOLK: +As doth a ruler with unlawful oaths; +Or one that, at a triumph having vow'd +To try his strength, forsaketh yet the lists +By reason of his adversary's odds: +A poor earl's daughter is unequal odds, +And therefore may be broke without offence. + +GLOUCESTER: +Why, what, I pray, is Margaret more than that? +Her father is no better than an earl, +Although in glorious titles he excel. + +SUFFOLK: +Yes, lord, her father is a king, +The King of Naples and Jerusalem; +And of such great authority in France +As his alliance will confirm our peace +And keep the Frenchmen in allegiance. + +GLOUCESTER: +And so the Earl of Armagnac may do, +Because he is near kinsman unto Charles. + +EXETER: +Beside, his wealth doth warrant a liberal dower, +Where Reignier sooner will receive than give. + +SUFFOLK: +A dower, my lords! disgrace not so your king, +That he should be so abject, base and poor, +To choose for wealth and not for perfect love. +Henry is able to enrich his queen +And not seek a queen to make him rich: +So worthless peasants bargain for their wives, +As market-men for oxen, sheep, or horse. +Marriage is a matter of more worth +Than to be dealt in by attorneyship; +Not whom we will, but whom his grace affects, +Must be companion of his nuptial bed: +And therefore, lords, since he affects her most, +It most of all these reasons bindeth us, +In our opinions she should be preferr'd. +For what is wedlock forced but a hell, +An age of discord and continual strife? +Whereas the contrary bringeth bliss, +And is a pattern of celestial peace. +Whom should we match with Henry, being a king, +But Margaret, that is daughter to a king? +Her peerless feature, joined with her birth, +Approves her fit for none but for a king: +Her valiant courage and undaunted spirit, +More than in women commonly is seen, +Will answer our hope in issue of a king; +For Henry, son unto a conqueror, +Is likely to beget more conquerors, +If with a lady of so high resolve +As is fair Margaret he be link'd in love. +Then yield, my lords; and here conclude with me +That Margaret shall be queen, and none but she. + +KING HENRY VI: +Whether it be through force of your report, +My noble Lord of Suffolk, or for that +My tender youth was never yet attaint +With any passion of inflaming love, +I cannot tell; but this I am assured, +I feel such sharp dissension in my breast, +Such fierce alarums both of hope and fear, +As I am sick with working of my thoughts. +Take, therefore, shipping; post, my lord, to France; +Agree to any covenants, and procure +That Lady Margaret do vouchsafe to come +To cross the seas to England and be crown'd +King Henry's faithful and anointed queen: +For your expenses and sufficient charge, +Among the people gather up a tenth. +Be gone, I say; for, till you do return, +I rest perplexed with a thousand cares. +And you, good uncle, banish all offence: +If you do censure me by what you were, +Not what you are, I know it will excuse +This sudden execution of my will. +And so, conduct me where, from company, +I may revolve and ruminate my grief. + +GLOUCESTER: +Ay, grief, I fear me, both at first and last. + +SUFFOLK: +Thus Suffolk hath prevail'd; and thus he goes, +As did the youthful Paris once to Greece, +With hope to find the like event in love, +But prosper better than the Trojan did. +Margaret shall now be queen, and rule the king; +But I will rule both her, the king and realm. + +FLAVIUS: +Hence! home, you idle creatures get you home: +Is this a holiday? what! know you not, +Being mechanical, you ought not walk +Upon a labouring day without the sign +Of your profession? Speak, what trade art thou? + +First Commoner: +Why, sir, a carpenter. + +MARULLUS: +Where is thy leather apron and thy rule? +What dost thou with thy best apparel on? +You, sir, what trade are you? + +Second Commoner: +Truly, sir, in respect of a fine workman, I am but, +as you would say, a cobbler. + +MARULLUS: +But what trade art thou? answer me directly. + +Second Commoner: +A trade, sir, that, I hope, I may use with a safe +conscience; which is, indeed, sir, a mender of bad soles. + +MARULLUS: +What trade, thou knave? thou naughty knave, what trade? + +Second Commoner: +Nay, I beseech you, sir, be not out with me: yet, +if you be out, sir, I can mend you. + +MARULLUS: +What meanest thou by that? mend me, thou saucy fellow! + +Second Commoner: +Why, sir, cobble you. + +FLAVIUS: +Thou art a cobbler, art thou? + +Second Commoner: +Truly, sir, all that I live by is with the awl: I +meddle with no tradesman's matters, nor women's +matters, but with awl. I am, indeed, sir, a surgeon +to old shoes; when they are in great danger, I +recover them. As proper men as ever trod upon +neat's leather have gone upon my handiwork. + +FLAVIUS: +But wherefore art not in thy shop today? +Why dost thou lead these men about the streets? + +Second Commoner: +Truly, sir, to wear out their shoes, to get myself +into more work. But, indeed, sir, we make holiday, +to see Caesar and to rejoice in his triumph. + +MARULLUS: +Wherefore rejoice? What conquest brings he home? +What tributaries follow him to Rome, +To grace in captive bonds his chariot-wheels? +You blocks, you stones, you worse than senseless things! +O you hard hearts, you cruel men of Rome, +Knew you not Pompey? Many a time and oft +Have you climb'd up to walls and battlements, +To towers and windows, yea, to chimney-tops, +Your infants in your arms, and there have sat +The livelong day, with patient expectation, +To see great Pompey pass the streets of Rome: +And when you saw his chariot but appear, +Have you not made an universal shout, +That Tiber trembled underneath her banks, +To hear the replication of your sounds +Made in her concave shores? +And do you now put on your best attire? +And do you now cull out a holiday? +And do you now strew flowers in his way +That comes in triumph over Pompey's blood? Be gone! +Run to your houses, fall upon your knees, +Pray to the gods to intermit the plague +That needs must light on this ingratitude. + +FLAVIUS: +Go, go, good countrymen, and, for this fault, +Assemble all the poor men of your sort; +Draw them to Tiber banks, and weep your tears +Into the channel, till the lowest stream +Do kiss the most exalted shores of all. +See whether their basest metal be not moved; +They vanish tongue-tied in their guiltiness. +Go you down that way towards the Capitol; +This way will I disrobe the images, +If you do find them deck'd with ceremonies. + +MARULLUS: +May we do so? +You know it is the feast of Lupercal. + +FLAVIUS: +It is no matter; let no images +Be hung with Caesar's trophies. I'll about, +And drive away the vulgar from the streets: +So do you too, where you perceive them thick. +These growing feathers pluck'd from Caesar's wing +Will make him fly an ordinary pitch, +Who else would soar above the view of men +And keep us all in servile fearfulness. + +CAESAR: +Calpurnia! + +CASCA: +Peace, ho! Caesar speaks. + +CAESAR: +Calpurnia! + +CALPURNIA: +Here, my lord. + +CAESAR: +Stand you directly in Antonius' way, +When he doth run his course. Antonius! + +ANTONY: +Caesar, my lord? + +CAESAR: +Forget not, in your speed, Antonius, +To touch Calpurnia; for our elders say, +The barren, touched in this holy chase, +Shake off their sterile curse. + +ANTONY: +I shall remember: +When Caesar says 'do this,' it is perform'd. + +CAESAR: +Set on; and leave no ceremony out. + +Soothsayer: +Caesar! + +CAESAR: +Ha! who calls? + +CASCA: +Bid every noise be still: peace yet again! + +CAESAR: +Who is it in the press that calls on me? +I hear a tongue, shriller than all the music, +Cry 'Caesar!' Speak; Caesar is turn'd to hear. + +Soothsayer: +Beware the ides of March. + +CAESAR: +What man is that? + +BRUTUS: +A soothsayer bids you beware the ides of March. + +CAESAR: +Set him before me; let me see his face. + +CASSIUS: +Fellow, come from the throng; look upon Caesar. + +CAESAR: +What say'st thou to me now? speak once again. + +Soothsayer: +Beware the ides of March. + +CAESAR: +He is a dreamer; let us leave him: pass. + +CASSIUS: +Will you go see the order of the course? + +BRUTUS: +Not I. + +CASSIUS: +I pray you, do. + +BRUTUS: +I am not gamesome: I do lack some part +Of that quick spirit that is in Antony. +Let me not hinder, Cassius, your desires; +I'll leave you. + +CASSIUS: +Brutus, I do observe you now of late: +I have not from your eyes that gentleness +And show of love as I was wont to have: +You bear too stubborn and too strange a hand +Over your friend that loves you. + +BRUTUS: +Cassius, +Be not deceived: if I have veil'd my look, +I turn the trouble of my countenance +Merely upon myself. Vexed I am +Of late with passions of some difference, +Conceptions only proper to myself, +Which give some soil perhaps to my behaviors; +But let not therefore my good friends be grieved-- +Among which number, Cassius, be you one-- +Nor construe any further my neglect, +Than that poor Brutus, with himself at war, +Forgets the shows of love to other men. + +CASSIUS: +Then, Brutus, I have much mistook your passion; +By means whereof this breast of mine hath buried +Thoughts of great value, worthy cogitations. +Tell me, good Brutus, can you see your face? + +BRUTUS: +No, Cassius; for the eye sees not itself, +But by reflection, by some other things. + +CASSIUS: +'Tis just: +And it is very much lamented, Brutus, +That you have no such mirrors as will turn +Your hidden worthiness into your eye, +That you might see your shadow. I have heard, +Where many of the best respect in Rome, +Except immortal Caesar, speaking of Brutus +And groaning underneath this age's yoke, +Have wish'd that noble Brutus had his eyes. + +BRUTUS: +Into what dangers would you lead me, Cassius, +That you would have me seek into myself +For that which is not in me? + +CASSIUS: +Therefore, good Brutus, be prepared to hear: +And since you know you cannot see yourself +So well as by reflection, I, your glass, +Will modestly discover to yourself +That of yourself which you yet know not of. +And be not jealous on me, gentle Brutus: +Were I a common laugher, or did use +To stale with ordinary oaths my love +To every new protester; if you know +That I do fawn on men and hug them hard +And after scandal them, or if you know +That I profess myself in banqueting +To all the rout, then hold me dangerous. + +BRUTUS: +What means this shouting? I do fear, the people +Choose Caesar for their king. + +CASSIUS: +Ay, do you fear it? +Then must I think you would not have it so. + +BRUTUS: +I would not, Cassius; yet I love him well. +But wherefore do you hold me here so long? +What is it that you would impart to me? +If it be aught toward the general good, +Set honour in one eye and death i' the other, +And I will look on both indifferently, +For let the gods so speed me as I love +The name of honour more than I fear death. + +CASSIUS: +I know that virtue to be in you, Brutus, +As well as I do know your outward favour. +Well, honour is the subject of my story. +I cannot tell what you and other men +Think of this life; but, for my single self, +I had as lief not be as live to be +In awe of such a thing as I myself. +I was born free as Caesar; so were you: +We both have fed as well, and we can both +Endure the winter's cold as well as he: +For once, upon a raw and gusty day, +The troubled Tiber chafing with her shores, +Caesar said to me 'Darest thou, Cassius, now +Leap in with me into this angry flood, +And swim to yonder point?' Upon the word, +Accoutred as I was, I plunged in +And bade him follow; so indeed he did. +The torrent roar'd, and we did buffet it +With lusty sinews, throwing it aside +And stemming it with hearts of controversy; +But ere we could arrive the point proposed, +Caesar cried 'Help me, Cassius, or I sink!' +I, as Aeneas, our great ancestor, +Did from the flames of Troy upon his shoulder +The old Anchises bear, so from the waves of Tiber +Did I the tired Caesar. And this man +Is now become a god, and Cassius is +A wretched creature and must bend his body, +If Caesar carelessly but nod on him. +He had a fever when he was in Spain, +And when the fit was on him, I did mark +How he did shake: 'tis true, this god did shake; +His coward lips did from their colour fly, +And that same eye whose bend doth awe the world +Did lose his lustre: I did hear him groan: +Ay, and that tongue of his that bade the Romans +Mark him and write his speeches in their books, +Alas, it cried 'Give me some drink, Titinius,' +As a sick girl. Ye gods, it doth amaze me +A man of such a feeble temper should +So get the start of the majestic world +And bear the palm alone. + +BRUTUS: +Another general shout! +I do believe that these applauses are +For some new honours that are heap'd on Caesar. + +CASSIUS: +Why, man, he doth bestride the narrow world +Like a Colossus, and we petty men +Walk under his huge legs and peep about +To find ourselves dishonourable graves. +Men at some time are masters of their fates: +The fault, dear Brutus, is not in our stars, +But in ourselves, that we are underlings. +Brutus and Caesar: what should be in that 'Caesar'? +Why should that name be sounded more than yours? +Write them together, yours is as fair a name; +Sound them, it doth become the mouth as well; +Weigh them, it is as heavy; conjure with 'em, +Brutus will start a spirit as soon as Caesar. +Now, in the names of all the gods at once, +Upon what meat doth this our Caesar feed, +That he is grown so great? Age, thou art shamed! +Rome, thou hast lost the breed of noble bloods! +When went there by an age, since the great flood, +But it was famed with more than with one man? +When could they say till now, that talk'd of Rome, +That her wide walls encompass'd but one man? +Now is it Rome indeed and room enough, +When there is in it but one only man. +O, you and I have heard our fathers say, +There was a Brutus once that would have brook'd +The eternal devil to keep his state in Rome +As easily as a king. + +BRUTUS: +That you do love me, I am nothing jealous; +What you would work me to, I have some aim: +How I have thought of this and of these times, +I shall recount hereafter; for this present, +I would not, so with love I might entreat you, +Be any further moved. What you have said +I will consider; what you have to say +I will with patience hear, and find a time +Both meet to hear and answer such high things. +Till then, my noble friend, chew upon this: +Brutus had rather be a villager +Than to repute himself a son of Rome +Under these hard conditions as this time +Is like to lay upon us. + +CASSIUS: +I am glad that my weak words +Have struck but thus much show of fire from Brutus. + +BRUTUS: +The games are done and Caesar is returning. + +CASSIUS: +As they pass by, pluck Casca by the sleeve; +And he will, after his sour fashion, tell you +What hath proceeded worthy note to-day. + +BRUTUS: +I will do so. But, look you, Cassius, +The angry spot doth glow on Caesar's brow, +And all the rest look like a chidden train: +Calpurnia's cheek is pale; and Cicero +Looks with such ferret and such fiery eyes +As we have seen him in the Capitol, +Being cross'd in conference by some senators. + +CASSIUS: +Casca will tell us what the matter is. + +CAESAR: +Antonius! + +ANTONY: +Caesar? + +CAESAR: +Let me have men about me that are fat; +Sleek-headed men and such as sleep o' nights: +Yond Cassius has a lean and hungry look; +He thinks too much: such men are dangerous. + +ANTONY: +Fear him not, Caesar; he's not dangerous; +He is a noble Roman and well given. + +CAESAR: +Would he were fatter! But I fear him not: +Yet if my name were liable to fear, +I do not know the man I should avoid +So soon as that spare Cassius. He reads much; +He is a great observer and he looks +Quite through the deeds of men: he loves no plays, +As thou dost, Antony; he hears no music; +Seldom he smiles, and smiles in such a sort +As if he mock'd himself and scorn'd his spirit +That could be moved to smile at any thing. +Such men as he be never at heart's ease +Whiles they behold a greater than themselves, +And therefore are they very dangerous. +I rather tell thee what is to be fear'd +Than what I fear; for always I am Caesar. +Come on my right hand, for this ear is deaf, +And tell me truly what thou think'st of him. + +CASCA: +You pull'd me by the cloak; would you speak with me? + +BRUTUS: +Ay, Casca; tell us what hath chanced to-day, +That Caesar looks so sad. + +CASCA: +Why, you were with him, were you not? + +BRUTUS: +I should not then ask Casca what had chanced. + +CASCA: +Why, there was a crown offered him: and being +offered him, he put it by with the back of his hand, +thus; and then the people fell a-shouting. + +BRUTUS: +What was the second noise for? + +CASCA: +Why, for that too. + +CASSIUS: +They shouted thrice: what was the last cry for? + +CASCA: +Why, for that too. + +BRUTUS: +Was the crown offered him thrice? + +CASCA: +Ay, marry, was't, and he put it by thrice, every +time gentler than other, and at every putting-by +mine honest neighbours shouted. + +CASSIUS: +Who offered him the crown? + +CASCA: +Why, Antony. + +BRUTUS: +Tell us the manner of it, gentle Casca. + +CASCA: +I can as well be hanged as tell the manner of it: +it was mere foolery; I did not mark it. I saw Mark +Antony offer him a crown;--yet 'twas not a crown +neither, 'twas one of these coronets;--and, as I told +you, he put it by once: but, for all that, to my +thinking, he would fain have had it. Then he +offered it to him again; then he put it by again: +but, to my thinking, he was very loath to lay his +fingers off it. And then he offered it the third +time; he put it the third time by: and still as he +refused it, the rabblement hooted and clapped their +chapped hands and threw up their sweaty night-caps +and uttered such a deal of stinking breath because +Caesar refused the crown that it had almost choked +Caesar; for he swounded and fell down at it: and +for mine own part, I durst not laugh, for fear of +opening my lips and receiving the bad air. + +CASSIUS: +But, soft, I pray you: what, did Caesar swound? + +CASCA: +He fell down in the market-place, and foamed at +mouth, and was speechless. + +BRUTUS: +'Tis very like: he hath the failing sickness. + +CASSIUS: +No, Caesar hath it not; but you and I, +And honest Casca, we have the falling sickness. + +CASCA: +I know not what you mean by that; but, I am sure, +Caesar fell down. If the tag-rag people did not +clap him and hiss him, according as he pleased and +displeased them, as they use to do the players in +the theatre, I am no true man. + +BRUTUS: +What said he when he came unto himself? + +CASCA: +Marry, before he fell down, when he perceived the +common herd was glad he refused the crown, he +plucked me ope his doublet and offered them his +throat to cut. An I had been a man of any +occupation, if I would not have taken him at a word, +I would I might go to hell among the rogues. And so +he fell. When he came to himself again, he said, +If he had done or said any thing amiss, he desired +their worships to think it was his infirmity. Three +or four wenches, where I stood, cried 'Alas, good +soul!' and forgave him with all their hearts: but +there's no heed to be taken of them; if Caesar had +stabbed their mothers, they would have done no less. + +BRUTUS: +And after that, he came, thus sad, away? + +CASCA: +Ay. + +CASSIUS: +Did Cicero say any thing? + +CASCA: +Ay, he spoke Greek. + +CASSIUS: +To what effect? + +CASCA: +Nay, an I tell you that, Ill ne'er look you i' the +face again: but those that understood him smiled at +one another and shook their heads; but, for mine own +part, it was Greek to me. I could tell you more +news too: Marullus and Flavius, for pulling scarfs +off Caesar's images, are put to silence. Fare you +well. There was more foolery yet, if I could +remember it. + +CASSIUS: +Will you sup with me to-night, Casca? + +CASCA: +No, I am promised forth. + +CASSIUS: +Will you dine with me to-morrow? + +CASCA: +Ay, if I be alive and your mind hold and your dinner +worth the eating. + +CASSIUS: +Good: I will expect you. + +CASCA: +Do so. Farewell, both. + +BRUTUS: +What a blunt fellow is this grown to be! +He was quick mettle when he went to school. + +CASSIUS: +So is he now in execution +Of any bold or noble enterprise, +However he puts on this tardy form. +This rudeness is a sauce to his good wit, +Which gives men stomach to digest his words +With better appetite. + +BRUTUS: +And so it is. For this time I will leave you: +To-morrow, if you please to speak with me, +I will come home to you; or, if you will, +Come home to me, and I will wait for you. + +CASSIUS: +I will do so: till then, think of the world. +Well, Brutus, thou art noble; yet, I see, +Thy honourable metal may be wrought +From that it is disposed: therefore it is meet +That noble minds keep ever with their likes; +For who so firm that cannot be seduced? +Caesar doth bear me hard; but he loves Brutus: +If I were Brutus now and he were Cassius, +He should not humour me. I will this night, +In several hands, in at his windows throw, +As if they came from several citizens, +Writings all tending to the great opinion +That Rome holds of his name; wherein obscurely +Caesar's ambition shall be glanced at: +And after this let Caesar seat him sure; +For we will shake him, or worse days endure. + +CICERO: +Good even, Casca: brought you Caesar home? +Why are you breathless? and why stare you so? + +CASCA: +Are not you moved, when all the sway of earth +Shakes like a thing unfirm? O Cicero, +I have seen tempests, when the scolding winds +Have rived the knotty oaks, and I have seen +The ambitious ocean swell and rage and foam, +To be exalted with the threatening clouds: +But never till to-night, never till now, +Did I go through a tempest dropping fire. +Either there is a civil strife in heaven, +Or else the world, too saucy with the gods, +Incenses them to send destruction. + +CICERO: +Why, saw you any thing more wonderful? + +CASCA: +A common slave--you know him well by sight-- +Held up his left hand, which did flame and burn +Like twenty torches join'd, and yet his hand, +Not sensible of fire, remain'd unscorch'd. +Besides--I ha' not since put up my sword-- +Against the Capitol I met a lion, +Who glared upon me, and went surly by, +Without annoying me: and there were drawn +Upon a heap a hundred ghastly women, +Transformed with their fear; who swore they saw +Men all in fire walk up and down the streets. +And yesterday the bird of night did sit +Even at noon-day upon the market-place, +Hooting and shrieking. When these prodigies +Do so conjointly meet, let not men say +'These are their reasons; they are natural;' +For, I believe, they are portentous things +Unto the climate that they point upon. + +CICERO: +Indeed, it is a strange-disposed time: +But men may construe things after their fashion, +Clean from the purpose of the things themselves. +Come Caesar to the Capitol to-morrow? + +CASCA: +He doth; for he did bid Antonius +Send word to you he would be there to-morrow. + +CICERO: +Good night then, Casca: this disturbed sky +Is not to walk in. + +CASCA: +Farewell, Cicero. + +CASSIUS: +Who's there? + +CASCA: +A Roman. + +CASSIUS: +Casca, by your voice. + +CASCA: +Your ear is good. Cassius, what night is this! + +CASSIUS: +A very pleasing night to honest men. + +CASCA: +Who ever knew the heavens menace so? + +CASSIUS: +Those that have known the earth so full of faults. +For my part, I have walk'd about the streets, +Submitting me unto the perilous night, +And, thus unbraced, Casca, as you see, +Have bared my bosom to the thunder-stone; +And when the cross blue lightning seem'd to open +The breast of heaven, I did present myself +Even in the aim and very flash of it. + +CASCA: +But wherefore did you so much tempt the heavens? +It is the part of men to fear and tremble, +When the most mighty gods by tokens send +Such dreadful heralds to astonish us. + +CASSIUS: +You are dull, Casca, and those sparks of life +That should be in a Roman you do want, +Or else you use not. You look pale and gaze +And put on fear and cast yourself in wonder, +To see the strange impatience of the heavens: +But if you would consider the true cause +Why all these fires, why all these gliding ghosts, +Why birds and beasts from quality and kind, +Why old men fool and children calculate, +Why all these things change from their ordinance +Their natures and preformed faculties +To monstrous quality,--why, you shall find +That heaven hath infused them with these spirits, +To make them instruments of fear and warning +Unto some monstrous state. +Now could I, Casca, name to thee a man +Most like this dreadful night, +That thunders, lightens, opens graves, and roars +As doth the lion in the Capitol, +A man no mightier than thyself or me +In personal action, yet prodigious grown +And fearful, as these strange eruptions are. + +CASCA: +'Tis Caesar that you mean; is it not, Cassius? + +CASSIUS: +Let it be who it is: for Romans now +Have thews and limbs like to their ancestors; +But, woe the while! our fathers' minds are dead, +And we are govern'd with our mothers' spirits; +Our yoke and sufferance show us womanish. + +CASCA: +Indeed, they say the senators tomorrow +Mean to establish Caesar as a king; +And he shall wear his crown by sea and land, +In every place, save here in Italy. + +CASSIUS: +I know where I will wear this dagger then; +Cassius from bondage will deliver Cassius: +Therein, ye gods, you make the weak most strong; +Therein, ye gods, you tyrants do defeat: +Nor stony tower, nor walls of beaten brass, +Nor airless dungeon, nor strong links of iron, +Can be retentive to the strength of spirit; +But life, being weary of these worldly bars, +Never lacks power to dismiss itself. +If I know this, know all the world besides, +That part of tyranny that I do bear +I can shake off at pleasure. + +CASCA: +So can I: +So every bondman in his own hand bears +The power to cancel his captivity. + +CASSIUS: +And why should Caesar be a tyrant then? +Poor man! I know he would not be a wolf, +But that he sees the Romans are but sheep: +He were no lion, were not Romans hinds. +Those that with haste will make a mighty fire +Begin it with weak straws: what trash is Rome, +What rubbish and what offal, when it serves +For the base matter to illuminate +So vile a thing as Caesar! But, O grief, +Where hast thou led me? I perhaps speak this +Before a willing bondman; then I know +My answer must be made. But I am arm'd, +And dangers are to me indifferent. + +CASCA: +You speak to Casca, and to such a man +That is no fleering tell-tale. Hold, my hand: +Be factious for redress of all these griefs, +And I will set this foot of mine as far +As who goes farthest. + +CASSIUS: +There's a bargain made. +Now know you, Casca, I have moved already +Some certain of the noblest-minded Romans +To undergo with me an enterprise +Of honourable-dangerous consequence; +And I do know, by this, they stay for me +In Pompey's porch: for now, this fearful night, +There is no stir or walking in the streets; +And the complexion of the element +In favour's like the work we have in hand, +Most bloody, fiery, and most terrible. + +CASCA: +Stand close awhile, for here comes one in haste. + +CASSIUS: +'Tis Cinna; I do know him by his gait; +He is a friend. +Cinna, where haste you so? + +CINNA: +To find out you. Who's that? Metellus Cimber? + +CASSIUS: +No, it is Casca; one incorporate +To our attempts. Am I not stay'd for, Cinna? + +CINNA: +I am glad on 't. What a fearful night is this! +There's two or three of us have seen strange sights. + +CASSIUS: +Am I not stay'd for? tell me. + +CINNA: +Yes, you are. +O Cassius, if you could +But win the noble Brutus to our party-- + +CASSIUS: +Be you content: good Cinna, take this paper, +And look you lay it in the praetor's chair, +Where Brutus may but find it; and throw this +In at his window; set this up with wax +Upon old Brutus' statue: all this done, +Repair to Pompey's porch, where you shall find us. +Is Decius Brutus and Trebonius there? + +CINNA: +All but Metellus Cimber; and he's gone +To seek you at your house. Well, I will hie, +And so bestow these papers as you bade me. + +CASSIUS: +That done, repair to Pompey's theatre. +Come, Casca, you and I will yet ere day +See Brutus at his house: three parts of him +Is ours already, and the man entire +Upon the next encounter yields him ours. + +CASCA: +O, he sits high in all the people's hearts: +And that which would appear offence in us, +His countenance, like richest alchemy, +Will change to virtue and to worthiness. + +CASSIUS: +Him and his worth and our great need of him +You have right well conceited. Let us go, +For it is after midnight; and ere day +We will awake him and be sure of him. + +BRUTUS: +What, Lucius, ho! +I cannot, by the progress of the stars, +Give guess how near to day. Lucius, I say! +I would it were my fault to sleep so soundly. +When, Lucius, when? awake, I say! what, Lucius! + +LUCIUS: +Call'd you, my lord? + +BRUTUS: +Get me a taper in my study, Lucius: +When it is lighted, come and call me here. + +LUCIUS: +I will, my lord. + +BRUTUS: +It must be by his death: and for my part, +I know no personal cause to spurn at him, +But for the general. He would be crown'd: +How that might change his nature, there's the question. +It is the bright day that brings forth the adder; +And that craves wary walking. Crown him?--that;-- +And then, I grant, we put a sting in him, +That at his will he may do danger with. +The abuse of greatness is, when it disjoins +Remorse from power: and, to speak truth of Caesar, +I have not known when his affections sway'd +More than his reason. But 'tis a common proof, +That lowliness is young ambition's ladder, +Whereto the climber-upward turns his face; +But when he once attains the upmost round. +He then unto the ladder turns his back, +Looks in the clouds, scorning the base degrees +By which he did ascend. So Caesar may. +Then, lest he may, prevent. And, since the quarrel +Will bear no colour for the thing he is, +Fashion it thus; that what he is, augmented, +Would run to these and these extremities: +And therefore think him as a serpent's egg +Which, hatch'd, would, as his kind, grow mischievous, +And kill him in the shell. + +LUCIUS: +The taper burneth in your closet, sir. +Searching the window for a flint, I found +This paper, thus seal'd up; and, I am sure, +It did not lie there when I went to bed. + +BRUTUS: +Get you to bed again; it is not day. +Is not to-morrow, boy, the ides of March? + +LUCIUS: +I know not, sir. + +BRUTUS: +Look in the calendar, and bring me word. + +LUCIUS: +I will, sir. + +BRUTUS: +The exhalations whizzing in the air +Give so much light that I may read by them. +'Brutus, thou sleep'st: awake, and see thyself. +Shall Rome, &c. Speak, strike, redress! +Brutus, thou sleep'st: awake!' +Such instigations have been often dropp'd +Where I have took them up. +'Shall Rome, &c.' Thus must I piece it out: +Shall Rome stand under one man's awe? What, Rome? +My ancestors did from the streets of Rome +The Tarquin drive, when he was call'd a king. +'Speak, strike, redress!' Am I entreated +To speak and strike? O Rome, I make thee promise: +If the redress will follow, thou receivest +Thy full petition at the hand of Brutus! + +LUCIUS: +Sir, March is wasted fourteen days. + +BRUTUS: +'Tis good. Go to the gate; somebody knocks. +Since Cassius first did whet me against Caesar, +I have not slept. +Between the acting of a dreadful thing +And the first motion, all the interim is +Like a phantasma, or a hideous dream: +The Genius and the mortal instruments +Are then in council; and the state of man, +Like to a little kingdom, suffers then +The nature of an insurrection. + +LUCIUS: +Sir, 'tis your brother Cassius at the door, +Who doth desire to see you. + +BRUTUS: +Is he alone? + +LUCIUS: +No, sir, there are moe with him. + +BRUTUS: +Do you know them? + +LUCIUS: +No, sir; their hats are pluck'd about their ears, +And half their faces buried in their cloaks, +That by no means I may discover them +By any mark of favour. + +BRUTUS: +Let 'em enter. +They are the faction. O conspiracy, +Shamest thou to show thy dangerous brow by night, +When evils are most free? O, then by day +Where wilt thou find a cavern dark enough +To mask thy monstrous visage? Seek none, conspiracy; +Hide it in smiles and affability: +For if thou path, thy native semblance on, +Not Erebus itself were dim enough +To hide thee from prevention. + +CASSIUS: +I think we are too bold upon your rest: +Good morrow, Brutus; do we trouble you? + +BRUTUS: +I have been up this hour, awake all night. +Know I these men that come along with you? + +CASSIUS: +Yes, every man of them, and no man here +But honours you; and every one doth wish +You had but that opinion of yourself +Which every noble Roman bears of you. +This is Trebonius. + +BRUTUS: +He is welcome hither. + +CASSIUS: +This, Decius Brutus. + +BRUTUS: +He is welcome too. + +CASSIUS: +This, Casca; this, Cinna; and this, Metellus Cimber. + +BRUTUS: +They are all welcome. +What watchful cares do interpose themselves +Betwixt your eyes and night? + +CASSIUS: +Shall I entreat a word? + +DECIUS BRUTUS: +Here lies the east: doth not the day break here? + +CASCA: +No. + +CINNA: +O, pardon, sir, it doth; and yon gray lines +That fret the clouds are messengers of day. + +CASCA: +You shall confess that you are both deceived. +Here, as I point my sword, the sun arises, +Which is a great way growing on the south, +Weighing the youthful season of the year. +Some two months hence up higher toward the north +He first presents his fire; and the high east +Stands, as the Capitol, directly here. + +BRUTUS: +Give me your hands all over, one by one. + +CASSIUS: +And let us swear our resolution. + +BRUTUS: +No, not an oath: if not the face of men, +The sufferance of our souls, the time's abuse,-- +If these be motives weak, break off betimes, +And every man hence to his idle bed; +So let high-sighted tyranny range on, +Till each man drop by lottery. But if these, +As I am sure they do, bear fire enough +To kindle cowards and to steel with valour +The melting spirits of women, then, countrymen, +What need we any spur but our own cause, +To prick us to redress? what other bond +Than secret Romans, that have spoke the word, +And will not palter? and what other oath +Than honesty to honesty engaged, +That this shall be, or we will fall for it? +Swear priests and cowards and men cautelous, +Old feeble carrions and such suffering souls +That welcome wrongs; unto bad causes swear +Such creatures as men doubt; but do not stain +The even virtue of our enterprise, +Nor the insuppressive mettle of our spirits, +To think that or our cause or our performance +Did need an oath; when every drop of blood +That every Roman bears, and nobly bears, +Is guilty of a several bastardy, +If he do break the smallest particle +Of any promise that hath pass'd from him. + +CASSIUS: +But what of Cicero? shall we sound him? +I think he will stand very strong with us. + +CASCA: +Let us not leave him out. + +CINNA: +No, by no means. + +METELLUS CIMBER: +O, let us have him, for his silver hairs +Will purchase us a good opinion +And buy men's voices to commend our deeds: +It shall be said, his judgment ruled our hands; +Our youths and wildness shall no whit appear, +But all be buried in his gravity. + +BRUTUS: +O, name him not: let us not break with him; +For he will never follow any thing +That other men begin. + +CASSIUS: +Then leave him out. + +CASCA: +Indeed he is not fit. + +DECIUS BRUTUS: +Shall no man else be touch'd but only Caesar? + +CASSIUS: +Decius, well urged: I think it is not meet, +Mark Antony, so well beloved of Caesar, +Should outlive Caesar: we shall find of him +A shrewd contriver; and, you know, his means, +If he improve them, may well stretch so far +As to annoy us all: which to prevent, +Let Antony and Caesar fall together. + +BRUTUS: +Our course will seem too bloody, Caius Cassius, +To cut the head off and then hack the limbs, +Like wrath in death and envy afterwards; +For Antony is but a limb of Caesar: +Let us be sacrificers, but not butchers, Caius. +We all stand up against the spirit of Caesar; +And in the spirit of men there is no blood: +O, that we then could come by Caesar's spirit, +And not dismember Caesar! But, alas, +Caesar must bleed for it! And, gentle friends, +Let's kill him boldly, but not wrathfully; +Let's carve him as a dish fit for the gods, +Not hew him as a carcass fit for hounds: +And let our hearts, as subtle masters do, +Stir up their servants to an act of rage, +And after seem to chide 'em. This shall make +Our purpose necessary and not envious: +Which so appearing to the common eyes, +We shall be call'd purgers, not murderers. +And for Mark Antony, think not of him; +For he can do no more than Caesar's arm +When Caesar's head is off. + +CASSIUS: +Yet I fear him; +For in the ingrafted love he bears to Caesar-- + +BRUTUS: +Alas, good Cassius, do not think of him: +If he love Caesar, all that he can do +Is to himself, take thought and die for Caesar: +And that were much he should; for he is given +To sports, to wildness and much company. + +TREBONIUS: +There is no fear in him; let him not die; +For he will live, and laugh at this hereafter. + +BRUTUS: +Peace! count the clock. + +CASSIUS: +The clock hath stricken three. + +TREBONIUS: +'Tis time to part. + +CASSIUS: +But it is doubtful yet, +Whether Caesar will come forth to-day, or no; +For he is superstitious grown of late, +Quite from the main opinion he held once +Of fantasy, of dreams and ceremonies: +It may be, these apparent prodigies, +The unaccustom'd terror of this night, +And the persuasion of his augurers, +May hold him from the Capitol to-day. + +DECIUS BRUTUS: +Never fear that: if he be so resolved, +I can o'ersway him; for he loves to hear +That unicorns may be betray'd with trees, +And bears with glasses, elephants with holes, +Lions with toils and men with flatterers; +But when I tell him he hates flatterers, +He says he does, being then most flattered. +Let me work; +For I can give his humour the true bent, +And I will bring him to the Capitol. + +CASSIUS: +Nay, we will all of us be there to fetch him. + +BRUTUS: +By the eighth hour: is that the uttermost? + +CINNA: +Be that the uttermost, and fail not then. + +METELLUS CIMBER: +Caius Ligarius doth bear Caesar hard, +Who rated him for speaking well of Pompey: +I wonder none of you have thought of him. + +BRUTUS: +Now, good Metellus, go along by him: +He loves me well, and I have given him reasons; +Send him but hither, and I'll fashion him. + +CASSIUS: +The morning comes upon 's: we'll leave you, Brutus. +And, friends, disperse yourselves; but all remember +What you have said, and show yourselves true Romans. + +BRUTUS: +Good gentlemen, look fresh and merrily; +Let not our looks put on our purposes, +But bear it as our Roman actors do, +With untired spirits and formal constancy: +And so good morrow to you every one. +Boy! Lucius! Fast asleep? It is no matter; +Enjoy the honey-heavy dew of slumber: +Thou hast no figures nor no fantasies, +Which busy care draws in the brains of men; +Therefore thou sleep'st so sound. + +PORTIA: +Brutus, my lord! + +BRUTUS: +Portia, what mean you? wherefore rise you now? +It is not for your health thus to commit +Your weak condition to the raw cold morning. + +PORTIA: +Nor for yours neither. You've ungently, Brutus, +Stole from my bed: and yesternight, at supper, +You suddenly arose, and walk'd about, +Musing and sighing, with your arms across, +And when I ask'd you what the matter was, +You stared upon me with ungentle looks; +I urged you further; then you scratch'd your head, +And too impatiently stamp'd with your foot; +Yet I insisted, yet you answer'd not, +But, with an angry wafture of your hand, +Gave sign for me to leave you: so I did; +Fearing to strengthen that impatience +Which seem'd too much enkindled, and withal +Hoping it was but an effect of humour, +Which sometime hath his hour with every man. +It will not let you eat, nor talk, nor sleep, +And could it work so much upon your shape +As it hath much prevail'd on your condition, +I should not know you, Brutus. Dear my lord, +Make me acquainted with your cause of grief. + +BRUTUS: +I am not well in health, and that is all. + +PORTIA: +Brutus is wise, and, were he not in health, +He would embrace the means to come by it. + +BRUTUS: +Why, so I do. Good Portia, go to bed. + +PORTIA: +Is Brutus sick? and is it physical +To walk unbraced and suck up the humours +Of the dank morning? What, is Brutus sick, +And will he steal out of his wholesome bed, +To dare the vile contagion of the night +And tempt the rheumy and unpurged air +To add unto his sickness? No, my Brutus; +You have some sick offence within your mind, +Which, by the right and virtue of my place, +I ought to know of: and, upon my knees, +I charm you, by my once-commended beauty, +By all your vows of love and that great vow +Which did incorporate and make us one, +That you unfold to me, yourself, your half, +Why you are heavy, and what men to-night +Have had to resort to you: for here have been +Some six or seven, who did hide their faces +Even from darkness. + +BRUTUS: +Kneel not, gentle Portia. + +PORTIA: +I should not need, if you were gentle Brutus. +Within the bond of marriage, tell me, Brutus, +Is it excepted I should know no secrets +That appertain to you? Am I yourself +But, as it were, in sort or limitation, +To keep with you at meals, comfort your bed, +And talk to you sometimes? Dwell I but in the suburbs +Of your good pleasure? If it be no more, +Portia is Brutus' harlot, not his wife. + +BRUTUS: +You are my true and honourable wife, +As dear to me as are the ruddy drops +That visit my sad heart + +PORTIA: +If this were true, then should I know this secret. +I grant I am a woman; but withal +A woman that Lord Brutus took to wife: +I grant I am a woman; but withal +A woman well-reputed, Cato's daughter. +Think you I am no stronger than my sex, +Being so father'd and so husbanded? +Tell me your counsels, I will not disclose 'em: +I have made strong proof of my constancy, +Giving myself a voluntary wound +Here, in the thigh: can I bear that with patience. +And not my husband's secrets? + +BRUTUS: +O ye gods, +Render me worthy of this noble wife! +Hark, hark! one knocks: Portia, go in awhile; +And by and by thy bosom shall partake +The secrets of my heart. +All my engagements I will construe to thee, +All the charactery of my sad brows: +Leave me with haste. +Lucius, who's that knocks? + +LUCIUS: +He is a sick man that would speak with you. + +BRUTUS: +Caius Ligarius, that Metellus spake of. +Boy, stand aside. Caius Ligarius! how? + +LIGARIUS: +Vouchsafe good morrow from a feeble tongue. + +BRUTUS: +O, what a time have you chose out, brave Caius, +To wear a kerchief! Would you were not sick! + +LIGARIUS: +I am not sick, if Brutus have in hand +Any exploit worthy the name of honour. + +BRUTUS: +Such an exploit have I in hand, Ligarius, +Had you a healthful ear to hear of it. + +LIGARIUS: +By all the gods that Romans bow before, +I here discard my sickness! Soul of Rome! +Brave son, derived from honourable loins! +Thou, like an exorcist, hast conjured up +My mortified spirit. Now bid me run, +And I will strive with things impossible; +Yea, get the better of them. What's to do? + +BRUTUS: +A piece of work that will make sick men whole. + +LIGARIUS: +But are not some whole that we must make sick? + +BRUTUS: +That must we also. What it is, my Caius, +I shall unfold to thee, as we are going +To whom it must be done. + +LIGARIUS: +Set on your foot, +And with a heart new-fired I follow you, +To do I know not what: but it sufficeth +That Brutus leads me on. + +BRUTUS: +Follow me, then. + +CAESAR: +Nor heaven nor earth have been at peace to-night: +Thrice hath Calpurnia in her sleep cried out, +'Help, ho! they murder Caesar!' Who's within? + +Servant: +My lord? + +CAESAR: +Go bid the priests do present sacrifice +And bring me their opinions of success. + +Servant: +I will, my lord. + +CALPURNIA: +What mean you, Caesar? think you to walk forth? +You shall not stir out of your house to-day. + +CAESAR: +Caesar shall forth: the things that threaten'd me +Ne'er look'd but on my back; when they shall see +The face of Caesar, they are vanished. + +CALPURNIA: +Caesar, I never stood on ceremonies, +Yet now they fright me. There is one within, +Besides the things that we have heard and seen, +Recounts most horrid sights seen by the watch. +A lioness hath whelped in the streets; +And graves have yawn'd, and yielded up their dead; +Fierce fiery warriors fought upon the clouds, +In ranks and squadrons and right form of war, +Which drizzled blood upon the Capitol; +The noise of battle hurtled in the air, +Horses did neigh, and dying men did groan, +And ghosts did shriek and squeal about the streets. +O Caesar! these things are beyond all use, +And I do fear them. + +CAESAR: +What can be avoided +Whose end is purposed by the mighty gods? +Yet Caesar shall go forth; for these predictions +Are to the world in general as to Caesar. + +CALPURNIA: +When beggars die, there are no comets seen; +The heavens themselves blaze forth the death of princes. + +CAESAR: +Cowards die many times before their deaths; +The valiant never taste of death but once. +Of all the wonders that I yet have heard. +It seems to me most strange that men should fear; +Seeing that death, a necessary end, +Will come when it will come. +What say the augurers? + +Servant: +They would not have you to stir forth to-day. +Plucking the entrails of an offering forth, +They could not find a heart within the beast. + +CAESAR: +The gods do this in shame of cowardice: +Caesar should be a beast without a heart, +If he should stay at home to-day for fear. +No, Caesar shall not: danger knows full well +That Caesar is more dangerous than he: +We are two lions litter'd in one day, +And I the elder and more terrible: +And Caesar shall go forth. + +CALPURNIA: +Alas, my lord, +Your wisdom is consumed in confidence. +Do not go forth to-day: call it my fear +That keeps you in the house, and not your own. +We'll send Mark Antony to the senate-house: +And he shall say you are not well to-day: +Let me, upon my knee, prevail in this. + +CAESAR: +Mark Antony shall say I am not well, +And, for thy humour, I will stay at home. +Here's Decius Brutus, he shall tell them so. + +DECIUS BRUTUS: +Caesar, all hail! good morrow, worthy Caesar: +I come to fetch you to the senate-house. + +CAESAR: +And you are come in very happy time, +To bear my greeting to the senators +And tell them that I will not come to-day: +Cannot, is false, and that I dare not, falser: +I will not come to-day: tell them so, Decius. + +CALPURNIA: +Say he is sick. + +CAESAR: +Shall Caesar send a lie? +Have I in conquest stretch'd mine arm so far, +To be afraid to tell graybeards the truth? +Decius, go tell them Caesar will not come. + +DECIUS BRUTUS: +Most mighty Caesar, let me know some cause, +Lest I be laugh'd at when I tell them so. + +CAESAR: +The cause is in my will: I will not come; +That is enough to satisfy the senate. +But for your private satisfaction, +Because I love you, I will let you know: +Calpurnia here, my wife, stays me at home: +She dreamt to-night she saw my statua, +Which, like a fountain with an hundred spouts, +Did run pure blood: and many lusty Romans +Came smiling, and did bathe their hands in it: +And these does she apply for warnings, and portents, +And evils imminent; and on her knee +Hath begg'd that I will stay at home to-day. + +DECIUS BRUTUS: +This dream is all amiss interpreted; +It was a vision fair and fortunate: +Your statue spouting blood in many pipes, +In which so many smiling Romans bathed, +Signifies that from you great Rome shall suck +Reviving blood, and that great men shall press +For tinctures, stains, relics and cognizance. +This by Calpurnia's dream is signified. + +CAESAR: +And this way have you well expounded it. + +DECIUS BRUTUS: +I have, when you have heard what I can say: +And know it now: the senate have concluded +To give this day a crown to mighty Caesar. +If you shall send them word you will not come, +Their minds may change. Besides, it were a mock +Apt to be render'd, for some one to say +'Break up the senate till another time, +When Caesar's wife shall meet with better dreams.' +If Caesar hide himself, shall they not whisper +'Lo, Caesar is afraid'? +Pardon me, Caesar; for my dear dear love +To our proceeding bids me tell you this; +And reason to my love is liable. + +CAESAR: +How foolish do your fears seem now, Calpurnia! +I am ashamed I did yield to them. +Give me my robe, for I will go. +And look where Publius is come to fetch me. + +PUBLIUS: +Good morrow, Caesar. + +CAESAR: +Welcome, Publius. +What, Brutus, are you stirr'd so early too? +Good morrow, Casca. Caius Ligarius, +Caesar was ne'er so much your enemy +As that same ague which hath made you lean. +What is 't o'clock? + +BRUTUS: +Caesar, 'tis strucken eight. + +CAESAR: +I thank you for your pains and courtesy. +See! Antony, that revels long o' nights, +Is notwithstanding up. Good morrow, Antony. + +ANTONY: +So to most noble Caesar. + +CAESAR: +Bid them prepare within: +I am to blame to be thus waited for. +Now, Cinna: now, Metellus: what, Trebonius! +I have an hour's talk in store for you; +Remember that you call on me to-day: +Be near me, that I may remember you. + +TREBONIUS: +Caesar, I will: +and so near will I be, +That your best friends shall wish I had been further. + +CAESAR: +Good friends, go in, and taste some wine with me; +And we, like friends, will straightway go together. + +BRUTUS: + +ARTEMIDORUS: +'Caesar, beware of Brutus; take heed of Cassius; +come not near Casca; have an eye to Cinna, trust not +Trebonius: mark well Metellus Cimber: Decius Brutus +loves thee not: thou hast wronged Caius Ligarius. +There is but one mind in all these men, and it is +bent against Caesar. If thou beest not immortal, +look about you: security gives way to conspiracy. +The mighty gods defend thee! Thy lover, +'ARTEMIDORUS.' +Here will I stand till Caesar pass along, +And as a suitor will I give him this. +My heart laments that virtue cannot live +Out of the teeth of emulation. +If thou read this, O Caesar, thou mayst live; +If not, the Fates with traitors do contrive. + +PORTIA: +I prithee, boy, run to the senate-house; +Stay not to answer me, but get thee gone: +Why dost thou stay? + +LUCIUS: +To know my errand, madam. + +PORTIA: +I would have had thee there, and here again, +Ere I can tell thee what thou shouldst do there. +O constancy, be strong upon my side, +Set a huge mountain 'tween my heart and tongue! +I have a man's mind, but a woman's might. +How hard it is for women to keep counsel! +Art thou here yet? + +LUCIUS: +Madam, what should I do? +Run to the Capitol, and nothing else? +And so return to you, and nothing else? + +PORTIA: +Yes, bring me word, boy, if thy lord look well, +For he went sickly forth: and take good note +What Caesar doth, what suitors press to him. +Hark, boy! what noise is that? + +LUCIUS: +I hear none, madam. + +PORTIA: +Prithee, listen well; +I heard a bustling rumour, like a fray, +And the wind brings it from the Capitol. + +LUCIUS: +Sooth, madam, I hear nothing. + +PORTIA: +Come hither, fellow: which way hast thou been? + +Soothsayer: +At mine own house, good lady. + +PORTIA: +What is't o'clock? + +Soothsayer: +About the ninth hour, lady. + +PORTIA: +Is Caesar yet gone to the Capitol? + +Soothsayer: +Madam, not yet: I go to take my stand, +To see him pass on to the Capitol. + +PORTIA: +Thou hast some suit to Caesar, hast thou not? + +Soothsayer: +That I have, lady: if it will please Caesar +To be so good to Caesar as to hear me, +I shall beseech him to befriend himself. + +PORTIA: +Why, know'st thou any harm's intended towards him? + +Soothsayer: +None that I know will be, much that I fear may chance. +Good morrow to you. Here the street is narrow: +The throng that follows Caesar at the heels, +Of senators, of praetors, common suitors, +Will crowd a feeble man almost to death: +I'll get me to a place more void, and there +Speak to great Caesar as he comes along. + +PORTIA: +I must go in. Ay me, how weak a thing +The heart of woman is! O Brutus, +The heavens speed thee in thine enterprise! +Sure, the boy heard me: Brutus hath a suit +That Caesar will not grant. O, I grow faint. +Run, Lucius, and commend me to my lord; +Say I am merry: come to me again, +And bring me word what he doth say to thee. + +CAESAR: + +Soothsayer: +Ay, Caesar; but not gone. + +ARTEMIDORUS: +Hail, Caesar! read this schedule. + +DECIUS BRUTUS: +Trebonius doth desire you to o'erread, +At your best leisure, this his humble suit. + +ARTEMIDORUS: +O Caesar, read mine first; for mine's a suit +That touches Caesar nearer: read it, great Caesar. + +CAESAR: +What touches us ourself shall be last served. + +ARTEMIDORUS: +Delay not, Caesar; read it instantly. + +CAESAR: +What, is the fellow mad? + +PUBLIUS: +Sirrah, give place. + +CASSIUS: +What, urge you your petitions in the street? +Come to the Capitol. + +POPILIUS: +I wish your enterprise to-day may thrive. + +CASSIUS: +What enterprise, Popilius? + +POPILIUS: +Fare you well. + +BRUTUS: +What said Popilius Lena? + +CASSIUS: +He wish'd to-day our enterprise might thrive. +I fear our purpose is discovered. + +BRUTUS: +Look, how he makes to Caesar; mark him. + +CASSIUS: +Casca, be sudden, for we fear prevention. +Brutus, what shall be done? If this be known, +Cassius or Caesar never shall turn back, +For I will slay myself. + +BRUTUS: +Cassius, be constant: +Popilius Lena speaks not of our purposes; +For, look, he smiles, and Caesar doth not change. + +CASSIUS: +Trebonius knows his time; for, look you, Brutus. +He draws Mark Antony out of the way. + +DECIUS BRUTUS: +Where is Metellus Cimber? Let him go, +And presently prefer his suit to Caesar. + +BRUTUS: +He is address'd: press near and second him. + +CINNA: +Casca, you are the first that rears your hand. + +CAESAR: +Are we all ready? What is now amiss +That Caesar and his senate must redress? + +METELLUS CIMBER: +Most high, most mighty, and most puissant Caesar, +Metellus Cimber throws before thy seat +An humble heart,-- + +CAESAR: +I must prevent thee, Cimber. +These couchings and these lowly courtesies +Might fire the blood of ordinary men, +And turn pre-ordinance and first decree +Into the law of children. Be not fond, +To think that Caesar bears such rebel blood +That will be thaw'd from the true quality +With that which melteth fools; I mean, sweet words, +Low-crooked court'sies and base spaniel-fawning. +Thy brother by decree is banished: +If thou dost bend and pray and fawn for him, +I spurn thee like a cur out of my way. +Know, Caesar doth not wrong, nor without cause +Will he be satisfied. + +METELLUS CIMBER: +Is there no voice more worthy than my own +To sound more sweetly in great Caesar's ear +For the repealing of my banish'd brother? + +BRUTUS: +I kiss thy hand, but not in flattery, Caesar; +Desiring thee that Publius Cimber may +Have an immediate freedom of repeal. + +CAESAR: +What, Brutus! + +CASSIUS: +Pardon, Caesar; Caesar, pardon: +As low as to thy foot doth Cassius fall, +To beg enfranchisement for Publius Cimber. + +CASSIUS: +I could be well moved, if I were as you: +If I could pray to move, prayers would move me: +But I am constant as the northern star, +Of whose true-fix'd and resting quality +There is no fellow in the firmament. +The skies are painted with unnumber'd sparks, +They are all fire and every one doth shine, +But there's but one in all doth hold his place: +So in the world; 'tis furnish'd well with men, +And men are flesh and blood, and apprehensive; +Yet in the number I do know but one +That unassailable holds on his rank, +Unshaked of motion: and that I am he, +Let me a little show it, even in this; +That I was constant Cimber should be banish'd, +And constant do remain to keep him so. + +CINNA: +O Caesar,-- + +CAESAR: +Hence! wilt thou lift up Olympus? + +DECIUS BRUTUS: +Great Caesar,-- + +CAESAR: +Doth not Brutus bootless kneel? + +CASCA: +Speak, hands for me! + +CAESAR: +Et tu, Brute! Then fall, Caesar. + +CINNA: +Liberty! Freedom! Tyranny is dead! +Run hence, proclaim, cry it about the streets. + +CASSIUS: +Some to the common pulpits, and cry out +'Liberty, freedom, and enfranchisement!' + +BRUTUS: +People and senators, be not affrighted; +Fly not; stand stiff: ambition's debt is paid. + +CASCA: +Go to the pulpit, Brutus. + +DECIUS BRUTUS: +And Cassius too. + +BRUTUS: +Where's Publius? + +CINNA: +Here, quite confounded with this mutiny. + +METELLUS CIMBER: +Stand fast together, lest some friend of Caesar's +Should chance-- + +BRUTUS: +Talk not of standing. Publius, good cheer; +There is no harm intended to your person, +Nor to no Roman else: so tell them, Publius. + +CASSIUS: +And leave us, Publius; lest that the people, +Rushing on us, should do your age some mischief. + +BRUTUS: +Do so: and let no man abide this deed, +But we the doers. + +CASSIUS: +Where is Antony? + +TREBONIUS: +Fled to his house amazed: +Men, wives and children stare, cry out and run +As it were doomsday. + +BRUTUS: +Fates, we will know your pleasures: +That we shall die, we know; 'tis but the time +And drawing days out, that men stand upon. + +CASSIUS: +Why, he that cuts off twenty years of life +Cuts off so many years of fearing death. + +BRUTUS: +Grant that, and then is death a benefit: +So are we Caesar's friends, that have abridged +His time of fearing death. Stoop, Romans, stoop, +And let us bathe our hands in Caesar's blood +Up to the elbows, and besmear our swords: +Then walk we forth, even to the market-place, +And, waving our red weapons o'er our heads, +Let's all cry 'Peace, freedom and liberty!' + +CASSIUS: +Stoop, then, and wash. How many ages hence +Shall this our lofty scene be acted over +In states unborn and accents yet unknown! + +BRUTUS: +How many times shall Caesar bleed in sport, +That now on Pompey's basis lies along +No worthier than the dust! + +CASSIUS: +So oft as that shall be, +So often shall the knot of us be call'd +The men that gave their country liberty. + +DECIUS BRUTUS: +What, shall we forth? + +CASSIUS: +Ay, every man away: +Brutus shall lead; and we will grace his heels +With the most boldest and best hearts of Rome. + +BRUTUS: +Soft! who comes here? A friend of Antony's. + +Servant: +Thus, Brutus, did my master bid me kneel: +Thus did Mark Antony bid me fall down; +And, being prostrate, thus he bade me say: +Brutus is noble, wise, valiant, and honest; +Caesar was mighty, bold, royal, and loving: +Say I love Brutus, and I honour him; +Say I fear'd Caesar, honour'd him and loved him. +If Brutus will vouchsafe that Antony +May safely come to him, and be resolved +How Caesar hath deserved to lie in death, +Mark Antony shall not love Caesar dead +So well as Brutus living; but will follow +The fortunes and affairs of noble Brutus +Thorough the hazards of this untrod state +With all true faith. So says my master Antony. + +BRUTUS: +Thy master is a wise and valiant Roman; +I never thought him worse. +Tell him, so please him come unto this place, +He shall be satisfied; and, by my honour, +Depart untouch'd. + +Servant: +I'll fetch him presently. + +BRUTUS: +I know that we shall have him well to friend. + +CASSIUS: +I wish we may: but yet have I a mind +That fears him much; and my misgiving still +Falls shrewdly to the purpose. + +BRUTUS: +But here comes Antony. +Welcome, Mark Antony. + +ANTONY: +O mighty Caesar! dost thou lie so low? +Are all thy conquests, glories, triumphs, spoils, +Shrunk to this little measure? Fare thee well. +I know not, gentlemen, what you intend, +Who else must be let blood, who else is rank: +If I myself, there is no hour so fit +As Caesar's death hour, nor no instrument +Of half that worth as those your swords, made rich +With the most noble blood of all this world. +I do beseech ye, if you bear me hard, +Now, whilst your purpled hands do reek and smoke, +Fulfil your pleasure. Live a thousand years, +I shall not find myself so apt to die: +No place will please me so, no mean of death, +As here by Caesar, and by you cut off, +The choice and master spirits of this age. + +BRUTUS: +O Antony, beg not your death of us. +Though now we must appear bloody and cruel, +As, by our hands and this our present act, +You see we do, yet see you but our hands +And this the bleeding business they have done: +Our hearts you see not; they are pitiful; +And pity to the general wrong of Rome-- +As fire drives out fire, so pity pity-- +Hath done this deed on Caesar. For your part, +To you our swords have leaden points, Mark Antony: +Our arms, in strength of malice, and our hearts +Of brothers' temper, do receive you in +With all kind love, good thoughts, and reverence. + +CASSIUS: +Your voice shall be as strong as any man's +In the disposing of new dignities. + +BRUTUS: +Only be patient till we have appeased +The multitude, beside themselves with fear, +And then we will deliver you the cause, +Why I, that did love Caesar when I struck him, +Have thus proceeded. + +ANTONY: +I doubt not of your wisdom. +Let each man render me his bloody hand: +First, Marcus Brutus, will I shake with you; +Next, Caius Cassius, do I take your hand; +Now, Decius Brutus, yours: now yours, Metellus; +Yours, Cinna; and, my valiant Casca, yours; +Though last, not last in love, yours, good Trebonius. +Gentlemen all,--alas, what shall I say? +My credit now stands on such slippery ground, +That one of two bad ways you must conceit me, +Either a coward or a flatterer. +That I did love thee, Caesar, O, 'tis true: +If then thy spirit look upon us now, +Shall it not grieve thee dearer than thy death, +To see thy thy Anthony making his peace, +Shaking the bloody fingers of thy foes, +Most noble! in the presence of thy corse? +Had I as many eyes as thou hast wounds, +Weeping as fast as they stream forth thy blood, +It would become me better than to close +In terms of friendship with thine enemies. +Pardon me, Julius! Here wast thou bay'd, brave hart; +Here didst thou fall; and here thy hunters stand, +Sign'd in thy spoil, and crimson'd in thy lethe. +O world, thou wast the forest to this hart; +And this, indeed, O world, the heart of thee. +How like a deer, strucken by many princes, +Dost thou here lie! + +CASSIUS: +Mark Antony,-- + +ANTONY: +Pardon me, Caius Cassius: +The enemies of Caesar shall say this; +Then, in a friend, it is cold modesty. + +CASSIUS: +I blame you not for praising Caesar so; +But what compact mean you to have with us? +Will you be prick'd in number of our friends; +Or shall we on, and not depend on you? + +ANTONY: +Therefore I took your hands, but was, indeed, +Sway'd from the point, by looking down on Caesar. +Friends am I with you all and love you all, +Upon this hope, that you shall give me reasons +Why and wherein Caesar was dangerous. + +BRUTUS: +Or else were this a savage spectacle: +Our reasons are so full of good regard +That were you, Antony, the son of Caesar, +You should be satisfied. + +ANTONY: +That's all I seek: +And am moreover suitor that I may +Produce his body to the market-place; +And in the pulpit, as becomes a friend, +Speak in the order of his funeral. + +BRUTUS: +You shall, Mark Antony. + +CASSIUS: +Brutus, a word with you. +You know not what you do: do not consent +That Antony speak in his funeral: +Know you how much the people may be moved +By that which he will utter? + +BRUTUS: +By your pardon; +I will myself into the pulpit first, +And show the reason of our Caesar's death: +What Antony shall speak, I will protest +He speaks by leave and by permission, +And that we are contented Caesar shall +Have all true rites and lawful ceremonies. +It shall advantage more than do us wrong. + +CASSIUS: +I know not what may fall; I like it not. + +BRUTUS: +Mark Antony, here, take you Caesar's body. +You shall not in your funeral speech blame us, +But speak all good you can devise of Caesar, +And say you do't by our permission; +Else shall you not have any hand at all +About his funeral: and you shall speak +In the same pulpit whereto I am going, +After my speech is ended. + +ANTONY: +Be it so. +I do desire no more. + +BRUTUS: +Prepare the body then, and follow us. + +ANTONY: +O, pardon me, thou bleeding piece of earth, +That I am meek and gentle with these butchers! +Thou art the ruins of the noblest man +That ever lived in the tide of times. +Woe to the hand that shed this costly blood! +Over thy wounds now do I prophesy,-- +Which, like dumb mouths, do ope their ruby lips, +To beg the voice and utterance of my tongue-- +A curse shall light upon the limbs of men; +Domestic fury and fierce civil strife +Shall cumber all the parts of Italy; +Blood and destruction shall be so in use +And dreadful objects so familiar +That mothers shall but smile when they behold +Their infants quarter'd with the hands of war; +All pity choked with custom of fell deeds: +And Caesar's spirit, ranging for revenge, +With Ate by his side come hot from hell, +Shall in these confines with a monarch's voice +Cry 'Havoc,' and let slip the dogs of war; +That this foul deed shall smell above the earth +With carrion men, groaning for burial. +You serve Octavius Caesar, do you not? + +Servant: +I do, Mark Antony. + +ANTONY: +Caesar did write for him to come to Rome. + +Servant: +He did receive his letters, and is coming; +And bid me say to you by word of mouth-- +O Caesar!-- + +ANTONY: +Thy heart is big, get thee apart and weep. +Passion, I see, is catching; for mine eyes, +Seeing those beads of sorrow stand in thine, +Began to water. Is thy master coming? + +Servant: +He lies to-night within seven leagues of Rome. + +ANTONY: +Post back with speed, and tell him what hath chanced: +Here is a mourning Rome, a dangerous Rome, +No Rome of safety for Octavius yet; +Hie hence, and tell him so. Yet, stay awhile; +Thou shalt not back till I have borne this corse +Into the market-place: there shall I try +In my oration, how the people take +The cruel issue of these bloody men; +According to the which, thou shalt discourse +To young Octavius of the state of things. +Lend me your hand. + +Citizens: +We will be satisfied; let us be satisfied. + +BRUTUS: +Then follow me, and give me audience, friends. +Cassius, go you into the other street, +And part the numbers. +Those that will hear me speak, let 'em stay here; +Those that will follow Cassius, go with him; +And public reasons shall be rendered +Of Caesar's death. + +First Citizen: +I will hear Brutus speak. + +Second Citizen: +I will hear Cassius; and compare their reasons, +When severally we hear them rendered. + +Third Citizen: +The noble Brutus is ascended: silence! + +BRUTUS: +Be patient till the last. +Romans, countrymen, and lovers! hear me for my +cause, and be silent, that you may hear: believe me +for mine honour, and have respect to mine honour, that +you may believe: censure me in your wisdom, and +awake your senses, that you may the better judge. +If there be any in this assembly, any dear friend of +Caesar's, to him I say, that Brutus' love to Caesar +was no less than his. If then that friend demand +why Brutus rose against Caesar, this is my answer: +--Not that I loved Caesar less, but that I loved +Rome more. Had you rather Caesar were living and +die all slaves, than that Caesar were dead, to live +all free men? As Caesar loved me, I weep for him; +as he was fortunate, I rejoice at it; as he was +valiant, I honour him: but, as he was ambitious, I +slew him. There is tears for his love; joy for his +fortune; honour for his valour; and death for his +ambition. Who is here so base that would be a +bondman? If any, speak; for him have I offended. +Who is here so rude that would not be a Roman? If +any, speak; for him have I offended. Who is here so +vile that will not love his country? If any, speak; +for him have I offended. I pause for a reply. + +All: +None, Brutus, none. + +BRUTUS: +Then none have I offended. I have done no more to +Caesar than you shall do to Brutus. The question of +his death is enrolled in the Capitol; his glory not +extenuated, wherein he was worthy, nor his offences +enforced, for which he suffered death. +Here comes his body, mourned by Mark Antony: who, +though he had no hand in his death, shall receive +the benefit of his dying, a place in the +commonwealth; as which of you shall not? With this +I depart,--that, as I slew my best lover for the +good of Rome, I have the same dagger for myself, +when it shall please my country to need my death. + +All: +Live, Brutus! live, live! + +First Citizen: +Bring him with triumph home unto his house. + +Second Citizen: +Give him a statue with his ancestors. + +Third Citizen: +Let him be Caesar. + +Fourth Citizen: +Caesar's better parts +Shall be crown'd in Brutus. + +First Citizen: +We'll bring him to his house +With shouts and clamours. + +BRUTUS: +My countrymen,-- + +Second Citizen: +Peace, silence! Brutus speaks. + +First Citizen: +Peace, ho! + +BRUTUS: +Good countrymen, let me depart alone, +And, for my sake, stay here with Antony: +Do grace to Caesar's corpse, and grace his speech +Tending to Caesar's glories; which Mark Antony, +By our permission, is allow'd to make. +I do entreat you, not a man depart, +Save I alone, till Antony have spoke. + +First Citizen: +Stay, ho! and let us hear Mark Antony. + +Third Citizen: +Let him go up into the public chair; +We'll hear him. Noble Antony, go up. + +ANTONY: +For Brutus' sake, I am beholding to you. + +Fourth Citizen: +What does he say of Brutus? + +Third Citizen: +He says, for Brutus' sake, +He finds himself beholding to us all. + +Fourth Citizen: +'Twere best he speak no harm of Brutus here. + +First Citizen: +This Caesar was a tyrant. + +Third Citizen: +Nay, that's certain: +We are blest that Rome is rid of him. + +Second Citizen: +Peace! let us hear what Antony can say. + +ANTONY: +You gentle Romans,-- + +Citizens: +Peace, ho! let us hear him. + +ANTONY: +Friends, Romans, countrymen, lend me your ears; +I come to bury Caesar, not to praise him. +The evil that men do lives after them; +The good is oft interred with their bones; +So let it be with Caesar. The noble Brutus +Hath told you Caesar was ambitious: +If it were so, it was a grievous fault, +And grievously hath Caesar answer'd it. +Here, under leave of Brutus and the rest-- +For Brutus is an honourable man; +So are they all, all honourable men-- +Come I to speak in Caesar's funeral. +He was my friend, faithful and just to me: +But Brutus says he was ambitious; +And Brutus is an honourable man. +He hath brought many captives home to Rome +Whose ransoms did the general coffers fill: +Did this in Caesar seem ambitious? +When that the poor have cried, Caesar hath wept: +Ambition should be made of sterner stuff: +Yet Brutus says he was ambitious; +And Brutus is an honourable man. +You all did see that on the Lupercal +I thrice presented him a kingly crown, +Which he did thrice refuse: was this ambition? +Yet Brutus says he was ambitious; +And, sure, he is an honourable man. +I speak not to disprove what Brutus spoke, +But here I am to speak what I do know. +You all did love him once, not without cause: +What cause withholds you then, to mourn for him? +O judgment! thou art fled to brutish beasts, +And men have lost their reason. Bear with me; +My heart is in the coffin there with Caesar, +And I must pause till it come back to me. + +First Citizen: +Methinks there is much reason in his sayings. + +Second Citizen: +If thou consider rightly of the matter, +Caesar has had great wrong. + +Third Citizen: +Has he, masters? +I fear there will a worse come in his place. + +Fourth Citizen: +Mark'd ye his words? He would not take the crown; +Therefore 'tis certain he was not ambitious. + +First Citizen: +If it be found so, some will dear abide it. + +Second Citizen: +Poor soul! his eyes are red as fire with weeping. + +Third Citizen: +There's not a nobler man in Rome than Antony. + +Fourth Citizen: +Now mark him, he begins again to speak. + +ANTONY: +But yesterday the word of Caesar might +Have stood against the world; now lies he there. +And none so poor to do him reverence. +O masters, if I were disposed to stir +Your hearts and minds to mutiny and rage, +I should do Brutus wrong, and Cassius wrong, +Who, you all know, are honourable men: +I will not do them wrong; I rather choose +To wrong the dead, to wrong myself and you, +Than I will wrong such honourable men. +But here's a parchment with the seal of Caesar; +I found it in his closet, 'tis his will: +Let but the commons hear this testament-- +Which, pardon me, I do not mean to read-- +And they would go and kiss dead Caesar's wounds +And dip their napkins in his sacred blood, +Yea, beg a hair of him for memory, +And, dying, mention it within their wills, +Bequeathing it as a rich legacy +Unto their issue. + +Fourth Citizen: +We'll hear the will: read it, Mark Antony. + +All: +The will, the will! we will hear Caesar's will. + +ANTONY: +Have patience, gentle friends, I must not read it; +It is not meet you know how Caesar loved you. +You are not wood, you are not stones, but men; +And, being men, bearing the will of Caesar, +It will inflame you, it will make you mad: +'Tis good you know not that you are his heirs; +For, if you should, O, what would come of it! + +Fourth Citizen: +Read the will; we'll hear it, Antony; +You shall read us the will, Caesar's will. + +ANTONY: +Will you be patient? will you stay awhile? +I have o'ershot myself to tell you of it: +I fear I wrong the honourable men +Whose daggers have stabb'd Caesar; I do fear it. + +Fourth Citizen: +They were traitors: honourable men! + +All: +The will! the testament! + +Second Citizen: +They were villains, murderers: the will! read the will. + +ANTONY: +You will compel me, then, to read the will? +Then make a ring about the corpse of Caesar, +And let me show you him that made the will. +Shall I descend? and will you give me leave? + +Several Citizens: +Come down. + +Second Citizen: +Descend. + +Third Citizen: +You shall have leave. + +Fourth Citizen: +A ring; stand round. + +First Citizen: +Stand from the hearse, stand from the body. + +Second Citizen: +Room for Antony, most noble Antony. + +ANTONY: +Nay, press not so upon me; stand far off. + +Several Citizens: +Stand back; room; bear back. + +ANTONY: +If you have tears, prepare to shed them now. +You all do know this mantle: I remember +The first time ever Caesar put it on; +'Twas on a summer's evening, in his tent, +That day he overcame the Nervii: +Look, in this place ran Cassius' dagger through: +See what a rent the envious Casca made: +Through this the well-beloved Brutus stabb'd; +And as he pluck'd his cursed steel away, +Mark how the blood of Caesar follow'd it, +As rushing out of doors, to be resolved +If Brutus so unkindly knock'd, or no; +For Brutus, as you know, was Caesar's angel: +Judge, O you gods, how dearly Caesar loved him! +This was the most unkindest cut of all; +For when the noble Caesar saw him stab, +Ingratitude, more strong than traitors' arms, +Quite vanquish'd him: then burst his mighty heart; +And, in his mantle muffling up his face, +Even at the base of Pompey's statua, +Which all the while ran blood, great Caesar fell. +O, what a fall was there, my countrymen! +Then I, and you, and all of us fell down, +Whilst bloody treason flourish'd over us. +O, now you weep; and, I perceive, you feel +The dint of pity: these are gracious drops. +Kind souls, what, weep you when you but behold +Our Caesar's vesture wounded? Look you here, +Here is himself, marr'd, as you see, with traitors. + +First Citizen: +O piteous spectacle! + +Second Citizen: +O noble Caesar! + +Third Citizen: +O woful day! + +Fourth Citizen: +O traitors, villains! + +First Citizen: +O most bloody sight! + +Second Citizen: +We will be revenged. + +All: +Revenge! About! Seek! Burn! Fire! Kill! Slay! +Let not a traitor live! + +ANTONY: +Stay, countrymen. + +First Citizen: +Peace there! hear the noble Antony. + +Second Citizen: +We'll hear him, we'll follow him, we'll die with him. + +ANTONY: +Good friends, sweet friends, let me not stir you up +To such a sudden flood of mutiny. +They that have done this deed are honourable: +What private griefs they have, alas, I know not, +That made them do it: they are wise and honourable, +And will, no doubt, with reasons answer you. +I come not, friends, to steal away your hearts: +I am no orator, as Brutus is; +But, as you know me all, a plain blunt man, +That love my friend; and that they know full well +That gave me public leave to speak of him: +For I have neither wit, nor words, nor worth, +Action, nor utterance, nor the power of speech, +To stir men's blood: I only speak right on; +I tell you that which you yourselves do know; +Show you sweet Caesar's wounds, poor poor dumb mouths, +And bid them speak for me: but were I Brutus, +And Brutus Antony, there were an Antony +Would ruffle up your spirits and put a tongue +In every wound of Caesar that should move +The stones of Rome to rise and mutiny. + +All: +We'll mutiny. + +First Citizen: +We'll burn the house of Brutus. + +Third Citizen: +Away, then! come, seek the conspirators. + +ANTONY: +Yet hear me, countrymen; yet hear me speak. + +All: +Peace, ho! Hear Antony. Most noble Antony! + +ANTONY: +Why, friends, you go to do you know not what: +Wherein hath Caesar thus deserved your loves? +Alas, you know not: I must tell you then: +You have forgot the will I told you of. + +All: +Most true. The will! Let's stay and hear the will. + +ANTONY: +Here is the will, and under Caesar's seal. +To every Roman citizen he gives, +To every several man, seventy-five drachmas. + +Second Citizen: +Most noble Caesar! We'll revenge his death. + +Third Citizen: +O royal Caesar! + +ANTONY: +Hear me with patience. + +All: +Peace, ho! + +ANTONY: +Moreover, he hath left you all his walks, +His private arbours and new-planted orchards, +On this side Tiber; he hath left them you, +And to your heirs for ever, common pleasures, +To walk abroad, and recreate yourselves. +Here was a Caesar! when comes such another? + +First Citizen: +Never, never. Come, away, away! +We'll burn his body in the holy place, +And with the brands fire the traitors' houses. +Take up the body. + +Second Citizen: +Go fetch fire. + +Third Citizen: +Pluck down benches. + +Fourth Citizen: +Pluck down forms, windows, any thing. + +ANTONY: +Now let it work. Mischief, thou art afoot, +Take thou what course thou wilt! +How now, fellow! + +Servant: +Sir, Octavius is already come to Rome. + +ANTONY: +Where is he? + +Servant: +He and Lepidus are at Caesar's house. + +ANTONY: +And thither will I straight to visit him: +He comes upon a wish. Fortune is merry, +And in this mood will give us any thing. + +Servant: +I heard him say, Brutus and Cassius +Are rid like madmen through the gates of Rome. + +ANTONY: +Belike they had some notice of the people, +How I had moved them. Bring me to Octavius. + +CINNA THE POET: +I dreamt to-night that I did feast with Caesar, +And things unlucky charge my fantasy: +I have no will to wander forth of doors, +Yet something leads me forth. + +First Citizen: +What is your name? + +Second Citizen: +Whither are you going? + +Third Citizen: +Where do you dwell? + +Fourth Citizen: +Are you a married man or a bachelor? + +Second Citizen: +Answer every man directly. + +First Citizen: +Ay, and briefly. + +Fourth Citizen: +Ay, and wisely. + +Third Citizen: +Ay, and truly, you were best. + +CINNA THE POET: +What is my name? Whither am I going? Where do I +dwell? Am I a married man or a bachelor? Then, to +answer every man directly and briefly, wisely and +truly: wisely I say, I am a bachelor. + +Second Citizen: +That's as much as to say, they are fools that marry: +you'll bear me a bang for that, I fear. Proceed; directly. + +CINNA THE POET: +Directly, I am going to Caesar's funeral. + +First Citizen: +As a friend or an enemy? + +CINNA THE POET: +As a friend. + +Second Citizen: +That matter is answered directly. + +Fourth Citizen: +For your dwelling,--briefly. + +CINNA THE POET: +Briefly, I dwell by the Capitol. + +Third Citizen: +Your name, sir, truly. + +CINNA THE POET: +Truly, my name is Cinna. + +First Citizen: +Tear him to pieces; he's a conspirator. + +CINNA THE POET: +I am Cinna the poet, I am Cinna the poet. + +Fourth Citizen: +Tear him for his bad verses, tear him for his bad verses. + +CINNA THE POET: +I am not Cinna the conspirator. + +Fourth Citizen: +It is no matter, his name's Cinna; pluck but his +name out of his heart, and turn him going. + +Third Citizen: +Tear him, tear him! Come, brands ho! fire-brands: +to Brutus', to Cassius'; burn all: some to Decius' +house, and some to Casca's; some to Ligarius': away, go! + +ANTONY: +These many, then, shall die; their names are prick'd. + +OCTAVIUS: +Your brother too must die; consent you, Lepidus? + +LEPIDUS: +I do consent-- + +OCTAVIUS: +Prick him down, Antony. + +LEPIDUS: +Upon condition Publius shall not live, +Who is your sister's son, Mark Antony. + +ANTONY: +He shall not live; look, with a spot I damn him. +But, Lepidus, go you to Caesar's house; +Fetch the will hither, and we shall determine +How to cut off some charge in legacies. + +LEPIDUS: +What, shall I find you here? + +OCTAVIUS: +Or here, or at the Capitol. + +ANTONY: +This is a slight unmeritable man, +Meet to be sent on errands: is it fit, +The three-fold world divided, he should stand +One of the three to share it? + +OCTAVIUS: +So you thought him; +And took his voice who should be prick'd to die, +In our black sentence and proscription. + +ANTONY: +Octavius, I have seen more days than you: +And though we lay these honours on this man, +To ease ourselves of divers slanderous loads, +He shall but bear them as the ass bears gold, +To groan and sweat under the business, +Either led or driven, as we point the way; +And having brought our treasure where we will, +Then take we down his load, and turn him off, +Like to the empty ass, to shake his ears, +And graze in commons. + +OCTAVIUS: +You may do your will; +But he's a tried and valiant soldier. + +ANTONY: +So is my horse, Octavius; and for that +I do appoint him store of provender: +It is a creature that I teach to fight, +To wind, to stop, to run directly on, +His corporal motion govern'd by my spirit. +And, in some taste, is Lepidus but so; +He must be taught and train'd and bid go forth; +A barren-spirited fellow; one that feeds +On abjects, orts and imitations, +Which, out of use and staled by other men, +Begin his fashion: do not talk of him, +But as a property. And now, Octavius, +Listen great things:--Brutus and Cassius +Are levying powers: we must straight make head: +Therefore let our alliance be combined, +Our best friends made, our means stretch'd +And let us presently go sit in council, +How covert matters may be best disclosed, +And open perils surest answered. + +OCTAVIUS: +Let us do so: for we are at the stake, +And bay'd about with many enemies; +And some that smile have in their hearts, I fear, +Millions of mischiefs. + +BRUTUS: +Stand, ho! + +LUCILIUS: +Give the word, ho! and stand. + +BRUTUS: +What now, Lucilius! is Cassius near? + +LUCILIUS: +He is at hand; and Pindarus is come +To do you salutation from his master. + +BRUTUS: +He greets me well. Your master, Pindarus, +In his own change, or by ill officers, +Hath given me some worthy cause to wish +Things done, undone: but, if he be at hand, +I shall be satisfied. + +PINDARUS: +I do not doubt +But that my noble master will appear +Such as he is, full of regard and honour. + +BRUTUS: +He is not doubted. A word, Lucilius; +How he received you, let me be resolved. + +LUCILIUS: +With courtesy and with respect enough; +But not with such familiar instances, +Nor with such free and friendly conference, +As he hath used of old. + +BRUTUS: +Thou hast described +A hot friend cooling: ever note, Lucilius, +When love begins to sicken and decay, +It useth an enforced ceremony. +There are no tricks in plain and simple faith; +But hollow men, like horses hot at hand, +Make gallant show and promise of their mettle; +But when they should endure the bloody spur, +They fall their crests, and, like deceitful jades, +Sink in the trial. Comes his army on? + +LUCILIUS: +They mean this night in Sardis to be quarter'd; +The greater part, the horse in general, +Are come with Cassius. + +BRUTUS: +Hark! he is arrived. +March gently on to meet him. + +CASSIUS: +Stand, ho! + +BRUTUS: +Stand, ho! Speak the word along. + +First Soldier: +Stand! + +Second Soldier: +Stand! + +Third Soldier: +Stand! + +CASSIUS: +Most noble brother, you have done me wrong. + +BRUTUS: +Judge me, you gods! wrong I mine enemies? +And, if not so, how should I wrong a brother? + +CASSIUS: +Brutus, this sober form of yours hides wrongs; +And when you do them-- + +BRUTUS: +Cassius, be content. +Speak your griefs softly: I do know you well. +Before the eyes of both our armies here, +Which should perceive nothing but love from us, +Let us not wrangle: bid them move away; +Then in my tent, Cassius, enlarge your griefs, +And I will give you audience. + +CASSIUS: +Pindarus, +Bid our commanders lead their charges off +A little from this ground. + +BRUTUS: +Lucilius, do you the like; and let no man +Come to our tent till we have done our conference. +Let Lucius and Titinius guard our door. + +CASSIUS: +That you have wrong'd me doth appear in this: +You have condemn'd and noted Lucius Pella +For taking bribes here of the Sardians; +Wherein my letters, praying on his side, +Because I knew the man, were slighted off. + +BRUTUS: +You wronged yourself to write in such a case. + +CASSIUS: +In such a time as this it is not meet +That every nice offence should bear his comment. + +BRUTUS: +Let me tell you, Cassius, you yourself +Are much condemn'd to have an itching palm; +To sell and mart your offices for gold +To undeservers. + +CASSIUS: +I an itching palm! +You know that you are Brutus that speak this, +Or, by the gods, this speech were else your last. + +BRUTUS: +The name of Cassius honours this corruption, +And chastisement doth therefore hide his head. + +CASSIUS: +Chastisement! + +BRUTUS: +Remember March, the ides of March remember: +Did not great Julius bleed for justice' sake? +What villain touch'd his body, that did stab, +And not for justice? What, shall one of us +That struck the foremost man of all this world +But for supporting robbers, shall we now +Contaminate our fingers with base bribes, +And sell the mighty space of our large honours +For so much trash as may be grasped thus? +I had rather be a dog, and bay the moon, +Than such a Roman. + +CASSIUS: +Brutus, bay not me; +I'll not endure it: you forget yourself, +To hedge me in; I am a soldier, I, +Older in practise, abler than yourself +To make conditions. + +BRUTUS: +Go to; you are not, Cassius. + +CASSIUS: +I am. + +BRUTUS: +I say you are not. + +CASSIUS: +Urge me no more, I shall forget myself; +Have mind upon your health, tempt me no further. + +BRUTUS: +Away, slight man! + +CASSIUS: +Is't possible? + +BRUTUS: +Hear me, for I will speak. +Must I give way and room to your rash choler? +Shall I be frighted when a madman stares? + +CASSIUS: +O ye gods, ye gods! must I endure all this? + +BRUTUS: +All this! ay, more: fret till your proud heart break; +Go show your slaves how choleric you are, +And make your bondmen tremble. Must I budge? +Must I observe you? must I stand and crouch +Under your testy humour? By the gods +You shall digest the venom of your spleen, +Though it do split you; for, from this day forth, +I'll use you for my mirth, yea, for my laughter, +When you are waspish. + +CASSIUS: +Is it come to this? + +BRUTUS: +You say you are a better soldier: +Let it appear so; make your vaunting true, +And it shall please me well: for mine own part, +I shall be glad to learn of noble men. + +CASSIUS: +You wrong me every way; you wrong me, Brutus; +I said, an elder soldier, not a better: +Did I say 'better'? + +BRUTUS: +If you did, I care not. + +CASSIUS: +When Caesar lived, he durst not thus have moved me. + +BRUTUS: +Peace, peace! you durst not so have tempted him. + +CASSIUS: +I durst not! + +BRUTUS: +No. + +CASSIUS: +What, durst not tempt him! + +BRUTUS: +For your life you durst not! + +CASSIUS: +Do not presume too much upon my love; +I may do that I shall be sorry for. + +BRUTUS: +You have done that you should be sorry for. +There is no terror, Cassius, in your threats, +For I am arm'd so strong in honesty +That they pass by me as the idle wind, +Which I respect not. I did send to you +For certain sums of gold, which you denied me: +For I can raise no money by vile means: +By heaven, I had rather coin my heart, +And drop my blood for drachmas, than to wring +From the hard hands of peasants their vile trash +By any indirection: I did send +To you for gold to pay my legions, +Which you denied me: was that done like Cassius? +Should I have answer'd Caius Cassius so? +When Marcus Brutus grows so covetous, +To lock such rascal counters from his friends, +Be ready, gods, with all your thunderbolts; +Dash him to pieces! + +CASSIUS: +I denied you not. + +BRUTUS: +You did. + +CASSIUS: +I did not: he was but a fool that brought +My answer back. Brutus hath rived my heart: +A friend should bear his friend's infirmities, +But Brutus makes mine greater than they are. + +BRUTUS: +I do not, till you practise them on me. + +CASSIUS: +You love me not. + +BRUTUS: +I do not like your faults. + +CASSIUS: +A friendly eye could never see such faults. + +BRUTUS: +A flatterer's would not, though they do appear +As huge as high Olympus. + +CASSIUS: +Come, Antony, and young Octavius, come, +Revenge yourselves alone on Cassius, +For Cassius is aweary of the world; +Hated by one he loves; braved by his brother; +Cheque'd like a bondman; all his faults observed, +Set in a note-book, learn'd, and conn'd by rote, +To cast into my teeth. O, I could weep +My spirit from mine eyes! There is my dagger, +And here my naked breast; within, a heart +Dearer than Plutus' mine, richer than gold: +If that thou be'st a Roman, take it forth; +I, that denied thee gold, will give my heart: +Strike, as thou didst at Caesar; for, I know, +When thou didst hate him worst, thou lovedst him better +Than ever thou lovedst Cassius. + +BRUTUS: +Sheathe your dagger: +Be angry when you will, it shall have scope; +Do what you will, dishonour shall be humour. +O Cassius, you are yoked with a lamb +That carries anger as the flint bears fire; +Who, much enforced, shows a hasty spark, +And straight is cold again. + +CASSIUS: +Hath Cassius lived +To be but mirth and laughter to his Brutus, +When grief, and blood ill-temper'd, vexeth him? + +BRUTUS: +When I spoke that, I was ill-temper'd too. + +CASSIUS: +Do you confess so much? Give me your hand. + +BRUTUS: +And my heart too. + +CASSIUS: +O Brutus! + +BRUTUS: +What's the matter? + +CASSIUS: +Have not you love enough to bear with me, +When that rash humour which my mother gave me +Makes me forgetful? + +BRUTUS: +Yes, Cassius; and, from henceforth, +When you are over-earnest with your Brutus, +He'll think your mother chides, and leave you so. + +Poet: + +LUCILIUS: + +Poet: + +CASSIUS: +How now! what's the matter? + +Poet: +For shame, you generals! what do you mean? +Love, and be friends, as two such men should be; +For I have seen more years, I'm sure, than ye. + +CASSIUS: +Ha, ha! how vilely doth this cynic rhyme! + +BRUTUS: +Get you hence, sirrah; saucy fellow, hence! + +CASSIUS: +Bear with him, Brutus; 'tis his fashion. + +BRUTUS: +I'll know his humour, when he knows his time: +What should the wars do with these jigging fools? +Companion, hence! + +CASSIUS: +Away, away, be gone. + +BRUTUS: +Lucilius and Titinius, bid the commanders +Prepare to lodge their companies to-night. + +CASSIUS: +And come yourselves, and bring Messala with you +Immediately to us. + +BRUTUS: +Lucius, a bowl of wine! + +CASSIUS: +I did not think you could have been so angry. + +BRUTUS: +O Cassius, I am sick of many griefs. + +CASSIUS: +Of your philosophy you make no use, +If you give place to accidental evils. + +BRUTUS: +No man bears sorrow better. Portia is dead. + +CASSIUS: +Ha! Portia! + +BRUTUS: +She is dead. + +CASSIUS: +How 'scaped I killing when I cross'd you so? +O insupportable and touching loss! +Upon what sickness? + +BRUTUS: +Impatient of my absence, +And grief that young Octavius with Mark Antony +Have made themselves so strong:--for with her death +That tidings came;--with this she fell distract, +And, her attendants absent, swallow'd fire. + +CASSIUS: +And died so? + +BRUTUS: +Even so. + +CASSIUS: +O ye immortal gods! + +BRUTUS: +Speak no more of her. Give me a bowl of wine. +In this I bury all unkindness, Cassius. + +CASSIUS: +My heart is thirsty for that noble pledge. +Fill, Lucius, till the wine o'erswell the cup; +I cannot drink too much of Brutus' love. + +BRUTUS: +Come in, Titinius! +Welcome, good Messala. +Now sit we close about this taper here, +And call in question our necessities. + +CASSIUS: +Portia, art thou gone? + +BRUTUS: +No more, I pray you. +Messala, I have here received letters, +That young Octavius and Mark Antony +Come down upon us with a mighty power, +Bending their expedition toward Philippi. + +MESSALA: +Myself have letters of the selfsame tenor. + +BRUTUS: +With what addition? + +MESSALA: +That by proscription and bills of outlawry, +Octavius, Antony, and Lepidus, +Have put to death an hundred senators. + +BRUTUS: +Therein our letters do not well agree; +Mine speak of seventy senators that died +By their proscriptions, Cicero being one. + +CASSIUS: +Cicero one! + +MESSALA: +Cicero is dead, +And by that order of proscription. +Had you your letters from your wife, my lord? + +BRUTUS: +No, Messala. + +MESSALA: +Nor nothing in your letters writ of her? + +BRUTUS: +Nothing, Messala. + +MESSALA: +That, methinks, is strange. + +BRUTUS: +Why ask you? hear you aught of her in yours? + +MESSALA: +No, my lord. + +BRUTUS: +Now, as you are a Roman, tell me true. + +MESSALA: +Then like a Roman bear the truth I tell: +For certain she is dead, and by strange manner. + +BRUTUS: +Why, farewell, Portia. We must die, Messala: +With meditating that she must die once, +I have the patience to endure it now. + +MESSALA: +Even so great men great losses should endure. + +CASSIUS: +I have as much of this in art as you, +But yet my nature could not bear it so. + +BRUTUS: +Well, to our work alive. What do you think +Of marching to Philippi presently? + +CASSIUS: +I do not think it good. + +BRUTUS: +Your reason? + +CASSIUS: +This it is: +'Tis better that the enemy seek us: +So shall he waste his means, weary his soldiers, +Doing himself offence; whilst we, lying still, +Are full of rest, defense, and nimbleness. + +BRUTUS: +Good reasons must, of force, give place to better. +The people 'twixt Philippi and this ground +Do stand but in a forced affection; +For they have grudged us contribution: +The enemy, marching along by them, +By them shall make a fuller number up, +Come on refresh'd, new-added, and encouraged; +From which advantage shall we cut him off, +If at Philippi we do face him there, +These people at our back. + +CASSIUS: +Hear me, good brother. + +BRUTUS: +Under your pardon. You must note beside, +That we have tried the utmost of our friends, +Our legions are brim-full, our cause is ripe: +The enemy increaseth every day; +We, at the height, are ready to decline. +There is a tide in the affairs of men, +Which, taken at the flood, leads on to fortune; +Omitted, all the voyage of their life +Is bound in shallows and in miseries. +On such a full sea are we now afloat; +And we must take the current when it serves, +Or lose our ventures. + +CASSIUS: +Then, with your will, go on; +We'll along ourselves, and meet them at Philippi. + +BRUTUS: +The deep of night is crept upon our talk, +And nature must obey necessity; +Which we will niggard with a little rest. +There is no more to say? + +CASSIUS: +No more. Good night: +Early to-morrow will we rise, and hence. + +BRUTUS: +Lucius! +My gown. +Farewell, good Messala: +Good night, Titinius. Noble, noble Cassius, +Good night, and good repose. + +CASSIUS: +O my dear brother! +This was an ill beginning of the night: +Never come such division 'tween our souls! +Let it not, Brutus. + +BRUTUS: +Every thing is well. + +CASSIUS: +Good night, my lord. + +BRUTUS: +Good night, good brother. + +TITINIUS: +Good night, Lord Brutus. + +BRUTUS: +Farewell, every one. +Give me the gown. Where is thy instrument? + +LUCIUS: +Here in the tent. + +BRUTUS: +What, thou speak'st drowsily? +Poor knave, I blame thee not; thou art o'er-watch'd. +Call Claudius and some other of my men: +I'll have them sleep on cushions in my tent. + +LUCIUS: +Varro and Claudius! + +VARRO: +Calls my lord? + +BRUTUS: +I pray you, sirs, lie in my tent and sleep; +It may be I shall raise you by and by +On business to my brother Cassius. + +VARRO: +So please you, we will stand and watch your pleasure. + +BRUTUS: +I will not have it so: lie down, good sirs; +It may be I shall otherwise bethink me. +Look, Lucius, here's the book I sought for so; +I put it in the pocket of my gown. + +LUCIUS: +I was sure your lordship did not give it me. + +BRUTUS: +Bear with me, good boy, I am much forgetful. +Canst thou hold up thy heavy eyes awhile, +And touch thy instrument a strain or two? + +LUCIUS: +Ay, my lord, an't please you. + +BRUTUS: +It does, my boy: +I trouble thee too much, but thou art willing. + +LUCIUS: +It is my duty, sir. + +BRUTUS: +I should not urge thy duty past thy might; +I know young bloods look for a time of rest. + +LUCIUS: +I have slept, my lord, already. + +BRUTUS: +It was well done; and thou shalt sleep again; +I will not hold thee long: if I do live, +I will be good to thee. +This is a sleepy tune. O murderous slumber, +Lay'st thou thy leaden mace upon my boy, +That plays thee music? Gentle knave, good night; +I will not do thee so much wrong to wake thee: +If thou dost nod, thou break'st thy instrument; +I'll take it from thee; and, good boy, good night. +Let me see, let me see; is not the leaf turn'd down +Where I left reading? Here it is, I think. +How ill this taper burns! Ha! who comes here? +I think it is the weakness of mine eyes +That shapes this monstrous apparition. +It comes upon me. Art thou any thing? +Art thou some god, some angel, or some devil, +That makest my blood cold and my hair to stare? +Speak to me what thou art. + +GHOST: +Thy evil spirit, Brutus. + +BRUTUS: +Why comest thou? + +GHOST: +To tell thee thou shalt see me at Philippi. + +BRUTUS: +Well; then I shall see thee again? + +GHOST: +Ay, at Philippi. + +BRUTUS: +Why, I will see thee at Philippi, then. +Now I have taken heart thou vanishest: +Ill spirit, I would hold more talk with thee. +Boy, Lucius! Varro! Claudius! Sirs, awake! Claudius! + +LUCIUS: +The strings, my lord, are false. + +BRUTUS: +He thinks he still is at his instrument. +Lucius, awake! + +LUCIUS: +My lord? + +BRUTUS: +Didst thou dream, Lucius, that thou so criedst out? + +LUCIUS: +My lord, I do not know that I did cry. + +BRUTUS: +Yes, that thou didst: didst thou see any thing? + +LUCIUS: +Nothing, my lord. + +BRUTUS: +Sleep again, Lucius. Sirrah Claudius! +Fellow thou, awake! + +VARRO: +My lord? + +CLAUDIUS: +My lord? + +BRUTUS: +Why did you so cry out, sirs, in your sleep? + +VARRO: +Did we, my lord? + +BRUTUS: +Ay: saw you any thing? + +VARRO: +No, my lord, I saw nothing. + +CLAUDIUS: +Nor I, my lord. + +BRUTUS: +Go and commend me to my brother Cassius; +Bid him set on his powers betimes before, +And we will follow. + +VARRO: +It shall be done, my lord. + +OCTAVIUS: +Now, Antony, our hopes are answered: +You said the enemy would not come down, +But keep the hills and upper regions; +It proves not so: their battles are at hand; +They mean to warn us at Philippi here, +Answering before we do demand of them. + +ANTONY: +Tut, I am in their bosoms, and I know +Wherefore they do it: they could be content +To visit other places; and come down +With fearful bravery, thinking by this face +To fasten in our thoughts that they have courage; +But 'tis not so. + +Messenger: +Prepare you, generals: +The enemy comes on in gallant show; +Their bloody sign of battle is hung out, +And something to be done immediately. + +ANTONY: +Octavius, lead your battle softly on, +Upon the left hand of the even field. + +OCTAVIUS: +Upon the right hand I; keep thou the left. + +ANTONY: +Why do you cross me in this exigent? + +OCTAVIUS: +I do not cross you; but I will do so. + +BRUTUS: +They stand, and would have parley. + +CASSIUS: +Stand fast, Titinius: we must out and talk. + +OCTAVIUS: +Mark Antony, shall we give sign of battle? + +ANTONY: +No, Caesar, we will answer on their charge. +Make forth; the generals would have some words. + +OCTAVIUS: +Stir not until the signal. + +BRUTUS: +Words before blows: is it so, countrymen? + +OCTAVIUS: +Not that we love words better, as you do. + +BRUTUS: +Good words are better than bad strokes, Octavius. + +ANTONY: +In your bad strokes, Brutus, you give good words: +Witness the hole you made in Caesar's heart, +Crying 'Long live! hail, Caesar!' + +CASSIUS: +Antony, +The posture of your blows are yet unknown; +But for your words, they rob the Hybla bees, +And leave them honeyless. + +ANTONY: +Not stingless too. + +BRUTUS: +O, yes, and soundless too; +For you have stol'n their buzzing, Antony, +And very wisely threat before you sting. + +ANTONY: +Villains, you did not so, when your vile daggers +Hack'd one another in the sides of Caesar: +You show'd your teeth like apes, and fawn'd like hounds, +And bow'd like bondmen, kissing Caesar's feet; +Whilst damned Casca, like a cur, behind +Struck Caesar on the neck. O you flatterers! + +CASSIUS: +Flatterers! Now, Brutus, thank yourself: +This tongue had not offended so to-day, +If Cassius might have ruled. + +OCTAVIUS: +Come, come, the cause: if arguing make us sweat, +The proof of it will turn to redder drops. Look; +I draw a sword against conspirators; +When think you that the sword goes up again? +Never, till Caesar's three and thirty wounds +Be well avenged; or till another Caesar +Have added slaughter to the sword of traitors. + +BRUTUS: +Caesar, thou canst not die by traitors' hands, +Unless thou bring'st them with thee. + +OCTAVIUS: +So I hope; +I was not born to die on Brutus' sword. + +BRUTUS: +O, if thou wert the noblest of thy strain, +Young man, thou couldst not die more honourable. + +CASSIUS: +A peevish schoolboy, worthless of such honour, +Join'd with a masker and a reveller! + +ANTONY: +Old Cassius still! + +OCTAVIUS: +Come, Antony, away! +Defiance, traitors, hurl we in your teeth: +If you dare fight to-day, come to the field; +If not, when you have stomachs. + +CASSIUS: +Why, now, blow wind, swell billow and swim bark! +The storm is up, and all is on the hazard. + +BRUTUS: +Ho, Lucilius! hark, a word with you. + +LUCILIUS: + +CASSIUS: +Messala! + +MESSALA: + +CASSIUS: +Messala, +This is my birth-day; as this very day +Was Cassius born. Give me thy hand, Messala: +Be thou my witness that against my will, +As Pompey was, am I compell'd to set +Upon one battle all our liberties. +You know that I held Epicurus strong +And his opinion: now I change my mind, +And partly credit things that do presage. +Coming from Sardis, on our former ensign +Two mighty eagles fell, and there they perch'd, +Gorging and feeding from our soldiers' hands; +Who to Philippi here consorted us: +This morning are they fled away and gone; +And in their steads do ravens, crows and kites, +Fly o'er our heads and downward look on us, +As we were sickly prey: their shadows seem +A canopy most fatal, under which +Our army lies, ready to give up the ghost. + +MESSALA: +Believe not so. + +CASSIUS: +I but believe it partly; +For I am fresh of spirit and resolved +To meet all perils very constantly. + +BRUTUS: +Even so, Lucilius. + +CASSIUS: +Now, most noble Brutus, +The gods to-day stand friendly, that we may, +Lovers in peace, lead on our days to age! +But since the affairs of men rest still incertain, +Let's reason with the worst that may befall. +If we do lose this battle, then is this +The very last time we shall speak together: +What are you then determined to do? + +BRUTUS: +Even by the rule of that philosophy +By which I did blame Cato for the death +Which he did give himself, I know not how, +But I do find it cowardly and vile, +For fear of what might fall, so to prevent +The time of life: arming myself with patience +To stay the providence of some high powers +That govern us below. + +CASSIUS: +Then, if we lose this battle, +You are contented to be led in triumph +Thorough the streets of Rome? + +BRUTUS: +No, Cassius, no: think not, thou noble Roman, +That ever Brutus will go bound to Rome; +He bears too great a mind. But this same day +Must end that work the ides of March begun; +And whether we shall meet again I know not. +Therefore our everlasting farewell take: +For ever, and for ever, farewell, Cassius! +If we do meet again, why, we shall smile; +If not, why then, this parting was well made. + +CASSIUS: +For ever, and for ever, farewell, Brutus! +If we do meet again, we'll smile indeed; +If not, 'tis true this parting was well made. + +BRUTUS: +Why, then, lead on. O, that a man might know +The end of this day's business ere it come! +But it sufficeth that the day will end, +And then the end is known. Come, ho! away! + +BRUTUS: +Ride, ride, Messala, ride, and give these bills +Unto the legions on the other side. +Let them set on at once; for I perceive +But cold demeanor in Octavius' wing, +And sudden push gives them the overthrow. +Ride, ride, Messala: let them all come down. + +CASSIUS: +O, look, Titinius, look, the villains fly! +Myself have to mine own turn'd enemy: +This ensign here of mine was turning back; +I slew the coward, and did take it from him. + +TITINIUS: +O Cassius, Brutus gave the word too early; +Who, having some advantage on Octavius, +Took it too eagerly: his soldiers fell to spoil, +Whilst we by Antony are all enclosed. + +PINDARUS: +Fly further off, my lord, fly further off; +Mark Antony is in your tents, my lord +Fly, therefore, noble Cassius, fly far off. + +CASSIUS: +This hill is far enough. Look, look, Titinius; +Are those my tents where I perceive the fire? + +TITINIUS: +They are, my lord. + +CASSIUS: +Titinius, if thou lovest me, +Mount thou my horse, and hide thy spurs in him, +Till he have brought thee up to yonder troops, +And here again; that I may rest assured +Whether yond troops are friend or enemy. + +TITINIUS: +I will be here again, even with a thought. + +CASSIUS: +Go, Pindarus, get higher on that hill; +My sight was ever thick; regard Titinius, +And tell me what thou notest about the field. +This day I breathed first: time is come round, +And where I did begin, there shall I end; +My life is run his compass. Sirrah, what news? + +PINDARUS: + +CASSIUS: +What news? + +PINDARUS: + +CASSIUS: +Come down, behold no more. +O, coward that I am, to live so long, +To see my best friend ta'en before my face! +Come hither, sirrah: +In Parthia did I take thee prisoner; +And then I swore thee, saving of thy life, +That whatsoever I did bid thee do, +Thou shouldst attempt it. Come now, keep thine oath; +Now be a freeman: and with this good sword, +That ran through Caesar's bowels, search this bosom. +Stand not to answer: here, take thou the hilts; +And, when my face is cover'd, as 'tis now, +Guide thou the sword. +Caesar, thou art revenged, +Even with the sword that kill'd thee. + +PINDARUS: +So, I am free; yet would not so have been, +Durst I have done my will. O Cassius, +Far from this country Pindarus shall run, +Where never Roman shall take note of him. + +MESSALA: +It is but change, Titinius; for Octavius +Is overthrown by noble Brutus' power, +As Cassius' legions are by Antony. + +TITINIUS: +These tidings will well comfort Cassius. + +MESSALA: +Where did you leave him? + +TITINIUS: +All disconsolate, +With Pindarus his bondman, on this hill. + +MESSALA: +Is not that he that lies upon the ground? + +TITINIUS: +He lies not like the living. O my heart! + +MESSALA: +Is not that he? + +TITINIUS: +No, this was he, Messala, +But Cassius is no more. O setting sun, +As in thy red rays thou dost sink to-night, +So in his red blood Cassius' day is set; +The sun of Rome is set! Our day is gone; +Clouds, dews, and dangers come; our deeds are done! +Mistrust of my success hath done this deed. + +MESSALA: +Mistrust of good success hath done this deed. +O hateful error, melancholy's child, +Why dost thou show to the apt thoughts of men +The things that are not? O error, soon conceived, +Thou never comest unto a happy birth, +But kill'st the mother that engender'd thee! + +TITINIUS: +What, Pindarus! where art thou, Pindarus? + +MESSALA: +Seek him, Titinius, whilst I go to meet +The noble Brutus, thrusting this report +Into his ears; I may say, thrusting it; +For piercing steel and darts envenomed +Shall be as welcome to the ears of Brutus +As tidings of this sight. + +TITINIUS: +Hie you, Messala, +And I will seek for Pindarus the while. +Why didst thou send me forth, brave Cassius? +Did I not meet thy friends? and did not they +Put on my brows this wreath of victory, +And bid me give it thee? Didst thou not hear their shouts? +Alas, thou hast misconstrued every thing! +But, hold thee, take this garland on thy brow; +Thy Brutus bid me give it thee, and I +Will do his bidding. Brutus, come apace, +And see how I regarded Caius Cassius. +By your leave, gods:--this is a Roman's part +Come, Cassius' sword, and find Titinius' heart. + +BRUTUS: +Where, where, Messala, doth his body lie? + +MESSALA: +Lo, yonder, and Titinius mourning it. + +BRUTUS: +Titinius' face is upward. + +CATO: +He is slain. + +BRUTUS: +O Julius Caesar, thou art mighty yet! +Thy spirit walks abroad and turns our swords +In our own proper entrails. + +CATO: +Brave Titinius! +Look, whether he have not crown'd dead Cassius! + +BRUTUS: +Are yet two Romans living such as these? +The last of all the Romans, fare thee well! +It is impossible that ever Rome +Should breed thy fellow. Friends, I owe more tears +To this dead man than you shall see me pay. +I shall find time, Cassius, I shall find time. +Come, therefore, and to Thasos send his body: +His funerals shall not be in our camp, +Lest it discomfort us. Lucilius, come; +And come, young Cato; let us to the field. +Labeo and Flavius, set our battles on: +'Tis three o'clock; and, Romans, yet ere night +We shall try fortune in a second fight. + +BRUTUS: +Yet, countrymen, O, yet hold up your heads! + +CATO: +What bastard doth not? Who will go with me? +I will proclaim my name about the field: +I am the son of Marcus Cato, ho! +A foe to tyrants, and my country's friend; +I am the son of Marcus Cato, ho! + +BRUTUS: +And I am Brutus, Marcus Brutus, I; +Brutus, my country's friend; know me for Brutus! + +LUCILIUS: +O young and noble Cato, art thou down? +Why, now thou diest as bravely as Titinius; +And mayst be honour'd, being Cato's son. + +First Soldier: +Yield, or thou diest. + +LUCILIUS: +Only I yield to die: +There is so much that thou wilt kill me straight; +Kill Brutus, and be honour'd in his death. + +First Soldier: +We must not. A noble prisoner! + +Second Soldier: +Room, ho! Tell Antony, Brutus is ta'en. + +First Soldier: +I'll tell the news. Here comes the general. +Brutus is ta'en, Brutus is ta'en, my lord. + +ANTONY: +Where is he? + +LUCILIUS: +Safe, Antony; Brutus is safe enough: +I dare assure thee that no enemy +Shall ever take alive the noble Brutus: +The gods defend him from so great a shame! +When you do find him, or alive or dead, +He will be found like Brutus, like himself. + +ANTONY: +This is not Brutus, friend; but, I assure you, +A prize no less in worth: keep this man safe; +Give him all kindness: I had rather have +Such men my friends than enemies. Go on, +And see whether Brutus be alive or dead; +And bring us word unto Octavius' tent +How every thing is chanced. + +BRUTUS: +Come, poor remains of friends, rest on this rock. + +CLITUS: +Statilius show'd the torch-light, but, my lord, +He came not back: he is or ta'en or slain. + +BRUTUS: +Sit thee down, Clitus: slaying is the word; +It is a deed in fashion. Hark thee, Clitus. + +CLITUS: +What, I, my lord? No, not for all the world. + +BRUTUS: +Peace then! no words. + +CLITUS: +I'll rather kill myself. + +BRUTUS: +Hark thee, Dardanius. + +DARDANIUS: +Shall I do such a deed? + +CLITUS: +O Dardanius! + +DARDANIUS: +O Clitus! + +CLITUS: +What ill request did Brutus make to thee? + +DARDANIUS: +To kill him, Clitus. Look, he meditates. + +CLITUS: +Now is that noble vessel full of grief, +That it runs over even at his eyes. + +BRUTUS: +Come hither, good Volumnius; list a word. + +VOLUMNIUS: +What says my lord? + +BRUTUS: +Why, this, Volumnius: +The ghost of Caesar hath appear'd to me +Two several times by night; at Sardis once, +And, this last night, here in Philippi fields: +I know my hour is come. + +VOLUMNIUS: +Not so, my lord. + +BRUTUS: +Nay, I am sure it is, Volumnius. +Thou seest the world, Volumnius, how it goes; +Our enemies have beat us to the pit: +It is more worthy to leap in ourselves, +Than tarry till they push us. Good Volumnius, +Thou know'st that we two went to school together: +Even for that our love of old, I prithee, +Hold thou my sword-hilts, whilst I run on it. + +VOLUMNIUS: +That's not an office for a friend, my lord. + +CLITUS: +Fly, fly, my lord; there is no tarrying here. + +BRUTUS: +Farewell to you; and you; and you, Volumnius. +Strato, thou hast been all this while asleep; +Farewell to thee too, Strato. Countrymen, +My heart doth joy that yet in all my life +I found no man but he was true to me. +I shall have glory by this losing day +More than Octavius and Mark Antony +By this vile conquest shall attain unto. +So fare you well at once; for Brutus' tongue +Hath almost ended his life's history: +Night hangs upon mine eyes; my bones would rest, +That have but labour'd to attain this hour. + +CLITUS: +Fly, my lord, fly. + +BRUTUS: +Hence! I will follow. +I prithee, Strato, stay thou by thy lord: +Thou art a fellow of a good respect; +Thy life hath had some smatch of honour in it: +Hold then my sword, and turn away thy face, +While I do run upon it. Wilt thou, Strato? + +STRATO: +Give me your hand first. Fare you well, my lord. + +BRUTUS: +Farewell, good Strato. +Caesar, now be still: +I kill'd not thee with half so good a will. + +OCTAVIUS: +What man is that? + +MESSALA: +My master's man. Strato, where is thy master? + +STRATO: +Free from the bondage you are in, Messala: +The conquerors can but make a fire of him; +For Brutus only overcame himself, +And no man else hath honour by his death. + +LUCILIUS: +So Brutus should be found. I thank thee, Brutus, +That thou hast proved Lucilius' saying true. + +OCTAVIUS: +All that served Brutus, I will entertain them. +Fellow, wilt thou bestow thy time with me? + +STRATO: +Ay, if Messala will prefer me to you. + +OCTAVIUS: +Do so, good Messala. + +MESSALA: +How died my master, Strato? + +STRATO: +I held the sword, and he did run on it. + +MESSALA: +Octavius, then take him to follow thee, +That did the latest service to my master. + +ANTONY: +This was the noblest Roman of them all: +All the conspirators save only he +Did that they did in envy of great Caesar; +He only, in a general honest thought +And common good to all, made one of them. +His life was gentle, and the elements +So mix'd in him that Nature might stand up +And say to all the world 'This was a man!' + +OCTAVIUS: +According to his virtue let us use him, +With all respect and rites of burial. +Within my tent his bones to-night shall lie, +Most like a soldier, order'd honourably. +So call the field to rest; and let's away, +To part the glories of this happy day. + +COUNTESS: +In delivering my son from me, I bury a second husband. + +BERTRAM: +And I in going, madam, weep o'er my father's death +anew: but I must attend his majesty's command, to +whom I am now in ward, evermore in subjection. + +LAFEU: +You shall find of the king a husband, madam; you, +sir, a father: he that so generally is at all times +good must of necessity hold his virtue to you; whose +worthiness would stir it up where it wanted rather +than lack it where there is such abundance. + +COUNTESS: +What hope is there of his majesty's amendment? + +LAFEU: +He hath abandoned his physicians, madam; under whose +practises he hath persecuted time with hope, and +finds no other advantage in the process but only the +losing of hope by time. + +COUNTESS: +This young gentlewoman had a father,--O, that +'had'! how sad a passage 'tis!--whose skill was +almost as great as his honesty; had it stretched so +far, would have made nature immortal, and death +should have play for lack of work. Would, for the +king's sake, he were living! I think it would be +the death of the king's disease. + +LAFEU: +How called you the man you speak of, madam? + +COUNTESS: +He was famous, sir, in his profession, and it was +his great right to be so: Gerard de Narbon. + +LAFEU: +He was excellent indeed, madam: the king very +lately spoke of him admiringly and mourningly: he +was skilful enough to have lived still, if knowledge +could be set up against mortality. + +BERTRAM: +What is it, my good lord, the king languishes of? + +LAFEU: +A fistula, my lord. + +BERTRAM: +I heard not of it before. + +LAFEU: +I would it were not notorious. Was this gentlewoman +the daughter of Gerard de Narbon? + +COUNTESS: +His sole child, my lord, and bequeathed to my +overlooking. I have those hopes of her good that +her education promises; her dispositions she +inherits, which makes fair gifts fairer; for where +an unclean mind carries virtuous qualities, there +commendations go with pity; they are virtues and +traitors too; in her they are the better for their +simpleness; she derives her honesty and achieves her goodness. + +LAFEU: +Your commendations, madam, get from her tears. + +COUNTESS: +'Tis the best brine a maiden can season her praise +in. The remembrance of her father never approaches +her heart but the tyranny of her sorrows takes all +livelihood from her cheek. No more of this, Helena; +go to, no more; lest it be rather thought you affect +a sorrow than have it. + +HELENA: +I do affect a sorrow indeed, but I have it too. + +LAFEU: +Moderate lamentation is the right of the dead, +excessive grief the enemy to the living. + +COUNTESS: +If the living be enemy to the grief, the excess +makes it soon mortal. + +BERTRAM: +Madam, I desire your holy wishes. + +LAFEU: +How understand we that? + +COUNTESS: +Be thou blest, Bertram, and succeed thy father +In manners, as in shape! thy blood and virtue +Contend for empire in thee, and thy goodness +Share with thy birthright! Love all, trust a few, +Do wrong to none: be able for thine enemy +Rather in power than use, and keep thy friend +Under thy own life's key: be cheque'd for silence, +But never tax'd for speech. What heaven more will, +That thee may furnish and my prayers pluck down, +Fall on thy head! Farewell, my lord; +'Tis an unseason'd courtier; good my lord, +Advise him. + +LAFEU: +He cannot want the best +That shall attend his love. + +COUNTESS: +Heaven bless him! Farewell, Bertram. + +BERTRAM: + +LAFEU: +Farewell, pretty lady: you must hold the credit of +your father. + +HELENA: +O, were that all! I think not on my father; +And these great tears grace his remembrance more +Than those I shed for him. What was he like? +I have forgot him: my imagination +Carries no favour in't but Bertram's. +I am undone: there is no living, none, +If Bertram be away. 'Twere all one +That I should love a bright particular star +And think to wed it, he is so above me: +In his bright radiance and collateral light +Must I be comforted, not in his sphere. +The ambition in my love thus plagues itself: +The hind that would be mated by the lion +Must die for love. 'Twas pretty, though plague, +To see him every hour; to sit and draw +His arched brows, his hawking eye, his curls, +In our heart's table; heart too capable +Of every line and trick of his sweet favour: +But now he's gone, and my idolatrous fancy +Must sanctify his reliques. Who comes here? +One that goes with him: I love him for his sake; +And yet I know him a notorious liar, +Think him a great way fool, solely a coward; +Yet these fixed evils sit so fit in him, +That they take place, when virtue's steely bones +Look bleak i' the cold wind: withal, full oft we see +Cold wisdom waiting on superfluous folly. + +PAROLLES: +Save you, fair queen! + +HELENA: +And you, monarch! + +PAROLLES: +No. + +HELENA: +And no. + +PAROLLES: +Are you meditating on virginity? + +HELENA: +Ay. You have some stain of soldier in you: let me +ask you a question. Man is enemy to virginity; how +may we barricado it against him? + +PAROLLES: +Keep him out. + +HELENA: +But he assails; and our virginity, though valiant, +in the defence yet is weak: unfold to us some +warlike resistance. + +PAROLLES: +There is none: man, sitting down before you, will +undermine you and blow you up. + +HELENA: +Bless our poor virginity from underminers and +blowers up! Is there no military policy, how +virgins might blow up men? + +PAROLLES: +Virginity being blown down, man will quicklier be +blown up: marry, in blowing him down again, with +the breach yourselves made, you lose your city. It +is not politic in the commonwealth of nature to +preserve virginity. Loss of virginity is rational +increase and there was never virgin got till +virginity was first lost. That you were made of is +metal to make virgins. Virginity by being once lost +may be ten times found; by being ever kept, it is +ever lost: 'tis too cold a companion; away with 't! + +HELENA: +I will stand for 't a little, though therefore I die a virgin. + +PAROLLES: +There's little can be said in 't; 'tis against the +rule of nature. To speak on the part of virginity, +is to accuse your mothers; which is most infallible +disobedience. He that hangs himself is a virgin: +virginity murders itself and should be buried in +highways out of all sanctified limit, as a desperate +offendress against nature. Virginity breeds mites, +much like a cheese; consumes itself to the very +paring, and so dies with feeding his own stomach. +Besides, virginity is peevish, proud, idle, made of +self-love, which is the most inhibited sin in the +canon. Keep it not; you cannot choose but loose +by't: out with 't! within ten year it will make +itself ten, which is a goodly increase; and the +principal itself not much the worse: away with 't! + +HELENA: +How might one do, sir, to lose it to her own liking? + +PAROLLES: +Let me see: marry, ill, to like him that ne'er it +likes. 'Tis a commodity will lose the gloss with +lying; the longer kept, the less worth: off with 't +while 'tis vendible; answer the time of request. +Virginity, like an old courtier, wears her cap out +of fashion: richly suited, but unsuitable: just +like the brooch and the tooth-pick, which wear not +now. Your date is better in your pie and your +porridge than in your cheek; and your virginity, +your old virginity, is like one of our French +withered pears, it looks ill, it eats drily; marry, +'tis a withered pear; it was formerly better; +marry, yet 'tis a withered pear: will you anything with it? + +HELENA: +Not my virginity yet +There shall your master have a thousand loves, +A mother and a mistress and a friend, +A phoenix, captain and an enemy, +A guide, a goddess, and a sovereign, +A counsellor, a traitress, and a dear; +His humble ambition, proud humility, +His jarring concord, and his discord dulcet, +His faith, his sweet disaster; with a world +Of pretty, fond, adoptious christendoms, +That blinking Cupid gossips. Now shall he-- +I know not what he shall. God send him well! +The court's a learning place, and he is one-- + +PAROLLES: +What one, i' faith? + +HELENA: +That I wish well. 'Tis pity-- + +PAROLLES: +What's pity? + +HELENA: +That wishing well had not a body in't, +Which might be felt; that we, the poorer born, +Whose baser stars do shut us up in wishes, +Might with effects of them follow our friends, +And show what we alone must think, which never +Return us thanks. + +Page: +Monsieur Parolles, my lord calls for you. + +PAROLLES: +Little Helen, farewell; if I can remember thee, I +will think of thee at court. + +HELENA: +Monsieur Parolles, you were born under a charitable star. + +PAROLLES: +Under Mars, I. + +HELENA: +I especially think, under Mars. + +PAROLLES: +Why under Mars? + +HELENA: +The wars have so kept you under that you must needs +be born under Mars. + +PAROLLES: +When he was predominant. + +HELENA: +When he was retrograde, I think, rather. + +PAROLLES: +Why think you so? + +HELENA: +You go so much backward when you fight. + +PAROLLES: +That's for advantage. + +HELENA: +So is running away, when fear proposes the safety; +but the composition that your valour and fear makes +in you is a virtue of a good wing, and I like the wear well. + +PAROLLES: +I am so full of businesses, I cannot answer thee +acutely. I will return perfect courtier; in the +which, my instruction shall serve to naturalize +thee, so thou wilt be capable of a courtier's +counsel and understand what advice shall thrust upon +thee; else thou diest in thine unthankfulness, and +thine ignorance makes thee away: farewell. When +thou hast leisure, say thy prayers; when thou hast +none, remember thy friends; get thee a good husband, +and use him as he uses thee; so, farewell. + +HELENA: +Our remedies oft in ourselves do lie, +Which we ascribe to heaven: the fated sky +Gives us free scope, only doth backward pull +Our slow designs when we ourselves are dull. +What power is it which mounts my love so high, +That makes me see, and cannot feed mine eye? +The mightiest space in fortune nature brings +To join like likes and kiss like native things. +Impossible be strange attempts to those +That weigh their pains in sense and do suppose +What hath been cannot be: who ever strove +So show her merit, that did miss her love? +The king's disease--my project may deceive me, +But my intents are fix'd and will not leave me. + +KING: +The Florentines and Senoys are by the ears; +Have fought with equal fortune and continue +A braving war. + +First Lord: +So 'tis reported, sir. + +KING: +Nay, 'tis most credible; we here received it +A certainty, vouch'd from our cousin Austria, +With caution that the Florentine will move us +For speedy aid; wherein our dearest friend +Prejudicates the business and would seem +To have us make denial. + +First Lord: +His love and wisdom, +Approved so to your majesty, may plead +For amplest credence. + +KING: +He hath arm'd our answer, +And Florence is denied before he comes: +Yet, for our gentlemen that mean to see +The Tuscan service, freely have they leave +To stand on either part. + +Second Lord: +It well may serve +A nursery to our gentry, who are sick +For breathing and exploit. + +KING: +What's he comes here? + +First Lord: +It is the Count Rousillon, my good lord, +Young Bertram. + +KING: +Youth, thou bear'st thy father's face; +Frank nature, rather curious than in haste, +Hath well composed thee. Thy father's moral parts +Mayst thou inherit too! Welcome to Paris. + +BERTRAM: +My thanks and duty are your majesty's. + +KING: +I would I had that corporal soundness now, +As when thy father and myself in friendship +First tried our soldiership! He did look far +Into the service of the time and was +Discipled of the bravest: he lasted long; +But on us both did haggish age steal on +And wore us out of act. It much repairs me +To talk of your good father. In his youth +He had the wit which I can well observe +To-day in our young lords; but they may jest +Till their own scorn return to them unnoted +Ere they can hide their levity in honour; +So like a courtier, contempt nor bitterness +Were in his pride or sharpness; if they were, +His equal had awaked them, and his honour, +Clock to itself, knew the true minute when +Exception bid him speak, and at this time +His tongue obey'd his hand: who were below him +He used as creatures of another place +And bow'd his eminent top to their low ranks, +Making them proud of his humility, +In their poor praise he humbled. Such a man +Might be a copy to these younger times; +Which, follow'd well, would demonstrate them now +But goers backward. + +BERTRAM: +His good remembrance, sir, +Lies richer in your thoughts than on his tomb; +So in approof lives not his epitaph +As in your royal speech. + +KING: +Would I were with him! He would always say-- +Methinks I hear him now; his plausive words +He scatter'd not in ears, but grafted them, +To grow there and to bear,--'Let me not live,'-- +This his good melancholy oft began, +On the catastrophe and heel of pastime, +When it was out,--'Let me not live,' quoth he, +'After my flame lacks oil, to be the snuff +Of younger spirits, whose apprehensive senses +All but new things disdain; whose judgments are +Mere fathers of their garments; whose constancies +Expire before their fashions.' This he wish'd; +I after him do after him wish too, +Since I nor wax nor honey can bring home, +I quickly were dissolved from my hive, +To give some labourers room. + +Second Lord: +You are loved, sir: +They that least lend it you shall lack you first. + +KING: +I fill a place, I know't. How long is't, count, +Since the physician at your father's died? +He was much famed. + +BERTRAM: +Some six months since, my lord. + +KING: +If he were living, I would try him yet. +Lend me an arm; the rest have worn me out +With several applications; nature and sickness +Debate it at their leisure. Welcome, count; +My son's no dearer. + +BERTRAM: +Thank your majesty. + +COUNTESS: +I will now hear; what say you of this gentlewoman? + +Steward: +Madam, the care I have had to even your content, I +wish might be found in the calendar of my past +endeavours; for then we wound our modesty and make +foul the clearness of our deservings, when of +ourselves we publish them. + +COUNTESS: +What does this knave here? Get you gone, sirrah: +the complaints I have heard of you I do not all +believe: 'tis my slowness that I do not; for I know +you lack not folly to commit them, and have ability +enough to make such knaveries yours. + +Clown: +'Tis not unknown to you, madam, I am a poor fellow. + +COUNTESS: +Well, sir. + +Clown: +No, madam, 'tis not so well that I am poor, though +many of the rich are damned: but, if I may have +your ladyship's good will to go to the world, Isbel +the woman and I will do as we may. + +COUNTESS: +Wilt thou needs be a beggar? + +Clown: +I do beg your good will in this case. + +COUNTESS: +In what case? + +Clown: +In Isbel's case and mine own. Service is no +heritage: and I think I shall never have the +blessing of God till I have issue o' my body; for +they say barnes are blessings. + +COUNTESS: +Tell me thy reason why thou wilt marry. + +Clown: +My poor body, madam, requires it: I am driven on +by the flesh; and he must needs go that the devil drives. + +COUNTESS: +Is this all your worship's reason? + +Clown: +Faith, madam, I have other holy reasons such as they +are. + +COUNTESS: +May the world know them? + +Clown: +I have been, madam, a wicked creature, as you and +all flesh and blood are; and, indeed, I do marry +that I may repent. + +COUNTESS: +Thy marriage, sooner than thy wickedness. + +Clown: +I am out o' friends, madam; and I hope to have +friends for my wife's sake. + +COUNTESS: +Such friends are thine enemies, knave. + +Clown: +You're shallow, madam, in great friends; for the +knaves come to do that for me which I am aweary of. +He that ears my land spares my team and gives me +leave to in the crop; if I be his cuckold, he's my +drudge: he that comforts my wife is the cherisher +of my flesh and blood; he that cherishes my flesh +and blood loves my flesh and blood; he that loves my +flesh and blood is my friend: ergo, he that kisses +my wife is my friend. If men could be contented to +be what they are, there were no fear in marriage; +for young Charbon the Puritan and old Poysam the +Papist, howsome'er their hearts are severed in +religion, their heads are both one; they may jowl +horns together, like any deer i' the herd. + +COUNTESS: +Wilt thou ever be a foul-mouthed and calumnious knave? + +Clown: +A prophet I, madam; and I speak the truth the next +way: +For I the ballad will repeat, +Which men full true shall find; +Your marriage comes by destiny, +Your cuckoo sings by kind. + +COUNTESS: +Get you gone, sir; I'll talk with you more anon. + +Steward: +May it please you, madam, that he bid Helen come to +you: of her I am to speak. + +COUNTESS: +Sirrah, tell my gentlewoman I would speak with her; +Helen, I mean. + +Clown: +Was this fair face the cause, quoth she, +Why the Grecians sacked Troy? +Fond done, done fond, +Was this King Priam's joy? +With that she sighed as she stood, +With that she sighed as she stood, +And gave this sentence then; +Among nine bad if one be good, +Among nine bad if one be good, +There's yet one good in ten. + +COUNTESS: +What, one good in ten? you corrupt the song, sirrah. + +Clown: +One good woman in ten, madam; which is a purifying +o' the song: would God would serve the world so all +the year! we'ld find no fault with the tithe-woman, +if I were the parson. One in ten, quoth a'! An we +might have a good woman born but one every blazing +star, or at an earthquake, 'twould mend the lottery +well: a man may draw his heart out, ere a' pluck +one. + +COUNTESS: +You'll be gone, sir knave, and do as I command you. + +Clown: +That man should be at woman's command, and yet no +hurt done! Though honesty be no puritan, yet it +will do no hurt; it will wear the surplice of +humility over the black gown of a big heart. I am +going, forsooth: the business is for Helen to come hither. + +COUNTESS: +Well, now. + +Steward: +I know, madam, you love your gentlewoman entirely. + +COUNTESS: +Faith, I do: her father bequeathed her to me; and +she herself, without other advantage, may lawfully +make title to as much love as she finds: there is +more owing her than is paid; and more shall be paid +her than she'll demand. + +Steward: +Madam, I was very late more near her than I think +she wished me: alone she was, and did communicate +to herself her own words to her own ears; she +thought, I dare vow for her, they touched not any +stranger sense. Her matter was, she loved your son: +Fortune, she said, was no goddess, that had put +such difference betwixt their two estates; Love no +god, that would not extend his might, only where +qualities were level; Dian no queen of virgins, that +would suffer her poor knight surprised, without +rescue in the first assault or ransom afterward. +This she delivered in the most bitter touch of +sorrow that e'er I heard virgin exclaim in: which I +held my duty speedily to acquaint you withal; +sithence, in the loss that may happen, it concerns +you something to know it. + +COUNTESS: +You have discharged this honestly; keep it to +yourself: many likelihoods informed me of this +before, which hung so tottering in the balance that +I could neither believe nor misdoubt. Pray you, +leave me: stall this in your bosom; and I thank you +for your honest care: I will speak with you further anon. +Even so it was with me when I was young: +If ever we are nature's, these are ours; this thorn +Doth to our rose of youth rightly belong; +Our blood to us, this to our blood is born; +It is the show and seal of nature's truth, +Where love's strong passion is impress'd in youth: +By our remembrances of days foregone, +Such were our faults, or then we thought them none. +Her eye is sick on't: I observe her now. + +HELENA: +What is your pleasure, madam? + +COUNTESS: +You know, Helen, +I am a mother to you. + +HELENA: +Mine honourable mistress. + +COUNTESS: +Nay, a mother: +Why not a mother? When I said 'a mother,' +Methought you saw a serpent: what's in 'mother,' +That you start at it? I say, I am your mother; +And put you in the catalogue of those +That were enwombed mine: 'tis often seen +Adoption strives with nature and choice breeds +A native slip to us from foreign seeds: +You ne'er oppress'd me with a mother's groan, +Yet I express to you a mother's care: +God's mercy, maiden! does it curd thy blood +To say I am thy mother? What's the matter, +That this distemper'd messenger of wet, +The many-colour'd Iris, rounds thine eye? +Why? that you are my daughter? + +HELENA: +That I am not. + +COUNTESS: +I say, I am your mother. + +HELENA: +Pardon, madam; +The Count Rousillon cannot be my brother: +I am from humble, he from honour'd name; +No note upon my parents, his all noble: +My master, my dear lord he is; and I +His servant live, and will his vassal die: +He must not be my brother. + +COUNTESS: +Nor I your mother? + +HELENA: +You are my mother, madam; would you were,-- +So that my lord your son were not my brother,-- +Indeed my mother! or were you both our mothers, +I care no more for than I do for heaven, +So I were not his sister. Can't no other, +But, I your daughter, he must be my brother? + +COUNTESS: +Yes, Helen, you might be my daughter-in-law: +God shield you mean it not! daughter and mother +So strive upon your pulse. What, pale again? +My fear hath catch'd your fondness: now I see +The mystery of your loneliness, and find +Your salt tears' head: now to all sense 'tis gross +You love my son; invention is ashamed, +Against the proclamation of thy passion, +To say thou dost not: therefore tell me true; +But tell me then, 'tis so; for, look thy cheeks +Confess it, th' one to th' other; and thine eyes +See it so grossly shown in thy behaviors +That in their kind they speak it: only sin +And hellish obstinacy tie thy tongue, +That truth should be suspected. Speak, is't so? +If it be so, you have wound a goodly clew; +If it be not, forswear't: howe'er, I charge thee, +As heaven shall work in me for thine avail, +Tell me truly. + +HELENA: +Good madam, pardon me! + +COUNTESS: +Do you love my son? + +HELENA: +Your pardon, noble mistress! + +COUNTESS: +Love you my son? + +HELENA: +Do not you love him, madam? + +COUNTESS: +Go not about; my love hath in't a bond, +Whereof the world takes note: come, come, disclose +The state of your affection; for your passions +Have to the full appeach'd. + +HELENA: +Then, I confess, +Here on my knee, before high heaven and you, +That before you, and next unto high heaven, +I love your son. +My friends were poor, but honest; so's my love: +Be not offended; for it hurts not him +That he is loved of me: I follow him not +By any token of presumptuous suit; +Nor would I have him till I do deserve him; +Yet never know how that desert should be. +I know I love in vain, strive against hope; +Yet in this captious and intenible sieve +I still pour in the waters of my love +And lack not to lose still: thus, Indian-like, +Religious in mine error, I adore +The sun, that looks upon his worshipper, +But knows of him no more. My dearest madam, +Let not your hate encounter with my love +For loving where you do: but if yourself, +Whose aged honour cites a virtuous youth, +Did ever in so true a flame of liking +Wish chastely and love dearly, that your Dian +Was both herself and love: O, then, give pity +To her, whose state is such that cannot choose +But lend and give where she is sure to lose; +That seeks not to find that her search implies, +But riddle-like lives sweetly where she dies! + +COUNTESS: +Had you not lately an intent,--speak truly,-- +To go to Paris? + +HELENA: +Madam, I had. + +COUNTESS: +Wherefore? tell true. + +HELENA: +I will tell truth; by grace itself I swear. +You know my father left me some prescriptions +Of rare and proved effects, such as his reading +And manifest experience had collected +For general sovereignty; and that he will'd me +In heedfull'st reservation to bestow them, +As notes whose faculties inclusive were +More than they were in note: amongst the rest, +There is a remedy, approved, set down, +To cure the desperate languishings whereof +The king is render'd lost. + +COUNTESS: +This was your motive +For Paris, was it? speak. + +HELENA: +My lord your son made me to think of this; +Else Paris and the medicine and the king +Had from the conversation of my thoughts +Haply been absent then. + +COUNTESS: +But think you, Helen, +If you should tender your supposed aid, +He would receive it? he and his physicians +Are of a mind; he, that they cannot help him, +They, that they cannot help: how shall they credit +A poor unlearned virgin, when the schools, +Embowell'd of their doctrine, have left off +The danger to itself? + +HELENA: +There's something in't, +More than my father's skill, which was the greatest +Of his profession, that his good receipt +Shall for my legacy be sanctified +By the luckiest stars in heaven: and, would your honour +But give me leave to try success, I'ld venture +The well-lost life of mine on his grace's cure +By such a day and hour. + +COUNTESS: +Dost thou believe't? + +HELENA: +Ay, madam, knowingly. + +COUNTESS: +Why, Helen, thou shalt have my leave and love, +Means and attendants and my loving greetings +To those of mine in court: I'll stay at home +And pray God's blessing into thy attempt: +Be gone to-morrow; and be sure of this, +What I can help thee to thou shalt not miss. + +KING: +Farewell, young lords; these warlike principles +Do not throw from you: and you, my lords, farewell: +Share the advice betwixt you; if both gain, all +The gift doth stretch itself as 'tis received, +And is enough for both. + +First Lord: +'Tis our hope, sir, +After well enter'd soldiers, to return +And find your grace in health. + +KING: +No, no, it cannot be; and yet my heart +Will not confess he owes the malady +That doth my life besiege. Farewell, young lords; +Whether I live or die, be you the sons +Of worthy Frenchmen: let higher Italy,-- +Those bated that inherit but the fall +Of the last monarchy,--see that you come +Not to woo honour, but to wed it; when +The bravest questant shrinks, find what you seek, +That fame may cry you loud: I say, farewell. + +Second Lord: +Health, at your bidding, serve your majesty! + +KING: +Those girls of Italy, take heed of them: +They say, our French lack language to deny, +If they demand: beware of being captives, +Before you serve. + +Both: +Our hearts receive your warnings. + +KING: +Farewell. Come hither to me. + +First Lord: +O, my sweet lord, that you will stay behind us! + +PAROLLES: +'Tis not his fault, the spark. + +Second Lord: +O, 'tis brave wars! + +PAROLLES: +Most admirable: I have seen those wars. + +BERTRAM: +I am commanded here, and kept a coil with +'Too young' and 'the next year' and ''tis too early.' + +PAROLLES: +An thy mind stand to't, boy, steal away bravely. + +BERTRAM: +I shall stay here the forehorse to a smock, +Creaking my shoes on the plain masonry, +Till honour be bought up and no sword worn +But one to dance with! By heaven, I'll steal away. + +First Lord: +There's honour in the theft. + +PAROLLES: +Commit it, count. + +Second Lord: +I am your accessary; and so, farewell. + +BERTRAM: +I grow to you, and our parting is a tortured body. + +First Lord: +Farewell, captain. + +Second Lord: +Sweet Monsieur Parolles! + +PAROLLES: +Noble heroes, my sword and yours are kin. Good +sparks and lustrous, a word, good metals: you shall +find in the regiment of the Spinii one Captain +Spurio, with his cicatrice, an emblem of war, here +on his sinister cheek; it was this very sword +entrenched it: say to him, I live; and observe his +reports for me. + +First Lord: +We shall, noble captain. + +PAROLLES: +Mars dote on you for his novices! what will ye do? + +BERTRAM: +Stay: the king. + +PAROLLES: + +BERTRAM: +And I will do so. + +PAROLLES: +Worthy fellows; and like to prove most sinewy sword-men. + +LAFEU: + +KING: +I'll fee thee to stand up. + +LAFEU: +Then here's a man stands, that has brought his pardon. +I would you had kneel'd, my lord, to ask me mercy, +And that at my bidding you could so stand up. + +KING: +I would I had; so I had broke thy pate, +And ask'd thee mercy for't. + +LAFEU: +Good faith, across: but, my good lord 'tis thus; +Will you be cured of your infirmity? + +KING: +No. + +LAFEU: +O, will you eat no grapes, my royal fox? +Yes, but you will my noble grapes, an if +My royal fox could reach them: I have seen a medicine +That's able to breathe life into a stone, +Quicken a rock, and make you dance canary +With spritely fire and motion; whose simple touch, +Is powerful to araise King Pepin, nay, +To give great Charlemain a pen in's hand, +And write to her a love-line. + +KING: +What 'her' is this? + +LAFEU: +Why, Doctor She: my lord, there's one arrived, +If you will see her: now, by my faith and honour, +If seriously I may convey my thoughts +In this my light deliverance, I have spoke +With one that, in her sex, her years, profession, +Wisdom and constancy, hath amazed me more +Than I dare blame my weakness: will you see her +For that is her demand, and know her business? +That done, laugh well at me. + +KING: +Now, good Lafeu, +Bring in the admiration; that we with thee +May spend our wonder too, or take off thine +By wondering how thou took'st it. + +LAFEU: +Nay, I'll fit you, +And not be all day neither. + +KING: +Thus he his special nothing ever prologues. + +LAFEU: +Nay, come your ways. + +KING: +This haste hath wings indeed. + +LAFEU: +Nay, come your ways: +This is his majesty; say your mind to him: +A traitor you do look like; but such traitors +His majesty seldom fears: I am Cressid's uncle, +That dare leave two together; fare you well. + +KING: +Now, fair one, does your business follow us? + +HELENA: +Ay, my good lord. +Gerard de Narbon was my father; +In what he did profess, well found. + +KING: +I knew him. + +HELENA: +The rather will I spare my praises towards him: +Knowing him is enough. On's bed of death +Many receipts he gave me: chiefly one. +Which, as the dearest issue of his practise, +And of his old experience the oily darling, +He bade me store up, as a triple eye, +Safer than mine own two, more dear; I have so; +And hearing your high majesty is touch'd +With that malignant cause wherein the honour +Of my dear father's gift stands chief in power, +I come to tender it and my appliance +With all bound humbleness. + +KING: +We thank you, maiden; +But may not be so credulous of cure, +When our most learned doctors leave us and +The congregated college have concluded +That labouring art can never ransom nature +From her inaidible estate; I say we must not +So stain our judgment, or corrupt our hope, +To prostitute our past-cure malady +To empirics, or to dissever so +Our great self and our credit, to esteem +A senseless help when help past sense we deem. + +HELENA: +My duty then shall pay me for my pains: +I will no more enforce mine office on you. +Humbly entreating from your royal thoughts +A modest one, to bear me back a again. + +KING: +I cannot give thee less, to be call'd grateful: +Thou thought'st to help me; and such thanks I give +As one near death to those that wish him live: +But what at full I know, thou know'st no part, +I knowing all my peril, thou no art. + +HELENA: +What I can do can do no hurt to try, +Since you set up your rest 'gainst remedy. +He that of greatest works is finisher +Oft does them by the weakest minister: +So holy writ in babes hath judgment shown, +When judges have been babes; great floods have flown +From simple sources, and great seas have dried +When miracles have by the greatest been denied. +Oft expectation fails and most oft there +Where most it promises, and oft it hits +Where hope is coldest and despair most fits. + +KING: +I must not hear thee; fare thee well, kind maid; +Thy pains not used must by thyself be paid: +Proffers not took reap thanks for their reward. + +HELENA: +Inspired merit so by breath is barr'd: +It is not so with Him that all things knows +As 'tis with us that square our guess by shows; +But most it is presumption in us when +The help of heaven we count the act of men. +Dear sir, to my endeavours give consent; +Of heaven, not me, make an experiment. +I am not an impostor that proclaim +Myself against the level of mine aim; +But know I think and think I know most sure +My art is not past power nor you past cure. + +KING: +Are thou so confident? within what space +Hopest thou my cure? + +HELENA: +The great'st grace lending grace +Ere twice the horses of the sun shall bring +Their fiery torcher his diurnal ring, +Ere twice in murk and occidental damp +Moist Hesperus hath quench'd his sleepy lamp, +Or four and twenty times the pilot's glass +Hath told the thievish minutes how they pass, +What is infirm from your sound parts shall fly, +Health shall live free and sickness freely die. + +KING: +Upon thy certainty and confidence +What darest thou venture? + +HELENA: +Tax of impudence, +A strumpet's boldness, a divulged shame +Traduced by odious ballads: my maiden's name +Sear'd otherwise; nay, worse--if worse--extended +With vilest torture let my life be ended. + +KING: +Methinks in thee some blessed spirit doth speak +His powerful sound within an organ weak: +And what impossibility would slay +In common sense, sense saves another way. +Thy life is dear; for all that life can rate +Worth name of life in thee hath estimate, +Youth, beauty, wisdom, courage, all +That happiness and prime can happy call: +Thou this to hazard needs must intimate +Skill infinite or monstrous desperate. +Sweet practiser, thy physic I will try, +That ministers thine own death if I die. + +HELENA: +If I break time, or flinch in property +Of what I spoke, unpitied let me die, +And well deserved: not helping, death's my fee; +But, if I help, what do you promise me? + +KING: +Make thy demand. + +HELENA: +But will you make it even? + +KING: +Ay, by my sceptre and my hopes of heaven. + +HELENA: +Then shalt thou give me with thy kingly hand +What husband in thy power I will command: +Exempted be from me the arrogance +To choose from forth the royal blood of France, +My low and humble name to propagate +With any branch or image of thy state; +But such a one, thy vassal, whom I know +Is free for me to ask, thee to bestow. + +KING: +Here is my hand; the premises observed, +Thy will by my performance shall be served: +So make the choice of thy own time, for I, +Thy resolved patient, on thee still rely. +More should I question thee, and more I must, +Though more to know could not be more to trust, +From whence thou camest, how tended on: but rest +Unquestion'd welcome and undoubted blest. +Give me some help here, ho! If thou proceed +As high as word, my deed shall match thy meed. + +COUNTESS: +Come on, sir; I shall now put you to the height of +your breeding. + +Clown: +I will show myself highly fed and lowly taught: I +know my business is but to the court. + +COUNTESS: +To the court! why, what place make you special, +when you put off that with such contempt? But to the court! + +Clown: +Truly, madam, if God have lent a man any manners, he +may easily put it off at court: he that cannot make +a leg, put off's cap, kiss his hand and say nothing, +has neither leg, hands, lip, nor cap; and indeed +such a fellow, to say precisely, were not for the +court; but for me, I have an answer will serve all +men. + +COUNTESS: +Marry, that's a bountiful answer that fits all +questions. + +Clown: +It is like a barber's chair that fits all buttocks, +the pin-buttock, the quatch-buttock, the brawn +buttock, or any buttock. + +COUNTESS: +Will your answer serve fit to all questions? + +Clown: +As fit as ten groats is for the hand of an attorney, +as your French crown for your taffeta punk, as Tib's +rush for Tom's forefinger, as a pancake for Shrove +Tuesday, a morris for May-day, as the nail to his +hole, the cuckold to his horn, as a scolding queen +to a wrangling knave, as the nun's lip to the +friar's mouth, nay, as the pudding to his skin. + +COUNTESS: +Have you, I say, an answer of such fitness for all +questions? + +Clown: +From below your duke to beneath your constable, it +will fit any question. + +COUNTESS: +It must be an answer of most monstrous size that +must fit all demands. + +Clown: +But a trifle neither, in good faith, if the learned +should speak truth of it: here it is, and all that +belongs to't. Ask me if I am a courtier: it shall +do you no harm to learn. + +COUNTESS: +To be young again, if we could: I will be a fool in +question, hoping to be the wiser by your answer. I +pray you, sir, are you a courtier? + +Clown: +O Lord, sir! There's a simple putting off. More, +more, a hundred of them. + +COUNTESS: +Sir, I am a poor friend of yours, that loves you. + +Clown: +O Lord, sir! Thick, thick, spare not me. + +COUNTESS: +I think, sir, you can eat none of this homely meat. + +Clown: +O Lord, sir! Nay, put me to't, I warrant you. + +COUNTESS: +You were lately whipped, sir, as I think. + +Clown: +O Lord, sir! spare not me. + +COUNTESS: +Do you cry, 'O Lord, sir!' at your whipping, and +'spare not me?' Indeed your 'O Lord, sir!' is very +sequent to your whipping: you would answer very well +to a whipping, if you were but bound to't. + +Clown: +I ne'er had worse luck in my life in my 'O Lord, +sir!' I see things may serve long, but not serve ever. + +COUNTESS: +I play the noble housewife with the time +To entertain't so merrily with a fool. + +Clown: +O Lord, sir! why, there't serves well again. + +COUNTESS: +An end, sir; to your business. Give Helen this, +And urge her to a present answer back: +Commend me to my kinsmen and my son: +This is not much. + +Clown: +Not much commendation to them. + +COUNTESS: +Not much employment for you: you understand me? + +Clown: +Most fruitfully: I am there before my legs. + +COUNTESS: +Haste you again. + +LAFEU: +They say miracles are past; and we have our +philosophical persons, to make modern and familiar, +things supernatural and causeless. Hence is it that +we make trifles of terrors, ensconcing ourselves +into seeming knowledge, when we should submit +ourselves to an unknown fear. + +PAROLLES: +Why, 'tis the rarest argument of wonder that hath +shot out in our latter times. + +BERTRAM: +And so 'tis. + +LAFEU: +To be relinquish'd of the artists,-- + +PAROLLES: +So I say. + +LAFEU: +Both of Galen and Paracelsus. + +PAROLLES: +So I say. + +LAFEU: +Of all the learned and authentic fellows,-- + +PAROLLES: +Right; so I say. + +LAFEU: +That gave him out incurable,-- + +PAROLLES: +Why, there 'tis; so say I too. + +LAFEU: +Not to be helped,-- + +PAROLLES: +Right; as 'twere, a man assured of a-- + +LAFEU: +Uncertain life, and sure death. + +PAROLLES: +Just, you say well; so would I have said. + +LAFEU: +I may truly say, it is a novelty to the world. + +PAROLLES: +It is, indeed: if you will have it in showing, you +shall read it in--what do you call there? + +LAFEU: +A showing of a heavenly effect in an earthly actor. + +PAROLLES: +That's it; I would have said the very same. + +LAFEU: +Why, your dolphin is not lustier: 'fore me, +I speak in respect-- + +PAROLLES: +Nay, 'tis strange, 'tis very strange, that is the +brief and the tedious of it; and he's of a most +facinerious spirit that will not acknowledge it to be the-- + +LAFEU: +Very hand of heaven. + +PAROLLES: +Ay, so I say. + +LAFEU: +In a most weak-- +and debile minister, great power, great +transcendence: which should, indeed, give us a +further use to be made than alone the recovery of +the king, as to be-- +generally thankful. + +PAROLLES: +I would have said it; you say well. Here comes the king. + +LAFEU: +Lustig, as the Dutchman says: I'll like a maid the +better, whilst I have a tooth in my head: why, he's +able to lead her a coranto. + +PAROLLES: +Mort du vinaigre! is not this Helen? + +LAFEU: +'Fore God, I think so. + +KING: +Go, call before me all the lords in court. +Sit, my preserver, by thy patient's side; +And with this healthful hand, whose banish'd sense +Thou hast repeal'd, a second time receive +The confirmation of my promised gift, +Which but attends thy naming. +Fair maid, send forth thine eye: this youthful parcel +Of noble bachelors stand at my bestowing, +O'er whom both sovereign power and father's voice +I have to use: thy frank election make; +Thou hast power to choose, and they none to forsake. + +HELENA: +To each of you one fair and virtuous mistress +Fall, when Love please! marry, to each, but one! + +LAFEU: +I'ld give bay Curtal and his furniture, +My mouth no more were broken than these boys', +And writ as little beard. + +KING: +Peruse them well: +Not one of those but had a noble father. + +HELENA: +Gentlemen, +Heaven hath through me restored the king to health. + +All: +We understand it, and thank heaven for you. + +HELENA: +I am a simple maid, and therein wealthiest, +That I protest I simply am a maid. +Please it your majesty, I have done already: +The blushes in my cheeks thus whisper me, +'We blush that thou shouldst choose; but, be refused, +Let the white death sit on thy cheek for ever; +We'll ne'er come there again.' + +KING: +Make choice; and, see, +Who shuns thy love shuns all his love in me. + +HELENA: +Now, Dian, from thy altar do I fly, +And to imperial Love, that god most high, +Do my sighs stream. Sir, will you hear my suit? + +First Lord: +And grant it. + +HELENA: +Thanks, sir; all the rest is mute. + +LAFEU: +I had rather be in this choice than throw ames-ace +for my life. + +HELENA: +The honour, sir, that flames in your fair eyes, +Before I speak, too threateningly replies: +Love make your fortunes twenty times above +Her that so wishes and her humble love! + +Second Lord: +No better, if you please. + +HELENA: +My wish receive, +Which great Love grant! and so, I take my leave. + +LAFEU: +Do all they deny her? An they were sons of mine, +I'd have them whipped; or I would send them to the +Turk, to make eunuchs of. + +HELENA: +Be not afraid that I your hand should take; +I'll never do you wrong for your own sake: +Blessing upon your vows! and in your bed +Find fairer fortune, if you ever wed! + +LAFEU: +These boys are boys of ice, they'll none have her: +sure, they are bastards to the English; the French +ne'er got 'em. + +HELENA: +You are too young, too happy, and too good, +To make yourself a son out of my blood. + +Fourth Lord: +Fair one, I think not so. + +LAFEU: +There's one grape yet; I am sure thy father drunk +wine: but if thou be'st not an ass, I am a youth +of fourteen; I have known thee already. + +HELENA: + +KING: +Why, then, young Bertram, take her; she's thy wife. + +BERTRAM: +My wife, my liege! I shall beseech your highness, +In such a business give me leave to use +The help of mine own eyes. + +KING: +Know'st thou not, Bertram, +What she has done for me? + +BERTRAM: +Yes, my good lord; +But never hope to know why I should marry her. + +KING: +Thou know'st she has raised me from my sickly bed. + +BERTRAM: +But follows it, my lord, to bring me down +Must answer for your raising? I know her well: +She had her breeding at my father's charge. +A poor physician's daughter my wife! Disdain +Rather corrupt me ever! + +KING: +'Tis only title thou disdain'st in her, the which +I can build up. Strange is it that our bloods, +Of colour, weight, and heat, pour'd all together, +Would quite confound distinction, yet stand off +In differences so mighty. If she be +All that is virtuous, save what thou dislikest, +A poor physician's daughter, thou dislikest +Of virtue for the name: but do not so: +From lowest place when virtuous things proceed, +The place is dignified by the doer's deed: +Where great additions swell's, and virtue none, +It is a dropsied honour. Good alone +Is good without a name. Vileness is so: +The property by what it is should go, +Not by the title. She is young, wise, fair; +In these to nature she's immediate heir, +And these breed honour: that is honour's scorn, +Which challenges itself as honour's born +And is not like the sire: honours thrive, +When rather from our acts we them derive +Than our foregoers: the mere word's a slave +Debosh'd on every tomb, on every grave +A lying trophy, and as oft is dumb +Where dust and damn'd oblivion is the tomb +Of honour'd bones indeed. What should be said? +If thou canst like this creature as a maid, +I can create the rest: virtue and she +Is her own dower; honour and wealth from me. + +BERTRAM: +I cannot love her, nor will strive to do't. + +KING: +Thou wrong'st thyself, if thou shouldst strive to choose. + +HELENA: +That you are well restored, my lord, I'm glad: +Let the rest go. + +KING: +My honour's at the stake; which to defeat, +I must produce my power. Here, take her hand, +Proud scornful boy, unworthy this good gift; +That dost in vile misprision shackle up +My love and her desert; that canst not dream, +We, poising us in her defective scale, +Shall weigh thee to the beam; that wilt not know, +It is in us to plant thine honour where +We please to have it grow. Cheque thy contempt: +Obey our will, which travails in thy good: +Believe not thy disdain, but presently +Do thine own fortunes that obedient right +Which both thy duty owes and our power claims; +Or I will throw thee from my care for ever +Into the staggers and the careless lapse +Of youth and ignorance; both my revenge and hate +Loosing upon thee, in the name of justice, +Without all terms of pity. Speak; thine answer. + +BERTRAM: +Pardon, my gracious lord; for I submit +My fancy to your eyes: when I consider +What great creation and what dole of honour +Flies where you bid it, I find that she, which late +Was in my nobler thoughts most base, is now +The praised of the king; who, so ennobled, +Is as 'twere born so. + +KING: +Take her by the hand, +And tell her she is thine: to whom I promise +A counterpoise, if not to thy estate +A balance more replete. + +BERTRAM: +I take her hand. + +KING: +Good fortune and the favour of the king +Smile upon this contract; whose ceremony +Shall seem expedient on the now-born brief, +And be perform'd to-night: the solemn feast +Shall more attend upon the coming space, +Expecting absent friends. As thou lovest her, +Thy love's to me religious; else, does err. + +LAFEU: + +PAROLLES: +Your pleasure, sir? + +LAFEU: +Your lord and master did well to make his +recantation. + +PAROLLES: +Recantation! My lord! my master! + +LAFEU: +Ay; is it not a language I speak? + +PAROLLES: +A most harsh one, and not to be understood without +bloody succeeding. My master! + +LAFEU: +Are you companion to the Count Rousillon? + +PAROLLES: +To any count, to all counts, to what is man. + +LAFEU: +To what is count's man: count's master is of +another style. + +PAROLLES: +You are too old, sir; let it satisfy you, you are too old. + +LAFEU: +I must tell thee, sirrah, I write man; to which +title age cannot bring thee. + +PAROLLES: +What I dare too well do, I dare not do. + +LAFEU: +I did think thee, for two ordinaries, to be a pretty +wise fellow; thou didst make tolerable vent of thy +travel; it might pass: yet the scarfs and the +bannerets about thee did manifoldly dissuade me from +believing thee a vessel of too great a burthen. I +have now found thee; when I lose thee again, I care +not: yet art thou good for nothing but taking up; and +that thou't scarce worth. + +PAROLLES: +Hadst thou not the privilege of antiquity upon thee,-- + +LAFEU: +Do not plunge thyself too far in anger, lest thou +hasten thy trial; which if--Lord have mercy on thee +for a hen! So, my good window of lattice, fare thee +well: thy casement I need not open, for I look +through thee. Give me thy hand. + +PAROLLES: +My lord, you give me most egregious indignity. + +LAFEU: +Ay, with all my heart; and thou art worthy of it. + +PAROLLES: +I have not, my lord, deserved it. + +LAFEU: +Yes, good faith, every dram of it; and I will not +bate thee a scruple. + +PAROLLES: +Well, I shall be wiser. + +LAFEU: +Even as soon as thou canst, for thou hast to pull at +a smack o' the contrary. If ever thou be'st bound +in thy scarf and beaten, thou shalt find what it is +to be proud of thy bondage. I have a desire to hold +my acquaintance with thee, or rather my knowledge, +that I may say in the default, he is a man I know. + +PAROLLES: +My lord, you do me most insupportable vexation. + +LAFEU: +I would it were hell-pains for thy sake, and my poor +doing eternal: for doing I am past: as I will by +thee, in what motion age will give me leave. + +PAROLLES: +Well, thou hast a son shall take this disgrace off +me; scurvy, old, filthy, scurvy lord! Well, I must +be patient; there is no fettering of authority. +I'll beat him, by my life, if I can meet him with +any convenience, an he were double and double a +lord. I'll have no more pity of his age than I +would of--I'll beat him, an if I could but meet him again. + +LAFEU: +Sirrah, your lord and master's married; there's news +for you: you have a new mistress. + +PAROLLES: +I most unfeignedly beseech your lordship to make +some reservation of your wrongs: he is my good +lord: whom I serve above is my master. + +LAFEU: +Who? God? + +PAROLLES: +Ay, sir. + +LAFEU: +The devil it is that's thy master. Why dost thou +garter up thy arms o' this fashion? dost make hose of +sleeves? do other servants so? Thou wert best set +thy lower part where thy nose stands. By mine +honour, if I were but two hours younger, I'ld beat +thee: methinks, thou art a general offence, and +every man should beat thee: I think thou wast +created for men to breathe themselves upon thee. + +PAROLLES: +This is hard and undeserved measure, my lord. + +LAFEU: +Go to, sir; you were beaten in Italy for picking a +kernel out of a pomegranate; you are a vagabond and +no true traveller: you are more saucy with lords +and honourable personages than the commission of your +birth and virtue gives you heraldry. You are not +worth another word, else I'ld call you knave. I leave you. + +PAROLLES: +Good, very good; it is so then: good, very good; +let it be concealed awhile. + +BERTRAM: +Undone, and forfeited to cares for ever! + +PAROLLES: +What's the matter, sweet-heart? + +BERTRAM: +Although before the solemn priest I have sworn, +I will not bed her. + +PAROLLES: +What, what, sweet-heart? + +BERTRAM: +O my Parolles, they have married me! +I'll to the Tuscan wars, and never bed her. + +PAROLLES: +France is a dog-hole, and it no more merits +The tread of a man's foot: to the wars! + +BERTRAM: +There's letters from my mother: what the import is, +I know not yet. + +PAROLLES: +Ay, that would be known. To the wars, my boy, to the wars! +He wears his honour in a box unseen, +That hugs his kicky-wicky here at home, +Spending his manly marrow in her arms, +Which should sustain the bound and high curvet +Of Mars's fiery steed. To other regions +France is a stable; we that dwell in't jades; +Therefore, to the war! + +BERTRAM: +It shall be so: I'll send her to my house, +Acquaint my mother with my hate to her, +And wherefore I am fled; write to the king +That which I durst not speak; his present gift +Shall furnish me to those Italian fields, +Where noble fellows strike: war is no strife +To the dark house and the detested wife. + +PAROLLES: +Will this capriccio hold in thee? art sure? + +BERTRAM: +Go with me to my chamber, and advise me. +I'll send her straight away: to-morrow +I'll to the wars, she to her single sorrow. + +PAROLLES: +Why, these balls bound; there's noise in it. 'Tis hard: +A young man married is a man that's marr'd: +Therefore away, and leave her bravely; go: +The king has done you wrong: but, hush, 'tis so. + +HELENA: +My mother greets me kindly; is she well? + +Clown: +She is not well; but yet she has her health: she's +very merry; but yet she is not well: but thanks be +given, she's very well and wants nothing i', the +world; but yet she is not well. + +HELENA: +If she be very well, what does she ail, that she's +not very well? + +Clown: +Truly, she's very well indeed, but for two things. + +HELENA: +What two things? + +Clown: +One, that she's not in heaven, whither God send her +quickly! the other that she's in earth, from whence +God send her quickly! + +PAROLLES: +Bless you, my fortunate lady! + +HELENA: +I hope, sir, I have your good will to have mine own +good fortunes. + +PAROLLES: +You had my prayers to lead them on; and to keep them +on, have them still. O, my knave, how does my old lady? + +Clown: +So that you had her wrinkles and I her money, +I would she did as you say. + +PAROLLES: +Why, I say nothing. + +Clown: +Marry, you are the wiser man; for many a man's +tongue shakes out his master's undoing: to say +nothing, to do nothing, to know nothing, and to have +nothing, is to be a great part of your title; which +is within a very little of nothing. + +PAROLLES: +Away! thou'rt a knave. + +Clown: +You should have said, sir, before a knave thou'rt a +knave; that's, before me thou'rt a knave: this had +been truth, sir. + +PAROLLES: +Go to, thou art a witty fool; I have found thee. + +Clown: +Did you find me in yourself, sir? or were you +taught to find me? The search, sir, was profitable; +and much fool may you find in you, even to the +world's pleasure and the increase of laughter. + +PAROLLES: +A good knave, i' faith, and well fed. +Madam, my lord will go away to-night; +A very serious business calls on him. +The great prerogative and rite of love, +Which, as your due, time claims, he does acknowledge; +But puts it off to a compell'd restraint; +Whose want, and whose delay, is strew'd with sweets, +Which they distil now in the curbed time, +To make the coming hour o'erflow with joy +And pleasure drown the brim. + +HELENA: +What's his will else? + +PAROLLES: +That you will take your instant leave o' the king +And make this haste as your own good proceeding, +Strengthen'd with what apology you think +May make it probable need. + +HELENA: +What more commands he? + +PAROLLES: +That, having this obtain'd, you presently +Attend his further pleasure. + +HELENA: +In every thing I wait upon his will. + +PAROLLES: +I shall report it so. + +HELENA: +I pray you. +Come, sirrah. + +LAFEU: +But I hope your lordship thinks not him a soldier. + +BERTRAM: +Yes, my lord, and of very valiant approof. + +LAFEU: +You have it from his own deliverance. + +BERTRAM: +And by other warranted testimony. + +LAFEU: +Then my dial goes not true: I took this lark for a bunting. + +BERTRAM: +I do assure you, my lord, he is very great in +knowledge and accordingly valiant. + +LAFEU: +I have then sinned against his experience and +transgressed against his valour; and my state that +way is dangerous, since I cannot yet find in my +heart to repent. Here he comes: I pray you, make +us friends; I will pursue the amity. + +PAROLLES: + +LAFEU: +Pray you, sir, who's his tailor? + +PAROLLES: +Sir? + +LAFEU: +O, I know him well, I, sir; he, sir, 's a good +workman, a very good tailor. + +BERTRAM: + +PAROLLES: +She is. + +BERTRAM: +Will she away to-night? + +PAROLLES: +As you'll have her. + +BERTRAM: +I have writ my letters, casketed my treasure, +Given order for our horses; and to-night, +When I should take possession of the bride, +End ere I do begin. + +LAFEU: +A good traveller is something at the latter end of a +dinner; but one that lies three thirds and uses a +known truth to pass a thousand nothings with, should +be once heard and thrice beaten. God save you, captain. + +BERTRAM: +Is there any unkindness between my lord and you, monsieur? + +PAROLLES: +I know not how I have deserved to run into my lord's +displeasure. + +LAFEU: +You have made shift to run into 't, boots and spurs +and all, like him that leaped into the custard; and +out of it you'll run again, rather than suffer +question for your residence. + +BERTRAM: +It may be you have mistaken him, my lord. + +LAFEU: +And shall do so ever, though I took him at 's +prayers. Fare you well, my lord; and believe this +of me, there can be no kernel in this light nut; the +soul of this man is his clothes. Trust him not in +matter of heavy consequence; I have kept of them +tame, and know their natures. Farewell, monsieur: +I have spoken better of you than you have or will to +deserve at my hand; but we must do good against evil. + +PAROLLES: +An idle lord. I swear. + +BERTRAM: +I think so. + +PAROLLES: +Why, do you not know him? + +BERTRAM: +Yes, I do know him well, and common speech +Gives him a worthy pass. Here comes my clog. + +HELENA: +I have, sir, as I was commanded from you, +Spoke with the king and have procured his leave +For present parting; only he desires +Some private speech with you. + +BERTRAM: +I shall obey his will. +You must not marvel, Helen, at my course, +Which holds not colour with the time, nor does +The ministration and required office +On my particular. Prepared I was not +For such a business; therefore am I found +So much unsettled: this drives me to entreat you +That presently you take our way for home; +And rather muse than ask why I entreat you, +For my respects are better than they seem +And my appointments have in them a need +Greater than shows itself at the first view +To you that know them not. This to my mother: +'Twill be two days ere I shall see you, so +I leave you to your wisdom. + +HELENA: +Sir, I can nothing say, +But that I am your most obedient servant. + +BERTRAM: +Come, come, no more of that. + +HELENA: +And ever shall +With true observance seek to eke out that +Wherein toward me my homely stars have fail'd +To equal my great fortune. + +BERTRAM: +Let that go: +My haste is very great: farewell; hie home. + +HELENA: +Pray, sir, your pardon. + +BERTRAM: +Well, what would you say? + +HELENA: +I am not worthy of the wealth I owe, +Nor dare I say 'tis mine, and yet it is; +But, like a timorous thief, most fain would steal +What law does vouch mine own. + +BERTRAM: +What would you have? + +HELENA: +Something; and scarce so much: nothing, indeed. +I would not tell you what I would, my lord: +Faith yes; +Strangers and foes do sunder, and not kiss. + +BERTRAM: +I pray you, stay not, but in haste to horse. + +HELENA: +I shall not break your bidding, good my lord. + +BERTRAM: +Where are my other men, monsieur? Farewell. +Go thou toward home; where I will never come +Whilst I can shake my sword or hear the drum. +Away, and for our flight. + +PAROLLES: +Bravely, coragio! + +DUKE: +So that from point to point now have you heard +The fundamental reasons of this war, +Whose great decision hath much blood let forth +And more thirsts after. + +First Lord: +Holy seems the quarrel +Upon your grace's part; black and fearful +On the opposer. + +DUKE: +Therefore we marvel much our cousin France +Would in so just a business shut his bosom +Against our borrowing prayers. + +Second Lord: +Good my lord, +The reasons of our state I cannot yield, +But like a common and an outward man, +That the great figure of a council frames +By self-unable motion: therefore dare not +Say what I think of it, since I have found +Myself in my incertain grounds to fail +As often as I guess'd. + +DUKE: +Be it his pleasure. + +First Lord: +But I am sure the younger of our nature, +That surfeit on their ease, will day by day +Come here for physic. + +DUKE: +Welcome shall they be; +And all the honours that can fly from us +Shall on them settle. You know your places well; +When better fall, for your avails they fell: +To-morrow to the field. + +COUNTESS: +It hath happened all as I would have had it, save +that he comes not along with her. + +Clown: +By my troth, I take my young lord to be a very +melancholy man. + +COUNTESS: +By what observance, I pray you? + +Clown: +Why, he will look upon his boot and sing; mend the +ruff and sing; ask questions and sing; pick his +teeth and sing. I know a man that had this trick of +melancholy sold a goodly manor for a song. + +COUNTESS: +Let me see what he writes, and when he means to come. + +Clown: +I have no mind to Isbel since I was at court: our +old ling and our Isbels o' the country are nothing +like your old ling and your Isbels o' the court: +the brains of my Cupid's knocked out, and I begin to +love, as an old man loves money, with no stomach. + +COUNTESS: +What have we here? + +Clown: +E'en that you have there. + +COUNTESS: + +Clown: +O madam, yonder is heavy news within between two +soldiers and my young lady! + +COUNTESS: +What is the matter? + +Clown: +Nay, there is some comfort in the news, some +comfort; your son will not be killed so soon as I +thought he would. + +COUNTESS: +Why should he be killed? + +Clown: +So say I, madam, if he run away, as I hear he does: +the danger is in standing to't; that's the loss of +men, though it be the getting of children. Here +they come will tell you more: for my part, I only +hear your son was run away. + +First Gentleman: +Save you, good madam. + +HELENA: +Madam, my lord is gone, for ever gone. + +Second Gentleman: +Do not say so. + +COUNTESS: +Think upon patience. Pray you, gentlemen, +I have felt so many quirks of joy and grief, +That the first face of neither, on the start, +Can woman me unto't: where is my son, I pray you? + +Second Gentleman: +Madam, he's gone to serve the duke of Florence: +We met him thitherward; for thence we came, +And, after some dispatch in hand at court, +Thither we bend again. + +HELENA: +Look on his letter, madam; here's my passport. +When thou canst get the ring upon my finger which +never shall come off, and show me a child begotten +of thy body that I am father to, then call me +husband: but in such a 'then' I write a 'never.' +This is a dreadful sentence. + +COUNTESS: +Brought you this letter, gentlemen? + +First Gentleman: +Ay, madam; +And for the contents' sake are sorry for our pain. + +COUNTESS: +I prithee, lady, have a better cheer; +If thou engrossest all the griefs are thine, +Thou robb'st me of a moiety: he was my son; +But I do wash his name out of my blood, +And thou art all my child. Towards Florence is he? + +Second Gentleman: +Ay, madam. + +COUNTESS: +And to be a soldier? + +Second Gentleman: +Such is his noble purpose; and believe 't, +The duke will lay upon him all the honour +That good convenience claims. + +COUNTESS: +Return you thither? + +First Gentleman: +Ay, madam, with the swiftest wing of speed. + +HELENA: + +COUNTESS: +Find you that there? + +HELENA: +Ay, madam. + +First Gentleman: +'Tis but the boldness of his hand, haply, which his +heart was not consenting to. + +COUNTESS: +Nothing in France, until he have no wife! +There's nothing here that is too good for him +But only she; and she deserves a lord +That twenty such rude boys might tend upon +And call her hourly mistress. Who was with him? + +First Gentleman: +A servant only, and a gentleman +Which I have sometime known. + +COUNTESS: +Parolles, was it not? + +First Gentleman: +Ay, my good lady, he. + +COUNTESS: +A very tainted fellow, and full of wickedness. +My son corrupts a well-derived nature +With his inducement. + +First Gentleman: +Indeed, good lady, +The fellow has a deal of that too much, +Which holds him much to have. + +COUNTESS: +You're welcome, gentlemen. +I will entreat you, when you see my son, +To tell him that his sword can never win +The honour that he loses: more I'll entreat you +Written to bear along. + +Second Gentleman: +We serve you, madam, +In that and all your worthiest affairs. + +COUNTESS: +Not so, but as we change our courtesies. +Will you draw near! + +HELENA: +'Till I have no wife, I have nothing in France.' +Nothing in France, until he has no wife! +Thou shalt have none, Rousillon, none in France; +Then hast thou all again. Poor lord! is't I +That chase thee from thy country and expose +Those tender limbs of thine to the event +Of the none-sparing war? and is it I +That drive thee from the sportive court, where thou +Wast shot at with fair eyes, to be the mark +Of smoky muskets? O you leaden messengers, +That ride upon the violent speed of fire, +Fly with false aim; move the still-peering air, +That sings with piercing; do not touch my lord. +Whoever shoots at him, I set him there; +Whoever charges on his forward breast, +I am the caitiff that do hold him to't; +And, though I kill him not, I am the cause +His death was so effected: better 'twere +I met the ravin lion when he roar'd +With sharp constraint of hunger; better 'twere +That all the miseries which nature owes +Were mine at once. No, come thou home, Rousillon, +Whence honour but of danger wins a scar, +As oft it loses all: I will be gone; +My being here it is that holds thee hence: +Shall I stay here to do't? no, no, although +The air of paradise did fan the house +And angels officed all: I will be gone, +That pitiful rumour may report my flight, +To consolate thine ear. Come, night; end, day! +For with the dark, poor thief, I'll steal away. + +DUKE: +The general of our horse thou art; and we, +Great in our hope, lay our best love and credence +Upon thy promising fortune. + +BERTRAM: +Sir, it is +A charge too heavy for my strength, but yet +We'll strive to bear it for your worthy sake +To the extreme edge of hazard. + +DUKE: +Then go thou forth; +And fortune play upon thy prosperous helm, +As thy auspicious mistress! + +BERTRAM: +This very day, +Great Mars, I put myself into thy file: +Make me but like my thoughts, and I shall prove +A lover of thy drum, hater of love. + +COUNTESS: +Alas! and would you take the letter of her? +Might you not know she would do as she has done, +By sending me a letter? Read it again. + +Steward: + +COUNTESS: +Ah, what sharp stings are in her mildest words! +Rinaldo, you did never lack advice so much, +As letting her pass so: had I spoke with her, +I could have well diverted her intents, +Which thus she hath prevented. + +Steward: +Pardon me, madam: +If I had given you this at over-night, +She might have been o'erta'en; and yet she writes, +Pursuit would be but vain. + +COUNTESS: +What angel shall +Bless this unworthy husband? he cannot thrive, +Unless her prayers, whom heaven delights to hear +And loves to grant, reprieve him from the wrath +Of greatest justice. Write, write, Rinaldo, +To this unworthy husband of his wife; +Let every word weigh heavy of her worth +That he does weigh too light: my greatest grief. +Though little he do feel it, set down sharply. +Dispatch the most convenient messenger: +When haply he shall hear that she is gone, +He will return; and hope I may that she, +Hearing so much, will speed her foot again, +Led hither by pure love: which of them both +Is dearest to me. I have no skill in sense +To make distinction: provide this messenger: +My heart is heavy and mine age is weak; +Grief would have tears, and sorrow bids me speak. + +Widow: +Nay, come; for if they do approach the city, we +shall lose all the sight. + +DIANA: +They say the French count has done most honourable service. + +Widow: +It is reported that he has taken their greatest +commander; and that with his own hand he slew the +duke's brother. +We have lost our labour; they are gone a contrary +way: hark! you may know by their trumpets. + +MARIANA: +Come, let's return again, and suffice ourselves with +the report of it. Well, Diana, take heed of this +French earl: the honour of a maid is her name; and +no legacy is so rich as honesty. + +Widow: +I have told my neighbour how you have been solicited +by a gentleman his companion. + +MARIANA: +I know that knave; hang him! one Parolles: a +filthy officer he is in those suggestions for the +young earl. Beware of them, Diana; their promises, +enticements, oaths, tokens, and all these engines of +lust, are not the things they go under: many a maid +hath been seduced by them; and the misery is, +example, that so terrible shows in the wreck of +maidenhood, cannot for all that dissuade succession, +but that they are limed with the twigs that threaten +them. I hope I need not to advise you further; but +I hope your own grace will keep you where you are, +though there were no further danger known but the +modesty which is so lost. + +DIANA: +You shall not need to fear me. + +Widow: +I hope so. +Look, here comes a pilgrim: I know she will lie at +my house; thither they send one another: I'll +question her. God save you, pilgrim! whither are you bound? + +HELENA: +To Saint Jaques le Grand. +Where do the palmers lodge, I do beseech you? + +Widow: +At the Saint Francis here beside the port. + +HELENA: +Is this the way? + +Widow: +Ay, marry, is't. +Hark you! they come this way. +If you will tarry, holy pilgrim, +But till the troops come by, +I will conduct you where you shall be lodged; +The rather, for I think I know your hostess +As ample as myself. + +HELENA: +Is it yourself? + +Widow: +If you shall please so, pilgrim. + +HELENA: +I thank you, and will stay upon your leisure. + +Widow: +You came, I think, from France? + +HELENA: +I did so. + +Widow: +Here you shall see a countryman of yours +That has done worthy service. + +HELENA: +His name, I pray you. + +DIANA: +The Count Rousillon: know you such a one? + +HELENA: +But by the ear, that hears most nobly of him: +His face I know not. + +DIANA: +Whatsome'er he is, +He's bravely taken here. He stole from France, +As 'tis reported, for the king had married him +Against his liking: think you it is so? + +HELENA: +Ay, surely, mere the truth: I know his lady. + +DIANA: +There is a gentleman that serves the count +Reports but coarsely of her. + +HELENA: +What's his name? + +DIANA: +Monsieur Parolles. + +HELENA: +O, I believe with him, +In argument of praise, or to the worth +Of the great count himself, she is too mean +To have her name repeated: all her deserving +Is a reserved honesty, and that +I have not heard examined. + +DIANA: +Alas, poor lady! +'Tis a hard bondage to become the wife +Of a detesting lord. + +Widow: +I warrant, good creature, wheresoe'er she is, +Her heart weighs sadly: this young maid might do her +A shrewd turn, if she pleased. + +HELENA: +How do you mean? +May be the amorous count solicits her +In the unlawful purpose. + +Widow: +He does indeed; +And brokes with all that can in such a suit +Corrupt the tender honour of a maid: +But she is arm'd for him and keeps her guard +In honestest defence. + +MARIANA: +The gods forbid else! + +Widow: +So, now they come: +That is Antonio, the duke's eldest son; +That, Escalus. + +HELENA: +Which is the Frenchman? + +DIANA: +He; +That with the plume: 'tis a most gallant fellow. +I would he loved his wife: if he were honester +He were much goodlier: is't not a handsome gentleman? + +HELENA: +I like him well. + +DIANA: +'Tis pity he is not honest: yond's that same knave +That leads him to these places: were I his lady, +I would Poison that vile rascal. + +HELENA: +Which is he? + +DIANA: +That jack-an-apes with scarfs: why is he melancholy? + +HELENA: +Perchance he's hurt i' the battle. + +PAROLLES: +Lose our drum! well. + +MARIANA: +He's shrewdly vexed at something: look, he has spied us. + +Widow: +Marry, hang you! + +MARIANA: +And your courtesy, for a ring-carrier! + +Widow: +The troop is past. Come, pilgrim, I will bring you +Where you shall host: of enjoin'd penitents +There's four or five, to great Saint Jaques bound, +Already at my house. + +HELENA: +I humbly thank you: +Please it this matron and this gentle maid +To eat with us to-night, the charge and thanking +Shall be for me; and, to requite you further, +I will bestow some precepts of this virgin +Worthy the note. + +BOTH: +We'll take your offer kindly. + +Second Lord: +Nay, good my lord, put him to't; let him have his +way. + +First Lord: +If your lordship find him not a hilding, hold me no +more in your respect. + +Second Lord: +On my life, my lord, a bubble. + +BERTRAM: +Do you think I am so far deceived in him? + +Second Lord: +Believe it, my lord, in mine own direct knowledge, +without any malice, but to speak of him as my +kinsman, he's a most notable coward, an infinite and +endless liar, an hourly promise-breaker, the owner +of no one good quality worthy your lordship's +entertainment. + +First Lord: +It were fit you knew him; lest, reposing too far in +his virtue, which he hath not, he might at some +great and trusty business in a main danger fail you. + +BERTRAM: +I would I knew in what particular action to try him. + +First Lord: +None better than to let him fetch off his drum, +which you hear him so confidently undertake to do. + +Second Lord: +I, with a troop of Florentines, will suddenly +surprise him; such I will have, whom I am sure he +knows not from the enemy: we will bind and hoodwink +him so, that he shall suppose no other but that he +is carried into the leaguer of the adversaries, when +we bring him to our own tents. Be but your lordship +present at his examination: if he do not, for the +promise of his life and in the highest compulsion of +base fear, offer to betray you and deliver all the +intelligence in his power against you, and that with +the divine forfeit of his soul upon oath, never +trust my judgment in any thing. + +First Lord: +O, for the love of laughter, let him fetch his drum; +he says he has a stratagem for't: when your +lordship sees the bottom of his success in't, and to +what metal this counterfeit lump of ore will be +melted, if you give him not John Drum's +entertainment, your inclining cannot be removed. +Here he comes. + +Second Lord: + +BERTRAM: +How now, monsieur! this drum sticks sorely in your +disposition. + +First Lord: +A pox on't, let it go; 'tis but a drum. + +PAROLLES: +'But a drum'! is't 'but a drum'? A drum so lost! +There was excellent command,--to charge in with our +horse upon our own wings, and to rend our own soldiers! + +First Lord: +That was not to be blamed in the command of the +service: it was a disaster of war that Caesar +himself could not have prevented, if he had been +there to command. + +BERTRAM: +Well, we cannot greatly condemn our success: some +dishonour we had in the loss of that drum; but it is +not to be recovered. + +PAROLLES: +It might have been recovered. + +BERTRAM: +It might; but it is not now. + +PAROLLES: +It is to be recovered: but that the merit of +service is seldom attributed to the true and exact +performer, I would have that drum or another, or +'hic jacet.' + +BERTRAM: +Why, if you have a stomach, to't, monsieur: if you +think your mystery in stratagem can bring this +instrument of honour again into his native quarter, +be magnanimous in the enterprise and go on; I will +grace the attempt for a worthy exploit: if you +speed well in it, the duke shall both speak of it. +and extend to you what further becomes his +greatness, even to the utmost syllable of your +worthiness. + +PAROLLES: +By the hand of a soldier, I will undertake it. + +BERTRAM: +But you must not now slumber in it. + +PAROLLES: +I'll about it this evening: and I will presently +pen down my dilemmas, encourage myself in my +certainty, put myself into my mortal preparation; +and by midnight look to hear further from me. + +BERTRAM: +May I be bold to acquaint his grace you are gone about it? + +PAROLLES: +I know not what the success will be, my lord; but +the attempt I vow. + +BERTRAM: +I know thou'rt valiant; and, to the possibility of +thy soldiership, will subscribe for thee. Farewell. + +PAROLLES: +I love not many words. + +Second Lord: +No more than a fish loves water. Is not this a +strange fellow, my lord, that so confidently seems +to undertake this business, which he knows is not to +be done; damns himself to do and dares better be +damned than to do't? + +First Lord: +You do not know him, my lord, as we do: certain it +is that he will steal himself into a man's favour and +for a week escape a great deal of discoveries; but +when you find him out, you have him ever after. + +BERTRAM: +Why, do you think he will make no deed at all of +this that so seriously he does address himself unto? + +Second Lord: +None in the world; but return with an invention and +clap upon you two or three probable lies: but we +have almost embossed him; you shall see his fall +to-night; for indeed he is not for your lordship's respect. + +First Lord: +We'll make you some sport with the fox ere we case +him. He was first smoked by the old lord Lafeu: +when his disguise and he is parted, tell me what a +sprat you shall find him; which you shall see this +very night. + +Second Lord: +I must go look my twigs: he shall be caught. + +BERTRAM: +Your brother he shall go along with me. + +Second Lord: +As't please your lordship: I'll leave you. + +BERTRAM: +Now will I lead you to the house, and show you +The lass I spoke of. + +First Lord: +But you say she's honest. + +BERTRAM: +That's all the fault: I spoke with her but once +And found her wondrous cold; but I sent to her, +By this same coxcomb that we have i' the wind, +Tokens and letters which she did re-send; +And this is all I have done. She's a fair creature: +Will you go see her? + +First Lord: +With all my heart, my lord. + +HELENA: +If you misdoubt me that I am not she, +I know not how I shall assure you further, +But I shall lose the grounds I work upon. + +Widow: +Though my estate be fallen, I was well born, +Nothing acquainted with these businesses; +And would not put my reputation now +In any staining act. + +HELENA: +Nor would I wish you. +First, give me trust, the count he is my husband, +And what to your sworn counsel I have spoken +Is so from word to word; and then you cannot, +By the good aid that I of you shall borrow, +Err in bestowing it. + +Widow: +I should believe you: +For you have show'd me that which well approves +You're great in fortune. + +HELENA: +Take this purse of gold, +And let me buy your friendly help thus far, +Which I will over-pay and pay again +When I have found it. The count he wooes your daughter, +Lays down his wanton siege before her beauty, +Resolved to carry her: let her in fine consent, +As we'll direct her how 'tis best to bear it. +Now his important blood will nought deny +That she'll demand: a ring the county wears, +That downward hath succeeded in his house +From son to son, some four or five descents +Since the first father wore it: this ring he holds +In most rich choice; yet in his idle fire, +To buy his will, it would not seem too dear, +Howe'er repented after. + +Widow: +Now I see +The bottom of your purpose. + +HELENA: +You see it lawful, then: it is no more, +But that your daughter, ere she seems as won, +Desires this ring; appoints him an encounter; +In fine, delivers me to fill the time, +Herself most chastely absent: after this, +To marry her, I'll add three thousand crowns +To what is passed already. + +Widow: +I have yielded: +Instruct my daughter how she shall persever, +That time and place with this deceit so lawful +May prove coherent. Every night he comes +With musics of all sorts and songs composed +To her unworthiness: it nothing steads us +To chide him from our eaves; for he persists +As if his life lay on't. + +HELENA: +Why then to-night +Let us assay our plot; which, if it speed, +Is wicked meaning in a lawful deed +And lawful meaning in a lawful act, +Where both not sin, and yet a sinful fact: +But let's about it. + +Second Lord: +He can come no other way but by this hedge-corner. +When you sally upon him, speak what terrible +language you will: though you understand it not +yourselves, no matter; for we must not seem to +understand him, unless some one among us whom we +must produce for an interpreter. + +First Soldier: +Good captain, let me be the interpreter. + +Second Lord: +Art not acquainted with him? knows he not thy voice? + +First Soldier: +No, sir, I warrant you. + +Second Lord: +But what linsey-woolsey hast thou to speak to us again? + +First Soldier: +E'en such as you speak to me. + +Second Lord: +He must think us some band of strangers i' the +adversary's entertainment. Now he hath a smack of +all neighbouring languages; therefore we must every +one be a man of his own fancy, not to know what we +speak one to another; so we seem to know, is to +know straight our purpose: choughs' language, +gabble enough, and good enough. As for you, +interpreter, you must seem very politic. But couch, +ho! here he comes, to beguile two hours in a sleep, +and then to return and swear the lies he forges. + +PAROLLES: +Ten o'clock: within these three hours 'twill be +time enough to go home. What shall I say I have +done? It must be a very plausive invention that +carries it: they begin to smoke me; and disgraces +have of late knocked too often at my door. I find +my tongue is too foolhardy; but my heart hath the +fear of Mars before it and of his creatures, not +daring the reports of my tongue. + +Second Lord: +This is the first truth that e'er thine own tongue +was guilty of. + +PAROLLES: +What the devil should move me to undertake the +recovery of this drum, being not ignorant of the +impossibility, and knowing I had no such purpose? I +must give myself some hurts, and say I got them in +exploit: yet slight ones will not carry it; they +will say, 'Came you off with so little?' and great +ones I dare not give. Wherefore, what's the +instance? Tongue, I must put you into a +butter-woman's mouth and buy myself another of +Bajazet's mule, if you prattle me into these perils. + +Second Lord: +Is it possible he should know what he is, and be +that he is? + +PAROLLES: +I would the cutting of my garments would serve the +turn, or the breaking of my Spanish sword. + +Second Lord: +We cannot afford you so. + +PAROLLES: +Or the baring of my beard; and to say it was in +stratagem. + +Second Lord: +'Twould not do. + +PAROLLES: +Or to drown my clothes, and say I was stripped. + +Second Lord: +Hardly serve. + +PAROLLES: +Though I swore I leaped from the window of the citadel. + +Second Lord: +How deep? + +PAROLLES: +Thirty fathom. + +Second Lord: +Three great oaths would scarce make that be believed. + +PAROLLES: +I would I had any drum of the enemy's: I would swear +I recovered it. + +Second Lord: +You shall hear one anon. + +PAROLLES: +A drum now of the enemy's,-- + +Second Lord: +Throca movousus, cargo, cargo, cargo. + +All: +Cargo, cargo, cargo, villiando par corbo, cargo. + +PAROLLES: +O, ransom, ransom! do not hide mine eyes. + +First Soldier: +Boskos thromuldo boskos. + +PAROLLES: +I know you are the Muskos' regiment: +And I shall lose my life for want of language; +If there be here German, or Dane, low Dutch, +Italian, or French, let him speak to me; I'll +Discover that which shall undo the Florentine. + +First Soldier: +Boskos vauvado: I understand thee, and can speak +thy tongue. Kerely bonto, sir, betake thee to thy +faith, for seventeen poniards are at thy bosom. + +PAROLLES: +O! + +First Soldier: +O, pray, pray, pray! Manka revania dulche. + +Second Lord: +Oscorbidulchos volivorco. + +First Soldier: +The general is content to spare thee yet; +And, hoodwink'd as thou art, will lead thee on +To gather from thee: haply thou mayst inform +Something to save thy life. + +PAROLLES: +O, let me live! +And all the secrets of our camp I'll show, +Their force, their purposes; nay, I'll speak that +Which you will wonder at. + +First Soldier: +But wilt thou faithfully? + +PAROLLES: +If I do not, damn me. + +First Soldier: +Acordo linta. +Come on; thou art granted space. + +Second Lord: +Go, tell the Count Rousillon, and my brother, +We have caught the woodcock, and will keep him muffled +Till we do hear from them. + +Second Soldier: +Captain, I will. + +Second Lord: +A' will betray us all unto ourselves: +Inform on that. + +Second Soldier: +So I will, sir. + +Second Lord: +Till then I'll keep him dark and safely lock'd. + +BERTRAM: +They told me that your name was Fontibell. + +DIANA: +No, my good lord, Diana. + +BERTRAM: +Titled goddess; +And worth it, with addition! But, fair soul, +In your fine frame hath love no quality? +If quick fire of youth light not your mind, +You are no maiden, but a monument: +When you are dead, you should be such a one +As you are now, for you are cold and stem; +And now you should be as your mother was +When your sweet self was got. + +DIANA: +She then was honest. + +BERTRAM: +So should you be. + +DIANA: +No: +My mother did but duty; such, my lord, +As you owe to your wife. + +BERTRAM: +No more o' that; +I prithee, do not strive against my vows: +I was compell'd to her; but I love thee +By love's own sweet constraint, and will for ever +Do thee all rights of service. + +DIANA: +Ay, so you serve us +Till we serve you; but when you have our roses, +You barely leave our thorns to prick ourselves +And mock us with our bareness. + +BERTRAM: +How have I sworn! + +DIANA: +'Tis not the many oaths that makes the truth, +But the plain single vow that is vow'd true. +What is not holy, that we swear not by, +But take the High'st to witness: then, pray you, tell me, +If I should swear by God's great attributes, +I loved you dearly, would you believe my oaths, +When I did love you ill? This has no holding, +To swear by him whom I protest to love, +That I will work against him: therefore your oaths +Are words and poor conditions, but unseal'd, +At least in my opinion. + +BERTRAM: +Change it, change it; +Be not so holy-cruel: love is holy; +And my integrity ne'er knew the crafts +That you do charge men with. Stand no more off, +But give thyself unto my sick desires, +Who then recover: say thou art mine, and ever +My love as it begins shall so persever. + +DIANA: +I see that men make ropes in such a scarre +That we'll forsake ourselves. Give me that ring. + +BERTRAM: +I'll lend it thee, my dear; but have no power +To give it from me. + +DIANA: +Will you not, my lord? + +BERTRAM: +It is an honour 'longing to our house, +Bequeathed down from many ancestors; +Which were the greatest obloquy i' the world +In me to lose. + +DIANA: +Mine honour's such a ring: +My chastity's the jewel of our house, +Bequeathed down from many ancestors; +Which were the greatest obloquy i' the world +In me to lose: thus your own proper wisdom +Brings in the champion Honour on my part, +Against your vain assault. + +BERTRAM: +Here, take my ring: +My house, mine honour, yea, my life, be thine, +And I'll be bid by thee. + +DIANA: +When midnight comes, knock at my chamber-window: +I'll order take my mother shall not hear. +Now will I charge you in the band of truth, +When you have conquer'd my yet maiden bed, +Remain there but an hour, nor speak to me: +My reasons are most strong; and you shall know them +When back again this ring shall be deliver'd: +And on your finger in the night I'll put +Another ring, that what in time proceeds +May token to the future our past deeds. +Adieu, till then; then, fail not. You have won +A wife of me, though there my hope be done. + +BERTRAM: +A heaven on earth I have won by wooing thee. + +DIANA: +For which live long to thank both heaven and me! +You may so in the end. +My mother told me just how he would woo, +As if she sat in 's heart; she says all men +Have the like oaths: he had sworn to marry me +When his wife's dead; therefore I'll lie with him +When I am buried. Since Frenchmen are so braid, +Marry that will, I live and die a maid: +Only in this disguise I think't no sin +To cozen him that would unjustly win. + +First Lord: +You have not given him his mother's letter? + +Second Lord: +I have delivered it an hour since: there is +something in't that stings his nature; for on the +reading it he changed almost into another man. + +First Lord: +He has much worthy blame laid upon him for shaking +off so good a wife and so sweet a lady. + +Second Lord: +Especially he hath incurred the everlasting +displeasure of the king, who had even tuned his +bounty to sing happiness to him. I will tell you a +thing, but you shall let it dwell darkly with you. + +First Lord: +When you have spoken it, 'tis dead, and I am the +grave of it. + +Second Lord: +He hath perverted a young gentlewoman here in +Florence, of a most chaste renown; and this night he +fleshes his will in the spoil of her honour: he hath +given her his monumental ring, and thinks himself +made in the unchaste composition. + +First Lord: +Now, God delay our rebellion! as we are ourselves, +what things are we! + +Second Lord: +Merely our own traitors. And as in the common course +of all treasons, we still see them reveal +themselves, till they attain to their abhorred ends, +so he that in this action contrives against his own +nobility, in his proper stream o'erflows himself. + +First Lord: +Is it not meant damnable in us, to be trumpeters of +our unlawful intents? We shall not then have his +company to-night? + +Second Lord: +Not till after midnight; for he is dieted to his hour. + +First Lord: +That approaches apace; I would gladly have him see +his company anatomized, that he might take a measure +of his own judgments, wherein so curiously he had +set this counterfeit. + +Second Lord: +We will not meddle with him till he come; for his +presence must be the whip of the other. + +First Lord: +In the mean time, what hear you of these wars? + +Second Lord: +I hear there is an overture of peace. + +First Lord: +Nay, I assure you, a peace concluded. + +Second Lord: +What will Count Rousillon do then? will he travel +higher, or return again into France? + +First Lord: +I perceive, by this demand, you are not altogether +of his council. + +Second Lord: +Let it be forbid, sir; so should I be a great deal +of his act. + +First Lord: +Sir, his wife some two months since fled from his +house: her pretence is a pilgrimage to Saint Jaques +le Grand; which holy undertaking with most austere +sanctimony she accomplished; and, there residing the +tenderness of her nature became as a prey to her +grief; in fine, made a groan of her last breath, and +now she sings in heaven. + +Second Lord: +How is this justified? + +First Lord: +The stronger part of it by her own letters, which +makes her story true, even to the point of her +death: her death itself, which could not be her +office to say is come, was faithfully confirmed by +the rector of the place. + +Second Lord: +Hath the count all this intelligence? + +First Lord: +Ay, and the particular confirmations, point from +point, so to the full arming of the verity. + +Second Lord: +I am heartily sorry that he'll be glad of this. + +First Lord: +How mightily sometimes we make us comforts of our losses! + +Second Lord: +And how mightily some other times we drown our gain +in tears! The great dignity that his valour hath +here acquired for him shall at home be encountered +with a shame as ample. + +First Lord: +The web of our life is of a mingled yarn, good and +ill together: our virtues would be proud, if our +faults whipped them not; and our crimes would +despair, if they were not cherished by our virtues. +How now! where's your master? + +Servant: +He met the duke in the street, sir, of whom he hath +taken a solemn leave: his lordship will next +morning for France. The duke hath offered him +letters of commendations to the king. + +Second Lord: +They shall be no more than needful there, if they +were more than they can commend. + +First Lord: +They cannot be too sweet for the king's tartness. +Here's his lordship now. +How now, my lord! is't not after midnight? + +BERTRAM: +I have to-night dispatched sixteen businesses, a +month's length a-piece, by an abstract of success: +I have congied with the duke, done my adieu with his +nearest; buried a wife, mourned for her; writ to my +lady mother I am returning; entertained my convoy; +and between these main parcels of dispatch effected +many nicer needs; the last was the greatest, but +that I have not ended yet. + +Second Lord: +If the business be of any difficulty, and this +morning your departure hence, it requires haste of +your lordship. + +BERTRAM: +I mean, the business is not ended, as fearing to +hear of it hereafter. But shall we have this +dialogue between the fool and the soldier? Come, +bring forth this counterfeit module, he has deceived +me, like a double-meaning prophesier. + +Second Lord: +Bring him forth: has sat i' the stocks all night, +poor gallant knave. + +BERTRAM: +No matter: his heels have deserved it, in usurping +his spurs so long. How does he carry himself? + +Second Lord: +I have told your lordship already, the stocks carry +him. But to answer you as you would be understood; +he weeps like a wench that had shed her milk: he +hath confessed himself to Morgan, whom he supposes +to be a friar, from the time of his remembrance to +this very instant disaster of his setting i' the +stocks: and what think you he hath confessed? + +BERTRAM: +Nothing of me, has a'? + +Second Lord: +His confession is taken, and it shall be read to his +face: if your lordship be in't, as I believe you +are, you must have the patience to hear it. + +BERTRAM: +A plague upon him! muffled! he can say nothing of +me: hush, hush! + +First Lord: +Hoodman comes! Portotartarosa + +First Soldier: +He calls for the tortures: what will you say +without 'em? + +PAROLLES: +I will confess what I know without constraint: if +ye pinch me like a pasty, I can say no more. + +First Soldier: +Bosko chimurcho. + +First Lord: +Boblibindo chicurmurco. + +First Soldier: +You are a merciful general. Our general bids you +answer to what I shall ask you out of a note. + +PAROLLES: +And truly, as I hope to live. + +First Soldier: + +PAROLLES: +Five or six thousand; but very weak and +unserviceable: the troops are all scattered, and +the commanders very poor rogues, upon my reputation +and credit and as I hope to live. + +First Soldier: +Shall I set down your answer so? + +PAROLLES: +Do: I'll take the sacrament on't, how and which way you will. + +BERTRAM: +All's one to him. What a past-saving slave is this! + +First Lord: +You're deceived, my lord: this is Monsieur +Parolles, the gallant militarist,--that was his own +phrase,--that had the whole theoric of war in the +knot of his scarf, and the practise in the chape of +his dagger. + +Second Lord: +I will never trust a man again for keeping his sword +clean. nor believe he can have every thing in him +by wearing his apparel neatly. + +First Soldier: +Well, that's set down. + +PAROLLES: +Five or six thousand horse, I said,-- I will say +true,--or thereabouts, set down, for I'll speak truth. + +First Lord: +He's very near the truth in this. + +BERTRAM: +But I con him no thanks for't, in the nature he +delivers it. + +PAROLLES: +Poor rogues, I pray you, say. + +First Soldier: +Well, that's set down. + +PAROLLES: +I humbly thank you, sir: a truth's a truth, the +rogues are marvellous poor. + +First Soldier: + +PAROLLES: +By my troth, sir, if I were to live this present +hour, I will tell true. Let me see: Spurio, a +hundred and fifty; Sebastian, so many; Corambus, so +many; Jaques, so many; Guiltian, Cosmo, Lodowick, +and Gratii, two hundred and fifty each; mine own +company, Chitopher, Vaumond, Bentii, two hundred and +fifty each: so that the muster-file, rotten and +sound, upon my life, amounts not to fifteen thousand +poll; half of the which dare not shake snow from off +their cassocks, lest they shake themselves to pieces. + +BERTRAM: +What shall be done to him? + +First Lord: +Nothing, but let him have thanks. Demand of him my +condition, and what credit I have with the duke. + +First Soldier: +Well, that's set down. +'You shall demand of him, whether one Captain Dumain +be i' the camp, a Frenchman; what his reputation is +with the duke; what his valour, honesty, and +expertness in wars; or whether he thinks it were not +possible, with well-weighing sums of gold, to +corrupt him to revolt.' What say you to this? what +do you know of it? + +PAROLLES: +I beseech you, let me answer to the particular of +the inter'gatories: demand them singly. + +First Soldier: +Do you know this Captain Dumain? + +PAROLLES: +I know him: a' was a botcher's 'prentice in Paris, +from whence he was whipped for getting the shrieve's +fool with child,--a dumb innocent, that could not +say him nay. + +BERTRAM: +Nay, by your leave, hold your hands; though I know +his brains are forfeit to the next tile that falls. + +First Soldier: +Well, is this captain in the duke of Florence's camp? + +PAROLLES: +Upon my knowledge, he is, and lousy. + +First Lord: +Nay look not so upon me; we shall hear of your +lordship anon. + +First Soldier: +What is his reputation with the duke? + +PAROLLES: +The duke knows him for no other but a poor officer +of mine; and writ to me this other day to turn him +out o' the band: I think I have his letter in my pocket. + +First Soldier: +Marry, we'll search. + +PAROLLES: +In good sadness, I do not know; either it is there, +or it is upon a file with the duke's other letters +in my tent. + +First Soldier: +Here 'tis; here's a paper: shall I read it to you? + +PAROLLES: +I do not know if it be it or no. + +BERTRAM: +Our interpreter does it well. + +First Lord: +Excellently. + +First Soldier: + +PAROLLES: +That is not the duke's letter, sir; that is an +advertisement to a proper maid in Florence, one +Diana, to take heed of the allurement of one Count +Rousillon, a foolish idle boy, but for all that very +ruttish: I pray you, sir, put it up again. + +First Soldier: +Nay, I'll read it first, by your favour. + +PAROLLES: +My meaning in't, I protest, was very honest in the +behalf of the maid; for I knew the young count to be +a dangerous and lascivious boy, who is a whale to +virginity and devours up all the fry it finds. + +BERTRAM: +Damnable both-sides rogue! + +First Soldier: + +BERTRAM: +He shall be whipped through the army with this rhyme +in's forehead. + +Second Lord: +This is your devoted friend, sir, the manifold +linguist and the armipotent soldier. + +BERTRAM: +I could endure any thing before but a cat, and now +he's a cat to me. + +First Soldier: +I perceive, sir, by the general's looks, we shall be +fain to hang you. + +PAROLLES: +My life, sir, in any case: not that I am afraid to +die; but that, my offences being many, I would +repent out the remainder of nature: let me live, +sir, in a dungeon, i' the stocks, or any where, so I may live. + +First Soldier: +We'll see what may be done, so you confess freely; +therefore, once more to this Captain Dumain: you +have answered to his reputation with the duke and to +his valour: what is his honesty? + +PAROLLES: +He will steal, sir, an egg out of a cloister: for +rapes and ravishments he parallels Nessus: he +professes not keeping of oaths; in breaking 'em he +is stronger than Hercules: he will lie, sir, with +such volubility, that you would think truth were a +fool: drunkenness is his best virtue, for he will +be swine-drunk; and in his sleep he does little +harm, save to his bed-clothes about him; but they +know his conditions and lay him in straw. I have but +little more to say, sir, of his honesty: he has +every thing that an honest man should not have; what +an honest man should have, he has nothing. + +First Lord: +I begin to love him for this. + +BERTRAM: +For this description of thine honesty? A pox upon +him for me, he's more and more a cat. + +First Soldier: +What say you to his expertness in war? + +PAROLLES: +Faith, sir, he has led the drum before the English +tragedians; to belie him, I will not, and more of +his soldiership I know not; except, in that country +he had the honour to be the officer at a place there +called Mile-end, to instruct for the doubling of +files: I would do the man what honour I can, but of +this I am not certain. + +First Lord: +He hath out-villained villany so far, that the +rarity redeems him. + +BERTRAM: +A pox on him, he's a cat still. + +First Soldier: +His qualities being at this poor price, I need not +to ask you if gold will corrupt him to revolt. + +PAROLLES: +Sir, for a quart d'ecu he will sell the fee-simple +of his salvation, the inheritance of it; and cut the +entail from all remainders, and a perpetual +succession for it perpetually. + +First Soldier: +What's his brother, the other Captain Dumain? + +Second Lord: +Why does be ask him of me? + +First Soldier: +What's he? + +PAROLLES: +E'en a crow o' the same nest; not altogether so +great as the first in goodness, but greater a great +deal in evil: he excels his brother for a coward, +yet his brother is reputed one of the best that is: +in a retreat he outruns any lackey; marry, in coming +on he has the cramp. + +First Soldier: +If your life be saved, will you undertake to betray +the Florentine? + +PAROLLES: +Ay, and the captain of his horse, Count Rousillon. + +First Soldier: +I'll whisper with the general, and know his pleasure. + +PAROLLES: + +First Soldier: +There is no remedy, sir, but you must die: the +general says, you that have so traitorously +discovered the secrets of your army and made such +pestiferous reports of men very nobly held, can +serve the world for no honest use; therefore you +must die. Come, headsman, off with his head. + +PAROLLES: +O Lord, sir, let me live, or let me see my death! + +First Lord: +That shall you, and take your leave of all your friends. +So, look about you: know you any here? + +BERTRAM: +Good morrow, noble captain. + +Second Lord: +God bless you, Captain Parolles. + +First Lord: +God save you, noble captain. + +Second Lord: +Captain, what greeting will you to my Lord Lafeu? +I am for France. + +First Lord: +Good captain, will you give me a copy of the sonnet +you writ to Diana in behalf of the Count Rousillon? +an I were not a very coward, I'ld compel it of you: +but fare you well. + +First Soldier: +You are undone, captain, all but your scarf; that +has a knot on't yet + +PAROLLES: +Who cannot be crushed with a plot? + +First Soldier: +If you could find out a country where but women were +that had received so much shame, you might begin an +impudent nation. Fare ye well, sir; I am for France +too: we shall speak of you there. + +PAROLLES: +Yet am I thankful: if my heart were great, +'Twould burst at this. Captain I'll be no more; +But I will eat and drink, and sleep as soft +As captain shall: simply the thing I am +Shall make me live. Who knows himself a braggart, +Let him fear this, for it will come to pass +that every braggart shall be found an ass. +Rust, sword? cool, blushes! and, Parolles, live +Safest in shame! being fool'd, by foolery thrive! +There's place and means for every man alive. +I'll after them. + +HELENA: +That you may well perceive I have not wrong'd you, +One of the greatest in the Christian world +Shall be my surety; 'fore whose throne 'tis needful, +Ere I can perfect mine intents, to kneel: +Time was, I did him a desired office, +Dear almost as his life; which gratitude +Through flinty Tartar's bosom would peep forth, +And answer, thanks: I duly am inform'd +His grace is at Marseilles; to which place +We have convenient convoy. You must know +I am supposed dead: the army breaking, +My husband hies him home; where, heaven aiding, +And by the leave of my good lord the king, +We'll be before our welcome. + +Widow: +Gentle madam, +You never had a servant to whose trust +Your business was more welcome. + +HELENA: +Nor you, mistress, +Ever a friend whose thoughts more truly labour +To recompense your love: doubt not but heaven +Hath brought me up to be your daughter's dower, +As it hath fated her to be my motive +And helper to a husband. But, O strange men! +That can such sweet use make of what they hate, +When saucy trusting of the cozen'd thoughts +Defiles the pitchy night: so lust doth play +With what it loathes for that which is away. +But more of this hereafter. You, Diana, +Under my poor instructions yet must suffer +Something in my behalf. + +DIANA: +Let death and honesty +Go with your impositions, I am yours +Upon your will to suffer. + +HELENA: +Yet, I pray you: +But with the word the time will bring on summer, +When briers shall have leaves as well as thorns, +And be as sweet as sharp. We must away; +Our wagon is prepared, and time revives us: +All's well that ends well; still the fine's the crown; +Whate'er the course, the end is the renown. + +LAFEU: +No, no, no, your son was misled with a snipt-taffeta +fellow there, whose villanous saffron would have +made all the unbaked and doughy youth of a nation in +his colour: your daughter-in-law had been alive at +this hour, and your son here at home, more advanced +by the king than by that red-tailed humble-bee I speak of. + +COUNTESS: +I would I had not known him; it was the death of the +most virtuous gentlewoman that ever nature had +praise for creating. If she had partaken of my +flesh, and cost me the dearest groans of a mother, I +could not have owed her a more rooted love. + +LAFEU: +'Twas a good lady, 'twas a good lady: we may pick a +thousand salads ere we light on such another herb. + +Clown: +Indeed, sir, she was the sweet marjoram of the +salad, or rather, the herb of grace. + +LAFEU: +They are not herbs, you knave; they are nose-herbs. + +Clown: +I am no great Nebuchadnezzar, sir; I have not much +skill in grass. + +LAFEU: +Whether dost thou profess thyself, a knave or a fool? + +Clown: +A fool, sir, at a woman's service, and a knave at a man's. + +LAFEU: +Your distinction? + +Clown: +I would cozen the man of his wife and do his service. + +LAFEU: +So you were a knave at his service, indeed. + +Clown: +And I would give his wife my bauble, sir, to do her service. + +LAFEU: +I will subscribe for thee, thou art both knave and fool. + +Clown: +At your service. + +LAFEU: +No, no, no. + +Clown: +Why, sir, if I cannot serve you, I can serve as +great a prince as you are. + +LAFEU: +Who's that? a Frenchman? + +Clown: +Faith, sir, a' has an English name; but his fisnomy +is more hotter in France than there. + +LAFEU: +What prince is that? + +Clown: +The black prince, sir; alias, the prince of +darkness; alias, the devil. + +LAFEU: +Hold thee, there's my purse: I give thee not this +to suggest thee from thy master thou talkest of; +serve him still. + +Clown: +I am a woodland fellow, sir, that always loved a +great fire; and the master I speak of ever keeps a +good fire. But, sure, he is the prince of the +world; let his nobility remain in's court. I am for +the house with the narrow gate, which I take to be +too little for pomp to enter: some that humble +themselves may; but the many will be too chill and +tender, and they'll be for the flowery way that +leads to the broad gate and the great fire. + +LAFEU: +Go thy ways, I begin to be aweary of thee; and I +tell thee so before, because I would not fall out +with thee. Go thy ways: let my horses be well +looked to, without any tricks. + +Clown: +If I put any tricks upon 'em, sir, they shall be +jades' tricks; which are their own right by the law of nature. + +LAFEU: +A shrewd knave and an unhappy. + +COUNTESS: +So he is. My lord that's gone made himself much +sport out of him: by his authority he remains here, +which he thinks is a patent for his sauciness; and, +indeed, he has no pace, but runs where he will. + +LAFEU: +I like him well; 'tis not amiss. And I was about to +tell you, since I heard of the good lady's death and +that my lord your son was upon his return home, I +moved the king my master to speak in the behalf of +my daughter; which, in the minority of them both, +his majesty, out of a self-gracious remembrance, did +first propose: his highness hath promised me to do +it: and, to stop up the displeasure he hath +conceived against your son, there is no fitter +matter. How does your ladyship like it? + +COUNTESS: +With very much content, my lord; and I wish it +happily effected. + +LAFEU: +His highness comes post from Marseilles, of as able +body as when he numbered thirty: he will be here +to-morrow, or I am deceived by him that in such +intelligence hath seldom failed. + +COUNTESS: +It rejoices me, that I hope I shall see him ere I +die. I have letters that my son will be here +to-night: I shall beseech your lordship to remain +with me till they meet together. + +LAFEU: +Madam, I was thinking with what manners I might +safely be admitted. + +COUNTESS: +You need but plead your honourable privilege. + +LAFEU: +Lady, of that I have made a bold charter; but I +thank my God it holds yet. + +Clown: +O madam, yonder's my lord your son with a patch of +velvet on's face: whether there be a scar under't +or no, the velvet knows; but 'tis a goodly patch of +velvet: his left cheek is a cheek of two pile and a +half, but his right cheek is worn bare. + +LAFEU: +A scar nobly got, or a noble scar, is a good livery +of honour; so belike is that. + +Clown: +But it is your carbonadoed face. + +LAFEU: +Let us go see your son, I pray you: I long to talk +with the young noble soldier. + +Clown: +Faith there's a dozen of 'em, with delicate fine +hats and most courteous feathers, which bow the head +and nod at every man. + +HELENA: +But this exceeding posting day and night +Must wear your spirits low; we cannot help it: +But since you have made the days and nights as one, +To wear your gentle limbs in my affairs, +Be bold you do so grow in my requital +As nothing can unroot you. In happy time; +This man may help me to his majesty's ear, +If he would spend his power. God save you, sir. + +Gentleman: +And you. + +HELENA: +Sir, I have seen you in the court of France. + +Gentleman: +I have been sometimes there. + +HELENA: +I do presume, sir, that you are not fallen +From the report that goes upon your goodness; +An therefore, goaded with most sharp occasions, +Which lay nice manners by, I put you to +The use of your own virtues, for the which +I shall continue thankful. + +Gentleman: +What's your will? + +HELENA: +That it will please you +To give this poor petition to the king, +And aid me with that store of power you have +To come into his presence. + +Gentleman: +The king's not here. + +HELENA: +Not here, sir! + +Gentleman: +Not, indeed: +He hence removed last night and with more haste +Than is his use. + +Widow: +Lord, how we lose our pains! + +HELENA: +All's well that ends well yet, +Though time seem so adverse and means unfit. +I do beseech you, whither is he gone? + +Gentleman: +Marry, as I take it, to Rousillon; +Whither I am going. + +HELENA: +I do beseech you, sir, +Since you are like to see the king before me, +Commend the paper to his gracious hand, +Which I presume shall render you no blame +But rather make you thank your pains for it. +I will come after you with what good speed +Our means will make us means. + +Gentleman: +This I'll do for you. + +HELENA: +And you shall find yourself to be well thank'd, +Whate'er falls more. We must to horse again. +Go, go, provide. + +PAROLLES: +Good Monsieur Lavache, give my Lord Lafeu this +letter: I have ere now, sir, been better known to +you, when I have held familiarity with fresher +clothes; but I am now, sir, muddied in fortune's +mood, and smell somewhat strong of her strong +displeasure. + +Clown: +Truly, fortune's displeasure is but sluttish, if it +smell so strongly as thou speakest of: I will +henceforth eat no fish of fortune's buttering. +Prithee, allow the wind. + +PAROLLES: +Nay, you need not to stop your nose, sir; I spake +but by a metaphor. + +Clown: +Indeed, sir, if your metaphor stink, I will stop my +nose; or against any man's metaphor. Prithee, get +thee further. + +PAROLLES: +Pray you, sir, deliver me this paper. + +Clown: +Foh! prithee, stand away: a paper from fortune's +close-stool to give to a nobleman! Look, here he +comes himself. +Here is a purr of fortune's, sir, or of fortune's +cat,--but not a musk-cat,--that has fallen into the +unclean fishpond of her displeasure, and, as he +says, is muddied withal: pray you, sir, use the +carp as you may; for he looks like a poor, decayed, +ingenious, foolish, rascally knave. I do pity his +distress in my similes of comfort and leave him to +your lordship. + +PAROLLES: +My lord, I am a man whom fortune hath cruelly +scratched. + +LAFEU: +And what would you have me to do? 'Tis too late to +pare her nails now. Wherein have you played the +knave with fortune, that she should scratch you, who +of herself is a good lady and would not have knaves +thrive long under her? There's a quart d'ecu for +you: let the justices make you and fortune friends: +I am for other business. + +PAROLLES: +I beseech your honour to hear me one single word. + +LAFEU: +You beg a single penny more: come, you shall ha't; +save your word. + +PAROLLES: +My name, my good lord, is Parolles. + +LAFEU: +You beg more than 'word,' then. Cox my passion! +give me your hand. How does your drum? + +PAROLLES: +O my good lord, you were the first that found me! + +LAFEU: +Was I, in sooth? and I was the first that lost thee. + +PAROLLES: +It lies in you, my lord, to bring me in some grace, +for you did bring me out. + +LAFEU: +Out upon thee, knave! dost thou put upon me at once +both the office of God and the devil? One brings +thee in grace and the other brings thee out. +The king's coming; I know by his trumpets. Sirrah, +inquire further after me; I had talk of you last +night: though you are a fool and a knave, you shall +eat; go to, follow. + +PAROLLES: +I praise God for you. + +KING: +We lost a jewel of her; and our esteem +Was made much poorer by it: but your son, +As mad in folly, lack'd the sense to know +Her estimation home. + +COUNTESS: +'Tis past, my liege; +And I beseech your majesty to make it +Natural rebellion, done i' the blaze of youth; +When oil and fire, too strong for reason's force, +O'erbears it and burns on. + +KING: +My honour'd lady, +I have forgiven and forgotten all; +Though my revenges were high bent upon him, +And watch'd the time to shoot. + +LAFEU: +This I must say, +But first I beg my pardon, the young lord +Did to his majesty, his mother and his lady +Offence of mighty note; but to himself +The greatest wrong of all. He lost a wife +Whose beauty did astonish the survey +Of richest eyes, whose words all ears took captive, +Whose dear perfection hearts that scorn'd to serve +Humbly call'd mistress. + +KING: +Praising what is lost +Makes the remembrance dear. Well, call him hither; +We are reconciled, and the first view shall kill +All repetition: let him not ask our pardon; +The nature of his great offence is dead, +And deeper than oblivion we do bury +The incensing relics of it: let him approach, +A stranger, no offender; and inform him +So 'tis our will he should. + +Gentleman: +I shall, my liege. + +KING: +What says he to your daughter? have you spoke? + +LAFEU: +All that he is hath reference to your highness. + +KING: +Then shall we have a match. I have letters sent me +That set him high in fame. + +LAFEU: +He looks well on't. + +KING: +I am not a day of season, +For thou mayst see a sunshine and a hail +In me at once: but to the brightest beams +Distracted clouds give way; so stand thou forth; +The time is fair again. + +BERTRAM: +My high-repented blames, +Dear sovereign, pardon to me. + +KING: +All is whole; +Not one word more of the consumed time. +Let's take the instant by the forward top; +For we are old, and on our quick'st decrees +The inaudible and noiseless foot of Time +Steals ere we can effect them. You remember +The daughter of this lord? + +BERTRAM: +Admiringly, my liege, at first +I stuck my choice upon her, ere my heart +Durst make too bold a herald of my tongue +Where the impression of mine eye infixing, +Contempt his scornful perspective did lend me, +Which warp'd the line of every other favour; +Scorn'd a fair colour, or express'd it stolen; +Extended or contracted all proportions +To a most hideous object: thence it came +That she whom all men praised and whom myself, +Since I have lost, have loved, was in mine eye +The dust that did offend it. + +KING: +Well excused: +That thou didst love her, strikes some scores away +From the great compt: but love that comes too late, +Like a remorseful pardon slowly carried, +To the great sender turns a sour offence, +Crying, 'That's good that's gone.' Our rash faults +Make trivial price of serious things we have, +Not knowing them until we know their grave: +Oft our displeasures, to ourselves unjust, +Destroy our friends and after weep their dust +Our own love waking cries to see what's done, +While shame full late sleeps out the afternoon. +Be this sweet Helen's knell, and now forget her. +Send forth your amorous token for fair Maudlin: +The main consents are had; and here we'll stay +To see our widower's second marriage-day. + +COUNTESS: +Which better than the first, O dear heaven, bless! +Or, ere they meet, in me, O nature, cesse! + +LAFEU: +Come on, my son, in whom my house's name +Must be digested, give a favour from you +To sparkle in the spirits of my daughter, +That she may quickly come. +By my old beard, +And every hair that's on't, Helen, that's dead, +Was a sweet creature: such a ring as this, +The last that e'er I took her at court, +I saw upon her finger. + +BERTRAM: +Hers it was not. + +KING: +Now, pray you, let me see it; for mine eye, +While I was speaking, oft was fasten'd to't. +This ring was mine; and, when I gave it Helen, +I bade her, if her fortunes ever stood +Necessitied to help, that by this token +I would relieve her. Had you that craft, to reave +her +Of what should stead her most? + +BERTRAM: +My gracious sovereign, +Howe'er it pleases you to take it so, +The ring was never hers. + +COUNTESS: +Son, on my life, +I have seen her wear it; and she reckon'd it +At her life's rate. + +LAFEU: +I am sure I saw her wear it. + +BERTRAM: +You are deceived, my lord; she never saw it: +In Florence was it from a casement thrown me, +Wrapp'd in a paper, which contain'd the name +Of her that threw it: noble she was, and thought +I stood engaged: but when I had subscribed +To mine own fortune and inform'd her fully +I could not answer in that course of honour +As she had made the overture, she ceased +In heavy satisfaction and would never +Receive the ring again. + +KING: +Plutus himself, +That knows the tinct and multiplying medicine, +Hath not in nature's mystery more science +Than I have in this ring: 'twas mine, 'twas Helen's, +Whoever gave it you. Then, if you know +That you are well acquainted with yourself, +Confess 'twas hers, and by what rough enforcement +You got it from her: she call'd the saints to surety +That she would never put it from her finger, +Unless she gave it to yourself in bed, +Where you have never come, or sent it us +Upon her great disaster. + +BERTRAM: +She never saw it. + +KING: +Thou speak'st it falsely, as I love mine honour; +And makest conjectural fears to come into me +Which I would fain shut out. If it should prove +That thou art so inhuman,--'twill not prove so;-- +And yet I know not: thou didst hate her deadly, +And she is dead; which nothing, but to close +Her eyes myself, could win me to believe, +More than to see this ring. Take him away. +My fore-past proofs, howe'er the matter fall, +Shall tax my fears of little vanity, +Having vainly fear'd too little. Away with him! +We'll sift this matter further. + +BERTRAM: +If you shall prove +This ring was ever hers, you shall as easy +Prove that I husbanded her bed in Florence, +Where yet she never was. + +KING: +I am wrapp'd in dismal thinkings. + +Gentleman: +Gracious sovereign, +Whether I have been to blame or no, I know not: +Here's a petition from a Florentine, +Who hath for four or five removes come short +To tender it herself. I undertook it, +Vanquish'd thereto by the fair grace and speech +Of the poor suppliant, who by this I know +Is here attending: her business looks in her +With an importing visage; and she told me, +In a sweet verbal brief, it did concern +Your highness with herself. + +KING: + +LAFEU: +I will buy me a son-in-law in a fair, and toll for +this: I'll none of him. + +KING: +The heavens have thought well on thee Lafeu, +To bring forth this discovery. Seek these suitors: +Go speedily and bring again the count. +I am afeard the life of Helen, lady, +Was foully snatch'd. + +COUNTESS: +Now, justice on the doers! + +KING: +I wonder, sir, sith wives are monsters to you, +And that you fly them as you swear them lordship, +Yet you desire to marry. +What woman's that? + +DIANA: +I am, my lord, a wretched Florentine, +Derived from the ancient Capilet: +My suit, as I do understand, you know, +And therefore know how far I may be pitied. + +Widow: +I am her mother, sir, whose age and honour +Both suffer under this complaint we bring, +And both shall cease, without your remedy. + +KING: +Come hither, count; do you know these women? + +BERTRAM: +My lord, I neither can nor will deny +But that I know them: do they charge me further? + +DIANA: +Why do you look so strange upon your wife? + +BERTRAM: +She's none of mine, my lord. + +DIANA: +If you shall marry, +You give away this hand, and that is mine; +You give away heaven's vows, and those are mine; +You give away myself, which is known mine; +For I by vow am so embodied yours, +That she which marries you must marry me, +Either both or none. + +LAFEU: +Your reputation comes too short for my daughter; you +are no husband for her. + +BERTRAM: +My lord, this is a fond and desperate creature, +Whom sometime I have laugh'd with: let your highness +Lay a more noble thought upon mine honour +Than for to think that I would sink it here. + +KING: +Sir, for my thoughts, you have them ill to friend +Till your deeds gain them: fairer prove your honour +Than in my thought it lies. + +DIANA: +Good my lord, +Ask him upon his oath, if he does think +He had not my virginity. + +KING: +What say'st thou to her? + +BERTRAM: +She's impudent, my lord, +And was a common gamester to the camp. + +DIANA: +He does me wrong, my lord; if I were so, +He might have bought me at a common price: +Do not believe him. O, behold this ring, +Whose high respect and rich validity +Did lack a parallel; yet for all that +He gave it to a commoner o' the camp, +If I be one. + +COUNTESS: +He blushes, and 'tis it: +Of six preceding ancestors, that gem, +Conferr'd by testament to the sequent issue, +Hath it been owed and worn. This is his wife; +That ring's a thousand proofs. + +KING: +Methought you said +You saw one here in court could witness it. + +DIANA: +I did, my lord, but loath am to produce +So bad an instrument: his name's Parolles. + +LAFEU: +I saw the man to-day, if man he be. + +KING: +Find him, and bring him hither. + +BERTRAM: +What of him? +He's quoted for a most perfidious slave, +With all the spots o' the world tax'd and debosh'd; +Whose nature sickens but to speak a truth. +Am I or that or this for what he'll utter, +That will speak any thing? + +KING: +She hath that ring of yours. + +BERTRAM: +I think she has: certain it is I liked her, +And boarded her i' the wanton way of youth: +She knew her distance and did angle for me, +Madding my eagerness with her restraint, +As all impediments in fancy's course +Are motives of more fancy; and, in fine, +Her infinite cunning, with her modern grace, +Subdued me to her rate: she got the ring; +And I had that which any inferior might +At market-price have bought. + +DIANA: +I must be patient: +You, that have turn'd off a first so noble wife, +May justly diet me. I pray you yet; +Since you lack virtue, I will lose a husband; +Send for your ring, I will return it home, +And give me mine again. + +BERTRAM: +I have it not. + +KING: +What ring was yours, I pray you? + +DIANA: +Sir, much like +The same upon your finger. + +KING: +Know you this ring? this ring was his of late. + +DIANA: +And this was it I gave him, being abed. + +KING: +The story then goes false, you threw it him +Out of a casement. + +DIANA: +I have spoke the truth. + +BERTRAM: +My lord, I do confess the ring was hers. + +KING: +You boggle shrewdly, every feather stars you. +Is this the man you speak of? + +DIANA: +Ay, my lord. + +KING: +Tell me, sirrah, but tell me true, I charge you, +Not fearing the displeasure of your master, +Which on your just proceeding I'll keep off, +By him and by this woman here what know you? + +PAROLLES: +So please your majesty, my master hath been an +honourable gentleman: tricks he hath had in him, +which gentlemen have. + +KING: +Come, come, to the purpose: did he love this woman? + +PAROLLES: +Faith, sir, he did love her; but how? + +KING: +How, I pray you? + +PAROLLES: +He did love her, sir, as a gentleman loves a woman. + +KING: +How is that? + +PAROLLES: +He loved her, sir, and loved her not. + +KING: +As thou art a knave, and no knave. What an +equivocal companion is this! + +PAROLLES: +I am a poor man, and at your majesty's command. + +LAFEU: +He's a good drum, my lord, but a naughty orator. + +DIANA: +Do you know he promised me marriage? + +PAROLLES: +Faith, I know more than I'll speak. + +KING: +But wilt thou not speak all thou knowest? + +PAROLLES: +Yes, so please your majesty. I did go between them, +as I said; but more than that, he loved her: for +indeed he was mad for her, and talked of Satan and +of Limbo and of Furies and I know not what: yet I +was in that credit with them at that time that I +knew of their going to bed, and of other motions, +as promising her marriage, and things which would +derive me ill will to speak of; therefore I will not +speak what I know. + +KING: +Thou hast spoken all already, unless thou canst say +they are married: but thou art too fine in thy +evidence; therefore stand aside. +This ring, you say, was yours? + +DIANA: +Ay, my good lord. + +KING: +Where did you buy it? or who gave it you? + +DIANA: +It was not given me, nor I did not buy it. + +KING: +Who lent it you? + +DIANA: +It was not lent me neither. + +KING: +Where did you find it, then? + +DIANA: +I found it not. + +KING: +If it were yours by none of all these ways, +How could you give it him? + +DIANA: +I never gave it him. + +LAFEU: +This woman's an easy glove, my lord; she goes off +and on at pleasure. + +KING: +This ring was mine; I gave it his first wife. + +DIANA: +It might be yours or hers, for aught I know. + +KING: +Take her away; I do not like her now; +To prison with her: and away with him. +Unless thou tell'st me where thou hadst this ring, +Thou diest within this hour. + +DIANA: +I'll never tell you. + +KING: +Take her away. + +DIANA: +I'll put in bail, my liege. + +KING: +I think thee now some common customer. + +DIANA: +By Jove, if ever I knew man, 'twas you. + +KING: +Wherefore hast thou accused him all this while? + +DIANA: +Because he's guilty, and he is not guilty: +He knows I am no maid, and he'll swear to't; +I'll swear I am a maid, and he knows not. +Great king, I am no strumpet, by my life; +I am either maid, or else this old man's wife. + +KING: +She does abuse our ears: to prison with her. + +DIANA: +Good mother, fetch my bail. Stay, royal sir: +The jeweller that owes the ring is sent for, +And he shall surety me. But for this lord, +Who hath abused me, as he knows himself, +Though yet he never harm'd me, here I quit him: +He knows himself my bed he hath defiled; +And at that time he got his wife with child: +Dead though she be, she feels her young one kick: +So there's my riddle: one that's dead is quick: +And now behold the meaning. + +KING: +Is there no exorcist +Beguiles the truer office of mine eyes? +Is't real that I see? + +HELENA: +No, my good lord; +'Tis but the shadow of a wife you see, +The name and not the thing. + +BERTRAM: +Both, both. O, pardon! + +HELENA: +O my good lord, when I was like this maid, +I found you wondrous kind. There is your ring; +And, look you, here's your letter; this it says: +'When from my finger you can get this ring +And are by me with child,' &c. This is done: +Will you be mine, now you are doubly won? + +BERTRAM: +If she, my liege, can make me know this clearly, +I'll love her dearly, ever, ever dearly. + +HELENA: +If it appear not plain and prove untrue, +Deadly divorce step between me and you! +O my dear mother, do I see you living? + +LAFEU: +Mine eyes smell onions; I shall weep anon: +Good Tom Drum, lend me a handkercher: so, +I thank thee: wait on me home, I'll make sport with thee: +Let thy courtesies alone, they are scurvy ones. + +KING: +Let us from point to point this story know, +To make the even truth in pleasure flow. +If thou be'st yet a fresh uncropped flower, +Choose thou thy husband, and I'll pay thy dower; +For I can guess that by thy honest aid +Thou keep'st a wife herself, thyself a maid. +Of that and all the progress, more or less, +Resolvedly more leisure shall express: +All yet seems well; and if it end so meet, +The bitter past, more welcome is the sweet. + +KING: +The king's a beggar, now the play is done: +All is well ended, if this suit be won, +That you express content; which we will pay, +With strife to please you, day exceeding day: +Ours be your patience then, and yours our parts; +Your gentle hands lend us, and take our hearts. + + +BUCKINGHAM: +Good morrow, and well met. How have ye done +Since last we saw in France? + +NORFOLK: +I thank your grace, +Healthful; and ever since a fresh admirer +Of what I saw there. + +BUCKINGHAM: +An untimely ague +Stay'd me a prisoner in my chamber when +Those suns of glory, those two lights of men, +Met in the vale of Andren. + +NORFOLK: +'Twixt Guynes and Arde: +I was then present, saw them salute on horseback; +Beheld them, when they lighted, how they clung +In their embracement, as they grew together; +Which had they, what four throned ones could have weigh'd +Such a compounded one? + +BUCKINGHAM: +All the whole time +I was my chamber's prisoner. + +NORFOLK: +Then you lost +The view of earthly glory: men might say, +Till this time pomp was single, but now married +To one above itself. Each following day +Became the next day's master, till the last +Made former wonders its. To-day the French, +All clinquant, all in gold, like heathen gods, +Shone down the English; and, to-morrow, they +Made Britain India: every man that stood +Show'd like a mine. Their dwarfish pages were +As cherubins, all guilt: the madams too, +Not used to toil, did almost sweat to bear +The pride upon them, that their very labour +Was to them as a painting: now this masque +Was cried incomparable; and the ensuing night +Made it a fool and beggar. The two kings, +Equal in lustre, were now best, now worst, +As presence did present them; him in eye, +Still him in praise: and, being present both +'Twas said they saw but one; and no discerner +Durst wag his tongue in censure. When these suns-- +For so they phrase 'em--by their heralds challenged +The noble spirits to arms, they did perform +Beyond thought's compass; that former fabulous story, +Being now seen possible enough, got credit, +That Bevis was believed. + +BUCKINGHAM: +O, you go far. + +NORFOLK: +As I belong to worship and affect +In honour honesty, the tract of every thing +Would by a good discourser lose some life, +Which action's self was tongue to. All was royal; +To the disposing of it nought rebell'd. +Order gave each thing view; the office did +Distinctly his full function. + +BUCKINGHAM: +Who did guide, +I mean, who set the body and the limbs +Of this great sport together, as you guess? + +NORFOLK: +One, certes, that promises no element +In such a business. + +BUCKINGHAM: +I pray you, who, my lord? + +NORFOLK: +All this was order'd by the good discretion +Of the right reverend Cardinal of York. + +BUCKINGHAM: +The devil speed him! no man's pie is freed +From his ambitious finger. What had he +To do in these fierce vanities? I wonder +That such a keech can with his very bulk +Take up the rays o' the beneficial sun +And keep it from the earth. + +NORFOLK: +Surely, sir, +There's in him stuff that puts him to these ends; +For, being not propp'd by ancestry, whose grace +Chalks successors their way, nor call'd upon +For high feats done to the crown; neither allied +For eminent assistants; but, spider-like, +Out of his self-drawing web, he gives us note, +The force of his own merit makes his way +A gift that heaven gives for him, which buys +A place next to the king. + +ABERGAVENNY: +I cannot tell +What heaven hath given him,--let some graver eye +Pierce into that; but I can see his pride +Peep through each part of him: whence has he that, +If not from hell? the devil is a niggard, +Or has given all before, and he begins +A new hell in himself. + +BUCKINGHAM: +Why the devil, +Upon this French going out, took he upon him, +Without the privity o' the king, to appoint +Who should attend on him? He makes up the file +Of all the gentry; for the most part such +To whom as great a charge as little honour +He meant to lay upon: and his own letter, +The honourable board of council out, +Must fetch him in the papers. + +ABERGAVENNY: +I do know +Kinsmen of mine, three at the least, that have +By this so sickened their estates, that never +They shall abound as formerly. + +BUCKINGHAM: +O, many +Have broke their backs with laying manors on 'em +For this great journey. What did this vanity +But minister communication of +A most poor issue? + +NORFOLK: +Grievingly I think, +The peace between the French and us not values +The cost that did conclude it. + +BUCKINGHAM: +Every man, +After the hideous storm that follow'd, was +A thing inspired; and, not consulting, broke +Into a general prophecy; That this tempest, +Dashing the garment of this peace, aboded +The sudden breach on't. + +NORFOLK: +Which is budded out; +For France hath flaw'd the league, and hath attach'd +Our merchants' goods at Bourdeaux. + +ABERGAVENNY: +Is it therefore +The ambassador is silenced? + +NORFOLK: +Marry, is't. + +ABERGAVENNY: +A proper title of a peace; and purchased +At a superfluous rate! + +BUCKINGHAM: +Why, all this business +Our reverend cardinal carried. + +NORFOLK: +Like it your grace, +The state takes notice of the private difference +Betwixt you and the cardinal. I advise you-- +And take it from a heart that wishes towards you +Honour and plenteous safety--that you read +The cardinal's malice and his potency +Together; to consider further that +What his high hatred would effect wants not +A minister in his power. You know his nature, +That he's revengeful, and I know his sword +Hath a sharp edge: it's long and, 't may be said, +It reaches far, and where 'twill not extend, +Thither he darts it. Bosom up my counsel, +You'll find it wholesome. Lo, where comes that rock +That I advise your shunning. + +CARDINAL WOLSEY: +The Duke of Buckingham's surveyor, ha? +Where's his examination? + +First Secretary: +Here, so please you. + +CARDINAL WOLSEY: +Is he in person ready? + +First Secretary: +Ay, please your grace. + +CARDINAL WOLSEY: +Well, we shall then know more; and Buckingham +Shall lessen this big look. + +BUCKINGHAM: +This butcher's cur is venom-mouth'd, and I +Have not the power to muzzle him; therefore best +Not wake him in his slumber. A beggar's book +Outworths a noble's blood. + +NORFOLK: +What, are you chafed? +Ask God for temperance; that's the appliance only +Which your disease requires. + +BUCKINGHAM: +I read in's looks +Matter against me; and his eye reviled +Me, as his abject object: at this instant +He bores me with some trick: he's gone to the king; +I'll follow and outstare him. + +NORFOLK: +Stay, my lord, +And let your reason with your choler question +What 'tis you go about: to climb steep hills +Requires slow pace at first: anger is like +A full-hot horse, who being allow'd his way, +Self-mettle tires him. Not a man in England +Can advise me like you: be to yourself +As you would to your friend. + +BUCKINGHAM: +I'll to the king; +And from a mouth of honour quite cry down +This Ipswich fellow's insolence; or proclaim +There's difference in no persons. + +NORFOLK: +Be advised; +Heat not a furnace for your foe so hot +That it do singe yourself: we may outrun, +By violent swiftness, that which we run at, +And lose by over-running. Know you not, +The fire that mounts the liquor til run o'er, +In seeming to augment it wastes it? Be advised: +I say again, there is no English soul +More stronger to direct you than yourself, +If with the sap of reason you would quench, +Or but allay, the fire of passion. + +BUCKINGHAM: +Sir, +I am thankful to you; and I'll go along +By your prescription: but this top-proud fellow, +Whom from the flow of gall I name not but +From sincere motions, by intelligence, +And proofs as clear as founts in July when +We see each grain of gravel, I do know +To be corrupt and treasonous. + +NORFOLK: +Say not 'treasonous.' + +BUCKINGHAM: +To the king I'll say't; and make my vouch as strong +As shore of rock. Attend. This holy fox, +Or wolf, or both,--for he is equal ravenous +As he is subtle, and as prone to mischief +As able to perform't; his mind and place +Infecting one another, yea, reciprocally-- +Only to show his pomp as well in France +As here at home, suggests the king our master +To this last costly treaty, the interview, +That swallow'd so much treasure, and like a glass +Did break i' the rinsing. + +NORFOLK: +Faith, and so it did. + +BUCKINGHAM: +Pray, give me favour, sir. This cunning cardinal +The articles o' the combination drew +As himself pleased; and they were ratified +As he cried 'Thus let be': to as much end +As give a crutch to the dead: but our count-cardinal +Has done this, and 'tis well; for worthy Wolsey, +Who cannot err, he did it. Now this follows,-- +Which, as I take it, is a kind of puppy +To the old dam, treason,--Charles the emperor, +Under pretence to see the queen his aunt-- +For 'twas indeed his colour, but he came +To whisper Wolsey,--here makes visitation: +His fears were, that the interview betwixt +England and France might, through their amity, +Breed him some prejudice; for from this league +Peep'd harms that menaced him: he privily +Deals with our cardinal; and, as I trow,-- +Which I do well; for I am sure the emperor +Paid ere he promised; whereby his suit was granted +Ere it was ask'd; but when the way was made, +And paved with gold, the emperor thus desired, +That he would please to alter the king's course, +And break the foresaid peace. Let the king know, +As soon he shall by me, that thus the cardinal +Does buy and sell his honour as he pleases, +And for his own advantage. + +NORFOLK: +I am sorry +To hear this of him; and could wish he were +Something mistaken in't. + +BUCKINGHAM: +No, not a syllable: +I do pronounce him in that very shape +He shall appear in proof. + +BRANDON: +Your office, sergeant; execute it. + +Sergeant: +Sir, +My lord the Duke of Buckingham, and Earl +Of Hereford, Stafford, and Northampton, I +Arrest thee of high treason, in the name +Of our most sovereign king. + +BUCKINGHAM: +Lo, you, my lord, +The net has fall'n upon me! I shall perish +Under device and practise. + +BRANDON: +I am sorry +To see you ta'en from liberty, to look on +The business present: 'tis his highness' pleasure +You shall to the Tower. + +BUCKINGHAM: +It will help me nothing +To plead mine innocence; for that dye is on me +Which makes my whitest part black. The will of heaven +Be done in this and all things! I obey. +O my Lord Abergavenny, fare you well! + +BRANDON: +Nay, he must bear you company. The king +Is pleased you shall to the Tower, till you know +How he determines further. + +ABERGAVENNY: +As the duke said, +The will of heaven be done, and the king's pleasure +By me obey'd! + +BRANDON: +Here is a warrant from +The king to attach Lord Montacute; and the bodies +Of the duke's confessor, John de la Car, +One Gilbert Peck, his chancellor-- + +BUCKINGHAM: +So, so; +These are the limbs o' the plot: no more, I hope. + +BRANDON: +A monk o' the Chartreux. + +BUCKINGHAM: +O, Nicholas Hopkins? + +BRANDON: +He. + +BUCKINGHAM: +My surveyor is false; the o'er-great cardinal +Hath show'd him gold; my life is spann'd already: +I am the shadow of poor Buckingham, +Whose figure even this instant cloud puts on, +By darkening my clear sun. My lord, farewell. + +KING HENRY VIII: +My life itself, and the best heart of it, +Thanks you for this great care: I stood i' the level +Of a full-charged confederacy, and give thanks +To you that choked it. Let be call'd before us +That gentleman of Buckingham's; in person +I'll hear him his confessions justify; +And point by point the treasons of his master +He shall again relate. + +QUEEN KATHARINE: +Nay, we must longer kneel: I am a suitor. + +KING HENRY VIII: +Arise, and take place by us: half your suit +Never name to us; you have half our power: +The other moiety, ere you ask, is given; +Repeat your will and take it. + +QUEEN KATHARINE: +Thank your majesty. +That you would love yourself, and in that love +Not unconsider'd leave your honour, nor +The dignity of your office, is the point +Of my petition. + +KING HENRY VIII: +Lady mine, proceed. + +QUEEN KATHARINE: +I am solicited, not by a few, +And those of true condition, that your subjects +Are in great grievance: there have been commissions +Sent down among 'em, which hath flaw'd the heart +Of all their loyalties: wherein, although, +My good lord cardinal, they vent reproaches +Most bitterly on you, as putter on +Of these exactions, yet the king our master-- +Whose honour heaven shield from soil!--even he +escapes not +Language unmannerly, yea, such which breaks +The sides of loyalty, and almost appears +In loud rebellion. + +NORFOLK: +Not almost appears, +It doth appear; for, upon these taxations, +The clothiers all, not able to maintain +The many to them longing, have put off +The spinsters, carders, fullers, weavers, who, +Unfit for other life, compell'd by hunger +And lack of other means, in desperate manner +Daring the event to the teeth, are all in uproar, +And danger serves among then! + +KING HENRY VIII: +Taxation! +Wherein? and what taxation? My lord cardinal, +You that are blamed for it alike with us, +Know you of this taxation? + +CARDINAL WOLSEY: +Please you, sir, +I know but of a single part, in aught +Pertains to the state; and front but in that file +Where others tell steps with me. + +QUEEN KATHARINE: +No, my lord, +You know no more than others; but you frame +Things that are known alike; which are not wholesome +To those which would not know them, and yet must +Perforce be their acquaintance. These exactions, +Whereof my sovereign would have note, they are +Most pestilent to the bearing; and, to bear 'em, +The back is sacrifice to the load. They say +They are devised by you; or else you suffer +Too hard an exclamation. + +KING HENRY VIII: +Still exaction! +The nature of it? in what kind, let's know, +Is this exaction? + +QUEEN KATHARINE: +I am much too venturous +In tempting of your patience; but am bolden'd +Under your promised pardon. The subjects' grief +Comes through commissions, which compel from each +The sixth part of his substance, to be levied +Without delay; and the pretence for this +Is named, your wars in France: this makes bold mouths: +Tongues spit their duties out, and cold hearts freeze +Allegiance in them; their curses now +Live where their prayers did: and it's come to pass, +This tractable obedience is a slave +To each incensed will. I would your highness +Would give it quick consideration, for +There is no primer business. + +KING HENRY VIII: +By my life, +This is against our pleasure. + +CARDINAL WOLSEY: +And for me, +I have no further gone in this than by +A single voice; and that not pass'd me but +By learned approbation of the judges. If I am +Traduced by ignorant tongues, which neither know +My faculties nor person, yet will be +The chronicles of my doing, let me say +'Tis but the fate of place, and the rough brake +That virtue must go through. We must not stint +Our necessary actions, in the fear +To cope malicious censurers; which ever, +As ravenous fishes, do a vessel follow +That is new-trimm'd, but benefit no further +Than vainly longing. What we oft do best, +By sick interpreters, once weak ones, is +Not ours, or not allow'd; what worst, as oft, +Hitting a grosser quality, is cried up +For our best act. If we shall stand still, +In fear our motion will be mock'd or carp'd at, +We should take root here where we sit, or sit +State-statues only. + +KING HENRY VIII: +Things done well, +And with a care, exempt themselves from fear; +Things done without example, in their issue +Are to be fear'd. Have you a precedent +Of this commission? I believe, not any. +We must not rend our subjects from our laws, +And stick them in our will. Sixth part of each? +A trembling contribution! Why, we take +From every tree lop, bark, and part o' the timber; +And, though we leave it with a root, thus hack'd, +The air will drink the sap. To every county +Where this is question'd send our letters, with +Free pardon to each man that has denied +The force of this commission: pray, look to't; +I put it to your care. + +CARDINAL WOLSEY: +A word with you. +Let there be letters writ to every shire, +Of the king's grace and pardon. The grieved commons +Hardly conceive of me; let it be noised +That through our intercession this revokement +And pardon comes: I shall anon advise you +Further in the proceeding. + +QUEEN KATHARINE: +I am sorry that the Duke of Buckingham +Is run in your displeasure. + +KING HENRY VIII: +It grieves many: +The gentleman is learn'd, and a most rare speaker; +To nature none more bound; his training such, +That he may furnish and instruct great teachers, +And never seek for aid out of himself. Yet see, +When these so noble benefits shall prove +Not well disposed, the mind growing once corrupt, +They turn to vicious forms, ten times more ugly +Than ever they were fair. This man so complete, +Who was enroll'd 'mongst wonders, and when we, +Almost with ravish'd listening, could not find +His hour of speech a minute; he, my lady, +Hath into monstrous habits put the graces +That once were his, and is become as black +As if besmear'd in hell. Sit by us; you shall hear-- +This was his gentleman in trust--of him +Things to strike honour sad. Bid him recount +The fore-recited practises; whereof +We cannot feel too little, hear too much. + +CARDINAL WOLSEY: +Stand forth, and with bold spirit relate what you, +Most like a careful subject, have collected +Out of the Duke of Buckingham. + +KING HENRY VIII: +Speak freely. + +Surveyor: +First, it was usual with him, every day +It would infect his speech, that if the king +Should without issue die, he'll carry it so +To make the sceptre his: these very words +I've heard him utter to his son-in-law, +Lord Abergavenny; to whom by oath he menaced +Revenge upon the cardinal. + +CARDINAL WOLSEY: +Please your highness, note +This dangerous conception in this point. +Not friended by by his wish, to your high person +His will is most malignant; and it stretches +Beyond you, to your friends. + +QUEEN KATHARINE: +My learn'd lord cardinal, +Deliver all with charity. + +KING HENRY VIII: +Speak on: +How grounded he his title to the crown, +Upon our fail? to this point hast thou heard him +At any time speak aught? + +Surveyor: +He was brought to this +By a vain prophecy of Nicholas Hopkins. + +KING HENRY VIII: +What was that Hopkins? + +Surveyor: +Sir, a Chartreux friar, +His confessor, who fed him every minute +With words of sovereignty. + +KING HENRY VIII: +How know'st thou this? + +Surveyor: +Not long before your highness sped to France, +The duke being at the Rose, within the parish +Saint Lawrence Poultney, did of me demand +What was the speech among the Londoners +Concerning the French journey: I replied, +Men fear'd the French would prove perfidious, +To the king's danger. Presently the duke +Said, 'twas the fear, indeed; and that he doubted +'Twould prove the verity of certain words +Spoke by a holy monk; 'that oft,' says he, +'Hath sent to me, wishing me to permit +John de la Car, my chaplain, a choice hour +To hear from him a matter of some moment: +Whom after under the confession's seal +He solemnly had sworn, that what he spoke +My chaplain to no creature living, but +To me, should utter, with demure confidence +This pausingly ensued: neither the king nor's heirs, +Tell you the duke, shall prosper: bid him strive +To gain the love o' the commonalty: the duke +Shall govern England.' + +QUEEN KATHARINE: +If I know you well, +You were the duke's surveyor, and lost your office +On the complaint o' the tenants: take good heed +You charge not in your spleen a noble person +And spoil your nobler soul: I say, take heed; +Yes, heartily beseech you. + +KING HENRY VIII: +Let him on. +Go forward. + +Surveyor: +On my soul, I'll speak but truth. +I told my lord the duke, by the devil's illusions +The monk might be deceived; and that 'twas dangerous for him +To ruminate on this so far, until +It forged him some design, which, being believed, +It was much like to do: he answer'd, 'Tush, +It can do me no damage;' adding further, +That, had the king in his last sickness fail'd, +The cardinal's and Sir Thomas Lovell's heads +Should have gone off. + +KING HENRY VIII: +Ha! what, so rank? Ah ha! +There's mischief in this man: canst thou say further? + +Surveyor: +I can, my liege. + +KING HENRY VIII: +Proceed. + +Surveyor: +Being at Greenwich, +After your highness had reproved the duke +About Sir William Blomer,-- + +KING HENRY VIII: +I remember +Of such a time: being my sworn servant, +The duke retain'd him his. But on; what hence? + +Surveyor: +'If,' quoth he, 'I for this had been committed, +As, to the Tower, I thought, I would have play'd +The part my father meant to act upon +The usurper Richard; who, being at Salisbury, +Made suit to come in's presence; which if granted, +As he made semblance of his duty, would +Have put his knife to him.' + +KING HENRY VIII: +A giant traitor! + +CARDINAL WOLSEY: +Now, madam, may his highness live in freedom, +and this man out of prison? + +QUEEN KATHARINE: +God mend all! + +KING HENRY VIII: +There's something more would out of thee; what say'st? + +Surveyor: +After 'the duke his father,' with 'the knife,' +He stretch'd him, and, with one hand on his dagger, +Another spread on's breast, mounting his eyes +He did discharge a horrible oath; whose tenor +Was,--were he evil used, he would outgo +His father by as much as a performance +Does an irresolute purpose. + +KING HENRY VIII: +There's his period, +To sheathe his knife in us. He is attach'd; +Call him to present trial: if he may +Find mercy in the law, 'tis his: if none, +Let him not seek 't of us: by day and night, +He's traitor to the height. + +Chamberlain: +Is't possible the spells of France should juggle +Men into such strange mysteries? + +SANDS: +New customs, +Though they be never so ridiculous, +Nay, let 'em be unmanly, yet are follow'd. + +Chamberlain: +As far as I see, all the good our English +Have got by the late voyage is but merely +A fit or two o' the face; but they are shrewd ones; +For when they hold 'em, you would swear directly +Their very noses had been counsellors +To Pepin or Clotharius, they keep state so. + +SANDS: +They have all new legs, and lame ones: one would take it, +That never saw 'em pace before, the spavin +Or springhalt reign'd among 'em. + +Chamberlain: +Death! my lord, +Their clothes are after such a pagan cut too, +That, sure, they've worn out Christendom. +How now! +What news, Sir Thomas Lovell? + +LOVELL: +Faith, my lord, +I hear of none, but the new proclamation +That's clapp'd upon the court-gate. + +Chamberlain: +What is't for? + +LOVELL: +The reformation of our travell'd gallants, +That fill the court with quarrels, talk, and tailors. + +Chamberlain: +I'm glad 'tis there: now I would pray our monsieurs +To think an English courtier may be wise, +And never see the Louvre. + +LOVELL: +They must either, +For so run the conditions, leave those remnants +Of fool and feather that they got in France, +With all their honourable point of ignorance +Pertaining thereunto, as fights and fireworks, +Abusing better men than they can be, +Out of a foreign wisdom, renouncing clean +The faith they have in tennis, and tall stockings, +Short blister'd breeches, and those types of travel, +And understand again like honest men; +Or pack to their old playfellows: there, I take it, +They may, 'cum privilegio,' wear away +The lag end of their lewdness and be laugh'd at. + +SANDS: +'Tis time to give 'em physic, their diseases +Are grown so catching. + +Chamberlain: +What a loss our ladies +Will have of these trim vanities! + +LOVELL: +Ay, marry, +There will be woe indeed, lords: the sly whoresons +Have got a speeding trick to lay down ladies; +A French song and a fiddle has no fellow. + +SANDS: +The devil fiddle 'em! I am glad they are going, +For, sure, there's no converting of 'em: now +An honest country lord, as I am, beaten +A long time out of play, may bring his plainsong +And have an hour of hearing; and, by'r lady, +Held current music too. + +Chamberlain: +Well said, Lord Sands; +Your colt's tooth is not cast yet. + +SANDS: +No, my lord; +Nor shall not, while I have a stump. + +Chamberlain: +Sir Thomas, +Whither were you a-going? + +LOVELL: +To the cardinal's: +Your lordship is a guest too. + +Chamberlain: +O, 'tis true: +This night he makes a supper, and a great one, +To many lords and ladies; there will be +The beauty of this kingdom, I'll assure you. + +LOVELL: +That churchman bears a bounteous mind indeed, +A hand as fruitful as the land that feeds us; +His dews fall every where. + +Chamberlain: +No doubt he's noble; +He had a black mouth that said other of him. + +SANDS: +He may, my lord; has wherewithal: in him +Sparing would show a worse sin than ill doctrine: +Men of his way should be most liberal; +They are set here for examples. + +Chamberlain: +True, they are so: +But few now give so great ones. My barge stays; +Your lordship shall along. Come, good Sir Thomas, +We shall be late else; which I would not be, +For I was spoke to, with Sir Henry Guildford +This night to be comptrollers. + +SANDS: +I am your lordship's. + +GUILDFORD: +Ladies, a general welcome from his grace +Salutes ye all; this night he dedicates +To fair content and you: none here, he hopes, +In all this noble bevy, has brought with her +One care abroad; he would have all as merry +As, first, good company, good wine, good welcome, +Can make good people. O, my lord, you're tardy: +The very thought of this fair company +Clapp'd wings to me. + +Chamberlain: +You are young, Sir Harry Guildford. + +SANDS: +Sir Thomas Lovell, had the cardinal +But half my lay thoughts in him, some of these +Should find a running banquet ere they rested, +I think would better please 'em: by my life, +They are a sweet society of fair ones. + +LOVELL: +O, that your lordship were but now confessor +To one or two of these! + +SANDS: +I would I were; +They should find easy penance. + +LOVELL: +Faith, how easy? + +SANDS: +As easy as a down-bed would afford it. + +Chamberlain: +Sweet ladies, will it please you sit? Sir Harry, +Place you that side; I'll take the charge of this: +His grace is entering. Nay, you must not freeze; +Two women placed together makes cold weather: +My Lord Sands, you are one will keep 'em waking; +Pray, sit between these ladies. + +SANDS: +By my faith, +And thank your lordship. By your leave, sweet ladies: +If I chance to talk a little wild, forgive me; +I had it from my father. + +ANNE: +Was he mad, sir? + +SANDS: +O, very mad, exceeding mad, in love too: +But he would bite none; just as I do now, +He would kiss you twenty with a breath. + +Chamberlain: +Well said, my lord. +So, now you're fairly seated. Gentlemen, +The penance lies on you, if these fair ladies +Pass away frowning. + +SANDS: +For my little cure, +Let me alone. + +CARDINAL WOLSEY: +You're welcome, my fair guests: that noble lady, +Or gentleman, that is not freely merry, +Is not my friend: this, to confirm my welcome; +And to you all, good health. + +SANDS: +Your grace is noble: +Let me have such a bowl may hold my thanks, +And save me so much talking. + +CARDINAL WOLSEY: +My Lord Sands, +I am beholding to you: cheer your neighbours. +Ladies, you are not merry: gentlemen, +Whose fault is this? + +SANDS: +The red wine first must rise +In their fair cheeks, my lord; then we shall have 'em +Talk us to silence. + +ANNE: +You are a merry gamester, +My Lord Sands. + +SANDS: +Yes, if I make my play. +Here's to your ladyship: and pledge it, madam, +For 'tis to such a thing,-- + +ANNE: +You cannot show me. + +SANDS: +I told your grace they would talk anon. + +CARDINAL WOLSEY: +What's that? + +Chamberlain: +Look out there, some of ye. + +CARDINAL WOLSEY: +What warlike voice, +And to what end is this? Nay, ladies, fear not; +By all the laws of war you're privileged. + +Chamberlain: +How now! what is't? + +Servant: +A noble troop of strangers; +For so they seem: they've left their barge and landed; +And hither make, as great ambassadors +From foreign princes. + +CARDINAL WOLSEY: +Good lord chamberlain, +Go, give 'em welcome; you can speak the French tongue; +And, pray, receive 'em nobly, and conduct 'em +Into our presence, where this heaven of beauty +Shall shine at full upon them. Some attend him. +You have now a broken banquet; but we'll mend it. +A good digestion to you all: and once more +I shower a welcome on ye; welcome all. +A noble company! what are their pleasures? + +Chamberlain: +Because they speak no English, thus they pray'd +To tell your grace, that, having heard by fame +Of this so noble and so fair assembly +This night to meet here, they could do no less +Out of the great respect they bear to beauty, +But leave their flocks; and, under your fair conduct, +Crave leave to view these ladies and entreat +An hour of revels with 'em. + +CARDINAL WOLSEY: +Say, lord chamberlain, +They have done my poor house grace; for which I pay 'em +A thousand thanks, and pray 'em take their pleasures. + +KING HENRY VIII: +The fairest hand I ever touch'd! O beauty, +Till now I never knew thee! + +CARDINAL WOLSEY: +My lord! + +Chamberlain: +Your grace? + +CARDINAL WOLSEY: +Pray, tell 'em thus much from me: +There should be one amongst 'em, by his person, +More worthy this place than myself; to whom, +If I but knew him, with my love and duty +I would surrender it. + +Chamberlain: +I will, my lord. + +CARDINAL WOLSEY: +What say they? + +Chamberlain: +Such a one, they all confess, +There is indeed; which they would have your grace +Find out, and he will take it. + +CARDINAL WOLSEY: +Let me see, then. +By all your good leaves, gentlemen; here I'll make +My royal choice. + +KING HENRY VIII: +Ye have found him, cardinal: +You hold a fair assembly; you do well, lord: +You are a churchman, or, I'll tell you, cardinal, +I should judge now unhappily. + +CARDINAL WOLSEY: +I am glad +Your grace is grown so pleasant. + +KING HENRY VIII: +My lord chamberlain, +Prithee, come hither: what fair lady's that? + +Chamberlain: +An't please your grace, Sir Thomas Bullen's daughter-- +The Viscount Rochford,--one of her highness' women. + +KING HENRY VIII: +By heaven, she is a dainty one. Sweetheart, +I were unmannerly, to take you out, +And not to kiss you. A health, gentlemen! +Let it go round. + +CARDINAL WOLSEY: +Sir Thomas Lovell, is the banquet ready +I' the privy chamber? + +LOVELL: +Yes, my lord. + +CARDINAL WOLSEY: +Your grace, +I fear, with dancing is a little heated. + +KING HENRY VIII: +I fear, too much. + +CARDINAL WOLSEY: +There's fresher air, my lord, +In the next chamber. + +KING HENRY VIII: +Lead in your ladies, every one: sweet partner, +I must not yet forsake you: let's be merry: +Good my lord cardinal, I have half a dozen healths +To drink to these fair ladies, and a measure +To lead 'em once again; and then let's dream +Who's best in favour. Let the music knock it. + +First Gentleman: +Whither away so fast? + +Second Gentleman: +O, God save ye! +Even to the hall, to hear what shall become +Of the great Duke of Buckingham. + +First Gentleman: +I'll save you +That labour, sir. All's now done, but the ceremony +Of bringing back the prisoner. + +Second Gentleman: +Were you there? + +First Gentleman: +Yes, indeed, was I. + +Second Gentleman: +Pray, speak what has happen'd. + +First Gentleman: +You may guess quickly what. + +Second Gentleman: +Is he found guilty? + +First Gentleman: +Yes, truly is he, and condemn'd upon't. + +Second Gentleman: +I am sorry for't. + +First Gentleman: +So are a number more. + +Second Gentleman: +But, pray, how pass'd it? + +First Gentleman: +I'll tell you in a little. The great duke +Came to the bar; where to his accusations +He pleaded still not guilty and alleged +Many sharp reasons to defeat the law. +The king's attorney on the contrary +Urged on the examinations, proofs, confessions +Of divers witnesses; which the duke desired +To have brought viva voce to his face: +At which appear'd against him his surveyor; +Sir Gilbert Peck his chancellor; and John Car, +Confessor to him; with that devil-monk, +Hopkins, that made this mischief. + +Second Gentleman: +That was he +That fed him with his prophecies? + +First Gentleman: +The same. +All these accused him strongly; which he fain +Would have flung from him, but, indeed, he could not: +And so his peers, upon this evidence, +Have found him guilty of high treason. Much +He spoke, and learnedly, for life; but all +Was either pitied in him or forgotten. + +Second Gentleman: +After all this, how did he bear himself? + +First Gentleman: +When he was brought again to the bar, to hear +His knell rung out, his judgment, he was stirr'd +With such an agony, he sweat extremely, +And something spoke in choler, ill, and hasty: +But he fell to himself again, and sweetly +In all the rest show'd a most noble patience. + +Second Gentleman: +I do not think he fears death. + +First Gentleman: +Sure, he does not: +He never was so womanish; the cause +He may a little grieve at. + +Second Gentleman: +Certainly +The cardinal is the end of this. + +First Gentleman: +'Tis likely, +By all conjectures: first, Kildare's attainder, +Then deputy of Ireland; who removed, +Earl Surrey was sent thither, and in haste too, +Lest he should help his father. + +Second Gentleman: +That trick of state +Was a deep envious one. + +First Gentleman: +At his return +No doubt he will requite it. This is noted, +And generally, whoever the king favours, +The cardinal instantly will find employment, +And far enough from court too. + +Second Gentleman: +All the commons +Hate him perniciously, and, o' my conscience, +Wish him ten fathom deep: this duke as much +They love and dote on; call him bounteous Buckingham, +The mirror of all courtesy;-- + +First Gentleman: +Stay there, sir, +And see the noble ruin'd man you speak of. + +Second Gentleman: +Let's stand close, and behold him. + +BUCKINGHAM: +All good people, +You that thus far have come to pity me, +Hear what I say, and then go home and lose me. +I have this day received a traitor's judgment, +And by that name must die: yet, heaven bear witness, +And if I have a conscience, let it sink me, +Even as the axe falls, if I be not faithful! +The law I bear no malice for my death; +'T has done, upon the premises, but justice: +But those that sought it I could wish more Christians: +Be what they will, I heartily forgive 'em: +Yet let 'em look they glory not in mischief, +Nor build their evils on the graves of great men; +For then my guiltless blood must cry against 'em. +For further life in this world I ne'er hope, +Nor will I sue, although the king have mercies +More than I dare make faults. You few that loved me, +And dare be bold to weep for Buckingham, +His noble friends and fellows, whom to leave +Is only bitter to him, only dying, +Go with me, like good angels, to my end; +And, as the long divorce of steel falls on me, +Make of your prayers one sweet sacrifice, +And lift my soul to heaven. Lead on, o' God's name. + +LOVELL: +I do beseech your grace, for charity, +If ever any malice in your heart +Were hid against me, now to forgive me frankly. + +BUCKINGHAM: +Sir Thomas Lovell, I as free forgive you +As I would be forgiven: I forgive all; +There cannot be those numberless offences +'Gainst me, that I cannot take peace with: +no black envy +Shall mark my grave. Commend me to his grace; +And if he speak of Buckingham, pray, tell him +You met him half in heaven: my vows and prayers +Yet are the king's; and, till my soul forsake, +Shall cry for blessings on him: may he live +Longer than I have time to tell his years! +Ever beloved and loving may his rule be! +And when old time shall lead him to his end, +Goodness and he fill up one monument! + +LOVELL: +To the water side I must conduct your grace; +Then give my charge up to Sir Nicholas Vaux, +Who undertakes you to your end. + +VAUX: +Prepare there, +The duke is coming: see the barge be ready; +And fit it with such furniture as suits +The greatness of his person. + +BUCKINGHAM: +Nay, Sir Nicholas, +Let it alone; my state now will but mock me. +When I came hither, I was lord high constable +And Duke of Buckingham; now, poor Edward Bohun: +Yet I am richer than my base accusers, +That never knew what truth meant: I now seal it; +And with that blood will make 'em one day groan for't. +My noble father, Henry of Buckingham, +Who first raised head against usurping Richard, +Flying for succor to his servant Banister, +Being distress'd, was by that wretch betray'd, +And without trial fell; God's peace be with him! +Henry the Seventh succeeding, truly pitying +My father's loss, like a most royal prince, +Restored me to my honours, and, out of ruins, +Made my name once more noble. Now his son, +Henry the Eighth, life, honour, name and all +That made me happy at one stroke has taken +For ever from the world. I had my trial, +And, must needs say, a noble one; which makes me, +A little happier than my wretched father: +Yet thus far we are one in fortunes: both +Fell by our servants, by those men we loved most; +A most unnatural and faithless service! +Heaven has an end in all: yet, you that hear me, +This from a dying man receive as certain: +Where you are liberal of your loves and counsels +Be sure you be not loose; for those you make friends +And give your hearts to, when they once perceive +The least rub in your fortunes, fall away +Like water from ye, never found again +But where they mean to sink ye. All good people, +Pray for me! I must now forsake ye: the last hour +Of my long weary life is come upon me. Farewell: +And when you would say something that is sad, +Speak how I fell. I have done; and God forgive me! + +First Gentleman: +O, this is full of pity! Sir, it calls, +I fear, too many curses on their beads +That were the authors. + +Second Gentleman: +If the duke be guiltless, +'Tis full of woe: yet I can give you inkling +Of an ensuing evil, if it fall, +Greater than this. + +First Gentleman: +Good angels keep it from us! +What may it be? You do not doubt my faith, sir? + +Second Gentleman: +This secret is so weighty, 'twill require +A strong faith to conceal it. + +First Gentleman: +Let me have it; +I do not talk much. + +Second Gentleman: +I am confident, +You shall, sir: did you not of late days hear +A buzzing of a separation +Between the king and Katharine? + +First Gentleman: +Yes, but it held not: +For when the king once heard it, out of anger +He sent command to the lord mayor straight +To stop the rumor, and allay those tongues +That durst disperse it. + +Second Gentleman: +But that slander, sir, +Is found a truth now: for it grows again +Fresher than e'er it was; and held for certain +The king will venture at it. Either the cardinal, +Or some about him near, have, out of malice +To the good queen, possess'd him with a scruple +That will undo her: to confirm this too, +Cardinal Campeius is arrived, and lately; +As all think, for this business. + +First Gentleman: +'Tis the cardinal; +And merely to revenge him on the emperor +For not bestowing on him, at his asking, +The archbishopric of Toledo, this is purposed. + +Second Gentleman: +I think you have hit the mark: but is't not cruel +That she should feel the smart of this? The cardinal +Will have his will, and she must fall. + +First Gentleman: +'Tis woful. +We are too open here to argue this; +Let's think in private more. + +Chamberlain: +'My lord, the horses your lordship sent for, with +all the care I had, I saw well chosen, ridden, and +furnished. They were young and handsome, and of the +best breed in the north. When they were ready to +set out for London, a man of my lord cardinal's, by +commission and main power, took 'em from me; with +this reason: His master would be served before a +subject, if not before the king; which stopped our +mouths, sir.' +I fear he will indeed: well, let him have them: +He will have all, I think. + +NORFOLK: +Well met, my lord chamberlain. + +Chamberlain: +Good day to both your graces. + +SUFFOLK: +How is the king employ'd? + +Chamberlain: +I left him private, +Full of sad thoughts and troubles. + +NORFOLK: +What's the cause? + +Chamberlain: +It seems the marriage with his brother's wife +Has crept too near his conscience. + +SUFFOLK: +No, his conscience +Has crept too near another lady. + +NORFOLK: +'Tis so: +This is the cardinal's doing, the king-cardinal: +That blind priest, like the eldest son of fortune, +Turns what he list. The king will know him one day. + +SUFFOLK: +Pray God he do! he'll never know himself else. + +NORFOLK: +How holily he works in all his business! +And with what zeal! for, now he has crack'd the league +Between us and the emperor, the queen's great nephew, +He dives into the king's soul, and there scatters +Dangers, doubts, wringing of the conscience, +Fears, and despairs; and all these for his marriage: +And out of all these to restore the king, +He counsels a divorce; a loss of her +That, like a jewel, has hung twenty years +About his neck, yet never lost her lustre; +Of her that loves him with that excellence +That angels love good men with; even of her +That, when the greatest stroke of fortune falls, +Will bless the king: and is not this course pious? + +Chamberlain: +Heaven keep me from such counsel! 'Tis most true +These news are every where; every tongue speaks 'em, +And every true heart weeps for't: all that dare +Look into these affairs see this main end, +The French king's sister. Heaven will one day open +The king's eyes, that so long have slept upon +This bold bad man. + +SUFFOLK: +And free us from his slavery. + +NORFOLK: +We had need pray, +And heartily, for our deliverance; +Or this imperious man will work us all +From princes into pages: all men's honours +Lie like one lump before him, to be fashion'd +Into what pitch he please. + +SUFFOLK: +For me, my lords, +I love him not, nor fear him; there's my creed: +As I am made without him, so I'll stand, +If the king please; his curses and his blessings +Touch me alike, they're breath I not believe in. +I knew him, and I know him; so I leave him +To him that made him proud, the pope. + +NORFOLK: +Let's in; +And with some other business put the king +From these sad thoughts, that work too much upon him: +My lord, you'll bear us company? + +Chamberlain: +Excuse me; +The king has sent me otherwhere: besides, +You'll find a most unfit time to disturb him: +Health to your lordships. + +NORFOLK: +Thanks, my good lord chamberlain. + +SUFFOLK: +How sad he looks! sure, he is much afflicted. + +KING HENRY VIII: +Who's there, ha? + +NORFOLK: +Pray God he be not angry. + +KING HENRY VIII: +Who's there, I say? How dare you thrust yourselves +Into my private meditations? +Who am I? ha? + +NORFOLK: +A gracious king that pardons all offences +Malice ne'er meant: our breach of duty this way +Is business of estate; in which we come +To know your royal pleasure. + +KING HENRY VIII: +Ye are too bold: +Go to; I'll make ye know your times of business: +Is this an hour for temporal affairs, ha? +Who's there? my good lord cardinal? O my Wolsey, +The quiet of my wounded conscience; +Thou art a cure fit for a king. +You're welcome, +Most learned reverend sir, into our kingdom: +Use us and it. +My good lord, have great care +I be not found a talker. + +CARDINAL WOLSEY: +Sir, you cannot. +I would your grace would give us but an hour +Of private conference. + +KING HENRY VIII: + +NORFOLK: + +SUFFOLK: + +NORFOLK: + +SUFFOLK: + +CARDINAL WOLSEY: +Your grace has given a precedent of wisdom +Above all princes, in committing freely +Your scruple to the voice of Christendom: +Who can be angry now? what envy reach you? +The Spaniard, tied blood and favour to her, +Must now confess, if they have any goodness, +The trial just and noble. All the clerks, +I mean the learned ones, in Christian kingdoms +Have their free voices: Rome, the nurse of judgment, +Invited by your noble self, hath sent +One general tongue unto us, this good man, +This just and learned priest, Cardinal Campeius; +Whom once more I present unto your highness. + +KING HENRY VIII: +And once more in mine arms I bid him welcome, +And thank the holy conclave for their loves: +They have sent me such a man I would have wish'd for. + +CARDINAL CAMPEIUS: +Your grace must needs deserve all strangers' loves, +You are so noble. To your highness' hand +I tender my commission; by whose virtue, +The court of Rome commanding, you, my lord +Cardinal of York, are join'd with me their servant +In the unpartial judging of this business. + +KING HENRY VIII: +Two equal men. The queen shall be acquainted +Forthwith for what you come. Where's Gardiner? + +CARDINAL WOLSEY: +I know your majesty has always loved her +So dear in heart, not to deny her that +A woman of less place might ask by law: +Scholars allow'd freely to argue for her. + +KING HENRY VIII: +Ay, and the best she shall have; and my favour +To him that does best: God forbid else. Cardinal, +Prithee, call Gardiner to me, my new secretary: +I find him a fit fellow. + +CARDINAL WOLSEY: + +GARDINER: + +KING HENRY VIII: +Come hither, Gardiner. + +CARDINAL CAMPEIUS: +My Lord of York, was not one Doctor Pace +In this man's place before him? + +CARDINAL WOLSEY: +Yes, he was. + +CARDINAL CAMPEIUS: +Was he not held a learned man? + +CARDINAL WOLSEY: +Yes, surely. + +CARDINAL CAMPEIUS: +Believe me, there's an ill opinion spread then +Even of yourself, lord cardinal. + +CARDINAL WOLSEY: +How! of me? + +CARDINAL CAMPEIUS: +They will not stick to say you envied him, +And fearing he would rise, he was so virtuous, +Kept him a foreign man still; which so grieved him, +That he ran mad and died. + +CARDINAL WOLSEY: +Heaven's peace be with him! +That's Christian care enough: for living murmurers +There's places of rebuke. He was a fool; +For he would needs be virtuous: that good fellow, +If I command him, follows my appointment: +I will have none so near else. Learn this, brother, +We live not to be grip'd by meaner persons. + +KING HENRY VIII: +Deliver this with modesty to the queen. +The most convenient place that I can think of +For such receipt of learning is Black-Friars; +There ye shall meet about this weighty business. +My Wolsey, see it furnish'd. O, my lord, +Would it not grieve an able man to leave +So sweet a bedfellow? But, conscience, conscience! +O, 'tis a tender place; and I must leave her. + +ANNE: +Not for that neither: here's the pang that pinches: +His highness having lived so long with her, and she +So good a lady that no tongue could ever +Pronounce dishonour of her; by my life, +She never knew harm-doing: O, now, after +So many courses of the sun enthroned, +Still growing in a majesty and pomp, the which +To leave a thousand-fold more bitter than +'Tis sweet at first to acquire,--after this process, +To give her the avaunt! it is a pity +Would move a monster. + +Old Lady: +Hearts of most hard temper +Melt and lament for her. + +ANNE: +O, God's will! much better +She ne'er had known pomp: though't be temporal, +Yet, if that quarrel, fortune, do divorce +It from the bearer, 'tis a sufferance panging +As soul and body's severing. + +Old Lady: +Alas, poor lady! +She's a stranger now again. + +ANNE: +So much the more +Must pity drop upon her. Verily, +I swear, 'tis better to be lowly born, +And range with humble livers in content, +Than to be perk'd up in a glistering grief, +And wear a golden sorrow. + +Old Lady: +Our content +Is our best having. + +ANNE: +By my troth and maidenhead, +I would not be a queen. + +Old Lady: +Beshrew me, I would, +And venture maidenhead for't; and so would you, +For all this spice of your hypocrisy: +You, that have so fair parts of woman on you, +Have too a woman's heart; which ever yet +Affected eminence, wealth, sovereignty; +Which, to say sooth, are blessings; and which gifts, +Saving your mincing, the capacity +Of your soft cheveril conscience would receive, +If you might please to stretch it. + +ANNE: +Nay, good troth. + +Old Lady: +Yes, troth, and troth; you would not be a queen? + +ANNE: +No, not for all the riches under heaven. + +Old Lady:: +'Tis strange: a three-pence bow'd would hire me, +Old as I am, to queen it: but, I pray you, +What think you of a duchess? have you limbs +To bear that load of title? + +ANNE: +No, in truth. + +Old Lady: +Then you are weakly made: pluck off a little; +I would not be a young count in your way, +For more than blushing comes to: if your back +Cannot vouchsafe this burthen,'tis too weak +Ever to get a boy. + +ANNE: +How you do talk! +I swear again, I would not be a queen +For all the world. + +Old Lady: +In faith, for little England +You'ld venture an emballing: I myself +Would for Carnarvonshire, although there long'd +No more to the crown but that. Lo, who comes here? + +Chamberlain: +Good morrow, ladies. What were't worth to know +The secret of your conference? + +ANNE: +My good lord, +Not your demand; it values not your asking: +Our mistress' sorrows we were pitying. + +Chamberlain: +It was a gentle business, and becoming +The action of good women: there is hope +All will be well. + +ANNE: +Now, I pray God, amen! + +Chamberlain: +You bear a gentle mind, and heavenly blessings +Follow such creatures. That you may, fair lady, +Perceive I speak sincerely, and high note's +Ta'en of your many virtues, the king's majesty +Commends his good opinion of you, and +Does purpose honour to you no less flowing +Than Marchioness of Pembroke: to which title +A thousand pound a year, annual support, +Out of his grace he adds. + +ANNE: +I do not know +What kind of my obedience I should tender; +More than my all is nothing: nor my prayers +Are not words duly hallow'd, nor my wishes +More worth than empty vanities; yet prayers and wishes +Are all I can return. Beseech your lordship, +Vouchsafe to speak my thanks and my obedience, +As from a blushing handmaid, to his highness; +Whose health and royalty I pray for. + +Chamberlain: +Lady, +I shall not fail to approve the fair conceit +The king hath of you. +I have perused her well; +Beauty and honour in her are so mingled +That they have caught the king: and who knows yet +But from this lady may proceed a gem +To lighten all this isle? I'll to the king, +And say I spoke with you. + +ANNE: +My honour'd lord. + +Old Lady: +Why, this it is; see, see! +I have been begging sixteen years in court, +Am yet a courtier beggarly, nor could +Come pat betwixt too early and too late +For any suit of pounds; and you, O fate! +A very fresh-fish here--fie, fie, fie upon +This compell'd fortune!--have your mouth fill'd up +Before you open it. + +ANNE: +This is strange to me. + +Old Lady: +How tastes it? is it bitter? forty pence, no. +There was a lady once, 'tis an old story, +That would not be a queen, that would she not, +For all the mud in Egypt: have you heard it? + +ANNE: +Come, you are pleasant. + +Old Lady: +With your theme, I could +O'ermount the lark. The Marchioness of Pembroke! +A thousand pounds a year for pure respect! +No other obligation! By my life, +That promises moe thousands: honour's train +Is longer than his foreskirt. By this time +I know your back will bear a duchess: say, +Are you not stronger than you were? + +ANNE: +Good lady, +Make yourself mirth with your particular fancy, +And leave me out on't. Would I had no being, +If this salute my blood a jot: it faints me, +To think what follows. +The queen is comfortless, and we forgetful +In our long absence: pray, do not deliver +What here you've heard to her. + +Old Lady: +What do you think me? + +CARDINAL WOLSEY: +Whilst our commission from Rome is read, +Let silence be commanded. + +KING HENRY VIII: +What's the need? +It hath already publicly been read, +And on all sides the authority allow'd; +You may, then, spare that time. + +CARDINAL WOLSEY: +Be't so. Proceed. + +Scribe: +Say, Henry King of England, come into the court. + +Crier: +Henry King of England, &c. + +KING HENRY VIII: +Here. + +Scribe: +Say, Katharine Queen of England, come into the court. + +Crier: +Katharine Queen of England, &c. + +QUEEN KATHARINE: +Sir, I desire you do me right and justice; +And to bestow your pity on me: for +I am a most poor woman, and a stranger, +Born out of your dominions; having here +No judge indifferent, nor no more assurance +Of equal friendship and proceeding. Alas, sir, +In what have I offended you? what cause +Hath my behavior given to your displeasure, +That thus you should proceed to put me off, +And take your good grace from me? Heaven witness, +I have been to you a true and humble wife, +At all times to your will conformable; +Ever in fear to kindle your dislike, +Yea, subject to your countenance, glad or sorry +As I saw it inclined: when was the hour +I ever contradicted your desire, +Or made it not mine too? Or which of your friends +Have I not strove to love, although I knew +He were mine enemy? what friend of mine +That had to him derived your anger, did I +Continue in my liking? nay, gave notice +He was from thence discharged. Sir, call to mind +That I have been your wife, in this obedience, +Upward of twenty years, and have been blest +With many children by you: if, in the course +And process of this time, you can report, +And prove it too, against mine honour aught, +My bond to wedlock, or my love and duty, +Against your sacred person, in God's name, +Turn me away; and let the foul'st contempt +Shut door upon me, and so give me up +To the sharp'st kind of justice. Please you sir, +The king, your father, was reputed for +A prince most prudent, of an excellent +And unmatch'd wit and judgment: Ferdinand, +My father, king of Spain, was reckon'd one +The wisest prince that there had reign'd by many +A year before: it is not to be question'd +That they had gather'd a wise council to them +Of every realm, that did debate this business, +Who deem'd our marriage lawful: wherefore I humbly +Beseech you, sir, to spare me, till I may +Be by my friends in Spain advised; whose counsel +I will implore: if not, i' the name of God, +Your pleasure be fulfill'd! + +CARDINAL WOLSEY: +You have here, lady, +And of your choice, these reverend fathers; men +Of singular integrity and learning, +Yea, the elect o' the land, who are assembled +To plead your cause: it shall be therefore bootless +That longer you desire the court; as well +For your own quiet, as to rectify +What is unsettled in the king. + +CARDINAL CAMPEIUS: +His grace +Hath spoken well and justly: therefore, madam, +It's fit this royal session do proceed; +And that, without delay, their arguments +Be now produced and heard. + +QUEEN KATHARINE: +Lord cardinal, +To you I speak. + +CARDINAL WOLSEY: +Your pleasure, madam? + +QUEEN KATHARINE: +Sir, +I am about to weep; but, thinking that +We are a queen, or long have dream'd so, certain +The daughter of a king, my drops of tears +I'll turn to sparks of fire. + +CARDINAL WOLSEY: +Be patient yet. + +QUEEN KATHARINE: +I will, when you are humble; nay, before, +Or God will punish me. I do believe, +Induced by potent circumstances, that +You are mine enemy, and make my challenge +You shall not be my judge: for it is you +Have blown this coal betwixt my lord and me; +Which God's dew quench! Therefore I say again, +I utterly abhor, yea, from my soul +Refuse you for my judge; whom, yet once more, +I hold my most malicious foe, and think not +At all a friend to truth. + +CARDINAL WOLSEY: +I do profess +You speak not like yourself; who ever yet +Have stood to charity, and display'd the effects +Of disposition gentle, and of wisdom +O'ertopping woman's power. Madam, you do me wrong: +I have no spleen against you; nor injustice +For you or any: how far I have proceeded, +Or how far further shall, is warranted +By a commission from the consistory, +Yea, the whole consistory of Rome. You charge me +That I have blown this coal: I do deny it: +The king is present: if it be known to him +That I gainsay my deed, how may he wound, +And worthily, my falsehood! yea, as much +As you have done my truth. If he know +That I am free of your report, he knows +I am not of your wrong. Therefore in him +It lies to cure me: and the cure is, to +Remove these thoughts from you: the which before +His highness shall speak in, I do beseech +You, gracious madam, to unthink your speaking +And to say so no more. + +QUEEN KATHARINE: +My lord, my lord, +I am a simple woman, much too weak +To oppose your cunning. You're meek and +humble-mouth'd; +You sign your place and calling, in full seeming, +With meekness and humility; but your heart +Is cramm'd with arrogancy, spleen, and pride. +You have, by fortune and his highness' favours, +Gone slightly o'er low steps and now are mounted +Where powers are your retainers, and your words, +Domestics to you, serve your will as't please +Yourself pronounce their office. I must tell you, +You tender more your person's honour than +Your high profession spiritual: that again +I do refuse you for my judge; and here, +Before you all, appeal unto the pope, +To bring my whole cause 'fore his holiness, +And to be judged by him. + +CARDINAL CAMPEIUS: +The queen is obstinate, +Stubborn to justice, apt to accuse it, and +Disdainful to be tried by't: 'tis not well. +She's going away. + +KING HENRY VIII: +Call her again. + +Crier: +Katharine Queen of England, come into the court. + +GRIFFITH: +Madam, you are call'd back. + +QUEEN KATHARINE: +What need you note it? pray you, keep your way: +When you are call'd, return. Now, the Lord help, +They vex me past my patience! Pray you, pass on: +I will not tarry; no, nor ever more +Upon this business my appearance make +In any of their courts. + +KING HENRY VIII: +Go thy ways, Kate: +That man i' the world who shall report he has +A better wife, let him in nought be trusted, +For speaking false in that: thou art, alone, +If thy rare qualities, sweet gentleness, +Thy meekness saint-like, wife-like government, +Obeying in commanding, and thy parts +Sovereign and pious else, could speak thee out, +The queen of earthly queens: she's noble born; +And, like her true nobility, she has +Carried herself towards me. + +CARDINAL WOLSEY: +Most gracious sir, +In humblest manner I require your highness, +That it shall please you to declare, in hearing +Of all these ears,--for where I am robb'd and bound, +There must I be unloosed, although not there +At once and fully satisfied,--whether ever I +Did broach this business to your highness; or +Laid any scruple in your way, which might +Induce you to the question on't? or ever +Have to you, but with thanks to God for such +A royal lady, spake one the least word that might +Be to the prejudice of her present state, +Or touch of her good person? + +KING HENRY VIII: +My lord cardinal, +I do excuse you; yea, upon mine honour, +I free you from't. You are not to be taught +That you have many enemies, that know not +Why they are so, but, like to village-curs, +Bark when their fellows do: by some of these +The queen is put in anger. You're excused: +But will you be more justified? You ever +Have wish'd the sleeping of this business; never desired +It to be stirr'd; but oft have hinder'd, oft, +The passages made toward it: on my honour, +I speak my good lord cardinal to this point, +And thus far clear him. Now, what moved me to't, +I will be bold with time and your attention: +Then mark the inducement. Thus it came; give heed to't: +My conscience first received a tenderness, +Scruple, and prick, on certain speeches utter'd +By the Bishop of Bayonne, then French ambassador; +Who had been hither sent on the debating +A marriage 'twixt the Duke of Orleans and +Our daughter Mary: i' the progress of this business, +Ere a determinate resolution, he, +I mean the bishop, did require a respite; +Wherein he might the king his lord advertise +Whether our daughter were legitimate, +Respecting this our marriage with the dowager, +Sometimes our brother's wife. This respite shook +The bosom of my conscience, enter'd me, +Yea, with a splitting power, and made to tremble +The region of my breast; which forced such way, +That many mazed considerings did throng +And press'd in with this caution. First, methought +I stood not in the smile of heaven; who had +Commanded nature, that my lady's womb, +If it conceived a male child by me, should +Do no more offices of life to't than +The grave does to the dead; for her male issue +Or died where they were made, or shortly after +This world had air'd them: hence I took a thought, +This was a judgment on me; that my kingdom, +Well worthy the best heir o' the world, should not +Be gladded in't by me: then follows, that +I weigh'd the danger which my realms stood in +By this my issue's fail; and that gave to me +Many a groaning throe. Thus hulling in +The wild sea of my conscience, I did steer +Toward this remedy, whereupon we are +Now present here together: that's to say, +I meant to rectify my conscience,--which +I then did feel full sick, and yet not well,-- +By all the reverend fathers of the land +And doctors learn'd: first I began in private +With you, my Lord of Lincoln; you remember +How under my oppression I did reek, +When I first moved you. + +LINCOLN: +Very well, my liege. + +KING HENRY VIII: +I have spoke long: be pleased yourself to say +How far you satisfied me. + +LINCOLN: +So please your highness, +The question did at first so stagger me, +Bearing a state of mighty moment in't +And consequence of dread, that I committed +The daring'st counsel which I had to doubt; +And did entreat your highness to this course +Which you are running here. + +KING HENRY VIII: +I then moved you, +My Lord of Canterbury; and got your leave +To make this present summons: unsolicited +I left no reverend person in this court; +But by particular consent proceeded +Under your hands and seals: therefore, go on: +For no dislike i' the world against the person +Of the good queen, but the sharp thorny points +Of my alleged reasons, drive this forward: +Prove but our marriage lawful, by my life +And kingly dignity, we are contented +To wear our mortal state to come with her, +Katharine our queen, before the primest creature +That's paragon'd o' the world. + +CARDINAL CAMPEIUS: +So please your highness, +The queen being absent, 'tis a needful fitness +That we adjourn this court till further day: +Meanwhile must be an earnest motion +Made to the queen, to call back her appeal +She intends unto his holiness. + +KING HENRY VIII: + +QUEEN KATHARINE: +Take thy lute, wench: my soul grows sad with troubles; +Sing, and disperse 'em, if thou canst: leave working. +Orpheus with his lute made trees, +And the mountain tops that freeze, +Bow themselves when he did sing: +To his music plants and flowers +Ever sprung; as sun and showers +There had made a lasting spring. +Every thing that heard him play, +Even the billows of the sea, +Hung their heads, and then lay by. +In sweet music is such art, +Killing care and grief of heart +Fall asleep, or hearing, die. + +QUEEN KATHARINE: +How now! + +Gentleman: +An't please your grace, the two great cardinals +Wait in the presence. + +QUEEN KATHARINE: +Would they speak with me? + +Gentleman: +They will'd me say so, madam. + +QUEEN KATHARINE: +Pray their graces +To come near. +What can be their business +With me, a poor weak woman, fall'n from favour? +I do not like their coming. Now I think on't, +They should be good men; their affairs as righteous: +But all hoods make not monks. + +CARDINAL WOLSEY: +Peace to your highness! + +QUEEN KATHARINE: +Your graces find me here part of a housewife, +I would be all, against the worst may happen. +What are your pleasures with me, reverend lords? + +CARDINAL WOLSEY: +May it please you noble madam, to withdraw +Into your private chamber, we shall give you +The full cause of our coming. + +QUEEN KATHARINE: +Speak it here: +There's nothing I have done yet, o' my conscience, +Deserves a corner: would all other women +Could speak this with as free a soul as I do! +My lords, I care not, so much I am happy +Above a number, if my actions +Were tried by every tongue, every eye saw 'em, +Envy and base opinion set against 'em, +I know my life so even. If your business +Seek me out, and that way I am wife in, +Out with it boldly: truth loves open dealing. + +CARDINAL WOLSEY: +Tanta est erga te mentis integritas, regina +serenissima,-- + +QUEEN KATHARINE: +O, good my lord, no Latin; +I am not such a truant since my coming, +As not to know the language I have lived in: +A strange tongue makes my cause more strange, +suspicious; +Pray, speak in English: here are some will thank you, +If you speak truth, for their poor mistress' sake; +Believe me, she has had much wrong: lord cardinal, +The willing'st sin I ever yet committed +May be absolved in English. + +CARDINAL WOLSEY: +Noble lady, +I am sorry my integrity should breed, +And service to his majesty and you, +So deep suspicion, where all faith was meant. +We come not by the way of accusation, +To taint that honour every good tongue blesses, +Nor to betray you any way to sorrow, +You have too much, good lady; but to know +How you stand minded in the weighty difference +Between the king and you; and to deliver, +Like free and honest men, our just opinions +And comforts to your cause. + +CARDINAL CAMPEIUS: +Most honour'd madam, +My Lord of York, out of his noble nature, +Zeal and obedience he still bore your grace, +Forgetting, like a good man your late censure +Both of his truth and him, which was too far, +Offers, as I do, in a sign of peace, +His service and his counsel. + +QUEEN KATHARINE: + +CARDINAL WOLSEY: +Madam, you wrong the king's love with these fears: +Your hopes and friends are infinite. + +QUEEN KATHARINE: +In England +But little for my profit: can you think, lords, +That any Englishman dare give me counsel? +Or be a known friend, 'gainst his highness' pleasure, +Though he be grown so desperate to be honest, +And live a subject? Nay, forsooth, my friends, +They that must weigh out my afflictions, +They that my trust must grow to, live not here: +They are, as all my other comforts, far hence +In mine own country, lords. + +CARDINAL CAMPEIUS: +I would your grace +Would leave your griefs, and take my counsel. + +QUEEN KATHARINE: +How, sir? + +CARDINAL CAMPEIUS: +Put your main cause into the king's protection; +He's loving and most gracious: 'twill be much +Both for your honour better and your cause; +For if the trial of the law o'ertake ye, +You'll part away disgraced. + +CARDINAL WOLSEY: +He tells you rightly. + +QUEEN KATHARINE: +Ye tell me what ye wish for both,--my ruin: +Is this your Christian counsel? out upon ye! +Heaven is above all yet; there sits a judge +That no king can corrupt. + +CARDINAL CAMPEIUS: +Your rage mistakes us. + +QUEEN KATHARINE: +The more shame for ye: holy men I thought ye, +Upon my soul, two reverend cardinal virtues; +But cardinal sins and hollow hearts I fear ye: +Mend 'em, for shame, my lords. Is this your comfort? +The cordial that ye bring a wretched lady, +A woman lost among ye, laugh'd at, scorn'd? +I will not wish ye half my miseries; +I have more charity: but say, I warn'd ye; +Take heed, for heaven's sake, take heed, lest at once +The burthen of my sorrows fall upon ye. + +CARDINAL WOLSEY: +Madam, this is a mere distraction; +You turn the good we offer into envy. + +QUEEN KATHARINE: +Ye turn me into nothing: woe upon ye +And all such false professors! would you have me-- +If you have any justice, any pity; +If ye be any thing but churchmen's habits-- +Put my sick cause into his hands that hates me? +Alas, has banish'd me his bed already, +His love, too long ago! I am old, my lords, +And all the fellowship I hold now with him +Is only my obedience. What can happen +To me above this wretchedness? all your studies +Make me a curse like this. + +CARDINAL CAMPEIUS: +Your fears are worse. + +QUEEN KATHARINE: +Have I lived thus long--let me speak myself, +Since virtue finds no friends--a wife, a true one? +A woman, I dare say without vain-glory, +Never yet branded with suspicion? +Have I with all my full affections +Still met the king? loved him next heaven? +obey'd him? +Been, out of fondness, superstitious to him? +Almost forgot my prayers to content him? +And am I thus rewarded? 'tis not well, lords. +Bring me a constant woman to her husband, +One that ne'er dream'd a joy beyond his pleasure; +And to that woman, when she has done most, +Yet will I add an honour, a great patience. + +CARDINAL WOLSEY: +Madam, you wander from the good we aim at. + +QUEEN KATHARINE: +My lord, I dare not make myself so guilty, +To give up willingly that noble title +Your master wed me to: nothing but death +Shall e'er divorce my dignities. + +CARDINAL WOLSEY: +Pray, hear me. + +QUEEN KATHARINE: +Would I had never trod this English earth, +Or felt the flatteries that grow upon it! +Ye have angels' faces, but heaven knows your hearts. +What will become of me now, wretched lady! +I am the most unhappy woman living. +Alas, poor wenches, where are now your fortunes! +Shipwreck'd upon a kingdom, where no pity, +No friend, no hope; no kindred weep for me; +Almost no grave allow'd me: like the lily, +That once was mistress of the field and flourish'd, +I'll hang my head and perish. + +CARDINAL WOLSEY: +If your grace +Could but be brought to know our ends are honest, +You'ld feel more comfort: why should we, good lady, +Upon what cause, wrong you? alas, our places, +The way of our profession is against it: +We are to cure such sorrows, not to sow 'em. +For goodness' sake, consider what you do; +How you may hurt yourself, ay, utterly +Grow from the king's acquaintance, by this carriage. +The hearts of princes kiss obedience, +So much they love it; but to stubborn spirits +They swell, and grow as terrible as storms. +I know you have a gentle, noble temper, +A soul as even as a calm: pray, think us +Those we profess, peace-makers, friends, and servants. + +CARDINAL CAMPEIUS: +Madam, you'll find it so. You wrong your virtues +With these weak women's fears: a noble spirit, +As yours was put into you, ever casts +Such doubts, as false coin, from it. The king loves you; +Beware you lose it not: for us, if you please +To trust us in your business, we are ready +To use our utmost studies in your service. + +QUEEN KATHARINE: +Do what ye will, my lords: and, pray, forgive me, +If I have used myself unmannerly; +You know I am a woman, lacking wit +To make a seemly answer to such persons. +Pray, do my service to his majesty: +He has my heart yet; and shall have my prayers +While I shall have my life. Come, reverend fathers, +Bestow your counsels on me: she now begs, +That little thought, when she set footing here, +She should have bought her dignities so dear. + +NORFOLK: +If you will now unite in your complaints, +And force them with a constancy, the cardinal +Cannot stand under them: if you omit +The offer of this time, I cannot promise +But that you shall sustain moe new disgraces, +With these you bear already. + +SURREY: +I am joyful +To meet the least occasion that may give me +Remembrance of my father-in-law, the duke, +To be revenged on him. + +SUFFOLK: +Which of the peers +Have uncontemn'd gone by him, or at least +Strangely neglected? when did he regard +The stamp of nobleness in any person +Out of himself? + +Chamberlain: +My lords, you speak your pleasures: +What he deserves of you and me I know; +What we can do to him, though now the time +Gives way to us, I much fear. If you cannot +Bar his access to the king, never attempt +Any thing on him; for he hath a witchcraft +Over the king in's tongue. + +NORFOLK: +O, fear him not; +His spell in that is out: the king hath found +Matter against him that for ever mars +The honey of his language. No, he's settled, +Not to come off, in his displeasure. + +SURREY: +Sir, +I should be glad to hear such news as this +Once every hour. + +NORFOLK: +Believe it, this is true: +In the divorce his contrary proceedings +Are all unfolded wherein he appears +As I would wish mine enemy. + +SURREY: +How came +His practises to light? + +SUFFOLK: +Most strangely. + +SURREY: +O, how, how? + +SUFFOLK: +The cardinal's letters to the pope miscarried, +And came to the eye o' the king: wherein was read, +How that the cardinal did entreat his holiness +To stay the judgment o' the divorce; for if +It did take place, 'I do,' quoth he, 'perceive +My king is tangled in affection to +A creature of the queen's, Lady Anne Bullen.' + +SURREY: +Has the king this? + +SUFFOLK: +Believe it. + +SURREY: +Will this work? + +Chamberlain: +The king in this perceives him, how he coasts +And hedges his own way. But in this point +All his tricks founder, and he brings his physic +After his patient's death: the king already +Hath married the fair lady. + +SURREY: +Would he had! + +SUFFOLK: +May you be happy in your wish, my lord +For, I profess, you have it. + +SURREY: +Now, all my joy +Trace the conjunction! + +SUFFOLK: +My amen to't! + +NORFOLK: +All men's! + +SUFFOLK: +There's order given for her coronation: +Marry, this is yet but young, and may be left +To some ears unrecounted. But, my lords, +She is a gallant creature, and complete +In mind and feature: I persuade me, from her +Will fall some blessing to this land, which shall +In it be memorised. + +SURREY: +But, will the king +Digest this letter of the cardinal's? +The Lord forbid! + +NORFOLK: +Marry, amen! + +SUFFOLK: +No, no; +There be moe wasps that buzz about his nose +Will make this sting the sooner. Cardinal Campeius +Is stol'n away to Rome; hath ta'en no leave; +Has left the cause o' the king unhandled; and +Is posted, as the agent of our cardinal, +To second all his plot. I do assure you +The king cried Ha! at this. + +Chamberlain: +Now, God incense him, +And let him cry Ha! louder! + +NORFOLK: +But, my lord, +When returns Cranmer? + +SUFFOLK: +He is return'd in his opinions; which +Have satisfied the king for his divorce, +Together with all famous colleges +Almost in Christendom: shortly, I believe, +His second marriage shall be publish'd, and +Her coronation. Katharine no more +Shall be call'd queen, but princess dowager +And widow to Prince Arthur. + +NORFOLK: +This same Cranmer's +A worthy fellow, and hath ta'en much pain +In the king's business. + +SUFFOLK: +He has; and we shall see him +For it an archbishop. + +NORFOLK: +So I hear. + +SUFFOLK: +'Tis so. +The cardinal! + +NORFOLK: +Observe, observe, he's moody. + +CARDINAL WOLSEY: +The packet, Cromwell. +Gave't you the king? + +CROMWELL: +To his own hand, in's bedchamber. + +CARDINAL WOLSEY: +Look'd he o' the inside of the paper? + +CROMWELL: +Presently +He did unseal them: and the first he view'd, +He did it with a serious mind; a heed +Was in his countenance. You he bade +Attend him here this morning. + +CARDINAL WOLSEY: +Is he ready +To come abroad? + +CROMWELL: +I think, by this he is. + +CARDINAL WOLSEY: +Leave me awhile. +It shall be to the Duchess of Alencon, +The French king's sister: he shall marry her. +Anne Bullen! No; I'll no Anne Bullens for him: +There's more in't than fair visage. Bullen! +No, we'll no Bullens. Speedily I wish +To hear from Rome. The Marchioness of Pembroke! + +NORFOLK: +He's discontented. + +SUFFOLK: +May be, he hears the king +Does whet his anger to him. + +SURREY: +Sharp enough, +Lord, for thy justice! + +CARDINAL WOLSEY: + +NORFOLK: +He is vex'd at something. + +SURREY: +I would 'twere something that would fret the string, +The master-cord on's heart! + +SUFFOLK: +The king, the king! + +KING HENRY VIII: +What piles of wealth hath he accumulated +To his own portion! and what expense by the hour +Seems to flow from him! How, i' the name of thrift, +Does he rake this together! Now, my lords, +Saw you the cardinal? + +NORFOLK: +My lord, we have +Stood here observing him: some strange commotion +Is in his brain: he bites his lip, and starts; +Stops on a sudden, looks upon the ground, +Then lays his finger on his temple, straight +Springs out into fast gait; then stops again, +Strikes his breast hard, and anon he casts +His eye against the moon: in most strange postures +We have seen him set himself. + +KING HENRY VIII: +It may well be; +There is a mutiny in's mind. This morning +Papers of state he sent me to peruse, +As I required: and wot you what I found +There,--on my conscience, put unwittingly? +Forsooth, an inventory, thus importing; +The several parcels of his plate, his treasure, +Rich stuffs, and ornaments of household; which +I find at such proud rate, that it out-speaks +Possession of a subject. + +NORFOLK: +It's heaven's will: +Some spirit put this paper in the packet, +To bless your eye withal. + +KING HENRY VIII: +If we did think +His contemplation were above the earth, +And fix'd on spiritual object, he should still +Dwell in his musings: but I am afraid +His thinkings are below the moon, not worth +His serious considering. + +CARDINAL WOLSEY: +Heaven forgive me! +Ever God bless your highness! + +KING HENRY VIII: +Good my lord, +You are full of heavenly stuff, and bear the inventory +Of your best graces in your mind; the which +You were now running o'er: you have scarce time +To steal from spiritual leisure a brief span +To keep your earthly audit: sure, in that +I deem you an ill husband, and am glad +To have you therein my companion. + +CARDINAL WOLSEY: +Sir, +For holy offices I have a time; a time +To think upon the part of business which +I bear i' the state; and nature does require +Her times of preservation, which perforce +I, her frail son, amongst my brethren mortal, +Must give my tendence to. + +KING HENRY VIII: +You have said well. + +CARDINAL WOLSEY: +And ever may your highness yoke together, +As I will lend you cause, my doing well +With my well saying! + +KING HENRY VIII: +'Tis well said again; +And 'tis a kind of good deed to say well: +And yet words are no deeds. My father loved you: +His said he did; and with his deed did crown +His word upon you. Since I had my office, +I have kept you next my heart; have not alone +Employ'd you where high profits might come home, +But pared my present havings, to bestow +My bounties upon you. + +CARDINAL WOLSEY: + +SURREY: + +KING HENRY VIII: +Have I not made you, +The prime man of the state? I pray you, tell me, +If what I now pronounce you have found true: +And, if you may confess it, say withal, +If you are bound to us or no. What say you? + +CARDINAL WOLSEY: +My sovereign, I confess your royal graces, +Shower'd on me daily, have been more than could +My studied purposes requite; which went +Beyond all man's endeavours: my endeavours +Have ever come too short of my desires, +Yet filed with my abilities: mine own ends +Have been mine so that evermore they pointed +To the good of your most sacred person and +The profit of the state. For your great graces +Heap'd upon me, poor undeserver, I +Can nothing render but allegiant thanks, +My prayers to heaven for you, my loyalty, +Which ever has and ever shall be growing, +Till death, that winter, kill it. + +KING HENRY VIII: +Fairly answer'd; +A loyal and obedient subject is +Therein illustrated: the honour of it +Does pay the act of it; as, i' the contrary, +The foulness is the punishment. I presume +That, as my hand has open'd bounty to you, +My heart dropp'd love, my power rain'd honour, more +On you than any; so your hand and heart, +Your brain, and every function of your power, +Should, notwithstanding that your bond of duty, +As 'twere in love's particular, be more +To me, your friend, than any. + +CARDINAL WOLSEY: +I do profess +That for your highness' good I ever labour'd +More than mine own; that am, have, and will be-- +Though all the world should crack their duty to you, +And throw it from their soul; though perils did +Abound, as thick as thought could make 'em, and +Appear in forms more horrid,--yet my duty, +As doth a rock against the chiding flood, +Should the approach of this wild river break, +And stand unshaken yours. + +KING HENRY VIII: +'Tis nobly spoken: +Take notice, lords, he has a loyal breast, +For you have seen him open't. Read o'er this; +And after, this: and then to breakfast with +What appetite you have. + +CARDINAL WOLSEY: +What should this mean? +What sudden anger's this? how have I reap'd it? +He parted frowning from me, as if ruin +Leap'd from his eyes: so looks the chafed lion +Upon the daring huntsman that has gall'd him; +Then makes him nothing. I must read this paper; +I fear, the story of his anger. 'Tis so; +This paper has undone me: 'tis the account +Of all that world of wealth I have drawn together +For mine own ends; indeed, to gain the popedom, +And fee my friends in Rome. O negligence! +Fit for a fool to fall by: what cross devil +Made me put this main secret in the packet +I sent the king? Is there no way to cure this? +No new device to beat this from his brains? +I know 'twill stir him strongly; yet I know +A way, if it take right, in spite of fortune +Will bring me off again. What's this? 'To the Pope!' +The letter, as I live, with all the business +I writ to's holiness. Nay then, farewell! +I have touch'd the highest point of all my greatness; +And, from that full meridian of my glory, +I haste now to my setting: I shall fall +Like a bright exhalation m the evening, +And no man see me more. + +NORFOLK: +Hear the king's pleasure, cardinal: who commands you +To render up the great seal presently +Into our hands; and to confine yourself +To Asher House, my Lord of Winchester's, +Till you hear further from his highness. + +CARDINAL WOLSEY: +Stay: +Where's your commission, lords? words cannot carry +Authority so weighty. + +SUFFOLK: +Who dare cross 'em, +Bearing the king's will from his mouth expressly? + +CARDINAL WOLSEY: +Till I find more than will or words to do it, +I mean your malice, know, officious lords, +I dare and must deny it. Now I feel +Of what coarse metal ye are moulded, envy: +How eagerly ye follow my disgraces, +As if it fed ye! and how sleek and wanton +Ye appear in every thing may bring my ruin! +Follow your envious courses, men of malice; +You have Christian warrant for 'em, and, no doubt, +In time will find their fit rewards. That seal, +You ask with such a violence, the king, +Mine and your master, with his own hand gave me; +Bade me enjoy it, with the place and honours, +During my life; and, to confirm his goodness, +Tied it by letters-patents: now, who'll take it? + +SURREY: +The king, that gave it. + +CARDINAL WOLSEY: +It must be himself, then. + +SURREY: +Thou art a proud traitor, priest. + +CARDINAL WOLSEY: +Proud lord, thou liest: +Within these forty hours Surrey durst better +Have burnt that tongue than said so. + +SURREY: +Thy ambition, +Thou scarlet sin, robb'd this bewailing land +Of noble Buckingham, my father-in-law: +The heads of all thy brother cardinals, +With thee and all thy best parts bound together, +Weigh'd not a hair of his. Plague of your policy! +You sent me deputy for Ireland; +Far from his succor, from the king, from all +That might have mercy on the fault thou gavest him; +Whilst your great goodness, out of holy pity, +Absolved him with an axe. + +CARDINAL WOLSEY: +This, and all else +This talking lord can lay upon my credit, +I answer is most false. The duke by law +Found his deserts: how innocent I was +From any private malice in his end, +His noble jury and foul cause can witness. +If I loved many words, lord, I should tell you +You have as little honesty as honour, +That in the way of loyalty and truth +Toward the king, my ever royal master, +Dare mate a sounder man than Surrey can be, +And all that love his follies. + +SURREY: +By my soul, +Your long coat, priest, protects you; thou +shouldst feel +My sword i' the life-blood of thee else. My lords, +Can ye endure to hear this arrogance? +And from this fellow? if we live thus tamely, +To be thus jaded by a piece of scarlet, +Farewell nobility; let his grace go forward, +And dare us with his cap like larks. + +CARDINAL WOLSEY: +All goodness +Is poison to thy stomach. + +SURREY: +Yes, that goodness +Of gleaning all the land's wealth into one, +Into your own hands, cardinal, by extortion; +The goodness of your intercepted packets +You writ to the pope against the king: your goodness, +Since you provoke me, shall be most notorious. +My Lord of Norfolk, as you are truly noble, +As you respect the common good, the state +Of our despised nobility, our issues, +Who, if he live, will scarce be gentlemen, +Produce the grand sum of his sins, the articles +Collected from his life. I'll startle you +Worse than the scaring bell, when the brown wench +Lay kissing in your arms, lord cardinal. + +CARDINAL WOLSEY: +How much, methinks, I could despise this man, +But that I am bound in charity against it! + +NORFOLK: +Those articles, my lord, are in the king's hand: +But, thus much, they are foul ones. + +CARDINAL WOLSEY: +So much fairer +And spotless shall mine innocence arise, +When the king knows my truth. + +SURREY: +This cannot save you: +I thank my memory, I yet remember +Some of these articles; and out they shall. +Now, if you can blush and cry 'guilty,' cardinal, +You'll show a little honesty. + +CARDINAL WOLSEY: +Speak on, sir; +I dare your worst objections: if I blush, +It is to see a nobleman want manners. + +SURREY: +I had rather want those than my head. Have at you! +First, that, without the king's assent or knowledge, +You wrought to be a legate; by which power +You maim'd the jurisdiction of all bishops. + +NORFOLK: +Then, that in all you writ to Rome, or else +To foreign princes, 'Ego et Rex meus' +Was still inscribed; in which you brought the king +To be your servant. + +SUFFOLK: +Then that, without the knowledge +Either of king or council, when you went +Ambassador to the emperor, you made bold +To carry into Flanders the great seal. + +SURREY: +Item, you sent a large commission +To Gregory de Cassado, to conclude, +Without the king's will or the state's allowance, +A league between his highness and Ferrara. + +SUFFOLK: +That, out of mere ambition, you have caused +Your holy hat to be stamp'd on the king's coin. + +SURREY: +Then that you have sent innumerable substance-- +By what means got, I leave to your own conscience-- +To furnish Rome, and to prepare the ways +You have for dignities; to the mere undoing +Of all the kingdom. Many more there are; +Which, since they are of you, and odious, +I will not taint my mouth with. + +Chamberlain: +O my lord, +Press not a falling man too far! 'tis virtue: +His faults lie open to the laws; let them, +Not you, correct him. My heart weeps to see him +So little of his great self. + +SURREY: +I forgive him. + +SUFFOLK: +Lord cardinal, the king's further pleasure is, +Because all those things you have done of late, +By your power legatine, within this kingdom, +Fall into the compass of a praemunire, +That therefore such a writ be sued against you; +To forfeit all your goods, lands, tenements, +Chattels, and whatsoever, and to be +Out of the king's protection. This is my charge. + +NORFOLK: +And so we'll leave you to your meditations +How to live better. For your stubborn answer +About the giving back the great seal to us, +The king shall know it, and, no doubt, shall thank you. +So fare you well, my little good lord cardinal. + +CARDINAL WOLSEY: +So farewell to the little good you bear me. +Farewell! a long farewell, to all my greatness! +This is the state of man: to-day he puts forth +The tender leaves of hopes; to-morrow blossoms, +And bears his blushing honours thick upon him; +The third day comes a frost, a killing frost, +And, when he thinks, good easy man, full surely +His greatness is a-ripening, nips his root, +And then he falls, as I do. I have ventured, +Like little wanton boys that swim on bladders, +This many summers in a sea of glory, +But far beyond my depth: my high-blown pride +At length broke under me and now has left me, +Weary and old with service, to the mercy +Of a rude stream, that must for ever hide me. +Vain pomp and glory of this world, I hate ye: +I feel my heart new open'd. O, how wretched +Is that poor man that hangs on princes' favours! +There is, betwixt that smile we would aspire to, +That sweet aspect of princes, and their ruin, +More pangs and fears than wars or women have: +And when he falls, he falls like Lucifer, +Never to hope again. +Why, how now, Cromwell! + +CROMWELL: +I have no power to speak, sir. + +CARDINAL WOLSEY: +What, amazed +At my misfortunes? can thy spirit wonder +A great man should decline? Nay, an you weep, +I am fall'n indeed. + +CROMWELL: +How does your grace? + +CARDINAL WOLSEY: +Why, well; +Never so truly happy, my good Cromwell. +I know myself now; and I feel within me +A peace above all earthly dignities, +A still and quiet conscience. The king has cured me, +I humbly thank his grace; and from these shoulders, +These ruin'd pillars, out of pity, taken +A load would sink a navy, too much honour: +O, 'tis a burthen, Cromwell, 'tis a burthen +Too heavy for a man that hopes for heaven! + +CROMWELL: +I am glad your grace has made that right use of it. + +CARDINAL WOLSEY: +I hope I have: I am able now, methinks, +Out of a fortitude of soul I feel, +To endure more miseries and greater far +Than my weak-hearted enemies dare offer. +What news abroad? + +CROMWELL: +The heaviest and the worst +Is your displeasure with the king. + +CARDINAL WOLSEY: +God bless him! + +CROMWELL: +The next is, that Sir Thomas More is chosen +Lord chancellor in your place. + +CARDINAL WOLSEY: +That's somewhat sudden: +But he's a learned man. May he continue +Long in his highness' favour, and do justice +For truth's sake and his conscience; that his bones, +When he has run his course and sleeps in blessings, +May have a tomb of orphans' tears wept on em! What more? + +CROMWELL: +That Cranmer is return'd with welcome, +Install'd lord archbishop of Canterbury. + +CARDINAL WOLSEY: +That's news indeed. + +CROMWELL: +Last, that the Lady Anne, +Whom the king hath in secrecy long married, +This day was view'd in open as his queen, +Going to chapel; and the voice is now +Only about her coronation. + +CARDINAL WOLSEY: +There was the weight that pull'd me down. O Cromwell, +The king has gone beyond me: all my glories +In that one woman I have lost for ever: +No sun shall ever usher forth mine honours, +Or gild again the noble troops that waited +Upon my smiles. Go, get thee from me, Cromwell; +I am a poor fall'n man, unworthy now +To be thy lord and master: seek the king; +That sun, I pray, may never set! I have told him +What and how true thou art: he will advance thee; +Some little memory of me will stir him-- +I know his noble nature--not to let +Thy hopeful service perish too: good Cromwell, +Neglect him not; make use now, and provide +For thine own future safety. + +CROMWELL: +O my lord, +Must I, then, leave you? must I needs forego +So good, so noble and so true a master? +Bear witness, all that have not hearts of iron, +With what a sorrow Cromwell leaves his lord. +The king shall have my service: but my prayers +For ever and for ever shall be yours. + +CARDINAL WOLSEY: +Cromwell, I did not think to shed a tear +In all my miseries; but thou hast forced me, +Out of thy honest truth, to play the woman. +Let's dry our eyes: and thus far hear me, Cromwell; +And, when I am forgotten, as I shall be, +And sleep in dull cold marble, where no mention +Of me more must be heard of, say, I taught thee, +Say, Wolsey, that once trod the ways of glory, +And sounded all the depths and shoals of honour, +Found thee a way, out of his wreck, to rise in; +A sure and safe one, though thy master miss'd it. +Mark but my fall, and that that ruin'd me. +Cromwell, I charge thee, fling away ambition: +By that sin fell the angels; how can man, then, +The image of his Maker, hope to win by it? +Love thyself last: cherish those hearts that hate thee; +Corruption wins not more than honesty. +Still in thy right hand carry gentle peace, +To silence envious tongues. Be just, and fear not: +Let all the ends thou aim'st at be thy country's, +Thy God's, and truth's; then if thou fall'st, +O Cromwell, +Thou fall'st a blessed martyr! Serve the king; +And,--prithee, lead me in: +There take an inventory of all I have, +To the last penny; 'tis the king's: my robe, +And my integrity to heaven, is all +I dare now call mine own. O Cromwell, Cromwell! +Had I but served my God with half the zeal +I served my king, he would not in mine age +Have left me naked to mine enemies. + +CROMWELL: +Good sir, have patience. + +CARDINAL WOLSEY: +So I have. Farewell +The hopes of court! my hopes in heaven do dwell. + +First Gentleman: +You're well met once again. + +Second Gentleman: +So are you. + +First Gentleman: +You come to take your stand here, and behold +The Lady Anne pass from her coronation? + +Second Gentleman: +'Tis all my business. At our last encounter, +The Duke of Buckingham came from his trial. + +First Gentleman: +'Tis very true: but that time offer'd sorrow; +This, general joy. + +Second Gentleman: +'Tis well: the citizens, +I am sure, have shown at full their royal minds-- +As, let 'em have their rights, they are ever forward-- +In celebration of this day with shows, +Pageants and sights of honour. + +First Gentleman: +Never greater, +Nor, I'll assure you, better taken, sir. + +Second Gentleman: +May I be bold to ask at what that contains, +That paper in your hand? + +First Gentleman: +Yes; 'tis the list +Of those that claim their offices this day +By custom of the coronation. +The Duke of Suffolk is the first, and claims +To be high-steward; next, the Duke of Norfolk, +He to be earl marshal: you may read the rest. + +Second Gentleman: +I thank you, sir: had I not known those customs, +I should have been beholding to your paper. +But, I beseech you, what's become of Katharine, +The princess dowager? how goes her business? + +First Gentleman: +That I can tell you too. The Archbishop +Of Canterbury, accompanied with other +Learned and reverend fathers of his order, +Held a late court at Dunstable, six miles off +From Ampthill where the princess lay; to which +She was often cited by them, but appear'd not: +And, to be short, for not appearance and +The king's late scruple, by the main assent +Of all these learned men she was divorced, +And the late marriage made of none effect +Since which she was removed to Kimbolton, +Where she remains now sick. + +Second Gentleman: +Alas, good lady! +The trumpets sound: stand close, the queen is coming. + +Second Gentleman: +A royal train, believe me. These I know: +Who's that that bears the sceptre? + +First Gentleman: +Marquess Dorset: +And that the Earl of Surrey, with the rod. + +Second Gentleman: +A bold brave gentleman. That should be +The Duke of Suffolk? + +First Gentleman: +'Tis the same: high-steward. + +Second Gentleman: +And that my Lord of Norfolk? + +First Gentleman: +Yes; + +Second Gentleman: +Heaven bless thee! +Thou hast the sweetest face I ever look'd on. +Sir, as I have a soul, she is an angel; +Our king has all the Indies in his arms, +And more and richer, when he strains that lady: +I cannot blame his conscience. + +First Gentleman: +They that bear +The cloth of honour over her, are four barons +Of the Cinque-ports. + +Second Gentleman: +Those men are happy; and so are all are near her. +I take it, she that carries up the train +Is that old noble lady, Duchess of Norfolk. + +First Gentleman: +It is; and all the rest are countesses. + +Second Gentleman: +Their coronets say so. These are stars indeed; +And sometimes falling ones. + +First Gentleman: +No more of that. + +First Gentleman: +God save you, sir! where have you been broiling? + +Third Gentleman: +Among the crowd i' the Abbey; where a finger +Could not be wedged in more: I am stifled +With the mere rankness of their joy. + +Second Gentleman: +You saw +The ceremony? + +Third Gentleman: +That I did. + +First Gentleman: +How was it? + +Third Gentleman: +Well worth the seeing. + +Second Gentleman: +Good sir, speak it to us. + +Third Gentleman: +As well as I am able. The rich stream +Of lords and ladies, having brought the queen +To a prepared place in the choir, fell off +A distance from her; while her grace sat down +To rest awhile, some half an hour or so, +In a rich chair of state, opposing freely +The beauty of her person to the people. +Believe me, sir, she is the goodliest woman +That ever lay by man: which when the people +Had the full view of, such a noise arose +As the shrouds make at sea in a stiff tempest, +As loud, and to as many tunes: hats, cloaks-- +Doublets, I think,--flew up; and had their faces +Been loose, this day they had been lost. Such joy +I never saw before. Great-bellied women, +That had not half a week to go, like rams +In the old time of war, would shake the press, +And make 'em reel before 'em. No man living +Could say 'This is my wife' there; all were woven +So strangely in one piece. + +Second Gentleman: +But, what follow'd? + +Third Gentleman: +At length her grace rose, and with modest paces +Came to the altar; where she kneel'd, and saint-like +Cast her fair eyes to heaven and pray'd devoutly. +Then rose again and bow'd her to the people: +When by the Archbishop of Canterbury +She had all the royal makings of a queen; +As holy oil, Edward Confessor's crown, +The rod, and bird of peace, and all such emblems +Laid nobly on her: which perform'd, the choir, +With all the choicest music of the kingdom, +Together sung 'Te Deum.' So she parted, +And with the same full state paced back again +To York-place, where the feast is held. + +First Gentleman: +Sir, +You must no more call it York-place, that's past; +For, since the cardinal fell, that title's lost: +'Tis now the king's, and call'd Whitehall. + +Third Gentleman: +I know it; +But 'tis so lately alter'd, that the old name +Is fresh about me. + +Second Gentleman: +What two reverend bishops +Were those that went on each side of the queen? + +Third Gentleman: +Stokesly and Gardiner; the one of Winchester, +Newly preferr'd from the king's secretary, +The other, London. + +Second Gentleman: +He of Winchester +Is held no great good lover of the archbishop's, +The virtuous Cranmer. + +Third Gentleman: +All the land knows that: +However, yet there is no great breach; when it comes, +Cranmer will find a friend will not shrink from him. + +Second Gentleman: +Who may that be, I pray you? + +Third Gentleman: +Thomas Cromwell; +A man in much esteem with the king, and truly +A worthy friend. The king has made him master +O' the jewel house, +And one, already, of the privy council. + +Second Gentleman: +He will deserve more. + +Third Gentleman: +Yes, without all doubt. +Come, gentlemen, ye shall go my way, which +Is to the court, and there ye shall be my guests: +Something I can command. As I walk thither, +I'll tell ye more. + +Both: +You may command us, sir. + +GRIFFITH: +How does your grace? + +KATHARINE: +O Griffith, sick to death! +My legs, like loaden branches, bow to the earth, +Willing to leave their burthen. Reach a chair: +So; now, methinks, I feel a little ease. +Didst thou not tell me, Griffith, as thou led'st me, +That the great child of honour, Cardinal Wolsey, Was dead? + +GRIFFITH: +Yes, madam; but I think your grace, +Out of the pain you suffer'd, gave no ear to't. + +KATHARINE: +Prithee, good Griffith, tell me how he died: +If well, he stepp'd before me, happily +For my example. + +GRIFFITH: +Well, the voice goes, madam: +For after the stout Earl Northumberland +Arrested him at York, and brought him forward, +As a man sorely tainted, to his answer, +He fell sick suddenly, and grew so ill +He could not sit his mule. + +KATHARINE: +Alas, poor man! + +GRIFFITH: +At last, with easy roads, he came to Leicester, +Lodged in the abbey; where the reverend abbot, +With all his covent, honourably received him; +To whom he gave these words, 'O, father abbot, +An old man, broken with the storms of state, +Is come to lay his weary bones among ye; +Give him a little earth for charity!' +So went to bed; where eagerly his sickness +Pursued him still: and, three nights after this, +About the hour of eight, which he himself +Foretold should be his last, full of repentance, +Continual meditations, tears, and sorrows, +He gave his honours to the world again, +His blessed part to heaven, and slept in peace. + +KATHARINE: +So may he rest; his faults lie gently on him! +Yet thus far, Griffith, give me leave to speak him, +And yet with charity. He was a man +Of an unbounded stomach, ever ranking +Himself with princes; one that, by suggestion, +Tied all the kingdom: simony was fair-play; +His own opinion was his law: i' the presence +He would say untruths; and be ever double +Both in his words and meaning: he was never, +But where he meant to ruin, pitiful: +His promises were, as he then was, mighty; +But his performance, as he is now, nothing: +Of his own body he was ill, and gave +The clergy in example. + +GRIFFITH: +Noble madam, +Men's evil manners live in brass; their virtues +We write in water. May it please your highness +To hear me speak his good now? + +KATHARINE: +Yes, good Griffith; +I were malicious else. + +GRIFFITH: +This cardinal, +Though from an humble stock, undoubtedly +Was fashion'd to much honour from his cradle. +He was a scholar, and a ripe and good one; +Exceeding wise, fair-spoken, and persuading: +Lofty and sour to them that loved him not; +But to those men that sought him sweet as summer. +And though he were unsatisfied in getting, +Which was a sin, yet in bestowing, madam, +He was most princely: ever witness for him +Those twins Of learning that he raised in you, +Ipswich and Oxford! one of which fell with him, +Unwilling to outlive the good that did it; +The other, though unfinish'd, yet so famous, +So excellent in art, and still so rising, +That Christendom shall ever speak his virtue. +His overthrow heap'd happiness upon him; +For then, and not till then, he felt himself, +And found the blessedness of being little: +And, to add greater honours to his age +Than man could give him, he died fearing God. + +KATHARINE: +After my death I wish no other herald, +No other speaker of my living actions, +To keep mine honour from corruption, +But such an honest chronicler as Griffith. +Whom I most hated living, thou hast made me, +With thy religious truth and modesty, +Now in his ashes honour: peace be with him! +Patience, be near me still; and set me lower: +I have not long to trouble thee. Good Griffith, +Cause the musicians play me that sad note +I named my knell, whilst I sit meditating +On that celestial harmony I go to. + +GRIFFITH: +She is asleep: good wench, let's sit down quiet, +For fear we wake her: softly, gentle Patience. + +KATHARINE: +Spirits of peace, where are ye? are ye all gone, +And leave me here in wretchedness behind ye? + +GRIFFITH: +Madam, we are here. + +KATHARINE: +It is not you I call for: +Saw ye none enter since I slept? + +GRIFFITH: +None, madam. + +KATHARINE: +No? Saw you not, even now, a blessed troop +Invite me to a banquet; whose bright faces +Cast thousand beams upon me, like the sun? +They promised me eternal happiness; +And brought me garlands, Griffith, which I feel +I am not worthy yet to wear: I shall, assuredly. + +GRIFFITH: +I am most joyful, madam, such good dreams +Possess your fancy. + +KATHARINE: +Bid the music leave, +They are harsh and heavy to me. + +PATIENCE: +Do you note +How much her grace is alter'd on the sudden? +How long her face is drawn? how pale she looks, +And of an earthy cold? Mark her eyes! + +GRIFFITH: +She is going, wench: pray, pray. + +PATIENCE: +Heaven comfort her! + +Messenger: +An't like your grace,-- + +KATHARINE: +You are a saucy fellow: +Deserve we no more reverence? + +GRIFFITH: +You are to blame, +Knowing she will not lose her wonted greatness, +To use so rude behavior; go to, kneel. + +Messenger: +I humbly do entreat your highness' pardon; +My haste made me unmannerly. There is staying +A gentleman, sent from the king, to see you. + +KATHARINE: +Admit him entrance, Griffith: but this fellow +Let me ne'er see again. +If my sight fail not, +You should be lord ambassador from the emperor, +My royal nephew, and your name Capucius. + +CAPUCIUS: +Madam, the same; your servant. + +KATHARINE: +O, my lord, +The times and titles now are alter'd strangely +With me since first you knew me. But, I pray you, +What is your pleasure with me? + +CAPUCIUS: +Noble lady, +First mine own service to your grace; the next, +The king's request that I would visit you; +Who grieves much for your weakness, and by me +Sends you his princely commendations, +And heartily entreats you take good comfort. + +KATHARINE: +O my good lord, that comfort comes too late; +'Tis like a pardon after execution: +That gentle physic, given in time, had cured me; +But now I am past an comforts here, but prayers. +How does his highness? + +CAPUCIUS: +Madam, in good health. + +KATHARINE: +So may he ever do! and ever flourish, +When I shall dwell with worms, and my poor name +Banish'd the kingdom! Patience, is that letter, +I caused you write, yet sent away? + +PATIENCE: +No, madam. + +KATHARINE: +Sir, I most humbly pray you to deliver +This to my lord the king. + +CAPUCIUS: +Most willing, madam. + +KATHARINE: +In which I have commended to his goodness +The model of our chaste loves, his young daughter; +The dews of heaven fall thick in blessings on her! +Beseeching him to give her virtuous breeding-- +She is young, and of a noble modest nature, +I hope she will deserve well,--and a little +To love her for her mother's sake, that loved him, +Heaven knows how dearly. My next poor petition +Is, that his noble grace would have some pity +Upon my wretched women, that so long +Have follow'd both my fortunes faithfully: +Of which there is not one, I dare avow, +And now I should not lie, but will deserve +For virtue and true beauty of the soul, +For honesty and decent carriage, +A right good husband, let him be a noble +And, sure, those men are happy that shall have 'em. +The last is, for my men; they are the poorest, +But poverty could never draw 'em from me; +That they may have their wages duly paid 'em, +And something over to remember me by: +If heaven had pleased to have given me longer life +And able means, we had not parted thus. +These are the whole contents: and, good my lord, +By that you love the dearest in this world, +As you wish Christian peace to souls departed, +Stand these poor people's friend, and urge the king +To do me this last right. + +CAPUCIUS: +By heaven, I will, +Or let me lose the fashion of a man! + +KATHARINE: +I thank you, honest lord. Remember me +In all humility unto his highness: +Say his long trouble now is passing +Out of this world; tell him, in death I bless'd him, +For so I will. Mine eyes grow dim. Farewell, +My lord. Griffith, farewell. Nay, Patience, +You must not leave me yet: I must to bed; +Call in more women. When I am dead, good wench, +Let me be used with honour: strew me over +With maiden flowers, that all the world may know +I was a chaste wife to my grave: embalm me, +Then lay me forth: although unqueen'd, yet like +A queen, and daughter to a king, inter me. +I can no more. + +GARDINER: +It's one o'clock, boy, is't not? + +Boy: +It hath struck. + +GARDINER: +These should be hours for necessities, +Not for delights; times to repair our nature +With comforting repose, and not for us +To waste these times. Good hour of night, Sir Thomas! +Whither so late? + +LOVELL: +Came you from the king, my lord + +GARDINER: +I did, Sir Thomas: and left him at primero +With the Duke of Suffolk. + +LOVELL: +I must to him too, +Before he go to bed. I'll take my leave. + +GARDINER: +Not yet, Sir Thomas Lovell. What's the matter? +It seems you are in haste: an if there be +No great offence belongs to't, give your friend +Some touch of your late business: affairs, that walk, +As they say spirits do, at midnight, have +In them a wilder nature than the business +That seeks dispatch by day. + +LOVELL: +My lord, I love you; +And durst commend a secret to your ear +Much weightier than this work. The queen's in labour, +They say, in great extremity; and fear'd +She'll with the labour end. + +GARDINER: +The fruit she goes with +I pray for heartily, that it may find +Good time, and live: but for the stock, Sir Thomas, +I wish it grubb'd up now. + +LOVELL: +Methinks I could +Cry the amen; and yet my conscience says +She's a good creature, and, sweet lady, does +Deserve our better wishes. + +GARDINER: +But, sir, sir, +Hear me, Sir Thomas: you're a gentleman +Of mine own way; I know you wise, religious; +And, let me tell you, it will ne'er be well, +'Twill not, Sir Thomas Lovell, take't of me, +Till Cranmer, Cromwell, her two hands, and she, +Sleep in their graves. + +LOVELL: +Now, sir, you speak of two +The most remark'd i' the kingdom. As for Cromwell, +Beside that of the jewel house, is made master +O' the rolls, and the king's secretary; further, sir, +Stands in the gap and trade of moe preferments, +With which the time will load him. The archbishop +Is the king's hand and tongue; and who dare speak +One syllable against him? + +GARDINER: +Yes, yes, Sir Thomas, +There are that dare; and I myself have ventured +To speak my mind of him: and indeed this day, +Sir, I may tell it you, I think I have +Incensed the lords o' the council, that he is, +For so I know he is, they know he is, +A most arch heretic, a pestilence +That does infect the land: with which they moved +Have broken with the king; who hath so far +Given ear to our complaint, of his great grace +And princely care foreseeing those fell mischiefs +Our reasons laid before him, hath commanded +To-morrow morning to the council-board +He be convented. He's a rank weed, Sir Thomas, +And we must root him out. From your affairs +I hinder you too long: good night, Sir Thomas. + +LOVELL: +Many good nights, my lord: I rest your servant. + +KING HENRY VIII: +Charles, I will play no more tonight; +My mind's not on't; you are too hard for me. + +SUFFOLK: +Sir, I did never win of you before. + +KING HENRY VIII: +But little, Charles; +Nor shall not, when my fancy's on my play. +Now, Lovell, from the queen what is the news? + +LOVELL: +I could not personally deliver to her +What you commanded me, but by her woman +I sent your message; who return'd her thanks +In the great'st humbleness, and desired your highness +Most heartily to pray for her. + +KING HENRY VIII: +What say'st thou, ha? +To pray for her? what, is she crying out? + +LOVELL: +So said her woman; and that her sufferance made +Almost each pang a death. + +KING HENRY VIII: +Alas, good lady! + +SUFFOLK: +God safely quit her of her burthen, and +With gentle travail, to the gladding of +Your highness with an heir! + +KING HENRY VIII: +'Tis midnight, Charles; +Prithee, to bed; and in thy prayers remember +The estate of my poor queen. Leave me alone; +For I must think of that which company +Would not be friendly to. + +SUFFOLK: +I wish your highness +A quiet night; and my good mistress will +Remember in my prayers. + +KING HENRY VIII: +Charles, good night. +Well, sir, what follows? + +DENNY: +Sir, I have brought my lord the archbishop, +As you commanded me. + +KING HENRY VIII: +Ha! Canterbury? + +DENNY: +Ay, my good lord. + +KING HENRY VIII: +'Tis true: where is he, Denny? + +DENNY: +He attends your highness' pleasure. + +LOVELL: + +KING HENRY VIII: +Avoid the gallery. +Ha! I have said. Be gone. What! + +CRANMER: + +KING HENRY VIII: +How now, my lord! you desire to know +Wherefore I sent for you. + +CRANMER: + +KING HENRY VIII: +Pray you, arise, +My good and gracious Lord of Canterbury. +Come, you and I must walk a turn together; +I have news to tell you: come, come, give me your hand. +Ah, my good lord, I grieve at what I speak, +And am right sorry to repeat what follows +I have, and most unwillingly, of late +Heard many grievous, I do say, my lord, +Grievous complaints of you; which, being consider'd, +Have moved us and our council, that you shall +This morning come before us; where, I know, +You cannot with such freedom purge yourself, +But that, till further trial in those charges +Which will require your answer, you must take +Your patience to you, and be well contented +To make your house our Tower: you a brother of us, +It fits we thus proceed, or else no witness +Would come against you. + +CRANMER: + +KING HENRY VIII: +Stand up, good Canterbury: +Thy truth and thy integrity is rooted +In us, thy friend: give me thy hand, stand up: +Prithee, let's walk. Now, by my holidame. +What manner of man are you? My lord, I look'd +You would have given me your petition, that +I should have ta'en some pains to bring together +Yourself and your accusers; and to have heard you, +Without indurance, further. + +CRANMER: +Most dread liege, +The good I stand on is my truth and honesty: +If they shall fail, I, with mine enemies, +Will triumph o'er my person; which I weigh not, +Being of those virtues vacant. I fear nothing +What can be said against me. + +KING HENRY VIII: +Know you not +How your state stands i' the world, with the whole world? +Your enemies are many, and not small; their practises +Must bear the same proportion; and not ever +The justice and the truth o' the question carries +The due o' the verdict with it: at what ease +Might corrupt minds procure knaves as corrupt +To swear against you? such things have been done. +You are potently opposed; and with a malice +Of as great size. Ween you of better luck, +I mean, in perjured witness, than your master, +Whose minister you are, whiles here he lived +Upon this naughty earth? Go to, go to; +You take a precipice for no leap of danger, +And woo your own destruction. + +CRANMER: +God and your majesty +Protect mine innocence, or I fall into +The trap is laid for me! + +KING HENRY VIII: +Be of good cheer; +They shall no more prevail than we give way to. +Keep comfort to you; and this morning see +You do appear before them: if they shall chance, +In charging you with matters, to commit you, +The best persuasions to the contrary +Fail not to use, and with what vehemency +The occasion shall instruct you: if entreaties +Will render you no remedy, this ring +Deliver them, and your appeal to us +There make before them. Look, the good man weeps! +He's honest, on mine honour. God's blest mother! +I swear he is true--hearted; and a soul +None better in my kingdom. Get you gone, +And do as I have bid you. +He has strangled +His language in his tears. + +Gentleman: + +Old Lady: +I'll not come back; the tidings that I bring +Will make my boldness manners. Now, good angels +Fly o'er thy royal head, and shade thy person +Under their blessed wings! + +KING HENRY VIII: +Now, by thy looks +I guess thy message. Is the queen deliver'd? +Say, ay; and of a boy. + +Old Lady: +Ay, ay, my liege; +And of a lovely boy: the God of heaven +Both now and ever bless her! 'tis a girl, +Promises boys hereafter. Sir, your queen +Desires your visitation, and to be +Acquainted with this stranger 'tis as like you +As cherry is to cherry. + +KING HENRY VIII: +Lovell! + +LOVELL: +Sir? + +KING HENRY VIII: +Give her an hundred marks. I'll to the queen. + +Old Lady: +An hundred marks! By this light, I'll ha' more. +An ordinary groom is for such payment. +I will have more, or scold it out of him. +Said I for this, the girl was like to him? +I will have more, or else unsay't; and now, +While it is hot, I'll put it to the issue. + +CRANMER: +I hope I am not too late; and yet the gentleman, +That was sent to me from the council, pray'd me +To make great haste. All fast? what means this? Ho! +Who waits there? Sure, you know me? + +Keeper: +Yes, my lord; +But yet I cannot help you. + +CRANMER: +Why? + +Keeper: +Your grace must wait till you be call'd for. + +CRANMER: +So. + +DOCTOR BUTTS: + +CRANMER: + +DOCTOR BUTTS: +I'll show your grace the strangest sight-- + +KING HENRY VIII: +What's that, Butts? + +DOCTOR BUTTS: +I think your highness saw this many a day. + +KING HENRY VIII: +Body o' me, where is it? + +DOCTOR BUTTS: +There, my lord: +The high promotion of his grace of Canterbury; +Who holds his state at door, 'mongst pursuivants, +Pages, and footboys. + +KING HENRY VIII: +Ha! 'tis he, indeed: +Is this the honour they do one another? +'Tis well there's one above 'em yet. I had thought +They had parted so much honesty among 'em +At least, good manners, as not thus to suffer +A man of his place, and so near our favour, +To dance attendance on their lordships' pleasures, +And at the door too, like a post with packets. +By holy Mary, Butts, there's knavery: +Let 'em alone, and draw the curtain close: +We shall hear more anon. + +Chancellor: +Speak to the business, master-secretary: +Why are we met in council? + +CROMWELL: +Please your honours, +The chief cause concerns his grace of Canterbury. + +GARDINER: +Has he had knowledge of it? + +CROMWELL: +Yes. + +NORFOLK: +Who waits there? + +Keeper: +Without, my noble lords? + +GARDINER: +Yes. + +Keeper: +My lord archbishop; +And has done half an hour, to know your pleasures. + +Chancellor: +Let him come in. + +Keeper: +Your grace may enter now. + +Chancellor: +My good lord archbishop, I'm very sorry +To sit here at this present, and behold +That chair stand empty: but we all are men, +In our own natures frail, and capable +Of our flesh; few are angels: out of which frailty +And want of wisdom, you, that best should teach us, +Have misdemean'd yourself, and not a little, +Toward the king first, then his laws, in filling +The whole realm, by your teaching and your chaplains, +For so we are inform'd, with new opinions, +Divers and dangerous; which are heresies, +And, not reform'd, may prove pernicious. + +GARDINER: +Which reformation must be sudden too, +My noble lords; for those that tame wild horses +Pace 'em not in their hands to make 'em gentle, +But stop their mouths with stubborn bits, and spur 'em, +Till they obey the manage. If we suffer, +Out of our easiness and childish pity +To one man's honour, this contagious sickness, +Farewell all physic: and what follows then? +Commotions, uproars, with a general taint +Of the whole state: as, of late days, our neighbours, +The upper Germany, can dearly witness, +Yet freshly pitied in our memories. + +CRANMER: +My good lords, hitherto, in all the progress +Both of my life and office, I have labour'd, +And with no little study, that my teaching +And the strong course of my authority +Might go one way, and safely; and the end +Was ever, to do well: nor is there living, +I speak it with a single heart, my lords, +A man that more detests, more stirs against, +Both in his private conscience and his place, +Defacers of a public peace, than I do. +Pray heaven, the king may never find a heart +With less allegiance in it! Men that make +Envy and crooked malice nourishment +Dare bite the best. I do beseech your lordships, +That, in this case of justice, my accusers, +Be what they will, may stand forth face to face, +And freely urge against me. + +SUFFOLK: +Nay, my lord, +That cannot be: you are a counsellor, +And, by that virtue, no man dare accuse you. + +GARDINER: +My lord, because we have business of more moment, +We will be short with you. 'Tis his highness' pleasure, +And our consent, for better trial of you, +From hence you be committed to the Tower; +Where, being but a private man again, +You shall know many dare accuse you boldly, +More than, I fear, you are provided for. + +CRANMER: +Ah, my good Lord of Winchester, I thank you; +You are always my good friend; if your will pass, +I shall both find your lordship judge and juror, +You are so merciful: I see your end; +'Tis my undoing: love and meekness, lord, +Become a churchman better than ambition: +Win straying souls with modesty again, +Cast none away. That I shall clear myself, +Lay all the weight ye can upon my patience, +I make as little doubt, as you do conscience +In doing daily wrongs. I could say more, +But reverence to your calling makes me modest. + +GARDINER: +My lord, my lord, you are a sectary, +That's the plain truth: your painted gloss discovers, +To men that understand you, words and weakness. + +CROMWELL: +My Lord of Winchester, you are a little, +By your good favour, too sharp; men so noble, +However faulty, yet should find respect +For what they have been: 'tis a cruelty +To load a falling man. + +GARDINER: +Good master secretary, +I cry your honour mercy; you may, worst +Of all this table, say so. + +CROMWELL: +Why, my lord? + +GARDINER: +Do not I know you for a favourer +Of this new sect? ye are not sound. + +CROMWELL: +Not sound? + +GARDINER: +Not sound, I say. + +CROMWELL: +Would you were half so honest! +Men's prayers then would seek you, not their fears. + +GARDINER: +I shall remember this bold language. + +CROMWELL: +Do. +Remember your bold life too. + +Chancellor: +This is too much; +Forbear, for shame, my lords. + +GARDINER: +I have done. + +CROMWELL: +And I. + +Chancellor: +Then thus for you, my lord: it stands agreed, +I take it, by all voices, that forthwith +You be convey'd to the Tower a prisoner; +There to remain till the king's further pleasure +Be known unto us: are you all agreed, lords? + +All: +We are. + +CRANMER: +Is there no other way of mercy, +But I must needs to the Tower, my lords? + +GARDINER: +What other +Would you expect? you are strangely troublesome. +Let some o' the guard be ready there. + +CRANMER: +For me? +Must I go like a traitor thither? + +GARDINER: +Receive him, +And see him safe i' the Tower. + +CRANMER: +Stay, good my lords, +I have a little yet to say. Look there, my lords; +By virtue of that ring, I take my cause +Out of the gripes of cruel men, and give it +To a most noble judge, the king my master. + +Chamberlain: +This is the king's ring. + +SURREY: +'Tis no counterfeit. + +SUFFOLK: +'Tis the right ring, by heaven: I told ye all, +When ye first put this dangerous stone a-rolling, +'Twould fall upon ourselves. + +NORFOLK: +Do you think, my lords, +The king will suffer but the little finger +Of this man to be vex'd? + +Chancellor: +'Tis now too certain: +How much more is his life in value with him? +Would I were fairly out on't! + +CROMWELL: +My mind gave me, +In seeking tales and informations +Against this man, whose honesty the devil +And his disciples only envy at, +Ye blew the fire that burns ye: now have at ye! + +GARDINER: +Dread sovereign, how much are we bound to heaven +In daily thanks, that gave us such a prince; +Not only good and wise, but most religious: +One that, in all obedience, makes the church +The chief aim of his honour; and, to strengthen +That holy duty, out of dear respect, +His royal self in judgment comes to hear +The cause betwixt her and this great offender. + +KING HENRY VIII: +You were ever good at sudden commendations, +Bishop of Winchester. But know, I come not +To hear such flattery now, and in my presence; +They are too thin and bare to hide offences. +To me you cannot reach, you play the spaniel, +And think with wagging of your tongue to win me; +But, whatsoe'er thou takest me for, I'm sure +Thou hast a cruel nature and a bloody. +Good man, sit down. Now let me see the proudest +He, that dares most, but wag his finger at thee: +By all that's holy, he had better starve +Than but once think this place becomes thee not. + +SURREY: +May it please your grace,-- + +KING HENRY VIII: +No, sir, it does not please me. +I had thought I had had men of some understanding +And wisdom of my council; but I find none. +Was it discretion, lords, to let this man, +This good man,--few of you deserve that title,-- +This honest man, wait like a lousy footboy +At chamber--door? and one as great as you are? +Why, what a shame was this! Did my commission +Bid ye so far forget yourselves? I gave ye +Power as he was a counsellor to try him, +Not as a groom: there's some of ye, I see, +More out of malice than integrity, +Would try him to the utmost, had ye mean; +Which ye shall never have while I live. + +Chancellor: +Thus far, +My most dread sovereign, may it like your grace +To let my tongue excuse all. What was purposed +Concerning his imprisonment, was rather, +If there be faith in men, meant for his trial, +And fair purgation to the world, than malice, +I'm sure, in me. + +KING HENRY VIII: +Well, well, my lords, respect him; +Take him, and use him well, he's worthy of it. +I will say thus much for him, if a prince +May be beholding to a subject, I +Am, for his love and service, so to him. +Make me no more ado, but all embrace him: +Be friends, for shame, my lords! My Lord of +Canterbury, +I have a suit which you must not deny me; +That is, a fair young maid that yet wants baptism, +You must be godfather, and answer for her. + +CRANMER: +The greatest monarch now alive may glory +In such an honour: how may I deserve it +That am a poor and humble subject to you? + +KING HENRY VIII: +Come, come, my lord, you'ld spare your spoons: you +shall have two noble partners with you; the old +Duchess of Norfolk, and Lady Marquess Dorset: will +these please you? +Once more, my Lord of Winchester, I charge you, +Embrace and love this man. + +GARDINER: +With a true heart +And brother-love I do it. + +CRANMER: +And let heaven +Witness, how dear I hold this confirmation. + +KING HENRY VIII: +Good man, those joyful tears show thy true heart: +The common voice, I see, is verified +Of thee, which says thus, 'Do my Lord of Canterbury +A shrewd turn, and he is your friend for ever.' +Come, lords, we trifle time away; I long +To have this young one made a Christian. +As I have made ye one, lords, one remain; +So I grow stronger, you more honour gain. + +Porter: +You'll leave your noise anon, ye rascals: do you +take the court for Paris-garden? ye rude slaves, +leave your gaping. +Good master porter, I belong to the larder. + +Porter: +Belong to the gallows, and be hanged, ye rogue! is +this a place to roar in? Fetch me a dozen crab-tree +staves, and strong ones: these are but switches to +'em. I'll scratch your heads: you must be seeing +christenings? do you look for ale and cakes here, +you rude rascals? + +Man: +Pray, sir, be patient: 'tis as much impossible-- +Unless we sweep 'em from the door with cannons-- +To scatter 'em, as 'tis to make 'em sleep +On May-day morning; which will never be: +We may as well push against Powle's, as stir em. + +Porter: +How got they in, and be hang'd? + +Man: +Alas, I know not; how gets the tide in? +As much as one sound cudgel of four foot-- +You see the poor remainder--could distribute, +I made no spare, sir. + +Porter: +You did nothing, sir. + +Man: +I am not Samson, nor Sir Guy, nor Colbrand, +To mow 'em down before me: but if I spared any +That had a head to hit, either young or old, +He or she, cuckold or cuckold-maker, +Let me ne'er hope to see a chine again +And that I would not for a cow, God save her! +Do you hear, master porter? + +Porter: +I shall be with you presently, good master puppy. +Keep the door close, sirrah. + +Man: +What would you have me do? + +Porter: +What should you do, but knock 'em down by the +dozens? Is this Moorfields to muster in? or have +we some strange Indian with the great tool come to +court, the women so besiege us? Bless me, what a +fry of fornication is at door! On my Christian +conscience, this one christening will beget a +thousand; here will be father, godfather, and all together. + +Man: +The spoons will be the bigger, sir. There is a +fellow somewhat near the door, he should be a +brazier by his face, for, o' my conscience, twenty +of the dog-days now reign in's nose; all that stand +about him are under the line, they need no other +penance: that fire-drake did I hit three times on +the head, and three times was his nose discharged +against me; he stands there, like a mortar-piece, to +blow us. There was a haberdasher's wife of small +wit near him, that railed upon me till her pinked +porringer fell off her head, for kindling such a +combustion in the state. I missed the meteor once, +and hit that woman; who cried out 'Clubs!' when I +might see from far some forty truncheoners draw to +her succor, which were the hope o' the Strand, where +she was quartered. They fell on; I made good my +place: at length they came to the broom-staff to +me; I defied 'em still: when suddenly a file of +boys behind 'em, loose shot, delivered such a shower +of pebbles, that I was fain to draw mine honour in, +and let 'em win the work: the devil was amongst +'em, I think, surely. + +Porter: +These are the youths that thunder at a playhouse, +and fight for bitten apples; that no audience, but +the tribulation of Tower-hill, or the limbs of +Limehouse, their dear brothers, are able to endure. +I have some of 'em in Limbo Patrum, and there they +are like to dance these three days; besides the +running banquet of two beadles that is to come. + +Chamberlain: +Mercy o' me, what a multitude are here! +They grow still too; from all parts they are coming, +As if we kept a fair here! Where are these porters, +These lazy knaves? Ye have made a fine hand, fellows: +There's a trim rabble let in: are all these +Your faithful friends o' the suburbs? We shall have +Great store of room, no doubt, left for the ladies, +When they pass back from the christening. + +Porter: +An't please +your honour, +We are but men; and what so many may do, +Not being torn a-pieces, we have done: +An army cannot rule 'em. + +Chamberlain: +As I live, +If the king blame me for't, I'll lay ye all +By the heels, and suddenly; and on your heads +Clap round fines for neglect: ye are lazy knaves; +And here ye lie baiting of bombards, when +Ye should do service. Hark! the trumpets sound; +They're come already from the christening: +Go, break among the press, and find a way out +To let the troop pass fairly; or I'll find +A Marshalsea shall hold ye play these two months. + +Porter: +Make way there for the princess. + +Man: +You great fellow, +Stand close up, or I'll make your head ache. + +Porter: +You i' the camlet, get up o' the rail; +I'll peck you o'er the pales else. + +Garter: +Heaven, from thy endless goodness, send prosperous +life, long, and ever happy, to the high and mighty +princess of England, Elizabeth! + +CRANMER: + +KING HENRY VIII: +Thank you, good lord archbishop: +What is her name? + +CRANMER: +Elizabeth. + +KING HENRY VIII: +Stand up, lord. +With this kiss take my blessing: God protect thee! +Into whose hand I give thy life. + +CRANMER: +Amen. + +KING HENRY VIII: +My noble gossips, ye have been too prodigal: +I thank ye heartily; so shall this lady, +When she has so much English. + +CRANMER: +Let me speak, sir, +For heaven now bids me; and the words I utter +Let none think flattery, for they'll find 'em truth. +This royal infant--heaven still move about her!-- +Though in her cradle, yet now promises +Upon this land a thousand thousand blessings, +Which time shall bring to ripeness: she shall be-- +But few now living can behold that goodness-- +A pattern to all princes living with her, +And all that shall succeed: Saba was never +More covetous of wisdom and fair virtue +Than this pure soul shall be: all princely graces, +That mould up such a mighty piece as this is, +With all the virtues that attend the good, +Shall still be doubled on her: truth shall nurse her, +Holy and heavenly thoughts still counsel her: +She shall be loved and fear'd: her own shall bless her; +Her foes shake like a field of beaten corn, +And hang their heads with sorrow: good grows with her: +In her days every man shall eat in safety, +Under his own vine, what he plants; and sing +The merry songs of peace to all his neighbours: +God shall be truly known; and those about her +From her shall read the perfect ways of honour, +And by those claim their greatness, not by blood. +Nor shall this peace sleep with her: but as when +The bird of wonder dies, the maiden phoenix, +Her ashes new create another heir, +As great in admiration as herself; +So shall she leave her blessedness to one, +When heaven shall call her from this cloud of darkness, +Who from the sacred ashes of her honour +Shall star-like rise, as great in fame as she was, +And so stand fix'd: peace, plenty, love, truth, terror, +That were the servants to this chosen infant, +Shall then be his, and like a vine grow to him: +Wherever the bright sun of heaven shall shine, +His honour and the greatness of his name +Shall be, and make new nations: he shall flourish, +And, like a mountain cedar, reach his branches +To all the plains about him: our children's children +Shall see this, and bless heaven. + +KING HENRY VIII: +Thou speakest wonders. + +CRANMER: +She shall be, to the happiness of England, +An aged princess; many days shall see her, +And yet no day without a deed to crown it. +Would I had known no more! but she must die, +She must, the saints must have her; yet a virgin, +A most unspotted lily shall she pass +To the ground, and all the world shall mourn her. + +KING HENRY VIII: +O lord archbishop, +Thou hast made me now a man! never, before +This happy child, did I get any thing: +This oracle of comfort has so pleased me, +That when I am in heaven I shall desire +To see what this child does, and praise my Maker. +I thank ye all. To you, my good lord mayor, +And your good brethren, I am much beholding; +I have received much honour by your presence, +And ye shall find me thankful. Lead the way, lords: +Ye must all see the queen, and she must thank ye, +She will be sick else. This day, no man think +Has business at his house; for all shall stay: +This little one shall make it holiday. + + + +TROILUS: +Call here my varlet; I'll unarm again: +Why should I war without the walls of Troy, +That find such cruel battle here within? +Each Trojan that is master of his heart, +Let him to field; Troilus, alas! hath none. + +PANDARUS: +Will this gear ne'er be mended? + +TROILUS: +The Greeks are strong and skilful to their strength, +Fierce to their skill and to their fierceness valiant; +But I am weaker than a woman's tear, +Tamer than sleep, fonder than ignorance, +Less valiant than the virgin in the night +And skilless as unpractised infancy. + +PANDARUS: +Well, I have told you enough of this: for my part, +I'll not meddle nor make no further. He that will +have a cake out of the wheat must needs tarry the grinding. + +TROILUS: +Have I not tarried? + +PANDARUS: +Ay, the grinding; but you must tarry +the bolting. + +TROILUS: +Have I not tarried? + +PANDARUS: +Ay, the bolting, but you must tarry the leavening. + +TROILUS: +Still have I tarried. + +PANDARUS: +Ay, to the leavening; but here's yet in the word +'hereafter' the kneading, the making of the cake, the +heating of the oven and the baking; nay, you must +stay the cooling too, or you may chance to burn your lips. + +TROILUS: +Patience herself, what goddess e'er she be, +Doth lesser blench at sufferance than I do. +At Priam's royal table do I sit; +And when fair Cressid comes into my thoughts,-- +So, traitor! 'When she comes!' When is she thence? + +PANDARUS: +Well, she looked yesternight fairer than ever I saw +her look, or any woman else. + +TROILUS: +I was about to tell thee:--when my heart, +As wedged with a sigh, would rive in twain, +Lest Hector or my father should perceive me, +I have, as when the sun doth light a storm, +Buried this sigh in wrinkle of a smile: +But sorrow, that is couch'd in seeming gladness, +Is like that mirth fate turns to sudden sadness. + +PANDARUS: +An her hair were not somewhat darker than Helen's-- +well, go to--there were no more comparison between +the women: but, for my part, she is my kinswoman; I +would not, as they term it, praise her: but I would +somebody had heard her talk yesterday, as I did. I +will not dispraise your sister Cassandra's wit, but-- + +TROILUS: +O Pandarus! I tell thee, Pandarus,-- +When I do tell thee, there my hopes lie drown'd, +Reply not in how many fathoms deep +They lie indrench'd. I tell thee I am mad +In Cressid's love: thou answer'st 'she is fair;' +Pour'st in the open ulcer of my heart +Her eyes, her hair, her cheek, her gait, her voice, +Handlest in thy discourse, O, that her hand, +In whose comparison all whites are ink, +Writing their own reproach, to whose soft seizure +The cygnet's down is harsh and spirit of sense +Hard as the palm of ploughman: this thou tell'st me, +As true thou tell'st me, when I say I love her; +But, saying thus, instead of oil and balm, +Thou lay'st in every gash that love hath given me +The knife that made it. + +PANDARUS: +I speak no more than truth. + +TROILUS: +Thou dost not speak so much. + +PANDARUS: +Faith, I'll not meddle in't. Let her be as she is: +if she be fair, 'tis the better for her; an she be +not, she has the mends in her own hands. + +TROILUS: +Good Pandarus, how now, Pandarus! + +PANDARUS: +I have had my labour for my travail; ill-thought on of +her and ill-thought on of you; gone between and +between, but small thanks for my labour. + +TROILUS: +What, art thou angry, Pandarus? what, with me? + +PANDARUS: +Because she's kin to me, therefore she's not so fair +as Helen: an she were not kin to me, she would be as +fair on Friday as Helen is on Sunday. But what care +I? I care not an she were a black-a-moor; 'tis all one to me. + +TROILUS: +Say I she is not fair? + +PANDARUS: +I do not care whether you do or no. She's a fool to +stay behind her father; let her to the Greeks; and so +I'll tell her the next time I see her: for my part, +I'll meddle nor make no more i' the matter. + +TROILUS: +Pandarus,-- + +PANDARUS: +Not I. + +TROILUS: +Sweet Pandarus,-- + +PANDARUS: +Pray you, speak no more to me: I will leave all as I +found it, and there an end. + +TROILUS: +Peace, you ungracious clamours! peace, rude sounds! +Fools on both sides! Helen must needs be fair, +When with your blood you daily paint her thus. +I cannot fight upon this argument; +It is too starved a subject for my sword. +But Pandarus,--O gods, how do you plague me! +I cannot come to Cressid but by Pandar; +And he's as tetchy to be woo'd to woo. +As she is stubborn-chaste against all suit. +Tell me, Apollo, for thy Daphne's love, +What Cressid is, what Pandar, and what we? +Her bed is India; there she lies, a pearl: +Between our Ilium and where she resides, +Let it be call'd the wild and wandering flood, +Ourself the merchant, and this sailing Pandar +Our doubtful hope, our convoy and our bark. + +AENEAS: +How now, Prince Troilus! wherefore not afield? + +TROILUS: +Because not there: this woman's answer sorts, +For womanish it is to be from thence. +What news, AEneas, from the field to-day? + +AENEAS: +That Paris is returned home and hurt. + +TROILUS: +By whom, AEneas? + +AENEAS: +Troilus, by Menelaus. + +TROILUS: +Let Paris bleed; 'tis but a scar to scorn; +Paris is gored with Menelaus' horn. + +AENEAS: +Hark, what good sport is out of town to-day! + +TROILUS: +Better at home, if 'would I might' were 'may.' +But to the sport abroad: are you bound thither? + +AENEAS: +In all swift haste. + +TROILUS: +Come, go we then together. + +CRESSIDA: +Who were those went by? + +ALEXANDER: +Queen Hecuba and Helen. + +CRESSIDA: +And whither go they? + +ALEXANDER: +Up to the eastern tower, +Whose height commands as subject all the vale, +To see the battle. Hector, whose patience +Is, as a virtue, fix'd, to-day was moved: +He chid Andromache and struck his armourer, +And, like as there were husbandry in war, +Before the sun rose he was harness'd light, +And to the field goes he; where every flower +Did, as a prophet, weep what it foresaw +In Hector's wrath. + +CRESSIDA: +What was his cause of anger? + +ALEXANDER: +The noise goes, this: there is among the Greeks +A lord of Trojan blood, nephew to Hector; +They call him Ajax. + +CRESSIDA: +Good; and what of him? + +ALEXANDER: +They say he is a very man per se, +And stands alone. + +CRESSIDA: +So do all men, unless they are drunk, sick, or have no legs. + +ALEXANDER: +This man, lady, hath robbed many beasts of their +particular additions; he is as valiant as the lion, +churlish as the bear, slow as the elephant: a man +into whom nature hath so crowded humours that his +valour is crushed into folly, his folly sauced with +discretion: there is no man hath a virtue that he +hath not a glimpse of, nor any man an attaint but he +carries some stain of it: he is melancholy without +cause, and merry against the hair: he hath the +joints of every thing, but everything so out of joint +that he is a gouty Briareus, many hands and no use, +or purblind Argus, all eyes and no sight. + +CRESSIDA: +But how should this man, that makes +me smile, make Hector angry? + +ALEXANDER: +They say he yesterday coped Hector in the battle and +struck him down, the disdain and shame whereof hath +ever since kept Hector fasting and waking. + +CRESSIDA: +Who comes here? + +ALEXANDER: +Madam, your uncle Pandarus. + +CRESSIDA: +Hector's a gallant man. + +ALEXANDER: +As may be in the world, lady. + +PANDARUS: +What's that? what's that? + +CRESSIDA: +Good morrow, uncle Pandarus. + +PANDARUS: +Good morrow, cousin Cressid: what do you talk of? +Good morrow, Alexander. How do you, cousin? When +were you at Ilium? + +CRESSIDA: +This morning, uncle. + +PANDARUS: +What were you talking of when I came? Was Hector +armed and gone ere ye came to Ilium? Helen was not +up, was she? + +CRESSIDA: +Hector was gone, but Helen was not up. + +PANDARUS: +Even so: Hector was stirring early. + +CRESSIDA: +That were we talking of, and of his anger. + +PANDARUS: +Was he angry? + +CRESSIDA: +So he says here. + +PANDARUS: +True, he was so: I know the cause too: he'll lay +about him to-day, I can tell them that: and there's +Troilus will not come far behind him: let them take +heed of Troilus, I can tell them that too. + +CRESSIDA: +What, is he angry too? + +PANDARUS: +Who, Troilus? Troilus is the better man of the two. + +CRESSIDA: +O Jupiter! there's no comparison. + +PANDARUS: +What, not between Troilus and Hector? Do you know a +man if you see him? + +CRESSIDA: +Ay, if I ever saw him before and knew him. + +PANDARUS: +Well, I say Troilus is Troilus. + +CRESSIDA: +Then you say as I say; for, I am sure, he is not Hector. + +PANDARUS: +No, nor Hector is not Troilus in some degrees. + +CRESSIDA: +'Tis just to each of them; he is himself. + +PANDARUS: +Himself! Alas, poor Troilus! I would he were. + +CRESSIDA: +So he is. + +PANDARUS: +Condition, I had gone barefoot to India. + +CRESSIDA: +He is not Hector. + +PANDARUS: +Himself! no, he's not himself: would a' were +himself! Well, the gods are above; time must friend +or end: well, Troilus, well: I would my heart were +in her body. No, Hector is not a better man than Troilus. + +CRESSIDA: +Excuse me. + +PANDARUS: +He is elder. + +CRESSIDA: +Pardon me, pardon me. + +PANDARUS: +Th' other's not come to't; you shall tell me another +tale, when th' other's come to't. Hector shall not +have his wit this year. + +CRESSIDA: +He shall not need it, if he have his own. + +PANDARUS: +Nor his qualities. + +CRESSIDA: +No matter. + +PANDARUS: +Nor his beauty. + +CRESSIDA: +'Twould not become him; his own's better. + +PANDARUS: +You have no judgment, niece: Helen +herself swore th' other day, that Troilus, for +a brown favour--for so 'tis, I must confess,-- +not brown neither,-- + +CRESSIDA: +No, but brown. + +PANDARUS: +'Faith, to say truth, brown and not brown. + +CRESSIDA: +To say the truth, true and not true. + +PANDARUS: +She praised his complexion above Paris. + +CRESSIDA: +Why, Paris hath colour enough. + +PANDARUS: +So he has. + +CRESSIDA: +Then Troilus should have too much: if she praised +him above, his complexion is higher than his; he +having colour enough, and the other higher, is too +flaming a praise for a good complexion. I had as +lief Helen's golden tongue had commended Troilus for +a copper nose. + +PANDARUS: +I swear to you. I think Helen loves him better than Paris. + +CRESSIDA: +Then she's a merry Greek indeed. + +PANDARUS: +Nay, I am sure she does. She came to him th' other +day into the compassed window,--and, you know, he +has not past three or four hairs on his chin,-- + +CRESSIDA: +Indeed, a tapster's arithmetic may soon bring his +particulars therein to a total. + +PANDARUS: +Why, he is very young: and yet will he, within +three pound, lift as much as his brother Hector. + +CRESSIDA: +Is he so young a man and so old a lifter? + +PANDARUS: +But to prove to you that Helen loves him: she came +and puts me her white hand to his cloven chin-- + +CRESSIDA: +Juno have mercy! how came it cloven? + +PANDARUS: +Why, you know 'tis dimpled: I think his smiling +becomes him better than any man in all Phrygia. + +CRESSIDA: +O, he smiles valiantly. + +PANDARUS: +Does he not? + +CRESSIDA: +O yes, an 'twere a cloud in autumn. + +PANDARUS: +Why, go to, then: but to prove to you that Helen +loves Troilus,-- + +CRESSIDA: +Troilus will stand to the proof, if you'll +prove it so. + +PANDARUS: +Troilus! why, he esteems her no more than I esteem +an addle egg. + +CRESSIDA: +If you love an addle egg as well as you love an idle +head, you would eat chickens i' the shell. + +PANDARUS: +I cannot choose but laugh, to think how she tickled +his chin: indeed, she has a marvellous white hand, I +must needs confess,-- + +CRESSIDA: +Without the rack. + +PANDARUS: +And she takes upon her to spy a white hair on his chin. + +CRESSIDA: +Alas, poor chin! many a wart is richer. + +PANDARUS: +But there was such laughing! Queen Hecuba laughed +that her eyes ran o'er. + +CRESSIDA: +With mill-stones. + +PANDARUS: +And Cassandra laughed. + +CRESSIDA: +But there was more temperate fire under the pot of +her eyes: did her eyes run o'er too? + +PANDARUS: +And Hector laughed. + +CRESSIDA: +At what was all this laughing? + +PANDARUS: +Marry, at the white hair that Helen spied on Troilus' chin. + +CRESSIDA: +An't had been a green hair, I should have laughed +too. + +PANDARUS: +They laughed not so much at the hair as at his pretty answer. + +CRESSIDA: +What was his answer? + +PANDARUS: +Quoth she, 'Here's but two and fifty hairs on your +chin, and one of them is white. + +CRESSIDA: +This is her question. + +PANDARUS: +That's true; make no question of that. 'Two and +fifty hairs' quoth he, 'and one white: that white +hair is my father, and all the rest are his sons.' +'Jupiter!' quoth she, 'which of these hairs is Paris, +my husband? 'The forked one,' quoth he, 'pluck't +out, and give it him.' But there was such laughing! +and Helen so blushed, an Paris so chafed, and all the +rest so laughed, that it passed. + +CRESSIDA: +So let it now; for it has been while going by. + +PANDARUS: +Well, cousin. I told you a thing yesterday; think on't. + +CRESSIDA: +So I do. + +PANDARUS: +I'll be sworn 'tis true; he will weep you, an 'twere +a man born in April. + +CRESSIDA: +And I'll spring up in his tears, an 'twere a nettle +against May. + +PANDARUS: +Hark! they are coming from the field: shall we +stand up here, and see them as they pass toward +Ilium? good niece, do, sweet niece Cressida. + +CRESSIDA: +At your pleasure. + +PANDARUS: +Here, here, here's an excellent place; here we may +see most bravely: I'll tell you them all by their +names as they pass by; but mark Troilus above the rest. + +CRESSIDA: +Speak not so loud. + +PANDARUS: +That's AEneas: is not that a brave man? he's one of +the flowers of Troy, I can tell you: but mark +Troilus; you shall see anon. + +CRESSIDA: +Who's that? + +PANDARUS: +That's Antenor: he has a shrewd wit, I can tell you; +and he's a man good enough, he's one o' the soundest +judgments in whosoever, and a proper man of person. +When comes Troilus? I'll show you Troilus anon: if +he see me, you shall see him nod at me. + +CRESSIDA: +Will he give you the nod? + +PANDARUS: +You shall see. + +CRESSIDA: +If he do, the rich shall have more. + +PANDARUS: +That's Hector, that, that, look you, that; there's a +fellow! Go thy way, Hector! There's a brave man, +niece. O brave Hector! Look how he looks! there's +a countenance! is't not a brave man? + +CRESSIDA: +O, a brave man! + +PANDARUS: +Is a' not? it does a man's heart good. Look you +what hacks are on his helmet! look you yonder, do +you see? look you there: there's no jesting; +there's laying on, take't off who will, as they say: +there be hacks! + +CRESSIDA: +Be those with swords? + +PANDARUS: +Swords! any thing, he cares not; an the devil come +to him, it's all one: by God's lid, it does one's +heart good. Yonder comes Paris, yonder comes Paris. +Look ye yonder, niece; is't not a gallant man too, +is't not? Why, this is brave now. Who said he came +hurt home to-day? he's not hurt: why, this will do +Helen's heart good now, ha! Would I could see +Troilus now! You shall see Troilus anon. + +CRESSIDA: +Who's that? + +PANDARUS: +That's Helenus. I marvel where Troilus is. That's +Helenus. I think he went not forth to-day. That's Helenus. + +CRESSIDA: +Can Helenus fight, uncle? + +PANDARUS: +Helenus? no. Yes, he'll fight indifferent well. I +marvel where Troilus is. Hark! do you not hear the +people cry 'Troilus'? Helenus is a priest. + +CRESSIDA: +What sneaking fellow comes yonder? + +PANDARUS: +Where? yonder? that's Deiphobus. 'Tis Troilus! +there's a man, niece! Hem! Brave Troilus! the +prince of chivalry! + +CRESSIDA: +Peace, for shame, peace! + +PANDARUS: +Mark him; note him. O brave Troilus! Look well upon +him, niece: look you how his sword is bloodied, and +his helm more hacked than Hector's, and how he looks, +and how he goes! O admirable youth! he ne'er saw +three and twenty. Go thy way, Troilus, go thy way! +Had I a sister were a grace, or a daughter a goddess, +he should take his choice. O admirable man! Paris? +Paris is dirt to him; and, I warrant, Helen, to +change, would give an eye to boot. + +CRESSIDA: +Here come more. + +PANDARUS: +Asses, fools, dolts! chaff and bran, chaff and bran! +porridge after meat! I could live and die i' the +eyes of Troilus. Ne'er look, ne'er look: the eagles +are gone: crows and daws, crows and daws! I had +rather be such a man as Troilus than Agamemnon and +all Greece. + +CRESSIDA: +There is among the Greeks Achilles, a better man than Troilus. + +PANDARUS: +Achilles! a drayman, a porter, a very camel. + +CRESSIDA: +Well, well. + +PANDARUS: +'Well, well!' why, have you any discretion? have +you any eyes? Do you know what a man is? Is not +birth, beauty, good shape, discourse, manhood, +learning, gentleness, virtue, youth, liberality, +and such like, the spice and salt that season a man? + +CRESSIDA: +Ay, a minced man: and then to be baked with no date +in the pie, for then the man's date's out. + +PANDARUS: +You are such a woman! one knows not at what ward you +lie. + +CRESSIDA: +Upon my back, to defend my belly; upon my wit, to +defend my wiles; upon my secrecy, to defend mine +honesty; my mask, to defend my beauty; and you, to +defend all these: and at all these wards I lie, at a +thousand watches. + +PANDARUS: +Say one of your watches. + +CRESSIDA: +Nay, I'll watch you for that; and that's one of the +chiefest of them too: if I cannot ward what I would +not have hit, I can watch you for telling how I took +the blow; unless it swell past hiding, and then it's +past watching. + +PANDARUS: +You are such another! + +Boy: +Sir, my lord would instantly speak with you. + +PANDARUS: +Where? + +Boy: +At your own house; there he unarms him. + +PANDARUS: +Good boy, tell him I come. +I doubt he be hurt. Fare ye well, good niece. + +CRESSIDA: +Adieu, uncle. + +PANDARUS: +I'll be with you, niece, by and by. + +CRESSIDA: +To bring, uncle? + +PANDARUS: +Ay, a token from Troilus. + +CRESSIDA: +By the same token, you are a bawd. +Words, vows, gifts, tears, and love's full sacrifice, +He offers in another's enterprise; +But more in Troilus thousand fold I see +Than in the glass of Pandar's praise may be; +Yet hold I off. Women are angels, wooing: +Things won are done; joy's soul lies in the doing. +That she beloved knows nought that knows not this: +Men prize the thing ungain'd more than it is: +That she was never yet that ever knew +Love got so sweet as when desire did sue. +Therefore this maxim out of love I teach: +Achievement is command; ungain'd, beseech: +Then though my heart's content firm love doth bear, +Nothing of that shall from mine eyes appear. + +AGAMEMNON: +Princes, +What grief hath set the jaundice on your cheeks? +The ample proposition that hope makes +In all designs begun on earth below +Fails in the promised largeness: cheques and disasters +Grow in the veins of actions highest rear'd, +As knots, by the conflux of meeting sap, +Infect the sound pine and divert his grain +Tortive and errant from his course of growth. +Nor, princes, is it matter new to us +That we come short of our suppose so far +That after seven years' siege yet Troy walls stand; +Sith every action that hath gone before, +Whereof we have record, trial did draw +Bias and thwart, not answering the aim, +And that unbodied figure of the thought +That gave't surmised shape. Why then, you princes, +Do you with cheeks abash'd behold our works, +And call them shames? which are indeed nought else +But the protractive trials of great Jove +To find persistive constancy in men: +The fineness of which metal is not found +In fortune's love; for then the bold and coward, +The wise and fool, the artist and unread, +The hard and soft seem all affined and kin: +But, in the wind and tempest of her frown, +Distinction, with a broad and powerful fan, +Puffing at all, winnows the light away; +And what hath mass or matter, by itself +Lies rich in virtue and unmingled. + +NESTOR: +With due observance of thy godlike seat, +Great Agamemnon, Nestor shall apply +Thy latest words. In the reproof of chance +Lies the true proof of men: the sea being smooth, +How many shallow bauble boats dare sail +Upon her patient breast, making their way +With those of nobler bulk! +But let the ruffian Boreas once enrage +The gentle Thetis, and anon behold +The strong-ribb'd bark through liquid mountains cut, +Bounding between the two moist elements, +Like Perseus' horse: where's then the saucy boat +Whose weak untimber'd sides but even now +Co-rivall'd greatness? Either to harbour fled, +Or made a toast for Neptune. Even so +Doth valour's show and valour's worth divide +In storms of fortune; for in her ray and brightness +The herd hath more annoyance by the breeze +Than by the tiger; but when the splitting wind +Makes flexible the knees of knotted oaks, +And flies fled under shade, why, then the thing of courage +As roused with rage with rage doth sympathize, +And with an accent tuned in selfsame key +Retorts to chiding fortune. + +ULYSSES: +Agamemnon, +Thou great commander, nerve and bone of Greece, +Heart of our numbers, soul and only spirit. +In whom the tempers and the minds of all +Should be shut up, hear what Ulysses speaks. +Besides the applause and approbation To which, +most mighty for thy place and sway, +And thou most reverend for thy stretch'd-out life +I give to both your speeches, which were such +As Agamemnon and the hand of Greece +Should hold up high in brass, and such again +As venerable Nestor, hatch'd in silver, +Should with a bond of air, strong as the axle-tree +On which heaven rides, knit all the Greekish ears +To his experienced tongue, yet let it please both, +Thou great, and wise, to hear Ulysses speak. + +AGAMEMNON: +Speak, prince of Ithaca; and be't of less expect +That matter needless, of importless burden, +Divide thy lips, than we are confident, +When rank Thersites opes his mastic jaws, +We shall hear music, wit and oracle. + +ULYSSES: +Troy, yet upon his basis, had been down, +And the great Hector's sword had lack'd a master, +But for these instances. +The specialty of rule hath been neglected: +And, look, how many Grecian tents do stand +Hollow upon this plain, so many hollow factions. +When that the general is not like the hive +To whom the foragers shall all repair, +What honey is expected? Degree being vizarded, +The unworthiest shows as fairly in the mask. +The heavens themselves, the planets and this centre +Observe degree, priority and place, +Insisture, course, proportion, season, form, +Office and custom, in all line of order; +And therefore is the glorious planet Sol +In noble eminence enthroned and sphered +Amidst the other; whose medicinable eye +Corrects the ill aspects of planets evil, +And posts, like the commandment of a king, +Sans cheque to good and bad: but when the planets +In evil mixture to disorder wander, +What plagues and what portents! what mutiny! +What raging of the sea! shaking of earth! +Commotion in the winds! frights, changes, horrors, +Divert and crack, rend and deracinate +The unity and married calm of states +Quite from their fixure! O, when degree is shaked, +Which is the ladder to all high designs, +Then enterprise is sick! How could communities, +Degrees in schools and brotherhoods in cities, +Peaceful commerce from dividable shores, +The primogenitive and due of birth, +Prerogative of age, crowns, sceptres, laurels, +But by degree, stand in authentic place? +Take but degree away, untune that string, +And, hark, what discord follows! each thing meets +In mere oppugnancy: the bounded waters +Should lift their bosoms higher than the shores +And make a sop of all this solid globe: +Strength should be lord of imbecility, +And the rude son should strike his father dead: +Force should be right; or rather, right and wrong, +Between whose endless jar justice resides, +Should lose their names, and so should justice too. +Then every thing includes itself in power, +Power into will, will into appetite; +And appetite, an universal wolf, +So doubly seconded with will and power, +Must make perforce an universal prey, +And last eat up himself. Great Agamemnon, +This chaos, when degree is suffocate, +Follows the choking. +And this neglection of degree it is +That by a pace goes backward, with a purpose +It hath to climb. The general's disdain'd +By him one step below, he by the next, +That next by him beneath; so every step, +Exampled by the first pace that is sick +Of his superior, grows to an envious fever +Of pale and bloodless emulation: +And 'tis this fever that keeps Troy on foot, +Not her own sinews. To end a tale of length, +Troy in our weakness stands, not in her strength. + +NESTOR: +Most wisely hath Ulysses here discover'd +The fever whereof all our power is sick. + +AGAMEMNON: +The nature of the sickness found, Ulysses, +What is the remedy? + +ULYSSES: +The great Achilles, whom opinion crowns +The sinew and the forehand of our host, +Having his ear full of his airy fame, +Grows dainty of his worth, and in his tent +Lies mocking our designs: with him Patroclus +Upon a lazy bed the livelong day +Breaks scurril jests; +And with ridiculous and awkward action, +Which, slanderer, he imitation calls, +He pageants us. Sometime, great Agamemnon, +Thy topless deputation he puts on, +And, like a strutting player, whose conceit +Lies in his hamstring, and doth think it rich +To hear the wooden dialogue and sound +'Twixt his stretch'd footing and the scaffoldage,-- +Such to-be-pitied and o'er-wrested seeming +He acts thy greatness in: and when he speaks, +'Tis like a chime a-mending; with terms unsquared, +Which, from the tongue of roaring Typhon dropp'd +Would seem hyperboles. At this fusty stuff +The large Achilles, on his press'd bed lolling, +From his deep chest laughs out a loud applause; +Cries 'Excellent! 'tis Agamemnon just. +Now play me Nestor; hem, and stroke thy beard, +As he being drest to some oration.' +That's done, as near as the extremest ends +Of parallels, as like as Vulcan and his wife: +Yet god Achilles still cries 'Excellent! +'Tis Nestor right. Now play him me, Patroclus, +Arming to answer in a night alarm.' +And then, forsooth, the faint defects of age +Must be the scene of mirth; to cough and spit, +And, with a palsy-fumbling on his gorget, +Shake in and out the rivet: and at this sport +Sir Valour dies; cries 'O, enough, Patroclus; +Or give me ribs of steel! I shall split all +In pleasure of my spleen.' And in this fashion, +All our abilities, gifts, natures, shapes, +Severals and generals of grace exact, +Achievements, plots, orders, preventions, +Excitements to the field, or speech for truce, +Success or loss, what is or is not, serves +As stuff for these two to make paradoxes. + +NESTOR: +And in the imitation of these twain-- +Who, as Ulysses says, opinion crowns +With an imperial voice--many are infect. +Ajax is grown self-will'd, and bears his head +In such a rein, in full as proud a place +As broad Achilles; keeps his tent like him; +Makes factious feasts; rails on our state of war, +Bold as an oracle, and sets Thersites, +A slave whose gall coins slanders like a mint, +To match us in comparisons with dirt, +To weaken and discredit our exposure, +How rank soever rounded in with danger. + +ULYSSES: +They tax our policy, and call it cowardice, +Count wisdom as no member of the war, +Forestall prescience, and esteem no act +But that of hand: the still and mental parts, +That do contrive how many hands shall strike, +When fitness calls them on, and know by measure +Of their observant toil the enemies' weight,-- +Why, this hath not a finger's dignity: +They call this bed-work, mappery, closet-war; +So that the ram that batters down the wall, +For the great swing and rudeness of his poise, +They place before his hand that made the engine, +Or those that with the fineness of their souls +By reason guide his execution. + +NESTOR: +Let this be granted, and Achilles' horse +Makes many Thetis' sons. + +AGAMEMNON: +What trumpet? look, Menelaus. + +MENELAUS: +From Troy. + +AGAMEMNON: +What would you 'fore our tent? + +AENEAS: +Is this great Agamemnon's tent, I pray you? + +AGAMEMNON: +Even this. + +AENEAS: +May one, that is a herald and a prince, +Do a fair message to his kingly ears? + +AGAMEMNON: +With surety stronger than Achilles' arm +'Fore all the Greekish heads, which with one voice +Call Agamemnon head and general. + +AENEAS: +Fair leave and large security. How may +A stranger to those most imperial looks +Know them from eyes of other mortals? + +AGAMEMNON: +How! + +AENEAS: +Ay; +I ask, that I might waken reverence, +And bid the cheek be ready with a blush +Modest as morning when she coldly eyes +The youthful Phoebus: +Which is that god in office, guiding men? +Which is the high and mighty Agamemnon? + +AGAMEMNON: +This Trojan scorns us; or the men of Troy +Are ceremonious courtiers. + +AENEAS: +Courtiers as free, as debonair, unarm'd, +As bending angels; that's their fame in peace: +But when they would seem soldiers, they have galls, +Good arms, strong joints, true swords; and, +Jove's accord, +Nothing so full of heart. But peace, AEneas, +Peace, Trojan; lay thy finger on thy lips! +The worthiness of praise distains his worth, +If that the praised himself bring the praise forth: +But what the repining enemy commends, +That breath fame blows; that praise, sole sure, +transcends. + +AGAMEMNON: +Sir, you of Troy, call you yourself AEneas? + +AENEAS: +Ay, Greek, that is my name. + +AGAMEMNON: +What's your affair I pray you? + +AENEAS: +Sir, pardon; 'tis for Agamemnon's ears. + +AGAMEMNON: +He hears naught privately that comes from Troy. + +AENEAS: +Nor I from Troy come not to whisper him: +I bring a trumpet to awake his ear, +To set his sense on the attentive bent, +And then to speak. + +AGAMEMNON: +Speak frankly as the wind; +It is not Agamemnon's sleeping hour: +That thou shalt know. Trojan, he is awake, +He tells thee so himself. + +AENEAS: +Trumpet, blow loud, +Send thy brass voice through all these lazy tents; +And every Greek of mettle, let him know, +What Troy means fairly shall be spoke aloud. +We have, great Agamemnon, here in Troy +A prince call'd Hector,--Priam is his father,-- +Who in this dull and long-continued truce +Is rusty grown: he bade me take a trumpet, +And to this purpose speak. Kings, princes, lords! +If there be one among the fair'st of Greece +That holds his honour higher than his ease, +That seeks his praise more than he fears his peril, +That knows his valour, and knows not his fear, +That loves his mistress more than in confession, +With truant vows to her own lips he loves, +And dare avow her beauty and her worth +In other arms than hers,--to him this challenge. +Hector, in view of Trojans and of Greeks, +Shall make it good, or do his best to do it, +He hath a lady, wiser, fairer, truer, +Than ever Greek did compass in his arms, +And will to-morrow with his trumpet call +Midway between your tents and walls of Troy, +To rouse a Grecian that is true in love: +If any come, Hector shall honour him; +If none, he'll say in Troy when he retires, +The Grecian dames are sunburnt and not worth +The splinter of a lance. Even so much. + +AGAMEMNON: +This shall be told our lovers, Lord AEneas; +If none of them have soul in such a kind, +We left them all at home: but we are soldiers; +And may that soldier a mere recreant prove, +That means not, hath not, or is not in love! +If then one is, or hath, or means to be, +That one meets Hector; if none else, I am he. + +NESTOR: +Tell him of Nestor, one that was a man +When Hector's grandsire suck'd: he is old now; +But if there be not in our Grecian host +One noble man that hath one spark of fire, +To answer for his love, tell him from me +I'll hide my silver beard in a gold beaver +And in my vantbrace put this wither'd brawn, +And meeting him will tell him that my lady +Was fairer than his grandam and as chaste +As may be in the world: his youth in flood, +I'll prove this truth with my three drops of blood. + +AENEAS: +Now heavens forbid such scarcity of youth! + +ULYSSES: +Amen. + +AGAMEMNON: +Fair Lord AEneas, let me touch your hand; +To our pavilion shall I lead you, sir. +Achilles shall have word of this intent; +So shall each lord of Greece, from tent to tent: +Yourself shall feast with us before you go +And find the welcome of a noble foe. + +ULYSSES: +Nestor! + +NESTOR: +What says Ulysses? + +ULYSSES: +I have a young conception in my brain; +Be you my time to bring it to some shape. + +NESTOR: +What is't? + +ULYSSES: +This 'tis: +Blunt wedges rive hard knots: the seeded pride +That hath to this maturity blown up +In rank Achilles must or now be cropp'd, +Or, shedding, breed a nursery of like evil, +To overbulk us all. + +NESTOR: +Well, and how? + +ULYSSES: +This challenge that the gallant Hector sends, +However it is spread in general name, +Relates in purpose only to Achilles. + +NESTOR: +The purpose is perspicuous even as substance, +Whose grossness little characters sum up: +And, in the publication, make no strain, +But that Achilles, were his brain as barren +As banks of Libya,--though, Apollo knows, +'Tis dry enough,--will, with great speed of judgment, +Ay, with celerity, find Hector's purpose +Pointing on him. + +ULYSSES: +And wake him to the answer, think you? + +NESTOR: +Yes, 'tis most meet: whom may you else oppose, +That can from Hector bring his honour off, +If not Achilles? Though't be a sportful combat, +Yet in the trial much opinion dwells; +For here the Trojans taste our dear'st repute +With their finest palate: and trust to me, Ulysses, +Our imputation shall be oddly poised +In this wild action; for the success, +Although particular, shall give a scantling +Of good or bad unto the general; +And in such indexes, although small pricks +To their subsequent volumes, there is seen +The baby figure of the giant mass +Of things to come at large. It is supposed +He that meets Hector issues from our choice +And choice, being mutual act of all our souls, +Makes merit her election, and doth boil, +As 'twere from us all, a man distill'd +Out of our virtues; who miscarrying, +What heart receives from hence the conquering part, +To steel a strong opinion to themselves? +Which entertain'd, limbs are his instruments, +In no less working than are swords and bows +Directive by the limbs. + +ULYSSES: +Give pardon to my speech: +Therefore 'tis meet Achilles meet not Hector. +Let us, like merchants, show our foulest wares, +And think, perchance, they'll sell; if not, +The lustre of the better yet to show, +Shall show the better. Do not consent +That ever Hector and Achilles meet; +For both our honour and our shame in this +Are dogg'd with two strange followers. + +NESTOR: +I see them not with my old eyes: what are they? + +ULYSSES: +What glory our Achilles shares from Hector, +Were he not proud, we all should share with him: +But he already is too insolent; +And we were better parch in Afric sun +Than in the pride and salt scorn of his eyes, +Should he 'scape Hector fair: if he were foil'd, +Why then, we did our main opinion crush +In taint of our best man. No, make a lottery; +And, by device, let blockish Ajax draw +The sort to fight with Hector: among ourselves +Give him allowance for the better man; +For that will physic the great Myrmidon +Who broils in loud applause, and make him fall +His crest that prouder than blue Iris bends. +If the dull brainless Ajax come safe off, +We'll dress him up in voices: if he fail, +Yet go we under our opinion still +That we have better men. But, hit or miss, +Our project's life this shape of sense assumes: +Ajax employ'd plucks down Achilles' plumes. + +NESTOR: +Ulysses, +Now I begin to relish thy advice; +And I will give a taste of it forthwith +To Agamemnon: go we to him straight. +Two curs shall tame each other: pride alone +Must tarre the mastiffs on, as 'twere their bone. + +AJAX: +Thersites! + +THERSITES: +Agamemnon, how if he had boils? full, all over, +generally? + +AJAX: +Thersites! + +THERSITES: +And those boils did run? say so: did not the +general run then? were not that a botchy core? + +AJAX: +Dog! + +THERSITES: +Then would come some matter from him; I see none now. + +AJAX: +Thou bitch-wolf's son, canst thou not hear? +Feel, then. + +THERSITES: +The plague of Greece upon thee, thou mongrel +beef-witted lord! + +AJAX: +Speak then, thou vinewedst leaven, speak: I will +beat thee into handsomeness. + +THERSITES: +I shall sooner rail thee into wit and holiness: but, +I think, thy horse will sooner con an oration than +thou learn a prayer without book. Thou canst strike, +canst thou? a red murrain o' thy jade's tricks! + +AJAX: +Toadstool, learn me the proclamation. + +THERSITES: +Dost thou think I have no sense, thou strikest me thus? + +AJAX: +The proclamation! + +THERSITES: +Thou art proclaimed a fool, I think. + +AJAX: +Do not, porpentine, do not: my fingers itch. + +THERSITES: +I would thou didst itch from head to foot and I had +the scratching of thee; I would make thee the +loathsomest scab in Greece. When thou art forth in +the incursions, thou strikest as slow as another. + +AJAX: +I say, the proclamation! + +THERSITES: +Thou grumblest and railest every hour on Achilles, +and thou art as full of envy at his greatness as +Cerberus is at Proserpine's beauty, ay, that thou +barkest at him. + +AJAX: +Mistress Thersites! + +THERSITES: +Thou shouldest strike him. + +AJAX: +Cobloaf! + +THERSITES: +He would pun thee into shivers with his fist, as a +sailor breaks a biscuit. + +AJAX: + +THERSITES: +Do, do. + +AJAX: +Thou stool for a witch! + +THERSITES: +Ay, do, do; thou sodden-witted lord! thou hast no +more brain than I have in mine elbows; an assinego +may tutor thee: thou scurvy-valiant ass! thou art +here but to thrash Trojans; and thou art bought and +sold among those of any wit, like a barbarian slave. +If thou use to beat me, I will begin at thy heel, and +tell what thou art by inches, thou thing of no +bowels, thou! + +AJAX: +You dog! + +THERSITES: +You scurvy lord! + +AJAX: + +THERSITES: +Mars his idiot! do, rudeness; do, camel; do, do. + +ACHILLES: +Why, how now, Ajax! wherefore do you thus? How now, +Thersites! what's the matter, man? + +THERSITES: +You see him there, do you? + +ACHILLES: +Ay; what's the matter? + +THERSITES: +Nay, look upon him. + +ACHILLES: +So I do: what's the matter? + +THERSITES: +Nay, but regard him well. + +ACHILLES: +'Well!' why, I do so. + +THERSITES: +But yet you look not well upon him; for whosoever you +take him to be, he is Ajax. + +ACHILLES: +I know that, fool. + +THERSITES: +Ay, but that fool knows not himself. + +AJAX: +Therefore I beat thee. + +THERSITES: +Lo, lo, lo, lo, what modicums of wit he utters! his +evasions have ears thus long. I have bobbed his +brain more than he has beat my bones: I will buy +nine sparrows for a penny, and his pia mater is not +worth the nineth part of a sparrow. This lord, +Achilles, Ajax, who wears his wit in his belly and +his guts in his head, I'll tell you what I say of +him. + +ACHILLES: +What? + +THERSITES: +I say, this Ajax-- + +ACHILLES: +Nay, good Ajax. + +THERSITES: +Has not so much wit-- + +ACHILLES: +Nay, I must hold you. + +THERSITES: +As will stop the eye of Helen's needle, for whom he +comes to fight. + +ACHILLES: +Peace, fool! + +THERSITES: +I would have peace and quietness, but the fool will +not: he there: that he: look you there. + +AJAX: +O thou damned cur! I shall-- + +ACHILLES: +Will you set your wit to a fool's? + +THERSITES: +No, I warrant you; for a fools will shame it. + +PATROCLUS: +Good words, Thersites. + +ACHILLES: +What's the quarrel? + +AJAX: +I bade the vile owl go learn me the tenor of the +proclamation, and he rails upon me. + +THERSITES: +I serve thee not. + +AJAX: +Well, go to, go to. + +THERSITES: +I serve here voluntarily. + +ACHILLES: +Your last service was sufferance, 'twas not +voluntary: no man is beaten voluntary: Ajax was +here the voluntary, and you as under an impress. + +THERSITES: +E'en so; a great deal of your wit, too, lies in your +sinews, or else there be liars. Hector have a great +catch, if he knock out either of your brains: a' +were as good crack a fusty nut with no kernel. + +ACHILLES: +What, with me too, Thersites? + +THERSITES: +There's Ulysses and old Nestor, whose wit was mouldy +ere your grandsires had nails on their toes, yoke you +like draught-oxen and make you plough up the wars. + +ACHILLES: +What, what? + +THERSITES: +Yes, good sooth: to, Achilles! to, Ajax! to! + +AJAX: +I shall cut out your tongue. + +THERSITES: +'Tis no matter! I shall speak as much as thou +afterwards. + +PATROCLUS: +No more words, Thersites; peace! + +THERSITES: +I will hold my peace when Achilles' brach bids me, shall I? + +ACHILLES: +There's for you, Patroclus. + +THERSITES: +I will see you hanged, like clotpoles, ere I come +any more to your tents: I will keep where there is +wit stirring and leave the faction of fools. + +PATROCLUS: +A good riddance. + +ACHILLES: +Marry, this, sir, is proclaim'd through all our host: +That Hector, by the fifth hour of the sun, +Will with a trumpet 'twixt our tents and Troy +To-morrow morning call some knight to arms +That hath a stomach; and such a one that dare +Maintain--I know not what: 'tis trash. Farewell. + +AJAX: +Farewell. Who shall answer him? + +ACHILLES: +I know not: 'tis put to lottery; otherwise +He knew his man. + +AJAX: +O, meaning you. I will go learn more of it. + +PRIAM: +After so many hours, lives, speeches spent, +Thus once again says Nestor from the Greeks: +'Deliver Helen, and all damage else-- +As honour, loss of time, travail, expense, +Wounds, friends, and what else dear that is consumed +In hot digestion of this cormorant war-- +Shall be struck off.' Hector, what say you to't? + +HECTOR: +Though no man lesser fears the Greeks than I +As far as toucheth my particular, +Yet, dread Priam, +There is no lady of more softer bowels, +More spongy to suck in the sense of fear, +More ready to cry out 'Who knows what follows?' +Than Hector is: the wound of peace is surety, +Surety secure; but modest doubt is call'd +The beacon of the wise, the tent that searches +To the bottom of the worst. Let Helen go: +Since the first sword was drawn about this question, +Every tithe soul, 'mongst many thousand dismes, +Hath been as dear as Helen; I mean, of ours: +If we have lost so many tenths of ours, +To guard a thing not ours nor worth to us, +Had it our name, the value of one ten, +What merit's in that reason which denies +The yielding of her up? + +TROILUS: +Fie, fie, my brother! +Weigh you the worth and honour of a king +So great as our dread father in a scale +Of common ounces? will you with counters sum +The past proportion of his infinite? +And buckle in a waist most fathomless +With spans and inches so diminutive +As fears and reasons? fie, for godly shame! + +HELENUS: +No marvel, though you bite so sharp at reasons, +You are so empty of them. Should not our father +Bear the great sway of his affairs with reasons, +Because your speech hath none that tells him so? + +TROILUS: +You are for dreams and slumbers, brother priest; +You fur your gloves with reason. Here are +your reasons: +You know an enemy intends you harm; +You know a sword employ'd is perilous, +And reason flies the object of all harm: +Who marvels then, when Helenus beholds +A Grecian and his sword, if he do set +The very wings of reason to his heels +And fly like chidden Mercury from Jove, +Or like a star disorb'd? Nay, if we talk of reason, +Let's shut our gates and sleep: manhood and honour +Should have hare-hearts, would they but fat +their thoughts +With this cramm'd reason: reason and respect +Make livers pale and lustihood deject. + +HECTOR: +Brother, she is not worth what she doth cost +The holding. + +TROILUS: +What is aught, but as 'tis valued? + +HECTOR: +But value dwells not in particular will; +It holds his estimate and dignity +As well wherein 'tis precious of itself +As in the prizer: 'tis mad idolatry +To make the service greater than the god +And the will dotes that is attributive +To what infectiously itself affects, +Without some image of the affected merit. + +TROILUS: +I take to-day a wife, and my election +Is led on in the conduct of my will; +My will enkindled by mine eyes and ears, +Two traded pilots 'twixt the dangerous shores +Of will and judgment: how may I avoid, +Although my will distaste what it elected, +The wife I chose? there can be no evasion +To blench from this and to stand firm by honour: +We turn not back the silks upon the merchant, +When we have soil'd them, nor the remainder viands +We do not throw in unrespective sieve, +Because we now are full. It was thought meet +Paris should do some vengeance on the Greeks: +Your breath of full consent bellied his sails; +The seas and winds, old wranglers, took a truce +And did him service: he touch'd the ports desired, +And for an old aunt whom the Greeks held captive, +He brought a Grecian queen, whose youth and freshness +Wrinkles Apollo's, and makes stale the morning. +Why keep we her? the Grecians keep our aunt: +Is she worth keeping? why, she is a pearl, +Whose price hath launch'd above a thousand ships, +And turn'd crown'd kings to merchants. +If you'll avouch 'twas wisdom Paris went-- +As you must needs, for you all cried 'Go, go,'-- +If you'll confess he brought home noble prize-- +As you must needs, for you all clapp'd your hands +And cried 'Inestimable!'--why do you now +The issue of your proper wisdoms rate, +And do a deed that fortune never did, +Beggar the estimation which you prized +Richer than sea and land? O, theft most base, +That we have stol'n what we do fear to keep! +But, thieves, unworthy of a thing so stol'n, +That in their country did them that disgrace, +We fear to warrant in our native place! + +CASSANDRA: + +PRIAM: +What noise? what shriek is this? + +TROILUS: +'Tis our mad sister, I do know her voice. + +CASSANDRA: + +HECTOR: +It is Cassandra. + +CASSANDRA: +Cry, Trojans, cry! lend me ten thousand eyes, +And I will fill them with prophetic tears. + +HECTOR: +Peace, sister, peace! + +CASSANDRA: +Virgins and boys, mid-age and wrinkled eld, +Soft infancy, that nothing canst but cry, +Add to my clamours! let us pay betimes +A moiety of that mass of moan to come. +Cry, Trojans, cry! practise your eyes with tears! +Troy must not be, nor goodly Ilion stand; +Our firebrand brother, Paris, burns us all. +Cry, Trojans, cry! a Helen and a woe: +Cry, cry! Troy burns, or else let Helen go. + +HECTOR: +Now, youthful Troilus, do not these high strains +Of divination in our sister work +Some touches of remorse? or is your blood +So madly hot that no discourse of reason, +Nor fear of bad success in a bad cause, +Can qualify the same? + +TROILUS: +Why, brother Hector, +We may not think the justness of each act +Such and no other than event doth form it, +Nor once deject the courage of our minds, +Because Cassandra's mad: her brain-sick raptures +Cannot distaste the goodness of a quarrel +Which hath our several honours all engaged +To make it gracious. For my private part, +I am no more touch'd than all Priam's sons: +And Jove forbid there should be done amongst us +Such things as might offend the weakest spleen +To fight for and maintain! + +PARIS: +Else might the world convince of levity +As well my undertakings as your counsels: +But I attest the gods, your full consent +Gave wings to my propension and cut off +All fears attending on so dire a project. +For what, alas, can these my single arms? +What Propugnation is in one man's valour, +To stand the push and enmity of those +This quarrel would excite? Yet, I protest, +Were I alone to pass the difficulties +And had as ample power as I have will, +Paris should ne'er retract what he hath done, +Nor faint in the pursuit. + +PRIAM: +Paris, you speak +Like one besotted on your sweet delights: +You have the honey still, but these the gall; +So to be valiant is no praise at all. + +PARIS: +Sir, I propose not merely to myself +The pleasures such a beauty brings with it; +But I would have the soil of her fair rape +Wiped off, in honourable keeping her. +What treason were it to the ransack'd queen, +Disgrace to your great worths and shame to me, +Now to deliver her possession up +On terms of base compulsion! Can it be +That so degenerate a strain as this +Should once set footing in your generous bosoms? +There's not the meanest spirit on our party +Without a heart to dare or sword to draw +When Helen is defended, nor none so noble +Whose life were ill bestow'd or death unfamed +Where Helen is the subject; then, I say, +Well may we fight for her whom, we know well, +The world's large spaces cannot parallel. + +HECTOR: +Paris and Troilus, you have both said well, +And on the cause and question now in hand +Have glozed, but superficially: not much +Unlike young men, whom Aristotle thought +Unfit to hear moral philosophy: +The reasons you allege do more conduce +To the hot passion of distemper'd blood +Than to make up a free determination +'Twixt right and wrong, for pleasure and revenge +Have ears more deaf than adders to the voice +Of any true decision. Nature craves +All dues be render'd to their owners: now, +What nearer debt in all humanity +Than wife is to the husband? If this law +Of nature be corrupted through affection, +And that great minds, of partial indulgence +To their benumbed wills, resist the same, +There is a law in each well-order'd nation +To curb those raging appetites that are +Most disobedient and refractory. +If Helen then be wife to Sparta's king, +As it is known she is, these moral laws +Of nature and of nations speak aloud +To have her back return'd: thus to persist +In doing wrong extenuates not wrong, +But makes it much more heavy. Hector's opinion +Is this in way of truth; yet ne'ertheless, +My spritely brethren, I propend to you +In resolution to keep Helen still, +For 'tis a cause that hath no mean dependance +Upon our joint and several dignities. + +TROILUS: +Why, there you touch'd the life of our design: +Were it not glory that we more affected +Than the performance of our heaving spleens, +I would not wish a drop of Trojan blood +Spent more in her defence. But, worthy Hector, +She is a theme of honour and renown, +A spur to valiant and magnanimous deeds, +Whose present courage may beat down our foes, +And fame in time to come canonize us; +For, I presume, brave Hector would not lose +So rich advantage of a promised glory +As smiles upon the forehead of this action +For the wide world's revenue. + +HECTOR: +I am yours, +You valiant offspring of great Priamus. +I have a roisting challenge sent amongst +The dun and factious nobles of the Greeks +Will strike amazement to their drowsy spirits: +I was advertised their great general slept, +Whilst emulation in the army crept: +This, I presume, will wake him. + +THERSITES: +How now, Thersites! what lost in the labyrinth of +thy fury! Shall the elephant Ajax carry it thus? He +beats me, and I rail at him: O, worthy satisfaction! +would it were otherwise; that I could beat him, +whilst he railed at me. 'Sfoot, I'll learn to +conjure and raise devils, but I'll see some issue of +my spiteful execrations. Then there's Achilles, a +rare enginer! If Troy be not taken till these two +undermine it, the walls will stand till they fall of +themselves. O thou great thunder-darter of Olympus, +forget that thou art Jove, the king of gods and, +Mercury, lose all the serpentine craft of thy +caduceus, if ye take not that little, little less +than little wit from them that they have! which +short-armed ignorance itself knows is so abundant +scarce, it will not in circumvention deliver a fly +from a spider, without drawing their massy irons and +cutting the web. After this, the vengeance on the +whole camp! or rather, the bone-ache! for that, +methinks, is the curse dependent on those that war +for a placket. I have said my prayers and devil Envy +say Amen. What ho! my Lord Achilles! + +PATROCLUS: +Who's there? Thersites! Good Thersites, come in and rail. + +THERSITES: +If I could have remembered a gilt counterfeit, thou +wouldst not have slipped out of my contemplation: but +it is no matter; thyself upon thyself! The common +curse of mankind, folly and ignorance, be thine in +great revenue! heaven bless thee from a tutor, and +discipline come not near thee! Let thy blood be thy +direction till thy death! then if she that lays thee +out says thou art a fair corse, I'll be sworn and +sworn upon't she never shrouded any but lazars. +Amen. Where's Achilles? + +PATROCLUS: +What, art thou devout? wast thou in prayer? + +THERSITES: +Ay: the heavens hear me! + +ACHILLES: +Who's there? + +PATROCLUS: +Thersites, my lord. + +ACHILLES: +Where, where? Art thou come? why, my cheese, my +digestion, why hast thou not served thyself in to +my table so many meals? Come, what's Agamemnon? + +THERSITES: +Thy commander, Achilles. Then tell me, Patroclus, +what's Achilles? + +PATROCLUS: +Thy lord, Thersites: then tell me, I pray thee, +what's thyself? + +THERSITES: +Thy knower, Patroclus: then tell me, Patroclus, +what art thou? + +PATROCLUS: +Thou mayst tell that knowest. + +ACHILLES: +O, tell, tell. + +THERSITES: +I'll decline the whole question. Agamemnon commands +Achilles; Achilles is my lord; I am Patroclus' +knower, and Patroclus is a fool. + +PATROCLUS: +You rascal! + +THERSITES: +Peace, fool! I have not done. + +ACHILLES: +He is a privileged man. Proceed, Thersites. + +THERSITES: +Agamemnon is a fool; Achilles is a fool; Thersites +is a fool, and, as aforesaid, Patroclus is a fool. + +ACHILLES: +Derive this; come. + +THERSITES: +Agamemnon is a fool to offer to command Achilles; +Achilles is a fool to be commanded of Agamemnon; +Thersites is a fool to serve such a fool, and +Patroclus is a fool positive. + +PATROCLUS: +Why am I a fool? + +THERSITES: +Make that demand of the prover. It suffices me thou +art. Look you, who comes here? + +ACHILLES: +Patroclus, I'll speak with nobody. +Come in with me, Thersites. + +THERSITES: +Here is such patchery, such juggling and such +knavery! all the argument is a cuckold and a +whore; a good quarrel to draw emulous factions +and bleed to death upon. Now, the dry serpigo on +the subject! and war and lechery confound all! + +AGAMEMNON: +Where is Achilles? + +PATROCLUS: +Within his tent; but ill disposed, my lord. + +AGAMEMNON: +Let it be known to him that we are here. +He shent our messengers; and we lay by +Our appertainments, visiting of him: +Let him be told so; lest perchance he think +We dare not move the question of our place, +Or know not what we are. + +PATROCLUS: +I shall say so to him. + +ULYSSES: +We saw him at the opening of his tent: +He is not sick. + +AJAX: +Yes, lion-sick, sick of proud heart: you may call it +melancholy, if you will favour the man; but, by my +head, 'tis pride: but why, why? let him show us the +cause. A word, my lord. + +NESTOR: +What moves Ajax thus to bay at him? + +ULYSSES: +Achilles hath inveigled his fool from him. + +NESTOR: +Who, Thersites? + +ULYSSES: +He. + +NESTOR: +Then will Ajax lack matter, if he have lost his argument. + +ULYSSES: +No, you see, he is his argument that has his +argument, Achilles. + +NESTOR: +All the better; their fraction is more our wish than +their faction: but it was a strong composure a fool +could disunite. + +ULYSSES: +The amity that wisdom knits not, folly may easily +untie. Here comes Patroclus. + +NESTOR: +No Achilles with him. + +ULYSSES: +The elephant hath joints, but none for courtesy: +his legs are legs for necessity, not for flexure. + +PATROCLUS: +Achilles bids me say, he is much sorry, +If any thing more than your sport and pleasure +Did move your greatness and this noble state +To call upon him; he hopes it is no other +But for your health and your digestion sake, +And after-dinner's breath. + +AGAMEMNON: +Hear you, Patroclus: +We are too well acquainted with these answers: +But his evasion, wing'd thus swift with scorn, +Cannot outfly our apprehensions. +Much attribute he hath, and much the reason +Why we ascribe it to him; yet all his virtues, +Not virtuously on his own part beheld, +Do in our eyes begin to lose their gloss, +Yea, like fair fruit in an unwholesome dish, +Are like to rot untasted. Go and tell him, +We come to speak with him; and you shall not sin, +If you do say we think him over-proud +And under-honest, in self-assumption greater +Than in the note of judgment; and worthier +than himself +Here tend the savage strangeness he puts on, +Disguise the holy strength of their command, +And underwrite in an observing kind +His humorous predominance; yea, watch +His pettish lunes, his ebbs, his flows, as if +The passage and whole carriage of this action +Rode on his tide. Go tell him this, and add, +That if he overhold his price so much, +We'll none of him; but let him, like an engine +Not portable, lie under this report: +'Bring action hither, this cannot go to war: +A stirring dwarf we do allowance give +Before a sleeping giant.' Tell him so. + +PATROCLUS: +I shall; and bring his answer presently. + +AGAMEMNON: +In second voice we'll not be satisfied; +We come to speak with him. Ulysses, enter you. + +AJAX: +What is he more than another? + +AGAMEMNON: +No more than what he thinks he is. + +AJAX: +Is he so much? Do you not think he thinks himself a +better man than I am? + +AGAMEMNON: +No question. + +AJAX: +Will you subscribe his thought, and say he is? + +AGAMEMNON: +No, noble Ajax; you are as strong, as valiant, as +wise, no less noble, much more gentle, and altogether +more tractable. + +AJAX: +Why should a man be proud? How doth pride grow? I +know not what pride is. + +AGAMEMNON: +Your mind is the clearer, Ajax, and your virtues the +fairer. He that is proud eats up himself: pride is +his own glass, his own trumpet, his own chronicle; +and whatever praises itself but in the deed, devours +the deed in the praise. + +AJAX: +I do hate a proud man, as I hate the engendering of toads. + +NESTOR: +Yet he loves himself: is't not strange? + +ULYSSES: +Achilles will not to the field to-morrow. + +AGAMEMNON: +What's his excuse? + +ULYSSES: +He doth rely on none, +But carries on the stream of his dispose +Without observance or respect of any, +In will peculiar and in self-admission. + +AGAMEMNON: +Why will he not upon our fair request +Untent his person and share the air with us? + +ULYSSES: +Things small as nothing, for request's sake only, +He makes important: possess'd he is with greatness, +And speaks not to himself but with a pride +That quarrels at self-breath: imagined worth +Holds in his blood such swoln and hot discourse +That 'twixt his mental and his active parts +Kingdom'd Achilles in commotion rages +And batters down himself: what should I say? +He is so plaguy proud that the death-tokens of it +Cry 'No recovery.' + +AGAMEMNON: +Let Ajax go to him. +Dear lord, go you and greet him in his tent: +'Tis said he holds you well, and will be led +At your request a little from himself. + +ULYSSES: +O Agamemnon, let it not be so! +We'll consecrate the steps that Ajax makes +When they go from Achilles: shall the proud lord +That bastes his arrogance with his own seam +And never suffers matter of the world +Enter his thoughts, save such as do revolve +And ruminate himself, shall he be worshipp'd +Of that we hold an idol more than he? +No, this thrice worthy and right valiant lord +Must not so stale his palm, nobly acquired; +Nor, by my will, assubjugate his merit, +As amply titled as Achilles is, +By going to Achilles: +That were to enlard his fat already pride +And add more coals to Cancer when he burns +With entertaining great Hyperion. +This lord go to him! Jupiter forbid, +And say in thunder 'Achilles go to him.' + +NESTOR: + +DIOMEDES: + +AJAX: +If I go to him, with my armed fist I'll pash him o'er the face. + +AGAMEMNON: +O, no, you shall not go. + +AJAX: +An a' be proud with me, I'll pheeze his pride: +Let me go to him. + +ULYSSES: +Not for the worth that hangs upon our quarrel. + +AJAX: +A paltry, insolent fellow! + +NESTOR: +How he describes himself! + +AJAX: +Can he not be sociable? + +ULYSSES: +The raven chides blackness. + +AJAX: +I'll let his humours blood. + +AGAMEMNON: +He will be the physician that should be the patient. + +AJAX: +An all men were o' my mind,-- + +ULYSSES: +Wit would be out of fashion. + +AJAX: +A' should not bear it so, a' should eat swords first: +shall pride carry it? + +NESTOR: +An 'twould, you'ld carry half. + +ULYSSES: +A' would have ten shares. + +AJAX: +I will knead him; I'll make him supple. + +NESTOR: +He's not yet through warm: force him with praises: +pour in, pour in; his ambition is dry. + +ULYSSES: + +NESTOR: +Our noble general, do not do so. + +DIOMEDES: +You must prepare to fight without Achilles. + +ULYSSES: +Why, 'tis this naming of him does him harm. +Here is a man--but 'tis before his face; +I will be silent. + +NESTOR: +Wherefore should you so? +He is not emulous, as Achilles is. + +ULYSSES: +Know the whole world, he is as valiant. + +AJAX: +A whoreson dog, that shall pelter thus with us! +Would he were a Trojan! + +NESTOR: +What a vice were it in Ajax now,-- + +ULYSSES: +If he were proud,-- + +DIOMEDES: +Or covetous of praise,-- + +ULYSSES: +Ay, or surly borne,-- + +DIOMEDES: +Or strange, or self-affected! + +ULYSSES: +Thank the heavens, lord, thou art of sweet composure; +Praise him that got thee, she that gave thee suck: +Famed be thy tutor, and thy parts of nature +Thrice famed, beyond all erudition: +But he that disciplined thy arms to fight, +Let Mars divide eternity in twain, +And give him half: and, for thy vigour, +Bull-bearing Milo his addition yield +To sinewy Ajax. I will not praise thy wisdom, +Which, like a bourn, a pale, a shore, confines +Thy spacious and dilated parts: here's Nestor; +Instructed by the antiquary times, +He must, he is, he cannot but be wise: +Put pardon, father Nestor, were your days +As green as Ajax' and your brain so temper'd, +You should not have the eminence of him, +But be as Ajax. + +AJAX: +Shall I call you father? + +NESTOR: +Ay, my good son. + +DIOMEDES: +Be ruled by him, Lord Ajax. + +ULYSSES: +There is no tarrying here; the hart Achilles +Keeps thicket. Please it our great general +To call together all his state of war; +Fresh kings are come to Troy: to-morrow +We must with all our main of power stand fast: +And here's a lord,--come knights from east to west, +And cull their flower, Ajax shall cope the best. + +AGAMEMNON: +Go we to council. Let Achilles sleep: +Light boats sail swift, though greater hulks draw deep. + +PANDARUS: +Friend, you! pray you, a word: do not you follow +the young Lord Paris? + +Servant: +Ay, sir, when he goes before me. + +PANDARUS: +You depend upon him, I mean? + +Servant: +Sir, I do depend upon the lord. + +PANDARUS: +You depend upon a noble gentleman; I must needs +praise him. + +Servant: +The lord be praised! + +PANDARUS: +You know me, do you not? + +Servant: +Faith, sir, superficially. + +PANDARUS: +Friend, know me better; I am the Lord Pandarus. + +Servant: +I hope I shall know your honour better. + +PANDARUS: +I do desire it. + +Servant: +You are in the state of grace. + +PANDARUS: +Grace! not so, friend: honour and lordship are my titles. +What music is this? + +Servant: +I do but partly know, sir: it is music in parts. + +PANDARUS: +Know you the musicians? + +Servant: +Wholly, sir. + +PANDARUS: +Who play they to? + +Servant: +To the hearers, sir. + +PANDARUS: +At whose pleasure, friend + +Servant: +At mine, sir, and theirs that love music. + +PANDARUS: +Command, I mean, friend. + +Servant: +Who shall I command, sir? + +PANDARUS: +Friend, we understand not one another: I am too +courtly and thou art too cunning. At whose request +do these men play? + +Servant: +That's to 't indeed, sir: marry, sir, at the request +of Paris my lord, who's there in person; with him, +the mortal Venus, the heart-blood of beauty, love's +invisible soul,-- + +PANDARUS: +Who, my cousin Cressida? + +Servant: +No, sir, Helen: could you not find out that by her +attributes? + +PANDARUS: +It should seem, fellow, that thou hast not seen the +Lady Cressida. I come to speak with Paris from the +Prince Troilus: I will make a complimental assault +upon him, for my business seethes. + +Servant: +Sodden business! there's a stewed phrase indeed! + +PANDARUS: +Fair be to you, my lord, and to all this fair +company! fair desires, in all fair measure, +fairly guide them! especially to you, fair queen! +fair thoughts be your fair pillow! + +HELEN: +Dear lord, you are full of fair words. + +PANDARUS: +You speak your fair pleasure, sweet queen. Fair +prince, here is good broken music. + +PARIS: +You have broke it, cousin: and, by my life, you +shall make it whole again; you shall piece it out +with a piece of your performance. Nell, he is full +of harmony. + +PANDARUS: +Truly, lady, no. + +HELEN: +O, sir,-- + +PANDARUS: +Rude, in sooth; in good sooth, very rude. + +PARIS: +Well said, my lord! well, you say so in fits. + +PANDARUS: +I have business to my lord, dear queen. My lord, +will you vouchsafe me a word? + +HELEN: +Nay, this shall not hedge us out: we'll hear you +sing, certainly. + +PANDARUS: +Well, sweet queen. you are pleasant with me. But, +marry, thus, my lord: my dear lord and most esteemed +friend, your brother Troilus,-- + +HELEN: +My Lord Pandarus; honey-sweet lord,-- + +PANDARUS: +Go to, sweet queen, to go:--commends himself most +affectionately to you,-- + +HELEN: +You shall not bob us out of our melody: if you do, +our melancholy upon your head! + +PANDARUS: +Sweet queen, sweet queen! that's a sweet queen, i' faith. + +HELEN: +And to make a sweet lady sad is a sour offence. + +PANDARUS: +Nay, that shall not serve your turn; that shall not, +in truth, la. Nay, I care not for such words; no, +no. And, my lord, he desires you, that if the king +call for him at supper, you will make his excuse. + +HELEN: +My Lord Pandarus,-- + +PANDARUS: +What says my sweet queen, my very very sweet queen? + +PARIS: +What exploit's in hand? where sups he to-night? + +HELEN: +Nay, but, my lord,-- + +PANDARUS: +What says my sweet queen? My cousin will fall out +with you. You must not know where he sups. + +PARIS: +I'll lay my life, with my disposer Cressida. + +PANDARUS: +No, no, no such matter; you are wide: come, your +disposer is sick. + +PARIS: +Well, I'll make excuse. + +PANDARUS: +Ay, good my lord. Why should you say Cressida? no, +your poor disposer's sick. + +PARIS: +I spy. + +PANDARUS: +You spy! what do you spy? Come, give me an +instrument. Now, sweet queen. + +HELEN: +Why, this is kindly done. + +PANDARUS: +My niece is horribly in love with a thing you have, +sweet queen. + +HELEN: +She shall have it, my lord, if it be not my lord Paris. + +PANDARUS: +He! no, she'll none of him; they two are twain. + +HELEN: +Falling in, after falling out, may make them three. + +PANDARUS: +Come, come, I'll hear no more of this; I'll sing +you a song now. + +HELEN: +Ay, ay, prithee now. By my troth, sweet lord, thou +hast a fine forehead. + +PANDARUS: +Ay, you may, you may. + +HELEN: +Let thy song be love: this love will undo us all. +O Cupid, Cupid, Cupid! + +PANDARUS: +Love! ay, that it shall, i' faith. + +PARIS: +Ay, good now, love, love, nothing but love. + +PANDARUS: +In good troth, it begins so. +Love, love, nothing but love, still more! +For, O, love's bow +Shoots buck and doe: +The shaft confounds, +Not that it wounds, +But tickles still the sore. +These lovers cry Oh! oh! they die! +Yet that which seems the wound to kill, +Doth turn oh! oh! to ha! ha! he! +So dying love lives still: +Oh! oh! a while, but ha! ha! ha! +Oh! oh! groans out for ha! ha! ha! +Heigh-ho! + +HELEN: +In love, i' faith, to the very tip of the nose. + +PARIS: +He eats nothing but doves, love, and that breeds hot +blood, and hot blood begets hot thoughts, and hot +thoughts beget hot deeds, and hot deeds is love. + +PANDARUS: +Is this the generation of love? hot blood, hot +thoughts, and hot deeds? Why, they are vipers: +is love a generation of vipers? Sweet lord, who's +a-field to-day? + +PARIS: +Hector, Deiphobus, Helenus, Antenor, and all the +gallantry of Troy: I would fain have armed to-day, +but my Nell would not have it so. How chance my +brother Troilus went not? + +HELEN: +He hangs the lip at something: you know all, Lord Pandarus. + +PANDARUS: +Not I, honey-sweet queen. I long to hear how they +sped to-day. You'll remember your brother's excuse? + +PARIS: +To a hair. + +PANDARUS: +Farewell, sweet queen. + +HELEN: +Commend me to your niece. + +PANDARUS: +I will, sweet queen. + +PARIS: +They're come from field: let us to Priam's hall, +To greet the warriors. Sweet Helen, I must woo you +To help unarm our Hector: his stubborn buckles, +With these your white enchanting fingers touch'd, +Shall more obey than to the edge of steel +Or force of Greekish sinews; you shall do more +Than all the island kings,--disarm great Hector. + +HELEN: +'Twill make us proud to be his servant, Paris; +Yea, what he shall receive of us in duty +Gives us more palm in beauty than we have, +Yea, overshines ourself. + +PARIS: +Sweet, above thought I love thee. + +PANDARUS: +How now! where's thy master? at my cousin +Cressida's? + +Boy: +No, sir; he stays for you to conduct him thither. + +PANDARUS: +O, here he comes. +How now, how now! + +TROILUS: +Sirrah, walk off. + +PANDARUS: +Have you seen my cousin? + +TROILUS: +No, Pandarus: I stalk about her door, +Like a strange soul upon the Stygian banks +Staying for waftage. O, be thou my Charon, +And give me swift transportance to those fields +Where I may wallow in the lily-beds +Proposed for the deserver! O gentle Pandarus, +From Cupid's shoulder pluck his painted wings +And fly with me to Cressid! + +PANDARUS: +Walk here i' the orchard, I'll bring her straight. + +TROILUS: +I am giddy; expectation whirls me round. +The imaginary relish is so sweet +That it enchants my sense: what will it be, +When that the watery palate tastes indeed +Love's thrice repured nectar? death, I fear me, +Swooning destruction, or some joy too fine, +Too subtle-potent, tuned too sharp in sweetness, +For the capacity of my ruder powers: +I fear it much; and I do fear besides, +That I shall lose distinction in my joys; +As doth a battle, when they charge on heaps +The enemy flying. + +PANDARUS: +She's making her ready, she'll come straight: you +must be witty now. She does so blush, and fetches +her wind so short, as if she were frayed with a +sprite: I'll fetch her. It is the prettiest +villain: she fetches her breath as short as a +new-ta'en sparrow. + +TROILUS: +Even such a passion doth embrace my bosom: +My heart beats thicker than a feverous pulse; +And all my powers do their bestowing lose, +Like vassalage at unawares encountering +The eye of majesty. + +PANDARUS: +Come, come, what need you blush? shame's a baby. +Here she is now: swear the oaths now to her that +you have sworn to me. What, are you gone again? +you must be watched ere you be made tame, must you? +Come your ways, come your ways; an you draw backward, +we'll put you i' the fills. Why do you not speak to +her? Come, draw this curtain, and let's see your +picture. Alas the day, how loath you are to offend +daylight! an 'twere dark, you'ld close sooner. +So, so; rub on, and kiss the mistress. How now! +a kiss in fee-farm! build there, carpenter; the air +is sweet. Nay, you shall fight your hearts out ere +I part you. The falcon as the tercel, for all the +ducks i' the river: go to, go to. + +TROILUS: +You have bereft me of all words, lady. + +PANDARUS: +Words pay no debts, give her deeds: but she'll +bereave you o' the deeds too, if she call your +activity in question. What, billing again? Here's +'In witness whereof the parties interchangeably'-- +Come in, come in: I'll go get a fire. + +CRESSIDA: +Will you walk in, my lord? + +TROILUS: +O Cressida, how often have I wished me thus! + +CRESSIDA: +Wished, my lord! The gods grant,--O my lord! + +TROILUS: +What should they grant? what makes this pretty +abruption? What too curious dreg espies my sweet +lady in the fountain of our love? + +CRESSIDA: +More dregs than water, if my fears have eyes. + +TROILUS: +Fears make devils of cherubims; they never see truly. + +CRESSIDA: +Blind fear, that seeing reason leads, finds safer +footing than blind reason stumbling without fear: to +fear the worst oft cures the worse. + +TROILUS: +O, let my lady apprehend no fear: in all Cupid's +pageant there is presented no monster. + +CRESSIDA: +Nor nothing monstrous neither? + +TROILUS: +Nothing, but our undertakings; when we vow to weep +seas, live in fire, eat rocks, tame tigers; thinking +it harder for our mistress to devise imposition +enough than for us to undergo any difficulty imposed. +This is the monstruosity in love, lady, that the will +is infinite and the execution confined, that the +desire is boundless and the act a slave to limit. + +CRESSIDA: +They say all lovers swear more performance than they +are able and yet reserve an ability that they never +perform, vowing more than the perfection of ten and +discharging less than the tenth part of one. They +that have the voice of lions and the act of hares, +are they not monsters? + +TROILUS: +Are there such? such are not we: praise us as we +are tasted, allow us as we prove; our head shall go +bare till merit crown it: no perfection in reversion +shall have a praise in present: we will not name +desert before his birth, and, being born, his addition +shall be humble. Few words to fair faith: Troilus +shall be such to Cressid as what envy can say worst +shall be a mock for his truth, and what truth can +speak truest not truer than Troilus. + +CRESSIDA: +Will you walk in, my lord? + +PANDARUS: +What, blushing still? have you not done talking yet? + +CRESSIDA: +Well, uncle, what folly I commit, I dedicate to you. + +PANDARUS: +I thank you for that: if my lord get a boy of you, +you'll give him me. Be true to my lord: if he +flinch, chide me for it. + +TROILUS: +You know now your hostages; your uncle's word and my +firm faith. + +PANDARUS: +Nay, I'll give my word for her too: our kindred, +though they be long ere they are wooed, they are +constant being won: they are burs, I can tell you; +they'll stick where they are thrown. + +CRESSIDA: +Boldness comes to me now, and brings me heart. +Prince Troilus, I have loved you night and day +For many weary months. + +TROILUS: +Why was my Cressid then so hard to win? + +CRESSIDA: +Hard to seem won: but I was won, my lord, +With the first glance that ever--pardon me-- +If I confess much, you will play the tyrant. +I love you now; but not, till now, so much +But I might master it: in faith, I lie; +My thoughts were like unbridled children, grown +Too headstrong for their mother. See, we fools! +Why have I blabb'd? who shall be true to us, +When we are so unsecret to ourselves? +But, though I loved you well, I woo'd you not; +And yet, good faith, I wish'd myself a man, +Or that we women had men's privilege +Of speaking first. Sweet, bid me hold my tongue, +For in this rapture I shall surely speak +The thing I shall repent. See, see, your silence, +Cunning in dumbness, from my weakness draws +My very soul of counsel! stop my mouth. + +TROILUS: +And shall, albeit sweet music issues thence. + +PANDARUS: +Pretty, i' faith. + +CRESSIDA: +My lord, I do beseech you, pardon me; +'Twas not my purpose, thus to beg a kiss: +I am ashamed. O heavens! what have I done? +For this time will I take my leave, my lord. + +TROILUS: +Your leave, sweet Cressid! + +PANDARUS: +Leave! an you take leave till to-morrow morning,-- + +CRESSIDA: +Pray you, content you. + +TROILUS: +What offends you, lady? + +CRESSIDA: +Sir, mine own company. + +TROILUS: +You cannot shun Yourself. + +CRESSIDA: +Let me go and try: +I have a kind of self resides with you; +But an unkind self, that itself will leave, +To be another's fool. I would be gone: +Where is my wit? I know not what I speak. + +TROILUS: +Well know they what they speak that speak so wisely. + +CRESSIDA: +Perchance, my lord, I show more craft than love; +And fell so roundly to a large confession, +To angle for your thoughts: but you are wise, +Or else you love not, for to be wise and love +Exceeds man's might; that dwells with gods above. + +TROILUS: +O that I thought it could be in a woman-- +As, if it can, I will presume in you-- +To feed for aye her ramp and flames of love; +To keep her constancy in plight and youth, +Outliving beauty's outward, with a mind +That doth renew swifter than blood decays! +Or that persuasion could but thus convince me, +That my integrity and truth to you +Might be affronted with the match and weight +Of such a winnow'd purity in love; +How were I then uplifted! but, alas! +I am as true as truth's simplicity +And simpler than the infancy of truth. + +CRESSIDA: +In that I'll war with you. + +TROILUS: +O virtuous fight, +When right with right wars who shall be most right! +True swains in love shall in the world to come +Approve their truths by Troilus: when their rhymes, +Full of protest, of oath and big compare, +Want similes, truth tired with iteration, +As true as steel, as plantage to the moon, +As sun to day, as turtle to her mate, +As iron to adamant, as earth to the centre, +Yet, after all comparisons of truth, +As truth's authentic author to be cited, +'As true as Troilus' shall crown up the verse, +And sanctify the numbers. + +CRESSIDA: +Prophet may you be! +If I be false, or swerve a hair from truth, +When time is old and hath forgot itself, +When waterdrops have worn the stones of Troy, +And blind oblivion swallow'd cities up, +And mighty states characterless are grated +To dusty nothing, yet let memory, +From false to false, among false maids in love, +Upbraid my falsehood! when they've said 'as false +As air, as water, wind, or sandy earth, +As fox to lamb, as wolf to heifer's calf, +Pard to the hind, or stepdame to her son,' +'Yea,' let them say, to stick the heart of falsehood, +'As false as Cressid.' + +PANDARUS: +Go to, a bargain made: seal it, seal it; I'll be the +witness. Here I hold your hand, here my cousin's. +If ever you prove false one to another, since I have +taken such pains to bring you together, let all +pitiful goers-between be called to the world's end +after my name; call them all Pandars; let all +constant men be Troiluses, all false women Cressids, +and all brokers-between Pandars! say, amen. + +TROILUS: +Amen. + +CRESSIDA: +Amen. + +PANDARUS: +Amen. Whereupon I will show you a chamber with a +bed; which bed, because it shall not speak of your +pretty encounters, press it to death: away! +And Cupid grant all tongue-tied maidens here +Bed, chamber, Pandar to provide this gear! + +CALCHAS: +Now, princes, for the service I have done you, +The advantage of the time prompts me aloud +To call for recompense. Appear it to your mind +That, through the sight I bear in things to love, +I have abandon'd Troy, left my possession, +Incurr'd a traitor's name; exposed myself, +From certain and possess'd conveniences, +To doubtful fortunes; sequestering from me all +That time, acquaintance, custom and condition +Made tame and most familiar to my nature, +And here, to do you service, am become +As new into the world, strange, unacquainted: +I do beseech you, as in way of taste, +To give me now a little benefit, +Out of those many register'd in promise, +Which, you say, live to come in my behalf. + +AGAMEMNON: +What wouldst thou of us, Trojan? make demand. + +CALCHAS: +You have a Trojan prisoner, call'd Antenor, +Yesterday took: Troy holds him very dear. +Oft have you--often have you thanks therefore-- +Desired my Cressid in right great exchange, +Whom Troy hath still denied: but this Antenor, +I know, is such a wrest in their affairs +That their negotiations all must slack, +Wanting his manage; and they will almost +Give us a prince of blood, a son of Priam, +In change of him: let him be sent, great princes, +And he shall buy my daughter; and her presence +Shall quite strike off all service I have done, +In most accepted pain. + +AGAMEMNON: +Let Diomedes bear him, +And bring us Cressid hither: Calchas shall have +What he requests of us. Good Diomed, +Furnish you fairly for this interchange: +Withal bring word if Hector will to-morrow +Be answer'd in his challenge: Ajax is ready. + +DIOMEDES: +This shall I undertake; and 'tis a burden +Which I am proud to bear. + +ULYSSES: +Achilles stands i' the entrance of his tent: +Please it our general to pass strangely by him, +As if he were forgot; and, princes all, +Lay negligent and loose regard upon him: +I will come last. 'Tis like he'll question me +Why such unplausive eyes are bent on him: +If so, I have derision medicinable, +To use between your strangeness and his pride, +Which his own will shall have desire to drink: +It may be good: pride hath no other glass +To show itself but pride, for supple knees +Feed arrogance and are the proud man's fees. + +AGAMEMNON: +We'll execute your purpose, and put on +A form of strangeness as we pass along: +So do each lord, and either greet him not, +Or else disdainfully, which shall shake him more +Than if not look'd on. I will lead the way. + +ACHILLES: +What, comes the general to speak with me? +You know my mind, I'll fight no more 'gainst Troy. + +AGAMEMNON: +What says Achilles? would he aught with us? + +NESTOR: +Would you, my lord, aught with the general? + +ACHILLES: +No. + +NESTOR: +Nothing, my lord. + +AGAMEMNON: +The better. + +ACHILLES: +Good day, good day. + +MENELAUS: +How do you? how do you? + +ACHILLES: +What, does the cuckold scorn me? + +AJAX: +How now, Patroclus! + +ACHILLES: +Good morrow, Ajax. + +AJAX: +Ha? + +ACHILLES: +Good morrow. + +AJAX: +Ay, and good next day too. + +ACHILLES: +What mean these fellows? Know they not Achilles? + +PATROCLUS: +They pass by strangely: they were used to bend +To send their smiles before them to Achilles; +To come as humbly as they used to creep +To holy altars. + +ACHILLES: +What, am I poor of late? +'Tis certain, greatness, once fall'n out with fortune, +Must fall out with men too: what the declined is +He shall as soon read in the eyes of others +As feel in his own fall; for men, like butterflies, +Show not their mealy wings but to the summer, +And not a man, for being simply man, +Hath any honour, but honour for those honours +That are without him, as place, riches, favour, +Prizes of accident as oft as merit: +Which when they fall, as being slippery standers, +The love that lean'd on them as slippery too, +Do one pluck down another and together +Die in the fall. But 'tis not so with me: +Fortune and I are friends: I do enjoy +At ample point all that I did possess, +Save these men's looks; who do, methinks, find out +Something not worth in me such rich beholding +As they have often given. Here is Ulysses; +I'll interrupt his reading. +How now Ulysses! + +ULYSSES: +Now, great Thetis' son! + +ACHILLES: +What are you reading? + +ULYSSES: +A strange fellow here +Writes me: 'That man, how dearly ever parted, +How much in having, or without or in, +Cannot make boast to have that which he hath, +Nor feels not what he owes, but by reflection; +As when his virtues shining upon others +Heat them and they retort that heat again +To the first giver.' + +ACHILLES: +This is not strange, Ulysses. +The beauty that is borne here in the face +The bearer knows not, but commends itself +To others' eyes; nor doth the eye itself, +That most pure spirit of sense, behold itself, +Not going from itself; but eye to eye opposed +Salutes each other with each other's form; +For speculation turns not to itself, +Till it hath travell'd and is mirror'd there +Where it may see itself. This is not strange at all. + +ULYSSES: +I do not strain at the position,-- +It is familiar,--but at the author's drift; +Who, in his circumstance, expressly proves +That no man is the lord of any thing, +Though in and of him there be much consisting, +Till he communicate his parts to others: +Nor doth he of himself know them for aught +Till he behold them form'd in the applause +Where they're extended; who, like an arch, +reverberates +The voice again, or, like a gate of steel +Fronting the sun, receives and renders back +His figure and his heat. I was much wrapt in this; +And apprehended here immediately +The unknown Ajax. +Heavens, what a man is there! a very horse, +That has he knows not what. Nature, what things there are +Most abject in regard and dear in use! +What things again most dear in the esteem +And poor in worth! Now shall we see to-morrow-- +An act that very chance doth throw upon him-- +Ajax renown'd. O heavens, what some men do, +While some men leave to do! +How some men creep in skittish fortune's hall, +Whiles others play the idiots in her eyes! +How one man eats into another's pride, +While pride is fasting in his wantonness! +To see these Grecian lords!--why, even already +They clap the lubber Ajax on the shoulder, +As if his foot were on brave Hector's breast +And great Troy shrieking. + +ACHILLES: +I do believe it; for they pass'd by me +As misers do by beggars, neither gave to me +Good word nor look: what, are my deeds forgot? + +ULYSSES: +Time hath, my lord, a wallet at his back, +Wherein he puts alms for oblivion, +A great-sized monster of ingratitudes: +Those scraps are good deeds past; which are devour'd +As fast as they are made, forgot as soon +As done: perseverance, dear my lord, +Keeps honour bright: to have done is to hang +Quite out of fashion, like a rusty mail +In monumental mockery. Take the instant way; +For honour travels in a strait so narrow, +Where one but goes abreast: keep then the path; +For emulation hath a thousand sons +That one by one pursue: if you give way, +Or hedge aside from the direct forthright, +Like to an enter'd tide, they all rush by +And leave you hindmost; +Or like a gallant horse fall'n in first rank, +Lie there for pavement to the abject rear, +O'er-run and trampled on: then what they do in present, +Though less than yours in past, must o'ertop yours; +For time is like a fashionable host +That slightly shakes his parting guest by the hand, +And with his arms outstretch'd, as he would fly, +Grasps in the comer: welcome ever smiles, +And farewell goes out sighing. O, let not +virtue seek +Remuneration for the thing it was; +For beauty, wit, +High birth, vigour of bone, desert in service, +Love, friendship, charity, are subjects all +To envious and calumniating time. +One touch of nature makes the whole world kin, +That all with one consent praise new-born gawds, +Though they are made and moulded of things past, +And give to dust that is a little gilt +More laud than gilt o'er-dusted. +The present eye praises the present object. +Then marvel not, thou great and complete man, +That all the Greeks begin to worship Ajax; +Since things in motion sooner catch the eye +Than what not stirs. The cry went once on thee, +And still it might, and yet it may again, +If thou wouldst not entomb thyself alive +And case thy reputation in thy tent; +Whose glorious deeds, but in these fields of late, +Made emulous missions 'mongst the gods themselves +And drave great Mars to faction. + +ACHILLES: +Of this my privacy +I have strong reasons. + +ULYSSES: +But 'gainst your privacy +The reasons are more potent and heroical: +'Tis known, Achilles, that you are in love +With one of Priam's daughters. + +ACHILLES: +Ha! known! + +ULYSSES: +Is that a wonder? +The providence that's in a watchful state +Knows almost every grain of Plutus' gold, +Finds bottom in the uncomprehensive deeps, +Keeps place with thought and almost, like the gods, +Does thoughts unveil in their dumb cradles. +There is a mystery--with whom relation +Durst never meddle--in the soul of state; +Which hath an operation more divine +Than breath or pen can give expressure to: +All the commerce that you have had with Troy +As perfectly is ours as yours, my lord; +And better would it fit Achilles much +To throw down Hector than Polyxena: +But it must grieve young Pyrrhus now at home, +When fame shall in our islands sound her trump, +And all the Greekish girls shall tripping sing, +'Great Hector's sister did Achilles win, +But our great Ajax bravely beat down him.' +Farewell, my lord: I as your lover speak; +The fool slides o'er the ice that you should break. + +PATROCLUS: +To this effect, Achilles, have I moved you: +A woman impudent and mannish grown +Is not more loathed than an effeminate man +In time of action. I stand condemn'd for this; +They think my little stomach to the war +And your great love to me restrains you thus: +Sweet, rouse yourself; and the weak wanton Cupid +Shall from your neck unloose his amorous fold, +And, like a dew-drop from the lion's mane, +Be shook to air. + +ACHILLES: +Shall Ajax fight with Hector? + +PATROCLUS: +Ay, and perhaps receive much honour by him. + +ACHILLES: +I see my reputation is at stake +My fame is shrewdly gored. + +PATROCLUS: +O, then, beware; +Those wounds heal ill that men do give themselves: +Omission to do what is necessary +Seals a commission to a blank of danger; +And danger, like an ague, subtly taints +Even then when we sit idly in the sun. + +ACHILLES: +Go call Thersites hither, sweet Patroclus: +I'll send the fool to Ajax and desire him +To invite the Trojan lords after the combat +To see us here unarm'd: I have a woman's longing, +An appetite that I am sick withal, +To see great Hector in his weeds of peace, +To talk with him and to behold his visage, +Even to my full of view. +A labour saved! + +THERSITES: +A wonder! + +ACHILLES: +What? + +THERSITES: +Ajax goes up and down the field, asking for himself. + +ACHILLES: +How so? + +THERSITES: +He must fight singly to-morrow with Hector, and is so +prophetically proud of an heroical cudgelling that he +raves in saying nothing. + +ACHILLES: +How can that be? + +THERSITES: +Why, he stalks up and down like a peacock,--a stride +and a stand: ruminates like an hostess that hath no +arithmetic but her brain to set down her reckoning: +bites his lip with a politic regard, as who should +say 'There were wit in this head, an 'twould out;' +and so there is, but it lies as coldly in him as fire +in a flint, which will not show without knocking. +The man's undone forever; for if Hector break not his +neck i' the combat, he'll break 't himself in +vain-glory. He knows not me: I said 'Good morrow, +Ajax;' and he replies 'Thanks, Agamemnon.' What think +you of this man that takes me for the general? He's +grown a very land-fish, language-less, a monster. +A plague of opinion! a man may wear it on both +sides, like a leather jerkin. + +ACHILLES: +Thou must be my ambassador to him, Thersites. + +THERSITES: +Who, I? why, he'll answer nobody; he professes not +answering: speaking is for beggars; he wears his +tongue in's arms. I will put on his presence: let +Patroclus make demands to me, you shall see the +pageant of Ajax. + +ACHILLES: +To him, Patroclus; tell him I humbly desire the +valiant Ajax to invite the most valorous Hector +to come unarmed to my tent, and to procure +safe-conduct for his person of the magnanimous +and most illustrious six-or-seven-times-honoured +captain-general of the Grecian army, Agamemnon, +et cetera. Do this. + +PATROCLUS: +Jove bless great Ajax! + +THERSITES: +Hum! + +PATROCLUS: +I come from the worthy Achilles,-- + +THERSITES: +Ha! + +PATROCLUS: +Who most humbly desires you to invite Hector to his tent,-- + +THERSITES: +Hum! + +PATROCLUS: +And to procure safe-conduct from Agamemnon. + +THERSITES: +Agamemnon! + +PATROCLUS: +Ay, my lord. + +THERSITES: +Ha! + +PATROCLUS: +What say you to't? + +THERSITES: +God b' wi' you, with all my heart. + +PATROCLUS: +Your answer, sir. + +THERSITES: +If to-morrow be a fair day, by eleven o'clock it will +go one way or other: howsoever, he shall pay for me +ere he has me. + +PATROCLUS: +Your answer, sir. + +THERSITES: +Fare you well, with all my heart. + +ACHILLES: +Why, but he is not in this tune, is he? + +THERSITES: +No, but he's out o' tune thus. What music will be in +him when Hector has knocked out his brains, I know +not; but, I am sure, none, unless the fiddler Apollo +get his sinews to make catlings on. + +ACHILLES: +Come, thou shalt bear a letter to him straight. + +THERSITES: +Let me bear another to his horse; for that's the more +capable creature. + +ACHILLES: +My mind is troubled, like a fountain stirr'd; +And I myself see not the bottom of it. + +THERSITES: +Would the fountain of your mind were clear again, +that I might water an ass at it! I had rather be a +tick in a sheep than such a valiant ignorance. + +PARIS: +See, ho! who is that there? + +DEIPHOBUS: +It is the Lord AEneas. + +AENEAS: +Is the prince there in person? +Had I so good occasion to lie long +As you, prince Paris, nothing but heavenly business +Should rob my bed-mate of my company. + +DIOMEDES: +That's my mind too. Good morrow, Lord AEneas. + +PARIS: +A valiant Greek, AEneas,--take his hand,-- +Witness the process of your speech, wherein +You told how Diomed, a whole week by days, +Did haunt you in the field. + +AENEAS: +Health to you, valiant sir, +During all question of the gentle truce; +But when I meet you arm'd, as black defiance +As heart can think or courage execute. + +DIOMEDES: +The one and other Diomed embraces. +Our bloods are now in calm; and, so long, health! +But when contention and occasion meet, +By Jove, I'll play the hunter for thy life +With all my force, pursuit and policy. + +AENEAS: +And thou shalt hunt a lion, that will fly +With his face backward. In humane gentleness, +Welcome to Troy! now, by Anchises' life, +Welcome, indeed! By Venus' hand I swear, +No man alive can love in such a sort +The thing he means to kill more excellently. + +DIOMEDES: +We sympathize: Jove, let AEneas live, +If to my sword his fate be not the glory, +A thousand complete courses of the sun! +But, in mine emulous honour, let him die, +With every joint a wound, and that to-morrow! + +AENEAS: +We know each other well. + +DIOMEDES: +We do; and long to know each other worse. + +PARIS: +This is the most despiteful gentle greeting, +The noblest hateful love, that e'er I heard of. +What business, lord, so early? + +AENEAS: +I was sent for to the king; but why, I know not. + +PARIS: +His purpose meets you: 'twas to bring this Greek +To Calchas' house, and there to render him, +For the enfreed Antenor, the fair Cressid: +Let's have your company, or, if you please, +Haste there before us: I constantly do think-- +Or rather, call my thought a certain knowledge-- +My brother Troilus lodges there to-night: +Rouse him and give him note of our approach. +With the whole quality wherefore: I fear +We shall be much unwelcome. + +AENEAS: +That I assure you: +Troilus had rather Troy were borne to Greece +Than Cressid borne from Troy. + +PARIS: +There is no help; +The bitter disposition of the time +Will have it so. On, lord; we'll follow you. + +AENEAS: +Good morrow, all. + +PARIS: +And tell me, noble Diomed, faith, tell me true, +Even in the soul of sound good-fellowship, +Who, in your thoughts, merits fair Helen best, +Myself or Menelaus? + +DIOMEDES: +Both alike: +He merits well to have her, that doth seek her, +Not making any scruple of her soilure, +With such a hell of pain and world of charge, +And you as well to keep her, that defend her, +Not palating the taste of her dishonour, +With such a costly loss of wealth and friends: +He, like a puling cuckold, would drink up +The lees and dregs of a flat tamed piece; +You, like a lecher, out of whorish loins +Are pleased to breed out your inheritors: +Both merits poised, each weighs nor less nor more; +But he as he, the heavier for a whore. + +PARIS: +You are too bitter to your countrywoman. + +DIOMEDES: +She's bitter to her country: hear me, Paris: +For every false drop in her bawdy veins +A Grecian's life hath sunk; for every scruple +Of her contaminated carrion weight, +A Trojan hath been slain: since she could speak, +She hath not given so many good words breath +As for her Greeks and Trojans suffer'd death. + +PARIS: +Fair Diomed, you do as chapmen do, +Dispraise the thing that you desire to buy: +But we in silence hold this virtue well, +We'll but commend what we intend to sell. +Here lies our way. + +TROILUS: +Dear, trouble not yourself: the morn is cold. + +CRESSIDA: +Then, sweet my lord, I'll call mine uncle down; +He shall unbolt the gates. + +TROILUS: +Trouble him not; +To bed, to bed: sleep kill those pretty eyes, +And give as soft attachment to thy senses +As infants' empty of all thought! + +CRESSIDA: +Good morrow, then. + +TROILUS: +I prithee now, to bed. + +CRESSIDA: +Are you a-weary of me? + +TROILUS: +O Cressida! but that the busy day, +Waked by the lark, hath roused the ribald crows, +And dreaming night will hide our joys no longer, +I would not from thee. + +CRESSIDA: +Night hath been too brief. + +TROILUS: +Beshrew the witch! with venomous wights she stays +As tediously as hell, but flies the grasps of love +With wings more momentary-swift than thought. +You will catch cold, and curse me. + +CRESSIDA: +Prithee, tarry: +You men will never tarry. +O foolish Cressid! I might have still held off, +And then you would have tarried. Hark! +there's one up. + +PANDARUS: + +TROILUS: +It is your uncle. + +CRESSIDA: +A pestilence on him! now will he be mocking: +I shall have such a life! + +PANDARUS: +How now, how now! how go maidenheads? Here, you +maid! where's my cousin Cressid? + +CRESSIDA: +Go hang yourself, you naughty mocking uncle! +You bring me to do, and then you flout me too. + +PANDARUS: +To do what? to do what? let her say +what: what have I brought you to do? + +CRESSIDA: +Come, come, beshrew your heart! you'll ne'er be good, +Nor suffer others. + +PANDARUS: +Ha! ha! Alas, poor wretch! ah, poor capocchia! +hast not slept to-night? would he not, a naughty +man, let it sleep? a bugbear take him! + +CRESSIDA: +Did not I tell you? Would he were knock'd i' the head! +Who's that at door? good uncle, go and see. +My lord, come you again into my chamber: +You smile and mock me, as if I meant naughtily. + +TROILUS: +Ha, ha! + +CRESSIDA: +Come, you are deceived, I think of no such thing. +How earnestly they knock! Pray you, come in: +I would not for half Troy have you seen here. + +PANDARUS: +Who's there? what's the matter? will you beat +down the door? How now! what's the matter? + +AENEAS: +Good morrow, lord, good morrow. + +PANDARUS: +Who's there? my Lord AEneas! By my troth, +I knew you not: what news with you so early? + +AENEAS: +Is not Prince Troilus here? + +PANDARUS: +Here! what should he do here? + +AENEAS: +Come, he is here, my lord; do not deny him: +It doth import him much to speak with me. + +PANDARUS: +Is he here, say you? 'tis more than I know, I'll +be sworn: for my own part, I came in late. What +should he do here? + +AENEAS: +Who!--nay, then: come, come, you'll do him wrong +ere you're ware: you'll be so true to him, to be +false to him: do not you know of him, but yet go +fetch him hither; go. + +TROILUS: +How now! what's the matter? + +AENEAS: +My lord, I scarce have leisure to salute you, +My matter is so rash: there is at hand +Paris your brother, and Deiphobus, +The Grecian Diomed, and our Antenor +Deliver'd to us; and for him forthwith, +Ere the first sacrifice, within this hour, +We must give up to Diomedes' hand +The Lady Cressida. + +TROILUS: +Is it so concluded? + +AENEAS: +By Priam and the general state of Troy: +They are at hand and ready to effect it. + +TROILUS: +How my achievements mock me! +I will go meet them: and, my Lord AEneas, +We met by chance; you did not find me here. + +AENEAS: +Good, good, my lord; the secrets of nature +Have not more gift in taciturnity. + +PANDARUS: +Is't possible? no sooner got but lost? The devil +take Antenor! the young prince will go mad: a +plague upon Antenor! I would they had broke 's neck! + +CRESSIDA: +How now! what's the matter? who was here? + +PANDARUS: +Ah, ah! + +CRESSIDA: +Why sigh you so profoundly? where's my lord? gone! +Tell me, sweet uncle, what's the matter? + +PANDARUS: +Would I were as deep under the earth as I am above! + +CRESSIDA: +O the gods! what's the matter? + +PANDARUS: +Prithee, get thee in: would thou hadst ne'er been +born! I knew thou wouldst be his death. O, poor +gentleman! A plague upon Antenor! + +CRESSIDA: +Good uncle, I beseech you, on my knees! beseech you, +what's the matter? + +PANDARUS: +Thou must be gone, wench, thou must be gone; thou +art changed for Antenor: thou must to thy father, +and be gone from Troilus: 'twill be his death; +'twill be his bane; he cannot bear it. + +CRESSIDA: +O you immortal gods! I will not go. + +PANDARUS: +Thou must. + +CRESSIDA: +I will not, uncle: I have forgot my father; +I know no touch of consanguinity; +No kin no love, no blood, no soul so near me +As the sweet Troilus. O you gods divine! +Make Cressid's name the very crown of falsehood, +If ever she leave Troilus! Time, force, and death, +Do to this body what extremes you can; +But the strong base and building of my love +Is as the very centre of the earth, +Drawing all things to it. I'll go in and weep,-- + +PANDARUS: +Do, do. + +CRESSIDA: +Tear my bright hair and scratch my praised cheeks, +Crack my clear voice with sobs and break my heart +With sounding Troilus. I will not go from Troy. + +PARIS: +It is great morning, and the hour prefix'd +Of her delivery to this valiant Greek +Comes fast upon. Good my brother Troilus, +Tell you the lady what she is to do, +And haste her to the purpose. + +TROILUS: +Walk into her house; +I'll bring her to the Grecian presently: +And to his hand when I deliver her, +Think it an altar, and thy brother Troilus +A priest there offering to it his own heart. + +PARIS: +I know what 'tis to love; +And would, as I shall pity, I could help! +Please you walk in, my lords. + +PANDARUS: +Be moderate, be moderate. + +CRESSIDA: +Why tell you me of moderation? +The grief is fine, full, perfect, that I taste, +And violenteth in a sense as strong +As that which causeth it: how can I moderate it? +If I could temporize with my affection, +Or brew it to a weak and colder palate, +The like allayment could I give my grief. +My love admits no qualifying dross; +No more my grief, in such a precious loss. + +PANDARUS: +Here, here, here he comes. +Ah, sweet ducks! + +CRESSIDA: +O Troilus! Troilus! + +PANDARUS: +What a pair of spectacles is here! +Let me embrace too. 'O heart,' as the goodly saying is, +'--O heart, heavy heart, +Why sigh'st thou without breaking? +where he answers again, +'Because thou canst not ease thy smart +By friendship nor by speaking.' +There was never a truer rhyme. Let us cast away +nothing, for we may live to have need of such a +verse: we see it, we see it. How now, lambs? + +TROILUS: +Cressid, I love thee in so strain'd a purity, +That the bless'd gods, as angry with my fancy, +More bright in zeal than the devotion which +Cold lips blow to their deities, take thee from me. + +CRESSIDA: +Have the gods envy? + +PANDARUS: +Ay, ay, ay, ay; 'tis too plain a case. + +CRESSIDA: +And is it true that I must go from Troy? + +TROILUS: +A hateful truth. + +CRESSIDA: +What, and from Troilus too? + +TROILUS: +From Troy and Troilus. + +CRESSIDA: +Is it possible? + +TROILUS: +And suddenly; where injury of chance +Puts back leave-taking, justles roughly by +All time of pause, rudely beguiles our lips +Of all rejoindure, forcibly prevents +Our lock'd embrasures, strangles our dear vows +Even in the birth of our own labouring breath: +We two, that with so many thousand sighs +Did buy each other, must poorly sell ourselves +With the rude brevity and discharge of one. +Injurious time now with a robber's haste +Crams his rich thievery up, he knows not how: +As many farewells as be stars in heaven, +With distinct breath and consign'd kisses to them, +He fumbles up into a lose adieu, +And scants us with a single famish'd kiss, +Distasted with the salt of broken tears. + +AENEAS: + +TROILUS: +Hark! you are call'd: some say the Genius so +Cries 'come' to him that instantly must die. +Bid them have patience; she shall come anon. + +PANDARUS: +Where are my tears? rain, to lay this wind, or +my heart will be blown up by the root. + +CRESSIDA: +I must then to the Grecians? + +TROILUS: +No remedy. + +CRESSIDA: +A woful Cressid 'mongst the merry Greeks! +When shall we see again? + +TROILUS: +Hear me, my love: be thou but true of heart,-- + +CRESSIDA: +I true! how now! what wicked deem is this? + +TROILUS: +Nay, we must use expostulation kindly, +For it is parting from us: +I speak not 'be thou true,' as fearing thee, +For I will throw my glove to Death himself, +That there's no maculation in thy heart: +But 'be thou true,' say I, to fashion in +My sequent protestation; be thou true, +And I will see thee. + +CRESSIDA: +O, you shall be exposed, my lord, to dangers +As infinite as imminent! but I'll be true. + +TROILUS: +And I'll grow friend with danger. Wear this sleeve. + +CRESSIDA: +And you this glove. When shall I see you? + +TROILUS: +I will corrupt the Grecian sentinels, +To give thee nightly visitation. +But yet be true. + +CRESSIDA: +O heavens! 'be true' again! + +TROILUS: +Hear while I speak it, love: +The Grecian youths are full of quality; +They're loving, well composed with gifts of nature, +Flowing and swelling o'er with arts and exercise: +How novelty may move, and parts with person, +Alas, a kind of godly jealousy-- +Which, I beseech you, call a virtuous sin-- +Makes me afeard. + +CRESSIDA: +O heavens! you love me not. + +TROILUS: +Die I a villain, then! +In this I do not call your faith in question +So mainly as my merit: I cannot sing, +Nor heel the high lavolt, nor sweeten talk, +Nor play at subtle games; fair virtues all, +To which the Grecians are most prompt and pregnant: +But I can tell that in each grace of these +There lurks a still and dumb-discoursive devil +That tempts most cunningly: but be not tempted. + +CRESSIDA: +Do you think I will? + +TROILUS: +No. +But something may be done that we will not: +And sometimes we are devils to ourselves, +When we will tempt the frailty of our powers, +Presuming on their changeful potency. + +AENEAS: + +TROILUS: +Come, kiss; and let us part. + +PARIS: + +TROILUS: +Good brother, come you hither; +And bring AEneas and the Grecian with you. + +CRESSIDA: +My lord, will you be true? + +TROILUS: +Who, I? alas, it is my vice, my fault: +Whiles others fish with craft for great opinion, +I with great truth catch mere simplicity; +Whilst some with cunning gild their copper crowns, +With truth and plainness I do wear mine bare. +Fear not my truth: the moral of my wit +Is 'plain and true;' there's all the reach of it. +Welcome, Sir Diomed! here is the lady +Which for Antenor we deliver you: +At the port, lord, I'll give her to thy hand, +And by the way possess thee what she is. +Entreat her fair; and, by my soul, fair Greek, +If e'er thou stand at mercy of my sword, +Name Cressida and thy life shall be as safe +As Priam is in Ilion. + +DIOMEDES: +Fair Lady Cressid, +So please you, save the thanks this prince expects: +The lustre in your eye, heaven in your cheek, +Pleads your fair usage; and to Diomed +You shall be mistress, and command him wholly. + +TROILUS: +Grecian, thou dost not use me courteously, +To shame the zeal of my petition to thee +In praising her: I tell thee, lord of Greece, +She is as far high-soaring o'er thy praises +As thou unworthy to be call'd her servant. +I charge thee use her well, even for my charge; +For, by the dreadful Pluto, if thou dost not, +Though the great bulk Achilles be thy guard, +I'll cut thy throat. + +DIOMEDES: +O, be not moved, Prince Troilus: +Let me be privileged by my place and message, +To be a speaker free; when I am hence +I'll answer to my lust: and know you, lord, +I'll nothing do on charge: to her own worth +She shall be prized; but that you say 'be't so,' +I'll speak it in my spirit and honour, 'no.' + +TROILUS: +Come, to the port. I'll tell thee, Diomed, +This brave shall oft make thee to hide thy head. +Lady, give me your hand, and, as we walk, +To our own selves bend we our needful talk. + +PARIS: +Hark! Hector's trumpet. + +AENEAS: +How have we spent this morning! +The prince must think me tardy and remiss, +That sore to ride before him to the field. + +PARIS: +'Tis Troilus' fault: come, come, to field with him. + +DEIPHOBUS: +Let us make ready straight. + +AENEAS: +Yea, with a bridegroom's fresh alacrity, +Let us address to tend on Hector's heels: +The glory of our Troy doth this day lie +On his fair worth and single chivalry. + +AGAMEMNON: +Here art thou in appointment fresh and fair, +Anticipating time with starting courage. +Give with thy trumpet a loud note to Troy, +Thou dreadful Ajax; that the appalled air +May pierce the head of the great combatant +And hale him hither. + +AJAX: +Thou, trumpet, there's my purse. +Now crack thy lungs, and split thy brazen pipe: +Blow, villain, till thy sphered bias cheek +Outswell the colic of puff'd Aquilon: +Come, stretch thy chest and let thy eyes spout blood; +Thou blow'st for Hector. + +ULYSSES: +No trumpet answers. + +ACHILLES: +'Tis but early days. + +AGAMEMNON: +Is not yond Diomed, with Calchas' daughter? + +ULYSSES: +'Tis he, I ken the manner of his gait; +He rises on the toe: that spirit of his +In aspiration lifts him from the earth. + +AGAMEMNON: +Is this the Lady Cressid? + +DIOMEDES: +Even she. + +AGAMEMNON: +Most dearly welcome to the Greeks, sweet lady. + +NESTOR: +Our general doth salute you with a kiss. + +ULYSSES: +Yet is the kindness but particular; +'Twere better she were kiss'd in general. + +NESTOR: +And very courtly counsel: I'll begin. +So much for Nestor. + +ACHILLES: +I'll take what winter from your lips, fair lady: +Achilles bids you welcome. + +MENELAUS: +I had good argument for kissing once. + +PATROCLUS: +But that's no argument for kissing now; +For this popp'd Paris in his hardiment, +And parted thus you and your argument. + +ULYSSES: +O deadly gall, and theme of all our scorns! +For which we lose our heads to gild his horns. + +PATROCLUS: +The first was Menelaus' kiss; this, mine: +Patroclus kisses you. + +MENELAUS: +O, this is trim! + +PATROCLUS: +Paris and I kiss evermore for him. + +MENELAUS: +I'll have my kiss, sir. Lady, by your leave. + +CRESSIDA: +In kissing, do you render or receive? + +PATROCLUS: +Both take and give. + +CRESSIDA: +I'll make my match to live, +The kiss you take is better than you give; +Therefore no kiss. + +MENELAUS: +I'll give you boot, I'll give you three for one. + +CRESSIDA: +You're an odd man; give even or give none. + +MENELAUS: +An odd man, lady! every man is odd. + +CRESSIDA: +No, Paris is not; for you know 'tis true, +That you are odd, and he is even with you. + +MENELAUS: +You fillip me o' the head. + +CRESSIDA: +No, I'll be sworn. + +ULYSSES: +It were no match, your nail against his horn. +May I, sweet lady, beg a kiss of you? + +CRESSIDA: +You may. + +ULYSSES: +I do desire it. + +CRESSIDA: +Why, beg, then. + +ULYSSES: +Why then for Venus' sake, give me a kiss, +When Helen is a maid again, and his. + +CRESSIDA: +I am your debtor, claim it when 'tis due. + +ULYSSES: +Never's my day, and then a kiss of you. + +DIOMEDES: +Lady, a word: I'll bring you to your father. + +NESTOR: +A woman of quick sense. + +ULYSSES: +Fie, fie upon her! +There's language in her eye, her cheek, her lip, +Nay, her foot speaks; her wanton spirits look out +At every joint and motive of her body. +O, these encounterers, so glib of tongue, +That give accosting welcome ere it comes, +And wide unclasp the tables of their thoughts +To every ticklish reader! set them down +For sluttish spoils of opportunity +And daughters of the game. + +ALL: +The Trojans' trumpet. + +AGAMEMNON: +Yonder comes the troop. + +AENEAS: +Hail, all you state of Greece! what shall be done +To him that victory commands? or do you purpose +A victor shall be known? will you the knights +Shall to the edge of all extremity +Pursue each other, or shall be divided +By any voice or order of the field? +Hector bade ask. + +AGAMEMNON: +Which way would Hector have it? + +AENEAS: +He cares not; he'll obey conditions. + +ACHILLES: +'Tis done like Hector; but securely done, +A little proudly, and great deal misprizing +The knight opposed. + +AENEAS: +If not Achilles, sir, +What is your name? + +ACHILLES: +If not Achilles, nothing. + +AENEAS: +Therefore Achilles: but, whate'er, know this: +In the extremity of great and little, +Valour and pride excel themselves in Hector; +The one almost as infinite as all, +The other blank as nothing. Weigh him well, +And that which looks like pride is courtesy. +This Ajax is half made of Hector's blood: +In love whereof, half Hector stays at home; +Half heart, half hand, half Hector comes to seek +This blended knight, half Trojan and half Greek. + +ACHILLES: +A maiden battle, then? O, I perceive you. + +AGAMEMNON: +Here is Sir Diomed. Go, gentle knight, +Stand by our Ajax: as you and Lord AEneas +Consent upon the order of their fight, +So be it; either to the uttermost, +Or else a breath: the combatants being kin +Half stints their strife before their strokes begin. + +ULYSSES: +They are opposed already. + +AGAMEMNON: +What Trojan is that same that looks so heavy? + +ULYSSES: +The youngest son of Priam, a true knight, +Not yet mature, yet matchless, firm of word, +Speaking in deeds and deedless in his tongue; +Not soon provoked nor being provoked soon calm'd: +His heart and hand both open and both free; +For what he has he gives, what thinks he shows; +Yet gives he not till judgment guide his bounty, +Nor dignifies an impure thought with breath; +Manly as Hector, but more dangerous; +For Hector in his blaze of wrath subscribes +To tender objects, but he in heat of action +Is more vindicative than jealous love: +They call him Troilus, and on him erect +A second hope, as fairly built as Hector. +Thus says AEneas; one that knows the youth +Even to his inches, and with private soul +Did in great Ilion thus translate him to me. + +AGAMEMNON: +They are in action. + +NESTOR: +Now, Ajax, hold thine own! + +TROILUS: +Hector, thou sleep'st; +Awake thee! + +AGAMEMNON: +His blows are well disposed: there, Ajax! + +DIOMEDES: +You must no more. + +AENEAS: +Princes, enough, so please you. + +AJAX: +I am not warm yet; let us fight again. + +DIOMEDES: +As Hector pleases. + +HECTOR: +Why, then will I no more: +Thou art, great lord, my father's sister's son, +A cousin-german to great Priam's seed; +The obligation of our blood forbids +A gory emulation 'twixt us twain: +Were thy commixtion Greek and Trojan so +That thou couldst say 'This hand is Grecian all, +And this is Trojan; the sinews of this leg +All Greek, and this all Troy; my mother's blood +Runs on the dexter cheek, and this sinister +Bounds in my father's;' by Jove multipotent, +Thou shouldst not bear from me a Greekish member +Wherein my sword had not impressure made +Of our rank feud: but the just gods gainsay +That any drop thou borrow'dst from thy mother, +My sacred aunt, should by my mortal sword +Be drain'd! Let me embrace thee, Ajax: +By him that thunders, thou hast lusty arms; +Hector would have them fall upon him thus: +Cousin, all honour to thee! + +AJAX: +I thank thee, Hector +Thou art too gentle and too free a man: +I came to kill thee, cousin, and bear hence +A great addition earned in thy death. + +HECTOR: +Not Neoptolemus so mirable, +On whose bright crest Fame with her loud'st Oyes +Cries 'This is he,' could promise to himself +A thought of added honour torn from Hector. + +AENEAS: +There is expectance here from both the sides, +What further you will do. + +HECTOR: +We'll answer it; +The issue is embracement: Ajax, farewell. + +AJAX: +If I might in entreaties find success-- +As seld I have the chance--I would desire +My famous cousin to our Grecian tents. + +DIOMEDES: +'Tis Agamemnon's wish, and great Achilles +Doth long to see unarm'd the valiant Hector. + +HECTOR: +AEneas, call my brother Troilus to me, +And signify this loving interview +To the expecters of our Trojan part; +Desire them home. Give me thy hand, my cousin; +I will go eat with thee and see your knights. + +AJAX: +Great Agamemnon comes to meet us here. + +HECTOR: +The worthiest of them tell me name by name; +But for Achilles, mine own searching eyes +Shall find him by his large and portly size. + +AGAMEMNON: +Worthy of arms! as welcome as to one +That would be rid of such an enemy; +But that's no welcome: understand more clear, +What's past and what's to come is strew'd with husks +And formless ruin of oblivion; +But in this extant moment, faith and troth, +Strain'd purely from all hollow bias-drawing, +Bids thee, with most divine integrity, +From heart of very heart, great Hector, welcome. + +HECTOR: +I thank thee, most imperious Agamemnon. + +AGAMEMNON: + +MENELAUS: +Let me confirm my princely brother's greeting: +You brace of warlike brothers, welcome hither. + +HECTOR: +Who must we answer? + +AENEAS: +The noble Menelaus. + +HECTOR: +O, you, my lord? by Mars his gauntlet, thanks! +Mock not, that I affect the untraded oath; +Your quondam wife swears still by Venus' glove: +She's well, but bade me not commend her to you. + +MENELAUS: +Name her not now, sir; she's a deadly theme. + +HECTOR: +O, pardon; I offend. + +NESTOR: +I have, thou gallant Trojan, seen thee oft +Labouring for destiny make cruel way +Through ranks of Greekish youth, and I have seen thee, +As hot as Perseus, spur thy Phrygian steed, +Despising many forfeits and subduements, +When thou hast hung thy advanced sword i' the air, +Not letting it decline on the declined, +That I have said to some my standers by +'Lo, Jupiter is yonder, dealing life!' +And I have seen thee pause and take thy breath, +When that a ring of Greeks have hemm'd thee in, +Like an Olympian wrestling: this have I seen; +But this thy countenance, still lock'd in steel, +I never saw till now. I knew thy grandsire, +And once fought with him: he was a soldier good; +But, by great Mars, the captain of us all, +Never saw like thee. Let an old man embrace thee; +And, worthy warrior, welcome to our tents. + +AENEAS: +'Tis the old Nestor. + +HECTOR: +Let me embrace thee, good old chronicle, +That hast so long walk'd hand in hand with time: +Most reverend Nestor, I am glad to clasp thee. + +NESTOR: +I would my arms could match thee in contention, +As they contend with thee in courtesy. + +HECTOR: +I would they could. + +NESTOR: +Ha! +By this white beard, I'ld fight with thee to-morrow. +Well, welcome, welcome! I have seen the time. + +ULYSSES: +I wonder now how yonder city stands +When we have here her base and pillar by us. + +HECTOR: +I know your favour, Lord Ulysses, well. +Ah, sir, there's many a Greek and Trojan dead, +Since first I saw yourself and Diomed +In Ilion, on your Greekish embassy. + +ULYSSES: +Sir, I foretold you then what would ensue: +My prophecy is but half his journey yet; +For yonder walls, that pertly front your town, +Yond towers, whose wanton tops do buss the clouds, +Must kiss their own feet. + +HECTOR: +I must not believe you: +There they stand yet, and modestly I think, +The fall of every Phrygian stone will cost +A drop of Grecian blood: the end crowns all, +And that old common arbitrator, Time, +Will one day end it. + +ULYSSES: +So to him we leave it. +Most gentle and most valiant Hector, welcome: +After the general, I beseech you next +To feast with me and see me at my tent. + +ACHILLES: +I shall forestall thee, Lord Ulysses, thou! +Now, Hector, I have fed mine eyes on thee; +I have with exact view perused thee, Hector, +And quoted joint by joint. + +HECTOR: +Is this Achilles? + +ACHILLES: +I am Achilles. + +HECTOR: +Stand fair, I pray thee: let me look on thee. + +ACHILLES: +Behold thy fill. + +HECTOR: +Nay, I have done already. + +ACHILLES: +Thou art too brief: I will the second time, +As I would buy thee, view thee limb by limb. + +HECTOR: +O, like a book of sport thou'lt read me o'er; +But there's more in me than thou understand'st. +Why dost thou so oppress me with thine eye? + +ACHILLES: +Tell me, you heavens, in which part of his body +Shall I destroy him? whether there, or there, or there? +That I may give the local wound a name +And make distinct the very breach whereout +Hector's great spirit flew: answer me, heavens! + +HECTOR: +It would discredit the blest gods, proud man, +To answer such a question: stand again: +Think'st thou to catch my life so pleasantly +As to prenominate in nice conjecture +Where thou wilt hit me dead? + +ACHILLES: +I tell thee, yea. + +HECTOR: +Wert thou an oracle to tell me so, +I'd not believe thee. Henceforth guard thee well; +For I'll not kill thee there, nor there, nor there; +But, by the forge that stithied Mars his helm, +I'll kill thee every where, yea, o'er and o'er. +You wisest Grecians, pardon me this brag; +His insolence draws folly from my lips; +But I'll endeavour deeds to match these words, +Or may I never-- + +AJAX: +Do not chafe thee, cousin: +And you, Achilles, let these threats alone, +Till accident or purpose bring you to't: +You may have every day enough of Hector +If you have stomach; the general state, I fear, +Can scarce entreat you to be odd with him. + +HECTOR: +I pray you, let us see you in the field: +We have had pelting wars, since you refused +The Grecians' cause. + +ACHILLES: +Dost thou entreat me, Hector? +To-morrow do I meet thee, fell as death; +To-night all friends. + +HECTOR: +Thy hand upon that match. + +AGAMEMNON: +First, all you peers of Greece, go to my tent; +There in the full convive we: afterwards, +As Hector's leisure and your bounties shall +Concur together, severally entreat him. +Beat loud the tabourines, let the trumpets blow, +That this great soldier may his welcome know. + +TROILUS: +My Lord Ulysses, tell me, I beseech you, +In what place of the field doth Calchas keep? + +ULYSSES: +At Menelaus' tent, most princely Troilus: +There Diomed doth feast with him to-night; +Who neither looks upon the heaven nor earth, +But gives all gaze and bent of amorous view +On the fair Cressid. + +TROILUS: +Shall sweet lord, be bound to you so much, +After we part from Agamemnon's tent, +To bring me thither? + +ULYSSES: +You shall command me, sir. +As gentle tell me, of what honour was +This Cressida in Troy? Had she no lover there +That wails her absence? + +TROILUS: +O, sir, to such as boasting show their scars +A mock is due. Will you walk on, my lord? +She was beloved, she loved; she is, and doth: +But still sweet love is food for fortune's tooth. + +ACHILLES: +I'll heat his blood with Greekish wine to-night, +Which with my scimitar I'll cool to-morrow. +Patroclus, let us feast him to the height. + +PATROCLUS: +Here comes Thersites. + +ACHILLES: +How now, thou core of envy! +Thou crusty batch of nature, what's the news? + +THERSITES: +Why, thou picture of what thou seemest, and idol +of idiot worshippers, here's a letter for thee. + +ACHILLES: +From whence, fragment? + +THERSITES: +Why, thou full dish of fool, from Troy. + +PATROCLUS: +Who keeps the tent now? + +THERSITES: +The surgeon's box, or the patient's wound. + +PATROCLUS: +Well said, adversity! and what need these tricks? + +THERSITES: +Prithee, be silent, boy; I profit not by thy talk: +thou art thought to be Achilles' male varlet. + +PATROCLUS: +Male varlet, you rogue! what's that? + +THERSITES: +Why, his masculine whore. Now, the rotten diseases +of the south, the guts-griping, ruptures, catarrhs, +loads o' gravel i' the back, lethargies, cold +palsies, raw eyes, dirt-rotten livers, wheezing +lungs, bladders full of imposthume, sciaticas, +limekilns i' the palm, incurable bone-ache, and the +rivelled fee-simple of the tetter, take and take +again such preposterous discoveries! + +PATROCLUS: +Why thou damnable box of envy, thou, what meanest +thou to curse thus? + +THERSITES: +Do I curse thee? + +PATROCLUS: +Why no, you ruinous butt, you whoreson +indistinguishable cur, no. + +THERSITES: +No! why art thou then exasperate, thou idle +immaterial skein of sleave-silk, thou green sarcenet +flap for a sore eye, thou tassel of a prodigal's +purse, thou? Ah, how the poor world is pestered +with such waterflies, diminutives of nature! + +PATROCLUS: +Out, gall! + +THERSITES: +Finch-egg! + +ACHILLES: +My sweet Patroclus, I am thwarted quite +From my great purpose in to-morrow's battle. +Here is a letter from Queen Hecuba, +A token from her daughter, my fair love, +Both taxing me and gaging me to keep +An oath that I have sworn. I will not break it: +Fall Greeks; fail fame; honour or go or stay; +My major vow lies here, this I'll obey. +Come, come, Thersites, help to trim my tent: +This night in banqueting must all be spent. +Away, Patroclus! + +THERSITES: +With too much blood and too little brain, these two +may run mad; but, if with too much brain and too +little blood they do, I'll be a curer of madmen. +Here's Agamemnon, an honest fellow enough and one +that loves quails; but he has not so much brain as +earwax: and the goodly transformation of Jupiter +there, his brother, the bull,--the primitive statue, +and oblique memorial of cuckolds; a thrifty +shoeing-horn in a chain, hanging at his brother's +leg,--to what form but that he is, should wit larded +with malice and malice forced with wit turn him to? +To an ass, were nothing; he is both ass and ox: to +an ox, were nothing; he is both ox and ass. To be a +dog, a mule, a cat, a fitchew, a toad, a lizard, an +owl, a puttock, or a herring without a roe, I would +not care; but to be Menelaus, I would conspire +against destiny. Ask me not, what I would be, if I +were not Thersites; for I care not to be the louse +of a lazar, so I were not Menelaus! Hey-day! +spirits and fires! + +AGAMEMNON: +We go wrong, we go wrong. + +AJAX: +No, yonder 'tis; +There, where we see the lights. + +HECTOR: +I trouble you. + +AJAX: +No, not a whit. + +ULYSSES: +Here comes himself to guide you. + +ACHILLES: +Welcome, brave Hector; welcome, princes all. + +AGAMEMNON: +So now, fair prince of Troy, I bid good night. +Ajax commands the guard to tend on you. + +HECTOR: +Thanks and good night to the Greeks' general. + +MENELAUS: +Good night, my lord. + +HECTOR: +Good night, sweet lord Menelaus. + +THERSITES: +Sweet draught: 'sweet' quoth 'a! sweet sink, +sweet sewer. + +ACHILLES: +Good night and welcome, both at once, to those +That go or tarry. + +AGAMEMNON: +Good night. + +ACHILLES: +Old Nestor tarries; and you too, Diomed, +Keep Hector company an hour or two. + +DIOMEDES: +I cannot, lord; I have important business, +The tide whereof is now. Good night, great Hector. + +HECTOR: +Give me your hand. + +ULYSSES: + +TROILUS: +Sweet sir, you honour me. + +HECTOR: +And so, good night. + +ACHILLES: +Come, come, enter my tent. + +THERSITES: +That same Diomed's a false-hearted rogue, a most +unjust knave; I will no more trust him when he leers +than I will a serpent when he hisses: he will spend +his mouth, and promise, like Brabbler the hound: +but when he performs, astronomers foretell it; it +is prodigious, there will come some change; the sun +borrows of the moon, when Diomed keeps his +word. I will rather leave to see Hector, than +not to dog him: they say he keeps a Trojan +drab, and uses the traitor Calchas' tent: I'll +after. Nothing but lechery! all incontinent varlets! + +DIOMEDES: +What, are you up here, ho? speak. + +CALCHAS: + +DIOMEDES: +Calchas, I think. Where's your daughter? + +CALCHAS: + +ULYSSES: +Stand where the torch may not discover us. + +TROILUS: +Cressid comes forth to him. + +DIOMEDES: +How now, my charge! + +CRESSIDA: +Now, my sweet guardian! Hark, a word with you. + +TROILUS: +Yea, so familiar! + +ULYSSES: +She will sing any man at first sight. + +THERSITES: +And any man may sing her, if he can take her cliff; +she's noted. + +DIOMEDES: +Will you remember? + +CRESSIDA: +Remember! yes. + +DIOMEDES: +Nay, but do, then; +And let your mind be coupled with your words. + +TROILUS: +What should she remember? + +ULYSSES: +List. + +CRESSIDA: +Sweet honey Greek, tempt me no more to folly. + +THERSITES: +Roguery! + +DIOMEDES: +Nay, then,-- + +CRESSIDA: +I'll tell you what,-- + +DIOMEDES: +Foh, foh! come, tell a pin: you are forsworn. + +CRESSIDA: +In faith, I cannot: what would you have me do? + +THERSITES: +A juggling trick,--to be secretly open. + +DIOMEDES: +What did you swear you would bestow on me? + +CRESSIDA: +I prithee, do not hold me to mine oath; +Bid me do any thing but that, sweet Greek. + +DIOMEDES: +Good night. + +TROILUS: +Hold, patience! + +ULYSSES: +How now, Trojan! + +CRESSIDA: +Diomed,-- + +DIOMEDES: +No, no, good night: I'll be your fool no more. + +TROILUS: +Thy better must. + +CRESSIDA: +Hark, one word in your ear. + +TROILUS: +O plague and madness! + +ULYSSES: +You are moved, prince; let us depart, I pray you, +Lest your displeasure should enlarge itself +To wrathful terms: this place is dangerous; +The time right deadly; I beseech you, go. + +TROILUS: +Behold, I pray you! + +ULYSSES: +Nay, good my lord, go off: +You flow to great distraction; come, my lord. + +TROILUS: +I pray thee, stay. + +ULYSSES: +You have not patience; come. + +TROILUS: +I pray you, stay; by hell and all hell's torments +I will not speak a word! + +DIOMEDES: +And so, good night. + +CRESSIDA: +Nay, but you part in anger. + +TROILUS: +Doth that grieve thee? +O wither'd truth! + +ULYSSES: +Why, how now, lord! + +TROILUS: +By Jove, +I will be patient. + +CRESSIDA: +Guardian!--why, Greek! + +DIOMEDES: +Foh, foh! adieu; you palter. + +CRESSIDA: +In faith, I do not: come hither once again. + +ULYSSES: +You shake, my lord, at something: will you go? +You will break out. + +TROILUS: +She strokes his cheek! + +ULYSSES: +Come, come. + +TROILUS: +Nay, stay; by Jove, I will not speak a word: +There is between my will and all offences +A guard of patience: stay a little while. + +THERSITES: +How the devil Luxury, with his fat rump and +potato-finger, tickles these together! Fry, lechery, fry! + +DIOMEDES: +But will you, then? + +CRESSIDA: +In faith, I will, la; never trust me else. + +DIOMEDES: +Give me some token for the surety of it. + +CRESSIDA: +I'll fetch you one. + +ULYSSES: +You have sworn patience. + +TROILUS: +Fear me not, sweet lord; +I will not be myself, nor have cognition +Of what I feel: I am all patience. + +THERSITES: +Now the pledge; now, now, now! + +CRESSIDA: +Here, Diomed, keep this sleeve. + +TROILUS: +O beauty! where is thy faith? + +ULYSSES: +My lord,-- + +TROILUS: +I will be patient; outwardly I will. + +CRESSIDA: +You look upon that sleeve; behold it well. +He loved me--O false wench!--Give't me again. + +DIOMEDES: +Whose was't? + +CRESSIDA: +It is no matter, now I have't again. +I will not meet with you to-morrow night: +I prithee, Diomed, visit me no more. + +THERSITES: +Now she sharpens: well said, whetstone! + +DIOMEDES: +I shall have it. + +CRESSIDA: +What, this? + +DIOMEDES: +Ay, that. + +CRESSIDA: +O, all you gods! O pretty, pretty pledge! +Thy master now lies thinking in his bed +Of thee and me, and sighs, and takes my glove, +And gives memorial dainty kisses to it, +As I kiss thee. Nay, do not snatch it from me; +He that takes that doth take my heart withal. + +DIOMEDES: +I had your heart before, this follows it. + +TROILUS: +I did swear patience. + +CRESSIDA: +You shall not have it, Diomed; faith, you shall not; +I'll give you something else. + +DIOMEDES: +I will have this: whose was it? + +CRESSIDA: +It is no matter. + +DIOMEDES: +Come, tell me whose it was. + +CRESSIDA: +'Twas one's that loved me better than you will. +But, now you have it, take it. + +DIOMEDES: +Whose was it? + +CRESSIDA: +By all Diana's waiting-women yond, +And by herself, I will not tell you whose. + +DIOMEDES: +To-morrow will I wear it on my helm, +And grieve his spirit that dares not challenge it. + +TROILUS: +Wert thou the devil, and worest it on thy horn, +It should be challenged. + +CRESSIDA: +Well, well, 'tis done, 'tis past: and yet it is not; +I will not keep my word. + +DIOMEDES: +Why, then, farewell; +Thou never shalt mock Diomed again. + +CRESSIDA: +You shall not go: one cannot speak a word, +But it straight starts you. + +DIOMEDES: +I do not like this fooling. + +THERSITES: +Nor I, by Pluto: but that that likes not you pleases me best. + +DIOMEDES: +What, shall I come? the hour? + +CRESSIDA: +Ay, come:--O Jove!--do come:--I shall be plagued. + +DIOMEDES: +Farewell till then. + +CRESSIDA: +Good night: I prithee, come. +Troilus, farewell! one eye yet looks on thee +But with my heart the other eye doth see. +Ah, poor our sex! this fault in us I find, +The error of our eye directs our mind: +What error leads must err; O, then conclude +Minds sway'd by eyes are full of turpitude. + +THERSITES: +A proof of strength she could not publish more, +Unless she said ' My mind is now turn'd whore.' + +ULYSSES: +All's done, my lord. + +TROILUS: +It is. + +ULYSSES: +Why stay we, then? + +TROILUS: +To make a recordation to my soul +Of every syllable that here was spoke. +But if I tell how these two did co-act, +Shall I not lie in publishing a truth? +Sith yet there is a credence in my heart, +An esperance so obstinately strong, +That doth invert the attest of eyes and ears, +As if those organs had deceptious functions, +Created only to calumniate. +Was Cressid here? + +ULYSSES: +I cannot conjure, Trojan. + +TROILUS: +She was not, sure. + +ULYSSES: +Most sure she was. + +TROILUS: +Why, my negation hath no taste of madness. + +ULYSSES: +Nor mine, my lord: Cressid was here but now. + +TROILUS: +Let it not be believed for womanhood! +Think, we had mothers; do not give advantage +To stubborn critics, apt, without a theme, +For depravation, to square the general sex +By Cressid's rule: rather think this not Cressid. + +ULYSSES: +What hath she done, prince, that can soil our mothers? + +TROILUS: +Nothing at all, unless that this were she. + +THERSITES: +Will he swagger himself out on's own eyes? + +TROILUS: +This she? no, this is Diomed's Cressida: +If beauty have a soul, this is not she; +If souls guide vows, if vows be sanctimonies, +If sanctimony be the gods' delight, +If there be rule in unity itself, +This is not she. O madness of discourse, +That cause sets up with and against itself! +Bi-fold authority! where reason can revolt +Without perdition, and loss assume all reason +Without revolt: this is, and is not, Cressid. +Within my soul there doth conduce a fight +Of this strange nature that a thing inseparate +Divides more wider than the sky and earth, +And yet the spacious breadth of this division +Admits no orifex for a point as subtle +As Ariachne's broken woof to enter. +Instance, O instance! strong as Pluto's gates; +Cressid is mine, tied with the bonds of heaven: +Instance, O instance! strong as heaven itself; +The bonds of heaven are slipp'd, dissolved, and loosed; +And with another knot, five-finger-tied, +The fractions of her faith, orts of her love, +The fragments, scraps, the bits and greasy relics +Of her o'er-eaten faith, are bound to Diomed. + +ULYSSES: +May worthy Troilus be half attach'd +With that which here his passion doth express? + +TROILUS: +Ay, Greek; and that shall be divulged well +In characters as red as Mars his heart +Inflamed with Venus: never did young man fancy +With so eternal and so fix'd a soul. +Hark, Greek: as much as I do Cressid love, +So much by weight hate I her Diomed: +That sleeve is mine that he'll bear on his helm; +Were it a casque composed by Vulcan's skill, +My sword should bite it: not the dreadful spout +Which shipmen do the hurricano call, +Constringed in mass by the almighty sun, +Shall dizzy with more clamour Neptune's ear +In his descent than shall my prompted sword +Falling on Diomed. + +THERSITES: +He'll tickle it for his concupy. + +TROILUS: +O Cressid! O false Cressid! false, false, false! +Let all untruths stand by thy stained name, +And they'll seem glorious. + +ULYSSES: +O, contain yourself +Your passion draws ears hither. + +AENEAS: +I have been seeking you this hour, my lord: +Hector, by this, is arming him in Troy; +Ajax, your guard, stays to conduct you home. + +TROILUS: +Have with you, prince. My courteous lord, adieu. +Farewell, revolted fair! and, Diomed, +Stand fast, and wear a castle on thy head! + +ULYSSES: +I'll bring you to the gates. + +TROILUS: +Accept distracted thanks. + +THERSITES: +Would I could meet that rogue Diomed! I would +croak like a raven; I would bode, I would bode. +Patroclus will give me any thing for the +intelligence of this whore: the parrot will not +do more for an almond than he for a commodious drab. +Lechery, lechery; still, wars and lechery; nothing +else holds fashion: a burning devil take them! + +ANDROMACHE: +When was my lord so much ungently temper'd, +To stop his ears against admonishment? +Unarm, unarm, and do not fight to-day. + +HECTOR: +You train me to offend you; get you in: +By all the everlasting gods, I'll go! + +ANDROMACHE: +My dreams will, sure, prove ominous to the day. + +HECTOR: +No more, I say. + +CASSANDRA: +Where is my brother Hector? + +ANDROMACHE: +Here, sister; arm'd, and bloody in intent. +Consort with me in loud and dear petition, +Pursue we him on knees; for I have dream'd +Of bloody turbulence, and this whole night +Hath nothing been but shapes and forms of slaughter. + +CASSANDRA: +O, 'tis true. + +HECTOR: +Ho! bid my trumpet sound! + +CASSANDRA: +No notes of sally, for the heavens, sweet brother. + +HECTOR: +Be gone, I say: the gods have heard me swear. + +CASSANDRA: +The gods are deaf to hot and peevish vows: +They are polluted offerings, more abhorr'd +Than spotted livers in the sacrifice. + +ANDROMACHE: +O, be persuaded! do not count it holy +To hurt by being just: it is as lawful, +For we would give much, to use violent thefts, +And rob in the behalf of charity. + +CASSANDRA: +It is the purpose that makes strong the vow; +But vows to every purpose must not hold: +Unarm, sweet Hector. + +HECTOR: +Hold you still, I say; +Mine honour keeps the weather of my fate: +Lie every man holds dear; but the brave man +Holds honour far more precious-dear than life. +How now, young man! mean'st thou to fight to-day? + +ANDROMACHE: +Cassandra, call my father to persuade. + +HECTOR: +No, faith, young Troilus; doff thy harness, youth; +I am to-day i' the vein of chivalry: +Let grow thy sinews till their knots be strong, +And tempt not yet the brushes of the war. +Unarm thee, go, and doubt thou not, brave boy, +I'll stand to-day for thee and me and Troy. + +TROILUS: +Brother, you have a vice of mercy in you, +Which better fits a lion than a man. + +HECTOR: +What vice is that, good Troilus? chide me for it. + +TROILUS: +When many times the captive Grecian falls, +Even in the fan and wind of your fair sword, +You bid them rise, and live. + +HECTOR: +O,'tis fair play. + +TROILUS: +Fool's play, by heaven, Hector. + +HECTOR: +How now! how now! + +TROILUS: +For the love of all the gods, +Let's leave the hermit pity with our mothers, +And when we have our armours buckled on, +The venom'd vengeance ride upon our swords, +Spur them to ruthful work, rein them from ruth. + +HECTOR: +Fie, savage, fie! + +TROILUS: +Hector, then 'tis wars. + +HECTOR: +Troilus, I would not have you fight to-day. + +TROILUS: +Who should withhold me? +Not fate, obedience, nor the hand of Mars +Beckoning with fiery truncheon my retire; +Not Priamus and Hecuba on knees, +Their eyes o'ergalled with recourse of tears; +Not you, my brother, with your true sword drawn, +Opposed to hinder me, should stop my way, +But by my ruin. + +CASSANDRA: +Lay hold upon him, Priam, hold him fast: +He is thy crutch; now if thou lose thy stay, +Thou on him leaning, and all Troy on thee, +Fall all together. + +PRIAM: +Come, Hector, come, go back: +Thy wife hath dream'd; thy mother hath had visions; +Cassandra doth foresee; and I myself +Am like a prophet suddenly enrapt +To tell thee that this day is ominous: +Therefore, come back. + +HECTOR: +AEneas is a-field; +And I do stand engaged to many Greeks, +Even in the faith of valour, to appear +This morning to them. + +PRIAM: +Ay, but thou shalt not go. + +HECTOR: +I must not break my faith. +You know me dutiful; therefore, dear sir, +Let me not shame respect; but give me leave +To take that course by your consent and voice, +Which you do here forbid me, royal Priam. + +CASSANDRA: +O Priam, yield not to him! + +ANDROMACHE: +Do not, dear father. + +HECTOR: +Andromache, I am offended with you: +Upon the love you bear me, get you in. + +TROILUS: +This foolish, dreaming, superstitious girl +Makes all these bodements. + +CASSANDRA: +O, farewell, dear Hector! +Look, how thou diest! look, how thy eye turns pale! +Look, how thy wounds do bleed at many vents! +Hark, how Troy roars! how Hecuba cries out! +How poor Andromache shrills her dolours forth! +Behold, distraction, frenzy and amazement, +Like witless antics, one another meet, +And all cry, Hector! Hector's dead! O Hector! + +TROILUS: +Away! away! + +CASSANDRA: +Farewell: yet, soft! Hector! take my leave: +Thou dost thyself and all our Troy deceive. + +HECTOR: +You are amazed, my liege, at her exclaim: +Go in and cheer the town: we'll forth and fight, +Do deeds worth praise and tell you them at night. + +PRIAM: +Farewell: the gods with safety stand about thee! + +TROILUS: +They are at it, hark! Proud Diomed, believe, +I come to lose my arm, or win my sleeve. + +PANDARUS: +Do you hear, my lord? do you hear? + +TROILUS: +What now? + +PANDARUS: +Here's a letter come from yond poor girl. + +TROILUS: +Let me read. + +PANDARUS: +A whoreson tisick, a whoreson rascally tisick so +troubles me, and the foolish fortune of this girl; +and what one thing, what another, that I shall +leave you one o' these days: and I have a rheum +in mine eyes too, and such an ache in my bones +that, unless a man were cursed, I cannot tell what +to think on't. What says she there? + +TROILUS: +Words, words, mere words, no matter from the heart: +The effect doth operate another way. +Go, wind, to wind, there turn and change together. +My love with words and errors still she feeds; +But edifies another with her deeds. + +THERSITES: +Now they are clapper-clawing one another; I'll go +look on. That dissembling abominable varlets Diomed, +has got that same scurvy doting foolish young knave's +sleeve of Troy there in his helm: I would fain see +them meet; that that same young Trojan ass, that +loves the whore there, might send that Greekish +whore-masterly villain, with the sleeve, back to the +dissembling luxurious drab, of a sleeveless errand. +O' the t'other side, the policy of those crafty +swearing rascals, that stale old mouse-eaten dry +cheese, Nestor, and that same dog-fox, Ulysses, is +not proved worthy a blackberry: they set me up, in +policy, that mongrel cur, Ajax, against that dog of +as bad a kind, Achilles: and now is the cur Ajax +prouder than the cur Achilles, and will not arm +to-day; whereupon the Grecians begin to proclaim +barbarism, and policy grows into an ill opinion. +Soft! here comes sleeve, and t'other. + +TROILUS: +Fly not; for shouldst thou take the river Styx, +I would swim after. + +DIOMEDES: +Thou dost miscall retire: +I do not fly, but advantageous care +Withdrew me from the odds of multitude: +Have at thee! + +THERSITES: +Hold thy whore, Grecian!--now for thy whore, +Trojan!--now the sleeve, now the sleeve! + +HECTOR: +What art thou, Greek? art thou for Hector's match? +Art thou of blood and honour? + +THERSITES: +No, no, I am a rascal; a scurvy railing knave: +a very filthy rogue. + +HECTOR: +I do believe thee: live. + +THERSITES: +God-a-mercy, that thou wilt believe me; but a +plague break thy neck for frightening me! What's +become of the wenching rogues? I think they have +swallowed one another: I would laugh at that +miracle: yet, in a sort, lechery eats itself. +I'll seek them. + +DIOMEDES: +Go, go, my servant, take thou Troilus' horse; +Present the fair steed to my lady Cressid: +Fellow, commend my service to her beauty; +Tell her I have chastised the amorous Trojan, +And am her knight by proof. + +Servant: +I go, my lord. + +AGAMEMNON: +Renew, renew! The fierce Polydamas +Hath beat down Menon: bastard Margarelon +Hath Doreus prisoner, +And stands colossus-wise, waving his beam, +Upon the pashed corses of the kings +Epistrophus and Cedius: Polyxenes is slain, +Amphimachus and Thoas deadly hurt, +Patroclus ta'en or slain, and Palamedes +Sore hurt and bruised: the dreadful Sagittary +Appals our numbers: haste we, Diomed, +To reinforcement, or we perish all. + +NESTOR: +Go, bear Patroclus' body to Achilles; +And bid the snail-paced Ajax arm for shame. +There is a thousand Hectors in the field: +Now here he fights on Galathe his horse, +And there lacks work; anon he's there afoot, +And there they fly or die, like scaled sculls +Before the belching whale; then is he yonder, +And there the strawy Greeks, ripe for his edge, +Fall down before him, like the mower's swath: +Here, there, and every where, he leaves and takes, +Dexterity so obeying appetite +That what he will he does, and does so much +That proof is call'd impossibility. + +ULYSSES: +O, courage, courage, princes! great Achilles +Is arming, weeping, cursing, vowing vengeance: +Patroclus' wounds have roused his drowsy blood, +Together with his mangled Myrmidons, +That noseless, handless, hack'd and chipp'd, come to him, +Crying on Hector. Ajax hath lost a friend +And foams at mouth, and he is arm'd and at it, +Roaring for Troilus, who hath done to-day +Mad and fantastic execution, +Engaging and redeeming of himself +With such a careless force and forceless care +As if that luck, in very spite of cunning, +Bade him win all. + +AJAX: +Troilus! thou coward Troilus! + +DIOMEDES: +Ay, there, there. + +NESTOR: +So, so, we draw together. + +ACHILLES: +Where is this Hector? +Come, come, thou boy-queller, show thy face; +Know what it is to meet Achilles angry: +Hector? where's Hector? I will none but Hector. + +AJAX: +Troilus, thou coward Troilus, show thy head! + +DIOMEDES: +Troilus, I say! where's Troilus? + +AJAX: +What wouldst thou? + +DIOMEDES: +I would correct him. + +AJAX: +Were I the general, thou shouldst have my office +Ere that correction. Troilus, I say! what, Troilus! + +TROILUS: +O traitor Diomed! turn thy false face, thou traitor, +And pay thy life thou owest me for my horse! + +DIOMEDES: +Ha, art thou there? + +AJAX: +I'll fight with him alone: stand, Diomed. + +DIOMEDES: +He is my prize; I will not look upon. + +TROILUS: +Come, both you cogging Greeks; have at you both! + +HECTOR: +Yea, Troilus? O, well fought, my youngest brother! + +ACHILLES: +Now do I see thee, ha! have at thee, Hector! + +HECTOR: +Pause, if thou wilt. + +ACHILLES: +I do disdain thy courtesy, proud Trojan: +Be happy that my arms are out of use: +My rest and negligence befriends thee now, +But thou anon shalt hear of me again; +Till when, go seek thy fortune. + +HECTOR: +Fare thee well: +I would have been much more a fresher man, +Had I expected thee. How now, my brother! + +TROILUS: +Ajax hath ta'en AEneas: shall it be? +No, by the flame of yonder glorious heaven, +He shall not carry him: I'll be ta'en too, +Or bring him off: fate, hear me what I say! +I reck not though I end my life to-day. + +HECTOR: +Stand, stand, thou Greek; thou art a goodly mark: +No? wilt thou not? I like thy armour well; +I'll frush it and unlock the rivets all, +But I'll be master of it: wilt thou not, +beast, abide? +Why, then fly on, I'll hunt thee for thy hide. + +ACHILLES: +Come here about me, you my Myrmidons; +Mark what I say. Attend me where I wheel: +Strike not a stroke, but keep yourselves in breath: +And when I have the bloody Hector found, +Empale him with your weapons round about; +In fellest manner execute your aims. +Follow me, sirs, and my proceedings eye: +It is decreed Hector the great must die. + +THERSITES: +The cuckold and the cuckold-maker are at it. Now, +bull! now, dog! 'Loo, Paris, 'loo! now my double- +henned sparrow! 'loo, Paris, 'loo! The bull has the +game: ware horns, ho! + +MARGARELON: +Turn, slave, and fight. + +THERSITES: +What art thou? + +MARGARELON: +A bastard son of Priam's. + +THERSITES: +I am a bastard too; I love bastards: I am a bastard +begot, bastard instructed, bastard in mind, bastard +in valour, in every thing illegitimate. One bear will +not bite another, and wherefore should one bastard? +Take heed, the quarrel's most ominous to us: if the +son of a whore fight for a whore, he tempts judgment: +farewell, bastard. + +MARGARELON: +The devil take thee, coward! + +HECTOR: +Most putrefied core, so fair without, +Thy goodly armour thus hath cost thy life. +Now is my day's work done; I'll take good breath: +Rest, sword; thou hast thy fill of blood and death. + +ACHILLES: +Look, Hector, how the sun begins to set; +How ugly night comes breathing at his heels: +Even with the vail and darking of the sun, +To close the day up, Hector's life is done. + +HECTOR: +I am unarm'd; forego this vantage, Greek. + +ACHILLES: +Strike, fellows, strike; this is the man I seek. +So, Ilion, fall thou next! now, Troy, sink down! +Here lies thy heart, thy sinews, and thy bone. +On, Myrmidons, and cry you all amain, +'Achilles hath the mighty Hector slain.' +Hark! a retire upon our Grecian part. + +MYRMIDONS: +The Trojan trumpets sound the like, my lord. + +ACHILLES: +The dragon wing of night o'erspreads the earth, +And, stickler-like, the armies separates. +My half-supp'd sword, that frankly would have fed, +Pleased with this dainty bait, thus goes to bed. +Come, tie his body to my horse's tail; +Along the field I will the Trojan trail. + +AGAMEMNON: +Hark! hark! what shout is that? + +NESTOR: +Peace, drums! +Achilles! Achilles! Hector's slain! Achilles. + +DIOMEDES: +The bruit is, Hector's slain, and by Achilles. + +AJAX: +If it be so, yet bragless let it be; +Great Hector was a man as good as he. + +AGAMEMNON: +March patiently along: let one be sent +To pray Achilles see us at our tent. +If in his death the gods have us befriended, +Great Troy is ours, and our sharp wars are ended. + +AENEAS: +Stand, ho! yet are we masters of the field: +Never go home; here starve we out the night. + +TROILUS: +Hector is slain. + +ALL: +Hector! the gods forbid! + +TROILUS: +He's dead; and at the murderer's horse's tail, +In beastly sort, dragg'd through the shameful field. +Frown on, you heavens, effect your rage with speed! +Sit, gods, upon your thrones, and smile at Troy! +I say, at once let your brief plagues be mercy, +And linger not our sure destructions on! + +AENEAS: +My lord, you do discomfort all the host! + +TROILUS: +You understand me not that tell me so: +I do not speak of flight, of fear, of death, +But dare all imminence that gods and men +Address their dangers in. Hector is gone: +Who shall tell Priam so, or Hecuba? +Let him that will a screech-owl aye be call'd, +Go in to Troy, and say there, Hector's dead: +There is a word will Priam turn to stone; +Make wells and Niobes of the maids and wives, +Cold statues of the youth, and, in a word, +Scare Troy out of itself. But, march away: +Hector is dead; there is no more to say. +Stay yet. You vile abominable tents, +Thus proudly pight upon our Phrygian plains, +Let Titan rise as early as he dare, +I'll through and through you! and, thou great-sized coward, +No space of earth shall sunder our two hates: +I'll haunt thee like a wicked conscience still, +That mouldeth goblins swift as frenzy's thoughts. +Strike a free march to Troy! with comfort go: +Hope of revenge shall hide our inward woe. + +PANDARUS: +But hear you, hear you! + +TROILUS: +Hence, broker-lackey! ignomy and shame +Pursue thy life, and live aye with thy name! + +PANDARUS: +A goodly medicine for my aching bones! O world! +world! world! thus is the poor agent despised! +O traitors and bawds, how earnestly are you set +a-work, and how ill requited! why should our +endeavour be so loved and the performance so loathed? +what verse for it? what instance for it? Let me see: +Full merrily the humble-bee doth sing, +Till he hath lost his honey and his sting; +And being once subdued in armed tail, +Sweet honey and sweet notes together fail. +Good traders in the flesh, set this in your +painted cloths. +As many as be here of pander's hall, +Your eyes, half out, weep out at Pandar's fall; +Or if you cannot weep, yet give some groans, +Though not for me, yet for your aching bones. +Brethren and sisters of the hold-door trade, +Some two months hence my will shall here be made: +It should be now, but that my fear is this, +Some galled goose of Winchester would hiss: +Till then I'll sweat and seek about for eases, +And at that time bequeathe you my diseases. + +ANTONIO: +In sooth, I know not why I am so sad: +It wearies me; you say it wearies you; +But how I caught it, found it, or came by it, +What stuff 'tis made of, whereof it is born, +I am to learn; +And such a want-wit sadness makes of me, +That I have much ado to know myself. + +SALARINO: +Your mind is tossing on the ocean; +There, where your argosies with portly sail, +Like signiors and rich burghers on the flood, +Or, as it were, the pageants of the sea, +Do overpeer the petty traffickers, +That curtsy to them, do them reverence, +As they fly by them with their woven wings. + +SALANIO: +Believe me, sir, had I such venture forth, +The better part of my affections would +Be with my hopes abroad. I should be still +Plucking the grass, to know where sits the wind, +Peering in maps for ports and piers and roads; +And every object that might make me fear +Misfortune to my ventures, out of doubt +Would make me sad. + +SALARINO: +My wind cooling my broth +Would blow me to an ague, when I thought +What harm a wind too great at sea might do. +I should not see the sandy hour-glass run, +But I should think of shallows and of flats, +And see my wealthy Andrew dock'd in sand, +Vailing her high-top lower than her ribs +To kiss her burial. Should I go to church +And see the holy edifice of stone, +And not bethink me straight of dangerous rocks, +Which touching but my gentle vessel's side, +Would scatter all her spices on the stream, +Enrobe the roaring waters with my silks, +And, in a word, but even now worth this, +And now worth nothing? Shall I have the thought +To think on this, and shall I lack the thought +That such a thing bechanced would make me sad? +But tell not me; I know, Antonio +Is sad to think upon his merchandise. + +ANTONIO: +Believe me, no: I thank my fortune for it, +My ventures are not in one bottom trusted, +Nor to one place; nor is my whole estate +Upon the fortune of this present year: +Therefore my merchandise makes me not sad. + +SALARINO: +Why, then you are in love. + +ANTONIO: +Fie, fie! + +SALARINO: +Not in love neither? Then let us say you are sad, +Because you are not merry: and 'twere as easy +For you to laugh and leap and say you are merry, +Because you are not sad. Now, by two-headed Janus, +Nature hath framed strange fellows in her time: +Some that will evermore peep through their eyes +And laugh like parrots at a bag-piper, +And other of such vinegar aspect +That they'll not show their teeth in way of smile, +Though Nestor swear the jest be laughable. + +SALANIO: +Here comes Bassanio, your most noble kinsman, +Gratiano and Lorenzo. Fare ye well: +We leave you now with better company. + +SALARINO: +I would have stay'd till I had made you merry, +If worthier friends had not prevented me. + +ANTONIO: +Your worth is very dear in my regard. +I take it, your own business calls on you +And you embrace the occasion to depart. + +SALARINO: +Good morrow, my good lords. + +BASSANIO: +Good signiors both, when shall we laugh? say, when? +You grow exceeding strange: must it be so? + +SALARINO: +We'll make our leisures to attend on yours. + +LORENZO: +My Lord Bassanio, since you have found Antonio, +We two will leave you: but at dinner-time, +I pray you, have in mind where we must meet. + +BASSANIO: +I will not fail you. + +GRATIANO: +You look not well, Signior Antonio; +You have too much respect upon the world: +They lose it that do buy it with much care: +Believe me, you are marvellously changed. + +ANTONIO: +I hold the world but as the world, Gratiano; +A stage where every man must play a part, +And mine a sad one. + +GRATIANO: +Let me play the fool: +With mirth and laughter let old wrinkles come, +And let my liver rather heat with wine +Than my heart cool with mortifying groans. +Why should a man, whose blood is warm within, +Sit like his grandsire cut in alabaster? +Sleep when he wakes and creep into the jaundice +By being peevish? I tell thee what, Antonio-- +I love thee, and it is my love that speaks-- +There are a sort of men whose visages +Do cream and mantle like a standing pond, +And do a wilful stillness entertain, +With purpose to be dress'd in an opinion +Of wisdom, gravity, profound conceit, +As who should say 'I am Sir Oracle, +And when I ope my lips let no dog bark!' +O my Antonio, I do know of these +That therefore only are reputed wise +For saying nothing; when, I am very sure, +If they should speak, would almost damn those ears, +Which, hearing them, would call their brothers fools. +I'll tell thee more of this another time: +But fish not, with this melancholy bait, +For this fool gudgeon, this opinion. +Come, good Lorenzo. Fare ye well awhile: +I'll end my exhortation after dinner. + +LORENZO: +Well, we will leave you then till dinner-time: +I must be one of these same dumb wise men, +For Gratiano never lets me speak. + +GRATIANO: +Well, keep me company but two years moe, +Thou shalt not know the sound of thine own tongue. + +ANTONIO: +Farewell: I'll grow a talker for this gear. + +GRATIANO: +Thanks, i' faith, for silence is only commendable +In a neat's tongue dried and a maid not vendible. + +ANTONIO: +Is that any thing now? + +BASSANIO: +Gratiano speaks an infinite deal of nothing, more +than any man in all Venice. His reasons are as two +grains of wheat hid in two bushels of chaff: you +shall seek all day ere you find them, and when you +have them, they are not worth the search. + +ANTONIO: +Well, tell me now what lady is the same +To whom you swore a secret pilgrimage, +That you to-day promised to tell me of? + +BASSANIO: +'Tis not unknown to you, Antonio, +How much I have disabled mine estate, +By something showing a more swelling port +Than my faint means would grant continuance: +Nor do I now make moan to be abridged +From such a noble rate; but my chief care +Is to come fairly off from the great debts +Wherein my time something too prodigal +Hath left me gaged. To you, Antonio, +I owe the most, in money and in love, +And from your love I have a warranty +To unburden all my plots and purposes +How to get clear of all the debts I owe. + +ANTONIO: +I pray you, good Bassanio, let me know it; +And if it stand, as you yourself still do, +Within the eye of honour, be assured, +My purse, my person, my extremest means, +Lie all unlock'd to your occasions. + +BASSANIO: +In my school-days, when I had lost one shaft, +I shot his fellow of the self-same flight +The self-same way with more advised watch, +To find the other forth, and by adventuring both +I oft found both: I urge this childhood proof, +Because what follows is pure innocence. +I owe you much, and, like a wilful youth, +That which I owe is lost; but if you please +To shoot another arrow that self way +Which you did shoot the first, I do not doubt, +As I will watch the aim, or to find both +Or bring your latter hazard back again +And thankfully rest debtor for the first. + +ANTONIO: +You know me well, and herein spend but time +To wind about my love with circumstance; +And out of doubt you do me now more wrong +In making question of my uttermost +Than if you had made waste of all I have: +Then do but say to me what I should do +That in your knowledge may by me be done, +And I am prest unto it: therefore, speak. + +BASSANIO: +In Belmont is a lady richly left; +And she is fair, and, fairer than that word, +Of wondrous virtues: sometimes from her eyes +I did receive fair speechless messages: +Her name is Portia, nothing undervalued +To Cato's daughter, Brutus' Portia: +Nor is the wide world ignorant of her worth, +For the four winds blow in from every coast +Renowned suitors, and her sunny locks +Hang on her temples like a golden fleece; +Which makes her seat of Belmont Colchos' strand, +And many Jasons come in quest of her. +O my Antonio, had I but the means +To hold a rival place with one of them, +I have a mind presages me such thrift, +That I should questionless be fortunate! + +ANTONIO: +Thou know'st that all my fortunes are at sea; +Neither have I money nor commodity +To raise a present sum: therefore go forth; +Try what my credit can in Venice do: +That shall be rack'd, even to the uttermost, +To furnish thee to Belmont, to fair Portia. +Go, presently inquire, and so will I, +Where money is, and I no question make +To have it of my trust or for my sake. + +PORTIA: +By my troth, Nerissa, my little body is aweary of +this great world. + +NERISSA: +You would be, sweet madam, if your miseries were in +the same abundance as your good fortunes are: and +yet, for aught I see, they are as sick that surfeit +with too much as they that starve with nothing. It +is no mean happiness therefore, to be seated in the +mean: superfluity comes sooner by white hairs, but +competency lives longer. + +PORTIA: +Good sentences and well pronounced. + +NERISSA: +They would be better, if well followed. + +PORTIA: +If to do were as easy as to know what were good to +do, chapels had been churches and poor men's +cottages princes' palaces. It is a good divine that +follows his own instructions: I can easier teach +twenty what were good to be done, than be one of the +twenty to follow mine own teaching. The brain may +devise laws for the blood, but a hot temper leaps +o'er a cold decree: such a hare is madness the +youth, to skip o'er the meshes of good counsel the +cripple. But this reasoning is not in the fashion to +choose me a husband. O me, the word 'choose!' I may +neither choose whom I would nor refuse whom I +dislike; so is the will of a living daughter curbed +by the will of a dead father. Is it not hard, +Nerissa, that I cannot choose one nor refuse none? + +NERISSA: +Your father was ever virtuous; and holy men at their +death have good inspirations: therefore the lottery, +that he hath devised in these three chests of gold, +silver and lead, whereof who chooses his meaning +chooses you, will, no doubt, never be chosen by any +rightly but one who shall rightly love. But what +warmth is there in your affection towards any of +these princely suitors that are already come? + +PORTIA: +I pray thee, over-name them; and as thou namest +them, I will describe them; and, according to my +description, level at my affection. + +NERISSA: +First, there is the Neapolitan prince. + +PORTIA: +Ay, that's a colt indeed, for he doth nothing but +talk of his horse; and he makes it a great +appropriation to his own good parts, that he can +shoe him himself. I am much afeard my lady his +mother played false with a smith. + +NERISSA: +Then there is the County Palatine. + +PORTIA: +He doth nothing but frown, as who should say 'If you +will not have me, choose:' he hears merry tales and +smiles not: I fear he will prove the weeping +philosopher when he grows old, being so full of +unmannerly sadness in his youth. I had rather be +married to a death's-head with a bone in his mouth +than to either of these. God defend me from these +two! + +NERISSA: +How say you by the French lord, Monsieur Le Bon? + +PORTIA: +God made him, and therefore let him pass for a man. +In truth, I know it is a sin to be a mocker: but, +he! why, he hath a horse better than the +Neapolitan's, a better bad habit of frowning than +the Count Palatine; he is every man in no man; if a +throstle sing, he falls straight a capering: he will +fence with his own shadow: if I should marry him, I +should marry twenty husbands. If he would despise me +I would forgive him, for if he love me to madness, I +shall never requite him. + +NERISSA: +What say you, then, to Falconbridge, the young baron +of England? + +PORTIA: +You know I say nothing to him, for he understands +not me, nor I him: he hath neither Latin, French, +nor Italian, and you will come into the court and +swear that I have a poor pennyworth in the English. +He is a proper man's picture, but, alas, who can +converse with a dumb-show? How oddly he is suited! +I think he bought his doublet in Italy, his round +hose in France, his bonnet in Germany and his +behavior every where. + +NERISSA: +What think you of the Scottish lord, his neighbour? + +PORTIA: +That he hath a neighbourly charity in him, for he +borrowed a box of the ear of the Englishman and +swore he would pay him again when he was able: I +think the Frenchman became his surety and sealed +under for another. + +NERISSA: +How like you the young German, the Duke of Saxony's nephew? + +PORTIA: +Very vilely in the morning, when he is sober, and +most vilely in the afternoon, when he is drunk: when +he is best, he is a little worse than a man, and +when he is worst, he is little better than a beast: +and the worst fall that ever fell, I hope I shall +make shift to go without him. + +NERISSA: +If he should offer to choose, and choose the right +casket, you should refuse to perform your father's +will, if you should refuse to accept him. + +PORTIA: +Therefore, for fear of the worst, I pray thee, set a +deep glass of rhenish wine on the contrary casket, +for if the devil be within and that temptation +without, I know he will choose it. I will do any +thing, Nerissa, ere I'll be married to a sponge. + +NERISSA: +You need not fear, lady, the having any of these +lords: they have acquainted me with their +determinations; which is, indeed, to return to their +home and to trouble you with no more suit, unless +you may be won by some other sort than your father's +imposition depending on the caskets. + +PORTIA: +If I live to be as old as Sibylla, I will die as +chaste as Diana, unless I be obtained by the manner +of my father's will. I am glad this parcel of wooers +are so reasonable, for there is not one among them +but I dote on his very absence, and I pray God grant +them a fair departure. + +NERISSA: +Do you not remember, lady, in your father's time, a +Venetian, a scholar and a soldier, that came hither +in company of the Marquis of Montferrat? + +PORTIA: +Yes, yes, it was Bassanio; as I think, he was so called. + +NERISSA: +True, madam: he, of all the men that ever my foolish +eyes looked upon, was the best deserving a fair lady. + +PORTIA: +I remember him well, and I remember him worthy of +thy praise. +How now! what news? + +Servant: +The four strangers seek for you, madam, to take +their leave: and there is a forerunner come from a +fifth, the Prince of Morocco, who brings word the +prince his master will be here to-night. + +PORTIA: +If I could bid the fifth welcome with so good a +heart as I can bid the other four farewell, I should +be glad of his approach: if he have the condition +of a saint and the complexion of a devil, I had +rather he should shrive me than wive me. Come, +Nerissa. Sirrah, go before. +Whiles we shut the gates +upon one wooer, another knocks at the door. + +SHYLOCK: +Three thousand ducats; well. + +BASSANIO: +Ay, sir, for three months. + +SHYLOCK: +For three months; well. + +BASSANIO: +For the which, as I told you, Antonio shall be bound. + +SHYLOCK: +Antonio shall become bound; well. + +BASSANIO: +May you stead me? will you pleasure me? shall I +know your answer? + +SHYLOCK: +Three thousand ducats for three months and Antonio bound. + +BASSANIO: +Your answer to that. + +SHYLOCK: +Antonio is a good man. + +BASSANIO: +Have you heard any imputation to the contrary? + +SHYLOCK: +Oh, no, no, no, no: my meaning in saying he is a +good man is to have you understand me that he is +sufficient. Yet his means are in supposition: he +hath an argosy bound to Tripolis, another to the +Indies; I understand moreover, upon the Rialto, he +hath a third at Mexico, a fourth for England, and +other ventures he hath, squandered abroad. But ships +are but boards, sailors but men: there be land-rats +and water-rats, water-thieves and land-thieves, I +mean pirates, and then there is the peril of waters, +winds and rocks. The man is, notwithstanding, +sufficient. Three thousand ducats; I think I may +take his bond. + +BASSANIO: +Be assured you may. + +SHYLOCK: +I will be assured I may; and, that I may be assured, +I will bethink me. May I speak with Antonio? + +BASSANIO: +If it please you to dine with us. + +SHYLOCK: +Yes, to smell pork; to eat of the habitation which +your prophet the Nazarite conjured the devil into. I +will buy with you, sell with you, talk with you, +walk with you, and so following, but I will not eat +with you, drink with you, nor pray with you. What +news on the Rialto? Who is he comes here? + +BASSANIO: +This is Signior Antonio. + +SHYLOCK: + +BASSANIO: +Shylock, do you hear? + +SHYLOCK: +I am debating of my present store, +And, by the near guess of my memory, +I cannot instantly raise up the gross +Of full three thousand ducats. What of that? +Tubal, a wealthy Hebrew of my tribe, +Will furnish me. But soft! how many months +Do you desire? +Rest you fair, good signior; +Your worship was the last man in our mouths. + +ANTONIO: +Shylock, although I neither lend nor borrow +By taking nor by giving of excess, +Yet, to supply the ripe wants of my friend, +I'll break a custom. Is he yet possess'd +How much ye would? + +SHYLOCK: +Ay, ay, three thousand ducats. + +ANTONIO: +And for three months. + +SHYLOCK: +I had forgot; three months; you told me so. +Well then, your bond; and let me see; but hear you; +Methought you said you neither lend nor borrow +Upon advantage. + +ANTONIO: +I do never use it. + +SHYLOCK: +When Jacob grazed his uncle Laban's sheep-- +This Jacob from our holy Abram was, +As his wise mother wrought in his behalf, +The third possessor; ay, he was the third-- + +ANTONIO: +And what of him? did he take interest? + +SHYLOCK: +No, not take interest, not, as you would say, +Directly interest: mark what Jacob did. +When Laban and himself were compromised +That all the eanlings which were streak'd and pied +Should fall as Jacob's hire, the ewes, being rank, +In the end of autumn turned to the rams, +And, when the work of generation was +Between these woolly breeders in the act, +The skilful shepherd peel'd me certain wands, +And, in the doing of the deed of kind, +He stuck them up before the fulsome ewes, +Who then conceiving did in eaning time +Fall parti-colour'd lambs, and those were Jacob's. +This was a way to thrive, and he was blest: +And thrift is blessing, if men steal it not. + +ANTONIO: +This was a venture, sir, that Jacob served for; +A thing not in his power to bring to pass, +But sway'd and fashion'd by the hand of heaven. +Was this inserted to make interest good? +Or is your gold and silver ewes and rams? + +SHYLOCK: +I cannot tell; I make it breed as fast: +But note me, signior. + +ANTONIO: +Mark you this, Bassanio, +The devil can cite Scripture for his purpose. +An evil soul producing holy witness +Is like a villain with a smiling cheek, +A goodly apple rotten at the heart: +O, what a goodly outside falsehood hath! + +SHYLOCK: +Three thousand ducats; 'tis a good round sum. +Three months from twelve; then, let me see; the rate-- + +ANTONIO: +Well, Shylock, shall we be beholding to you? + +SHYLOCK: +Signior Antonio, many a time and oft +In the Rialto you have rated me +About my moneys and my usances: +Still have I borne it with a patient shrug, +For sufferance is the badge of all our tribe. +You call me misbeliever, cut-throat dog, +And spit upon my Jewish gaberdine, +And all for use of that which is mine own. +Well then, it now appears you need my help: +Go to, then; you come to me, and you say +'Shylock, we would have moneys:' you say so; +You, that did void your rheum upon my beard +And foot me as you spurn a stranger cur +Over your threshold: moneys is your suit +What should I say to you? Should I not say +'Hath a dog money? is it possible +A cur can lend three thousand ducats?' Or +Shall I bend low and in a bondman's key, +With bated breath and whispering humbleness, Say this; +'Fair sir, you spit on me on Wednesday last; +You spurn'd me such a day; another time +You call'd me dog; and for these courtesies +I'll lend you thus much moneys'? + +ANTONIO: +I am as like to call thee so again, +To spit on thee again, to spurn thee too. +If thou wilt lend this money, lend it not +As to thy friends; for when did friendship take +A breed for barren metal of his friend? +But lend it rather to thine enemy, +Who, if he break, thou mayst with better face +Exact the penalty. + +SHYLOCK: +Why, look you, how you storm! +I would be friends with you and have your love, +Forget the shames that you have stain'd me with, +Supply your present wants and take no doit +Of usance for my moneys, and you'll not hear me: +This is kind I offer. + +BASSANIO: +This were kindness. + +SHYLOCK: +This kindness will I show. +Go with me to a notary, seal me there +Your single bond; and, in a merry sport, +If you repay me not on such a day, +In such a place, such sum or sums as are +Express'd in the condition, let the forfeit +Be nominated for an equal pound +Of your fair flesh, to be cut off and taken +In what part of your body pleaseth me. + +ANTONIO: +Content, i' faith: I'll seal to such a bond +And say there is much kindness in the Jew. + +BASSANIO: +You shall not seal to such a bond for me: +I'll rather dwell in my necessity. + +ANTONIO: +Why, fear not, man; I will not forfeit it: +Within these two months, that's a month before +This bond expires, I do expect return +Of thrice three times the value of this bond. + +SHYLOCK: +O father Abram, what these Christians are, +Whose own hard dealings teaches them suspect +The thoughts of others! Pray you, tell me this; +If he should break his day, what should I gain +By the exaction of the forfeiture? +A pound of man's flesh taken from a man +Is not so estimable, profitable neither, +As flesh of muttons, beefs, or goats. I say, +To buy his favour, I extend this friendship: +If he will take it, so; if not, adieu; +And, for my love, I pray you wrong me not. + +ANTONIO: +Yes Shylock, I will seal unto this bond. + +SHYLOCK: +Then meet me forthwith at the notary's; +Give him direction for this merry bond, +And I will go and purse the ducats straight, +See to my house, left in the fearful guard +Of an unthrifty knave, and presently +I will be with you. + +ANTONIO: +Hie thee, gentle Jew. +The Hebrew will turn Christian: he grows kind. + +BASSANIO: +I like not fair terms and a villain's mind. + +ANTONIO: +Come on: in this there can be no dismay; +My ships come home a month before the day. + +MOROCCO: +Mislike me not for my complexion, +The shadow'd livery of the burnish'd sun, +To whom I am a neighbour and near bred. +Bring me the fairest creature northward born, +Where Phoebus' fire scarce thaws the icicles, +And let us make incision for your love, +To prove whose blood is reddest, his or mine. +I tell thee, lady, this aspect of mine +Hath fear'd the valiant: by my love I swear +The best-regarded virgins of our clime +Have loved it too: I would not change this hue, +Except to steal your thoughts, my gentle queen. + +PORTIA: +In terms of choice I am not solely led +By nice direction of a maiden's eyes; +Besides, the lottery of my destiny +Bars me the right of voluntary choosing: +But if my father had not scanted me +And hedged me by his wit, to yield myself +His wife who wins me by that means I told you, +Yourself, renowned prince, then stood as fair +As any comer I have look'd on yet +For my affection. + +MOROCCO: +Even for that I thank you: +Therefore, I pray you, lead me to the caskets +To try my fortune. By this scimitar +That slew the Sophy and a Persian prince +That won three fields of Sultan Solyman, +I would outstare the sternest eyes that look, +Outbrave the heart most daring on the earth, +Pluck the young sucking cubs from the she-bear, +Yea, mock the lion when he roars for prey, +To win thee, lady. But, alas the while! +If Hercules and Lichas play at dice +Which is the better man, the greater throw +May turn by fortune from the weaker hand: +So is Alcides beaten by his page; +And so may I, blind fortune leading me, +Miss that which one unworthier may attain, +And die with grieving. + +PORTIA: +You must take your chance, +And either not attempt to choose at all +Or swear before you choose, if you choose wrong +Never to speak to lady afterward +In way of marriage: therefore be advised. + +MOROCCO: +Nor will not. Come, bring me unto my chance. + +PORTIA: +First, forward to the temple: after dinner +Your hazard shall be made. + +MOROCCO: +Good fortune then! +To make me blest or cursed'st among men. + +LAUNCELOT: +Certainly my conscience will serve me to run from +this Jew my master. The fiend is at mine elbow and +tempts me saying to me 'Gobbo, Launcelot Gobbo, good +Launcelot,' or 'good Gobbo,' or good Launcelot +Gobbo, use your legs, take the start, run away. My +conscience says 'No; take heed,' honest Launcelot; +take heed, honest Gobbo, or, as aforesaid, 'honest +Launcelot Gobbo; do not run; scorn running with thy +heels.' Well, the most courageous fiend bids me +pack: 'Via!' says the fiend; 'away!' says the +fiend; 'for the heavens, rouse up a brave mind,' +says the fiend, 'and run.' Well, my conscience, +hanging about the neck of my heart, says very wisely +to me 'My honest friend Launcelot, being an honest +man's son,' or rather an honest woman's son; for, +indeed, my father did something smack, something +grow to, he had a kind of taste; well, my conscience +says 'Launcelot, budge not.' 'Budge,' says the +fiend. 'Budge not,' says my conscience. +'Conscience,' say I, 'you counsel well;' ' Fiend,' +say I, 'you counsel well:' to be ruled by my +conscience, I should stay with the Jew my master, +who, God bless the mark, is a kind of devil; and, to +run away from the Jew, I should be ruled by the +fiend, who, saving your reverence, is the devil +himself. Certainly the Jew is the very devil +incarnal; and, in my conscience, my conscience is +but a kind of hard conscience, to offer to counsel +me to stay with the Jew. The fiend gives the more +friendly counsel: I will run, fiend; my heels are +at your command; I will run. + +GOBBO: +Master young man, you, I pray you, which is the way +to master Jew's? + +LAUNCELOT: + +GOBBO: +Master young gentleman, I pray you, which is the way +to master Jew's? + +LAUNCELOT: +Turn up on your right hand at the next turning, but, +at the next turning of all, on your left; marry, at +the very next turning, turn of no hand, but turn +down indirectly to the Jew's house. + +GOBBO: +By God's sonties, 'twill be a hard way to hit. Can +you tell me whether one Launcelot, +that dwells with him, dwell with him or no? + +LAUNCELOT: +Talk you of young Master Launcelot? +Mark me now; now will I raise the waters. Talk you +of young Master Launcelot? + +GOBBO: +No master, sir, but a poor man's son: his father, +though I say it, is an honest exceeding poor man +and, God be thanked, well to live. + +LAUNCELOT: +Well, let his father be what a' will, we talk of +young Master Launcelot. + +GOBBO: +Your worship's friend and Launcelot, sir. + +LAUNCELOT: +But I pray you, ergo, old man, ergo, I beseech you, +talk you of young Master Launcelot? + +GOBBO: +Of Launcelot, an't please your mastership. + +LAUNCELOT: +Ergo, Master Launcelot. Talk not of Master +Launcelot, father; for the young gentleman, +according to Fates and Destinies and such odd +sayings, the Sisters Three and such branches of +learning, is indeed deceased, or, as you would say +in plain terms, gone to heaven. + +GOBBO: +Marry, God forbid! the boy was the very staff of my +age, my very prop. + +LAUNCELOT: +Do I look like a cudgel or a hovel-post, a staff or +a prop? Do you know me, father? + +GOBBO: +Alack the day, I know you not, young gentleman: +but, I pray you, tell me, is my boy, God rest his +soul, alive or dead? + +LAUNCELOT: +Do you not know me, father? + +GOBBO: +Alack, sir, I am sand-blind; I know you not. + +LAUNCELOT: +Nay, indeed, if you had your eyes, you might fail of +the knowing me: it is a wise father that knows his +own child. Well, old man, I will tell you news of +your son: give me your blessing: truth will come +to light; murder cannot be hid long; a man's son +may, but at the length truth will out. + +GOBBO: +Pray you, sir, stand up: I am sure you are not +Launcelot, my boy. + +LAUNCELOT: +Pray you, let's have no more fooling about it, but +give me your blessing: I am Launcelot, your boy +that was, your son that is, your child that shall +be. + +GOBBO: +I cannot think you are my son. + +LAUNCELOT: +I know not what I shall think of that: but I am +Launcelot, the Jew's man, and I am sure Margery your +wife is my mother. + +GOBBO: +Her name is Margery, indeed: I'll be sworn, if thou +be Launcelot, thou art mine own flesh and blood. +Lord worshipped might he be! what a beard hast thou +got! thou hast got more hair on thy chin than +Dobbin my fill-horse has on his tail. + +LAUNCELOT: +It should seem, then, that Dobbin's tail grows +backward: I am sure he had more hair of his tail +than I have of my face when I last saw him. + +GOBBO: +Lord, how art thou changed! How dost thou and thy +master agree? I have brought him a present. How +'gree you now? + +LAUNCELOT: +Well, well: but, for mine own part, as I have set +up my rest to run away, so I will not rest till I +have run some ground. My master's a very Jew: give +him a present! give him a halter: I am famished in +his service; you may tell every finger I have with +my ribs. Father, I am glad you are come: give me +your present to one Master Bassanio, who, indeed, +gives rare new liveries: if I serve not him, I +will run as far as God has any ground. O rare +fortune! here comes the man: to him, father; for I +am a Jew, if I serve the Jew any longer. + +BASSANIO: +You may do so; but let it be so hasted that supper +be ready at the farthest by five of the clock. See +these letters delivered; put the liveries to making, +and desire Gratiano to come anon to my lodging. + +LAUNCELOT: +To him, father. + +GOBBO: +God bless your worship! + +BASSANIO: +Gramercy! wouldst thou aught with me? + +GOBBO: +Here's my son, sir, a poor boy,-- + +LAUNCELOT: +Not a poor boy, sir, but the rich Jew's man; that +would, sir, as my father shall specify-- + +GOBBO: +He hath a great infection, sir, as one would say, to serve-- + +LAUNCELOT: +Indeed, the short and the long is, I serve the Jew, +and have a desire, as my father shall specify-- + +GOBBO: +His master and he, saving your worship's reverence, +are scarce cater-cousins-- + +LAUNCELOT: +To be brief, the very truth is that the Jew, having +done me wrong, doth cause me, as my father, being, I +hope, an old man, shall frutify unto you-- + +GOBBO: +I have here a dish of doves that I would bestow upon +your worship, and my suit is-- + +LAUNCELOT: +In very brief, the suit is impertinent to myself, as +your worship shall know by this honest old man; and, +though I say it, though old man, yet poor man, my father. + +BASSANIO: +One speak for both. What would you? + +LAUNCELOT: +Serve you, sir. + +GOBBO: +That is the very defect of the matter, sir. + +BASSANIO: +I know thee well; thou hast obtain'd thy suit: +Shylock thy master spoke with me this day, +And hath preferr'd thee, if it be preferment +To leave a rich Jew's service, to become +The follower of so poor a gentleman. + +LAUNCELOT: +The old proverb is very well parted between my +master Shylock and you, sir: you have the grace of +God, sir, and he hath enough. + +BASSANIO: +Thou speak'st it well. Go, father, with thy son. +Take leave of thy old master and inquire +My lodging out. Give him a livery +More guarded than his fellows': see it done. + +LAUNCELOT: +Father, in. I cannot get a service, no; I have +ne'er a tongue in my head. Well, if any man in +Italy have a fairer table which doth offer to swear +upon a book, I shall have good fortune. Go to, +here's a simple line of life: here's a small trifle +of wives: alas, fifteen wives is nothing! eleven +widows and nine maids is a simple coming-in for one +man: and then to 'scape drowning thrice, and to be +in peril of my life with the edge of a feather-bed; +here are simple scapes. Well, if Fortune be a +woman, she's a good wench for this gear. Father, +come; I'll take my leave of the Jew in the twinkling of an eye. + +BASSANIO: +I pray thee, good Leonardo, think on this: +These things being bought and orderly bestow'd, +Return in haste, for I do feast to-night +My best-esteem'd acquaintance: hie thee, go. + +LEONARDO: +My best endeavours shall be done herein. + +GRATIANO: +Where is your master? + +LEONARDO: +Yonder, sir, he walks. + +GRATIANO: +Signior Bassanio! + +BASSANIO: +Gratiano! + +GRATIANO: +I have a suit to you. + +BASSANIO: +You have obtain'd it. + +GRATIANO: +You must not deny me: I must go with you to Belmont. + +BASSANIO: +Why then you must. But hear thee, Gratiano; +Thou art too wild, too rude and bold of voice; +Parts that become thee happily enough +And in such eyes as ours appear not faults; +But where thou art not known, why, there they show +Something too liberal. Pray thee, take pain +To allay with some cold drops of modesty +Thy skipping spirit, lest through thy wild behavior +I be misconstrued in the place I go to, +And lose my hopes. + +GRATIANO: +Signior Bassanio, hear me: +If I do not put on a sober habit, +Talk with respect and swear but now and then, +Wear prayer-books in my pocket, look demurely, +Nay more, while grace is saying, hood mine eyes +Thus with my hat, and sigh and say 'amen,' +Use all the observance of civility, +Like one well studied in a sad ostent +To please his grandam, never trust me more. + +BASSANIO: +Well, we shall see your bearing. + +GRATIANO: +Nay, but I bar to-night: you shall not gauge me +By what we do to-night. + +BASSANIO: +No, that were pity: +I would entreat you rather to put on +Your boldest suit of mirth, for we have friends +That purpose merriment. But fare you well: +I have some business. + +GRATIANO: +And I must to Lorenzo and the rest: +But we will visit you at supper-time. + +JESSICA: +I am sorry thou wilt leave my father so: +Our house is hell, and thou, a merry devil, +Didst rob it of some taste of tediousness. +But fare thee well, there is a ducat for thee: +And, Launcelot, soon at supper shalt thou see +Lorenzo, who is thy new master's guest: +Give him this letter; do it secretly; +And so farewell: I would not have my father +See me in talk with thee. + +LAUNCELOT: +Adieu! tears exhibit my tongue. Most beautiful +pagan, most sweet Jew! if a Christian did not play +the knave and get thee, I am much deceived. But, +adieu: these foolish drops do something drown my +manly spirit: adieu. + +JESSICA: +Farewell, good Launcelot. +Alack, what heinous sin is it in me +To be ashamed to be my father's child! +But though I am a daughter to his blood, +I am not to his manners. O Lorenzo, +If thou keep promise, I shall end this strife, +Become a Christian and thy loving wife. + +LORENZO: +Nay, we will slink away in supper-time, +Disguise us at my lodging and return, +All in an hour. + +GRATIANO: +We have not made good preparation. + +SALARINO: +We have not spoke us yet of torchbearers. + +SALANIO: +'Tis vile, unless it may be quaintly order'd, +And better in my mind not undertook. + +LORENZO: +'Tis now but four o'clock: we have two hours +To furnish us. +Friend Launcelot, what's the news? + +LAUNCELOT: +An it shall please you to break up +this, it shall seem to signify. + +LORENZO: +I know the hand: in faith, 'tis a fair hand; +And whiter than the paper it writ on +Is the fair hand that writ. + +GRATIANO: +Love-news, in faith. + +LAUNCELOT: +By your leave, sir. + +LORENZO: +Whither goest thou? + +LAUNCELOT: +Marry, sir, to bid my old master the +Jew to sup to-night with my new master the Christian. + +LORENZO: +Hold here, take this: tell gentle Jessica +I will not fail her; speak it privately. +Go, gentlemen, +Will you prepare you for this masque tonight? +I am provided of a torch-bearer. + +SALANIO: +Ay, marry, I'll be gone about it straight. + +SALANIO: +And so will I. + +LORENZO: +Meet me and Gratiano +At Gratiano's lodging some hour hence. + +SALARINO: +'Tis good we do so. + +GRATIANO: +Was not that letter from fair Jessica? + +LORENZO: +I must needs tell thee all. She hath directed +How I shall take her from her father's house, +What gold and jewels she is furnish'd with, +What page's suit she hath in readiness. +If e'er the Jew her father come to heaven, +It will be for his gentle daughter's sake: +And never dare misfortune cross her foot, +Unless she do it under this excuse, +That she is issue to a faithless Jew. +Come, go with me; peruse this as thou goest: +Fair Jessica shall be my torch-bearer. + +SHYLOCK: +Well, thou shalt see, thy eyes shall be thy judge, +The difference of old Shylock and Bassanio:-- +What, Jessica!--thou shalt not gormandise, +As thou hast done with me:--What, Jessica!-- +And sleep and snore, and rend apparel out;-- +Why, Jessica, I say! + +LAUNCELOT: +Why, Jessica! + +SHYLOCK: +Who bids thee call? I do not bid thee call. + +LAUNCELOT: +Your worship was wont to tell me that +I could do nothing without bidding. + +JESSICA: +Call you? what is your will? + +SHYLOCK: +I am bid forth to supper, Jessica: +There are my keys. But wherefore should I go? +I am not bid for love; they flatter me: +But yet I'll go in hate, to feed upon +The prodigal Christian. Jessica, my girl, +Look to my house. I am right loath to go: +There is some ill a-brewing towards my rest, +For I did dream of money-bags to-night. + +LAUNCELOT: +I beseech you, sir, go: my young master doth expect +your reproach. + +SHYLOCK: +So do I his. + +LAUNCELOT: +An they have conspired together, I will not say you +shall see a masque; but if you do, then it was not +for nothing that my nose fell a-bleeding on +Black-Monday last at six o'clock i' the morning, +falling out that year on Ash-Wednesday was four +year, in the afternoon. + +SHYLOCK: +What, are there masques? Hear you me, Jessica: +Lock up my doors; and when you hear the drum +And the vile squealing of the wry-neck'd fife, +Clamber not you up to the casements then, +Nor thrust your head into the public street +To gaze on Christian fools with varnish'd faces, +But stop my house's ears, I mean my casements: +Let not the sound of shallow foppery enter +My sober house. By Jacob's staff, I swear, +I have no mind of feasting forth to-night: +But I will go. Go you before me, sirrah; +Say I will come. + +LAUNCELOT: +I will go before, sir. Mistress, look out at +window, for all this, There will come a Christian +boy, will be worth a Jewess' eye. + +SHYLOCK: +What says that fool of Hagar's offspring, ha? + +JESSICA: +His words were 'Farewell mistress;' nothing else. + +SHYLOCK: +The patch is kind enough, but a huge feeder; +Snail-slow in profit, and he sleeps by day +More than the wild-cat: drones hive not with me; +Therefore I part with him, and part with him +To one that would have him help to waste +His borrow'd purse. Well, Jessica, go in; +Perhaps I will return immediately: +Do as I bid you; shut doors after you: +Fast bind, fast find; +A proverb never stale in thrifty mind. + +JESSICA: +Farewell; and if my fortune be not crost, +I have a father, you a daughter, lost. + +GRATIANO: +This is the pent-house under which Lorenzo +Desired us to make stand. + +SALARINO: +His hour is almost past. + +GRATIANO: +And it is marvel he out-dwells his hour, +For lovers ever run before the clock. + +SALARINO: +O, ten times faster Venus' pigeons fly +To seal love's bonds new-made, than they are wont +To keep obliged faith unforfeited! + +GRATIANO: +That ever holds: who riseth from a feast +With that keen appetite that he sits down? +Where is the horse that doth untread again +His tedious measures with the unbated fire +That he did pace them first? All things that are, +Are with more spirit chased than enjoy'd. +How like a younker or a prodigal +The scarfed bark puts from her native bay, +Hugg'd and embraced by the strumpet wind! +How like the prodigal doth she return, +With over-weather'd ribs and ragged sails, +Lean, rent and beggar'd by the strumpet wind! + +SALARINO: +Here comes Lorenzo: more of this hereafter. + +LORENZO: +Sweet friends, your patience for my long abode; +Not I, but my affairs, have made you wait: +When you shall please to play the thieves for wives, +I'll watch as long for you then. Approach; +Here dwells my father Jew. Ho! who's within? + +JESSICA: +Who are you? Tell me, for more certainty, +Albeit I'll swear that I do know your tongue. + +LORENZO: +Lorenzo, and thy love. + +JESSICA: +Lorenzo, certain, and my love indeed, +For who love I so much? And now who knows +But you, Lorenzo, whether I am yours? + +LORENZO: +Heaven and thy thoughts are witness that thou art. + +JESSICA: +Here, catch this casket; it is worth the pains. +I am glad 'tis night, you do not look on me, +For I am much ashamed of my exchange: +But love is blind and lovers cannot see +The pretty follies that themselves commit; +For if they could, Cupid himself would blush +To see me thus transformed to a boy. + +LORENZO: +Descend, for you must be my torchbearer. + +JESSICA: +What, must I hold a candle to my shames? +They in themselves, good-sooth, are too too light. +Why, 'tis an office of discovery, love; +And I should be obscured. + +LORENZO: +So are you, sweet, +Even in the lovely garnish of a boy. +But come at once; +For the close night doth play the runaway, +And we are stay'd for at Bassanio's feast. + +JESSICA: +I will make fast the doors, and gild myself +With some more ducats, and be with you straight. + +GRATIANO: +Now, by my hood, a Gentile and no Jew. + +LORENZO: +Beshrew me but I love her heartily; +For she is wise, if I can judge of her, +And fair she is, if that mine eyes be true, +And true she is, as she hath proved herself, +And therefore, like herself, wise, fair and true, +Shall she be placed in my constant soul. +What, art thou come? On, gentlemen; away! +Our masquing mates by this time for us stay. + +ANTONIO: +Who's there? + +GRATIANO: +Signior Antonio! + +ANTONIO: +Fie, fie, Gratiano! where are all the rest? +'Tis nine o'clock: our friends all stay for you. +No masque to-night: the wind is come about; +Bassanio presently will go aboard: +I have sent twenty out to seek for you. + +GRATIANO: +I am glad on't: I desire no more delight +Than to be under sail and gone to-night. + +PORTIA: +Go draw aside the curtains and discover +The several caskets to this noble prince. +Now make your choice. + +MOROCCO: +The first, of gold, who this inscription bears, +'Who chooseth me shall gain what many men desire;' +The second, silver, which this promise carries, +'Who chooseth me shall get as much as he deserves;' +This third, dull lead, with warning all as blunt, +'Who chooseth me must give and hazard all he hath.' +How shall I know if I do choose the right? + +PORTIA: +The one of them contains my picture, prince: +If you choose that, then I am yours withal. + +MOROCCO: +Some god direct my judgment! Let me see; +I will survey the inscriptions back again. +What says this leaden casket? +'Who chooseth me must give and hazard all he hath.' +Must give: for what? for lead? hazard for lead? +This casket threatens. Men that hazard all +Do it in hope of fair advantages: +A golden mind stoops not to shows of dross; +I'll then nor give nor hazard aught for lead. +What says the silver with her virgin hue? +'Who chooseth me shall get as much as he deserves.' +As much as he deserves! Pause there, Morocco, +And weigh thy value with an even hand: +If thou be'st rated by thy estimation, +Thou dost deserve enough; and yet enough +May not extend so far as to the lady: +And yet to be afeard of my deserving +Were but a weak disabling of myself. +As much as I deserve! Why, that's the lady: +I do in birth deserve her, and in fortunes, +In graces and in qualities of breeding; +But more than these, in love I do deserve. +What if I stray'd no further, but chose here? +Let's see once more this saying graved in gold +'Who chooseth me shall gain what many men desire.' +Why, that's the lady; all the world desires her; +From the four corners of the earth they come, +To kiss this shrine, this mortal-breathing saint: +The Hyrcanian deserts and the vasty wilds +Of wide Arabia are as thoroughfares now +For princes to come view fair Portia: +The watery kingdom, whose ambitious head +Spits in the face of heaven, is no bar +To stop the foreign spirits, but they come, +As o'er a brook, to see fair Portia. +One of these three contains her heavenly picture. +Is't like that lead contains her? 'Twere damnation +To think so base a thought: it were too gross +To rib her cerecloth in the obscure grave. +Or shall I think in silver she's immured, +Being ten times undervalued to tried gold? +O sinful thought! Never so rich a gem +Was set in worse than gold. They have in England +A coin that bears the figure of an angel +Stamped in gold, but that's insculp'd upon; +But here an angel in a golden bed +Lies all within. Deliver me the key: +Here do I choose, and thrive I as I may! + +PORTIA: +There, take it, prince; and if my form lie there, +Then I am yours. + +MOROCCO: +O hell! what have we here? +A carrion Death, within whose empty eye +There is a written scroll! I'll read the writing. +All that glitters is not gold; +Often have you heard that told: +Many a man his life hath sold +But my outside to behold: +Gilded tombs do worms enfold. +Had you been as wise as bold, +Young in limbs, in judgment old, +Your answer had not been inscroll'd: +Fare you well; your suit is cold. +Cold, indeed; and labour lost: +Then, farewell, heat, and welcome, frost! +Portia, adieu. I have too grieved a heart +To take a tedious leave: thus losers part. + +PORTIA: +A gentle riddance. Draw the curtains, go. +Let all of his complexion choose me so. + +SALARINO: +Why, man, I saw Bassanio under sail: +With him is Gratiano gone along; +And in their ship I am sure Lorenzo is not. + +SALANIO: +The villain Jew with outcries raised the duke, +Who went with him to search Bassanio's ship. + +SALARINO: +He came too late, the ship was under sail: +But there the duke was given to understand +That in a gondola were seen together +Lorenzo and his amorous Jessica: +Besides, Antonio certified the duke +They were not with Bassanio in his ship. + +SALANIO: +I never heard a passion so confused, +So strange, outrageous, and so variable, +As the dog Jew did utter in the streets: +'My daughter! O my ducats! O my daughter! +Fled with a Christian! O my Christian ducats! +Justice! the law! my ducats, and my daughter! +A sealed bag, two sealed bags of ducats, +Of double ducats, stolen from me by my daughter! +And jewels, two stones, two rich and precious stones, +Stolen by my daughter! Justice! find the girl; +She hath the stones upon her, and the ducats.' + +SALARINO: +Why, all the boys in Venice follow him, +Crying, his stones, his daughter, and his ducats. + +SALANIO: +Let good Antonio look he keep his day, +Or he shall pay for this. + +SALARINO: +Marry, well remember'd. +I reason'd with a Frenchman yesterday, +Who told me, in the narrow seas that part +The French and English, there miscarried +A vessel of our country richly fraught: +I thought upon Antonio when he told me; +And wish'd in silence that it were not his. + +SALANIO: +You were best to tell Antonio what you hear; +Yet do not suddenly, for it may grieve him. + +SALARINO: +A kinder gentleman treads not the earth. +I saw Bassanio and Antonio part: +Bassanio told him he would make some speed +Of his return: he answer'd, 'Do not so; +Slubber not business for my sake, Bassanio +But stay the very riping of the time; +And for the Jew's bond which he hath of me, +Let it not enter in your mind of love: +Be merry, and employ your chiefest thoughts +To courtship and such fair ostents of love +As shall conveniently become you there:' +And even there, his eye being big with tears, +Turning his face, he put his hand behind him, +And with affection wondrous sensible +He wrung Bassanio's hand; and so they parted. + +SALANIO: +I think he only loves the world for him. +I pray thee, let us go and find him out +And quicken his embraced heaviness +With some delight or other. + +SALARINO: +Do we so. + +NERISSA: +Quick, quick, I pray thee; draw the curtain straight: +The Prince of Arragon hath ta'en his oath, +And comes to his election presently. + +PORTIA: +Behold, there stand the caskets, noble prince: +If you choose that wherein I am contain'd, +Straight shall our nuptial rites be solemnized: +But if you fail, without more speech, my lord, +You must be gone from hence immediately. + +ARRAGON: +I am enjoin'd by oath to observe three things: +First, never to unfold to any one +Which casket 'twas I chose; next, if I fail +Of the right casket, never in my life +To woo a maid in way of marriage: Lastly, +If I do fail in fortune of my choice, +Immediately to leave you and be gone. + +PORTIA: +To these injunctions every one doth swear +That comes to hazard for my worthless self. + +ARRAGON: +And so have I address'd me. Fortune now +To my heart's hope! Gold; silver; and base lead. +'Who chooseth me must give and hazard all he hath.' +You shall look fairer, ere I give or hazard. +What says the golden chest? ha! let me see: +'Who chooseth me shall gain what many men desire.' +What many men desire! that 'many' may be meant +By the fool multitude, that choose by show, +Not learning more than the fond eye doth teach; +Which pries not to the interior, but, like the martlet, +Builds in the weather on the outward wall, +Even in the force and road of casualty. +I will not choose what many men desire, +Because I will not jump with common spirits +And rank me with the barbarous multitudes. +Why, then to thee, thou silver treasure-house; +Tell me once more what title thou dost bear: +'Who chooseth me shall get as much as he deserves:' +And well said too; for who shall go about +To cozen fortune and be honourable +Without the stamp of merit? Let none presume +To wear an undeserved dignity. +O, that estates, degrees and offices +Were not derived corruptly, and that clear honour +Were purchased by the merit of the wearer! +How many then should cover that stand bare! +How many be commanded that command! +How much low peasantry would then be glean'd +From the true seed of honour! and how much honour +Pick'd from the chaff and ruin of the times +To be new-varnish'd! Well, but to my choice: +'Who chooseth me shall get as much as he deserves.' +I will assume desert. Give me a key for this, +And instantly unlock my fortunes here. + +PORTIA: +Too long a pause for that which you find there. + +ARRAGON: +What's here? the portrait of a blinking idiot, +Presenting me a schedule! I will read it. +How much unlike art thou to Portia! +How much unlike my hopes and my deservings! +'Who chooseth me shall have as much as he deserves.' +Did I deserve no more than a fool's head? +Is that my prize? are my deserts no better? + +PORTIA: +To offend, and judge, are distinct offices +And of opposed natures. + +ARRAGON: +What is here? +The fire seven times tried this: +Seven times tried that judgment is, +That did never choose amiss. +Some there be that shadows kiss; +Such have but a shadow's bliss: +There be fools alive, I wis, +Silver'd o'er; and so was this. +Take what wife you will to bed, +I will ever be your head: +So be gone: you are sped. +Still more fool I shall appear +By the time I linger here +With one fool's head I came to woo, +But I go away with two. +Sweet, adieu. I'll keep my oath, +Patiently to bear my wroth. + +PORTIA: +Thus hath the candle singed the moth. +O, these deliberate fools! when they do choose, +They have the wisdom by their wit to lose. + +NERISSA: +The ancient saying is no heresy, +Hanging and wiving goes by destiny. + +PORTIA: +Come, draw the curtain, Nerissa. + +Servant: +Where is my lady? + +PORTIA: +Here: what would my lord? + +Servant: +Madam, there is alighted at your gate +A young Venetian, one that comes before +To signify the approaching of his lord; +From whom he bringeth sensible regreets, +To wit, besides commends and courteous breath, +Gifts of rich value. Yet I have not seen +So likely an ambassador of love: +A day in April never came so sweet, +To show how costly summer was at hand, +As this fore-spurrer comes before his lord. + +PORTIA: +No more, I pray thee: I am half afeard +Thou wilt say anon he is some kin to thee, +Thou spend'st such high-day wit in praising him. +Come, come, Nerissa; for I long to see +Quick Cupid's post that comes so mannerly. + +NERISSA: +Bassanio, lord Love, if thy will it be! + +SALANIO: +Now, what news on the Rialto? + +SALARINO: +Why, yet it lives there uncheck'd that Antonio hath +a ship of rich lading wrecked on the narrow seas; +the Goodwins, I think they call the place; a very +dangerous flat and fatal, where the carcasses of many +a tall ship lie buried, as they say, if my gossip +Report be an honest woman of her word. + +SALANIO: +I would she were as lying a gossip in that as ever +knapped ginger or made her neighbours believe she +wept for the death of a third husband. But it is +true, without any slips of prolixity or crossing the +plain highway of talk, that the good Antonio, the +honest Antonio,--O that I had a title good enough +to keep his name company!-- + +SALARINO: +Come, the full stop. + +SALANIO: +Ha! what sayest thou? Why, the end is, he hath +lost a ship. + +SALARINO: +I would it might prove the end of his losses. + +SALANIO: +Let me say 'amen' betimes, lest the devil cross my +prayer, for here he comes in the likeness of a Jew. +How now, Shylock! what news among the merchants? + +SHYLOCK: +You know, none so well, none so well as you, of my +daughter's flight. + +SALARINO: +That's certain: I, for my part, knew the tailor +that made the wings she flew withal. + +SALANIO: +And Shylock, for his own part, knew the bird was +fledged; and then it is the complexion of them all +to leave the dam. + +SHYLOCK: +She is damned for it. + +SALANIO: +That's certain, if the devil may be her judge. + +SHYLOCK: +My own flesh and blood to rebel! + +SALANIO: +Out upon it, old carrion! rebels it at these years? + +SHYLOCK: +I say, my daughter is my flesh and blood. + +SALARINO: +There is more difference between thy flesh and hers +than between jet and ivory; more between your bloods +than there is between red wine and rhenish. But +tell us, do you hear whether Antonio have had any +loss at sea or no? + +SHYLOCK: +There I have another bad match: a bankrupt, a +prodigal, who dare scarce show his head on the +Rialto; a beggar, that was used to come so smug upon +the mart; let him look to his bond: he was wont to +call me usurer; let him look to his bond: he was +wont to lend money for a Christian courtesy; let him +look to his bond. + +SALARINO: +Why, I am sure, if he forfeit, thou wilt not take +his flesh: what's that good for? + +SHYLOCK: +To bait fish withal: if it will feed nothing else, +it will feed my revenge. He hath disgraced me, and +hindered me half a million; laughed at my losses, +mocked at my gains, scorned my nation, thwarted my +bargains, cooled my friends, heated mine +enemies; and what's his reason? I am a Jew. Hath +not a Jew eyes? hath not a Jew hands, organs, +dimensions, senses, affections, passions? fed with +the same food, hurt with the same weapons, subject +to the same diseases, healed by the same means, +warmed and cooled by the same winter and summer, as +a Christian is? If you prick us, do we not bleed? +if you tickle us, do we not laugh? if you poison +us, do we not die? and if you wrong us, shall we not +revenge? If we are like you in the rest, we will +resemble you in that. If a Jew wrong a Christian, +what is his humility? Revenge. If a Christian +wrong a Jew, what should his sufferance be by +Christian example? Why, revenge. The villany you +teach me, I will execute, and it shall go hard but I +will better the instruction. + +Servant: +Gentlemen, my master Antonio is at his house and +desires to speak with you both. + +SALARINO: +We have been up and down to seek him. + +SALANIO: +Here comes another of the tribe: a third cannot be +matched, unless the devil himself turn Jew. + +SHYLOCK: +How now, Tubal! what news from Genoa? hast thou +found my daughter? + +TUBAL: +I often came where I did hear of her, but cannot find her. + +SHYLOCK: +Why, there, there, there, there! a diamond gone, +cost me two thousand ducats in Frankfort! The curse +never fell upon our nation till now; I never felt it +till now: two thousand ducats in that; and other +precious, precious jewels. I would my daughter +were dead at my foot, and the jewels in her ear! +would she were hearsed at my foot, and the ducats in +her coffin! No news of them? Why, so: and I know +not what's spent in the search: why, thou loss upon +loss! the thief gone with so much, and so much to +find the thief; and no satisfaction, no revenge: +nor no in luck stirring but what lights on my +shoulders; no sighs but of my breathing; no tears +but of my shedding. + +TUBAL: +Yes, other men have ill luck too: Antonio, as I +heard in Genoa,-- + +SHYLOCK: +What, what, what? ill luck, ill luck? + +TUBAL: +Hath an argosy cast away, coming from Tripolis. + +SHYLOCK: +I thank God, I thank God. Is't true, is't true? + +TUBAL: +I spoke with some of the sailors that escaped the wreck. + +SHYLOCK: +I thank thee, good Tubal: good news, good news! +ha, ha! where? in Genoa? + +TUBAL: +Your daughter spent in Genoa, as I heard, in one +night fourscore ducats. + +SHYLOCK: +Thou stickest a dagger in me: I shall never see my +gold again: fourscore ducats at a sitting! +fourscore ducats! + +TUBAL: +There came divers of Antonio's creditors in my +company to Venice, that swear he cannot choose but break. + +SHYLOCK: +I am very glad of it: I'll plague him; I'll torture +him: I am glad of it. + +TUBAL: +One of them showed me a ring that he had of your +daughter for a monkey. + +SHYLOCK: +Out upon her! Thou torturest me, Tubal: it was my +turquoise; I had it of Leah when I was a bachelor: +I would not have given it for a wilderness of monkeys. + +TUBAL: +But Antonio is certainly undone. + +SHYLOCK: +Nay, that's true, that's very true. Go, Tubal, fee +me an officer; bespeak him a fortnight before. I +will have the heart of him, if he forfeit; for, were +he out of Venice, I can make what merchandise I +will. Go, go, Tubal, and meet me at our synagogue; +go, good Tubal; at our synagogue, Tubal. + +PORTIA: +I pray you, tarry: pause a day or two +Before you hazard; for, in choosing wrong, +I lose your company: therefore forbear awhile. +There's something tells me, but it is not love, +I would not lose you; and you know yourself, +Hate counsels not in such a quality. +But lest you should not understand me well,-- +And yet a maiden hath no tongue but thought,-- +I would detain you here some month or two +Before you venture for me. I could teach you +How to choose right, but I am then forsworn; +So will I never be: so may you miss me; +But if you do, you'll make me wish a sin, +That I had been forsworn. Beshrew your eyes, +They have o'erlook'd me and divided me; +One half of me is yours, the other half yours, +Mine own, I would say; but if mine, then yours, +And so all yours. O, these naughty times +Put bars between the owners and their rights! +And so, though yours, not yours. Prove it so, +Let fortune go to hell for it, not I. +I speak too long; but 'tis to peize the time, +To eke it and to draw it out in length, +To stay you from election. + +BASSANIO: +Let me choose +For as I am, I live upon the rack. + +PORTIA: +Upon the rack, Bassanio! then confess +What treason there is mingled with your love. + +BASSANIO: +None but that ugly treason of mistrust, +Which makes me fear the enjoying of my love: +There may as well be amity and life +'Tween snow and fire, as treason and my love. + +PORTIA: +Ay, but I fear you speak upon the rack, +Where men enforced do speak anything. + +BASSANIO: +Promise me life, and I'll confess the truth. + +PORTIA: +Well then, confess and live. + +BASSANIO: +'Confess' and 'love' +Had been the very sum of my confession: +O happy torment, when my torturer +Doth teach me answers for deliverance! +But let me to my fortune and the caskets. + +PORTIA: +Away, then! I am lock'd in one of them: +If you do love me, you will find me out. +Nerissa and the rest, stand all aloof. +Let music sound while he doth make his choice; +Then, if he lose, he makes a swan-like end, +Fading in music: that the comparison +May stand more proper, my eye shall be the stream +And watery death-bed for him. He may win; +And what is music then? Then music is +Even as the flourish when true subjects bow +To a new-crowned monarch: such it is +As are those dulcet sounds in break of day +That creep into the dreaming bridegroom's ear, +And summon him to marriage. Now he goes, +With no less presence, but with much more love, +Than young Alcides, when he did redeem +The virgin tribute paid by howling Troy +To the sea-monster: I stand for sacrifice +The rest aloof are the Dardanian wives, +With bleared visages, come forth to view +The issue of the exploit. Go, Hercules! +Live thou, I live: with much, much more dismay +I view the fight than thou that makest the fray. +Tell me where is fancy bred, +Or in the heart, or in the head? +How begot, how nourished? +Reply, reply. +It is engender'd in the eyes, +With gazing fed; and fancy dies +In the cradle where it lies. +Let us all ring fancy's knell +I'll begin it,--Ding, dong, bell. + +ALL: +Ding, dong, bell. + +BASSANIO: +So may the outward shows be least themselves: +The world is still deceived with ornament. +In law, what plea so tainted and corrupt, +But, being seasoned with a gracious voice, +Obscures the show of evil? In religion, +What damned error, but some sober brow +Will bless it and approve it with a text, +Hiding the grossness with fair ornament? +There is no vice so simple but assumes +Some mark of virtue on his outward parts: +How many cowards, whose hearts are all as false +As stairs of sand, wear yet upon their chins +The beards of Hercules and frowning Mars; +Who, inward search'd, have livers white as milk; +And these assume but valour's excrement +To render them redoubted! Look on beauty, +And you shall see 'tis purchased by the weight; +Which therein works a miracle in nature, +Making them lightest that wear most of it: +So are those crisped snaky golden locks +Which make such wanton gambols with the wind, +Upon supposed fairness, often known +To be the dowry of a second head, +The skull that bred them in the sepulchre. +Thus ornament is but the guiled shore +To a most dangerous sea; the beauteous scarf +Veiling an Indian beauty; in a word, +The seeming truth which cunning times put on +To entrap the wisest. Therefore, thou gaudy gold, +Hard food for Midas, I will none of thee; +Nor none of thee, thou pale and common drudge +'Tween man and man: but thou, thou meagre lead, +Which rather threatenest than dost promise aught, +Thy paleness moves me more than eloquence; +And here choose I; joy be the consequence! + +PORTIA: + +BASSANIO: +What find I here? +Fair Portia's counterfeit! What demi-god +Hath come so near creation? Move these eyes? +Or whether, riding on the balls of mine, +Seem they in motion? Here are sever'd lips, +Parted with sugar breath: so sweet a bar +Should sunder such sweet friends. Here in her hairs +The painter plays the spider and hath woven +A golden mesh to entrap the hearts of men, +Faster than gnats in cobwebs; but her eyes,-- +How could he see to do them? having made one, +Methinks it should have power to steal both his +And leave itself unfurnish'd. Yet look, how far +The substance of my praise doth wrong this shadow +In underprizing it, so far this shadow +Doth limp behind the substance. Here's the scroll, +The continent and summary of my fortune. +You that choose not by the view, +Chance as fair and choose as true! +Since this fortune falls to you, +Be content and seek no new, +If you be well pleased with this +And hold your fortune for your bliss, +Turn you where your lady is +And claim her with a loving kiss. +A gentle scroll. Fair lady, by your leave; +I come by note, to give and to receive. +Like one of two contending in a prize, +That thinks he hath done well in people's eyes, +Hearing applause and universal shout, +Giddy in spirit, still gazing in a doubt +Whether these pearls of praise be his or no; +So, thrice fair lady, stand I, even so; +As doubtful whether what I see be true, +Until confirm'd, sign'd, ratified by you. + +PORTIA: +You see me, Lord Bassanio, where I stand, +Such as I am: though for myself alone +I would not be ambitious in my wish, +To wish myself much better; yet, for you +I would be trebled twenty times myself; +A thousand times more fair, ten thousand times more rich; +That only to stand high in your account, +I might in virtue, beauties, livings, friends, +Exceed account; but the full sum of me +Is sum of something, which, to term in gross, +Is an unlesson'd girl, unschool'd, unpractised; +Happy in this, she is not yet so old +But she may learn; happier than this, +She is not bred so dull but she can learn; +Happiest of all is that her gentle spirit +Commits itself to yours to be directed, +As from her lord, her governor, her king. +Myself and what is mine to you and yours +Is now converted: but now I was the lord +Of this fair mansion, master of my servants, +Queen o'er myself: and even now, but now, +This house, these servants and this same myself +Are yours, my lord: I give them with this ring; +Which when you part from, lose, or give away, +Let it presage the ruin of your love +And be my vantage to exclaim on you. + +BASSANIO: +Madam, you have bereft me of all words, +Only my blood speaks to you in my veins; +And there is such confusion in my powers, +As after some oration fairly spoke +By a beloved prince, there doth appear +Among the buzzing pleased multitude; +Where every something, being blent together, +Turns to a wild of nothing, save of joy, +Express'd and not express'd. But when this ring +Parts from this finger, then parts life from hence: +O, then be bold to say Bassanio's dead! + +NERISSA: +My lord and lady, it is now our time, +That have stood by and seen our wishes prosper, +To cry, good joy: good joy, my lord and lady! + +GRATIANO: +My lord Bassanio and my gentle lady, +I wish you all the joy that you can wish; +For I am sure you can wish none from me: +And when your honours mean to solemnize +The bargain of your faith, I do beseech you, +Even at that time I may be married too. + +BASSANIO: +With all my heart, so thou canst get a wife. + +GRATIANO: +I thank your lordship, you have got me one. +My eyes, my lord, can look as swift as yours: +You saw the mistress, I beheld the maid; +You loved, I loved for intermission. +No more pertains to me, my lord, than you. +Your fortune stood upon the casket there, +And so did mine too, as the matter falls; +For wooing here until I sweat again, +And sweating until my very roof was dry +With oaths of love, at last, if promise last, +I got a promise of this fair one here +To have her love, provided that your fortune +Achieved her mistress. + +PORTIA: +Is this true, Nerissa? + +NERISSA: +Madam, it is, so you stand pleased withal. + +BASSANIO: +And do you, Gratiano, mean good faith? + +GRATIANO: +Yes, faith, my lord. + +BASSANIO: +Our feast shall be much honour'd in your marriage. + +GRATIANO: +We'll play with them the first boy for a thousand ducats. + +NERISSA: +What, and stake down? + +GRATIANO: +No; we shall ne'er win at that sport, and stake down. +But who comes here? Lorenzo and his infidel? What, +and my old Venetian friend Salerio? + +BASSANIO: +Lorenzo and Salerio, welcome hither; +If that the youth of my new interest here +Have power to bid you welcome. By your leave, +I bid my very friends and countrymen, +Sweet Portia, welcome. + +PORTIA: +So do I, my lord: +They are entirely welcome. + +LORENZO: +I thank your honour. For my part, my lord, +My purpose was not to have seen you here; +But meeting with Salerio by the way, +He did entreat me, past all saying nay, +To come with him along. + +SALERIO: +I did, my lord; +And I have reason for it. Signior Antonio +Commends him to you. + +BASSANIO: +Ere I ope his letter, +I pray you, tell me how my good friend doth. + +SALERIO: +Not sick, my lord, unless it be in mind; +Nor well, unless in mind: his letter there +Will show you his estate. + +GRATIANO: +Nerissa, cheer yon stranger; bid her welcome. +Your hand, Salerio: what's the news from Venice? +How doth that royal merchant, good Antonio? +I know he will be glad of our success; +We are the Jasons, we have won the fleece. + +SALERIO: +I would you had won the fleece that he hath lost. + +PORTIA: +There are some shrewd contents in yon same paper, +That steals the colour from Bassanio's cheek: +Some dear friend dead; else nothing in the world +Could turn so much the constitution +Of any constant man. What, worse and worse! +With leave, Bassanio: I am half yourself, +And I must freely have the half of anything +That this same paper brings you. + +BASSANIO: +O sweet Portia, +Here are a few of the unpleasant'st words +That ever blotted paper! Gentle lady, +When I did first impart my love to you, +I freely told you, all the wealth I had +Ran in my veins, I was a gentleman; +And then I told you true: and yet, dear lady, +Rating myself at nothing, you shall see +How much I was a braggart. When I told you +My state was nothing, I should then have told you +That I was worse than nothing; for, indeed, +I have engaged myself to a dear friend, +Engaged my friend to his mere enemy, +To feed my means. Here is a letter, lady; +The paper as the body of my friend, +And every word in it a gaping wound, +Issuing life-blood. But is it true, Salerio? +Have all his ventures fail'd? What, not one hit? +From Tripolis, from Mexico and England, +From Lisbon, Barbary and India? +And not one vessel 'scape the dreadful touch +Of merchant-marring rocks? + +SALERIO: +Not one, my lord. +Besides, it should appear, that if he had +The present money to discharge the Jew, +He would not take it. Never did I know +A creature, that did bear the shape of man, +So keen and greedy to confound a man: +He plies the duke at morning and at night, +And doth impeach the freedom of the state, +If they deny him justice: twenty merchants, +The duke himself, and the magnificoes +Of greatest port, have all persuaded with him; +But none can drive him from the envious plea +Of forfeiture, of justice and his bond. + +JESSICA: +When I was with him I have heard him swear +To Tubal and to Chus, his countrymen, +That he would rather have Antonio's flesh +Than twenty times the value of the sum +That he did owe him: and I know, my lord, +If law, authority and power deny not, +It will go hard with poor Antonio. + +PORTIA: +Is it your dear friend that is thus in trouble? + +BASSANIO: +The dearest friend to me, the kindest man, +The best-condition'd and unwearied spirit +In doing courtesies, and one in whom +The ancient Roman honour more appears +Than any that draws breath in Italy. + +PORTIA: +What sum owes he the Jew? + +BASSANIO: +For me three thousand ducats. + +PORTIA: +What, no more? +Pay him six thousand, and deface the bond; +Double six thousand, and then treble that, +Before a friend of this description +Shall lose a hair through Bassanio's fault. +First go with me to church and call me wife, +And then away to Venice to your friend; +For never shall you lie by Portia's side +With an unquiet soul. You shall have gold +To pay the petty debt twenty times over: +When it is paid, bring your true friend along. +My maid Nerissa and myself meantime +Will live as maids and widows. Come, away! +For you shall hence upon your wedding-day: +Bid your friends welcome, show a merry cheer: +Since you are dear bought, I will love you dear. +But let me hear the letter of your friend. + +BASSANIO: + +PORTIA: +O love, dispatch all business, and be gone! + +BASSANIO: +Since I have your good leave to go away, +I will make haste: but, till I come again, +No bed shall e'er be guilty of my stay, +No rest be interposer 'twixt us twain. + +SHYLOCK: +Gaoler, look to him: tell not me of mercy; +This is the fool that lent out money gratis: +Gaoler, look to him. + +ANTONIO: +Hear me yet, good Shylock. + +SHYLOCK: +I'll have my bond; speak not against my bond: +I have sworn an oath that I will have my bond. +Thou call'dst me dog before thou hadst a cause; +But, since I am a dog, beware my fangs: +The duke shall grant me justice. I do wonder, +Thou naughty gaoler, that thou art so fond +To come abroad with him at his request. + +ANTONIO: +I pray thee, hear me speak. + +SHYLOCK: +I'll have my bond; I will not hear thee speak: +I'll have my bond; and therefore speak no more. +I'll not be made a soft and dull-eyed fool, +To shake the head, relent, and sigh, and yield +To Christian intercessors. Follow not; +I'll have no speaking: I will have my bond. + +SALARINO: +It is the most impenetrable cur +That ever kept with men. + +ANTONIO: +Let him alone: +I'll follow him no more with bootless prayers. +He seeks my life; his reason well I know: +I oft deliver'd from his forfeitures +Many that have at times made moan to me; +Therefore he hates me. + +SALARINO: +I am sure the duke +Will never grant this forfeiture to hold. + +ANTONIO: +The duke cannot deny the course of law: +For the commodity that strangers have +With us in Venice, if it be denied, +Will much impeach the justice of his state; +Since that the trade and profit of the city +Consisteth of all nations. Therefore, go: +These griefs and losses have so bated me, +That I shall hardly spare a pound of flesh +To-morrow to my bloody creditor. +Well, gaoler, on. Pray God, Bassanio come +To see me pay his debt, and then I care not! + +LORENZO: +Madam, although I speak it in your presence, +You have a noble and a true conceit +Of godlike amity; which appears most strongly +In bearing thus the absence of your lord. +But if you knew to whom you show this honour, +How true a gentleman you send relief, +How dear a lover of my lord your husband, +I know you would be prouder of the work +Than customary bounty can enforce you. + +PORTIA: +I never did repent for doing good, +Nor shall not now: for in companions +That do converse and waste the time together, +Whose souls do bear an equal yoke Of love, +There must be needs a like proportion +Of lineaments, of manners and of spirit; +Which makes me think that this Antonio, +Being the bosom lover of my lord, +Must needs be like my lord. If it be so, +How little is the cost I have bestow'd +In purchasing the semblance of my soul +From out the state of hellish misery! +This comes too near the praising of myself; +Therefore no more of it: hear other things. +Lorenzo, I commit into your hands +The husbandry and manage of my house +Until my lord's return: for mine own part, +I have toward heaven breathed a secret vow +To live in prayer and contemplation, +Only attended by Nerissa here, +Until her husband and my lord's return: +There is a monastery two miles off; +And there will we abide. I do desire you +Not to deny this imposition; +The which my love and some necessity +Now lays upon you. + +LORENZO: +Madam, with all my heart; +I shall obey you in all fair commands. + +PORTIA: +My people do already know my mind, +And will acknowledge you and Jessica +In place of Lord Bassanio and myself. +And so farewell, till we shall meet again. + +LORENZO: +Fair thoughts and happy hours attend on you! + +JESSICA: +I wish your ladyship all heart's content. + +PORTIA: +I thank you for your wish, and am well pleased +To wish it back on you: fare you well Jessica. +Now, Balthasar, +As I have ever found thee honest-true, +So let me find thee still. Take this same letter, +And use thou all the endeavour of a man +In speed to Padua: see thou render this +Into my cousin's hand, Doctor Bellario; +And, look, what notes and garments he doth give thee, +Bring them, I pray thee, with imagined speed +Unto the tranect, to the common ferry +Which trades to Venice. Waste no time in words, +But get thee gone: I shall be there before thee. + +BALTHASAR: +Madam, I go with all convenient speed. + +PORTIA: +Come on, Nerissa; I have work in hand +That you yet know not of: we'll see our husbands +Before they think of us. + +NERISSA: +Shall they see us? + +PORTIA: +They shall, Nerissa; but in such a habit, +That they shall think we are accomplished +With that we lack. I'll hold thee any wager, +When we are both accoutred like young men, +I'll prove the prettier fellow of the two, +And wear my dagger with the braver grace, +And speak between the change of man and boy +With a reed voice, and turn two mincing steps +Into a manly stride, and speak of frays +Like a fine bragging youth, and tell quaint lies, +How honourable ladies sought my love, +Which I denying, they fell sick and died; +I could not do withal; then I'll repent, +And wish for all that, that I had not killed them; +And twenty of these puny lies I'll tell, +That men shall swear I have discontinued school +Above a twelvemonth. I have within my mind +A thousand raw tricks of these bragging Jacks, +Which I will practise. + +NERISSA: +Why, shall we turn to men? + +PORTIA: +Fie, what a question's that, +If thou wert near a lewd interpreter! +But come, I'll tell thee all my whole device +When I am in my coach, which stays for us +At the park gate; and therefore haste away, +For we must measure twenty miles to-day. + +LAUNCELOT: +Yes, truly; for, look you, the sins of the father +are to be laid upon the children: therefore, I +promise ye, I fear you. I was always plain with +you, and so now I speak my agitation of the matter: +therefore be of good cheer, for truly I think you +are damned. There is but one hope in it that can do +you any good; and that is but a kind of bastard +hope neither. + +JESSICA: +And what hope is that, I pray thee? + +LAUNCELOT: +Marry, you may partly hope that your father got you +not, that you are not the Jew's daughter. + +JESSICA: +That were a kind of bastard hope, indeed: so the +sins of my mother should be visited upon me. + +LAUNCELOT: +Truly then I fear you are damned both by father and +mother: thus when I shun Scylla, your father, I +fall into Charybdis, your mother: well, you are +gone both ways. + +JESSICA: +I shall be saved by my husband; he hath made me a +Christian. + +LAUNCELOT: +Truly, the more to blame he: we were Christians +enow before; e'en as many as could well live, one by +another. This making Christians will raise the +price of hogs: if we grow all to be pork-eaters, we +shall not shortly have a rasher on the coals for money. + +JESSICA: +I'll tell my husband, Launcelot, what you say: here he comes. + +LORENZO: +I shall grow jealous of you shortly, Launcelot, if +you thus get my wife into corners. + +JESSICA: +Nay, you need not fear us, Lorenzo: Launcelot and I +are out. He tells me flatly, there is no mercy for +me in heaven, because I am a Jew's daughter: and he +says, you are no good member of the commonwealth, +for in converting Jews to Christians, you raise the +price of pork. + +LORENZO: +I shall answer that better to the commonwealth than +you can the getting up of the negro's belly: the +Moor is with child by you, Launcelot. + +LAUNCELOT: +It is much that the Moor should be more than reason: +but if she be less than an honest woman, she is +indeed more than I took her for. + +LORENZO: +How every fool can play upon the word! I think the +best grace of wit will shortly turn into silence, +and discourse grow commendable in none only but +parrots. Go in, sirrah; bid them prepare for dinner. + +LAUNCELOT: +That is done, sir; they have all stomachs. + +LORENZO: +Goodly Lord, what a wit-snapper are you! then bid +them prepare dinner. + +LAUNCELOT: +That is done too, sir; only 'cover' is the word. + +LORENZO: +Will you cover then, sir? + +LAUNCELOT: +Not so, sir, neither; I know my duty. + +LORENZO: +Yet more quarrelling with occasion! Wilt thou show +the whole wealth of thy wit in an instant? I pray +tree, understand a plain man in his plain meaning: +go to thy fellows; bid them cover the table, serve +in the meat, and we will come in to dinner. + +LAUNCELOT: +For the table, sir, it shall be served in; for the +meat, sir, it shall be covered; for your coming in +to dinner, sir, why, let it be as humours and +conceits shall govern. + +LORENZO: +O dear discretion, how his words are suited! +The fool hath planted in his memory +An army of good words; and I do know +A many fools, that stand in better place, +Garnish'd like him, that for a tricksy word +Defy the matter. How cheerest thou, Jessica? +And now, good sweet, say thy opinion, +How dost thou like the Lord Bassanio's wife? + +JESSICA: +Past all expressing. It is very meet +The Lord Bassanio live an upright life; +For, having such a blessing in his lady, +He finds the joys of heaven here on earth; +And if on earth he do not mean it, then +In reason he should never come to heaven +Why, if two gods should play some heavenly match +And on the wager lay two earthly women, +And Portia one, there must be something else +Pawn'd with the other, for the poor rude world +Hath not her fellow. + +LORENZO: +Even such a husband +Hast thou of me as she is for a wife. + +JESSICA: +Nay, but ask my opinion too of that. + +LORENZO: +I will anon: first, let us go to dinner. + +JESSICA: +Nay, let me praise you while I have a stomach. + +LORENZO: +No, pray thee, let it serve for table-talk; +' Then, howso'er thou speak'st, 'mong other things +I shall digest it. + +JESSICA: +Well, I'll set you forth. + +DUKE: +What, is Antonio here? + +ANTONIO: +Ready, so please your grace. + +DUKE: +I am sorry for thee: thou art come to answer +A stony adversary, an inhuman wretch +uncapable of pity, void and empty +From any dram of mercy. + +ANTONIO: +I have heard +Your grace hath ta'en great pains to qualify +His rigorous course; but since he stands obdurate +And that no lawful means can carry me +Out of his envy's reach, I do oppose +My patience to his fury, and am arm'd +To suffer, with a quietness of spirit, +The very tyranny and rage of his. + +DUKE: +Go one, and call the Jew into the court. + +SALERIO: +He is ready at the door: he comes, my lord. + +DUKE: +Make room, and let him stand before our face. +Shylock, the world thinks, and I think so too, +That thou but lead'st this fashion of thy malice +To the last hour of act; and then 'tis thought +Thou'lt show thy mercy and remorse more strange +Than is thy strange apparent cruelty; +And where thou now exact'st the penalty, +Which is a pound of this poor merchant's flesh, +Thou wilt not only loose the forfeiture, +But, touch'd with human gentleness and love, +Forgive a moiety of the principal; +Glancing an eye of pity on his losses, +That have of late so huddled on his back, +Enow to press a royal merchant down +And pluck commiseration of his state +From brassy bosoms and rough hearts of flint, +From stubborn Turks and Tartars, never train'd +To offices of tender courtesy. +We all expect a gentle answer, Jew. + +SHYLOCK: +I have possess'd your grace of what I purpose; +And by our holy Sabbath have I sworn +To have the due and forfeit of my bond: +If you deny it, let the danger light +Upon your charter and your city's freedom. +You'll ask me, why I rather choose to have +A weight of carrion flesh than to receive +Three thousand ducats: I'll not answer that: +But, say, it is my humour: is it answer'd? +What if my house be troubled with a rat +And I be pleased to give ten thousand ducats +To have it baned? What, are you answer'd yet? +Some men there are love not a gaping pig; +Some, that are mad if they behold a cat; +And others, when the bagpipe sings i' the nose, +Cannot contain their urine: for affection, +Mistress of passion, sways it to the mood +Of what it likes or loathes. Now, for your answer: +As there is no firm reason to be render'd, +Why he cannot abide a gaping pig; +Why he, a harmless necessary cat; +Why he, a woollen bagpipe; but of force +Must yield to such inevitable shame +As to offend, himself being offended; +So can I give no reason, nor I will not, +More than a lodged hate and a certain loathing +I bear Antonio, that I follow thus +A losing suit against him. Are you answer'd? + +BASSANIO: +This is no answer, thou unfeeling man, +To excuse the current of thy cruelty. + +SHYLOCK: +I am not bound to please thee with my answers. + +BASSANIO: +Do all men kill the things they do not love? + +SHYLOCK: +Hates any man the thing he would not kill? + +BASSANIO: +Every offence is not a hate at first. + +SHYLOCK: +What, wouldst thou have a serpent sting thee twice? + +ANTONIO: +I pray you, think you question with the Jew: +You may as well go stand upon the beach +And bid the main flood bate his usual height; +You may as well use question with the wolf +Why he hath made the ewe bleat for the lamb; +You may as well forbid the mountain pines +To wag their high tops and to make no noise, +When they are fretten with the gusts of heaven; +You may as well do anything most hard, +As seek to soften that--than which what's harder?-- +His Jewish heart: therefore, I do beseech you, +Make no more offers, use no farther means, +But with all brief and plain conveniency +Let me have judgment and the Jew his will. + +BASSANIO: +For thy three thousand ducats here is six. + +SHYLOCK: +What judgment shall I dread, doing +Were in six parts and every part a ducat, +I would not draw them; I would have my bond. + +DUKE: +How shalt thou hope for mercy, rendering none? + +SHYLOCK: +What judgment shall I dread, doing no wrong? +You have among you many a purchased slave, +Which, like your asses and your dogs and mules, +You use in abject and in slavish parts, +Because you bought them: shall I say to you, +Let them be free, marry them to your heirs? +Why sweat they under burthens? let their beds +Be made as soft as yours and let their palates +Be season'd with such viands? You will answer +'The slaves are ours:' so do I answer you: +The pound of flesh, which I demand of him, +Is dearly bought; 'tis mine and I will have it. +If you deny me, fie upon your law! +There is no force in the decrees of Venice. +I stand for judgment: answer; shall I have it? + +DUKE: +Upon my power I may dismiss this court, +Unless Bellario, a learned doctor, +Whom I have sent for to determine this, +Come here to-day. + +SALERIO: +My lord, here stays without +A messenger with letters from the doctor, +New come from Padua. + +DUKE: +Bring us the letter; call the messenger. + +BASSANIO: +Good cheer, Antonio! What, man, courage yet! +The Jew shall have my flesh, blood, bones and all, +Ere thou shalt lose for me one drop of blood. + +ANTONIO: +I am a tainted wether of the flock, +Meetest for death: the weakest kind of fruit +Drops earliest to the ground; and so let me +You cannot better be employ'd, Bassanio, +Than to live still and write mine epitaph. + +DUKE: +Came you from Padua, from Bellario? + +NERISSA: +From both, my lord. Bellario greets your grace. + +BASSANIO: +Why dost thou whet thy knife so earnestly? + +SHYLOCK: +To cut the forfeiture from that bankrupt there. + +GRATIANO: +Not on thy sole, but on thy soul, harsh Jew, +Thou makest thy knife keen; but no metal can, +No, not the hangman's axe, bear half the keenness +Of thy sharp envy. Can no prayers pierce thee? + +SHYLOCK: +No, none that thou hast wit enough to make. + +GRATIANO: +O, be thou damn'd, inexecrable dog! +And for thy life let justice be accused. +Thou almost makest me waver in my faith +To hold opinion with Pythagoras, +That souls of animals infuse themselves +Into the trunks of men: thy currish spirit +Govern'd a wolf, who, hang'd for human slaughter, +Even from the gallows did his fell soul fleet, +And, whilst thou lay'st in thy unhallow'd dam, +Infused itself in thee; for thy desires +Are wolvish, bloody, starved and ravenous. + +SHYLOCK: +Till thou canst rail the seal from off my bond, +Thou but offend'st thy lungs to speak so loud: +Repair thy wit, good youth, or it will fall +To cureless ruin. I stand here for law. + +DUKE: +This letter from Bellario doth commend +A young and learned doctor to our court. +Where is he? + +NERISSA: +He attendeth here hard by, +To know your answer, whether you'll admit him. + +DUKE: +With all my heart. Some three or four of you +Go give him courteous conduct to this place. +Meantime the court shall hear Bellario's letter. + +Clerk: + +DUKE: +You hear the learn'd Bellario, what he writes: +And here, I take it, is the doctor come. +Give me your hand. Come you from old Bellario? + +PORTIA: +I did, my lord. + +DUKE: +You are welcome: take your place. +Are you acquainted with the difference +That holds this present question in the court? + +PORTIA: +I am informed thoroughly of the cause. +Which is the merchant here, and which the Jew? + +DUKE: +Antonio and old Shylock, both stand forth. + +PORTIA: +Is your name Shylock? + +SHYLOCK: +Shylock is my name. + +PORTIA: +Of a strange nature is the suit you follow; +Yet in such rule that the Venetian law +Cannot impugn you as you do proceed. +You stand within his danger, do you not? + +ANTONIO: +Ay, so he says. + +PORTIA: +Do you confess the bond? + +ANTONIO: +I do. + +PORTIA: +Then must the Jew be merciful. + +SHYLOCK: +On what compulsion must I? tell me that. + +PORTIA: +The quality of mercy is not strain'd, +It droppeth as the gentle rain from heaven +Upon the place beneath: it is twice blest; +It blesseth him that gives and him that takes: +'Tis mightiest in the mightiest: it becomes +The throned monarch better than his crown; +His sceptre shows the force of temporal power, +The attribute to awe and majesty, +Wherein doth sit the dread and fear of kings; +But mercy is above this sceptred sway; +It is enthroned in the hearts of kings, +It is an attribute to God himself; +And earthly power doth then show likest God's +When mercy seasons justice. Therefore, Jew, +Though justice be thy plea, consider this, +That, in the course of justice, none of us +Should see salvation: we do pray for mercy; +And that same prayer doth teach us all to render +The deeds of mercy. I have spoke thus much +To mitigate the justice of thy plea; +Which if thou follow, this strict court of Venice +Must needs give sentence 'gainst the merchant there. + +SHYLOCK: +My deeds upon my head! I crave the law, +The penalty and forfeit of my bond. + +PORTIA: +Is he not able to discharge the money? + +BASSANIO: +Yes, here I tender it for him in the court; +Yea, twice the sum: if that will not suffice, +I will be bound to pay it ten times o'er, +On forfeit of my hands, my head, my heart: +If this will not suffice, it must appear +That malice bears down truth. And I beseech you, +Wrest once the law to your authority: +To do a great right, do a little wrong, +And curb this cruel devil of his will. + +PORTIA: +It must not be; there is no power in Venice +Can alter a decree established: +'Twill be recorded for a precedent, +And many an error by the same example +Will rush into the state: it cannot be. + +SHYLOCK: +A Daniel come to judgment! yea, a Daniel! +O wise young judge, how I do honour thee! + +PORTIA: +I pray you, let me look upon the bond. + +SHYLOCK: +Here 'tis, most reverend doctor, here it is. + +PORTIA: +Shylock, there's thrice thy money offer'd thee. + +SHYLOCK: +An oath, an oath, I have an oath in heaven: +Shall I lay perjury upon my soul? +No, not for Venice. + +PORTIA: +Why, this bond is forfeit; +And lawfully by this the Jew may claim +A pound of flesh, to be by him cut off +Nearest the merchant's heart. Be merciful: +Take thrice thy money; bid me tear the bond. + +SHYLOCK: +When it is paid according to the tenor. +It doth appear you are a worthy judge; +You know the law, your exposition +Hath been most sound: I charge you by the law, +Whereof you are a well-deserving pillar, +Proceed to judgment: by my soul I swear +There is no power in the tongue of man +To alter me: I stay here on my bond. + +ANTONIO: +Most heartily I do beseech the court +To give the judgment. + +PORTIA: +Why then, thus it is: +You must prepare your bosom for his knife. + +SHYLOCK: +O noble judge! O excellent young man! + +PORTIA: +For the intent and purpose of the law +Hath full relation to the penalty, +Which here appeareth due upon the bond. + +SHYLOCK: +'Tis very true: O wise and upright judge! +How much more elder art thou than thy looks! + +PORTIA: +Therefore lay bare your bosom. + +SHYLOCK: +Ay, his breast: +So says the bond: doth it not, noble judge? +'Nearest his heart:' those are the very words. + +PORTIA: +It is so. Are there balance here to weigh +The flesh? + +SHYLOCK: +I have them ready. + +PORTIA: +Have by some surgeon, Shylock, on your charge, +To stop his wounds, lest he do bleed to death. + +SHYLOCK: +Is it so nominated in the bond? + +PORTIA: +It is not so express'd: but what of that? +'Twere good you do so much for charity. + +SHYLOCK: +I cannot find it; 'tis not in the bond. + +PORTIA: +You, merchant, have you any thing to say? + +ANTONIO: +But little: I am arm'd and well prepared. +Give me your hand, Bassanio: fare you well! +Grieve not that I am fallen to this for you; +For herein Fortune shows herself more kind +Than is her custom: it is still her use +To let the wretched man outlive his wealth, +To view with hollow eye and wrinkled brow +An age of poverty; from which lingering penance +Of such misery doth she cut me off. +Commend me to your honourable wife: +Tell her the process of Antonio's end; +Say how I loved you, speak me fair in death; +And, when the tale is told, bid her be judge +Whether Bassanio had not once a love. +Repent but you that you shall lose your friend, +And he repents not that he pays your debt; +For if the Jew do cut but deep enough, +I'll pay it presently with all my heart. + +BASSANIO: +Antonio, I am married to a wife +Which is as dear to me as life itself; +But life itself, my wife, and all the world, +Are not with me esteem'd above thy life: +I would lose all, ay, sacrifice them all +Here to this devil, to deliver you. + +PORTIA: +Your wife would give you little thanks for that, +If she were by, to hear you make the offer. + +GRATIANO: +I have a wife, whom, I protest, I love: +I would she were in heaven, so she could +Entreat some power to change this currish Jew. + +NERISSA: +'Tis well you offer it behind her back; +The wish would make else an unquiet house. + +SHYLOCK: +These be the Christian husbands. I have a daughter; +Would any of the stock of Barrabas +Had been her husband rather than a Christian! +We trifle time: I pray thee, pursue sentence. + +PORTIA: +A pound of that same merchant's flesh is thine: +The court awards it, and the law doth give it. + +SHYLOCK: +Most rightful judge! + +PORTIA: +And you must cut this flesh from off his breast: +The law allows it, and the court awards it. + +SHYLOCK: +Most learned judge! A sentence! Come, prepare! + +PORTIA: +Tarry a little; there is something else. +This bond doth give thee here no jot of blood; +The words expressly are 'a pound of flesh:' +Take then thy bond, take thou thy pound of flesh; +But, in the cutting it, if thou dost shed +One drop of Christian blood, thy lands and goods +Are, by the laws of Venice, confiscate +Unto the state of Venice. + +GRATIANO: +O upright judge! Mark, Jew: O learned judge! + +SHYLOCK: +Is that the law? + +PORTIA: +Thyself shalt see the act: +For, as thou urgest justice, be assured +Thou shalt have justice, more than thou desirest. + +GRATIANO: +O learned judge! Mark, Jew: a learned judge! + +SHYLOCK: +I take this offer, then; pay the bond thrice +And let the Christian go. + +BASSANIO: +Here is the money. + +PORTIA: +Soft! +The Jew shall have all justice; soft! no haste: +He shall have nothing but the penalty. + +GRATIANO: +O Jew! an upright judge, a learned judge! + +PORTIA: +Therefore prepare thee to cut off the flesh. +Shed thou no blood, nor cut thou less nor more +But just a pound of flesh: if thou cut'st more +Or less than a just pound, be it but so much +As makes it light or heavy in the substance, +Or the division of the twentieth part +Of one poor scruple, nay, if the scale do turn +But in the estimation of a hair, +Thou diest and all thy goods are confiscate. + +GRATIANO: +A second Daniel, a Daniel, Jew! +Now, infidel, I have you on the hip. + +PORTIA: +Why doth the Jew pause? take thy forfeiture. + +SHYLOCK: +Give me my principal, and let me go. + +BASSANIO: +I have it ready for thee; here it is. + +PORTIA: +He hath refused it in the open court: +He shall have merely justice and his bond. + +GRATIANO: +A Daniel, still say I, a second Daniel! +I thank thee, Jew, for teaching me that word. + +SHYLOCK: +Shall I not have barely my principal? + +PORTIA: +Thou shalt have nothing but the forfeiture, +To be so taken at thy peril, Jew. + +SHYLOCK: +Why, then the devil give him good of it! +I'll stay no longer question. + +PORTIA: +Tarry, Jew: +The law hath yet another hold on you. +It is enacted in the laws of Venice, +If it be proved against an alien +That by direct or indirect attempts +He seek the life of any citizen, +The party 'gainst the which he doth contrive +Shall seize one half his goods; the other half +Comes to the privy coffer of the state; +And the offender's life lies in the mercy +Of the duke only, 'gainst all other voice. +In which predicament, I say, thou stand'st; +For it appears, by manifest proceeding, +That indirectly and directly too +Thou hast contrived against the very life +Of the defendant; and thou hast incurr'd +The danger formerly by me rehearsed. +Down therefore and beg mercy of the duke. + +GRATIANO: +Beg that thou mayst have leave to hang thyself: +And yet, thy wealth being forfeit to the state, +Thou hast not left the value of a cord; +Therefore thou must be hang'd at the state's charge. + +DUKE: +That thou shalt see the difference of our spirits, +I pardon thee thy life before thou ask it: +For half thy wealth, it is Antonio's; +The other half comes to the general state, +Which humbleness may drive unto a fine. + +PORTIA: +Ay, for the state, not for Antonio. + +SHYLOCK: +Nay, take my life and all; pardon not that: +You take my house when you do take the prop +That doth sustain my house; you take my life +When you do take the means whereby I live. + +PORTIA: +What mercy can you render him, Antonio? + +GRATIANO: +A halter gratis; nothing else, for God's sake. + +ANTONIO: +So please my lord the duke and all the court +To quit the fine for one half of his goods, +I am content; so he will let me have +The other half in use, to render it, +Upon his death, unto the gentleman +That lately stole his daughter: +Two things provided more, that, for this favour, +He presently become a Christian; +The other, that he do record a gift, +Here in the court, of all he dies possess'd, +Unto his son Lorenzo and his daughter. + +DUKE: +He shall do this, or else I do recant +The pardon that I late pronounced here. + +PORTIA: +Art thou contented, Jew? what dost thou say? + +SHYLOCK: +I am content. + +PORTIA: +Clerk, draw a deed of gift. + +SHYLOCK: +I pray you, give me leave to go from hence; +I am not well: send the deed after me, +And I will sign it. + +DUKE: +Get thee gone, but do it. + +GRATIANO: +In christening shalt thou have two god-fathers: +Had I been judge, thou shouldst have had ten more, +To bring thee to the gallows, not the font. + +DUKE: +Sir, I entreat you home with me to dinner. + +PORTIA: +I humbly do desire your grace of pardon: +I must away this night toward Padua, +And it is meet I presently set forth. + +DUKE: +I am sorry that your leisure serves you not. +Antonio, gratify this gentleman, +For, in my mind, you are much bound to him. + +BASSANIO: +Most worthy gentleman, I and my friend +Have by your wisdom been this day acquitted +Of grievous penalties; in lieu whereof, +Three thousand ducats, due unto the Jew, +We freely cope your courteous pains withal. + +ANTONIO: +And stand indebted, over and above, +In love and service to you evermore. + +PORTIA: +He is well paid that is well satisfied; +And I, delivering you, am satisfied +And therein do account myself well paid: +My mind was never yet more mercenary. +I pray you, know me when we meet again: +I wish you well, and so I take my leave. + +BASSANIO: +Dear sir, of force I must attempt you further: +Take some remembrance of us, as a tribute, +Not as a fee: grant me two things, I pray you, +Not to deny me, and to pardon me. + +PORTIA: +You press me far, and therefore I will yield. +Give me your gloves, I'll wear them for your sake; +And, for your love, I'll take this ring from you: +Do not draw back your hand; I'll take no more; +And you in love shall not deny me this. + +BASSANIO: +This ring, good sir, alas, it is a trifle! +I will not shame myself to give you this. + +PORTIA: +I will have nothing else but only this; +And now methinks I have a mind to it. + +BASSANIO: +There's more depends on this than on the value. +The dearest ring in Venice will I give you, +And find it out by proclamation: +Only for this, I pray you, pardon me. + +PORTIA: +I see, sir, you are liberal in offers +You taught me first to beg; and now methinks +You teach me how a beggar should be answer'd. + +BASSANIO: +Good sir, this ring was given me by my wife; +And when she put it on, she made me vow +That I should neither sell nor give nor lose it. + +PORTIA: +That 'scuse serves many men to save their gifts. +An if your wife be not a mad-woman, +And know how well I have deserved the ring, +She would not hold out enemy for ever, +For giving it to me. Well, peace be with you! + +ANTONIO: +My Lord Bassanio, let him have the ring: +Let his deservings and my love withal +Be valued against your wife's commandment. + +BASSANIO: +Go, Gratiano, run and overtake him; +Give him the ring, and bring him, if thou canst, +Unto Antonio's house: away! make haste. +Come, you and I will thither presently; +And in the morning early will we both +Fly toward Belmont: come, Antonio. + +PORTIA: +Inquire the Jew's house out, give him this deed +And let him sign it: we'll away to-night +And be a day before our husbands home: +This deed will be well welcome to Lorenzo. + +GRATIANO: +Fair sir, you are well o'erta'en +My Lord Bassanio upon more advice +Hath sent you here this ring, and doth entreat +Your company at dinner. + +PORTIA: +That cannot be: +His ring I do accept most thankfully: +And so, I pray you, tell him: furthermore, +I pray you, show my youth old Shylock's house. + +GRATIANO: +That will I do. + +NERISSA: +Sir, I would speak with you. +I'll see if I can get my husband's ring, +Which I did make him swear to keep for ever. + +PORTIA: + +NERISSA: +Come, good sir, will you show me to this house? + +LORENZO: +The moon shines bright: in such a night as this, +When the sweet wind did gently kiss the trees +And they did make no noise, in such a night +Troilus methinks mounted the Troyan walls +And sigh'd his soul toward the Grecian tents, +Where Cressid lay that night. + +JESSICA: +In such a night +Did Thisbe fearfully o'ertrip the dew +And saw the lion's shadow ere himself +And ran dismay'd away. + +LORENZO: +In such a night +Stood Dido with a willow in her hand +Upon the wild sea banks and waft her love +To come again to Carthage. + +JESSICA: +In such a night +Medea gather'd the enchanted herbs +That did renew old AEson. + +LORENZO: +In such a night +Did Jessica steal from the wealthy Jew +And with an unthrift love did run from Venice +As far as Belmont. + +JESSICA: +In such a night +Did young Lorenzo swear he loved her well, +Stealing her soul with many vows of faith +And ne'er a true one. + +LORENZO: +In such a night +Did pretty Jessica, like a little shrew, +Slander her love, and he forgave it her. + +JESSICA: +I would out-night you, did no body come; +But, hark, I hear the footing of a man. + +LORENZO: +Who comes so fast in silence of the night? + +STEPHANO: +A friend. + +LORENZO: +A friend! what friend? your name, I pray you, friend? + +STEPHANO: +Stephano is my name; and I bring word +My mistress will before the break of day +Be here at Belmont; she doth stray about +By holy crosses, where she kneels and prays +For happy wedlock hours. + +LORENZO: +Who comes with her? + +STEPHANO: +None but a holy hermit and her maid. +I pray you, is my master yet return'd? + +LORENZO: +He is not, nor we have not heard from him. +But go we in, I pray thee, Jessica, +And ceremoniously let us prepare +Some welcome for the mistress of the house. + +LAUNCELOT: +Sola, sola! wo ha, ho! sola, sola! + +LORENZO: +Who calls? + +LAUNCELOT: +Sola! did you see Master Lorenzo? +Master Lorenzo, sola, sola! + +LORENZO: +Leave hollaing, man: here. + +LAUNCELOT: +Sola! where? where? + +LORENZO: +Here. + +LAUNCELOT: +Tell him there's a post come from my master, with +his horn full of good news: my master will be here +ere morning. + +LORENZO: +Sweet soul, let's in, and there expect their coming. +And yet no matter: why should we go in? +My friend Stephano, signify, I pray you, +Within the house, your mistress is at hand; +And bring your music forth into the air. +How sweet the moonlight sleeps upon this bank! +Here will we sit and let the sounds of music +Creep in our ears: soft stillness and the night +Become the touches of sweet harmony. +Sit, Jessica. Look how the floor of heaven +Is thick inlaid with patines of bright gold: +There's not the smallest orb which thou behold'st +But in his motion like an angel sings, +Still quiring to the young-eyed cherubins; +Such harmony is in immortal souls; +But whilst this muddy vesture of decay +Doth grossly close it in, we cannot hear it. +Come, ho! and wake Diana with a hymn! +With sweetest touches pierce your mistress' ear, +And draw her home with music. + +JESSICA: +I am never merry when I hear sweet music. + +LORENZO: +The reason is, your spirits are attentive: +For do but note a wild and wanton herd, +Or race of youthful and unhandled colts, +Fetching mad bounds, bellowing and neighing loud, +Which is the hot condition of their blood; +If they but hear perchance a trumpet sound, +Or any air of music touch their ears, +You shall perceive them make a mutual stand, +Their savage eyes turn'd to a modest gaze +By the sweet power of music: therefore the poet +Did feign that Orpheus drew trees, stones and floods; +Since nought so stockish, hard and full of rage, +But music for the time doth change his nature. +The man that hath no music in himself, +Nor is not moved with concord of sweet sounds, +Is fit for treasons, stratagems and spoils; +The motions of his spirit are dull as night +And his affections dark as Erebus: +Let no such man be trusted. Mark the music. + +PORTIA: +That light we see is burning in my hall. +How far that little candle throws his beams! +So shines a good deed in a naughty world. + +NERISSA: +When the moon shone, we did not see the candle. + +PORTIA: +So doth the greater glory dim the less: +A substitute shines brightly as a king +Unto the king be by, and then his state +Empties itself, as doth an inland brook +Into the main of waters. Music! hark! + +NERISSA: +It is your music, madam, of the house. + +PORTIA: +Nothing is good, I see, without respect: +Methinks it sounds much sweeter than by day. + +NERISSA: +Silence bestows that virtue on it, madam. + +PORTIA: +The crow doth sing as sweetly as the lark, +When neither is attended, and I think +The nightingale, if she should sing by day, +When every goose is cackling, would be thought +No better a musician than the wren. +How many things by season season'd are +To their right praise and true perfection! +Peace, ho! the moon sleeps with Endymion +And would not be awaked. + +LORENZO: +That is the voice, +Or I am much deceived, of Portia. + +PORTIA: +He knows me as the blind man knows the cuckoo, +By the bad voice. + +LORENZO: +Dear lady, welcome home. + +PORTIA: +We have been praying for our husbands' healths, +Which speed, we hope, the better for our words. +Are they return'd? + +LORENZO: +Madam, they are not yet; +But there is come a messenger before, +To signify their coming. + +PORTIA: +Go in, Nerissa; +Give order to my servants that they take +No note at all of our being absent hence; +Nor you, Lorenzo; Jessica, nor you. + +LORENZO: +Your husband is at hand; I hear his trumpet: +We are no tell-tales, madam; fear you not. + +PORTIA: +This night methinks is but the daylight sick; +It looks a little paler: 'tis a day, +Such as the day is when the sun is hid. + +BASSANIO: +We should hold day with the Antipodes, +If you would walk in absence of the sun. + +PORTIA: +Let me give light, but let me not be light; +For a light wife doth make a heavy husband, +And never be Bassanio so for me: +But God sort all! You are welcome home, my lord. + +BASSANIO: +I thank you, madam. Give welcome to my friend. +This is the man, this is Antonio, +To whom I am so infinitely bound. + +PORTIA: +You should in all sense be much bound to him. +For, as I hear, he was much bound for you. + +ANTONIO: +No more than I am well acquitted of. + +PORTIA: +Sir, you are very welcome to our house: +It must appear in other ways than words, +Therefore I scant this breathing courtesy. + +GRATIANO: + +PORTIA: +A quarrel, ho, already! what's the matter? + +GRATIANO: +About a hoop of gold, a paltry ring +That she did give me, whose posy was +For all the world like cutler's poetry +Upon a knife, 'Love me, and leave me not.' + +NERISSA: +What talk you of the posy or the value? +You swore to me, when I did give it you, +That you would wear it till your hour of death +And that it should lie with you in your grave: +Though not for me, yet for your vehement oaths, +You should have been respective and have kept it. +Gave it a judge's clerk! no, God's my judge, +The clerk will ne'er wear hair on's face that had it. + +GRATIANO: +He will, an if he live to be a man. + +NERISSA: +Ay, if a woman live to be a man. + +GRATIANO: +Now, by this hand, I gave it to a youth, +A kind of boy, a little scrubbed boy, +No higher than thyself; the judge's clerk, +A prating boy, that begg'd it as a fee: +I could not for my heart deny it him. + +PORTIA: +You were to blame, I must be plain with you, +To part so slightly with your wife's first gift: +A thing stuck on with oaths upon your finger +And so riveted with faith unto your flesh. +I gave my love a ring and made him swear +Never to part with it; and here he stands; +I dare be sworn for him he would not leave it +Nor pluck it from his finger, for the wealth +That the world masters. Now, in faith, Gratiano, +You give your wife too unkind a cause of grief: +An 'twere to me, I should be mad at it. + +BASSANIO: + +GRATIANO: +My Lord Bassanio gave his ring away +Unto the judge that begg'd it and indeed +Deserved it too; and then the boy, his clerk, +That took some pains in writing, he begg'd mine; +And neither man nor master would take aught +But the two rings. + +PORTIA: +What ring gave you my lord? +Not that, I hope, which you received of me. + +BASSANIO: +If I could add a lie unto a fault, +I would deny it; but you see my finger +Hath not the ring upon it; it is gone. + +PORTIA: +Even so void is your false heart of truth. +By heaven, I will ne'er come in your bed +Until I see the ring. + +NERISSA: +Nor I in yours +Till I again see mine. + +BASSANIO: +Sweet Portia, +If you did know to whom I gave the ring, +If you did know for whom I gave the ring +And would conceive for what I gave the ring +And how unwillingly I left the ring, +When nought would be accepted but the ring, +You would abate the strength of your displeasure. + +PORTIA: +If you had known the virtue of the ring, +Or half her worthiness that gave the ring, +Or your own honour to contain the ring, +You would not then have parted with the ring. +What man is there so much unreasonable, +If you had pleased to have defended it +With any terms of zeal, wanted the modesty +To urge the thing held as a ceremony? +Nerissa teaches me what to believe: +I'll die for't but some woman had the ring. + +BASSANIO: +No, by my honour, madam, by my soul, +No woman had it, but a civil doctor, +Which did refuse three thousand ducats of me +And begg'd the ring; the which I did deny him +And suffer'd him to go displeased away; +Even he that did uphold the very life +Of my dear friend. What should I say, sweet lady? +I was enforced to send it after him; +I was beset with shame and courtesy; +My honour would not let ingratitude +So much besmear it. Pardon me, good lady; +For, by these blessed candles of the night, +Had you been there, I think you would have begg'd +The ring of me to give the worthy doctor. + +PORTIA: +Let not that doctor e'er come near my house: +Since he hath got the jewel that I loved, +And that which you did swear to keep for me, +I will become as liberal as you; +I'll not deny him any thing I have, +No, not my body nor my husband's bed: +Know him I shall, I am well sure of it: +Lie not a night from home; watch me like Argus: +If you do not, if I be left alone, +Now, by mine honour, which is yet mine own, +I'll have that doctor for my bedfellow. + +NERISSA: +And I his clerk; therefore be well advised +How you do leave me to mine own protection. + +GRATIANO: +Well, do you so; let not me take him, then; +For if I do, I'll mar the young clerk's pen. + +ANTONIO: +I am the unhappy subject of these quarrels. + +PORTIA: +Sir, grieve not you; you are welcome notwithstanding. + +BASSANIO: +Portia, forgive me this enforced wrong; +And, in the hearing of these many friends, +I swear to thee, even by thine own fair eyes, +Wherein I see myself-- + +PORTIA: +Mark you but that! +In both my eyes he doubly sees himself; +In each eye, one: swear by your double self, +And there's an oath of credit. + +BASSANIO: +Nay, but hear me: +Pardon this fault, and by my soul I swear +I never more will break an oath with thee. + +ANTONIO: +I once did lend my body for his wealth; +Which, but for him that had your husband's ring, +Had quite miscarried: I dare be bound again, +My soul upon the forfeit, that your lord +Will never more break faith advisedly. + +PORTIA: +Then you shall be his surety. Give him this +And bid him keep it better than the other. + +ANTONIO: +Here, Lord Bassanio; swear to keep this ring. + +BASSANIO: +By heaven, it is the same I gave the doctor! + +PORTIA: +I had it of him: pardon me, Bassanio; +For, by this ring, the doctor lay with me. + +NERISSA: +And pardon me, my gentle Gratiano; +For that same scrubbed boy, the doctor's clerk, +In lieu of this last night did lie with me. + +GRATIANO: +Why, this is like the mending of highways +In summer, where the ways are fair enough: +What, are we cuckolds ere we have deserved it? + +PORTIA: +Speak not so grossly. You are all amazed: +Here is a letter; read it at your leisure; +It comes from Padua, from Bellario: +There you shall find that Portia was the doctor, +Nerissa there her clerk: Lorenzo here +Shall witness I set forth as soon as you +And even but now return'd; I have not yet +Enter'd my house. Antonio, you are welcome; +And I have better news in store for you +Than you expect: unseal this letter soon; +There you shall find three of your argosies +Are richly come to harbour suddenly: +You shall not know by what strange accident +I chanced on this letter. + +ANTONIO: +I am dumb. + +BASSANIO: +Were you the doctor and I knew you not? + +GRATIANO: +Were you the clerk that is to make me cuckold? + +NERISSA: +Ay, but the clerk that never means to do it, +Unless he live until he be a man. + +BASSANIO: +Sweet doctor, you shall be my bed-fellow: +When I am absent, then lie with my wife. + +ANTONIO: +Sweet lady, you have given me life and living; +For here I read for certain that my ships +Are safely come to road. + +PORTIA: +How now, Lorenzo! +My clerk hath some good comforts too for you. + +NERISSA: +Ay, and I'll give them him without a fee. +There do I give to you and Jessica, +From the rich Jew, a special deed of gift, +After his death, of all he dies possess'd of. + +LORENZO: +Fair ladies, you drop manna in the way +Of starved people. + +PORTIA: +It is almost morning, +And yet I am sure you are not satisfied +Of these events at full. Let us go in; +And charge us there upon inter'gatories, +And we will answer all things faithfully. + +GRATIANO: +Let it be so: the first inter'gatory +That my Nerissa shall be sworn on is, +Whether till the next night she had rather stay, +Or go to bed now, being two hours to day: +But were the day come, I should wish it dark, +That I were couching with the doctor's clerk. +Well, while I live I'll fear no other thing +So sore as keeping safe Nerissa's ring. + +First Witch: +When shall we three meet again +In thunder, lightning, or in rain? + +Second Witch: +When the hurlyburly's done, +When the battle's lost and won. + +Third Witch: +That will be ere the set of sun. + +First Witch: +Where the place? + +Second Witch: +Upon the heath. + +Third Witch: +There to meet with Macbeth. + +First Witch: +I come, Graymalkin! + +Second Witch: +Paddock calls. + +Third Witch: +Anon. + +ALL: +Fair is foul, and foul is fair: +Hover through the fog and filthy air. + +DUNCAN: +What bloody man is that? He can report, +As seemeth by his plight, of the revolt +The newest state. + +MALCOLM: +This is the sergeant +Who like a good and hardy soldier fought +'Gainst my captivity. Hail, brave friend! +Say to the king the knowledge of the broil +As thou didst leave it. + +Sergeant: +Doubtful it stood; +As two spent swimmers, that do cling together +And choke their art. The merciless Macdonwald-- +Worthy to be a rebel, for to that +The multiplying villanies of nature +Do swarm upon him--from the western isles +Of kerns and gallowglasses is supplied; +And fortune, on his damned quarrel smiling, +Show'd like a rebel's whore: but all's too weak: +For brave Macbeth--well he deserves that name-- +Disdaining fortune, with his brandish'd steel, +Which smoked with bloody execution, +Like valour's minion carved out his passage +Till he faced the slave; +Which ne'er shook hands, nor bade farewell to him, +Till he unseam'd him from the nave to the chaps, +And fix'd his head upon our battlements. + +DUNCAN: +O valiant cousin! worthy gentleman! + +Sergeant: +As whence the sun 'gins his reflection +Shipwrecking storms and direful thunders break, +So from that spring whence comfort seem'd to come +Discomfort swells. Mark, king of Scotland, mark: +No sooner justice had with valour arm'd +Compell'd these skipping kerns to trust their heels, +But the Norweyan lord surveying vantage, +With furbish'd arms and new supplies of men +Began a fresh assault. + +DUNCAN: +Dismay'd not this +Our captains, Macbeth and Banquo? + +Sergeant: +Yes; +As sparrows eagles, or the hare the lion. +If I say sooth, I must report they were +As cannons overcharged with double cracks, so they +Doubly redoubled strokes upon the foe: +Except they meant to bathe in reeking wounds, +Or memorise another Golgotha, +I cannot tell. +But I am faint, my gashes cry for help. + +DUNCAN: +So well thy words become thee as thy wounds; +They smack of honour both. Go get him surgeons. +Who comes here? + +MALCOLM: +The worthy thane of Ross. + +LENNOX: +What a haste looks through his eyes! So should he look +That seems to speak things strange. + +ROSS: +God save the king! + +DUNCAN: +Whence camest thou, worthy thane? + +ROSS: +From Fife, great king; +Where the Norweyan banners flout the sky +And fan our people cold. Norway himself, +With terrible numbers, +Assisted by that most disloyal traitor +The thane of Cawdor, began a dismal conflict; +Till that Bellona's bridegroom, lapp'd in proof, +Confronted him with self-comparisons, +Point against point rebellious, arm 'gainst arm. +Curbing his lavish spirit: and, to conclude, +The victory fell on us. + +DUNCAN: +Great happiness! + +ROSS: +That now +Sweno, the Norways' king, craves composition: +Nor would we deign him burial of his men +Till he disbursed at Saint Colme's inch +Ten thousand dollars to our general use. + +DUNCAN: +No more that thane of Cawdor shall deceive +Our bosom interest: go pronounce his present death, +And with his former title greet Macbeth. + +ROSS: +I'll see it done. + +DUNCAN: +What he hath lost noble Macbeth hath won. + +First Witch: +Where hast thou been, sister? + +Second Witch: +Killing swine. + +Third Witch: +Sister, where thou? + +First Witch: +A sailor's wife had chestnuts in her lap, +And munch'd, and munch'd, and munch'd:-- +'Give me,' quoth I: +'Aroint thee, witch!' the rump-fed ronyon cries. +Her husband's to Aleppo gone, master o' the Tiger: +But in a sieve I'll thither sail, +And, like a rat without a tail, +I'll do, I'll do, and I'll do. + +Second Witch: +I'll give thee a wind. + +First Witch: +Thou'rt kind. + +Third Witch: +And I another. + +First Witch: +I myself have all the other, +And the very ports they blow, +All the quarters that they know +I' the shipman's card. +I will drain him dry as hay: +Sleep shall neither night nor day +Hang upon his pent-house lid; +He shall live a man forbid: +Weary se'nnights nine times nine +Shall he dwindle, peak and pine: +Though his bark cannot be lost, +Yet it shall be tempest-tost. +Look what I have. + +Second Witch: +Show me, show me. + +First Witch: +Here I have a pilot's thumb, +Wreck'd as homeward he did come. + +Third Witch: +A drum, a drum! +Macbeth doth come. + +ALL: +The weird sisters, hand in hand, +Posters of the sea and land, +Thus do go about, about: +Thrice to thine and thrice to mine +And thrice again, to make up nine. +Peace! the charm's wound up. + +MACBETH: +So foul and fair a day I have not seen. + +BANQUO: +How far is't call'd to Forres? What are these +So wither'd and so wild in their attire, +That look not like the inhabitants o' the earth, +And yet are on't? Live you? or are you aught +That man may question? You seem to understand me, +By each at once her chappy finger laying +Upon her skinny lips: you should be women, +And yet your beards forbid me to interpret +That you are so. + +MACBETH: +Speak, if you can: what are you? + +First Witch: +All hail, Macbeth! hail to thee, thane of Glamis! + +Second Witch: +All hail, Macbeth, hail to thee, thane of Cawdor! + +Third Witch: +All hail, Macbeth, thou shalt be king hereafter! + +BANQUO: +Good sir, why do you start; and seem to fear +Things that do sound so fair? I' the name of truth, +Are ye fantastical, or that indeed +Which outwardly ye show? My noble partner +You greet with present grace and great prediction +Of noble having and of royal hope, +That he seems rapt withal: to me you speak not. +If you can look into the seeds of time, +And say which grain will grow and which will not, +Speak then to me, who neither beg nor fear +Your favours nor your hate. + +First Witch: +Hail! + +Second Witch: +Hail! + +Third Witch: +Hail! + +First Witch: +Lesser than Macbeth, and greater. + +Second Witch: +Not so happy, yet much happier. + +Third Witch: +Thou shalt get kings, though thou be none: +So all hail, Macbeth and Banquo! + +First Witch: +Banquo and Macbeth, all hail! + +MACBETH: +Stay, you imperfect speakers, tell me more: +By Sinel's death I know I am thane of Glamis; +But how of Cawdor? the thane of Cawdor lives, +A prosperous gentleman; and to be king +Stands not within the prospect of belief, +No more than to be Cawdor. Say from whence +You owe this strange intelligence? or why +Upon this blasted heath you stop our way +With such prophetic greeting? Speak, I charge you. + +BANQUO: +The earth hath bubbles, as the water has, +And these are of them. Whither are they vanish'd? + +MACBETH: +Into the air; and what seem'd corporal melted +As breath into the wind. Would they had stay'd! + +BANQUO: +Were such things here as we do speak about? +Or have we eaten on the insane root +That takes the reason prisoner? + +MACBETH: +Your children shall be kings. + +BANQUO: +You shall be king. + +MACBETH: +And thane of Cawdor too: went it not so? + +BANQUO: +To the selfsame tune and words. Who's here? + +ROSS: +The king hath happily received, Macbeth, +The news of thy success; and when he reads +Thy personal venture in the rebels' fight, +His wonders and his praises do contend +Which should be thine or his: silenced with that, +In viewing o'er the rest o' the selfsame day, +He finds thee in the stout Norweyan ranks, +Nothing afeard of what thyself didst make, +Strange images of death. As thick as hail +Came post with post; and every one did bear +Thy praises in his kingdom's great defence, +And pour'd them down before him. + +ANGUS: +We are sent +To give thee from our royal master thanks; +Only to herald thee into his sight, +Not pay thee. + +ROSS: +And, for an earnest of a greater honour, +He bade me, from him, call thee thane of Cawdor: +In which addition, hail, most worthy thane! +For it is thine. + +BANQUO: +What, can the devil speak true? + +MACBETH: +The thane of Cawdor lives: why do you dress me +In borrow'd robes? + +ANGUS: +Who was the thane lives yet; +But under heavy judgment bears that life +Which he deserves to lose. Whether he was combined +With those of Norway, or did line the rebel +With hidden help and vantage, or that with both +He labour'd in his country's wreck, I know not; +But treasons capital, confess'd and proved, +Have overthrown him. + +MACBETH: + +BANQUO: +That trusted home +Might yet enkindle you unto the crown, +Besides the thane of Cawdor. But 'tis strange: +And oftentimes, to win us to our harm, +The instruments of darkness tell us truths, +Win us with honest trifles, to betray's +In deepest consequence. +Cousins, a word, I pray you. + +MACBETH: + +BANQUO: +Look, how our partner's rapt. + +MACBETH: + +BANQUO: +New horrors come upon him, +Like our strange garments, cleave not to their mould +But with the aid of use. + +MACBETH: + +BANQUO: +Worthy Macbeth, we stay upon your leisure. + +MACBETH: +Give me your favour: my dull brain was wrought +With things forgotten. Kind gentlemen, your pains +Are register'd where every day I turn +The leaf to read them. Let us toward the king. +Think upon what hath chanced, and, at more time, +The interim having weigh'd it, let us speak +Our free hearts each to other. + +BANQUO: +Very gladly. + +MACBETH: +Till then, enough. Come, friends. + +DUNCAN: +Is execution done on Cawdor? Are not +Those in commission yet return'd? + +MALCOLM: +My liege, +They are not yet come back. But I have spoke +With one that saw him die: who did report +That very frankly he confess'd his treasons, +Implored your highness' pardon and set forth +A deep repentance: nothing in his life +Became him like the leaving it; he died +As one that had been studied in his death +To throw away the dearest thing he owed, +As 'twere a careless trifle. + +DUNCAN: +There's no art +To find the mind's construction in the face: +He was a gentleman on whom I built +An absolute trust. +O worthiest cousin! +The sin of my ingratitude even now +Was heavy on me: thou art so far before +That swiftest wing of recompense is slow +To overtake thee. Would thou hadst less deserved, +That the proportion both of thanks and payment +Might have been mine! only I have left to say, +More is thy due than more than all can pay. + +MACBETH: +The service and the loyalty I owe, +In doing it, pays itself. Your highness' part +Is to receive our duties; and our duties +Are to your throne and state children and servants, +Which do but what they should, by doing every thing +Safe toward your love and honour. + +DUNCAN: +Welcome hither: +I have begun to plant thee, and will labour +To make thee full of growing. Noble Banquo, +That hast no less deserved, nor must be known +No less to have done so, let me enfold thee +And hold thee to my heart. + +BANQUO: +There if I grow, +The harvest is your own. + +DUNCAN: +My plenteous joys, +Wanton in fulness, seek to hide themselves +In drops of sorrow. Sons, kinsmen, thanes, +And you whose places are the nearest, know +We will establish our estate upon +Our eldest, Malcolm, whom we name hereafter +The Prince of Cumberland; which honour must +Not unaccompanied invest him only, +But signs of nobleness, like stars, shall shine +On all deservers. From hence to Inverness, +And bind us further to you. + +MACBETH: +The rest is labour, which is not used for you: +I'll be myself the harbinger and make joyful +The hearing of my wife with your approach; +So humbly take my leave. + +DUNCAN: +My worthy Cawdor! + +MACBETH: + +DUNCAN: +True, worthy Banquo; he is full so valiant, +And in his commendations I am fed; +It is a banquet to me. Let's after him, +Whose care is gone before to bid us welcome: +It is a peerless kinsman. + +LADY MACBETH: +'They met me in the day of success: and I have +learned by the perfectest report, they have more in +them than mortal knowledge. When I burned in desire +to question them further, they made themselves air, +into which they vanished. Whiles I stood rapt in +the wonder of it, came missives from the king, who +all-hailed me 'Thane of Cawdor;' by which title, +before, these weird sisters saluted me, and referred +me to the coming on of time, with 'Hail, king that +shalt be!' This have I thought good to deliver +thee, my dearest partner of greatness, that thou +mightst not lose the dues of rejoicing, by being +ignorant of what greatness is promised thee. Lay it +to thy heart, and farewell.' +Glamis thou art, and Cawdor; and shalt be +What thou art promised: yet do I fear thy nature; +It is too full o' the milk of human kindness +To catch the nearest way: thou wouldst be great; +Art not without ambition, but without +The illness should attend it: what thou wouldst highly, +That wouldst thou holily; wouldst not play false, +And yet wouldst wrongly win: thou'ldst have, great Glamis, +That which cries 'Thus thou must do, if thou have it; +And that which rather thou dost fear to do +Than wishest should be undone.' Hie thee hither, +That I may pour my spirits in thine ear; +And chastise with the valour of my tongue +All that impedes thee from the golden round, +Which fate and metaphysical aid doth seem +To have thee crown'd withal. +What is your tidings? + +Messenger: +The king comes here to-night. + +LADY MACBETH: +Thou'rt mad to say it: +Is not thy master with him? who, were't so, +Would have inform'd for preparation. + +Messenger: +So please you, it is true: our thane is coming: +One of my fellows had the speed of him, +Who, almost dead for breath, had scarcely more +Than would make up his message. + +LADY MACBETH: +Give him tending; +He brings great news. +The raven himself is hoarse +That croaks the fatal entrance of Duncan +Under my battlements. Come, you spirits +That tend on mortal thoughts, unsex me here, +And fill me from the crown to the toe top-full +Of direst cruelty! make thick my blood; +Stop up the access and passage to remorse, +That no compunctious visitings of nature +Shake my fell purpose, nor keep peace between +The effect and it! Come to my woman's breasts, +And take my milk for gall, you murdering ministers, +Wherever in your sightless substances +You wait on nature's mischief! Come, thick night, +And pall thee in the dunnest smoke of hell, +That my keen knife see not the wound it makes, +Nor heaven peep through the blanket of the dark, +To cry 'Hold, hold!' +Great Glamis! worthy Cawdor! +Greater than both, by the all-hail hereafter! +Thy letters have transported me beyond +This ignorant present, and I feel now +The future in the instant. + +MACBETH: +My dearest love, +Duncan comes here to-night. + +LADY MACBETH: +And when goes hence? + +MACBETH: +To-morrow, as he purposes. + +LADY MACBETH: +O, never +Shall sun that morrow see! +Your face, my thane, is as a book where men +May read strange matters. To beguile the time, +Look like the time; bear welcome in your eye, +Your hand, your tongue: look like the innocent flower, +But be the serpent under't. He that's coming +Must be provided for: and you shall put +This night's great business into my dispatch; +Which shall to all our nights and days to come +Give solely sovereign sway and masterdom. + +MACBETH: +We will speak further. + +LADY MACBETH: +Only look up clear; +To alter favour ever is to fear: +Leave all the rest to me. + +DUNCAN: +This castle hath a pleasant seat; the air +Nimbly and sweetly recommends itself +Unto our gentle senses. + +BANQUO: +This guest of summer, +The temple-haunting martlet, does approve, +By his loved mansionry, that the heaven's breath +Smells wooingly here: no jutty, frieze, +Buttress, nor coign of vantage, but this bird +Hath made his pendent bed and procreant cradle: +Where they most breed and haunt, I have observed, +The air is delicate. + +DUNCAN: +See, see, our honour'd hostess! +The love that follows us sometime is our trouble, +Which still we thank as love. Herein I teach you +How you shall bid God 'ild us for your pains, +And thank us for your trouble. + +LADY MACBETH: +All our service +In every point twice done and then done double +Were poor and single business to contend +Against those honours deep and broad wherewith +Your majesty loads our house: for those of old, +And the late dignities heap'd up to them, +We rest your hermits. + +DUNCAN: +Where's the thane of Cawdor? +We coursed him at the heels, and had a purpose +To be his purveyor: but he rides well; +And his great love, sharp as his spur, hath holp him +To his home before us. Fair and noble hostess, +We are your guest to-night. + +LADY MACBETH: +Your servants ever +Have theirs, themselves and what is theirs, in compt, +To make their audit at your highness' pleasure, +Still to return your own. + +DUNCAN: +Give me your hand; +Conduct me to mine host: we love him highly, +And shall continue our graces towards him. +By your leave, hostess. + +MACBETH: +If it were done when 'tis done, then 'twere well +It were done quickly: if the assassination +Could trammel up the consequence, and catch +With his surcease success; that but this blow +Might be the be-all and the end-all here, +But here, upon this bank and shoal of time, +We'ld jump the life to come. But in these cases +We still have judgment here; that we but teach +Bloody instructions, which, being taught, return +To plague the inventor: this even-handed justice +Commends the ingredients of our poison'd chalice +To our own lips. He's here in double trust; +First, as I am his kinsman and his subject, +Strong both against the deed; then, as his host, +Who should against his murderer shut the door, +Not bear the knife myself. Besides, this Duncan +Hath borne his faculties so meek, hath been +So clear in his great office, that his virtues +Will plead like angels, trumpet-tongued, against +The deep damnation of his taking-off; +And pity, like a naked new-born babe, +Striding the blast, or heaven's cherubim, horsed +Upon the sightless couriers of the air, +Shall blow the horrid deed in every eye, +That tears shall drown the wind. I have no spur +To prick the sides of my intent, but only +Vaulting ambition, which o'erleaps itself +And falls on the other. +How now! what news? + +LADY MACBETH: +He has almost supp'd: why have you left the chamber? + +MACBETH: +Hath he ask'd for me? + +LADY MACBETH: +Know you not he has? + +MACBETH: +We will proceed no further in this business: +He hath honour'd me of late; and I have bought +Golden opinions from all sorts of people, +Which would be worn now in their newest gloss, +Not cast aside so soon. + +LADY MACBETH: +Was the hope drunk +Wherein you dress'd yourself? hath it slept since? +And wakes it now, to look so green and pale +At what it did so freely? From this time +Such I account thy love. Art thou afeard +To be the same in thine own act and valour +As thou art in desire? Wouldst thou have that +Which thou esteem'st the ornament of life, +And live a coward in thine own esteem, +Letting 'I dare not' wait upon 'I would,' +Like the poor cat i' the adage? + +MACBETH: +Prithee, peace: +I dare do all that may become a man; +Who dares do more is none. + +LADY MACBETH: +What beast was't, then, +That made you break this enterprise to me? +When you durst do it, then you were a man; +And, to be more than what you were, you would +Be so much more the man. Nor time nor place +Did then adhere, and yet you would make both: +They have made themselves, and that their fitness now +Does unmake you. I have given suck, and know +How tender 'tis to love the babe that milks me: +I would, while it was smiling in my face, +Have pluck'd my nipple from his boneless gums, +And dash'd the brains out, had I so sworn as you +Have done to this. + +MACBETH: +If we should fail? + +LADY MACBETH: +We fail! +But screw your courage to the sticking-place, +And we'll not fail. When Duncan is asleep-- +Whereto the rather shall his day's hard journey +Soundly invite him--his two chamberlains +Will I with wine and wassail so convince +That memory, the warder of the brain, +Shall be a fume, and the receipt of reason +A limbeck only: when in swinish sleep +Their drenched natures lie as in a death, +What cannot you and I perform upon +The unguarded Duncan? what not put upon +His spongy officers, who shall bear the guilt +Of our great quell? + +MACBETH: +Bring forth men-children only; +For thy undaunted mettle should compose +Nothing but males. Will it not be received, +When we have mark'd with blood those sleepy two +Of his own chamber and used their very daggers, +That they have done't? + +LADY MACBETH: +Who dares receive it other, +As we shall make our griefs and clamour roar +Upon his death? + +MACBETH: +I am settled, and bend up +Each corporal agent to this terrible feat. +Away, and mock the time with fairest show: +False face must hide what the false heart doth know. + +BANQUO: +How goes the night, boy? + +FLEANCE: +The moon is down; I have not heard the clock. + +BANQUO: +And she goes down at twelve. + +FLEANCE: +I take't, 'tis later, sir. + +BANQUO: +Hold, take my sword. There's husbandry in heaven; +Their candles are all out. Take thee that too. +A heavy summons lies like lead upon me, +And yet I would not sleep: merciful powers, +Restrain in me the cursed thoughts that nature +Gives way to in repose! +Give me my sword. +Who's there? + +MACBETH: +A friend. + +BANQUO: +What, sir, not yet at rest? The king's a-bed: +He hath been in unusual pleasure, and +Sent forth great largess to your offices. +This diamond he greets your wife withal, +By the name of most kind hostess; and shut up +In measureless content. + +MACBETH: +Being unprepared, +Our will became the servant to defect; +Which else should free have wrought. + +BANQUO: +All's well. +I dreamt last night of the three weird sisters: +To you they have show'd some truth. + +MACBETH: +I think not of them: +Yet, when we can entreat an hour to serve, +We would spend it in some words upon that business, +If you would grant the time. + +BANQUO: +At your kind'st leisure. + +MACBETH: +If you shall cleave to my consent, when 'tis, +It shall make honour for you. + +BANQUO: +So I lose none +In seeking to augment it, but still keep +My bosom franchised and allegiance clear, +I shall be counsell'd. + +MACBETH: +Good repose the while! + +BANQUO: +Thanks, sir: the like to you! + +MACBETH: +Go bid thy mistress, when my drink is ready, +She strike upon the bell. Get thee to bed. +Is this a dagger which I see before me, +The handle toward my hand? Come, let me clutch thee. +I have thee not, and yet I see thee still. +Art thou not, fatal vision, sensible +To feeling as to sight? or art thou but +A dagger of the mind, a false creation, +Proceeding from the heat-oppressed brain? +I see thee yet, in form as palpable +As this which now I draw. +Thou marshall'st me the way that I was going; +And such an instrument I was to use. +Mine eyes are made the fools o' the other senses, +Or else worth all the rest; I see thee still, +And on thy blade and dudgeon gouts of blood, +Which was not so before. There's no such thing: +It is the bloody business which informs +Thus to mine eyes. Now o'er the one halfworld +Nature seems dead, and wicked dreams abuse +The curtain'd sleep; witchcraft celebrates +Pale Hecate's offerings, and wither'd murder, +Alarum'd by his sentinel, the wolf, +Whose howl's his watch, thus with his stealthy pace. +With Tarquin's ravishing strides, towards his design +Moves like a ghost. Thou sure and firm-set earth, +Hear not my steps, which way they walk, for fear +Thy very stones prate of my whereabout, +And take the present horror from the time, +Which now suits with it. Whiles I threat, he lives: +Words to the heat of deeds too cold breath gives. +I go, and it is done; the bell invites me. +Hear it not, Duncan; for it is a knell +That summons thee to heaven or to hell. + +LADY MACBETH: +That which hath made them drunk hath made me bold; +What hath quench'd them hath given me fire. +Hark! Peace! +It was the owl that shriek'd, the fatal bellman, +Which gives the stern'st good-night. He is about it: +The doors are open; and the surfeited grooms +Do mock their charge with snores: I have drugg'd +their possets, +That death and nature do contend about them, +Whether they live or die. + +MACBETH: + +LADY MACBETH: +Alack, I am afraid they have awaked, +And 'tis not done. The attempt and not the deed +Confounds us. Hark! I laid their daggers ready; +He could not miss 'em. Had he not resembled +My father as he slept, I had done't. +My husband! + +MACBETH: +I have done the deed. Didst thou not hear a noise? + +LADY MACBETH: +I heard the owl scream and the crickets cry. +Did not you speak? + +MACBETH: +When? + +LADY MACBETH: +Now. + +MACBETH: +As I descended? + +LADY MACBETH: +Ay. + +MACBETH: +Hark! +Who lies i' the second chamber? + +LADY MACBETH: +Donalbain. + +MACBETH: +This is a sorry sight. + +LADY MACBETH: +A foolish thought, to say a sorry sight. + +MACBETH: +There's one did laugh in's sleep, and one cried +'Murder!' +That they did wake each other: I stood and heard them: +But they did say their prayers, and address'd them +Again to sleep. + +LADY MACBETH: +There are two lodged together. + +MACBETH: +One cried 'God bless us!' and 'Amen' the other; +As they had seen me with these hangman's hands. +Listening their fear, I could not say 'Amen,' +When they did say 'God bless us!' + +LADY MACBETH: +Consider it not so deeply. + +MACBETH: +But wherefore could not I pronounce 'Amen'? +I had most need of blessing, and 'Amen' +Stuck in my throat. + +LADY MACBETH: +These deeds must not be thought +After these ways; so, it will make us mad. + +MACBETH: +Methought I heard a voice cry 'Sleep no more! +Macbeth does murder sleep', the innocent sleep, +Sleep that knits up the ravell'd sleeve of care, +The death of each day's life, sore labour's bath, +Balm of hurt minds, great nature's second course, +Chief nourisher in life's feast,-- + +LADY MACBETH: +What do you mean? + +MACBETH: +Still it cried 'Sleep no more!' to all the house: +'Glamis hath murder'd sleep, and therefore Cawdor +Shall sleep no more; Macbeth shall sleep no more.' + +LADY MACBETH: +Who was it that thus cried? Why, worthy thane, +You do unbend your noble strength, to think +So brainsickly of things. Go get some water, +And wash this filthy witness from your hand. +Why did you bring these daggers from the place? +They must lie there: go carry them; and smear +The sleepy grooms with blood. + +MACBETH: +I'll go no more: +I am afraid to think what I have done; +Look on't again I dare not. + +LADY MACBETH: +Infirm of purpose! +Give me the daggers: the sleeping and the dead +Are but as pictures: 'tis the eye of childhood +That fears a painted devil. If he do bleed, +I'll gild the faces of the grooms withal; +For it must seem their guilt. + +MACBETH: +Whence is that knocking? +How is't with me, when every noise appals me? +What hands are here? ha! they pluck out mine eyes. +Will all great Neptune's ocean wash this blood +Clean from my hand? No, this my hand will rather +The multitudinous seas in incarnadine, +Making the green one red. + +LADY MACBETH: +My hands are of your colour; but I shame +To wear a heart so white. +I hear a knocking +At the south entry: retire we to our chamber; +A little water clears us of this deed: +How easy is it, then! Your constancy +Hath left you unattended. +Hark! more knocking. +Get on your nightgown, lest occasion call us, +And show us to be watchers. Be not lost +So poorly in your thoughts. + +MACBETH: +To know my deed, 'twere best not know myself. +Wake Duncan with thy knocking! I would thou couldst! + +Porter: +Here's a knocking indeed! If a +man were porter of hell-gate, he should have +old turning the key. +Knock, +knock, knock! Who's there, i' the name of +Beelzebub? Here's a farmer, that hanged +himself on the expectation of plenty: come in +time; have napkins enow about you; here +you'll sweat for't. +Knock, +knock! Who's there, in the other devil's +name? Faith, here's an equivocator, that could +swear in both the scales against either scale; +who committed treason enough for God's sake, +yet could not equivocate to heaven: O, come +in, equivocator. +Knock, +knock, knock! Who's there? Faith, here's an +English tailor come hither, for stealing out of +a French hose: come in, tailor; here you may +roast your goose. +Knock, +knock; never at quiet! What are you? But +this place is too cold for hell. I'll devil-porter +it no further: I had thought to have let in +some of all professions that go the primrose +way to the everlasting bonfire. +Anon, anon! I pray you, remember the porter. + +MACDUFF: +Was it so late, friend, ere you went to bed, +That you do lie so late? + +Porter: +'Faith sir, we were carousing till the +second cock: and drink, sir, is a great +provoker of three things. + +MACDUFF: +What three things does drink especially provoke? + +Porter: +Marry, sir, nose-painting, sleep, and +urine. Lechery, sir, it provokes, and unprovokes; +it provokes the desire, but it takes +away the performance: therefore, much drink +may be said to be an equivocator with lechery: +it makes him, and it mars him; it sets +him on, and it takes him off; it persuades him, +and disheartens him; makes him stand to, and +not stand to; in conclusion, equivocates him +in a sleep, and, giving him the lie, leaves him. + +MACDUFF: +I believe drink gave thee the lie last night. + +Porter: +That it did, sir, i' the very throat on +me: but I requited him for his lie; and, I +think, being too strong for him, though he took +up my legs sometime, yet I made a shift to cast +him. + +MACDUFF: +Is thy master stirring? +Our knocking has awaked him; here he comes. + +LENNOX: +Good morrow, noble sir. + +MACBETH: +Good morrow, both. + +MACDUFF: +Is the king stirring, worthy thane? + +MACBETH: +Not yet. + +MACDUFF: +He did command me to call timely on him: +I have almost slipp'd the hour. + +MACBETH: +I'll bring you to him. + +MACDUFF: +I know this is a joyful trouble to you; +But yet 'tis one. + +MACBETH: +The labour we delight in physics pain. +This is the door. + +MACDUFF: +I'll make so bold to call, +For 'tis my limited service. + +LENNOX: +Goes the king hence to-day? + +MACBETH: +He does: he did appoint so. + +LENNOX: +The night has been unruly: where we lay, +Our chimneys were blown down; and, as they say, +Lamentings heard i' the air; strange screams of death, +And prophesying with accents terrible +Of dire combustion and confused events +New hatch'd to the woeful time: the obscure bird +Clamour'd the livelong night: some say, the earth +Was feverous and did shake. + +MACBETH: +'Twas a rough night. + +LENNOX: +My young remembrance cannot parallel +A fellow to it. + +MACDUFF: +O horror, horror, horror! Tongue nor heart +Cannot conceive nor name thee! + +MACBETH: +What's the matter. + +MACDUFF: +Confusion now hath made his masterpiece! +Most sacrilegious murder hath broke ope +The Lord's anointed temple, and stole thence +The life o' the building! + +MACBETH: +What is 't you say? the life? + +LENNOX: +Mean you his majesty? + +MACDUFF: +Approach the chamber, and destroy your sight +With a new Gorgon: do not bid me speak; +See, and then speak yourselves. +Awake, awake! +Ring the alarum-bell. Murder and treason! +Banquo and Donalbain! Malcolm! awake! +Shake off this downy sleep, death's counterfeit, +And look on death itself! up, up, and see +The great doom's image! Malcolm! Banquo! +As from your graves rise up, and walk like sprites, +To countenance this horror! Ring the bell. + +LADY MACBETH: +What's the business, +That such a hideous trumpet calls to parley +The sleepers of the house? speak, speak! + +MACDUFF: +O gentle lady, +'Tis not for you to hear what I can speak: +The repetition, in a woman's ear, +Would murder as it fell. +O Banquo, Banquo, +Our royal master 's murder'd! + +LADY MACBETH: +Woe, alas! +What, in our house? + +BANQUO: +Too cruel any where. +Dear Duff, I prithee, contradict thyself, +And say it is not so. + +MACBETH: +Had I but died an hour before this chance, +I had lived a blessed time; for, from this instant, +There 's nothing serious in mortality: +All is but toys: renown and grace is dead; +The wine of life is drawn, and the mere lees +Is left this vault to brag of. + +DONALBAIN: +What is amiss? + +MACBETH: +You are, and do not know't: +The spring, the head, the fountain of your blood +Is stopp'd; the very source of it is stopp'd. + +MACDUFF: +Your royal father 's murder'd. + +MALCOLM: +O, by whom? + +LENNOX: +Those of his chamber, as it seem'd, had done 't: +Their hands and faces were an badged with blood; +So were their daggers, which unwiped we found +Upon their pillows: +They stared, and were distracted; no man's life +Was to be trusted with them. + +MACBETH: +O, yet I do repent me of my fury, +That I did kill them. + +MACDUFF: +Wherefore did you so? + +MACBETH: +Who can be wise, amazed, temperate and furious, +Loyal and neutral, in a moment? No man: +The expedition my violent love +Outrun the pauser, reason. Here lay Duncan, +His silver skin laced with his golden blood; +And his gash'd stabs look'd like a breach in nature +For ruin's wasteful entrance: there, the murderers, +Steep'd in the colours of their trade, their daggers +Unmannerly breech'd with gore: who could refrain, +That had a heart to love, and in that heart +Courage to make 's love known? + +LADY MACBETH: +Help me hence, ho! + +MACDUFF: +Look to the lady. + +MALCOLM: + +DONALBAIN: + +MALCOLM: + +BANQUO: +Look to the lady: +And when we have our naked frailties hid, +That suffer in exposure, let us meet, +And question this most bloody piece of work, +To know it further. Fears and scruples shake us: +In the great hand of God I stand; and thence +Against the undivulged pretence I fight +Of treasonous malice. + +MACDUFF: +And so do I. + +ALL: +So all. + +MACBETH: +Let's briefly put on manly readiness, +And meet i' the hall together. + +ALL: +Well contented. + +MALCOLM: +What will you do? Let's not consort with them: +To show an unfelt sorrow is an office +Which the false man does easy. I'll to England. + +DONALBAIN: +To Ireland, I; our separated fortune +Shall keep us both the safer: where we are, +There's daggers in men's smiles: the near in blood, +The nearer bloody. + +MALCOLM: +This murderous shaft that's shot +Hath not yet lighted, and our safest way +Is to avoid the aim. Therefore, to horse; +And let us not be dainty of leave-taking, +But shift away: there's warrant in that theft +Which steals itself, when there's no mercy left. + +Old Man: +Threescore and ten I can remember well: +Within the volume of which time I have seen +Hours dreadful and things strange; but this sore night +Hath trifled former knowings. + +ROSS: +Ah, good father, +Thou seest, the heavens, as troubled with man's act, +Threaten his bloody stage: by the clock, 'tis day, +And yet dark night strangles the travelling lamp: +Is't night's predominance, or the day's shame, +That darkness does the face of earth entomb, +When living light should kiss it? + +Old Man: +'Tis unnatural, +Even like the deed that's done. On Tuesday last, +A falcon, towering in her pride of place, +Was by a mousing owl hawk'd at and kill'd. + +ROSS: +And Duncan's horses--a thing most strange and certain-- +Beauteous and swift, the minions of their race, +Turn'd wild in nature, broke their stalls, flung out, +Contending 'gainst obedience, as they would make +War with mankind. + +Old Man: +'Tis said they eat each other. + +ROSS: +They did so, to the amazement of mine eyes +That look'd upon't. Here comes the good Macduff. +How goes the world, sir, now? + +MACDUFF: +Why, see you not? + +ROSS: +Is't known who did this more than bloody deed? + +MACDUFF: +Those that Macbeth hath slain. + +ROSS: +Alas, the day! +What good could they pretend? + +MACDUFF: +They were suborn'd: +Malcolm and Donalbain, the king's two sons, +Are stol'n away and fled; which puts upon them +Suspicion of the deed. + +ROSS: +'Gainst nature still! +Thriftless ambition, that wilt ravin up +Thine own life's means! Then 'tis most like +The sovereignty will fall upon Macbeth. + +MACDUFF: +He is already named, and gone to Scone +To be invested. + +ROSS: +Where is Duncan's body? + +MACDUFF: +Carried to Colmekill, +The sacred storehouse of his predecessors, +And guardian of their bones. + +ROSS: +Will you to Scone? + +MACDUFF: +No, cousin, I'll to Fife. + +ROSS: +Well, I will thither. + +MACDUFF: +Well, may you see things well done there: adieu! +Lest our old robes sit easier than our new! + +ROSS: +Farewell, father. + +Old Man: +God's benison go with you; and with those +That would make good of bad, and friends of foes! + +BANQUO: +Thou hast it now: king, Cawdor, Glamis, all, +As the weird women promised, and, I fear, +Thou play'dst most foully for't: yet it was said +It should not stand in thy posterity, +But that myself should be the root and father +Of many kings. If there come truth from them-- +As upon thee, Macbeth, their speeches shine-- +Why, by the verities on thee made good, +May they not be my oracles as well, +And set me up in hope? But hush! no more. + +MACBETH: +Here's our chief guest. + +LADY MACBETH: +If he had been forgotten, +It had been as a gap in our great feast, +And all-thing unbecoming. + +MACBETH: +To-night we hold a solemn supper sir, +And I'll request your presence. + +BANQUO: +Let your highness +Command upon me; to the which my duties +Are with a most indissoluble tie +For ever knit. + +MACBETH: +Ride you this afternoon? + +BANQUO: +Ay, my good lord. + +MACBETH: +We should have else desired your good advice, +Which still hath been both grave and prosperous, +In this day's council; but we'll take to-morrow. +Is't far you ride? + +BANQUO: +As far, my lord, as will fill up the time +'Twixt this and supper: go not my horse the better, +I must become a borrower of the night +For a dark hour or twain. + +MACBETH: +Fail not our feast. + +BANQUO: +My lord, I will not. + +MACBETH: +We hear, our bloody cousins are bestow'd +In England and in Ireland, not confessing +Their cruel parricide, filling their hearers +With strange invention: but of that to-morrow, +When therewithal we shall have cause of state +Craving us jointly. Hie you to horse: adieu, +Till you return at night. Goes Fleance with you? + +BANQUO: +Ay, my good lord: our time does call upon 's. + +MACBETH: +I wish your horses swift and sure of foot; +And so I do commend you to their backs. Farewell. +Let every man be master of his time +Till seven at night: to make society +The sweeter welcome, we will keep ourself +Till supper-time alone: while then, God be with you! +Sirrah, a word with you: attend those men +Our pleasure? + +ATTENDANT: +They are, my lord, without the palace gate. + +MACBETH: +Bring them before us. +To be thus is nothing; +But to be safely thus.--Our fears in Banquo +Stick deep; and in his royalty of nature +Reigns that which would be fear'd: 'tis much he dares; +And, to that dauntless temper of his mind, +He hath a wisdom that doth guide his valour +To act in safety. There is none but he +Whose being I do fear: and, under him, +My Genius is rebuked; as, it is said, +Mark Antony's was by Caesar. He chid the sisters +When first they put the name of king upon me, +And bade them speak to him: then prophet-like +They hail'd him father to a line of kings: +Upon my head they placed a fruitless crown, +And put a barren sceptre in my gripe, +Thence to be wrench'd with an unlineal hand, +No son of mine succeeding. If 't be so, +For Banquo's issue have I filed my mind; +For them the gracious Duncan have I murder'd; +Put rancours in the vessel of my peace +Only for them; and mine eternal jewel +Given to the common enemy of man, +To make them kings, the seed of Banquo kings! +Rather than so, come fate into the list. +And champion me to the utterance! Who's there! +Now go to the door, and stay there till we call. +Was it not yesterday we spoke together? + +First Murderer: +It was, so please your highness. + +MACBETH: +Well then, now +Have you consider'd of my speeches? Know +That it was he in the times past which held you +So under fortune, which you thought had been +Our innocent self: this I made good to you +In our last conference, pass'd in probation with you, +How you were borne in hand, how cross'd, +the instruments, +Who wrought with them, and all things else that might +To half a soul and to a notion crazed +Say 'Thus did Banquo.' + +First Murderer: +You made it known to us. + +MACBETH: +I did so, and went further, which is now +Our point of second meeting. Do you find +Your patience so predominant in your nature +That you can let this go? Are you so gospell'd +To pray for this good man and for his issue, +Whose heavy hand hath bow'd you to the grave +And beggar'd yours for ever? + +First Murderer: +We are men, my liege. + +MACBETH: +Ay, in the catalogue ye go for men; +As hounds and greyhounds, mongrels, spaniels, curs, +Shoughs, water-rugs and demi-wolves, are clept +All by the name of dogs: the valued file +Distinguishes the swift, the slow, the subtle, +The housekeeper, the hunter, every one +According to the gift which bounteous nature +Hath in him closed; whereby he does receive +Particular addition. from the bill +That writes them all alike: and so of men. +Now, if you have a station in the file, +Not i' the worst rank of manhood, say 't; +And I will put that business in your bosoms, +Whose execution takes your enemy off, +Grapples you to the heart and love of us, +Who wear our health but sickly in his life, +Which in his death were perfect. + +Second Murderer: +I am one, my liege, +Whom the vile blows and buffets of the world +Have so incensed that I am reckless what +I do to spite the world. + +First Murderer: +And I another +So weary with disasters, tugg'd with fortune, +That I would set my lie on any chance, +To mend it, or be rid on't. + +MACBETH: +Both of you +Know Banquo was your enemy. + +Both Murderers: +True, my lord. + +MACBETH: +So is he mine; and in such bloody distance, +That every minute of his being thrusts +Against my near'st of life: and though I could +With barefaced power sweep him from my sight +And bid my will avouch it, yet I must not, +For certain friends that are both his and mine, +Whose loves I may not drop, but wail his fall +Who I myself struck down; and thence it is, +That I to your assistance do make love, +Masking the business from the common eye +For sundry weighty reasons. + +Second Murderer: +We shall, my lord, +Perform what you command us. + +First Murderer: +Though our lives-- + +MACBETH: +Your spirits shine through you. Within this hour at most +I will advise you where to plant yourselves; +Acquaint you with the perfect spy o' the time, +The moment on't; for't must be done to-night, +And something from the palace; always thought +That I require a clearness: and with him-- +To leave no rubs nor botches in the work-- +Fleance his son, that keeps him company, +Whose absence is no less material to me +Than is his father's, must embrace the fate +Of that dark hour. Resolve yourselves apart: +I'll come to you anon. + +Both Murderers: +We are resolved, my lord. + +MACBETH: +I'll call upon you straight: abide within. +It is concluded. Banquo, thy soul's flight, +If it find heaven, must find it out to-night. + +LADY MACBETH: +Is Banquo gone from court? + +Servant: +Ay, madam, but returns again to-night. + +LADY MACBETH: +Say to the king, I would attend his leisure +For a few words. + +Servant: +Madam, I will. + +LADY MACBETH: +Nought's had, all's spent, +Where our desire is got without content: +'Tis safer to be that which we destroy +Than by destruction dwell in doubtful joy. +How now, my lord! why do you keep alone, +Of sorriest fancies your companions making, +Using those thoughts which should indeed have died +With them they think on? Things without all remedy +Should be without regard: what's done is done. + +MACBETH: +We have scotch'd the snake, not kill'd it: +She'll close and be herself, whilst our poor malice +Remains in danger of her former tooth. +But let the frame of things disjoint, both the +worlds suffer, +Ere we will eat our meal in fear and sleep +In the affliction of these terrible dreams +That shake us nightly: better be with the dead, +Whom we, to gain our peace, have sent to peace, +Than on the torture of the mind to lie +In restless ecstasy. Duncan is in his grave; +After life's fitful fever he sleeps well; +Treason has done his worst: nor steel, nor poison, +Malice domestic, foreign levy, nothing, +Can touch him further. + +LADY MACBETH: +Come on; +Gentle my lord, sleek o'er your rugged looks; +Be bright and jovial among your guests to-night. + +MACBETH: +So shall I, love; and so, I pray, be you: +Let your remembrance apply to Banquo; +Present him eminence, both with eye and tongue: +Unsafe the while, that we +Must lave our honours in these flattering streams, +And make our faces vizards to our hearts, +Disguising what they are. + +LADY MACBETH: +You must leave this. + +MACBETH: +O, full of scorpions is my mind, dear wife! +Thou know'st that Banquo, and his Fleance, lives. + +LADY MACBETH: +But in them nature's copy's not eterne. + +MACBETH: +There's comfort yet; they are assailable; +Then be thou jocund: ere the bat hath flown +His cloister'd flight, ere to black Hecate's summons +The shard-borne beetle with his drowsy hums +Hath rung night's yawning peal, there shall be done +A deed of dreadful note. + +LADY MACBETH: +What's to be done? + +MACBETH: +Be innocent of the knowledge, dearest chuck, +Till thou applaud the deed. Come, seeling night, +Scarf up the tender eye of pitiful day; +And with thy bloody and invisible hand +Cancel and tear to pieces that great bond +Which keeps me pale! Light thickens; and the crow +Makes wing to the rooky wood: +Good things of day begin to droop and drowse; +While night's black agents to their preys do rouse. +Thou marvell'st at my words: but hold thee still; +Things bad begun make strong themselves by ill. +So, prithee, go with me. + +First Murderer: +But who did bid thee join with us? + +Third Murderer: +Macbeth. + +Second Murderer: +He needs not our mistrust, since he delivers +Our offices and what we have to do +To the direction just. + +First Murderer: +Then stand with us. +The west yet glimmers with some streaks of day: +Now spurs the lated traveller apace +To gain the timely inn; and near approaches +The subject of our watch. + +Third Murderer: +Hark! I hear horses. + +BANQUO: + +Second Murderer: +Then 'tis he: the rest +That are within the note of expectation +Already are i' the court. + +First Murderer: +His horses go about. + +Third Murderer: +Almost a mile: but he does usually, +So all men do, from hence to the palace gate +Make it their walk. + +Second Murderer: +A light, a light! + +Third Murderer: +'Tis he. + +First Murderer: +Stand to't. + +BANQUO: +It will be rain to-night. + +First Murderer: +Let it come down. + +BANQUO: +O, treachery! Fly, good Fleance, fly, fly, fly! +Thou mayst revenge. O slave! + +Third Murderer: +Who did strike out the light? + +First Murderer: +Wast not the way? + +Third Murderer: +There's but one down; the son is fled. + +Second Murderer: +We have lost +Best half of our affair. + +First Murderer: +Well, let's away, and say how much is done. + +MACBETH: +You know your own degrees; sit down: at first +And last the hearty welcome. + +Lords: +Thanks to your majesty. + +MACBETH: +Ourself will mingle with society, +And play the humble host. +Our hostess keeps her state, but in best time +We will require her welcome. + +LADY MACBETH: +Pronounce it for me, sir, to all our friends; +For my heart speaks they are welcome. + +MACBETH: +See, they encounter thee with their hearts' thanks. +Both sides are even: here I'll sit i' the midst: +Be large in mirth; anon we'll drink a measure +The table round. +There's blood on thy face. + +First Murderer: +'Tis Banquo's then. + +MACBETH: +'Tis better thee without than he within. +Is he dispatch'd? + +First Murderer: +My lord, his throat is cut; that I did for him. + +MACBETH: +Thou art the best o' the cut-throats: yet he's good +That did the like for Fleance: if thou didst it, +Thou art the nonpareil. + +First Murderer: +Most royal sir, +Fleance is 'scaped. + +MACBETH: +Then comes my fit again: I had else been perfect, +Whole as the marble, founded as the rock, +As broad and general as the casing air: +But now I am cabin'd, cribb'd, confined, bound in +To saucy doubts and fears. But Banquo's safe? + +First Murderer: +Ay, my good lord: safe in a ditch he bides, +With twenty trenched gashes on his head; +The least a death to nature. + +MACBETH: +Thanks for that: +There the grown serpent lies; the worm that's fled +Hath nature that in time will venom breed, +No teeth for the present. Get thee gone: to-morrow +We'll hear, ourselves, again. + +LADY MACBETH: +My royal lord, +You do not give the cheer: the feast is sold +That is not often vouch'd, while 'tis a-making, +'Tis given with welcome: to feed were best at home; +From thence the sauce to meat is ceremony; +Meeting were bare without it. + +MACBETH: +Sweet remembrancer! +Now, good digestion wait on appetite, +And health on both! + +LENNOX: +May't please your highness sit. + +MACBETH: +Here had we now our country's honour roof'd, +Were the graced person of our Banquo present; +Who may I rather challenge for unkindness +Than pity for mischance! + +ROSS: +His absence, sir, +Lays blame upon his promise. Please't your highness +To grace us with your royal company. + +MACBETH: +The table's full. + +LENNOX: +Here is a place reserved, sir. + +MACBETH: +Where? + +LENNOX: +Here, my good lord. What is't that moves your highness? + +MACBETH: +Which of you have done this? + +Lords: +What, my good lord? + +MACBETH: +Thou canst not say I did it: never shake +Thy gory locks at me. + +ROSS: +Gentlemen, rise: his highness is not well. + +LADY MACBETH: +Sit, worthy friends: my lord is often thus, +And hath been from his youth: pray you, keep seat; +The fit is momentary; upon a thought +He will again be well: if much you note him, +You shall offend him and extend his passion: +Feed, and regard him not. Are you a man? + +MACBETH: +Ay, and a bold one, that dare look on that +Which might appal the devil. + +LADY MACBETH: +O proper stuff! +This is the very painting of your fear: +This is the air-drawn dagger which, you said, +Led you to Duncan. O, these flaws and starts, +Impostors to true fear, would well become +A woman's story at a winter's fire, +Authorized by her grandam. Shame itself! +Why do you make such faces? When all's done, +You look but on a stool. + +MACBETH: +Prithee, see there! behold! look! lo! +how say you? +Why, what care I? If thou canst nod, speak too. +If charnel-houses and our graves must send +Those that we bury back, our monuments +Shall be the maws of kites. + +LADY MACBETH: +What, quite unmann'd in folly? + +MACBETH: +If I stand here, I saw him. + +LADY MACBETH: +Fie, for shame! + +MACBETH: +Blood hath been shed ere now, i' the olden time, +Ere human statute purged the gentle weal; +Ay, and since too, murders have been perform'd +Too terrible for the ear: the times have been, +That, when the brains were out, the man would die, +And there an end; but now they rise again, +With twenty mortal murders on their crowns, +And push us from our stools: this is more strange +Than such a murder is. + +LADY MACBETH: +My worthy lord, +Your noble friends do lack you. + +MACBETH: +I do forget. +Do not muse at me, my most worthy friends, +I have a strange infirmity, which is nothing +To those that know me. Come, love and health to all; +Then I'll sit down. Give me some wine; fill full. +I drink to the general joy o' the whole table, +And to our dear friend Banquo, whom we miss; +Would he were here! to all, and him, we thirst, +And all to all. + +Lords: +Our duties, and the pledge. + +MACBETH: +Avaunt! and quit my sight! let the earth hide thee! +Thy bones are marrowless, thy blood is cold; +Thou hast no speculation in those eyes +Which thou dost glare with! + +LADY MACBETH: +Think of this, good peers, +But as a thing of custom: 'tis no other; +Only it spoils the pleasure of the time. + +MACBETH: +What man dare, I dare: +Approach thou like the rugged Russian bear, +The arm'd rhinoceros, or the Hyrcan tiger; +Take any shape but that, and my firm nerves +Shall never tremble: or be alive again, +And dare me to the desert with thy sword; +If trembling I inhabit then, protest me +The baby of a girl. Hence, horrible shadow! +Unreal mockery, hence! +Why, so: being gone, +I am a man again. Pray you, sit still. + +LADY MACBETH: +You have displaced the mirth, broke the good meeting, +With most admired disorder. + +MACBETH: +Can such things be, +And overcome us like a summer's cloud, +Without our special wonder? You make me strange +Even to the disposition that I owe, +When now I think you can behold such sights, +And keep the natural ruby of your cheeks, +When mine is blanched with fear. + +ROSS: +What sights, my lord? + +LADY MACBETH: +I pray you, speak not; he grows worse and worse; +Question enrages him. At once, good night: +Stand not upon the order of your going, +But go at once. + +LENNOX: +Good night; and better health +Attend his majesty! + +LADY MACBETH: +A kind good night to all! + +MACBETH: +It will have blood; they say, blood will have blood: +Stones have been known to move and trees to speak; +Augurs and understood relations have +By magot-pies and choughs and rooks brought forth +The secret'st man of blood. What is the night? + +LADY MACBETH: +Almost at odds with morning, which is which. + +MACBETH: +How say'st thou, that Macduff denies his person +At our great bidding? + +LADY MACBETH: +Did you send to him, sir? + +MACBETH: +I hear it by the way; but I will send: +There's not a one of them but in his house +I keep a servant fee'd. I will to-morrow, +And betimes I will, to the weird sisters: +More shall they speak; for now I am bent to know, +By the worst means, the worst. For mine own good, +All causes shall give way: I am in blood +Stepp'd in so far that, should I wade no more, +Returning were as tedious as go o'er: +Strange things I have in head, that will to hand; +Which must be acted ere they may be scann'd. + +LADY MACBETH: +You lack the season of all natures, sleep. + +MACBETH: +Come, we'll to sleep. My strange and self-abuse +Is the initiate fear that wants hard use: +We are yet but young in deed. + +First Witch: +Why, how now, Hecate! you look angerly. + +HECATE: +Have I not reason, beldams as you are, +Saucy and overbold? How did you dare +To trade and traffic with Macbeth +In riddles and affairs of death; +And I, the mistress of your charms, +The close contriver of all harms, +Was never call'd to bear my part, +Or show the glory of our art? +And, which is worse, all you have done +Hath been but for a wayward son, +Spiteful and wrathful, who, as others do, +Loves for his own ends, not for you. +But make amends now: get you gone, +And at the pit of Acheron +Meet me i' the morning: thither he +Will come to know his destiny: +Your vessels and your spells provide, +Your charms and every thing beside. +I am for the air; this night I'll spend +Unto a dismal and a fatal end: +Great business must be wrought ere noon: +Upon the corner of the moon +There hangs a vaporous drop profound; +I'll catch it ere it come to ground: +And that distill'd by magic sleights +Shall raise such artificial sprites +As by the strength of their illusion +Shall draw him on to his confusion: +He shall spurn fate, scorn death, and bear +He hopes 'bove wisdom, grace and fear: +And you all know, security +Is mortals' chiefest enemy. +Hark! I am call'd; my little spirit, see, +Sits in a foggy cloud, and stays for me. + +First Witch: +Come, let's make haste; she'll soon be back again. + +LENNOX: +My former speeches have but hit your thoughts, +Which can interpret further: only, I say, +Things have been strangely borne. The +gracious Duncan +Was pitied of Macbeth: marry, he was dead: +And the right-valiant Banquo walk'd too late; +Whom, you may say, if't please you, Fleance kill'd, +For Fleance fled: men must not walk too late. +Who cannot want the thought how monstrous +It was for Malcolm and for Donalbain +To kill their gracious father? damned fact! +How it did grieve Macbeth! did he not straight +In pious rage the two delinquents tear, +That were the slaves of drink and thralls of sleep? +Was not that nobly done? Ay, and wisely too; +For 'twould have anger'd any heart alive +To hear the men deny't. So that, I say, +He has borne all things well: and I do think +That had he Duncan's sons under his key-- +As, an't please heaven, he shall not--they +should find +What 'twere to kill a father; so should Fleance. +But, peace! for from broad words and 'cause he fail'd +His presence at the tyrant's feast, I hear +Macduff lives in disgrace: sir, can you tell +Where he bestows himself? + +Lord: +The son of Duncan, +From whom this tyrant holds the due of birth +Lives in the English court, and is received +Of the most pious Edward with such grace +That the malevolence of fortune nothing +Takes from his high respect: thither Macduff +Is gone to pray the holy king, upon his aid +To wake Northumberland and warlike Siward: +That, by the help of these--with Him above +To ratify the work--we may again +Give to our tables meat, sleep to our nights, +Free from our feasts and banquets bloody knives, +Do faithful homage and receive free honours: +All which we pine for now: and this report +Hath so exasperate the king that he +Prepares for some attempt of war. + +LENNOX: +Sent he to Macduff? + +Lord: +He did: and with an absolute 'Sir, not I,' +The cloudy messenger turns me his back, +And hums, as who should say 'You'll rue the time +That clogs me with this answer.' + +LENNOX: +And that well might +Advise him to a caution, to hold what distance +His wisdom can provide. Some holy angel +Fly to the court of England and unfold +His message ere he come, that a swift blessing +May soon return to this our suffering country +Under a hand accursed! + +Lord: +I'll send my prayers with him. + +First Witch: +Thrice the brinded cat hath mew'd. + +Second Witch: +Thrice and once the hedge-pig whined. + +Third Witch: +Harpier cries 'Tis time, 'tis time. + +First Witch: +Round about the cauldron go; +In the poison'd entrails throw. +Toad, that under cold stone +Days and nights has thirty-one +Swelter'd venom sleeping got, +Boil thou first i' the charmed pot. + +ALL: +Double, double toil and trouble; +Fire burn, and cauldron bubble. + +Second Witch: +Fillet of a fenny snake, +In the cauldron boil and bake; +Eye of newt and toe of frog, +Wool of bat and tongue of dog, +Adder's fork and blind-worm's sting, +Lizard's leg and owlet's wing, +For a charm of powerful trouble, +Like a hell-broth boil and bubble. + +ALL: +Double, double toil and trouble; +Fire burn and cauldron bubble. + +Third Witch: +Scale of dragon, tooth of wolf, +Witches' mummy, maw and gulf +Of the ravin'd salt-sea shark, +Root of hemlock digg'd i' the dark, +Liver of blaspheming Jew, +Gall of goat, and slips of yew +Silver'd in the moon's eclipse, +Nose of Turk and Tartar's lips, +Finger of birth-strangled babe +Ditch-deliver'd by a drab, +Make the gruel thick and slab: +Add thereto a tiger's chaudron, +For the ingredients of our cauldron. + +ALL: +Double, double toil and trouble; +Fire burn and cauldron bubble. + +Second Witch: +Cool it with a baboon's blood, +Then the charm is firm and good. + +HECATE: +O well done! I commend your pains; +And every one shall share i' the gains; +And now about the cauldron sing, +Live elves and fairies in a ring, +Enchanting all that you put in. + +Second Witch: +By the pricking of my thumbs, +Something wicked this way comes. +Open, locks, +Whoever knocks! + +MACBETH: +How now, you secret, black, and midnight hags! +What is't you do? + +ALL: +A deed without a name. + +MACBETH: +I conjure you, by that which you profess, +Howe'er you come to know it, answer me: +Though you untie the winds and let them fight +Against the churches; though the yesty waves +Confound and swallow navigation up; +Though bladed corn be lodged and trees blown down; +Though castles topple on their warders' heads; +Though palaces and pyramids do slope +Their heads to their foundations; though the treasure +Of nature's germens tumble all together, +Even till destruction sicken; answer me +To what I ask you. + +First Witch: +Speak. + +Second Witch: +Demand. + +Third Witch: +We'll answer. + +First Witch: +Say, if thou'dst rather hear it from our mouths, +Or from our masters? + +MACBETH: +Call 'em; let me see 'em. + +First Witch: +Pour in sow's blood, that hath eaten +Her nine farrow; grease that's sweaten +From the murderer's gibbet throw +Into the flame. + +ALL: +Come, high or low; +Thyself and office deftly show! + +MACBETH: +Tell me, thou unknown power,-- + +First Witch: +He knows thy thought: +Hear his speech, but say thou nought. + +First Apparition: +Macbeth! Macbeth! Macbeth! beware Macduff; +Beware the thane of Fife. Dismiss me. Enough. + +MACBETH: +Whate'er thou art, for thy good caution, thanks; +Thou hast harp'd my fear aright: but one +word more,-- + +First Witch: +He will not be commanded: here's another, +More potent than the first. + +Second Apparition: +Macbeth! Macbeth! Macbeth! + +MACBETH: +Had I three ears, I'ld hear thee. + +Second Apparition: +Be bloody, bold, and resolute; laugh to scorn +The power of man, for none of woman born +Shall harm Macbeth. + +MACBETH: +Then live, Macduff: what need I fear of thee? +But yet I'll make assurance double sure, +And take a bond of fate: thou shalt not live; +That I may tell pale-hearted fear it lies, +And sleep in spite of thunder. +What is this +That rises like the issue of a king, +And wears upon his baby-brow the round +And top of sovereignty? + +ALL: +Listen, but speak not to't. + +Third Apparition: +Be lion-mettled, proud; and take no care +Who chafes, who frets, or where conspirers are: +Macbeth shall never vanquish'd be until +Great Birnam wood to high Dunsinane hill +Shall come against him. + +MACBETH: +That will never be +Who can impress the forest, bid the tree +Unfix his earth-bound root? Sweet bodements! good! +Rebellion's head, rise never till the wood +Of Birnam rise, and our high-placed Macbeth +Shall live the lease of nature, pay his breath +To time and mortal custom. Yet my heart +Throbs to know one thing: tell me, if your art +Can tell so much: shall Banquo's issue ever +Reign in this kingdom? + +ALL: +Seek to know no more. + +MACBETH: +I will be satisfied: deny me this, +And an eternal curse fall on you! Let me know. +Why sinks that cauldron? and what noise is this? + +First Witch: +Show! + +Second Witch: +Show! + +Third Witch: +Show! + +ALL: +Show his eyes, and grieve his heart; +Come like shadows, so depart! + +MACBETH: +Thou art too like the spirit of Banquo: down! +Thy crown does sear mine eye-balls. And thy hair, +Thou other gold-bound brow, is like the first. +A third is like the former. Filthy hags! +Why do you show me this? A fourth! Start, eyes! +What, will the line stretch out to the crack of doom? +Another yet! A seventh! I'll see no more: +And yet the eighth appears, who bears a glass +Which shows me many more; and some I see +That two-fold balls and treble scepters carry: +Horrible sight! Now, I see, 'tis true; +For the blood-bolter'd Banquo smiles upon me, +And points at them for his. +What, is this so? + +First Witch: +Ay, sir, all this is so: but why +Stands Macbeth thus amazedly? +Come, sisters, cheer we up his sprites, +And show the best of our delights: +I'll charm the air to give a sound, +While you perform your antic round: +That this great king may kindly say, +Our duties did his welcome pay. + +MACBETH: +Where are they? Gone? Let this pernicious hour +Stand aye accursed in the calendar! +Come in, without there! + +LENNOX: +What's your grace's will? + +MACBETH: +Saw you the weird sisters? + +LENNOX: +No, my lord. + +MACBETH: +Came they not by you? + +LENNOX: +No, indeed, my lord. + +MACBETH: +Infected be the air whereon they ride; +And damn'd all those that trust them! I did hear +The galloping of horse: who was't came by? + +LENNOX: +'Tis two or three, my lord, that bring you word +Macduff is fled to England. + +MACBETH: +Fled to England! + +LENNOX: +Ay, my good lord. + +MACBETH: +Time, thou anticipatest my dread exploits: +The flighty purpose never is o'ertook +Unless the deed go with it; from this moment +The very firstlings of my heart shall be +The firstlings of my hand. And even now, +To crown my thoughts with acts, be it thought and done: +The castle of Macduff I will surprise; +Seize upon Fife; give to the edge o' the sword +His wife, his babes, and all unfortunate souls +That trace him in his line. No boasting like a fool; +This deed I'll do before this purpose cool. +But no more sights!--Where are these gentlemen? +Come, bring me where they are. + +LADY MACDUFF: +What had he done, to make him fly the land? + +ROSS: +You must have patience, madam. + +LADY MACDUFF: +He had none: +His flight was madness: when our actions do not, +Our fears do make us traitors. + +ROSS: +You know not +Whether it was his wisdom or his fear. + +LADY MACDUFF: +Wisdom! to leave his wife, to leave his babes, +His mansion and his titles in a place +From whence himself does fly? He loves us not; +He wants the natural touch: for the poor wren, +The most diminutive of birds, will fight, +Her young ones in her nest, against the owl. +All is the fear and nothing is the love; +As little is the wisdom, where the flight +So runs against all reason. + +ROSS: +My dearest coz, +I pray you, school yourself: but for your husband, +He is noble, wise, judicious, and best knows +The fits o' the season. I dare not speak +much further; +But cruel are the times, when we are traitors +And do not know ourselves, when we hold rumour +From what we fear, yet know not what we fear, +But float upon a wild and violent sea +Each way and move. I take my leave of you: +Shall not be long but I'll be here again: +Things at the worst will cease, or else climb upward +To what they were before. My pretty cousin, +Blessing upon you! + +LADY MACDUFF: +Father'd he is, and yet he's fatherless. + +ROSS: +I am so much a fool, should I stay longer, +It would be my disgrace and your discomfort: +I take my leave at once. + +LADY MACDUFF: +Sirrah, your father's dead; +And what will you do now? How will you live? + +Son: +As birds do, mother. + +LADY MACDUFF: +What, with worms and flies? + +Son: +With what I get, I mean; and so do they. + +LADY MACDUFF: +Poor bird! thou'ldst never fear the net nor lime, +The pitfall nor the gin. + +Son: +Why should I, mother? Poor birds they are not set for. +My father is not dead, for all your saying. + +LADY MACDUFF: +Yes, he is dead; how wilt thou do for a father? + +Son: +Nay, how will you do for a husband? + +LADY MACDUFF: +Why, I can buy me twenty at any market. + +Son: +Then you'll buy 'em to sell again. + +LADY MACDUFF: +Thou speak'st with all thy wit: and yet, i' faith, +With wit enough for thee. + +Son: +Was my father a traitor, mother? + +LADY MACDUFF: +Ay, that he was. + +Son: +What is a traitor? + +LADY MACDUFF: +Why, one that swears and lies. + +Son: +And be all traitors that do so? + +LADY MACDUFF: +Every one that does so is a traitor, and must be hanged. + +Son: +And must they all be hanged that swear and lie? + +LADY MACDUFF: +Every one. + +Son: +Who must hang them? + +LADY MACDUFF: +Why, the honest men. + +Son: +Then the liars and swearers are fools, +for there are liars and swearers enow to beat +the honest men and hang up them. + +LADY MACDUFF: +Now, God help thee, poor monkey! +But how wilt thou do for a father? + +Son: +If he were dead, you'ld weep for +him: if you would not, it were a good sign +that I should quickly have a new father. + +LADY MACDUFF: +Poor prattler, how thou talk'st! + +Messenger: +Bless you, fair dame! I am not to you known, +Though in your state of honour I am perfect. +I doubt some danger does approach you nearly: +If you will take a homely man's advice, +Be not found here; hence, with your little ones. +To fright you thus, methinks, I am too savage; +To do worse to you were fell cruelty, +Which is too nigh your person. Heaven preserve you! +I dare abide no longer. + +LADY MACDUFF: +Whither should I fly? +I have done no harm. But I remember now +I am in this earthly world; where to do harm +Is often laudable, to do good sometime +Accounted dangerous folly: why then, alas, +Do I put up that womanly defence, +To say I have done no harm? +What are these faces? + +First Murderer: +Where is your husband? + +LADY MACDUFF: +I hope, in no place so unsanctified +Where such as thou mayst find him. + +First Murderer: +He's a traitor. + +Son: +Thou liest, thou shag-hair'd villain! + +First Murderer: +What, you egg! +Young fry of treachery! + +Son: +He has kill'd me, mother: +Run away, I pray you! + +MALCOLM: +Let us seek out some desolate shade, and there +Weep our sad bosoms empty. + +MACDUFF: +Let us rather +Hold fast the mortal sword, and like good men +Bestride our down-fall'n birthdom: each new morn +New widows howl, new orphans cry, new sorrows +Strike heaven on the face, that it resounds +As if it felt with Scotland and yell'd out +Like syllable of dolour. + +MALCOLM: +What I believe I'll wail, +What know believe, and what I can redress, +As I shall find the time to friend, I will. +What you have spoke, it may be so perchance. +This tyrant, whose sole name blisters our tongues, +Was once thought honest: you have loved him well. +He hath not touch'd you yet. I am young; +but something +You may deserve of him through me, and wisdom +To offer up a weak poor innocent lamb +To appease an angry god. + +MACDUFF: +I am not treacherous. + +MALCOLM: +But Macbeth is. +A good and virtuous nature may recoil +In an imperial charge. But I shall crave +your pardon; +That which you are my thoughts cannot transpose: +Angels are bright still, though the brightest fell; +Though all things foul would wear the brows of grace, +Yet grace must still look so. + +MACDUFF: +I have lost my hopes. + +MALCOLM: +Perchance even there where I did find my doubts. +Why in that rawness left you wife and child, +Those precious motives, those strong knots of love, +Without leave-taking? I pray you, +Let not my jealousies be your dishonours, +But mine own safeties. You may be rightly just, +Whatever I shall think. + +MACDUFF: +Bleed, bleed, poor country! +Great tyranny! lay thou thy basis sure, +For goodness dare not cheque thee: wear thou +thy wrongs; +The title is affeer'd! Fare thee well, lord: +I would not be the villain that thou think'st +For the whole space that's in the tyrant's grasp, +And the rich East to boot. + +MALCOLM: +Be not offended: +I speak not as in absolute fear of you. +I think our country sinks beneath the yoke; +It weeps, it bleeds; and each new day a gash +Is added to her wounds: I think withal +There would be hands uplifted in my right; +And here from gracious England have I offer +Of goodly thousands: but, for all this, +When I shall tread upon the tyrant's head, +Or wear it on my sword, yet my poor country +Shall have more vices than it had before, +More suffer and more sundry ways than ever, +By him that shall succeed. + +MACDUFF: +What should he be? + +MALCOLM: +It is myself I mean: in whom I know +All the particulars of vice so grafted +That, when they shall be open'd, black Macbeth +Will seem as pure as snow, and the poor state +Esteem him as a lamb, being compared +With my confineless harms. + +MACDUFF: +Not in the legions +Of horrid hell can come a devil more damn'd +In evils to top Macbeth. + +MALCOLM: +I grant him bloody, +Luxurious, avaricious, false, deceitful, +Sudden, malicious, smacking of every sin +That has a name: but there's no bottom, none, +In my voluptuousness: your wives, your daughters, +Your matrons and your maids, could not fill up +The cistern of my lust, and my desire +All continent impediments would o'erbear +That did oppose my will: better Macbeth +Than such an one to reign. + +MACDUFF: +Boundless intemperance +In nature is a tyranny; it hath been +The untimely emptying of the happy throne +And fall of many kings. But fear not yet +To take upon you what is yours: you may +Convey your pleasures in a spacious plenty, +And yet seem cold, the time you may so hoodwink. +We have willing dames enough: there cannot be +That vulture in you, to devour so many +As will to greatness dedicate themselves, +Finding it so inclined. + +MALCOLM: +With this there grows +In my most ill-composed affection such +A stanchless avarice that, were I king, +I should cut off the nobles for their lands, +Desire his jewels and this other's house: +And my more-having would be as a sauce +To make me hunger more; that I should forge +Quarrels unjust against the good and loyal, +Destroying them for wealth. + +MACDUFF: +This avarice +Sticks deeper, grows with more pernicious root +Than summer-seeming lust, and it hath been +The sword of our slain kings: yet do not fear; +Scotland hath foisons to fill up your will. +Of your mere own: all these are portable, +With other graces weigh'd. + +MALCOLM: +But I have none: the king-becoming graces, +As justice, verity, temperance, stableness, +Bounty, perseverance, mercy, lowliness, +Devotion, patience, courage, fortitude, +I have no relish of them, but abound +In the division of each several crime, +Acting it many ways. Nay, had I power, I should +Pour the sweet milk of concord into hell, +Uproar the universal peace, confound +All unity on earth. + +MACDUFF: +O Scotland, Scotland! + +MALCOLM: +If such a one be fit to govern, speak: +I am as I have spoken. + +MACDUFF: +Fit to govern! +No, not to live. O nation miserable, +With an untitled tyrant bloody-scepter'd, +When shalt thou see thy wholesome days again, +Since that the truest issue of thy throne +By his own interdiction stands accursed, +And does blaspheme his breed? Thy royal father +Was a most sainted king: the queen that bore thee, +Oftener upon her knees than on her feet, +Died every day she lived. Fare thee well! +These evils thou repeat'st upon thyself +Have banish'd me from Scotland. O my breast, +Thy hope ends here! + +MALCOLM: +Macduff, this noble passion, +Child of integrity, hath from my soul +Wiped the black scruples, reconciled my thoughts +To thy good truth and honour. Devilish Macbeth +By many of these trains hath sought to win me +Into his power, and modest wisdom plucks me +From over-credulous haste: but God above +Deal between thee and me! for even now +I put myself to thy direction, and +Unspeak mine own detraction, here abjure +The taints and blames I laid upon myself, +For strangers to my nature. I am yet +Unknown to woman, never was forsworn, +Scarcely have coveted what was mine own, +At no time broke my faith, would not betray +The devil to his fellow and delight +No less in truth than life: my first false speaking +Was this upon myself: what I am truly, +Is thine and my poor country's to command: +Whither indeed, before thy here-approach, +Old Siward, with ten thousand warlike men, +Already at a point, was setting forth. +Now we'll together; and the chance of goodness +Be like our warranted quarrel! Why are you silent? + +MACDUFF: +Such welcome and unwelcome things at once +'Tis hard to reconcile. + +MALCOLM: +Well; more anon.--Comes the king forth, I pray you? + +Doctor: +Ay, sir; there are a crew of wretched souls +That stay his cure: their malady convinces +The great assay of art; but at his touch-- +Such sanctity hath heaven given his hand-- +They presently amend. + +MALCOLM: +I thank you, doctor. + +MACDUFF: +What's the disease he means? + +MALCOLM: +'Tis call'd the evil: +A most miraculous work in this good king; +Which often, since my here-remain in England, +I have seen him do. How he solicits heaven, +Himself best knows: but strangely-visited people, +All swoln and ulcerous, pitiful to the eye, +The mere despair of surgery, he cures, +Hanging a golden stamp about their necks, +Put on with holy prayers: and 'tis spoken, +To the succeeding royalty he leaves +The healing benediction. With this strange virtue, +He hath a heavenly gift of prophecy, +And sundry blessings hang about his throne, +That speak him full of grace. + +MACDUFF: +See, who comes here? + +MALCOLM: +My countryman; but yet I know him not. + +MACDUFF: +My ever-gentle cousin, welcome hither. + +MALCOLM: +I know him now. Good God, betimes remove +The means that makes us strangers! + +ROSS: +Sir, amen. + +MACDUFF: +Stands Scotland where it did? + +ROSS: +Alas, poor country! +Almost afraid to know itself. It cannot +Be call'd our mother, but our grave; where nothing, +But who knows nothing, is once seen to smile; +Where sighs and groans and shrieks that rend the air +Are made, not mark'd; where violent sorrow seems +A modern ecstasy; the dead man's knell +Is there scarce ask'd for who; and good men's lives +Expire before the flowers in their caps, +Dying or ere they sicken. + +MACDUFF: +O, relation +Too nice, and yet too true! + +MALCOLM: +What's the newest grief? + +ROSS: +That of an hour's age doth hiss the speaker: +Each minute teems a new one. + +MACDUFF: +How does my wife? + +ROSS: +Why, well. + +MACDUFF: +And all my children? + +ROSS: +Well too. + +MACDUFF: +The tyrant has not batter'd at their peace? + +ROSS: +No; they were well at peace when I did leave 'em. + +MACDUFF: +But not a niggard of your speech: how goes't? + +ROSS: +When I came hither to transport the tidings, +Which I have heavily borne, there ran a rumour +Of many worthy fellows that were out; +Which was to my belief witness'd the rather, +For that I saw the tyrant's power a-foot: +Now is the time of help; your eye in Scotland +Would create soldiers, make our women fight, +To doff their dire distresses. + +MALCOLM: +Be't their comfort +We are coming thither: gracious England hath +Lent us good Siward and ten thousand men; +An older and a better soldier none +That Christendom gives out. + +ROSS: +Would I could answer +This comfort with the like! But I have words +That would be howl'd out in the desert air, +Where hearing should not latch them. + +MACDUFF: +What concern they? +The general cause? or is it a fee-grief +Due to some single breast? + +ROSS: +No mind that's honest +But in it shares some woe; though the main part +Pertains to you alone. + +MACDUFF: +If it be mine, +Keep it not from me, quickly let me have it. + +ROSS: +Let not your ears despise my tongue for ever, +Which shall possess them with the heaviest sound +That ever yet they heard. + +MACDUFF: +Hum! I guess at it. + +ROSS: +Your castle is surprised; your wife and babes +Savagely slaughter'd: to relate the manner, +Were, on the quarry of these murder'd deer, +To add the death of you. + +MALCOLM: +Merciful heaven! +What, man! ne'er pull your hat upon your brows; +Give sorrow words: the grief that does not speak +Whispers the o'er-fraught heart and bids it break. + +MACDUFF: +My children too? + +ROSS: +Wife, children, servants, all +That could be found. + +MACDUFF: +And I must be from thence! +My wife kill'd too? + +ROSS: +I have said. + +MALCOLM: +Be comforted: +Let's make us medicines of our great revenge, +To cure this deadly grief. + +MACDUFF: +He has no children. All my pretty ones? +Did you say all? O hell-kite! All? +What, all my pretty chickens and their dam +At one fell swoop? + +MALCOLM: +Dispute it like a man. + +MACDUFF: +I shall do so; +But I must also feel it as a man: +I cannot but remember such things were, +That were most precious to me. Did heaven look on, +And would not take their part? Sinful Macduff, +They were all struck for thee! naught that I am, +Not for their own demerits, but for mine, +Fell slaughter on their souls. Heaven rest them now! + +MALCOLM: +Be this the whetstone of your sword: let grief +Convert to anger; blunt not the heart, enrage it. + +MACDUFF: +O, I could play the woman with mine eyes +And braggart with my tongue! But, gentle heavens, +Cut short all intermission; front to front +Bring thou this fiend of Scotland and myself; +Within my sword's length set him; if he 'scape, +Heaven forgive him too! + +MALCOLM: +This tune goes manly. +Come, go we to the king; our power is ready; +Our lack is nothing but our leave; Macbeth +Is ripe for shaking, and the powers above +Put on their instruments. Receive what cheer you may: +The night is long that never finds the day. + +Doctor: +I have two nights watched with you, but can perceive +no truth in your report. When was it she last walked? + +Gentlewoman: +Since his majesty went into the field, I have seen +her rise from her bed, throw her night-gown upon +her, unlock her closet, take forth paper, fold it, +write upon't, read it, afterwards seal it, and again +return to bed; yet all this while in a most fast sleep. + +Doctor: +A great perturbation in nature, to receive at once +the benefit of sleep, and do the effects of +watching! In this slumbery agitation, besides her +walking and other actual performances, what, at any +time, have you heard her say? + +Gentlewoman: +That, sir, which I will not report after her. + +Doctor: +You may to me: and 'tis most meet you should. + +Gentlewoman: +Neither to you nor any one; having no witness to +confirm my speech. +Lo you, here she comes! This is her very guise; +and, upon my life, fast asleep. Observe her; stand close. + +Doctor: +How came she by that light? + +Gentlewoman: +Why, it stood by her: she has light by her +continually; 'tis her command. + +Doctor: +You see, her eyes are open. + +Gentlewoman: +Ay, but their sense is shut. + +Doctor: +What is it she does now? Look, how she rubs her hands. + +Gentlewoman: +It is an accustomed action with her, to seem thus +washing her hands: I have known her continue in +this a quarter of an hour. + +LADY MACBETH: +Yet here's a spot. + +Doctor: +Hark! she speaks: I will set down what comes from +her, to satisfy my remembrance the more strongly. + +LADY MACBETH: +Out, damned spot! out, I say!--One: two: why, +then, 'tis time to do't.--Hell is murky!--Fie, my +lord, fie! a soldier, and afeard? What need we +fear who knows it, when none can call our power to +account?--Yet who would have thought the old man +to have had so much blood in him. + +Doctor: +Do you mark that? + +LADY MACBETH: +The thane of Fife had a wife: where is she now?-- +What, will these hands ne'er be clean?--No more o' +that, my lord, no more o' that: you mar all with +this starting. + +Doctor: +Go to, go to; you have known what you should not. + +Gentlewoman: +She has spoke what she should not, I am sure of +that: heaven knows what she has known. + +LADY MACBETH: +Here's the smell of the blood still: all the +perfumes of Arabia will not sweeten this little +hand. Oh, oh, oh! + +Doctor: +What a sigh is there! The heart is sorely charged. + +Gentlewoman: +I would not have such a heart in my bosom for the +dignity of the whole body. + +Doctor: +Well, well, well,-- + +Gentlewoman: +Pray God it be, sir. + +Doctor: +This disease is beyond my practise: yet I have known +those which have walked in their sleep who have died +holily in their beds. + +LADY MACBETH: +Wash your hands, put on your nightgown; look not so +pale.--I tell you yet again, Banquo's buried; he +cannot come out on's grave. + +Doctor: +Even so? + +LADY MACBETH: +To bed, to bed! there's knocking at the gate: +come, come, come, come, give me your hand. What's +done cannot be undone.--To bed, to bed, to bed! + +Doctor: +Will she go now to bed? + +Gentlewoman: +Directly. + +Doctor: +Foul whisperings are abroad: unnatural deeds +Do breed unnatural troubles: infected minds +To their deaf pillows will discharge their secrets: +More needs she the divine than the physician. +God, God forgive us all! Look after her; +Remove from her the means of all annoyance, +And still keep eyes upon her. So, good night: +My mind she has mated, and amazed my sight. +I think, but dare not speak. + +Gentlewoman: +Good night, good doctor. + +MENTEITH: +The English power is near, led on by Malcolm, +His uncle Siward and the good Macduff: +Revenges burn in them; for their dear causes +Would to the bleeding and the grim alarm +Excite the mortified man. + +ANGUS: +Near Birnam wood +Shall we well meet them; that way are they coming. + +CAITHNESS: +Who knows if Donalbain be with his brother? + +LENNOX: +For certain, sir, he is not: I have a file +Of all the gentry: there is Siward's son, +And many unrough youths that even now +Protest their first of manhood. + +MENTEITH: +What does the tyrant? + +CAITHNESS: +Great Dunsinane he strongly fortifies: +Some say he's mad; others that lesser hate him +Do call it valiant fury: but, for certain, +He cannot buckle his distemper'd cause +Within the belt of rule. + +ANGUS: +Now does he feel +His secret murders sticking on his hands; +Now minutely revolts upbraid his faith-breach; +Those he commands move only in command, +Nothing in love: now does he feel his title +Hang loose about him, like a giant's robe +Upon a dwarfish thief. + +MENTEITH: +Who then shall blame +His pester'd senses to recoil and start, +When all that is within him does condemn +Itself for being there? + +CAITHNESS: +Well, march we on, +To give obedience where 'tis truly owed: +Meet we the medicine of the sickly weal, +And with him pour we in our country's purge +Each drop of us. + +LENNOX: +Or so much as it needs, +To dew the sovereign flower and drown the weeds. +Make we our march towards Birnam. + +MACBETH: +Bring me no more reports; let them fly all: +Till Birnam wood remove to Dunsinane, +I cannot taint with fear. What's the boy Malcolm? +Was he not born of woman? The spirits that know +All mortal consequences have pronounced me thus: +'Fear not, Macbeth; no man that's born of woman +Shall e'er have power upon thee.' Then fly, +false thanes, +And mingle with the English epicures: +The mind I sway by and the heart I bear +Shall never sag with doubt nor shake with fear. +The devil damn thee black, thou cream-faced loon! +Where got'st thou that goose look? + +Servant: +There is ten thousand-- + +MACBETH: +Geese, villain! + +Servant: +Soldiers, sir. + +MACBETH: +Go prick thy face, and over-red thy fear, +Thou lily-liver'd boy. What soldiers, patch? +Death of thy soul! those linen cheeks of thine +Are counsellors to fear. What soldiers, whey-face? + +Servant: +The English force, so please you. + +MACBETH: +Take thy face hence. +Seyton!--I am sick at heart, +When I behold--Seyton, I say!--This push +Will cheer me ever, or disseat me now. +I have lived long enough: my way of life +Is fall'n into the sear, the yellow leaf; +And that which should accompany old age, +As honour, love, obedience, troops of friends, +I must not look to have; but, in their stead, +Curses, not loud but deep, mouth-honour, breath, +Which the poor heart would fain deny, and dare not. Seyton! + +SEYTON: +What is your gracious pleasure? + +MACBETH: +What news more? + +SEYTON: +All is confirm'd, my lord, which was reported. + +MACBETH: +I'll fight till from my bones my flesh be hack'd. +Give me my armour. + +SEYTON: +'Tis not needed yet. + +MACBETH: +I'll put it on. +Send out more horses; skirr the country round; +Hang those that talk of fear. Give me mine armour. +How does your patient, doctor? + +Doctor: +Not so sick, my lord, +As she is troubled with thick coming fancies, +That keep her from her rest. + +MACBETH: +Cure her of that. +Canst thou not minister to a mind diseased, +Pluck from the memory a rooted sorrow, +Raze out the written troubles of the brain +And with some sweet oblivious antidote +Cleanse the stuff'd bosom of that perilous stuff +Which weighs upon the heart? + +Doctor: +Therein the patient +Must minister to himself. + +MACBETH: +Throw physic to the dogs; I'll none of it. +Come, put mine armour on; give me my staff. +Seyton, send out. Doctor, the thanes fly from me. +Come, sir, dispatch. If thou couldst, doctor, cast +The water of my land, find her disease, +And purge it to a sound and pristine health, +I would applaud thee to the very echo, +That should applaud again.--Pull't off, I say.-- +What rhubarb, cyme, or what purgative drug, +Would scour these English hence? Hear'st thou of them? + +Doctor: +Ay, my good lord; your royal preparation +Makes us hear something. + +MACBETH: +Bring it after me. +I will not be afraid of death and bane, +Till Birnam forest come to Dunsinane. + +Doctor: + +MALCOLM: +Cousins, I hope the days are near at hand +That chambers will be safe. + +MENTEITH: +We doubt it nothing. + +SIWARD: +What wood is this before us? + +MENTEITH: +The wood of Birnam. + +MALCOLM: +Let every soldier hew him down a bough +And bear't before him: thereby shall we shadow +The numbers of our host and make discovery +Err in report of us. + +Soldiers: +It shall be done. + +SIWARD: +We learn no other but the confident tyrant +Keeps still in Dunsinane, and will endure +Our setting down before 't. + +MALCOLM: +'Tis his main hope: +For where there is advantage to be given, +Both more and less have given him the revolt, +And none serve with him but constrained things +Whose hearts are absent too. + +MACDUFF: +Let our just censures +Attend the true event, and put we on +Industrious soldiership. + +SIWARD: +The time approaches +That will with due decision make us know +What we shall say we have and what we owe. +Thoughts speculative their unsure hopes relate, +But certain issue strokes must arbitrate: +Towards which advance the war. + +MACBETH: +Hang out our banners on the outward walls; +The cry is still 'They come:' our castle's strength +Will laugh a siege to scorn: here let them lie +Till famine and the ague eat them up: +Were they not forced with those that should be ours, +We might have met them dareful, beard to beard, +And beat them backward home. +What is that noise? + +SEYTON: +It is the cry of women, my good lord. + +MACBETH: +I have almost forgot the taste of fears; +The time has been, my senses would have cool'd +To hear a night-shriek; and my fell of hair +Would at a dismal treatise rouse and stir +As life were in't: I have supp'd full with horrors; +Direness, familiar to my slaughterous thoughts +Cannot once start me. +Wherefore was that cry? + +SEYTON: +The queen, my lord, is dead. + +MACBETH: +She should have died hereafter; +There would have been a time for such a word. +To-morrow, and to-morrow, and to-morrow, +Creeps in this petty pace from day to day +To the last syllable of recorded time, +And all our yesterdays have lighted fools +The way to dusty death. Out, out, brief candle! +Life's but a walking shadow, a poor player +That struts and frets his hour upon the stage +And then is heard no more: it is a tale +Told by an idiot, full of sound and fury, +Signifying nothing. +Thou comest to use thy tongue; thy story quickly. + +Messenger: +Gracious my lord, +I should report that which I say I saw, +But know not how to do it. + +MACBETH: +Well, say, sir. + +Messenger: +As I did stand my watch upon the hill, +I look'd toward Birnam, and anon, methought, +The wood began to move. + +MACBETH: +Liar and slave! + +Messenger: +Let me endure your wrath, if't be not so: +Within this three mile may you see it coming; +I say, a moving grove. + +MACBETH: +If thou speak'st false, +Upon the next tree shalt thou hang alive, +Till famine cling thee: if thy speech be sooth, +I care not if thou dost for me as much. +I pull in resolution, and begin +To doubt the equivocation of the fiend +That lies like truth: 'Fear not, till Birnam wood +Do come to Dunsinane:' and now a wood +Comes toward Dunsinane. Arm, arm, and out! +If this which he avouches does appear, +There is nor flying hence nor tarrying here. +I gin to be aweary of the sun, +And wish the estate o' the world were now undone. +Ring the alarum-bell! Blow, wind! come, wrack! +At least we'll die with harness on our back. + +MALCOLM: +Now near enough: your leafy screens throw down. +And show like those you are. You, worthy uncle, +Shall, with my cousin, your right-noble son, +Lead our first battle: worthy Macduff and we +Shall take upon 's what else remains to do, +According to our order. + +SIWARD: +Fare you well. +Do we but find the tyrant's power to-night, +Let us be beaten, if we cannot fight. + +MACDUFF: +Make all our trumpets speak; give them all breath, +Those clamorous harbingers of blood and death. + +MACBETH: +They have tied me to a stake; I cannot fly, +But, bear-like, I must fight the course. What's he +That was not born of woman? Such a one +Am I to fear, or none. + +YOUNG SIWARD: +What is thy name? + +MACBETH: +Thou'lt be afraid to hear it. + +YOUNG SIWARD: +No; though thou call'st thyself a hotter name +Than any is in hell. + +MACBETH: +My name's Macbeth. + +YOUNG SIWARD: +The devil himself could not pronounce a title +More hateful to mine ear. + +MACBETH: +No, nor more fearful. + +YOUNG SIWARD: +Thou liest, abhorred tyrant; with my sword +I'll prove the lie thou speak'st. + +MACBETH: +Thou wast born of woman +But swords I smile at, weapons laugh to scorn, +Brandish'd by man that's of a woman born. + +MACDUFF: +That way the noise is. Tyrant, show thy face! +If thou be'st slain and with no stroke of mine, +My wife and children's ghosts will haunt me still. +I cannot strike at wretched kerns, whose arms +Are hired to bear their staves: either thou, Macbeth, +Or else my sword with an unbatter'd edge +I sheathe again undeeded. There thou shouldst be; +By this great clatter, one of greatest note +Seems bruited. Let me find him, fortune! +And more I beg not. + +SIWARD: +This way, my lord; the castle's gently render'd: +The tyrant's people on both sides do fight; +The noble thanes do bravely in the war; +The day almost itself professes yours, +And little is to do. + +MALCOLM: +We have met with foes +That strike beside us. + +SIWARD: +Enter, sir, the castle. + +MACBETH: +Why should I play the Roman fool, and die +On mine own sword? whiles I see lives, the gashes +Do better upon them. + +MACDUFF: +Turn, hell-hound, turn! + +MACBETH: +Of all men else I have avoided thee: +But get thee back; my soul is too much charged +With blood of thine already. + +MACDUFF: +I have no words: +My voice is in my sword: thou bloodier villain +Than terms can give thee out! + +MACBETH: +Thou losest labour: +As easy mayst thou the intrenchant air +With thy keen sword impress as make me bleed: +Let fall thy blade on vulnerable crests; +I bear a charmed life, which must not yield, +To one of woman born. + +MACDUFF: +Despair thy charm; +And let the angel whom thou still hast served +Tell thee, Macduff was from his mother's womb +Untimely ripp'd. + +MACBETH: +Accursed be that tongue that tells me so, +For it hath cow'd my better part of man! +And be these juggling fiends no more believed, +That palter with us in a double sense; +That keep the word of promise to our ear, +And break it to our hope. I'll not fight with thee. + +MACDUFF: +Then yield thee, coward, +And live to be the show and gaze o' the time: +We'll have thee, as our rarer monsters are, +Painted on a pole, and underwrit, +'Here may you see the tyrant.' + +MACBETH: +I will not yield, +To kiss the ground before young Malcolm's feet, +And to be baited with the rabble's curse. +Though Birnam wood be come to Dunsinane, +And thou opposed, being of no woman born, +Yet I will try the last. Before my body +I throw my warlike shield. Lay on, Macduff, +And damn'd be him that first cries, 'Hold, enough!' + +MALCOLM: +I would the friends we miss were safe arrived. + +SIWARD: +Some must go off: and yet, by these I see, +So great a day as this is cheaply bought. + +MALCOLM: +Macduff is missing, and your noble son. + +ROSS: +Your son, my lord, has paid a soldier's debt: +He only lived but till he was a man; +The which no sooner had his prowess confirm'd +In the unshrinking station where he fought, +But like a man he died. + +SIWARD: +Then he is dead? + +ROSS: +Ay, and brought off the field: your cause of sorrow +Must not be measured by his worth, for then +It hath no end. + +SIWARD: +Had he his hurts before? + +ROSS: +Ay, on the front. + +SIWARD: +Why then, God's soldier be he! +Had I as many sons as I have hairs, +I would not wish them to a fairer death: +And so, his knell is knoll'd. + +MALCOLM: +He's worth more sorrow, +And that I'll spend for him. + +SIWARD: +He's worth no more +They say he parted well, and paid his score: +And so, God be with him! Here comes newer comfort. + +MACDUFF: +Hail, king! for so thou art: behold, where stands +The usurper's cursed head: the time is free: +I see thee compass'd with thy kingdom's pearl, +That speak my salutation in their minds; +Whose voices I desire aloud with mine: +Hail, King of Scotland! + +ALL: +Hail, King of Scotland! + +MALCOLM: +We shall not spend a large expense of time +Before we reckon with your several loves, +And make us even with you. My thanes and kinsmen, +Henceforth be earls, the first that ever Scotland +In such an honour named. What's more to do, +Which would be planted newly with the time, +As calling home our exiled friends abroad +That fled the snares of watchful tyranny; +Producing forth the cruel ministers +Of this dead butcher and his fiend-like queen, +Who, as 'tis thought, by self and violent hands +Took off her life; this, and what needful else +That calls upon us, by the grace of Grace, +We will perform in measure, time and place: +So, thanks to all at once and to each one, +Whom we invite to see us crown'd at Scone. + +THESEUS: +Now, fair Hippolyta, our nuptial hour +Draws on apace; four happy days bring in +Another moon: but, O, methinks, how slow +This old moon wanes! she lingers my desires, +Like to a step-dame or a dowager +Long withering out a young man revenue. + +HIPPOLYTA: +Four days will quickly steep themselves in night; +Four nights will quickly dream away the time; +And then the moon, like to a silver bow +New-bent in heaven, shall behold the night +Of our solemnities. + +THESEUS: +Go, Philostrate, +Stir up the Athenian youth to merriments; +Awake the pert and nimble spirit of mirth; +Turn melancholy forth to funerals; +The pale companion is not for our pomp. +Hippolyta, I woo'd thee with my sword, +And won thy love, doing thee injuries; +But I will wed thee in another key, +With pomp, with triumph and with revelling. + +EGEUS: +Happy be Theseus, our renowned duke! + +THESEUS: +Thanks, good Egeus: what's the news with thee? + +EGEUS: +Full of vexation come I, with complaint +Against my child, my daughter Hermia. +Stand forth, Demetrius. My noble lord, +This man hath my consent to marry her. +Stand forth, Lysander: and my gracious duke, +This man hath bewitch'd the bosom of my child; +Thou, thou, Lysander, thou hast given her rhymes, +And interchanged love-tokens with my child: +Thou hast by moonlight at her window sung, +With feigning voice verses of feigning love, +And stolen the impression of her fantasy +With bracelets of thy hair, rings, gawds, conceits, +Knacks, trifles, nosegays, sweetmeats, messengers +Of strong prevailment in unharden'd youth: +With cunning hast thou filch'd my daughter's heart, +Turn'd her obedience, which is due to me, +To stubborn harshness: and, my gracious duke, +Be it so she; will not here before your grace +Consent to marry with Demetrius, +I beg the ancient privilege of Athens, +As she is mine, I may dispose of her: +Which shall be either to this gentleman +Or to her death, according to our law +Immediately provided in that case. + +THESEUS: +What say you, Hermia? be advised fair maid: +To you your father should be as a god; +One that composed your beauties, yea, and one +To whom you are but as a form in wax +By him imprinted and within his power +To leave the figure or disfigure it. +Demetrius is a worthy gentleman. + +HERMIA: +So is Lysander. + +THESEUS: +In himself he is; +But in this kind, wanting your father's voice, +The other must be held the worthier. + +HERMIA: +I would my father look'd but with my eyes. + +THESEUS: +Rather your eyes must with his judgment look. + +HERMIA: +I do entreat your grace to pardon me. +I know not by what power I am made bold, +Nor how it may concern my modesty, +In such a presence here to plead my thoughts; +But I beseech your grace that I may know +The worst that may befall me in this case, +If I refuse to wed Demetrius. + +THESEUS: +Either to die the death or to abjure +For ever the society of men. +Therefore, fair Hermia, question your desires; +Know of your youth, examine well your blood, +Whether, if you yield not to your father's choice, +You can endure the livery of a nun, +For aye to be in shady cloister mew'd, +To live a barren sister all your life, +Chanting faint hymns to the cold fruitless moon. +Thrice-blessed they that master so their blood, +To undergo such maiden pilgrimage; +But earthlier happy is the rose distill'd, +Than that which withering on the virgin thorn +Grows, lives and dies in single blessedness. + +HERMIA: +So will I grow, so live, so die, my lord, +Ere I will my virgin patent up +Unto his lordship, whose unwished yoke +My soul consents not to give sovereignty. + +THESEUS: +Take time to pause; and, by the nest new moon-- +The sealing-day betwixt my love and me, +For everlasting bond of fellowship-- +Upon that day either prepare to die +For disobedience to your father's will, +Or else to wed Demetrius, as he would; +Or on Diana's altar to protest +For aye austerity and single life. + +DEMETRIUS: +Relent, sweet Hermia: and, Lysander, yield +Thy crazed title to my certain right. + +LYSANDER: +You have her father's love, Demetrius; +Let me have Hermia's: do you marry him. + +EGEUS: +Scornful Lysander! true, he hath my love, +And what is mine my love shall render him. +And she is mine, and all my right of her +I do estate unto Demetrius. + +LYSANDER: +I am, my lord, as well derived as he, +As well possess'd; my love is more than his; +My fortunes every way as fairly rank'd, +If not with vantage, as Demetrius'; +And, which is more than all these boasts can be, +I am beloved of beauteous Hermia: +Why should not I then prosecute my right? +Demetrius, I'll avouch it to his head, +Made love to Nedar's daughter, Helena, +And won her soul; and she, sweet lady, dotes, +Devoutly dotes, dotes in idolatry, +Upon this spotted and inconstant man. + +THESEUS: +I must confess that I have heard so much, +And with Demetrius thought to have spoke thereof; +But, being over-full of self-affairs, +My mind did lose it. But, Demetrius, come; +And come, Egeus; you shall go with me, +I have some private schooling for you both. +For you, fair Hermia, look you arm yourself +To fit your fancies to your father's will; +Or else the law of Athens yields you up-- +Which by no means we may extenuate-- +To death, or to a vow of single life. +Come, my Hippolyta: what cheer, my love? +Demetrius and Egeus, go along: +I must employ you in some business +Against our nuptial and confer with you +Of something nearly that concerns yourselves. + +EGEUS: +With duty and desire we follow you. + +LYSANDER: +How now, my love! why is your cheek so pale? +How chance the roses there do fade so fast? + +HERMIA: +Belike for want of rain, which I could well +Beteem them from the tempest of my eyes. + +LYSANDER: +Ay me! for aught that I could ever read, +Could ever hear by tale or history, +The course of true love never did run smooth; +But, either it was different in blood,-- + +HERMIA: +O cross! too high to be enthrall'd to low. + +LYSANDER: +Or else misgraffed in respect of years,-- + +HERMIA: +O spite! too old to be engaged to young. + +LYSANDER: +Or else it stood upon the choice of friends,-- + +HERMIA: +O hell! to choose love by another's eyes. + +LYSANDER: +Or, if there were a sympathy in choice, +War, death, or sickness did lay siege to it, +Making it momentany as a sound, +Swift as a shadow, short as any dream; +Brief as the lightning in the collied night, +That, in a spleen, unfolds both heaven and earth, +And ere a man hath power to say 'Behold!' +The jaws of darkness do devour it up: +So quick bright things come to confusion. + +HERMIA: +If then true lovers have been ever cross'd, +It stands as an edict in destiny: +Then let us teach our trial patience, +Because it is a customary cross, +As due to love as thoughts and dreams and sighs, +Wishes and tears, poor fancy's followers. + +LYSANDER: +A good persuasion: therefore, hear me, Hermia. +I have a widow aunt, a dowager +Of great revenue, and she hath no child: +From Athens is her house remote seven leagues; +And she respects me as her only son. +There, gentle Hermia, may I marry thee; +And to that place the sharp Athenian law +Cannot pursue us. If thou lovest me then, +Steal forth thy father's house to-morrow night; +And in the wood, a league without the town, +Where I did meet thee once with Helena, +To do observance to a morn of May, +There will I stay for thee. + +HERMIA: +My good Lysander! +I swear to thee, by Cupid's strongest bow, +By his best arrow with the golden head, +By the simplicity of Venus' doves, +By that which knitteth souls and prospers loves, +And by that fire which burn'd the Carthage queen, +When the false Troyan under sail was seen, +By all the vows that ever men have broke, +In number more than ever women spoke, +In that same place thou hast appointed me, +To-morrow truly will I meet with thee. + +LYSANDER: +Keep promise, love. Look, here comes Helena. + +HERMIA: +God speed fair Helena! whither away? + +HELENA: +Call you me fair? that fair again unsay. +Demetrius loves your fair: O happy fair! +Your eyes are lode-stars; and your tongue's sweet air +More tuneable than lark to shepherd's ear, +When wheat is green, when hawthorn buds appear. +Sickness is catching: O, were favour so, +Yours would I catch, fair Hermia, ere I go; +My ear should catch your voice, my eye your eye, +My tongue should catch your tongue's sweet melody. +Were the world mine, Demetrius being bated, +The rest I'd give to be to you translated. +O, teach me how you look, and with what art +You sway the motion of Demetrius' heart. + +HERMIA: +I frown upon him, yet he loves me still. + +HELENA: +O that your frowns would teach my smiles such skill! + +HERMIA: +I give him curses, yet he gives me love. + +HELENA: +O that my prayers could such affection move! + +HERMIA: +The more I hate, the more he follows me. + +HELENA: +The more I love, the more he hateth me. + +HERMIA: +His folly, Helena, is no fault of mine. + +HELENA: +None, but your beauty: would that fault were mine! + +HERMIA: +Take comfort: he no more shall see my face; +Lysander and myself will fly this place. +Before the time I did Lysander see, +Seem'd Athens as a paradise to me: +O, then, what graces in my love do dwell, +That he hath turn'd a heaven unto a hell! + +LYSANDER: +Helen, to you our minds we will unfold: +To-morrow night, when Phoebe doth behold +Her silver visage in the watery glass, +Decking with liquid pearl the bladed grass, +A time that lovers' flights doth still conceal, +Through Athens' gates have we devised to steal. + +HERMIA: +And in the wood, where often you and I +Upon faint primrose-beds were wont to lie, +Emptying our bosoms of their counsel sweet, +There my Lysander and myself shall meet; +And thence from Athens turn away our eyes, +To seek new friends and stranger companies. +Farewell, sweet playfellow: pray thou for us; +And good luck grant thee thy Demetrius! +Keep word, Lysander: we must starve our sight +From lovers' food till morrow deep midnight. + +LYSANDER: +I will, my Hermia. +Helena, adieu: +As you on him, Demetrius dote on you! + +HELENA: +How happy some o'er other some can be! +Through Athens I am thought as fair as she. +But what of that? Demetrius thinks not so; +He will not know what all but he do know: +And as he errs, doting on Hermia's eyes, +So I, admiring of his qualities: +Things base and vile, folding no quantity, +Love can transpose to form and dignity: +Love looks not with the eyes, but with the mind; +And therefore is wing'd Cupid painted blind: +Nor hath Love's mind of any judgement taste; +Wings and no eyes figure unheedy haste: +And therefore is Love said to be a child, +Because in choice he is so oft beguiled. +As waggish boys in game themselves forswear, +So the boy Love is perjured every where: +For ere Demetrius look'd on Hermia's eyne, +He hail'd down oaths that he was only mine; +And when this hail some heat from Hermia felt, +So he dissolved, and showers of oaths did melt. +I will go tell him of fair Hermia's flight: +Then to the wood will he to-morrow night +Pursue her; and for this intelligence +If I have thanks, it is a dear expense: +But herein mean I to enrich my pain, +To have his sight thither and back again. + +QUINCE: +Is all our company here? + +BOTTOM: +You were best to call them generally, man by man, +according to the scrip. + +QUINCE: +Here is the scroll of every man's name, which is +thought fit, through all Athens, to play in our +interlude before the duke and the duchess, on his +wedding-day at night. + +BOTTOM: +First, good Peter Quince, say what the play treats +on, then read the names of the actors, and so grow +to a point. + +QUINCE: +Marry, our play is, The most lamentable comedy, and +most cruel death of Pyramus and Thisby. + +BOTTOM: +A very good piece of work, I assure you, and a +merry. Now, good Peter Quince, call forth your +actors by the scroll. Masters, spread yourselves. + +QUINCE: +Answer as I call you. Nick Bottom, the weaver. + +BOTTOM: +Ready. Name what part I am for, and proceed. + +QUINCE: +You, Nick Bottom, are set down for Pyramus. + +BOTTOM: +What is Pyramus? a lover, or a tyrant? + +QUINCE: +A lover, that kills himself most gallant for love. + +BOTTOM: +That will ask some tears in the true performing of +it: if I do it, let the audience look to their +eyes; I will move storms, I will condole in some +measure. To the rest: yet my chief humour is for a +tyrant: I could play Ercles rarely, or a part to +tear a cat in, to make all split. +The raging rocks +And shivering shocks +Shall break the locks +Of prison gates; +And Phibbus' car +Shall shine from far +And make and mar +The foolish Fates. +This was lofty! Now name the rest of the players. +This is Ercles' vein, a tyrant's vein; a lover is +more condoling. + +QUINCE: +Francis Flute, the bellows-mender. + +FLUTE: +Here, Peter Quince. + +QUINCE: +Flute, you must take Thisby on you. + +FLUTE: +What is Thisby? a wandering knight? + +QUINCE: +It is the lady that Pyramus must love. + +FLUTE: +Nay, faith, let me not play a woman; I have a beard coming. + +QUINCE: +That's all one: you shall play it in a mask, and +you may speak as small as you will. + +BOTTOM: +An I may hide my face, let me play Thisby too, I'll +speak in a monstrous little voice. 'Thisne, +Thisne;' 'Ah, Pyramus, lover dear! thy Thisby dear, +and lady dear!' + +QUINCE: +No, no; you must play Pyramus: and, Flute, you Thisby. + +BOTTOM: +Well, proceed. + +QUINCE: +Robin Starveling, the tailor. + +STARVELING: +Here, Peter Quince. + +QUINCE: +Robin Starveling, you must play Thisby's mother. +Tom Snout, the tinker. + +SNOUT: +Here, Peter Quince. + +QUINCE: +You, Pyramus' father: myself, Thisby's father: +Snug, the joiner; you, the lion's part: and, I +hope, here is a play fitted. + +SNUG: +Have you the lion's part written? pray you, if it +be, give it me, for I am slow of study. + +QUINCE: +You may do it extempore, for it is nothing but roaring. + +BOTTOM: +Let me play the lion too: I will roar, that I will +do any man's heart good to hear me; I will roar, +that I will make the duke say 'Let him roar again, +let him roar again.' + +QUINCE: +An you should do it too terribly, you would fright +the duchess and the ladies, that they would shriek; +and that were enough to hang us all. + +ALL: +That would hang us, every mother's son. + +BOTTOM: +I grant you, friends, if that you should fright the +ladies out of their wits, they would have no more +discretion but to hang us: but I will aggravate my +voice so that I will roar you as gently as any +sucking dove; I will roar you an 'twere any +nightingale. + +QUINCE: +You can play no part but Pyramus; for Pyramus is a +sweet-faced man; a proper man, as one shall see in a +summer's day; a most lovely gentleman-like man: +therefore you must needs play Pyramus. + +BOTTOM: +Well, I will undertake it. What beard were I best +to play it in? + +QUINCE: +Why, what you will. + +BOTTOM: +I will discharge it in either your straw-colour +beard, your orange-tawny beard, your purple-in-grain +beard, or your French-crown-colour beard, your +perfect yellow. + +QUINCE: +Some of your French crowns have no hair at all, and +then you will play bare-faced. But, masters, here +are your parts: and I am to entreat you, request +you and desire you, to con them by to-morrow night; +and meet me in the palace wood, a mile without the +town, by moonlight; there will we rehearse, for if +we meet in the city, we shall be dogged with +company, and our devices known. In the meantime I +will draw a bill of properties, such as our play +wants. I pray you, fail me not. + +BOTTOM: +We will meet; and there we may rehearse most +obscenely and courageously. Take pains; be perfect: adieu. + +QUINCE: +At the duke's oak we meet. + +BOTTOM: +Enough; hold or cut bow-strings. + +PUCK: +How now, spirit! whither wander you? + +Fairy: +Over hill, over dale, +Thorough bush, thorough brier, +Over park, over pale, +Thorough flood, thorough fire, +I do wander everywhere, +Swifter than the moon's sphere; +And I serve the fairy queen, +To dew her orbs upon the green. +The cowslips tall her pensioners be: +In their gold coats spots you see; +Those be rubies, fairy favours, +In those freckles live their savours: +I must go seek some dewdrops here +And hang a pearl in every cowslip's ear. +Farewell, thou lob of spirits; I'll be gone: +Our queen and all our elves come here anon. + +PUCK: +The king doth keep his revels here to-night: +Take heed the queen come not within his sight; +For Oberon is passing fell and wrath, +Because that she as her attendant hath +A lovely boy, stolen from an Indian king; +She never had so sweet a changeling; +And jealous Oberon would have the child +Knight of his train, to trace the forests wild; +But she perforce withholds the loved boy, +Crowns him with flowers and makes him all her joy: +And now they never meet in grove or green, +By fountain clear, or spangled starlight sheen, +But, they do square, that all their elves for fear +Creep into acorn-cups and hide them there. + +Fairy: +Either I mistake your shape and making quite, +Or else you are that shrewd and knavish sprite +Call'd Robin Goodfellow: are not you he +That frights the maidens of the villagery; +Skim milk, and sometimes labour in the quern +And bootless make the breathless housewife churn; +And sometime make the drink to bear no barm; +Mislead night-wanderers, laughing at their harm? +Those that Hobgoblin call you and sweet Puck, +You do their work, and they shall have good luck: +Are not you he? + +PUCK: +Thou speak'st aright; +I am that merry wanderer of the night. +I jest to Oberon and make him smile +When I a fat and bean-fed horse beguile, +Neighing in likeness of a filly foal: +And sometime lurk I in a gossip's bowl, +In very likeness of a roasted crab, +And when she drinks, against her lips I bob +And on her wither'd dewlap pour the ale. +The wisest aunt, telling the saddest tale, +Sometime for three-foot stool mistaketh me; +Then slip I from her bum, down topples she, +And 'tailor' cries, and falls into a cough; +And then the whole quire hold their hips and laugh, +And waxen in their mirth and neeze and swear +A merrier hour was never wasted there. +But, room, fairy! here comes Oberon. + +Fairy: +And here my mistress. Would that he were gone! + +OBERON: +Ill met by moonlight, proud Titania. + +TITANIA: +What, jealous Oberon! Fairies, skip hence: +I have forsworn his bed and company. + +OBERON: +Tarry, rash wanton: am not I thy lord? + +TITANIA: +Then I must be thy lady: but I know +When thou hast stolen away from fairy land, +And in the shape of Corin sat all day, +Playing on pipes of corn and versing love +To amorous Phillida. Why art thou here, +Come from the farthest Steppe of India? +But that, forsooth, the bouncing Amazon, +Your buskin'd mistress and your warrior love, +To Theseus must be wedded, and you come +To give their bed joy and prosperity. + +OBERON: +How canst thou thus for shame, Titania, +Glance at my credit with Hippolyta, +Knowing I know thy love to Theseus? +Didst thou not lead him through the glimmering night +From Perigenia, whom he ravished? +And make him with fair AEgle break his faith, +With Ariadne and Antiopa? + +TITANIA: +These are the forgeries of jealousy: +And never, since the middle summer's spring, +Met we on hill, in dale, forest or mead, +By paved fountain or by rushy brook, +Or in the beached margent of the sea, +To dance our ringlets to the whistling wind, +But with thy brawls thou hast disturb'd our sport. +Therefore the winds, piping to us in vain, +As in revenge, have suck'd up from the sea +Contagious fogs; which falling in the land +Have every pelting river made so proud +That they have overborne their continents: +The ox hath therefore stretch'd his yoke in vain, +The ploughman lost his sweat, and the green corn +Hath rotted ere his youth attain'd a beard; +The fold stands empty in the drowned field, +And crows are fatted with the murrion flock; +The nine men's morris is fill'd up with mud, +And the quaint mazes in the wanton green +For lack of tread are undistinguishable: +The human mortals want their winter here; +No night is now with hymn or carol blest: +Therefore the moon, the governess of floods, +Pale in her anger, washes all the air, +That rheumatic diseases do abound: +And thorough this distemperature we see +The seasons alter: hoary-headed frosts +Far in the fresh lap of the crimson rose, +And on old Hiems' thin and icy crown +An odorous chaplet of sweet summer buds +Is, as in mockery, set: the spring, the summer, +The childing autumn, angry winter, change +Their wonted liveries, and the mazed world, +By their increase, now knows not which is which: +And this same progeny of evils comes +From our debate, from our dissension; +We are their parents and original. + +OBERON: +Do you amend it then; it lies in you: +Why should Titania cross her Oberon? +I do but beg a little changeling boy, +To be my henchman. + +TITANIA: +Set your heart at rest: +The fairy land buys not the child of me. +His mother was a votaress of my order: +And, in the spiced Indian air, by night, +Full often hath she gossip'd by my side, +And sat with me on Neptune's yellow sands, +Marking the embarked traders on the flood, +When we have laugh'd to see the sails conceive +And grow big-bellied with the wanton wind; +Which she, with pretty and with swimming gait +Following,--her womb then rich with my young squire,-- +Would imitate, and sail upon the land, +To fetch me trifles, and return again, +As from a voyage, rich with merchandise. +But she, being mortal, of that boy did die; +And for her sake do I rear up her boy, +And for her sake I will not part with him. + +OBERON: +How long within this wood intend you stay? + +TITANIA: +Perchance till after Theseus' wedding-day. +If you will patiently dance in our round +And see our moonlight revels, go with us; +If not, shun me, and I will spare your haunts. + +OBERON: +Give me that boy, and I will go with thee. + +TITANIA: +Not for thy fairy kingdom. Fairies, away! +We shall chide downright, if I longer stay. + +OBERON: +Well, go thy way: thou shalt not from this grove +Till I torment thee for this injury. +My gentle Puck, come hither. Thou rememberest +Since once I sat upon a promontory, +And heard a mermaid on a dolphin's back +Uttering such dulcet and harmonious breath +That the rude sea grew civil at her song +And certain stars shot madly from their spheres, +To hear the sea-maid's music. + +PUCK: +I remember. + +OBERON: +That very time I saw, but thou couldst not, +Flying between the cold moon and the earth, +Cupid all arm'd: a certain aim he took +At a fair vestal throned by the west, +And loosed his love-shaft smartly from his bow, +As it should pierce a hundred thousand hearts; +But I might see young Cupid's fiery shaft +Quench'd in the chaste beams of the watery moon, +And the imperial votaress passed on, +In maiden meditation, fancy-free. +Yet mark'd I where the bolt of Cupid fell: +It fell upon a little western flower, +Before milk-white, now purple with love's wound, +And maidens call it love-in-idleness. +Fetch me that flower; the herb I shew'd thee once: +The juice of it on sleeping eye-lids laid +Will make or man or woman madly dote +Upon the next live creature that it sees. +Fetch me this herb; and be thou here again +Ere the leviathan can swim a league. + +PUCK: +I'll put a girdle round about the earth +In forty minutes. + +OBERON: +Having once this juice, +I'll watch Titania when she is asleep, +And drop the liquor of it in her eyes. +The next thing then she waking looks upon, +Be it on lion, bear, or wolf, or bull, +On meddling monkey, or on busy ape, +She shall pursue it with the soul of love: +And ere I take this charm from off her sight, +As I can take it with another herb, +I'll make her render up her page to me. +But who comes here? I am invisible; +And I will overhear their conference. + +DEMETRIUS: +I love thee not, therefore pursue me not. +Where is Lysander and fair Hermia? +The one I'll slay, the other slayeth me. +Thou told'st me they were stolen unto this wood; +And here am I, and wode within this wood, +Because I cannot meet my Hermia. +Hence, get thee gone, and follow me no more. + +HELENA: +You draw me, you hard-hearted adamant; +But yet you draw not iron, for my heart +Is true as steel: leave you your power to draw, +And I shall have no power to follow you. + +DEMETRIUS: +Do I entice you? do I speak you fair? +Or, rather, do I not in plainest truth +Tell you, I do not, nor I cannot love you? + +HELENA: +And even for that do I love you the more. +I am your spaniel; and, Demetrius, +The more you beat me, I will fawn on you: +Use me but as your spaniel, spurn me, strike me, +Neglect me, lose me; only give me leave, +Unworthy as I am, to follow you. +What worser place can I beg in your love,-- +And yet a place of high respect with me,-- +Than to be used as you use your dog? + +DEMETRIUS: +Tempt not too much the hatred of my spirit; +For I am sick when I do look on thee. + +HELENA: +And I am sick when I look not on you. + +DEMETRIUS: +You do impeach your modesty too much, +To leave the city and commit yourself +Into the hands of one that loves you not; +To trust the opportunity of night +And the ill counsel of a desert place +With the rich worth of your virginity. + +HELENA: +Your virtue is my privilege: for that +It is not night when I do see your face, +Therefore I think I am not in the night; +Nor doth this wood lack worlds of company, +For you in my respect are all the world: +Then how can it be said I am alone, +When all the world is here to look on me? + +DEMETRIUS: +I'll run from thee and hide me in the brakes, +And leave thee to the mercy of wild beasts. + +HELENA: +The wildest hath not such a heart as you. +Run when you will, the story shall be changed: +Apollo flies, and Daphne holds the chase; +The dove pursues the griffin; the mild hind +Makes speed to catch the tiger; bootless speed, +When cowardice pursues and valour flies. + +DEMETRIUS: +I will not stay thy questions; let me go: +Or, if thou follow me, do not believe +But I shall do thee mischief in the wood. + +HELENA: +Ay, in the temple, in the town, the field, +You do me mischief. Fie, Demetrius! +Your wrongs do set a scandal on my sex: +We cannot fight for love, as men may do; +We should be wood and were not made to woo. +I'll follow thee and make a heaven of hell, +To die upon the hand I love so well. + +OBERON: +Fare thee well, nymph: ere he do leave this grove, +Thou shalt fly him and he shall seek thy love. +Hast thou the flower there? Welcome, wanderer. + +PUCK: +Ay, there it is. + +OBERON: +I pray thee, give it me. +I know a bank where the wild thyme blows, +Where oxlips and the nodding violet grows, +Quite over-canopied with luscious woodbine, +With sweet musk-roses and with eglantine: +There sleeps Titania sometime of the night, +Lull'd in these flowers with dances and delight; +And there the snake throws her enamell'd skin, +Weed wide enough to wrap a fairy in: +And with the juice of this I'll streak her eyes, +And make her full of hateful fantasies. +Take thou some of it, and seek through this grove: +A sweet Athenian lady is in love +With a disdainful youth: anoint his eyes; +But do it when the next thing he espies +May be the lady: thou shalt know the man +By the Athenian garments he hath on. +Effect it with some care, that he may prove +More fond on her than she upon her love: +And look thou meet me ere the first cock crow. + +PUCK: +Fear not, my lord, your servant shall do so. + +TITANIA: +Come, now a roundel and a fairy song; +Then, for the third part of a minute, hence; +Some to kill cankers in the musk-rose buds, +Some war with rere-mice for their leathern wings, +To make my small elves coats, and some keep back +The clamorous owl that nightly hoots and wonders +At our quaint spirits. Sing me now asleep; +Then to your offices and let me rest. +You spotted snakes with double tongue, +Thorny hedgehogs, be not seen; +Newts and blind-worms, do no wrong, +Come not near our fairy queen. +Philomel, with melody +Sing in our sweet lullaby; +Lulla, lulla, lullaby, lulla, lulla, lullaby: +Never harm, +Nor spell nor charm, +Come our lovely lady nigh; +So, good night, with lullaby. +Weaving spiders, come not here; +Hence, you long-legg'd spinners, hence! +Beetles black, approach not near; +Worm nor snail, do no offence. +Philomel, with melody, &c. + +Fairy: +Hence, away! now all is well: +One aloof stand sentinel. + +OBERON: +What thou seest when thou dost wake, +Do it for thy true-love take, +Love and languish for his sake: +Be it ounce, or cat, or bear, +Pard, or boar with bristled hair, +In thy eye that shall appear +When thou wakest, it is thy dear: +Wake when some vile thing is near. + +LYSANDER: +Fair love, you faint with wandering in the wood; +And to speak troth, I have forgot our way: +We'll rest us, Hermia, if you think it good, +And tarry for the comfort of the day. + +HERMIA: +Be it so, Lysander: find you out a bed; +For I upon this bank will rest my head. + +LYSANDER: +One turf shall serve as pillow for us both; +One heart, one bed, two bosoms and one troth. + +HERMIA: +Nay, good Lysander; for my sake, my dear, +Lie further off yet, do not lie so near. + +LYSANDER: +O, take the sense, sweet, of my innocence! +Love takes the meaning in love's conference. +I mean, that my heart unto yours is knit +So that but one heart we can make of it; +Two bosoms interchained with an oath; +So then two bosoms and a single troth. +Then by your side no bed-room me deny; +For lying so, Hermia, I do not lie. + +HERMIA: +Lysander riddles very prettily: +Now much beshrew my manners and my pride, +If Hermia meant to say Lysander lied. +But, gentle friend, for love and courtesy +Lie further off; in human modesty, +Such separation as may well be said +Becomes a virtuous bachelor and a maid, +So far be distant; and, good night, sweet friend: +Thy love ne'er alter till thy sweet life end! + +LYSANDER: +Amen, amen, to that fair prayer, say I; +And then end life when I end loyalty! +Here is my bed: sleep give thee all his rest! + +HERMIA: +With half that wish the wisher's eyes be press'd! + +PUCK: +Through the forest have I gone. +But Athenian found I none, +On whose eyes I might approve +This flower's force in stirring love. +Night and silence.--Who is here? +Weeds of Athens he doth wear: +This is he, my master said, +Despised the Athenian maid; +And here the maiden, sleeping sound, +On the dank and dirty ground. +Pretty soul! she durst not lie +Near this lack-love, this kill-courtesy. +Churl, upon thy eyes I throw +All the power this charm doth owe. +When thou wakest, let love forbid +Sleep his seat on thy eyelid: +So awake when I am gone; +For I must now to Oberon. + +HELENA: +Stay, though thou kill me, sweet Demetrius. + +DEMETRIUS: +I charge thee, hence, and do not haunt me thus. + +HELENA: +O, wilt thou darkling leave me? do not so. + +DEMETRIUS: +Stay, on thy peril: I alone will go. + +HELENA: +O, I am out of breath in this fond chase! +The more my prayer, the lesser is my grace. +Happy is Hermia, wheresoe'er she lies; +For she hath blessed and attractive eyes. +How came her eyes so bright? Not with salt tears: +If so, my eyes are oftener wash'd than hers. +No, no, I am as ugly as a bear; +For beasts that meet me run away for fear: +Therefore no marvel though Demetrius +Do, as a monster fly my presence thus. +What wicked and dissembling glass of mine +Made me compare with Hermia's sphery eyne? +But who is here? Lysander! on the ground! +Dead? or asleep? I see no blood, no wound. +Lysander if you live, good sir, awake. + +LYSANDER: + +HELENA: +Do not say so, Lysander; say not so +What though he love your Hermia? Lord, what though? +Yet Hermia still loves you: then be content. + +LYSANDER: +Content with Hermia! No; I do repent +The tedious minutes I with her have spent. +Not Hermia but Helena I love: +Who will not change a raven for a dove? +The will of man is by his reason sway'd; +And reason says you are the worthier maid. +Things growing are not ripe until their season +So I, being young, till now ripe not to reason; +And touching now the point of human skill, +Reason becomes the marshal to my will +And leads me to your eyes, where I o'erlook +Love's stories written in love's richest book. + +HELENA: +Wherefore was I to this keen mockery born? +When at your hands did I deserve this scorn? +Is't not enough, is't not enough, young man, +That I did never, no, nor never can, +Deserve a sweet look from Demetrius' eye, +But you must flout my insufficiency? +Good troth, you do me wrong, good sooth, you do, +In such disdainful manner me to woo. +But fare you well: perforce I must confess +I thought you lord of more true gentleness. +O, that a lady, of one man refused. +Should of another therefore be abused! + +LYSANDER: +She sees not Hermia. Hermia, sleep thou there: +And never mayst thou come Lysander near! +For as a surfeit of the sweetest things +The deepest loathing to the stomach brings, +Or as tie heresies that men do leave +Are hated most of those they did deceive, +So thou, my surfeit and my heresy, +Of all be hated, but the most of me! +And, all my powers, address your love and might +To honour Helen and to be her knight! + +HERMIA: + +BOTTOM: +Are we all met? + +QUINCE: +Pat, pat; and here's a marvellous convenient place +for our rehearsal. This green plot shall be our +stage, this hawthorn-brake our tiring-house; and we +will do it in action as we will do it before the duke. + +BOTTOM: +Peter Quince,-- + +QUINCE: +What sayest thou, bully Bottom? + +BOTTOM: +There are things in this comedy of Pyramus and +Thisby that will never please. First, Pyramus must +draw a sword to kill himself; which the ladies +cannot abide. How answer you that? + +SNOUT: +By'r lakin, a parlous fear. + +STARVELING: +I believe we must leave the killing out, when all is done. + +BOTTOM: +Not a whit: I have a device to make all well. +Write me a prologue; and let the prologue seem to +say, we will do no harm with our swords, and that +Pyramus is not killed indeed; and, for the more +better assurance, tell them that I, Pyramus, am not +Pyramus, but Bottom the weaver: this will put them +out of fear. + +QUINCE: +Well, we will have such a prologue; and it shall be +written in eight and six. + +BOTTOM: +No, make it two more; let it be written in eight and eight. + +SNOUT: +Will not the ladies be afeard of the lion? + +STARVELING: +I fear it, I promise you. + +BOTTOM: +Masters, you ought to consider with yourselves: to +bring in--God shield us!--a lion among ladies, is a +most dreadful thing; for there is not a more fearful +wild-fowl than your lion living; and we ought to +look to 't. + +SNOUT: +Therefore another prologue must tell he is not a lion. + +BOTTOM: +Nay, you must name his name, and half his face must +be seen through the lion's neck: and he himself +must speak through, saying thus, or to the same +defect,--'Ladies,'--or 'Fair-ladies--I would wish +You,'--or 'I would request you,'--or 'I would +entreat you,--not to fear, not to tremble: my life +for yours. If you think I come hither as a lion, it +were pity of my life: no I am no such thing; I am a +man as other men are;' and there indeed let him name +his name, and tell them plainly he is Snug the joiner. + +QUINCE: +Well it shall be so. But there is two hard things; +that is, to bring the moonlight into a chamber; for, +you know, Pyramus and Thisby meet by moonlight. + +SNOUT: +Doth the moon shine that night we play our play? + +BOTTOM: +A calendar, a calendar! look in the almanac; find +out moonshine, find out moonshine. + +QUINCE: +Yes, it doth shine that night. + +BOTTOM: +Why, then may you leave a casement of the great +chamber window, where we play, open, and the moon +may shine in at the casement. + +QUINCE: +Ay; or else one must come in with a bush of thorns +and a lanthorn, and say he comes to disfigure, or to +present, the person of Moonshine. Then, there is +another thing: we must have a wall in the great +chamber; for Pyramus and Thisby says the story, did +talk through the chink of a wall. + +SNOUT: +You can never bring in a wall. What say you, Bottom? + +BOTTOM: +Some man or other must present Wall: and let him +have some plaster, or some loam, or some rough-cast +about him, to signify wall; and let him hold his +fingers thus, and through that cranny shall Pyramus +and Thisby whisper. + +QUINCE: +If that may be, then all is well. Come, sit down, +every mother's son, and rehearse your parts. +Pyramus, you begin: when you have spoken your +speech, enter into that brake: and so every one +according to his cue. + +PUCK: +What hempen home-spuns have we swaggering here, +So near the cradle of the fairy queen? +What, a play toward! I'll be an auditor; +An actor too, perhaps, if I see cause. + +QUINCE: +Speak, Pyramus. Thisby, stand forth. + +BOTTOM: +Thisby, the flowers of odious savours sweet,-- + +QUINCE: +Odours, odours. + +BOTTOM: +--odours savours sweet: +So hath thy breath, my dearest Thisby dear. +But hark, a voice! stay thou but here awhile, +And by and by I will to thee appear. + +PUCK: +A stranger Pyramus than e'er played here. + +FLUTE: +Must I speak now? + +QUINCE: +Ay, marry, must you; for you must understand he goes +but to see a noise that he heard, and is to come again. + +FLUTE: +Most radiant Pyramus, most lily-white of hue, +Of colour like the red rose on triumphant brier, +Most brisky juvenal and eke most lovely Jew, +As true as truest horse that yet would never tire, +I'll meet thee, Pyramus, at Ninny's tomb. + +QUINCE: +'Ninus' tomb,' man: why, you must not speak that +yet; that you answer to Pyramus: you speak all your +part at once, cues and all Pyramus enter: your cue +is past; it is, 'never tire.' + +FLUTE: +O,--As true as truest horse, that yet would +never tire. + +BOTTOM: +If I were fair, Thisby, I were only thine. + +QUINCE: +O monstrous! O strange! we are haunted. Pray, +masters! fly, masters! Help! + +PUCK: +I'll follow you, I'll lead you about a round, +Through bog, through bush, through brake, through brier: +Sometime a horse I'll be, sometime a hound, +A hog, a headless bear, sometime a fire; +And neigh, and bark, and grunt, and roar, and burn, +Like horse, hound, hog, bear, fire, at every turn. + +BOTTOM: +Why do they run away? this is a knavery of them to +make me afeard. + +SNOUT: +O Bottom, thou art changed! what do I see on thee? + +BOTTOM: +What do you see? you see an asshead of your own, do +you? + +QUINCE: +Bless thee, Bottom! bless thee! thou art +translated. + +BOTTOM: +I see their knavery: this is to make an ass of me; +to fright me, if they could. But I will not stir +from this place, do what they can: I will walk up +and down here, and I will sing, that they shall hear +I am not afraid. +The ousel cock so black of hue, +With orange-tawny bill, +The throstle with his note so true, +The wren with little quill,-- + +TITANIA: + +BOTTOM: + +TITANIA: +I pray thee, gentle mortal, sing again: +Mine ear is much enamour'd of thy note; +So is mine eye enthralled to thy shape; +And thy fair virtue's force perforce doth move me +On the first view to say, to swear, I love thee. + +BOTTOM: +Methinks, mistress, you should have little reason +for that: and yet, to say the truth, reason and +love keep little company together now-a-days; the +more the pity that some honest neighbours will not +make them friends. Nay, I can gleek upon occasion. + +TITANIA: +Thou art as wise as thou art beautiful. + +BOTTOM: +Not so, neither: but if I had wit enough to get out +of this wood, I have enough to serve mine own turn. + +TITANIA: +Out of this wood do not desire to go: +Thou shalt remain here, whether thou wilt or no. +I am a spirit of no common rate; +The summer still doth tend upon my state; +And I do love thee: therefore, go with me; +I'll give thee fairies to attend on thee, +And they shall fetch thee jewels from the deep, +And sing while thou on pressed flowers dost sleep; +And I will purge thy mortal grossness so +That thou shalt like an airy spirit go. +Peaseblossom! Cobweb! Moth! and Mustardseed! + +PEASEBLOSSOM: +Ready. + +COBWEB: +And I. + +MOTH: +And I. + +MUSTARDSEED: +And I. + +ALL: +Where shall we go? + +TITANIA: +Be kind and courteous to this gentleman; +Hop in his walks and gambol in his eyes; +Feed him with apricocks and dewberries, +With purple grapes, green figs, and mulberries; +The honey-bags steal from the humble-bees, +And for night-tapers crop their waxen thighs +And light them at the fiery glow-worm's eyes, +To have my love to bed and to arise; +And pluck the wings from Painted butterflies +To fan the moonbeams from his sleeping eyes: +Nod to him, elves, and do him courtesies. + +PEASEBLOSSOM: +Hail, mortal! + +COBWEB: +Hail! + +MOTH: +Hail! + +MUSTARDSEED: +Hail! + +BOTTOM: +I cry your worship's mercy, heartily: I beseech your +worship's name. + +COBWEB: +Cobweb. + +BOTTOM: +I shall desire you of more acquaintance, good Master +Cobweb: if I cut my finger, I shall make bold with +you. Your name, honest gentleman? + +PEASEBLOSSOM: +Peaseblossom. + +BOTTOM: +I pray you, commend me to Mistress Squash, your +mother, and to Master Peascod, your father. Good +Master Peaseblossom, I shall desire you of more +acquaintance too. Your name, I beseech you, sir? + +MUSTARDSEED: +Mustardseed. + +BOTTOM: +Good Master Mustardseed, I know your patience well: +that same cowardly, giant-like ox-beef hath +devoured many a gentleman of your house: I promise +you your kindred had made my eyes water ere now. I +desire your more acquaintance, good Master +Mustardseed. + +TITANIA: +Come, wait upon him; lead him to my bower. +The moon methinks looks with a watery eye; +And when she weeps, weeps every little flower, +Lamenting some enforced chastity. +Tie up my love's tongue bring him silently. + +OBERON: +I wonder if Titania be awaked; +Then, what it was that next came in her eye, +Which she must dote on in extremity. +Here comes my messenger. +How now, mad spirit! +What night-rule now about this haunted grove? + +PUCK: +My mistress with a monster is in love. +Near to her close and consecrated bower, +While she was in her dull and sleeping hour, +A crew of patches, rude mechanicals, +That work for bread upon Athenian stalls, +Were met together to rehearse a play +Intended for great Theseus' nuptial-day. +The shallowest thick-skin of that barren sort, +Who Pyramus presented, in their sport +Forsook his scene and enter'd in a brake +When I did him at this advantage take, +An ass's nole I fixed on his head: +Anon his Thisbe must be answered, +And forth my mimic comes. When they him spy, +As wild geese that the creeping fowler eye, +Or russet-pated choughs, many in sort, +Rising and cawing at the gun's report, +Sever themselves and madly sweep the sky, +So, at his sight, away his fellows fly; +And, at our stamp, here o'er and o'er one falls; +He murder cries and help from Athens calls. +Their sense thus weak, lost with their fears +thus strong, +Made senseless things begin to do them wrong; +For briers and thorns at their apparel snatch; +Some sleeves, some hats, from yielders all +things catch. +I led them on in this distracted fear, +And left sweet Pyramus translated there: +When in that moment, so it came to pass, +Titania waked and straightway loved an ass. + +OBERON: +This falls out better than I could devise. +But hast thou yet latch'd the Athenian's eyes +With the love-juice, as I did bid thee do? + +PUCK: +I took him sleeping,--that is finish'd too,-- +And the Athenian woman by his side: +That, when he waked, of force she must be eyed. + +OBERON: +Stand close: this is the same Athenian. + +PUCK: +This is the woman, but not this the man. + +DEMETRIUS: +O, why rebuke you him that loves you so? +Lay breath so bitter on your bitter foe. + +HERMIA: +Now I but chide; but I should use thee worse, +For thou, I fear, hast given me cause to curse, +If thou hast slain Lysander in his sleep, +Being o'er shoes in blood, plunge in the deep, +And kill me too. +The sun was not so true unto the day +As he to me: would he have stolen away +From sleeping Hermia? I'll believe as soon +This whole earth may be bored and that the moon +May through the centre creep and so displease +Her brother's noontide with Antipodes. +It cannot be but thou hast murder'd him; +So should a murderer look, so dead, so grim. + +DEMETRIUS: +So should the murder'd look, and so should I, +Pierced through the heart with your stern cruelty: +Yet you, the murderer, look as bright, as clear, +As yonder Venus in her glimmering sphere. + +HERMIA: +What's this to my Lysander? where is he? +Ah, good Demetrius, wilt thou give him me? + +DEMETRIUS: +I had rather give his carcass to my hounds. + +HERMIA: +Out, dog! out, cur! thou drivest me past the bounds +Of maiden's patience. Hast thou slain him, then? +Henceforth be never number'd among men! +O, once tell true, tell true, even for my sake! +Durst thou have look'd upon him being awake, +And hast thou kill'd him sleeping? O brave touch! +Could not a worm, an adder, do so much? +An adder did it; for with doubler tongue +Than thine, thou serpent, never adder stung. + +DEMETRIUS: +You spend your passion on a misprised mood: +I am not guilty of Lysander's blood; +Nor is he dead, for aught that I can tell. + +HERMIA: +I pray thee, tell me then that he is well. + +DEMETRIUS: +An if I could, what should I get therefore? + +HERMIA: +A privilege never to see me more. +And from thy hated presence part I so: +See me no more, whether he be dead or no. + +DEMETRIUS: +There is no following her in this fierce vein: +Here therefore for a while I will remain. +So sorrow's heaviness doth heavier grow +For debt that bankrupt sleep doth sorrow owe: +Which now in some slight measure it will pay, +If for his tender here I make some stay. + +OBERON: +What hast thou done? thou hast mistaken quite +And laid the love-juice on some true-love's sight: +Of thy misprision must perforce ensue +Some true love turn'd and not a false turn'd true. + +PUCK: +Then fate o'er-rules, that, one man holding troth, +A million fail, confounding oath on oath. + +OBERON: +About the wood go swifter than the wind, +And Helena of Athens look thou find: +All fancy-sick she is and pale of cheer, +With sighs of love, that costs the fresh blood dear: +By some illusion see thou bring her here: +I'll charm his eyes against she do appear. + +PUCK: +I go, I go; look how I go, +Swifter than arrow from the Tartar's bow. + +OBERON: +Flower of this purple dye, +Hit with Cupid's archery, +Sink in apple of his eye. +When his love he doth espy, +Let her shine as gloriously +As the Venus of the sky. +When thou wakest, if she be by, +Beg of her for remedy. + +PUCK: +Captain of our fairy band, +Helena is here at hand; +And the youth, mistook by me, +Pleading for a lover's fee. +Shall we their fond pageant see? +Lord, what fools these mortals be! + +OBERON: +Stand aside: the noise they make +Will cause Demetrius to awake. + +PUCK: +Then will two at once woo one; +That must needs be sport alone; +And those things do best please me +That befal preposterously. + +LYSANDER: +Why should you think that I should woo in scorn? +Scorn and derision never come in tears: +Look, when I vow, I weep; and vows so born, +In their nativity all truth appears. +How can these things in me seem scorn to you, +Bearing the badge of faith, to prove them true? + +HELENA: +You do advance your cunning more and more. +When truth kills truth, O devilish-holy fray! +These vows are Hermia's: will you give her o'er? +Weigh oath with oath, and you will nothing weigh: +Your vows to her and me, put in two scales, +Will even weigh, and both as light as tales. + +LYSANDER: +I had no judgment when to her I swore. + +HELENA: +Nor none, in my mind, now you give her o'er. + +LYSANDER: +Demetrius loves her, and he loves not you. + +DEMETRIUS: + +HELENA: +O spite! O hell! I see you all are bent +To set against me for your merriment: +If you we re civil and knew courtesy, +You would not do me thus much injury. +Can you not hate me, as I know you do, +But you must join in souls to mock me too? +If you were men, as men you are in show, +You would not use a gentle lady so; +To vow, and swear, and superpraise my parts, +When I am sure you hate me with your hearts. +You both are rivals, and love Hermia; +And now both rivals, to mock Helena: +A trim exploit, a manly enterprise, +To conjure tears up in a poor maid's eyes +With your derision! none of noble sort +Would so offend a virgin, and extort +A poor soul's patience, all to make you sport. + +LYSANDER: +You are unkind, Demetrius; be not so; +For you love Hermia; this you know I know: +And here, with all good will, with all my heart, +In Hermia's love I yield you up my part; +And yours of Helena to me bequeath, +Whom I do love and will do till my death. + +HELENA: +Never did mockers waste more idle breath. + +DEMETRIUS: +Lysander, keep thy Hermia; I will none: +If e'er I loved her, all that love is gone. +My heart to her but as guest-wise sojourn'd, +And now to Helen is it home return'd, +There to remain. + +LYSANDER: +Helen, it is not so. + +DEMETRIUS: +Disparage not the faith thou dost not know, +Lest, to thy peril, thou aby it dear. +Look, where thy love comes; yonder is thy dear. + +HERMIA: +Dark night, that from the eye his function takes, +The ear more quick of apprehension makes; +Wherein it doth impair the seeing sense, +It pays the hearing double recompense. +Thou art not by mine eye, Lysander, found; +Mine ear, I thank it, brought me to thy sound +But why unkindly didst thou leave me so? + +LYSANDER: +Why should he stay, whom love doth press to go? + +HERMIA: +What love could press Lysander from my side? + +LYSANDER: +Lysander's love, that would not let him bide, +Fair Helena, who more engilds the night +Than all you fiery oes and eyes of light. +Why seek'st thou me? could not this make thee know, +The hate I bear thee made me leave thee so? + +HERMIA: +You speak not as you think: it cannot be. + +HELENA: +Lo, she is one of this confederacy! +Now I perceive they have conjoin'd all three +To fashion this false sport, in spite of me. +Injurious Hermia! most ungrateful maid! +Have you conspired, have you with these contrived +To bait me with this foul derision? +Is all the counsel that we two have shared, +The sisters' vows, the hours that we have spent, +When we have chid the hasty-footed time +For parting us,--O, is it all forgot? +All school-days' friendship, childhood innocence? +We, Hermia, like two artificial gods, +Have with our needles created both one flower, +Both on one sampler, sitting on one cushion, +Both warbling of one song, both in one key, +As if our hands, our sides, voices and minds, +Had been incorporate. So we grow together, +Like to a double cherry, seeming parted, +But yet an union in partition; +Two lovely berries moulded on one stem; +So, with two seeming bodies, but one heart; +Two of the first, like coats in heraldry, +Due but to one and crowned with one crest. +And will you rent our ancient love asunder, +To join with men in scorning your poor friend? +It is not friendly, 'tis not maidenly: +Our sex, as well as I, may chide you for it, +Though I alone do feel the injury. + +HERMIA: +I am amazed at your passionate words. +I scorn you not: it seems that you scorn me. + +HELENA: +Have you not set Lysander, as in scorn, +To follow me and praise my eyes and face? +And made your other love, Demetrius, +Who even but now did spurn me with his foot, +To call me goddess, nymph, divine and rare, +Precious, celestial? Wherefore speaks he this +To her he hates? and wherefore doth Lysander +Deny your love, so rich within his soul, +And tender me, forsooth, affection, +But by your setting on, by your consent? +What thought I be not so in grace as you, +So hung upon with love, so fortunate, +But miserable most, to love unloved? +This you should pity rather than despise. + +HERNIA: +I understand not what you mean by this. + +HELENA: +Ay, do, persever, counterfeit sad looks, +Make mouths upon me when I turn my back; +Wink each at other; hold the sweet jest up: +This sport, well carried, shall be chronicled. +If you have any pity, grace, or manners, +You would not make me such an argument. +But fare ye well: 'tis partly my own fault; +Which death or absence soon shall remedy. + +LYSANDER: +Stay, gentle Helena; hear my excuse: +My love, my life my soul, fair Helena! + +HELENA: +O excellent! + +HERMIA: +Sweet, do not scorn her so. + +DEMETRIUS: +If she cannot entreat, I can compel. + +LYSANDER: +Thou canst compel no more than she entreat: +Thy threats have no more strength than her weak prayers. +Helen, I love thee; by my life, I do: +I swear by that which I will lose for thee, +To prove him false that says I love thee not. + +DEMETRIUS: +I say I love thee more than he can do. + +LYSANDER: +If thou say so, withdraw, and prove it too. + +DEMETRIUS: +Quick, come! + +HERMIA: +Lysander, whereto tends all this? + +LYSANDER: +Away, you Ethiope! + +DEMETRIUS: +No, no; he'll +Seem to break loose; take on as you would follow, +But yet come not: you are a tame man, go! + +LYSANDER: +Hang off, thou cat, thou burr! vile thing, let loose, +Or I will shake thee from me like a serpent! + +HERMIA: +Why are you grown so rude? what change is this? +Sweet love,-- + +LYSANDER: +Thy love! out, tawny Tartar, out! +Out, loathed medicine! hated potion, hence! + +HERMIA: +Do you not jest? + +HELENA: +Yes, sooth; and so do you. + +LYSANDER: +Demetrius, I will keep my word with thee. + +DEMETRIUS: +I would I had your bond, for I perceive +A weak bond holds you: I'll not trust your word. + +LYSANDER: +What, should I hurt her, strike her, kill her dead? +Although I hate her, I'll not harm her so. + +HERMIA: +What, can you do me greater harm than hate? +Hate me! wherefore? O me! what news, my love! +Am not I Hermia? are not you Lysander? +I am as fair now as I was erewhile. +Since night you loved me; yet since night you left +me: +Why, then you left me--O, the gods forbid!-- +In earnest, shall I say? + +LYSANDER: +Ay, by my life; +And never did desire to see thee more. +Therefore be out of hope, of question, of doubt; +Be certain, nothing truer; 'tis no jest +That I do hate thee and love Helena. + +HERMIA: +O me! you juggler! you canker-blossom! +You thief of love! what, have you come by night +And stolen my love's heart from him? + +HELENA: +Fine, i'faith! +Have you no modesty, no maiden shame, +No touch of bashfulness? What, will you tear +Impatient answers from my gentle tongue? +Fie, fie! you counterfeit, you puppet, you! + +HERMIA: +Puppet? why so? ay, that way goes the game. +Now I perceive that she hath made compare +Between our statures; she hath urged her height; +And with her personage, her tall personage, +Her height, forsooth, she hath prevail'd with him. +And are you grown so high in his esteem; +Because I am so dwarfish and so low? +How low am I, thou painted maypole? speak; +How low am I? I am not yet so low +But that my nails can reach unto thine eyes. + +HELENA: +I pray you, though you mock me, gentlemen, +Let her not hurt me: I was never curst; +I have no gift at all in shrewishness; +I am a right maid for my cowardice: +Let her not strike me. You perhaps may think, +Because she is something lower than myself, +That I can match her. + +HERMIA: +Lower! hark, again. + +HELENA: +Good Hermia, do not be so bitter with me. +I evermore did love you, Hermia, +Did ever keep your counsels, never wrong'd you; +Save that, in love unto Demetrius, +I told him of your stealth unto this wood. +He follow'd you; for love I follow'd him; +But he hath chid me hence and threaten'd me +To strike me, spurn me, nay, to kill me too: +And now, so you will let me quiet go, +To Athens will I bear my folly back +And follow you no further: let me go: +You see how simple and how fond I am. + +HERMIA: +Why, get you gone: who is't that hinders you? + +HELENA: +A foolish heart, that I leave here behind. + +HERMIA: +What, with Lysander? + +HELENA: +With Demetrius. + +LYSANDER: +Be not afraid; she shall not harm thee, Helena. + +DEMETRIUS: +No, sir, she shall not, though you take her part. + +HELENA: +O, when she's angry, she is keen and shrewd! +She was a vixen when she went to school; +And though she be but little, she is fierce. + +HERMIA: +'Little' again! nothing but 'low' and 'little'! +Why will you suffer her to flout me thus? +Let me come to her. + +LYSANDER: +Get you gone, you dwarf; +You minimus, of hindering knot-grass made; +You bead, you acorn. + +DEMETRIUS: +You are too officious +In her behalf that scorns your services. +Let her alone: speak not of Helena; +Take not her part; for, if thou dost intend +Never so little show of love to her, +Thou shalt aby it. + +LYSANDER: +Now she holds me not; +Now follow, if thou darest, to try whose right, +Of thine or mine, is most in Helena. + +DEMETRIUS: +Follow! nay, I'll go with thee, cheek by jole. + +HERMIA: +You, mistress, all this coil is 'long of you: +Nay, go not back. + +HELENA: +I will not trust you, I, +Nor longer stay in your curst company. +Your hands than mine are quicker for a fray, +My legs are longer though, to run away. + +HERMIA: +I am amazed, and know not what to say. + +OBERON: +This is thy negligence: still thou mistakest, +Or else committ'st thy knaveries wilfully. + +PUCK: +Believe me, king of shadows, I mistook. +Did not you tell me I should know the man +By the Athenian garment be had on? +And so far blameless proves my enterprise, +That I have 'nointed an Athenian's eyes; +And so far am I glad it so did sort +As this their jangling I esteem a sport. + +OBERON: +Thou see'st these lovers seek a place to fight: +Hie therefore, Robin, overcast the night; +The starry welkin cover thou anon +With drooping fog as black as Acheron, +And lead these testy rivals so astray +As one come not within another's way. +Like to Lysander sometime frame thy tongue, +Then stir Demetrius up with bitter wrong; +And sometime rail thou like Demetrius; +And from each other look thou lead them thus, +Till o'er their brows death-counterfeiting sleep +With leaden legs and batty wings doth creep: +Then crush this herb into Lysander's eye; +Whose liquor hath this virtuous property, +To take from thence all error with his might, +And make his eyeballs roll with wonted sight. +When they next wake, all this derision +Shall seem a dream and fruitless vision, +And back to Athens shall the lovers wend, +With league whose date till death shall never end. +Whiles I in this affair do thee employ, +I'll to my queen and beg her Indian boy; +And then I will her charmed eye release +From monster's view, and all things shall be peace. + +PUCK: +My fairy lord, this must be done with haste, +For night's swift dragons cut the clouds full fast, +And yonder shines Aurora's harbinger; +At whose approach, ghosts, wandering here and there, +Troop home to churchyards: damned spirits all, +That in crossways and floods have burial, +Already to their wormy beds are gone; +For fear lest day should look their shames upon, +They willfully themselves exile from light +And must for aye consort with black-brow'd night. + +OBERON: +But we are spirits of another sort: +I with the morning's love have oft made sport, +And, like a forester, the groves may tread, +Even till the eastern gate, all fiery-red, +Opening on Neptune with fair blessed beams, +Turns into yellow gold his salt green streams. +But, notwithstanding, haste; make no delay: +We may effect this business yet ere day. + +PUCK: +Up and down, up and down, +I will lead them up and down: +I am fear'd in field and town: +Goblin, lead them up and down. +Here comes one. + +LYSANDER: +Where art thou, proud Demetrius? speak thou now. + +PUCK: +Here, villain; drawn and ready. Where art thou? + +LYSANDER: +I will be with thee straight. + +PUCK: +Follow me, then, +To plainer ground. + +DEMETRIUS: +Lysander! speak again: +Thou runaway, thou coward, art thou fled? +Speak! In some bush? Where dost thou hide thy head? + +PUCK: +Thou coward, art thou bragging to the stars, +Telling the bushes that thou look'st for wars, +And wilt not come? Come, recreant; come, thou child; +I'll whip thee with a rod: he is defiled +That draws a sword on thee. + +DEMETRIUS: +Yea, art thou there? + +PUCK: +Follow my voice: we'll try no manhood here. + +LYSANDER: +He goes before me and still dares me on: +When I come where he calls, then he is gone. +The villain is much lighter-heel'd than I: +I follow'd fast, but faster he did fly; +That fallen am I in dark uneven way, +And here will rest me. +Come, thou gentle day! +For if but once thou show me thy grey light, +I'll find Demetrius and revenge this spite. + +PUCK: +Ho, ho, ho! Coward, why comest thou not? + +DEMETRIUS: +Abide me, if thou darest; for well I wot +Thou runn'st before me, shifting every place, +And darest not stand, nor look me in the face. +Where art thou now? + +PUCK: +Come hither: I am here. + +DEMETRIUS: +Nay, then, thou mock'st me. Thou shalt buy this dear, +If ever I thy face by daylight see: +Now, go thy way. Faintness constraineth me +To measure out my length on this cold bed. +By day's approach look to be visited. + +HELENA: +O weary night, O long and tedious night, +Abate thy hour! Shine comforts from the east, +That I may back to Athens by daylight, +From these that my poor company detest: +And sleep, that sometimes shuts up sorrow's eye, +Steal me awhile from mine own company. + +PUCK: +Yet but three? Come one more; +Two of both kinds make up four. +Here she comes, curst and sad: +Cupid is a knavish lad, +Thus to make poor females mad. + +HERMIA: +Never so weary, never so in woe, +Bedabbled with the dew and torn with briers, +I can no further crawl, no further go; +My legs can keep no pace with my desires. +Here will I rest me till the break of day. +Heavens shield Lysander, if they mean a fray! + +PUCK: +On the ground +Sleep sound: +I'll apply +To your eye, +Gentle lover, remedy. +When thou wakest, +Thou takest +True delight +In the sight +Of thy former lady's eye: +And the country proverb known, +That every man should take his own, +In your waking shall be shown: +Jack shall have Jill; +Nought shall go ill; +The man shall have his mare again, and all shall be well. + +TITANIA: +Come, sit thee down upon this flowery bed, +While I thy amiable cheeks do coy, +And stick musk-roses in thy sleek smooth head, +And kiss thy fair large ears, my gentle joy. + +BOTTOM: +Where's Peaseblossom? + +PEASEBLOSSOM: +Ready. + +BOTTOM: +Scratch my head Peaseblossom. Where's Mounsieur Cobweb? + +COBWEB: +Ready. + +BOTTOM: +Mounsieur Cobweb, good mounsieur, get you your +weapons in your hand, and kill me a red-hipped +humble-bee on the top of a thistle; and, good +mounsieur, bring me the honey-bag. Do not fret +yourself too much in the action, mounsieur; and, +good mounsieur, have a care the honey-bag break not; +I would be loath to have you overflown with a +honey-bag, signior. Where's Mounsieur Mustardseed? + +MUSTARDSEED: +Ready. + +BOTTOM: +Give me your neaf, Mounsieur Mustardseed. Pray you, +leave your courtesy, good mounsieur. + +MUSTARDSEED: +What's your Will? + +BOTTOM: +Nothing, good mounsieur, but to help Cavalery Cobweb +to scratch. I must to the barber's, monsieur; for +methinks I am marvellous hairy about the face; and I +am such a tender ass, if my hair do but tickle me, +I must scratch. + +TITANIA: +What, wilt thou hear some music, +my sweet love? + +BOTTOM: +I have a reasonable good ear in music. Let's have +the tongs and the bones. + +TITANIA: +Or say, sweet love, what thou desirest to eat. + +BOTTOM: +Truly, a peck of provender: I could munch your good +dry oats. Methinks I have a great desire to a bottle +of hay: good hay, sweet hay, hath no fellow. + +TITANIA: +I have a venturous fairy that shall seek +The squirrel's hoard, and fetch thee new nuts. + +BOTTOM: +I had rather have a handful or two of dried peas. +But, I pray you, let none of your people stir me: I +have an exposition of sleep come upon me. + +TITANIA: +Sleep thou, and I will wind thee in my arms. +Fairies, begone, and be all ways away. +So doth the woodbine the sweet honeysuckle +Gently entwist; the female ivy so +Enrings the barky fingers of the elm. +O, how I love thee! how I dote on thee! + +OBERON: + +TITANIA: +My Oberon! what visions have I seen! +Methought I was enamour'd of an ass. + +OBERON: +There lies your love. + +TITANIA: +How came these things to pass? +O, how mine eyes do loathe his visage now! + +OBERON: +Silence awhile. Robin, take off this head. +Titania, music call; and strike more dead +Than common sleep of all these five the sense. + +TITANIA: +Music, ho! music, such as charmeth sleep! + +PUCK: +Now, when thou wakest, with thine +own fool's eyes peep. + +OBERON: +Sound, music! Come, my queen, take hands with me, +And rock the ground whereon these sleepers be. +Now thou and I are new in amity, +And will to-morrow midnight solemnly +Dance in Duke Theseus' house triumphantly, +And bless it to all fair prosperity: +There shall the pairs of faithful lovers be +Wedded, with Theseus, all in jollity. + +PUCK: +Fairy king, attend, and mark: +I do hear the morning lark. + +OBERON: +Then, my queen, in silence sad, +Trip we after the night's shade: +We the globe can compass soon, +Swifter than the wandering moon. + +TITANIA: +Come, my lord, and in our flight +Tell me how it came this night +That I sleeping here was found +With these mortals on the ground. + +THESEUS: +Go, one of you, find out the forester; +For now our observation is perform'd; +And since we have the vaward of the day, +My love shall hear the music of my hounds. +Uncouple in the western valley; let them go: +Dispatch, I say, and find the forester. +We will, fair queen, up to the mountain's top, +And mark the musical confusion +Of hounds and echo in conjunction. + +HIPPOLYTA: +I was with Hercules and Cadmus once, +When in a wood of Crete they bay'd the bear +With hounds of Sparta: never did I hear +Such gallant chiding: for, besides the groves, +The skies, the fountains, every region near +Seem'd all one mutual cry: I never heard +So musical a discord, such sweet thunder. + +THESEUS: +My hounds are bred out of the Spartan kind, +So flew'd, so sanded, and their heads are hung +With ears that sweep away the morning dew; +Crook-knee'd, and dew-lapp'd like Thessalian bulls; +Slow in pursuit, but match'd in mouth like bells, +Each under each. A cry more tuneable +Was never holla'd to, nor cheer'd with horn, +In Crete, in Sparta, nor in Thessaly: +Judge when you hear. But, soft! what nymphs are these? + +EGEUS: +My lord, this is my daughter here asleep; +And this, Lysander; this Demetrius is; +This Helena, old Nedar's Helena: +I wonder of their being here together. + +THESEUS: +No doubt they rose up early to observe +The rite of May, and hearing our intent, +Came here in grace our solemnity. +But speak, Egeus; is not this the day +That Hermia should give answer of her choice? + +EGEUS: +It is, my lord. + +THESEUS: +Go, bid the huntsmen wake them with their horns. +Good morrow, friends. Saint Valentine is past: +Begin these wood-birds but to couple now? + +LYSANDER: +Pardon, my lord. + +THESEUS: +I pray you all, stand up. +I know you two are rival enemies: +How comes this gentle concord in the world, +That hatred is so far from jealousy, +To sleep by hate, and fear no enmity? + +LYSANDER: +My lord, I shall reply amazedly, +Half sleep, half waking: but as yet, I swear, +I cannot truly say how I came here; +But, as I think,--for truly would I speak, +And now do I bethink me, so it is,-- +I came with Hermia hither: our intent +Was to be gone from Athens, where we might, +Without the peril of the Athenian law. + +EGEUS: +Enough, enough, my lord; you have enough: +I beg the law, the law, upon his head. +They would have stolen away; they would, Demetrius, +Thereby to have defeated you and me, +You of your wife and me of my consent, +Of my consent that she should be your wife. + +DEMETRIUS: +My lord, fair Helen told me of their stealth, +Of this their purpose hither to this wood; +And I in fury hither follow'd them, +Fair Helena in fancy following me. +But, my good lord, I wot not by what power,-- +But by some power it is,--my love to Hermia, +Melted as the snow, seems to me now +As the remembrance of an idle gaud +Which in my childhood I did dote upon; +And all the faith, the virtue of my heart, +The object and the pleasure of mine eye, +Is only Helena. To her, my lord, +Was I betroth'd ere I saw Hermia: +But, like in sickness, did I loathe this food; +But, as in health, come to my natural taste, +Now I do wish it, love it, long for it, +And will for evermore be true to it. + +THESEUS: +Fair lovers, you are fortunately met: +Of this discourse we more will hear anon. +Egeus, I will overbear your will; +For in the temple by and by with us +These couples shall eternally be knit: +And, for the morning now is something worn, +Our purposed hunting shall be set aside. +Away with us to Athens; three and three, +We'll hold a feast in great solemnity. +Come, Hippolyta. + +DEMETRIUS: +These things seem small and undistinguishable, + +HERMIA: +Methinks I see these things with parted eye, +When every thing seems double. + +HELENA: +So methinks: +And I have found Demetrius like a jewel, +Mine own, and not mine own. + +DEMETRIUS: +Are you sure +That we are awake? It seems to me +That yet we sleep, we dream. Do not you think +The duke was here, and bid us follow him? + +HERMIA: +Yea; and my father. + +HELENA: +And Hippolyta. + +LYSANDER: +And he did bid us follow to the temple. + +DEMETRIUS: +Why, then, we are awake: let's follow him +And by the way let us recount our dreams. + +BOTTOM: + +QUINCE: +Have you sent to Bottom's house? is he come home yet? + +STARVELING: +He cannot be heard of. Out of doubt he is +transported. + +FLUTE: +If he come not, then the play is marred: it goes +not forward, doth it? + +QUINCE: +It is not possible: you have not a man in all +Athens able to discharge Pyramus but he. + +FLUTE: +No, he hath simply the best wit of any handicraft +man in Athens. + +QUINCE: +Yea and the best person too; and he is a very +paramour for a sweet voice. + +FLUTE: +You must say 'paragon:' a paramour is, God bless us, +a thing of naught. + +SNUG: +Masters, the duke is coming from the temple, and +there is two or three lords and ladies more married: +if our sport had gone forward, we had all been made +men. + +FLUTE: +O sweet bully Bottom! Thus hath he lost sixpence a +day during his life; he could not have 'scaped +sixpence a day: an the duke had not given him +sixpence a day for playing Pyramus, I'll be hanged; +he would have deserved it: sixpence a day in +Pyramus, or nothing. + +BOTTOM: +Where are these lads? where are these hearts? + +QUINCE: +Bottom! O most courageous day! O most happy hour! + +BOTTOM: +Masters, I am to discourse wonders: but ask me not +what; for if I tell you, I am no true Athenian. I +will tell you every thing, right as it fell out. + +QUINCE: +Let us hear, sweet Bottom. + +BOTTOM: +Not a word of me. All that I will tell you is, that +the duke hath dined. Get your apparel together, +good strings to your beards, new ribbons to your +pumps; meet presently at the palace; every man look +o'er his part; for the short and the long is, our +play is preferred. In any case, let Thisby have +clean linen; and let not him that plays the lion +pair his nails, for they shall hang out for the +lion's claws. And, most dear actors, eat no onions +nor garlic, for we are to utter sweet breath; and I +do not doubt but to hear them say, it is a sweet +comedy. No more words: away! go, away! + +HIPPOLYTA: +'Tis strange my Theseus, that these +lovers speak of. + +THESEUS: +More strange than true: I never may believe +These antique fables, nor these fairy toys. +Lovers and madmen have such seething brains, +Such shaping fantasies, that apprehend +More than cool reason ever comprehends. +The lunatic, the lover and the poet +Are of imagination all compact: +One sees more devils than vast hell can hold, +That is, the madman: the lover, all as frantic, +Sees Helen's beauty in a brow of Egypt: +The poet's eye, in fine frenzy rolling, +Doth glance from heaven to earth, from earth to heaven; +And as imagination bodies forth +The forms of things unknown, the poet's pen +Turns them to shapes and gives to airy nothing +A local habitation and a name. +Such tricks hath strong imagination, +That if it would but apprehend some joy, +It comprehends some bringer of that joy; +Or in the night, imagining some fear, +How easy is a bush supposed a bear! + +HIPPOLYTA: +But all the story of the night told over, +And all their minds transfigured so together, +More witnesseth than fancy's images +And grows to something of great constancy; +But, howsoever, strange and admirable. + +THESEUS: +Here come the lovers, full of joy and mirth. +Joy, gentle friends! joy and fresh days of love +Accompany your hearts! + +LYSANDER: +More than to us +Wait in your royal walks, your board, your bed! + +THESEUS: +Come now; what masques, what dances shall we have, +To wear away this long age of three hours +Between our after-supper and bed-time? +Where is our usual manager of mirth? +What revels are in hand? Is there no play, +To ease the anguish of a torturing hour? +Call Philostrate. + +PHILOSTRATE: +Here, mighty Theseus. + +THESEUS: +Say, what abridgement have you for this evening? +What masque? what music? How shall we beguile +The lazy time, if not with some delight? + +PHILOSTRATE: +There is a brief how many sports are ripe: +Make choice of which your highness will see first. + +THESEUS: + +PHILOSTRATE: +A play there is, my lord, some ten words long, +Which is as brief as I have known a play; +But by ten words, my lord, it is too long, +Which makes it tedious; for in all the play +There is not one word apt, one player fitted: +And tragical, my noble lord, it is; +For Pyramus therein doth kill himself. +Which, when I saw rehearsed, I must confess, +Made mine eyes water; but more merry tears +The passion of loud laughter never shed. + +THESEUS: +What are they that do play it? + +PHILOSTRATE: +Hard-handed men that work in Athens here, +Which never labour'd in their minds till now, +And now have toil'd their unbreathed memories +With this same play, against your nuptial. + +THESEUS: +And we will hear it. + +PHILOSTRATE: +No, my noble lord; +It is not for you: I have heard it over, +And it is nothing, nothing in the world; +Unless you can find sport in their intents, +Extremely stretch'd and conn'd with cruel pain, +To do you service. + +THESEUS: +I will hear that play; +For never anything can be amiss, +When simpleness and duty tender it. +Go, bring them in: and take your places, ladies. + +HIPPOLYTA: +I love not to see wretchedness o'er charged +And duty in his service perishing. + +THESEUS: +Why, gentle sweet, you shall see no such thing. + +HIPPOLYTA: +He says they can do nothing in this kind. + +THESEUS: +The kinder we, to give them thanks for nothing. +Our sport shall be to take what they mistake: +And what poor duty cannot do, noble respect +Takes it in might, not merit. +Where I have come, great clerks have purposed +To greet me with premeditated welcomes; +Where I have seen them shiver and look pale, +Make periods in the midst of sentences, +Throttle their practised accent in their fears +And in conclusion dumbly have broke off, +Not paying me a welcome. Trust me, sweet, +Out of this silence yet I pick'd a welcome; +And in the modesty of fearful duty +I read as much as from the rattling tongue +Of saucy and audacious eloquence. +Love, therefore, and tongue-tied simplicity +In least speak most, to my capacity. + +PHILOSTRATE: +So please your grace, the Prologue is address'd. + +THESEUS: +Let him approach. + +Prologue: +If we offend, it is with our good will. +That you should think, we come not to offend, +But with good will. To show our simple skill, +That is the true beginning of our end. +Consider then we come but in despite. +We do not come as minding to contest you, +Our true intent is. All for your delight +We are not here. That you should here repent you, +The actors are at hand and by their show +You shall know all that you are like to know. + +THESEUS: +This fellow doth not stand upon points. + +LYSANDER: +He hath rid his prologue like a rough colt; he knows +not the stop. A good moral, my lord: it is not +enough to speak, but to speak true. + +HIPPOLYTA: +Indeed he hath played on his prologue like a child +on a recorder; a sound, but not in government. + +THESEUS: +His speech, was like a tangled chain; nothing +impaired, but all disordered. Who is next? + +Prologue: +Gentles, perchance you wonder at this show; +But wonder on, till truth make all things plain. +This man is Pyramus, if you would know; +This beauteous lady Thisby is certain. +This man, with lime and rough-cast, doth present +Wall, that vile Wall which did these lovers sunder; +And through Wall's chink, poor souls, they are content +To whisper. At the which let no man wonder. +This man, with lanthorn, dog, and bush of thorn, +Presenteth Moonshine; for, if you will know, +By moonshine did these lovers think no scorn +To meet at Ninus' tomb, there, there to woo. +This grisly beast, which Lion hight by name, +The trusty Thisby, coming first by night, +Did scare away, or rather did affright; +And, as she fled, her mantle she did fall, +Which Lion vile with bloody mouth did stain. +Anon comes Pyramus, sweet youth and tall, +And finds his trusty Thisby's mantle slain: +Whereat, with blade, with bloody blameful blade, +He bravely broach'd is boiling bloody breast; +And Thisby, tarrying in mulberry shade, +His dagger drew, and died. For all the rest, +Let Lion, Moonshine, Wall, and lovers twain +At large discourse, while here they do remain. + +THESEUS: +I wonder if the lion be to speak. + +DEMETRIUS: +No wonder, my lord: one lion may, when many asses do. + +Wall: +In this same interlude it doth befall +That I, one Snout by name, present a wall; +And such a wall, as I would have you think, +That had in it a crannied hole or chink, +Through which the lovers, Pyramus and Thisby, +Did whisper often very secretly. +This loam, this rough-cast and this stone doth show +That I am that same wall; the truth is so: +And this the cranny is, right and sinister, +Through which the fearful lovers are to whisper. + +THESEUS: +Would you desire lime and hair to speak better? + +DEMETRIUS: +It is the wittiest partition that ever I heard +discourse, my lord. + +THESEUS: +Pyramus draws near the wall: silence! + +Pyramus: +O grim-look'd night! O night with hue so black! +O night, which ever art when day is not! +O night, O night! alack, alack, alack, +I fear my Thisby's promise is forgot! +And thou, O wall, O sweet, O lovely wall, +That stand'st between her father's ground and mine! +Thou wall, O wall, O sweet and lovely wall, +Show me thy chink, to blink through with mine eyne! +Thanks, courteous wall: Jove shield thee well for this! +But what see I? No Thisby do I see. +O wicked wall, through whom I see no bliss! +Cursed be thy stones for thus deceiving me! + +THESEUS: +The wall, methinks, being sensible, should curse again. + +Pyramus: +No, in truth, sir, he should not. 'Deceiving me' +is Thisby's cue: she is to enter now, and I am to +spy her through the wall. You shall see, it will +fall pat as I told you. Yonder she comes. + +Thisbe: +O wall, full often hast thou heard my moans, +For parting my fair Pyramus and me! +My cherry lips have often kiss'd thy stones, +Thy stones with lime and hair knit up in thee. + +Pyramus: +I see a voice: now will I to the chink, +To spy an I can hear my Thisby's face. Thisby! + +Thisbe: +My love thou art, my love I think. + +Pyramus: +Think what thou wilt, I am thy lover's grace; +And, like Limander, am I trusty still. + +Thisbe: +And I like Helen, till the Fates me kill. + +Pyramus: +Not Shafalus to Procrus was so true. + +Thisbe: +As Shafalus to Procrus, I to you. + +Pyramus: +O kiss me through the hole of this vile wall! + +Thisbe: +I kiss the wall's hole, not your lips at all. + +Pyramus: +Wilt thou at Ninny's tomb meet me straightway? + +Thisbe: +'Tide life, 'tide death, I come without delay. + +Wall: +Thus have I, Wall, my part discharged so; +And, being done, thus Wall away doth go. + +THESEUS: +Now is the mural down between the two neighbours. + +DEMETRIUS: +No remedy, my lord, when walls are so wilful to hear +without warning. + +HIPPOLYTA: +This is the silliest stuff that ever I heard. + +THESEUS: +The best in this kind are but shadows; and the worst +are no worse, if imagination amend them. + +HIPPOLYTA: +It must be your imagination then, and not theirs. + +THESEUS: +If we imagine no worse of them than they of +themselves, they may pass for excellent men. Here +come two noble beasts in, a man and a lion. + +Lion: +You, ladies, you, whose gentle hearts do fear +The smallest monstrous mouse that creeps on floor, +May now perchance both quake and tremble here, +When lion rough in wildest rage doth roar. +Then know that I, one Snug the joiner, am +A lion-fell, nor else no lion's dam; +For, if I should as lion come in strife +Into this place, 'twere pity on my life. + +THESEUS: +A very gentle beast, of a good conscience. + +DEMETRIUS: +The very best at a beast, my lord, that e'er I saw. + +LYSANDER: +This lion is a very fox for his valour. + +THESEUS: +True; and a goose for his discretion. + +DEMETRIUS: +Not so, my lord; for his valour cannot carry his +discretion; and the fox carries the goose. + +THESEUS: +His discretion, I am sure, cannot carry his valour; +for the goose carries not the fox. It is well: +leave it to his discretion, and let us listen to the moon. + +Moonshine: +This lanthorn doth the horned moon present;-- + +DEMETRIUS: +He should have worn the horns on his head. + +THESEUS: +He is no crescent, and his horns are +invisible within the circumference. + +Moonshine: +This lanthorn doth the horned moon present; +Myself the man i' the moon do seem to be. + +THESEUS: +This is the greatest error of all the rest: the man +should be put into the lanthorn. How is it else the +man i' the moon? + +DEMETRIUS: +He dares not come there for the candle; for, you +see, it is already in snuff. + +HIPPOLYTA: +I am aweary of this moon: would he would change! + +THESEUS: +It appears, by his small light of discretion, that +he is in the wane; but yet, in courtesy, in all +reason, we must stay the time. + +LYSANDER: +Proceed, Moon. + +Moonshine: +All that I have to say, is, to tell you that the +lanthorn is the moon; I, the man in the moon; this +thorn-bush, my thorn-bush; and this dog, my dog. + +DEMETRIUS: +Why, all these should be in the lanthorn; for all +these are in the moon. But, silence! here comes Thisbe. + +Thisbe: +This is old Ninny's tomb. Where is my love? + +Lion: + +DEMETRIUS: +Well roared, Lion. + +THESEUS: +Well run, Thisbe. + +HIPPOLYTA: +Well shone, Moon. Truly, the moon shines with a +good grace. + +THESEUS: +Well moused, Lion. + +LYSANDER: +And so the lion vanished. + +DEMETRIUS: +And then came Pyramus. + +Pyramus: +Sweet Moon, I thank thee for thy sunny beams; +I thank thee, Moon, for shining now so bright; +For, by thy gracious, golden, glittering gleams, +I trust to take of truest Thisby sight. +But stay, O spite! +But mark, poor knight, +What dreadful dole is here! +Eyes, do you see? +How can it be? +O dainty duck! O dear! +Thy mantle good, +What, stain'd with blood! +Approach, ye Furies fell! +O Fates, come, come, +Cut thread and thrum; +Quail, crush, conclude, and quell! + +THESEUS: +This passion, and the death of a dear friend, would +go near to make a man look sad. + +HIPPOLYTA: +Beshrew my heart, but I pity the man. + +Pyramus: +O wherefore, Nature, didst thou lions frame? +Since lion vile hath here deflower'd my dear: +Which is--no, no--which was the fairest dame +That lived, that loved, that liked, that look'd +with cheer. +Come, tears, confound; +Out, sword, and wound +The pap of Pyramus; +Ay, that left pap, +Where heart doth hop: +Thus die I, thus, thus, thus. +Now am I dead, +Now am I fled; +My soul is in the sky: +Tongue, lose thy light; +Moon take thy flight: +Now die, die, die, die, die. + +DEMETRIUS: +No die, but an ace, for him; for he is but one. + +LYSANDER: +Less than an ace, man; for he is dead; he is nothing. + +THESEUS: +With the help of a surgeon he might yet recover, and +prove an ass. + +HIPPOLYTA: +How chance Moonshine is gone before Thisbe comes +back and finds her lover? + +THESEUS: +She will find him by starlight. Here she comes; and +her passion ends the play. + +HIPPOLYTA: +Methinks she should not use a long one for such a +Pyramus: I hope she will be brief. + +DEMETRIUS: +A mote will turn the balance, which Pyramus, which +Thisbe, is the better; he for a man, God warrant us; +she for a woman, God bless us. + +LYSANDER: +She hath spied him already with those sweet eyes. + +DEMETRIUS: +And thus she means, videlicet:-- + +Thisbe: +Asleep, my love? +What, dead, my dove? +O Pyramus, arise! +Speak, speak. Quite dumb? +Dead, dead? A tomb +Must cover thy sweet eyes. +These My lips, +This cherry nose, +These yellow cowslip cheeks, +Are gone, are gone: +Lovers, make moan: +His eyes were green as leeks. +O Sisters Three, +Come, come to me, +With hands as pale as milk; +Lay them in gore, +Since you have shore +With shears his thread of silk. +Tongue, not a word: +Come, trusty sword; +Come, blade, my breast imbrue: +And, farewell, friends; +Thus Thisby ends: +Adieu, adieu, adieu. + +THESEUS: +Moonshine and Lion are left to bury the dead. + +DEMETRIUS: +Ay, and Wall too. + +BOTTOM: + +THESEUS: +No epilogue, I pray you; for your play needs no +excuse. Never excuse; for when the players are all +dead, there needs none to be blamed. Marry, if he +that writ it had played Pyramus and hanged himself +in Thisbe's garter, it would have been a fine +tragedy: and so it is, truly; and very notably +discharged. But come, your Bergomask: let your +epilogue alone. +The iron tongue of midnight hath told twelve: +Lovers, to bed; 'tis almost fairy time. +I fear we shall out-sleep the coming morn +As much as we this night have overwatch'd. +This palpable-gross play hath well beguiled +The heavy gait of night. Sweet friends, to bed. +A fortnight hold we this solemnity, +In nightly revels and new jollity. + +PUCK: +Now the hungry lion roars, +And the wolf behowls the moon; +Whilst the heavy ploughman snores, +All with weary task fordone. +Now the wasted brands do glow, +Whilst the screech-owl, screeching loud, +Puts the wretch that lies in woe +In remembrance of a shroud. +Now it is the time of night +That the graves all gaping wide, +Every one lets forth his sprite, +In the church-way paths to glide: +And we fairies, that do run +By the triple Hecate's team, +From the presence of the sun, +Following darkness like a dream, +Now are frolic: not a mouse +Shall disturb this hallow'd house: +I am sent with broom before, +To sweep the dust behind the door. + +OBERON: +Through the house give gathering light, +By the dead and drowsy fire: +Every elf and fairy sprite +Hop as light as bird from brier; +And this ditty, after me, +Sing, and dance it trippingly. + +TITANIA: +First, rehearse your song by rote +To each word a warbling note: +Hand in hand, with fairy grace, +Will we sing, and bless this place. + +OBERON: +Now, until the break of day, +Through this house each fairy stray. +To the best bride-bed will we, +Which by us shall blessed be; +And the issue there create +Ever shall be fortunate. +So shall all the couples three +Ever true in loving be; +And the blots of Nature's hand +Shall not in their issue stand; +Never mole, hare lip, nor scar, +Nor mark prodigious, such as are +Despised in nativity, +Shall upon their children be. +With this field-dew consecrate, +Every fairy take his gait; +And each several chamber bless, +Through this palace, with sweet peace; +And the owner of it blest +Ever shall in safety rest. +Trip away; make no stay; +Meet me all by break of day. + +PUCK: +If we shadows have offended, +Think but this, and all is mended, +That you have but slumber'd here +While these visions did appear. +And this weak and idle theme, +No more yielding but a dream, +Gentles, do not reprehend: +if you pardon, we will mend: +And, as I am an honest Puck, +If we have unearned luck +Now to 'scape the serpent's tongue, +We will make amends ere long; +Else the Puck a liar call; +So, good night unto you all. +Give me your hands, if we be friends, +And Robin shall restore amends. + +FERDINAND: +Let fame, that all hunt after in their lives, +Live register'd upon our brazen tombs +And then grace us in the disgrace of death; +When, spite of cormorant devouring Time, +The endeavor of this present breath may buy +That honour which shall bate his scythe's keen edge +And make us heirs of all eternity. +Therefore, brave conquerors,--for so you are, +That war against your own affections +And the huge army of the world's desires,-- +Our late edict shall strongly stand in force: +Navarre shall be the wonder of the world; +Our court shall be a little Academe, +Still and contemplative in living art. +You three, Biron, Dumain, and Longaville, +Have sworn for three years' term to live with me +My fellow-scholars, and to keep those statutes +That are recorded in this schedule here: +Your oaths are pass'd; and now subscribe your names, +That his own hand may strike his honour down +That violates the smallest branch herein: +If you are arm'd to do as sworn to do, +Subscribe to your deep oaths, and keep it too. + +LONGAVILLE: +I am resolved; 'tis but a three years' fast: +The mind shall banquet, though the body pine: +Fat paunches have lean pates, and dainty bits +Make rich the ribs, but bankrupt quite the wits. + +DUMAIN: +My loving lord, Dumain is mortified: +The grosser manner of these world's delights +He throws upon the gross world's baser slaves: +To love, to wealth, to pomp, I pine and die; +With all these living in philosophy. + +BIRON: +I can but say their protestation over; +So much, dear liege, I have already sworn, +That is, to live and study here three years. +But there are other strict observances; +As, not to see a woman in that term, +Which I hope well is not enrolled there; +And one day in a week to touch no food +And but one meal on every day beside, +The which I hope is not enrolled there; +And then, to sleep but three hours in the night, +And not be seen to wink of all the day-- +When I was wont to think no harm all night +And make a dark night too of half the day-- +Which I hope well is not enrolled there: +O, these are barren tasks, too hard to keep, +Not to see ladies, study, fast, not sleep! + +FERDINAND: +Your oath is pass'd to pass away from these. + +BIRON: +Let me say no, my liege, an if you please: +I only swore to study with your grace +And stay here in your court for three years' space. + +LONGAVILLE: +You swore to that, Biron, and to the rest. + +BIRON: +By yea and nay, sir, then I swore in jest. +What is the end of study? let me know. + +FERDINAND: +Why, that to know, which else we should not know. + +BIRON: +Things hid and barr'd, you mean, from common sense? + +FERDINAND: +Ay, that is study's godlike recompense. + +BIRON: +Come on, then; I will swear to study so, +To know the thing I am forbid to know: +As thus,--to study where I well may dine, +When I to feast expressly am forbid; +Or study where to meet some mistress fine, +When mistresses from common sense are hid; +Or, having sworn too hard a keeping oath, +Study to break it and not break my troth. +If study's gain be thus and this be so, +Study knows that which yet it doth not know: +Swear me to this, and I will ne'er say no. + +FERDINAND: +These be the stops that hinder study quite +And train our intellects to vain delight. + +BIRON: +Why, all delights are vain; but that most vain, +Which with pain purchased doth inherit pain: +As, painfully to pore upon a book +To seek the light of truth; while truth the while +Doth falsely blind the eyesight of his look: +Light seeking light doth light of light beguile: +So, ere you find where light in darkness lies, +Your light grows dark by losing of your eyes. +Study me how to please the eye indeed +By fixing it upon a fairer eye, +Who dazzling so, that eye shall be his heed +And give him light that it was blinded by. +Study is like the heaven's glorious sun +That will not be deep-search'd with saucy looks: +Small have continual plodders ever won +Save base authority from others' books +These earthly godfathers of heaven's lights +That give a name to every fixed star +Have no more profit of their shining nights +Than those that walk and wot not what they are. +Too much to know is to know nought but fame; +And every godfather can give a name. + +FERDINAND: +How well he's read, to reason against reading! + +DUMAIN: +Proceeded well, to stop all good proceeding! + +LONGAVILLE: +He weeds the corn and still lets grow the weeding. + +BIRON: +The spring is near when green geese are a-breeding. + +DUMAIN: +How follows that? + +BIRON: +Fit in his place and time. + +DUMAIN: +In reason nothing. + +BIRON: +Something then in rhyme. + +FERDINAND: +Biron is like an envious sneaping frost, +That bites the first-born infants of the spring. + +BIRON: +Well, say I am; why should proud summer boast +Before the birds have any cause to sing? +Why should I joy in any abortive birth? +At Christmas I no more desire a rose +Than wish a snow in May's new-fangled mirth; +But like of each thing that in season grows. +So you, to study now it is too late, +Climb o'er the house to unlock the little gate. + +FERDINAND: +Well, sit you out: go home, Biron: adieu. + +BIRON: +No, my good lord; I have sworn to stay with you: +And though I have for barbarism spoke more +Than for that angel knowledge you can say, +Yet confident I'll keep what I have swore +And bide the penance of each three years' day. +Give me the paper; let me read the same; +And to the strict'st decrees I'll write my name. + +FERDINAND: +How well this yielding rescues thee from shame! + +BIRON: + +LONGAVILLE: +Four days ago. + +BIRON: +Let's see the penalty. +'On pain of losing her tongue.' Who devised this penalty? + +LONGAVILLE: +Marry, that did I. + +BIRON: +Sweet lord, and why? + +LONGAVILLE: +To fright them hence with that dread penalty. + +BIRON: +A dangerous law against gentility! +'Item, If any man be seen to talk with a woman +within the term of three years, he shall endure such +public shame as the rest of the court can possibly devise.' +This article, my liege, yourself must break; +For well you know here comes in embassy +The French king's daughter with yourself to speak-- +A maid of grace and complete majesty-- +About surrender up of Aquitaine +To her decrepit, sick and bedrid father: +Therefore this article is made in vain, +Or vainly comes the admired princess hither. + +FERDINAND: +What say you, lords? Why, this was quite forgot. + +BIRON: +So study evermore is overshot: +While it doth study to have what it would +It doth forget to do the thing it should, +And when it hath the thing it hunteth most, +'Tis won as towns with fire, so won, so lost. + +FERDINAND: +We must of force dispense with this decree; +She must lie here on mere necessity. + +BIRON: +Necessity will make us all forsworn +Three thousand times within this three years' space; +For every man with his affects is born, +Not by might master'd but by special grace: +If I break faith, this word shall speak for me; +I am forsworn on 'mere necessity.' +So to the laws at large I write my name: +And he that breaks them in the least degree +Stands in attainder of eternal shame: +Suggestions are to other as to me; +But I believe, although I seem so loath, +I am the last that will last keep his oath. +But is there no quick recreation granted? + +FERDINAND: +Ay, that there is. Our court, you know, is haunted +With a refined traveller of Spain; +A man in all the world's new fashion planted, +That hath a mint of phrases in his brain; +One whom the music of his own vain tongue +Doth ravish like enchanting harmony; +A man of complements, whom right and wrong +Have chose as umpire of their mutiny: +This child of fancy, that Armado hight, +For interim to our studies shall relate +In high-born words the worth of many a knight +From tawny Spain lost in the world's debate. +How you delight, my lords, I know not, I; +But, I protest, I love to hear him lie +And I will use him for my minstrelsy. + +BIRON: +Armado is a most illustrious wight, +A man of fire-new words, fashion's own knight. + +LONGAVILLE: +Costard the swain and he shall be our sport; +And so to study, three years is but short. + +DULL: +Which is the duke's own person? + +BIRON: +This, fellow: what wouldst? + +DULL: +I myself reprehend his own person, for I am his +grace's tharborough: but I would see his own person +in flesh and blood. + +BIRON: +This is he. + +DULL: +Signior Arme--Arme--commends you. There's villany +abroad: this letter will tell you more. + +COSTARD: +Sir, the contempts thereof are as touching me. + +FERDINAND: +A letter from the magnificent Armado. + +BIRON: +How low soever the matter, I hope in God for high words. + +LONGAVILLE: +A high hope for a low heaven: God grant us patience! + +BIRON: +To hear? or forbear laughing? + +LONGAVILLE: +To hear meekly, sir, and to laugh moderately; or to +forbear both. + +BIRON: +Well, sir, be it as the style shall give us cause to +climb in the merriness. + +COSTARD: +The matter is to me, sir, as concerning Jaquenetta. +The manner of it is, I was taken with the manner. + +BIRON: +In what manner? + +COSTARD: +In manner and form following, sir; all those three: +I was seen with her in the manor-house, sitting with +her upon the form, and taken following her into the +park; which, put together, is in manner and form +following. Now, sir, for the manner,--it is the +manner of a man to speak to a woman: for the form,-- +in some form. + +BIRON: +For the following, sir? + +COSTARD: +As it shall follow in my correction: and God defend +the right! + +FERDINAND: +Will you hear this letter with attention? + +BIRON: +As we would hear an oracle. + +COSTARD: +Such is the simplicity of man to hearken after the flesh. + +FERDINAND: + +COSTARD: +Not a word of Costard yet. + +FERDINAND: + +COSTARD: +It may be so: but if he say it is so, he is, in +telling true, but so. + +FERDINAND: +Peace! + +COSTARD: +Be to me and every man that dares not fight! + +FERDINAND: +No words! + +COSTARD: +Of other men's secrets, I beseech you. + +FERDINAND: + +COSTARD: +Me? + +FERDINAND: + +COSTARD: +Me? + +FERDINAND: + +COSTARD: +Still me? + +FERDINAND: + +COSTARD: +O, me! + +FERDINAND: + +COSTARD: +With a wench. + +FERDINAND: + +DULL: +'Me, an't shall please you; I am Anthony Dull. + +FERDINAND: + +BIRON: +This is not so well as I looked for, but the best +that ever I heard. + +FERDINAND: +Ay, the best for the worst. But, sirrah, what say +you to this? + +COSTARD: +Sir, I confess the wench. + +FERDINAND: +Did you hear the proclamation? + +COSTARD: +I do confess much of the hearing it but little of +the marking of it. + +FERDINAND: +It was proclaimed a year's imprisonment, to be taken +with a wench. + +COSTARD: +I was taken with none, sir: I was taken with a damsel. + +FERDINAND: +Well, it was proclaimed 'damsel.' + +COSTARD: +This was no damsel, neither, sir; she was a virgin. + +FERDINAND: +It is so varied, too; for it was proclaimed 'virgin.' + +COSTARD: +If it were, I deny her virginity: I was taken with a maid. + +FERDINAND: +This maid will not serve your turn, sir. + +COSTARD: +This maid will serve my turn, sir. + +FERDINAND: +Sir, I will pronounce your sentence: you shall fast +a week with bran and water. + +COSTARD: +I had rather pray a month with mutton and porridge. + +FERDINAND: +And Don Armado shall be your keeper. +My Lord Biron, see him deliver'd o'er: +And go we, lords, to put in practise that +Which each to other hath so strongly sworn. + +BIRON: +I'll lay my head to any good man's hat, +These oaths and laws will prove an idle scorn. +Sirrah, come on. + +COSTARD: +I suffer for the truth, sir; for true it is, I was +taken with Jaquenetta, and Jaquenetta is a true +girl; and therefore welcome the sour cup of +prosperity! Affliction may one day smile again; and +till then, sit thee down, sorrow! + +DON ADRIANO DE ARMADO: +Boy, what sign is it when a man of great spirit +grows melancholy? + +MOTH: +A great sign, sir, that he will look sad. + +DON ADRIANO DE ARMADO: +Why, sadness is one and the self-same thing, dear imp. + +MOTH: +No, no; O Lord, sir, no. + +DON ADRIANO DE ARMADO: +How canst thou part sadness and melancholy, my +tender juvenal? + +MOTH: +By a familiar demonstration of the working, my tough senior. + +DON ADRIANO DE ARMADO: +Why tough senior? why tough senior? + +MOTH: +Why tender juvenal? why tender juvenal? + +DON ADRIANO DE ARMADO: +I spoke it, tender juvenal, as a congruent epitheton +appertaining to thy young days, which we may +nominate tender. + +MOTH: +And I, tough senior, as an appertinent title to your +old time, which we may name tough. + +DON ADRIANO DE ARMADO: +Pretty and apt. + +MOTH: +How mean you, sir? I pretty, and my saying apt? or +I apt, and my saying pretty? + +DON ADRIANO DE ARMADO: +Thou pretty, because little. + +MOTH: +Little pretty, because little. Wherefore apt? + +DON ADRIANO DE ARMADO: +And therefore apt, because quick. + +MOTH: +Speak you this in my praise, master? + +DON ADRIANO DE ARMADO: +In thy condign praise. + +MOTH: +I will praise an eel with the same praise. + +DON ADRIANO DE ARMADO: +What, that an eel is ingenious? + +MOTH: +That an eel is quick. + +DON ADRIANO DE ARMADO: +I do say thou art quick in answers: thou heatest my blood. + +MOTH: +I am answered, sir. + +DON ADRIANO DE ARMADO: +I love not to be crossed. + +MOTH: + +DON ADRIANO DE ARMADO: +I have promised to study three years with the duke. + +MOTH: +You may do it in an hour, sir. + +DON ADRIANO DE ARMADO: +Impossible. + +MOTH: +How many is one thrice told? + +DON ADRIANO DE ARMADO: +I am ill at reckoning; it fitteth the spirit of a tapster. + +MOTH: +You are a gentleman and a gamester, sir. + +DON ADRIANO DE ARMADO: +I confess both: they are both the varnish of a +complete man. + +MOTH: +Then, I am sure, you know how much the gross sum of +deuce-ace amounts to. + +DON ADRIANO DE ARMADO: +It doth amount to one more than two. + +MOTH: +Which the base vulgar do call three. + +DON ADRIANO DE ARMADO: +True. + +MOTH: +Why, sir, is this such a piece of study? Now here +is three studied, ere ye'll thrice wink: and how +easy it is to put 'years' to the word 'three,' and +study three years in two words, the dancing horse +will tell you. + +DON ADRIANO DE ARMADO: +A most fine figure! + +MOTH: +To prove you a cipher. + +DON ADRIANO DE ARMADO: +I will hereupon confess I am in love: and as it is +base for a soldier to love, so am I in love with a +base wench. If drawing my sword against the humour +of affection would deliver me from the reprobate +thought of it, I would take Desire prisoner, and +ransom him to any French courtier for a new-devised +courtesy. I think scorn to sigh: methinks I should +outswear Cupid. Comfort, me, boy: what great men +have been in love? + +MOTH: +Hercules, master. + +DON ADRIANO DE ARMADO: +Most sweet Hercules! More authority, dear boy, name +more; and, sweet my child, let them be men of good +repute and carriage. + +MOTH: +Samson, master: he was a man of good carriage, great +carriage, for he carried the town-gates on his back +like a porter: and he was in love. + +DON ADRIANO DE ARMADO: +O well-knit Samson! strong-jointed Samson! I do +excel thee in my rapier as much as thou didst me in +carrying gates. I am in love too. Who was Samson's +love, my dear Moth? + +MOTH: +A woman, master. + +DON ADRIANO DE ARMADO: +Of what complexion? + +MOTH: +Of all the four, or the three, or the two, or one of the four. + +DON ADRIANO DE ARMADO: +Tell me precisely of what complexion. + +MOTH: +Of the sea-water green, sir. + +DON ADRIANO DE ARMADO: +Is that one of the four complexions? + +MOTH: +As I have read, sir; and the best of them too. + +DON ADRIANO DE ARMADO: +Green indeed is the colour of lovers; but to have a +love of that colour, methinks Samson had small reason +for it. He surely affected her for her wit. + +MOTH: +It was so, sir; for she had a green wit. + +DON ADRIANO DE ARMADO: +My love is most immaculate white and red. + +MOTH: +Most maculate thoughts, master, are masked under +such colours. + +DON ADRIANO DE ARMADO: +Define, define, well-educated infant. + +MOTH: +My father's wit and my mother's tongue, assist me! + +DON ADRIANO DE ARMADO: +Sweet invocation of a child; most pretty and +pathetical! + +MOTH: +If she be made of white and red, +Her faults will ne'er be known, +For blushing cheeks by faults are bred +And fears by pale white shown: +Then if she fear, or be to blame, +By this you shall not know, +For still her cheeks possess the same +Which native she doth owe. +A dangerous rhyme, master, against the reason of +white and red. + +DON ADRIANO DE ARMADO: +Is there not a ballad, boy, of the King and the Beggar? + +MOTH: +The world was very guilty of such a ballad some +three ages since: but I think now 'tis not to be +found; or, if it were, it would neither serve for +the writing nor the tune. + +DON ADRIANO DE ARMADO: +I will have that subject newly writ o'er, that I may +example my digression by some mighty precedent. +Boy, I do love that country girl that I took in the +park with the rational hind Costard: she deserves well. + +MOTH: + +DON ADRIANO DE ARMADO: +Sing, boy; my spirit grows heavy in love. + +MOTH: +And that's great marvel, loving a light wench. + +DON ADRIANO DE ARMADO: +I say, sing. + +MOTH: +Forbear till this company be past. + +DULL: +Sir, the duke's pleasure is, that you keep Costard +safe: and you must suffer him to take no delight +nor no penance; but a' must fast three days a week. +For this damsel, I must keep her at the park: she +is allowed for the day-woman. Fare you well. + +DON ADRIANO DE ARMADO: +I do betray myself with blushing. Maid! + +JAQUENETTA: +Man? + +DON ADRIANO DE ARMADO: +I will visit thee at the lodge. + +JAQUENETTA: +That's hereby. + +DON ADRIANO DE ARMADO: +I know where it is situate. + +JAQUENETTA: +Lord, how wise you are! + +DON ADRIANO DE ARMADO: +I will tell thee wonders. + +JAQUENETTA: +With that face? + +DON ADRIANO DE ARMADO: +I love thee. + +JAQUENETTA: +So I heard you say. + +DON ADRIANO DE ARMADO: +And so, farewell. + +JAQUENETTA: +Fair weather after you! + +DULL: +Come, Jaquenetta, away! + +DON ADRIANO DE ARMADO: +Villain, thou shalt fast for thy offences ere thou +be pardoned. + +COSTARD: +Well, sir, I hope, when I do it, I shall do it on a +full stomach. + +DON ADRIANO DE ARMADO: +Thou shalt be heavily punished. + +COSTARD: +I am more bound to you than your fellows, for they +are but lightly rewarded. + +DON ADRIANO DE ARMADO: +Take away this villain; shut him up. + +MOTH: +Come, you transgressing slave; away! + +COSTARD: +Let me not be pent up, sir: I will fast, being loose. + +MOTH: +No, sir; that were fast and loose: thou shalt to prison. + +COSTARD: +Well, if ever I do see the merry days of desolation +that I have seen, some shall see. + +MOTH: +What shall some see? + +COSTARD: +Nay, nothing, Master Moth, but what they look upon. +It is not for prisoners to be too silent in their +words; and therefore I will say nothing: I thank +God I have as little patience as another man; and +therefore I can be quiet. + +DON ADRIANO DE ARMADO: +I do affect the very ground, which is base, where +her shoe, which is baser, guided by her foot, which +is basest, doth tread. I shall be forsworn, which +is a great argument of falsehood, if I love. And +how can that be true love which is falsely +attempted? Love is a familiar; Love is a devil: +there is no evil angel but Love. Yet was Samson so +tempted, and he had an excellent strength; yet was +Solomon so seduced, and he had a very good wit. +Cupid's butt-shaft is too hard for Hercules' club; +and therefore too much odds for a Spaniard's rapier. +The first and second cause will not serve my turn; +the passado he respects not, the duello he regards +not: his disgrace is to be called boy; but his +glory is to subdue men. Adieu, valour! rust rapier! +be still, drum! for your manager is in love; yea, +he loveth. Assist me, some extemporal god of rhyme, +for I am sure I shall turn sonnet. Devise, wit; +write, pen; for I am for whole volumes in folio. + +BOYET: +Now, madam, summon up your dearest spirits: +Consider who the king your father sends, +To whom he sends, and what's his embassy: +Yourself, held precious in the world's esteem, +To parley with the sole inheritor +Of all perfections that a man may owe, +Matchless Navarre; the plea of no less weight +Than Aquitaine, a dowry for a queen. +Be now as prodigal of all dear grace +As Nature was in making graces dear +When she did starve the general world beside +And prodigally gave them all to you. + +PRINCESS: +Good Lord Boyet, my beauty, though but mean, +Needs not the painted flourish of your praise: +Beauty is bought by judgement of the eye, +Not utter'd by base sale of chapmen's tongues: +I am less proud to hear you tell my worth +Than you much willing to be counted wise +In spending your wit in the praise of mine. +But now to task the tasker: good Boyet, +You are not ignorant, all-telling fame +Doth noise abroad, Navarre hath made a vow, +Till painful study shall outwear three years, +No woman may approach his silent court: +Therefore to's seemeth it a needful course, +Before we enter his forbidden gates, +To know his pleasure; and in that behalf, +Bold of your worthiness, we single you +As our best-moving fair solicitor. +Tell him, the daughter of the King of France, +On serious business, craving quick dispatch, +Importunes personal conference with his grace: +Haste, signify so much; while we attend, +Like humble-visaged suitors, his high will. + +BOYET: +Proud of employment, willingly I go. + +PRINCESS: +All pride is willing pride, and yours is so. +Who are the votaries, my loving lords, +That are vow-fellows with this virtuous duke? + +First Lord: +Lord Longaville is one. + +PRINCESS: +Know you the man? + +MARIA: +I know him, madam: at a marriage-feast, +Between Lord Perigort and the beauteous heir +Of Jaques Falconbridge, solemnized +In Normandy, saw I this Longaville: +A man of sovereign parts he is esteem'd; +Well fitted in arts, glorious in arms: +Nothing becomes him ill that he would well. +The only soil of his fair virtue's gloss, +If virtue's gloss will stain with any soil, +Is a sharp wit matched with too blunt a will; +Whose edge hath power to cut, whose will still wills +It should none spare that come within his power. + +PRINCESS: +Some merry mocking lord, belike; is't so? + +MARIA: +They say so most that most his humours know. + +PRINCESS: +Such short-lived wits do wither as they grow. +Who are the rest? + +KATHARINE: +The young Dumain, a well-accomplished youth, +Of all that virtue love for virtue loved: +Most power to do most harm, least knowing ill; +For he hath wit to make an ill shape good, +And shape to win grace though he had no wit. +I saw him at the Duke Alencon's once; +And much too little of that good I saw +Is my report to his great worthiness. + +ROSALINE: +Another of these students at that time +Was there with him, if I have heard a truth. +Biron they call him; but a merrier man, +Within the limit of becoming mirth, +I never spent an hour's talk withal: +His eye begets occasion for his wit; +For every object that the one doth catch +The other turns to a mirth-moving jest, +Which his fair tongue, conceit's expositor, +Delivers in such apt and gracious words +That aged ears play truant at his tales +And younger hearings are quite ravished; +So sweet and voluble is his discourse. + +PRINCESS: +God bless my ladies! are they all in love, +That every one her own hath garnished +With such bedecking ornaments of praise? + +First Lord: +Here comes Boyet. + +PRINCESS: +Now, what admittance, lord? + +BOYET: +Navarre had notice of your fair approach; +And he and his competitors in oath +Were all address'd to meet you, gentle lady, +Before I came. Marry, thus much I have learnt: +He rather means to lodge you in the field, +Like one that comes here to besiege his court, +Than seek a dispensation for his oath, +To let you enter his unpeopled house. +Here comes Navarre. + +FERDINAND: +Fair princess, welcome to the court of Navarre. + +PRINCESS: +'Fair' I give you back again; and 'welcome' I have +not yet: the roof of this court is too high to be +yours; and welcome to the wide fields too base to be mine. + +FERDINAND: +You shall be welcome, madam, to my court. + +PRINCESS: +I will be welcome, then: conduct me thither. + +FERDINAND: +Hear me, dear lady; I have sworn an oath. + +PRINCESS: +Our Lady help my lord! he'll be forsworn. + +FERDINAND: +Not for the world, fair madam, by my will. + +PRINCESS: +Why, will shall break it; will and nothing else. + +FERDINAND: +Your ladyship is ignorant what it is. + +PRINCESS: +Were my lord so, his ignorance were wise, +Where now his knowledge must prove ignorance. +I hear your grace hath sworn out house-keeping: +Tis deadly sin to keep that oath, my lord, +And sin to break it. +But pardon me. I am too sudden-bold: +To teach a teacher ill beseemeth me. +Vouchsafe to read the purpose of my coming, +And suddenly resolve me in my suit. + +FERDINAND: +Madam, I will, if suddenly I may. + +PRINCESS: +You will the sooner, that I were away; +For you'll prove perjured if you make me stay. + +BIRON: +Did not I dance with you in Brabant once? + +ROSALINE: +Did not I dance with you in Brabant once? + +BIRON: +I know you did. + +ROSALINE: +How needless was it then to ask the question! + +BIRON: +You must not be so quick. + +ROSALINE: +'Tis 'long of you that spur me with such questions. + +BIRON: +Your wit's too hot, it speeds too fast, 'twill tire. + +ROSALINE: +Not till it leave the rider in the mire. + +BIRON: +What time o' day? + +ROSALINE: +The hour that fools should ask. + +BIRON: +Now fair befall your mask! + +ROSALINE: +Fair fall the face it covers! + +BIRON: +And send you many lovers! + +ROSALINE: +Amen, so you be none. + +BIRON: +Nay, then will I be gone. + +FERDINAND: +Madam, your father here doth intimate +The payment of a hundred thousand crowns; +Being but the one half of an entire sum +Disbursed by my father in his wars. +But say that he or we, as neither have, +Received that sum, yet there remains unpaid +A hundred thousand more; in surety of the which, +One part of Aquitaine is bound to us, +Although not valued to the money's worth. +If then the king your father will restore +But that one half which is unsatisfied, +We will give up our right in Aquitaine, +And hold fair friendship with his majesty. +But that, it seems, he little purposeth, +For here he doth demand to have repaid +A hundred thousand crowns; and not demands, +On payment of a hundred thousand crowns, +To have his title live in Aquitaine; +Which we much rather had depart withal +And have the money by our father lent +Than Aquitaine so gelded as it is. +Dear Princess, were not his requests so far +From reason's yielding, your fair self should make +A yielding 'gainst some reason in my breast +And go well satisfied to France again. + +PRINCESS: +You do the king my father too much wrong +And wrong the reputation of your name, +In so unseeming to confess receipt +Of that which hath so faithfully been paid. + +FERDINAND: +I do protest I never heard of it; +And if you prove it, I'll repay it back +Or yield up Aquitaine. + +PRINCESS: +We arrest your word. +Boyet, you can produce acquittances +For such a sum from special officers +Of Charles his father. + +FERDINAND: +Satisfy me so. + +BOYET: +So please your grace, the packet is not come +Where that and other specialties are bound: +To-morrow you shall have a sight of them. + +FERDINAND: +It shall suffice me: at which interview +All liberal reason I will yield unto. +Meantime receive such welcome at my hand +As honour without breach of honour may +Make tender of to thy true worthiness: +You may not come, fair princess, in my gates; +But here without you shall be so received +As you shall deem yourself lodged in my heart, +Though so denied fair harbour in my house. +Your own good thoughts excuse me, and farewell: +To-morrow shall we visit you again. + +PRINCESS: +Sweet health and fair desires consort your grace! + +FERDINAND: +Thy own wish wish I thee in every place! + +BIRON: +Lady, I will commend you to mine own heart. + +ROSALINE: +Pray you, do my commendations; I would be glad to see it. + +BIRON: +I would you heard it groan. + +ROSALINE: +Is the fool sick? + +BIRON: +Sick at the heart. + +ROSALINE: +Alack, let it blood. + +BIRON: +Would that do it good? + +ROSALINE: +My physic says 'ay.' + +BIRON: +Will you prick't with your eye? + +ROSALINE: +No point, with my knife. + +BIRON: +Now, God save thy life! + +ROSALINE: +And yours from long living! + +BIRON: +I cannot stay thanksgiving. + +DUMAIN: +Sir, I pray you, a word: what lady is that same? + +BOYET: +The heir of Alencon, Katharine her name. + +DUMAIN: +A gallant lady. Monsieur, fare you well. + +LONGAVILLE: +I beseech you a word: what is she in the white? + +BOYET: +A woman sometimes, an you saw her in the light. + +LONGAVILLE: +Perchance light in the light. I desire her name. + +BOYET: +She hath but one for herself; to desire that were a shame. + +LONGAVILLE: +Pray you, sir, whose daughter? + +BOYET: +Her mother's, I have heard. + +LONGAVILLE: +God's blessing on your beard! + +BOYET: +Good sir, be not offended. +She is an heir of Falconbridge. + +LONGAVILLE: +Nay, my choler is ended. +She is a most sweet lady. + +BOYET: +Not unlike, sir, that may be. + +BIRON: +What's her name in the cap? + +BOYET: +Rosaline, by good hap. + +BIRON: +Is she wedded or no? + +BOYET: +To her will, sir, or so. + +BIRON: +You are welcome, sir: adieu. + +BOYET: +Farewell to me, sir, and welcome to you. + +MARIA: +That last is Biron, the merry madcap lord: +Not a word with him but a jest. + +BOYET: +And every jest but a word. + +PRINCESS: +It was well done of you to take him at his word. + +BOYET: +I was as willing to grapple as he was to board. + +MARIA: +Two hot sheeps, marry. + +BOYET: +And wherefore not ships? +No sheep, sweet lamb, unless we feed on your lips. + +MARIA: +You sheep, and I pasture: shall that finish the jest? + +BOYET: +So you grant pasture for me. + +MARIA: +Not so, gentle beast: +My lips are no common, though several they be. + +BOYET: +Belonging to whom? + +MARIA: +To my fortunes and me. + +PRINCESS: +Good wits will be jangling; but, gentles, agree: +This civil war of wits were much better used +On Navarre and his book-men; for here 'tis abused. + +BOYET: +If my observation, which very seldom lies, +By the heart's still rhetoric disclosed with eyes, +Deceive me not now, Navarre is infected. + +PRINCESS: +With what? + +BOYET: +With that which we lovers entitle affected. + +PRINCESS: +Your reason? + +BOYET: +Why, all his behaviors did make their retire +To the court of his eye, peeping thorough desire: +His heart, like an agate, with your print impress'd, +Proud with his form, in his eye pride express'd: +His tongue, all impatient to speak and not see, +Did stumble with haste in his eyesight to be; +All senses to that sense did make their repair, +To feel only looking on fairest of fair: +Methought all his senses were lock'd in his eye, +As jewels in crystal for some prince to buy; +Who, tendering their own worth from where they were glass'd, +Did point you to buy them, along as you pass'd: +His face's own margent did quote such amazes +That all eyes saw his eyes enchanted with gazes. +I'll give you Aquitaine and all that is his, +An you give him for my sake but one loving kiss. + +PRINCESS: +Come to our pavilion: Boyet is disposed. + +BOYET: +But to speak that in words which his eye hath +disclosed. +I only have made a mouth of his eye, +By adding a tongue which I know will not lie. + +ROSALINE: +Thou art an old love-monger and speakest skilfully. + +MARIA: +He is Cupid's grandfather and learns news of him. + +ROSALINE: +Then was Venus like her mother, for her father is but grim. + +BOYET: +Do you hear, my mad wenches? + +MARIA: +No. + +BOYET: +What then, do you see? + +ROSALINE: +Ay, our way to be gone. + +BOYET: +You are too hard for me. + +DON ADRIANO DE ARMADO: +Warble, child; make passionate my sense of hearing. + +MOTH: +Concolinel. + +DON ADRIANO DE ARMADO: +Sweet air! Go, tenderness of years; take this key, +give enlargement to the swain, bring him festinately +hither: I must employ him in a letter to my love. + +MOTH: +Master, will you win your love with a French brawl? + +DON ADRIANO DE ARMADO: +How meanest thou? brawling in French? + +MOTH: +No, my complete master: but to jig off a tune at +the tongue's end, canary to it with your feet, humour +it with turning up your eyelids, sigh a note and +sing a note, sometime through the throat, as if you +swallowed love with singing love, sometime through +the nose, as if you snuffed up love by smelling +love; with your hat penthouse-like o'er the shop of +your eyes; with your arms crossed on your thin-belly +doublet like a rabbit on a spit; or your hands in +your pocket like a man after the old painting; and +keep not too long in one tune, but a snip and away. +These are complements, these are humours; these +betray nice wenches, that would be betrayed without +these; and make them men of note--do you note +me?--that most are affected to these. + +DON ADRIANO DE ARMADO: +How hast thou purchased this experience? + +MOTH: +By my penny of observation. + +DON ADRIANO DE ARMADO: +But O,--but O,-- + +MOTH: +'The hobby-horse is forgot.' + +DON ADRIANO DE ARMADO: +Callest thou my love 'hobby-horse'? + +MOTH: +No, master; the hobby-horse is but a colt, and your +love perhaps a hackney. But have you forgot your love? + +DON ADRIANO DE ARMADO: +Almost I had. + +MOTH: +Negligent student! learn her by heart. + +DON ADRIANO DE ARMADO: +By heart and in heart, boy. + +MOTH: +And out of heart, master: all those three I will prove. + +DON ADRIANO DE ARMADO: +What wilt thou prove? + +MOTH: +A man, if I live; and this, by, in, and without, upon +the instant: by heart you love her, because your +heart cannot come by her; in heart you love her, +because your heart is in love with her; and out of +heart you love her, being out of heart that you +cannot enjoy her. + +DON ADRIANO DE ARMADO: +I am all these three. + +MOTH: +And three times as much more, and yet nothing at +all. + +DON ADRIANO DE ARMADO: +Fetch hither the swain: he must carry me a letter. + +MOTH: +A message well sympathized; a horse to be ambassador +for an ass. + +DON ADRIANO DE ARMADO: +Ha, ha! what sayest thou? + +MOTH: +Marry, sir, you must send the ass upon the horse, +for he is very slow-gaited. But I go. + +DON ADRIANO DE ARMADO: +The way is but short: away! + +MOTH: +As swift as lead, sir. + +DON ADRIANO DE ARMADO: +The meaning, pretty ingenious? +Is not lead a metal heavy, dull, and slow? + +MOTH: +Minime, honest master; or rather, master, no. + +DON ADRIANO DE ARMADO: +I say lead is slow. + +MOTH: +You are too swift, sir, to say so: +Is that lead slow which is fired from a gun? + +DON ADRIANO DE ARMADO: +Sweet smoke of rhetoric! +He reputes me a cannon; and the bullet, that's he: +I shoot thee at the swain. + +MOTH: +Thump then and I flee. + +DON ADRIANO DE ARMADO: +A most acute juvenal; voluble and free of grace! +By thy favour, sweet welkin, I must sigh in thy face: +Most rude melancholy, valour gives thee place. +My herald is return'd. + +MOTH: +A wonder, master! here's a costard broken in a shin. + +DON ADRIANO DE ARMADO: +Some enigma, some riddle: come, thy l'envoy; begin. + +COSTARD: +No enigma, no riddle, no l'envoy; no salve in the +mail, sir: O, sir, plantain, a plain plantain! no +l'envoy, no l'envoy; no salve, sir, but a plantain! + +DON ADRIANO DE ARMADO: +By virtue, thou enforcest laughter; thy silly +thought my spleen; the heaving of my lungs provokes +me to ridiculous smiling. O, pardon me, my stars! +Doth the inconsiderate take salve for l'envoy, and +the word l'envoy for a salve? + +MOTH: +Do the wise think them other? is not l'envoy a salve? + +DON ADRIANO DE ARMADO: +No, page: it is an epilogue or discourse, to make plain +Some obscure precedence that hath tofore been sain. +I will example it: +The fox, the ape, and the humble-bee, +Were still at odds, being but three. +There's the moral. Now the l'envoy. + +MOTH: +I will add the l'envoy. Say the moral again. + +DON ADRIANO DE ARMADO: +The fox, the ape, and the humble-bee, +Were still at odds, being but three. + +MOTH: +Until the goose came out of door, +And stay'd the odds by adding four. +Now will I begin your moral, and do you follow with +my l'envoy. +The fox, the ape, and the humble-bee, +Were still at odds, being but three. + +DON ADRIANO DE ARMADO: +Until the goose came out of door, +Staying the odds by adding four. + +MOTH: +A good l'envoy, ending in the goose: would you +desire more? + +COSTARD: +The boy hath sold him a bargain, a goose, that's flat. +Sir, your pennyworth is good, an your goose be fat. +To sell a bargain well is as cunning as fast and loose: +Let me see; a fat l'envoy; ay, that's a fat goose. + +DON ADRIANO DE ARMADO: +Come hither, come hither. How did this argument begin? + +MOTH: +By saying that a costard was broken in a shin. +Then call'd you for the l'envoy. + +COSTARD: +True, and I for a plantain: thus came your +argument in; +Then the boy's fat l'envoy, the goose that you bought; +And he ended the market. + +DON ADRIANO DE ARMADO: +But tell me; how was there a costard broken in a shin? + +MOTH: +I will tell you sensibly. + +COSTARD: +Thou hast no feeling of it, Moth: I will speak that l'envoy: +I Costard, running out, that was safely within, +Fell over the threshold and broke my shin. + +DON ADRIANO DE ARMADO: +We will talk no more of this matter. + +COSTARD: +Till there be more matter in the shin. + +DON ADRIANO DE ARMADO: +Sirrah Costard, I will enfranchise thee. + +COSTARD: +O, marry me to one Frances: I smell some l'envoy, +some goose, in this. + +DON ADRIANO DE ARMADO: +By my sweet soul, I mean setting thee at liberty, +enfreedoming thy person; thou wert immured, +restrained, captivated, bound. + +COSTARD: +True, true; and now you will be my purgation and let me loose. + +DON ADRIANO DE ARMADO: +I give thee thy liberty, set thee from durance; and, +in lieu thereof, impose on thee nothing but this: +bear this significant +to the country maid Jaquenetta: +there is remuneration; for the best ward of mine +honour is rewarding my dependents. Moth, follow. + +MOTH: +Like the sequel, I. Signior Costard, adieu. + +COSTARD: +My sweet ounce of man's flesh! my incony Jew! +Now will I look to his remuneration. Remuneration! +O, that's the Latin word for three farthings: three +farthings--remuneration.--'What's the price of this +inkle?'--'One penny.'--'No, I'll give you a +remuneration:' why, it carries it. Remuneration! +why, it is a fairer name than French crown. I will +never buy and sell out of this word. + +BIRON: +O, my good knave Costard! exceedingly well met. + +COSTARD: +Pray you, sir, how much carnation ribbon may a man +buy for a remuneration? + +BIRON: +What is a remuneration? + +COSTARD: +Marry, sir, halfpenny farthing. + +BIRON: +Why, then, three-farthing worth of silk. + +COSTARD: +I thank your worship: God be wi' you! + +BIRON: +Stay, slave; I must employ thee: +As thou wilt win my favour, good my knave, +Do one thing for me that I shall entreat. + +COSTARD: +When would you have it done, sir? + +BIRON: +This afternoon. + +COSTARD: +Well, I will do it, sir: fare you well. + +BIRON: +Thou knowest not what it is. + +COSTARD: +I shall know, sir, when I have done it. + +BIRON: +Why, villain, thou must know first. + +COSTARD: +I will come to your worship to-morrow morning. + +BIRON: +It must be done this afternoon. +Hark, slave, it is but this: +The princess comes to hunt here in the park, +And in her train there is a gentle lady; +When tongues speak sweetly, then they name her name, +And Rosaline they call her: ask for her; +And to her white hand see thou do commend +This seal'd-up counsel. There's thy guerdon; go. + +COSTARD: +Gardon, O sweet gardon! better than remuneration, +a'leven-pence farthing better: most sweet gardon! I +will do it sir, in print. Gardon! Remuneration! + +BIRON: +And I, forsooth, in love! I, that have been love's whip; +A very beadle to a humorous sigh; +A critic, nay, a night-watch constable; +A domineering pedant o'er the boy; +Than whom no mortal so magnificent! +This whimpled, whining, purblind, wayward boy; +This senior-junior, giant-dwarf, Dan Cupid; +Regent of love-rhymes, lord of folded arms, +The anointed sovereign of sighs and groans, +Liege of all loiterers and malcontents, +Dread prince of plackets, king of codpieces, +Sole imperator and great general +Of trotting 'paritors:--O my little heart:-- +And I to be a corporal of his field, +And wear his colours like a tumbler's hoop! +What, I! I love! I sue! I seek a wife! +A woman, that is like a German clock, +Still a-repairing, ever out of frame, +And never going aright, being a watch, +But being watch'd that it may still go right! +Nay, to be perjured, which is worst of all; +And, among three, to love the worst of all; +A wightly wanton with a velvet brow, +With two pitch-balls stuck in her face for eyes; +Ay, and by heaven, one that will do the deed +Though Argus were her eunuch and her guard: +And I to sigh for her! to watch for her! +To pray for her! Go to; it is a plague +That Cupid will impose for my neglect +Of his almighty dreadful little might. +Well, I will love, write, sigh, pray, sue and groan: +Some men must love my lady and some Joan. + +PRINCESS: +Was that the king, that spurred his horse so hard +Against the steep uprising of the hill? + +BOYET: +I know not; but I think it was not he. + +PRINCESS: +Whoe'er a' was, a' show'd a mounting mind. +Well, lords, to-day we shall have our dispatch: +On Saturday we will return to France. +Then, forester, my friend, where is the bush +That we must stand and play the murderer in? + +Forester: +Hereby, upon the edge of yonder coppice; +A stand where you may make the fairest shoot. + +PRINCESS: +I thank my beauty, I am fair that shoot, +And thereupon thou speak'st the fairest shoot. + +Forester: +Pardon me, madam, for I meant not so. + +PRINCESS: +What, what? first praise me and again say no? +O short-lived pride! Not fair? alack for woe! + +Forester: +Yes, madam, fair. + +PRINCESS: +Nay, never paint me now: +Where fair is not, praise cannot mend the brow. +Here, good my glass, take this for telling true: +Fair payment for foul words is more than due. + +Forester: +Nothing but fair is that which you inherit. + +PRINCESS: +See see, my beauty will be saved by merit! +O heresy in fair, fit for these days! +A giving hand, though foul, shall have fair praise. +But come, the bow: now mercy goes to kill, +And shooting well is then accounted ill. +Thus will I save my credit in the shoot: +Not wounding, pity would not let me do't; +If wounding, then it was to show my skill, +That more for praise than purpose meant to kill. +And out of question so it is sometimes, +Glory grows guilty of detested crimes, +When, for fame's sake, for praise, an outward part, +We bend to that the working of the heart; +As I for praise alone now seek to spill +The poor deer's blood, that my heart means no ill. + +BOYET: +Do not curst wives hold that self-sovereignty +Only for praise sake, when they strive to be +Lords o'er their lords? + +PRINCESS: +Only for praise: and praise we may afford +To any lady that subdues a lord. + +BOYET: +Here comes a member of the commonwealth. + +COSTARD: +God dig-you-den all! Pray you, which is the head lady? + +PRINCESS: +Thou shalt know her, fellow, by the rest that have no heads. + +COSTARD: +Which is the greatest lady, the highest? + +PRINCESS: +The thickest and the tallest. + +COSTARD: +The thickest and the tallest! it is so; truth is truth. +An your waist, mistress, were as slender as my wit, +One o' these maids' girdles for your waist should be fit. +Are not you the chief woman? you are the thickest here. + +PRINCESS: +What's your will, sir? what's your will? + +COSTARD: +I have a letter from Monsieur Biron to one Lady Rosaline. + +PRINCESS: +O, thy letter, thy letter! he's a good friend of mine: +Stand aside, good bearer. Boyet, you can carve; +Break up this capon. + +BOYET: +I am bound to serve. +This letter is mistook, it importeth none here; +It is writ to Jaquenetta. + +PRINCESS: +We will read it, I swear. +Break the neck of the wax, and every one give ear. + +BOYET: +'By heaven, that thou art fair, is most infallible; +true, that thou art beauteous; truth itself, that +thou art lovely. More fairer than fair, beautiful +than beauteous, truer than truth itself, have +commiseration on thy heroical vassal! The +magnanimous and most illustrate king Cophetua set +eye upon the pernicious and indubitate beggar +Zenelophon; and he it was that might rightly say, +Veni, vidi, vici; which to annothanize in the +vulgar,--O base and obscure vulgar!--videlicet, He +came, saw, and overcame: he came, one; saw two; +overcame, three. Who came? the king: why did he +come? to see: why did he see? to overcome: to +whom came he? to the beggar: what saw he? the +beggar: who overcame he? the beggar. The +conclusion is victory: on whose side? the king's. +The captive is enriched: on whose side? the +beggar's. The catastrophe is a nuptial: on whose +side? the king's: no, on both in one, or one in +both. I am the king; for so stands the comparison: +thou the beggar; for so witnesseth thy lowliness. +Shall I command thy love? I may: shall I enforce +thy love? I could: shall I entreat thy love? I +will. What shalt thou exchange for rags? robes; +for tittles? titles; for thyself? me. Thus, +expecting thy reply, I profane my lips on thy foot, +my eyes on thy picture. and my heart on thy every +part. Thine, in the dearest design of industry, +DON ADRIANO DE ARMADO.' +Thus dost thou hear the Nemean lion roar +'Gainst thee, thou lamb, that standest as his prey. +Submissive fall his princely feet before, +And he from forage will incline to play: +But if thou strive, poor soul, what art thou then? +Food for his rage, repasture for his den. + +PRINCESS: +What plume of feathers is he that indited this letter? +What vane? what weathercock? did you ever hear better? + +BOYET: +I am much deceived but I remember the style. + +PRINCESS: +Else your memory is bad, going o'er it erewhile. + +BOYET: +This Armado is a Spaniard, that keeps here in court; +A phantasime, a Monarcho, and one that makes sport +To the prince and his bookmates. + +PRINCESS: +Thou fellow, a word: +Who gave thee this letter? + +COSTARD: +I told you; my lord. + +PRINCESS: +To whom shouldst thou give it? + +COSTARD: +From my lord to my lady. + +PRINCESS: +From which lord to which lady? + +COSTARD: +From my lord Biron, a good master of mine, +To a lady of France that he call'd Rosaline. + +PRINCESS: +Thou hast mistaken his letter. Come, lords, away. +Here, sweet, put up this: 'twill be thine another day. + +BOYET: +Who is the suitor? who is the suitor? + +ROSALINE: +Shall I teach you to know? + +BOYET: +Ay, my continent of beauty. + +ROSALINE: +Why, she that bears the bow. +Finely put off! + +BOYET: +My lady goes to kill horns; but, if thou marry, +Hang me by the neck, if horns that year miscarry. +Finely put on! + +ROSALINE: +Well, then, I am the shooter. + +BOYET: +And who is your deer? + +ROSALINE: +If we choose by the horns, yourself come not near. +Finely put on, indeed! + +MARIA: +You still wrangle with her, Boyet, and she strikes +at the brow. + +BOYET: +But she herself is hit lower: have I hit her now? + +ROSALINE: +Shall I come upon thee with an old saying, that was +a man when King Pepin of France was a little boy, as +touching the hit it? + +BOYET: +So I may answer thee with one as old, that was a +woman when Queen Guinover of Britain was a little +wench, as touching the hit it. + +ROSALINE: +Thou canst not hit it, hit it, hit it, +Thou canst not hit it, my good man. + +BOYET: +An I cannot, cannot, cannot, +An I cannot, another can. + +COSTARD: +By my troth, most pleasant: how both did fit it! + +MARIA: +A mark marvellous well shot, for they both did hit it. + +BOYET: +A mark! O, mark but that mark! A mark, says my lady! +Let the mark have a prick in't, to mete at, if it may be. + +MARIA: +Wide o' the bow hand! i' faith, your hand is out. + +COSTARD: +Indeed, a' must shoot nearer, or he'll ne'er hit the clout. + +BOYET: +An if my hand be out, then belike your hand is in. + +COSTARD: +Then will she get the upshoot by cleaving the pin. + +MARIA: +Come, come, you talk greasily; your lips grow foul. + +COSTARD: +She's too hard for you at pricks, sir: challenge her to bowl. + +BOYET: +I fear too much rubbing. Good night, my good owl. + +COSTARD: +By my soul, a swain! a most simple clown! +Lord, Lord, how the ladies and I have put him down! +O' my troth, most sweet jests! most incony +vulgar wit! +When it comes so smoothly off, so obscenely, as it +were, so fit. +Armado o' th' one side,--O, a most dainty man! +To see him walk before a lady and to bear her fan! +To see him kiss his hand! and how most sweetly a' +will swear! +And his page o' t' other side, that handful of wit! +Ah, heavens, it is a most pathetical nit! +Sola, sola! + +SIR NATHANIEL: +Very reverend sport, truly; and done in the testimony +of a good conscience. + +HOLOFERNES: +The deer was, as you know, sanguis, in blood; ripe +as the pomewater, who now hangeth like a jewel in +the ear of caelo, the sky, the welkin, the heaven; +and anon falleth like a crab on the face of terra, +the soil, the land, the earth. + +SIR NATHANIEL: +Truly, Master Holofernes, the epithets are sweetly +varied, like a scholar at the least: but, sir, I +assure ye, it was a buck of the first head. + +HOLOFERNES: +Sir Nathaniel, haud credo. + +DULL: +'Twas not a haud credo; 'twas a pricket. + +HOLOFERNES: +Most barbarous intimation! yet a kind of +insinuation, as it were, in via, in way, of +explication; facere, as it were, replication, or +rather, ostentare, to show, as it were, his +inclination, after his undressed, unpolished, +uneducated, unpruned, untrained, or rather, +unlettered, or ratherest, unconfirmed fashion, to +insert again my haud credo for a deer. + +DULL: +I said the deer was not a haud credo; twas a pricket. + +HOLOFERNES: +Twice-sod simplicity, his coctus! +O thou monster Ignorance, how deformed dost thou look! + +SIR NATHANIEL: +Sir, he hath never fed of the dainties that are bred +in a book; he hath not eat paper, as it were; he +hath not drunk ink: his intellect is not +replenished; he is only an animal, only sensible in +the duller parts: +And such barren plants are set before us, that we +thankful should be, +Which we of taste and feeling are, for those parts that +do fructify in us more than he. +For as it would ill become me to be vain, indiscreet, or a fool, +So were there a patch set on learning, to see him in a school: +But omne bene, say I; being of an old father's mind, +Many can brook the weather that love not the wind. + +DULL: +You two are book-men: can you tell me by your wit +What was a month old at Cain's birth, that's not five +weeks old as yet? + +HOLOFERNES: +Dictynna, goodman Dull; Dictynna, goodman Dull. + +DULL: +What is Dictynna? + +SIR NATHANIEL: +A title to Phoebe, to Luna, to the moon. + +HOLOFERNES: +The moon was a month old when Adam was no more, +And raught not to five weeks when he came to +five-score. +The allusion holds in the exchange. + +DULL: +'Tis true indeed; the collusion holds in the exchange. + +HOLOFERNES: +God comfort thy capacity! I say, the allusion holds +in the exchange. + +DULL: +And I say, the pollusion holds in the exchange; for +the moon is never but a month old: and I say beside +that, 'twas a pricket that the princess killed. + +HOLOFERNES: +Sir Nathaniel, will you hear an extemporal epitaph +on the death of the deer? And, to humour the +ignorant, call I the deer the princess killed a pricket. + +SIR NATHANIEL: +Perge, good Master Holofernes, perge; so it shall +please you to abrogate scurrility. + +HOLOFERNES: +I will something affect the letter, for it argues facility. +The preyful princess pierced and prick'd a pretty +pleasing pricket; +Some say a sore; but not a sore, till now made +sore with shooting. +The dogs did yell: put L to sore, then sorel jumps +from thicket; +Or pricket sore, or else sorel; the people fall a-hooting. +If sore be sore, then L to sore makes fifty sores +one sorel. +Of one sore I an hundred make by adding but one more L. + +SIR NATHANIEL: +A rare talent! + +DULL: + +HOLOFERNES: +This is a gift that I have, simple, simple; a +foolish extravagant spirit, full of forms, figures, +shapes, objects, ideas, apprehensions, motions, +revolutions: these are begot in the ventricle of +memory, nourished in the womb of pia mater, and +delivered upon the mellowing of occasion. But the +gift is good in those in whom it is acute, and I am +thankful for it. + +SIR NATHANIEL: +Sir, I praise the Lord for you; and so may my +parishioners; for their sons are well tutored by +you, and their daughters profit very greatly under +you: you are a good member of the commonwealth. + +HOLOFERNES: +Mehercle, if their sons be ingenuous, they shall +want no instruction; if their daughters be capable, +I will put it to them: but vir sapit qui pauca +loquitur; a soul feminine saluteth us. + +JAQUENETTA: +God give you good morrow, master Parson. + +HOLOFERNES: +Master Parson, quasi pers-on. An if one should be +pierced, which is the one? + +COSTARD: +Marry, master schoolmaster, he that is likest to a hogshead. + +HOLOFERNES: +Piercing a hogshead! a good lustre of conceit in a +tuft of earth; fire enough for a flint, pearl enough +for a swine: 'tis pretty; it is well. + +JAQUENETTA: +Good master Parson, be so good as read me this +letter: it was given me by Costard, and sent me +from Don Armado: I beseech you, read it. + +HOLOFERNES: +Fauste, precor gelida quando pecus omne sub umbra +Ruminat,--and so forth. Ah, good old Mantuan! I +may speak of thee as the traveller doth of Venice; +Venetia, Venetia, +Chi non ti vede non ti pretia. +Old Mantuan, old Mantuan! who understandeth thee +not, loves thee not. Ut, re, sol, la, mi, fa. +Under pardon, sir, what are the contents? or rather, +as Horace says in his--What, my soul, verses? + +SIR NATHANIEL: +Ay, sir, and very learned. + +HOLOFERNES: +Let me hear a staff, a stanze, a verse; lege, domine. + +SIR NATHANIEL: + +HOLOFERNES: +You find not the apostraphas, and so miss the +accent: let me supervise the canzonet. Here are +only numbers ratified; but, for the elegancy, +facility, and golden cadence of poesy, caret. +Ovidius Naso was the man: and why, indeed, Naso, +but for smelling out the odouriferous flowers of +fancy, the jerks of invention? Imitari is nothing: +so doth the hound his master, the ape his keeper, +the tired horse his rider. But, damosella virgin, +was this directed to you? + +JAQUENETTA: +Ay, sir, from one Monsieur Biron, one of the strange +queen's lords. + +HOLOFERNES: +I will overglance the superscript: 'To the +snow-white hand of the most beauteous Lady +Rosaline.' I will look again on the intellect of +the letter, for the nomination of the party writing +to the person written unto: 'Your ladyship's in all +desired employment, BIRON.' Sir Nathaniel, this +Biron is one of the votaries with the king; and here +he hath framed a letter to a sequent of the stranger +queen's, which accidentally, or by the way of +progression, hath miscarried. Trip and go, my +sweet; deliver this paper into the royal hand of the +king: it may concern much. Stay not thy +compliment; I forgive thy duty; adieu. + +JAQUENETTA: +Good Costard, go with me. Sir, God save your life! + +COSTARD: +Have with thee, my girl. + +SIR NATHANIEL: +Sir, you have done this in the fear of God, very +religiously; and, as a certain father saith,-- + +HOLOFERNES: +Sir tell me not of the father; I do fear colourable +colours. But to return to the verses: did they +please you, Sir Nathaniel? + +SIR NATHANIEL: +Marvellous well for the pen. + +HOLOFERNES: +I do dine to-day at the father's of a certain pupil +of mine; where, if, before repast, it shall please +you to gratify the table with a grace, I will, on my +privilege I have with the parents of the foresaid +child or pupil, undertake your ben venuto; where I +will prove those verses to be very unlearned, +neither savouring of poetry, wit, nor invention: I +beseech your society. + +SIR NATHANIEL: +And thank you too; for society, saith the text, is +the happiness of life. + +HOLOFERNES: +And, certes, the text most infallibly concludes it. +Sir, I do invite you too; you shall not +say me nay: pauca verba. Away! the gentles are at +their game, and we will to our recreation. + +BIRON: +The king he is hunting the deer; I am coursing +myself: they have pitched a toil; I am toiling in +a pitch,--pitch that defiles: defile! a foul +word. Well, set thee down, sorrow! for so they say +the fool said, and so say I, and I the fool: well +proved, wit! By the Lord, this love is as mad as +Ajax: it kills sheep; it kills me, I a sheep: +well proved again o' my side! I will not love: if +I do, hang me; i' faith, I will not. O, but her +eye,--by this light, but for her eye, I would not +love her; yes, for her two eyes. Well, I do nothing +in the world but lie, and lie in my throat. By +heaven, I do love: and it hath taught me to rhyme +and to be melancholy; and here is part of my rhyme, +and here my melancholy. Well, she hath one o' my +sonnets already: the clown bore it, the fool sent +it, and the lady hath it: sweet clown, sweeter +fool, sweetest lady! By the world, I would not care +a pin, if the other three were in. Here comes one +with a paper: God give him grace to groan! + +FERDINAND: +Ay me! + +BIRON: + +FERDINAND: + +BIRON: +Now, in thy likeness, one more fool appear! + +LONGAVILLE: +Ay me, I am forsworn! + +BIRON: +Why, he comes in like a perjure, wearing papers. + +FERDINAND: +In love, I hope: sweet fellowship in shame! + +BIRON: +One drunkard loves another of the name. + +LONGAVILLE: +Am I the first that have been perjured so? + +BIRON: +I could put thee in comfort. Not by two that I know: +Thou makest the triumviry, the corner-cap of society, +The shape of Love's Tyburn that hangs up simplicity. + +LONGAVILLE: +I fear these stubborn lines lack power to move: +O sweet Maria, empress of my love! +These numbers will I tear, and write in prose. + +BIRON: +O, rhymes are guards on wanton Cupid's hose: +Disfigure not his slop. + +LONGAVILLE: +This same shall go. +Did not the heavenly rhetoric of thine eye, +'Gainst whom the world cannot hold argument, +Persuade my heart to this false perjury? +Vows for thee broke deserve not punishment. +A woman I forswore; but I will prove, +Thou being a goddess, I forswore not thee: +My vow was earthly, thou a heavenly love; +Thy grace being gain'd cures all disgrace in me. +Vows are but breath, and breath a vapour is: +Then thou, fair sun, which on my earth dost shine, +Exhalest this vapour-vow; in thee it is: +If broken then, it is no fault of mine: +If by me broke, what fool is not so wise +To lose an oath to win a paradise? + +BIRON: +This is the liver-vein, which makes flesh a deity, +A green goose a goddess: pure, pure idolatry. +God amend us, God amend! we are much out o' the way. + +LONGAVILLE: +By whom shall I send this?--Company! stay. + +BIRON: +All hid, all hid; an old infant play. +Like a demigod here sit I in the sky. +And wretched fools' secrets heedfully o'ereye. +More sacks to the mill! O heavens, I have my wish! +Dumain transform'd! four woodcocks in a dish! + +DUMAIN: +O most divine Kate! + +BIRON: +O most profane coxcomb! + +DUMAIN: +By heaven, the wonder in a mortal eye! + +BIRON: +By earth, she is not, corporal, there you lie. + +DUMAIN: +Her amber hair for foul hath amber quoted. + +BIRON: +An amber-colour'd raven was well noted. + +DUMAIN: +As upright as the cedar. + +BIRON: +Stoop, I say; +Her shoulder is with child. + +DUMAIN: +As fair as day. + +BIRON: +Ay, as some days; but then no sun must shine. + +DUMAIN: +O that I had my wish! + +LONGAVILLE: +And I had mine! + +FERDINAND: +And I mine too, good Lord! + +BIRON: +Amen, so I had mine: is not that a good word? + +DUMAIN: +I would forget her; but a fever she +Reigns in my blood and will remember'd be. + +BIRON: +A fever in your blood! why, then incision +Would let her out in saucers: sweet misprision! + +DUMAIN: +Once more I'll read the ode that I have writ. + +BIRON: +Once more I'll mark how love can vary wit. + +DUMAIN: + +LONGAVILLE: + +FERDINAND: + +BIRON: +Now step I forth to whip hypocrisy. +Ah, good my liege, I pray thee, pardon me! +Good heart, what grace hast thou, thus to reprove +These worms for loving, that art most in love? +Your eyes do make no coaches; in your tears +There is no certain princess that appears; +You'll not be perjured, 'tis a hateful thing; +Tush, none but minstrels like of sonneting! +But are you not ashamed? nay, are you not, +All three of you, to be thus much o'ershot? +You found his mote; the king your mote did see; +But I a beam do find in each of three. +O, what a scene of foolery have I seen, +Of sighs, of groans, of sorrow and of teen! +O me, with what strict patience have I sat, +To see a king transformed to a gnat! +To see great Hercules whipping a gig, +And profound Solomon to tune a jig, +And Nestor play at push-pin with the boys, +And critic Timon laugh at idle toys! +Where lies thy grief, O, tell me, good Dumain? +And gentle Longaville, where lies thy pain? +And where my liege's? all about the breast: +A caudle, ho! + +FERDINAND: +Too bitter is thy jest. +Are we betray'd thus to thy over-view? + +BIRON: +Not you to me, but I betray'd by you: +I, that am honest; I, that hold it sin +To break the vow I am engaged in; +I am betray'd, by keeping company +With men like men of inconstancy. +When shall you see me write a thing in rhyme? +Or groan for love? or spend a minute's time +In pruning me? When shall you hear that I +Will praise a hand, a foot, a face, an eye, +A gait, a state, a brow, a breast, a waist, +A leg, a limb? + +FERDINAND: +Soft! whither away so fast? +A true man or a thief that gallops so? + +BIRON: +I post from love: good lover, let me go. + +JAQUENETTA: +God bless the king! + +FERDINAND: +What present hast thou there? + +COSTARD: +Some certain treason. + +FERDINAND: +What makes treason here? + +COSTARD: +Nay, it makes nothing, sir. + +FERDINAND: +If it mar nothing neither, +The treason and you go in peace away together. + +JAQUENETTA: +I beseech your grace, let this letter be read: +Our parson misdoubts it; 'twas treason, he said. + +FERDINAND: +Biron, read it over. +Where hadst thou it? + +JAQUENETTA: +Of Costard. + +FERDINAND: +Where hadst thou it? + +COSTARD: +Of Dun Adramadio, Dun Adramadio. + +FERDINAND: +How now! what is in you? why dost thou tear it? + +BIRON: +A toy, my liege, a toy: your grace needs not fear it. + +LONGAVILLE: +It did move him to passion, and therefore let's hear it. + +DUMAIN: +It is Biron's writing, and here is his name. + +BIRON: + +FERDINAND: +What? + +BIRON: +That you three fools lack'd me fool to make up the mess: +He, he, and you, and you, my liege, and I, +Are pick-purses in love, and we deserve to die. +O, dismiss this audience, and I shall tell you more. + +DUMAIN: +Now the number is even. + +BIRON: +True, true; we are four. +Will these turtles be gone? + +FERDINAND: +Hence, sirs; away! + +COSTARD: +Walk aside the true folk, and let the traitors stay. + +BIRON: +Sweet lords, sweet lovers, O, let us embrace! +As true we are as flesh and blood can be: +The sea will ebb and flow, heaven show his face; +Young blood doth not obey an old decree: +We cannot cross the cause why we were born; +Therefore of all hands must we be forsworn. + +FERDINAND: +What, did these rent lines show some love of thine? + +BIRON: +Did they, quoth you? Who sees the heavenly Rosaline, +That, like a rude and savage man of Inde, +At the first opening of the gorgeous east, +Bows not his vassal head and strucken blind +Kisses the base ground with obedient breast? +What peremptory eagle-sighted eye +Dares look upon the heaven of her brow, +That is not blinded by her majesty? + +FERDINAND: +What zeal, what fury hath inspired thee now? +My love, her mistress, is a gracious moon; +She an attending star, scarce seen a light. + +BIRON: +My eyes are then no eyes, nor I Biron: +O, but for my love, day would turn to night! +Of all complexions the cull'd sovereignty +Do meet, as at a fair, in her fair cheek, +Where several worthies make one dignity, +Where nothing wants that want itself doth seek. +Lend me the flourish of all gentle tongues,-- +Fie, painted rhetoric! O, she needs it not: +To things of sale a seller's praise belongs, +She passes praise; then praise too short doth blot. +A wither'd hermit, five-score winters worn, +Might shake off fifty, looking in her eye: +Beauty doth varnish age, as if new-born, +And gives the crutch the cradle's infancy: +O, 'tis the sun that maketh all things shine. + +FERDINAND: +By heaven, thy love is black as ebony. + +BIRON: +Is ebony like her? O wood divine! +A wife of such wood were felicity. +O, who can give an oath? where is a book? +That I may swear beauty doth beauty lack, +If that she learn not of her eye to look: +No face is fair that is not full so black. + +FERDINAND: +O paradox! Black is the badge of hell, +The hue of dungeons and the suit of night; +And beauty's crest becomes the heavens well. + +BIRON: +Devils soonest tempt, resembling spirits of light. +O, if in black my lady's brows be deck'd, +It mourns that painting and usurping hair +Should ravish doters with a false aspect; +And therefore is she born to make black fair. +Her favour turns the fashion of the days, +For native blood is counted painting now; +And therefore red, that would avoid dispraise, +Paints itself black, to imitate her brow. + +DUMAIN: +To look like her are chimney-sweepers black. + +LONGAVILLE: +And since her time are colliers counted bright. + +FERDINAND: +And Ethiopes of their sweet complexion crack. + +DUMAIN: +Dark needs no candles now, for dark is light. + +BIRON: +Your mistresses dare never come in rain, +For fear their colours should be wash'd away. + +FERDINAND: +'Twere good, yours did; for, sir, to tell you plain, +I'll find a fairer face not wash'd to-day. + +BIRON: +I'll prove her fair, or talk till doomsday here. + +FERDINAND: +No devil will fright thee then so much as she. + +DUMAIN: +I never knew man hold vile stuff so dear. + +LONGAVILLE: +Look, here's thy love: my foot and her face see. + +BIRON: +O, if the streets were paved with thine eyes, +Her feet were much too dainty for such tread! + +DUMAIN: +O, vile! then, as she goes, what upward lies +The street should see as she walk'd overhead. + +FERDINAND: +But what of this? are we not all in love? + +BIRON: +Nothing so sure; and thereby all forsworn. + +FERDINAND: +Then leave this chat; and, good Biron, now prove +Our loving lawful, and our faith not torn. + +DUMAIN: +Ay, marry, there; some flattery for this evil. + +LONGAVILLE: +O, some authority how to proceed; +Some tricks, some quillets, how to cheat the devil. + +DUMAIN: +Some salve for perjury. + +BIRON: +'Tis more than need. +Have at you, then, affection's men at arms. +Consider what you first did swear unto, +To fast, to study, and to see no woman; +Flat treason 'gainst the kingly state of youth. +Say, can you fast? your stomachs are too young; +And abstinence engenders maladies. +And where that you have vow'd to study, lords, +In that each of you have forsworn his book, +Can you still dream and pore and thereon look? +For when would you, my lord, or you, or you, +Have found the ground of study's excellence +Without the beauty of a woman's face? +Why, universal plodding poisons up +The nimble spirits in the arteries, +As motion and long-during action tires +The sinewy vigour of the traveller. +Now, for not looking on a woman's face, +You have in that forsworn the use of eyes +And study too, the causer of your vow; +For where is any author in the world +Teaches such beauty as a woman's eye? +Learning is but an adjunct to ourself +And where we are our learning likewise is: +Then when ourselves we see in ladies' eyes, +Do we not likewise see our learning there? +O, we have made a vow to study, lords, +And in that vow we have forsworn our books. +For when would you, my liege, or you, or you, +In leaden contemplation have found out +Such fiery numbers as the prompting eyes +Of beauty's tutors have enrich'd you with? +Other slow arts entirely keep the brain; +And therefore, finding barren practisers, +Scarce show a harvest of their heavy toil: +But love, first learned in a lady's eyes, +Lives not alone immured in the brain; +But, with the motion of all elements, +Courses as swift as thought in every power, +And gives to every power a double power, +Above their functions and their offices. +It adds a precious seeing to the eye; +A lover's eyes will gaze an eagle blind; +A lover's ear will hear the lowest sound, +When the suspicious head of theft is stopp'd: +Love's feeling is more soft and sensible +Than are the tender horns of cockl'd snails; +Love's tongue proves dainty Bacchus gross in taste: +For valour, is not Love a Hercules, +Still climbing trees in the Hesperides? +Subtle as Sphinx; as sweet and musical +As bright Apollo's lute, strung with his hair: +And when Love speaks, the voice of all the gods +Makes heaven drowsy with the harmony. +Never durst poet touch a pen to write +Until his ink were temper'd with Love's sighs; +O, then his lines would ravish savage ears +And plant in tyrants mild humility. +From women's eyes this doctrine I derive: +They sparkle still the right Promethean fire; +They are the books, the arts, the academes, +That show, contain and nourish all the world: +Else none at all in ought proves excellent. +Then fools you were these women to forswear, +Or keeping what is sworn, you will prove fools. +For wisdom's sake, a word that all men love, +Or for love's sake, a word that loves all men, +Or for men's sake, the authors of these women, +Or women's sake, by whom we men are men, +Let us once lose our oaths to find ourselves, +Or else we lose ourselves to keep our oaths. +It is religion to be thus forsworn, +For charity itself fulfills the law, +And who can sever love from charity? + +FERDINAND: +Saint Cupid, then! and, soldiers, to the field! + +BIRON: +Advance your standards, and upon them, lords; +Pell-mell, down with them! but be first advised, +In conflict that you get the sun of them. + +LONGAVILLE: +Now to plain-dealing; lay these glozes by: +Shall we resolve to woo these girls of France? + +FERDINAND: +And win them too: therefore let us devise +Some entertainment for them in their tents. + +BIRON: +First, from the park let us conduct them thither; +Then homeward every man attach the hand +Of his fair mistress: in the afternoon +We will with some strange pastime solace them, +Such as the shortness of the time can shape; +For revels, dances, masks and merry hours +Forerun fair Love, strewing her way with flowers. + +FERDINAND: +Away, away! no time shall be omitted +That will betime, and may by us be fitted. + +BIRON: +Allons! allons! Sow'd cockle reap'd no corn; +And justice always whirls in equal measure: +Light wenches may prove plagues to men forsworn; +If so, our copper buys no better treasure. + +HOLOFERNES: +Satis quod sufficit. + +SIR NATHANIEL: +I praise God for you, sir: your reasons at dinner +have been sharp and sententious; pleasant without +scurrility, witty without affection, audacious without +impudency, learned without opinion, and strange with- +out heresy. I did converse this quondam day with +a companion of the king's, who is intituled, nomi- +nated, or called, Don Adriano de Armado. + +HOLOFERNES: +Novi hominem tanquam te: his humour is lofty, his +discourse peremptory, his tongue filed, his eye +ambitious, his gait majestical, and his general +behavior vain, ridiculous, and thrasonical. He is +too picked, too spruce, too affected, too odd, as it +were, too peregrinate, as I may call it. + +SIR NATHANIEL: +A most singular and choice epithet. + +HOLOFERNES: +He draweth out the thread of his verbosity finer +than the staple of his argument. I abhor such +fanatical phantasimes, such insociable and +point-devise companions; such rackers of +orthography, as to speak dout, fine, when he should +say doubt; det, when he should pronounce debt,--d, +e, b, t, not d, e, t: he clepeth a calf, cauf; +half, hauf; neighbour vocatur nebor; neigh +abbreviated ne. This is abhominable,--which he +would call abbominable: it insinuateth me of +insanie: anne intelligis, domine? to make frantic, lunatic. + +SIR NATHANIEL: +Laus Deo, bene intelligo. + +HOLOFERNES: +Bon, bon, fort bon, Priscian! a little scratch'd, +'twill serve. + +SIR NATHANIEL: +Videsne quis venit? + +HOLOFERNES: +Video, et gaudeo. + +DON ADRIANO DE ARMADO: +Chirrah! + +HOLOFERNES: +Quare chirrah, not sirrah? + +DON ADRIANO DE ARMADO: +Men of peace, well encountered. + +HOLOFERNES: +Most military sir, salutation. + +MOTH: + +COSTARD: +O, they have lived long on the alms-basket of words. +I marvel thy master hath not eaten thee for a word; +for thou art not so long by the head as +honorificabilitudinitatibus: thou art easier +swallowed than a flap-dragon. + +MOTH: +Peace! the peal begins. + +DON ADRIANO DE ARMADO: + +MOTH: +Yes, yes; he teaches boys the hornbook. What is a, +b, spelt backward, with the horn on his head? + +HOLOFERNES: +Ba, pueritia, with a horn added. + +MOTH: +Ba, most silly sheep with a horn. You hear his learning. + +HOLOFERNES: +Quis, quis, thou consonant? + +MOTH: +The third of the five vowels, if you repeat them; or +the fifth, if I. + +HOLOFERNES: +I will repeat them,--a, e, i,-- + +MOTH: +The sheep: the other two concludes it,--o, u. + +DON ADRIANO DE ARMADO: +Now, by the salt wave of the Mediterraneum, a sweet +touch, a quick venue of wit! snip, snap, quick and +home! it rejoiceth my intellect: true wit! + +MOTH: +Offered by a child to an old man; which is wit-old. + +HOLOFERNES: +What is the figure? what is the figure? + +MOTH: +Horns. + +HOLOFERNES: +Thou disputest like an infant: go, whip thy gig. + +MOTH: +Lend me your horn to make one, and I will whip about +your infamy circum circa,--a gig of a cuckold's horn. + +COSTARD: +An I had but one penny in the world, thou shouldst +have it to buy gingerbread: hold, there is the very +remuneration I had of thy master, thou halfpenny +purse of wit, thou pigeon-egg of discretion. O, an +the heavens were so pleased that thou wert but my +bastard, what a joyful father wouldst thou make me! +Go to; thou hast it ad dunghill, at the fingers' +ends, as they say. + +HOLOFERNES: +O, I smell false Latin; dunghill for unguem. + +DON ADRIANO DE ARMADO: +Arts-man, preambulate, we will be singled from the +barbarous. Do you not educate youth at the +charge-house on the top of the mountain? + +HOLOFERNES: +Or mons, the hill. + +DON ADRIANO DE ARMADO: +At your sweet pleasure, for the mountain. + +HOLOFERNES: +I do, sans question. + +DON ADRIANO DE ARMADO: +Sir, it is the king's most sweet pleasure and +affection to congratulate the princess at her +pavilion in the posteriors of this day, which the +rude multitude call the afternoon. + +HOLOFERNES: +The posterior of the day, most generous sir, is +liable, congruent and measurable for the afternoon: +the word is well culled, chose, sweet and apt, I do +assure you, sir, I do assure. + +DON ADRIANO DE ARMADO: +Sir, the king is a noble gentleman, and my familiar, +I do assure ye, very good friend: for what is +inward between us, let it pass. I do beseech thee, +remember thy courtesy; I beseech thee, apparel thy +head: and among other important and most serious +designs, and of great import indeed, too, but let +that pass: for I must tell thee, it will please his +grace, by the world, sometime to lean upon my poor +shoulder, and with his royal finger, thus, dally +with my excrement, with my mustachio; but, sweet +heart, let that pass. By the world, I recount no +fable: some certain special honours it pleaseth his +greatness to impart to Armado, a soldier, a man of +travel, that hath seen the world; but let that pass. +The very all of all is,--but, sweet heart, I do +implore secrecy,--that the king would have me +present the princess, sweet chuck, with some +delightful ostentation, or show, or pageant, or +antique, or firework. Now, understanding that the +curate and your sweet self are good at such +eruptions and sudden breaking out of mirth, as it +were, I have acquainted you withal, to the end to +crave your assistance. + +HOLOFERNES: +Sir, you shall present before her the Nine Worthies. +Sir, as concerning some entertainment of time, some +show in the posterior of this day, to be rendered by +our assistants, at the king's command, and this most +gallant, illustrate, and learned gentleman, before +the princess; I say none so fit as to present the +Nine Worthies. + +SIR NATHANIEL: +Where will you find men worthy enough to present them? + +HOLOFERNES: +Joshua, yourself; myself and this gallant gentleman, +Judas Maccabaeus; this swain, because of his great +limb or joint, shall pass Pompey the Great; the +page, Hercules,-- + +DON ADRIANO DE ARMADO: +Pardon, sir; error: he is not quantity enough for +that Worthy's thumb: he is not so big as the end of his club. + +HOLOFERNES: +Shall I have audience? he shall present Hercules in +minority: his enter and exit shall be strangling a +snake; and I will have an apology for that purpose. + +MOTH: +An excellent device! so, if any of the audience +hiss, you may cry 'Well done, Hercules! now thou +crushest the snake!' that is the way to make an +offence gracious, though few have the grace to do it. + +DON ADRIANO DE ARMADO: +For the rest of the Worthies?-- + +HOLOFERNES: +I will play three myself. + +MOTH: +Thrice-worthy gentleman! + +DON ADRIANO DE ARMADO: +Shall I tell you a thing? + +HOLOFERNES: +We attend. + +DON ADRIANO DE ARMADO: +We will have, if this fadge not, an antique. I +beseech you, follow. + +HOLOFERNES: +Via, goodman Dull! thou hast spoken no word all this while. + +DULL: +Nor understood none neither, sir. + +HOLOFERNES: +Allons! we will employ thee. + +DULL: +I'll make one in a dance, or so; or I will play +On the tabour to the Worthies, and let them dance the hay. + +HOLOFERNES: +Most dull, honest Dull! To our sport, away! + +PRINCESS: +Sweet hearts, we shall be rich ere we depart, +If fairings come thus plentifully in: +A lady wall'd about with diamonds! +Look you what I have from the loving king. + +ROSALINE: +Madame, came nothing else along with that? + +PRINCESS: +Nothing but this! yes, as much love in rhyme +As would be cramm'd up in a sheet of paper, +Writ o' both sides the leaf, margent and all, +That he was fain to seal on Cupid's name. + +ROSALINE: +That was the way to make his godhead wax, +For he hath been five thousand years a boy. + +KATHARINE: +Ay, and a shrewd unhappy gallows too. + +ROSALINE: +You'll ne'er be friends with him; a' kill'd your sister. + +KATHARINE: +He made her melancholy, sad, and heavy; +And so she died: had she been light, like you, +Of such a merry, nimble, stirring spirit, +She might ha' been a grandam ere she died: +And so may you; for a light heart lives long. + +ROSALINE: +What's your dark meaning, mouse, of this light word? + +KATHARINE: +A light condition in a beauty dark. + +ROSALINE: +We need more light to find your meaning out. + +KATHARINE: +You'll mar the light by taking it in snuff; +Therefore I'll darkly end the argument. + +ROSALINE: +Look what you do, you do it still i' the dark. + +KATHARINE: +So do not you, for you are a light wench. + +ROSALINE: +Indeed I weigh not you, and therefore light. + +KATHARINE: +You weigh me not? O, that's you care not for me. + +ROSALINE: +Great reason; for 'past cure is still past care.' + +PRINCESS: +Well bandied both; a set of wit well play'd. +But Rosaline, you have a favour too: +Who sent it? and what is it? + +ROSALINE: +I would you knew: +An if my face were but as fair as yours, +My favour were as great; be witness this. +Nay, I have verses too, I thank Biron: +The numbers true; and, were the numbering too, +I were the fairest goddess on the ground: +I am compared to twenty thousand fairs. +O, he hath drawn my picture in his letter! + +PRINCESS: +Any thing like? + +ROSALINE: +Much in the letters; nothing in the praise. + +PRINCESS: +Beauteous as ink; a good conclusion. + +KATHARINE: +Fair as a text B in a copy-book. + +ROSALINE: +'Ware pencils, ho! let me not die your debtor, +My red dominical, my golden letter: +O, that your face were not so full of O's! + +KATHARINE: +A pox of that jest! and I beshrew all shrows. + +PRINCESS: +But, Katharine, what was sent to you from fair Dumain? + +KATHARINE: +Madam, this glove. + +PRINCESS: +Did he not send you twain? + +KATHARINE: +Yes, madam, and moreover +Some thousand verses of a faithful lover, +A huge translation of hypocrisy, +Vilely compiled, profound simplicity. + +MARIA: +This and these pearls to me sent Longaville: +The letter is too long by half a mile. + +PRINCESS: +I think no less. Dost thou not wish in heart +The chain were longer and the letter short? + +MARIA: +Ay, or I would these hands might never part. + +PRINCESS: +We are wise girls to mock our lovers so. + +ROSALINE: +They are worse fools to purchase mocking so. +That same Biron I'll torture ere I go: +O that I knew he were but in by the week! +How I would make him fawn and beg and seek +And wait the season and observe the times +And spend his prodigal wits in bootless rhymes +And shape his service wholly to my hests +And make him proud to make me proud that jests! +So perttaunt-like would I o'ersway his state +That he should be my fool and I his fate. + +PRINCESS: +None are so surely caught, when they are catch'd, +As wit turn'd fool: folly, in wisdom hatch'd, +Hath wisdom's warrant and the help of school +And wit's own grace to grace a learned fool. + +ROSALINE: +The blood of youth burns not with such excess +As gravity's revolt to wantonness. + +MARIA: +Folly in fools bears not so strong a note +As foolery in the wise, when wit doth dote; +Since all the power thereof it doth apply +To prove, by wit, worth in simplicity. + +PRINCESS: +Here comes Boyet, and mirth is in his face. + +BOYET: +O, I am stabb'd with laughter! Where's her grace? + +PRINCESS: +Thy news Boyet? + +BOYET: +Prepare, madam, prepare! +Arm, wenches, arm! encounters mounted are +Against your peace: Love doth approach disguised, +Armed in arguments; you'll be surprised: +Muster your wits; stand in your own defence; +Or hide your heads like cowards, and fly hence. + +PRINCESS: +Saint Denis to Saint Cupid! What are they +That charge their breath against us? say, scout, say. + +BOYET: +Under the cool shade of a sycamore +I thought to close mine eyes some half an hour; +When, lo! to interrupt my purposed rest, +Toward that shade I might behold addrest +The king and his companions: warily +I stole into a neighbour thicket by, +And overheard what you shall overhear, +That, by and by, disguised they will be here. +Their herald is a pretty knavish page, +That well by heart hath conn'd his embassage: +Action and accent did they teach him there; +'Thus must thou speak,' and 'thus thy body bear:' +And ever and anon they made a doubt +Presence majestical would put him out, +'For,' quoth the king, 'an angel shalt thou see; +Yet fear not thou, but speak audaciously.' +The boy replied, 'An angel is not evil; +I should have fear'd her had she been a devil.' +With that, all laugh'd and clapp'd him on the shoulder, +Making the bold wag by their praises bolder: +One rubb'd his elbow thus, and fleer'd and swore +A better speech was never spoke before; +Another, with his finger and his thumb, +Cried, 'Via! we will do't, come what will come;' +The third he caper'd, and cried, 'All goes well;' +The fourth turn'd on the toe, and down he fell. +With that, they all did tumble on the ground, +With such a zealous laughter, so profound, +That in this spleen ridiculous appears, +To cheque their folly, passion's solemn tears. + +PRINCESS: +But what, but what, come they to visit us? + +BOYET: +They do, they do: and are apparell'd thus. +Like Muscovites or Russians, as I guess. +Their purpose is to parle, to court and dance; +And every one his love-feat will advance +Unto his several mistress, which they'll know +By favours several which they did bestow. + +PRINCESS: +And will they so? the gallants shall be task'd; +For, ladies, we shall every one be mask'd; +And not a man of them shall have the grace, +Despite of suit, to see a lady's face. +Hold, Rosaline, this favour thou shalt wear, +And then the king will court thee for his dear; +Hold, take thou this, my sweet, and give me thine, +So shall Biron take me for Rosaline. +And change your favours too; so shall your loves +Woo contrary, deceived by these removes. + +ROSALINE: +Come on, then; wear the favours most in sight. + +KATHARINE: +But in this changing what is your intent? + +PRINCESS: +The effect of my intent is to cross theirs: +They do it but in mocking merriment; +And mock for mock is only my intent. +Their several counsels they unbosom shall +To loves mistook, and so be mock'd withal +Upon the next occasion that we meet, +With visages displayed, to talk and greet. + +ROSALINE: +But shall we dance, if they desire to't? + +PRINCESS: +No, to the death, we will not move a foot; +Nor to their penn'd speech render we no grace, +But while 'tis spoke each turn away her face. + +BOYET: +Why, that contempt will kill the speaker's heart, +And quite divorce his memory from his part. + +PRINCESS: +Therefore I do it; and I make no doubt +The rest will ne'er come in, if he be out +There's no such sport as sport by sport o'erthrown, +To make theirs ours and ours none but our own: +So shall we stay, mocking intended game, +And they, well mock'd, depart away with shame. + +BOYET: +The trumpet sounds: be mask'd; the maskers come. + +MOTH: +All hail, the richest beauties on the earth!-- + +BOYET: +Beauties no richer than rich taffeta. + +MOTH: +A holy parcel of the fairest dames. +That ever turn'd their--backs--to mortal views! + +BIRON: + +MOTH: +That ever turn'd their eyes to mortal views!--Out-- + +BOYET: +True; out indeed. + +MOTH: +Out of your favours, heavenly spirits, vouchsafe +Not to behold-- + +BIRON: + +MOTH: +Once to behold with your sun-beamed eyes, +--with your sun-beamed eyes-- + +BOYET: +They will not answer to that epithet; +You were best call it 'daughter-beamed eyes.' + +MOTH: +They do not mark me, and that brings me out. + +BIRON: +Is this your perfectness? be gone, you rogue! + +ROSALINE: +What would these strangers? know their minds, Boyet: +If they do speak our language, 'tis our will: +That some plain man recount their purposes +Know what they would. + +BOYET: +What would you with the princess? + +BIRON: +Nothing but peace and gentle visitation. + +ROSALINE: +What would they, say they? + +BOYET: +Nothing but peace and gentle visitation. + +ROSALINE: +Why, that they have; and bid them so be gone. + +BOYET: +She says, you have it, and you may be gone. + +FERDINAND: +Say to her, we have measured many miles +To tread a measure with her on this grass. + +BOYET: +They say, that they have measured many a mile +To tread a measure with you on this grass. + +ROSALINE: +It is not so. Ask them how many inches +Is in one mile: if they have measured many, +The measure then of one is easily told. + +BOYET: +If to come hither you have measured miles, +And many miles, the princess bids you tell +How many inches doth fill up one mile. + +BIRON: +Tell her, we measure them by weary steps. + +BOYET: +She hears herself. + +ROSALINE: +How many weary steps, +Of many weary miles you have o'ergone, +Are number'd in the travel of one mile? + +BIRON: +We number nothing that we spend for you: +Our duty is so rich, so infinite, +That we may do it still without accompt. +Vouchsafe to show the sunshine of your face, +That we, like savages, may worship it. + +ROSALINE: +My face is but a moon, and clouded too. + +FERDINAND: +Blessed are clouds, to do as such clouds do! +Vouchsafe, bright moon, and these thy stars, to shine, +Those clouds removed, upon our watery eyne. + +ROSALINE: +O vain petitioner! beg a greater matter; +Thou now request'st but moonshine in the water. + +FERDINAND: +Then, in our measure do but vouchsafe one change. +Thou bid'st me beg: this begging is not strange. + +ROSALINE: +Play, music, then! Nay, you must do it soon. +Not yet! no dance! Thus change I like the moon. + +FERDINAND: +Will you not dance? How come you thus estranged? + +ROSALINE: +You took the moon at full, but now she's changed. + +FERDINAND: +Yet still she is the moon, and I the man. +The music plays; vouchsafe some motion to it. + +ROSALINE: +Our ears vouchsafe it. + +FERDINAND: +But your legs should do it. + +ROSALINE: +Since you are strangers and come here by chance, +We'll not be nice: take hands. We will not dance. + +FERDINAND: +Why take we hands, then? + +ROSALINE: +Only to part friends: +Curtsy, sweet hearts; and so the measure ends. + +FERDINAND: +More measure of this measure; be not nice. + +ROSALINE: +We can afford no more at such a price. + +FERDINAND: +Prize you yourselves: what buys your company? + +ROSALINE: +Your absence only. + +FERDINAND: +That can never be. + +ROSALINE: +Then cannot we be bought: and so, adieu; +Twice to your visor, and half once to you. + +FERDINAND: +If you deny to dance, let's hold more chat. + +ROSALINE: +In private, then. + +FERDINAND: +I am best pleased with that. + +BIRON: +White-handed mistress, one sweet word with thee. + +PRINCESS: +Honey, and milk, and sugar; there is three. + +BIRON: +Nay then, two treys, and if you grow so nice, +Metheglin, wort, and malmsey: well run, dice! +There's half-a-dozen sweets. + +PRINCESS: +Seventh sweet, adieu: +Since you can cog, I'll play no more with you. + +BIRON: +One word in secret. + +PRINCESS: +Let it not be sweet. + +BIRON: +Thou grievest my gall. + +PRINCESS: +Gall! bitter. + +BIRON: +Therefore meet. + +DUMAIN: +Will you vouchsafe with me to change a word? + +MARIA: +Name it. + +DUMAIN: +Fair lady,-- + +MARIA: +Say you so? Fair lord,-- +Take that for your fair lady. + +DUMAIN: +Please it you, +As much in private, and I'll bid adieu. + +KATHARINE: +What, was your vizard made without a tongue? + +LONGAVILLE: +I know the reason, lady, why you ask. + +KATHARINE: +O for your reason! quickly, sir; I long. + +LONGAVILLE: +You have a double tongue within your mask, +And would afford my speechless vizard half. + +KATHARINE: +Veal, quoth the Dutchman. Is not 'veal' a calf? + +LONGAVILLE: +A calf, fair lady! + +KATHARINE: +No, a fair lord calf. + +LONGAVILLE: +Let's part the word. + +KATHARINE: +No, I'll not be your half +Take all, and wean it; it may prove an ox. + +LONGAVILLE: +Look, how you butt yourself in these sharp mocks! +Will you give horns, chaste lady? do not so. + +KATHARINE: +Then die a calf, before your horns do grow. + +LONGAVILLE: +One word in private with you, ere I die. + +KATHARINE: +Bleat softly then; the butcher hears you cry. + +BOYET: +The tongues of mocking wenches are as keen +As is the razor's edge invisible, +Cutting a smaller hair than may be seen, +Above the sense of sense; so sensible +Seemeth their conference; their conceits have wings +Fleeter than arrows, bullets, wind, thought, swifter things. + +ROSALINE: +Not one word more, my maids; break off, break off. + +BIRON: +By heaven, all dry-beaten with pure scoff! + +FERDINAND: +Farewell, mad wenches; you have simple wits. + +PRINCESS: +Twenty adieus, my frozen Muscovits. +Are these the breed of wits so wonder'd at? + +BOYET: +Tapers they are, with your sweet breaths puff'd out. + +ROSALINE: +Well-liking wits they have; gross, gross; fat, fat. + +PRINCESS: +O poverty in wit, kingly-poor flout! +Will they not, think you, hang themselves tonight? +Or ever, but in vizards, show their faces? +This pert Biron was out of countenance quite. + +ROSALINE: +O, they were all in lamentable cases! +The king was weeping-ripe for a good word. + +PRINCESS: +Biron did swear himself out of all suit. + +MARIA: +Dumain was at my service, and his sword: +No point, quoth I; my servant straight was mute. + +KATHARINE: +Lord Longaville said, I came o'er his heart; +And trow you what he called me? + +PRINCESS: +Qualm, perhaps. + +KATHARINE: +Yes, in good faith. + +PRINCESS: +Go, sickness as thou art! + +ROSALINE: +Well, better wits have worn plain statute-caps. +But will you hear? the king is my love sworn. + +PRINCESS: +And quick Biron hath plighted faith to me. + +KATHARINE: +And Longaville was for my service born. + +MARIA: +Dumain is mine, as sure as bark on tree. + +BOYET: +Madam, and pretty mistresses, give ear: +Immediately they will again be here +In their own shapes; for it can never be +They will digest this harsh indignity. + +PRINCESS: +Will they return? + +BOYET: +They will, they will, God knows, +And leap for joy, though they are lame with blows: +Therefore change favours; and, when they repair, +Blow like sweet roses in this summer air. + +PRINCESS: +How blow? how blow? speak to be understood. + +BOYET: +Fair ladies mask'd are roses in their bud; +Dismask'd, their damask sweet commixture shown, +Are angels vailing clouds, or roses blown. + +PRINCESS: +Avaunt, perplexity! What shall we do, +If they return in their own shapes to woo? + +ROSALINE: +Good madam, if by me you'll be advised, +Let's, mock them still, as well known as disguised: +Let us complain to them what fools were here, +Disguised like Muscovites, in shapeless gear; +And wonder what they were and to what end +Their shallow shows and prologue vilely penn'd +And their rough carriage so ridiculous, +Should be presented at our tent to us. + +BOYET: +Ladies, withdraw: the gallants are at hand. + +PRINCESS: +Whip to our tents, as roes run o'er land. + +FERDINAND: +Fair sir, God save you! Where's the princess? + +BOYET: +Gone to her tent. Please it your majesty +Command me any service to her thither? + +FERDINAND: +That she vouchsafe me audience for one word. + +BOYET: +I will; and so will she, I know, my lord. + +BIRON: +This fellow pecks up wit as pigeons pease, +And utters it again when God doth please: +He is wit's pedler, and retails his wares +At wakes and wassails, meetings, markets, fairs; +And we that sell by gross, the Lord doth know, +Have not the grace to grace it with such show. +This gallant pins the wenches on his sleeve; +Had he been Adam, he had tempted Eve; +A' can carve too, and lisp: why, this is he +That kiss'd his hand away in courtesy; +This is the ape of form, monsieur the nice, +That, when he plays at tables, chides the dice +In honourable terms: nay, he can sing +A mean most meanly; and in ushering +Mend him who can: the ladies call him sweet; +The stairs, as he treads on them, kiss his feet: +This is the flower that smiles on every one, +To show his teeth as white as whale's bone; +And consciences, that will not die in debt, +Pay him the due of honey-tongued Boyet. + +FERDINAND: +A blister on his sweet tongue, with my heart, +That put Armado's page out of his part! + +BIRON: +See where it comes! Behavior, what wert thou +Till this madman show'd thee? and what art thou now? + +FERDINAND: +All hail, sweet madam, and fair time of day! + +PRINCESS: +'Fair' in 'all hail' is foul, as I conceive. + +FERDINAND: +Construe my speeches better, if you may. + +PRINCESS: +Then wish me better; I will give you leave. + +FERDINAND: +We came to visit you, and purpose now +To lead you to our court; vouchsafe it then. + +PRINCESS: +This field shall hold me; and so hold your vow: +Nor God, nor I, delights in perjured men. + +FERDINAND: +Rebuke me not for that which you provoke: +The virtue of your eye must break my oath. + +PRINCESS: +You nickname virtue; vice you should have spoke; +For virtue's office never breaks men's troth. +Now by my maiden honour, yet as pure +As the unsullied lily, I protest, +A world of torments though I should endure, +I would not yield to be your house's guest; +So much I hate a breaking cause to be +Of heavenly oaths, vow'd with integrity. + +FERDINAND: +O, you have lived in desolation here, +Unseen, unvisited, much to our shame. + +PRINCESS: +Not so, my lord; it is not so, I swear; +We have had pastimes here and pleasant game: +A mess of Russians left us but of late. + +FERDINAND: +How, madam! Russians! + +PRINCESS: +Ay, in truth, my lord; +Trim gallants, full of courtship and of state. + +ROSALINE: +Madam, speak true. It is not so, my lord: +My lady, to the manner of the days, +In courtesy gives undeserving praise. +We four indeed confronted were with four +In Russian habit: here they stay'd an hour, +And talk'd apace; and in that hour, my lord, +They did not bless us with one happy word. +I dare not call them fools; but this I think, +When they are thirsty, fools would fain have drink. + +BIRON: +This jest is dry to me. Fair gentle sweet, +Your wit makes wise things foolish: when we greet, +With eyes best seeing, heaven's fiery eye, +By light we lose light: your capacity +Is of that nature that to your huge store +Wise things seem foolish and rich things but poor. + +ROSALINE: +This proves you wise and rich, for in my eye,-- + +BIRON: +I am a fool, and full of poverty. + +ROSALINE: +But that you take what doth to you belong, +It were a fault to snatch words from my tongue. + +BIRON: +O, I am yours, and all that I possess! + +ROSALINE: +All the fool mine? + +BIRON: +I cannot give you less. + +ROSALINE: +Which of the vizards was it that you wore? + +BIRON: +Where? when? what vizard? why demand you this? + +ROSALINE: +There, then, that vizard; that superfluous case +That hid the worse and show'd the better face. + +FERDINAND: +We are descried; they'll mock us now downright. + +DUMAIN: +Let us confess and turn it to a jest. + +PRINCESS: +Amazed, my lord? why looks your highness sad? + +ROSALINE: +Help, hold his brows! he'll swoon! Why look you pale? +Sea-sick, I think, coming from Muscovy. + +BIRON: +Thus pour the stars down plagues for perjury. +Can any face of brass hold longer out? +Here stand I lady, dart thy skill at me; +Bruise me with scorn, confound me with a flout; +Thrust thy sharp wit quite through my ignorance; +Cut me to pieces with thy keen conceit; +And I will wish thee never more to dance, +Nor never more in Russian habit wait. +O, never will I trust to speeches penn'd, +Nor to the motion of a schoolboy's tongue, +Nor never come in vizard to my friend, +Nor woo in rhyme, like a blind harper's song! +Taffeta phrases, silken terms precise, +Three-piled hyperboles, spruce affectation, +Figures pedantical; these summer-flies +Have blown me full of maggot ostentation: +I do forswear them; and I here protest, +By this white glove;--how white the hand, God knows!-- +Henceforth my wooing mind shall be express'd +In russet yeas and honest kersey noes: +And, to begin, wench,--so God help me, la!-- +My love to thee is sound, sans crack or flaw. + +ROSALINE: +Sans sans, I pray you. + +BIRON: +Yet I have a trick +Of the old rage: bear with me, I am sick; +I'll leave it by degrees. Soft, let us see: +Write, 'Lord have mercy on us' on those three; +They are infected; in their hearts it lies; +They have the plague, and caught it of your eyes; +These lords are visited; you are not free, +For the Lord's tokens on you do I see. + +PRINCESS: +No, they are free that gave these tokens to us. + +BIRON: +Our states are forfeit: seek not to undo us. + +ROSALINE: +It is not so; for how can this be true, +That you stand forfeit, being those that sue? + +BIRON: +Peace! for I will not have to do with you. + +ROSALINE: +Nor shall not, if I do as I intend. + +BIRON: +Speak for yourselves; my wit is at an end. + +FERDINAND: +Teach us, sweet madam, for our rude transgression +Some fair excuse. + +PRINCESS: +The fairest is confession. +Were not you here but even now disguised? + +FERDINAND: +Madam, I was. + +PRINCESS: +And were you well advised? + +FERDINAND: +I was, fair madam. + +PRINCESS: +When you then were here, +What did you whisper in your lady's ear? + +FERDINAND: +That more than all the world I did respect her. + +PRINCESS: +When she shall challenge this, you will reject her. + +FERDINAND: +Upon mine honour, no. + +PRINCESS: +Peace, peace! forbear: +Your oath once broke, you force not to forswear. + +FERDINAND: +Despise me, when I break this oath of mine. + +PRINCESS: +I will: and therefore keep it. Rosaline, +What did the Russian whisper in your ear? + +ROSALINE: +Madam, he swore that he did hold me dear +As precious eyesight, and did value me +Above this world; adding thereto moreover +That he would wed me, or else die my lover. + +PRINCESS: +God give thee joy of him! the noble lord +Most honourably doth unhold his word. + +FERDINAND: +What mean you, madam? by my life, my troth, +I never swore this lady such an oath. + +ROSALINE: +By heaven, you did; and to confirm it plain, +You gave me this: but take it, sir, again. + +FERDINAND: +My faith and this the princess I did give: +I knew her by this jewel on her sleeve. + +PRINCESS: +Pardon me, sir, this jewel did she wear; +And Lord Biron, I thank him, is my dear. +What, will you have me, or your pearl again? + +BIRON: +Neither of either; I remit both twain. +I see the trick on't: here was a consent, +Knowing aforehand of our merriment, +To dash it like a Christmas comedy: +Some carry-tale, some please-man, some slight zany, +Some mumble-news, some trencher-knight, some Dick, +That smiles his cheek in years and knows the trick +To make my lady laugh when she's disposed, +Told our intents before; which once disclosed, +The ladies did change favours: and then we, +Following the signs, woo'd but the sign of she. +Now, to our perjury to add more terror, +We are again forsworn, in will and error. +Much upon this it is: and might not you +Forestall our sport, to make us thus untrue? +Do not you know my lady's foot by the squier, +And laugh upon the apple of her eye? +And stand between her back, sir, and the fire, +Holding a trencher, jesting merrily? +You put our page out: go, you are allow'd; +Die when you will, a smock shall be your shroud. +You leer upon me, do you? there's an eye +Wounds like a leaden sword. + +BOYET: +Full merrily +Hath this brave manage, this career, been run. + +BIRON: +Lo, he is tilting straight! Peace! I have done. +Welcome, pure wit! thou partest a fair fray. + +COSTARD: +O Lord, sir, they would know +Whether the three Worthies shall come in or no. + +BIRON: +What, are there but three? + +COSTARD: +No, sir; but it is vara fine, +For every one pursents three. + +BIRON: +And three times thrice is nine. + +COSTARD: +Not so, sir; under correction, sir; I hope it is not so. +You cannot beg us, sir, I can assure you, sir we know +what we know: +I hope, sir, three times thrice, sir,-- + +BIRON: +Is not nine. + +COSTARD: +Under correction, sir, we know whereuntil it doth amount. + +BIRON: +By Jove, I always took three threes for nine. + +COSTARD: +O Lord, sir, it were pity you should get your living +by reckoning, sir. + +BIRON: +How much is it? + +COSTARD: +O Lord, sir, the parties themselves, the actors, +sir, will show whereuntil it doth amount: for mine +own part, I am, as they say, but to parfect one man +in one poor man, Pompion the Great, sir. + +BIRON: +Art thou one of the Worthies? + +COSTARD: +It pleased them to think me worthy of Pompion the +Great: for mine own part, I know not the degree of +the Worthy, but I am to stand for him. + +BIRON: +Go, bid them prepare. + +COSTARD: +We will turn it finely off, sir; we will take +some care. + +FERDINAND: +Biron, they will shame us: let them not approach. + +BIRON: +We are shame-proof, my lord: and tis some policy +To have one show worse than the king's and his company. + +FERDINAND: +I say they shall not come. + +PRINCESS: +Nay, my good lord, let me o'errule you now: +That sport best pleases that doth least know how: +Where zeal strives to content, and the contents +Dies in the zeal of that which it presents: +Their form confounded makes most form in mirth, +When great things labouring perish in their birth. + +BIRON: +A right description of our sport, my lord. + +DON ADRIANO DE ARMADO: +Anointed, I implore so much expense of thy royal +sweet breath as will utter a brace of words. + +PRINCESS: +Doth this man serve God? + +BIRON: +Why ask you? + +PRINCESS: +He speaks not like a man of God's making. + +DON ADRIANO DE ARMADO: +That is all one, my fair, sweet, honey monarch; for, +I protest, the schoolmaster is exceeding +fantastical; too, too vain, too too vain: but we +will put it, as they say, to fortuna de la guerra. +I wish you the peace of mind, most royal couplement! + +FERDINAND: +Here is like to be a good presence of Worthies. He +presents Hector of Troy; the swain, Pompey the +Great; the parish curate, Alexander; Armado's page, +Hercules; the pedant, Judas Maccabaeus: And if +these four Worthies in their first show thrive, +These four will change habits, and present the other five. + +BIRON: +There is five in the first show. + +FERDINAND: +You are deceived; 'tis not so. + +BIRON: +The pedant, the braggart, the hedge-priest, the fool +and the boy:-- +Abate throw at novum, and the whole world again +Cannot pick out five such, take each one in his vein. + +FERDINAND: +The ship is under sail, and here she comes amain. + +COSTARD: +I Pompey am,-- + +BOYET: +You lie, you are not he. + +COSTARD: +I Pompey am,-- + +BOYET: +With libbard's head on knee. + +BIRON: +Well said, old mocker: I must needs be friends +with thee. + +COSTARD: +I Pompey am, Pompey surnamed the Big-- + +DUMAIN: +The Great. + +COSTARD: +It is, 'Great,' sir:-- +Pompey surnamed the Great; +That oft in field, with targe and shield, did make +my foe to sweat: +And travelling along this coast, I here am come by chance, +And lay my arms before the legs of this sweet lass of France, +If your ladyship would say, 'Thanks, Pompey,' I had done. + +PRINCESS: +Great thanks, great Pompey. + +COSTARD: +'Tis not so much worth; but I hope I was perfect: I +made a little fault in 'Great.' + +BIRON: +My hat to a halfpenny, Pompey proves the best Worthy. + +SIR NATHANIEL: +When in the world I lived, I was the world's +commander; +By east, west, north, and south, I spread my +conquering might: +My scutcheon plain declares that I am Alisander,-- + +BOYET: +Your nose says, no, you are not for it stands too right. + +BIRON: +Your nose smells 'no' in this, most tender-smelling knight. + +PRINCESS: +The conqueror is dismay'd. Proceed, good Alexander. + +SIR NATHANIEL: +When in the world I lived, I was the world's +commander,-- + +BOYET: +Most true, 'tis right; you were so, Alisander. + +BIRON: +Pompey the Great,-- + +COSTARD: +Your servant, and Costard. + +BIRON: +Take away the conqueror, take away Alisander. + +COSTARD: + +HOLOFERNES: +Great Hercules is presented by this imp, +Whose club kill'd Cerberus, that three-headed canis; +And when he was a babe, a child, a shrimp, +Thus did he strangle serpents in his manus. +Quoniam he seemeth in minority, +Ergo I come with this apology. +Keep some state in thy exit, and vanish. +Judas I am,-- + +DUMAIN: +A Judas! + +HOLOFERNES: +Not Iscariot, sir. +Judas I am, ycliped Maccabaeus. + +DUMAIN: +Judas Maccabaeus clipt is plain Judas. + +BIRON: +A kissing traitor. How art thou proved Judas? + +HOLOFERNES: +Judas I am,-- + +DUMAIN: +The more shame for you, Judas. + +HOLOFERNES: +What mean you, sir? + +BOYET: +To make Judas hang himself. + +HOLOFERNES: +Begin, sir; you are my elder. + +BIRON: +Well followed: Judas was hanged on an elder. + +HOLOFERNES: +I will not be put out of countenance. + +BIRON: +Because thou hast no face. + +HOLOFERNES: +What is this? + +BOYET: +A cittern-head. + +DUMAIN: +The head of a bodkin. + +BIRON: +A Death's face in a ring. + +LONGAVILLE: +The face of an old Roman coin, scarce seen. + +BOYET: +The pommel of Caesar's falchion. + +DUMAIN: +The carved-bone face on a flask. + +BIRON: +Saint George's half-cheek in a brooch. + +DUMAIN: +Ay, and in a brooch of lead. + +BIRON: +Ay, and worn in the cap of a tooth-drawer. +And now forward; for we have put thee in countenance. + +HOLOFERNES: +You have put me out of countenance. + +BIRON: +False; we have given thee faces. + +HOLOFERNES: +But you have out-faced them all. + +BIRON: +An thou wert a lion, we would do so. + +BOYET: +Therefore, as he is an ass, let him go. +And so adieu, sweet Jude! nay, why dost thou stay? + +DUMAIN: +For the latter end of his name. + +BIRON: +For the ass to the Jude; give it him:--Jud-as, away! + +HOLOFERNES: +This is not generous, not gentle, not humble. + +BOYET: +A light for Monsieur Judas! it grows dark, he may stumble. + +PRINCESS: +Alas, poor Maccabaeus, how hath he been baited! + +BIRON: +Hide thy head, Achilles: here comes Hector in arms. + +DUMAIN: +Though my mocks come home by me, I will now be merry. + +FERDINAND: +Hector was but a Troyan in respect of this. + +BOYET: +But is this Hector? + +FERDINAND: +I think Hector was not so clean-timbered. + +LONGAVILLE: +His leg is too big for Hector's. + +DUMAIN: +More calf, certain. + +BOYET: +No; he is best endued in the small. + +BIRON: +This cannot be Hector. + +DUMAIN: +He's a god or a painter; for he makes faces. + +DON ADRIANO DE ARMADO: +The armipotent Mars, of lances the almighty, +Gave Hector a gift,-- + +DUMAIN: +A gilt nutmeg. + +BIRON: +A lemon. + +LONGAVILLE: +Stuck with cloves. + +DUMAIN: +No, cloven. + +DON ADRIANO DE ARMADO: +Peace!-- +The armipotent Mars, of lances the almighty +Gave Hector a gift, the heir of Ilion; +A man so breathed, that certain he would fight; yea +From morn till night, out of his pavilion. +I am that flower,-- + +DUMAIN: +That mint. + +LONGAVILLE: +That columbine. + +DON ADRIANO DE ARMADO: +Sweet Lord Longaville, rein thy tongue. + +LONGAVILLE: +I must rather give it the rein, for it runs against Hector. + +DUMAIN: +Ay, and Hector's a greyhound. + +DON ADRIANO DE ARMADO: +The sweet war-man is dead and rotten; sweet chucks, +beat not the bones of the buried: when he breathed, +he was a man. But I will forward with my device. +Sweet royalty, bestow on me the sense of hearing. + +PRINCESS: +Speak, brave Hector: we are much delighted. + +DON ADRIANO DE ARMADO: +I do adore thy sweet grace's slipper. + +BOYET: + +DUMAIN: + +DON ADRIANO DE ARMADO: +This Hector far surmounted Hannibal,-- + +COSTARD: +The party is gone, fellow Hector, she is gone; she +is two months on her way. + +DON ADRIANO DE ARMADO: +What meanest thou? + +COSTARD: +Faith, unless you play the honest Troyan, the poor +wench is cast away: she's quick; the child brags in +her belly already: tis yours. + +DON ADRIANO DE ARMADO: +Dost thou infamonize me among potentates? thou shalt +die. + +COSTARD: +Then shall Hector be whipped for Jaquenetta that is +quick by him and hanged for Pompey that is dead by +him. + +DUMAIN: +Most rare Pompey! + +BOYET: +Renowned Pompey! + +BIRON: +Greater than great, great, great, great Pompey! +Pompey the Huge! + +DUMAIN: +Hector trembles. + +BIRON: +Pompey is moved. More Ates, more Ates! stir them +on! stir them on! + +DUMAIN: +Hector will challenge him. + +BIRON: +Ay, if a' have no man's blood in's belly than will +sup a flea. + +DON ADRIANO DE ARMADO: +By the north pole, I do challenge thee. + +COSTARD: +I will not fight with a pole, like a northern man: +I'll slash; I'll do it by the sword. I bepray you, +let me borrow my arms again. + +DUMAIN: +Room for the incensed Worthies! + +COSTARD: +I'll do it in my shirt. + +DUMAIN: +Most resolute Pompey! + +MOTH: +Master, let me take you a buttonhole lower. Do you +not see Pompey is uncasing for the combat? What mean +you? You will lose your reputation. + +DON ADRIANO DE ARMADO: +Gentlemen and soldiers, pardon me; I will not combat +in my shirt. + +DUMAIN: +You may not deny it: Pompey hath made the challenge. + +DON ADRIANO DE ARMADO: +Sweet bloods, I both may and will. + +BIRON: +What reason have you for't? + +DON ADRIANO DE ARMADO: +The naked truth of it is, I have no shirt; I go +woolward for penance. + +BOYET: +True, and it was enjoined him in Rome for want of +linen: since when, I'll be sworn, he wore none but +a dishclout of Jaquenetta's, and that a' wears next +his heart for a favour. + +MERCADE: +God save you, madam! + +PRINCESS: +Welcome, Mercade; +But that thou interrupt'st our merriment. + +MERCADE: +I am sorry, madam; for the news I bring +Is heavy in my tongue. The king your father-- + +PRINCESS: +Dead, for my life! + +MERCADE: +Even so; my tale is told. + +BIRON: +Worthies, away! the scene begins to cloud. + +DON ADRIANO DE ARMADO: +For mine own part, I breathe free breath. I have +seen the day of wrong through the little hole of +discretion, and I will right myself like a soldier. + +FERDINAND: +How fares your majesty? + +PRINCESS: +Boyet, prepare; I will away tonight. + +FERDINAND: +Madam, not so; I do beseech you, stay. + +PRINCESS: +Prepare, I say. I thank you, gracious lords, +For all your fair endeavors; and entreat, +Out of a new-sad soul, that you vouchsafe +In your rich wisdom to excuse or hide +The liberal opposition of our spirits, +If over-boldly we have borne ourselves +In the converse of breath: your gentleness +Was guilty of it. Farewell worthy lord! +A heavy heart bears not a nimble tongue: +Excuse me so, coming too short of thanks +For my great suit so easily obtain'd. + +FERDINAND: +The extreme parts of time extremely forms +All causes to the purpose of his speed, +And often at his very loose decides +That which long process could not arbitrate: +And though the mourning brow of progeny +Forbid the smiling courtesy of love +The holy suit which fain it would convince, +Yet, since love's argument was first on foot, +Let not the cloud of sorrow justle it +From what it purposed; since, to wail friends lost +Is not by much so wholesome-profitable +As to rejoice at friends but newly found. + +PRINCESS: +I understand you not: my griefs are double. + +BIRON: +Honest plain words best pierce the ear of grief; +And by these badges understand the king. +For your fair sakes have we neglected time, +Play'd foul play with our oaths: your beauty, ladies, +Hath much deform'd us, fashioning our humours +Even to the opposed end of our intents: +And what in us hath seem'd ridiculous,-- +As love is full of unbefitting strains, +All wanton as a child, skipping and vain, +Form'd by the eye and therefore, like the eye, +Full of strange shapes, of habits and of forms, +Varying in subjects as the eye doth roll +To every varied object in his glance: +Which parti-coated presence of loose love +Put on by us, if, in your heavenly eyes, +Have misbecomed our oaths and gravities, +Those heavenly eyes, that look into these faults, +Suggested us to make. Therefore, ladies, +Our love being yours, the error that love makes +Is likewise yours: we to ourselves prove false, +By being once false for ever to be true +To those that make us both,--fair ladies, you: +And even that falsehood, in itself a sin, +Thus purifies itself and turns to grace. + +PRINCESS: +We have received your letters full of love; +Your favours, the ambassadors of love; +And, in our maiden council, rated them +At courtship, pleasant jest and courtesy, +As bombast and as lining to the time: +But more devout than this in our respects +Have we not been; and therefore met your loves +In their own fashion, like a merriment. + +DUMAIN: +Our letters, madam, show'd much more than jest. + +LONGAVILLE: +So did our looks. + +ROSALINE: +We did not quote them so. + +FERDINAND: +Now, at the latest minute of the hour, +Grant us your loves. + +PRINCESS: +A time, methinks, too short +To make a world-without-end bargain in. +No, no, my lord, your grace is perjured much, +Full of dear guiltiness; and therefore this: +If for my love, as there is no such cause, +You will do aught, this shall you do for me: +Your oath I will not trust; but go with speed +To some forlorn and naked hermitage, +Remote from all the pleasures of the world; +There stay until the twelve celestial signs +Have brought about the annual reckoning. +If this austere insociable life +Change not your offer made in heat of blood; +If frosts and fasts, hard lodging and thin weeds +Nip not the gaudy blossoms of your love, +But that it bear this trial and last love; +Then, at the expiration of the year, +Come challenge me, challenge me by these deserts, +And, by this virgin palm now kissing thine +I will be thine; and till that instant shut +My woeful self up in a mourning house, +Raining the tears of lamentation +For the remembrance of my father's death. +If this thou do deny, let our hands part, +Neither entitled in the other's heart. + +FERDINAND: +If this, or more than this, I would deny, +To flatter up these powers of mine with rest, +The sudden hand of death close up mine eye! +Hence ever then my heart is in thy breast. + +BIRON: +[And what to me, my love? and what to me? + +ROSALINE: +You must be purged too, your sins are rack'd, +You are attaint with faults and perjury: +Therefore if you my favour mean to get, +A twelvemonth shall you spend, and never rest, +But seek the weary beds of people sick.] + +DUMAIN: +But what to me, my love? but what to me? A wife? + +KATHARINE: +A beard, fair health, and honesty; +With three-fold love I wish you all these three. + +DUMAIN: +O, shall I say, I thank you, gentle wife? + +KATHARINE: +Not so, my lord; a twelvemonth and a day +I'll mark no words that smooth-faced wooers say: +Come when the king doth to my lady come; +Then, if I have much love, I'll give you some. + +DUMAIN: +I'll serve thee true and faithfully till then. + +KATHARINE: +Yet swear not, lest ye be forsworn again. + +LONGAVILLE: +What says Maria? + +MARIA: +At the twelvemonth's end +I'll change my black gown for a faithful friend. + +LONGAVILLE: +I'll stay with patience; but the time is long. + +MARIA: +The liker you; few taller are so young. + +BIRON: +Studies my lady? mistress, look on me; +Behold the window of my heart, mine eye, +What humble suit attends thy answer there: +Impose some service on me for thy love. + +ROSALINE: +Oft have I heard of you, my Lord Biron, +Before I saw you; and the world's large tongue +Proclaims you for a man replete with mocks, +Full of comparisons and wounding flouts, +Which you on all estates will execute +That lie within the mercy of your wit. +To weed this wormwood from your fruitful brain, +And therewithal to win me, if you please, +Without the which I am not to be won, +You shall this twelvemonth term from day to day +Visit the speechless sick and still converse +With groaning wretches; and your task shall be, +With all the fierce endeavor of your wit +To enforce the pained impotent to smile. + +BIRON: +To move wild laughter in the throat of death? +It cannot be; it is impossible: +Mirth cannot move a soul in agony. + +ROSALINE: +Why, that's the way to choke a gibing spirit, +Whose influence is begot of that loose grace +Which shallow laughing hearers give to fools: +A jest's prosperity lies in the ear +Of him that hears it, never in the tongue +Of him that makes it: then, if sickly ears, +Deaf'd with the clamours of their own dear groans, +Will hear your idle scorns, continue then, +And I will have you and that fault withal; +But if they will not, throw away that spirit, +And I shall find you empty of that fault, +Right joyful of your reformation. + +BIRON: +A twelvemonth! well; befall what will befall, +I'll jest a twelvemonth in an hospital. + +PRINCESS: + +FERDINAND: +No, madam; we will bring you on your way. + +BIRON: +Our wooing doth not end like an old play; +Jack hath not Jill: these ladies' courtesy +Might well have made our sport a comedy. + +FERDINAND: +Come, sir, it wants a twelvemonth and a day, +And then 'twill end. + +BIRON: +That's too long for a play. + +DON ADRIANO DE ARMADO: +Sweet majesty, vouchsafe me,-- + +PRINCESS: +Was not that Hector? + +DUMAIN: +The worthy knight of Troy. + +DON ADRIANO DE ARMADO: +I will kiss thy royal finger, and take leave. I am +a votary; I have vowed to Jaquenetta to hold the +plough for her sweet love three years. But, most +esteemed greatness, will you hear the dialogue that +the two learned men have compiled in praise of the +owl and the cuckoo? It should have followed in the +end of our show. + +FERDINAND: +Call them forth quickly; we will do so. + +DON ADRIANO DE ARMADO: +Holla! approach. +This side is Hiems, Winter, this Ver, the Spring; +the one maintained by the owl, the other by the +cuckoo. Ver, begin. +When daisies pied and violets blue +And lady-smocks all silver-white +And cuckoo-buds of yellow hue +Do paint the meadows with delight, +The cuckoo then, on every tree, +Mocks married men; for thus sings he, Cuckoo; +Cuckoo, cuckoo: O word of fear, +Unpleasing to a married ear! +When shepherds pipe on oaten straws +And merry larks are ploughmen's clocks, +When turtles tread, and rooks, and daws, +And maidens bleach their summer smocks +The cuckoo then, on every tree, +Mocks married men; for thus sings he, Cuckoo; +Cuckoo, cuckoo: O word of fear, +Unpleasing to a married ear! +When icicles hang by the wall +And Dick the shepherd blows his nail +And Tom bears logs into the hall +And milk comes frozen home in pail, +When blood is nipp'd and ways be foul, +Then nightly sings the staring owl, Tu-whit; +Tu-who, a merry note, +While greasy Joan doth keel the pot. +When all aloud the wind doth blow +And coughing drowns the parson's saw +And birds sit brooding in the snow +And Marian's nose looks red and raw, +When roasted crabs hiss in the bowl, +Then nightly sings the staring owl, Tu-whit; +Tu-who, a merry note, +While greasy Joan doth keel the pot. + +DON ADRIANO DE ARMADO: +The words of Mercury are harsh after the songs of +Apollo. You that way: we this way. + +RODERIGO: +Tush! never tell me; I take it much unkindly +That thou, Iago, who hast had my purse +As if the strings were thine, shouldst know of this. + +IAGO: +'Sblood, but you will not hear me: +If ever I did dream of such a matter, Abhor me. + +RODERIGO: +Thou told'st me thou didst hold him in thy hate. + +IAGO: +Despise me, if I do not. Three great ones of the city, +In personal suit to make me his lieutenant, +Off-capp'd to him: and, by the faith of man, +I know my price, I am worth no worse a place: +But he; as loving his own pride and purposes, +Evades them, with a bombast circumstance +Horribly stuff'd with epithets of war; +And, in conclusion, +Nonsuits my mediators; for, 'Certes,' says he, +'I have already chose my officer.' +And what was he? +Forsooth, a great arithmetician, +One Michael Cassio, a Florentine, +A fellow almost damn'd in a fair wife; +That never set a squadron in the field, +Nor the division of a battle knows +More than a spinster; unless the bookish theoric, +Wherein the toged consuls can propose +As masterly as he: mere prattle, without practise, +Is all his soldiership. But he, sir, had the election: +And I, of whom his eyes had seen the proof +At Rhodes, at Cyprus and on other grounds +Christian and heathen, must be be-lee'd and calm'd +By debitor and creditor: this counter-caster, +He, in good time, must his lieutenant be, +And I--God bless the mark!--his Moorship's ancient. + +RODERIGO: +By heaven, I rather would have been his hangman. + +IAGO: +Why, there's no remedy; 'tis the curse of service, +Preferment goes by letter and affection, +And not by old gradation, where each second +Stood heir to the first. Now, sir, be judge yourself, +Whether I in any just term am affined +To love the Moor. + +RODERIGO: +I would not follow him then. + +IAGO: +O, sir, content you; +I follow him to serve my turn upon him: +We cannot all be masters, nor all masters +Cannot be truly follow'd. You shall mark +Many a duteous and knee-crooking knave, +That, doting on his own obsequious bondage, +Wears out his time, much like his master's ass, +For nought but provender, and when he's old, cashier'd: +Whip me such honest knaves. Others there are +Who, trimm'd in forms and visages of duty, +Keep yet their hearts attending on themselves, +And, throwing but shows of service on their lords, +Do well thrive by them and when they have lined +their coats +Do themselves homage: these fellows have some soul; +And such a one do I profess myself. For, sir, +It is as sure as you are Roderigo, +Were I the Moor, I would not be Iago: +In following him, I follow but myself; +Heaven is my judge, not I for love and duty, +But seeming so, for my peculiar end: +For when my outward action doth demonstrate +The native act and figure of my heart +In compliment extern, 'tis not long after +But I will wear my heart upon my sleeve +For daws to peck at: I am not what I am. + +RODERIGO: +What a full fortune does the thicklips owe +If he can carry't thus! + +IAGO: +Call up her father, +Rouse him: make after him, poison his delight, +Proclaim him in the streets; incense her kinsmen, +And, though he in a fertile climate dwell, +Plague him with flies: though that his joy be joy, +Yet throw such changes of vexation on't, +As it may lose some colour. + +RODERIGO: +Here is her father's house; I'll call aloud. + +IAGO: +Do, with like timorous accent and dire yell +As when, by night and negligence, the fire +Is spied in populous cities. + +RODERIGO: +What, ho, Brabantio! Signior Brabantio, ho! + +IAGO: +Awake! what, ho, Brabantio! thieves! thieves! thieves! +Look to your house, your daughter and your bags! +Thieves! thieves! + +BRABANTIO: +What is the reason of this terrible summons? +What is the matter there? + +RODERIGO: +Signior, is all your family within? + +IAGO: +Are your doors lock'd? + +BRABANTIO: +Why, wherefore ask you this? + +IAGO: +'Zounds, sir, you're robb'd; for shame, put on +your gown; +Your heart is burst, you have lost half your soul; +Even now, now, very now, an old black ram +Is topping your white ewe. Arise, arise; +Awake the snorting citizens with the bell, +Or else the devil will make a grandsire of you: +Arise, I say. + +BRABANTIO: +What, have you lost your wits? + +RODERIGO: +Most reverend signior, do you know my voice? + +BRABANTIO: +Not I what are you? + +RODERIGO: +My name is Roderigo. + +BRABANTIO: +The worser welcome: +I have charged thee not to haunt about my doors: +In honest plainness thou hast heard me say +My daughter is not for thee; and now, in madness, +Being full of supper and distempering draughts, +Upon malicious bravery, dost thou come +To start my quiet. + +RODERIGO: +Sir, sir, sir,-- + +BRABANTIO: +But thou must needs be sure +My spirit and my place have in them power +To make this bitter to thee. + +RODERIGO: +Patience, good sir. + +BRABANTIO: +What tell'st thou me of robbing? this is Venice; +My house is not a grange. + +RODERIGO: +Most grave Brabantio, +In simple and pure soul I come to you. + +IAGO: +'Zounds, sir, you are one of those that will not +serve God, if the devil bid you. Because we come to +do you service and you think we are ruffians, you'll +have your daughter covered with a Barbary horse; +you'll have your nephews neigh to you; you'll have +coursers for cousins and gennets for germans. + +BRABANTIO: +What profane wretch art thou? + +IAGO: +I am one, sir, that comes to tell you your daughter +and the Moor are now making the beast with two backs. + +BRABANTIO: +Thou art a villain. + +IAGO: +You are--a senator. + +BRABANTIO: +This thou shalt answer; I know thee, Roderigo. + +RODERIGO: +Sir, I will answer any thing. But, I beseech you, +If't be your pleasure and most wise consent, +As partly I find it is, that your fair daughter, +At this odd-even and dull watch o' the night, +Transported, with no worse nor better guard +But with a knave of common hire, a gondolier, +To the gross clasps of a lascivious Moor-- +If this be known to you and your allowance, +We then have done you bold and saucy wrongs; +But if you know not this, my manners tell me +We have your wrong rebuke. Do not believe +That, from the sense of all civility, +I thus would play and trifle with your reverence: +Your daughter, if you have not given her leave, +I say again, hath made a gross revolt; +Tying her duty, beauty, wit and fortunes +In an extravagant and wheeling stranger +Of here and every where. Straight satisfy yourself: +If she be in her chamber or your house, +Let loose on me the justice of the state +For thus deluding you. + +BRABANTIO: +Strike on the tinder, ho! +Give me a taper! call up all my people! +This accident is not unlike my dream: +Belief of it oppresses me already. +Light, I say! light! + +IAGO: +Farewell; for I must leave you: +It seems not meet, nor wholesome to my place, +To be produced--as, if I stay, I shall-- +Against the Moor: for, I do know, the state, +However this may gall him with some cheque, +Cannot with safety cast him, for he's embark'd +With such loud reason to the Cyprus wars, +Which even now stand in act, that, for their souls, +Another of his fathom they have none, +To lead their business: in which regard, +Though I do hate him as I do hell-pains. +Yet, for necessity of present life, +I must show out a flag and sign of love, +Which is indeed but sign. That you shall surely find him, +Lead to the Sagittary the raised search; +And there will I be with him. So, farewell. + +BRABANTIO: +It is too true an evil: gone she is; +And what's to come of my despised time +Is nought but bitterness. Now, Roderigo, +Where didst thou see her? O unhappy girl! +With the Moor, say'st thou? Who would be a father! +How didst thou know 'twas she? O she deceives me +Past thought! What said she to you? Get more tapers: +Raise all my kindred. Are they married, think you? + +RODERIGO: +Truly, I think they are. + +BRABANTIO: +O heaven! How got she out? O treason of the blood! +Fathers, from hence trust not your daughters' minds +By what you see them act. Is there not charms +By which the property of youth and maidhood +May be abused? Have you not read, Roderigo, +Of some such thing? + +RODERIGO: +Yes, sir, I have indeed. + +BRABANTIO: +Call up my brother. O, would you had had her! +Some one way, some another. Do you know +Where we may apprehend her and the Moor? + +RODERIGO: +I think I can discover him, if you please, +To get good guard and go along with me. + +BRABANTIO: +Pray you, lead on. At every house I'll call; +I may command at most. Get weapons, ho! +And raise some special officers of night. +On, good Roderigo: I'll deserve your pains. + +IAGO: +Though in the trade of war I have slain men, +Yet do I hold it very stuff o' the conscience +To do no contrived murder: I lack iniquity +Sometimes to do me service: nine or ten times +I had thought to have yerk'd him here under the ribs. + +OTHELLO: +'Tis better as it is. + +IAGO: +Nay, but he prated, +And spoke such scurvy and provoking terms +Against your honour +That, with the little godliness I have, +I did full hard forbear him. But, I pray you, sir, +Are you fast married? Be assured of this, +That the magnifico is much beloved, +And hath in his effect a voice potential +As double as the duke's: he will divorce you; +Or put upon you what restraint and grievance +The law, with all his might to enforce it on, +Will give him cable. + +OTHELLO: +Let him do his spite: +My services which I have done the signiory +Shall out-tongue his complaints. 'Tis yet to know,-- +Which, when I know that boasting is an honour, +I shall promulgate--I fetch my life and being +From men of royal siege, and my demerits +May speak unbonneted to as proud a fortune +As this that I have reach'd: for know, Iago, +But that I love the gentle Desdemona, +I would not my unhoused free condition +Put into circumscription and confine +For the sea's worth. But, look! what lights come yond? + +IAGO: +Those are the raised father and his friends: +You were best go in. + +OTHELLO: +Not I I must be found: +My parts, my title and my perfect soul +Shall manifest me rightly. Is it they? + +IAGO: +By Janus, I think no. + +OTHELLO: +The servants of the duke, and my lieutenant. +The goodness of the night upon you, friends! +What is the news? + +CASSIO: +The duke does greet you, general, +And he requires your haste-post-haste appearance, +Even on the instant. + +OTHELLO: +What is the matter, think you? + +CASSIO: +Something from Cyprus as I may divine: +It is a business of some heat: the galleys +Have sent a dozen sequent messengers +This very night at one another's heels, +And many of the consuls, raised and met, +Are at the duke's already: you have been +hotly call'd for; +When, being not at your lodging to be found, +The senate hath sent about three several guests +To search you out. + +OTHELLO: +'Tis well I am found by you. +I will but spend a word here in the house, +And go with you. + +CASSIO: +Ancient, what makes he here? + +IAGO: +'Faith, he to-night hath boarded a land carack: +If it prove lawful prize, he's made for ever. + +CASSIO: +I do not understand. + +IAGO: +He's married. + +CASSIO: +To who? + +IAGO: +Marry, to--Come, captain, will you go? + +OTHELLO: +Have with you. + +CASSIO: +Here comes another troop to seek for you. + +IAGO: +It is Brabantio. General, be advised; +He comes to bad intent. + +OTHELLO: +Holla! stand there! + +RODERIGO: +Signior, it is the Moor. + +BRABANTIO: +Down with him, thief! + +IAGO: +You, Roderigo! come, sir, I am for you. + +OTHELLO: +Keep up your bright swords, for the dew will rust them. +Good signior, you shall more command with years +Than with your weapons. + +BRABANTIO: +O thou foul thief, where hast thou stow'd my daughter? +Damn'd as thou art, thou hast enchanted her; +For I'll refer me to all things of sense, +If she in chains of magic were not bound, +Whether a maid so tender, fair and happy, +So opposite to marriage that she shunned +The wealthy curled darlings of our nation, +Would ever have, to incur a general mock, +Run from her guardage to the sooty bosom +Of such a thing as thou, to fear, not to delight. +Judge me the world, if 'tis not gross in sense +That thou hast practised on her with foul charms, +Abused her delicate youth with drugs or minerals +That weaken motion: I'll have't disputed on; +'Tis probable and palpable to thinking. +I therefore apprehend and do attach thee +For an abuser of the world, a practiser +Of arts inhibited and out of warrant. +Lay hold upon him: if he do resist, +Subdue him at his peril. + +OTHELLO: +Hold your hands, +Both you of my inclining, and the rest: +Were it my cue to fight, I should have known it +Without a prompter. Where will you that I go +To answer this your charge? + +BRABANTIO: +To prison, till fit time +Of law and course of direct session +Call thee to answer. + +OTHELLO: +What if I do obey? +How may the duke be therewith satisfied, +Whose messengers are here about my side, +Upon some present business of the state +To bring me to him? + +First Officer: +'Tis true, most worthy signior; +The duke's in council and your noble self, +I am sure, is sent for. + +BRABANTIO: +How! the duke in council! +In this time of the night! Bring him away: +Mine's not an idle cause: the duke himself, +Or any of my brothers of the state, +Cannot but feel this wrong as 'twere their own; +For if such actions may have passage free, +Bond-slaves and pagans shall our statesmen be. + +DUKE OF VENICE: +There is no composition in these news +That gives them credit. + +First Senator: +Indeed, they are disproportion'd; +My letters say a hundred and seven galleys. + +DUKE OF VENICE: +And mine, a hundred and forty. + +Second Senator: +And mine, two hundred: +But though they jump not on a just account,-- +As in these cases, where the aim reports, +'Tis oft with difference--yet do they all confirm +A Turkish fleet, and bearing up to Cyprus. + +DUKE OF VENICE: +Nay, it is possible enough to judgment: +I do not so secure me in the error, +But the main article I do approve +In fearful sense. + +Sailor: + +First Officer: +A messenger from the galleys. + +DUKE OF VENICE: +Now, what's the business? + +Sailor: +The Turkish preparation makes for Rhodes; +So was I bid report here to the state +By Signior Angelo. + +DUKE OF VENICE: +How say you by this change? + +First Senator: +This cannot be, +By no assay of reason: 'tis a pageant, +To keep us in false gaze. When we consider +The importancy of Cyprus to the Turk, +And let ourselves again but understand, +That as it more concerns the Turk than Rhodes, +So may he with more facile question bear it, +For that it stands not in such warlike brace, +But altogether lacks the abilities +That Rhodes is dress'd in: if we make thought of this, +We must not think the Turk is so unskilful +To leave that latest which concerns him first, +Neglecting an attempt of ease and gain, +To wake and wage a danger profitless. + +DUKE OF VENICE: +Nay, in all confidence, he's not for Rhodes. + +First Officer: +Here is more news. + +Messenger: +The Ottomites, reverend and gracious, +Steering with due course towards the isle of Rhodes, +Have there injointed them with an after fleet. + +First Senator: +Ay, so I thought. How many, as you guess? + +Messenger: +Of thirty sail: and now they do restem +Their backward course, bearing with frank appearance +Their purposes toward Cyprus. Signior Montano, +Your trusty and most valiant servitor, +With his free duty recommends you thus, +And prays you to believe him. + +DUKE OF VENICE: +'Tis certain, then, for Cyprus. +Marcus Luccicos, is not he in town? + +First Senator: +He's now in Florence. + +DUKE OF VENICE: +Write from us to him; post-post-haste dispatch. + +First Senator: +Here comes Brabantio and the valiant Moor. + +DUKE OF VENICE: +Valiant Othello, we must straight employ you +Against the general enemy Ottoman. +I did not see you; welcome, gentle signior; +We lack'd your counsel and your help tonight. + +BRABANTIO: +So did I yours. Good your grace, pardon me; +Neither my place nor aught I heard of business +Hath raised me from my bed, nor doth the general care +Take hold on me, for my particular grief +Is of so flood-gate and o'erbearing nature +That it engluts and swallows other sorrows +And it is still itself. + +DUKE OF VENICE: +Why, what's the matter? + +BRABANTIO: +My daughter! O, my daughter! + +DUKE OF VENICE: +Dead? + +BRABANTIO: +Ay, to me; +She is abused, stol'n from me, and corrupted +By spells and medicines bought of mountebanks; +For nature so preposterously to err, +Being not deficient, blind, or lame of sense, +Sans witchcraft could not. + +DUKE OF VENICE: +Whoe'er he be that in this foul proceeding +Hath thus beguiled your daughter of herself +And you of her, the bloody book of law +You shall yourself read in the bitter letter +After your own sense, yea, though our proper son +Stood in your action. + +BRABANTIO: +Humbly I thank your grace. +Here is the man, this Moor, whom now, it seems, +Your special mandate for the state-affairs +Hath hither brought. + +DUKE OF VENICE: +We are very sorry for't. + +DUKE OF VENICE: + +BRABANTIO: +Nothing, but this is so. + +OTHELLO: +Most potent, grave, and reverend signiors, +My very noble and approved good masters, +That I have ta'en away this old man's daughter, +It is most true; true, I have married her: +The very head and front of my offending +Hath this extent, no more. Rude am I in my speech, +And little bless'd with the soft phrase of peace: +For since these arms of mine had seven years' pith, +Till now some nine moons wasted, they have used +Their dearest action in the tented field, +And little of this great world can I speak, +More than pertains to feats of broil and battle, +And therefore little shall I grace my cause +In speaking for myself. Yet, by your gracious patience, +I will a round unvarnish'd tale deliver +Of my whole course of love; what drugs, what charms, +What conjuration and what mighty magic, +For such proceeding I am charged withal, +I won his daughter. + +BRABANTIO: +A maiden never bold; +Of spirit so still and quiet, that her motion +Blush'd at herself; and she, in spite of nature, +Of years, of country, credit, every thing, +To fall in love with what she fear'd to look on! +It is a judgment maim'd and most imperfect +That will confess perfection so could err +Against all rules of nature, and must be driven +To find out practises of cunning hell, +Why this should be. I therefore vouch again +That with some mixtures powerful o'er the blood, +Or with some dram conjured to this effect, +He wrought upon her. + +DUKE OF VENICE: +To vouch this, is no proof, +Without more wider and more overt test +Than these thin habits and poor likelihoods +Of modern seeming do prefer against him. + +First Senator: +But, Othello, speak: +Did you by indirect and forced courses +Subdue and poison this young maid's affections? +Or came it by request and such fair question +As soul to soul affordeth? + +OTHELLO: +I do beseech you, +Send for the lady to the Sagittary, +And let her speak of me before her father: +If you do find me foul in her report, +The trust, the office I do hold of you, +Not only take away, but let your sentence +Even fall upon my life. + +DUKE OF VENICE: +Fetch Desdemona hither. + +OTHELLO: +Ancient, conduct them: you best know the place. +And, till she come, as truly as to heaven +I do confess the vices of my blood, +So justly to your grave ears I'll present +How I did thrive in this fair lady's love, +And she in mine. + +DUKE OF VENICE: +Say it, Othello. + +OTHELLO: +Her father loved me; oft invited me; +Still question'd me the story of my life, +From year to year, the battles, sieges, fortunes, +That I have passed. +I ran it through, even from my boyish days, +To the very moment that he bade me tell it; +Wherein I spake of most disastrous chances, +Of moving accidents by flood and field +Of hair-breadth scapes i' the imminent deadly breach, +Of being taken by the insolent foe +And sold to slavery, of my redemption thence +And portance in my travels' history: +Wherein of antres vast and deserts idle, +Rough quarries, rocks and hills whose heads touch heaven +It was my hint to speak,--such was the process; +And of the Cannibals that each other eat, +The Anthropophagi and men whose heads +Do grow beneath their shoulders. This to hear +Would Desdemona seriously incline: +But still the house-affairs would draw her thence: +Which ever as she could with haste dispatch, +She'ld come again, and with a greedy ear +Devour up my discourse: which I observing, +Took once a pliant hour, and found good means +To draw from her a prayer of earnest heart +That I would all my pilgrimage dilate, +Whereof by parcels she had something heard, +But not intentively: I did consent, +And often did beguile her of her tears, +When I did speak of some distressful stroke +That my youth suffer'd. My story being done, +She gave me for my pains a world of sighs: +She swore, in faith, twas strange, 'twas passing strange, +'Twas pitiful, 'twas wondrous pitiful: +She wish'd she had not heard it, yet she wish'd +That heaven had made her such a man: she thank'd me, +And bade me, if I had a friend that loved her, +I should but teach him how to tell my story. +And that would woo her. Upon this hint I spake: +She loved me for the dangers I had pass'd, +And I loved her that she did pity them. +This only is the witchcraft I have used: +Here comes the lady; let her witness it. + +DUKE OF VENICE: +I think this tale would win my daughter too. +Good Brabantio, +Take up this mangled matter at the best: +Men do their broken weapons rather use +Than their bare hands. + +BRABANTIO: +I pray you, hear her speak: +If she confess that she was half the wooer, +Destruction on my head, if my bad blame +Light on the man! Come hither, gentle mistress: +Do you perceive in all this noble company +Where most you owe obedience? + +DESDEMONA: +My noble father, +I do perceive here a divided duty: +To you I am bound for life and education; +My life and education both do learn me +How to respect you; you are the lord of duty; +I am hitherto your daughter: but here's my husband, +And so much duty as my mother show'd +To you, preferring you before her father, +So much I challenge that I may profess +Due to the Moor my lord. + +BRABANTIO: +God be wi' you! I have done. +Please it your grace, on to the state-affairs: +I had rather to adopt a child than get it. +Come hither, Moor: +I here do give thee that with all my heart +Which, but thou hast already, with all my heart +I would keep from thee. For your sake, jewel, +I am glad at soul I have no other child: +For thy escape would teach me tyranny, +To hang clogs on them. I have done, my lord. + +DUKE OF VENICE: +Let me speak like yourself, and lay a sentence, +Which, as a grise or step, may help these lovers +Into your favour. +When remedies are past, the griefs are ended +By seeing the worst, which late on hopes depended. +To mourn a mischief that is past and gone +Is the next way to draw new mischief on. +What cannot be preserved when fortune takes +Patience her injury a mockery makes. +The robb'd that smiles steals something from the thief; +He robs himself that spends a bootless grief. + +BRABANTIO: +So let the Turk of Cyprus us beguile; +We lose it not, so long as we can smile. +He bears the sentence well that nothing bears +But the free comfort which from thence he hears, +But he bears both the sentence and the sorrow +That, to pay grief, must of poor patience borrow. +These sentences, to sugar, or to gall, +Being strong on both sides, are equivocal: +But words are words; I never yet did hear +That the bruised heart was pierced through the ear. +I humbly beseech you, proceed to the affairs of state. + +DUKE OF VENICE: +The Turk with a most mighty preparation makes for +Cyprus. Othello, the fortitude of the place is best +known to you; and though we have there a substitute +of most allowed sufficiency, yet opinion, a +sovereign mistress of effects, throws a more safer +voice on you: you must therefore be content to +slubber the gloss of your new fortunes with this +more stubborn and boisterous expedition. + +OTHELLO: +The tyrant custom, most grave senators, +Hath made the flinty and steel couch of war +My thrice-driven bed of down: I do agnise +A natural and prompt alacrity +I find in hardness, and do undertake +These present wars against the Ottomites. +Most humbly therefore bending to your state, +I crave fit disposition for my wife. +Due reference of place and exhibition, +With such accommodation and besort +As levels with her breeding. + +DUKE OF VENICE: +If you please, +Be't at her father's. + +BRABANTIO: +I'll not have it so. + +OTHELLO: +Nor I. + +DESDEMONA: +Nor I; I would not there reside, +To put my father in impatient thoughts +By being in his eye. Most gracious duke, +To my unfolding lend your prosperous ear; +And let me find a charter in your voice, +To assist my simpleness. + +DUKE OF VENICE: +What would You, Desdemona? + +DESDEMONA: +That I did love the Moor to live with him, +My downright violence and storm of fortunes +May trumpet to the world: my heart's subdued +Even to the very quality of my lord: +I saw Othello's visage in his mind, +And to his honour and his valiant parts +Did I my soul and fortunes consecrate. +So that, dear lords, if I be left behind, +A moth of peace, and he go to the war, +The rites for which I love him are bereft me, +And I a heavy interim shall support +By his dear absence. Let me go with him. + +OTHELLO: +Let her have your voices. +Vouch with me, heaven, I therefore beg it not, +To please the palate of my appetite, +Nor to comply with heat--the young affects +In me defunct--and proper satisfaction. +But to be free and bounteous to her mind: +And heaven defend your good souls, that you think +I will your serious and great business scant +For she is with me: no, when light-wing'd toys +Of feather'd Cupid seal with wanton dullness +My speculative and officed instruments, +That my disports corrupt and taint my business, +Let housewives make a skillet of my helm, +And all indign and base adversities +Make head against my estimation! + +DUKE OF VENICE: +Be it as you shall privately determine, +Either for her stay or going: the affair cries haste, +And speed must answer it. + +First Senator: +You must away to-night. + +OTHELLO: +With all my heart. + +DUKE OF VENICE: +At nine i' the morning here we'll meet again. +Othello, leave some officer behind, +And he shall our commission bring to you; +With such things else of quality and respect +As doth import you. + +OTHELLO: +So please your grace, my ancient; +A man he is of honest and trust: +To his conveyance I assign my wife, +With what else needful your good grace shall think +To be sent after me. + +DUKE OF VENICE: +Let it be so. +Good night to every one. +And, noble signior, +If virtue no delighted beauty lack, +Your son-in-law is far more fair than black. + +First Senator: +Adieu, brave Moor, use Desdemona well. + +BRABANTIO: +Look to her, Moor, if thou hast eyes to see: +She has deceived her father, and may thee. + +OTHELLO: +My life upon her faith! Honest Iago, +My Desdemona must I leave to thee: +I prithee, let thy wife attend on her: +And bring them after in the best advantage. +Come, Desdemona: I have but an hour +Of love, of worldly matters and direction, +To spend with thee: we must obey the time. + +RODERIGO: +Iago,-- + +IAGO: +What say'st thou, noble heart? + +RODERIGO: +What will I do, thinkest thou? + +IAGO: +Why, go to bed, and sleep. + +RODERIGO: +I will incontinently drown myself. + +IAGO: +If thou dost, I shall never love thee after. Why, +thou silly gentleman! + +RODERIGO: +It is silliness to live when to live is torment; and +then have we a prescription to die when death is our physician. + +IAGO: +O villainous! I have looked upon the world for four +times seven years; and since I could distinguish +betwixt a benefit and an injury, I never found man +that knew how to love himself. Ere I would say, I +would drown myself for the love of a guinea-hen, I +would change my humanity with a baboon. + +RODERIGO: +What should I do? I confess it is my shame to be so +fond; but it is not in my virtue to amend it. + +IAGO: +Virtue! a fig! 'tis in ourselves that we are thus +or thus. Our bodies are our gardens, to the which +our wills are gardeners: so that if we will plant +nettles, or sow lettuce, set hyssop and weed up +thyme, supply it with one gender of herbs, or +distract it with many, either to have it sterile +with idleness, or manured with industry, why, the +power and corrigible authority of this lies in our +wills. If the balance of our lives had not one +scale of reason to poise another of sensuality, the +blood and baseness of our natures would conduct us +to most preposterous conclusions: but we have +reason to cool our raging motions, our carnal +stings, our unbitted lusts, whereof I take this that +you call love to be a sect or scion. + +RODERIGO: +It cannot be. + +IAGO: +It is merely a lust of the blood and a permission of +the will. Come, be a man. Drown thyself! drown +cats and blind puppies. I have professed me thy +friend and I confess me knit to thy deserving with +cables of perdurable toughness; I could never +better stead thee than now. Put money in thy +purse; follow thou the wars; defeat thy favour with +an usurped beard; I say, put money in thy purse. It +cannot be that Desdemona should long continue her +love to the Moor,-- put money in thy purse,--nor he +his to her: it was a violent commencement, and thou +shalt see an answerable sequestration:--put but +money in thy purse. These Moors are changeable in +their wills: fill thy purse with money:--the food +that to him now is as luscious as locusts, shall be +to him shortly as bitter as coloquintida. She must +change for youth: when she is sated with his body, +she will find the error of her choice: she must +have change, she must: therefore put money in thy +purse. If thou wilt needs damn thyself, do it a +more delicate way than drowning. Make all the money +thou canst: if sanctimony and a frail vow betwixt +an erring barbarian and a supersubtle Venetian not +too hard for my wits and all the tribe of hell, thou +shalt enjoy her; therefore make money. A pox of +drowning thyself! it is clean out of the way: seek +thou rather to be hanged in compassing thy joy than +to be drowned and go without her. + +RODERIGO: +Wilt thou be fast to my hopes, if I depend on +the issue? + +IAGO: +Thou art sure of me:--go, make money:--I have told +thee often, and I re-tell thee again and again, I +hate the Moor: my cause is hearted; thine hath no +less reason. Let us be conjunctive in our revenge +against him: if thou canst cuckold him, thou dost +thyself a pleasure, me a sport. There are many +events in the womb of time which will be delivered. +Traverse! go, provide thy money. We will have more +of this to-morrow. Adieu. + +RODERIGO: +Where shall we meet i' the morning? + +IAGO: +At my lodging. + +RODERIGO: +I'll be with thee betimes. + +IAGO: +Go to; farewell. Do you hear, Roderigo? + +RODERIGO: +What say you? + +IAGO: +No more of drowning, do you hear? + +RODERIGO: +I am changed: I'll go sell all my land. + +IAGO: +Thus do I ever make my fool my purse: +For I mine own gain'd knowledge should profane, +If I would time expend with such a snipe. +But for my sport and profit. I hate the Moor: +And it is thought abroad, that 'twixt my sheets +He has done my office: I know not if't be true; +But I, for mere suspicion in that kind, +Will do as if for surety. He holds me well; +The better shall my purpose work on him. +Cassio's a proper man: let me see now: +To get his place and to plume up my will +In double knavery--How, how? Let's see:-- +After some time, to abuse Othello's ear +That he is too familiar with his wife. +He hath a person and a smooth dispose +To be suspected, framed to make women false. +The Moor is of a free and open nature, +That thinks men honest that but seem to be so, +And will as tenderly be led by the nose +As asses are. +I have't. It is engender'd. Hell and night +Must bring this monstrous birth to the world's light. + +MONTANO: +What from the cape can you discern at sea? + +First Gentleman: +Nothing at all: it is a highwrought flood; +I cannot, 'twixt the heaven and the main, +Descry a sail. + +MONTANO: +Methinks the wind hath spoke aloud at land; +A fuller blast ne'er shook our battlements: +If it hath ruffian'd so upon the sea, +What ribs of oak, when mountains melt on them, +Can hold the mortise? What shall we hear of this? + +Second Gentleman: +A segregation of the Turkish fleet: +For do but stand upon the foaming shore, +The chidden billow seems to pelt the clouds; +The wind-shaked surge, with high and monstrous mane, +seems to cast water on the burning bear, +And quench the guards of the ever-fixed pole: +I never did like molestation view +On the enchafed flood. + +MONTANO: +If that the Turkish fleet +Be not enshelter'd and embay'd, they are drown'd: +It is impossible they bear it out. + +Third Gentleman: +News, lads! our wars are done. +The desperate tempest hath so bang'd the Turks, +That their designment halts: a noble ship of Venice +Hath seen a grievous wreck and sufferance +On most part of their fleet. + +MONTANO: +How! is this true? + +Third Gentleman: +The ship is here put in, +A Veronesa; Michael Cassio, +Lieutenant to the warlike Moor Othello, +Is come on shore: the Moor himself at sea, +And is in full commission here for Cyprus. + +MONTANO: +I am glad on't; 'tis a worthy governor. + +Third Gentleman: +But this same Cassio, though he speak of comfort +Touching the Turkish loss, yet he looks sadly, +And prays the Moor be safe; for they were parted +With foul and violent tempest. + +MONTANO: +Pray heavens he be; +For I have served him, and the man commands +Like a full soldier. Let's to the seaside, ho! +As well to see the vessel that's come in +As to throw out our eyes for brave Othello, +Even till we make the main and the aerial blue +An indistinct regard. + +Third Gentleman: +Come, let's do so: +For every minute is expectancy +Of more arrivance. + +CASSIO: +Thanks, you the valiant of this warlike isle, +That so approve the Moor! O, let the heavens +Give him defence against the elements, +For I have lost us him on a dangerous sea. + +MONTANO: +Is he well shipp'd? + +CASSIO: +His bark is stoutly timber'd, his pilot +Of very expert and approved allowance; +Therefore my hopes, not surfeited to death, +Stand in bold cure. + +CASSIO: +What noise? + +Fourth Gentleman: +The town is empty; on the brow o' the sea +Stand ranks of people, and they cry 'A sail!' + +CASSIO: +My hopes do shape him for the governor. + +Second Gentlemen: +They do discharge their shot of courtesy: +Our friends at least. + +CASSIO: +I pray you, sir, go forth, +And give us truth who 'tis that is arrived. + +Second Gentleman: +I shall. + +MONTANO: +But, good lieutenant, is your general wived? + +CASSIO: +Most fortunately: he hath achieved a maid +That paragons description and wild fame; +One that excels the quirks of blazoning pens, +And in the essential vesture of creation +Does tire the ingener. +How now! who has put in? + +Second Gentleman: +'Tis one Iago, ancient to the general. + +CASSIO: +Has had most favourable and happy speed: +Tempests themselves, high seas, and howling winds, +The gutter'd rocks and congregated sands-- +Traitors ensteep'd to clog the guiltless keel,-- +As having sense of beauty, do omit +Their mortal natures, letting go safely by +The divine Desdemona. + +MONTANO: +What is she? + +CASSIO: +She that I spake of, our great captain's captain, +Left in the conduct of the bold Iago, +Whose footing here anticipates our thoughts +A se'nnight's speed. Great Jove, Othello guard, +And swell his sail with thine own powerful breath, +That he may bless this bay with his tall ship, +Make love's quick pants in Desdemona's arms, +Give renew'd fire to our extincted spirits +And bring all Cyprus comfort! +O, behold, +The riches of the ship is come on shore! +Ye men of Cyprus, let her have your knees. +Hail to thee, lady! and the grace of heaven, +Before, behind thee, and on every hand, +Enwheel thee round! + +DESDEMONA: +I thank you, valiant Cassio. +What tidings can you tell me of my lord? + +CASSIO: +He is not yet arrived: nor know I aught +But that he's well and will be shortly here. + +DESDEMONA: +O, but I fear--How lost you company? + +CASSIO: +The great contention of the sea and skies +Parted our fellowship--But, hark! a sail. + +Second Gentleman: +They give their greeting to the citadel; +This likewise is a friend. + +CASSIO: +See for the news. +Good ancient, you are welcome. +Welcome, mistress. +Let it not gall your patience, good Iago, +That I extend my manners; 'tis my breeding +That gives me this bold show of courtesy. + +IAGO: +Sir, would she give you so much of her lips +As of her tongue she oft bestows on me, +You'll have enough. + +DESDEMONA: +Alas, she has no speech. + +IAGO: +In faith, too much; +I find it still, when I have list to sleep: +Marry, before your ladyship, I grant, +She puts her tongue a little in her heart, +And chides with thinking. + +EMILIA: +You have little cause to say so. + +IAGO: +Come on, come on; you are pictures out of doors, +Bells in your parlors, wild-cats in your kitchens, +Saints m your injuries, devils being offended, +Players in your housewifery, and housewives' in your beds. + +DESDEMONA: +O, fie upon thee, slanderer! + +IAGO: +Nay, it is true, or else I am a Turk: +You rise to play and go to bed to work. + +EMILIA: +You shall not write my praise. + +IAGO: +No, let me not. + +DESDEMONA: +What wouldst thou write of me, if thou shouldst +praise me? + +IAGO: +O gentle lady, do not put me to't; +For I am nothing, if not critical. + +DESDEMONA: +Come on assay. There's one gone to the harbour? + +IAGO: +Ay, madam. + +DESDEMONA: +I am not merry; but I do beguile +The thing I am, by seeming otherwise. +Come, how wouldst thou praise me? + +IAGO: +I am about it; but indeed my invention +Comes from my pate as birdlime does from frize; +It plucks out brains and all: but my Muse labours, +And thus she is deliver'd. +If she be fair and wise, fairness and wit, +The one's for use, the other useth it. + +DESDEMONA: +Well praised! How if she be black and witty? + +IAGO: +If she be black, and thereto have a wit, +She'll find a white that shall her blackness fit. + +DESDEMONA: +Worse and worse. + +EMILIA: +How if fair and foolish? + +IAGO: +She never yet was foolish that was fair; +For even her folly help'd her to an heir. + +DESDEMONA: +These are old fond paradoxes to make fools laugh i' +the alehouse. What miserable praise hast thou for +her that's foul and foolish? + +IAGO: +There's none so foul and foolish thereunto, +But does foul pranks which fair and wise ones do. + +DESDEMONA: +O heavy ignorance! thou praisest the worst best. +But what praise couldst thou bestow on a deserving +woman indeed, one that, in the authority of her +merit, did justly put on the vouch of very malice itself? + +IAGO: +She that was ever fair and never proud, +Had tongue at will and yet was never loud, +Never lack'd gold and yet went never gay, +Fled from her wish and yet said 'Now I may,' +She that being anger'd, her revenge being nigh, +Bade her wrong stay and her displeasure fly, +She that in wisdom never was so frail +To change the cod's head for the salmon's tail; +She that could think and ne'er disclose her mind, +See suitors following and not look behind, +She was a wight, if ever such wight were,-- + +DESDEMONA: +To do what? + +IAGO: +To suckle fools and chronicle small beer. + +DESDEMONA: +O most lame and impotent conclusion! Do not learn +of him, Emilia, though he be thy husband. How say +you, Cassio? is he not a most profane and liberal +counsellor? + +CASSIO: +He speaks home, madam: You may relish him more in +the soldier than in the scholar. + +IAGO: + +CASSIO: +'Tis truly so. + +DESDEMONA: +Let's meet him and receive him. + +CASSIO: +Lo, where he comes! + +OTHELLO: +O my fair warrior! + +DESDEMONA: +My dear Othello! + +OTHELLO: +It gives me wonder great as my content +To see you here before me. O my soul's joy! +If after every tempest come such calms, +May the winds blow till they have waken'd death! +And let the labouring bark climb hills of seas +Olympus-high and duck again as low +As hell's from heaven! If it were now to die, +'Twere now to be most happy; for, I fear, +My soul hath her content so absolute +That not another comfort like to this +Succeeds in unknown fate. + +DESDEMONA: +The heavens forbid +But that our loves and comforts should increase, +Even as our days do grow! + +OTHELLO: +Amen to that, sweet powers! +I cannot speak enough of this content; +It stops me here; it is too much of joy: +And this, and this, the greatest discords be +That e'er our hearts shall make! + +IAGO: + +OTHELLO: +Come, let us to the castle. +News, friends; our wars are done, the Turks +are drown'd. +How does my old acquaintance of this isle? +Honey, you shall be well desired in Cyprus; +I have found great love amongst them. O my sweet, +I prattle out of fashion, and I dote +In mine own comforts. I prithee, good Iago, +Go to the bay and disembark my coffers: +Bring thou the master to the citadel; +He is a good one, and his worthiness +Does challenge much respect. Come, Desdemona, +Once more, well met at Cyprus. + +IAGO: +Do thou meet me presently at the harbour. Come +hither. If thou be'st valiant,-- as, they say, base +men being in love have then a nobility in their +natures more than is native to them--list me. The +lieutenant tonight watches on the court of +guard:--first, I must tell thee this--Desdemona is +directly in love with him. + +RODERIGO: +With him! why, 'tis not possible. + +IAGO: +Lay thy finger thus, and let thy soul be instructed. +Mark me with what violence she first loved the Moor, +but for bragging and telling her fantastical lies: +and will she love him still for prating? let not +thy discreet heart think it. Her eye must be fed; +and what delight shall she have to look on the +devil? When the blood is made dull with the act of +sport, there should be, again to inflame it and to +give satiety a fresh appetite, loveliness in favour, +sympathy in years, manners and beauties; all which +the Moor is defective in: now, for want of these +required conveniences, her delicate tenderness will +find itself abused, begin to heave the gorge, +disrelish and abhor the Moor; very nature will +instruct her in it and compel her to some second +choice. Now, sir, this granted,--as it is a most +pregnant and unforced position--who stands so +eminent in the degree of this fortune as Cassio +does? a knave very voluble; no further +conscionable than in putting on the mere form of +civil and humane seeming, for the better compassing +of his salt and most hidden loose affection? why, +none; why, none: a slipper and subtle knave, a +finder of occasions, that has an eye can stamp and +counterfeit advantages, though true advantage never +present itself; a devilish knave. Besides, the +knave is handsome, young, and hath all those +requisites in him that folly and green minds look +after: a pestilent complete knave; and the woman +hath found him already. + +RODERIGO: +I cannot believe that in her; she's full of +most blessed condition. + +IAGO: +Blessed fig's-end! the wine she drinks is made of +grapes: if she had been blessed, she would never +have loved the Moor. Blessed pudding! Didst thou +not see her paddle with the palm of his hand? didst +not mark that? + +RODERIGO: +Yes, that I did; but that was but courtesy. + +IAGO: +Lechery, by this hand; an index and obscure prologue +to the history of lust and foul thoughts. They met +so near with their lips that their breaths embraced +together. Villanous thoughts, Roderigo! when these +mutualities so marshal the way, hard at hand comes +the master and main exercise, the incorporate +conclusion, Pish! But, sir, be you ruled by me: I +have brought you from Venice. Watch you to-night; +for the command, I'll lay't upon you. Cassio knows +you not. I'll not be far from you: do you find +some occasion to anger Cassio, either by speaking +too loud, or tainting his discipline; or from what +other course you please, which the time shall more +favourably minister. + +RODERIGO: +Well. + +IAGO: +Sir, he is rash and very sudden in choler, and haply +may strike at you: provoke him, that he may; for +even out of that will I cause these of Cyprus to +mutiny; whose qualification shall come into no true +taste again but by the displanting of Cassio. So +shall you have a shorter journey to your desires by +the means I shall then have to prefer them; and the +impediment most profitably removed, without the +which there were no expectation of our prosperity. + +RODERIGO: +I will do this, if I can bring it to any +opportunity. + +IAGO: +I warrant thee. Meet me by and by at the citadel: +I must fetch his necessaries ashore. Farewell. + +RODERIGO: +Adieu. + +IAGO: +That Cassio loves her, I do well believe it; +That she loves him, 'tis apt and of great credit: +The Moor, howbeit that I endure him not, +Is of a constant, loving, noble nature, +And I dare think he'll prove to Desdemona +A most dear husband. Now, I do love her too; +Not out of absolute lust, though peradventure +I stand accountant for as great a sin, +But partly led to diet my revenge, +For that I do suspect the lusty Moor +Hath leap'd into my seat; the thought whereof +Doth, like a poisonous mineral, gnaw my inwards; +And nothing can or shall content my soul +Till I am even'd with him, wife for wife, +Or failing so, yet that I put the Moor +At least into a jealousy so strong +That judgment cannot cure. Which thing to do, +If this poor trash of Venice, whom I trash +For his quick hunting, stand the putting on, +I'll have our Michael Cassio on the hip, +Abuse him to the Moor in the rank garb-- +For I fear Cassio with my night-cap too-- +Make the Moor thank me, love me and reward me. +For making him egregiously an ass +And practising upon his peace and quiet +Even to madness. 'Tis here, but yet confused: +Knavery's plain face is never seen tin used. + +Herald: +It is Othello's pleasure, our noble and valiant +general, that, upon certain tidings now arrived, +importing the mere perdition of the Turkish fleet, +every man put himself into triumph; some to dance, +some to make bonfires, each man to what sport and +revels his addiction leads him: for, besides these +beneficial news, it is the celebration of his +nuptial. So much was his pleasure should be +proclaimed. All offices are open, and there is full +liberty of feasting from this present hour of five +till the bell have told eleven. Heaven bless the +isle of Cyprus and our noble general Othello! + +OTHELLO: +Good Michael, look you to the guard to-night: +Let's teach ourselves that honourable stop, +Not to outsport discretion. + +CASSIO: +Iago hath direction what to do; +But, notwithstanding, with my personal eye +Will I look to't. + +OTHELLO: +Iago is most honest. +Michael, good night: to-morrow with your earliest +Let me have speech with you. +Come, my dear love, +The purchase made, the fruits are to ensue; +That profit's yet to come 'tween me and you. +Good night. + +CASSIO: +Welcome, Iago; we must to the watch. + +IAGO: +Not this hour, lieutenant; 'tis not yet ten o' the +clock. Our general cast us thus early for the love +of his Desdemona; who let us not therefore blame: +he hath not yet made wanton the night with her; and +she is sport for Jove. + +CASSIO: +She's a most exquisite lady. + +IAGO: +And, I'll warrant her, fun of game. + +CASSIO: +Indeed, she's a most fresh and delicate creature. + +IAGO: +What an eye she has! methinks it sounds a parley of +provocation. + +CASSIO: +An inviting eye; and yet methinks right modest. + +IAGO: +And when she speaks, is it not an alarum to love? + +CASSIO: +She is indeed perfection. + +IAGO: +Well, happiness to their sheets! Come, lieutenant, I +have a stoup of wine; and here without are a brace +of Cyprus gallants that would fain have a measure to +the health of black Othello. + +CASSIO: +Not to-night, good Iago: I have very poor and +unhappy brains for drinking: I could well wish +courtesy would invent some other custom of +entertainment. + +IAGO: +O, they are our friends; but one cup: I'll drink for +you. + +CASSIO: +I have drunk but one cup to-night, and that was +craftily qualified too, and, behold, what innovation +it makes here: I am unfortunate in the infirmity, +and dare not task my weakness with any more. + +IAGO: +What, man! 'tis a night of revels: the gallants +desire it. + +CASSIO: +Where are they? + +IAGO: +Here at the door; I pray you, call them in. + +CASSIO: +I'll do't; but it dislikes me. + +IAGO: +If I can fasten but one cup upon him, +With that which he hath drunk to-night already, +He'll be as full of quarrel and offence +As my young mistress' dog. Now, my sick fool Roderigo, +Whom love hath turn'd almost the wrong side out, +To Desdemona hath to-night caroused +Potations pottle-deep; and he's to watch: +Three lads of Cyprus, noble swelling spirits, +That hold their honours in a wary distance, +The very elements of this warlike isle, +Have I to-night fluster'd with flowing cups, +And they watch too. Now, 'mongst this flock of drunkards, +Am I to put our Cassio in some action +That may offend the isle.--But here they come: +If consequence do but approve my dream, +My boat sails freely, both with wind and stream. + +CASSIO: +'Fore God, they have given me a rouse already. + +MONTANO: +Good faith, a little one; not past a pint, as I am +a soldier. + +IAGO: +Some wine, ho! +And let me the canakin clink, clink; +And let me the canakin clink +A soldier's a man; +A life's but a span; +Why, then, let a soldier drink. +Some wine, boys! + +CASSIO: +'Fore God, an excellent song. + +IAGO: +I learned it in England, where, indeed, they are +most potent in potting: your Dane, your German, and +your swag-bellied Hollander--Drink, ho!--are nothing +to your English. + +CASSIO: +Is your Englishman so expert in his drinking? + +IAGO: +Why, he drinks you, with facility, your Dane dead +drunk; he sweats not to overthrow your Almain; he +gives your Hollander a vomit, ere the next pottle +can be filled. + +CASSIO: +To the health of our general! + +MONTANO: +I am for it, lieutenant; and I'll do you justice. + +IAGO: +O sweet England! +King Stephen was a worthy peer, +His breeches cost him but a crown; +He held them sixpence all too dear, +With that he call'd the tailor lown. +He was a wight of high renown, +And thou art but of low degree: +'Tis pride that pulls the country down; +Then take thine auld cloak about thee. +Some wine, ho! + +CASSIO: +Why, this is a more exquisite song than the other. + +IAGO: +Will you hear't again? + +CASSIO: +No; for I hold him to be unworthy of his place that +does those things. Well, God's above all; and there +be souls must be saved, and there be souls must not be saved. + +IAGO: +It's true, good lieutenant. + +CASSIO: +For mine own part,--no offence to the general, nor +any man of quality,--I hope to be saved. + +IAGO: +And so do I too, lieutenant. + +CASSIO: +Ay, but, by your leave, not before me; the +lieutenant is to be saved before the ancient. Let's +have no more of this; let's to our affairs.--Forgive +us our sins!--Gentlemen, let's look to our business. +Do not think, gentlemen. I am drunk: this is my +ancient; this is my right hand, and this is my left: +I am not drunk now; I can stand well enough, and +speak well enough. + +All: +Excellent well. + +CASSIO: +Why, very well then; you must not think then that I am drunk. + +MONTANO: +To the platform, masters; come, let's set the watch. + +IAGO: +You see this fellow that is gone before; +He is a soldier fit to stand by Caesar +And give direction: and do but see his vice; +'Tis to his virtue a just equinox, +The one as long as the other: 'tis pity of him. +I fear the trust Othello puts him in. +On some odd time of his infirmity, +Will shake this island. + +MONTANO: +But is he often thus? + +IAGO: +'Tis evermore the prologue to his sleep: +He'll watch the horologe a double set, +If drink rock not his cradle. + +MONTANO: +It were well +The general were put in mind of it. +Perhaps he sees it not; or his good nature +Prizes the virtue that appears in Cassio, +And looks not on his evils: is not this true? + +IAGO: + +MONTANO: +And 'tis great pity that the noble Moor +Should hazard such a place as his own second +With one of an ingraft infirmity: +It were an honest action to say +So to the Moor. + +IAGO: +Not I, for this fair island: +I do love Cassio well; and would do much +To cure him of this evil--But, hark! what noise? + +CASSIO: +You rogue! you rascal! + +MONTANO: +What's the matter, lieutenant? + +CASSIO: +A knave teach me my duty! +I'll beat the knave into a twiggen bottle. + +RODERIGO: +Beat me! + +CASSIO: +Dost thou prate, rogue? + +MONTANO: +Nay, good lieutenant; +I pray you, sir, hold your hand. + +CASSIO: +Let me go, sir, +Or I'll knock you o'er the mazzard. + +MONTANO: +Come, come, +you're drunk. + +CASSIO: +Drunk! + +IAGO: + +OTHELLO: +What is the matter here? + +MONTANO: +'Zounds, I bleed still; I am hurt to the death. + +OTHELLO: +Hold, for your lives! + +IAGO: +Hold, ho! Lieutenant,--sir--Montano,--gentlemen,-- +Have you forgot all sense of place and duty? +Hold! the general speaks to you; hold, hold, for shame! + +OTHELLO: +Why, how now, ho! from whence ariseth this? +Are we turn'd Turks, and to ourselves do that +Which heaven hath forbid the Ottomites? +For Christian shame, put by this barbarous brawl: +He that stirs next to carve for his own rage +Holds his soul light; he dies upon his motion. +Silence that dreadful bell: it frights the isle +From her propriety. What is the matter, masters? +Honest Iago, that look'st dead with grieving, +Speak, who began this? on thy love, I charge thee. + +IAGO: +I do not know: friends all but now, even now, +In quarter, and in terms like bride and groom +Devesting them for bed; and then, but now-- +As if some planet had unwitted men-- +Swords out, and tilting one at other's breast, +In opposition bloody. I cannot speak +Any beginning to this peevish odds; +And would in action glorious I had lost +Those legs that brought me to a part of it! + +OTHELLO: +How comes it, Michael, you are thus forgot? + +CASSIO: +I pray you, pardon me; I cannot speak. + +OTHELLO: +Worthy Montano, you were wont be civil; +The gravity and stillness of your youth +The world hath noted, and your name is great +In mouths of wisest censure: what's the matter, +That you unlace your reputation thus +And spend your rich opinion for the name +Of a night-brawler? give me answer to it. + +MONTANO: +Worthy Othello, I am hurt to danger: +Your officer, Iago, can inform you,-- +While I spare speech, which something now +offends me,-- +Of all that I do know: nor know I aught +By me that's said or done amiss this night; +Unless self-charity be sometimes a vice, +And to defend ourselves it be a sin +When violence assails us. + +OTHELLO: +Now, by heaven, +My blood begins my safer guides to rule; +And passion, having my best judgment collied, +Assays to lead the way: if I once stir, +Or do but lift this arm, the best of you +Shall sink in my rebuke. Give me to know +How this foul rout began, who set it on; +And he that is approved in this offence, +Though he had twinn'd with me, both at a birth, +Shall lose me. What! in a town of war, +Yet wild, the people's hearts brimful of fear, +To manage private and domestic quarrel, +In night, and on the court and guard of safety! +'Tis monstrous. Iago, who began't? + +MONTANO: +If partially affined, or leagued in office, +Thou dost deliver more or less than truth, +Thou art no soldier. + +IAGO: +Touch me not so near: +I had rather have this tongue cut from my mouth +Than it should do offence to Michael Cassio; +Yet, I persuade myself, to speak the truth +Shall nothing wrong him. Thus it is, general. +Montano and myself being in speech, +There comes a fellow crying out for help: +And Cassio following him with determined sword, +To execute upon him. Sir, this gentleman +Steps in to Cassio, and entreats his pause: +Myself the crying fellow did pursue, +Lest by his clamour--as it so fell out-- +The town might fall in fright: he, swift of foot, +Outran my purpose; and I return'd the rather +For that I heard the clink and fall of swords, +And Cassio high in oath; which till to-night +I ne'er might say before. When I came back-- +For this was brief--I found them close together, +At blow and thrust; even as again they were +When you yourself did part them. +More of this matter cannot I report: +But men are men; the best sometimes forget: +Though Cassio did some little wrong to him, +As men in rage strike those that wish them best, +Yet surely Cassio, I believe, received +From him that fled some strange indignity, +Which patience could not pass. + +OTHELLO: +I know, Iago, +Thy honesty and love doth mince this matter, +Making it light to Cassio. Cassio, I love thee +But never more be officer of mine. +Look, if my gentle love be not raised up! +I'll make thee an example. + +DESDEMONA: +What's the matter? + +OTHELLO: +All's well now, sweeting; come away to bed. +Sir, for your hurts, myself will be your surgeon: +Lead him off. +Iago, look with care about the town, +And silence those whom this vile brawl distracted. +Come, Desdemona: 'tis the soldiers' life +To have their balmy slumbers waked with strife. + +IAGO: +What, are you hurt, lieutenant? + +CASSIO: +Ay, past all surgery. + +IAGO: +Marry, heaven forbid! + +CASSIO: +Reputation, reputation, reputation! O, I have lost +my reputation! I have lost the immortal part of +myself, and what remains is bestial. My reputation, +Iago, my reputation! + +IAGO: +As I am an honest man, I thought you had received +some bodily wound; there is more sense in that than +in reputation. Reputation is an idle and most false +imposition: oft got without merit, and lost without +deserving: you have lost no reputation at all, +unless you repute yourself such a loser. What, man! +there are ways to recover the general again: you +are but now cast in his mood, a punishment more in +policy than in malice, even so as one would beat his +offenceless dog to affright an imperious lion: sue +to him again, and he's yours. + +CASSIO: +I will rather sue to be despised than to deceive so +good a commander with so slight, so drunken, and so +indiscreet an officer. Drunk? and speak parrot? +and squabble? swagger? swear? and discourse +fustian with one's own shadow? O thou invisible +spirit of wine, if thou hast no name to be known by, +let us call thee devil! + +IAGO: +What was he that you followed with your sword? What +had he done to you? + +CASSIO: +I know not. + +IAGO: +Is't possible? + +CASSIO: +I remember a mass of things, but nothing distinctly; +a quarrel, but nothing wherefore. O God, that men +should put an enemy in their mouths to steal away +their brains! that we should, with joy, pleasance +revel and applause, transform ourselves into beasts! + +IAGO: +Why, but you are now well enough: how came you thus +recovered? + +CASSIO: +It hath pleased the devil drunkenness to give place +to the devil wrath; one unperfectness shows me +another, to make me frankly despise myself. + +IAGO: +Come, you are too severe a moraler: as the time, +the place, and the condition of this country +stands, I could heartily wish this had not befallen; +but, since it is as it is, mend it for your own good. + +CASSIO: +I will ask him for my place again; he shall tell me +I am a drunkard! Had I as many mouths as Hydra, +such an answer would stop them all. To be now a +sensible man, by and by a fool, and presently a +beast! O strange! Every inordinate cup is +unblessed and the ingredient is a devil. + +IAGO: +Come, come, good wine is a good familiar creature, +if it be well used: exclaim no more against it. +And, good lieutenant, I think you think I love you. + +CASSIO: +I have well approved it, sir. I drunk! + +IAGO: +You or any man living may be drunk! at a time, man. +I'll tell you what you shall do. Our general's wife +is now the general: may say so in this respect, for +that he hath devoted and given up himself to the +contemplation, mark, and denotement of her parts and +graces: confess yourself freely to her; importune +her help to put you in your place again: she is of +so free, so kind, so apt, so blessed a disposition, +she holds it a vice in her goodness not to do more +than she is requested: this broken joint between +you and her husband entreat her to splinter; and, my +fortunes against any lay worth naming, this +crack of your love shall grow stronger than it was before. + +CASSIO: +You advise me well. + +IAGO: +I protest, in the sincerity of love and honest kindness. + +CASSIO: +I think it freely; and betimes in the morning I will +beseech the virtuous Desdemona to undertake for me: +I am desperate of my fortunes if they cheque me here. + +IAGO: +You are in the right. Good night, lieutenant; I +must to the watch. + +CASSIO: +Good night, honest Iago. + +IAGO: +And what's he then that says I play the villain? +When this advice is free I give and honest, +Probal to thinking and indeed the course +To win the Moor again? For 'tis most easy +The inclining Desdemona to subdue +In any honest suit: she's framed as fruitful +As the free elements. And then for her +To win the Moor--were't to renounce his baptism, +All seals and symbols of redeemed sin, +His soul is so enfetter'd to her love, +That she may make, unmake, do what she list, +Even as her appetite shall play the god +With his weak function. How am I then a villain +To counsel Cassio to this parallel course, +Directly to his good? Divinity of hell! +When devils will the blackest sins put on, +They do suggest at first with heavenly shows, +As I do now: for whiles this honest fool +Plies Desdemona to repair his fortunes +And she for him pleads strongly to the Moor, +I'll pour this pestilence into his ear, +That she repeals him for her body's lust; +And by how much she strives to do him good, +She shall undo her credit with the Moor. +So will I turn her virtue into pitch, +And out of her own goodness make the net +That shall enmesh them all. +How now, Roderigo! + +RODERIGO: +I do follow here in the chase, not like a hound that +hunts, but one that fills up the cry. My money is +almost spent; I have been to-night exceedingly well +cudgelled; and I think the issue will be, I shall +have so much experience for my pains, and so, with +no money at all and a little more wit, return again to Venice. + +IAGO: +How poor are they that have not patience! +What wound did ever heal but by degrees? +Thou know'st we work by wit, and not by witchcraft; +And wit depends on dilatory time. +Does't not go well? Cassio hath beaten thee. +And thou, by that small hurt, hast cashier'd Cassio: +Though other things grow fair against the sun, +Yet fruits that blossom first will first be ripe: +Content thyself awhile. By the mass, 'tis morning; +Pleasure and action make the hours seem short. +Retire thee; go where thou art billeted: +Away, I say; thou shalt know more hereafter: +Nay, get thee gone. +Two things are to be done: +My wife must move for Cassio to her mistress; +I'll set her on; +Myself the while to draw the Moor apart, +And bring him jump when he may Cassio find +Soliciting his wife: ay, that's the way +Dull not device by coldness and delay. + +CASSIO: +Masters, play here; I will content your pains; +Something that's brief; and bid 'Good morrow, general.' + +Clown: +Why masters, have your instruments been in Naples, +that they speak i' the nose thus? + +First Musician: +How, sir, how! + +Clown: +Are these, I pray you, wind-instruments? + +First Musician: +Ay, marry, are they, sir. + +Clown: +O, thereby hangs a tail. + +First Musician: +Whereby hangs a tale, sir? + +Clown: +Marry. sir, by many a wind-instrument that I know. +But, masters, here's money for you: and the general +so likes your music, that he desires you, for love's +sake, to make no more noise with it. + +First Musician: +Well, sir, we will not. + +Clown: +If you have any music that may not be heard, to't +again: but, as they say to hear music the general +does not greatly care. + +First Musician: +We have none such, sir. + +Clown: +Then put up your pipes in your bag, for I'll away: +go; vanish into air; away! + +CASSIO: +Dost thou hear, my honest friend? + +Clown: +No, I hear not your honest friend; I hear you. + +CASSIO: +Prithee, keep up thy quillets. There's a poor piece +of gold for thee: if the gentlewoman that attends +the general's wife be stirring, tell her there's +one Cassio entreats her a little favour of speech: +wilt thou do this? + +Clown: +She is stirring, sir: if she will stir hither, I +shall seem to notify unto her. + +CASSIO: +Do, good my friend. +In happy time, Iago. + +IAGO: +You have not been a-bed, then? + +CASSIO: +Why, no; the day had broke +Before we parted. I have made bold, Iago, +To send in to your wife: my suit to her +Is, that she will to virtuous Desdemona +Procure me some access. + +IAGO: +I'll send her to you presently; +And I'll devise a mean to draw the Moor +Out of the way, that your converse and business +May be more free. + +CASSIO: +I humbly thank you for't. +I never knew +A Florentine more kind and honest. + +EMILIA: +Good morrow, good Lieutenant: I am sorry +For your displeasure; but all will sure be well. +The general and his wife are talking of it; +And she speaks for you stoutly: the Moor replies, +That he you hurt is of great fame in Cyprus, +And great affinity, and that in wholesome wisdom +He might not but refuse you; but he protests he loves you +And needs no other suitor but his likings +To take the safest occasion by the front +To bring you in again. + +CASSIO: +Yet, I beseech you, +If you think fit, or that it may be done, +Give me advantage of some brief discourse +With Desdemona alone. + +EMILIA: +Pray you, come in; +I will bestow you where you shall have time +To speak your bosom freely. + +CASSIO: +I am much bound to you. + +OTHELLO: +These letters give, Iago, to the pilot; +And by him do my duties to the senate: +That done, I will be walking on the works; +Repair there to me. + +IAGO: +Well, my good lord, I'll do't. + +OTHELLO: +This fortification, gentlemen, shall we see't? + +Gentleman: +We'll wait upon your lordship. + +DESDEMONA: +Be thou assured, good Cassio, I will do +All my abilities in thy behalf. + +EMILIA: +Good madam, do: I warrant it grieves my husband, +As if the case were his. + +DESDEMONA: +O, that's an honest fellow. Do not doubt, Cassio, +But I will have my lord and you again +As friendly as you were. + +CASSIO: +Bounteous madam, +Whatever shall become of Michael Cassio, +He's never any thing but your true servant. + +DESDEMONA: +I know't; I thank you. You do love my lord: +You have known him long; and be you well assured +He shall in strangeness stand no further off +Than in a polite distance. + +CASSIO: +Ay, but, lady, +That policy may either last so long, +Or feed upon such nice and waterish diet, +Or breed itself so out of circumstance, +That, I being absent and my place supplied, +My general will forget my love and service. + +DESDEMONA: +Do not doubt that; before Emilia here +I give thee warrant of thy place: assure thee, +If I do vow a friendship, I'll perform it +To the last article: my lord shall never rest; +I'll watch him tame and talk him out of patience; +His bed shall seem a school, his board a shrift; +I'll intermingle every thing he does +With Cassio's suit: therefore be merry, Cassio; +For thy solicitor shall rather die +Than give thy cause away. + +EMILIA: +Madam, here comes my lord. + +CASSIO: +Madam, I'll take my leave. + +DESDEMONA: +Why, stay, and hear me speak. + +CASSIO: +Madam, not now: I am very ill at ease, +Unfit for mine own purposes. + +DESDEMONA: +Well, do your discretion. + +IAGO: +Ha! I like not that. + +OTHELLO: +What dost thou say? + +IAGO: +Nothing, my lord: or if--I know not what. + +OTHELLO: +Was not that Cassio parted from my wife? + +IAGO: +Cassio, my lord! No, sure, I cannot think it, +That he would steal away so guilty-like, +Seeing you coming. + +OTHELLO: +I do believe 'twas he. + +DESDEMONA: +How now, my lord! +I have been talking with a suitor here, +A man that languishes in your displeasure. + +OTHELLO: +Who is't you mean? + +DESDEMONA: +Why, your lieutenant, Cassio. Good my lord, +If I have any grace or power to move you, +His present reconciliation take; +For if he be not one that truly loves you, +That errs in ignorance and not in cunning, +I have no judgment in an honest face: +I prithee, call him back. + +OTHELLO: +Went he hence now? + +DESDEMONA: +Ay, sooth; so humbled +That he hath left part of his grief with me, +To suffer with him. Good love, call him back. + +OTHELLO: +Not now, sweet Desdemona; some other time. + +DESDEMONA: +But shall't be shortly? + +OTHELLO: +The sooner, sweet, for you. + +DESDEMONA: +Shall't be to-night at supper? + +OTHELLO: +No, not to-night. + +DESDEMONA: +To-morrow dinner, then? + +OTHELLO: +I shall not dine at home; +I meet the captains at the citadel. + +DESDEMONA: +Why, then, to-morrow night; or Tuesday morn; +On Tuesday noon, or night; on Wednesday morn: +I prithee, name the time, but let it not +Exceed three days: in faith, he's penitent; +And yet his trespass, in our common reason-- +Save that, they say, the wars must make examples +Out of their best--is not almost a fault +To incur a private cheque. When shall he come? +Tell me, Othello: I wonder in my soul, +What you would ask me, that I should deny, +Or stand so mammering on. What! Michael Cassio, +That came a-wooing with you, and so many a time, +When I have spoke of you dispraisingly, +Hath ta'en your part; to have so much to do +To bring him in! Trust me, I could do much,-- + +OTHELLO: +Prithee, no more: let him come when he will; +I will deny thee nothing. + +DESDEMONA: +Why, this is not a boon; +'Tis as I should entreat you wear your gloves, +Or feed on nourishing dishes, or keep you warm, +Or sue to you to do a peculiar profit +To your own person: nay, when I have a suit +Wherein I mean to touch your love indeed, +It shall be full of poise and difficult weight +And fearful to be granted. + +OTHELLO: +I will deny thee nothing: +Whereon, I do beseech thee, grant me this, +To leave me but a little to myself. + +DESDEMONA: +Shall I deny you? no: farewell, my lord. + +OTHELLO: +Farewell, my Desdemona: I'll come to thee straight. + +DESDEMONA: +Emilia, come. Be as your fancies teach you; +Whate'er you be, I am obedient. + +OTHELLO: +Excellent wretch! Perdition catch my soul, +But I do love thee! and when I love thee not, +Chaos is come again. + +IAGO: +My noble lord-- + +OTHELLO: +What dost thou say, Iago? + +IAGO: +Did Michael Cassio, when you woo'd my lady, +Know of your love? + +OTHELLO: +He did, from first to last: why dost thou ask? + +IAGO: +But for a satisfaction of my thought; +No further harm. + +OTHELLO: +Why of thy thought, Iago? + +IAGO: +I did not think he had been acquainted with her. + +OTHELLO: +O, yes; and went between us very oft. + +IAGO: +Indeed! + +OTHELLO: +Indeed! ay, indeed: discern'st thou aught in that? +Is he not honest? + +IAGO: +Honest, my lord! + +OTHELLO: +Honest! ay, honest. + +IAGO: +My lord, for aught I know. + +OTHELLO: +What dost thou think? + +IAGO: +Think, my lord! + +OTHELLO: +Think, my lord! +By heaven, he echoes me, +As if there were some monster in his thought +Too hideous to be shown. Thou dost mean something: +I heard thee say even now, thou likedst not that, +When Cassio left my wife: what didst not like? +And when I told thee he was of my counsel +In my whole course of wooing, thou criedst 'Indeed!' +And didst contract and purse thy brow together, +As if thou then hadst shut up in thy brain +Some horrible conceit: if thou dost love me, +Show me thy thought. + +IAGO: +My lord, you know I love you. + +OTHELLO: +I think thou dost; +And, for I know thou'rt full of love and honesty, +And weigh'st thy words before thou givest them breath, +Therefore these stops of thine fright me the more: +For such things in a false disloyal knave +Are tricks of custom, but in a man that's just +They are close delations, working from the heart +That passion cannot rule. + +IAGO: +For Michael Cassio, +I dare be sworn I think that he is honest. + +OTHELLO: +I think so too. + +IAGO: +Men should be what they seem; +Or those that be not, would they might seem none! + +OTHELLO: +Certain, men should be what they seem. + +IAGO: +Why, then, I think Cassio's an honest man. + +OTHELLO: +Nay, yet there's more in this: +I prithee, speak to me as to thy thinkings, +As thou dost ruminate, and give thy worst of thoughts +The worst of words. + +IAGO: +Good my lord, pardon me: +Though I am bound to every act of duty, +I am not bound to that all slaves are free to. +Utter my thoughts? Why, say they are vile and false; +As where's that palace whereinto foul things +Sometimes intrude not? who has a breast so pure, +But some uncleanly apprehensions +Keep leets and law-days and in session sit +With meditations lawful? + +OTHELLO: +Thou dost conspire against thy friend, Iago, +If thou but think'st him wrong'd and makest his ear +A stranger to thy thoughts. + +IAGO: +I do beseech you-- +Though I perchance am vicious in my guess, +As, I confess, it is my nature's plague +To spy into abuses, and oft my jealousy +Shapes faults that are not--that your wisdom yet, +From one that so imperfectly conceits, +Would take no notice, nor build yourself a trouble +Out of his scattering and unsure observance. +It were not for your quiet nor your good, +Nor for my manhood, honesty, or wisdom, +To let you know my thoughts. + +OTHELLO: +What dost thou mean? + +IAGO: +Good name in man and woman, dear my lord, +Is the immediate jewel of their souls: +Who steals my purse steals trash; 'tis something, nothing; +'Twas mine, 'tis his, and has been slave to thousands: +But he that filches from me my good name +Robs me of that which not enriches him +And makes me poor indeed. + +OTHELLO: +By heaven, I'll know thy thoughts. + +IAGO: +You cannot, if my heart were in your hand; +Nor shall not, whilst 'tis in my custody. + +OTHELLO: +Ha! + +IAGO: +O, beware, my lord, of jealousy; +It is the green-eyed monster which doth mock +The meat it feeds on; that cuckold lives in bliss +Who, certain of his fate, loves not his wronger; +But, O, what damned minutes tells he o'er +Who dotes, yet doubts, suspects, yet strongly loves! + +OTHELLO: +O misery! + +IAGO: +Poor and content is rich and rich enough, +But riches fineless is as poor as winter +To him that ever fears he shall be poor. +Good heaven, the souls of all my tribe defend +From jealousy! + +OTHELLO: +Why, why is this? +Think'st thou I'ld make a lie of jealousy, +To follow still the changes of the moon +With fresh suspicions? No; to be once in doubt +Is once to be resolved: exchange me for a goat, +When I shall turn the business of my soul +To such exsufflicate and blown surmises, +Matching thy inference. 'Tis not to make me jealous +To say my wife is fair, feeds well, loves company, +Is free of speech, sings, plays and dances well; +Where virtue is, these are more virtuous: +Nor from mine own weak merits will I draw +The smallest fear or doubt of her revolt; +For she had eyes, and chose me. No, Iago; +I'll see before I doubt; when I doubt, prove; +And on the proof, there is no more but this,-- +Away at once with love or jealousy! + +IAGO: +I am glad of it; for now I shall have reason +To show the love and duty that I bear you +With franker spirit: therefore, as I am bound, +Receive it from me. I speak not yet of proof. +Look to your wife; observe her well with Cassio; +Wear your eye thus, not jealous nor secure: +I would not have your free and noble nature, +Out of self-bounty, be abused; look to't: +I know our country disposition well; +In Venice they do let heaven see the pranks +They dare not show their husbands; their best conscience +Is not to leave't undone, but keep't unknown. + +OTHELLO: +Dost thou say so? + +IAGO: +She did deceive her father, marrying you; +And when she seem'd to shake and fear your looks, +She loved them most. + +OTHELLO: +And so she did. + +IAGO: +Why, go to then; +She that, so young, could give out such a seeming, +To seal her father's eyes up close as oak- +He thought 'twas witchcraft--but I am much to blame; +I humbly do beseech you of your pardon +For too much loving you. + +OTHELLO: +I am bound to thee for ever. + +IAGO: +I see this hath a little dash'd your spirits. + +OTHELLO: +Not a jot, not a jot. + +IAGO: +I' faith, I fear it has. +I hope you will consider what is spoke +Comes from my love. But I do see you're moved: +I am to pray you not to strain my speech +To grosser issues nor to larger reach +Than to suspicion. + +OTHELLO: +I will not. + +IAGO: +Should you do so, my lord, +My speech should fall into such vile success +As my thoughts aim not at. Cassio's my worthy friend-- +My lord, I see you're moved. + +OTHELLO: +No, not much moved: +I do not think but Desdemona's honest. + +IAGO: +Long live she so! and long live you to think so! + +OTHELLO: +And yet, how nature erring from itself,-- + +IAGO: +Ay, there's the point: as--to be bold with you-- +Not to affect many proposed matches +Of her own clime, complexion, and degree, +Whereto we see in all things nature tends-- +Foh! one may smell in such a will most rank, +Foul disproportion thoughts unnatural. +But pardon me; I do not in position +Distinctly speak of her; though I may fear +Her will, recoiling to her better judgment, +May fall to match you with her country forms +And happily repent. + +OTHELLO: +Farewell, farewell: +If more thou dost perceive, let me know more; +Set on thy wife to observe: leave me, Iago: + +IAGO: + +OTHELLO: +Why did I marry? This honest creature doubtless +Sees and knows more, much more, than he unfolds. + +IAGO: + +OTHELLO: +Fear not my government. + +IAGO: +I once more take my leave. + +OTHELLO: +This fellow's of exceeding honesty, +And knows all qualities, with a learned spirit, +Of human dealings. If I do prove her haggard, +Though that her jesses were my dear heartstrings, +I'ld whistle her off and let her down the wind, +To pray at fortune. Haply, for I am black +And have not those soft parts of conversation +That chamberers have, or for I am declined +Into the vale of years,--yet that's not much-- +She's gone. I am abused; and my relief +Must be to loathe her. O curse of marriage, +That we can call these delicate creatures ours, +And not their appetites! I had rather be a toad, +And live upon the vapour of a dungeon, +Than keep a corner in the thing I love +For others' uses. Yet, 'tis the plague of great ones; +Prerogatived are they less than the base; +'Tis destiny unshunnable, like death: +Even then this forked plague is fated to us +When we do quicken. Desdemona comes: +If she be false, O, then heaven mocks itself! +I'll not believe't. + +DESDEMONA: +How now, my dear Othello! +Your dinner, and the generous islanders +By you invited, do attend your presence. + +OTHELLO: +I am to blame. + +DESDEMONA: +Why do you speak so faintly? +Are you not well? + +OTHELLO: +I have a pain upon my forehead here. + +DESDEMONA: +'Faith, that's with watching; 'twill away again: +Let me but bind it hard, within this hour +It will be well. + +OTHELLO: +Your napkin is too little: +Let it alone. Come, I'll go in with you. + +DESDEMONA: +I am very sorry that you are not well. + +EMILIA: +I am glad I have found this napkin: +This was her first remembrance from the Moor: +My wayward husband hath a hundred times +Woo'd me to steal it; but she so loves the token, +For he conjured her she should ever keep it, +That she reserves it evermore about her +To kiss and talk to. I'll have the work ta'en out, +And give't Iago: what he will do with it +Heaven knows, not I; +I nothing but to please his fantasy. + +IAGO: +How now! what do you here alone? + +EMILIA: +Do not you chide; I have a thing for you. + +IAGO: +A thing for me? it is a common thing-- + +EMILIA: +Ha! + +IAGO: +To have a foolish wife. + +EMILIA: +O, is that all? What will you give me now +For the same handkerchief? + +IAGO: +What handkerchief? + +EMILIA: +What handkerchief? +Why, that the Moor first gave to Desdemona; +That which so often you did bid me steal. + +IAGO: +Hast stol'n it from her? + +EMILIA: +No, 'faith; she let it drop by negligence. +And, to the advantage, I, being here, took't up. +Look, here it is. + +IAGO: +A good wench; give it me. + +EMILIA: +What will you do with 't, that you have been +so earnest +To have me filch it? + +IAGO: + +EMILIA: +If it be not for some purpose of import, +Give't me again: poor lady, she'll run mad +When she shall lack it. + +IAGO: +Be not acknown on 't; I have use for it. +Go, leave me. +I will in Cassio's lodging lose this napkin, +And let him find it. Trifles light as air +Are to the jealous confirmations strong +As proofs of holy writ: this may do something. +The Moor already changes with my poison: +Dangerous conceits are, in their natures, poisons. +Which at the first are scarce found to distaste, +But with a little act upon the blood. +Burn like the mines of Sulphur. I did say so: +Look, where he comes! +Not poppy, nor mandragora, +Nor all the drowsy syrups of the world, +Shall ever medicine thee to that sweet sleep +Which thou owedst yesterday. + +OTHELLO: +Ha! ha! false to me? + +IAGO: +Why, how now, general! no more of that. + +OTHELLO: +Avaunt! be gone! thou hast set me on the rack: +I swear 'tis better to be much abused +Than but to know't a little. + +IAGO: +How now, my lord! + +OTHELLO: +What sense had I of her stol'n hours of lust? +I saw't not, thought it not, it harm'd not me: +I slept the next night well, was free and merry; +I found not Cassio's kisses on her lips: +He that is robb'd, not wanting what is stol'n, +Let him not know't, and he's not robb'd at all. + +IAGO: +I am sorry to hear this. + +OTHELLO: +I had been happy, if the general camp, +Pioners and all, had tasted her sweet body, +So I had nothing known. O, now, for ever +Farewell the tranquil mind! farewell content! +Farewell the plumed troop, and the big wars, +That make ambition virtue! O, farewell! +Farewell the neighing steed, and the shrill trump, +The spirit-stirring drum, the ear-piercing fife, +The royal banner, and all quality, +Pride, pomp and circumstance of glorious war! +And, O you mortal engines, whose rude throats +The immortal Jove's dead clamours counterfeit, +Farewell! Othello's occupation's gone! + +IAGO: +Is't possible, my lord? + +OTHELLO: +Villain, be sure thou prove my love a whore, +Be sure of it; give me the ocular proof: +Or by the worth of man's eternal soul, +Thou hadst been better have been born a dog +Than answer my waked wrath! + +IAGO: +Is't come to this? + +OTHELLO: +Make me to see't; or, at the least, so prove it, +That the probation bear no hinge nor loop +To hang a doubt on; or woe upon thy life! + +IAGO: +My noble lord,-- + +OTHELLO: +If thou dost slander her and torture me, +Never pray more; abandon all remorse; +On horror's head horrors accumulate; +Do deeds to make heaven weep, all earth amazed; +For nothing canst thou to damnation add +Greater than that. + +IAGO: +O grace! O heaven forgive me! +Are you a man? have you a soul or sense? +God be wi' you; take mine office. O wretched fool. +That livest to make thine honesty a vice! +O monstrous world! Take note, take note, O world, +To be direct and honest is not safe. +I thank you for this profit; and from hence +I'll love no friend, sith love breeds such offence. + +OTHELLO: +Nay, stay: thou shouldst be honest. + +IAGO: +I should be wise, for honesty's a fool +And loses that it works for. + +OTHELLO: +By the world, +I think my wife be honest and think she is not; +I think that thou art just and think thou art not. +I'll have some proof. Her name, that was as fresh +As Dian's visage, is now begrimed and black +As mine own face. If there be cords, or knives, +Poison, or fire, or suffocating streams, +I'll not endure it. Would I were satisfied! + +IAGO: +I see, sir, you are eaten up with passion: +I do repent me that I put it to you. +You would be satisfied? + +OTHELLO: +Would! nay, I will. + +IAGO: +And may: but, how? how satisfied, my lord? +Would you, the supervisor, grossly gape on-- +Behold her topp'd? + +OTHELLO: +Death and damnation! O! + +IAGO: +It were a tedious difficulty, I think, +To bring them to that prospect: damn them then, +If ever mortal eyes do see them bolster +More than their own! What then? how then? +What shall I say? Where's satisfaction? +It is impossible you should see this, +Were they as prime as goats, as hot as monkeys, +As salt as wolves in pride, and fools as gross +As ignorance made drunk. But yet, I say, +If imputation and strong circumstances, +Which lead directly to the door of truth, +Will give you satisfaction, you may have't. + +OTHELLO: +Give me a living reason she's disloyal. + +IAGO: +I do not like the office: +But, sith I am enter'd in this cause so far, +Prick'd to't by foolish honesty and love, +I will go on. I lay with Cassio lately; +And, being troubled with a raging tooth, +I could not sleep. +There are a kind of men so loose of soul, +That in their sleeps will mutter their affairs: +One of this kind is Cassio: +In sleep I heard him say 'Sweet Desdemona, +Let us be wary, let us hide our loves;' +And then, sir, would he gripe and wring my hand, +Cry 'O sweet creature!' and then kiss me hard, +As if he pluck'd up kisses by the roots +That grew upon my lips: then laid his leg +Over my thigh, and sigh'd, and kiss'd; and then +Cried 'Cursed fate that gave thee to the Moor!' + +OTHELLO: +O monstrous! monstrous! + +IAGO: +Nay, this was but his dream. + +OTHELLO: +But this denoted a foregone conclusion: +'Tis a shrewd doubt, though it be but a dream. + +IAGO: +And this may help to thicken other proofs +That do demonstrate thinly. + +OTHELLO: +I'll tear her all to pieces. + +IAGO: +Nay, but be wise: yet we see nothing done; +She may be honest yet. Tell me but this, +Have you not sometimes seen a handkerchief +Spotted with strawberries in your wife's hand? + +OTHELLO: +I gave her such a one; 'twas my first gift. + +IAGO: +I know not that; but such a handkerchief-- +I am sure it was your wife's--did I to-day +See Cassio wipe his beard with. + +OTHELLO: +If it be that-- + +IAGO: +If it be that, or any that was hers, +It speaks against her with the other proofs. + +OTHELLO: +O, that the slave had forty thousand lives! +One is too poor, too weak for my revenge. +Now do I see 'tis true. Look here, Iago; +All my fond love thus do I blow to heaven. +'Tis gone. +Arise, black vengeance, from thy hollow cell! +Yield up, O love, thy crown and hearted throne +To tyrannous hate! Swell, bosom, with thy fraught, +For 'tis of aspics' tongues! + +IAGO: +Yet be content. + +OTHELLO: +O, blood, blood, blood! + +IAGO: +Patience, I say; your mind perhaps may change. + +OTHELLO: +Never, Iago: Like to the Pontic sea, +Whose icy current and compulsive course +Ne'er feels retiring ebb, but keeps due on +To the Propontic and the Hellespont, +Even so my bloody thoughts, with violent pace, +Shall ne'er look back, ne'er ebb to humble love, +Till that a capable and wide revenge +Swallow them up. Now, by yond marble heaven, +In the due reverence of a sacred vow +I here engage my words. + +IAGO: +Do not rise yet. +Witness, you ever-burning lights above, +You elements that clip us round about, +Witness that here Iago doth give up +The execution of his wit, hands, heart, +To wrong'd Othello's service! Let him command, +And to obey shall be in me remorse, +What bloody business ever. + +OTHELLO: +I greet thy love, +Not with vain thanks, but with acceptance bounteous, +And will upon the instant put thee to't: +Within these three days let me hear thee say +That Cassio's not alive. + +IAGO: +My friend is dead; 'tis done at your request: +But let her live. + +OTHELLO: +Damn her, lewd minx! O, damn her! +Come, go with me apart; I will withdraw, +To furnish me with some swift means of death +For the fair devil. Now art thou my lieutenant. + +IAGO: +I am your own for ever. + +DESDEMONA: +Do you know, sirrah, where Lieutenant Cassio lies? + +Clown: +I dare not say he lies any where. + +DESDEMONA: +Why, man? + +Clown: +He's a soldier, and for one to say a soldier lies, +is stabbing. + +DESDEMONA: +Go to: where lodges he? + +Clown: +To tell you where he lodges, is to tell you where I lie. + +DESDEMONA: +Can any thing be made of this? + +Clown: +I know not where he lodges, and for me to devise a +lodging and say he lies here or he lies there, were +to lie in mine own throat. + +DESDEMONA: +Can you inquire him out, and be edified by report? + +Clown: +I will catechise the world for him; that is, make +questions, and by them answer. + +DESDEMONA: +Seek him, bid him come hither: tell him I have +moved my lord on his behalf, and hope all will be well. + +Clown: +To do this is within the compass of man's wit: and +therefore I will attempt the doing it. + +DESDEMONA: +Where should I lose that handkerchief, Emilia? + +EMILIA: +I know not, madam. + +DESDEMONA: +Believe me, I had rather have lost my purse +Full of crusadoes: and, but my noble Moor +Is true of mind and made of no such baseness +As jealous creatures are, it were enough +To put him to ill thinking. + +EMILIA: +Is he not jealous? + +DESDEMONA: +Who, he? I think the sun where he was born +Drew all such humours from him. + +EMILIA: +Look, where he comes. + +DESDEMONA: +I will not leave him now till Cassio +Be call'd to him. +How is't with you, my lord + +OTHELLO: +Well, my good lady. +O, hardness to dissemble!-- +How do you, Desdemona? + +DESDEMONA: +Well, my good lord. + +OTHELLO: +Give me your hand: this hand is moist, my lady. + +DESDEMONA: +It yet hath felt no age nor known no sorrow. + +OTHELLO: +This argues fruitfulness and liberal heart: +Hot, hot, and moist: this hand of yours requires +A sequester from liberty, fasting and prayer, +Much castigation, exercise devout; +For here's a young and sweating devil here, +That commonly rebels. 'Tis a good hand, +A frank one. + +DESDEMONA: +You may, indeed, say so; +For 'twas that hand that gave away my heart. + +OTHELLO: +A liberal hand: the hearts of old gave hands; +But our new heraldry is hands, not hearts. + +DESDEMONA: +I cannot speak of this. Come now, your promise. + +OTHELLO: +What promise, chuck? + +DESDEMONA: +I have sent to bid Cassio come speak with you. + +OTHELLO: +I have a salt and sorry rheum offends me; +Lend me thy handkerchief. + +DESDEMONA: +Here, my lord. + +OTHELLO: +That which I gave you. + +DESDEMONA: +I have it not about me. + +OTHELLO: +Not? + +DESDEMONA: +No, indeed, my lord. + +OTHELLO: +That is a fault. +That handkerchief +Did an Egyptian to my mother give; +She was a charmer, and could almost read +The thoughts of people: she told her, while +she kept it, +'Twould make her amiable and subdue my father +Entirely to her love, but if she lost it +Or made gift of it, my father's eye +Should hold her loathed and his spirits should hunt +After new fancies: she, dying, gave it me; +And bid me, when my fate would have me wive, +To give it her. I did so: and take heed on't; +Make it a darling like your precious eye; +To lose't or give't away were such perdition +As nothing else could match. + +DESDEMONA: +Is't possible? + +OTHELLO: +'Tis true: there's magic in the web of it: +A sibyl, that had number'd in the world +The sun to course two hundred compasses, +In her prophetic fury sew'd the work; +The worms were hallow'd that did breed the silk; +And it was dyed in mummy which the skilful +Conserved of maidens' hearts. + +DESDEMONA: +Indeed! is't true? + +OTHELLO: +Most veritable; therefore look to't well. + +DESDEMONA: +Then would to God that I had never seen't! + +OTHELLO: +Ha! wherefore? + +DESDEMONA: +Why do you speak so startingly and rash? + +OTHELLO: +Is't lost? is't gone? speak, is it out +o' the way? + +DESDEMONA: +Heaven bless us! + +OTHELLO: +Say you? + +DESDEMONA: +It is not lost; but what an if it were? + +OTHELLO: +How! + +DESDEMONA: +I say, it is not lost. + +OTHELLO: +Fetch't, let me see't. + +DESDEMONA: +Why, so I can, sir, but I will not now. +This is a trick to put me from my suit: +Pray you, let Cassio be received again. + +OTHELLO: +Fetch me the handkerchief: my mind misgives. + +DESDEMONA: +Come, come; +You'll never meet a more sufficient man. + +OTHELLO: +The handkerchief! + +DESDEMONA: +I pray, talk me of Cassio. + +OTHELLO: +The handkerchief! + +DESDEMONA: +A man that all his time +Hath founded his good fortunes on your love, +Shared dangers with you,-- + +OTHELLO: +The handkerchief! + +DESDEMONA: +In sooth, you are to blame. + +OTHELLO: +Away! + +EMILIA: +Is not this man jealous? + +DESDEMONA: +I ne'er saw this before. +Sure, there's some wonder in this handkerchief: +I am most unhappy in the loss of it. + +EMILIA: +'Tis not a year or two shows us a man: +They are all but stomachs, and we all but food; +To eat us hungerly, and when they are full, +They belch us. Look you, Cassio and my husband! + +IAGO: +There is no other way; 'tis she must do't: +And, lo, the happiness! go, and importune her. + +DESDEMONA: +How now, good Cassio! what's the news with you? + +CASSIO: +Madam, my former suit: I do beseech you +That by your virtuous means I may again +Exist, and be a member of his love +Whom I with all the office of my heart +Entirely honour: I would not be delay'd. +If my offence be of such mortal kind +That nor my service past, nor present sorrows, +Nor purposed merit in futurity, +Can ransom me into his love again, +But to know so must be my benefit; +So shall I clothe me in a forced content, +And shut myself up in some other course, +To fortune's alms. + +DESDEMONA: +Alas, thrice-gentle Cassio! +My advocation is not now in tune; +My lord is not my lord; nor should I know him, +Were he in favour as in humour alter'd. +So help me every spirit sanctified, +As I have spoken for you all my best +And stood within the blank of his displeasure +For my free speech! you must awhile be patient: +What I can do I will; and more I will +Than for myself I dare: let that suffice you. + +IAGO: +Is my lord angry? + +EMILIA: +He went hence but now, +And certainly in strange unquietness. + +IAGO: +Can he be angry? I have seen the cannon, +When it hath blown his ranks into the air, +And, like the devil, from his very arm +Puff'd his own brother:--and can he be angry? +Something of moment then: I will go meet him: +There's matter in't indeed, if he be angry. + +DESDEMONA: +I prithee, do so. +Something, sure, of state, +Either from Venice, or some unhatch'd practise +Made demonstrable here in Cyprus to him, +Hath puddled his clear spirit: and in such cases +Men's natures wrangle with inferior things, +Though great ones are their object. 'Tis even so; +For let our finger ache, and it indues +Our other healthful members even to that sense +Of pain: nay, we must think men are not gods, +Nor of them look for such observances +As fit the bridal. Beshrew me much, Emilia, +I was, unhandsome warrior as I am, +Arraigning his unkindness with my soul; +But now I find I had suborn'd the witness, +And he's indicted falsely. + +EMILIA: +Pray heaven it be state-matters, as you think, +And no conception nor no jealous toy +Concerning you. + +DESDEMONA: +Alas the day! I never gave him cause. + +EMILIA: +But jealous souls will not be answer'd so; +They are not ever jealous for the cause, +But jealous for they are jealous: 'tis a monster +Begot upon itself, born on itself. + +DESDEMONA: +Heaven keep that monster from Othello's mind! + +EMILIA: +Lady, amen. + +DESDEMONA: +I will go seek him. Cassio, walk hereabout: +If I do find him fit, I'll move your suit +And seek to effect it to my uttermost. + +CASSIO: +I humbly thank your ladyship. + +BIANCA: +Save you, friend Cassio! + +CASSIO: +What make you from home? +How is it with you, my most fair Bianca? +I' faith, sweet love, I was coming to your house. + +BIANCA: +And I was going to your lodging, Cassio. +What, keep a week away? seven days and nights? +Eight score eight hours? and lovers' absent hours, +More tedious than the dial eight score times? +O weary reckoning! + +CASSIO: +Pardon me, Bianca: +I have this while with leaden thoughts been press'd: +But I shall, in a more continuate time, +Strike off this score of absence. Sweet Bianca, +Take me this work out. + +BIANCA: +O Cassio, whence came this? +This is some token from a newer friend: +To the felt absence now I feel a cause: +Is't come to this? Well, well. + +CASSIO: +Go to, woman! +Throw your vile guesses in the devil's teeth, +From whence you have them. You are jealous now +That this is from some mistress, some remembrance: +No, in good troth, Bianca. + +BIANCA: +Why, whose is it? + +CASSIO: +I know not, sweet: I found it in my chamber. +I like the work well: ere it be demanded-- +As like enough it will--I'ld have it copied: +Take it, and do't; and leave me for this time. + +BIANCA: +Leave you! wherefore? + +CASSIO: +I do attend here on the general; +And think it no addition, nor my wish, +To have him see me woman'd. + +BIANCA: +Why, I pray you? + +CASSIO: +Not that I love you not. + +BIANCA: +But that you do not love me. +I pray you, bring me on the way a little, +And say if I shall see you soon at night. + +CASSIO: +'Tis but a little way that I can bring you; +For I attend here: but I'll see you soon. + +BIANCA: +'Tis very good; I must be circumstanced. + +IAGO: +Will you think so? + +OTHELLO: +Think so, Iago! + +IAGO: +What, +To kiss in private? + +OTHELLO: +An unauthorized kiss. + +IAGO: +Or to be naked with her friend in bed +An hour or more, not meaning any harm? + +OTHELLO: +Naked in bed, Iago, and not mean harm! +It is hypocrisy against the devil: +They that mean virtuously, and yet do so, +The devil their virtue tempts, and they tempt heaven. + +IAGO: +So they do nothing, 'tis a venial slip: +But if I give my wife a handkerchief,-- + +OTHELLO: +What then? + +IAGO: +Why, then, 'tis hers, my lord; and, being hers, +She may, I think, bestow't on any man. + +OTHELLO: +She is protectress of her honour too: +May she give that? + +IAGO: +Her honour is an essence that's not seen; +They have it very oft that have it not: +But, for the handkerchief,-- + +OTHELLO: +By heaven, I would most gladly have forgot it. +Thou said'st, it comes o'er my memory, +As doth the raven o'er the infected house, +Boding to all--he had my handkerchief. + +IAGO: +Ay, what of that? + +OTHELLO: +That's not so good now. + +IAGO: +What, +If I had said I had seen him do you wrong? +Or heard him say,--as knaves be such abroad, +Who having, by their own importunate suit, +Or voluntary dotage of some mistress, +Convinced or supplied them, cannot choose +But they must blab-- + +OTHELLO: +Hath he said any thing? + +IAGO: +He hath, my lord; but be you well assured, +No more than he'll unswear. + +OTHELLO: +What hath he said? + +IAGO: +'Faith, that he did--I know not what he did. + +OTHELLO: +What? what? + +IAGO: +Lie-- + +OTHELLO: +With her? + +IAGO: +With her, on her; what you will. + +OTHELLO: +Lie with her! lie on her! We say lie on her, when +they belie her. Lie with her! that's fulsome. +--Handkerchief--confessions--handkerchief!--To +confess, and be hanged for his labour;--first, to be +hanged, and then to confess.--I tremble at it. +Nature would not invest herself in such shadowing +passion without some instruction. It is not words +that shake me thus. Pish! Noses, ears, and lips. +--Is't possible?--Confess--handkerchief!--O devil!-- + +IAGO: +Work on, +My medicine, work! Thus credulous fools are caught; +And many worthy and chaste dames even thus, +All guiltless, meet reproach. What, ho! my lord! +My lord, I say! Othello! +How now, Cassio! + +CASSIO: +What's the matter? + +IAGO: +My lord is fall'n into an epilepsy: +This is his second fit; he had one yesterday. + +CASSIO: +Rub him about the temples. + +IAGO: +No, forbear; +The lethargy must have his quiet course: +If not, he foams at mouth and by and by +Breaks out to savage madness. Look he stirs: +Do you withdraw yourself a little while, +He will recover straight: when he is gone, +I would on great occasion speak with you. +How is it, general? have you not hurt your head? + +OTHELLO: +Dost thou mock me? + +IAGO: +I mock you! no, by heaven. +Would you would bear your fortune like a man! + +OTHELLO: +A horned man's a monster and a beast. + +IAGO: +There's many a beast then in a populous city, +And many a civil monster. + +OTHELLO: +Did he confess it? + +IAGO: +Good sir, be a man; +Think every bearded fellow that's but yoked +May draw with you: there's millions now alive +That nightly lie in those unproper beds +Which they dare swear peculiar: your case is better. +O, 'tis the spite of hell, the fiend's arch-mock, +To lip a wanton in a secure couch, +And to suppose her chaste! No, let me know; +And knowing what I am, I know what she shall be. + +OTHELLO: +O, thou art wise; 'tis certain. + +IAGO: +Stand you awhile apart; +Confine yourself but in a patient list. +Whilst you were here o'erwhelmed with your grief-- +A passion most unsuiting such a man-- +Cassio came hither: I shifted him away, +And laid good 'scuse upon your ecstasy, +Bade him anon return and here speak with me; +The which he promised. Do but encave yourself, +And mark the fleers, the gibes, and notable scorns, +That dwell in every region of his face; +For I will make him tell the tale anew, +Where, how, how oft, how long ago, and when +He hath, and is again to cope your wife: +I say, but mark his gesture. Marry, patience; +Or I shall say you are all in all in spleen, +And nothing of a man. + +OTHELLO: +Dost thou hear, Iago? +I will be found most cunning in my patience; +But--dost thou hear?--most bloody. + +IAGO: +That's not amiss; +But yet keep time in all. Will you withdraw? +Now will I question Cassio of Bianca, +A housewife that by selling her desires +Buys herself bread and clothes: it is a creature +That dotes on Cassio; as 'tis the strumpet's plague +To beguile many and be beguiled by one: +He, when he hears of her, cannot refrain +From the excess of laughter. Here he comes: +As he shall smile, Othello shall go mad; +And his unbookish jealousy must construe +Poor Cassio's smiles, gestures and light behavior, +Quite in the wrong. How do you now, lieutenant? + +CASSIO: +The worser that you give me the addition +Whose want even kills me. + +IAGO: +Ply Desdemona well, and you are sure on't. +Now, if this suit lay in Bianco's power, +How quickly should you speed! + +CASSIO: +Alas, poor caitiff! + +OTHELLO: +Look, how he laughs already! + +IAGO: +I never knew woman love man so. + +CASSIO: +Alas, poor rogue! I think, i' faith, she loves me. + +OTHELLO: +Now he denies it faintly, and laughs it out. + +IAGO: +Do you hear, Cassio? + +OTHELLO: +Now he importunes him +To tell it o'er: go to; well said, well said. + +IAGO: +She gives it out that you shall marry hey: +Do you intend it? + +CASSIO: +Ha, ha, ha! + +OTHELLO: +Do you triumph, Roman? do you triumph? + +CASSIO: +I marry her! what? a customer! Prithee, bear some +charity to my wit: do not think it so unwholesome. +Ha, ha, ha! + +OTHELLO: +So, so, so, so: they laugh that win. + +IAGO: +'Faith, the cry goes that you shall marry her. + +CASSIO: +Prithee, say true. + +IAGO: +I am a very villain else. + +OTHELLO: +Have you scored me? Well. + +CASSIO: +This is the monkey's own giving out: she is +persuaded I will marry her, out of her own love and +flattery, not out of my promise. + +OTHELLO: +Iago beckons me; now he begins the story. + +CASSIO: +She was here even now; she haunts me in every place. +I was the other day talking on the sea-bank with +certain Venetians; and thither comes the bauble, +and, by this hand, she falls me thus about my neck-- + +OTHELLO: +Crying 'O dear Cassio!' as it were: his gesture +imports it. + +CASSIO: +So hangs, and lolls, and weeps upon me; so hales, +and pulls me: ha, ha, ha! + +OTHELLO: +Now he tells how she plucked him to my chamber. O, +I see that nose of yours, but not that dog I shall +throw it to. + +CASSIO: +Well, I must leave her company. + +IAGO: +Before me! look, where she comes. + +CASSIO: +'Tis such another fitchew! marry a perfumed one. +What do you mean by this haunting of me? + +BIANCA: +Let the devil and his dam haunt you! What did you +mean by that same handkerchief you gave me even now? +I was a fine fool to take it. I must take out the +work?--A likely piece of work, that you should find +it in your chamber, and not know who left it there! +This is some minx's token, and I must take out the +work? There; give it your hobby-horse: wheresoever +you had it, I'll take out no work on't. + +CASSIO: +How now, my sweet Bianca! how now! how now! + +OTHELLO: +By heaven, that should be my handkerchief! + +BIANCA: +An you'll come to supper to-night, you may; an you +will not, come when you are next prepared for. + +IAGO: +After her, after her. + +CASSIO: +'Faith, I must; she'll rail in the street else. + +IAGO: +Will you sup there? + +CASSIO: +'Faith, I intend so. + +IAGO: +Well, I may chance to see you; for I would very fain +speak with you. + +CASSIO: +Prithee, come; will you? + +IAGO: +Go to; say no more. + +OTHELLO: + +IAGO: +Did you perceive how he laughed at his vice? + +OTHELLO: +O Iago! + +IAGO: +And did you see the handkerchief? + +OTHELLO: +Was that mine? + +IAGO: +Yours by this hand: and to see how he prizes the +foolish woman your wife! she gave it him, and he +hath given it his whore. + +OTHELLO: +I would have him nine years a-killing. +A fine woman! a fair woman! a sweet woman! + +IAGO: +Nay, you must forget that. + +OTHELLO: +Ay, let her rot, and perish, and be damned to-night; +for she shall not live: no, my heart is turned to +stone; I strike it, and it hurts my hand. O, the +world hath not a sweeter creature: she might lie by +an emperor's side and command him tasks. + +IAGO: +Nay, that's not your way. + +OTHELLO: +Hang her! I do but say what she is: so delicate +with her needle: an admirable musician: O! she +will sing the savageness out of a bear: of so high +and plenteous wit and invention:-- + +IAGO: +She's the worse for all this. + +OTHELLO: +O, a thousand thousand times: and then, of so +gentle a condition! + +IAGO: +Ay, too gentle. + +OTHELLO: +Nay, that's certain: but yet the pity of it, Iago! +O Iago, the pity of it, Iago! + +IAGO: +If you are so fond over her iniquity, give her +patent to offend; for, if it touch not you, it comes +near nobody. + +OTHELLO: +I will chop her into messes: cuckold me! + +IAGO: +O, 'tis foul in her. + +OTHELLO: +With mine officer! + +IAGO: +That's fouler. + +OTHELLO: +Get me some poison, Iago; this night: I'll not +expostulate with her, lest her body and beauty +unprovide my mind again: this night, Iago. + +IAGO: +Do it not with poison, strangle her in her bed, even +the bed she hath contaminated. + +OTHELLO: +Good, good: the justice of it pleases: very good. + +IAGO: +And for Cassio, let me be his undertaker: you +shall hear more by midnight. + +OTHELLO: +Excellent good. +What trumpet is that same? + +IAGO: +Something from Venice, sure. 'Tis Lodovico +Come from the duke: and, see, your wife is with him. + +LODOVICO: +Save you, worthy general! + +OTHELLO: +With all my heart, sir. + +LODOVICO: +The duke and senators of Venice greet you. + +OTHELLO: +I kiss the instrument of their pleasures. + +DESDEMONA: +And what's the news, good cousin Lodovico? + +IAGO: +I am very glad to see you, signior +Welcome to Cyprus. + +LODOVICO: +I thank you. How does Lieutenant Cassio? + +IAGO: +Lives, sir. + +DESDEMONA: +Cousin, there's fall'n between him and my lord +An unkind breach: but you shall make all well. + +OTHELLO: +Are you sure of that? + +DESDEMONA: +My lord? + +OTHELLO: + +LODOVICO: +He did not call; he's busy in the paper. +Is there division 'twixt my lord and Cassio? + +DESDEMONA: +A most unhappy one: I would do much +To atone them, for the love I bear to Cassio. + +OTHELLO: +Fire and brimstone! + +DESDEMONA: +My lord? + +OTHELLO: +Are you wise? + +DESDEMONA: +What, is he angry? + +LODOVICO: +May be the letter moved him; +For, as I think, they do command him home, +Deputing Cassio in his government. + +DESDEMONA: +Trust me, I am glad on't. + +OTHELLO: +Indeed! + +DESDEMONA: +My lord? + +OTHELLO: +I am glad to see you mad. + +DESDEMONA: +Why, sweet Othello,-- + +OTHELLO: + +DESDEMONA: +I have not deserved this. + +LODOVICO: +My lord, this would not be believed in Venice, +Though I should swear I saw't: 'tis very much: +Make her amends; she weeps. + +OTHELLO: +O devil, devil! +If that the earth could teem with woman's tears, +Each drop she falls would prove a crocodile. +Out of my sight! + +DESDEMONA: +I will not stay to offend you. + +LODOVICO: +Truly, an obedient lady: +I do beseech your lordship, call her back. + +OTHELLO: +Mistress! + +DESDEMONA: +My lord? + +OTHELLO: +What would you with her, sir? + +LODOVICO: +Who, I, my lord? + +OTHELLO: +Ay; you did wish that I would make her turn: +Sir, she can turn, and turn, and yet go on, +And turn again; and she can weep, sir, weep; +And she's obedient, as you say, obedient, +Very obedient. Proceed you in your tears. +Concerning this, sir,--O well-painted passion!-- +I am commanded home. Get you away; +I'll send for you anon. Sir, I obey the mandate, +And will return to Venice. Hence, avaunt! +Cassio shall have my place. And, sir, tonight, +I do entreat that we may sup together: +You are welcome, sir, to Cyprus.--Goats and monkeys! + +LODOVICO: +Is this the noble Moor whom our full senate +Call all in all sufficient? Is this the nature +Whom passion could not shake? whose solid virtue +The shot of accident, nor dart of chance, +Could neither graze nor pierce? + +IAGO: +He is much changed. + +LODOVICO: +Are his wits safe? is he not light of brain? + +IAGO: +He's that he is: I may not breathe my censure +What he might be: if what he might he is not, +I would to heaven he were! + +LODOVICO: +What, strike his wife! + +IAGO: +'Faith, that was not so well; yet would I knew +That stroke would prove the worst! + +LODOVICO: +Is it his use? +Or did the letters work upon his blood, +And new-create this fault? + +IAGO: +Alas, alas! +It is not honesty in me to speak +What I have seen and known. You shall observe him, +And his own courses will denote him so +That I may save my speech: do but go after, +And mark how he continues. + +LODOVICO: +I am sorry that I am deceived in him. + +OTHELLO: +You have seen nothing then? + +EMILIA: +Nor ever heard, nor ever did suspect. + +OTHELLO: +Yes, you have seen Cassio and she together. + +EMILIA: +But then I saw no harm, and then I heard +Each syllable that breath made up between them. + +OTHELLO: +What, did they never whisper? + +EMILIA: +Never, my lord. + +OTHELLO: +Nor send you out o' the way? + +EMILIA: +Never. + +OTHELLO: +To fetch her fan, her gloves, her mask, nor nothing? + +EMILIA: +Never, my lord. + +OTHELLO: +That's strange. + +EMILIA: +I durst, my lord, to wager she is honest, +Lay down my soul at stake: if you think other, +Remove your thought; it doth abuse your bosom. +If any wretch have put this in your head, +Let heaven requite it with the serpent's curse! +For, if she be not honest, chaste, and true, +There's no man happy; the purest of their wives +Is foul as slander. + +OTHELLO: +Bid her come hither: go. +She says enough; yet she's a simple bawd +That cannot say as much. This is a subtle whore, +A closet lock and key of villanous secrets +And yet she'll kneel and pray; I have seen her do't. + +DESDEMONA: +My lord, what is your will? + +OTHELLO: +Pray, chuck, come hither. + +DESDEMONA: +What is your pleasure? + +OTHELLO: +Let me see your eyes; +Look in my face. + +DESDEMONA: +What horrible fancy's this? + +OTHELLO: + +DESDEMONA: +Upon my knees, what doth your speech import? +I understand a fury in your words. +But not the words. + +OTHELLO: +Why, what art thou? + +DESDEMONA: +Your wife, my lord; your true +And loyal wife. + +OTHELLO: +Come, swear it, damn thyself +Lest, being like one of heaven, the devils themselves +Should fear to seize thee: therefore be double damn'd: +Swear thou art honest. + +DESDEMONA: +Heaven doth truly know it. + +OTHELLO: +Heaven truly knows that thou art false as hell. + +DESDEMONA: +To whom, my lord? with whom? how am I false? + +OTHELLO: +O Desdemona! away! away! away! + +DESDEMONA: +Alas the heavy day! Why do you weep? +Am I the motive of these tears, my lord? +If haply you my father do suspect +An instrument of this your calling back, +Lay not your blame on me: If you have lost him, +Why, I have lost him too. + +OTHELLO: +Had it pleased heaven +To try me with affliction; had they rain'd +All kinds of sores and shames on my bare head. +Steep'd me in poverty to the very lips, +Given to captivity me and my utmost hopes, +I should have found in some place of my soul +A drop of patience: but, alas, to make me +A fixed figure for the time of scorn +To point his slow unmoving finger at! +Yet could I bear that too; well, very well: +But there, where I have garner'd up my heart, +Where either I must live, or bear no life; +The fountain from the which my current runs, +Or else dries up; to be discarded thence! +Or keep it as a cistern for foul toads +To knot and gender in! Turn thy complexion there, +Patience, thou young and rose-lipp'd cherubin,-- +Ay, there, look grim as hell! + +DESDEMONA: +I hope my noble lord esteems me honest. + +OTHELLO: +O, ay; as summer flies are in the shambles, +That quicken even with blowing. O thou weed, +Who art so lovely fair and smell'st so sweet +That the sense aches at thee, would thou hadst +ne'er been born! + +DESDEMONA: +Alas, what ignorant sin have I committed? + +OTHELLO: +Was this fair paper, this most goodly book, +Made to write 'whore' upon? What committed! +Committed! O thou public commoner! +I should make very forges of my cheeks, +That would to cinders burn up modesty, +Did I but speak thy deeds. What committed! +Heaven stops the nose at it and the moon winks, +The bawdy wind that kisses all it meets +Is hush'd within the hollow mine of earth, +And will not hear it. What committed! +Impudent strumpet! + +DESDEMONA: +By heaven, you do me wrong. + +OTHELLO: +Are you not a strumpet? + +DESDEMONA: +No, as I am a Christian: +If to preserve this vessel for my lord +From any other foul unlawful touch +Be not to be a strumpet, I am none. + +OTHELLO: +What, not a whore? + +DESDEMONA: +No, as I shall be saved. + +OTHELLO: +Is't possible? + +DESDEMONA: +O, heaven forgive us! + +OTHELLO: +I cry you mercy, then: +I took you for that cunning whore of Venice +That married with Othello. +You, mistress, +That have the office opposite to Saint Peter, +And keep the gate of hell! +You, you, ay, you! +We have done our course; there's money for your pains: +I pray you, turn the key and keep our counsel. + +EMILIA: +Alas, what does this gentleman conceive? +How do you, madam? how do you, my good lady? + +DESDEMONA: +'Faith, half asleep. + +EMILIA: +Good madam, what's the matter with my lord? + +DESDEMONA: +With who? + +EMILIA: +Why, with my lord, madam. + +DESDEMONA: +Who is thy lord? + +EMILIA: +He that is yours, sweet lady. + +DESDEMONA: +I have none: do not talk to me, Emilia; +I cannot weep; nor answer have I none, +But what should go by water. Prithee, tonight +Lay on my bed my wedding sheets: remember; +And call thy husband hither. + +EMILIA: +Here's a change indeed! + +DESDEMONA: +'Tis meet I should be used so, very meet. +How have I been behaved, that he might stick +The small'st opinion on my least misuse? + +IAGO: +What is your pleasure, madam? +How is't with you? + +DESDEMONA: +I cannot tell. Those that do teach young babes +Do it with gentle means and easy tasks: +He might have chid me so; for, in good faith, +I am a child to chiding. + +IAGO: +What's the matter, lady? + +EMILIA: +Alas, Iago, my lord hath so bewhored her. +Thrown such despite and heavy terms upon her, +As true hearts cannot bear. + +DESDEMONA: +Am I that name, Iago? + +IAGO: +What name, fair lady? + +DESDEMONA: +Such as she says my lord did say I was. + +EMILIA: +He call'd her whore: a beggar in his drink +Could not have laid such terms upon his callat. + +IAGO: +Why did he so? + +DESDEMONA: +I do not know; I am sure I am none such. + +IAGO: +Do not weep, do not weep. Alas the day! + +EMILIA: +Hath she forsook so many noble matches, +Her father and her country and her friends, +To be call'd whore? would it not make one weep? + +DESDEMONA: +It is my wretched fortune. + +IAGO: +Beshrew him for't! +How comes this trick upon him? + +DESDEMONA: +Nay, heaven doth know. + +EMILIA: +I will be hang'd, if some eternal villain, +Some busy and insinuating rogue, +Some cogging, cozening slave, to get some office, +Have not devised this slander; I'll be hang'd else. + +IAGO: +Fie, there is no such man; it is impossible. + +DESDEMONA: +If any such there be, heaven pardon him! + +EMILIA: +A halter pardon him! and hell gnaw his bones! +Why should he call her whore? who keeps her company? +What place? what time? what form? what likelihood? +The Moor's abused by some most villanous knave, +Some base notorious knave, some scurvy fellow. +O heaven, that such companions thou'ldst unfold, +And put in every honest hand a whip +To lash the rascals naked through the world +Even from the east to the west! + +IAGO: +Speak within door. + +EMILIA: +O, fie upon them! Some such squire he was +That turn'd your wit the seamy side without, +And made you to suspect me with the Moor. + +IAGO: +You are a fool; go to. + +DESDEMONA: +O good Iago, +What shall I do to win my lord again? +Good friend, go to him; for, by this light of heaven, +I know not how I lost him. Here I kneel: +If e'er my will did trespass 'gainst his love, +Either in discourse of thought or actual deed, +Or that mine eyes, mine ears, or any sense, +Delighted them in any other form; +Or that I do not yet, and ever did. +And ever will--though he do shake me off +To beggarly divorcement--love him dearly, +Comfort forswear me! Unkindness may do much; +And his unkindness may defeat my life, +But never taint my love. I cannot say 'whore:' +It does abhor me now I speak the word; +To do the act that might the addition earn +Not the world's mass of vanity could make me. + +IAGO: +I pray you, be content; 'tis but his humour: +The business of the state does him offence, +And he does chide with you. + +DESDEMONA: +If 'twere no other-- + +IAGO: +'Tis but so, I warrant. +Hark, how these instruments summon to supper! +The messengers of Venice stay the meat; +Go in, and weep not; all things shall be well. +How now, Roderigo! + +RODERIGO: +I do not find that thou dealest justly with me. + +IAGO: +What in the contrary? + +RODERIGO: +Every day thou daffest me with some device, Iago; +and rather, as it seems to me now, keepest from me +all conveniency than suppliest me with the least +advantage of hope. I will indeed no longer endure +it, nor am I yet persuaded to put up in peace what +already I have foolishly suffered. + +IAGO: +Will you hear me, Roderigo? + +RODERIGO: +'Faith, I have heard too much, for your words and +performances are no kin together. + +IAGO: +You charge me most unjustly. + +RODERIGO: +With nought but truth. I have wasted myself out of +my means. The jewels you have had from me to +deliver to Desdemona would half have corrupted a +votarist: you have told me she hath received them +and returned me expectations and comforts of sudden +respect and acquaintance, but I find none. + +IAGO: +Well; go to; very well. + +RODERIGO: +Very well! go to! I cannot go to, man; nor 'tis +not very well: nay, I think it is scurvy, and begin +to find myself fobbed in it. + +IAGO: +Very well. + +RODERIGO: +I tell you 'tis not very well. I will make myself +known to Desdemona: if she will return me my +jewels, I will give over my suit and repent my +unlawful solicitation; if not, assure yourself I +will seek satisfaction of you. + +IAGO: +You have said now. + +RODERIGO: +Ay, and said nothing but what I protest intendment of doing. + +IAGO: +Why, now I see there's mettle in thee, and even from +this instant to build on thee a better opinion than +ever before. Give me thy hand, Roderigo: thou hast +taken against me a most just exception; but yet, I +protest, I have dealt most directly in thy affair. + +RODERIGO: +It hath not appeared. + +IAGO: +I grant indeed it hath not appeared, and your +suspicion is not without wit and judgment. But, +Roderigo, if thou hast that in thee indeed, which I +have greater reason to believe now than ever, I mean +purpose, courage and valour, this night show it: if +thou the next night following enjoy not Desdemona, +take me from this world with treachery and devise +engines for my life. + +RODERIGO: +Well, what is it? is it within reason and compass? + +IAGO: +Sir, there is especial commission come from Venice +to depute Cassio in Othello's place. + +RODERIGO: +Is that true? why, then Othello and Desdemona +return again to Venice. + +IAGO: +O, no; he goes into Mauritania and takes away with +him the fair Desdemona, unless his abode be +lingered here by some accident: wherein none can be +so determinate as the removing of Cassio. + +RODERIGO: +How do you mean, removing of him? + +IAGO: +Why, by making him uncapable of Othello's place; +knocking out his brains. + +RODERIGO: +And that you would have me to do? + +IAGO: +Ay, if you dare do yourself a profit and a right. +He sups to-night with a harlotry, and thither will I +go to him: he knows not yet of his horrorable +fortune. If you will watch his going thence, which +I will fashion to fall out between twelve and one, +you may take him at your pleasure: I will be near +to second your attempt, and he shall fall between +us. Come, stand not amazed at it, but go along with +me; I will show you such a necessity in his death +that you shall think yourself bound to put it on +him. It is now high suppertime, and the night grows +to waste: about it. + +RODERIGO: +I will hear further reason for this. + +IAGO: +And you shall be satisfied. + +LODOVICO: +I do beseech you, sir, trouble yourself no further. + +OTHELLO: +O, pardon me: 'twill do me good to walk. + +LODOVICO: +Madam, good night; I humbly thank your ladyship. + +DESDEMONA: +Your honour is most welcome. + +OTHELLO: +Will you walk, sir? +O,--Desdemona,-- + +DESDEMONA: +My lord? + +OTHELLO: +Get you to bed on the instant; I will be returned +forthwith: dismiss your attendant there: look it be done. + +DESDEMONA: +I will, my lord. + +EMILIA: +How goes it now? he looks gentler than he did. + +DESDEMONA: +He says he will return incontinent: +He hath commanded me to go to bed, +And bade me to dismiss you. + +EMILIA: +Dismiss me! + +DESDEMONA: +It was his bidding: therefore, good Emilia,. +Give me my nightly wearing, and adieu: +We must not now displease him. + +EMILIA: +I would you had never seen him! + +DESDEMONA: +So would not I my love doth so approve him, +That even his stubbornness, his cheques, his frowns-- +Prithee, unpin me,--have grace and favour in them. + +EMILIA: +I have laid those sheets you bade me on the bed. + +DESDEMONA: +All's one. Good faith, how foolish are our minds! +If I do die before thee prithee, shroud me +In one of those same sheets. + +EMILIA: +Come, come you talk. + +DESDEMONA: +My mother had a maid call'd Barbara: +She was in love, and he she loved proved mad +And did forsake her: she had a song of 'willow;' +An old thing 'twas, but it express'd her fortune, +And she died singing it: that song to-night +Will not go from my mind; I have much to do, +But to go hang my head all at one side, +And sing it like poor Barbara. Prithee, dispatch. + +EMILIA: +Shall I go fetch your night-gown? + +DESDEMONA: +No, unpin me here. +This Lodovico is a proper man. + +EMILIA: +A very handsome man. + +DESDEMONA: +He speaks well. + +EMILIA: +I know a lady in Venice would have walked barefoot +to Palestine for a touch of his nether lip. + +DESDEMONA: + +EMILIA: +It's the wind. + +DESDEMONA: + +EMILIA: +'Tis neither here nor there. + +DESDEMONA: +I have heard it said so. O, these men, these men! +Dost thou in conscience think,--tell me, Emilia,-- +That there be women do abuse their husbands +In such gross kind? + +EMILIA: +There be some such, no question. + +DESDEMONA: +Wouldst thou do such a deed for all the world? + +EMILIA: +Why, would not you? + +DESDEMONA: +No, by this heavenly light! + +EMILIA: +Nor I neither by this heavenly light; +I might do't as well i' the dark. + +DESDEMONA: +Wouldst thou do such a deed for all the world? + +EMILIA: +The world's a huge thing: it is a great price. +For a small vice. + +DESDEMONA: +In troth, I think thou wouldst not. + +EMILIA: +In troth, I think I should; and undo't when I had +done. Marry, I would not do such a thing for a +joint-ring, nor for measures of lawn, nor for +gowns, petticoats, nor caps, nor any petty +exhibition; but for the whole world,--why, who would +not make her husband a cuckold to make him a +monarch? I should venture purgatory for't. + +DESDEMONA: +Beshrew me, if I would do such a wrong +For the whole world. + +EMILIA: +Why the wrong is but a wrong i' the world: and +having the world for your labour, tis a wrong in your +own world, and you might quickly make it right. + +DESDEMONA: +I do not think there is any such woman. + +EMILIA: +Yes, a dozen; and as many to the vantage as would +store the world they played for. +But I do think it is their husbands' faults +If wives do fall: say that they slack their duties, +And pour our treasures into foreign laps, +Or else break out in peevish jealousies, +Throwing restraint upon us; or say they strike us, +Or scant our former having in despite; +Why, we have galls, and though we have some grace, +Yet have we some revenge. Let husbands know +Their wives have sense like them: they see and smell +And have their palates both for sweet and sour, +As husbands have. What is it that they do +When they change us for others? Is it sport? +I think it is: and doth affection breed it? +I think it doth: is't frailty that thus errs? +It is so too: and have not we affections, +Desires for sport, and frailty, as men have? +Then let them use us well: else let them know, +The ills we do, their ills instruct us so. + +DESDEMONA: +Good night, good night: heaven me such uses send, +Not to pick bad from bad, but by bad mend! + +IAGO: +Here, stand behind this bulk; straight will he come: +Wear thy good rapier bare, and put it home: +Quick, quick; fear nothing; I'll be at thy elbow: +It makes us, or it mars us; think on that, +And fix most firm thy resolution. + +RODERIGO: +Be near at hand; I may miscarry in't. + +IAGO: +Here, at thy hand: be bold, and take thy stand. + +RODERIGO: +I have no great devotion to the deed; +And yet he hath given me satisfying reasons: +'Tis but a man gone. Forth, my sword: he dies. + +IAGO: +I have rubb'd this young quat almost to the sense, +And he grows angry. Now, whether he kill Cassio, +Or Cassio him, or each do kill the other, +Every way makes my gain: live Roderigo, +He calls me to a restitution large +Of gold and jewels that I bobb'd from him, +As gifts to Desdemona; +It must not be: if Cassio do remain, +He hath a daily beauty in his life +That makes me ugly; and, besides, the Moor +May unfold me to him; there stand I in much peril: +No, he must die. But so: I hear him coming. + +RODERIGO: +I know his gait, 'tis he.--Villain, thou diest! + +CASSIO: +That thrust had been mine enemy indeed, +But that my coat is better than thou know'st +I will make proof of thine. + +RODERIGO: +O, I am slain! + +CASSIO: +I am maim'd for ever. Help, ho! murder! murder! + +OTHELLO: +The voice of Cassio: Iago keeps his word. + +RODERIGO: +O, villain that I am! + +OTHELLO: +It is even so. + +CASSIO: +O, help, ho! light! a surgeon! + +OTHELLO: +'Tis he:--O brave Iago, honest and just, +That hast such noble sense of thy friend's wrong! +Thou teachest me. Minion, your dear lies dead, +And your unblest fate hies: strumpet, I come. +Forth of my heart those charms, thine eyes, are blotted; +Thy bed, lust-stain'd, shall with lust's blood be spotted. + +CASSIO: +What, ho! no watch? no passage? murder! murder! + +GRATIANO: +'Tis some mischance; the cry is very direful. + +CASSIO: +O, help! + +LODOVICO: +Hark! + +RODERIGO: +O wretched villain! + +LODOVICO: +Two or three groan: it is a heavy night: +These may be counterfeits: let's think't unsafe +To come in to the cry without more help. + +RODERIGO: +Nobody come? then shall I bleed to death. + +LODOVICO: +Hark! + +GRATIANO: +Here's one comes in his shirt, with light and weapons. + +IAGO: +Who's there? whose noise is this that ones on murder? + +LODOVICO: +We do not know. + +IAGO: +Did not you hear a cry? + +CASSIO: +Here, here! for heaven's sake, help me! + +IAGO: +What's the matter? + +GRATIANO: +This is Othello's ancient, as I take it. + +LODOVICO: +The same indeed; a very valiant fellow. + +IAGO: +What are you here that cry so grievously? + +CASSIO: +Iago? O, I am spoil'd, undone by villains! +Give me some help. + +IAGO: +O me, lieutenant! what villains have done this? + +CASSIO: +I think that one of them is hereabout, +And cannot make away. + +IAGO: +O treacherous villains! +What are you there? come in, and give some help. + +RODERIGO: +O, help me here! + +CASSIO: +That's one of them. + +IAGO: +O murderous slave! O villain! + +RODERIGO: +O damn'd Iago! O inhuman dog! + +IAGO: +Kill men i' the dark!--Where be these bloody thieves?-- +How silent is this town!--Ho! murder! murder!-- +What may you be? are you of good or evil? + +LODOVICO: +As you shall prove us, praise us. + +IAGO: +Signior Lodovico? + +LODOVICO: +He, sir. + +IAGO: +I cry you mercy. Here's Cassio hurt by villains. + +GRATIANO: +Cassio! + +IAGO: +How is't, brother! + +CASSIO: +My leg is cut in two. + +IAGO: +Marry, heaven forbid! +Light, gentlemen; I'll bind it with my shirt. + +BIANCA: +What is the matter, ho? who is't that cried? + +IAGO: +Who is't that cried! + +BIANCA: +O my dear Cassio! my sweet Cassio! O Cassio, +Cassio, Cassio! + +IAGO: +O notable strumpet! Cassio, may you suspect +Who they should be that have thus many led you? + +CASSIO: +No. + +GRATIANO: +I am to find you thus: I have been to seek you. + +IAGO: +Lend me a garter. So. O, for a chair, +To bear him easily hence! + +BIANCA: +Alas, he faints! O Cassio, Cassio, Cassio! + +IAGO: +Gentlemen all, I do suspect this trash +To be a party in this injury. +Patience awhile, good Cassio. Come, come; +Lend me a light. Know we this face or no? +Alas my friend and my dear countryman +Roderigo! no:--yes, sure: O heaven! Roderigo. + +GRATIANO: +What, of Venice? + +IAGO: +Even he, sir; did you know him? + +GRATIANO: +Know him! ay. + +IAGO: +Signior Gratiano? I cry you gentle pardon; +These bloody accidents must excuse my manners, +That so neglected you. + +GRATIANO: +I am glad to see you. + +IAGO: +How do you, Cassio? O, a chair, a chair! + +GRATIANO: +Roderigo! + +IAGO: +He, he 'tis he. +O, that's well said; the chair! + +GRATIANO: +Some good man bear him carefully from hence; +I'll fetch the general's surgeon. +For you, mistress, +Save you your labour. He that lies slain +here, Cassio, +Was my dear friend: what malice was between you? + +CASSIO: +None in the world; nor do I know the man. + +IAGO: + +EMILIA: +'Las, what's the matter? what's the matter, husband? + +IAGO: +Cassio hath here been set on in the dark +By Roderigo and fellows that are scaped: +He's almost slain, and Roderigo dead. + +EMILIA: +Alas, good gentleman! alas, good Cassio! + +IAGO: +This is the fruit of whoring. Prithee, Emilia, +Go know of Cassio where he supp'd to-night. +What, do you shake at that? + +BIANCA: +He supp'd at my house; but I therefore shake not. + +IAGO: +O, did he so? I charge you, go with me. + +EMILIA: +Fie, fie upon thee, strumpet! + +BIANCA: +I am no strumpet; but of life as honest +As you that thus abuse me. + +EMILIA: +As I! foh! fie upon thee! + +IAGO: +Kind gentlemen, let's go see poor Cassio dress'd. +Come, mistress, you must tell's another tale. +Emilia run you to the citadel, +And tell my lord and lady what hath happ'd. +Will you go on? I pray. +This is the night +That either makes me or fordoes me quite. + +OTHELLO: +It is the cause, it is the cause, my soul,-- +Let me not name it to you, you chaste stars!-- +It is the cause. Yet I'll not shed her blood; +Nor scar that whiter skin of hers than snow, +And smooth as monumental alabaster. +Yet she must die, else she'll betray more men. +Put out the light, and then put out the light: +If I quench thee, thou flaming minister, +I can again thy former light restore, +Should I repent me: but once put out thy light, +Thou cunning'st pattern of excelling nature, +I know not where is that Promethean heat +That can thy light relume. When I have pluck'd the rose, +I cannot give it vital growth again. +It must needs wither: I'll smell it on the tree. +Ah balmy breath, that dost almost persuade +Justice to break her sword! One more, one more. +Be thus when thou art dead, and I will kill thee, +And love thee after. One more, and this the last: +So sweet was ne'er so fatal. I must weep, +But they are cruel tears: this sorrow's heavenly; +It strikes where it doth love. She wakes. + +DESDEMONA: +Who's there? Othello? + +OTHELLO: +Ay. Desdemona. + +DESDEMONA: +Will you come to bed, my lord? + +OTHELLO: +Have you pray'd to-night, Desdemona? + +DESDEMONA: +Ay, my lord. + +OTHELLO: +If you bethink yourself of any crime +Unreconciled as yet to heaven and grace, +Solicit for it straight. + +DESDEMONA: +Alas, my lord, what do you mean by that? + +OTHELLO: +Well, do it, and be brief; I will walk by: +I would not kill thy unprepared spirit; +No; heaven forfend! I would not kill thy soul. + +DESDEMONA: +Talk you of killing? + +OTHELLO: +Ay, I do. + +DESDEMONA: +Then heaven +Have mercy on me! + +OTHELLO: +Amen, with all my heart! + +DESDEMONA: +If you say so, I hope you will not kill me. + +OTHELLO: +Hum! + +DESDEMONA: +And yet I fear you; for you are fatal then +When your eyes roll so: why I should fear I know not, +Since guiltiness I know not; but yet I feel I fear. + +OTHELLO: +Think on thy sins. + +DESDEMONA: +They are loves I bear to you. + +OTHELLO: +Ay, and for that thou diest. + +DESDEMONA: +That death's unnatural that kills for loving. +Alas, why gnaw you so your nether lip? +Some bloody passion shakes your very frame: +These are portents; but yet I hope, I hope, +They do not point on me. + +OTHELLO: +Peace, and be still! + +DESDEMONA: +I will so. What's the matter? + +OTHELLO: +That handkerchief which I so loved and gave thee +Thou gavest to Cassio. + +DESDEMONA: +No, by my life and soul! +Send for the man, and ask him. + +OTHELLO: +Sweet soul, take heed, +Take heed of perjury; thou art on thy deathbed. + +DESDEMONA: +Ay, but not yet to die. + +OTHELLO: +Yes, presently: +Therefore confess thee freely of thy sin; +For to deny each article with oath +Cannot remove nor choke the strong conception +That I do groan withal. Thou art to die. + +DESDEMONA: +Then Lord have mercy on me! + +OTHELLO: +I say, amen. + +DESDEMONA: +And have you mercy too! I never did +Offend you in my life; never loved Cassio +But with such general warranty of heaven +As I might love: I never gave him token. + +OTHELLO: +By heaven, I saw my handkerchief in's hand. +O perjured woman! thou dost stone my heart, +And makest me call what I intend to do +A murder, which I thought a sacrifice: +I saw the handkerchief. + +DESDEMONA: +He found it then; +I never gave it him: send for him hither; +Let him confess a truth. + +OTHELLO: +He hath confess'd. + +DESDEMONA: +What, my lord? + +OTHELLO: +That he hath used thee. + +DESDEMONA: +How? unlawfully? + +OTHELLO: +Ay. + +DESDEMONA: +He will not say so. + +OTHELLO: +No, his mouth is stopp'd; +Honest Iago hath ta'en order for't. + +DESDEMONA: +O! my fear interprets: what, is he dead? + +OTHELLO: +Had all his hairs been lives, my great revenge +Had stomach for them all. + +DESDEMONA: +Alas! he is betray'd and I undone. + +OTHELLO: +Out, strumpet! weep'st thou for him to my face? + +DESDEMONA: +O, banish me, my lord, but kill me not! + +OTHELLO: +Down, strumpet! + +DESDEMONA: +Kill me to-morrow: let me live to-night! + +OTHELLO: +Nay, if you strive-- + +DESDEMONA: +But half an hour! + +OTHELLO: +Being done, there is no pause. + +DESDEMONA: +But while I say one prayer! + +OTHELLO: +It is too late. + +EMILIA: + +OTHELLO: +What noise is this? Not dead? not yet quite dead? +I that am cruel am yet merciful; +I would not have thee linger in thy pain: So, so. + +EMILIA: + +OTHELLO: +Who's there? + +EMILIA: + +OTHELLO: +Yes: 'tis Emilia. By and by. She's dead. +'Tis like she comes to speak of Cassio's death.-- +The noise was here. Ha! no more moving? +Still as the grave. Shall she come in? were't good?-- +I think she stirs again:--no. What's best to do? +If she come in, she'll sure speak to my wife: +My wife! my wife! what wife? I have no wife. +O insupportable! O heavy hour! +Methinks it should be now a huge eclipse +Of sun and moon, and that the affrighted globe +Should yawn at alteration. + +EMILIA: + +OTHELLO: +I had forgot thee: O, come in, Emilia; +Soft; by and by. Let me the curtains draw. +Where art thou? +What's the matter with thee now? + +EMILIA: +O, my good lord, yonder's foul murders done! + +OTHELLO: +What, now? + +EMILIA: +But now, my lord. + +OTHELLO: +It is the very error of the moon; +She comes more nearer earth than she was wont, +And makes men mad. + +EMILIA: +Cassio, my lord, hath kill'd a young Venetian +Call'd Roderigo. + +OTHELLO: +Roderigo kill'd! +And Cassio kill'd! + +EMILIA: +No, Cassio is not kill'd. + +OTHELLO: +Not Cassio kill'd! then murder's out of tune, +And sweet revenge grows harsh. + +DESDEMONA: +O, falsely, falsely murder'd! + +EMILIA: +Alas, what cry is that? + +OTHELLO: +That! what? + +EMILIA: +Out, and alas! that was my lady's voice. +Help! help, ho! help! O lady, speak again! +Sweet Desdemona! O sweet mistress, speak! + +DESDEMONA: +A guiltless death I die. + +EMILIA: +O, who hath done this deed? + +DESDEMONA: +Nobody; I myself. Farewell +Commend me to my kind lord: O, farewell! + +OTHELLO: +Why, how should she be murder'd? + +EMILIA: +Alas, who knows? + +OTHELLO: +You heard her say herself, it was not I. + +EMILIA: +She said so: I must needs report the truth. + +OTHELLO: +She's, like a liar, gone to burning hell: +'Twas I that kill'd her. + +EMILIA: +O, the more angel she, +And you the blacker devil! + +OTHELLO: +She turn'd to folly, and she was a whore. + +EMILIA: +Thou dost belie her, and thou art a devil. + +OTHELLO: +She was false as water. + +EMILIA: +Thou art rash as fire, to say +That she was false: O, she was heavenly true! + +OTHELLO: +Cassio did top her; ask thy husband else. +O, I were damn'd beneath all depth in hell, +But that I did proceed upon just grounds +To this extremity. Thy husband knew it all. + +EMILIA: +My husband! + +OTHELLO: +Thy husband. + +EMILIA: +That she was false to wedlock? + +OTHELLO: +Ay, with Cassio. Nay, had she been true, +If heaven would make me such another world +Of one entire and Perfect chrysolite, +I'ld not have sold her for it. + +EMILIA: +My husband! + +OTHELLO: +Ay, 'twas he that told me first: +An honest man he is, and hates the slime +That sticks on filthy deeds. + +EMILIA: +My husband! + +OTHELLO: +What needs this iteration, woman? I say thy husband. + +EMILIA: +O mistress, villany hath made mocks with love, +My husband say that she was false! + +OTHELLO: +He, woman; +I say thy husband: dost understand the word? +My friend, thy husband, honest, honest Iago. + +EMILIA: +If he say so, may his pernicious soul +Rot half a grain a day! he lies to the heart: +She was too fond of her most filthy bargain. + +OTHELLO: +Ha! + +EMILIA: +Do thy worst: +This deed of thine is no more worthy heaven +Than thou wast worthy her. + +OTHELLO: +Peace, you were best. + +EMILIA: +Thou hast not half that power to do me harm +As I have to be hurt. O gull! O dolt! +As ignorant as dirt! thou hast done a deed-- +I care not for thy sword; I'll make thee known, +Though I lost twenty lives.--Help! help, ho! help! +The Moor hath kill'd my mistress! Murder! murder! + +MONTANO: +What is the matter? How now, general! + +EMILIA: +O, are you come, Iago? you have done well, +That men must lay their murders on your neck. + +GRATIANO: +What is the matter? + +EMILIA: +Disprove this villain, if thou be'st a man: +He says thou told'st him that his wife was false: +I know thou didst not, thou'rt not such a villain: +Speak, for my heart is full. + +IAGO: +I told him what I thought, and told no more +Than what he found himself was apt and true. + +EMILIA: +But did you ever tell him she was false? + +IAGO: +I did. + +EMILIA: +You told a lie, an odious, damned lie; +Upon my soul, a lie, a wicked lie. +She false with Cassio!--did you say with Cassio? + +IAGO: +With Cassio, mistress. Go to, charm your tongue. + +EMILIA: +I will not charm my tongue; I am bound to speak: +My mistress here lies murder'd in her bed,-- + +All: +O heavens forfend! + +EMILIA: +And your reports have set the murder on. + +OTHELLO: +Nay, stare not, masters: it is true, indeed. + +GRATIANO: +'Tis a strange truth. + +MONTANO: +O monstrous act! + +EMILIA: +Villany, villany, villany! +I think upon't, I think: I smell't: O villany!-- +I thought so then:--I'll kill myself for grief:-- +O villany, villany! + +IAGO: +What, are you mad? I charge you, get you home. + +EMILIA: +Good gentlemen, let me have leave to speak: +'Tis proper I obey him, but not now. +Perchance, Iago, I will ne'er go home. + +OTHELLO: +O! O! O! + +EMILIA: +Nay, lay thee down and roar; +For thou hast kill'd the sweetest innocent +That e'er did lift up eye. + +OTHELLO: + +GRATIANO: +Poor Desdemona! I am glad thy father's dead: +Thy match was mortal to him, and pure grief +Shore his old thread in twain: did he live now, +This sight would make him do a desperate turn, +Yea, curse his better angel from his side, +And fall to reprobation. + +OTHELLO: +'Tis pitiful; but yet Iago knows +That she with Cassio hath the act of shame +A thousand times committed; Cassio confess'd it: +And she did gratify his amorous works +With that recognizance and pledge of love +Which I first gave her; I saw it in his hand: +It was a handkerchief, an antique token +My father gave my mother. + +EMILIA: +O heaven! O heavenly powers! + +IAGO: +Come, hold your peace. + +EMILIA: +'Twill out, 'twill out: I peace! +No, I will speak as liberal as the north: +Let heaven and men and devils, let them all, +All, all, cry shame against me, yet I'll speak. + +IAGO: +Be wise, and get you home. + +EMILIA: +I will not. + +GRATIANO: +Fie! +Your sword upon a woman? + +EMILIA: +O thou dull Moor! that handkerchief thou speak'st of +I found by fortune and did give my husband; +For often, with a solemn earnestness, +More than indeed belong'd to such a trifle, +He begg'd of me to steal it. + +IAGO: +Villanous whore! + +EMILIA: +She give it Cassio! no, alas! I found it, +And I did give't my husband. + +IAGO: +Filth, thou liest! + +EMILIA: +By heaven, I do not, I do not, gentlemen. +O murderous coxcomb! what should such a fool +Do with so good a woman? + +OTHELLO: +Are there no stones in heaven +But what serve for the thunder?--Precious villain! + +GRATIANO: +The woman falls; sure, he hath kill'd his wife. + +EMILIA: +Ay, ay: O, lay me by my mistress' side. + +GRATIANO: +He's gone, but his wife's kill'd. + +MONTANO: +'Tis a notorious villain. Take you this weapon, +Which I have here recover'd from the Moor: +Come, guard the door without; let him not pass, +But kill him rather. I'll after that same villain, +For 'tis a damned slave. + +OTHELLO: +I am not valiant neither, +But ever puny whipster gets my sword: +But why should honour outlive honesty? +Let it go all. + +EMILIA: +What did thy song bode, lady? +Hark, canst thou hear me? I will play the swan. +And die in music. +Willow, willow, willow,-- +Moor, she was chaste; she loved thee, cruel Moor; +So come my soul to bliss, as I speak true; +So speaking as I think, I die, I die. + +OTHELLO: +I have another weapon in this chamber; +It is a sword of Spain, the ice-brook's temper:-- +O, here it is. Uncle, I must come forth. + +GRATIANO: + +OTHELLO: +Look in upon me then and speak with me, +Or, naked as I am, I will assault thee. + +GRATIANO: +What is the matter? + +OTHELLO: +Behold, I have a weapon; +A better never did itself sustain +Upon a soldier's thigh: I have seen the day, +That, with this little arm and this good sword, +I have made my way through more impediments +Than twenty times your stop: but, O vain boast! +Who can control his fate? 'tis not so now. +Be not afraid, though you do see me weapon'd; +Here is my journey's end, here is my butt, +And very sea-mark of my utmost sail. +Do you go back dismay'd? 'tis a lost fear; +Man but a rush against Othello's breast, +And he retires. Where should Othello go? +Now, how dost thou look now? O ill-starr'd wench! +Pale as thy smock! when we shall meet at compt, +This look of thine will hurl my soul from heaven, +And fiends will snatch at it. Cold, cold, my girl! +Even like thy chastity. O cursed slave! +Whip me, ye devils, +From the possession of this heavenly sight! +Blow me about in winds! roast me in sulphur! +Wash me in steep-down gulfs of liquid fire! +O Desdemona! Desdemona! dead! +Oh! Oh! Oh! + +LODOVICO: +Where is this rash and most unfortunate man? + +OTHELLO: +That's he that was Othello: here I am. + +LODOVICO: +Where is that viper? bring the villain forth. + +OTHELLO: +I look down towards his feet; but that's a fable. +If that thou best a devil, I cannot kill thee. + +LODOVICO: +Wrench his sword from him. + +IAGO: +I bleed, sir; but not kill'd. + +OTHELLO: +I am not sorry neither: I'ld have thee live; +For, in my sense, 'tis happiness to die. + +LODOVICO: +O thou Othello, thou wert once so good, +Fall'n in the practise of a damned slave, +What shall be said to thee? + +OTHELLO: +Why, any thing: +An honourable murderer, if you will; +For nought I did in hate, but all in honour. + +LODOVICO: +This wretch hath part confess'd his villany: +Did you and he consent in Cassio's death? + +OTHELLO: +Ay. + +CASSIO: +Dear general, I never gave you cause. + +OTHELLO: +I do believe it, and I ask your pardon. +Will you, I pray, demand that demi-devil +Why he hath thus ensnared my soul and body? + +IAGO: +Demand me nothing: what you know, you know: +From this time forth I never will speak word. + +LODOVICO: +What, not to pray? + +GRATIANO: +Torments will ope your lips. + +OTHELLO: +Well, thou dost best. + +LODOVICO: +Sir, you shall understand what hath befall'n, +Which, as I think, you know not. Here is a letter +Found in the pocket of the slain Roderigo; +And here another: the one of them imports +The death of Cassio to be undertook +By Roderigo. + +OTHELLO: +O villain! + +CASSIO: +Most heathenish and most gross! + +LODOVICO: +Now here's another discontented paper, +Found in his pocket too; and this, it seems, +Roderigo meant to have sent this damned villain; +But that belike Iago in the interim +Came in and satisfied him. + +OTHELLO: +O the pernicious caitiff! +How came you, Cassio, by that handkerchief +That was my wife's? + +CASSIO: +I found it in my chamber: +And he himself confess'd but even now +That there he dropp'd it for a special purpose +Which wrought to his desire. + +OTHELLO: +O fool! fool! fool! + +CASSIO: +There is besides in Roderigo's letter, +How he upbraids Iago, that he made him +Brave me upon the watch; whereon it came +That I was cast: and even but now he spake, +After long seeming dead, Iago hurt him, +Iago set him on. + +LODOVICO: +You must forsake this room, and go with us: +Your power and your command is taken off, +And Cassio rules in Cyprus. For this slave, +If there be any cunning cruelty +That can torment him much and hold him long, +It shall be his. You shall close prisoner rest, +Till that the nature of your fault be known +To the Venetian state. Come, bring him away. + +OTHELLO: +Soft you; a word or two before you go. +I have done the state some service, and they know't. +No more of that. I pray you, in your letters, +When you shall these unlucky deeds relate, +Speak of me as I am; nothing extenuate, +Nor set down aught in malice: then must you speak +Of one that loved not wisely but too well; +Of one not easily jealous, but being wrought +Perplex'd in the extreme; of one whose hand, +Like the base Indian, threw a pearl away +Richer than all his tribe; of one whose subdued eyes, +Albeit unused to the melting mood, +Drop tears as fast as the Arabian trees +Their medicinal gum. Set you down this; +And say besides, that in Aleppo once, +Where a malignant and a turban'd Turk +Beat a Venetian and traduced the state, +I took by the throat the circumcised dog, +And smote him, thus. + +LODOVICO: +O bloody period! + +GRATIANO: +All that's spoke is marr'd. + +OTHELLO: +I kiss'd thee ere I kill'd thee: no way but this; +Killing myself, to die upon a kiss. + +CASSIO: +This did I fear, but thought he had no weapon; +For he was great of heart. + +LODOVICO: + +KING HENRY IV: +So shaken as we are, so wan with care, +Find we a time for frighted peace to pant, +And breathe short-winded accents of new broils +To be commenced in strands afar remote. +No more the thirsty entrance of this soil +Shall daub her lips with her own children's blood; +Nor more shall trenching war channel her fields, +Nor bruise her flowerets with the armed hoofs +Of hostile paces: those opposed eyes, +Which, like the meteors of a troubled heaven, +All of one nature, of one substance bred, +Did lately meet in the intestine shock +And furious close of civil butchery +Shall now, in mutual well-beseeming ranks, +March all one way and be no more opposed +Against acquaintance, kindred and allies: +The edge of war, like an ill-sheathed knife, +No more shall cut his master. Therefore, friends, +As far as to the sepulchre of Christ, +Whose soldier now, under whose blessed cross +We are impressed and engaged to fight, +Forthwith a power of English shall we levy; +Whose arms were moulded in their mothers' womb +To chase these pagans in those holy fields +Over whose acres walk'd those blessed feet +Which fourteen hundred years ago were nail'd +For our advantage on the bitter cross. +But this our purpose now is twelve month old, +And bootless 'tis to tell you we will go: +Therefore we meet not now. Then let me hear +Of you, my gentle cousin Westmoreland, +What yesternight our council did decree +In forwarding this dear expedience. + +WESTMORELAND: +My liege, this haste was hot in question, +And many limits of the charge set down +But yesternight: when all athwart there came +A post from Wales loaden with heavy news; +Whose worst was, that the noble Mortimer, +Leading the men of Herefordshire to fight +Against the irregular and wild Glendower, +Was by the rude hands of that Welshman taken, +A thousand of his people butchered; +Upon whose dead corpse there was such misuse, +Such beastly shameless transformation, +By those Welshwomen done as may not be +Without much shame retold or spoken of. + +KING HENRY IV: +It seems then that the tidings of this broil +Brake off our business for the Holy Land. + +WESTMORELAND: +This match'd with other did, my gracious lord; +For more uneven and unwelcome news +Came from the north and thus it did import: +On Holy-rood day, the gallant Hotspur there, +Young Harry Percy and brave Archibald, +That ever-valiant and approved Scot, +At Holmedon met, +Where they did spend a sad and bloody hour, +As by discharge of their artillery, +And shape of likelihood, the news was told; +For he that brought them, in the very heat +And pride of their contention did take horse, +Uncertain of the issue any way. + +KING HENRY IV: +Here is a dear, a true industrious friend, +Sir Walter Blunt, new lighted from his horse. +Stain'd with the variation of each soil +Betwixt that Holmedon and this seat of ours; +And he hath brought us smooth and welcome news. +The Earl of Douglas is discomfited: +Ten thousand bold Scots, two and twenty knights, +Balk'd in their own blood did Sir Walter see +On Holmedon's plains. Of prisoners, Hotspur took +Mordake the Earl of Fife, and eldest son +To beaten Douglas; and the Earl of Athol, +Of Murray, Angus, and Menteith: +And is not this an honourable spoil? +A gallant prize? ha, cousin, is it not? + +WESTMORELAND: +In faith, +It is a conquest for a prince to boast of. + +KING HENRY IV: +Yea, there thou makest me sad and makest me sin +In envy that my Lord Northumberland +Should be the father to so blest a son, +A son who is the theme of honour's tongue; +Amongst a grove, the very straightest plant; +Who is sweet Fortune's minion and her pride: +Whilst I, by looking on the praise of him, +See riot and dishonour stain the brow +Of my young Harry. O that it could be proved +That some night-tripping fairy had exchanged +In cradle-clothes our children where they lay, +And call'd mine Percy, his Plantagenet! +Then would I have his Harry, and he mine. +But let him from my thoughts. What think you, coz, +Of this young Percy's pride? the prisoners, +Which he in this adventure hath surprised, +To his own use he keeps; and sends me word, +I shall have none but Mordake Earl of Fife. + +WESTMORELAND: +This is his uncle's teaching; this is Worcester, +Malevolent to you in all aspects; +Which makes him prune himself, and bristle up +The crest of youth against your dignity. + +KING HENRY IV: +But I have sent for him to answer this; +And for this cause awhile we must neglect +Our holy purpose to Jerusalem. +Cousin, on Wednesday next our council we +Will hold at Windsor; so inform the lords: +But come yourself with speed to us again; +For more is to be said and to be done +Than out of anger can be uttered. + +WESTMORELAND: +I will, my liege. + +FALSTAFF: +Now, Hal, what time of day is it, lad? + +PRINCE HENRY: +Thou art so fat-witted, with drinking of old sack +and unbuttoning thee after supper and sleeping upon +benches after noon, that thou hast forgotten to +demand that truly which thou wouldst truly know. +What a devil hast thou to do with the time of the +day? Unless hours were cups of sack and minutes +capons and clocks the tongues of bawds and dials the +signs of leaping-houses and the blessed sun himself +a fair hot wench in flame-coloured taffeta, I see no +reason why thou shouldst be so superfluous to demand +the time of the day. + +FALSTAFF: +Indeed, you come near me now, Hal; for we that take +purses go by the moon and the seven stars, and not +by Phoebus, he,'that wandering knight so fair.' And, +I prithee, sweet wag, when thou art king, as, God +save thy grace,--majesty I should say, for grace +thou wilt have none,-- + +PRINCE HENRY: +What, none? + +FALSTAFF: +No, by my troth, not so much as will serve to +prologue to an egg and butter. + +PRINCE HENRY: +Well, how then? come, roundly, roundly. + +FALSTAFF: +Marry, then, sweet wag, when thou art king, let not +us that are squires of the night's body be called +thieves of the day's beauty: let us be Diana's +foresters, gentlemen of the shade, minions of the +moon; and let men say we be men of good government, +being governed, as the sea is, by our noble and +chaste mistress the moon, under whose countenance we steal. + +PRINCE HENRY: +Thou sayest well, and it holds well too; for the +fortune of us that are the moon's men doth ebb and +flow like the sea, being governed, as the sea is, +by the moon. As, for proof, now: a purse of gold +most resolutely snatched on Monday night and most +dissolutely spent on Tuesday morning; got with +swearing 'Lay by' and spent with crying 'Bring in;' +now in as low an ebb as the foot of the ladder +and by and by in as high a flow as the ridge of the gallows. + +FALSTAFF: +By the Lord, thou sayest true, lad. And is not my +hostess of the tavern a most sweet wench? + +PRINCE HENRY: +As the honey of Hybla, my old lad of the castle. And +is not a buff jerkin a most sweet robe of durance? + +FALSTAFF: +How now, how now, mad wag! what, in thy quips and +thy quiddities? what a plague have I to do with a +buff jerkin? + +PRINCE HENRY: +Why, what a pox have I to do with my hostess of the tavern? + +FALSTAFF: +Well, thou hast called her to a reckoning many a +time and oft. + +PRINCE HENRY: +Did I ever call for thee to pay thy part? + +FALSTAFF: +No; I'll give thee thy due, thou hast paid all there. + +PRINCE HENRY: +Yea, and elsewhere, so far as my coin would stretch; +and where it would not, I have used my credit. + +FALSTAFF: +Yea, and so used it that were it not here apparent +that thou art heir apparent--But, I prithee, sweet +wag, shall there be gallows standing in England when +thou art king? and resolution thus fobbed as it is +with the rusty curb of old father antic the law? Do +not thou, when thou art king, hang a thief. + +PRINCE HENRY: +No; thou shalt. + +FALSTAFF: +Shall I? O rare! By the Lord, I'll be a brave judge. + +PRINCE HENRY: +Thou judgest false already: I mean, thou shalt have +the hanging of the thieves and so become a rare hangman. + +FALSTAFF: +Well, Hal, well; and in some sort it jumps with my +humour as well as waiting in the court, I can tell +you. + +PRINCE HENRY: +For obtaining of suits? + +FALSTAFF: +Yea, for obtaining of suits, whereof the hangman +hath no lean wardrobe. 'Sblood, I am as melancholy +as a gib cat or a lugged bear. + +PRINCE HENRY: +Or an old lion, or a lover's lute. + +FALSTAFF: +Yea, or the drone of a Lincolnshire bagpipe. + +PRINCE HENRY: +What sayest thou to a hare, or the melancholy of +Moor-ditch? + +FALSTAFF: +Thou hast the most unsavoury similes and art indeed +the most comparative, rascalliest, sweet young +prince. But, Hal, I prithee, trouble me no more +with vanity. I would to God thou and I knew where a +commodity of good names were to be bought. An old +lord of the council rated me the other day in the +street about you, sir, but I marked him not; and yet +he talked very wisely, but I regarded him not; and +yet he talked wisely, and in the street too. + +PRINCE HENRY: +Thou didst well; for wisdom cries out in the +streets, and no man regards it. + +FALSTAFF: +O, thou hast damnable iteration and art indeed able +to corrupt a saint. Thou hast done much harm upon +me, Hal; God forgive thee for it! Before I knew +thee, Hal, I knew nothing; and now am I, if a man +should speak truly, little better than one of the +wicked. I must give over this life, and I will give +it over: by the Lord, and I do not, I am a villain: +I'll be damned for never a king's son in +Christendom. + +PRINCE HENRY: +Where shall we take a purse tomorrow, Jack? + +FALSTAFF: +'Zounds, where thou wilt, lad; I'll make one; an I +do not, call me villain and baffle me. + +PRINCE HENRY: +I see a good amendment of life in thee; from praying +to purse-taking. + +FALSTAFF: +Why, Hal, 'tis my vocation, Hal; 'tis no sin for a +man to labour in his vocation. +Poins! Now shall we know if Gadshill have set a +match. O, if men were to be saved by merit, what +hole in hell were hot enough for him? This is the +most omnipotent villain that ever cried 'Stand' to +a true man. + +PRINCE HENRY: +Good morrow, Ned. + +POINS: +Good morrow, sweet Hal. What says Monsieur Remorse? +what says Sir John Sack and Sugar? Jack! how +agrees the devil and thee about thy soul, that thou +soldest him on Good-Friday last for a cup of Madeira +and a cold capon's leg? + +PRINCE HENRY: +Sir John stands to his word, the devil shall have +his bargain; for he was never yet a breaker of +proverbs: he will give the devil his due. + +POINS: +Then art thou damned for keeping thy word with the devil. + +PRINCE HENRY: +Else he had been damned for cozening the devil. + +POINS: +But, my lads, my lads, to-morrow morning, by four +o'clock, early at Gadshill! there are pilgrims going +to Canterbury with rich offerings, and traders +riding to London with fat purses: I have vizards +for you all; you have horses for yourselves: +Gadshill lies to-night in Rochester: I have bespoke +supper to-morrow night in Eastcheap: we may do it +as secure as sleep. If you will go, I will stuff +your purses full of crowns; if you will not, tarry +at home and be hanged. + +FALSTAFF: +Hear ye, Yedward; if I tarry at home and go not, +I'll hang you for going. + +POINS: +You will, chops? + +FALSTAFF: +Hal, wilt thou make one? + +PRINCE HENRY: +Who, I rob? I a thief? not I, by my faith. + +FALSTAFF: +There's neither honesty, manhood, nor good +fellowship in thee, nor thou camest not of the blood +royal, if thou darest not stand for ten shillings. + +PRINCE HENRY: +Well then, once in my days I'll be a madcap. + +FALSTAFF: +Why, that's well said. + +PRINCE HENRY: +Well, come what will, I'll tarry at home. + +FALSTAFF: +By the Lord, I'll be a traitor then, when thou art king. + +PRINCE HENRY: +I care not. + +POINS: +Sir John, I prithee, leave the prince and me alone: +I will lay him down such reasons for this adventure +that he shall go. + +FALSTAFF: +Well, God give thee the spirit of persuasion and him +the ears of profiting, that what thou speakest may +move and what he hears may be believed, that the +true prince may, for recreation sake, prove a false +thief; for the poor abuses of the time want +countenance. Farewell: you shall find me in Eastcheap. + +PRINCE HENRY: +Farewell, thou latter spring! farewell, All-hallown summer! + +POINS: +Now, my good sweet honey lord, ride with us +to-morrow: I have a jest to execute that I cannot +manage alone. Falstaff, Bardolph, Peto and Gadshill +shall rob those men that we have already waylaid: +yourself and I will not be there; and when they +have the booty, if you and I do not rob them, cut +this head off from my shoulders. + +PRINCE HENRY: +How shall we part with them in setting forth? + +POINS: +Why, we will set forth before or after them, and +appoint them a place of meeting, wherein it is at +our pleasure to fail, and then will they adventure +upon the exploit themselves; which they shall have +no sooner achieved, but we'll set upon them. + +PRINCE HENRY: +Yea, but 'tis like that they will know us by our +horses, by our habits and by every other +appointment, to be ourselves. + +POINS: +Tut! our horses they shall not see: I'll tie them +in the wood; our vizards we will change after we +leave them: and, sirrah, I have cases of buckram +for the nonce, to immask our noted outward garments. + +PRINCE HENRY: +Yea, but I doubt they will be too hard for us. + +POINS: +Well, for two of them, I know them to be as +true-bred cowards as ever turned back; and for the +third, if he fight longer than he sees reason, I'll +forswear arms. The virtue of this jest will be, the +incomprehensible lies that this same fat rogue will +tell us when we meet at supper: how thirty, at +least, he fought with; what wards, what blows, what +extremities he endured; and in the reproof of this +lies the jest. + +PRINCE HENRY: +Well, I'll go with thee: provide us all things +necessary and meet me to-morrow night in Eastcheap; +there I'll sup. Farewell. + +POINS: +Farewell, my lord. + +PRINCE HENRY: +I know you all, and will awhile uphold +The unyoked humour of your idleness: +Yet herein will I imitate the sun, +Who doth permit the base contagious clouds +To smother up his beauty from the world, +That, when he please again to be himself, +Being wanted, he may be more wonder'd at, +By breaking through the foul and ugly mists +Of vapours that did seem to strangle him. +If all the year were playing holidays, +To sport would be as tedious as to work; +But when they seldom come, they wish'd for come, +And nothing pleaseth but rare accidents. +So, when this loose behavior I throw off +And pay the debt I never promised, +By how much better than my word I am, +By so much shall I falsify men's hopes; +And like bright metal on a sullen ground, +My reformation, glittering o'er my fault, +Shall show more goodly and attract more eyes +Than that which hath no foil to set it off. +I'll so offend, to make offence a skill; +Redeeming time when men think least I will. + +KING HENRY IV: +My blood hath been too cold and temperate, +Unapt to stir at these indignities, +And you have found me; for accordingly +You tread upon my patience: but be sure +I will from henceforth rather be myself, +Mighty and to be fear'd, than my condition; +Which hath been smooth as oil, soft as young down, +And therefore lost that title of respect +Which the proud soul ne'er pays but to the proud. + +EARL OF WORCESTER: +Our house, my sovereign liege, little deserves +The scourge of greatness to be used on it; +And that same greatness too which our own hands +Have holp to make so portly. + +NORTHUMBERLAND: +My lord.-- + +KING HENRY IV: +Worcester, get thee gone; for I do see +Danger and disobedience in thine eye: +O, sir, your presence is too bold and peremptory, +And majesty might never yet endure +The moody frontier of a servant brow. +You have good leave to leave us: when we need +Your use and counsel, we shall send for you. +You were about to speak. + +NORTHUMBERLAND: +Yea, my good lord. +Those prisoners in your highness' name demanded, +Which Harry Percy here at Holmedon took, +Were, as he says, not with such strength denied +As is deliver'd to your majesty: +Either envy, therefore, or misprison +Is guilty of this fault and not my son. + +HOTSPUR: +My liege, I did deny no prisoners. +But I remember, when the fight was done, +When I was dry with rage and extreme toil, +Breathless and faint, leaning upon my sword, +Came there a certain lord, neat, and trimly dress'd, +Fresh as a bridegroom; and his chin new reap'd +Show'd like a stubble-land at harvest-home; +He was perfumed like a milliner; +And 'twixt his finger and his thumb he held +A pouncet-box, which ever and anon +He gave his nose and took't away again; +Who therewith angry, when it next came there, +Took it in snuff; and still he smiled and talk'd, +And as the soldiers bore dead bodies by, +He call'd them untaught knaves, unmannerly, +To bring a slovenly unhandsome corse +Betwixt the wind and his nobility. +With many holiday and lady terms +He question'd me; amongst the rest, demanded +My prisoners in your majesty's behalf. +I then, all smarting with my wounds being cold, +To be so pester'd with a popinjay, +Out of my grief and my impatience, +Answer'd neglectingly I know not what, +He should or he should not; for he made me mad +To see him shine so brisk and smell so sweet +And talk so like a waiting-gentlewoman +Of guns and drums and wounds,--God save the mark!-- +And telling me the sovereign'st thing on earth +Was parmaceti for an inward bruise; +And that it was great pity, so it was, +This villanous salt-petre should be digg'd +Out of the bowels of the harmless earth, +Which many a good tall fellow had destroy'd +So cowardly; and but for these vile guns, +He would himself have been a soldier. +This bald unjointed chat of his, my lord, +I answer'd indirectly, as I said; +And I beseech you, let not his report +Come current for an accusation +Betwixt my love and your high majesty. + +SIR WALTER BLUNT: +The circumstance consider'd, good my lord, +Whate'er Lord Harry Percy then had said +To such a person and in such a place, +At such a time, with all the rest retold, +May reasonably die and never rise +To do him wrong or any way impeach +What then he said, so he unsay it now. + +KING HENRY IV: +Why, yet he doth deny his prisoners, +But with proviso and exception, +That we at our own charge shall ransom straight +His brother-in-law, the foolish Mortimer; +Who, on my soul, hath wilfully betray'd +The lives of those that he did lead to fight +Against that great magician, damn'd Glendower, +Whose daughter, as we hear, the Earl of March +Hath lately married. Shall our coffers, then, +Be emptied to redeem a traitor home? +Shall we but treason? and indent with fears, +When they have lost and forfeited themselves? +No, on the barren mountains let him starve; +For I shall never hold that man my friend +Whose tongue shall ask me for one penny cost +To ransom home revolted Mortimer. + +HOTSPUR: +Revolted Mortimer! +He never did fall off, my sovereign liege, +But by the chance of war; to prove that true +Needs no more but one tongue for all those wounds, +Those mouthed wounds, which valiantly he took +When on the gentle Severn's sedgy bank, +In single opposition, hand to hand, +He did confound the best part of an hour +In changing hardiment with great Glendower: +Three times they breathed and three times did +they drink, +Upon agreement, of swift Severn's flood; +Who then, affrighted with their bloody looks, +Ran fearfully among the trembling reeds, +And hid his crisp head in the hollow bank, +Bloodstained with these valiant combatants. +Never did base and rotten policy +Colour her working with such deadly wounds; +Nor could the noble Mortimer +Receive so many, and all willingly: +Then let not him be slander'd with revolt. + +KING HENRY IV: +Thou dost belie him, Percy, thou dost belie him; +He never did encounter with Glendower: +I tell thee, +He durst as well have met the devil alone +As Owen Glendower for an enemy. +Art thou not ashamed? But, sirrah, henceforth +Let me not hear you speak of Mortimer: +Send me your prisoners with the speediest means, +Or you shall hear in such a kind from me +As will displease you. My Lord Northumberland, +We licence your departure with your son. +Send us your prisoners, or you will hear of it. + +HOTSPUR: +An if the devil come and roar for them, +I will not send them: I will after straight +And tell him so; for I will ease my heart, +Albeit I make a hazard of my head. + +NORTHUMBERLAND: +What, drunk with choler? stay and pause awhile: +Here comes your uncle. + +HOTSPUR: +Speak of Mortimer! +'Zounds, I will speak of him; and let my soul +Want mercy, if I do not join with him: +Yea, on his part I'll empty all these veins, +And shed my dear blood drop by drop in the dust, +But I will lift the down-trod Mortimer +As high in the air as this unthankful king, +As this ingrate and canker'd Bolingbroke. + +NORTHUMBERLAND: +Brother, the king hath made your nephew mad. + +EARL OF WORCESTER: +Who struck this heat up after I was gone? + +HOTSPUR: +He will, forsooth, have all my prisoners; +And when I urged the ransom once again +Of my wife's brother, then his cheek look'd pale, +And on my face he turn'd an eye of death, +Trembling even at the name of Mortimer. + +EARL OF WORCESTER: +I cannot blame him: was not he proclaim'd +By Richard that dead is the next of blood? + +NORTHUMBERLAND: +He was; I heard the proclamation: +And then it was when the unhappy king, +--Whose wrongs in us God pardon!--did set forth +Upon his Irish expedition; +From whence he intercepted did return +To be deposed and shortly murdered. + +EARL OF WORCESTER: +And for whose death we in the world's wide mouth +Live scandalized and foully spoken of. + +HOTSPUR: +But soft, I pray you; did King Richard then +Proclaim my brother Edmund Mortimer +Heir to the crown? + +NORTHUMBERLAND: +He did; myself did hear it. + +HOTSPUR: +Nay, then I cannot blame his cousin king, +That wished him on the barren mountains starve. +But shall it be that you, that set the crown +Upon the head of this forgetful man +And for his sake wear the detested blot +Of murderous subornation, shall it be, +That you a world of curses undergo, +Being the agents, or base second means, +The cords, the ladder, or the hangman rather? +O, pardon me that I descend so low, +To show the line and the predicament +Wherein you range under this subtle king; +Shall it for shame be spoken in these days, +Or fill up chronicles in time to come, +That men of your nobility and power +Did gage them both in an unjust behalf, +As both of you--God pardon it!--have done, +To put down Richard, that sweet lovely rose, +An plant this thorn, this canker, Bolingbroke? +And shall it in more shame be further spoken, +That you are fool'd, discarded and shook off +By him for whom these shames ye underwent? +No; yet time serves wherein you may redeem +Your banish'd honours and restore yourselves +Into the good thoughts of the world again, +Revenge the jeering and disdain'd contempt +Of this proud king, who studies day and night +To answer all the debt he owes to you +Even with the bloody payment of your deaths: +Therefore, I say-- + +EARL OF WORCESTER: +Peace, cousin, say no more: +And now I will unclasp a secret book, +And to your quick-conceiving discontents +I'll read you matter deep and dangerous, +As full of peril and adventurous spirit +As to o'er-walk a current roaring loud +On the unsteadfast footing of a spear. + +HOTSPUR: +If he fall in, good night! or sink or swim: +Send danger from the east unto the west, +So honour cross it from the north to south, +And let them grapple: O, the blood more stirs +To rouse a lion than to start a hare! + +NORTHUMBERLAND: +Imagination of some great exploit +Drives him beyond the bounds of patience. + +HOTSPUR: +By heaven, methinks it were an easy leap, +To pluck bright honour from the pale-faced moon, +Or dive into the bottom of the deep, +Where fathom-line could never touch the ground, +And pluck up drowned honour by the locks; +So he that doth redeem her thence might wear +Without corrival, all her dignities: +But out upon this half-faced fellowship! + +EARL OF WORCESTER: +He apprehends a world of figures here, +But not the form of what he should attend. +Good cousin, give me audience for a while. + +HOTSPUR: +I cry you mercy. + +EARL OF WORCESTER: +Those same noble Scots +That are your prisoners,-- + +HOTSPUR: +I'll keep them all; +By God, he shall not have a Scot of them; +No, if a Scot would save his soul, he shall not: +I'll keep them, by this hand. + +EARL OF WORCESTER: +You start away +And lend no ear unto my purposes. +Those prisoners you shall keep. + +HOTSPUR: +Nay, I will; that's flat: +He said he would not ransom Mortimer; +Forbad my tongue to speak of Mortimer; +But I will find him when he lies asleep, +And in his ear I'll holla 'Mortimer!' +Nay, +I'll have a starling shall be taught to speak +Nothing but 'Mortimer,' and give it him +To keep his anger still in motion. + +EARL OF WORCESTER: +Hear you, cousin; a word. + +HOTSPUR: +All studies here I solemnly defy, +Save how to gall and pinch this Bolingbroke: +And that same sword-and-buckler Prince of Wales, +But that I think his father loves him not +And would be glad he met with some mischance, +I would have him poison'd with a pot of ale. + +EARL OF WORCESTER: +Farewell, kinsman: I'll talk to you +When you are better temper'd to attend. + +NORTHUMBERLAND: +Why, what a wasp-stung and impatient fool +Art thou to break into this woman's mood, +Tying thine ear to no tongue but thine own! + +HOTSPUR: +Why, look you, I am whipp'd and scourged with rods, +Nettled and stung with pismires, when I hear +Of this vile politician, Bolingbroke. +In Richard's time,--what do you call the place?-- +A plague upon it, it is in Gloucestershire; +'Twas where the madcap duke his uncle kept, +His uncle York; where I first bow'd my knee +Unto this king of smiles, this Bolingbroke,-- +'Sblood!-- +When you and he came back from Ravenspurgh. + +NORTHUMBERLAND: +At Berkley castle. + +HOTSPUR: +You say true: +Why, what a candy deal of courtesy +This fawning greyhound then did proffer me! +Look,'when his infant fortune came to age,' +And 'gentle Harry Percy,' and 'kind cousin;' +O, the devil take such cozeners! God forgive me! +Good uncle, tell your tale; I have done. + +EARL OF WORCESTER: +Nay, if you have not, to it again; +We will stay your leisure. + +HOTSPUR: +I have done, i' faith. + +EARL OF WORCESTER: +Then once more to your Scottish prisoners. +Deliver them up without their ransom straight, +And make the Douglas' son your only mean +For powers in Scotland; which, for divers reasons +Which I shall send you written, be assured, +Will easily be granted. You, my lord, +Your son in Scotland being thus employ'd, +Shall secretly into the bosom creep +Of that same noble prelate, well beloved, +The archbishop. + +HOTSPUR: +Of York, is it not? + +EARL OF WORCESTER: +True; who bears hard +His brother's death at Bristol, the Lord Scroop. +I speak not this in estimation, +As what I think might be, but what I know +Is ruminated, plotted and set down, +And only stays but to behold the face +Of that occasion that shall bring it on. + +HOTSPUR: +I smell it: upon my life, it will do well. + +NORTHUMBERLAND: +Before the game is afoot, thou still let'st slip. + +HOTSPUR: +Why, it cannot choose but be a noble plot; +And then the power of Scotland and of York, +To join with Mortimer, ha? + +EARL OF WORCESTER: +And so they shall. + +HOTSPUR: +In faith, it is exceedingly well aim'd. + +EARL OF WORCESTER: +And 'tis no little reason bids us speed, +To save our heads by raising of a head; +For, bear ourselves as even as we can, +The king will always think him in our debt, +And think we think ourselves unsatisfied, +Till he hath found a time to pay us home: +And see already how he doth begin +To make us strangers to his looks of love. + +HOTSPUR: +He does, he does: we'll be revenged on him. + +EARL OF WORCESTER: +Cousin, farewell: no further go in this +Than I by letters shall direct your course. +When time is ripe, which will be suddenly, +I'll steal to Glendower and Lord Mortimer; +Where you and Douglas and our powers at once, +As I will fashion it, shall happily meet, +To bear our fortunes in our own strong arms, +Which now we hold at much uncertainty. + +NORTHUMBERLAND: +Farewell, good brother: we shall thrive, I trust. + +HOTSPUR: +Uncle, Adieu: O, let the hours be short +Till fields and blows and groans applaud our sport! + +First Carrier: +Heigh-ho! an it be not four by the day, I'll be +hanged: Charles' wain is over the new chimney, and +yet our horse not packed. What, ostler! + +Ostler: + +First Carrier: +I prithee, Tom, beat Cut's saddle, put a few flocks +in the point; poor jade, is wrung in the withers out +of all cess. + +Second Carrier: +Peas and beans are as dank here as a dog, and that +is the next way to give poor jades the bots: this +house is turned upside down since Robin Ostler died. + +First Carrier: +Poor fellow, never joyed since the price of oats +rose; it was the death of him. + +Second Carrier: +I think this be the most villanous house in all +London road for fleas: I am stung like a tench. + +First Carrier: +Like a tench! by the mass, there is ne'er a king +christen could be better bit than I have been since +the first cock. + +Second Carrier: +Why, they will allow us ne'er a jordan, and then we +leak in your chimney; and your chamber-lie breeds +fleas like a loach. + +First Carrier: +What, ostler! come away and be hanged! + +Second Carrier: +I have a gammon of bacon and two razors of ginger, +to be delivered as far as Charing-cross. + +First Carrier: +God's body! the turkeys in my pannier are quite +starved. What, ostler! A plague on thee! hast thou +never an eye in thy head? canst not hear? An +'twere not as good deed as drink, to break the pate +on thee, I am a very villain. Come, and be hanged! +hast thou no faith in thee? + +GADSHILL: +Good morrow, carriers. What's o'clock? + +First Carrier: +I think it be two o'clock. + +GADSHILL: +I pray thee lend me thy lantern, to see my gelding +in the stable. + +First Carrier: +Nay, by God, soft; I know a trick worth two of that, i' faith. + +GADSHILL: +I pray thee, lend me thine. + +Second Carrier: +Ay, when? can'st tell? Lend me thy lantern, quoth +he? marry, I'll see thee hanged first. + +GADSHILL: +Sirrah carrier, what time do you mean to come to London? + +Second Carrier: +Time enough to go to bed with a candle, I warrant +thee. Come, neighbour Mugs, we'll call up the +gentleman: they will along with company, for they +have great charge. + +GADSHILL: +What, ho! chamberlain! + +Chamberlain: + +GADSHILL: +That's even as fair as--at hand, quoth the +chamberlain; for thou variest no more from picking +of purses than giving direction doth from labouring; +thou layest the plot how. + +Chamberlain: +Good morrow, Master Gadshill. It holds current that +I told you yesternight: there's a franklin in the +wild of Kent hath brought three hundred marks with +him in gold: I heard him tell it to one of his +company last night at supper; a kind of auditor; one +that hath abundance of charge too, God knows what. +They are up already, and call for eggs and butter; +they will away presently. + +GADSHILL: +Sirrah, if they meet not with Saint Nicholas' +clerks, I'll give thee this neck. + +Chamberlain: +No, I'll none of it: I pray thee keep that for the +hangman; for I know thou worshippest St. Nicholas +as truly as a man of falsehood may. + +GADSHILL: +What talkest thou to me of the hangman? if I hang, +I'll make a fat pair of gallows; for if I hang, old +Sir John hangs with me, and thou knowest he is no +starveling. Tut! there are other Trojans that thou +dreamest not of, the which for sport sake are +content to do the profession some grace; that would, +if matters should be looked into, for their own +credit sake, make all whole. I am joined with no +foot-land rakers, no long-staff sixpenny strikers, +none of these mad mustachio purple-hued malt-worms; +but with nobility and tranquillity, burgomasters and +great oneyers, such as can hold in, such as will +strike sooner than speak, and speak sooner than +drink, and drink sooner than pray: and yet, zounds, +I lie; for they pray continually to their saint, the +commonwealth; or rather, not pray to her, but prey +on her, for they ride up and down on her and make +her their boots. + +Chamberlain: +What, the commonwealth their boots? will she hold +out water in foul way? + +GADSHILL: +She will, she will; justice hath liquored her. We +steal as in a castle, cocksure; we have the receipt +of fern-seed, we walk invisible. + +Chamberlain: +Nay, by my faith, I think you are more beholding to +the night than to fern-seed for your walking invisible. + +GADSHILL: +Give me thy hand: thou shalt have a share in our +purchase, as I am a true man. + +Chamberlain: +Nay, rather let me have it, as you are a false thief. + +GADSHILL: +Go to; 'homo' is a common name to all men. Bid the +ostler bring my gelding out of the stable. Farewell, +you muddy knave. + +POINS: +Come, shelter, shelter: I have removed Falstaff's +horse, and he frets like a gummed velvet. + +PRINCE HENRY: +Stand close. + +FALSTAFF: +Poins! Poins, and be hanged! Poins! + +PRINCE HENRY: +Peace, ye fat-kidneyed rascal! what a brawling dost +thou keep! + +FALSTAFF: +Where's Poins, Hal? + +PRINCE HENRY: +He is walked up to the top of the hill: I'll go seek him. + +FALSTAFF: +I am accursed to rob in that thief's company: the +rascal hath removed my horse, and tied him I know +not where. If I travel but four foot by the squier +further afoot, I shall break my wind. Well, I doubt +not but to die a fair death for all this, if I +'scape hanging for killing that rogue. I have +forsworn his company hourly any time this two and +twenty years, and yet I am bewitched with the +rogue's company. If the rascal hath not given me +medicines to make me love him, I'll be hanged; it +could not be else: I have drunk medicines. Poins! +Hal! a plague upon you both! Bardolph! Peto! +I'll starve ere I'll rob a foot further. An 'twere +not as good a deed as drink, to turn true man and to +leave these rogues, I am the veriest varlet that +ever chewed with a tooth. Eight yards of uneven +ground is threescore and ten miles afoot with me; +and the stony-hearted villains know it well enough: +a plague upon it when thieves cannot be true one to another! +Whew! A plague upon you all! Give me my horse, you +rogues; give me my horse, and be hanged! + +PRINCE HENRY: +Peace, ye fat-guts! lie down; lay thine ear close +to the ground and list if thou canst hear the tread +of travellers. + +FALSTAFF: +Have you any levers to lift me up again, being down? +'Sblood, I'll not bear mine own flesh so far afoot +again for all the coin in thy father's exchequer. +What a plague mean ye to colt me thus? + +PRINCE HENRY: +Thou liest; thou art not colted, thou art uncolted. + +FALSTAFF: +I prithee, good Prince Hal, help me to my horse, +good king's son. + +PRINCE HENRY: +Out, ye rogue! shall I be your ostler? + +FALSTAFF: +Go, hang thyself in thine own heir-apparent +garters! If I be ta'en, I'll peach for this. An I +have not ballads made on you all and sung to filthy +tunes, let a cup of sack be my poison: when a jest +is so forward, and afoot too! I hate it. + +GADSHILL: +Stand. + +FALSTAFF: +So I do, against my will. + +POINS: +O, 'tis our setter: I know his voice. Bardolph, +what news? + +BARDOLPH: +Case ye, case ye; on with your vizards: there 's +money of the king's coming down the hill; 'tis going +to the king's exchequer. + +FALSTAFF: +You lie, ye rogue; 'tis going to the king's tavern. + +GADSHILL: +There's enough to make us all. + +FALSTAFF: +To be hanged. + +PRINCE HENRY: +Sirs, you four shall front them in the narrow lane; +Ned Poins and I will walk lower: if they 'scape +from your encounter, then they light on us. + +PETO: +How many be there of them? + +GADSHILL: +Some eight or ten. + +FALSTAFF: +'Zounds, will they not rob us? + +PRINCE HENRY: +What, a coward, Sir John Paunch? + +FALSTAFF: +Indeed, I am not John of Gaunt, your grandfather; +but yet no coward, Hal. + +PRINCE HENRY: +Well, we leave that to the proof. + +POINS: +Sirrah Jack, thy horse stands behind the hedge: +when thou needest him, there thou shalt find him. +Farewell, and stand fast. + +FALSTAFF: +Now cannot I strike him, if I should be hanged. + +PRINCE HENRY: +Ned, where are our disguises? + +POINS: +Here, hard by: stand close. + +FALSTAFF: +Now, my masters, happy man be his dole, say I: +every man to his business. + +First Traveller: +Come, neighbour: the boy shall lead our horses down +the hill; we'll walk afoot awhile, and ease our legs. + +Thieves: +Stand! + +Travellers: +Jesus bless us! + +FALSTAFF: +Strike; down with them; cut the villains' throats: +ah! whoreson caterpillars! bacon-fed knaves! they +hate us youth: down with them: fleece them. + +Travellers: +O, we are undone, both we and ours for ever! + +FALSTAFF: +Hang ye, gorbellied knaves, are ye undone? No, ye +fat chuffs: I would your store were here! On, +bacons, on! What, ye knaves! young men must live. +You are Grand-jurors, are ye? we'll jure ye, 'faith. + +PRINCE HENRY: +The thieves have bound the true men. Now could thou +and I rob the thieves and go merrily to London, it +would be argument for a week, laughter for a month +and a good jest for ever. + +POINS: +Stand close; I hear them coming. + +FALSTAFF: +Come, my masters, let us share, and then to horse +before day. An the Prince and Poins be not two +arrant cowards, there's no equity stirring: there's +no more valour in that Poins than in a wild-duck. + +PRINCE HENRY: +Your money! + +POINS: +Villains! + +PRINCE HENRY: +Got with much ease. Now merrily to horse: +The thieves are all scatter'd and possess'd with fear +So strongly that they dare not meet each other; +Each takes his fellow for an officer. +Away, good Ned. Falstaff sweats to death, +And lards the lean earth as he walks along: +Were 't not for laughing, I should pity him. + +POINS: +How the rogue roar'd! + +HOTSPUR: +'But for mine own part, my lord, I could be well +contented to be there, in respect of the love I bear +your house.' He could be contented: why is he not, +then? In respect of the love he bears our house: +he shows in this, he loves his own barn better than +he loves our house. Let me see some more. 'The +purpose you undertake is dangerous;'--why, that's +certain: 'tis dangerous to take a cold, to sleep, to +drink; but I tell you, my lord fool, out of this +nettle, danger, we pluck this flower, safety. 'The +purpose you undertake is dangerous; the friends you +have named uncertain; the time itself unsorted; and +your whole plot too light for the counterpoise of so +great an opposition.' Say you so, say you so? I say +unto you again, you are a shallow cowardly hind, and +you lie. What a lack-brain is this! By the Lord, +our plot is a good plot as ever was laid; our +friends true and constant: a good plot, good +friends, and full of expectation; an excellent plot, +very good friends. What a frosty-spirited rogue is +this! Why, my lord of York commends the plot and the +general course of action. 'Zounds, an I were now by +this rascal, I could brain him with his lady's fan. +Is there not my father, my uncle and myself? lord +Edmund Mortimer, My lord of York and Owen Glendower? +is there not besides the Douglas? have I not all +their letters to meet me in arms by the ninth of the +next month? and are they not some of them set +forward already? What a pagan rascal is this! an +infidel! Ha! you shall see now in very sincerity +of fear and cold heart, will he to the king and lay +open all our proceedings. O, I could divide myself +and go to buffets, for moving such a dish of +skim milk with so honourable an action! Hang him! +let him tell the king: we are prepared. I will set +forward to-night. +How now, Kate! I must leave you within these two hours. + +LADY PERCY: +O, my good lord, why are you thus alone? +For what offence have I this fortnight been +A banish'd woman from my Harry's bed? +Tell me, sweet lord, what is't that takes from thee +Thy stomach, pleasure and thy golden sleep? +Why dost thou bend thine eyes upon the earth, +And start so often when thou sit'st alone? +Why hast thou lost the fresh blood in thy cheeks; +And given my treasures and my rights of thee +To thick-eyed musing and cursed melancholy? +In thy faint slumbers I by thee have watch'd, +And heard thee murmur tales of iron wars; +Speak terms of manage to thy bounding steed; +Cry 'Courage! to the field!' And thou hast talk'd +Of sallies and retires, of trenches, tents, +Of palisadoes, frontiers, parapets, +Of basilisks, of cannon, culverin, +Of prisoners' ransom and of soldiers slain, +And all the currents of a heady fight. +Thy spirit within thee hath been so at war +And thus hath so bestirr'd thee in thy sleep, +That beads of sweat have stood upon thy brow +Like bubbles in a late-disturbed stream; +And in thy face strange motions have appear'd, +Such as we see when men restrain their breath +On some great sudden hest. O, what portents are these? +Some heavy business hath my lord in hand, +And I must know it, else he loves me not. + +HOTSPUR: +What, ho! +Is Gilliams with the packet gone? + +Servant: +He is, my lord, an hour ago. + +HOTSPUR: +Hath Butler brought those horses from the sheriff? + +Servant: +One horse, my lord, he brought even now. + +HOTSPUR: +What horse? a roan, a crop-ear, is it not? + +Servant: +It is, my lord. + +HOTSPUR: +That roan shall by my throne. +Well, I will back him straight: O esperance! +Bid Butler lead him forth into the park. + +LADY PERCY: +But hear you, my lord. + +HOTSPUR: +What say'st thou, my lady? + +LADY PERCY: +What is it carries you away? + +HOTSPUR: +Why, my horse, my love, my horse. + +LADY PERCY: +Out, you mad-headed ape! +A weasel hath not such a deal of spleen +As you are toss'd with. In faith, +I'll know your business, Harry, that I will. +I fear my brother Mortimer doth stir +About his title, and hath sent for you +To line his enterprise: but if you go,-- + +HOTSPUR: +So far afoot, I shall be weary, love. + +LADY PERCY: +Come, come, you paraquito, answer me +Directly unto this question that I ask: +In faith, I'll break thy little finger, Harry, +An if thou wilt not tell me all things true. + +HOTSPUR: +Away, +Away, you trifler! Love! I love thee not, +I care not for thee, Kate: this is no world +To play with mammets and to tilt with lips: +We must have bloody noses and crack'd crowns, +And pass them current too. God's me, my horse! +What say'st thou, Kate? what would'st thou +have with me? + +LADY PERCY: +Do you not love me? do you not, indeed? +Well, do not then; for since you love me not, +I will not love myself. Do you not love me? +Nay, tell me if you speak in jest or no. + +HOTSPUR: +Come, wilt thou see me ride? +And when I am on horseback, I will swear +I love thee infinitely. But hark you, Kate; +I must not have you henceforth question me +Whither I go, nor reason whereabout: +Whither I must, I must; and, to conclude, +This evening must I leave you, gentle Kate. +I know you wise, but yet no farther wise +Than Harry Percy's wife: constant you are, +But yet a woman: and for secrecy, +No lady closer; for I well believe +Thou wilt not utter what thou dost not know; +And so far will I trust thee, gentle Kate. + +LADY PERCY: +How! so far? + +HOTSPUR: +Not an inch further. But hark you, Kate: +Whither I go, thither shall you go too; +To-day will I set forth, to-morrow you. +Will this content you, Kate? + +LADY PERCY: +It must of force. + +PRINCE HENRY: +Ned, prithee, come out of that fat room, and lend me +thy hand to laugh a little. + +POINS: +Where hast been, Hal? + +PRINCE HENRY: +With three or four loggerheads amongst three or four +score hogsheads. I have sounded the very +base-string of humility. Sirrah, I am sworn brother +to a leash of drawers; and can call them all by +their christen names, as Tom, Dick, and Francis. +They take it already upon their salvation, that +though I be but the prince of Wales, yet I am king +of courtesy; and tell me flatly I am no proud Jack, +like Falstaff, but a Corinthian, a lad of mettle, a +good boy, by the Lord, so they call me, and when I +am king of England, I shall command all the good +lads in Eastcheap. They call drinking deep, dyeing +scarlet; and when you breathe in your watering, they +cry 'hem!' and bid you play it off. To conclude, I +am so good a proficient in one quarter of an hour, +that I can drink with any tinker in his own language +during my life. I tell thee, Ned, thou hast lost +much honour, that thou wert not with me in this sweet +action. But, sweet Ned,--to sweeten which name of +Ned, I give thee this pennyworth of sugar, clapped +even now into my hand by an under-skinker, one that +never spake other English in his life than 'Eight +shillings and sixpence' and 'You are welcome,' with +this shrill addition, 'Anon, anon, sir! Score a pint +of bastard in the Half-Moon,' or so. But, Ned, to +drive away the time till Falstaff come, I prithee, +do thou stand in some by-room, while I question my +puny drawer to what end he gave me the sugar; and do +thou never leave calling 'Francis,' that his tale +to me may be nothing but 'Anon.' Step aside, and +I'll show thee a precedent. + +POINS: +Francis! + +PRINCE HENRY: +Thou art perfect. + +POINS: +Francis! + +FRANCIS: +Anon, anon, sir. Look down into the Pomgarnet, Ralph. + +PRINCE HENRY: +Come hither, Francis. + +FRANCIS: +My lord? + +PRINCE HENRY: +How long hast thou to serve, Francis? + +FRANCIS: +Forsooth, five years, and as much as to-- + +POINS: + +FRANCIS: +Anon, anon, sir. + +PRINCE HENRY: +Five year! by'r lady, a long lease for the clinking +of pewter. But, Francis, darest thou be so valiant +as to play the coward with thy indenture and show it +a fair pair of heels and run from it? + +FRANCIS: +O Lord, sir, I'll be sworn upon all the books in +England, I could find in my heart. + +POINS: + +FRANCIS: +Anon, sir. + +PRINCE HENRY: +How old art thou, Francis? + +FRANCIS: +Let me see--about Michaelmas next I shall be-- + +POINS: + +FRANCIS: +Anon, sir. Pray stay a little, my lord. + +PRINCE HENRY: +Nay, but hark you, Francis: for the sugar thou +gavest me,'twas a pennyworth, wast't not? + +FRANCIS: +O Lord, I would it had been two! + +PRINCE HENRY: +I will give thee for it a thousand pound: ask me +when thou wilt, and thou shalt have it. + +POINS: + +FRANCIS: +Anon, anon. + +PRINCE HENRY: +Anon, Francis? No, Francis; but to-morrow, Francis; +or, Francis, o' Thursday; or indeed, Francis, when +thou wilt. But, Francis! + +FRANCIS: +My lord? + +PRINCE HENRY: +Wilt thou rob this leathern jerkin, crystal-button, +not-pated, agate-ring, puke-stocking, caddis-garter, +smooth-tongue, Spanish-pouch,-- + +FRANCIS: +O Lord, sir, who do you mean? + +PRINCE HENRY: +Why, then, your brown bastard is your only drink; +for look you, Francis, your white canvas doublet +will sully: in Barbary, sir, it cannot come to so much. + +FRANCIS: +What, sir? + +POINS: + +PRINCE HENRY: +Away, you rogue! dost thou not hear them call? + +Vintner: +What, standest thou still, and hearest such a +calling? Look to the guests within. +My lord, old Sir John, with half-a-dozen more, are +at the door: shall I let them in? + +PRINCE HENRY: +Let them alone awhile, and then open the door. +Poins! + +POINS: +Anon, anon, sir. + +PRINCE HENRY: +Sirrah, Falstaff and the rest of the thieves are at +the door: shall we be merry? + +POINS: +As merry as crickets, my lad. But hark ye; what +cunning match have you made with this jest of the +drawer? come, what's the issue? + +PRINCE HENRY: +I am now of all humours that have showed themselves +humours since the old days of goodman Adam to the +pupil age of this present twelve o'clock at midnight. +What's o'clock, Francis? + +FRANCIS: +Anon, anon, sir. + +PRINCE HENRY: +That ever this fellow should have fewer words than a +parrot, and yet the son of a woman! His industry is +upstairs and downstairs; his eloquence the parcel of +a reckoning. I am not yet of Percy's mind, the +Hotspur of the north; he that kills me some six or +seven dozen of Scots at a breakfast, washes his +hands, and says to his wife 'Fie upon this quiet +life! I want work.' 'O my sweet Harry,' says she, +'how many hast thou killed to-day?' 'Give my roan +horse a drench,' says he; and answers 'Some +fourteen,' an hour after; 'a trifle, a trifle.' I +prithee, call in Falstaff: I'll play Percy, and +that damned brawn shall play Dame Mortimer his +wife. 'Rivo!' says the drunkard. Call in ribs, call in tallow. + +POINS: +Welcome, Jack: where hast thou been? + +FALSTAFF: +A plague of all cowards, I say, and a vengeance too! +marry, and amen! Give me a cup of sack, boy. Ere I +lead this life long, I'll sew nether stocks and mend +them and foot them too. A plague of all cowards! +Give me a cup of sack, rogue. Is there no virtue extant? + +PRINCE HENRY: +Didst thou never see Titan kiss a dish of butter? +pitiful-hearted Titan, that melted at the sweet tale +of the sun's! if thou didst, then behold that compound. + +FALSTAFF: +You rogue, here's lime in this sack too: there is +nothing but roguery to be found in villanous man: +yet a coward is worse than a cup of sack with lime +in it. A villanous coward! Go thy ways, old Jack; +die when thou wilt, if manhood, good manhood, be +not forgot upon the face of the earth, then am I a +shotten herring. There live not three good men +unhanged in England; and one of them is fat and +grows old: God help the while! a bad world, I say. +I would I were a weaver; I could sing psalms or any +thing. A plague of all cowards, I say still. + +PRINCE HENRY: +How now, wool-sack! what mutter you? + +FALSTAFF: +A king's son! If I do not beat thee out of thy +kingdom with a dagger of lath, and drive all thy +subjects afore thee like a flock of wild-geese, +I'll never wear hair on my face more. You Prince of Wales! + +PRINCE HENRY: +Why, you whoreson round man, what's the matter? + +FALSTAFF: +Are not you a coward? answer me to that: and Poins there? + +POINS: +'Zounds, ye fat paunch, an ye call me coward, by the +Lord, I'll stab thee. + +FALSTAFF: +I call thee coward! I'll see thee damned ere I call +thee coward: but I would give a thousand pound I +could run as fast as thou canst. You are straight +enough in the shoulders, you care not who sees your +back: call you that backing of your friends? A +plague upon such backing! give me them that will +face me. Give me a cup of sack: I am a rogue, if I +drunk to-day. + +PRINCE HENRY: +O villain! thy lips are scarce wiped since thou +drunkest last. + +FALSTAFF: +All's one for that. +A plague of all cowards, still say I. + +PRINCE HENRY: +What's the matter? + +FALSTAFF: +What's the matter! there be four of us here have +ta'en a thousand pound this day morning. + +PRINCE HENRY: +Where is it, Jack? where is it? + +FALSTAFF: +Where is it! taken from us it is: a hundred upon +poor four of us. + +PRINCE HENRY: +What, a hundred, man? + +FALSTAFF: +I am a rogue, if I were not at half-sword with a +dozen of them two hours together. I have 'scaped by +miracle. I am eight times thrust through the +doublet, four through the hose; my buckler cut +through and through; my sword hacked like a +hand-saw--ecce signum! I never dealt better since +I was a man: all would not do. A plague of all +cowards! Let them speak: if they speak more or +less than truth, they are villains and the sons of darkness. + +PRINCE HENRY: +Speak, sirs; how was it? + +GADSHILL: +We four set upon some dozen-- + +FALSTAFF: +Sixteen at least, my lord. + +GADSHILL: +And bound them. + +PETO: +No, no, they were not bound. + +FALSTAFF: +You rogue, they were bound, every man of them; or I +am a Jew else, an Ebrew Jew. + +GADSHILL: +As we were sharing, some six or seven fresh men set upon us-- + +FALSTAFF: +And unbound the rest, and then come in the other. + +PRINCE HENRY: +What, fought you with them all? + +FALSTAFF: +All! I know not what you call all; but if I fought +not with fifty of them, I am a bunch of radish: if +there were not two or three and fifty upon poor old +Jack, then am I no two-legged creature. + +PRINCE HENRY: +Pray God you have not murdered some of them. + +FALSTAFF: +Nay, that's past praying for: I have peppered two +of them; two I am sure I have paid, two rogues +in buckram suits. I tell thee what, Hal, if I tell +thee a lie, spit in my face, call me horse. Thou +knowest my old ward; here I lay and thus I bore my +point. Four rogues in buckram let drive at me-- + +PRINCE HENRY: +What, four? thou saidst but two even now. + +FALSTAFF: +Four, Hal; I told thee four. + +POINS: +Ay, ay, he said four. + +FALSTAFF: +These four came all a-front, and mainly thrust at +me. I made me no more ado but took all their seven +points in my target, thus. + +PRINCE HENRY: +Seven? why, there were but four even now. + +FALSTAFF: +In buckram? + +POINS: +Ay, four, in buckram suits. + +FALSTAFF: +Seven, by these hilts, or I am a villain else. + +PRINCE HENRY: +Prithee, let him alone; we shall have more anon. + +FALSTAFF: +Dost thou hear me, Hal? + +PRINCE HENRY: +Ay, and mark thee too, Jack. + +FALSTAFF: +Do so, for it is worth the listening to. These nine +in buckram that I told thee of-- + +PRINCE HENRY: +So, two more already. + +FALSTAFF: +Their points being broken,-- + +POINS: +Down fell their hose. + +FALSTAFF: +Began to give me ground: but I followed me close, +came in foot and hand; and with a thought seven of +the eleven I paid. + +PRINCE HENRY: +O monstrous! eleven buckram men grown out of two! + +FALSTAFF: +But, as the devil would have it, three misbegotten +knaves in Kendal green came at my back and let drive +at me; for it was so dark, Hal, that thou couldst +not see thy hand. + +PRINCE HENRY: +These lies are like their father that begets them; +gross as a mountain, open, palpable. Why, thou +clay-brained guts, thou knotty-pated fool, thou +whoreson, obscene, grease tallow-catch,-- + +FALSTAFF: +What, art thou mad? art thou mad? is not the truth +the truth? + +PRINCE HENRY: +Why, how couldst thou know these men in Kendal +green, when it was so dark thou couldst not see thy +hand? come, tell us your reason: what sayest thou to this? + +POINS: +Come, your reason, Jack, your reason. + +FALSTAFF: +What, upon compulsion? 'Zounds, an I were at the +strappado, or all the racks in the world, I would +not tell you on compulsion. Give you a reason on +compulsion! If reasons were as plentiful as +blackberries, I would give no man a reason upon +compulsion, I. + +PRINCE HENRY: +I'll be no longer guilty of this sin; this sanguine +coward, this bed-presser, this horseback-breaker, +this huge hill of flesh,-- + +FALSTAFF: +'Sblood, you starveling, you elf-skin, you dried +neat's tongue, you bull's pizzle, you stock-fish! O +for breath to utter what is like thee! you +tailor's-yard, you sheath, you bowcase; you vile +standing-tuck,-- + +PRINCE HENRY: +Well, breathe awhile, and then to it again: and +when thou hast tired thyself in base comparisons, +hear me speak but this. + +POINS: +Mark, Jack. + +PRINCE HENRY: +We two saw you four set on four and bound them, and +were masters of their wealth. Mark now, how a plain +tale shall put you down. Then did we two set on you +four; and, with a word, out-faced you from your +prize, and have it; yea, and can show it you here in +the house: and, Falstaff, you carried your guts +away as nimbly, with as quick dexterity, and roared +for mercy and still run and roared, as ever I heard +bull-calf. What a slave art thou, to hack thy sword +as thou hast done, and then say it was in fight! +What trick, what device, what starting-hole, canst +thou now find out to hide thee from this open and +apparent shame? + +POINS: +Come, let's hear, Jack; what trick hast thou now? + +FALSTAFF: +By the Lord, I knew ye as well as he that made ye. +Why, hear you, my masters: was it for me to kill the +heir-apparent? should I turn upon the true prince? +why, thou knowest I am as valiant as Hercules: but +beware instinct; the lion will not touch the true +prince. Instinct is a great matter; I was now a +coward on instinct. I shall think the better of +myself and thee during my life; I for a valiant +lion, and thou for a true prince. But, by the Lord, +lads, I am glad you have the money. Hostess, clap +to the doors: watch to-night, pray to-morrow. +Gallants, lads, boys, hearts of gold, all the titles +of good fellowship come to you! What, shall we be +merry? shall we have a play extempore? + +PRINCE HENRY: +Content; and the argument shall be thy running away. + +FALSTAFF: +Ah, no more of that, Hal, an thou lovest me! + +Hostess: +O Jesu, my lord the prince! + +PRINCE HENRY: +How now, my lady the hostess! what sayest thou to +me? + +Hostess: +Marry, my lord, there is a nobleman of the court at +door would speak with you: he says he comes from +your father. + +PRINCE HENRY: +Give him as much as will make him a royal man, and +send him back again to my mother. + +FALSTAFF: +What manner of man is he? + +Hostess: +An old man. + +FALSTAFF: +What doth gravity out of his bed at midnight? Shall +I give him his answer? + +PRINCE HENRY: +Prithee, do, Jack. + +FALSTAFF: +'Faith, and I'll send him packing. + +PRINCE HENRY: +Now, sirs: by'r lady, you fought fair; so did you, +Peto; so did you, Bardolph: you are lions too, you +ran away upon instinct, you will not touch the true +prince; no, fie! + +BARDOLPH: +'Faith, I ran when I saw others run. + +PRINCE HENRY: +'Faith, tell me now in earnest, how came Falstaff's +sword so hacked? + +PETO: +Why, he hacked it with his dagger, and said he would +swear truth out of England but he would make you +believe it was done in fight, and persuaded us to do the like. + +BARDOLPH: +Yea, and to tickle our noses with spear-grass to +make them bleed, and then to beslubber our garments +with it and swear it was the blood of true men. I +did that I did not this seven year before, I blushed +to hear his monstrous devices. + +PRINCE HENRY: +O villain, thou stolest a cup of sack eighteen years +ago, and wert taken with the manner, and ever since +thou hast blushed extempore. Thou hadst fire and +sword on thy side, and yet thou rannest away: what +instinct hadst thou for it? + +BARDOLPH: +My lord, do you see these meteors? do you behold +these exhalations? + +PRINCE HENRY: +I do. + +BARDOLPH: +What think you they portend? + +PRINCE HENRY: +Hot livers and cold purses. + +BARDOLPH: +Choler, my lord, if rightly taken. + +PRINCE HENRY: +No, if rightly taken, halter. +Here comes lean Jack, here comes bare-bone. +How now, my sweet creature of bombast! +How long is't ago, Jack, since thou sawest thine own knee? + +FALSTAFF: +My own knee! when I was about thy years, Hal, I was +not an eagle's talon in the waist; I could have +crept into any alderman's thumb-ring: a plague of +sighing and grief! it blows a man up like a +bladder. There's villanous news abroad: here was +Sir John Bracy from your father; you must to the +court in the morning. That same mad fellow of the +north, Percy, and he of Wales, that gave Amamon the +bastinado and made Lucifer cuckold and swore the +devil his true liegeman upon the cross of a Welsh +hook--what a plague call you him? + +POINS: +O, Glendower. + +FALSTAFF: +Owen, Owen, the same; and his son-in-law Mortimer, +and old Northumberland, and that sprightly Scot of +Scots, Douglas, that runs o' horseback up a hill +perpendicular,-- + +PRINCE HENRY: +He that rides at high speed and with his pistol +kills a sparrow flying. + +FALSTAFF: +You have hit it. + +PRINCE HENRY: +So did he never the sparrow. + +FALSTAFF: +Well, that rascal hath good mettle in him; he will not run. + +PRINCE HENRY: +Why, what a rascal art thou then, to praise him so +for running! + +FALSTAFF: +O' horseback, ye cuckoo; but afoot he will not budge a foot. + +PRINCE HENRY: +Yes, Jack, upon instinct. + +FALSTAFF: +I grant ye, upon instinct. Well, he is there too, +and one Mordake, and a thousand blue-caps more: +Worcester is stolen away to-night; thy father's +beard is turned white with the news: you may buy +land now as cheap as stinking mackerel. + +PRINCE HENRY: +Why, then, it is like, if there come a hot June and +this civil buffeting hold, we shall buy maidenheads +as they buy hob-nails, by the hundreds. + +FALSTAFF: +By the mass, lad, thou sayest true; it is like we +shall have good trading that way. But tell me, Hal, +art not thou horrible afeard? thou being +heir-apparent, could the world pick thee out three +such enemies again as that fiend Douglas, that +spirit Percy, and that devil Glendower? Art thou +not horribly afraid? doth not thy blood thrill at +it? + +PRINCE HENRY: +Not a whit, i' faith; I lack some of thy instinct. + +FALSTAFF: +Well, thou wert be horribly chid tomorrow when thou +comest to thy father: if thou love me, practise an answer. + +PRINCE HENRY: +Do thou stand for my father, and examine me upon the +particulars of my life. + +FALSTAFF: +Shall I? content: this chair shall be my state, +this dagger my sceptre, and this cushion my crown. + +PRINCE HENRY: +Thy state is taken for a joined-stool, thy golden +sceptre for a leaden dagger, and thy precious rich +crown for a pitiful bald crown! + +FALSTAFF: +Well, an the fire of grace be not quite out of thee, +now shalt thou be moved. Give me a cup of sack to +make my eyes look red, that it may be thought I have +wept; for I must speak in passion, and I will do it +in King Cambyses' vein. + +PRINCE HENRY: +Well, here is my leg. + +FALSTAFF: +And here is my speech. Stand aside, nobility. + +Hostess: +O Jesu, this is excellent sport, i' faith! + +FALSTAFF: +Weep not, sweet queen; for trickling tears are vain. + +Hostess: +O, the father, how he holds his countenance! + +FALSTAFF: +For God's sake, lords, convey my tristful queen; +For tears do stop the flood-gates of her eyes. + +Hostess: +O Jesu, he doth it as like one of these harlotry +players as ever I see! + +FALSTAFF: +Peace, good pint-pot; peace, good tickle-brain. +Harry, I do not only marvel where thou spendest thy +time, but also how thou art accompanied: for though +the camomile, the more it is trodden on the faster +it grows, yet youth, the more it is wasted the +sooner it wears. That thou art my son, I have +partly thy mother's word, partly my own opinion, +but chiefly a villanous trick of thine eye and a +foolish-hanging of thy nether lip, that doth warrant +me. If then thou be son to me, here lies the point; +why, being son to me, art thou so pointed at? Shall +the blessed sun of heaven prove a micher and eat +blackberries? a question not to be asked. Shall +the sun of England prove a thief and take purses? a +question to be asked. There is a thing, Harry, +which thou hast often heard of and it is known to +many in our land by the name of pitch: this pitch, +as ancient writers do report, doth defile; so doth +the company thou keepest: for, Harry, now I do not +speak to thee in drink but in tears, not in +pleasure but in passion, not in words only, but in +woes also: and yet there is a virtuous man whom I +have often noted in thy company, but I know not his name. + +PRINCE HENRY: +What manner of man, an it like your majesty? + +FALSTAFF: +A goodly portly man, i' faith, and a corpulent; of a +cheerful look, a pleasing eye and a most noble +carriage; and, as I think, his age some fifty, or, +by'r lady, inclining to three score; and now I +remember me, his name is Falstaff: if that man +should be lewdly given, he deceiveth me; for, Harry, +I see virtue in his looks. If then the tree may be +known by the fruit, as the fruit by the tree, then, +peremptorily I speak it, there is virtue in that +Falstaff: him keep with, the rest banish. And tell +me now, thou naughty varlet, tell me, where hast +thou been this month? + +PRINCE HENRY: +Dost thou speak like a king? Do thou stand for me, +and I'll play my father. + +FALSTAFF: +Depose me? if thou dost it half so gravely, so +majestically, both in word and matter, hang me up by +the heels for a rabbit-sucker or a poulter's hare. + +PRINCE HENRY: +Well, here I am set. + +FALSTAFF: +And here I stand: judge, my masters. + +PRINCE HENRY: +Now, Harry, whence come you? + +FALSTAFF: +My noble lord, from Eastcheap. + +PRINCE HENRY: +The complaints I hear of thee are grievous. + +FALSTAFF: +'Sblood, my lord, they are false: nay, I'll tickle +ye for a young prince, i' faith. + +PRINCE HENRY: +Swearest thou, ungracious boy? henceforth ne'er look +on me. Thou art violently carried away from grace: +there is a devil haunts thee in the likeness of an +old fat man; a tun of man is thy companion. Why +dost thou converse with that trunk of humours, that +bolting-hutch of beastliness, that swollen parcel +of dropsies, that huge bombard of sack, that stuffed +cloak-bag of guts, that roasted Manningtree ox with +the pudding in his belly, that reverend vice, that +grey iniquity, that father ruffian, that vanity in +years? Wherein is he good, but to taste sack and +drink it? wherein neat and cleanly, but to carve a +capon and eat it? wherein cunning, but in craft? +wherein crafty, but in villany? wherein villanous, +but in all things? wherein worthy, but in nothing? + +FALSTAFF: +I would your grace would take me with you: whom +means your grace? + +PRINCE HENRY: +That villanous abominable misleader of youth, +Falstaff, that old white-bearded Satan. + +FALSTAFF: +My lord, the man I know. + +PRINCE HENRY: +I know thou dost. + +FALSTAFF: +But to say I know more harm in him than in myself, +were to say more than I know. That he is old, the +more the pity, his white hairs do witness it; but +that he is, saving your reverence, a whoremaster, +that I utterly deny. If sack and sugar be a fault, +God help the wicked! if to be old and merry be a +sin, then many an old host that I know is damned: if +to be fat be to be hated, then Pharaoh's lean kine +are to be loved. No, my good lord; banish Peto, +banish Bardolph, banish Poins: but for sweet Jack +Falstaff, kind Jack Falstaff, true Jack Falstaff, +valiant Jack Falstaff, and therefore more valiant, +being, as he is, old Jack Falstaff, banish not him +thy Harry's company, banish not him thy Harry's +company: banish plump Jack, and banish all the world. + +PRINCE HENRY: +I do, I will. + +BARDOLPH: +O, my lord, my lord! the sheriff with a most +monstrous watch is at the door. + +FALSTAFF: +Out, ye rogue! Play out the play: I have much to +say in the behalf of that Falstaff. + +Hostess: +O Jesu, my lord, my lord! + +PRINCE HENRY: +Heigh, heigh! the devil rides upon a fiddlestick: +what's the matter? + +Hostess: +The sheriff and all the watch are at the door: they +are come to search the house. Shall I let them in? + +FALSTAFF: +Dost thou hear, Hal? never call a true piece of +gold a counterfeit: thou art essentially mad, +without seeming so. + +PRINCE HENRY: +And thou a natural coward, without instinct. + +FALSTAFF: +I deny your major: if you will deny the sheriff, +so; if not, let him enter: if I become not a cart +as well as another man, a plague on my bringing up! +I hope I shall as soon be strangled with a halter as another. + +PRINCE HENRY: +Go, hide thee behind the arras: the rest walk up +above. Now, my masters, for a true face and good +conscience. + +FALSTAFF: +Both which I have had: but their date is out, and +therefore I'll hide me. + +PRINCE HENRY: +Call in the sheriff. +Now, master sheriff, what is your will with me? + +Sheriff: +First, pardon me, my lord. A hue and cry +Hath follow'd certain men unto this house. + +PRINCE HENRY: +What men? + +Sheriff: +One of them is well known, my gracious lord, +A gross fat man. + +Carrier: +As fat as butter. + +PRINCE HENRY: +The man, I do assure you, is not here; +For I myself at this time have employ'd him. +And, sheriff, I will engage my word to thee +That I will, by to-morrow dinner-time, +Send him to answer thee, or any man, +For any thing he shall be charged withal: +And so let me entreat you leave the house. + +Sheriff: +I will, my lord. There are two gentlemen +Have in this robbery lost three hundred marks. + +PRINCE HENRY: +It may be so: if he have robb'd these men, +He shall be answerable; and so farewell. + +Sheriff: +Good night, my noble lord. + +PRINCE HENRY: +I think it is good morrow, is it not? + +Sheriff: +Indeed, my lord, I think it be two o'clock. + +PRINCE HENRY: +This oily rascal is known as well as Paul's. Go, +call him forth. + +PETO: +Falstaff!--Fast asleep behind the arras, and +snorting like a horse. + +PRINCE HENRY: +Hark, how hard he fetches breath. Search his pockets. +What hast thou found? + +PETO: +Nothing but papers, my lord. + +PRINCE HENRY: +Let's see what they be: read them. + +PETO: + +PRINCE HENRY: +O monstrous! but one half-penny-worth of bread to +this intolerable deal of sack! What there is else, +keep close; we'll read it at more advantage: there +let him sleep till day. I'll to the court in the +morning. We must all to the wars, and thy place +shall be honourable. I'll procure this fat rogue a +charge of foot; and I know his death will be a +march of twelve-score. The money shall be paid +back again with advantage. Be with me betimes in +the morning; and so, good morrow, Peto. + +PETO: +Good morrow, good my lord. + +MORTIMER: +These promises are fair, the parties sure, +And our induction full of prosperous hope. + +HOTSPUR: +Lord Mortimer, and cousin Glendower, +Will you sit down? +And uncle Worcester: a plague upon it! +I have forgot the map. + +GLENDOWER: +No, here it is. +Sit, cousin Percy; sit, good cousin Hotspur, +For by that name as oft as Lancaster +Doth speak of you, his cheek looks pale and with +A rising sigh he wisheth you in heaven. + +HOTSPUR: +And you in hell, as oft as he hears Owen Glendower spoke of. + +GLENDOWER: +I cannot blame him: at my nativity +The front of heaven was full of fiery shapes, +Of burning cressets; and at my birth +The frame and huge foundation of the earth +Shaked like a coward. + +HOTSPUR: +Why, so it would have done at the same season, if +your mother's cat had but kittened, though yourself +had never been born. + +GLENDOWER: +I say the earth did shake when I was born. + +HOTSPUR: +And I say the earth was not of my mind, +If you suppose as fearing you it shook. + +GLENDOWER: +The heavens were all on fire, the earth did tremble. + +HOTSPUR: +O, then the earth shook to see the heavens on fire, +And not in fear of your nativity. +Diseased nature oftentimes breaks forth +In strange eruptions; oft the teeming earth +Is with a kind of colic pinch'd and vex'd +By the imprisoning of unruly wind +Within her womb; which, for enlargement striving, +Shakes the old beldam earth and topples down +Steeples and moss-grown towers. At your birth +Our grandam earth, having this distemperature, +In passion shook. + +GLENDOWER: +Cousin, of many men +I do not bear these crossings. Give me leave +To tell you once again that at my birth +The front of heaven was full of fiery shapes, +The goats ran from the mountains, and the herds +Were strangely clamorous to the frighted fields. +These signs have mark'd me extraordinary; +And all the courses of my life do show +I am not in the roll of common men. +Where is he living, clipp'd in with the sea +That chides the banks of England, Scotland, Wales, +Which calls me pupil, or hath read to me? +And bring him out that is but woman's son +Can trace me in the tedious ways of art +And hold me pace in deep experiments. + +HOTSPUR: +I think there's no man speaks better Welsh. +I'll to dinner. + +MORTIMER: +Peace, cousin Percy; you will make him mad. + +GLENDOWER: +I can call spirits from the vasty deep. + +HOTSPUR: +Why, so can I, or so can any man; +But will they come when you do call for them? + +GLENDOWER: +Why, I can teach you, cousin, to command +The devil. + +HOTSPUR: +And I can teach thee, coz, to shame the devil +By telling truth: tell truth and shame the devil. +If thou have power to raise him, bring him hither, +And I'll be sworn I have power to shame him hence. +O, while you live, tell truth and shame the devil! + +MORTIMER: +Come, come, no more of this unprofitable chat. + +GLENDOWER: +Three times hath Henry Bolingbroke made head +Against my power; thrice from the banks of Wye +And sandy-bottom'd Severn have I sent him +Bootless home and weather-beaten back. + +HOTSPUR: +Home without boots, and in foul weather too! +How 'scapes he agues, in the devil's name? + +GLENDOWER: +Come, here's the map: shall we divide our right +According to our threefold order ta'en? + +MORTIMER: +The archdeacon hath divided it +Into three limits very equally: +England, from Trent and Severn hitherto, +By south and east is to my part assign'd: +All westward, Wales beyond the Severn shore, +And all the fertile land within that bound, +To Owen Glendower: and, dear coz, to you +The remnant northward, lying off from Trent. +And our indentures tripartite are drawn; +Which being sealed interchangeably, +A business that this night may execute, +To-morrow, cousin Percy, you and I +And my good Lord of Worcester will set forth +To meet your father and the Scottish power, +As is appointed us, at Shrewsbury. +My father Glendower is not ready yet, +Not shall we need his help these fourteen days. +Within that space you may have drawn together +Your tenants, friends and neighbouring gentlemen. + +GLENDOWER: +A shorter time shall send me to you, lords: +And in my conduct shall your ladies come; +From whom you now must steal and take no leave, +For there will be a world of water shed +Upon the parting of your wives and you. + +HOTSPUR: +Methinks my moiety, north from Burton here, +In quantity equals not one of yours: +See how this river comes me cranking in, +And cuts me from the best of all my land +A huge half-moon, a monstrous cantle out. +I'll have the current in this place damm'd up; +And here the smug and silver Trent shall run +In a new channel, fair and evenly; +It shall not wind with such a deep indent, +To rob me of so rich a bottom here. + +GLENDOWER: +Not wind? it shall, it must; you see it doth. + +MORTIMER: +Yea, but +Mark how he bears his course, and runs me up +With like advantage on the other side; +Gelding the opposed continent as much +As on the other side it takes from you. + +EARL OF WORCESTER: +Yea, but a little charge will trench him here +And on this north side win this cape of land; +And then he runs straight and even. + +HOTSPUR: +I'll have it so: a little charge will do it. + +GLENDOWER: +I'll not have it alter'd. + +HOTSPUR: +Will not you? + +GLENDOWER: +No, nor you shall not. + +HOTSPUR: +Who shall say me nay? + +GLENDOWER: +Why, that will I. + +HOTSPUR: +Let me not understand you, then; speak it in Welsh. + +GLENDOWER: +I can speak English, lord, as well as you; +For I was train'd up in the English court; +Where, being but young, I framed to the harp +Many an English ditty lovely well +And gave the tongue a helpful ornament, +A virtue that was never seen in you. + +HOTSPUR: +Marry, +And I am glad of it with all my heart: +I had rather be a kitten and cry mew +Than one of these same metre ballad-mongers; +I had rather hear a brazen canstick turn'd, +Or a dry wheel grate on the axle-tree; +And that would set my teeth nothing on edge, +Nothing so much as mincing poetry: +'Tis like the forced gait of a shuffling nag. + +GLENDOWER: +Come, you shall have Trent turn'd. + +HOTSPUR: +I do not care: I'll give thrice so much land +To any well-deserving friend; +But in the way of bargain, mark ye me, +I'll cavil on the ninth part of a hair. +Are the indentures drawn? shall we be gone? + +GLENDOWER: +The moon shines fair; you may away by night: +I'll haste the writer and withal +Break with your wives of your departure hence: +I am afraid my daughter will run mad, +So much she doteth on her Mortimer. + +MORTIMER: +Fie, cousin Percy! how you cross my father! + +HOTSPUR: +I cannot choose: sometime he angers me +With telling me of the mouldwarp and the ant, +Of the dreamer Merlin and his prophecies, +And of a dragon and a finless fish, +A clip-wing'd griffin and a moulten raven, +A couching lion and a ramping cat, +And such a deal of skimble-skamble stuff +As puts me from my faith. I tell you what; +He held me last night at least nine hours +In reckoning up the several devils' names +That were his lackeys: I cried 'hum,' and 'well, go to,' +But mark'd him not a word. O, he is as tedious +As a tired horse, a railing wife; +Worse than a smoky house: I had rather live +With cheese and garlic in a windmill, far, +Than feed on cates and have him talk to me +In any summer-house in Christendom. + +MORTIMER: +In faith, he is a worthy gentleman, +Exceedingly well read, and profited +In strange concealments, valiant as a lion +And as wondrous affable and as bountiful +As mines of India. Shall I tell you, cousin? +He holds your temper in a high respect +And curbs himself even of his natural scope +When you come 'cross his humour; faith, he does: +I warrant you, that man is not alive +Might so have tempted him as you have done, +Without the taste of danger and reproof: +But do not use it oft, let me entreat you. + +EARL OF WORCESTER: +In faith, my lord, you are too wilful-blame; +And since your coming hither have done enough +To put him quite beside his patience. +You must needs learn, lord, to amend this fault: +Though sometimes it show greatness, courage, blood,-- +And that's the dearest grace it renders you,-- +Yet oftentimes it doth present harsh rage, +Defect of manners, want of government, +Pride, haughtiness, opinion and disdain: +The least of which haunting a nobleman +Loseth men's hearts and leaves behind a stain +Upon the beauty of all parts besides, +Beguiling them of commendation. + +HOTSPUR: +Well, I am school'd: good manners be your speed! +Here come our wives, and let us take our leave. + +MORTIMER: +This is the deadly spite that angers me; +My wife can speak no English, I no Welsh. + +GLENDOWER: +My daughter weeps: she will not part with you; +She'll be a soldier too, she'll to the wars. + +MORTIMER: +Good father, tell her that she and my aunt Percy +Shall follow in your conduct speedily. + +GLENDOWER: +She is desperate here; a peevish self-wind harlotry, +one that no persuasion can do good upon. + +MORTIMER: +I understand thy looks: that pretty Welsh +Which thou pour'st down from these swelling heavens +I am too perfect in; and, but for shame, +In such a parley should I answer thee. +I understand thy kisses and thou mine, +And that's a feeling disputation: +But I will never be a truant, love, +Till I have learned thy language; for thy tongue +Makes Welsh as sweet as ditties highly penn'd, +Sung by a fair queen in a summer's bower, +With ravishing division, to her lute. + +GLENDOWER: +Nay, if you melt, then will she run mad. + +MORTIMER: +O, I am ignorance itself in this! + +GLENDOWER: +She bids you on the wanton rushes lay you down +And rest your gentle head upon her lap, +And she will sing the song that pleaseth you +And on your eyelids crown the god of sleep. +Charming your blood with pleasing heaviness, +Making such difference 'twixt wake and sleep +As is the difference betwixt day and night +The hour before the heavenly-harness'd team +Begins his golden progress in the east. + +MORTIMER: +With all my heart I'll sit and hear her sing: +By that time will our book, I think, be drawn + +GLENDOWER: +Do so; +And those musicians that shall play to you +Hang in the air a thousand leagues from hence, +And straight they shall be here: sit, and attend. + +HOTSPUR: +Come, Kate, thou art perfect in lying down: come, +quick, quick, that I may lay my head in thy lap. + +LADY PERCY: +Go, ye giddy goose. + +HOTSPUR: +Now I perceive the devil understands Welsh; +And 'tis no marvel he is so humorous. +By'r lady, he is a good musician. + +LADY PERCY: +Then should you be nothing but musical for you are +altogether governed by humours. Lie still, ye thief, +and hear the lady sing in Welsh. + +HOTSPUR: +I had rather hear Lady, my brach, howl in Irish. + +LADY PERCY: +Wouldst thou have thy head broken? + +HOTSPUR: +No. + +LADY PERCY: +Then be still. + +HOTSPUR: +Neither;'tis a woman's fault. + +LADY PERCY: +Now God help thee! + +HOTSPUR: +To the Welsh lady's bed. + +LADY PERCY: +What's that? + +HOTSPUR: +Peace! she sings. + +HOTSPUR: +Come, Kate, I'll have your song too. + +LADY PERCY: +Not mine, in good sooth. + +HOTSPUR: +Not yours, in good sooth! Heart! you swear like a +comfit-maker's wife. 'Not you, in good sooth,' and +'as true as I live,' and 'as God shall mend me,' and +'as sure as day,' +And givest such sarcenet surety for thy oaths, +As if thou never walk'st further than Finsbury. +Swear me, Kate, like a lady as thou art, +A good mouth-filling oath, and leave 'in sooth,' +And such protest of pepper-gingerbread, +To velvet-guards and Sunday-citizens. +Come, sing. + +LADY PERCY: +I will not sing. + +HOTSPUR: +'Tis the next way to turn tailor, or be red-breast +teacher. An the indentures be drawn, I'll away +within these two hours; and so, come in when ye will. + +GLENDOWER: +Come, come, Lord Mortimer; you are as slow +As hot Lord Percy is on fire to go. +By this our book is drawn; we'll but seal, +And then to horse immediately. + +MORTIMER: +With all my heart. + +KING HENRY IV: +Lords, give us leave; the Prince of Wales and I +Must have some private conference; but be near at hand, +For we shall presently have need of you. +I know not whether God will have it so, +For some displeasing service I have done, +That, in his secret doom, out of my blood +He'll breed revengement and a scourge for me; +But thou dost in thy passages of life +Make me believe that thou art only mark'd +For the hot vengeance and the rod of heaven +To punish my mistreadings. Tell me else, +Could such inordinate and low desires, +Such poor, such bare, such lewd, such mean attempts, +Such barren pleasures, rude society, +As thou art match'd withal and grafted to, +Accompany the greatness of thy blood +And hold their level with thy princely heart? + +PRINCE HENRY: +So please your majesty, I would I could +Quit all offences with as clear excuse +As well as I am doubtless I can purge +Myself of many I am charged withal: +Yet such extenuation let me beg, +As, in reproof of many tales devised, +which oft the ear of greatness needs must hear, +By smiling pick-thanks and base news-mongers, +I may, for some things true, wherein my youth +Hath faulty wander'd and irregular, +Find pardon on my true submission. + +KING HENRY IV: +God pardon thee! yet let me wonder, Harry, +At thy affections, which do hold a wing +Quite from the flight of all thy ancestors. +Thy place in council thou hast rudely lost. +Which by thy younger brother is supplied, +And art almost an alien to the hearts +Of all the court and princes of my blood: +The hope and expectation of thy time +Is ruin'd, and the soul of every man +Prophetically doth forethink thy fall. +Had I so lavish of my presence been, +So common-hackney'd in the eyes of men, +So stale and cheap to vulgar company, +Opinion, that did help me to the crown, +Had still kept loyal to possession +And left me in reputeless banishment, +A fellow of no mark nor likelihood. +By being seldom seen, I could not stir +But like a comet I was wonder'd at; +That men would tell their children 'This is he;' +Others would say 'Where, which is Bolingbroke?' +And then I stole all courtesy from heaven, +And dress'd myself in such humility +That I did pluck allegiance from men's hearts, +Loud shouts and salutations from their mouths, +Even in the presence of the crowned king. +Thus did I keep my person fresh and new; +My presence, like a robe pontifical, +Ne'er seen but wonder'd at: and so my state, +Seldom but sumptuous, showed like a feast +And won by rareness such solemnity. +The skipping king, he ambled up and down +With shallow jesters and rash bavin wits, +Soon kindled and soon burnt; carded his state, +Mingled his royalty with capering fools, +Had his great name profaned with their scorns +And gave his countenance, against his name, +To laugh at gibing boys and stand the push +Of every beardless vain comparative, +Grew a companion to the common streets, +Enfeoff'd himself to popularity; +That, being daily swallow'd by men's eyes, +They surfeited with honey and began +To loathe the taste of sweetness, whereof a little +More than a little is by much too much. +So when he had occasion to be seen, +He was but as the cuckoo is in June, +Heard, not regarded; seen, but with such eyes +As, sick and blunted with community, +Afford no extraordinary gaze, +Such as is bent on sun-like majesty +When it shines seldom in admiring eyes; +But rather drowzed and hung their eyelids down, +Slept in his face and render'd such aspect +As cloudy men use to their adversaries, +Being with his presence glutted, gorged and full. +And in that very line, Harry, standest thou; +For thou has lost thy princely privilege +With vile participation: not an eye +But is a-weary of thy common sight, +Save mine, which hath desired to see thee more; +Which now doth that I would not have it do, +Make blind itself with foolish tenderness. + +PRINCE HENRY: +I shall hereafter, my thrice gracious lord, +Be more myself. + +KING HENRY IV: +For all the world +As thou art to this hour was Richard then +When I from France set foot at Ravenspurgh, +And even as I was then is Percy now. +Now, by my sceptre and my soul to boot, +He hath more worthy interest to the state +Than thou the shadow of succession; +For of no right, nor colour like to right, +He doth fill fields with harness in the realm, +Turns head against the lion's armed jaws, +And, being no more in debt to years than thou, +Leads ancient lords and reverend bishops on +To bloody battles and to bruising arms. +What never-dying honour hath he got +Against renowned Douglas! whose high deeds, +Whose hot incursions and great name in arms +Holds from all soldiers chief majority +And military title capital +Through all the kingdoms that acknowledge Christ: +Thrice hath this Hotspur, Mars in swathling clothes, +This infant warrior, in his enterprises +Discomfited great Douglas, ta'en him once, +Enlarged him and made a friend of him, +To fill the mouth of deep defiance up +And shake the peace and safety of our throne. +And what say you to this? Percy, Northumberland, +The Archbishop's grace of York, Douglas, Mortimer, +Capitulate against us and are up. +But wherefore do I tell these news to thee? +Why, Harry, do I tell thee of my foes, +Which art my near'st and dearest enemy? +Thou that art like enough, through vassal fear, +Base inclination and the start of spleen +To fight against me under Percy's pay, +To dog his heels and curtsy at his frowns, +To show how much thou art degenerate. + +PRINCE HENRY: +Do not think so; you shall not find it so: +And God forgive them that so much have sway'd +Your majesty's good thoughts away from me! +I will redeem all this on Percy's head +And in the closing of some glorious day +Be bold to tell you that I am your son; +When I will wear a garment all of blood +And stain my favours in a bloody mask, +Which, wash'd away, shall scour my shame with it: +And that shall be the day, whene'er it lights, +That this same child of honour and renown, +This gallant Hotspur, this all-praised knight, +And your unthought-of Harry chance to meet. +For every honour sitting on his helm, +Would they were multitudes, and on my head +My shames redoubled! for the time will come, +That I shall make this northern youth exchange +His glorious deeds for my indignities. +Percy is but my factor, good my lord, +To engross up glorious deeds on my behalf; +And I will call him to so strict account, +That he shall render every glory up, +Yea, even the slightest worship of his time, +Or I will tear the reckoning from his heart. +This, in the name of God, I promise here: +The which if He be pleased I shall perform, +I do beseech your majesty may salve +The long-grown wounds of my intemperance: +If not, the end of life cancels all bands; +And I will die a hundred thousand deaths +Ere break the smallest parcel of this vow. + +KING HENRY IV: +A hundred thousand rebels die in this: +Thou shalt have charge and sovereign trust herein. +How now, good Blunt? thy looks are full of speed. + +SIR WALTER BLUNT: +So hath the business that I come to speak of. +Lord Mortimer of Scotland hath sent word +That Douglas and the English rebels met +The eleventh of this month at Shrewsbury +A mighty and a fearful head they are, +If promises be kept on every hand, +As ever offer'd foul play in the state. + +KING HENRY IV: +The Earl of Westmoreland set forth to-day; +With him my son, Lord John of Lancaster; +For this advertisement is five days old: +On Wednesday next, Harry, you shall set forward; +On Thursday we ourselves will march: our meeting +Is Bridgenorth: and, Harry, you shall march +Through Gloucestershire; by which account, +Our business valued, some twelve days hence +Our general forces at Bridgenorth shall meet. +Our hands are full of business: let's away; +Advantage feeds him fat, while men delay. + +FALSTAFF: +Bardolph, am I not fallen away vilely since this last +action? do I not bate? do I not dwindle? Why my +skin hangs about me like an like an old lady's loose +gown; I am withered like an old apple-john. Well, +I'll repent, and that suddenly, while I am in some +liking; I shall be out of heart shortly, and then I +shall have no strength to repent. An I have not +forgotten what the inside of a church is made of, I +am a peppercorn, a brewer's horse: the inside of a +church! Company, villanous company, hath been the +spoil of me. + +BARDOLPH: +Sir John, you are so fretful, you cannot live long. + +FALSTAFF: +Why, there is it: come sing me a bawdy song; make +me merry. I was as virtuously given as a gentleman +need to be; virtuous enough; swore little; diced not +above seven times a week; went to a bawdy-house once +in a quarter--of an hour; paid money that I +borrowed, three of four times; lived well and in +good compass: and now I live out of all order, out +of all compass. + +BARDOLPH: +Why, you are so fat, Sir John, that you must needs +be out of all compass, out of all reasonable +compass, Sir John. + +FALSTAFF: +Do thou amend thy face, and I'll amend my life: +thou art our admiral, thou bearest the lantern in +the poop, but 'tis in the nose of thee; thou art the +Knight of the Burning Lamp. + +BARDOLPH: +Why, Sir John, my face does you no harm. + +FALSTAFF: +No, I'll be sworn; I make as good use of it as many +a man doth of a Death's-head or a memento mori: I +never see thy face but I think upon hell-fire and +Dives that lived in purple; for there he is in his +robes, burning, burning. If thou wert any way +given to virtue, I would swear by thy face; my oath +should be 'By this fire, that's God's angel:' but +thou art altogether given over; and wert indeed, but +for the light in thy face, the son of utter +darkness. When thou rannest up Gadshill in the +night to catch my horse, if I did not think thou +hadst been an ignis fatuus or a ball of wildfire, +there's no purchase in money. O, thou art a +perpetual triumph, an everlasting bonfire-light! +Thou hast saved me a thousand marks in links and +torches, walking with thee in the night betwixt +tavern and tavern: but the sack that thou hast +drunk me would have bought me lights as good cheap +at the dearest chandler's in Europe. I have +maintained that salamander of yours with fire any +time this two and thirty years; God reward me for +it! + +BARDOLPH: +'Sblood, I would my face were in your belly! + +FALSTAFF: +God-a-mercy! so should I be sure to be heart-burned. +How now, Dame Partlet the hen! have you inquired +yet who picked my pocket? + +Hostess: +Why, Sir John, what do you think, Sir John? do you +think I keep thieves in my house? I have searched, +I have inquired, so has my husband, man by man, boy +by boy, servant by servant: the tithe of a hair +was never lost in my house before. + +FALSTAFF: +Ye lie, hostess: Bardolph was shaved and lost many +a hair; and I'll be sworn my pocket was picked. Go +to, you are a woman, go. + +Hostess: +Who, I? no; I defy thee: God's light, I was never +called so in mine own house before. + +FALSTAFF: +Go to, I know you well enough. + +Hostess: +No, Sir John; You do not know me, Sir John. I know +you, Sir John: you owe me money, Sir John; and now +you pick a quarrel to beguile me of it: I bought +you a dozen of shirts to your back. + +FALSTAFF: +Dowlas, filthy dowlas: I have given them away to +bakers' wives, and they have made bolters of them. + +Hostess: +Now, as I am a true woman, holland of eight +shillings an ell. You owe money here besides, Sir +John, for your diet and by-drinkings, and money lent +you, four and twenty pound. + +FALSTAFF: +He had his part of it; let him pay. + +Hostess: +He? alas, he is poor; he hath nothing. + +FALSTAFF: +How! poor? look upon his face; what call you rich? +let them coin his nose, let them coin his cheeks: +Ill not pay a denier. What, will you make a younker +of me? shall I not take mine case in mine inn but I +shall have my pocket picked? I have lost a +seal-ring of my grandfather's worth forty mark. + +Hostess: +O Jesu, I have heard the prince tell him, I know not +how oft, that ring was copper! + +FALSTAFF: +How! the prince is a Jack, a sneak-cup: 'sblood, an +he were here, I would cudgel him like a dog, if he +would say so. +How now, lad! is the wind in that door, i' faith? +must we all march? + +BARDOLPH: +Yea, two and two, Newgate fashion. + +Hostess: +My lord, I pray you, hear me. + +PRINCE HENRY: +What sayest thou, Mistress Quickly? How doth thy +husband? I love him well; he is an honest man. + +Hostess: +Good my lord, hear me. + +FALSTAFF: +Prithee, let her alone, and list to me. + +PRINCE HENRY: +What sayest thou, Jack? + +FALSTAFF: +The other night I fell asleep here behind the arras +and had my pocket picked: this house is turned +bawdy-house; they pick pockets. + +PRINCE HENRY: +What didst thou lose, Jack? + +FALSTAFF: +Wilt thou believe me, Hal? three or four bonds of +forty pound apiece, and a seal-ring of my +grandfather's. + +PRINCE HENRY: +A trifle, some eight-penny matter. + +Hostess: +So I told him, my lord; and I said I heard your +grace say so: and, my lord, he speaks most vilely +of you, like a foul-mouthed man as he is; and said +he would cudgel you. + +PRINCE HENRY: +What! he did not? + +Hostess: +There's neither faith, truth, nor womanhood in me else. + +FALSTAFF: +There's no more faith in thee than in a stewed +prune; nor no more truth in thee than in a drawn +fox; and for womanhood, Maid Marian may be the +deputy's wife of the ward to thee. Go, you thing, +go + +Hostess: +Say, what thing? what thing? + +FALSTAFF: +What thing! why, a thing to thank God on. + +Hostess: +I am no thing to thank God on, I would thou +shouldst know it; I am an honest man's wife: and, +setting thy knighthood aside, thou art a knave to +call me so. + +FALSTAFF: +Setting thy womanhood aside, thou art a beast to say +otherwise. + +Hostess: +Say, what beast, thou knave, thou? + +FALSTAFF: +What beast! why, an otter. + +PRINCE HENRY: +An otter, Sir John! Why an otter? + +FALSTAFF: +Why, she's neither fish nor flesh; a man knows not +where to have her. + +Hostess: +Thou art an unjust man in saying so: thou or any +man knows where to have me, thou knave, thou! + +PRINCE HENRY: +Thou sayest true, hostess; and he slanders thee most grossly. + +Hostess: +So he doth you, my lord; and said this other day you +ought him a thousand pound. + +PRINCE HENRY: +Sirrah, do I owe you a thousand pound? + +FALSTAFF: +A thousand pound, Ha! a million: thy love is worth +a million: thou owest me thy love. + +Hostess: +Nay, my lord, he called you Jack, and said he would +cudgel you. + +FALSTAFF: +Did I, Bardolph? + +BARDOLPH: +Indeed, Sir John, you said so. + +FALSTAFF: +Yea, if he said my ring was copper. + +PRINCE HENRY: +I say 'tis copper: darest thou be as good as thy word now? + +FALSTAFF: +Why, Hal, thou knowest, as thou art but man, I dare: +but as thou art prince, I fear thee as I fear the +roaring of a lion's whelp. + +PRINCE HENRY: +And why not as the lion? + +FALSTAFF: +The king is to be feared as the lion: dost thou +think I'll fear thee as I fear thy father? nay, an +I do, I pray God my girdle break. + +PRINCE HENRY: +O, if it should, how would thy guts fall about thy +knees! But, sirrah, there's no room for faith, +truth, nor honesty in this bosom of thine; it is all +filled up with guts and midriff. Charge an honest +woman with picking thy pocket! why, thou whoreson, +impudent, embossed rascal, if there were anything in +thy pocket but tavern-reckonings, memorandums of +bawdy-houses, and one poor penny-worth of +sugar-candy to make thee long-winded, if thy pocket +were enriched with any other injuries but these, I +am a villain: and yet you will stand to if; you will +not pocket up wrong: art thou not ashamed? + +FALSTAFF: +Dost thou hear, Hal? thou knowest in the state of +innocency Adam fell; and what should poor Jack +Falstaff do in the days of villany? Thou seest I +have more flesh than another man, and therefore more +frailty. You confess then, you picked my pocket? + +PRINCE HENRY: +It appears so by the story. + +FALSTAFF: +Hostess, I forgive thee: go, make ready breakfast; +love thy husband, look to thy servants, cherish thy +guests: thou shalt find me tractable to any honest +reason: thou seest I am pacified still. Nay, +prithee, be gone. +Now Hal, to the news at court: for the robbery, +lad, how is that answered? + +PRINCE HENRY: +O, my sweet beef, I must still be good angel to +thee: the money is paid back again. + +FALSTAFF: +O, I do not like that paying back; 'tis a double labour. + +PRINCE HENRY: +I am good friends with my father and may do any thing. + +FALSTAFF: +Rob me the exchequer the first thing thou doest, and +do it with unwashed hands too. + +BARDOLPH: +Do, my lord. + +PRINCE HENRY: +I have procured thee, Jack, a charge of foot. + +FALSTAFF: +I would it had been of horse. Where shall I find +one that can steal well? O for a fine thief, of the +age of two and twenty or thereabouts! I am +heinously unprovided. Well, God be thanked for +these rebels, they offend none but the virtuous: I +laud them, I praise them. + +PRINCE HENRY: +Bardolph! + +BARDOLPH: +My lord? + +PRINCE HENRY: +Go bear this letter to Lord John of Lancaster, to my +brother John; this to my Lord of Westmoreland. +Go, Peto, to horse, to horse; for thou and I have +thirty miles to ride yet ere dinner time. +Jack, meet me to-morrow in the temple hall at two +o'clock in the afternoon. +There shalt thou know thy charge; and there receive +Money and order for their furniture. +The land is burning; Percy stands on high; +And either we or they must lower lie. + +FALSTAFF: +Rare words! brave world! Hostess, my breakfast, come! +O, I could wish this tavern were my drum! + +HOTSPUR: +Well said, my noble Scot: if speaking truth +In this fine age were not thought flattery, +Such attribution should the Douglas have, +As not a soldier of this season's stamp +Should go so general current through the world. +By God, I cannot flatter; I do defy +The tongues of soothers; but a braver place +In my heart's love hath no man than yourself: +Nay, task me to my word; approve me, lord. + +EARL OF DOUGLAS: +Thou art the king of honour: +No man so potent breathes upon the ground +But I will beard him. + +HOTSPUR: +Do so, and 'tis well. +What letters hast thou there?--I can but thank you. + +Messenger: +These letters come from your father. + +HOTSPUR: +Letters from him! why comes he not himself? + +Messenger: +He cannot come, my lord; he is grievous sick. + +HOTSPUR: +'Zounds! how has he the leisure to be sick +In such a rustling time? Who leads his power? +Under whose government come they along? + +Messenger: +His letters bear his mind, not I, my lord. + +EARL OF WORCESTER: +I prithee, tell me, doth he keep his bed? + +Messenger: +He did, my lord, four days ere I set forth; +And at the time of my departure thence +He was much fear'd by his physicians. + +EARL OF WORCESTER: +I would the state of time had first been whole +Ere he by sickness had been visited: +His health was never better worth than now. + +HOTSPUR: +Sick now! droop now! this sickness doth infect +The very life-blood of our enterprise; +'Tis catching hither, even to our camp. +He writes me here, that inward sickness-- +And that his friends by deputation could not +So soon be drawn, nor did he think it meet +To lay so dangerous and dear a trust +On any soul removed but on his own. +Yet doth he give us bold advertisement, +That with our small conjunction we should on, +To see how fortune is disposed to us; +For, as he writes, there is no quailing now. +Because the king is certainly possess'd +Of all our purposes. What say you to it? + +EARL OF WORCESTER: +Your father's sickness is a maim to us. + +HOTSPUR: +A perilous gash, a very limb lopp'd off: +And yet, in faith, it is not; his present want +Seems more than we shall find it: were it good +To set the exact wealth of all our states +All at one cast? to set so rich a main +On the nice hazard of one doubtful hour? +It were not good; for therein should we read +The very bottom and the soul of hope, +The very list, the very utmost bound +Of all our fortunes. + +EARL OF DOUGLAS: +'Faith, and so we should; +Where now remains a sweet reversion: +We may boldly spend upon the hope of what +Is to come in: +A comfort of retirement lives in this. + +HOTSPUR: +A rendezvous, a home to fly unto. +If that the devil and mischance look big +Upon the maidenhead of our affairs. + +EARL OF WORCESTER: +But yet I would your father had been here. +The quality and hair of our attempt +Brooks no division: it will be thought +By some, that know not why he is away, +That wisdom, loyalty and mere dislike +Of our proceedings kept the earl from hence: +And think how such an apprehension +May turn the tide of fearful faction +And breed a kind of question in our cause; +For well you know we of the offering side +Must keep aloof from strict arbitrement, +And stop all sight-holes, every loop from whence +The eye of reason may pry in upon us: +This absence of your father's draws a curtain, +That shows the ignorant a kind of fear +Before not dreamt of. + +HOTSPUR: +You strain too far. +I rather of his absence make this use: +It lends a lustre and more great opinion, +A larger dare to our great enterprise, +Than if the earl were here; for men must think, +If we without his help can make a head +To push against a kingdom, with his help +We shall o'erturn it topsy-turvy down. +Yet all goes well, yet all our joints are whole. + +EARL OF DOUGLAS: +As heart can think: there is not such a word +Spoke of in Scotland as this term of fear. + +HOTSPUR: +My cousin Vernon, welcome, by my soul. + +VERNON: +Pray God my news be worth a welcome, lord. +The Earl of Westmoreland, seven thousand strong, +Is marching hitherwards; with him Prince John. + +HOTSPUR: +No harm: what more? + +VERNON: +And further, I have learn'd, +The king himself in person is set forth, +Or hitherwards intended speedily, +With strong and mighty preparation. + +HOTSPUR: +He shall be welcome too. Where is his son, +The nimble-footed madcap Prince of Wales, +And his comrades, that daff'd the world aside, +And bid it pass? + +VERNON: +All furnish'd, all in arms; +All plumed like estridges that with the wind +Baited like eagles having lately bathed; +Glittering in golden coats, like images; +As full of spirit as the month of May, +And gorgeous as the sun at midsummer; +Wanton as youthful goats, wild as young bulls. +I saw young Harry, with his beaver on, +His cuisses on his thighs, gallantly arm'd +Rise from the ground like feather'd Mercury, +And vaulted with such ease into his seat, +As if an angel dropp'd down from the clouds, +To turn and wind a fiery Pegasus +And witch the world with noble horsemanship. + +HOTSPUR: +No more, no more: worse than the sun in March, +This praise doth nourish agues. Let them come: +They come like sacrifices in their trim, +And to the fire-eyed maid of smoky war +All hot and bleeding will we offer them: +The mailed Mars shall on his altar sit +Up to the ears in blood. I am on fire +To hear this rich reprisal is so nigh +And yet not ours. Come, let me taste my horse, +Who is to bear me like a thunderbolt +Against the bosom of the Prince of Wales: +Harry to Harry shall, hot horse to horse, +Meet and ne'er part till one drop down a corse. +O that Glendower were come! + +VERNON: +There is more news: +I learn'd in Worcester, as I rode along, +He cannot draw his power this fourteen days. + +EARL OF DOUGLAS: +That's the worst tidings that I hear of yet. + +WORCESTER: +Ay, by my faith, that bears a frosty sound. + +HOTSPUR: +What may the king's whole battle reach unto? + +VERNON: +To thirty thousand. + +HOTSPUR: +Forty let it be: +My father and Glendower being both away, +The powers of us may serve so great a day +Come, let us take a muster speedily: +Doomsday is near; die all, die merrily. + +EARL OF DOUGLAS: +Talk not of dying: I am out of fear +Of death or death's hand for this one-half year. + +FALSTAFF: +Bardolph, get thee before to Coventry; fill me a +bottle of sack: our soldiers shall march through; +we'll to Sutton Co'fil' tonight. + +BARDOLPH: +Will you give me money, captain? + +FALSTAFF: +Lay out, lay out. + +BARDOLPH: +This bottle makes an angel. + +FALSTAFF: +An if it do, take it for thy labour; and if it make +twenty, take them all; I'll answer the coinage. Bid +my lieutenant Peto meet me at town's end. + +BARDOLPH: +I will, captain: farewell. + +FALSTAFF: +If I be not ashamed of my soldiers, I am a soused +gurnet. I have misused the king's press damnably. +I have got, in exchange of a hundred and fifty +soldiers, three hundred and odd pounds. I press me +none but good house-holders, yeoman's sons; inquire +me out contracted bachelors, such as had been asked +twice on the banns; such a commodity of warm slaves, +as had as lieve hear the devil as a drum; such as +fear the report of a caliver worse than a struck +fowl or a hurt wild-duck. I pressed me none but such +toasts-and-butter, with hearts in their bellies no +bigger than pins' heads, and they have bought out +their services; and now my whole charge consists of +ancients, corporals, lieutenants, gentlemen of +companies, slaves as ragged as Lazarus in the +painted cloth, where the glutton's dogs licked his +sores; and such as indeed were never soldiers, but +discarded unjust serving-men, younger sons to +younger brothers, revolted tapsters and ostlers +trade-fallen, the cankers of a calm world and a +long peace, ten times more dishonourable ragged than +an old faced ancient: and such have I, to fill up +the rooms of them that have bought out their +services, that you would think that I had a hundred +and fifty tattered prodigals lately come from +swine-keeping, from eating draff and husks. A mad +fellow met me on the way and told me I had unloaded +all the gibbets and pressed the dead bodies. No eye +hath seen such scarecrows. I'll not march through +Coventry with them, that's flat: nay, and the +villains march wide betwixt the legs, as if they had +gyves on; for indeed I had the most of them out of +prison. There's but a shirt and a half in all my +company; and the half shirt is two napkins tacked +together and thrown over the shoulders like an +herald's coat without sleeves; and the shirt, to say +the truth, stolen from my host at Saint Alban's, or +the red-nose innkeeper of Daventry. But that's all +one; they'll find linen enough on every hedge. + +PRINCE HENRY: +How now, blown Jack! how now, quilt! + +FALSTAFF: +What, Hal! how now, mad wag! what a devil dost thou +in Warwickshire? My good Lord of Westmoreland, I +cry you mercy: I thought your honour had already been +at Shrewsbury. + +WESTMORELAND: +Faith, Sir John,'tis more than time that I were +there, and you too; but my powers are there already. +The king, I can tell you, looks for us all: we must +away all night. + +FALSTAFF: +Tut, never fear me: I am as vigilant as a cat to +steal cream. + +PRINCE HENRY: +I think, to steal cream indeed, for thy theft hath +already made thee butter. But tell me, Jack, whose +fellows are these that come after? + +FALSTAFF: +Mine, Hal, mine. + +PRINCE HENRY: +I did never see such pitiful rascals. + +FALSTAFF: +Tut, tut; good enough to toss; food for powder, food +for powder; they'll fill a pit as well as better: +tush, man, mortal men, mortal men. + +WESTMORELAND: +Ay, but, Sir John, methinks they are exceeding poor +and bare, too beggarly. + +FALSTAFF: +'Faith, for their poverty, I know not where they had +that; and for their bareness, I am sure they never +learned that of me. + +PRINCE HENRY: +No I'll be sworn; unless you call three fingers on +the ribs bare. But, sirrah, make haste: Percy is +already in the field. + +FALSTAFF: +What, is the king encamped? + +WESTMORELAND: +He is, Sir John: I fear we shall stay too long. + +FALSTAFF: +Well, +To the latter end of a fray and the beginning of a feast +Fits a dull fighter and a keen guest. + +HOTSPUR: +We'll fight with him to-night. + +EARL OF WORCESTER: +It may not be. + +EARL OF DOUGLAS: +You give him then the advantage. + +VERNON: +Not a whit. + +HOTSPUR: +Why say you so? looks he not for supply? + +VERNON: +So do we. + +HOTSPUR: +His is certain, ours is doubtful. + +EARL OF WORCESTER: +Good cousin, be advised; stir not tonight. + +VERNON: +Do not, my lord. + +EARL OF DOUGLAS: +You do not counsel well: +You speak it out of fear and cold heart. + +VERNON: +Do me no slander, Douglas: by my life, +And I dare well maintain it with my life, +If well-respected honour bid me on, +I hold as little counsel with weak fear +As you, my lord, or any Scot that this day lives: +Let it be seen to-morrow in the battle +Which of us fears. + +EARL OF DOUGLAS: +Yea, or to-night. + +VERNON: +Content. + +HOTSPUR: +To-night, say I. + +VERNON: +Come, come it nay not be. I wonder much, +Being men of such great leading as you are, +That you foresee not what impediments +Drag back our expedition: certain horse +Of my cousin Vernon's are not yet come up: +Your uncle Worcester's horse came but today; +And now their pride and mettle is asleep, +Their courage with hard labour tame and dull, +That not a horse is half the half of himself. + +HOTSPUR: +So are the horses of the enemy +In general, journey-bated and brought low: +The better part of ours are full of rest. + +EARL OF WORCESTER: +The number of the king exceedeth ours: +For God's sake. cousin, stay till all come in. + +SIR WALTER BLUNT: +I come with gracious offers from the king, +if you vouchsafe me hearing and respect. + +HOTSPUR: +Welcome, Sir Walter Blunt; and would to God +You were of our determination! +Some of us love you well; and even those some +Envy your great deservings and good name, +Because you are not of our quality, +But stand against us like an enemy. + +SIR WALTER BLUNT: +And God defend but still I should stand so, +So long as out of limit and true rule +You stand against anointed majesty. +But to my charge. The king hath sent to know +The nature of your griefs, and whereupon +You conjure from the breast of civil peace +Such bold hostility, teaching his duteous land +Audacious cruelty. If that the king +Have any way your good deserts forgot, +Which he confesseth to be manifold, +He bids you name your griefs; and with all speed +You shall have your desires with interest +And pardon absolute for yourself and these +Herein misled by your suggestion. + +HOTSPUR: +The king is kind; and well we know the king +Knows at what time to promise, when to pay. +My father and my uncle and myself +Did give him that same royalty he wears; +And when he was not six and twenty strong, +Sick in the world's regard, wretched and low, +A poor unminded outlaw sneaking home, +My father gave him welcome to the shore; +And when he heard him swear and vow to God +He came but to be Duke of Lancaster, +To sue his livery and beg his peace, +With tears of innocency and terms of zeal, +My father, in kind heart and pity moved, +Swore him assistance and perform'd it too. +Now when the lords and barons of the realm +Perceived Northumberland did lean to him, +The more and less came in with cap and knee; +Met him in boroughs, cities, villages, +Attended him on bridges, stood in lanes, +Laid gifts before him, proffer'd him their oaths, +Gave him their heirs, as pages follow'd him +Even at the heels in golden multitudes. +He presently, as greatness knows itself, +Steps me a little higher than his vow +Made to my father, while his blood was poor, +Upon the naked shore at Ravenspurgh; +And now, forsooth, takes on him to reform +Some certain edicts and some strait decrees +That lie too heavy on the commonwealth, +Cries out upon abuses, seems to weep +Over his country's wrongs; and by this face, +This seeming brow of justice, did he win +The hearts of all that he did angle for; +Proceeded further; cut me off the heads +Of all the favourites that the absent king +In deputation left behind him here, +When he was personal in the Irish war. + +SIR WALTER BLUNT: +Tut, I came not to hear this. + +HOTSPUR: +Then to the point. +In short time after, he deposed the king; +Soon after that, deprived him of his life; +And in the neck of that, task'd the whole state: +To make that worse, suffer'd his kinsman March, +Who is, if every owner were well placed, +Indeed his king, to be engaged in Wales, +There without ransom to lie forfeited; +Disgraced me in my happy victories, +Sought to entrap me by intelligence; +Rated mine uncle from the council-board; +In rage dismiss'd my father from the court; +Broke oath on oath, committed wrong on wrong, +And in conclusion drove us to seek out +This head of safety; and withal to pry +Into his title, the which we find +Too indirect for long continuance. + +SIR WALTER BLUNT: +Shall I return this answer to the king? + +HOTSPUR: +Not so, Sir Walter: we'll withdraw awhile. +Go to the king; and let there be impawn'd +Some surety for a safe return again, +And in the morning early shall my uncle +Bring him our purposes: and so farewell. + +SIR WALTER BLUNT: +I would you would accept of grace and love. + +HOTSPUR: +And may be so we shall. + +SIR WALTER BLUNT: +Pray God you do. + +ARCHBISHOP OF YORK: +Hie, good Sir Michael; bear this sealed brief +With winged haste to the lord marshal; +This to my cousin Scroop, and all the rest +To whom they are directed. If you knew +How much they do to import, you would make haste. + +SIR MICHAEL: +My good lord, +I guess their tenor. + +ARCHBISHOP OF YORK: +Like enough you do. +To-morrow, good Sir Michael, is a day +Wherein the fortune of ten thousand men +Must bide the touch; for, sir, at Shrewsbury, +As I am truly given to understand, +The king with mighty and quick-raised power +Meets with Lord Harry: and, I fear, Sir Michael, +What with the sickness of Northumberland, +Whose power was in the first proportion, +And what with Owen Glendower's absence thence, +Who with them was a rated sinew too +And comes not in, o'er-ruled by prophecies, +I fear the power of Percy is too weak +To wage an instant trial with the king. + +SIR MICHAEL: +Why, my good lord, you need not fear; +There is Douglas and Lord Mortimer. + +ARCHBISHOP OF YORK: +No, Mortimer is not there. + +SIR MICHAEL: +But there is Mordake, Vernon, Lord Harry Percy, +And there is my Lord of Worcester and a head +Of gallant warriors, noble gentlemen. + +ARCHBISHOP OF YORK: +And so there is: but yet the king hath drawn +The special head of all the land together: +The Prince of Wales, Lord John of Lancaster, +The noble Westmoreland and warlike Blunt; +And moe corrivals and dear men +Of estimation and command in arms. + +SIR MICHAEL: +Doubt not, my lord, they shall be well opposed. + +ARCHBISHOP OF YORK: +I hope no less, yet needful 'tis to fear; +And, to prevent the worst, Sir Michael, speed: +For if Lord Percy thrive not, ere the king +Dismiss his power, he means to visit us, +For he hath heard of our confederacy, +And 'tis but wisdom to make strong against him: +Therefore make haste. I must go write again +To other friends; and so farewell, Sir Michael. + +KING HENRY IV: +How bloodily the sun begins to peer +Above yon busky hill! the day looks pale +At his distemperature. + +PRINCE HENRY: +The southern wind +Doth play the trumpet to his purposes, +And by his hollow whistling in the leaves +Foretells a tempest and a blustering day. + +KING HENRY IV: +Then with the losers let it sympathize, +For nothing can seem foul to those that win. +How now, my Lord of Worcester! 'tis not well +That you and I should meet upon such terms +As now we meet. You have deceived our trust, +And made us doff our easy robes of peace, +To crush our old limbs in ungentle steel: +This is not well, my lord, this is not well. +What say you to it? will you again unknit +This curlish knot of all-abhorred war? +And move in that obedient orb again +Where you did give a fair and natural light, +And be no more an exhaled meteor, +A prodigy of fear and a portent +Of broached mischief to the unborn times? + +EARL OF WORCESTER: +Hear me, my liege: +For mine own part, I could be well content +To entertain the lag-end of my life +With quiet hours; for I do protest, +I have not sought the day of this dislike. + +KING HENRY IV: +You have not sought it! how comes it, then? + +FALSTAFF: +Rebellion lay in his way, and he found it. + +PRINCE HENRY: +Peace, chewet, peace! + +EARL OF WORCESTER: +It pleased your majesty to turn your looks +Of favour from myself and all our house; +And yet I must remember you, my lord, +We were the first and dearest of your friends. +For you my staff of office did I break +In Richard's time; and posted day and night +to meet you on the way, and kiss your hand, +When yet you were in place and in account +Nothing so strong and fortunate as I. +It was myself, my brother and his son, +That brought you home and boldly did outdare +The dangers of the time. You swore to us, +And you did swear that oath at Doncaster, +That you did nothing purpose 'gainst the state; +Nor claim no further than your new-fall'n right, +The seat of Gaunt, dukedom of Lancaster: +To this we swore our aid. But in short space +It rain'd down fortune showering on your head; +And such a flood of greatness fell on you, +What with our help, what with the absent king, +What with the injuries of a wanton time, +The seeming sufferances that you had borne, +And the contrarious winds that held the king +So long in his unlucky Irish wars +That all in England did repute him dead: +And from this swarm of fair advantages +You took occasion to be quickly woo'd +To gripe the general sway into your hand; +Forget your oath to us at Doncaster; +And being fed by us you used us so +As that ungentle hull, the cuckoo's bird, +Useth the sparrow; did oppress our nest; +Grew by our feeding to so great a bulk +That even our love durst not come near your sight +For fear of swallowing; but with nimble wing +We were enforced, for safety sake, to fly +Out of sight and raise this present head; +Whereby we stand opposed by such means +As you yourself have forged against yourself +By unkind usage, dangerous countenance, +And violation of all faith and troth +Sworn to us in your younger enterprise. + +KING HENRY IV: +These things indeed you have articulate, +Proclaim'd at market-crosses, read in churches, +To face the garment of rebellion +With some fine colour that may please the eye +Of fickle changelings and poor discontents, +Which gape and rub the elbow at the news +Of hurlyburly innovation: +And never yet did insurrection want +Such water-colours to impaint his cause; +Nor moody beggars, starving for a time +Of pellmell havoc and confusion. + +PRINCE HENRY: +In both your armies there is many a soul +Shall pay full dearly for this encounter, +If once they join in trial. Tell your nephew, +The Prince of Wales doth join with all the world +In praise of Henry Percy: by my hopes, +This present enterprise set off his head, +I do not think a braver gentleman, +More active-valiant or more valiant-young, +More daring or more bold, is now alive +To grace this latter age with noble deeds. +For my part, I may speak it to my shame, +I have a truant been to chivalry; +And so I hear he doth account me too; +Yet this before my father's majesty-- +I am content that he shall take the odds +Of his great name and estimation, +And will, to save the blood on either side, +Try fortune with him in a single fight. + +KING HENRY IV: +And, Prince of Wales, so dare we venture thee, +Albeit considerations infinite +Do make against it. No, good Worcester, no, +We love our people well; even those we love +That are misled upon your cousin's part; +And, will they take the offer of our grace, +Both he and they and you, every man +Shall be my friend again and I'll be his: +So tell your cousin, and bring me word +What he will do: but if he will not yield, +Rebuke and dread correction wait on us +And they shall do their office. So, be gone; +We will not now be troubled with reply: +We offer fair; take it advisedly. + +PRINCE HENRY: +It will not be accepted, on my life: +The Douglas and the Hotspur both together +Are confident against the world in arms. + +KING HENRY IV: +Hence, therefore, every leader to his charge; +For, on their answer, will we set on them: +And God befriend us, as our cause is just! + +FALSTAFF: +Hal, if thou see me down in the battle and bestride +me, so; 'tis a point of friendship. + +PRINCE HENRY: +Nothing but a colossus can do thee that friendship. +Say thy prayers, and farewell. + +FALSTAFF: +I would 'twere bed-time, Hal, and all well. + +PRINCE HENRY: +Why, thou owest God a death. + +FALSTAFF: +'Tis not due yet; I would be loath to pay him before +his day. What need I be so forward with him that +calls not on me? Well, 'tis no matter; honour pricks +me on. Yea, but how if honour prick me off when I +come on? how then? Can honour set to a leg? no: or +an arm? no: or take away the grief of a wound? no. +Honour hath no skill in surgery, then? no. What is +honour? a word. What is in that word honour? what +is that honour? air. A trim reckoning! Who hath it? +he that died o' Wednesday. Doth he feel it? no. +Doth he hear it? no. 'Tis insensible, then. Yea, +to the dead. But will it not live with the living? +no. Why? detraction will not suffer it. Therefore +I'll none of it. Honour is a mere scutcheon: and so +ends my catechism. + +EARL OF WORCESTER: +O, no, my nephew must not know, Sir Richard, +The liberal and kind offer of the king. + +VERNON: +'Twere best he did. + +EARL OF WORCESTER: +Then are we all undone. +It is not possible, it cannot be, +The king should keep his word in loving us; +He will suspect us still and find a time +To punish this offence in other faults: +Suspicion all our lives shall be stuck full of eyes; +For treason is but trusted like the fox, +Who, ne'er so tame, so cherish'd and lock'd up, +Will have a wild trick of his ancestors. +Look how we can, or sad or merrily, +Interpretation will misquote our looks, +And we shall feed like oxen at a stall, +The better cherish'd, still the nearer death. +My nephew's trespass may be well forgot; +it hath the excuse of youth and heat of blood, +And an adopted name of privilege, +A hair-brain'd Hotspur, govern'd by a spleen: +All his offences live upon my head +And on his father's; we did train him on, +And, his corruption being ta'en from us, +We, as the spring of all, shall pay for all. +Therefore, good cousin, let not Harry know, +In any case, the offer of the king. + +VERNON: +Deliver what you will; I'll say 'tis so. +Here comes your cousin. + +HOTSPUR: +My uncle is return'd: +Deliver up my Lord of Westmoreland. +Uncle, what news? + +EARL OF WORCESTER: +The king will bid you battle presently. + +EARL OF DOUGLAS: +Defy him by the Lord of Westmoreland. + +HOTSPUR: +Lord Douglas, go you and tell him so. + +EARL OF DOUGLAS: +Marry, and shall, and very willingly. + +EARL OF WORCESTER: +There is no seeming mercy in the king. + +HOTSPUR: +Did you beg any? God forbid! + +EARL OF WORCESTER: +I told him gently of our grievances, +Of his oath-breaking; which he mended thus, +By now forswearing that he is forsworn: +He calls us rebels, traitors; and will scourge +With haughty arms this hateful name in us. + +EARL OF DOUGLAS: +Arm, gentlemen; to arms! for I have thrown +A brave defiance in King Henry's teeth, +And Westmoreland, that was engaged, did bear it; +Which cannot choose but bring him quickly on. + +EARL OF WORCESTER: +The Prince of Wales stepp'd forth before the king, +And, nephew, challenged you to single fight. + +HOTSPUR: +O, would the quarrel lay upon our heads, +And that no man might draw short breath today +But I and Harry Monmouth! Tell me, tell me, +How show'd his tasking? seem'd it in contempt? + +VERNON: +No, by my soul; I never in my life +Did hear a challenge urged more modestly, +Unless a brother should a brother dare +To gentle exercise and proof of arms. +He gave you all the duties of a man; +Trimm'd up your praises with a princely tongue, +Spoke to your deservings like a chronicle, +Making you ever better than his praise +By still dispraising praise valued in you; +And, which became him like a prince indeed, +He made a blushing cital of himself; +And chid his truant youth with such a grace +As if he master'd there a double spirit. +Of teaching and of learning instantly. +There did he pause: but let me tell the world, +If he outlive the envy of this day, +England did never owe so sweet a hope, +So much misconstrued in his wantonness. + +HOTSPUR: +Cousin, I think thou art enamoured +On his follies: never did I hear +Of any prince so wild a libertine. +But be he as he will, yet once ere night +I will embrace him with a soldier's arm, +That he shall shrink under my courtesy. +Arm, arm with speed: and, fellows, soldiers, friends, +Better consider what you have to do +Than I, that have not well the gift of tongue, +Can lift your blood up with persuasion. + +Messenger: +My lord, here are letters for you. + +HOTSPUR: +I cannot read them now. +O gentlemen, the time of life is short! +To spend that shortness basely were too long, +If life did ride upon a dial's point, +Still ending at the arrival of an hour. +An if we live, we live to tread on kings; +If die, brave death, when princes die with us! +Now, for our consciences, the arms are fair, +When the intent of bearing them is just. + +Messenger: +My lord, prepare; the king comes on apace. + +HOTSPUR: +I thank him, that he cuts me from my tale, +For I profess not talking; only this-- +Let each man do his best: and here draw I +A sword, whose temper I intend to stain +With the best blood that I can meet withal +In the adventure of this perilous day. +Now, Esperance! Percy! and set on. +Sound all the lofty instruments of war, +And by that music let us all embrace; +For, heaven to earth, some of us never shall +A second time do such a courtesy. + +SIR WALTER BLUNT: +What is thy name, that in the battle thus +Thou crossest me? what honour dost thou seek +Upon my head? + +EARL OF DOUGLAS: +Know then, my name is Douglas; +And I do haunt thee in the battle thus +Because some tell me that thou art a king. + +SIR WALTER BLUNT: +They tell thee true. + +EARL OF DOUGLAS: +The Lord of Stafford dear to-day hath bought +Thy likeness, for instead of thee, King Harry, +This sword hath ended him: so shall it thee, +Unless thou yield thee as my prisoner. + +SIR WALTER BLUNT: +I was not born a yielder, thou proud Scot; +And thou shalt find a king that will revenge +Lord Stafford's death. + +HOTSPUR: +O Douglas, hadst thou fought at Holmedon thus, +never had triumph'd upon a Scot. + +EARL OF DOUGLAS: +All's done, all's won; here breathless lies the king. + +HOTSPUR: +Where? + +EARL OF DOUGLAS: +Here. + +HOTSPUR: +This, Douglas? no: I know this face full well: +A gallant knight he was, his name was Blunt; +Semblably furnish'd like the king himself. + +EARL OF DOUGLAS: +A fool go with thy soul, whither it goes! +A borrow'd title hast thou bought too dear: +Why didst thou tell me that thou wert a king? + +HOTSPUR: +The king hath many marching in his coats. + +EARL OF DOUGLAS: +Now, by my sword, I will kill all his coats; +I'll murder all his wardrobe, piece by piece, +Until I meet the king. + +HOTSPUR: +Up, and away! +Our soldiers stand full fairly for the day. + +FALSTAFF: +Though I could 'scape shot-free at London, I fear +the shot here; here's no scoring but upon the pate. +Soft! who are you? Sir Walter Blunt: there's honour +for you! here's no vanity! I am as hot as moulten +lead, and as heavy too: God keep lead out of me! I +need no more weight than mine own bowels. I have +led my ragamuffins where they are peppered: there's +not three of my hundred and fifty left alive; and +they are for the town's end, to beg during life. +But who comes here? + +PRINCE HENRY: +What, stand'st thou idle here? lend me thy sword: +Many a nobleman lies stark and stiff +Under the hoofs of vaunting enemies, +Whose deaths are yet unrevenged: I prithee, +lend me thy sword. + +FALSTAFF: +O Hal, I prithee, give me leave to breathe awhile. +Turk Gregory never did such deeds in arms as I have +done this day. I have paid Percy, I have made him sure. + +PRINCE HENRY: +He is, indeed; and living to kill thee. I prithee, +lend me thy sword. + +FALSTAFF: +Nay, before God, Hal, if Percy be alive, thou get'st +not my sword; but take my pistol, if thou wilt. + +PRINCE HENRY: +Give it to me: what, is it in the case? + +FALSTAFF: +Ay, Hal; 'tis hot, 'tis hot; there's that will sack a city. + +PRINCE HENRY: +What, is it a time to jest and dally now? + +FALSTAFF: +Well, if Percy be alive, I'll pierce him. If he do +come in my way, so: if he do not, if I come in his +willingly, let him make a carbonado of me. I like +not such grinning honour as Sir Walter hath: give me +life: which if I can save, so; if not, honour comes +unlooked for, and there's an end. + +KING HENRY IV: +I prithee, +Harry, withdraw thyself; thou bleed'st too much. +Lord John of Lancaster, go you with him. + +LANCASTER: +Not I, my lord, unless I did bleed too. + +PRINCE HENRY: +I beseech your majesty, make up, +Lest your retirement do amaze your friends. + +KING HENRY IV: +I will do so. +My Lord of Westmoreland, lead him to his tent. + +WESTMORELAND: +Come, my lord, I'll lead you to your tent. + +PRINCE HENRY: +Lead me, my lord? I do not need your help: +And God forbid a shallow scratch should drive +The Prince of Wales from such a field as this, +Where stain'd nobility lies trodden on, +and rebels' arms triumph in massacres! + +LANCASTER: +We breathe too long: come, cousin Westmoreland, +Our duty this way lies; for God's sake come. + +PRINCE HENRY: +By God, thou hast deceived me, Lancaster; +I did not think thee lord of such a spirit: +Before, I loved thee as a brother, John; +But now, I do respect thee as my soul. + +KING HENRY IV: +I saw him hold Lord Percy at the point +With lustier maintenance than I did look for +Of such an ungrown warrior. + +PRINCE HENRY: +O, this boy +Lends mettle to us all! + +EARL OF DOUGLAS: +Another king! they grow like Hydra's heads: +I am the Douglas, fatal to all those +That wear those colours on them: what art thou, +That counterfeit'st the person of a king? + +KING HENRY IV: +The king himself; who, Douglas, grieves at heart +So many of his shadows thou hast met +And not the very king. I have two boys +Seek Percy and thyself about the field: +But, seeing thou fall'st on me so luckily, +I will assay thee: so, defend thyself. + +EARL OF DOUGLAS: +I fear thou art another counterfeit; +And yet, in faith, thou bear'st thee like a king: +But mine I am sure thou art, whoe'er thou be, +And thus I win thee. + +PRINCE HENRY: +Hold up thy head, vile Scot, or thou art like +Never to hold it up again! the spirits +Of valiant Shirley, Stafford, Blunt, are in my arms: +It is the Prince of Wales that threatens thee; +Who never promiseth but he means to pay. +Cheerly, my lord how fares your grace? +Sir Nicholas Gawsey hath for succor sent, +And so hath Clifton: I'll to Clifton straight. + +KING HENRY IV: +Stay, and breathe awhile: +Thou hast redeem'd thy lost opinion, +And show'd thou makest some tender of my life, +In this fair rescue thou hast brought to me. + +PRINCE HENRY: +O God! they did me too much injury +That ever said I hearken'd for your death. +If it were so, I might have let alone +The insulting hand of Douglas over you, +Which would have been as speedy in your end +As all the poisonous potions in the world +And saved the treacherous labour of your son. + +KING HENRY IV: +Make up to Clifton: I'll to Sir Nicholas Gawsey. + +HOTSPUR: +If I mistake not, thou art Harry Monmouth. + +PRINCE HENRY: +Thou speak'st as if I would deny my name. + +HOTSPUR: +My name is Harry Percy. + +PRINCE HENRY: +Why, then I see +A very valiant rebel of the name. +I am the Prince of Wales; and think not, Percy, +To share with me in glory any more: +Two stars keep not their motion in one sphere; +Nor can one England brook a double reign, +Of Harry Percy and the Prince of Wales. + +HOTSPUR: +Nor shall it, Harry; for the hour is come +To end the one of us; and would to God +Thy name in arms were now as great as mine! + +PRINCE HENRY: +I'll make it greater ere I part from thee; +And all the budding honours on thy crest +I'll crop, to make a garland for my head. + +HOTSPUR: +I can no longer brook thy vanities. + +FALSTAFF: +Well said, Hal! to it Hal! Nay, you shall find no +boy's play here, I can tell you. + +HOTSPUR: +O, Harry, thou hast robb'd me of my youth! +I better brook the loss of brittle life +Than those proud titles thou hast won of me; +They wound my thoughts worse than sword my flesh: +But thought's the slave of life, and life time's fool; +And time, that takes survey of all the world, +Must have a stop. O, I could prophesy, +But that the earthy and cold hand of death +Lies on my tongue: no, Percy, thou art dust +And food for-- + +PRINCE HENRY: +For worms, brave Percy: fare thee well, great heart! +Ill-weaved ambition, how much art thou shrunk! +When that this body did contain a spirit, +A kingdom for it was too small a bound; +But now two paces of the vilest earth +Is room enough: this earth that bears thee dead +Bears not alive so stout a gentleman. +If thou wert sensible of courtesy, +I should not make so dear a show of zeal: +But let my favours hide thy mangled face; +And, even in thy behalf, I'll thank myself +For doing these fair rites of tenderness. +Adieu, and take thy praise with thee to heaven! +Thy ignominy sleep with thee in the grave, +But not remember'd in thy epitaph! +What, old acquaintance! could not all this flesh +Keep in a little life? Poor Jack, farewell! +I could have better spared a better man: +O, I should have a heavy miss of thee, +If I were much in love with vanity! +Death hath not struck so fat a deer to-day, +Though many dearer, in this bloody fray. +Embowell'd will I see thee by and by: +Till then in blood by noble Percy lie. + +FALSTAFF: + +PRINCE HENRY: +Come, brother John; full bravely hast thou flesh'd +Thy maiden sword. + +LANCASTER: +But, soft! whom have we here? +Did you not tell me this fat man was dead? + +PRINCE HENRY: +I did; I saw him dead, +Breathless and bleeding on the ground. Art +thou alive? +Or is it fantasy that plays upon our eyesight? +I prithee, speak; we will not trust our eyes +Without our ears: thou art not what thou seem'st. + +FALSTAFF: +No, that's certain; I am not a double man: but if I +be not Jack Falstaff, then am I a Jack. There is Percy: +if your father will do me any honour, so; if not, let +him kill the next Percy himself. I look to be either +earl or duke, I can assure you. + +PRINCE HENRY: +Why, Percy I killed myself and saw thee dead. + +FALSTAFF: +Didst thou? Lord, Lord, how this world is given to +lying! I grant you I was down and out of breath; +and so was he: but we rose both at an instant and +fought a long hour by Shrewsbury clock. If I may be +believed, so; if not, let them that should reward +valour bear the sin upon their own heads. I'll take +it upon my death, I gave him this wound in the +thigh: if the man were alive and would deny it, +'zounds, I would make him eat a piece of my sword. + +LANCASTER: +This is the strangest tale that ever I heard. + +PRINCE HENRY: +This is the strangest fellow, brother John. +Come, bring your luggage nobly on your back: +For my part, if a lie may do thee grace, +I'll gild it with the happiest terms I have. +The trumpet sounds retreat; the day is ours. +Come, brother, let us to the highest of the field, +To see what friends are living, who are dead. + +FALSTAFF: +I'll follow, as they say, for reward. He that +rewards me, God reward him! If I do grow great, +I'll grow less; for I'll purge, and leave sack, and +live cleanly as a nobleman should do. + +KING HENRY IV: +Thus ever did rebellion find rebuke. +Ill-spirited Worcester! did not we send grace, +Pardon and terms of love to all of you? +And wouldst thou turn our offers contrary? +Misuse the tenor of thy kinsman's trust? +Three knights upon our party slain to-day, +A noble earl and many a creature else +Had been alive this hour, +If like a Christian thou hadst truly borne +Betwixt our armies true intelligence. + +EARL OF WORCESTER: +What I have done my safety urged me to; +And I embrace this fortune patiently, +Since not to be avoided it falls on me. + +KING HENRY IV: +Bear Worcester to the death and Vernon too: +Other offenders we will pause upon. +How goes the field? + +PRINCE HENRY: +The noble Scot, Lord Douglas, when he saw +The fortune of the day quite turn'd from him, +The noble Percy slain, and all his men +Upon the foot of fear, fled with the rest; +And falling from a hill, he was so bruised +That the pursuers took him. At my tent +The Douglas is; and I beseech your grace +I may dispose of him. + +KING HENRY IV: +With all my heart. + +PRINCE HENRY: +Then, brother John of Lancaster, to you +This honourable bounty shall belong: +Go to the Douglas, and deliver him +Up to his pleasure, ransomless and free: +His valour shown upon our crests to-day +Hath taught us how to cherish such high deeds +Even in the bosom of our adversaries. + +LANCASTER: +I thank your grace for this high courtesy, +Which I shall give away immediately. + +KING HENRY IV: +Then this remains, that we divide our power. +You, son John, and my cousin Westmoreland +Towards York shall bend you with your dearest speed, +To meet Northumberland and the prelate Scroop, +Who, as we hear, are busily in arms: +Myself and you, son Harry, will towards Wales, +To fight with Glendower and the Earl of March. +Rebellion in this land shall lose his sway, +Meeting the cheque of such another day: +And since this business so fair is done, +Let us not leave till all our own be won. + +BERNARDO: +Who's there? + +FRANCISCO: +Nay, answer me: stand, and unfold yourself. + +BERNARDO: +Long live the king! + +FRANCISCO: +Bernardo? + +BERNARDO: +He. + +FRANCISCO: +You come most carefully upon your hour. + +BERNARDO: +'Tis now struck twelve; get thee to bed, Francisco. + +FRANCISCO: +For this relief much thanks: 'tis bitter cold, +And I am sick at heart. + +BERNARDO: +Have you had quiet guard? + +FRANCISCO: +Not a mouse stirring. + +BERNARDO: +Well, good night. +If you do meet Horatio and Marcellus, +The rivals of my watch, bid them make haste. + +FRANCISCO: +I think I hear them. Stand, ho! Who's there? + +HORATIO: +Friends to this ground. + +MARCELLUS: +And liegemen to the Dane. + +FRANCISCO: +Give you good night. + +MARCELLUS: +O, farewell, honest soldier: +Who hath relieved you? + +FRANCISCO: +Bernardo has my place. +Give you good night. + +MARCELLUS: +Holla! Bernardo! + +BERNARDO: +Say, +What, is Horatio there? + +HORATIO: +A piece of him. + +BERNARDO: +Welcome, Horatio: welcome, good Marcellus. + +MARCELLUS: +What, has this thing appear'd again to-night? + +BERNARDO: +I have seen nothing. + +MARCELLUS: +Horatio says 'tis but our fantasy, +And will not let belief take hold of him +Touching this dreaded sight, twice seen of us: +Therefore I have entreated him along +With us to watch the minutes of this night; +That if again this apparition come, +He may approve our eyes and speak to it. + +HORATIO: +Tush, tush, 'twill not appear. + +BERNARDO: +Sit down awhile; +And let us once again assail your ears, +That are so fortified against our story +What we have two nights seen. + +HORATIO: +Well, sit we down, +And let us hear Bernardo speak of this. + +BERNARDO: +Last night of all, +When yond same star that's westward from the pole +Had made his course to illume that part of heaven +Where now it burns, Marcellus and myself, +The bell then beating one,-- + +MARCELLUS: +Peace, break thee off; look, where it comes again! + +BERNARDO: +In the same figure, like the king that's dead. + +MARCELLUS: +Thou art a scholar; speak to it, Horatio. + +BERNARDO: +Looks it not like the king? mark it, Horatio. + +HORATIO: +Most like: it harrows me with fear and wonder. + +BERNARDO: +It would be spoke to. + +MARCELLUS: +Question it, Horatio. + +HORATIO: +What art thou that usurp'st this time of night, +Together with that fair and warlike form +In which the majesty of buried Denmark +Did sometimes march? by heaven I charge thee, speak! + +MARCELLUS: +It is offended. + +BERNARDO: +See, it stalks away! + +HORATIO: +Stay! speak, speak! I charge thee, speak! + +MARCELLUS: +'Tis gone, and will not answer. + +BERNARDO: +How now, Horatio! you tremble and look pale: +Is not this something more than fantasy? +What think you on't? + +HORATIO: +Before my God, I might not this believe +Without the sensible and true avouch +Of mine own eyes. + +MARCELLUS: +Is it not like the king? + +HORATIO: +As thou art to thyself: +Such was the very armour he had on +When he the ambitious Norway combated; +So frown'd he once, when, in an angry parle, +He smote the sledded Polacks on the ice. +'Tis strange. + +MARCELLUS: +Thus twice before, and jump at this dead hour, +With martial stalk hath he gone by our watch. + +HORATIO: +In what particular thought to work I know not; +But in the gross and scope of my opinion, +This bodes some strange eruption to our state. + +MARCELLUS: +Good now, sit down, and tell me, he that knows, +Why this same strict and most observant watch +So nightly toils the subject of the land, +And why such daily cast of brazen cannon, +And foreign mart for implements of war; +Why such impress of shipwrights, whose sore task +Does not divide the Sunday from the week; +What might be toward, that this sweaty haste +Doth make the night joint-labourer with the day: +Who is't that can inform me? + +HORATIO: +That can I; +At least, the whisper goes so. Our last king, +Whose image even but now appear'd to us, +Was, as you know, by Fortinbras of Norway, +Thereto prick'd on by a most emulate pride, +Dared to the combat; in which our valiant Hamlet-- +For so this side of our known world esteem'd him-- +Did slay this Fortinbras; who by a seal'd compact, +Well ratified by law and heraldry, +Did forfeit, with his life, all those his lands +Which he stood seized of, to the conqueror: +Against the which, a moiety competent +Was gaged by our king; which had return'd +To the inheritance of Fortinbras, +Had he been vanquisher; as, by the same covenant, +And carriage of the article design'd, +His fell to Hamlet. Now, sir, young Fortinbras, +Of unimproved mettle hot and full, +Hath in the skirts of Norway here and there +Shark'd up a list of lawless resolutes, +For food and diet, to some enterprise +That hath a stomach in't; which is no other-- +As it doth well appear unto our state-- +But to recover of us, by strong hand +And terms compulsatory, those foresaid lands +So by his father lost: and this, I take it, +Is the main motive of our preparations, +The source of this our watch and the chief head +Of this post-haste and romage in the land. + +BERNARDO: +I think it be no other but e'en so: +Well may it sort that this portentous figure +Comes armed through our watch; so like the king +That was and is the question of these wars. + +HORATIO: +A mote it is to trouble the mind's eye. +In the most high and palmy state of Rome, +A little ere the mightiest Julius fell, +The graves stood tenantless and the sheeted dead +Did squeak and gibber in the Roman streets: +As stars with trains of fire and dews of blood, +Disasters in the sun; and the moist star +Upon whose influence Neptune's empire stands +Was sick almost to doomsday with eclipse: +And even the like precurse of fierce events, +As harbingers preceding still the fates +And prologue to the omen coming on, +Have heaven and earth together demonstrated +Unto our climatures and countrymen.-- +But soft, behold! lo, where it comes again! +I'll cross it, though it blast me. Stay, illusion! +If thou hast any sound, or use of voice, +Speak to me: +If there be any good thing to be done, +That may to thee do ease and grace to me, +Speak to me: +If thou art privy to thy country's fate, +Which, happily, foreknowing may avoid, O, speak! +Or if thou hast uphoarded in thy life +Extorted treasure in the womb of earth, +For which, they say, you spirits oft walk in death, +Speak of it: stay, and speak! Stop it, Marcellus. + +MARCELLUS: +Shall I strike at it with my partisan? + +HORATIO: +Do, if it will not stand. + +BERNARDO: +'Tis here! + +HORATIO: +'Tis here! + +MARCELLUS: +'Tis gone! +We do it wrong, being so majestical, +To offer it the show of violence; +For it is, as the air, invulnerable, +And our vain blows malicious mockery. + +BERNARDO: +It was about to speak, when the cock crew. + +HORATIO: +And then it started like a guilty thing +Upon a fearful summons. I have heard, +The cock, that is the trumpet to the morn, +Doth with his lofty and shrill-sounding throat +Awake the god of day; and, at his warning, +Whether in sea or fire, in earth or air, +The extravagant and erring spirit hies +To his confine: and of the truth herein +This present object made probation. + +MARCELLUS: +It faded on the crowing of the cock. +Some say that ever 'gainst that season comes +Wherein our Saviour's birth is celebrated, +The bird of dawning singeth all night long: +And then, they say, no spirit dares stir abroad; +The nights are wholesome; then no planets strike, +No fairy takes, nor witch hath power to charm, +So hallow'd and so gracious is the time. + +HORATIO: +So have I heard and do in part believe it. +But, look, the morn, in russet mantle clad, +Walks o'er the dew of yon high eastward hill: +Break we our watch up; and by my advice, +Let us impart what we have seen to-night +Unto young Hamlet; for, upon my life, +This spirit, dumb to us, will speak to him. +Do you consent we shall acquaint him with it, +As needful in our loves, fitting our duty? + +MARCELLUS: +Let's do't, I pray; and I this morning know +Where we shall find him most conveniently. + +KING CLAUDIUS: +Though yet of Hamlet our dear brother's death +The memory be green, and that it us befitted +To bear our hearts in grief and our whole kingdom +To be contracted in one brow of woe, +Yet so far hath discretion fought with nature +That we with wisest sorrow think on him, +Together with remembrance of ourselves. +Therefore our sometime sister, now our queen, +The imperial jointress to this warlike state, +Have we, as 'twere with a defeated joy,-- +With an auspicious and a dropping eye, +With mirth in funeral and with dirge in marriage, +In equal scale weighing delight and dole,-- +Taken to wife: nor have we herein barr'd +Your better wisdoms, which have freely gone +With this affair along. For all, our thanks. +Now follows, that you know, young Fortinbras, +Holding a weak supposal of our worth, +Or thinking by our late dear brother's death +Our state to be disjoint and out of frame, +Colleagued with the dream of his advantage, +He hath not fail'd to pester us with message, +Importing the surrender of those lands +Lost by his father, with all bonds of law, +To our most valiant brother. So much for him. +Now for ourself and for this time of meeting: +Thus much the business is: we have here writ +To Norway, uncle of young Fortinbras,-- +Who, impotent and bed-rid, scarcely hears +Of this his nephew's purpose,--to suppress +His further gait herein; in that the levies, +The lists and full proportions, are all made +Out of his subject: and we here dispatch +You, good Cornelius, and you, Voltimand, +For bearers of this greeting to old Norway; +Giving to you no further personal power +To business with the king, more than the scope +Of these delated articles allow. +Farewell, and let your haste commend your duty. + +CORNELIUS: +In that and all things will we show our duty. + +KING CLAUDIUS: +We doubt it nothing: heartily farewell. +And now, Laertes, what's the news with you? +You told us of some suit; what is't, Laertes? +You cannot speak of reason to the Dane, +And loose your voice: what wouldst thou beg, Laertes, +That shall not be my offer, not thy asking? +The head is not more native to the heart, +The hand more instrumental to the mouth, +Than is the throne of Denmark to thy father. +What wouldst thou have, Laertes? + +LAERTES: +My dread lord, +Your leave and favour to return to France; +From whence though willingly I came to Denmark, +To show my duty in your coronation, +Yet now, I must confess, that duty done, +My thoughts and wishes bend again toward France +And bow them to your gracious leave and pardon. + +KING CLAUDIUS: +Have you your father's leave? What says Polonius? + +LORD POLONIUS: +He hath, my lord, wrung from me my slow leave +By laboursome petition, and at last +Upon his will I seal'd my hard consent: +I do beseech you, give him leave to go. + +KING CLAUDIUS: +Take thy fair hour, Laertes; time be thine, +And thy best graces spend it at thy will! +But now, my cousin Hamlet, and my son,-- + +HAMLET: + +KING CLAUDIUS: +How is it that the clouds still hang on you? + +HAMLET: +Not so, my lord; I am too much i' the sun. + +QUEEN GERTRUDE: +Good Hamlet, cast thy nighted colour off, +And let thine eye look like a friend on Denmark. +Do not for ever with thy vailed lids +Seek for thy noble father in the dust: +Thou know'st 'tis common; all that lives must die, +Passing through nature to eternity. + +HAMLET: +Ay, madam, it is common. + +QUEEN GERTRUDE: +If it be, +Why seems it so particular with thee? + +HAMLET: +Seems, madam! nay it is; I know not 'seems.' +'Tis not alone my inky cloak, good mother, +Nor customary suits of solemn black, +Nor windy suspiration of forced breath, +No, nor the fruitful river in the eye, +Nor the dejected 'havior of the visage, +Together with all forms, moods, shapes of grief, +That can denote me truly: these indeed seem, +For they are actions that a man might play: +But I have that within which passeth show; +These but the trappings and the suits of woe. + +KING CLAUDIUS: +'Tis sweet and commendable in your nature, Hamlet, +To give these mourning duties to your father: +But, you must know, your father lost a father; +That father lost, lost his, and the survivor bound +In filial obligation for some term +To do obsequious sorrow: but to persever +In obstinate condolement is a course +Of impious stubbornness; 'tis unmanly grief; +It shows a will most incorrect to heaven, +A heart unfortified, a mind impatient, +An understanding simple and unschool'd: +For what we know must be and is as common +As any the most vulgar thing to sense, +Why should we in our peevish opposition +Take it to heart? Fie! 'tis a fault to heaven, +A fault against the dead, a fault to nature, +To reason most absurd: whose common theme +Is death of fathers, and who still hath cried, +From the first corse till he that died to-day, +'This must be so.' We pray you, throw to earth +This unprevailing woe, and think of us +As of a father: for let the world take note, +You are the most immediate to our throne; +And with no less nobility of love +Than that which dearest father bears his son, +Do I impart toward you. For your intent +In going back to school in Wittenberg, +It is most retrograde to our desire: +And we beseech you, bend you to remain +Here, in the cheer and comfort of our eye, +Our chiefest courtier, cousin, and our son. + +QUEEN GERTRUDE: +Let not thy mother lose her prayers, Hamlet: +I pray thee, stay with us; go not to Wittenberg. + +HAMLET: +I shall in all my best obey you, madam. + +KING CLAUDIUS: +Why, 'tis a loving and a fair reply: +Be as ourself in Denmark. Madam, come; +This gentle and unforced accord of Hamlet +Sits smiling to my heart: in grace whereof, +No jocund health that Denmark drinks to-day, +But the great cannon to the clouds shall tell, +And the king's rouse the heavens all bruit again, +Re-speaking earthly thunder. Come away. + +HAMLET: +O, that this too too solid flesh would melt +Thaw and resolve itself into a dew! +Or that the Everlasting had not fix'd +His canon 'gainst self-slaughter! O God! God! +How weary, stale, flat and unprofitable, +Seem to me all the uses of this world! +Fie on't! ah fie! 'tis an unweeded garden, +That grows to seed; things rank and gross in nature +Possess it merely. That it should come to this! +But two months dead: nay, not so much, not two: +So excellent a king; that was, to this, +Hyperion to a satyr; so loving to my mother +That he might not beteem the winds of heaven +Visit her face too roughly. Heaven and earth! +Must I remember? why, she would hang on him, +As if increase of appetite had grown +By what it fed on: and yet, within a month-- +Let me not think on't--Frailty, thy name is woman!-- +A little month, or ere those shoes were old +With which she follow'd my poor father's body, +Like Niobe, all tears:--why she, even she-- +O, God! a beast, that wants discourse of reason, +Would have mourn'd longer--married with my uncle, +My father's brother, but no more like my father +Than I to Hercules: within a month: +Ere yet the salt of most unrighteous tears +Had left the flushing in her galled eyes, +She married. O, most wicked speed, to post +With such dexterity to incestuous sheets! +It is not nor it cannot come to good: +But break, my heart; for I must hold my tongue. + +HORATIO: +Hail to your lordship! + +HAMLET: +I am glad to see you well: +Horatio,--or I do forget myself. + +HORATIO: +The same, my lord, and your poor servant ever. + +HAMLET: +Sir, my good friend; I'll change that name with you: +And what make you from Wittenberg, Horatio? Marcellus? + +MARCELLUS: +My good lord-- + +HAMLET: +I am very glad to see you. Good even, sir. +But what, in faith, make you from Wittenberg? + +HORATIO: +A truant disposition, good my lord. + +HAMLET: +I would not hear your enemy say so, +Nor shall you do mine ear that violence, +To make it truster of your own report +Against yourself: I know you are no truant. +But what is your affair in Elsinore? +We'll teach you to drink deep ere you depart. + +HORATIO: +My lord, I came to see your father's funeral. + +HAMLET: +I pray thee, do not mock me, fellow-student; +I think it was to see my mother's wedding. + +HORATIO: +Indeed, my lord, it follow'd hard upon. + +HAMLET: +Thrift, thrift, Horatio! the funeral baked meats +Did coldly furnish forth the marriage tables. +Would I had met my dearest foe in heaven +Or ever I had seen that day, Horatio! +My father!--methinks I see my father. + +HORATIO: +Where, my lord? + +HAMLET: +In my mind's eye, Horatio. + +HORATIO: +I saw him once; he was a goodly king. + +HAMLET: +He was a man, take him for all in all, +I shall not look upon his like again. + +HORATIO: +My lord, I think I saw him yesternight. + +HAMLET: +Saw? who? + +HORATIO: +My lord, the king your father. + +HAMLET: +The king my father! + +HORATIO: +Season your admiration for awhile +With an attent ear, till I may deliver, +Upon the witness of these gentlemen, +This marvel to you. + +HAMLET: +For God's love, let me hear. + +HORATIO: +Two nights together had these gentlemen, +Marcellus and Bernardo, on their watch, +In the dead vast and middle of the night, +Been thus encounter'd. A figure like your father, +Armed at point exactly, cap-a-pe, +Appears before them, and with solemn march +Goes slow and stately by them: thrice he walk'd +By their oppress'd and fear-surprised eyes, +Within his truncheon's length; whilst they, distilled +Almost to jelly with the act of fear, +Stand dumb and speak not to him. This to me +In dreadful secrecy impart they did; +And I with them the third night kept the watch; +Where, as they had deliver'd, both in time, +Form of the thing, each word made true and good, +The apparition comes: I knew your father; +These hands are not more like. + +HAMLET: +But where was this? + +MARCELLUS: +My lord, upon the platform where we watch'd. + +HAMLET: +Did you not speak to it? + +HORATIO: +My lord, I did; +But answer made it none: yet once methought +It lifted up its head and did address +Itself to motion, like as it would speak; +But even then the morning cock crew loud, +And at the sound it shrunk in haste away, +And vanish'd from our sight. + +HAMLET: +'Tis very strange. + +HORATIO: +As I do live, my honour'd lord, 'tis true; +And we did think it writ down in our duty +To let you know of it. + +HAMLET: +Indeed, indeed, sirs, but this troubles me. +Hold you the watch to-night? + +MARCELLUS: +We do, my lord. + +HAMLET: +Arm'd, say you? + +MARCELLUS: +Arm'd, my lord. + +HAMLET: +From top to toe? + +MARCELLUS: +My lord, from head to foot. + +HAMLET: +Then saw you not his face? + +HORATIO: +O, yes, my lord; he wore his beaver up. + +HAMLET: +What, look'd he frowningly? + +HORATIO: +A countenance more in sorrow than in anger. + +HAMLET: +Pale or red? + +HORATIO: +Nay, very pale. + +HAMLET: +And fix'd his eyes upon you? + +HORATIO: +Most constantly. + +HAMLET: +I would I had been there. + +HORATIO: +It would have much amazed you. + +HAMLET: +Very like, very like. Stay'd it long? + +HORATIO: +While one with moderate haste might tell a hundred. + +MARCELLUS: +Longer, longer. + +HORATIO: +Not when I saw't. + +HAMLET: +His beard was grizzled--no? + +HORATIO: +It was, as I have seen it in his life, +A sable silver'd. + +HAMLET: +I will watch to-night; +Perchance 'twill walk again. + +HORATIO: +I warrant it will. + +HAMLET: +If it assume my noble father's person, +I'll speak to it, though hell itself should gape +And bid me hold my peace. I pray you all, +If you have hitherto conceal'd this sight, +Let it be tenable in your silence still; +And whatsoever else shall hap to-night, +Give it an understanding, but no tongue: +I will requite your loves. So, fare you well: +Upon the platform, 'twixt eleven and twelve, +I'll visit you. + +All: +Our duty to your honour. + +HAMLET: +Your loves, as mine to you: farewell. +My father's spirit in arms! all is not well; +I doubt some foul play: would the night were come! +Till then sit still, my soul: foul deeds will rise, +Though all the earth o'erwhelm them, to men's eyes. + +LAERTES: +My necessaries are embark'd: farewell: +And, sister, as the winds give benefit +And convoy is assistant, do not sleep, +But let me hear from you. + +OPHELIA: +Do you doubt that? + +LAERTES: +For Hamlet and the trifling of his favour, +Hold it a fashion and a toy in blood, +A violet in the youth of primy nature, +Forward, not permanent, sweet, not lasting, +The perfume and suppliance of a minute; No more. + +OPHELIA: +No more but so? + +LAERTES: +Think it no more; +For nature, crescent, does not grow alone +In thews and bulk, but, as this temple waxes, +The inward service of the mind and soul +Grows wide withal. Perhaps he loves you now, +And now no soil nor cautel doth besmirch +The virtue of his will: but you must fear, +His greatness weigh'd, his will is not his own; +For he himself is subject to his birth: +He may not, as unvalued persons do, +Carve for himself; for on his choice depends +The safety and health of this whole state; +And therefore must his choice be circumscribed +Unto the voice and yielding of that body +Whereof he is the head. Then if he says he loves you, +It fits your wisdom so far to believe it +As he in his particular act and place +May give his saying deed; which is no further +Than the main voice of Denmark goes withal. +Then weigh what loss your honour may sustain, +If with too credent ear you list his songs, +Or lose your heart, or your chaste treasure open +To his unmaster'd importunity. +Fear it, Ophelia, fear it, my dear sister, +And keep you in the rear of your affection, +Out of the shot and danger of desire. +The chariest maid is prodigal enough, +If she unmask her beauty to the moon: +Virtue itself 'scapes not calumnious strokes: +The canker galls the infants of the spring, +Too oft before their buttons be disclosed, +And in the morn and liquid dew of youth +Contagious blastments are most imminent. +Be wary then; best safety lies in fear: +Youth to itself rebels, though none else near. + +OPHELIA: +I shall the effect of this good lesson keep, +As watchman to my heart. But, good my brother, +Do not, as some ungracious pastors do, +Show me the steep and thorny way to heaven; +Whiles, like a puff'd and reckless libertine, +Himself the primrose path of dalliance treads, +And recks not his own rede. + +LAERTES: +O, fear me not. +I stay too long: but here my father comes. +A double blessing is a double grace, +Occasion smiles upon a second leave. + +LORD POLONIUS: +Yet here, Laertes! aboard, aboard, for shame! +The wind sits in the shoulder of your sail, +And you are stay'd for. There; my blessing with thee! +And these few precepts in thy memory +See thou character. Give thy thoughts no tongue, +Nor any unproportioned thought his act. +Be thou familiar, but by no means vulgar. +Those friends thou hast, and their adoption tried, +Grapple them to thy soul with hoops of steel; +But do not dull thy palm with entertainment +Of each new-hatch'd, unfledged comrade. Beware +Of entrance to a quarrel, but being in, +Bear't that the opposed may beware of thee. +Give every man thy ear, but few thy voice; +Take each man's censure, but reserve thy judgment. +Costly thy habit as thy purse can buy, +But not express'd in fancy; rich, not gaudy; +For the apparel oft proclaims the man, +And they in France of the best rank and station +Are of a most select and generous chief in that. +Neither a borrower nor a lender be; +For loan oft loses both itself and friend, +And borrowing dulls the edge of husbandry. +This above all: to thine ownself be true, +And it must follow, as the night the day, +Thou canst not then be false to any man. +Farewell: my blessing season this in thee! + +LAERTES: +Most humbly do I take my leave, my lord. + +LORD POLONIUS: +The time invites you; go; your servants tend. + +LAERTES: +Farewell, Ophelia; and remember well +What I have said to you. + +OPHELIA: +'Tis in my memory lock'd, +And you yourself shall keep the key of it. + +LAERTES: +Farewell. + +LORD POLONIUS: +What is't, Ophelia, be hath said to you? + +OPHELIA: +So please you, something touching the Lord Hamlet. + +LORD POLONIUS: +Marry, well bethought: +'Tis told me, he hath very oft of late +Given private time to you; and you yourself +Have of your audience been most free and bounteous: +If it be so, as so 'tis put on me, +And that in way of caution, I must tell you, +You do not understand yourself so clearly +As it behoves my daughter and your honour. +What is between you? give me up the truth. + +OPHELIA: +He hath, my lord, of late made many tenders +Of his affection to me. + +LORD POLONIUS: +Affection! pooh! you speak like a green girl, +Unsifted in such perilous circumstance. +Do you believe his tenders, as you call them? + +OPHELIA: +I do not know, my lord, what I should think. + +LORD POLONIUS: +Marry, I'll teach you: think yourself a baby; +That you have ta'en these tenders for true pay, +Which are not sterling. Tender yourself more dearly; +Or--not to crack the wind of the poor phrase, +Running it thus--you'll tender me a fool. + +OPHELIA: +My lord, he hath importuned me with love +In honourable fashion. + +LORD POLONIUS: +Ay, fashion you may call it; go to, go to. + +OPHELIA: +And hath given countenance to his speech, my lord, +With almost all the holy vows of heaven. + +LORD POLONIUS: +Ay, springes to catch woodcocks. I do know, +When the blood burns, how prodigal the soul +Lends the tongue vows: these blazes, daughter, +Giving more light than heat, extinct in both, +Even in their promise, as it is a-making, +You must not take for fire. From this time +Be somewhat scanter of your maiden presence; +Set your entreatments at a higher rate +Than a command to parley. For Lord Hamlet, +Believe so much in him, that he is young +And with a larger tether may he walk +Than may be given you: in few, Ophelia, +Do not believe his vows; for they are brokers, +Not of that dye which their investments show, +But mere implorators of unholy suits, +Breathing like sanctified and pious bawds, +The better to beguile. This is for all: +I would not, in plain terms, from this time forth, +Have you so slander any moment leisure, +As to give words or talk with the Lord Hamlet. +Look to't, I charge you: come your ways. + +OPHELIA: +I shall obey, my lord. + +HAMLET: +The air bites shrewdly; it is very cold. + +HORATIO: +It is a nipping and an eager air. + +HAMLET: +What hour now? + +HORATIO: +I think it lacks of twelve. + +HAMLET: +No, it is struck. + +HORATIO: +Indeed? I heard it not: then it draws near the season +Wherein the spirit held his wont to walk. +What does this mean, my lord? + +HAMLET: +The king doth wake to-night and takes his rouse, +Keeps wassail, and the swaggering up-spring reels; +And, as he drains his draughts of Rhenish down, +The kettle-drum and trumpet thus bray out +The triumph of his pledge. + +HORATIO: +Is it a custom? + +HAMLET: +Ay, marry, is't: +But to my mind, though I am native here +And to the manner born, it is a custom +More honour'd in the breach than the observance. +This heavy-headed revel east and west +Makes us traduced and tax'd of other nations: +They clepe us drunkards, and with swinish phrase +Soil our addition; and indeed it takes +From our achievements, though perform'd at height, +The pith and marrow of our attribute. +So, oft it chances in particular men, +That for some vicious mole of nature in them, +As, in their birth--wherein they are not guilty, +Since nature cannot choose his origin-- +By the o'ergrowth of some complexion, +Oft breaking down the pales and forts of reason, +Or by some habit that too much o'er-leavens +The form of plausive manners, that these men, +Carrying, I say, the stamp of one defect, +Being nature's livery, or fortune's star,-- +Their virtues else--be they as pure as grace, +As infinite as man may undergo-- +Shall in the general censure take corruption +From that particular fault: the dram of eale +Doth all the noble substance of a doubt +To his own scandal. + +HORATIO: +Look, my lord, it comes! + +HAMLET: +Angels and ministers of grace defend us! +Be thou a spirit of health or goblin damn'd, +Bring with thee airs from heaven or blasts from hell, +Be thy intents wicked or charitable, +Thou comest in such a questionable shape +That I will speak to thee: I'll call thee Hamlet, +King, father, royal Dane: O, answer me! +Let me not burst in ignorance; but tell +Why thy canonized bones, hearsed in death, +Have burst their cerements; why the sepulchre, +Wherein we saw thee quietly inurn'd, +Hath oped his ponderous and marble jaws, +To cast thee up again. What may this mean, +That thou, dead corse, again in complete steel +Revisit'st thus the glimpses of the moon, +Making night hideous; and we fools of nature +So horridly to shake our disposition +With thoughts beyond the reaches of our souls? +Say, why is this? wherefore? what should we do? + +HORATIO: +It beckons you to go away with it, +As if it some impartment did desire +To you alone. + +MARCELLUS: +Look, with what courteous action +It waves you to a more removed ground: +But do not go with it. + +HORATIO: +No, by no means. + +HAMLET: +It will not speak; then I will follow it. + +HORATIO: +Do not, my lord. + +HAMLET: +Why, what should be the fear? +I do not set my life in a pin's fee; +And for my soul, what can it do to that, +Being a thing immortal as itself? +It waves me forth again: I'll follow it. + +HORATIO: +What if it tempt you toward the flood, my lord, +Or to the dreadful summit of the cliff +That beetles o'er his base into the sea, +And there assume some other horrible form, +Which might deprive your sovereignty of reason +And draw you into madness? think of it: +The very place puts toys of desperation, +Without more motive, into every brain +That looks so many fathoms to the sea +And hears it roar beneath. + +HAMLET: +It waves me still. +Go on; I'll follow thee. + +MARCELLUS: +You shall not go, my lord. + +HAMLET: +Hold off your hands. + +HORATIO: +Be ruled; you shall not go. + +HAMLET: +My fate cries out, +And makes each petty artery in this body +As hardy as the Nemean lion's nerve. +Still am I call'd. Unhand me, gentlemen. +By heaven, I'll make a ghost of him that lets me! +I say, away! Go on; I'll follow thee. + +HORATIO: +He waxes desperate with imagination. + +MARCELLUS: +Let's follow; 'tis not fit thus to obey him. + +HORATIO: +Have after. To what issue will this come? + +MARCELLUS: +Something is rotten in the state of Denmark. + +HORATIO: +Heaven will direct it. + +MARCELLUS: +Nay, let's follow him. + +HAMLET: +Where wilt thou lead me? speak; I'll go no further. + +Ghost: +Mark me. + +HAMLET: +I will. + +Ghost: +My hour is almost come, +When I to sulphurous and tormenting flames +Must render up myself. + +HAMLET: +Alas, poor ghost! + +Ghost: +Pity me not, but lend thy serious hearing +To what I shall unfold. + +HAMLET: +Speak; I am bound to hear. + +Ghost: +So art thou to revenge, when thou shalt hear. + +HAMLET: +What? + +Ghost: +I am thy father's spirit, +Doom'd for a certain term to walk the night, +And for the day confined to fast in fires, +Till the foul crimes done in my days of nature +Are burnt and purged away. But that I am forbid +To tell the secrets of my prison-house, +I could a tale unfold whose lightest word +Would harrow up thy soul, freeze thy young blood, +Make thy two eyes, like stars, start from their spheres, +Thy knotted and combined locks to part +And each particular hair to stand on end, +Like quills upon the fretful porpentine: +But this eternal blazon must not be +To ears of flesh and blood. List, list, O, list! +If thou didst ever thy dear father love-- + +HAMLET: +O God! + +Ghost: +Revenge his foul and most unnatural murder. + +HAMLET: +Murder! + +Ghost: +Murder most foul, as in the best it is; +But this most foul, strange and unnatural. + +HAMLET: +Haste me to know't, that I, with wings as swift +As meditation or the thoughts of love, +May sweep to my revenge. + +Ghost: +I find thee apt; +And duller shouldst thou be than the fat weed +That roots itself in ease on Lethe wharf, +Wouldst thou not stir in this. Now, Hamlet, hear: +'Tis given out that, sleeping in my orchard, +A serpent stung me; so the whole ear of Denmark +Is by a forged process of my death +Rankly abused: but know, thou noble youth, +The serpent that did sting thy father's life +Now wears his crown. + +HAMLET: +O my prophetic soul! My uncle! + +Ghost: +Ay, that incestuous, that adulterate beast, +With witchcraft of his wit, with traitorous gifts,-- +O wicked wit and gifts, that have the power +So to seduce!--won to his shameful lust +The will of my most seeming-virtuous queen: +O Hamlet, what a falling-off was there! +From me, whose love was of that dignity +That it went hand in hand even with the vow +I made to her in marriage, and to decline +Upon a wretch whose natural gifts were poor +To those of mine! +But virtue, as it never will be moved, +Though lewdness court it in a shape of heaven, +So lust, though to a radiant angel link'd, +Will sate itself in a celestial bed, +And prey on garbage. +But, soft! methinks I scent the morning air; +Brief let me be. Sleeping within my orchard, +My custom always of the afternoon, +Upon my secure hour thy uncle stole, +With juice of cursed hebenon in a vial, +And in the porches of my ears did pour +The leperous distilment; whose effect +Holds such an enmity with blood of man +That swift as quicksilver it courses through +The natural gates and alleys of the body, +And with a sudden vigour doth posset +And curd, like eager droppings into milk, +The thin and wholesome blood: so did it mine; +And a most instant tetter bark'd about, +Most lazar-like, with vile and loathsome crust, +All my smooth body. +Thus was I, sleeping, by a brother's hand +Of life, of crown, of queen, at once dispatch'd: +Cut off even in the blossoms of my sin, +Unhousel'd, disappointed, unanel'd, +No reckoning made, but sent to my account +With all my imperfections on my head: +O, horrible! O, horrible! most horrible! +If thou hast nature in thee, bear it not; +Let not the royal bed of Denmark be +A couch for luxury and damned incest. +But, howsoever thou pursuest this act, +Taint not thy mind, nor let thy soul contrive +Against thy mother aught: leave her to heaven +And to those thorns that in her bosom lodge, +To prick and sting her. Fare thee well at once! +The glow-worm shows the matin to be near, +And 'gins to pale his uneffectual fire: +Adieu, adieu! Hamlet, remember me. + +HAMLET: +O all you host of heaven! O earth! what else? +And shall I couple hell? O, fie! Hold, hold, my heart; +And you, my sinews, grow not instant old, +But bear me stiffly up. Remember thee! +Ay, thou poor ghost, while memory holds a seat +In this distracted globe. Remember thee! +Yea, from the table of my memory +I'll wipe away all trivial fond records, +All saws of books, all forms, all pressures past, +That youth and observation copied there; +And thy commandment all alone shall live +Within the book and volume of my brain, +Unmix'd with baser matter: yes, by heaven! +O most pernicious woman! +O villain, villain, smiling, damned villain! +My tables,--meet it is I set it down, +That one may smile, and smile, and be a villain; +At least I'm sure it may be so in Denmark: +So, uncle, there you are. Now to my word; +It is 'Adieu, adieu! remember me.' +I have sworn 't. + +MARCELLUS: + +MARCELLUS: + +HORATIO: + +HAMLET: +So be it! + +HORATIO: + +HAMLET: +Hillo, ho, ho, boy! come, bird, come. + +MARCELLUS: +How is't, my noble lord? + +HORATIO: +What news, my lord? + +HAMLET: +O, wonderful! + +HORATIO: +Good my lord, tell it. + +HAMLET: +No; you'll reveal it. + +HORATIO: +Not I, my lord, by heaven. + +MARCELLUS: +Nor I, my lord. + +HAMLET: +How say you, then; would heart of man once think it? +But you'll be secret? + +HORATIO: +Ay, by heaven, my lord. + +HAMLET: +There's ne'er a villain dwelling in all Denmark +But he's an arrant knave. + +HORATIO: +There needs no ghost, my lord, come from the grave +To tell us this. + +HAMLET: +Why, right; you are i' the right; +And so, without more circumstance at all, +I hold it fit that we shake hands and part: +You, as your business and desire shall point you; +For every man has business and desire, +Such as it is; and for mine own poor part, +Look you, I'll go pray. + +HORATIO: +These are but wild and whirling words, my lord. + +HAMLET: +I'm sorry they offend you, heartily; +Yes, 'faith heartily. + +HORATIO: +There's no offence, my lord. + +HAMLET: +Yes, by Saint Patrick, but there is, Horatio, +And much offence too. Touching this vision here, +It is an honest ghost, that let me tell you: +For your desire to know what is between us, +O'ermaster 't as you may. And now, good friends, +As you are friends, scholars and soldiers, +Give me one poor request. + +HORATIO: +What is't, my lord? we will. + +HAMLET: +Never make known what you have seen to-night. + +HORATIO: +My lord, we will not. + +HAMLET: +Nay, but swear't. + +HORATIO: +In faith, +My lord, not I. + +MARCELLUS: +Nor I, my lord, in faith. + +HAMLET: +Upon my sword. + +MARCELLUS: +We have sworn, my lord, already. + +HAMLET: +Indeed, upon my sword, indeed. + +Ghost: + +HAMLET: +Ah, ha, boy! say'st thou so? art thou there, +truepenny? +Come on--you hear this fellow in the cellarage-- +Consent to swear. + +HORATIO: +Propose the oath, my lord. + +HAMLET: +Never to speak of this that you have seen, +Swear by my sword. + +Ghost: + +HAMLET: +Hic et ubique? then we'll shift our ground. +Come hither, gentlemen, +And lay your hands again upon my sword: +Never to speak of this that you have heard, +Swear by my sword. + +Ghost: + +HAMLET: +Well said, old mole! canst work i' the earth so fast? +A worthy pioner! Once more remove, good friends. + +HORATIO: +O day and night, but this is wondrous strange! + +HAMLET: +And therefore as a stranger give it welcome. +There are more things in heaven and earth, Horatio, +Than are dreamt of in your philosophy. But come; +Here, as before, never, so help you mercy, +How strange or odd soe'er I bear myself, +As I perchance hereafter shall think meet +To put an antic disposition on, +That you, at such times seeing me, never shall, +With arms encumber'd thus, or this headshake, +Or by pronouncing of some doubtful phrase, +As 'Well, well, we know,' or 'We could, an if we would,' +Or 'If we list to speak,' or 'There be, an if they might,' +Or such ambiguous giving out, to note +That you know aught of me: this not to do, +So grace and mercy at your most need help you, Swear. + +Ghost: + +HAMLET: +Rest, rest, perturbed spirit! +So, gentlemen, +With all my love I do commend me to you: +And what so poor a man as Hamlet is +May do, to express his love and friending to you, +God willing, shall not lack. Let us go in together; +And still your fingers on your lips, I pray. +The time is out of joint: O cursed spite, +That ever I was born to set it right! +Nay, come, let's go together. + +LORD POLONIUS: +Give him this money and these notes, Reynaldo. + +REYNALDO: +I will, my lord. + +LORD POLONIUS: +You shall do marvellous wisely, good Reynaldo, +Before you visit him, to make inquire +Of his behavior. + +REYNALDO: +My lord, I did intend it. + +LORD POLONIUS: +Marry, well said; very well said. Look you, sir, +Inquire me first what Danskers are in Paris; +And how, and who, what means, and where they keep, +What company, at what expense; and finding +By this encompassment and drift of question +That they do know my son, come you more nearer +Than your particular demands will touch it: +Take you, as 'twere, some distant knowledge of him; +As thus, 'I know his father and his friends, +And in part him: ' do you mark this, Reynaldo? + +REYNALDO: +Ay, very well, my lord. + +LORD POLONIUS: +'And in part him; but' you may say 'not well: +But, if't be he I mean, he's very wild; +Addicted so and so:' and there put on him +What forgeries you please; marry, none so rank +As may dishonour him; take heed of that; +But, sir, such wanton, wild and usual slips +As are companions noted and most known +To youth and liberty. + +REYNALDO: +As gaming, my lord. + +LORD POLONIUS: +Ay, or drinking, fencing, swearing, quarrelling, +Drabbing: you may go so far. + +REYNALDO: +My lord, that would dishonour him. + +LORD POLONIUS: +'Faith, no; as you may season it in the charge +You must not put another scandal on him, +That he is open to incontinency; +That's not my meaning: but breathe his faults so quaintly +That they may seem the taints of liberty, +The flash and outbreak of a fiery mind, +A savageness in unreclaimed blood, +Of general assault. + +REYNALDO: +But, my good lord,-- + +LORD POLONIUS: +Wherefore should you do this? + +REYNALDO: +Ay, my lord, +I would know that. + +LORD POLONIUS: +Marry, sir, here's my drift; +And I believe, it is a fetch of wit: +You laying these slight sullies on my son, +As 'twere a thing a little soil'd i' the working, Mark you, +Your party in converse, him you would sound, +Having ever seen in the prenominate crimes +The youth you breathe of guilty, be assured +He closes with you in this consequence; +'Good sir,' or so, or 'friend,' or 'gentleman,' +According to the phrase or the addition +Of man and country. + +REYNALDO: +Very good, my lord. + +LORD POLONIUS: +And then, sir, does he this--he does--what was I +about to say? By the mass, I was about to say +something: where did I leave? + +REYNALDO: +At 'closes in the consequence,' at 'friend or so,' +and 'gentleman.' + +LORD POLONIUS: +At 'closes in the consequence,' ay, marry; +He closes thus: 'I know the gentleman; +I saw him yesterday, or t' other day, +Or then, or then; with such, or such; and, as you say, +There was a' gaming; there o'ertook in's rouse; +There falling out at tennis:' or perchance, +'I saw him enter such a house of sale,' +Videlicet, a brothel, or so forth. +See you now; +Your bait of falsehood takes this carp of truth: +And thus do we of wisdom and of reach, +With windlasses and with assays of bias, +By indirections find directions out: +So by my former lecture and advice, +Shall you my son. You have me, have you not? + +REYNALDO: +My lord, I have. + +LORD POLONIUS: +God be wi' you; fare you well. + +REYNALDO: +Good my lord! + +LORD POLONIUS: +Observe his inclination in yourself. + +REYNALDO: +I shall, my lord. + +LORD POLONIUS: +And let him ply his music. + +REYNALDO: +Well, my lord. + +LORD POLONIUS: +Farewell! +How now, Ophelia! what's the matter? + +OPHELIA: +O, my lord, my lord, I have been so affrighted! + +LORD POLONIUS: +With what, i' the name of God? + +OPHELIA: +My lord, as I was sewing in my closet, +Lord Hamlet, with his doublet all unbraced; +No hat upon his head; his stockings foul'd, +Ungarter'd, and down-gyved to his ancle; +Pale as his shirt; his knees knocking each other; +And with a look so piteous in purport +As if he had been loosed out of hell +To speak of horrors,--he comes before me. + +LORD POLONIUS: +Mad for thy love? + +OPHELIA: +My lord, I do not know; +But truly, I do fear it. + +LORD POLONIUS: +What said he? + +OPHELIA: +He took me by the wrist and held me hard; +Then goes he to the length of all his arm; +And, with his other hand thus o'er his brow, +He falls to such perusal of my face +As he would draw it. Long stay'd he so; +At last, a little shaking of mine arm +And thrice his head thus waving up and down, +He raised a sigh so piteous and profound +As it did seem to shatter all his bulk +And end his being: that done, he lets me go: +And, with his head over his shoulder turn'd, +He seem'd to find his way without his eyes; +For out o' doors he went without their helps, +And, to the last, bended their light on me. + +LORD POLONIUS: +Come, go with me: I will go seek the king. +This is the very ecstasy of love, +Whose violent property fordoes itself +And leads the will to desperate undertakings +As oft as any passion under heaven +That does afflict our natures. I am sorry. +What, have you given him any hard words of late? + +OPHELIA: +No, my good lord, but, as you did command, +I did repel his fetters and denied +His access to me. + +LORD POLONIUS: +That hath made him mad. +I am sorry that with better heed and judgment +I had not quoted him: I fear'd he did but trifle, +And meant to wreck thee; but, beshrew my jealousy! +By heaven, it is as proper to our age +To cast beyond ourselves in our opinions +As it is common for the younger sort +To lack discretion. Come, go we to the king: +This must be known; which, being kept close, might +move +More grief to hide than hate to utter love. + +KING CLAUDIUS: +Welcome, dear Rosencrantz and Guildenstern! +Moreover that we much did long to see you, +The need we have to use you did provoke +Our hasty sending. Something have you heard +Of Hamlet's transformation; so call it, +Sith nor the exterior nor the inward man +Resembles that it was. What it should be, +More than his father's death, that thus hath put him +So much from the understanding of himself, +I cannot dream of: I entreat you both, +That, being of so young days brought up with him, +And sith so neighbour'd to his youth and havior, +That you vouchsafe your rest here in our court +Some little time: so by your companies +To draw him on to pleasures, and to gather, +So much as from occasion you may glean, +Whether aught, to us unknown, afflicts him thus, +That, open'd, lies within our remedy. + +QUEEN GERTRUDE: +Good gentlemen, he hath much talk'd of you; +And sure I am two men there are not living +To whom he more adheres. If it will please you +To show us so much gentry and good will +As to expend your time with us awhile, +For the supply and profit of our hope, +Your visitation shall receive such thanks +As fits a king's remembrance. + +ROSENCRANTZ: +Both your majesties +Might, by the sovereign power you have of us, +Put your dread pleasures more into command +Than to entreaty. + +GUILDENSTERN: +But we both obey, +And here give up ourselves, in the full bent +To lay our service freely at your feet, +To be commanded. + +KING CLAUDIUS: +Thanks, Rosencrantz and gentle Guildenstern. + +QUEEN GERTRUDE: +Thanks, Guildenstern and gentle Rosencrantz: +And I beseech you instantly to visit +My too much changed son. Go, some of you, +And bring these gentlemen where Hamlet is. + +GUILDENSTERN: +Heavens make our presence and our practises +Pleasant and helpful to him! + +QUEEN GERTRUDE: +Ay, amen! + +LORD POLONIUS: +The ambassadors from Norway, my good lord, +Are joyfully return'd. + +KING CLAUDIUS: +Thou still hast been the father of good news. + +LORD POLONIUS: +Have I, my lord? I assure my good liege, +I hold my duty, as I hold my soul, +Both to my God and to my gracious king: +And I do think, or else this brain of mine +Hunts not the trail of policy so sure +As it hath used to do, that I have found +The very cause of Hamlet's lunacy. + +KING CLAUDIUS: +O, speak of that; that do I long to hear. + +LORD POLONIUS: +Give first admittance to the ambassadors; +My news shall be the fruit to that great feast. + +KING CLAUDIUS: +Thyself do grace to them, and bring them in. +He tells me, my dear Gertrude, he hath found +The head and source of all your son's distemper. + +QUEEN GERTRUDE: +I doubt it is no other but the main; +His father's death, and our o'erhasty marriage. + +KING CLAUDIUS: +Well, we shall sift him. +Welcome, my good friends! +Say, Voltimand, what from our brother Norway? + +VOLTIMAND: +Most fair return of greetings and desires. +Upon our first, he sent out to suppress +His nephew's levies; which to him appear'd +To be a preparation 'gainst the Polack; +But, better look'd into, he truly found +It was against your highness: whereat grieved, +That so his sickness, age and impotence +Was falsely borne in hand, sends out arrests +On Fortinbras; which he, in brief, obeys; +Receives rebuke from Norway, and in fine +Makes vow before his uncle never more +To give the assay of arms against your majesty. +Whereon old Norway, overcome with joy, +Gives him three thousand crowns in annual fee, +And his commission to employ those soldiers, +So levied as before, against the Polack: +With an entreaty, herein further shown, +That it might please you to give quiet pass +Through your dominions for this enterprise, +On such regards of safety and allowance +As therein are set down. + +KING CLAUDIUS: +It likes us well; +And at our more consider'd time well read, +Answer, and think upon this business. +Meantime we thank you for your well-took labour: +Go to your rest; at night we'll feast together: +Most welcome home! + +LORD POLONIUS: +This business is well ended. +My liege, and madam, to expostulate +What majesty should be, what duty is, +Why day is day, night night, and time is time, +Were nothing but to waste night, day and time. +Therefore, since brevity is the soul of wit, +And tediousness the limbs and outward flourishes, +I will be brief: your noble son is mad: +Mad call I it; for, to define true madness, +What is't but to be nothing else but mad? +But let that go. + +QUEEN GERTRUDE: +More matter, with less art. + +LORD POLONIUS: +Madam, I swear I use no art at all. +That he is mad, 'tis true: 'tis true 'tis pity; +And pity 'tis 'tis true: a foolish figure; +But farewell it, for I will use no art. +Mad let us grant him, then: and now remains +That we find out the cause of this effect, +Or rather say, the cause of this defect, +For this effect defective comes by cause: +Thus it remains, and the remainder thus. Perpend. +I have a daughter--have while she is mine-- +Who, in her duty and obedience, mark, +Hath given me this: now gather, and surmise. +'To the celestial and my soul's idol, the most +beautified Ophelia,'-- +That's an ill phrase, a vile phrase; 'beautified' is +a vile phrase: but you shall hear. Thus: +'In her excellent white bosom, these, &c.' + +QUEEN GERTRUDE: +Came this from Hamlet to her? + +LORD POLONIUS: +Good madam, stay awhile; I will be faithful. +'Doubt thou the stars are fire; +Doubt that the sun doth move; +Doubt truth to be a liar; +But never doubt I love. +'O dear Ophelia, I am ill at these numbers; +I have not art to reckon my groans: but that +I love thee best, O most best, believe it. Adieu. +'Thine evermore most dear lady, whilst +this machine is to him, HAMLET.' +This, in obedience, hath my daughter shown me, +And more above, hath his solicitings, +As they fell out by time, by means and place, +All given to mine ear. + +KING CLAUDIUS: +But how hath she +Received his love? + +LORD POLONIUS: +What do you think of me? + +KING CLAUDIUS: +As of a man faithful and honourable. + +LORD POLONIUS: +I would fain prove so. But what might you think, +When I had seen this hot love on the wing-- +As I perceived it, I must tell you that, +Before my daughter told me--what might you, +Or my dear majesty your queen here, think, +If I had play'd the desk or table-book, +Or given my heart a winking, mute and dumb, +Or look'd upon this love with idle sight; +What might you think? No, I went round to work, +And my young mistress thus I did bespeak: +'Lord Hamlet is a prince, out of thy star; +This must not be:' and then I precepts gave her, +That she should lock herself from his resort, +Admit no messengers, receive no tokens. +Which done, she took the fruits of my advice; +And he, repulsed--a short tale to make-- +Fell into a sadness, then into a fast, +Thence to a watch, thence into a weakness, +Thence to a lightness, and, by this declension, +Into the madness wherein now he raves, +And all we mourn for. + +KING CLAUDIUS: +Do you think 'tis this? + +QUEEN GERTRUDE: +It may be, very likely. + +LORD POLONIUS: +Hath there been such a time--I'd fain know that-- +That I have positively said 'Tis so,' +When it proved otherwise? + +KING CLAUDIUS: +Not that I know. + +LORD POLONIUS: + +KING CLAUDIUS: +How may we try it further? + +LORD POLONIUS: +You know, sometimes he walks four hours together +Here in the lobby. + +QUEEN GERTRUDE: +So he does indeed. + +LORD POLONIUS: +At such a time I'll loose my daughter to him: +Be you and I behind an arras then; +Mark the encounter: if he love her not +And be not from his reason fall'n thereon, +Let me be no assistant for a state, +But keep a farm and carters. + +KING CLAUDIUS: +We will try it. + +QUEEN GERTRUDE: +But, look, where sadly the poor wretch comes reading. + +LORD POLONIUS: +Away, I do beseech you, both away: +I'll board him presently. +O, give me leave: +How does my good Lord Hamlet? + +HAMLET: +Well, God-a-mercy. + +LORD POLONIUS: +Do you know me, my lord? + +HAMLET: +Excellent well; you are a fishmonger. + +LORD POLONIUS: +Not I, my lord. + +HAMLET: +Then I would you were so honest a man. + +LORD POLONIUS: +Honest, my lord! + +HAMLET: +Ay, sir; to be honest, as this world goes, is to be +one man picked out of ten thousand. + +LORD POLONIUS: +That's very true, my lord. + +HAMLET: +For if the sun breed maggots in a dead dog, being a +god kissing carrion,--Have you a daughter? + +LORD POLONIUS: +I have, my lord. + +HAMLET: +Let her not walk i' the sun: conception is a +blessing: but not as your daughter may conceive. +Friend, look to 't. + +LORD POLONIUS: + +HAMLET: +Words, words, words. + +LORD POLONIUS: +What is the matter, my lord? + +HAMLET: +Between who? + +LORD POLONIUS: +I mean, the matter that you read, my lord. + +HAMLET: +Slanders, sir: for the satirical rogue says here +that old men have grey beards, that their faces are +wrinkled, their eyes purging thick amber and +plum-tree gum and that they have a plentiful lack of +wit, together with most weak hams: all which, sir, +though I most powerfully and potently believe, yet +I hold it not honesty to have it thus set down, for +yourself, sir, should be old as I am, if like a crab +you could go backward. + +LORD POLONIUS: + +HAMLET: +Into my grave. + +LORD POLONIUS: +Indeed, that is out o' the air. +How pregnant sometimes his replies are! a happiness +that often madness hits on, which reason and sanity +could not so prosperously be delivered of. I will +leave him, and suddenly contrive the means of +meeting between him and my daughter.--My honourable +lord, I will most humbly take my leave of you. + +HAMLET: +You cannot, sir, take from me any thing that I will +more willingly part withal: except my life, except +my life, except my life. + +LORD POLONIUS: +Fare you well, my lord. + +HAMLET: +These tedious old fools! + +LORD POLONIUS: +You go to seek the Lord Hamlet; there he is. + +ROSENCRANTZ: + +GUILDENSTERN: +My honoured lord! + +ROSENCRANTZ: +My most dear lord! + +HAMLET: +My excellent good friends! How dost thou, +Guildenstern? Ah, Rosencrantz! Good lads, how do ye both? + +ROSENCRANTZ: +As the indifferent children of the earth. + +GUILDENSTERN: +Happy, in that we are not over-happy; +On fortune's cap we are not the very button. + +HAMLET: +Nor the soles of her shoe? + +ROSENCRANTZ: +Neither, my lord. + +HAMLET: +Then you live about her waist, or in the middle of +her favours? + +GUILDENSTERN: +'Faith, her privates we. + +HAMLET: +In the secret parts of fortune? O, most true; she +is a strumpet. What's the news? + +ROSENCRANTZ: +None, my lord, but that the world's grown honest. + +HAMLET: +Then is doomsday near: but your news is not true. +Let me question more in particular: what have you, +my good friends, deserved at the hands of fortune, +that she sends you to prison hither? + +GUILDENSTERN: +Prison, my lord! + +HAMLET: +Denmark's a prison. + +ROSENCRANTZ: +Then is the world one. + +HAMLET: +A goodly one; in which there are many confines, +wards and dungeons, Denmark being one o' the worst. + +ROSENCRANTZ: +We think not so, my lord. + +HAMLET: +Why, then, 'tis none to you; for there is nothing +either good or bad, but thinking makes it so: to me +it is a prison. + +ROSENCRANTZ: +Why then, your ambition makes it one; 'tis too +narrow for your mind. + +HAMLET: +O God, I could be bounded in a nut shell and count +myself a king of infinite space, were it not that I +have bad dreams. + +GUILDENSTERN: +Which dreams indeed are ambition, for the very +substance of the ambitious is merely the shadow of a dream. + +HAMLET: +A dream itself is but a shadow. + +ROSENCRANTZ: +Truly, and I hold ambition of so airy and light a +quality that it is but a shadow's shadow. + +HAMLET: +Then are our beggars bodies, and our monarchs and +outstretched heroes the beggars' shadows. Shall we +to the court? for, by my fay, I cannot reason. + +ROSENCRANTZ: +We'll wait upon you. + +HAMLET: +No such matter: I will not sort you with the rest +of my servants, for, to speak to you like an honest +man, I am most dreadfully attended. But, in the +beaten way of friendship, what make you at Elsinore? + +ROSENCRANTZ: +To visit you, my lord; no other occasion. + +HAMLET: +Beggar that I am, I am even poor in thanks; but I +thank you: and sure, dear friends, my thanks are +too dear a halfpenny. Were you not sent for? Is it +your own inclining? Is it a free visitation? Come, +deal justly with me: come, come; nay, speak. + +GUILDENSTERN: +What should we say, my lord? + +HAMLET: +Why, any thing, but to the purpose. You were sent +for; and there is a kind of confession in your looks +which your modesties have not craft enough to colour: +I know the good king and queen have sent for you. + +ROSENCRANTZ: +To what end, my lord? + +HAMLET: +That you must teach me. But let me conjure you, by +the rights of our fellowship, by the consonancy of +our youth, by the obligation of our ever-preserved +love, and by what more dear a better proposer could +charge you withal, be even and direct with me, +whether you were sent for, or no? + +ROSENCRANTZ: + +HAMLET: + +GUILDENSTERN: +My lord, we were sent for. + +HAMLET: +I will tell you why; so shall my anticipation +prevent your discovery, and your secrecy to the king +and queen moult no feather. I have of late--but +wherefore I know not--lost all my mirth, forgone all +custom of exercises; and indeed it goes so heavily +with my disposition that this goodly frame, the +earth, seems to me a sterile promontory, this most +excellent canopy, the air, look you, this brave +o'erhanging firmament, this majestical roof fretted +with golden fire, why, it appears no other thing to +me than a foul and pestilent congregation of vapours. +What a piece of work is a man! how noble in reason! +how infinite in faculty! in form and moving how +express and admirable! in action how like an angel! +in apprehension how like a god! the beauty of the +world! the paragon of animals! And yet, to me, +what is this quintessence of dust? man delights not +me: no, nor woman neither, though by your smiling +you seem to say so. + +ROSENCRANTZ: +My lord, there was no such stuff in my thoughts. + +HAMLET: +Why did you laugh then, when I said 'man delights not me'? + +ROSENCRANTZ: +To think, my lord, if you delight not in man, what +lenten entertainment the players shall receive from +you: we coted them on the way; and hither are they +coming, to offer you service. + +HAMLET: +He that plays the king shall be welcome; his majesty +shall have tribute of me; the adventurous knight +shall use his foil and target; the lover shall not +sigh gratis; the humourous man shall end his part +in peace; the clown shall make those laugh whose +lungs are tickled o' the sere; and the lady shall +say her mind freely, or the blank verse shall halt +for't. What players are they? + +ROSENCRANTZ: +Even those you were wont to take delight in, the +tragedians of the city. + +HAMLET: +How chances it they travel? their residence, both +in reputation and profit, was better both ways. + +ROSENCRANTZ: +I think their inhibition comes by the means of the +late innovation. + +HAMLET: +Do they hold the same estimation they did when I was +in the city? are they so followed? + +ROSENCRANTZ: +No, indeed, are they not. + +HAMLET: +How comes it? do they grow rusty? + +ROSENCRANTZ: +Nay, their endeavour keeps in the wonted pace: but +there is, sir, an aery of children, little eyases, +that cry out on the top of question, and are most +tyrannically clapped for't: these are now the +fashion, and so berattle the common stages--so they +call them--that many wearing rapiers are afraid of +goose-quills and dare scarce come thither. + +HAMLET: +What, are they children? who maintains 'em? how are +they escoted? Will they pursue the quality no +longer than they can sing? will they not say +afterwards, if they should grow themselves to common +players--as it is most like, if their means are no +better--their writers do them wrong, to make them +exclaim against their own succession? + +ROSENCRANTZ: +'Faith, there has been much to do on both sides; and +the nation holds it no sin to tarre them to +controversy: there was, for a while, no money bid +for argument, unless the poet and the player went to +cuffs in the question. + +HAMLET: +Is't possible? + +GUILDENSTERN: +O, there has been much throwing about of brains. + +HAMLET: +Do the boys carry it away? + +ROSENCRANTZ: +Ay, that they do, my lord; Hercules and his load too. + +HAMLET: +It is not very strange; for mine uncle is king of +Denmark, and those that would make mows at him while +my father lived, give twenty, forty, fifty, an +hundred ducats a-piece for his picture in little. +'Sblood, there is something in this more than +natural, if philosophy could find it out. + +GUILDENSTERN: +There are the players. + +HAMLET: +Gentlemen, you are welcome to Elsinore. Your hands, +come then: the appurtenance of welcome is fashion +and ceremony: let me comply with you in this garb, +lest my extent to the players, which, I tell you, +must show fairly outward, should more appear like +entertainment than yours. You are welcome: but my +uncle-father and aunt-mother are deceived. + +GUILDENSTERN: +In what, my dear lord? + +HAMLET: +I am but mad north-north-west: when the wind is +southerly I know a hawk from a handsaw. + +LORD POLONIUS: +Well be with you, gentlemen! + +HAMLET: +Hark you, Guildenstern; and you too: at each ear a +hearer: that great baby you see there is not yet +out of his swaddling-clouts. + +ROSENCRANTZ: +Happily he's the second time come to them; for they +say an old man is twice a child. + +HAMLET: +I will prophesy he comes to tell me of the players; +mark it. You say right, sir: o' Monday morning; +'twas so indeed. + +LORD POLONIUS: +My lord, I have news to tell you. + +HAMLET: +My lord, I have news to tell you. +When Roscius was an actor in Rome,-- + +LORD POLONIUS: +The actors are come hither, my lord. + +HAMLET: +Buz, buz! + +LORD POLONIUS: +Upon mine honour,-- + +HAMLET: +Then came each actor on his ass,-- + +LORD POLONIUS: +The best actors in the world, either for tragedy, +comedy, history, pastoral, pastoral-comical, +historical-pastoral, tragical-historical, tragical- +comical-historical-pastoral, scene individable, or +poem unlimited: Seneca cannot be too heavy, nor +Plautus too light. For the law of writ and the +liberty, these are the only men. + +HAMLET: +O Jephthah, judge of Israel, what a treasure hadst thou! + +LORD POLONIUS: +What a treasure had he, my lord? + +HAMLET: +Why, +'One fair daughter and no more, +The which he loved passing well.' + +LORD POLONIUS: + +HAMLET: +Am I not i' the right, old Jephthah? + +LORD POLONIUS: +If you call me Jephthah, my lord, I have a daughter +that I love passing well. + +HAMLET: +Nay, that follows not. + +LORD POLONIUS: +What follows, then, my lord? + +HAMLET: +Why, +'As by lot, God wot,' +and then, you know, +'It came to pass, as most like it was,'-- +the first row of the pious chanson will show you +more; for look, where my abridgement comes. +You are welcome, masters; welcome, all. I am glad +to see thee well. Welcome, good friends. O, my old +friend! thy face is valenced since I saw thee last: +comest thou to beard me in Denmark? What, my young +lady and mistress! By'r lady, your ladyship is +nearer to heaven than when I saw you last, by the +altitude of a chopine. Pray God, your voice, like +apiece of uncurrent gold, be not cracked within the +ring. Masters, you are all welcome. We'll e'en +to't like French falconers, fly at any thing we see: +we'll have a speech straight: come, give us a taste +of your quality; come, a passionate speech. + +First Player: +What speech, my lord? + +HAMLET: +I heard thee speak me a speech once, but it was +never acted; or, if it was, not above once; for the +play, I remember, pleased not the million; 'twas +caviare to the general: but it was--as I received +it, and others, whose judgments in such matters +cried in the top of mine--an excellent play, well +digested in the scenes, set down with as much +modesty as cunning. I remember, one said there +were no sallets in the lines to make the matter +savoury, nor no matter in the phrase that might +indict the author of affectation; but called it an +honest method, as wholesome as sweet, and by very +much more handsome than fine. One speech in it I +chiefly loved: 'twas Aeneas' tale to Dido; and +thereabout of it especially, where he speaks of +Priam's slaughter: if it live in your memory, begin +at this line: let me see, let me see-- +'The rugged Pyrrhus, like the Hyrcanian beast,'-- +it is not so:--it begins with Pyrrhus:-- +'The rugged Pyrrhus, he whose sable arms, +Black as his purpose, did the night resemble +When he lay couched in the ominous horse, +Hath now this dread and black complexion smear'd +With heraldry more dismal; head to foot +Now is he total gules; horridly trick'd +With blood of fathers, mothers, daughters, sons, +Baked and impasted with the parching streets, +That lend a tyrannous and damned light +To their lord's murder: roasted in wrath and fire, +And thus o'er-sized with coagulate gore, +With eyes like carbuncles, the hellish Pyrrhus +Old grandsire Priam seeks.' +So, proceed you. + +LORD POLONIUS: +'Fore God, my lord, well spoken, with good accent and +good discretion. + +First Player: +'Anon he finds him +Striking too short at Greeks; his antique sword, +Rebellious to his arm, lies where it falls, +Repugnant to command: unequal match'd, +Pyrrhus at Priam drives; in rage strikes wide; +But with the whiff and wind of his fell sword +The unnerved father falls. Then senseless Ilium, +Seeming to feel this blow, with flaming top +Stoops to his base, and with a hideous crash +Takes prisoner Pyrrhus' ear: for, lo! his sword, +Which was declining on the milky head +Of reverend Priam, seem'd i' the air to stick: +So, as a painted tyrant, Pyrrhus stood, +And like a neutral to his will and matter, +Did nothing. +But, as we often see, against some storm, +A silence in the heavens, the rack stand still, +The bold winds speechless and the orb below +As hush as death, anon the dreadful thunder +Doth rend the region, so, after Pyrrhus' pause, +Aroused vengeance sets him new a-work; +And never did the Cyclops' hammers fall +On Mars's armour forged for proof eterne +With less remorse than Pyrrhus' bleeding sword +Now falls on Priam. +Out, out, thou strumpet, Fortune! All you gods, +In general synod 'take away her power; +Break all the spokes and fellies from her wheel, +And bowl the round nave down the hill of heaven, +As low as to the fiends!' + +LORD POLONIUS: +This is too long. + +HAMLET: +It shall to the barber's, with your beard. Prithee, +say on: he's for a jig or a tale of bawdry, or he +sleeps: say on: come to Hecuba. + +First Player: +'But who, O, who had seen the mobled queen--' + +HAMLET: +'The mobled queen?' + +LORD POLONIUS: +That's good; 'mobled queen' is good. + +First Player: +'Run barefoot up and down, threatening the flames +With bisson rheum; a clout upon that head +Where late the diadem stood, and for a robe, +About her lank and all o'er-teemed loins, +A blanket, in the alarm of fear caught up; +Who this had seen, with tongue in venom steep'd, +'Gainst Fortune's state would treason have +pronounced: +But if the gods themselves did see her then +When she saw Pyrrhus make malicious sport +In mincing with his sword her husband's limbs, +The instant burst of clamour that she made, +Unless things mortal move them not at all, +Would have made milch the burning eyes of heaven, +And passion in the gods.' + +LORD POLONIUS: +Look, whether he has not turned his colour and has +tears in's eyes. Pray you, no more. + +HAMLET: +'Tis well: I'll have thee speak out the rest soon. +Good my lord, will you see the players well +bestowed? Do you hear, let them be well used; for +they are the abstract and brief chronicles of the +time: after your death you were better have a bad +epitaph than their ill report while you live. + +LORD POLONIUS: +My lord, I will use them according to their desert. + +HAMLET: +God's bodykins, man, much better: use every man +after his desert, and who should 'scape whipping? +Use them after your own honour and dignity: the less +they deserve, the more merit is in your bounty. +Take them in. + +LORD POLONIUS: +Come, sirs. + +HAMLET: +Follow him, friends: we'll hear a play to-morrow. +Dost thou hear me, old friend; can you play the +Murder of Gonzago? + +First Player: +Ay, my lord. + +HAMLET: +We'll ha't to-morrow night. You could, for a need, +study a speech of some dozen or sixteen lines, which +I would set down and insert in't, could you not? + +First Player: +Ay, my lord. + +HAMLET: +Very well. Follow that lord; and look you mock him +not. +My good friends, I'll leave you till night: you are +welcome to Elsinore. + +ROSENCRANTZ: +Good my lord! + +HAMLET: +Ay, so, God be wi' ye; +Now I am alone. +O, what a rogue and peasant slave am I! +Is it not monstrous that this player here, +But in a fiction, in a dream of passion, +Could force his soul so to his own conceit +That from her working all his visage wann'd, +Tears in his eyes, distraction in's aspect, +A broken voice, and his whole function suiting +With forms to his conceit? and all for nothing! +For Hecuba! +What's Hecuba to him, or he to Hecuba, +That he should weep for her? What would he do, +Had he the motive and the cue for passion +That I have? He would drown the stage with tears +And cleave the general ear with horrid speech, +Make mad the guilty and appal the free, +Confound the ignorant, and amaze indeed +The very faculties of eyes and ears. Yet I, +A dull and muddy-mettled rascal, peak, +Like John-a-dreams, unpregnant of my cause, +And can say nothing; no, not for a king, +Upon whose property and most dear life +A damn'd defeat was made. Am I a coward? +Who calls me villain? breaks my pate across? +Plucks off my beard, and blows it in my face? +Tweaks me by the nose? gives me the lie i' the throat, +As deep as to the lungs? who does me this? +Ha! +'Swounds, I should take it: for it cannot be +But I am pigeon-liver'd and lack gall +To make oppression bitter, or ere this +I should have fatted all the region kites +With this slave's offal: bloody, bawdy villain! +Remorseless, treacherous, lecherous, kindless villain! +O, vengeance! +Why, what an ass am I! This is most brave, +That I, the son of a dear father murder'd, +Prompted to my revenge by heaven and hell, +Must, like a whore, unpack my heart with words, +And fall a-cursing, like a very drab, +A scullion! +Fie upon't! foh! About, my brain! I have heard +That guilty creatures sitting at a play +Have by the very cunning of the scene +Been struck so to the soul that presently +They have proclaim'd their malefactions; +For murder, though it have no tongue, will speak +With most miraculous organ. I'll have these players +Play something like the murder of my father +Before mine uncle: I'll observe his looks; +I'll tent him to the quick: if he but blench, +I know my course. The spirit that I have seen +May be the devil: and the devil hath power +To assume a pleasing shape; yea, and perhaps +Out of my weakness and my melancholy, +As he is very potent with such spirits, +Abuses me to damn me: I'll have grounds +More relative than this: the play 's the thing +Wherein I'll catch the conscience of the king. + +KING CLAUDIUS: +And can you, by no drift of circumstance, +Get from him why he puts on this confusion, +Grating so harshly all his days of quiet +With turbulent and dangerous lunacy? + +ROSENCRANTZ: +He does confess he feels himself distracted; +But from what cause he will by no means speak. + +GUILDENSTERN: +Nor do we find him forward to be sounded, +But, with a crafty madness, keeps aloof, +When we would bring him on to some confession +Of his true state. + +QUEEN GERTRUDE: +Did he receive you well? + +ROSENCRANTZ: +Most like a gentleman. + +GUILDENSTERN: +But with much forcing of his disposition. + +ROSENCRANTZ: +Niggard of question; but, of our demands, +Most free in his reply. + +QUEEN GERTRUDE: +Did you assay him? +To any pastime? + +ROSENCRANTZ: +Madam, it so fell out, that certain players +We o'er-raught on the way: of these we told him; +And there did seem in him a kind of joy +To hear of it: they are about the court, +And, as I think, they have already order +This night to play before him. + +LORD POLONIUS: +'Tis most true: +And he beseech'd me to entreat your majesties +To hear and see the matter. + +KING CLAUDIUS: +With all my heart; and it doth much content me +To hear him so inclined. +Good gentlemen, give him a further edge, +And drive his purpose on to these delights. + +ROSENCRANTZ: +We shall, my lord. + +KING CLAUDIUS: +Sweet Gertrude, leave us too; +For we have closely sent for Hamlet hither, +That he, as 'twere by accident, may here +Affront Ophelia: +Her father and myself, lawful espials, +Will so bestow ourselves that, seeing, unseen, +We may of their encounter frankly judge, +And gather by him, as he is behaved, +If 't be the affliction of his love or no +That thus he suffers for. + +QUEEN GERTRUDE: +I shall obey you. +And for your part, Ophelia, I do wish +That your good beauties be the happy cause +Of Hamlet's wildness: so shall I hope your virtues +Will bring him to his wonted way again, +To both your honours. + +OPHELIA: +Madam, I wish it may. + +LORD POLONIUS: +Ophelia, walk you here. Gracious, so please you, +We will bestow ourselves. +Read on this book; +That show of such an exercise may colour +Your loneliness. We are oft to blame in this,-- +'Tis too much proved--that with devotion's visage +And pious action we do sugar o'er +The devil himself. + +KING CLAUDIUS: + +LORD POLONIUS: +I hear him coming: let's withdraw, my lord. + +HAMLET: +To be, or not to be: that is the question: +Whether 'tis nobler in the mind to suffer +The slings and arrows of outrageous fortune, +Or to take arms against a sea of troubles, +And by opposing end them? To die: to sleep; +No more; and by a sleep to say we end +The heart-ache and the thousand natural shocks +That flesh is heir to, 'tis a consummation +Devoutly to be wish'd. To die, to sleep; +To sleep: perchance to dream: ay, there's the rub; +For in that sleep of death what dreams may come +When we have shuffled off this mortal coil, +Must give us pause: there's the respect +That makes calamity of so long life; +For who would bear the whips and scorns of time, +The oppressor's wrong, the proud man's contumely, +The pangs of despised love, the law's delay, +The insolence of office and the spurns +That patient merit of the unworthy takes, +When he himself might his quietus make +With a bare bodkin? who would fardels bear, +To grunt and sweat under a weary life, +But that the dread of something after death, +The undiscover'd country from whose bourn +No traveller returns, puzzles the will +And makes us rather bear those ills we have +Than fly to others that we know not of? +Thus conscience does make cowards of us all; +And thus the native hue of resolution +Is sicklied o'er with the pale cast of thought, +And enterprises of great pith and moment +With this regard their currents turn awry, +And lose the name of action.--Soft you now! +The fair Ophelia! Nymph, in thy orisons +Be all my sins remember'd. + +OPHELIA: +Good my lord, +How does your honour for this many a day? + +HAMLET: +I humbly thank you; well, well, well. + +OPHELIA: +My lord, I have remembrances of yours, +That I have longed long to re-deliver; +I pray you, now receive them. + +HAMLET: +No, not I; +I never gave you aught. + +OPHELIA: +My honour'd lord, you know right well you did; +And, with them, words of so sweet breath composed +As made the things more rich: their perfume lost, +Take these again; for to the noble mind +Rich gifts wax poor when givers prove unkind. +There, my lord. + +HAMLET: +Ha, ha! are you honest? + +OPHELIA: +My lord? + +HAMLET: +Are you fair? + +OPHELIA: +What means your lordship? + +HAMLET: +That if you be honest and fair, your honesty should +admit no discourse to your beauty. + +OPHELIA: +Could beauty, my lord, have better commerce than +with honesty? + +HAMLET: +Ay, truly; for the power of beauty will sooner +transform honesty from what it is to a bawd than the +force of honesty can translate beauty into his +likeness: this was sometime a paradox, but now the +time gives it proof. I did love you once. + +OPHELIA: +Indeed, my lord, you made me believe so. + +HAMLET: +You should not have believed me; for virtue cannot +so inoculate our old stock but we shall relish of +it: I loved you not. + +OPHELIA: +I was the more deceived. + +HAMLET: +Get thee to a nunnery: why wouldst thou be a +breeder of sinners? I am myself indifferent honest; +but yet I could accuse me of such things that it +were better my mother had not borne me: I am very +proud, revengeful, ambitious, with more offences at +my beck than I have thoughts to put them in, +imagination to give them shape, or time to act them +in. What should such fellows as I do crawling +between earth and heaven? We are arrant knaves, +all; believe none of us. Go thy ways to a nunnery. +Where's your father? + +OPHELIA: +At home, my lord. + +HAMLET: +Let the doors be shut upon him, that he may play the +fool no where but in's own house. Farewell. + +OPHELIA: +O, help him, you sweet heavens! + +HAMLET: +If thou dost marry, I'll give thee this plague for +thy dowry: be thou as chaste as ice, as pure as +snow, thou shalt not escape calumny. Get thee to a +nunnery, go: farewell. Or, if thou wilt needs +marry, marry a fool; for wise men know well enough +what monsters you make of them. To a nunnery, go, +and quickly too. Farewell. + +OPHELIA: +O heavenly powers, restore him! + +HAMLET: +I have heard of your paintings too, well enough; God +has given you one face, and you make yourselves +another: you jig, you amble, and you lisp, and +nick-name God's creatures, and make your wantonness +your ignorance. Go to, I'll no more on't; it hath +made me mad. I say, we will have no more marriages: +those that are married already, all but one, shall +live; the rest shall keep as they are. To a +nunnery, go. + +OPHELIA: +O, what a noble mind is here o'erthrown! +The courtier's, soldier's, scholar's, eye, tongue, sword; +The expectancy and rose of the fair state, +The glass of fashion and the mould of form, +The observed of all observers, quite, quite down! +And I, of ladies most deject and wretched, +That suck'd the honey of his music vows, +Now see that noble and most sovereign reason, +Like sweet bells jangled, out of tune and harsh; +That unmatch'd form and feature of blown youth +Blasted with ecstasy: O, woe is me, +To have seen what I have seen, see what I see! + +KING CLAUDIUS: +Love! his affections do not that way tend; +Nor what he spake, though it lack'd form a little, +Was not like madness. There's something in his soul, +O'er which his melancholy sits on brood; +And I do doubt the hatch and the disclose +Will be some danger: which for to prevent, +I have in quick determination +Thus set it down: he shall with speed to England, +For the demand of our neglected tribute +Haply the seas and countries different +With variable objects shall expel +This something-settled matter in his heart, +Whereon his brains still beating puts him thus +From fashion of himself. What think you on't? + +LORD POLONIUS: +It shall do well: but yet do I believe +The origin and commencement of his grief +Sprung from neglected love. How now, Ophelia! +You need not tell us what Lord Hamlet said; +We heard it all. My lord, do as you please; +But, if you hold it fit, after the play +Let his queen mother all alone entreat him +To show his grief: let her be round with him; +And I'll be placed, so please you, in the ear +Of all their conference. If she find him not, +To England send him, or confine him where +Your wisdom best shall think. + +KING CLAUDIUS: +It shall be so: +Madness in great ones must not unwatch'd go. + +HAMLET: +Speak the speech, I pray you, as I pronounced it to +you, trippingly on the tongue: but if you mouth it, +as many of your players do, I had as lief the +town-crier spoke my lines. Nor do not saw the air +too much with your hand, thus, but use all gently; +for in the very torrent, tempest, and, as I may say, +the whirlwind of passion, you must acquire and beget +a temperance that may give it smoothness. O, it +offends me to the soul to hear a robustious +periwig-pated fellow tear a passion to tatters, to +very rags, to split the ears of the groundlings, who +for the most part are capable of nothing but +inexplicable dumbshows and noise: I would have such +a fellow whipped for o'erdoing Termagant; it +out-herods Herod: pray you, avoid it. + +First Player: +I warrant your honour. + +HAMLET: +Be not too tame neither, but let your own discretion +be your tutor: suit the action to the word, the +word to the action; with this special o'erstep not +the modesty of nature: for any thing so overdone is +from the purpose of playing, whose end, both at the +first and now, was and is, to hold, as 'twere, the +mirror up to nature; to show virtue her own feature, +scorn her own image, and the very age and body of +the time his form and pressure. Now this overdone, +or come tardy off, though it make the unskilful +laugh, cannot but make the judicious grieve; the +censure of the which one must in your allowance +o'erweigh a whole theatre of others. O, there be +players that I have seen play, and heard others +praise, and that highly, not to speak it profanely, +that, neither having the accent of Christians nor +the gait of Christian, pagan, nor man, have so +strutted and bellowed that I have thought some of +nature's journeymen had made men and not made them +well, they imitated humanity so abominably. + +First Player: +I hope we have reformed that indifferently with us, +sir. + +HAMLET: +O, reform it altogether. And let those that play +your clowns speak no more than is set down for them; +for there be of them that will themselves laugh, to +set on some quantity of barren spectators to laugh +too; though, in the mean time, some necessary +question of the play be then to be considered: +that's villanous, and shows a most pitiful ambition +in the fool that uses it. Go, make you ready. +How now, my lord! I will the king hear this piece of work? + +LORD POLONIUS: +And the queen too, and that presently. + +HAMLET: +Bid the players make haste. +Will you two help to hasten them? + +ROSENCRANTZ: +We will, my lord. + +HAMLET: +What ho! Horatio! + +HORATIO: +Here, sweet lord, at your service. + +HAMLET: +Horatio, thou art e'en as just a man +As e'er my conversation coped withal. + +HORATIO: +O, my dear lord,-- + +HAMLET: +Nay, do not think I flatter; +For what advancement may I hope from thee +That no revenue hast but thy good spirits, +To feed and clothe thee? Why should the poor be flatter'd? +No, let the candied tongue lick absurd pomp, +And crook the pregnant hinges of the knee +Where thrift may follow fawning. Dost thou hear? +Since my dear soul was mistress of her choice +And could of men distinguish, her election +Hath seal'd thee for herself; for thou hast been +As one, in suffering all, that suffers nothing, +A man that fortune's buffets and rewards +Hast ta'en with equal thanks: and blest are those +Whose blood and judgment are so well commingled, +That they are not a pipe for fortune's finger +To sound what stop she please. Give me that man +That is not passion's slave, and I will wear him +In my heart's core, ay, in my heart of heart, +As I do thee.--Something too much of this.-- +There is a play to-night before the king; +One scene of it comes near the circumstance +Which I have told thee of my father's death: +I prithee, when thou seest that act afoot, +Even with the very comment of thy soul +Observe mine uncle: if his occulted guilt +Do not itself unkennel in one speech, +It is a damned ghost that we have seen, +And my imaginations are as foul +As Vulcan's stithy. Give him heedful note; +For I mine eyes will rivet to his face, +And after we will both our judgments join +In censure of his seeming. + +HORATIO: +Well, my lord: +If he steal aught the whilst this play is playing, +And 'scape detecting, I will pay the theft. + +HAMLET: +They are coming to the play; I must be idle: +Get you a place. + +KING CLAUDIUS: +How fares our cousin Hamlet? + +HAMLET: +Excellent, i' faith; of the chameleon's dish: I eat +the air, promise-crammed: you cannot feed capons so. + +KING CLAUDIUS: +I have nothing with this answer, Hamlet; these words +are not mine. + +HAMLET: +No, nor mine now. +My lord, you played once i' the university, you say? + +LORD POLONIUS: +That did I, my lord; and was accounted a good actor. + +HAMLET: +What did you enact? + +LORD POLONIUS: +I did enact Julius Caesar: I was killed i' the +Capitol; Brutus killed me. + +HAMLET: +It was a brute part of him to kill so capital a calf +there. Be the players ready? + +ROSENCRANTZ: +Ay, my lord; they stay upon your patience. + +QUEEN GERTRUDE: +Come hither, my dear Hamlet, sit by me. + +HAMLET: +No, good mother, here's metal more attractive. + +LORD POLONIUS: + +HAMLET: +Lady, shall I lie in your lap? + +OPHELIA: +No, my lord. + +HAMLET: +I mean, my head upon your lap? + +OPHELIA: +Ay, my lord. + +HAMLET: +Do you think I meant country matters? + +OPHELIA: +I think nothing, my lord. + +HAMLET: +That's a fair thought to lie between maids' legs. + +OPHELIA: +What is, my lord? + +HAMLET: +Nothing. + +OPHELIA: +You are merry, my lord. + +HAMLET: +Who, I? + +OPHELIA: +Ay, my lord. + +HAMLET: +O God, your only jig-maker. What should a man do +but be merry? for, look you, how cheerfully my +mother looks, and my father died within these two hours. + +OPHELIA: +Nay, 'tis twice two months, my lord. + +HAMLET: +So long? Nay then, let the devil wear black, for +I'll have a suit of sables. O heavens! die two +months ago, and not forgotten yet? Then there's +hope a great man's memory may outlive his life half +a year: but, by'r lady, he must build churches, +then; or else shall he suffer not thinking on, with +the hobby-horse, whose epitaph is 'For, O, for, O, +the hobby-horse is forgot.' + +OPHELIA: +What means this, my lord? + +HAMLET: +Marry, this is miching mallecho; it means mischief. + +OPHELIA: +Belike this show imports the argument of the play. + +HAMLET: +We shall know by this fellow: the players cannot +keep counsel; they'll tell all. + +OPHELIA: +Will he tell us what this show meant? + +HAMLET: +Ay, or any show that you'll show him: be not you +ashamed to show, he'll not shame to tell you what it means. + +OPHELIA: +You are naught, you are naught: I'll mark the play. + +Prologue: +For us, and for our tragedy, +Here stooping to your clemency, +We beg your hearing patiently. + +HAMLET: +Is this a prologue, or the posy of a ring? + +OPHELIA: +'Tis brief, my lord. + +HAMLET: +As woman's love. + +Player King: +Full thirty times hath Phoebus' cart gone round +Neptune's salt wash and Tellus' orbed ground, +And thirty dozen moons with borrow'd sheen +About the world have times twelve thirties been, +Since love our hearts and Hymen did our hands +Unite commutual in most sacred bands. + +Player Queen: +So many journeys may the sun and moon +Make us again count o'er ere love be done! +But, woe is me, you are so sick of late, +So far from cheer and from your former state, +That I distrust you. Yet, though I distrust, +Discomfort you, my lord, it nothing must: +For women's fear and love holds quantity; +In neither aught, or in extremity. +Now, what my love is, proof hath made you know; +And as my love is sized, my fear is so: +Where love is great, the littlest doubts are fear; +Where little fears grow great, great love grows there. + +Player King: +'Faith, I must leave thee, love, and shortly too; +My operant powers their functions leave to do: +And thou shalt live in this fair world behind, +Honour'd, beloved; and haply one as kind +For husband shalt thou-- + +Player Queen: +O, confound the rest! +Such love must needs be treason in my breast: +In second husband let me be accurst! +None wed the second but who kill'd the first. + +HAMLET: + +Player Queen: +The instances that second marriage move +Are base respects of thrift, but none of love: +A second time I kill my husband dead, +When second husband kisses me in bed. + +Player King: +I do believe you think what now you speak; +But what we do determine oft we break. +Purpose is but the slave to memory, +Of violent birth, but poor validity; +Which now, like fruit unripe, sticks on the tree; +But fall, unshaken, when they mellow be. +Most necessary 'tis that we forget +To pay ourselves what to ourselves is debt: +What to ourselves in passion we propose, +The passion ending, doth the purpose lose. +The violence of either grief or joy +Their own enactures with themselves destroy: +Where joy most revels, grief doth most lament; +Grief joys, joy grieves, on slender accident. +This world is not for aye, nor 'tis not strange +That even our loves should with our fortunes change; +For 'tis a question left us yet to prove, +Whether love lead fortune, or else fortune love. +The great man down, you mark his favourite flies; +The poor advanced makes friends of enemies. +And hitherto doth love on fortune tend; +For who not needs shall never lack a friend, +And who in want a hollow friend doth try, +Directly seasons him his enemy. +But, orderly to end where I begun, +Our wills and fates do so contrary run +That our devices still are overthrown; +Our thoughts are ours, their ends none of our own: +So think thou wilt no second husband wed; +But die thy thoughts when thy first lord is dead. + +Player Queen: +Nor earth to me give food, nor heaven light! +Sport and repose lock from me day and night! +To desperation turn my trust and hope! +An anchor's cheer in prison be my scope! +Each opposite that blanks the face of joy +Meet what I would have well and it destroy! +Both here and hence pursue me lasting strife, +If, once a widow, ever I be wife! + +HAMLET: +If she should break it now! + +Player King: +'Tis deeply sworn. Sweet, leave me here awhile; +My spirits grow dull, and fain I would beguile +The tedious day with sleep. + +Player Queen: +Sleep rock thy brain, +And never come mischance between us twain! + +HAMLET: +Madam, how like you this play? + +QUEEN GERTRUDE: +The lady protests too much, methinks. + +HAMLET: +O, but she'll keep her word. + +KING CLAUDIUS: +Have you heard the argument? Is there no offence in 't? + +HAMLET: +No, no, they do but jest, poison in jest; no offence +i' the world. + +KING CLAUDIUS: +What do you call the play? + +HAMLET: +The Mouse-trap. Marry, how? Tropically. This play +is the image of a murder done in Vienna: Gonzago is +the duke's name; his wife, Baptista: you shall see +anon; 'tis a knavish piece of work: but what o' +that? your majesty and we that have free souls, it +touches us not: let the galled jade wince, our +withers are unwrung. +This is one Lucianus, nephew to the king. + +OPHELIA: +You are as good as a chorus, my lord. + +HAMLET: +I could interpret between you and your love, if I +could see the puppets dallying. + +OPHELIA: +You are keen, my lord, you are keen. + +HAMLET: +It would cost you a groaning to take off my edge. + +OPHELIA: +Still better, and worse. + +HAMLET: +So you must take your husbands. Begin, murderer; +pox, leave thy damnable faces, and begin. Come: +'the croaking raven doth bellow for revenge.' + +LUCIANUS: +Thoughts black, hands apt, drugs fit, and time agreeing; +Confederate season, else no creature seeing; +Thou mixture rank, of midnight weeds collected, +With Hecate's ban thrice blasted, thrice infected, +Thy natural magic and dire property, +On wholesome life usurp immediately. + +HAMLET: +He poisons him i' the garden for's estate. His +name's Gonzago: the story is extant, and writ in +choice Italian: you shall see anon how the murderer +gets the love of Gonzago's wife. + +OPHELIA: +The king rises. + +HAMLET: +What, frighted with false fire! + +QUEEN GERTRUDE: +How fares my lord? + +LORD POLONIUS: +Give o'er the play. + +KING CLAUDIUS: +Give me some light: away! + +All: +Lights, lights, lights! + +HAMLET: +Why, let the stricken deer go weep, +The hart ungalled play; +For some must watch, while some must sleep: +So runs the world away. +Would not this, sir, and a forest of feathers-- if +the rest of my fortunes turn Turk with me--with two +Provincial roses on my razed shoes, get me a +fellowship in a cry of players, sir? + +HORATIO: +Half a share. + +HAMLET: +A whole one, I. +For thou dost know, O Damon dear, +This realm dismantled was +Of Jove himself; and now reigns here +A very, very--pajock. + +HORATIO: +You might have rhymed. + +HAMLET: +O good Horatio, I'll take the ghost's word for a +thousand pound. Didst perceive? + +HORATIO: +Very well, my lord. + +HAMLET: +Upon the talk of the poisoning? + +HORATIO: +I did very well note him. + +HAMLET: +Ah, ha! Come, some music! come, the recorders! +For if the king like not the comedy, +Why then, belike, he likes it not, perdy. +Come, some music! + +GUILDENSTERN: +Good my lord, vouchsafe me a word with you. + +HAMLET: +Sir, a whole history. + +GUILDENSTERN: +The king, sir,-- + +HAMLET: +Ay, sir, what of him? + +GUILDENSTERN: +Is in his retirement marvellous distempered. + +HAMLET: +With drink, sir? + +GUILDENSTERN: +No, my lord, rather with choler. + +HAMLET: +Your wisdom should show itself more richer to +signify this to his doctor; for, for me to put him +to his purgation would perhaps plunge him into far +more choler. + +GUILDENSTERN: +Good my lord, put your discourse into some frame and +start not so wildly from my affair. + +HAMLET: +I am tame, sir: pronounce. + +GUILDENSTERN: +The queen, your mother, in most great affliction of +spirit, hath sent me to you. + +HAMLET: +You are welcome. + +GUILDENSTERN: +Nay, good my lord, this courtesy is not of the right +breed. If it shall please you to make me a +wholesome answer, I will do your mother's +commandment: if not, your pardon and my return +shall be the end of my business. + +HAMLET: +Sir, I cannot. + +GUILDENSTERN: +What, my lord? + +HAMLET: +Make you a wholesome answer; my wit's diseased: but, +sir, such answer as I can make, you shall command; +or, rather, as you say, my mother: therefore no +more, but to the matter: my mother, you say,-- + +ROSENCRANTZ: +Then thus she says; your behavior hath struck her +into amazement and admiration. + +HAMLET: +O wonderful son, that can so astonish a mother! But +is there no sequel at the heels of this mother's +admiration? Impart. + +ROSENCRANTZ: +She desires to speak with you in her closet, ere you +go to bed. + +HAMLET: +We shall obey, were she ten times our mother. Have +you any further trade with us? + +ROSENCRANTZ: +My lord, you once did love me. + +HAMLET: +So I do still, by these pickers and stealers. + +ROSENCRANTZ: +Good my lord, what is your cause of distemper? you +do, surely, bar the door upon your own liberty, if +you deny your griefs to your friend. + +HAMLET: +Sir, I lack advancement. + +ROSENCRANTZ: +How can that be, when you have the voice of the king +himself for your succession in Denmark? + +HAMLET: +Ay, but sir, 'While the grass grows,'--the proverb +is something musty. +O, the recorders! let me see one. To withdraw with +you:--why do you go about to recover the wind of me, +as if you would drive me into a toil? + +GUILDENSTERN: +O, my lord, if my duty be too bold, my love is too +unmannerly. + +HAMLET: +I do not well understand that. Will you play upon +this pipe? + +GUILDENSTERN: +My lord, I cannot. + +HAMLET: +I pray you. + +GUILDENSTERN: +Believe me, I cannot. + +HAMLET: +I do beseech you. + +GUILDENSTERN: +I know no touch of it, my lord. + +HAMLET: +'Tis as easy as lying: govern these ventages with +your lingers and thumb, give it breath with your +mouth, and it will discourse most eloquent music. +Look you, these are the stops. + +GUILDENSTERN: +But these cannot I command to any utterance of +harmony; I have not the skill. + +HAMLET: +Why, look you now, how unworthy a thing you make of +me! You would play upon me; you would seem to know +my stops; you would pluck out the heart of my +mystery; you would sound me from my lowest note to +the top of my compass: and there is much music, +excellent voice, in this little organ; yet cannot +you make it speak. 'Sblood, do you think I am +easier to be played on than a pipe? Call me what +instrument you will, though you can fret me, yet you +cannot play upon me. +God bless you, sir! + +LORD POLONIUS: +My lord, the queen would speak with you, and +presently. + +HAMLET: +Do you see yonder cloud that's almost in shape of a camel? + +LORD POLONIUS: +By the mass, and 'tis like a camel, indeed. + +HAMLET: +Methinks it is like a weasel. + +LORD POLONIUS: +It is backed like a weasel. + +HAMLET: +Or like a whale? + +LORD POLONIUS: +Very like a whale. + +HAMLET: +Then I will come to my mother by and by. They fool +me to the top of my bent. I will come by and by. + +LORD POLONIUS: +I will say so. + +HAMLET: +By and by is easily said. +Leave me, friends. +Tis now the very witching time of night, +When churchyards yawn and hell itself breathes out +Contagion to this world: now could I drink hot blood, +And do such bitter business as the day +Would quake to look on. Soft! now to my mother. +O heart, lose not thy nature; let not ever +The soul of Nero enter this firm bosom: +Let me be cruel, not unnatural: +I will speak daggers to her, but use none; +My tongue and soul in this be hypocrites; +How in my words soever she be shent, +To give them seals never, my soul, consent! + +KING CLAUDIUS: +I like him not, nor stands it safe with us +To let his madness range. Therefore prepare you; +I your commission will forthwith dispatch, +And he to England shall along with you: +The terms of our estate may not endure +Hazard so dangerous as doth hourly grow +Out of his lunacies. + +GUILDENSTERN: +We will ourselves provide: +Most holy and religious fear it is +To keep those many many bodies safe +That live and feed upon your majesty. + +ROSENCRANTZ: +The single and peculiar life is bound, +With all the strength and armour of the mind, +To keep itself from noyance; but much more +That spirit upon whose weal depend and rest +The lives of many. The cease of majesty +Dies not alone; but, like a gulf, doth draw +What's near it with it: it is a massy wheel, +Fix'd on the summit of the highest mount, +To whose huge spokes ten thousand lesser things +Are mortised and adjoin'd; which, when it falls, +Each small annexment, petty consequence, +Attends the boisterous ruin. Never alone +Did the king sigh, but with a general groan. + +KING CLAUDIUS: +Arm you, I pray you, to this speedy voyage; +For we will fetters put upon this fear, +Which now goes too free-footed. + +ROSENCRANTZ: +We will haste us. + +LORD POLONIUS: +My lord, he's going to his mother's closet: +Behind the arras I'll convey myself, +To hear the process; and warrant she'll tax him home: +And, as you said, and wisely was it said, +'Tis meet that some more audience than a mother, +Since nature makes them partial, should o'erhear +The speech, of vantage. Fare you well, my liege: +I'll call upon you ere you go to bed, +And tell you what I know. + +KING CLAUDIUS: +Thanks, dear my lord. +O, my offence is rank it smells to heaven; +It hath the primal eldest curse upon't, +A brother's murder. Pray can I not, +Though inclination be as sharp as will: +My stronger guilt defeats my strong intent; +And, like a man to double business bound, +I stand in pause where I shall first begin, +And both neglect. What if this cursed hand +Were thicker than itself with brother's blood, +Is there not rain enough in the sweet heavens +To wash it white as snow? Whereto serves mercy +But to confront the visage of offence? +And what's in prayer but this two-fold force, +To be forestalled ere we come to fall, +Or pardon'd being down? Then I'll look up; +My fault is past. But, O, what form of prayer +Can serve my turn? 'Forgive me my foul murder'? +That cannot be; since I am still possess'd +Of those effects for which I did the murder, +My crown, mine own ambition and my queen. +May one be pardon'd and retain the offence? +In the corrupted currents of this world +Offence's gilded hand may shove by justice, +And oft 'tis seen the wicked prize itself +Buys out the law: but 'tis not so above; +There is no shuffling, there the action lies +In his true nature; and we ourselves compell'd, +Even to the teeth and forehead of our faults, +To give in evidence. What then? what rests? +Try what repentance can: what can it not? +Yet what can it when one can not repent? +O wretched state! O bosom black as death! +O limed soul, that, struggling to be free, +Art more engaged! Help, angels! Make assay! +Bow, stubborn knees; and, heart with strings of steel, +Be soft as sinews of the newborn babe! +All may be well. + +HAMLET: +Now might I do it pat, now he is praying; +And now I'll do't. And so he goes to heaven; +And so am I revenged. That would be scann'd: +A villain kills my father; and for that, +I, his sole son, do this same villain send +To heaven. +O, this is hire and salary, not revenge. +He took my father grossly, full of bread; +With all his crimes broad blown, as flush as May; +And how his audit stands who knows save heaven? +But in our circumstance and course of thought, +'Tis heavy with him: and am I then revenged, +To take him in the purging of his soul, +When he is fit and season'd for his passage? +No! +Up, sword; and know thou a more horrid hent: +When he is drunk asleep, or in his rage, +Or in the incestuous pleasure of his bed; +At gaming, swearing, or about some act +That has no relish of salvation in't; +Then trip him, that his heels may kick at heaven, +And that his soul may be as damn'd and black +As hell, whereto it goes. My mother stays: +This physic but prolongs thy sickly days. + +KING CLAUDIUS: + +LORD POLONIUS: +He will come straight. Look you lay home to him: +Tell him his pranks have been too broad to bear with, +And that your grace hath screen'd and stood between +Much heat and him. I'll sconce me even here. +Pray you, be round with him. + +HAMLET: + +QUEEN GERTRUDE: +I'll warrant you, +Fear me not: withdraw, I hear him coming. + +HAMLET: +Now, mother, what's the matter? + +QUEEN GERTRUDE: +Hamlet, thou hast thy father much offended. + +HAMLET: +Mother, you have my father much offended. + +QUEEN GERTRUDE: +Come, come, you answer with an idle tongue. + +HAMLET: +Go, go, you question with a wicked tongue. + +QUEEN GERTRUDE: +Why, how now, Hamlet! + +HAMLET: +What's the matter now? + +QUEEN GERTRUDE: +Have you forgot me? + +HAMLET: +No, by the rood, not so: +You are the queen, your husband's brother's wife; +And--would it were not so!--you are my mother. + +QUEEN GERTRUDE: +Nay, then, I'll set those to you that can speak. + +HAMLET: +Come, come, and sit you down; you shall not budge; +You go not till I set you up a glass +Where you may see the inmost part of you. + +QUEEN GERTRUDE: +What wilt thou do? thou wilt not murder me? +Help, help, ho! + +LORD POLONIUS: + +HAMLET: + +LORD POLONIUS: + +QUEEN GERTRUDE: +O me, what hast thou done? + +HAMLET: +Nay, I know not: +Is it the king? + +QUEEN GERTRUDE: +O, what a rash and bloody deed is this! + +HAMLET: +A bloody deed! almost as bad, good mother, +As kill a king, and marry with his brother. + +QUEEN GERTRUDE: +As kill a king! + +HAMLET: +Ay, lady, 'twas my word. +Thou wretched, rash, intruding fool, farewell! +I took thee for thy better: take thy fortune; +Thou find'st to be too busy is some danger. +Leave wringing of your hands: peace! sit you down, +And let me wring your heart; for so I shall, +If it be made of penetrable stuff, +If damned custom have not brass'd it so +That it is proof and bulwark against sense. + +QUEEN GERTRUDE: +What have I done, that thou darest wag thy tongue +In noise so rude against me? + +HAMLET: +Such an act +That blurs the grace and blush of modesty, +Calls virtue hypocrite, takes off the rose +From the fair forehead of an innocent love +And sets a blister there, makes marriage-vows +As false as dicers' oaths: O, such a deed +As from the body of contraction plucks +The very soul, and sweet religion makes +A rhapsody of words: heaven's face doth glow: +Yea, this solidity and compound mass, +With tristful visage, as against the doom, +Is thought-sick at the act. + +QUEEN GERTRUDE: +Ay me, what act, +That roars so loud, and thunders in the index? + +HAMLET: +Look here, upon this picture, and on this, +The counterfeit presentment of two brothers. +See, what a grace was seated on this brow; +Hyperion's curls; the front of Jove himself; +An eye like Mars, to threaten and command; +A station like the herald Mercury +New-lighted on a heaven-kissing hill; +A combination and a form indeed, +Where every god did seem to set his seal, +To give the world assurance of a man: +This was your husband. Look you now, what follows: +Here is your husband; like a mildew'd ear, +Blasting his wholesome brother. Have you eyes? +Could you on this fair mountain leave to feed, +And batten on this moor? Ha! have you eyes? +You cannot call it love; for at your age +The hey-day in the blood is tame, it's humble, +And waits upon the judgment: and what judgment +Would step from this to this? Sense, sure, you have, +Else could you not have motion; but sure, that sense +Is apoplex'd; for madness would not err, +Nor sense to ecstasy was ne'er so thrall'd +But it reserved some quantity of choice, +To serve in such a difference. What devil was't +That thus hath cozen'd you at hoodman-blind? +Eyes without feeling, feeling without sight, +Ears without hands or eyes, smelling sans all, +Or but a sickly part of one true sense +Could not so mope. +O shame! where is thy blush? Rebellious hell, +If thou canst mutine in a matron's bones, +To flaming youth let virtue be as wax, +And melt in her own fire: proclaim no shame +When the compulsive ardour gives the charge, +Since frost itself as actively doth burn +And reason panders will. + +QUEEN GERTRUDE: +O Hamlet, speak no more: +Thou turn'st mine eyes into my very soul; +And there I see such black and grained spots +As will not leave their tinct. + +HAMLET: +Nay, but to live +In the rank sweat of an enseamed bed, +Stew'd in corruption, honeying and making love +Over the nasty sty,-- + +QUEEN GERTRUDE: +O, speak to me no more; +These words, like daggers, enter in mine ears; +No more, sweet Hamlet! + +HAMLET: +A murderer and a villain; +A slave that is not twentieth part the tithe +Of your precedent lord; a vice of kings; +A cutpurse of the empire and the rule, +That from a shelf the precious diadem stole, +And put it in his pocket! + +QUEEN GERTRUDE: +No more! + +HAMLET: +A king of shreds and patches,-- +Save me, and hover o'er me with your wings, +You heavenly guards! What would your gracious figure? + +QUEEN GERTRUDE: +Alas, he's mad! + +HAMLET: +Do you not come your tardy son to chide, +That, lapsed in time and passion, lets go by +The important acting of your dread command? O, say! + +Ghost: +Do not forget: this visitation +Is but to whet thy almost blunted purpose. +But, look, amazement on thy mother sits: +O, step between her and her fighting soul: +Conceit in weakest bodies strongest works: +Speak to her, Hamlet. + +HAMLET: +How is it with you, lady? + +QUEEN GERTRUDE: +Alas, how is't with you, +That you do bend your eye on vacancy +And with the incorporal air do hold discourse? +Forth at your eyes your spirits wildly peep; +And, as the sleeping soldiers in the alarm, +Your bedded hair, like life in excrements, +Starts up, and stands on end. O gentle son, +Upon the heat and flame of thy distemper +Sprinkle cool patience. Whereon do you look? + +HAMLET: +On him, on him! Look you, how pale he glares! +His form and cause conjoin'd, preaching to stones, +Would make them capable. Do not look upon me; +Lest with this piteous action you convert +My stern effects: then what I have to do +Will want true colour; tears perchance for blood. + +QUEEN GERTRUDE: +To whom do you speak this? + +HAMLET: +Do you see nothing there? + +QUEEN GERTRUDE: +Nothing at all; yet all that is I see. + +HAMLET: +Nor did you nothing hear? + +QUEEN GERTRUDE: +No, nothing but ourselves. + +HAMLET: +Why, look you there! look, how it steals away! +My father, in his habit as he lived! +Look, where he goes, even now, out at the portal! + +QUEEN GERTRUDE: +This the very coinage of your brain: +This bodiless creation ecstasy +Is very cunning in. + +HAMLET: +Ecstasy! +My pulse, as yours, doth temperately keep time, +And makes as healthful music: it is not madness +That I have utter'd: bring me to the test, +And I the matter will re-word; which madness +Would gambol from. Mother, for love of grace, +Lay not that mattering unction to your soul, +That not your trespass, but my madness speaks: +It will but skin and film the ulcerous place, +Whilst rank corruption, mining all within, +Infects unseen. Confess yourself to heaven; +Repent what's past; avoid what is to come; +And do not spread the compost on the weeds, +To make them ranker. Forgive me this my virtue; +For in the fatness of these pursy times +Virtue itself of vice must pardon beg, +Yea, curb and woo for leave to do him good. + +QUEEN GERTRUDE: +O Hamlet, thou hast cleft my heart in twain. + +HAMLET: +O, throw away the worser part of it, +And live the purer with the other half. +Good night: but go not to mine uncle's bed; +Assume a virtue, if you have it not. +That monster, custom, who all sense doth eat, +Of habits devil, is angel yet in this, +That to the use of actions fair and good +He likewise gives a frock or livery, +That aptly is put on. Refrain to-night, +And that shall lend a kind of easiness +To the next abstinence: the next more easy; +For use almost can change the stamp of nature, +And either ... the devil, or throw him out +With wondrous potency. Once more, good night: +And when you are desirous to be bless'd, +I'll blessing beg of you. For this same lord, +I do repent: but heaven hath pleased it so, +To punish me with this and this with me, +That I must be their scourge and minister. +I will bestow him, and will answer well +The death I gave him. So, again, good night. +I must be cruel, only to be kind: +Thus bad begins and worse remains behind. +One word more, good lady. + +QUEEN GERTRUDE: +What shall I do? + +HAMLET: +Not this, by no means, that I bid you do: +Let the bloat king tempt you again to bed; +Pinch wanton on your cheek; call you his mouse; +And let him, for a pair of reechy kisses, +Or paddling in your neck with his damn'd fingers, +Make you to ravel all this matter out, +That I essentially am not in madness, +But mad in craft. 'Twere good you let him know; +For who, that's but a queen, fair, sober, wise, +Would from a paddock, from a bat, a gib, +Such dear concernings hide? who would do so? +No, in despite of sense and secrecy, +Unpeg the basket on the house's top. +Let the birds fly, and, like the famous ape, +To try conclusions, in the basket creep, +And break your own neck down. + +QUEEN GERTRUDE: +Be thou assured, if words be made of breath, +And breath of life, I have no life to breathe +What thou hast said to me. + +HAMLET: +I must to England; you know that? + +QUEEN GERTRUDE: +Alack, +I had forgot: 'tis so concluded on. + +HAMLET: +There's letters seal'd: and my two schoolfellows, +Whom I will trust as I will adders fang'd, +They bear the mandate; they must sweep my way, +And marshal me to knavery. Let it work; +For 'tis the sport to have the engineer +Hoist with his own petard: and 't shall go hard +But I will delve one yard below their mines, +And blow them at the moon: O, 'tis most sweet, +When in one line two crafts directly meet. +This man shall set me packing: +I'll lug the guts into the neighbour room. +Mother, good night. Indeed this counsellor +Is now most still, most secret and most grave, +Who was in life a foolish prating knave. +Come, sir, to draw toward an end with you. +Good night, mother. + +KING CLAUDIUS: +There's matter in these sighs, these profound heaves: +You must translate: 'tis fit we understand them. +Where is your son? + +QUEEN GERTRUDE: +Bestow this place on us a little while. +Ah, my good lord, what have I seen to-night! + +KING CLAUDIUS: +What, Gertrude? How does Hamlet? + +QUEEN GERTRUDE: +Mad as the sea and wind, when both contend +Which is the mightier: in his lawless fit, +Behind the arras hearing something stir, +Whips out his rapier, cries, 'A rat, a rat!' +And, in this brainish apprehension, kills +The unseen good old man. + +KING CLAUDIUS: +O heavy deed! +It had been so with us, had we been there: +His liberty is full of threats to all; +To you yourself, to us, to every one. +Alas, how shall this bloody deed be answer'd? +It will be laid to us, whose providence +Should have kept short, restrain'd and out of haunt, +This mad young man: but so much was our love, +We would not understand what was most fit; +But, like the owner of a foul disease, +To keep it from divulging, let it feed +Even on the pith of Life. Where is he gone? + +QUEEN GERTRUDE: +To draw apart the body he hath kill'd: +O'er whom his very madness, like some ore +Among a mineral of metals base, +Shows itself pure; he weeps for what is done. + +KING CLAUDIUS: +O Gertrude, come away! +The sun no sooner shall the mountains touch, +But we will ship him hence: and this vile deed +We must, with all our majesty and skill, +Both countenance and excuse. Ho, Guildenstern! +Friends both, go join you with some further aid: +Hamlet in madness hath Polonius slain, +And from his mother's closet hath he dragg'd him: +Go seek him out; speak fair, and bring the body +Into the chapel. I pray you, haste in this. +Come, Gertrude, we'll call up our wisest friends; +And let them know, both what we mean to do, +And what's untimely done... +Whose whisper o'er the world's diameter, +As level as the cannon to his blank, +Transports his poison'd shot, may miss our name, +And hit the woundless air. O, come away! +My soul is full of discord and dismay. + +HAMLET: +Safely stowed. + +ROSENCRANTZ: + +HAMLET: +What noise? who calls on Hamlet? +O, here they come. + +ROSENCRANTZ: +What have you done, my lord, with the dead body? + +HAMLET: +Compounded it with dust, whereto 'tis kin. + +ROSENCRANTZ: +Tell us where 'tis, that we may take it thence +And bear it to the chapel. + +HAMLET: +Do not believe it. + +ROSENCRANTZ: +Believe what? + +HAMLET: +That I can keep your counsel and not mine own. +Besides, to be demanded of a sponge! what +replication should be made by the son of a king? + +ROSENCRANTZ: +Take you me for a sponge, my lord? + +HAMLET: +Ay, sir, that soaks up the king's countenance, his +rewards, his authorities. But such officers do the +king best service in the end: he keeps them, like +an ape, in the corner of his jaw; first mouthed, to +be last swallowed: when he needs what you have +gleaned, it is but squeezing you, and, sponge, you +shall be dry again. + +ROSENCRANTZ: +I understand you not, my lord. + +HAMLET: +I am glad of it: a knavish speech sleeps in a +foolish ear. + +ROSENCRANTZ: +My lord, you must tell us where the body is, and go +with us to the king. + +HAMLET: +The body is with the king, but the king is not with +the body. The king is a thing-- + +GUILDENSTERN: +A thing, my lord! + +HAMLET: +Of nothing: bring me to him. Hide fox, and all after. + +KING CLAUDIUS: +I have sent to seek him, and to find the body. +How dangerous is it that this man goes loose! +Yet must not we put the strong law on him: +He's loved of the distracted multitude, +Who like not in their judgment, but their eyes; +And where tis so, the offender's scourge is weigh'd, +But never the offence. To bear all smooth and even, +This sudden sending him away must seem +Deliberate pause: diseases desperate grown +By desperate appliance are relieved, +Or not at all. +How now! what hath befall'n? + +ROSENCRANTZ: +Where the dead body is bestow'd, my lord, +We cannot get from him. + +KING CLAUDIUS: +But where is he? + +ROSENCRANTZ: +Without, my lord; guarded, to know your pleasure. + +KING CLAUDIUS: +Bring him before us. + +ROSENCRANTZ: +Ho, Guildenstern! bring in my lord. + +KING CLAUDIUS: +Now, Hamlet, where's Polonius? + +HAMLET: +At supper. + +KING CLAUDIUS: +At supper! where? + +HAMLET: +Not where he eats, but where he is eaten: a certain +convocation of politic worms are e'en at him. Your +worm is your only emperor for diet: we fat all +creatures else to fat us, and we fat ourselves for +maggots: your fat king and your lean beggar is but +variable service, two dishes, but to one table: +that's the end. + +KING CLAUDIUS: +Alas, alas! + +HAMLET: +A man may fish with the worm that hath eat of a +king, and cat of the fish that hath fed of that worm. + +KING CLAUDIUS: +What dost you mean by this? + +HAMLET: +Nothing but to show you how a king may go a +progress through the guts of a beggar. + +KING CLAUDIUS: +Where is Polonius? + +HAMLET: +In heaven; send hither to see: if your messenger +find him not there, seek him i' the other place +yourself. But indeed, if you find him not within +this month, you shall nose him as you go up the +stairs into the lobby. + +KING CLAUDIUS: +Go seek him there. + +HAMLET: +He will stay till ye come. + +KING CLAUDIUS: +Hamlet, this deed, for thine especial safety,-- +Which we do tender, as we dearly grieve +For that which thou hast done,--must send thee hence +With fiery quickness: therefore prepare thyself; +The bark is ready, and the wind at help, +The associates tend, and every thing is bent +For England. + +HAMLET: +For England! + +KING CLAUDIUS: +Ay, Hamlet. + +HAMLET: +Good. + +KING CLAUDIUS: +So is it, if thou knew'st our purposes. + +HAMLET: +I see a cherub that sees them. But, come; for +England! Farewell, dear mother. + +KING CLAUDIUS: +Thy loving father, Hamlet. + +HAMLET: +My mother: father and mother is man and wife; man +and wife is one flesh; and so, my mother. Come, for England! + +KING CLAUDIUS: +Follow him at foot; tempt him with speed aboard; +Delay it not; I'll have him hence to-night: +Away! for every thing is seal'd and done +That else leans on the affair: pray you, make haste. +And, England, if my love thou hold'st at aught-- +As my great power thereof may give thee sense, +Since yet thy cicatrice looks raw and red +After the Danish sword, and thy free awe +Pays homage to us--thou mayst not coldly set +Our sovereign process; which imports at full, +By letters congruing to that effect, +The present death of Hamlet. Do it, England; +For like the hectic in my blood he rages, +And thou must cure me: till I know 'tis done, +Howe'er my haps, my joys were ne'er begun. + +PRINCE FORTINBRAS: +Go, captain, from me greet the Danish king; +Tell him that, by his licence, Fortinbras +Craves the conveyance of a promised march +Over his kingdom. You know the rendezvous. +If that his majesty would aught with us, +We shall express our duty in his eye; +And let him know so. + +Captain: +I will do't, my lord. + +PRINCE FORTINBRAS: +Go softly on. + +HAMLET: +Good sir, whose powers are these? + +Captain: +They are of Norway, sir. + +HAMLET: +How purposed, sir, I pray you? + +Captain: +Against some part of Poland. + +HAMLET: +Who commands them, sir? + +Captain: +The nephews to old Norway, Fortinbras. + +HAMLET: +Goes it against the main of Poland, sir, +Or for some frontier? + +Captain: +Truly to speak, and with no addition, +We go to gain a little patch of ground +That hath in it no profit but the name. +To pay five ducats, five, I would not farm it; +Nor will it yield to Norway or the Pole +A ranker rate, should it be sold in fee. + +HAMLET: +Why, then the Polack never will defend it. + +Captain: +Yes, it is already garrison'd. + +HAMLET: +Two thousand souls and twenty thousand ducats +Will not debate the question of this straw: +This is the imposthume of much wealth and peace, +That inward breaks, and shows no cause without +Why the man dies. I humbly thank you, sir. + +Captain: +God be wi' you, sir. + +ROSENCRANTZ: +Wilt please you go, my lord? + +HAMLET: +I'll be with you straight go a little before. +How all occasions do inform against me, +And spur my dull revenge! What is a man, +If his chief good and market of his time +Be but to sleep and feed? a beast, no more. +Sure, he that made us with such large discourse, +Looking before and after, gave us not +That capability and god-like reason +To fust in us unused. Now, whether it be +Bestial oblivion, or some craven scruple +Of thinking too precisely on the event, +A thought which, quarter'd, hath but one part wisdom +And ever three parts coward, I do not know +Why yet I live to say 'This thing's to do;' +Sith I have cause and will and strength and means +To do't. Examples gross as earth exhort me: +Witness this army of such mass and charge +Led by a delicate and tender prince, +Whose spirit with divine ambition puff'd +Makes mouths at the invisible event, +Exposing what is mortal and unsure +To all that fortune, death and danger dare, +Even for an egg-shell. Rightly to be great +Is not to stir without great argument, +But greatly to find quarrel in a straw +When honour's at the stake. How stand I then, +That have a father kill'd, a mother stain'd, +Excitements of my reason and my blood, +And let all sleep? while, to my shame, I see +The imminent death of twenty thousand men, +That, for a fantasy and trick of fame, +Go to their graves like beds, fight for a plot +Whereon the numbers cannot try the cause, +Which is not tomb enough and continent +To hide the slain? O, from this time forth, +My thoughts be bloody, or be nothing worth! + +QUEEN GERTRUDE: +I will not speak with her. + +Gentleman: +She is importunate, indeed distract: +Her mood will needs be pitied. + +QUEEN GERTRUDE: +What would she have? + +Gentleman: +She speaks much of her father; says she hears +There's tricks i' the world; and hems, and beats her heart; +Spurns enviously at straws; speaks things in doubt, +That carry but half sense: her speech is nothing, +Yet the unshaped use of it doth move +The hearers to collection; they aim at it, +And botch the words up fit to their own thoughts; +Which, as her winks, and nods, and gestures +yield them, +Indeed would make one think there might be thought, +Though nothing sure, yet much unhappily. + +HORATIO: +'Twere good she were spoken with; for she may strew +Dangerous conjectures in ill-breeding minds. + +QUEEN GERTRUDE: +Let her come in. +To my sick soul, as sin's true nature is, +Each toy seems prologue to some great amiss: +So full of artless jealousy is guilt, +It spills itself in fearing to be spilt. + +OPHELIA: +Where is the beauteous majesty of Denmark? + +QUEEN GERTRUDE: +How now, Ophelia! + +OPHELIA: + +QUEEN GERTRUDE: +Alas, sweet lady, what imports this song? + +OPHELIA: +Say you? nay, pray you, mark. +He is dead and gone, lady, +He is dead and gone; +At his head a grass-green turf, +At his heels a stone. + +QUEEN GERTRUDE: +Nay, but, Ophelia,-- + +OPHELIA: +Pray you, mark. +White his shroud as the mountain snow,-- + +QUEEN GERTRUDE: +Alas, look here, my lord. + +OPHELIA: + +KING CLAUDIUS: +How do you, pretty lady? + +OPHELIA: +Well, God 'ild you! They say the owl was a baker's +daughter. Lord, we know what we are, but know not +what we may be. God be at your table! + +KING CLAUDIUS: +Conceit upon her father. + +OPHELIA: +Pray you, let's have no words of this; but when they +ask you what it means, say you this: +To-morrow is Saint Valentine's day, +All in the morning betime, +And I a maid at your window, +To be your Valentine. +Then up he rose, and donn'd his clothes, +And dupp'd the chamber-door; +Let in the maid, that out a maid +Never departed more. + +KING CLAUDIUS: +Pretty Ophelia! + +OPHELIA: +Indeed, la, without an oath, I'll make an end on't: +By Gis and by Saint Charity, +Alack, and fie for shame! +Young men will do't, if they come to't; +By cock, they are to blame. +Quoth she, before you tumbled me, +You promised me to wed. +So would I ha' done, by yonder sun, +An thou hadst not come to my bed. + +KING CLAUDIUS: +How long hath she been thus? + +OPHELIA: +I hope all will be well. We must be patient: but I +cannot choose but weep, to think they should lay him +i' the cold ground. My brother shall know of it: +and so I thank you for your good counsel. Come, my +coach! Good night, ladies; good night, sweet ladies; +good night, good night. + +KING CLAUDIUS: +Follow her close; give her good watch, +I pray you. +O, this is the poison of deep grief; it springs +All from her father's death. O Gertrude, Gertrude, +When sorrows come, they come not single spies +But in battalions. First, her father slain: +Next, your son gone; and he most violent author +Of his own just remove: the people muddied, +Thick and unwholesome in their thoughts and whispers, +For good Polonius' death; and we have done but greenly, +In hugger-mugger to inter him: poor Ophelia +Divided from herself and her fair judgment, +Without the which we are pictures, or mere beasts: +Last, and as much containing as all these, +Her brother is in secret come from France; +Feeds on his wonder, keeps himself in clouds, +And wants not buzzers to infect his ear +With pestilent speeches of his father's death; +Wherein necessity, of matter beggar'd, +Will nothing stick our person to arraign +In ear and ear. O my dear Gertrude, this, +Like to a murdering-piece, in many places +Gives me superfluous death. + +QUEEN GERTRUDE: +Alack, what noise is this? + +KING CLAUDIUS: +Where are my Switzers? Let them guard the door. +What is the matter? + +Gentleman: +Save yourself, my lord: +The ocean, overpeering of his list, +Eats not the flats with more impetuous haste +Than young Laertes, in a riotous head, +O'erbears your officers. The rabble call him lord; +And, as the world were now but to begin, +Antiquity forgot, custom not known, +The ratifiers and props of every word, +They cry 'Choose we: Laertes shall be king:' +Caps, hands, and tongues, applaud it to the clouds: +'Laertes shall be king, Laertes king!' + +QUEEN GERTRUDE: +How cheerfully on the false trail they cry! +O, this is counter, you false Danish dogs! + +KING CLAUDIUS: +The doors are broke. + +LAERTES: +Where is this king? Sirs, stand you all without. + +Danes: +No, let's come in. + +LAERTES: +I pray you, give me leave. + +Danes: +We will, we will. + +LAERTES: +I thank you: keep the door. O thou vile king, +Give me my father! + +QUEEN GERTRUDE: +Calmly, good Laertes. + +LAERTES: +That drop of blood that's calm proclaims me bastard, +Cries cuckold to my father, brands the harlot +Even here, between the chaste unsmirched brow +Of my true mother. + +KING CLAUDIUS: +What is the cause, Laertes, +That thy rebellion looks so giant-like? +Let him go, Gertrude; do not fear our person: +There's such divinity doth hedge a king, +That treason can but peep to what it would, +Acts little of his will. Tell me, Laertes, +Why thou art thus incensed. Let him go, Gertrude. +Speak, man. + +LAERTES: +Where is my father? + +KING CLAUDIUS: +Dead. + +QUEEN GERTRUDE: +But not by him. + +KING CLAUDIUS: +Let him demand his fill. + +LAERTES: +How came he dead? I'll not be juggled with: +To hell, allegiance! vows, to the blackest devil! +Conscience and grace, to the profoundest pit! +I dare damnation. To this point I stand, +That both the worlds I give to negligence, +Let come what comes; only I'll be revenged +Most thoroughly for my father. + +KING CLAUDIUS: +Who shall stay you? + +LAERTES: +My will, not all the world: +And for my means, I'll husband them so well, +They shall go far with little. + +KING CLAUDIUS: +Good Laertes, +If you desire to know the certainty +Of your dear father's death, is't writ in your revenge, +That, swoopstake, you will draw both friend and foe, +Winner and loser? + +LAERTES: +None but his enemies. + +KING CLAUDIUS: +Will you know them then? + +LAERTES: +To his good friends thus wide I'll ope my arms; +And like the kind life-rendering pelican, +Repast them with my blood. + +KING CLAUDIUS: +Why, now you speak +Like a good child and a true gentleman. +That I am guiltless of your father's death, +And am most sensible in grief for it, +It shall as level to your judgment pierce +As day does to your eye. + +Danes: + +LAERTES: +How now! what noise is that? +O heat, dry up my brains! tears seven times salt, +Burn out the sense and virtue of mine eye! +By heaven, thy madness shall be paid by weight, +Till our scale turn the beam. O rose of May! +Dear maid, kind sister, sweet Ophelia! +O heavens! is't possible, a young maid's wits +Should be as moral as an old man's life? +Nature is fine in love, and where 'tis fine, +It sends some precious instance of itself +After the thing it loves. + +OPHELIA: + +LAERTES: +Hadst thou thy wits, and didst persuade revenge, +It could not move thus. + +OPHELIA: + +LAERTES: +This nothing's more than matter. + +OPHELIA: +There's rosemary, that's for remembrance; pray, +love, remember: and there is pansies. that's for thoughts. + +LAERTES: +A document in madness, thoughts and remembrance fitted. + +OPHELIA: +There's fennel for you, and columbines: there's rue +for you; and here's some for me: we may call it +herb-grace o' Sundays: O you must wear your rue with +a difference. There's a daisy: I would give you +some violets, but they withered all when my father +died: they say he made a good end,-- +For bonny sweet Robin is all my joy. + +LAERTES: +Thought and affliction, passion, hell itself, +She turns to favour and to prettiness. + +OPHELIA: + +LAERTES: +Do you see this, O God? + +KING CLAUDIUS: +Laertes, I must commune with your grief, +Or you deny me right. Go but apart, +Make choice of whom your wisest friends you will. +And they shall hear and judge 'twixt you and me: +If by direct or by collateral hand +They find us touch'd, we will our kingdom give, +Our crown, our life, and all that we can ours, +To you in satisfaction; but if not, +Be you content to lend your patience to us, +And we shall jointly labour with your soul +To give it due content. + +LAERTES: +Let this be so; +His means of death, his obscure funeral-- +No trophy, sword, nor hatchment o'er his bones, +No noble rite nor formal ostentation-- +Cry to be heard, as 'twere from heaven to earth, +That I must call't in question. + +KING CLAUDIUS: +So you shall; +And where the offence is let the great axe fall. +I pray you, go with me. + +HORATIO: +What are they that would speak with me? + +Servant: +Sailors, sir: they say they have letters for you. + +HORATIO: +Let them come in. +I do not know from what part of the world +I should be greeted, if not from Lord Hamlet. + +First Sailor: +God bless you, sir. + +HORATIO: +Let him bless thee too. + +First Sailor: +He shall, sir, an't please him. There's a letter for +you, sir; it comes from the ambassador that was +bound for England; if your name be Horatio, as I am +let to know it is. + +HORATIO: + +KING CLAUDIUS: +Now must your conscience my acquaintance seal, +And you must put me in your heart for friend, +Sith you have heard, and with a knowing ear, +That he which hath your noble father slain +Pursued my life. + +LAERTES: +It well appears: but tell me +Why you proceeded not against these feats, +So crimeful and so capital in nature, +As by your safety, wisdom, all things else, +You mainly were stirr'd up. + +KING CLAUDIUS: +O, for two special reasons; +Which may to you, perhaps, seem much unsinew'd, +But yet to me they are strong. The queen his mother +Lives almost by his looks; and for myself-- +My virtue or my plague, be it either which-- +She's so conjunctive to my life and soul, +That, as the star moves not but in his sphere, +I could not but by her. The other motive, +Why to a public count I might not go, +Is the great love the general gender bear him; +Who, dipping all his faults in their affection, +Would, like the spring that turneth wood to stone, +Convert his gyves to graces; so that my arrows, +Too slightly timber'd for so loud a wind, +Would have reverted to my bow again, +And not where I had aim'd them. + +LAERTES: +And so have I a noble father lost; +A sister driven into desperate terms, +Whose worth, if praises may go back again, +Stood challenger on mount of all the age +For her perfections: but my revenge will come. + +KING CLAUDIUS: +Break not your sleeps for that: you must not think +That we are made of stuff so flat and dull +That we can let our beard be shook with danger +And think it pastime. You shortly shall hear more: +I loved your father, and we love ourself; +And that, I hope, will teach you to imagine-- +How now! what news? + +Messenger: +Letters, my lord, from Hamlet: +This to your majesty; this to the queen. + +KING CLAUDIUS: +From Hamlet! who brought them? + +Messenger: +Sailors, my lord, they say; I saw them not: +They were given me by Claudio; he received them +Of him that brought them. + +KING CLAUDIUS: +Laertes, you shall hear them. Leave us. +'High and mighty, You shall know I am set naked on +your kingdom. To-morrow shall I beg leave to see +your kingly eyes: when I shall, first asking your +pardon thereunto, recount the occasion of my sudden +and more strange return. 'HAMLET.' +What should this mean? Are all the rest come back? +Or is it some abuse, and no such thing? + +LAERTES: +Know you the hand? + +KING CLAUDIUS: +'Tis Hamlets character. 'Naked! +And in a postscript here, he says 'alone.' +Can you advise me? + +LAERTES: +I'm lost in it, my lord. But let him come; +It warms the very sickness in my heart, +That I shall live and tell him to his teeth, +'Thus didest thou.' + +KING CLAUDIUS: +If it be so, Laertes-- +As how should it be so? how otherwise?-- +Will you be ruled by me? + +LAERTES: +Ay, my lord; +So you will not o'errule me to a peace. + +KING CLAUDIUS: +To thine own peace. If he be now return'd, +As checking at his voyage, and that he means +No more to undertake it, I will work him +To an exploit, now ripe in my device, +Under the which he shall not choose but fall: +And for his death no wind of blame shall breathe, +But even his mother shall uncharge the practise +And call it accident. + +LAERTES: +My lord, I will be ruled; +The rather, if you could devise it so +That I might be the organ. + +KING CLAUDIUS: +It falls right. +You have been talk'd of since your travel much, +And that in Hamlet's hearing, for a quality +Wherein, they say, you shine: your sum of parts +Did not together pluck such envy from him +As did that one, and that, in my regard, +Of the unworthiest siege. + +LAERTES: +What part is that, my lord? + +KING CLAUDIUS: +A very riband in the cap of youth, +Yet needful too; for youth no less becomes +The light and careless livery that it wears +Than settled age his sables and his weeds, +Importing health and graveness. Two months since, +Here was a gentleman of Normandy:-- +I've seen myself, and served against, the French, +And they can well on horseback: but this gallant +Had witchcraft in't; he grew unto his seat; +And to such wondrous doing brought his horse, +As he had been incorpsed and demi-natured +With the brave beast: so far he topp'd my thought, +That I, in forgery of shapes and tricks, +Come short of what he did. + +LAERTES: +A Norman was't? + +KING CLAUDIUS: +A Norman. + +LAERTES: +Upon my life, Lamond. + +KING CLAUDIUS: +The very same. + +LAERTES: +I know him well: he is the brooch indeed +And gem of all the nation. + +KING CLAUDIUS: +He made confession of you, +And gave you such a masterly report +For art and exercise in your defence +And for your rapier most especially, +That he cried out, 'twould be a sight indeed, +If one could match you: the scrimers of their nation, +He swore, had had neither motion, guard, nor eye, +If you opposed them. Sir, this report of his +Did Hamlet so envenom with his envy +That he could nothing do but wish and beg +Your sudden coming o'er, to play with him. +Now, out of this,-- + +LAERTES: +What out of this, my lord? + +KING CLAUDIUS: +Laertes, was your father dear to you? +Or are you like the painting of a sorrow, +A face without a heart? + +LAERTES: +Why ask you this? + +KING CLAUDIUS: +Not that I think you did not love your father; +But that I know love is begun by time; +And that I see, in passages of proof, +Time qualifies the spark and fire of it. +There lives within the very flame of love +A kind of wick or snuff that will abate it; +And nothing is at a like goodness still; +For goodness, growing to a plurisy, +Dies in his own too much: that we would do +We should do when we would; for this 'would' changes +And hath abatements and delays as many +As there are tongues, are hands, are accidents; +And then this 'should' is like a spendthrift sigh, +That hurts by easing. But, to the quick o' the ulcer:-- +Hamlet comes back: what would you undertake, +To show yourself your father's son in deed +More than in words? + +LAERTES: +To cut his throat i' the church. + +KING CLAUDIUS: +No place, indeed, should murder sanctuarize; +Revenge should have no bounds. But, good Laertes, +Will you do this, keep close within your chamber. +Hamlet return'd shall know you are come home: +We'll put on those shall praise your excellence +And set a double varnish on the fame +The Frenchman gave you, bring you in fine together +And wager on your heads: he, being remiss, +Most generous and free from all contriving, +Will not peruse the foils; so that, with ease, +Or with a little shuffling, you may choose +A sword unbated, and in a pass of practise +Requite him for your father. + +LAERTES: +I will do't: +And, for that purpose, I'll anoint my sword. +I bought an unction of a mountebank, +So mortal that, but dip a knife in it, +Where it draws blood no cataplasm so rare, +Collected from all simples that have virtue +Under the moon, can save the thing from death +That is but scratch'd withal: I'll touch my point +With this contagion, that, if I gall him slightly, +It may be death. + +KING CLAUDIUS: +Let's further think of this; +Weigh what convenience both of time and means +May fit us to our shape: if this should fail, +And that our drift look through our bad performance, +'Twere better not assay'd: therefore this project +Should have a back or second, that might hold, +If this should blast in proof. Soft! let me see: +We'll make a solemn wager on your cunnings: I ha't. +When in your motion you are hot and dry-- +As make your bouts more violent to that end-- +And that he calls for drink, I'll have prepared him +A chalice for the nonce, whereon but sipping, +If he by chance escape your venom'd stuck, +Our purpose may hold there. +How now, sweet queen! + +QUEEN GERTRUDE: +One woe doth tread upon another's heel, +So fast they follow; your sister's drown'd, Laertes. + +LAERTES: +Drown'd! O, where? + +QUEEN GERTRUDE: +There is a willow grows aslant a brook, +That shows his hoar leaves in the glassy stream; +There with fantastic garlands did she come +Of crow-flowers, nettles, daisies, and long purples +That liberal shepherds give a grosser name, +But our cold maids do dead men's fingers call them: +There, on the pendent boughs her coronet weeds +Clambering to hang, an envious sliver broke; +When down her weedy trophies and herself +Fell in the weeping brook. Her clothes spread wide; +And, mermaid-like, awhile they bore her up: +Which time she chanted snatches of old tunes; +As one incapable of her own distress, +Or like a creature native and indued +Unto that element: but long it could not be +Till that her garments, heavy with their drink, +Pull'd the poor wretch from her melodious lay +To muddy death. + +LAERTES: +Alas, then, she is drown'd? + +QUEEN GERTRUDE: +Drown'd, drown'd. + +LAERTES: +Too much of water hast thou, poor Ophelia, +And therefore I forbid my tears: but yet +It is our trick; nature her custom holds, +Let shame say what it will: when these are gone, +The woman will be out. Adieu, my lord: +I have a speech of fire, that fain would blaze, +But that this folly douts it. + +KING CLAUDIUS: +Let's follow, Gertrude: +How much I had to do to calm his rage! +Now fear I this will give it start again; +Therefore let's follow. + +First Clown: +Is she to be buried in Christian burial that +wilfully seeks her own salvation? + +Second Clown: +I tell thee she is: and therefore make her grave +straight: the crowner hath sat on her, and finds it +Christian burial. + +First Clown: +How can that be, unless she drowned herself in her +own defence? + +Second Clown: +Why, 'tis found so. + +First Clown: +It must be 'se offendendo;' it cannot be else. For +here lies the point: if I drown myself wittingly, +it argues an act: and an act hath three branches: it +is, to act, to do, to perform: argal, she drowned +herself wittingly. + +Second Clown: +Nay, but hear you, goodman delver,-- + +First Clown: +Give me leave. Here lies the water; good: here +stands the man; good; if the man go to this water, +and drown himself, it is, will he, nill he, he +goes,--mark you that; but if the water come to him +and drown him, he drowns not himself: argal, he +that is not guilty of his own death shortens not his own life. + +Second Clown: +But is this law? + +First Clown: +Ay, marry, is't; crowner's quest law. + +Second Clown: +Will you ha' the truth on't? If this had not been +a gentlewoman, she should have been buried out o' +Christian burial. + +First Clown: +Why, there thou say'st: and the more pity that +great folk should have countenance in this world to +drown or hang themselves, more than their even +Christian. Come, my spade. There is no ancient +gentleman but gardeners, ditchers, and grave-makers: +they hold up Adam's profession. + +Second Clown: +Was he a gentleman? + +First Clown: +He was the first that ever bore arms. + +Second Clown: +Why, he had none. + +First Clown: +What, art a heathen? How dost thou understand the +Scripture? The Scripture says 'Adam digged:' +could he dig without arms? I'll put another +question to thee: if thou answerest me not to the +purpose, confess thyself-- + +Second Clown: +Go to. + +First Clown: +What is he that builds stronger than either the +mason, the shipwright, or the carpenter? + +Second Clown: +The gallows-maker; for that frame outlives a +thousand tenants. + +First Clown: +I like thy wit well, in good faith: the gallows +does well; but how does it well? it does well to +those that do in: now thou dost ill to say the +gallows is built stronger than the church: argal, +the gallows may do well to thee. To't again, come. + +Second Clown: +'Who builds stronger than a mason, a shipwright, or +a carpenter?' + +First Clown: +Ay, tell me that, and unyoke. + +Second Clown: +Marry, now I can tell. + +First Clown: +To't. + +Second Clown: +Mass, I cannot tell. + +First Clown: +Cudgel thy brains no more about it, for your dull +ass will not mend his pace with beating; and, when +you are asked this question next, say 'a +grave-maker: 'the houses that he makes last till +doomsday. Go, get thee to Yaughan: fetch me a +stoup of liquor. +In youth, when I did love, did love, +Methought it was very sweet, +To contract, O, the time, for, ah, my behove, +O, methought, there was nothing meet. + +HAMLET: +Has this fellow no feeling of his business, that he +sings at grave-making? + +HORATIO: +Custom hath made it in him a property of easiness. + +HAMLET: +'Tis e'en so: the hand of little employment hath +the daintier sense. + +First Clown: + +HAMLET: +That skull had a tongue in it, and could sing once: +how the knave jowls it to the ground, as if it were +Cain's jaw-bone, that did the first murder! It +might be the pate of a politician, which this ass +now o'er-reaches; one that would circumvent God, +might it not? + +HORATIO: +It might, my lord. + +HAMLET: +Or of a courtier; which could say 'Good morrow, +sweet lord! How dost thou, good lord?' This might +be my lord such-a-one, that praised my lord +such-a-one's horse, when he meant to beg it; might it not? + +HORATIO: +Ay, my lord. + +HAMLET: +Why, e'en so: and now my Lady Worm's; chapless, and +knocked about the mazzard with a sexton's spade: +here's fine revolution, an we had the trick to +see't. Did these bones cost no more the breeding, +but to play at loggats with 'em? mine ache to think on't. + +First Clown: +A pick-axe, and a spade, a spade, +For and a shrouding sheet: +O, a pit of clay for to be made +For such a guest is meet. + +HAMLET: +There's another: why may not that be the skull of a +lawyer? Where be his quiddities now, his quillets, +his cases, his tenures, and his tricks? why does he +suffer this rude knave now to knock him about the +sconce with a dirty shovel, and will not tell him of +his action of battery? Hum! This fellow might be +in's time a great buyer of land, with his statutes, +his recognizances, his fines, his double vouchers, +his recoveries: is this the fine of his fines, and +the recovery of his recoveries, to have his fine +pate full of fine dirt? will his vouchers vouch him +no more of his purchases, and double ones too, than +the length and breadth of a pair of indentures? The +very conveyances of his lands will hardly lie in +this box; and must the inheritor himself have no more, ha? + +HORATIO: +Not a jot more, my lord. + +HAMLET: +Is not parchment made of sheepskins? + +HORATIO: +Ay, my lord, and of calf-skins too. + +HAMLET: +They are sheep and calves which seek out assurance +in that. I will speak to this fellow. Whose +grave's this, sirrah? + +First Clown: +Mine, sir. +O, a pit of clay for to be made +For such a guest is meet. + +HAMLET: +I think it be thine, indeed; for thou liest in't. + +First Clown: +You lie out on't, sir, and therefore it is not +yours: for my part, I do not lie in't, and yet it is mine. + +HAMLET: +'Thou dost lie in't, to be in't and say it is thine: +'tis for the dead, not for the quick; therefore thou liest. + +First Clown: +'Tis a quick lie, sir; 'twill away gain, from me to +you. + +HAMLET: +What man dost thou dig it for? + +First Clown: +For no man, sir. + +HAMLET: +What woman, then? + +First Clown: +For none, neither. + +HAMLET: +Who is to be buried in't? + +First Clown: +One that was a woman, sir; but, rest her soul, she's dead. + +HAMLET: +How absolute the knave is! we must speak by the +card, or equivocation will undo us. By the Lord, +Horatio, these three years I have taken a note of +it; the age is grown so picked that the toe of the +peasant comes so near the heel of the courtier, he +gaffs his kibe. How long hast thou been a +grave-maker? + +First Clown: +Of all the days i' the year, I came to't that day +that our last king Hamlet overcame Fortinbras. + +HAMLET: +How long is that since? + +First Clown: +Cannot you tell that? every fool can tell that: it +was the very day that young Hamlet was born; he that +is mad, and sent into England. + +HAMLET: +Ay, marry, why was he sent into England? + +First Clown: +Why, because he was mad: he shall recover his wits +there; or, if he do not, it's no great matter there. + +HAMLET: +Why? + +First Clown: +'Twill, a not be seen in him there; there the men +are as mad as he. + +HAMLET: +How came he mad? + +First Clown: +Very strangely, they say. + +HAMLET: +How strangely? + +First Clown: +Faith, e'en with losing his wits. + +HAMLET: +Upon what ground? + +First Clown: +Why, here in Denmark: I have been sexton here, man +and boy, thirty years. + +HAMLET: +How long will a man lie i' the earth ere he rot? + +First Clown: +I' faith, if he be not rotten before he die--as we +have many pocky corses now-a-days, that will scarce +hold the laying in--he will last you some eight year +or nine year: a tanner will last you nine year. + +HAMLET: +Why he more than another? + +First Clown: +Why, sir, his hide is so tanned with his trade, that +he will keep out water a great while; and your water +is a sore decayer of your whoreson dead body. +Here's a skull now; this skull has lain in the earth +three and twenty years. + +HAMLET: +Whose was it? + +First Clown: +A whoreson mad fellow's it was: whose do you think it was? + +HAMLET: +Nay, I know not. + +First Clown: +A pestilence on him for a mad rogue! a' poured a +flagon of Rhenish on my head once. This same skull, +sir, was Yorick's skull, the king's jester. + +HAMLET: +This? + +First Clown: +E'en that. + +HAMLET: +Let me see. +Alas, poor Yorick! I knew him, Horatio: a fellow +of infinite jest, of most excellent fancy: he hath +borne me on his back a thousand times; and now, how +abhorred in my imagination it is! my gorge rims at +it. Here hung those lips that I have kissed I know +not how oft. Where be your gibes now? your +gambols? your songs? your flashes of merriment, +that were wont to set the table on a roar? Not one +now, to mock your own grinning? quite chap-fallen? +Now get you to my lady's chamber, and tell her, let +her paint an inch thick, to this favour she must +come; make her laugh at that. Prithee, Horatio, tell +me one thing. + +HORATIO: +What's that, my lord? + +HAMLET: +Dost thou think Alexander looked o' this fashion i' +the earth? + +HORATIO: +E'en so. + +HAMLET: +And smelt so? pah! + +HORATIO: +E'en so, my lord. + +HAMLET: +To what base uses we may return, Horatio! Why may +not imagination trace the noble dust of Alexander, +till he find it stopping a bung-hole? + +HORATIO: +'Twere to consider too curiously, to consider so. + +HAMLET: +No, faith, not a jot; but to follow him thither with +modesty enough, and likelihood to lead it: as +thus: Alexander died, Alexander was buried, +Alexander returneth into dust; the dust is earth; of +earth we make loam; and why of that loam, whereto he +was converted, might they not stop a beer-barrel? +Imperious Caesar, dead and turn'd to clay, +Might stop a hole to keep the wind away: +O, that that earth, which kept the world in awe, +Should patch a wall to expel the winter flaw! +But soft! but soft! aside: here comes the king. +The queen, the courtiers: who is this they follow? +And with such maimed rites? This doth betoken +The corse they follow did with desperate hand +Fordo its own life: 'twas of some estate. +Couch we awhile, and mark. + +LAERTES: +What ceremony else? + +HAMLET: +That is Laertes, +A very noble youth: mark. + +LAERTES: +What ceremony else? + +First Priest: +Her obsequies have been as far enlarged +As we have warrantise: her death was doubtful; +And, but that great command o'ersways the order, +She should in ground unsanctified have lodged +Till the last trumpet: for charitable prayers, +Shards, flints and pebbles should be thrown on her; +Yet here she is allow'd her virgin crants, +Her maiden strewments and the bringing home +Of bell and burial. + +LAERTES: +Must there no more be done? + +First Priest: +No more be done: +We should profane the service of the dead +To sing a requiem and such rest to her +As to peace-parted souls. + +LAERTES: +Lay her i' the earth: +And from her fair and unpolluted flesh +May violets spring! I tell thee, churlish priest, +A ministering angel shall my sister be, +When thou liest howling. + +HAMLET: +What, the fair Ophelia! + +QUEEN GERTRUDE: +Sweets to the sweet: farewell! +I hoped thou shouldst have been my Hamlet's wife; +I thought thy bride-bed to have deck'd, sweet maid, +And not have strew'd thy grave. + +LAERTES: +O, treble woe +Fall ten times treble on that cursed head, +Whose wicked deed thy most ingenious sense +Deprived thee of! Hold off the earth awhile, +Till I have caught her once more in mine arms: +Now pile your dust upon the quick and dead, +Till of this flat a mountain you have made, +To o'ertop old Pelion, or the skyish head +Of blue Olympus. + +HAMLET: + +LAERTES: +The devil take thy soul! + +HAMLET: +Thou pray'st not well. +I prithee, take thy fingers from my throat; +For, though I am not splenitive and rash, +Yet have I something in me dangerous, +Which let thy wiseness fear: hold off thy hand. + +KING CLAUDIUS: +Pluck them asunder. + +QUEEN GERTRUDE: +Hamlet, Hamlet! + +All: +Gentlemen,-- + +HORATIO: +Good my lord, be quiet. + +HAMLET: +Why I will fight with him upon this theme +Until my eyelids will no longer wag. + +QUEEN GERTRUDE: +O my son, what theme? + +HAMLET: +I loved Ophelia: forty thousand brothers +Could not, with all their quantity of love, +Make up my sum. What wilt thou do for her? + +KING CLAUDIUS: +O, he is mad, Laertes. + +QUEEN GERTRUDE: +For love of God, forbear him. + +HAMLET: +'Swounds, show me what thou'lt do: +Woo't weep? woo't fight? woo't fast? woo't tear thyself? +Woo't drink up eisel? eat a crocodile? +I'll do't. Dost thou come here to whine? +To outface me with leaping in her grave? +Be buried quick with her, and so will I: +And, if thou prate of mountains, let them throw +Millions of acres on us, till our ground, +Singeing his pate against the burning zone, +Make Ossa like a wart! Nay, an thou'lt mouth, +I'll rant as well as thou. + +QUEEN GERTRUDE: +This is mere madness: +And thus awhile the fit will work on him; +Anon, as patient as the female dove, +When that her golden couplets are disclosed, +His silence will sit drooping. + +HAMLET: +Hear you, sir; +What is the reason that you use me thus? +I loved you ever: but it is no matter; +Let Hercules himself do what he may, +The cat will mew and dog will have his day. + +KING CLAUDIUS: +I pray you, good Horatio, wait upon him. +Strengthen your patience in our last night's speech; +We'll put the matter to the present push. +Good Gertrude, set some watch over your son. +This grave shall have a living monument: +An hour of quiet shortly shall we see; +Till then, in patience our proceeding be. + +HAMLET: +So much for this, sir: now shall you see the other; +You do remember all the circumstance? + +HORATIO: +Remember it, my lord? + +HAMLET: +Sir, in my heart there was a kind of fighting, +That would not let me sleep: methought I lay +Worse than the mutines in the bilboes. Rashly, +And praised be rashness for it, let us know, +Our indiscretion sometimes serves us well, +When our deep plots do pall: and that should teach us +There's a divinity that shapes our ends, +Rough-hew them how we will,-- + +HORATIO: +That is most certain. + +HAMLET: +Up from my cabin, +My sea-gown scarf'd about me, in the dark +Groped I to find out them; had my desire. +Finger'd their packet, and in fine withdrew +To mine own room again; making so bold, +My fears forgetting manners, to unseal +Their grand commission; where I found, Horatio,-- +O royal knavery!--an exact command, +Larded with many several sorts of reasons +Importing Denmark's health and England's too, +With, ho! such bugs and goblins in my life, +That, on the supervise, no leisure bated, +No, not to stay the grinding of the axe, +My head should be struck off. + +HORATIO: +Is't possible? + +HAMLET: +Here's the commission: read it at more leisure. +But wilt thou hear me how I did proceed? + +HORATIO: +I beseech you. + +HAMLET: +Being thus be-netted round with villanies,-- +Ere I could make a prologue to my brains, +They had begun the play--I sat me down, +Devised a new commission, wrote it fair: +I once did hold it, as our statists do, +A baseness to write fair and labour'd much +How to forget that learning, but, sir, now +It did me yeoman's service: wilt thou know +The effect of what I wrote? + +HORATIO: +Ay, good my lord. + +HAMLET: +An earnest conjuration from the king, +As England was his faithful tributary, +As love between them like the palm might flourish, +As peace should stiff her wheaten garland wear +And stand a comma 'tween their amities, +And many such-like 'As'es of great charge, +That, on the view and knowing of these contents, +Without debatement further, more or less, +He should the bearers put to sudden death, +Not shriving-time allow'd. + +HORATIO: +How was this seal'd? + +HAMLET: +Why, even in that was heaven ordinant. +I had my father's signet in my purse, +Which was the model of that Danish seal; +Folded the writ up in form of the other, +Subscribed it, gave't the impression, placed it safely, +The changeling never known. Now, the next day +Was our sea-fight; and what to this was sequent +Thou know'st already. + +HORATIO: +So Guildenstern and Rosencrantz go to't. + +HAMLET: +Why, man, they did make love to this employment; +They are not near my conscience; their defeat +Does by their own insinuation grow: +'Tis dangerous when the baser nature comes +Between the pass and fell incensed points +Of mighty opposites. + +HORATIO: +Why, what a king is this! + +HAMLET: +Does it not, think'st thee, stand me now upon-- +He that hath kill'd my king and whored my mother, +Popp'd in between the election and my hopes, +Thrown out his angle for my proper life, +And with such cozenage--is't not perfect conscience, +To quit him with this arm? and is't not to be damn'd, +To let this canker of our nature come +In further evil? + +HORATIO: +It must be shortly known to him from England +What is the issue of the business there. + +HAMLET: +It will be short: the interim is mine; +And a man's life's no more than to say 'One.' +But I am very sorry, good Horatio, +That to Laertes I forgot myself; +For, by the image of my cause, I see +The portraiture of his: I'll court his favours. +But, sure, the bravery of his grief did put me +Into a towering passion. + +HORATIO: +Peace! who comes here? + +OSRIC: +Your lordship is right welcome back to Denmark. + +HAMLET: +I humbly thank you, sir. Dost know this water-fly? + +HORATIO: +No, my good lord. + +HAMLET: +Thy state is the more gracious; for 'tis a vice to +know him. He hath much land, and fertile: let a +beast be lord of beasts, and his crib shall stand at +the king's mess: 'tis a chough; but, as I say, +spacious in the possession of dirt. + +OSRIC: +Sweet lord, if your lordship were at leisure, I +should impart a thing to you from his majesty. + +HAMLET: +I will receive it, sir, with all diligence of +spirit. Put your bonnet to his right use; 'tis for the head. + +OSRIC: +I thank your lordship, it is very hot. + +HAMLET: +No, believe me, 'tis very cold; the wind is +northerly. + +OSRIC: +It is indifferent cold, my lord, indeed. + +HAMLET: +But yet methinks it is very sultry and hot for my +complexion. + +OSRIC: +Exceedingly, my lord; it is very sultry,--as +'twere,--I cannot tell how. But, my lord, his +majesty bade me signify to you that he has laid a +great wager on your head: sir, this is the matter,-- + +HAMLET: +I beseech you, remember-- + +OSRIC: +Nay, good my lord; for mine ease, in good faith. +Sir, here is newly come to court Laertes; believe +me, an absolute gentleman, full of most excellent +differences, of very soft society and great showing: +indeed, to speak feelingly of him, he is the card or +calendar of gentry, for you shall find in him the +continent of what part a gentleman would see. + +HAMLET: +Sir, his definement suffers no perdition in you; +though, I know, to divide him inventorially would +dizzy the arithmetic of memory, and yet but yaw +neither, in respect of his quick sail. But, in the +verity of extolment, I take him to be a soul of +great article; and his infusion of such dearth and +rareness, as, to make true diction of him, his +semblable is his mirror; and who else would trace +him, his umbrage, nothing more. + +OSRIC: +Your lordship speaks most infallibly of him. + +HAMLET: +The concernancy, sir? why do we wrap the gentleman +in our more rawer breath? + +OSRIC: +Sir? + +HORATIO: +Is't not possible to understand in another tongue? +You will do't, sir, really. + +HAMLET: +What imports the nomination of this gentleman? + +OSRIC: +Of Laertes? + +HORATIO: +His purse is empty already; all's golden words are spent. + +HAMLET: +Of him, sir. + +OSRIC: +I know you are not ignorant-- + +HAMLET: +I would you did, sir; yet, in faith, if you did, +it would not much approve me. Well, sir? + +OSRIC: +You are not ignorant of what excellence Laertes is-- + +HAMLET: +I dare not confess that, lest I should compare with +him in excellence; but, to know a man well, were to +know himself. + +OSRIC: +I mean, sir, for his weapon; but in the imputation +laid on him by them, in his meed he's unfellowed. + +HAMLET: +What's his weapon? + +OSRIC: +Rapier and dagger. + +HAMLET: +That's two of his weapons: but, well. + +OSRIC: +The king, sir, hath wagered with him six Barbary +horses: against the which he has imponed, as I take +it, six French rapiers and poniards, with their +assigns, as girdle, hangers, and so: three of the +carriages, in faith, are very dear to fancy, very +responsive to the hilts, most delicate carriages, +and of very liberal conceit. + +HAMLET: +What call you the carriages? + +HORATIO: +I knew you must be edified by the margent ere you had done. + +OSRIC: +The carriages, sir, are the hangers. + +HAMLET: +The phrase would be more german to the matter, if we +could carry cannon by our sides: I would it might +be hangers till then. But, on: six Barbary horses +against six French swords, their assigns, and three +liberal-conceited carriages; that's the French bet +against the Danish. Why is this 'imponed,' as you call it? + +OSRIC: +The king, sir, hath laid, that in a dozen passes +between yourself and him, he shall not exceed you +three hits: he hath laid on twelve for nine; and it +would come to immediate trial, if your lordship +would vouchsafe the answer. + +HAMLET: +How if I answer 'no'? + +OSRIC: +I mean, my lord, the opposition of your person in trial. + +HAMLET: +Sir, I will walk here in the hall: if it please his +majesty, 'tis the breathing time of day with me; let +the foils be brought, the gentleman willing, and the +king hold his purpose, I will win for him an I can; +if not, I will gain nothing but my shame and the odd hits. + +OSRIC: +Shall I re-deliver you e'en so? + +HAMLET: +To this effect, sir; after what flourish your nature will. + +OSRIC: +I commend my duty to your lordship. + +HAMLET: +Yours, yours. +He does well to commend it himself; there are no +tongues else for's turn. + +HORATIO: +This lapwing runs away with the shell on his head. + +HAMLET: +He did comply with his dug, before he sucked it. +Thus has he--and many more of the same bevy that I +know the dressy age dotes on--only got the tune of +the time and outward habit of encounter; a kind of +yesty collection, which carries them through and +through the most fond and winnowed opinions; and do +but blow them to their trial, the bubbles are out. + +Lord: +My lord, his majesty commended him to you by young +Osric, who brings back to him that you attend him in +the hall: he sends to know if your pleasure hold to +play with Laertes, or that you will take longer time. + +HAMLET: +I am constant to my purpose; they follow the king's +pleasure: if his fitness speaks, mine is ready; now +or whensoever, provided I be so able as now. + +Lord: +The king and queen and all are coming down. + +HAMLET: +In happy time. + +Lord: +The queen desires you to use some gentle +entertainment to Laertes before you fall to play. + +HAMLET: +She well instructs me. + +HORATIO: +You will lose this wager, my lord. + +HAMLET: +I do not think so: since he went into France, I +have been in continual practise: I shall win at the +odds. But thou wouldst not think how ill all's here +about my heart: but it is no matter. + +HORATIO: +Nay, good my lord,-- + +HAMLET: +It is but foolery; but it is such a kind of +gain-giving, as would perhaps trouble a woman. + +HORATIO: +If your mind dislike any thing, obey it: I will +forestall their repair hither, and say you are not +fit. + +HAMLET: +Not a whit, we defy augury: there's a special +providence in the fall of a sparrow. If it be now, +'tis not to come; if it be not to come, it will be +now; if it be not now, yet it will come: the +readiness is all: since no man has aught of what he +leaves, what is't to leave betimes? + +KING CLAUDIUS: +Come, Hamlet, come, and take this hand from me. + +HAMLET: +Give me your pardon, sir: I've done you wrong; +But pardon't, as you are a gentleman. +This presence knows, +And you must needs have heard, how I am punish'd +With sore distraction. What I have done, +That might your nature, honour and exception +Roughly awake, I here proclaim was madness. +Was't Hamlet wrong'd Laertes? Never Hamlet: +If Hamlet from himself be ta'en away, +And when he's not himself does wrong Laertes, +Then Hamlet does it not, Hamlet denies it. +Who does it, then? His madness: if't be so, +Hamlet is of the faction that is wrong'd; +His madness is poor Hamlet's enemy. +Sir, in this audience, +Let my disclaiming from a purposed evil +Free me so far in your most generous thoughts, +That I have shot mine arrow o'er the house, +And hurt my brother. + +LAERTES: +I am satisfied in nature, +Whose motive, in this case, should stir me most +To my revenge: but in my terms of honour +I stand aloof; and will no reconcilement, +Till by some elder masters, of known honour, +I have a voice and precedent of peace, +To keep my name ungored. But till that time, +I do receive your offer'd love like love, +And will not wrong it. + +HAMLET: +I embrace it freely; +And will this brother's wager frankly play. +Give us the foils. Come on. + +LAERTES: +Come, one for me. + +HAMLET: +I'll be your foil, Laertes: in mine ignorance +Your skill shall, like a star i' the darkest night, +Stick fiery off indeed. + +LAERTES: +You mock me, sir. + +HAMLET: +No, by this hand. + +KING CLAUDIUS: +Give them the foils, young Osric. Cousin Hamlet, +You know the wager? + +HAMLET: +Very well, my lord +Your grace hath laid the odds o' the weaker side. + +KING CLAUDIUS: +I do not fear it; I have seen you both: +But since he is better'd, we have therefore odds. + +LAERTES: +This is too heavy, let me see another. + +HAMLET: +This likes me well. These foils have all a length? + +OSRIC: +Ay, my good lord. + +KING CLAUDIUS: +Set me the stoops of wine upon that table. +If Hamlet give the first or second hit, +Or quit in answer of the third exchange, +Let all the battlements their ordnance fire: +The king shall drink to Hamlet's better breath; +And in the cup an union shall he throw, +Richer than that which four successive kings +In Denmark's crown have worn. Give me the cups; +And let the kettle to the trumpet speak, +The trumpet to the cannoneer without, +The cannons to the heavens, the heavens to earth, +'Now the king dunks to Hamlet.' Come, begin: +And you, the judges, bear a wary eye. + +HAMLET: +Come on, sir. + +LAERTES: +Come, my lord. + +HAMLET: +One. + +LAERTES: +No. + +HAMLET: +Judgment. + +OSRIC: +A hit, a very palpable hit. + +LAERTES: +Well; again. + +KING CLAUDIUS: +Stay; give me drink. Hamlet, this pearl is thine; +Here's to thy health. +Give him the cup. + +HAMLET: +I'll play this bout first; set it by awhile. Come. +Another hit; what say you? + +LAERTES: +A touch, a touch, I do confess. + +KING CLAUDIUS: +Our son shall win. + +QUEEN GERTRUDE: +He's fat, and scant of breath. +Here, Hamlet, take my napkin, rub thy brows; +The queen carouses to thy fortune, Hamlet. + +HAMLET: +Good madam! + +KING CLAUDIUS: +Gertrude, do not drink. + +QUEEN GERTRUDE: +I will, my lord; I pray you, pardon me. + +KING CLAUDIUS: + +HAMLET: +I dare not drink yet, madam; by and by. + +QUEEN GERTRUDE: +Come, let me wipe thy face. + +LAERTES: +My lord, I'll hit him now. + +KING CLAUDIUS: +I do not think't. + +LAERTES: + +HAMLET: +Come, for the third, Laertes: you but dally; +I pray you, pass with your best violence; +I am afeard you make a wanton of me. + +LAERTES: +Say you so? come on. + +OSRIC: +Nothing, neither way. + +LAERTES: +Have at you now! + +KING CLAUDIUS: +Part them; they are incensed. + +HAMLET: +Nay, come, again. + +OSRIC: +Look to the queen there, ho! + +HORATIO: +They bleed on both sides. How is it, my lord? + +OSRIC: +How is't, Laertes? + +LAERTES: +Why, as a woodcock to mine own springe, Osric; +I am justly kill'd with mine own treachery. + +HAMLET: +How does the queen? + +KING CLAUDIUS: +She swounds to see them bleed. + +QUEEN GERTRUDE: +No, no, the drink, the drink,--O my dear Hamlet,-- +The drink, the drink! I am poison'd. + +HAMLET: +O villany! Ho! let the door be lock'd: +Treachery! Seek it out. + +LAERTES: +It is here, Hamlet: Hamlet, thou art slain; +No medicine in the world can do thee good; +In thee there is not half an hour of life; +The treacherous instrument is in thy hand, +Unbated and envenom'd: the foul practise +Hath turn'd itself on me lo, here I lie, +Never to rise again: thy mother's poison'd: +I can no more: the king, the king's to blame. + +HAMLET: +The point!--envenom'd too! +Then, venom, to thy work. + +All: +Treason! treason! + +KING CLAUDIUS: +O, yet defend me, friends; I am but hurt. + +HAMLET: +Here, thou incestuous, murderous, damned Dane, +Drink off this potion. Is thy union here? +Follow my mother. + +LAERTES: +He is justly served; +It is a poison temper'd by himself. +Exchange forgiveness with me, noble Hamlet: +Mine and my father's death come not upon thee, +Nor thine on me. + +HAMLET: +Heaven make thee free of it! I follow thee. +I am dead, Horatio. Wretched queen, adieu! +You that look pale and tremble at this chance, +That are but mutes or audience to this act, +Had I but time--as this fell sergeant, death, +Is strict in his arrest--O, I could tell you-- +But let it be. Horatio, I am dead; +Thou livest; report me and my cause aright +To the unsatisfied. + +HORATIO: +Never believe it: +I am more an antique Roman than a Dane: +Here's yet some liquor left. + +HAMLET: +As thou'rt a man, +Give me the cup: let go; by heaven, I'll have't. +O good Horatio, what a wounded name, +Things standing thus unknown, shall live behind me! +If thou didst ever hold me in thy heart +Absent thee from felicity awhile, +And in this harsh world draw thy breath in pain, +To tell my story. +What warlike noise is this? + +OSRIC: +Young Fortinbras, with conquest come from Poland, +To the ambassadors of England gives +This warlike volley. + +HAMLET: +O, I die, Horatio; +The potent poison quite o'er-crows my spirit: +I cannot live to hear the news from England; +But I do prophesy the election lights +On Fortinbras: he has my dying voice; +So tell him, with the occurrents, more and less, +Which have solicited. The rest is silence. + +HORATIO: +Now cracks a noble heart. Good night sweet prince: +And flights of angels sing thee to thy rest! +Why does the drum come hither? + +PRINCE FORTINBRAS: +Where is this sight? + +HORATIO: +What is it ye would see? +If aught of woe or wonder, cease your search. + +PRINCE FORTINBRAS: +This quarry cries on havoc. O proud death, +What feast is toward in thine eternal cell, +That thou so many princes at a shot +So bloodily hast struck? + +First Ambassador: +The sight is dismal; +And our affairs from England come too late: +The ears are senseless that should give us hearing, +To tell him his commandment is fulfill'd, +That Rosencrantz and Guildenstern are dead: +Where should we have our thanks? + +HORATIO: +Not from his mouth, +Had it the ability of life to thank you: +He never gave commandment for their death. +But since, so jump upon this bloody question, +You from the Polack wars, and you from England, +Are here arrived give order that these bodies +High on a stage be placed to the view; +And let me speak to the yet unknowing world +How these things came about: so shall you hear +Of carnal, bloody, and unnatural acts, +Of accidental judgments, casual slaughters, +Of deaths put on by cunning and forced cause, +And, in this upshot, purposes mistook +Fall'n on the inventors' reads: all this can I +Truly deliver. + +PRINCE FORTINBRAS: +Let us haste to hear it, +And call the noblest to the audience. +For me, with sorrow I embrace my fortune: +I have some rights of memory in this kingdom, +Which now to claim my vantage doth invite me. + +HORATIO: +Of that I shall have also cause to speak, +And from his mouth whose voice will draw on more; +But let this same be presently perform'd, +Even while men's minds are wild; lest more mischance +On plots and errors, happen. + +PRINCE FORTINBRAS: +Let four captains +Bear Hamlet, like a soldier, to the stage; +For he was likely, had he been put on, +To have proved most royally: and, for his passage, +The soldiers' music and the rites of war +Speak loudly for him. +Take up the bodies: such a sight as this +Becomes the field, but here shows much amiss. +Go, bid the soldiers shoot. + +SHALLOW: +Sir Hugh, persuade me not; I will make a Star- +chamber matter of it: if he were twenty Sir John +Falstaffs, he shall not abuse Robert Shallow, esquire. + +SLENDER: +In the county of Gloucester, justice of peace and +'Coram.' + +SHALLOW: +Ay, cousin Slender, and 'Custalourum. + +SLENDER: +Ay, and 'Rato-lorum' too; and a gentleman born, +master parson; who writes himself 'Armigero,' in any +bill, warrant, quittance, or obligation, 'Armigero.' + +SHALLOW: +Ay, that I do; and have done any time these three +hundred years. + +SLENDER: +All his successors gone before him hath done't; and +all his ancestors that come after him may: they may +give the dozen white luces in their coat. + +SHALLOW: +It is an old coat. + +SIR HUGH EVANS: +The dozen white louses do become an old coat well; +it agrees well, passant; it is a familiar beast to +man, and signifies love. + +SHALLOW: +The luce is the fresh fish; the salt fish is an old coat. + +SLENDER: +I may quarter, coz. + +SHALLOW: +You may, by marrying. + +SIR HUGH EVANS: +It is marring indeed, if he quarter it. + +SHALLOW: +Not a whit. + +SIR HUGH EVANS: +Yes, py'r lady; if he has a quarter of your coat, +there is but three skirts for yourself, in my +simple conjectures: but that is all one. If Sir +John Falstaff have committed disparagements unto +you, I am of the church, and will be glad to do my +benevolence to make atonements and compremises +between you. + +SHALLOW: +The council shall bear it; it is a riot. + +SIR HUGH EVANS: +It is not meet the council hear a riot; there is no +fear of Got in a riot: the council, look you, shall +desire to hear the fear of Got, and not to hear a +riot; take your vizaments in that. + +SHALLOW: +Ha! o' my life, if I were young again, the sword +should end it. + +SIR HUGH EVANS: +It is petter that friends is the sword, and end it: +and there is also another device in my prain, which +peradventure prings goot discretions with it: there +is Anne Page, which is daughter to Master Thomas +Page, which is pretty virginity. + +SLENDER: +Mistress Anne Page? She has brown hair, and speaks +small like a woman. + +SIR HUGH EVANS: +It is that fery person for all the orld, as just as +you will desire; and seven hundred pounds of moneys, +and gold and silver, is her grandsire upon his +death's-bed--Got deliver to a joyful resurrections! +--give, when she is able to overtake seventeen years +old: it were a goot motion if we leave our pribbles +and prabbles, and desire a marriage between Master +Abraham and Mistress Anne Page. + +SLENDER: +Did her grandsire leave her seven hundred pound? + +SIR HUGH EVANS: +Ay, and her father is make her a petter penny. + +SLENDER: +I know the young gentlewoman; she has good gifts. + +SIR HUGH EVANS: +Seven hundred pounds and possibilities is goot gifts. + +SHALLOW: +Well, let us see honest Master Page. Is Falstaff there? + +SIR HUGH EVANS: +Shall I tell you a lie? I do despise a liar as I do +despise one that is false, or as I despise one that +is not true. The knight, Sir John, is there; and, I +beseech you, be ruled by your well-willers. I will +peat the door for Master Page. +What, hoa! Got pless your house here! + +PAGE: + +SIR HUGH EVANS: +Here is Got's plessing, and your friend, and Justice +Shallow; and here young Master Slender, that +peradventures shall tell you another tale, if +matters grow to your likings. + +PAGE: +I am glad to see your worships well. +I thank you for my venison, Master Shallow. + +SHALLOW: +Master Page, I am glad to see you: much good do it +your good heart! I wished your venison better; it +was ill killed. How doth good Mistress Page?--and I +thank you always with my heart, la! with my heart. + +PAGE: +Sir, I thank you. + +SHALLOW: +Sir, I thank you; by yea and no, I do. + +PAGE: +I am glad to see you, good Master Slender. + +SLENDER: +How does your fallow greyhound, sir? I heard say he +was outrun on Cotsall. + +PAGE: +It could not be judged, sir. + +SLENDER: +You'll not confess, you'll not confess. + +SHALLOW: +That he will not. 'Tis your fault, 'tis your fault; +'tis a good dog. + +PAGE: +A cur, sir. + +SHALLOW: +Sir, he's a good dog, and a fair dog: can there be +more said? he is good and fair. Is Sir John +Falstaff here? + +PAGE: +Sir, he is within; and I would I could do a good +office between you. + +SIR HUGH EVANS: +It is spoke as a Christians ought to speak. + +SHALLOW: +He hath wronged me, Master Page. + +PAGE: +Sir, he doth in some sort confess it. + +SHALLOW: +If it be confessed, it is not redress'd: is not that +so, Master Page? He hath wronged me; indeed he +hath, at a word, he hath, believe me: Robert +Shallow, esquire, saith, he is wronged. + +PAGE: +Here comes Sir John. + +FALSTAFF: +Now, Master Shallow, you'll complain of me to the king? + +SHALLOW: +Knight, you have beaten my men, killed my deer, and +broke open my lodge. + +FALSTAFF: +But not kissed your keeper's daughter? + +SHALLOW: +Tut, a pin! this shall be answered. + +FALSTAFF: +I will answer it straight; I have done all this. +That is now answered. + +SHALLOW: +The council shall know this. + +FALSTAFF: +'Twere better for you if it were known in counsel: +you'll be laughed at. + +SIR HUGH EVANS: +Pauca verba, Sir John; goot worts. + +FALSTAFF: +Good worts! good cabbage. Slender, I broke your +head: what matter have you against me? + +SLENDER: +Marry, sir, I have matter in my head against you; +and against your cony-catching rascals, Bardolph, +Nym, and Pistol. + +BARDOLPH: +You Banbury cheese! + +SLENDER: +Ay, it is no matter. + +PISTOL: +How now, Mephostophilus! + +SLENDER: +Ay, it is no matter. + +NYM: +Slice, I say! pauca, pauca: slice! that's my humour. + +SLENDER: +Where's Simple, my man? Can you tell, cousin? + +SIR HUGH EVANS: +Peace, I pray you. Now let us understand. There is +three umpires in this matter, as I understand; that +is, Master Page, fidelicet Master Page; and there is +myself, fidelicet myself; and the three party is, +lastly and finally, mine host of the Garter. + +PAGE: +We three, to hear it and end it between them. + +SIR HUGH EVANS: +Fery goot: I will make a prief of it in my note- +book; and we will afterwards ork upon the cause with +as great discreetly as we can. + +FALSTAFF: +Pistol! + +PISTOL: +He hears with ears. + +SIR HUGH EVANS: +The tevil and his tam! what phrase is this, 'He +hears with ear'? why, it is affectations. + +FALSTAFF: +Pistol, did you pick Master Slender's purse? + +SLENDER: +Ay, by these gloves, did he, or I would I might +never come in mine own great chamber again else, of +seven groats in mill-sixpences, and two Edward +shovel-boards, that cost me two shilling and two +pence apiece of Yead Miller, by these gloves. + +FALSTAFF: +Is this true, Pistol? + +SIR HUGH EVANS: +No; it is false, if it is a pick-purse. + +PISTOL: +Ha, thou mountain-foreigner! Sir John and Master mine, +I combat challenge of this latten bilbo. +Word of denial in thy labras here! +Word of denial: froth and scum, thou liest! + +SLENDER: +By these gloves, then, 'twas he. + +NYM: +Be avised, sir, and pass good humours: I will say +'marry trap' with you, if you run the nuthook's +humour on me; that is the very note of it. + +SLENDER: +By this hat, then, he in the red face had it; for +though I cannot remember what I did when you made me +drunk, yet I am not altogether an ass. + +FALSTAFF: +What say you, Scarlet and John? + +BARDOLPH: +Why, sir, for my part I say the gentleman had drunk +himself out of his five sentences. + +SIR HUGH EVANS: +It is his five senses: fie, what the ignorance is! + +BARDOLPH: +And being fap, sir, was, as they say, cashiered; and +so conclusions passed the careires. + +SLENDER: +Ay, you spake in Latin then too; but 'tis no +matter: I'll ne'er be drunk whilst I live again, +but in honest, civil, godly company, for this trick: +if I be drunk, I'll be drunk with those that have +the fear of God, and not with drunken knaves. + +SIR HUGH EVANS: +So Got udge me, that is a virtuous mind. + +FALSTAFF: +You hear all these matters denied, gentlemen; you hear it. + +PAGE: +Nay, daughter, carry the wine in; we'll drink within. + +SLENDER: +O heaven! this is Mistress Anne Page. + +PAGE: +How now, Mistress Ford! + +FALSTAFF: +Mistress Ford, by my troth, you are very well met: +by your leave, good mistress. + +PAGE: +Wife, bid these gentlemen welcome. Come, we have a +hot venison pasty to dinner: come, gentlemen, I hope +we shall drink down all unkindness. + +SLENDER: +I had rather than forty shillings I had my Book of +Songs and Sonnets here. +How now, Simple! where have you been? I must wait +on myself, must I? You have not the Book of Riddles +about you, have you? + +SIMPLE: +Book of Riddles! why, did you not lend it to Alice +Shortcake upon All-hallowmas last, a fortnight +afore Michaelmas? + +SHALLOW: +Come, coz; come, coz; we stay for you. A word with +you, coz; marry, this, coz: there is, as 'twere, a +tender, a kind of tender, made afar off by Sir Hugh +here. Do you understand me? + +SLENDER: +Ay, sir, you shall find me reasonable; if it be so, +I shall do that that is reason. + +SHALLOW: +Nay, but understand me. + +SLENDER: +So I do, sir. + +SIR HUGH EVANS: +Give ear to his motions, Master Slender: I will +description the matter to you, if you be capacity of it. + +SLENDER: +Nay, I will do as my cousin Shallow says: I pray +you, pardon me; he's a justice of peace in his +country, simple though I stand here. + +SIR HUGH EVANS: +But that is not the question: the question is +concerning your marriage. + +SHALLOW: +Ay, there's the point, sir. + +SIR HUGH EVANS: +Marry, is it; the very point of it; to Mistress Anne Page. + +SLENDER: +Why, if it be so, I will marry her upon any +reasonable demands. + +SIR HUGH EVANS: +But can you affection the 'oman? Let us command to +know that of your mouth or of your lips; for divers +philosophers hold that the lips is parcel of the +mouth. Therefore, precisely, can you carry your +good will to the maid? + +SHALLOW: +Cousin Abraham Slender, can you love her? + +SLENDER: +I hope, sir, I will do as it shall become one that +would do reason. + +SIR HUGH EVANS: +Nay, Got's lords and his ladies! you must speak +possitable, if you can carry her your desires +towards her. + +SHALLOW: +That you must. Will you, upon good dowry, marry her? + +SLENDER: +I will do a greater thing than that, upon your +request, cousin, in any reason. + +SHALLOW: +Nay, conceive me, conceive me, sweet coz: what I do +is to pleasure you, coz. Can you love the maid? + +SLENDER: +I will marry her, sir, at your request: but if there +be no great love in the beginning, yet heaven may +decrease it upon better acquaintance, when we are +married and have more occasion to know one another; +I hope, upon familiarity will grow more contempt: +but if you say, 'Marry her,' I will marry her; that +I am freely dissolved, and dissolutely. + +SIR HUGH EVANS: +It is a fery discretion answer; save the fall is in +the ort 'dissolutely:' the ort is, according to our +meaning, 'resolutely:' his meaning is good. + +SHALLOW: +Ay, I think my cousin meant well. + +SLENDER: +Ay, or else I would I might be hanged, la! + +SHALLOW: +Here comes fair Mistress Anne. +Would I were young for your sake, Mistress Anne! + +ANNE PAGE: +The dinner is on the table; my father desires your +worships' company. + +SHALLOW: +I will wait on him, fair Mistress Anne. + +SIR HUGH EVANS: +Od's plessed will! I will not be absence at the grace. + +ANNE PAGE: +Will't please your worship to come in, sir? + +SLENDER: +No, I thank you, forsooth, heartily; I am very well. + +ANNE PAGE: +The dinner attends you, sir. + +SLENDER: +I am not a-hungry, I thank you, forsooth. Go, +sirrah, for all you are my man, go wait upon my +cousin Shallow. +A justice of peace sometimes may be beholding to his +friend for a man. I keep but three men and a boy +yet, till my mother be dead: but what though? Yet I +live like a poor gentleman born. + +ANNE PAGE: +I may not go in without your worship: they will not +sit till you come. + +SLENDER: +I' faith, I'll eat nothing; I thank you as much as +though I did. + +ANNE PAGE: +I pray you, sir, walk in. + +SLENDER: +I had rather walk here, I thank you. I bruised +my shin th' other day with playing at sword and +dagger with a master of fence; three veneys for a +dish of stewed prunes; and, by my troth, I cannot +abide the smell of hot meat since. Why do your +dogs bark so? be there bears i' the town? + +ANNE PAGE: +I think there are, sir; I heard them talked of. + +SLENDER: +I love the sport well but I shall as soon quarrel at +it as any man in England. You are afraid, if you see +the bear loose, are you not? + +ANNE PAGE: +Ay, indeed, sir. + +SLENDER: +That's meat and drink to me, now. I have seen +Sackerson loose twenty times, and have taken him by +the chain; but, I warrant you, the women have so +cried and shrieked at it, that it passed: but women, +indeed, cannot abide 'em; they are very ill-favored +rough things. + +PAGE: +Come, gentle Master Slender, come; we stay for you. + +SLENDER: +I'll eat nothing, I thank you, sir. + +PAGE: +By cock and pie, you shall not choose, sir! come, come. + +SLENDER: +Nay, pray you, lead the way. + +PAGE: +Come on, sir. + +SLENDER: +Mistress Anne, yourself shall go first. + +ANNE PAGE: +Not I, sir; pray you, keep on. + +SLENDER: +I'll rather be unmannerly than troublesome. +You do yourself wrong, indeed, la! + +SIR HUGH EVANS: +Go your ways, and ask of Doctor Caius' house which +is the way: and there dwells one Mistress Quickly, +which is in the manner of his nurse, or his dry +nurse, or his cook, or his laundry, his washer, and +his wringer. + +SIMPLE: +Well, sir. + +SIR HUGH EVANS: +Nay, it is petter yet. Give her this letter; for it +is a 'oman that altogether's acquaintance with +Mistress Anne Page: and the letter is, to desire +and require her to solicit your master's desires to +Mistress Anne Page. I pray you, be gone: I will +make an end of my dinner; there's pippins and cheese to come. + +FALSTAFF: +Mine host of the Garter! + +Host: +What says my bully-rook? speak scholarly and wisely. + +FALSTAFF: +Truly, mine host, I must turn away some of my +followers. + +Host: +Discard, bully Hercules; cashier: let them wag; trot, trot. + +FALSTAFF: +I sit at ten pounds a week. + +Host: +Thou'rt an emperor, Caesar, Keisar, and Pheezar. I +will entertain Bardolph; he shall draw, he shall +tap: said I well, bully Hector? + +FALSTAFF: +Do so, good mine host. + +Host: +I have spoke; let him follow. +Let me see thee froth and lime: I am at a word; follow. + +FALSTAFF: +Bardolph, follow him. A tapster is a good trade: +an old cloak makes a new jerkin; a withered +serving-man a fresh tapster. Go; adieu. + +BARDOLPH: +It is a life that I have desired: I will thrive. + +PISTOL: +O base Hungarian wight! wilt thou the spigot wield? + +NYM: +He was gotten in drink: is not the humour conceited? + +FALSTAFF: +I am glad I am so acquit of this tinderbox: his +thefts were too open; his filching was like an +unskilful singer; he kept not time. + +NYM: +The good humour is to steal at a minute's rest. + +PISTOL: +'Convey,' the wise it call. 'Steal!' foh! a fico +for the phrase! + +FALSTAFF: +Well, sirs, I am almost out at heels. + +PISTOL: +Why, then, let kibes ensue. + +FALSTAFF: +There is no remedy; I must cony-catch; I must shift. + +PISTOL: +Young ravens must have food. + +FALSTAFF: +Which of you know Ford of this town? + +PISTOL: +I ken the wight: he is of substance good. + +FALSTAFF: +My honest lads, I will tell you what I am about. + +PISTOL: +Two yards, and more. + +FALSTAFF: +No quips now, Pistol! Indeed, I am in the waist two +yards about; but I am now about no waste; I am about +thrift. Briefly, I do mean to make love to Ford's +wife: I spy entertainment in her; she discourses, +she carves, she gives the leer of invitation: I +can construe the action of her familiar style; and +the hardest voice of her behavior, to be Englished +rightly, is, 'I am Sir John Falstaff's.' + +PISTOL: +He hath studied her will, and translated her will, +out of honesty into English. + +NYM: +The anchor is deep: will that humour pass? + +FALSTAFF: +Now, the report goes she has all the rule of her +husband's purse: he hath a legion of angels. + +PISTOL: +As many devils entertain; and 'To her, boy,' say I. + +NYM: +The humour rises; it is good: humour me the angels. + +FALSTAFF: +I have writ me here a letter to her: and here +another to Page's wife, who even now gave me good +eyes too, examined my parts with most judicious +oeillades; sometimes the beam of her view gilded my +foot, sometimes my portly belly. + +PISTOL: +Then did the sun on dunghill shine. + +NYM: +I thank thee for that humour. + +FALSTAFF: +O, she did so course o'er my exteriors with such a +greedy intention, that the appetite of her eye did +seem to scorch me up like a burning-glass! Here's +another letter to her: she bears the purse too; she +is a region in Guiana, all gold and bounty. I will +be cheater to them both, and they shall be +exchequers to me; they shall be my East and West +Indies, and I will trade to them both. Go bear thou +this letter to Mistress Page; and thou this to +Mistress Ford: we will thrive, lads, we will thrive. + +PISTOL: +Shall I Sir Pandarus of Troy become, +And by my side wear steel? then, Lucifer take all! + +NYM: +I will run no base humour: here, take the +humour-letter: I will keep the havior of reputation. + +FALSTAFF: + +PISTOL: +Let vultures gripe thy guts! for gourd and fullam holds, +And high and low beguiles the rich and poor: +Tester I'll have in pouch when thou shalt lack, +Base Phrygian Turk! + +NYM: +I have operations which be humours of revenge. + +PISTOL: +Wilt thou revenge? + +NYM: +By welkin and her star! + +PISTOL: +With wit or steel? + +NYM: +With both the humours, I: +I will discuss the humour of this love to Page. + +PISTOL: +And I to Ford shall eke unfold +How Falstaff, varlet vile, +His dove will prove, his gold will hold, +And his soft couch defile. + +NYM: +My humour shall not cool: I will incense Page to +deal with poison; I will possess him with +yellowness, for the revolt of mine is dangerous: +that is my true humour. + +PISTOL: +Thou art the Mars of malecontents: I second thee; troop on. + +MISTRESS QUICKLY: +What, John Rugby! I pray thee, go to the casement, +and see if you can see my master, Master Doctor +Caius, coming. If he do, i' faith, and find any +body in the house, here will be an old abusing of +God's patience and the king's English. + +RUGBY: +I'll go watch. + +MISTRESS QUICKLY: +Go; and we'll have a posset for't soon at night, in +faith, at the latter end of a sea-coal fire. +An honest, willing, kind fellow, as ever servant +shall come in house withal, and, I warrant you, no +tell-tale nor no breed-bate: his worst fault is, +that he is given to prayer; he is something peevish +that way: but nobody but has his fault; but let +that pass. Peter Simple, you say your name is? + +SIMPLE: +Ay, for fault of a better. + +MISTRESS QUICKLY: +And Master Slender's your master? + +SIMPLE: +Ay, forsooth. + +MISTRESS QUICKLY: +Does he not wear a great round beard, like a +glover's paring-knife? + +SIMPLE: +No, forsooth: he hath but a little wee face, with a +little yellow beard, a Cain-coloured beard. + +MISTRESS QUICKLY: +A softly-sprighted man, is he not? + +SIMPLE: +Ay, forsooth: but he is as tall a man of his hands +as any is between this and his head; he hath fought +with a warrener. + +MISTRESS QUICKLY: +How say you? O, I should remember him: does he not +hold up his head, as it were, and strut in his gait? + +SIMPLE: +Yes, indeed, does he. + +MISTRESS QUICKLY: +Well, heaven send Anne Page no worse fortune! Tell +Master Parson Evans I will do what I can for your +master: Anne is a good girl, and I wish-- + +RUGBY: +Out, alas! here comes my master. + +MISTRESS QUICKLY: +We shall all be shent. Run in here, good young man; +go into this closet: he will not stay long. +What, John Rugby! John! what, John, I say! +Go, John, go inquire for my master; I doubt +he be not well, that he comes not home. +And down, down, adown-a, &c. + +DOCTOR CAIUS: +Vat is you sing? I do not like des toys. Pray you, +go and vetch me in my closet un boitier vert, a box, +a green-a box: do intend vat I speak? a green-a box. + +MISTRESS QUICKLY: +Ay, forsooth; I'll fetch it you. +I am glad he went not in himself: if he had found +the young man, he would have been horn-mad. + +DOCTOR CAIUS: +Fe, fe, fe, fe! ma foi, il fait fort chaud. Je +m'en vais a la cour--la grande affaire. + +MISTRESS QUICKLY: +Is it this, sir? + +DOCTOR CAIUS: +Oui; mette le au mon pocket: depeche, quickly. Vere +is dat knave Rugby? + +MISTRESS QUICKLY: +What, John Rugby! John! + +RUGBY: +Here, sir! + +DOCTOR CAIUS: +You are John Rugby, and you are Jack Rugby. Come, +take-a your rapier, and come after my heel to the court. + +RUGBY: +'Tis ready, sir, here in the porch. + +DOCTOR CAIUS: +By my trot, I tarry too long. Od's me! +Qu'ai-j'oublie! dere is some simples in my closet, +dat I vill not for the varld I shall leave behind. + +MISTRESS QUICKLY: +Ay me, he'll find the young man here, and be mad! + +DOCTOR CAIUS: +O diable, diable! vat is in my closet? Villain! larron! +Rugby, my rapier! + +MISTRESS QUICKLY: +Good master, be content. + +DOCTOR CAIUS: +Wherefore shall I be content-a? + +MISTRESS QUICKLY: +The young man is an honest man. + +DOCTOR CAIUS: +What shall de honest man do in my closet? dere is +no honest man dat shall come in my closet. + +MISTRESS QUICKLY: +I beseech you, be not so phlegmatic. Hear the truth +of it: he came of an errand to me from Parson Hugh. + +DOCTOR CAIUS: +Vell. + +SIMPLE: +Ay, forsooth; to desire her to-- + +MISTRESS QUICKLY: +Peace, I pray you. + +DOCTOR CAIUS: +Peace-a your tongue. Speak-a your tale. + +SIMPLE: +To desire this honest gentlewoman, your maid, to +speak a good word to Mistress Anne Page for my +master in the way of marriage. + +MISTRESS QUICKLY: +This is all, indeed, la! but I'll ne'er put my +finger in the fire, and need not. + +DOCTOR CAIUS: +Sir Hugh send-a you? Rugby, baille me some paper. +Tarry you a little-a while. + +MISTRESS QUICKLY: + +SIMPLE: + +MISTRESS QUICKLY: + +DOCTOR CAIUS: +You jack'nape, give-a this letter to Sir Hugh; by +gar, it is a shallenge: I will cut his troat in dee +park; and I will teach a scurvy jack-a-nape priest +to meddle or make. You may be gone; it is not good +you tarry here. By gar, I will cut all his two +stones; by gar, he shall not have a stone to throw +at his dog: + +MISTRESS QUICKLY: +Alas, he speaks but for his friend. + +DOCTOR CAIUS: +It is no matter-a ver dat: do not you tell-a me +dat I shall have Anne Page for myself? By gar, I +vill kill de Jack priest; and I have appointed mine +host of de Jarteer to measure our weapon. By gar, I +will myself have Anne Page. + +MISTRESS QUICKLY: +Sir, the maid loves you, and all shall be well. We +must give folks leave to prate: what, the good-jer! + +DOCTOR CAIUS: +Rugby, come to the court with me. By gar, if I have +not Anne Page, I shall turn your head out of my +door. Follow my heels, Rugby. + +MISTRESS QUICKLY: +You shall have An fool's-head of your own. No, I +know Anne's mind for that: never a woman in Windsor +knows more of Anne's mind than I do; nor can do more +than I do with her, I thank heaven. + +FENTON: + +MISTRESS QUICKLY: +Who's there, I trow! Come near the house, I pray you. + +FENTON: +How now, good woman? how dost thou? + +MISTRESS QUICKLY: +The better that it pleases your good worship to ask. + +FENTON: +What news? how does pretty Mistress Anne? + +MISTRESS QUICKLY: +In truth, sir, and she is pretty, and honest, and +gentle; and one that is your friend, I can tell you +that by the way; I praise heaven for it. + +FENTON: +Shall I do any good, thinkest thou? shall I not lose my suit? + +MISTRESS QUICKLY: +Troth, sir, all is in his hands above: but +notwithstanding, Master Fenton, I'll be sworn on a +book, she loves you. Have not your worship a wart +above your eye? + +FENTON: +Yes, marry, have I; what of that? + +MISTRESS QUICKLY: +Well, thereby hangs a tale: good faith, it is such +another Nan; but, I detest, an honest maid as ever +broke bread: we had an hour's talk of that wart. I +shall never laugh but in that maid's company! But +indeed she is given too much to allicholy and +musing: but for you--well, go to. + +FENTON: +Well, I shall see her to-day. Hold, there's money +for thee; let me have thy voice in my behalf: if +thou seest her before me, commend me. + +MISTRESS QUICKLY: +Will I? i'faith, that we will; and I will tell your +worship more of the wart the next time we have +confidence; and of other wooers. + +FENTON: +Well, farewell; I am in great haste now. + +MISTRESS QUICKLY: +Farewell to your worship. +Truly, an honest gentleman: but Anne loves him not; +for I know Anne's mind as well as another does. Out +upon't! what have I forgot? + +MISTRESS PAGE: +What, have I scaped love-letters in the holiday- +time of my beauty, and am I now a subject for them? +Let me see. +'Ask me no reason why I love you; for though +Love use Reason for his physician, he admits him +not for his counsellor. You are not young, no more +am I; go to then, there's sympathy: you are merry, +so am I; ha, ha! then there's more sympathy: you +love sack, and so do I; would you desire better +sympathy? Let it suffice thee, Mistress Page,--at +the least, if the love of soldier can suffice,-- +that I love thee. I will not say, pity me; 'tis +not a soldier-like phrase: but I say, love me. By me, +Thine own true knight, +By day or night, +Or any kind of light, +With all his might +For thee to fight, JOHN FALSTAFF' +What a Herod of Jewry is this! O wicked +world! One that is well-nigh worn to pieces with +age to show himself a young gallant! What an +unweighed behavior hath this Flemish drunkard +picked--with the devil's name!--out of my +conversation, that he dares in this manner assay me? +Why, he hath not been thrice in my company! What +should I say to him? I was then frugal of my +mirth: Heaven forgive me! Why, I'll exhibit a bill +in the parliament for the putting down of men. How +shall I be revenged on him? for revenged I will be, +as sure as his guts are made of puddings. + +MISTRESS FORD: +Mistress Page! trust me, I was going to your house. + +MISTRESS PAGE: +And, trust me, I was coming to you. You look very +ill. + +MISTRESS FORD: +Nay, I'll ne'er believe that; I have to show to the contrary. + +MISTRESS PAGE: +Faith, but you do, in my mind. + +MISTRESS FORD: +Well, I do then; yet I say I could show you to the +contrary. O Mistress Page, give me some counsel! + +MISTRESS PAGE: +What's the matter, woman? + +MISTRESS FORD: +O woman, if it were not for one trifling respect, I +could come to such honour! + +MISTRESS PAGE: +Hang the trifle, woman! take the honour. What is +it? dispense with trifles; what is it? + +MISTRESS FORD: +If I would but go to hell for an eternal moment or so, +I could be knighted. + +MISTRESS PAGE: +What? thou liest! Sir Alice Ford! These knights +will hack; and so thou shouldst not alter the +article of thy gentry. + +MISTRESS FORD: +We burn daylight: here, read, read; perceive how I +might be knighted. I shall think the worse of fat +men, as long as I have an eye to make difference of +men's liking: and yet he would not swear; praised +women's modesty; and gave such orderly and +well-behaved reproof to all uncomeliness, that I +would have sworn his disposition would have gone to +the truth of his words; but they do no more adhere +and keep place together than the Hundredth Psalm to +the tune of 'Green Sleeves.' What tempest, I trow, +threw this whale, with so many tuns of oil in his +belly, ashore at Windsor? How shall I be revenged +on him? I think the best way were to entertain him +with hope, till the wicked fire of lust have melted +him in his own grease. Did you ever hear the like? + +MISTRESS PAGE: +Letter for letter, but that the name of Page and +Ford differs! To thy great comfort in this mystery +of ill opinions, here's the twin-brother of thy +letter: but let thine inherit first; for, I +protest, mine never shall. I warrant he hath a +thousand of these letters, writ with blank space for +different names--sure, more,--and these are of the +second edition: he will print them, out of doubt; +for he cares not what he puts into the press, when +he would put us two. I had rather be a giantess, +and lie under Mount Pelion. Well, I will find you +twenty lascivious turtles ere one chaste man. + +MISTRESS FORD: +Why, this is the very same; the very hand, the very +words. What doth he think of us? + +MISTRESS PAGE: +Nay, I know not: it makes me almost ready to +wrangle with mine own honesty. I'll entertain +myself like one that I am not acquainted withal; +for, sure, unless he know some strain in me, that I +know not myself, he would never have boarded me in this fury. + +MISTRESS FORD: +'Boarding,' call you it? I'll be sure to keep him +above deck. + +MISTRESS PAGE: +So will I if he come under my hatches, I'll never +to sea again. Let's be revenged on him: let's +appoint him a meeting; give him a show of comfort in +his suit and lead him on with a fine-baited delay, +till he hath pawned his horses to mine host of the Garter. + +MISTRESS FORD: +Nay, I will consent to act any villany against him, +that may not sully the chariness of our honesty. O, +that my husband saw this letter! it would give +eternal food to his jealousy. + +MISTRESS PAGE: +Why, look where he comes; and my good man too: he's +as far from jealousy as I am from giving him cause; +and that I hope is an unmeasurable distance. + +MISTRESS FORD: +You are the happier woman. + +MISTRESS PAGE: +Let's consult together against this greasy knight. +Come hither. + +FORD: +Well, I hope it be not so. + +PISTOL: +Hope is a curtal dog in some affairs: +Sir John affects thy wife. + +FORD: +Why, sir, my wife is not young. + +PISTOL: +He wooes both high and low, both rich and poor, +Both young and old, one with another, Ford; +He loves the gallimaufry: Ford, perpend. + +FORD: +Love my wife! + +PISTOL: +With liver burning hot. Prevent, or go thou, +Like Sir Actaeon he, with Ringwood at thy heels: +O, odious is the name! + +FORD: +What name, sir? + +PISTOL: +The horn, I say. Farewell. +Take heed, have open eye, for thieves do foot by night: +Take heed, ere summer comes or cuckoo-birds do sing. +Away, Sir Corporal Nym! +Believe it, Page; he speaks sense. + +FORD: + +NYM: + +PAGE: +'The humour of it,' quoth a'! here's a fellow +frights English out of his wits. + +FORD: +I will seek out Falstaff. + +PAGE: +I never heard such a drawling, affecting rogue. + +FORD: +If I do find it: well. + +PAGE: +I will not believe such a Cataian, though the priest +o' the town commended him for a true man. + +FORD: +'Twas a good sensible fellow: well. + +PAGE: +How now, Meg! + +MISTRESS PAGE: +Whither go you, George? Hark you. + +MISTRESS FORD: +How now, sweet Frank! why art thou melancholy? + +FORD: +I melancholy! I am not melancholy. Get you home, go. + +MISTRESS FORD: +Faith, thou hast some crotchets in thy head. Now, +will you go, Mistress Page? + +MISTRESS PAGE: +Have with you. You'll come to dinner, George. +Look who comes yonder: she shall be our messenger +to this paltry knight. + +MISTRESS FORD: + +MISTRESS PAGE: +You are come to see my daughter Anne? + +MISTRESS QUICKLY: +Ay, forsooth; and, I pray, how does good Mistress Anne? + +MISTRESS PAGE: +Go in with us and see: we have an hour's talk with +you. + +PAGE: +How now, Master Ford! + +FORD: +You heard what this knave told me, did you not? + +PAGE: +Yes: and you heard what the other told me? + +FORD: +Do you think there is truth in them? + +PAGE: +Hang 'em, slaves! I do not think the knight would +offer it: but these that accuse him in his intent +towards our wives are a yoke of his discarded men; +very rogues, now they be out of service. + +FORD: +Were they his men? + +PAGE: +Marry, were they. + +FORD: +I like it never the better for that. Does he lie at +the Garter? + +PAGE: +Ay, marry, does he. If he should intend this voyage +towards my wife, I would turn her loose to him; and +what he gets more of her than sharp words, let it +lie on my head. + +FORD: +I do not misdoubt my wife; but I would be loath to +turn them together. A man may be too confident: I +would have nothing lie on my head: I cannot be thus satisfied. + +PAGE: +Look where my ranting host of the Garter comes: +there is either liquor in his pate or money in his +purse when he looks so merrily. +How now, mine host! + +Host: +How now, bully-rook! thou'rt a gentleman. +Cavaleiro-justice, I say! + +SHALLOW: +I follow, mine host, I follow. Good even and +twenty, good Master Page! Master Page, will you go +with us? we have sport in hand. + +Host: +Tell him, cavaleiro-justice; tell him, bully-rook. + +SHALLOW: +Sir, there is a fray to be fought between Sir Hugh +the Welsh priest and Caius the French doctor. + +FORD: +Good mine host o' the Garter, a word with you. + +Host: +What sayest thou, my bully-rook? + +SHALLOW: + +Host: +Hast thou no suit against my knight, my +guest-cavaleire? + +FORD: +None, I protest: but I'll give you a pottle of +burnt sack to give me recourse to him and tell him +my name is Brook; only for a jest. + +Host: +My hand, bully; thou shalt have egress and regress; +--said I well?--and thy name shall be Brook. It is +a merry knight. Will you go, An-heires? + +SHALLOW: +Have with you, mine host. + +PAGE: +I have heard the Frenchman hath good skill in +his rapier. + +SHALLOW: +Tut, sir, I could have told you more. In these times +you stand on distance, your passes, stoccadoes, and +I know not what: 'tis the heart, Master Page; 'tis +here, 'tis here. I have seen the time, with my long +sword I would have made you four tall fellows skip like rats. + +Host: +Here, boys, here, here! shall we wag? + +PAGE: +Have with you. I would rather hear them scold than fight. + +FORD: +Though Page be a secure fool, an stands so firmly +on his wife's frailty, yet I cannot put off my +opinion so easily: she was in his company at Page's +house; and what they made there, I know not. Well, +I will look further into't: and I have a disguise +to sound Falstaff. If I find her honest, I lose not +my labour; if she be otherwise, 'tis labour well bestowed. + +FALSTAFF: +I will not lend thee a penny. + +PISTOL: +Why, then the world's mine oyster. +Which I with sword will open. + +FALSTAFF: +Not a penny. I have been content, sir, you should +lay my countenance to pawn; I have grated upon my +good friends for three reprieves for you and your +coach-fellow Nym; or else you had looked through +the grate, like a geminy of baboons. I am damned in +hell for swearing to gentlemen my friends, you were +good soldiers and tall fellows; and when Mistress +Bridget lost the handle of her fan, I took't upon +mine honour thou hadst it not. + +PISTOL: +Didst not thou share? hadst thou not fifteen pence? + +FALSTAFF: +Reason, you rogue, reason: thinkest thou I'll +endanger my soul gratis? At a word, hang no more +about me, I am no gibbet for you. Go. A short knife +and a throng! To your manor of Pickt-hatch! Go. +You'll not bear a letter for me, you rogue! you +stand upon your honour! Why, thou unconfinable +baseness, it is as much as I can do to keep the +terms of my honour precise: I, I, I myself +sometimes, leaving the fear of God on the left hand +and hiding mine honour in my necessity, am fain to +shuffle, to hedge and to lurch; and yet you, rogue, +will ensconce your rags, your cat-a-mountain +looks, your red-lattice phrases, and your +bold-beating oaths, under the shelter of your +honour! You will not do it, you! + +PISTOL: +I do relent: what would thou more of man? + +ROBIN: +Sir, here's a woman would speak with you. + +FALSTAFF: +Let her approach. + +MISTRESS QUICKLY: +Give your worship good morrow. + +FALSTAFF: +Good morrow, good wife. + +MISTRESS QUICKLY: +Not so, an't please your worship. + +FALSTAFF: +Good maid, then. + +MISTRESS QUICKLY: +I'll be sworn, +As my mother was, the first hour I was born. + +FALSTAFF: +I do believe the swearer. What with me? + +MISTRESS QUICKLY: +Shall I vouchsafe your worship a word or two? + +FALSTAFF: +Two thousand, fair woman: and I'll vouchsafe thee +the hearing. + +MISTRESS QUICKLY: +There is one Mistress Ford, sir:--I pray, come a +little nearer this ways:--I myself dwell with master +Doctor Caius,-- + +FALSTAFF: +Well, on: Mistress Ford, you say,-- + +MISTRESS QUICKLY: +Your worship says very true: I pray your worship, +come a little nearer this ways. + +FALSTAFF: +I warrant thee, nobody hears; mine own people, mine +own people. + +MISTRESS QUICKLY: +Are they so? God bless them and make them his servants! + +FALSTAFF: +Well, Mistress Ford; what of her? + +MISTRESS QUICKLY: +Why, sir, she's a good creature. Lord Lord! your +worship's a wanton! Well, heaven forgive you and all +of us, I pray! + +FALSTAFF: +Mistress Ford; come, Mistress Ford,-- + +MISTRESS QUICKLY: +Marry, this is the short and the long of it; you +have brought her into such a canaries as 'tis +wonderful. The best courtier of them all, when the +court lay at Windsor, could never have brought her +to such a canary. Yet there has been knights, and +lords, and gentlemen, with their coaches, I warrant +you, coach after coach, letter after letter, gift +after gift; smelling so sweetly, all musk, and so +rushling, I warrant you, in silk and gold; and in +such alligant terms; and in such wine and sugar of +the best and the fairest, that would have won any +woman's heart; and, I warrant you, they could never +get an eye-wink of her: I had myself twenty angels +given me this morning; but I defy all angels, in +any such sort, as they say, but in the way of +honesty: and, I warrant you, they could never get +her so much as sip on a cup with the proudest of +them all: and yet there has been earls, nay, which +is more, pensioners; but, I warrant you, all is one with her. + +FALSTAFF: +But what says she to me? be brief, my good +she-Mercury. + +MISTRESS QUICKLY: +Marry, she hath received your letter, for the which +she thanks you a thousand times; and she gives you +to notify that her husband will be absence from his +house between ten and eleven. + +FALSTAFF: +Ten and eleven? + +MISTRESS QUICKLY: +Ay, forsooth; and then you may come and see the +picture, she says, that you wot of: Master Ford, +her husband, will be from home. Alas! the sweet +woman leads an ill life with him: he's a very +jealousy man: she leads a very frampold life with +him, good heart. + +FALSTAFF: +Ten and eleven. Woman, commend me to her; I will +not fail her. + +MISTRESS QUICKLY: +Why, you say well. But I have another messenger to +your worship. Mistress Page hath her hearty +commendations to you too: and let me tell you in +your ear, she's as fartuous a civil modest wife, and +one, I tell you, that will not miss you morning nor +evening prayer, as any is in Windsor, whoe'er be the +other: and she bade me tell your worship that her +husband is seldom from home; but she hopes there +will come a time. I never knew a woman so dote upon +a man: surely I think you have charms, la; yes, in truth. + +FALSTAFF: +Not I, I assure thee: setting the attractions of my +good parts aside I have no other charms. + +MISTRESS QUICKLY: +Blessing on your heart for't! + +FALSTAFF: +But, I pray thee, tell me this: has Ford's wife and +Page's wife acquainted each other how they love me? + +MISTRESS QUICKLY: +That were a jest indeed! they have not so little +grace, I hope: that were a trick indeed! but +Mistress Page would desire you to send her your +little page, of all loves: her husband has a +marvellous infection to the little page; and truly +Master Page is an honest man. Never a wife in +Windsor leads a better life than she does: do what +she will, say what she will, take all, pay all, go +to bed when she list, rise when she list, all is as +she will: and truly she deserves it; for if there +be a kind woman in Windsor, she is one. You must +send her your page; no remedy. + +FALSTAFF: +Why, I will. + +MISTRESS QUICKLY: +Nay, but do so, then: and, look you, he may come and +go between you both; and in any case have a +nay-word, that you may know one another's mind, and +the boy never need to understand any thing; for +'tis not good that children should know any +wickedness: old folks, you know, have discretion, +as they say, and know the world. + +FALSTAFF: +Fare thee well: commend me to them both: there's +my purse; I am yet thy debtor. Boy, go along with +this woman. +This news distracts me! + +PISTOL: +This punk is one of Cupid's carriers: +Clap on more sails; pursue; up with your fights: +Give fire: she is my prize, or ocean whelm them all! + +FALSTAFF: +Sayest thou so, old Jack? go thy ways; I'll make +more of thy old body than I have done. Will they +yet look after thee? Wilt thou, after the expense +of so much money, be now a gainer? Good body, I +thank thee. Let them say 'tis grossly done; so it be +fairly done, no matter. + +BARDOLPH: +Sir John, there's one Master Brook below would fain +speak with you, and be acquainted with you; and hath +sent your worship a morning's draught of sack. + +FALSTAFF: +Brook is his name? + +BARDOLPH: +Ay, sir. + +FALSTAFF: +Call him in. +Such Brooks are welcome to me, that o'erflow such +liquor. Ah, ha! Mistress Ford and Mistress Page +have I encompassed you? go to; via! + +FORD: +Bless you, sir! + +FALSTAFF: +And you, sir! Would you speak with me? + +FORD: +I make bold to press with so little preparation upon +you. + +FALSTAFF: +You're welcome. What's your will? Give us leave, drawer. + +FORD: +Sir, I am a gentleman that have spent much; my name is Brook. + +FALSTAFF: +Good Master Brook, I desire more acquaintance of you. + +FORD: +Good Sir John, I sue for yours: not to charge you; +for I must let you understand I think myself in +better plight for a lender than you are: the which +hath something embolden'd me to this unseasoned +intrusion; for they say, if money go before, all +ways do lie open. + +FALSTAFF: +Money is a good soldier, sir, and will on. + +FORD: +Troth, and I have a bag of money here troubles me: +if you will help to bear it, Sir John, take all, or +half, for easing me of the carriage. + +FALSTAFF: +Sir, I know not how I may deserve to be your porter. + +FORD: +I will tell you, sir, if you will give me the hearing. + +FALSTAFF: +Speak, good Master Brook: I shall be glad to be +your servant. + +FORD: +Sir, I hear you are a scholar,--I will be brief +with you,--and you have been a man long known to me, +though I had never so good means, as desire, to make +myself acquainted with you. I shall discover a +thing to you, wherein I must very much lay open mine +own imperfection: but, good Sir John, as you have +one eye upon my follies, as you hear them unfolded, +turn another into the register of your own; that I +may pass with a reproof the easier, sith you +yourself know how easy it is to be such an offender. + +FALSTAFF: +Very well, sir; proceed. + +FORD: +There is a gentlewoman in this town; her husband's +name is Ford. + +FALSTAFF: +Well, sir. + +FORD: +I have long loved her, and, I protest to you, +bestowed much on her; followed her with a doting +observance; engrossed opportunities to meet her; +fee'd every slight occasion that could but niggardly +give me sight of her; not only bought many presents +to give her, but have given largely to many to know +what she would have given; briefly, I have pursued +her as love hath pursued me; which hath been on the +wing of all occasions. But whatsoever I have +merited, either in my mind or, in my means, meed, +I am sure, I have received none; unless experience +be a jewel that I have purchased at an infinite +rate, and that hath taught me to say this: +'Love like a shadow flies when substance love pursues; +Pursuing that that flies, and flying what pursues.' + +FALSTAFF: +Have you received no promise of satisfaction at her hands? + +FORD: +Never. + +FALSTAFF: +Have you importuned her to such a purpose? + +FORD: +Never. + +FALSTAFF: +Of what quality was your love, then? + +FORD: +Like a fair house built on another man's ground; so +that I have lost my edifice by mistaking the place +where I erected it. + +FALSTAFF: +To what purpose have you unfolded this to me? + +FORD: +When I have told you that, I have told you all. +Some say, that though she appear honest to me, yet in +other places she enlargeth her mirth so far that +there is shrewd construction made of her. Now, Sir +John, here is the heart of my purpose: you are a +gentleman of excellent breeding, admirable +discourse, of great admittance, authentic in your +place and person, generally allowed for your many +war-like, court-like, and learned preparations. + +FALSTAFF: +O, sir! + +FORD: +Believe it, for you know it. There is money; spend +it, spend it; spend more; spend all I have; only +give me so much of your time in exchange of it, as +to lay an amiable siege to the honesty of this +Ford's wife: use your art of wooing; win her to +consent to you: if any man may, you may as soon as +any. + +FALSTAFF: +Would it apply well to the vehemency of your +affection, that I should win what you would enjoy? +Methinks you prescribe to yourself very preposterously. + +FORD: +O, understand my drift. She dwells so securely on +the excellency of her honour, that the folly of my +soul dares not present itself: she is too bright to +be looked against. Now, could I could come to her +with any detection in my hand, my desires had +instance and argument to commend themselves: I +could drive her then from the ward of her purity, +her reputation, her marriage-vow, and a thousand +other her defences, which now are too too strongly +embattled against me. What say you to't, Sir John? + +FALSTAFF: +Master Brook, I will first make bold with your +money; next, give me your hand; and last, as I am a +gentleman, you shall, if you will, enjoy Ford's wife. + +FORD: +O good sir! + +FALSTAFF: +I say you shall. + +FORD: +Want no money, Sir John; you shall want none. + +FALSTAFF: +Want no Mistress Ford, Master Brook; you shall want +none. I shall be with her, I may tell you, by her +own appointment; even as you came in to me, her +assistant or go-between parted from me: I say I +shall be with her between ten and eleven; for at +that time the jealous rascally knave her husband +will be forth. Come you to me at night; you shall +know how I speed. + +FORD: +I am blest in your acquaintance. Do you know Ford, +sir? + +FALSTAFF: +Hang him, poor cuckoldly knave! I know him not: +yet I wrong him to call him poor; they say the +jealous wittolly knave hath masses of money; for the +which his wife seems to me well-favored. I will +use her as the key of the cuckoldly rogue's coffer; +and there's my harvest-home. + +FORD: +I would you knew Ford, sir, that you might avoid him +if you saw him. + +FALSTAFF: +Hang him, mechanical salt-butter rogue! I will +stare him out of his wits; I will awe him with my +cudgel: it shall hang like a meteor o'er the +cuckold's horns. Master Brook, thou shalt know I +will predominate over the peasant, and thou shalt +lie with his wife. Come to me soon at night. +Ford's a knave, and I will aggravate his style; +thou, Master Brook, shalt know him for knave and +cuckold. Come to me soon at night. + +FORD: +What a damned Epicurean rascal is this! My heart is +ready to crack with impatience. Who says this is +improvident jealousy? my wife hath sent to him; the +hour is fixed; the match is made. Would any man +have thought this? See the hell of having a false +woman! My bed shall be abused, my coffers +ransacked, my reputation gnawn at; and I shall not +only receive this villanous wrong, but stand under +the adoption of abominable terms, and by him that +does me this wrong. Terms! names! Amaimon sounds +well; Lucifer, well; Barbason, well; yet they are +devils' additions, the names of fiends: but +Cuckold! Wittol!--Cuckold! the devil himself hath +not such a name. Page is an ass, a secure ass: he +will trust his wife; he will not be jealous. I will +rather trust a Fleming with my butter, Parson Hugh +the Welshman with my cheese, an Irishman with my +aqua-vitae bottle, or a thief to walk my ambling +gelding, than my wife with herself; then she plots, +then she ruminates, then she devises; and what they +think in their hearts they may effect, they will +break their hearts but they will effect. God be +praised for my jealousy! Eleven o'clock the hour. +I will prevent this, detect my wife, be revenged on +Falstaff, and laugh at Page. I will about it; +better three hours too soon than a minute too late. +Fie, fie, fie! cuckold! cuckold! cuckold! + +DOCTOR CAIUS: +Jack Rugby! + +RUGBY: +Sir? + +DOCTOR CAIUS: +Vat is de clock, Jack? + +RUGBY: +'Tis past the hour, sir, that Sir Hugh promised to meet. + +DOCTOR CAIUS: +By gar, he has save his soul, dat he is no come; he +has pray his Pible well, dat he is no come: by gar, +Jack Rugby, he is dead already, if he be come. + +RUGBY: +He is wise, sir; he knew your worship would kill +him, if he came. + +DOCTOR CAIUS: +By gar, de herring is no dead so as I vill kill him. +Take your rapier, Jack; I vill tell you how I vill kill him. + +RUGBY: +Alas, sir, I cannot fence. + +DOCTOR CAIUS: +Villany, take your rapier. + +RUGBY: +Forbear; here's company. + +Host: +Bless thee, bully doctor! + +SHALLOW: +Save you, Master Doctor Caius! + +PAGE: +Now, good master doctor! + +SLENDER: +Give you good morrow, sir. + +DOCTOR CAIUS: +Vat be all you, one, two, tree, four, come for? + +Host: +To see thee fight, to see thee foin, to see thee +traverse; to see thee here, to see thee there; to +see thee pass thy punto, thy stock, thy reverse, thy +distance, thy montant. Is he dead, my Ethiopian? is +he dead, my Francisco? ha, bully! What says my +AEsculapius? my Galen? my heart of elder? ha! is +he dead, bully stale? is he dead? + +DOCTOR CAIUS: +By gar, he is de coward Jack priest of de vorld; he +is not show his face. + +Host: +Thou art a Castalion-King-Urinal. Hector of Greece, my boy! + +DOCTOR CAIUS: +I pray you, bear vitness that me have stay six or +seven, two, tree hours for him, and he is no come. + +SHALLOW: +He is the wiser man, master doctor: he is a curer of +souls, and you a curer of bodies; if you should +fight, you go against the hair of your professions. +Is it not true, Master Page? + +PAGE: +Master Shallow, you have yourself been a great +fighter, though now a man of peace. + +SHALLOW: +Bodykins, Master Page, though I now be old and of +the peace, if I see a sword out, my finger itches to +make one. Though we are justices and doctors and +churchmen, Master Page, we have some salt of our +youth in us; we are the sons of women, Master Page. + +PAGE: +'Tis true, Master Shallow. + +SHALLOW: +It will be found so, Master Page. Master Doctor +Caius, I am come to fetch you home. I am sworn of +the peace: you have showed yourself a wise +physician, and Sir Hugh hath shown himself a wise +and patient churchman. You must go with me, master doctor. + +Host: +Pardon, guest-justice. A word, Mounseur Mockwater. + +DOCTOR CAIUS: +Mock-vater! vat is dat? + +Host: +Mock-water, in our English tongue, is valour, bully. + +DOCTOR CAIUS: +By gar, den, I have as mush mock-vater as de +Englishman. Scurvy jack-dog priest! by gar, me +vill cut his ears. + +Host: +He will clapper-claw thee tightly, bully. + +DOCTOR CAIUS: +Clapper-de-claw! vat is dat? + +Host: +That is, he will make thee amends. + +DOCTOR CAIUS: +By gar, me do look he shall clapper-de-claw me; +for, by gar, me vill have it. + +Host: +And I will provoke him to't, or let him wag. + +DOCTOR CAIUS: +Me tank you for dat. + +Host: +And, moreover, bully,--but first, master guest, and +Master Page, and eke Cavaleiro Slender, go you +through the town to Frogmore. + +PAGE: +Sir Hugh is there, is he? + +Host: +He is there: see what humour he is in; and I will +bring the doctor about by the fields. Will it do well? + +SHALLOW: +We will do it. + +PAGE: +Adieu, good master doctor. + +DOCTOR CAIUS: +By gar, me vill kill de priest; for he speak for a +jack-an-ape to Anne Page. + +Host: +Let him die: sheathe thy impatience, throw cold +water on thy choler: go about the fields with me +through Frogmore: I will bring thee where Mistress +Anne Page is, at a farm-house a-feasting; and thou +shalt woo her. Cried I aim? said I well? + +DOCTOR CAIUS: +By gar, me dank you for dat: by gar, I love you; +and I shall procure-a you de good guest, de earl, +de knight, de lords, de gentlemen, my patients. + +Host: +For the which I will be thy adversary toward Anne +Page. Said I well? + +DOCTOR CAIUS: +By gar, 'tis good; vell said. + +Host: +Let us wag, then. + +DOCTOR CAIUS: +Come at my heels, Jack Rugby. + +SIR HUGH EVANS: +I pray you now, good master Slender's serving-man, +and friend Simple by your name, which way have you +looked for Master Caius, that calls himself doctor of physic? + +SIMPLE: +Marry, sir, the pittie-ward, the park-ward, every +way; old Windsor way, and every way but the town +way. + +SIR HUGH EVANS: +I most fehemently desire you you will also look that +way. + +SIMPLE: +I will, sir. + +SIR HUGH EVANS: +'Pless my soul, how full of chollors I am, and +trempling of mind! I shall be glad if he have +deceived me. How melancholies I am! I will knog +his urinals about his knave's costard when I have +good opportunities for the ork. 'Pless my soul! +To shallow rivers, to whose falls +Melodious birds sings madrigals; +There will we make our peds of roses, +And a thousand fragrant posies. +To shallow-- +Mercy on me! I have a great dispositions to cry. +Melodious birds sing madrigals-- +When as I sat in Pabylon-- +And a thousand vagram posies. +To shallow &c. + +SIMPLE: +Yonder he is coming, this way, Sir Hugh. + +SIR HUGH EVANS: +He's welcome. +To shallow rivers, to whose falls- +Heaven prosper the right! What weapons is he? + +SIMPLE: +No weapons, sir. There comes my master, Master +Shallow, and another gentleman, from Frogmore, over +the stile, this way. + +SIR HUGH EVANS: +Pray you, give me my gown; or else keep it in your arms. + +SHALLOW: +How now, master Parson! Good morrow, good Sir Hugh. +Keep a gamester from the dice, and a good student +from his book, and it is wonderful. + +SLENDER: + +PAGE: +'Save you, good Sir Hugh! + +SIR HUGH EVANS: +'Pless you from his mercy sake, all of you! + +SHALLOW: +What, the sword and the word! do you study them +both, master parson? + +PAGE: +And youthful still! in your doublet and hose this +raw rheumatic day! + +SIR HUGH EVANS: +There is reasons and causes for it. + +PAGE: +We are come to you to do a good office, master parson. + +SIR HUGH EVANS: +Fery well: what is it? + +PAGE: +Yonder is a most reverend gentleman, who, belike +having received wrong by some person, is at most +odds with his own gravity and patience that ever you +saw. + +SHALLOW: +I have lived fourscore years and upward; I never +heard a man of his place, gravity and learning, so +wide of his own respect. + +SIR HUGH EVANS: +What is he? + +PAGE: +I think you know him; Master Doctor Caius, the +renowned French physician. + +SIR HUGH EVANS: +Got's will, and his passion of my heart! I had as +lief you would tell me of a mess of porridge. + +PAGE: +Why? + +SIR HUGH EVANS: +He has no more knowledge in Hibocrates and Galen, +--and he is a knave besides; a cowardly knave as you +would desires to be acquainted withal. + +PAGE: +I warrant you, he's the man should fight with him. + +SHALLOW: + +SHALLOW: +It appears so by his weapons. Keep them asunder: +here comes Doctor Caius. + +PAGE: +Nay, good master parson, keep in your weapon. + +SHALLOW: +So do you, good master doctor. + +Host: +Disarm them, and let them question: let them keep +their limbs whole and hack our English. + +DOCTOR CAIUS: +I pray you, let-a me speak a word with your ear. +Vherefore vill you not meet-a me? + +SIR HUGH EVANS: + +DOCTOR CAIUS: +By gar, you are de coward, de Jack dog, John ape. + +SIR HUGH EVANS: + +DOCTOR CAIUS: +Diable! Jack Rugby,--mine host de Jarteer,--have I +not stay for him to kill him? have I not, at de place +I did appoint? + +SIR HUGH EVANS: +As I am a Christians soul now, look you, this is the +place appointed: I'll be judgement by mine host of +the Garter. + +Host: +Peace, I say, Gallia and Gaul, French and Welsh, +soul-curer and body-curer! + +DOCTOR CAIUS: +Ay, dat is very good; excellent. + +Host: +Peace, I say! hear mine host of the Garter. Am I +politic? am I subtle? am I a Machiavel? Shall I +lose my doctor? no; he gives me the potions and the +motions. Shall I lose my parson, my priest, my Sir +Hugh? no; he gives me the proverbs and the +no-verbs. Give me thy hand, terrestrial; so. Give me +thy hand, celestial; so. Boys of art, I have +deceived you both; I have directed you to wrong +places: your hearts are mighty, your skins are +whole, and let burnt sack be the issue. Come, lay +their swords to pawn. Follow me, lads of peace; +follow, follow, follow. + +SHALLOW: +Trust me, a mad host. Follow, gentlemen, follow. + +SLENDER: + +DOCTOR CAIUS: +Ha, do I perceive dat? have you make-a de sot of +us, ha, ha? + +SIR HUGH EVANS: +This is well; he has made us his vlouting-stog. I +desire you that we may be friends; and let us knog +our prains together to be revenge on this same +scall, scurvy cogging companion, the host of the Garter. + +DOCTOR CAIUS: +By gar, with all my heart. He promise to bring me +where is Anne Page; by gar, he deceive me too. + +SIR HUGH EVANS: +Well, I will smite his noddles. Pray you, follow. + +MISTRESS PAGE: +Nay, keep your way, little gallant; you were wont to +be a follower, but now you are a leader. Whether +had you rather lead mine eyes, or eye your master's heels? + +ROBIN: +I had rather, forsooth, go before you like a man +than follow him like a dwarf. + +MISTRESS PAGE: +O, you are a flattering boy: now I see you'll be a courtier. + +FORD: +Well met, Mistress Page. Whither go you? + +MISTRESS PAGE: +Truly, sir, to see your wife. Is she at home? + +FORD: +Ay; and as idle as she may hang together, for want +of company. I think, if your husbands were dead, +you two would marry. + +MISTRESS PAGE: +Be sure of that,--two other husbands. + +FORD: +Where had you this pretty weather-cock? + +MISTRESS PAGE: +I cannot tell what the dickens his name is my +husband had him of. What do you call your knight's +name, sirrah? + +ROBIN: +Sir John Falstaff. + +FORD: +Sir John Falstaff! + +MISTRESS PAGE: +He, he; I can never hit on's name. There is such a +league between my good man and he! Is your wife at +home indeed? + +FORD: +Indeed she is. + +MISTRESS PAGE: +By your leave, sir: I am sick till I see her. + +FORD: +Has Page any brains? hath he any eyes? hath he any +thinking? Sure, they sleep; he hath no use of them. +Why, this boy will carry a letter twenty mile, as +easy as a cannon will shoot point-blank twelve +score. He pieces out his wife's inclination; he +gives her folly motion and advantage: and now she's +going to my wife, and Falstaff's boy with her. A +man may hear this shower sing in the wind. And +Falstaff's boy with her! Good plots, they are laid; +and our revolted wives share damnation together. +Well; I will take him, then torture my wife, pluck +the borrowed veil of modesty from the so seeming +Mistress Page, divulge Page himself for a secure and +wilful Actaeon; and to these violent proceedings all +my neighbours shall cry aim. +The clock gives me my cue, and my assurance bids me +search: there I shall find Falstaff: I shall be +rather praised for this than mocked; for it is as +positive as the earth is firm that Falstaff is +there: I will go. + +SHALLOW: +Well met, Master Ford. +&c. + +FORD: +Trust me, a good knot: I have good cheer at home; +and I pray you all go with me. + +SHALLOW: +I must excuse myself, Master Ford. + +SLENDER: +And so must I, sir: we have appointed to dine with +Mistress Anne, and I would not break with her for +more money than I'll speak of. + +SHALLOW: +We have lingered about a match between Anne Page and +my cousin Slender, and this day we shall have our answer. + +SLENDER: +I hope I have your good will, father Page. + +PAGE: +You have, Master Slender; I stand wholly for you: +but my wife, master doctor, is for you altogether. + +DOCTOR CAIUS: +Ay, be-gar; and de maid is love-a me: my nursh-a +Quickly tell me so mush. + +Host: +What say you to young Master Fenton? he capers, he +dances, he has eyes of youth, he writes verses, he +speaks holiday, he smells April and May: he will +carry't, he will carry't; 'tis in his buttons; he +will carry't. + +PAGE: +Not by my consent, I promise you. The gentleman is +of no having: he kept company with the wild prince +and Poins; he is of too high a region; he knows too +much. No, he shall not knit a knot in his fortunes +with the finger of my substance: if he take her, +let him take her simply; the wealth I have waits on +my consent, and my consent goes not that way. + +FORD: +I beseech you heartily, some of you go home with me +to dinner: besides your cheer, you shall have +sport; I will show you a monster. Master doctor, +you shall go; so shall you, Master Page; and you, Sir Hugh. + +SHALLOW: +Well, fare you well: we shall have the freer wooing +at Master Page's. + +DOCTOR CAIUS: +Go home, John Rugby; I come anon. + +Host: +Farewell, my hearts: I will to my honest knight +Falstaff, and drink canary with him. + +FORD: + +All: +Have with you to see this monster. + +MISTRESS FORD: +What, John! What, Robert! + +MISTRESS PAGE: +Quickly, quickly! is the buck-basket-- + +MISTRESS FORD: +I warrant. What, Robin, I say! + +MISTRESS PAGE: +Come, come, come. + +MISTRESS FORD: +Here, set it down. + +MISTRESS PAGE: +Give your men the charge; we must be brief. + +MISTRESS FORD: +Marry, as I told you before, John and Robert, be +ready here hard by in the brew-house: and when I +suddenly call you, come forth, and without any pause +or staggering take this basket on your shoulders: +that done, trudge with it in all haste, and carry +it among the whitsters in Datchet-mead, and there +empty it in the muddy ditch close by the Thames side. + +MISTRESS PAGE: +You will do it? + +MISTRESS FORD: +I ha' told them over and over; they lack no +direction. Be gone, and come when you are called. + +MISTRESS PAGE: +Here comes little Robin. + +MISTRESS FORD: +How now, my eyas-musket! what news with you? + +ROBIN: +My master, Sir John, is come in at your back-door, +Mistress Ford, and requests your company. + +MISTRESS PAGE: +You little Jack-a-Lent, have you been true to us? + +ROBIN: +Ay, I'll be sworn. My master knows not of your +being here and hath threatened to put me into +everlasting liberty if I tell you of it; for he +swears he'll turn me away. + +MISTRESS PAGE: +Thou'rt a good boy: this secrecy of thine shall be +a tailor to thee and shall make thee a new doublet +and hose. I'll go hide me. + +MISTRESS FORD: +Do so. Go tell thy master I am alone. +Mistress Page, remember you your cue. + +MISTRESS PAGE: +I warrant thee; if I do not act it, hiss me. + +MISTRESS FORD: +Go to, then: we'll use this unwholesome humidity, +this gross watery pumpion; we'll teach him to know +turtles from jays. + +FALSTAFF: +Have I caught thee, my heavenly jewel? Why, now let +me die, for I have lived long enough: this is the +period of my ambition: O this blessed hour! + +MISTRESS FORD: +O sweet Sir John! + +FALSTAFF: +Mistress Ford, I cannot cog, I cannot prate, +Mistress Ford. Now shall I sin in my wish: I would +thy husband were dead: I'll speak it before the +best lord; I would make thee my lady. + +MISTRESS FORD: +I your lady, Sir John! alas, I should be a pitiful lady! + +FALSTAFF: +Let the court of France show me such another. I see +how thine eye would emulate the diamond: thou hast +the right arched beauty of the brow that becomes the +ship-tire, the tire-valiant, or any tire of +Venetian admittance. + +MISTRESS FORD: +A plain kerchief, Sir John: my brows become nothing +else; nor that well neither. + +FALSTAFF: +By the Lord, thou art a traitor to say so: thou +wouldst make an absolute courtier; and the firm +fixture of thy foot would give an excellent motion +to thy gait in a semi-circled farthingale. I see +what thou wert, if Fortune thy foe were not, Nature +thy friend. Come, thou canst not hide it. + +MISTRESS FORD: +Believe me, there is no such thing in me. + +FALSTAFF: +What made me love thee? let that persuade thee +there's something extraordinary in thee. Come, I +cannot cog and say thou art this and that, like a +many of these lisping hawthorn-buds, that come like +women in men's apparel, and smell like Bucklersbury +in simple time; I cannot: but I love thee; none +but thee; and thou deservest it. + +MISTRESS FORD: +Do not betray me, sir. I fear you love Mistress Page. + +FALSTAFF: +Thou mightst as well say I love to walk by the +Counter-gate, which is as hateful to me as the reek +of a lime-kiln. + +MISTRESS FORD: +Well, heaven knows how I love you; and you shall one +day find it. + +FALSTAFF: +Keep in that mind; I'll deserve it. + +MISTRESS FORD: +Nay, I must tell you, so you do; or else I could not +be in that mind. + +ROBIN: + +FALSTAFF: +She shall not see me: I will ensconce me behind the arras. + +MISTRESS FORD: +Pray you, do so: she's a very tattling woman. +What's the matter? how now! + +MISTRESS PAGE: +O Mistress Ford, what have you done? You're shamed, +you're overthrown, you're undone for ever! + +MISTRESS FORD: +What's the matter, good Mistress Page? + +MISTRESS PAGE: +O well-a-day, Mistress Ford! having an honest man +to your husband, to give him such cause of suspicion! + +MISTRESS FORD: +What cause of suspicion? + +MISTRESS PAGE: +What cause of suspicion! Out pon you! how am I +mistook in you! + +MISTRESS FORD: +Why, alas, what's the matter? + +MISTRESS PAGE: +Your husband's coming hither, woman, with all the +officers in Windsor, to search for a gentleman that +he says is here now in the house by your consent, to +take an ill advantage of his assence: you are undone. + +MISTRESS FORD: +'Tis not so, I hope. + +MISTRESS PAGE: +Pray heaven it be not so, that you have such a man +here! but 'tis most certain your husband's coming, +with half Windsor at his heels, to search for such a +one. I come before to tell you. If you know +yourself clear, why, I am glad of it; but if you +have a friend here convey, convey him out. Be not +amazed; call all your senses to you; defend your +reputation, or bid farewell to your good life for ever. + +MISTRESS FORD: +What shall I do? There is a gentleman my dear +friend; and I fear not mine own shame so much as his +peril: I had rather than a thousand pound he were +out of the house. + +MISTRESS PAGE: +For shame! never stand 'you had rather' and 'you +had rather:' your husband's here at hand, bethink +you of some conveyance: in the house you cannot +hide him. O, how have you deceived me! Look, here +is a basket: if he be of any reasonable stature, he +may creep in here; and throw foul linen upon him, as +if it were going to bucking: or--it is whiting-time +--send him by your two men to Datchet-mead. + +MISTRESS FORD: +He's too big to go in there. What shall I do? + +FALSTAFF: + +MISTRESS PAGE: +What, Sir John Falstaff! Are these your letters, knight? + +FALSTAFF: +I love thee. Help me away. Let me creep in here. +I'll never-- + +MISTRESS PAGE: +Help to cover your master, boy. Call your men, +Mistress Ford. You dissembling knight! + +MISTRESS FORD: +What, John! Robert! John! +Go take up these clothes here quickly. Where's the +cowl-staff? look, how you drumble! Carry them to +the laundress in Datchet-meat; quickly, come. + +FORD: +Pray you, come near: if I suspect without cause, +why then make sport at me; then let me be your jest; +I deserve it. How now! whither bear you this? + +Servant: +To the laundress, forsooth. + +MISTRESS FORD: +Why, what have you to do whither they bear it? You +were best meddle with buck-washing. + +FORD: +Buck! I would I could wash myself of the buck! +Buck, buck, buck! Ay, buck; I warrant you, buck; +and of the season too, it shall appear. +Gentlemen, I have dreamed to-night; I'll tell you my +dream. Here, here, here be my keys: ascend my +chambers; search, seek, find out: I'll warrant +we'll unkennel the fox. Let me stop this way first. +So, now uncape. + +PAGE: +Good Master Ford, be contented: you wrong yourself too much. + +FORD: +True, Master Page. Up, gentlemen: you shall see +sport anon: follow me, gentlemen. + +SIR HUGH EVANS: +This is fery fantastical humours and jealousies. + +DOCTOR CAIUS: +By gar, 'tis no the fashion of France; it is not +jealous in France. + +PAGE: +Nay, follow him, gentlemen; see the issue of his search. + +MISTRESS PAGE: +Is there not a double excellency in this? + +MISTRESS FORD: +I know not which pleases me better, that my husband +is deceived, or Sir John. + +MISTRESS PAGE: +What a taking was he in when your husband asked who +was in the basket! + +MISTRESS FORD: +I am half afraid he will have need of washing; so +throwing him into the water will do him a benefit. + +MISTRESS PAGE: +Hang him, dishonest rascal! I would all of the same +strain were in the same distress. + +MISTRESS FORD: +I think my husband hath some special suspicion of +Falstaff's being here; for I never saw him so gross +in his jealousy till now. + +MISTRESS PAGE: +I will lay a plot to try that; and we will yet have +more tricks with Falstaff: his dissolute disease will +scarce obey this medicine. + +MISTRESS FORD: +Shall we send that foolish carrion, Mistress +Quickly, to him, and excuse his throwing into the +water; and give him another hope, to betray him to +another punishment? + +MISTRESS PAGE: +We will do it: let him be sent for to-morrow, +eight o'clock, to have amends. + +FORD: +I cannot find him: may be the knave bragged of that +he could not compass. + +MISTRESS PAGE: + +MISTRESS FORD: +You use me well, Master Ford, do you? + +FORD: +Ay, I do so. + +MISTRESS FORD: +Heaven make you better than your thoughts! + +FORD: +Amen! + +MISTRESS PAGE: +You do yourself mighty wrong, Master Ford. + +FORD: +Ay, ay; I must bear it. + +SIR HUGH EVANS: +If there be any pody in the house, and in the +chambers, and in the coffers, and in the presses, +heaven forgive my sins at the day of judgment! + +DOCTOR CAIUS: +By gar, nor I too: there is no bodies. + +PAGE: +Fie, fie, Master Ford! are you not ashamed? What +spirit, what devil suggests this imagination? I +would not ha' your distemper in this kind for the +wealth of Windsor Castle. + +FORD: +'Tis my fault, Master Page: I suffer for it. + +SIR HUGH EVANS: +You suffer for a pad conscience: your wife is as +honest a 'omans as I will desires among five +thousand, and five hundred too. + +DOCTOR CAIUS: +By gar, I see 'tis an honest woman. + +FORD: +Well, I promised you a dinner. Come, come, walk in +the Park: I pray you, pardon me; I will hereafter +make known to you why I have done this. Come, +wife; come, Mistress Page. I pray you, pardon me; +pray heartily, pardon me. + +PAGE: +Let's go in, gentlemen; but, trust me, we'll mock +him. I do invite you to-morrow morning to my house +to breakfast: after, we'll a-birding together; I +have a fine hawk for the bush. Shall it be so? + +FORD: +Any thing. + +SIR HUGH EVANS: +If there is one, I shall make two in the company. + +DOCTOR CAIUS: +If dere be one or two, I shall make-a the turd. + +FORD: +Pray you, go, Master Page. + +SIR HUGH EVANS: +I pray you now, remembrance tomorrow on the lousy +knave, mine host. + +DOCTOR CAIUS: +Dat is good; by gar, with all my heart! + +SIR HUGH EVANS: +A lousy knave, to have his gibes and his mockeries! + +FENTON: +I see I cannot get thy father's love; +Therefore no more turn me to him, sweet Nan. + +ANNE PAGE: +Alas, how then? + +FENTON: +Why, thou must be thyself. +He doth object I am too great of birth--, +And that, my state being gall'd with my expense, +I seek to heal it only by his wealth: +Besides these, other bars he lays before me, +My riots past, my wild societies; +And tells me 'tis a thing impossible +I should love thee but as a property. + +ANNE PAGE: +May be he tells you true. + +FENTON: +No, heaven so speed me in my time to come! +Albeit I will confess thy father's wealth +Was the first motive that I woo'd thee, Anne: +Yet, wooing thee, I found thee of more value +Than stamps in gold or sums in sealed bags; +And 'tis the very riches of thyself +That now I aim at. + +ANNE PAGE: +Gentle Master Fenton, +Yet seek my father's love; still seek it, sir: +If opportunity and humblest suit +Cannot attain it, why, then,--hark you hither! + +SHALLOW: +Break their talk, Mistress Quickly: my kinsman shall +speak for himself. + +SLENDER: +I'll make a shaft or a bolt on't: 'slid, 'tis but +venturing. + +SHALLOW: +Be not dismayed. + +SLENDER: +No, she shall not dismay me: I care not for that, +but that I am afeard. + +MISTRESS QUICKLY: +Hark ye; Master Slender would speak a word with you. + +ANNE PAGE: +I come to him. +This is my father's choice. +O, what a world of vile ill-favor'd faults +Looks handsome in three hundred pounds a-year! + +MISTRESS QUICKLY: +And how does good Master Fenton? Pray you, a word with you. + +SHALLOW: +She's coming; to her, coz. O boy, thou hadst a father! + +SLENDER: +I had a father, Mistress Anne; my uncle can tell you +good jests of him. Pray you, uncle, tell Mistress +Anne the jest, how my father stole two geese out of +a pen, good uncle. + +SHALLOW: +Mistress Anne, my cousin loves you. + +SLENDER: +Ay, that I do; as well as I love any woman in +Gloucestershire. + +SHALLOW: +He will maintain you like a gentlewoman. + +SLENDER: +Ay, that I will, come cut and long-tail, under the +degree of a squire. + +SHALLOW: +He will make you a hundred and fifty pounds jointure. + +ANNE PAGE: +Good Master Shallow, let him woo for himself. + +SHALLOW: +Marry, I thank you for it; I thank you for that good +comfort. She calls you, coz: I'll leave you. + +ANNE PAGE: +Now, Master Slender,-- + +SLENDER: +Now, good Mistress Anne,-- + +ANNE PAGE: +What is your will? + +SLENDER: +My will! 'od's heartlings, that's a pretty jest +indeed! I ne'er made my will yet, I thank heaven; I +am not such a sickly creature, I give heaven praise. + +ANNE PAGE: +I mean, Master Slender, what would you with me? + +SLENDER: +Truly, for mine own part, I would little or nothing +with you. Your father and my uncle hath made +motions: if it be my luck, so; if not, happy man be +his dole! They can tell you how things go better +than I can: you may ask your father; here he comes. + +PAGE: +Now, Master Slender: love him, daughter Anne. +Why, how now! what does Master Fenton here? +You wrong me, sir, thus still to haunt my house: +I told you, sir, my daughter is disposed of. + +FENTON: +Nay, Master Page, be not impatient. + +MISTRESS PAGE: +Good Master Fenton, come not to my child. + +PAGE: +She is no match for you. + +FENTON: +Sir, will you hear me? + +PAGE: +No, good Master Fenton. +Come, Master Shallow; come, son Slender, in. +Knowing my mind, you wrong me, Master Fenton. + +MISTRESS QUICKLY: +Speak to Mistress Page. + +FENTON: +Good Mistress Page, for that I love your daughter +In such a righteous fashion as I do, +Perforce, against all cheques, rebukes and manners, +I must advance the colours of my love +And not retire: let me have your good will. + +ANNE PAGE: +Good mother, do not marry me to yond fool. + +MISTRESS PAGE: +I mean it not; I seek you a better husband. + +MISTRESS QUICKLY: +That's my master, master doctor. + +ANNE PAGE: +Alas, I had rather be set quick i' the earth +And bowl'd to death with turnips! + +MISTRESS PAGE: +Come, trouble not yourself. Good Master Fenton, +I will not be your friend nor enemy: +My daughter will I question how she loves you, +And as I find her, so am I affected. +Till then farewell, sir: she must needs go in; +Her father will be angry. + +FENTON: +Farewell, gentle mistress: farewell, Nan. + +MISTRESS QUICKLY: +This is my doing, now: 'Nay,' said I, 'will you cast +away your child on a fool, and a physician? Look on +Master Fenton:' this is my doing. + +FENTON: +I thank thee; and I pray thee, once to-night +Give my sweet Nan this ring: there's for thy pains. + +MISTRESS QUICKLY: +Now heaven send thee good fortune! +A kind heart he hath: a woman would run through +fire and water for such a kind heart. But yet I +would my master had Mistress Anne; or I would +Master Slender had her; or, in sooth, I would Master +Fenton had her; I will do what I can for them all +three; for so I have promised, and I'll be as good +as my word; but speciously for Master Fenton. Well, +I must of another errand to Sir John Falstaff from +my two mistresses: what a beast am I to slack it! + +FALSTAFF: +Bardolph, I say,-- + +BARDOLPH: +Here, sir. + +FALSTAFF: +Go fetch me a quart of sack; put a toast in't. +Have I lived to be carried in a basket, like a +barrow of butcher's offal, and to be thrown in the +Thames? Well, if I be served such another trick, +I'll have my brains ta'en out and buttered, and give +them to a dog for a new-year's gift. The rogues +slighted me into the river with as little remorse as +they would have drowned a blind bitch's puppies, +fifteen i' the litter: and you may know by my size +that I have a kind of alacrity in sinking; if the +bottom were as deep as hell, I should down. I had +been drowned, but that the shore was shelvy and +shallow,--a death that I abhor; for the water swells +a man; and what a thing should I have been when I +had been swelled! I should have been a mountain of mummy. + +BARDOLPH: +Here's Mistress Quickly, sir, to speak with you. + +FALSTAFF: +Let me pour in some sack to the Thames water; for my +belly's as cold as if I had swallowed snowballs for +pills to cool the reins. Call her in. + +BARDOLPH: +Come in, woman! + +MISTRESS QUICKLY: +By your leave; I cry you mercy: give your worship +good morrow. + +FALSTAFF: +Take away these chalices. Go brew me a pottle of +sack finely. + +BARDOLPH: +With eggs, sir? + +FALSTAFF: +Simple of itself; I'll no pullet-sperm in my brewage. +How now! + +MISTRESS QUICKLY: +Marry, sir, I come to your worship from Mistress Ford. + +FALSTAFF: +Mistress Ford! I have had ford enough; I was thrown +into the ford; I have my belly full of ford. + +MISTRESS QUICKLY: +Alas the day! good heart, that was not her fault: +she does so take on with her men; they mistook their erection. + +FALSTAFF: +So did I mine, to build upon a foolish woman's promise. + +MISTRESS QUICKLY: +Well, she laments, sir, for it, that it would yearn +your heart to see it. Her husband goes this morning +a-birding; she desires you once more to come to her +between eight and nine: I must carry her word +quickly: she'll make you amends, I warrant you. + +FALSTAFF: +Well, I will visit her: tell her so; and bid her +think what a man is: let her consider his frailty, +and then judge of my merit. + +MISTRESS QUICKLY: +I will tell her. + +FALSTAFF: +Do so. Between nine and ten, sayest thou? + +MISTRESS QUICKLY: +Eight and nine, sir. + +FALSTAFF: +Well, be gone: I will not miss her. + +MISTRESS QUICKLY: +Peace be with you, sir. + +FALSTAFF: +I marvel I hear not of Master Brook; he sent me word +to stay within: I like his money well. O, here he comes. + +FORD: +Bless you, sir! + +FALSTAFF: +Now, master Brook, you come to know what hath passed +between me and Ford's wife? + +FORD: +That, indeed, Sir John, is my business. + +FALSTAFF: +Master Brook, I will not lie to you: I was at her +house the hour she appointed me. + +FORD: +And sped you, sir? + +FALSTAFF: +Very ill-favoredly, Master Brook. + +FORD: +How so, sir? Did she change her determination? + +FALSTAFF: +No, Master Brook; but the peaking Cornuto her +husband, Master Brook, dwelling in a continual +'larum of jealousy, comes me in the instant of our +encounter, after we had embraced, kissed, protested, +and, as it were, spoke the prologue of our comedy; +and at his heels a rabble of his companions, thither +provoked and instigated by his distemper, and, +forsooth, to search his house for his wife's love. + +FORD: +What, while you were there? + +FALSTAFF: +While I was there. + +FORD: +And did he search for you, and could not find you? + +FALSTAFF: +You shall hear. As good luck would have it, comes +in one Mistress Page; gives intelligence of Ford's +approach; and, in her invention and Ford's wife's +distraction, they conveyed me into a buck-basket. + +FORD: +A buck-basket! + +FALSTAFF: +By the Lord, a buck-basket! rammed me in with foul +shirts and smocks, socks, foul stockings, greasy +napkins; that, Master Brook, there was the rankest +compound of villanous smell that ever offended nostril. + +FORD: +And how long lay you there? + +FALSTAFF: +Nay, you shall hear, Master Brook, what I have +suffered to bring this woman to evil for your good. +Being thus crammed in the basket, a couple of Ford's +knaves, his hinds, were called forth by their +mistress to carry me in the name of foul clothes to +Datchet-lane: they took me on their shoulders; met +the jealous knave their master in the door, who +asked them once or twice what they had in their +basket: I quaked for fear, lest the lunatic knave +would have searched it; but fate, ordaining he +should be a cuckold, held his hand. Well: on went he +for a search, and away went I for foul clothes. But +mark the sequel, Master Brook: I suffered the pangs +of three several deaths; first, an intolerable +fright, to be detected with a jealous rotten +bell-wether; next, to be compassed, like a good +bilbo, in the circumference of a peck, hilt to +point, heel to head; and then, to be stopped in, +like a strong distillation, with stinking clothes +that fretted in their own grease: think of that,--a +man of my kidney,--think of that,--that am as subject +to heat as butter; a man of continual dissolution +and thaw: it was a miracle to scape suffocation. +And in the height of this bath, when I was more than +half stewed in grease, like a Dutch dish, to be +thrown into the Thames, and cooled, glowing hot, +in that surge, like a horse-shoe; think of +that,--hissing hot,--think of that, Master Brook. + +FORD: +In good sadness, I am sorry that for my sake you +have sufferd all this. My suit then is desperate; +you'll undertake her no more? + +FALSTAFF: +Master Brook, I will be thrown into Etna, as I have +been into Thames, ere I will leave her thus. Her +husband is this morning gone a-birding: I have +received from her another embassy of meeting; 'twixt +eight and nine is the hour, Master Brook. + +FORD: +'Tis past eight already, sir. + +FALSTAFF: +Is it? I will then address me to my appointment. +Come to me at your convenient leisure, and you shall +know how I speed; and the conclusion shall be +crowned with your enjoying her. Adieu. You shall +have her, Master Brook; Master Brook, you shall +cuckold Ford. + +FORD: +Hum! ha! is this a vision? is this a dream? do I +sleep? Master Ford awake! awake, Master Ford! +there's a hole made in your best coat, Master Ford. +This 'tis to be married! this 'tis to have linen +and buck-baskets! Well, I will proclaim myself +what I am: I will now take the lecher; he is at my +house; he cannot 'scape me; 'tis impossible he +should; he cannot creep into a halfpenny purse, +nor into a pepper-box: but, lest the devil that +guides him should aid him, I will search +impossible places. Though what I am I cannot avoid, +yet to be what I would not shall not make me tame: +if I have horns to make one mad, let the proverb go +with me: I'll be horn-mad. + +MISTRESS PAGE: +Is he at Master Ford's already, think'st thou? + +MISTRESS QUICKLY: +Sure he is by this, or will be presently: but, +truly, he is very courageous mad about his throwing +into the water. Mistress Ford desires you to come suddenly. + +MISTRESS PAGE: +I'll be with her by and by; I'll but bring my young +man here to school. Look, where his master comes; +'tis a playing-day, I see. +How now, Sir Hugh! no school to-day? + +SIR HUGH EVANS: +No; Master Slender is let the boys leave to play. + +MISTRESS QUICKLY: +Blessing of his heart! + +MISTRESS PAGE: +Sir Hugh, my husband says my son profits nothing in +the world at his book. I pray you, ask him some +questions in his accidence. + +SIR HUGH EVANS: +Come hither, William; hold up your head; come. + +MISTRESS PAGE: +Come on, sirrah; hold up your head; answer your +master, be not afraid. + +SIR HUGH EVANS: +William, how many numbers is in nouns? + +WILLIAM PAGE: +Two. + +MISTRESS QUICKLY: +Truly, I thought there had been one number more, +because they say, ''Od's nouns.' + +SIR HUGH EVANS: +Peace your tattlings! What is 'fair,' William? + +WILLIAM PAGE: +Pulcher. + +MISTRESS QUICKLY: +Polecats! there are fairer things than polecats, sure. + +SIR HUGH EVANS: +You are a very simplicity 'oman: I pray you peace. +What is 'lapis,' William? + +WILLIAM PAGE: +A stone. + +SIR HUGH EVANS: +And what is 'a stone,' William? + +WILLIAM PAGE: +A pebble. + +SIR HUGH EVANS: +No, it is 'lapis:' I pray you, remember in your prain. + +WILLIAM PAGE: +Lapis. + +SIR HUGH EVANS: +That is a good William. What is he, William, that +does lend articles? + +WILLIAM PAGE: +Articles are borrowed of the pronoun, and be thus +declined, Singulariter, nominativo, hic, haec, hoc. + +SIR HUGH EVANS: +Nominativo, hig, hag, hog; pray you, mark: +genitivo, hujus. Well, what is your accusative case? + +WILLIAM PAGE: +Accusativo, hinc. + +SIR HUGH EVANS: +I pray you, have your remembrance, child, +accusative, hung, hang, hog. + +MISTRESS QUICKLY: +'Hang-hog' is Latin for bacon, I warrant you. + +SIR HUGH EVANS: +Leave your prabbles, 'oman. What is the focative +case, William? + +WILLIAM PAGE: +O,--vocativo, O. + +SIR HUGH EVANS: +Remember, William; focative is caret. + +MISTRESS QUICKLY: +And that's a good root. + +SIR HUGH EVANS: +'Oman, forbear. + +MISTRESS PAGE: +Peace! + +SIR HUGH EVANS: +What is your genitive case plural, William? + +WILLIAM PAGE: +Genitive case! + +SIR HUGH EVANS: +Ay. + +WILLIAM PAGE: +Genitive,--horum, harum, horum. + +MISTRESS QUICKLY: +Vengeance of Jenny's case! fie on her! never name +her, child, if she be a whore. + +SIR HUGH EVANS: +For shame, 'oman. + +MISTRESS QUICKLY: +You do ill to teach the child such words: he +teaches him to hick and to hack, which they'll do +fast enough of themselves, and to call 'horum:' fie upon you! + +SIR HUGH EVANS: +'Oman, art thou lunatics? hast thou no +understandings for thy cases and the numbers of the +genders? Thou art as foolish Christian creatures as +I would desires. + +MISTRESS PAGE: +Prithee, hold thy peace. + +SIR HUGH EVANS: +Show me now, William, some declensions of your pronouns. + +WILLIAM PAGE: +Forsooth, I have forgot. + +SIR HUGH EVANS: +It is qui, quae, quod: if you forget your 'quies,' +your 'quaes,' and your 'quods,' you must be +preeches. Go your ways, and play; go. + +MISTRESS PAGE: +He is a better scholar than I thought he was. + +SIR HUGH EVANS: +He is a good sprag memory. Farewell, Mistress Page. + +MISTRESS PAGE: +Adieu, good Sir Hugh. +Get you home, boy. Come, we stay too long. + +FALSTAFF: +Mistress Ford, your sorrow hath eaten up my +sufferance. I see you are obsequious in your love, +and I profess requital to a hair's breadth; not +only, Mistress Ford, in the simple +office of love, but in all the accoutrement, +complement and ceremony of it. But are you +sure of your husband now? + +MISTRESS FORD: +He's a-birding, sweet Sir John. + +MISTRESS PAGE: + +MISTRESS FORD: +Step into the chamber, Sir John. + +MISTRESS PAGE: +How now, sweetheart! who's at home besides yourself? + +MISTRESS FORD: +Why, none but mine own people. + +MISTRESS PAGE: +Indeed! + +MISTRESS FORD: +No, certainly. +Speak louder. + +MISTRESS PAGE: +Truly, I am so glad you have nobody here. + +MISTRESS FORD: +Why? + +MISTRESS PAGE: +Why, woman, your husband is in his old lunes again: +he so takes on yonder with my husband; so rails +against all married mankind; so curses all Eve's +daughters, of what complexion soever; and so buffets +himself on the forehead, crying, 'Peer out, peer +out!' that any madness I ever yet beheld seemed but +tameness, civility and patience, to this his +distemper he is in now: I am glad the fat knight is not here. + +MISTRESS FORD: +Why, does he talk of him? + +MISTRESS PAGE: +Of none but him; and swears he was carried out, the +last time he searched for him, in a basket; protests +to my husband he is now here, and hath drawn him and +the rest of their company from their sport, to make +another experiment of his suspicion: but I am glad +the knight is not here; now he shall see his own foolery. + +MISTRESS FORD: +How near is he, Mistress Page? + +MISTRESS PAGE: +Hard by; at street end; he will be here anon. + +MISTRESS FORD: +I am undone! The knight is here. + +MISTRESS PAGE: +Why then you are utterly shamed, and he's but a dead +man. What a woman are you!--Away with him, away +with him! better shame than murder. + +FORD: +Which way should be go? how should I bestow him? +Shall I put him into the basket again? + +FALSTAFF: +No, I'll come no more i' the basket. May I not go +out ere he come? + +MISTRESS PAGE: +Alas, three of Master Ford's brothers watch the door +with pistols, that none shall issue out; otherwise +you might slip away ere he came. But what make you here? + +FALSTAFF: +What shall I do? I'll creep up into the chimney. + +MISTRESS FORD: +There they always use to discharge their +birding-pieces. Creep into the kiln-hole. + +FALSTAFF: +Where is it? + +MISTRESS FORD: +He will seek there, on my word. Neither press, +coffer, chest, trunk, well, vault, but he hath an +abstract for the remembrance of such places, and +goes to them by his note: there is no hiding you in the house. + +FALSTAFF: +I'll go out then. + +MISTRESS PAGE: +If you go out in your own semblance, you die, Sir +John. Unless you go out disguised-- + +MISTRESS FORD: +How might we disguise him? + +MISTRESS PAGE: +Alas the day, I know not! There is no woman's gown +big enough for him otherwise he might put on a hat, +a muffler and a kerchief, and so escape. + +FALSTAFF: +Good hearts, devise something: any extremity rather +than a mischief. + +MISTRESS FORD: +My maid's aunt, the fat woman of Brentford, has a +gown above. + +MISTRESS PAGE: +On my word, it will serve him; she's as big as he +is: and there's her thrummed hat and her muffler +too. Run up, Sir John. + +MISTRESS FORD: +Go, go, sweet Sir John: Mistress Page and I will +look some linen for your head. + +MISTRESS PAGE: +Quick, quick! we'll come dress you straight: put +on the gown the while. + +MISTRESS FORD: +I would my husband would meet him in this shape: he +cannot abide the old woman of Brentford; he swears +she's a witch; forbade her my house and hath +threatened to beat her. + +MISTRESS PAGE: +Heaven guide him to thy husband's cudgel, and the +devil guide his cudgel afterwards! + +MISTRESS FORD: +But is my husband coming? + +MISTRESS PAGE: +Ah, in good sadness, is he; and talks of the basket +too, howsoever he hath had intelligence. + +MISTRESS FORD: +We'll try that; for I'll appoint my men to carry the +basket again, to meet him at the door with it, as +they did last time. + +MISTRESS PAGE: +Nay, but he'll be here presently: let's go dress him +like the witch of Brentford. + +MISTRESS FORD: +I'll first direct my men what they shall do with the +basket. Go up; I'll bring linen for him straight. + +MISTRESS PAGE: +Hang him, dishonest varlet! we cannot misuse him enough. +We'll leave a proof, by that which we will do, +Wives may be merry, and yet honest too: +We do not act that often jest and laugh; +'Tis old, but true, Still swine eat all the draff. + +MISTRESS FORD: +Go, sirs, take the basket again on your shoulders: +your master is hard at door; if he bid you set it +down, obey him: quickly, dispatch. + +First Servant: +Come, come, take it up. + +Second Servant: +Pray heaven it be not full of knight again. + +First Servant: +I hope not; I had as lief bear so much lead. + +FORD: +Ay, but if it prove true, Master Page, have you any +way then to unfool me again? Set down the basket, +villain! Somebody call my wife. Youth in a basket! +O you panderly rascals! there's a knot, a ging, a +pack, a conspiracy against me: now shall the devil +be shamed. What, wife, I say! Come, come forth! +Behold what honest clothes you send forth to bleaching! + +PAGE: +Why, this passes, Master Ford; you are not to go +loose any longer; you must be pinioned. + +SIR HUGH EVANS: +Why, this is lunatics! this is mad as a mad dog! + +SHALLOW: +Indeed, Master Ford, this is not well, indeed. + +FORD: +So say I too, sir. +Come hither, Mistress Ford; Mistress Ford the honest +woman, the modest wife, the virtuous creature, that +hath the jealous fool to her husband! I suspect +without cause, mistress, do I? + +MISTRESS FORD: +Heaven be my witness you do, if you suspect me in +any dishonesty. + +FORD: +Well said, brazen-face! hold it out. Come forth, sirrah! + +PAGE: +This passes! + +MISTRESS FORD: +Are you not ashamed? let the clothes alone. + +FORD: +I shall find you anon. + +SIR HUGH EVANS: +'Tis unreasonable! Will you take up your wife's +clothes? Come away. + +FORD: +Empty the basket, I say! + +MISTRESS FORD: +Why, man, why? + +FORD: +Master Page, as I am a man, there was one conveyed +out of my house yesterday in this basket: why may +not he be there again? In my house I am sure he is: +my intelligence is true; my jealousy is reasonable. +Pluck me out all the linen. + +MISTRESS FORD: +If you find a man there, he shall die a flea's death. + +PAGE: +Here's no man. + +SHALLOW: +By my fidelity, this is not well, Master Ford; this +wrongs you. + +SIR HUGH EVANS: +Master Ford, you must pray, and not follow the +imaginations of your own heart: this is jealousies. + +FORD: +Well, he's not here I seek for. + +PAGE: +No, nor nowhere else but in your brain. + +FORD: +Help to search my house this one time. If I find +not what I seek, show no colour for my extremity; let +me for ever be your table-sport; let them say of +me, 'As jealous as Ford, Chat searched a hollow +walnut for his wife's leman.' Satisfy me once more; +once more search with me. + +MISTRESS FORD: +What, ho, Mistress Page! come you and the old woman +down; my husband will come into the chamber. + +FORD: +Old woman! what old woman's that? + +MISTRESS FORD: +Nay, it is my maid's aunt of Brentford. + +FORD: +A witch, a quean, an old cozening quean! Have I not +forbid her my house? She comes of errands, does +she? We are simple men; we do not know what's +brought to pass under the profession of +fortune-telling. She works by charms, by spells, +by the figure, and such daubery as this is, beyond +our element we know nothing. Come down, you witch, +you hag, you; come down, I say! + +MISTRESS FORD: +Nay, good, sweet husband! Good gentlemen, let him +not strike the old woman. + +MISTRESS PAGE: +Come, Mother Prat; come, give me your hand. + +FORD: +I'll prat her. +Out of my door, you witch, you hag, you baggage, you +polecat, you runyon! out, out! I'll conjure you, +I'll fortune-tell you. + +MISTRESS PAGE: +Are you not ashamed? I think you have killed the +poor woman. + +MISTRESS FORD: +Nay, he will do it. 'Tis a goodly credit for you. + +FORD: +Hang her, witch! + +SIR HUGH EVANS: +By the yea and no, I think the 'oman is a witch +indeed: I like not when a 'oman has a great peard; +I spy a great peard under his muffler. + +FORD: +Will you follow, gentlemen? I beseech you, follow; +see but the issue of my jealousy: if I cry out thus +upon no trail, never trust me when I open again. + +PAGE: +Let's obey his humour a little further: come, +gentlemen. + +MISTRESS PAGE: +Trust me, he beat him most pitifully. + +MISTRESS FORD: +Nay, by the mass, that he did not; he beat him most +unpitifully, methought. + +MISTRESS PAGE: +I'll have the cudgel hallowed and hung o'er the +altar; it hath done meritorious service. + +MISTRESS FORD: +What think you? may we, with the warrant of +womanhood and the witness of a good conscience, +pursue him with any further revenge? + +MISTRESS PAGE: +The spirit of wantonness is, sure, scared out of +him: if the devil have him not in fee-simple, with +fine and recovery, he will never, I think, in the +way of waste, attempt us again. + +MISTRESS FORD: +Shall we tell our husbands how we have served him? + +MISTRESS PAGE: +Yes, by all means; if it be but to scrape the +figures out of your husband's brains. If they can +find in their hearts the poor unvirtuous fat knight +shall be any further afflicted, we two will still be +the ministers. + +MISTRESS FORD: +I'll warrant they'll have him publicly shamed: and +methinks there would be no period to the jest, +should he not be publicly shamed. + +MISTRESS PAGE: +Come, to the forge with it then; shape it: I would +not have things cool. + +BARDOLPH: +Sir, the Germans desire to have three of your +horses: the duke himself will be to-morrow at +court, and they are going to meet him. + +Host: +What duke should that be comes so secretly? I hear +not of him in the court. Let me speak with the +gentlemen: they speak English? + +BARDOLPH: +Ay, sir; I'll call them to you. + +Host: +They shall have my horses; but I'll make them pay; +I'll sauce them: they have had my house a week at +command; I have turned away my other guests: they +must come off; I'll sauce them. Come. + +SIR HUGH EVANS: +'Tis one of the best discretions of a 'oman as ever +I did look upon. + +PAGE: +And did he send you both these letters at an instant? + +MISTRESS PAGE: +Within a quarter of an hour. + +FORD: +Pardon me, wife. Henceforth do what thou wilt; +I rather will suspect the sun with cold +Than thee with wantonness: now doth thy honour stand +In him that was of late an heretic, +As firm as faith. + +PAGE: +'Tis well, 'tis well; no more: +Be not as extreme in submission +As in offence. +But let our plot go forward: let our wives +Yet once again, to make us public sport, +Appoint a meeting with this old fat fellow, +Where we may take him and disgrace him for it. + +FORD: +There is no better way than that they spoke of. + +PAGE: +How? to send him word they'll meet him in the park +at midnight? Fie, fie! he'll never come. + +SIR HUGH EVANS: +You say he has been thrown in the rivers and has +been grievously peaten as an old 'oman: methinks +there should be terrors in him that he should not +come; methinks his flesh is punished, he shall have +no desires. + +PAGE: +So think I too. + +MISTRESS FORD: +Devise but how you'll use him when he comes, +And let us two devise to bring him thither. + +MISTRESS PAGE: +There is an old tale goes that Herne the hunter, +Sometime a keeper here in Windsor forest, +Doth all the winter-time, at still midnight, +Walk round about an oak, with great ragg'd horns; +And there he blasts the tree and takes the cattle +And makes milch-kine yield blood and shakes a chain +In a most hideous and dreadful manner: +You have heard of such a spirit, and well you know +The superstitious idle-headed eld +Received and did deliver to our age +This tale of Herne the hunter for a truth. + +PAGE: +Why, yet there want not many that do fear +In deep of night to walk by this Herne's oak: +But what of this? + +MISTRESS FORD: +Marry, this is our device; +That Falstaff at that oak shall meet with us. + +PAGE: +Well, let it not be doubted but he'll come: +And in this shape when you have brought him thither, +What shall be done with him? what is your plot? + +MISTRESS PAGE: +That likewise have we thought upon, and thus: +Nan Page my daughter and my little son +And three or four more of their growth we'll dress +Like urchins, ouphes and fairies, green and white, +With rounds of waxen tapers on their heads, +And rattles in their hands: upon a sudden, +As Falstaff, she and I, are newly met, +Let them from forth a sawpit rush at once +With some diffused song: upon their sight, +We two in great amazedness will fly: +Then let them all encircle him about +And, fairy-like, to-pinch the unclean knight, +And ask him why, that hour of fairy revel, +In their so sacred paths he dares to tread +In shape profane. + +MISTRESS FORD: +And till he tell the truth, +Let the supposed fairies pinch him sound +And burn him with their tapers. + +MISTRESS PAGE: +The truth being known, +We'll all present ourselves, dis-horn the spirit, +And mock him home to Windsor. + +FORD: +The children must +Be practised well to this, or they'll ne'er do't. + +SIR HUGH EVANS: +I will teach the children their behaviors; and I +will be like a jack-an-apes also, to burn the +knight with my taber. + +FORD: +That will be excellent. I'll go and buy them vizards. + +MISTRESS PAGE: +My Nan shall be the queen of all the fairies, +Finely attired in a robe of white. + +PAGE: +That silk will I go buy. +And in that time +Shall Master Slender steal my Nan away +And marry her at Eton. Go send to Falstaff straight. + +FORD: +Nay I'll to him again in name of Brook +He'll tell me all his purpose: sure, he'll come. + +MISTRESS PAGE: +Fear not you that. Go get us properties +And tricking for our fairies. + +SIR HUGH EVANS: +Let us about it: it is admirable pleasures and fery +honest knaveries. + +MISTRESS PAGE: +Go, Mistress Ford, +Send quickly to Sir John, to know his mind. +I'll to the doctor: he hath my good will, +And none but he, to marry with Nan Page. +That Slender, though well landed, is an idiot; +And he my husband best of all affects. +The doctor is well money'd, and his friends +Potent at court: he, none but he, shall have her, +Though twenty thousand worthier come to crave her. + +Host: +What wouldst thou have, boor? what: thick-skin? +speak, breathe, discuss; brief, short, quick, snap. + +SIMPLE: +Marry, sir, I come to speak with Sir John Falstaff +from Master Slender. + +Host: +There's his chamber, his house, his castle, his +standing-bed and truckle-bed; 'tis painted about +with the story of the Prodigal, fresh and new. Go +knock and call; hell speak like an Anthropophaginian +unto thee: knock, I say. + +SIMPLE: +There's an old woman, a fat woman, gone up into his +chamber: I'll be so bold as stay, sir, till she come +down; I come to speak with her, indeed. + +Host: +Ha! a fat woman! the knight may be robbed: I'll +call. Bully knight! bully Sir John! speak from +thy lungs military: art thou there? it is thine +host, thine Ephesian, calls. + +FALSTAFF: + +Host: +Here's a Bohemian-Tartar tarries the coming down of +thy fat woman. Let her descend, bully, let her +descend; my chambers are honourable: fie! privacy? +fie! + +FALSTAFF: +There was, mine host, an old fat woman even now with +me; but she's gone. + +SIMPLE: +Pray you, sir, was't not the wise woman of +Brentford? + +FALSTAFF: +Ay, marry, was it, mussel-shell: what would you with her? + +SIMPLE: +My master, sir, Master Slender, sent to her, seeing +her go through the streets, to know, sir, whether +one Nym, sir, that beguiled him of a chain, had the +chain or no. + +FALSTAFF: +I spake with the old woman about it. + +SIMPLE: +And what says she, I pray, sir? + +FALSTAFF: +Marry, she says that the very same man that +beguiled Master Slender of his chain cozened him of +it. + +SIMPLE: +I would I could have spoken with the woman herself; +I had other things to have spoken with her too from +him. + +FALSTAFF: +What are they? let us know. + +Host: +Ay, come; quick. + +SIMPLE: +I may not conceal them, sir. + +Host: +Conceal them, or thou diest. + +SIMPLE: +Why, sir, they were nothing but about Mistress Anne +Page; to know if it were my master's fortune to +have her or no. + +FALSTAFF: +'Tis, 'tis his fortune. + +SIMPLE: +What, sir? + +FALSTAFF: +To have her, or no. Go; say the woman told me so. + +SIMPLE: +May I be bold to say so, sir? + +FALSTAFF: +Ay, sir; like who more bold. + +SIMPLE: +I thank your worship: I shall make my master glad +with these tidings. + +Host: +Thou art clerkly, thou art clerkly, Sir John. Was +there a wise woman with thee? + +FALSTAFF: +Ay, that there was, mine host; one that hath taught +me more wit than ever I learned before in my life; +and I paid nothing for it neither, but was paid for +my learning. + +BARDOLPH: +Out, alas, sir! cozenage, mere cozenage! + +Host: +Where be my horses? speak well of them, varletto. + +BARDOLPH: +Run away with the cozeners; for so soon as I came +beyond Eton, they threw me off from behind one of +them, in a slough of mire; and set spurs and away, +like three German devils, three Doctor Faustuses. + +Host: +They are gone but to meet the duke, villain: do not +say they be fled; Germans are honest men. + +SIR HUGH EVANS: +Where is mine host? + +Host: +What is the matter, sir? + +SIR HUGH EVANS: +Have a care of your entertainments: there is a +friend of mine come to town tells me there is three +cozen-germans that has cozened all the hosts of +Readins, of Maidenhead, of Colebrook, of horses and +money. I tell you for good will, look you: you +are wise and full of gibes and vlouting-stocks, and +'tis not convenient you should be cozened. Fare you well. + +DOCTOR CAIUS: +Vere is mine host de Jarteer? + +Host: +Here, master doctor, in perplexity and doubtful dilemma. + +DOCTOR CAIUS: +I cannot tell vat is dat: but it is tell-a me dat +you make grand preparation for a duke de Jamany: by +my trot, dere is no duke dat the court is know to +come. I tell you for good vill: adieu. + +Host: +Hue and cry, villain, go! Assist me, knight. I am +undone! Fly, run, hue and cry, villain! I am undone! + +FALSTAFF: +I would all the world might be cozened; for I have +been cozened and beaten too. If it should come to +the ear of the court, how I have been transformed +and how my transformation hath been washed and +cudgelled, they would melt me out of my fat drop by +drop and liquor fishermen's boots with me; I warrant +they would whip me with their fine wits till I were +as crest-fallen as a dried pear. I never prospered +since I forswore myself at primero. Well, if my +wind were but long enough to say my prayers, I would repent. +Now, whence come you? + +MISTRESS QUICKLY: +From the two parties, forsooth. + +FALSTAFF: +The devil take one party and his dam the other! and +so they shall be both bestowed. I have suffered more +for their sakes, more than the villanous inconstancy +of man's disposition is able to bear. + +MISTRESS QUICKLY: +And have not they suffered? Yes, I warrant; +speciously one of them; Mistress Ford, good heart, +is beaten black and blue, that you cannot see a +white spot about her. + +FALSTAFF: +What tellest thou me of black and blue? I was +beaten myself into all the colours of the rainbow; +and I was like to be apprehended for the witch of +Brentford: but that my admirable dexterity of wit, +my counterfeiting the action of an old woman, +delivered me, the knave constable had set me i' the +stocks, i' the common stocks, for a witch. + +MISTRESS QUICKLY: +Sir, let me speak with you in your chamber: you +shall hear how things go; and, I warrant, to your +content. Here is a letter will say somewhat. Good +hearts, what ado here is to bring you together! +Sure, one of you does not serve heaven well, that +you are so crossed. + +FALSTAFF: +Come up into my chamber. + +Host: +Master Fenton, talk not to me; my mind is heavy: I +will give over all. + +FENTON: +Yet hear me speak. Assist me in my purpose, +And, as I am a gentleman, I'll give thee +A hundred pound in gold more than your loss. + +Host: +I will hear you, Master Fenton; and I will at the +least keep your counsel. + +FENTON: +From time to time I have acquainted you +With the dear love I bear to fair Anne Page; +Who mutually hath answer'd my affection, +So far forth as herself might be her chooser, +Even to my wish: I have a letter from her +Of such contents as you will wonder at; +The mirth whereof so larded with my matter, +That neither singly can be manifested, +Without the show of both; fat Falstaff +Hath a great scene: the image of the jest +I'll show you here at large. Hark, good mine host. +To-night at Herne's oak, just 'twixt twelve and one, +Must my sweet Nan present the Fairy Queen; +The purpose why, is here: in which disguise, +While other jests are something rank on foot, +Her father hath commanded her to slip +Away with Slender and with him at Eton +Immediately to marry: she hath consented: Now, sir, +Her mother, ever strong against that match +And firm for Doctor Caius, hath appointed +That he shall likewise shuffle her away, +While other sports are tasking of their minds, +And at the deanery, where a priest attends, +Straight marry her: to this her mother's plot +She seemingly obedient likewise hath +Made promise to the doctor. Now, thus it rests: +Her father means she shall be all in white, +And in that habit, when Slender sees his time +To take her by the hand and bid her go, +She shall go with him: her mother hath intended, +The better to denote her to the doctor, +For they must all be mask'd and vizarded, +That quaint in green she shall be loose enrobed, +With ribands pendent, flaring 'bout her head; +And when the doctor spies his vantage ripe, +To pinch her by the hand, and, on that token, +The maid hath given consent to go with him. + +Host: +Which means she to deceive, father or mother? + +FENTON: +Both, my good host, to go along with me: +And here it rests, that you'll procure the vicar +To stay for me at church 'twixt twelve and one, +And, in the lawful name of marrying, +To give our hearts united ceremony. + +Host: +Well, husband your device; I'll to the vicar: +Bring you the maid, you shall not lack a priest. + +FENTON: +So shall I evermore be bound to thee; +Besides, I'll make a present recompense. + +FALSTAFF: +Prithee, no more prattling; go. I'll hold. This is +the third time; I hope good luck lies in odd +numbers. Away I go. They say there is divinity in +odd numbers, either in nativity, chance, or death. Away! + +MISTRESS QUICKLY: +I'll provide you a chain; and I'll do what I can to +get you a pair of horns. + +FALSTAFF: +Away, I say; time wears: hold up your head, and mince. +How now, Master Brook! Master Brook, the matter +will be known to-night, or never. Be you in the +Park about midnight, at Herne's oak, and you shall +see wonders. + +FORD: +Went you not to her yesterday, sir, as you told me +you had appointed? + +FALSTAFF: +I went to her, Master Brook, as you see, like a poor +old man: but I came from her, Master Brook, like a +poor old woman. That same knave Ford, her husband, +hath the finest mad devil of jealousy in him, +Master Brook, that ever governed frenzy. I will tell +you: he beat me grievously, in the shape of a +woman; for in the shape of man, Master Brook, I fear +not Goliath with a weaver's beam; because I know +also life is a shuttle. I am in haste; go along +with me: I'll tell you all, Master Brook. Since I +plucked geese, played truant and whipped top, I knew +not what 'twas to be beaten till lately. Follow +me: I'll tell you strange things of this knave +Ford, on whom to-night I will be revenged, and I +will deliver his wife into your hand. Follow. +Strange things in hand, Master Brook! Follow. + +PAGE: +Come, come; we'll couch i' the castle-ditch till we +see the light of our fairies. Remember, son Slender, +my daughter. + +SLENDER: +Ay, forsooth; I have spoke with her and we have a +nay-word how to know one another: I come to her in +white, and cry 'mum;' she cries 'budget;' and by +that we know one another. + +SHALLOW: +That's good too: but what needs either your 'mum' +or her 'budget?' the white will decipher her well +enough. It hath struck ten o'clock. + +PAGE: +The night is dark; light and spirits will become it +well. Heaven prosper our sport! No man means evil +but the devil, and we shall know him by his horns. +Let's away; follow me. + +MISTRESS PAGE: +Master doctor, my daughter is in green: when you +see your time, take her by the band, away with her +to the deanery, and dispatch it quickly. Go before +into the Park: we two must go together. + +DOCTOR CAIUS: +I know vat I have to do. Adieu. + +MISTRESS PAGE: +Fare you well, sir. +My husband will not rejoice so much at the abuse of +Falstaff as he will chafe at the doctor's marrying +my daughter: but 'tis no matter; better a little +chiding than a great deal of heart-break. + +MISTRESS FORD: +Where is Nan now and her troop of fairies, and the +Welsh devil Hugh? + +MISTRESS PAGE: +They are all couched in a pit hard by Herne's oak, +with obscured lights; which, at the very instant of +Falstaff's and our meeting, they will at once +display to the night. + +MISTRESS FORD: +That cannot choose but amaze him. + +MISTRESS PAGE: +If he be not amazed, he will be mocked; if he be +amazed, he will every way be mocked. + +MISTRESS FORD: +We'll betray him finely. + +MISTRESS PAGE: +Against such lewdsters and their lechery +Those that betray them do no treachery. + +MISTRESS FORD: +The hour draws on. To the oak, to the oak! + +SIR HUGH EVANS: +Trib, trib, fairies; come; and remember your parts: +be pold, I pray you; follow me into the pit; and +when I give the watch-'ords, do as I pid you: +come, come; trib, trib. + +FALSTAFF: +The Windsor bell hath struck twelve; the minute +draws on. Now, the hot-blooded gods assist me! +Remember, Jove, thou wast a bull for thy Europa; love +set on thy horns. O powerful love! that, in some +respects, makes a beast a man, in some other, a man +a beast. You were also, Jupiter, a swan for the love +of Leda. O omnipotent Love! how near the god drew +to the complexion of a goose! A fault done first in +the form of a beast. O Jove, a beastly fault! And +then another fault in the semblance of a fowl; think +on 't, Jove; a foul fault! When gods have hot +backs, what shall poor men do? For me, I am here a +Windsor stag; and the fattest, I think, i' the +forest. Send me a cool rut-time, Jove, or who can +blame me to piss my tallow? Who comes here? my +doe? + +MISTRESS FORD: +Sir John! art thou there, my deer? my male deer? + +FALSTAFF: +My doe with the black scut! Let the sky rain +potatoes; let it thunder to the tune of Green +Sleeves, hail kissing-comfits and snow eringoes; let +there come a tempest of provocation, I will shelter me here. + +MISTRESS FORD: +Mistress Page is come with me, sweetheart. + +FALSTAFF: +Divide me like a bribe buck, each a haunch: I will +keep my sides to myself, my shoulders for the fellow +of this walk, and my horns I bequeath your husbands. +Am I a woodman, ha? Speak I like Herne the hunter? +Why, now is Cupid a child of conscience; he makes +restitution. As I am a true spirit, welcome! + +MISTRESS PAGE: +Alas, what noise? + +MISTRESS FORD: +Heaven forgive our sins + +FALSTAFF: +What should this be? + +MISTRESS FORD: +Away, away! + +FALSTAFF: +I think the devil will not have me damned, lest the +oil that's in me should set hell on fire; he would +never else cross me thus. + +MISTRESS QUICKLY: +Fairies, black, grey, green, and white, +You moonshine revellers and shades of night, +You orphan heirs of fixed destiny, +Attend your office and your quality. +Crier Hobgoblin, make the fairy oyes. + +PISTOL: +Elves, list your names; silence, you airy toys. +Cricket, to Windsor chimneys shalt thou leap: +Where fires thou find'st unraked and hearths unswept, +There pinch the maids as blue as bilberry: +Our radiant queen hates sluts and sluttery. + +FALSTAFF: +They are fairies; he that speaks to them shall die: +I'll wink and couch: no man their works must eye. + +SIR HUGH EVANS: +Where's Bede? Go you, and where you find a maid +That, ere she sleep, has thrice her prayers said, +Raise up the organs of her fantasy; +Sleep she as sound as careless infancy: +But those as sleep and think not on their sins, +Pinch them, arms, legs, backs, shoulders, sides and shins. + +MISTRESS QUICKLY: +About, about; +Search Windsor Castle, elves, within and out: +Strew good luck, ouphes, on every sacred room: +That it may stand till the perpetual doom, +In state as wholesome as in state 'tis fit, +Worthy the owner, and the owner it. +The several chairs of order look you scour +With juice of balm and every precious flower: +Each fair instalment, coat, and several crest, +With loyal blazon, evermore be blest! +And nightly, meadow-fairies, look you sing, +Like to the Garter's compass, in a ring: +The expressure that it bears, green let it be, +More fertile-fresh than all the field to see; +And 'Honi soit qui mal y pense' write +In emerald tufts, flowers purple, blue and white; +Let sapphire, pearl and rich embroidery, +Buckled below fair knighthood's bending knee: +Fairies use flowers for their charactery. +Away; disperse: but till 'tis one o'clock, +Our dance of custom round about the oak +Of Herne the hunter, let us not forget. + +SIR HUGH EVANS: +Pray you, lock hand in hand; yourselves in order set +And twenty glow-worms shall our lanterns be, +To guide our measure round about the tree. +But, stay; I smell a man of middle-earth. + +FALSTAFF: +Heavens defend me from that Welsh fairy, lest he +transform me to a piece of cheese! + +PISTOL: +Vile worm, thou wast o'erlook'd even in thy birth. + +MISTRESS QUICKLY: +With trial-fire touch me his finger-end: +If he be chaste, the flame will back descend +And turn him to no pain; but if he start, +It is the flesh of a corrupted heart. + +PISTOL: +A trial, come. + +SIR HUGH EVANS: +Come, will this wood take fire? + +FALSTAFF: +Oh, Oh, Oh! + +MISTRESS QUICKLY: +Corrupt, corrupt, and tainted in desire! +About him, fairies; sing a scornful rhyme; +And, as you trip, still pinch him to your time. +Fie on sinful fantasy! +Fie on lust and luxury! +Lust is but a bloody fire, +Kindled with unchaste desire, +Fed in heart, whose flames aspire +As thoughts do blow them, higher and higher. +Pinch him, fairies, mutually; +Pinch him for his villany; +Pinch him, and burn him, and turn him about, +Till candles and starlight and moonshine be out. + +PAGE: +Nay, do not fly; I think we have watch'd you now +Will none but Herne the hunter serve your turn? + +MISTRESS PAGE: +I pray you, come, hold up the jest no higher +Now, good Sir John, how like you Windsor wives? +See you these, husband? do not these fair yokes +Become the forest better than the town? + +FORD: +Now, sir, who's a cuckold now? Master Brook, +Falstaff's a knave, a cuckoldly knave; here are his +horns, Master Brook: and, Master Brook, he hath +enjoyed nothing of Ford's but his buck-basket, his +cudgel, and twenty pounds of money, which must be +paid to Master Brook; his horses are arrested for +it, Master Brook. + +MISTRESS FORD: +Sir John, we have had ill luck; we could never meet. +I will never take you for my love again; but I will +always count you my deer. + +FALSTAFF: +I do begin to perceive that I am made an ass. + +FORD: +Ay, and an ox too: both the proofs are extant. + +FALSTAFF: +And these are not fairies? I was three or four +times in the thought they were not fairies: and yet +the guiltiness of my mind, the sudden surprise of my +powers, drove the grossness of the foppery into a +received belief, in despite of the teeth of all +rhyme and reason, that they were fairies. See now +how wit may be made a Jack-a-Lent, when 'tis upon +ill employment! + +SIR HUGH EVANS: +Sir John Falstaff, serve Got, and leave your +desires, and fairies will not pinse you. + +FORD: +Well said, fairy Hugh. + +SIR HUGH EVANS: +And leave your jealousies too, I pray you. + +FORD: +I will never mistrust my wife again till thou art +able to woo her in good English. + +FALSTAFF: +Have I laid my brain in the sun and dried it, that +it wants matter to prevent so gross o'erreaching as +this? Am I ridden with a Welsh goat too? shall I +have a coxcomb of frize? 'Tis time I were choked +with a piece of toasted cheese. + +SIR HUGH EVANS: +Seese is not good to give putter; your belly is all putter. + +FALSTAFF: +'Seese' and 'putter'! have I lived to stand at the +taunt of one that makes fritters of English? This +is enough to be the decay of lust and late-walking +through the realm. + +MISTRESS PAGE: +Why Sir John, do you think, though we would have the +virtue out of our hearts by the head and shoulders +and have given ourselves without scruple to hell, +that ever the devil could have made you our delight? + +FORD: +What, a hodge-pudding? a bag of flax? + +MISTRESS PAGE: +A puffed man? + +PAGE: +Old, cold, withered and of intolerable entrails? + +FORD: +And one that is as slanderous as Satan? + +PAGE: +And as poor as Job? + +FORD: +And as wicked as his wife? + +SIR HUGH EVANS: +And given to fornications, and to taverns and sack +and wine and metheglins, and to drinkings and +swearings and starings, pribbles and prabbles? + +FALSTAFF: +Well, I am your theme: you have the start of me; I +am dejected; I am not able to answer the Welsh +flannel; ignorance itself is a plummet o'er me: use +me as you will. + +FORD: +Marry, sir, we'll bring you to Windsor, to one +Master Brook, that you have cozened of money, to +whom you should have been a pander: over and above +that you have suffered, I think to repay that money +will be a biting affliction. + +PAGE: +Yet be cheerful, knight: thou shalt eat a posset +to-night at my house; where I will desire thee to +laugh at my wife, that now laughs at thee: tell her +Master Slender hath married her daughter. + +MISTRESS PAGE: + +SLENDER: +Whoa ho! ho, father Page! + +PAGE: +Son, how now! how now, son! have you dispatched? + +SLENDER: +Dispatched! I'll make the best in Gloucestershire +know on't; would I were hanged, la, else. + +PAGE: +Of what, son? + +SLENDER: +I came yonder at Eton to marry Mistress Anne Page, +and she's a great lubberly boy. If it had not been +i' the church, I would have swinged him, or he +should have swinged me. If I did not think it had +been Anne Page, would I might never stir!--and 'tis +a postmaster's boy. + +PAGE: +Upon my life, then, you took the wrong. + +SLENDER: +What need you tell me that? I think so, when I took +a boy for a girl. If I had been married to him, for +all he was in woman's apparel, I would not have had +him. + +PAGE: +Why, this is your own folly. Did not I tell you how +you should know my daughter by her garments? + +SLENDER: +I went to her in white, and cried 'mum,' and she +cried 'budget,' as Anne and I had appointed; and yet +it was not Anne, but a postmaster's boy. + +MISTRESS PAGE: +Good George, be not angry: I knew of your purpose; +turned my daughter into green; and, indeed, she is +now with the doctor at the deanery, and there married. + +DOCTOR CAIUS: +Vere is Mistress Page? By gar, I am cozened: I ha' +married un garcon, a boy; un paysan, by gar, a boy; +it is not Anne Page: by gar, I am cozened. + +MISTRESS PAGE: +Why, did you take her in green? + +DOCTOR CAIUS: +Ay, by gar, and 'tis a boy: by gar, I'll raise all Windsor. + +FORD: +This is strange. Who hath got the right Anne? + +PAGE: +My heart misgives me: here comes Master Fenton. +How now, Master Fenton! + +ANNE PAGE: +Pardon, good father! good my mother, pardon! + +PAGE: +Now, mistress, how chance you went not with Master Slender? + +MISTRESS PAGE: +Why went you not with master doctor, maid? + +FENTON: +You do amaze her: hear the truth of it. +You would have married her most shamefully, +Where there was no proportion held in love. +The truth is, she and I, long since contracted, +Are now so sure that nothing can dissolve us. +The offence is holy that she hath committed; +And this deceit loses the name of craft, +Of disobedience, or unduteous title, +Since therein she doth evitate and shun +A thousand irreligious cursed hours, +Which forced marriage would have brought upon her. + +FORD: +Stand not amazed; here is no remedy: +In love the heavens themselves do guide the state; +Money buys lands, and wives are sold by fate. + +FALSTAFF: +I am glad, though you have ta'en a special stand to +strike at me, that your arrow hath glanced. + +PAGE: +Well, what remedy? Fenton, heaven give thee joy! +What cannot be eschew'd must be embraced. + +FALSTAFF: +When night-dogs run, all sorts of deer are chased. + +MISTRESS PAGE: +Well, I will muse no further. Master Fenton, +Heaven give you many, many merry days! +Good husband, let us every one go home, +And laugh this sport o'er by a country fire; +Sir John and all. + +FORD: +Let it be so. Sir John, +To Master Brook you yet shall hold your word +For he tonight shall lie with Mistress Ford. + +AEGEON: +Proceed, Solinus, to procure my fall +And by the doom of death end woes and all. + +DUKE SOLINUS: +Merchant of Syracuse, plead no more; +I am not partial to infringe our laws: +The enmity and discord which of late +Sprung from the rancorous outrage of your duke +To merchants, our well-dealing countrymen, +Who wanting guilders to redeem their lives +Have seal'd his rigorous statutes with their bloods, +Excludes all pity from our threatening looks. +For, since the mortal and intestine jars +'Twixt thy seditious countrymen and us, +It hath in solemn synods been decreed +Both by the Syracusians and ourselves, +To admit no traffic to our adverse towns Nay, more, +If any born at Ephesus be seen +At any Syracusian marts and fairs; +Again: if any Syracusian born +Come to the bay of Ephesus, he dies, +His goods confiscate to the duke's dispose, +Unless a thousand marks be levied, +To quit the penalty and to ransom him. +Thy substance, valued at the highest rate, +Cannot amount unto a hundred marks; +Therefore by law thou art condemned to die. + +AEGEON: +Yet this my comfort: when your words are done, +My woes end likewise with the evening sun. + +DUKE SOLINUS: +Well, Syracusian, say in brief the cause +Why thou departed'st from thy native home +And for what cause thou camest to Ephesus. + +AEGEON: +A heavier task could not have been imposed +Than I to speak my griefs unspeakable: +Yet, that the world may witness that my end +Was wrought by nature, not by vile offence, +I'll utter what my sorrows give me leave. +In Syracusa was I born, and wed +Unto a woman, happy but for me, +And by me, had not our hap been bad. +With her I lived in joy; our wealth increased +By prosperous voyages I often made +To Epidamnum; till my factor's death +And the great care of goods at random left +Drew me from kind embracements of my spouse: +From whom my absence was not six months old +Before herself, almost at fainting under +The pleasing punishment that women bear, +Had made provision for her following me +And soon and safe arrived where I was. +There had she not been long, but she became +A joyful mother of two goodly sons; +And, which was strange, the one so like the other, +As could not be distinguish'd but by names. +That very hour, and in the self-same inn, +A meaner woman was delivered +Of such a burden, male twins, both alike: +Those,--for their parents were exceeding poor,-- +I bought and brought up to attend my sons. +My wife, not meanly proud of two such boys, +Made daily motions for our home return: +Unwilling I agreed. Alas! too soon, +We came aboard. +A league from Epidamnum had we sail'd, +Before the always wind-obeying deep +Gave any tragic instance of our harm: +But longer did we not retain much hope; +For what obscured light the heavens did grant +Did but convey unto our fearful minds +A doubtful warrant of immediate death; +Which though myself would gladly have embraced, +Yet the incessant weepings of my wife, +Weeping before for what she saw must come, +And piteous plainings of the pretty babes, +That mourn'd for fashion, ignorant what to fear, +Forced me to seek delays for them and me. +And this it was, for other means was none: +The sailors sought for safety by our boat, +And left the ship, then sinking-ripe, to us: +My wife, more careful for the latter-born, +Had fasten'd him unto a small spare mast, +Such as seafaring men provide for storms; +To him one of the other twins was bound, +Whilst I had been like heedful of the other: +The children thus disposed, my wife and I, +Fixing our eyes on whom our care was fix'd, +Fasten'd ourselves at either end the mast; +And floating straight, obedient to the stream, +Was carried towards Corinth, as we thought. +At length the sun, gazing upon the earth, +Dispersed those vapours that offended us; +And by the benefit of his wished light, +The seas wax'd calm, and we discovered +Two ships from far making amain to us, +Of Corinth that, of Epidaurus this: +But ere they came,--O, let me say no more! +Gather the sequel by that went before. + +DUKE SOLINUS: +Nay, forward, old man; do not break off so; +For we may pity, though not pardon thee. + +AEGEON: +O, had the gods done so, I had not now +Worthily term'd them merciless to us! +For, ere the ships could meet by twice five leagues, +We were encounterd by a mighty rock; +Which being violently borne upon, +Our helpful ship was splitted in the midst; +So that, in this unjust divorce of us, +Fortune had left to both of us alike +What to delight in, what to sorrow for. +Her part, poor soul! seeming as burdened +With lesser weight but not with lesser woe, +Was carried with more speed before the wind; +And in our sight they three were taken up +By fishermen of Corinth, as we thought. +At length, another ship had seized on us; +And, knowing whom it was their hap to save, +Gave healthful welcome to their shipwreck'd guests; +And would have reft the fishers of their prey, +Had not their bark been very slow of sail; +And therefore homeward did they bend their course. +Thus have you heard me sever'd from my bliss; +That by misfortunes was my life prolong'd, +To tell sad stories of my own mishaps. + +DUKE SOLINUS: +And for the sake of them thou sorrowest for, +Do me the favour to dilate at full +What hath befall'n of them and thee till now. + +AEGEON: +My youngest boy, and yet my eldest care, +At eighteen years became inquisitive +After his brother: and importuned me +That his attendant--so his case was like, +Reft of his brother, but retain'd his name-- +Might bear him company in the quest of him: +Whom whilst I labour'd of a love to see, +I hazarded the loss of whom I loved. +Five summers have I spent in furthest Greece, +Roaming clean through the bounds of Asia, +And, coasting homeward, came to Ephesus; +Hopeless to find, yet loath to leave unsought +Or that or any place that harbours men. +But here must end the story of my life; +And happy were I in my timely death, +Could all my travels warrant me they live. + +DUKE SOLINUS: +Hapless AEgeon, whom the fates have mark'd +To bear the extremity of dire mishap! +Now, trust me, were it not against our laws, +Against my crown, my oath, my dignity, +Which princes, would they, may not disannul, +My soul would sue as advocate for thee. +But, though thou art adjudged to the death +And passed sentence may not be recall'd +But to our honour's great disparagement, +Yet I will favour thee in what I can. +Therefore, merchant, I'll limit thee this day +To seek thy life by beneficial help: +Try all the friends thou hast in Ephesus; +Beg thou, or borrow, to make up the sum, +And live; if no, then thou art doom'd to die. +Gaoler, take him to thy custody. + +Gaoler: +I will, my lord. + +AEGEON: +Hopeless and helpless doth AEgeon wend, +But to procrastinate his lifeless end. + +First Merchant: +Therefore give out you are of Epidamnum, +Lest that your goods too soon be confiscate. +This very day a Syracusian merchant +Is apprehended for arrival here; +And not being able to buy out his life +According to the statute of the town, +Dies ere the weary sun set in the west. +There is your money that I had to keep. + +ANTIPHOLUS OF SYRACUSE: +Go bear it to the Centaur, where we host, +And stay there, Dromio, till I come to thee. +Within this hour it will be dinner-time: +Till that, I'll view the manners of the town, +Peruse the traders, gaze upon the buildings, +And then return and sleep within mine inn, +For with long travel I am stiff and weary. +Get thee away. + +DROMIO OF SYRACUSE: +Many a man would take you at your word, +And go indeed, having so good a mean. + +ANTIPHOLUS OF SYRACUSE: +A trusty villain, sir, that very oft, +When I am dull with care and melancholy, +Lightens my humour with his merry jests. +What, will you walk with me about the town, +And then go to my inn and dine with me? + +First Merchant: +I am invited, sir, to certain merchants, +Of whom I hope to make much benefit; +I crave your pardon. Soon at five o'clock, +Please you, I'll meet with you upon the mart +And afterward consort you till bed-time: +My present business calls me from you now. + +ANTIPHOLUS OF SYRACUSE: +Farewell till then: I will go lose myself +And wander up and down to view the city. + +First Merchant: +Sir, I commend you to your own content. + +ANTIPHOLUS OF SYRACUSE: +He that commends me to mine own content +Commends me to the thing I cannot get. +I to the world am like a drop of water +That in the ocean seeks another drop, +Who, falling there to find his fellow forth, +Unseen, inquisitive, confounds himself: +So I, to find a mother and a brother, +In quest of them, unhappy, lose myself. +Here comes the almanac of my true date. +What now? how chance thou art return'd so soon? + +DROMIO OF EPHESUS: +Return'd so soon! rather approach'd too late: +The capon burns, the pig falls from the spit, +The clock hath strucken twelve upon the bell; +My mistress made it one upon my cheek: +She is so hot because the meat is cold; +The meat is cold because you come not home; +You come not home because you have no stomach; +You have no stomach having broke your fast; +But we that know what 'tis to fast and pray +Are penitent for your default to-day. + +ANTIPHOLUS OF SYRACUSE: +Stop in your wind, sir: tell me this, I pray: +Where have you left the money that I gave you? + +DROMIO OF EPHESUS: +O,--sixpence, that I had o' Wednesday last +To pay the saddler for my mistress' crupper? +The saddler had it, sir; I kept it not. + +ANTIPHOLUS OF SYRACUSE: +I am not in a sportive humour now: +Tell me, and dally not, where is the money? +We being strangers here, how darest thou trust +So great a charge from thine own custody? + +DROMIO OF EPHESUS: +I pray you, air, as you sit at dinner: +I from my mistress come to you in post; +If I return, I shall be post indeed, +For she will score your fault upon my pate. +Methinks your maw, like mine, should be your clock, +And strike you home without a messenger. + +ANTIPHOLUS OF SYRACUSE: +Come, Dromio, come, these jests are out of season; +Reserve them till a merrier hour than this. +Where is the gold I gave in charge to thee? + +DROMIO OF EPHESUS: +To me, sir? why, you gave no gold to me. + +ANTIPHOLUS OF SYRACUSE: +Come on, sir knave, have done your foolishness, +And tell me how thou hast disposed thy charge. + +DROMIO OF EPHESUS: +My charge was but to fetch you from the mart +Home to your house, the Phoenix, sir, to dinner: +My mistress and her sister stays for you. + +ANTIPHOLUS OF SYRACUSE: +In what safe place you have bestow'd my money, +Or I shall break that merry sconce of yours +That stands on tricks when I am undisposed: +Where is the thousand marks thou hadst of me? + +DROMIO OF EPHESUS: +I have some marks of yours upon my pate, +Some of my mistress' marks upon my shoulders, +But not a thousand marks between you both. +If I should pay your worship those again, +Perchance you will not bear them patiently. + +ANTIPHOLUS OF SYRACUSE: +Thy mistress' marks? what mistress, slave, hast thou? + +DROMIO OF EPHESUS: +Your worship's wife, my mistress at the Phoenix; +She that doth fast till you come home to dinner, +And prays that you will hie you home to dinner. + +ANTIPHOLUS OF SYRACUSE: +What, wilt thou flout me thus unto my face, +Being forbid? There, take you that, sir knave. + +DROMIO OF EPHESUS: +What mean you, sir? for God's sake, hold your hands! +Nay, and you will not, sir, I'll take my heels. + +ANTIPHOLUS OF SYRACUSE: +Upon my life, by some device or other +The villain is o'er-raught of all my money. +They say this town is full of cozenage, +As, nimble jugglers that deceive the eye, +Dark-working sorcerers that change the mind, +Soul-killing witches that deform the body, +Disguised cheaters, prating mountebanks, +And many such-like liberties of sin: +If it prove so, I will be gone the sooner. +I'll to the Centaur, to go seek this slave: +I greatly fear my money is not safe. + +ADRIANA: +Neither my husband nor the slave return'd, +That in such haste I sent to seek his master! +Sure, Luciana, it is two o'clock. + +LUCIANA: +Perhaps some merchant hath invited him, +And from the mart he's somewhere gone to dinner. +Good sister, let us dine and never fret: +A man is master of his liberty: +Time is their master, and, when they see time, +They'll go or come: if so, be patient, sister. + +ADRIANA: +Why should their liberty than ours be more? + +LUCIANA: +Because their business still lies out o' door. + +ADRIANA: +Look, when I serve him so, he takes it ill. + +LUCIANA: +O, know he is the bridle of your will. + +ADRIANA: +There's none but asses will be bridled so. + +LUCIANA: +Why, headstrong liberty is lash'd with woe. +There's nothing situate under heaven's eye +But hath his bound, in earth, in sea, in sky: +The beasts, the fishes, and the winged fowls, +Are their males' subjects and at their controls: +Men, more divine, the masters of all these, +Lords of the wide world and wild watery seas, +Indued with intellectual sense and souls, +Of more preeminence than fish and fowls, +Are masters to their females, and their lords: +Then let your will attend on their accords. + +ADRIANA: +This servitude makes you to keep unwed. + +LUCIANA: +Not this, but troubles of the marriage-bed. + +ADRIANA: +But, were you wedded, you would bear some sway. + +LUCIANA: +Ere I learn love, I'll practise to obey. + +ADRIANA: +How if your husband start some other where? + +LUCIANA: +Till he come home again, I would forbear. + +ADRIANA: +Patience unmoved! no marvel though she pause; +They can be meek that have no other cause. +A wretched soul, bruised with adversity, +We bid be quiet when we hear it cry; +But were we burdened with like weight of pain, +As much or more would we ourselves complain: +So thou, that hast no unkind mate to grieve thee, +With urging helpless patience wouldst relieve me, +But, if thou live to see like right bereft, +This fool-begg'd patience in thee will be left. + +LUCIANA: +Well, I will marry one day, but to try. +Here comes your man; now is your husband nigh. + +ADRIANA: +Say, is your tardy master now at hand? + +DROMIO OF EPHESUS: +Nay, he's at two hands with me, and that my two ears +can witness. + +ADRIANA: +Say, didst thou speak with him? know'st thou his mind? + +DROMIO OF EPHESUS: +Ay, ay, he told his mind upon mine ear: +Beshrew his hand, I scarce could understand it. + +LUCIANA: +Spake he so doubtfully, thou couldst not feel his meaning? + +DROMIO OF EPHESUS: +Nay, he struck so plainly, I could too well feel his +blows; and withal so doubtfully that I could scarce +understand them. + +ADRIANA: +But say, I prithee, is he coming home? It seems he +hath great care to please his wife. + +DROMIO OF EPHESUS: +Why, mistress, sure my master is horn-mad. + +ADRIANA: +Horn-mad, thou villain! + +DROMIO OF EPHESUS: +I mean not cuckold-mad; +But, sure, he is stark mad. +When I desired him to come home to dinner, +He ask'd me for a thousand marks in gold: +''Tis dinner-time,' quoth I; 'My gold!' quoth he; +'Your meat doth burn,' quoth I; 'My gold!' quoth he: +'Will you come home?' quoth I; 'My gold!' quoth he. +'Where is the thousand marks I gave thee, villain?' +'The pig,' quoth I, 'is burn'd;' 'My gold!' quoth he: +'My mistress, sir' quoth I; 'Hang up thy mistress! +I know not thy mistress; out on thy mistress!' + +LUCIANA: +Quoth who? + +DROMIO OF EPHESUS: +Quoth my master: +'I know,' quoth he, 'no house, no wife, no mistress.' +So that my errand, due unto my tongue, +I thank him, I bare home upon my shoulders; +For, in conclusion, he did beat me there. + +ADRIANA: +Go back again, thou slave, and fetch him home. + +DROMIO OF EPHESUS: +Go back again, and be new beaten home? +For God's sake, send some other messenger. + +ADRIANA: +Back, slave, or I will break thy pate across. + +DROMIO OF EPHESUS: +And he will bless that cross with other beating: +Between you I shall have a holy head. + +ADRIANA: +Hence, prating peasant! fetch thy master home. + +DROMIO OF EPHESUS: +Am I so round with you as you with me, +That like a football you do spurn me thus? +You spurn me hence, and he will spurn me hither: +If I last in this service, you must case me in leather. + +LUCIANA: +Fie, how impatience loureth in your face! + +ADRIANA: +His company must do his minions grace, +Whilst I at home starve for a merry look. +Hath homely age the alluring beauty took +From my poor cheek? then he hath wasted it: +Are my discourses dull? barren my wit? +If voluble and sharp discourse be marr'd, +Unkindness blunts it more than marble hard: +Do their gay vestments his affections bait? +That's not my fault: he's master of my state: +What ruins are in me that can be found, +By him not ruin'd? then is he the ground +Of my defeatures. My decayed fair +A sunny look of his would soon repair +But, too unruly deer, he breaks the pale +And feeds from home; poor I am but his stale. + +LUCIANA: +Self-harming jealousy! fie, beat it hence! + +ADRIANA: +Unfeeling fools can with such wrongs dispense. +I know his eye doth homage otherwhere, +Or else what lets it but he would be here? +Sister, you know he promised me a chain; +Would that alone, alone he would detain, +So he would keep fair quarter with his bed! +I see the jewel best enamelled +Will lose his beauty; yet the gold bides still, +That others touch, and often touching will +Wear gold: and no man that hath a name, +By falsehood and corruption doth it shame. +Since that my beauty cannot please his eye, +I'll weep what's left away, and weeping die. + +LUCIANA: +How many fond fools serve mad jealousy! + +ANTIPHOLUS OF SYRACUSE: +The gold I gave to Dromio is laid up +Safe at the Centaur; and the heedful slave +Is wander'd forth, in care to seek me out +By computation and mine host's report. +I could not speak with Dromio since at first +I sent him from the mart. See, here he comes. +How now sir! is your merry humour alter'd? +As you love strokes, so jest with me again. +You know no Centaur? you received no gold? +Your mistress sent to have me home to dinner? +My house was at the Phoenix? Wast thou mad, +That thus so madly thou didst answer me? + +DROMIO OF SYRACUSE: +What answer, sir? when spake I such a word? + +ANTIPHOLUS OF SYRACUSE: +Even now, even here, not half an hour since. + +DROMIO OF SYRACUSE: +I did not see you since you sent me hence, +Home to the Centaur, with the gold you gave me. + +ANTIPHOLUS OF SYRACUSE: +Villain, thou didst deny the gold's receipt, +And told'st me of a mistress and a dinner; +For which, I hope, thou felt'st I was displeased. + +DROMIO OF SYRACUSE: +I am glad to see you in this merry vein: +What means this jest? I pray you, master, tell me. + +ANTIPHOLUS OF SYRACUSE: +Yea, dost thou jeer and flout me in the teeth? +Think'st thou I jest? Hold, take thou that, and that. + +DROMIO OF SYRACUSE: +Hold, sir, for God's sake! now your jest is earnest: +Upon what bargain do you give it me? + +ANTIPHOLUS OF SYRACUSE: +Because that I familiarly sometimes +Do use you for my fool and chat with you, +Your sauciness will jest upon my love +And make a common of my serious hours. +When the sun shines let foolish gnats make sport, +But creep in crannies when he hides his beams. +If you will jest with me, know my aspect, +And fashion your demeanor to my looks, +Or I will beat this method in your sconce. + +DROMIO OF SYRACUSE: +Sconce call you it? so you would leave battering, I +had rather have it a head: an you use these blows +long, I must get a sconce for my head and ensconce +it too; or else I shall seek my wit in my shoulders. +But, I pray, sir why am I beaten? + +ANTIPHOLUS OF SYRACUSE: +Dost thou not know? + +DROMIO OF SYRACUSE: +Nothing, sir, but that I am beaten. + +ANTIPHOLUS OF SYRACUSE: +Shall I tell you why? + +DROMIO OF SYRACUSE: +Ay, sir, and wherefore; for they say every why hath +a wherefore. + +ANTIPHOLUS OF SYRACUSE: +Why, first,--for flouting me; and then, wherefore-- +For urging it the second time to me. + +DROMIO OF SYRACUSE: +Was there ever any man thus beaten out of season, +When in the why and the wherefore is neither rhyme +nor reason? +Well, sir, I thank you. + +ANTIPHOLUS OF SYRACUSE: +Thank me, sir, for what? + +DROMIO OF SYRACUSE: +Marry, sir, for this something that you gave me for nothing. + +ANTIPHOLUS OF SYRACUSE: +I'll make you amends next, to give you nothing for +something. But say, sir, is it dinner-time? + +DROMIO OF SYRACUSE: +No, sir; I think the meat wants that I have. + +ANTIPHOLUS OF SYRACUSE: +In good time, sir; what's that? + +DROMIO OF SYRACUSE: +Basting. + +ANTIPHOLUS OF SYRACUSE: +Well, sir, then 'twill be dry. + +DROMIO OF SYRACUSE: +If it be, sir, I pray you, eat none of it. + +ANTIPHOLUS OF SYRACUSE: +Your reason? + +DROMIO OF SYRACUSE: +Lest it make you choleric and purchase me another +dry basting. + +ANTIPHOLUS OF SYRACUSE: +Well, sir, learn to jest in good time: there's a +time for all things. + +DROMIO OF SYRACUSE: +I durst have denied that, before you were so choleric. + +ANTIPHOLUS OF SYRACUSE: +By what rule, sir? + +DROMIO OF SYRACUSE: +Marry, sir, by a rule as plain as the plain bald +pate of father Time himself. + +ANTIPHOLUS OF SYRACUSE: +Let's hear it. + +DROMIO OF SYRACUSE: +There's no time for a man to recover his hair that +grows bald by nature. + +ANTIPHOLUS OF SYRACUSE: +May he not do it by fine and recovery? + +DROMIO OF SYRACUSE: +Yes, to pay a fine for a periwig and recover the +lost hair of another man. + +ANTIPHOLUS OF SYRACUSE: +Why is Time such a niggard of hair, being, as it is, +so plentiful an excrement? + +DROMIO OF SYRACUSE: +Because it is a blessing that he bestows on beasts; +and what he hath scanted men in hair he hath given them in wit. + +ANTIPHOLUS OF SYRACUSE: +Why, but there's many a man hath more hair than wit. + +DROMIO OF SYRACUSE: +Not a man of those but he hath the wit to lose his hair. + +ANTIPHOLUS OF SYRACUSE: +Why, thou didst conclude hairy men plain dealers without wit. + +DROMIO OF SYRACUSE: +The plainer dealer, the sooner lost: yet he loseth +it in a kind of jollity. + +ANTIPHOLUS OF SYRACUSE: +For what reason? + +DROMIO OF SYRACUSE: +For two; and sound ones too. + +ANTIPHOLUS OF SYRACUSE: +Nay, not sound, I pray you. + +DROMIO OF SYRACUSE: +Sure ones, then. + +ANTIPHOLUS OF SYRACUSE: +Nay, not sure, in a thing falsing. + +DROMIO OF SYRACUSE: +Certain ones then. + +ANTIPHOLUS OF SYRACUSE: +Name them. + +DROMIO OF SYRACUSE: +The one, to save the money that he spends in +trimming; the other, that at dinner they should not +drop in his porridge. + +ANTIPHOLUS OF SYRACUSE: +You would all this time have proved there is no +time for all things. + +DROMIO OF SYRACUSE: +Marry, and did, sir; namely, no time to recover hair +lost by nature. + +ANTIPHOLUS OF SYRACUSE: +But your reason was not substantial, why there is no +time to recover. + +DROMIO OF SYRACUSE: +Thus I mend it: Time himself is bald and therefore +to the world's end will have bald followers. + +ANTIPHOLUS OF SYRACUSE: +I knew 'twould be a bald conclusion: +But, soft! who wafts us yonder? + +ADRIANA: +Ay, ay, Antipholus, look strange and frown: +Some other mistress hath thy sweet aspects; +I am not Adriana nor thy wife. +The time was once when thou unurged wouldst vow +That never words were music to thine ear, +That never object pleasing in thine eye, +That never touch well welcome to thy hand, +That never meat sweet-savor'd in thy taste, +Unless I spake, or look'd, or touch'd, or carved to thee. +How comes it now, my husband, O, how comes it, +That thou art thus estranged from thyself? +Thyself I call it, being strange to me, +That, undividable, incorporate, +Am better than thy dear self's better part. +Ah, do not tear away thyself from me! +For know, my love, as easy mayest thou fall +A drop of water in the breaking gulf, +And take unmingled that same drop again, +Without addition or diminishing, +As take from me thyself and not me too. +How dearly would it touch me to the quick, +Shouldst thou but hear I were licentious +And that this body, consecrate to thee, +By ruffian lust should be contaminate! +Wouldst thou not spit at me and spurn at me +And hurl the name of husband in my face +And tear the stain'd skin off my harlot-brow +And from my false hand cut the wedding-ring +And break it with a deep-divorcing vow? +I know thou canst; and therefore see thou do it. +I am possess'd with an adulterate blot; +My blood is mingled with the crime of lust: +For if we too be one and thou play false, +I do digest the poison of thy flesh, +Being strumpeted by thy contagion. +Keep then far league and truce with thy true bed; +I live unstain'd, thou undishonoured. + +ANTIPHOLUS OF SYRACUSE: +Plead you to me, fair dame? I know you not: +In Ephesus I am but two hours old, +As strange unto your town as to your talk; +Who, every word by all my wit being scann'd, +Want wit in all one word to understand. + +LUCIANA: +Fie, brother! how the world is changed with you! +When were you wont to use my sister thus? +She sent for you by Dromio home to dinner. + +ANTIPHOLUS OF SYRACUSE: +By Dromio? + +DROMIO OF SYRACUSE: +By me? + +ADRIANA: +By thee; and this thou didst return from him, +That he did buffet thee, and, in his blows, +Denied my house for his, me for his wife. + +ANTIPHOLUS OF SYRACUSE: +Did you converse, sir, with this gentlewoman? +What is the course and drift of your compact? + +DROMIO OF SYRACUSE: +I, sir? I never saw her till this time. + +ANTIPHOLUS OF SYRACUSE: +Villain, thou liest; for even her very words +Didst thou deliver to me on the mart. + +DROMIO OF SYRACUSE: +I never spake with her in all my life. + +ANTIPHOLUS OF SYRACUSE: +How can she thus then call us by our names, +Unless it be by inspiration. + +ADRIANA: +How ill agrees it with your gravity +To counterfeit thus grossly with your slave, +Abetting him to thwart me in my mood! +Be it my wrong you are from me exempt, +But wrong not that wrong with a more contempt. +Come, I will fasten on this sleeve of thine: +Thou art an elm, my husband, I a vine, +Whose weakness, married to thy stronger state, +Makes me with thy strength to communicate: +If aught possess thee from me, it is dross, +Usurping ivy, brier, or idle moss; +Who, all for want of pruning, with intrusion +Infect thy sap and live on thy confusion. + +ANTIPHOLUS OF SYRACUSE: +To me she speaks; she moves me for her theme: +What, was I married to her in my dream? +Or sleep I now and think I hear all this? +What error drives our eyes and ears amiss? +Until I know this sure uncertainty, +I'll entertain the offer'd fallacy. + +LUCIANA: +Dromio, go bid the servants spread for dinner. + +DROMIO OF SYRACUSE: +O, for my beads! I cross me for a sinner. +This is the fairy land: O spite of spites! +We talk with goblins, owls and sprites: +If we obey them not, this will ensue, +They'll suck our breath, or pinch us black and blue. + +LUCIANA: +Why pratest thou to thyself and answer'st not? +Dromio, thou drone, thou snail, thou slug, thou sot! + +DROMIO OF SYRACUSE: +I am transformed, master, am I not? + +ANTIPHOLUS OF SYRACUSE: +I think thou art in mind, and so am I. + +DROMIO OF SYRACUSE: +Nay, master, both in mind and in my shape. + +ANTIPHOLUS OF SYRACUSE: +Thou hast thine own form. + +DROMIO OF SYRACUSE: +No, I am an ape. + +LUCIANA: +If thou art changed to aught, 'tis to an ass. + +DROMIO OF SYRACUSE: +'Tis true; she rides me and I long for grass. +'Tis so, I am an ass; else it could never be +But I should know her as well as she knows me. + +ADRIANA: +Come, come, no longer will I be a fool, +To put the finger in the eye and weep, +Whilst man and master laugh my woes to scorn. +Come, sir, to dinner. Dromio, keep the gate. +Husband, I'll dine above with you to-day +And shrive you of a thousand idle pranks. +Sirrah, if any ask you for your master, +Say he dines forth, and let no creature enter. +Come, sister. Dromio, play the porter well. + +ANTIPHOLUS OF SYRACUSE: +Am I in earth, in heaven, or in hell? +Sleeping or waking? mad or well-advised? +Known unto these, and to myself disguised! +I'll say as they say and persever so, +And in this mist at all adventures go. + +DROMIO OF SYRACUSE: +Master, shall I be porter at the gate? + +ADRIANA: +Ay; and let none enter, lest I break your pate. + +LUCIANA: +Come, come, Antipholus, we dine too late. + +OF EPHESUS: +Good Signior Angelo, you must excuse us all; +My wife is shrewish when I keep not hours: +Say that I linger'd with you at your shop +To see the making of her carcanet, +And that to-morrow you will bring it home. +But here's a villain that would face me down +He met me on the mart, and that I beat him, +And charged him with a thousand marks in gold, +And that I did deny my wife and house. +Thou drunkard, thou, what didst thou mean by this? + +DROMIO OF EPHESUS: +Say what you will, sir, but I know what I know; +That you beat me at the mart, I have your hand to show: +If the skin were parchment, and the blows you gave were ink, +Your own handwriting would tell you what I think. + +ANTIPHOLUS OF EPHESUS: +I think thou art an ass. + +DROMIO OF EPHESUS: +Marry, so it doth appear +By the wrongs I suffer and the blows I bear. +I should kick, being kick'd; and, being at that pass, +You would keep from my heels and beware of an ass. + +ANTIPHOLUS OF EPHESUS: +You're sad, Signior Balthazar: pray God our cheer +May answer my good will and your good welcome here. + +BALTHAZAR: +I hold your dainties cheap, sir, and your +welcome dear. + +ANTIPHOLUS OF EPHESUS: +O, Signior Balthazar, either at flesh or fish, +A table full of welcome make scarce one dainty dish. + +BALTHAZAR: +Good meat, sir, is common; that every churl affords. + +ANTIPHOLUS OF EPHESUS: +And welcome more common; for that's nothing but words. + +BALTHAZAR: +Small cheer and great welcome makes a merry feast. + +ANTIPHOLUS OF EPHESUS: +Ay, to a niggardly host, and more sparing guest: +But though my cates be mean, take them in good part; +Better cheer may you have, but not with better heart. +But, soft! my door is lock'd. Go bid them let us in. + +DROMIO OF EPHESUS: +Maud, Bridget, Marian, Cicel, Gillian, Ginn! + +DROMIO OF SYRACUSE: + +DROMIO OF EPHESUS: +What patch is made our porter? My master stays in +the street. + +DROMIO OF SYRACUSE: + +ANTIPHOLUS OF EPHESUS: +Who talks within there? ho, open the door! + +DROMIO OF SYRACUSE: + +ANTIPHOLUS OF EPHESUS: +Wherefore? for my dinner: I have not dined to-day. + +DROMIO OF SYRACUSE: + +ANTIPHOLUS OF EPHESUS: +What art thou that keepest me out from the house I owe? + +DROMIO OF SYRACUSE: + +DROMIO OF EPHESUS: +O villain! thou hast stolen both mine office and my name. +The one ne'er got me credit, the other mickle blame. +If thou hadst been Dromio to-day in my place, +Thou wouldst have changed thy face for a name or thy +name for an ass. + +LUCE: + +DROMIO OF EPHESUS: +Let my master in, Luce. + +LUCE: + +DROMIO OF EPHESUS: +O Lord, I must laugh! +Have at you with a proverb--Shall I set in my staff? + +LUCE: + +DROMIO OF SYRACUSE: + +ANTIPHOLUS OF EPHESUS: +Do you hear, you minion? you'll let us in, I hope? + +LUCE: + +DROMIO OF SYRACUSE: + +DROMIO OF EPHESUS: +So, come, help: well struck! there was blow for blow. + +ANTIPHOLUS OF EPHESUS: +Thou baggage, let me in. + +LUCE: + +DROMIO OF EPHESUS: +Master, knock the door hard. + +LUCE: + +ANTIPHOLUS OF EPHESUS: +You'll cry for this, minion, if I beat the door down. + +LUCE: + +ADRIANA: + +DROMIO OF SYRACUSE: + +ANTIPHOLUS OF EPHESUS: +Are you there, wife? you might have come before. + +ADRIANA: + +DROMIO OF EPHESUS: +If you went in pain, master, this 'knave' would go sore. + +ANGELO: +Here is neither cheer, sir, nor welcome: we would +fain have either. + +BALTHAZAR: +In debating which was best, we shall part with neither. + +DROMIO OF EPHESUS: +They stand at the door, master; bid them welcome hither. + +ANTIPHOLUS OF EPHESUS: +There is something in the wind, that we cannot get in. + +DROMIO OF EPHESUS: +You would say so, master, if your garments were thin. +Your cake there is warm within; you stand here in the cold: +It would make a man mad as a buck, to be so bought and sold. + +ANTIPHOLUS OF EPHESUS: +Go fetch me something: I'll break ope the gate. + +DROMIO OF SYRACUSE: + +DROMIO OF EPHESUS: +A man may break a word with you, sir, and words are but wind, +Ay, and break it in your face, so he break it not behind. + +DROMIO OF SYRACUSE: + +DROMIO OF EPHESUS: +Here's too much 'out upon thee!' I pray thee, +let me in. + +DROMIO OF SYRACUSE: + +ANTIPHOLUS OF EPHESUS: +Well, I'll break in: go borrow me a crow. + +DROMIO OF EPHESUS: +A crow without feather? Master, mean you so? +For a fish without a fin, there's a fowl without a feather; +If a crow help us in, sirrah, we'll pluck a crow together. + +ANTIPHOLUS OF EPHESUS: +Go get thee gone; fetch me an iron crow. + +BALTHAZAR: +Have patience, sir; O, let it not be so! +Herein you war against your reputation +And draw within the compass of suspect +The unviolated honour of your wife. +Once this,--your long experience of her wisdom, +Her sober virtue, years and modesty, +Plead on her part some cause to you unknown: +And doubt not, sir, but she will well excuse +Why at this time the doors are made against you. +Be ruled by me: depart in patience, +And let us to the Tiger all to dinner, +And about evening come yourself alone +To know the reason of this strange restraint. +If by strong hand you offer to break in +Now in the stirring passage of the day, +A vulgar comment will be made of it, +And that supposed by the common rout +Against your yet ungalled estimation +That may with foul intrusion enter in +And dwell upon your grave when you are dead; +For slander lives upon succession, +For ever housed where it gets possession. + +ANTIPHOLUS OF EPHESUS: +You have prevailed: I will depart in quiet, +And, in despite of mirth, mean to be merry. +I know a wench of excellent discourse, +Pretty and witty; wild, and yet, too, gentle: +There will we dine. This woman that I mean, +My wife--but, I protest, without desert-- +Hath oftentimes upbraided me withal: +To her will we to dinner. +Get you home +And fetch the chain; by this I know 'tis made: +Bring it, I pray you, to the Porpentine; +For there's the house: that chain will I bestow-- +Be it for nothing but to spite my wife-- +Upon mine hostess there: good sir, make haste. +Since mine own doors refuse to entertain me, +I'll knock elsewhere, to see if they'll disdain me. + +ANGELO: +I'll meet you at that place some hour hence. + +ANTIPHOLUS OF EPHESUS: +Do so. This jest shall cost me some expense. + +LUCIANA: +And may it be that you have quite forgot +A husband's office? shall, Antipholus. +Even in the spring of love, thy love-springs rot? +Shall love, in building, grow so ruinous? +If you did wed my sister for her wealth, +Then for her wealth's sake use her with more kindness: +Or if you like elsewhere, do it by stealth; +Muffle your false love with some show of blindness: +Let not my sister read it in your eye; +Be not thy tongue thy own shame's orator; +Look sweet, be fair, become disloyalty; +Apparel vice like virtue's harbinger; +Bear a fair presence, though your heart be tainted; +Teach sin the carriage of a holy saint; +Be secret-false: what need she be acquainted? +What simple thief brags of his own attaint? +'Tis double wrong, to truant with your bed +And let her read it in thy looks at board: +Shame hath a bastard fame, well managed; +Ill deeds are doubled with an evil word. +Alas, poor women! make us but believe, +Being compact of credit, that you love us; +Though others have the arm, show us the sleeve; +We in your motion turn and you may move us. +Then, gentle brother, get you in again; +Comfort my sister, cheer her, call her wife: +'Tis holy sport to be a little vain, +When the sweet breath of flattery conquers strife. + +ANTIPHOLUS OF SYRACUSE: +Sweet mistress--what your name is else, I know not, +Nor by what wonder you do hit of mine,-- +Less in your knowledge and your grace you show not +Than our earth's wonder, more than earth divine. +Teach me, dear creature, how to think and speak; +Lay open to my earthy-gross conceit, +Smother'd in errors, feeble, shallow, weak, +The folded meaning of your words' deceit. +Against my soul's pure truth why labour you +To make it wander in an unknown field? +Are you a god? would you create me new? +Transform me then, and to your power I'll yield. +But if that I am I, then well I know +Your weeping sister is no wife of mine, +Nor to her bed no homage do I owe +Far more, far more to you do I decline. +O, train me not, sweet mermaid, with thy note, +To drown me in thy sister's flood of tears: +Sing, siren, for thyself and I will dote: +Spread o'er the silver waves thy golden hairs, +And as a bed I'll take them and there lie, +And in that glorious supposition think +He gains by death that hath such means to die: +Let Love, being light, be drowned if she sink! + +LUCIANA: +What, are you mad, that you do reason so? + +ANTIPHOLUS OF SYRACUSE: +Not mad, but mated; how, I do not know. + +LUCIANA: +It is a fault that springeth from your eye. + +ANTIPHOLUS OF SYRACUSE: +For gazing on your beams, fair sun, being by. + +LUCIANA: +Gaze where you should, and that will clear your sight. + +ANTIPHOLUS OF SYRACUSE: +As good to wink, sweet love, as look on night. + +LUCIANA: +Why call you me love? call my sister so. + +ANTIPHOLUS OF SYRACUSE: +Thy sister's sister. + +LUCIANA: +That's my sister. + +ANTIPHOLUS OF SYRACUSE: +No; +It is thyself, mine own self's better part, +Mine eye's clear eye, my dear heart's dearer heart, +My food, my fortune and my sweet hope's aim, +My sole earth's heaven and my heaven's claim. + +LUCIANA: +All this my sister is, or else should be. + +ANTIPHOLUS OF SYRACUSE: +Call thyself sister, sweet, for I am thee. +Thee will I love and with thee lead my life: +Thou hast no husband yet nor I no wife. +Give me thy hand. + +LUCIANA: +O, soft, air! hold you still: +I'll fetch my sister, to get her good will. + +ANTIPHOLUS OF SYRACUSE: +Why, how now, Dromio! where runn'st thou so fast? + +DROMIO OF SYRACUSE: +Do you know me, sir? am I Dromio? am I your man? +am I myself? + +ANTIPHOLUS OF SYRACUSE: +Thou art Dromio, thou art my man, thou art thyself. + +DROMIO OF SYRACUSE: +I am an ass, I am a woman's man and besides myself. + +DROMIO OF SYRACUSE: +Marry, sir, besides myself, I am due to a woman; one +that claims me, one that haunts me, one that will have me. + +ANTIPHOLUS OF SYRACUSE: +What claim lays she to thee? + +DROMIO OF SYRACUSE: +Marry sir, such claim as you would lay to your +horse; and she would have me as a beast: not that, I +being a beast, she would have me; but that she, +being a very beastly creature, lays claim to me. + +ANTIPHOLUS OF SYRACUSE: +What is she? + +DROMIO OF SYRACUSE: +A very reverent body; ay, such a one as a man may +not speak of without he say 'Sir-reverence.' I have +but lean luck in the match, and yet is she a +wondrous fat marriage. + +ANTIPHOLUS OF SYRACUSE: +How dost thou mean a fat marriage? + +DROMIO OF SYRACUSE: +Marry, sir, she's the kitchen wench and all grease; +and I know not what use to put her to but to make a +lamp of her and run from her by her own light. I +warrant, her rags and the tallow in them will burn a +Poland winter: if she lives till doomsday, +she'll burn a week longer than the whole world. + +ANTIPHOLUS OF SYRACUSE: +What complexion is she of? + +DROMIO OF SYRACUSE: +Swart, like my shoe, but her face nothing half so +clean kept: for why, she sweats; a man may go over +shoes in the grime of it. + +ANTIPHOLUS OF SYRACUSE: +That's a fault that water will mend. + +DROMIO OF SYRACUSE: +No, sir, 'tis in grain; Noah's flood could not do it. + +ANTIPHOLUS OF SYRACUSE: +What's her name? + +DROMIO OF SYRACUSE: +Nell, sir; but her name and three quarters, that's +an ell and three quarters, will not measure her from +hip to hip. + +ANTIPHOLUS OF SYRACUSE: +Then she bears some breadth? + +DROMIO OF SYRACUSE: +No longer from head to foot than from hip to hip: +she is spherical, like a globe; I could find out +countries in her. + +ANTIPHOLUS OF SYRACUSE: +In what part of her body stands Ireland? + +DROMIO OF SYRACUSE: +Marry, in her buttocks: I found it out by the bogs. + +ANTIPHOLUS OF SYRACUSE: +Where Scotland? + +DROMIO OF SYRACUSE: +I found it by the barrenness; hard in the palm of the hand. + +ANTIPHOLUS OF SYRACUSE: +Where France? + +DROMIO OF SYRACUSE: +In her forehead; armed and reverted, making war +against her heir. + +ANTIPHOLUS OF SYRACUSE: +Where England? + +DROMIO OF SYRACUSE: +I looked for the chalky cliffs, but I could find no +whiteness in them; but I guess it stood in her chin, +by the salt rheum that ran between France and it. + +ANTIPHOLUS OF SYRACUSE: +Where Spain? + +DROMIO OF SYRACUSE: +Faith, I saw it not; but I felt it hot in her breath. + +ANTIPHOLUS OF SYRACUSE: +Where America, the Indies? + +DROMIO OF SYRACUSE: +Oh, sir, upon her nose all o'er embellished with +rubies, carbuncles, sapphires, declining their rich +aspect to the hot breath of Spain; who sent whole +armadoes of caracks to be ballast at her nose. + +ANTIPHOLUS OF SYRACUSE: +Where stood Belgia, the Netherlands? + +DROMIO OF SYRACUSE: +Oh, sir, I did not look so low. To conclude, this +drudge, or diviner, laid claim to me, call'd me +Dromio; swore I was assured to her; told me what +privy marks I had about me, as, the mark of my +shoulder, the mole in my neck, the great wart on my +left arm, that I amazed ran from her as a witch: +And, I think, if my breast had not been made of +faith and my heart of steel, +She had transform'd me to a curtal dog and made +me turn i' the wheel. + +ANTIPHOLUS OF SYRACUSE: +Go hie thee presently, post to the road: +An if the wind blow any way from shore, +I will not harbour in this town to-night: +If any bark put forth, come to the mart, +Where I will walk till thou return to me. +If every one knows us and we know none, +'Tis time, I think, to trudge, pack and be gone. + +DROMIO OF SYRACUSE: +As from a bear a man would run for life, +So fly I from her that would be my wife. + +ANTIPHOLUS OF SYRACUSE: +There's none but witches do inhabit here; +And therefore 'tis high time that I were hence. +She that doth call me husband, even my soul +Doth for a wife abhor. But her fair sister, +Possess'd with such a gentle sovereign grace, +Of such enchanting presence and discourse, +Hath almost made me traitor to myself: +But, lest myself be guilty to self-wrong, +I'll stop mine ears against the mermaid's song. + +ANGELO: +Master Antipholus,-- + +ANTIPHOLUS OF SYRACUSE: +Ay, that's my name. + +ANGELO: +I know it well, sir, lo, here is the chain. +I thought to have ta'en you at the Porpentine: +The chain unfinish'd made me stay thus long. + +ANTIPHOLUS OF SYRACUSE: +What is your will that I shall do with this? + +ANGELO: +What please yourself, sir: I have made it for you. + +ANTIPHOLUS OF SYRACUSE: +Made it for me, sir! I bespoke it not. + +ANGELO: +Not once, nor twice, but twenty times you have. +Go home with it and please your wife withal; +And soon at supper-time I'll visit you +And then receive my money for the chain. + +ANTIPHOLUS OF SYRACUSE: +I pray you, sir, receive the money now, +For fear you ne'er see chain nor money more. + +ANGELO: +You are a merry man, sir: fare you well. + +ANTIPHOLUS OF SYRACUSE: +What I should think of this, I cannot tell: +But this I think, there's no man is so vain +That would refuse so fair an offer'd chain. +I see a man here needs not live by shifts, +When in the streets he meets such golden gifts. +I'll to the mart, and there for Dromio stay +If any ship put out, then straight away. + +Second Merchant: +You know since Pentecost the sum is due, +And since I have not much importuned you; +Nor now I had not, but that I am bound +To Persia, and want guilders for my voyage: +Therefore make present satisfaction, +Or I'll attach you by this officer. + +ANGELO: +Even just the sum that I do owe to you +Is growing to me by Antipholus, +And in the instant that I met with you +He had of me a chain: at five o'clock +I shall receive the money for the same. +Pleaseth you walk with me down to his house, +I will discharge my bond and thank you too. + +Officer: +That labour may you save: see where he comes. + +ANTIPHOLUS OF EPHESUS: +While I go to the goldsmith's house, go thou +And buy a rope's end: that will I bestow +Among my wife and her confederates, +For locking me out of my doors by day. +But, soft! I see the goldsmith. Get thee gone; +Buy thou a rope and bring it home to me. + +DROMIO OF EPHESUS: +I buy a thousand pound a year: I buy a rope. + +ANTIPHOLUS OF EPHESUS: +A man is well holp up that trusts to you: +I promised your presence and the chain; +But neither chain nor goldsmith came to me. +Belike you thought our love would last too long, +If it were chain'd together, and therefore came not. + +ANGELO: +Saving your merry humour, here's the note +How much your chain weighs to the utmost carat, +The fineness of the gold and chargeful fashion. +Which doth amount to three odd ducats more +Than I stand debted to this gentleman: +I pray you, see him presently discharged, +For he is bound to sea and stays but for it. + +ANTIPHOLUS OF EPHESUS: +I am not furnish'd with the present money; +Besides, I have some business in the town. +Good signior, take the stranger to my house +And with you take the chain and bid my wife +Disburse the sum on the receipt thereof: +Perchance I will be there as soon as you. + +ANGELO: +Then you will bring the chain to her yourself? + +ANTIPHOLUS OF EPHESUS: +No; bear it with you, lest I come not time enough. + +ANGELO: +Well, sir, I will. Have you the chain about you? + +ANTIPHOLUS OF EPHESUS: +An if I have not, sir, I hope you have; +Or else you may return without your money. + +ANGELO: +Nay, come, I pray you, sir, give me the chain: +Both wind and tide stays for this gentleman, +And I, to blame, have held him here too long. + +ANTIPHOLUS OF EPHESUS: +Good Lord! you use this dalliance to excuse +Your breach of promise to the Porpentine. +I should have chid you for not bringing it, +But, like a shrew, you first begin to brawl. + +Second Merchant: +The hour steals on; I pray you, sir, dispatch. + +ANGELO: +You hear how he importunes me;--the chain! + +ANTIPHOLUS OF EPHESUS: +Why, give it to my wife and fetch your money. + +ANGELO: +Come, come, you know I gave it you even now. +Either send the chain or send me by some token. + +ANTIPHOLUS OF EPHESUS: +Fie, now you run this humour out of breath, +where's the chain? I pray you, let me see it. + +Second Merchant: +My business cannot brook this dalliance. +Good sir, say whether you'll answer me or no: +If not, I'll leave him to the officer. + +ANTIPHOLUS OF EPHESUS: +I answer you! what should I answer you? + +ANGELO: +The money that you owe me for the chain. + +ANTIPHOLUS OF EPHESUS: +I owe you none till I receive the chain. + +ANGELO: +You know I gave it you half an hour since. + +ANTIPHOLUS OF EPHESUS: +You gave me none: you wrong me much to say so. + +ANGELO: +You wrong me more, sir, in denying it: +Consider how it stands upon my credit. + +Second Merchant: +Well, officer, arrest him at my suit. + +Officer: +I do; and charge you in the duke's name to obey me. + +ANGELO: +This touches me in reputation. +Either consent to pay this sum for me +Or I attach you by this officer. + +ANTIPHOLUS OF EPHESUS: +Consent to pay thee that I never had! +Arrest me, foolish fellow, if thou darest. + +ANGELO: +Here is thy fee; arrest him, officer, +I would not spare my brother in this case, +If he should scorn me so apparently. + +Officer: +I do arrest you, sir: you hear the suit. + +ANTIPHOLUS OF EPHESUS: +I do obey thee till I give thee bail. +But, sirrah, you shall buy this sport as dear +As all the metal in your shop will answer. + +ANGELO: +Sir, sir, I will have law in Ephesus, +To your notorious shame; I doubt it not. + +DROMIO OF SYRACUSE: +Master, there is a bark of Epidamnum +That stays but till her owner comes aboard, +And then, sir, she bears away. Our fraughtage, sir, +I have convey'd aboard; and I have bought +The oil, the balsamum and aqua-vitae. +The ship is in her trim; the merry wind +Blows fair from land: they stay for nought at all +But for their owner, master, and yourself. + +ANTIPHOLUS OF EPHESUS: +How now! a madman! Why, thou peevish sheep, +What ship of Epidamnum stays for me? + +DROMIO OF SYRACUSE: +A ship you sent me to, to hire waftage. + +ANTIPHOLUS OF EPHESUS: +Thou drunken slave, I sent thee for a rope; +And told thee to what purpose and what end. + +DROMIO OF SYRACUSE: +You sent me for a rope's end as soon: +You sent me to the bay, sir, for a bark. + +ANTIPHOLUS OF EPHESUS: +I will debate this matter at more leisure +And teach your ears to list me with more heed. +To Adriana, villain, hie thee straight: +Give her this key, and tell her, in the desk +That's cover'd o'er with Turkish tapestry, +There is a purse of ducats; let her send it: +Tell her I am arrested in the street +And that shall bail me; hie thee, slave, be gone! +On, officer, to prison till it come. + +DROMIO OF SYRACUSE: +To Adriana! that is where we dined, +Where Dowsabel did claim me for her husband: +She is too big, I hope, for me to compass. +Thither I must, although against my will, +For servants must their masters' minds fulfil. + +ADRIANA: +Ah, Luciana, did he tempt thee so? +Mightst thou perceive austerely in his eye +That he did plead in earnest? yea or no? +Look'd he or red or pale, or sad or merrily? +What observation madest thou in this case +Of his heart's meteors tilting in his face? + +LUCIANA: +First he denied you had in him no right. + +ADRIANA: +He meant he did me none; the more my spite. + +LUCIANA: +Then swore he that he was a stranger here. + +ADRIANA: +And true he swore, though yet forsworn he were. + +LUCIANA: +Then pleaded I for you. + +ADRIANA: +And what said he? + +LUCIANA: +That love I begg'd for you he begg'd of me. + +ADRIANA: +With what persuasion did he tempt thy love? + +LUCIANA: +With words that in an honest suit might move. +First he did praise my beauty, then my speech. + +ADRIANA: +Didst speak him fair? + +LUCIANA: +Have patience, I beseech. + +ADRIANA: +I cannot, nor I will not, hold me still; +My tongue, though not my heart, shall have his will. +He is deformed, crooked, old and sere, +Ill-faced, worse bodied, shapeless everywhere; +Vicious, ungentle, foolish, blunt, unkind; +Stigmatical in making, worse in mind. + +LUCIANA: +Who would be jealous then of such a one? +No evil lost is wail'd when it is gone. + +ADRIANA: +Ah, but I think him better than I say, +And yet would herein others' eyes were worse. +Far from her nest the lapwing cries away: +My heart prays for him, though my tongue do curse. + +DROMIO OF SYRACUSE: +Here! go; the desk, the purse! sweet, now, make haste. + +LUCIANA: +How hast thou lost thy breath? + +DROMIO OF SYRACUSE: +By running fast. + +ADRIANA: +Where is thy master, Dromio? is he well? + +DROMIO OF SYRACUSE: +No, he's in Tartar limbo, worse than hell. +A devil in an everlasting garment hath him; +One whose hard heart is button'd up with steel; +A fiend, a fury, pitiless and rough; +A wolf, nay, worse, a fellow all in buff; +A back-friend, a shoulder-clapper, one that +countermands +The passages of alleys, creeks and narrow lands; +A hound that runs counter and yet draws dryfoot well; +One that before the judgement carries poor souls to hell. + +ADRIANA: +Why, man, what is the matter? + +DROMIO OF SYRACUSE: +I do not know the matter: he is 'rested on the case. + +ADRIANA: +What, is he arrested? Tell me at whose suit. + +DROMIO OF SYRACUSE: +I know not at whose suit he is arrested well; +But he's in a suit of buff which 'rested him, that can I tell. +Will you send him, mistress, redemption, the money in his desk? + +ADRIANA: +Go fetch it, sister. +This I wonder at, +That he, unknown to me, should be in debt. +Tell me, was he arrested on a band? + +DROMIO OF SYRACUSE: +Not on a band, but on a stronger thing; +A chain, a chain! Do you not hear it ring? + +ADRIANA: +What, the chain? + +DROMIO OF SYRACUSE: +No, no, the bell: 'tis time that I were gone: +It was two ere I left him, and now the clock +strikes one. + +ADRIANA: +The hours come back! that did I never hear. + +DROMIO OF SYRACUSE: +O, yes; if any hour meet a sergeant, a' turns back for +very fear. + +ADRIANA: +As if Time were in debt! how fondly dost thou reason! + +DROMIO OF SYRACUSE: +Time is a very bankrupt, and owes more than he's +worth, to season. +Nay, he's a thief too: have you not heard men say +That Time comes stealing on by night and day? +If Time be in debt and theft, and a sergeant in the way, +Hath he not reason to turn back an hour in a day? + +ADRIANA: +Go, Dromio; there's the money, bear it straight; +And bring thy master home immediately. +Come, sister: I am press'd down with conceit-- +Conceit, my comfort and my injury. + +ANTIPHOLUS OF SYRACUSE: +There's not a man I meet but doth salute me +As if I were their well-acquainted friend; +And every one doth call me by my name. +Some tender money to me; some invite me; +Some other give me thanks for kindnesses; +Some offer me commodities to buy: +Even now a tailor call'd me in his shop +And show'd me silks that he had bought for me, +And therewithal took measure of my body. +Sure, these are but imaginary wiles +And Lapland sorcerers inhabit here. + +DROMIO OF SYRACUSE: +Master, here's the gold you sent me for. What, have +you got the picture of old Adam new-apparelled? + +ANTIPHOLUS OF SYRACUSE: +What gold is this? what Adam dost thou mean? + +DROMIO OF SYRACUSE: +Not that Adam that kept the Paradise but that Adam +that keeps the prison: he that goes in the calf's +skin that was killed for the Prodigal; he that came +behind you, sir, like an evil angel, and bid you +forsake your liberty. + +ANTIPHOLUS OF SYRACUSE: +I understand thee not. + +DROMIO OF SYRACUSE: +No? why, 'tis a plain case: he that went, like a +bass-viol, in a case of leather; the man, sir, +that, when gentlemen are tired, gives them a sob +and 'rests them; he, sir, that takes pity on decayed +men and gives them suits of durance; he that sets up +his rest to do more exploits with his mace than a +morris-pike. + +ANTIPHOLUS OF SYRACUSE: +What, thou meanest an officer? + +DROMIO OF SYRACUSE: +Ay, sir, the sergeant of the band, he that brings +any man to answer it that breaks his band; one that +thinks a man always going to bed, and says, 'God +give you good rest!' + +ANTIPHOLUS OF SYRACUSE: +Well, sir, there rest in your foolery. Is there any + +DROMIO OF SYRACUSE: +Why, sir, I brought you word an hour since that the +bark Expedition put forth to-night; and then were +you hindered by the sergeant, to tarry for the hoy +Delay. Here are the angels that you sent for to +deliver you. + +ANTIPHOLUS OF SYRACUSE: +The fellow is distract, and so am I; +And here we wander in illusions: +Some blessed power deliver us from hence! + +Courtezan: +Well met, well met, Master Antipholus. +I see, sir, you have found the goldsmith now: +Is that the chain you promised me to-day? + +ANTIPHOLUS OF SYRACUSE: +Satan, avoid! I charge thee, tempt me not. + +DROMIO OF SYRACUSE: +Master, is this Mistress Satan? + +ANTIPHOLUS OF SYRACUSE: +It is the devil. + +DROMIO OF SYRACUSE: +Nay, she is worse, she is the devil's dam; and here +she comes in the habit of a light wench: and thereof +comes that the wenches say 'God damn me;' that's as +much to say 'God make me a light wench.' It is +written, they appear to men like angels of light: +light is an effect of fire, and fire will burn; +ergo, light wenches will burn. Come not near her. + +Courtezan: +Your man and you are marvellous merry, sir. +Will you go with me? We'll mend our dinner here? + +DROMIO OF SYRACUSE: +Master, if you do, expect spoon-meat; or bespeak a +long spoon. + +ANTIPHOLUS OF SYRACUSE: +Why, Dromio? + +DROMIO OF SYRACUSE: +Marry, he must have a long spoon that must eat with +the devil. + +ANTIPHOLUS OF SYRACUSE: +Avoid then, fiend! what tell'st thou me of supping? +Thou art, as you are all, a sorceress: +I conjure thee to leave me and be gone. + +Courtezan: +Give me the ring of mine you had at dinner, +Or, for my diamond, the chain you promised, +And I'll be gone, sir, and not trouble you. + +DROMIO OF SYRACUSE: +Some devils ask but the parings of one's nail, +A rush, a hair, a drop of blood, a pin, +A nut, a cherry-stone; +But she, more covetous, would have a chain. +Master, be wise: an if you give it her, +The devil will shake her chain and fright us with it. + +Courtezan: +I pray you, sir, my ring, or else the chain: +I hope you do not mean to cheat me so. + +ANTIPHOLUS OF SYRACUSE: +Avaunt, thou witch! Come, Dromio, let us go. + +DROMIO OF SYRACUSE: +'Fly pride,' says the peacock: mistress, that you know. + +Courtezan: +Now, out of doubt Antipholus is mad, +Else would he never so demean himself. +A ring he hath of mine worth forty ducats, +And for the same he promised me a chain: +Both one and other he denies me now. +The reason that I gather he is mad, +Besides this present instance of his rage, +Is a mad tale he told to-day at dinner, +Of his own doors being shut against his entrance. +Belike his wife, acquainted with his fits, +On purpose shut the doors against his way. +My way is now to hie home to his house, +And tell his wife that, being lunatic, +He rush'd into my house and took perforce +My ring away. This course I fittest choose; +For forty ducats is too much to lose. + +ANTIPHOLUS OF EPHESUS: +Fear me not, man; I will not break away: +I'll give thee, ere I leave thee, so much money, +To warrant thee, as I am 'rested for. +My wife is in a wayward mood to-day, +And will not lightly trust the messenger +That I should be attach'd in Ephesus, +I tell you, 'twill sound harshly in her ears. +Here comes my man; I think he brings the money. +How now, sir! have you that I sent you for? + +DROMIO OF EPHESUS: +Here's that, I warrant you, will pay them all. + +ANTIPHOLUS OF EPHESUS: +But where's the money? + +DROMIO OF EPHESUS: +Why, sir, I gave the money for the rope. + +ANTIPHOLUS OF EPHESUS: +Five hundred ducats, villain, for a rope? + +DROMIO OF EPHESUS: +I'll serve you, sir, five hundred at the rate. + +ANTIPHOLUS OF EPHESUS: +To what end did I bid thee hie thee home? + +DROMIO OF EPHESUS: +To a rope's-end, sir; and to that end am I returned. + +ANTIPHOLUS OF EPHESUS: +And to that end, sir, I will welcome you. + +Officer: +Good sir, be patient. + +DROMIO OF EPHESUS: +Nay, 'tis for me to be patient; I am in adversity. + +Officer: +Good, now, hold thy tongue. + +DROMIO OF EPHESUS: +Nay, rather persuade him to hold his hands. + +ANTIPHOLUS OF EPHESUS: +Thou whoreson, senseless villain! + +DROMIO OF EPHESUS: +I would I were senseless, sir, that I might not feel +your blows. + +DROMIO OF EPHESUS: +I am an ass, indeed; you may prove it by my long +ears. I have served him from the hour of my +nativity to this instant, and have nothing at his +hands for my service but blows. When I am cold, he +heats me with beating; when I am warm, he cools me +with beating; I am waked with it when I sleep; +raised with it when I sit; driven out of doors with +it when I go from home; welcomed home with it when +I return; nay, I bear it on my shoulders, as a +beggar wont her brat; and, I think when he hath +lamed me, I shall beg with it from door to door. + +ANTIPHOLUS OF EPHESUS: +Come, go along; my wife is coming yonder. + +DROMIO OF EPHESUS: +Mistress, 'respice finem,' respect your end; or +rather, the prophecy like the parrot, 'beware the +rope's-end.' + +ANTIPHOLUS OF EPHESUS: +Wilt thou still talk? + +Courtezan: +How say you now? is not your husband mad? + +ADRIANA: +His incivility confirms no less. +Good Doctor Pinch, you are a conjurer; +Establish him in his true sense again, +And I will please you what you will demand. + +LUCIANA: +Alas, how fiery and how sharp he looks! + +Courtezan: +Mark how he trembles in his ecstasy! + +PINCH: +Give me your hand and let me feel your pulse. + +ANTIPHOLUS OF EPHESUS: +There is my hand, and let it feel your ear. + +PINCH: +I charge thee, Satan, housed within this man, +To yield possession to my holy prayers +And to thy state of darkness hie thee straight: +I conjure thee by all the saints in heaven! + +ANTIPHOLUS OF EPHESUS: +Peace, doting wizard, peace! I am not mad. + +ADRIANA: +O, that thou wert not, poor distressed soul! + +ANTIPHOLUS OF EPHESUS: +You minion, you, are these your customers? +Did this companion with the saffron face +Revel and feast it at my house to-day, +Whilst upon me the guilty doors were shut +And I denied to enter in my house? + +ADRIANA: +O husband, God doth know you dined at home; +Where would you had remain'd until this time, +Free from these slanders and this open shame! + +ANTIPHOLUS OF EPHESUS: +Dined at home! Thou villain, what sayest thou? + +DROMIO OF EPHESUS: +Sir, sooth to say, you did not dine at home. + +ANTIPHOLUS OF EPHESUS: +Were not my doors lock'd up and I shut out? + +DROMIO OF EPHESUS: +Perdie, your doors were lock'd and you shut out. + +ANTIPHOLUS OF EPHESUS: +And did not she herself revile me there? + +DROMIO OF EPHESUS: +Sans fable, she herself reviled you there. + +ANTIPHOLUS OF EPHESUS: +Did not her kitchen-maid rail, taunt, and scorn me? + +DROMIO OF EPHESUS: +Certes, she did; the kitchen-vestal scorn'd you. + +ANTIPHOLUS OF EPHESUS: +And did not I in rage depart from thence? + +DROMIO OF EPHESUS: +In verity you did; my bones bear witness, +That since have felt the vigour of his rage. + +ADRIANA: +Is't good to soothe him in these contraries? + +PINCH: +It is no shame: the fellow finds his vein, +And yielding to him humours well his frenzy. + +ANTIPHOLUS OF EPHESUS: +Thou hast suborn'd the goldsmith to arrest me. + +ADRIANA: +Alas, I sent you money to redeem you, +By Dromio here, who came in haste for it. + +DROMIO OF EPHESUS: +Money by me! heart and goodwill you might; +But surely master, not a rag of money. + +ANTIPHOLUS OF EPHESUS: +Went'st not thou to her for a purse of ducats? + +ADRIANA: +He came to me and I deliver'd it. + +LUCIANA: +And I am witness with her that she did. + +DROMIO OF EPHESUS: +God and the rope-maker bear me witness +That I was sent for nothing but a rope! + +PINCH: +Mistress, both man and master is possess'd; +I know it by their pale and deadly looks: +They must be bound and laid in some dark room. + +ANTIPHOLUS OF EPHESUS: +Say, wherefore didst thou lock me forth to-day? +And why dost thou deny the bag of gold? + +ADRIANA: +I did not, gentle husband, lock thee forth. + +DROMIO OF EPHESUS: +And, gentle master, I received no gold; +But I confess, sir, that we were lock'd out. + +ADRIANA: +Dissembling villain, thou speak'st false in both. + +ANTIPHOLUS OF EPHESUS: +Dissembling harlot, thou art false in all; +And art confederate with a damned pack +To make a loathsome abject scorn of me: +But with these nails I'll pluck out these false eyes +That would behold in me this shameful sport. + +ADRIANA: +O, bind him, bind him! let him not come near me. + +PINCH: +More company! The fiend is strong within him. + +LUCIANA: +Ay me, poor man, how pale and wan he looks! + +ANTIPHOLUS OF EPHESUS: +What, will you murder me? Thou gaoler, thou, +I am thy prisoner: wilt thou suffer them +To make a rescue? + +Officer: +Masters, let him go +He is my prisoner, and you shall not have him. + +PINCH: +Go bind this man, for he is frantic too. + +ADRIANA: +What wilt thou do, thou peevish officer? +Hast thou delight to see a wretched man +Do outrage and displeasure to himself? + +Officer: +He is my prisoner: if I let him go, +The debt he owes will be required of me. + +ADRIANA: +I will discharge thee ere I go from thee: +Bear me forthwith unto his creditor, +And, knowing how the debt grows, I will pay it. +Good master doctor, see him safe convey'd +Home to my house. O most unhappy day! + +ANTIPHOLUS OF EPHESUS: +O most unhappy strumpet! + +DROMIO OF EPHESUS: +Master, I am here entered in bond for you. + +ANTIPHOLUS OF EPHESUS: +Out on thee, villain! wherefore dost thou mad me? + +DROMIO OF EPHESUS: +Will you be bound for nothing? be mad, good master: +cry 'The devil!' + +LUCIANA: +God help, poor souls, how idly do they talk! + +ADRIANA: +Go bear him hence. Sister, go you with me. +Say now, whose suit is he arrested at? + +Officer: +One Angelo, a goldsmith: do you know him? + +ADRIANA: +I know the man. What is the sum he owes? + +Officer: +Two hundred ducats. + +ADRIANA: +Say, how grows it due? + +Officer: +Due for a chain your husband had of him. + +ADRIANA: +He did bespeak a chain for me, but had it not. + +Courtezan: +When as your husband all in rage to-day +Came to my house and took away my ring-- +The ring I saw upon his finger now-- +Straight after did I meet him with a chain. + +ADRIANA: +It may be so, but I did never see it. +Come, gaoler, bring me where the goldsmith is: +I long to know the truth hereof at large. + +LUCIANA: +God, for thy mercy! they are loose again. + +ADRIANA: +And come with naked swords. +Let's call more help to have them bound again. + +Officer: +Away! they'll kill us. + +ANTIPHOLUS OF SYRACUSE: +I see these witches are afraid of swords. + +DROMIO OF SYRACUSE: +She that would be your wife now ran from you. + +ANTIPHOLUS OF SYRACUSE: +Come to the Centaur; fetch our stuff from thence: +I long that we were safe and sound aboard. + +DROMIO OF SYRACUSE: +Faith, stay here this night; they will surely do us +no harm: you saw they speak us fair, give us gold: +methinks they are such a gentle nation that, but for +the mountain of mad flesh that claims marriage of +me, I could find in my heart to stay here still and +turn witch. + +ANTIPHOLUS OF SYRACUSE: +I will not stay to-night for all the town; +Therefore away, to get our stuff aboard. + +ANGELO: +I am sorry, sir, that I have hinder'd you; +But, I protest, he had the chain of me, +Though most dishonestly he doth deny it. + +Second Merchant: +How is the man esteemed here in the city? + +ANGELO: +Of very reverend reputation, sir, +Of credit infinite, highly beloved, +Second to none that lives here in the city: +His word might bear my wealth at any time. + +Second Merchant: +Speak softly; yonder, as I think, he walks. + +ANGELO: +'Tis so; and that self chain about his neck +Which he forswore most monstrously to have. +Good sir, draw near to me, I'll speak to him. +Signior Antipholus, I wonder much +That you would put me to this shame and trouble; +And, not without some scandal to yourself, +With circumstance and oaths so to deny +This chain which now you wear so openly: +Beside the charge, the shame, imprisonment, +You have done wrong to this my honest friend, +Who, but for staying on our controversy, +Had hoisted sail and put to sea to-day: +This chain you had of me; can you deny it? + +ANTIPHOLUS OF SYRACUSE: +I think I had; I never did deny it. + +Second Merchant: +Yes, that you did, sir, and forswore it too. + +ANTIPHOLUS OF SYRACUSE: +Who heard me to deny it or forswear it? + +Second Merchant: +These ears of mine, thou know'st did hear thee. +Fie on thee, wretch! 'tis pity that thou livest +To walk where any honest man resort. + +ANTIPHOLUS OF SYRACUSE: +Thou art a villain to impeach me thus: +I'll prove mine honour and mine honesty +Against thee presently, if thou darest stand. + +Second Merchant: +I dare, and do defy thee for a villain. + +ADRIANA: +Hold, hurt him not, for God's sake! he is mad. +Some get within him, take his sword away: +Bind Dromio too, and bear them to my house. + +DROMIO OF SYRACUSE: +Run, master, run; for God's sake, take a house! +This is some priory. In, or we are spoil'd! + +AEMELIA: +Be quiet, people. Wherefore throng you hither? + +ADRIANA: +To fetch my poor distracted husband hence. +Let us come in, that we may bind him fast +And bear him home for his recovery. + +ANGELO: +I knew he was not in his perfect wits. + +Second Merchant: +I am sorry now that I did draw on him. + +AEMELIA: +How long hath this possession held the man? + +ADRIANA: +This week he hath been heavy, sour, sad, +And much different from the man he was; +But till this afternoon his passion +Ne'er brake into extremity of rage. + +AEMELIA: +Hath he not lost much wealth by wreck of sea? +Buried some dear friend? Hath not else his eye +Stray'd his affection in unlawful love? +A sin prevailing much in youthful men, +Who give their eyes the liberty of gazing. +Which of these sorrows is he subject to? + +ADRIANA: +To none of these, except it be the last; +Namely, some love that drew him oft from home. + +AEMELIA: +You should for that have reprehended him. + +ADRIANA: +Why, so I did. + +AEMELIA: +Ay, but not rough enough. + +ADRIANA: +As roughly as my modesty would let me. + +AEMELIA: +Haply, in private. + +ADRIANA: +And in assemblies too. + +AEMELIA: +Ay, but not enough. + +ADRIANA: +It was the copy of our conference: +In bed he slept not for my urging it; +At board he fed not for my urging it; +Alone, it was the subject of my theme; +In company I often glanced it; +Still did I tell him it was vile and bad. + +AEMELIA: +And thereof came it that the man was mad. +The venom clamours of a jealous woman +Poisons more deadly than a mad dog's tooth. +It seems his sleeps were hinder'd by thy railing, +And therefore comes it that his head is light. +Thou say'st his meat was sauced with thy upbraidings: +Unquiet meals make ill digestions; +Thereof the raging fire of fever bred; +And what's a fever but a fit of madness? +Thou say'st his sports were hinderd by thy brawls: +Sweet recreation barr'd, what doth ensue +But moody and dull melancholy, +Kinsman to grim and comfortless despair, +And at her heels a huge infectious troop +Of pale distemperatures and foes to life? +In food, in sport and life-preserving rest +To be disturb'd, would mad or man or beast: +The consequence is then thy jealous fits +Have scared thy husband from the use of wits. + +LUCIANA: +She never reprehended him but mildly, +When he demean'd himself rough, rude and wildly. +Why bear you these rebukes and answer not? + +ADRIANA: +She did betray me to my own reproof. +Good people enter and lay hold on him. + +AEMELIA: +No, not a creature enters in my house. + +ADRIANA: +Then let your servants bring my husband forth. + +AEMELIA: +Neither: he took this place for sanctuary, +And it shall privilege him from your hands +Till I have brought him to his wits again, +Or lose my labour in assaying it. + +ADRIANA: +I will attend my husband, be his nurse, +Diet his sickness, for it is my office, +And will have no attorney but myself; +And therefore let me have him home with me. + +AEMELIA: +Be patient; for I will not let him stir +Till I have used the approved means I have, +With wholesome syrups, drugs and holy prayers, +To make of him a formal man again: +It is a branch and parcel of mine oath, +A charitable duty of my order. +Therefore depart and leave him here with me. + +ADRIANA: +I will not hence and leave my husband here: +And ill it doth beseem your holiness +To separate the husband and the wife. + +AEMELIA: +Be quiet and depart: thou shalt not have him. + +LUCIANA: +Complain unto the duke of this indignity. + +ADRIANA: +Come, go: I will fall prostrate at his feet +And never rise until my tears and prayers +Have won his grace to come in person hither +And take perforce my husband from the abbess. + +Second Merchant: +By this, I think, the dial points at five: +Anon, I'm sure, the duke himself in person +Comes this way to the melancholy vale, +The place of death and sorry execution, +Behind the ditches of the abbey here. + +ANGELO: +Upon what cause? + +Second Merchant: +To see a reverend Syracusian merchant, +Who put unluckily into this bay +Against the laws and statutes of this town, +Beheaded publicly for his offence. + +ANGELO: +See where they come: we will behold his death. + +LUCIANA: +Kneel to the duke before he pass the abbey. + +DUKE SOLINUS: +Yet once again proclaim it publicly, +If any friend will pay the sum for him, +He shall not die; so much we tender him. + +ADRIANA: +Justice, most sacred duke, against the abbess! + +DUKE SOLINUS: +She is a virtuous and a reverend lady: +It cannot be that she hath done thee wrong. + +ADRIANA: +May it please your grace, Antipholus, my husband, +Whom I made lord of me and all I had, +At your important letters,--this ill day +A most outrageous fit of madness took him; +That desperately he hurried through the street, +With him his bondman, all as mad as he-- +Doing displeasure to the citizens +By rushing in their houses, bearing thence +Rings, jewels, any thing his rage did like. +Once did I get him bound and sent him home, +Whilst to take order for the wrongs I went, +That here and there his fury had committed. +Anon, I wot not by what strong escape, +He broke from those that had the guard of him; +And with his mad attendant and himself, +Each one with ireful passion, with drawn swords, +Met us again and madly bent on us, +Chased us away; till, raising of more aid, +We came again to bind them. Then they fled +Into this abbey, whither we pursued them: +And here the abbess shuts the gates on us +And will not suffer us to fetch him out, +Nor send him forth that we may bear him hence. +Therefore, most gracious duke, with thy command +Let him be brought forth and borne hence for help. + +DUKE SOLINUS: +Long since thy husband served me in my wars, +And I to thee engaged a prince's word, +When thou didst make him master of thy bed, +To do him all the grace and good I could. +Go, some of you, knock at the abbey-gate +And bid the lady abbess come to me. +I will determine this before I stir. + +Servant: +O mistress, mistress, shift and save yourself! +My master and his man are both broke loose, +Beaten the maids a-row and bound the doctor +Whose beard they have singed off with brands of fire; +And ever, as it blazed, they threw on him +Great pails of puddled mire to quench the hair: +My master preaches patience to him and the while +His man with scissors nicks him like a fool, +And sure, unless you send some present help, +Between them they will kill the conjurer. + +ADRIANA: +Peace, fool! thy master and his man are here, +And that is false thou dost report to us. + +Servant: +Mistress, upon my life, I tell you true; +I have not breathed almost since I did see it. +He cries for you, and vows, if he can take you, +To scorch your face and to disfigure you. +Hark, hark! I hear him, mistress. fly, be gone! + +DUKE SOLINUS: +Come, stand by me; fear nothing. Guard with halberds! + +ADRIANA: +Ay me, it is my husband! Witness you, +That he is borne about invisible: +Even now we housed him in the abbey here; +And now he's there, past thought of human reason. + +ANTIPHOLUS OF EPHESUS: +Justice, most gracious duke, O, grant me justice! +Even for the service that long since I did thee, +When I bestrid thee in the wars and took +Deep scars to save thy life; even for the blood +That then I lost for thee, now grant me justice. + +AEGEON: +Unless the fear of death doth make me dote, +I see my son Antipholus and Dromio. + +ANTIPHOLUS OF EPHESUS: +Justice, sweet prince, against that woman there! +She whom thou gavest to me to be my wife, +That hath abused and dishonour'd me +Even in the strength and height of injury! +Beyond imagination is the wrong +That she this day hath shameless thrown on me. + +DUKE SOLINUS: +Discover how, and thou shalt find me just. + +ANTIPHOLUS OF EPHESUS: +This day, great duke, she shut the doors upon me, +While she with harlots feasted in my house. + +DUKE SOLINUS: +A grievous fault! Say, woman, didst thou so? + +ADRIANA: +No, my good lord: myself, he and my sister +To-day did dine together. So befall my soul +As this is false he burdens me withal! + +LUCIANA: +Ne'er may I look on day, nor sleep on night, +But she tells to your highness simple truth! + +ANGELO: +O perjured woman! They are both forsworn: +In this the madman justly chargeth them. + +ANTIPHOLUS OF EPHESUS: +My liege, I am advised what I say, +Neither disturbed with the effect of wine, +Nor heady-rash, provoked with raging ire, +Albeit my wrongs might make one wiser mad. +This woman lock'd me out this day from dinner: +That goldsmith there, were he not pack'd with her, +Could witness it, for he was with me then; +Who parted with me to go fetch a chain, +Promising to bring it to the Porpentine, +Where Balthazar and I did dine together. +Our dinner done, and he not coming thither, +I went to seek him: in the street I met him +And in his company that gentleman. +There did this perjured goldsmith swear me down +That I this day of him received the chain, +Which, God he knows, I saw not: for the which +He did arrest me with an officer. +I did obey, and sent my peasant home +For certain ducats: he with none return'd +Then fairly I bespoke the officer +To go in person with me to my house. +By the way we met +My wife, her sister, and a rabble more +Of vile confederates. Along with them +They brought one Pinch, a hungry lean-faced villain, +A mere anatomy, a mountebank, +A threadbare juggler and a fortune-teller, +A needy, hollow-eyed, sharp-looking wretch, +A dead-looking man: this pernicious slave, +Forsooth, took on him as a conjurer, +And, gazing in mine eyes, feeling my pulse, +And with no face, as 'twere, outfacing me, +Cries out, I was possess'd. Then all together +They fell upon me, bound me, bore me thence +And in a dark and dankish vault at home +There left me and my man, both bound together; +Till, gnawing with my teeth my bonds in sunder, +I gain'd my freedom, and immediately +Ran hither to your grace; whom I beseech +To give me ample satisfaction +For these deep shames and great indignities. + +ANGELO: +My lord, in truth, thus far I witness with him, +That he dined not at home, but was lock'd out. + +DUKE SOLINUS: +But had he such a chain of thee or no? + +ANGELO: +He had, my lord: and when he ran in here, +These people saw the chain about his neck. + +Second Merchant: +Besides, I will be sworn these ears of mine +Heard you confess you had the chain of him +After you first forswore it on the mart: +And thereupon I drew my sword on you; +And then you fled into this abbey here, +From whence, I think, you are come by miracle. + +ANTIPHOLUS OF EPHESUS: +I never came within these abbey-walls, +Nor ever didst thou draw thy sword on me: +I never saw the chain, so help me Heaven! +And this is false you burden me withal. + +DUKE SOLINUS: +Why, what an intricate impeach is this! +I think you all have drunk of Circe's cup. +If here you housed him, here he would have been; +If he were mad, he would not plead so coldly: +You say he dined at home; the goldsmith here +Denies that saying. Sirrah, what say you? + +DROMIO OF EPHESUS: +Sir, he dined with her there, at the Porpentine. + +Courtezan: +He did, and from my finger snatch'd that ring. + +ANTIPHOLUS OF EPHESUS: +'Tis true, my liege; this ring I had of her. + +DUKE SOLINUS: +Saw'st thou him enter at the abbey here? + +Courtezan: +As sure, my liege, as I do see your grace. + +DUKE SOLINUS: +Why, this is strange. Go call the abbess hither. +I think you are all mated or stark mad. + +AEGEON: +Most mighty duke, vouchsafe me speak a word: +Haply I see a friend will save my life +And pay the sum that may deliver me. + +DUKE SOLINUS: +Speak freely, Syracusian, what thou wilt. + +AEGEON: +Is not your name, sir, call'd Antipholus? +And is not that your bondman, Dromio? + +DROMIO OF EPHESUS: +Within this hour I was his bondman sir, +But he, I thank him, gnaw'd in two my cords: +Now am I Dromio and his man unbound. + +AEGEON: +I am sure you both of you remember me. + +DROMIO OF EPHESUS: +Ourselves we do remember, sir, by you; +For lately we were bound, as you are now +You are not Pinch's patient, are you, sir? + +AEGEON: +Why look you strange on me? you know me well. + +AEGEON: +O, grief hath changed me since you saw me last, +And careful hours with time's deformed hand +Have written strange defeatures in my face: +But tell me yet, dost thou not know my voice? + +ANTIPHOLUS OF EPHESUS: +Neither. + +AEGEON: +Dromio, nor thou? + +DROMIO OF EPHESUS: +No, trust me, sir, nor I. + +AEGEON: +I am sure thou dost. + +DROMIO OF EPHESUS: +Ay, sir, but I am sure I do not; and whatsoever a +man denies, you are now bound to believe him. + +AEGEON: +Not know my voice! O time's extremity, +Hast thou so crack'd and splitted my poor tongue +In seven short years, that here my only son +Knows not my feeble key of untuned cares? +Though now this grained face of mine be hid +In sap-consuming winter's drizzled snow, +And all the conduits of my blood froze up, +Yet hath my night of life some memory, +My wasting lamps some fading glimmer left, +My dull deaf ears a little use to hear: +All these old witnesses--I cannot err-- +Tell me thou art my son Antipholus. + +ANTIPHOLUS OF EPHESUS: +I never saw my father in my life. + +AEGEON: +But seven years since, in Syracusa, boy, +Thou know'st we parted: but perhaps, my son, +Thou shamest to acknowledge me in misery. + +ANTIPHOLUS OF EPHESUS: +The duke and all that know me in the city +Can witness with me that it is not so +I ne'er saw Syracusa in my life. + +DUKE SOLINUS: +I tell thee, Syracusian, twenty years +Have I been patron to Antipholus, +During which time he ne'er saw Syracusa: +I see thy age and dangers make thee dote. + +AEMELIA: +Most mighty duke, behold a man much wrong'd. + +ADRIANA: +I see two husbands, or mine eyes deceive me. + +DUKE SOLINUS: +One of these men is Genius to the other; +And so of these. Which is the natural man, +And which the spirit? who deciphers them? + +DROMIO OF SYRACUSE: +I, sir, am Dromio; command him away. + +DROMIO OF EPHESUS: +I, sir, am Dromio; pray, let me stay. + +ANTIPHOLUS OF SYRACUSE: +AEgeon art thou not? or else his ghost? + +DROMIO OF SYRACUSE: +O, my old master! who hath bound him here? + +AEMELIA: +Whoever bound him, I will loose his bonds +And gain a husband by his liberty. +Speak, old AEgeon, if thou be'st the man +That hadst a wife once call'd AEmilia +That bore thee at a burden two fair sons: +O, if thou be'st the same AEgeon, speak, +And speak unto the same AEmilia! + +AEGEON: +If I dream not, thou art AEmilia: +If thou art she, tell me where is that son +That floated with thee on the fatal raft? + +AEMELIA: +By men of Epidamnum he and I +And the twin Dromio all were taken up; +But by and by rude fishermen of Corinth +By force took Dromio and my son from them +And me they left with those of Epidamnum. +What then became of them I cannot tell +I to this fortune that you see me in. + +DUKE SOLINUS: +Why, here begins his morning story right; +These two Antipholuses, these two so like, +And these two Dromios, one in semblance,-- +Besides her urging of her wreck at sea,-- +These are the parents to these children, +Which accidentally are met together. +Antipholus, thou camest from Corinth first? + +ANTIPHOLUS OF SYRACUSE: +No, sir, not I; I came from Syracuse. + +DUKE SOLINUS: +Stay, stand apart; I know not which is which. + +ANTIPHOLUS OF EPHESUS: +I came from Corinth, my most gracious lord,-- + +DROMIO OF EPHESUS: +And I with him. + +ANTIPHOLUS OF EPHESUS: +Brought to this town by that most famous warrior, +Duke Menaphon, your most renowned uncle. + +ADRIANA: +Which of you two did dine with me to-day? + +ANTIPHOLUS OF SYRACUSE: +I, gentle mistress. + +ADRIANA: +And are not you my husband? + +ANTIPHOLUS OF EPHESUS: +No; I say nay to that. + +ANTIPHOLUS OF SYRACUSE: +And so do I; yet did she call me so: +And this fair gentlewoman, her sister here, +Did call me brother. +What I told you then, +I hope I shall have leisure to make good; +If this be not a dream I see and hear. + +ANGELO: +That is the chain, sir, which you had of me. + +ANTIPHOLUS OF SYRACUSE: +I think it be, sir; I deny it not. + +ANTIPHOLUS OF EPHESUS: +And you, sir, for this chain arrested me. + +ANGELO: +I think I did, sir; I deny it not. + +ADRIANA: +I sent you money, sir, to be your bail, +By Dromio; but I think he brought it not. + +DROMIO OF EPHESUS: +No, none by me. + +ANTIPHOLUS OF SYRACUSE: +This purse of ducats I received from you, +And Dromio, my man, did bring them me. +I see we still did meet each other's man, +And I was ta'en for him, and he for me, +And thereupon these errors are arose. + +ANTIPHOLUS OF EPHESUS: +These ducats pawn I for my father here. + +DUKE SOLINUS: +It shall not need; thy father hath his life. + +Courtezan: +Sir, I must have that diamond from you. + +ANTIPHOLUS OF EPHESUS: +There, take it; and much thanks for my good cheer. + +AEMELIA: +Renowned duke, vouchsafe to take the pains +To go with us into the abbey here +And hear at large discoursed all our fortunes: +And all that are assembled in this place, +That by this sympathized one day's error +Have suffer'd wrong, go keep us company, +And we shall make full satisfaction. +Thirty-three years have I but gone in travail +Of you, my sons; and till this present hour +My heavy burden ne'er delivered. +The duke, my husband and my children both, +And you the calendars of their nativity, +Go to a gossips' feast and go with me; +After so long grief, such festivity! + +DUKE SOLINUS: +With all my heart, I'll gossip at this feast. + +DROMIO OF SYRACUSE: +Master, shall I fetch your stuff from shipboard? + +ANTIPHOLUS OF EPHESUS: +Dromio, what stuff of mine hast thou embark'd? + +DROMIO OF SYRACUSE: +Your goods that lay at host, sir, in the Centaur. + +ANTIPHOLUS OF SYRACUSE: +He speaks to me. I am your master, Dromio: +Come, go with us; we'll look to that anon: +Embrace thy brother there; rejoice with him. + +DROMIO OF SYRACUSE: +There is a fat friend at your master's house, +That kitchen'd me for you to-day at dinner: +She now shall be my sister, not my wife. + +DROMIO OF EPHESUS: +Methinks you are my glass, and not my brother: +I see by you I am a sweet-faced youth. +Will you walk in to see their gossiping? + +DROMIO OF SYRACUSE: +Not I, sir; you are my elder. + +DROMIO OF EPHESUS: +That's a question: how shall we try it? + +DROMIO OF SYRACUSE: +We'll draw cuts for the senior: till then lead thou first. + +DROMIO OF EPHESUS: +Nay, then, thus: +We came into the world like brother and brother; +And now let's go hand in hand, not one before another. + +Chorus: +O for a Muse of fire, that would ascend +The brightest heaven of invention, +A kingdom for a stage, princes to act +And monarchs to behold the swelling scene! +Then should the warlike Harry, like himself, +Assume the port of Mars; and at his heels, +Leash'd in like hounds, should famine, sword and fire +Crouch for employment. But pardon, and gentles all, +The flat unraised spirits that have dared +On this unworthy scaffold to bring forth +So great an object: can this cockpit hold +The vasty fields of France? or may we cram +Within this wooden O the very casques +That did affright the air at Agincourt? +O, pardon! since a crooked figure may +Attest in little place a million; +And let us, ciphers to this great accompt, +On your imaginary forces work. +Suppose within the girdle of these walls +Are now confined two mighty monarchies, +Whose high upreared and abutting fronts +The perilous narrow ocean parts asunder: +Piece out our imperfections with your thoughts; +Into a thousand parts divide on man, +And make imaginary puissance; +Think when we talk of horses, that you see them +Printing their proud hoofs i' the receiving earth; +For 'tis your thoughts that now must deck our kings, +Carry them here and there; jumping o'er times, +Turning the accomplishment of many years +Into an hour-glass: for the which supply, +Admit me Chorus to this history; +Who prologue-like your humble patience pray, +Gently to hear, kindly to judge, our play. + +CANTERBURY: +My lord, I'll tell you; that self bill is urged, +Which in the eleventh year of the last king's reign +Was like, and had indeed against us pass'd, +But that the scambling and unquiet time +Did push it out of farther question. + +ELY: +But how, my lord, shall we resist it now? + +CANTERBURY: +It must be thought on. If it pass against us, +We lose the better half of our possession: +For all the temporal lands which men devout +By testament have given to the church +Would they strip from us; being valued thus: +As much as would maintain, to the king's honour, +Full fifteen earls and fifteen hundred knights, +Six thousand and two hundred good esquires; +And, to relief of lazars and weak age, +Of indigent faint souls past corporal toil. +A hundred almshouses right well supplied; +And to the coffers of the king beside, +A thousand pounds by the year: thus runs the bill. + +ELY: +This would drink deep. + +CANTERBURY: +'Twould drink the cup and all. + +ELY: +But what prevention? + +CANTERBURY: +The king is full of grace and fair regard. + +ELY: +And a true lover of the holy church. + +CANTERBURY: +The courses of his youth promised it not. +The breath no sooner left his father's body, +But that his wildness, mortified in him, +Seem'd to die too; yea, at that very moment +Consideration, like an angel, came +And whipp'd the offending Adam out of him, +Leaving his body as a paradise, +To envelop and contain celestial spirits. +Never was such a sudden scholar made; +Never came reformation in a flood, +With such a heady currance, scouring faults +Nor never Hydra-headed wilfulness +So soon did lose his seat and all at once +As in this king. + +ELY: +We are blessed in the change. + +CANTERBURY: +Hear him but reason in divinity, +And all-admiring with an inward wish +You would desire the king were made a prelate: +Hear him debate of commonwealth affairs, +You would say it hath been all in all his study: +List his discourse of war, and you shall hear +A fearful battle render'd you in music: +Turn him to any cause of policy, +The Gordian knot of it he will unloose, +Familiar as his garter: that, when he speaks, +The air, a charter'd libertine, is still, +And the mute wonder lurketh in men's ears, +To steal his sweet and honey'd sentences; +So that the art and practic part of life +Must be the mistress to this theoric: +Which is a wonder how his grace should glean it, +Since his addiction was to courses vain, +His companies unletter'd, rude and shallow, +His hours fill'd up with riots, banquets, sports, +And never noted in him any study, +Any retirement, any sequestration +From open haunts and popularity. + +ELY: +The strawberry grows underneath the nettle +And wholesome berries thrive and ripen best +Neighbour'd by fruit of baser quality: +And so the prince obscured his contemplation +Under the veil of wildness; which, no doubt, +Grew like the summer grass, fastest by night, +Unseen, yet crescive in his faculty. + +CANTERBURY: +It must be so; for miracles are ceased; +And therefore we must needs admit the means +How things are perfected. + +ELY: +But, my good lord, +How now for mitigation of this bill +Urged by the commons? Doth his majesty +Incline to it, or no? + +CANTERBURY: +He seems indifferent, +Or rather swaying more upon our part +Than cherishing the exhibiters against us; +For I have made an offer to his majesty, +Upon our spiritual convocation +And in regard of causes now in hand, +Which I have open'd to his grace at large, +As touching France, to give a greater sum +Than ever at one time the clergy yet +Did to his predecessors part withal. + +ELY: +How did this offer seem received, my lord? + +CANTERBURY: +With good acceptance of his majesty; +Save that there was not time enough to hear, +As I perceived his grace would fain have done, +The severals and unhidden passages +Of his true titles to some certain dukedoms +And generally to the crown and seat of France +Derived from Edward, his great-grandfather. + +ELY: +What was the impediment that broke this off? + +CANTERBURY: +The French ambassador upon that instant +Craved audience; and the hour, I think, is come +To give him hearing: is it four o'clock? + +ELY: +It is. + +CANTERBURY: +Then go we in, to know his embassy; +Which I could with a ready guess declare, +Before the Frenchman speak a word of it. + +ELY: +I'll wait upon you, and I long to hear it. + +KING HENRY V: +Where is my gracious Lord of Canterbury? + +EXETER: +Not here in presence. + +KING HENRY V: +Send for him, good uncle. + +WESTMORELAND: +Shall we call in the ambassador, my liege? + +KING HENRY V: +Not yet, my cousin: we would be resolved, +Before we hear him, of some things of weight +That task our thoughts, concerning us and France. + +CANTERBURY: +God and his angels guard your sacred throne +And make you long become it! + +KING HENRY V: +Sure, we thank you. +My learned lord, we pray you to proceed +And justly and religiously unfold +Why the law Salique that they have in France +Or should, or should not, bar us in our claim: +And God forbid, my dear and faithful lord, +That you should fashion, wrest, or bow your reading, +Or nicely charge your understanding soul +With opening titles miscreate, whose right +Suits not in native colours with the truth; +For God doth know how many now in health +Shall drop their blood in approbation +Of what your reverence shall incite us to. +Therefore take heed how you impawn our person, +How you awake our sleeping sword of war: +We charge you, in the name of God, take heed; +For never two such kingdoms did contend +Without much fall of blood; whose guiltless drops +Are every one a woe, a sore complaint +'Gainst him whose wrong gives edge unto the swords +That make such waste in brief mortality. +Under this conjuration, speak, my lord; +For we will hear, note and believe in heart +That what you speak is in your conscience wash'd +As pure as sin with baptism. + +CANTERBURY: +Then hear me, gracious sovereign, and you peers, +That owe yourselves, your lives and services +To this imperial throne. There is no bar +To make against your highness' claim to France +But this, which they produce from Pharamond, +'In terram Salicam mulieres ne succedant:' +'No woman shall succeed in Salique land:' +Which Salique land the French unjustly gloze +To be the realm of France, and Pharamond +The founder of this law and female bar. +Yet their own authors faithfully affirm +That the land Salique is in Germany, +Between the floods of Sala and of Elbe; +Where Charles the Great, having subdued the Saxons, +There left behind and settled certain French; +Who, holding in disdain the German women +For some dishonest manners of their life, +Establish'd then this law; to wit, no female +Should be inheritrix in Salique land: +Which Salique, as I said, 'twixt Elbe and Sala, +Is at this day in Germany call'd Meisen. +Then doth it well appear that Salique law +Was not devised for the realm of France: +Nor did the French possess the Salique land +Until four hundred one and twenty years +After defunction of King Pharamond, +Idly supposed the founder of this law; +Who died within the year of our redemption +Four hundred twenty-six; and Charles the Great +Subdued the Saxons, and did seat the French +Beyond the river Sala, in the year +Eight hundred five. Besides, their writers say, +King Pepin, which deposed Childeric, +Did, as heir general, being descended +Of Blithild, which was daughter to King Clothair, +Make claim and title to the crown of France. +Hugh Capet also, who usurped the crown +Of Charles the duke of Lorraine, sole heir male +Of the true line and stock of Charles the Great, +To find his title with some shows of truth, +'Through, in pure truth, it was corrupt and naught, +Convey'd himself as heir to the Lady Lingare, +Daughter to Charlemain, who was the son +To Lewis the emperor, and Lewis the son +Of Charles the Great. Also King Lewis the Tenth, +Who was sole heir to the usurper Capet, +Could not keep quiet in his conscience, +Wearing the crown of France, till satisfied +That fair Queen Isabel, his grandmother, +Was lineal of the Lady Ermengare, +Daughter to Charles the foresaid duke of Lorraine: +By the which marriage the line of Charles the Great +Was re-united to the crown of France. +So that, as clear as is the summer's sun. +King Pepin's title and Hugh Capet's claim, +King Lewis his satisfaction, all appear +To hold in right and title of the female: +So do the kings of France unto this day; +Howbeit they would hold up this Salique law +To bar your highness claiming from the female, +And rather choose to hide them in a net +Than amply to imbar their crooked titles +Usurp'd from you and your progenitors. + +KING HENRY V: +May I with right and conscience make this claim? + +CANTERBURY: +The sin upon my head, dread sovereign! +For in the book of Numbers is it writ, +When the man dies, let the inheritance +Descend unto the daughter. Gracious lord, +Stand for your own; unwind your bloody flag; +Look back into your mighty ancestors: +Go, my dread lord, to your great-grandsire's tomb, +From whom you claim; invoke his warlike spirit, +And your great-uncle's, Edward the Black Prince, +Who on the French ground play'd a tragedy, +Making defeat on the full power of France, +Whiles his most mighty father on a hill +Stood smiling to behold his lion's whelp +Forage in blood of French nobility. +O noble English. that could entertain +With half their forces the full Pride of France +And let another half stand laughing by, +All out of work and cold for action! + +ELY: +Awake remembrance of these valiant dead +And with your puissant arm renew their feats: +You are their heir; you sit upon their throne; +The blood and courage that renowned them +Runs in your veins; and my thrice-puissant liege +Is in the very May-morn of his youth, +Ripe for exploits and mighty enterprises. + +EXETER: +Your brother kings and monarchs of the earth +Do all expect that you should rouse yourself, +As did the former lions of your blood. + +WESTMORELAND: +They know your grace hath cause and means and might; +So hath your highness; never king of England +Had nobles richer and more loyal subjects, +Whose hearts have left their bodies here in England +And lie pavilion'd in the fields of France. + +CANTERBURY: +O, let their bodies follow, my dear liege, +With blood and sword and fire to win your right; +In aid whereof we of the spiritualty +Will raise your highness such a mighty sum +As never did the clergy at one time +Bring in to any of your ancestors. + +KING HENRY V: +We must not only arm to invade the French, +But lay down our proportions to defend +Against the Scot, who will make road upon us +With all advantages. + +CANTERBURY: +They of those marches, gracious sovereign, +Shall be a wall sufficient to defend +Our inland from the pilfering borderers. + +KING HENRY V: +We do not mean the coursing snatchers only, +But fear the main intendment of the Scot, +Who hath been still a giddy neighbour to us; +For you shall read that my great-grandfather +Never went with his forces into France +But that the Scot on his unfurnish'd kingdom +Came pouring, like the tide into a breach, +With ample and brim fulness of his force, +Galling the gleaned land with hot assays, +Girding with grievous siege castles and towns; +That England, being empty of defence, +Hath shook and trembled at the ill neighbourhood. + +CANTERBURY: +She hath been then more fear'd than harm'd, my liege; +For hear her but exampled by herself: +When all her chivalry hath been in France +And she a mourning widow of her nobles, +She hath herself not only well defended +But taken and impounded as a stray +The King of Scots; whom she did send to France, +To fill King Edward's fame with prisoner kings +And make her chronicle as rich with praise +As is the ooze and bottom of the sea +With sunken wreck and sunless treasuries. + +WESTMORELAND: +But there's a saying very old and true, +'If that you will France win, +Then with Scotland first begin:' +For once the eagle England being in prey, +To her unguarded nest the weasel Scot +Comes sneaking and so sucks her princely eggs, +Playing the mouse in absence of the cat, +To tear and havoc more than she can eat. + +EXETER: +It follows then the cat must stay at home: +Yet that is but a crush'd necessity, +Since we have locks to safeguard necessaries, +And pretty traps to catch the petty thieves. +While that the armed hand doth fight abroad, +The advised head defends itself at home; +For government, though high and low and lower, +Put into parts, doth keep in one consent, +Congreeing in a full and natural close, +Like music. + +CANTERBURY: +Therefore doth heaven divide +The state of man in divers functions, +Setting endeavour in continual motion; +To which is fixed, as an aim or butt, +Obedience: for so work the honey-bees, +Creatures that by a rule in nature teach +The act of order to a peopled kingdom. +They have a king and officers of sorts; +Where some, like magistrates, correct at home, +Others, like merchants, venture trade abroad, +Others, like soldiers, armed in their stings, +Make boot upon the summer's velvet buds, +Which pillage they with merry march bring home +To the tent-royal of their emperor; +Who, busied in his majesty, surveys +The singing masons building roofs of gold, +The civil citizens kneading up the honey, +The poor mechanic porters crowding in +Their heavy burdens at his narrow gate, +The sad-eyed justice, with his surly hum, +Delivering o'er to executors pale +The lazy yawning drone. I this infer, +That many things, having full reference +To one consent, may work contrariously: +As many arrows, loosed several ways, +Come to one mark; as many ways meet in one town; +As many fresh streams meet in one salt sea; +As many lines close in the dial's centre; +So may a thousand actions, once afoot. +End in one purpose, and be all well borne +Without defeat. Therefore to France, my liege. +Divide your happy England into four; +Whereof take you one quarter into France, +And you withal shall make all Gallia shake. +If we, with thrice such powers left at home, +Cannot defend our own doors from the dog, +Let us be worried and our nation lose +The name of hardiness and policy. + +KING HENRY V: +Call in the messengers sent from the Dauphin. +Now are we well resolved; and, by God's help, +And yours, the noble sinews of our power, +France being ours, we'll bend it to our awe, +Or break it all to pieces: or there we'll sit, +Ruling in large and ample empery +O'er France and all her almost kingly dukedoms, +Or lay these bones in an unworthy urn, +Tombless, with no remembrance over them: +Either our history shall with full mouth +Speak freely of our acts, or else our grave, +Like Turkish mute, shall have a tongueless mouth, +Not worshipp'd with a waxen epitaph. +Now are we well prepared to know the pleasure +Of our fair cousin Dauphin; for we hear +Your greeting is from him, not from the king. + +First Ambassador: +May't please your majesty to give us leave +Freely to render what we have in charge; +Or shall we sparingly show you far off +The Dauphin's meaning and our embassy? + +KING HENRY V: +We are no tyrant, but a Christian king; +Unto whose grace our passion is as subject +As are our wretches fetter'd in our prisons: +Therefore with frank and with uncurbed plainness +Tell us the Dauphin's mind. + +First Ambassador: +Thus, then, in few. +Your highness, lately sending into France, +Did claim some certain dukedoms, in the right +Of your great predecessor, King Edward the Third. +In answer of which claim, the prince our master +Says that you savour too much of your youth, +And bids you be advised there's nought in France +That can be with a nimble galliard won; +You cannot revel into dukedoms there. +He therefore sends you, meeter for your spirit, +This tun of treasure; and, in lieu of this, +Desires you let the dukedoms that you claim +Hear no more of you. This the Dauphin speaks. + +KING HENRY V: +What treasure, uncle? + +EXETER: +Tennis-balls, my liege. + +KING HENRY V: +We are glad the Dauphin is so pleasant with us; +His present and your pains we thank you for: +When we have march'd our rackets to these balls, +We will, in France, by God's grace, play a set +Shall strike his father's crown into the hazard. +Tell him he hath made a match with such a wrangler +That all the courts of France will be disturb'd +With chaces. And we understand him well, +How he comes o'er us with our wilder days, +Not measuring what use we made of them. +We never valued this poor seat of England; +And therefore, living hence, did give ourself +To barbarous licence; as 'tis ever common +That men are merriest when they are from home. +But tell the Dauphin I will keep my state, +Be like a king and show my sail of greatness +When I do rouse me in my throne of France: +For that I have laid by my majesty +And plodded like a man for working-days, +But I will rise there with so full a glory +That I will dazzle all the eyes of France, +Yea, strike the Dauphin blind to look on us. +And tell the pleasant prince this mock of his +Hath turn'd his balls to gun-stones; and his soul +Shall stand sore charged for the wasteful vengeance +That shall fly with them: for many a thousand widows +Shall this his mock mock out of their dear husbands; +Mock mothers from their sons, mock castles down; +And some are yet ungotten and unborn +That shall have cause to curse the Dauphin's scorn. +But this lies all within the will of God, +To whom I do appeal; and in whose name +Tell you the Dauphin I am coming on, +To venge me as I may and to put forth +My rightful hand in a well-hallow'd cause. +So get you hence in peace; and tell the Dauphin +His jest will savour but of shallow wit, +When thousands weep more than did laugh at it. +Convey them with safe conduct. Fare you well. + +EXETER: +This was a merry message. + +KING HENRY V: +We hope to make the sender blush at it. +Therefore, my lords, omit no happy hour +That may give furtherance to our expedition; +For we have now no thought in us but France, +Save those to God, that run before our business. +Therefore let our proportions for these wars +Be soon collected and all things thought upon +That may with reasonable swiftness add +More feathers to our wings; for, God before, +We'll chide this Dauphin at his father's door. +Therefore let every man now task his thought, +That this fair action may on foot be brought. + +Chorus: +Now all the youth of England are on fire, +And silken dalliance in the wardrobe lies: +Now thrive the armourers, and honour's thought +Reigns solely in the breast of every man: +They sell the pasture now to buy the horse, +Following the mirror of all Christian kings, +With winged heels, as English Mercuries. +For now sits Expectation in the air, +And hides a sword from hilts unto the point +With crowns imperial, crowns and coronets, +Promised to Harry and his followers. +The French, advised by good intelligence +Of this most dreadful preparation, +Shake in their fear and with pale policy +Seek to divert the English purposes. +O England! model to thy inward greatness, +Like little body with a mighty heart, +What mightst thou do, that honour would thee do, +Were all thy children kind and natural! +But see thy fault! France hath in thee found out +A nest of hollow bosoms, which he fills +With treacherous crowns; and three corrupted men, +One, Richard Earl of Cambridge, and the second, +Henry Lord Scroop of Masham, and the third, +Sir Thomas Grey, knight, of Northumberland, +Have, for the gilt of France,--O guilt indeed! +Confirm'd conspiracy with fearful France; +And by their hands this grace of kings must die, +If hell and treason hold their promises, +Ere he take ship for France, and in Southampton. +Linger your patience on; and we'll digest +The abuse of distance; force a play: +The sum is paid; the traitors are agreed; +The king is set from London; and the scene +Is now transported, gentles, to Southampton; +There is the playhouse now, there must you sit: +And thence to France shall we convey you safe, +And bring you back, charming the narrow seas +To give you gentle pass; for, if we may, +We'll not offend one stomach with our play. +But, till the king come forth, and not till then, +Unto Southampton do we shift our scene. + +BARDOLPH: +Well met, Corporal Nym. + +NYM: +Good morrow, Lieutenant Bardolph. + +BARDOLPH: +What, are Ancient Pistol and you friends yet? + +NYM: +For my part, I care not: I say little; but when +time shall serve, there shall be smiles; but that +shall be as it may. I dare not fight; but I will +wink and hold out mine iron: it is a simple one; but +what though? it will toast cheese, and it will +endure cold as another man's sword will: and +there's an end. + +BARDOLPH: +I will bestow a breakfast to make you friends; and +we'll be all three sworn brothers to France: let it +be so, good Corporal Nym. + +NYM: +Faith, I will live so long as I may, that's the +certain of it; and when I cannot live any longer, I +will do as I may: that is my rest, that is the +rendezvous of it. + +BARDOLPH: +It is certain, corporal, that he is married to Nell +Quickly: and certainly she did you wrong; for you +were troth-plight to her. + +NYM: +I cannot tell: things must be as they may: men may +sleep, and they may have their throats about them at +that time; and some say knives have edges. It must +be as it may: though patience be a tired mare, yet +she will plod. There must be conclusions. Well, I +cannot tell. + +BARDOLPH: +Here comes Ancient Pistol and his wife: good +corporal, be patient here. How now, mine host Pistol! + +PISTOL: +Base tike, call'st thou me host? Now, by this hand, +I swear, I scorn the term; Nor shall my Nell keep lodgers. + +Hostess: +No, by my troth, not long; for we cannot lodge and +board a dozen or fourteen gentlewomen that live +honestly by the prick of their needles, but it will +be thought we keep a bawdy house straight. +O well a day, Lady, if he be not drawn now! we +shall see wilful adultery and murder committed. + +BARDOLPH: +Good lieutenant! good corporal! offer nothing here. + +NYM: +Pish! + +PISTOL: +Pish for thee, Iceland dog! thou prick-ear'd cur of Iceland! + +Hostess: +Good Corporal Nym, show thy valour, and put up your sword. + +NYM: +Will you shog off? I would have you solus. + +PISTOL: +'Solus,' egregious dog? O viper vile! +The 'solus' in thy most mervailous face; +The 'solus' in thy teeth, and in thy throat, +And in thy hateful lungs, yea, in thy maw, perdy, +And, which is worse, within thy nasty mouth! +I do retort the 'solus' in thy bowels; +For I can take, and Pistol's cock is up, +And flashing fire will follow. + +NYM: +I am not Barbason; you cannot conjure me. I have an +humour to knock you indifferently well. If you grow +foul with me, Pistol, I will scour you with my +rapier, as I may, in fair terms: if you would walk +off, I would prick your guts a little, in good +terms, as I may: and that's the humour of it. + +PISTOL: +O braggart vile and damned furious wight! +The grave doth gape, and doting death is near; +Therefore exhale. + +BARDOLPH: +Hear me, hear me what I say: he that strikes the +first stroke, I'll run him up to the hilts, as I am a soldier. + +PISTOL: +An oath of mickle might; and fury shall abate. +Give me thy fist, thy fore-foot to me give: +Thy spirits are most tall. + +NYM: +I will cut thy throat, one time or other, in fair +terms: that is the humour of it. + +PISTOL: +'Couple a gorge!' +That is the word. I thee defy again. +O hound of Crete, think'st thou my spouse to get? +No; to the spital go, +And from the powdering tub of infamy +Fetch forth the lazar kite of Cressid's kind, +Doll Tearsheet she by name, and her espouse: +I have, and I will hold, the quondam Quickly +For the only she; and--pauca, there's enough. Go to. + +Boy: +Mine host Pistol, you must come to my master, and +you, hostess: he is very sick, and would to bed. +Good Bardolph, put thy face between his sheets, and +do the office of a warming-pan. Faith, he's very ill. + +BARDOLPH: +Away, you rogue! + +Hostess: +By my troth, he'll yield the crow a pudding one of +these days. The king has killed his heart. Good +husband, come home presently. + +BARDOLPH: +Come, shall I make you two friends? We must to +France together: why the devil should we keep +knives to cut one another's throats? + +PISTOL: +Let floods o'erswell, and fiends for food howl on! + +NYM: +You'll pay me the eight shillings I won of you at betting? + +PISTOL: +Base is the slave that pays. + +NYM: +That now I will have: that's the humour of it. + +PISTOL: +As manhood shall compound: push home. + +BARDOLPH: +By this sword, he that makes the first thrust, I'll +kill him; by this sword, I will. + +PISTOL: +Sword is an oath, and oaths must have their course. + +BARDOLPH: +Corporal Nym, an thou wilt be friends, be friends: +an thou wilt not, why, then, be enemies with me too. +Prithee, put up. + +NYM: +I shall have my eight shillings I won of you at betting? + +PISTOL: +A noble shalt thou have, and present pay; +And liquor likewise will I give to thee, +And friendship shall combine, and brotherhood: +I'll live by Nym, and Nym shall live by me; +Is not this just? for I shall sutler be +Unto the camp, and profits will accrue. +Give me thy hand. + +NYM: +I shall have my noble? + +PISTOL: +In cash most justly paid. + +NYM: +Well, then, that's the humour of't. + +Hostess: +As ever you came of women, come in quickly to Sir +John. Ah, poor heart! he is so shaked of a burning +quotidian tertian, that it is most lamentable to +behold. Sweet men, come to him. + +NYM: +The king hath run bad humours on the knight; that's +the even of it. + +PISTOL: +Nym, thou hast spoke the right; +His heart is fracted and corroborate. + +NYM: +The king is a good king: but it must be as it may; +he passes some humours and careers. + +PISTOL: +Let us condole the knight; for, lambkins we will live. + +BEDFORD: +'Fore God, his grace is bold, to trust these traitors. + +EXETER: +They shall be apprehended by and by. + +WESTMORELAND: +How smooth and even they do bear themselves! +As if allegiance in their bosoms sat, +Crowned with faith and constant loyalty. + +BEDFORD: +The king hath note of all that they intend, +By interception which they dream not of. + +EXETER: +Nay, but the man that was his bedfellow, +Whom he hath dull'd and cloy'd with gracious favours, +That he should, for a foreign purse, so sell +His sovereign's life to death and treachery. + +KING HENRY V: +Now sits the wind fair, and we will aboard. +My Lord of Cambridge, and my kind Lord of Masham, +And you, my gentle knight, give me your thoughts: +Think you not that the powers we bear with us +Will cut their passage through the force of France, +Doing the execution and the act +For which we have in head assembled them? + +SCROOP: +No doubt, my liege, if each man do his best. + +KING HENRY V: +I doubt not that; since we are well persuaded +We carry not a heart with us from hence +That grows not in a fair consent with ours, +Nor leave not one behind that doth not wish +Success and conquest to attend on us. + +CAMBRIDGE: +Never was monarch better fear'd and loved +Than is your majesty: there's not, I think, a subject +That sits in heart-grief and uneasiness +Under the sweet shade of your government. + +GREY: +True: those that were your father's enemies +Have steep'd their galls in honey and do serve you +With hearts create of duty and of zeal. + +KING HENRY V: +We therefore have great cause of thankfulness; +And shall forget the office of our hand, +Sooner than quittance of desert and merit +According to the weight and worthiness. + +SCROOP: +So service shall with steeled sinews toil, +And labour shall refresh itself with hope, +To do your grace incessant services. + +KING HENRY V: +We judge no less. Uncle of Exeter, +Enlarge the man committed yesterday, +That rail'd against our person: we consider +it was excess of wine that set him on; +And on his more advice we pardon him. + +SCROOP: +That's mercy, but too much security: +Let him be punish'd, sovereign, lest example +Breed, by his sufferance, more of such a kind. + +KING HENRY V: +O, let us yet be merciful. + +CAMBRIDGE: +So may your highness, and yet punish too. + +GREY: +Sir, +You show great mercy, if you give him life, +After the taste of much correction. + +KING HENRY V: +Alas, your too much love and care of me +Are heavy orisons 'gainst this poor wretch! +If little faults, proceeding on distemper, +Shall not be wink'd at, how shall we stretch our eye +When capital crimes, chew'd, swallow'd and digested, +Appear before us? We'll yet enlarge that man, +Though Cambridge, Scroop and Grey, in their dear care +And tender preservation of our person, +Would have him punished. And now to our French causes: +Who are the late commissioners? + +CAMBRIDGE: +I one, my lord: +Your highness bade me ask for it to-day. + +SCROOP: +So did you me, my liege. + +GREY: +And I, my royal sovereign. + +KING HENRY V: +Then, Richard Earl of Cambridge, there is yours; +There yours, Lord Scroop of Masham; and, sir knight, +Grey of Northumberland, this same is yours: +Read them; and know, I know your worthiness. +My Lord of Westmoreland, and uncle Exeter, +We will aboard to night. Why, how now, gentlemen! +What see you in those papers that you lose +So much complexion? Look ye, how they change! +Their cheeks are paper. Why, what read you there +That hath so cowarded and chased your blood +Out of appearance? + +CAMBRIDGE: +I do confess my fault; +And do submit me to your highness' mercy. + +GREY: +To which we all appeal. + +KING HENRY V: +The mercy that was quick in us but late, +By your own counsel is suppress'd and kill'd: +You must not dare, for shame, to talk of mercy; +For your own reasons turn into your bosoms, +As dogs upon their masters, worrying you. +See you, my princes, and my noble peers, +These English monsters! My Lord of Cambridge here, +You know how apt our love was to accord +To furnish him with all appertinents +Belonging to his honour; and this man +Hath, for a few light crowns, lightly conspired, +And sworn unto the practises of France, +To kill us here in Hampton: to the which +This knight, no less for bounty bound to us +Than Cambridge is, hath likewise sworn. But, O, +What shall I say to thee, Lord Scroop? thou cruel, +Ingrateful, savage and inhuman creature! +Thou that didst bear the key of all my counsels, +That knew'st the very bottom of my soul, +That almost mightst have coin'd me into gold, +Wouldst thou have practised on me for thy use, +May it be possible, that foreign hire +Could out of thee extract one spark of evil +That might annoy my finger? 'tis so strange, +That, though the truth of it stands off as gross +As black and white, my eye will scarcely see it. +Treason and murder ever kept together, +As two yoke-devils sworn to either's purpose, +Working so grossly in a natural cause, +That admiration did not whoop at them: +But thou, 'gainst all proportion, didst bring in +Wonder to wait on treason and on murder: +And whatsoever cunning fiend it was +That wrought upon thee so preposterously +Hath got the voice in hell for excellence: +All other devils that suggest by treasons +Do botch and bungle up damnation +With patches, colours, and with forms being fetch'd +From glistering semblances of piety; +But he that temper'd thee bade thee stand up, +Gave thee no instance why thou shouldst do treason, +Unless to dub thee with the name of traitor. +If that same demon that hath gull'd thee thus +Should with his lion gait walk the whole world, +He might return to vasty Tartar back, +And tell the legions 'I can never win +A soul so easy as that Englishman's.' +O, how hast thou with 'jealousy infected +The sweetness of affiance! Show men dutiful? +Why, so didst thou: seem they grave and learned? +Why, so didst thou: come they of noble family? +Why, so didst thou: seem they religious? +Why, so didst thou: or are they spare in diet, +Free from gross passion or of mirth or anger, +Constant in spirit, not swerving with the blood, +Garnish'd and deck'd in modest complement, +Not working with the eye without the ear, +And but in purged judgment trusting neither? +Such and so finely bolted didst thou seem: +And thus thy fall hath left a kind of blot, +To mark the full-fraught man and best indued +With some suspicion. I will weep for thee; +For this revolt of thine, methinks, is like +Another fall of man. Their faults are open: +Arrest them to the answer of the law; +And God acquit them of their practises! + +EXETER: +I arrest thee of high treason, by the name of +Richard Earl of Cambridge. +I arrest thee of high treason, by the name of +Henry Lord Scroop of Masham. +I arrest thee of high treason, by the name of +Thomas Grey, knight, of Northumberland. + +SCROOP: +Our purposes God justly hath discover'd; +And I repent my fault more than my death; +Which I beseech your highness to forgive, +Although my body pay the price of it. + +CAMBRIDGE: +For me, the gold of France did not seduce; +Although I did admit it as a motive +The sooner to effect what I intended: +But God be thanked for prevention; +Which I in sufferance heartily will rejoice, +Beseeching God and you to pardon me. + +GREY: +Never did faithful subject more rejoice +At the discovery of most dangerous treason +Than I do at this hour joy o'er myself. +Prevented from a damned enterprise: +My fault, but not my body, pardon, sovereign. + +KING HENRY V: +God quit you in his mercy! Hear your sentence. +You have conspired against our royal person, +Join'd with an enemy proclaim'd and from his coffers +Received the golden earnest of our death; +Wherein you would have sold your king to slaughter, +His princes and his peers to servitude, +His subjects to oppression and contempt +And his whole kingdom into desolation. +Touching our person seek we no revenge; +But we our kingdom's safety must so tender, +Whose ruin you have sought, that to her laws +We do deliver you. Get you therefore hence, +Poor miserable wretches, to your death: +The taste whereof, God of his mercy give +You patience to endure, and true repentance +Of all your dear offences! Bear them hence. +Now, lords, for France; the enterprise whereof +Shall be to you, as us, like glorious. +We doubt not of a fair and lucky war, +Since God so graciously hath brought to light +This dangerous treason lurking in our way +To hinder our beginnings. We doubt not now +But every rub is smoothed on our way. +Then forth, dear countrymen: let us deliver +Our puissance into the hand of God, +Putting it straight in expedition. +Cheerly to sea; the signs of war advance: +No king of England, if not king of France. + +Hostess: +Prithee, honey-sweet husband, let me bring thee to Staines. + +PISTOL: +No; for my manly heart doth yearn. +Bardolph, be blithe: Nym, rouse thy vaunting veins: +Boy, bristle thy courage up; for Falstaff he is dead, +And we must yearn therefore. + +BARDOLPH: +Would I were with him, wheresome'er he is, either in +heaven or in hell! + +Hostess: +Nay, sure, he's not in hell: he's in Arthur's +bosom, if ever man went to Arthur's bosom. A' made +a finer end and went away an it had been any +christom child; a' parted even just between twelve +and one, even at the turning o' the tide: for after +I saw him fumble with the sheets and play with +flowers and smile upon his fingers' ends, I knew +there was but one way; for his nose was as sharp as +a pen, and a' babbled of green fields. 'How now, +sir John!' quoth I 'what, man! be o' good +cheer.' So a' cried out 'God, God, God!' three or +four times. Now I, to comfort him, bid him a' +should not think of God; I hoped there was no need +to trouble himself with any such thoughts yet. So +a' bade me lay more clothes on his feet: I put my +hand into the bed and felt them, and they were as +cold as any stone; then I felt to his knees, and +they were as cold as any stone, and so upward and +upward, and all was as cold as any stone. + +NYM: +They say he cried out of sack. + +Hostess: +Ay, that a' did. + +BARDOLPH: +And of women. + +Hostess: +Nay, that a' did not. + +Boy: +Yes, that a' did; and said they were devils +incarnate. + +Hostess: +A' could never abide carnation; 'twas a colour he +never liked. + +Boy: +A' said once, the devil would have him about women. + +Hostess: +A' did in some sort, indeed, handle women; but then +he was rheumatic, and talked of the whore of Babylon. + +Boy: +Do you not remember, a' saw a flea stick upon +Bardolph's nose, and a' said it was a black soul +burning in hell-fire? + +BARDOLPH: +Well, the fuel is gone that maintained that fire: +that's all the riches I got in his service. + +NYM: +Shall we shog? the king will be gone from +Southampton. + +PISTOL: +Come, let's away. My love, give me thy lips. +Look to my chattels and my movables: +Let senses rule; the word is 'Pitch and Pay:' +Trust none; +For oaths are straws, men's faiths are wafer-cakes, +And hold-fast is the only dog, my duck: +Therefore, Caveto be thy counsellor. +Go, clear thy crystals. Yoke-fellows in arms, +Let us to France; like horse-leeches, my boys, +To suck, to suck, the very blood to suck! + +Boy: +And that's but unwholesome food they say. + +PISTOL: +Touch her soft mouth, and march. + +BARDOLPH: +Farewell, hostess. + +NYM: +I cannot kiss, that is the humour of it; but, adieu. + +PISTOL: +Let housewifery appear: keep close, I thee command. + +Hostess: +Farewell; adieu. + +KING OF FRANCE: +Thus comes the English with full power upon us; +And more than carefully it us concerns +To answer royally in our defences. +Therefore the Dukes of Berri and of Bretagne, +Of Brabant and of Orleans, shall make forth, +And you, Prince Dauphin, with all swift dispatch, +To line and new repair our towns of war +With men of courage and with means defendant; +For England his approaches makes as fierce +As waters to the sucking of a gulf. +It fits us then to be as provident +As fear may teach us out of late examples +Left by the fatal and neglected English +Upon our fields. + +DAUPHIN: +My most redoubted father, +It is most meet we arm us 'gainst the foe; +For peace itself should not so dull a kingdom, +Though war nor no known quarrel were in question, +But that defences, musters, preparations, +Should be maintain'd, assembled and collected, +As were a war in expectation. +Therefore, I say 'tis meet we all go forth +To view the sick and feeble parts of France: +And let us do it with no show of fear; +No, with no more than if we heard that England +Were busied with a Whitsun morris-dance: +For, my good liege, she is so idly king'd, +Her sceptre so fantastically borne +By a vain, giddy, shallow, humorous youth, +That fear attends her not. + +Constable: +O peace, Prince Dauphin! +You are too much mistaken in this king: +Question your grace the late ambassadors, +With what great state he heard their embassy, +How well supplied with noble counsellors, +How modest in exception, and withal +How terrible in constant resolution, +And you shall find his vanities forespent +Were but the outside of the Roman Brutus, +Covering discretion with a coat of folly; +As gardeners do with ordure hide those roots +That shall first spring and be most delicate. + +DAUPHIN: +Well, 'tis not so, my lord high constable; +But though we think it so, it is no matter: +In cases of defence 'tis best to weigh +The enemy more mighty than he seems: +So the proportions of defence are fill'd; +Which of a weak or niggardly projection +Doth, like a miser, spoil his coat with scanting +A little cloth. + +KING OF FRANCE: +Think we King Harry strong; +And, princes, look you strongly arm to meet him. +The kindred of him hath been flesh'd upon us; +And he is bred out of that bloody strain +That haunted us in our familiar paths: +Witness our too much memorable shame +When Cressy battle fatally was struck, +And all our princes captiv'd by the hand +Of that black name, Edward, Black Prince of Wales; +Whiles that his mountain sire, on mountain standing, +Up in the air, crown'd with the golden sun, +Saw his heroical seed, and smiled to see him, +Mangle the work of nature and deface +The patterns that by God and by French fathers +Had twenty years been made. This is a stem +Of that victorious stock; and let us fear +The native mightiness and fate of him. + +Messenger: +Ambassadors from Harry King of England +Do crave admittance to your majesty. + +KING OF FRANCE: +We'll give them present audience. Go, and bring them. +You see this chase is hotly follow'd, friends. + +DAUPHIN: +Turn head, and stop pursuit; for coward dogs +Most spend their mouths when what they seem to threaten +Runs far before them. Good my sovereign, +Take up the English short, and let them know +Of what a monarchy you are the head: +Self-love, my liege, is not so vile a sin +As self-neglecting. + +KING OF FRANCE: +From our brother England? + +EXETER: +From him; and thus he greets your majesty. +He wills you, in the name of God Almighty, +That you divest yourself, and lay apart +The borrow'd glories that by gift of heaven, +By law of nature and of nations, 'long +To him and to his heirs; namely, the crown +And all wide-stretched honours that pertain +By custom and the ordinance of times +Unto the crown of France. That you may know +'Tis no sinister nor no awkward claim, +Pick'd from the worm-holes of long-vanish'd days, +Nor from the dust of old oblivion raked, +He sends you this most memorable line, +In every branch truly demonstrative; +Willing to overlook this pedigree: +And when you find him evenly derived +From his most famed of famous ancestors, +Edward the Third, he bids you then resign +Your crown and kingdom, indirectly held +From him the native and true challenger. + +KING OF FRANCE: +Or else what follows? + +EXETER: +Bloody constraint; for if you hide the crown +Even in your hearts, there will he rake for it: +Therefore in fierce tempest is he coming, +In thunder and in earthquake, like a Jove, +That, if requiring fail, he will compel; +And bids you, in the bowels of the Lord, +Deliver up the crown, and to take mercy +On the poor souls for whom this hungry war +Opens his vasty jaws; and on your head +Turning the widows' tears, the orphans' cries +The dead men's blood, the pining maidens groans, +For husbands, fathers and betrothed lovers, +That shall be swallow'd in this controversy. +This is his claim, his threatening and my message; +Unless the Dauphin be in presence here, +To whom expressly I bring greeting too. + +KING OF FRANCE: +For us, we will consider of this further: +To-morrow shall you bear our full intent +Back to our brother England. + +DAUPHIN: +For the Dauphin, +I stand here for him: what to him from England? + +EXETER: +Scorn and defiance; slight regard, contempt, +And any thing that may not misbecome +The mighty sender, doth he prize you at. +Thus says my king; an' if your father's highness +Do not, in grant of all demands at large, +Sweeten the bitter mock you sent his majesty, +He'll call you to so hot an answer of it, +That caves and womby vaultages of France +Shall chide your trespass and return your mock +In second accent of his ordnance. + +DAUPHIN: +Say, if my father render fair return, +It is against my will; for I desire +Nothing but odds with England: to that end, +As matching to his youth and vanity, +I did present him with the Paris balls. + +EXETER: +He'll make your Paris Louvre shake for it, +Were it the mistress-court of mighty Europe: +And, be assured, you'll find a difference, +As we his subjects have in wonder found, +Between the promise of his greener days +And these he masters now: now he weighs time +Even to the utmost grain: that you shall read +In your own losses, if he stay in France. + +KING OF FRANCE: +To-morrow shall you know our mind at full. + +EXETER: +Dispatch us with all speed, lest that our king +Come here himself to question our delay; +For he is footed in this land already. + +KING OF FRANCE: +You shall be soon dispatch's with fair conditions: +A night is but small breath and little pause +To answer matters of this consequence. + +Chorus: +Thus with imagined wing our swift scene flies +In motion of no less celerity +Than that of thought. Suppose that you have seen +The well-appointed king at Hampton pier +Embark his royalty; and his brave fleet +With silken streamers the young Phoebus fanning: +Play with your fancies, and in them behold +Upon the hempen tackle ship-boys climbing; +Hear the shrill whistle which doth order give +To sounds confused; behold the threaden sails, +Borne with the invisible and creeping wind, +Draw the huge bottoms through the furrow'd sea, +Breasting the lofty surge: O, do but think +You stand upon the ravage and behold +A city on the inconstant billows dancing; +For so appears this fleet majestical, +Holding due course to Harfleur. Follow, follow: +Grapple your minds to sternage of this navy, +And leave your England, as dead midnight still, +Guarded with grandsires, babies and old women, +Either past or not arrived to pith and puissance; +For who is he, whose chin is but enrich'd +With one appearing hair, that will not follow +These cull'd and choice-drawn cavaliers to France? +Work, work your thoughts, and therein see a siege; +Behold the ordnance on their carriages, +With fatal mouths gaping on girded Harfleur. +Suppose the ambassador from the French comes back; +Tells Harry that the king doth offer him +Katharine his daughter, and with her, to dowry, +Some petty and unprofitable dukedoms. +The offer likes not: and the nimble gunner +With linstock now the devilish cannon touches, +And down goes all before them. Still be kind, +And eke out our performance with your mind. + +KING HENRY V: +Once more unto the breach, dear friends, once more; +Or close the wall up with our English dead. +In peace there's nothing so becomes a man +As modest stillness and humility: +But when the blast of war blows in our ears, +Then imitate the action of the tiger; +Stiffen the sinews, summon up the blood, +Disguise fair nature with hard-favour'd rage; +Then lend the eye a terrible aspect; +Let pry through the portage of the head +Like the brass cannon; let the brow o'erwhelm it +As fearfully as doth a galled rock +O'erhang and jutty his confounded base, +Swill'd with the wild and wasteful ocean. +Now set the teeth and stretch the nostril wide, +Hold hard the breath and bend up every spirit +To his full height. On, on, you noblest English. +Whose blood is fet from fathers of war-proof! +Fathers that, like so many Alexanders, +Have in these parts from morn till even fought +And sheathed their swords for lack of argument: +Dishonour not your mothers; now attest +That those whom you call'd fathers did beget you. +Be copy now to men of grosser blood, +And teach them how to war. And you, good yeoman, +Whose limbs were made in England, show us here +The mettle of your pasture; let us swear +That you are worth your breeding; which I doubt not; +For there is none of you so mean and base, +That hath not noble lustre in your eyes. +I see you stand like greyhounds in the slips, +Straining upon the start. The game's afoot: +Follow your spirit, and upon this charge +Cry 'God for Harry, England, and Saint George!' + +BARDOLPH: +On, on, on, on, on! to the breach, to the breach! + +NYM: +Pray thee, corporal, stay: the knocks are too hot; +and, for mine own part, I have not a case of lives: +the humour of it is too hot, that is the very +plain-song of it. + +PISTOL: +The plain-song is most just: for humours do abound: +Knocks go and come; God's vassals drop and die; +And sword and shield, +In bloody field, +Doth win immortal fame. + +Boy: +Would I were in an alehouse in London! I would give +all my fame for a pot of ale and safety. + +PISTOL: +And I: +If wishes would prevail with me, +My purpose should not fail with me, +But thither would I hie. + +Boy: +As duly, but not as truly, +As bird doth sing on bough. + +FLUELLEN: +Up to the breach, you dogs! avaunt, you cullions! + +PISTOL: +Be merciful, great duke, to men of mould. +Abate thy rage, abate thy manly rage, +Abate thy rage, great duke! +Good bawcock, bate thy rage; use lenity, sweet chuck! + +NYM: +These be good humours! your honour wins bad humours. + +Boy: +As young as I am, I have observed these three +swashers. I am boy to them all three: but all they +three, though they would serve me, could not be man +to me; for indeed three such antics do not amount to +a man. For Bardolph, he is white-livered and +red-faced; by the means whereof a' faces it out, but +fights not. For Pistol, he hath a killing tongue +and a quiet sword; by the means whereof a' breaks +words, and keeps whole weapons. For Nym, he hath +heard that men of few words are the best men; and +therefore he scorns to say his prayers, lest a' +should be thought a coward: but his few bad words +are matched with as few good deeds; for a' never +broke any man's head but his own, and that was +against a post when he was drunk. They will steal +any thing, and call it purchase. Bardolph stole a +lute-case, bore it twelve leagues, and sold it for +three half pence. Nym and Bardolph are sworn +brothers in filching, and in Calais they stole a +fire-shovel: I knew by that piece of service the +men would carry coals. They would have me as +familiar with men's pockets as their gloves or their +handkerchers: which makes much against my manhood, +if I should take from another's pocket to put into +mine; for it is plain pocketing up of wrongs. I +must leave them, and seek some better service: +their villany goes against my weak stomach, and +therefore I must cast it up. + +GOWER: +Captain Fluellen, you must come presently to the +mines; the Duke of Gloucester would speak with you. + +FLUELLEN: +To the mines! tell you the duke, it is not so good +to come to the mines; for, look you, the mines is +not according to the disciplines of the war: the +concavities of it is not sufficient; for, look you, +the athversary, you may discuss unto the duke, look +you, is digt himself four yard under the +countermines: by Cheshu, I think a' will plough up +all, if there is not better directions. + +GOWER: +The Duke of Gloucester, to whom the order of the +siege is given, is altogether directed by an +Irishman, a very valiant gentleman, i' faith. + +FLUELLEN: +It is Captain Macmorris, is it not? + +GOWER: +I think it be. + +FLUELLEN: +By Cheshu, he is an ass, as in the world: I will +verify as much in his beard: be has no more +directions in the true disciplines of the wars, look +you, of the Roman disciplines, than is a puppy-dog. + +GOWER: +Here a' comes; and the Scots captain, Captain Jamy, with him. + +FLUELLEN: +Captain Jamy is a marvellous falourous gentleman, +that is certain; and of great expedition and +knowledge in th' aunchient wars, upon my particular +knowledge of his directions: by Cheshu, he will +maintain his argument as well as any military man in +the world, in the disciplines of the pristine wars +of the Romans. + +JAMY: +I say gud-day, Captain Fluellen. + +FLUELLEN: +God-den to your worship, good Captain James. + +GOWER: +How now, Captain Macmorris! have you quit the +mines? have the pioneers given o'er? + +MACMORRIS: +By Chrish, la! tish ill done: the work ish give +over, the trompet sound the retreat. By my hand, I +swear, and my father's soul, the work ish ill done; +it ish give over: I would have blowed up the town, so +Chrish save me, la! in an hour: O, tish ill done, +tish ill done; by my hand, tish ill done! + +FLUELLEN: +Captain Macmorris, I beseech you now, will you +voutsafe me, look you, a few disputations with you, +as partly touching or concerning the disciplines of +the war, the Roman wars, in the way of argument, +look you, and friendly communication; partly to +satisfy my opinion, and partly for the satisfaction, +look you, of my mind, as touching the direction of +the military discipline; that is the point. + +JAMY: +It sall be vary gud, gud feith, gud captains bath: +and I sall quit you with gud leve, as I may pick +occasion; that sall I, marry. + +MACMORRIS: +It is no time to discourse, so Chrish save me: the +day is hot, and the weather, and the wars, and the +king, and the dukes: it is no time to discourse. The +town is beseeched, and the trumpet call us to the +breach; and we talk, and, be Chrish, do nothing: +'tis shame for us all: so God sa' me, 'tis shame to +stand still; it is shame, by my hand: and there is +throats to be cut, and works to be done; and there +ish nothing done, so Chrish sa' me, la! + +JAMY: +By the mess, ere theise eyes of mine take themselves +to slomber, ay'll de gud service, or ay'll lig i' +the grund for it; ay, or go to death; and ay'll pay +'t as valourously as I may, that sall I suerly do, +that is the breff and the long. Marry, I wad full +fain hear some question 'tween you tway. + +FLUELLEN: +Captain Macmorris, I think, look you, under your +correction, there is not many of your nation-- + +MACMORRIS: +Of my nation! What ish my nation? Ish a villain, +and a bastard, and a knave, and a rascal. What ish +my nation? Who talks of my nation? + +FLUELLEN: +Look you, if you take the matter otherwise than is +meant, Captain Macmorris, peradventure I shall think +you do not use me with that affability as in +discretion you ought to use me, look you: being as +good a man as yourself, both in the disciplines of +war, and in the derivation of my birth, and in +other particularities. + +MACMORRIS: +I do not know you so good a man as myself: so +Chrish save me, I will cut off your head. + +GOWER: +Gentlemen both, you will mistake each other. + +JAMY: +A! that's a foul fault. + +GOWER: +The town sounds a parley. + +FLUELLEN: +Captain Macmorris, when there is more better +opportunity to be required, look you, I will be so +bold as to tell you I know the disciplines of war; +and there is an end. + +KING HENRY V: +How yet resolves the governor of the town? +This is the latest parle we will admit; +Therefore to our best mercy give yourselves; +Or like to men proud of destruction +Defy us to our worst: for, as I am a soldier, +A name that in my thoughts becomes me best, +If I begin the battery once again, +I will not leave the half-achieved Harfleur +Till in her ashes she lie buried. +The gates of mercy shall be all shut up, +And the flesh'd soldier, rough and hard of heart, +In liberty of bloody hand shall range +With conscience wide as hell, mowing like grass +Your fresh-fair virgins and your flowering infants. +What is it then to me, if impious war, +Array'd in flames like to the prince of fiends, +Do, with his smirch'd complexion, all fell feats +Enlink'd to waste and desolation? +What is't to me, when you yourselves are cause, +If your pure maidens fall into the hand +Of hot and forcing violation? +What rein can hold licentious wickedness +When down the hill he holds his fierce career? +We may as bootless spend our vain command +Upon the enraged soldiers in their spoil +As send precepts to the leviathan +To come ashore. Therefore, you men of Harfleur, +Take pity of your town and of your people, +Whiles yet my soldiers are in my command; +Whiles yet the cool and temperate wind of grace +O'erblows the filthy and contagious clouds +Of heady murder, spoil and villany. +If not, why, in a moment look to see +The blind and bloody soldier with foul hand +Defile the locks of your shrill-shrieking daughters; +Your fathers taken by the silver beards, +And their most reverend heads dash'd to the walls, +Your naked infants spitted upon pikes, +Whiles the mad mothers with their howls confused +Do break the clouds, as did the wives of Jewry +At Herod's bloody-hunting slaughtermen. +What say you? will you yield, and this avoid, +Or, guilty in defence, be thus destroy'd? + +GOVERNOR: +Our expectation hath this day an end: +The Dauphin, whom of succors we entreated, +Returns us that his powers are yet not ready +To raise so great a siege. Therefore, great king, +We yield our town and lives to thy soft mercy. +Enter our gates; dispose of us and ours; +For we no longer are defensible. + +KING HENRY V: +Open your gates. Come, uncle Exeter, +Go you and enter Harfleur; there remain, +And fortify it strongly 'gainst the French: +Use mercy to them all. For us, dear uncle, +The winter coming on and sickness growing +Upon our soldiers, we will retire to Calais. +To-night in Harfleur we will be your guest; +To-morrow for the march are we addrest. + +KATHARINE: +Alice, tu as ete en Angleterre, et tu parles bien le langage. + +ALICE: +Un peu, madame. + +KATHARINE: +Je te prie, m'enseignez: il faut que j'apprenne a +parler. Comment appelez-vous la main en Anglois? + +ALICE: +La main? elle est appelee de hand. + +KATHARINE: +De hand. Et les doigts? + +ALICE: +Les doigts? ma foi, j'oublie les doigts; mais je me +souviendrai. Les doigts? je pense qu'ils sont +appeles de fingres; oui, de fingres. + +KATHARINE: +La main, de hand; les doigts, de fingres. Je pense +que je suis le bon ecolier; j'ai gagne deux mots +d'Anglois vitement. Comment appelez-vous les ongles? + +ALICE: +Les ongles? nous les appelons de nails. + +KATHARINE: +De nails. Ecoutez; dites-moi, si je parle bien: de +hand, de fingres, et de nails. + +ALICE: +C'est bien dit, madame; il est fort bon Anglois. + +KATHARINE: +Dites-moi l'Anglois pour le bras. + +ALICE: +De arm, madame. + +KATHARINE: +Et le coude? + +ALICE: +De elbow. + +KATHARINE: +De elbow. Je m'en fais la repetition de tous les +mots que vous m'avez appris des a present. + +ALICE: +Il est trop difficile, madame, comme je pense. + +KATHARINE: +Excusez-moi, Alice; ecoutez: de hand, de fingres, +de nails, de arma, de bilbow. + +ALICE: +De elbow, madame. + +KATHARINE: +O Seigneur Dieu, je m'en oublie! de elbow. Comment +appelez-vous le col? + +ALICE: +De neck, madame. + +KATHARINE: +De nick. Et le menton? + +ALICE: +De chin. + +KATHARINE: +De sin. Le col, de nick; de menton, de sin. + +ALICE: +Oui. Sauf votre honneur, en verite, vous prononcez +les mots aussi droit que les natifs d'Angleterre. + +KATHARINE: +Je ne doute point d'apprendre, par la grace de Dieu, +et en peu de temps. + +ALICE: +N'avez vous pas deja oublie ce que je vous ai enseigne? + +KATHARINE: +Non, je reciterai a vous promptement: de hand, de +fingres, de mails-- + +ALICE: +De nails, madame. + +KATHARINE: +De nails, de arm, de ilbow. + +ALICE: +Sauf votre honneur, de elbow. + +KATHARINE: +Ainsi dis-je; de elbow, de nick, et de sin. Comment +appelez-vous le pied et la robe? + +ALICE: +De foot, madame; et de coun. + +KATHARINE: +De foot et de coun! O Seigneur Dieu! ce sont mots +de son mauvais, corruptible, gros, et impudique, et +non pour les dames d'honneur d'user: je ne voudrais +prononcer ces mots devant les seigneurs de France +pour tout le monde. Foh! le foot et le coun! +Neanmoins, je reciterai une autre fois ma lecon +ensemble: de hand, de fingres, de nails, de arm, de +elbow, de nick, de sin, de foot, de coun. + +ALICE: +Excellent, madame! + +KATHARINE: +C'est assez pour une fois: allons-nous a diner. + +KING OF FRANCE: +'Tis certain he hath pass'd the river Somme. + +Constable: +And if he be not fought withal, my lord, +Let us not live in France; let us quit all +And give our vineyards to a barbarous people. + +DAUPHIN: +O Dieu vivant! shall a few sprays of us, +The emptying of our fathers' luxury, +Our scions, put in wild and savage stock, +Spirt up so suddenly into the clouds, +And overlook their grafters? + +BOURBON: +Normans, but bastard Normans, Norman bastards! +Mort de ma vie! if they march along +Unfought withal, but I will sell my dukedom, +To buy a slobbery and a dirty farm +In that nook-shotten isle of Albion. + +Constable: +Dieu de batailles! where have they this mettle? +Is not their climate foggy, raw and dull, +On whom, as in despite, the sun looks pale, +Killing their fruit with frowns? Can sodden water, +A drench for sur-rein'd jades, their barley-broth, +Decoct their cold blood to such valiant heat? +And shall our quick blood, spirited with wine, +Seem frosty? O, for honour of our land, +Let us not hang like roping icicles +Upon our houses' thatch, whiles a more frosty people +Sweat drops of gallant youth in our rich fields! +Poor we may call them in their native lords. + +DAUPHIN: +By faith and honour, +Our madams mock at us, and plainly say +Our mettle is bred out and they will give +Their bodies to the lust of English youth +To new-store France with bastard warriors. + +BOURBON: +They bid us to the English dancing-schools, +And teach lavoltas high and swift corantos; +Saying our grace is only in our heels, +And that we are most lofty runaways. + +KING OF FRANCE: +Where is Montjoy the herald? speed him hence: +Let him greet England with our sharp defiance. +Up, princes! and, with spirit of honour edged +More sharper than your swords, hie to the field: +Charles Delabreth, high constable of France; +You Dukes of Orleans, Bourbon, and of Berri, +Alencon, Brabant, Bar, and Burgundy; +Jaques Chatillon, Rambures, Vaudemont, +Beaumont, Grandpre, Roussi, and Fauconberg, +Foix, Lestrale, Bouciqualt, and Charolois; +High dukes, great princes, barons, lords and knights, +For your great seats now quit you of great shames. +Bar Harry England, that sweeps through our land +With pennons painted in the blood of Harfleur: +Rush on his host, as doth the melted snow +Upon the valleys, whose low vassal seat +The Alps doth spit and void his rheum upon: +Go down upon him, you have power enough, +And in a captive chariot into Rouen +Bring him our prisoner. + +Constable: +This becomes the great. +Sorry am I his numbers are so few, +His soldiers sick and famish'd in their march, +For I am sure, when he shall see our army, +He'll drop his heart into the sink of fear +And for achievement offer us his ransom. + +KING OF FRANCE: +Therefore, lord constable, haste on Montjoy. +And let him say to England that we send +To know what willing ransom he will give. +Prince Dauphin, you shall stay with us in Rouen. + +DAUPHIN: +Not so, I do beseech your majesty. + +KING OF FRANCE: +Be patient, for you shall remain with us. +Now forth, lord constable and princes all, +And quickly bring us word of England's fall. + +GOWER: +How now, Captain Fluellen! come you from the bridge? + +FLUELLEN: +I assure you, there is very excellent services +committed at the bridge. + +GOWER: +Is the Duke of Exeter safe? + +FLUELLEN: +The Duke of Exeter is as magnanimous as Agamemnon; +and a man that I love and honour with my soul, and my +heart, and my duty, and my life, and my living, and +my uttermost power: he is not-God be praised and +blessed!--any hurt in the world; but keeps the +bridge most valiantly, with excellent discipline. +There is an aunchient lieutenant there at the +pridge, I think in my very conscience he is as +valiant a man as Mark Antony; and he is a man of no +estimation in the world; but did see him do as +gallant service. + +GOWER: +What do you call him? + +FLUELLEN: +He is called Aunchient Pistol. + +GOWER: +I know him not. + +FLUELLEN: +Here is the man. + +PISTOL: +Captain, I thee beseech to do me favours: +The Duke of Exeter doth love thee well. + +FLUELLEN: +Ay, I praise God; and I have merited some love at +his hands. + +PISTOL: +Bardolph, a soldier, firm and sound of heart, +And of buxom valour, hath, by cruel fate, +And giddy Fortune's furious fickle wheel, +That goddess blind, +That stands upon the rolling restless stone-- + +FLUELLEN: +By your patience, Aunchient Pistol. Fortune is +painted blind, with a muffler afore her eyes, to +signify to you that Fortune is blind; and she is +painted also with a wheel, to signify to you, which +is the moral of it, that she is turning, and +inconstant, and mutability, and variation: and her +foot, look you, is fixed upon a spherical stone, +which rolls, and rolls, and rolls: in good truth, +the poet makes a most excellent description of it: +Fortune is an excellent moral. + +PISTOL: +Fortune is Bardolph's foe, and frowns on him; +For he hath stolen a pax, and hanged must a' be: +A damned death! +Let gallows gape for dog; let man go free +And let not hemp his wind-pipe suffocate: +But Exeter hath given the doom of death +For pax of little price. +Therefore, go speak: the duke will hear thy voice: +And let not Bardolph's vital thread be cut +With edge of penny cord and vile reproach: +Speak, captain, for his life, and I will thee requite. + +FLUELLEN: +Aunchient Pistol, I do partly understand your meaning. + +PISTOL: +Why then, rejoice therefore. + +FLUELLEN: +Certainly, aunchient, it is not a thing to rejoice +at: for if, look you, he were my brother, I would +desire the duke to use his good pleasure, and put +him to execution; for discipline ought to be used. + +PISTOL: +Die and be damn'd! and figo for thy friendship! + +FLUELLEN: +It is well. + +PISTOL: +The fig of Spain! + +FLUELLEN: +Very good. + +GOWER: +Why, this is an arrant counterfeit rascal; I +remember him now; a bawd, a cutpurse. + +FLUELLEN: +I'll assure you, a' uttered as brave words at the +bridge as you shall see in a summer's day. But it +is very well; what he has spoke to me, that is well, +I warrant you, when time is serve. + +GOWER: +Why, 'tis a gull, a fool, a rogue, that now and then +goes to the wars, to grace himself at his return +into London under the form of a soldier. And such +fellows are perfect in the great commanders' names: +and they will learn you by rote where services were +done; at such and such a sconce, at such a breach, +at such a convoy; who came off bravely, who was +shot, who disgraced, what terms the enemy stood on; +and this they con perfectly in the phrase of war, +which they trick up with new-tuned oaths: and what +a beard of the general's cut and a horrid suit of +the camp will do among foaming bottles and +ale-washed wits, is wonderful to be thought on. But +you must learn to know such slanders of the age, or +else you may be marvellously mistook. + +FLUELLEN: +I tell you what, Captain Gower; I do perceive he is +not the man that he would gladly make show to the +world he is: if I find a hole in his coat, I will +tell him my mind. +Hark you, the king is coming, and I must speak with +him from the pridge. +God pless your majesty! + +KING HENRY V: +How now, Fluellen! camest thou from the bridge? + +FLUELLEN: +Ay, so please your majesty. The Duke of Exeter has +very gallantly maintained the pridge: the French is +gone off, look you; and there is gallant and most +prave passages; marry, th' athversary was have +possession of the pridge; but he is enforced to +retire, and the Duke of Exeter is master of the +pridge: I can tell your majesty, the duke is a +prave man. + +KING HENRY V: +What men have you lost, Fluellen? + +FLUELLEN: +The perdition of th' athversary hath been very +great, reasonable great: marry, for my part, I +think the duke hath lost never a man, but one that +is like to be executed for robbing a church, one +Bardolph, if your majesty know the man: his face is +all bubukles, and whelks, and knobs, and flames o' +fire: and his lips blows at his nose, and it is like +a coal of fire, sometimes plue and sometimes red; +but his nose is executed and his fire's out. + +KING HENRY V: +We would have all such offenders so cut off: and we +give express charge, that in our marches through the +country, there be nothing compelled from the +villages, nothing taken but paid for, none of the +French upbraided or abused in disdainful language; +for when lenity and cruelty play for a kingdom, the +gentler gamester is the soonest winner. + +MONTJOY: +You know me by my habit. + +KING HENRY V: +Well then I know thee: what shall I know of thee? + +MONTJOY: +My master's mind. + +KING HENRY V: +Unfold it. + +MONTJOY: +Thus says my king: Say thou to Harry of England: +Though we seemed dead, we did but sleep: advantage +is a better soldier than rashness. Tell him we +could have rebuked him at Harfleur, but that we +thought not good to bruise an injury till it were +full ripe: now we speak upon our cue, and our voice +is imperial: England shall repent his folly, see +his weakness, and admire our sufferance. Bid him +therefore consider of his ransom; which must +proportion the losses we have borne, the subjects we +have lost, the disgrace we have digested; which in +weight to re-answer, his pettiness would bow under. +For our losses, his exchequer is too poor; for the +effusion of our blood, the muster of his kingdom too +faint a number; and for our disgrace, his own +person, kneeling at our feet, but a weak and +worthless satisfaction. To this add defiance: and +tell him, for conclusion, he hath betrayed his +followers, whose condemnation is pronounced. So far +my king and master; so much my office. + +KING HENRY V: +What is thy name? I know thy quality. + +MONTJOY: +Montjoy. + +KING HENRY V: +Thou dost thy office fairly. Turn thee back. +And tell thy king I do not seek him now; +But could be willing to march on to Calais +Without impeachment: for, to say the sooth, +Though 'tis no wisdom to confess so much +Unto an enemy of craft and vantage, +My people are with sickness much enfeebled, +My numbers lessened, and those few I have +Almost no better than so many French; +Who when they were in health, I tell thee, herald, +I thought upon one pair of English legs +Did march three Frenchmen. Yet, forgive me, God, +That I do brag thus! This your air of France +Hath blown that vice in me: I must repent. +Go therefore, tell thy master here I am; +My ransom is this frail and worthless trunk, +My army but a weak and sickly guard; +Yet, God before, tell him we will come on, +Though France himself and such another neighbour +Stand in our way. There's for thy labour, Montjoy. +Go bid thy master well advise himself: +If we may pass, we will; if we be hinder'd, +We shall your tawny ground with your red blood +Discolour: and so Montjoy, fare you well. +The sum of all our answer is but this: +We would not seek a battle, as we are; +Nor, as we are, we say we will not shun it: +So tell your master. + +MONTJOY: +I shall deliver so. Thanks to your highness. + +GLOUCESTER: +I hope they will not come upon us now. + +KING HENRY V: +We are in God's hand, brother, not in theirs. +March to the bridge; it now draws toward night: +Beyond the river we'll encamp ourselves, +And on to-morrow, bid them march away. + +Constable: +Tut! I have the best armour of the world. Would it were day! + +ORLEANS: +You have an excellent armour; but let my horse have his due. + +Constable: +It is the best horse of Europe. + +ORLEANS: +Will it never be morning? + +DAUPHIN: +My lord of Orleans, and my lord high constable, you +talk of horse and armour? + +ORLEANS: +You are as well provided of both as any prince in the world. + +DAUPHIN: +What a long night is this! I will not change my +horse with any that treads but on four pasterns. +Ca, ha! he bounds from the earth, as if his +entrails were hairs; le cheval volant, the Pegasus, +chez les narines de feu! When I bestride him, I +soar, I am a hawk: he trots the air; the earth +sings when he touches it; the basest horn of his +hoof is more musical than the pipe of Hermes. + +ORLEANS: +He's of the colour of the nutmeg. + +DAUPHIN: +And of the heat of the ginger. It is a beast for +Perseus: he is pure air and fire; and the dull +elements of earth and water never appear in him, but +only in Patient stillness while his rider mounts +him: he is indeed a horse; and all other jades you +may call beasts. + +Constable: +Indeed, my lord, it is a most absolute and excellent horse. + +DAUPHIN: +It is the prince of palfreys; his neigh is like the +bidding of a monarch and his countenance enforces homage. + +ORLEANS: +No more, cousin. + +DAUPHIN: +Nay, the man hath no wit that cannot, from the +rising of the lark to the lodging of the lamb, vary +deserved praise on my palfrey: it is a theme as +fluent as the sea: turn the sands into eloquent +tongues, and my horse is argument for them all: +'tis a subject for a sovereign to reason on, and for +a sovereign's sovereign to ride on; and for the +world, familiar to us and unknown to lay apart +their particular functions and wonder at him. I +once writ a sonnet in his praise and began thus: +'Wonder of nature,'-- + +ORLEANS: +I have heard a sonnet begin so to one's mistress. + +DAUPHIN: +Then did they imitate that which I composed to my +courser, for my horse is my mistress. + +ORLEANS: +Your mistress bears well. + +DAUPHIN: +Me well; which is the prescript praise and +perfection of a good and particular mistress. + +Constable: +Nay, for methought yesterday your mistress shrewdly +shook your back. + +DAUPHIN: +So perhaps did yours. + +Constable: +Mine was not bridled. + +DAUPHIN: +O then belike she was old and gentle; and you rode, +like a kern of Ireland, your French hose off, and in +your straight strossers. + +Constable: +You have good judgment in horsemanship. + +DAUPHIN: +Be warned by me, then: they that ride so and ride +not warily, fall into foul bogs. I had rather have +my horse to my mistress. + +Constable: +I had as lief have my mistress a jade. + +DAUPHIN: +I tell thee, constable, my mistress wears his own hair. + +Constable: +I could make as true a boast as that, if I had a sow +to my mistress. + +DAUPHIN: +'Le chien est retourne a son propre vomissement, et +la truie lavee au bourbier;' thou makest use of any thing. + +Constable: +Yet do I not use my horse for my mistress, or any +such proverb so little kin to the purpose. + +RAMBURES: +My lord constable, the armour that I saw in your tent +to-night, are those stars or suns upon it? + +Constable: +Stars, my lord. + +DAUPHIN: +Some of them will fall to-morrow, I hope. + +Constable: +And yet my sky shall not want. + +DAUPHIN: +That may be, for you bear a many superfluously, and +'twere more honour some were away. + +Constable: +Even as your horse bears your praises; who would +trot as well, were some of your brags dismounted. + +DAUPHIN: +Would I were able to load him with his desert! Will +it never be day? I will trot to-morrow a mile, and +my way shall be paved with English faces. + +Constable: +I will not say so, for fear I should be faced out of +my way: but I would it were morning; for I would +fain be about the ears of the English. + +RAMBURES: +Who will go to hazard with me for twenty prisoners? + +Constable: +You must first go yourself to hazard, ere you have them. + +DAUPHIN: +'Tis midnight; I'll go arm myself. + +ORLEANS: +The Dauphin longs for morning. + +RAMBURES: +He longs to eat the English. + +Constable: +I think he will eat all he kills. + +ORLEANS: +By the white hand of my lady, he's a gallant prince. + +Constable: +Swear by her foot, that she may tread out the oath. + +ORLEANS: +He is simply the most active gentleman of France. + +Constable: +Doing is activity; and he will still be doing. + +ORLEANS: +He never did harm, that I heard of. + +Constable: +Nor will do none to-morrow: he will keep that good name still. + +ORLEANS: +I know him to be valiant. + +Constable: +I was told that by one that knows him better than +you. + +ORLEANS: +What's he? + +Constable: +Marry, he told me so himself; and he said he cared +not who knew it + +ORLEANS: +He needs not; it is no hidden virtue in him. + +Constable: +By my faith, sir, but it is; never any body saw it +but his lackey: 'tis a hooded valour; and when it +appears, it will bate. + +ORLEANS: +Ill will never said well. + +Constable: +I will cap that proverb with 'There is flattery in friendship.' + +ORLEANS: +And I will take up that with 'Give the devil his due.' + +Constable: +Well placed: there stands your friend for the +devil: have at the very eye of that proverb with 'A +pox of the devil.' + +ORLEANS: +You are the better at proverbs, by how much 'A +fool's bolt is soon shot.' + +Constable: +You have shot over. + +ORLEANS: +'Tis not the first time you were overshot. + +Messenger: +My lord high constable, the English lie within +fifteen hundred paces of your tents. + +Constable: +Who hath measured the ground? + +Messenger: +The Lord Grandpre. + +Constable: +A valiant and most expert gentleman. Would it were +day! Alas, poor Harry of England! he longs not for +the dawning as we do. + +ORLEANS: +What a wretched and peevish fellow is this king of +England, to mope with his fat-brained followers so +far out of his knowledge! + +Constable: +If the English had any apprehension, they would run away. + +ORLEANS: +That they lack; for if their heads had any +intellectual armour, they could never wear such heavy +head-pieces. + +RAMBURES: +That island of England breeds very valiant +creatures; their mastiffs are of unmatchable courage. + +ORLEANS: +Foolish curs, that run winking into the mouth of a +Russian bear and have their heads crushed like +rotten apples! You may as well say, that's a +valiant flea that dare eat his breakfast on the lip of a lion. + +Constable: +Just, just; and the men do sympathize with the +mastiffs in robustious and rough coming on, leaving +their wits with their wives: and then give them +great meals of beef and iron and steel, they will +eat like wolves and fight like devils. + +ORLEANS: +Ay, but these English are shrewdly out of beef. + +Constable: +Then shall we find to-morrow they have only stomachs +to eat and none to fight. Now is it time to arm: +come, shall we about it? + +ORLEANS: +It is now two o'clock: but, let me see, by ten +We shall have each a hundred Englishmen. + +Chorus: +Now entertain conjecture of a time +When creeping murmur and the poring dark +Fills the wide vessel of the universe. +From camp to camp through the foul womb of night +The hum of either army stilly sounds, +That the fixed sentinels almost receive +The secret whispers of each other's watch: +Fire answers fire, and through their paly flames +Each battle sees the other's umber'd face; +Steed threatens steed, in high and boastful neighs +Piercing the night's dull ear, and from the tents +The armourers, accomplishing the knights, +With busy hammers closing rivets up, +Give dreadful note of preparation: +The country cocks do crow, the clocks do toll, +And the third hour of drowsy morning name. +Proud of their numbers and secure in soul, +The confident and over-lusty French +Do the low-rated English play at dice; +And chide the cripple tardy-gaited night +Who, like a foul and ugly witch, doth limp +So tediously away. The poor condemned English, +Like sacrifices, by their watchful fires +Sit patiently and inly ruminate +The morning's danger, and their gesture sad +Investing lank-lean; cheeks and war-worn coats +Presenteth them unto the gazing moon +So many horrid ghosts. O now, who will behold +The royal captain of this ruin'd band +Walking from watch to watch, from tent to tent, +Let him cry 'Praise and glory on his head!' +For forth he goes and visits all his host. +Bids them good morrow with a modest smile +And calls them brothers, friends and countrymen. +Upon his royal face there is no note +How dread an army hath enrounded him; +Nor doth he dedicate one jot of colour +Unto the weary and all-watched night, +But freshly looks and over-bears attaint +With cheerful semblance and sweet majesty; +That every wretch, pining and pale before, +Beholding him, plucks comfort from his looks: +A largess universal like the sun +His liberal eye doth give to every one, +Thawing cold fear, that mean and gentle all, +Behold, as may unworthiness define, +A little touch of Harry in the night. +And so our scene must to the battle fly; +Where--O for pity!--we shall much disgrace +With four or five most vile and ragged foils, +Right ill-disposed in brawl ridiculous, +The name of Agincourt. Yet sit and see, +Minding true things by what their mockeries be. + +KING HENRY V: +Gloucester, 'tis true that we are in great danger; +The greater therefore should our courage be. +Good morrow, brother Bedford. God Almighty! +There is some soul of goodness in things evil, +Would men observingly distil it out. +For our bad neighbour makes us early stirrers, +Which is both healthful and good husbandry: +Besides, they are our outward consciences, +And preachers to us all, admonishing +That we should dress us fairly for our end. +Thus may we gather honey from the weed, +And make a moral of the devil himself. +Good morrow, old Sir Thomas Erpingham: +A good soft pillow for that good white head +Were better than a churlish turf of France. + +ERPINGHAM: +Not so, my liege: this lodging likes me better, +Since I may say 'Now lie I like a king.' + +KING HENRY V: +'Tis good for men to love their present pains +Upon example; so the spirit is eased: +And when the mind is quicken'd, out of doubt, +The organs, though defunct and dead before, +Break up their drowsy grave and newly move, +With casted slough and fresh legerity. +Lend me thy cloak, Sir Thomas. Brothers both, +Commend me to the princes in our camp; +Do my good morrow to them, and anon +Desire them an to my pavilion. + +GLOUCESTER: +We shall, my liege. + +ERPINGHAM: +Shall I attend your grace? + +KING HENRY V: +No, my good knight; +Go with my brothers to my lords of England: +I and my bosom must debate awhile, +And then I would no other company. + +ERPINGHAM: +The Lord in heaven bless thee, noble Harry! + +KING HENRY V: +God-a-mercy, old heart! thou speak'st cheerfully. + +PISTOL: +Qui va la? + +KING HENRY V: +A friend. + +PISTOL: +Discuss unto me; art thou officer? +Or art thou base, common and popular? + +KING HENRY V: +I am a gentleman of a company. + +PISTOL: +Trail'st thou the puissant pike? + +KING HENRY V: +Even so. What are you? + +PISTOL: +As good a gentleman as the emperor. + +KING HENRY V: +Then you are a better than the king. + +PISTOL: +The king's a bawcock, and a heart of gold, +A lad of life, an imp of fame; +Of parents good, of fist most valiant. +I kiss his dirty shoe, and from heart-string +I love the lovely bully. What is thy name? + +KING HENRY V: +Harry le Roy. + +PISTOL: +Le Roy! a Cornish name: art thou of Cornish crew? + +KING HENRY V: +No, I am a Welshman. + +PISTOL: +Know'st thou Fluellen? + +KING HENRY V: +Yes. + +PISTOL: +Tell him, I'll knock his leek about his pate +Upon Saint Davy's day. + +KING HENRY V: +Do not you wear your dagger in your cap that day, +lest he knock that about yours. + +PISTOL: +Art thou his friend? + +KING HENRY V: +And his kinsman too. + +PISTOL: +The figo for thee, then! + +KING HENRY V: +I thank you: God be with you! + +PISTOL: +My name is Pistol call'd. + +KING HENRY V: +It sorts well with your fierceness. + +GOWER: +Captain Fluellen! + +FLUELLEN: +So! in the name of Jesu Christ, speak lower. It is +the greatest admiration of the universal world, when +the true and aunchient prerogatifes and laws of the +wars is not kept: if you would take the pains but to +examine the wars of Pompey the Great, you shall +find, I warrant you, that there is no tiddle toddle +nor pibble pabble in Pompey's camp; I warrant you, +you shall find the ceremonies of the wars, and the +cares of it, and the forms of it, and the sobriety +of it, and the modesty of it, to be otherwise. + +GOWER: +Why, the enemy is loud; you hear him all night. + +FLUELLEN: +If the enemy is an ass and a fool and a prating +coxcomb, is it meet, think you, that we should also, +look you, be an ass and a fool and a prating +coxcomb? in your own conscience, now? + +GOWER: +I will speak lower. + +FLUELLEN: +I pray you and beseech you that you will. + +KING HENRY V: +Though it appear a little out of fashion, +There is much care and valour in this Welshman. + +COURT: +Brother John Bates, is not that the morning which +breaks yonder? + +BATES: +I think it be: but we have no great cause to desire +the approach of day. + +WILLIAMS: +We see yonder the beginning of the day, but I think +we shall never see the end of it. Who goes there? + +KING HENRY V: +A friend. + +WILLIAMS: +Under what captain serve you? + +KING HENRY V: +Under Sir Thomas Erpingham. + +WILLIAMS: +A good old commander and a most kind gentleman: I +pray you, what thinks he of our estate? + +KING HENRY V: +Even as men wrecked upon a sand, that look to be +washed off the next tide. + +BATES: +He hath not told his thought to the king? + +KING HENRY V: +No; nor it is not meet he should. For, though I +speak it to you, I think the king is but a man, as I +am: the violet smells to him as it doth to me: the +element shows to him as it doth to me; all his +senses have but human conditions: his ceremonies +laid by, in his nakedness he appears but a man; and +though his affections are higher mounted than ours, +yet, when they stoop, they stoop with the like +wing. Therefore when he sees reason of fears, as we +do, his fears, out of doubt, be of the same relish +as ours are: yet, in reason, no man should possess +him with any appearance of fear, lest he, by showing +it, should dishearten his army. + +BATES: +He may show what outward courage he will; but I +believe, as cold a night as 'tis, he could wish +himself in Thames up to the neck; and so I would he +were, and I by him, at all adventures, so we were quit here. + +KING HENRY V: +By my troth, I will speak my conscience of the king: +I think he would not wish himself any where but +where he is. + +BATES: +Then I would he were here alone; so should he be +sure to be ransomed, and a many poor men's lives saved. + +KING HENRY V: +I dare say you love him not so ill, to wish him here +alone, howsoever you speak this to feel other men's +minds: methinks I could not die any where so +contented as in the king's company; his cause being +just and his quarrel honourable. + +WILLIAMS: +That's more than we know. + +BATES: +Ay, or more than we should seek after; for we know +enough, if we know we are the kings subjects: if +his cause be wrong, our obedience to the king wipes +the crime of it out of us. + +WILLIAMS: +But if the cause be not good, the king himself hath +a heavy reckoning to make, when all those legs and +arms and heads, chopped off in battle, shall join +together at the latter day and cry all 'We died at +such a place;' some swearing, some crying for a +surgeon, some upon their wives left poor behind +them, some upon the debts they owe, some upon their +children rawly left. I am afeard there are few die +well that die in a battle; for how can they +charitably dispose of any thing, when blood is their +argument? Now, if these men do not die well, it +will be a black matter for the king that led them to +it; whom to disobey were against all proportion of +subjection. + +KING HENRY V: +So, if a son that is by his father sent about +merchandise do sinfully miscarry upon the sea, the +imputation of his wickedness by your rule, should be +imposed upon his father that sent him: or if a +servant, under his master's command transporting a +sum of money, be assailed by robbers and die in +many irreconciled iniquities, you may call the +business of the master the author of the servant's +damnation: but this is not so: the king is not +bound to answer the particular endings of his +soldiers, the father of his son, nor the master of +his servant; for they purpose not their death, when +they purpose their services. Besides, there is no +king, be his cause never so spotless, if it come to +the arbitrement of swords, can try it out with all +unspotted soldiers: some peradventure have on them +the guilt of premeditated and contrived murder; +some, of beguiling virgins with the broken seals of +perjury; some, making the wars their bulwark, that +have before gored the gentle bosom of peace with +pillage and robbery. Now, if these men have +defeated the law and outrun native punishment, +though they can outstrip men, they have no wings to +fly from God: war is his beadle, war is vengeance; +so that here men are punished for before-breach of +the king's laws in now the king's quarrel: where +they feared the death, they have borne life away; +and where they would be safe, they perish: then if +they die unprovided, no more is the king guilty of +their damnation than he was before guilty of those +impieties for the which they are now visited. Every +subject's duty is the king's; but every subject's +soul is his own. Therefore should every soldier in +the wars do as every sick man in his bed, wash every +mote out of his conscience: and dying so, death +is to him advantage; or not dying, the time was +blessedly lost wherein such preparation was gained: +and in him that escapes, it were not sin to think +that, making God so free an offer, He let him +outlive that day to see His greatness and to teach +others how they should prepare. + +WILLIAMS: +'Tis certain, every man that dies ill, the ill upon +his own head, the king is not to answer it. + +BATES: +But I do not desire he should answer for me; and +yet I determine to fight lustily for him. + +KING HENRY V: +I myself heard the king say he would not be ransomed. + +WILLIAMS: +Ay, he said so, to make us fight cheerfully: but +when our throats are cut, he may be ransomed, and we +ne'er the wiser. + +KING HENRY V: +If I live to see it, I will never trust his word after. + +WILLIAMS: +You pay him then. That's a perilous shot out of an +elder-gun, that a poor and private displeasure can +do against a monarch! you may as well go about to +turn the sun to ice with fanning in his face with a +peacock's feather. You'll never trust his word +after! come, 'tis a foolish saying. + +KING HENRY V: +Your reproof is something too round: I should be +angry with you, if the time were convenient. + +WILLIAMS: +Let it be a quarrel between us, if you live. + +KING HENRY V: +I embrace it. + +WILLIAMS: +How shall I know thee again? + +KING HENRY V: +Give me any gage of thine, and I will wear it in my +bonnet: then, if ever thou darest acknowledge it, I +will make it my quarrel. + +WILLIAMS: +Here's my glove: give me another of thine. + +KING HENRY V: +There. + +WILLIAMS: +This will I also wear in my cap: if ever thou come +to me and say, after to-morrow, 'This is my glove,' +by this hand, I will take thee a box on the ear. + +KING HENRY V: +If ever I live to see it, I will challenge it. + +WILLIAMS: +Thou darest as well be hanged. + +KING HENRY V: +Well. I will do it, though I take thee in the +king's company. + +WILLIAMS: +Keep thy word: fare thee well. + +BATES: +Be friends, you English fools, be friends: we have +French quarrels enow, if you could tell how to reckon. + +KING HENRY V: +Indeed, the French may lay twenty French crowns to +one, they will beat us; for they bear them on their +shoulders: but it is no English treason to cut +French crowns, and to-morrow the king himself will +be a clipper. +Upon the king! let us our lives, our souls, +Our debts, our careful wives, +Our children and our sins lay on the king! +We must bear all. O hard condition, +Twin-born with greatness, subject to the breath +Of every fool, whose sense no more can feel +But his own wringing! What infinite heart's-ease +Must kings neglect, that private men enjoy! +And what have kings, that privates have not too, +Save ceremony, save general ceremony? +And what art thou, thou idle ceremony? +What kind of god art thou, that suffer'st more +Of mortal griefs than do thy worshippers? +What are thy rents? what are thy comings in? +O ceremony, show me but thy worth! +What is thy soul of adoration? +Art thou aught else but place, degree and form, +Creating awe and fear in other men? +Wherein thou art less happy being fear'd +Than they in fearing. +What drink'st thou oft, instead of homage sweet, +But poison'd flattery? O, be sick, great greatness, +And bid thy ceremony give thee cure! +Think'st thou the fiery fever will go out +With titles blown from adulation? +Will it give place to flexure and low bending? +Canst thou, when thou command'st the beggar's knee, +Command the health of it? No, thou proud dream, +That play'st so subtly with a king's repose; +I am a king that find thee, and I know +'Tis not the balm, the sceptre and the ball, +The sword, the mace, the crown imperial, +The intertissued robe of gold and pearl, +The farced title running 'fore the king, +The throne he sits on, nor the tide of pomp +That beats upon the high shore of this world, +No, not all these, thrice-gorgeous ceremony, +Not all these, laid in bed majestical, +Can sleep so soundly as the wretched slave, +Who with a body fill'd and vacant mind +Gets him to rest, cramm'd with distressful bread; +Never sees horrid night, the child of hell, +But, like a lackey, from the rise to set +Sweats in the eye of Phoebus and all night +Sleeps in Elysium; next day after dawn, +Doth rise and help Hyperion to his horse, +And follows so the ever-running year, +With profitable labour, to his grave: +And, but for ceremony, such a wretch, +Winding up days with toil and nights with sleep, +Had the fore-hand and vantage of a king. +The slave, a member of the country's peace, +Enjoys it; but in gross brain little wots +What watch the king keeps to maintain the peace, +Whose hours the peasant best advantages. + +ERPINGHAM: +My lord, your nobles, jealous of your absence, +Seek through your camp to find you. + +KING HENRY V: +Good old knight, +Collect them all together at my tent: +I'll be before thee. + +ERPINGHAM: +I shall do't, my lord. + +KING HENRY V: +O God of battles! steel my soldiers' hearts; +Possess them not with fear; take from them now +The sense of reckoning, if the opposed numbers +Pluck their hearts from them. Not to-day, O Lord, +O, not to-day, think not upon the fault +My father made in compassing the crown! +I Richard's body have interred anew; +And on it have bestow'd more contrite tears +Than from it issued forced drops of blood: +Five hundred poor I have in yearly pay, +Who twice a-day their wither'd hands hold up +Toward heaven, to pardon blood; and I have built +Two chantries, where the sad and solemn priests +Sing still for Richard's soul. More will I do; +Though all that I can do is nothing worth, +Since that my penitence comes after all, +Imploring pardon. + +GLOUCESTER: +My liege! + +KING HENRY V: +My brother Gloucester's voice? Ay; +I know thy errand, I will go with thee: +The day, my friends and all things stay for me. + +ORLEANS: +The sun doth gild our armour; up, my lords! + +DAUPHIN: +Montez A cheval! My horse! varlet! laquais! ha! + +ORLEANS: +O brave spirit! + +DAUPHIN: +Via! les eaux et la terre. + +ORLEANS: +Rien puis? L'air et la feu. + +DAUPHIN: +Ciel, cousin Orleans. +Now, my lord constable! + +Constable: +Hark, how our steeds for present service neigh! + +DAUPHIN: +Mount them, and make incision in their hides, +That their hot blood may spin in English eyes, +And dout them with superfluous courage, ha! + +RAMBURES: +What, will you have them weep our horses' blood? +How shall we, then, behold their natural tears? + +Messenger: +The English are embattled, you French peers. + +Constable: +To horse, you gallant princes! straight to horse! +Do but behold yon poor and starved band, +And your fair show shall suck away their souls, +Leaving them but the shales and husks of men. +There is not work enough for all our hands; +Scarce blood enough in all their sickly veins +To give each naked curtle-axe a stain, +That our French gallants shall to-day draw out, +And sheathe for lack of sport: let us but blow on them, +The vapour of our valour will o'erturn them. +'Tis positive 'gainst all exceptions, lords, +That our superfluous lackeys and our peasants, +Who in unnecessary action swarm +About our squares of battle, were enow +To purge this field of such a hilding foe, +Though we upon this mountain's basis by +Took stand for idle speculation: +But that our honours must not. What's to say? +A very little little let us do. +And all is done. Then let the trumpets sound +The tucket sonance and the note to mount; +For our approach shall so much dare the field +That England shall couch down in fear and yield. + +GRANDPRE: +Why do you stay so long, my lords of France? +Yon island carrions, desperate of their bones, +Ill-favouredly become the morning field: +Their ragged curtains poorly are let loose, +And our air shakes them passing scornfully: +Big Mars seems bankrupt in their beggar'd host +And faintly through a rusty beaver peeps: +The horsemen sit like fixed candlesticks, +With torch-staves in their hand; and their poor jades +Lob down their heads, dropping the hides and hips, +The gum down-roping from their pale-dead eyes +And in their pale dull mouths the gimmal bit +Lies foul with chew'd grass, still and motionless; +And their executors, the knavish crows, +Fly o'er them, all impatient for their hour. +Description cannot suit itself in words +To demonstrate the life of such a battle +In life so lifeless as it shows itself. + +Constable: +They have said their prayers, and they stay for death. + +DAUPHIN: +Shall we go send them dinners and fresh suits +And give their fasting horses provender, +And after fight with them? + +Constable: +I stay but for my guidon: to the field! +I will the banner from a trumpet take, +And use it for my haste. Come, come, away! +The sun is high, and we outwear the day. + +GLOUCESTER: +Where is the king? + +BEDFORD: +The king himself is rode to view their battle. + +WESTMORELAND: +Of fighting men they have full three score thousand. + +EXETER: +There's five to one; besides, they all are fresh. + +SALISBURY: +God's arm strike with us! 'tis a fearful odds. +God be wi' you, princes all; I'll to my charge: +If we no more meet till we meet in heaven, +Then, joyfully, my noble Lord of Bedford, +My dear Lord Gloucester, and my good Lord Exeter, +And my kind kinsman, warriors all, adieu! + +BEDFORD: +Farewell, good Salisbury; and good luck go with thee! + +EXETER: +Farewell, kind lord; fight valiantly to-day: +And yet I do thee wrong to mind thee of it, +For thou art framed of the firm truth of valour. + +BEDFORD: +He is full of valour as of kindness; +Princely in both. + +WESTMORELAND: +O that we now had here +But one ten thousand of those men in England +That do no work to-day! + +KING HENRY V: +What's he that wishes so? +My cousin Westmoreland? No, my fair cousin: +If we are mark'd to die, we are enow +To do our country loss; and if to live, +The fewer men, the greater share of honour. +God's will! I pray thee, wish not one man more. +By Jove, I am not covetous for gold, +Nor care I who doth feed upon my cost; +It yearns me not if men my garments wear; +Such outward things dwell not in my desires: +But if it be a sin to covet honour, +I am the most offending soul alive. +No, faith, my coz, wish not a man from England: +God's peace! I would not lose so great an honour +As one man more, methinks, would share from me +For the best hope I have. O, do not wish one more! +Rather proclaim it, Westmoreland, through my host, +That he which hath no stomach to this fight, +Let him depart; his passport shall be made +And crowns for convoy put into his purse: +We would not die in that man's company +That fears his fellowship to die with us. +This day is called the feast of Crispian: +He that outlives this day, and comes safe home, +Will stand a tip-toe when the day is named, +And rouse him at the name of Crispian. +He that shall live this day, and see old age, +Will yearly on the vigil feast his neighbours, +And say 'To-morrow is Saint Crispian:' +Then will he strip his sleeve and show his scars. +And say 'These wounds I had on Crispin's day.' +Old men forget: yet all shall be forgot, +But he'll remember with advantages +What feats he did that day: then shall our names. +Familiar in his mouth as household words +Harry the king, Bedford and Exeter, +Warwick and Talbot, Salisbury and Gloucester, +Be in their flowing cups freshly remember'd. +This story shall the good man teach his son; +And Crispin Crispian shall ne'er go by, +From this day to the ending of the world, +But we in it shall be remember'd; +We few, we happy few, we band of brothers; +For he to-day that sheds his blood with me +Shall be my brother; be he ne'er so vile, +This day shall gentle his condition: +And gentlemen in England now a-bed +Shall think themselves accursed they were not here, +And hold their manhoods cheap whiles any speaks +That fought with us upon Saint Crispin's day. + +SALISBURY: +My sovereign lord, bestow yourself with speed: +The French are bravely in their battles set, +And will with all expedience charge on us. + +KING HENRY V: +All things are ready, if our minds be so. + +WESTMORELAND: +Perish the man whose mind is backward now! + +KING HENRY V: +Thou dost not wish more help from England, coz? + +WESTMORELAND: +God's will! my liege, would you and I alone, +Without more help, could fight this royal battle! + +KING HENRY V: +Why, now thou hast unwish'd five thousand men; +Which likes me better than to wish us one. +You know your places: God be with you all! + +MONTJOY: +Once more I come to know of thee, King Harry, +If for thy ransom thou wilt now compound, +Before thy most assured overthrow: +For certainly thou art so near the gulf, +Thou needs must be englutted. Besides, in mercy, +The constable desires thee thou wilt mind +Thy followers of repentance; that their souls +May make a peaceful and a sweet retire +From off these fields, where, wretches, their poor bodies +Must lie and fester. + +KING HENRY V: +Who hath sent thee now? + +MONTJOY: +The Constable of France. + +KING HENRY V: +I pray thee, bear my former answer back: +Bid them achieve me and then sell my bones. +Good God! why should they mock poor fellows thus? +The man that once did sell the lion's skin +While the beast lived, was killed with hunting him. +A many of our bodies shall no doubt +Find native graves; upon the which, I trust, +Shall witness live in brass of this day's work: +And those that leave their valiant bones in France, +Dying like men, though buried in your dunghills, +They shall be famed; for there the sun shall greet them, +And draw their honours reeking up to heaven; +Leaving their earthly parts to choke your clime, +The smell whereof shall breed a plague in France. +Mark then abounding valour in our English, +That being dead, like to the bullet's grazing, +Break out into a second course of mischief, +Killing in relapse of mortality. +Let me speak proudly: tell the constable +We are but warriors for the working-day; +Our gayness and our gilt are all besmirch'd +With rainy marching in the painful field; +There's not a piece of feather in our host-- +Good argument, I hope, we will not fly-- +And time hath worn us into slovenry: +But, by the mass, our hearts are in the trim; +And my poor soldiers tell me, yet ere night +They'll be in fresher robes, or they will pluck +The gay new coats o'er the French soldiers' heads +And turn them out of service. If they do this,-- +As, if God please, they shall,--my ransom then +Will soon be levied. Herald, save thou thy labour; +Come thou no more for ransom, gentle herald: +They shall have none, I swear, but these my joints; +Which if they have as I will leave 'em them, +Shall yield them little, tell the constable. + +MONTJOY: +I shall, King Harry. And so fare thee well: +Thou never shalt hear herald any more. + +KING HENRY V: +I fear thou'lt once more come again for ransom. + +YORK: +My lord, most humbly on my knee I beg +The leading of the vaward. + +KING HENRY V: +Take it, brave York. Now, soldiers, march away: +And how thou pleasest, God, dispose the day! + +PISTOL: +Yield, cur! + +French Soldier: +Je pense que vous etes gentilhomme de bonne qualite. + +PISTOL: +Qualtitie calmie custure me! Art thou a gentleman? +what is thy name? discuss. + +French Soldier: +O Seigneur Dieu! + +PISTOL: +O, Signieur Dew should be a gentleman: +Perpend my words, O Signieur Dew, and mark; +O Signieur Dew, thou diest on point of fox, +Except, O signieur, thou do give to me +Egregious ransom. + +French Soldier: +O, prenez misericorde! ayez pitie de moi! + +PISTOL: +Moy shall not serve; I will have forty moys; +Or I will fetch thy rim out at thy throat +In drops of crimson blood. + +French Soldier: +Est-il impossible d'echapper la force de ton bras? + +PISTOL: +Brass, cur! +Thou damned and luxurious mountain goat, +Offer'st me brass? + +French Soldier: +O pardonnez moi! + +PISTOL: +Say'st thou me so? is that a ton of moys? +Come hither, boy: ask me this slave in French +What is his name. + +Boy: +Ecoutez: comment etes-vous appele? + +French Soldier: +Monsieur le Fer. + +Boy: +He says his name is Master Fer. + +PISTOL: +Master Fer! I'll fer him, and firk him, and ferret +him: discuss the same in French unto him. + +Boy: +I do not know the French for fer, and ferret, and firk. + +PISTOL: +Bid him prepare; for I will cut his throat. + +French Soldier: +Que dit-il, monsieur? + +Boy: +Il me commande de vous dire que vous faites vous +pret; car ce soldat ici est dispose tout a cette +heure de couper votre gorge. + +PISTOL: +Owy, cuppele gorge, permafoy, +Peasant, unless thou give me crowns, brave crowns; +Or mangled shalt thou be by this my sword. + +French Soldier: +O, je vous supplie, pour l'amour de Dieu, me +pardonner! Je suis gentilhomme de bonne maison: +gardez ma vie, et je vous donnerai deux cents ecus. + +PISTOL: +What are his words? + +Boy: +He prays you to save his life: he is a gentleman of +a good house; and for his ransom he will give you +two hundred crowns. + +PISTOL: +Tell him my fury shall abate, and I the crowns will take. + +French Soldier: +Petit monsieur, que dit-il? + +Boy: +Encore qu'il est contre son jurement de pardonner +aucun prisonnier, neanmoins, pour les ecus que vous +l'avez promis, il est content de vous donner la +liberte, le franchisement. + +French Soldier: +Sur mes genoux je vous donne mille remercimens; et +je m'estime heureux que je suis tombe entre les +mains d'un chevalier, je pense, le plus brave, +vaillant, et tres distingue seigneur d'Angleterre. + +PISTOL: +Expound unto me, boy. + +Boy: +He gives you, upon his knees, a thousand thanks; and +he esteems himself happy that he hath fallen into +the hands of one, as he thinks, the most brave, +valorous, and thrice-worthy signieur of England. + +PISTOL: +As I suck blood, I will some mercy show. +Follow me! + +Boy: +Suivez-vous le grand capitaine. +I did never know so full a voice issue from so +empty a heart: but the saying is true 'The empty +vessel makes the greatest sound.' Bardolph and Nym +had ten times more valour than this roaring devil i' +the old play, that every one may pare his nails with +a wooden dagger; and they are both hanged; and so +would this be, if he durst steal any thing +adventurously. I must stay with the lackeys, with +the luggage of our camp: the French might have a +good prey of us, if he knew of it; for there is +none to guard it but boys. + +Constable: +O diable! + +ORLEANS: +O seigneur! le jour est perdu, tout est perdu! + +DAUPHIN: +Mort de ma vie! all is confounded, all! +Reproach and everlasting shame +Sits mocking in our plumes. O merchante fortune! +Do not run away. + +Constable: +Why, all our ranks are broke. + +DAUPHIN: +O perdurable shame! let's stab ourselves. +Be these the wretches that we play'd at dice for? + +ORLEANS: +Is this the king we sent to for his ransom? + +BOURBON: +Shame and eternal shame, nothing but shame! +Let us die in honour: once more back again; +And he that will not follow Bourbon now, +Let him go hence, and with his cap in hand, +Like a base pander, hold the chamber-door +Whilst by a slave, no gentler than my dog, +His fairest daughter is contaminated. + +Constable: +Disorder, that hath spoil'd us, friend us now! +Let us on heaps go offer up our lives. + +ORLEANS: +We are enow yet living in the field +To smother up the English in our throngs, +If any order might be thought upon. + +BOURBON: +The devil take order now! I'll to the throng: +Let life be short; else shame will be too long. + +KING HENRY V: +Well have we done, thrice valiant countrymen: +But all's not done; yet keep the French the field. + +EXETER: +The Duke of York commends him to your majesty. + +KING HENRY V: +Lives he, good uncle? thrice within this hour +I saw him down; thrice up again and fighting; +From helmet to the spur all blood he was. + +EXETER: +In which array, brave soldier, doth he lie, +Larding the plain; and by his bloody side, +Yoke-fellow to his honour-owing wounds, +The noble Earl of Suffolk also lies. +Suffolk first died: and York, all haggled over, +Comes to him, where in gore he lay insteep'd, +And takes him by the beard; kisses the gashes +That bloodily did spawn upon his face; +And cries aloud 'Tarry, dear cousin Suffolk! +My soul shall thine keep company to heaven; +Tarry, sweet soul, for mine, then fly abreast, +As in this glorious and well-foughten field +We kept together in our chivalry!' +Upon these words I came and cheer'd him up: +He smiled me in the face, raught me his hand, +And, with a feeble gripe, says 'Dear my lord, +Commend my service to me sovereign.' +So did he turn and over Suffolk's neck +He threw his wounded arm and kiss'd his lips; +And so espoused to death, with blood he seal'd +A testament of noble-ending love. +The pretty and sweet manner of it forced +Those waters from me which I would have stopp'd; +But I had not so much of man in me, +And all my mother came into mine eyes +And gave me up to tears. + +KING HENRY V: +I blame you not; +For, hearing this, I must perforce compound +With mistful eyes, or they will issue too. +But, hark! what new alarum is this same? +The French have reinforced their scatter'd men: +Then every soldier kill his prisoners: +Give the word through. + +FLUELLEN: +Kill the poys and the luggage! 'tis expressly +against the law of arms: 'tis as arrant a piece of +knavery, mark you now, as can be offer't; in your +conscience, now, is it not? + +GOWER: +'Tis certain there's not a boy left alive; and the +cowardly rascals that ran from the battle ha' done +this slaughter: besides, they have burned and +carried away all that was in the king's tent; +wherefore the king, most worthily, hath caused every +soldier to cut his prisoner's throat. O, 'tis a +gallant king! + +FLUELLEN: +Ay, he was porn at Monmouth, Captain Gower. What +call you the town's name where Alexander the Pig was born! + +GOWER: +Alexander the Great. + +FLUELLEN: +Why, I pray you, is not pig great? the pig, or the +great, or the mighty, or the huge, or the +magnanimous, are all one reckonings, save the phrase +is a little variations. + +GOWER: +I think Alexander the Great was born in Macedon; his +father was called Philip of Macedon, as I take it. + +FLUELLEN: +I think it is in Macedon where Alexander is porn. I +tell you, captain, if you look in the maps of the +'orld, I warrant you sall find, in the comparisons +between Macedon and Monmouth, that the situations, +look you, is both alike. There is a river in +Macedon; and there is also moreover a river at +Monmouth: it is called Wye at Monmouth; but it is +out of my prains what is the name of the other +river; but 'tis all one, 'tis alike as my fingers is +to my fingers, and there is salmons in both. If you +mark Alexander's life well, Harry of Monmouth's life +is come after it indifferent well; for there is +figures in all things. Alexander, God knows, and +you know, in his rages, and his furies, and his +wraths, and his cholers, and his moods, and his +displeasures, and his indignations, and also being a +little intoxicates in his prains, did, in his ales and +his angers, look you, kill his best friend, Cleitus. + +GOWER: +Our king is not like him in that: he never killed +any of his friends. + +FLUELLEN: +It is not well done, mark you now take the tales out +of my mouth, ere it is made and finished. I speak +but in the figures and comparisons of it: as +Alexander killed his friend Cleitus, being in his +ales and his cups; so also Harry Monmouth, being in +his right wits and his good judgments, turned away +the fat knight with the great belly-doublet: he +was full of jests, and gipes, and knaveries, and +mocks; I have forgot his name. + +GOWER: +Sir John Falstaff. + +FLUELLEN: +That is he: I'll tell you there is good men porn at Monmouth. + +GOWER: +Here comes his majesty. + +KING HENRY V: +I was not angry since I came to France +Until this instant. Take a trumpet, herald; +Ride thou unto the horsemen on yon hill: +If they will fight with us, bid them come down, +Or void the field; they do offend our sight: +If they'll do neither, we will come to them, +And make them skirr away, as swift as stones +Enforced from the old Assyrian slings: +Besides, we'll cut the throats of those we have, +And not a man of them that we shall take +Shall taste our mercy. Go and tell them so. + +EXETER: +Here comes the herald of the French, my liege. + +GLOUCESTER: +His eyes are humbler than they used to be. + +KING HENRY V: +How now! what means this, herald? know'st thou not +That I have fined these bones of mine for ransom? +Comest thou again for ransom? + +MONTJOY: +No, great king: +I come to thee for charitable licence, +That we may wander o'er this bloody field +To look our dead, and then to bury them; +To sort our nobles from our common men. +For many of our princes--woe the while!-- +Lie drown'd and soak'd in mercenary blood; +So do our vulgar drench their peasant limbs +In blood of princes; and their wounded steeds +Fret fetlock deep in gore and with wild rage +Yerk out their armed heels at their dead masters, +Killing them twice. O, give us leave, great king, +To view the field in safety and dispose +Of their dead bodies! + +KING HENRY V: +I tell thee truly, herald, +I know not if the day be ours or no; +For yet a many of your horsemen peer +And gallop o'er the field. + +MONTJOY: +The day is yours. + +KING HENRY V: +Praised be God, and not our strength, for it! +What is this castle call'd that stands hard by? + +MONTJOY: +They call it Agincourt. + +KING HENRY V: +Then call we this the field of Agincourt, +Fought on the day of Crispin Crispianus. + +FLUELLEN: +Your grandfather of famous memory, an't please your +majesty, and your great-uncle Edward the Plack +Prince of Wales, as I have read in the chronicles, +fought a most prave pattle here in France. + +KING HENRY V: +They did, Fluellen. + +FLUELLEN: +Your majesty says very true: if your majesties is +remembered of it, the Welshmen did good service in a +garden where leeks did grow, wearing leeks in their +Monmouth caps; which, your majesty know, to this +hour is an honourable badge of the service; and I do +believe your majesty takes no scorn to wear the leek +upon Saint Tavy's day. + +KING HENRY V: +I wear it for a memorable honour; +For I am Welsh, you know, good countryman. + +FLUELLEN: +All the water in Wye cannot wash your majesty's +Welsh plood out of your pody, I can tell you that: +God pless it and preserve it, as long as it pleases +his grace, and his majesty too! + +KING HENRY V: +Thanks, good my countryman. + +FLUELLEN: +By Jeshu, I am your majesty's countryman, I care not +who know it; I will confess it to all the 'orld: I +need not to be ashamed of your majesty, praised be +God, so long as your majesty is an honest man. + +KING HENRY V: +God keep me so! Our heralds go with him: +Bring me just notice of the numbers dead +On both our parts. Call yonder fellow hither. + +EXETER: +Soldier, you must come to the king. + +KING HENRY V: +Soldier, why wearest thou that glove in thy cap? + +WILLIAMS: +An't please your majesty, 'tis the gage of one that +I should fight withal, if he be alive. + +KING HENRY V: +An Englishman? + +WILLIAMS: +An't please your majesty, a rascal that swaggered +with me last night; who, if alive and ever dare to +challenge this glove, I have sworn to take him a box +o' th' ear: or if I can see my glove in his cap, +which he swore, as he was a soldier, he would wear +if alive, I will strike it out soundly. + +KING HENRY V: +What think you, Captain Fluellen? is it fit this +soldier keep his oath? + +FLUELLEN: +He is a craven and a villain else, an't please your +majesty, in my conscience. + +KING HENRY V: +It may be his enemy is a gentleman of great sort, +quite from the answer of his degree. + +FLUELLEN: +Though he be as good a gentleman as the devil is, as +Lucifer and Belzebub himself, it is necessary, look +your grace, that he keep his vow and his oath: if +he be perjured, see you now, his reputation is as +arrant a villain and a Jacksauce, as ever his black +shoe trod upon God's ground and his earth, in my +conscience, la! + +KING HENRY V: +Then keep thy vow, sirrah, when thou meetest the fellow. + +WILLIAMS: +So I will, my liege, as I live. + +KING HENRY V: +Who servest thou under? + +WILLIAMS: +Under Captain Gower, my liege. + +FLUELLEN: +Gower is a good captain, and is good knowledge and +literatured in the wars. + +KING HENRY V: +Call him hither to me, soldier. + +WILLIAMS: +I will, my liege. + +KING HENRY V: +Here, Fluellen; wear thou this favour for me and +stick it in thy cap: when Alencon and myself were +down together, I plucked this glove from his helm: +if any man challenge this, he is a friend to +Alencon, and an enemy to our person; if thou +encounter any such, apprehend him, an thou dost me love. + +FLUELLEN: +Your grace doo's me as great honours as can be +desired in the hearts of his subjects: I would fain +see the man, that has but two legs, that shall find +himself aggrieved at this glove; that is all; but I +would fain see it once, an please God of his grace +that I might see. + +KING HENRY V: +Knowest thou Gower? + +FLUELLEN: +He is my dear friend, an please you. + +KING HENRY V: +Pray thee, go seek him, and bring him to my tent. + +FLUELLEN: +I will fetch him. + +KING HENRY V: +My Lord of Warwick, and my brother Gloucester, +Follow Fluellen closely at the heels: +The glove which I have given him for a favour +May haply purchase him a box o' th' ear; +It is the soldier's; I by bargain should +Wear it myself. Follow, good cousin Warwick: +If that the soldier strike him, as I judge +By his blunt bearing he will keep his word, +Some sudden mischief may arise of it; +For I do know Fluellen valiant +And, touched with choler, hot as gunpowder, +And quickly will return an injury: +Follow and see there be no harm between them. +Go you with me, uncle of Exeter. + +WILLIAMS: +I warrant it is to knight you, captain. + +FLUELLEN: +God's will and his pleasure, captain, I beseech you +now, come apace to the king: there is more good +toward you peradventure than is in your knowledge to dream of. + +WILLIAMS: +Sir, know you this glove? + +FLUELLEN: +Know the glove! I know the glove is glove. + +WILLIAMS: +I know this; and thus I challenge it. + +FLUELLEN: +'Sblood! an arrant traitor as any is in the +universal world, or in France, or in England! + +GOWER: +How now, sir! you villain! + +WILLIAMS: +Do you think I'll be forsworn? + +FLUELLEN: +Stand away, Captain Gower; I will give treason his +payment into ploughs, I warrant you. + +WILLIAMS: +I am no traitor. + +FLUELLEN: +That's a lie in thy throat. I charge you in his +majesty's name, apprehend him: he's a friend of the +Duke Alencon's. + +WARWICK: +How now, how now! what's the matter? + +FLUELLEN: +My Lord of Warwick, here is--praised be God for it! +--a most contagious treason come to light, look +you, as you shall desire in a summer's day. Here is +his majesty. + +KING HENRY V: +How now! what's the matter? + +FLUELLEN: +My liege, here is a villain and a traitor, that, +look your grace, has struck the glove which your +majesty is take out of the helmet of Alencon. + +WILLIAMS: +My liege, this was my glove; here is the fellow of +it; and he that I gave it to in change promised to +wear it in his cap: I promised to strike him, if he +did: I met this man with my glove in his cap, and I +have been as good as my word. + +FLUELLEN: +Your majesty hear now, saving your majesty's +manhood, what an arrant, rascally, beggarly, lousy +knave it is: I hope your majesty is pear me +testimony and witness, and will avouchment, that +this is the glove of Alencon, that your majesty is +give me; in your conscience, now? + +KING HENRY V: +Give me thy glove, soldier: look, here is the +fellow of it. +'Twas I, indeed, thou promised'st to strike; +And thou hast given me most bitter terms. + +FLUELLEN: +An please your majesty, let his neck answer for it, +if there is any martial law in the world. + +KING HENRY V: +How canst thou make me satisfaction? + +WILLIAMS: +All offences, my lord, come from the heart: never +came any from mine that might offend your majesty. + +KING HENRY V: +It was ourself thou didst abuse. + +WILLIAMS: +Your majesty came not like yourself: you appeared to +me but as a common man; witness the night, your +garments, your lowliness; and what your highness +suffered under that shape, I beseech you take it for +your own fault and not mine: for had you been as I +took you for, I made no offence; therefore, I +beseech your highness, pardon me. + +KING HENRY V: +Here, uncle Exeter, fill this glove with crowns, +And give it to this fellow. Keep it, fellow; +And wear it for an honour in thy cap +Till I do challenge it. Give him the crowns: +And, captain, you must needs be friends with him. + +FLUELLEN: +By this day and this light, the fellow has mettle +enough in his belly. Hold, there is twelve pence +for you; and I pray you to serve Got, and keep you +out of prawls, and prabbles' and quarrels, and +dissensions, and, I warrant you, it is the better for you. + +WILLIAMS: +I will none of your money. + +FLUELLEN: +It is with a good will; I can tell you, it will +serve you to mend your shoes: come, wherefore should +you be so pashful? your shoes is not so good: 'tis +a good silling, I warrant you, or I will change it. + +KING HENRY V: +Now, herald, are the dead number'd? + +Herald: +Here is the number of the slaughter'd French. + +KING HENRY V: +What prisoners of good sort are taken, uncle? + +EXETER: +Charles Duke of Orleans, nephew to the king; +John Duke of Bourbon, and Lord Bouciqualt: +Of other lords and barons, knights and squires, +Full fifteen hundred, besides common men. + +KING HENRY V: +This note doth tell me of ten thousand French +That in the field lie slain: of princes, in this number, +And nobles bearing banners, there lie dead +One hundred twenty six: added to these, +Of knights, esquires, and gallant gentlemen, +Eight thousand and four hundred; of the which, +Five hundred were but yesterday dubb'd knights: +So that, in these ten thousand they have lost, +There are but sixteen hundred mercenaries; +The rest are princes, barons, lords, knights, squires, +And gentlemen of blood and quality. +The names of those their nobles that lie dead: +Charles Delabreth, high constable of France; +Jaques of Chatillon, admiral of France; +The master of the cross-bows, Lord Rambures; +Great Master of France, the brave Sir Guichard Dolphin, +John Duke of Alencon, Anthony Duke of Brabant, +The brother of the Duke of Burgundy, +And Edward Duke of Bar: of lusty earls, +Grandpre and Roussi, Fauconberg and Foix, +Beaumont and Marle, Vaudemont and Lestrale. +Here was a royal fellowship of death! +Where is the number of our English dead? +Edward the Duke of York, the Earl of Suffolk, +Sir Richard Ketly, Davy Gam, esquire: +None else of name; and of all other men +But five and twenty. O God, thy arm was here; +And not to us, but to thy arm alone, +Ascribe we all! When, without stratagem, +But in plain shock and even play of battle, +Was ever known so great and little loss +On one part and on the other? Take it, God, +For it is none but thine! + +EXETER: +'Tis wonderful! + +KING HENRY V: +Come, go we in procession to the village. +And be it death proclaimed through our host +To boast of this or take the praise from God +Which is his only. + +FLUELLEN: +Is it not lawful, an please your majesty, to tell +how many is killed? + +KING HENRY V: +Yes, captain; but with this acknowledgement, +That God fought for us. + +FLUELLEN: +Yes, my conscience, he did us great good. + +KING HENRY V: +Do we all holy rites; +Let there be sung 'Non nobis' and 'Te Deum;' +The dead with charity enclosed in clay: +And then to Calais; and to England then: +Where ne'er from France arrived more happy men. + +Chorus: +Vouchsafe to those that have not read the story, +That I may prompt them: and of such as have, +I humbly pray them to admit the excuse +Of time, of numbers and due course of things, +Which cannot in their huge and proper life +Be here presented. Now we bear the king +Toward Calais: grant him there; there seen, +Heave him away upon your winged thoughts +Athwart the sea. Behold, the English beach +Pales in the flood with men, with wives and boys, +Whose shouts and claps out-voice the deep mouth'd sea, +Which like a mighty whiffler 'fore the king +Seems to prepare his way: so let him land, +And solemnly see him set on to London. +So swift a pace hath thought that even now +You may imagine him upon Blackheath; +Where that his lords desire him to have borne +His bruised helmet and his bended sword +Before him through the city: he forbids it, +Being free from vainness and self-glorious pride; +Giving full trophy, signal and ostent +Quite from himself to God. But now behold, +In the quick forge and working-house of thought, +How London doth pour out her citizens! +The mayor and all his brethren in best sort, +Like to the senators of the antique Rome, +With the plebeians swarming at their heels, +Go forth and fetch their conquering Caesar in: +As, by a lower but loving likelihood, +Were now the general of our gracious empress, +As in good time he may, from Ireland coming, +Bringing rebellion broached on his sword, +How many would the peaceful city quit, +To welcome him! much more, and much more cause, +Did they this Harry. Now in London place him; +As yet the lamentation of the French +Invites the King of England's stay at home; +The emperor's coming in behalf of France, +To order peace between them; and omit +All the occurrences, whatever chanced, +Till Harry's back-return again to France: +There must we bring him; and myself have play'd +The interim, by remembering you 'tis past. +Then brook abridgment, and your eyes advance, +After your thoughts, straight back again to France. + +GOWER: +Nay, that's right; but why wear you your leek today? +Saint Davy's day is past. + +FLUELLEN: +There is occasions and causes why and wherefore in +all things: I will tell you, asse my friend, +Captain Gower: the rascally, scald, beggarly, +lousy, pragging knave, Pistol, which you and +yourself and all the world know to be no petter +than a fellow, look you now, of no merits, he is +come to me and prings me pread and salt yesterday, +look you, and bid me eat my leek: it was in place +where I could not breed no contention with him; but +I will be so bold as to wear it in my cap till I see +him once again, and then I will tell him a little +piece of my desires. + +GOWER: +Why, here he comes, swelling like a turkey-cock. + +FLUELLEN: +'Tis no matter for his swellings nor his +turkey-cocks. God pless you, Aunchient Pistol! you +scurvy, lousy knave, God pless you! + +PISTOL: +Ha! art thou bedlam? dost thou thirst, base Trojan, +To have me fold up Parca's fatal web? +Hence! I am qualmish at the smell of leek. + +FLUELLEN: +I peseech you heartily, scurvy, lousy knave, at my +desires, and my requests, and my petitions, to eat, +look you, this leek: because, look you, you do not +love it, nor your affections and your appetites and +your digestions doo's not agree with it, I would +desire you to eat it. + +PISTOL: +Not for Cadwallader and all his goats. + +FLUELLEN: +There is one goat for you. +Will you be so good, scauld knave, as eat it? + +PISTOL: +Base Trojan, thou shalt die. + +FLUELLEN: +You say very true, scauld knave, when God's will is: +I will desire you to live in the mean time, and eat +your victuals: come, there is sauce for it. +You called me yesterday mountain-squire; but I will +make you to-day a squire of low degree. I pray you, +fall to: if you can mock a leek, you can eat a leek. + +GOWER: +Enough, captain: you have astonished him. + +FLUELLEN: +I say, I will make him eat some part of my leek, or +I will peat his pate four days. Bite, I pray you; it +is good for your green wound and your ploody coxcomb. + +PISTOL: +Must I bite? + +FLUELLEN: +Yes, certainly, and out of doubt and out of question +too, and ambiguities. + +PISTOL: +By this leek, I will most horribly revenge: I eat +and eat, I swear-- + +FLUELLEN: +Eat, I pray you: will you have some more sauce to +your leek? there is not enough leek to swear by. + +PISTOL: +Quiet thy cudgel; thou dost see I eat. + +FLUELLEN: +Much good do you, scauld knave, heartily. Nay, pray +you, throw none away; the skin is good for your +broken coxcomb. When you take occasions to see leeks +hereafter, I pray you, mock at 'em; that is all. + +PISTOL: +Good. + +FLUELLEN: +Ay, leeks is good: hold you, there is a groat to +heal your pate. + +PISTOL: +Me a groat! + +FLUELLEN: +Yes, verily and in truth, you shall take it; or I +have another leek in my pocket, which you shall eat. + +PISTOL: +I take thy groat in earnest of revenge. + +FLUELLEN: +If I owe you any thing, I will pay you in cudgels: +you shall be a woodmonger, and buy nothing of me but +cudgels. God b' wi' you, and keep you, and heal your pate. + +PISTOL: +All hell shall stir for this. + +GOWER: +Go, go; you are a counterfeit cowardly knave. Will +you mock at an ancient tradition, begun upon an +honourable respect, and worn as a memorable trophy of +predeceased valour and dare not avouch in your deeds +any of your words? I have seen you gleeking and +galling at this gentleman twice or thrice. You +thought, because he could not speak English in the +native garb, he could not therefore handle an +English cudgel: you find it otherwise; and +henceforth let a Welsh correction teach you a good +English condition. Fare ye well. + +PISTOL: +Doth Fortune play the huswife with me now? +News have I, that my Nell is dead i' the spital +Of malady of France; +And there my rendezvous is quite cut off. +Old I do wax; and from my weary limbs +Honour is cudgelled. Well, bawd I'll turn, +And something lean to cutpurse of quick hand. +To England will I steal, and there I'll steal: +And patches will I get unto these cudgell'd scars, +And swear I got them in the Gallia wars. + +KING HENRY V: +Peace to this meeting, wherefore we are met! +Unto our brother France, and to our sister, +Health and fair time of day; joy and good wishes +To our most fair and princely cousin Katharine; +And, as a branch and member of this royalty, +By whom this great assembly is contrived, +We do salute you, Duke of Burgundy; +And, princes French, and peers, health to you all! + +KING OF FRANCE: +Right joyous are we to behold your face, +Most worthy brother England; fairly met: +So are you, princes English, every one. + +QUEEN ISABEL: +So happy be the issue, brother England, +Of this good day and of this gracious meeting, +As we are now glad to behold your eyes; +Your eyes, which hitherto have borne in them +Against the French, that met them in their bent, +The fatal balls of murdering basilisks: +The venom of such looks, we fairly hope, +Have lost their quality, and that this day +Shall change all griefs and quarrels into love. + +KING HENRY V: +To cry amen to that, thus we appear. + +QUEEN ISABEL: +You English princes all, I do salute you. + +BURGUNDY: +My duty to you both, on equal love, +Great Kings of France and England! That I have labour'd, +With all my wits, my pains and strong endeavours, +To bring your most imperial majesties +Unto this bar and royal interview, +Your mightiness on both parts best can witness. +Since then my office hath so far prevail'd +That, face to face and royal eye to eye, +You have congreeted, let it not disgrace me, +If I demand, before this royal view, +What rub or what impediment there is, +Why that the naked, poor and mangled Peace, +Dear nurse of arts and joyful births, +Should not in this best garden of the world +Our fertile France, put up her lovely visage? +Alas, she hath from France too long been chased, +And all her husbandry doth lie on heaps, +Corrupting in its own fertility. +Her vine, the merry cheerer of the heart, +Unpruned dies; her hedges even-pleach'd, +Like prisoners wildly overgrown with hair, +Put forth disorder'd twigs; her fallow leas +The darnel, hemlock and rank fumitory +Doth root upon, while that the coulter rusts +That should deracinate such savagery; +The even mead, that erst brought sweetly forth +The freckled cowslip, burnet and green clover, +Wanting the scythe, all uncorrected, rank, +Conceives by idleness and nothing teems +But hateful docks, rough thistles, kecksies, burs, +Losing both beauty and utility. +And as our vineyards, fallows, meads and hedges, +Defective in their natures, grow to wildness, +Even so our houses and ourselves and children +Have lost, or do not learn for want of time, +The sciences that should become our country; +But grow like savages,--as soldiers will +That nothing do but meditate on blood,-- +To swearing and stern looks, diffused attire +And every thing that seems unnatural. +Which to reduce into our former favour +You are assembled: and my speech entreats +That I may know the let, why gentle Peace +Should not expel these inconveniences +And bless us with her former qualities. + +KING HENRY V: +If, Duke of Burgundy, you would the peace, +Whose want gives growth to the imperfections +Which you have cited, you must buy that peace +With full accord to all our just demands; +Whose tenors and particular effects +You have enscheduled briefly in your hands. + +BURGUNDY: +The king hath heard them; to the which as yet +There is no answer made. + +KING HENRY V: +Well then the peace, +Which you before so urged, lies in his answer. + +KING OF FRANCE: +I have but with a cursorary eye +O'erglanced the articles: pleaseth your grace +To appoint some of your council presently +To sit with us once more, with better heed +To re-survey them, we will suddenly +Pass our accept and peremptory answer. + +KING HENRY V: +Brother, we shall. Go, uncle Exeter, +And brother Clarence, and you, brother Gloucester, +Warwick and Huntingdon, go with the king; +And take with you free power to ratify, +Augment, or alter, as your wisdoms best +Shall see advantageable for our dignity, +Any thing in or out of our demands, +And we'll consign thereto. Will you, fair sister, +Go with the princes, or stay here with us? + +QUEEN ISABEL: +Our gracious brother, I will go with them: +Haply a woman's voice may do some good, +When articles too nicely urged be stood on. + +KING HENRY V: +Yet leave our cousin Katharine here with us: +She is our capital demand, comprised +Within the fore-rank of our articles. + +QUEEN ISABEL: +She hath good leave. + +KING HENRY V: +Fair Katharine, and most fair, +Will you vouchsafe to teach a soldier terms +Such as will enter at a lady's ear +And plead his love-suit to her gentle heart? + +KATHARINE: +Your majesty shall mock at me; I cannot speak your England. + +KING HENRY V: +O fair Katharine, if you will love me soundly with +your French heart, I will be glad to hear you +confess it brokenly with your English tongue. Do +you like me, Kate? + +KATHARINE: +Pardonnez-moi, I cannot tell vat is 'like me.' + +KING HENRY V: +An angel is like you, Kate, and you are like an angel. + +KATHARINE: +Que dit-il? que je suis semblable a les anges? + +ALICE: +Oui, vraiment, sauf votre grace, ainsi dit-il. + +KING HENRY V: +I said so, dear Katharine; and I must not blush to +affirm it. + +KATHARINE: +O bon Dieu! les langues des hommes sont pleines de +tromperies. + +KING HENRY V: +What says she, fair one? that the tongues of men +are full of deceits? + +ALICE: +Oui, dat de tongues of de mans is be full of +deceits: dat is de princess. + +KING HENRY V: +The princess is the better Englishwoman. I' faith, +Kate, my wooing is fit for thy understanding: I am +glad thou canst speak no better English; for, if +thou couldst, thou wouldst find me such a plain king +that thou wouldst think I had sold my farm to buy my +crown. I know no ways to mince it in love, but +directly to say 'I love you:' then if you urge me +farther than to say 'do you in faith?' I wear out +my suit. Give me your answer; i' faith, do: and so +clap hands and a bargain: how say you, lady? + +KATHARINE: +Sauf votre honneur, me understand vell. + +KING HENRY V: +Marry, if you would put me to verses or to dance for +your sake, Kate, why you undid me: for the one, I +have neither words nor measure, and for the other, I +have no strength in measure, yet a reasonable +measure in strength. If I could win a lady at +leap-frog, or by vaulting into my saddle with my +armour on my back, under the correction of bragging +be it spoken. I should quickly leap into a wife. +Or if I might buffet for my love, or bound my horse +for her favours, I could lay on like a butcher and +sit like a jack-an-apes, never off. But, before God, +Kate, I cannot look greenly nor gasp out my +eloquence, nor I have no cunning in protestation; +only downright oaths, which I never use till urged, +nor never break for urging. If thou canst love a +fellow of this temper, Kate, whose face is not worth +sun-burning, that never looks in his glass for love +of any thing he sees there, let thine eye be thy +cook. I speak to thee plain soldier: If thou canst +love me for this, take me: if not, to say to thee +that I shall die, is true; but for thy love, by the +Lord, no; yet I love thee too. And while thou +livest, dear Kate, take a fellow of plain and +uncoined constancy; for he perforce must do thee +right, because he hath not the gift to woo in other +places: for these fellows of infinite tongue, that +can rhyme themselves into ladies' favours, they do +always reason themselves out again. What! a +speaker is but a prater; a rhyme is but a ballad. A +good leg will fall; a straight back will stoop; a +black beard will turn white; a curled pate will grow +bald; a fair face will wither; a full eye will wax +hollow: but a good heart, Kate, is the sun and the +moon; or, rather, the sun, and not the moon; for it +shines bright and never changes, but keeps his +course truly. If thou would have such a one, take +me; and take me, take a soldier; take a soldier, +take a king. And what sayest thou then to my love? +speak, my fair, and fairly, I pray thee. + +KATHARINE: +Is it possible dat I sould love de enemy of France? + +KING HENRY V: +No; it is not possible you should love the enemy of +France, Kate: but, in loving me, you should love +the friend of France; for I love France so well that +I will not part with a village of it; I will have it +all mine: and, Kate, when France is mine and I am +yours, then yours is France and you are mine. + +KATHARINE: +I cannot tell vat is dat. + +KING HENRY V: +No, Kate? I will tell thee in French; which I am +sure will hang upon my tongue like a new-married +wife about her husband's neck, hardly to be shook +off. Je quand sur le possession de France, et quand +vous avez le possession de moi,--let me see, what +then? Saint Denis be my speed!--donc votre est +France et vous etes mienne. It is as easy for me, +Kate, to conquer the kingdom as to speak so much +more French: I shall never move thee in French, +unless it be to laugh at me. + +KATHARINE: +Sauf votre honneur, le Francois que vous parlez, il +est meilleur que l'Anglois lequel je parle. + +KING HENRY V: +No, faith, is't not, Kate: but thy speaking of my +tongue, and I thine, most truly-falsely, must needs +be granted to be much at one. But, Kate, dost thou +understand thus much English, canst thou love me? + +KATHARINE: +I cannot tell. + +KING HENRY V: +Can any of your neighbours tell, Kate? I'll ask +them. Come, I know thou lovest me: and at night, +when you come into your closet, you'll question this +gentlewoman about me; and I know, Kate, you will to +her dispraise those parts in me that you love with +your heart: but, good Kate, mock me mercifully; the +rather, gentle princess, because I love thee +cruelly. If ever thou beest mine, Kate, as I have a +saving faith within me tells me thou shalt, I get +thee with scambling, and thou must therefore needs +prove a good soldier-breeder: shall not thou and I, +between Saint Denis and Saint George, compound a +boy, half French, half English, that shall go to +Constantinople and take the Turk by the beard? +shall we not? what sayest thou, my fair +flower-de-luce? + +KATHARINE: +I do not know dat + +KING HENRY V: +No; 'tis hereafter to know, but now to promise: do +but now promise, Kate, you will endeavour for your +French part of such a boy; and for my English moiety +take the word of a king and a bachelor. How answer +you, la plus belle Katharine du monde, mon tres cher +et devin deesse? + +KATHARINE: +Your majestee ave fausse French enough to deceive de +most sage demoiselle dat is en France. + +KING HENRY V: +Now, fie upon my false French! By mine honour, in +true English, I love thee, Kate: by which honour I +dare not swear thou lovest me; yet my blood begins to +flatter me that thou dost, notwithstanding the poor +and untempering effect of my visage. Now, beshrew +my father's ambition! he was thinking of civil wars +when he got me: therefore was I created with a +stubborn outside, with an aspect of iron, that, when +I come to woo ladies, I fright them. But, in faith, +Kate, the elder I wax, the better I shall appear: +my comfort is, that old age, that ill layer up of +beauty, can do no more, spoil upon my face: thou +hast me, if thou hast me, at the worst; and thou +shalt wear me, if thou wear me, better and better: +and therefore tell me, most fair Katharine, will you +have me? Put off your maiden blushes; avouch the +thoughts of your heart with the looks of an empress; +take me by the hand, and say 'Harry of England I am +thine:' which word thou shalt no sooner bless mine +ear withal, but I will tell thee aloud 'England is +thine, Ireland is thine, France is thine, and Harry +Plantagenet is thine;' who though I speak it before +his face, if he be not fellow with the best king, +thou shalt find the best king of good fellows. +Come, your answer in broken music; for thy voice is +music and thy English broken; therefore, queen of +all, Katharine, break thy mind to me in broken +English; wilt thou have me? + +KATHARINE: +Dat is as it sall please de roi mon pere. + +KING HENRY V: +Nay, it will please him well, Kate it shall please +him, Kate. + +KATHARINE: +Den it sall also content me. + +KING HENRY V: +Upon that I kiss your hand, and I call you my queen. + +KATHARINE: +Laissez, mon seigneur, laissez, laissez: ma foi, je +ne veux point que vous abaissiez votre grandeur en +baisant la main d'une de votre seigeurie indigne +serviteur; excusez-moi, je vous supplie, mon +tres-puissant seigneur. + +KING HENRY V: +Then I will kiss your lips, Kate. + +KATHARINE: +Les dames et demoiselles pour etre baisees devant +leur noces, il n'est pas la coutume de France. + +KING HENRY V: +Madam my interpreter, what says she? + +ALICE: +Dat it is not be de fashion pour les ladies of +France,--I cannot tell vat is baiser en Anglish. + +KING HENRY V: +To kiss. + +ALICE: +Your majesty entendre bettre que moi. + +KING HENRY V: +It is not a fashion for the maids in France to kiss +before they are married, would she say? + +ALICE: +Oui, vraiment. + +KING HENRY V: +O Kate, nice customs curtsy to great kings. Dear +Kate, you and I cannot be confined within the weak +list of a country's fashion: we are the makers of +manners, Kate; and the liberty that follows our +places stops the mouth of all find-faults; as I will +do yours, for upholding the nice fashion of your +country in denying me a kiss: therefore, patiently +and yielding. +You have witchcraft in your lips, Kate: there is +more eloquence in a sugar touch of them than in the +tongues of the French council; and they should +sooner persuade Harry of England than a general +petition of monarchs. Here comes your father. + +BURGUNDY: +God save your majesty! my royal cousin, teach you +our princess English? + +KING HENRY V: +I would have her learn, my fair cousin, how +perfectly I love her; and that is good English. + +BURGUNDY: +Is she not apt? + +KING HENRY V: +Our tongue is rough, coz, and my condition is not +smooth; so that, having neither the voice nor the +heart of flattery about me, I cannot so conjure up +the spirit of love in her, that he will appear in +his true likeness. + +BURGUNDY: +Pardon the frankness of my mirth, if I answer you +for that. If you would conjure in her, you must +make a circle; if conjure up love in her in his true +likeness, he must appear naked and blind. Can you +blame her then, being a maid yet rosed over with the +virgin crimson of modesty, if she deny the +appearance of a naked blind boy in her naked seeing +self? It were, my lord, a hard condition for a maid +to consign to. + +KING HENRY V: +Yet they do wink and yield, as love is blind and enforces. + +BURGUNDY: +They are then excused, my lord, when they see not +what they do. + +KING HENRY V: +Then, good my lord, teach your cousin to consent winking. + +BURGUNDY: +I will wink on her to consent, my lord, if you will +teach her to know my meaning: for maids, well +summered and warm kept, are like flies at +Bartholomew-tide, blind, though they have their +eyes; and then they will endure handling, which +before would not abide looking on. + +KING HENRY V: +This moral ties me over to time and a hot summer; +and so I shall catch the fly, your cousin, in the +latter end and she must be blind too. + +BURGUNDY: +As love is, my lord, before it loves. + +KING HENRY V: +It is so: and you may, some of you, thank love for +my blindness, who cannot see many a fair French city +for one fair French maid that stands in my way. + +FRENCH KING: +Yes, my lord, you see them perspectively, the cities +turned into a maid; for they are all girdled with +maiden walls that war hath never entered. + +KING HENRY V: +Shall Kate be my wife? + +FRENCH KING: +So please you. + +KING HENRY V: +I am content; so the maiden cities you talk of may +wait on her: so the maid that stood in the way for +my wish shall show me the way to my will. + +FRENCH KING: +We have consented to all terms of reason. + +KING HENRY V: +Is't so, my lords of England? + +WESTMORELAND: +The king hath granted every article: +His daughter first, and then in sequel all, +According to their firm proposed natures. + +EXETER: +Only he hath not yet subscribed this: +Where your majesty demands, that the King of France, +having any occasion to write for matter of grant, +shall name your highness in this form and with this +addition in French, Notre trescher fils Henri, Roi +d'Angleterre, Heritier de France; and thus in +Latin, Praeclarissimus filius noster Henricus, Rex +Angliae, et Haeres Franciae. + +FRENCH KING: +Nor this I have not, brother, so denied, +But your request shall make me let it pass. + +KING HENRY V: +I pray you then, in love and dear alliance, +Let that one article rank with the rest; +And thereupon give me your daughter. + +FRENCH KING: +Take her, fair son, and from her blood raise up +Issue to me; that the contending kingdoms +Of France and England, whose very shores look pale +With envy of each other's happiness, +May cease their hatred, and this dear conjunction +Plant neighbourhood and Christian-like accord +In their sweet bosoms, that never war advance +His bleeding sword 'twixt England and fair France. + +ALL: +Amen! + +KING HENRY V: +Now, welcome, Kate: and bear me witness all, +That here I kiss her as my sovereign queen. + +QUEEN ISABEL: +God, the best maker of all marriages, +Combine your hearts in one, your realms in one! +As man and wife, being two, are one in love, +So be there 'twixt your kingdoms such a spousal, +That never may ill office, or fell jealousy, +Which troubles oft the bed of blessed marriage, +Thrust in between the paction of these kingdoms, +To make divorce of their incorporate league; +That English may as French, French Englishmen, +Receive each other. God speak this Amen! + +ALL: +Amen! + +KING HENRY V: +Prepare we for our marriage--on which day, +My Lord of Burgundy, we'll take your oath, +And all the peers', for surety of our leagues. +Then shall I swear to Kate, and you to me; +And may our oaths well kept and prosperous be! + +Chorus: +Thus far, with rough and all-unable pen, +Our bending author hath pursued the story, +In little room confining mighty men, +Mangling by starts the full course of their glory. +Small time, but in that small most greatly lived +This star of England: Fortune made his sword; +By which the world's best garden be achieved, +And of it left his son imperial lord. +Henry the Sixth, in infant bands crown'd King +Of France and England, did this king succeed; +Whose state so many had the managing, +That they lost France and made his England bleed: +Which oft our stage hath shown; and, for their sake, +In your fair minds let this acceptance take. + +RUMOUR: +Open your ears; for which of you will stop +The vent of hearing when loud Rumour speaks? +I, from the orient to the drooping west, +Making the wind my post-horse, still unfold +The acts commenced on this ball of earth: +Upon my tongues continual slanders ride, +The which in every language I pronounce, +Stuffing the ears of men with false reports. +I speak of peace, while covert enmity +Under the smile of safety wounds the world: +And who but Rumour, who but only I, +Make fearful musters and prepared defence, +Whiles the big year, swoln with some other grief, +Is thought with child by the stern tyrant war, +And no such matter? Rumour is a pipe +Blown by surmises, jealousies, conjectures +And of so easy and so plain a stop +That the blunt monster with uncounted heads, +The still-discordant wavering multitude, +Can play upon it. But what need I thus +My well-known body to anatomize +Among my household? Why is Rumour here? +I run before King Harry's victory; +Who in a bloody field by Shrewsbury +Hath beaten down young Hotspur and his troops, +Quenching the flame of bold rebellion +Even with the rebel's blood. But what mean I +To speak so true at first? my office is +To noise abroad that Harry Monmouth fell +Under the wrath of noble Hotspur's sword, +And that the king before the Douglas' rage +Stoop'd his anointed head as low as death. +This have I rumour'd through the peasant towns +Between that royal field of Shrewsbury +And this worm-eaten hold of ragged stone, +Where Hotspur's father, old Northumberland, +Lies crafty-sick: the posts come tiring on, +And not a man of them brings other news +Than they have learn'd of me: from Rumour's tongues +They bring smooth comforts false, worse than +true wrongs. + +LORD BARDOLPH: +Who keeps the gate here, ho? +Where is the earl? + +Porter: +What shall I say you are? + +LORD BARDOLPH: +Tell thou the earl +That the Lord Bardolph doth attend him here. + +Porter: +His lordship is walk'd forth into the orchard; +Please it your honour, knock but at the gate, +And he himself wilt answer. + +LORD BARDOLPH: +Here comes the earl. + +NORTHUMBERLAND: +What news, Lord Bardolph? every minute now +Should be the father of some stratagem: +The times are wild: contention, like a horse +Full of high feeding, madly hath broke loose +And bears down all before him. + +LORD BARDOLPH: +Noble earl, +I bring you certain news from Shrewsbury. + +NORTHUMBERLAND: +Good, an God will! + +LORD BARDOLPH: +As good as heart can wish: +The king is almost wounded to the death; +And, in the fortune of my lord your son, +Prince Harry slain outright; and both the Blunts +Kill'd by the hand of Douglas; young Prince John +And Westmoreland and Stafford fled the field; +And Harry Monmouth's brawn, the hulk Sir John, +Is prisoner to your son: O, such a day, +So fought, so follow'd and so fairly won, +Came not till now to dignify the times, +Since Caesar's fortunes! + +NORTHUMBERLAND: +How is this derived? +Saw you the field? came you from Shrewsbury? + +LORD BARDOLPH: +I spake with one, my lord, that came from thence, +A gentleman well bred and of good name, +That freely render'd me these news for true. + +NORTHUMBERLAND: +Here comes my servant Travers, whom I sent +On Tuesday last to listen after news. + +LORD BARDOLPH: +My lord, I over-rode him on the way; +And he is furnish'd with no certainties +More than he haply may retail from me. + +NORTHUMBERLAND: +Now, Travers, what good tidings comes with you? + +TRAVERS: +My lord, Sir John Umfrevile turn'd me back +With joyful tidings; and, being better horsed, +Out-rode me. After him came spurring hard +A gentleman, almost forspent with speed, +That stopp'd by me to breathe his bloodied horse. +He ask'd the way to Chester; and of him +I did demand what news from Shrewsbury: +He told me that rebellion had bad luck +And that young Harry Percy's spur was cold. +With that, he gave his able horse the head, +And bending forward struck his armed heels +Against the panting sides of his poor jade +Up to the rowel-head, and starting so +He seem'd in running to devour the way, +Staying no longer question. + +NORTHUMBERLAND: +Ha! Again: +Said he young Harry Percy's spur was cold? +Of Hotspur Coldspur? that rebellion +Had met ill luck? + +LORD BARDOLPH: +My lord, I'll tell you what; +If my young lord your son have not the day, +Upon mine honour, for a silken point +I'll give my barony: never talk of it. + +NORTHUMBERLAND: +Why should that gentleman that rode by Travers +Give then such instances of loss? + +LORD BARDOLPH: +Who, he? +He was some hilding fellow that had stolen +The horse he rode on, and, upon my life, +Spoke at a venture. Look, here comes more news. + +NORTHUMBERLAND: +Yea, this man's brow, like to a title-leaf, +Foretells the nature of a tragic volume: +So looks the strand whereon the imperious flood +Hath left a witness'd usurpation. +Say, Morton, didst thou come from Shrewsbury? + +MORTON: +I ran from Shrewsbury, my noble lord; +Where hateful death put on his ugliest mask +To fright our party. + +NORTHUMBERLAND: +How doth my son and brother? +Thou tremblest; and the whiteness in thy cheek +Is apter than thy tongue to tell thy errand. +Even such a man, so faint, so spiritless, +So dull, so dead in look, so woe-begone, +Drew Priam's curtain in the dead of night, +And would have told him half his Troy was burnt; +But Priam found the fire ere he his tongue, +And I my Percy's death ere thou report'st it. +This thou wouldst say, 'Your son did thus and thus; +Your brother thus: so fought the noble Douglas:' +Stopping my greedy ear with their bold deeds: +But in the end, to stop my ear indeed, +Thou hast a sigh to blow away this praise, +Ending with 'Brother, son, and all are dead.' + +MORTON: +Douglas is living, and your brother, yet; +But, for my lord your son-- + +NORTHUMBERLAND: +Why, he is dead. +See what a ready tongue suspicion hath! +He that but fears the thing he would not know +Hath by instinct knowledge from others' eyes +That what he fear'd is chanced. Yet speak, Morton; +Tell thou an earl his divination lies, +And I will take it as a sweet disgrace +And make thee rich for doing me such wrong. + +MORTON: +You are too great to be by me gainsaid: +Your spirit is too true, your fears too certain. + +NORTHUMBERLAND: +Yet, for all this, say not that Percy's dead. +I see a strange confession in thine eye: +Thou shakest thy head and hold'st it fear or sin +To speak a truth. If he be slain, say so; +The tongue offends not that reports his death: +And he doth sin that doth belie the dead, +Not he which says the dead is not alive. +Yet the first bringer of unwelcome news +Hath but a losing office, and his tongue +Sounds ever after as a sullen bell, +Remember'd tolling a departing friend. + +LORD BARDOLPH: +I cannot think, my lord, your son is dead. + +MORTON: +I am sorry I should force you to believe +That which I would to God I had not seen; +But these mine eyes saw him in bloody state, +Rendering faint quittance, wearied and out-breathed, +To Harry Monmouth; whose swift wrath beat down +The never-daunted Percy to the earth, +From whence with life he never more sprung up. +In few, his death, whose spirit lent a fire +Even to the dullest peasant in his camp, +Being bruited once, took fire and heat away +From the best temper'd courage in his troops; +For from his metal was his party steel'd; +Which once in him abated, all the rest +Turn'd on themselves, like dull and heavy lead: +And as the thing that's heavy in itself, +Upon enforcement flies with greatest speed, +So did our men, heavy in Hotspur's loss, +Lend to this weight such lightness with their fear +That arrows fled not swifter toward their aim +Than did our soldiers, aiming at their safety, +Fly from the field. Then was the noble Worcester +Too soon ta'en prisoner; and that furious Scot, +The bloody Douglas, whose well-labouring sword +Had three times slain the appearance of the king, +'Gan vail his stomach and did grace the shame +Of those that turn'd their backs, and in his flight, +Stumbling in fear, was took. The sum of all +Is that the king hath won, and hath sent out +A speedy power to encounter you, my lord, +Under the conduct of young Lancaster +And Westmoreland. This is the news at full. + +NORTHUMBERLAND: +For this I shall have time enough to mourn. +In poison there is physic; and these news, +Having been well, that would have made me sick, +Being sick, have in some measure made me well: +And as the wretch, whose fever-weaken'd joints, +Like strengthless hinges, buckle under life, +Impatient of his fit, breaks like a fire +Out of his keeper's arms, even so my limbs, +Weaken'd with grief, being now enraged with grief, +Are thrice themselves. Hence, therefore, thou nice crutch! +A scaly gauntlet now with joints of steel +Must glove this hand: and hence, thou sickly quoif! +Thou art a guard too wanton for the head +Which princes, flesh'd with conquest, aim to hit. +Now bind my brows with iron; and approach +The ragged'st hour that time and spite dare bring +To frown upon the enraged Northumberland! +Let heaven kiss earth! now let not Nature's hand +Keep the wild flood confined! let order die! +And let this world no longer be a stage +To feed contention in a lingering act; +But let one spirit of the first-born Cain +Reign in all bosoms, that, each heart being set +On bloody courses, the rude scene may end, +And darkness be the burier of the dead! + +TRAVERS: +This strained passion doth you wrong, my lord. + +LORD BARDOLPH: +Sweet earl, divorce not wisdom from your honour. + +MORTON: +The lives of all your loving complices +Lean on your health; the which, if you give o'er +To stormy passion, must perforce decay. +You cast the event of war, my noble lord, +And summ'd the account of chance, before you said +'Let us make head.' It was your presurmise, +That, in the dole of blows, your son might drop: +You knew he walk'd o'er perils, on an edge, +More likely to fall in than to get o'er; +You were advised his flesh was capable +Of wounds and scars and that his forward spirit +Would lift him where most trade of danger ranged: +Yet did you say 'Go forth;' and none of this, +Though strongly apprehended, could restrain +The stiff-borne action: what hath then befallen, +Or what hath this bold enterprise brought forth, +More than that being which was like to be? + +LORD BARDOLPH: +We all that are engaged to this loss +Knew that we ventured on such dangerous seas +That if we wrought our life 'twas ten to one; +And yet we ventured, for the gain proposed +Choked the respect of likely peril fear'd; +And since we are o'erset, venture again. +Come, we will all put forth, body and goods. + +MORTON: +'Tis more than time: and, my most noble lord, +I hear for certain, and do speak the truth, +The gentle Archbishop of York is up +With well-appointed powers: he is a man +Who with a double surety binds his followers. +My lord your son had only but the corpse, +But shadows and the shows of men, to fight; +For that same word, rebellion, did divide +The action of their bodies from their souls; +And they did fight with queasiness, constrain'd, +As men drink potions, that their weapons only +Seem'd on our side; but, for their spirits and souls, +This word, rebellion, it had froze them up, +As fish are in a pond. But now the bishop +Turns insurrection to religion: +Supposed sincere and holy in his thoughts, +He's followed both with body and with mind; +And doth enlarge his rising with the blood +Of fair King Richard, scraped from Pomfret stones; +Derives from heaven his quarrel and his cause; +Tells them he doth bestride a bleeding land, +Gasping for life under great Bolingbroke; +And more and less do flock to follow him. + +NORTHUMBERLAND: +I knew of this before; but, to speak truth, +This present grief had wiped it from my mind. +Go in with me; and counsel every man +The aptest way for safety and revenge: +Get posts and letters, and make friends with speed: +Never so few, and never yet more need. + +FALSTAFF: +Sirrah, you giant, what says the doctor to my water? + +Page: +He said, sir, the water itself was a good healthy +water; but, for the party that owed it, he might +have more diseases than he knew for. + +FALSTAFF: +Men of all sorts take a pride to gird at me: the +brain of this foolish-compounded clay, man, is not +able to invent anything that tends to laughter, more +than I invent or is invented on me: I am not only +witty in myself, but the cause that wit is in other +men. I do here walk before thee like a sow that +hath overwhelmed all her litter but one. If the +prince put thee into my service for any other reason +than to set me off, why then I have no judgment. +Thou whoreson mandrake, thou art fitter to be worn +in my cap than to wait at my heels. I was never +manned with an agate till now: but I will inset you +neither in gold nor silver, but in vile apparel, and +send you back again to your master, for a jewel,-- +the juvenal, the prince your master, whose chin is +not yet fledged. I will sooner have a beard grow in +the palm of my hand than he shall get one on his +cheek; and yet he will not stick to say his face is +a face-royal: God may finish it when he will, 'tis +not a hair amiss yet: he may keep it still at a +face-royal, for a barber shall never earn sixpence +out of it; and yet he'll be crowing as if he had +writ man ever since his father was a bachelor. He +may keep his own grace, but he's almost out of mine, +I can assure him. What said Master Dombledon about +the satin for my short cloak and my slops? + +Page: +He said, sir, you should procure him better +assurance than Bardolph: he would not take his +band and yours; he liked not the security. + +FALSTAFF: +Let him be damned, like the glutton! pray God his +tongue be hotter! A whoreson Achitophel! a rascally +yea-forsooth knave! to bear a gentleman in hand, +and then stand upon security! The whoreson +smooth-pates do now wear nothing but high shoes, and +bunches of keys at their girdles; and if a man is +through with them in honest taking up, then they +must stand upon security. I had as lief they would +put ratsbane in my mouth as offer to stop it with +security. I looked a' should have sent me two and +twenty yards of satin, as I am a true knight, and he +sends me security. Well, he may sleep in security; +for he hath the horn of abundance, and the lightness +of his wife shines through it: and yet cannot he +see, though he have his own lanthorn to light him. +Where's Bardolph? + +Page: +He's gone into Smithfield to buy your worship a horse. + +FALSTAFF: +I bought him in Paul's, and he'll buy me a horse in +Smithfield: an I could get me but a wife in the +stews, I were manned, horsed, and wived. + +Page: +Sir, here comes the nobleman that committed the +Prince for striking him about Bardolph. + +FALSTAFF: +Wait, close; I will not see him. + +Lord Chief-Justice: +What's he that goes there? + +Servant: +Falstaff, an't please your lordship. + +Lord Chief-Justice: +He that was in question for the robbery? + +Servant: +He, my lord: but he hath since done good service at +Shrewsbury; and, as I hear, is now going with some +charge to the Lord John of Lancaster. + +Lord Chief-Justice: +What, to York? Call him back again. + +Servant: +Sir John Falstaff! + +FALSTAFF: +Boy, tell him I am deaf. + +Page: +You must speak louder; my master is deaf. + +Lord Chief-Justice: +I am sure he is, to the hearing of any thing good. +Go, pluck him by the elbow; I must speak with him. + +Servant: +Sir John! + +FALSTAFF: +What! a young knave, and begging! Is there not +wars? is there not employment? doth not the king +lack subjects? do not the rebels need soldiers? +Though it be a shame to be on any side but one, it +is worse shame to beg than to be on the worst side, +were it worse than the name of rebellion can tell +how to make it. + +Servant: +You mistake me, sir. + +FALSTAFF: +Why, sir, did I say you were an honest man? setting +my knighthood and my soldiership aside, I had lied +in my throat, if I had said so. + +Servant: +I pray you, sir, then set your knighthood and our +soldiership aside; and give me leave to tell you, +you lie in your throat, if you say I am any other +than an honest man. + +FALSTAFF: +I give thee leave to tell me so! I lay aside that +which grows to me! if thou gettest any leave of me, +hang me; if thou takest leave, thou wert better be +hanged. You hunt counter: hence! avaunt! + +Servant: +Sir, my lord would speak with you. + +Lord Chief-Justice: +Sir John Falstaff, a word with you. + +FALSTAFF: +My good lord! God give your lordship good time of +day. I am glad to see your lordship abroad: I heard +say your lordship was sick: I hope your lordship +goes abroad by advice. Your lordship, though not +clean past your youth, hath yet some smack of age in +you, some relish of the saltness of time; and I must +humbly beseech your lordship to have a reverent care +of your health. + +Lord Chief-Justice: +Sir John, I sent for you before your expedition to +Shrewsbury. + +FALSTAFF: +An't please your lordship, I hear his majesty is +returned with some discomfort from Wales. + +Lord Chief-Justice: +I talk not of his majesty: you would not come when +I sent for you. + +FALSTAFF: +And I hear, moreover, his highness is fallen into +this same whoreson apoplexy. + +Lord Chief-Justice: +Well, God mend him! I pray you, let me speak with +you. + +FALSTAFF: +This apoplexy is, as I take it, a kind of lethargy, +an't please your lordship; a kind of sleeping in the +blood, a whoreson tingling. + +Lord Chief-Justice: +What tell you me of it? be it as it is. + +FALSTAFF: +It hath its original from much grief, from study and +perturbation of the brain: I have read the cause of +his effects in Galen: it is a kind of deafness. + +Lord Chief-Justice: +I think you are fallen into the disease; for you +hear not what I say to you. + +FALSTAFF: +Very well, my lord, very well: rather, an't please +you, it is the disease of not listening, the malady +of not marking, that I am troubled withal. + +Lord Chief-Justice: +To punish you by the heels would amend the +attention of your ears; and I care not if I do +become your physician. + +FALSTAFF: +I am as poor as Job, my lord, but not so patient: +your lordship may minister the potion of +imprisonment to me in respect of poverty; but how +should I be your patient to follow your +prescriptions, the wise may make some dram of a +scruple, or indeed a scruple itself. + +Lord Chief-Justice: +I sent for you, when there were matters against you +for your life, to come speak with me. + +FALSTAFF: +As I was then advised by my learned counsel in the +laws of this land-service, I did not come. + +Lord Chief-Justice: +Well, the truth is, Sir John, you live in great infamy. + +FALSTAFF: +He that buckles him in my belt cannot live in less. + +Lord Chief-Justice: +Your means are very slender, and your waste is great. + +FALSTAFF: +I would it were otherwise; I would my means were +greater, and my waist slenderer. + +Lord Chief-Justice: +You have misled the youthful prince. + +FALSTAFF: +The young prince hath misled me: I am the fellow +with the great belly, and he my dog. + +Lord Chief-Justice: +Well, I am loath to gall a new-healed wound: your +day's service at Shrewsbury hath a little gilded +over your night's exploit on Gad's-hill: you may +thank the unquiet time for your quiet o'er-posting +that action. + +FALSTAFF: +My lord? + +Lord Chief-Justice: +But since all is well, keep it so: wake not a +sleeping wolf. + +FALSTAFF: +To wake a wolf is as bad as to smell a fox. + +Lord Chief-Justice: +What! you are as a candle, the better part burnt +out. + +FALSTAFF: +A wassail candle, my lord, all tallow: if I did say +of wax, my growth would approve the truth. + +Lord Chief-Justice: +There is not a white hair on your face but should +have his effect of gravity. + +FALSTAFF: +His effect of gravy, gravy, gravy. + +Lord Chief-Justice: +You follow the young prince up and down, like his +ill angel. + +FALSTAFF: +Not so, my lord; your ill angel is light; but I hope +he that looks upon me will take me without weighing: +and yet, in some respects, I grant, I cannot go: I +cannot tell. Virtue is of so little regard in these +costermonger times that true valour is turned +bear-herd: pregnancy is made a tapster, and hath +his quick wit wasted in giving reckonings: all the +other gifts appertinent to man, as the malice of +this age shapes them, are not worth a gooseberry. +You that are old consider not the capacities of us +that are young; you do measure the heat of our +livers with the bitterness of your galls: and we +that are in the vaward of our youth, I must confess, +are wags too. + +Lord Chief-Justice: +Do you set down your name in the scroll of youth, +that are written down old with all the characters of +age? Have you not a moist eye? a dry hand? a +yellow cheek? a white beard? a decreasing leg? an +increasing belly? is not your voice broken? your +wind short? your chin double? your wit single? and +every part about you blasted with antiquity? and +will you yet call yourself young? Fie, fie, fie, Sir John! + +FALSTAFF: +My lord, I was born about three of the clock in the +afternoon, with a white head and something a round +belly. For my voice, I have lost it with halloing +and singing of anthems. To approve my youth +further, I will not: the truth is, I am only old in +judgment and understanding; and he that will caper +with me for a thousand marks, let him lend me the +money, and have at him! For the box of the ear that +the prince gave you, he gave it like a rude prince, +and you took it like a sensible lord. I have +chequed him for it, and the young lion repents; +marry, not in ashes and sackcloth, but in new silk +and old sack. + +Lord Chief-Justice: +Well, God send the prince a better companion! + +FALSTAFF: +God send the companion a better prince! I cannot +rid my hands of him. + +Lord Chief-Justice: +Well, the king hath severed you and Prince Harry: I +hear you are going with Lord John of Lancaster +against the Archbishop and the Earl of +Northumberland. + +FALSTAFF: +Yea; I thank your pretty sweet wit for it. But look +you pray, all you that kiss my lady Peace at home, +that our armies join not in a hot day; for, by the +Lord, I take but two shirts out with me, and I mean +not to sweat extraordinarily: if it be a hot day, +and I brandish any thing but a bottle, I would I +might never spit white again. There is not a +dangerous action can peep out his head but I am +thrust upon it: well, I cannot last ever: but it +was alway yet the trick of our English nation, if +they have a good thing, to make it too common. If +ye will needs say I am an old man, you should give +me rest. I would to God my name were not so +terrible to the enemy as it is: I were better to be +eaten to death with a rust than to be scoured to +nothing with perpetual motion. + +Lord Chief-Justice: +Well, be honest, be honest; and God bless your +expedition! + +FALSTAFF: +Will your lordship lend me a thousand pound to +furnish me forth? + +Lord Chief-Justice: +Not a penny, not a penny; you are too impatient to +bear crosses. Fare you well: commend me to my +cousin Westmoreland. + +FALSTAFF: +If I do, fillip me with a three-man beetle. A man +can no more separate age and covetousness than a' +can part young limbs and lechery: but the gout +galls the one, and the pox pinches the other; and +so both the degrees prevent my curses. Boy! + +Page: +Sir? + +FALSTAFF: +What money is in my purse? + +Page: +Seven groats and two pence. + +FALSTAFF: +I can get no remedy against this consumption of the +purse: borrowing only lingers and lingers it out, +but the disease is incurable. Go bear this letter +to my Lord of Lancaster; this to the prince; this +to the Earl of Westmoreland; and this to old +Mistress Ursula, whom I have weekly sworn to marry +since I perceived the first white hair on my chin. +About it: you know where to find me. +A pox of this gout! or, a gout of this pox! for +the one or the other plays the rogue with my great +toe. 'Tis no matter if I do halt; I have the wars +for my colour, and my pension shall seem the more +reasonable. A good wit will make use of any thing: +I will turn diseases to commodity. + +ARCHBISHOP OF YORK: +Thus have you heard our cause and known our means; +And, my most noble friends, I pray you all, +Speak plainly your opinions of our hopes: +And first, lord marshal, what say you to it? + +MOWBRAY: +I well allow the occasion of our arms; +But gladly would be better satisfied +How in our means we should advance ourselves +To look with forehead bold and big enough +Upon the power and puissance of the king. + +HASTINGS: +Our present musters grow upon the file +To five and twenty thousand men of choice; +And our supplies live largely in the hope +Of great Northumberland, whose bosom burns +With an incensed fire of injuries. + +LORD BARDOLPH: +The question then, Lord Hastings, standeth thus; +Whether our present five and twenty thousand +May hold up head without Northumberland? + +HASTINGS: +With him, we may. + +LORD BARDOLPH: +Yea, marry, there's the point: +But if without him we be thought too feeble, +My judgment is, we should not step too far +Till we had his assistance by the hand; +For in a theme so bloody-faced as this +Conjecture, expectation, and surmise +Of aids incertain should not be admitted. + +ARCHBISHOP OF YORK: +'Tis very true, Lord Bardolph; for indeed +It was young Hotspur's case at Shrewsbury. + +LORD BARDOLPH: +It was, my lord; who lined himself with hope, +Eating the air on promise of supply, +Flattering himself in project of a power +Much smaller than the smallest of his thoughts: +And so, with great imagination +Proper to madmen, led his powers to death +And winking leap'd into destruction. + +HASTINGS: +But, by your leave, it never yet did hurt +To lay down likelihoods and forms of hope. + +LORD BARDOLPH: +Yes, if this present quality of war, +Indeed the instant action: a cause on foot +Lives so in hope as in an early spring +We see the appearing buds; which to prove fruit, +Hope gives not so much warrant as despair +That frosts will bite them. When we mean to build, +We first survey the plot, then draw the model; +And when we see the figure of the house, +Then must we rate the cost of the erection; +Which if we find outweighs ability, +What do we then but draw anew the model +In fewer offices, or at last desist +To build at all? Much more, in this great work, +Which is almost to pluck a kingdom down +And set another up, should we survey +The plot of situation and the model, +Consent upon a sure foundation, +Question surveyors, know our own estate, +How able such a work to undergo, +To weigh against his opposite; or else +We fortify in paper and in figures, +Using the names of men instead of men: +Like one that draws the model of a house +Beyond his power to build it; who, half through, +Gives o'er and leaves his part-created cost +A naked subject to the weeping clouds +And waste for churlish winter's tyranny. + +HASTINGS: +Grant that our hopes, yet likely of fair birth, +Should be still-born, and that we now possess'd +The utmost man of expectation, +I think we are a body strong enough, +Even as we are, to equal with the king. + +LORD BARDOLPH: +What, is the king but five and twenty thousand? + +HASTINGS: +To us no more; nay, not so much, Lord Bardolph. +For his divisions, as the times do brawl, +Are in three heads: one power against the French, +And one against Glendower; perforce a third +Must take up us: so is the unfirm king +In three divided; and his coffers sound +With hollow poverty and emptiness. + +ARCHBISHOP OF YORK: +That he should draw his several strengths together +And come against us in full puissance, +Need not be dreaded. + +HASTINGS: +If he should do so, +He leaves his back unarm'd, the French and Welsh +Baying him at the heels: never fear that. + +LORD BARDOLPH: +Who is it like should lead his forces hither? + +HASTINGS: +The Duke of Lancaster and Westmoreland; +Against the Welsh, himself and Harry Monmouth: +But who is substituted 'gainst the French, +I have no certain notice. + +ARCHBISHOP OF YORK: +Let us on, +And publish the occasion of our arms. +The commonwealth is sick of their own choice; +Their over-greedy love hath surfeited: +An habitation giddy and unsure +Hath he that buildeth on the vulgar heart. +O thou fond many, with what loud applause +Didst thou beat heaven with blessing Bolingbroke, +Before he was what thou wouldst have him be! +And being now trimm'd in thine own desires, +Thou, beastly feeder, art so full of him, +That thou provokest thyself to cast him up. +So, so, thou common dog, didst thou disgorge +Thy glutton bosom of the royal Richard; +And now thou wouldst eat thy dead vomit up, +And howl'st to find it. What trust is in +these times? +They that, when Richard lived, would have him die, +Are now become enamour'd on his grave: +Thou, that threw'st dust upon his goodly head +When through proud London he came sighing on +After the admired heels of Bolingbroke, +Criest now 'O earth, yield us that king again, +And take thou this!' O thoughts of men accursed! +Past and to come seems best; things present worst. + +MOWBRAY: +Shall we go draw our numbers and set on? + +HASTINGS: +We are time's subjects, and time bids be gone. + +MISTRESS QUICKLY: +Master Fang, have you entered the action? + +FANG: +It is entered. + +MISTRESS QUICKLY: +Where's your yeoman? Is't a lusty yeoman? +Will a' stand to 't? + +FANG: +Sirrah, where's Snare? + +MISTRESS QUICKLY: +O Lord, ay! good Master Snare. + +SNARE: +Here, here. + +FANG: +Snare, we must arrest Sir John Falstaff. + +MISTRESS QUICKLY: +Yea, good Master Snare; I have entered him +and all. + +SNARE: +It may chance cost some of us our lives, for +he will stab. + +MISTRESS QUICKLY: +Alas the day! take heed of him; he stabbed +me in mine own house, and that most beastly: in good faith, he +cares not what mischief he does. If his weapon be +out: he will foin like any devil; he will spare neither +man, woman, nor child. + +FANG: +If I can close with him, I care not for his +thrust. + +MISTRESS QUICKLY: +No, nor I neither: I'll be at your elbow. + +FANG: +An I but fist him once; an a' come but +within my vice,-- + +MISTRESS QUICKLY: +I am undone by his going; I warrant you, +he's an infinitive thing upon my score. Good Master +Fang, hold him sure: good Master Snare, let him +not 'scape. A' comes continuantly to Pie-corner +--saving your manhoods--to buy a saddle; and he is +indited to dinner to the Lubber's-head in Lumbert +street, to Master Smooth's the silkman: I pray ye, +since my exion is entered and my case so openly +known to the world, let him be brought in to his +answer. A hundred mark is a long one for a poor lone +woman to bear: and I have borne, and borne, and +borne, and have been fubbed off, and fubbed off, and +fubbed off, from this day to that day, that it is a +shame to be thought on. There is no honesty in such +dealing; unless a woman should be made an ass and a +beast, to bear every knave's wrong. +Yonder he comes; and that errant malmsey-nose knave, +Bardolph, with him. Do your offices, do your +offices: Master Fang and Master Snare, do me, do me, +do me your offices. + +FALSTAFF: +How now! whose mare's dead? what's the matter? + +FANG: +Sir John, I arrest you at the suit of Mistress Quickly. + +FALSTAFF: +Away, varlets! Draw, Bardolph: cut me off the +villain's head: throw the quean in the channel. + +MISTRESS QUICKLY: +Throw me in the channel! I'll throw thee in the +channel. Wilt thou? wilt thou? thou bastardly +rogue! Murder, murder! Ah, thou honeysuckle +villain! wilt thou kill God's officers and the +king's? Ah, thou honey-seed rogue! thou art a +honey-seed, a man-queller, and a woman-queller. + +FALSTAFF: +Keep them off, Bardolph. + +FANG: +A rescue! a rescue! + +MISTRESS QUICKLY: +Good people, bring a rescue or two. Thou wo't, wo't +thou? Thou wo't, wo't ta? do, do, thou rogue! do, +thou hemp-seed! + +FALSTAFF: +Away, you scullion! you rampallion! You +fustilarian! I'll tickle your catastrophe. + +Lord Chief-Justice: +What is the matter? keep the peace here, ho! + +MISTRESS QUICKLY: +Good my lord, be good to me. I beseech you, stand to me. + +Lord Chief-Justice: +How now, Sir John! what are you brawling here? +Doth this become your place, your time and business? +You should have been well on your way to York. +Stand from him, fellow: wherefore hang'st upon him? + +MISTRESS QUICKLY: +O most worshipful lord, an't please your grace, I am +a poor widow of Eastcheap, and he is arrested at my suit. + +Lord Chief-Justice: +For what sum? + +MISTRESS QUICKLY: +It is more than for some, my lord; it is for all, +all I have. He hath eaten me out of house and home; +he hath put all my substance into that fat belly of +his: but I will have some of it out again, or I +will ride thee o' nights like the mare. + +FALSTAFF: +I think I am as like to ride the mare, if I have +any vantage of ground to get up. + +Lord Chief-Justice: +How comes this, Sir John? Fie! what man of good +temper would endure this tempest of exclamation? +Are you not ashamed to enforce a poor widow to so +rough a course to come by her own? + +FALSTAFF: +What is the gross sum that I owe thee? + +MISTRESS QUICKLY: +Marry, if thou wert an honest man, thyself and the +money too. Thou didst swear to me upon a +parcel-gilt goblet, sitting in my Dolphin-chamber, +at the round table, by a sea-coal fire, upon +Wednesday in Wheeson week, when the prince broke +thy head for liking his father to a singing-man of +Windsor, thou didst swear to me then, as I was +washing thy wound, to marry me and make me my lady +thy wife. Canst thou deny it? Did not goodwife +Keech, the butcher's wife, come in then and call me +gossip Quickly? coming in to borrow a mess of +vinegar; telling us she had a good dish of prawns; +whereby thou didst desire to eat some; whereby I +told thee they were ill for a green wound? And +didst thou not, when she was gone down stairs, +desire me to be no more so familiarity with such +poor people; saying that ere long they should call +me madam? And didst thou not kiss me and bid me +fetch thee thirty shillings? I put thee now to thy +book-oath: deny it, if thou canst. + +FALSTAFF: +My lord, this is a poor mad soul; and she says up +and down the town that the eldest son is like you: +she hath been in good case, and the truth is, +poverty hath distracted her. But for these foolish +officers, I beseech you I may have redress against them. + +Lord Chief-Justice: +Sir John, Sir John, I am well acquainted with your +manner of wrenching the true cause the false way. It +is not a confident brow, nor the throng of words +that come with such more than impudent sauciness +from you, can thrust me from a level consideration: +you have, as it appears to me, practised upon the +easy-yielding spirit of this woman, and made her +serve your uses both in purse and in person. + +MISTRESS QUICKLY: +Yea, in truth, my lord. + +Lord Chief-Justice: +Pray thee, peace. Pay her the debt you owe her, and +unpay the villany you have done her: the one you +may do with sterling money, and the other with +current repentance. + +FALSTAFF: +My lord, I will not undergo this sneap without +reply. You call honourable boldness impudent +sauciness: if a man will make courtesy and say +nothing, he is virtuous: no, my lord, my humble +duty remembered, I will not be your suitor. I say +to you, I do desire deliverance from these officers, +being upon hasty employment in the king's affairs. + +Lord Chief-Justice: +You speak as having power to do wrong: but answer +in the effect of your reputation, and satisfy this +poor woman. + +FALSTAFF: +Come hither, hostess. + +Lord Chief-Justice: +Now, Master Gower, what news? + +GOWER: +The king, my lord, and Harry Prince of Wales +Are near at hand: the rest the paper tells. + +FALSTAFF: +As I am a gentleman. + +MISTRESS QUICKLY: +Faith, you said so before. + +FALSTAFF: +As I am a gentleman. Come, no more words of it. + +MISTRESS QUICKLY: +By this heavenly ground I tread on, I must be fain +to pawn both my plate and the tapestry of my +dining-chambers. + +FALSTAFF: +Glasses, glasses is the only drinking: and for thy +walls, a pretty slight drollery, or the story of +the Prodigal, or the German hunting in water-work, +is worth a thousand of these bed-hangings and these +fly-bitten tapestries. Let it be ten pound, if thou +canst. Come, an 'twere not for thy humours, there's +not a better wench in England. Go, wash thy face, +and draw the action. Come, thou must not be in +this humour with me; dost not know me? come, come, I +know thou wast set on to this. + +MISTRESS QUICKLY: +Pray thee, Sir John, let it be but twenty nobles: i' +faith, I am loath to pawn my plate, so God save me, +la! + +FALSTAFF: +Let it alone; I'll make other shift: you'll be a +fool still. + +MISTRESS QUICKLY: +Well, you shall have it, though I pawn my gown. I +hope you'll come to supper. You'll pay me all together? + +FALSTAFF: +Will I live? +Go, with her, with her; hook on, hook on. + +MISTRESS QUICKLY: +Will you have Doll Tearsheet meet you at supper? + +FALSTAFF: +No more words; let's have her. + +Lord Chief-Justice: +I have heard better news. + +FALSTAFF: +What's the news, my lord? + +Lord Chief-Justice: +Where lay the king last night? + +GOWER: +At Basingstoke, my lord. + +FALSTAFF: +I hope, my lord, all's well: what is the news, my lord? + +Lord Chief-Justice: +Come all his forces back? + +GOWER: +No; fifteen hundred foot, five hundred horse, +Are marched up to my lord of Lancaster, +Against Northumberland and the Archbishop. + +FALSTAFF: +Comes the king back from Wales, my noble lord? + +Lord Chief-Justice: +You shall have letters of me presently: +Come, go along with me, good Master Gower. + +FALSTAFF: +My lord! + +Lord Chief-Justice: +What's the matter? + +FALSTAFF: +Master Gower, shall I entreat you with me to dinner? + +GOWER: +I must wait upon my good lord here; I thank you, +good Sir John. + +Lord Chief-Justice: +Sir John, you loiter here too long, being you are to +take soldiers up in counties as you go. + +FALSTAFF: +Will you sup with me, Master Gower? + +Lord Chief-Justice: +What foolish master taught you these manners, Sir John? + +FALSTAFF: +Master Gower, if they become me not, he was a fool +that taught them me. This is the right fencing +grace, my lord; tap for tap, and so part fair. + +Lord Chief-Justice: +Now the Lord lighten thee! thou art a great fool. + +PRINCE HENRY: +Before God, I am exceeding weary. + +POINS: +Is't come to that? I had thought weariness durst not +have attached one of so high blood. + +PRINCE HENRY: +Faith, it does me; though it discolours the +complexion of my greatness to acknowledge it. Doth +it not show vilely in me to desire small beer? + +POINS: +Why, a prince should not be so loosely studied as +to remember so weak a composition. + +PRINCE HENRY: +Belike then my appetite was not princely got; for, +by my troth, I do now remember the poor creature, +small beer. But, indeed, these humble +considerations make me out of love with my +greatness. What a disgrace is it to me to remember +thy name! or to know thy face to-morrow! or to +take note how many pair of silk stockings thou +hast, viz. these, and those that were thy +peach-coloured ones! or to bear the inventory of thy +shirts, as, one for superfluity, and another for +use! But that the tennis-court-keeper knows better +than I; for it is a low ebb of linen with thee when +thou keepest not racket there; as thou hast not done +a great while, because the rest of thy low +countries have made a shift to eat up thy holland: +and God knows, whether those that bawl out the ruins +of thy linen shall inherit his kingdom: but the +midwives say the children are not in the fault; +whereupon the world increases, and kindreds are +mightily strengthened. + +POINS: +How ill it follows, after you have laboured so hard, +you should talk so idly! Tell me, how many good +young princes would do so, their fathers being so +sick as yours at this time is? + +PRINCE HENRY: +Shall I tell thee one thing, Poins? + +POINS: +Yes, faith; and let it be an excellent good thing. + +PRINCE HENRY: +It shall serve among wits of no higher breeding than thine. + +POINS: +Go to; I stand the push of your one thing that you +will tell. + +PRINCE HENRY: +Marry, I tell thee, it is not meet that I should be +sad, now my father is sick: albeit I could tell +thee, as to one it pleases me, for fault of a +better, to call my friend, I could be sad, and sad +indeed too. + +POINS: +Very hardly upon such a subject. + +PRINCE HENRY: +By this hand thou thinkest me as far in the devil's +book as thou and Falstaff for obduracy and +persistency: let the end try the man. But I tell +thee, my heart bleeds inwardly that my father is so +sick: and keeping such vile company as thou art +hath in reason taken from me all ostentation of sorrow. + +POINS: +The reason? + +PRINCE HENRY: +What wouldst thou think of me, if I should weep? + +POINS: +I would think thee a most princely hypocrite. + +PRINCE HENRY: +It would be every man's thought; and thou art a +blessed fellow to think as every man thinks: never +a man's thought in the world keeps the road-way +better than thine: every man would think me an +hypocrite indeed. And what accites your most +worshipful thought to think so? + +POINS: +Why, because you have been so lewd and so much +engraffed to Falstaff. + +PRINCE HENRY: +And to thee. + +POINS: +By this light, I am well spoke on; I can hear it +with my own ears: the worst that they can say of +me is that I am a second brother and that I am a +proper fellow of my hands; and those two things, I +confess, I cannot help. By the mass, here comes Bardolph. + +PRINCE HENRY: +And the boy that I gave Falstaff: a' had him from +me Christian; and look, if the fat villain have not +transformed him ape. + +BARDOLPH: +God save your grace! + +PRINCE HENRY: +And yours, most noble Bardolph! + +BARDOLPH: +Come, you virtuous ass, you bashful fool, must you +be blushing? wherefore blush you now? What a +maidenly man-at-arms are you become! Is't such a +matter to get a pottle-pot's maidenhead? + +Page: +A' calls me e'en now, my lord, through a red +lattice, and I could discern no part of his face +from the window: at last I spied his eyes, and +methought he had made two holes in the ale-wife's +new petticoat and so peeped through. + +PRINCE HENRY: +Has not the boy profited? + +BARDOLPH: +Away, you whoreson upright rabbit, away! + +Page: +Away, you rascally Althaea's dream, away! + +PRINCE HENRY: +Instruct us, boy; what dream, boy? + +Page: +Marry, my lord, Althaea dreamed she was delivered +of a fire-brand; and therefore I call him her dream. + +PRINCE HENRY: +A crown's worth of good interpretation: there 'tis, +boy. + +POINS: +O, that this good blossom could be kept from +cankers! Well, there is sixpence to preserve thee. + +BARDOLPH: +An you do not make him hanged among you, the +gallows shall have wrong. + +PRINCE HENRY: +And how doth thy master, Bardolph? + +BARDOLPH: +Well, my lord. He heard of your grace's coming to +town: there's a letter for you. + +POINS: +Delivered with good respect. And how doth the +martlemas, your master? + +BARDOLPH: +In bodily health, sir. + +POINS: +Marry, the immortal part needs a physician; but +that moves not him: though that be sick, it dies +not. + +PRINCE HENRY: +I do allow this wen to be as familiar with me as my +dog; and he holds his place; for look you how be writes. + +POINS: + +PRINCE HENRY: +Nay, they will be kin to us, or they will fetch it +from Japhet. But to the letter. + +POINS: + +PRINCE HENRY: +Peace! + +POINS: + +PRINCE HENRY: +That's to make him eat twenty of his words. But do +you use me thus, Ned? must I marry your sister? + +POINS: +God send the wench no worse fortune! But I never said so. + +PRINCE HENRY: +Well, thus we play the fools with the time, and the +spirits of the wise sit in the clouds and mock us. +Is your master here in London? + +BARDOLPH: +Yea, my lord. + +PRINCE HENRY: +Where sups he? doth the old boar feed in the old frank? + +BARDOLPH: +At the old place, my lord, in Eastcheap. + +PRINCE HENRY: +What company? + +Page: +Ephesians, my lord, of the old church. + +PRINCE HENRY: +Sup any women with him? + +Page: +None, my lord, but old Mistress Quickly and +Mistress Doll Tearsheet. + +PRINCE HENRY: +What pagan may that be? + +Page: +A proper gentlewoman, sir, and a kinswoman of my master's. + +PRINCE HENRY: +Even such kin as the parish heifers are to the town +bull. Shall we steal upon them, Ned, at supper? + +POINS: +I am your shadow, my lord; I'll follow you. + +PRINCE HENRY: +Sirrah, you boy, and Bardolph, no word to your +master that I am yet come to town: there's for +your silence. + +BARDOLPH: +I have no tongue, sir. + +Page: +And for mine, sir, I will govern it. + +PRINCE HENRY: +Fare you well; go. +This Doll Tearsheet should be some road. + +POINS: +I warrant you, as common as the way between Saint +Alban's and London. + +PRINCE HENRY: +How might we see Falstaff bestow himself to-night +in his true colours, and not ourselves be seen? + +POINS: +Put on two leathern jerkins and aprons, and wait +upon him at his table as drawers. + +PRINCE HENRY: +From a God to a bull? a heavy decension! it was +Jove's case. From a prince to a prentice? a low +transformation! that shall be mine; for in every +thing the purpose must weigh with the folly. +Follow me, Ned. + +NORTHUMBERLAND: +I pray thee, loving wife, and gentle daughter, +Give even way unto my rough affairs: +Put not you on the visage of the times +And be like them to Percy troublesome. + +LADY NORTHUMBERLAND: +I have given over, I will speak no more: +Do what you will; your wisdom be your guide. + +NORTHUMBERLAND: +Alas, sweet wife, my honour is at pawn; +And, but my going, nothing can redeem it. + +LADY PERCY: +O yet, for God's sake, go not to these wars! +The time was, father, that you broke your word, +When you were more endeared to it than now; +When your own Percy, when my heart's dear Harry, +Threw many a northward look to see his father +Bring up his powers; but he did long in vain. +Who then persuaded you to stay at home? +There were two honours lost, yours and your son's. +For yours, the God of heaven brighten it! +For his, it stuck upon him as the sun +In the grey vault of heaven, and by his light +Did all the chivalry of England move +To do brave acts: he was indeed the glass +Wherein the noble youth did dress themselves: +He had no legs that practised not his gait; +And speaking thick, which nature made his blemish, +Became the accents of the valiant; +For those that could speak low and tardily +Would turn their own perfection to abuse, +To seem like him: so that in speech, in gait, +In diet, in affections of delight, +In military rules, humours of blood, +He was the mark and glass, copy and book, +That fashion'd others. And him, O wondrous him! +O miracle of men! him did you leave, +Second to none, unseconded by you, +To look upon the hideous god of war +In disadvantage; to abide a field +Where nothing but the sound of Hotspur's name +Did seem defensible: so you left him. +Never, O never, do his ghost the wrong +To hold your honour more precise and nice +With others than with him! let them alone: +The marshal and the archbishop are strong: +Had my sweet Harry had but half their numbers, +To-day might I, hanging on Hotspur's neck, +Have talk'd of Monmouth's grave. + +NORTHUMBERLAND: +Beshrew your heart, +Fair daughter, you do draw my spirits from me +With new lamenting ancient oversights. +But I must go and meet with danger there, +Or it will seek me in another place +And find me worse provided. + +LADY NORTHUMBERLAND: +O, fly to Scotland, +Till that the nobles and the armed commons +Have of their puissance made a little taste. + +LADY PERCY: +If they get ground and vantage of the king, +Then join you with them, like a rib of steel, +To make strength stronger; but, for all our loves, +First let them try themselves. So did your son; +He was so suffer'd: so came I a widow; +And never shall have length of life enough +To rain upon remembrance with mine eyes, +That it may grow and sprout as high as heaven, +For recordation to my noble husband. + +NORTHUMBERLAND: +Come, come, go in with me. 'Tis with my mind +As with the tide swell'd up unto his height, +That makes a still-stand, running neither way: +Fain would I go to meet the archbishop, +But many thousand reasons hold me back. +I will resolve for Scotland: there am I, +Till time and vantage crave my company. + +First Drawer: +What the devil hast thou brought there? apple-johns? +thou knowest Sir John cannot endure an apple-john. + +Second Drawer: +Mass, thou sayest true. The prince once set a dish +of apple-johns before him, and told him there were +five more Sir Johns, and, putting off his hat, said +'I will now take my leave of these six dry, round, +old, withered knights.' It angered him to the +heart: but he hath forgot that. + +First Drawer: +Why, then, cover, and set them down: and see if +thou canst find out Sneak's noise; Mistress +Tearsheet would fain hear some music. Dispatch: the +room where they supped is too hot; they'll come in straight. + +Second Drawer: +Sirrah, here will be the prince and Master Poins +anon; and they will put on two of our jerkins and +aprons; and Sir John must not know of it: Bardolph +hath brought word. + +First Drawer: +By the mass, here will be old Utis: it will be an +excellent stratagem. + +Second Drawer: +I'll see if I can find out Sneak. + +MISTRESS QUICKLY: +I' faith, sweetheart, methinks now you are in an +excellent good temperality: your pulsidge beats as +extraordinarily as heart would desire; and your +colour, I warrant you, is as red as any rose, in good +truth, la! But, i' faith, you have drunk too much +canaries; and that's a marvellous searching wine, +and it perfumes the blood ere one can say 'What's +this?' How do you now? + +DOLL TEARSHEET: +Better than I was: hem! + +MISTRESS QUICKLY: +Why, that's well said; a good heart's worth gold. +Lo, here comes Sir John. + +FALSTAFF: + +MISTRESS QUICKLY: +Sick of a calm; yea, good faith. + +FALSTAFF: +So is all her sect; an they be once in a calm, they are sick. + +DOLL TEARSHEET: +You muddy rascal, is that all the comfort you give me? + +FALSTAFF: +You make fat rascals, Mistress Doll. + +DOLL TEARSHEET: +I make them! gluttony and diseases make them; I +make them not. + +FALSTAFF: +If the cook help to make the gluttony, you help to +make the diseases, Doll: we catch of you, Doll, we +catch of you; grant that, my poor virtue grant that. + +DOLL TEARSHEET: +Yea, joy, our chains and our jewels. + +FALSTAFF: +'Your broaches, pearls, and ouches:' for to serve +bravely is to come halting off, you know: to come +off the breach with his pike bent bravely, and to +surgery bravely; to venture upon the charged +chambers bravely,-- + +DOLL TEARSHEET: +Hang yourself, you muddy conger, hang yourself! + +MISTRESS QUICKLY: +By my troth, this is the old fashion; you two never +meet but you fall to some discord: you are both, +i' good truth, as rheumatic as two dry toasts; you +cannot one bear with another's confirmities. What +the good-year! one must bear, and that must be +you: you are the weaker vessel, as they say, the +emptier vessel. + +DOLL TEARSHEET: +Can a weak empty vessel bear such a huge full +hogshead? there's a whole merchant's venture of +Bourdeaux stuff in him; you have not seen a hulk +better stuffed in the hold. Come, I'll be friends +with thee, Jack: thou art going to the wars; and +whether I shall ever see thee again or no, there is +nobody cares. + +First Drawer: +Sir, Ancient Pistol's below, and would speak with +you. + +DOLL TEARSHEET: +Hang him, swaggering rascal! let him not come +hither: it is the foul-mouthed'st rogue in England. + +MISTRESS QUICKLY: +If he swagger, let him not come here: no, by my +faith; I must live among my neighbours: I'll no +swaggerers: I am in good name and fame with the +very best: shut the door; there comes no swaggerers +here: I have not lived all this while, to have +swaggering now: shut the door, I pray you. + +FALSTAFF: +Dost thou hear, hostess? + +MISTRESS QUICKLY: +Pray ye, pacify yourself, Sir John: there comes no +swaggerers here. + +FALSTAFF: +Dost thou hear? it is mine ancient. + +MISTRESS QUICKLY: +Tilly-fally, Sir John, ne'er tell me: your ancient +swaggerer comes not in my doors. I was before Master +Tisick, the debuty, t'other day; and, as he said to +me, 'twas no longer ago than Wednesday last, 'I' +good faith, neighbour Quickly,' says he; Master +Dumbe, our minister, was by then; 'neighbour +Quickly,' says he, 'receive those that are civil; +for,' said he, 'you are in an ill name:' now a' +said so, I can tell whereupon; 'for,' says he, 'you +are an honest woman, and well thought on; therefore +take heed what guests you receive: receive,' says +he, 'no swaggering companions.' There comes none +here: you would bless you to hear what he said: +no, I'll no swaggerers. + +FALSTAFF: +He's no swaggerer, hostess; a tame cheater, i' +faith; you may stroke him as gently as a puppy +greyhound: he'll not swagger with a Barbary hen, if +her feathers turn back in any show of resistance. +Call him up, drawer. + +MISTRESS QUICKLY: +Cheater, call you him? I will bar no honest man my +house, nor no cheater: but I do not love +swaggering, by my troth; I am the worse, when one +says swagger: feel, masters, how I shake; look you, +I warrant you. + +DOLL TEARSHEET: +So you do, hostess. + +MISTRESS QUICKLY: +Do I? yea, in very truth, do I, an 'twere an aspen +leaf: I cannot abide swaggerers. + +PISTOL: +God save you, Sir John! + +FALSTAFF: +Welcome, Ancient Pistol. Here, Pistol, I charge +you with a cup of sack: do you discharge upon mine hostess. + +PISTOL: +I will discharge upon her, Sir John, with two bullets. + +FALSTAFF: +She is Pistol-proof, sir; you shall hardly offend +her. + +MISTRESS QUICKLY: +Come, I'll drink no proofs nor no bullets: I'll +drink no more than will do me good, for no man's +pleasure, I. + +PISTOL: +Then to you, Mistress Dorothy; I will charge you. + +DOLL TEARSHEET: +Charge me! I scorn you, scurvy companion. What! +you poor, base, rascally, cheating, lack-linen +mate! Away, you mouldy rogue, away! I am meat for +your master. + +PISTOL: +I know you, Mistress Dorothy. + +DOLL TEARSHEET: +Away, you cut-purse rascal! you filthy bung, away! +by this wine, I'll thrust my knife in your mouldy +chaps, an you play the saucy cuttle with me. Away, +you bottle-ale rascal! you basket-hilt stale +juggler, you! Since when, I pray you, sir? God's +light, with two points on your shoulder? much! + +PISTOL: +God let me not live, but I will murder your ruff for this. + +FALSTAFF: +No more, Pistol; I would not have you go off here: +discharge yourself of our company, Pistol. + +MISTRESS QUICKLY: +No, Good Captain Pistol; not here, sweet captain. + +DOLL TEARSHEET: +Captain! thou abominable damned cheater, art thou +not ashamed to be called captain? An captains were +of my mind, they would truncheon you out, for +taking their names upon you before you have earned +them. You a captain! you slave, for what? for +tearing a poor whore's ruff in a bawdy-house? He a +captain! hang him, rogue! he lives upon mouldy +stewed prunes and dried cakes. A captain! God's +light, these villains will make the word as odious +as the word 'occupy;' which was an excellent good +word before it was ill sorted: therefore captains +had need look to 't. + +BARDOLPH: +Pray thee, go down, good ancient. + +FALSTAFF: +Hark thee hither, Mistress Doll. + +PISTOL: +Not I I tell thee what, Corporal Bardolph, I could +tear her: I'll be revenged of her. + +Page: +Pray thee, go down. + +PISTOL: +I'll see her damned first; to Pluto's damned lake, +by this hand, to the infernal deep, with Erebus and +tortures vile also. Hold hook and line, say I. +Down, down, dogs! down, faitors! Have we not +Hiren here? + +MISTRESS QUICKLY: +Good Captain Peesel, be quiet; 'tis very late, i' +faith: I beseek you now, aggravate your choler. + +PISTOL: +These be good humours, indeed! Shall pack-horses +And hollow pamper'd jades of Asia, +Which cannot go but thirty mile a-day, +Compare with Caesars, and with Cannibals, +And Trojan Greeks? nay, rather damn them with +King Cerberus; and let the welkin roar. +Shall we fall foul for toys? + +MISTRESS QUICKLY: +By my troth, captain, these are very bitter words. + +BARDOLPH: +Be gone, good ancient: this will grow to abrawl anon. + +PISTOL: +Die men like dogs! give crowns like pins! Have we +not Heren here? + +MISTRESS QUICKLY: +O' my word, captain, there's none such here. What +the good-year! do you think I would deny her? For +God's sake, be quiet. + +PISTOL: +Then feed, and be fat, my fair Calipolis. +Come, give's some sack. +'Si fortune me tormente, sperato me contento.' +Fear we broadsides? no, let the fiend give fire: +Give me some sack: and, sweetheart, lie thou there. +Come we to full points here; and are etceteras nothing? + +FALSTAFF: +Pistol, I would be quiet. + +PISTOL: +Sweet knight, I kiss thy neaf: what! we have seen +the seven stars. + +DOLL TEARSHEET: +For God's sake, thrust him down stairs: I cannot +endure such a fustian rascal. + +PISTOL: +Thrust him down stairs! know we not Galloway nags? + +FALSTAFF: +Quoit him down, Bardolph, like a shove-groat +shilling: nay, an a' do nothing but speak nothing, +a' shall be nothing here. + +BARDOLPH: +Come, get you down stairs. + +PISTOL: +What! shall we have incision? shall we imbrue? +Then death rock me asleep, abridge my doleful days! +Why, then, let grievous, ghastly, gaping wounds +Untwine the Sisters Three! Come, Atropos, I say! + +MISTRESS QUICKLY: +Here's goodly stuff toward! + +FALSTAFF: +Give me my rapier, boy. + +DOLL TEARSHEET: +I pray thee, Jack, I pray thee, do not draw. + +FALSTAFF: +Get you down stairs. + +MISTRESS QUICKLY: +Here's a goodly tumult! I'll forswear keeping +house, afore I'll be in these tirrits and frights. +So; murder, I warrant now. Alas, alas! put up +your naked weapons, put up your naked weapons. + +DOLL TEARSHEET: +I pray thee, Jack, be quiet; the rascal's gone. +Ah, you whoreson little valiant villain, you! + +MISTRESS QUICKLY: +He you not hurt i' the groin? methought a' made a +shrewd thrust at your belly. + +FALSTAFF: +Have you turned him out o' doors? + +BARDOLPH: +Yea, sir. The rascal's drunk: you have hurt him, +sir, i' the shoulder. + +FALSTAFF: +A rascal! to brave me! + +DOLL TEARSHEET: +Ah, you sweet little rogue, you! alas, poor ape, +how thou sweatest! come, let me wipe thy face; +come on, you whoreson chops: ah, rogue! i'faith, I +love thee: thou art as valorous as Hector of Troy, +worth five of Agamemnon, and ten times better than +the Nine Worthies: ah, villain! + +FALSTAFF: +A rascally slave! I will toss the rogue in a blanket. + +DOLL TEARSHEET: +Do, an thou darest for thy heart: an thou dost, +I'll canvass thee between a pair of sheets. + +Page: +The music is come, sir. + +FALSTAFF: +Let them play. Play, sirs. Sit on my knee, Doll. +A rascal bragging slave! the rogue fled from me +like quicksilver. + +DOLL TEARSHEET: +I' faith, and thou followedst him like a church. +Thou whoreson little tidy Bartholomew boar-pig, +when wilt thou leave fighting o' days and foining +o' nights, and begin to patch up thine old body for heaven? + +FALSTAFF: +Peace, good Doll! do not speak like a death's-head; +do not bid me remember mine end. + +DOLL TEARSHEET: +Sirrah, what humour's the prince of? + +FALSTAFF: +A good shallow young fellow: a' would have made a +good pantler, a' would ha' chipp'd bread well. + +DOLL TEARSHEET: +They say Poins has a good wit. + +FALSTAFF: +He a good wit? hang him, baboon! his wit's as thick +as Tewksbury mustard; there's no more conceit in him +than is in a mallet. + +DOLL TEARSHEET: +Why does the prince love him so, then? + +FALSTAFF: +Because their legs are both of a bigness, and a' +plays at quoits well, and eats conger and fennel, +and drinks off candles' ends for flap-dragons, and +rides the wild-mare with the boys, and jumps upon +joined-stools, and swears with a good grace, and +wears his boots very smooth, like unto the sign of +the leg, and breeds no bate with telling of discreet +stories; and such other gambol faculties a' has, +that show a weak mind and an able body, for the +which the prince admits him: for the prince himself +is such another; the weight of a hair will turn the +scales between their avoirdupois. + +PRINCE HENRY: +Would not this nave of a wheel have his ears cut off? + +POINS: +Let's beat him before his whore. + +PRINCE HENRY: +Look, whether the withered elder hath not his poll +clawed like a parrot. + +POINS: +Is it not strange that desire should so many years +outlive performance? + +FALSTAFF: +Kiss me, Doll. + +PRINCE HENRY: +Saturn and Venus this year in conjunction! what +says the almanac to that? + +POINS: +And look, whether the fiery Trigon, his man, be not +lisping to his master's old tables, his note-book, +his counsel-keeper. + +FALSTAFF: +Thou dost give me flattering busses. + +DOLL TEARSHEET: +By my troth, I kiss thee with a most constant heart. + +FALSTAFF: +I am old, I am old. + +DOLL TEARSHEET: +I love thee better than I love e'er a scurvy young +boy of them all. + +FALSTAFF: +What stuff wilt have a kirtle of? I shall receive +money o' Thursday: shalt have a cap to-morrow. A +merry song, come: it grows late; we'll to bed. +Thou'lt forget me when I am gone. + +DOLL TEARSHEET: +By my troth, thou'lt set me a-weeping, an thou +sayest so: prove that ever I dress myself handsome +till thy return: well, harken at the end. + +FALSTAFF: +Some sack, Francis. + +PRINCE HENRY: +Anon, anon, sir. + +FALSTAFF: +Ha! a bastard son of the king's? And art not thou +Poins his brother? + +PRINCE HENRY: +Why, thou globe of sinful continents! what a life +dost thou lead! + +FALSTAFF: +A better than thou: I am a gentleman; thou art a drawer. + +PRINCE HENRY: +Very true, sir; and I come to draw you out by the ears. + +MISTRESS QUICKLY: +O, the Lord preserve thy good grace! by my troth, +welcome to London. Now, the Lord bless that sweet +face of thine! O, Jesu, are you come from Wales? + +FALSTAFF: +Thou whoreson mad compound of majesty, by this light +flesh and corrupt blood, thou art welcome. + +DOLL TEARSHEET: +How, you fat fool! I scorn you. + +POINS: +My lord, he will drive you out of your revenge and +turn all to a merriment, if you take not the heat. + +PRINCE HENRY: +You whoreson candle-mine, you, how vilely did you +speak of me even now before this honest, virtuous, +civil gentlewoman! + +MISTRESS QUICKLY: +God's blessing of your good heart! and so she is, +by my troth. + +FALSTAFF: +Didst thou hear me? + +PRINCE HENRY: +Yea, and you knew me, as you did when you ran away +by Gad's-hill: you knew I was at your back, and +spoke it on purpose to try my patience. + +FALSTAFF: +No, no, no; not so; I did not think thou wast within hearing. + +PRINCE HENRY: +I shall drive you then to confess the wilful abuse; +and then I know how to handle you. + +FALSTAFF: +No abuse, Hal, o' mine honour, no abuse. + +PRINCE HENRY: +Not to dispraise me, and call me pantier and +bread-chipper and I know not what? + +FALSTAFF: +No abuse, Hal. + +POINS: +No abuse? + +FALSTAFF: +No abuse, Ned, i' the world; honest Ned, none. I +dispraised him before the wicked, that the wicked +might not fall in love with him; in which doing, I +have done the part of a careful friend and a true +subject, and thy father is to give me thanks for it. +No abuse, Hal: none, Ned, none: no, faith, boys, none. + +PRINCE HENRY: +See now, whether pure fear and entire cowardice doth +not make thee wrong this virtuous gentlewoman to +close with us? is she of the wicked? is thine +hostess here of the wicked? or is thy boy of the +wicked? or honest Bardolph, whose zeal burns in his +nose, of the wicked? + +POINS: +Answer, thou dead elm, answer. + +FALSTAFF: +The fiend hath pricked down Bardolph irrecoverable; +and his face is Lucifer's privy-kitchen, where he +doth nothing but roast malt-worms. For the boy, +there is a good angel about him; but the devil +outbids him too. + +PRINCE HENRY: +For the women? + +FALSTAFF: +For one of them, she is in hell already, and burns +poor souls. For the other, I owe her money, and +whether she be damned for that, I know not. + +MISTRESS QUICKLY: +No, I warrant you. + +FALSTAFF: +No, I think thou art not; I think thou art quit for +that. Marry, there is another indictment upon thee, +for suffering flesh to be eaten in thy house, +contrary to the law; for the which I think thou wilt howl. + +MISTRESS QUICKLY: +All victuallers do so; what's a joint of mutton or +two in a whole Lent? + +PRINCE HENRY: +You, gentlewoman,- + +DOLL TEARSHEET: +What says your grace? + +FALSTAFF: +His grace says that which his flesh rebels against. + +MISTRESS QUICKLY: +Who knocks so loud at door? Look to the door there, Francis. + +PRINCE HENRY: +Peto, how now! what news? + +PETO: +The king your father is at Westminster: +And there are twenty weak and wearied posts +Come from the north: and, as I came along, +I met and overtook a dozen captains, +Bare-headed, sweating, knocking at the taverns, +And asking every one for Sir John Falstaff. + +PRINCE HENRY: +By heaven, Poins, I feel me much to blame, +So idly to profane the precious time, +When tempest of commotion, like the south +Borne with black vapour, doth begin to melt +And drop upon our bare unarmed heads. +Give me my sword and cloak. Falstaff, good night. + +FALSTAFF: +Now comes in the sweetest morsel of the night, and +we must hence and leave it unpicked. +More knocking at the door! +How now! what's the matter? + +BARDOLPH: +You must away to court, sir, presently; +A dozen captains stay at door for you. + +FALSTAFF: + +DOLL TEARSHEET: +I cannot speak; if my heart be not read to burst,-- +well, sweet Jack, have a care of thyself. + +FALSTAFF: +Farewell, farewell. + +MISTRESS QUICKLY: +Well, fare thee well: I have known thee these +twenty-nine years, come peascod-time; but an +honester and truer-hearted man,--well, fare thee well. + +BARDOLPH: + +MISTRESS QUICKLY: +What's the matter? + +BARDOLPH: + +MISTRESS QUICKLY: +O, run, Doll, run; run, good Doll: come. +Yea, will you come, Doll? + +KING HENRY IV: +Go call the Earls of Surrey and of Warwick; +But, ere they come, bid them o'er-read these letters, +And well consider of them; make good speed. +How many thousand of my poorest subjects +Are at this hour asleep! O sleep, O gentle sleep, +Nature's soft nurse, how have I frighted thee, +That thou no more wilt weigh my eyelids down +And steep my senses in forgetfulness? +Why rather, sleep, liest thou in smoky cribs, +Upon uneasy pallets stretching thee +And hush'd with buzzing night-flies to thy slumber, +Than in the perfumed chambers of the great, +Under the canopies of costly state, +And lull'd with sound of sweetest melody? +O thou dull god, why liest thou with the vile +In loathsome beds, and leavest the kingly couch +A watch-case or a common 'larum-bell? +Wilt thou upon the high and giddy mast +Seal up the ship-boy's eyes, and rock his brains +In cradle of the rude imperious surge +And in the visitation of the winds, +Who take the ruffian billows by the top, +Curling their monstrous heads and hanging them +With deafening clamour in the slippery clouds, +That, with the hurly, death itself awakes? +Canst thou, O partial sleep, give thy repose +To the wet sea-boy in an hour so rude, +And in the calmest and most stillest night, +With all appliances and means to boot, +Deny it to a king? Then happy low, lie down! +Uneasy lies the head that wears a crown. + +WARWICK: +Many good morrows to your majesty! + +KING HENRY IV: +Is it good morrow, lords? + +WARWICK: +'Tis one o'clock, and past. + +KING HENRY IV: +Why, then, good morrow to you all, my lords. +Have you read o'er the letters that I sent you? + +WARWICK: +We have, my liege. + +KING HENRY IV: +Then you perceive the body of our kingdom +How foul it is; what rank diseases grow +And with what danger, near the heart of it. + +WARWICK: +It is but as a body yet distemper'd; +Which to his former strength may be restored +With good advice and little medicine: +My Lord Northumberland will soon be cool'd. + +KING HENRY IV: +O God! that one might read the book of fate, +And see the revolution of the times +Make mountains level, and the continent, +Weary of solid firmness, melt itself +Into the sea! and, other times, to see +The beachy girdle of the ocean +Too wide for Neptune's hips; how chances mock, +And changes fill the cup of alteration +With divers liquors! O, if this were seen, +The happiest youth, viewing his progress through, +What perils past, what crosses to ensue, +Would shut the book, and sit him down and die. +'Tis not 'ten years gone +Since Richard and Northumberland, great friends, +Did feast together, and in two years after +Were they at wars: it is but eight years since +This Percy was the man nearest my soul, +Who like a brother toil'd in my affairs +And laid his love and life under my foot, +Yea, for my sake, even to the eyes of Richard +Gave him defiance. But which of you was by-- +You, cousin Nevil, as I may remember-- +When Richard, with his eye brimful of tears, +Then cheque'd and rated by Northumberland, +Did speak these words, now proved a prophecy? +'Northumberland, thou ladder by the which +My cousin Bolingbroke ascends my throne;' +Though then, God knows, I had no such intent, +But that necessity so bow'd the state +That I and greatness were compell'd to kiss: +'The time shall come,' thus did he follow it, +'The time will come, that foul sin, gathering head, +Shall break into corruption:' so went on, +Foretelling this same time's condition +And the division of our amity. + +WARWICK: +There is a history in all men's lives, +Figuring the nature of the times deceased; +The which observed, a man may prophesy, +With a near aim, of the main chance of things +As yet not come to life, which in their seeds +And weak beginnings lie intreasured. +Such things become the hatch and brood of time; +And by the necessary form of this +King Richard might create a perfect guess +That great Northumberland, then false to him, +Would of that seed grow to a greater falseness; +Which should not find a ground to root upon, +Unless on you. + +KING HENRY IV: +Are these things then necessities? +Then let us meet them like necessities: +And that same word even now cries out on us: +They say the bishop and Northumberland +Are fifty thousand strong. + +WARWICK: +It cannot be, my lord; +Rumour doth double, like the voice and echo, +The numbers of the fear'd. Please it your grace +To go to bed. Upon my soul, my lord, +The powers that you already have sent forth +Shall bring this prize in very easily. +To comfort you the more, I have received +A certain instance that Glendower is dead. +Your majesty hath been this fortnight ill, +And these unseason'd hours perforce must add +Unto your sickness. + +KING HENRY IV: +I will take your counsel: +And were these inward wars once out of hand, +We would, dear lords, unto the Holy Land. + +SHALLOW: +Come on, come on, come on, sir; give me your hand, +sir, give me your hand, sir: an early stirrer, by +the rood! And how doth my good cousin Silence? + +SILENCE: +Good morrow, good cousin Shallow. + +SHALLOW: +And how doth my cousin, your bedfellow? and your +fairest daughter and mine, my god-daughter Ellen? + +SILENCE: +Alas, a black ousel, cousin Shallow! + +SHALLOW: +By yea and nay, sir, I dare say my cousin William is +become a good scholar: he is at Oxford still, is he not? + +SILENCE: +Indeed, sir, to my cost. + +SHALLOW: +A' must, then, to the inns o' court shortly. I was +once of Clement's Inn, where I think they will +talk of mad Shallow yet. + +SILENCE: +You were called 'lusty Shallow' then, cousin. + +SHALLOW: +By the mass, I was called any thing; and I would +have done any thing indeed too, and roundly too. +There was I, and little John Doit of Staffordshire, +and black George Barnes, and Francis Pickbone, and +Will Squele, a Cotswold man; you had not four such +swinge-bucklers in all the inns o' court again: and +I may say to you, we knew where the bona-robas were +and had the best of them all at commandment. Then +was Jack Falstaff, now Sir John, a boy, and page to +Thomas Mowbray, Duke of Norfolk. + +SILENCE: +This Sir John, cousin, that comes hither anon about soldiers? + +SHALLOW: +The same Sir John, the very same. I see him break +Skogan's head at the court-gate, when a' was a +crack not thus high: and the very same day did I +fight with one Sampson Stockfish, a fruiterer, +behind Gray's Inn. Jesu, Jesu, the mad days that I +have spent! and to see how many of my old +acquaintance are dead! + +SILENCE: +We shall all follow, cousin. + +SHADOW: +Certain, 'tis certain; very sure, very sure: death, +as the Psalmist saith, is certain to all; all shall +die. How a good yoke of bullocks at Stamford fair? + +SILENCE: +By my troth, I was not there. + +SHALLOW: +Death is certain. Is old Double of your town living +yet? + +SILENCE: +Dead, sir. + +SHALLOW: +Jesu, Jesu, dead! a' drew a good bow; and dead! a' +shot a fine shoot: John a Gaunt loved him well, and +betted much money on his head. Dead! a' would have +clapped i' the clout at twelve score; and carried +you a forehand shaft a fourteen and fourteen and a +half, that it would have done a man's heart good to +see. How a score of ewes now? + +SILENCE: +Thereafter as they be: a score of good ewes may be +worth ten pounds. + +SHALLOW: +And is old Double dead? + +SILENCE: +Here come two of Sir John Falstaff's men, as I think. + +BARDOLPH: +Good morrow, honest gentlemen: I beseech you, which +is Justice Shallow? + +SHALLOW: +I am Robert Shallow, sir; a poor esquire of this +county, and one of the king's justices of the peace: +What is your good pleasure with me? + +BARDOLPH: +My captain, sir, commends him to you; my captain, +Sir John Falstaff, a tall gentleman, by heaven, and +a most gallant leader. + +SHALLOW: +He greets me well, sir. I knew him a good backsword +man. How doth the good knight? may I ask how my +lady his wife doth? + +BARDOLPH: +Sir, pardon; a soldier is better accommodated than +with a wife. + +SHALLOW: +It is well said, in faith, sir; and it is well said +indeed too. Better accommodated! it is good; yea, +indeed, is it: good phrases are surely, and ever +were, very commendable. Accommodated! it comes of +'accommodo' very good; a good phrase. + +BARDOLPH: +Pardon me, sir; I have heard the word. Phrase call +you it? by this good day, I know not the phrase; +but I will maintain the word with my sword to be a +soldier-like word, and a word of exceeding good +command, by heaven. Accommodated; that is, when a +man is, as they say, accommodated; or when a man is, +being, whereby a' may be thought to be accommodated; +which is an excellent thing. + +SHALLOW: +It is very just. +Look, here comes good Sir John. Give me your good +hand, give me your worship's good hand: by my +troth, you like well and bear your years very well: +welcome, good Sir John. + +FALSTAFF: +I am glad to see you well, good Master Robert +Shallow: Master Surecard, as I think? + +SHALLOW: +No, Sir John; it is my cousin Silence, in commission with me. + +FALSTAFF: +Good Master Silence, it well befits you should be of +the peace. + +SILENCE: +Your good-worship is welcome. + +FALSTAFF: +Fie! this is hot weather, gentlemen. Have you +provided me here half a dozen sufficient men? + +SHALLOW: +Marry, have we, sir. Will you sit? + +FALSTAFF: +Let me see them, I beseech you. + +SHALLOW: +Where's the roll? where's the roll? where's the +roll? Let me see, let me see, let me see. So, so: +yea, marry, sir: Ralph Mouldy! Let them appear as +I call; let them do so, let them do so. Let me +see; where is Mouldy? + +MOULDY: +Here, an't please you. + +SHALLOW: +What think you, Sir John? a good-limbed fellow; +young, strong, and of good friends. + +FALSTAFF: +Is thy name Mouldy? + +MOULDY: +Yea, an't please you. + +FALSTAFF: +'Tis the more time thou wert used. + +SHALLOW: +Ha, ha, ha! most excellent, i' faith! Things that +are mouldy lack use: very singular good! in faith, +well said, Sir John, very well said. + +FALSTAFF: +Prick him. + +MOULDY: +I was pricked well enough before, an you could have +let me alone: my old dame will be undone now for +one to do her husbandry and her drudgery: you need +not to have pricked me; there are other men fitter +to go out than I. + +FALSTAFF: +Go to: peace, Mouldy; you shall go. Mouldy, it is +time you were spent. + +MOULDY: +Spent! + +SHALLOW: +Peace, fellow, peace; stand aside: know you where +you are? For the other, Sir John: let me see: +Simon Shadow! + +FALSTAFF: +Yea, marry, let me have him to sit under: he's like +to be a cold soldier. + +SHALLOW: +Where's Shadow? + +SHADOW: +Here, sir. + +FALSTAFF: +Shadow, whose son art thou? + +SHADOW: +My mother's son, sir. + +FALSTAFF: +Thy mother's son! like enough, and thy father's +shadow: so the son of the female is the shadow of +the male: it is often so, indeed; but much of the +father's substance! + +SHALLOW: +Do you like him, Sir John? + +FALSTAFF: +Shadow will serve for summer; prick him, for we have +a number of shadows to fill up the muster-book. + +SHALLOW: +Thomas Wart! + +FALSTAFF: +Where's he? + +WART: +Here, sir. + +FALSTAFF: +Is thy name Wart? + +WART: +Yea, sir. + +FALSTAFF: +Thou art a very ragged wart. + +SHALLOW: +Shall I prick him down, Sir John? + +FALSTAFF: +It were superfluous; for his apparel is built upon +his back and the whole frame stands upon pins: +prick him no more. + +SHALLOW: +Ha, ha, ha! you can do it, sir; you can do it: I +commend you well. Francis Feeble! + +FEEBLE: +Here, sir. + +FALSTAFF: +What trade art thou, Feeble? + +FEEBLE: +A woman's tailor, sir. + +SHALLOW: +Shall I prick him, sir? + +FALSTAFF: +You may: but if he had been a man's tailor, he'ld +ha' pricked you. Wilt thou make as many holes in +an enemy's battle as thou hast done in a woman's petticoat? + +FEEBLE: +I will do my good will, sir; you can have no more. + +FALSTAFF: +Well said, good woman's tailor! well said, +courageous Feeble! thou wilt be as valiant as the +wrathful dove or most magnanimous mouse. Prick the +woman's tailor: well, Master Shallow; deep, Master Shallow. + +FEEBLE: +I would Wart might have gone, sir. + +FALSTAFF: +I would thou wert a man's tailor, that thou mightst +mend him and make him fit to go. I cannot put him +to a private soldier that is the leader of so many +thousands: let that suffice, most forcible Feeble. + +FEEBLE: +It shall suffice, sir. + +FALSTAFF: +I am bound to thee, reverend Feeble. Who is next? + +SHALLOW: +Peter Bullcalf o' the green! + +FALSTAFF: +Yea, marry, let's see Bullcalf. + +BULLCALF: +Here, sir. + +FALSTAFF: +'Fore God, a likely fellow! Come, prick me Bullcalf +till he roar again. + +BULLCALF: +O Lord! good my lord captain,-- + +FALSTAFF: +What, dost thou roar before thou art pricked? + +BULLCALF: +O Lord, sir! I am a diseased man. + +FALSTAFF: +What disease hast thou? + +BULLCALF: +A whoreson cold, sir, a cough, sir, which I caught +with ringing in the king's affairs upon his +coronation-day, sir. + +FALSTAFF: +Come, thou shalt go to the wars in a gown; we wilt +have away thy cold; and I will take such order that +my friends shall ring for thee. Is here all? + +SHALLOW: +Here is two more called than your number, you must +have but four here, sir: and so, I pray you, go in +with me to dinner. + +FALSTAFF: +Come, I will go drink with you, but I cannot tarry +dinner. I am glad to see you, by my troth, Master Shallow. + +SHALLOW: +O, Sir John, do you remember since we lay all night +in the windmill in Saint George's field? + +FALSTAFF: +No more of that, good Master Shallow, no more of that. + +SHALLOW: +Ha! 'twas a merry night. And is Jane Nightwork alive? + +FALSTAFF: +She lives, Master Shallow. + +SHALLOW: +She never could away with me. + +FALSTAFF: +Never, never; she would always say she could not +abide Master Shallow. + +SHALLOW: +By the mass, I could anger her to the heart. She +was then a bona-roba. Doth she hold her own well? + +FALSTAFF: +Old, old, Master Shallow. + +SHALLOW: +Nay, she must be old; she cannot choose but be old; +certain she's old; and had Robin Nightwork by old +Nightwork before I came to Clement's Inn. + +SILENCE: +That's fifty-five year ago. + +SHALLOW: +Ha, cousin Silence, that thou hadst seen that that +this knight and I have seen! Ha, Sir John, said I well? + +FALSTAFF: +We have heard the chimes at midnight, Master Shallow. + +SHALLOW: +That we have, that we have, that we have; in faith, +Sir John, we have: our watch-word was 'Hem boys!' +Come, let's to dinner; come, let's to dinner: +Jesus, the days that we have seen! Come, come. + +BULLCALF: +Good Master Corporate Bardolph, stand my friend; +and here's four Harry ten shillings in French crowns +for you. In very truth, sir, I had as lief be +hanged, sir, as go: and yet, for mine own part, sir, +I do not care; but rather, because I am unwilling, +and, for mine own part, have a desire to stay with +my friends; else, sir, I did not care, for mine own +part, so much. + +BARDOLPH: +Go to; stand aside. + +MOULDY: +And, good master corporal captain, for my old +dame's sake, stand my friend: she has nobody to do +any thing about her when I am gone; and she is old, +and cannot help herself: You shall have forty, sir. + +BARDOLPH: +Go to; stand aside. + +FEEBLE: +By my troth, I care not; a man can die but once: we +owe God a death: I'll ne'er bear a base mind: +an't be my destiny, so; an't be not, so: no man is +too good to serve's prince; and let it go which way +it will, he that dies this year is quit for the next. + +BARDOLPH: +Well said; thou'rt a good fellow. + +FEEBLE: +Faith, I'll bear no base mind. + +FALSTAFF: +Come, sir, which men shall I have? + +SHALLOW: +Four of which you please. + +BARDOLPH: +Sir, a word with you: I have three pound to free +Mouldy and Bullcalf. + +FALSTAFF: +Go to; well. + +SHALLOW: +Come, Sir John, which four will you have? + +FALSTAFF: +Do you choose for me. + +SHALLOW: +Marry, then, Mouldy, Bullcalf, Feeble and Shadow. + +FALSTAFF: +Mouldy and Bullcalf: for you, Mouldy, stay at home +till you are past service: and for your part, +Bullcalf, grow till you come unto it: I will none of you. + +SHALLOW: +Sir John, Sir John, do not yourself wrong: they are +your likeliest men, and I would have you served with the best. + +FALSTAFF: +Will you tell me, Master Shallow, how to choose a +man? Care I for the limb, the thewes, the stature, +bulk, and big assemblance of a man! Give me the +spirit, Master Shallow. Here's Wart; you see what a +ragged appearance it is; a' shall charge you and +discharge you with the motion of a pewterer's +hammer, come off and on swifter than he that gibbets +on the brewer's bucket. And this same half-faced +fellow, Shadow; give me this man: he presents no +mark to the enemy; the foeman may with as great aim +level at the edge of a penknife. And for a retreat; +how swiftly will this Feeble the woman's tailor run +off! O, give me the spare men, and spare me the +great ones. Put me a caliver into Wart's hand, Bardolph. + +BARDOLPH: +Hold, Wart, traverse; thus, thus, thus. + +FALSTAFF: +Come, manage me your caliver. So: very well: go +to: very good, exceeding good. O, give me always a +little, lean, old, chapt, bald shot. Well said, i' +faith, Wart; thou'rt a good scab: hold, there's a +tester for thee. + +SHALLOW: +He is not his craft's master; he doth not do it +right. I remember at Mile-end Green, when I lay at +Clement's Inn--I was then Sir Dagonet in Arthur's +show,--there was a little quiver fellow, and a' +would manage you his piece thus; and a' would about +and about, and come you in and come you in: 'rah, +tah, tah,' would a' say; 'bounce' would a' say; and +away again would a' go, and again would a' come: I +shall ne'er see such a fellow. + +FALSTAFF: +These fellows will do well, Master Shallow. God +keep you, Master Silence: I will not use many words +with you. Fare you well, gentlemen both: I thank +you: I must a dozen mile to-night. Bardolph, give +the soldiers coats. + +SHALLOW: +Sir John, the Lord bless you! God prosper your +affairs! God send us peace! At your return visit +our house; let our old acquaintance be renewed; +peradventure I will with ye to the court. + +FALSTAFF: +'Fore God, I would you would, Master Shallow. + +SHALLOW: +Go to; I have spoke at a word. God keep you. + +FALSTAFF: +Fare you well, gentle gentlemen. +On, Bardolph; lead the men away. +As I return, I will fetch off these justices: I do +see the bottom of Justice Shallow. Lord, Lord, how +subject we old men are to this vice of lying! This +same starved justice hath done nothing but prate to +me of the wildness of his youth, and the feats he +hath done about Turnbull Street: and every third +word a lie, duer paid to the hearer than the Turk's +tribute. I do remember him at Clement's Inn like a +man made after supper of a cheese-paring: when a' +was naked, he was, for all the world, like a forked +radish, with a head fantastically carved upon it +with a knife: a' was so forlorn, that his +dimensions to any thick sight were invincible: a' +was the very genius of famine; yet lecherous as a +monkey, and the whores called him mandrake: a' came +ever in the rearward of the fashion, and sung those +tunes to the overscutched huswives that he heard the +carmen whistle, and swear they were his fancies or +his good-nights. And now is this Vice's dagger +become a squire, and talks as familiarly of John a +Gaunt as if he had been sworn brother to him; and +I'll be sworn a' ne'er saw him but once in the +Tilt-yard; and then he burst his head for crowding +among the marshal's men. I saw it, and told John a +Gaunt he beat his own name; for you might have +thrust him and all his apparel into an eel-skin; the +case of a treble hautboy was a mansion for him, a +court: and now has he land and beefs. Well, I'll +be acquainted with him, if I return; and it shall +go hard but I will make him a philosopher's two +stones to me: if the young dace be a bait for the +old pike, I see no reason in the law of nature but I +may snap at him. Let time shape, and there an end. + +ARCHBISHOP OF YORK: +What is this forest call'd? + +HASTINGS: +'Tis Gaultree Forest, an't shall please your grace. + +ARCHBISHOP OF YORK: +Here stand, my lords; and send discoverers forth +To know the numbers of our enemies. + +HASTINGS: +We have sent forth already. + +ARCHBISHOP OF YORK: +'Tis well done. +My friends and brethren in these great affairs, +I must acquaint you that I have received +New-dated letters from Northumberland; +Their cold intent, tenor and substance, thus: +Here doth he wish his person, with such powers +As might hold sortance with his quality, +The which he could not levy; whereupon +He is retired, to ripe his growing fortunes, +To Scotland: and concludes in hearty prayers +That your attempts may overlive the hazard +And fearful melting of their opposite. + +MOWBRAY: +Thus do the hopes we have in him touch ground +And dash themselves to pieces. + +HASTINGS: +Now, what news? + +Messenger: +West of this forest, scarcely off a mile, +In goodly form comes on the enemy; +And, by the ground they hide, I judge their number +Upon or near the rate of thirty thousand. + +MOWBRAY: +The just proportion that we gave them out +Let us sway on and face them in the field. + +ARCHBISHOP OF YORK: +What well-appointed leader fronts us here? + +MOWBRAY: +I think it is my Lord of Westmoreland. + +WESTMORELAND: +Health and fair greeting from our general, +The prince, Lord John and Duke of Lancaster. + +ARCHBISHOP OF YORK: +Say on, my Lord of Westmoreland, in peace: +What doth concern your coming? + +WESTMORELAND: +Then, my lord, +Unto your grace do I in chief address +The substance of my speech. If that rebellion +Came like itself, in base and abject routs, +Led on by bloody youth, guarded with rags, +And countenanced by boys and beggary, +I say, if damn'd commotion so appear'd, +In his true, native and most proper shape, +You, reverend father, and these noble lords +Had not been here, to dress the ugly form +Of base and bloody insurrection +With your fair honours. You, lord archbishop, +Whose see is by a civil peace maintained, +Whose beard the silver hand of peace hath touch'd, +Whose learning and good letters peace hath tutor'd, +Whose white investments figure innocence, +The dove and very blessed spirit of peace, +Wherefore do you so ill translate ourself +Out of the speech of peace that bears such grace, +Into the harsh and boisterous tongue of war; +Turning your books to graves, your ink to blood, +Your pens to lances and your tongue divine +To a trumpet and a point of war? + +ARCHBISHOP OF YORK: +Wherefore do I this? so the question stands. +Briefly to this end: we are all diseased, +And with our surfeiting and wanton hours +Have brought ourselves into a burning fever, +And we must bleed for it; of which disease +Our late king, Richard, being infected, died. +But, my most noble Lord of Westmoreland, +I take not on me here as a physician, +Nor do I as an enemy to peace +Troop in the throngs of military men; +But rather show awhile like fearful war, +To diet rank minds sick of happiness +And purge the obstructions which begin to stop +Our very veins of life. Hear me more plainly. +I have in equal balance justly weigh'd +What wrongs our arms may do, what wrongs we suffer, +And find our griefs heavier than our offences. +We see which way the stream of time doth run, +And are enforced from our most quiet there +By the rough torrent of occasion; +And have the summary of all our griefs, +When time shall serve, to show in articles; +Which long ere this we offer'd to the king, +And might by no suit gain our audience: +When we are wrong'd and would unfold our griefs, +We are denied access unto his person +Even by those men that most have done us wrong. +The dangers of the days but newly gone, +Whose memory is written on the earth +With yet appearing blood, and the examples +Of every minute's instance, present now, +Hath put us in these ill-beseeming arms, +Not to break peace or any branch of it, +But to establish here a peace indeed, +Concurring both in name and quality. + +WESTMORELAND: +When ever yet was your appeal denied? +Wherein have you been galled by the king? +What peer hath been suborn'd to grate on you, +That you should seal this lawless bloody book +Of forged rebellion with a seal divine +And consecrate commotion's bitter edge? + +ARCHBISHOP OF YORK: +My brother general, the commonwealth, +To brother born an household cruelty, +I make my quarrel in particular. + +WESTMORELAND: +There is no need of any such redress; +Or if there were, it not belongs to you. + +MOWBRAY: +Why not to him in part, and to us all +That feel the bruises of the days before, +And suffer the condition of these times +To lay a heavy and unequal hand +Upon our honours? + +WESTMORELAND: +O, my good Lord Mowbray, +Construe the times to their necessities, +And you shall say indeed, it is the time, +And not the king, that doth you injuries. +Yet for your part, it not appears to me +Either from the king or in the present time +That you should have an inch of any ground +To build a grief on: were you not restored +To all the Duke of Norfolk's signories, +Your noble and right well remember'd father's? + +MOWBRAY: +What thing, in honour, had my father lost, +That need to be revived and breathed in me? +The king that loved him, as the state stood then, +Was force perforce compell'd to banish him: +And then that Harry Bolingbroke and he, +Being mounted and both roused in their seats, +Their neighing coursers daring of the spur, +Their armed staves in charge, their beavers down, +Their eyes of fire sparking through sights of steel +And the loud trumpet blowing them together, +Then, then, when there was nothing could have stay'd +My father from the breast of Bolingbroke, +O when the king did throw his warder down, +His own life hung upon the staff he threw; +Then threw he down himself and all their lives +That by indictment and by dint of sword +Have since miscarried under Bolingbroke. + +WESTMORELAND: +You speak, Lord Mowbray, now you know not what. +The Earl of Hereford was reputed then +In England the most valiant gentlemen: +Who knows on whom fortune would then have smiled? +But if your father had been victor there, +He ne'er had borne it out of Coventry: +For all the country in a general voice +Cried hate upon him; and all their prayers and love +Were set on Hereford, whom they doted on +And bless'd and graced indeed, more than the king. +But this is mere digression from my purpose. +Here come I from our princely general +To know your griefs; to tell you from his grace +That he will give you audience; and wherein +It shall appear that your demands are just, +You shall enjoy them, every thing set off +That might so much as think you enemies. + +MOWBRAY: +But he hath forced us to compel this offer; +And it proceeds from policy, not love. + +WESTMORELAND: +Mowbray, you overween to take it so; +This offer comes from mercy, not from fear: +For, lo! within a ken our army lies, +Upon mine honour, all too confident +To give admittance to a thought of fear. +Our battle is more full of names than yours, +Our men more perfect in the use of arms, +Our armour all as strong, our cause the best; +Then reason will our heart should be as good +Say you not then our offer is compell'd. + +MOWBRAY: +Well, by my will we shall admit no parley. + +WESTMORELAND: +That argues but the shame of your offence: +A rotten case abides no handling. + +HASTINGS: +Hath the Prince John a full commission, +In very ample virtue of his father, +To hear and absolutely to determine +Of what conditions we shall stand upon? + +WESTMORELAND: +That is intended in the general's name: +I muse you make so slight a question. + +ARCHBISHOP OF YORK: +Then take, my Lord of Westmoreland, this schedule, +For this contains our general grievances: +Each several article herein redress'd, +All members of our cause, both here and hence, +That are insinew'd to this action, +Acquitted by a true substantial form +And present execution of our wills +To us and to our purposes confined, +We come within our awful banks again +And knit our powers to the arm of peace. + +WESTMORELAND: +This will I show the general. Please you, lords, +In sight of both our battles we may meet; +And either end in peace, which God so frame! +Or to the place of difference call the swords +Which must decide it. + +ARCHBISHOP OF YORK: +My lord, we will do so. + +MOWBRAY: +There is a thing within my bosom tells me +That no conditions of our peace can stand. + +HASTINGS: +Fear you not that: if we can make our peace +Upon such large terms and so absolute +As our conditions shall consist upon, +Our peace shall stand as firm as rocky mountains. + +MOWBRAY: +Yea, but our valuation shall be such +That every slight and false-derived cause, +Yea, every idle, nice and wanton reason +Shall to the king taste of this action; +That, were our royal faiths martyrs in love, +We shall be winnow'd with so rough a wind +That even our corn shall seem as light as chaff +And good from bad find no partition. + +ARCHBISHOP OF YORK: +No, no, my lord. Note this; the king is weary +Of dainty and such picking grievances: +For he hath found to end one doubt by death +Revives two greater in the heirs of life, +And therefore will he wipe his tables clean +And keep no tell-tale to his memory +That may repeat and history his loss +To new remembrance; for full well he knows +He cannot so precisely weed this land +As his misdoubts present occasion: +His foes are so enrooted with his friends +That, plucking to unfix an enemy, +He doth unfasten so and shake a friend: +So that this land, like an offensive wife +That hath enraged him on to offer strokes, +As he is striking, holds his infant up +And hangs resolved correction in the arm +That was uprear'd to execution. + +HASTINGS: +Besides, the king hath wasted all his rods +On late offenders, that he now doth lack +The very instruments of chastisement: +So that his power, like to a fangless lion, +May offer, but not hold. + +ARCHBISHOP OF YORK: +'Tis very true: +And therefore be assured, my good lord marshal, +If we do now make our atonement well, +Our peace will, like a broken limb united, +Grow stronger for the breaking. + +MOWBRAY: +Be it so. +Here is return'd my Lord of Westmoreland. + +WESTMORELAND: +The prince is here at hand: pleaseth your lordship +To meet his grace just distance 'tween our armies. + +MOWBRAY: +Your grace of York, in God's name then, set forward. + +ARCHBISHOP OF YORK: +Before, and greet his grace: my lord, we come. + +LANCASTER: +You are well encounter'd here, my cousin Mowbray: +Good day to you, gentle lord archbishop; +And so to you, Lord Hastings, and to all. +My Lord of York, it better show'd with you +When that your flock, assembled by the bell, +Encircled you to hear with reverence +Your exposition on the holy text +Than now to see you here an iron man, +Cheering a rout of rebels with your drum, +Turning the word to sword and life to death. +That man that sits within a monarch's heart, +And ripens in the sunshine of his favour, +Would he abuse the countenance of the king, +Alack, what mischiefs might he set abrooch +In shadow of such greatness! With you, lord bishop, +It is even so. Who hath not heard it spoken +How deep you were within the books of God? +To us the speaker in his parliament; +To us the imagined voice of God himself; +The very opener and intelligencer +Between the grace, the sanctities of heaven +And our dull workings. O, who shall believe +But you misuse the reverence of your place, +Employ the countenance and grace of heaven, +As a false favourite doth his prince's name, +In deeds dishonourable? You have ta'en up, +Under the counterfeited zeal of God, +The subjects of his substitute, my father, +And both against the peace of heaven and him +Have here up-swarm'd them. + +ARCHBISHOP OF YORK: +Good my Lord of Lancaster, +I am not here against your father's peace; +But, as I told my lord of Westmoreland, +The time misorder'd doth, in common sense, +Crowd us and crush us to this monstrous form, +To hold our safety up. I sent your grace +The parcels and particulars of our grief, +The which hath been with scorn shoved from the court, +Whereon this Hydra son of war is born; +Whose dangerous eyes may well be charm'd asleep +With grant of our most just and right desires, +And true obedience, of this madness cured, +Stoop tamely to the foot of majesty. + +MOWBRAY: +If not, we ready are to try our fortunes +To the last man. + +HASTINGS: +And though we here fall down, +We have supplies to second our attempt: +If they miscarry, theirs shall second them; +And so success of mischief shall be born +And heir from heir shall hold this quarrel up +Whiles England shall have generation. + +LANCASTER: +You are too shallow, Hastings, much too shallow, +To sound the bottom of the after-times. + +WESTMORELAND: +Pleaseth your grace to answer them directly +How far forth you do like their articles. + +LANCASTER: +I like them all, and do allow them well, +And swear here, by the honour of my blood, +My father's purposes have been mistook, +And some about him have too lavishly +Wrested his meaning and authority. +My lord, these griefs shall be with speed redress'd; +Upon my soul, they shall. If this may please you, +Discharge your powers unto their several counties, +As we will ours: and here between the armies +Let's drink together friendly and embrace, +That all their eyes may bear those tokens home +Of our restored love and amity. + +ARCHBISHOP OF YORK: +I take your princely word for these redresses. + +LANCASTER: +I give it you, and will maintain my word: +And thereupon I drink unto your grace. + +HASTINGS: +Go, captain, and deliver to the army +This news of peace: let them have pay, and part: +I know it will well please them. Hie thee, captain. + +ARCHBISHOP OF YORK: +To you, my noble Lord of Westmoreland. + +WESTMORELAND: +I pledge your grace; and, if you knew what pains +I have bestow'd to breed this present peace, +You would drink freely: but my love to ye +Shall show itself more openly hereafter. + +ARCHBISHOP OF YORK: +I do not doubt you. + +WESTMORELAND: +I am glad of it. +Health to my lord and gentle cousin, Mowbray. + +MOWBRAY: +You wish me health in very happy season; +For I am, on the sudden, something ill. + +ARCHBISHOP OF YORK: +Against ill chances men are ever merry; +But heaviness foreruns the good event. + +WESTMORELAND: +Therefore be merry, coz; since sudden sorrow +Serves to say thus, 'some good thing comes +to-morrow.' + +ARCHBISHOP OF YORK: +Believe me, I am passing light in spirit. + +MOWBRAY: +So much the worse, if your own rule be true. + +LANCASTER: +The word of peace is render'd: hark, how they shout! + +MOWBRAY: +This had been cheerful after victory. + +ARCHBISHOP OF YORK: +A peace is of the nature of a conquest; +For then both parties nobly are subdued, +And neither party loser. + +LANCASTER: +Go, my lord, +And let our army be discharged too. +And, good my lord, so please you, let our trains +March, by us, that we may peruse the men +We should have coped withal. + +ARCHBISHOP OF YORK: +Go, good Lord Hastings, +And, ere they be dismissed, let them march by. + +LANCASTER: +I trust, lords, we shall lie to-night together. +Now, cousin, wherefore stands our army still? + +WESTMORELAND: +The leaders, having charge from you to stand, +Will not go off until they hear you speak. + +LANCASTER: +They know their duties. + +HASTINGS: +My lord, our army is dispersed already; +Like youthful steers unyoked, they take their courses +East, west, north, south; or, like a school broke up, +Each hurries toward his home and sporting-place. + +WESTMORELAND: +Good tidings, my Lord Hastings; for the which +I do arrest thee, traitor, of high treason: +And you, lord archbishop, and you, Lord Mowbray, +Of capitol treason I attach you both. + +MOWBRAY: +Is this proceeding just and honourable? + +WESTMORELAND: +Is your assembly so? + +ARCHBISHOP OF YORK: +Will you thus break your faith? + +LANCASTER: +I pawn'd thee none: +I promised you redress of these same grievances +Whereof you did complain; which, by mine honour, +I will perform with a most Christian care. +But for you, rebels, look to taste the due +Meet for rebellion and such acts as yours. +Most shallowly did you these arms commence, +Fondly brought here and foolishly sent hence. +Strike up our drums, pursue the scatter'd stray: +God, and not we, hath safely fought to-day. +Some guard these traitors to the block of death, +Treason's true bed and yielder up of breath. + +FALSTAFF: +What's your name, sir? of what condition are you, +and of what place, I pray? + +COLEVILE: +I am a knight, sir, and my name is Colevile of the dale. + +FALSTAFF: +Well, then, Colevile is your name, a knight is your +degree, and your place the dale: Colevile shall be +still your name, a traitor your degree, and the +dungeon your place, a place deep enough; so shall +you be still Colevile of the dale. + +COLEVILE: +Are not you Sir John Falstaff? + +FALSTAFF: +As good a man as he, sir, whoe'er I am. Do ye +yield, sir? or shall I sweat for you? if I do +sweat, they are the drops of thy lovers, and they +weep for thy death: therefore rouse up fear and +trembling, and do observance to my mercy. + +COLEVILE: +I think you are Sir John Falstaff, and in that +thought yield me. + +FALSTAFF: +I have a whole school of tongues in this belly of +mine, and not a tongue of them all speaks any other +word but my name. An I had but a belly of any +indifference, I were simply the most active fellow +in Europe: my womb, my womb, my womb, undoes me. +Here comes our general. + +LANCASTER: +The heat is past; follow no further now: +Call in the powers, good cousin Westmoreland. +Now, Falstaff, where have you been all this while? +When every thing is ended, then you come: +These tardy tricks of yours will, on my life, +One time or other break some gallows' back. + +FALSTAFF: +I would be sorry, my lord, but it should be thus: I +never knew yet but rebuke and cheque was the reward +of valour. Do you think me a swallow, an arrow, or a +bullet? have I, in my poor and old motion, the +expedition of thought? I have speeded hither with +the very extremest inch of possibility; I have +foundered nine score and odd posts: and here, +travel-tainted as I am, have in my pure and +immaculate valour, taken Sir John Colevile of the +dale, a most furious knight and valorous enemy. +But what of that? he saw me, and yielded; that I +may justly say, with the hook-nosed fellow of Rome, +'I came, saw, and overcame.' + +LANCASTER: +It was more of his courtesy than your deserving. + +FALSTAFF: +I know not: here he is, and here I yield him: and +I beseech your grace, let it be booked with the +rest of this day's deeds; or, by the Lord, I will +have it in a particular ballad else, with mine own +picture on the top on't, Colevile kissing my foot: +to the which course if I be enforced, if you do not +all show like gilt twopences to me, and I in the +clear sky of fame o'ershine you as much as the full +moon doth the cinders of the element, which show +like pins' heads to her, believe not the word of +the noble: therefore let me have right, and let +desert mount. + +LANCASTER: +Thine's too heavy to mount. + +FALSTAFF: +Let it shine, then. + +LANCASTER: +Thine's too thick to shine. + +FALSTAFF: +Let it do something, my good lord, that may do me +good, and call it what you will. + +LANCASTER: +Is thy name Colevile? + +COLEVILE: +It is, my lord. + +LANCASTER: +A famous rebel art thou, Colevile. + +FALSTAFF: +And a famous true subject took him. + +COLEVILE: +I am, my lord, but as my betters are +That led me hither: had they been ruled by me, +You should have won them dearer than you have. + +FALSTAFF: +I know not how they sold themselves: but thou, like +a kind fellow, gavest thyself away gratis; and I +thank thee for thee. + +LANCASTER: +Now, have you left pursuit? + +WESTMORELAND: +Retreat is made and execution stay'd. + +LANCASTER: +Send Colevile with his confederates +To York, to present execution: +Blunt, lead him hence; and see you guard him sure. +And now dispatch we toward the court, my lords: +I hear the king my father is sore sick: +Our news shall go before us to his majesty, +Which, cousin, you shall bear to comfort him, +And we with sober speed will follow you. + +FALSTAFF: +My lord, I beseech you, give me leave to go +Through Gloucestershire: and, when you come to court, +Stand my good lord, pray, in your good report. + +LANCASTER: +Fare you well, Falstaff: I, in my condition, +Shall better speak of you than you deserve. + +FALSTAFF: +I would you had but the wit: 'twere better than +your dukedom. Good faith, this same young sober- +blooded boy doth not love me; nor a man cannot make +him laugh; but that's no marvel, he drinks no wine. +There's never none of these demure boys come to any +proof; for thin drink doth so over-cool their blood, +and making many fish-meals, that they fall into a +kind of male green-sickness; and then when they +marry, they get wenches: they are generally fools +and cowards; which some of us should be too, but for +inflammation. A good sherris sack hath a two-fold +operation in it. It ascends me into the brain; +dries me there all the foolish and dull and curdy +vapours which environ it; makes it apprehensive, +quick, forgetive, full of nimble fiery and +delectable shapes, which, delivered o'er to the +voice, the tongue, which is the birth, becomes +excellent wit. The second property of your +excellent sherris is, the warming of the blood; +which, before cold and settled, left the liver +white and pale, which is the badge of pusillanimity +and cowardice; but the sherris warms it and makes +it course from the inwards to the parts extreme: +it illumineth the face, which as a beacon gives +warning to all the rest of this little kingdom, +man, to arm; and then the vital commoners and +inland petty spirits muster me all to their captain, +the heart, who, great and puffed up with this +retinue, doth any deed of courage; and this valour +comes of sherris. So that skill in the weapon is +nothing without sack, for that sets it a-work; and +learning a mere hoard of gold kept by a devil, till +sack commences it and sets it in act and use. +Hereof comes it that Prince Harry is valiant; for +the cold blood he did naturally inherit of his +father, he hath, like lean, sterile and bare land, +manured, husbanded and tilled with excellent +endeavour of drinking good and good store of fertile +sherris, that he is become very hot and valiant. If +I had a thousand sons, the first humane principle I +would teach them should be, to forswear thin +potations and to addict themselves to sack. +How now Bardolph? + +BARDOLPH: +The army is discharged all and gone. + +FALSTAFF: +Let them go. I'll through Gloucestershire; and +there will I visit Master Robert Shallow, esquire: +I have him already tempering between my finger and +my thumb, and shortly will I seal with him. Come away. + +KING HENRY IV: +Now, lords, if God doth give successful end +To this debate that bleedeth at our doors, +We will our youth lead on to higher fields +And draw no swords but what are sanctified. +Our navy is address'd, our power collected, +Our substitutes in absence well invested, +And every thing lies level to our wish: +Only, we want a little personal strength; +And pause us, till these rebels, now afoot, +Come underneath the yoke of government. + +WARWICK: +Both which we doubt not but your majesty +Shall soon enjoy. + +KING HENRY IV: +Humphrey, my son of Gloucester, +Where is the prince your brother? + +GLOUCESTER: +I think he's gone to hunt, my lord, at Windsor. + +KING HENRY IV: +And how accompanied? + +GLOUCESTER: +I do not know, my lord. + +KING HENRY IV: +Is not his brother, Thomas of Clarence, with him? + +GLOUCESTER: +No, my good lord; he is in presence here. + +CLARENCE: +What would my lord and father? + +KING HENRY IV: +Nothing but well to thee, Thomas of Clarence. +How chance thou art not with the prince thy brother? +He loves thee, and thou dost neglect him, Thomas; +Thou hast a better place in his affection +Than all thy brothers: cherish it, my boy, +And noble offices thou mayst effect +Of mediation, after I am dead, +Between his greatness and thy other brethren: +Therefore omit him not; blunt not his love, +Nor lose the good advantage of his grace +By seeming cold or careless of his will; +For he is gracious, if he be observed: +He hath a tear for pity and a hand +Open as day for melting charity: +Yet notwithstanding, being incensed, he's flint, +As humorous as winter and as sudden +As flaws congealed in the spring of day. +His temper, therefore, must be well observed: +Chide him for faults, and do it reverently, +When thou perceive his blood inclined to mirth; +But, being moody, give him line and scope, +Till that his passions, like a whale on ground, +Confound themselves with working. Learn this, Thomas, +And thou shalt prove a shelter to thy friends, +A hoop of gold to bind thy brothers in, +That the united vessel of their blood, +Mingled with venom of suggestion-- +As, force perforce, the age will pour it in-- +Shall never leak, though it do work as strong +As aconitum or rash gunpowder. + +CLARENCE: +I shall observe him with all care and love. + +KING HENRY IV: +Why art thou not at Windsor with him, Thomas? + +CLARENCE: +He is not there to-day; he dines in London. + +KING HENRY IV: +And how accompanied? canst thou tell that? + +CLARENCE: +With Poins, and other his continual followers. + +KING HENRY IV: +Most subject is the fattest soil to weeds; +And he, the noble image of my youth, +Is overspread with them: therefore my grief +Stretches itself beyond the hour of death: +The blood weeps from my heart when I do shape +In forms imaginary the unguided days +And rotten times that you shall look upon +When I am sleeping with my ancestors. +For when his headstrong riot hath no curb, +When rage and hot blood are his counsellors, +When means and lavish manners meet together, +O, with what wings shall his affections fly +Towards fronting peril and opposed decay! + +WARWICK: +My gracious lord, you look beyond him quite: +The prince but studies his companions +Like a strange tongue, wherein, to gain the language, +'Tis needful that the most immodest word +Be look'd upon and learn'd; which once attain'd, +Your highness knows, comes to no further use +But to be known and hated. So, like gross terms, +The prince will in the perfectness of time +Cast off his followers; and their memory +Shall as a pattern or a measure live, +By which his grace must mete the lives of others, +Turning past evils to advantages. + +KING HENRY IV: +'Tis seldom when the bee doth leave her comb +In the dead carrion. +Who's here? Westmoreland? + +WESTMORELAND: +Health to my sovereign, and new happiness +Added to that that I am to deliver! +Prince John your son doth kiss your grace's hand: +Mowbray, the Bishop Scroop, Hastings and all +Are brought to the correction of your law; +There is not now a rebel's sword unsheath'd +But peace puts forth her olive every where. +The manner how this action hath been borne +Here at more leisure may your highness read, +With every course in his particular. + +KING HENRY IV: +O Westmoreland, thou art a summer bird, +Which ever in the haunch of winter sings +The lifting up of day. +Look, here's more news. + +HARCOURT: +From enemies heaven keep your majesty; +And, when they stand against you, may they fall +As those that I am come to tell you of! +The Earl Northumberland and the Lord Bardolph, +With a great power of English and of Scots +Are by the sheriff of Yorkshire overthrown: +The manner and true order of the fight +This packet, please it you, contains at large. + +KING HENRY IV: +And wherefore should these good news make me sick? +Will fortune never come with both hands full, +But write her fair words still in foulest letters? +She either gives a stomach and no food; +Such are the poor, in health; or else a feast +And takes away the stomach; such are the rich, +That have abundance and enjoy it not. +I should rejoice now at this happy news; +And now my sight fails, and my brain is giddy: +O me! come near me; now I am much ill. + +GLOUCESTER: +Comfort, your majesty! + +CLARENCE: +O my royal father! + +WESTMORELAND: +My sovereign lord, cheer up yourself, look up. + +WARWICK: +Be patient, princes; you do know, these fits +Are with his highness very ordinary. +Stand from him. Give him air; he'll straight be well. + +CLARENCE: +No, no, he cannot long hold out these pangs: +The incessant care and labour of his mind +Hath wrought the mure that should confine it in +So thin that life looks through and will break out. + +GLOUCESTER: +The people fear me; for they do observe +Unfather'd heirs and loathly births of nature: +The seasons change their manners, as the year +Had found some months asleep and leap'd them over. + +CLARENCE: +The river hath thrice flow'd, no ebb between; +And the old folk, time's doting chronicles, +Say it did so a little time before +That our great-grandsire, Edward, sick'd and died. + +WARWICK: +Speak lower, princes, for the king recovers. + +GLOUCESTER: +This apoplexy will certain be his end. + +KING HENRY IV: +I pray you, take me up, and bear me hence +Into some other chamber: softly, pray. + +KING HENRY IV: +Let there be no noise made, my gentle friends; +Unless some dull and favourable hand +Will whisper music to my weary spirit. + +WARWICK: +Call for the music in the other room. + +KING HENRY IV: +Set me the crown upon my pillow here. + +CLARENCE: +His eye is hollow, and he changes much. + +WARWICK: +Less noise, less noise! + +PRINCE HENRY: +Who saw the Duke of Clarence? + +CLARENCE: +I am here, brother, full of heaviness. + +PRINCE HENRY: +How now! rain within doors, and none abroad! +How doth the king? + +GLOUCESTER: +Exceeding ill. + +PRINCE HENRY: +Heard he the good news yet? +Tell it him. + +GLOUCESTER: +He alter'd much upon the hearing it. + +PRINCE HENRY: +If he be sick with joy, he'll recover without physic. + +WARWICK: +Not so much noise, my lords: sweet prince, +speak low; +The king your father is disposed to sleep. + +CLARENCE: +Let us withdraw into the other room. + +WARWICK: +Will't please your grace to go along with us? + +PRINCE HENRY: +No; I will sit and watch here by the king. +Why doth the crown lie there upon his pillow, +Being so troublesome a bedfellow? +O polish'd perturbation! golden care! +That keep'st the ports of slumber open wide +To many a watchful night! sleep with it now! +Yet not so sound and half so deeply sweet +As he whose brow with homely biggen bound +Snores out the watch of night. O majesty! +When thou dost pinch thy bearer, thou dost sit +Like a rich armour worn in heat of day, +That scalds with safety. By his gates of breath +There lies a downy feather which stirs not: +Did he suspire, that light and weightless down +Perforce must move. My gracious lord! my father! +This sleep is sound indeed, this is a sleep +That from this golden rigol hath divorced +So many English kings. Thy due from me +Is tears and heavy sorrows of the blood, +Which nature, love, and filial tenderness, +Shall, O dear father, pay thee plenteously: +My due from thee is this imperial crown, +Which, as immediate as thy place and blood, +Derives itself to me. Lo, here it sits, +Which God shall guard: and put the world's whole strength +Into one giant arm, it shall not force +This lineal honour from me: this from thee +Will I to mine leave, as 'tis left to me. + +KING HENRY IV: +Warwick! Gloucester! Clarence! + +CLARENCE: +Doth the king call? + +WARWICK: +What would your majesty? How fares your grace? + +KING HENRY IV: +Why did you leave me here alone, my lords? + +CLARENCE: +We left the prince my brother here, my liege, +Who undertook to sit and watch by you. + +KING HENRY IV: +The Prince of Wales! Where is he? let me see him: +He is not here. + +WARWICK: +This door is open; he is gone this way. + +GLOUCESTER: +He came not through the chamber where we stay'd. + +KING HENRY IV: +Where is the crown? who took it from my pillow? + +WARWICK: +When we withdrew, my liege, we left it here. + +KING HENRY IV: +The prince hath ta'en it hence: go, seek him out. +Is he so hasty that he doth suppose +My sleep my death? +Find him, my Lord of Warwick; chide him hither. +This part of his conjoins with my disease, +And helps to end me. See, sons, what things you are! +How quickly nature falls into revolt +When gold becomes her object! +For this the foolish over-careful fathers +Have broke their sleep with thoughts, their brains with care, +Their bones with industry; +For this they have engrossed and piled up +The canker'd heaps of strange-achieved gold; +For this they have been thoughtful to invest +Their sons with arts and martial exercises: +When, like the bee, culling from every flower +The virtuous sweets, +Our thighs pack'd with wax, our mouths with honey, +We bring it to the hive, and, like the bees, +Are murdered for our pains. This bitter taste +Yield his engrossments to the ending father. +Now, where is he that will not stay so long +Till his friend sickness hath determined me? + +WARWICK: +My lord, I found the prince in the next room, +Washing with kindly tears his gentle cheeks, +With such a deep demeanor in great sorrow +That tyranny, which never quaff'd but blood, +Would, by beholding him, have wash'd his knife +With gentle eye-drops. He is coming hither. + +KING HENRY IV: +But wherefore did he take away the crown? +Lo, where he comes. Come hither to me, Harry. +Depart the chamber, leave us here alone. + +PRINCE HENRY: +I never thought to hear you speak again. + +KING HENRY IV: +Thy wish was father, Harry, to that thought: +I stay too long by thee, I weary thee. +Dost thou so hunger for mine empty chair +That thou wilt needs invest thee with my honours +Before thy hour be ripe? O foolish youth! +Thou seek'st the greatness that will o'erwhelm thee. +Stay but a little; for my cloud of dignity +Is held from falling with so weak a wind +That it will quickly drop: my day is dim. +Thou hast stolen that which after some few hours +Were thine without offence; and at my death +Thou hast seal'd up my expectation: +Thy life did manifest thou lovedst me not, +And thou wilt have me die assured of it. +Thou hidest a thousand daggers in thy thoughts, +Which thou hast whetted on thy stony heart, +To stab at half an hour of my life. +What! canst thou not forbear me half an hour? +Then get thee gone and dig my grave thyself, +And bid the merry bells ring to thine ear +That thou art crowned, not that I am dead. +Let all the tears that should bedew my hearse +Be drops of balm to sanctify thy head: +Only compound me with forgotten dust +Give that which gave thee life unto the worms. +Pluck down my officers, break my decrees; +For now a time is come to mock at form: +Harry the Fifth is crown'd: up, vanity! +Down, royal state! all you sage counsellors, hence! +And to the English court assemble now, +From every region, apes of idleness! +Now, neighbour confines, purge you of your scum: +Have you a ruffian that will swear, drink, dance, +Revel the night, rob, murder, and commit +The oldest sins the newest kind of ways? +Be happy, he will trouble you no more; +England shall double gild his treble guilt, +England shall give him office, honour, might; +For the fifth Harry from curb'd licence plucks +The muzzle of restraint, and the wild dog +Shall flesh his tooth on every innocent. +O my poor kingdom, sick with civil blows! +When that my care could not withhold thy riots, +What wilt thou do when riot is thy care? +O, thou wilt be a wilderness again, +Peopled with wolves, thy old inhabitants! + +PRINCE HENRY: +O, pardon me, my liege! but for my tears, +The moist impediments unto my speech, +I had forestall'd this dear and deep rebuke +Ere you with grief had spoke and I had heard +The course of it so far. There is your crown; +And He that wears the crown immortally +Long guard it yours! If I affect it more +Than as your honour and as your renown, +Let me no more from this obedience rise, +Which my most inward true and duteous spirit +Teacheth, this prostrate and exterior bending. +God witness with me, when I here came in, +And found no course of breath within your majesty, +How cold it struck my heart! If I do feign, +O, let me in my present wildness die +And never live to show the incredulous world +The noble change that I have purposed! +Coming to look on you, thinking you dead, +And dead almost, my liege, to think you were, +I spake unto this crown as having sense, +And thus upbraided it: 'The care on thee depending +Hath fed upon the body of my father; +Therefore, thou best of gold art worst of gold: +Other, less fine in carat, is more precious, +Preserving life in medicine potable; +But thou, most fine, most honour'd: most renown'd, +Hast eat thy bearer up.' Thus, my most royal liege, +Accusing it, I put it on my head, +To try with it, as with an enemy +That had before my face murder'd my father, +The quarrel of a true inheritor. +But if it did infect my blood with joy, +Or swell my thoughts to any strain of pride; +If any rebel or vain spirit of mine +Did with the least affection of a welcome +Give entertainment to the might of it, +Let God for ever keep it from my head +And make me as the poorest vassal is +That doth with awe and terror kneel to it! + +KING HENRY IV: +O my son, +God put it in thy mind to take it hence, +That thou mightst win the more thy father's love, +Pleading so wisely in excuse of it! +Come hither, Harry, sit thou by my bed; +And hear, I think, the very latest counsel +That ever I shall breathe. God knows, my son, +By what by-paths and indirect crook'd ways +I met this crown; and I myself know well +How troublesome it sat upon my head. +To thee it shall descend with bitter quiet, +Better opinion, better confirmation; +For all the soil of the achievement goes +With me into the earth. It seem'd in me +But as an honour snatch'd with boisterous hand, +And I had many living to upbraid +My gain of it by their assistances; +Which daily grew to quarrel and to bloodshed, +Wounding supposed peace: all these bold fears +Thou see'st with peril I have answered; +For all my reign hath been but as a scene +Acting that argument: and now my death +Changes the mode; for what in me was purchased, +Falls upon thee in a more fairer sort; +So thou the garland wear'st successively. +Yet, though thou stand'st more sure than I could do, +Thou art not firm enough, since griefs are green; +And all my friends, which thou must make thy friends, +Have but their stings and teeth newly ta'en out; +By whose fell working I was first advanced +And by whose power I well might lodge a fear +To be again displaced: which to avoid, +I cut them off; and had a purpose now +To lead out many to the Holy Land, +Lest rest and lying still might make them look +Too near unto my state. Therefore, my Harry, +Be it thy course to busy giddy minds +With foreign quarrels; that action, hence borne out, +May waste the memory of the former days. +More would I, but my lungs are wasted so +That strength of speech is utterly denied me. +How I came by the crown, O God forgive; +And grant it may with thee in true peace live! + +PRINCE HENRY: +My gracious liege, +You won it, wore it, kept it, gave it me; +Then plain and right must my possession be: +Which I with more than with a common pain +'Gainst all the world will rightfully maintain. + +KING HENRY IV: +Look, look, here comes my John of Lancaster. + +LANCASTER: +Health, peace, and happiness to my royal father! + +KING HENRY IV: +Thou bring'st me happiness and peace, son John; +But health, alack, with youthful wings is flown +From this bare wither'd trunk: upon thy sight +My worldly business makes a period. +Where is my Lord of Warwick? + +PRINCE HENRY: +My Lord of Warwick! + +KING HENRY IV: +Doth any name particular belong +Unto the lodging where I first did swoon? + +WARWICK: +'Tis call'd Jerusalem, my noble lord. + +KING HENRY IV: +Laud be to God! even there my life must end. +It hath been prophesied to me many years, +I should not die but in Jerusalem; +Which vainly I supposed the Holy Land: +But bear me to that chamber; there I'll lie; +In that Jerusalem shall Harry die. + +SHALLOW: +By cock and pie, sir, you shall not away to-night. +What, Davy, I say! + +FALSTAFF: +You must excuse me, Master Robert Shallow. + +SHALLOW: +I will not excuse you; you shall not be excused; +excuses shall not be admitted; there is no excuse +shall serve; you shall not be excused. Why, Davy! + +DAVY: +Here, sir. + +SHALLOW: +Davy, Davy, Davy, Davy, let me see, Davy; let me +see, Davy; let me see: yea, marry, William cook, +bid him come hither. Sir John, you shall not be excused. + +DAVY: +Marry, sir, thus; those precepts cannot be served: +and, again, sir, shall we sow the headland with wheat? + +SHALLOW: +With red wheat, Davy. But for William cook: are +there no young pigeons? + +DAVY: +Yes, sir. Here is now the smith's note for shoeing +and plough-irons. + +SHALLOW: +Let it be cast and paid. Sir John, you shall not be excused. + +DAVY: +Now, sir, a new link to the bucket must need be +had: and, sir, do you mean to stop any of William's +wages, about the sack he lost the other day at +Hinckley fair? + +SHALLOW: +A' shall answer it. Some pigeons, Davy, a couple +of short-legged hens, a joint of mutton, and any +pretty little tiny kickshaws, tell William cook. + +DAVY: +Doth the man of war stay all night, sir? + +SHALLOW: +Yea, Davy. I will use him well: a friend i' the +court is better than a penny in purse. Use his men +well, Davy; for they are arrant knaves, and will backbite. + +DAVY: +No worse than they are backbitten, sir; for they +have marvellous foul linen. + +SHALLOW: +Well conceited, Davy: about thy business, Davy. + +DAVY: +I beseech you, sir, to countenance William Visor of +Woncot against Clement Perkes of the hill. + +SHALLOW: +There is many complaints, Davy, against that Visor: +that Visor is an arrant knave, on my knowledge. + +DAVY: +I grant your worship that he is a knave, sir; but +yet, God forbid, sir, but a knave should have some +countenance at his friend's request. An honest +man, sir, is able to speak for himself, when a knave +is not. I have served your worship truly, sir, +this eight years; and if I cannot once or twice in +a quarter bear out a knave against an honest man, I +have but a very little credit with your worship. The +knave is mine honest friend, sir; therefore, I +beseech your worship, let him be countenanced. + +SHALLOW: +Go to; I say he shall have no wrong. Look about, Davy. +Where are you, Sir John? Come, come, come, off +with your boots. Give me your hand, Master Bardolph. + +BARDOLPH: +I am glad to see your worship. + +SHALLOW: +I thank thee with all my heart, kind +Master Bardolph: and welcome, my tall fellow. +Come, Sir John. + +FALSTAFF: +I'll follow you, good Master Robert Shallow. +Bardolph, look to our horses. +If I were sawed into quantities, I should make four +dozen of such bearded hermits' staves as Master +Shallow. It is a wonderful thing to see the +semblable coherence of his men's spirits and his: +they, by observing of him, do bear themselves like +foolish justices; he, by conversing with them, is +turned into a justice-like serving-man: their +spirits are so married in conjunction with the +participation of society that they flock together in +consent, like so many wild-geese. If I had a suit +to Master Shallow, I would humour his men with the +imputation of being near their master: if to his +men, I would curry with Master Shallow that no man +could better command his servants. It is certain +that either wise bearing or ignorant carriage is +caught, as men take diseases, one of another: +therefore let men take heed of their company. I +will devise matter enough out of this Shallow to +keep Prince Harry in continual laughter the wearing +out of six fashions, which is four terms, or two +actions, and a' shall laugh without intervallums. O, +it is much that a lie with a slight oath and a jest +with a sad brow will do with a fellow that never +had the ache in his shoulders! O, you shall see him +laugh till his face be like a wet cloak ill laid up! + +SHALLOW: + +FALSTAFF: +I come, Master Shallow; I come, Master Shallow. + +WARWICK: +How now, my lord chief-justice! whither away? + +Lord Chief-Justice: +How doth the king? + +WARWICK: +Exceeding well; his cares are now all ended. + +Lord Chief-Justice: +I hope, not dead. + +WARWICK: +He's walk'd the way of nature; +And to our purposes he lives no more. + +Lord Chief-Justice: +I would his majesty had call'd me with him: +The service that I truly did his life +Hath left me open to all injuries. + +WARWICK: +Indeed I think the young king loves you not. + +Lord Chief-Justice: +I know he doth not, and do arm myself +To welcome the condition of the time, +Which cannot look more hideously upon me +Than I have drawn it in my fantasy. + +WARWICK: +Here come the heavy issue of dead Harry: +O that the living Harry had the temper +Of him, the worst of these three gentlemen! +How many nobles then should hold their places +That must strike sail to spirits of vile sort! + +Lord Chief-Justice: +O God, I fear all will be overturn'd! + +LANCASTER: +Good morrow, cousin Warwick, good morrow. + +GLOUCESTER: +Good morrow, cousin. + +LANCASTER: +We meet like men that had forgot to speak. + +WARWICK: +We do remember; but our argument +Is all too heavy to admit much talk. + +LANCASTER: +Well, peace be with him that hath made us heavy. + +Lord Chief-Justice: +Peace be with us, lest we be heavier! + +GLOUCESTER: +O, good my lord, you have lost a friend indeed; +And I dare swear you borrow not that face +Of seeming sorrow, it is sure your own. + +LANCASTER: +Though no man be assured what grace to find, +You stand in coldest expectation: +I am the sorrier; would 'twere otherwise. + +CLARENCE: +Well, you must now speak Sir John Falstaff fair; +Which swims against your stream of quality. + +Lord Chief-Justice: +Sweet princes, what I did, I did in honour, +Led by the impartial conduct of my soul: +And never shall you see that I will beg +A ragged and forestall'd remission. +If truth and upright innocency fail me, +I'll to the king my master that is dead, +And tell him who hath sent me after him. + +WARWICK: +Here comes the prince. + +Lord Chief-Justice: +Good morrow; and God save your majesty! + +KING HENRY V: +This new and gorgeous garment, majesty, +Sits not so easy on me as you think. +Brothers, you mix your sadness with some fear: +This is the English, not the Turkish court; +Not Amurath an Amurath succeeds, +But Harry Harry. Yet be sad, good brothers, +For, by my faith, it very well becomes you: +Sorrow so royally in you appears +That I will deeply put the fashion on +And wear it in my heart: why then, be sad; +But entertain no more of it, good brothers, +Than a joint burden laid upon us all. +For me, by heaven, I bid you be assured, +I'll be your father and your brother too; +Let me but bear your love, I 'll bear your cares: +Yet weep that Harry's dead; and so will I; +But Harry lives, that shall convert those tears +By number into hours of happiness. + +Princes: +We hope no other from your majesty. + +KING HENRY V: +You all look strangely on me: and you most; +You are, I think, assured I love you not. + +Lord Chief-Justice: +I am assured, if I be measured rightly, +Your majesty hath no just cause to hate me. + +KING HENRY V: +No! +How might a prince of my great hopes forget +So great indignities you laid upon me? +What! rate, rebuke, and roughly send to prison +The immediate heir of England! Was this easy? +May this be wash'd in Lethe, and forgotten? + +Lord Chief-Justice: +I then did use the person of your father; +The image of his power lay then in me: +And, in the administration of his law, +Whiles I was busy for the commonwealth, +Your highness pleased to forget my place, +The majesty and power of law and justice, +The image of the king whom I presented, +And struck me in my very seat of judgment; +Whereon, as an offender to your father, +I gave bold way to my authority +And did commit you. If the deed were ill, +Be you contented, wearing now the garland, +To have a son set your decrees at nought, +To pluck down justice from your awful bench, +To trip the course of law and blunt the sword +That guards the peace and safety of your person; +Nay, more, to spurn at your most royal image +And mock your workings in a second body. +Question your royal thoughts, make the case yours; +Be now the father and propose a son, +Hear your own dignity so much profaned, +See your most dreadful laws so loosely slighted, +Behold yourself so by a son disdain'd; +And then imagine me taking your part +And in your power soft silencing your son: +After this cold considerance, sentence me; +And, as you are a king, speak in your state +What I have done that misbecame my place, +My person, or my liege's sovereignty. + +KING HENRY V: +You are right, justice, and you weigh this well; +Therefore still bear the balance and the sword: +And I do wish your honours may increase, +Till you do live to see a son of mine +Offend you and obey you, as I did. +So shall I live to speak my father's words: +'Happy am I, that have a man so bold, +That dares do justice on my proper son; +And not less happy, having such a son, +That would deliver up his greatness so +Into the hands of justice.' You did commit me: +For which, I do commit into your hand +The unstained sword that you have used to bear; +With this remembrance, that you use the same +With the like bold, just and impartial spirit +As you have done 'gainst me. There is my hand. +You shall be as a father to my youth: +My voice shall sound as you do prompt mine ear, +And I will stoop and humble my intents +To your well-practised wise directions. +And, princes all, believe me, I beseech you; +My father is gone wild into his grave, +For in his tomb lie my affections; +And with his spirit sadly I survive, +To mock the expectation of the world, +To frustrate prophecies and to raze out +Rotten opinion, who hath writ me down +After my seeming. The tide of blood in me +Hath proudly flow'd in vanity till now: +Now doth it turn and ebb back to the sea, +Where it shall mingle with the state of floods +And flow henceforth in formal majesty. +Now call we our high court of parliament: +And let us choose such limbs of noble counsel, +That the great body of our state may go +In equal rank with the best govern'd nation; +That war, or peace, or both at once, may be +As things acquainted and familiar to us; +In which you, father, shall have foremost hand. +Our coronation done, we will accite, +As I before remember'd, all our state: +And, God consigning to my good intents, +No prince nor peer shall have just cause to say, +God shorten Harry's happy life one day! + +SHALLOW: +Nay, you shall see my orchard, where, in an arbour, +we will eat a last year's pippin of my own graffing, +with a dish of caraways, and so forth: come, +cousin Silence: and then to bed. + +FALSTAFF: +'Fore God, you have here a goodly dwelling and a rich. + +SHALLOW: +Barren, barren, barren; beggars all, beggars all, +Sir John: marry, good air. Spread, Davy; spread, +Davy; well said, Davy. + +FALSTAFF: +This Davy serves you for good uses; he is your +serving-man and your husband. + +SHALLOW: +A good varlet, a good varlet, a very good varlet, +Sir John: by the mass, I have drunk too much sack +at supper: a good varlet. Now sit down, now sit +down: come, cousin. + +SILENCE: +Ah, sirrah! quoth-a, we shall +Do nothing but eat, and make good cheer, +And praise God for the merry year; +When flesh is cheap and females dear, +And lusty lads roam here and there +So merrily, +And ever among so merrily. + +FALSTAFF: +There's a merry heart! Good Master Silence, I'll +give you a health for that anon. + +SHALLOW: +Give Master Bardolph some wine, Davy. + +DAVY: +Sweet sir, sit; I'll be with you anon. most sweet +sir, sit. Master page, good master page, sit. +Proface! What you want in meat, we'll have in drink: +but you must bear; the heart's all. + +SHALLOW: +Be merry, Master Bardolph; and, my little soldier +there, be merry. + +SILENCE: +Be merry, be merry, my wife has all; +For women are shrews, both short and tall: +'Tis merry in hall when beards wag all, +And welcome merry Shrove-tide. +Be merry, be merry. + +FALSTAFF: +I did not think Master Silence had been a man of +this mettle. + +SILENCE: +Who, I? I have been merry twice and once ere now. + +DAVY: +There's a dish of leather-coats for you. + +SHALLOW: +Davy! + +DAVY: +Your worship! I'll be with you straight. +A cup of wine, sir? + +SILENCE: +A cup of wine that's brisk and fine, +And drink unto the leman mine; +And a merry heart lives long-a. + +FALSTAFF: +Well said, Master Silence. + +SILENCE: +An we shall be merry, now comes in the sweet o' the night. + +FALSTAFF: +Health and long life to you, Master Silence. + +SILENCE: +Fill the cup, and let it come; +I'll pledge you a mile to the bottom. + +SHALLOW: +Honest Bardolph, welcome: if thou wantest any +thing, and wilt not call, beshrew thy heart. +Welcome, my little tiny thief. +And welcome indeed too. I'll drink to Master +Bardolph, and to all the cavaleros about London. + +DAVY: +I hove to see London once ere I die. + +BARDOLPH: +An I might see you there, Davy,-- + +SHALLOW: +By the mass, you'll crack a quart together, ha! +Will you not, Master Bardolph? + +BARDOLPH: +Yea, sir, in a pottle-pot. + +SHALLOW: +By God's liggens, I thank thee: the knave will +stick by thee, I can assure thee that. A' will not +out; he is true bred. + +BARDOLPH: +And I'll stick by him, sir. + +SHALLOW: +Why, there spoke a king. Lack nothing: be merry. +Look who's at door there, ho! who knocks? + +FALSTAFF: +Why, now you have done me right. + +SILENCE: + +FALSTAFF: +'Tis so. + +SILENCE: +Is't so? Why then, say an old man can do somewhat. + +DAVY: +An't please your worship, there's one Pistol come +from the court with news. + +FALSTAFF: +From the court! let him come in. +How now, Pistol! + +PISTOL: +Sir John, God save you! + +FALSTAFF: +What wind blew you hither, Pistol? + +PISTOL: +Not the ill wind which blows no man to good. Sweet +knight, thou art now one of the greatest men in this realm. + +SILENCE: +By'r lady, I think a' be, but goodman Puff of Barson. + +PISTOL: +Puff! +Puff in thy teeth, most recreant coward base! +Sir John, I am thy Pistol and thy friend, +And helter-skelter have I rode to thee, +And tidings do I bring and lucky joys +And golden times and happy news of price. + +FALSTAFF: +I pray thee now, deliver them like a man of this world. + +PISTOL: +A foutre for the world and worldlings base! +I speak of Africa and golden joys. + +FALSTAFF: +O base Assyrian knight, what is thy news? +Let King Cophetua know the truth thereof. + +SILENCE: +And Robin Hood, Scarlet, and John. + +PISTOL: +Shall dunghill curs confront the Helicons? +And shall good news be baffled? +Then, Pistol, lay thy head in Furies' lap. + +SILENCE: +Honest gentleman, I know not your breeding. + +PISTOL: +Why then, lament therefore. + +SHALLOW: +Give me pardon, sir: if, sir, you come with news +from the court, I take it there's but two ways, +either to utter them, or to conceal them. I am, +sir, under the king, in some authority. + +PISTOL: +Under which king, Besonian? speak, or die. + +SHALLOW: +Under King Harry. + +PISTOL: +Harry the Fourth? or Fifth? + +SHALLOW: +Harry the Fourth. + +PISTOL: +A foutre for thine office! +Sir John, thy tender lambkin now is king; +Harry the Fifth's the man. I speak the truth: +When Pistol lies, do this; and fig me, like +The bragging Spaniard. + +FALSTAFF: +What, is the old king dead? + +PISTOL: +As nail in door: the things I speak are just. + +FALSTAFF: +Away, Bardolph! saddle my horse. Master Robert +Shallow, choose what office thou wilt in the land, +'tis thine. Pistol, I will double-charge thee with dignities. + +BARDOLPH: +O joyful day! +I would not take a knighthood for my fortune. + +PISTOL: +What! I do bring good news. + +FALSTAFF: +Carry Master Silence to bed. Master Shallow, my +Lord Shallow,--be what thou wilt; I am fortune's +steward--get on thy boots: we'll ride all night. +O sweet Pistol! Away, Bardolph! +Come, Pistol, utter more to me; and withal devise +something to do thyself good. Boot, boot, Master +Shallow: I know the young king is sick for me. Let +us take any man's horses; the laws of England are at +my commandment. Blessed are they that have been my +friends; and woe to my lord chief-justice! + +PISTOL: +Let vultures vile seize on his lungs also! +'Where is the life that late I led?' say they: +Why, here it is; welcome these pleasant days! + +MISTRESS QUICKLY: +No, thou arrant knave; I would to God that I might +die, that I might have thee hanged: thou hast +drawn my shoulder out of joint. + +First Beadle: +The constables have delivered her over to me; and +she shall have whipping-cheer enough, I warrant +her: there hath been a man or two lately killed about her. + +DOLL TEARSHEET: +Nut-hook, nut-hook, you lie. Come on; I 'll tell +thee what, thou damned tripe-visaged rascal, an +the child I now go with do miscarry, thou wert +better thou hadst struck thy mother, thou +paper-faced villain. + +MISTRESS QUICKLY: +O the Lord, that Sir John were come! he would make +this a bloody day to somebody. But I pray God the +fruit of her womb miscarry! + +First Beadle: +If it do, you shall have a dozen of cushions again; +you have but eleven now. Come, I charge you both go +with me; for the man is dead that you and Pistol +beat amongst you. + +DOLL TEARSHEET: +I'll tell you what, you thin man in a censer, I +will have you as soundly swinged for this,--you +blue-bottle rogue, you filthy famished correctioner, +if you be not swinged, I'll forswear half-kirtles. + +First Beadle: +Come, come, you she knight-errant, come. + +MISTRESS QUICKLY: +O God, that right should thus overcome might! +Well, of sufferance comes ease. + +DOLL TEARSHEET: +Come, you rogue, come; bring me to a justice. + +MISTRESS QUICKLY: +Ay, come, you starved blood-hound. + +DOLL TEARSHEET: +Goodman death, goodman bones! + +MISTRESS QUICKLY: +Thou atomy, thou! + +DOLL TEARSHEET: +Come, you thin thing; come you rascal. + +First Beadle: +Very well. + +First Groom: +More rushes, more rushes. + +Second Groom: +The trumpets have sounded twice. + +First Groom: +'Twill be two o'clock ere they come from the +coronation: dispatch, dispatch. + +FALSTAFF: +Stand here by me, Master Robert Shallow; I will +make the king do you grace: I will leer upon him as +a' comes by; and do but mark the countenance that he +will give me. + +PISTOL: +God bless thy lungs, good knight. + +FALSTAFF: +Come here, Pistol; stand behind me. O, if I had had +time to have made new liveries, I would have +bestowed the thousand pound I borrowed of you. But +'tis no matter; this poor show doth better: this +doth infer the zeal I had to see him. + +SHALLOW: +It doth so. + +FALSTAFF: +It shows my earnestness of affection,-- + +SHALLOW: +It doth so. + +FALSTAFF: +My devotion,-- + +SHALLOW: +It doth, it doth, it doth. + +FALSTAFF: +As it were, to ride day and night; and not to +deliberate, not to remember, not to have patience +to shift me,-- + +SHALLOW: +It is best, certain. + +FALSTAFF: +But to stand stained with travel, and sweating with +desire to see him; thinking of nothing else, +putting all affairs else in oblivion, as if there +were nothing else to be done but to see him. + +PISTOL: +'Tis 'semper idem,' for 'obsque hoc nihil est:' +'tis all in every part. + +SHALLOW: +'Tis so, indeed. + +PISTOL: +My knight, I will inflame thy noble liver, +And make thee rage. +Thy Doll, and Helen of thy noble thoughts, +Is in base durance and contagious prison; +Haled thither +By most mechanical and dirty hand: +Rouse up revenge from ebon den with fell +Alecto's snake, +For Doll is in. Pistol speaks nought but truth. + +FALSTAFF: +I will deliver her. + +PISTOL: +There roar'd the sea, and trumpet-clangor sounds. + +FALSTAFF: +God save thy grace, King Hal! my royal Hal! + +PISTOL: +The heavens thee guard and keep, most royal imp of fame! + +FALSTAFF: +God save thee, my sweet boy! + +KING HENRY IV: +My lord chief-justice, speak to that vain man. + +Lord Chief-Justice: +Have you your wits? know you what 'tis to speak? + +FALSTAFF: +My king! my Jove! I speak to thee, my heart! + +KING HENRY IV: +I know thee not, old man: fall to thy prayers; +How ill white hairs become a fool and jester! +I have long dream'd of such a kind of man, +So surfeit-swell'd, so old and so profane; +But, being awaked, I do despise my dream. +Make less thy body hence, and more thy grace; +Leave gormandizing; know the grave doth gape +For thee thrice wider than for other men. +Reply not to me with a fool-born jest: +Presume not that I am the thing I was; +For God doth know, so shall the world perceive, +That I have turn'd away my former self; +So will I those that kept me company. +When thou dost hear I am as I have been, +Approach me, and thou shalt be as thou wast, +The tutor and the feeder of my riots: +Till then, I banish thee, on pain of death, +As I have done the rest of my misleaders, +Not to come near our person by ten mile. +For competence of life I will allow you, +That lack of means enforce you not to evil: +And, as we hear you do reform yourselves, +We will, according to your strengths and qualities, +Give you advancement. Be it your charge, my lord, +To see perform'd the tenor of our word. Set on. + +FALSTAFF: +Master Shallow, I owe you a thousand pound. + +SHALLOW: +Yea, marry, Sir John; which I beseech you to let me +have home with me. + +FALSTAFF: +That can hardly be, Master Shallow. Do not you +grieve at this; I shall be sent for in private to +him: look you, he must seem thus to the world: +fear not your advancements; I will be the man yet +that shall make you great. + +SHALLOW: +I cannot well perceive how, unless you should give +me your doublet and stuff me out with straw. I +beseech you, good Sir John, let me have five hundred +of my thousand. + +FALSTAFF: +Sir, I will be as good as my word: this that you +heard was but a colour. + +SHALLOW: +A colour that I fear you will die in, Sir John. + +FALSTAFF: +Fear no colours: go with me to dinner: come, +Lieutenant Pistol; come, Bardolph: I shall be sent +for soon at night. + +Lord Chief-Justice: +Go, carry Sir John Falstaff to the Fleet: +Take all his company along with him. + +FALSTAFF: +My lord, my lord,-- + +Lord Chief-Justice: +I cannot now speak: I will hear you soon. +Take them away. + +PISTOL: +Si fortune me tormenta, spero contenta. + +LANCASTER: +I like this fair proceeding of the king's: +He hath intent his wonted followers +Shall all be very well provided for; +But all are banish'd till their conversations +Appear more wise and modest to the world. + +Lord Chief-Justice: +And so they are. + +LANCASTER: +The king hath call'd his parliament, my lord. + +Lord Chief-Justice: +He hath. + +LANCASTER: +I will lay odds that, ere this year expire, +We bear our civil swords and native fire +As far as France: I heard a bird so sing, +Whose music, to my thinking, pleased the king. +Come, will you hence? + + +Poet: +Good day, sir. + +Painter: +I am glad you're well. + +Poet: +I have not seen you long: how goes the world? + +Painter: +It wears, sir, as it grows. + +Poet: +Ay, that's well known: +But what particular rarity? what strange, +Which manifold record not matches? See, +Magic of bounty! all these spirits thy power +Hath conjured to attend. I know the merchant. + +Painter: +I know them both; th' other's a jeweller. + +Merchant: +O, 'tis a worthy lord. + +Jeweller: +Nay, that's most fix'd. + +Merchant: +A most incomparable man, breathed, as it were, +To an untirable and continuate goodness: +He passes. + +Jeweller:: +I have a jewel here-- + +Merchant: +O, pray, let's see't: for the Lord Timon, sir? + +Jeweller:: +If he will touch the estimate: but, for that-- + +Poet: + +Merchant: +'Tis a good form. + +Jeweller: +And rich: here is a water, look ye. + +Painter: +You are rapt, sir, in some work, some dedication +To the great lord. + +Poet: +A thing slipp'd idly from me. +Our poesy is as a gum, which oozes +From whence 'tis nourish'd: the fire i' the flint +Shows not till it be struck; our gentle flame +Provokes itself and like the current flies +Each bound it chafes. What have you there? + +Painter: +A picture, sir. When comes your book forth? + +Poet: +Upon the heels of my presentment, sir. +Let's see your piece. + +Painter: +'Tis a good piece. + +Poet: +So 'tis: this comes off well and excellent. + +Painter: +Indifferent. + +Poet: +Admirable: how this grace +Speaks his own standing! what a mental power +This eye shoots forth! how big imagination +Moves in this lip! to the dumbness of the gesture +One might interpret. + +Painter: +It is a pretty mocking of the life. +Here is a touch; is't good? + +Poet: +I will say of it, +It tutors nature: artificial strife +Lives in these touches, livelier than life. + +Painter: +How this lord is follow'd! + +Poet: +The senators of Athens: happy man! + +Painter: +Look, more! + +Poet: +You see this confluence, this great flood +of visitors. +I have, in this rough work, shaped out a man, +Whom this beneath world doth embrace and hug +With amplest entertainment: my free drift +Halts not particularly, but moves itself +In a wide sea of wax: no levell'd malice +Infects one comma in the course I hold; +But flies an eagle flight, bold and forth on, +Leaving no tract behind. + +Painter: +How shall I understand you? + +Poet: +I will unbolt to you. +You see how all conditions, how all minds, +As well of glib and slippery creatures as +Of grave and austere quality, tender down +Their services to Lord Timon: his large fortune +Upon his good and gracious nature hanging +Subdues and properties to his love and tendance +All sorts of hearts; yea, from the glass-faced flatterer +To Apemantus, that few things loves better +Than to abhor himself: even he drops down +The knee before him, and returns in peace +Most rich in Timon's nod. + +Painter: +I saw them speak together. + +Poet: +Sir, I have upon a high and pleasant hill +Feign'd Fortune to be throned: the base o' the mount +Is rank'd with all deserts, all kind of natures, +That labour on the bosom of this sphere +To propagate their states: amongst them all, +Whose eyes are on this sovereign lady fix'd, +One do I personate of Lord Timon's frame, +Whom Fortune with her ivory hand wafts to her; +Whose present grace to present slaves and servants +Translates his rivals. + +Painter: +'Tis conceived to scope. +This throne, this Fortune, and this hill, methinks, +With one man beckon'd from the rest below, +Bowing his head against the sleepy mount +To climb his happiness, would be well express'd +In our condition. + +Poet: +Nay, sir, but hear me on. +All those which were his fellows but of late, +Some better than his value, on the moment +Follow his strides, his lobbies fill with tendance, +Rain sacrificial whisperings in his ear, +Make sacred even his stirrup, and through him +Drink the free air. + +Painter: +Ay, marry, what of these? + +Poet: +When Fortune in her shift and change of mood +Spurns down her late beloved, all his dependants +Which labour'd after him to the mountain's top +Even on their knees and hands, let him slip down, +Not one accompanying his declining foot. + +Painter: +'Tis common: +A thousand moral paintings I can show +That shall demonstrate these quick blows of Fortune's +More pregnantly than words. Yet you do well +To show Lord Timon that mean eyes have seen +The foot above the head. + +TIMON: +Imprison'd is he, say you? + +Messenger: +Ay, my good lord: five talents is his debt, +His means most short, his creditors most strait: +Your honourable letter he desires +To those have shut him up; which failing, +Periods his comfort. + +TIMON: +Noble Ventidius! Well; +I am not of that feather to shake off +My friend when he must need me. I do know him +A gentleman that well deserves a help: +Which he shall have: I'll pay the debt, +and free him. + +Messenger: +Your lordship ever binds him. + +TIMON: +Commend me to him: I will send his ransom; +And being enfranchised, bid him come to me. +'Tis not enough to help the feeble up, +But to support him after. Fare you well. + +Messenger: +All happiness to your honour! + +Old Athenian: +Lord Timon, hear me speak. + +TIMON: +Freely, good father. + +Old Athenian: +Thou hast a servant named Lucilius. + +TIMON: +I have so: what of him? + +Old Athenian: +Most noble Timon, call the man before thee. + +TIMON: +Attends he here, or no? Lucilius! + +LUCILIUS: +Here, at your lordship's service. + +Old Athenian: +This fellow here, Lord Timon, this thy creature, +By night frequents my house. I am a man +That from my first have been inclined to thrift; +And my estate deserves an heir more raised +Than one which holds a trencher. + +TIMON: +Well; what further? + +Old Athenian: +One only daughter have I, no kin else, +On whom I may confer what I have got: +The maid is fair, o' the youngest for a bride, +And I have bred her at my dearest cost +In qualities of the best. This man of thine +Attempts her love: I prithee, noble lord, +Join with me to forbid him her resort; +Myself have spoke in vain. + +TIMON: +The man is honest. + +Old Athenian: +Therefore he will be, Timon: +His honesty rewards him in itself; +It must not bear my daughter. + +TIMON: +Does she love him? + +Old Athenian: +She is young and apt: +Our own precedent passions do instruct us +What levity's in youth. + +TIMON: + +LUCILIUS: +Ay, my good lord, and she accepts of it. + +Old Athenian: +If in her marriage my consent be missing, +I call the gods to witness, I will choose +Mine heir from forth the beggars of the world, +And dispossess her all. + +TIMON: +How shall she be endow'd, +if she be mated with an equal husband? + +Old Athenian: +Three talents on the present; in future, all. + +TIMON: +This gentleman of mine hath served me long: +To build his fortune I will strain a little, +For 'tis a bond in men. Give him thy daughter: +What you bestow, in him I'll counterpoise, +And make him weigh with her. + +Old Athenian: +Most noble lord, +Pawn me to this your honour, she is his. + +TIMON: +My hand to thee; mine honour on my promise. + +LUCILIUS: +Humbly I thank your lordship: never may +The state or fortune fall into my keeping, +Which is not owed to you! + +Poet: +Vouchsafe my labour, and long live your lordship! + +TIMON: +I thank you; you shall hear from me anon: +Go not away. What have you there, my friend? + +Painter: +A piece of painting, which I do beseech +Your lordship to accept. + +TIMON: +Painting is welcome. +The painting is almost the natural man; +or since dishonour traffics with man's nature, +He is but outside: these pencill'd figures are +Even such as they give out. I like your work; +And you shall find I like it: wait attendance +Till you hear further from me. + +Painter: +The gods preserve ye! + +TIMON: +Well fare you, gentleman: give me your hand; +We must needs dine together. Sir, your jewel +Hath suffer'd under praise. + +Jeweller: +What, my lord! dispraise? + +TIMON: +A more satiety of commendations. +If I should pay you for't as 'tis extoll'd, +It would unclew me quite. + +Jeweller: +My lord, 'tis rated +As those which sell would give: but you well know, +Things of like value differing in the owners +Are prized by their masters: believe't, dear lord, +You mend the jewel by the wearing it. + +TIMON: +Well mock'd. + +Merchant: +No, my good lord; he speaks the common tongue, +Which all men speak with him. + +TIMON: +Look, who comes here: will you be chid? + +Jeweller: +We'll bear, with your lordship. + +Merchant: +He'll spare none. + +TIMON: +Good morrow to thee, gentle Apemantus! + +APEMANTUS: +Till I be gentle, stay thou for thy good morrow; +When thou art Timon's dog, and these knaves honest. + +TIMON: +Why dost thou call them knaves? thou know'st them not. + +APEMANTUS: +Are they not Athenians? + +TIMON: +Yes. + +APEMANTUS: +Then I repent not. + +Jeweller: +You know me, Apemantus? + +APEMANTUS: +Thou know'st I do: I call'd thee by thy name. + +TIMON: +Thou art proud, Apemantus. + +APEMANTUS: +Of nothing so much as that I am not like Timon. + +TIMON: +Whither art going? + +APEMANTUS: +To knock out an honest Athenian's brains. + +TIMON: +That's a deed thou'lt die for. + +APEMANTUS: +Right, if doing nothing be death by the law. + +TIMON: +How likest thou this picture, Apemantus? + +APEMANTUS: +The best, for the innocence. + +TIMON: +Wrought he not well that painted it? + +APEMANTUS: +He wrought better that made the painter; and yet +he's but a filthy piece of work. + +Painter: +You're a dog. + +APEMANTUS: +Thy mother's of my generation: what's she, if I be a dog? + +TIMON: +Wilt dine with me, Apemantus? + +APEMANTUS: +No; I eat not lords. + +TIMON: +An thou shouldst, thou 'ldst anger ladies. + +APEMANTUS: +O, they eat lords; so they come by great bellies. + +TIMON: +That's a lascivious apprehension. + +APEMANTUS: +So thou apprehendest it: take it for thy labour. + +TIMON: +How dost thou like this jewel, Apemantus? + +APEMANTUS: +Not so well as plain-dealing, which will not cost a +man a doit. + +TIMON: +What dost thou think 'tis worth? + +APEMANTUS: +Not worth my thinking. How now, poet! + +Poet: +How now, philosopher! + +APEMANTUS: +Thou liest. + +Poet: +Art not one? + +APEMANTUS: +Yes. + +Poet: +Then I lie not. + +APEMANTUS: +Art not a poet? + +Poet: +Yes. + +APEMANTUS: +Then thou liest: look in thy last work, where thou +hast feigned him a worthy fellow. + +Poet: +That's not feigned; he is so. + +APEMANTUS: +Yes, he is worthy of thee, and to pay thee for thy +labour: he that loves to be flattered is worthy o' +the flatterer. Heavens, that I were a lord! + +TIMON: +What wouldst do then, Apemantus? + +APEMANTUS: +E'en as Apemantus does now; hate a lord with my heart. + +TIMON: +What, thyself? + +APEMANTUS: +Ay. + +TIMON: +Wherefore? + +APEMANTUS: +That I had no angry wit to be a lord. +Art not thou a merchant? + +Merchant: +Ay, Apemantus. + +APEMANTUS: +Traffic confound thee, if the gods will not! + +Merchant: +If traffic do it, the gods do it. + +APEMANTUS: +Traffic's thy god; and thy god confound thee! + +TIMON: +What trumpet's that? + +Messenger: +'Tis Alcibiades, and some twenty horse, +All of companionship. + +TIMON: +Pray, entertain them; give them guide to us. +You must needs dine with me: go not you hence +Till I have thank'd you: when dinner's done, +Show me this piece. I am joyful of your sights. +Most welcome, sir! + +APEMANTUS: +So, so, there! +Aches contract and starve your supple joints! +That there should be small love 'mongst these +sweet knaves, +And all this courtesy! The strain of man's bred out +Into baboon and monkey. + +ALCIBIADES: +Sir, you have saved my longing, and I feed +Most hungerly on your sight. + +TIMON: +Right welcome, sir! +Ere we depart, we'll share a bounteous time +In different pleasures. Pray you, let us in. + +First Lord: +What time o' day is't, Apemantus? + +APEMANTUS: +Time to be honest. + +First Lord: +That time serves still. + +APEMANTUS: +The more accursed thou, that still omitt'st it. + +Second Lord: +Thou art going to Lord Timon's feast? + +APEMANTUS: +Ay, to see meat fill knaves and wine heat fools. + +Second Lord: +Fare thee well, fare thee well. + +APEMANTUS: +Thou art a fool to bid me farewell twice. + +Second Lord: +Why, Apemantus? + +APEMANTUS: +Shouldst have kept one to thyself, for I mean to +give thee none. + +First Lord: +Hang thyself! + +APEMANTUS: +No, I will do nothing at thy bidding: make thy +requests to thy friend. + +Second Lord: +Away, unpeaceable dog, or I'll spurn thee hence! + +APEMANTUS: +I will fly, like a dog, the heels o' the ass. + +First Lord: +He's opposite to humanity. Come, shall we in, +And taste Lord Timon's bounty? he outgoes +The very heart of kindness. + +Second Lord: +He pours it out; Plutus, the god of gold, +Is but his steward: no meed, but he repays +Sevenfold above itself; no gift to him, +But breeds the giver a return exceeding +All use of quittance. + +First Lord: +The noblest mind he carries +That ever govern'd man. + +Second Lord: +Long may he live in fortunes! Shall we in? + +First Lord: +I'll keep you company. + +VENTIDIUS: +Most honour'd Timon, +It hath pleased the gods to remember my father's age, +And call him to long peace. +He is gone happy, and has left me rich: +Then, as in grateful virtue I am bound +To your free heart, I do return those talents, +Doubled with thanks and service, from whose help +I derived liberty. + +TIMON: +O, by no means, +Honest Ventidius; you mistake my love: +I gave it freely ever; and there's none +Can truly say he gives, if he receives: +If our betters play at that game, we must not dare +To imitate them; faults that are rich are fair. + +VENTIDIUS: +A noble spirit! + +TIMON: +Nay, my lords, +Ceremony was but devised at first +To set a gloss on faint deeds, hollow welcomes, +Recanting goodness, sorry ere 'tis shown; +But where there is true friendship, there needs none. +Pray, sit; more welcome are ye to my fortunes +Than my fortunes to me. + +First Lord: +My lord, we always have confess'd it. + +APEMANTUS: +Ho, ho, confess'd it! hang'd it, have you not? + +TIMON: +O, Apemantus, you are welcome. + +APEMANTUS: +No; +You shall not make me welcome: +I come to have thee thrust me out of doors. + +TIMON: +Fie, thou'rt a churl; ye've got a humour there +Does not become a man: 'tis much to blame. +They say, my lords, 'ira furor brevis est;' but yond +man is ever angry. Go, let him have a table by +himself, for he does neither affect company, nor is +he fit for't, indeed. + +APEMANTUS: +Let me stay at thine apperil, Timon: I come to +observe; I give thee warning on't. + +TIMON: +I take no heed of thee; thou'rt an Athenian, +therefore welcome: I myself would have no power; +prithee, let my meat make thee silent. + +APEMANTUS: +I scorn thy meat; 'twould choke me, for I should +ne'er flatter thee. O you gods, what a number of +men eat Timon, and he sees 'em not! It grieves me +to see so many dip their meat in one man's blood; +and all the madness is, he cheers them up too. +I wonder men dare trust themselves with men: +Methinks they should invite them without knives; +Good for their meat, and safer for their lives. +There's much example for't; the fellow that sits +next him now, parts bread with him, pledges the +breath of him in a divided draught, is the readiest +man to kill him: 't has been proved. If I were a +huge man, I should fear to drink at meals; +Lest they should spy my windpipe's dangerous notes: +Great men should drink with harness on their throats. + +TIMON: +My lord, in heart; and let the health go round. + +Second Lord: +Let it flow this way, my good lord. + +APEMANTUS: +Flow this way! A brave fellow! he keeps his tides +well. Those healths will make thee and thy state +look ill, Timon. Here's that which is too weak to +be a sinner, honest water, which ne'er left man i' the mire: +This and my food are equals; there's no odds: +Feasts are too proud to give thanks to the gods. +Apemantus' grace. +Immortal gods, I crave no pelf; +I pray for no man but myself: +Grant I may never prove so fond, +To trust man on his oath or bond; +Or a harlot, for her weeping; +Or a dog, that seems a-sleeping: +Or a keeper with my freedom; +Or my friends, if I should need 'em. +Amen. So fall to't: +Rich men sin, and I eat root. +Much good dich thy good heart, Apemantus! + +TIMON: +Captain Alcibiades, your heart's in the field now. + +ALCIBIADES: +My heart is ever at your service, my lord. + +TIMON: +You had rather be at a breakfast of enemies than a +dinner of friends. + +ALCIBIADES: +So the were bleeding-new, my lord, there's no meat +like 'em: I could wish my best friend at such a feast. + +APEMANTUS: +Would all those fatterers were thine enemies then, +that then thou mightst kill 'em and bid me to 'em! + +First Lord: +Might we but have that happiness, my lord, that you +would once use our hearts, whereby we might express +some part of our zeals, we should think ourselves +for ever perfect. + +TIMON: +O, no doubt, my good friends, but the gods +themselves have provided that I shall have much help +from you: how had you been my friends else? why +have you that charitable title from thousands, did +not you chiefly belong to my heart? I have told +more of you to myself than you can with modesty +speak in your own behalf; and thus far I confirm +you. O you gods, think I, what need we have any +friends, if we should ne'er have need of 'em? they +were the most needless creatures living, should we +ne'er have use for 'em, and would most resemble +sweet instruments hung up in cases that keep their +sounds to themselves. Why, I have often wished +myself poorer, that I might come nearer to you. We +are born to do benefits: and what better or +properer can we can our own than the riches of our +friends? O, what a precious comfort 'tis, to have +so many, like brothers, commanding one another's +fortunes! O joy, e'en made away ere 't can be born! +Mine eyes cannot hold out water, methinks: to +forget their faults, I drink to you. + +APEMANTUS: +Thou weepest to make them drink, Timon. + +Second Lord: +Joy had the like conception in our eyes +And at that instant like a babe sprung up. + +APEMANTUS: +Ho, ho! I laugh to think that babe a bastard. + +Third Lord: +I promise you, my lord, you moved me much. + +APEMANTUS: +Much! + +TIMON: +What means that trump? +How now? + +Servant: +Please you, my lord, there are certain +ladies most desirous of admittance. + +TIMON: +Ladies! what are their wills? + +Servant: +There comes with them a forerunner, my lord, which +bears that office, to signify their pleasures. + +TIMON: +I pray, let them be admitted. + +Cupid: +Hail to thee, worthy Timon, and to all +That of his bounties taste! The five best senses +Acknowledge thee their patron; and come freely +To gratulate thy plenteous bosom: th' ear, +Taste, touch and smell, pleased from thy tale rise; +They only now come but to feast thine eyes. + +TIMON: +They're welcome all; let 'em have kind admittance: +Music, make their welcome! + +First Lord: +You see, my lord, how ample you're beloved. + +APEMANTUS: +Hoy-day, what a sweep of vanity comes this way! +They dance! they are mad women. +Like madness is the glory of this life. +As this pomp shows to a little oil and root. +We make ourselves fools, to disport ourselves; +And spend our flatteries, to drink those men +Upon whose age we void it up again, +With poisonous spite and envy. +Who lives that's not depraved or depraves? +Who dies, that bears not one spurn to their graves +Of their friends' gift? +I should fear those that dance before me now +Would one day stamp upon me: 't has been done; +Men shut their doors against a setting sun. + +TIMON: +You have done our pleasures much grace, fair ladies, +Set a fair fashion on our entertainment, +Which was not half so beautiful and kind; +You have added worth unto 't and lustre, +And entertain'd me with mine own device; +I am to thank you for 't. + +First Lady: +My lord, you take us even at the best. + +APEMANTUS: +'Faith, for the worst is filthy; and would not hold +taking, I doubt me. + +TIMON: +Ladies, there is an idle banquet attends you: +Please you to dispose yourselves. + +All Ladies: +Most thankfully, my lord. + +TIMON: +Flavius. + +FLAVIUS: +My lord? + +TIMON: +The little casket bring me hither. + +FLAVIUS: +Yes, my lord. More jewels yet! +There is no crossing him in 's humour; +Else I should tell him,--well, i' faith I should, +When all's spent, he 'ld be cross'd then, an he could. +'Tis pity bounty had not eyes behind, +That man might ne'er be wretched for his mind. + +First Lord: +Where be our men? + +Servant: +Here, my lord, in readiness. + +Second Lord: +Our horses! + +TIMON: +O my friends, +I have one word to say to you: look you, my good lord, +I must entreat you, honour me so much +As to advance this jewel; accept it and wear it, +Kind my lord. + +First Lord: +I am so far already in your gifts,-- + +All: +So are we all. + +Servant: +My lord, there are certain nobles of the senate +Newly alighted, and come to visit you. + +TIMON: +They are fairly welcome. + +FLAVIUS: +I beseech your honour, +Vouchsafe me a word; it does concern you near. + +TIMON: +Near! why then, another time I'll hear thee: +I prithee, let's be provided to show them +entertainment. + +FLAVIUS: + +Second Servant: +May it please your honour, Lord Lucius, +Out of his free love, hath presented to you +Four milk-white horses, trapp'd in silver. + +TIMON: +I shall accept them fairly; let the presents +Be worthily entertain'd. +How now! what news? + +Third Servant: +Please you, my lord, that honourable +gentleman, Lord Lucullus, entreats your company +to-morrow to hunt with him, and has sent your honour +two brace of greyhounds. + +TIMON: +I'll hunt with him; and let them be received, +Not without fair reward. + +FLAVIUS: + +TIMON: +You do yourselves +Much wrong, you bate too much of your own merits: +Here, my lord, a trifle of our love. + +Second Lord: +With more than common thanks I will receive it. + +Third Lord: +O, he's the very soul of bounty! + +TIMON: +And now I remember, my lord, you gave +Good words the other day of a bay courser +I rode on: it is yours, because you liked it. + +Second Lord: +O, I beseech you, pardon me, my lord, in that. + +TIMON: +You may take my word, my lord; I know, no man +Can justly praise but what he does affect: +I weigh my friend's affection with mine own; +I'll tell you true. I'll call to you. + +All Lords: +O, none so welcome. + +TIMON: +I take all and your several visitations +So kind to heart, 'tis not enough to give; +Methinks, I could deal kingdoms to my friends, +And ne'er be weary. Alcibiades, +Thou art a soldier, therefore seldom rich; +It comes in charity to thee: for all thy living +Is 'mongst the dead, and all the lands thou hast +Lie in a pitch'd field. + +ALCIBIADES: +Ay, defiled land, my lord. + +First Lord: +We are so virtuously bound-- + +TIMON: +And so +Am I to you. + +Second Lord: +So infinitely endear'd-- + +TIMON: +All to you. Lights, more lights! + +First Lord: +The best of happiness, +Honour and fortunes, keep with you, Lord Timon! + +TIMON: +Ready for his friends. + +APEMANTUS: +What a coil's here! +Serving of becks and jutting-out of bums! +I doubt whether their legs be worth the sums +That are given for 'em. Friendship's full of dregs: +Methinks, false hearts should never have sound legs, +Thus honest fools lay out their wealth on court'sies. + +TIMON: +Now, Apemantus, if thou wert not sullen, I would be +good to thee. + +APEMANTUS: +No, I'll nothing: for if I should be bribed too, +there would be none left to rail upon thee, and then +thou wouldst sin the faster. Thou givest so long, +Timon, I fear me thou wilt give away thyself in +paper shortly: what need these feasts, pomps and +vain-glories? + +TIMON: +Nay, an you begin to rail on society once, I am +sworn not to give regard to you. Farewell; and come +with better music. + +APEMANTUS: +So: +Thou wilt not hear me now; thou shalt not then: +I'll lock thy heaven from thee. +O, that men's ears should be +To counsel deaf, but not to flattery! + +Senator: +And late, five thousand: to Varro and to Isidore +He owes nine thousand; besides my former sum, +Which makes it five and twenty. Still in motion +Of raging waste? It cannot hold; it will not. +If I want gold, steal but a beggar's dog, +And give it Timon, why, the dog coins gold. +If I would sell my horse, and buy twenty more +Better than he, why, give my horse to Timon, +Ask nothing, give it him, it foals me, straight, +And able horses. No porter at his gate, +But rather one that smiles and still invites +All that pass by. It cannot hold: no reason +Can found his state in safety. Caphis, ho! +Caphis, I say! + +CAPHIS: +Here, sir; what is your pleasure? + +Senator: +Get on your cloak, and haste you to Lord Timon; +Importune him for my moneys; be not ceased +With slight denial, nor then silenced when-- +'Commend me to your master'--and the cap +Plays in the right hand, thus: but tell him, +My uses cry to me, I must serve my turn +Out of mine own; his days and times are past +And my reliances on his fracted dates +Have smit my credit: I love and honour him, +But must not break my back to heal his finger; +Immediate are my needs, and my relief +Must not be toss'd and turn'd to me in words, +But find supply immediate. Get you gone: +Put on a most importunate aspect, +A visage of demand; for, I do fear, +When every feather sticks in his own wing, +Lord Timon will be left a naked gull, +Which flashes now a phoenix. Get you gone. + +CAPHIS: +I go, sir. + +Senator: +'I go, sir!'--Take the bonds along with you, +And have the dates in contempt. + +CAPHIS: +I will, sir. + +Senator: +Go. + +FLAVIUS: +No care, no stop! so senseless of expense, +That he will neither know how to maintain it, +Nor cease his flow of riot: takes no account +How things go from him, nor resumes no care +Of what is to continue: never mind +Was to be so unwise, to be so kind. +What shall be done? he will not hear, till feel: +I must be round with him, now he comes from hunting. +Fie, fie, fie, fie! + +CAPHIS: +Good even, Varro: what, +You come for money? + +Varro's Servant: +Is't not your business too? + +CAPHIS: +It is: and yours too, Isidore? + +Isidore's Servant: +It is so. + +CAPHIS: +Would we were all discharged! + +Varro's Servant: +I fear it. + +CAPHIS: +Here comes the lord. + +TIMON: +So soon as dinner's done, we'll forth again, +My Alcibiades. With me? what is your will? + +CAPHIS: +My lord, here is a note of certain dues. + +TIMON: +Dues! Whence are you? + +CAPHIS: +Of Athens here, my lord. + +TIMON: +Go to my steward. + +CAPHIS: +Please it your lordship, he hath put me off +To the succession of new days this month: +My master is awaked by great occasion +To call upon his own, and humbly prays you +That with your other noble parts you'll suit +In giving him his right. + +TIMON: +Mine honest friend, +I prithee, but repair to me next morning. + +CAPHIS: +Nay, good my lord,-- + +TIMON: +Contain thyself, good friend. + +Varro's Servant: +One Varro's servant, my good lord,-- + +Isidore's Servant: +From Isidore; +He humbly prays your speedy payment. + +CAPHIS: +If you did know, my lord, my master's wants-- + +Varro's Servant: +'Twas due on forfeiture, my lord, six weeks And past. + +Isidore's Servant: +Your steward puts me off, my lord; +And I am sent expressly to your lordship. + +TIMON: +Give me breath. +I do beseech you, good my lords, keep on; +I'll wait upon you instantly. +Come hither: pray you, +How goes the world, that I am thus encounter'd +With clamourous demands of date-broke bonds, +And the detention of long-since-due debts, +Against my honour? + +FLAVIUS: +Please you, gentlemen, +The time is unagreeable to this business: +Your importunacy cease till after dinner, +That I may make his lordship understand +Wherefore you are not paid. + +TIMON: +Do so, my friends. See them well entertain'd. + +FLAVIUS: +Pray, draw near. + +CAPHIS: +Stay, stay, here comes the fool with Apemantus: +let's ha' some sport with 'em. + +Varro's Servant: +Hang him, he'll abuse us. + +Isidore's Servant: +A plague upon him, dog! + +Varro's Servant: +How dost, fool? + +APEMANTUS: +Dost dialogue with thy shadow? + +Varro's Servant: +I speak not to thee. + +APEMANTUS: +No,'tis to thyself. +Come away. + +Isidore's Servant: +There's the fool hangs on your back already. + +APEMANTUS: +No, thou stand'st single, thou'rt not on him yet. + +CAPHIS: +Where's the fool now? + +APEMANTUS: +He last asked the question. Poor rogues, and +usurers' men! bawds between gold and want! + +All Servants: +What are we, Apemantus? + +APEMANTUS: +Asses. + +All Servants: +Why? + +APEMANTUS: +That you ask me what you are, and do not know +yourselves. Speak to 'em, fool. + +Fool: +How do you, gentlemen? + +All Servants: +Gramercies, good fool: how does your mistress? + +Fool: +She's e'en setting on water to scald such chickens +as you are. Would we could see you at Corinth! + +APEMANTUS: +Good! gramercy. + +Fool: +Look you, here comes my mistress' page. + +Page: + +APEMANTUS: +Would I had a rod in my mouth, that I might answer +thee profitably. + +Page: +Prithee, Apemantus, read me the superscription of +these letters: I know not which is which. + +APEMANTUS: +Canst not read? + +Page: +No. + +APEMANTUS: +There will little learning die then, that day thou +art hanged. This is to Lord Timon; this to +Alcibiades. Go; thou wast born a bastard, and thou't +die a bawd. + +Page: +Thou wast whelped a dog, and thou shalt famish a +dog's death. Answer not; I am gone. + +APEMANTUS: +E'en so thou outrunnest grace. Fool, I will go with +you to Lord Timon's. + +Fool: +Will you leave me there? + +APEMANTUS: +If Timon stay at home. You three serve three usurers? + +All Servants: +Ay; would they served us! + +APEMANTUS: +So would I,--as good a trick as ever hangman served thief. + +Fool: +Are you three usurers' men? + +All Servants: +Ay, fool. + +Fool: +I think no usurer but has a fool to his servant: my +mistress is one, and I am her fool. When men come +to borrow of your masters, they approach sadly, and +go away merry; but they enter my mistress' house +merrily, and go away sadly: the reason of this? + +Varro's Servant: +I could render one. + +APEMANTUS: +Do it then, that we may account thee a whoremaster +and a knave; which not-withstanding, thou shalt be +no less esteemed. + +Varro's Servant: +What is a whoremaster, fool? + +Fool: +A fool in good clothes, and something like thee. +'Tis a spirit: sometime't appears like a lord; +sometime like a lawyer; sometime like a philosopher, +with two stones moe than's artificial one: he is +very often like a knight; and, generally, in all +shapes that man goes up and down in from fourscore +to thirteen, this spirit walks in. + +Varro's Servant: +Thou art not altogether a fool. + +Fool: +Nor thou altogether a wise man: as much foolery as +I have, so much wit thou lackest. + +APEMANTUS: +That answer might have become Apemantus. + +All Servants: +Aside, aside; here comes Lord Timon. + +APEMANTUS: +Come with me, fool, come. + +Fool: +I do not always follow lover, elder brother and +woman; sometime the philosopher. + +FLAVIUS: +Pray you, walk near: I'll speak with you anon. + +TIMON: +You make me marvel: wherefore ere this time +Had you not fully laid my state before me, +That I might so have rated my expense, +As I had leave of means? + +FLAVIUS: +You would not hear me, +At many leisures I proposed. + +TIMON: +Go to: +Perchance some single vantages you took. +When my indisposition put you back: +And that unaptness made your minister, +Thus to excuse yourself. + +FLAVIUS: +O my good lord, +At many times I brought in my accounts, +Laid them before you; you would throw them off, +And say, you found them in mine honesty. +When, for some trifling present, you have bid me +Return so much, I have shook my head and wept; +Yea, 'gainst the authority of manners, pray'd you +To hold your hand more close: I did endure +Not seldom, nor no slight cheques, when I have +Prompted you in the ebb of your estate +And your great flow of debts. My loved lord, +Though you hear now, too late--yet now's a time-- +The greatest of your having lacks a half +To pay your present debts. + +TIMON: +Let all my land be sold. + +FLAVIUS: +'Tis all engaged, some forfeited and gone; +And what remains will hardly stop the mouth +Of present dues: the future comes apace: +What shall defend the interim? and at length +How goes our reckoning? + +TIMON: +To Lacedaemon did my land extend. + +FLAVIUS: +O my good lord, the world is but a word: +Were it all yours to give it in a breath, +How quickly were it gone! + +TIMON: +You tell me true. + +FLAVIUS: +If you suspect my husbandry or falsehood, +Call me before the exactest auditors +And set me on the proof. So the gods bless me, +When all our offices have been oppress'd +With riotous feeders, when our vaults have wept +With drunken spilth of wine, when every room +Hath blazed with lights and bray'd with minstrelsy, +I have retired me to a wasteful cock, +And set mine eyes at flow. + +TIMON: +Prithee, no more. + +FLAVIUS: +Heavens, have I said, the bounty of this lord! +How many prodigal bits have slaves and peasants +This night englutted! Who is not Timon's? +What heart, head, sword, force, means, but is +Lord Timon's? +Great Timon, noble, worthy, royal Timon! +Ah, when the means are gone that buy this praise, +The breath is gone whereof this praise is made: +Feast-won, fast-lost; one cloud of winter showers, +These flies are couch'd. + +TIMON: +Come, sermon me no further: +No villanous bounty yet hath pass'd my heart; +Unwisely, not ignobly, have I given. +Why dost thou weep? Canst thou the conscience lack, +To think I shall lack friends? Secure thy heart; +If I would broach the vessels of my love, +And try the argument of hearts by borrowing, +Men and men's fortunes could I frankly use +As I can bid thee speak. + +FLAVIUS: +Assurance bless your thoughts! + +TIMON: +And, in some sort, these wants of mine are crown'd, +That I account them blessings; for by these +Shall I try friends: you shall perceive how you +Mistake my fortunes; I am wealthy in my friends. +Within there! Flaminius! Servilius! + +Servants: +My lord? my lord? + +TIMON: +I will dispatch you severally; you to Lord Lucius; +to Lord Lucullus you: I hunted with his honour +to-day: you, to Sempronius: commend me to their +loves, and, I am proud, say, that my occasions have +found time to use 'em toward a supply of money: let +the request be fifty talents. + +FLAMINIUS: +As you have said, my lord. + +FLAVIUS: + +TIMON: +Go you, sir, to the senators-- +Of whom, even to the state's best health, I have +Deserved this hearing--bid 'em send o' the instant +A thousand talents to me. + +FLAVIUS: +I have been bold-- +For that I knew it the most general way-- +To them to use your signet and your name; +But they do shake their heads, and I am here +No richer in return. + +TIMON: +Is't true? can't be? + +FLAVIUS: +They answer, in a joint and corporate voice, +That now they are at fall, want treasure, cannot +Do what they would; are sorry--you are honourable,-- +But yet they could have wish'd--they know not-- +Something hath been amiss--a noble nature +May catch a wrench--would all were well--'tis pity;-- +And so, intending other serious matters, +After distasteful looks and these hard fractions, +With certain half-caps and cold-moving nods +They froze me into silence. + +TIMON: +You gods, reward them! +Prithee, man, look cheerly. These old fellows +Have their ingratitude in them hereditary: +Their blood is caked, 'tis cold, it seldom flows; +'Tis lack of kindly warmth they are not kind; +And nature, as it grows again toward earth, +Is fashion'd for the journey, dull and heavy. +Go to Ventidius. +Prithee, be not sad, +Thou art true and honest; ingeniously I speak. +No blame belongs to thee. +Ventidius lately +Buried his father; by whose death he's stepp'd +Into a great estate: when he was poor, +Imprison'd and in scarcity of friends, +I clear'd him with five talents: greet him from me; +Bid him suppose some good necessity +Touches his friend, which craves to be remember'd +With those five talents. +That had, give't these fellows +To whom 'tis instant due. Ne'er speak, or think, +That Timon's fortunes 'mong his friends can sink. + +FLAVIUS: +I would I could not think it: that thought is +bounty's foe; +Being free itself, it thinks all others so. + +Servant: +I have told my lord of you; he is coming down to you. + +FLAMINIUS: +I thank you, sir. + +Servant: +Here's my lord. + +LUCULLUS: + +FLAMINIUS: +His health is well sir. + +LUCULLUS: +I am right glad that his health is well, sir: and +what hast thou there under thy cloak, pretty Flaminius? + +FLAMINIUS: +'Faith, nothing but an empty box, sir; which, in my +lord's behalf, I come to entreat your honour to +supply; who, having great and instant occasion to +use fifty talents, hath sent to your lordship to +furnish him, nothing doubting your present +assistance therein. + +LUCULLUS: +La, la, la, la! 'nothing doubting,' says he? Alas, +good lord! a noble gentleman 'tis, if he would not +keep so good a house. Many a time and often I ha' +dined with him, and told him on't, and come again to +supper to him, of purpose to have him spend less, +and yet he would embrace no counsel, take no warning +by my coming. Every man has his fault, and honesty +is his: I ha' told him on't, but I could ne'er get +him from't. + +Servant: +Please your lordship, here is the wine. + +LUCULLUS: +Flaminius, I have noted thee always wise. Here's to thee. + +FLAMINIUS: +Your lordship speaks your pleasure. + +LUCULLUS: +I have observed thee always for a towardly prompt +spirit--give thee thy due--and one that knows what +belongs to reason; and canst use the time well, if +the time use thee well: good parts in thee. +Get you gone, sirrah. +Draw nearer, honest Flaminius. Thy lord's a +bountiful gentleman: but thou art wise; and thou +knowest well enough, although thou comest to me, +that this is no time to lend money, especially upon +bare friendship, without security. Here's three +solidares for thee: good boy, wink at me, and say +thou sawest me not. Fare thee well. + +FLAMINIUS: +Is't possible the world should so much differ, +And we alive that lived? Fly, damned baseness, +To him that worships thee! + +LUCULLUS: +Ha! now I see thou art a fool, and fit for thy master. + +FLAMINIUS: +May these add to the number that may scald thee! +Let moulten coin be thy damnation, +Thou disease of a friend, and not himself! +Has friendship such a faint and milky heart, +It turns in less than two nights? O you gods, +I feel master's passion! this slave, +Unto his honour, has my lord's meat in him: +Why should it thrive and turn to nutriment, +When he is turn'd to poison? +O, may diseases only work upon't! +And, when he's sick to death, let not that part of nature +Which my lord paid for, be of any power +To expel sickness, but prolong his hour! + +LUCILIUS: +Who, the Lord Timon? he is my very good friend, and +an honourable gentleman. + +First Stranger: +We know him for no less, though we are but strangers +to him. But I can tell you one thing, my lord, and +which I hear from common rumours: now Lord Timon's +happy hours are done and past, and his estate +shrinks from him. + +LUCILIUS: +Fie, no, do not believe it; he cannot want for money. + +Second Stranger: +But believe you this, my lord, that, not long ago, +one of his men was with the Lord Lucullus to borrow +so many talents, nay, urged extremely for't and +showed what necessity belonged to't, and yet was denied. + +LUCILIUS: +How! + +Second Stranger: +I tell you, denied, my lord. + +LUCILIUS: +What a strange case was that! now, before the gods, +I am ashamed on't. Denied that honourable man! +there was very little honour showed in't. For my own +part, I must needs confess, I have received some +small kindnesses from him, as money, plate, jewels +and such-like trifles, nothing comparing to his; +yet, had he mistook him and sent to me, I should +ne'er have denied his occasion so many talents. + +SERVILIUS: +See, by good hap, yonder's my lord; +I have sweat to see his honour. My honoured lord,-- + +LUCILIUS: +Servilius! you are kindly met, sir. Fare thee well: +commend me to thy honourable virtuous lord, my very +exquisite friend. + +SERVILIUS: +May it please your honour, my lord hath sent-- + +LUCILIUS: +Ha! what has he sent? I am so much endeared to +that lord; he's ever sending: how shall I thank +him, thinkest thou? And what has he sent now? + +SERVILIUS: +Has only sent his present occasion now, my lord; +requesting your lordship to supply his instant use +with so many talents. + +LUCILIUS: +I know his lordship is but merry with me; +He cannot want fifty five hundred talents. + +SERVILIUS: +But in the mean time he wants less, my lord. +If his occasion were not virtuous, +I should not urge it half so faithfully. + +LUCILIUS: +Dost thou speak seriously, Servilius? + +SERVILIUS: +Upon my soul,'tis true, sir. + +LUCILIUS: +What a wicked beast was I to disfurnish myself +against such a good time, when I might ha' shown +myself honourable! how unluckily it happened, that I +should purchase the day before for a little part, +and undo a great deal of honoured! Servilius, now, +before the gods, I am not able to do,--the more +beast, I say:--I was sending to use Lord Timon +myself, these gentlemen can witness! but I would +not, for the wealth of Athens, I had done't now. +Commend me bountifully to his good lordship; and I +hope his honour will conceive the fairest of me, +because I have no power to be kind: and tell him +this from me, I count it one of my greatest +afflictions, say, that I cannot pleasure such an +honourable gentleman. Good Servilius, will you +befriend me so far, as to use mine own words to him? + +SERVILIUS: +Yes, sir, I shall. + +LUCILIUS: +I'll look you out a good turn, Servilius. +True as you said, Timon is shrunk indeed; +And he that's once denied will hardly speed. + +First Stranger: +Do you observe this, Hostilius? + +Second Stranger: +Ay, too well. + +First Stranger: +Why, this is the world's soul; and just of the +same piece +Is every flatterer's spirit. Who can call him +His friend that dips in the same dish? for, in +My knowing, Timon has been this lord's father, +And kept his credit with his purse, +Supported his estate; nay, Timon's money +Has paid his men their wages: he ne'er drinks, +But Timon's silver treads upon his lip; +And yet--O, see the monstrousness of man +When he looks out in an ungrateful shape!-- +He does deny him, in respect of his, +What charitable men afford to beggars. + +Third Stranger: +Religion groans at it. + +First Stranger: +For mine own part, +I never tasted Timon in my life, +Nor came any of his bounties over me, +To mark me for his friend; yet, I protest, +For his right noble mind, illustrious virtue +And honourable carriage, +Had his necessity made use of me, +I would have put my wealth into donation, +And the best half should have return'd to him, +So much I love his heart: but, I perceive, +Men must learn now with pity to dispense; +For policy sits above conscience. + +SEMPRONIUS: +Must he needs trouble me in 't,--hum!--'bove +all others? +He might have tried Lord Lucius or Lucullus; +And now Ventidius is wealthy too, +Whom he redeem'd from prison: all these +Owe their estates unto him. + +Servant: +My lord, +They have all been touch'd and found base metal, for +They have au denied him. + +SEMPRONIUS: +How! have they denied him? +Has Ventidius and Lucullus denied him? +And does he send to me? Three? hum! +It shows but little love or judgment in him: +Must I be his last refuge! His friends, like +physicians, +Thrive, give him over: must I take the cure upon me? +Has much disgraced me in't; I'm angry at him, +That might have known my place: I see no sense for't, +But his occasion might have woo'd me first; +For, in my conscience, I was the first man +That e'er received gift from him: +And does he think so backwardly of me now, +That I'll requite its last? No: +So it may prove an argument of laughter +To the rest, and 'mongst lords I be thought a fool. +I'ld rather than the worth of thrice the sum, +Had sent to me first, but for my mind's sake; +I'd such a courage to do him good. But now return, +And with their faint reply this answer join; +Who bates mine honour shall not know my coin. + +Servant: +Excellent! Your lordship's a goodly villain. The +devil knew not what he did when he made man +politic; he crossed himself by 't: and I cannot +think but, in the end, the villainies of man will +set him clear. How fairly this lord strives to +appear foul! takes virtuous copies to be wicked, +like those that under hot ardent zeal would set +whole realms on fire: Of such a nature is his +politic love. +This was my lord's best hope; now all are fled, +Save only the gods: now his friends are dead, +Doors, that were ne'er acquainted with their wards +Many a bounteous year must be employ'd +Now to guard sure their master. +And this is all a liberal course allows; +Who cannot keep his wealth must keep his house. + +Varro's First Servant: +Well met; good morrow, Titus and Hortensius. + +TITUS: +The like to you kind Varro. + +HORTENSIUS: +Lucius! +What, do we meet together? + +Lucilius' Servant: +Ay, and I think +One business does command us all; for mine Is money. + +TITUS: +So is theirs and ours. + +Lucilius' Servant: +And Sir Philotus too! + +PHILOTUS: +Good day at once. + +Lucilius' Servant: +Welcome, good brother. +What do you think the hour? + +PHILOTUS: +Labouring for nine. + +Lucilius' Servant: +So much? + +PHILOTUS: +Is not my lord seen yet? + +Lucilius' Servant: +Not yet. + +PHILOTUS: +I wonder on't; he was wont to shine at seven. + +Lucilius' Servant: +Ay, but the days are wax'd shorter with him: +You must consider that a prodigal course +Is like the sun's; but not, like his, recoverable. +I fear 'tis deepest winter in Lord Timon's purse; +That is one may reach deep enough, and yet +Find little. + +PHILOTUS: +I am of your fear for that. + +TITUS: +I'll show you how to observe a strange event. +Your lord sends now for money. + +HORTENSIUS: +Most true, he does. + +TITUS: +And he wears jewels now of Timon's gift, +For which I wait for money. + +HORTENSIUS: +It is against my heart. + +Lucilius' Servant: +Mark, how strange it shows, +Timon in this should pay more than he owes: +And e'en as if your lord should wear rich jewels, +And send for money for 'em. + +HORTENSIUS: +I'm weary of this charge, the gods can witness: +I know my lord hath spent of Timon's wealth, +And now ingratitude makes it worse than stealth. + +Varro's First Servant: +Yes, mine's three thousand crowns: what's yours? + +Lucilius' Servant: +Five thousand mine. + +Varro's First Servant: +'Tis much deep: and it should seem by the sun, +Your master's confidence was above mine; +Else, surely, his had equall'd. +Enter FLAMINIUS. + +TITUS: +One of Lord Timon's men. + +Lucilius' Servant: +Flaminius! Sir, a word: pray, is my lord ready to +come forth? + +FLAMINIUS: +No, indeed, he is not. + +TITUS: +We attend his lordship; pray, signify so much. + +FLAMINIUS: +I need not tell him that; he knows you are too diligent. + +Lucilius' Servant: +Ha! is not that his steward muffled so? +He goes away in a cloud: call him, call him. + +TITUS: +Do you hear, sir? + +Varro's Second Servant: +By your leave, sir,-- + +FLAVIUS: +What do ye ask of me, my friend? + +TITUS: +We wait for certain money here, sir. + +FLAVIUS: +Ay, +If money were as certain as your waiting, +'Twere sure enough. +Why then preferr'd you not your sums and bills, +When your false masters eat of my lord's meat? +Then they could smile and fawn upon his debts +And take down the interest into their +gluttonous maws. +You do yourselves but wrong to stir me up; +Let me pass quietly: +Believe 't, my lord and I have made an end; +I have no more to reckon, he to spend. + +Lucilius' Servant: +Ay, but this answer will not serve. + +FLAVIUS: +If 'twill not serve,'tis not so base as you; +For you serve knaves. + +Varro's First Servant: +How! what does his cashiered worship mutter? + +Varro's Second Servant: +No matter what; he's poor, and that's revenge +enough. Who can speak broader than he that has no +house to put his head in? such may rail against +great buildings. + +TITUS: +O, here's Servilius; now we shall know some answer. + +SERVILIUS: +If I might beseech you, gentlemen, to repair some +other hour, I should derive much from't; for, +take't of my soul, my lord leans wondrously to +discontent: his comfortable temper has forsook him; +he's much out of health, and keeps his chamber. + +Lucilius' Servant: +Many do keep their chambers are not sick: +And, if it be so far beyond his health, +Methinks he should the sooner pay his debts, +And make a clear way to the gods. + +SERVILIUS: +Good gods! + +TITUS: +We cannot take this for answer, sir. + +FLAMINIUS: + +TIMON: +What, are my doors opposed against my passage? +Have I been ever free, and must my house +Be my retentive enemy, my gaol? +The place which I have feasted, does it now, +Like all mankind, show me an iron heart? + +Lucilius' Servant: +Put in now, Titus. + +TITUS: +My lord, here is my bill. + +Lucilius' Servant: +Here's mine. + +HORTENSIUS: +And mine, my lord. + +Both Varro's Servants: +And ours, my lord. + +PHILOTUS: +All our bills. + +TIMON: +Knock me down with 'em: cleave me to the girdle. + +Lucilius' Servant: +Alas, my lord,- + +TIMON: +Cut my heart in sums. + +TITUS: +Mine, fifty talents. + +TIMON: +Tell out my blood. + +Lucilius' Servant: +Five thousand crowns, my lord. + +TIMON: +Five thousand drops pays that. +What yours?--and yours? + +Varro's First Servant: +My lord,-- + +Varro's Second Servant: +My lord,-- + +TIMON: +Tear me, take me, and the gods fall upon you! + +HORTENSIUS: +'Faith, I perceive our masters may throw their caps +at their money: these debts may well be called +desperate ones, for a madman owes 'em. + +TIMON: +They have e'en put my breath from me, the slaves. +Creditors? devils! + +FLAVIUS: +My dear lord,-- + +TIMON: +What if it should be so? + +FLAVIUS: +My lord,-- + +TIMON: +I'll have it so. My steward! + +FLAVIUS: +Here, my lord. + +TIMON: +So fitly? Go, bid all my friends again, +Lucius, Lucullus, and Sempronius: +All, sirrah, all: +I'll once more feast the rascals. + +FLAVIUS: +O my lord, +You only speak from your distracted soul; +There is not so much left, to furnish out +A moderate table. + +TIMON: +Be't not in thy care; go, +I charge thee, invite them all: let in the tide +Of knaves once more; my cook and I'll provide. + +First Senator: +My lord, you have my voice to it; the fault's +Bloody; 'tis necessary he should die: +Nothing emboldens sin so much as mercy. + +Second Senator: +Most true; the law shall bruise him. + +ALCIBIADES: +Honour, health, and compassion to the senate! + +First Senator: +Now, captain? + +ALCIBIADES: +I am an humble suitor to your virtues; +For pity is the virtue of the law, +And none but tyrants use it cruelly. +It pleases time and fortune to lie heavy +Upon a friend of mine, who, in hot blood, +Hath stepp'd into the law, which is past depth +To those that, without heed, do plunge into 't. +He is a man, setting his fate aside, +Of comely virtues: +Nor did he soil the fact with cowardice-- +An honour in him which buys out his fault-- +But with a noble fury and fair spirit, +Seeing his reputation touch'd to death, +He did oppose his foe: +And with such sober and unnoted passion +He did behave his anger, ere 'twas spent, +As if he had but proved an argument. + +First Senator: +You undergo too strict a paradox, +Striving to make an ugly deed look fair: +Your words have took such pains as if they labour'd +To bring manslaughter into form and set quarrelling +Upon the head of valour; which indeed +Is valour misbegot and came into the world +When sects and factions were newly born: +He's truly valiant that can wisely suffer +The worst that man can breathe, and make his wrongs +His outsides, to wear them like his raiment, +carelessly, +And ne'er prefer his injuries to his heart, +To bring it into danger. +If wrongs be evils and enforce us kill, +What folly 'tis to hazard life for ill! + +ALCIBIADES: +My lord,-- + +First Senator: +You cannot make gross sins look clear: +To revenge is no valour, but to bear. + +ALCIBIADES: +My lords, then, under favour, pardon me, +If I speak like a captain. +Why do fond men expose themselves to battle, +And not endure all threats? sleep upon't, +And let the foes quietly cut their throats, +Without repugnancy? If there be +Such valour in the bearing, what make we +Abroad? why then, women are more valiant +That stay at home, if bearing carry it, +And the ass more captain than the lion, the felon +Loaden with irons wiser than the judge, +If wisdom be in suffering. O my lords, +As you are great, be pitifully good: +Who cannot condemn rashness in cold blood? +To kill, I grant, is sin's extremest gust; +But, in defence, by mercy, 'tis most just. +To be in anger is impiety; +But who is man that is not angry? +Weigh but the crime with this. + +Second Senator: +You breathe in vain. + +ALCIBIADES: +In vain! his service done +At Lacedaemon and Byzantium +Were a sufficient briber for his life. + +First Senator: +What's that? + +ALCIBIADES: +I say, my lords, he has done fair service, +And slain in fight many of your enemies: +How full of valour did he bear himself +In the last conflict, and made plenteous wounds! + +Second Senator: +He has made too much plenty with 'em; +He's a sworn rioter: he has a sin that often +Drowns him, and takes his valour prisoner: +If there were no foes, that were enough +To overcome him: in that beastly fury +He has been known to commit outrages, +And cherish factions: 'tis inferr'd to us, +His days are foul and his drink dangerous. + +First Senator: +He dies. + +ALCIBIADES: +Hard fate! he might have died in war. +My lords, if not for any parts in him-- +Though his right arm might purchase his own time +And be in debt to none--yet, more to move you, +Take my deserts to his, and join 'em both: +And, for I know your reverend ages love +Security, I'll pawn my victories, all +My honours to you, upon his good returns. +If by this crime he owes the law his life, +Why, let the war receive 't in valiant gore +For law is strict, and war is nothing more. + +First Senator: +We are for law: he dies; urge it no more, +On height of our displeasure: friend or brother, +He forfeits his own blood that spills another. + +ALCIBIADES: +Must it be so? it must not be. My lords, +I do beseech you, know me. + +Second Senator: +How! + +ALCIBIADES: +Call me to your remembrances. + +Third Senator: +What! + +ALCIBIADES: +I cannot think but your age has forgot me; +It could not else be, I should prove so base, +To sue, and be denied such common grace: +My wounds ache at you. + +First Senator: +Do you dare our anger? +'Tis in few words, but spacious in effect; +We banish thee for ever. + +ALCIBIADES: +Banish me! +Banish your dotage; banish usury, +That makes the senate ugly. + +First Senator: +If, after two days' shine, Athens contain thee, +Attend our weightier judgment. And, not to swell +our spirit, +He shall be executed presently. + +ALCIBIADES: +Now the gods keep you old enough; that you may live +Only in bone, that none may look on you! +I'm worse than mad: I have kept back their foes, +While they have told their money and let out +Their coin upon large interest, I myself +Rich only in large hurts. All those for this? +Is this the balsam that the usuring senate +Pours into captains' wounds? Banishment! +It comes not ill; I hate not to be banish'd; +It is a cause worthy my spleen and fury, +That I may strike at Athens. I'll cheer up +My discontented troops, and lay for hearts. +'Tis honour with most lands to be at odds; +Soldiers should brook as little wrongs as gods. + +First Lord: +The good time of day to you, sir. + +Second Lord: +I also wish it to you. I think this honourable lord +did but try us this other day. + +First Lord: +Upon that were my thoughts tiring, when we +encountered: I hope it is not so low with him as +he made it seem in the trial of his several friends. + +Second Lord: +It should not be, by the persuasion of his new feasting. + +First Lord: +I should think so: he hath sent me an earnest +inviting, which many my near occasions did urge me +to put off; but he hath conjured me beyond them, and +I must needs appear. + +Second Lord: +In like manner was I in debt to my importunate +business, but he would not hear my excuse. I am +sorry, when he sent to borrow of me, that my +provision was out. + +First Lord: +I am sick of that grief too, as I understand how all +things go. + +Second Lord: +Every man here's so. What would he have borrowed of +you? + +First Lord: +A thousand pieces. + +Second Lord: +A thousand pieces! + +First Lord: +What of you? + +Second Lord: +He sent to me, sir,--Here he comes. + +TIMON: +With all my heart, gentlemen both; and how fare you? + +First Lord: +Ever at the best, hearing well of your lordship. + +Second Lord: +The swallow follows not summer more willing than we +your lordship. + +TIMON: + +First Lord: +I hope it remains not unkindly with your lordship +that I returned you an empty messenger. + +TIMON: +O, sir, let it not trouble you. + +Second Lord: +My noble lord,-- + +TIMON: +Ah, my good friend, what cheer? + +Second Lord: +My most honourable lord, I am e'en sick of shame, +that, when your lordship this other day sent to me, +I was so unfortunate a beggar. + +TIMON: +Think not on 't, sir. + +Second Lord: +If you had sent but two hours before,-- + +TIMON: +Let it not cumber your better remembrance. +Come, bring in all together. + +Second Lord: +All covered dishes! + +First Lord: +Royal cheer, I warrant you. + +Third Lord: +Doubt not that, if money and the season can yield +it. + +First Lord: +How do you? What's the news? + +Third Lord: +Alcibiades is banished: hear you of it? + +First Lord: +Alcibiades banished! + +Third Lord: +'Tis so, be sure of it. + +First Lord: +How! how! + +Second Lord: +I pray you, upon what? + +TIMON: +My worthy friends, will you draw near? + +Third Lord: +I'll tell you more anon. Here's a noble feast toward. + +Second Lord: +This is the old man still. + +Third Lord: +Will 't hold? will 't hold? + +Second Lord: +It does: but time will--and so-- + +Third Lord: +I do conceive. + +TIMON: +Each man to his stool, with that spur as he would to +the lip of his mistress: your diet shall be in all +places alike. Make not a city feast of it, to let +the meat cool ere we can agree upon the first place: +sit, sit. The gods require our thanks. +You great benefactors, sprinkle our society with +thankfulness. For your own gifts, make yourselves +praised: but reserve still to give, lest your +deities be despised. Lend to each man enough, that +one need not lend to another; for, were your +godheads to borrow of men, men would forsake the +gods. Make the meat be beloved more than the man +that gives it. Let no assembly of twenty be without +a score of villains: if there sit twelve women at +the table, let a dozen of them be--as they are. The +rest of your fees, O gods--the senators of Athens, +together with the common lag of people--what is +amiss in them, you gods, make suitable for +destruction. For these my present friends, as they +are to me nothing, so in nothing bless them, and to +nothing are they welcome. +Uncover, dogs, and lap. + +Some Speak: +What does his lordship mean? + +Some Others: +I know not. + +TIMON: +May you a better feast never behold, +You knot of mouth-friends I smoke and lukewarm water +Is your perfection. This is Timon's last; +Who, stuck and spangled with your flatteries, +Washes it off, and sprinkles in your faces +Your reeking villany. +Live loathed and long, +Most smiling, smooth, detested parasites, +Courteous destroyers, affable wolves, meek bears, +You fools of fortune, trencher-friends, time's flies, +Cap and knee slaves, vapours, and minute-jacks! +Of man and beast the infinite malady +Crust you quite o'er! What, dost thou go? +Soft! take thy physic first--thou too--and thou;-- +Stay, I will lend thee money, borrow none. +What, all in motion? Henceforth be no feast, +Whereat a villain's not a welcome guest. +Burn, house! sink, Athens! henceforth hated be +Of Timon man and all humanity! + +First Lord: +How now, my lords! + +Second Lord: +Know you the quality of Lord Timon's fury? + +Third Lord: +Push! did you see my cap? + +Fourth Lord: +I have lost my gown. + +First Lord: +He's but a mad lord, and nought but humour sways him. +He gave me a jewel th' other day, and now he has +beat it out of my hat: did you see my jewel? + +Third Lord: +Did you see my cap? + +Second Lord: +Here 'tis. + +Fourth Lord: +Here lies my gown. + +First Lord: +Let's make no stay. + +Second Lord: +Lord Timon's mad. + +Third Lord: +I feel 't upon my bones. + +Fourth Lord: +One day he gives us diamonds, next day stones. + +TIMON: +Let me look back upon thee. O thou wall, +That girdlest in those wolves, dive in the earth, +And fence not Athens! Matrons, turn incontinent! +Obedience fail in children! slaves and fools, +Pluck the grave wrinkled senate from the bench, +And minister in their steads! to general filths +Convert o' the instant, green virginity, +Do 't in your parents' eyes! bankrupts, hold fast; +Rather than render back, out with your knives, +And cut your trusters' throats! bound servants, steal! +Large-handed robbers your grave masters are, +And pill by law. Maid, to thy master's bed; +Thy mistress is o' the brothel! Son of sixteen, +pluck the lined crutch from thy old limping sire, +With it beat out his brains! Piety, and fear, +Religion to the gods, peace, justice, truth, +Domestic awe, night-rest, and neighbourhood, +Instruction, manners, mysteries, and trades, +Degrees, observances, customs, and laws, +Decline to your confounding contraries, +And let confusion live! Plagues, incident to men, +Your potent and infectious fevers heap +On Athens, ripe for stroke! Thou cold sciatica, +Cripple our senators, that their limbs may halt +As lamely as their manners. Lust and liberty +Creep in the minds and marrows of our youth, +That 'gainst the stream of virtue they may strive, +And drown themselves in riot! Itches, blains, +Sow all the Athenian bosoms; and their crop +Be general leprosy! Breath infect breath, +at their society, as their friendship, may +merely poison! Nothing I'll bear from thee, +But nakedness, thou detestable town! +Take thou that too, with multiplying bans! +Timon will to the woods; where he shall find +The unkindest beast more kinder than mankind. +The gods confound--hear me, you good gods all-- +The Athenians both within and out that wall! +And grant, as Timon grows, his hate may grow +To the whole race of mankind, high and low! Amen. + +First Servant: +Hear you, master steward, where's our master? +Are we undone? cast off? nothing remaining? + +FLAVIUS: +Alack, my fellows, what should I say to you? +Let me be recorded by the righteous gods, +I am as poor as you. + +First Servant: +Such a house broke! +So noble a master fall'n! All gone! and not +One friend to take his fortune by the arm, +And go along with him! + +Second Servant: +As we do turn our backs +From our companion thrown into his grave, +So his familiars to his buried fortunes +Slink all away, leave their false vows with him, +Like empty purses pick'd; and his poor self, +A dedicated beggar to the air, +With his disease of all-shunn'd poverty, +Walks, like contempt, alone. More of our fellows. + +FLAVIUS: +All broken implements of a ruin'd house. + +Third Servant: +Yet do our hearts wear Timon's livery; +That see I by our faces; we are fellows still, +Serving alike in sorrow: leak'd is our bark, +And we, poor mates, stand on the dying deck, +Hearing the surges threat: we must all part +Into this sea of air. + +FLAVIUS: +Good fellows all, +The latest of my wealth I'll share amongst you. +Wherever we shall meet, for Timon's sake, +Let's yet be fellows; let's shake our heads, and say, +As 'twere a knell unto our master's fortunes, +'We have seen better days.' Let each take some; +Nay, put out all your hands. Not one word more: +Thus part we rich in sorrow, parting poor. +O, the fierce wretchedness that glory brings us! +Who would not wish to be from wealth exempt, +Since riches point to misery and contempt? +Who would be so mock'd with glory? or to live +But in a dream of friendship? +To have his pomp and all what state compounds +But only painted, like his varnish'd friends? +Poor honest lord, brought low by his own heart, +Undone by goodness! Strange, unusual blood, +When man's worst sin is, he does too much good! +Who, then, dares to be half so kind again? +For bounty, that makes gods, does still mar men. +My dearest lord, bless'd, to be most accursed, +Rich, only to be wretched, thy great fortunes +Are made thy chief afflictions. Alas, kind lord! +He's flung in rage from this ingrateful seat +Of monstrous friends, nor has he with him to +Supply his life, or that which can command it. +I'll follow and inquire him out: +I'll ever serve his mind with my best will; +Whilst I have gold, I'll be his steward still. + +TIMON: +O blessed breeding sun, draw from the earth +Rotten humidity; below thy sister's orb +Infect the air! Twinn'd brothers of one womb, +Whose procreation, residence, and birth, +Scarce is dividant, touch them with several fortunes; +The greater scorns the lesser: not nature, +To whom all sores lay siege, can bear great fortune, +But by contempt of nature. +Raise me this beggar, and deny 't that lord; +The senator shall bear contempt hereditary, +The beggar native honour. +It is the pasture lards the rother's sides, +The want that makes him lean. Who dares, who dares, +In purity of manhood stand upright, +And say 'This man's a flatterer?' if one be, +So are they all; for every grise of fortune +Is smooth'd by that below: the learned pate +Ducks to the golden fool: all is oblique; +There's nothing level in our cursed natures, +But direct villany. Therefore, be abhorr'd +All feasts, societies, and throngs of men! +His semblable, yea, himself, Timon disdains: +Destruction fang mankind! Earth, yield me roots! +Who seeks for better of thee, sauce his palate +With thy most operant poison! What is here? +Gold? yellow, glittering, precious gold? No, gods, +I am no idle votarist: roots, you clear heavens! +Thus much of this will make black white, foul fair, +Wrong right, base noble, old young, coward valiant. +Ha, you gods! why this? what this, you gods? Why, this +Will lug your priests and servants from your sides, +Pluck stout men's pillows from below their heads: +This yellow slave +Will knit and break religions, bless the accursed, +Make the hoar leprosy adored, place thieves +And give them title, knee and approbation +With senators on the bench: this is it +That makes the wappen'd widow wed again; +She, whom the spital-house and ulcerous sores +Would cast the gorge at, this embalms and spices +To the April day again. Come, damned earth, +Thou common whore of mankind, that put'st odds +Among the route of nations, I will make thee +Do thy right nature. +Ha! a drum? Thou'rt quick, +But yet I'll bury thee: thou'lt go, strong thief, +When gouty keepers of thee cannot stand. +Nay, stay thou out for earnest. + +ALCIBIADES: +What art thou there? speak. + +TIMON: +A beast, as thou art. The canker gnaw thy heart, +For showing me again the eyes of man! + +ALCIBIADES: +What is thy name? Is man so hateful to thee, +That art thyself a man? + +TIMON: +I am Misanthropos, and hate mankind. +For thy part, I do wish thou wert a dog, +That I might love thee something. + +ALCIBIADES: +I know thee well; +But in thy fortunes am unlearn'd and strange. + +TIMON: +I know thee too; and more than that I know thee, +I not desire to know. Follow thy drum; +With man's blood paint the ground, gules, gules: +Religious canons, civil laws are cruel; +Then what should war be? This fell whore of thine +Hath in her more destruction than thy sword, +For all her cherubim look. + +PHRYNIA: +Thy lips rot off! + +TIMON: +I will not kiss thee; then the rot returns +To thine own lips again. + +ALCIBIADES: +How came the noble Timon to this change? + +TIMON: +As the moon does, by wanting light to give: +But then renew I could not, like the moon; +There were no suns to borrow of. + +ALCIBIADES: +Noble Timon, +What friendship may I do thee? + +TIMON: +None, but to +Maintain my opinion. + +ALCIBIADES: +What is it, Timon? + +TIMON: +Promise me friendship, but perform none: if thou +wilt not promise, the gods plague thee, for thou art +a man! if thou dost perform, confound thee, for +thou art a man! + +ALCIBIADES: +I have heard in some sort of thy miseries. + +TIMON: +Thou saw'st them, when I had prosperity. + +ALCIBIADES: +I see them now; then was a blessed time. + +TIMON: +As thine is now, held with a brace of harlots. + +TIMANDRA: +Is this the Athenian minion, whom the world +Voiced so regardfully? + +TIMON: +Art thou Timandra? + +TIMANDRA: +Yes. + +TIMON: +Be a whore still: they love thee not that use thee; +Give them diseases, leaving with thee their lust. +Make use of thy salt hours: season the slaves +For tubs and baths; bring down rose-cheeked youth +To the tub-fast and the diet. + +TIMANDRA: +Hang thee, monster! + +ALCIBIADES: +Pardon him, sweet Timandra; for his wits +Are drown'd and lost in his calamities. +I have but little gold of late, brave Timon, +The want whereof doth daily make revolt +In my penurious band: I have heard, and grieved, +How cursed Athens, mindless of thy worth, +Forgetting thy great deeds, when neighbour states, +But for thy sword and fortune, trod upon them,-- + +TIMON: +I prithee, beat thy drum, and get thee gone. + +ALCIBIADES: +I am thy friend, and pity thee, dear Timon. + +TIMON: +How dost thou pity him whom thou dost trouble? +I had rather be alone. + +ALCIBIADES: +Why, fare thee well: +Here is some gold for thee. + +TIMON: +Keep it, I cannot eat it. + +ALCIBIADES: +When I have laid proud Athens on a heap,-- + +TIMON: +Warr'st thou 'gainst Athens? + +ALCIBIADES: +Ay, Timon, and have cause. + +TIMON: +The gods confound them all in thy conquest; +And thee after, when thou hast conquer'd! + +ALCIBIADES: +Why me, Timon? + +TIMON: +That, by killing of villains, +Thou wast born to conquer my country. +Put up thy gold: go on,--here's gold,--go on; +Be as a planetary plague, when Jove +Will o'er some high-viced city hang his poison +In the sick air: let not thy sword skip one: +Pity not honour'd age for his white beard; +He is an usurer: strike me the counterfeit matron; +It is her habit only that is honest, +Herself's a bawd: let not the virgin's cheek +Make soft thy trenchant sword; for those milk-paps, +That through the window-bars bore at men's eyes, +Are not within the leaf of pity writ, +But set them down horrible traitors: spare not the babe, +Whose dimpled smiles from fools exhaust their mercy; +Think it a bastard, whom the oracle +Hath doubtfully pronounced thy throat shall cut, +And mince it sans remorse: swear against objects; +Put armour on thine ears and on thine eyes; +Whose proof, nor yells of mothers, maids, nor babes, +Nor sight of priests in holy vestments bleeding, +Shall pierce a jot. There's gold to pay soldiers: +Make large confusion; and, thy fury spent, +Confounded be thyself! Speak not, be gone. + +ALCIBIADES: +Hast thou gold yet? I'll take the gold thou +givest me, +Not all thy counsel. + +TIMON: +Dost thou, or dost thou not, heaven's curse +upon thee! + +PHRYNIA: +Give us some gold, good Timon: hast thou more? + +TIMON: +Enough to make a whore forswear her trade, +And to make whores, a bawd. Hold up, you sluts, +Your aprons mountant: you are not oathable, +Although, I know, you 'll swear, terribly swear +Into strong shudders and to heavenly agues +The immortal gods that hear you,--spare your oaths, +I'll trust to your conditions: be whores still; +And he whose pious breath seeks to convert you, +Be strong in whore, allure him, burn him up; +Let your close fire predominate his smoke, +And be no turncoats: yet may your pains, six months, +Be quite contrary: and thatch your poor thin roofs +With burthens of the dead;--some that were hang'd, +No matter:--wear them, betray with them: whore still; +Paint till a horse may mire upon your face, +A pox of wrinkles! + +PHRYNIA: +Well, more gold: what then? +Believe't, that we'll do any thing for gold. + +TIMON: +Consumptions sow +In hollow bones of man; strike their sharp shins, +And mar men's spurring. Crack the lawyer's voice, +That he may never more false title plead, +Nor sound his quillets shrilly: hoar the flamen, +That scolds against the quality of flesh, +And not believes himself: down with the nose, +Down with it flat; take the bridge quite away +Of him that, his particular to foresee, +Smells from the general weal: make curl'd-pate +ruffians bald; +And let the unscarr'd braggarts of the war +Derive some pain from you: plague all; +That your activity may defeat and quell +The source of all erection. There's more gold: +Do you damn others, and let this damn you, +And ditches grave you all! + +PHRYNIA: +More counsel with more money, bounteous Timon. + +TIMON: +More whore, more mischief first; I have given you earnest. + +ALCIBIADES: +Strike up the drum towards Athens! Farewell, Timon: +If I thrive well, I'll visit thee again. + +TIMON: +If I hope well, I'll never see thee more. + +ALCIBIADES: +I never did thee harm. + +TIMON: +Yes, thou spokest well of me. + +ALCIBIADES: +Call'st thou that harm? + +TIMON: +Men daily find it. Get thee away, and take +Thy beagles with thee. + +ALCIBIADES: +We but offend him. Strike! + +TIMON: +That nature, being sick of man's unkindness, +Should yet be hungry! Common mother, thou, +Whose womb unmeasurable, and infinite breast, +Teems, and feeds all; whose self-same mettle, +Whereof thy proud child, arrogant man, is puff'd, +Engenders the black toad and adder blue, +The gilded newt and eyeless venom'd worm, +With all the abhorred births below crisp heaven +Whereon Hyperion's quickening fire doth shine; +Yield him, who all thy human sons doth hate, +From forth thy plenteous bosom, one poor root! +Ensear thy fertile and conceptious womb, +Let it no more bring out ingrateful man! +Go great with tigers, dragons, wolves, and bears; +Teem with new monsters, whom thy upward face +Hath to the marbled mansion all above +Never presented!--O, a root,--dear thanks!-- +Dry up thy marrows, vines, and plough-torn leas; +Whereof ungrateful man, with liquorish draughts +And morsels unctuous, greases his pure mind, +That from it all consideration slips! +More man? plague, plague! + +APEMANTUS: +I was directed hither: men report +Thou dost affect my manners, and dost use them. + +TIMON: +'Tis, then, because thou dost not keep a dog, +Whom I would imitate: consumption catch thee! + +APEMANTUS: +This is in thee a nature but infected; +A poor unmanly melancholy sprung +From change of fortune. Why this spade? this place? +This slave-like habit? and these looks of care? +Thy flatterers yet wear silk, drink wine, lie soft; +Hug their diseased perfumes, and have forgot +That ever Timon was. Shame not these woods, +By putting on the cunning of a carper. +Be thou a flatterer now, and seek to thrive +By that which has undone thee: hinge thy knee, +And let his very breath, whom thou'lt observe, +Blow off thy cap; praise his most vicious strain, +And call it excellent: thou wast told thus; +Thou gavest thine ears like tapsters that bid welcome +To knaves and all approachers: 'tis most just +That thou turn rascal; hadst thou wealth again, +Rascals should have 't. Do not assume my likeness. + +TIMON: +Were I like thee, I'ld throw away myself. + +APEMANTUS: +Thou hast cast away thyself, being like thyself; +A madman so long, now a fool. What, think'st +That the bleak air, thy boisterous chamberlain, +Will put thy shirt on warm? will these moss'd trees, +That have outlived the eagle, page thy heels, +And skip where thou point'st out? will the +cold brook, +Candied with ice, caudle thy morning taste, +To cure thy o'er-night's surfeit? Call the creatures +Whose naked natures live in an the spite +Of wreakful heaven, whose bare unhoused trunks, +To the conflicting elements exposed, +Answer mere nature; bid them flatter thee; +O, thou shalt find-- + +TIMON: +A fool of thee: depart. + +APEMANTUS: +I love thee better now than e'er I did. + +TIMON: +I hate thee worse. + +APEMANTUS: +Why? + +TIMON: +Thou flatter'st misery. + +APEMANTUS: +I flatter not; but say thou art a caitiff. + +TIMON: +Why dost thou seek me out? + +APEMANTUS: +To vex thee. + +TIMON: +Always a villain's office or a fool's. +Dost please thyself in't? + +APEMANTUS: +Ay. + +TIMON: +What! a knave too? + +APEMANTUS: +If thou didst put this sour-cold habit on +To castigate thy pride, 'twere well: but thou +Dost it enforcedly; thou'ldst courtier be again, +Wert thou not beggar. Willing misery +Outlives encertain pomp, is crown'd before: +The one is filling still, never complete; +The other, at high wish: best state, contentless, +Hath a distracted and most wretched being, +Worse than the worst, content. +Thou shouldst desire to die, being miserable. + +TIMON: +Not by his breath that is more miserable. +Thou art a slave, whom Fortune's tender arm +With favour never clasp'd; but bred a dog. +Hadst thou, like us from our first swath, proceeded +The sweet degrees that this brief world affords +To such as may the passive drugs of it +Freely command, thou wouldst have plunged thyself +In general riot; melted down thy youth +In different beds of lust; and never learn'd +The icy precepts of respect, but follow'd +The sugar'd game before thee. But myself, +Who had the world as my confectionary, +The mouths, the tongues, the eyes and hearts of men +At duty, more than I could frame employment, +That numberless upon me stuck as leaves +Do on the oak, hive with one winter's brush +Fell from their boughs and left me open, bare +For every storm that blows: I, to bear this, +That never knew but better, is some burden: +Thy nature did commence in sufferance, time +Hath made thee hard in't. Why shouldst thou hate men? +They never flatter'd thee: what hast thou given? +If thou wilt curse, thy father, that poor rag, +Must be thy subject, who in spite put stuff +To some she beggar and compounded thee +Poor rogue hereditary. Hence, be gone! +If thou hadst not been born the worst of men, +Thou hadst been a knave and flatterer. + +APEMANTUS: +Art thou proud yet? + +TIMON: +Ay, that I am not thee. + +APEMANTUS: +I, that I was +No prodigal. + +TIMON: +I, that I am one now: +Were all the wealth I have shut up in thee, +I'ld give thee leave to hang it. Get thee gone. +That the whole life of Athens were in this! +Thus would I eat it. + +APEMANTUS: +Here; I will mend thy feast. + +TIMON: +First mend my company, take away thyself. + +APEMANTUS: +So I shall mend mine own, by the lack of thine. + +TIMON: +'Tis not well mended so, it is but botch'd; +if not, I would it were. + +APEMANTUS: +What wouldst thou have to Athens? + +TIMON: +Thee thither in a whirlwind. If thou wilt, +Tell them there I have gold; look, so I have. + +APEMANTUS: +Here is no use for gold. + +TIMON: +The best and truest; +For here it sleeps, and does no hired harm. + +APEMANTUS: +Where liest o' nights, Timon? + +TIMON: +Under that's above me. +Where feed'st thou o' days, Apemantus? + +APEMANTUS: +Where my stomach finds meat; or, rather, where I eat +it. + +TIMON: +Would poison were obedient and knew my mind! + +APEMANTUS: +Where wouldst thou send it? + +TIMON: +To sauce thy dishes. + +APEMANTUS: +The middle of humanity thou never knewest, but the +extremity of both ends: when thou wast in thy gilt +and thy perfume, they mocked thee for too much +curiosity; in thy rags thou knowest none, but art +despised for the contrary. There's a medlar for +thee, eat it. + +TIMON: +On what I hate I feed not. + +APEMANTUS: +Dost hate a medlar? + +TIMON: +Ay, though it look like thee. + +APEMANTUS: +An thou hadst hated meddlers sooner, thou shouldst +have loved thyself better now. What man didst thou +ever know unthrift that was beloved after his means? + +TIMON: +Who, without those means thou talkest of, didst thou +ever know beloved? + +APEMANTUS: +Myself. + +TIMON: +I understand thee; thou hadst some means to keep a +dog. + +APEMANTUS: +What things in the world canst thou nearest compare +to thy flatterers? + +TIMON: +Women nearest; but men, men are the things +themselves. What wouldst thou do with the world, +Apemantus, if it lay in thy power? + +APEMANTUS: +Give it the beasts, to be rid of the men. + +TIMON: +Wouldst thou have thyself fall in the confusion of +men, and remain a beast with the beasts? + +APEMANTUS: +Ay, Timon. + +TIMON: +A beastly ambition, which the gods grant thee t' +attain to! If thou wert the lion, the fox would +beguile thee; if thou wert the lamb, the fox would +eat three: if thou wert the fox, the lion would +suspect thee, when peradventure thou wert accused by +the ass: if thou wert the ass, thy dulness would +torment thee, and still thou livedst but as a +breakfast to the wolf: if thou wert the wolf, thy +greediness would afflict thee, and oft thou shouldst +hazard thy life for thy dinner: wert thou the +unicorn, pride and wrath would confound thee and +make thine own self the conquest of thy fury: wert +thou a bear, thou wouldst be killed by the horse: +wert thou a horse, thou wouldst be seized by the +leopard: wert thou a leopard, thou wert german to +the lion and the spots of thy kindred were jurors on +thy life: all thy safety were remotion and thy +defence absence. What beast couldst thou be, that +were not subject to a beast? and what a beast art +thou already, that seest not thy loss in +transformation! + +APEMANTUS: +If thou couldst please me with speaking to me, thou +mightst have hit upon it here: the commonwealth of +Athens is become a forest of beasts. + +TIMON: +How has the ass broke the wall, that thou art out of the city? + +APEMANTUS: +Yonder comes a poet and a painter: the plague of +company light upon thee! I will fear to catch it +and give way: when I know not what else to do, I'll +see thee again. + +TIMON: +When there is nothing living but thee, thou shalt be +welcome. I had rather be a beggar's dog than Apemantus. + +APEMANTUS: +Thou art the cap of all the fools alive. + +TIMON: +Would thou wert clean enough to spit upon! + +APEMANTUS: +A plague on thee! thou art too bad to curse. + +TIMON: +All villains that do stand by thee are pure. + +APEMANTUS: +There is no leprosy but what thou speak'st. + +TIMON: +If I name thee. +I'll beat thee, but I should infect my hands. + +APEMANTUS: +I would my tongue could rot them off! + +TIMON: +Away, thou issue of a mangy dog! +Choler does kill me that thou art alive; +I swound to see thee. + +APEMANTUS: +Would thou wouldst burst! + +TIMON: +Away, +Thou tedious rogue! I am sorry I shall lose +A stone by thee. + +APEMANTUS: +Beast! + +TIMON: +Slave! + +APEMANTUS: +Toad! + +TIMON: +Rogue, rogue, rogue! +I am sick of this false world, and will love nought +But even the mere necessities upon 't. +Then, Timon, presently prepare thy grave; +Lie where the light foam the sea may beat +Thy grave-stone daily: make thine epitaph, +That death in me at others' lives may laugh. +O thou sweet king-killer, and dear divorce +'Twixt natural son and sire! thou bright defiler +Of Hymen's purest bed! thou valiant Mars! +Thou ever young, fresh, loved and delicate wooer, +Whose blush doth thaw the consecrated snow +That lies on Dian's lap! thou visible god, +That solder'st close impossibilities, +And makest them kiss! that speak'st with +every tongue, +To every purpose! O thou touch of hearts! +Think, thy slave man rebels, and by thy virtue +Set them into confounding odds, that beasts +May have the world in empire! + +APEMANTUS: +Would 'twere so! +But not till I am dead. I'll say thou'st gold: +Thou wilt be throng'd to shortly. + +TIMON: +Throng'd to! + +APEMANTUS: +Ay. + +TIMON: +Thy back, I prithee. + +APEMANTUS: +Live, and love thy misery. + +TIMON: +Long live so, and so die. +I am quit. +Moe things like men! Eat, Timon, and abhor them. + +First Bandit: +Where should he have this gold? It is some poor +fragment, some slender sort of his remainder: the +mere want of gold, and the falling-from of his +friends, drove him into this melancholy. + +Second Bandit: +It is noised he hath a mass of treasure. + +Third Bandit: +Let us make the assay upon him: if he care not +for't, he will supply us easily; if he covetously +reserve it, how shall's get it? + +Second Bandit: +True; for he bears it not about him, 'tis hid. + +First Bandit: +Is not this he? + +Banditti: +Where? + +Second Bandit: +'Tis his description. + +Third Bandit: +He; I know him. + +Banditti: +Save thee, Timon. + +TIMON: +Now, thieves? + +Banditti: +Soldiers, not thieves. + +TIMON: +Both too; and women's sons. + +Banditti: +We are not thieves, but men that much do want. + +TIMON: +Your greatest want is, you want much of meat. +Why should you want? Behold, the earth hath roots; +Within this mile break forth a hundred springs; +The oaks bear mast, the briers scarlet hips; +The bounteous housewife, nature, on each bush +Lays her full mess before you. Want! why want? + +First Bandit: +We cannot live on grass, on berries, water, +As beasts and birds and fishes. + +TIMON: +Nor on the beasts themselves, the birds, and fishes; +You must eat men. Yet thanks I must you con +That you are thieves profess'd, that you work not +In holier shapes: for there is boundless theft +In limited professions. Rascal thieves, +Here's gold. Go, suck the subtle blood o' the grape, +Till the high fever seethe your blood to froth, +And so 'scape hanging: trust not the physician; +His antidotes are poison, and he slays +Moe than you rob: take wealth and lives together; +Do villany, do, since you protest to do't, +Like workmen. I'll example you with thievery. +The sun's a thief, and with his great attraction +Robs the vast sea: the moon's an arrant thief, +And her pale fire she snatches from the sun: +The sea's a thief, whose liquid surge resolves +The moon into salt tears: the earth's a thief, +That feeds and breeds by a composture stolen +From general excrement: each thing's a thief: +The laws, your curb and whip, in their rough power +Have uncheque'd theft. Love not yourselves: away, +Rob one another. There's more gold. Cut throats: +All that you meet are thieves: to Athens go, +Break open shops; nothing can you steal, +But thieves do lose it: steal no less for this +I give you; and gold confound you howsoe'er! Amen. + +Third Bandit: +Has almost charmed me from my profession, by +persuading me to it. + +First Bandit: +'Tis in the malice of mankind that he thus advises +us; not to have us thrive in our mystery. + +Second Bandit: +I'll believe him as an enemy, and give over my trade. + +First Bandit: +Let us first see peace in Athens: there is no time +so miserable but a man may be true. + +FLAVIUS: +O you gods! +Is yond despised and ruinous man my lord? +Full of decay and failing? O monument +And wonder of good deeds evilly bestow'd! +What an alteration of honour +Has desperate want made! +What viler thing upon the earth than friends +Who can bring noblest minds to basest ends! +How rarely does it meet with this time's guise, +When man was wish'd to love his enemies! +Grant I may ever love, and rather woo +Those that would mischief me than those that do! +Has caught me in his eye: I will present +My honest grief unto him; and, as my lord, +Still serve him with my life. My dearest master! + +TIMON: +Away! what art thou? + +FLAVIUS: +Have you forgot me, sir? + +TIMON: +Why dost ask that? I have forgot all men; +Then, if thou grant'st thou'rt a man, I have forgot thee. + +FLAVIUS: +An honest poor servant of yours. + +TIMON: +Then I know thee not: +I never had honest man about me, I; all +I kept were knaves, to serve in meat to villains. + +FLAVIUS: +The gods are witness, +Ne'er did poor steward wear a truer grief +For his undone lord than mine eyes for you. + +TIMON: +What, dost thou weep? Come nearer. Then I +love thee, +Because thou art a woman, and disclaim'st +Flinty mankind; whose eyes do never give +But thorough lust and laughter. Pity's sleeping: +Strange times, that weep with laughing, not with weeping! + +FLAVIUS: +I beg of you to know me, good my lord, +To accept my grief and whilst this poor wealth lasts +To entertain me as your steward still. + +TIMON: +Had I a steward +So true, so just, and now so comfortable? +It almost turns my dangerous nature mild. +Let me behold thy face. Surely, this man +Was born of woman. +Forgive my general and exceptless rashness, +You perpetual-sober gods! I do proclaim +One honest man--mistake me not--but one; +No more, I pray,--and he's a steward. +How fain would I have hated all mankind! +And thou redeem'st thyself: but all, save thee, +I fell with curses. +Methinks thou art more honest now than wise; +For, by oppressing and betraying me, +Thou mightst have sooner got another service: +For many so arrive at second masters, +Upon their first lord's neck. But tell me true-- +For I must ever doubt, though ne'er so sure-- +Is not thy kindness subtle, covetous, +If not a usuring kindness, and, as rich men deal gifts, +Expecting in return twenty for one? + +FLAVIUS: +No, my most worthy master; in whose breast +Doubt and suspect, alas, are placed too late: +You should have fear'd false times when you did feast: +Suspect still comes where an estate is least. +That which I show, heaven knows, is merely love, +Duty and zeal to your unmatched mind, +Care of your food and living; and, believe it, +My most honour'd lord, +For any benefit that points to me, +Either in hope or present, I'ld exchange +For this one wish, that you had power and wealth +To requite me, by making rich yourself. + +TIMON: +Look thee, 'tis so! Thou singly honest man, +Here, take: the gods out of my misery +Have sent thee treasure. Go, live rich and happy; +But thus condition'd: thou shalt build from men; +Hate all, curse all, show charity to none, +But let the famish'd flesh slide from the bone, +Ere thou relieve the beggar; give to dogs +What thou deny'st to men; let prisons swallow 'em, +Debts wither 'em to nothing; be men like +blasted woods, +And may diseases lick up their false bloods! +And so farewell and thrive. + +FLAVIUS: +O, let me stay, +And comfort you, my master. + +TIMON: +If thou hatest curses, +Stay not; fly, whilst thou art blest and free: +Ne'er see thou man, and let me ne'er see thee. + +Painter: +As I took note of the place, it cannot be far where +he abides. + +Poet: +What's to be thought of him? does the rumour hold +for true, that he's so full of gold? + +Painter: +Certain: Alcibiades reports it; Phrynia and +Timandra had gold of him: he likewise enriched poor +straggling soldiers with great quantity: 'tis said +he gave unto his steward a mighty sum. + +Poet: +Then this breaking of his has been but a try for his friends. + +Painter: +Nothing else: you shall see him a palm in Athens +again, and flourish with the highest. Therefore +'tis not amiss we tender our loves to him, in this +supposed distress of his: it will show honestly in +us; and is very likely to load our purposes with +what they travail for, if it be a just true report +that goes of his having. + +Poet: +What have you now to present unto him? + +Painter: +Nothing at this time but my visitation: only I will +promise him an excellent piece. + +Poet: +I must serve him so too, tell him of an intent +that's coming toward him. + +Painter: +Good as the best. Promising is the very air o' the +time: it opens the eyes of expectation: +performance is ever the duller for his act; and, +but in the plainer and simpler kind of people, the +deed of saying is quite out of use. To promise is +most courtly and fashionable: performance is a kind +of will or testament which argues a great sickness +in his judgment that makes it. + +TIMON: + +Poet: +I am thinking what I shall say I have provided for +him: it must be a personating of himself; a satire +against the softness of prosperity, with a discovery +of the infinite flatteries that follow youth and opulency. + +TIMON: + +Poet: +Nay, let's seek him: +Then do we sin against our own estate, +When we may profit meet, and come too late. + +Painter: +True; +When the day serves, before black-corner'd night, +Find what thou want'st by free and offer'd light. Come. + +TIMON: + +Poet: +Hail, worthy Timon! + +Painter: +Our late noble master! + +TIMON: +Have I once lived to see two honest men? + +Poet: +Sir, +Having often of your open bounty tasted, +Hearing you were retired, your friends fall'n off, +Whose thankless natures--O abhorred spirits!-- +Not all the whips of heaven are large enough: +What! to you, +Whose star-like nobleness gave life and influence +To their whole being! I am rapt and cannot cover +The monstrous bulk of this ingratitude +With any size of words. + +TIMON: +Let it go naked, men may see't the better: +You that are honest, by being what you are, +Make them best seen and known. + +Painter: +He and myself +Have travail'd in the great shower of your gifts, +And sweetly felt it. + +TIMON: +Ay, you are honest men. + +Painter: +We are hither come to offer you our service. + +TIMON: +Most honest men! Why, how shall I requite you? +Can you eat roots, and drink cold water? no. + +Both: +What we can do, we'll do, to do you service. + +TIMON: +Ye're honest men: ye've heard that I have gold; +I am sure you have: speak truth; ye're honest men. + +Painter: +So it is said, my noble lord; but therefore +Came not my friend nor I. + +TIMON: +Good honest men! Thou draw'st a counterfeit +Best in all Athens: thou'rt, indeed, the best; +Thou counterfeit'st most lively. + +Painter: +So, so, my lord. + +TIMON: +E'en so, sir, as I say. And, for thy fiction, +Why, thy verse swells with stuff so fine and smooth +That thou art even natural in thine art. +But, for all this, my honest-natured friends, +I must needs say you have a little fault: +Marry, 'tis not monstrous in you, neither wish I +You take much pains to mend. + +Both: +Beseech your honour +To make it known to us. + +TIMON: +You'll take it ill. + +Both: +Most thankfully, my lord. + +TIMON: +Will you, indeed? + +Both: +Doubt it not, worthy lord. + +TIMON: +There's never a one of you but trusts a knave, +That mightily deceives you. + +Both: +Do we, my lord? + +TIMON: +Ay, and you hear him cog, see him dissemble, +Know his gross patchery, love him, feed him, +Keep in your bosom: yet remain assured +That he's a made-up villain. + +Painter: +I know none such, my lord. + +Poet: +Nor I. + +TIMON: +Look you, I love you well; I'll give you gold, +Rid me these villains from your companies: +Hang them or stab them, drown them in a draught, +Confound them by some course, and come to me, +I'll give you gold enough. + +Both: +Name them, my lord, let's know them. + +TIMON: +You that way and you this, but two in company; +Each man apart, all single and alone, +Yet an arch-villain keeps him company. +If where thou art two villains shall not be, +Come not near him. If thou wouldst not reside +But where one villain is, then him abandon. +Hence, pack! there's gold; you came for gold, ye slaves: +You have work'd for me; there's payment for you: hence! +You are an alchemist; make gold of that. +Out, rascal dogs! + +FLAVIUS: +It is in vain that you would speak with Timon; +For he is set so only to himself +That nothing but himself which looks like man +Is friendly with him. + +First Senator: +Bring us to his cave: +It is our part and promise to the Athenians +To speak with Timon. + +Second Senator: +At all times alike +Men are not still the same: 'twas time and griefs +That framed him thus: time, with his fairer hand, +Offering the fortunes of his former days, +The former man may make him. Bring us to him, +And chance it as it may. + +FLAVIUS: +Here is his cave. +Peace and content be here! Lord Timon! Timon! +Look out, and speak to friends: the Athenians, +By two of their most reverend senate, greet thee: +Speak to them, noble Timon. + +TIMON: +Thou sun, that comfort'st, burn! Speak, and +be hang'd: +For each true word, a blister! and each false +Be as cauterizing to the root o' the tongue, +Consuming it with speaking! + +First Senator: +Worthy Timon,-- + +TIMON: +Of none but such as you, and you of Timon. + +First Senator: +The senators of Athens greet thee, Timon. + +TIMON: +I thank them; and would send them back the plague, +Could I but catch it for them. + +First Senator: +O, forget +What we are sorry for ourselves in thee. +The senators with one consent of love +Entreat thee back to Athens; who have thought +On special dignities, which vacant lie +For thy best use and wearing. + +Second Senator: +They confess +Toward thee forgetfulness too general, gross: +Which now the public body, which doth seldom +Play the recanter, feeling in itself +A lack of Timon's aid, hath sense withal +Of its own fail, restraining aid to Timon; +And send forth us, to make their sorrow'd render, +Together with a recompense more fruitful +Than their offence can weigh down by the dram; +Ay, even such heaps and sums of love and wealth +As shall to thee blot out what wrongs were theirs +And write in thee the figures of their love, +Ever to read them thine. + +TIMON: +You witch me in it; +Surprise me to the very brink of tears: +Lend me a fool's heart and a woman's eyes, +And I'll beweep these comforts, worthy senators. + +First Senator: +Therefore, so please thee to return with us +And of our Athens, thine and ours, to take +The captainship, thou shalt be met with thanks, +Allow'd with absolute power and thy good name +Live with authority: so soon we shall drive back +Of Alcibiades the approaches wild, +Who, like a boar too savage, doth root up +His country's peace. + +Second Senator: +And shakes his threatening sword +Against the walls of Athens. + +First Senator: +Therefore, Timon,-- + +TIMON: +Well, sir, I will; therefore, I will, sir; thus: +If Alcibiades kill my countrymen, +Let Alcibiades know this of Timon, +That Timon cares not. But if be sack fair Athens, +And take our goodly aged men by the beards, +Giving our holy virgins to the stain +Of contumelious, beastly, mad-brain'd war, +Then let him know, and tell him Timon speaks it, +In pity of our aged and our youth, +I cannot choose but tell him, that I care not, +And let him take't at worst; for their knives care not, +While you have throats to answer: for myself, +There's not a whittle in the unruly camp +But I do prize it at my love before +The reverend'st throat in Athens. So I leave you +To the protection of the prosperous gods, +As thieves to keepers. + +FLAVIUS: +Stay not, all's in vain. + +TIMON: +Why, I was writing of my epitaph; +it will be seen to-morrow: my long sickness +Of health and living now begins to mend, +And nothing brings me all things. Go, live still; +Be Alcibiades your plague, you his, +And last so long enough! + +First Senator: +We speak in vain. + +TIMON: +But yet I love my country, and am not +One that rejoices in the common wreck, +As common bruit doth put it. + +First Senator: +That's well spoke. + +TIMON: +Commend me to my loving countrymen,-- + +First Senator: +These words become your lips as they pass +thorough them. + +Second Senator: +And enter in our ears like great triumphers +In their applauding gates. + +TIMON: +Commend me to them, +And tell them that, to ease them of their griefs, +Their fears of hostile strokes, their aches, losses, +Their pangs of love, with other incident throes +That nature's fragile vessel doth sustain +In life's uncertain voyage, I will some kindness do them: +I'll teach them to prevent wild Alcibiades' wrath. + +First Senator: +I like this well; he will return again. + +TIMON: +I have a tree, which grows here in my close, +That mine own use invites me to cut down, +And shortly must I fell it: tell my friends, +Tell Athens, in the sequence of degree +From high to low throughout, that whoso please +To stop affliction, let him take his haste, +Come hither, ere my tree hath felt the axe, +And hang himself. I pray you, do my greeting. + +FLAVIUS: +Trouble him no further; thus you still shall find him. + +TIMON: +Come not to me again: but say to Athens, +Timon hath made his everlasting mansion +Upon the beached verge of the salt flood; +Who once a day with his embossed froth +The turbulent surge shall cover: thither come, +And let my grave-stone be your oracle. +Lips, let sour words go by and language end: +What is amiss plague and infection mend! +Graves only be men's works and death their gain! +Sun, hide thy beams! Timon hath done his reign. + +First Senator: +His discontents are unremoveably +Coupled to nature. + +Second Senator: +Our hope in him is dead: let us return, +And strain what other means is left unto us +In our dear peril. + +First Senator: +It requires swift foot. + +First Senator: +Thou hast painfully discover'd: are his files +As full as thy report? + +Messenger: +have spoke the least: +Besides, his expedition promises +Present approach. + +Second Senator: +We stand much hazard, if they bring not Timon. + +Messenger: +I met a courier, one mine ancient friend; +Whom, though in general part we were opposed, +Yet our old love made a particular force, +And made us speak like friends: this man was riding +From Alcibiades to Timon's cave, +With letters of entreaty, which imported +His fellowship i' the cause against your city, +In part for his sake moved. + +First Senator: +Here come our brothers. + +Third Senator: +No talk of Timon, nothing of him expect. +The enemies' drum is heard, and fearful scouring +Doth choke the air with dust: in, and prepare: +Ours is the fall, I fear; our foes the snare. + +Soldier: +By all description this should be the place. +Who's here? speak, ho! No answer! What is this? +Timon is dead, who hath outstretch'd his span: +Some beast rear'd this; there does not live a man. +Dead, sure; and this his grave. What's on this tomb +I cannot read; the character I'll take with wax: +Our captain hath in every figure skill, +An aged interpreter, though young in days: +Before proud Athens he's set down by this, +Whose fall the mark of his ambition is. + +ALCIBIADES: +Sound to this coward and lascivious town +Our terrible approach. +Till now you have gone on and fill'd the time +With all licentious measure, making your wills +The scope of justice; till now myself and such +As slept within the shadow of your power +Have wander'd with our traversed arms and breathed +Our sufferance vainly: now the time is flush, +When crouching marrow in the bearer strong +Cries of itself 'No more:' now breathless wrong +Shall sit and pant in your great chairs of ease, +And pursy insolence shall break his wind +With fear and horrid flight. + +First Senator: +Noble and young, +When thy first griefs were but a mere conceit, +Ere thou hadst power or we had cause of fear, +We sent to thee, to give thy rages balm, +To wipe out our ingratitude with loves +Above their quantity. + +Second Senator: +So did we woo +Transformed Timon to our city's love +By humble message and by promised means: +We were not all unkind, nor all deserve +The common stroke of war. + +First Senator: +These walls of ours +Were not erected by their hands from whom +You have received your griefs; nor are they such +That these great towers, trophies and schools +should fall +For private faults in them. + +Second Senator: +Nor are they living +Who were the motives that you first went out; +Shame that they wanted cunning, in excess +Hath broke their hearts. March, noble lord, +Into our city with thy banners spread: +By decimation, and a tithed death-- +If thy revenges hunger for that food +Which nature loathes--take thou the destined tenth, +And by the hazard of the spotted die +Let die the spotted. + +First Senator: +All have not offended; +For those that were, it is not square to take +On those that are, revenges: crimes, like lands, +Are not inherited. Then, dear countryman, +Bring in thy ranks, but leave without thy rage: +Spare thy Athenian cradle and those kin +Which in the bluster of thy wrath must fall +With those that have offended: like a shepherd, +Approach the fold and cull the infected forth, +But kill not all together. + +Second Senator: +What thou wilt, +Thou rather shalt enforce it with thy smile +Than hew to't with thy sword. + +First Senator : +Set but thy foot +Against our rampired gates, and they shall ope; +So thou wilt send thy gentle heart before, +To say thou'lt enter friendly. + +Second Senator: +Throw thy glove, +Or any token of thine honour else, +That thou wilt use the wars as thy redress +And not as our confusion, all thy powers +Shall make their harbour in our town, till we +Have seal'd thy full desire. + +ALCIBIADES: +Then there's my glove; +Descend, and open your uncharged ports: +Those enemies of Timon's and mine own +Whom you yourselves shall set out for reproof +Fall and no more: and, to atone your fears +With my more noble meaning, not a man +Shall pass his quarter, or offend the stream +Of regular justice in your city's bounds, +But shall be render'd to your public laws +At heaviest answer. + +Both: +'Tis most nobly spoken. + +ALCIBIADES: +Descend, and keep your words. + +Soldier: +My noble general, Timon is dead; +Entomb'd upon the very hem o' the sea; +And on his grave-stone this insculpture, which +With wax I brought away, whose soft impression +Interprets for my poor ignorance. + +ALCIBIADES: + +First Gentleman: +You do not meet a man but frowns: our bloods +No more obey the heavens than our courtiers +Still seem as does the king. + +Second Gentleman: +But what's the matter? + +First Gentleman: +His daughter, and the heir of's kingdom, whom +He purposed to his wife's sole son--a widow +That late he married--hath referr'd herself +Unto a poor but worthy gentleman: she's wedded; +Her husband banish'd; she imprison'd: all +Is outward sorrow; though I think the king +Be touch'd at very heart. + +Second Gentleman: +None but the king? + +First Gentleman: +He that hath lost her too; so is the queen, +That most desired the match; but not a courtier, +Although they wear their faces to the bent +Of the king's look's, hath a heart that is not +Glad at the thing they scowl at. + +Second Gentleman: +And why so? + +First Gentleman: +He that hath miss'd the princess is a thing +Too bad for bad report: and he that hath her-- +I mean, that married her, alack, good man! +And therefore banish'd--is a creature such +As, to seek through the regions of the earth +For one his like, there would be something failing +In him that should compare. I do not think +So fair an outward and such stuff within +Endows a man but he. + +Second Gentleman: +You speak him far. + +First Gentleman: +I do extend him, sir, within himself, +Crush him together rather than unfold +His measure duly. + +Second Gentleman: +What's his name and birth? + +First Gentleman: +I cannot delve him to the root: his father +Was call'd Sicilius, who did join his honour +Against the Romans with Cassibelan, +But had his titles by Tenantius whom +He served with glory and admired success, +So gain'd the sur-addition Leonatus; +And had, besides this gentleman in question, +Two other sons, who in the wars o' the time +Died with their swords in hand; for which +their father, +Then old and fond of issue, took such sorrow +That he quit being, and his gentle lady, +Big of this gentleman our theme, deceased +As he was born. The king he takes the babe +To his protection, calls him Posthumus Leonatus, +Breeds him and makes him of his bed-chamber, +Puts to him all the learnings that his time +Could make him the receiver of; which he took, +As we do air, fast as 'twas minister'd, +And in's spring became a harvest, lived in court-- +Which rare it is to do--most praised, most loved, +A sample to the youngest, to the more mature +A glass that feated them, and to the graver +A child that guided dotards; to his mistress, +For whom he now is banish'd, her own price +Proclaims how she esteem'd him and his virtue; +By her election may be truly read +What kind of man he is. + +Second Gentleman: +I honour him +Even out of your report. But, pray you, tell me, +Is she sole child to the king? + +First Gentleman: +His only child. +He had two sons: if this be worth your hearing, +Mark it: the eldest of them at three years old, +I' the swathing-clothes the other, from their nursery +Were stol'n, and to this hour no guess in knowledge +Which way they went. + +Second Gentleman: +How long is this ago? + +First Gentleman: +Some twenty years. + +Second Gentleman: +That a king's children should be so convey'd, +So slackly guarded, and the search so slow, +That could not trace them! + +First Gentleman: +Howsoe'er 'tis strange, +Or that the negligence may well be laugh'd at, +Yet is it true, sir. + +Second Gentleman: +I do well believe you. + +First Gentleman: +We must forbear: here comes the gentleman, +The queen, and princess. + +QUEEN: +No, be assured you shall not find me, daughter, +After the slander of most stepmothers, +Evil-eyed unto you: you're my prisoner, but +Your gaoler shall deliver you the keys +That lock up your restraint. For you, Posthumus, +So soon as I can win the offended king, +I will be known your advocate: marry, yet +The fire of rage is in him, and 'twere good +You lean'd unto his sentence with what patience +Your wisdom may inform you. + +POSTHUMUS LEONATUS: +Please your highness, +I will from hence to-day. + +QUEEN: +You know the peril. +I'll fetch a turn about the garden, pitying +The pangs of barr'd affections, though the king +Hath charged you should not speak together. + +IMOGEN: +O +Dissembling courtesy! How fine this tyrant +Can tickle where she wounds! My dearest husband, +I something fear my father's wrath; but nothing-- +Always reserved my holy duty--what +His rage can do on me: you must be gone; +And I shall here abide the hourly shot +Of angry eyes, not comforted to live, +But that there is this jewel in the world +That I may see again. + +POSTHUMUS LEONATUS: +My queen! my mistress! +O lady, weep no more, lest I give cause +To be suspected of more tenderness +Than doth become a man. I will remain +The loyal'st husband that did e'er plight troth: +My residence in Rome at one Philario's, +Who to my father was a friend, to me +Known but by letter: thither write, my queen, +And with mine eyes I'll drink the words you send, +Though ink be made of gall. + +QUEEN: +Be brief, I pray you: +If the king come, I shall incur I know not +How much of his displeasure. +Yet I'll move him +To walk this way: I never do him wrong, +But he does buy my injuries, to be friends; +Pays dear for my offences. + +POSTHUMUS LEONATUS: +Should we be taking leave +As long a term as yet we have to live, +The loathness to depart would grow. Adieu! + +IMOGEN: +Nay, stay a little: +Were you but riding forth to air yourself, +Such parting were too petty. Look here, love; +This diamond was my mother's: take it, heart; +But keep it till you woo another wife, +When Imogen is dead. + +POSTHUMUS LEONATUS: +How, how! another? +You gentle gods, give me but this I have, +And sear up my embracements from a next +With bonds of death! +Remain, remain thou here +While sense can keep it on. And, sweetest, fairest, +As I my poor self did exchange for you, +To your so infinite loss, so in our trifles +I still win of you: for my sake wear this; +It is a manacle of love; I'll place it +Upon this fairest prisoner. + +IMOGEN: +O the gods! +When shall we see again? + +POSTHUMUS LEONATUS: +Alack, the king! + +CYMBELINE: +Thou basest thing, avoid! hence, from my sight! +If after this command thou fraught the court +With thy unworthiness, thou diest: away! +Thou'rt poison to my blood. + +POSTHUMUS LEONATUS: +The gods protect you! +And bless the good remainders of the court! I am gone. + +IMOGEN: +There cannot be a pinch in death +More sharp than this is. + +CYMBELINE: +O disloyal thing, +That shouldst repair my youth, thou heap'st +A year's age on me. + +IMOGEN: +I beseech you, sir, +Harm not yourself with your vexation +I am senseless of your wrath; a touch more rare +Subdues all pangs, all fears. + +CYMBELINE: +Past grace? obedience? + +IMOGEN: +Past hope, and in despair; that way, past grace. + +CYMBELINE: +That mightst have had the sole son of my queen! + +IMOGEN: +O blest, that I might not! I chose an eagle, +And did avoid a puttock. + +CYMBELINE: +Thou took'st a beggar; wouldst have made my throne +A seat for baseness. + +IMOGEN: +No; I rather added +A lustre to it. + +CYMBELINE: +O thou vile one! + +IMOGEN: +Sir, +It is your fault that I have loved Posthumus: +You bred him as my playfellow, and he is +A man worth any woman, overbuys me +Almost the sum he pays. + +CYMBELINE: +What, art thou mad? + +IMOGEN: +Almost, sir: heaven restore me! Would I were +A neat-herd's daughter, and my Leonatus +Our neighbour shepherd's son! + +CYMBELINE: +Thou foolish thing! +They were again together: you have done +Not after our command. Away with her, +And pen her up. + +QUEEN: +Beseech your patience. Peace, +Dear lady daughter, peace! Sweet sovereign, +Leave us to ourselves; and make yourself some comfort +Out of your best advice. + +CYMBELINE: +Nay, let her languish +A drop of blood a day; and, being aged, +Die of this folly! + +QUEEN: +Fie! you must give way. +Here is your servant. How now, sir! What news? + +PISANIO: +My lord your son drew on my master. + +QUEEN: +Ha! +No harm, I trust, is done? + +PISANIO: +There might have been, +But that my master rather play'd than fought +And had no help of anger: they were parted +By gentlemen at hand. + +QUEEN: +I am very glad on't. + +IMOGEN: +Your son's my father's friend; he takes his part. +To draw upon an exile! O brave sir! +I would they were in Afric both together; +Myself by with a needle, that I might prick +The goer-back. Why came you from your master? + +PISANIO: +On his command: he would not suffer me +To bring him to the haven; left these notes +Of what commands I should be subject to, +When 't pleased you to employ me. + +QUEEN: +This hath been +Your faithful servant: I dare lay mine honour +He will remain so. + +PISANIO: +I humbly thank your highness. + +QUEEN: +Pray, walk awhile. + +IMOGEN: +About some half-hour hence, +I pray you, speak with me: you shall at least +Go see my lord aboard: for this time leave me. + +First Lord: +Sir, I would advise you to shift a shirt; the +violence of action hath made you reek as a +sacrifice: where air comes out, air comes in: +there's none abroad so wholesome as that you vent. + +CLOTEN: +If my shirt were bloody, then to shift it. Have I hurt him? + +Second Lord: + +First Lord: +Hurt him! his body's a passable carcass, if he be +not hurt: it is a thoroughfare for steel, if it be not hurt. + +Second Lord: + +CLOTEN: +The villain would not stand me. + +Second Lord: + +First Lord: +Stand you! You have land enough of your own: but +he added to your having; gave you some ground. + +Second Lord: + +CLOTEN: +I would they had not come between us. + +Second Lord: + +CLOTEN: +And that she should love this fellow and refuse me! + +Second Lord: + +First Lord: +Sir, as I told you always, her beauty and her brain +go not together: she's a good sign, but I have seen +small reflection of her wit. + +Second Lord: + +CLOTEN: +Come, I'll to my chamber. Would there had been some +hurt done! + +Second Lord: + +CLOTEN: +You'll go with us? + +First Lord: +I'll attend your lordship. + +CLOTEN: +Nay, come, let's go together. + +Second Lord: +Well, my lord. + +IMOGEN: +I would thou grew'st unto the shores o' the haven, +And question'dst every sail: if he should write +And not have it, 'twere a paper lost, +As offer'd mercy is. What was the last +That he spake to thee? + +PISANIO: +It was his queen, his queen! + +IMOGEN: +Then waved his handkerchief? + +PISANIO: +And kiss'd it, madam. + +IMOGEN: +Senseless Linen! happier therein than I! +And that was all? + +PISANIO: +No, madam; for so long +As he could make me with this eye or ear +Distinguish him from others, he did keep +The deck, with glove, or hat, or handkerchief, +Still waving, as the fits and stirs of 's mind +Could best express how slow his soul sail'd on, +How swift his ship. + +IMOGEN: +Thou shouldst have made him +As little as a crow, or less, ere left +To after-eye him. + +PISANIO: +Madam, so I did. + +IMOGEN: +I would have broke mine eye-strings; crack'd them, but +To look upon him, till the diminution +Of space had pointed him sharp as my needle, +Nay, follow'd him, till he had melted from +The smallness of a gnat to air, and then +Have turn'd mine eye and wept. But, good Pisanio, +When shall we hear from him? + +PISANIO: +Be assured, madam, +With his next vantage. + +IMOGEN: +I did not take my leave of him, but had +Most pretty things to say: ere I could tell him +How I would think on him at certain hours +Such thoughts and such, or I could make him swear +The shes of Italy should not betray +Mine interest and his honour, or have charged him, +At the sixth hour of morn, at noon, at midnight, +To encounter me with orisons, for then +I am in heaven for him; or ere I could +Give him that parting kiss which I had set +Betwixt two charming words, comes in my father +And like the tyrannous breathing of the north +Shakes all our buds from growing. + +Lady: +The queen, madam, +Desires your highness' company. + +IMOGEN: +Those things I bid you do, get them dispatch'd. +I will attend the queen. + +PISANIO: +Madam, I shall. + +IACHIMO: +Believe it, sir, I have seen him in Britain: he was +then of a crescent note, expected to prove so worthy +as since he hath been allowed the name of; but I +could then have looked on him without the help of +admiration, though the catalogue of his endowments +had been tabled by his side and I to peruse him by items. + +PHILARIO: +You speak of him when he was less furnished than now +he is with that which makes him both without and within. + +Frenchman: +I have seen him in France: we had very many there +could behold the sun with as firm eyes as he. + +IACHIMO: +This matter of marrying his king's daughter, wherein +he must be weighed rather by her value than his own, +words him, I doubt not, a great deal from the matter. + +Frenchman: +And then his banishment. + +IACHIMO: +Ay, and the approbation of those that weep this +lamentable divorce under her colours are wonderfully +to extend him; be it but to fortify her judgment, +which else an easy battery might lay flat, for +taking a beggar without less quality. But how comes +it he is to sojourn with you? How creeps +acquaintance? + +PHILARIO: +His father and I were soldiers together; to whom I +have been often bound for no less than my life. +Here comes the Briton: let him be so entertained +amongst you as suits, with gentlemen of your +knowing, to a stranger of his quality. +I beseech you all, be better known to this +gentleman; whom I commend to you as a noble friend +of mine: how worthy he is I will leave to appear +hereafter, rather than story him in his own hearing. + +Frenchman: +Sir, we have known together in Orleans. + +POSTHUMUS LEONATUS: +Since when I have been debtor to you for courtesies, +which I will be ever to pay and yet pay still. + +Frenchman: +Sir, you o'er-rate my poor kindness: I was glad I +did atone my countryman and you; it had been pity +you should have been put together with so mortal a +purpose as then each bore, upon importance of so +slight and trivial a nature. + +POSTHUMUS LEONATUS: +By your pardon, sir, I was then a young traveller; +rather shunned to go even with what I heard than in +my every action to be guided by others' experiences: +but upon my mended judgment--if I offend not to say +it is mended--my quarrel was not altogether slight. + +Frenchman: +'Faith, yes, to be put to the arbitrement of swords, +and by such two that would by all likelihood have +confounded one the other, or have fallen both. + +IACHIMO: +Can we, with manners, ask what was the difference? + +Frenchman: +Safely, I think: 'twas a contention in public, +which may, without contradiction, suffer the report. +It was much like an argument that fell out last +night, where each of us fell in praise of our +country mistresses; this gentleman at that time +vouching--and upon warrant of bloody +affirmation--his to be more fair, virtuous, wise, +chaste, constant-qualified and less attemptable +than any the rarest of our ladies in France. + +IACHIMO: +That lady is not now living, or this gentleman's +opinion by this worn out. + +POSTHUMUS LEONATUS: +She holds her virtue still and I my mind. + +IACHIMO: +You must not so far prefer her 'fore ours of Italy. + +POSTHUMUS LEONATUS: +Being so far provoked as I was in France, I would +abate her nothing, though I profess myself her +adorer, not her friend. + +IACHIMO: +As fair and as good--a kind of hand-in-hand +comparison--had been something too fair and too good +for any lady in Britain. If she went before others +I have seen, as that diamond of yours outlustres +many I have beheld. I could not but believe she +excelled many: but I have not seen the most +precious diamond that is, nor you the lady. + +POSTHUMUS LEONATUS: +I praised her as I rated her: so do I my stone. + +IACHIMO: +What do you esteem it at? + +POSTHUMUS LEONATUS: +More than the world enjoys. + +IACHIMO: +Either your unparagoned mistress is dead, or she's +outprized by a trifle. + +POSTHUMUS LEONATUS: +You are mistaken: the one may be sold, or given, if +there were wealth enough for the purchase, or merit +for the gift: the other is not a thing for sale, +and only the gift of the gods. + +IACHIMO: +Which the gods have given you? + +POSTHUMUS LEONATUS: +Which, by their graces, I will keep. + +IACHIMO: +You may wear her in title yours: but, you know, +strange fowl light upon neighbouring ponds. Your +ring may be stolen too: so your brace of unprizable +estimations; the one is but frail and the other +casual; a cunning thief, or a that way accomplished +courtier, would hazard the winning both of first and last. + +POSTHUMUS LEONATUS: +Your Italy contains none so accomplished a courtier +to convince the honour of my mistress, if, in the +holding or loss of that, you term her frail. I do +nothing doubt you have store of thieves; +notwithstanding, I fear not my ring. + +PHILARIO: +Let us leave here, gentlemen. + +POSTHUMUS LEONATUS: +Sir, with all my heart. This worthy signior, I +thank him, makes no stranger of me; we are familiar at first. + +IACHIMO: +With five times so much conversation, I should get +ground of your fair mistress, make her go back, even +to the yielding, had I admittance and opportunity to friend. + +POSTHUMUS LEONATUS: +No, no. + +IACHIMO: +I dare thereupon pawn the moiety of my estate to +your ring; which, in my opinion, o'ervalues it +something: but I make my wager rather against your +confidence than her reputation: and, to bar your +offence herein too, I durst attempt it against any +lady in the world. + +POSTHUMUS LEONATUS: +You are a great deal abused in too bold a +persuasion; and I doubt not you sustain what you're +worthy of by your attempt. + +IACHIMO: +What's that? + +POSTHUMUS LEONATUS: +A repulse: though your attempt, as you call it, +deserve more; a punishment too. + +PHILARIO: +Gentlemen, enough of this: it came in too suddenly; +let it die as it was born, and, I pray you, be +better acquainted. + +IACHIMO: +Would I had put my estate and my neighbour's on the +approbation of what I have spoke! + +POSTHUMUS LEONATUS: +What lady would you choose to assail? + +IACHIMO: +Yours; whom in constancy you think stands so safe. +I will lay you ten thousand ducats to your ring, +that, commend me to the court where your lady is, +with no more advantage than the opportunity of a +second conference, and I will bring from thence +that honour of hers which you imagine so reserved. + +POSTHUMUS LEONATUS: +I will wage against your gold, gold to it: my ring +I hold dear as my finger; 'tis part of it. + +IACHIMO: +You are afraid, and therein the wiser. If you buy +ladies' flesh at a million a dram, you cannot +preserve it from tainting: but I see you have some +religion in you, that you fear. + +POSTHUMUS LEONATUS: +This is but a custom in your tongue; you bear a +graver purpose, I hope. + +IACHIMO: +I am the master of my speeches, and would undergo +what's spoken, I swear. + +POSTHUMUS LEONATUS: +Will you? I shall but lend my diamond till your +return: let there be covenants drawn between's: my +mistress exceeds in goodness the hugeness of your +unworthy thinking: I dare you to this match: here's my ring. + +PHILARIO: +I will have it no lay. + +IACHIMO: +By the gods, it is one. If I bring you no +sufficient testimony that I have enjoyed the dearest +bodily part of your mistress, my ten thousand ducats +are yours; so is your diamond too: if I come off, +and leave her in such honour as you have trust in, +she your jewel, this your jewel, and my gold are +yours: provided I have your commendation for my more +free entertainment. + +POSTHUMUS LEONATUS: +I embrace these conditions; let us have articles +betwixt us. Only, thus far you shall answer: if +you make your voyage upon her and give me directly +to understand you have prevailed, I am no further +your enemy; she is not worth our debate: if she +remain unseduced, you not making it appear +otherwise, for your ill opinion and the assault you +have made to her chastity you shall answer me with +your sword. + +IACHIMO: +Your hand; a covenant: we will have these things set +down by lawful counsel, and straight away for +Britain, lest the bargain should catch cold and +starve: I will fetch my gold and have our two +wagers recorded. + +POSTHUMUS LEONATUS: +Agreed. + +Frenchman: +Will this hold, think you? + +PHILARIO: +Signior Iachimo will not from it. +Pray, let us follow 'em. + +QUEEN: +Whiles yet the dew's on ground, gather those flowers; +Make haste: who has the note of them? + +First Lady: +I, madam. + +QUEEN: +Dispatch. +Now, master doctor, have you brought those drugs? + +CORNELIUS: +Pleaseth your highness, ay: here they are, madam: +But I beseech your grace, without offence,-- +My conscience bids me ask--wherefore you have +Commanded of me those most poisonous compounds, +Which are the movers of a languishing death; +But though slow, deadly? + +QUEEN: +I wonder, doctor, +Thou ask'st me such a question. Have I not been +Thy pupil long? Hast thou not learn'd me how +To make perfumes? distil? preserve? yea, so +That our great king himself doth woo me oft +For my confections? Having thus far proceeded,-- +Unless thou think'st me devilish--is't not meet +That I did amplify my judgment in +Other conclusions? I will try the forces +Of these thy compounds on such creatures as +We count not worth the hanging, but none human, +To try the vigour of them and apply +Allayments to their act, and by them gather +Their several virtues and effects. + +CORNELIUS: +Your highness +Shall from this practise but make hard your heart: +Besides, the seeing these effects will be +Both noisome and infectious. + +QUEEN: +O, content thee. +Here comes a flattering rascal; upon him +Will I first work: he's for his master, +An enemy to my son. How now, Pisanio! +Doctor, your service for this time is ended; +Take your own way. + +CORNELIUS: + +QUEEN: + +CORNELIUS: + +QUEEN: +No further service, doctor, +Until I send for thee. + +CORNELIUS: +I humbly take my leave. + +QUEEN: +Weeps she still, say'st thou? Dost thou think in time +She will not quench and let instructions enter +Where folly now possesses? Do thou work: +When thou shalt bring me word she loves my son, +I'll tell thee on the instant thou art then +As great as is thy master, greater, for +His fortunes all lie speechless and his name +Is at last gasp: return he cannot, nor +Continue where he is: to shift his being +Is to exchange one misery with another, +And every day that comes comes to decay +A day's work in him. What shalt thou expect, +To be depender on a thing that leans, +Who cannot be new built, nor has no friends, +So much as but to prop him? +Thou takest up +Thou know'st not what; but take it for thy labour: +It is a thing I made, which hath the king +Five times redeem'd from death: I do not know +What is more cordial. Nay, I prethee, take it; +It is an earnest of a further good +That I mean to thee. Tell thy mistress how +The case stands with her; do't as from thyself. +Think what a chance thou changest on, but think +Thou hast thy mistress still, to boot, my son, +Who shall take notice of thee: I'll move the king +To any shape of thy preferment such +As thou'lt desire; and then myself, I chiefly, +That set thee on to this desert, am bound +To load thy merit richly. Call my women: +Think on my words. +A sly and constant knave, +Not to be shaked; the agent for his master +And the remembrancer of her to hold +The hand-fast to her lord. I have given him that +Which, if he take, shall quite unpeople her +Of liegers for her sweet, and which she after, +Except she bend her humour, shall be assured +To taste of too. +So, so: well done, well done: +The violets, cowslips, and the primroses, +Bear to my closet. Fare thee well, Pisanio; +Think on my words. + +PISANIO: +And shall do: +But when to my good lord I prove untrue, +I'll choke myself: there's all I'll do for you. + +IMOGEN: +A father cruel, and a step-dame false; +A foolish suitor to a wedded lady, +That hath her husband banish'd;--O, that husband! +My supreme crown of grief! and those repeated +Vexations of it! Had I been thief-stol'n, +As my two brothers, happy! but most miserable +Is the desire that's glorious: blest be those, +How mean soe'er, that have their honest wills, +Which seasons comfort. Who may this be? Fie! + +PISANIO: +Madam, a noble gentleman of Rome, +Comes from my lord with letters. + +IACHIMO: +Change you, madam? +The worthy Leonatus is in safety +And greets your highness dearly. + +IMOGEN: +Thanks, good sir: +You're kindly welcome. + +IACHIMO: + +IMOGEN: + +IACHIMO: +Thanks, fairest lady. +What, are men mad? Hath nature given them eyes +To see this vaulted arch, and the rich crop +Of sea and land, which can distinguish 'twixt +The fiery orbs above and the twinn'd stones +Upon the number'd beach? and can we not +Partition make with spectacles so precious +'Twixt fair and foul? + +IMOGEN: +What makes your admiration? + +IACHIMO: +It cannot be i' the eye, for apes and monkeys +'Twixt two such shes would chatter this way and +Contemn with mows the other; nor i' the judgment, +For idiots in this case of favour would +Be wisely definite; nor i' the appetite; +Sluttery to such neat excellence opposed +Should make desire vomit emptiness, +Not so allured to feed. + +IMOGEN: +What is the matter, trow? + +IACHIMO: +The cloyed will, +That satiate yet unsatisfied desire, that tub +Both fill'd and running, ravening first the lamb +Longs after for the garbage. + +IMOGEN: +What, dear sir, +Thus raps you? Are you well? + +IACHIMO: +Thanks, madam; well. +Beseech you, sir, desire +My man's abode where I did leave him: he +Is strange and peevish. + +PISANIO: +I was going, sir, +To give him welcome. + +IMOGEN: +Continues well my lord? His health, beseech you? + +IACHIMO: +Well, madam. + +IMOGEN: +Is he disposed to mirth? I hope he is. + +IACHIMO: +Exceeding pleasant; none a stranger there +So merry and so gamesome: he is call'd +The Briton reveller. + +IMOGEN: +When he was here, +He did incline to sadness, and oft-times +Not knowing why. + +IACHIMO: +I never saw him sad. +There is a Frenchman his companion, one +An eminent monsieur, that, it seems, much loves +A Gallian girl at home; he furnaces +The thick sighs from him, whiles the jolly Briton-- +Your lord, I mean--laughs from's free lungs, cries 'O, +Can my sides hold, to think that man, who knows +By history, report, or his own proof, +What woman is, yea, what she cannot choose +But must be, will his free hours languish for +Assured bondage?' + +IMOGEN: +Will my lord say so? + +IACHIMO: +Ay, madam, with his eyes in flood with laughter: +It is a recreation to be by +And hear him mock the Frenchman. But, heavens know, +Some men are much to blame. + +IMOGEN: +Not he, I hope. + +IACHIMO: +Not he: but yet heaven's bounty towards him might +Be used more thankfully. In himself, 'tis much; +In you, which I account his beyond all talents, +Whilst I am bound to wonder, I am bound +To pity too. + +IMOGEN: +What do you pity, sir? + +IACHIMO: +Two creatures heartily. + +IMOGEN: +Am I one, sir? +You look on me: what wreck discern you in me +Deserves your pity? + +IACHIMO: +Lamentable! What, +To hide me from the radiant sun and solace +I' the dungeon by a snuff? + +IMOGEN: +I pray you, sir, +Deliver with more openness your answers +To my demands. Why do you pity me? + +IACHIMO: +That others do-- +I was about to say--enjoy your--But +It is an office of the gods to venge it, +Not mine to speak on 't. + +IMOGEN: +You do seem to know +Something of me, or what concerns me: pray you,-- +Since doubling things go ill often hurts more +Than to be sure they do; for certainties +Either are past remedies, or, timely knowing, +The remedy then born--discover to me +What both you spur and stop. + +IACHIMO: +Had I this cheek +To bathe my lips upon; this hand, whose touch, +Whose every touch, would force the feeler's soul +To the oath of loyalty; this object, which +Takes prisoner the wild motion of mine eye, +Fixing it only here; should I, damn'd then, +Slaver with lips as common as the stairs +That mount the Capitol; join gripes with hands +Made hard with hourly falsehood--falsehood, as +With labour; then by-peeping in an eye +Base and unlustrous as the smoky light +That's fed with stinking tallow; it were fit +That all the plagues of hell should at one time +Encounter such revolt. + +IMOGEN: +My lord, I fear, +Has forgot Britain. + +IACHIMO: +And himself. Not I, +Inclined to this intelligence, pronounce +The beggary of his change; but 'tis your graces +That from pay mutest conscience to my tongue +Charms this report out. + +IMOGEN: +Let me hear no more. + +IACHIMO: +O dearest soul! your cause doth strike my heart +With pity, that doth make me sick. A lady +So fair, and fasten'd to an empery, +Would make the great'st king double,--to be partner'd +With tomboys hired with that self-exhibition +Which your own coffers yield! with diseased ventures +That play with all infirmities for gold +Which rottenness can lend nature! such boil'd stuff +As well might poison poison! Be revenged; +Or she that bore you was no queen, and you +Recoil from your great stock. + +IMOGEN: +Revenged! +How should I be revenged? If this be true,-- +As I have such a heart that both mine ears +Must not in haste abuse--if it be true, +How should I be revenged? + +IACHIMO: +Should he make me +Live, like Diana's priest, betwixt cold sheets, +Whiles he is vaulting variable ramps, +In your despite, upon your purse? Revenge it. +I dedicate myself to your sweet pleasure, +More noble than that runagate to your bed, +And will continue fast to your affection, +Still close as sure. + +IMOGEN: +What, ho, Pisanio! + +IACHIMO: +Let me my service tender on your lips. + +IMOGEN: +Away! I do condemn mine ears that have +So long attended thee. If thou wert honourable, +Thou wouldst have told this tale for virtue, not +For such an end thou seek'st,--as base as strange. +Thou wrong'st a gentleman, who is as far +From thy report as thou from honour, and +Solicit'st here a lady that disdains +Thee and the devil alike. What ho, Pisanio! +The king my father shall be made acquainted +Of thy assault: if he shall think it fit, +A saucy stranger in his court to mart +As in a Romish stew and to expound +His beastly mind to us, he hath a court +He little cares for and a daughter who +He not respects at all. What, ho, Pisanio! + +IACHIMO: +O happy Leonatus! I may say +The credit that thy lady hath of thee +Deserves thy trust, and thy most perfect goodness +Her assured credit. Blessed live you long! +A lady to the worthiest sir that ever +Country call'd his! and you his mistress, only +For the most worthiest fit! Give me your pardon. +I have spoke this, to know if your affiance +Were deeply rooted; and shall make your lord, +That which he is, new o'er: and he is one +The truest manner'd; such a holy witch +That he enchants societies into him; +Half all men's hearts are his. + +IMOGEN: +You make amends. + +IACHIMO: +He sits 'mongst men like a descended god: +He hath a kind of honour sets him off, +More than a mortal seeming. Be not angry, +Most mighty princess, that I have adventured +To try your taking a false report; which hath +Honour'd with confirmation your great judgment +In the election of a sir so rare, +Which you know cannot err: the love I bear him +Made me to fan you thus, but the gods made you, +Unlike all others, chaffless. Pray, your pardon. + +IMOGEN: +All's well, sir: take my power i' the court +for yours. + +IACHIMO: +My humble thanks. I had almost forgot +To entreat your grace but in a small request, +And yet of moment to, for it concerns +Your lord; myself and other noble friends, +Are partners in the business. + +IMOGEN: +Pray, what is't? + +IACHIMO: +Some dozen Romans of us and your lord-- +The best feather of our wing--have mingled sums +To buy a present for the emperor +Which I, the factor for the rest, have done +In France: 'tis plate of rare device, and jewels +Of rich and exquisite form; their values great; +And I am something curious, being strange, +To have them in safe stowage: may it please you +To take them in protection? + +IMOGEN: +Willingly; +And pawn mine honour for their safety: since +My lord hath interest in them, I will keep them +In my bedchamber. + +IACHIMO: +They are in a trunk, +Attended by my men: I will make bold +To send them to you, only for this night; +I must aboard to-morrow. + +IMOGEN: +O, no, no. + +IACHIMO: +Yes, I beseech; or I shall short my word +By lengthening my return. From Gallia +I cross'd the seas on purpose and on promise +To see your grace. + +IMOGEN: +I thank you for your pains: +But not away to-morrow! + +IACHIMO: +O, I must, madam: +Therefore I shall beseech you, if you please +To greet your lord with writing, do't to-night: +I have outstood my time; which is material +To the tender of our present. + +IMOGEN: +I will write. +Send your trunk to me; it shall safe be kept, +And truly yielded you. You're very welcome. + +CLOTEN: +Was there ever man had such luck! when I kissed the +jack, upon an up-cast to be hit away! I had a +hundred pound on't: and then a whoreson jackanapes +must take me up for swearing; as if I borrowed mine +oaths of him and might not spend them at my pleasure. + +First Lord: +What got he by that? You have broke his pate with +your bowl. + +Second Lord: + +CLOTEN: +When a gentleman is disposed to swear, it is not for +any standers-by to curtail his oaths, ha? + +Second Lord: +No my lord; +nor crop the ears of them. + +CLOTEN: +Whoreson dog! I give him satisfaction? +Would he had been one of my rank! + +Second Lord: + +CLOTEN: +I am not vexed more at any thing in the earth: a +pox on't! I had rather not be so noble as I am; +they dare not fight with me, because of the queen my +mother: every Jack-slave hath his bellyful of +fighting, and I must go up and down like a cock that +nobody can match. + +Second Lord: + +CLOTEN: +Sayest thou? + +Second Lord: +It is not fit your lordship should undertake every +companion that you give offence to. + +CLOTEN: +No, I know that: but it is fit I should commit +offence to my inferiors. + +Second Lord: +Ay, it is fit for your lordship only. + +CLOTEN: +Why, so I say. + +First Lord: +Did you hear of a stranger that's come to court to-night? + +CLOTEN: +A stranger, and I not know on't! + +Second Lord: + +First Lord: +There's an Italian come; and, 'tis thought, one of +Leonatus' friends. + +CLOTEN: +Leonatus! a banished rascal; and he's another, +whatsoever he be. Who told you of this stranger? + +First Lord: +One of your lordship's pages. + +CLOTEN: +Is it fit I went to look upon him? is there no +derogation in't? + +Second Lord: +You cannot derogate, my lord. + +CLOTEN: +Not easily, I think. + +Second Lord: + +CLOTEN: +Come, I'll go see this Italian: what I have lost +to-day at bowls I'll win to-night of him. Come, go. + +Second Lord: +I'll attend your lordship. +That such a crafty devil as is his mother +Should yield the world this ass! a woman that +Bears all down with her brain; and this her son +Cannot take two from twenty, for his heart, +And leave eighteen. Alas, poor princess, +Thou divine Imogen, what thou endurest, +Betwixt a father by thy step-dame govern'd, +A mother hourly coining plots, a wooer +More hateful than the foul expulsion is +Of thy dear husband, than that horrid act +Of the divorce he'ld make! The heavens hold firm +The walls of thy dear honour, keep unshaked +That temple, thy fair mind, that thou mayst stand, +To enjoy thy banish'd lord and this great land! + +IMOGEN: +Who's there? my woman Helen? + +Lady: +Please you, madam + +IMOGEN: +What hour is it? + +Lady: +Almost midnight, madam. + +IMOGEN: +I have read three hours then: mine eyes are weak: +Fold down the leaf where I have left: to bed: +Take not away the taper, leave it burning; +And if thou canst awake by four o' the clock, +I prithee, call me. Sleep hath seized me wholly +To your protection I commend me, gods. +From fairies and the tempters of the night +Guard me, beseech ye. + +IACHIMO: +The crickets sing, and man's o'er-labour'd sense +Repairs itself by rest. Our Tarquin thus +Did softly press the rushes, ere he waken'd +The chastity he wounded. Cytherea, +How bravely thou becomest thy bed, fresh lily, +And whiter than the sheets! That I might touch! +But kiss; one kiss! Rubies unparagon'd, +How dearly they do't! 'Tis her breathing that +Perfumes the chamber thus: the flame o' the taper +Bows toward her, and would under-peep her lids, +To see the enclosed lights, now canopied +Under these windows, white and azure laced +With blue of heaven's own tinct. But my design, +To note the chamber: I will write all down: +Such and such pictures; there the window; such +The adornment of her bed; the arras; figures, +Why, such and such; and the contents o' the story. +Ah, but some natural notes about her body, +Above ten thousand meaner moveables +Would testify, to enrich mine inventory. +O sleep, thou ape of death, lie dull upon her! +And be her sense but as a monument, +Thus in a chapel lying! Come off, come off: +As slippery as the Gordian knot was hard! +'Tis mine; and this will witness outwardly, +As strongly as the conscience does within, +To the madding of her lord. On her left breast +A mole cinque-spotted, like the crimson drops +I' the bottom of a cowslip: here's a voucher, +Stronger than ever law could make: this secret +Will force him think I have pick'd the lock and ta'en +The treasure of her honour. No more. To what end? +Why should I write this down, that's riveted, +Screw'd to my memory? She hath been reading late +The tale of Tereus; here the leaf's turn'd down +Where Philomel gave up. I have enough: +To the trunk again, and shut the spring of it. +Swift, swift, you dragons of the night, that dawning +May bare the raven's eye! I lodge in fear; +Though this a heavenly angel, hell is here. +One, two, three: time, time! + +First Lord: +Your lordship is the most patient man in loss, the +most coldest that ever turned up ace. + +CLOTEN: +It would make any man cold to lose. + +First Lord: +But not every man patient after the noble temper of +your lordship. You are most hot and furious when you win. + +CLOTEN: +Winning will put any man into courage. If I could +get this foolish Imogen, I should have gold enough. +It's almost morning, is't not? + +First Lord: +Day, my lord. + +CLOTEN: +I would this music would come: I am advised to give +her music o' mornings; they say it will penetrate. +Come on; tune: if you can penetrate her with your +fingering, so; we'll try with tongue too: if none +will do, let her remain; but I'll never give o'er. +First, a very excellent good-conceited thing; +after, a wonderful sweet air, with admirable rich +words to it: and then let her consider. +Hark, hark! the lark at heaven's gate sings, +And Phoebus 'gins arise, +His steeds to water at those springs +On chaliced flowers that lies; +And winking Mary-buds begin +To ope their golden eyes: +With every thing that pretty is, +My lady sweet, arise: +Arise, arise. + +CLOTEN: +So, get you gone. If this penetrate, I will +consider your music the better: if it do not, it is +a vice in her ears, which horse-hairs and +calves'-guts, nor the voice of unpaved eunuch to +boot, can never amend. + +Second Lord: +Here comes the king. + +CLOTEN: +I am glad I was up so late; for that's the reason I +was up so early: he cannot choose but take this +service I have done fatherly. +Good morrow to your majesty and to my gracious mother. + +CYMBELINE: +Attend you here the door of our stern daughter? +Will she not forth? + +CLOTEN: +I have assailed her with music, but she vouchsafes no notice. + +CYMBELINE: +The exile of her minion is too new; +She hath not yet forgot him: some more time +Must wear the print of his remembrance out, +And then she's yours. + +QUEEN: +You are most bound to the king, +Who lets go by no vantages that may +Prefer you to his daughter. Frame yourself +To orderly soliciting, and be friended +With aptness of the season; make denials +Increase your services; so seem as if +You were inspired to do those duties which +You tender to her; that you in all obey her, +Save when command to your dismission tends, +And therein you are senseless. + +CLOTEN: +Senseless! not so. + +Messenger: +So like you, sir, ambassadors from Rome; +The one is Caius Lucius. + +CYMBELINE: +A worthy fellow, +Albeit he comes on angry purpose now; +But that's no fault of his: we must receive him +According to the honour of his sender; +And towards himself, his goodness forespent on us, +We must extend our notice. Our dear son, +When you have given good morning to your mistress, +Attend the queen and us; we shall have need +To employ you towards this Roman. Come, our queen. + +CLOTEN: +If she be up, I'll speak with her; if not, +Let her lie still and dream. +By your leave, ho! +I Know her women are about her: what +If I do line one of their hands? 'Tis gold +Which buys admittance; oft it doth; yea, and makes +Diana's rangers false themselves, yield up +Their deer to the stand o' the stealer; and 'tis gold +Which makes the true man kill'd and saves the thief; +Nay, sometime hangs both thief and true man: what +Can it not do and undo? I will make +One of her women lawyer to me, for +I yet not understand the case myself. +By your leave. + +Lady: +Who's there that knocks? + +CLOTEN: +A gentleman. + +Lady: +No more? + +CLOTEN: +Yes, and a gentlewoman's son. + +Lady: +That's more +Than some, whose tailors are as dear as yours, +Can justly boast of. What's your lordship's pleasure? + +CLOTEN: +Your lady's person: is she ready? + +Lady: +Ay, +To keep her chamber. + +CLOTEN: +There is gold for you; +Sell me your good report. + +Lady: +How! my good name? or to report of you +What I shall think is good?--The princess! + +CLOTEN: +Good morrow, fairest: sister, your sweet hand. + +IMOGEN: +Good morrow, sir. You lay out too much pains +For purchasing but trouble; the thanks I give +Is telling you that I am poor of thanks +And scarce can spare them. + +CLOTEN: +Still, I swear I love you. + +IMOGEN: +If you but said so, 'twere as deep with me: +If you swear still, your recompense is still +That I regard it not. + +CLOTEN: +This is no answer. + +IMOGEN: +But that you shall not say I yield being silent, +I would not speak. I pray you, spare me: 'faith, +I shall unfold equal discourtesy +To your best kindness: one of your great knowing +Should learn, being taught, forbearance. + +CLOTEN: +To leave you in your madness, 'twere my sin: +I will not. + +IMOGEN: +Fools are not mad folks. + +CLOTEN: +Do you call me fool? + +IMOGEN: +As I am mad, I do: +If you'll be patient, I'll no more be mad; +That cures us both. I am much sorry, sir, +You put me to forget a lady's manners, +By being so verbal: and learn now, for all, +That I, which know my heart, do here pronounce, +By the very truth of it, I care not for you, +And am so near the lack of charity-- +To accuse myself--I hate you; which I had rather +You felt than make't my boast. + +CLOTEN: +You sin against +Obedience, which you owe your father. For +The contract you pretend with that base wretch, +One bred of alms and foster'd with cold dishes, +With scraps o' the court, it is no contract, none: +And though it be allow'd in meaner parties-- +Yet who than he more mean?--to knit their souls, +On whom there is no more dependency +But brats and beggary, in self-figured knot; +Yet you are curb'd from that enlargement by +The consequence o' the crown, and must not soil +The precious note of it with a base slave. +A hilding for a livery, a squire's cloth, +A pantler, not so eminent. + +IMOGEN: +Profane fellow +Wert thou the son of Jupiter and no more +But what thou art besides, thou wert too base +To be his groom: thou wert dignified enough, +Even to the point of envy, if 'twere made +Comparative for your virtues, to be styled +The under-hangman of his kingdom, and hated +For being preferred so well. + +CLOTEN: +The south-fog rot him! + +IMOGEN: +He never can meet more mischance than come +To be but named of thee. His meanest garment, +That ever hath but clipp'd his body, is dearer +In my respect than all the hairs above thee, +Were they all made such men. How now, Pisanio! + +CLOTEN: +'His garment!' Now the devil-- + +IMOGEN: +To Dorothy my woman hie thee presently-- + +CLOTEN: +'His garment!' + +IMOGEN: +I am sprited with a fool. +Frighted, and anger'd worse: go bid my woman +Search for a jewel that too casually +Hath left mine arm: it was thy master's: 'shrew me, +If I would lose it for a revenue +Of any king's in Europe. I do think +I saw't this morning: confident I am +Last night 'twas on mine arm; I kiss'd it: +I hope it be not gone to tell my lord +That I kiss aught but he. + +PISANIO: +'Twill not be lost. + +IMOGEN: +I hope so: go and search. + +CLOTEN: +You have abused me: +'His meanest garment!' + +IMOGEN: +Ay, I said so, sir: +If you will make't an action, call witness to't. + +CLOTEN: +I will inform your father. + +IMOGEN: +Your mother too: +She's my good lady, and will conceive, I hope, +But the worst of me. So, I leave you, sir, +To the worst of discontent. + +CLOTEN: +I'll be revenged: +'His meanest garment!' Well. + +POSTHUMUS LEONATUS: +Fear it not, sir: I would I were so sure +To win the king as I am bold her honour +Will remain hers. + +PHILARIO: +What means do you make to him? + +POSTHUMUS LEONATUS: +Not any, but abide the change of time, +Quake in the present winter's state and wish +That warmer days would come: in these sear'd hopes, +I barely gratify your love; they failing, +I must die much your debtor. + +PHILARIO: +Your very goodness and your company +O'erpays all I can do. By this, your king +Hath heard of great Augustus: Caius Lucius +Will do's commission throughly: and I think +He'll grant the tribute, send the arrearages, +Or look upon our Romans, whose remembrance +Is yet fresh in their grief. + +POSTHUMUS LEONATUS: +I do believe, +Statist though I am none, nor like to be, +That this will prove a war; and you shall hear +The legions now in Gallia sooner landed +In our not-fearing Britain than have tidings +Of any penny tribute paid. Our countrymen +Are men more order'd than when Julius Caesar +Smiled at their lack of skill, but found +their courage +Worthy his frowning at: their discipline, +Now mingled with their courages, will make known +To their approvers they are people such +That mend upon the world. + +PHILARIO: +See! Iachimo! + +POSTHUMUS LEONATUS: +The swiftest harts have posted you by land; +And winds of all the comers kiss'd your sails, +To make your vessel nimble. + +PHILARIO: +Welcome, sir. + +POSTHUMUS LEONATUS: +I hope the briefness of your answer made +The speediness of your return. + +IACHIMO: +Your lady +Is one of the fairest that I have look'd upon. + +POSTHUMUS LEONATUS: +And therewithal the best; or let her beauty +Look through a casement to allure false hearts +And be false with them. + +IACHIMO: +Here are letters for you. + +POSTHUMUS LEONATUS: +Their tenor good, I trust. + +IACHIMO: +'Tis very like. + +PHILARIO: +Was Caius Lucius in the Britain court +When you were there? + +IACHIMO: +He was expected then, +But not approach'd. + +POSTHUMUS LEONATUS: +All is well yet. +Sparkles this stone as it was wont? or is't not +Too dull for your good wearing? + +IACHIMO: +If I had lost it, +I should have lost the worth of it in gold. +I'll make a journey twice as far, to enjoy +A second night of such sweet shortness which +Was mine in Britain, for the ring is won. + +POSTHUMUS LEONATUS: +The stone's too hard to come by. + +IACHIMO: +Not a whit, +Your lady being so easy. + +POSTHUMUS LEONATUS: +Make not, sir, +Your loss your sport: I hope you know that we +Must not continue friends. + +IACHIMO: +Good sir, we must, +If you keep covenant. Had I not brought +The knowledge of your mistress home, I grant +We were to question further: but I now +Profess myself the winner of her honour, +Together with your ring; and not the wronger +Of her or you, having proceeded but +By both your wills. + +POSTHUMUS LEONATUS: +If you can make't apparent +That you have tasted her in bed, my hand +And ring is yours; if not, the foul opinion +You had of her pure honour gains or loses +Your sword or mine, or masterless leaves both +To who shall find them. + +IACHIMO: +Sir, my circumstances, +Being so near the truth as I will make them, +Must first induce you to believe: whose strength +I will confirm with oath; which, I doubt not, +You'll give me leave to spare, when you shall find +You need it not. + +POSTHUMUS LEONATUS: +Proceed. + +IACHIMO: +First, her bedchamber,-- +Where, I confess, I slept not, but profess +Had that was well worth watching--it was hang'd +With tapesty of silk and silver; the story +Proud Cleopatra, when she met her Roman, +And Cydnus swell'd above the banks, or for +The press of boats or pride: a piece of work +So bravely done, so rich, that it did strive +In workmanship and value; which I wonder'd +Could be so rarely and exactly wrought, +Since the true life on't was-- + +POSTHUMUS LEONATUS: +This is true; +And this you might have heard of here, by me, +Or by some other. + +IACHIMO: +More particulars +Must justify my knowledge. + +POSTHUMUS LEONATUS: +So they must, +Or do your honour injury. + +IACHIMO: +The chimney +Is south the chamber, and the chimney-piece +Chaste Dian bathing: never saw I figures +So likely to report themselves: the cutter +Was as another nature, dumb; outwent her, +Motion and breath left out. + +POSTHUMUS LEONATUS: +This is a thing +Which you might from relation likewise reap, +Being, as it is, much spoke of. + +IACHIMO: +The roof o' the chamber +With golden cherubins is fretted: her andirons-- +I had forgot them--were two winking Cupids +Of silver, each on one foot standing, nicely +Depending on their brands. + +POSTHUMUS LEONATUS: +This is her honour! +Let it be granted you have seen all this--and praise +Be given to your remembrance--the description +Of what is in her chamber nothing saves +The wager you have laid. + +IACHIMO: +Then, if you can, +Be pale: I beg but leave to air this jewel; see! +And now 'tis up again: it must be married +To that your diamond; I'll keep them. + +POSTHUMUS LEONATUS: +Jove! +Once more let me behold it: is it that +Which I left with her? + +IACHIMO: +Sir--I thank her--that: +She stripp'd it from her arm; I see her yet; +Her pretty action did outsell her gift, +And yet enrich'd it too: she gave it me, and said +She prized it once. + +POSTHUMUS LEONATUS: +May be she pluck'd it off +To send it me. + +IACHIMO: +She writes so to you, doth she? + +POSTHUMUS LEONATUS: +O, no, no, no! 'tis true. Here, take this too; +It is a basilisk unto mine eye, +Kills me to look on't. Let there be no honour +Where there is beauty; truth, where semblance; love, +Where there's another man: the vows of women +Of no more bondage be, to where they are made, +Than they are to their virtues; which is nothing. +O, above measure false! + +PHILARIO: +Have patience, sir, +And take your ring again; 'tis not yet won: +It may be probable she lost it; or +Who knows if one of her women, being corrupted, +Hath stol'n it from her? + +POSTHUMUS LEONATUS: +Very true; +And so, I hope, he came by't. Back my ring: +Render to me some corporal sign about her, +More evident than this; for this was stolen. + +IACHIMO: +By Jupiter, I had it from her arm. + +POSTHUMUS LEONATUS: +Hark you, he swears; by Jupiter he swears. +'Tis true:--nay, keep the ring--'tis true: I am sure +She would not lose it: her attendants are +All sworn and honourable:--they induced to steal it! +And by a stranger!--No, he hath enjoyed her: +The cognizance of her incontinency +Is this: she hath bought the name of whore +thus dearly. +There, take thy hire; and all the fiends of hell +Divide themselves between you! + +PHILARIO: +Sir, be patient: +This is not strong enough to be believed +Of one persuaded well of-- + +POSTHUMUS LEONATUS: +Never talk on't; +She hath been colted by him. + +IACHIMO: +If you seek +For further satisfying, under her breast-- +Worthy the pressing--lies a mole, right proud +Of that most delicate lodging: by my life, +I kiss'd it; and it gave me present hunger +To feed again, though full. You do remember +This stain upon her? + +POSTHUMUS LEONATUS: +Ay, and it doth confirm +Another stain, as big as hell can hold, +Were there no more but it. + +IACHIMO: +Will you hear more? + +POSTHUMUS LEONATUS: +Spare your arithmetic: never count the turns; +Once, and a million! + +IACHIMO: +I'll be sworn-- + +POSTHUMUS LEONATUS: +No swearing. +If you will swear you have not done't, you lie; +And I will kill thee, if thou dost deny +Thou'st made me cuckold. + +IACHIMO: +I'll deny nothing. + +POSTHUMUS LEONATUS: +O, that I had her here, to tear her limb-meal! +I will go there and do't, i' the court, before +Her father. I'll do something-- + +PHILARIO: +Quite besides +The government of patience! You have won: +Let's follow him, and pervert the present wrath +He hath against himself. + +IACHIMO: +With an my heart. + +POSTHUMUS LEONATUS: +Is there no way for men to be but women +Must be half-workers? We are all bastards; +And that most venerable man which I +Did call my father, was I know not where +When I was stamp'd; some coiner with his tools +Made me a counterfeit: yet my mother seem'd +The Dian of that time so doth my wife +The nonpareil of this. O, vengeance, vengeance! +Me of my lawful pleasure she restrain'd +And pray'd me oft forbearance; did it with +A pudency so rosy the sweet view on't +Might well have warm'd old Saturn; that I thought her +As chaste as unsunn'd snow. O, all the devils! +This yellow Iachimo, in an hour,--wast not?-- +Or less,--at first?--perchance he spoke not, but, +Like a full-acorn'd boar, a German one, +Cried 'O!' and mounted; found no opposition +But what he look'd for should oppose and she +Should from encounter guard. Could I find out +The woman's part in me! For there's no motion +That tends to vice in man, but I affirm +It is the woman's part: be it lying, note it, +The woman's; flattering, hers; deceiving, hers; +Lust and rank thoughts, hers, hers; revenges, hers; +Ambitions, covetings, change of prides, disdain, +Nice longing, slanders, mutability, +All faults that may be named, nay, that hell knows, +Why, hers, in part or all; but rather, all; +For even to vice +They are not constant but are changing still +One vice, but of a minute old, for one +Not half so old as that. I'll write against them, +Detest them, curse them: yet 'tis greater skill +In a true hate, to pray they have their will: +The very devils cannot plague them better. + +CYMBELINE: +Now say, what would Augustus Caesar with us? + +CAIUS LUCIUS: +When Julius Caesar, whose remembrance yet +Lives in men's eyes and will to ears and tongues +Be theme and hearing ever, was in this Britain +And conquer'd it, Cassibelan, thine uncle,-- +Famous in Caesar's praises, no whit less +Than in his feats deserving it--for him +And his succession granted Rome a tribute, +Yearly three thousand pounds, which by thee lately +Is left untender'd. + +QUEEN: +And, to kill the marvel, +Shall be so ever. + +CLOTEN: +There be many Caesars, +Ere such another Julius. Britain is +A world by itself; and we will nothing pay +For wearing our own noses. + +QUEEN: +That opportunity +Which then they had to take from 's, to resume +We have again. Remember, sir, my liege, +The kings your ancestors, together with +The natural bravery of your isle, which stands +As Neptune's park, ribbed and paled in +With rocks unscalable and roaring waters, +With sands that will not bear your enemies' boats, +But suck them up to the topmast. A kind of conquest +Caesar made here; but made not here his brag +Of 'Came' and 'saw' and 'overcame: ' with shame-- +That first that ever touch'd him--he was carried +From off our coast, twice beaten; and his shipping-- +Poor ignorant baubles!-- upon our terrible seas, +Like egg-shells moved upon their surges, crack'd +As easily 'gainst our rocks: for joy whereof +The famed Cassibelan, who was once at point-- +O giglot fortune!--to master Caesar's sword, +Made Lud's town with rejoicing fires bright +And Britons strut with courage. + +CLOTEN: +Come, there's no more tribute to be paid: our +kingdom is stronger than it was at that time; and, +as I said, there is no moe such Caesars: other of +them may have crook'd noses, but to owe such +straight arms, none. + +CYMBELINE: +Son, let your mother end. + +CLOTEN: +We have yet many among us can gripe as hard as +Cassibelan: I do not say I am one; but I have a +hand. Why tribute? why should we pay tribute? If +Caesar can hide the sun from us with a blanket, or +put the moon in his pocket, we will pay him tribute +for light; else, sir, no more tribute, pray you now. + +CYMBELINE: +You must know, +Till the injurious Romans did extort +This tribute from us, we were free: +Caesar's ambition, +Which swell'd so much that it did almost stretch +The sides o' the world, against all colour here +Did put the yoke upon 's; which to shake off +Becomes a warlike people, whom we reckon +Ourselves to be. + +CLOTEN: +We do. + +CYMBELINE: +Say, then, to Caesar, +Our ancestor was that Mulmutius which +Ordain'd our laws, whose use the sword of Caesar +Hath too much mangled; whose repair and franchise +Shall, by the power we hold, be our good deed, +Though Rome be therefore angry: Mulmutius made our laws, +Who was the first of Britain which did put +His brows within a golden crown and call'd +Himself a king. + +CAIUS LUCIUS: +I am sorry, Cymbeline, +That I am to pronounce Augustus Caesar-- +Caesar, that hath more kings his servants than +Thyself domestic officers--thine enemy: +Receive it from me, then: war and confusion +In Caesar's name pronounce I 'gainst thee: look +For fury not to be resisted. Thus defied, +I thank thee for myself. + +CYMBELINE: +Thou art welcome, Caius. +Thy Caesar knighted me; my youth I spent +Much under him; of him I gather'd honour; +Which he to seek of me again, perforce, +Behoves me keep at utterance. I am perfect +That the Pannonians and Dalmatians for +Their liberties are now in arms; a precedent +Which not to read would show the Britons cold: +So Caesar shall not find them. + +CAIUS LUCIUS: +Let proof speak. + +CLOTEN: +His majesty bids you welcome. Make +pastime with us a day or two, or longer: if +you seek us afterwards in other terms, you +shall find us in our salt-water girdle: if you +beat us out of it, it is yours; if you fall in +the adventure, our crows shall fare the better +for you; and there's an end. + +CAIUS LUCIUS: +So, sir. + +CYMBELINE: +I know your master's pleasure and he mine: +All the remain is 'Welcome!' + +PISANIO: +How? of adultery? Wherefore write you not +What monster's her accuser? Leonatus, +O master! what a strange infection +Is fall'n into thy ear! What false Italian, +As poisonous-tongued as handed, hath prevail'd +On thy too ready hearing? Disloyal! No: +She's punish'd for her truth, and undergoes, +More goddess-like than wife-like, such assaults +As would take in some virtue. O my master! +Thy mind to her is now as low as were +Thy fortunes. How! that I should murder her? +Upon the love and truth and vows which I +Have made to thy command? I, her? her blood? +If it be so to do good service, never +Let me be counted serviceable. How look I, +That I should seem to lack humanity +so much as this fact comes to? +'Do't: the letter +that I have sent her, by her own command +Shall give thee opportunity.' O damn'd paper! +Black as the ink that's on thee! Senseless bauble, +Art thou a feodary for this act, and look'st +So virgin-like without? Lo, here she comes. +I am ignorant in what I am commanded. + +IMOGEN: +How now, Pisanio! + +PISANIO: +Madam, here is a letter from my lord. + +IMOGEN: +Who? thy lord? that is my lord, Leonatus! +O, learn'd indeed were that astronomer +That knew the stars as I his characters; +He'ld lay the future open. You good gods, +Let what is here contain'd relish of love, +Of my lord's health, of his content, yet not +That we two are asunder; let that grieve him: +Some griefs are med'cinable; that is one of them, +For it doth physic love: of his content, +All but in that! Good wax, thy leave. Blest be +You bees that make these locks of counsel! Lovers +And men in dangerous bonds pray not alike: +Though forfeiters you cast in prison, yet +You clasp young Cupid's tables. Good news, gods! +'Justice, and your father's wrath, should he take me +in his dominion, could not be so cruel to me, as +you, O the dearest of creatures, would even renew me +with your eyes. Take notice that I am in Cambria, +at Milford-Haven: what your own love will out of +this advise you, follow. So he wishes you all +happiness, that remains loyal to his vow, and your, +increasing in love, +LEONATUS POSTHUMUS.' +O, for a horse with wings! Hear'st thou, Pisanio? +He is at Milford-Haven: read, and tell me +How far 'tis thither. If one of mean affairs +May plod it in a week, why may not I +Glide thither in a day? Then, true Pisanio,-- +Who long'st, like me, to see thy lord; who long'st,-- +let me bate,-but not like me--yet long'st, +But in a fainter kind:--O, not like me; +For mine's beyond beyond--say, and speak thick; +Love's counsellor should fill the bores of hearing, +To the smothering of the sense--how far it is +To this same blessed Milford: and by the way +Tell me how Wales was made so happy as +To inherit such a haven: but first of all, +How we may steal from hence, and for the gap +That we shall make in time, from our hence-going +And our return, to excuse: but first, how get hence: +Why should excuse be born or e'er begot? +We'll talk of that hereafter. Prithee, speak, +How many score of miles may we well ride +'Twixt hour and hour? + +PISANIO: +One score 'twixt sun and sun, +Madam, 's enough for you: +and too much too. + +IMOGEN: +Why, one that rode to's execution, man, +Could never go so slow: I have heard of +riding wagers, +Where horses have been nimbler than the sands +That run i' the clock's behalf. But this is foolery: +Go bid my woman feign a sickness; say +She'll home to her father: and provide me presently +A riding-suit, no costlier than would fit +A franklin's housewife. + +PISANIO: +Madam, you're best consider. + +IMOGEN: +I see before me, man: nor here, nor here, +Nor what ensues, but have a fog in them, +That I cannot look through. Away, I prithee; +Do as I bid thee: there's no more to say, +Accessible is none but Milford way. + +BELARIUS: +A goodly day not to keep house, with such +Whose roof's as low as ours! Stoop, boys; this gate +Instructs you how to adore the heavens and bows you +To a morning's holy office: the gates of monarchs +Are arch'd so high that giants may jet through +And keep their impious turbans on, without +Good morrow to the sun. Hail, thou fair heaven! +We house i' the rock, yet use thee not so hardly +As prouder livers do. + +GUIDERIUS: +Hail, heaven! + +ARVIRAGUS: +Hail, heaven! + +BELARIUS: +Now for our mountain sport: up to yond hill; +Your legs are young; I'll tread these flats. Consider, +When you above perceive me like a crow, +That it is place which lessens and sets off; +And you may then revolve what tales I have told you +Of courts, of princes, of the tricks in war: +This service is not service, so being done, +But being so allow'd: to apprehend thus, +Draws us a profit from all things we see; +And often, to our comfort, shall we find +The sharded beetle in a safer hold +Than is the full-wing'd eagle. O, this life +Is nobler than attending for a cheque, +Richer than doing nothing for a bauble, +Prouder than rustling in unpaid-for silk: +Such gain the cap of him that makes 'em fine, +Yet keeps his book uncross'd: no life to ours. + +GUIDERIUS: +Out of your proof you speak: we, poor unfledged, +Have never wing'd from view o' the nest, nor know not +What air's from home. Haply this life is best, +If quiet life be best; sweeter to you +That have a sharper known; well corresponding +With your stiff age: but unto us it is +A cell of ignorance; travelling a-bed; +A prison for a debtor, that not dares +To stride a limit. + +ARVIRAGUS: +What should we speak of +When we are old as you? when we shall hear +The rain and wind beat dark December, how, +In this our pinching cave, shall we discourse +The freezing hours away? We have seen nothing; +We are beastly, subtle as the fox for prey, +Like warlike as the wolf for what we eat; +Our valour is to chase what flies; our cage +We make a quire, as doth the prison'd bird, +And sing our bondage freely. + +BELARIUS: +How you speak! +Did you but know the city's usuries +And felt them knowingly; the art o' the court +As hard to leave as keep; whose top to climb +Is certain falling, or so slippery that +The fear's as bad as falling; the toil o' the war, +A pain that only seems to seek out danger +I' the name of fame and honour; which dies i' +the search, +And hath as oft a slanderous epitaph +As record of fair act; nay, many times, +Doth ill deserve by doing well; what's worse, +Must court'sy at the censure:--O boys, this story +The world may read in me: my body's mark'd +With Roman swords, and my report was once +First with the best of note: Cymbeline loved me, +And when a soldier was the theme, my name +Was not far off: then was I as a tree +Whose boughs did bend with fruit: but in one night, +A storm or robbery, call it what you will, +Shook down my mellow hangings, nay, my leaves, +And left me bare to weather. + +GUIDERIUS: +Uncertain favour! + +BELARIUS: +My fault being nothing--as I have told you oft-- +But that two villains, whose false oaths prevail'd +Before my perfect honour, swore to Cymbeline +I was confederate with the Romans: so +Follow'd my banishment, and this twenty years +This rock and these demesnes have been my world; +Where I have lived at honest freedom, paid +More pious debts to heaven than in all +The fore-end of my time. But up to the mountains! +This is not hunters' language: he that strikes +The venison first shall be the lord o' the feast; +To him the other two shall minister; +And we will fear no poison, which attends +In place of greater state. I'll meet you in the valleys. +How hard it is to hide the sparks of nature! +These boys know little they are sons to the king; +Nor Cymbeline dreams that they are alive. +They think they are mine; and though train'd +up thus meanly +I' the cave wherein they bow, their thoughts do hit +The roofs of palaces, and nature prompts them +In simple and low things to prince it much +Beyond the trick of others. This Polydore, +The heir of Cymbeline and Britain, who +The king his father call'd Guiderius,--Jove! +When on my three-foot stool I sit and tell +The warlike feats I have done, his spirits fly out +Into my story: say 'Thus, mine enemy fell, +And thus I set my foot on 's neck;' even then +The princely blood flows in his cheek, he sweats, +Strains his young nerves and puts himself in posture +That acts my words. The younger brother, Cadwal, +Once Arviragus, in as like a figure, +Strikes life into my speech and shows much more +His own conceiving.--Hark, the game is roused! +O Cymbeline! heaven and my conscience knows +Thou didst unjustly banish me: whereon, +At three and two years old, I stole these babes; +Thinking to bar thee of succession, as +Thou reft'st me of my lands. Euriphile, +Thou wast their nurse; they took thee for +their mother, +And every day do honour to her grave: +Myself, Belarius, that am Morgan call'd, +They take for natural father. The game is up. + +IMOGEN: +Thou told'st me, when we came from horse, the place +Was near at hand: ne'er long'd my mother so +To see me first, as I have now. Pisanio! man! +Where is Posthumus? What is in thy mind, +That makes thee stare thus? Wherefore breaks that sigh +From the inward of thee? One, but painted thus, +Would be interpreted a thing perplex'd +Beyond self-explication: put thyself +Into a havior of less fear, ere wildness +Vanquish my staider senses. What's the matter? +Why tender'st thou that paper to me, with +A look untender? If't be summer news, +Smile to't before; if winterly, thou need'st +But keep that countenance still. My husband's hand! +That drug-damn'd Italy hath out-craftied him, +And he's at some hard point. Speak, man: thy tongue +May take off some extremity, which to read +Would be even mortal to me. + +PISANIO: +Please you, read; +And you shall find me, wretched man, a thing +The most disdain'd of fortune. + +IMOGEN: + +PISANIO: +What shall I need to draw my sword? the paper +Hath cut her throat already. No, 'tis slander, +Whose edge is sharper than the sword, whose tongue +Outvenoms all the worms of Nile, whose breath +Rides on the posting winds and doth belie +All corners of the world: kings, queens and states, +Maids, matrons, nay, the secrets of the grave +This viperous slander enters. What cheer, madam? + +IMOGEN: +False to his bed! What is it to be false? +To lie in watch there and to think on him? +To weep 'twixt clock and clock? if sleep +charge nature, +To break it with a fearful dream of him +And cry myself awake? that's false to's bed, is it? + +PISANIO: +Alas, good lady! + +IMOGEN: +I false! Thy conscience witness: Iachimo, +Thou didst accuse him of incontinency; +Thou then look'dst like a villain; now methinks +Thy favour's good enough. Some jay of Italy +Whose mother was her painting, hath betray'd him: +Poor I am stale, a garment out of fashion; +And, for I am richer than to hang by the walls, +I must be ripp'd:--to pieces with me!--O, +Men's vows are women's traitors! All good seeming, +By thy revolt, O husband, shall be thought +Put on for villany; not born where't grows, +But worn a bait for ladies. + +PISANIO: +Good madam, hear me. + +IMOGEN: +True honest men being heard, like false Aeneas, +Were in his time thought false, and Sinon's weeping +Did scandal many a holy tear, took pity +From most true wretchedness: so thou, Posthumus, +Wilt lay the leaven on all proper men; +Goodly and gallant shall be false and perjured +From thy great fall. Come, fellow, be thou honest: +Do thou thy master's bidding: when thou see'st him, +A little witness my obedience: look! +I draw the sword myself: take it, and hit +The innocent mansion of my love, my heart; +Fear not; 'tis empty of all things but grief; +Thy master is not there, who was indeed +The riches of it: do his bidding; strike +Thou mayst be valiant in a better cause; +But now thou seem'st a coward. + +PISANIO: +Hence, vile instrument! +Thou shalt not damn my hand. + +IMOGEN: +Why, I must die; +And if I do not by thy hand, thou art +No servant of thy master's. Against self-slaughter +There is a prohibition so divine +That cravens my weak hand. Come, here's my heart. +Something's afore't. Soft, soft! we'll no defence; +Obedient as the scabbard. What is here? +The scriptures of the loyal Leonatus, +All turn'd to heresy? Away, away, +Corrupters of my faith! you shall no more +Be stomachers to my heart. Thus may poor fools +Believe false teachers: though those that +are betray'd +Do feel the treason sharply, yet the traitor +Stands in worse case of woe. +And thou, Posthumus, thou that didst set up +My disobedience 'gainst the king my father +And make me put into contempt the suits +Of princely fellows, shalt hereafter find +It is no act of common passage, but +A strain of rareness: and I grieve myself +To think, when thou shalt be disedged by her +That now thou tirest on, how thy memory +Will then be pang'd by me. Prithee, dispatch: +The lamb entreats the butcher: where's thy knife? +Thou art too slow to do thy master's bidding, +When I desire it too. + +PISANIO: +O gracious lady, +Since I received command to do this business +I have not slept one wink. + +IMOGEN: +Do't, and to bed then. + +PISANIO: +I'll wake mine eye-balls blind first. + +IMOGEN: +Wherefore then +Didst undertake it? Why hast thou abused +So many miles with a pretence? this place? +Mine action and thine own? our horses' labour? +The time inviting thee? the perturb'd court, +For my being absent? whereunto I never +Purpose return. Why hast thou gone so far, +To be unbent when thou hast ta'en thy stand, +The elected deer before thee? + +PISANIO: +But to win time +To lose so bad employment; in the which +I have consider'd of a course. Good lady, +Hear me with patience. + +IMOGEN: +Talk thy tongue weary; speak +I have heard I am a strumpet; and mine ear +Therein false struck, can take no greater wound, +Nor tent to bottom that. But speak. + +PISANIO: +Then, madam, +I thought you would not back again. + +IMOGEN: +Most like; +Bringing me here to kill me. + +PISANIO: +Not so, neither: +But if I were as wise as honest, then +My purpose would prove well. It cannot be +But that my master is abused: +Some villain, ay, and singular in his art. +Hath done you both this cursed injury. + +IMOGEN: +Some Roman courtezan. + +PISANIO: +No, on my life. +I'll give but notice you are dead and send him +Some bloody sign of it; for 'tis commanded +I should do so: you shall be miss'd at court, +And that will well confirm it. + +IMOGEN: +Why good fellow, +What shall I do the where? where bide? how live? +Or in my life what comfort, when I am +Dead to my husband? + +PISANIO: +If you'll back to the court-- + +IMOGEN: +No court, no father; nor no more ado +With that harsh, noble, simple nothing, +That Cloten, whose love-suit hath been to me +As fearful as a siege. + +PISANIO: +If not at court, +Then not in Britain must you bide. + +IMOGEN: +Where then +Hath Britain all the sun that shines? Day, night, +Are they not but in Britain? I' the world's volume +Our Britain seems as of it, but not in 't; +In a great pool a swan's nest: prithee, think +There's livers out of Britain. + +PISANIO: +I am most glad +You think of other place. The ambassador, +Lucius the Roman, comes to Milford-Haven +To-morrow: now, if you could wear a mind +Dark as your fortune is, and but disguise +That which, to appear itself, must not yet be +But by self-danger, you should tread a course +Pretty and full of view; yea, haply, near +The residence of Posthumus; so nigh at least +That though his actions were not visible, yet +Report should render him hourly to your ear +As truly as he moves. + +IMOGEN: +O, for such means! +Though peril to my modesty, not death on't, +I would adventure. + +PISANIO: +Well, then, here's the point: +You must forget to be a woman; change +Command into obedience: fear and niceness-- +The handmaids of all women, or, more truly, +Woman its pretty self--into a waggish courage: +Ready in gibes, quick-answer'd, saucy and +As quarrelous as the weasel; nay, you must +Forget that rarest treasure of your cheek, +Exposing it--but, O, the harder heart! +Alack, no remedy!--to the greedy touch +Of common-kissing Titan, and forget +Your laboursome and dainty trims, wherein +You made great Juno angry. + +IMOGEN: +Nay, be brief +I see into thy end, and am almost +A man already. + +PISANIO: +First, make yourself but like one. +Fore-thinking this, I have already fit-- +'Tis in my cloak-bag--doublet, hat, hose, all +That answer to them: would you in their serving, +And with what imitation you can borrow +From youth of such a season, 'fore noble Lucius +Present yourself, desire his service, tell him +wherein you're happy,--which you'll make him know, +If that his head have ear in music,--doubtless +With joy he will embrace you, for he's honourable +And doubling that, most holy. Your means abroad, +You have me, rich; and I will never fail +Beginning nor supplyment. + +IMOGEN: +Thou art all the comfort +The gods will diet me with. Prithee, away: +There's more to be consider'd; but we'll even +All that good time will give us: this attempt +I am soldier to, and will abide it with +A prince's courage. Away, I prithee. + +PISANIO: +Well, madam, we must take a short farewell, +Lest, being miss'd, I be suspected of +Your carriage from the court. My noble mistress, +Here is a box; I had it from the queen: +What's in't is precious; if you are sick at sea, +Or stomach-qualm'd at land, a dram of this +Will drive away distemper. To some shade, +And fit you to your manhood. May the gods +Direct you to the best! + +IMOGEN: +Amen: I thank thee. + +CYMBELINE: +Thus far; and so farewell. + +CAIUS LUCIUS: +Thanks, royal sir. +My emperor hath wrote, I must from hence; +And am right sorry that I must report ye +My master's enemy. + +CYMBELINE: +Our subjects, sir, +Will not endure his yoke; and for ourself +To show less sovereignty than they, must needs +Appear unkinglike. + +CAIUS LUCIUS: +So, sir: I desire of you +A conduct over-land to Milford-Haven. +Madam, all joy befal your grace! + +QUEEN: +And you! + +CYMBELINE: +My lords, you are appointed for that office; +The due of honour in no point omit. +So farewell, noble Lucius. + +CAIUS LUCIUS: +Your hand, my lord. + +CLOTEN: +Receive it friendly; but from this time forth +I wear it as your enemy. + +CAIUS LUCIUS: +Sir, the event +Is yet to name the winner: fare you well. + +CYMBELINE: +Leave not the worthy Lucius, good my lords, +Till he have cross'd the Severn. Happiness! + +QUEEN: +He goes hence frowning: but it honours us +That we have given him cause. + +CLOTEN: +'Tis all the better; +Your valiant Britons have their wishes in it. + +CYMBELINE: +Lucius hath wrote already to the emperor +How it goes here. It fits us therefore ripely +Our chariots and our horsemen be in readiness: +The powers that he already hath in Gallia +Will soon be drawn to head, from whence he moves +His war for Britain. + +QUEEN: +'Tis not sleepy business; +But must be look'd to speedily and strongly. + +CYMBELINE: +Our expectation that it would be thus +Hath made us forward. But, my gentle queen, +Where is our daughter? She hath not appear'd +Before the Roman, nor to us hath tender'd +The duty of the day: she looks us like +A thing more made of malice than of duty: +We have noted it. Call her before us; for +We have been too slight in sufferance. + +QUEEN: +Royal sir, +Since the exile of Posthumus, most retired +Hath her life been; the cure whereof, my lord, +'Tis time must do. Beseech your majesty, +Forbear sharp speeches to her: she's a lady +So tender of rebukes that words are strokes +And strokes death to her. + +CYMBELINE: +Where is she, sir? How +Can her contempt be answer'd? + +Attendant: +Please you, sir, +Her chambers are all lock'd; and there's no answer +That will be given to the loudest noise we make. + +QUEEN: +My lord, when last I went to visit her, +She pray'd me to excuse her keeping close, +Whereto constrain'd by her infirmity, +She should that duty leave unpaid to you, +Which daily she was bound to proffer: this +She wish'd me to make known; but our great court +Made me to blame in memory. + +CYMBELINE: +Her doors lock'd? +Not seen of late? Grant, heavens, that which I fear +Prove false! + +QUEEN: +Son, I say, follow the king. + +CLOTEN: +That man of hers, Pisanio, her old servant, +have not seen these two days. + +QUEEN: +Go, look after. +Pisanio, thou that stand'st so for Posthumus! +He hath a drug of mine; I pray his absence +Proceed by swallowing that, for he believes +It is a thing most precious. But for her, +Where is she gone? Haply, despair hath seized her, +Or, wing'd with fervor of her love, she's flown +To her desired Posthumus: gone she is +To death or to dishonour; and my end +Can make good use of either: she being down, +I have the placing of the British crown. +How now, my son! + +CLOTEN: +'Tis certain she is fled. +Go in and cheer the king: he rages; none +Dare come about him. + +QUEEN: + +CLOTEN: +I love and hate her: for she's fair and royal, +And that she hath all courtly parts more exquisite +Than lady, ladies, woman; from every one +The best she hath, and she, of all compounded, +Outsells them all; I love her therefore: but +Disdaining me and throwing favours on +The low Posthumus slanders so her judgment +That what's else rare is choked; and in that point +I will conclude to hate her, nay, indeed, +To be revenged upon her. For when fools Shall-- +Who is here? What, are you packing, sirrah? +Come hither: ah, you precious pander! Villain, +Where is thy lady? In a word; or else +Thou art straightway with the fiends. + +PISANIO: +O, good my lord! + +CLOTEN: +Where is thy lady? Or, by Jupiter,-- +I will not ask again. Close villain, +I'll have this secret from thy heart, or rip +Thy heart to find it. Is she with Posthumus? +From whose so many weights of baseness cannot +A dram of worth be drawn. + +PISANIO: +Alas, my lord, +How can she be with him? When was she missed? +He is in Rome. + +CLOTEN: +Where is she, sir? Come nearer; +No further halting: satisfy me home +What is become of her. + +PISANIO: +O, my all-worthy lord! + +CLOTEN: +All-worthy villain! +Discover where thy mistress is at once, +At the next word: no more of 'worthy lord!' +Speak, or thy silence on the instant is +Thy condemnation and thy death. + +PISANIO: +Then, sir, +This paper is the history of my knowledge +Touching her flight. + +CLOTEN: +Let's see't. I will pursue her +Even to Augustus' throne. + +PISANIO: + +CLOTEN: +Hum! + +PISANIO: + +CLOTEN: +Sirrah, is this letter true? + +PISANIO: +Sir, as I think. + +CLOTEN: +It is Posthumus' hand; I know't. Sirrah, if thou +wouldst not be a villain, but do me true service, +undergo those employments wherein I should have +cause to use thee with a serious industry, that is, +what villany soe'er I bid thee do, to perform it +directly and truly, I would think thee an honest +man: thou shouldst neither want my means for thy +relief nor my voice for thy preferment. + +PISANIO: +Well, my good lord. + +CLOTEN: +Wilt thou serve me? for since patiently and +constantly thou hast stuck to the bare fortune of +that beggar Posthumus, thou canst not, in the +course of gratitude, but be a diligent follower of +mine: wilt thou serve me? + +PISANIO: +Sir, I will. + +CLOTEN: +Give me thy hand; here's my purse. Hast any of thy +late master's garments in thy possession? + +PISANIO: +I have, my lord, at my lodging, the same suit he +wore when he took leave of my lady and mistress. + +CLOTEN: +The first service thou dost me, fetch that suit +hither: let it be thy lint service; go. + +PISANIO: +I shall, my lord. + +CLOTEN: +Meet thee at Milford-Haven!--I forgot to ask him one +thing; I'll remember't anon:--even there, thou +villain Posthumus, will I kill thee. I would these +garments were come. She said upon a time--the +bitterness of it I now belch from my heart--that she +held the very garment of Posthumus in more respect +than my noble and natural person together with the +adornment of my qualities. With that suit upon my +back, will I ravish her: first kill him, and in her +eyes; there shall she see my valour, which will then +be a torment to her contempt. He on the ground, my +speech of insultment ended on his dead body, and +when my lust hath dined,--which, as I say, to vex +her I will execute in the clothes that she so +praised,--to the court I'll knock her back, foot +her home again. She hath despised me rejoicingly, +and I'll be merry in my revenge. +Be those the garments? + +PISANIO: +Ay, my noble lord. + +CLOTEN: +How long is't since she went to Milford-Haven? + +PISANIO: +She can scarce be there yet. + +CLOTEN: +Bring this apparel to my chamber; that is the second +thing that I have commanded thee: the third is, +that thou wilt be a voluntary mute to my design. Be +but duteous, and true preferment shall tender itself +to thee. My revenge is now at Milford: would I had +wings to follow it! Come, and be true. + +PISANIO: +Thou bid'st me to my loss: for true to thee +Were to prove false, which I will never be, +To him that is most true. To Milford go, +And find not her whom thou pursuest. Flow, flow, +You heavenly blessings, on her! This fool's speed +Be cross'd with slowness; labour be his meed! + +IMOGEN: +I see a man's life is a tedious one: +I have tired myself, and for two nights together +Have made the ground my bed. I should be sick, +But that my resolution helps me. Milford, +When from the mountain-top Pisanio show'd thee, +Thou wast within a ken: O Jove! I think +Foundations fly the wretched; such, I mean, +Where they should be relieved. Two beggars told me +I could not miss my way: will poor folks lie, +That have afflictions on them, knowing 'tis +A punishment or trial? Yes; no wonder, +When rich ones scarce tell true. To lapse in fulness +Is sorer than to lie for need, and falsehood +Is worse in kings than beggars. My dear lord! +Thou art one o' the false ones. Now I think on thee, +My hunger's gone; but even before, I was +At point to sink for food. But what is this? +Here is a path to't: 'tis some savage hold: +I were best not to call; I dare not call: +yet famine, +Ere clean it o'erthrow nature, makes it valiant, +Plenty and peace breeds cowards: hardness ever +Of hardiness is mother. Ho! who's here? +If any thing that's civil, speak; if savage, +Take or lend. Ho! No answer? Then I'll enter. +Best draw my sword: and if mine enemy +But fear the sword like me, he'll scarcely look on't. +Such a foe, good heavens! + +BELARIUS: +You, Polydote, have proved best woodman and +Are master of the feast: Cadwal and I +Will play the cook and servant; 'tis our match: +The sweat of industry would dry and die, +But for the end it works to. Come; our stomachs +Will make what's homely savoury: weariness +Can snore upon the flint, when resty sloth +Finds the down pillow hard. Now peace be here, +Poor house, that keep'st thyself! + +GUIDERIUS: +I am thoroughly weary. + +ARVIRAGUS: +I am weak with toil, yet strong in appetite. + +GUIDERIUS: +There is cold meat i' the cave; we'll browse on that, +Whilst what we have kill'd be cook'd. + +BELARIUS: + +GUIDERIUS: +What's the matter, sir? + +BELARIUS: +By Jupiter, an angel! or, if not, +An earthly paragon! Behold divineness +No elder than a boy! + +IMOGEN: +Good masters, harm me not: +Before I enter'd here, I call'd; and thought +To have begg'd or bought what I have took: +good troth, +I have stol'n nought, nor would not, though I had found +Gold strew'd i' the floor. Here's money for my meat: +I would have left it on the board so soon +As I had made my meal, and parted +With prayers for the provider. + +GUIDERIUS: +Money, youth? + +ARVIRAGUS: +All gold and silver rather turn to dirt! +As 'tis no better reckon'd, but of those +Who worship dirty gods. + +IMOGEN: +I see you're angry: +Know, if you kill me for my fault, I should +Have died had I not made it. + +BELARIUS: +Whither bound? + +IMOGEN: +To Milford-Haven. + +BELARIUS: +What's your name? + +IMOGEN: +Fidele, sir. I have a kinsman who +Is bound for Italy; he embark'd at Milford; +To whom being going, almost spent with hunger, +I am fall'n in this offence. + +BELARIUS: +Prithee, fair youth, +Think us no churls, nor measure our good minds +By this rude place we live in. Well encounter'd! +'Tis almost night: you shall have better cheer +Ere you depart: and thanks to stay and eat it. +Boys, bid him welcome. + +GUIDERIUS: +Were you a woman, youth, +I should woo hard but be your groom. In honesty, +I bid for you as I'd buy. + +ARVIRAGUS: +I'll make't my comfort +He is a man; I'll love him as my brother: +And such a welcome as I'd give to him +After long absence, such is yours: most welcome! +Be sprightly, for you fall 'mongst friends. + +IMOGEN: +'Mongst friends, +If brothers. +Would it had been so, that they +Had been my father's sons! then had my prize +Been less, and so more equal ballasting +To thee, Posthumus. + +BELARIUS: +He wrings at some distress. + +GUIDERIUS: +Would I could free't! + +ARVIRAGUS: +Or I, whate'er it be, +What pain it cost, what danger. God's! + +BELARIUS: +Hark, boys. + +IMOGEN: +Great men, +That had a court no bigger than this cave, +That did attend themselves and had the virtue +Which their own conscience seal'd them--laying by +That nothing-gift of differing multitudes-- +Could not out-peer these twain. Pardon me, gods! +I'd change my sex to be companion with them, +Since Leonatus's false. + +BELARIUS: +It shall be so. +Boys, we'll go dress our hunt. Fair youth, come in: +Discourse is heavy, fasting; when we have supp'd, +We'll mannerly demand thee of thy story, +So far as thou wilt speak it. + +GUIDERIUS: +Pray, draw near. + +ARVIRAGUS: +The night to the owl and morn to the lark +less welcome. + +IMOGEN: +Thanks, sir. + +ARVIRAGUS: +I pray, draw near. + +First Senator: +This is the tenor of the emperor's writ: +That since the common men are now in action +'Gainst the Pannonians and Dalmatians, +And that the legions now in Gallia are +Full weak to undertake our wars against +The fall'n-off Britons, that we do incite +The gentry to this business. He creates +Lucius preconsul: and to you the tribunes, +For this immediate levy, he commends +His absolute commission. Long live Caesar! + +First Tribune: +Is Lucius general of the forces? + +Second Senator: +Ay. + +First Tribune: +Remaining now in Gallia? + +First Senator: +With those legions +Which I have spoke of, whereunto your levy +Must be supplyant: the words of your commission +Will tie you to the numbers and the time +Of their dispatch. + +First Tribune: +We will discharge our duty. + +CLOTEN: +I am near to the place where they should meet, if +Pisanio have mapped it truly. How fit his garments +serve me! Why should his mistress, who was made by +him that made the tailor, not be fit too? the +rather--saving reverence of the word--for 'tis said +a woman's fitness comes by fits. Therein I must +play the workman. I dare speak it to myself--for it +is not vain-glory for a man and his glass to confer +in his own chamber--I mean, the lines of my body are +as well drawn as his; no less young, more strong, +not beneath him in fortunes, beyond him in the +advantage of the time, above him in birth, alike +conversant in general services, and more remarkable +in single oppositions: yet this imperceiverant +thing loves him in my despite. What mortality is! +Posthumus, thy head, which now is growing upon thy +shoulders, shall within this hour be off; thy +mistress enforced; thy garments cut to pieces before +thy face: and all this done, spurn her home to her +father; who may haply be a little angry for my so +rough usage; but my mother, having power of his +testiness, shall turn all into my commendations. My +horse is tied up safe: out, sword, and to a sore +purpose! Fortune, put them into my hand! This is +the very description of their meeting-place; and +the fellow dares not deceive me. + +BELARIUS: + +ARVIRAGUS: + +IMOGEN: +So man and man should be; +But clay and clay differs in dignity, +Whose dust is both alike. I am very sick. + +GUIDERIUS: +Go you to hunting; I'll abide with him. + +IMOGEN: +So sick I am not, yet I am not well; +But not so citizen a wanton as +To seem to die ere sick: so please you, leave me; +Stick to your journal course: the breach of custom +Is breach of all. I am ill, but your being by me +Cannot amend me; society is no comfort +To one not sociable: I am not very sick, +Since I can reason of it. Pray you, trust me here: +I'll rob none but myself; and let me die, +Stealing so poorly. + +GUIDERIUS: +I love thee; I have spoke it +How much the quantity, the weight as much, +As I do love my father. + +BELARIUS: +What! how! how! + +ARVIRAGUS: +If it be sin to say so, I yoke me +In my good brother's fault: I know not why +I love this youth; and I have heard you say, +Love's reason's without reason: the bier at door, +And a demand who is't shall die, I'd say +'My father, not this youth.' + +BELARIUS: + +ARVIRAGUS: +Brother, farewell. + +IMOGEN: +I wish ye sport. + +ARVIRAGUS: +You health. So please you, sir. + +IMOGEN: + +GUIDERIUS: +I could not stir him: +He said he was gentle, but unfortunate; +Dishonestly afflicted, but yet honest. + +ARVIRAGUS: +Thus did he answer me: yet said, hereafter +I might know more. + +BELARIUS: +To the field, to the field! +We'll leave you for this time: go in and rest. + +ARVIRAGUS: +We'll not be long away. + +BELARIUS: +Pray, be not sick, +For you must be our housewife. + +IMOGEN: +Well or ill, +I am bound to you. + +BELARIUS: +And shalt be ever. +This youth, how'er distress'd, appears he hath had +Good ancestors. + +ARVIRAGUS: +How angel-like he sings! + +GUIDERIUS: +But his neat cookery! he cut our roots +In characters, +And sauced our broths, as Juno had been sick +And he her dieter. + +ARVIRAGUS: +Nobly he yokes +A smiling with a sigh, as if the sigh +Was that it was, for not being such a smile; +The smile mocking the sigh, that it would fly +From so divine a temple, to commix +With winds that sailors rail at. + +GUIDERIUS: +I do note +That grief and patience, rooted in him both, +Mingle their spurs together. + +ARVIRAGUS: +Grow, patience! +And let the stinking elder, grief, untwine +His perishing root with the increasing vine! + +BELARIUS: +It is great morning. Come, away!-- +Who's there? + +CLOTEN: +I cannot find those runagates; that villain +Hath mock'd me. I am faint. + +BELARIUS: +'Those runagates!' +Means he not us? I partly know him: 'tis +Cloten, the son o' the queen. I fear some ambush. +I saw him not these many years, and yet +I know 'tis he. We are held as outlaws: hence! + +GUIDERIUS: +He is but one: you and my brother search +What companies are near: pray you, away; +Let me alone with him. + +CLOTEN: +Soft! What are you +That fly me thus? some villain mountaineers? +I have heard of such. What slave art thou? + +GUIDERIUS: +A thing +More slavish did I ne'er than answering +A slave without a knock. + +CLOTEN: +Thou art a robber, +A law-breaker, a villain: yield thee, thief. + +GUIDERIUS: +To who? to thee? What art thou? Have not I +An arm as big as thine? a heart as big? +Thy words, I grant, are bigger, for I wear not +My dagger in my mouth. Say what thou art, +Why I should yield to thee? + +CLOTEN: +Thou villain base, +Know'st me not by my clothes? + +GUIDERIUS: +No, nor thy tailor, rascal, +Who is thy grandfather: he made those clothes, +Which, as it seems, make thee. + +CLOTEN: +Thou precious varlet, +My tailor made them not. + +GUIDERIUS: +Hence, then, and thank +The man that gave them thee. Thou art some fool; +I am loath to beat thee. + +CLOTEN: +Thou injurious thief, +Hear but my name, and tremble. + +GUIDERIUS: +What's thy name? + +CLOTEN: +Cloten, thou villain. + +GUIDERIUS: +Cloten, thou double villain, be thy name, +I cannot tremble at it: were it Toad, or +Adder, Spider, +'Twould move me sooner. + +CLOTEN: +To thy further fear, +Nay, to thy mere confusion, thou shalt know +I am son to the queen. + +GUIDERIUS: +I am sorry for 't; not seeming +So worthy as thy birth. + +CLOTEN: +Art not afeard? + +GUIDERIUS: +Those that I reverence those I fear, the wise: +At fools I laugh, not fear them. + +CLOTEN: +Die the death: +When I have slain thee with my proper hand, +I'll follow those that even now fled hence, +And on the gates of Lud's-town set your heads: +Yield, rustic mountaineer. + +BELARIUS: +No companies abroad? + +ARVIRAGUS: +None in the world: you did mistake him, sure. + +BELARIUS: +I cannot tell: long is it since I saw him, +But time hath nothing blurr'd those lines of favour +Which then he wore; the snatches in his voice, +And burst of speaking, were as his: I am absolute +'Twas very Cloten. + +ARVIRAGUS: +In this place we left them: +I wish my brother make good time with him, +You say he is so fell. + +BELARIUS: +Being scarce made up, +I mean, to man, he had not apprehension +Of roaring terrors; for the effect of judgment +Is oft the cause of fear. But, see, thy brother. + +GUIDERIUS: +This Cloten was a fool, an empty purse; +There was no money in't: not Hercules +Could have knock'd out his brains, for he had none: +Yet I not doing this, the fool had borne +My head as I do his. + +BELARIUS: +What hast thou done? + +GUIDERIUS: +I am perfect what: cut off one Cloten's head, +Son to the queen, after his own report; +Who call'd me traitor, mountaineer, and swore +With his own single hand he'ld take us in +Displace our heads where--thank the gods!--they grow, +And set them on Lud's-town. + +BELARIUS: +We are all undone. + +GUIDERIUS: +Why, worthy father, what have we to lose, +But that he swore to take, our lives? The law +Protects not us: then why should we be tender +To let an arrogant piece of flesh threat us, +Play judge and executioner all himself, +For we do fear the law? What company +Discover you abroad? + +BELARIUS: +No single soul +Can we set eye on; but in all safe reason +He must have some attendants. Though his humour +Was nothing but mutation, ay, and that +From one bad thing to worse; not frenzy, not +Absolute madness could so far have raved +To bring him here alone; although perhaps +It may be heard at court that such as we +Cave here, hunt here, are outlaws, and in time +May make some stronger head; the which he hearing-- +As it is like him--might break out, and swear +He'ld fetch us in; yet is't not probable +To come alone, either he so undertaking, +Or they so suffering: then on good ground we fear, +If we do fear this body hath a tail +More perilous than the head. + +ARVIRAGUS: +Let ordinance +Come as the gods foresay it: howsoe'er, +My brother hath done well. + +BELARIUS: +I had no mind +To hunt this day: the boy Fidele's sickness +Did make my way long forth. + +GUIDERIUS: +With his own sword, +Which he did wave against my throat, I have ta'en +His head from him: I'll throw't into the creek +Behind our rock; and let it to the sea, +And tell the fishes he's the queen's son, Cloten: +That's all I reck. + +BELARIUS: +I fear 'twill be revenged: +Would, Polydote, thou hadst not done't! though valour +Becomes thee well enough. + +ARVIRAGUS: +Would I had done't +So the revenge alone pursued me! Polydore, +I love thee brotherly, but envy much +Thou hast robb'd me of this deed: I would revenges, +That possible strength might meet, would seek us through +And put us to our answer. + +BELARIUS: +Well, 'tis done: +We'll hunt no more to-day, nor seek for danger +Where there's no profit. I prithee, to our rock; +You and Fidele play the cooks: I'll stay +Till hasty Polydote return, and bring him +To dinner presently. + +ARVIRAGUS: +Poor sick Fidele! +I'll weringly to him: to gain his colour +I'ld let a parish of such Clotens' blood, +And praise myself for charity. + +BELARIUS: +O thou goddess, +Thou divine Nature, how thyself thou blazon'st +In these two princely boys! They are as gentle +As zephyrs blowing below the violet, +Not wagging his sweet head; and yet as rough, +Their royal blood enchafed, as the rudest wind, +That by the top doth take the mountain pine, +And make him stoop to the vale. 'Tis wonder +That an invisible instinct should frame them +To royalty unlearn'd, honour untaught, +Civility not seen from other, valour +That wildly grows in them, but yields a crop +As if it had been sow'd. Yet still it's strange +What Cloten's being here to us portends, +Or what his death will bring us. + +GUIDERIUS: +Where's my brother? +I have sent Cloten's clotpoll down the stream, +In embassy to his mother: his body's hostage +For his return. + +BELARIUS: +My ingenious instrument! +Hark, Polydore, it sounds! But what occasion +Hath Cadwal now to give it motion? Hark! + +GUIDERIUS: +Is he at home? + +BELARIUS: +He went hence even now. + +GUIDERIUS: +What does he mean? since death of my dear'st mother +it did not speak before. All solemn things +Should answer solemn accidents. The matter? +Triumphs for nothing and lamenting toys +Is jollity for apes and grief for boys. +Is Cadwal mad? + +BELARIUS: +Look, here he comes, +And brings the dire occasion in his arms +Of what we blame him for. + +ARVIRAGUS: +The bird is dead +That we have made so much on. I had rather +Have skipp'd from sixteen years of age to sixty, +To have turn'd my leaping-time into a crutch, +Than have seen this. + +GUIDERIUS: +O sweetest, fairest lily! +My brother wears thee not the one half so well +As when thou grew'st thyself. + +BELARIUS: +O melancholy! +Who ever yet could sound thy bottom? find +The ooze, to show what coast thy sluggish crare +Might easiliest harbour in? Thou blessed thing! +Jove knows what man thou mightst have made; but I, +Thou diedst, a most rare boy, of melancholy. +How found you him? + +ARVIRAGUS: +Stark, as you see: +Thus smiling, as some fly hid tickled slumber, +Not as death's dart, being laugh'd at; his +right cheek +Reposing on a cushion. + +GUIDERIUS: +Where? + +ARVIRAGUS: +O' the floor; +His arms thus leagued: I thought he slept, and put +My clouted brogues from off my feet, whose rudeness +Answer'd my steps too loud. + +GUIDERIUS: +Why, he but sleeps: +If he be gone, he'll make his grave a bed; +With female fairies will his tomb be haunted, +And worms will not come to thee. + +ARVIRAGUS: +With fairest flowers +Whilst summer lasts and I live here, Fidele, +I'll sweeten thy sad grave: thou shalt not lack +The flower that's like thy face, pale primrose, nor +The azured harebell, like thy veins, no, nor +The leaf of eglantine, whom not to slander, +Out-sweeten'd not thy breath: the ruddock would, +With charitable bill,--O bill, sore-shaming +Those rich-left heirs that let their fathers lie +Without a monument!--bring thee all this; +Yea, and furr'd moss besides, when flowers are none, +To winter-ground thy corse. + +GUIDERIUS: +Prithee, have done; +And do not play in wench-like words with that +Which is so serious. Let us bury him, +And not protract with admiration what +Is now due debt. To the grave! + +ARVIRAGUS: +Say, where shall's lay him? + +GUIDERIUS: +By good Euriphile, our mother. + +ARVIRAGUS: +Be't so: +And let us, Polydore, though now our voices +Have got the mannish crack, sing him to the ground, +As once our mother; use like note and words, +Save that Euriphile must be Fidele. + +GUIDERIUS: +Cadwal, +I cannot sing: I'll weep, and word it with thee; +For notes of sorrow out of tune are worse +Than priests and fanes that lie. + +ARVIRAGUS: +We'll speak it, then. + +BELARIUS: +Great griefs, I see, medicine the less; for Cloten +Is quite forgot. He was a queen's son, boys; +And though he came our enemy, remember +He was paid for that: though mean and +mighty, rotting +Together, have one dust, yet reverence, +That angel of the world, doth make distinction +Of place 'tween high and low. Our foe was princely +And though you took his life, as being our foe, +Yet bury him as a prince. + +GUIDERIUS: +Pray You, fetch him hither. +Thersites' body is as good as Ajax', +When neither are alive. + +ARVIRAGUS: +If you'll go fetch him, +We'll say our song the whilst. Brother, begin. + +GUIDERIUS: +Nay, Cadwal, we must lay his head to the east; +My father hath a reason for't. + +ARVIRAGUS: +'Tis true. + +GUIDERIUS: +Come on then, and remove him. + +ARVIRAGUS: +So. Begin. + +GUIDERIUS: +Fear no more the heat o' the sun, +Nor the furious winter's rages; +Thou thy worldly task hast done, +Home art gone, and ta'en thy wages: +Golden lads and girls all must, +As chimney-sweepers, come to dust. + +ARVIRAGUS: +Fear no more the frown o' the great; +Thou art past the tyrant's stroke; +Care no more to clothe and eat; +To thee the reed is as the oak: +The sceptre, learning, physic, must +All follow this, and come to dust. + +GUIDERIUS: +Fear no more the lightning flash, + +ARVIRAGUS: +Nor the all-dreaded thunder-stone; + +GUIDERIUS: +Fear not slander, censure rash; + +ARVIRAGUS: +Thou hast finish'd joy and moan: + +GUIDERIUS: +All lovers young, all lovers must +Consign to thee, and come to dust. + +GUIDERIUS: +No exorciser harm thee! + +ARVIRAGUS: +Nor no witchcraft charm thee! + +GUIDERIUS: +Ghost unlaid forbear thee! + +ARVIRAGUS: +Nothing ill come near thee! + +GUIDERIUS: +Quiet consummation have; +And renowned be thy grave! + +GUIDERIUS: +We have done our obsequies: come, lay him down. + +BELARIUS: +Here's a few flowers; but 'bout midnight, more: +The herbs that have on them cold dew o' the night +Are strewings fitt'st for graves. Upon their faces. +You were as flowers, now wither'd: even so +These herblets shall, which we upon you strew. +Come on, away: apart upon our knees. +The ground that gave them first has them again: +Their pleasures here are past, so is their pain. + +IMOGEN: + +Captain: +To them the legions garrison'd in Gailia, +After your will, have cross'd the sea, attending +You here at Milford-Haven with your ships: +They are in readiness. + +CAIUS LUCIUS: +But what from Rome? + +Captain: +The senate hath stirr'd up the confiners +And gentlemen of Italy, most willing spirits, +That promise noble service: and they come +Under the conduct of bold Iachimo, +Syenna's brother. + +CAIUS LUCIUS: +When expect you them? + +Captain: +With the next benefit o' the wind. + +CAIUS LUCIUS: +This forwardness +Makes our hopes fair. Command our present numbers +Be muster'd; bid the captains look to't. Now, sir, +What have you dream'd of late of this war's purpose? + +Soothsayer: +Last night the very gods show'd me a vision-- +I fast and pray'd for their intelligence--thus: +I saw Jove's bird, the Roman eagle, wing'd +From the spongy south to this part of the west, +There vanish'd in the sunbeams: which portends-- +Unless my sins abuse my divination-- +Success to the Roman host. + +CAIUS LUCIUS: +Dream often so, +And never false. Soft, ho! what trunk is here +Without his top? The ruin speaks that sometime +It was a worthy building. How! a page! +Or dead, or sleeping on him? But dead rather; +For nature doth abhor to make his bed +With the defunct, or sleep upon the dead. +Let's see the boy's face. + +Captain: +He's alive, my lord. + +CAIUS LUCIUS: +He'll then instruct us of this body. Young one, +Inform us of thy fortunes, for it seems +They crave to be demanded. Who is this +Thou makest thy bloody pillow? Or who was he +That, otherwise than noble nature did, +Hath alter'd that good picture? What's thy interest +In this sad wreck? How came it? Who is it? +What art thou? + +IMOGEN: +I am nothing: or if not, +Nothing to be were better. This was my master, +A very valiant Briton and a good, +That here by mountaineers lies slain. Alas! +There is no more such masters: I may wander +From east to occident, cry out for service, +Try many, all good, serve truly, never +Find such another master. + +CAIUS LUCIUS: +'Lack, good youth! +Thou movest no less with thy complaining than +Thy master in bleeding: say his name, good friend. + +IMOGEN: +Richard du Champ. +If I do lie and do +No harm by it, though the gods hear, I hope +They'll pardon it.--Say you, sir? + +CAIUS LUCIUS: +Thy name? + +IMOGEN: +Fidele, sir. + +CAIUS LUCIUS: +Thou dost approve thyself the very same: +Thy name well fits thy faith, thy faith thy name. +Wilt take thy chance with me? I will not say +Thou shalt be so well master'd, but, be sure, +No less beloved. The Roman emperor's letters, +Sent by a consul to me, should not sooner +Than thine own worth prefer thee: go with me. + +IMOGEN: +I'll follow, sir. But first, an't please the gods, +I'll hide my master from the flies, as deep +As these poor pickaxes can dig; and when +With wild wood-leaves and weeds I ha' strew'd his grave, +And on it said a century of prayers, +Such as I can, twice o'er, I'll weep and sigh; +And leaving so his service, follow you, +So please you entertain me. + +CAIUS LUCIUS: +Ay, good youth! +And rather father thee than master thee. +My friends, +The boy hath taught us manly duties: let us +Find out the prettiest daisied plot we can, +And make him with our pikes and partisans +A grave: come, arm him. Boy, he is preferr'd +By thee to us, and he shall be interr'd +As soldiers can. Be cheerful; wipe thine eyes +Some falls are means the happier to arise. + +CYMBELINE: +Again; and bring me word how 'tis with her. +A fever with the absence of her son, +A madness, of which her life's in danger. Heavens, +How deeply you at once do touch me! Imogen, +The great part of my comfort, gone; my queen +Upon a desperate bed, and in a time +When fearful wars point at me; her son gone, +So needful for this present: it strikes me, past +The hope of comfort. But for thee, fellow, +Who needs must know of her departure and +Dost seem so ignorant, we'll enforce it from thee +By a sharp torture. + +PISANIO: +Sir, my life is yours; +I humbly set it at your will; but, for my mistress, +I nothing know where she remains, why gone, +Nor when she purposes return. Beseech your highness, +Hold me your loyal servant. + +First Lord: +Good my liege, +The day that she was missing he was here: +I dare be bound he's true and shall perform +All parts of his subjection loyally. For Cloten, +There wants no diligence in seeking him, +And will, no doubt, be found. + +CYMBELINE: +The time is troublesome. +We'll slip you for a season; but our jealousy +Does yet depend. + +First Lord: +So please your majesty, +The Roman legions, all from Gallia drawn, +Are landed on your coast, with a supply +Of Roman gentlemen, by the senate sent. + +CYMBELINE: +Now for the counsel of my son and queen! +I am amazed with matter. + +First Lord: +Good my liege, +Your preparation can affront no less +Than what you hear of: come more, for more +you're ready: +The want is but to put those powers in motion +That long to move. + +CYMBELINE: +I thank you. Let's withdraw; +And meet the time as it seeks us. We fear not +What can from Italy annoy us; but +We grieve at chances here. Away! + +PISANIO: +I heard no letter from my master since +I wrote him Imogen was slain: 'tis strange: +Nor hear I from my mistress who did promise +To yield me often tidings: neither know I +What is betid to Cloten; but remain +Perplex'd in all. The heavens still must work. +Wherein I am false I am honest; not true, to be true. +These present wars shall find I love my country, +Even to the note o' the king, or I'll fall in them. +All other doubts, by time let them be clear'd: +Fortune brings in some boats that are not steer'd. + +GUIDERIUS: +The noise is round about us. + +BELARIUS: +Let us from it. + +ARVIRAGUS: +What pleasure, sir, find we in life, to lock it +From action and adventure? + +GUIDERIUS: +Nay, what hope +Have we in hiding us? This way, the Romans +Must or for Britons slay us, or receive us +For barbarous and unnatural revolts +During their use, and slay us after. + +BELARIUS: +Sons, +We'll higher to the mountains; there secure us. +To the king's party there's no going: newness +Of Cloten's death--we being not known, not muster'd +Among the bands--may drive us to a render +Where we have lived, and so extort from's that +Which we have done, whose answer would be death +Drawn on with torture. + +GUIDERIUS: +This is, sir, a doubt +In such a time nothing becoming you, +Nor satisfying us. + +ARVIRAGUS: +It is not likely +That when they hear the Roman horses neigh, +Behold their quarter'd fires, have both their eyes +And ears so cloy'd importantly as now, +That they will waste their time upon our note, +To know from whence we are. + +BELARIUS: +O, I am known +Of many in the army: many years, +Though Cloten then but young, you see, not wore him +From my remembrance. And, besides, the king +Hath not deserved my service nor your loves; +Who find in my exile the want of breeding, +The certainty of this hard life; aye hopeless +To have the courtesy your cradle promised, +But to be still hot summer's tamings and +The shrinking slaves of winter. + +GUIDERIUS: +Than be so +Better to cease to be. Pray, sir, to the army: +I and my brother are not known; yourself +So out of thought, and thereto so o'ergrown, +Cannot be question'd. + +ARVIRAGUS: +By this sun that shines, +I'll thither: what thing is it that I never +Did see man die! scarce ever look'd on blood, +But that of coward hares, hot goats, and venison! +Never bestrid a horse, save one that had +A rider like myself, who ne'er wore rowel +Nor iron on his heel! I am ashamed +To look upon the holy sun, to have +The benefit of his blest beams, remaining +So long a poor unknown. + +GUIDERIUS: +By heavens, I'll go: +If you will bless me, sir, and give me leave, +I'll take the better care, but if you will not, +The hazard therefore due fall on me by +The hands of Romans! + +ARVIRAGUS: +So say I amen. + +BELARIUS: +No reason I, since of your lives you set +So slight a valuation, should reserve +My crack'd one to more care. Have with you, boys! +If in your country wars you chance to die, +That is my bed too, lads, an there I'll lie: +Lead, lead. +The time seems long; their blood +thinks scorn, +Till it fly out and show them princes born. + +POSTHUMUS LEONATUS: +Yea, bloody cloth, I'll keep thee, for I wish'd +Thou shouldst be colour'd thus. You married ones, +If each of you should take this course, how many +Must murder wives much better than themselves +For wrying but a little! O Pisanio! +Every good servant does not all commands: +No bond but to do just ones. Gods! if you +Should have ta'en vengeance on my faults, I never +Had lived to put on this: so had you saved +The noble Imogen to repent, and struck +Me, wretch more worth your vengeance. But, alack, +You snatch some hence for little faults; that's love, +To have them fall no more: you some permit +To second ills with ills, each elder worse, +And make them dread it, to the doers' thrift. +But Imogen is your own: do your best wills, +And make me blest to obey! I am brought hither +Among the Italian gentry, and to fight +Against my lady's kingdom: 'tis enough +That, Britain, I have kill'd thy mistress; peace! +I'll give no wound to thee. Therefore, good heavens, +Hear patiently my purpose: I'll disrobe me +Of these Italian weeds and suit myself +As does a Briton peasant: so I'll fight +Against the part I come with; so I'll die +For thee, O Imogen, even for whom my life +Is every breath a death; and thus, unknown, +Pitied nor hated, to the face of peril +Myself I'll dedicate. Let me make men know +More valour in me than my habits show. +Gods, put the strength o' the Leonati in me! +To shame the guise o' the world, I will begin +The fashion, less without and more within. + +IACHIMO: +The heaviness and guilt within my bosom +Takes off my manhood: I have belied a lady, +The princess of this country, and the air on't +Revengingly enfeebles me; or could this carl, +A very drudge of nature's, have subdued me +In my profession? Knighthoods and honours, borne +As I wear mine, are titles but of scorn. +If that thy gentry, Britain, go before +This lout as he exceeds our lords, the odds +Is that we scarce are men and you are gods. + +BELARIUS: +Stand, stand! We have the advantage of the ground; +The lane is guarded: nothing routs us but +The villany of our fears. + +GUIDERIUS: +Stand, stand, and fight! + +CAIUS LUCIUS: +Away, boy, from the troops, and save thyself; +For friends kill friends, and the disorder's such +As war were hoodwink'd. + +IACHIMO: +'Tis their fresh supplies. + +CAIUS LUCIUS: +It is a day turn'd strangely: or betimes +Let's reinforce, or fly. + +Lord: +Camest thou from where they made the stand? + +POSTHUMUS LEONATUS: +I did. +Though you, it seems, come from the fliers. + +Lord: +I did. + +POSTHUMUS LEONATUS: +No blame be to you, sir; for all was lost, +But that the heavens fought: the king himself +Of his wings destitute, the army broken, +And but the backs of Britons seen, all flying +Through a straight lane; the enemy full-hearted, +Lolling the tongue with slaughtering, having work +More plentiful than tools to do't, struck down +Some mortally, some slightly touch'd, some falling +Merely through fear; that the straight pass was damm'd +With dead men hurt behind, and cowards living +To die with lengthen'd shame. + +Lord: +Where was this lane? + +POSTHUMUS LEONATUS: +Close by the battle, ditch'd, and wall'd with turf; +Which gave advantage to an ancient soldier, +An honest one, I warrant; who deserved +So long a breeding as his white beard came to, +In doing this for's country: athwart the lane, +He, with two striplings-lads more like to run +The country base than to commit such slaughter +With faces fit for masks, or rather fairer +Than those for preservation cased, or shame-- +Made good the passage; cried to those that fled, +'Our Britain s harts die flying, not our men: +To darkness fleet souls that fly backwards. Stand; +Or we are Romans and will give you that +Like beasts which you shun beastly, and may save, +But to look back in frown: stand, stand.' +These three, +Three thousand confident, in act as many-- +For three performers are the file when all +The rest do nothing--with this word 'Stand, stand,' +Accommodated by the place, more charming +With their own nobleness, which could have turn'd +A distaff to a lance, gilded pale looks, +Part shame, part spirit renew'd; that some, +turn'd coward +But by example--O, a sin in war, +Damn'd in the first beginners!--gan to look +The way that they did, and to grin like lions +Upon the pikes o' the hunters. Then began +A stop i' the chaser, a retire, anon +A rout, confusion thick; forthwith they fly +Chickens, the way which they stoop'd eagles; slaves, +The strides they victors made: and now our cowards, +Like fragments in hard voyages, became +The life o' the need: having found the backdoor open +Of the unguarded hearts, heavens, how they wound! +Some slain before; some dying; some their friends +O'er borne i' the former wave: ten, chased by one, +Are now each one the slaughter-man of twenty: +Those that would die or ere resist are grown +The mortal bugs o' the field. + +Lord: +This was strange chance +A narrow lane, an old man, and two boys. + +POSTHUMUS LEONATUS: +Nay, do not wonder at it: you are made +Rather to wonder at the things you hear +Than to work any. Will you rhyme upon't, +And vent it for a mockery? Here is one: +'Two boys, an old man twice a boy, a lane, +Preserved the Britons, was the Romans' bane.' + +Lord: +Nay, be not angry, sir. + +POSTHUMUS LEONATUS: +'Lack, to what end? +Who dares not stand his foe, I'll be his friend; +For if he'll do as he is made to do, +I know he'll quickly fly my friendship too. +You have put me into rhyme. + +Lord: +Farewell; you're angry. + +POSTHUMUS LEONATUS: +Still going? +This is a lord! O noble misery, +To be i' the field, and ask 'what news?' of me! +To-day how many would have given their honours +To have saved their carcasses! took heel to do't, +And yet died too! I, in mine own woe charm'd, +Could not find death where I did hear him groan, +Nor feel him where he struck: being an ugly monster, +'Tis strange he hides him in fresh cups, soft beds, +Sweet words; or hath more ministers than we +That draw his knives i' the war. Well, I will find him +For being now a favourer to the Briton, +No more a Briton, I have resumed again +The part I came in: fight I will no more, +But yield me to the veriest hind that shall +Once touch my shoulder. Great the slaughter is +Here made by the Roman; great the answer be +Britons must take. For me, my ransom's death; +On either side I come to spend my breath; +Which neither here I'll keep nor bear again, +But end it by some means for Imogen. + +First Captain: +Great Jupiter be praised! Lucius is taken. +'Tis thought the old man and his sons were angels. + +Second Captain: +There was a fourth man, in a silly habit, +That gave the affront with them. + +First Captain: +So 'tis reported: +But none of 'em can be found. Stand! who's there? + +POSTHUMUS LEONATUS: +A Roman, +Who had not now been drooping here, if seconds +Had answer'd him. + +Second Captain: +Lay hands on him; a dog! +A leg of Rome shall not return to tell +What crows have peck'd them here. He brags +his service +As if he were of note: bring him to the king. + +First Gaoler: +You shall not now be stol'n, you have locks upon you; +So graze as you find pasture. + +Second Gaoler: +Ay, or a stomach. + +POSTHUMUS LEONATUS: +Most welcome, bondage! for thou art away, +think, to liberty: yet am I better +Than one that's sick o' the gout; since he had rather +Groan so in perpetuity than be cured +By the sure physician, death, who is the key +To unbar these locks. My conscience, thou art fetter'd +More than my shanks and wrists: you good gods, give me +The penitent instrument to pick that bolt, +Then, free for ever! Is't enough I am sorry? +So children temporal fathers do appease; +Gods are more full of mercy. Must I repent? +I cannot do it better than in gyves, +Desired more than constrain'd: to satisfy, +If of my freedom 'tis the main part, take +No stricter render of me than my all. +I know you are more clement than vile men, +Who of their broken debtors take a third, +A sixth, a tenth, letting them thrive again +On their abatement: that's not my desire: +For Imogen's dear life take mine; and though +'Tis not so dear, yet 'tis a life; you coin'd it: +'Tween man and man they weigh not every stamp; +Though light, take pieces for the figure's sake: +You rather mine, being yours: and so, great powers, +If you will take this audit, take this life, +And cancel these cold bonds. O Imogen! +I'll speak to thee in silence. + +Sicilius Leonatus: +No more, thou thunder-master, show +Thy spite on mortal flies: +With Mars fall out, with Juno chide, +That thy adulteries +Rates and revenges. +Hath my poor boy done aught but well, +Whose face I never saw? +I died whilst in the womb he stay'd +Attending nature's law: +Whose father then, as men report +Thou orphans' father art, +Thou shouldst have been, and shielded him +From this earth-vexing smart. + +Mother: +Lucina lent not me her aid, +But took me in my throes; +That from me was Posthumus ript, +Came crying 'mongst his foes, +A thing of pity! + +Sicilius Leonatus: +Great nature, like his ancestry, +Moulded the stuff so fair, +That he deserved the praise o' the world, +As great Sicilius' heir. + +First Brother: +When once he was mature for man, +In Britain where was he +That could stand up his parallel; +Or fruitful object be +In eye of Imogen, that best +Could deem his dignity? + +Mother: +With marriage wherefore was he mock'd, +To be exiled, and thrown +From Leonati seat, and cast +From her his dearest one, +Sweet Imogen? + +Sicilius Leonatus: +Why did you suffer Iachimo, +Slight thing of Italy, +To taint his nobler heart and brain +With needless jealosy; +And to become the geck and scorn +O' th' other's villany? + +Second Brother: +For this from stiller seats we came, +Our parents and us twain, +That striking in our country's cause +Fell bravely and were slain, +Our fealty and Tenantius' right +With honour to maintain. + +First Brother: +Like hardiment Posthumus hath +To Cymbeline perform'd: +Then, Jupiter, thou king of gods, +Why hast thou thus adjourn'd +The graces for his merits due, +Being all to dolours turn'd? + +Sicilius Leonatus: +Thy crystal window ope; look out; +No longer exercise +Upon a valiant race thy harsh +And potent injuries. + +Mother: +Since, Jupiter, our son is good, +Take off his miseries. + +Sicilius Leonatus: +Peep through thy marble mansion; help; +Or we poor ghosts will cry +To the shining synod of the rest +Against thy deity. + +First Brother: +Help, Jupiter; or we appeal, +And from thy justice fly. + +Jupiter: +No more, you petty spirits of region low, +Offend our hearing; hush! How dare you ghosts +Accuse the thunderer, whose bolt, you know, +Sky-planted batters all rebelling coasts? +Poor shadows of Elysium, hence, and rest +Upon your never-withering banks of flowers: +Be not with mortal accidents opprest; +No care of yours it is; you know 'tis ours. +Whom best I love I cross; to make my gift, +The more delay'd, delighted. Be content; +Your low-laid son our godhead will uplift: +His comforts thrive, his trials well are spent. +Our Jovial star reign'd at his birth, and in +Our temple was he married. Rise, and fade. +He shall be lord of lady Imogen, +And happier much by his affliction made. +This tablet lay upon his breast, wherein +Our pleasure his full fortune doth confine: +and so, away: no further with your din +Express impatience, lest you stir up mine. +Mount, eagle, to my palace crystalline. + +Sicilius Leonatus: +He came in thunder; his celestial breath +Was sulphurous to smell: the holy eagle +Stoop'd as to foot us: his ascension is +More sweet than our blest fields: his royal bird +Prunes the immortal wing and cloys his beak, +As when his god is pleased. + +All: +Thanks, Jupiter! + +Sicilius Leonatus: +The marble pavement closes, he is enter'd +His radiant root. Away! and, to be blest, +Let us with care perform his great behest. + +Posthumus Leonatus: + +First Gaoler: +Come, sir, are you ready for death? + +POSTHUMUS LEONATUS: +Over-roasted rather; ready long ago. + +First Gaoler: +Hanging is the word, sir: if +you be ready for that, you are well cooked. + +POSTHUMUS LEONATUS: +So, if I prove a good repast to the +spectators, the dish pays the shot. + +First Gaoler: +A heavy reckoning for you, sir. But the comfort is, +you shall be called to no more payments, fear no +more tavern-bills; which are often the sadness of +parting, as the procuring of mirth: you come in +flint for want of meat, depart reeling with too +much drink; sorry that you have paid too much, and +sorry that you are paid too much; purse and brain +both empty; the brain the heavier for being too +light, the purse too light, being drawn of +heaviness: of this contradiction you shall now be +quit. O, the charity of a penny cord! It sums up +thousands in a trice: you have no true debitor and +creditor but it; of what's past, is, and to come, +the discharge: your neck, sir, is pen, book and +counters; so the acquittance follows. + +POSTHUMUS LEONATUS: +I am merrier to die than thou art to live. + +First Gaoler: +Indeed, sir, he that sleeps feels not the +tooth-ache: but a man that were to sleep your +sleep, and a hangman to help him to bed, I think he +would change places with his officer; for, look you, +sir, you know not which way you shall go. + +POSTHUMUS LEONATUS: +Yes, indeed do I, fellow. + +First Gaoler: +Your death has eyes in 's head then; I have not seen +him so pictured: you must either be directed by +some that take upon them to know, or do take upon +yourself that which I am sure you do not know, or +jump the after inquiry on your own peril: and how +you shall speed in your journey's end, I think you'll +never return to tell one. + +POSTHUMUS LEONATUS: +I tell thee, fellow, there are none want eyes to +direct them the way I am going, but such as wink and +will not use them. + +First Gaoler: +What an infinite mock is this, that a man should +have the best use of eyes to see the way of +blindness! I am sure hanging's the way of winking. + +Messenger: +Knock off his manacles; bring your prisoner to the king. + +POSTHUMUS LEONATUS: +Thou bring'st good news; I am called to be made free. + +First Gaoler: +I'll be hang'd then. + +POSTHUMUS LEONATUS: +Thou shalt be then freer than a gaoler; no bolts for the dead. + +First Gaoler: +Unless a man would marry a gallows and beget young +gibbets, I never saw one so prone. Yet, on my +conscience, there are verier knaves desire to live, +for all he be a Roman: and there be some of them +too that die against their wills; so should I, if I +were one. I would we were all of one mind, and one +mind good; O, there were desolation of gaolers and +gallowses! I speak against my present profit, but +my wish hath a preferment in 't. + +CYMBELINE: +Stand by my side, you whom the gods have made +Preservers of my throne. Woe is my heart +That the poor soldier that so richly fought, +Whose rags shamed gilded arms, whose naked breast +Stepp'd before larges of proof, cannot be found: +He shall be happy that can find him, if +Our grace can make him so. + +BELARIUS: +I never saw +Such noble fury in so poor a thing; +Such precious deeds in one that promises nought +But beggary and poor looks. + +CYMBELINE: +No tidings of him? + +PISANIO: +He hath been search'd among the dead and living, +But no trace of him. + +CYMBELINE: +To my grief, I am +The heir of his reward; +which I will add +To you, the liver, heart and brain of Britain, +By whom I grant she lives. 'Tis now the time +To ask of whence you are. Report it. + +BELARIUS: +Sir, +In Cambria are we born, and gentlemen: +Further to boast were neither true nor modest, +Unless I add, we are honest. + +CYMBELINE: +Bow your knees. +Arise my knights o' the battle: I create you +Companions to our person and will fit you +With dignities becoming your estates. +There's business in these faces. Why so sadly +Greet you our victory? you look like Romans, +And not o' the court of Britain. + +CORNELIUS: +Hail, great king! +To sour your happiness, I must report +The queen is dead. + +CYMBELINE: +Who worse than a physician +Would this report become? But I consider, +By medicine life may be prolong'd, yet death +Will seize the doctor too. How ended she? + +CORNELIUS: +With horror, madly dying, like her life, +Which, being cruel to the world, concluded +Most cruel to herself. What she confess'd +I will report, so please you: these her women +Can trip me, if I err; who with wet cheeks +Were present when she finish'd. + +CYMBELINE: +Prithee, say. + +CORNELIUS: +First, she confess'd she never loved you, only +Affected greatness got by you, not you: +Married your royalty, was wife to your place; +Abhorr'd your person. + +CYMBELINE: +She alone knew this; +And, but she spoke it dying, I would not +Believe her lips in opening it. Proceed. + +CORNELIUS: +Your daughter, whom she bore in hand to love +With such integrity, she did confess +Was as a scorpion to her sight; whose life, +But that her flight prevented it, she had +Ta'en off by poison. + +CYMBELINE: +O most delicate fiend! +Who is 't can read a woman? Is there more? + +CORNELIUS: +More, sir, and worse. She did confess she had +For you a mortal mineral; which, being took, +Should by the minute feed on life and lingering +By inches waste you: in which time she purposed, +By watching, weeping, tendance, kissing, to +O'ercome you with her show, and in time, +When she had fitted you with her craft, to work +Her son into the adoption of the crown: +But, failing of her end by his strange absence, +Grew shameless-desperate; open'd, in despite +Of heaven and men, her purposes; repented +The evils she hatch'd were not effected; so +Despairing died. + +CYMBELINE: +Heard you all this, her women? + +First Lady: +We did, so please your highness. + +CYMBELINE: +Mine eyes +Were not in fault, for she was beautiful; +Mine ears, that heard her flattery; nor my heart, +That thought her like her seeming; it had +been vicious +To have mistrusted her: yet, O my daughter! +That it was folly in me, thou mayst say, +And prove it in thy feeling. Heaven mend all! +Thou comest not, Caius, now for tribute that +The Britons have razed out, though with the loss +Of many a bold one; whose kinsmen have made suit +That their good souls may be appeased with slaughter +Of you their captives, which ourself have granted: +So think of your estate. + +CAIUS LUCIUS: +Consider, sir, the chance of war: the day +Was yours by accident; had it gone with us, +We should not, when the blood was cool, +have threaten'd +Our prisoners with the sword. But since the gods +Will have it thus, that nothing but our lives +May be call'd ransom, let it come: sufficeth +A Roman with a Roman's heart can suffer: +Augustus lives to think on't: and so much +For my peculiar care. This one thing only +I will entreat; my boy, a Briton born, +Let him be ransom'd: never master had +A page so kind, so duteous, diligent, +So tender over his occasions, true, +So feat, so nurse-like: let his virtue join +With my request, which I make bold your highness +Cannot deny; he hath done no Briton harm, +Though he have served a Roman: save him, sir, +And spare no blood beside. + +CYMBELINE: +I have surely seen him: +His favour is familiar to me. Boy, +Thou hast look'd thyself into my grace, +And art mine own. I know not why, wherefore, +To say 'live, boy:' ne'er thank thy master; live: +And ask of Cymbeline what boon thou wilt, +Fitting my bounty and thy state, I'll give it; +Yea, though thou do demand a prisoner, +The noblest ta'en. + +IMOGEN: +I humbly thank your highness. + +CAIUS LUCIUS: +I do not bid thee beg my life, good lad; +And yet I know thou wilt. + +IMOGEN: +No, no: alack, +There's other work in hand: I see a thing +Bitter to me as death: your life, good master, +Must shuffle for itself. + +CAIUS LUCIUS: +The boy disdains me, +He leaves me, scorns me: briefly die their joys +That place them on the truth of girls and boys. +Why stands he so perplex'd? + +CYMBELINE: +What wouldst thou, boy? +I love thee more and more: think more and more +What's best to ask. Know'st him thou look'st on? speak, +Wilt have him live? Is he thy kin? thy friend? + +IMOGEN: +He is a Roman; no more kin to me +Than I to your highness; who, being born your vassal, +Am something nearer. + +CYMBELINE: +Wherefore eyest him so? + +IMOGEN: +I'll tell you, sir, in private, if you please +To give me hearing. + +CYMBELINE: +Ay, with all my heart, +And lend my best attention. What's thy name? + +IMOGEN: +Fidele, sir. + +CYMBELINE: +Thou'rt my good youth, my page; +I'll be thy master: walk with me; speak freely. + +BELARIUS: +Is not this boy revived from death? + +ARVIRAGUS: +One sand another +Not more resembles that sweet rosy lad +Who died, and was Fidele. What think you? + +GUIDERIUS: +The same dead thing alive. + +BELARIUS: +Peace, peace! see further; he eyes us not; forbear; +Creatures may be alike: were 't he, I am sure +He would have spoke to us. + +GUIDERIUS: +But we saw him dead. + +BELARIUS: +Be silent; let's see further. + +PISANIO: + +CYMBELINE: +Come, stand thou by our side; +Make thy demand aloud. +Sir, step you forth; +Give answer to this boy, and do it freely; +Or, by our greatness and the grace of it, +Which is our honour, bitter torture shall +Winnow the truth from falsehood. On, speak to him. + +IMOGEN: +My boon is, that this gentleman may render +Of whom he had this ring. + +POSTHUMUS LEONATUS: + +CYMBELINE: +That diamond upon your finger, say +How came it yours? + +IACHIMO: +Thou'lt torture me to leave unspoken that +Which, to be spoke, would torture thee. + +CYMBELINE: +How! me? + +IACHIMO: +I am glad to be constrain'd to utter that +Which torments me to conceal. By villany +I got this ring: 'twas Leonatus' jewel; +Whom thou didst banish; and--which more may +grieve thee, +As it doth me--a nobler sir ne'er lived +'Twixt sky and ground. Wilt thou hear more, my lord? + +CYMBELINE: +All that belongs to this. + +IACHIMO: +That paragon, thy daughter,-- +For whom my heart drops blood, and my false spirits +Quail to remember--Give me leave; I faint. + +CYMBELINE: +My daughter! what of her? Renew thy strength: +I had rather thou shouldst live while nature will +Than die ere I hear more: strive, man, and speak. + +IACHIMO: +Upon a time,--unhappy was the clock +That struck the hour!--it was in Rome,--accursed +The mansion where!--'twas at a feast,--O, would +Our viands had been poison'd, or at least +Those which I heaved to head!--the good Posthumus-- +What should I say? he was too good to be +Where ill men were; and was the best of all +Amongst the rarest of good ones,--sitting sadly, +Hearing us praise our loves of Italy +For beauty that made barren the swell'd boast +Of him that best could speak, for feature, laming +The shrine of Venus, or straight-pight Minerva. +Postures beyond brief nature, for condition, +A shop of all the qualities that man +Loves woman for, besides that hook of wiving, +Fairness which strikes the eye-- + +CYMBELINE: +I stand on fire: +Come to the matter. + +IACHIMO: +All too soon I shall, +Unless thou wouldst grieve quickly. This Posthumus, +Most like a noble lord in love and one +That had a royal lover, took his hint; +And, not dispraising whom we praised,--therein +He was as calm as virtue--he began +His mistress' picture; which by his tongue +being made, +And then a mind put in't, either our brags +Were crack'd of kitchen-trolls, or his description +Proved us unspeaking sots. + +CYMBELINE: +Nay, nay, to the purpose. + +IACHIMO: +Your daughter's chastity--there it begins. +He spake of her, as Dian had hot dreams, +And she alone were cold: whereat I, wretch, +Made scruple of his praise; and wager'd with him +Pieces of gold 'gainst this which then he wore +Upon his honour'd finger, to attain +In suit the place of's bed and win this ring +By hers and mine adultery. He, true knight, +No lesser of her honour confident +Than I did truly find her, stakes this ring; +And would so, had it been a carbuncle +Of Phoebus' wheel, and might so safely, had it +Been all the worth of's car. Away to Britain +Post I in this design: well may you, sir, +Remember me at court; where I was taught +Of your chaste daughter the wide difference +'Twixt amorous and villanous. Being thus quench'd +Of hope, not longing, mine Italian brain +'Gan in your duller Britain operate +Most vilely; for my vantage, excellent: +And, to be brief, my practise so prevail'd, +That I return'd with simular proof enough +To make the noble Leonatus mad, +By wounding his belief in her renown +With tokens thus, and thus; averting notes +Of chamber-hanging, pictures, this her bracelet,-- +O cunning, how I got it!--nay, some marks +Of secret on her person, that he could not +But think her bond of chastity quite crack'd, +I having ta'en the forfeit. Whereupon-- +Methinks, I see him now-- + +POSTHUMUS LEONATUS: + +IMOGEN: +Peace, my lord; hear, hear-- + +POSTHUMUS LEONATUS: +Shall's have a play of this? Thou scornful page, +There lie thy part. + +PISANIO: +O, gentlemen, help! +Mine and your mistress! O, my lord Posthumus! +You ne'er kill'd Imogen til now. Help, help! +Mine honour'd lady! + +CYMBELINE: +Does the world go round? + +POSTHUMUS LEONATUS: +How come these staggers on me? + +PISANIO: +Wake, my mistress! + +CYMBELINE: +If this be so, the gods do mean to strike me +To death with mortal joy. + +PISANIO: +How fares thy mistress? + +IMOGEN: +O, get thee from my sight; +Thou gavest me poison: dangerous fellow, hence! +Breathe not where princes are. + +CYMBELINE: +The tune of Imogen! + +PISANIO: +Lady, +The gods throw stones of sulphur on me, if +That box I gave you was not thought by me +A precious thing: I had it from the queen. + +CYMBELINE: +New matter still? + +IMOGEN: +It poison'd me. + +CORNELIUS: +O gods! +I left out one thing which the queen confess'd. +Which must approve thee honest: 'If Pisanio +Have,' said she, 'given his mistress that confection +Which I gave him for cordial, she is served +As I would serve a rat.' + +CYMBELINE: +What's this, Comelius? + +CORNELIUS: +The queen, sir, very oft importuned me +To temper poisons for her, still pretending +The satisfaction of her knowledge only +In killing creatures vile, as cats and dogs, +Of no esteem: I, dreading that her purpose +Was of more danger, did compound for her +A certain stuff, which, being ta'en, would cease +The present power of life, but in short time +All offices of nature should again +Do their due functions. Have you ta'en of it? + +IMOGEN: +Most like I did, for I was dead. + +BELARIUS: +My boys, +There was our error. + +GUIDERIUS: +This is, sure, Fidele. + +IMOGEN: +Why did you throw your wedded lady from you? +Think that you are upon a rock; and now +Throw me again. + +POSTHUMUS LEONATUS: +Hang there like a fruit, my soul, +Till the tree die! + +CYMBELINE: +How now, my flesh, my child! +What, makest thou me a dullard in this act? +Wilt thou not speak to me? + +IMOGEN: + +BELARIUS: + +CYMBELINE: +My tears that fall +Prove holy water on thee! Imogen, +Thy mother's dead. + +IMOGEN: +I am sorry for't, my lord. + +CYMBELINE: +O, she was nought; and long of her it was +That we meet here so strangely: but her son +Is gone, we know not how nor where. + +PISANIO: +My lord, +Now fear is from me, I'll speak troth. Lord Cloten, +Upon my lady's missing, came to me +With his sword drawn; foam'd at the mouth, and swore, +If I discover'd not which way she was gone, +It was my instant death. By accident, +had a feigned letter of my master's +Then in my pocket; which directed him +To seek her on the mountains near to Milford; +Where, in a frenzy, in my master's garments, +Which he enforced from me, away he posts +With unchaste purpose and with oath to violate +My lady's honour: what became of him +I further know not. + +GUIDERIUS: +Let me end the story: +I slew him there. + +CYMBELINE: +Marry, the gods forfend! +I would not thy good deeds should from my lips +Pluck a bard sentence: prithee, valiant youth, +Deny't again. + +GUIDERIUS: +I have spoke it, and I did it. + +CYMBELINE: +He was a prince. + +GUIDERIUS: +A most incivil one: the wrongs he did me +Were nothing prince-like; for he did provoke me +With language that would make me spurn the sea, +If it could so roar to me: I cut off's head; +And am right glad he is not standing here +To tell this tale of mine. + +CYMBELINE: +I am sorry for thee: +By thine own tongue thou art condemn'd, and must +Endure our law: thou'rt dead. + +IMOGEN: +That headless man +I thought had been my lord. + +CYMBELINE: +Bind the offender, +And take him from our presence. + +BELARIUS: +Stay, sir king: +This man is better than the man he slew, +As well descended as thyself; and hath +More of thee merited than a band of Clotens +Had ever scar for. +Let his arms alone; +They were not born for bondage. + +CYMBELINE: +Why, old soldier, +Wilt thou undo the worth thou art unpaid for, +By tasting of our wrath? How of descent +As good as we? + +ARVIRAGUS: +In that he spake too far. + +CYMBELINE: +And thou shalt die for't. + +BELARIUS: +We will die all three: +But I will prove that two on's are as good +As I have given out him. My sons, I must, +For mine own part, unfold a dangerous speech, +Though, haply, well for you. + +ARVIRAGUS: +Your danger's ours. + +GUIDERIUS: +And our good his. + +BELARIUS: +Have at it then, by leave. +Thou hadst, great king, a subject who +Was call'd Belarius. + +CYMBELINE: +What of him? he is +A banish'd traitor. + +BELARIUS: +He it is that hath +Assumed this age; indeed a banish'd man; +I know not how a traitor. + +CYMBELINE: +Take him hence: +The whole world shall not save him. + +BELARIUS: +Not too hot: +First pay me for the nursing of thy sons; +And let it be confiscate all, so soon +As I have received it. + +CYMBELINE: +Nursing of my sons! + +BELARIUS: +I am too blunt and saucy: here's my knee: +Ere I arise, I will prefer my sons; +Then spare not the old father. Mighty sir, +These two young gentlemen, that call me father +And think they are my sons, are none of mine; +They are the issue of your loins, my liege, +And blood of your begetting. + +CYMBELINE: +How! my issue! + +BELARIUS: +So sure as you your father's. I, old Morgan, +Am that Belarius whom you sometime banish'd: +Your pleasure was my mere offence, my punishment +Itself, and all my treason; that I suffer'd +Was all the harm I did. These gentle princes-- +For such and so they are--these twenty years +Have I train'd up: those arts they have as I +Could put into them; my breeding was, sir, as +Your highness knows. Their nurse, Euriphile, +Whom for the theft I wedded, stole these children +Upon my banishment: I moved her to't, +Having received the punishment before, +For that which I did then: beaten for loyalty +Excited me to treason: their dear loss, +The more of you 'twas felt, the more it shaped +Unto my end of stealing them. But, gracious sir, +Here are your sons again; and I must lose +Two of the sweet'st companions in the world. +The benediction of these covering heavens +Fall on their heads like dew! for they are worthy +To inlay heaven with stars. + +CYMBELINE: +Thou weep'st, and speak'st. +The service that you three have done is more +Unlike than this thou tell'st. I lost my children: +If these be they, I know not how to wish +A pair of worthier sons. + +BELARIUS: +Be pleased awhile. +This gentleman, whom I call Polydore, +Most worthy prince, as yours, is true Guiderius: +This gentleman, my Cadwal, Arviragus, +Your younger princely son; he, sir, was lapp'd +In a most curious mantle, wrought by the hand +Of his queen mother, which for more probation +I can with ease produce. + +CYMBELINE: +Guiderius had +Upon his neck a mole, a sanguine star; +It was a mark of wonder. + +BELARIUS: +This is he; +Who hath upon him still that natural stamp: +It was wise nature's end in the donation, +To be his evidence now. + +CYMBELINE: +O, what, am I +A mother to the birth of three? Ne'er mother +Rejoiced deliverance more. Blest pray you be, +That, after this strange starting from your orbs, +may reign in them now! O Imogen, +Thou hast lost by this a kingdom. + +IMOGEN: +No, my lord; +I have got two worlds by 't. O my gentle brothers, +Have we thus met? O, never say hereafter +But I am truest speaker you call'd me brother, +When I was but your sister; I you brothers, +When ye were so indeed. + +CYMBELINE: +Did you e'er meet? + +ARVIRAGUS: +Ay, my good lord. + +GUIDERIUS: +And at first meeting loved; +Continued so, until we thought he died. + +CORNELIUS: +By the queen's dram she swallow'd. + +CYMBELINE: +O rare instinct! +When shall I hear all through? This fierce +abridgement +Hath to it circumstantial branches, which +Distinction should be rich in. Where? how lived You? +And when came you to serve our Roman captive? +How parted with your brothers? how first met them? +Why fled you from the court? and whither? These, +And your three motives to the battle, with +I know not how much more, should be demanded; +And all the other by-dependencies, +From chance to chance: but nor the time nor place +Will serve our long inter'gatories. See, +Posthumus anchors upon Imogen, +And she, like harmless lightning, throws her eye +On him, her brother, me, her master, hitting +Each object with a joy: the counterchange +Is severally in all. Let's quit this ground, +And smoke the temple with our sacrifices. +Thou art my brother; so we'll hold thee ever. + +IMOGEN: +You are my father too, and did relieve me, +To see this gracious season. + +CYMBELINE: +All o'erjoy'd, +Save these in bonds: let them be joyful too, +For they shall taste our comfort. + +IMOGEN: +My good master, +I will yet do you service. + +CAIUS LUCIUS: +Happy be you! + +CYMBELINE: +The forlorn soldier, that so nobly fought, +He would have well becomed this place, and graced +The thankings of a king. + +POSTHUMUS LEONATUS: +I am, sir, +The soldier that did company these three +In poor beseeming; 'twas a fitment for +The purpose I then follow'd. That I was he, +Speak, Iachimo: I had you down and might +Have made you finish. + +IACHIMO: + +POSTHUMUS LEONATUS: +Kneel not to me: +The power that I have on you is, to spare you; +The malice towards you to forgive you: live, +And deal with others better. + +CYMBELINE: +Nobly doom'd! +We'll learn our freeness of a son-in-law; +Pardon's the word to all. + +ARVIRAGUS: +You holp us, sir, +As you did mean indeed to be our brother; +Joy'd are we that you are. + +POSTHUMUS LEONATUS: +Your servant, princes. Good my lord of Rome, +Call forth your soothsayer: as I slept, methought +Great Jupiter, upon his eagle back'd, +Appear'd to me, with other spritely shows +Of mine own kindred: when I waked, I found +This label on my bosom; whose containing +Is so from sense in hardness, that I can +Make no collection of it: let him show +His skill in the construction. + +CAIUS LUCIUS: +Philarmonus! + +Soothsayer: +Here, my good lord. + +CAIUS LUCIUS: +Read, and declare the meaning. + +Soothsayer: + +CYMBELINE: +This hath some seeming. + +Soothsayer: +The lofty cedar, royal Cymbeline, +Personates thee: and thy lopp'd branches point +Thy two sons forth; who, by Belarius stol'n, +For many years thought dead, are now revived, +To the majestic cedar join'd, whose issue +Promises Britain peace and plenty. + +CYMBELINE: +Well +My peace we will begin. And, Caius Lucius, +Although the victor, we submit to Caesar, +And to the Roman empire; promising +To pay our wonted tribute, from the which +We were dissuaded by our wicked queen; +Whom heavens, in justice, both on her and hers, +Have laid most heavy hand. + +Soothsayer: +The fingers of the powers above do tune +The harmony of this peace. The vision +Which I made known to Lucius, ere the stroke +Of this yet scarce-cold battle, at this instant +Is full accomplish'd; for the Roman eagle, +From south to west on wing soaring aloft, +Lessen'd herself, and in the beams o' the sun +So vanish'd: which foreshow'd our princely eagle, +The imperial Caesar, should again unite +His favour with the radiant Cymbeline, +Which shines here in the west. + +CYMBELINE: +Laud we the gods; +And let our crooked smokes climb to their nostrils +From our blest altars. Publish we this peace +To all our subjects. Set we forward: let +A Roman and a British ensign wave +Friendly together: so through Lud's-town march: +And in the temple of great Jupiter +Our peace we'll ratify; seal it with feasts. +Set on there! Never was a war did cease, +Ere bloody hands were wash'd, with such a peace. + +SUFFOLK: +As by your high imperial majesty +I had in charge at my depart for France, +As procurator to your excellence, +To marry Princess Margaret for your grace, +So, in the famous ancient city, Tours, +In presence of the Kings of France and Sicil, +The Dukes of Orleans, Calaber, Bretagne and Alencon, +Seven earls, twelve barons and twenty reverend bishops, +I have perform'd my task and was espoused: +And humbly now upon my bended knee, +In sight of England and her lordly peers, +Deliver up my title in the queen +To your most gracious hands, that are the substance +Of that great shadow I did represent; +The happiest gift that ever marquess gave, +The fairest queen that ever king received. + +KING HENRY VI: +Suffolk, arise. Welcome, Queen Margaret: +I can express no kinder sign of love +Than this kind kiss. O Lord, that lends me life, +Lend me a heart replete with thankfulness! +For thou hast given me in this beauteous face +A world of earthly blessings to my soul, +If sympathy of love unite our thoughts. + +QUEEN MARGARET: +Great King of England and my gracious lord, +The mutual conference that my mind hath had, +By day, by night, waking and in my dreams, +In courtly company or at my beads, +With you, mine alder-liefest sovereign, +Makes me the bolder to salute my king +With ruder terms, such as my wit affords +And over-joy of heart doth minister. + +KING HENRY VI: +Her sight did ravish; but her grace in speech, +Her words y-clad with wisdom's majesty, +Makes me from wondering fall to weeping joys; +Such is the fulness of my heart's content. +Lords, with one cheerful voice welcome my love. + +ALL: + +QUEEN MARGARET: +We thank you all. + +SUFFOLK: +My lord protector, so it please your grace, +Here are the articles of contracted peace +Between our sovereign and the French king Charles, +For eighteen months concluded by consent. + +GLOUCESTER: + +KING HENRY VI: +Uncle, how now! + +GLOUCESTER: +Pardon me, gracious lord; +Some sudden qualm hath struck me at the heart +And dimm'd mine eyes, that I can read no further. + +KING HENRY VI: +Uncle of Winchester, I pray, read on. + +CARDINAL: + +KING HENRY VI: +They please us well. Lord marquess, kneel down: +We here create thee the first duke of Suffolk, +And gird thee with the sword. Cousin of York, +We here discharge your grace from being regent +I' the parts of France, till term of eighteen months +Be full expired. Thanks, uncle Winchester, +Gloucester, York, Buckingham, Somerset, +Salisbury, and Warwick; +We thank you all for the great favour done, +In entertainment to my princely queen. +Come, let us in, and with all speed provide +To see her coronation be perform'd. + +GLOUCESTER: +Brave peers of England, pillars of the state, +To you Duke Humphrey must unload his grief, +Your grief, the common grief of all the land. +What! did my brother Henry spend his youth, +His valour, coin and people, in the wars? +Did he so often lodge in open field, +In winter's cold and summer's parching heat, +To conquer France, his true inheritance? +And did my brother Bedford toil his wits, +To keep by policy what Henry got? +Have you yourselves, Somerset, Buckingham, +Brave York, Salisbury, and victorious Warwick, +Received deep scars in France and Normandy? +Or hath mine uncle Beaufort and myself, +With all the learned council of the realm, +Studied so long, sat in the council-house +Early and late, debating to and fro +How France and Frenchmen might be kept in awe, +And had his highness in his infancy +Crowned in Paris in despite of foes? +And shall these labours and these honours die? +Shall Henry's conquest, Bedford's vigilance, +Your deeds of war and all our counsel die? +O peers of England, shameful is this league! +Fatal this marriage, cancelling your fame, +Blotting your names from books of memory, +Razing the characters of your renown, +Defacing monuments of conquer'd France, +Undoing all, as all had never been! + +CARDINAL: +Nephew, what means this passionate discourse, +This peroration with such circumstance? +For France, 'tis ours; and we will keep it still. + +GLOUCESTER: +Ay, uncle, we will keep it, if we can; +But now it is impossible we should: +Suffolk, the new-made duke that rules the roast, +Hath given the duchy of Anjou and Maine +Unto the poor King Reignier, whose large style +Agrees not with the leanness of his purse. + +SALISBURY: +Now, by the death of Him that died for all, +These counties were the keys of Normandy. +But wherefore weeps Warwick, my valiant son? + +WARWICK: +For grief that they are past recovery: +For, were there hope to conquer them again, +My sword should shed hot blood, mine eyes no tears. +Anjou and Maine! myself did win them both; +Those provinces these arms of mine did conquer: +And are the cities, that I got with wounds, +Delivered up again with peaceful words? +Mort Dieu! + +YORK: +For Suffolk's duke, may he be suffocate, +That dims the honour of this warlike isle! +France should have torn and rent my very heart, +Before I would have yielded to this league. +I never read but England's kings have had +Large sums of gold and dowries with their wives: +And our King Henry gives away his own, +To match with her that brings no vantages. + +GLOUCESTER: +A proper jest, and never heard before, +That Suffolk should demand a whole fifteenth +For costs and charges in transporting her! +She should have stayed in France and starved +in France, Before-- + +CARDINAL: +My Lord of Gloucester, now ye grow too hot: +It was the pleasure of my lord the King. + +GLOUCESTER: +My Lord of Winchester, I know your mind; +'Tis not my speeches that you do mislike, +But 'tis my presence that doth trouble ye. +Rancour will out: proud prelate, in thy face +I see thy fury: if I longer stay, +We shall begin our ancient bickerings. +Lordings, farewell; and say, when I am gone, +I prophesied France will be lost ere long. + +CARDINAL: +So, there goes our protector in a rage. +'Tis known to you he is mine enemy, +Nay, more, an enemy unto you all, +And no great friend, I fear me, to the king. +Consider, lords, he is the next of blood, +And heir apparent to the English crown: +Had Henry got an empire by his marriage, +And all the wealthy kingdoms of the west, +There's reason he should be displeased at it. +Look to it, lords! let not his smoothing words +Bewitch your hearts; be wise and circumspect. +What though the common people favour him, +Calling him 'Humphrey, the good Duke of +Gloucester,' +Clapping their hands, and crying with loud voice, +'Jesu maintain your royal excellence!' +With 'God preserve the good Duke Humphrey!' +I fear me, lords, for all this flattering gloss, +He will be found a dangerous protector. + +BUCKINGHAM: +Why should he, then, protect our sovereign, +He being of age to govern of himself? +Cousin of Somerset, join you with me, +And all together, with the Duke of Suffolk, +We'll quickly hoise Duke Humphrey from his seat. + +CARDINAL: +This weighty business will not brook delay: +I'll to the Duke of Suffolk presently. + +SOMERSET: +Cousin of Buckingham, though Humphrey's pride +And greatness of his place be grief to us, +Yet let us watch the haughty cardinal: +His insolence is more intolerable +Than all the princes in the land beside: +If Gloucester be displaced, he'll be protector. + +BUCKINGHAM: +Or thou or I, Somerset, will be protector, +Despite Duke Humphrey or the cardinal. + +SALISBURY: +Pride went before, ambition follows him. +While these do labour for their own preferment, +Behoves it us to labour for the realm. +I never saw but Humphrey Duke of Gloucester +Did bear him like a noble gentleman. +Oft have I seen the haughty cardinal, +More like a soldier than a man o' the church, +As stout and proud as he were lord of all, +Swear like a ruffian and demean himself +Unlike the ruler of a commonweal. +Warwick, my son, the comfort of my age, +Thy deeds, thy plainness and thy housekeeping, +Hath won the greatest favour of the commons, +Excepting none but good Duke Humphrey: +And, brother York, thy acts in Ireland, +In bringing them to civil discipline, +Thy late exploits done in the heart of France, +When thou wert regent for our sovereign, +Have made thee fear'd and honour'd of the people: +Join we together, for the public good, +In what we can, to bridle and suppress +The pride of Suffolk and the cardinal, +With Somerset's and Buckingham's ambition; +And, as we may, cherish Duke Humphrey's deeds, +While they do tend the profit of the land. + +WARWICK: +So God help Warwick, as he loves the land, +And common profit of his country! + +YORK: + +SALISBURY: +Then let's make haste away, and look unto the main. + +WARWICK: +Unto the main! O father, Maine is lost; +That Maine which by main force Warwick did win, +And would have kept so long as breath did last! +Main chance, father, you meant; but I meant Maine, +Which I will win from France, or else be slain, + +YORK: +Anjou and Maine are given to the French; +Paris is lost; the state of Normandy +Stands on a tickle point, now they are gone: +Suffolk concluded on the articles, +The peers agreed, and Henry was well pleased +To change two dukedoms for a duke's fair daughter. +I cannot blame them all: what is't to them? +'Tis thine they give away, and not their own. +Pirates may make cheap pennyworths of their pillage +And purchase friends and give to courtezans, +Still revelling like lords till all be gone; +While as the silly owner of the goods +Weeps over them and wrings his hapless hands +And shakes his head and trembling stands aloof, +While all is shared and all is borne away, +Ready to starve and dare not touch his own: +So York must sit and fret and bite his tongue, +While his own lands are bargain'd for and sold. +Methinks the realms of England, France and Ireland +Bear that proportion to my flesh and blood +As did the fatal brand Althaea burn'd +Unto the prince's heart of Calydon. +Anjou and Maine both given unto the French! +Cold news for me, for I had hope of France, +Even as I have of fertile England's soil. +A day will come when York shall claim his own; +And therefore I will take the Nevils' parts +And make a show of love to proud Duke Humphrey, +And, when I spy advantage, claim the crown, +For that's the golden mark I seek to hit: +Nor shall proud Lancaster usurp my right, +Nor hold the sceptre in his childish fist, +Nor wear the diadem upon his head, +Whose church-like humours fits not for a crown. +Then, York, be still awhile, till time do serve: +Watch thou and wake when others be asleep, +To pry into the secrets of the state; +Till Henry, surfeiting in joys of love, +With his new bride and England's dear-bought queen, +And Humphrey with the peers be fall'n at jars: +Then will I raise aloft the milk-white rose, +With whose sweet smell the air shall be perfumed; +And in my standard bear the arms of York +To grapple with the house of Lancaster; +And, force perforce, I'll make him yield the crown, +Whose bookish rule hath pull'd fair England down. + +DUCHESS: +Why droops my lord, like over-ripen'd corn, +Hanging the head at Ceres' plenteous load? +Why doth the great Duke Humphrey knit his brows, +As frowning at the favours of the world? +Why are thine eyes fixed to the sullen earth, +Gazing on that which seems to dim thy sight? +What seest thou there? King Henry's diadem, +Enchased with all the honours of the world? +If so, gaze on, and grovel on thy face, +Until thy head be circled with the same. +Put forth thy hand, reach at the glorious gold. +What, is't too short? I'll lengthen it with mine: +And, having both together heaved it up, +We'll both together lift our heads to heaven, +And never more abase our sight so low +As to vouchsafe one glance unto the ground. + +GLOUCESTER: +O Nell, sweet Nell, if thou dost love thy lord, +Banish the canker of ambitious thoughts. +And may that thought, when I imagine ill +Against my king and nephew, virtuous Henry, +Be my last breathing in this mortal world! +My troublous dream this night doth make me sad. + +DUCHESS: +What dream'd my lord? tell me, and I'll requite it +With sweet rehearsal of my morning's dream. + +GLOUCESTER: +Methought this staff, mine office-badge in court, +Was broke in twain; by whom I have forgot, +But, as I think, it was by the cardinal; +And on the pieces of the broken wand +Were placed the heads of Edmund Duke of Somerset, +And William de la Pole, first duke of Suffolk. +This was my dream: what it doth bode, God knows. + +DUCHESS: +Tut, this was nothing but an argument +That he that breaks a stick of Gloucester's grove +Shall lose his head for his presumption. +But list to me, my Humphrey, my sweet duke: +Methought I sat in seat of majesty +In the cathedral church of Westminster, +And in that chair where kings and queens are crown'd; +Where Henry and dame Margaret kneel'd to me +And on my head did set the diadem. + +GLOUCESTER: +Nay, Eleanor, then must I chide outright: +Presumptuous dame, ill-nurtured Eleanor, +Art thou not second woman in the realm, +And the protector's wife, beloved of him? +Hast thou not worldly pleasure at command, +Above the reach or compass of thy thought? +And wilt thou still be hammering treachery, +To tumble down thy husband and thyself +From top of honour to disgrace's feet? +Away from me, and let me hear no more! + +DUCHESS: +What, what, my lord! are you so choleric +With Eleanor, for telling but her dream? +Next time I'll keep my dreams unto myself, +And not be cheque'd. + +GLOUCESTER: +Nay, be not angry; I am pleased again. + +Messenger: +My lord protector, 'tis his highness' pleasure +You do prepare to ride unto Saint Alban's, +Where as the king and queen do mean to hawk. + +GLOUCESTER: +I go. Come, Nell, thou wilt ride with us? + +DUCHESS: +Yes, my good lord, I'll follow presently. +Follow I must; I cannot go before, +While Gloucester bears this base and humble mind. +Were I a man, a duke, and next of blood, +I would remove these tedious stumbling-blocks +And smooth my way upon their headless necks; +And, being a woman, I will not be slack +To play my part in Fortune's pageant. +Where are you there? Sir John! nay, fear not, man, +We are alone; here's none but thee and I. + +HUME: +Jesus preserve your royal majesty! + +DUCHESS: +What say'st thou? majesty! I am but grace. + +HUME: +But, by the grace of God, and Hume's advice, +Your grace's title shall be multiplied. + +DUCHESS: +What say'st thou, man? hast thou as yet conferr'd +With Margery Jourdain, the cunning witch, +With Roger Bolingbroke, the conjurer? +And will they undertake to do me good? + +HUME: +This they have promised, to show your highness +A spirit raised from depth of under-ground, +That shall make answer to such questions +As by your grace shall be propounded him. + +DUCHESS: +It is enough; I'll think upon the questions: +When from St. Alban's we do make return, +We'll see these things effected to the full. +Here, Hume, take this reward; make merry, man, +With thy confederates in this weighty cause. + +HUME: +Hume must make merry with the duchess' gold; +Marry, and shall. But how now, Sir John Hume! +Seal up your lips, and give no words but mum: +The business asketh silent secrecy. +Dame Eleanor gives gold to bring the witch: +Gold cannot come amiss, were she a devil. +Yet have I gold flies from another coast; +I dare not say, from the rich cardinal +And from the great and new-made Duke of Suffolk, +Yet I do find it so; for to be plain, +They, knowing Dame Eleanor's aspiring humour, +Have hired me to undermine the duchess +And buz these conjurations in her brain. +They say 'A crafty knave does need no broker;' +Yet am I Suffolk and the cardinal's broker. +Hume, if you take not heed, you shall go near +To call them both a pair of crafty knaves. +Well, so it stands; and thus, I fear, at last +Hume's knavery will be the duchess' wreck, +And her attainture will be Humphrey's fall: +Sort how it will, I shall have gold for all. + +First Petitioner: +My masters, let's stand close: my lord protector +will come this way by and by, and then we may deliver +our supplications in the quill. + +Second Petitioner: +Marry, the Lord protect him, for he's a good man! +Jesu bless him! + +PETER: +Here a' comes, methinks, and the queen with him. +I'll be the first, sure. + +Second Petitioner: +Come back, fool; this is the Duke of Suffolk, and +not my lord protector. + +SUFFOLK: +How now, fellow! would'st anything with me? + +First Petitioner: +I pray, my lord, pardon me; I took ye for my lord +protector. + +QUEEN MARGARET: + +First Petitioner: +Mine is, an't please your grace, against John +Goodman, my lord cardinal's man, for keeping my +house, and lands, and wife and all, from me. + +SUFFOLK: +Thy wife, too! that's some wrong, indeed. What's +yours? What's here! +'Against the Duke of Suffolk, for enclosing the +commons of Melford.' How now, sir knave! + +Second Petitioner: +Alas, sir, I am but a poor petitioner of our whole township. + +PETER: + +QUEEN MARGARET: +What sayst thou? did the Duke of York say he was +rightful heir to the crown? + +PETER: +That my master was? no, forsooth: my master said +that he was, and that the king was an usurper. + +SUFFOLK: +Who is there? +Take this fellow in, and send for +his master with a pursuivant presently: we'll hear +more of your matter before the King. + +QUEEN MARGARET: +And as for you, that love to be protected +Under the wings of our protector's grace, +Begin your suits anew, and sue to him. +Away, base cullions! Suffolk, let them go. + +ALL: +Come, let's be gone. + +QUEEN MARGARET: +My Lord of Suffolk, say, is this the guise, +Is this the fashion in the court of England? +Is this the government of Britain's isle, +And this the royalty of Albion's king? +What shall King Henry be a pupil still +Under the surly Gloucester's governance? +Am I a queen in title and in style, +And must be made a subject to a duke? +I tell thee, Pole, when in the city Tours +Thou ran'st a tilt in honour of my love +And stolest away the ladies' hearts of France, +I thought King Henry had resembled thee +In courage, courtship and proportion: +But all his mind is bent to holiness, +To number Ave-Maries on his beads; +His champions are the prophets and apostles, +His weapons holy saws of sacred writ, +His study is his tilt-yard, and his loves +Are brazen images of canonized saints. +I would the college of the cardinals +Would choose him pope, and carry him to Rome, +And set the triple crown upon his head: +That were a state fit for his holiness. + +SUFFOLK: +Madam, be patient: as I was cause +Your highness came to England, so will I +In England work your grace's full content. + +QUEEN MARGARET: +Beside the haughty protector, have we Beaufort, +The imperious churchman, Somerset, Buckingham, +And grumbling York: and not the least of these +But can do more in England than the king. + +SUFFOLK: +And he of these that can do most of all +Cannot do more in England than the Nevils: +Salisbury and Warwick are no simple peers. + +QUEEN MARGARET: +Not all these lords do vex me half so much +As that proud dame, the lord protector's wife. +She sweeps it through the court with troops of ladies, +More like an empress than Duke Humphrey's wife: +Strangers in court do take her for the queen: +She bears a duke's revenues on her back, +And in her heart she scorns our poverty: +Shall I not live to be avenged on her? +Contemptuous base-born callet as she is, +She vaunted 'mongst her minions t'other day, +The very train of her worst wearing gown +Was better worth than all my father's lands, +Till Suffolk gave two dukedoms for his daughter. + +SUFFOLK: +Madam, myself have limed a bush for her, +And placed a quire of such enticing birds, +That she will light to listen to the lays, +And never mount to trouble you again. +So, let her rest: and, madam, list to me; +For I am bold to counsel you in this. +Although we fancy not the cardinal, +Yet must we join with him and with the lords, +Till we have brought Duke Humphrey in disgrace. +As for the Duke of York, this late complaint +Will make but little for his benefit. +So, one by one, we'll weed them all at last, +And you yourself shall steer the happy helm. + +KING HENRY VI: +For my part, noble lords, I care not which; +Or Somerset or York, all's one to me. + +YORK: +If York have ill demean'd himself in France, +Then let him be denay'd the regentship. + +SOMERSET: +If Somerset be unworthy of the place, +Let York be regent; I will yield to him. + +WARWICK: +Whether your grace be worthy, yea or no, +Dispute not that: York is the worthier. + +CARDINAL: +Ambitious Warwick, let thy betters speak. + +WARWICK: +The cardinal's not my better in the field. + +BUCKINGHAM: +All in this presence are thy betters, Warwick. + +WARWICK: +Warwick may live to be the best of all. + +SALISBURY: +Peace, son! and show some reason, Buckingham, +Why Somerset should be preferred in this. + +QUEEN MARGARET: +Because the king, forsooth, will have it so. + +GLOUCESTER: +Madam, the king is old enough himself +To give his censure: these are no women's matters. + +QUEEN MARGARET: +If he be old enough, what needs your grace +To be protector of his excellence? + +GLOUCESTER: +Madam, I am protector of the realm; +And, at his pleasure, will resign my place. + +SUFFOLK: +Resign it then and leave thine insolence. +Since thou wert king--as who is king but thou?-- +The commonwealth hath daily run to wreck; +The Dauphin hath prevail'd beyond the seas; +And all the peers and nobles of the realm +Have been as bondmen to thy sovereignty. + +CARDINAL: +The commons hast thou rack'd; the clergy's bags +Are lank and lean with thy extortions. + +SOMERSET: +Thy sumptuous buildings and thy wife's attire +Have cost a mass of public treasury. + +BUCKINGHAM: +Thy cruelty in execution +Upon offenders, hath exceeded law, +And left thee to the mercy of the law. + +QUEEN MARGARET: +They sale of offices and towns in France, +If they were known, as the suspect is great, +Would make thee quickly hop without thy head. +Give me my fan: what, minion! can ye not? +I cry you mercy, madam; was it you? + +DUCHESS: +Was't I! yea, I it was, proud Frenchwoman: +Could I come near your beauty with my nails, +I'd set my ten commandments in your face. + +KING HENRY VI: +Sweet aunt, be quiet; 'twas against her will. + +DUCHESS: +Against her will! good king, look to't in time; +She'll hamper thee, and dandle thee like a baby: +Though in this place most master wear no breeches, +She shall not strike Dame Eleanor unrevenged. + +BUCKINGHAM: +Lord cardinal, I will follow Eleanor, +And listen after Humphrey, how he proceeds: +She's tickled now; her fume needs no spurs, +She'll gallop far enough to her destruction. + +GLOUCESTER: +Now, lords, my choler being over-blown +With walking once about the quadrangle, +I come to talk of commonwealth affairs. +As for your spiteful false objections, +Prove them, and I lie open to the law: +But God in mercy so deal with my soul, +As I in duty love my king and country! +But, to the matter that we have in hand: +I say, my sovereign, York is meetest man +To be your regent in the realm of France. + +SUFFOLK: +Before we make election, give me leave +To show some reason, of no little force, +That York is most unmeet of any man. + +YORK: +I'll tell thee, Suffolk, why I am unmeet: +First, for I cannot flatter thee in pride; +Next, if I be appointed for the place, +My Lord of Somerset will keep me here, +Without discharge, money, or furniture, +Till France be won into the Dauphin's hands: +Last time, I danced attendance on his will +Till Paris was besieged, famish'd, and lost. + +WARWICK: +That can I witness; and a fouler fact +Did never traitor in the land commit. + +SUFFOLK: +Peace, headstrong Warwick! + +WARWICK: +Image of pride, why should I hold my peace? + +SUFFOLK: +Because here is a man accused of treason: +Pray God the Duke of York excuse himself! + +YORK: +Doth any one accuse York for a traitor? + +KING HENRY VI: +What mean'st thou, Suffolk; tell me, what are these? + +SUFFOLK: +Please it your majesty, this is the man +That doth accuse his master of high treason: +His words were these: that Richard, Duke of York, +Was rightful heir unto the English crown +And that your majesty was a usurper. + +KING HENRY VI: +Say, man, were these thy words? + +HORNER: +An't shall please your majesty, I never said nor +thought any such matter: God is my witness, I am +falsely accused by the villain. + +PETER: +By these ten bones, my lords, he did speak them to +me in the garret one night, as we were scouring my +Lord of York's armour. + +YORK: +Base dunghill villain and mechanical, +I'll have thy head for this thy traitor's speech. +I do beseech your royal majesty, +Let him have all the rigor of the law. + +HORNER: +Alas, my lord, hang me, if ever I spake the words. +My accuser is my 'prentice; and when I did correct +him for his fault the other day, he did vow upon his +knees he would be even with me: I have good +witness of this: therefore I beseech your majesty, +do not cast away an honest man for a villain's +accusation. + +KING HENRY VI: +Uncle, what shall we say to this in law? + +GLOUCESTER: +This doom, my lord, if I may judge: +Let Somerset be regent over the French, +Because in York this breeds suspicion: +And let these have a day appointed them +For single combat in convenient place, +For he hath witness of his servant's malice: +This is the law, and this Duke Humphrey's doom. + +SOMERSET: +I humbly thank your royal majesty. + +HORNER: +And I accept the combat willingly. + +PETER: +Alas, my lord, I cannot fight; for God's sake, pity +my case. The spite of man prevaileth against me. O +Lord, have mercy upon me! I shall never be able to +fight a blow. O Lord, my heart! + +GLOUCESTER: +Sirrah, or you must fight, or else be hang'd. + +KING HENRY VI: +Away with them to prison; and the day of combat +shall be the last of the next month. Come, +Somerset, we'll see thee sent away. + +HUME: +Come, my masters; the duchess, I tell you, expects +performance of your promises. + +BOLINGBROKE: +Master Hume, we are therefore provided: will her +ladyship behold and hear our exorcisms? + +HUME: +Ay, what else? fear you not her courage. + +BOLINGBROKE: +I have heard her reported to be a woman of an +invincible spirit: but it shall be convenient, +Master Hume, that you be by her aloft, while we be +busy below; and so, I pray you, go, in God's name, +and leave us. +Mother Jourdain, be you +prostrate and grovel on the earth; John Southwell, +read you; and let us to our work. + +DUCHESS: +Well said, my masters; and welcome all. To this +gear the sooner the better. + +BOLINGBROKE: +Patience, good lady; wizards know their times: +Deep night, dark night, the silent of the night, +The time of night when Troy was set on fire; +The time when screech-owls cry and ban-dogs howl, +And spirits walk and ghosts break up their graves, +That time best fits the work we have in hand. +Madam, sit you and fear not: whom we raise, +We will make fast within a hallow'd verge. + +Spirit: +Adsum. + +MARGARET JOURDAIN: +Asmath, +By the eternal God, whose name and power +Thou tremblest at, answer that I shall ask; +For, till thou speak, thou shalt not pass from hence. + +Spirit: +Ask what thou wilt. That I had said and done! + +BOLINGBROKE: +'First of the king: what shall of him become?' + +Spirit: +The duke yet lives that Henry shall depose; +But him outlive, and die a violent death. + +BOLINGBROKE: +'What fates await the Duke of Suffolk?' + +Spirit: +By water shall he die, and take his end. + +BOLINGBROKE: +'What shall befall the Duke of Somerset?' + +Spirit: +Let him shun castles; +Safer shall he be upon the sandy plains +Than where castles mounted stand. +Have done, for more I hardly can endure. + +BOLINGBROKE: +Descend to darkness and the burning lake! +False fiend, avoid! + +YORK: +Lay hands upon these traitors and their trash. +Beldam, I think we watch'd you at an inch. +What, madam, are you there? the king and commonweal +Are deeply indebted for this piece of pains: +My lord protector will, I doubt it not, +See you well guerdon'd for these good deserts. + +DUCHESS: +Not half so bad as thine to England's king, +Injurious duke, that threatest where's no cause. + +BUCKINGHAM: +True, madam, none at all: what call you this? +Away with them! let them be clapp'd up close. +And kept asunder. You, madam, shall with us. +Stafford, take her to thee. +We'll see your trinkets here all forthcoming. +All, away! + +YORK: +Lord Buckingham, methinks, you watch'd her well: +A pretty plot, well chosen to build upon! +Now, pray, my lord, let's see the devil's writ. +What have we here? +'The duke yet lives, that Henry shall depose; +But him outlive, and die a violent death.' +Why, this is just +'Aio te, AEacida, Romanos vincere posse.' +Well, to the rest: +'Tell me what fate awaits the Duke of Suffolk? +By water shall he die, and take his end. +What shall betide the Duke of Somerset? +Let him shun castles; +Safer shall he be upon the sandy plains +Than where castles mounted stand.' +Come, come, my lords; +These oracles are hardly attain'd, +And hardly understood. +The king is now in progress towards Saint Alban's, +With him the husband of this lovely lady: +Thither go these news, as fast as horse can +carry them: +A sorry breakfast for my lord protector. + +BUCKINGHAM: +Your grace shall give me leave, my Lord of York, +To be the post, in hope of his reward. + +YORK: +At your pleasure, my good lord. Who's within +there, ho! +Invite my Lords of Salisbury and Warwick +To sup with me to-morrow night. Away! + +QUEEN MARGARET: +Believe me, lords, for flying at the brook, +I saw not better sport these seven years' day: +Yet, by your leave, the wind was very high; +And, ten to one, old Joan had not gone out. + +KING HENRY VI: +But what a point, my lord, your falcon made, +And what a pitch she flew above the rest! +To see how God in all his creatures works! +Yea, man and birds are fain of climbing high. + +SUFFOLK: +No marvel, an it like your majesty, +My lord protector's hawks do tower so well; +They know their master loves to be aloft, +And bears his thoughts above his falcon's pitch. + +GLOUCESTER: +My lord, 'tis but a base ignoble mind +That mounts no higher than a bird can soar. + +CARDINAL: +I thought as much; he would be above the clouds. + +GLOUCESTER: +Ay, my lord cardinal? how think you by that? +Were it not good your grace could fly to heaven? + +KING HENRY VI: +The treasury of everlasting joy. + +CARDINAL: +Thy heaven is on earth; thine eyes and thoughts +Beat on a crown, the treasure of thy heart; +Pernicious protector, dangerous peer, +That smooth'st it so with king and commonweal! + +GLOUCESTER: +What, cardinal, is your priesthood grown peremptory? +Tantaene animis coelestibus irae? +Churchmen so hot? good uncle, hide such malice; +With such holiness can you do it? + +SUFFOLK: +No malice, sir; no more than well becomes +So good a quarrel and so bad a peer. + +GLOUCESTER: +As who, my lord? + +SUFFOLK: +Why, as you, my lord, +An't like your lordly lord-protectorship. + +GLOUCESTER: +Why, Suffolk, England knows thine insolence. + +QUEEN MARGARET: +And thy ambition, Gloucester. + +KING HENRY VI: +I prithee, peace, good queen, +And whet not on these furious peers; +For blessed are the peacemakers on earth. + +CARDINAL: +Let me be blessed for the peace I make, +Against this proud protector, with my sword! + +GLOUCESTER: + +CARDINAL: + +GLOUCESTER: + +CARDINAL: + +KING HENRY VI: +How now, my lords! + +CARDINAL: +Believe me, cousin Gloucester, +Had not your man put up the fowl so suddenly, +We had had more sport. +Come with thy two-hand sword. + +GLOUCESTER: +True, uncle. + +CARDINAL: + +GLOUCESTER: + +KING HENRY VI: +Why, how now, uncle Gloucester! + +GLOUCESTER: +Talking of hawking; nothing else, my lord. +Now, by God's mother, priest, I'll shave your crown for this, +Or all my fence shall fail. + +CARDINAL: + +KING HENRY VI: +The winds grow high; so do your stomachs, lords. +How irksome is this music to my heart! +When such strings jar, what hope of harmony? +I pray, my lords, let me compound this strife. + +GLOUCESTER: +What means this noise? +Fellow, what miracle dost thou proclaim? + +Townsman: +A miracle! a miracle! + +SUFFOLK: +Come to the king and tell him what miracle. + +Townsman: +Forsooth, a blind man at Saint Alban's shrine, +Within this half-hour, hath received his sight; +A man that ne'er saw in his life before. + +KING HENRY VI: +Now, God be praised, that to believing souls +Gives light in darkness, comfort in despair! + +CARDINAL: +Here comes the townsmen on procession, +To present your highness with the man. + +KING HENRY VI: +Great is his comfort in this earthly vale, +Although by his sight his sin be multiplied. + +GLOUCESTER: +Stand by, my masters: bring him near the king; +His highness' pleasure is to talk with him. + +KING HENRY VI: +Good fellow, tell us here the circumstance, +That we for thee may glorify the Lord. +What, hast thou been long blind and now restored? + +SIMPCOX: +Born blind, an't please your grace. + +Wife: +Ay, indeed, was he. + +SUFFOLK: +What woman is this? + +Wife: +His wife, an't like your worship. + +GLOUCESTER: +Hadst thou been his mother, thou couldst have +better told. + +KING HENRY VI: +Where wert thou born? + +SIMPCOX: +At Berwick in the north, an't like your grace. + +KING HENRY VI: +Poor soul, God's goodness hath been great to thee: +Let never day nor night unhallow'd pass, +But still remember what the Lord hath done. + +QUEEN MARGARET: +Tell me, good fellow, camest thou here by chance, +Or of devotion, to this holy shrine? + +SIMPCOX: +God knows, of pure devotion; being call'd +A hundred times and oftener, in my sleep, +By good Saint Alban; who said, 'Simpcox, come, +Come, offer at my shrine, and I will help thee.' + +Wife: +Most true, forsooth; and many time and oft +Myself have heard a voice to call him so. + +CARDINAL: +What, art thou lame? + +SIMPCOX: +Ay, God Almighty help me! + +SUFFOLK: +How camest thou so? + +SIMPCOX: +A fall off of a tree. + +Wife: +A plum-tree, master. + +GLOUCESTER: +How long hast thou been blind? + +SIMPCOX: +Born so, master. + +GLOUCESTER: +What, and wouldst climb a tree? + +SIMPCOX: +But that in all my life, when I was a youth. + +Wife: +Too true; and bought his climbing very dear. + +GLOUCESTER: +Mass, thou lovedst plums well, that wouldst +venture so. + +SIMPCOX: +Alas, good master, my wife desired some damsons, +And made me climb, with danger of my life. + +GLOUCESTER: +A subtle knave! but yet it shall not serve. +Let me see thine eyes: wink now: now open them: +In my opinion yet thou seest not well. + +SIMPCOX: +Yes, master, clear as day, I thank God and +Saint Alban. + +GLOUCESTER: +Say'st thou me so? What colour is this cloak of? + +SIMPCOX: +Red, master; red as blood. + +GLOUCESTER: +Why, that's well said. What colour is my gown of? + +SIMPCOX: +Black, forsooth: coal-black as jet. + +KING HENRY VI: +Why, then, thou know'st what colour jet is of? + +SUFFOLK: +And yet, I think, jet did he never see. + +GLOUCESTER: +But cloaks and gowns, before this day, a many. + +Wife: +Never, before this day, in all his life. + +GLOUCESTER: +Tell me, sirrah, what's my name? + +SIMPCOX: +Alas, master, I know not. + +GLOUCESTER: +What's his name? + +SIMPCOX: +I know not. + +GLOUCESTER: +Nor his? + +SIMPCOX: +No, indeed, master. + +GLOUCESTER: +What's thine own name? + +SIMPCOX: +Saunder Simpcox, an if it please you, master. + +GLOUCESTER: +Then, Saunder, sit there, the lyingest knave in +Christendom. If thou hadst been born blind, thou +mightest as well have known all our names as thus to +name the several colours we do wear. Sight may +distinguish of colours, but suddenly to nominate them +all, it is impossible. My lords, Saint Alban here +hath done a miracle; and would ye not think his +cunning to be great, that could restore this cripple +to his legs again? + +SIMPCOX: +O master, that you could! + +GLOUCESTER: +My masters of Saint Alban's, have you not beadles in +your town, and things called whips? + +Mayor: +Yes, my lord, if it please your grace. + +GLOUCESTER: +Then send for one presently. + +Mayor: +Sirrah, go fetch the beadle hither straight. + +GLOUCESTER: +Now fetch me a stool hither by and by. Now, sirrah, +if you mean to save yourself from whipping, leap me +over this stool and run away. + +SIMPCOX: +Alas, master, I am not able to stand alone: +You go about to torture me in vain. + +GLOUCESTER: +Well, sir, we must have you find your legs. Sirrah +beadle, whip him till he leap over that same stool. + +Beadle: +I will, my lord. Come on, sirrah; off with your +doublet quickly. + +SIMPCOX: +Alas, master, what shall I do? I am not able to stand. + +KING HENRY VI: +O God, seest Thou this, and bearest so long? + +QUEEN MARGARET: +It made me laugh to see the villain run. + +GLOUCESTER: +Follow the knave; and take this drab away. + +Wife: +Alas, sir, we did it for pure need. + +GLOUCESTER: +Let them be whipped through every market-town, till +they come to Berwick, from whence they came. + +CARDINAL: +Duke Humphrey has done a miracle to-day. + +SUFFOLK: +True; made the lame to leap and fly away. + +GLOUCESTER: +But you have done more miracles than I; +You made in a day, my lord, whole towns to fly. + +KING HENRY VI: +What tidings with our cousin Buckingham? + +BUCKINGHAM: +Such as my heart doth tremble to unfold. +A sort of naughty persons, lewdly bent, +Under the countenance and confederacy +Of Lady Eleanor, the protector's wife, +The ringleader and head of all this rout, +Have practised dangerously against your state, +Dealing with witches and with conjurers: +Whom we have apprehended in the fact; +Raising up wicked spirits from under ground, +Demanding of King Henry's life and death, +And other of your highness' privy-council; +As more at large your grace shall understand. + +CARDINAL: + +GLOUCESTER: +Ambitious churchman, leave to afflict my heart: +Sorrow and grief have vanquish'd all my powers; +And, vanquish'd as I am, I yield to thee, +Or to the meanest groom. + +KING HENRY VI: +O God, what mischiefs work the wicked ones, +Heaping confusion on their own heads thereby! + +QUEEN MARGARET: +Gloucester, see here the tainture of thy nest. +And look thyself be faultless, thou wert best. + +GLOUCESTER: +Madam, for myself, to heaven I do appeal, +How I have loved my king and commonweal: +And, for my wife, I know not how it stands; +Sorry I am to hear what I have heard: +Noble she is, but if she have forgot +Honour and virtue and conversed with such +As, like to pitch, defile nobility, +I banish her my bed and company +And give her as a prey to law and shame, +That hath dishonour'd Gloucester's honest name. + +KING HENRY VI: +Well, for this night we will repose us here: +To-morrow toward London back again, +To look into this business thoroughly +And call these foul offenders to their answers +And poise the cause in justice' equal scales, +Whose beam stands sure, whose rightful cause prevails. + +YORK: +Now, my good Lords of Salisbury and Warwick, +Our simple supper ended, give me leave +In this close walk to satisfy myself, +In craving your opinion of my title, +Which is infallible, to England's crown. + +SALISBURY: +My lord, I long to hear it at full. + +WARWICK: +Sweet York, begin: and if thy claim be good, +The Nevils are thy subjects to command. + +YORK: +Then thus: +Edward the Third, my lords, had seven sons: +The first, Edward the Black Prince, Prince of Wales; +The second, William of Hatfield, and the third, +Lionel Duke of Clarence: next to whom +Was John of Gaunt, the Duke of Lancaster; +The fifth was Edmund Langley, Duke of York; +The sixth was Thomas of Woodstock, Duke of Gloucester; +William of Windsor was the seventh and last. +Edward the Black Prince died before his father +And left behind him Richard, his only son, +Who after Edward the Third's death reign'd as king; +Till Henry Bolingbroke, Duke of Lancaster, +The eldest son and heir of John of Gaunt, +Crown'd by the name of Henry the Fourth, +Seized on the realm, deposed the rightful king, +Sent his poor queen to France, from whence she came, +And him to Pomfret; where, as all you know, +Harmless Richard was murder'd traitorously. + +WARWICK: +Father, the duke hath told the truth: +Thus got the house of Lancaster the crown. + +YORK: +Which now they hold by force and not by right; +For Richard, the first son's heir, being dead, +The issue of the next son should have reign'd. + +SALISBURY: +But William of Hatfield died without an heir. + +YORK: +The third son, Duke of Clarence, from whose line +I claimed the crown, had issue, Philippe, a daughter, +Who married Edmund Mortimer, Earl of March: +Edmund had issue, Roger Earl of March; +Roger had issue, Edmund, Anne and Eleanor. + +SALISBURY: +This Edmund, in the reign of Bolingbroke, +As I have read, laid claim unto the crown; +And, but for Owen Glendower, had been king, +Who kept him in captivity till he died. +But to the rest. + +YORK: +His eldest sister, Anne, +My mother, being heir unto the crown +Married Richard Earl of Cambridge; who was son +To Edmund Langley, Edward the Third's fifth son. +By her I claim the kingdom: she was heir +To Roger Earl of March, who was the son +Of Edmund Mortimer, who married Philippe, +Sole daughter unto Lionel Duke of Clarence: +So, if the issue of the elder son +Succeed before the younger, I am king. + +WARWICK: +What plain proceeding is more plain than this? +Henry doth claim the crown from John of Gaunt, +The fourth son; York claims it from the third. +Till Lionel's issue fails, his should not reign: +It fails not yet, but flourishes in thee +And in thy sons, fair slips of such a stock. +Then, father Salisbury, kneel we together; +And in this private plot be we the first +That shall salute our rightful sovereign +With honour of his birthright to the crown. + +BOTH: +Long live our sovereign Richard, England's king! + +YORK: +We thank you, lords. But I am not your king +Till I be crown'd and that my sword be stain'd +With heart-blood of the house of Lancaster; +And that's not suddenly to be perform'd, +But with advice and silent secrecy. +Do you as I do in these dangerous days: +Wink at the Duke of Suffolk's insolence, +At Beaufort's pride, at Somerset's ambition, +At Buckingham and all the crew of them, +Till they have snared the shepherd of the flock, +That virtuous prince, the good Duke Humphrey: +'Tis that they seek, and they in seeking that +Shall find their deaths, if York can prophesy. + +SALISBURY: +My lord, break we off; we know your mind at full. + +WARWICK: +My heart assures me that the Earl of Warwick +Shall one day make the Duke of York a king. + +YORK: +And, Nevil, this I do assure myself: +Richard shall live to make the Earl of Warwick +The greatest man in England but the king. + +KING HENRY VI: +Stand forth, Dame Eleanor Cobham, Gloucester's wife: +In sight of God and us, your guilt is great: +Receive the sentence of the law for sins +Such as by God's book are adjudged to death. +You four, from hence to prison back again; +From thence unto the place of execution: +The witch in Smithfield shall be burn'd to ashes, +And you three shall be strangled on the gallows. +You, madam, for you are more nobly born, +Despoiled of your honour in your life, +Shall, after three days' open penance done, +Live in your country here in banishment, +With Sir John Stanley, in the Isle of Man. + +DUCHESS: +Welcome is banishment; welcome were my death. + +GLOUCESTER: +Eleanor, the law, thou see'st, hath judged thee: +I cannot justify whom the law condemns. +Mine eyes are full of tears, my heart of grief. +Ah, Humphrey, this dishonour in thine age +Will bring thy head with sorrow to the ground! +I beseech your majesty, give me leave to go; +Sorrow would solace and mine age would ease. + +KING HENRY VI: +Stay, Humphrey Duke of Gloucester: ere thou go, +Give up thy staff: Henry will to himself +Protector be; and God shall be my hope, +My stay, my guide and lantern to my feet: +And go in peace, Humphrey, no less beloved +Than when thou wert protector to thy King. + +QUEEN MARGARET: +I see no reason why a king of years +Should be to be protected like a child. +God and King Henry govern England's realm. +Give up your staff, sir, and the king his realm. + +GLOUCESTER: +My staff? here, noble Henry, is my staff: +As willingly do I the same resign +As e'er thy father Henry made it mine; +And even as willingly at thy feet I leave it +As others would ambitiously receive it. +Farewell, good king: when I am dead and gone, +May honourable peace attend thy throne! + +QUEEN MARGARET: +Why, now is Henry king, and Margaret queen; +And Humphrey Duke of Gloucester scarce himself, +That bears so shrewd a maim; two pulls at once; +His lady banish'd, and a limb lopp'd off. +This staff of honour raught, there let it stand +Where it best fits to be, in Henry's hand. + +SUFFOLK: +Thus droops this lofty pine and hangs his sprays; +Thus Eleanor's pride dies in her youngest days. + +YORK: +Lords, let him go. Please it your majesty, +This is the day appointed for the combat; +And ready are the appellant and defendant, +The armourer and his man, to enter the lists, +So please your highness to behold the fight. + +QUEEN MARGARET: +Ay, good my lord; for purposely therefore +Left I the court, to see this quarrel tried. + +KING HENRY VI: +O God's name, see the lists and all things fit: +Here let them end it; and God defend the right! + +YORK: +I never saw a fellow worse bested, +Or more afraid to fight, than is the appellant, +The servant of this armourer, my lords. + +First Neighbour: +Here, neighbour Horner, I drink to you in a cup of +sack: and fear not, neighbour, you shall do well enough. + +Second Neighbour: +And here, neighbour, here's a cup of charneco. + +Third Neighbour: +And here's a pot of good double beer, neighbour: +drink, and fear not your man. + +HORNER: +Let it come, i' faith, and I'll pledge you all; and +a fig for Peter! + +First 'Prentice: +Here, Peter, I drink to thee: and be not afraid. + +Second 'Prentice: +Be merry, Peter, and fear not thy master: fight +for credit of the 'prentices. + +PETER: +I thank you all: drink, and pray for me, I pray +you; for I think I have taken my last draught in +this world. Here, Robin, an if I die, I give thee +my apron: and, Will, thou shalt have my hammer: +and here, Tom, take all the money that I have. O +Lord bless me! I pray God! for I am never able to +deal with my master, he hath learnt me so much fence already. + +SALISBURY: +Come, leave your drinking, and fall to blows. +Sirrah, what's thy name? + +PETER: +Peter, forsooth. + +SALISBURY: +Peter! what more? + +PETER: +Thump. + +SALISBURY: +Thump! then see thou thump thy master well. + +HORNER: +Masters, I am come hither, as it were, upon my man's +instigation, to prove him a knave and myself an +honest man: and touching the Duke of York, I will +take my death, I never meant him any ill, nor the +king, nor the queen: and therefore, Peter, have at +thee with a downright blow! + +YORK: +Dispatch: this knave's tongue begins to double. +Sound, trumpets, alarum to the combatants! + +HORNER: +Hold, Peter, hold! I confess, I confess treason. + +YORK: +Take away his weapon. Fellow, thank God, and the +good wine in thy master's way. + +PETER: +O God, have I overcome mine enemy in this presence? +O Peter, thou hast prevailed in right! + +KING HENRY VI: +Go, take hence that traitor from our sight; +For his death we do perceive his guilt: +And God in justice hath revealed to us +The truth and innocence of this poor fellow, +Which he had thought to have murder'd wrongfully. +Come, fellow, follow us for thy reward. + +GLOUCESTER: +Thus sometimes hath the brightest day a cloud; +And after summer evermore succeeds +Barren winter, with his wrathful nipping cold: +So cares and joys abound, as seasons fleet. +Sirs, what's o'clock? + +Servants: +Ten, my lord. + +GLOUCESTER: +Ten is the hour that was appointed me +To watch the coming of my punish'd duchess: +Uneath may she endure the flinty streets, +To tread them with her tender-feeling feet. +Sweet Nell, ill can thy noble mind abrook +The abject people gazing on thy face, +With envious looks, laughing at thy shame, +That erst did follow thy proud chariot-wheels +When thou didst ride in triumph through the streets. +But, soft! I think she comes; and I'll prepare +My tear-stain'd eyes to see her miseries. + +Servant: +So please your grace, we'll take her from the sheriff. + +GLOUCESTER: +No, stir not, for your lives; let her pass by. + +DUCHESS: +Come you, my lord, to see my open shame? +Now thou dost penance too. Look how they gaze! +See how the giddy multitude do point, +And nod their heads, and throw their eyes on thee! +Ah, Gloucester, hide thee from their hateful looks, +And, in thy closet pent up, rue my shame, +And ban thine enemies, both mine and thine! + +GLOUCESTER: +Be patient, gentle Nell; forget this grief. + +DUCHESS: +Ah, Gloucester, teach me to forget myself! +For whilst I think I am thy married wife +And thou a prince, protector of this land, +Methinks I should not thus be led along, +Mail'd up in shame, with papers on my back, +And followed with a rabble that rejoice +To see my tears and hear my deep-fet groans. +The ruthless flint doth cut my tender feet, +And when I start, the envious people laugh +And bid me be advised how I tread. +Ah, Humphrey, can I bear this shameful yoke? +Trow'st thou that e'er I'll look upon the world, +Or count them happy that enjoy the sun? +No; dark shall be my light and night my day; +To think upon my pomp shall be my hell. +Sometime I'll say, I am Duke Humphrey's wife, +And he a prince and ruler of the land: +Yet so he ruled and such a prince he was +As he stood by whilst I, his forlorn duchess, +Was made a wonder and a pointing-stock +To every idle rascal follower. +But be thou mild and blush not at my shame, +Nor stir at nothing till the axe of death +Hang over thee, as, sure, it shortly will; +For Suffolk, he that can do all in all +With her that hateth thee and hates us all, +And York and impious Beaufort, that false priest, +Have all limed bushes to betray thy wings, +And, fly thou how thou canst, they'll tangle thee: +But fear not thou, until thy foot be snared, +Nor never seek prevention of thy foes. + +GLOUCESTER: +Ah, Nell, forbear! thou aimest all awry; +I must offend before I be attainted; +And had I twenty times so many foes, +And each of them had twenty times their power, +All these could not procure me any scathe, +So long as I am loyal, true and crimeless. +Wouldst have me rescue thee from this reproach? +Why, yet thy scandal were not wiped away +But I in danger for the breach of law. +Thy greatest help is quiet, gentle Nell: +I pray thee, sort thy heart to patience; +These few days' wonder will be quickly worn. + +Herald: +I summon your grace to his majesty's parliament, +Holden at Bury the first of this next month. + +GLOUCESTER: +And my consent ne'er ask'd herein before! +This is close dealing. Well, I will be there. +My Nell, I take my leave: and, master sheriff, +Let not her penance exceed the king's commission. + +Sheriff: +An't please your grace, here my commission stays, +And Sir John Stanley is appointed now +To take her with him to the Isle of Man. + +GLOUCESTER: +Must you, Sir John, protect my lady here? + +STANLEY: +So am I given in charge, may't please your grace. + +GLOUCESTER: +Entreat her not the worse in that I pray +You use her well: the world may laugh again; +And I may live to do you kindness if +You do it her: and so, Sir John, farewell! + +DUCHESS: +What, gone, my lord, and bid me not farewell! + +GLOUCESTER: +Witness my tears, I cannot stay to speak. + +DUCHESS: +Art thou gone too? all comfort go with thee! +For none abides with me: my joy is death; +Death, at whose name I oft have been afear'd, +Because I wish'd this world's eternity. +Stanley, I prithee, go, and take me hence; +I care not whither, for I beg no favour, +Only convey me where thou art commanded. + +STANLEY: +Why, madam, that is to the Isle of Man; +There to be used according to your state. + +DUCHESS: +That's bad enough, for I am but reproach: +And shall I then be used reproachfully? + +STANLEY: +Like to a duchess, and Duke Humphrey's lady; +According to that state you shall be used. + +DUCHESS: +Sheriff, farewell, and better than I fare, +Although thou hast been conduct of my shame. + +Sheriff: +It is my office; and, madam, pardon me. + +DUCHESS: +Ay, ay, farewell; thy office is discharged. +Come, Stanley, shall we go? + +STANLEY: +Madam, your penance done, throw off this sheet, +And go we to attire you for our journey. + +DUCHESS: +My shame will not be shifted with my sheet: +No, it will hang upon my richest robes +And show itself, attire me how I can. +Go, lead the way; I long to see my prison. + +KING HENRY VI: +I muse my Lord of Gloucester is not come: +'Tis not his wont to be the hindmost man, +Whate'er occasion keeps him from us now. + +QUEEN MARGARET: +Can you not see? or will ye not observe +The strangeness of his alter'd countenance? +With what a majesty he bears himself, +How insolent of late he is become, +How proud, how peremptory, and unlike himself? +We know the time since he was mild and affable, +And if we did but glance a far-off look, +Immediately he was upon his knee, +That all the court admired him for submission: +But meet him now, and, be it in the morn, +When every one will give the time of day, +He knits his brow and shows an angry eye, +And passeth by with stiff unbowed knee, +Disdaining duty that to us belongs. +Small curs are not regarded when they grin; +But great men tremble when the lion roars; +And Humphrey is no little man in England. +First note that he is near you in descent, +And should you fall, he as the next will mount. +Me seemeth then it is no policy, +Respecting what a rancorous mind he bears +And his advantage following your decease, +That he should come about your royal person +Or be admitted to your highness' council. +By flattery hath he won the commons' hearts, +And when he please to make commotion, +'Tis to be fear'd they all will follow him. +Now 'tis the spring, and weeds are shallow-rooted; +Suffer them now, and they'll o'ergrow the garden +And choke the herbs for want of husbandry. +The reverent care I bear unto my lord +Made me collect these dangers in the duke. +If it be fond, call it a woman's fear; +Which fear if better reasons can supplant, +I will subscribe and say I wrong'd the duke. +My Lord of Suffolk, Buckingham, and York, +Reprove my allegation, if you can; +Or else conclude my words effectual. + +SUFFOLK: +Well hath your highness seen into this duke; +And, had I first been put to speak my mind, +I think I should have told your grace's tale. +The duchess, by his subornation, +Upon my life, began her devilish practises: +Or, if he were not privy to those faults, +Yet, by reputing of his high descent, +As next the king he was successive heir, +And such high vaunts of his nobility, +Did instigate the bedlam brain-sick duchess +By wicked means to frame our sovereign's fall. +Smooth runs the water where the brook is deep; +And in his simple show he harbours treason. +The fox barks not when he would steal the lamb. +No, no, my sovereign; Gloucester is a man +Unsounded yet and full of deep deceit. + +CARDINAL: +Did he not, contrary to form of law, +Devise strange deaths for small offences done? + +YORK: +And did he not, in his protectorship, +Levy great sums of money through the realm +For soldiers' pay in France, and never sent it? +By means whereof the towns each day revolted. + +BUCKINGHAM: +Tut, these are petty faults to faults unknown. +Which time will bring to light in smooth +Duke Humphrey. + +KING HENRY VI: +My lords, at once: the care you have of us, +To mow down thorns that would annoy our foot, +Is worthy praise: but, shall I speak my conscience, +Our kinsman Gloucester is as innocent +From meaning treason to our royal person +As is the sucking lamb or harmless dove: +The duke is virtuous, mild and too well given +To dream on evil or to work my downfall. + +QUEEN MARGARET: +Ah, what's more dangerous than this fond affiance! +Seems he a dove? his feathers are but borrowed, +For he's disposed as the hateful raven: +Is he a lamb? his skin is surely lent him, +For he's inclined as is the ravenous wolf. +Who cannot steal a shape that means deceit? +Take heed, my lord; the welfare of us all +Hangs on the cutting short that fraudful man. + +SOMERSET: +All health unto my gracious sovereign! + +KING HENRY VI: +Welcome, Lord Somerset. What news from France? + +SOMERSET: +That all your interest in those territories +Is utterly bereft you; all is lost. + +KING HENRY VI: +Cold news, Lord Somerset: but God's will be done! + +YORK: + +GLOUCESTER: +All happiness unto my lord the king! +Pardon, my liege, that I have stay'd so long. + +SUFFOLK: +Nay, Gloucester, know that thou art come too soon, +Unless thou wert more loyal than thou art: +I do arrest thee of high treason here. + +GLOUCESTER: +Well, Suffolk, thou shalt not see me blush +Nor change my countenance for this arrest: +A heart unspotted is not easily daunted. +The purest spring is not so free from mud +As I am clear from treason to my sovereign: +Who can accuse me? wherein am I guilty? + +YORK: +'Tis thought, my lord, that you took bribes of France, +And, being protector, stayed the soldiers' pay; +By means whereof his highness hath lost France. + +GLOUCESTER: +Is it but thought so? what are they that think it? +I never robb'd the soldiers of their pay, +Nor ever had one penny bribe from France. +So help me God, as I have watch'd the night, +Ay, night by night, in studying good for England, +That doit that e'er I wrested from the king, +Or any groat I hoarded to my use, +Be brought against me at my trial-day! +No; many a pound of mine own proper store, +Because I would not tax the needy commons, +Have I disbursed to the garrisons, +And never ask'd for restitution. + +CARDINAL: +It serves you well, my lord, to say so much. + +GLOUCESTER: +I say no more than truth, so help me God! + +YORK: +In your protectorship you did devise +Strange tortures for offenders never heard of, +That England was defamed by tyranny. + +GLOUCESTER: +Why, 'tis well known that, whiles I was +protector, +Pity was all the fault that was in me; +For I should melt at an offender's tears, +And lowly words were ransom for their fault. +Unless it were a bloody murderer, +Or foul felonious thief that fleeced poor passengers, +I never gave them condign punishment: +Murder indeed, that bloody sin, I tortured +Above the felon or what trespass else. + +SUFFOLK: +My lord, these faults are easy, quickly answered: +But mightier crimes are laid unto your charge, +Whereof you cannot easily purge yourself. +I do arrest you in his highness' name; +And here commit you to my lord cardinal +To keep, until your further time of trial. + +KING HENRY VI: +My lord of Gloucester, 'tis my special hope +That you will clear yourself from all suspect: +My conscience tells me you are innocent. + +GLOUCESTER: +Ah, gracious lord, these days are dangerous: +Virtue is choked with foul ambition +And charity chased hence by rancour's hand; +Foul subornation is predominant +And equity exiled your highness' land. +I know their complot is to have my life, +And if my death might make this island happy, +And prove the period of their tyranny, +I would expend it with all willingness: +But mine is made the prologue to their play; +For thousands more, that yet suspect no peril, +Will not conclude their plotted tragedy. +Beaufort's red sparkling eyes blab his heart's malice, +And Suffolk's cloudy brow his stormy hate; +Sharp Buckingham unburthens with his tongue +The envious load that lies upon his heart; +And dogged York, that reaches at the moon, +Whose overweening arm I have pluck'd back, +By false accuse doth level at my life: +And you, my sovereign lady, with the rest, +Causeless have laid disgraces on my head, +And with your best endeavour have stirr'd up +My liefest liege to be mine enemy: +Ay, all you have laid your heads together-- +Myself had notice of your conventicles-- +And all to make away my guiltless life. +I shall not want false witness to condemn me, +Nor store of treasons to augment my guilt; +The ancient proverb will be well effected: +'A staff is quickly found to beat a dog.' + +CARDINAL: +My liege, his railing is intolerable: +If those that care to keep your royal person +From treason's secret knife and traitors' rage +Be thus upbraided, chid and rated at, +And the offender granted scope of speech, +'Twill make them cool in zeal unto your grace. + +SUFFOLK: +Hath he not twit our sovereign lady here +With ignominious words, though clerkly couch'd, +As if she had suborned some to swear +False allegations to o'erthrow his state? + +QUEEN MARGARET: +But I can give the loser leave to chide. + +GLOUCESTER: +Far truer spoke than meant: I lose, indeed; +Beshrew the winners, for they play'd me false! +And well such losers may have leave to speak. + +BUCKINGHAM: +He'll wrest the sense and hold us here all day: +Lord cardinal, he is your prisoner. + +CARDINAL: +Sirs, take away the duke, and guard him sure. + +GLOUCESTER: +Ah! thus King Henry throws away his crutch +Before his legs be firm to bear his body. +Thus is the shepherd beaten from thy side, +And wolves are gnarling who shall gnaw thee first. +Ah, that my fear were false! ah, that it were! +For, good King Henry, thy decay I fear. + +KING HENRY VI: +My lords, what to your wisdoms seemeth best, +Do or undo, as if ourself were here. + +QUEEN MARGARET: +What, will your highness leave the parliament? + +KING HENRY VI: +Ay, Margaret; my heart is drown'd with grief, +Whose flood begins to flow within mine eyes, +My body round engirt with misery, +For what's more miserable than discontent? +Ah, uncle Humphrey! in thy face I see +The map of honour, truth and loyalty: +And yet, good Humphrey, is the hour to come +That e'er I proved thee false or fear'd thy faith. +What louring star now envies thy estate, +That these great lords and Margaret our queen +Do seek subversion of thy harmless life? +Thou never didst them wrong, nor no man wrong; +And as the butcher takes away the calf +And binds the wretch, and beats it when it strays, +Bearing it to the bloody slaughter-house, +Even so remorseless have they borne him hence; +And as the dam runs lowing up and down, +Looking the way her harmless young one went, +And can do nought but wail her darling's loss, +Even so myself bewails good Gloucester's case +With sad unhelpful tears, and with dimm'd eyes +Look after him and cannot do him good, +So mighty are his vowed enemies. +His fortunes I will weep; and, 'twixt each groan +Say 'Who's a traitor? Gloucester he is none.' + +QUEEN MARGARET: +Free lords, cold snow melts with the sun's hot beams. +Henry my lord is cold in great affairs, +Too full of foolish pity, and Gloucester's show +Beguiles him as the mournful crocodile +With sorrow snares relenting passengers, +Or as the snake roll'd in a flowering bank, +With shining chequer'd slough, doth sting a child +That for the beauty thinks it excellent. +Believe me, lords, were none more wise than I-- +And yet herein I judge mine own wit good-- +This Gloucester should be quickly rid the world, +To rid us of the fear we have of him. + +CARDINAL: +That he should die is worthy policy; +But yet we want a colour for his death: +'Tis meet he be condemn'd by course of law. + +SUFFOLK: +But, in my mind, that were no policy: +The king will labour still to save his life, +The commons haply rise, to save his life; +And yet we have but trivial argument, +More than mistrust, that shows him worthy death. + +YORK: +So that, by this, you would not have him die. + +SUFFOLK: +Ah, York, no man alive so fain as I! + +YORK: +'Tis York that hath more reason for his death. +But, my lord cardinal, and you, my Lord of Suffolk, +Say as you think, and speak it from your souls, +Were't not all one, an empty eagle were set +To guard the chicken from a hungry kite, +As place Duke Humphrey for the king's protector? + +QUEEN MARGARET: +So the poor chicken should be sure of death. + +SUFFOLK: +Madam, 'tis true; and were't not madness, then, +To make the fox surveyor of the fold? +Who being accused a crafty murderer, +His guilt should be but idly posted over, +Because his purpose is not executed. +No; let him die, in that he is a fox, +By nature proved an enemy to the flock, +Before his chaps be stain'd with crimson blood, +As Humphrey, proved by reasons, to my liege. +And do not stand on quillets how to slay him: +Be it by gins, by snares, by subtlety, +Sleeping or waking, 'tis no matter how, +So he be dead; for that is good deceit +Which mates him first that first intends deceit. + +QUEEN MARGARET: +Thrice-noble Suffolk, 'tis resolutely spoke. + +SUFFOLK: +Not resolute, except so much were done; +For things are often spoke and seldom meant: +But that my heart accordeth with my tongue, +Seeing the deed is meritorious, +And to preserve my sovereign from his foe, +Say but the word, and I will be his priest. + +CARDINAL: +But I would have him dead, my Lord of Suffolk, +Ere you can take due orders for a priest: +Say you consent and censure well the deed, +And I'll provide his executioner, +I tender so the safety of my liege. + +SUFFOLK: +Here is my hand, the deed is worthy doing. + +QUEEN MARGARET: +And so say I. + +YORK: +And I and now we three have spoke it, +It skills not greatly who impugns our doom. + +Post: +Great lords, from Ireland am I come amain, +To signify that rebels there are up +And put the Englishmen unto the sword: +Send succors, lords, and stop the rage betime, +Before the wound do grow uncurable; +For, being green, there is great hope of help. + +CARDINAL: +A breach that craves a quick expedient stop! +What counsel give you in this weighty cause? + +YORK: +That Somerset be sent as regent thither: +'Tis meet that lucky ruler be employ'd; +Witness the fortune he hath had in France. + +SOMERSET: +If York, with all his far-fet policy, +Had been the regent there instead of me, +He never would have stay'd in France so long. + +YORK: +No, not to lose it all, as thou hast done: +I rather would have lost my life betimes +Than bring a burthen of dishonour home +By staying there so long till all were lost. +Show me one scar character'd on thy skin: +Men's flesh preserved so whole do seldom win. + +QUEEN MARGARET: +Nay, then, this spark will prove a raging fire, +If wind and fuel be brought to feed it with: +No more, good York; sweet Somerset, be still: +Thy fortune, York, hadst thou been regent there, +Might happily have proved far worse than his. + +YORK: +What, worse than nought? nay, then, a shame take all! + +SOMERSET: +And, in the number, thee that wishest shame! + +CARDINAL: +My Lord of York, try what your fortune is. +The uncivil kerns of Ireland are in arms +And temper clay with blood of Englishmen: +To Ireland will you lead a band of men, +Collected choicely, from each county some, +And try your hap against the Irishmen? + +YORK: +I will, my lord, so please his majesty. + +SUFFOLK: +Why, our authority is his consent, +And what we do establish he confirms: +Then, noble York, take thou this task in hand. + +YORK: +I am content: provide me soldiers, lords, +Whiles I take order for mine own affairs. + +SUFFOLK: +A charge, Lord York, that I will see perform'd. +But now return we to the false Duke Humphrey. + +CARDINAL: +No more of him; for I will deal with him +That henceforth he shall trouble us no more. +And so break off; the day is almost spent: +Lord Suffolk, you and I must talk of that event. + +YORK: +My Lord of Suffolk, within fourteen days +At Bristol I expect my soldiers; +For there I'll ship them all for Ireland. + +SUFFOLK: +I'll see it truly done, my Lord of York. + +YORK: +Now, York, or never, steel thy fearful thoughts, +And change misdoubt to resolution: +Be that thou hopest to be, or what thou art +Resign to death; it is not worth the enjoying: +Let pale-faced fear keep with the mean-born man, +And find no harbour in a royal heart. +Faster than spring-time showers comes thought +on thought, +And not a thought but thinks on dignity. +My brain more busy than the labouring spider +Weaves tedious snares to trap mine enemies. +Well, nobles, well, 'tis politicly done, +To send me packing with an host of men: +I fear me you but warm the starved snake, +Who, cherish'd in your breasts, will sting +your hearts. +'Twas men I lack'd and you will give them me: +I take it kindly; and yet be well assured +You put sharp weapons in a madman's hands. +Whiles I in Ireland nourish a mighty band, +I will stir up in England some black storm +Shall blow ten thousand souls to heaven or hell; +And this fell tempest shall not cease to rage +Until the golden circuit on my head, +Like to the glorious sun's transparent beams, +Do calm the fury of this mad-bred flaw. +And, for a minister of my intent, +I have seduced a headstrong Kentishman, +John Cade of Ashford, +To make commotion, as full well he can, +Under the title of John Mortimer. +In Ireland have I seen this stubborn Cade +Oppose himself against a troop of kerns, +And fought so long, till that his thighs with darts +Were almost like a sharp-quill'd porpentine; +And, in the end being rescued, I have seen +Him caper upright like a wild Morisco, +Shaking the bloody darts as he his bells. +Full often, like a shag-hair'd crafty kern, +Hath he conversed with the enemy, +And undiscover'd come to me again +And given me notice of their villanies. +This devil here shall be my substitute; +For that John Mortimer, which now is dead, +In face, in gait, in speech, he doth resemble: +By this I shall perceive the commons' mind, +How they affect the house and claim of York. +Say he be taken, rack'd and tortured, +I know no pain they can inflict upon him +Will make him say I moved him to those arms. +Say that he thrive, as 'tis great like he will, +Why, then from Ireland come I with my strength +And reap the harvest which that rascal sow'd; +For Humphrey being dead, as he shall be, +And Henry put apart, the next for me. + +First Murderer: +Run to my Lord of Suffolk; let him know +We have dispatch'd the duke, as he commanded. + +Second Murderer: +O that it were to do! What have we done? +Didst ever hear a man so penitent? + +First Murder: +Here comes my lord. + +SUFFOLK: +Now, sirs, have you dispatch'd this thing? + +First Murderer: +Ay, my good lord, he's dead. + +SUFFOLK: +Why, that's well said. Go, get you to my house; +I will reward you for this venturous deed. +The king and all the peers are here at hand. +Have you laid fair the bed? Is all things well, +According as I gave directions? + +First Murderer: +'Tis, my good lord. + +SUFFOLK: +Away! be gone. + +KING HENRY VI: +Go, call our uncle to our presence straight; +Say we intend to try his grace to-day. +If he be guilty, as 'tis published. + +SUFFOLK: +I'll call him presently, my noble lord. + +KING HENRY VI: +Lords, take your places; and, I pray you all, +Proceed no straiter 'gainst our uncle Gloucester +Than from true evidence of good esteem +He be approved in practise culpable. + +QUEEN MARGARET: +God forbid any malice should prevail, +That faultless may condemn a nobleman! +Pray God he may acquit him of suspicion! + +KING HENRY VI: +I thank thee, Meg; these words content me much. +How now! why look'st thou pale? why tremblest thou? +Where is our uncle? what's the matter, Suffolk? + +SUFFOLK: +Dead in his bed, my lord; Gloucester is dead. + +QUEEN MARGARET: +Marry, God forfend! + +CARDINAL: +God's secret judgment: I did dream to-night +The duke was dumb and could not speak a word. + +QUEEN MARGARET: +How fares my lord? Help, lords! the king is dead. + +SOMERSET: +Rear up his body; wring him by the nose. + +QUEEN MARGARET: +Run, go, help, help! O Henry, ope thine eyes! + +SUFFOLK: +He doth revive again: madam, be patient. + +KING HENRY VI: +O heavenly God! + +QUEEN MARGARET: +How fares my gracious lord? + +SUFFOLK: +Comfort, my sovereign! gracious Henry, comfort! + +KING HENRY VI: +What, doth my Lord of Suffolk comfort me? +Came he right now to sing a raven's note, +Whose dismal tune bereft my vital powers; +And thinks he that the chirping of a wren, +By crying comfort from a hollow breast, +Can chase away the first-conceived sound? +Hide not thy poison with such sugar'd words; +Lay not thy hands on me; forbear, I say; +Their touch affrights me as a serpent's sting. +Thou baleful messenger, out of my sight! +Upon thy eye-balls murderous tyranny +Sits in grim majesty, to fright the world. +Look not upon me, for thine eyes are wounding: +Yet do not go away: come, basilisk, +And kill the innocent gazer with thy sight; +For in the shade of death I shall find joy; +In life but double death, now Gloucester's dead. + +QUEEN MARGARET: +Why do you rate my Lord of Suffolk thus? +Although the duke was enemy to him, +Yet he most Christian-like laments his death: +And for myself, foe as he was to me, +Might liquid tears or heart-offending groans +Or blood-consuming sighs recall his life, +I would be blind with weeping, sick with groans, +Look pale as primrose with blood-drinking sighs, +And all to have the noble duke alive. +What know I how the world may deem of me? +For it is known we were but hollow friends: +It may be judged I made the duke away; +So shall my name with slander's tongue be wounded, +And princes' courts be fill'd with my reproach. +This get I by his death: ay me, unhappy! +To be a queen, and crown'd with infamy! + +KING HENRY VI: +Ah, woe is me for Gloucester, wretched man! + +QUEEN MARGARET: +Be woe for me, more wretched than he is. +What, dost thou turn away and hide thy face? +I am no loathsome leper; look on me. +What! art thou, like the adder, waxen deaf? +Be poisonous too and kill thy forlorn queen. +Is all thy comfort shut in Gloucester's tomb? +Why, then, dame Margaret was ne'er thy joy. +Erect his statue and worship it, +And make my image but an alehouse sign. +Was I for this nigh wreck'd upon the sea +And twice by awkward wind from England's bank +Drove back again unto my native clime? +What boded this, but well forewarning wind +Did seem to say 'Seek not a scorpion's nest, +Nor set no footing on this unkind shore'? +What did I then, but cursed the gentle gusts +And he that loosed them forth their brazen caves: +And bid them blow towards England's blessed shore, +Or turn our stern upon a dreadful rock +Yet AEolus would not be a murderer, +But left that hateful office unto thee: +The pretty-vaulting sea refused to drown me, +Knowing that thou wouldst have me drown'd on shore, +With tears as salt as sea, through thy unkindness: +The splitting rocks cower'd in the sinking sands +And would not dash me with their ragged sides, +Because thy flinty heart, more hard than they, +Might in thy palace perish Margaret. +As far as I could ken thy chalky cliffs, +When from thy shore the tempest beat us back, +I stood upon the hatches in the storm, +And when the dusky sky began to rob +My earnest-gaping sight of thy land's view, +I took a costly jewel from my neck, +A heart it was, bound in with diamonds, +And threw it towards thy land: the sea received it, +And so I wish'd thy body might my heart: +And even with this I lost fair England's view +And bid mine eyes be packing with my heart +And call'd them blind and dusky spectacles, +For losing ken of Albion's wished coast. +How often have I tempted Suffolk's tongue, +The agent of thy foul inconstancy, +To sit and witch me, as Ascanius did +When he to madding Dido would unfold +His father's acts commenced in burning Troy! +Am I not witch'd like her? or thou not false like him? +Ay me, I can no more! die, Margaret! +For Henry weeps that thou dost live so long. + +WARWICK: +It is reported, mighty sovereign, +That good Duke Humphrey traitorously is murder'd +By Suffolk and the Cardinal Beaufort's means. +The commons, like an angry hive of bees +That want their leader, scatter up and down +And care not who they sting in his revenge. +Myself have calm'd their spleenful mutiny, +Until they hear the order of his death. + +KING HENRY VI: +That he is dead, good Warwick, 'tis too true; +But how he died God knows, not Henry: +Enter his chamber, view his breathless corpse, +And comment then upon his sudden death. + +WARWICK: +That shall I do, my liege. Stay, Salisbury, +With the rude multitude till I return. + +KING HENRY VI: +O Thou that judgest all things, stay my thoughts, +My thoughts, that labour to persuade my soul +Some violent hands were laid on Humphrey's life! +If my suspect be false, forgive me, God, +For judgment only doth belong to thee. +Fain would I go to chafe his paly lips +With twenty thousand kisses, and to drain +Upon his face an ocean of salt tears, +To tell my love unto his dumb deaf trunk, +And with my fingers feel his hand unfeeling: +But all in vain are these mean obsequies; +And to survey his dead and earthly image, +What were it but to make my sorrow greater? + +WARWICK: +Come hither, gracious sovereign, view this body. + +KING HENRY VI: +That is to see how deep my grave is made; +For with his soul fled all my worldly solace, +For seeing him I see my life in death. + +WARWICK: +As surely as my soul intends to live +With that dread King that took our state upon him +To free us from his father's wrathful curse, +I do believe that violent hands were laid +Upon the life of this thrice-famed duke. + +SUFFOLK: +A dreadful oath, sworn with a solemn tongue! +What instance gives Lord Warwick for his vow? + +WARWICK: +See how the blood is settled in his face. +Oft have I seen a timely-parted ghost, +Of ashy semblance, meagre, pale and bloodless, +Being all descended to the labouring heart; +Who, in the conflict that it holds with death, +Attracts the same for aidance 'gainst the enemy; +Which with the heart there cools and ne'er returneth +To blush and beautify the cheek again. +But see, his face is black and full of blood, +His eye-balls further out than when he lived, +Staring full ghastly like a strangled man; +His hair uprear'd, his nostrils stretched with struggling; +His hands abroad display'd, as one that grasp'd +And tugg'd for life and was by strength subdued: +Look, on the sheets his hair you see, is sticking; +His well-proportion'd beard made rough and rugged, +Like to the summer's corn by tempest lodged. +It cannot be but he was murder'd here; +The least of all these signs were probable. + +SUFFOLK: +Why, Warwick, who should do the duke to death? +Myself and Beaufort had him in protection; +And we, I hope, sir, are no murderers. + +WARWICK: +But both of you were vow'd Duke Humphrey's foes, +And you, forsooth, had the good duke to keep: +'Tis like you would not feast him like a friend; +And 'tis well seen he found an enemy. + +QUEEN MARGARET: +Then you, belike, suspect these noblemen +As guilty of Duke Humphrey's timeless death. + +WARWICK: +Who finds the heifer dead and bleeding fresh +And sees fast by a butcher with an axe, +But will suspect 'twas he that made the slaughter? +Who finds the partridge in the puttock's nest, +But may imagine how the bird was dead, +Although the kite soar with unbloodied beak? +Even so suspicious is this tragedy. + +QUEEN MARGARET: +Are you the butcher, Suffolk? Where's your knife? +Is Beaufort term'd a kite? Where are his talons? + +SUFFOLK: +I wear no knife to slaughter sleeping men; +But here's a vengeful sword, rusted with ease, +That shall be scoured in his rancorous heart +That slanders me with murder's crimson badge. +Say, if thou darest, proud Lord of Warwick-shire, +That I am faulty in Duke Humphrey's death. + +WARWICK: +What dares not Warwick, if false Suffolk dare him? + +QUEEN MARGARET: +He dares not calm his contumelious spirit +Nor cease to be an arrogant controller, +Though Suffolk dare him twenty thousand times. + +WARWICK: +Madam, be still; with reverence may I say; +For every word you speak in his behalf +Is slander to your royal dignity. + +SUFFOLK: +Blunt-witted lord, ignoble in demeanor! +If ever lady wrong'd her lord so much, +Thy mother took into her blameful bed +Some stern untutor'd churl, and noble stock +Was graft with crab-tree slip; whose fruit thou art, +And never of the Nevils' noble race. + +WARWICK: +But that the guilt of murder bucklers thee +And I should rob the deathsman of his fee, +Quitting thee thereby of ten thousand shames, +And that my sovereign's presence makes me mild, +I would, false murderous coward, on thy knee +Make thee beg pardon for thy passed speech, +And say it was thy mother that thou meant'st +That thou thyself was born in bastardy; +And after all this fearful homage done, +Give thee thy hire and send thy soul to hell, +Pernicious blood-sucker of sleeping men! + +SUFFOLK: +Thou shall be waking well I shed thy blood, +If from this presence thou darest go with me. + +WARWICK: +Away even now, or I will drag thee hence: +Unworthy though thou art, I'll cope with thee +And do some service to Duke Humphrey's ghost. + +KING HENRY VI: +What stronger breastplate than a heart untainted! +Thrice is he armed that hath his quarrel just, +And he but naked, though lock'd up in steel +Whose conscience with injustice is corrupted. + +QUEEN MARGARET: +What noise is this? + +KING HENRY VI: +Why, how now, lords! your wrathful weapons drawn +Here in our presence! dare you be so bold? +Why, what tumultuous clamour have we here? + +SUFFOLK: +The traitorous Warwick with the men of Bury +Set all upon me, mighty sovereign. + +SALISBURY: + +Commons: + +SUFFOLK: +'Tis like the commons, rude unpolish'd hinds, +Could send such message to their sovereign: +But you, my lord, were glad to be employ'd, +To show how quaint an orator you are: +But all the honour Salisbury hath won +Is, that he was the lord ambassador +Sent from a sort of tinkers to the king. + +Commons: + +KING HENRY VI: +Go, Salisbury, and tell them all from me. +I thank them for their tender loving care; +And had I not been cited so by them, +Yet did I purpose as they do entreat; +For, sure, my thoughts do hourly prophesy +Mischance unto my state by Suffolk's means: +And therefore, by His majesty I swear, +Whose far unworthy deputy I am, +He shall not breathe infection in this air +But three days longer, on the pain of death. + +QUEEN MARGARET: +O Henry, let me plead for gentle Suffolk! + +KING HENRY VI: +Ungentle queen, to call him gentle Suffolk! +No more, I say: if thou dost plead for him, +Thou wilt but add increase unto my wrath. +Had I but said, I would have kept my word, +But when I swear, it is irrevocable. +If, after three days' space, thou here be'st found +On any ground that I am ruler of, +The world shall not be ransom for thy life. +Come, Warwick, come, good Warwick, go with me; +I have great matters to impart to thee. + +QUEEN MARGARET: +Mischance and sorrow go along with you! +Heart's discontent and sour affliction +Be playfellows to keep you company! +There's two of you; the devil make a third! +And threefold vengeance tend upon your steps! + +SUFFOLK: +Cease, gentle queen, these execrations, +And let thy Suffolk take his heavy leave. + +QUEEN MARGARET: +Fie, coward woman and soft-hearted wretch! +Hast thou not spirit to curse thine enemy? + +SUFFOLK: +A plague upon them! wherefore should I curse them? +Would curses kill, as doth the mandrake's groan, +I would invent as bitter-searching terms, +As curst, as harsh and horrible to hear, +Deliver'd strongly through my fixed teeth, +With full as many signs of deadly hate, +As lean-faced Envy in her loathsome cave: +My tongue should stumble in mine earnest words; +Mine eyes should sparkle like the beaten flint; +Mine hair be fixed on end, as one distract; +Ay, every joint should seem to curse and ban: +And even now my burthen'd heart would break, +Should I not curse them. Poison be their drink! +Gall, worse than gall, the daintiest that they taste! +Their sweetest shade a grove of cypress trees! +Their chiefest prospect murdering basilisks! +Their softest touch as smart as lizards' sting! +Their music frightful as the serpent's hiss, +And boding screech-owls make the concert full! +All the foul terrors in dark-seated hell-- + +QUEEN MARGARET: +Enough, sweet Suffolk; thou torment'st thyself; +And these dread curses, like the sun 'gainst glass, +Or like an overcharged gun, recoil, +And turn the force of them upon thyself. + +SUFFOLK: +You bade me ban, and will you bid me leave? +Now, by the ground that I am banish'd from, +Well could I curse away a winter's night, +Though standing naked on a mountain top, +Where biting cold would never let grass grow, +And think it but a minute spent in sport. + +QUEEN MARGARET: +O, let me entreat thee cease. Give me thy hand, +That I may dew it with my mournful tears; +Nor let the rain of heaven wet this place, +To wash away my woful monuments. +O, could this kiss be printed in thy hand, +That thou mightst think upon these by the seal, +Through whom a thousand sighs are breathed for thee! +So, get thee gone, that I may know my grief; +'Tis but surmised whiles thou art standing by, +As one that surfeits thinking on a want. +I will repeal thee, or, be well assured, +Adventure to be banished myself: +And banished I am, if but from thee. +Go; speak not to me; even now be gone. +O, go not yet! Even thus two friends condemn'd +Embrace and kiss and take ten thousand leaves, +Loather a hundred times to part than die. +Yet now farewell; and farewell life with thee! + +SUFFOLK: +Thus is poor Suffolk ten times banished; +Once by the king, and three times thrice by thee. +'Tis not the land I care for, wert thou thence; +A wilderness is populous enough, +So Suffolk had thy heavenly company: +For where thou art, there is the world itself, +With every several pleasure in the world, +And where thou art not, desolation. +I can no more: live thou to joy thy life; +Myself no joy in nought but that thou livest. + +QUEEN MARGARET: +Wither goes Vaux so fast? what news, I prithee? + +VAUX: +To signify unto his majesty +That Cardinal Beaufort is at point of death; +For suddenly a grievous sickness took him, +That makes him gasp and stare and catch the air, +Blaspheming God and cursing men on earth. +Sometimes he talks as if Duke Humphrey's ghost +Were by his side; sometime he calls the king, +And whispers to his pillow, as to him, +The secrets of his overcharged soul; +And I am sent to tell his majesty +That even now he cries aloud for him. + +QUEEN MARGARET: +Go tell this heavy message to the king. +Ay me! what is this world! what news are these! +But wherefore grieve I at an hour's poor loss, +Omitting Suffolk's exile, my soul's treasure? +Why only, Suffolk, mourn I not for thee, +And with the southern clouds contend in tears, +Theirs for the earth's increase, mine for my sorrows? +Now get thee hence: the king, thou know'st, is coming; +If thou be found by me, thou art but dead. + +SUFFOLK: +If I depart from thee, I cannot live; +And in thy sight to die, what were it else +But like a pleasant slumber in thy lap? +Here could I breathe my soul into the air, +As mild and gentle as the cradle-babe +Dying with mother's dug between its lips: +Where, from thy sight, I should be raging mad, +And cry out for thee to close up mine eyes, +To have thee with thy lips to stop my mouth; +So shouldst thou either turn my flying soul, +Or I should breathe it so into thy body, +And then it lived in sweet Elysium. +To die by thee were but to die in jest; +From thee to die were torture more than death: +O, let me stay, befall what may befall! + +QUEEN MARGARET: +Away! though parting be a fretful corrosive, +It is applied to a deathful wound. +To France, sweet Suffolk: let me hear from thee; +For wheresoe'er thou art in this world's globe, +I'll have an Iris that shall find thee out. + +SUFFOLK: +I go. + +QUEEN MARGARET: +And take my heart with thee. + +SUFFOLK: +A jewel, lock'd into the wofull'st cask +That ever did contain a thing of worth. +Even as a splitted bark, so sunder we +This way fall I to death. + +QUEEN MARGARET: +This way for me. + +KING HENRY VI: +How fares my lord? speak, Beaufort, to +thy sovereign. + +CARDINAL: +If thou be'st death, I'll give thee England's treasure, +Enough to purchase such another island, +So thou wilt let me live, and feel no pain. + +KING HENRY VI: +Ah, what a sign it is of evil life, +Where death's approach is seen so terrible! + +WARWICK: +Beaufort, it is thy sovereign speaks to thee. + +CARDINAL: +Bring me unto my trial when you will. +Died he not in his bed? where should he die? +Can I make men live, whether they will or no? +O, torture me no more! I will confess. +Alive again? then show me where he is: +I'll give a thousand pound to look upon him. +He hath no eyes, the dust hath blinded them. +Comb down his hair; look, look! it stands upright, +Like lime-twigs set to catch my winged soul. +Give me some drink; and bid the apothecary +Bring the strong poison that I bought of him. + +KING HENRY VI: +O thou eternal Mover of the heavens. +Look with a gentle eye upon this wretch! +O, beat away the busy meddling fiend +That lays strong siege unto this wretch's soul. +And from his bosom purge this black despair! + +WARWICK: +See, how the pangs of death do make him grin! + +SALISBURY: +Disturb him not; let him pass peaceably. + +KING HENRY VI: +Peace to his soul, if God's good pleasure be! +Lord cardinal, if thou think'st on heaven's bliss, +Hold up thy hand, make signal of thy hope. +He dies, and makes no sign. O God, forgive him! + +WARWICK: +So bad a death argues a monstrous life. + +KING HENRY VI: +Forbear to judge, for we are sinners all. +Close up his eyes and draw the curtain close; +And let us all to meditation. + +Captain: +The gaudy, blabbing and remorseful day +Is crept into the bosom of the sea; +And now loud-howling wolves arouse the jades +That drag the tragic melancholy night; +Who, with their drowsy, slow and flagging wings, +Clip dead men's graves and from their misty jaws +Breathe foul contagious darkness in the air. +Therefore bring forth the soldiers of our prize; +For, whilst our pinnace anchors in the Downs, +Here shall they make their ransom on the sand, +Or with their blood stain this discolour'd shore. +Master, this prisoner freely give I thee; +And thou that art his mate, make boot of this; +The other, Walter Whitmore, is thy share. + +First Gentleman: +What is my ransom, master? let me know. + +Master: +A thousand crowns, or else lay down your head. + +Master's-Mate: +And so much shall you give, or off goes yours. + +Captain: +What, think you much to pay two thousand crowns, +And bear the name and port of gentlemen? +Cut both the villains' throats; for die you shall: +The lives of those which we have lost in fight +Be counterpoised with such a petty sum! + +First Gentleman: +I'll give it, sir; and therefore spare my life. + +Second Gentleman: +And so will I and write home for it straight. + +WHITMORE: +I lost mine eye in laying the prize aboard, +And therefore to revenge it, shalt thou die; +And so should these, if I might have my will. + +Captain: +Be not so rash; take ransom, let him live. + +SUFFOLK: +Look on my George; I am a gentleman: +Rate me at what thou wilt, thou shalt be paid. + +WHITMORE: +And so am I; my name is Walter Whitmore. +How now! why start'st thou? what, doth +death affright? + +SUFFOLK: +Thy name affrights me, in whose sound is death. +A cunning man did calculate my birth +And told me that by water I should die: +Yet let not this make thee be bloody-minded; +Thy name is Gaultier, being rightly sounded. + +WHITMORE: +Gaultier or Walter, which it is, I care not: +Never yet did base dishonour blur our name, +But with our sword we wiped away the blot; +Therefore, when merchant-like I sell revenge, +Broke be my sword, my arms torn and defaced, +And I proclaim'd a coward through the world! + +SUFFOLK: +Stay, Whitmore; for thy prisoner is a prince, +The Duke of Suffolk, William de la Pole. + +WHITMORE: +The Duke of Suffolk muffled up in rags! + +SUFFOLK: +Ay, but these rags are no part of the duke: +Jove sometimes went disguised, and why not I? + +Captain: +But Jove was never slain, as thou shalt be. + +SUFFOLK: +Obscure and lowly swain, King Henry's blood, +The honourable blood of Lancaster, +Must not be shed by such a jaded groom. +Hast thou not kiss'd thy hand and held my stirrup? +Bare-headed plodded by my foot-cloth mule +And thought thee happy when I shook my head? +How often hast thou waited at my cup, +Fed from my trencher, kneel'd down at the board. +When I have feasted with Queen Margaret? +Remember it and let it make thee crest-fall'n, +Ay, and allay this thy abortive pride; +How in our voiding lobby hast thou stood +And duly waited for my coming forth? +This hand of mine hath writ in thy behalf, +And therefore shall it charm thy riotous tongue. + +WHITMORE: +Speak, captain, shall I stab the forlorn swain? + +Captain: +First let my words stab him, as he hath me. + +SUFFOLK: +Base slave, thy words are blunt and so art thou. + +Captain: +Convey him hence and on our longboat's side +Strike off his head. + +SUFFOLK: +Thou darest not, for thy own. + +Captain: +Yes, Pole. + +SUFFOLK: +Pole! + +Captain: +Pool! Sir Pool! lord! +Ay, kennel, puddle, sink; whose filth and dirt +Troubles the silver spring where England drinks. +Now will I dam up this thy yawning mouth +For swallowing the treasure of the realm: +Thy lips that kiss'd the queen shall sweep the ground; +And thou that smiledst at good Duke Humphrey's death, +Against the senseless winds shalt grin in vain, +Who in contempt shall hiss at thee again: +And wedded be thou to the hags of hell, +For daring to affy a mighty lord +Unto the daughter of a worthless king, +Having neither subject, wealth, nor diadem. +By devilish policy art thou grown great, +And, like ambitious Sylla, overgorged +With gobbets of thy mother's bleeding heart. +By thee Anjou and Maine were sold to France, +The false revolting Normans thorough thee +Disdain to call us lord, and Picardy +Hath slain their governors, surprised our forts, +And sent the ragged soldiers wounded home. +The princely Warwick, and the Nevils all, +Whose dreadful swords were never drawn in vain, +As hating thee, are rising up in arms: +And now the house of York, thrust from the crown +By shameful murder of a guiltless king +And lofty proud encroaching tyranny, +Burns with revenging fire; whose hopeful colours +Advance our half-faced sun, striving to shine, +Under the which is writ 'Invitis nubibus.' +The commons here in Kent are up in arms: +And, to conclude, reproach and beggary +Is crept into the palace of our king. +And all by thee. Away! convey him hence. + +SUFFOLK: +O that I were a god, to shoot forth thunder +Upon these paltry, servile, abject drudges! +Small things make base men proud: this villain here, +Being captain of a pinnace, threatens more +Than Bargulus the strong Illyrian pirate. +Drones suck not eagles' blood but rob beehives: +It is impossible that I should die +By such a lowly vassal as thyself. +Thy words move rage and not remorse in me: +I go of message from the queen to France; +I charge thee waft me safely cross the Channel. + +Captain: +Walter,-- + +WHITMORE: +Come, Suffolk, I must waft thee to thy death. + +SUFFOLK: +Gelidus timor occupat artus it is thee I fear. + +WHITMORE: +Thou shalt have cause to fear before I leave thee. +What, are ye daunted now? now will ye stoop? + +First Gentleman: +My gracious lord, entreat him, speak him fair. + +SUFFOLK: +Suffolk's imperial tongue is stern and rough, +Used to command, untaught to plead for favour. +Far be it we should honour such as these +With humble suit: no, rather let my head +Stoop to the block than these knees bow to any +Save to the God of heaven and to my king; +And sooner dance upon a bloody pole +Than stand uncover'd to the vulgar groom. +True nobility is exempt from fear: +More can I bear than you dare execute. + +Captain: +Hale him away, and let him talk no more. + +SUFFOLK: +Come, soldiers, show what cruelty ye can, +That this my death may never be forgot! +Great men oft die by vile bezonians: +A Roman sworder and banditto slave +Murder'd sweet Tully; Brutus' bastard hand +Stabb'd Julius Caesar; savage islanders +Pompey the Great; and Suffolk dies by pirates. + +Captain: +And as for these whose ransom we have set, +It is our pleasure one of them depart; +Therefore come you with us and let him go. + +WHITMORE: +There let his head and lifeless body lie, +Until the queen his mistress bury it. + +First Gentleman: +O barbarous and bloody spectacle! +His body will I bear unto the king: +If he revenge it not, yet will his friends; +So will the queen, that living held him dear. + +BEVIS: +Come, and get thee a sword, though made of a lath; +they have been up these two days. + +HOLLAND: +They have the more need to sleep now, then. + +BEVIS: +I tell thee, Jack Cade the clothier means to dress +the commonwealth, and turn it, and set a new nap upon it. + +HOLLAND: +So he had need, for 'tis threadbare. Well, I say it +was never merry world in England since gentlemen came up. + +BEVIS: +O miserable age! virtue is not regarded in handicrafts-men. + +HOLLAND: +The nobility think scorn to go in leather aprons. + +BEVIS: +Nay, more, the king's council are no good workmen. + +HOLLAND: +True; and yet it is said, labour in thy vocation; +which is as much to say as, let the magistrates be +labouring men; and therefore should we be +magistrates. + +BEVIS: +Thou hast hit it; for there's no better sign of a +brave mind than a hard hand. + +HOLLAND: +I see them! I see them! there's Best's son, the +tanner of Wingham,-- + +BEVIS: +He shall have the skin of our enemies, to make +dog's-leather of. + +HOLLAND: +And Dick the Butcher,-- + +BEVIS: +Then is sin struck down like an ox, and iniquity's +throat cut like a calf. + +HOLLAND: +And Smith the weaver,-- + +BEVIS: +Argo, their thread of life is spun. + +HOLLAND: +Come, come, let's fall in with them. + +CADE: +We John Cade, so termed of our supposed father,-- + +DICK: + +CADE: +For our enemies shall fall before us, inspired with +the spirit of putting down kings and princes, +--Command silence. + +DICK: +Silence! + +CADE: +My father was a Mortimer,-- + +DICK: + +CADE: +My mother a Plantagenet,-- + +DICK: + +CADE: +My wife descended of the Lacies,-- + +DICK: + +SMITH: + +CADE: +Therefore am I of an honourable house. + +DICK: + +CADE: +Valiant I am. + +SMITH: + +CADE: +I am able to endure much. + +DICK: + +CADE: +I fear neither sword nor fire. + +SMITH: + +DICK: + +CADE: +Be brave, then; for your captain is brave, and vows +reformation. There shall be in England seven +halfpenny loaves sold for a penny: the three-hooped +pot; shall have ten hoops and I will make it felony +to drink small beer: all the realm shall be in +common; and in Cheapside shall my palfrey go to +grass: and when I am king, as king I will be,-- + +ALL: +God save your majesty! + +CADE: +I thank you, good people: there shall be no money; +all shall eat and drink on my score; and I will +apparel them all in one livery, that they may agree +like brothers and worship me their lord. + +DICK: +The first thing we do, let's kill all the lawyers. + +CADE: +Nay, that I mean to do. Is not this a lamentable +thing, that of the skin of an innocent lamb should +be made parchment? that parchment, being scribbled +o'er, should undo a man? Some say the bee stings: +but I say, 'tis the bee's wax; for I did but seal +once to a thing, and I was never mine own man +since. How now! who's there? + +SMITH: +The clerk of Chatham: he can write and read and +cast accompt. + +CADE: +O monstrous! + +SMITH: +We took him setting of boys' copies. + +CADE: +Here's a villain! + +SMITH: +Has a book in his pocket with red letters in't. + +CADE: +Nay, then, he is a conjurer. + +DICK: +Nay, he can make obligations, and write court-hand. + +CADE: +I am sorry for't: the man is a proper man, of mine +honour; unless I find him guilty, he shall not die. +Come hither, sirrah, I must examine thee: what is thy name? + +Clerk: +Emmanuel. + +DICK: +They use to write it on the top of letters: 'twill +go hard with you. + +CADE: +Let me alone. Dost thou use to write thy name? or +hast thou a mark to thyself, like an honest +plain-dealing man? + +CLERK: +Sir, I thank God, I have been so well brought up +that I can write my name. + +ALL: +He hath confessed: away with him! he's a villain +and a traitor. + +CADE: +Away with him, I say! hang him with his pen and +ink-horn about his neck. + +MICHAEL: +Where's our general? + +CADE: +Here I am, thou particular fellow. + +MICHAEL: +Fly, fly, fly! Sir Humphrey Stafford and his +brother are hard by, with the king's forces. + +CADE: +Stand, villain, stand, or I'll fell thee down. He +shall be encountered with a man as good as himself: +he is but a knight, is a'? + +MICHAEL: +No. + +CADE: +To equal him, I will make myself a knight presently. +Rise up Sir John Mortimer. +Now have at him! + +SIR HUMPHREY: +Rebellious hinds, the filth and scum of Kent, +Mark'd for the gallows, lay your weapons down; +Home to your cottages, forsake this groom: +The king is merciful, if you revolt. + +WILLIAM STAFFORD: +But angry, wrathful, and inclined to blood, +If you go forward; therefore yield, or die. + +CADE: +As for these silken-coated slaves, I pass not: +It is to you, good people, that I speak, +Over whom, in time to come, I hope to reign; +For I am rightful heir unto the crown. + +SIR HUMPHREY: +Villain, thy father was a plasterer; +And thou thyself a shearman, art thou not? + +CADE: +And Adam was a gardener. + +WILLIAM STAFFORD: +And what of that? + +CADE: +Marry, this: Edmund Mortimer, Earl of March. +Married the Duke of Clarence' daughter, did he not? + +SIR HUMPHREY: +Ay, sir. + +CADE: +By her he had two children at one birth. + +WILLIAM STAFFORD: +That's false. + +CADE: +Ay, there's the question; but I say, 'tis true: +The elder of them, being put to nurse, +Was by a beggar-woman stolen away; +And, ignorant of his birth and parentage, +Became a bricklayer when he came to age: +His son am I; deny it, if you can. + +DICK: +Nay, 'tis too true; therefore he shall be king. + +SMITH: +Sir, he made a chimney in my father's house, and +the bricks are alive at this day to testify it; +therefore deny it not. + +SIR HUMPHREY: +And will you credit this base drudge's words, +That speaks he knows not what? + +ALL: +Ay, marry, will we; therefore get ye gone. + +WILLIAM STAFFORD: +Jack Cade, the Duke of York hath taught you this. + +CADE: + +DICK: +And furthermore, well have the Lord Say's head for +selling the dukedom of Maine. + +CADE: +And good reason; for thereby is England mained, and +fain to go with a staff, but that my puissance holds +it up. Fellow kings, I tell you that that Lord Say +hath gelded the commonwealth, and made it an eunuch: +and more than that, he can speak French; and +therefore he is a traitor. + +SIR HUMPHREY: +O gross and miserable ignorance! + +CADE: +Nay, answer, if you can: the Frenchmen are our +enemies; go to, then, I ask but this: can he that +speaks with the tongue of an enemy be a good +counsellor, or no? + +ALL: +No, no; and therefore we'll have his head. + +WILLIAM STAFFORD: +Well, seeing gentle words will not prevail, +Assail them with the army of the king. + +SIR HUMPHREY: +Herald, away; and throughout every town +Proclaim them traitors that are up with Cade; +That those which fly before the battle ends +May, even in their wives' and children's sight, +Be hang'd up for example at their doors: +And you that be the king's friends, follow me. + +CADE: +And you that love the commons, follow me. +Now show yourselves men; 'tis for liberty. +We will not leave one lord, one gentleman: +Spare none but such as go in clouted shoon; +For they are thrifty honest men, and such +As would, but that they dare not, take our parts. + +DICK: +They are all in order and march toward us. + +CADE: +But then are we in order when we are most +out of order. Come, march forward. + +CADE: +Where's Dick, the butcher of Ashford? + +DICK: +Here, sir. + +CADE: +They fell before thee like sheep and oxen, and thou +behavedst thyself as if thou hadst been in thine own +slaughter-house: therefore thus will I reward thee, +the Lent shall be as long again as it is; and thou +shalt have a licence to kill for a hundred lacking +one. + +DICK: +I desire no more. + +CADE: +And, to speak truth, thou deservest no less. This +monument of the victory will I bear; +and the bodies shall be dragged at my horse' heels +till I do come to London, where we will have the +mayor's sword borne before us. + +DICK: +If we mean to thrive and do good, break open the +gaols and let out the prisoners. + +CADE: +Fear not that, I warrant thee. Come, let's march +towards London. + +QUEEN MARGARET: +Oft have I heard that grief softens the mind, +And makes it fearful and degenerate; +Think therefore on revenge and cease to weep. +But who can cease to weep and look on this? +Here may his head lie on my throbbing breast: +But where's the body that I should embrace? + +BUCKINGHAM: +What answer makes your grace to the rebels' +supplication? + +KING HENRY VI: +I'll send some holy bishop to entreat; +For God forbid so many simple souls +Should perish by the sword! And I myself, +Rather than bloody war shall cut them short, +Will parley with Jack Cade their general: +But stay, I'll read it over once again. + +QUEEN MARGARET: +Ah, barbarous villains! hath this lovely face +Ruled, like a wandering planet, over me, +And could it not enforce them to relent, +That were unworthy to behold the same? + +KING HENRY VI: +Lord Say, Jack Cade hath sworn to have thy head. + +SAY: +Ay, but I hope your highness shall have his. + +KING HENRY VI: +How now, madam! +Still lamenting and mourning for Suffolk's death? +I fear me, love, if that I had been dead, +Thou wouldst not have mourn'd so much for me. + +QUEEN MARGARET: +No, my love, I should not mourn, but die for thee. + +KING HENRY VI: +How now! what news? why comest thou in such haste? + +Messenger: +The rebels are in Southwark; fly, my lord! +Jack Cade proclaims himself Lord Mortimer, +Descended from the Duke of Clarence' house, +And calls your grace usurper openly +And vows to crown himself in Westminster. +His army is a ragged multitude +Of hinds and peasants, rude and merciless: +Sir Humphrey Stafford and his brother's death +Hath given them heart and courage to proceed: +All scholars, lawyers, courtiers, gentlemen, +They call false caterpillars, and intend their death. + +KING HENRY VI: +O graceless men! they know not what they do. + +BUCKINGHAM: +My gracious lord, return to Killingworth, +Until a power be raised to put them down. + +QUEEN MARGARET: +Ah, were the Duke of Suffolk now alive, +These Kentish rebels would be soon appeased! + +KING HENRY VI: +Lord Say, the traitors hate thee; +Therefore away with us to Killingworth. + +SAY: +So might your grace's person be in danger. +The sight of me is odious in their eyes; +And therefore in this city will I stay +And live alone as secret as I may. + +Messenger: +Jack Cade hath gotten London bridge: +The citizens fly and forsake their houses: +The rascal people, thirsting after prey, +Join with the traitor, and they jointly swear +To spoil the city and your royal court. + +BUCKINGHAM: +Then linger not, my lord, away, take horse. + +KING HENRY VI: +Come, Margaret; God, our hope, will succor us. + +QUEEN MARGARET: +My hope is gone, now Suffolk is deceased. + +KING HENRY VI: +Farewell, my lord: trust not the Kentish rebels. + +BUCKINGHAM: +Trust nobody, for fear you be betray'd. + +SAY: +The trust I have is in mine innocence, +And therefore am I bold and resolute. + +SCALES: +How now! is Jack Cade slain? + +First Citizen: +No, my lord, nor likely to be slain; for they have +won the bridge, killing all those that withstand +them: the lord mayor craves aid of your honour from +the Tower, to defend the city from the rebels. + +SCALES: +Such aid as I can spare you shall command; +But I am troubled here with them myself; +The rebels have assay'd to win the Tower. +But get you to Smithfield, and gather head, +And thither I will send you Matthew Goffe; +Fight for your king, your country and your lives; +And so, farewell, for I must hence again. + +CADE: +Now is Mortimer lord of this city. And here, sitting +upon London-stone, I charge and command that, of the +city's cost, the pissing-conduit run nothing but +claret wine this first year of our reign. And now +henceforward it shall be treason for any that calls +me other than Lord Mortimer. + +Soldier: +Jack Cade! Jack Cade! + +CADE: +Knock him down there. + +SMITH: +If this fellow be wise, he'll never call ye Jack +Cade more: I think he hath a very fair warning. + +DICK: +My lord, there's an army gathered together in +Smithfield. + +CADE: +Come, then, let's go fight with them; but first, go +and set London bridge on fire; and, if you can, burn +down the Tower too. Come, let's away. + +CADE: +So, sirs: now go some and pull down the Savoy; +others to the inns of court; down with them all. + +DICK: +I have a suit unto your lordship. + +CADE: +Be it a lordship, thou shalt have it for that word. + +DICK: +Only that the laws of England may come out of your mouth. + +HOLLAND: + +SMITH: + +CADE: +I have thought upon it, it shall be so. Away, burn +all the records of the realm: my mouth shall be +the parliament of England. + +HOLLAND: + +CADE: +And henceforward all things shall be in common. + +Messenger: +My lord, a prize, a prize! here's the Lord Say, +which sold the towns in France; he that made us pay +one and twenty fifteens, and one shilling to the +pound, the last subsidy. + +CADE: +Well, he shall be beheaded for it ten times. Ah, +thou say, thou serge, nay, thou buckram lord! now +art thou within point-blank of our jurisdiction +regal. What canst thou answer to my majesty for +giving up of Normandy unto Mounsieur Basimecu, the +dauphin of France? Be it known unto thee by these +presence, even the presence of Lord Mortimer, that I +am the besom that must sweep the court clean of such +filth as thou art. Thou hast most traitorously +corrupted the youth of the realm in erecting a +grammar school; and whereas, before, our forefathers +had no other books but the score and the tally, thou +hast caused printing to be used, and, contrary to +the king, his crown and dignity, thou hast built a +paper-mill. It will be proved to thy face that thou +hast men about thee that usually talk of a noun and +a verb, and such abominable words as no Christian +ear can endure to hear. Thou hast appointed +justices of peace, to call poor men before them +about matters they were not able to answer. +Moreover, thou hast put them in prison; and because +they could not read, thou hast hanged them; when, +indeed, only for that cause they have been most +worthy to live. Thou dost ride in a foot-cloth, dost thou not? + +SAY: +What of that? + +CADE: +Marry, thou oughtest not to let thy horse wear a +cloak, when honester men than thou go in their hose +and doublets. + +DICK: +And work in their shirt too; as myself, for example, +that am a butcher. + +SAY: +You men of Kent,-- + +DICK: +What say you of Kent? + +SAY: +Nothing but this; 'tis 'bona terra, mala gens.' + +CADE: +Away with him, away with him! he speaks Latin. + +SAY: +Hear me but speak, and bear me where you will. +Kent, in the Commentaries Caesar writ, +Is term'd the civil'st place of this isle: +Sweet is the country, because full of riches; +The people liberal, valiant, active, wealthy; +Which makes me hope you are not void of pity. +I sold not Maine, I lost not Normandy, +Yet, to recover them, would lose my life. +Justice with favour have I always done; +Prayers and tears have moved me, gifts could never. +When have I aught exacted at your hands, +But to maintain the king, the realm and you? +Large gifts have I bestow'd on learned clerks, +Because my book preferr'd me to the king, +And seeing ignorance is the curse of God, +Knowledge the wing wherewith we fly to heaven, +Unless you be possess'd with devilish spirits, +You cannot but forbear to murder me: +This tongue hath parley'd unto foreign kings +For your behoof,-- + +CADE: +Tut, when struck'st thou one blow in the field? + +SAY: +Great men have reaching hands: oft have I struck +Those that I never saw and struck them dead. + +BEVIS: +O monstrous coward! what, to come behind folks? + +SAY: +These cheeks are pale for watching for your good. + +CADE: +Give him a box o' the ear and that will make 'em red again. + +SAY: +Long sitting to determine poor men's causes +Hath made me full of sickness and diseases. + +CADE: +Ye shall have a hempen caudle, then, and the help of hatchet. + +DICK: +Why dost thou quiver, man? + +SAY: +The palsy, and not fear, provokes me. + +CADE: +Nay, he nods at us, as who should say, I'll be even +with you: I'll see if his head will stand steadier +on a pole, or no. Take him away, and behead him. + +SAY: +Tell me wherein have I offended most? +Have I affected wealth or honour? speak. +Are my chests fill'd up with extorted gold? +Is my apparel sumptuous to behold? +Whom have I injured, that ye seek my death? +These hands are free from guiltless bloodshedding, +This breast from harbouring foul deceitful thoughts. +O, let me live! + +CADE: + +ALL: +It shall be done. + +SAY: +Ah, countrymen! if when you make your prayers, +God should be so obdurate as yourselves, +How would it fare with your departed souls? +And therefore yet relent, and save my life. + +CADE: +Away with him! and do as I command ye. +The proudest peer in the realm shall not wear a head +on his shoulders, unless he pay me tribute; there +shall not a maid be married, but she shall pay to me +her maidenhead ere they have it: men shall hold of +me in capite; and we charge and command that their +wives be as free as heart can wish or tongue can tell. + +DICK: +My lord, when shall we go to Cheapside and take up +commodities upon our bills? + +CADE: +Marry, presently. + +ALL: +O, brave! + +CADE: +But is not this braver? Let them kiss one another, +for they loved well when they were alive. Now part +them again, lest they consult about the giving up of +some more towns in France. Soldiers, defer the +spoil of the city until night: for with these borne +before us, instead of maces, will we ride through +the streets, and at every corner have them kiss. Away! + +CADE: +Up Fish Street! down Saint Magnus' Corner! Kill +and knock down! throw them into Thames! +What noise is this I hear? Dare any be so bold to +sound retreat or parley, when I command them kill? + +BUCKINGHAM: +Ay, here they be that dare and will disturb thee: +Know, Cade, we come ambassadors from the king +Unto the commons whom thou hast misled; +And here pronounce free pardon to them all +That will forsake thee and go home in peace. + +CLIFFORD: +What say ye, countrymen? will ye relent, +And yield to mercy whilst 'tis offer'd you; +Or let a rebel lead you to your deaths? +Who loves the king and will embrace his pardon, +Fling up his cap, and say 'God save his majesty!' +Who hateth him and honours not his father, +Henry the Fifth, that made all France to quake, +Shake he his weapon at us and pass by. + +ALL: +God save the king! God save the king! + +CADE: +What, Buckingham and Clifford, are ye so brave? And +you, base peasants, do ye believe him? will you +needs be hanged with your pardons about your necks? +Hath my sword therefore broke through London gates, +that you should leave me at the White Hart in +Southwark? I thought ye would never have given out +these arms till you had recovered your ancient +freedom: but you are all recreants and dastards, +and delight to live in slavery to the nobility. Let +them break your backs with burthens, take your +houses over your heads, ravish your wives and +daughters before your faces: for me, I will make +shift for one; and so, God's curse light upon you +all! + +ALL: +We'll follow Cade, we'll follow Cade! + +CLIFFORD: +Is Cade the son of Henry the Fifth, +That thus you do exclaim you'll go with him? +Will he conduct you through the heart of France, +And make the meanest of you earls and dukes? +Alas, he hath no home, no place to fly to; +Nor knows he how to live but by the spoil, +Unless by robbing of your friends and us. +Were't not a shame, that whilst you live at jar, +The fearful French, whom you late vanquished, +Should make a start o'er seas and vanquish you? +Methinks already in this civil broil +I see them lording it in London streets, +Crying 'Villiago!' unto all they meet. +Better ten thousand base-born Cades miscarry +Than you should stoop unto a Frenchman's mercy. +To France, to France, and get what you have lost; +Spare England, for it is your native coast; +Henry hath money, you are strong and manly; +God on our side, doubt not of victory. + +ALL: +A Clifford! a Clifford! we'll follow the king and Clifford. + +CADE: +Was ever feather so lightly blown to and fro as this +multitude? The name of Henry the Fifth hales them +to an hundred mischiefs, and makes them leave me +desolate. I see them lay their heads together to +surprise me. My sword make way for me, for here is +no staying. In despite of the devils and hell, have +through the very middest of you? and heavens and +honour be witness, that no want of resolution in me. +but only my followers' base and ignominious +treasons, makes me betake me to my heels. + +BUCKINGHAM: +What, is he fled? Go some, and follow him; +And he that brings his head unto the king +Shall have a thousand crowns for his reward. +Follow me, soldiers: we'll devise a mean +To reconcile you all unto the king. + +KING HENRY VI: +Was ever king that joy'd an earthly throne, +And could command no more content than I? +No sooner was I crept out of my cradle +But I was made a king, at nine months old. +Was never subject long'd to be a king +As I do long and wish to be a subject. + +BUCKINGHAM: +Health and glad tidings to your majesty! + +KING HENRY VI: +Why, Buckingham, is the traitor Cade surprised? +Or is he but retired to make him strong? + +CLIFFORD: +He is fled, my lord, and all his powers do yield; +And humbly thus, with halters on their necks, +Expect your highness' doom of life or death. + +KING HENRY VI: +Then, heaven, set ope thy everlasting gates, +To entertain my vows of thanks and praise! +Soldiers, this day have you redeemed your lives, +And show'd how well you love your prince and country: +Continue still in this so good a mind, +And Henry, though he be infortunate, +Assure yourselves, will never be unkind: +And so, with thanks and pardon to you all, +I do dismiss you to your several countries. + +ALL: +God save the king! God save the king! + +Messenger: +Please it your grace to be advertised +The Duke of York is newly come from Ireland, +And with a puissant and a mighty power +Of gallowglasses and stout kerns +Is marching hitherward in proud array, +And still proclaimeth, as he comes along, +His arms are only to remove from thee +The Duke of Somerset, whom he terms traitor. + +KING HENRY VI: +Thus stands my state, 'twixt Cade and York distress'd. +Like to a ship that, having 'scaped a tempest, +Is straightway calm'd and boarded with a pirate: +But now is Cade driven back, his men dispersed; +And now is York in arms to second him. +I pray thee, Buckingham, go and meet him, +And ask him what's the reason of these arms. +Tell him I'll send Duke Edmund to the Tower; +And, Somerset, we'll commit thee thither, +Until his army be dismiss'd from him. + +SOMERSET: +My lord, +I'll yield myself to prison willingly, +Or unto death, to do my country good. + +KING HENRY VI: +In any case, be not too rough in terms; +For he is fierce and cannot brook hard language. + +BUCKINGHAM: +I will, my lord; and doubt not so to deal +As all things shall redound unto your good. + +KING HENRY VI: +Come, wife, let's in, and learn to govern better; +For yet may England curse my wretched reign. + +CADE: +Fie on ambition! fie on myself, that have a sword, +and yet am ready to famish! These five days have I +hid me in these woods and durst not peep out, for +all the country is laid for me; but now am I so +hungry that if I might have a lease of my life for a +thousand years I could stay no longer. Wherefore, +on a brick wall have I climbed into this garden, to +see if I can eat grass, or pick a sallet another +while, which is not amiss to cool a man's stomach +this hot weather. And I think this word 'sallet' +was born to do me good: for many a time, but for a +sallet, my brainpan had been cleft with a brown +bill; and many a time, when I have been dry and +bravely marching, it hath served me instead of a +quart pot to drink in; and now the word 'sallet' +must serve me to feed on. + +IDEN: +Lord, who would live turmoiled in the court, +And may enjoy such quiet walks as these? +This small inheritance my father left me +Contenteth me, and worth a monarchy. +I seek not to wax great by others' waning, +Or gather wealth, I care not, with what envy: +Sufficeth that I have maintains my state +And sends the poor well pleased from my gate. + +CADE: +Here's the lord of the soil come to seize me for a +stray, for entering his fee-simple without leave. +Ah, villain, thou wilt betray me, and get a thousand +crowns of the king carrying my head to him: but +I'll make thee eat iron like an ostrich, and swallow +my sword like a great pin, ere thou and I part. + +IDEN: +Why, rude companion, whatsoe'er thou be, +I know thee not; why, then, should I betray thee? +Is't not enough to break into my garden, +And, like a thief, to come to rob my grounds, +Climbing my walls in spite of me the owner, +But thou wilt brave me with these saucy terms? + +CADE: +Brave thee! ay, by the best blood that ever was +broached, and beard thee too. Look on me well: I +have eat no meat these five days; yet, come thou and +thy five men, and if I do not leave you all as dead +as a doornail, I pray God I may never eat grass more. + +IDEN: +Nay, it shall ne'er be said, while England stands, +That Alexander Iden, an esquire of Kent, +Took odds to combat a poor famish'd man. +Oppose thy steadfast-gazing eyes to mine, +See if thou canst outface me with thy looks: +Set limb to limb, and thou art far the lesser; +Thy hand is but a finger to my fist, +Thy leg a stick compared with this truncheon; +My foot shall fight with all the strength thou hast; +And if mine arm be heaved in the air, +Thy grave is digg'd already in the earth. +As for words, whose greatness answers words, +Let this my sword report what speech forbears. + +CADE: +By my valour, the most complete champion that ever I +heard! Steel, if thou turn the edge, or cut not out +the burly-boned clown in chines of beef ere thou +sleep in thy sheath, I beseech God on my knees thou +mayst be turned to hobnails. +O, I am slain! famine and no other hath slain me: +let ten thousand devils come against me, and give me +but the ten meals I have lost, and I'll defy them +all. Wither, garden; and be henceforth a +burying-place to all that do dwell in this house, +because the unconquered soul of Cade is fled. + +IDEN: +Is't Cade that I have slain, that monstrous traitor? +Sword, I will hollow thee for this thy deed, +And hang thee o'er my tomb when I am dead: +Ne'er shall this blood be wiped from thy point; +But thou shalt wear it as a herald's coat, +To emblaze the honour that thy master got. + +CADE: +Iden, farewell, and be proud of thy victory. Tell +Kent from me, she hath lost her best man, and exhort +all the world to be cowards; for I, that never +feared any, am vanquished by famine, not by valour. + +IDEN: +How much thou wrong'st me, heaven be my judge. +Die, damned wretch, the curse of her that bare thee; +And as I thrust thy body in with my sword, +So wish I, I might thrust thy soul to hell. +Hence will I drag thee headlong by the heels +Unto a dunghill which shall be thy grave, +And there cut off thy most ungracious head; +Which I will bear in triumph to the king, +Leaving thy trunk for crows to feed upon. + +YORK: +From Ireland thus comes York to claim his right, +And pluck the crown from feeble Henry's head: +Ring, bells, aloud; burn, bonfires, clear and bright, +To entertain great England's lawful king. +Ah! sancta majestas, who would not buy thee dear? +Let them obey that know not how to rule; +This hand was made to handle naught but gold. +I cannot give due action to my words, +Except a sword or sceptre balance it: +A sceptre shall it have, have I a soul, +On which I'll toss the flower-de-luce of France. +Whom have we here? Buckingham, to disturb me? +The king hath sent him, sure: I must dissemble. + +BUCKINGHAM: +York, if thou meanest well, I greet thee well. + +YORK: +Humphrey of Buckingham, I accept thy greeting. +Art thou a messenger, or come of pleasure? + +BUCKINGHAM: +A messenger from Henry, our dread liege, +To know the reason of these arms in peace; +Or why thou, being a subject as I am, +Against thy oath and true allegiance sworn, +Should raise so great a power without his leave, +Or dare to bring thy force so near the court. + +YORK: + +BUCKINGHAM: +That is too much presumption on thy part: +But if thy arms be to no other end, +The king hath yielded unto thy demand: +The Duke of Somerset is in the Tower. + +YORK: +Upon thine honour, is he prisoner? + +BUCKINGHAM: +Upon mine honour, he is prisoner. + +YORK: +Then, Buckingham, I do dismiss my powers. +Soldiers, I thank you all; disperse yourselves; +Meet me to-morrow in St. George's field, +You shall have pay and every thing you wish. +And let my sovereign, virtuous Henry, +Command my eldest son, nay, all my sons, +As pledges of my fealty and love; +I'll send them all as willing as I live: +Lands, goods, horse, armour, any thing I have, +Is his to use, so Somerset may die. + +BUCKINGHAM: +York, I commend this kind submission: +We twain will go into his highness' tent. + +KING HENRY VI: +Buckingham, doth York intend no harm to us, +That thus he marcheth with thee arm in arm? + +YORK: +In all submission and humility +York doth present himself unto your highness. + +KING HENRY VI: +Then what intends these forces thou dost bring? + +YORK: +To heave the traitor Somerset from hence, +And fight against that monstrous rebel Cade, +Who since I heard to be discomfited. + +IDEN: +If one so rude and of so mean condition +May pass into the presence of a king, +Lo, I present your grace a traitor's head, +The head of Cade, whom I in combat slew. + +KING HENRY VI: +The head of Cade! Great God, how just art Thou! +O, let me view his visage, being dead, +That living wrought me such exceeding trouble. +Tell me, my friend, art thou the man that slew him? + +IDEN: +I was, an't like your majesty. + +KING HENRY VI: +How art thou call'd? and what is thy degree? + +IDEN: +Alexander Iden, that's my name; +A poor esquire of Kent, that loves his king. + +BUCKINGHAM: +So please it you, my lord, 'twere not amiss +He were created knight for his good service. + +KING HENRY VI: +Iden, kneel down. +Rise up a knight. +We give thee for reward a thousand marks, +And will that thou henceforth attend on us. + +IDEN: +May Iden live to merit such a bounty. +And never live but true unto his liege! + +KING HENRY VI: +See, Buckingham, Somerset comes with the queen: +Go, bid her hide him quickly from the duke. + +QUEEN MARGARET: +For thousand Yorks he shall not hide his head, +But boldly stand and front him to his face. + +YORK: +How now! is Somerset at liberty? +Then, York, unloose thy long-imprison'd thoughts, +And let thy tongue be equal with thy heart. +Shall I endure the sight of Somerset? +False king! why hast thou broken faith with me, +Knowing how hardly I can brook abuse? +King did I call thee? no, thou art not king, +Not fit to govern and rule multitudes, +Which darest not, no, nor canst not rule a traitor. +That head of thine doth not become a crown; +Thy hand is made to grasp a palmer's staff, +And not to grace an awful princely sceptre. +That gold must round engirt these brows of mine, +Whose smile and frown, like to Achilles' spear, +Is able with the change to kill and cure. +Here is a hand to hold a sceptre up +And with the same to act controlling laws. +Give place: by heaven, thou shalt rule no more +O'er him whom heaven created for thy ruler. + +SOMERSET: +O monstrous traitor! I arrest thee, York, +Of capital treason 'gainst the king and crown; +Obey, audacious traitor; kneel for grace. + +YORK: +Wouldst have me kneel? first let me ask of these, +If they can brook I bow a knee to man. +Sirrah, call in my sons to be my bail; +I know, ere they will have me go to ward, +They'll pawn their swords for my enfranchisement. + +QUEEN MARGARET: +Call hither Clifford! bid him come amain, +To say if that the bastard boys of York +Shall be the surety for their traitor father. + +YORK: +O blood-besotted Neapolitan, +Outcast of Naples, England's bloody scourge! +The sons of York, thy betters in their birth, +Shall be their father's bail; and bane to those +That for my surety will refuse the boys! +See where they come: I'll warrant they'll +make it good. + +QUEEN MARGARET: +And here comes Clifford to deny their bail. + +CLIFFORD: +Health and all happiness to my lord the king! + +YORK: +I thank thee, Clifford: say, what news with thee? +Nay, do not fright us with an angry look; +We are thy sovereign, Clifford, kneel again; +For thy mistaking so, we pardon thee. + +CLIFFORD: +This is my king, York, I do not mistake; +But thou mistakest me much to think I do: +To Bedlam with him! is the man grown mad? + +KING HENRY VI: +Ay, Clifford; a bedlam and ambitious humour +Makes him oppose himself against his king. + +CLIFFORD: +He is a traitor; let him to the Tower, +And chop away that factious pate of his. + +QUEEN MARGARET: +He is arrested, but will not obey; +His sons, he says, shall give their words for him. + +YORK: +Will you not, sons? + +EDWARD: +Ay, noble father, if our words will serve. + +RICHARD: +And if words will not, then our weapons shall. + +CLIFFORD: +Why, what a brood of traitors have we here! + +YORK: +Look in a glass, and call thy image so: +I am thy king, and thou a false-heart traitor. +Call hither to the stake my two brave bears, +That with the very shaking of their chains +They may astonish these fell-lurking curs: +Bid Salisbury and Warwick come to me. + +CLIFFORD: +Are these thy bears? we'll bait thy bears to death. +And manacle the bear-ward in their chains, +If thou darest bring them to the baiting place. + +RICHARD: +Oft have I seen a hot o'erweening cur +Run back and bite, because he was withheld; +Who, being suffer'd with the bear's fell paw, +Hath clapp'd his tail between his legs and cried: +And such a piece of service will you do, +If you oppose yourselves to match Lord Warwick. + +CLIFFORD: +Hence, heap of wrath, foul indigested lump, +As crooked in thy manners as thy shape! + +YORK: +Nay, we shall heat you thoroughly anon. + +CLIFFORD: +Take heed, lest by your heat you burn yourselves. + +KING HENRY VI: +Why, Warwick, hath thy knee forgot to bow? +Old Salisbury, shame to thy silver hair, +Thou mad misleader of thy brain-sick son! +What, wilt thou on thy death-bed play the ruffian, +And seek for sorrow with thy spectacles? +O, where is faith? O, where is loyalty? +If it be banish'd from the frosty head, +Where shall it find a harbour in the earth? +Wilt thou go dig a grave to find out war, +And shame thine honourable age with blood? +Why art thou old, and want'st experience? +Or wherefore dost abuse it, if thou hast it? +For shame! in duty bend thy knee to me +That bows unto the grave with mickle age. + +SALISBURY: +My lord, I have consider'd with myself +The title of this most renowned duke; +And in my conscience do repute his grace +The rightful heir to England's royal seat. + +KING HENRY VI: +Hast thou not sworn allegiance unto me? + +SALISBURY: +I have. + +KING HENRY VI: +Canst thou dispense with heaven for such an oath? + +SALISBURY: +It is great sin to swear unto a sin, +But greater sin to keep a sinful oath. +Who can be bound by any solemn vow +To do a murderous deed, to rob a man, +To force a spotless virgin's chastity, +To reave the orphan of his patrimony, +To wring the widow from her custom'd right, +And have no other reason for this wrong +But that he was bound by a solemn oath? + +QUEEN MARGARET: +A subtle traitor needs no sophister. + +KING HENRY VI: +Call Buckingham, and bid him arm himself. + +YORK: +Call Buckingham, and all the friends thou hast, +I am resolved for death or dignity. + +CLIFFORD: +The first I warrant thee, if dreams prove true. + +WARWICK: +You were best to go to bed and dream again, +To keep thee from the tempest of the field. + +CLIFFORD: +I am resolved to bear a greater storm +Than any thou canst conjure up to-day; +And that I'll write upon thy burgonet, +Might I but know thee by thy household badge. + +WARWICK: +Now, by my father's badge, old Nevil's crest, +The rampant bear chain'd to the ragged staff, +This day I'll wear aloft my burgonet, +As on a mountain top the cedar shows +That keeps his leaves in spite of any storm, +Even to affright thee with the view thereof. + +CLIFFORD: +And from thy burgonet I'll rend thy bear +And tread it under foot with all contempt, +Despite the bear-ward that protects the bear. + +YOUNG CLIFFORD: +And so to arms, victorious father, +To quell the rebels and their complices. + +RICHARD: +Fie! charity, for shame! speak not in spite, +For you shall sup with Jesu Christ to-night. + +YOUNG CLIFFORD: +Foul stigmatic, that's more than thou canst tell. + +RICHARD: +If not in heaven, you'll surely sup in hell. + +WARWICK: +Clifford of Cumberland, 'tis Warwick calls: +And if thou dost not hide thee from the bear, +Now, when the angry trumpet sounds alarum +And dead men's cries do fill the empty air, +Clifford, I say, come forth and fight with me: +Proud northern lord, Clifford of Cumberland, +Warwick is hoarse with calling thee to arms. +How now, my noble lord? what, all afoot? + +YORK: +The deadly-handed Clifford slew my steed, +But match to match I have encounter'd him +And made a prey for carrion kites and crows +Even of the bonny beast he loved so well. + +WARWICK: +Of one or both of us the time is come. + +YORK: +Hold, Warwick, seek thee out some other chase, +For I myself must hunt this deer to death. + +WARWICK: +Then, nobly, York; 'tis for a crown thou fight'st. +As I intend, Clifford, to thrive to-day, +It grieves my soul to leave thee unassail'd. + +CLIFFORD: +What seest thou in me, York? why dost thou pause? + +YORK: +With thy brave bearing should I be in love, +But that thou art so fast mine enemy. + +CLIFFORD: +Nor should thy prowess want praise and esteem, +But that 'tis shown ignobly and in treason. + +YORK: +So let it help me now against thy sword +As I in justice and true right express it. + +CLIFFORD: +My soul and body on the action both! + +YORK: +A dreadful lay! Address thee instantly. + +CLIFFORD: +La fin couronne les oeuvres. + +YORK: +Thus war hath given thee peace, for thou art still. +Peace with his soul, heaven, if it be thy will! + +YOUNG CLIFFORD: +Shame and confusion! all is on the rout; +Fear frames disorder, and disorder wounds +Where it should guard. O war, thou son of hell, +Whom angry heavens do make their minister +Throw in the frozen bosoms of our part +Hot coals of vengeance! Let no soldier fly. +He that is truly dedicate to war +Hath no self-love, nor he that loves himself +Hath not essentially but by circumstance +The name of valour. +O, let the vile world end, +And the premised flames of the last day +Knit earth and heaven together! +Now let the general trumpet blow his blast, +Particularities and petty sounds +To cease! Wast thou ordain'd, dear father, +To lose thy youth in peace, and to achieve +The silver livery of advised age, +And, in thy reverence and thy chair-days, thus +To die in ruffian battle? Even at this sight +My heart is turn'd to stone: and while 'tis mine, +It shall be stony. York not our old men spares; +No more will I their babes: tears virginal +Shall be to me even as the dew to fire, +And beauty that the tyrant oft reclaims +Shall to my flaming wrath be oil and flax. +Henceforth I will not have to do with pity: +Meet I an infant of the house of York, +Into as many gobbets will I cut it +As wild Medea young Absyrtus did: +In cruelty will I seek out my fame. +Come, thou new ruin of old Clifford's house: +As did AEneas old Anchises bear, +So bear I thee upon my manly shoulders; +But then AEneas bare a living load, +Nothing so heavy as these woes of mine. + +RICHARD: +So, lie thou there; +For underneath an alehouse' paltry sign, +The Castle in Saint Alban's, Somerset +Hath made the wizard famous in his death. +Sword, hold thy temper; heart, be wrathful still: +Priests pray for enemies, but princes kill. + +QUEEN MARGARET: +Away, my lord! you are slow; for shame, away! + +KING HENRY VI: +Can we outrun the heavens? good Margaret, stay. + +QUEEN MARGARET: +What are you made of? you'll nor fight nor fly: +Now is it manhood, wisdom and defence, +To give the enemy way, and to secure us +By what we can, which can no more but fly. +If you be ta'en, we then should see the bottom +Of all our fortunes: but if we haply scape, +As well we may, if not through your neglect, +We shall to London get, where you are loved +And where this breach now in our fortunes made +May readily be stopp'd. + +YOUNG CLIFFORD: +But that my heart's on future mischief set, +I would speak blasphemy ere bid you fly: +But fly you must; uncurable discomfit +Reigns in the hearts of all our present parts. +Away, for your relief! and we will live +To see their day and them our fortune give: +Away, my lord, away! + +YORK: +Of Salisbury, who can report of him, +That winter lion, who in rage forgets +Aged contusions and all brush of time, +And, like a gallant in the brow of youth, +Repairs him with occasion? This happy day +Is not itself, nor have we won one foot, +If Salisbury be lost. + +RICHARD: +My noble father, +Three times to-day I holp him to his horse, +Three times bestrid him; thrice I led him off, +Persuaded him from any further act: +But still, where danger was, still there I met him; +And like rich hangings in a homely house, +So was his will in his old feeble body. +But, noble as he is, look where he comes. + +SALISBURY: +Now, by my sword, well hast thou fought to-day; +By the mass, so did we all. I thank you, Richard: +God knows how long it is I have to live; +And it hath pleased him that three times to-day +You have defended me from imminent death. +Well, lords, we have not got that which we have: +'Tis not enough our foes are this time fled, +Being opposites of such repairing nature. + +YORK: +I know our safety is to follow them; +For, as I hear, the king is fled to London, +To call a present court of parliament. +Let us pursue him ere the writs go forth. +What says Lord Warwick? shall we after them? + +WARWICK: +After them! nay, before them, if we can. +Now, by my faith, lords, 'twas a glorious day: +Saint Alban's battle won by famous York +Shall be eternized in all age to come. +Sound drums and trumpets, and to London all: +And more such days as these to us befall! + +DUKE ORSINO: +If music be the food of love, play on; +Give me excess of it, that, surfeiting, +The appetite may sicken, and so die. +That strain again! it had a dying fall: +O, it came o'er my ear like the sweet sound, +That breathes upon a bank of violets, +Stealing and giving odour! Enough; no more: +'Tis not so sweet now as it was before. +O spirit of love! how quick and fresh art thou, +That, notwithstanding thy capacity +Receiveth as the sea, nought enters there, +Of what validity and pitch soe'er, +But falls into abatement and low price, +Even in a minute: so full of shapes is fancy +That it alone is high fantastical. + +CURIO: +Will you go hunt, my lord? + +DUKE ORSINO: +What, Curio? + +CURIO: +The hart. + +DUKE ORSINO: +Why, so I do, the noblest that I have: +O, when mine eyes did see Olivia first, +Methought she purged the air of pestilence! +That instant was I turn'd into a hart; +And my desires, like fell and cruel hounds, +E'er since pursue me. +How now! what news from her? + +VALENTINE: +So please my lord, I might not be admitted; +But from her handmaid do return this answer: +The element itself, till seven years' heat, +Shall not behold her face at ample view; +But, like a cloistress, she will veiled walk +And water once a day her chamber round +With eye-offending brine: all this to season +A brother's dead love, which she would keep fresh +And lasting in her sad remembrance. + +DUKE ORSINO: +O, she that hath a heart of that fine frame +To pay this debt of love but to a brother, +How will she love, when the rich golden shaft +Hath kill'd the flock of all affections else +That live in her; when liver, brain and heart, +These sovereign thrones, are all supplied, and fill'd +Her sweet perfections with one self king! +Away before me to sweet beds of flowers: +Love-thoughts lie rich when canopied with bowers. + +VIOLA: +What country, friends, is this? + +Captain: +This is Illyria, lady. + +VIOLA: +And what should I do in Illyria? +My brother he is in Elysium. +Perchance he is not drown'd: what think you, sailors? + +Captain: +It is perchance that you yourself were saved. + +VIOLA: +O my poor brother! and so perchance may he be. + +Captain: +True, madam: and, to comfort you with chance, +Assure yourself, after our ship did split, +When you and those poor number saved with you +Hung on our driving boat, I saw your brother, +Most provident in peril, bind himself, +Courage and hope both teaching him the practise, +To a strong mast that lived upon the sea; +Where, like Arion on the dolphin's back, +I saw him hold acquaintance with the waves +So long as I could see. + +VIOLA: +For saying so, there's gold: +Mine own escape unfoldeth to my hope, +Whereto thy speech serves for authority, +The like of him. Know'st thou this country? + +Captain: +Ay, madam, well; for I was bred and born +Not three hours' travel from this very place. + +VIOLA: +Who governs here? + +Captain: +A noble duke, in nature as in name. + +VIOLA: +What is the name? + +Captain: +Orsino. + +VIOLA: +Orsino! I have heard my father name him: +He was a bachelor then. + +Captain: +And so is now, or was so very late; +For but a month ago I went from hence, +And then 'twas fresh in murmur,--as, you know, +What great ones do the less will prattle of,-- +That he did seek the love of fair Olivia. + +VIOLA: +What's she? + +Captain: +A virtuous maid, the daughter of a count +That died some twelvemonth since, then leaving her +In the protection of his son, her brother, +Who shortly also died: for whose dear love, +They say, she hath abjured the company +And sight of men. + +VIOLA: +O that I served that lady +And might not be delivered to the world, +Till I had made mine own occasion mellow, +What my estate is! + +Captain: +That were hard to compass; +Because she will admit no kind of suit, +No, not the duke's. + +VIOLA: +There is a fair behavior in thee, captain; +And though that nature with a beauteous wall +Doth oft close in pollution, yet of thee +I will believe thou hast a mind that suits +With this thy fair and outward character. +I prithee, and I'll pay thee bounteously, +Conceal me what I am, and be my aid +For such disguise as haply shall become +The form of my intent. I'll serve this duke: +Thou shall present me as an eunuch to him: +It may be worth thy pains; for I can sing +And speak to him in many sorts of music +That will allow me very worth his service. +What else may hap to time I will commit; +Only shape thou thy silence to my wit. + +Captain: +Be you his eunuch, and your mute I'll be: +When my tongue blabs, then let mine eyes not see. + +VIOLA: +I thank thee: lead me on. + +SIR TOBY BELCH: +What a plague means my niece, to take the death of +her brother thus? I am sure care's an enemy to life. + +MARIA: +By my troth, Sir Toby, you must come in earlier o' +nights: your cousin, my lady, takes great +exceptions to your ill hours. + +SIR TOBY BELCH: +Why, let her except, before excepted. + +MARIA: +Ay, but you must confine yourself within the modest +limits of order. + +SIR TOBY BELCH: +Confine! I'll confine myself no finer than I am: +these clothes are good enough to drink in; and so be +these boots too: an they be not, let them hang +themselves in their own straps. + +MARIA: +That quaffing and drinking will undo you: I heard +my lady talk of it yesterday; and of a foolish +knight that you brought in one night here to be her wooer. + +SIR TOBY BELCH: +Who, Sir Andrew Aguecheek? + +MARIA: +Ay, he. + +SIR TOBY BELCH: +He's as tall a man as any's in Illyria. + +MARIA: +What's that to the purpose? + +SIR TOBY BELCH: +Why, he has three thousand ducats a year. + +MARIA: +Ay, but he'll have but a year in all these ducats: +he's a very fool and a prodigal. + +SIR TOBY BELCH: +Fie, that you'll say so! he plays o' the +viol-de-gamboys, and speaks three or four languages +word for word without book, and hath all the good +gifts of nature. + +MARIA: +He hath indeed, almost natural: for besides that +he's a fool, he's a great quarreller: and but that +he hath the gift of a coward to allay the gust he +hath in quarrelling, 'tis thought among the prudent +he would quickly have the gift of a grave. + +SIR TOBY BELCH: +By this hand, they are scoundrels and subtractors +that say so of him. Who are they? + +MARIA: +They that add, moreover, he's drunk nightly in your company. + +SIR TOBY BELCH: +With drinking healths to my niece: I'll drink to +her as long as there is a passage in my throat and +drink in Illyria: he's a coward and a coystrill +that will not drink to my niece till his brains turn +o' the toe like a parish-top. What, wench! +Castiliano vulgo! for here comes Sir Andrew Agueface. + +SIR ANDREW: +Sir Toby Belch! how now, Sir Toby Belch! + +SIR TOBY BELCH: +Sweet Sir Andrew! + +SIR ANDREW: +Bless you, fair shrew. + +MARIA: +And you too, sir. + +SIR TOBY BELCH: +Accost, Sir Andrew, accost. + +SIR ANDREW: +What's that? + +SIR TOBY BELCH: +My niece's chambermaid. + +SIR ANDREW: +Good Mistress Accost, I desire better acquaintance. + +MARIA: +My name is Mary, sir. + +SIR ANDREW: +Good Mistress Mary Accost,-- + +SIR TOBY BELCH: +You mistake, knight; 'accost' is front her, board +her, woo her, assail her. + +SIR ANDREW: +By my troth, I would not undertake her in this +company. Is that the meaning of 'accost'? + +MARIA: +Fare you well, gentlemen. + +SIR TOBY BELCH: +An thou let part so, Sir Andrew, would thou mightst +never draw sword again. + +SIR ANDREW: +An you part so, mistress, I would I might never +draw sword again. Fair lady, do you think you have +fools in hand? + +MARIA: +Sir, I have not you by the hand. + +SIR ANDREW: +Marry, but you shall have; and here's my hand. + +MARIA: +Now, sir, 'thought is free:' I pray you, bring +your hand to the buttery-bar and let it drink. + +SIR ANDREW: +Wherefore, sweet-heart? what's your metaphor? + +MARIA: +It's dry, sir. + +SIR ANDREW: +Why, I think so: I am not such an ass but I can +keep my hand dry. But what's your jest? + +MARIA: +A dry jest, sir. + +SIR ANDREW: +Are you full of them? + +MARIA: +Ay, sir, I have them at my fingers' ends: marry, +now I let go your hand, I am barren. + +SIR TOBY BELCH: +O knight thou lackest a cup of canary: when did I +see thee so put down? + +SIR ANDREW: +Never in your life, I think; unless you see canary +put me down. Methinks sometimes I have no more wit +than a Christian or an ordinary man has: but I am a +great eater of beef and I believe that does harm to my wit. + +SIR TOBY BELCH: +No question. + +SIR ANDREW: +An I thought that, I'ld forswear it. I'll ride home +to-morrow, Sir Toby. + +SIR TOBY BELCH: +Pourquoi, my dear knight? + +SIR ANDREW: +What is 'Pourquoi'? do or not do? I would I had +bestowed that time in the tongues that I have in +fencing, dancing and bear-baiting: O, had I but +followed the arts! + +SIR TOBY BELCH: +Then hadst thou had an excellent head of hair. + +SIR ANDREW: +Why, would that have mended my hair? + +SIR TOBY BELCH: +Past question; for thou seest it will not curl by nature. + +SIR ANDREW: +But it becomes me well enough, does't not? + +SIR TOBY BELCH: +Excellent; it hangs like flax on a distaff; and I +hope to see a housewife take thee between her legs +and spin it off. + +SIR ANDREW: +Faith, I'll home to-morrow, Sir Toby: your niece +will not be seen; or if she be, it's four to one +she'll none of me: the count himself here hard by woos her. + +SIR TOBY BELCH: +She'll none o' the count: she'll not match above +her degree, neither in estate, years, nor wit; I +have heard her swear't. Tut, there's life in't, +man. + +SIR ANDREW: +I'll stay a month longer. I am a fellow o' the +strangest mind i' the world; I delight in masques +and revels sometimes altogether. + +SIR TOBY BELCH: +Art thou good at these kickshawses, knight? + +SIR ANDREW: +As any man in Illyria, whatsoever he be, under the +degree of my betters; and yet I will not compare +with an old man. + +SIR TOBY BELCH: +What is thy excellence in a galliard, knight? + +SIR ANDREW: +Faith, I can cut a caper. + +SIR TOBY BELCH: +And I can cut the mutton to't. + +SIR ANDREW: +And I think I have the back-trick simply as strong +as any man in Illyria. + +SIR TOBY BELCH: +Wherefore are these things hid? wherefore have +these gifts a curtain before 'em? are they like to +take dust, like Mistress Mall's picture? why dost +thou not go to church in a galliard and come home in +a coranto? My very walk should be a jig; I would not +so much as make water but in a sink-a-pace. What +dost thou mean? Is it a world to hide virtues in? +I did think, by the excellent constitution of thy +leg, it was formed under the star of a galliard. + +SIR ANDREW: +Ay, 'tis strong, and it does indifferent well in a +flame-coloured stock. Shall we set about some revels? + +SIR TOBY BELCH: +What shall we do else? were we not born under Taurus? + +SIR ANDREW: +Taurus! That's sides and heart. + +SIR TOBY BELCH: +No, sir; it is legs and thighs. Let me see the +caper; ha! higher: ha, ha! excellent! + +VALENTINE: +If the duke continue these favours towards you, +Cesario, you are like to be much advanced: he hath +known you but three days, and already you are no stranger. + +VIOLA: +You either fear his humour or my negligence, that +you call in question the continuance of his love: +is he inconstant, sir, in his favours? + +VALENTINE: +No, believe me. + +VIOLA: +I thank you. Here comes the count. + +DUKE ORSINO: +Who saw Cesario, ho? + +VIOLA: +On your attendance, my lord; here. + +DUKE ORSINO: +Stand you a while aloof, Cesario, +Thou know'st no less but all; I have unclasp'd +To thee the book even of my secret soul: +Therefore, good youth, address thy gait unto her; +Be not denied access, stand at her doors, +And tell them, there thy fixed foot shall grow +Till thou have audience. + +VIOLA: +Sure, my noble lord, +If she be so abandon'd to her sorrow +As it is spoke, she never will admit me. + +DUKE ORSINO: +Be clamorous and leap all civil bounds +Rather than make unprofited return. + +VIOLA: +Say I do speak with her, my lord, what then? + +DUKE ORSINO: +O, then unfold the passion of my love, +Surprise her with discourse of my dear faith: +It shall become thee well to act my woes; +She will attend it better in thy youth +Than in a nuncio's of more grave aspect. + +VIOLA: +I think not so, my lord. + +DUKE ORSINO: +Dear lad, believe it; +For they shall yet belie thy happy years, +That say thou art a man: Diana's lip +Is not more smooth and rubious; thy small pipe +Is as the maiden's organ, shrill and sound, +And all is semblative a woman's part. +I know thy constellation is right apt +For this affair. Some four or five attend him; +All, if you will; for I myself am best +When least in company. Prosper well in this, +And thou shalt live as freely as thy lord, +To call his fortunes thine. + +VIOLA: +I'll do my best +To woo your lady: +yet, a barful strife! +Whoe'er I woo, myself would be his wife. + +MARIA: +Nay, either tell me where thou hast been, or I will +not open my lips so wide as a bristle may enter in +way of thy excuse: my lady will hang thee for thy absence. + +Clown: +Let her hang me: he that is well hanged in this +world needs to fear no colours. + +MARIA: +Make that good. + +Clown: +He shall see none to fear. + +MARIA: +A good lenten answer: I can tell thee where that +saying was born, of 'I fear no colours.' + +Clown: +Where, good Mistress Mary? + +MARIA: +In the wars; and that may you be bold to say in your foolery. + +Clown: +Well, God give them wisdom that have it; and those +that are fools, let them use their talents. + +MARIA: +Yet you will be hanged for being so long absent; or, +to be turned away, is not that as good as a hanging to you? + +Clown: +Many a good hanging prevents a bad marriage; and, +for turning away, let summer bear it out. + +MARIA: +You are resolute, then? + +Clown: +Not so, neither; but I am resolved on two points. + +MARIA: +That if one break, the other will hold; or, if both +break, your gaskins fall. + +Clown: +Apt, in good faith; very apt. Well, go thy way; if +Sir Toby would leave drinking, thou wert as witty a +piece of Eve's flesh as any in Illyria. + +MARIA: +Peace, you rogue, no more o' that. Here comes my +lady: make your excuse wisely, you were best. + +Clown: +Wit, an't be thy will, put me into good fooling! +Those wits, that think they have thee, do very oft +prove fools; and I, that am sure I lack thee, may +pass for a wise man: for what says Quinapalus? +'Better a witty fool, than a foolish wit.' +God bless thee, lady! + +OLIVIA: +Take the fool away. + +Clown: +Do you not hear, fellows? Take away the lady. + +OLIVIA: +Go to, you're a dry fool; I'll no more of you: +besides, you grow dishonest. + +Clown: +Two faults, madonna, that drink and good counsel +will amend: for give the dry fool drink, then is +the fool not dry: bid the dishonest man mend +himself; if he mend, he is no longer dishonest; if +he cannot, let the botcher mend him. Any thing +that's mended is but patched: virtue that +transgresses is but patched with sin; and sin that +amends is but patched with virtue. If that this +simple syllogism will serve, so; if it will not, +what remedy? As there is no true cuckold but +calamity, so beauty's a flower. The lady bade take +away the fool; therefore, I say again, take her away. + +OLIVIA: +Sir, I bade them take away you. + +Clown: +Misprision in the highest degree! Lady, cucullus non +facit monachum; that's as much to say as I wear not +motley in my brain. Good madonna, give me leave to +prove you a fool. + +OLIVIA: +Can you do it? + +Clown: +Dexterously, good madonna. + +OLIVIA: +Make your proof. + +Clown: +I must catechise you for it, madonna: good my mouse +of virtue, answer me. + +OLIVIA: +Well, sir, for want of other idleness, I'll bide your proof. + +Clown: +Good madonna, why mournest thou? + +OLIVIA: +Good fool, for my brother's death. + +Clown: +I think his soul is in hell, madonna. + +OLIVIA: +I know his soul is in heaven, fool. + +Clown: +The more fool, madonna, to mourn for your brother's +soul being in heaven. Take away the fool, gentlemen. + +OLIVIA: +What think you of this fool, Malvolio? doth he not mend? + +MALVOLIO: +Yes, and shall do till the pangs of death shake him: +infirmity, that decays the wise, doth ever make the +better fool. + +Clown: +God send you, sir, a speedy infirmity, for the +better increasing your folly! Sir Toby will be +sworn that I am no fox; but he will not pass his +word for two pence that you are no fool. + +OLIVIA: +How say you to that, Malvolio? + +MALVOLIO: +I marvel your ladyship takes delight in such a +barren rascal: I saw him put down the other day +with an ordinary fool that has no more brain +than a stone. Look you now, he's out of his guard +already; unless you laugh and minister occasion to +him, he is gagged. I protest, I take these wise men, +that crow so at these set kind of fools, no better +than the fools' zanies. + +OLIVIA: +Oh, you are sick of self-love, Malvolio, and taste +with a distempered appetite. To be generous, +guiltless and of free disposition, is to take those +things for bird-bolts that you deem cannon-bullets: +there is no slander in an allowed fool, though he do +nothing but rail; nor no railing in a known discreet +man, though he do nothing but reprove. + +Clown: +Now Mercury endue thee with leasing, for thou +speakest well of fools! + +MARIA: +Madam, there is at the gate a young gentleman much +desires to speak with you. + +OLIVIA: +From the Count Orsino, is it? + +MARIA: +I know not, madam: 'tis a fair young man, and well attended. + +OLIVIA: +Who of my people hold him in delay? + +MARIA: +Sir Toby, madam, your kinsman. + +OLIVIA: +Fetch him off, I pray you; he speaks nothing but +madman: fie on him! +Go you, Malvolio: if it be a suit from the count, I +am sick, or not at home; what you will, to dismiss it. +Now you see, sir, how your fooling grows old, and +people dislike it. + +Clown: +Thou hast spoke for us, madonna, as if thy eldest +son should be a fool; whose skull Jove cram with +brains! for,--here he comes,--one of thy kin has a +most weak pia mater. + +OLIVIA: +By mine honour, half drunk. What is he at the gate, cousin? + +SIR TOBY BELCH: +A gentleman. + +OLIVIA: +A gentleman! what gentleman? + +SIR TOBY BELCH: +'Tis a gentle man here--a plague o' these +pickle-herring! How now, sot! + +Clown: +Good Sir Toby! + +OLIVIA: +Cousin, cousin, how have you come so early by this lethargy? + +SIR TOBY BELCH: +Lechery! I defy lechery. There's one at the gate. + +OLIVIA: +Ay, marry, what is he? + +SIR TOBY BELCH: +Let him be the devil, an he will, I care not: give +me faith, say I. Well, it's all one. + +OLIVIA: +What's a drunken man like, fool? + +Clown: +Like a drowned man, a fool and a mad man: one +draught above heat makes him a fool; the second mads +him; and a third drowns him. + +OLIVIA: +Go thou and seek the crowner, and let him sit o' my +coz; for he's in the third degree of drink, he's +drowned: go, look after him. + +Clown: +He is but mad yet, madonna; and the fool shall look +to the madman. + +MALVOLIO: +Madam, yond young fellow swears he will speak with +you. I told him you were sick; he takes on him to +understand so much, and therefore comes to speak +with you. I told him you were asleep; he seems to +have a foreknowledge of that too, and therefore +comes to speak with you. What is to be said to him, +lady? he's fortified against any denial. + +OLIVIA: +Tell him he shall not speak with me. + +MALVOLIO: +Has been told so; and he says, he'll stand at your +door like a sheriff's post, and be the supporter to +a bench, but he'll speak with you. + +OLIVIA: +What kind o' man is he? + +MALVOLIO: +Why, of mankind. + +OLIVIA: +What manner of man? + +MALVOLIO: +Of very ill manner; he'll speak with you, will you or no. + +OLIVIA: +Of what personage and years is he? + +MALVOLIO: +Not yet old enough for a man, nor young enough for +a boy; as a squash is before 'tis a peascod, or a +cooling when 'tis almost an apple: 'tis with him +in standing water, between boy and man. He is very +well-favoured and he speaks very shrewishly; one +would think his mother's milk were scarce out of him. + +OLIVIA: +Let him approach: call in my gentlewoman. + +MALVOLIO: +Gentlewoman, my lady calls. + +OLIVIA: +Give me my veil: come, throw it o'er my face. +We'll once more hear Orsino's embassy. + +VIOLA: +The honourable lady of the house, which is she? + +OLIVIA: +Speak to me; I shall answer for her. +Your will? + +VIOLA: +Most radiant, exquisite and unmatchable beauty,--I +pray you, tell me if this be the lady of the house, +for I never saw her: I would be loath to cast away +my speech, for besides that it is excellently well +penned, I have taken great pains to con it. Good +beauties, let me sustain no scorn; I am very +comptible, even to the least sinister usage. + +OLIVIA: +Whence came you, sir? + +VIOLA: +I can say little more than I have studied, and that +question's out of my part. Good gentle one, give me +modest assurance if you be the lady of the house, +that I may proceed in my speech. + +OLIVIA: +Are you a comedian? + +VIOLA: +No, my profound heart: and yet, by the very fangs +of malice I swear, I am not that I play. Are you +the lady of the house? + +OLIVIA: +If I do not usurp myself, I am. + +VIOLA: +Most certain, if you are she, you do usurp +yourself; for what is yours to bestow is not yours +to reserve. But this is from my commission: I will +on with my speech in your praise, and then show you +the heart of my message. + +OLIVIA: +Come to what is important in't: I forgive you the praise. + +VIOLA: +Alas, I took great pains to study it, and 'tis poetical. + +OLIVIA: +It is the more like to be feigned: I pray you, +keep it in. I heard you were saucy at my gates, +and allowed your approach rather to wonder at you +than to hear you. If you be not mad, be gone; if +you have reason, be brief: 'tis not that time of +moon with me to make one in so skipping a dialogue. + +MARIA: +Will you hoist sail, sir? here lies your way. + +VIOLA: +No, good swabber; I am to hull here a little +longer. Some mollification for your giant, sweet +lady. Tell me your mind: I am a messenger. + +OLIVIA: +Sure, you have some hideous matter to deliver, when +the courtesy of it is so fearful. Speak your office. + +VIOLA: +It alone concerns your ear. I bring no overture of +war, no taxation of homage: I hold the olive in my +hand; my words are as fun of peace as matter. + +OLIVIA: +Yet you began rudely. What are you? what would you? + +VIOLA: +The rudeness that hath appeared in me have I +learned from my entertainment. What I am, and what I +would, are as secret as maidenhead; to your ears, +divinity, to any other's, profanation. + +OLIVIA: +Give us the place alone: we will hear this divinity. +Now, sir, what is your text? + +VIOLA: +Most sweet lady,-- + +OLIVIA: +A comfortable doctrine, and much may be said of it. +Where lies your text? + +VIOLA: +In Orsino's bosom. + +OLIVIA: +In his bosom! In what chapter of his bosom? + +VIOLA: +To answer by the method, in the first of his heart. + +OLIVIA: +O, I have read it: it is heresy. Have you no more to say? + +VIOLA: +Good madam, let me see your face. + +OLIVIA: +Have you any commission from your lord to negotiate +with my face? You are now out of your text: but +we will draw the curtain and show you the picture. +Look you, sir, such a one I was this present: is't +not well done? + +VIOLA: +Excellently done, if God did all. + +OLIVIA: +'Tis in grain, sir; 'twill endure wind and weather. + +VIOLA: +'Tis beauty truly blent, whose red and white +Nature's own sweet and cunning hand laid on: +Lady, you are the cruell'st she alive, +If you will lead these graces to the grave +And leave the world no copy. + +OLIVIA: +O, sir, I will not be so hard-hearted; I will give +out divers schedules of my beauty: it shall be +inventoried, and every particle and utensil +labelled to my will: as, item, two lips, +indifferent red; item, two grey eyes, with lids to +them; item, one neck, one chin, and so forth. Were +you sent hither to praise me? + +VIOLA: +I see you what you are, you are too proud; +But, if you were the devil, you are fair. +My lord and master loves you: O, such love +Could be but recompensed, though you were crown'd +The nonpareil of beauty! + +OLIVIA: +How does he love me? + +VIOLA: +With adorations, fertile tears, +With groans that thunder love, with sighs of fire. + +OLIVIA: +Your lord does know my mind; I cannot love him: +Yet I suppose him virtuous, know him noble, +Of great estate, of fresh and stainless youth; +In voices well divulged, free, learn'd and valiant; +And in dimension and the shape of nature +A gracious person: but yet I cannot love him; +He might have took his answer long ago. + +VIOLA: +If I did love you in my master's flame, +With such a suffering, such a deadly life, +In your denial I would find no sense; +I would not understand it. + +OLIVIA: +Why, what would you? + +VIOLA: +Make me a willow cabin at your gate, +And call upon my soul within the house; +Write loyal cantons of contemned love +And sing them loud even in the dead of night; +Halloo your name to the reverberate hills +And make the babbling gossip of the air +Cry out 'Olivia!' O, You should not rest +Between the elements of air and earth, +But you should pity me! + +OLIVIA: +You might do much. +What is your parentage? + +VIOLA: +Above my fortunes, yet my state is well: +I am a gentleman. + +OLIVIA: +Get you to your lord; +I cannot love him: let him send no more; +Unless, perchance, you come to me again, +To tell me how he takes it. Fare you well: +I thank you for your pains: spend this for me. + +VIOLA: +I am no fee'd post, lady; keep your purse: +My master, not myself, lacks recompense. +Love make his heart of flint that you shall love; +And let your fervor, like my master's, be +Placed in contempt! Farewell, fair cruelty. + +OLIVIA: +'What is your parentage?' +'Above my fortunes, yet my state is well: +I am a gentleman.' I'll be sworn thou art; +Thy tongue, thy face, thy limbs, actions and spirit, +Do give thee five-fold blazon: not too fast: +soft, soft! +Unless the master were the man. How now! +Even so quickly may one catch the plague? +Methinks I feel this youth's perfections +With an invisible and subtle stealth +To creep in at mine eyes. Well, let it be. +What ho, Malvolio! + +MALVOLIO: +Here, madam, at your service. + +OLIVIA: +Run after that same peevish messenger, +The county's man: he left this ring behind him, +Would I or not: tell him I'll none of it. +Desire him not to flatter with his lord, +Nor hold him up with hopes; I am not for him: +If that the youth will come this way to-morrow, +I'll give him reasons for't: hie thee, Malvolio. + +MALVOLIO: +Madam, I will. + +OLIVIA: +I do I know not what, and fear to find +Mine eye too great a flatterer for my mind. +Fate, show thy force: ourselves we do not owe; +What is decreed must be, and be this so. + +ANTONIO: +Will you stay no longer? nor will you not that I go with you? + +SEBASTIAN: +By your patience, no. My stars shine darkly over +me: the malignancy of my fate might perhaps +distemper yours; therefore I shall crave of you your +leave that I may bear my evils alone: it were a bad +recompense for your love, to lay any of them on you. + +ANTONIO: +Let me yet know of you whither you are bound. + +SEBASTIAN: +No, sooth, sir: my determinate voyage is mere +extravagancy. But I perceive in you so excellent a +touch of modesty, that you will not extort from me +what I am willing to keep in; therefore it charges +me in manners the rather to express myself. You +must know of me then, Antonio, my name is Sebastian, +which I called Roderigo. My father was that +Sebastian of Messaline, whom I know you have heard +of. He left behind him myself and a sister, both +born in an hour: if the heavens had been pleased, +would we had so ended! but you, sir, altered that; +for some hour before you took me from the breach of +the sea was my sister drowned. + +ANTONIO: +Alas the day! + +SEBASTIAN: +A lady, sir, though it was said she much resembled +me, was yet of many accounted beautiful: but, +though I could not with such estimable wonder +overfar believe that, yet thus far I will boldly +publish her; she bore a mind that envy could not but +call fair. She is drowned already, sir, with salt +water, though I seem to drown her remembrance again with more. + +ANTONIO: +Pardon me, sir, your bad entertainment. + +SEBASTIAN: +O good Antonio, forgive me your trouble. + +ANTONIO: +If you will not murder me for my love, let me be +your servant. + +SEBASTIAN: +If you will not undo what you have done, that is, +kill him whom you have recovered, desire it not. +Fare ye well at once: my bosom is full of kindness, +and I am yet so near the manners of my mother, that +upon the least occasion more mine eyes will tell +tales of me. I am bound to the Count Orsino's court: farewell. + +ANTONIO: +The gentleness of all the gods go with thee! +I have many enemies in Orsino's court, +Else would I very shortly see thee there. +But, come what may, I do adore thee so, +That danger shall seem sport, and I will go. + +MALVOLIO: +Were not you even now with the Countess Olivia? + +VIOLA: +Even now, sir; on a moderate pace I have since +arrived but hither. + +MALVOLIO: +She returns this ring to you, sir: you might have +saved me my pains, to have taken it away yourself. +She adds, moreover, that you should put your lord +into a desperate assurance she will none of him: +and one thing more, that you be never so hardy to +come again in his affairs, unless it be to report +your lord's taking of this. Receive it so. + +VIOLA: +She took the ring of me: I'll none of it. + +MALVOLIO: +Come, sir, you peevishly threw it to her; and her +will is, it should be so returned: if it be worth +stooping for, there it lies in your eye; if not, be +it his that finds it. + +VIOLA: +I left no ring with her: what means this lady? +Fortune forbid my outside have not charm'd her! +She made good view of me; indeed, so much, +That sure methought her eyes had lost her tongue, +For she did speak in starts distractedly. +She loves me, sure; the cunning of her passion +Invites me in this churlish messenger. +None of my lord's ring! why, he sent her none. +I am the man: if it be so, as 'tis, +Poor lady, she were better love a dream. +Disguise, I see, thou art a wickedness, +Wherein the pregnant enemy does much. +How easy is it for the proper-false +In women's waxen hearts to set their forms! +Alas, our frailty is the cause, not we! +For such as we are made of, such we be. +How will this fadge? my master loves her dearly; +And I, poor monster, fond as much on him; +And she, mistaken, seems to dote on me. +What will become of this? As I am man, +My state is desperate for my master's love; +As I am woman,--now alas the day!-- +What thriftless sighs shall poor Olivia breathe! +O time! thou must untangle this, not I; +It is too hard a knot for me to untie! + +SIR TOBY BELCH: +Approach, Sir Andrew: not to be abed after +midnight is to be up betimes; and 'diluculo +surgere,' thou know'st,-- + +SIR ANDREW: +Nay, my troth, I know not: but I know, to be up +late is to be up late. + +SIR TOBY BELCH: +A false conclusion: I hate it as an unfilled can. +To be up after midnight and to go to bed then, is +early: so that to go to bed after midnight is to go +to bed betimes. Does not our life consist of the +four elements? + +SIR ANDREW: +Faith, so they say; but I think it rather consists +of eating and drinking. + +SIR TOBY BELCH: +Thou'rt a scholar; let us therefore eat and drink. +Marian, I say! a stoup of wine! + +SIR ANDREW: +Here comes the fool, i' faith. + +Clown: +How now, my hearts! did you never see the picture +of 'we three'? + +SIR TOBY BELCH: +Welcome, ass. Now let's have a catch. + +SIR ANDREW: +By my troth, the fool has an excellent breast. I +had rather than forty shillings I had such a leg, +and so sweet a breath to sing, as the fool has. In +sooth, thou wast in very gracious fooling last +night, when thou spokest of Pigrogromitus, of the +Vapians passing the equinoctial of Queubus: 'twas +very good, i' faith. I sent thee sixpence for thy +leman: hadst it? + +Clown: +I did impeticos thy gratillity; for Malvolio's nose +is no whipstock: my lady has a white hand, and the +Myrmidons are no bottle-ale houses. + +SIR ANDREW: +Excellent! why, this is the best fooling, when all +is done. Now, a song. + +SIR TOBY BELCH: +Come on; there is sixpence for you: let's have a song. + +SIR ANDREW: +There's a testril of me too: if one knight give a-- + +Clown: +Would you have a love-song, or a song of good life? + +SIR TOBY BELCH: +A love-song, a love-song. + +SIR ANDREW: +Ay, ay: I care not for good life. + +Clown: + +SIR ANDREW: +Excellent good, i' faith. + +SIR TOBY BELCH: +Good, good. + +Clown: + +SIR ANDREW: +A mellifluous voice, as I am true knight. + +SIR TOBY BELCH: +A contagious breath. + +SIR ANDREW: +Very sweet and contagious, i' faith. + +SIR TOBY BELCH: +To hear by the nose, it is dulcet in contagion. +But shall we make the welkin dance indeed? shall we +rouse the night-owl in a catch that will draw three +souls out of one weaver? shall we do that? + +SIR ANDREW: +An you love me, let's do't: I am dog at a catch. + +Clown: +By'r lady, sir, and some dogs will catch well. + +SIR ANDREW: +Most certain. Let our catch be, 'Thou knave.' + +Clown: +'Hold thy peace, thou knave,' knight? I shall be +constrained in't to call thee knave, knight. + +SIR ANDREW: +'Tis not the first time I have constrained one to +call me knave. Begin, fool: it begins 'Hold thy peace.' + +Clown: +I shall never begin if I hold my peace. + +SIR ANDREW: +Good, i' faith. Come, begin. + +MARIA: +What a caterwauling do you keep here! If my lady +have not called up her steward Malvolio and bid him +turn you out of doors, never trust me. + +SIR TOBY BELCH: +My lady's a Cataian, we are politicians, Malvolio's +a Peg-a-Ramsey, and 'Three merry men be we.' Am not +I consanguineous? am I not of her blood? +Tillyvally. Lady! +'There dwelt a man in Babylon, lady, lady!' + +Clown: +Beshrew me, the knight's in admirable fooling. + +SIR ANDREW: +Ay, he does well enough if he be disposed, and so do +I too: he does it with a better grace, but I do it +more natural. + +SIR TOBY BELCH: + +MARIA: +For the love o' God, peace! + +MALVOLIO: +My masters, are you mad? or what are you? Have ye +no wit, manners, nor honesty, but to gabble like +tinkers at this time of night? Do ye make an +alehouse of my lady's house, that ye squeak out your +coziers' catches without any mitigation or remorse +of voice? Is there no respect of place, persons, nor +time in you? + +SIR TOBY BELCH: +We did keep time, sir, in our catches. Sneck up! + +MALVOLIO: +Sir Toby, I must be round with you. My lady bade me +tell you, that, though she harbours you as her +kinsman, she's nothing allied to your disorders. If +you can separate yourself and your misdemeanors, you +are welcome to the house; if not, an it would please +you to take leave of her, she is very willing to bid +you farewell. + +SIR TOBY BELCH: +'Farewell, dear heart, since I must needs be gone.' + +MARIA: +Nay, good Sir Toby. + +Clown: +'His eyes do show his days are almost done.' + +MALVOLIO: +Is't even so? + +SIR TOBY BELCH: +'But I will never die.' + +Clown: +Sir Toby, there you lie. + +MALVOLIO: +This is much credit to you. + +SIR TOBY BELCH: +'Shall I bid him go?' + +Clown: +'What an if you do?' + +SIR TOBY BELCH: +'Shall I bid him go, and spare not?' + +Clown: +'O no, no, no, no, you dare not.' + +SIR TOBY BELCH: +Out o' tune, sir: ye lie. Art any more than a +steward? Dost thou think, because thou art +virtuous, there shall be no more cakes and ale? + +Clown: +Yes, by Saint Anne, and ginger shall be hot i' the +mouth too. + +SIR TOBY BELCH: +Thou'rt i' the right. Go, sir, rub your chain with +crumbs. A stoup of wine, Maria! + +MALVOLIO: +Mistress Mary, if you prized my lady's favour at any +thing more than contempt, you would not give means +for this uncivil rule: she shall know of it, by this hand. + +MARIA: +Go shake your ears. + +SIR ANDREW: +'Twere as good a deed as to drink when a man's +a-hungry, to challenge him the field, and then to +break promise with him and make a fool of him. + +SIR TOBY BELCH: +Do't, knight: I'll write thee a challenge: or I'll +deliver thy indignation to him by word of mouth. + +MARIA: +Sweet Sir Toby, be patient for tonight: since the +youth of the count's was today with thy lady, she is +much out of quiet. For Monsieur Malvolio, let me +alone with him: if I do not gull him into a +nayword, and make him a common recreation, do not +think I have wit enough to lie straight in my bed: +I know I can do it. + +SIR TOBY BELCH: +Possess us, possess us; tell us something of him. + +MARIA: +Marry, sir, sometimes he is a kind of puritan. + +SIR ANDREW: +O, if I thought that I'ld beat him like a dog! + +SIR TOBY BELCH: +What, for being a puritan? thy exquisite reason, +dear knight? + +SIR ANDREW: +I have no exquisite reason for't, but I have reason +good enough. + +MARIA: +The devil a puritan that he is, or any thing +constantly, but a time-pleaser; an affectioned ass, +that cons state without book and utters it by great +swarths: the best persuaded of himself, so +crammed, as he thinks, with excellencies, that it is +his grounds of faith that all that look on him love +him; and on that vice in him will my revenge find +notable cause to work. + +SIR TOBY BELCH: +What wilt thou do? + +MARIA: +I will drop in his way some obscure epistles of +love; wherein, by the colour of his beard, the shape +of his leg, the manner of his gait, the expressure +of his eye, forehead, and complexion, he shall find +himself most feelingly personated. I can write very +like my lady your niece: on a forgotten matter we +can hardly make distinction of our hands. + +SIR TOBY BELCH: +Excellent! I smell a device. + +SIR ANDREW: +I have't in my nose too. + +SIR TOBY BELCH: +He shall think, by the letters that thou wilt drop, +that they come from my niece, and that she's in +love with him. + +MARIA: +My purpose is, indeed, a horse of that colour. + +SIR ANDREW: +And your horse now would make him an ass. + +MARIA: +Ass, I doubt not. + +SIR ANDREW: +O, 'twill be admirable! + +MARIA: +Sport royal, I warrant you: I know my physic will +work with him. I will plant you two, and let the +fool make a third, where he shall find the letter: +observe his construction of it. For this night, to +bed, and dream on the event. Farewell. + +SIR TOBY BELCH: +Good night, Penthesilea. + +SIR ANDREW: +Before me, she's a good wench. + +SIR TOBY BELCH: +She's a beagle, true-bred, and one that adores me: +what o' that? + +SIR ANDREW: +I was adored once too. + +SIR TOBY BELCH: +Let's to bed, knight. Thou hadst need send for +more money. + +SIR ANDREW: +If I cannot recover your niece, I am a foul way out. + +SIR TOBY BELCH: +Send for money, knight: if thou hast her not i' +the end, call me cut. + +SIR ANDREW: +If I do not, never trust me, take it how you will. + +SIR TOBY BELCH: +Come, come, I'll go burn some sack; 'tis too late +to go to bed now: come, knight; come, knight. + +DUKE ORSINO: +Give me some music. Now, good morrow, friends. +Now, good Cesario, but that piece of song, +That old and antique song we heard last night: +Methought it did relieve my passion much, +More than light airs and recollected terms +Of these most brisk and giddy-paced times: +Come, but one verse. + +CURIO: +He is not here, so please your lordship that should sing it. + +DUKE ORSINO: +Who was it? + +CURIO: +Feste, the jester, my lord; a fool that the lady +Olivia's father took much delight in. He is about the house. + +DUKE ORSINO: +Seek him out, and play the tune the while. +Come hither, boy: if ever thou shalt love, +In the sweet pangs of it remember me; +For such as I am all true lovers are, +Unstaid and skittish in all motions else, +Save in the constant image of the creature +That is beloved. How dost thou like this tune? + +VIOLA: +It gives a very echo to the seat +Where Love is throned. + +DUKE ORSINO: +Thou dost speak masterly: +My life upon't, young though thou art, thine eye +Hath stay'd upon some favour that it loves: +Hath it not, boy? + +VIOLA: +A little, by your favour. + +DUKE ORSINO: +What kind of woman is't? + +VIOLA: +Of your complexion. + +DUKE ORSINO: +She is not worth thee, then. What years, i' faith? + +VIOLA: +About your years, my lord. + +DUKE ORSINO: +Too old by heaven: let still the woman take +An elder than herself: so wears she to him, +So sways she level in her husband's heart: +For, boy, however we do praise ourselves, +Our fancies are more giddy and unfirm, +More longing, wavering, sooner lost and worn, +Than women's are. + +VIOLA: +I think it well, my lord. + +DUKE ORSINO: +Then let thy love be younger than thyself, +Or thy affection cannot hold the bent; +For women are as roses, whose fair flower +Being once display'd, doth fall that very hour. + +VIOLA: +And so they are: alas, that they are so; +To die, even when they to perfection grow! + +DUKE ORSINO: +O, fellow, come, the song we had last night. +Mark it, Cesario, it is old and plain; +The spinsters and the knitters in the sun +And the free maids that weave their thread with bones +Do use to chant it: it is silly sooth, +And dallies with the innocence of love, +Like the old age. + +Clown: +Are you ready, sir? + +DUKE ORSINO: +Ay; prithee, sing. + +Clown: +Come away, come away, death, +And in sad cypress let me be laid; +Fly away, fly away breath; +I am slain by a fair cruel maid. +My shroud of white, stuck all with yew, +O, prepare it! +My part of death, no one so true +Did share it. +Not a flower, not a flower sweet +On my black coffin let there be strown; +Not a friend, not a friend greet +My poor corpse, where my bones shall be thrown: +A thousand thousand sighs to save, +Lay me, O, where +Sad true lover never find my grave, +To weep there! + +DUKE ORSINO: +There's for thy pains. + +Clown: +No pains, sir: I take pleasure in singing, sir. + +DUKE ORSINO: +I'll pay thy pleasure then. + +Clown: +Truly, sir, and pleasure will be paid, one time or another. + +DUKE ORSINO: +Give me now leave to leave thee. + +Clown: +Now, the melancholy god protect thee; and the +tailor make thy doublet of changeable taffeta, for +thy mind is a very opal. I would have men of such +constancy put to sea, that their business might be +every thing and their intent every where; for that's +it that always makes a good voyage of nothing. Farewell. + +DUKE ORSINO: +Let all the rest give place. +Once more, Cesario, +Get thee to yond same sovereign cruelty: +Tell her, my love, more noble than the world, +Prizes not quantity of dirty lands; +The parts that fortune hath bestow'd upon her, +Tell her, I hold as giddily as fortune; +But 'tis that miracle and queen of gems +That nature pranks her in attracts my soul. + +VIOLA: +But if she cannot love you, sir? + +DUKE ORSINO: +I cannot be so answer'd. + +VIOLA: +Sooth, but you must. +Say that some lady, as perhaps there is, +Hath for your love a great a pang of heart +As you have for Olivia: you cannot love her; +You tell her so; must she not then be answer'd? + +DUKE ORSINO: +There is no woman's sides +Can bide the beating of so strong a passion +As love doth give my heart; no woman's heart +So big, to hold so much; they lack retention +Alas, their love may be call'd appetite, +No motion of the liver, but the palate, +That suffer surfeit, cloyment and revolt; +But mine is all as hungry as the sea, +And can digest as much: make no compare +Between that love a woman can bear me +And that I owe Olivia. + +VIOLA: +Ay, but I know-- + +DUKE ORSINO: +What dost thou know? + +VIOLA: +Too well what love women to men may owe: +In faith, they are as true of heart as we. +My father had a daughter loved a man, +As it might be, perhaps, were I a woman, +I should your lordship. + +DUKE ORSINO: +And what's her history? + +VIOLA: +A blank, my lord. She never told her love, +But let concealment, like a worm i' the bud, +Feed on her damask cheek: she pined in thought, +And with a green and yellow melancholy +She sat like patience on a monument, +Smiling at grief. Was not this love indeed? +We men may say more, swear more: but indeed +Our shows are more than will; for still we prove +Much in our vows, but little in our love. + +DUKE ORSINO: +But died thy sister of her love, my boy? + +VIOLA: +I am all the daughters of my father's house, +And all the brothers too: and yet I know not. +Sir, shall I to this lady? + +DUKE ORSINO: +Ay, that's the theme. +To her in haste; give her this jewel; say, +My love can give no place, bide no denay. + +SIR TOBY BELCH: +Come thy ways, Signior Fabian. + +FABIAN: +Nay, I'll come: if I lose a scruple of this sport, +let me be boiled to death with melancholy. + +SIR TOBY BELCH: +Wouldst thou not be glad to have the niggardly +rascally sheep-biter come by some notable shame? + +FABIAN: +I would exult, man: you know, he brought me out o' +favour with my lady about a bear-baiting here. + +SIR TOBY BELCH: +To anger him we'll have the bear again; and we will +fool him black and blue: shall we not, Sir Andrew? + +SIR ANDREW: +An we do not, it is pity of our lives. + +SIR TOBY BELCH: +Here comes the little villain. +How now, my metal of India! + +MARIA: +Get ye all three into the box-tree: Malvolio's +coming down this walk: he has been yonder i' the +sun practising behavior to his own shadow this half +hour: observe him, for the love of mockery; for I +know this letter will make a contemplative idiot of +him. Close, in the name of jesting! Lie thou there, +for here comes the trout that must be caught with tickling. + +MALVOLIO: +'Tis but fortune; all is fortune. Maria once told +me she did affect me: and I have heard herself come +thus near, that, should she fancy, it should be one +of my complexion. Besides, she uses me with a more +exalted respect than any one else that follows her. +What should I think on't? + +SIR TOBY BELCH: +Here's an overweening rogue! + +FABIAN: +O, peace! Contemplation makes a rare turkey-cock +of him: how he jets under his advanced plumes! + +SIR ANDREW: +'Slight, I could so beat the rogue! + +SIR TOBY BELCH: +Peace, I say. + +MALVOLIO: +To be Count Malvolio! + +SIR TOBY BELCH: +Ah, rogue! + +SIR ANDREW: +Pistol him, pistol him. + +SIR TOBY BELCH: +Peace, peace! + +MALVOLIO: +There is example for't; the lady of the Strachy +married the yeoman of the wardrobe. + +SIR ANDREW: +Fie on him, Jezebel! + +FABIAN: +O, peace! now he's deeply in: look how +imagination blows him. + +MALVOLIO: +Having been three months married to her, sitting in +my state,-- + +SIR TOBY BELCH: +O, for a stone-bow, to hit him in the eye! + +MALVOLIO: +Calling my officers about me, in my branched velvet +gown; having come from a day-bed, where I have left +Olivia sleeping,-- + +SIR TOBY BELCH: +Fire and brimstone! + +FABIAN: +O, peace, peace! + +MALVOLIO: +And then to have the humour of state; and after a +demure travel of regard, telling them I know my +place as I would they should do theirs, to for my +kinsman Toby,-- + +SIR TOBY BELCH: +Bolts and shackles! + +FABIAN: +O peace, peace, peace! now, now. + +MALVOLIO: +Seven of my people, with an obedient start, make +out for him: I frown the while; and perchance wind +up watch, or play with my--some rich jewel. Toby +approaches; courtesies there to me,-- + +SIR TOBY BELCH: +Shall this fellow live? + +FABIAN: +Though our silence be drawn from us with cars, yet peace. + +MALVOLIO: +I extend my hand to him thus, quenching my familiar +smile with an austere regard of control,-- + +SIR TOBY BELCH: +And does not Toby take you a blow o' the lips then? + +MALVOLIO: +Saying, 'Cousin Toby, my fortunes having cast me on +your niece give me this prerogative of speech,'-- + +SIR TOBY BELCH: +What, what? + +MALVOLIO: +'You must amend your drunkenness.' + +SIR TOBY BELCH: +Out, scab! + +FABIAN: +Nay, patience, or we break the sinews of our plot. + +MALVOLIO: +'Besides, you waste the treasure of your time with +a foolish knight,'-- + +SIR ANDREW: +That's me, I warrant you. + +MALVOLIO: +'One Sir Andrew,'-- + +SIR ANDREW: +I knew 'twas I; for many do call me fool. + +MALVOLIO: +What employment have we here? + +FABIAN: +Now is the woodcock near the gin. + +SIR TOBY BELCH: +O, peace! and the spirit of humour intimate reading +aloud to him! + +MALVOLIO: +By my life, this is my lady's hand these be her +very C's, her U's and her T's and thus makes she her +great P's. It is, in contempt of question, her hand. + +SIR ANDREW: +Her C's, her U's and her T's: why that? + +MALVOLIO: + +FABIAN: +This wins him, liver and all. + +MALVOLIO: + +SIR TOBY BELCH: +Marry, hang thee, brock! + +MALVOLIO: + +FABIAN: +A fustian riddle! + +SIR TOBY BELCH: +Excellent wench, say I. + +MALVOLIO: +'M, O, A, I, doth sway my life.' Nay, but first, let +me see, let me see, let me see. + +FABIAN: +What dish o' poison has she dressed him! + +SIR TOBY BELCH: +And with what wing the staniel cheques at it! + +MALVOLIO: +'I may command where I adore.' Why, she may command +me: I serve her; she is my lady. Why, this is +evident to any formal capacity; there is no +obstruction in this: and the end,--what should +that alphabetical position portend? If I could make +that resemble something in me,--Softly! M, O, A, +I,-- + +SIR TOBY BELCH: +O, ay, make up that: he is now at a cold scent. + +FABIAN: +Sowter will cry upon't for all this, though it be as +rank as a fox. + +MALVOLIO: +M,--Malvolio; M,--why, that begins my name. + +FABIAN: +Did not I say he would work it out? the cur is +excellent at faults. + +MALVOLIO: +M,--but then there is no consonancy in the sequel; +that suffers under probation A should follow but O does. + +FABIAN: +And O shall end, I hope. + +SIR TOBY BELCH: +Ay, or I'll cudgel him, and make him cry O! + +MALVOLIO: +And then I comes behind. + +FABIAN: +Ay, an you had any eye behind you, you might see +more detraction at your heels than fortunes before +you. + +MALVOLIO: +M, O, A, I; this simulation is not as the former: and +yet, to crush this a little, it would bow to me, for +every one of these letters are in my name. Soft! +here follows prose. +'If this fall into thy hand, revolve. In my stars I +am above thee; but be not afraid of greatness: some +are born great, some achieve greatness, and some +have greatness thrust upon 'em. Thy Fates open +their hands; let thy blood and spirit embrace them; +and, to inure thyself to what thou art like to be, +cast thy humble slough and appear fresh. Be +opposite with a kinsman, surly with servants; let +thy tongue tang arguments of state; put thyself into +the trick of singularity: she thus advises thee +that sighs for thee. Remember who commended thy +yellow stockings, and wished to see thee ever +cross-gartered: I say, remember. Go to, thou art +made, if thou desirest to be so; if not, let me see +thee a steward still, the fellow of servants, and +not worthy to touch Fortune's fingers. Farewell. +She that would alter services with thee, +THE FORTUNATE-UNHAPPY.' +Daylight and champaign discovers not more: this is +open. I will be proud, I will read politic authors, +I will baffle Sir Toby, I will wash off gross +acquaintance, I will be point-devise the very man. +I do not now fool myself, to let imagination jade +me; for every reason excites to this, that my lady +loves me. She did commend my yellow stockings of +late, she did praise my leg being cross-gartered; +and in this she manifests herself to my love, and +with a kind of injunction drives me to these habits +of her liking. I thank my stars I am happy. I will +be strange, stout, in yellow stockings, and +cross-gartered, even with the swiftness of putting +on. Jove and my stars be praised! Here is yet a +postscript. +'Thou canst not choose but know who I am. If thou +entertainest my love, let it appear in thy smiling; +thy smiles become thee well; therefore in my +presence still smile, dear my sweet, I prithee.' +Jove, I thank thee: I will smile; I will do +everything that thou wilt have me. + +FABIAN: +I will not give my part of this sport for a pension +of thousands to be paid from the Sophy. + +SIR TOBY BELCH: +I could marry this wench for this device. + +SIR ANDREW: +So could I too. + +SIR TOBY BELCH: +And ask no other dowry with her but such another jest. + +SIR ANDREW: +Nor I neither. + +FABIAN: +Here comes my noble gull-catcher. + +SIR TOBY BELCH: +Wilt thou set thy foot o' my neck? + +SIR ANDREW: +Or o' mine either? + +SIR TOBY BELCH: +Shall I play my freedom at traytrip, and become thy +bond-slave? + +SIR ANDREW: +I' faith, or I either? + +SIR TOBY BELCH: +Why, thou hast put him in such a dream, that when +the image of it leaves him he must run mad. + +MARIA: +Nay, but say true; does it work upon him? + +SIR TOBY BELCH: +Like aqua-vitae with a midwife. + +MARIA: +If you will then see the fruits of the sport, mark +his first approach before my lady: he will come to +her in yellow stockings, and 'tis a colour she +abhors, and cross-gartered, a fashion she detests; +and he will smile upon her, which will now be so +unsuitable to her disposition, being addicted to a +melancholy as she is, that it cannot but turn him +into a notable contempt. If you will see it, follow +me. + +SIR TOBY BELCH: +To the gates of Tartar, thou most excellent devil of wit! + +SIR ANDREW: +I'll make one too. + +VIOLA: +Save thee, friend, and thy music: dost thou live by +thy tabour? + +Clown: +No, sir, I live by the church. + +VIOLA: +Art thou a churchman? + +Clown: +No such matter, sir: I do live by the church; for +I do live at my house, and my house doth stand by +the church. + +VIOLA: +So thou mayst say, the king lies by a beggar, if a +beggar dwell near him; or, the church stands by thy +tabour, if thy tabour stand by the church. + +Clown: +You have said, sir. To see this age! A sentence is +but a cheveril glove to a good wit: how quickly the +wrong side may be turned outward! + +VIOLA: +Nay, that's certain; they that dally nicely with +words may quickly make them wanton. + +Clown: +I would, therefore, my sister had had no name, sir. + +VIOLA: +Why, man? + +Clown: +Why, sir, her name's a word; and to dally with that +word might make my sister wanton. But indeed words +are very rascals since bonds disgraced them. + +VIOLA: +Thy reason, man? + +Clown: +Troth, sir, I can yield you none without words; and +words are grown so false, I am loath to prove +reason with them. + +VIOLA: +I warrant thou art a merry fellow and carest for nothing. + +Clown: +Not so, sir, I do care for something; but in my +conscience, sir, I do not care for you: if that be +to care for nothing, sir, I would it would make you invisible. + +VIOLA: +Art not thou the Lady Olivia's fool? + +Clown: +No, indeed, sir; the Lady Olivia has no folly: she +will keep no fool, sir, till she be married; and +fools are as like husbands as pilchards are to +herrings; the husband's the bigger: I am indeed not +her fool, but her corrupter of words. + +VIOLA: +I saw thee late at the Count Orsino's. + +Clown: +Foolery, sir, does walk about the orb like the sun, +it shines every where. I would be sorry, sir, but +the fool should be as oft with your master as with +my mistress: I think I saw your wisdom there. + +VIOLA: +Nay, an thou pass upon me, I'll no more with thee. +Hold, there's expenses for thee. + +Clown: +Now Jove, in his next commodity of hair, send thee a beard! + +VIOLA: +By my troth, I'll tell thee, I am almost sick for +one; +though I would not have it grow on my chin. Is thy +lady within? + +Clown: +Would not a pair of these have bred, sir? + +VIOLA: +Yes, being kept together and put to use. + +Clown: +I would play Lord Pandarus of Phrygia, sir, to bring +a Cressida to this Troilus. + +VIOLA: +I understand you, sir; 'tis well begged. + +Clown: +The matter, I hope, is not great, sir, begging but +a beggar: Cressida was a beggar. My lady is +within, sir. I will construe to them whence you +come; who you are and what you would are out of my +welkin, I might say 'element,' but the word is over-worn. + +VIOLA: +This fellow is wise enough to play the fool; +And to do that well craves a kind of wit: +He must observe their mood on whom he jests, +The quality of persons, and the time, +And, like the haggard, cheque at every feather +That comes before his eye. This is a practise +As full of labour as a wise man's art +For folly that he wisely shows is fit; +But wise men, folly-fall'n, quite taint their wit. + +SIR TOBY BELCH: +Save you, gentleman. + +VIOLA: +And you, sir. + +SIR ANDREW: +Dieu vous garde, monsieur. + +VIOLA: +Et vous aussi; votre serviteur. + +SIR ANDREW: +I hope, sir, you are; and I am yours. + +SIR TOBY BELCH: +Will you encounter the house? my niece is desirous +you should enter, if your trade be to her. + +VIOLA: +I am bound to your niece, sir; I mean, she is the +list of my voyage. + +SIR TOBY BELCH: +Taste your legs, sir; put them to motion. + +VIOLA: +My legs do better understand me, sir, than I +understand what you mean by bidding me taste my legs. + +SIR TOBY BELCH: +I mean, to go, sir, to enter. + +VIOLA: +I will answer you with gait and entrance. But we +are prevented. +Most excellent accomplished lady, the heavens rain +odours on you! + +SIR ANDREW: +That youth's a rare courtier: 'Rain odours;' well. + +VIOLA: +My matter hath no voice, to your own most pregnant +and vouchsafed ear. + +SIR ANDREW: +'Odours,' 'pregnant' and 'vouchsafed:' I'll get 'em +all three all ready. + +OLIVIA: +Let the garden door be shut, and leave me to my hearing. +Give me your hand, sir. + +VIOLA: +My duty, madam, and most humble service. + +OLIVIA: +What is your name? + +VIOLA: +Cesario is your servant's name, fair princess. + +OLIVIA: +My servant, sir! 'Twas never merry world +Since lowly feigning was call'd compliment: +You're servant to the Count Orsino, youth. + +VIOLA: +And he is yours, and his must needs be yours: +Your servant's servant is your servant, madam. + +OLIVIA: +For him, I think not on him: for his thoughts, +Would they were blanks, rather than fill'd with me! + +VIOLA: +Madam, I come to whet your gentle thoughts +On his behalf. + +OLIVIA: +O, by your leave, I pray you, +I bade you never speak again of him: +But, would you undertake another suit, +I had rather hear you to solicit that +Than music from the spheres. + +VIOLA: +Dear lady,-- + +OLIVIA: +Give me leave, beseech you. I did send, +After the last enchantment you did here, +A ring in chase of you: so did I abuse +Myself, my servant and, I fear me, you: +Under your hard construction must I sit, +To force that on you, in a shameful cunning, +Which you knew none of yours: what might you think? +Have you not set mine honour at the stake +And baited it with all the unmuzzled thoughts +That tyrannous heart can think? To one of your receiving +Enough is shown: a cypress, not a bosom, +Hideth my heart. So, let me hear you speak. + +VIOLA: +I pity you. + +OLIVIA: +That's a degree to love. + +VIOLA: +No, not a grize; for 'tis a vulgar proof, +That very oft we pity enemies. + +OLIVIA: +Why, then, methinks 'tis time to smile again. +O, world, how apt the poor are to be proud! +If one should be a prey, how much the better +To fall before the lion than the wolf! +The clock upbraids me with the waste of time. +Be not afraid, good youth, I will not have you: +And yet, when wit and youth is come to harvest, +Your were is alike to reap a proper man: +There lies your way, due west. + +VIOLA: +Then westward-ho! Grace and good disposition +Attend your ladyship! +You'll nothing, madam, to my lord by me? + +OLIVIA: +Stay: +I prithee, tell me what thou thinkest of me. + +VIOLA: +That you do think you are not what you are. + +OLIVIA: +If I think so, I think the same of you. + +VIOLA: +Then think you right: I am not what I am. + +OLIVIA: +I would you were as I would have you be! + +VIOLA: +Would it be better, madam, than I am? +I wish it might, for now I am your fool. + +OLIVIA: +O, what a deal of scorn looks beautiful +In the contempt and anger of his lip! +A murderous guilt shows not itself more soon +Than love that would seem hid: love's night is noon. +Cesario, by the roses of the spring, +By maidhood, honour, truth and every thing, +I love thee so, that, maugre all thy pride, +Nor wit nor reason can my passion hide. +Do not extort thy reasons from this clause, +For that I woo, thou therefore hast no cause, +But rather reason thus with reason fetter, +Love sought is good, but given unsought better. + +VIOLA: +By innocence I swear, and by my youth +I have one heart, one bosom and one truth, +And that no woman has; nor never none +Shall mistress be of it, save I alone. +And so adieu, good madam: never more +Will I my master's tears to you deplore. + +OLIVIA: +Yet come again; for thou perhaps mayst move +That heart, which now abhors, to like his love. + +SIR ANDREW: +No, faith, I'll not stay a jot longer. + +SIR TOBY BELCH: +Thy reason, dear venom, give thy reason. + +FABIAN: +You must needs yield your reason, Sir Andrew. + +SIR ANDREW: +Marry, I saw your niece do more favours to the +count's serving-man than ever she bestowed upon me; +I saw't i' the orchard. + +SIR TOBY BELCH: +Did she see thee the while, old boy? tell me that. + +SIR ANDREW: +As plain as I see you now. + +FABIAN: +This was a great argument of love in her toward you. + +SIR ANDREW: +'Slight, will you make an ass o' me? + +FABIAN: +I will prove it legitimate, sir, upon the oaths of +judgment and reason. + +SIR TOBY BELCH: +And they have been grand-jury-men since before Noah +was a sailor. + +FABIAN: +She did show favour to the youth in your sight only +to exasperate you, to awake your dormouse valour, to +put fire in your heart and brimstone in your liver. +You should then have accosted her; and with some +excellent jests, fire-new from the mint, you should +have banged the youth into dumbness. This was +looked for at your hand, and this was balked: the +double gilt of this opportunity you let time wash +off, and you are now sailed into the north of my +lady's opinion; where you will hang like an icicle +on a Dutchman's beard, unless you do redeem it by +some laudable attempt either of valour or policy. + +SIR ANDREW: +An't be any way, it must be with valour; for policy +I hate: I had as lief be a Brownist as a +politician. + +SIR TOBY BELCH: +Why, then, build me thy fortunes upon the basis of +valour. Challenge me the count's youth to fight +with him; hurt him in eleven places: my niece shall +take note of it; and assure thyself, there is no +love-broker in the world can more prevail in man's +commendation with woman than report of valour. + +FABIAN: +There is no way but this, Sir Andrew. + +SIR ANDREW: +Will either of you bear me a challenge to him? + +SIR TOBY BELCH: +Go, write it in a martial hand; be curst and brief; +it is no matter how witty, so it be eloquent and fun +of invention: taunt him with the licence of ink: +if thou thou'st him some thrice, it shall not be +amiss; and as many lies as will lie in thy sheet of +paper, although the sheet were big enough for the +bed of Ware in England, set 'em down: go, about it. +Let there be gall enough in thy ink, though thou +write with a goose-pen, no matter: about it. + +SIR ANDREW: +Where shall I find you? + +SIR TOBY BELCH: +We'll call thee at the cubiculo: go. + +FABIAN: +This is a dear manikin to you, Sir Toby. + +SIR TOBY BELCH: +I have been dear to him, lad, some two thousand +strong, or so. + +FABIAN: +We shall have a rare letter from him: but you'll +not deliver't? + +SIR TOBY BELCH: +Never trust me, then; and by all means stir on the +youth to an answer. I think oxen and wainropes +cannot hale them together. For Andrew, if he were +opened, and you find so much blood in his liver as +will clog the foot of a flea, I'll eat the rest of +the anatomy. + +FABIAN: +And his opposite, the youth, bears in his visage no +great presage of cruelty. + +SIR TOBY BELCH: +Look, where the youngest wren of nine comes. + +MARIA: +If you desire the spleen, and will laugh yourself +into stitches, follow me. Yond gull Malvolio is +turned heathen, a very renegado; for there is no +Christian, that means to be saved by believing +rightly, can ever believe such impossible passages +of grossness. He's in yellow stockings. + +SIR TOBY BELCH: +And cross-gartered? + +MARIA: +Most villanously; like a pedant that keeps a school +i' the church. I have dogged him, like his +murderer. He does obey every point of the letter +that I dropped to betray him: he does smile his +face into more lines than is in the new map with the +augmentation of the Indies: you have not seen such +a thing as 'tis. I can hardly forbear hurling things +at him. I know my lady will strike him: if she do, +he'll smile and take't for a great favour. + +SIR TOBY BELCH: +Come, bring us, bring us where he is. + +SEBASTIAN: +I would not by my will have troubled you; +But, since you make your pleasure of your pains, +I will no further chide you. + +ANTONIO: +I could not stay behind you: my desire, +More sharp than filed steel, did spur me forth; +And not all love to see you, though so much +As might have drawn one to a longer voyage, +But jealousy what might befall your travel, +Being skilless in these parts; which to a stranger, +Unguided and unfriended, often prove +Rough and unhospitable: my willing love, +The rather by these arguments of fear, +Set forth in your pursuit. + +SEBASTIAN: +My kind Antonio, +I can no other answer make but thanks, +And thanks; and ever oft good turns +Are shuffled off with such uncurrent pay: +But, were my worth as is my conscience firm, +You should find better dealing. What's to do? +Shall we go see the reliques of this town? + +ANTONIO: +To-morrow, sir: best first go see your lodging. + +SEBASTIAN: +I am not weary, and 'tis long to night: +I pray you, let us satisfy our eyes +With the memorials and the things of fame +That do renown this city. + +ANTONIO: +Would you'ld pardon me; +I do not without danger walk these streets: +Once, in a sea-fight, 'gainst the count his galleys +I did some service; of such note indeed, +That were I ta'en here it would scarce be answer'd. + +SEBASTIAN: +Belike you slew great number of his people. + +ANTONIO: +The offence is not of such a bloody nature; +Albeit the quality of the time and quarrel +Might well have given us bloody argument. +It might have since been answer'd in repaying +What we took from them; which, for traffic's sake, +Most of our city did: only myself stood out; +For which, if I be lapsed in this place, +I shall pay dear. + +SEBASTIAN: +Do not then walk too open. + +ANTONIO: +It doth not fit me. Hold, sir, here's my purse. +In the south suburbs, at the Elephant, +Is best to lodge: I will bespeak our diet, +Whiles you beguile the time and feed your knowledge +With viewing of the town: there shall you have me. + +SEBASTIAN: +Why I your purse? + +ANTONIO: +Haply your eye shall light upon some toy +You have desire to purchase; and your store, +I think, is not for idle markets, sir. + +SEBASTIAN: +I'll be your purse-bearer and leave you +For an hour. + +ANTONIO: +To the Elephant. + +SEBASTIAN: +I do remember. + +OLIVIA: +I have sent after him: he says he'll come; +How shall I feast him? what bestow of him? +For youth is bought more oft than begg'd or borrow'd. +I speak too loud. +Where is Malvolio? he is sad and civil, +And suits well for a servant with my fortunes: +Where is Malvolio? + +MARIA: +He's coming, madam; but in very strange manner. He +is, sure, possessed, madam. + +OLIVIA: +Why, what's the matter? does he rave? + +MARIA: +No. madam, he does nothing but smile: your +ladyship were best to have some guard about you, if +he come; for, sure, the man is tainted in's wits. + +OLIVIA: +Go call him hither. +I am as mad as he, +If sad and merry madness equal be. +How now, Malvolio! + +MALVOLIO: +Sweet lady, ho, ho. + +OLIVIA: +Smilest thou? +I sent for thee upon a sad occasion. + +MALVOLIO: +Sad, lady! I could be sad: this does make some +obstruction in the blood, this cross-gartering; but +what of that? if it please the eye of one, it is +with me as the very true sonnet is, 'Please one, and +please all.' + +OLIVIA: +Why, how dost thou, man? what is the matter with thee? + +MALVOLIO: +Not black in my mind, though yellow in my legs. It +did come to his hands, and commands shall be +executed: I think we do know the sweet Roman hand. + +OLIVIA: +Wilt thou go to bed, Malvolio? + +MALVOLIO: +To bed! ay, sweet-heart, and I'll come to thee. + +OLIVIA: +God comfort thee! Why dost thou smile so and kiss +thy hand so oft? + +MARIA: +How do you, Malvolio? + +MALVOLIO: +At your request! yes; nightingales answer daws. + +MARIA: +Why appear you with this ridiculous boldness before my lady? + +MALVOLIO: +'Be not afraid of greatness:' 'twas well writ. + +OLIVIA: +What meanest thou by that, Malvolio? + +MALVOLIO: +'Some are born great,'-- + +OLIVIA: +Ha! + +MALVOLIO: +'Some achieve greatness,'-- + +OLIVIA: +What sayest thou? + +MALVOLIO: +'And some have greatness thrust upon them.' + +OLIVIA: +Heaven restore thee! + +MALVOLIO: +'Remember who commended thy yellow stockings,'-- + +OLIVIA: +Thy yellow stockings! + +MALVOLIO: +'And wished to see thee cross-gartered.' + +OLIVIA: +Cross-gartered! + +MALVOLIO: +'Go to thou art made, if thou desirest to be so;'-- + +OLIVIA: +Am I made? + +MALVOLIO: +'If not, let me see thee a servant still.' + +OLIVIA: +Why, this is very midsummer madness. + +Servant: +Madam, the young gentleman of the Count Orsino's is +returned: I could hardly entreat him back: he +attends your ladyship's pleasure. + +OLIVIA: +I'll come to him. +Good Maria, let this fellow be looked to. Where's +my cousin Toby? Let some of my people have a special +care of him: I would not have him miscarry for the +half of my dowry. + +MALVOLIO: +O, ho! do you come near me now? no worse man than +Sir Toby to look to me! This concurs directly with +the letter: she sends him on purpose, that I may +appear stubborn to him; for she incites me to that +in the letter. 'Cast thy humble slough,' says she; +'be opposite with a kinsman, surly with servants; +let thy tongue tang with arguments of state; put +thyself into the trick of singularity;' and +consequently sets down the manner how; as, a sad +face, a reverend carriage, a slow tongue, in the +habit of some sir of note, and so forth. I have +limed her; but it is Jove's doing, and Jove make me +thankful! And when she went away now, 'Let this +fellow be looked to:' fellow! not Malvolio, nor +after my degree, but fellow. Why, every thing +adheres together, that no dram of a scruple, no +scruple of a scruple, no obstacle, no incredulous +or unsafe circumstance--What can be said? Nothing +that can be can come between me and the full +prospect of my hopes. Well, Jove, not I, is the +doer of this, and he is to be thanked. + +SIR TOBY BELCH: +Which way is he, in the name of sanctity? If all +the devils of hell be drawn in little, and Legion +himself possessed him, yet I'll speak to him. + +FABIAN: +Here he is, here he is. How is't with you, sir? +how is't with you, man? + +MALVOLIO: +Go off; I discard you: let me enjoy my private: go +off. + +MARIA: +Lo, how hollow the fiend speaks within him! did not +I tell you? Sir Toby, my lady prays you to have a +care of him. + +MALVOLIO: +Ah, ha! does she so? + +SIR TOBY BELCH: +Go to, go to; peace, peace; we must deal gently +with him: let me alone. How do you, Malvolio? how +is't with you? What, man! defy the devil: +consider, he's an enemy to mankind. + +MALVOLIO: +Do you know what you say? + +MARIA: +La you, an you speak ill of the devil, how he takes +it at heart! Pray God, he be not bewitched! + +FABIAN: +Carry his water to the wise woman. + +MARIA: +Marry, and it shall be done to-morrow morning, if I +live. My lady would not lose him for more than I'll say. + +MALVOLIO: +How now, mistress! + +MARIA: +O Lord! + +SIR TOBY BELCH: +Prithee, hold thy peace; this is not the way: do +you not see you move him? let me alone with him. + +FABIAN: +No way but gentleness; gently, gently: the fiend is +rough, and will not be roughly used. + +SIR TOBY BELCH: +Why, how now, my bawcock! how dost thou, chuck? + +MALVOLIO: +Sir! + +SIR TOBY BELCH: +Ay, Biddy, come with me. What, man! 'tis not for +gravity to play at cherry-pit with Satan: hang +him, foul collier! + +MARIA: +Get him to say his prayers, good Sir Toby, get him to pray. + +MALVOLIO: +My prayers, minx! + +MARIA: +No, I warrant you, he will not hear of godliness. + +MALVOLIO: +Go, hang yourselves all! you are idle shallow +things: I am not of your element: you shall know +more hereafter. + +SIR TOBY BELCH: +Is't possible? + +FABIAN: +If this were played upon a stage now, I could +condemn it as an improbable fiction. + +SIR TOBY BELCH: +His very genius hath taken the infection of the device, man. + +MARIA: +Nay, pursue him now, lest the device take air and taint. + +FABIAN: +Why, we shall make him mad indeed. + +MARIA: +The house will be the quieter. + +SIR TOBY BELCH: +Come, we'll have him in a dark room and bound. My +niece is already in the belief that he's mad: we +may carry it thus, for our pleasure and his penance, +till our very pastime, tired out of breath, prompt +us to have mercy on him: at which time we will +bring the device to the bar and crown thee for a +finder of madmen. But see, but see. + +FABIAN: +More matter for a May morning. + +SIR ANDREW: +Here's the challenge, read it: warrant there's +vinegar and pepper in't. + +FABIAN: +Is't so saucy? + +SIR ANDREW: +Ay, is't, I warrant him: do but read. + +SIR TOBY BELCH: +Give me. +'Youth, whatsoever thou art, thou art but a scurvy fellow.' + +FABIAN: +Good, and valiant. + +SIR TOBY BELCH: + +FABIAN: +A good note; that keeps you from the blow of the law. + +SIR TOBY BELCH: + +FABIAN: +Very brief, and to exceeding good sense--less. + +SIR TOBY BELCH: + +FABIAN: +Good. + +SIR TOBY BELCH: + +FABIAN: +Still you keep o' the windy side of the law: good. + +SIR TOBY BELCH: + +MARIA: +You may have very fit occasion for't: he is now in +some commerce with my lady, and will by and by depart. + +SIR TOBY BELCH: +Go, Sir Andrew: scout me for him at the corner the +orchard like a bum-baily: so soon as ever thou seest +him, draw; and, as thou drawest swear horrible; for +it comes to pass oft that a terrible oath, with a +swaggering accent sharply twanged off, gives manhood +more approbation than ever proof itself would have +earned him. Away! + +SIR ANDREW: +Nay, let me alone for swearing. + +SIR TOBY BELCH: +Now will not I deliver his letter: for the behavior +of the young gentleman gives him out to be of good +capacity and breeding; his employment between his +lord and my niece confirms no less: therefore this +letter, being so excellently ignorant, will breed no +terror in the youth: he will find it comes from a +clodpole. But, sir, I will deliver his challenge by +word of mouth; set upon Aguecheek a notable report +of valour; and drive the gentleman, as I know his +youth will aptly receive it, into a most hideous +opinion of his rage, skill, fury and impetuosity. +This will so fright them both that they will kill +one another by the look, like cockatrices. + +FABIAN: +Here he comes with your niece: give them way till +he take leave, and presently after him. + +SIR TOBY BELCH: +I will meditate the while upon some horrid message +for a challenge. + +OLIVIA: +I have said too much unto a heart of stone +And laid mine honour too unchary out: +There's something in me that reproves my fault; +But such a headstrong potent fault it is, +That it but mocks reproof. + +VIOLA: +With the same 'havior that your passion bears +Goes on my master's grief. + +OLIVIA: +Here, wear this jewel for me, 'tis my picture; +Refuse it not; it hath no tongue to vex you; +And I beseech you come again to-morrow. +What shall you ask of me that I'll deny, +That honour saved may upon asking give? + +VIOLA: +Nothing but this; your true love for my master. + +OLIVIA: +How with mine honour may I give him that +Which I have given to you? + +VIOLA: +I will acquit you. + +OLIVIA: +Well, come again to-morrow: fare thee well: +A fiend like thee might bear my soul to hell. + +SIR TOBY BELCH: +Gentleman, God save thee. + +VIOLA: +And you, sir. + +SIR TOBY BELCH: +That defence thou hast, betake thee to't: of what +nature the wrongs are thou hast done him, I know +not; but thy intercepter, full of despite, bloody as +the hunter, attends thee at the orchard-end: +dismount thy tuck, be yare in thy preparation, for +thy assailant is quick, skilful and deadly. + +VIOLA: +You mistake, sir; I am sure no man hath any quarrel +to me: my remembrance is very free and clear from +any image of offence done to any man. + +SIR TOBY BELCH: +You'll find it otherwise, I assure you: therefore, +if you hold your life at any price, betake you to +your guard; for your opposite hath in him what +youth, strength, skill and wrath can furnish man withal. + +VIOLA: +I pray you, sir, what is he? + +SIR TOBY BELCH: +He is knight, dubbed with unhatched rapier and on +carpet consideration; but he is a devil in private +brawl: souls and bodies hath he divorced three; and +his incensement at this moment is so implacable, +that satisfaction can be none but by pangs of death +and sepulchre. Hob, nob, is his word; give't or take't. + +VIOLA: +I will return again into the house and desire some +conduct of the lady. I am no fighter. I have heard +of some kind of men that put quarrels purposely on +others, to taste their valour: belike this is a man +of that quirk. + +SIR TOBY BELCH: +Sir, no; his indignation derives itself out of a +very competent injury: therefore, get you on and +give him his desire. Back you shall not to the +house, unless you undertake that with me which with +as much safety you might answer him: therefore, on, +or strip your sword stark naked; for meddle you +must, that's certain, or forswear to wear iron about you. + +VIOLA: +This is as uncivil as strange. I beseech you, do me +this courteous office, as to know of the knight what +my offence to him is: it is something of my +negligence, nothing of my purpose. + +SIR TOBY BELCH: +I will do so. Signior Fabian, stay you by this +gentleman till my return. + +VIOLA: +Pray you, sir, do you know of this matter? + +FABIAN: +I know the knight is incensed against you, even to a +mortal arbitrement; but nothing of the circumstance more. + +VIOLA: +I beseech you, what manner of man is he? + +FABIAN: +Nothing of that wonderful promise, to read him by +his form, as you are like to find him in the proof +of his valour. He is, indeed, sir, the most skilful, +bloody and fatal opposite that you could possibly +have found in any part of Illyria. Will you walk +towards him? I will make your peace with him if I +can. + +VIOLA: +I shall be much bound to you for't: I am one that +had rather go with sir priest than sir knight: I +care not who knows so much of my mettle. + +SIR TOBY BELCH: +Why, man, he's a very devil; I have not seen such a +firago. I had a pass with him, rapier, scabbard and +all, and he gives me the stuck in with such a mortal +motion, that it is inevitable; and on the answer, he +pays you as surely as your feet hit the ground they +step on. They say he has been fencer to the Sophy. + +SIR ANDREW: +Pox on't, I'll not meddle with him. + +SIR TOBY BELCH: +Ay, but he will not now be pacified: Fabian can +scarce hold him yonder. + +SIR ANDREW: +Plague on't, an I thought he had been valiant and so +cunning in fence, I'ld have seen him damned ere I'ld +have challenged him. Let him let the matter slip, +and I'll give him my horse, grey Capilet. + +SIR TOBY BELCH: +I'll make the motion: stand here, make a good show +on't: this shall end without the perdition of souls. +Marry, I'll ride your horse as well as I ride you. +I have his horse to take up the quarrel: +I have persuaded him the youth's a devil. + +FABIAN: +He is as horribly conceited of him; and pants and +looks pale, as if a bear were at his heels. + +SIR TOBY BELCH: + +VIOLA: + +FABIAN: +Give ground, if you see him furious. + +SIR TOBY BELCH: +Come, Sir Andrew, there's no remedy; the gentleman +will, for his honour's sake, have one bout with you; +he cannot by the duello avoid it: but he has +promised me, as he is a gentleman and a soldier, he +will not hurt you. Come on; to't. + +SIR ANDREW: +Pray God, he keep his oath! + +VIOLA: +I do assure you, 'tis against my will. + +ANTONIO: +Put up your sword. If this young gentleman +Have done offence, I take the fault on me: +If you offend him, I for him defy you. + +SIR TOBY BELCH: +You, sir! why, what are you? + +ANTONIO: +One, sir, that for his love dares yet do more +Than you have heard him brag to you he will. + +SIR TOBY BELCH: +Nay, if you be an undertaker, I am for you. + +FABIAN: +O good Sir Toby, hold! here come the officers. + +SIR TOBY BELCH: +I'll be with you anon. + +VIOLA: +Pray, sir, put your sword up, if you please. + +SIR ANDREW: +Marry, will I, sir; and, for that I promised you, +I'll be as good as my word: he will bear you easily +and reins well. + +First Officer: +This is the man; do thy office. + +Second Officer: +Antonio, I arrest thee at the suit of Count Orsino. + +ANTONIO: +You do mistake me, sir. + +First Officer: +No, sir, no jot; I know your favour well, +Though now you have no sea-cap on your head. +Take him away: he knows I know him well. + +ANTONIO: +I must obey. +This comes with seeking you: +But there's no remedy; I shall answer it. +What will you do, now my necessity +Makes me to ask you for my purse? It grieves me +Much more for what I cannot do for you +Than what befalls myself. You stand amazed; +But be of comfort. + +Second Officer: +Come, sir, away. + +ANTONIO: +I must entreat of you some of that money. + +VIOLA: +What money, sir? +For the fair kindness you have show'd me here, +And, part, being prompted by your present trouble, +Out of my lean and low ability +I'll lend you something: my having is not much; +I'll make division of my present with you: +Hold, there's half my coffer. + +ANTONIO: +Will you deny me now? +Is't possible that my deserts to you +Can lack persuasion? Do not tempt my misery, +Lest that it make me so unsound a man +As to upbraid you with those kindnesses +That I have done for you. + +VIOLA: +I know of none; +Nor know I you by voice or any feature: +I hate ingratitude more in a man +Than lying, vainness, babbling, drunkenness, +Or any taint of vice whose strong corruption +Inhabits our frail blood. + +ANTONIO: +O heavens themselves! + +Second Officer: +Come, sir, I pray you, go. + +ANTONIO: +Let me speak a little. This youth that you see here +I snatch'd one half out of the jaws of death, +Relieved him with such sanctity of love, +And to his image, which methought did promise +Most venerable worth, did I devotion. + +First Officer: +What's that to us? The time goes by: away! + +ANTONIO: +But O how vile an idol proves this god +Thou hast, Sebastian, done good feature shame. +In nature there's no blemish but the mind; +None can be call'd deform'd but the unkind: +Virtue is beauty, but the beauteous evil +Are empty trunks o'erflourish'd by the devil. + +First Officer: +The man grows mad: away with him! Come, come, sir. + +ANTONIO: +Lead me on. + +VIOLA: +Methinks his words do from such passion fly, +That he believes himself: so do not I. +Prove true, imagination, O, prove true, +That I, dear brother, be now ta'en for you! + +SIR TOBY BELCH: +Come hither, knight; come hither, Fabian: we'll +whisper o'er a couplet or two of most sage saws. + +VIOLA: +He named Sebastian: I my brother know +Yet living in my glass; even such and so +In favour was my brother, and he went +Still in this fashion, colour, ornament, +For him I imitate: O, if it prove, +Tempests are kind and salt waves fresh in love. + +SIR TOBY BELCH: +A very dishonest paltry boy, and more a coward than +a hare: his dishonesty appears in leaving his +friend here in necessity and denying him; and for +his cowardship, ask Fabian. + +FABIAN: +A coward, a most devout coward, religious in it. + +SIR ANDREW: +'Slid, I'll after him again and beat him. + +SIR TOBY BELCH: +Do; cuff him soundly, but never draw thy sword. + +SIR ANDREW: +An I do not,-- + +FABIAN: +Come, let's see the event. + +SIR TOBY BELCH: +I dare lay any money 'twill be nothing yet. + +Clown: +Will you make me believe that I am not sent for you? + +SEBASTIAN: +Go to, go to, thou art a foolish fellow: +Let me be clear of thee. + +Clown: +Well held out, i' faith! No, I do not know you; nor +I am not sent to you by my lady, to bid you come +speak with her; nor your name is not Master Cesario; +nor this is not my nose neither. Nothing that is so is so. + +SEBASTIAN: +I prithee, vent thy folly somewhere else: Thou +know'st not me. + +Clown: +Vent my folly! he has heard that word of some +great man and now applies it to a fool. Vent my +folly! I am afraid this great lubber, the world, +will prove a cockney. I prithee now, ungird thy +strangeness and tell me what I shall vent to my +lady: shall I vent to her that thou art coming? + +SEBASTIAN: +I prithee, foolish Greek, depart from me: There's +money for thee: if you tarry longer, I shall give +worse payment. + +Clown: +By my troth, thou hast an open hand. These wise men +that give fools money get themselves a good +report--after fourteen years' purchase. + +SIR ANDREW: +Now, sir, have I met you again? there's for you. + +SEBASTIAN: +Why, there's for thee, and there, and there. Are all +the people mad? + +SIR TOBY BELCH: +Hold, sir, or I'll throw your dagger o'er the house. + +Clown: +This will I tell my lady straight: I would not be +in some of your coats for two pence. + +SIR TOBY BELCH: +Come on, sir; hold. + +SIR ANDREW: +Nay, let him alone: I'll go another way to work +with him; I'll have an action of battery against +him, if there be any law in Illyria: though I +struck him first, yet it's no matter for that. + +SEBASTIAN: +Let go thy hand. + +SIR TOBY BELCH: +Come, sir, I will not let you go. Come, my young +soldier, put up your iron: you are well fleshed; come on. + +SEBASTIAN: +I will be free from thee. What wouldst thou now? If +thou darest tempt me further, draw thy sword. + +SIR TOBY BELCH: +What, what? Nay, then I must have an ounce or two +of this malapert blood from you. + +OLIVIA: +Hold, Toby; on thy life I charge thee, hold! + +SIR TOBY BELCH: +Madam! + +OLIVIA: +Will it be ever thus? Ungracious wretch, +Fit for the mountains and the barbarous caves, +Where manners ne'er were preach'd! out of my sight! +Be not offended, dear Cesario. +Rudesby, be gone! +I prithee, gentle friend, +Let thy fair wisdom, not thy passion, sway +In this uncivil and thou unjust extent +Against thy peace. Go with me to my house, +And hear thou there how many fruitless pranks +This ruffian hath botch'd up, that thou thereby +Mayst smile at this: thou shalt not choose but go: +Do not deny. Beshrew his soul for me, +He started one poor heart of mine in thee. + +SEBASTIAN: +What relish is in this? how runs the stream? +Or I am mad, or else this is a dream: +Let fancy still my sense in Lethe steep; +If it be thus to dream, still let me sleep! + +OLIVIA: +Nay, come, I prithee; would thou'ldst be ruled by me! + +SEBASTIAN: +Madam, I will. + +OLIVIA: +O, say so, and so be! + +MARIA: +Nay, I prithee, put on this gown and this beard; +make him believe thou art Sir Topas the curate: do +it quickly; I'll call Sir Toby the whilst. + +Clown: +Well, I'll put it on, and I will dissemble myself +in't; and I would I were the first that ever +dissembled in such a gown. I am not tall enough to +become the function well, nor lean enough to be +thought a good student; but to be said an honest man +and a good housekeeper goes as fairly as to say a +careful man and a great scholar. The competitors enter. + +SIR TOBY BELCH: +Jove bless thee, master Parson. + +Clown: +Bonos dies, Sir Toby: for, as the old hermit of +Prague, that never saw pen and ink, very wittily +said to a niece of King Gorboduc, 'That that is is;' +so I, being Master Parson, am Master Parson; for, +what is 'that' but 'that,' and 'is' but 'is'? + +SIR TOBY BELCH: +To him, Sir Topas. + +Clown: +What, ho, I say! peace in this prison! + +SIR TOBY BELCH: +The knave counterfeits well; a good knave. + +MALVOLIO: + +Clown: +Sir Topas the curate, who comes to visit Malvolio +the lunatic. + +MALVOLIO: +Sir Topas, Sir Topas, good Sir Topas, go to my lady. + +Clown: +Out, hyperbolical fiend! how vexest thou this man! +talkest thou nothing but of ladies? + +SIR TOBY BELCH: +Well said, Master Parson. + +MALVOLIO: +Sir Topas, never was man thus wronged: good Sir +Topas, do not think I am mad: they have laid me +here in hideous darkness. + +Clown: +Fie, thou dishonest Satan! I call thee by the most +modest terms; for I am one of those gentle ones +that will use the devil himself with courtesy: +sayest thou that house is dark? + +MALVOLIO: +As hell, Sir Topas. + +Clown: +Why it hath bay windows transparent as barricadoes, +and the clearstores toward the south north are as +lustrous as ebony; and yet complainest thou of +obstruction? + +MALVOLIO: +I am not mad, Sir Topas: I say to you, this house is dark. + +Clown: +Madman, thou errest: I say, there is no darkness +but ignorance; in which thou art more puzzled than +the Egyptians in their fog. + +MALVOLIO: +I say, this house is as dark as ignorance, though +ignorance were as dark as hell; and I say, there +was never man thus abused. I am no more mad than you +are: make the trial of it in any constant question. + +Clown: +What is the opinion of Pythagoras concerning wild fowl? + +MALVOLIO: +That the soul of our grandam might haply inhabit a bird. + +Clown: +What thinkest thou of his opinion? + +MALVOLIO: +I think nobly of the soul, and no way approve his opinion. + +Clown: +Fare thee well. Remain thou still in darkness: +thou shalt hold the opinion of Pythagoras ere I will +allow of thy wits, and fear to kill a woodcock, lest +thou dispossess the soul of thy grandam. Fare thee well. + +MALVOLIO: +Sir Topas, Sir Topas! + +SIR TOBY BELCH: +My most exquisite Sir Topas! + +Clown: +Nay, I am for all waters. + +MARIA: +Thou mightst have done this without thy beard and +gown: he sees thee not. + +SIR TOBY BELCH: +To him in thine own voice, and bring me word how +thou findest him: I would we were well rid of this +knavery. If he may be conveniently delivered, I +would he were, for I am now so far in offence with +my niece that I cannot pursue with any safety this +sport to the upshot. Come by and by to my chamber. + +Clown: + +MALVOLIO: +Fool! + +Clown: +'My lady is unkind, perdy.' + +MALVOLIO: +Fool! + +Clown: +'Alas, why is she so?' + +MALVOLIO: +Fool, I say! + +Clown: +'She loves another'--Who calls, ha? + +MALVOLIO: +Good fool, as ever thou wilt deserve well at my +hand, help me to a candle, and pen, ink and paper: +as I am a gentleman, I will live to be thankful to +thee for't. + +Clown: +Master Malvolio? + +MALVOLIO: +Ay, good fool. + +Clown: +Alas, sir, how fell you besides your five wits? + +MALVOLIO: +Fool, there was never a man so notoriously abused: I +am as well in my wits, fool, as thou art. + +Clown: +But as well? then you are mad indeed, if you be no +better in your wits than a fool. + +MALVOLIO: +They have here propertied me; keep me in darkness, +send ministers to me, asses, and do all they can to +face me out of my wits. + +Clown: +Advise you what you say; the minister is here. +Malvolio, Malvolio, thy wits the heavens restore! +endeavour thyself to sleep, and leave thy vain +bibble babble. + +MALVOLIO: +Sir Topas! + +Clown: +Maintain no words with him, good fellow. Who, I, +sir? not I, sir. God be wi' you, good Sir Topas. +Merry, amen. I will, sir, I will. + +MALVOLIO: +Fool, fool, fool, I say! + +Clown: +Alas, sir, be patient. What say you sir? I am +shent for speaking to you. + +MALVOLIO: +Good fool, help me to some light and some paper: I +tell thee, I am as well in my wits as any man in Illyria. + +Clown: +Well-a-day that you were, sir + +MALVOLIO: +By this hand, I am. Good fool, some ink, paper and +light; and convey what I will set down to my lady: +it shall advantage thee more than ever the bearing +of letter did. + +Clown: +I will help you to't. But tell me true, are you +not mad indeed? or do you but counterfeit? + +MALVOLIO: +Believe me, I am not; I tell thee true. + +Clown: +Nay, I'll ne'er believe a madman till I see his +brains. I will fetch you light and paper and ink. + +MALVOLIO: +Fool, I'll requite it in the highest degree: I +prithee, be gone. + +Clown: + +SEBASTIAN: +This is the air; that is the glorious sun; +This pearl she gave me, I do feel't and see't; +And though 'tis wonder that enwraps me thus, +Yet 'tis not madness. Where's Antonio, then? +I could not find him at the Elephant: +Yet there he was; and there I found this credit, +That he did range the town to seek me out. +His counsel now might do me golden service; +For though my soul disputes well with my sense, +That this may be some error, but no madness, +Yet doth this accident and flood of fortune +So far exceed all instance, all discourse, +That I am ready to distrust mine eyes +And wrangle with my reason that persuades me +To any other trust but that I am mad +Or else the lady's mad; yet, if 'twere so, +She could not sway her house, command her followers, +Take and give back affairs and their dispatch +With such a smooth, discreet and stable bearing +As I perceive she does: there's something in't +That is deceiveable. But here the lady comes. + +OLIVIA: +Blame not this haste of mine. If you mean well, +Now go with me and with this holy man +Into the chantry by: there, before him, +And underneath that consecrated roof, +Plight me the full assurance of your faith; +That my most jealous and too doubtful soul +May live at peace. He shall conceal it +Whiles you are willing it shall come to note, +What time we will our celebration keep +According to my birth. What do you say? + +SEBASTIAN: +I'll follow this good man, and go with you; +And, having sworn truth, ever will be true. + +OLIVIA: +Then lead the way, good father; and heavens so shine, +That they may fairly note this act of mine! + +FABIAN: +Now, as thou lovest me, let me see his letter. + +Clown: +Good Master Fabian, grant me another request. + +FABIAN: +Any thing. + +Clown: +Do not desire to see this letter. + +FABIAN: +This is, to give a dog, and in recompense desire my +dog again. + +DUKE ORSINO: +Belong you to the Lady Olivia, friends? + +Clown: +Ay, sir; we are some of her trappings. + +DUKE ORSINO: +I know thee well; how dost thou, my good fellow? + +Clown: +Truly, sir, the better for my foes and the worse +for my friends. + +DUKE ORSINO: +Just the contrary; the better for thy friends. + +Clown: +No, sir, the worse. + +DUKE ORSINO: +How can that be? + +Clown: +Marry, sir, they praise me and make an ass of me; +now my foes tell me plainly I am an ass: so that by +my foes, sir I profit in the knowledge of myself, +and by my friends, I am abused: so that, +conclusions to be as kisses, if your four negatives +make your two affirmatives why then, the worse for +my friends and the better for my foes. + +DUKE ORSINO: +Why, this is excellent. + +Clown: +By my troth, sir, no; though it please you to be +one of my friends. + +DUKE ORSINO: +Thou shalt not be the worse for me: there's gold. + +Clown: +But that it would be double-dealing, sir, I would +you could make it another. + +DUKE ORSINO: +O, you give me ill counsel. + +Clown: +Put your grace in your pocket, sir, for this once, +and let your flesh and blood obey it. + +DUKE ORSINO: +Well, I will be so much a sinner, to be a +double-dealer: there's another. + +Clown: +Primo, secundo, tertio, is a good play; and the old +saying is, the third pays for all: the triplex, +sir, is a good tripping measure; or the bells of +Saint Bennet, sir, may put you in mind; one, two, three. + +DUKE ORSINO: +You can fool no more money out of me at this throw: +if you will let your lady know I am here to speak +with her, and bring her along with you, it may awake +my bounty further. + +Clown: +Marry, sir, lullaby to your bounty till I come +again. I go, sir; but I would not have you to think +that my desire of having is the sin of covetousness: +but, as you say, sir, let your bounty take a nap, I +will awake it anon. + +VIOLA: +Here comes the man, sir, that did rescue me. + +DUKE ORSINO: +That face of his I do remember well; +Yet, when I saw it last, it was besmear'd +As black as Vulcan in the smoke of war: +A bawbling vessel was he captain of, +For shallow draught and bulk unprizable; +With which such scathful grapple did he make +With the most noble bottom of our fleet, +That very envy and the tongue of loss +Cried fame and honour on him. What's the matter? + +First Officer: +Orsino, this is that Antonio +That took the Phoenix and her fraught from Candy; +And this is he that did the Tiger board, +When your young nephew Titus lost his leg: +Here in the streets, desperate of shame and state, +In private brabble did we apprehend him. + +VIOLA: +He did me kindness, sir, drew on my side; +But in conclusion put strange speech upon me: +I know not what 'twas but distraction. + +DUKE ORSINO: +Notable pirate! thou salt-water thief! +What foolish boldness brought thee to their mercies, +Whom thou, in terms so bloody and so dear, +Hast made thine enemies? + +ANTONIO: +Orsino, noble sir, +Be pleased that I shake off these names you give me: +Antonio never yet was thief or pirate, +Though I confess, on base and ground enough, +Orsino's enemy. A witchcraft drew me hither: +That most ingrateful boy there by your side, +From the rude sea's enraged and foamy mouth +Did I redeem; a wreck past hope he was: +His life I gave him and did thereto add +My love, without retention or restraint, +All his in dedication; for his sake +Did I expose myself, pure for his love, +Into the danger of this adverse town; +Drew to defend him when he was beset: +Where being apprehended, his false cunning, +Not meaning to partake with me in danger, +Taught him to face me out of his acquaintance, +And grew a twenty years removed thing +While one would wink; denied me mine own purse, +Which I had recommended to his use +Not half an hour before. + +VIOLA: +How can this be? + +DUKE ORSINO: +When came he to this town? + +ANTONIO: +To-day, my lord; and for three months before, +No interim, not a minute's vacancy, +Both day and night did we keep company. + +DUKE ORSINO: +Here comes the countess: now heaven walks on earth. +But for thee, fellow; fellow, thy words are madness: +Three months this youth hath tended upon me; +But more of that anon. Take him aside. + +OLIVIA: +What would my lord, but that he may not have, +Wherein Olivia may seem serviceable? +Cesario, you do not keep promise with me. + +VIOLA: +Madam! + +DUKE ORSINO: +Gracious Olivia,-- + +OLIVIA: +What do you say, Cesario? Good my lord,-- + +VIOLA: +My lord would speak; my duty hushes me. + +OLIVIA: +If it be aught to the old tune, my lord, +It is as fat and fulsome to mine ear +As howling after music. + +DUKE ORSINO: +Still so cruel? + +OLIVIA: +Still so constant, lord. + +DUKE ORSINO: +What, to perverseness? you uncivil lady, +To whose ingrate and unauspicious altars +My soul the faithfull'st offerings hath breathed out +That e'er devotion tender'd! What shall I do? + +OLIVIA: +Even what it please my lord, that shall become him. + +DUKE ORSINO: +Why should I not, had I the heart to do it, +Like to the Egyptian thief at point of death, +Kill what I love?--a savage jealousy +That sometimes savours nobly. But hear me this: +Since you to non-regardance cast my faith, +And that I partly know the instrument +That screws me from my true place in your favour, +Live you the marble-breasted tyrant still; +But this your minion, whom I know you love, +And whom, by heaven I swear, I tender dearly, +Him will I tear out of that cruel eye, +Where he sits crowned in his master's spite. +Come, boy, with me; my thoughts are ripe in mischief: +I'll sacrifice the lamb that I do love, +To spite a raven's heart within a dove. + +VIOLA: +And I, most jocund, apt and willingly, +To do you rest, a thousand deaths would die. + +OLIVIA: +Where goes Cesario? + +VIOLA: +After him I love +More than I love these eyes, more than my life, +More, by all mores, than e'er I shall love wife. +If I do feign, you witnesses above +Punish my life for tainting of my love! + +OLIVIA: +Ay me, detested! how am I beguiled! + +VIOLA: +Who does beguile you? who does do you wrong? + +OLIVIA: +Hast thou forgot thyself? is it so long? +Call forth the holy father. + +DUKE ORSINO: +Come, away! + +OLIVIA: +Whither, my lord? Cesario, husband, stay. + +DUKE ORSINO: +Husband! + +OLIVIA: +Ay, husband: can he that deny? + +DUKE ORSINO: +Her husband, sirrah! + +VIOLA: +No, my lord, not I. + +OLIVIA: +Alas, it is the baseness of thy fear +That makes thee strangle thy propriety: +Fear not, Cesario; take thy fortunes up; +Be that thou know'st thou art, and then thou art +As great as that thou fear'st. +O, welcome, father! +Father, I charge thee, by thy reverence, +Here to unfold, though lately we intended +To keep in darkness what occasion now +Reveals before 'tis ripe, what thou dost know +Hath newly pass'd between this youth and me. + +Priest: +A contract of eternal bond of love, +Confirm'd by mutual joinder of your hands, +Attested by the holy close of lips, +Strengthen'd by interchangement of your rings; +And all the ceremony of this compact +Seal'd in my function, by my testimony: +Since when, my watch hath told me, toward my grave +I have travell'd but two hours. + +DUKE ORSINO: +O thou dissembling cub! what wilt thou be +When time hath sow'd a grizzle on thy case? +Or will not else thy craft so quickly grow, +That thine own trip shall be thine overthrow? +Farewell, and take her; but direct thy feet +Where thou and I henceforth may never meet. + +VIOLA: +My lord, I do protest-- + +OLIVIA: +O, do not swear! +Hold little faith, though thou hast too much fear. + +SIR ANDREW: +For the love of God, a surgeon! Send one presently +to Sir Toby. + +OLIVIA: +What's the matter? + +SIR ANDREW: +He has broke my head across and has given Sir Toby +a bloody coxcomb too: for the love of God, your +help! I had rather than forty pound I were at home. + +OLIVIA: +Who has done this, Sir Andrew? + +SIR ANDREW: +The count's gentleman, one Cesario: we took him for +a coward, but he's the very devil incardinate. + +DUKE ORSINO: +My gentleman, Cesario? + +SIR ANDREW: +'Od's lifelings, here he is! You broke my head for +nothing; and that that I did, I was set on to do't +by Sir Toby. + +VIOLA: +Why do you speak to me? I never hurt you: +You drew your sword upon me without cause; +But I bespoke you fair, and hurt you not. + +SIR ANDREW: +If a bloody coxcomb be a hurt, you have hurt me: I +think you set nothing by a bloody coxcomb. +Here comes Sir Toby halting; you shall hear more: +but if he had not been in drink, he would have +tickled you othergates than he did. + +DUKE ORSINO: +How now, gentleman! how is't with you? + +SIR TOBY BELCH: +That's all one: has hurt me, and there's the end +on't. Sot, didst see Dick surgeon, sot? + +Clown: +O, he's drunk, Sir Toby, an hour agone; his eyes +were set at eight i' the morning. + +SIR TOBY BELCH: +Then he's a rogue, and a passy measures panyn: I +hate a drunken rogue. + +OLIVIA: +Away with him! Who hath made this havoc with them? + +SIR ANDREW: +I'll help you, Sir Toby, because well be dressed together. + +SIR TOBY BELCH: +Will you help? an ass-head and a coxcomb and a +knave, a thin-faced knave, a gull! + +OLIVIA: +Get him to bed, and let his hurt be look'd to. + +SEBASTIAN: +I am sorry, madam, I have hurt your kinsman: +But, had it been the brother of my blood, +I must have done no less with wit and safety. +You throw a strange regard upon me, and by that +I do perceive it hath offended you: +Pardon me, sweet one, even for the vows +We made each other but so late ago. + +DUKE ORSINO: +One face, one voice, one habit, and two persons, +A natural perspective, that is and is not! + +SEBASTIAN: +Antonio, O my dear Antonio! +How have the hours rack'd and tortured me, +Since I have lost thee! + +ANTONIO: +Sebastian are you? + +SEBASTIAN: +Fear'st thou that, Antonio? + +ANTONIO: +How have you made division of yourself? +An apple, cleft in two, is not more twin +Than these two creatures. Which is Sebastian? + +OLIVIA: +Most wonderful! + +SEBASTIAN: +Do I stand there? I never had a brother; +Nor can there be that deity in my nature, +Of here and every where. I had a sister, +Whom the blind waves and surges have devour'd. +Of charity, what kin are you to me? +What countryman? what name? what parentage? + +VIOLA: +Of Messaline: Sebastian was my father; +Such a Sebastian was my brother too, +So went he suited to his watery tomb: +If spirits can assume both form and suit +You come to fright us. + +SEBASTIAN: +A spirit I am indeed; +But am in that dimension grossly clad +Which from the womb I did participate. +Were you a woman, as the rest goes even, +I should my tears let fall upon your cheek, +And say 'Thrice-welcome, drowned Viola!' + +VIOLA: +My father had a mole upon his brow. + +SEBASTIAN: +And so had mine. + +VIOLA: +And died that day when Viola from her birth +Had number'd thirteen years. + +SEBASTIAN: +O, that record is lively in my soul! +He finished indeed his mortal act +That day that made my sister thirteen years. + +VIOLA: +If nothing lets to make us happy both +But this my masculine usurp'd attire, +Do not embrace me till each circumstance +Of place, time, fortune, do cohere and jump +That I am Viola: which to confirm, +I'll bring you to a captain in this town, +Where lie my maiden weeds; by whose gentle help +I was preserved to serve this noble count. +All the occurrence of my fortune since +Hath been between this lady and this lord. + +SEBASTIAN: + +DUKE ORSINO: +Be not amazed; right noble is his blood. +If this be so, as yet the glass seems true, +I shall have share in this most happy wreck. +Boy, thou hast said to me a thousand times +Thou never shouldst love woman like to me. + +VIOLA: +And all those sayings will I overswear; +And those swearings keep as true in soul +As doth that orbed continent the fire +That severs day from night. + +DUKE ORSINO: +Give me thy hand; +And let me see thee in thy woman's weeds. + +VIOLA: +The captain that did bring me first on shore +Hath my maid's garments: he upon some action +Is now in durance, at Malvolio's suit, +A gentleman, and follower of my lady's. + +OLIVIA: +He shall enlarge him: fetch Malvolio hither: +And yet, alas, now I remember me, +They say, poor gentleman, he's much distract. +A most extracting frenzy of mine own +From my remembrance clearly banish'd his. +How does he, sirrah? + +Clown: +Truly, madam, he holds Belzebub at the staves's end as +well as a man in his case may do: has here writ a +letter to you; I should have given't you to-day +morning, but as a madman's epistles are no gospels, +so it skills not much when they are delivered. + +OLIVIA: +Open't, and read it. + +Clown: +Look then to be well edified when the fool delivers +the madman. +'By the Lord, madam,'-- + +OLIVIA: +How now! art thou mad? + +Clown: +No, madam, I do but read madness: an your ladyship +will have it as it ought to be, you must allow Vox. + +OLIVIA: +Prithee, read i' thy right wits. + +Clown: +So I do, madonna; but to read his right wits is to +read thus: therefore perpend, my princess, and give ear. + +OLIVIA: +Read it you, sirrah. + +FABIAN: + +OLIVIA: +Did he write this? + +Clown: +Ay, madam. + +DUKE ORSINO: +This savours not much of distraction. + +OLIVIA: +See him deliver'd, Fabian; bring him hither. +My lord so please you, these things further +thought on, +To think me as well a sister as a wife, +One day shall crown the alliance on't, so please you, +Here at my house and at my proper cost. + +DUKE ORSINO: +Madam, I am most apt to embrace your offer. +Your master quits you; and for your service done him, +So much against the mettle of your sex, +So far beneath your soft and tender breeding, +And since you call'd me master for so long, +Here is my hand: you shall from this time be +Your master's mistress. + +OLIVIA: +A sister! you are she. + +DUKE ORSINO: +Is this the madman? + +OLIVIA: +Ay, my lord, this same. +How now, Malvolio! + +MALVOLIO: +Madam, you have done me wrong, +Notorious wrong. + +OLIVIA: +Have I, Malvolio? no. + +MALVOLIO: +Lady, you have. Pray you, peruse that letter. +You must not now deny it is your hand: +Write from it, if you can, in hand or phrase; +Or say 'tis not your seal, nor your invention: +You can say none of this: well, grant it then +And tell me, in the modesty of honour, +Why you have given me such clear lights of favour, +Bade me come smiling and cross-garter'd to you, +To put on yellow stockings and to frown +Upon Sir Toby and the lighter people; +And, acting this in an obedient hope, +Why have you suffer'd me to be imprison'd, +Kept in a dark house, visited by the priest, +And made the most notorious geck and gull +That e'er invention play'd on? tell me why. + +OLIVIA: +Alas, Malvolio, this is not my writing, +Though, I confess, much like the character +But out of question 'tis Maria's hand. +And now I do bethink me, it was she +First told me thou wast mad; then camest in smiling, +And in such forms which here were presupposed +Upon thee in the letter. Prithee, be content: +This practise hath most shrewdly pass'd upon thee; +But when we know the grounds and authors of it, +Thou shalt be both the plaintiff and the judge +Of thine own cause. + +FABIAN: +Good madam, hear me speak, +And let no quarrel nor no brawl to come +Taint the condition of this present hour, +Which I have wonder'd at. In hope it shall not, +Most freely I confess, myself and Toby +Set this device against Malvolio here, +Upon some stubborn and uncourteous parts +We had conceived against him: Maria writ +The letter at Sir Toby's great importance; +In recompense whereof he hath married her. +How with a sportful malice it was follow'd, +May rather pluck on laughter than revenge; +If that the injuries be justly weigh'd +That have on both sides pass'd. + +OLIVIA: +Alas, poor fool, how have they baffled thee! + +Clown: +Why, 'some are born great, some achieve greatness, +and some have greatness thrown upon them.' I was +one, sir, in this interlude; one Sir Topas, sir; but +that's all one. 'By the Lord, fool, I am not mad.' +But do you remember? 'Madam, why laugh you at such +a barren rascal? an you smile not, he's gagged:' +and thus the whirligig of time brings in his revenges. + +MALVOLIO: +I'll be revenged on the whole pack of you. + +OLIVIA: +He hath been most notoriously abused. + +DUKE ORSINO: +Pursue him and entreat him to a peace: +He hath not told us of the captain yet: +When that is known and golden time convents, +A solemn combination shall be made +Of our dear souls. Meantime, sweet sister, +We will not part from hence. Cesario, come; +For so you shall be, while you are a man; +But when in other habits you are seen, +Orsino's mistress and his fancy's queen. + +Clown: + +KING JOHN: +Now, say, Chatillon, what would France with us? + +CHATILLON: +Thus, after greeting, speaks the King of France +In my behavior to the majesty, +The borrow'd majesty, of England here. + +QUEEN ELINOR: +A strange beginning: 'borrow'd majesty!' + +KING JOHN: +Silence, good mother; hear the embassy. + +CHATILLON: +Philip of France, in right and true behalf +Of thy deceased brother Geffrey's son, +Arthur Plantagenet, lays most lawful claim +To this fair island and the territories, +To Ireland, Poictiers, Anjou, Touraine, Maine, +Desiring thee to lay aside the sword +Which sways usurpingly these several titles, +And put these same into young Arthur's hand, +Thy nephew and right royal sovereign. + +KING JOHN: +What follows if we disallow of this? + +CHATILLON: +The proud control of fierce and bloody war, +To enforce these rights so forcibly withheld. + +KING JOHN: +Here have we war for war and blood for blood, +Controlment for controlment: so answer France. + +CHATILLON: +Then take my king's defiance from my mouth, +The farthest limit of my embassy. + +KING JOHN: +Bear mine to him, and so depart in peace: +Be thou as lightning in the eyes of France; +For ere thou canst report I will be there, +The thunder of my cannon shall be heard: +So hence! Be thou the trumpet of our wrath +And sullen presage of your own decay. +An honourable conduct let him have: +Pembroke, look to 't. Farewell, Chatillon. + +QUEEN ELINOR: +What now, my son! have I not ever said +How that ambitious Constance would not cease +Till she had kindled France and all the world, +Upon the right and party of her son? +This might have been prevented and made whole +With very easy arguments of love, +Which now the manage of two kingdoms must +With fearful bloody issue arbitrate. + +KING JOHN: +Our strong possession and our right for us. + +QUEEN ELINOR: +Your strong possession much more than your right, +Or else it must go wrong with you and me: +So much my conscience whispers in your ear, +Which none but heaven and you and I shall hear. + +ESSEX: +My liege, here is the strangest controversy +Come from country to be judged by you, +That e'er I heard: shall I produce the men? + +KING JOHN: +Let them approach. +Our abbeys and our priories shall pay +This expedition's charge. +What men are you? + +BASTARD: +Your faithful subject I, a gentleman +Born in Northamptonshire and eldest son, +As I suppose, to Robert Faulconbridge, +A soldier, by the honour-giving hand +Of Coeur-de-lion knighted in the field. + +KING JOHN: +What art thou? + +ROBERT: +The son and heir to that same Faulconbridge. + +KING JOHN: +Is that the elder, and art thou the heir? +You came not of one mother then, it seems. + +BASTARD: +Most certain of one mother, mighty king; +That is well known; and, as I think, one father: +But for the certain knowledge of that truth +I put you o'er to heaven and to my mother: +Of that I doubt, as all men's children may. + +QUEEN ELINOR: +Out on thee, rude man! thou dost shame thy mother +And wound her honour with this diffidence. + +BASTARD: +I, madam? no, I have no reason for it; +That is my brother's plea and none of mine; +The which if he can prove, a' pops me out +At least from fair five hundred pound a year: +Heaven guard my mother's honour and my land! + +KING JOHN: +A good blunt fellow. Why, being younger born, +Doth he lay claim to thine inheritance? + +BASTARD: +I know not why, except to get the land. +But once he slander'd me with bastardy: +But whether I be as true begot or no, +That still I lay upon my mother's head, +But that I am as well begot, my liege,-- +Fair fall the bones that took the pains for me!-- +Compare our faces and be judge yourself. +If old sir Robert did beget us both +And were our father and this son like him, +O old sir Robert, father, on my knee +I give heaven thanks I was not like to thee! + +KING JOHN: +Why, what a madcap hath heaven lent us here! + +QUEEN ELINOR: +He hath a trick of Coeur-de-lion's face; +The accent of his tongue affecteth him. +Do you not read some tokens of my son +In the large composition of this man? + +KING JOHN: +Mine eye hath well examined his parts +And finds them perfect Richard. Sirrah, speak, +What doth move you to claim your brother's land? + +BASTARD: +Because he hath a half-face, like my father. +With half that face would he have all my land: +A half-faced groat five hundred pound a year! + +ROBERT: +My gracious liege, when that my father lived, +Your brother did employ my father much,-- + +BASTARD: +Well, sir, by this you cannot get my land: +Your tale must be how he employ'd my mother. + +ROBERT: +And once dispatch'd him in an embassy +To Germany, there with the emperor +To treat of high affairs touching that time. +The advantage of his absence took the king +And in the mean time sojourn'd at my father's; +Where how he did prevail I shame to speak, +But truth is truth: large lengths of seas and shores +Between my father and my mother lay, +As I have heard my father speak himself, +When this same lusty gentleman was got. +Upon his death-bed he by will bequeath'd +His lands to me, and took it on his death +That this my mother's son was none of his; +And if he were, he came into the world +Full fourteen weeks before the course of time. +Then, good my liege, let me have what is mine, +My father's land, as was my father's will. + +KING JOHN: +Sirrah, your brother is legitimate; +Your father's wife did after wedlock bear him, +And if she did play false, the fault was hers; +Which fault lies on the hazards of all husbands +That marry wives. Tell me, how if my brother, +Who, as you say, took pains to get this son, +Had of your father claim'd this son for his? +In sooth, good friend, your father might have kept +This calf bred from his cow from all the world; +In sooth he might; then, if he were my brother's, +My brother might not claim him; nor your father, +Being none of his, refuse him: this concludes; +My mother's son did get your father's heir; +Your father's heir must have your father's land. + +ROBERT: +Shall then my father's will be of no force +To dispossess that child which is not his? + +BASTARD: +Of no more force to dispossess me, sir, +Than was his will to get me, as I think. + +QUEEN ELINOR: +Whether hadst thou rather be a Faulconbridge +And like thy brother, to enjoy thy land, +Or the reputed son of Coeur-de-lion, +Lord of thy presence and no land beside? + +BASTARD: +Madam, an if my brother had my shape, +And I had his, sir Robert's his, like him; +And if my legs were two such riding-rods, +My arms such eel-skins stuff'd, my face so thin +That in mine ear I durst not stick a rose +Lest men should say 'Look, where three-farthings goes!' +And, to his shape, were heir to all this land, +Would I might never stir from off this place, +I would give it every foot to have this face; +I would not be sir Nob in any case. + +QUEEN ELINOR: +I like thee well: wilt thou forsake thy fortune, +Bequeath thy land to him and follow me? +I am a soldier and now bound to France. + +BASTARD: +Brother, take you my land, I'll take my chance. +Your face hath got five hundred pound a year, +Yet sell your face for five pence and 'tis dear. +Madam, I'll follow you unto the death. + +QUEEN ELINOR: +Nay, I would have you go before me thither. + +BASTARD: +Our country manners give our betters way. + +KING JOHN: +What is thy name? + +BASTARD: +Philip, my liege, so is my name begun, +Philip, good old sir Robert's wife's eldest son. + +KING JOHN: +From henceforth bear his name whose form thou bear'st: +Kneel thou down Philip, but rise more great, +Arise sir Richard and Plantagenet. + +BASTARD: +Brother by the mother's side, give me your hand: +My father gave me honour, yours gave land. +Now blessed by the hour, by night or day, +When I was got, sir Robert was away! + +QUEEN ELINOR: +The very spirit of Plantagenet! +I am thy grandam, Richard; call me so. + +BASTARD: +Madam, by chance but not by truth; what though? +Something about, a little from the right, +In at the window, or else o'er the hatch: +Who dares not stir by day must walk by night, +And have is have, however men do catch: +Near or far off, well won is still well shot, +And I am I, howe'er I was begot. + +KING JOHN: +Go, Faulconbridge: now hast thou thy desire; +A landless knight makes thee a landed squire. +Come, madam, and come, Richard, we must speed +For France, for France, for it is more than need. + +BASTARD: +Brother, adieu: good fortune come to thee! +For thou wast got i' the way of honesty. +A foot of honour better than I was; +But many a many foot of land the worse. +Well, now can I make any Joan a lady. +'Good den, sir Richard!'--'God-a-mercy, fellow!'-- +And if his name be George, I'll call him Peter; +For new-made honour doth forget men's names; +'Tis too respective and too sociable +For your conversion. Now your traveller, +He and his toothpick at my worship's mess, +And when my knightly stomach is sufficed, +Why then I suck my teeth and catechise +My picked man of countries: 'My dear sir,' +Thus, leaning on mine elbow, I begin, +'I shall beseech you'--that is question now; +And then comes answer like an Absey book: +'O sir,' says answer, 'at your best command; +At your employment; at your service, sir;' +'No, sir,' says question, 'I, sweet sir, at yours:' +And so, ere answer knows what question would, +Saving in dialogue of compliment, +And talking of the Alps and Apennines, +The Pyrenean and the river Po, +It draws toward supper in conclusion so. +But this is worshipful society +And fits the mounting spirit like myself, +For he is but a bastard to the time +That doth not smack of observation; +And so am I, whether I smack or no; +And not alone in habit and device, +Exterior form, outward accoutrement, +But from the inward motion to deliver +Sweet, sweet, sweet poison for the age's tooth: +Which, though I will not practise to deceive, +Yet, to avoid deceit, I mean to learn; +For it shall strew the footsteps of my rising. +But who comes in such haste in riding-robes? +What woman-post is this? hath she no husband +That will take pains to blow a horn before her? +O me! it is my mother. How now, good lady! +What brings you here to court so hastily? + +LADY FAULCONBRIDGE: +Where is that slave, thy brother? where is he, +That holds in chase mine honour up and down? + +BASTARD: +My brother Robert? old sir Robert's son? +Colbrand the giant, that same mighty man? +Is it sir Robert's son that you seek so? + +LADY FAULCONBRIDGE: +Sir Robert's son! Ay, thou unreverend boy, +Sir Robert's son: why scorn'st thou at sir Robert? +He is sir Robert's son, and so art thou. + +BASTARD: +James Gurney, wilt thou give us leave awhile? + +GURNEY: +Good leave, good Philip. + +BASTARD: +Philip! sparrow: James, +There's toys abroad: anon I'll tell thee more. +Madam, I was not old sir Robert's son: +Sir Robert might have eat his part in me +Upon Good-Friday and ne'er broke his fast: +Sir Robert could do well: marry, to confess, +Could he get me? Sir Robert could not do it: +We know his handiwork: therefore, good mother, +To whom am I beholding for these limbs? +Sir Robert never holp to make this leg. + +LADY FAULCONBRIDGE: +Hast thou conspired with thy brother too, +That for thine own gain shouldst defend mine honour? +What means this scorn, thou most untoward knave? + +BASTARD: +Knight, knight, good mother, Basilisco-like. +What! I am dubb'd! I have it on my shoulder. +But, mother, I am not sir Robert's son; +I have disclaim'd sir Robert and my land; +Legitimation, name and all is gone: +Then, good my mother, let me know my father; +Some proper man, I hope: who was it, mother? + +LADY FAULCONBRIDGE: +Hast thou denied thyself a Faulconbridge? + +BASTARD: +As faithfully as I deny the devil. + +LADY FAULCONBRIDGE: +King Richard Coeur-de-lion was thy father: +By long and vehement suit I was seduced +To make room for him in my husband's bed: +Heaven lay not my transgression to my charge! +Thou art the issue of my dear offence, +Which was so strongly urged past my defence. + +BASTARD: +Now, by this light, were I to get again, +Madam, I would not wish a better father. +Some sins do bear their privilege on earth, +And so doth yours; your fault was not your folly: +Needs must you lay your heart at his dispose, +Subjected tribute to commanding love, +Against whose fury and unmatched force +The aweless lion could not wage the fight, +Nor keep his princely heart from Richard's hand. +He that perforce robs lions of their hearts +May easily win a woman's. Ay, my mother, +With all my heart I thank thee for my father! +Who lives and dares but say thou didst not well +When I was got, I'll send his soul to hell. +Come, lady, I will show thee to my kin; +And they shall say, when Richard me begot, +If thou hadst said him nay, it had been sin: +Who says it was, he lies; I say 'twas not. + +LEWIS: +Before Angiers well met, brave Austria. +Arthur, that great forerunner of thy blood, +Richard, that robb'd the lion of his heart +And fought the holy wars in Palestine, +By this brave duke came early to his grave: +And for amends to his posterity, +At our importance hither is he come, +To spread his colours, boy, in thy behalf, +And to rebuke the usurpation +Of thy unnatural uncle, English John: +Embrace him, love him, give him welcome hither. + +ARTHUR: +God shall forgive you Coeur-de-lion's death +The rather that you give his offspring life, +Shadowing their right under your wings of war: +I give you welcome with a powerless hand, +But with a heart full of unstained love: +Welcome before the gates of Angiers, duke. + +LEWIS: +A noble boy! Who would not do thee right? + +AUSTRIA: +Upon thy cheek lay I this zealous kiss, +As seal to this indenture of my love, +That to my home I will no more return, +Till Angiers and the right thou hast in France, +Together with that pale, that white-faced shore, +Whose foot spurns back the ocean's roaring tides +And coops from other lands her islanders, +Even till that England, hedged in with the main, +That water-walled bulwark, still secure +And confident from foreign purposes, +Even till that utmost corner of the west +Salute thee for her king: till then, fair boy, +Will I not think of home, but follow arms. + +CONSTANCE: +O, take his mother's thanks, a widow's thanks, +Till your strong hand shall help to give him strength +To make a more requital to your love! + +AUSTRIA: +The peace of heaven is theirs that lift their swords +In such a just and charitable war. + +KING PHILIP: +Well then, to work: our cannon shall be bent +Against the brows of this resisting town. +Call for our chiefest men of discipline, +To cull the plots of best advantages: +We'll lay before this town our royal bones, +Wade to the market-place in Frenchmen's blood, +But we will make it subject to this boy. + +CONSTANCE: +Stay for an answer to your embassy, +Lest unadvised you stain your swords with blood: +My Lord Chatillon may from England bring, +That right in peace which here we urge in war, +And then we shall repent each drop of blood +That hot rash haste so indirectly shed. + +KING PHILIP: +A wonder, lady! lo, upon thy wish, +Our messenger Chatillon is arrived! +What England says, say briefly, gentle lord; +We coldly pause for thee; Chatillon, speak. + +CHATILLON: +Then turn your forces from this paltry siege +And stir them up against a mightier task. +England, impatient of your just demands, +Hath put himself in arms: the adverse winds, +Whose leisure I have stay'd, have given him time +To land his legions all as soon as I; +His marches are expedient to this town, +His forces strong, his soldiers confident. +With him along is come the mother-queen, +An Ate, stirring him to blood and strife; +With her her niece, the Lady Blanch of Spain; +With them a bastard of the king's deceased, +And all the unsettled humours of the land, +Rash, inconsiderate, fiery voluntaries, +With ladies' faces and fierce dragons' spleens, +Have sold their fortunes at their native homes, +Bearing their birthrights proudly on their backs, +To make hazard of new fortunes here: +In brief, a braver choice of dauntless spirits +Than now the English bottoms have waft o'er +Did nearer float upon the swelling tide, +To do offence and scath in Christendom. +The interruption of their churlish drums +Cuts off more circumstance: they are at hand, +To parley or to fight; therefore prepare. + +KING PHILIP: +How much unlook'd for is this expedition! + +AUSTRIA: +By how much unexpected, by so much +We must awake endavour for defence; +For courage mounteth with occasion: +Let them be welcome then: we are prepared. + +KING JOHN: +Peace be to France, if France in peace permit +Our just and lineal entrance to our own; +If not, bleed France, and peace ascend to heaven, +Whiles we, God's wrathful agent, do correct +Their proud contempt that beats His peace to heaven. + +KING PHILIP: +Peace be to England, if that war return +From France to England, there to live in peace. +England we love; and for that England's sake +With burden of our armour here we sweat. +This toil of ours should be a work of thine; +But thou from loving England art so far, +That thou hast under-wrought his lawful king +Cut off the sequence of posterity, +Out-faced infant state and done a rape +Upon the maiden virtue of the crown. +Look here upon thy brother Geffrey's face; +These eyes, these brows, were moulded out of his: +This little abstract doth contain that large +Which died in Geffrey, and the hand of time +Shall draw this brief into as huge a volume. +That Geffrey was thy elder brother born, +And this his son; England was Geffrey's right +And this is Geffrey's: in the name of God +How comes it then that thou art call'd a king, +When living blood doth in these temples beat, +Which owe the crown that thou o'ermasterest? + +KING JOHN: +From whom hast thou this great commission, France, +To draw my answer from thy articles? + +KING PHILIP: +From that supernal judge, that stirs good thoughts +In any breast of strong authority, +To look into the blots and stains of right: +That judge hath made me guardian to this boy: +Under whose warrant I impeach thy wrong +And by whose help I mean to chastise it. + +KING JOHN: +Alack, thou dost usurp authority. + +KING PHILIP: +Excuse; it is to beat usurping down. + +QUEEN ELINOR: +Who is it thou dost call usurper, France? + +CONSTANCE: +Let me make answer; thy usurping son. + +QUEEN ELINOR: +Out, insolent! thy bastard shall be king, +That thou mayst be a queen, and cheque the world! + +CONSTANCE: +My bed was ever to thy son as true +As thine was to thy husband; and this boy +Liker in feature to his father Geffrey +Than thou and John in manners; being as like +As rain to water, or devil to his dam. +My boy a bastard! By my soul, I think +His father never was so true begot: +It cannot be, an if thou wert his mother. + +QUEEN ELINOR: +There's a good mother, boy, that blots thy father. + +CONSTANCE: +There's a good grandam, boy, that would blot thee. + +AUSTRIA: +Peace! + +BASTARD: +Hear the crier. + +AUSTRIA: +What the devil art thou? + +BASTARD: +One that will play the devil, sir, with you, +An a' may catch your hide and you alone: +You are the hare of whom the proverb goes, +Whose valour plucks dead lions by the beard; +I'll smoke your skin-coat, an I catch you right; +Sirrah, look to't; i' faith, I will, i' faith. + +BLANCH: +O, well did he become that lion's robe +That did disrobe the lion of that robe! + +BASTARD: +It lies as sightly on the back of him +As great Alcides' shows upon an ass: +But, ass, I'll take that burthen from your back, +Or lay on that shall make your shoulders crack. + +AUSTRIA: +What craker is this same that deafs our ears +With this abundance of superfluous breath? + +KING PHILIP: +Lewis, determine what we shall do straight. + +LEWIS: +Women and fools, break off your conference. +King John, this is the very sum of all; +England and Ireland, Anjou, Touraine, Maine, +In right of Arthur do I claim of thee: +Wilt thou resign them and lay down thy arms? + +KING JOHN: +My life as soon: I do defy thee, France. +Arthur of Bretagne, yield thee to my hand; +And out of my dear love I'll give thee more +Than e'er the coward hand of France can win: +Submit thee, boy. + +QUEEN ELINOR: +Come to thy grandam, child. + +CONSTANCE: +Do, child, go to it grandam, child: +Give grandam kingdom, and it grandam will +Give it a plum, a cherry, and a fig: +There's a good grandam. + +ARTHUR: +Good my mother, peace! +I would that I were low laid in my grave: +I am not worth this coil that's made for me. + +QUEEN ELINOR: +His mother shames him so, poor boy, he weeps. + +CONSTANCE: +Now shame upon you, whether she does or no! +His grandam's wrongs, and not his mother's shames, +Draws those heaven-moving pearls from his poor eyes, +Which heaven shall take in nature of a fee; +Ay, with these crystal beads heaven shall be bribed +To do him justice and revenge on you. + +QUEEN ELINOR: +Thou monstrous slanderer of heaven and earth! + +CONSTANCE: +Thou monstrous injurer of heaven and earth! +Call not me slanderer; thou and thine usurp +The dominations, royalties and rights +Of this oppressed boy: this is thy eld'st son's son, +Infortunate in nothing but in thee: +Thy sins are visited in this poor child; +The canon of the law is laid on him, +Being but the second generation +Removed from thy sin-conceiving womb. + +KING JOHN: +Bedlam, have done. + +CONSTANCE: +I have but this to say, +That he is not only plagued for her sin, +But God hath made her sin and her the plague +On this removed issue, plague for her +And with her plague; her sin his injury, +Her injury the beadle to her sin, +All punish'd in the person of this child, +And all for her; a plague upon her! + +QUEEN ELINOR: +Thou unadvised scold, I can produce +A will that bars the title of thy son. + +CONSTANCE: +Ay, who doubts that? a will! a wicked will: +A woman's will; a canker'd grandam's will! + +KING PHILIP: +Peace, lady! pause, or be more temperate: +It ill beseems this presence to cry aim +To these ill-tuned repetitions. +Some trumpet summon hither to the walls +These men of Angiers: let us hear them speak +Whose title they admit, Arthur's or John's. + +First Citizen: +Who is it that hath warn'd us to the walls? + +KING PHILIP: +'Tis France, for England. + +KING JOHN: +England, for itself. +You men of Angiers, and my loving subjects-- + +KING PHILIP: +You loving men of Angiers, Arthur's subjects, +Our trumpet call'd you to this gentle parle-- + +KING JOHN: +For our advantage; therefore hear us first. +These flags of France, that are advanced here +Before the eye and prospect of your town, +Have hither march'd to your endamagement: +The cannons have their bowels full of wrath, +And ready mounted are they to spit forth +Their iron indignation 'gainst your walls: +All preparation for a bloody siege +All merciless proceeding by these French +Confronts your city's eyes, your winking gates; +And but for our approach those sleeping stones, +That as a waist doth girdle you about, +By the compulsion of their ordinance +By this time from their fixed beds of lime +Had been dishabited, and wide havoc made +For bloody power to rush upon your peace. +But on the sight of us your lawful king, +Who painfully with much expedient march +Have brought a countercheque before your gates, +To save unscratch'd your city's threatened cheeks, +Behold, the French amazed vouchsafe a parle; +And now, instead of bullets wrapp'd in fire, +To make a shaking fever in your walls, +They shoot but calm words folded up in smoke, +To make a faithless error in your ears: +Which trust accordingly, kind citizens, +And let us in, your king, whose labour'd spirits, +Forwearied in this action of swift speed, +Crave harbourage within your city walls. + +KING PHILIP: +When I have said, make answer to us both. +Lo, in this right hand, whose protection +Is most divinely vow'd upon the right +Of him it holds, stands young Plantagenet, +Son to the elder brother of this man, +And king o'er him and all that he enjoys: +For this down-trodden equity, we tread +In warlike march these greens before your town, +Being no further enemy to you +Than the constraint of hospitable zeal +In the relief of this oppressed child +Religiously provokes. Be pleased then +To pay that duty which you truly owe +To that owes it, namely this young prince: +And then our arms, like to a muzzled bear, +Save in aspect, hath all offence seal'd up; +Our cannons' malice vainly shall be spent +Against the invulnerable clouds of heaven; +And with a blessed and unvex'd retire, +With unhack'd swords and helmets all unbruised, +We will bear home that lusty blood again +Which here we came to spout against your town, +And leave your children, wives and you in peace. +But if you fondly pass our proffer'd offer, +'Tis not the roundure of your old-faced walls +Can hide you from our messengers of war, +Though all these English and their discipline +Were harbour'd in their rude circumference. +Then tell us, shall your city call us lord, +In that behalf which we have challenged it? +Or shall we give the signal to our rage +And stalk in blood to our possession? + +First Citizen: +In brief, we are the king of England's subjects: +For him, and in his right, we hold this town. + +KING JOHN: +Acknowledge then the king, and let me in. + +First Citizen: +That can we not; but he that proves the king, +To him will we prove loyal: till that time +Have we ramm'd up our gates against the world. + +KING JOHN: +Doth not the crown of England prove the king? +And if not that, I bring you witnesses, +Twice fifteen thousand hearts of England's breed,-- + +BASTARD: +Bastards, and else. + +KING JOHN: +To verify our title with their lives. + +KING PHILIP: +As many and as well-born bloods as those,-- + +BASTARD: +Some bastards too. + +KING PHILIP: +Stand in his face to contradict his claim. + +First Citizen: +Till you compound whose right is worthiest, +We for the worthiest hold the right from both. + +KING JOHN: +Then God forgive the sin of all those souls +That to their everlasting residence, +Before the dew of evening fall, shall fleet, +In dreadful trial of our kingdom's king! + +KING PHILIP: +Amen, amen! Mount, chevaliers! to arms! + +BASTARD: +Saint George, that swinged the dragon, and e'er since +Sits on his horseback at mine hostess' door, +Teach us some fence! +Sirrah, were I at home, +At your den, sirrah, with your lioness +I would set an ox-head to your lion's hide, +And make a monster of you. + +AUSTRIA: +Peace! no more. + +BASTARD: +O tremble, for you hear the lion roar. + +KING JOHN: +Up higher to the plain; where we'll set forth +In best appointment all our regiments. + +BASTARD: +Speed then, to take advantage of the field. + +KING PHILIP: +It shall be so; and at the other hill +Command the rest to stand. God and our right! + +French Herald: +You men of Angiers, open wide your gates, +And let young Arthur, Duke of Bretagne, in, +Who by the hand of France this day hath made +Much work for tears in many an English mother, +Whose sons lie scattered on the bleeding ground; +Many a widow's husband grovelling lies, +Coldly embracing the discolour'd earth; +And victory, with little loss, doth play +Upon the dancing banners of the French, +Who are at hand, triumphantly display'd, +To enter conquerors and to proclaim +Arthur of Bretagne England's king and yours. + +English Herald: +Rejoice, you men of Angiers, ring your bells: +King John, your king and England's doth approach, +Commander of this hot malicious day: +Their armours, that march'd hence so silver-bright, +Hither return all gilt with Frenchmen's blood; +There stuck no plume in any English crest +That is removed by a staff of France; +Our colours do return in those same hands +That did display them when we first march'd forth; +And, like a troop of jolly huntsmen, come +Our lusty English, all with purpled hands, +Dyed in the dying slaughter of their foes: +Open your gates and gives the victors way. + +First Citizen: +Heralds, from off our towers we might behold, +From first to last, the onset and retire +Of both your armies; whose equality +By our best eyes cannot be censured: +Blood hath bought blood and blows have answered blows; +Strength match'd with strength, and power confronted power: +Both are alike; and both alike we like. +One must prove greatest: while they weigh so even, +We hold our town for neither, yet for both. + +KING JOHN: +France, hast thou yet more blood to cast away? +Say, shall the current of our right run on? +Whose passage, vex'd with thy impediment, +Shall leave his native channel and o'erswell +With course disturb'd even thy confining shores, +Unless thou let his silver water keep +A peaceful progress to the ocean. + +KING PHILIP: +England, thou hast not saved one drop of blood, +In this hot trial, more than we of France; +Rather, lost more. And by this hand I swear, +That sways the earth this climate overlooks, +Before we will lay down our just-borne arms, +We'll put thee down, 'gainst whom these arms we bear, +Or add a royal number to the dead, +Gracing the scroll that tells of this war's loss +With slaughter coupled to the name of kings. + +BASTARD: +Ha, majesty! how high thy glory towers, +When the rich blood of kings is set on fire! +O, now doth Death line his dead chaps with steel; +The swords of soldiers are his teeth, his fangs; +And now he feasts, mousing the flesh of men, +In undetermined differences of kings. +Why stand these royal fronts amazed thus? +Cry, 'havoc!' kings; back to the stained field, +You equal potents, fiery kindled spirits! +Then let confusion of one part confirm +The other's peace: till then, blows, blood and death! + +KING JOHN: +Whose party do the townsmen yet admit? + +KING PHILIP: +Speak, citizens, for England; who's your king? + +First Citizen: +The king of England; when we know the king. + +KING PHILIP: +Know him in us, that here hold up his right. + +KING JOHN: +In us, that are our own great deputy +And bear possession of our person here, +Lord of our presence, Angiers, and of you. + +First Citizen: +A greater power then we denies all this; +And till it be undoubted, we do lock +Our former scruple in our strong-barr'd gates; +King'd of our fears, until our fears, resolved, +Be by some certain king purged and deposed. + +BASTARD: +By heaven, these scroyles of Angiers flout you, kings, +And stand securely on their battlements, +As in a theatre, whence they gape and point +At your industrious scenes and acts of death. +Your royal presences be ruled by me: +Do like the mutines of Jerusalem, +Be friends awhile and both conjointly bend +Your sharpest deeds of malice on this town: +By east and west let France and England mount +Their battering cannon charged to the mouths, +Till their soul-fearing clamours have brawl'd down +The flinty ribs of this contemptuous city: +I'ld play incessantly upon these jades, +Even till unfenced desolation +Leave them as naked as the vulgar air. +That done, dissever your united strengths, +And part your mingled colours once again; +Turn face to face and bloody point to point; +Then, in a moment, Fortune shall cull forth +Out of one side her happy minion, +To whom in favour she shall give the day, +And kiss him with a glorious victory. +How like you this wild counsel, mighty states? +Smacks it not something of the policy? + +KING JOHN: +Now, by the sky that hangs above our heads, +I like it well. France, shall we knit our powers +And lay this Angiers even to the ground; +Then after fight who shall be king of it? + +BASTARD: +An if thou hast the mettle of a king, +Being wronged as we are by this peevish town, +Turn thou the mouth of thy artillery, +As we will ours, against these saucy walls; +And when that we have dash'd them to the ground, +Why then defy each other and pell-mell +Make work upon ourselves, for heaven or hell. + +KING PHILIP: +Let it be so. Say, where will you assault? + +KING JOHN: +We from the west will send destruction +Into this city's bosom. + +AUSTRIA: +I from the north. + +KING PHILIP: +Our thunder from the south +Shall rain their drift of bullets on this town. + +BASTARD: +O prudent discipline! From north to south: +Austria and France shoot in each other's mouth: +I'll stir them to it. Come, away, away! + +First Citizen: +Hear us, great kings: vouchsafe awhile to stay, +And I shall show you peace and fair-faced league; +Win you this city without stroke or wound; +Rescue those breathing lives to die in beds, +That here come sacrifices for the field: +Persever not, but hear me, mighty kings. + +KING JOHN: +Speak on with favour; we are bent to hear. + +First Citizen: +That daughter there of Spain, the Lady Blanch, +Is niece to England: look upon the years +Of Lewis the Dauphin and that lovely maid: +If lusty love should go in quest of beauty, +Where should he find it fairer than in Blanch? +If zealous love should go in search of virtue, +Where should he find it purer than in Blanch? +If love ambitious sought a match of birth, +Whose veins bound richer blood than Lady Blanch? +Such as she is, in beauty, virtue, birth, +Is the young Dauphin every way complete: +If not complete of, say he is not she; +And she again wants nothing, to name want, +If want it be not that she is not he: +He is the half part of a blessed man, +Left to be finished by such as she; +And she a fair divided excellence, +Whose fulness of perfection lies in him. +O, two such silver currents, when they join, +Do glorify the banks that bound them in; +And two such shores to two such streams made one, +Two such controlling bounds shall you be, kings, +To these two princes, if you marry them. +This union shall do more than battery can +To our fast-closed gates; for at this match, +With swifter spleen than powder can enforce, +The mouth of passage shall we fling wide ope, +And give you entrance: but without this match, +The sea enraged is not half so deaf, +Lions more confident, mountains and rocks +More free from motion, no, not Death himself +In moral fury half so peremptory, +As we to keep this city. + +BASTARD: +Here's a stay +That shakes the rotten carcass of old Death +Out of his rags! Here's a large mouth, indeed, +That spits forth death and mountains, rocks and seas, +Talks as familiarly of roaring lions +As maids of thirteen do of puppy-dogs! +What cannoneer begot this lusty blood? +He speaks plain cannon fire, and smoke and bounce; +He gives the bastinado with his tongue: +Our ears are cudgell'd; not a word of his +But buffets better than a fist of France: +Zounds! I was never so bethump'd with words +Since I first call'd my brother's father dad. + +QUEEN ELINOR: +Son, list to this conjunction, make this match; +Give with our niece a dowry large enough: +For by this knot thou shalt so surely tie +Thy now unsured assurance to the crown, +That yon green boy shall have no sun to ripe +The bloom that promiseth a mighty fruit. +I see a yielding in the looks of France; +Mark, how they whisper: urge them while their souls +Are capable of this ambition, +Lest zeal, now melted by the windy breath +Of soft petitions, pity and remorse, +Cool and congeal again to what it was. + +First Citizen: +Why answer not the double majesties +This friendly treaty of our threaten'd town? + +KING PHILIP: +Speak England first, that hath been forward first +To speak unto this city: what say you? + +KING JOHN: +If that the Dauphin there, thy princely son, +Can in this book of beauty read 'I love,' +Her dowry shall weigh equal with a queen: +For Anjou and fair Touraine, Maine, Poictiers, +And all that we upon this side the sea, +Except this city now by us besieged, +Find liable to our crown and dignity, +Shall gild her bridal bed and make her rich +In titles, honours and promotions, +As she in beauty, education, blood, +Holds hand with any princess of the world. + +KING PHILIP: +What say'st thou, boy? look in the lady's face. + +LEWIS: +I do, my lord; and in her eye I find +A wonder, or a wondrous miracle, +The shadow of myself form'd in her eye: +Which being but the shadow of your son, +Becomes a sun and makes your son a shadow: +I do protest I never loved myself +Till now infixed I beheld myself +Drawn in the flattering table of her eye. + +BASTARD: +Drawn in the flattering table of her eye! +Hang'd in the frowning wrinkle of her brow! +And quarter'd in her heart! he doth espy +Himself love's traitor: this is pity now, +That hang'd and drawn and quartered, there should be +In such a love so vile a lout as he. + +BLANCH: +My uncle's will in this respect is mine: +If he see aught in you that makes him like, +That any thing he sees, which moves his liking, +I can with ease translate it to my will; +Or if you will, to speak more properly, +I will enforce it easily to my love. +Further I will not flatter you, my lord, +That all I see in you is worthy love, +Than this; that nothing do I see in you, +Though churlish thoughts themselves should be your judge, +That I can find should merit any hate. + +KING JOHN: +What say these young ones? What say you my niece? + +BLANCH: +That she is bound in honour still to do +What you in wisdom still vouchsafe to say. + +KING JOHN: +Speak then, prince Dauphin; can you love this lady? + +LEWIS: +Nay, ask me if I can refrain from love; +For I do love her most unfeignedly. + +KING JOHN: +Then do I give Volquessen, Touraine, Maine, +Poictiers and Anjou, these five provinces, +With her to thee; and this addition more, +Full thirty thousand marks of English coin. +Philip of France, if thou be pleased withal, +Command thy son and daughter to join hands. + +KING PHILIP: +It likes us well; young princes, close your hands. + +AUSTRIA: +And your lips too; for I am well assured +That I did so when I was first assured. + +KING PHILIP: +Now, citizens of Angiers, ope your gates, +Let in that amity which you have made; +For at Saint Mary's chapel presently +The rites of marriage shall be solemnized. +Is not the Lady Constance in this troop? +I know she is not, for this match made up +Her presence would have interrupted much: +Where is she and her son? tell me, who knows. + +LEWIS: +She is sad and passionate at your highness' tent. + +KING PHILIP: +And, by my faith, this league that we have made +Will give her sadness very little cure. +Brother of England, how may we content +This widow lady? In her right we came; +Which we, God knows, have turn'd another way, +To our own vantage. + +KING JOHN: +We will heal up all; +For we'll create young Arthur Duke of Bretagne +And Earl of Richmond; and this rich fair town +We make him lord of. Call the Lady Constance; +Some speedy messenger bid her repair +To our solemnity: I trust we shall, +If not fill up the measure of her will, +Yet in some measure satisfy her so +That we shall stop her exclamation. +Go we, as well as haste will suffer us, +To this unlook'd for, unprepared pomp. + +BASTARD: +Mad world! mad kings! mad composition! +John, to stop Arthur's title in the whole, +Hath willingly departed with a part, +And France, whose armour conscience buckled on, +Whom zeal and charity brought to the field +As God's own soldier, rounded in the ear +With that same purpose-changer, that sly devil, +That broker, that still breaks the pate of faith, +That daily break-vow, he that wins of all, +Of kings, of beggars, old men, young men, maids, +Who, having no external thing to lose +But the word 'maid,' cheats the poor maid of that, +That smooth-faced gentleman, tickling Commodity, +Commodity, the bias of the world, +The world, who of itself is peised well, +Made to run even upon even ground, +Till this advantage, this vile-drawing bias, +This sway of motion, this Commodity, +Makes it take head from all indifferency, +From all direction, purpose, course, intent: +And this same bias, this Commodity, +This bawd, this broker, this all-changing word, +Clapp'd on the outward eye of fickle France, +Hath drawn him from his own determined aid, +From a resolved and honourable war, +To a most base and vile-concluded peace. +And why rail I on this Commodity? +But for because he hath not woo'd me yet: +Not that I have the power to clutch my hand, +When his fair angels would salute my palm; +But for my hand, as unattempted yet, +Like a poor beggar, raileth on the rich. +Well, whiles I am a beggar, I will rail +And say there is no sin but to be rich; +And being rich, my virtue then shall be +To say there is no vice but beggary. +Since kings break faith upon commodity, +Gain, be my lord, for I will worship thee. + +CONSTANCE: +Gone to be married! gone to swear a peace! +False blood to false blood join'd! gone to be friends! +Shall Lewis have Blanch, and Blanch those provinces? +It is not so; thou hast misspoke, misheard: +Be well advised, tell o'er thy tale again: +It cannot be; thou dost but say 'tis so: +I trust I may not trust thee; for thy word +Is but the vain breath of a common man: +Believe me, I do not believe thee, man; +I have a king's oath to the contrary. +Thou shalt be punish'd for thus frighting me, +For I am sick and capable of fears, +Oppress'd with wrongs and therefore full of fears, +A widow, husbandless, subject to fears, +A woman, naturally born to fears; +And though thou now confess thou didst but jest, +With my vex'd spirits I cannot take a truce, +But they will quake and tremble all this day. +What dost thou mean by shaking of thy head? +Why dost thou look so sadly on my son? +What means that hand upon that breast of thine? +Why holds thine eye that lamentable rheum, +Like a proud river peering o'er his bounds? +Be these sad signs confirmers of thy words? +Then speak again; not all thy former tale, +But this one word, whether thy tale be true. + +SALISBURY: +As true as I believe you think them false +That give you cause to prove my saying true. + +CONSTANCE: +O, if thou teach me to believe this sorrow, +Teach thou this sorrow how to make me die, +And let belief and life encounter so +As doth the fury of two desperate men +Which in the very meeting fall and die. +Lewis marry Blanch! O boy, then where art thou? +France friend with England, what becomes of me? +Fellow, be gone: I cannot brook thy sight: +This news hath made thee a most ugly man. + +SALISBURY: +What other harm have I, good lady, done, +But spoke the harm that is by others done? + +CONSTANCE: +Which harm within itself so heinous is +As it makes harmful all that speak of it. + +ARTHUR: +I do beseech you, madam, be content. + +CONSTANCE: +If thou, that bid'st me be content, wert grim, +Ugly and slanderous to thy mother's womb, +Full of unpleasing blots and sightless stains, +Lame, foolish, crooked, swart, prodigious, +Patch'd with foul moles and eye-offending marks, +I would not care, I then would be content, +For then I should not love thee, no, nor thou +Become thy great birth nor deserve a crown. +But thou art fair, and at thy birth, dear boy, +Nature and Fortune join'd to make thee great: +Of Nature's gifts thou mayst with lilies boast, +And with the half-blown rose. But Fortune, O, +She is corrupted, changed and won from thee; +She adulterates hourly with thine uncle John, +And with her golden hand hath pluck'd on France +To tread down fair respect of sovereignty, +And made his majesty the bawd to theirs. +France is a bawd to Fortune and King John, +That strumpet Fortune, that usurping John! +Tell me, thou fellow, is not France forsworn? +Envenom him with words, or get thee gone +And leave those woes alone which I alone +Am bound to under-bear. + +SALISBURY: +Pardon me, madam, +I may not go without you to the kings. + +CONSTANCE: +Thou mayst, thou shalt; I will not go with thee: +I will instruct my sorrows to be proud; +For grief is proud and makes his owner stoop. +To me and to the state of my great grief +Let kings assemble; for my grief's so great +That no supporter but the huge firm earth +Can hold it up: here I and sorrows sit; +Here is my throne, bid kings come bow to it. + +KING PHILIP: +'Tis true, fair daughter; and this blessed day +Ever in France shall be kept festival: +To solemnize this day the glorious sun +Stays in his course and plays the alchemist, +Turning with splendor of his precious eye +The meagre cloddy earth to glittering gold: +The yearly course that brings this day about +Shall never see it but a holiday. + +CONSTANCE: +A wicked day, and not a holy day! +What hath this day deserved? what hath it done, +That it in golden letters should be set +Among the high tides in the calendar? +Nay, rather turn this day out of the week, +This day of shame, oppression, perjury. +Or, if it must stand still, let wives with child +Pray that their burthens may not fall this day, +Lest that their hopes prodigiously be cross'd: +But on this day let seamen fear no wreck; +No bargains break that are not this day made: +This day, all things begun come to ill end, +Yea, faith itself to hollow falsehood change! + +KING PHILIP: +By heaven, lady, you shall have no cause +To curse the fair proceedings of this day: +Have I not pawn'd to you my majesty? + +CONSTANCE: +You have beguiled me with a counterfeit +Resembling majesty, which, being touch'd and tried, +Proves valueless: you are forsworn, forsworn; +You came in arms to spill mine enemies' blood, +But now in arms you strengthen it with yours: +The grappling vigour and rough frown of war +Is cold in amity and painted peace, +And our oppression hath made up this league. +Arm, arm, you heavens, against these perjured kings! +A widow cries; be husband to me, heavens! +Let not the hours of this ungodly day +Wear out the day in peace; but, ere sunset, +Set armed discord 'twixt these perjured kings! +Hear me, O, hear me! + +AUSTRIA: +Lady Constance, peace! + +CONSTANCE: +War! war! no peace! peace is to me a war +O Lymoges! O Austria! thou dost shame +That bloody spoil: thou slave, thou wretch, thou coward! +Thou little valiant, great in villany! +Thou ever strong upon the stronger side! +Thou Fortune's champion that dost never fight +But when her humorous ladyship is by +To teach thee safety! thou art perjured too, +And soothest up greatness. What a fool art thou, +A ramping fool, to brag and stamp and swear +Upon my party! Thou cold-blooded slave, +Hast thou not spoke like thunder on my side, +Been sworn my soldier, bidding me depend +Upon thy stars, thy fortune and thy strength, +And dost thou now fall over to my fores? +Thou wear a lion's hide! doff it for shame, +And hang a calf's-skin on those recreant limbs. + +AUSTRIA: +O, that a man should speak those words to me! + +BASTARD: +And hang a calf's-skin on those recreant limbs. + +AUSTRIA: +Thou darest not say so, villain, for thy life. + +BASTARD: +And hang a calf's-skin on those recreant limbs. + +KING JOHN: +We like not this; thou dost forget thyself. + +KING PHILIP: +Here comes the holy legate of the pope. + +CARDINAL PANDULPH: +Hail, you anointed deputies of heaven! +To thee, King John, my holy errand is. +I Pandulph, of fair Milan cardinal, +And from Pope Innocent the legate here, +Do in his name religiously demand +Why thou against the church, our holy mother, +So wilfully dost spurn; and force perforce +Keep Stephen Langton, chosen archbishop +Of Canterbury, from that holy see? +This, in our foresaid holy father's name, +Pope Innocent, I do demand of thee. + +KING JOHN: +What earthy name to interrogatories +Can task the free breath of a sacred king? +Thou canst not, cardinal, devise a name +So slight, unworthy and ridiculous, +To charge me to an answer, as the pope. +Tell him this tale; and from the mouth of England +Add thus much more, that no Italian priest +Shall tithe or toll in our dominions; +But as we, under heaven, are supreme head, +So under Him that great supremacy, +Where we do reign, we will alone uphold, +Without the assistance of a mortal hand: +So tell the pope, all reverence set apart +To him and his usurp'd authority. + +KING PHILIP: +Brother of England, you blaspheme in this. + +KING JOHN: +Though you and all the kings of Christendom +Are led so grossly by this meddling priest, +Dreading the curse that money may buy out; +And by the merit of vile gold, dross, dust, +Purchase corrupted pardon of a man, +Who in that sale sells pardon from himself, +Though you and all the rest so grossly led +This juggling witchcraft with revenue cherish, +Yet I alone, alone do me oppose +Against the pope and count his friends my foes. + +CARDINAL PANDULPH: +Then, by the lawful power that I have, +Thou shalt stand cursed and excommunicate. +And blessed shall he be that doth revolt +From his allegiance to an heretic; +And meritorious shall that hand be call'd, +Canonized and worshipped as a saint, +That takes away by any secret course +Thy hateful life. + +CONSTANCE: +O, lawful let it be +That I have room with Rome to curse awhile! +Good father cardinal, cry thou amen +To my keen curses; for without my wrong +There is no tongue hath power to curse him right. + +CARDINAL PANDULPH: +There's law and warrant, lady, for my curse. + +CONSTANCE: +And for mine too: when law can do no right, +Let it be lawful that law bar no wrong: +Law cannot give my child his kingdom here, +For he that holds his kingdom holds the law; +Therefore, since law itself is perfect wrong, +How can the law forbid my tongue to curse? + +CARDINAL PANDULPH: +Philip of France, on peril of a curse, +Let go the hand of that arch-heretic; +And raise the power of France upon his head, +Unless he do submit himself to Rome. + +QUEEN ELINOR: +Look'st thou pale, France? do not let go thy hand. + +CONSTANCE: +Look to that, devil; lest that France repent, +And by disjoining hands, hell lose a soul. + +AUSTRIA: +King Philip, listen to the cardinal. + +BASTARD: +And hang a calf's-skin on his recreant limbs. + +AUSTRIA: +Well, ruffian, I must pocket up these wrongs, Because-- + +BASTARD: +Your breeches best may carry them. + +KING JOHN: +Philip, what say'st thou to the cardinal? + +CONSTANCE: +What should he say, but as the cardinal? + +LEWIS: +Bethink you, father; for the difference +Is purchase of a heavy curse from Rome, +Or the light loss of England for a friend: +Forego the easier. + +BLANCH: +That's the curse of Rome. + +CONSTANCE: +O Lewis, stand fast! the devil tempts thee here +In likeness of a new untrimmed bride. + +BLANCH: +The Lady Constance speaks not from her faith, +But from her need. + +CONSTANCE: +O, if thou grant my need, +Which only lives but by the death of faith, +That need must needs infer this principle, +That faith would live again by death of need. +O then, tread down my need, and faith mounts up; +Keep my need up, and faith is trodden down! + +KING JOHN: +The king is moved, and answers not to this. + +CONSTANCE: +O, be removed from him, and answer well! + +AUSTRIA: +Do so, King Philip; hang no more in doubt. + +BASTARD: +Hang nothing but a calf's-skin, most sweet lout. + +KING PHILIP: +I am perplex'd, and know not what to say. + +CARDINAL PANDULPH: +What canst thou say but will perplex thee more, +If thou stand excommunicate and cursed? + +KING PHILIP: +Good reverend father, make my person yours, +And tell me how you would bestow yourself. +This royal hand and mine are newly knit, +And the conjunction of our inward souls +Married in league, coupled and linked together +With all religious strength of sacred vows; +The latest breath that gave the sound of words +Was deep-sworn faith, peace, amity, true love +Between our kingdoms and our royal selves, +And even before this truce, but new before, +No longer than we well could wash our hands +To clap this royal bargain up of peace, +Heaven knows, they were besmear'd and over-stain'd +With slaughter's pencil, where revenge did paint +The fearful difference of incensed kings: +And shall these hands, so lately purged of blood, +So newly join'd in love, so strong in both, +Unyoke this seizure and this kind regreet? +Play fast and loose with faith? so jest with heaven, +Make such unconstant children of ourselves, +As now again to snatch our palm from palm, +Unswear faith sworn, and on the marriage-bed +Of smiling peace to march a bloody host, +And make a riot on the gentle brow +Of true sincerity? O, holy sir, +My reverend father, let it not be so! +Out of your grace, devise, ordain, impose +Some gentle order; and then we shall be blest +To do your pleasure and continue friends. + +CARDINAL PANDULPH: +All form is formless, order orderless, +Save what is opposite to England's love. +Therefore to arms! be champion of our church, +Or let the church, our mother, breathe her curse, +A mother's curse, on her revolting son. +France, thou mayst hold a serpent by the tongue, +A chafed lion by the mortal paw, +A fasting tiger safer by the tooth, +Than keep in peace that hand which thou dost hold. + +KING PHILIP: +I may disjoin my hand, but not my faith. + +CARDINAL PANDULPH: +So makest thou faith an enemy to faith; +And like a civil war set'st oath to oath, +Thy tongue against thy tongue. O, let thy vow +First made to heaven, first be to heaven perform'd, +That is, to be the champion of our church! +What since thou sworest is sworn against thyself +And may not be performed by thyself, +For that which thou hast sworn to do amiss +Is not amiss when it is truly done, +And being not done, where doing tends to ill, +The truth is then most done not doing it: +The better act of purposes mistook +Is to mistake again; though indirect, +Yet indirection thereby grows direct, +And falsehood falsehood cures, as fire cools fire +Within the scorched veins of one new-burn'd. +It is religion that doth make vows kept; +But thou hast sworn against religion, +By what thou swear'st against the thing thou swear'st, +And makest an oath the surety for thy truth +Against an oath: the truth thou art unsure +To swear, swears only not to be forsworn; +Else what a mockery should it be to swear! +But thou dost swear only to be forsworn; +And most forsworn, to keep what thou dost swear. +Therefore thy later vows against thy first +Is in thyself rebellion to thyself; +And better conquest never canst thou make +Than arm thy constant and thy nobler parts +Against these giddy loose suggestions: +Upon which better part our prayers come in, +If thou vouchsafe them. But if not, then know +The peril of our curses light on thee +So heavy as thou shalt not shake them off, +But in despair die under their black weight. + +AUSTRIA: +Rebellion, flat rebellion! + +BASTARD: +Will't not be? +Will not a calfs-skin stop that mouth of thine? + +LEWIS: +Father, to arms! + +BLANCH: +Upon thy wedding-day? +Against the blood that thou hast married? +What, shall our feast be kept with slaughter'd men? +Shall braying trumpets and loud churlish drums, +Clamours of hell, be measures to our pomp? +O husband, hear me! ay, alack, how new +Is husband in my mouth! even for that name, +Which till this time my tongue did ne'er pronounce, +Upon my knee I beg, go not to arms +Against mine uncle. + +CONSTANCE: +O, upon my knee, +Made hard with kneeling, I do pray to thee, +Thou virtuous Dauphin, alter not the doom +Forethought by heaven! + +BLANCH: +Now shall I see thy love: what motive may +Be stronger with thee than the name of wife? + +CONSTANCE: +That which upholdeth him that thee upholds, +His honour: O, thine honour, Lewis, thine honour! + +LEWIS: +I muse your majesty doth seem so cold, +When such profound respects do pull you on. + +CARDINAL PANDULPH: +I will denounce a curse upon his head. + +KING PHILIP: +Thou shalt not need. England, I will fall from thee. + +CONSTANCE: +O fair return of banish'd majesty! + +QUEEN ELINOR: +O foul revolt of French inconstancy! + +KING JOHN: +France, thou shalt rue this hour within this hour. + +BASTARD: +Old Time the clock-setter, that bald sexton Time, +Is it as he will? well then, France shall rue. + +BLANCH: +The sun's o'ercast with blood: fair day, adieu! +Which is the side that I must go withal? +I am with both: each army hath a hand; +And in their rage, I having hold of both, +They swirl asunder and dismember me. +Husband, I cannot pray that thou mayst win; +Uncle, I needs must pray that thou mayst lose; +Father, I may not wish the fortune thine; +Grandam, I will not wish thy fortunes thrive: +Whoever wins, on that side shall I lose +Assured loss before the match be play'd. + +LEWIS: +Lady, with me, with me thy fortune lies. + +BLANCH: +There where my fortune lives, there my life dies. + +KING JOHN: +Cousin, go draw our puissance together. +France, I am burn'd up with inflaming wrath; +A rage whose heat hath this condition, +That nothing can allay, nothing but blood, +The blood, and dearest-valued blood, of France. + +KING PHILIP: +Thy rage sham burn thee up, and thou shalt turn +To ashes, ere our blood shall quench that fire: +Look to thyself, thou art in jeopardy. + +KING JOHN: +No more than he that threats. To arms let's hie! + +BASTARD: +Now, by my life, this day grows wondrous hot; +Some airy devil hovers in the sky +And pours down mischief. Austria's head lie there, +While Philip breathes. + +KING JOHN: +Hubert, keep this boy. Philip, make up: +My mother is assailed in our tent, +And ta'en, I fear. + +BASTARD: +My lord, I rescued her; +Her highness is in safety, fear you not: +But on, my liege; for very little pains +Will bring this labour to an happy end. + +KING JOHN: + +ARTHUR: +O, this will make my mother die with grief! + +KING JOHN: + +BASTARD: +Bell, book, and candle shall not drive me back, +When gold and silver becks me to come on. +I leave your highness. Grandam, I will pray, +If ever I remember to be holy, +For your fair safety; so, I kiss your hand. + +ELINOR: +Farewell, gentle cousin. + +KING JOHN: +Coz, farewell. + +QUEEN ELINOR: +Come hither, little kinsman; hark, a word. + +KING JOHN: +Come hither, Hubert. O my gentle Hubert, +We owe thee much! within this wall of flesh +There is a soul counts thee her creditor +And with advantage means to pay thy love: +And my good friend, thy voluntary oath +Lives in this bosom, dearly cherished. +Give me thy hand. I had a thing to say, +But I will fit it with some better time. +By heaven, Hubert, I am almost ashamed +To say what good respect I have of thee. + +HUBERT: +I am much bounden to your majesty. + +KING JOHN: +Good friend, thou hast no cause to say so yet, +But thou shalt have; and creep time ne'er so slow, +Yet it shall come from me to do thee good. +I had a thing to say, but let it go: +The sun is in the heaven, and the proud day, +Attended with the pleasures of the world, +Is all too wanton and too full of gawds +To give me audience: if the midnight bell +Did, with his iron tongue and brazen mouth, +Sound on into the drowsy race of night; +If this same were a churchyard where we stand, +And thou possessed with a thousand wrongs, +Or if that surly spirit, melancholy, +Had baked thy blood and made it heavy-thick, +Which else runs tickling up and down the veins, +Making that idiot, laughter, keep men's eyes +And strain their cheeks to idle merriment, +A passion hateful to my purposes, +Or if that thou couldst see me without eyes, +Hear me without thine ears, and make reply +Without a tongue, using conceit alone, +Without eyes, ears and harmful sound of words; +Then, in despite of brooded watchful day, +I would into thy bosom pour my thoughts: +But, ah, I will not! yet I love thee well; +And, by my troth, I think thou lovest me well. + +HUBERT: +So well, that what you bid me undertake, +Though that my death were adjunct to my act, +By heaven, I would do it. + +KING JOHN: +Do not I know thou wouldst? +Good Hubert, Hubert, Hubert, throw thine eye +On yon young boy: I'll tell thee what, my friend, +He is a very serpent in my way; +And whereso'er this foot of mine doth tread, +He lies before me: dost thou understand me? +Thou art his keeper. + +HUBERT: +And I'll keep him so, +That he shall not offend your majesty. + +KING JOHN: +Death. + +HUBERT: +My lord? + +KING JOHN: +A grave. + +HUBERT: +He shall not live. + +KING JOHN: +Enough. +I could be merry now. Hubert, I love thee; +Well, I'll not say what I intend for thee: +Remember. Madam, fare you well: +I'll send those powers o'er to your majesty. + +ELINOR: +My blessing go with thee! + +KING JOHN: +For England, cousin, go: +Hubert shall be your man, attend on you +With all true duty. On toward Calais, ho! + +KING PHILIP: +So, by a roaring tempest on the flood, +A whole armado of convicted sail +Is scatter'd and disjoin'd from fellowship. + +CARDINAL PANDULPH: +Courage and comfort! all shall yet go well. + +KING PHILIP: +What can go well, when we have run so ill? +Are we not beaten? Is not Angiers lost? +Arthur ta'en prisoner? divers dear friends slain? +And bloody England into England gone, +O'erbearing interruption, spite of France? + +LEWIS: +What he hath won, that hath he fortified: +So hot a speed with such advice disposed, +Such temperate order in so fierce a cause, +Doth want example: who hath read or heard +Of any kindred action like to this? + +KING PHILIP: +Well could I bear that England had this praise, +So we could find some pattern of our shame. +Look, who comes here! a grave unto a soul; +Holding the eternal spirit against her will, +In the vile prison of afflicted breath. +I prithee, lady, go away with me. + +CONSTANCE: +Lo, now I now see the issue of your peace. + +KING PHILIP: +Patience, good lady! comfort, gentle Constance! + +CONSTANCE: +No, I defy all counsel, all redress, +But that which ends all counsel, true redress, +Death, death; O amiable lovely death! +Thou odouriferous stench! sound rottenness! +Arise forth from the couch of lasting night, +Thou hate and terror to prosperity, +And I will kiss thy detestable bones +And put my eyeballs in thy vaulty brows +And ring these fingers with thy household worms +And stop this gap of breath with fulsome dust +And be a carrion monster like thyself: +Come, grin on me, and I will think thou smilest +And buss thee as thy wife. Misery's love, +O, come to me! + +KING PHILIP: +O fair affliction, peace! + +CONSTANCE: +No, no, I will not, having breath to cry: +O, that my tongue were in the thunder's mouth! +Then with a passion would I shake the world; +And rouse from sleep that fell anatomy +Which cannot hear a lady's feeble voice, +Which scorns a modern invocation. + +CARDINAL PANDULPH: +Lady, you utter madness, and not sorrow. + +CONSTANCE: +Thou art not holy to belie me so; +I am not mad: this hair I tear is mine; +My name is Constance; I was Geffrey's wife; +Young Arthur is my son, and he is lost: +I am not mad: I would to heaven I were! +For then, 'tis like I should forget myself: +O, if I could, what grief should I forget! +Preach some philosophy to make me mad, +And thou shalt be canonized, cardinal; +For being not mad but sensible of grief, +My reasonable part produces reason +How I may be deliver'd of these woes, +And teaches me to kill or hang myself: +If I were mad, I should forget my son, +Or madly think a babe of clouts were he: +I am not mad; too well, too well I feel +The different plague of each calamity. + +KING PHILIP: +Bind up those tresses. O, what love I note +In the fair multitude of those her hairs! +Where but by chance a silver drop hath fallen, +Even to that drop ten thousand wiry friends +Do glue themselves in sociable grief, +Like true, inseparable, faithful loves, +Sticking together in calamity. + +CONSTANCE: +To England, if you will. + +KING PHILIP: +Bind up your hairs. + +CONSTANCE: +Yes, that I will; and wherefore will I do it? +I tore them from their bonds and cried aloud +'O that these hands could so redeem my son, +As they have given these hairs their liberty!' +But now I envy at their liberty, +And will again commit them to their bonds, +Because my poor child is a prisoner. +And, father cardinal, I have heard you say +That we shall see and know our friends in heaven: +If that be true, I shall see my boy again; +For since the birth of Cain, the first male child, +To him that did but yesterday suspire, +There was not such a gracious creature born. +But now will canker-sorrow eat my bud +And chase the native beauty from his cheek +And he will look as hollow as a ghost, +As dim and meagre as an ague's fit, +And so he'll die; and, rising so again, +When I shall meet him in the court of heaven +I shall not know him: therefore never, never +Must I behold my pretty Arthur more. + +CARDINAL PANDULPH: +You hold too heinous a respect of grief. + +CONSTANCE: +He talks to me that never had a son. + +KING PHILIP: +You are as fond of grief as of your child. + +CONSTANCE: +Grief fills the room up of my absent child, +Lies in his bed, walks up and down with me, +Puts on his pretty looks, repeats his words, +Remembers me of all his gracious parts, +Stuffs out his vacant garments with his form; +Then, have I reason to be fond of grief? +Fare you well: had you such a loss as I, +I could give better comfort than you do. +I will not keep this form upon my head, +When there is such disorder in my wit. +O Lord! my boy, my Arthur, my fair son! +My life, my joy, my food, my all the world! +My widow-comfort, and my sorrows' cure! + +KING PHILIP: +I fear some outrage, and I'll follow her. + +LEWIS: +There's nothing in this world can make me joy: +Life is as tedious as a twice-told tale +Vexing the dull ear of a drowsy man; +And bitter shame hath spoil'd the sweet world's taste +That it yields nought but shame and bitterness. + +CARDINAL PANDULPH: +Before the curing of a strong disease, +Even in the instant of repair and health, +The fit is strongest; evils that take leave, +On their departure most of all show evil: +What have you lost by losing of this day? + +LEWIS: +All days of glory, joy and happiness. + +CARDINAL PANDULPH: +If you had won it, certainly you had. +No, no; when Fortune means to men most good, +She looks upon them with a threatening eye. +'Tis strange to think how much King John hath lost +In this which he accounts so clearly won: +Are not you grieved that Arthur is his prisoner? + +LEWIS: +As heartily as he is glad he hath him. + +CARDINAL PANDULPH: +Your mind is all as youthful as your blood. +Now hear me speak with a prophetic spirit; +For even the breath of what I mean to speak +Shall blow each dust, each straw, each little rub, +Out of the path which shall directly lead +Thy foot to England's throne; and therefore mark. +John hath seized Arthur; and it cannot be +That, whiles warm life plays in that infant's veins, +The misplaced John should entertain an hour, +One minute, nay, one quiet breath of rest. +A sceptre snatch'd with an unruly hand +Must be as boisterously maintain'd as gain'd; +And he that stands upon a slippery place +Makes nice of no vile hold to stay him up: +That John may stand, then Arthur needs must fall; +So be it, for it cannot be but so. + +LEWIS: +But what shall I gain by young Arthur's fall? + +CARDINAL PANDULPH: +You, in the right of Lady Blanch your wife, +May then make all the claim that Arthur did. + +LEWIS: +And lose it, life and all, as Arthur did. + +CARDINAL PANDULPH: +How green you are and fresh in this old world! +John lays you plots; the times conspire with you; +For he that steeps his safety in true blood +Shall find but bloody safety and untrue. +This act so evilly born shall cool the hearts +Of all his people and freeze up their zeal, +That none so small advantage shall step forth +To cheque his reign, but they will cherish it; +No natural exhalation in the sky, +No scope of nature, no distemper'd day, +No common wind, no customed event, +But they will pluck away his natural cause +And call them meteors, prodigies and signs, +Abortives, presages and tongues of heaven, +Plainly denouncing vengeance upon John. + +LEWIS: +May be he will not touch young Arthur's life, +But hold himself safe in his prisonment. + +CARDINAL PANDULPH: +O, sir, when he shall hear of your approach, +If that young Arthur be not gone already, +Even at that news he dies; and then the hearts +Of all his people shall revolt from him +And kiss the lips of unacquainted change +And pick strong matter of revolt and wrath +Out of the bloody fingers' ends of John. +Methinks I see this hurly all on foot: +And, O, what better matter breeds for you +Than I have named! The bastard Faulconbridge +Is now in England, ransacking the church, +Offending charity: if but a dozen French +Were there in arms, they would be as a call +To train ten thousand English to their side, +Or as a little snow, tumbled about, +Anon becomes a mountain. O noble Dauphin, +Go with me to the king: 'tis wonderful +What may be wrought out of their discontent, +Now that their souls are topful of offence. +For England go: I will whet on the king. + +LEWIS: +Strong reasons make strong actions: let us go: +If you say ay, the king will not say no. + +HUBERT: +Heat me these irons hot; and look thou stand +Within the arras: when I strike my foot +Upon the bosom of the ground, rush forth, +And bind the boy which you shall find with me +Fast to the chair: be heedful: hence, and watch. + +First Executioner: +I hope your warrant will bear out the deed. + +HUBERT: +Uncleanly scruples! fear not you: look to't. +Young lad, come forth; I have to say with you. + +ARTHUR: +Good morrow, Hubert. + +HUBERT: +Good morrow, little prince. + +ARTHUR: +As little prince, having so great a title +To be more prince, as may be. You are sad. + +HUBERT: +Indeed, I have been merrier. + +ARTHUR: +Mercy on me! +Methinks no body should be sad but I: +Yet, I remember, when I was in France, +Young gentlemen would be as sad as night, +Only for wantonness. By my christendom, +So I were out of prison and kept sheep, +I should be as merry as the day is long; +And so I would be here, but that I doubt +My uncle practises more harm to me: +He is afraid of me and I of him: +Is it my fault that I was Geffrey's son? +No, indeed, is't not; and I would to heaven +I were your son, so you would love me, Hubert. + +HUBERT: + +ARTHUR: +Are you sick, Hubert? you look pale to-day: +In sooth, I would you were a little sick, +That I might sit all night and watch with you: +I warrant I love you more than you do me. + +HUBERT: + +ARTHUR: +Too fairly, Hubert, for so foul effect: +Must you with hot irons burn out both mine eyes? + +HUBERT: +Young boy, I must. + +ARTHUR: +And will you? + +HUBERT: +And I will. + +ARTHUR: +Have you the heart? When your head did but ache, +I knit my handercher about your brows, +The best I had, a princess wrought it me, +And I did never ask it you again; +And with my hand at midnight held your head, +And like the watchful minutes to the hour, +Still and anon cheer'd up the heavy time, +Saying, 'What lack you?' and 'Where lies your grief?' +Or 'What good love may I perform for you?' +Many a poor man's son would have lien still +And ne'er have spoke a loving word to you; +But you at your sick service had a prince. +Nay, you may think my love was crafty love +And call it cunning: do, an if you will: +If heaven be pleased that you must use me ill, +Why then you must. Will you put out mine eyes? +These eyes that never did nor never shall +So much as frown on you. + +HUBERT: +I have sworn to do it; +And with hot irons must I burn them out. + +ARTHUR: +Ah, none but in this iron age would do it! +The iron of itself, though heat red-hot, +Approaching near these eyes, would drink my tears +And quench his fiery indignation +Even in the matter of mine innocence; +Nay, after that, consume away in rust +But for containing fire to harm mine eye. +Are you more stubborn-hard than hammer'd iron? +An if an angel should have come to me +And told me Hubert should put out mine eyes, +I would not have believed him,--no tongue but Hubert's. + +HUBERT: +Come forth. +Do as I bid you do. + +ARTHUR: +O, save me, Hubert, save me! my eyes are out +Even with the fierce looks of these bloody men. + +HUBERT: +Give me the iron, I say, and bind him here. + +ARTHUR: +Alas, what need you be so boisterous-rough? +I will not struggle, I will stand stone-still. +For heaven sake, Hubert, let me not be bound! +Nay, hear me, Hubert, drive these men away, +And I will sit as quiet as a lamb; +I will not stir, nor wince, nor speak a word, +Nor look upon the iron angerly: +Thrust but these men away, and I'll forgive you, +Whatever torment you do put me to. + +HUBERT: +Go, stand within; let me alone with him. + +First Executioner: +I am best pleased to be from such a deed. + +ARTHUR: +Alas, I then have chid away my friend! +He hath a stern look, but a gentle heart: +Let him come back, that his compassion may +Give life to yours. + +HUBERT: +Come, boy, prepare yourself. + +ARTHUR: +Is there no remedy? + +HUBERT: +None, but to lose your eyes. + +ARTHUR: +O heaven, that there were but a mote in yours, +A grain, a dust, a gnat, a wandering hair, +Any annoyance in that precious sense! +Then feeling what small things are boisterous there, +Your vile intent must needs seem horrible. + +HUBERT: +Is this your promise? go to, hold your tongue. + +ARTHUR: +Hubert, the utterance of a brace of tongues +Must needs want pleading for a pair of eyes: +Let me not hold my tongue, let me not, Hubert; +Or, Hubert, if you will, cut out my tongue, +So I may keep mine eyes: O, spare mine eyes. +Though to no use but still to look on you! +Lo, by my truth, the instrument is cold +And would not harm me. + +HUBERT: +I can heat it, boy. + +ARTHUR: +No, in good sooth: the fire is dead with grief, +Being create for comfort, to be used +In undeserved extremes: see else yourself; +There is no malice in this burning coal; +The breath of heaven has blown his spirit out +And strew'd repentent ashes on his head. + +HUBERT: +But with my breath I can revive it, boy. + +ARTHUR: +An if you do, you will but make it blush +And glow with shame of your proceedings, Hubert: +Nay, it perchance will sparkle in your eyes; +And like a dog that is compell'd to fight, +Snatch at his master that doth tarre him on. +All things that you should use to do me wrong +Deny their office: only you do lack +That mercy which fierce fire and iron extends, +Creatures of note for mercy-lacking uses. + +HUBERT: +Well, see to live; I will not touch thine eye +For all the treasure that thine uncle owes: +Yet am I sworn and I did purpose, boy, +With this same very iron to burn them out. + +ARTHUR: +O, now you look like Hubert! all this while +You were disguised. + +HUBERT: +Peace; no more. Adieu. +Your uncle must not know but you are dead; +I'll fill these dogged spies with false reports: +And, pretty child, sleep doubtless and secure, +That Hubert, for the wealth of all the world, +Will not offend thee. + +ARTHUR: +O heaven! I thank you, Hubert. + +HUBERT: +Silence; no more: go closely in with me: +Much danger do I undergo for thee. + +KING JOHN: +Here once again we sit, once again crown'd, +And looked upon, I hope, with cheerful eyes. + +PEMBROKE: +This 'once again,' but that your highness pleased, +Was once superfluous: you were crown'd before, +And that high royalty was ne'er pluck'd off, +The faiths of men ne'er stained with revolt; +Fresh expectation troubled not the land +With any long'd-for change or better state. + +SALISBURY: +Therefore, to be possess'd with double pomp, +To guard a title that was rich before, +To gild refined gold, to paint the lily, +To throw a perfume on the violet, +To smooth the ice, or add another hue +Unto the rainbow, or with taper-light +To seek the beauteous eye of heaven to garnish, +Is wasteful and ridiculous excess. + +PEMBROKE: +But that your royal pleasure must be done, +This act is as an ancient tale new told, +And in the last repeating troublesome, +Being urged at a time unseasonable. + +SALISBURY: +In this the antique and well noted face +Of plain old form is much disfigured; +And, like a shifted wind unto a sail, +It makes the course of thoughts to fetch about, +Startles and frights consideration, +Makes sound opinion sick and truth suspected, +For putting on so new a fashion'd robe. + +PEMBROKE: +When workmen strive to do better than well, +They do confound their skill in covetousness; +And oftentimes excusing of a fault +Doth make the fault the worse by the excuse, +As patches set upon a little breach +Discredit more in hiding of the fault +Than did the fault before it was so patch'd. + +SALISBURY: +To this effect, before you were new crown'd, +We breathed our counsel: but it pleased your highness +To overbear it, and we are all well pleased, +Since all and every part of what we would +Doth make a stand at what your highness will. + +KING JOHN: +Some reasons of this double coronation +I have possess'd you with and think them strong; +And more, more strong, then lesser is my fear, +I shall indue you with: meantime but ask +What you would have reform'd that is not well, +And well shall you perceive how willingly +I will both hear and grant you your requests. + +PEMBROKE: +Then I, as one that am the tongue of these, +To sound the purpose of all their hearts, +Both for myself and them, but, chief of all, +Your safety, for the which myself and them +Bend their best studies, heartily request +The enfranchisement of Arthur; whose restraint +Doth move the murmuring lips of discontent +To break into this dangerous argument,-- +If what in rest you have in right you hold, +Why then your fears, which, as they say, attend +The steps of wrong, should move you to mew up +Your tender kinsman and to choke his days +With barbarous ignorance and deny his youth +The rich advantage of good exercise? +That the time's enemies may not have this +To grace occasions, let it be our suit +That you have bid us ask his liberty; +Which for our goods we do no further ask +Than whereupon our weal, on you depending, +Counts it your weal he have his liberty. + +KING JOHN: +Let it be so: I do commit his youth +To your direction. Hubert, what news with you? + +PEMBROKE: +This is the man should do the bloody deed; +He show'd his warrant to a friend of mine: +The image of a wicked heinous fault +Lives in his eye; that close aspect of his +Does show the mood of a much troubled breast; +And I do fearfully believe 'tis done, +What we so fear'd he had a charge to do. + +SALISBURY: +The colour of the king doth come and go +Between his purpose and his conscience, +Like heralds 'twixt two dreadful battles set: +His passion is so ripe, it needs must break. + +PEMBROKE: +And when it breaks, I fear will issue thence +The foul corruption of a sweet child's death. + +KING JOHN: +We cannot hold mortality's strong hand: +Good lords, although my will to give is living, +The suit which you demand is gone and dead: +He tells us Arthur is deceased to-night. + +SALISBURY: +Indeed we fear'd his sickness was past cure. + +PEMBROKE: +Indeed we heard how near his death he was +Before the child himself felt he was sick: +This must be answer'd either here or hence. + +KING JOHN: +Why do you bend such solemn brows on me? +Think you I bear the shears of destiny? +Have I commandment on the pulse of life? + +SALISBURY: +It is apparent foul play; and 'tis shame +That greatness should so grossly offer it: +So thrive it in your game! and so, farewell. + +PEMBROKE: +Stay yet, Lord Salisbury; I'll go with thee, +And find the inheritance of this poor child, +His little kingdom of a forced grave. +That blood which owed the breadth of all this isle, +Three foot of it doth hold: bad world the while! +This must not be thus borne: this will break out +To all our sorrows, and ere long I doubt. + +KING JOHN: +They burn in indignation. I repent: +There is no sure foundation set on blood, +No certain life achieved by others' death. +A fearful eye thou hast: where is that blood +That I have seen inhabit in those cheeks? +So foul a sky clears not without a storm: +Pour down thy weather: how goes all in France? + +Messenger: +From France to England. Never such a power +For any foreign preparation +Was levied in the body of a land. +The copy of your speed is learn'd by them; +For when you should be told they do prepare, +The tidings come that they are all arrived. + +KING JOHN: +O, where hath our intelligence been drunk? +Where hath it slept? Where is my mother's care, +That such an army could be drawn in France, +And she not hear of it? + +Messenger: +My liege, her ear +Is stopp'd with dust; the first of April died +Your noble mother: and, as I hear, my lord, +The Lady Constance in a frenzy died +Three days before: but this from rumour's tongue +I idly heard; if true or false I know not. + +KING JOHN: +Withhold thy speed, dreadful occasion! +O, make a league with me, till I have pleased +My discontented peers! What! mother dead! +How wildly then walks my estate in France! +Under whose conduct came those powers of France +That thou for truth givest out are landed here? + +Messenger: +Under the Dauphin. + +KING JOHN: +Thou hast made me giddy +With these ill tidings. +Now, what says the world +To your proceedings? do not seek to stuff +My head with more ill news, for it is full. + +BASTARD: +But if you be afeard to hear the worst, +Then let the worst unheard fall on your bead. + +KING JOHN: +Bear with me cousin, for I was amazed +Under the tide: but now I breathe again +Aloft the flood, and can give audience +To any tongue, speak it of what it will. + +BASTARD: +How I have sped among the clergymen, +The sums I have collected shall express. +But as I travell'd hither through the land, +I find the people strangely fantasied; +Possess'd with rumours, full of idle dreams, +Not knowing what they fear, but full of fear: +And here a prophet, that I brought with me +From forth the streets of Pomfret, whom I found +With many hundreds treading on his heels; +To whom he sung, in rude harsh-sounding rhymes, +That, ere the next Ascension-day at noon, +Your highness should deliver up your crown. + +KING JOHN: +Thou idle dreamer, wherefore didst thou so? + +PETER: +Foreknowing that the truth will fall out so. + +KING JOHN: +Hubert, away with him; imprison him; +And on that day at noon whereon he says +I shall yield up my crown, let him be hang'd. +Deliver him to safety; and return, +For I must use thee. +O my gentle cousin, +Hear'st thou the news abroad, who are arrived? + +BASTARD: +The French, my lord; men's mouths are full of it: +Besides, I met Lord Bigot and Lord Salisbury, +With eyes as red as new-enkindled fire, +And others more, going to seek the grave +Of Arthur, who they say is kill'd to-night +On your suggestion. + +KING JOHN: +Gentle kinsman, go, +And thrust thyself into their companies: +I have a way to win their loves again; +Bring them before me. + +BASTARD: +I will seek them out. + +KING JOHN: +Nay, but make haste; the better foot before. +O, let me have no subject enemies, +When adverse foreigners affright my towns +With dreadful pomp of stout invasion! +Be Mercury, set feathers to thy heels, +And fly like thought from them to me again. + +BASTARD: +The spirit of the time shall teach me speed. + +KING JOHN: +Spoke like a sprightful noble gentleman. +Go after him; for he perhaps shall need +Some messenger betwixt me and the peers; +And be thou he. + +Messenger: +With all my heart, my liege. + +KING JOHN: +My mother dead! + +HUBERT: +My lord, they say five moons were seen to-night; +Four fixed, and the fifth did whirl about +The other four in wondrous motion. + +KING JOHN: +Five moons! + +HUBERT: +Old men and beldams in the streets +Do prophesy upon it dangerously: +Young Arthur's death is common in their mouths: +And when they talk of him, they shake their heads +And whisper one another in the ear; +And he that speaks doth gripe the hearer's wrist, +Whilst he that hears makes fearful action, +With wrinkled brows, with nods, with rolling eyes. +I saw a smith stand with his hammer, thus, +The whilst his iron did on the anvil cool, +With open mouth swallowing a tailor's news; +Who, with his shears and measure in his hand, +Standing on slippers, which his nimble haste +Had falsely thrust upon contrary feet, +Told of a many thousand warlike French +That were embattailed and rank'd in Kent: +Another lean unwash'd artificer +Cuts off his tale and talks of Arthur's death. + +KING JOHN: +Why seek'st thou to possess me with these fears? +Why urgest thou so oft young Arthur's death? +Thy hand hath murder'd him: I had a mighty cause +To wish him dead, but thou hadst none to kill him. + +HUBERT: +No had, my lord! why, did you not provoke me? + +KING JOHN: +It is the curse of kings to be attended +By slaves that take their humours for a warrant +To break within the bloody house of life, +And on the winking of authority +To understand a law, to know the meaning +Of dangerous majesty, when perchance it frowns +More upon humour than advised respect. + +HUBERT: +Here is your hand and seal for what I did. + +KING JOHN: +O, when the last account 'twixt heaven and earth +Is to be made, then shall this hand and seal +Witness against us to damnation! +How oft the sight of means to do ill deeds +Make deeds ill done! Hadst not thou been by, +A fellow by the hand of nature mark'd, +Quoted and sign'd to do a deed of shame, +This murder had not come into my mind: +But taking note of thy abhorr'd aspect, +Finding thee fit for bloody villany, +Apt, liable to be employ'd in danger, +I faintly broke with thee of Arthur's death; +And thou, to be endeared to a king, +Made it no conscience to destroy a prince. + +HUBERT: +My lord-- + +KING JOHN: +Hadst thou but shook thy head or made a pause +When I spake darkly what I purposed, +Or turn'd an eye of doubt upon my face, +As bid me tell my tale in express words, +Deep shame had struck me dumb, made me break off, +And those thy fears might have wrought fears in me: +But thou didst understand me by my signs +And didst in signs again parley with sin; +Yea, without stop, didst let thy heart consent, +And consequently thy rude hand to act +The deed, which both our tongues held vile to name. +Out of my sight, and never see me more! +My nobles leave me; and my state is braved, +Even at my gates, with ranks of foreign powers: +Nay, in the body of this fleshly land, +This kingdom, this confine of blood and breath, +Hostility and civil tumult reigns +Between my conscience and my cousin's death. + +HUBERT: +Arm you against your other enemies, +I'll make a peace between your soul and you. +Young Arthur is alive: this hand of mine +Is yet a maiden and an innocent hand, +Not painted with the crimson spots of blood. +Within this bosom never enter'd yet +The dreadful motion of a murderous thought; +And you have slander'd nature in my form, +Which, howsoever rude exteriorly, +Is yet the cover of a fairer mind +Than to be butcher of an innocent child. + +KING JOHN: +Doth Arthur live? O, haste thee to the peers, +Throw this report on their incensed rage, +And make them tame to their obedience! +Forgive the comment that my passion made +Upon thy feature; for my rage was blind, +And foul imaginary eyes of blood +Presented thee more hideous than thou art. +O, answer not, but to my closet bring +The angry lords with all expedient haste. +I conjure thee but slowly; run more fast. + +ARTHUR: +The wall is high, and yet will I leap down: +Good ground, be pitiful and hurt me not! +There's few or none do know me: if they did, +This ship-boy's semblance hath disguised me quite. +I am afraid; and yet I'll venture it. +If I get down, and do not break my limbs, +I'll find a thousand shifts to get away: +As good to die and go, as die and stay. +O me! my uncle's spirit is in these stones: +Heaven take my soul, and England keep my bones! + +SALISBURY: +Lords, I will meet him at Saint Edmundsbury: +It is our safety, and we must embrace +This gentle offer of the perilous time. + +PEMBROKE: +Who brought that letter from the cardinal? + +SALISBURY: +The Count Melun, a noble lord of France, +Whose private with me of the Dauphin's love +Is much more general than these lines import. + +BIGOT: +To-morrow morning let us meet him then. + +SALISBURY: +Or rather then set forward; for 'twill be +Two long days' journey, lords, or ere we meet. + +BASTARD: +Once more to-day well met, distemper'd lords! +The king by me requests your presence straight. + +SALISBURY: +The king hath dispossess'd himself of us: +We will not line his thin bestained cloak +With our pure honours, nor attend the foot +That leaves the print of blood where'er it walks. +Return and tell him so: we know the worst. + +BASTARD: +Whate'er you think, good words, I think, were best. + +SALISBURY: +Our griefs, and not our manners, reason now. + +BASTARD: +But there is little reason in your grief; +Therefore 'twere reason you had manners now. + +PEMBROKE: +Sir, sir, impatience hath his privilege. + +BASTARD: +'Tis true, to hurt his master, no man else. + +SALISBURY: +This is the prison. What is he lies here? + +PEMBROKE: +O death, made proud with pure and princely beauty! +The earth had not a hole to hide this deed. + +SALISBURY: +Murder, as hating what himself hath done, +Doth lay it open to urge on revenge. + +BIGOT: +Or, when he doom'd this beauty to a grave, +Found it too precious-princely for a grave. + +SALISBURY: +Sir Richard, what think you? have you beheld, +Or have you read or heard? or could you think? +Or do you almost think, although you see, +That you do see? could thought, without this object, +Form such another? This is the very top, +The height, the crest, or crest unto the crest, +Of murder's arms: this is the bloodiest shame, +The wildest savagery, the vilest stroke, +That ever wall-eyed wrath or staring rage +Presented to the tears of soft remorse. + +PEMBROKE: +All murders past do stand excused in this: +And this, so sole and so unmatchable, +Shall give a holiness, a purity, +To the yet unbegotten sin of times; +And prove a deadly bloodshed but a jest, +Exampled by this heinous spectacle. + +BASTARD: +It is a damned and a bloody work; +The graceless action of a heavy hand, +If that it be the work of any hand. + +SALISBURY: +If that it be the work of any hand! +We had a kind of light what would ensue: +It is the shameful work of Hubert's hand; +The practise and the purpose of the king: +From whose obedience I forbid my soul, +Kneeling before this ruin of sweet life, +And breathing to his breathless excellence +The incense of a vow, a holy vow, +Never to taste the pleasures of the world, +Never to be infected with delight, +Nor conversant with ease and idleness, +Till I have set a glory to this hand, +By giving it the worship of revenge. + +PEMBROKE: +Our souls religiously confirm thy words. + +HUBERT: +Lords, I am hot with haste in seeking you: +Arthur doth live; the king hath sent for you. + +SALISBURY: +O, he is old and blushes not at death. +Avaunt, thou hateful villain, get thee gone! + +HUBERT: +I am no villain. + +SALISBURY: +Must I rob the law? + +BASTARD: +Your sword is bright, sir; put it up again. + +SALISBURY: +Not till I sheathe it in a murderer's skin. + +HUBERT: +Stand back, Lord Salisbury, stand back, I say; +By heaven, I think my sword's as sharp as yours: +I would not have you, lord, forget yourself, +Nor tempt the danger of my true defence; +Lest I, by marking of your rage, forget +Your worth, your greatness and nobility. + +BIGOT: +Out, dunghill! darest thou brave a nobleman? + +HUBERT: +Not for my life: but yet I dare defend +My innocent life against an emperor. + +SALISBURY: +Thou art a murderer. + +HUBERT: +Do not prove me so; +Yet I am none: whose tongue soe'er speaks false, +Not truly speaks; who speaks not truly, lies. + +PEMBROKE: +Cut him to pieces. + +BASTARD: +Keep the peace, I say. + +SALISBURY: +Stand by, or I shall gall you, Faulconbridge. + +BASTARD: +Thou wert better gall the devil, Salisbury: +If thou but frown on me, or stir thy foot, +Or teach thy hasty spleen to do me shame, +I'll strike thee dead. Put up thy sword betime; +Or I'll so maul you and your toasting-iron, +That you shall think the devil is come from hell. + +BIGOT: +What wilt thou do, renowned Faulconbridge? +Second a villain and a murderer? + +HUBERT: +Lord Bigot, I am none. + +BIGOT: +Who kill'd this prince? + +HUBERT: +'Tis not an hour since I left him well: +I honour'd him, I loved him, and will weep +My date of life out for his sweet life's loss. + +SALISBURY: +Trust not those cunning waters of his eyes, +For villany is not without such rheum; +And he, long traded in it, makes it seem +Like rivers of remorse and innocency. +Away with me, all you whose souls abhor +The uncleanly savours of a slaughter-house; +For I am stifled with this smell of sin. + +BIGOT: +Away toward Bury, to the Dauphin there! + +PEMBROKE: +There tell the king he may inquire us out. + +BASTARD: +Here's a good world! Knew you of this fair work? +Beyond the infinite and boundless reach +Of mercy, if thou didst this deed of death, +Art thou damn'd, Hubert. + +HUBERT: +Do but hear me, sir. + +BASTARD: +Ha! I'll tell thee what; +Thou'rt damn'd as black--nay, nothing is so black; +Thou art more deep damn'd than Prince Lucifer: +There is not yet so ugly a fiend of hell +As thou shalt be, if thou didst kill this child. + +HUBERT: +Upon my soul-- + +BASTARD: +If thou didst but consent +To this most cruel act, do but despair; +And if thou want'st a cord, the smallest thread +That ever spider twisted from her womb +Will serve to strangle thee, a rush will be a beam +To hang thee on; or wouldst thou drown thyself, +Put but a little water in a spoon, +And it shall be as all the ocean, +Enough to stifle such a villain up. +I do suspect thee very grievously. + +HUBERT: +If I in act, consent, or sin of thought, +Be guilty of the stealing that sweet breath +Which was embounded in this beauteous clay, +Let hell want pains enough to torture me. +I left him well. + +BASTARD: +Go, bear him in thine arms. +I am amazed, methinks, and lose my way +Among the thorns and dangers of this world. +How easy dost thou take all England up! +From forth this morsel of dead royalty, +The life, the right and truth of all this realm +Is fled to heaven; and England now is left +To tug and scamble and to part by the teeth +The unowed interest of proud-swelling state. +Now for the bare-pick'd bone of majesty +Doth dogged war bristle his angry crest +And snarleth in the gentle eyes of peace: +Now powers from home and discontents at home +Meet in one line; and vast confusion waits, +As doth a raven on a sick-fall'n beast, +The imminent decay of wrested pomp. +Now happy he whose cloak and cincture can +Hold out this tempest. Bear away that child +And follow me with speed: I'll to the king: +A thousand businesses are brief in hand, +And heaven itself doth frown upon the land. + +KING JOHN: +Thus have I yielded up into your hand +The circle of my glory. + +CARDINAL PANDULPH: +Take again +From this my hand, as holding of the pope +Your sovereign greatness and authority. + +KING JOHN: +Now keep your holy word: go meet the French, +And from his holiness use all your power +To stop their marches 'fore we are inflamed. +Our discontented counties do revolt; +Our people quarrel with obedience, +Swearing allegiance and the love of soul +To stranger blood, to foreign royalty. +This inundation of mistemper'd humour +Rests by you only to be qualified: +Then pause not; for the present time's so sick, +That present medicine must be minister'd, +Or overthrow incurable ensues. + +CARDINAL PANDULPH: +It was my breath that blew this tempest up, +Upon your stubborn usage of the pope; +But since you are a gentle convertite, +My tongue shall hush again this storm of war +And make fair weather in your blustering land. +On this Ascension-day, remember well, +Upon your oath of service to the pope, +Go I to make the French lay down their arms. + +KING JOHN: +Is this Ascension-day? Did not the prophet +Say that before Ascension-day at noon +My crown I should give off? Even so I have: +I did suppose it should be on constraint: +But, heaven be thank'd, it is but voluntary. + +BASTARD: +All Kent hath yielded; nothing there holds out +But Dover castle: London hath received, +Like a kind host, the Dauphin and his powers: +Your nobles will not hear you, but are gone +To offer service to your enemy, +And wild amazement hurries up and down +The little number of your doubtful friends. + +KING JOHN: +Would not my lords return to me again, +After they heard young Arthur was alive? + +BASTARD: +They found him dead and cast into the streets, +An empty casket, where the jewel of life +By some damn'd hand was robb'd and ta'en away. + +KING JOHN: +That villain Hubert told me he did live. + +BASTARD: +So, on my soul, he did, for aught he knew. +But wherefore do you droop? why look you sad? +Be great in act, as you have been in thought; +Let not the world see fear and sad distrust +Govern the motion of a kingly eye: +Be stirring as the time; be fire with fire; +Threaten the threatener and outface the brow +Of bragging horror: so shall inferior eyes, +That borrow their behaviors from the great, +Grow great by your example and put on +The dauntless spirit of resolution. +Away, and glister like the god of war, +When he intendeth to become the field: +Show boldness and aspiring confidence. +What, shall they seek the lion in his den, +And fright him there? and make him tremble there? +O, let it not be said: forage, and run +To meet displeasure farther from the doors, +And grapple with him ere he comes so nigh. + +KING JOHN: +The legate of the pope hath been with me, +And I have made a happy peace with him; +And he hath promised to dismiss the powers +Led by the Dauphin. + +BASTARD: +O inglorious league! +Shall we, upon the footing of our land, +Send fair-play orders and make compromise, +Insinuation, parley and base truce +To arms invasive? shall a beardless boy, +A cocker'd silken wanton, brave our fields, +And flesh his spirit in a warlike soil, +Mocking the air with colours idly spread, +And find no cheque? Let us, my liege, to arms: +Perchance the cardinal cannot make your peace; +Or if he do, let it at least be said +They saw we had a purpose of defence. + +KING JOHN: +Have thou the ordering of this present time. + +BASTARD: +Away, then, with good courage! yet, I know, +Our party may well meet a prouder foe. + +LEWIS: +My Lord Melun, let this be copied out, +And keep it safe for our remembrance: +Return the precedent to these lords again; +That, having our fair order written down, +Both they and we, perusing o'er these notes, +May know wherefore we took the sacrament +And keep our faiths firm and inviolable. + +SALISBURY: +Upon our sides it never shall be broken. +And, noble Dauphin, albeit we swear +A voluntary zeal and an unurged faith +To your proceedings; yet believe me, prince, +I am not glad that such a sore of time +Should seek a plaster by contemn'd revolt, +And heal the inveterate canker of one wound +By making many. O, it grieves my soul, +That I must draw this metal from my side +To be a widow-maker! O, and there +Where honourable rescue and defence +Cries out upon the name of Salisbury! +But such is the infection of the time, +That, for the health and physic of our right, +We cannot deal but with the very hand +Of stern injustice and confused wrong. +And is't not pity, O my grieved friends, +That we, the sons and children of this isle, +Were born to see so sad an hour as this; +Wherein we step after a stranger march +Upon her gentle bosom, and fill up +Her enemies' ranks,--I must withdraw and weep +Upon the spot of this enforced cause,-- +To grace the gentry of a land remote, +And follow unacquainted colours here? +What, here? O nation, that thou couldst remove! +That Neptune's arms, who clippeth thee about, +Would bear thee from the knowledge of thyself, +And grapple thee unto a pagan shore; +Where these two Christian armies might combine +The blood of malice in a vein of league, +And not to spend it so unneighbourly! + +LEWIS: +A noble temper dost thou show in this; +And great affections wrestling in thy bosom +Doth make an earthquake of nobility. +O, what a noble combat hast thou fought +Between compulsion and a brave respect! +Let me wipe off this honourable dew, +That silverly doth progress on thy cheeks: +My heart hath melted at a lady's tears, +Being an ordinary inundation; +But this effusion of such manly drops, +This shower, blown up by tempest of the soul, +Startles mine eyes, and makes me more amazed +Than had I seen the vaulty top of heaven +Figured quite o'er with burning meteors. +Lift up thy brow, renowned Salisbury, +And with a great heart heave away the storm: +Commend these waters to those baby eyes +That never saw the giant world enraged; +Nor met with fortune other than at feasts, +Full of warm blood, of mirth, of gossiping. +Come, come; for thou shalt thrust thy hand as deep +Into the purse of rich prosperity +As Lewis himself: so, nobles, shall you all, +That knit your sinews to the strength of mine. +And even there, methinks, an angel spake: +Look, where the holy legate comes apace, +To give us warrant from the hand of heaven +And on our actions set the name of right +With holy breath. + +CARDINAL PANDULPH: +Hail, noble prince of France! +The next is this, King John hath reconciled +Himself to Rome; his spirit is come in, +That so stood out against the holy church, +The great metropolis and see of Rome: +Therefore thy threatening colours now wind up; +And tame the savage spirit of wild war, +That like a lion foster'd up at hand, +It may lie gently at the foot of peace, +And be no further harmful than in show. + +LEWIS: +Your grace shall pardon me, I will not back: +I am too high-born to be propertied, +To be a secondary at control, +Or useful serving-man and instrument, +To any sovereign state throughout the world. +Your breath first kindled the dead coal of wars +Between this chastised kingdom and myself, +And brought in matter that should feed this fire; +And now 'tis far too huge to be blown out +With that same weak wind which enkindled it. +You taught me how to know the face of right, +Acquainted me with interest to this land, +Yea, thrust this enterprise into my heart; +And come ye now to tell me John hath made +His peace with Rome? What is that peace to me? +I, by the honour of my marriage-bed, +After young Arthur, claim this land for mine; +And, now it is half-conquer'd, must I back +Because that John hath made his peace with Rome? +Am I Rome's slave? What penny hath Rome borne, +What men provided, what munition sent, +To underprop this action? Is't not I +That undergo this charge? who else but I, +And such as to my claim are liable, +Sweat in this business and maintain this war? +Have I not heard these islanders shout out +'Vive le roi!' as I have bank'd their towns? +Have I not here the best cards for the game, +To win this easy match play'd for a crown? +And shall I now give o'er the yielded set? +No, no, on my soul, it never shall be said. + +CARDINAL PANDULPH: +You look but on the outside of this work. + +LEWIS: +Outside or inside, I will not return +Till my attempt so much be glorified +As to my ample hope was promised +Before I drew this gallant head of war, +And cull'd these fiery spirits from the world, +To outlook conquest and to win renown +Even in the jaws of danger and of death. +What lusty trumpet thus doth summon us? + +BASTARD: +According to the fair play of the world, +Let me have audience; I am sent to speak: +My holy lord of Milan, from the king +I come, to learn how you have dealt for him; +And, as you answer, I do know the scope +And warrant limited unto my tongue. + +CARDINAL PANDULPH: +The Dauphin is too wilful-opposite, +And will not temporize with my entreaties; +He flatly says he'll not lay down his arms. + +BASTARD: +By all the blood that ever fury breathed, +The youth says well. Now hear our English king; +For thus his royalty doth speak in me. +He is prepared, and reason too he should: +This apish and unmannerly approach, +This harness'd masque and unadvised revel, +This unhair'd sauciness and boyish troops, +The king doth smile at; and is well prepared +To whip this dwarfish war, these pigmy arms, +From out the circle of his territories. +That hand which had the strength, even at your door, +To cudgel you and make you take the hatch, +To dive like buckets in concealed wells, +To crouch in litter of your stable planks, +To lie like pawns lock'd up in chests and trunks, +To hug with swine, to seek sweet safety out +In vaults and prisons, and to thrill and shake +Even at the crying of your nation's crow, +Thinking his voice an armed Englishman; +Shall that victorious hand be feebled here, +That in your chambers gave you chastisement? +No: know the gallant monarch is in arms +And like an eagle o'er his aery towers, +To souse annoyance that comes near his nest. +And you degenerate, you ingrate revolts, +You bloody Neroes, ripping up the womb +Of your dear mother England, blush for shame; +For your own ladies and pale-visaged maids +Like Amazons come tripping after drums, +Their thimbles into armed gauntlets change, +Their needles to lances, and their gentle hearts +To fierce and bloody inclination. + +LEWIS: +There end thy brave, and turn thy face in peace; +We grant thou canst outscold us: fare thee well; +We hold our time too precious to be spent +With such a brabbler. + +CARDINAL PANDULPH: +Give me leave to speak. + +BASTARD: +No, I will speak. + +LEWIS: +We will attend to neither. +Strike up the drums; and let the tongue of war +Plead for our interest and our being here. + +BASTARD: +Indeed your drums, being beaten, will cry out; +And so shall you, being beaten: do but start +An echo with the clamour of thy drum, +And even at hand a drum is ready braced +That shall reverberate all as loud as thine; +Sound but another, and another shall +As loud as thine rattle the welkin's ear +And mock the deep-mouth'd thunder: for at hand, +Not trusting to this halting legate here, +Whom he hath used rather for sport than need +Is warlike John; and in his forehead sits +A bare-ribb'd death, whose office is this day +To feast upon whole thousands of the French. + +LEWIS: +Strike up our drums, to find this danger out. + +BASTARD: +And thou shalt find it, Dauphin, do not doubt. + +KING JOHN: +How goes the day with us? O, tell me, Hubert. + +HUBERT: +Badly, I fear. How fares your majesty? + +KING JOHN: +This fever, that hath troubled me so long, +Lies heavy on me; O, my heart is sick! + +Messenger: +My lord, your valiant kinsman, Faulconbridge, +Desires your majesty to leave the field +And send him word by me which way you go. + +KING JOHN: +Tell him, toward Swinstead, to the abbey there. + +Messenger: +Be of good comfort; for the great supply +That was expected by the Dauphin here, +Are wreck'd three nights ago on Goodwin Sands. +This news was brought to Richard but even now: +The French fight coldly, and retire themselves. + +KING JOHN: +Ay me! this tyrant fever burns me up, +And will not let me welcome this good news. +Set on toward Swinstead: to my litter straight; +Weakness possesseth me, and I am faint. + +SALISBURY: +I did not think the king so stored with friends. + +PEMBROKE: +Up once again; put spirit in the French: +If they miscarry, we miscarry too. + +SALISBURY: +That misbegotten devil, Faulconbridge, +In spite of spite, alone upholds the day. + +PEMBROKE: +They say King John sore sick hath left the field. + +MELUN: +Lead me to the revolts of England here. + +SALISBURY: +When we were happy we had other names. + +PEMBROKE: +It is the Count Melun. + +SALISBURY: +Wounded to death. + +MELUN: +Fly, noble English, you are bought and sold; +Unthread the rude eye of rebellion +And welcome home again discarded faith. +Seek out King John and fall before his feet; +For if the French be lords of this loud day, +He means to recompense the pains you take +By cutting off your heads: thus hath he sworn +And I with him, and many moe with me, +Upon the altar at Saint Edmundsbury; +Even on that altar where we swore to you +Dear amity and everlasting love. + +SALISBURY: +May this be possible? may this be true? + +MELUN: +Have I not hideous death within my view, +Retaining but a quantity of life, +Which bleeds away, even as a form of wax +Resolveth from his figure 'gainst the fire? +What in the world should make me now deceive, +Since I must lose the use of all deceit? +Why should I then be false, since it is true +That I must die here and live hence by truth? +I say again, if Lewis do win the day, +He is forsworn, if e'er those eyes of yours +Behold another day break in the east: +But even this night, whose black contagious breath +Already smokes about the burning crest +Of the old, feeble and day-wearied sun, +Even this ill night, your breathing shall expire, +Paying the fine of rated treachery +Even with a treacherous fine of all your lives, +If Lewis by your assistance win the day. +Commend me to one Hubert with your king: +The love of him, and this respect besides, +For that my grandsire was an Englishman, +Awakes my conscience to confess all this. +In lieu whereof, I pray you, bear me hence +From forth the noise and rumour of the field, +Where I may think the remnant of my thoughts +In peace, and part this body and my soul +With contemplation and devout desires. + +SALISBURY: +We do believe thee: and beshrew my soul +But I do love the favour and the form +Of this most fair occasion, by the which +We will untread the steps of damned flight, +And like a bated and retired flood, +Leaving our rankness and irregular course, +Stoop low within those bounds we have o'erlook'd +And cabby run on in obedience +Even to our ocean, to our great King John. +My arm shall give thee help to bear thee hence; +For I do see the cruel pangs of death +Right in thine eye. Away, my friends! New flight; +And happy newness, that intends old right. + +LEWIS: +The sun of heaven methought was loath to set, +But stay'd and made the western welkin blush, +When English measure backward their own ground +In faint retire. O, bravely came we off, +When with a volley of our needless shot, +After such bloody toil, we bid good night; +And wound our tattering colours clearly up, +Last in the field, and almost lords of it! + +Messenger: +Where is my prince, the Dauphin? + +LEWIS: +Here: what news? + +Messenger: +The Count Melun is slain; the English lords +By his persuasion are again fall'n off, +And your supply, which you have wish'd so long, +Are cast away and sunk on Goodwin Sands. + +LEWIS: +Ah, foul shrewd news! beshrew thy very heart! +I did not think to be so sad to-night +As this hath made me. Who was he that said +King John did fly an hour or two before +The stumbling night did part our weary powers? + +Messenger: +Whoever spoke it, it is true, my lord. + +LEWIS: +Well; keep good quarter and good care to-night: +The day shall not be up so soon as I, +To try the fair adventure of to-morrow. + +HUBERT: +Who's there? speak, ho! speak quickly, or I shoot. + +BASTARD: +A friend. What art thou? + +HUBERT: +Of the part of England. + +BASTARD: +Whither dost thou go? + +HUBERT: +What's that to thee? why may not I demand +Of thine affairs, as well as thou of mine? + +BASTARD: +Hubert, I think? + +HUBERT: +Thou hast a perfect thought: +I will upon all hazards well believe +Thou art my friend, that know'st my tongue so well. +Who art thou? + +BASTARD: +Who thou wilt: and if thou please, +Thou mayst befriend me so much as to think +I come one way of the Plantagenets. + +HUBERT: +Unkind remembrance! thou and eyeless night +Have done me shame: brave soldier, pardon me, +That any accent breaking from thy tongue +Should 'scape the true acquaintance of mine ear. + +BASTARD: +Come, come; sans compliment, what news abroad? + +HUBERT: +Why, here walk I in the black brow of night, +To find you out. + +BASTARD: +Brief, then; and what's the news? + +HUBERT: +O, my sweet sir, news fitting to the night, +Black, fearful, comfortless and horrible. + +BASTARD: +Show me the very wound of this ill news: +I am no woman, I'll not swoon at it. + +HUBERT: +The king, I fear, is poison'd by a monk: +I left him almost speechless; and broke out +To acquaint you with this evil, that you might +The better arm you to the sudden time, +Than if you had at leisure known of this. + +BASTARD: +How did he take it? who did taste to him? + +HUBERT: +A monk, I tell you; a resolved villain, +Whose bowels suddenly burst out: the king +Yet speaks and peradventure may recover. + +BASTARD: +Who didst thou leave to tend his majesty? + +HUBERT: +Why, know you not? the lords are all come back, +And brought Prince Henry in their company; +At whose request the king hath pardon'd them, +And they are all about his majesty. + +BASTARD: +Withhold thine indignation, mighty heaven, +And tempt us not to bear above our power! +I'll tell tree, Hubert, half my power this night, +Passing these flats, are taken by the tide; +These Lincoln Washes have devoured them; +Myself, well mounted, hardly have escaped. +Away before: conduct me to the king; +I doubt he will be dead or ere I come. + +PRINCE HENRY: +It is too late: the life of all his blood +Is touch'd corruptibly, and his pure brain, +Which some suppose the soul's frail dwelling-house, +Doth by the idle comments that it makes +Foretell the ending of mortality. + +PEMBROKE: +His highness yet doth speak, and holds belief +That, being brought into the open air, +It would allay the burning quality +Of that fell poison which assaileth him. + +PRINCE HENRY: +Let him be brought into the orchard here. +Doth he still rage? + +PEMBROKE: +He is more patient +Than when you left him; even now he sung. + +PRINCE HENRY: +O vanity of sickness! fierce extremes +In their continuance will not feel themselves. +Death, having prey'd upon the outward parts, +Leaves them invisible, and his siege is now +Against the mind, the which he pricks and wounds +With many legions of strange fantasies, +Which, in their throng and press to that last hold, +Confound themselves. 'Tis strange that death +should sing. +I am the cygnet to this pale faint swan, +Who chants a doleful hymn to his own death, +And from the organ-pipe of frailty sings +His soul and body to their lasting rest. + +SALISBURY: +Be of good comfort, prince; for you are born +To set a form upon that indigest +Which he hath left so shapeless and so rude. + +KING JOHN: +Ay, marry, now my soul hath elbow-room; +It would not out at windows nor at doors. +There is so hot a summer in my bosom, +That all my bowels crumble up to dust: +I am a scribbled form, drawn with a pen +Upon a parchment, and against this fire +Do I shrink up. + +PRINCE HENRY: +How fares your majesty? + +KING JOHN: +Poison'd,--ill fare--dead, forsook, cast off: +And none of you will bid the winter come +To thrust his icy fingers in my maw, +Nor let my kingdom's rivers take their course +Through my burn'd bosom, nor entreat the north +To make his bleak winds kiss my parched lips +And comfort me with cold. I do not ask you much, +I beg cold comfort; and you are so strait +And so ingrateful, you deny me that. + +PRINCE HENRY: +O that there were some virtue in my tears, +That might relieve you! + +KING JOHN: +The salt in them is hot. +Within me is a hell; and there the poison +Is as a fiend confined to tyrannize +On unreprievable condemned blood. + +BASTARD: +O, I am scalded with my violent motion, +And spleen of speed to see your majesty! + +KING JOHN: +O cousin, thou art come to set mine eye: +The tackle of my heart is crack'd and burn'd, +And all the shrouds wherewith my life should sail +Are turned to one thread, one little hair: +My heart hath one poor string to stay it by, +Which holds but till thy news be uttered; +And then all this thou seest is but a clod +And module of confounded royalty. + +BASTARD: +The Dauphin is preparing hitherward, +Where heaven He knows how we shall answer him; +For in a night the best part of my power, +As I upon advantage did remove, +Were in the Washes all unwarily +Devoured by the unexpected flood. + +SALISBURY: +You breathe these dead news in as dead an ear. +My liege! my lord! but now a king, now thus. + +PRINCE HENRY: +Even so must I run on, and even so stop. +What surety of the world, what hope, what stay, +When this was now a king, and now is clay? + +BASTARD: +Art thou gone so? I do but stay behind +To do the office for thee of revenge, +And then my soul shall wait on thee to heaven, +As it on earth hath been thy servant still. +Now, now, you stars that move in your right spheres, +Where be your powers? show now your mended faiths, +And instantly return with me again, +To push destruction and perpetual shame +Out of the weak door of our fainting land. +Straight let us seek, or straight we shall be sought; +The Dauphin rages at our very heels. + +SALISBURY: +It seems you know not, then, so much as we: +The Cardinal Pandulph is within at rest, +Who half an hour since came from the Dauphin, +And brings from him such offers of our peace +As we with honour and respect may take, +With purpose presently to leave this war. + +BASTARD: +He will the rather do it when he sees +Ourselves well sinewed to our defence. + +SALISBURY: +Nay, it is in a manner done already; +For many carriages he hath dispatch'd +To the sea-side, and put his cause and quarrel +To the disposing of the cardinal: +With whom yourself, myself and other lords, +If you think meet, this afternoon will post +To consummate this business happily. + +BASTARD: +Let it be so: and you, my noble prince, +With other princes that may best be spared, +Shall wait upon your father's funeral. + +PRINCE HENRY: +At Worcester must his body be interr'd; +For so he will'd it. + +BASTARD: +Thither shall it then: +And happily may your sweet self put on +The lineal state and glory of the land! +To whom with all submission, on my knee +I do bequeath my faithful services +And true subjection everlastingly. + +SALISBURY: +And the like tender of our love we make, +To rest without a spot for evermore. + +PRINCE HENRY: +I have a kind soul that would give you thanks +And knows not how to do it but with tears. + +BASTARD: +O, let us pay the time but needful woe, +Since it hath been beforehand with our griefs. +This England never did, nor never shall, +Lie at the proud foot of a conqueror, +But when it first did help to wound itself. +Now these her princes are come home again, +Come the three corners of the world in arms, +And we shall shock them. Nought shall make us rue, +If England to itself do rest but true. \ No newline at end of file diff --git a/ML/Projects/text_generation_babynames/data/shakespeare_tiny.txt b/ML/Projects/text_generation_babynames/data/shakespeare_tiny.txt new file mode 100644 index 0000000..952b00b --- /dev/null +++ b/ML/Projects/text_generation_babynames/data/shakespeare_tiny.txt @@ -0,0 +1,40000 @@ +First Citizen: +Before we proceed any further, hear me speak. + +All: +Speak, speak. + +First Citizen: +You are all resolved rather to die than to famish? + +All: +Resolved. resolved. + +First Citizen: +First, you know Caius Marcius is chief enemy to the people. + +All: +We know't, we know't. + +First Citizen: +Let us kill him, and we'll have corn at our own price. +Is't a verdict? + +All: +No more talking on't; let it be done: away, away! + +Second Citizen: +One word, good citizens. + +First Citizen: +We are accounted poor citizens, the patricians good. +What authority surfeits on would relieve us: if they +would yield us but the superfluity, while it were +wholesome, we might guess they relieved us humanely; +but they think we are too dear: the leanness that +afflicts us, the object of our misery, is as an +inventory to particularise their abundance; our +sufferance is a gain to them Let us revenge this with +our pikes, ere we become rakes: for the gods know I +speak this in hunger for bread, not in thirst for revenge. + +Second Citizen: +Would you proceed especially against Caius Marcius? + +All: +Against him first: he's a very dog to the commonalty. + +Second Citizen: +Consider you what services he has done for his country? + +First Citizen: +Very well; and could be content to give him good +report fort, but that he pays himself with being proud. + +Second Citizen: +Nay, but speak not maliciously. + +First Citizen: +I say unto you, what he hath done famously, he did +it to that end: though soft-conscienced men can be +content to say it was for his country he did it to +please his mother and to be partly proud; which he +is, even till the altitude of his virtue. + +Second Citizen: +What he cannot help in his nature, you account a +vice in him. You must in no way say he is covetous. + +First Citizen: +If I must not, I need not be barren of accusations; +he hath faults, with surplus, to tire in repetition. +What shouts are these? The other side o' the city +is risen: why stay we prating here? to the Capitol! + +All: +Come, come. + +First Citizen: +Soft! who comes here? + +Second Citizen: +Worthy Menenius Agrippa; one that hath always loved +the people. + +First Citizen: +He's one honest enough: would all the rest were so! + +MENENIUS: +What work's, my countrymen, in hand? where go you +With bats and clubs? The matter? speak, I pray you. + +First Citizen: +Our business is not unknown to the senate; they have +had inkling this fortnight what we intend to do, +which now we'll show 'em in deeds. They say poor +suitors have strong breaths: they shall know we +have strong arms too. + +MENENIUS: +Why, masters, my good friends, mine honest neighbours, +Will you undo yourselves? + +First Citizen: +We cannot, sir, we are undone already. + +MENENIUS: +I tell you, friends, most charitable care +Have the patricians of you. For your wants, +Your suffering in this dearth, you may as well +Strike at the heaven with your staves as lift them +Against the Roman state, whose course will on +The way it takes, cracking ten thousand curbs +Of more strong link asunder than can ever +Appear in your impediment. For the dearth, +The gods, not the patricians, make it, and +Your knees to them, not arms, must help. Alack, +You are transported by calamity +Thither where more attends you, and you slander +The helms o' the state, who care for you like fathers, +When you curse them as enemies. + +First Citizen: +Care for us! True, indeed! They ne'er cared for us +yet: suffer us to famish, and their store-houses +crammed with grain; make edicts for usury, to +support usurers; repeal daily any wholesome act +established against the rich, and provide more +piercing statutes daily, to chain up and restrain +the poor. If the wars eat us not up, they will; and +there's all the love they bear us. + +MENENIUS: +Either you must +Confess yourselves wondrous malicious, +Or be accused of folly. I shall tell you +A pretty tale: it may be you have heard it; +But, since it serves my purpose, I will venture +To stale 't a little more. + +First Citizen: +Well, I'll hear it, sir: yet you must not think to +fob off our disgrace with a tale: but, an 't please +you, deliver. + +MENENIUS: +There was a time when all the body's members +Rebell'd against the belly, thus accused it: +That only like a gulf it did remain +I' the midst o' the body, idle and unactive, +Still cupboarding the viand, never bearing +Like labour with the rest, where the other instruments +Did see and hear, devise, instruct, walk, feel, +And, mutually participate, did minister +Unto the appetite and affection common +Of the whole body. The belly answer'd-- + +First Citizen: +Well, sir, what answer made the belly? + +MENENIUS: +Sir, I shall tell you. With a kind of smile, +Which ne'er came from the lungs, but even thus-- +For, look you, I may make the belly smile +As well as speak--it tauntingly replied +To the discontented members, the mutinous parts +That envied his receipt; even so most fitly +As you malign our senators for that +They are not such as you. + +First Citizen: +Your belly's answer? What! +The kingly-crowned head, the vigilant eye, +The counsellor heart, the arm our soldier, +Our steed the leg, the tongue our trumpeter. +With other muniments and petty helps +In this our fabric, if that they-- + +MENENIUS: +What then? +'Fore me, this fellow speaks! What then? what then? + +First Citizen: +Should by the cormorant belly be restrain'd, +Who is the sink o' the body,-- + +MENENIUS: +Well, what then? + +First Citizen: +The former agents, if they did complain, +What could the belly answer? + +MENENIUS: +I will tell you +If you'll bestow a small--of what you have little-- +Patience awhile, you'll hear the belly's answer. + +First Citizen: +Ye're long about it. + +MENENIUS: +Note me this, good friend; +Your most grave belly was deliberate, +Not rash like his accusers, and thus answer'd: +'True is it, my incorporate friends,' quoth he, +'That I receive the general food at first, +Which you do live upon; and fit it is, +Because I am the store-house and the shop +Of the whole body: but, if you do remember, +I send it through the rivers of your blood, +Even to the court, the heart, to the seat o' the brain; +And, through the cranks and offices of man, +The strongest nerves and small inferior veins +From me receive that natural competency +Whereby they live: and though that all at once, +You, my good friends,'--this says the belly, mark me,-- + +First Citizen: +Ay, sir; well, well. + +MENENIUS: +'Though all at once cannot +See what I do deliver out to each, +Yet I can make my audit up, that all +From me do back receive the flour of all, +And leave me but the bran.' What say you to't? + +First Citizen: +It was an answer: how apply you this? + +MENENIUS: +The senators of Rome are this good belly, +And you the mutinous members; for examine +Their counsels and their cares, digest things rightly +Touching the weal o' the common, you shall find +No public benefit which you receive +But it proceeds or comes from them to you +And no way from yourselves. What do you think, +You, the great toe of this assembly? + +First Citizen: +I the great toe! why the great toe? + +MENENIUS: +For that, being one o' the lowest, basest, poorest, +Of this most wise rebellion, thou go'st foremost: +Thou rascal, that art worst in blood to run, +Lead'st first to win some vantage. +But make you ready your stiff bats and clubs: +Rome and her rats are at the point of battle; +The one side must have bale. +Hail, noble Marcius! + +MARCIUS: +Thanks. What's the matter, you dissentious rogues, +That, rubbing the poor itch of your opinion, +Make yourselves scabs? + +First Citizen: +We have ever your good word. + +MARCIUS: +He that will give good words to thee will flatter +Beneath abhorring. What would you have, you curs, +That like nor peace nor war? the one affrights you, +The other makes you proud. He that trusts to you, +Where he should find you lions, finds you hares; +Where foxes, geese: you are no surer, no, +Than is the coal of fire upon the ice, +Or hailstone in the sun. Your virtue is +To make him worthy whose offence subdues him +And curse that justice did it. +Who deserves greatness +Deserves your hate; and your affections are +A sick man's appetite, who desires most that +Which would increase his evil. He that depends +Upon your favours swims with fins of lead +And hews down oaks with rushes. Hang ye! Trust Ye? +With every minute you do change a mind, +And call him noble that was now your hate, +Him vile that was your garland. What's the matter, +That in these several places of the city +You cry against the noble senate, who, +Under the gods, keep you in awe, which else +Would feed on one another? What's their seeking? + +MENENIUS: +For corn at their own rates; whereof, they say, +The city is well stored. + +MARCIUS: +Hang 'em! They say! +They'll sit by the fire, and presume to know +What's done i' the Capitol; who's like to rise, +Who thrives and who declines; side factions +and give out +Conjectural marriages; making parties strong +And feebling such as stand not in their liking +Below their cobbled shoes. They say there's +grain enough! +Would the nobility lay aside their ruth, +And let me use my sword, I'll make a quarry +With thousands of these quarter'd slaves, as high +As I could pick my lance. + +MENENIUS: +Nay, these are almost thoroughly persuaded; +For though abundantly they lack discretion, +Yet are they passing cowardly. But, I beseech you, +What says the other troop? + +MARCIUS: +They are dissolved: hang 'em! +They said they were an-hungry; sigh'd forth proverbs, +That hunger broke stone walls, that dogs must eat, +That meat was made for mouths, that the gods sent not +Corn for the rich men only: with these shreds +They vented their complainings; which being answer'd, +And a petition granted them, a strange one-- +To break the heart of generosity, +And make bold power look pale--they threw their caps +As they would hang them on the horns o' the moon, +Shouting their emulation. + +MENENIUS: +What is granted them? + +MARCIUS: +Five tribunes to defend their vulgar wisdoms, +Of their own choice: one's Junius Brutus, +Sicinius Velutus, and I know not--'Sdeath! +The rabble should have first unroof'd the city, +Ere so prevail'd with me: it will in time +Win upon power and throw forth greater themes +For insurrection's arguing. + +MENENIUS: +This is strange. + +MARCIUS: +Go, get you home, you fragments! + +Messenger: +Where's Caius Marcius? + +MARCIUS: +Here: what's the matter? + +Messenger: +The news is, sir, the Volsces are in arms. + +MARCIUS: +I am glad on 't: then we shall ha' means to vent +Our musty superfluity. See, our best elders. + +First Senator: +Marcius, 'tis true that you have lately told us; +The Volsces are in arms. + +MARCIUS: +They have a leader, +Tullus Aufidius, that will put you to 't. +I sin in envying his nobility, +And were I any thing but what I am, +I would wish me only he. + +COMINIUS: +You have fought together. + +MARCIUS: +Were half to half the world by the ears and he. +Upon my party, I'ld revolt to make +Only my wars with him: he is a lion +That I am proud to hunt. + +First Senator: +Then, worthy Marcius, +Attend upon Cominius to these wars. + +COMINIUS: +It is your former promise. + +MARCIUS: +Sir, it is; +And I am constant. Titus Lartius, thou +Shalt see me once more strike at Tullus' face. +What, art thou stiff? stand'st out? + +TITUS: +No, Caius Marcius; +I'll lean upon one crutch and fight with t'other, +Ere stay behind this business. + +MENENIUS: +O, true-bred! + +First Senator: +Your company to the Capitol; where, I know, +Our greatest friends attend us. + +TITUS: + +COMINIUS: +Noble Marcius! + +First Senator: + +MARCIUS: +Nay, let them follow: +The Volsces have much corn; take these rats thither +To gnaw their garners. Worshipful mutiners, +Your valour puts well forth: pray, follow. + +SICINIUS: +Was ever man so proud as is this Marcius? + +BRUTUS: +He has no equal. + +SICINIUS: +When we were chosen tribunes for the people,-- + +BRUTUS: +Mark'd you his lip and eyes? + +SICINIUS: +Nay. but his taunts. + +BRUTUS: +Being moved, he will not spare to gird the gods. + +SICINIUS: +Be-mock the modest moon. + +BRUTUS: +The present wars devour him: he is grown +Too proud to be so valiant. + +SICINIUS: +Such a nature, +Tickled with good success, disdains the shadow +Which he treads on at noon: but I do wonder +His insolence can brook to be commanded +Under Cominius. + +BRUTUS: +Fame, at the which he aims, +In whom already he's well graced, can not +Better be held nor more attain'd than by +A place below the first: for what miscarries +Shall be the general's fault, though he perform +To the utmost of a man, and giddy censure +Will then cry out of Marcius 'O if he +Had borne the business!' + +SICINIUS: +Besides, if things go well, +Opinion that so sticks on Marcius shall +Of his demerits rob Cominius. + +BRUTUS: +Come: +Half all Cominius' honours are to Marcius. +Though Marcius earned them not, and all his faults +To Marcius shall be honours, though indeed +In aught he merit not. + +SICINIUS: +Let's hence, and hear +How the dispatch is made, and in what fashion, +More than his singularity, he goes +Upon this present action. + +BRUTUS: +Lets along. + +First Senator: +So, your opinion is, Aufidius, +That they of Rome are entered in our counsels +And know how we proceed. + +AUFIDIUS: +Is it not yours? +What ever have been thought on in this state, +That could be brought to bodily act ere Rome +Had circumvention? 'Tis not four days gone +Since I heard thence; these are the words: I think +I have the letter here; yes, here it is. +'They have press'd a power, but it is not known +Whether for east or west: the dearth is great; +The people mutinous; and it is rumour'd, +Cominius, Marcius your old enemy, +Who is of Rome worse hated than of you, +And Titus Lartius, a most valiant Roman, +These three lead on this preparation +Whither 'tis bent: most likely 'tis for you: +Consider of it.' + +First Senator: +Our army's in the field +We never yet made doubt but Rome was ready +To answer us. + +AUFIDIUS: +Nor did you think it folly +To keep your great pretences veil'd till when +They needs must show themselves; which +in the hatching, +It seem'd, appear'd to Rome. By the discovery. +We shall be shorten'd in our aim, which was +To take in many towns ere almost Rome +Should know we were afoot. + +Second Senator: +Noble Aufidius, +Take your commission; hie you to your bands: +Let us alone to guard Corioli: +If they set down before 's, for the remove +Bring your army; but, I think, you'll find +They've not prepared for us. + +AUFIDIUS: +O, doubt not that; +I speak from certainties. Nay, more, +Some parcels of their power are forth already, +And only hitherward. I leave your honours. +If we and Caius Marcius chance to meet, +'Tis sworn between us we shall ever strike +Till one can do no more. + +All: +The gods assist you! + +AUFIDIUS: +And keep your honours safe! + +First Senator: +Farewell. + +Second Senator: +Farewell. + +All: +Farewell. + +VOLUMNIA: +I pray you, daughter, sing; or express yourself in a +more comfortable sort: if my son were my husband, I +should freelier rejoice in that absence wherein he +won honour than in the embracements of his bed where +he would show most love. When yet he was but +tender-bodied and the only son of my womb, when +youth with comeliness plucked all gaze his way, when +for a day of kings' entreaties a mother should not +sell him an hour from her beholding, I, considering +how honour would become such a person. that it was +no better than picture-like to hang by the wall, if +renown made it not stir, was pleased to let him seek +danger where he was like to find fame. To a cruel +war I sent him; from whence he returned, his brows +bound with oak. I tell thee, daughter, I sprang not +more in joy at first hearing he was a man-child +than now in first seeing he had proved himself a +man. + +VIRGILIA: +But had he died in the business, madam; how then? + +VOLUMNIA: +Then his good report should have been my son; I +therein would have found issue. Hear me profess +sincerely: had I a dozen sons, each in my love +alike and none less dear than thine and my good +Marcius, I had rather had eleven die nobly for their +country than one voluptuously surfeit out of action. + +Gentlewoman: +Madam, the Lady Valeria is come to visit you. + +VIRGILIA: +Beseech you, give me leave to retire myself. + +VOLUMNIA: +Indeed, you shall not. +Methinks I hear hither your husband's drum, +See him pluck Aufidius down by the hair, +As children from a bear, the Volsces shunning him: +Methinks I see him stamp thus, and call thus: +'Come on, you cowards! you were got in fear, +Though you were born in Rome:' his bloody brow +With his mail'd hand then wiping, forth he goes, +Like to a harvest-man that's task'd to mow +Or all or lose his hire. + +VIRGILIA: +His bloody brow! O Jupiter, no blood! + +VOLUMNIA: +Away, you fool! it more becomes a man +Than gilt his trophy: the breasts of Hecuba, +When she did suckle Hector, look'd not lovelier +Than Hector's forehead when it spit forth blood +At Grecian sword, contemning. Tell Valeria, +We are fit to bid her welcome. + +VIRGILIA: +Heavens bless my lord from fell Aufidius! + +VOLUMNIA: +He'll beat Aufidius 'head below his knee +And tread upon his neck. + +VALERIA: +My ladies both, good day to you. + +VOLUMNIA: +Sweet madam. + +VIRGILIA: +I am glad to see your ladyship. + +VALERIA: +How do you both? you are manifest house-keepers. +What are you sewing here? A fine spot, in good +faith. How does your little son? + +VIRGILIA: +I thank your ladyship; well, good madam. + +VOLUMNIA: +He had rather see the swords, and hear a drum, than +look upon his school-master. + +VALERIA: +O' my word, the father's son: I'll swear,'tis a +very pretty boy. O' my troth, I looked upon him o' +Wednesday half an hour together: has such a +confirmed countenance. I saw him run after a gilded +butterfly: and when he caught it, he let it go +again; and after it again; and over and over he +comes, and again; catched it again; or whether his +fall enraged him, or how 'twas, he did so set his +teeth and tear it; O, I warrant it, how he mammocked +it! + +VOLUMNIA: +One on 's father's moods. + +VALERIA: +Indeed, la, 'tis a noble child. + +VIRGILIA: +A crack, madam. + +VALERIA: +Come, lay aside your stitchery; I must have you play +the idle husewife with me this afternoon. + +VIRGILIA: +No, good madam; I will not out of doors. + +VALERIA: +Not out of doors! + +VOLUMNIA: +She shall, she shall. + +VIRGILIA: +Indeed, no, by your patience; I'll not over the +threshold till my lord return from the wars. + +VALERIA: +Fie, you confine yourself most unreasonably: come, +you must go visit the good lady that lies in. + +VIRGILIA: +I will wish her speedy strength, and visit her with +my prayers; but I cannot go thither. + +VOLUMNIA: +Why, I pray you? + +VIRGILIA: +'Tis not to save labour, nor that I want love. + +VALERIA: +You would be another Penelope: yet, they say, all +the yarn she spun in Ulysses' absence did but fill +Ithaca full of moths. Come; I would your cambric +were sensible as your finger, that you might leave +pricking it for pity. Come, you shall go with us. + +VIRGILIA: +No, good madam, pardon me; indeed, I will not forth. + +VALERIA: +In truth, la, go with me; and I'll tell you +excellent news of your husband. + +VIRGILIA: +O, good madam, there can be none yet. + +VALERIA: +Verily, I do not jest with you; there came news from +him last night. + +VIRGILIA: +Indeed, madam? + +VALERIA: +In earnest, it's true; I heard a senator speak it. +Thus it is: the Volsces have an army forth; against +whom Cominius the general is gone, with one part of +our Roman power: your lord and Titus Lartius are set +down before their city Corioli; they nothing doubt +prevailing and to make it brief wars. This is true, +on mine honour; and so, I pray, go with us. + +VIRGILIA: +Give me excuse, good madam; I will obey you in every +thing hereafter. + +VOLUMNIA: +Let her alone, lady: as she is now, she will but +disease our better mirth. + +VALERIA: +In troth, I think she would. Fare you well, then. +Come, good sweet lady. Prithee, Virgilia, turn thy +solemness out o' door. and go along with us. + +VIRGILIA: +No, at a word, madam; indeed, I must not. I wish +you much mirth. + +VALERIA: +Well, then, farewell. + +MARCIUS: +Yonder comes news. A wager they have met. + +LARTIUS: +My horse to yours, no. + +MARCIUS: +'Tis done. + +LARTIUS: +Agreed. + +MARCIUS: +Say, has our general met the enemy? + +Messenger: +They lie in view; but have not spoke as yet. + +LARTIUS: +So, the good horse is mine. + +MARCIUS: +I'll buy him of you. + +LARTIUS: +No, I'll nor sell nor give him: lend you him I will +For half a hundred years. Summon the town. + +MARCIUS: +How far off lie these armies? + +Messenger: +Within this mile and half. + +MARCIUS: +Then shall we hear their 'larum, and they ours. +Now, Mars, I prithee, make us quick in work, +That we with smoking swords may march from hence, +To help our fielded friends! Come, blow thy blast. +Tutus Aufidius, is he within your walls? + +First Senator: +No, nor a man that fears you less than he, +That's lesser than a little. +Hark! our drums +Are bringing forth our youth. We'll break our walls, +Rather than they shall pound us up: our gates, +Which yet seem shut, we, have but pinn'd with rushes; +They'll open of themselves. +Hark you. far off! +There is Aufidius; list, what work he makes +Amongst your cloven army. + +MARCIUS: +O, they are at it! + +LARTIUS: +Their noise be our instruction. Ladders, ho! + +MARCIUS: +They fear us not, but issue forth their city. +Now put your shields before your hearts, and fight +With hearts more proof than shields. Advance, +brave Titus: +They do disdain us much beyond our thoughts, +Which makes me sweat with wrath. Come on, my fellows: +He that retires I'll take him for a Volsce, +And he shall feel mine edge. + +MARCIUS: +All the contagion of the south light on you, +You shames of Rome! you herd of--Boils and plagues +Plaster you o'er, that you may be abhorr'd +Further than seen and one infect another +Against the wind a mile! You souls of geese, +That bear the shapes of men, how have you run +From slaves that apes would beat! Pluto and hell! +All hurt behind; backs red, and faces pale +With flight and agued fear! Mend and charge home, +Or, by the fires of heaven, I'll leave the foe +And make my wars on you: look to't: come on; +If you'll stand fast, we'll beat them to their wives, +As they us to our trenches followed. +So, now the gates are ope: now prove good seconds: +'Tis for the followers fortune widens them, +Not for the fliers: mark me, and do the like. + +First Soldier: +Fool-hardiness; not I. + +Second Soldier: +Nor I. + +First Soldier: +See, they have shut him in. + +All: +To the pot, I warrant him. + +LARTIUS: +What is become of Marcius? + +All: +Slain, sir, doubtless. + +First Soldier: +Following the fliers at the very heels, +With them he enters; who, upon the sudden, +Clapp'd to their gates: he is himself alone, +To answer all the city. + +LARTIUS: +O noble fellow! +Who sensibly outdares his senseless sword, +And, when it bows, stands up. Thou art left, Marcius: +A carbuncle entire, as big as thou art, +Were not so rich a jewel. Thou wast a soldier +Even to Cato's wish, not fierce and terrible +Only in strokes; but, with thy grim looks and +The thunder-like percussion of thy sounds, +Thou madst thine enemies shake, as if the world +Were feverous and did tremble. + +First Soldier: +Look, sir. + +LARTIUS: +O,'tis Marcius! +Let's fetch him off, or make remain alike. + +First Roman: +This will I carry to Rome. + +Second Roman: +And I this. + +Third Roman: +A murrain on't! I took this for silver. + +MARCIUS: +See here these movers that do prize their hours +At a crack'd drachm! Cushions, leaden spoons, +Irons of a doit, doublets that hangmen would +Bury with those that wore them, these base slaves, +Ere yet the fight be done, pack up: down with them! +And hark, what noise the general makes! To him! +There is the man of my soul's hate, Aufidius, +Piercing our Romans: then, valiant Titus, take +Convenient numbers to make good the city; +Whilst I, with those that have the spirit, will haste +To help Cominius. + +LARTIUS: +Worthy sir, thou bleed'st; +Thy exercise hath been too violent for +A second course of fight. + +MARCIUS: +Sir, praise me not; +My work hath yet not warm'd me: fare you well: +The blood I drop is rather physical +Than dangerous to me: to Aufidius thus +I will appear, and fight. + +LARTIUS: +Now the fair goddess, Fortune, +Fall deep in love with thee; and her great charms +Misguide thy opposers' swords! Bold gentleman, +Prosperity be thy page! + +MARCIUS: +Thy friend no less +Than those she placeth highest! So, farewell. + +LARTIUS: +Thou worthiest Marcius! +Go, sound thy trumpet in the market-place; +Call thither all the officers o' the town, +Where they shall know our mind: away! + +COMINIUS: +Breathe you, my friends: well fought; +we are come off +Like Romans, neither foolish in our stands, +Nor cowardly in retire: believe me, sirs, +We shall be charged again. Whiles we have struck, +By interims and conveying gusts we have heard +The charges of our friends. Ye Roman gods! +Lead their successes as we wish our own, +That both our powers, with smiling +fronts encountering, +May give you thankful sacrifice. +Thy news? + +Messenger: +The citizens of Corioli have issued, +And given to Lartius and to Marcius battle: +I saw our party to their trenches driven, +And then I came away. + +COMINIUS: +Though thou speak'st truth, +Methinks thou speak'st not well. +How long is't since? + +Messenger: +Above an hour, my lord. + +COMINIUS: +'Tis not a mile; briefly we heard their drums: +How couldst thou in a mile confound an hour, +And bring thy news so late? + +Messenger: +Spies of the Volsces +Held me in chase, that I was forced to wheel +Three or four miles about, else had I, sir, +Half an hour since brought my report. + +COMINIUS: +Who's yonder, +That does appear as he were flay'd? O gods +He has the stamp of Marcius; and I have +Before-time seen him thus. + +MARCIUS: + +COMINIUS: +The shepherd knows not thunder from a tabour +More than I know the sound of Marcius' tongue +From every meaner man. + +MARCIUS: +Come I too late? + +COMINIUS: +Ay, if you come not in the blood of others, +But mantled in your own. + +MARCIUS: +O, let me clip ye +In arms as sound as when I woo'd, in heart +As merry as when our nuptial day was done, +And tapers burn'd to bedward! + +COMINIUS: +Flower of warriors, +How is it with Titus Lartius? + +MARCIUS: +As with a man busied about decrees: +Condemning some to death, and some to exile; +Ransoming him, or pitying, threatening the other; +Holding Corioli in the name of Rome, +Even like a fawning greyhound in the leash, +To let him slip at will. + +COMINIUS: +Where is that slave +Which told me they had beat you to your trenches? +Where is he? call him hither. + +MARCIUS: +Let him alone; +He did inform the truth: but for our gentlemen, +The common file--a plague! tribunes for them!-- +The mouse ne'er shunn'd the cat as they did budge +From rascals worse than they. + +COMINIUS: +But how prevail'd you? + +MARCIUS: +Will the time serve to tell? I do not think. +Where is the enemy? are you lords o' the field? +If not, why cease you till you are so? + +COMINIUS: +Marcius, +We have at disadvantage fought and did +Retire to win our purpose. + +MARCIUS: +How lies their battle? know you on which side +They have placed their men of trust? + +COMINIUS: +As I guess, Marcius, +Their bands i' the vaward are the Antiates, +Of their best trust; o'er them Aufidius, +Their very heart of hope. + +MARCIUS: +I do beseech you, +By all the battles wherein we have fought, +By the blood we have shed together, by the vows +We have made to endure friends, that you directly +Set me against Aufidius and his Antiates; +And that you not delay the present, but, +Filling the air with swords advanced and darts, +We prove this very hour. + +COMINIUS: +Though I could wish +You were conducted to a gentle bath +And balms applied to, you, yet dare I never +Deny your asking: take your choice of those +That best can aid your action. + +MARCIUS: +Those are they +That most are willing. If any such be here-- +As it were sin to doubt--that love this painting +Wherein you see me smear'd; if any fear +Lesser his person than an ill report; +If any think brave death outweighs bad life +And that his country's dearer than himself; +Let him alone, or so many so minded, +Wave thus, to express his disposition, +And follow Marcius. +O, me alone! make you a sword of me? +If these shows be not outward, which of you +But is four Volsces? none of you but is +Able to bear against the great Aufidius +A shield as hard as his. A certain number, +Though thanks to all, must I select +from all: the rest +Shall bear the business in some other fight, +As cause will be obey'd. Please you to march; +And four shall quickly draw out my command, +Which men are best inclined. + +COMINIUS: +March on, my fellows: +Make good this ostentation, and you shall +Divide in all with us. + +LARTIUS: +So, let the ports be guarded: keep your duties, +As I have set them down. If I do send, dispatch +Those centuries to our aid: the rest will serve +For a short holding: if we lose the field, +We cannot keep the town. + +Lieutenant: +Fear not our care, sir. + +LARTIUS: +Hence, and shut your gates upon's. +Our guider, come; to the Roman camp conduct us. + +MARCIUS: +I'll fight with none but thee; for I do hate thee +Worse than a promise-breaker. + +AUFIDIUS: +We hate alike: +Not Afric owns a serpent I abhor +More than thy fame and envy. Fix thy foot. + +MARCIUS: +Let the first budger die the other's slave, +And the gods doom him after! + +AUFIDIUS: +If I fly, Marcius, +Holloa me like a hare. + +MARCIUS: +Within these three hours, Tullus, +Alone I fought in your Corioli walls, +And made what work I pleased: 'tis not my blood +Wherein thou seest me mask'd; for thy revenge +Wrench up thy power to the highest. + +AUFIDIUS: +Wert thou the Hector +That was the whip of your bragg'd progeny, +Thou shouldst not scape me here. +Officious, and not valiant, you have shamed me +In your condemned seconds. + +COMINIUS: +If I should tell thee o'er this thy day's work, +Thou'ldst not believe thy deeds: but I'll report it +Where senators shall mingle tears with smiles, +Where great patricians shall attend and shrug, +I' the end admire, where ladies shall be frighted, +And, gladly quaked, hear more; where the +dull tribunes, +That, with the fusty plebeians, hate thine honours, +Shall say against their hearts 'We thank the gods +Our Rome hath such a soldier.' +Yet camest thou to a morsel of this feast, +Having fully dined before. + +LARTIUS: +O general, +Here is the steed, we the caparison: +Hadst thou beheld-- + +MARCIUS: +Pray now, no more: my mother, +Who has a charter to extol her blood, +When she does praise me grieves me. I have done +As you have done; that's what I can; induced +As you have been; that's for my country: +He that has but effected his good will +Hath overta'en mine act. + +COMINIUS: +You shall not be +The grave of your deserving; Rome must know +The value of her own: 'twere a concealment +Worse than a theft, no less than a traducement, +To hide your doings; and to silence that, +Which, to the spire and top of praises vouch'd, +Would seem but modest: therefore, I beseech you +In sign of what you are, not to reward +What you have done--before our army hear me. + +MARCIUS: +I have some wounds upon me, and they smart +To hear themselves remember'd. + +COMINIUS: +Should they not, +Well might they fester 'gainst ingratitude, +And tent themselves with death. Of all the horses, +Whereof we have ta'en good and good store, of all +The treasure in this field achieved and city, +We render you the tenth, to be ta'en forth, +Before the common distribution, at +Your only choice. + +MARCIUS: +I thank you, general; +But cannot make my heart consent to take +A bribe to pay my sword: I do refuse it; +And stand upon my common part with those +That have beheld the doing. + +MARCIUS: +May these same instruments, which you profane, +Never sound more! when drums and trumpets shall +I' the field prove flatterers, let courts and cities be +Made all of false-faced soothing! +When steel grows soft as the parasite's silk, +Let him be made a coverture for the wars! +No more, I say! For that I have not wash'd +My nose that bled, or foil'd some debile wretch.-- +Which, without note, here's many else have done,-- +You shout me forth +In acclamations hyperbolical; +As if I loved my little should be dieted +In praises sauced with lies. + +COMINIUS: +Too modest are you; +More cruel to your good report than grateful +To us that give you truly: by your patience, +If 'gainst yourself you be incensed, we'll put you, +Like one that means his proper harm, in manacles, +Then reason safely with you. Therefore, be it known, +As to us, to all the world, that Caius Marcius +Wears this war's garland: in token of the which, +My noble steed, known to the camp, I give him, +With all his trim belonging; and from this time, +For what he did before Corioli, call him, +With all the applause and clamour of the host, +CAIUS MARCIUS CORIOLANUS! Bear +The addition nobly ever! + +All: +Caius Marcius Coriolanus! + +CORIOLANUS: +I will go wash; +And when my face is fair, you shall perceive +Whether I blush or no: howbeit, I thank you. +I mean to stride your steed, and at all times +To undercrest your good addition +To the fairness of my power. + +COMINIUS: +So, to our tent; +Where, ere we do repose us, we will write +To Rome of our success. You, Titus Lartius, +Must to Corioli back: send us to Rome +The best, with whom we may articulate, +For their own good and ours. + +LARTIUS: +I shall, my lord. + +CORIOLANUS: +The gods begin to mock me. I, that now +Refused most princely gifts, am bound to beg +Of my lord general. + +COMINIUS: +Take't; 'tis yours. What is't? + +CORIOLANUS: +I sometime lay here in Corioli +At a poor man's house; he used me kindly: +He cried to me; I saw him prisoner; +But then Aufidius was within my view, +And wrath o'erwhelm'd my pity: I request you +To give my poor host freedom. + +COMINIUS: +O, well begg'd! +Were he the butcher of my son, he should +Be free as is the wind. Deliver him, Titus. + +LARTIUS: +Marcius, his name? + +CORIOLANUS: +By Jupiter! forgot. +I am weary; yea, my memory is tired. +Have we no wine here? + +COMINIUS: +Go we to our tent: +The blood upon your visage dries; 'tis time +It should be look'd to: come. + +AUFIDIUS: +The town is ta'en! + +First Soldier: +'Twill be deliver'd back on good condition. + +AUFIDIUS: +Condition! +I would I were a Roman; for I cannot, +Being a Volsce, be that I am. Condition! +What good condition can a treaty find +I' the part that is at mercy? Five times, Marcius, +I have fought with thee: so often hast thou beat me, +And wouldst do so, I think, should we encounter +As often as we eat. By the elements, +If e'er again I meet him beard to beard, +He's mine, or I am his: mine emulation +Hath not that honour in't it had; for where +I thought to crush him in an equal force, +True sword to sword, I'll potch at him some way +Or wrath or craft may get him. + +First Soldier: +He's the devil. + +AUFIDIUS: +Bolder, though not so subtle. My valour's poison'd +With only suffering stain by him; for him +Shall fly out of itself: nor sleep nor sanctuary, +Being naked, sick, nor fane nor Capitol, +The prayers of priests nor times of sacrifice, +Embarquements all of fury, shall lift up +Their rotten privilege and custom 'gainst +My hate to Marcius: where I find him, were it +At home, upon my brother's guard, even there, +Against the hospitable canon, would I +Wash my fierce hand in's heart. Go you to the city; +Learn how 'tis held; and what they are that must +Be hostages for Rome. + +First Soldier: +Will not you go? + +AUFIDIUS: +I am attended at the cypress grove: I pray you-- +'Tis south the city mills--bring me word thither +How the world goes, that to the pace of it +I may spur on my journey. + +First Soldier: +I shall, sir. + +MENENIUS: +The augurer tells me we shall have news to-night. + +BRUTUS: +Good or bad? + +MENENIUS: +Not according to the prayer of the people, for they +love not Marcius. + +SICINIUS: +Nature teaches beasts to know their friends. + +MENENIUS: +Pray you, who does the wolf love? + +SICINIUS: +The lamb. + +MENENIUS: +Ay, to devour him; as the hungry plebeians would the +noble Marcius. + +BRUTUS: +He's a lamb indeed, that baes like a bear. + +MENENIUS: +He's a bear indeed, that lives like a lamb. You two +are old men: tell me one thing that I shall ask you. + +Both: +Well, sir. + +MENENIUS: +In what enormity is Marcius poor in, that you two +have not in abundance? + +BRUTUS: +He's poor in no one fault, but stored with all. + +SICINIUS: +Especially in pride. + +BRUTUS: +And topping all others in boasting. + +MENENIUS: +This is strange now: do you two know how you are +censured here in the city, I mean of us o' the +right-hand file? do you? + +Both: +Why, how are we censured? + +MENENIUS: +Because you talk of pride now,--will you not be angry? + +Both: +Well, well, sir, well. + +MENENIUS: +Why, 'tis no great matter; for a very little thief of +occasion will rob you of a great deal of patience: +give your dispositions the reins, and be angry at +your pleasures; at the least if you take it as a +pleasure to you in being so. You blame Marcius for +being proud? + +BRUTUS: +We do it not alone, sir. + +MENENIUS: +I know you can do very little alone; for your helps +are many, or else your actions would grow wondrous +single: your abilities are too infant-like for +doing much alone. You talk of pride: O that you +could turn your eyes toward the napes of your necks, +and make but an interior survey of your good selves! +O that you could! + +BRUTUS: +What then, sir? + +MENENIUS: +Why, then you should discover a brace of unmeriting, +proud, violent, testy magistrates, alias fools, as +any in Rome. + +SICINIUS: +Menenius, you are known well enough too. + +MENENIUS: +I am known to be a humorous patrician, and one that +loves a cup of hot wine with not a drop of allaying +Tiber in't; said to be something imperfect in +favouring the first complaint; hasty and tinder-like +upon too trivial motion; one that converses more +with the buttock of the night than with the forehead +of the morning: what I think I utter, and spend my +malice in my breath. Meeting two such wealsmen as +you are--I cannot call you Lycurguses--if the drink +you give me touch my palate adversely, I make a +crooked face at it. I can't say your worships have +delivered the matter well, when I find the ass in +compound with the major part of your syllables: and +though I must be content to bear with those that say +you are reverend grave men, yet they lie deadly that +tell you you have good faces. If you see this in +the map of my microcosm, follows it that I am known +well enough too? what barm can your bisson +conspectuities glean out of this character, if I be +known well enough too? + +BRUTUS: +Come, sir, come, we know you well enough. + +MENENIUS: +You know neither me, yourselves nor any thing. You +are ambitious for poor knaves' caps and legs: you +wear out a good wholesome forenoon in hearing a +cause between an orange wife and a fosset-seller; +and then rejourn the controversy of three pence to a +second day of audience. When you are hearing a +matter between party and party, if you chance to be +pinched with the colic, you make faces like +mummers; set up the bloody flag against all +patience; and, in roaring for a chamber-pot, +dismiss the controversy bleeding the more entangled +by your hearing: all the peace you make in their +cause is, calling both the parties knaves. You are +a pair of strange ones. + +BRUTUS: +Come, come, you are well understood to be a +perfecter giber for the table than a necessary +bencher in the Capitol. + +MENENIUS: +Our very priests must become mockers, if they shall +encounter such ridiculous subjects as you are. When +you speak best unto the purpose, it is not worth the +wagging of your beards; and your beards deserve not +so honourable a grave as to stuff a botcher's +cushion, or to be entombed in an ass's pack- +saddle. Yet you must be saying, Marcius is proud; +who in a cheap estimation, is worth predecessors +since Deucalion, though peradventure some of the +best of 'em were hereditary hangmen. God-den to +your worships: more of your conversation would +infect my brain, being the herdsmen of the beastly +plebeians: I will be bold to take my leave of you. +How now, my as fair as noble ladies,--and the moon, +were she earthly, no nobler,--whither do you follow +your eyes so fast? + +VOLUMNIA: +Honourable Menenius, my boy Marcius approaches; for +the love of Juno, let's go. + +MENENIUS: +Ha! Marcius coming home! + +VOLUMNIA: +Ay, worthy Menenius; and with most prosperous +approbation. + +MENENIUS: +Take my cap, Jupiter, and I thank thee. Hoo! +Marcius coming home! + +VOLUMNIA: +Nay,'tis true. + +VOLUMNIA: +Look, here's a letter from him: the state hath +another, his wife another; and, I think, there's one +at home for you. + +MENENIUS: +I will make my very house reel tonight: a letter for +me! + +VIRGILIA: +Yes, certain, there's a letter for you; I saw't. + +MENENIUS: +A letter for me! it gives me an estate of seven +years' health; in which time I will make a lip at +the physician: the most sovereign prescription in +Galen is but empiricutic, and, to this preservative, +of no better report than a horse-drench. Is he +not wounded? he was wont to come home wounded. + +VIRGILIA: +O, no, no, no. + +VOLUMNIA: +O, he is wounded; I thank the gods for't. + +MENENIUS: +So do I too, if it be not too much: brings a' +victory in his pocket? the wounds become him. + +VOLUMNIA: +On's brows: Menenius, he comes the third time home +with the oaken garland. + +MENENIUS: +Has he disciplined Aufidius soundly? + +VOLUMNIA: +Titus Lartius writes, they fought together, but +Aufidius got off. + +MENENIUS: +And 'twas time for him too, I'll warrant him that: +an he had stayed by him, I would not have been so +fidiused for all the chests in Corioli, and the gold +that's in them. Is the senate possessed of this? + +VOLUMNIA: +Good ladies, let's go. Yes, yes, yes; the senate +has letters from the general, wherein he gives my +son the whole name of the war: he hath in this +action outdone his former deeds doubly + +VALERIA: +In troth, there's wondrous things spoke of him. + +MENENIUS: +Wondrous! ay, I warrant you, and not without his +true purchasing. + +VIRGILIA: +The gods grant them true! + +VOLUMNIA: +True! pow, wow. + +MENENIUS: +True! I'll be sworn they are true. +Where is he wounded? +God save your good worships! Marcius is coming +home: he has more cause to be proud. Where is he wounded? + +VOLUMNIA: +I' the shoulder and i' the left arm there will be +large cicatrices to show the people, when he shall +stand for his place. He received in the repulse of +Tarquin seven hurts i' the body. + +MENENIUS: +One i' the neck, and two i' the thigh,--there's +nine that I know. + +VOLUMNIA: +He had, before this last expedition, twenty-five +wounds upon him. + +MENENIUS: +Now it's twenty-seven: every gash was an enemy's grave. +Hark! the trumpets. + +VOLUMNIA: +These are the ushers of Marcius: before him he +carries noise, and behind him he leaves tears: +Death, that dark spirit, in 's nervy arm doth lie; +Which, being advanced, declines, and then men die. + +Herald: +Know, Rome, that all alone Marcius did fight +Within Corioli gates: where he hath won, +With fame, a name to Caius Marcius; these +In honour follows Coriolanus. +Welcome to Rome, renowned Coriolanus! + +All: +Welcome to Rome, renowned Coriolanus! + +CORIOLANUS: +No more of this; it does offend my heart: +Pray now, no more. + +COMINIUS: +Look, sir, your mother! + +CORIOLANUS: +O, +You have, I know, petition'd all the gods +For my prosperity! + +VOLUMNIA: +Nay, my good soldier, up; +My gentle Marcius, worthy Caius, and +By deed-achieving honour newly named,-- +What is it?--Coriolanus must I call thee?-- +But O, thy wife! + +CORIOLANUS: +My gracious silence, hail! +Wouldst thou have laugh'd had I come coffin'd home, +That weep'st to see me triumph? Ay, my dear, +Such eyes the widows in Corioli wear, +And mothers that lack sons. + +MENENIUS: +Now, the gods crown thee! + +CORIOLANUS: +And live you yet? +O my sweet lady, pardon. + +VOLUMNIA: +I know not where to turn: O, welcome home: +And welcome, general: and ye're welcome all. + +MENENIUS: +A hundred thousand welcomes. I could weep +And I could laugh, I am light and heavy. Welcome. +A curse begin at very root on's heart, +That is not glad to see thee! You are three +That Rome should dote on: yet, by the faith of men, +We have some old crab-trees here +at home that will not +Be grafted to your relish. Yet welcome, warriors: +We call a nettle but a nettle and +The faults of fools but folly. + +COMINIUS: +Ever right. + +CORIOLANUS: +Menenius ever, ever. + +Herald: +Give way there, and go on! + +CORIOLANUS: + +VOLUMNIA: +I have lived +To see inherited my very wishes +And the buildings of my fancy: only +There's one thing wanting, which I doubt not but +Our Rome will cast upon thee. + +CORIOLANUS: +Know, good mother, +I had rather be their servant in my way, +Than sway with them in theirs. + +COMINIUS: +On, to the Capitol! + +BRUTUS: +All tongues speak of him, and the bleared sights +Are spectacled to see him: your prattling nurse +Into a rapture lets her baby cry +While she chats him: the kitchen malkin pins +Her richest lockram 'bout her reechy neck, +Clambering the walls to eye him: stalls, bulks, windows, +Are smother'd up, leads fill'd, and ridges horsed +With variable complexions, all agreeing +In earnestness to see him: seld-shown flamens +Do press among the popular throngs and puff +To win a vulgar station: or veil'd dames +Commit the war of white and damask in +Their nicely-gawded cheeks to the wanton spoil +Of Phoebus' burning kisses: such a pother +As if that whatsoever god who leads him +Were slily crept into his human powers +And gave him graceful posture. + +SICINIUS: +On the sudden, +I warrant him consul. + +BRUTUS: +Then our office may, +During his power, go sleep. + +SICINIUS: +He cannot temperately transport his honours +From where he should begin and end, but will +Lose those he hath won. + +BRUTUS: +In that there's comfort. + +SICINIUS: +Doubt not +The commoners, for whom we stand, but they +Upon their ancient malice will forget +With the least cause these his new honours, which +That he will give them make I as little question +As he is proud to do't. + +BRUTUS: +I heard him swear, +Were he to stand for consul, never would he +Appear i' the market-place nor on him put +The napless vesture of humility; +Nor showing, as the manner is, his wounds +To the people, beg their stinking breaths. + +SICINIUS: +'Tis right. + +BRUTUS: +It was his word: O, he would miss it rather +Than carry it but by the suit of the gentry to him, +And the desire of the nobles. + +SICINIUS: +I wish no better +Than have him hold that purpose and to put it +In execution. + +BRUTUS: +'Tis most like he will. + +SICINIUS: +It shall be to him then as our good wills, +A sure destruction. + +BRUTUS: +So it must fall out +To him or our authorities. For an end, +We must suggest the people in what hatred +He still hath held them; that to's power he would +Have made them mules, silenced their pleaders and +Dispropertied their freedoms, holding them, +In human action and capacity, +Of no more soul nor fitness for the world +Than camels in the war, who have their provand +Only for bearing burdens, and sore blows +For sinking under them. + +SICINIUS: +This, as you say, suggested +At some time when his soaring insolence +Shall touch the people--which time shall not want, +If he be put upon 't; and that's as easy +As to set dogs on sheep--will be his fire +To kindle their dry stubble; and their blaze +Shall darken him for ever. + +BRUTUS: +What's the matter? + +Messenger: +You are sent for to the Capitol. 'Tis thought +That Marcius shall be consul: +I have seen the dumb men throng to see him and +The blind to bear him speak: matrons flung gloves, +Ladies and maids their scarfs and handkerchers, +Upon him as he pass'd: the nobles bended, +As to Jove's statue, and the commons made +A shower and thunder with their caps and shouts: +I never saw the like. + +BRUTUS: +Let's to the Capitol; +And carry with us ears and eyes for the time, +But hearts for the event. + +SICINIUS: +Have with you. + +First Officer: +Come, come, they are almost here. How many stand +for consulships? + +Second Officer: +Three, they say: but 'tis thought of every one +Coriolanus will carry it. + +First Officer: +That's a brave fellow; but he's vengeance proud, and +loves not the common people. + +Second Officer: +Faith, there had been many great men that have +flattered the people, who ne'er loved them; and there +be many that they have loved, they know not +wherefore: so that, if they love they know not why, +they hate upon no better a ground: therefore, for +Coriolanus neither to care whether they love or hate +him manifests the true knowledge he has in their +disposition; and out of his noble carelessness lets +them plainly see't. + +First Officer: +If he did not care whether he had their love or no, +he waved indifferently 'twixt doing them neither +good nor harm: but he seeks their hate with greater +devotion than can render it him; and leaves +nothing undone that may fully discover him their +opposite. Now, to seem to affect the malice and +displeasure of the people is as bad as that which he +dislikes, to flatter them for their love. + +Second Officer: +He hath deserved worthily of his country: and his +ascent is not by such easy degrees as those who, +having been supple and courteous to the people, +bonneted, without any further deed to have them at +an into their estimation and report: but he hath so +planted his honours in their eyes, and his actions +in their hearts, that for their tongues to be +silent, and not confess so much, were a kind of +ingrateful injury; to report otherwise, were a +malice, that, giving itself the lie, would pluck +reproof and rebuke from every ear that heard it. + +First Officer: +No more of him; he is a worthy man: make way, they +are coming. + +MENENIUS: +Having determined of the Volsces and +To send for Titus Lartius, it remains, +As the main point of this our after-meeting, +To gratify his noble service that +Hath thus stood for his country: therefore, +please you, +Most reverend and grave elders, to desire +The present consul, and last general +In our well-found successes, to report +A little of that worthy work perform'd +By Caius Marcius Coriolanus, whom +We met here both to thank and to remember +With honours like himself. + +First Senator: +Speak, good Cominius: +Leave nothing out for length, and make us think +Rather our state's defective for requital +Than we to stretch it out. +Masters o' the people, +We do request your kindest ears, and after, +Your loving motion toward the common body, +To yield what passes here. + +SICINIUS: +We are convented +Upon a pleasing treaty, and have hearts +Inclinable to honour and advance +The theme of our assembly. + +BRUTUS: +Which the rather +We shall be blest to do, if he remember +A kinder value of the people than +He hath hereto prized them at. + +MENENIUS: +That's off, that's off; +I would you rather had been silent. Please you +To hear Cominius speak? + +BRUTUS: +Most willingly; +But yet my caution was more pertinent +Than the rebuke you give it. + +MENENIUS: +He loves your people +But tie him not to be their bedfellow. +Worthy Cominius, speak. +Nay, keep your place. + +First Senator: +Sit, Coriolanus; never shame to hear +What you have nobly done. + +CORIOLANUS: +Your horror's pardon: +I had rather have my wounds to heal again +Than hear say how I got them. + +BRUTUS: +Sir, I hope +My words disbench'd you not. + +CORIOLANUS: +No, sir: yet oft, +When blows have made me stay, I fled from words. +You soothed not, therefore hurt not: but +your people, +I love them as they weigh. + +MENENIUS: +Pray now, sit down. + +CORIOLANUS: +I had rather have one scratch my head i' the sun +When the alarum were struck than idly sit +To hear my nothings monster'd. + +MENENIUS: +Masters of the people, +Your multiplying spawn how can he flatter-- +That's thousand to one good one--when you now see +He had rather venture all his limbs for honour +Than one on's ears to hear it? Proceed, Cominius. + +COMINIUS: +I shall lack voice: the deeds of Coriolanus +Should not be utter'd feebly. It is held +That valour is the chiefest virtue, and +Most dignifies the haver: if it be, +The man I speak of cannot in the world +Be singly counterpoised. At sixteen years, +When Tarquin made a head for Rome, he fought +Beyond the mark of others: our then dictator, +Whom with all praise I point at, saw him fight, +When with his Amazonian chin he drove +The bristled lips before him: be bestrid +An o'er-press'd Roman and i' the consul's view +Slew three opposers: Tarquin's self he met, +And struck him on his knee: in that day's feats, +When he might act the woman in the scene, +He proved best man i' the field, and for his meed +Was brow-bound with the oak. His pupil age +Man-enter'd thus, he waxed like a sea, +And in the brunt of seventeen battles since +He lurch'd all swords of the garland. For this last, +Before and in Corioli, let me say, +I cannot speak him home: he stopp'd the fliers; +And by his rare example made the coward +Turn terror into sport: as weeds before +A vessel under sail, so men obey'd +And fell below his stem: his sword, death's stamp, +Where it did mark, it took; from face to foot +He was a thing of blood, whose every motion +Was timed with dying cries: alone he enter'd +The mortal gate of the city, which he painted +With shunless destiny; aidless came off, +And with a sudden reinforcement struck +Corioli like a planet: now all's his: +When, by and by, the din of war gan pierce +His ready sense; then straight his doubled spirit +Re-quicken'd what in flesh was fatigate, +And to the battle came he; where he did +Run reeking o'er the lives of men, as if +'Twere a perpetual spoil: and till we call'd +Both field and city ours, he never stood +To ease his breast with panting. + +MENENIUS: +Worthy man! + +First Senator: +He cannot but with measure fit the honours +Which we devise him. + +COMINIUS: +Our spoils he kick'd at, +And look'd upon things precious as they were +The common muck of the world: he covets less +Than misery itself would give; rewards +His deeds with doing them, and is content +To spend the time to end it. + +MENENIUS: +He's right noble: +Let him be call'd for. + +First Senator: +Call Coriolanus. + +Officer: +He doth appear. + +MENENIUS: +The senate, Coriolanus, are well pleased +To make thee consul. + +CORIOLANUS: +I do owe them still +My life and services. + +MENENIUS: +It then remains +That you do speak to the people. + +CORIOLANUS: +I do beseech you, +Let me o'erleap that custom, for I cannot +Put on the gown, stand naked and entreat them, +For my wounds' sake, to give their suffrage: please you +That I may pass this doing. + +SICINIUS: +Sir, the people +Must have their voices; neither will they bate +One jot of ceremony. + +MENENIUS: +Put them not to't: +Pray you, go fit you to the custom and +Take to you, as your predecessors have, +Your honour with your form. + +CORIOLANUS: +It is apart +That I shall blush in acting, and might well +Be taken from the people. + +BRUTUS: +Mark you that? + +CORIOLANUS: +To brag unto them, thus I did, and thus; +Show them the unaching scars which I should hide, +As if I had received them for the hire +Of their breath only! + +MENENIUS: +Do not stand upon't. +We recommend to you, tribunes of the people, +Our purpose to them: and to our noble consul +Wish we all joy and honour. + +Senators: +To Coriolanus come all joy and honour! + +BRUTUS: +You see how he intends to use the people. + +SICINIUS: +May they perceive's intent! He will require them, +As if he did contemn what he requested +Should be in them to give. + +BRUTUS: +Come, we'll inform them +Of our proceedings here: on the marketplace, +I know, they do attend us. + +First Citizen: +Once, if he do require our voices, we ought not to deny him. + +Second Citizen: +We may, sir, if we will. + +Third Citizen: +We have power in ourselves to do it, but it is a +power that we have no power to do; for if he show us +his wounds and tell us his deeds, we are to put our +tongues into those wounds and speak for them; so, if +he tell us his noble deeds, we must also tell him +our noble acceptance of them. Ingratitude is +monstrous, and for the multitude to be ingrateful, +were to make a monster of the multitude: of the +which we being members, should bring ourselves to be +monstrous members. + +First Citizen: +And to make us no better thought of, a little help +will serve; for once we stood up about the corn, he +himself stuck not to call us the many-headed multitude. + +Third Citizen: +We have been called so of many; not that our heads +are some brown, some black, some auburn, some bald, +but that our wits are so diversely coloured: and +truly I think if all our wits were to issue out of +one skull, they would fly east, west, north, south, +and their consent of one direct way should be at +once to all the points o' the compass. + +Second Citizen: +Think you so? Which way do you judge my wit would +fly? + +Third Citizen: +Nay, your wit will not so soon out as another man's +will;'tis strongly wedged up in a block-head, but +if it were at liberty, 'twould, sure, southward. + +Second Citizen: +Why that way? + +Third Citizen: +To lose itself in a fog, where being three parts +melted away with rotten dews, the fourth would return +for conscience sake, to help to get thee a wife. + +Second Citizen: +You are never without your tricks: you may, you may. + +Third Citizen: +Are you all resolved to give your voices? But +that's no matter, the greater part carries it. I +say, if he would incline to the people, there was +never a worthier man. +Here he comes, and in the gown of humility: mark his +behavior. We are not to stay all together, but to +come by him where he stands, by ones, by twos, and +by threes. He's to make his requests by +particulars; wherein every one of us has a single +honour, in giving him our own voices with our own +tongues: therefore follow me, and I direct you how +you shall go by him. + +All: +Content, content. + +MENENIUS: +O sir, you are not right: have you not known +The worthiest men have done't? + +CORIOLANUS: +What must I say? +'I Pray, sir'--Plague upon't! I cannot bring +My tongue to such a pace:--'Look, sir, my wounds! +I got them in my country's service, when +Some certain of your brethren roar'd and ran +From the noise of our own drums.' + +MENENIUS: +O me, the gods! +You must not speak of that: you must desire them +To think upon you. + +CORIOLANUS: +Think upon me! hang 'em! +I would they would forget me, like the virtues +Which our divines lose by 'em. + +MENENIUS: +You'll mar all: +I'll leave you: pray you, speak to 'em, I pray you, +In wholesome manner. + +CORIOLANUS: +Bid them wash their faces +And keep their teeth clean. +So, here comes a brace. +You know the cause, air, of my standing here. + +Third Citizen: +We do, sir; tell us what hath brought you to't. + +CORIOLANUS: +Mine own desert. + +Second Citizen: +Your own desert! + +CORIOLANUS: +Ay, but not mine own desire. + +Third Citizen: +How not your own desire? + +CORIOLANUS: +No, sir,'twas never my desire yet to trouble the +poor with begging. + +Third Citizen: +You must think, if we give you any thing, we hope to +gain by you. + +CORIOLANUS: +Well then, I pray, your price o' the consulship? + +First Citizen: +The price is to ask it kindly. + +CORIOLANUS: +Kindly! Sir, I pray, let me ha't: I have wounds to +show you, which shall be yours in private. Your +good voice, sir; what say you? + +Second Citizen: +You shall ha' it, worthy sir. + +CORIOLANUS: +A match, sir. There's in all two worthy voices +begged. I have your alms: adieu. + +Third Citizen: +But this is something odd. + +Second Citizen: +An 'twere to give again,--but 'tis no matter. + +CORIOLANUS: +Pray you now, if it may stand with the tune of your +voices that I may be consul, I have here the +customary gown. + +Fourth Citizen: +You have deserved nobly of your country, and you +have not deserved nobly. + +CORIOLANUS: +Your enigma? + +Fourth Citizen: +You have been a scourge to her enemies, you have +been a rod to her friends; you have not indeed loved +the common people. + +CORIOLANUS: +You should account me the more virtuous that I have +not been common in my love. I will, sir, flatter my +sworn brother, the people, to earn a dearer +estimation of them; 'tis a condition they account +gentle: and since the wisdom of their choice is +rather to have my hat than my heart, I will practise +the insinuating nod and be off to them most +counterfeitly; that is, sir, I will counterfeit the +bewitchment of some popular man and give it +bountiful to the desirers. Therefore, beseech you, +I may be consul. + +Fifth Citizen: +We hope to find you our friend; and therefore give +you our voices heartily. + +Fourth Citizen: +You have received many wounds for your country. + +CORIOLANUS: +I will not seal your knowledge with showing them. I +will make much of your voices, and so trouble you no further. + +Both Citizens: +The gods give you joy, sir, heartily! + +CORIOLANUS: +Most sweet voices! +Better it is to die, better to starve, +Than crave the hire which first we do deserve. +Why in this woolvish toge should I stand here, +To beg of Hob and Dick, that do appear, +Their needless vouches? Custom calls me to't: +What custom wills, in all things should we do't, +The dust on antique time would lie unswept, +And mountainous error be too highly heapt +For truth to o'er-peer. Rather than fool it so, +Let the high office and the honour go +To one that would do thus. I am half through; +The one part suffer'd, the other will I do. +Here come more voices. +Your voices: for your voices I have fought; +Watch'd for your voices; for Your voices bear +Of wounds two dozen odd; battles thrice six +I have seen and heard of; for your voices have +Done many things, some less, some more your voices: +Indeed I would be consul. + +Sixth Citizen: +He has done nobly, and cannot go without any honest +man's voice. + +Seventh Citizen: +Therefore let him be consul: the gods give him joy, +and make him good friend to the people! + +All Citizens: +Amen, amen. God save thee, noble consul! + +CORIOLANUS: +Worthy voices! + +MENENIUS: +You have stood your limitation; and the tribunes +Endue you with the people's voice: remains +That, in the official marks invested, you +Anon do meet the senate. + +CORIOLANUS: +Is this done? + +SICINIUS: +The custom of request you have discharged: +The people do admit you, and are summon'd +To meet anon, upon your approbation. + +CORIOLANUS: +Where? at the senate-house? + +SICINIUS: +There, Coriolanus. + +CORIOLANUS: +May I change these garments? + +SICINIUS: +You may, sir. + +CORIOLANUS: +That I'll straight do; and, knowing myself again, +Repair to the senate-house. + +MENENIUS: +I'll keep you company. Will you along? + +BRUTUS: +We stay here for the people. + +SICINIUS: +Fare you well. +He has it now, and by his looks methink +'Tis warm at 's heart. + +BRUTUS: +With a proud heart he wore his humble weeds. +will you dismiss the people? + +SICINIUS: +How now, my masters! have you chose this man? + +First Citizen: +He has our voices, sir. + +BRUTUS: +We pray the gods he may deserve your loves. + +Second Citizen: +Amen, sir: to my poor unworthy notice, +He mock'd us when he begg'd our voices. + +Third Citizen: +Certainly +He flouted us downright. + +First Citizen: +No,'tis his kind of speech: he did not mock us. + +Second Citizen: +Not one amongst us, save yourself, but says +He used us scornfully: he should have show'd us +His marks of merit, wounds received for's country. + +SICINIUS: +Why, so he did, I am sure. + +Citizens: +No, no; no man saw 'em. + +Third Citizen: +He said he had wounds, which he could show +in private; +And with his hat, thus waving it in scorn, +'I would be consul,' says he: 'aged custom, +But by your voices, will not so permit me; +Your voices therefore.' When we granted that, +Here was 'I thank you for your voices: thank you: +Your most sweet voices: now you have left +your voices, +I have no further with you.' Was not this mockery? + +SICINIUS: +Why either were you ignorant to see't, +Or, seeing it, of such childish friendliness +To yield your voices? + +BRUTUS: +Could you not have told him +As you were lesson'd, when he had no power, +But was a petty servant to the state, +He was your enemy, ever spake against +Your liberties and the charters that you bear +I' the body of the weal; and now, arriving +A place of potency and sway o' the state, +If he should still malignantly remain +Fast foe to the plebeii, your voices might +Be curses to yourselves? You should have said +That as his worthy deeds did claim no less +Than what he stood for, so his gracious nature +Would think upon you for your voices and +Translate his malice towards you into love, +Standing your friendly lord. + +SICINIUS: +Thus to have said, +As you were fore-advised, had touch'd his spirit +And tried his inclination; from him pluck'd +Either his gracious promise, which you might, +As cause had call'd you up, have held him to +Or else it would have gall'd his surly nature, +Which easily endures not article +Tying him to aught; so putting him to rage, +You should have ta'en the advantage of his choler +And pass'd him unelected. + +BRUTUS: +Did you perceive +He did solicit you in free contempt +When he did need your loves, and do you think +That his contempt shall not be bruising to you, +When he hath power to crush? Why, had your bodies +No heart among you? or had you tongues to cry +Against the rectorship of judgment? + +SICINIUS: +Have you +Ere now denied the asker? and now again +Of him that did not ask, but mock, bestow +Your sued-for tongues? + +Third Citizen: +He's not confirm'd; we may deny him yet. + +Second Citizen: +And will deny him: +I'll have five hundred voices of that sound. + +First Citizen: +I twice five hundred and their friends to piece 'em. + +BRUTUS: +Get you hence instantly, and tell those friends, +They have chose a consul that will from them take +Their liberties; make them of no more voice +Than dogs that are as often beat for barking +As therefore kept to do so. + +SICINIUS: +Let them assemble, +And on a safer judgment all revoke +Your ignorant election; enforce his pride, +And his old hate unto you; besides, forget not +With what contempt he wore the humble weed, +How in his suit he scorn'd you; but your loves, +Thinking upon his services, took from you +The apprehension of his present portance, +Which most gibingly, ungravely, he did fashion +After the inveterate hate he bears you. + +BRUTUS: +Lay +A fault on us, your tribunes; that we laboured, +No impediment between, but that you must +Cast your election on him. + +SICINIUS: +Say, you chose him +More after our commandment than as guided +By your own true affections, and that your minds, +Preoccupied with what you rather must do +Than what you should, made you against the grain +To voice him consul: lay the fault on us. + +BRUTUS: +Ay, spare us not. Say we read lectures to you. +How youngly he began to serve his country, +How long continued, and what stock he springs of, +The noble house o' the Marcians, from whence came +That Ancus Marcius, Numa's daughter's son, +Who, after great Hostilius, here was king; +Of the same house Publius and Quintus were, +That our beat water brought by conduits hither; +And +Twice being +Was his great ancestor. + +SICINIUS: +One thus descended, +That hath beside well in his person wrought +To be set high in place, we did commend +To your remembrances: but you have found, +Scaling his present bearing with his past, +That he's your fixed enemy, and revoke +Your sudden approbation. + +BRUTUS: +Say, you ne'er had done't-- +Harp on that still--but by our putting on; +And presently, when you have drawn your number, +Repair to the Capitol. + +All: +We will so: almost all +Repent in their election. + +BRUTUS: +Let them go on; +This mutiny were better put in hazard, +Than stay, past doubt, for greater: +If, as his nature is, he fall in rage +With their refusal, both observe and answer +The vantage of his anger. + +SICINIUS: +To the Capitol, come: +We will be there before the stream o' the people; +And this shall seem, as partly 'tis, their own, +Which we have goaded onward. + +CORIOLANUS: +Tullus Aufidius then had made new head? + +LARTIUS: +He had, my lord; and that it was which caused +Our swifter composition. + +CORIOLANUS: +So then the Volsces stand but as at first, +Ready, when time shall prompt them, to make road. +Upon's again. + +COMINIUS: +They are worn, lord consul, so, +That we shall hardly in our ages see +Their banners wave again. + +CORIOLANUS: +Saw you Aufidius? + +LARTIUS: +On safe-guard he came to me; and did curse +Against the Volsces, for they had so vilely +Yielded the town: he is retired to Antium. + +CORIOLANUS: +Spoke he of me? + +LARTIUS: +He did, my lord. + +CORIOLANUS: +How? what? + +LARTIUS: +How often he had met you, sword to sword; +That of all things upon the earth he hated +Your person most, that he would pawn his fortunes +To hopeless restitution, so he might +Be call'd your vanquisher. + +CORIOLANUS: +At Antium lives he? + +LARTIUS: +At Antium. + +CORIOLANUS: +I wish I had a cause to seek him there, +To oppose his hatred fully. Welcome home. +Behold, these are the tribunes of the people, +The tongues o' the common mouth: I do despise them; +For they do prank them in authority, +Against all noble sufferance. + +SICINIUS: +Pass no further. + +CORIOLANUS: +Ha! what is that? + +BRUTUS: +It will be dangerous to go on: no further. + +CORIOLANUS: +What makes this change? + +MENENIUS: +The matter? + +COMINIUS: +Hath he not pass'd the noble and the common? + +BRUTUS: +Cominius, no. + +CORIOLANUS: +Have I had children's voices? + +First Senator: +Tribunes, give way; he shall to the market-place. + +BRUTUS: +The people are incensed against him. + +SICINIUS: +Stop, +Or all will fall in broil. + +CORIOLANUS: +Are these your herd? +Must these have voices, that can yield them now +And straight disclaim their tongues? What are +your offices? +You being their mouths, why rule you not their teeth? +Have you not set them on? + +MENENIUS: +Be calm, be calm. + +CORIOLANUS: +It is a purposed thing, and grows by plot, +To curb the will of the nobility: +Suffer't, and live with such as cannot rule +Nor ever will be ruled. + +BRUTUS: +Call't not a plot: +The people cry you mock'd them, and of late, +When corn was given them gratis, you repined; +Scandal'd the suppliants for the people, call'd them +Time-pleasers, flatterers, foes to nobleness. + +CORIOLANUS: +Why, this was known before. + +BRUTUS: +Not to them all. + +CORIOLANUS: +Have you inform'd them sithence? + +BRUTUS: +How! I inform them! + +CORIOLANUS: +You are like to do such business. + +BRUTUS: +Not unlike, +Each way, to better yours. + +CORIOLANUS: +Why then should I be consul? By yond clouds, +Let me deserve so ill as you, and make me +Your fellow tribune. + +SICINIUS: +You show too much of that +For which the people stir: if you will pass +To where you are bound, you must inquire your way, +Which you are out of, with a gentler spirit, +Or never be so noble as a consul, +Nor yoke with him for tribune. + +MENENIUS: +Let's be calm. + +COMINIUS: +The people are abused; set on. This paltering +Becomes not Rome, nor has Coriolanus +Deserved this so dishonour'd rub, laid falsely +I' the plain way of his merit. + +CORIOLANUS: +Tell me of corn! +This was my speech, and I will speak't again-- + +MENENIUS: +Not now, not now. + +First Senator: +Not in this heat, sir, now. + +CORIOLANUS: +Now, as I live, I will. My nobler friends, +I crave their pardons: +For the mutable, rank-scented many, let them +Regard me as I do not flatter, and +Therein behold themselves: I say again, +In soothing them, we nourish 'gainst our senate +The cockle of rebellion, insolence, sedition, +Which we ourselves have plough'd for, sow'd, +and scatter'd, +By mingling them with us, the honour'd number, +Who lack not virtue, no, nor power, but that +Which they have given to beggars. + +MENENIUS: +Well, no more. + +First Senator: +No more words, we beseech you. + +CORIOLANUS: +How! no more! +As for my country I have shed my blood, +Not fearing outward force, so shall my lungs +Coin words till their decay against those measles, +Which we disdain should tatter us, yet sought +The very way to catch them. + +BRUTUS: +You speak o' the people, +As if you were a god to punish, not +A man of their infirmity. + +SICINIUS: +'Twere well +We let the people know't. + +MENENIUS: +What, what? his choler? + +CORIOLANUS: +Choler! +Were I as patient as the midnight sleep, +By Jove, 'twould be my mind! + +SICINIUS: +It is a mind +That shall remain a poison where it is, +Not poison any further. + +CORIOLANUS: +Shall remain! +Hear you this Triton of the minnows? mark you +His absolute 'shall'? + +COMINIUS: +'Twas from the canon. + +CORIOLANUS: +'Shall'! +O good but most unwise patricians! why, +You grave but reckless senators, have you thus +Given Hydra here to choose an officer, +That with his peremptory 'shall,' being but +The horn and noise o' the monster's, wants not spirit +To say he'll turn your current in a ditch, +And make your channel his? If he have power +Then vail your ignorance; if none, awake +Your dangerous lenity. If you are learn'd, +Be not as common fools; if you are not, +Let them have cushions by you. You are plebeians, +If they be senators: and they are no less, +When, both your voices blended, the great'st taste +Most palates theirs. They choose their magistrate, +And such a one as he, who puts his 'shall,' +His popular 'shall' against a graver bench +Than ever frown in Greece. By Jove himself! +It makes the consuls base: and my soul aches +To know, when two authorities are up, +Neither supreme, how soon confusion +May enter 'twixt the gap of both and take +The one by the other. + +COMINIUS: +Well, on to the market-place. + +CORIOLANUS: +Whoever gave that counsel, to give forth +The corn o' the storehouse gratis, as 'twas used +Sometime in Greece,-- + +MENENIUS: +Well, well, no more of that. + +CORIOLANUS: +Though there the people had more absolute power, +I say, they nourish'd disobedience, fed +The ruin of the state. + +BRUTUS: +Why, shall the people give +One that speaks thus their voice? + +CORIOLANUS: +I'll give my reasons, +More worthier than their voices. They know the corn +Was not our recompense, resting well assured +That ne'er did service for't: being press'd to the war, +Even when the navel of the state was touch'd, +They would not thread the gates. This kind of service +Did not deserve corn gratis. Being i' the war +Their mutinies and revolts, wherein they show'd +Most valour, spoke not for them: the accusation +Which they have often made against the senate, +All cause unborn, could never be the motive +Of our so frank donation. Well, what then? +How shall this bisson multitude digest +The senate's courtesy? Let deeds express +What's like to be their words: 'we did request it; +We are the greater poll, and in true fear +They gave us our demands.' Thus we debase +The nature of our seats and make the rabble +Call our cares fears; which will in time +Break ope the locks o' the senate and bring in +The crows to peck the eagles. + +MENENIUS: +Come, enough. + +BRUTUS: +Enough, with over-measure. + +CORIOLANUS: +No, take more: +What may be sworn by, both divine and human, +Seal what I end withal! This double worship, +Where one part does disdain with cause, the other +Insult without all reason, where gentry, title, wisdom, +Cannot conclude but by the yea and no +Of general ignorance,--it must omit +Real necessities, and give way the while +To unstable slightness: purpose so barr'd, +it follows, +Nothing is done to purpose. Therefore, beseech you,-- +You that will be less fearful than discreet, +That love the fundamental part of state +More than you doubt the change on't, that prefer +A noble life before a long, and wish +To jump a body with a dangerous physic +That's sure of death without it, at once pluck out +The multitudinous tongue; let them not lick +The sweet which is their poison: your dishonour +Mangles true judgment and bereaves the state +Of that integrity which should become't, +Not having the power to do the good it would, +For the in which doth control't. + +BRUTUS: +Has said enough. + +SICINIUS: +Has spoken like a traitor, and shall answer +As traitors do. + +CORIOLANUS: +Thou wretch, despite o'erwhelm thee! +What should the people do with these bald tribunes? +On whom depending, their obedience fails +To the greater bench: in a rebellion, +When what's not meet, but what must be, was law, +Then were they chosen: in a better hour, +Let what is meet be said it must be meet, +And throw their power i' the dust. + +BRUTUS: +Manifest treason! + +SICINIUS: +This a consul? no. + +BRUTUS: +The aediles, ho! +Let him be apprehended. + +SICINIUS: +Go, call the people: +in whose name myself +Attach thee as a traitorous innovator, +A foe to the public weal: obey, I charge thee, +And follow to thine answer. + +CORIOLANUS: +Hence, old goat! + +Senators, &C: +We'll surety him. + +COMINIUS: +Aged sir, hands off. + +CORIOLANUS: +Hence, rotten thing! or I shall shake thy bones +Out of thy garments. + +SICINIUS: +Help, ye citizens! + +MENENIUS: +On both sides more respect. + +SICINIUS: +Here's he that would take from you all your power. + +BRUTUS: +Seize him, AEdiles! + +Citizens: +Down with him! down with him! + +Senators, &C: +Weapons, weapons, weapons! +'Tribunes!' 'Patricians!' 'Citizens!' 'What, ho!' +'Sicinius!' 'Brutus!' 'Coriolanus!' 'Citizens!' +'Peace, peace, peace!' 'Stay, hold, peace!' + +MENENIUS: +What is about to be? I am out of breath; +Confusion's near; I cannot speak. You, tribunes +To the people! Coriolanus, patience! +Speak, good Sicinius. + +SICINIUS: +Hear me, people; peace! + +Citizens: +Let's hear our tribune: peace Speak, speak, speak. + +SICINIUS: +You are at point to lose your liberties: +Marcius would have all from you; Marcius, +Whom late you have named for consul. + +MENENIUS: +Fie, fie, fie! +This is the way to kindle, not to quench. + +First Senator: +To unbuild the city and to lay all flat. + +SICINIUS: +What is the city but the people? + +Citizens: +True, +The people are the city. + +BRUTUS: +By the consent of all, we were establish'd +The people's magistrates. + +Citizens: +You so remain. + +MENENIUS: +And so are like to do. + +COMINIUS: +That is the way to lay the city flat; +To bring the roof to the foundation, +And bury all, which yet distinctly ranges, +In heaps and piles of ruin. + +SICINIUS: +This deserves death. + +BRUTUS: +Or let us stand to our authority, +Or let us lose it. We do here pronounce, +Upon the part o' the people, in whose power +We were elected theirs, Marcius is worthy +Of present death. + +SICINIUS: +Therefore lay hold of him; +Bear him to the rock Tarpeian, and from thence +Into destruction cast him. + +BRUTUS: +AEdiles, seize him! + +Citizens: +Yield, Marcius, yield! + +MENENIUS: +Hear me one word; +Beseech you, tribunes, hear me but a word. + +AEdile: +Peace, peace! + +MENENIUS: + +BRUTUS: +Sir, those cold ways, +That seem like prudent helps, are very poisonous +Where the disease is violent. Lay hands upon him, +And bear him to the rock. + +CORIOLANUS: +No, I'll die here. +There's some among you have beheld me fighting: +Come, try upon yourselves what you have seen me. + +MENENIUS: +Down with that sword! Tribunes, withdraw awhile. + +BRUTUS: +Lay hands upon him. + +COMINIUS: +Help Marcius, help, +You that be noble; help him, young and old! + +Citizens: +Down with him, down with him! + +MENENIUS: +Go, get you to your house; be gone, away! +All will be naught else. + +Second Senator: +Get you gone. + +COMINIUS: +Stand fast; +We have as many friends as enemies. + +MENENIUS: +Sham it be put to that? + +First Senator: +The gods forbid! +I prithee, noble friend, home to thy house; +Leave us to cure this cause. + +MENENIUS: +For 'tis a sore upon us, +You cannot tent yourself: be gone, beseech you. + +COMINIUS: +Come, sir, along with us. + +CORIOLANUS: +I would they were barbarians--as they are, +Though in Rome litter'd--not Romans--as they are not, +Though calved i' the porch o' the Capitol-- + +MENENIUS: +Be gone; +Put not your worthy rage into your tongue; +One time will owe another. + +CORIOLANUS: +On fair ground +I could beat forty of them. + +COMINIUS: +I could myself +Take up a brace o' the best of them; yea, the +two tribunes: +But now 'tis odds beyond arithmetic; +And manhood is call'd foolery, when it stands +Against a falling fabric. Will you hence, +Before the tag return? whose rage doth rend +Like interrupted waters and o'erbear +What they are used to bear. + +MENENIUS: +Pray you, be gone: +I'll try whether my old wit be in request +With those that have but little: this must be patch'd +With cloth of any colour. + +COMINIUS: +Nay, come away. + +A Patrician: +This man has marr'd his fortune. + +MENENIUS: +His nature is too noble for the world: +He would not flatter Neptune for his trident, +Or Jove for's power to thunder. His heart's his mouth: +What his breast forges, that his tongue must vent; +And, being angry, does forget that ever +He heard the name of death. +Here's goodly work! + +Second Patrician: +I would they were abed! + +MENENIUS: +I would they were in Tiber! What the vengeance! +Could he not speak 'em fair? + +SICINIUS: +Where is this viper +That would depopulate the city and +Be every man himself? + +MENENIUS: +You worthy tribunes,-- + +SICINIUS: +He shall be thrown down the Tarpeian rock +With rigorous hands: he hath resisted law, +And therefore law shall scorn him further trial +Than the severity of the public power +Which he so sets at nought. + +First Citizen: +He shall well know +The noble tribunes are the people's mouths, +And we their hands. + +Citizens: +He shall, sure on't. + +MENENIUS: +Sir, sir,-- + +SICINIUS: +Peace! + +MENENIUS: +Do not cry havoc, where you should but hunt +With modest warrant. + +SICINIUS: +Sir, how comes't that you +Have holp to make this rescue? + +MENENIUS: +Hear me speak: +As I do know the consul's worthiness, +So can I name his faults,-- + +SICINIUS: +Consul! what consul? + +MENENIUS: +The consul Coriolanus. + +BRUTUS: +He consul! + +Citizens: +No, no, no, no, no. + +MENENIUS: +If, by the tribunes' leave, and yours, good people, +I may be heard, I would crave a word or two; +The which shall turn you to no further harm +Than so much loss of time. + +SICINIUS: +Speak briefly then; +For we are peremptory to dispatch +This viperous traitor: to eject him hence +Were but one danger, and to keep him here +Our certain death: therefore it is decreed +He dies to-night. + +MENENIUS: +Now the good gods forbid +That our renowned Rome, whose gratitude +Towards her deserved children is enroll'd +In Jove's own book, like an unnatural dam +Should now eat up her own! + +SICINIUS: +He's a disease that must be cut away. + +MENENIUS: +O, he's a limb that has but a disease; +Mortal, to cut it off; to cure it, easy. +What has he done to Rome that's worthy death? +Killing our enemies, the blood he hath lost-- +Which, I dare vouch, is more than that he hath, +By many an ounce--he dropp'd it for his country; +And what is left, to lose it by his country, +Were to us all, that do't and suffer it, +A brand to the end o' the world. + +SICINIUS: +This is clean kam. + +BRUTUS: +Merely awry: when he did love his country, +It honour'd him. + +MENENIUS: +The service of the foot +Being once gangrened, is not then respected +For what before it was. + +BRUTUS: +We'll hear no more. +Pursue him to his house, and pluck him thence: +Lest his infection, being of catching nature, +Spread further. + +MENENIUS: +One word more, one word. +This tiger-footed rage, when it shall find +The harm of unscann'd swiftness, will too late +Tie leaden pounds to's heels. Proceed by process; +Lest parties, as he is beloved, break out, +And sack great Rome with Romans. + +BRUTUS: +If it were so,-- + +SICINIUS: +What do ye talk? +Have we not had a taste of his obedience? +Our aediles smote? ourselves resisted? Come. + +MENENIUS: +Consider this: he has been bred i' the wars +Since he could draw a sword, and is ill school'd +In bolted language; meal and bran together +He throws without distinction. Give me leave, +I'll go to him, and undertake to bring him +Where he shall answer, by a lawful form, +In peace, to his utmost peril. + +First Senator: +Noble tribunes, +It is the humane way: the other course +Will prove too bloody, and the end of it +Unknown to the beginning. + +SICINIUS: +Noble Menenius, +Be you then as the people's officer. +Masters, lay down your weapons. + +BRUTUS: +Go not home. + +SICINIUS: +Meet on the market-place. We'll attend you there: +Where, if you bring not Marcius, we'll proceed +In our first way. + +MENENIUS: +I'll bring him to you. +Let me desire your company: he must come, +Or what is worst will follow. + +First Senator: +Pray you, let's to him. + +CORIOLANUS: +Let them puff all about mine ears, present me +Death on the wheel or at wild horses' heels, +Or pile ten hills on the Tarpeian rock, +That the precipitation might down stretch +Below the beam of sight, yet will I still +Be thus to them. + +A Patrician: +You do the nobler. + +CORIOLANUS: +I muse my mother +Does not approve me further, who was wont +To call them woollen vassals, things created +To buy and sell with groats, to show bare heads +In congregations, to yawn, be still and wonder, +When one but of my ordinance stood up +To speak of peace or war. +I talk of you: +Why did you wish me milder? would you have me +False to my nature? Rather say I play +The man I am. + +VOLUMNIA: +O, sir, sir, sir, +I would have had you put your power well on, +Before you had worn it out. + +CORIOLANUS: +Let go. + +VOLUMNIA: +You might have been enough the man you are, +With striving less to be so; lesser had been +The thwartings of your dispositions, if +You had not show'd them how ye were disposed +Ere they lack'd power to cross you. + +CORIOLANUS: +Let them hang. + +A Patrician: +Ay, and burn too. + +MENENIUS: +Come, come, you have been too rough, something +too rough; +You must return and mend it. + +First Senator: +There's no remedy; +Unless, by not so doing, our good city +Cleave in the midst, and perish. + +VOLUMNIA: +Pray, be counsell'd: +I have a heart as little apt as yours, +But yet a brain that leads my use of anger +To better vantage. + +MENENIUS: +Well said, noble woman? +Before he should thus stoop to the herd, but that +The violent fit o' the time craves it as physic +For the whole state, I would put mine armour on, +Which I can scarcely bear. + +CORIOLANUS: +What must I do? + +MENENIUS: +Return to the tribunes. + +CORIOLANUS: +Well, what then? what then? + +MENENIUS: +Repent what you have spoke. + +CORIOLANUS: +For them! I cannot do it to the gods; +Must I then do't to them? + +VOLUMNIA: +You are too absolute; +Though therein you can never be too noble, +But when extremities speak. I have heard you say, +Honour and policy, like unsever'd friends, +I' the war do grow together: grant that, and tell me, +In peace what each of them by the other lose, +That they combine not there. + +CORIOLANUS: +Tush, tush! + +MENENIUS: +A good demand. + +VOLUMNIA: +If it be honour in your wars to seem +The same you are not, which, for your best ends, +You adopt your policy, how is it less or worse, +That it shall hold companionship in peace +With honour, as in war, since that to both +It stands in like request? + +CORIOLANUS: +Why force you this? + +VOLUMNIA: +Because that now it lies you on to speak +To the people; not by your own instruction, +Nor by the matter which your heart prompts you, +But with such words that are but rooted in +Your tongue, though but bastards and syllables +Of no allowance to your bosom's truth. +Now, this no more dishonours you at all +Than to take in a town with gentle words, +Which else would put you to your fortune and +The hazard of much blood. +I would dissemble with my nature where +My fortunes and my friends at stake required +I should do so in honour: I am in this, +Your wife, your son, these senators, the nobles; +And you will rather show our general louts +How you can frown than spend a fawn upon 'em, +For the inheritance of their loves and safeguard +Of what that want might ruin. + +MENENIUS: +Noble lady! +Come, go with us; speak fair: you may salve so, +Not what is dangerous present, but the loss +Of what is past. + +VOLUMNIA: +I prithee now, my son, +Go to them, with this bonnet in thy hand; +And thus far having stretch'd it--here be with them-- +Thy knee bussing the stones--for in such business +Action is eloquence, and the eyes of the ignorant +More learned than the ears--waving thy head, +Which often, thus, correcting thy stout heart, +Now humble as the ripest mulberry +That will not hold the handling: or say to them, +Thou art their soldier, and being bred in broils +Hast not the soft way which, thou dost confess, +Were fit for thee to use as they to claim, +In asking their good loves, but thou wilt frame +Thyself, forsooth, hereafter theirs, so far +As thou hast power and person. + +MENENIUS: +This but done, +Even as she speaks, why, their hearts were yours; +For they have pardons, being ask'd, as free +As words to little purpose. + +VOLUMNIA: +Prithee now, +Go, and be ruled: although I know thou hadst rather +Follow thine enemy in a fiery gulf +Than flatter him in a bower. Here is Cominius. + +COMINIUS: +I have been i' the market-place; and, sir,'tis fit +You make strong party, or defend yourself +By calmness or by absence: all's in anger. + +MENENIUS: +Only fair speech. + +COMINIUS: +I think 'twill serve, if he +Can thereto frame his spirit. + +VOLUMNIA: +He must, and will +Prithee now, say you will, and go about it. + +CORIOLANUS: +Must I go show them my unbarbed sconce? +Must I with base tongue give my noble heart +A lie that it must bear? Well, I will do't: +Yet, were there but this single plot to lose, +This mould of Marcius, they to dust should grind it +And throw't against the wind. To the market-place! +You have put me now to such a part which never +I shall discharge to the life. + +COMINIUS: +Come, come, we'll prompt you. + +VOLUMNIA: +I prithee now, sweet son, as thou hast said +My praises made thee first a soldier, so, +To have my praise for this, perform a part +Thou hast not done before. + +CORIOLANUS: +Well, I must do't: +Away, my disposition, and possess me +Some harlot's spirit! my throat of war be turn'd, +Which quired with my drum, into a pipe +Small as an eunuch, or the virgin voice +That babies lulls asleep! the smiles of knaves +Tent in my cheeks, and schoolboys' tears take up +The glasses of my sight! a beggar's tongue +Make motion through my lips, and my arm'd knees, +Who bow'd but in my stirrup, bend like his +That hath received an alms! I will not do't, +Lest I surcease to honour mine own truth +And by my body's action teach my mind +A most inherent baseness. + +VOLUMNIA: +At thy choice, then: +To beg of thee, it is my more dishonour +Than thou of them. Come all to ruin; let +Thy mother rather feel thy pride than fear +Thy dangerous stoutness, for I mock at death +With as big heart as thou. Do as thou list +Thy valiantness was mine, thou suck'dst it from me, +But owe thy pride thyself. + +CORIOLANUS: +Pray, be content: +Mother, I am going to the market-place; +Chide me no more. I'll mountebank their loves, +Cog their hearts from them, and come home beloved +Of all the trades in Rome. Look, I am going: +Commend me to my wife. I'll return consul; +Or never trust to what my tongue can do +I' the way of flattery further. + +VOLUMNIA: +Do your will. + +COMINIUS: +Away! the tribunes do attend you: arm yourself +To answer mildly; for they are prepared +With accusations, as I hear, more strong +Than are upon you yet. + +CORIOLANUS: +The word is 'mildly.' Pray you, let us go: +Let them accuse me by invention, I +Will answer in mine honour. + +MENENIUS: +Ay, but mildly. + +CORIOLANUS: +Well, mildly be it then. Mildly! + +BRUTUS: +In this point charge him home, that he affects +Tyrannical power: if he evade us there, +Enforce him with his envy to the people, +And that the spoil got on the Antiates +Was ne'er distributed. +What, will he come? + +AEdile: +He's coming. + +BRUTUS: +How accompanied? + +AEdile: +With old Menenius, and those senators +That always favour'd him. + +SICINIUS: +Have you a catalogue +Of all the voices that we have procured +Set down by the poll? + +AEdile: +I have; 'tis ready. + +SICINIUS: +Have you collected them by tribes? + +AEdile: +I have. + +SICINIUS: +Assemble presently the people hither; +And when they bear me say 'It shall be so +I' the right and strength o' the commons,' be it either +For death, for fine, or banishment, then let them +If I say fine, cry 'Fine;' if death, cry 'Death.' +Insisting on the old prerogative +And power i' the truth o' the cause. + +AEdile: +I shall inform them. + +BRUTUS: +And when such time they have begun to cry, +Let them not cease, but with a din confused +Enforce the present execution +Of what we chance to sentence. + +AEdile: +Very well. + +SICINIUS: +Make them be strong and ready for this hint, +When we shall hap to give 't them. + +BRUTUS: +Go about it. +Put him to choler straight: he hath been used +Ever to conquer, and to have his worth +Of contradiction: being once chafed, he cannot +Be rein'd again to temperance; then he speaks +What's in his heart; and that is there which looks +With us to break his neck. + +SICINIUS: +Well, here he comes. + +MENENIUS: +Calmly, I do beseech you. + +CORIOLANUS: +Ay, as an ostler, that for the poorest piece +Will bear the knave by the volume. The honour'd gods +Keep Rome in safety, and the chairs of justice +Supplied with worthy men! plant love among 's! +Throng our large temples with the shows of peace, +And not our streets with war! + +First Senator: +Amen, amen. + +MENENIUS: +A noble wish. + +SICINIUS: +Draw near, ye people. + +AEdile: +List to your tribunes. Audience: peace, I say! + +CORIOLANUS: +First, hear me speak. + +Both Tribunes: +Well, say. Peace, ho! + +CORIOLANUS: +Shall I be charged no further than this present? +Must all determine here? + +SICINIUS: +I do demand, +If you submit you to the people's voices, +Allow their officers and are content +To suffer lawful censure for such faults +As shall be proved upon you? + +CORIOLANUS: +I am content. + +MENENIUS: +Lo, citizens, he says he is content: +The warlike service he has done, consider; think +Upon the wounds his body bears, which show +Like graves i' the holy churchyard. + +CORIOLANUS: +Scratches with briers, +Scars to move laughter only. + +MENENIUS: +Consider further, +That when he speaks not like a citizen, +You find him like a soldier: do not take +His rougher accents for malicious sounds, +But, as I say, such as become a soldier, +Rather than envy you. + +COMINIUS: +Well, well, no more. + +CORIOLANUS: +What is the matter +That being pass'd for consul with full voice, +I am so dishonour'd that the very hour +You take it off again? + +SICINIUS: +Answer to us. + +CORIOLANUS: +Say, then: 'tis true, I ought so. + +SICINIUS: +We charge you, that you have contrived to take +From Rome all season'd office and to wind +Yourself into a power tyrannical; +For which you are a traitor to the people. + +CORIOLANUS: +How! traitor! + +MENENIUS: +Nay, temperately; your promise. + +CORIOLANUS: +The fires i' the lowest hell fold-in the people! +Call me their traitor! Thou injurious tribune! +Within thine eyes sat twenty thousand deaths, +In thy hand clutch'd as many millions, in +Thy lying tongue both numbers, I would say +'Thou liest' unto thee with a voice as free +As I do pray the gods. + +SICINIUS: +Mark you this, people? + +Citizens: +To the rock, to the rock with him! + +SICINIUS: +Peace! +We need not put new matter to his charge: +What you have seen him do and heard him speak, +Beating your officers, cursing yourselves, +Opposing laws with strokes and here defying +Those whose great power must try him; even this, +So criminal and in such capital kind, +Deserves the extremest death. + +BRUTUS: +But since he hath +Served well for Rome,-- + +CORIOLANUS: +What do you prate of service? + +BRUTUS: +I talk of that, that know it. + +CORIOLANUS: +You? + +MENENIUS: +Is this the promise that you made your mother? + +COMINIUS: +Know, I pray you,-- + +CORIOLANUS: +I know no further: +Let them pronounce the steep Tarpeian death, +Vagabond exile, raying, pent to linger +But with a grain a day, I would not buy +Their mercy at the price of one fair word; +Nor cheque my courage for what they can give, +To have't with saying 'Good morrow.' + +SICINIUS: +For that he has, +As much as in him lies, from time to time +Envied against the people, seeking means +To pluck away their power, as now at last +Given hostile strokes, and that not in the presence +Of dreaded justice, but on the ministers +That do distribute it; in the name o' the people +And in the power of us the tribunes, we, +Even from this instant, banish him our city, +In peril of precipitation +From off the rock Tarpeian never more +To enter our Rome gates: i' the people's name, +I say it shall be so. + +Citizens: +It shall be so, it shall be so; let him away: +He's banish'd, and it shall be so. + +COMINIUS: +Hear me, my masters, and my common friends,-- + +SICINIUS: +He's sentenced; no more hearing. + +COMINIUS: +Let me speak: +I have been consul, and can show for Rome +Her enemies' marks upon me. I do love +My country's good with a respect more tender, +More holy and profound, than mine own life, +My dear wife's estimate, her womb's increase, +And treasure of my loins; then if I would +Speak that,-- + +SICINIUS: +We know your drift: speak what? + +BRUTUS: +There's no more to be said, but he is banish'd, +As enemy to the people and his country: +It shall be so. + +Citizens: +It shall be so, it shall be so. + +CORIOLANUS: +You common cry of curs! whose breath I hate +As reek o' the rotten fens, whose loves I prize +As the dead carcasses of unburied men +That do corrupt my air, I banish you; +And here remain with your uncertainty! +Let every feeble rumour shake your hearts! +Your enemies, with nodding of their plumes, +Fan you into despair! Have the power still +To banish your defenders; till at length +Your ignorance, which finds not till it feels, +Making not reservation of yourselves, +Still your own foes, deliver you as most +Abated captives to some nation +That won you without blows! Despising, +For you, the city, thus I turn my back: +There is a world elsewhere. + +AEdile: +The people's enemy is gone, is gone! + +Citizens: +Our enemy is banish'd! he is gone! Hoo! hoo! + +SICINIUS: +Go, see him out at gates, and follow him, +As he hath followed you, with all despite; +Give him deserved vexation. Let a guard +Attend us through the city. + +Citizens: +Come, come; let's see him out at gates; come. +The gods preserve our noble tribunes! Come. + +CORIOLANUS: +Come, leave your tears: a brief farewell: the beast +With many heads butts me away. Nay, mother, +Where is your ancient courage? you were used +To say extremity was the trier of spirits; +That common chances common men could bear; +That when the sea was calm all boats alike +Show'd mastership in floating; fortune's blows, +When most struck home, being gentle wounded, craves +A noble cunning: you were used to load me +With precepts that would make invincible +The heart that conn'd them. + +VIRGILIA: +O heavens! O heavens! + +CORIOLANUS: +Nay! prithee, woman,-- + +VOLUMNIA: +Now the red pestilence strike all trades in Rome, +And occupations perish! + +CORIOLANUS: +What, what, what! +I shall be loved when I am lack'd. Nay, mother. +Resume that spirit, when you were wont to say, +If you had been the wife of Hercules, +Six of his labours you'ld have done, and saved +Your husband so much sweat. Cominius, +Droop not; adieu. Farewell, my wife, my mother: +I'll do well yet. Thou old and true Menenius, +Thy tears are salter than a younger man's, +And venomous to thine eyes. My sometime general, +I have seen thee stem, and thou hast oft beheld +Heart-hardening spectacles; tell these sad women +'Tis fond to wail inevitable strokes, +As 'tis to laugh at 'em. My mother, you wot well +My hazards still have been your solace: and +Believe't not lightly--though I go alone, +Like to a lonely dragon, that his fen +Makes fear'd and talk'd of more than seen--your son +Will or exceed the common or be caught +With cautelous baits and practise. + +VOLUMNIA: +My first son. +Whither wilt thou go? Take good Cominius +With thee awhile: determine on some course, +More than a wild exposture to each chance +That starts i' the way before thee. + +CORIOLANUS: +O the gods! + +COMINIUS: +I'll follow thee a month, devise with thee +Where thou shalt rest, that thou mayst hear of us +And we of thee: so if the time thrust forth +A cause for thy repeal, we shall not send +O'er the vast world to seek a single man, +And lose advantage, which doth ever cool +I' the absence of the needer. + +CORIOLANUS: +Fare ye well: +Thou hast years upon thee; and thou art too full +Of the wars' surfeits, to go rove with one +That's yet unbruised: bring me but out at gate. +Come, my sweet wife, my dearest mother, and +My friends of noble touch, when I am forth, +Bid me farewell, and smile. I pray you, come. +While I remain above the ground, you shall +Hear from me still, and never of me aught +But what is like me formerly. + +MENENIUS: +That's worthily +As any ear can hear. Come, let's not weep. +If I could shake off but one seven years +From these old arms and legs, by the good gods, +I'ld with thee every foot. + +CORIOLANUS: +Give me thy hand: Come. + +SICINIUS: +Bid them all home; he's gone, and we'll no further. +The nobility are vex'd, whom we see have sided +In his behalf. + +BRUTUS: +Now we have shown our power, +Let us seem humbler after it is done +Than when it was a-doing. + +SICINIUS: +Bid them home: +Say their great enemy is gone, and they +Stand in their ancient strength. + +BRUTUS: +Dismiss them home. +Here comes his mother. + +SICINIUS: +Let's not meet her. + +BRUTUS: +Why? + +SICINIUS: +They say she's mad. + +BRUTUS: +They have ta'en note of us: keep on your way. + +VOLUMNIA: +O, ye're well met: the hoarded plague o' the gods +Requite your love! + +MENENIUS: +Peace, peace; be not so loud. + +VOLUMNIA: +If that I could for weeping, you should hear,-- +Nay, and you shall hear some. +Will you be gone? + +VIRGILIA: + +SICINIUS: +Are you mankind? + +VOLUMNIA: +Ay, fool; is that a shame? Note but this fool. +Was not a man my father? Hadst thou foxship +To banish him that struck more blows for Rome +Than thou hast spoken words? + +SICINIUS: +O blessed heavens! + +VOLUMNIA: +More noble blows than ever thou wise words; +And for Rome's good. I'll tell thee what; yet go: +Nay, but thou shalt stay too: I would my son +Were in Arabia, and thy tribe before him, +His good sword in his hand. + +SICINIUS: +What then? + +VIRGILIA: +What then! +He'ld make an end of thy posterity. + +VOLUMNIA: +Bastards and all. +Good man, the wounds that he does bear for Rome! + +MENENIUS: +Come, come, peace. + +SICINIUS: +I would he had continued to his country +As he began, and not unknit himself +The noble knot he made. + +BRUTUS: +I would he had. + +VOLUMNIA: +'I would he had'! 'Twas you incensed the rabble: +Cats, that can judge as fitly of his worth +As I can of those mysteries which heaven +Will not have earth to know. + +BRUTUS: +Pray, let us go. + +VOLUMNIA: +Now, pray, sir, get you gone: +You have done a brave deed. Ere you go, hear this:-- +As far as doth the Capitol exceed +The meanest house in Rome, so far my son-- +This lady's husband here, this, do you see-- +Whom you have banish'd, does exceed you all. + +BRUTUS: +Well, well, we'll leave you. + +SICINIUS: +Why stay we to be baited +With one that wants her wits? + +VOLUMNIA: +Take my prayers with you. +I would the gods had nothing else to do +But to confirm my curses! Could I meet 'em +But once a-day, it would unclog my heart +Of what lies heavy to't. + +MENENIUS: +You have told them home; +And, by my troth, you have cause. You'll sup with me? + +VOLUMNIA: +Anger's my meat; I sup upon myself, +And so shall starve with feeding. Come, let's go: +Leave this faint puling and lament as I do, +In anger, Juno-like. Come, come, come. + +MENENIUS: +Fie, fie, fie! + +Roman: +I know you well, sir, and you know +me: your name, I think, is Adrian. + +Volsce: +It is so, sir: truly, I have forgot you. + +Roman: +I am a Roman; and my services are, +as you are, against 'em: know you me yet? + +Volsce: +Nicanor? no. + +Roman: +The same, sir. + +Volsce: +You had more beard when I last saw you; but your +favour is well approved by your tongue. What's the +news in Rome? I have a note from the Volscian state, +to find you out there: you have well saved me a +day's journey. + +Roman: +There hath been in Rome strange insurrections; the +people against the senators, patricians, and nobles. + +Volsce: +Hath been! is it ended, then? Our state thinks not +so: they are in a most warlike preparation, and +hope to come upon them in the heat of their division. + +Roman: +The main blaze of it is past, but a small thing +would make it flame again: for the nobles receive +so to heart the banishment of that worthy +Coriolanus, that they are in a ripe aptness to take +all power from the people and to pluck from them +their tribunes for ever. This lies glowing, I can +tell you, and is almost mature for the violent +breaking out. + +Volsce: +Coriolanus banished! + +Roman: +Banished, sir. + +Volsce: +You will be welcome with this intelligence, Nicanor. + +Roman: +The day serves well for them now. I have heard it +said, the fittest time to corrupt a man's wife is +when she's fallen out with her husband. Your noble +Tullus Aufidius will appear well in these wars, his +great opposer, Coriolanus, being now in no request +of his country. + +Volsce: +He cannot choose. I am most fortunate, thus +accidentally to encounter you: you have ended my +business, and I will merrily accompany you home. + +Roman: +I shall, between this and supper, tell you most +strange things from Rome; all tending to the good of +their adversaries. Have you an army ready, say you? + +Volsce: +A most royal one; the centurions and their charges, +distinctly billeted, already in the entertainment, +and to be on foot at an hour's warning. + +Roman: +I am joyful to hear of their readiness, and am the +man, I think, that shall set them in present action. +So, sir, heartily well met, and most glad of your company. + +Volsce: +You take my part from me, sir; I have the most cause +to be glad of yours. + +Roman: +Well, let us go together. + +CORIOLANUS: +A goodly city is this Antium. City, +'Tis I that made thy widows: many an heir +Of these fair edifices 'fore my wars +Have I heard groan and drop: then know me not, +Lest that thy wives with spits and boys with stones +In puny battle slay me. +Save you, sir. + +Citizen: +And you. + +CORIOLANUS: +Direct me, if it be your will, +Where great Aufidius lies: is he in Antium? + +Citizen: +He is, and feasts the nobles of the state +At his house this night. + +CORIOLANUS: +Which is his house, beseech you? + +Citizen: +This, here before you. + +CORIOLANUS: +Thank you, sir: farewell. +O world, thy slippery turns! Friends now fast sworn, +Whose double bosoms seem to wear one heart, +Whose house, whose bed, whose meal, and exercise, +Are still together, who twin, as 'twere, in love +Unseparable, shall within this hour, +On a dissension of a doit, break out +To bitterest enmity: so, fellest foes, +Whose passions and whose plots have broke their sleep, +To take the one the other, by some chance, +Some trick not worth an egg, shall grow dear friends +And interjoin their issues. So with me: +My birth-place hate I, and my love's upon +This enemy town. I'll enter: if he slay me, +He does fair justice; if he give me way, +I'll do his country service. + +First Servingman: +Wine, wine, wine! What service +is here! I think our fellows are asleep. + +Second Servingman: +Where's Cotus? my master calls +for him. Cotus! + +CORIOLANUS: +A goodly house: the feast smells well; but I +Appear not like a guest. + +First Servingman: +What would you have, friend? whence are you? +Here's no place for you: pray, go to the door. + +CORIOLANUS: +I have deserved no better entertainment, +In being Coriolanus. + +Second Servingman: +Whence are you, sir? Has the porter his eyes in his +head; that he gives entrance to such companions? +Pray, get you out. + +CORIOLANUS: +Away! + +Second Servingman: +Away! get you away. + +CORIOLANUS: +Now thou'rt troublesome. + +Second Servingman: +Are you so brave? I'll have you talked with anon. + +Third Servingman: +What fellow's this? + +First Servingman: +A strange one as ever I looked on: I cannot get him +out of the house: prithee, call my master to him. + +Third Servingman: +What have you to do here, fellow? Pray you, avoid +the house. + +CORIOLANUS: +Let me but stand; I will not hurt your hearth. + +Third Servingman: +What are you? + +CORIOLANUS: +A gentleman. + +Third Servingman: +A marvellous poor one. + +CORIOLANUS: +True, so I am. + +Third Servingman: +Pray you, poor gentleman, take up some other +station; here's no place for you; pray you, avoid: come. + +CORIOLANUS: +Follow your function, go, and batten on cold bits. + +Third Servingman: +What, you will not? Prithee, tell my master what a +strange guest he has here. + +Second Servingman: +And I shall. + +Third Servingman: +Where dwellest thou? + +CORIOLANUS: +Under the canopy. + +Third Servingman: +Under the canopy! + +CORIOLANUS: +Ay. + +Third Servingman: +Where's that? + +CORIOLANUS: +I' the city of kites and crows. + +Third Servingman: +I' the city of kites and crows! What an ass it is! +Then thou dwellest with daws too? + +CORIOLANUS: +No, I serve not thy master. + +Third Servingman: +How, sir! do you meddle with my master? + +CORIOLANUS: +Ay; 'tis an honester service than to meddle with thy +mistress. Thou pratest, and pratest; serve with thy +trencher, hence! + +AUFIDIUS: +Where is this fellow? + +Second Servingman: +Here, sir: I'ld have beaten him like a dog, but for +disturbing the lords within. + +AUFIDIUS: +Whence comest thou? what wouldst thou? thy name? +Why speak'st not? speak, man: what's thy name? + +CORIOLANUS: +If, Tullus, +Not yet thou knowest me, and, seeing me, dost not +Think me for the man I am, necessity +Commands me name myself. + +AUFIDIUS: +What is thy name? + +CORIOLANUS: +A name unmusical to the Volscians' ears, +And harsh in sound to thine. + +AUFIDIUS: +Say, what's thy name? +Thou hast a grim appearance, and thy face +Bears a command in't; though thy tackle's torn. +Thou show'st a noble vessel: what's thy name? + +CORIOLANUS: +Prepare thy brow to frown: know'st +thou me yet? + +AUFIDIUS: +I know thee not: thy name? + +CORIOLANUS: +My name is Caius Marcius, who hath done +To thee particularly and to all the Volsces +Great hurt and mischief; thereto witness may +My surname, Coriolanus: the painful service, +The extreme dangers and the drops of blood +Shed for my thankless country are requited +But with that surname; a good memory, +And witness of the malice and displeasure +Which thou shouldst bear me: only that name remains; +The cruelty and envy of the people, +Permitted by our dastard nobles, who +Have all forsook me, hath devour'd the rest; +And suffer'd me by the voice of slaves to be +Whoop'd out of Rome. Now this extremity +Hath brought me to thy hearth; not out of hope-- +Mistake me not--to save my life, for if +I had fear'd death, of all the men i' the world +I would have 'voided thee, but in mere spite, +To be full quit of those my banishers, +Stand I before thee here. Then if thou hast +A heart of wreak in thee, that wilt revenge +Thine own particular wrongs and stop those maims +Of shame seen through thy country, speed +thee straight, +And make my misery serve thy turn: so use it +That my revengeful services may prove +As benefits to thee, for I will fight +Against my canker'd country with the spleen +Of all the under fiends. But if so be +Thou darest not this and that to prove more fortunes +Thou'rt tired, then, in a word, I also am +Longer to live most weary, and present +My throat to thee and to thy ancient malice; +Which not to cut would show thee but a fool, +Since I have ever follow'd thee with hate, +Drawn tuns of blood out of thy country's breast, +And cannot live but to thy shame, unless +It be to do thee service. + +AUFIDIUS: +O Marcius, Marcius! +Each word thou hast spoke hath weeded from my heart +A root of ancient envy. If Jupiter +Should from yond cloud speak divine things, +And say 'Tis true,' I'ld not believe them more +Than thee, all noble Marcius. Let me twine +Mine arms about that body, where against +My grained ash an hundred times hath broke +And scarr'd the moon with splinters: here I clip +The anvil of my sword, and do contest +As hotly and as nobly with thy love +As ever in ambitious strength I did +Contend against thy valour. Know thou first, +I loved the maid I married; never man +Sigh'd truer breath; but that I see thee here, +Thou noble thing! more dances my rapt heart +Than when I first my wedded mistress saw +Bestride my threshold. Why, thou Mars! I tell thee, +We have a power on foot; and I had purpose +Once more to hew thy target from thy brawn, +Or lose mine arm fort: thou hast beat me out +Twelve several times, and I have nightly since +Dreamt of encounters 'twixt thyself and me; +We have been down together in my sleep, +Unbuckling helms, fisting each other's throat, +And waked half dead with nothing. Worthy Marcius, +Had we no quarrel else to Rome, but that +Thou art thence banish'd, we would muster all +From twelve to seventy, and pouring war +Into the bowels of ungrateful Rome, +Like a bold flood o'er-bear. O, come, go in, +And take our friendly senators by the hands; +Who now are here, taking their leaves of me, +Who am prepared against your territories, +Though not for Rome itself. + +CORIOLANUS: +You bless me, gods! + +AUFIDIUS: +Therefore, most absolute sir, if thou wilt have +The leading of thine own revenges, take +The one half of my commission; and set down-- +As best thou art experienced, since thou know'st +Thy country's strength and weakness,--thine own ways; +Whether to knock against the gates of Rome, +Or rudely visit them in parts remote, +To fright them, ere destroy. But come in: +Let me commend thee first to those that shall +Say yea to thy desires. A thousand welcomes! +And more a friend than e'er an enemy; +Yet, Marcius, that was much. Your hand: most welcome! + +First Servingman: +Here's a strange alteration! + +Second Servingman: +By my hand, I had thought to have strucken him with +a cudgel; and yet my mind gave me his clothes made a +false report of him. + +First Servingman: +What an arm he has! he turned me about with his +finger and his thumb, as one would set up a top. + +Second Servingman: +Nay, I knew by his face that there was something in +him: he had, sir, a kind of face, methought,--I +cannot tell how to term it. + +First Servingman: +He had so; looking as it were--would I were hanged, +but I thought there was more in him than I could think. + +Second Servingman: +So did I, I'll be sworn: he is simply the rarest +man i' the world. + +First Servingman: +I think he is: but a greater soldier than he you wot on. + +Second Servingman: +Who, my master? + +First Servingman: +Nay, it's no matter for that. + +Second Servingman: +Worth six on him. + +First Servingman: +Nay, not so neither: but I take him to be the +greater soldier. + +Second Servingman: +Faith, look you, one cannot tell how to say that: +for the defence of a town, our general is excellent. + +First Servingman: +Ay, and for an assault too. + +Third Servingman: +O slaves, I can tell you news,-- news, you rascals! + +First Servingman: +What, what, what? let's partake. + +Third Servingman: +I would not be a Roman, of all nations; I had as +lieve be a condemned man. + +First Servingman: +Wherefore? wherefore? + +Third Servingman: +Why, here's he that was wont to thwack our general, +Caius Marcius. + +First Servingman: +Why do you say 'thwack our general '? + +Third Servingman: +I do not say 'thwack our general;' but he was always +good enough for him. + +Second Servingman: +Come, we are fellows and friends: he was ever too +hard for him; I have heard him say so himself. + +First Servingman: +He was too hard for him directly, to say the troth +on't: before Corioli he scotched him and notched +him like a carbon ado. + +Second Servingman: +An he had been cannibally given, he might have +broiled and eaten him too. + +First Servingman: +But, more of thy news? + +Third Servingman: +Why, he is so made on here within, as if he were son +and heir to Mars; set at upper end o' the table; no +question asked him by any of the senators, but they +stand bald before him: our general himself makes a +mistress of him: sanctifies himself with's hand and +turns up the white o' the eye to his discourse. But +the bottom of the news is that our general is cut i' +the middle and but one half of what he was +yesterday; for the other has half, by the entreaty +and grant of the whole table. He'll go, he says, +and sowl the porter of Rome gates by the ears: he +will mow all down before him, and leave his passage polled. + +Second Servingman: +And he's as like to do't as any man I can imagine. + +Third Servingman: +Do't! he will do't; for, look you, sir, he has as +many friends as enemies; which friends, sir, as it +were, durst not, look you, sir, show themselves, as +we term it, his friends whilst he's in directitude. + +First Servingman: +Directitude! what's that? + +Third Servingman: +But when they shall see, sir, his crest up again, +and the man in blood, they will out of their +burrows, like conies after rain, and revel all with +him. + +First Servingman: +But when goes this forward? + +Third Servingman: +To-morrow; to-day; presently; you shall have the +drum struck up this afternoon: 'tis, as it were, a +parcel of their feast, and to be executed ere they +wipe their lips. + +Second Servingman: +Why, then we shall have a stirring world again. +This peace is nothing, but to rust iron, increase +tailors, and breed ballad-makers. + +First Servingman: +Let me have war, say I; it exceeds peace as far as +day does night; it's spritely, waking, audible, and +full of vent. Peace is a very apoplexy, lethargy; +mulled, deaf, sleepy, insensible; a getter of more +bastard children than war's a destroyer of men. + +Second Servingman: +'Tis so: and as war, in some sort, may be said to +be a ravisher, so it cannot be denied but peace is a +great maker of cuckolds. + +First Servingman: +Ay, and it makes men hate one another. + +Third Servingman: +Reason; because they then less need one another. +The wars for my money. I hope to see Romans as cheap +as Volscians. They are rising, they are rising. + +All: +In, in, in, in! + +SICINIUS: +We hear not of him, neither need we fear him; +His remedies are tame i' the present peace +And quietness of the people, which before +Were in wild hurry. Here do we make his friends +Blush that the world goes well, who rather had, +Though they themselves did suffer by't, behold +Dissentious numbers pestering streets than see +Our tradesmen with in their shops and going +About their functions friendly. + +BRUTUS: +We stood to't in good time. +Is this Menenius? + +SICINIUS: +'Tis he,'tis he: O, he is grown most kind of late. + +Both Tribunes: +Hail sir! + +MENENIUS: +Hail to you both! + +SICINIUS: +Your Coriolanus +Is not much miss'd, but with his friends: +The commonwealth doth stand, and so would do, +Were he more angry at it. + +MENENIUS: +All's well; and might have been much better, if +He could have temporized. + +SICINIUS: +Where is he, hear you? + +MENENIUS: +Nay, I hear nothing: his mother and his wife +Hear nothing from him. + +Citizens: +The gods preserve you both! + +SICINIUS: +God-den, our neighbours. + +BRUTUS: +God-den to you all, god-den to you all. + +First Citizen: +Ourselves, our wives, and children, on our knees, +Are bound to pray for you both. + +SICINIUS: +Live, and thrive! + +BRUTUS: +Farewell, kind neighbours: we wish'd Coriolanus +Had loved you as we did. + +Citizens: +Now the gods keep you! + +Both Tribunes: +Farewell, farewell. + +SICINIUS: +This is a happier and more comely time +Than when these fellows ran about the streets, +Crying confusion. + +BRUTUS: +Caius Marcius was +A worthy officer i' the war; but insolent, +O'ercome with pride, ambitious past all thinking, +Self-loving,-- + +SICINIUS: +And affecting one sole throne, +Without assistance. + +MENENIUS: +I think not so. + +SICINIUS: +We should by this, to all our lamentation, +If he had gone forth consul, found it so. + +BRUTUS: +The gods have well prevented it, and Rome +Sits safe and still without him. + +AEdile: +Worthy tribunes, +There is a slave, whom we have put in prison, +Reports, the Volsces with two several powers +Are enter'd in the Roman territories, +And with the deepest malice of the war +Destroy what lies before 'em. + +MENENIUS: +'Tis Aufidius, +Who, hearing of our Marcius' banishment, +Thrusts forth his horns again into the world; +Which were inshell'd when Marcius stood for Rome, +And durst not once peep out. + +SICINIUS: +Come, what talk you +Of Marcius? + +BRUTUS: +Go see this rumourer whipp'd. It cannot be +The Volsces dare break with us. + +MENENIUS: +Cannot be! +We have record that very well it can, +And three examples of the like have been +Within my age. But reason with the fellow, +Before you punish him, where he heard this, +Lest you shall chance to whip your information +And beat the messenger who bids beware +Of what is to be dreaded. + +SICINIUS: +Tell not me: +I know this cannot be. + +BRUTUS: +Not possible. + +Messenger: +The nobles in great earnestness are going +All to the senate-house: some news is come +That turns their countenances. + +SICINIUS: +'Tis this slave;-- +Go whip him, 'fore the people's eyes:--his raising; +Nothing but his report. + +Messenger: +Yes, worthy sir, +The slave's report is seconded; and more, +More fearful, is deliver'd. + +SICINIUS: +What more fearful? + +Messenger: +It is spoke freely out of many mouths-- +How probable I do not know--that Marcius, +Join'd with Aufidius, leads a power 'gainst Rome, +And vows revenge as spacious as between +The young'st and oldest thing. + +SICINIUS: +This is most likely! + +BRUTUS: +Raised only, that the weaker sort may wish +Good Marcius home again. + +SICINIUS: +The very trick on't. + +MENENIUS: +This is unlikely: +He and Aufidius can no more atone +Than violentest contrariety. + +Second Messenger: +You are sent for to the senate: +A fearful army, led by Caius Marcius +Associated with Aufidius, rages +Upon our territories; and have already +O'erborne their way, consumed with fire, and took +What lay before them. + +COMINIUS: +O, you have made good work! + +MENENIUS: +What news? what news? + +COMINIUS: +You have holp to ravish your own daughters and +To melt the city leads upon your pates, +To see your wives dishonour'd to your noses,-- + +MENENIUS: +What's the news? what's the news? + +COMINIUS: +Your temples burned in their cement, and +Your franchises, whereon you stood, confined +Into an auger's bore. + +MENENIUS: +Pray now, your news? +You have made fair work, I fear me.--Pray, your news?-- +If Marcius should be join'd with Volscians,-- + +COMINIUS: +If! +He is their god: he leads them like a thing +Made by some other deity than nature, +That shapes man better; and they follow him, +Against us brats, with no less confidence +Than boys pursuing summer butterflies, +Or butchers killing flies. + +MENENIUS: +You have made good work, +You and your apron-men; you that stood so up much +on the voice of occupation and +The breath of garlic-eaters! + +COMINIUS: +He will shake +Your Rome about your ears. + +MENENIUS: +As Hercules +Did shake down mellow fruit. +You have made fair work! + +BRUTUS: +But is this true, sir? + +COMINIUS: +Ay; and you'll look pale +Before you find it other. All the regions +Do smilingly revolt; and who resist +Are mock'd for valiant ignorance, +And perish constant fools. Who is't can blame him? +Your enemies and his find something in him. + +MENENIUS: +We are all undone, unless +The noble man have mercy. + +COMINIUS: +Who shall ask it? +The tribunes cannot do't for shame; the people +Deserve such pity of him as the wolf +Does of the shepherds: for his best friends, if they +Should say 'Be good to Rome,' they charged him even +As those should do that had deserved his hate, +And therein show'd like enemies. + +MENENIUS: +'Tis true: +If he were putting to my house the brand +That should consume it, I have not the face +To say 'Beseech you, cease.' You have made fair hands, +You and your crafts! you have crafted fair! + +COMINIUS: +You have brought +A trembling upon Rome, such as was never +So incapable of help. + +Both Tribunes: +Say not we brought it. + +MENENIUS: +How! Was it we? we loved him but, like beasts +And cowardly nobles, gave way unto your clusters, +Who did hoot him out o' the city. + +COMINIUS: +But I fear +They'll roar him in again. Tullus Aufidius, +The second name of men, obeys his points +As if he were his officer: desperation +Is all the policy, strength and defence, +That Rome can make against them. + +MENENIUS: +Here come the clusters. +And is Aufidius with him? You are they +That made the air unwholesome, when you cast +Your stinking greasy caps in hooting at +Coriolanus' exile. Now he's coming; +And not a hair upon a soldier's head +Which will not prove a whip: as many coxcombs +As you threw caps up will he tumble down, +And pay you for your voices. 'Tis no matter; +if he could burn us all into one coal, +We have deserved it. + +Citizens: +Faith, we hear fearful news. + +First Citizen: +For mine own part, +When I said, banish him, I said 'twas pity. + +Second Citizen: +And so did I. + +Third Citizen: +And so did I; and, to say the truth, so did very +many of us: that we did, we did for the best; and +though we willingly consented to his banishment, yet +it was against our will. + +COMINIUS: +Ye re goodly things, you voices! + +MENENIUS: +You have made +Good work, you and your cry! Shall's to the Capitol? + +COMINIUS: +O, ay, what else? + +SICINIUS: +Go, masters, get you home; be not dismay'd: +These are a side that would be glad to have +This true which they so seem to fear. Go home, +And show no sign of fear. + +First Citizen: +The gods be good to us! Come, masters, let's home. +I ever said we were i' the wrong when we banished +him. + +Second Citizen: +So did we all. But, come, let's home. + +BRUTUS: +I do not like this news. + +SICINIUS: +Nor I. + +BRUTUS: +Let's to the Capitol. Would half my wealth +Would buy this for a lie! + +SICINIUS: +Pray, let us go. + +AUFIDIUS: +Do they still fly to the Roman? + +Lieutenant: +I do not know what witchcraft's in him, but +Your soldiers use him as the grace 'fore meat, +Their talk at table, and their thanks at end; +And you are darken'd in this action, sir, +Even by your own. + +AUFIDIUS: +I cannot help it now, +Unless, by using means, I lame the foot +Of our design. He bears himself more proudlier, +Even to my person, than I thought he would +When first I did embrace him: yet his nature +In that's no changeling; and I must excuse +What cannot be amended. + +Lieutenant: +Yet I wish, sir,-- +I mean for your particular,--you had not +Join'd in commission with him; but either +Had borne the action of yourself, or else +To him had left it solely. + +AUFIDIUS: +I understand thee well; and be thou sure, +when he shall come to his account, he knows not +What I can urge against him. Although it seems, +And so he thinks, and is no less apparent +To the vulgar eye, that he bears all things fairly. +And shows good husbandry for the Volscian state, +Fights dragon-like, and does achieve as soon +As draw his sword; yet he hath left undone +That which shall break his neck or hazard mine, +Whene'er we come to our account. + +Lieutenant: +Sir, I beseech you, think you he'll carry Rome? + +AUFIDIUS: +All places yield to him ere he sits down; +And the nobility of Rome are his: +The senators and patricians love him too: +The tribunes are no soldiers; and their people +Will be as rash in the repeal, as hasty +To expel him thence. I think he'll be to Rome +As is the osprey to the fish, who takes it +By sovereignty of nature. First he was +A noble servant to them; but he could not +Carry his honours even: whether 'twas pride, +Which out of daily fortune ever taints +The happy man; whether defect of judgment, +To fail in the disposing of those chances +Which he was lord of; or whether nature, +Not to be other than one thing, not moving +From the casque to the cushion, but commanding peace +Even with the same austerity and garb +As he controll'd the war; but one of these-- +As he hath spices of them all, not all, +For I dare so far free him--made him fear'd, +So hated, and so banish'd: but he has a merit, +To choke it in the utterance. So our virtues +Lie in the interpretation of the time: +And power, unto itself most commendable, +Hath not a tomb so evident as a chair +To extol what it hath done. +One fire drives out one fire; one nail, one nail; +Rights by rights falter, strengths by strengths do fail. +Come, let's away. When, Caius, Rome is thine, +Thou art poor'st of all; then shortly art thou mine. + +MENENIUS: +No, I'll not go: you hear what he hath said +Which was sometime his general; who loved him +In a most dear particular. He call'd me father: +But what o' that? Go, you that banish'd him; +A mile before his tent fall down, and knee +The way into his mercy: nay, if he coy'd +To hear Cominius speak, I'll keep at home. + +COMINIUS: +He would not seem to know me. + +MENENIUS: +Do you hear? + +COMINIUS: +Yet one time he did call me by my name: +I urged our old acquaintance, and the drops +That we have bled together. Coriolanus +He would not answer to: forbad all names; +He was a kind of nothing, titleless, +Till he had forged himself a name o' the fire +Of burning Rome. + +MENENIUS: +Why, so: you have made good work! +A pair of tribunes that have rack'd for Rome, +To make coals cheap,--a noble memory! + +COMINIUS: +I minded him how royal 'twas to pardon +When it was less expected: he replied, +It was a bare petition of a state +To one whom they had punish'd. + +MENENIUS: +Very well: +Could he say less? + +COMINIUS: +I offer'd to awaken his regard +For's private friends: his answer to me was, +He could not stay to pick them in a pile +Of noisome musty chaff: he said 'twas folly, +For one poor grain or two, to leave unburnt, +And still to nose the offence. + +MENENIUS: +For one poor grain or two! +I am one of those; his mother, wife, his child, +And this brave fellow too, we are the grains: +You are the musty chaff; and you are smelt +Above the moon: we must be burnt for you. + +SICINIUS: +Nay, pray, be patient: if you refuse your aid +In this so never-needed help, yet do not +Upbraid's with our distress. But, sure, if you +Would be your country's pleader, your good tongue, +More than the instant army we can make, +Might stop our countryman. + +MENENIUS: +No, I'll not meddle. + +SICINIUS: +Pray you, go to him. + +MENENIUS: +What should I do? + +BRUTUS: +Only make trial what your love can do +For Rome, towards Marcius. + +MENENIUS: +Well, and say that Marcius +Return me, as Cominius is return'd, +Unheard; what then? +But as a discontented friend, grief-shot +With his unkindness? say't be so? + +SICINIUS: +Yet your good will +must have that thanks from Rome, after the measure +As you intended well. + +MENENIUS: +I'll undertake 't: +I think he'll hear me. Yet, to bite his lip +And hum at good Cominius, much unhearts me. +He was not taken well; he had not dined: +The veins unfill'd, our blood is cold, and then +We pout upon the morning, are unapt +To give or to forgive; but when we have stuff'd +These and these conveyances of our blood +With wine and feeding, we have suppler souls +Than in our priest-like fasts: therefore I'll watch him +Till he be dieted to my request, +And then I'll set upon him. + +BRUTUS: +You know the very road into his kindness, +And cannot lose your way. + +MENENIUS: +Good faith, I'll prove him, +Speed how it will. I shall ere long have knowledge +Of my success. + +COMINIUS: +He'll never hear him. + +SICINIUS: +Not? + +COMINIUS: +I tell you, he does sit in gold, his eye +Red as 'twould burn Rome; and his injury +The gaoler to his pity. I kneel'd before him; +'Twas very faintly he said 'Rise;' dismiss'd me +Thus, with his speechless hand: what he would do, +He sent in writing after me; what he would not, +Bound with an oath to yield to his conditions: +So that all hope is vain. +Unless his noble mother, and his wife; +Who, as I hear, mean to solicit him +For mercy to his country. Therefore, let's hence, +And with our fair entreaties haste them on. + +First Senator: +Stay: whence are you? + +Second Senator: +Stand, and go back. + +MENENIUS: +You guard like men; 'tis well: but, by your leave, +I am an officer of state, and come +To speak with Coriolanus. + +First Senator: +From whence? + +MENENIUS: +From Rome. + +First Senator: +You may not pass, you must return: our general +Will no more hear from thence. + +Second Senator: +You'll see your Rome embraced with fire before +You'll speak with Coriolanus. + +MENENIUS: +Good my friends, +If you have heard your general talk of Rome, +And of his friends there, it is lots to blanks, +My name hath touch'd your ears it is Menenius. + +First Senator: +Be it so; go back: the virtue of your name +Is not here passable. + +MENENIUS: +I tell thee, fellow, +The general is my lover: I have been +The book of his good acts, whence men have read +His name unparallel'd, haply amplified; +For I have ever verified my friends, +Of whom he's chief, with all the size that verity +Would without lapsing suffer: nay, sometimes, +Like to a bowl upon a subtle ground, +I have tumbled past the throw; and in his praise +Have almost stamp'd the leasing: therefore, fellow, +I must have leave to pass. + +First Senator: +Faith, sir, if you had told as many lies in his +behalf as you have uttered words in your own, you +should not pass here; no, though it were as virtuous +to lie as to live chastely. Therefore, go back. + +MENENIUS: +Prithee, fellow, remember my name is Menenius, +always factionary on the party of your general. + +Second Senator: +Howsoever you have been his liar, as you say you +have, I am one that, telling true under him, must +say, you cannot pass. Therefore, go back. + +MENENIUS: +Has he dined, canst thou tell? for I would not +speak with him till after dinner. + +First Senator: +You are a Roman, are you? + +MENENIUS: +I am, as thy general is. + +First Senator: +Then you should hate Rome, as he does. Can you, +when you have pushed out your gates the very +defender of them, and, in a violent popular +ignorance, given your enemy your shield, think to +front his revenges with the easy groans of old +women, the virginal palms of your daughters, or with +the palsied intercession of such a decayed dotant as +you seem to be? Can you think to blow out the +intended fire your city is ready to flame in, with +such weak breath as this? No, you are deceived; +therefore, back to Rome, and prepare for your +execution: you are condemned, our general has sworn +you out of reprieve and pardon. + +MENENIUS: +Sirrah, if thy captain knew I were here, he would +use me with estimation. + +Second Senator: +Come, my captain knows you not. + +MENENIUS: +I mean, thy general. + +First Senator: +My general cares not for you. Back, I say, go; lest +I let forth your half-pint of blood; back,--that's +the utmost of your having: back. + +MENENIUS: +Nay, but, fellow, fellow,-- + +CORIOLANUS: +What's the matter? + +MENENIUS: +Now, you companion, I'll say an errand for you: +You shall know now that I am in estimation; you shall +perceive that a Jack guardant cannot office me from +my son Coriolanus: guess, but by my entertainment +with him, if thou standest not i' the state of +hanging, or of some death more long in +spectatorship, and crueller in suffering; behold now +presently, and swoon for what's to come upon thee. +The glorious gods sit in hourly synod about thy +particular prosperity, and love thee no worse than +thy old father Menenius does! O my son, my son! +thou art preparing fire for us; look thee, here's +water to quench it. I was hardly moved to come to +thee; but being assured none but myself could move +thee, I have been blown out of your gates with +sighs; and conjure thee to pardon Rome, and thy +petitionary countrymen. The good gods assuage thy +wrath, and turn the dregs of it upon this varlet +here,--this, who, like a block, hath denied my +access to thee. + +CORIOLANUS: +Away! + +MENENIUS: +How! away! + +CORIOLANUS: +Wife, mother, child, I know not. My affairs +Are servanted to others: though I owe +My revenge properly, my remission lies +In Volscian breasts. That we have been familiar, +Ingrate forgetfulness shall poison, rather +Than pity note how much. Therefore, be gone. +Mine ears against your suits are stronger than +Your gates against my force. Yet, for I loved thee, +Take this along; I writ it for thy sake +And would have rent it. Another word, Menenius, +I will not hear thee speak. This man, Aufidius, +Was my beloved in Rome: yet thou behold'st! + +AUFIDIUS: +You keep a constant temper. + +First Senator: +Now, sir, is your name Menenius? + +Second Senator: +'Tis a spell, you see, of much power: you know the +way home again. + +First Senator: +Do you hear how we are shent for keeping your +greatness back? + +Second Senator: +What cause, do you think, I have to swoon? + +MENENIUS: +I neither care for the world nor your general: for +such things as you, I can scarce think there's any, +ye're so slight. He that hath a will to die by +himself fears it not from another: let your general +do his worst. For you, be that you are, long; and +your misery increase with your age! I say to you, +as I was said to, Away! + +First Senator: +A noble fellow, I warrant him. + +Second Senator: +The worthy fellow is our general: he's the rock, the +oak not to be wind-shaken. + +CORIOLANUS: +We will before the walls of Rome tomorrow +Set down our host. My partner in this action, +You must report to the Volscian lords, how plainly +I have borne this business. + +AUFIDIUS: +Only their ends +You have respected; stopp'd your ears against +The general suit of Rome; never admitted +A private whisper, no, not with such friends +That thought them sure of you. + +CORIOLANUS: +This last old man, +Whom with a crack'd heart I have sent to Rome, +Loved me above the measure of a father; +Nay, godded me, indeed. Their latest refuge +Was to send him; for whose old love I have, +Though I show'd sourly to him, once more offer'd +The first conditions, which they did refuse +And cannot now accept; to grace him only +That thought he could do more, a very little +I have yielded to: fresh embassies and suits, +Nor from the state nor private friends, hereafter +Will I lend ear to. Ha! what shout is this? +Shall I be tempted to infringe my vow +In the same time 'tis made? I will not. +My wife comes foremost; then the honour'd mould +Wherein this trunk was framed, and in her hand +The grandchild to her blood. But, out, affection! +All bond and privilege of nature, break! +Let it be virtuous to be obstinate. +What is that curt'sy worth? or those doves' eyes, +Which can make gods forsworn? I melt, and am not +Of stronger earth than others. My mother bows; +As if Olympus to a molehill should +In supplication nod: and my young boy +Hath an aspect of intercession, which +Great nature cries 'Deny not.' let the Volsces +Plough Rome and harrow Italy: I'll never +Be such a gosling to obey instinct, but stand, +As if a man were author of himself +And knew no other kin. + +VIRGILIA: +My lord and husband! + +CORIOLANUS: +These eyes are not the same I wore in Rome. + +VIRGILIA: +The sorrow that delivers us thus changed +Makes you think so. + +CORIOLANUS: +Like a dull actor now, +I have forgot my part, and I am out, +Even to a full disgrace. Best of my flesh, +Forgive my tyranny; but do not say +For that 'Forgive our Romans.' O, a kiss +Long as my exile, sweet as my revenge! +Now, by the jealous queen of heaven, that kiss +I carried from thee, dear; and my true lip +Hath virgin'd it e'er since. You gods! I prate, +And the most noble mother of the world +Leave unsaluted: sink, my knee, i' the earth; +Of thy deep duty more impression show +Than that of common sons. + +VOLUMNIA: +O, stand up blest! +Whilst, with no softer cushion than the flint, +I kneel before thee; and unproperly +Show duty, as mistaken all this while +Between the child and parent. + +CORIOLANUS: +What is this? +Your knees to me? to your corrected son? +Then let the pebbles on the hungry beach +Fillip the stars; then let the mutinous winds +Strike the proud cedars 'gainst the fiery sun; +Murdering impossibility, to make +What cannot be, slight work. + +VOLUMNIA: +Thou art my warrior; +I holp to frame thee. Do you know this lady? + +CORIOLANUS: +The noble sister of Publicola, +The moon of Rome, chaste as the icicle +That's curdied by the frost from purest snow +And hangs on Dian's temple: dear Valeria! + +VOLUMNIA: +This is a poor epitome of yours, +Which by the interpretation of full time +May show like all yourself. + +CORIOLANUS: +The god of soldiers, +With the consent of supreme Jove, inform +Thy thoughts with nobleness; that thou mayst prove +To shame unvulnerable, and stick i' the wars +Like a great sea-mark, standing every flaw, +And saving those that eye thee! + +VOLUMNIA: +Your knee, sirrah. + +CORIOLANUS: +That's my brave boy! + +VOLUMNIA: +Even he, your wife, this lady, and myself, +Are suitors to you. + +CORIOLANUS: +I beseech you, peace: +Or, if you'ld ask, remember this before: +The thing I have forsworn to grant may never +Be held by you denials. Do not bid me +Dismiss my soldiers, or capitulate +Again with Rome's mechanics: tell me not +Wherein I seem unnatural: desire not +To ally my rages and revenges with +Your colder reasons. + +VOLUMNIA: +O, no more, no more! +You have said you will not grant us any thing; +For we have nothing else to ask, but that +Which you deny already: yet we will ask; +That, if you fail in our request, the blame +May hang upon your hardness: therefore hear us. + +CORIOLANUS: +Aufidius, and you Volsces, mark; for we'll +Hear nought from Rome in private. Your request? + +VOLUMNIA: +Should we be silent and not speak, our raiment +And state of bodies would bewray what life +We have led since thy exile. Think with thyself +How more unfortunate than all living women +Are we come hither: since that thy sight, +which should +Make our eyes flow with joy, hearts dance +with comforts, +Constrains them weep and shake with fear and sorrow; +Making the mother, wife and child to see +The son, the husband and the father tearing +His country's bowels out. And to poor we +Thine enmity's most capital: thou barr'st us +Our prayers to the gods, which is a comfort +That all but we enjoy; for how can we, +Alas, how can we for our country pray. +Whereto we are bound, together with thy victory, +Whereto we are bound? alack, or we must lose +The country, our dear nurse, or else thy person, +Our comfort in the country. We must find +An evident calamity, though we had +Our wish, which side should win: for either thou +Must, as a foreign recreant, be led +With manacles thorough our streets, or else +triumphantly tread on thy country's ruin, +And bear the palm for having bravely shed +Thy wife and children's blood. For myself, son, +I purpose not to wait on fortune till +These wars determine: if I cannot persuade thee +Rather to show a noble grace to both parts +Than seek the end of one, thou shalt no sooner +March to assault thy country than to tread-- +Trust to't, thou shalt not--on thy mother's womb, +That brought thee to this world. + +VIRGILIA: +Ay, and mine, +That brought you forth this boy, to keep your name +Living to time. + +Young MARCIUS: +A' shall not tread on me; +I'll run away till I am bigger, but then I'll fight. + +CORIOLANUS: +Not of a woman's tenderness to be, +Requires nor child nor woman's face to see. +I have sat too long. + +VOLUMNIA: +Nay, go not from us thus. +If it were so that our request did tend +To save the Romans, thereby to destroy +The Volsces whom you serve, you might condemn us, +As poisonous of your honour: no; our suit +Is that you reconcile them: while the Volsces +May say 'This mercy we have show'd;' the Romans, +'This we received;' and each in either side +Give the all-hail to thee and cry 'Be blest +For making up this peace!' Thou know'st, great son, +The end of war's uncertain, but this certain, +That, if thou conquer Rome, the benefit +Which thou shalt thereby reap is such a name, +Whose repetition will be dogg'd with curses; +Whose chronicle thus writ: 'The man was noble, +But with his last attempt he wiped it out; +Destroy'd his country, and his name remains +To the ensuing age abhorr'd.' Speak to me, son: +Thou hast affected the fine strains of honour, +To imitate the graces of the gods; +To tear with thunder the wide cheeks o' the air, +And yet to charge thy sulphur with a bolt +That should but rive an oak. Why dost not speak? +Think'st thou it honourable for a noble man +Still to remember wrongs? Daughter, speak you: +He cares not for your weeping. Speak thou, boy: +Perhaps thy childishness will move him more +Than can our reasons. There's no man in the world +More bound to 's mother; yet here he lets me prate +Like one i' the stocks. Thou hast never in thy life +Show'd thy dear mother any courtesy, +When she, poor hen, fond of no second brood, +Has cluck'd thee to the wars and safely home, +Loaden with honour. Say my request's unjust, +And spurn me back: but if it be not so, +Thou art not honest; and the gods will plague thee, +That thou restrain'st from me the duty which +To a mother's part belongs. He turns away: +Down, ladies; let us shame him with our knees. +To his surname Coriolanus 'longs more pride +Than pity to our prayers. Down: an end; +This is the last: so we will home to Rome, +And die among our neighbours. Nay, behold 's: +This boy, that cannot tell what he would have +But kneels and holds up bands for fellowship, +Does reason our petition with more strength +Than thou hast to deny 't. Come, let us go: +This fellow had a Volscian to his mother; +His wife is in Corioli and his child +Like him by chance. Yet give us our dispatch: +I am hush'd until our city be a-fire, +And then I'll speak a little. + +CORIOLANUS: +O mother, mother! +What have you done? Behold, the heavens do ope, +The gods look down, and this unnatural scene +They laugh at. O my mother, mother! O! +You have won a happy victory to Rome; +But, for your son,--believe it, O, believe it, +Most dangerously you have with him prevail'd, +If not most mortal to him. But, let it come. +Aufidius, though I cannot make true wars, +I'll frame convenient peace. Now, good Aufidius, +Were you in my stead, would you have heard +A mother less? or granted less, Aufidius? + +AUFIDIUS: +I was moved withal. + +CORIOLANUS: +I dare be sworn you were: +And, sir, it is no little thing to make +Mine eyes to sweat compassion. But, good sir, +What peace you'll make, advise me: for my part, +I'll not to Rome, I'll back with you; and pray you, +Stand to me in this cause. O mother! wife! + +AUFIDIUS: + +CORIOLANUS: +Ay, by and by; +But we will drink together; and you shall bear +A better witness back than words, which we, +On like conditions, will have counter-seal'd. +Come, enter with us. Ladies, you deserve +To have a temple built you: all the swords +In Italy, and her confederate arms, +Could not have made this peace. + +MENENIUS: +See you yond coign o' the Capitol, yond +corner-stone? + +SICINIUS: +Why, what of that? + +MENENIUS: +If it be possible for you to displace it with your +little finger, there is some hope the ladies of +Rome, especially his mother, may prevail with him. +But I say there is no hope in't: our throats are +sentenced and stay upon execution. + +SICINIUS: +Is't possible that so short a time can alter the +condition of a man! + +MENENIUS: +There is differency between a grub and a butterfly; +yet your butterfly was a grub. This Marcius is grown +from man to dragon: he has wings; he's more than a +creeping thing. + +SICINIUS: +He loved his mother dearly. + +MENENIUS: +So did he me: and he no more remembers his mother +now than an eight-year-old horse. The tartness +of his face sours ripe grapes: when he walks, he +moves like an engine, and the ground shrinks before +his treading: he is able to pierce a corslet with +his eye; talks like a knell, and his hum is a +battery. He sits in his state, as a thing made for +Alexander. What he bids be done is finished with +his bidding. He wants nothing of a god but eternity +and a heaven to throne in. + +SICINIUS: +Yes, mercy, if you report him truly. + +MENENIUS: +I paint him in the character. Mark what mercy his +mother shall bring from him: there is no more mercy +in him than there is milk in a male tiger; that +shall our poor city find: and all this is long of +you. + +SICINIUS: +The gods be good unto us! + +MENENIUS: +No, in such a case the gods will not be good unto +us. When we banished him, we respected not them; +and, he returning to break our necks, they respect not us. + +Messenger: +Sir, if you'ld save your life, fly to your house: +The plebeians have got your fellow-tribune +And hale him up and down, all swearing, if +The Roman ladies bring not comfort home, +They'll give him death by inches. + +SICINIUS: +What's the news? + +Second Messenger: +Good news, good news; the ladies have prevail'd, +The Volscians are dislodged, and Marcius gone: +A merrier day did never yet greet Rome, +No, not the expulsion of the Tarquins. + +SICINIUS: +Friend, +Art thou certain this is true? is it most certain? + +Second Messenger: +As certain as I know the sun is fire: +Where have you lurk'd, that you make doubt of it? +Ne'er through an arch so hurried the blown tide, +As the recomforted through the gates. Why, hark you! +The trumpets, sackbuts, psalteries and fifes, +Tabours and cymbals and the shouting Romans, +Make the sun dance. Hark you! + +MENENIUS: +This is good news: +I will go meet the ladies. This Volumnia +Is worth of consuls, senators, patricians, +A city full; of tribunes, such as you, +A sea and land full. You have pray'd well to-day: +This morning for ten thousand of your throats +I'd not have given a doit. Hark, how they joy! + +SICINIUS: +First, the gods bless you for your tidings; next, +Accept my thankfulness. + +Second Messenger: +Sir, we have all +Great cause to give great thanks. + +SICINIUS: +They are near the city? + +Second Messenger: +Almost at point to enter. + +SICINIUS: +We will meet them, +And help the joy. + +First Senator: +Behold our patroness, the life of Rome! +Call all your tribes together, praise the gods, +And make triumphant fires; strew flowers before them: +Unshout the noise that banish'd Marcius, +Repeal him with the welcome of his mother; +Cry 'Welcome, ladies, welcome!' + +All: +Welcome, ladies, Welcome! + +AUFIDIUS: +Go tell the lords o' the city I am here: +Deliver them this paper: having read it, +Bid them repair to the market place; where I, +Even in theirs and in the commons' ears, +Will vouch the truth of it. Him I accuse +The city ports by this hath enter'd and +Intends to appear before the people, hoping +To purge herself with words: dispatch. +Most welcome! + +First Conspirator: +How is it with our general? + +AUFIDIUS: +Even so +As with a man by his own alms empoison'd, +And with his charity slain. + +Second Conspirator: +Most noble sir, +If you do hold the same intent wherein +You wish'd us parties, we'll deliver you +Of your great danger. + +AUFIDIUS: +Sir, I cannot tell: +We must proceed as we do find the people. + +Third Conspirator: +The people will remain uncertain whilst +'Twixt you there's difference; but the fall of either +Makes the survivor heir of all. + +AUFIDIUS: +I know it; +And my pretext to strike at him admits +A good construction. I raised him, and I pawn'd +Mine honour for his truth: who being so heighten'd, +He water'd his new plants with dews of flattery, +Seducing so my friends; and, to this end, +He bow'd his nature, never known before +But to be rough, unswayable and free. + +Third Conspirator: +Sir, his stoutness +When he did stand for consul, which he lost +By lack of stooping,-- + +AUFIDIUS: +That I would have spoke of: +Being banish'd for't, he came unto my hearth; +Presented to my knife his throat: I took him; +Made him joint-servant with me; gave him way +In all his own desires; nay, let him choose +Out of my files, his projects to accomplish, +My best and freshest men; served his designments +In mine own person; holp to reap the fame +Which he did end all his; and took some pride +To do myself this wrong: till, at the last, +I seem'd his follower, not partner, and +He waged me with his countenance, as if +I had been mercenary. + +First Conspirator: +So he did, my lord: +The army marvell'd at it, and, in the last, +When he had carried Rome and that we look'd +For no less spoil than glory,-- + +AUFIDIUS: +There was it: +For which my sinews shall be stretch'd upon him. +At a few drops of women's rheum, which are +As cheap as lies, he sold the blood and labour +Of our great action: therefore shall he die, +And I'll renew me in his fall. But, hark! + +First Conspirator: +Your native town you enter'd like a post, +And had no welcomes home: but he returns, +Splitting the air with noise. + +Second Conspirator: +And patient fools, +Whose children he hath slain, their base throats tear +With giving him glory. + +Third Conspirator: +Therefore, at your vantage, +Ere he express himself, or move the people +With what he would say, let him feel your sword, +Which we will second. When he lies along, +After your way his tale pronounced shall bury +His reasons with his body. + +AUFIDIUS: +Say no more: +Here come the lords. + +All The Lords: +You are most welcome home. + +AUFIDIUS: +I have not deserved it. +But, worthy lords, have you with heed perused +What I have written to you? + +Lords: +We have. + +First Lord: +And grieve to hear't. +What faults he made before the last, I think +Might have found easy fines: but there to end +Where he was to begin and give away +The benefit of our levies, answering us +With our own charge, making a treaty where +There was a yielding,--this admits no excuse. + +AUFIDIUS: +He approaches: you shall hear him. + +CORIOLANUS: +Hail, lords! I am return'd your soldier, +No more infected with my country's love +Than when I parted hence, but still subsisting +Under your great command. You are to know +That prosperously I have attempted and +With bloody passage led your wars even to +The gates of Rome. Our spoils we have brought home +Do more than counterpoise a full third part +The charges of the action. We have made peace +With no less honour to the Antiates +Than shame to the Romans: and we here deliver, +Subscribed by the consuls and patricians, +Together with the seal o' the senate, what +We have compounded on. + +AUFIDIUS: +Read it not, noble lords; +But tell the traitor, in the high'st degree +He hath abused your powers. + +CORIOLANUS: +Traitor! how now! + +AUFIDIUS: +Ay, traitor, Marcius! + +CORIOLANUS: +Marcius! + +AUFIDIUS: +Ay, Marcius, Caius Marcius: dost thou think +I'll grace thee with that robbery, thy stol'n name +Coriolanus in Corioli? +You lords and heads o' the state, perfidiously +He has betray'd your business, and given up, +For certain drops of salt, your city Rome, +I say 'your city,' to his wife and mother; +Breaking his oath and resolution like +A twist of rotten silk, never admitting +Counsel o' the war, but at his nurse's tears +He whined and roar'd away your victory, +That pages blush'd at him and men of heart +Look'd wondering each at other. + +CORIOLANUS: +Hear'st thou, Mars? + +AUFIDIUS: +Name not the god, thou boy of tears! + +CORIOLANUS: +Ha! + +AUFIDIUS: +No more. + +CORIOLANUS: +Measureless liar, thou hast made my heart +Too great for what contains it. Boy! O slave! +Pardon me, lords, 'tis the first time that ever +I was forced to scold. Your judgments, my grave lords, +Must give this cur the lie: and his own notion-- +Who wears my stripes impress'd upon him; that +Must bear my beating to his grave--shall join +To thrust the lie unto him. + +First Lord: +Peace, both, and hear me speak. + +CORIOLANUS: +Cut me to pieces, Volsces; men and lads, +Stain all your edges on me. Boy! false hound! +If you have writ your annals true, 'tis there, +That, like an eagle in a dove-cote, I +Flutter'd your Volscians in Corioli: +Alone I did it. Boy! + +AUFIDIUS: +Why, noble lords, +Will you be put in mind of his blind fortune, +Which was your shame, by this unholy braggart, +'Fore your own eyes and ears? + +All Conspirators: +Let him die for't. + +All The People: +'Tear him to pieces.' 'Do it presently.' 'He kill'd +my son.' 'My daughter.' 'He killed my cousin +Marcus.' 'He killed my father.' + +Second Lord: +Peace, ho! no outrage: peace! +The man is noble and his fame folds-in +This orb o' the earth. His last offences to us +Shall have judicious hearing. Stand, Aufidius, +And trouble not the peace. + +CORIOLANUS: +O that I had him, +With six Aufidiuses, or more, his tribe, +To use my lawful sword! + +AUFIDIUS: +Insolent villain! + +All Conspirators: +Kill, kill, kill, kill, kill him! + +Lords: +Hold, hold, hold, hold! + +AUFIDIUS: +My noble masters, hear me speak. + +First Lord: +O Tullus,-- + +Second Lord: +Thou hast done a deed whereat valour will weep. + +Third Lord: +Tread not upon him. Masters all, be quiet; +Put up your swords. + +AUFIDIUS: +My lords, when you shall know--as in this rage, +Provoked by him, you cannot--the great danger +Which this man's life did owe you, you'll rejoice +That he is thus cut off. Please it your honours +To call me to your senate, I'll deliver +Myself your loyal servant, or endure +Your heaviest censure. + +First Lord: +Bear from hence his body; +And mourn you for him: let him be regarded +As the most noble corse that ever herald +Did follow to his urn. + +Second Lord: +His own impatience +Takes from Aufidius a great part of blame. +Let's make the best of it. + +AUFIDIUS: +My rage is gone; +And I am struck with sorrow. Take him up. +Help, three o' the chiefest soldiers; I'll be one. +Beat thou the drum, that it speak mournfully: +Trail your steel pikes. Though in this city he +Hath widow'd and unchilded many a one, +Which to this hour bewail the injury, +Yet he shall have a noble memory. Assist. + +GLOUCESTER: +Now is the winter of our discontent +Made glorious summer by this sun of York; +And all the clouds that lour'd upon our house +In the deep bosom of the ocean buried. +Now are our brows bound with victorious wreaths; +Our bruised arms hung up for monuments; +Our stern alarums changed to merry meetings, +Our dreadful marches to delightful measures. +Grim-visaged war hath smooth'd his wrinkled front; +And now, instead of mounting barded steeds +To fright the souls of fearful adversaries, +He capers nimbly in a lady's chamber +To the lascivious pleasing of a lute. +But I, that am not shaped for sportive tricks, +Nor made to court an amorous looking-glass; +I, that am rudely stamp'd, and want love's majesty +To strut before a wanton ambling nymph; +I, that am curtail'd of this fair proportion, +Cheated of feature by dissembling nature, +Deformed, unfinish'd, sent before my time +Into this breathing world, scarce half made up, +And that so lamely and unfashionable +That dogs bark at me as I halt by them; +Why, I, in this weak piping time of peace, +Have no delight to pass away the time, +Unless to spy my shadow in the sun +And descant on mine own deformity: +And therefore, since I cannot prove a lover, +To entertain these fair well-spoken days, +I am determined to prove a villain +And hate the idle pleasures of these days. +Plots have I laid, inductions dangerous, +By drunken prophecies, libels and dreams, +To set my brother Clarence and the king +In deadly hate the one against the other: +And if King Edward be as true and just +As I am subtle, false and treacherous, +This day should Clarence closely be mew'd up, +About a prophecy, which says that 'G' +Of Edward's heirs the murderer shall be. +Dive, thoughts, down to my soul: here +Clarence comes. +Brother, good day; what means this armed guard +That waits upon your grace? + +CLARENCE: +His majesty +Tendering my person's safety, hath appointed +This conduct to convey me to the Tower. + +GLOUCESTER: +Upon what cause? + +CLARENCE: +Because my name is George. + +GLOUCESTER: +Alack, my lord, that fault is none of yours; +He should, for that, commit your godfathers: +O, belike his majesty hath some intent +That you shall be new-christen'd in the Tower. +But what's the matter, Clarence? may I know? + +CLARENCE: +Yea, Richard, when I know; for I protest +As yet I do not: but, as I can learn, +He hearkens after prophecies and dreams; +And from the cross-row plucks the letter G. +And says a wizard told him that by G +His issue disinherited should be; +And, for my name of George begins with G, +It follows in his thought that I am he. +These, as I learn, and such like toys as these +Have moved his highness to commit me now. + +GLOUCESTER: +Why, this it is, when men are ruled by women: +'Tis not the king that sends you to the Tower: +My Lady Grey his wife, Clarence, 'tis she +That tempers him to this extremity. +Was it not she and that good man of worship, +Anthony Woodville, her brother there, +That made him send Lord Hastings to the Tower, +From whence this present day he is deliver'd? +We are not safe, Clarence; we are not safe. + +CLARENCE: +By heaven, I think there's no man is secure +But the queen's kindred and night-walking heralds +That trudge betwixt the king and Mistress Shore. +Heard ye not what an humble suppliant +Lord hastings was to her for his delivery? + +GLOUCESTER: +Humbly complaining to her deity +Got my lord chamberlain his liberty. +I'll tell you what; I think it is our way, +If we will keep in favour with the king, +To be her men and wear her livery: +The jealous o'erworn widow and herself, +Since that our brother dubb'd them gentlewomen. +Are mighty gossips in this monarchy. + +BRAKENBURY: +I beseech your graces both to pardon me; +His majesty hath straitly given in charge +That no man shall have private conference, +Of what degree soever, with his brother. + +GLOUCESTER: +Even so; an't please your worship, Brakenbury, +You may partake of any thing we say: +We speak no treason, man: we say the king +Is wise and virtuous, and his noble queen +Well struck in years, fair, and not jealous; +We say that Shore's wife hath a pretty foot, +A cherry lip, a bonny eye, a passing pleasing tongue; +And that the queen's kindred are made gentle-folks: +How say you sir? Can you deny all this? + +BRAKENBURY: +With this, my lord, myself have nought to do. + +GLOUCESTER: +Naught to do with mistress Shore! I tell thee, fellow, +He that doth naught with her, excepting one, +Were best he do it secretly, alone. + +BRAKENBURY: +What one, my lord? + +GLOUCESTER: +Her husband, knave: wouldst thou betray me? + +BRAKENBURY: +I beseech your grace to pardon me, and withal +Forbear your conference with the noble duke. + +CLARENCE: +We know thy charge, Brakenbury, and will obey. + +GLOUCESTER: +We are the queen's abjects, and must obey. +Brother, farewell: I will unto the king; +And whatsoever you will employ me in, +Were it to call King Edward's widow sister, +I will perform it to enfranchise you. +Meantime, this deep disgrace in brotherhood +Touches me deeper than you can imagine. + +CLARENCE: +I know it pleaseth neither of us well. + +GLOUCESTER: +Well, your imprisonment shall not be long; +Meantime, have patience. + +CLARENCE: +I must perforce. Farewell. + +GLOUCESTER: +Go, tread the path that thou shalt ne'er return. +Simple, plain Clarence! I do love thee so, +That I will shortly send thy soul to heaven, +If heaven will take the present at our hands. +But who comes here? the new-deliver'd Hastings? + +HASTINGS: +Good time of day unto my gracious lord! + +GLOUCESTER: +As much unto my good lord chamberlain! +Well are you welcome to the open air. +How hath your lordship brook'd imprisonment? + +HASTINGS: +With patience, noble lord, as prisoners must: +But I shall live, my lord, to give them thanks +That were the cause of my imprisonment. + +GLOUCESTER: +No doubt, no doubt; and so shall Clarence too; +For they that were your enemies are his, +And have prevail'd as much on him as you. + +HASTINGS: +More pity that the eagle should be mew'd, +While kites and buzzards prey at liberty. + +GLOUCESTER: +What news abroad? + +HASTINGS: +No news so bad abroad as this at home; +The King is sickly, weak and melancholy, +And his physicians fear him mightily. + +GLOUCESTER: +Now, by Saint Paul, this news is bad indeed. +O, he hath kept an evil diet long, +And overmuch consumed his royal person: +'Tis very grievous to be thought upon. +What, is he in his bed? + +HASTINGS: +He is. + +GLOUCESTER: +Go you before, and I will follow you. +He cannot live, I hope; and must not die +Till George be pack'd with post-horse up to heaven. +I'll in, to urge his hatred more to Clarence, +With lies well steel'd with weighty arguments; +And, if I fall not in my deep intent, +Clarence hath not another day to live: +Which done, God take King Edward to his mercy, +And leave the world for me to bustle in! +For then I'll marry Warwick's youngest daughter. +What though I kill'd her husband and her father? +The readiest way to make the wench amends +Is to become her husband and her father: +The which will I; not all so much for love +As for another secret close intent, +By marrying her which I must reach unto. +But yet I run before my horse to market: +Clarence still breathes; Edward still lives and reigns: +When they are gone, then must I count my gains. + +LADY ANNE: +Set down, set down your honourable load, +If honour may be shrouded in a hearse, +Whilst I awhile obsequiously lament +The untimely fall of virtuous Lancaster. +Poor key-cold figure of a holy king! +Pale ashes of the house of Lancaster! +Thou bloodless remnant of that royal blood! +Be it lawful that I invocate thy ghost, +To hear the lamentations of Poor Anne, +Wife to thy Edward, to thy slaughter'd son, +Stabb'd by the selfsame hand that made these wounds! +Lo, in these windows that let forth thy life, +I pour the helpless balm of my poor eyes. +Cursed be the hand that made these fatal holes! +Cursed be the heart that had the heart to do it! +Cursed the blood that let this blood from hence! +More direful hap betide that hated wretch, +That makes us wretched by the death of thee, +Than I can wish to adders, spiders, toads, +Or any creeping venom'd thing that lives! +If ever he have child, abortive be it, +Prodigious, and untimely brought to light, +Whose ugly and unnatural aspect +May fright the hopeful mother at the view; +And that be heir to his unhappiness! +If ever he have wife, let her he made +A miserable by the death of him +As I am made by my poor lord and thee! +Come, now towards Chertsey with your holy load, +Taken from Paul's to be interred there; +And still, as you are weary of the weight, +Rest you, whiles I lament King Henry's corse. + +GLOUCESTER: +Stay, you that bear the corse, and set it down. + +LADY ANNE: +What black magician conjures up this fiend, +To stop devoted charitable deeds? + +GLOUCESTER: +Villains, set down the corse; or, by Saint Paul, +I'll make a corse of him that disobeys. + +Gentleman: +My lord, stand back, and let the coffin pass. + +GLOUCESTER: +Unmanner'd dog! stand thou, when I command: +Advance thy halbert higher than my breast, +Or, by Saint Paul, I'll strike thee to my foot, +And spurn upon thee, beggar, for thy boldness. + +LADY ANNE: +What, do you tremble? are you all afraid? +Alas, I blame you not; for you are mortal, +And mortal eyes cannot endure the devil. +Avaunt, thou dreadful minister of hell! +Thou hadst but power over his mortal body, +His soul thou canst not have; therefore be gone. + +GLOUCESTER: +Sweet saint, for charity, be not so curst. + +LADY ANNE: +Foul devil, for God's sake, hence, and trouble us not; +For thou hast made the happy earth thy hell, +Fill'd it with cursing cries and deep exclaims. +If thou delight to view thy heinous deeds, +Behold this pattern of thy butcheries. +O, gentlemen, see, see! dead Henry's wounds +Open their congeal'd mouths and bleed afresh! +Blush, Blush, thou lump of foul deformity; +For 'tis thy presence that exhales this blood +From cold and empty veins, where no blood dwells; +Thy deed, inhuman and unnatural, +Provokes this deluge most unnatural. +O God, which this blood madest, revenge his death! +O earth, which this blood drink'st revenge his death! +Either heaven with lightning strike the +murderer dead, +Or earth, gape open wide and eat him quick, +As thou dost swallow up this good king's blood +Which his hell-govern'd arm hath butchered! + +GLOUCESTER: +Lady, you know no rules of charity, +Which renders good for bad, blessings for curses. + +LADY ANNE: +Villain, thou know'st no law of God nor man: +No beast so fierce but knows some touch of pity. + +GLOUCESTER: +But I know none, and therefore am no beast. + +LADY ANNE: +O wonderful, when devils tell the truth! + +GLOUCESTER: +More wonderful, when angels are so angry. +Vouchsafe, divine perfection of a woman, +Of these supposed-evils, to give me leave, +By circumstance, but to acquit myself. + +LADY ANNE: +Vouchsafe, defused infection of a man, +For these known evils, but to give me leave, +By circumstance, to curse thy cursed self. + +GLOUCESTER: +Fairer than tongue can name thee, let me have +Some patient leisure to excuse myself. + +LADY ANNE: +Fouler than heart can think thee, thou canst make +No excuse current, but to hang thyself. + +GLOUCESTER: +By such despair, I should accuse myself. + +LADY ANNE: +And, by despairing, shouldst thou stand excused; +For doing worthy vengeance on thyself, +Which didst unworthy slaughter upon others. + +GLOUCESTER: +Say that I slew them not? + +LADY ANNE: +Why, then they are not dead: +But dead they are, and devilish slave, by thee. + +GLOUCESTER: +I did not kill your husband. + +LADY ANNE: +Why, then he is alive. + +GLOUCESTER: +Nay, he is dead; and slain by Edward's hand. + +LADY ANNE: +In thy foul throat thou liest: Queen Margaret saw +Thy murderous falchion smoking in his blood; +The which thou once didst bend against her breast, +But that thy brothers beat aside the point. + +GLOUCESTER: +I was provoked by her slanderous tongue, +which laid their guilt upon my guiltless shoulders. + +LADY ANNE: +Thou wast provoked by thy bloody mind. +Which never dreamt on aught but butcheries: +Didst thou not kill this king? + +GLOUCESTER: +I grant ye. + +LADY ANNE: +Dost grant me, hedgehog? then, God grant me too +Thou mayst be damned for that wicked deed! +O, he was gentle, mild, and virtuous! + +GLOUCESTER: +The fitter for the King of heaven, that hath him. + +LADY ANNE: +He is in heaven, where thou shalt never come. + +GLOUCESTER: +Let him thank me, that holp to send him thither; +For he was fitter for that place than earth. + +LADY ANNE: +And thou unfit for any place but hell. + +GLOUCESTER: +Yes, one place else, if you will hear me name it. + +LADY ANNE: +Some dungeon. + +GLOUCESTER: +Your bed-chamber. + +LADY ANNE: +I'll rest betide the chamber where thou liest! + +GLOUCESTER: +So will it, madam till I lie with you. + +LADY ANNE: +I hope so. + +GLOUCESTER: +I know so. But, gentle Lady Anne, +To leave this keen encounter of our wits, +And fall somewhat into a slower method, +Is not the causer of the timeless deaths +Of these Plantagenets, Henry and Edward, +As blameful as the executioner? + +LADY ANNE: +Thou art the cause, and most accursed effect. + +GLOUCESTER: +Your beauty was the cause of that effect; +Your beauty: which did haunt me in my sleep +To undertake the death of all the world, +So I might live one hour in your sweet bosom. + +LADY ANNE: +If I thought that, I tell thee, homicide, +These nails should rend that beauty from my cheeks. + +GLOUCESTER: +These eyes could never endure sweet beauty's wreck; +You should not blemish it, if I stood by: +As all the world is cheered by the sun, +So I by that; it is my day, my life. + +LADY ANNE: +Black night o'ershade thy day, and death thy life! + +GLOUCESTER: +Curse not thyself, fair creature thou art both. + +LADY ANNE: +I would I were, to be revenged on thee. + +GLOUCESTER: +It is a quarrel most unnatural, +To be revenged on him that loveth you. + +LADY ANNE: +It is a quarrel just and reasonable, +To be revenged on him that slew my husband. + +GLOUCESTER: +He that bereft thee, lady, of thy husband, +Did it to help thee to a better husband. + +LADY ANNE: +His better doth not breathe upon the earth. + +GLOUCESTER: +He lives that loves thee better than he could. + +LADY ANNE: +Name him. + +GLOUCESTER: +Plantagenet. + +LADY ANNE: +Why, that was he. + +GLOUCESTER: +The selfsame name, but one of better nature. + +LADY ANNE: +Where is he? + +GLOUCESTER: +Here. +Why dost thou spit at me? + +LADY ANNE: +Would it were mortal poison, for thy sake! + +GLOUCESTER: +Never came poison from so sweet a place. + +LADY ANNE: +Never hung poison on a fouler toad. +Out of my sight! thou dost infect my eyes. + +GLOUCESTER: +Thine eyes, sweet lady, have infected mine. + +LADY ANNE: +Would they were basilisks, to strike thee dead! + +GLOUCESTER: +I would they were, that I might die at once; +For now they kill me with a living death. +Those eyes of thine from mine have drawn salt tears, +Shamed their aspect with store of childish drops: +These eyes that never shed remorseful tear, +No, when my father York and Edward wept, +To hear the piteous moan that Rutland made +When black-faced Clifford shook his sword at him; +Nor when thy warlike father, like a child, +Told the sad story of my father's death, +And twenty times made pause to sob and weep, +That all the standers-by had wet their cheeks +Like trees bedash'd with rain: in that sad time +My manly eyes did scorn an humble tear; +And what these sorrows could not thence exhale, +Thy beauty hath, and made them blind with weeping. +I never sued to friend nor enemy; +My tongue could never learn sweet smoothing word; +But now thy beauty is proposed my fee, +My proud heart sues, and prompts my tongue to speak. +Teach not thy lips such scorn, for they were made +For kissing, lady, not for such contempt. +If thy revengeful heart cannot forgive, +Lo, here I lend thee this sharp-pointed sword; +Which if thou please to hide in this true bosom. +And let the soul forth that adoreth thee, +I lay it naked to the deadly stroke, +And humbly beg the death upon my knee. +Nay, do not pause; for I did kill King Henry, +But 'twas thy beauty that provoked me. +Nay, now dispatch; 'twas I that stabb'd young Edward, +But 'twas thy heavenly face that set me on. +Take up the sword again, or take up me. + +LADY ANNE: +Arise, dissembler: though I wish thy death, +I will not be the executioner. + +GLOUCESTER: +Then bid me kill myself, and I will do it. + +LADY ANNE: +I have already. + +GLOUCESTER: +Tush, that was in thy rage: +Speak it again, and, even with the word, +That hand, which, for thy love, did kill thy love, +Shall, for thy love, kill a far truer love; +To both their deaths thou shalt be accessary. + +LADY ANNE: +I would I knew thy heart. + +GLOUCESTER: +'Tis figured in my tongue. + +LADY ANNE: +I fear me both are false. + +GLOUCESTER: +Then never man was true. + +LADY ANNE: +Well, well, put up your sword. + +GLOUCESTER: +Say, then, my peace is made. + +LADY ANNE: +That shall you know hereafter. + +GLOUCESTER: +But shall I live in hope? + +LADY ANNE: +All men, I hope, live so. + +GLOUCESTER: +Vouchsafe to wear this ring. + +LADY ANNE: +To take is not to give. + +GLOUCESTER: +Look, how this ring encompasseth finger. +Even so thy breast encloseth my poor heart; +Wear both of them, for both of them are thine. +And if thy poor devoted suppliant may +But beg one favour at thy gracious hand, +Thou dost confirm his happiness for ever. + +LADY ANNE: +What is it? + +GLOUCESTER: +That it would please thee leave these sad designs +To him that hath more cause to be a mourner, +And presently repair to Crosby Place; +Where, after I have solemnly interr'd +At Chertsey monastery this noble king, +And wet his grave with my repentant tears, +I will with all expedient duty see you: +For divers unknown reasons. I beseech you, +Grant me this boon. + +LADY ANNE: +With all my heart; and much it joys me too, +To see you are become so penitent. +Tressel and Berkeley, go along with me. + +GLOUCESTER: +Bid me farewell. + +LADY ANNE: +'Tis more than you deserve; +But since you teach me how to flatter you, +Imagine I have said farewell already. + +GLOUCESTER: +Sirs, take up the corse. + +GENTLEMEN: +Towards Chertsey, noble lord? + +GLOUCESTER: +No, to White-Friars; there attend my coining. +Was ever woman in this humour woo'd? +Was ever woman in this humour won? +I'll have her; but I will not keep her long. +What! I, that kill'd her husband and his father, +To take her in her heart's extremest hate, +With curses in her mouth, tears in her eyes, +The bleeding witness of her hatred by; +Having God, her conscience, and these bars +against me, +And I nothing to back my suit at all, +But the plain devil and dissembling looks, +And yet to win her, all the world to nothing! +Ha! +Hath she forgot already that brave prince, +Edward, her lord, whom I, some three months since, +Stabb'd in my angry mood at Tewksbury? +A sweeter and a lovelier gentleman, +Framed in the prodigality of nature, +Young, valiant, wise, and, no doubt, right royal, +The spacious world cannot again afford +And will she yet debase her eyes on me, +That cropp'd the golden prime of this sweet prince, +And made her widow to a woful bed? +On me, whose all not equals Edward's moiety? +On me, that halt and am unshapen thus? +My dukedom to a beggarly denier, +I do mistake my person all this while: +Upon my life, she finds, although I cannot, +Myself to be a marvellous proper man. +I'll be at charges for a looking-glass, +And entertain some score or two of tailors, +To study fashions to adorn my body: +Since I am crept in favour with myself, +Will maintain it with some little cost. +But first I'll turn yon fellow in his grave; +And then return lamenting to my love. +Shine out, fair sun, till I have bought a glass, +That I may see my shadow as I pass. + +RIVERS: +Have patience, madam: there's no doubt his majesty +Will soon recover his accustom'd health. + +GREY: +In that you brook it in, it makes him worse: +Therefore, for God's sake, entertain good comfort, +And cheer his grace with quick and merry words. + +QUEEN ELIZABETH: +If he were dead, what would betide of me? + +RIVERS: +No other harm but loss of such a lord. + +QUEEN ELIZABETH: +The loss of such a lord includes all harm. + +GREY: +The heavens have bless'd you with a goodly son, +To be your comforter when he is gone. + +QUEEN ELIZABETH: +Oh, he is young and his minority +Is put unto the trust of Richard Gloucester, +A man that loves not me, nor none of you. + +RIVERS: +Is it concluded that he shall be protector? + +QUEEN ELIZABETH: +It is determined, not concluded yet: +But so it must be, if the king miscarry. + +GREY: +Here come the lords of Buckingham and Derby. + +BUCKINGHAM: +Good time of day unto your royal grace! + +DERBY: +God make your majesty joyful as you have been! + +QUEEN ELIZABETH: +The Countess Richmond, good my Lord of Derby. +To your good prayers will scarcely say amen. +Yet, Derby, notwithstanding she's your wife, +And loves not me, be you, good lord, assured +I hate not you for her proud arrogance. + +DERBY: +I do beseech you, either not believe +The envious slanders of her false accusers; +Or, if she be accused in true report, +Bear with her weakness, which, I think proceeds +From wayward sickness, and no grounded malice. + +RIVERS: +Saw you the king to-day, my Lord of Derby? + +DERBY: +But now the Duke of Buckingham and I +Are come from visiting his majesty. + +QUEEN ELIZABETH: +What likelihood of his amendment, lords? + +BUCKINGHAM: +Madam, good hope; his grace speaks cheerfully. + +QUEEN ELIZABETH: +God grant him health! Did you confer with him? + +BUCKINGHAM: +Madam, we did: he desires to make atonement +Betwixt the Duke of Gloucester and your brothers, +And betwixt them and my lord chamberlain; +And sent to warn them to his royal presence. + +QUEEN ELIZABETH: +Would all were well! but that will never be +I fear our happiness is at the highest. + +GLOUCESTER: +They do me wrong, and I will not endure it: +Who are they that complain unto the king, +That I, forsooth, am stern, and love them not? +By holy Paul, they love his grace but lightly +That fill his ears with such dissentious rumours. +Because I cannot flatter and speak fair, +Smile in men's faces, smooth, deceive and cog, +Duck with French nods and apish courtesy, +I must be held a rancorous enemy. +Cannot a plain man live and think no harm, +But thus his simple truth must be abused +By silken, sly, insinuating Jacks? + +RIVERS: +To whom in all this presence speaks your grace? + +GLOUCESTER: +To thee, that hast nor honesty nor grace. +When have I injured thee? when done thee wrong? +Or thee? or thee? or any of your faction? +A plague upon you all! His royal person,-- +Whom God preserve better than you would wish!-- +Cannot be quiet scarce a breathing-while, +But you must trouble him with lewd complaints. + +QUEEN ELIZABETH: +Brother of Gloucester, you mistake the matter. +The king, of his own royal disposition, +And not provoked by any suitor else; +Aiming, belike, at your interior hatred, +Which in your outward actions shows itself +Against my kindred, brothers, and myself, +Makes him to send; that thereby he may gather +The ground of your ill-will, and so remove it. + +GLOUCESTER: +I cannot tell: the world is grown so bad, +That wrens make prey where eagles dare not perch: +Since every Jack became a gentleman +There's many a gentle person made a Jack. + +QUEEN ELIZABETH: +Come, come, we know your meaning, brother +Gloucester; +You envy my advancement and my friends': +God grant we never may have need of you! + +GLOUCESTER: +Meantime, God grants that we have need of you: +Your brother is imprison'd by your means, +Myself disgraced, and the nobility +Held in contempt; whilst many fair promotions +Are daily given to ennoble those +That scarce, some two days since, were worth a noble. + +QUEEN ELIZABETH: +By Him that raised me to this careful height +From that contented hap which I enjoy'd, +I never did incense his majesty +Against the Duke of Clarence, but have been +An earnest advocate to plead for him. +My lord, you do me shameful injury, +Falsely to draw me in these vile suspects. + +GLOUCESTER: +You may deny that you were not the cause +Of my Lord Hastings' late imprisonment. + +RIVERS: +She may, my lord, for-- + +GLOUCESTER: +She may, Lord Rivers! why, who knows not so? +She may do more, sir, than denying that: +She may help you to many fair preferments, +And then deny her aiding hand therein, +And lay those honours on your high deserts. +What may she not? She may, yea, marry, may she-- + +RIVERS: +What, marry, may she? + +GLOUCESTER: +What, marry, may she! marry with a king, +A bachelor, a handsome stripling too: +I wis your grandam had a worser match. + +QUEEN ELIZABETH: +My Lord of Gloucester, I have too long borne +Your blunt upbraidings and your bitter scoffs: +By heaven, I will acquaint his majesty +With those gross taunts I often have endured. +I had rather be a country servant-maid +Than a great queen, with this condition, +To be thus taunted, scorn'd, and baited at: +Small joy have I in being England's queen. + +QUEEN MARGARET: +And lessen'd be that small, God, I beseech thee! +Thy honour, state and seat is due to me. + +GLOUCESTER: +What! threat you me with telling of the king? +Tell him, and spare not: look, what I have said +I will avouch in presence of the king: +I dare adventure to be sent to the Tower. +'Tis time to speak; my pains are quite forgot. + +QUEEN MARGARET: +Out, devil! I remember them too well: +Thou slewest my husband Henry in the Tower, +And Edward, my poor son, at Tewksbury. + +GLOUCESTER: +Ere you were queen, yea, or your husband king, +I was a pack-horse in his great affairs; +A weeder-out of his proud adversaries, +A liberal rewarder of his friends: +To royalize his blood I spilt mine own. + +QUEEN MARGARET: +Yea, and much better blood than his or thine. + +GLOUCESTER: +In all which time you and your husband Grey +Were factious for the house of Lancaster; +And, Rivers, so were you. Was not your husband +In Margaret's battle at Saint Alban's slain? +Let me put in your minds, if you forget, +What you have been ere now, and what you are; +Withal, what I have been, and what I am. + +QUEEN MARGARET: +A murderous villain, and so still thou art. + +GLOUCESTER: +Poor Clarence did forsake his father, Warwick; +Yea, and forswore himself,--which Jesu pardon!-- + +QUEEN MARGARET: +Which God revenge! + +GLOUCESTER: +To fight on Edward's party for the crown; +And for his meed, poor lord, he is mew'd up. +I would to God my heart were flint, like Edward's; +Or Edward's soft and pitiful, like mine +I am too childish-foolish for this world. + +QUEEN MARGARET: +Hie thee to hell for shame, and leave the world, +Thou cacodemon! there thy kingdom is. + +RIVERS: +My Lord of Gloucester, in those busy days +Which here you urge to prove us enemies, +We follow'd then our lord, our lawful king: +So should we you, if you should be our king. + +GLOUCESTER: +If I should be! I had rather be a pedlar: +Far be it from my heart, the thought of it! + +QUEEN ELIZABETH: +As little joy, my lord, as you suppose +You should enjoy, were you this country's king, +As little joy may you suppose in me. +That I enjoy, being the queen thereof. + +QUEEN MARGARET: +A little joy enjoys the queen thereof; +For I am she, and altogether joyless. +I can no longer hold me patient. +Hear me, you wrangling pirates, that fall out +In sharing that which you have pill'd from me! +Which of you trembles not that looks on me? +If not, that, I being queen, you bow like subjects, +Yet that, by you deposed, you quake like rebels? +O gentle villain, do not turn away! + +GLOUCESTER: +Foul wrinkled witch, what makest thou in my sight? + +QUEEN MARGARET: +But repetition of what thou hast marr'd; +That will I make before I let thee go. + +GLOUCESTER: +Wert thou not banished on pain of death? + +QUEEN MARGARET: +I was; but I do find more pain in banishment +Than death can yield me here by my abode. +A husband and a son thou owest to me; +And thou a kingdom; all of you allegiance: +The sorrow that I have, by right is yours, +And all the pleasures you usurp are mine. + +GLOUCESTER: +The curse my noble father laid on thee, +When thou didst crown his warlike brows with paper +And with thy scorns drew'st rivers from his eyes, +And then, to dry them, gavest the duke a clout +Steep'd in the faultless blood of pretty Rutland-- +His curses, then from bitterness of soul +Denounced against thee, are all fall'n upon thee; +And God, not we, hath plagued thy bloody deed. + +QUEEN ELIZABETH: +So just is God, to right the innocent. + +HASTINGS: +O, 'twas the foulest deed to slay that babe, +And the most merciless that e'er was heard of! + +RIVERS: +Tyrants themselves wept when it was reported. + +DORSET: +No man but prophesied revenge for it. + +BUCKINGHAM: +Northumberland, then present, wept to see it. + +QUEEN MARGARET: +What were you snarling all before I came, +Ready to catch each other by the throat, +And turn you all your hatred now on me? +Did York's dread curse prevail so much with heaven? +That Henry's death, my lovely Edward's death, +Their kingdom's loss, my woful banishment, +Could all but answer for that peevish brat? +Can curses pierce the clouds and enter heaven? +Why, then, give way, dull clouds, to my quick curses! +If not by war, by surfeit die your king, +As ours by murder, to make him a king! +Edward thy son, which now is Prince of Wales, +For Edward my son, which was Prince of Wales, +Die in his youth by like untimely violence! +Thyself a queen, for me that was a queen, +Outlive thy glory, like my wretched self! +Long mayst thou live to wail thy children's loss; +And see another, as I see thee now, +Deck'd in thy rights, as thou art stall'd in mine! +Long die thy happy days before thy death; +And, after many lengthen'd hours of grief, +Die neither mother, wife, nor England's queen! +Rivers and Dorset, you were standers by, +And so wast thou, Lord Hastings, when my son +Was stabb'd with bloody daggers: God, I pray him, +That none of you may live your natural age, +But by some unlook'd accident cut off! + +GLOUCESTER: +Have done thy charm, thou hateful wither'd hag! + +QUEEN MARGARET: +And leave out thee? stay, dog, for thou shalt hear me. +If heaven have any grievous plague in store +Exceeding those that I can wish upon thee, +O, let them keep it till thy sins be ripe, +And then hurl down their indignation +On thee, the troubler of the poor world's peace! +The worm of conscience still begnaw thy soul! +Thy friends suspect for traitors while thou livest, +And take deep traitors for thy dearest friends! +No sleep close up that deadly eye of thine, +Unless it be whilst some tormenting dream +Affrights thee with a hell of ugly devils! +Thou elvish-mark'd, abortive, rooting hog! +Thou that wast seal'd in thy nativity +The slave of nature and the son of hell! +Thou slander of thy mother's heavy womb! +Thou loathed issue of thy father's loins! +Thou rag of honour! thou detested-- + +GLOUCESTER: +Margaret. + +QUEEN MARGARET: +Richard! + +GLOUCESTER: +Ha! + +QUEEN MARGARET: +I call thee not. + +GLOUCESTER: +I cry thee mercy then, for I had thought +That thou hadst call'd me all these bitter names. + +QUEEN MARGARET: +Why, so I did; but look'd for no reply. +O, let me make the period to my curse! + +GLOUCESTER: +'Tis done by me, and ends in 'Margaret.' + +QUEEN ELIZABETH: +Thus have you breathed your curse against yourself. + +QUEEN MARGARET: +Poor painted queen, vain flourish of my fortune! +Why strew'st thou sugar on that bottled spider, +Whose deadly web ensnareth thee about? +Fool, fool! thou whet'st a knife to kill thyself. +The time will come when thou shalt wish for me +To help thee curse that poisonous bunchback'd toad. + +HASTINGS: +False-boding woman, end thy frantic curse, +Lest to thy harm thou move our patience. + +QUEEN MARGARET: +Foul shame upon you! you have all moved mine. + +RIVERS: +Were you well served, you would be taught your duty. + +QUEEN MARGARET: +To serve me well, you all should do me duty, +Teach me to be your queen, and you my subjects: +O, serve me well, and teach yourselves that duty! + +DORSET: +Dispute not with her; she is lunatic. + +QUEEN MARGARET: +Peace, master marquess, you are malapert: +Your fire-new stamp of honour is scarce current. +O, that your young nobility could judge +What 'twere to lose it, and be miserable! +They that stand high have many blasts to shake them; +And if they fall, they dash themselves to pieces. + +GLOUCESTER: +Good counsel, marry: learn it, learn it, marquess. + +DORSET: +It toucheth you, my lord, as much as me. + +GLOUCESTER: +Yea, and much more: but I was born so high, +Our aery buildeth in the cedar's top, +And dallies with the wind and scorns the sun. + +QUEEN MARGARET: +And turns the sun to shade; alas! alas! +Witness my son, now in the shade of death; +Whose bright out-shining beams thy cloudy wrath +Hath in eternal darkness folded up. +Your aery buildeth in our aery's nest. +O God, that seest it, do not suffer it! +As it was won with blood, lost be it so! + +BUCKINGHAM: +Have done! for shame, if not for charity. + +QUEEN MARGARET: +Urge neither charity nor shame to me: +Uncharitably with me have you dealt, +And shamefully by you my hopes are butcher'd. +My charity is outrage, life my shame +And in that shame still live my sorrow's rage. + +BUCKINGHAM: +Have done, have done. + +QUEEN MARGARET: +O princely Buckingham I'll kiss thy hand, +In sign of league and amity with thee: +Now fair befal thee and thy noble house! +Thy garments are not spotted with our blood, +Nor thou within the compass of my curse. + +BUCKINGHAM: +Nor no one here; for curses never pass +The lips of those that breathe them in the air. + +QUEEN MARGARET: +I'll not believe but they ascend the sky, +And there awake God's gentle-sleeping peace. +O Buckingham, take heed of yonder dog! +Look, when he fawns, he bites; and when he bites, +His venom tooth will rankle to the death: +Have not to do with him, beware of him; +Sin, death, and hell have set their marks on him, +And all their ministers attend on him. + +GLOUCESTER: +What doth she say, my Lord of Buckingham? + +BUCKINGHAM: +Nothing that I respect, my gracious lord. + +QUEEN MARGARET: +What, dost thou scorn me for my gentle counsel? +And soothe the devil that I warn thee from? +O, but remember this another day, +When he shall split thy very heart with sorrow, +And say poor Margaret was a prophetess! +Live each of you the subjects to his hate, +And he to yours, and all of you to God's! + +HASTINGS: +My hair doth stand on end to hear her curses. + +RIVERS: +And so doth mine: I muse why she's at liberty. + +GLOUCESTER: +I cannot blame her: by God's holy mother, +She hath had too much wrong; and I repent +My part thereof that I have done to her. + +QUEEN ELIZABETH: +I never did her any, to my knowledge. + +GLOUCESTER: +But you have all the vantage of her wrong. +I was too hot to do somebody good, +That is too cold in thinking of it now. +Marry, as for Clarence, he is well repaid, +He is frank'd up to fatting for his pains +God pardon them that are the cause of it! + +RIVERS: +A virtuous and a Christian-like conclusion, +To pray for them that have done scathe to us. + +GLOUCESTER: +So do I ever: +being well-advised. +For had I cursed now, I had cursed myself. + +CATESBY: +Madam, his majesty doth call for you, +And for your grace; and you, my noble lords. + +QUEEN ELIZABETH: +Catesby, we come. Lords, will you go with us? + +RIVERS: +Madam, we will attend your grace. + +GLOUCESTER: +I do the wrong, and first begin to brawl. +The secret mischiefs that I set abroach +I lay unto the grievous charge of others. +Clarence, whom I, indeed, have laid in darkness, +I do beweep to many simple gulls +Namely, to Hastings, Derby, Buckingham; +And say it is the queen and her allies +That stir the king against the duke my brother. +Now, they believe it; and withal whet me +To be revenged on Rivers, Vaughan, Grey: +But then I sigh; and, with a piece of scripture, +Tell them that God bids us do good for evil: +And thus I clothe my naked villany +With old odd ends stolen out of holy writ; +And seem a saint, when most I play the devil. +But, soft! here come my executioners. +How now, my hardy, stout resolved mates! +Are you now going to dispatch this deed? + +First Murderer: +We are, my lord; and come to have the warrant +That we may be admitted where he is. + +GLOUCESTER: +Well thought upon; I have it here about me. +When you have done, repair to Crosby Place. +But, sirs, be sudden in the execution, +Withal obdurate, do not hear him plead; +For Clarence is well-spoken, and perhaps +May move your hearts to pity if you mark him. + +First Murderer: +Tush! +Fear not, my lord, we will not stand to prate; +Talkers are no good doers: be assured +We come to use our hands and not our tongues. + +GLOUCESTER: +Your eyes drop millstones, when fools' eyes drop tears: +I like you, lads; about your business straight; +Go, go, dispatch. + +First Murderer: +We will, my noble lord. + +BRAKENBURY: +Why looks your grace so heavily today? + +CLARENCE: +O, I have pass'd a miserable night, +So full of ugly sights, of ghastly dreams, +That, as I am a Christian faithful man, +I would not spend another such a night, +Though 'twere to buy a world of happy days, +So full of dismal terror was the time! + +BRAKENBURY: +What was your dream? I long to hear you tell it. + +CLARENCE: +Methoughts that I had broken from the Tower, +And was embark'd to cross to Burgundy; +And, in my company, my brother Gloucester; +Who from my cabin tempted me to walk +Upon the hatches: thence we looked toward England, +And cited up a thousand fearful times, +During the wars of York and Lancaster +That had befall'n us. As we paced along +Upon the giddy footing of the hatches, +Methought that Gloucester stumbled; and, in falling, +Struck me, that thought to stay him, overboard, +Into the tumbling billows of the main. +Lord, Lord! methought, what pain it was to drown! +What dreadful noise of waters in mine ears! +What ugly sights of death within mine eyes! +Methought I saw a thousand fearful wrecks; +Ten thousand men that fishes gnaw'd upon; +Wedges of gold, great anchors, heaps of pearl, +Inestimable stones, unvalued jewels, +All scatter'd in the bottom of the sea: +Some lay in dead men's skulls; and, in those holes +Where eyes did once inhabit, there were crept, +As 'twere in scorn of eyes, reflecting gems, +Which woo'd the slimy bottom of the deep, +And mock'd the dead bones that lay scatter'd by. + +BRAKENBURY: +Had you such leisure in the time of death +To gaze upon the secrets of the deep? + +CLARENCE: +Methought I had; and often did I strive +To yield the ghost: but still the envious flood +Kept in my soul, and would not let it forth +To seek the empty, vast and wandering air; +But smother'd it within my panting bulk, +Which almost burst to belch it in the sea. + +BRAKENBURY: +Awaked you not with this sore agony? + +CLARENCE: +O, no, my dream was lengthen'd after life; +O, then began the tempest to my soul, +Who pass'd, methought, the melancholy flood, +With that grim ferryman which poets write of, +Unto the kingdom of perpetual night. +The first that there did greet my stranger soul, +Was my great father-in-law, renowned Warwick; +Who cried aloud, 'What scourge for perjury +Can this dark monarchy afford false Clarence?' +And so he vanish'd: then came wandering by +A shadow like an angel, with bright hair +Dabbled in blood; and he squeak'd out aloud, +'Clarence is come; false, fleeting, perjured Clarence, +That stabb'd me in the field by Tewksbury; +Seize on him, Furies, take him to your torments!' +With that, methoughts, a legion of foul fiends +Environ'd me about, and howled in mine ears +Such hideous cries, that with the very noise +I trembling waked, and for a season after +Could not believe but that I was in hell, +Such terrible impression made the dream. + +BRAKENBURY: +No marvel, my lord, though it affrighted you; +I promise, I am afraid to hear you tell it. + +CLARENCE: +O Brakenbury, I have done those things, +Which now bear evidence against my soul, +For Edward's sake; and see how he requites me! +O God! if my deep prayers cannot appease thee, +But thou wilt be avenged on my misdeeds, +Yet execute thy wrath in me alone, +O, spare my guiltless wife and my poor children! +I pray thee, gentle keeper, stay by me; +My soul is heavy, and I fain would sleep. + +BRAKENBURY: +I will, my lord: God give your grace good rest! +Sorrow breaks seasons and reposing hours, +Makes the night morning, and the noon-tide night. +Princes have but their tides for their glories, +An outward honour for an inward toil; +And, for unfelt imagination, +They often feel a world of restless cares: +So that, betwixt their tides and low names, +There's nothing differs but the outward fame. + +First Murderer: +Ho! who's here? + +BRAKENBURY: +In God's name what are you, and how came you hither? + +First Murderer: +I would speak with Clarence, and I came hither on my legs. + +BRAKENBURY: +Yea, are you so brief? + +Second Murderer: +O sir, it is better to be brief than tedious. Show +him our commission; talk no more. + +BRAKENBURY: +I am, in this, commanded to deliver +The noble Duke of Clarence to your hands: +I will not reason what is meant hereby, +Because I will be guiltless of the meaning. +Here are the keys, there sits the duke asleep: +I'll to the king; and signify to him +That thus I have resign'd my charge to you. + +First Murderer: +Do so, it is a point of wisdom: fare you well. + +Second Murderer: +What, shall we stab him as he sleeps? + +First Murderer: +No; then he will say 'twas done cowardly, when he wakes. + +Second Murderer: +When he wakes! why, fool, he shall never wake till +the judgment-day. + +First Murderer: +Why, then he will say we stabbed him sleeping. + +Second Murderer: +The urging of that word 'judgment' hath bred a kind +of remorse in me. + +First Murderer: +What, art thou afraid? + +Second Murderer: +Not to kill him, having a warrant for it; but to be +damned for killing him, from which no warrant can defend us. + +First Murderer: +I thought thou hadst been resolute. + +Second Murderer: +So I am, to let him live. + +First Murderer: +Back to the Duke of Gloucester, tell him so. + +Second Murderer: +I pray thee, stay a while: I hope my holy humour +will change; 'twas wont to hold me but while one +would tell twenty. + +First Murderer: +How dost thou feel thyself now? + +Second Murderer: +'Faith, some certain dregs of conscience are yet +within me. + +First Murderer: +Remember our reward, when the deed is done. + +Second Murderer: +'Zounds, he dies: I had forgot the reward. + +First Murderer: +Where is thy conscience now? + +Second Murderer: +In the Duke of Gloucester's purse. + +First Murderer: +So when he opens his purse to give us our reward, +thy conscience flies out. + +Second Murderer: +Let it go; there's few or none will entertain it. + +First Murderer: +How if it come to thee again? + +Second Murderer: +I'll not meddle with it: it is a dangerous thing: it +makes a man a coward: a man cannot steal, but it +accuseth him; he cannot swear, but it cheques him; +he cannot lie with his neighbour's wife, but it +detects him: 'tis a blushing shamefast spirit that +mutinies in a man's bosom; it fills one full of +obstacles: it made me once restore a purse of gold +that I found; it beggars any man that keeps it: it +is turned out of all towns and cities for a +dangerous thing; and every man that means to live +well endeavours to trust to himself and to live +without it. + +First Murderer: +'Zounds, it is even now at my elbow, persuading me +not to kill the duke. + +Second Murderer: +Take the devil in thy mind, and relieve him not: he +would insinuate with thee but to make thee sigh. + +First Murderer: +Tut, I am strong-framed, he cannot prevail with me, +I warrant thee. + +Second Murderer: +Spoke like a tail fellow that respects his +reputation. Come, shall we to this gear? + +First Murderer: +Take him over the costard with the hilts of thy +sword, and then we will chop him in the malmsey-butt +in the next room. + +Second Murderer: +O excellent devise! make a sop of him. + +First Murderer: +Hark! he stirs: shall I strike? + +Second Murderer: +No, first let's reason with him. + +CLARENCE: +Where art thou, keeper? give me a cup of wine. + +Second murderer: +You shall have wine enough, my lord, anon. + +CLARENCE: +In God's name, what art thou? + +Second Murderer: +A man, as you are. + +CLARENCE: +But not, as I am, royal. + +Second Murderer: +Nor you, as we are, loyal. + +CLARENCE: +Thy voice is thunder, but thy looks are humble. + +Second Murderer: +My voice is now the king's, my looks mine own. + +CLARENCE: +How darkly and how deadly dost thou speak! +Your eyes do menace me: why look you pale? +Who sent you hither? Wherefore do you come? + +Both: +To, to, to-- + +CLARENCE: +To murder me? + +Both: +Ay, ay. + +CLARENCE: +You scarcely have the hearts to tell me so, +And therefore cannot have the hearts to do it. +Wherein, my friends, have I offended you? + +First Murderer: +Offended us you have not, but the king. + +CLARENCE: +I shall be reconciled to him again. + +Second Murderer: +Never, my lord; therefore prepare to die. + +CLARENCE: +Are you call'd forth from out a world of men +To slay the innocent? What is my offence? +Where are the evidence that do accuse me? +What lawful quest have given their verdict up +Unto the frowning judge? or who pronounced +The bitter sentence of poor Clarence' death? +Before I be convict by course of law, +To threaten me with death is most unlawful. +I charge you, as you hope to have redemption +By Christ's dear blood shed for our grievous sins, +That you depart and lay no hands on me +The deed you undertake is damnable. + +First Murderer: +What we will do, we do upon command. + +Second Murderer: +And he that hath commanded is the king. + +CLARENCE: +Erroneous vassal! the great King of kings +Hath in the tables of his law commanded +That thou shalt do no murder: and wilt thou, then, +Spurn at his edict and fulfil a man's? +Take heed; for he holds vengeance in his hands, +To hurl upon their heads that break his law. + +Second Murderer: +And that same vengeance doth he hurl on thee, +For false forswearing and for murder too: +Thou didst receive the holy sacrament, +To fight in quarrel of the house of Lancaster. + +First Murderer: +And, like a traitor to the name of God, +Didst break that vow; and with thy treacherous blade +Unrip'dst the bowels of thy sovereign's son. + +Second Murderer: +Whom thou wert sworn to cherish and defend. + +First Murderer: +How canst thou urge God's dreadful law to us, +When thou hast broke it in so dear degree? + +CLARENCE: +Alas! for whose sake did I that ill deed? +For Edward, for my brother, for his sake: Why, sirs, +He sends ye not to murder me for this +For in this sin he is as deep as I. +If God will be revenged for this deed. +O, know you yet, he doth it publicly, +Take not the quarrel from his powerful arm; +He needs no indirect nor lawless course +To cut off those that have offended him. + +First Murderer: +Who made thee, then, a bloody minister, +When gallant-springing brave Plantagenet, +That princely novice, was struck dead by thee? + +CLARENCE: +My brother's love, the devil, and my rage. + +First Murderer: +Thy brother's love, our duty, and thy fault, +Provoke us hither now to slaughter thee. + +CLARENCE: +Oh, if you love my brother, hate not me; +I am his brother, and I love him well. +If you be hired for meed, go back again, +And I will send you to my brother Gloucester, +Who shall reward you better for my life +Than Edward will for tidings of my death. + +Second Murderer: +You are deceived, your brother Gloucester hates you. + +CLARENCE: +O, no, he loves me, and he holds me dear: +Go you to him from me. + +Both: +Ay, so we will. + +CLARENCE: +Tell him, when that our princely father York +Bless'd his three sons with his victorious arm, +And charged us from his soul to love each other, +He little thought of this divided friendship: +Bid Gloucester think of this, and he will weep. + +First Murderer: +Ay, millstones; as be lesson'd us to weep. + +CLARENCE: +O, do not slander him, for he is kind. + +First Murderer: +Right, +As snow in harvest. Thou deceivest thyself: +'Tis he that sent us hither now to slaughter thee. + +CLARENCE: +It cannot be; for when I parted with him, +He hugg'd me in his arms, and swore, with sobs, +That he would labour my delivery. + +Second Murderer: +Why, so he doth, now he delivers thee +From this world's thraldom to the joys of heaven. + +First Murderer: +Make peace with God, for you must die, my lord. + +CLARENCE: +Hast thou that holy feeling in thy soul, +To counsel me to make my peace with God, +And art thou yet to thy own soul so blind, +That thou wilt war with God by murdering me? +Ah, sirs, consider, he that set you on +To do this deed will hate you for the deed. + +Second Murderer: +What shall we do? + +CLARENCE: +Relent, and save your souls. + +First Murderer: +Relent! 'tis cowardly and womanish. + +CLARENCE: +Not to relent is beastly, savage, devilish. +Which of you, if you were a prince's son, +Being pent from liberty, as I am now, +if two such murderers as yourselves came to you, +Would not entreat for life? +My friend, I spy some pity in thy looks: +O, if thine eye be not a flatterer, +Come thou on my side, and entreat for me, +As you would beg, were you in my distress +A begging prince what beggar pities not? + +Second Murderer: +Look behind you, my lord. + +First Murderer: +Take that, and that: if all this will not do, +I'll drown you in the malmsey-butt within. + +Second Murderer: +A bloody deed, and desperately dispatch'd! +How fain, like Pilate, would I wash my hands +Of this most grievous guilty murder done! + +First Murderer: +How now! what mean'st thou, that thou help'st me not? +By heavens, the duke shall know how slack thou art! + +Second Murderer: +I would he knew that I had saved his brother! +Take thou the fee, and tell him what I say; +For I repent me that the duke is slain. + +First Murderer: +So do not I: go, coward as thou art. +Now must I hide his body in some hole, +Until the duke take order for his burial: +And when I have my meed, I must away; +For this will out, and here I must not stay. + +KING EDWARD IV: +Why, so: now have I done a good day's work: +You peers, continue this united league: +I every day expect an embassage +From my Redeemer to redeem me hence; +And now in peace my soul shall part to heaven, +Since I have set my friends at peace on earth. +Rivers and Hastings, take each other's hand; +Dissemble not your hatred, swear your love. + +RIVERS: +By heaven, my heart is purged from grudging hate: +And with my hand I seal my true heart's love. + +HASTINGS: +So thrive I, as I truly swear the like! + +KING EDWARD IV: +Take heed you dally not before your king; +Lest he that is the supreme King of kings +Confound your hidden falsehood, and award +Either of you to be the other's end. + +HASTINGS: +So prosper I, as I swear perfect love! + +RIVERS: +And I, as I love Hastings with my heart! + +KING EDWARD IV: +Madam, yourself are not exempt in this, +Nor your son Dorset, Buckingham, nor you; +You have been factious one against the other, +Wife, love Lord Hastings, let him kiss your hand; +And what you do, do it unfeignedly. + +QUEEN ELIZABETH: +Here, Hastings; I will never more remember +Our former hatred, so thrive I and mine! + +KING EDWARD IV: +Dorset, embrace him; Hastings, love lord marquess. + +DORSET: +This interchange of love, I here protest, +Upon my part shall be unviolable. + +HASTINGS: +And so swear I, my lord + +KING EDWARD IV: +Now, princely Buckingham, seal thou this league +With thy embracements to my wife's allies, +And make me happy in your unity. + +BUCKINGHAM: +Whenever Buckingham doth turn his hate +On you or yours, +but with all duteous love +Doth cherish you and yours, God punish me +With hate in those where I expect most love! +When I have most need to employ a friend, +And most assured that he is a friend +Deep, hollow, treacherous, and full of guile, +Be he unto me! this do I beg of God, +When I am cold in zeal to yours. + +KING EDWARD IV: +A pleasing cordial, princely Buckingham, +is this thy vow unto my sickly heart. +There wanteth now our brother Gloucester here, +To make the perfect period of this peace. + +BUCKINGHAM: +And, in good time, here comes the noble duke. + +GLOUCESTER: +Good morrow to my sovereign king and queen: +And, princely peers, a happy time of day! + +KING EDWARD IV: +Happy, indeed, as we have spent the day. +Brother, we done deeds of charity; +Made peace enmity, fair love of hate, +Between these swelling wrong-incensed peers. + +GLOUCESTER: +A blessed labour, my most sovereign liege: +Amongst this princely heap, if any here, +By false intelligence, or wrong surmise, +Hold me a foe; +If I unwittingly, or in my rage, +Have aught committed that is hardly borne +By any in this presence, I desire +To reconcile me to his friendly peace: +'Tis death to me to be at enmity; +I hate it, and desire all good men's love. +First, madam, I entreat true peace of you, +Which I will purchase with my duteous service; +Of you, my noble cousin Buckingham, +If ever any grudge were lodged between us; +Of you, Lord Rivers, and, Lord Grey, of you; +That without desert have frown'd on me; +Dukes, earls, lords, gentlemen; indeed, of all. +I do not know that Englishman alive +With whom my soul is any jot at odds +More than the infant that is born to-night +I thank my God for my humility. + +QUEEN ELIZABETH: +A holy day shall this be kept hereafter: +I would to God all strifes were well compounded. +My sovereign liege, I do beseech your majesty +To take our brother Clarence to your grace. + +GLOUCESTER: +Why, madam, have I offer'd love for this +To be so bouted in this royal presence? +Who knows not that the noble duke is dead? +You do him injury to scorn his corse. + +RIVERS: +Who knows not he is dead! who knows he is? + +QUEEN ELIZABETH: +All seeing heaven, what a world is this! + +BUCKINGHAM: +Look I so pale, Lord Dorset, as the rest? + +DORSET: +Ay, my good lord; and no one in this presence +But his red colour hath forsook his cheeks. + +KING EDWARD IV: +Is Clarence dead? the order was reversed. + +GLOUCESTER: +But he, poor soul, by your first order died, +And that a winged Mercury did bear: +Some tardy cripple bore the countermand, +That came too lag to see him buried. +God grant that some, less noble and less loyal, +Nearer in bloody thoughts, but not in blood, +Deserve not worse than wretched Clarence did, +And yet go current from suspicion! + +DORSET: +A boon, my sovereign, for my service done! + +KING EDWARD IV: +I pray thee, peace: my soul is full of sorrow. + +DORSET: +I will not rise, unless your highness grant. + +KING EDWARD IV: +Then speak at once what is it thou demand'st. + +DORSET: +The forfeit, sovereign, of my servant's life; +Who slew to-day a righteous gentleman +Lately attendant on the Duke of Norfolk. + +KING EDWARD IV: +Have a tongue to doom my brother's death, +And shall the same give pardon to a slave? +My brother slew no man; his fault was thought, +And yet his punishment was cruel death. +Who sued to me for him? who, in my rage, +Kneel'd at my feet, and bade me be advised +Who spake of brotherhood? who spake of love? +Who told me how the poor soul did forsake +The mighty Warwick, and did fight for me? +Who told me, in the field by Tewksbury +When Oxford had me down, he rescued me, +And said, 'Dear brother, live, and be a king'? +Who told me, when we both lay in the field +Frozen almost to death, how he did lap me +Even in his own garments, and gave himself, +All thin and naked, to the numb cold night? +All this from my remembrance brutish wrath +Sinfully pluck'd, and not a man of you +Had so much grace to put it in my mind. +But when your carters or your waiting-vassals +Have done a drunken slaughter, and defaced +The precious image of our dear Redeemer, +You straight are on your knees for pardon, pardon; +And I unjustly too, must grant it you +But for my brother not a man would speak, +Nor I, ungracious, speak unto myself +For him, poor soul. The proudest of you all +Have been beholding to him in his life; +Yet none of you would once plead for his life. +O God, I fear thy justice will take hold +On me, and you, and mine, and yours for this! +Come, Hastings, help me to my closet. +Oh, poor Clarence! + +GLOUCESTER: +This is the fruit of rashness! Mark'd you not +How that the guilty kindred of the queen +Look'd pale when they did hear of Clarence' death? +O, they did urge it still unto the king! +God will revenge it. But come, let us in, +To comfort Edward with our company. + +BUCKINGHAM: +We wait upon your grace. + +Boy: +Tell me, good grandam, is our father dead? + +DUCHESS OF YORK: +No, boy. + +Boy: +Why do you wring your hands, and beat your breast, +And cry 'O Clarence, my unhappy son!' + +Girl: +Why do you look on us, and shake your head, +And call us wretches, orphans, castaways +If that our noble father be alive? + +DUCHESS OF YORK: +My pretty cousins, you mistake me much; +I do lament the sickness of the king. +As loath to lose him, not your father's death; +It were lost sorrow to wail one that's lost. + +Boy: +Then, grandam, you conclude that he is dead. +The king my uncle is to blame for this: +God will revenge it; whom I will importune +With daily prayers all to that effect. + +Girl: +And so will I. + +DUCHESS OF YORK: +Peace, children, peace! the king doth love you well: +Incapable and shallow innocents, +You cannot guess who caused your father's death. + +Boy: +Grandam, we can; for my good uncle Gloucester +Told me, the king, provoked by the queen, +Devised impeachments to imprison him : +And when my uncle told me so, he wept, +And hugg'd me in his arm, and kindly kiss'd my cheek; +Bade me rely on him as on my father, +And he would love me dearly as his child. + +DUCHESS OF YORK: +Oh, that deceit should steal such gentle shapes, +And with a virtuous vizard hide foul guile! +He is my son; yea, and therein my shame; +Yet from my dugs he drew not this deceit. + +Boy: +Think you my uncle did dissemble, grandam? + +DUCHESS OF YORK: +Ay, boy. + +Boy: +I cannot think it. Hark! what noise is this? + +QUEEN ELIZABETH: +Oh, who shall hinder me to wail and weep, +To chide my fortune, and torment myself? +I'll join with black despair against my soul, +And to myself become an enemy. + +DUCHESS OF YORK: +What means this scene of rude impatience? + +QUEEN ELIZABETH: +To make an act of tragic violence: +Edward, my lord, your son, our king, is dead. +Why grow the branches now the root is wither'd? +Why wither not the leaves the sap being gone? +If you will live, lament; if die, be brief, +That our swift-winged souls may catch the king's; +Or, like obedient subjects, follow him +To his new kingdom of perpetual rest. + +DUCHESS OF YORK: +Ah, so much interest have I in thy sorrow +As I had title in thy noble husband! +I have bewept a worthy husband's death, +And lived by looking on his images: +But now two mirrors of his princely semblance +Are crack'd in pieces by malignant death, +And I for comfort have but one false glass, +Which grieves me when I see my shame in him. +Thou art a widow; yet thou art a mother, +And hast the comfort of thy children left thee: +But death hath snatch'd my husband from mine arms, +And pluck'd two crutches from my feeble limbs, +Edward and Clarence. O, what cause have I, +Thine being but a moiety of my grief, +To overgo thy plaints and drown thy cries! + +Boy: +Good aunt, you wept not for our father's death; +How can we aid you with our kindred tears? + +Girl: +Our fatherless distress was left unmoan'd; +Your widow-dolour likewise be unwept! + +QUEEN ELIZABETH: +Give me no help in lamentation; +I am not barren to bring forth complaints +All springs reduce their currents to mine eyes, +That I, being govern'd by the watery moon, +May send forth plenteous tears to drown the world! +Oh for my husband, for my dear lord Edward! + +Children: +Oh for our father, for our dear lord Clarence! + +DUCHESS OF YORK: +Alas for both, both mine, Edward and Clarence! + +QUEEN ELIZABETH: +What stay had I but Edward? and he's gone. + +Children: +What stay had we but Clarence? and he's gone. + +DUCHESS OF YORK: +What stays had I but they? and they are gone. + +QUEEN ELIZABETH: +Was never widow had so dear a loss! + +Children: +Were never orphans had so dear a loss! + +DUCHESS OF YORK: +Was never mother had so dear a loss! +Alas, I am the mother of these moans! +Their woes are parcell'd, mine are general. +She for an Edward weeps, and so do I; +I for a Clarence weep, so doth not she: +These babes for Clarence weep and so do I; +I for an Edward weep, so do not they: +Alas, you three, on me, threefold distress'd, +Pour all your tears! I am your sorrow's nurse, +And I will pamper it with lamentations. + +DORSET: +Comfort, dear mother: God is much displeased +That you take with unthankfulness, his doing: +In common worldly things, 'tis call'd ungrateful, +With dull unwilligness to repay a debt +Which with a bounteous hand was kindly lent; +Much more to be thus opposite with heaven, +For it requires the royal debt it lent you. + +RIVERS: +Madam, bethink you, like a careful mother, +Of the young prince your son: send straight for him +Let him be crown'd; in him your comfort lives: +Drown desperate sorrow in dead Edward's grave, +And plant your joys in living Edward's throne. + +GLOUCESTER: +Madam, have comfort: all of us have cause +To wail the dimming of our shining star; +But none can cure their harms by wailing them. +Madam, my mother, I do cry you mercy; +I did not see your grace: humbly on my knee +I crave your blessing. + +DUCHESS OF YORK: +God bless thee; and put meekness in thy mind, +Love, charity, obedience, and true duty! + +GLOUCESTER: + +BUCKINGHAM: +You cloudy princes and heart-sorrowing peers, +That bear this mutual heavy load of moan, +Now cheer each other in each other's love +Though we have spent our harvest of this king, +We are to reap the harvest of his son. +The broken rancour of your high-swoln hearts, +But lately splinter'd, knit, and join'd together, +Must gently be preserved, cherish'd, and kept: +Me seemeth good, that, with some little train, +Forthwith from Ludlow the young prince be fetch'd +Hither to London, to be crown'd our king. + +RIVERS: +Why with some little train, my Lord of Buckingham? + +BUCKINGHAM: +Marry, my lord, lest, by a multitude, +The new-heal'd wound of malice should break out, +Which would be so much the more dangerous +By how much the estate is green and yet ungovern'd: +Where every horse bears his commanding rein, +And may direct his course as please himself, +As well the fear of harm, as harm apparent, +In my opinion, ought to be prevented. + +GLOUCESTER: +I hope the king made peace with all of us +And the compact is firm and true in me. + +RIVERS: +And so in me; and so, I think, in all: +Yet, since it is but green, it should be put +To no apparent likelihood of breach, +Which haply by much company might be urged: +Therefore I say with noble Buckingham, +That it is meet so few should fetch the prince. + +HASTINGS: +And so say I. + +GLOUCESTER: +Then be it so; and go we to determine +Who they shall be that straight shall post to Ludlow. +Madam, and you, my mother, will you go +To give your censures in this weighty business? + +QUEEN ELIZABETH: +With all our harts. + +BUCKINGHAM: +My lord, whoever journeys to the Prince, +For God's sake, let not us two be behind; +For, by the way, I'll sort occasion, +As index to the story we late talk'd of, +To part the queen's proud kindred from the king. + +GLOUCESTER: +My other self, my counsel's consistory, +My oracle, my prophet! My dear cousin, +I, like a child, will go by thy direction. +Towards Ludlow then, for we'll not stay behind. + +First Citizen: +Neighbour, well met: whither away so fast? + +Second Citizen: +I promise you, I scarcely know myself: +Hear you the news abroad? + +First Citizen: +Ay, that the king is dead. + +Second Citizen: +Bad news, by'r lady; seldom comes the better: +I fear, I fear 'twill prove a troublous world. + +Third Citizen: +Neighbours, God speed! + +First Citizen: +Give you good morrow, sir. + +Third Citizen: +Doth this news hold of good King Edward's death? + +Second Citizen: +Ay, sir, it is too true; God help the while! + +Third Citizen: +Then, masters, look to see a troublous world. + +First Citizen: +No, no; by God's good grace his son shall reign. + +Third Citizen: +Woe to the land that's govern'd by a child! + +Second Citizen: +In him there is a hope of government, +That in his nonage council under him, +And in his full and ripen'd years himself, +No doubt, shall then and till then govern well. + +First Citizen: +So stood the state when Henry the Sixth +Was crown'd in Paris but at nine months old. + +Third Citizen: +Stood the state so? No, no, good friends, God wot; +For then this land was famously enrich'd +With politic grave counsel; then the king +Had virtuous uncles to protect his grace. + +First Citizen: +Why, so hath this, both by the father and mother. + +Third Citizen: +Better it were they all came by the father, +Or by the father there were none at all; +For emulation now, who shall be nearest, +Will touch us all too near, if God prevent not. +O, full of danger is the Duke of Gloucester! +And the queen's sons and brothers haught and proud: +And were they to be ruled, and not to rule, +This sickly land might solace as before. + +First Citizen: +Come, come, we fear the worst; all shall be well. + +Third Citizen: +When clouds appear, wise men put on their cloaks; +When great leaves fall, the winter is at hand; +When the sun sets, who doth not look for night? +Untimely storms make men expect a dearth. +All may be well; but, if God sort it so, +'Tis more than we deserve, or I expect. + +Second Citizen: +Truly, the souls of men are full of dread: +Ye cannot reason almost with a man +That looks not heavily and full of fear. + +Third Citizen: +Before the times of change, still is it so: +By a divine instinct men's minds mistrust +Ensuing dangers; as by proof, we see +The waters swell before a boisterous storm. +But leave it all to God. whither away? + +Second Citizen: +Marry, we were sent for to the justices. + +Third Citizen: +And so was I: I'll bear you company. + +ARCHBISHOP OF YORK: +Last night, I hear, they lay at Northampton; +At Stony-Stratford will they be to-night: +To-morrow, or next day, they will be here. + +DUCHESS OF YORK: +I long with all my heart to see the prince: +I hope he is much grown since last I saw him. + +QUEEN ELIZABETH: +But I hear, no; they say my son of York +Hath almost overta'en him in his growth. + +YORK: +Ay, mother; but I would not have it so. + +DUCHESS OF YORK: +Why, my young cousin, it is good to grow. + +YORK: +Grandam, one night, as we did sit at supper, +My uncle Rivers talk'd how I did grow +More than my brother: 'Ay,' quoth my uncle +Gloucester, +'Small herbs have grace, great weeds do grow apace:' +And since, methinks, I would not grow so fast, +Because sweet flowers are slow and weeds make haste. + +DUCHESS OF YORK: +Good faith, good faith, the saying did not hold +In him that did object the same to thee; +He was the wretched'st thing when he was young, +So long a-growing and so leisurely, +That, if this rule were true, he should be gracious. + +ARCHBISHOP OF YORK: +Why, madam, so, no doubt, he is. + +DUCHESS OF YORK: +I hope he is; but yet let mothers doubt. + +YORK: +Now, by my troth, if I had been remember'd, +I could have given my uncle's grace a flout, +To touch his growth nearer than he touch'd mine. + +DUCHESS OF YORK: +How, my pretty York? I pray thee, let me hear it. + +YORK: +Marry, they say my uncle grew so fast +That he could gnaw a crust at two hours old +'Twas full two years ere I could get a tooth. +Grandam, this would have been a biting jest. + +DUCHESS OF YORK: +I pray thee, pretty York, who told thee this? + +YORK: +Grandam, his nurse. + +DUCHESS OF YORK: +His nurse! why, she was dead ere thou wert born. + +YORK: +If 'twere not she, I cannot tell who told me. + +QUEEN ELIZABETH: +A parlous boy: go to, you are too shrewd. + +ARCHBISHOP OF YORK: +Good madam, be not angry with the child. + +QUEEN ELIZABETH: +Pitchers have ears. + +ARCHBISHOP OF YORK: +Here comes a messenger. What news? + +Messenger: +Such news, my lord, as grieves me to unfold. + +QUEEN ELIZABETH: +How fares the prince? + +Messenger: +Well, madam, and in health. + +DUCHESS OF YORK: +What is thy news then? + +Messenger: +Lord Rivers and Lord Grey are sent to Pomfret, +With them Sir Thomas Vaughan, prisoners. + +DUCHESS OF YORK: +Who hath committed them? + +Messenger: +The mighty dukes +Gloucester and Buckingham. + +QUEEN ELIZABETH: +For what offence? + +Messenger: +The sum of all I can, I have disclosed; +Why or for what these nobles were committed +Is all unknown to me, my gracious lady. + +QUEEN ELIZABETH: +Ay me, I see the downfall of our house! +The tiger now hath seized the gentle hind; +Insulting tyranny begins to jet +Upon the innocent and aweless throne: +Welcome, destruction, death, and massacre! +I see, as in a map, the end of all. + +DUCHESS OF YORK: +Accursed and unquiet wrangling days, +How many of you have mine eyes beheld! +My husband lost his life to get the crown; +And often up and down my sons were toss'd, +For me to joy and weep their gain and loss: +And being seated, and domestic broils +Clean over-blown, themselves, the conquerors. +Make war upon themselves; blood against blood, +Self against self: O, preposterous +And frantic outrage, end thy damned spleen; +Or let me die, to look on death no more! + +QUEEN ELIZABETH: +Come, come, my boy; we will to sanctuary. +Madam, farewell. + +DUCHESS OF YORK: +I'll go along with you. + +QUEEN ELIZABETH: +You have no cause. + +ARCHBISHOP OF YORK: +My gracious lady, go; +And thither bear your treasure and your goods. +For my part, I'll resign unto your grace +The seal I keep: and so betide to me +As well I tender you and all of yours! +Come, I'll conduct you to the sanctuary. + +BUCKINGHAM: +Welcome, sweet prince, to London, to your chamber. + +GLOUCESTER: +Welcome, dear cousin, my thoughts' sovereign +The weary way hath made you melancholy. + +PRINCE EDWARD: +No, uncle; but our crosses on the way +Have made it tedious, wearisome, and heavy +I want more uncles here to welcome me. + +GLOUCESTER: +Sweet prince, the untainted virtue of your years +Hath not yet dived into the world's deceit +Nor more can you distinguish of a man +Than of his outward show; which, God he knows, +Seldom or never jumpeth with the heart. +Those uncles which you want were dangerous; +Your grace attended to their sugar'd words, +But look'd not on the poison of their hearts : +God keep you from them, and from such false friends! + +PRINCE EDWARD: +God keep me from false friends! but they were none. + +GLOUCESTER: +My lord, the mayor of London comes to greet you. + +Lord Mayor: +God bless your grace with health and happy days! + +PRINCE EDWARD: +I thank you, good my lord; and thank you all. +I thought my mother, and my brother York, +Would long ere this have met us on the way +Fie, what a slug is Hastings, that he comes not +To tell us whether they will come or no! + +BUCKINGHAM: +And, in good time, here comes the sweating lord. + +PRINCE EDWARD: +Welcome, my lord: what, will our mother come? + +HASTINGS: +On what occasion, God he knows, not I, +The queen your mother, and your brother York, +Have taken sanctuary: the tender prince +Would fain have come with me to meet your grace, +But by his mother was perforce withheld. + +BUCKINGHAM: +Fie, what an indirect and peevish course +Is this of hers! Lord cardinal, will your grace +Persuade the queen to send the Duke of York +Unto his princely brother presently? +If she deny, Lord Hastings, go with him, +And from her jealous arms pluck him perforce. + +CARDINAL: +My Lord of Buckingham, if my weak oratory +Can from his mother win the Duke of York, +Anon expect him here; but if she be obdurate +To mild entreaties, God in heaven forbid +We should infringe the holy privilege +Of blessed sanctuary! not for all this land +Would I be guilty of so deep a sin. + +BUCKINGHAM: +You are too senseless--obstinate, my lord, +Too ceremonious and traditional +Weigh it but with the grossness of this age, +You break not sanctuary in seizing him. +The benefit thereof is always granted +To those whose dealings have deserved the place, +And those who have the wit to claim the place: +This prince hath neither claim'd it nor deserved it; +And therefore, in mine opinion, cannot have it: +Then, taking him from thence that is not there, +You break no privilege nor charter there. +Oft have I heard of sanctuary men; +But sanctuary children ne'er till now. + +CARDINAL: +My lord, you shall o'er-rule my mind for once. +Come on, Lord Hastings, will you go with me? + +HASTINGS: +I go, my lord. + +PRINCE EDWARD: +Good lords, make all the speedy haste you may. +Say, uncle Gloucester, if our brother come, +Where shall we sojourn till our coronation? + +GLOUCESTER: +Where it seems best unto your royal self. +If I may counsel you, some day or two +Your highness shall repose you at the Tower: +Then where you please, and shall be thought most fit +For your best health and recreation. + +PRINCE EDWARD: +I do not like the Tower, of any place. +Did Julius Caesar build that place, my lord? + +BUCKINGHAM: +He did, my gracious lord, begin that place; +Which, since, succeeding ages have re-edified. + +PRINCE EDWARD: +Is it upon record, or else reported +Successively from age to age, he built it? + +BUCKINGHAM: +Upon record, my gracious lord. + +PRINCE EDWARD: +But say, my lord, it were not register'd, +Methinks the truth should live from age to age, +As 'twere retail'd to all posterity, +Even to the general all-ending day. + +GLOUCESTER: + +PRINCE EDWARD: +What say you, uncle? + +GLOUCESTER: +I say, without characters, fame lives long. +Thus, like the formal vice, Iniquity, +I moralize two meanings in one word. + +PRINCE EDWARD: +That Julius Caesar was a famous man; +With what his valour did enrich his wit, +His wit set down to make his valour live +Death makes no conquest of this conqueror; +For now he lives in fame, though not in life. +I'll tell you what, my cousin Buckingham,-- + +BUCKINGHAM: +What, my gracious lord? + +PRINCE EDWARD: +An if I live until I be a man, +I'll win our ancient right in France again, +Or die a soldier, as I lived a king. + +GLOUCESTER: + +BUCKINGHAM: +Now, in good time, here comes the Duke of York. + +PRINCE EDWARD: +Richard of York! how fares our loving brother? + +YORK: +Well, my dread lord; so must I call you now. + +PRINCE EDWARD: +Ay, brother, to our grief, as it is yours: +Too late he died that might have kept that title, +Which by his death hath lost much majesty. + +GLOUCESTER: +How fares our cousin, noble Lord of York? + +YORK: +I thank you, gentle uncle. O, my lord, +You said that idle weeds are fast in growth +The prince my brother hath outgrown me far. + +GLOUCESTER: +He hath, my lord. + +YORK: +And therefore is he idle? + +GLOUCESTER: +O, my fair cousin, I must not say so. + +YORK: +Then is he more beholding to you than I. + +GLOUCESTER: +He may command me as my sovereign; +But you have power in me as in a kinsman. + +YORK: +I pray you, uncle, give me this dagger. + +GLOUCESTER: +My dagger, little cousin? with all my heart. + +PRINCE EDWARD: +A beggar, brother? + +YORK: +Of my kind uncle, that I know will give; +And being but a toy, which is no grief to give. + +GLOUCESTER: +A greater gift than that I'll give my cousin. + +YORK: +A greater gift! O, that's the sword to it. + +GLOUCESTER: +A gentle cousin, were it light enough. + +YORK: +O, then, I see, you will part but with light gifts; +In weightier things you'll say a beggar nay. + +GLOUCESTER: +It is too heavy for your grace to wear. + +YORK: +I weigh it lightly, were it heavier. + +GLOUCESTER: +What, would you have my weapon, little lord? + +YORK: +I would, that I might thank you as you call me. + +GLOUCESTER: +How? + +YORK: +Little. + +PRINCE EDWARD: +My Lord of York will still be cross in talk: +Uncle, your grace knows how to bear with him. + +YORK: +You mean, to bear me, not to bear with me: +Uncle, my brother mocks both you and me; +Because that I am little, like an ape, +He thinks that you should bear me on your shoulders. + +BUCKINGHAM: +With what a sharp-provided wit he reasons! +To mitigate the scorn he gives his uncle, +He prettily and aptly taunts himself: +So cunning and so young is wonderful. + +GLOUCESTER: +My lord, will't please you pass along? +Myself and my good cousin Buckingham +Will to your mother, to entreat of her +To meet you at the Tower and welcome you. + +YORK: +What, will you go unto the Tower, my lord? + +PRINCE EDWARD: +My lord protector needs will have it so. + +YORK: +I shall not sleep in quiet at the Tower. + +GLOUCESTER: +Why, what should you fear? + +YORK: +Marry, my uncle Clarence' angry ghost: +My grandam told me he was murdered there. + +PRINCE EDWARD: +I fear no uncles dead. + +GLOUCESTER: +Nor none that live, I hope. + +PRINCE EDWARD: +An if they live, I hope I need not fear. +But come, my lord; and with a heavy heart, +Thinking on them, go I unto the Tower. + +BUCKINGHAM: +Think you, my lord, this little prating York +Was not incensed by his subtle mother +To taunt and scorn you thus opprobriously? + +GLOUCESTER: +No doubt, no doubt; O, 'tis a parlous boy; +Bold, quick, ingenious, forward, capable +He is all the mother's, from the top to toe. + +BUCKINGHAM: +Well, let them rest. Come hither, Catesby. +Thou art sworn as deeply to effect what we intend +As closely to conceal what we impart: +Thou know'st our reasons urged upon the way; +What think'st thou? is it not an easy matter +To make William Lord Hastings of our mind, +For the instalment of this noble duke +In the seat royal of this famous isle? + +CATESBY: +He for his father's sake so loves the prince, +That he will not be won to aught against him. + +BUCKINGHAM: +What think'st thou, then, of Stanley? what will he? + +CATESBY: +He will do all in all as Hastings doth. + +BUCKINGHAM: +Well, then, no more but this: go, gentle Catesby, +And, as it were far off sound thou Lord Hastings, +How doth he stand affected to our purpose; +And summon him to-morrow to the Tower, +To sit about the coronation. +If thou dost find him tractable to us, +Encourage him, and show him all our reasons: +If he be leaden, icy-cold, unwilling, +Be thou so too; and so break off your talk, +And give us notice of his inclination: +For we to-morrow hold divided councils, +Wherein thyself shalt highly be employ'd. + +GLOUCESTER: +Commend me to Lord William: tell him, Catesby, +His ancient knot of dangerous adversaries +To-morrow are let blood at Pomfret-castle; +And bid my friend, for joy of this good news, +Give mistress Shore one gentle kiss the more. + +BUCKINGHAM: +Good Catesby, go, effect this business soundly. + +CATESBY: +My good lords both, with all the heed I may. + +GLOUCESTER: +Shall we hear from you, Catesby, ere we sleep? + +CATESBY: +You shall, my lord. + +GLOUCESTER: +At Crosby Place, there shall you find us both. + +BUCKINGHAM: +Now, my lord, what shall we do, if we perceive +Lord Hastings will not yield to our complots? + +GLOUCESTER: +Chop off his head, man; somewhat we will do: +And, look, when I am king, claim thou of me +The earldom of Hereford, and the moveables +Whereof the king my brother stood possess'd. + +BUCKINGHAM: +I'll claim that promise at your grace's hands. + +GLOUCESTER: +And look to have it yielded with all willingness. +Come, let us sup betimes, that afterwards +We may digest our complots in some form. + +Messenger: +What, ho! my lord! + +HASTINGS: + +Messenger: +A messenger from the Lord Stanley. + +HASTINGS: +What is't o'clock? + +Messenger: +Upon the stroke of four. + +HASTINGS: +Cannot thy master sleep these tedious nights? + +Messenger: +So it should seem by that I have to say. +First, he commends him to your noble lordship. + +HASTINGS: +And then? + +Messenger: +And then he sends you word +He dreamt to-night the boar had razed his helm: +Besides, he says there are two councils held; +And that may be determined at the one +which may make you and him to rue at the other. +Therefore he sends to know your lordship's pleasure, +If presently you will take horse with him, +And with all speed post with him toward the north, +To shun the danger that his soul divines. + +HASTINGS: +Go, fellow, go, return unto thy lord; +Bid him not fear the separated councils +His honour and myself are at the one, +And at the other is my servant Catesby +Where nothing can proceed that toucheth us +Whereof I shall not have intelligence. +Tell him his fears are shallow, wanting instance: +And for his dreams, I wonder he is so fond +To trust the mockery of unquiet slumbers +To fly the boar before the boar pursues, +Were to incense the boar to follow us +And make pursuit where he did mean no chase. +Go, bid thy master rise and come to me +And we will both together to the Tower, +Where, he shall see, the boar will use us kindly. + +Messenger: +My gracious lord, I'll tell him what you say. + +CATESBY: +Many good morrows to my noble lord! + +HASTINGS: +Good morrow, Catesby; you are early stirring +What news, what news, in this our tottering state? + +CATESBY: +It is a reeling world, indeed, my lord; +And I believe twill never stand upright +Tim Richard wear the garland of the realm. + +HASTINGS: +How! wear the garland! dost thou mean the crown? + +CATESBY: +Ay, my good lord. + +HASTINGS: +I'll have this crown of mine cut from my shoulders +Ere I will see the crown so foul misplaced. +But canst thou guess that he doth aim at it? + +CATESBY: +Ay, on my life; and hopes to find forward +Upon his party for the gain thereof: +And thereupon he sends you this good news, +That this same very day your enemies, +The kindred of the queen, must die at Pomfret. + +HASTINGS: +Indeed, I am no mourner for that news, +Because they have been still mine enemies: +But, that I'll give my voice on Richard's side, +To bar my master's heirs in true descent, +God knows I will not do it, to the death. + +CATESBY: +God keep your lordship in that gracious mind! + +HASTINGS: +But I shall laugh at this a twelve-month hence, +That they who brought me in my master's hate +I live to look upon their tragedy. +I tell thee, Catesby-- + +CATESBY: +What, my lord? + +HASTINGS: +Ere a fortnight make me elder, +I'll send some packing that yet think not on it. + +CATESBY: +'Tis a vile thing to die, my gracious lord, +When men are unprepared and look not for it. + +HASTINGS: +O monstrous, monstrous! and so falls it out +With Rivers, Vaughan, Grey: and so 'twill do +With some men else, who think themselves as safe +As thou and I; who, as thou know'st, are dear +To princely Richard and to Buckingham. + +CATESBY: +The princes both make high account of you; +For they account his head upon the bridge. + +HASTINGS: +I know they do; and I have well deserved it. +Come on, come on; where is your boar-spear, man? +Fear you the boar, and go so unprovided? + +STANLEY: +My lord, good morrow; good morrow, Catesby: +You may jest on, but, by the holy rood, +I do not like these several councils, I. + +HASTINGS: +My lord, +I hold my life as dear as you do yours; +And never in my life, I do protest, +Was it more precious to me than 'tis now: +Think you, but that I know our state secure, +I would be so triumphant as I am? + +STANLEY: +The lords at Pomfret, when they rode from London, +Were jocund, and supposed their state was sure, +And they indeed had no cause to mistrust; +But yet, you see how soon the day o'ercast. +This sudden stag of rancour I misdoubt: +Pray God, I say, I prove a needless coward! +What, shall we toward the Tower? the day is spent. + +HASTINGS: +Come, come, have with you. Wot you what, my lord? +To-day the lords you talk of are beheaded. + +LORD STANLEY: +They, for their truth, might better wear their heads +Than some that have accused them wear their hats. +But come, my lord, let us away. + +HASTINGS: +Go on before; I'll talk with this good fellow. +How now, sirrah! how goes the world with thee? + +Pursuivant: +The better that your lordship please to ask. + +HASTINGS: +I tell thee, man, 'tis better with me now +Than when I met thee last where now we meet: +Then was I going prisoner to the Tower, +By the suggestion of the queen's allies; +But now, I tell thee--keep it to thyself-- +This day those enemies are put to death, +And I in better state than e'er I was. + +Pursuivant: +God hold it, to your honour's good content! + +HASTINGS: +Gramercy, fellow: there, drink that for me. + +Pursuivant: +God save your lordship! + +Priest: +Well met, my lord; I am glad to see your honour. + +HASTINGS: +I thank thee, good Sir John, with all my heart. +I am in your debt for your last exercise; +Come the next Sabbath, and I will content you. + +BUCKINGHAM: +What, talking with a priest, lord chamberlain? +Your friends at Pomfret, they do need the priest; +Your honour hath no shriving work in hand. + +HASTINGS: +Good faith, and when I met this holy man, +Those men you talk of came into my mind. +What, go you toward the Tower? + +BUCKINGHAM: +I do, my lord; but long I shall not stay +I shall return before your lordship thence. + +HASTINGS: +'Tis like enough, for I stay dinner there. + +BUCKINGHAM: + +HASTINGS: +I'll wait upon your lordship. + +RATCLIFF: +Come, bring forth the prisoners. + +RIVERS: +Sir Richard Ratcliff, let me tell thee this: +To-day shalt thou behold a subject die +For truth, for duty, and for loyalty. + +GREY: +God keep the prince from all the pack of you! +A knot you are of damned blood-suckers! + +VAUGHAN: +You live that shall cry woe for this after. + +RATCLIFF: +Dispatch; the limit of your lives is out. + +RIVERS: +O Pomfret, Pomfret! O thou bloody prison, +Fatal and ominous to noble peers! +Within the guilty closure of thy walls +Richard the second here was hack'd to death; +And, for more slander to thy dismal seat, +We give thee up our guiltless blood to drink. + +GREY: +Now Margaret's curse is fall'n upon our heads, +For standing by when Richard stabb'd her son. + +RIVERS: +Then cursed she Hastings, then cursed she Buckingham, +Then cursed she Richard. O, remember, God +To hear her prayers for them, as now for us +And for my sister and her princely sons, +Be satisfied, dear God, with our true blood, +Which, as thou know'st, unjustly must be spilt. + +RATCLIFF: +Make haste; the hour of death is expiate. + +RIVERS: +Come, Grey, come, Vaughan, let us all embrace: +And take our leave, until we meet in heaven. + +HASTINGS: +My lords, at once: the cause why we are met +Is, to determine of the coronation. +In God's name, speak: when is the royal day? + +BUCKINGHAM: +Are all things fitting for that royal time? + +DERBY: +It is, and wants but nomination. + +BISHOP OF ELY: +To-morrow, then, I judge a happy day. + +BUCKINGHAM: +Who knows the lord protector's mind herein? +Who is most inward with the royal duke? + +BISHOP OF ELY: +Your grace, we think, should soonest know his mind. + +BUCKINGHAM: +Who, I, my lord I we know each other's faces, +But for our hearts, he knows no more of mine, +Than I of yours; +Nor I no more of his, than you of mine. +Lord Hastings, you and he are near in love. + +HASTINGS: +I thank his grace, I know he loves me well; +But, for his purpose in the coronation. +I have not sounded him, nor he deliver'd +His gracious pleasure any way therein: +But you, my noble lords, may name the time; +And in the duke's behalf I'll give my voice, +Which, I presume, he'll take in gentle part. + +BISHOP OF ELY: +Now in good time, here comes the duke himself. + +GLOUCESTER: +My noble lords and cousins all, good morrow. +I have been long a sleeper; but, I hope, +My absence doth neglect no great designs, +Which by my presence might have been concluded. + +BUCKINGHAM: +Had not you come upon your cue, my lord +William Lord Hastings had pronounced your part,-- +I mean, your voice,--for crowning of the king. + +GLOUCESTER: +Than my Lord Hastings no man might be bolder; +His lordship knows me well, and loves me well. + +HASTINGS: +I thank your grace. + +GLOUCESTER: +My lord of Ely! + +BISHOP OF ELY: +My lord? + +GLOUCESTER: +When I was last in Holborn, +I saw good strawberries in your garden there +I do beseech you send for some of them. + +BISHOP OF ELY: +Marry, and will, my lord, with all my heart. + +GLOUCESTER: +Cousin of Buckingham, a word with you. +Catesby hath sounded Hastings in our business, +And finds the testy gentleman so hot, +As he will lose his head ere give consent +His master's son, as worshipful as he terms it, +Shall lose the royalty of England's throne. + +BUCKINGHAM: +Withdraw you hence, my lord, I'll follow you. + +DERBY: +We have not yet set down this day of triumph. +To-morrow, in mine opinion, is too sudden; +For I myself am not so well provided +As else I would be, were the day prolong'd. + +BISHOP OF ELY: +Where is my lord protector? I have sent for these +strawberries. + +HASTINGS: +His grace looks cheerfully and smooth to-day; +There's some conceit or other likes him well, +When he doth bid good morrow with such a spirit. +I think there's never a man in Christendom +That can less hide his love or hate than he; +For by his face straight shall you know his heart. + +DERBY: +What of his heart perceive you in his face +By any likelihood he show'd to-day? + +HASTINGS: +Marry, that with no man here he is offended; +For, were he, he had shown it in his looks. + +DERBY: +I pray God he be not, I say. + +GLOUCESTER: +I pray you all, tell me what they deserve +That do conspire my death with devilish plots +Of damned witchcraft, and that have prevail'd +Upon my body with their hellish charms? + +HASTINGS: +The tender love I bear your grace, my lord, +Makes me most forward in this noble presence +To doom the offenders, whatsoever they be +I say, my lord, they have deserved death. + +GLOUCESTER: +Then be your eyes the witness of this ill: +See how I am bewitch'd; behold mine arm +Is, like a blasted sapling, wither'd up: +And this is Edward's wife, that monstrous witch, +Consorted with that harlot strumpet Shore, +That by their witchcraft thus have marked me. + +HASTINGS: +If they have done this thing, my gracious lord-- + +GLOUCESTER: +If I thou protector of this damned strumpet-- +Tellest thou me of 'ifs'? Thou art a traitor: +Off with his head! Now, by Saint Paul I swear, +I will not dine until I see the same. +Lovel and Ratcliff, look that it be done: +The rest, that love me, rise and follow me. + +HASTINGS: +Woe, woe for England! not a whit for me; +For I, too fond, might have prevented this. +Stanley did dream the boar did raze his helm; +But I disdain'd it, and did scorn to fly: +Three times to-day my foot-cloth horse did stumble, +And startled, when he look'd upon the Tower, +As loath to bear me to the slaughter-house. +O, now I want the priest that spake to me: +I now repent I told the pursuivant +As 'twere triumphing at mine enemies, +How they at Pomfret bloodily were butcher'd, +And I myself secure in grace and favour. +O Margaret, Margaret, now thy heavy curse +Is lighted on poor Hastings' wretched head! + +RATCLIFF: +Dispatch, my lord; the duke would be at dinner: +Make a short shrift; he longs to see your head. + +HASTINGS: +O momentary grace of mortal men, +Which we more hunt for than the grace of God! +Who builds his hopes in air of your good looks, +Lives like a drunken sailor on a mast, +Ready, with every nod, to tumble down +Into the fatal bowels of the deep. + +LOVEL: +Come, come, dispatch; 'tis bootless to exclaim. + +HASTINGS: +O bloody Richard! miserable England! +I prophesy the fearful'st time to thee +That ever wretched age hath look'd upon. +Come, lead me to the block; bear him my head. +They smile at me that shortly shall be dead. + +GLOUCESTER: +Come, cousin, canst thou quake, and change thy colour, +Murder thy breath in the middle of a word, +And then begin again, and stop again, +As if thou wert distraught and mad with terror? + +BUCKINGHAM: +Tut, I can counterfeit the deep tragedian; +Speak and look back, and pry on every side, +Tremble and start at wagging of a straw, +Intending deep suspicion: ghastly looks +Are at my service, like enforced smiles; +And both are ready in their offices, +At any time, to grace my stratagems. +But what, is Catesby gone? + +GLOUCESTER: +He is; and, see, he brings the mayor along. + +BUCKINGHAM: +Lord mayor,-- + +GLOUCESTER: +Look to the drawbridge there! + +BUCKINGHAM: +Hark! a drum. + +GLOUCESTER: +Catesby, o'erlook the walls. + +BUCKINGHAM: +Lord mayor, the reason we have sent-- + +GLOUCESTER: +Look back, defend thee, here are enemies. + +BUCKINGHAM: +God and our innocency defend and guard us! + +GLOUCESTER: +Be patient, they are friends, Ratcliff and Lovel. + +LOVEL: +Here is the head of that ignoble traitor, +The dangerous and unsuspected Hastings. + +GLOUCESTER: +So dear I loved the man, that I must weep. +I took him for the plainest harmless creature +That breathed upon this earth a Christian; +Made him my book wherein my soul recorded +The history of all her secret thoughts: +So smooth he daub'd his vice with show of virtue, +That, his apparent open guilt omitted, +I mean, his conversation with Shore's wife, +He lived from all attainder of suspect. + +BUCKINGHAM: +Well, well, he was the covert'st shelter'd traitor +That ever lived. +Would you imagine, or almost believe, +Were't not that, by great preservation, +We live to tell it you, the subtle traitor +This day had plotted, in the council-house +To murder me and my good Lord of Gloucester? + +Lord Mayor: +What, had he so? + +GLOUCESTER: +What, think You we are Turks or infidels? +Or that we would, against the form of law, +Proceed thus rashly to the villain's death, +But that the extreme peril of the case, +The peace of England and our persons' safety, +Enforced us to this execution? + +Lord Mayor: +Now, fair befall you! he deserved his death; +And you my good lords, both have well proceeded, +To warn false traitors from the like attempts. +I never look'd for better at his hands, +After he once fell in with Mistress Shore. + +GLOUCESTER: +Yet had not we determined he should die, +Until your lordship came to see his death; +Which now the loving haste of these our friends, +Somewhat against our meaning, have prevented: +Because, my lord, we would have had you heard +The traitor speak, and timorously confess +The manner and the purpose of his treason; +That you might well have signified the same +Unto the citizens, who haply may +Misconstrue us in him and wail his death. + +Lord Mayor: +But, my good lord, your grace's word shall serve, +As well as I had seen and heard him speak +And doubt you not, right noble princes both, +But I'll acquaint our duteous citizens +With all your just proceedings in this cause. + +GLOUCESTER: +And to that end we wish'd your lord-ship here, +To avoid the carping censures of the world. + +BUCKINGHAM: +But since you come too late of our intents, +Yet witness what you hear we did intend: +And so, my good lord mayor, we bid farewell. + +GLOUCESTER: +Go, after, after, cousin Buckingham. +The mayor towards Guildhall hies him in all post: +There, at your meet'st advantage of the time, +Infer the bastardy of Edward's children: +Tell them how Edward put to death a citizen, +Only for saying he would make his son +Heir to the crown; meaning indeed his house, +Which, by the sign thereof was termed so. +Moreover, urge his hateful luxury +And bestial appetite in change of lust; +Which stretched to their servants, daughters, wives, +Even where his lustful eye or savage heart, +Without control, listed to make his prey. +Nay, for a need, thus far come near my person: +Tell them, when that my mother went with child +Of that unsatiate Edward, noble York +My princely father then had wars in France +And, by just computation of the time, +Found that the issue was not his begot; +Which well appeared in his lineaments, +Being nothing like the noble duke my father: +But touch this sparingly, as 'twere far off, +Because you know, my lord, my mother lives. + +BUCKINGHAM: +Fear not, my lord, I'll play the orator +As if the golden fee for which I plead +Were for myself: and so, my lord, adieu. + +GLOUCESTER: +If you thrive well, bring them to Baynard's Castle; +Where you shall find me well accompanied +With reverend fathers and well-learned bishops. + +BUCKINGHAM: +I go: and towards three or four o'clock +Look for the news that the Guildhall affords. + +GLOUCESTER: +Go, Lovel, with all speed to Doctor Shaw; +Go thou to Friar Penker; bid them both +Meet me within this hour at Baynard's Castle. +Now will I in, to take some privy order, +To draw the brats of Clarence out of sight; +And to give notice, that no manner of person +At any time have recourse unto the princes. + +Scrivener: +This is the indictment of the good Lord Hastings; +Which in a set hand fairly is engross'd, +That it may be this day read over in Paul's. +And mark how well the sequel hangs together: +Eleven hours I spent to write it over, +For yesternight by Catesby was it brought me; +The precedent was full as long a-doing: +And yet within these five hours lived Lord Hastings, +Untainted, unexamined, free, at liberty +Here's a good world the while! Why who's so gross, +That seeth not this palpable device? +Yet who's so blind, but says he sees it not? +Bad is the world; and all will come to nought, +When such bad dealings must be seen in thought. + +GLOUCESTER: +How now, my lord, what say the citizens? + +BUCKINGHAM: +Now, by the holy mother of our Lord, +The citizens are mum and speak not a word. + +GLOUCESTER: +Touch'd you the bastardy of Edward's children? + +BUCKINGHAM: +I did; with his contract with Lady Lucy, +And his contract by deputy in France; +The insatiate greediness of his desires, +And his enforcement of the city wives; +His tyranny for trifles; his own bastardy, +As being got, your father then in France, +His resemblance, being not like the duke; +Withal I did infer your lineaments, +Being the right idea of your father, +Both in your form and nobleness of mind; +Laid open all your victories in Scotland, +Your dicipline in war, wisdom in peace, +Your bounty, virtue, fair humility: +Indeed, left nothing fitting for the purpose +Untouch'd, or slightly handled, in discourse +And when mine oratory grew to an end +I bid them that did love their country's good +Cry 'God save Richard, England's royal king!' + +GLOUCESTER: +Ah! and did they so? + +BUCKINGHAM: +No, so God help me, they spake not a word; +But, like dumb statues or breathing stones, +Gazed each on other, and look'd deadly pale. +Which when I saw, I reprehended them; +And ask'd the mayor what meant this wilful silence: +His answer was, the people were not wont +To be spoke to but by the recorder. +Then he was urged to tell my tale again, +'Thus saith the duke, thus hath the duke inferr'd;' +But nothing spake in warrant from himself. +When he had done, some followers of mine own, +At the lower end of the hall, hurl'd up their caps, +And some ten voices cried 'God save King Richard!' +And thus I took the vantage of those few, +'Thanks, gentle citizens and friends,' quoth I; +'This general applause and loving shout +Argues your wisdoms and your love to Richard:' +And even here brake off, and came away. + +GLOUCESTER: +What tongueless blocks were they! would not they speak? + +BUCKINGHAM: +No, by my troth, my lord. + +GLOUCESTER: +Will not the mayor then and his brethren come? + +BUCKINGHAM: +The mayor is here at hand: intend some fear; +Be not you spoke with, but by mighty suit: +And look you get a prayer-book in your hand, +And stand betwixt two churchmen, good my lord; +For on that ground I'll build a holy descant: +And be not easily won to our request: +Play the maid's part, still answer nay, and take it. + +GLOUCESTER: +I go; and if you plead as well for them +As I can say nay to thee for myself, +No doubt well bring it to a happy issue. + +BUCKINGHAM: +Go, go, up to the leads; the lord mayor knocks. +Welcome my lord; I dance attendance here; +I think the duke will not be spoke withal. +Here comes his servant: how now, Catesby, +What says he? + +CATESBY: +My lord: he doth entreat your grace; +To visit him to-morrow or next day: +He is within, with two right reverend fathers, +Divinely bent to meditation; +And no worldly suit would he be moved, +To draw him from his holy exercise. + +BUCKINGHAM: +Return, good Catesby, to thy lord again; +Tell him, myself, the mayor and citizens, +In deep designs and matters of great moment, +No less importing than our general good, +Are come to have some conference with his grace. + +CATESBY: +I'll tell him what you say, my lord. + +BUCKINGHAM: +Ah, ha, my lord, this prince is not an Edward! +He is not lolling on a lewd day-bed, +But on his knees at meditation; +Not dallying with a brace of courtezans, +But meditating with two deep divines; +Not sleeping, to engross his idle body, +But praying, to enrich his watchful soul: +Happy were England, would this gracious prince +Take on himself the sovereignty thereof: +But, sure, I fear, we shall ne'er win him to it. + +Lord Mayor: +Marry, God forbid his grace should say us nay! + +BUCKINGHAM: +I fear he will. +How now, Catesby, what says your lord? + +CATESBY: +My lord, +He wonders to what end you have assembled +Such troops of citizens to speak with him, +His grace not being warn'd thereof before: +My lord, he fears you mean no good to him. + +BUCKINGHAM: +Sorry I am my noble cousin should +Suspect me, that I mean no good to him: +By heaven, I come in perfect love to him; +And so once more return and tell his grace. +When holy and devout religious men +Are at their beads, 'tis hard to draw them thence, +So sweet is zealous contemplation. + +Lord Mayor: +See, where he stands between two clergymen! + +BUCKINGHAM: +Two props of virtue for a Christian prince, +To stay him from the fall of vanity: +And, see, a book of prayer in his hand, +True ornaments to know a holy man. +Famous Plantagenet, most gracious prince, +Lend favourable ears to our request; +And pardon us the interruption +Of thy devotion and right Christian zeal. + +GLOUCESTER: +My lord, there needs no such apology: +I rather do beseech you pardon me, +Who, earnest in the service of my God, +Neglect the visitation of my friends. +But, leaving this, what is your grace's pleasure? + +BUCKINGHAM: +Even that, I hope, which pleaseth God above, +And all good men of this ungovern'd isle. + +GLOUCESTER: +I do suspect I have done some offence +That seems disgracious in the city's eyes, +And that you come to reprehend my ignorance. + +BUCKINGHAM: +You have, my lord: would it might please your grace, +At our entreaties, to amend that fault! + +GLOUCESTER: +Else wherefore breathe I in a Christian land? + +BUCKINGHAM: +Then know, it is your fault that you resign +The supreme seat, the throne majestical, +The scepter'd office of your ancestors, +Your state of fortune and your due of birth, +The lineal glory of your royal house, +To the corruption of a blemished stock: +Whilst, in the mildness of your sleepy thoughts, +Which here we waken to our country's good, +This noble isle doth want her proper limbs; +Her face defaced with scars of infamy, +Her royal stock graft with ignoble plants, +And almost shoulder'd in the swallowing gulf +Of blind forgetfulness and dark oblivion. +Which to recure, we heartily solicit +Your gracious self to take on you the charge +And kingly government of this your land, +Not as protector, steward, substitute, +Or lowly factor for another's gain; +But as successively from blood to blood, +Your right of birth, your empery, your own. +For this, consorted with the citizens, +Your very worshipful and loving friends, +And by their vehement instigation, +In this just suit come I to move your grace. + +GLOUCESTER: +I know not whether to depart in silence, +Or bitterly to speak in your reproof. +Best fitteth my degree or your condition +If not to answer, you might haply think +Tongue-tied ambition, not replying, yielded +To bear the golden yoke of sovereignty, +Which fondly you would here impose on me; +If to reprove you for this suit of yours, +So season'd with your faithful love to me. +Then, on the other side, I cheque'd my friends. +Therefore, to speak, and to avoid the first, +And then, in speaking, not to incur the last, +Definitively thus I answer you. +Your love deserves my thanks; but my desert +Unmeritable shuns your high request. +First if all obstacles were cut away, +And that my path were even to the crown, +As my ripe revenue and due by birth +Yet so much is my poverty of spirit, +So mighty and so many my defects, +As I had rather hide me from my greatness, +Being a bark to brook no mighty sea, +Than in my greatness covet to be hid, +And in the vapour of my glory smother'd. +But, God be thank'd, there's no need of me, +And much I need to help you, if need were; +The royal tree hath left us royal fruit, +Which, mellow'd by the stealing hours of time, +Will well become the seat of majesty, +And make, no doubt, us happy by his reign. +On him I lay what you would lay on me, +The right and fortune of his happy stars; +Which God defend that I should wring from him! + +BUCKINGHAM: +My lord, this argues conscience in your grace; +But the respects thereof are nice and trivial, +All circumstances well considered. +You say that Edward is your brother's son: +So say we too, but not by Edward's wife; +For first he was contract to Lady Lucy-- +Your mother lives a witness to that vow-- +And afterward by substitute betroth'd +To Bona, sister to the King of France. +These both put by a poor petitioner, +A care-crazed mother of a many children, +A beauty-waning and distressed widow, +Even in the afternoon of her best days, +Made prize and purchase of his lustful eye, +Seduced the pitch and height of all his thoughts +To base declension and loathed bigamy +By her, in his unlawful bed, he got +This Edward, whom our manners term the prince. +More bitterly could I expostulate, +Save that, for reverence to some alive, +I give a sparing limit to my tongue. +Then, good my lord, take to your royal self +This proffer'd benefit of dignity; +If non to bless us and the land withal, +Yet to draw forth your noble ancestry +From the corruption of abusing times, +Unto a lineal true-derived course. + +Lord Mayor: +Do, good my lord, your citizens entreat you. + +BUCKINGHAM: +Refuse not, mighty lord, this proffer'd love. + +CATESBY: +O, make them joyful, grant their lawful suit! + +GLOUCESTER: +Alas, why would you heap these cares on me? +I am unfit for state and majesty; +I do beseech you, take it not amiss; +I cannot nor I will not yield to you. + +BUCKINGHAM: +If you refuse it,--as, in love and zeal, +Loath to depose the child, Your brother's son; +As well we know your tenderness of heart +And gentle, kind, effeminate remorse, +Which we have noted in you to your kin, +And egally indeed to all estates,-- +Yet whether you accept our suit or no, +Your brother's son shall never reign our king; +But we will plant some other in the throne, +To the disgrace and downfall of your house: +And in this resolution here we leave you.-- +Come, citizens: 'zounds! I'll entreat no more. + +GLOUCESTER: +O, do not swear, my lord of Buckingham. + +CATESBY: +Call them again, my lord, and accept their suit. + +ANOTHER: +Do, good my lord, lest all the land do rue it. + +GLOUCESTER: +Would you enforce me to a world of care? +Well, call them again. I am not made of stone, +But penetrable to your. kind entreats, +Albeit against my conscience and my soul. +Cousin of Buckingham, and you sage, grave men, +Since you will buckle fortune on my back, +To bear her burthen, whether I will or no, +I must have patience to endure the load: +But if black scandal or foul-faced reproach +Attend the sequel of your imposition, +Your mere enforcement shall acquittance me +From all the impure blots and stains thereof; +For God he knows, and you may partly see, +How far I am from the desire thereof. + +Lord Mayor: +God bless your grace! we see it, and will say it. + +GLOUCESTER: +In saying so, you shall but say the truth. + +BUCKINGHAM: +Then I salute you with this kingly title: +Long live Richard, England's royal king! + +Lord Mayor: +Amen. + +BUCKINGHAM: +To-morrow will it please you to be crown'd? + +GLOUCESTER: +Even when you please, since you will have it so. + +BUCKINGHAM: +To-morrow, then, we will attend your grace: +And so most joyfully we take our leave. + +GLOUCESTER: +Come, let us to our holy task again. +Farewell, good cousin; farewell, gentle friends. + +DUCHESS OF YORK: +Who meets us here? my niece Plantagenet +Led in the hand of her kind aunt of Gloucester? +Now, for my life, she's wandering to the Tower, +On pure heart's love to greet the tender princes. +Daughter, well met. + +LADY ANNE: +God give your graces both +A happy and a joyful time of day! + +QUEEN ELIZABETH: +As much to you, good sister! Whither away? + +LADY ANNE: +No farther than the Tower; and, as I guess, +Upon the like devotion as yourselves, +To gratulate the gentle princes there. + +QUEEN ELIZABETH: +Kind sister, thanks: we'll enter all together. +And, in good time, here the lieutenant comes. +Master lieutenant, pray you, by your leave, +How doth the prince, and my young son of York? + +BRAKENBURY: +Right well, dear madam. By your patience, +I may not suffer you to visit them; +The king hath straitly charged the contrary. + +QUEEN ELIZABETH: +The king! why, who's that? + +BRAKENBURY: +I cry you mercy: I mean the lord protector. + +QUEEN ELIZABETH: +The Lord protect him from that kingly title! +Hath he set bounds betwixt their love and me? +I am their mother; who should keep me from them? + +DUCHESS OF YORK: +I am their fathers mother; I will see them. + +LADY ANNE: +Their aunt I am in law, in love their mother: +Then bring me to their sights; I'll bear thy blame +And take thy office from thee, on my peril. + +BRAKENBURY: +No, madam, no; I may not leave it so: +I am bound by oath, and therefore pardon me. + +LORD STANLEY: +Let me but meet you, ladies, one hour hence, +And I'll salute your grace of York as mother, +And reverend looker on, of two fair queens. +Come, madam, you must straight to Westminster, +There to be crowned Richard's royal queen. + +QUEEN ELIZABETH: +O, cut my lace in sunder, that my pent heart +May have some scope to beat, or else I swoon +With this dead-killing news! + +LADY ANNE: +Despiteful tidings! O unpleasing news! + +DORSET: +Be of good cheer: mother, how fares your grace? + +QUEEN ELIZABETH: +O Dorset, speak not to me, get thee hence! +Death and destruction dog thee at the heels; +Thy mother's name is ominous to children. +If thou wilt outstrip death, go cross the seas, +And live with Richmond, from the reach of hell +Go, hie thee, hie thee from this slaughter-house, +Lest thou increase the number of the dead; +And make me die the thrall of Margaret's curse, +Nor mother, wife, nor England's counted queen. + +LORD STANLEY: +Full of wise care is this your counsel, madam. +Take all the swift advantage of the hours; +You shall have letters from me to my son +To meet you on the way, and welcome you. +Be not ta'en tardy by unwise delay. + +DUCHESS OF YORK: +O ill-dispersing wind of misery! +O my accursed womb, the bed of death! +A cockatrice hast thou hatch'd to the world, +Whose unavoided eye is murderous. + +LORD STANLEY: +Come, madam, come; I in all haste was sent. + +LADY ANNE: +And I in all unwillingness will go. +I would to God that the inclusive verge +Of golden metal that must round my brow +Were red-hot steel, to sear me to the brain! +Anointed let me be with deadly venom, +And die, ere men can say, God save the queen! + +QUEEN ELIZABETH: +Go, go, poor soul, I envy not thy glory +To feed my humour, wish thyself no harm. + +LADY ANNE: +No! why? When he that is my husband now +Came to me, as I follow'd Henry's corse, +When scarce the blood was well wash'd from his hands +Which issued from my other angel husband +And that dead saint which then I weeping follow'd; +O, when, I say, I look'd on Richard's face, +This was my wish: 'Be thou,' quoth I, ' accursed, +For making me, so young, so old a widow! +And, when thou wed'st, let sorrow haunt thy bed; +And be thy wife--if any be so mad-- +As miserable by the life of thee +As thou hast made me by my dear lord's death! +Lo, ere I can repeat this curse again, +Even in so short a space, my woman's heart +Grossly grew captive to his honey words +And proved the subject of my own soul's curse, +Which ever since hath kept my eyes from rest; +For never yet one hour in his bed +Have I enjoy'd the golden dew of sleep, +But have been waked by his timorous dreams. +Besides, he hates me for my father Warwick; +And will, no doubt, shortly be rid of me. + +QUEEN ELIZABETH: +Poor heart, adieu! I pity thy complaining. + +LADY ANNE: +No more than from my soul I mourn for yours. + +QUEEN ELIZABETH: +Farewell, thou woful welcomer of glory! + +LADY ANNE: +Adieu, poor soul, that takest thy leave of it! + +DUCHESS OF YORK: + +QUEEN ELIZABETH: +Stay, yet look back with me unto the Tower. +Pity, you ancient stones, those tender babes +Whom envy hath immured within your walls! +Rough cradle for such little pretty ones! +Rude ragged nurse, old sullen playfellow +For tender princes, use my babies well! +So foolish sorrow bids your stones farewell. + +KING RICHARD III: +Stand all apart Cousin of Buckingham! + +BUCKINGHAM: +My gracious sovereign? + +KING RICHARD III: +Give me thy hand. +Thus high, by thy advice +And thy assistance, is King Richard seated; +But shall we wear these honours for a day? +Or shall they last, and we rejoice in them? + +BUCKINGHAM: +Still live they and for ever may they last! + +KING RICHARD III: +O Buckingham, now do I play the touch, +To try if thou be current gold indeed +Young Edward lives: think now what I would say. + +BUCKINGHAM: +Say on, my loving lord. + +KING RICHARD III: +Why, Buckingham, I say, I would be king, + +BUCKINGHAM: +Why, so you are, my thrice renowned liege. + +KING RICHARD III: +Ha! am I king? 'tis so: but Edward lives. + +BUCKINGHAM: +True, noble prince. + +KING RICHARD III: +O bitter consequence, +That Edward still should live! 'True, noble prince!' +Cousin, thou wert not wont to be so dull: +Shall I be plain? I wish the bastards dead; +And I would have it suddenly perform'd. +What sayest thou? speak suddenly; be brief. + +BUCKINGHAM: +Your grace may do your pleasure. + +KING RICHARD III: +Tut, tut, thou art all ice, thy kindness freezeth: +Say, have I thy consent that they shall die? + +BUCKINGHAM: +Give me some breath, some little pause, my lord +Before I positively herein: +I will resolve your grace immediately. + +CATESBY: + +KING RICHARD III: +I will converse with iron-witted fools +And unrespective boys: none are for me +That look into me with considerate eyes: +High-reaching Buckingham grows circumspect. +Boy! + +Page: +My lord? + +KING RICHARD III: +Know'st thou not any whom corrupting gold +Would tempt unto a close exploit of death? + +Page: +My lord, I know a discontented gentleman, +Whose humble means match not his haughty mind: +Gold were as good as twenty orators, +And will, no doubt, tempt him to any thing. + +KING RICHARD III: +What is his name? + +Page: +His name, my lord, is Tyrrel. + +KING RICHARD III: +I partly know the man: go, call him hither. +The deep-revolving witty Buckingham +No more shall be the neighbour to my counsel: +Hath he so long held out with me untired, +And stops he now for breath? +How now! what news with you? + +STANLEY: +My lord, I hear the Marquis Dorset's fled +To Richmond, in those parts beyond the sea +Where he abides. + +KING RICHARD III: +Catesby! + +CATESBY: +My lord? + +KING RICHARD III: +Rumour it abroad +That Anne, my wife, is sick and like to die: +I will take order for her keeping close. +Inquire me out some mean-born gentleman, +Whom I will marry straight to Clarence' daughter: +The boy is foolish, and I fear not him. +Look, how thou dream'st! I say again, give out +That Anne my wife is sick and like to die: +About it; for it stands me much upon, +To stop all hopes whose growth may damage me. +I must be married to my brother's daughter, +Or else my kingdom stands on brittle glass. +Murder her brothers, and then marry her! +Uncertain way of gain! But I am in +So far in blood that sin will pluck on sin: +Tear-falling pity dwells not in this eye. +Is thy name Tyrrel? + +TYRREL: +James Tyrrel, and your most obedient subject. + +KING RICHARD III: +Art thou, indeed? + +TYRREL: +Prove me, my gracious sovereign. + +KING RICHARD III: +Darest thou resolve to kill a friend of mine? + +TYRREL: +Ay, my lord; +But I had rather kill two enemies. + +KING RICHARD III: +Why, there thou hast it: two deep enemies, +Foes to my rest and my sweet sleep's disturbers +Are they that I would have thee deal upon: +Tyrrel, I mean those bastards in the Tower. + +TYRREL: +Let me have open means to come to them, +And soon I'll rid you from the fear of them. + +KING RICHARD III: +Thou sing'st sweet music. Hark, come hither, Tyrrel +Go, by this token: rise, and lend thine ear: +There is no more but so: say it is done, +And I will love thee, and prefer thee too. + +TYRREL: +'Tis done, my gracious lord. + +KING RICHARD III: +Shall we hear from thee, Tyrrel, ere we sleep? + +TYRREL: +Ye shall, my Lord. + +BUCKINGHAM: +My Lord, I have consider'd in my mind +The late demand that you did sound me in. + +KING RICHARD III: +Well, let that pass. Dorset is fled to Richmond. + +BUCKINGHAM: +I hear that news, my lord. + +KING RICHARD III: +Stanley, he is your wife's son well, look to it. + +BUCKINGHAM: +My lord, I claim your gift, my due by promise, +For which your honour and your faith is pawn'd; +The earldom of Hereford and the moveables +The which you promised I should possess. + +KING RICHARD III: +Stanley, look to your wife; if she convey +Letters to Richmond, you shall answer it. + +BUCKINGHAM: +What says your highness to my just demand? + +KING RICHARD III: +As I remember, Henry the Sixth +Did prophesy that Richmond should be king, +When Richmond was a little peevish boy. +A king, perhaps, perhaps,-- + +BUCKINGHAM: +My lord! + +KING RICHARD III: +How chance the prophet could not at that time +Have told me, I being by, that I should kill him? + +BUCKINGHAM: +My lord, your promise for the earldom,-- + +KING RICHARD III: +Richmond! When last I was at Exeter, +The mayor in courtesy show'd me the castle, +And call'd it Rougemont: at which name I started, +Because a bard of Ireland told me once +I should not live long after I saw Richmond. + +BUCKINGHAM: +My Lord! + +KING RICHARD III: +Ay, what's o'clock? + +BUCKINGHAM: +I am thus bold to put your grace in mind +Of what you promised me. + +KING RICHARD III: +Well, but what's o'clock? + +BUCKINGHAM: +Upon the stroke of ten. + +KING RICHARD III: +Well, let it strike. + +BUCKINGHAM: +Why let it strike? + +KING RICHARD III: +Because that, like a Jack, thou keep'st the stroke +Betwixt thy begging and my meditation. +I am not in the giving vein to-day. + +BUCKINGHAM: +Why, then resolve me whether you will or no. + +KING RICHARD III: +Tut, tut, +Thou troublest me; am not in the vein. + +BUCKINGHAM: +Is it even so? rewards he my true service +With such deep contempt made I him king for this? +O, let me think on Hastings, and be gone +To Brecknock, while my fearful head is on! + +TYRREL: +The tyrannous and bloody deed is done. +The most arch of piteous massacre +That ever yet this land was guilty of. +Dighton and Forrest, whom I did suborn +To do this ruthless piece of butchery, +Although they were flesh'd villains, bloody dogs, +Melting with tenderness and kind compassion +Wept like two children in their deaths' sad stories. +'Lo, thus' quoth Dighton, 'lay those tender babes:' +'Thus, thus,' quoth Forrest, 'girdling one another +Within their innocent alabaster arms: +Their lips were four red roses on a stalk, +Which in their summer beauty kiss'd each other. +A book of prayers on their pillow lay; +Which once,' quoth Forrest, 'almost changed my mind; +But O! the devil'--there the villain stopp'd +Whilst Dighton thus told on: 'We smothered +The most replenished sweet work of nature, +That from the prime creation e'er she framed.' +Thus both are gone with conscience and remorse; +They could not speak; and so I left them both, +To bring this tidings to the bloody king. +And here he comes. +All hail, my sovereign liege! + +KING RICHARD III: +Kind Tyrrel, am I happy in thy news? + +TYRREL: +If to have done the thing you gave in charge +Beget your happiness, be happy then, +For it is done, my lord. + +KING RICHARD III: +But didst thou see them dead? + +TYRREL: +I did, my lord. + +KING RICHARD III: +And buried, gentle Tyrrel? + +TYRREL: +The chaplain of the Tower hath buried them; +But how or in what place I do not know. + +KING RICHARD III: +Come to me, Tyrrel, soon at after supper, +And thou shalt tell the process of their death. +Meantime, but think how I may do thee good, +And be inheritor of thy desire. +Farewell till soon. +The son of Clarence have I pent up close; +His daughter meanly have I match'd in marriage; +The sons of Edward sleep in Abraham's bosom, +And Anne my wife hath bid the world good night. +Now, for I know the Breton Richmond aims +At young Elizabeth, my brother's daughter, +And, by that knot, looks proudly o'er the crown, +To her I go, a jolly thriving wooer. + +CATESBY: +My lord! + +KING RICHARD III: +Good news or bad, that thou comest in so bluntly? + +CATESBY: +Bad news, my lord: Ely is fled to Richmond; +And Buckingham, back'd with the hardy Welshmen, +Is in the field, and still his power increaseth. + +KING RICHARD III: +Ely with Richmond troubles me more near +Than Buckingham and his rash-levied army. +Come, I have heard that fearful commenting +Is leaden servitor to dull delay; +Delay leads impotent and snail-paced beggary +Then fiery expedition be my wing, +Jove's Mercury, and herald for a king! +Come, muster men: my counsel is my shield; +We must be brief when traitors brave the field. + +QUEEN MARGARET: +So, now prosperity begins to mellow +And drop into the rotten mouth of death. +Here in these confines slily have I lurk'd, +To watch the waning of mine adversaries. +A dire induction am I witness to, +And will to France, hoping the consequence +Will prove as bitter, black, and tragical. +Withdraw thee, wretched Margaret: who comes here? + +QUEEN ELIZABETH: +Ah, my young princes! ah, my tender babes! +My unblown flowers, new-appearing sweets! +If yet your gentle souls fly in the air +And be not fix'd in doom perpetual, +Hover about me with your airy wings +And hear your mother's lamentation! + +QUEEN MARGARET: +Hover about her; say, that right for right +Hath dimm'd your infant morn to aged night. + +DUCHESS OF YORK: +So many miseries have crazed my voice, +That my woe-wearied tongue is mute and dumb, +Edward Plantagenet, why art thou dead? + +QUEEN MARGARET: +Plantagenet doth quit Plantagenet. +Edward for Edward pays a dying debt. + +QUEEN ELIZABETH: +Wilt thou, O God, fly from such gentle lambs, +And throw them in the entrails of the wolf? +When didst thou sleep when such a deed was done? + +QUEEN MARGARET: +When holy Harry died, and my sweet son. + +DUCHESS OF YORK: +Blind sight, dead life, poor mortal living ghost, +Woe's scene, world's shame, grave's due by life usurp'd, +Brief abstract and record of tedious days, +Rest thy unrest on England's lawful earth, +Unlawfully made drunk with innocents' blood! + +QUEEN ELIZABETH: +O, that thou wouldst as well afford a grave +As thou canst yield a melancholy seat! +Then would I hide my bones, not rest them here. +O, who hath any cause to mourn but I? + +QUEEN MARGARET: +If ancient sorrow be most reverend, +Give mine the benefit of seniory, +And let my woes frown on the upper hand. +If sorrow can admit society, +Tell o'er your woes again by viewing mine: +I had an Edward, till a Richard kill'd him; +I had a Harry, till a Richard kill'd him: +Thou hadst an Edward, till a Richard kill'd him; +Thou hadst a Richard, till a Richard killed him; + +DUCHESS OF YORK: +I had a Richard too, and thou didst kill him; +I had a Rutland too, thou holp'st to kill him. + +QUEEN MARGARET: +Thou hadst a Clarence too, and Richard kill'd him. +From forth the kennel of thy womb hath crept +A hell-hound that doth hunt us all to death: +That dog, that had his teeth before his eyes, +To worry lambs and lap their gentle blood, +That foul defacer of God's handiwork, +That excellent grand tyrant of the earth, +That reigns in galled eyes of weeping souls, +Thy womb let loose, to chase us to our graves. +O upright, just, and true-disposing God, +How do I thank thee, that this carnal cur +Preys on the issue of his mother's body, +And makes her pew-fellow with others' moan! + +DUCHESS OF YORK: +O Harry's wife, triumph not in my woes! +God witness with me, I have wept for thine. + +QUEEN MARGARET: +Bear with me; I am hungry for revenge, +And now I cloy me with beholding it. +Thy Edward he is dead, that stabb'd my Edward: +Thy other Edward dead, to quit my Edward; +Young York he is but boot, because both they +Match not the high perfection of my loss: +Thy Clarence he is dead that kill'd my Edward; +And the beholders of this tragic play, +The adulterate Hastings, Rivers, Vaughan, Grey, +Untimely smother'd in their dusky graves. +Richard yet lives, hell's black intelligencer, +Only reserved their factor, to buy souls +And send them thither: but at hand, at hand, +Ensues his piteous and unpitied end: +Earth gapes, hell burns, fiends roar, saints pray. +To have him suddenly convey'd away. +Cancel his bond of life, dear God, I prey, +That I may live to say, The dog is dead! + +QUEEN ELIZABETH: +O, thou didst prophesy the time would come +That I should wish for thee to help me curse +That bottled spider, that foul bunch-back'd toad! + +QUEEN MARGARET: +I call'd thee then vain flourish of my fortune; +I call'd thee then poor shadow, painted queen; +The presentation of but what I was; +The flattering index of a direful pageant; +One heaved a-high, to be hurl'd down below; +A mother only mock'd with two sweet babes; +A dream of what thou wert, a breath, a bubble, +A sign of dignity, a garish flag, +To be the aim of every dangerous shot, +A queen in jest, only to fill the scene. +Where is thy husband now? where be thy brothers? +Where are thy children? wherein dost thou, joy? +Who sues to thee and cries 'God save the queen'? +Where be the bending peers that flatter'd thee? +Where be the thronging troops that follow'd thee? +Decline all this, and see what now thou art: +For happy wife, a most distressed widow; +For joyful mother, one that wails the name; +For queen, a very caitiff crown'd with care; +For one being sued to, one that humbly sues; +For one that scorn'd at me, now scorn'd of me; +For one being fear'd of all, now fearing one; +For one commanding all, obey'd of none. +Thus hath the course of justice wheel'd about, +And left thee but a very prey to time; +Having no more but thought of what thou wert, +To torture thee the more, being what thou art. +Thou didst usurp my place, and dost thou not +Usurp the just proportion of my sorrow? +Now thy proud neck bears half my burthen'd yoke; +From which even here I slip my weary neck, +And leave the burthen of it all on thee. +Farewell, York's wife, and queen of sad mischance: +These English woes will make me smile in France. + +QUEEN ELIZABETH: +O thou well skill'd in curses, stay awhile, +And teach me how to curse mine enemies! + +QUEEN MARGARET: +Forbear to sleep the nights, and fast the days; +Compare dead happiness with living woe; +Think that thy babes were fairer than they were, +And he that slew them fouler than he is: +Bettering thy loss makes the bad causer worse: +Revolving this will teach thee how to curse. + +QUEEN ELIZABETH: +My words are dull; O, quicken them with thine! + +QUEEN MARGARET: +Thy woes will make them sharp, and pierce like mine. + +DUCHESS OF YORK: +Why should calamity be full of words? + +QUEEN ELIZABETH: +Windy attorneys to their client woes, +Airy succeeders of intestate joys, +Poor breathing orators of miseries! +Let them have scope: though what they do impart +Help not all, yet do they ease the heart. + +DUCHESS OF YORK: +If so, then be not tongue-tied: go with me. +And in the breath of bitter words let's smother +My damned son, which thy two sweet sons smother'd. +I hear his drum: be copious in exclaims. + +KING RICHARD III: +Who intercepts my expedition? + +DUCHESS OF YORK: +O, she that might have intercepted thee, +By strangling thee in her accursed womb +From all the slaughters, wretch, that thou hast done! + +QUEEN ELIZABETH: +Hidest thou that forehead with a golden crown, +Where should be graven, if that right were right, +The slaughter of the prince that owed that crown, +And the dire death of my two sons and brothers? +Tell me, thou villain slave, where are my children? + +DUCHESS OF YORK: +Thou toad, thou toad, where is thy brother Clarence? +And little Ned Plantagenet, his son? + +QUEEN ELIZABETH: +Where is kind Hastings, Rivers, Vaughan, Grey? + +KING RICHARD III: +A flourish, trumpets! strike alarum, drums! +Let not the heavens hear these tell-tale women +Rail on the Lord's enointed: strike, I say! +Either be patient, and entreat me fair, +Or with the clamorous report of war +Thus will I drown your exclamations. + +DUCHESS OF YORK: +Art thou my son? + +KING RICHARD III: +Ay, I thank God, my father, and yourself. + +DUCHESS OF YORK: +Then patiently hear my impatience. + +KING RICHARD III: +Madam, I have a touch of your condition, +Which cannot brook the accent of reproof. + +DUCHESS OF YORK: +O, let me speak! + +KING RICHARD III: +Do then: but I'll not hear. + +DUCHESS OF YORK: +I will be mild and gentle in my speech. + +KING RICHARD III: +And brief, good mother; for I am in haste. + +DUCHESS OF YORK: +Art thou so hasty? I have stay'd for thee, +God knows, in anguish, pain and agony. + +KING RICHARD III: +And came I not at last to comfort you? + +DUCHESS OF YORK: +No, by the holy rood, thou know'st it well, +Thou camest on earth to make the earth my hell. +A grievous burthen was thy birth to me; +Tetchy and wayward was thy infancy; +Thy school-days frightful, desperate, wild, and furious, +Thy prime of manhood daring, bold, and venturous, +Thy age confirm'd, proud, subdued, bloody, +treacherous, +More mild, but yet more harmful, kind in hatred: +What comfortable hour canst thou name, +That ever graced me in thy company? + +KING RICHARD III: +Faith, none, but Humphrey Hour, that call'd +your grace +To breakfast once forth of my company. +If I be so disgracious in your sight, +Let me march on, and not offend your grace. +Strike the drum. + +DUCHESS OF YORK: +I prithee, hear me speak. + +KING RICHARD III: +You speak too bitterly. + +DUCHESS OF YORK: +Hear me a word; +For I shall never speak to thee again. + +KING RICHARD III: +So. + +DUCHESS OF YORK: +Either thou wilt die, by God's just ordinance, +Ere from this war thou turn a conqueror, +Or I with grief and extreme age shall perish +And never look upon thy face again. +Therefore take with thee my most heavy curse; +Which, in the day of battle, tire thee more +Than all the complete armour that thou wear'st! +My prayers on the adverse party fight; +And there the little souls of Edward's children +Whisper the spirits of thine enemies +And promise them success and victory. +Bloody thou art, bloody will be thy end; +Shame serves thy life and doth thy death attend. + +QUEEN ELIZABETH: +Though far more cause, yet much less spirit to curse +Abides in me; I say amen to all. + +KING RICHARD III: +Stay, madam; I must speak a word with you. + +QUEEN ELIZABETH: +I have no more sons of the royal blood +For thee to murder: for my daughters, Richard, +They shall be praying nuns, not weeping queens; +And therefore level not to hit their lives. + +KING RICHARD III: +You have a daughter call'd Elizabeth, +Virtuous and fair, royal and gracious. + +QUEEN ELIZABETH: +And must she die for this? O, let her live, +And I'll corrupt her manners, stain her beauty; +Slander myself as false to Edward's bed; +Throw over her the veil of infamy: +So she may live unscarr'd of bleeding slaughter, +I will confess she was not Edward's daughter. + +KING RICHARD III: +Wrong not her birth, she is of royal blood. + +QUEEN ELIZABETH: +To save her life, I'll say she is not so. + +KING RICHARD III: +Her life is only safest in her birth. + +QUEEN ELIZABETH: +And only in that safety died her brothers. + +KING RICHARD III: +Lo, at their births good stars were opposite. + +QUEEN ELIZABETH: +No, to their lives bad friends were contrary. + +KING RICHARD III: +All unavoided is the doom of destiny. + +QUEEN ELIZABETH: +True, when avoided grace makes destiny: +My babes were destined to a fairer death, +If grace had bless'd thee with a fairer life. + +KING RICHARD III: +You speak as if that I had slain my cousins. + +QUEEN ELIZABETH: +Cousins, indeed; and by their uncle cozen'd +Of comfort, kingdom, kindred, freedom, life. +Whose hand soever lanced their tender hearts, +Thy head, all indirectly, gave direction: +No doubt the murderous knife was dull and blunt +Till it was whetted on thy stone-hard heart, +To revel in the entrails of my lambs. +But that still use of grief makes wild grief tame, +My tongue should to thy ears not name my boys +Till that my nails were anchor'd in thine eyes; +And I, in such a desperate bay of death, +Like a poor bark, of sails and tackling reft, +Rush all to pieces on thy rocky bosom. + +KING RICHARD III: +Madam, so thrive I in my enterprise +And dangerous success of bloody wars, +As I intend more good to you and yours, +Than ever you or yours were by me wrong'd! + +QUEEN ELIZABETH: +What good is cover'd with the face of heaven, +To be discover'd, that can do me good? + +KING RICHARD III: +The advancement of your children, gentle lady. + +QUEEN ELIZABETH: +Up to some scaffold, there to lose their heads? + +KING RICHARD III: +No, to the dignity and height of honour +The high imperial type of this earth's glory. + +QUEEN ELIZABETH: +Flatter my sorrows with report of it; +Tell me what state, what dignity, what honour, +Canst thou demise to any child of mine? + +KING RICHARD III: +Even all I have; yea, and myself and all, +Will I withal endow a child of thine; +So in the Lethe of thy angry soul +Thou drown the sad remembrance of those wrongs +Which thou supposest I have done to thee. + +QUEEN ELIZABETH: +Be brief, lest that be process of thy kindness +Last longer telling than thy kindness' date. + +KING RICHARD III: +Then know, that from my soul I love thy daughter. + +QUEEN ELIZABETH: +My daughter's mother thinks it with her soul. + +KING RICHARD III: +What do you think? + +QUEEN ELIZABETH: +That thou dost love my daughter from thy soul: +So from thy soul's love didst thou love her brothers; +And from my heart's love I do thank thee for it. + +KING RICHARD III: +Be not so hasty to confound my meaning: +I mean, that with my soul I love thy daughter, +And mean to make her queen of England. + +QUEEN ELIZABETH: +Say then, who dost thou mean shall be her king? + +KING RICHARD III: +Even he that makes her queen who should be else? + +QUEEN ELIZABETH: +What, thou? + +KING RICHARD III: +I, even I: what think you of it, madam? + +QUEEN ELIZABETH: +How canst thou woo her? + +KING RICHARD III: +That would I learn of you, +As one that are best acquainted with her humour. + +QUEEN ELIZABETH: +And wilt thou learn of me? + +KING RICHARD III: +Madam, with all my heart. + +QUEEN ELIZABETH: +Send to her, by the man that slew her brothers, +A pair of bleeding-hearts; thereon engrave +Edward and York; then haply she will weep: +Therefore present to her--as sometime Margaret +Did to thy father, steep'd in Rutland's blood,-- +A handkerchief; which, say to her, did drain +The purple sap from her sweet brother's body +And bid her dry her weeping eyes therewith. +If this inducement force her not to love, +Send her a story of thy noble acts; +Tell her thou madest away her uncle Clarence, +Her uncle Rivers; yea, and, for her sake, +Madest quick conveyance with her good aunt Anne. + +KING RICHARD III: +Come, come, you mock me; this is not the way +To win our daughter. + +QUEEN ELIZABETH: +There is no other way +Unless thou couldst put on some other shape, +And not be Richard that hath done all this. + +KING RICHARD III: +Say that I did all this for love of her. + +QUEEN ELIZABETH: +Nay, then indeed she cannot choose but hate thee, +Having bought love with such a bloody spoil. + +KING RICHARD III: +Look, what is done cannot be now amended: +Men shall deal unadvisedly sometimes, +Which after hours give leisure to repent. +If I did take the kingdom from your sons, +To make amends, Ill give it to your daughter. +If I have kill'd the issue of your womb, +To quicken your increase, I will beget +Mine issue of your blood upon your daughter +A grandam's name is little less in love +Than is the doting title of a mother; +They are as children but one step below, +Even of your mettle, of your very blood; +Of an one pain, save for a night of groans +Endured of her, for whom you bid like sorrow. +Your children were vexation to your youth, +But mine shall be a comfort to your age. +The loss you have is but a son being king, +And by that loss your daughter is made queen. +I cannot make you what amends I would, +Therefore accept such kindness as I can. +Dorset your son, that with a fearful soul +Leads discontented steps in foreign soil, +This fair alliance quickly shall call home +To high promotions and great dignity: +The king, that calls your beauteous daughter wife. +Familiarly shall call thy Dorset brother; +Again shall you be mother to a king, +And all the ruins of distressful times +Repair'd with double riches of content. +What! we have many goodly days to see: +The liquid drops of tears that you have shed +Shall come again, transform'd to orient pearl, +Advantaging their loan with interest +Of ten times double gain of happiness. +Go, then my mother, to thy daughter go +Make bold her bashful years with your experience; +Prepare her ears to hear a wooer's tale +Put in her tender heart the aspiring flame +Of golden sovereignty; acquaint the princess +With the sweet silent hours of marriage joys +And when this arm of mine hath chastised +The petty rebel, dull-brain'd Buckingham, +Bound with triumphant garlands will I come +And lead thy daughter to a conqueror's bed; +To whom I will retail my conquest won, +And she shall be sole victress, Caesar's Caesar. + +QUEEN ELIZABETH: +What were I best to say? her father's brother +Would be her lord? or shall I say, her uncle? +Or, he that slew her brothers and her uncles? +Under what title shall I woo for thee, +That God, the law, my honour and her love, +Can make seem pleasing to her tender years? + +KING RICHARD III: +Infer fair England's peace by this alliance. + +QUEEN ELIZABETH: +Which she shall purchase with still lasting war. + +KING RICHARD III: +Say that the king, which may command, entreats. + +QUEEN ELIZABETH: +That at her hands which the king's King forbids. + +KING RICHARD III: +Say, she shall be a high and mighty queen. + +QUEEN ELIZABETH: +To wail the tide, as her mother doth. + +KING RICHARD III: +Say, I will love her everlastingly. + +QUEEN ELIZABETH: +But how long shall that title 'ever' last? + +KING RICHARD III: +Sweetly in force unto her fair life's end. + +QUEEN ELIZABETH: +But how long fairly shall her sweet lie last? + +KING RICHARD III: +So long as heaven and nature lengthens it. + +QUEEN ELIZABETH: +So long as hell and Richard likes of it. + +KING RICHARD III: +Say, I, her sovereign, am her subject love. + +QUEEN ELIZABETH: +But she, your subject, loathes such sovereignty. + +KING RICHARD III: +Be eloquent in my behalf to her. + +QUEEN ELIZABETH: +An honest tale speeds best being plainly told. + +KING RICHARD III: +Then in plain terms tell her my loving tale. + +QUEEN ELIZABETH: +Plain and not honest is too harsh a style. + +KING RICHARD III: +Your reasons are too shallow and too quick. + +QUEEN ELIZABETH: +O no, my reasons are too deep and dead; +Too deep and dead, poor infants, in their grave. + +KING RICHARD III: +Harp not on that string, madam; that is past. + +QUEEN ELIZABETH: +Harp on it still shall I till heart-strings break. + +KING RICHARD III: +Now, by my George, my garter, and my crown,-- + +QUEEN ELIZABETH: +Profaned, dishonour'd, and the third usurp'd. + +KING RICHARD III: +I swear-- + +QUEEN ELIZABETH: +By nothing; for this is no oath: +The George, profaned, hath lost his holy honour; +The garter, blemish'd, pawn'd his knightly virtue; +The crown, usurp'd, disgraced his kingly glory. +if something thou wilt swear to be believed, +Swear then by something that thou hast not wrong'd. + +KING RICHARD III: +Now, by the world-- + +QUEEN ELIZABETH: +'Tis full of thy foul wrongs. + +KING RICHARD III: +My father's death-- + +QUEEN ELIZABETH: +Thy life hath that dishonour'd. + +KING RICHARD III: +Then, by myself-- + +QUEEN ELIZABETH: +Thyself thyself misusest. + +KING RICHARD III: +Why then, by God-- + +QUEEN ELIZABETH: +God's wrong is most of all. +If thou hadst fear'd to break an oath by Him, +The unity the king thy brother made +Had not been broken, nor my brother slain: +If thou hadst fear'd to break an oath by Him, +The imperial metal, circling now thy brow, +Had graced the tender temples of my child, +And both the princes had been breathing here, +Which now, two tender playfellows to dust, +Thy broken faith hath made a prey for worms. +What canst thou swear by now? + +KING RICHARD III: +The time to come. + +QUEEN ELIZABETH: +That thou hast wronged in the time o'erpast; +For I myself have many tears to wash +Hereafter time, for time past wrong'd by thee. +The children live, whose parents thou hast +slaughter'd, +Ungovern'd youth, to wail it in their age; +The parents live, whose children thou hast butcher'd, +Old wither'd plants, to wail it with their age. +Swear not by time to come; for that thou hast +Misused ere used, by time misused o'erpast. + +KING RICHARD III: +As I intend to prosper and repent, +So thrive I in my dangerous attempt +Of hostile arms! myself myself confound! +Heaven and fortune bar me happy hours! +Day, yield me not thy light; nor, night, thy rest! +Be opposite all planets of good luck +To my proceedings, if, with pure heart's love, +Immaculate devotion, holy thoughts, +I tender not thy beauteous princely daughter! +In her consists my happiness and thine; +Without her, follows to this land and me, +To thee, herself, and many a Christian soul, +Death, desolation, ruin and decay: +It cannot be avoided but by this; +It will not be avoided but by this. +Therefore, good mother,--I must can you so-- +Be the attorney of my love to her: +Plead what I will be, not what I have been; +Not my deserts, but what I will deserve: +Urge the necessity and state of times, +And be not peevish-fond in great designs. + +QUEEN ELIZABETH: +Shall I be tempted of the devil thus? + +KING RICHARD III: +Ay, if the devil tempt thee to do good. + +QUEEN ELIZABETH: +Shall I forget myself to be myself? + +KING RICHARD III: +Ay, if yourself's remembrance wrong yourself. + +QUEEN ELIZABETH: +But thou didst kill my children. + +KING RICHARD III: +But in your daughter's womb I bury them: +Where in that nest of spicery they shall breed +Selves of themselves, to your recomforture. + +QUEEN ELIZABETH: +Shall I go win my daughter to thy will? + +KING RICHARD III: +And be a happy mother by the deed. + +QUEEN ELIZABETH: +I go. Write to me very shortly. +And you shall understand from me her mind. + +KING RICHARD III: +Bear her my true love's kiss; and so, farewell. +Relenting fool, and shallow, changing woman! +How now! what news? + +RATCLIFF: +My gracious sovereign, on the western coast +Rideth a puissant navy; to the shore +Throng many doubtful hollow-hearted friends, +Unarm'd, and unresolved to beat them back: +'Tis thought that Richmond is their admiral; +And there they hull, expecting but the aid +Of Buckingham to welcome them ashore. + +KING RICHARD III: +Some light-foot friend post to the Duke of Norfolk: +Ratcliff, thyself, or Catesby; where is he? + +CATESBY: +Here, my lord. + +KING RICHARD III: +Fly to the duke: +Post thou to Salisbury +When thou comest thither-- +Dull, unmindful villain, +Why stand'st thou still, and go'st not to the duke? + +CATESBY: +First, mighty sovereign, let me know your mind, +What from your grace I shall deliver to him. + +KING RICHARD III: +O, true, good Catesby: bid him levy straight +The greatest strength and power he can make, +And meet me presently at Salisbury. + +CATESBY: +I go. + +RATCLIFF: +What is't your highness' pleasure I shall do at +Salisbury? + +KING RICHARD III: +Why, what wouldst thou do there before I go? + +RATCLIFF: +Your highness told me I should post before. + +KING RICHARD III: +My mind is changed, sir, my mind is changed. +How now, what news with you? + +STANLEY: +None good, my lord, to please you with the hearing; +Nor none so bad, but it may well be told. + +KING RICHARD III: +Hoyday, a riddle! neither good nor bad! +Why dost thou run so many mile about, +When thou mayst tell thy tale a nearer way? +Once more, what news? + +STANLEY: +Richmond is on the seas. + +KING RICHARD III: +There let him sink, and be the seas on him! +White-liver'd runagate, what doth he there? + +STANLEY: +I know not, mighty sovereign, but by guess. + +KING RICHARD III: +Well, sir, as you guess, as you guess? + +STANLEY: +Stirr'd up by Dorset, Buckingham, and Ely, +He makes for England, there to claim the crown. + +KING RICHARD III: +Is the chair empty? is the sword unsway'd? +Is the king dead? the empire unpossess'd? +What heir of York is there alive but we? +And who is England's king but great York's heir? +Then, tell me, what doth he upon the sea? + +STANLEY: +Unless for that, my liege, I cannot guess. + +KING RICHARD III: +Unless for that he comes to be your liege, +You cannot guess wherefore the Welshman comes. +Thou wilt revolt, and fly to him, I fear. + +STANLEY: +No, mighty liege; therefore mistrust me not. + +KING RICHARD III: +Where is thy power, then, to beat him back? +Where are thy tenants and thy followers? +Are they not now upon the western shore. +Safe-conducting the rebels from their ships! + +STANLEY: +No, my good lord, my friends are in the north. + +KING RICHARD III: +Cold friends to Richard: what do they in the north, +When they should serve their sovereign in the west? + +STANLEY: +They have not been commanded, mighty sovereign: +Please it your majesty to give me leave, +I'll muster up my friends, and meet your grace +Where and what time your majesty shall please. + +KING RICHARD III: +Ay, ay. thou wouldst be gone to join with Richmond: +I will not trust you, sir. + +STANLEY: +Most mighty sovereign, +You have no cause to hold my friendship doubtful: +I never was nor never will be false. + +KING RICHARD III: +Well, +Go muster men; but, hear you, leave behind +Your son, George Stanley: look your faith be firm. +Or else his head's assurance is but frail. + +STANLEY: +So deal with him as I prove true to you. + +Messenger: +My gracious sovereign, now in Devonshire, +As I by friends am well advertised, +Sir Edward Courtney, and the haughty prelate +Bishop of Exeter, his brother there, +With many more confederates, are in arms. + +Second Messenger: +My liege, in Kent the Guildfords are in arms; +And every hour more competitors +Flock to their aid, and still their power increaseth. + +Third Messenger: +My lord, the army of the Duke of Buckingham-- + +KING RICHARD III: +Out on you, owls! nothing but songs of death? +Take that, until thou bring me better news. + +Third Messenger: +The news I have to tell your majesty +Is, that by sudden floods and fall of waters, +Buckingham's army is dispersed and scatter'd; +And he himself wander'd away alone, +No man knows whither. + +KING RICHARD III: +I cry thee mercy: +There is my purse to cure that blow of thine. +Hath any well-advised friend proclaim'd +Reward to him that brings the traitor in? + +Third Messenger: +Such proclamation hath been made, my liege. + +Fourth Messenger: +Sir Thomas Lovel and Lord Marquis Dorset, +'Tis said, my liege, in Yorkshire are in arms. +Yet this good comfort bring I to your grace, +The Breton navy is dispersed by tempest: +Richmond, in Yorkshire, sent out a boat +Unto the shore, to ask those on the banks +If they were his assistants, yea or no; +Who answer'd him, they came from Buckingham. +Upon his party: he, mistrusting them, +Hoisted sail and made away for Brittany. + +KING RICHARD III: +March on, march on, since we are up in arms; +If not to fight with foreign enemies, +Yet to beat down these rebels here at home. + +CATESBY: +My liege, the Duke of Buckingham is taken; +That is the best news: that the Earl of Richmond +Is with a mighty power landed at Milford, +Is colder tidings, yet they must be told. + +KING RICHARD III: +Away towards Salisbury! while we reason here, +A royal battle might be won and lost +Some one take order Buckingham be brought +To Salisbury; the rest march on with me. + +DERBY: +Sir Christopher, tell Richmond this from me: +That in the sty of this most bloody boar +My son George Stanley is frank'd up in hold: +If I revolt, off goes young George's head; +The fear of that withholds my present aid. +But, tell me, where is princely Richmond now? + +CHRISTOPHER: +At Pembroke, or at Harford-west, in Wales. + +DERBY: +What men of name resort to him? + +CHRISTOPHER: +Sir Walter Herbert, a renowned soldier; +Sir Gilbert Talbot, Sir William Stanley; +Oxford, redoubted Pembroke, Sir James Blunt, +And Rice ap Thomas with a valiant crew; +And many more of noble fame and worth: +And towards London they do bend their course, +If by the way they be not fought withal. + +DERBY: +Return unto thy lord; commend me to him: +Tell him the queen hath heartily consented +He shall espouse Elizabeth her daughter. +These letters will resolve him of my mind. Farewell. + +BUCKINGHAM: +Will not King Richard let me speak with him? + +Sheriff: +No, my good lord; therefore be patient. + +BUCKINGHAM: +Hastings, and Edward's children, Rivers, Grey, +Holy King Henry, and thy fair son Edward, +Vaughan, and all that have miscarried +By underhand corrupted foul injustice, +If that your moody discontented souls +Do through the clouds behold this present hour, +Even for revenge mock my destruction! +This is All-Souls' day, fellows, is it not? + +Sheriff: +It is, my lord. + +BUCKINGHAM: +Why, then All-Souls' day is my body's doomsday. +This is the day that, in King Edward's time, +I wish't might fall on me, when I was found +False to his children or his wife's allies +This is the day wherein I wish'd to fall +By the false faith of him I trusted most; +This, this All-Souls' day to my fearful soul +Is the determined respite of my wrongs: +That high All-Seer that I dallied with +Hath turn'd my feigned prayer on my head +And given in earnest what I begg'd in jest. +Thus doth he force the swords of wicked men +To turn their own points on their masters' bosoms: +Now Margaret's curse is fallen upon my head; +'When he,' quoth she, 'shall split thy heart with sorrow, +Remember Margaret was a prophetess.' +Come, sirs, convey me to the block of shame; +Wrong hath but wrong, and blame the due of blame. + +RICHMOND: +Fellows in arms, and my most loving friends, +Bruised underneath the yoke of tyranny, +Thus far into the bowels of the land +Have we march'd on without impediment; +And here receive we from our father Stanley +Lines of fair comfort and encouragement. +The wretched, bloody, and usurping boar, +That spoil'd your summer fields and fruitful vines, +Swills your warm blood like wash, and makes his trough +In your embowell'd bosoms, this foul swine +Lies now even in the centre of this isle, +Near to the town of Leicester, as we learn +From Tamworth thither is but one day's march. +In God's name, cheerly on, courageous friends, +To reap the harvest of perpetual peace +By this one bloody trial of sharp war. + +OXFORD: +Every man's conscience is a thousand swords, +To fight against that bloody homicide. + +HERBERT: +I doubt not but his friends will fly to us. + +BLUNT: +He hath no friends but who are friends for fear. +Which in his greatest need will shrink from him. + +RICHMOND: +All for our vantage. Then, in God's name, march: +True hope is swift, and flies with swallow's wings: +Kings it makes gods, and meaner creatures kings. + +KING RICHARD III: +Here pitch our tents, even here in Bosworth field. +My Lord of Surrey, why look you so sad? + +SURREY: +My heart is ten times lighter than my looks. + +KING RICHARD III: +My Lord of Norfolk,-- + +NORFOLK: +Here, most gracious liege. + +KING RICHARD III: +Norfolk, we must have knocks; ha! must we not? + +NORFOLK: +We must both give and take, my gracious lord. + +KING RICHARD III: +Up with my tent there! here will I lie tonight; +But where to-morrow? Well, all's one for that. +Who hath descried the number of the foe? + +NORFOLK: +Six or seven thousand is their utmost power. + +KING RICHARD III: +Why, our battalion trebles that account: +Besides, the king's name is a tower of strength, +Which they upon the adverse party want. +Up with my tent there! Valiant gentlemen, +Let us survey the vantage of the field +Call for some men of sound direction +Let's want no discipline, make no delay, +For, lords, to-morrow is a busy day. + +RICHMOND: +The weary sun hath made a golden set, +And by the bright track of his fiery car, +Gives signal, of a goodly day to-morrow. +Sir William Brandon, you shall bear my standard. +Give me some ink and paper in my tent +I'll draw the form and model of our battle, +Limit each leader to his several charge, +And part in just proportion our small strength. +My Lord of Oxford, you, Sir William Brandon, +And you, Sir Walter Herbert, stay with me. +The Earl of Pembroke keeps his regiment: +Good Captain Blunt, bear my good night to him +And by the second hour in the morning +Desire the earl to see me in my tent: +Yet one thing more, good Blunt, before thou go'st, +Where is Lord Stanley quarter'd, dost thou know? + +BLUNT: +Unless I have mista'en his colours much, +Which well I am assured I have not done, +His regiment lies half a mile at least +South from the mighty power of the king. + +RICHMOND: +If without peril it be possible, +Good Captain Blunt, bear my good-night to him, +And give him from me this most needful scroll. + +BLUNT: +Upon my life, my lord, I'll under-take it; +And so, God give you quiet rest to-night! + +RICHMOND: +Good night, good Captain Blunt. Come gentlemen, +Let us consult upon to-morrow's business +In to our tent; the air is raw and cold. + +KING RICHARD III: +What is't o'clock? + +CATESBY: +It's supper-time, my lord; +It's nine o'clock. + +KING RICHARD III: +I will not sup to-night. +Give me some ink and paper. +What, is my beaver easier than it was? +And all my armour laid into my tent? + +CATESBY: +If is, my liege; and all things are in readiness. + +KING RICHARD III: +Good Norfolk, hie thee to thy charge; +Use careful watch, choose trusty sentinels. + +NORFOLK: +I go, my lord. + +KING RICHARD III: +Stir with the lark to-morrow, gentle Norfolk. + +NORFOLK: +I warrant you, my lord. + +KING RICHARD III: +Catesby! + +CATESBY: +My lord? + +KING RICHARD III: +Send out a pursuivant at arms +To Stanley's regiment; bid him bring his power +Before sunrising, lest his son George fall +Into the blind cave of eternal night. +Fill me a bowl of wine. Give me a watch. +Saddle white Surrey for the field to-morrow. +Look that my staves be sound, and not too heavy. +Ratcliff! + +RATCLIFF: +My lord? + +KING RICHARD III: +Saw'st thou the melancholy Lord Northumberland? + +RATCLIFF: +Thomas the Earl of Surrey, and himself, +Much about cock-shut time, from troop to troop +Went through the army, cheering up the soldiers. + +KING RICHARD III: +So, I am satisfied. Give me a bowl of wine: +I have not that alacrity of spirit, +Nor cheer of mind, that I was wont to have. +Set it down. Is ink and paper ready? + +RATCLIFF: +It is, my lord. + +KING RICHARD III: +Bid my guard watch; leave me. +Ratcliff, about the mid of night come to my tent +And help to arm me. Leave me, I say. + +DERBY: +Fortune and victory sit on thy helm! + +RICHMOND: +All comfort that the dark night can afford +Be to thy person, noble father-in-law! +Tell me, how fares our loving mother? + +DERBY: +I, by attorney, bless thee from thy mother +Who prays continually for Richmond's good: +So much for that. The silent hours steal on, +And flaky darkness breaks within the east. +In brief,--for so the season bids us be,-- +Prepare thy battle early in the morning, +And put thy fortune to the arbitrement +Of bloody strokes and mortal-staring war. +I, as I may--that which I would I cannot,-- +With best advantage will deceive the time, +And aid thee in this doubtful shock of arms: +But on thy side I may not be too forward +Lest, being seen, thy brother, tender George, +Be executed in his father's sight. +Farewell: the leisure and the fearful time +Cuts off the ceremonious vows of love +And ample interchange of sweet discourse, +Which so long sunder'd friends should dwell upon: +God give us leisure for these rites of love! +Once more, adieu: be valiant, and speed well! + +RICHMOND: +Good lords, conduct him to his regiment: +I'll strive, with troubled thoughts, to take a nap, +Lest leaden slumber peise me down to-morrow, +When I should mount with wings of victory: +Once more, good night, kind lords and gentlemen. +O Thou, whose captain I account myself, +Look on my forces with a gracious eye; +Put in their hands thy bruising irons of wrath, +That they may crush down with a heavy fall +The usurping helmets of our adversaries! +Make us thy ministers of chastisement, +That we may praise thee in the victory! +To thee I do commend my watchful soul, +Ere I let fall the windows of mine eyes: +Sleeping and waking, O, defend me still! + +Ghost of Prince Edward: + +Ghost of King Henry VI: + +Ghost of CLARENCE: + +Ghost of RIVERS: + +Ghost of GREY: + +Ghost of VAUGHAN: + +All: + +Ghost of HASTINGS: + +Ghosts of young Princes: + +Ghost of LADY ANNE: + +Ghost of BUCKINGHAM: + +KING RICHARD III: +Give me another horse: bind up my wounds. +Have mercy, Jesu!--Soft! I did but dream. +O coward conscience, how dost thou afflict me! +The lights burn blue. It is now dead midnight. +Cold fearful drops stand on my trembling flesh. +What do I fear? myself? there's none else by: +Richard loves Richard; that is, I am I. +Is there a murderer here? No. Yes, I am: +Then fly. What, from myself? Great reason why: +Lest I revenge. What, myself upon myself? +Alack. I love myself. Wherefore? for any good +That I myself have done unto myself? +O, no! alas, I rather hate myself +For hateful deeds committed by myself! +I am a villain: yet I lie. I am not. +Fool, of thyself speak well: fool, do not flatter. +My conscience hath a thousand several tongues, +And every tongue brings in a several tale, +And every tale condemns me for a villain. +Perjury, perjury, in the high'st degree +Murder, stem murder, in the direst degree; +All several sins, all used in each degree, +Throng to the bar, crying all, Guilty! guilty! +I shall despair. There is no creature loves me; +And if I die, no soul shall pity me: +Nay, wherefore should they, since that I myself +Find in myself no pity to myself? +Methought the souls of all that I had murder'd +Came to my tent; and every one did threat +To-morrow's vengeance on the head of Richard. + +RATCLIFF: +My lord! + +KING RICHARD III: +'Zounds! who is there? + +RATCLIFF: +Ratcliff, my lord; 'tis I. The early village-cock +Hath twice done salutation to the morn; +Your friends are up, and buckle on their armour. + +KING RICHARD III: +O Ratcliff, I have dream'd a fearful dream! +What thinkest thou, will our friends prove all true? + +RATCLIFF: +No doubt, my lord. + +KING RICHARD III: +O Ratcliff, I fear, I fear,-- + +RATCLIFF: +Nay, good my lord, be not afraid of shadows. + +KING RICHARD III: +By the apostle Paul, shadows to-night +Have struck more terror to the soul of Richard +Than can the substance of ten thousand soldiers +Armed in proof, and led by shallow Richmond. +It is not yet near day. Come, go with me; +Under our tents I'll play the eaves-dropper, +To see if any mean to shrink from me. + +LORDS: +Good morrow, Richmond! + +RICHMOND: +Cry mercy, lords and watchful gentlemen, +That you have ta'en a tardy sluggard here. + +LORDS: +How have you slept, my lord? + +RICHMOND: +The sweetest sleep, and fairest-boding dreams +That ever enter'd in a drowsy head, +Have I since your departure had, my lords. +Methought their souls, whose bodies Richard murder'd, +Came to my tent, and cried on victory: +I promise you, my soul is very jocund +In the remembrance of so fair a dream. +How far into the morning is it, lords? + +LORDS: +Upon the stroke of four. + +RICHMOND: +Why, then 'tis time to arm and give direction. +More than I have said, loving countrymen, +The leisure and enforcement of the time +Forbids to dwell upon: yet remember this, +God and our good cause fight upon our side; +The prayers of holy saints and wronged souls, +Like high-rear'd bulwarks, stand before our faces; +Richard except, those whom we fight against +Had rather have us win than him they follow: +For what is he they follow? truly, gentlemen, +A bloody tyrant and a homicide; +One raised in blood, and one in blood establish'd; +One that made means to come by what he hath, +And slaughter'd those that were the means to help him; +Abase foul stone, made precious by the foil +Of England's chair, where he is falsely set; +One that hath ever been God's enemy: +Then, if you fight against God's enemy, +God will in justice ward you as his soldiers; +If you do sweat to put a tyrant down, +You sleep in peace, the tyrant being slain; +If you do fight against your country's foes, +Your country's fat shall pay your pains the hire; +If you do fight in safeguard of your wives, +Your wives shall welcome home the conquerors; +If you do free your children from the sword, +Your children's children quit it in your age. +Then, in the name of God and all these rights, +Advance your standards, draw your willing swords. +For me, the ransom of my bold attempt +Shall be this cold corpse on the earth's cold face; +But if I thrive, the gain of my attempt +The least of you shall share his part thereof. +Sound drums and trumpets boldly and cheerfully; +God and Saint George! Richmond and victory! + +KING RICHARD III: +What said Northumberland as touching Richmond? + +RATCLIFF: +That he was never trained up in arms. + +KING RICHARD III: +He said the truth: and what said Surrey then? + +RATCLIFF: +He smiled and said 'The better for our purpose.' + +KING RICHARD III: +He was in the right; and so indeed it is. +Ten the clock there. Give me a calendar. +Who saw the sun to-day? + +RATCLIFF: +Not I, my lord. + +KING RICHARD III: +Then he disdains to shine; for by the book +He should have braved the east an hour ago +A black day will it be to somebody. Ratcliff! + +RATCLIFF: +My lord? + +KING RICHARD III: +The sun will not be seen to-day; +The sky doth frown and lour upon our army. +I would these dewy tears were from the ground. +Not shine to-day! Why, what is that to me +More than to Richmond? for the selfsame heaven +That frowns on me looks sadly upon him. + +NORFOLK: +Arm, arm, my lord; the foe vaunts in the field. + +KING RICHARD III: +Come, bustle, bustle; caparison my horse. +Call up Lord Stanley, bid him bring his power: +I will lead forth my soldiers to the plain, +And thus my battle shall be ordered: +My foreward shall be drawn out all in length, +Consisting equally of horse and foot; +Our archers shall be placed in the midst +John Duke of Norfolk, Thomas Earl of Surrey, +Shall have the leading of this foot and horse. +They thus directed, we will follow +In the main battle, whose puissance on either side +Shall be well winged with our chiefest horse. +This, and Saint George to boot! What think'st thou, Norfolk? + +NORFOLK: +A good direction, warlike sovereign. +This found I on my tent this morning. + +KING RICHARD III: + +Messenger: +My lord, he doth deny to come. + +KING RICHARD III: +Off with his son George's head! + +NORFOLK: +My lord, the enemy is past the marsh +After the battle let George Stanley die. + +KING RICHARD III: +A thousand hearts are great within my bosom: +Advance our standards, set upon our foes +Our ancient word of courage, fair Saint George, +Inspire us with the spleen of fiery dragons! +Upon them! victory sits on our helms. + +CATESBY: +Rescue, my Lord of Norfolk, rescue, rescue! +The king enacts more wonders than a man, +Daring an opposite to every danger: +His horse is slain, and all on foot he fights, +Seeking for Richmond in the throat of death. +Rescue, fair lord, or else the day is lost! + +KING RICHARD III: +A horse! a horse! my kingdom for a horse! + +CATESBY: +Withdraw, my lord; I'll help you to a horse. + +KING RICHARD III: +Slave, I have set my life upon a cast, +And I will stand the hazard of the die: +I think there be six Richmonds in the field; +Five have I slain to-day instead of him. +A horse! a horse! my kingdom for a horse! + +RICHMOND: +God and your arms be praised, victorious friends, +The day is ours, the bloody dog is dead. + +DERBY: +Courageous Richmond, well hast thou acquit thee. +Lo, here, this long-usurped royalty +From the dead temples of this bloody wretch +Have I pluck'd off, to grace thy brows withal: +Wear it, enjoy it, and make much of it. + +RICHMOND: +Great God of heaven, say Amen to all! +But, tell me, is young George Stanley living? + +DERBY: +He is, my lord, and safe in Leicester town; +Whither, if it please you, we may now withdraw us. + +RICHMOND: +What men of name are slain on either side? + +DERBY: +John Duke of Norfolk, Walter Lord Ferrers, +Sir Robert Brakenbury, and Sir William Brandon. + +RICHMOND: +Inter their bodies as becomes their births: +Proclaim a pardon to the soldiers fled +That in submission will return to us: +And then, as we have ta'en the sacrament, +We will unite the white rose and the red: +Smile heaven upon this fair conjunction, +That long have frown'd upon their enmity! +What traitor hears me, and says not amen? +England hath long been mad, and scarr'd herself; +The brother blindly shed the brother's blood, +The father rashly slaughter'd his own son, +The son, compell'd, been butcher to the sire: +All this divided York and Lancaster, +Divided in their dire division, +O, now, let Richmond and Elizabeth, +The true succeeders of each royal house, +By God's fair ordinance conjoin together! +And let their heirs, God, if thy will be so. +Enrich the time to come with smooth-faced peace, +With smiling plenty and fair prosperous days! +Abate the edge of traitors, gracious Lord, +That would reduce these bloody days again, +And make poor England weep in streams of blood! +Let them not live to taste this land's increase +That would with treason wound this fair land's peace! +Now civil wounds are stopp'd, peace lives again: +That she may long live here, God say amen! + +KING RICHARD II: +Old John of Gaunt, time-honour'd Lancaster, +Hast thou, according to thy oath and band, +Brought hither Henry Hereford thy bold son, +Here to make good the boisterous late appeal, +Which then our leisure would not let us hear, +Against the Duke of Norfolk, Thomas Mowbray? + +JOHN OF GAUNT: +I have, my liege. + +KING RICHARD II: +Tell me, moreover, hast thou sounded him, +If he appeal the duke on ancient malice; +Or worthily, as a good subject should, +On some known ground of treachery in him? + +JOHN OF GAUNT: +As near as I could sift him on that argument, +On some apparent danger seen in him +Aim'd at your highness, no inveterate malice. + +KING RICHARD II: +Then call them to our presence; face to face, +And frowning brow to brow, ourselves will hear +The accuser and the accused freely speak: +High-stomach'd are they both, and full of ire, +In rage deaf as the sea, hasty as fire. + +HENRY BOLINGBROKE: +Many years of happy days befal +My gracious sovereign, my most loving liege! + +THOMAS MOWBRAY: +Each day still better other's happiness; +Until the heavens, envying earth's good hap, +Add an immortal title to your crown! + +KING RICHARD II: +We thank you both: yet one but flatters us, +As well appeareth by the cause you come; +Namely to appeal each other of high treason. +Cousin of Hereford, what dost thou object +Against the Duke of Norfolk, Thomas Mowbray? + +HENRY BOLINGBROKE: +First, heaven be the record to my speech! +In the devotion of a subject's love, +Tendering the precious safety of my prince, +And free from other misbegotten hate, +Come I appellant to this princely presence. +Now, Thomas Mowbray, do I turn to thee, +And mark my greeting well; for what I speak +My body shall make good upon this earth, +Or my divine soul answer it in heaven. +Thou art a traitor and a miscreant, +Too good to be so and too bad to live, +Since the more fair and crystal is the sky, +The uglier seem the clouds that in it fly. +Once more, the more to aggravate the note, +With a foul traitor's name stuff I thy throat; +And wish, so please my sovereign, ere I move, +What my tongue speaks my right drawn sword may prove. + +THOMAS MOWBRAY: +Let not my cold words here accuse my zeal: +'Tis not the trial of a woman's war, +The bitter clamour of two eager tongues, +Can arbitrate this cause betwixt us twain; +The blood is hot that must be cool'd for this: +Yet can I not of such tame patience boast +As to be hush'd and nought at all to say: +First, the fair reverence of your highness curbs me +From giving reins and spurs to my free speech; +Which else would post until it had return'd +These terms of treason doubled down his throat. +Setting aside his high blood's royalty, +And let him be no kinsman to my liege, +I do defy him, and I spit at him; +Call him a slanderous coward and a villain: +Which to maintain I would allow him odds, +And meet him, were I tied to run afoot +Even to the frozen ridges of the Alps, +Or any other ground inhabitable, +Where ever Englishman durst set his foot. +Mean time let this defend my loyalty, +By all my hopes, most falsely doth he lie. + +HENRY BOLINGBROKE: +Pale trembling coward, there I throw my gage, +Disclaiming here the kindred of the king, +And lay aside my high blood's royalty, +Which fear, not reverence, makes thee to except. +If guilty dread have left thee so much strength +As to take up mine honour's pawn, then stoop: +By that and all the rites of knighthood else, +Will I make good against thee, arm to arm, +What I have spoke, or thou canst worse devise. + +THOMAS MOWBRAY: +I take it up; and by that sword I swear +Which gently laid my knighthood on my shoulder, +I'll answer thee in any fair degree, +Or chivalrous design of knightly trial: +And when I mount, alive may I not light, +If I be traitor or unjustly fight! + +KING RICHARD II: +What doth our cousin lay to Mowbray's charge? +It must be great that can inherit us +So much as of a thought of ill in him. + +HENRY BOLINGBROKE: +Look, what I speak, my life shall prove it true; +That Mowbray hath received eight thousand nobles +In name of lendings for your highness' soldiers, +The which he hath detain'd for lewd employments, +Like a false traitor and injurious villain. +Besides I say and will in battle prove, +Or here or elsewhere to the furthest verge +That ever was survey'd by English eye, +That all the treasons for these eighteen years +Complotted and contrived in this land +Fetch from false Mowbray their first head and spring. +Further I say and further will maintain +Upon his bad life to make all this good, +That he did plot the Duke of Gloucester's death, +Suggest his soon-believing adversaries, +And consequently, like a traitor coward, +Sluiced out his innocent soul through streams of blood: +Which blood, like sacrificing Abel's, cries, +Even from the tongueless caverns of the earth, +To me for justice and rough chastisement; +And, by the glorious worth of my descent, +This arm shall do it, or this life be spent. + +KING RICHARD II: +How high a pitch his resolution soars! +Thomas of Norfolk, what say'st thou to this? + +THOMAS MOWBRAY: +O, let my sovereign turn away his face +And bid his ears a little while be deaf, +Till I have told this slander of his blood, +How God and good men hate so foul a liar. + +KING RICHARD II: +Mowbray, impartial are our eyes and ears: +Were he my brother, nay, my kingdom's heir, +As he is but my father's brother's son, +Now, by my sceptre's awe, I make a vow, +Such neighbour nearness to our sacred blood +Should nothing privilege him, nor partialize +The unstooping firmness of my upright soul: +He is our subject, Mowbray; so art thou: +Free speech and fearless I to thee allow. + +THOMAS MOWBRAY: +Then, Bolingbroke, as low as to thy heart, +Through the false passage of thy throat, thou liest. +Three parts of that receipt I had for Calais +Disbursed I duly to his highness' soldiers; +The other part reserved I by consent, +For that my sovereign liege was in my debt +Upon remainder of a dear account, +Since last I went to France to fetch his queen: +Now swallow down that lie. For Gloucester's death, +I slew him not; but to my own disgrace +Neglected my sworn duty in that case. +For you, my noble Lord of Lancaster, +The honourable father to my foe +Once did I lay an ambush for your life, +A trespass that doth vex my grieved soul +But ere I last received the sacrament +I did confess it, and exactly begg'd +Your grace's pardon, and I hope I had it. +This is my fault: as for the rest appeall'd, +It issues from the rancour of a villain, +A recreant and most degenerate traitor +Which in myself I boldly will defend; +And interchangeably hurl down my gage +Upon this overweening traitor's foot, +To prove myself a loyal gentleman +Even in the best blood chamber'd in his bosom. +In haste whereof, most heartily I pray +Your highness to assign our trial day. + +KING RICHARD II: +Wrath-kindled gentlemen, be ruled by me; +Let's purge this choler without letting blood: +This we prescribe, though no physician; +Deep malice makes too deep incision; +Forget, forgive; conclude and be agreed; +Our doctors say this is no month to bleed. +Good uncle, let this end where it begun; +We'll calm the Duke of Norfolk, you your son. + +JOHN OF GAUNT: +To be a make-peace shall become my age: +Throw down, my son, the Duke of Norfolk's gage. + +KING RICHARD II: +And, Norfolk, throw down his. + +JOHN OF GAUNT: +When, Harry, when? +Obedience bids I should not bid again. + +KING RICHARD II: +Norfolk, throw down, we bid; there is no boot. + +THOMAS MOWBRAY: +Myself I throw, dread sovereign, at thy foot. +My life thou shalt command, but not my shame: +The one my duty owes; but my fair name, +Despite of death that lives upon my grave, +To dark dishonour's use thou shalt not have. +I am disgraced, impeach'd and baffled here, +Pierced to the soul with slander's venom'd spear, +The which no balm can cure but his heart-blood +Which breathed this poison. + +KING RICHARD II: +Rage must be withstood: +Give me his gage: lions make leopards tame. + +THOMAS MOWBRAY: +Yea, but not change his spots: take but my shame. +And I resign my gage. My dear dear lord, +The purest treasure mortal times afford +Is spotless reputation: that away, +Men are but gilded loam or painted clay. +A jewel in a ten-times-barr'd-up chest +Is a bold spirit in a loyal breast. +Mine honour is my life; both grow in one: +Take honour from me, and my life is done: +Then, dear my liege, mine honour let me try; +In that I live and for that will I die. + +KING RICHARD II: +Cousin, throw up your gage; do you begin. + +HENRY BOLINGBROKE: +O, God defend my soul from such deep sin! +Shall I seem crest-fall'n in my father's sight? +Or with pale beggar-fear impeach my height +Before this out-dared dastard? Ere my tongue +Shall wound my honour with such feeble wrong, +Or sound so base a parle, my teeth shall tear +The slavish motive of recanting fear, +And spit it bleeding in his high disgrace, +Where shame doth harbour, even in Mowbray's face. + +KING RICHARD II: +We were not born to sue, but to command; +Which since we cannot do to make you friends, +Be ready, as your lives shall answer it, +At Coventry, upon Saint Lambert's day: +There shall your swords and lances arbitrate +The swelling difference of your settled hate: +Since we can not atone you, we shall see +Justice design the victor's chivalry. +Lord marshal, command our officers at arms +Be ready to direct these home alarms. + +JOHN OF GAUNT: +Alas, the part I had in Woodstock's blood +Doth more solicit me than your exclaims, +To stir against the butchers of his life! +But since correction lieth in those hands +Which made the fault that we cannot correct, +Put we our quarrel to the will of heaven; +Who, when they see the hours ripe on earth, +Will rain hot vengeance on offenders' heads. + +DUCHESS: +Finds brotherhood in thee no sharper spur? +Hath love in thy old blood no living fire? +Edward's seven sons, whereof thyself art one, +Were as seven vials of his sacred blood, +Or seven fair branches springing from one root: +Some of those seven are dried by nature's course, +Some of those branches by the Destinies cut; +But Thomas, my dear lord, my life, my Gloucester, +One vial full of Edward's sacred blood, +One flourishing branch of his most royal root, +Is crack'd, and all the precious liquor spilt, +Is hack'd down, and his summer leaves all faded, +By envy's hand and murder's bloody axe. +Ah, Gaunt, his blood was thine! that bed, that womb, +That metal, that self-mould, that fashion'd thee +Made him a man; and though thou livest and breathest, +Yet art thou slain in him: thou dost consent +In some large measure to thy father's death, +In that thou seest thy wretched brother die, +Who was the model of thy father's life. +Call it not patience, Gaunt; it is despair: +In suffering thus thy brother to be slaughter'd, +Thou showest the naked pathway to thy life, +Teaching stern murder how to butcher thee: +That which in mean men we intitle patience +Is pale cold cowardice in noble breasts. +What shall I say? to safeguard thine own life, +The best way is to venge my Gloucester's death. + +JOHN OF GAUNT: +God's is the quarrel; for God's substitute, +His deputy anointed in His sight, +Hath caused his death: the which if wrongfully, +Let heaven revenge; for I may never lift +An angry arm against His minister. + +DUCHESS: +Where then, alas, may I complain myself? + +JOHN OF GAUNT: +To God, the widow's champion and defence. + +DUCHESS: +Why, then, I will. Farewell, old Gaunt. +Thou goest to Coventry, there to behold +Our cousin Hereford and fell Mowbray fight: +O, sit my husband's wrongs on Hereford's spear, +That it may enter butcher Mowbray's breast! +Or, if misfortune miss the first career, +Be Mowbray's sins so heavy in his bosom, +They may break his foaming courser's back, +And throw the rider headlong in the lists, +A caitiff recreant to my cousin Hereford! +Farewell, old Gaunt: thy sometimes brother's wife +With her companion grief must end her life. + +JOHN OF GAUNT: +Sister, farewell; I must to Coventry: +As much good stay with thee as go with me! + +DUCHESS: +Yet one word more: grief boundeth where it falls, +Not with the empty hollowness, but weight: +I take my leave before I have begun, +For sorrow ends not when it seemeth done. +Commend me to thy brother, Edmund York. +Lo, this is all:--nay, yet depart not so; +Though this be all, do not so quickly go; +I shall remember more. Bid him--ah, what?-- +With all good speed at Plashy visit me. +Alack, and what shall good old York there see +But empty lodgings and unfurnish'd walls, +Unpeopled offices, untrodden stones? +And what hear there for welcome but my groans? +Therefore commend me; let him not come there, +To seek out sorrow that dwells every where. +Desolate, desolate, will I hence and die: +The last leave of thee takes my weeping eye. + +Lord Marshal: +My Lord Aumerle, is Harry Hereford arm'd? + +DUKE OF AUMERLE: +Yea, at all points; and longs to enter in. + +Lord Marshal: +The Duke of Norfolk, sprightfully and bold, +Stays but the summons of the appellant's trumpet. + +DUKE OF AUMERLE: +Why, then, the champions are prepared, and stay +For nothing but his majesty's approach. + +KING RICHARD II: +Marshal, demand of yonder champion +The cause of his arrival here in arms: +Ask him his name and orderly proceed +To swear him in the justice of his cause. + +Lord Marshal: +In God's name and the king's, say who thou art +And why thou comest thus knightly clad in arms, +Against what man thou comest, and what thy quarrel: +Speak truly, on thy knighthood and thy oath; +As so defend thee heaven and thy valour! + +THOMAS MOWBRAY: +My name is Thomas Mowbray, Duke of Norfolk; +Who hither come engaged by my oath-- +Which God defend a knight should violate!-- +Both to defend my loyalty and truth +To God, my king and my succeeding issue, +Against the Duke of Hereford that appeals me +And, by the grace of God and this mine arm, +To prove him, in defending of myself, +A traitor to my God, my king, and me: +And as I truly fight, defend me heaven! + +KING RICHARD II: +Marshal, ask yonder knight in arms, +Both who he is and why he cometh hither +Thus plated in habiliments of war, +And formally, according to our law, +Depose him in the justice of his cause. + +Lord Marshal: +What is thy name? and wherefore comest thou hither, +Before King Richard in his royal lists? +Against whom comest thou? and what's thy quarrel? +Speak like a true knight, so defend thee heaven! + +HENRY BOLINGBROKE: +Harry of Hereford, Lancaster and Derby +Am I; who ready here do stand in arms, +To prove, by God's grace and my body's valour, +In lists, on Thomas Mowbray, Duke of Norfolk, +That he is a traitor, foul and dangerous, +To God of heaven, King Richard and to me; +And as I truly fight, defend me heaven! + +Lord Marshal: +On pain of death, no person be so bold +Or daring-hardy as to touch the lists, +Except the marshal and such officers +Appointed to direct these fair designs. + +HENRY BOLINGBROKE: +Lord marshal, let me kiss my sovereign's hand, +And bow my knee before his majesty: +For Mowbray and myself are like two men +That vow a long and weary pilgrimage; +Then let us take a ceremonious leave +And loving farewell of our several friends. + +Lord Marshal: +The appellant in all duty greets your highness, +And craves to kiss your hand and take his leave. + +KING RICHARD II: +We will descend and fold him in our arms. +Cousin of Hereford, as thy cause is right, +So be thy fortune in this royal fight! +Farewell, my blood; which if to-day thou shed, +Lament we may, but not revenge thee dead. + +HENRY BOLINGBROKE: +O let no noble eye profane a tear +For me, if I be gored with Mowbray's spear: +As confident as is the falcon's flight +Against a bird, do I with Mowbray fight. +My loving lord, I take my leave of you; +Of you, my noble cousin, Lord Aumerle; +Not sick, although I have to do with death, +But lusty, young, and cheerly drawing breath. +Lo, as at English feasts, so I regreet +The daintiest last, to make the end most sweet: +O thou, the earthly author of my blood, +Whose youthful spirit, in me regenerate, +Doth with a twofold vigour lift me up +To reach at victory above my head, +Add proof unto mine armour with thy prayers; +And with thy blessings steel my lance's point, +That it may enter Mowbray's waxen coat, +And furbish new the name of John a Gaunt, +Even in the lusty havior of his son. + +JOHN OF GAUNT: +God in thy good cause make thee prosperous! +Be swift like lightning in the execution; +And let thy blows, doubly redoubled, +Fall like amazing thunder on the casque +Of thy adverse pernicious enemy: +Rouse up thy youthful blood, be valiant and live. + +HENRY BOLINGBROKE: +Mine innocency and Saint George to thrive! + +THOMAS MOWBRAY: +However God or fortune cast my lot, +There lives or dies, true to King Richard's throne, +A loyal, just and upright gentleman: +Never did captive with a freer heart +Cast off his chains of bondage and embrace +His golden uncontroll'd enfranchisement, +More than my dancing soul doth celebrate +This feast of battle with mine adversary. +Most mighty liege, and my companion peers, +Take from my mouth the wish of happy years: +As gentle and as jocund as to jest +Go I to fight: truth hath a quiet breast. + +KING RICHARD II: +Farewell, my lord: securely I espy +Virtue with valour couched in thine eye. +Order the trial, marshal, and begin. + +Lord Marshal: +Harry of Hereford, Lancaster and Derby, +Receive thy lance; and God defend the right! + +HENRY BOLINGBROKE: +Strong as a tower in hope, I cry amen. + +Lord Marshal: +Go bear this lance to Thomas, Duke of Norfolk. + +First Herald: +Harry of Hereford, Lancaster and Derby, +Stands here for God, his sovereign and himself, +On pain to be found false and recreant, +To prove the Duke of Norfolk, Thomas Mowbray, +A traitor to his God, his king and him; +And dares him to set forward to the fight. + +Second Herald: +Here standeth Thomas Mowbray, Duke of Norfolk, +On pain to be found false and recreant, +Both to defend himself and to approve +Henry of Hereford, Lancaster, and Derby, +To God, his sovereign and to him disloyal; +Courageously and with a free desire +Attending but the signal to begin. + +Lord Marshal: +Sound, trumpets; and set forward, combatants. +Stay, the king hath thrown his warder down. + +KING RICHARD II: +Let them lay by their helmets and their spears, +And both return back to their chairs again: +Withdraw with us: and let the trumpets sound +While we return these dukes what we decree. +Draw near, +And list what with our council we have done. +For that our kingdom's earth should not be soil'd +With that dear blood which it hath fostered; +And for our eyes do hate the dire aspect +Of civil wounds plough'd up with neighbours' sword; +And for we think the eagle-winged pride +Of sky-aspiring and ambitious thoughts, +With rival-hating envy, set on you +To wake our peace, which in our country's cradle +Draws the sweet infant breath of gentle sleep; +Which so roused up with boisterous untuned drums, +With harsh resounding trumpets' dreadful bray, +And grating shock of wrathful iron arms, +Might from our quiet confines fright fair peace +And make us wade even in our kindred's blood, +Therefore, we banish you our territories: +You, cousin Hereford, upon pain of life, +Till twice five summers have enrich'd our fields +Shall not regreet our fair dominions, +But tread the stranger paths of banishment. + +HENRY BOLINGBROKE: +Your will be done: this must my comfort be, +Sun that warms you here shall shine on me; +And those his golden beams to you here lent +Shall point on me and gild my banishment. + +KING RICHARD II: +Norfolk, for thee remains a heavier doom, +Which I with some unwillingness pronounce: +The sly slow hours shall not determinate +The dateless limit of thy dear exile; +The hopeless word of 'never to return' +Breathe I against thee, upon pain of life. + +THOMAS MOWBRAY: +A heavy sentence, my most sovereign liege, +And all unlook'd for from your highness' mouth: +A dearer merit, not so deep a maim +As to be cast forth in the common air, +Have I deserved at your highness' hands. +The language I have learn'd these forty years, +My native English, now I must forego: +And now my tongue's use is to me no more +Than an unstringed viol or a harp, +Or like a cunning instrument cased up, +Or, being open, put into his hands +That knows no touch to tune the harmony: +Within my mouth you have engaol'd my tongue, +Doubly portcullis'd with my teeth and lips; +And dull unfeeling barren ignorance +Is made my gaoler to attend on me. +I am too old to fawn upon a nurse, +Too far in years to be a pupil now: +What is thy sentence then but speechless death, +Which robs my tongue from breathing native breath? + +KING RICHARD II: +It boots thee not to be compassionate: +After our sentence plaining comes too late. + +THOMAS MOWBRAY: +Then thus I turn me from my country's light, +To dwell in solemn shades of endless night. + +KING RICHARD II: +Return again, and take an oath with thee. +Lay on our royal sword your banish'd hands; +Swear by the duty that you owe to God-- +Our part therein we banish with yourselves-- +To keep the oath that we administer: +You never shall, so help you truth and God! +Embrace each other's love in banishment; +Nor never look upon each other's face; +Nor never write, regreet, nor reconcile +This louring tempest of your home-bred hate; +Nor never by advised purpose meet +To plot, contrive, or complot any ill +'Gainst us, our state, our subjects, or our land. + +HENRY BOLINGBROKE: +I swear. + +THOMAS MOWBRAY: +And I, to keep all this. + +HENRY BOLINGBROKE: +Norfolk, so far as to mine enemy:-- +By this time, had the king permitted us, +One of our souls had wander'd in the air. +Banish'd this frail sepulchre of our flesh, +As now our flesh is banish'd from this land: +Confess thy treasons ere thou fly the realm; +Since thou hast far to go, bear not along +The clogging burthen of a guilty soul. + +THOMAS MOWBRAY: +No, Bolingbroke: if ever I were traitor, +My name be blotted from the book of life, +And I from heaven banish'd as from hence! +But what thou art, God, thou, and I do know; +And all too soon, I fear, the king shall rue. +Farewell, my liege. Now no way can I stray; +Save back to England, all the world's my way. + +KING RICHARD II: +Uncle, even in the glasses of thine eyes +I see thy grieved heart: thy sad aspect +Hath from the number of his banish'd years +Pluck'd four away. +Six frozen winter spent, +Return with welcome home from banishment. + +HENRY BOLINGBROKE: +How long a time lies in one little word! +Four lagging winters and four wanton springs +End in a word: such is the breath of kings. + +JOHN OF GAUNT: +I thank my liege, that in regard of me +He shortens four years of my son's exile: +But little vantage shall I reap thereby; +For, ere the six years that he hath to spend +Can change their moons and bring their times about +My oil-dried lamp and time-bewasted light +Shall be extinct with age and endless night; +My inch of taper will be burnt and done, +And blindfold death not let me see my son. + +KING RICHARD II: +Why uncle, thou hast many years to live. + +JOHN OF GAUNT: +But not a minute, king, that thou canst give: +Shorten my days thou canst with sullen sorrow, +And pluck nights from me, but not lend a morrow; +Thou canst help time to furrow me with age, +But stop no wrinkle in his pilgrimage; +Thy word is current with him for my death, +But dead, thy kingdom cannot buy my breath. + +KING RICHARD II: +Thy son is banish'd upon good advice, +Whereto thy tongue a party-verdict gave: +Why at our justice seem'st thou then to lour? + +JOHN OF GAUNT: +Things sweet to taste prove in digestion sour. +You urged me as a judge; but I had rather +You would have bid me argue like a father. +O, had it been a stranger, not my child, +To smooth his fault I should have been more mild: +A partial slander sought I to avoid, +And in the sentence my own life destroy'd. +Alas, I look'd when some of you should say, +I was too strict to make mine own away; +But you gave leave to my unwilling tongue +Against my will to do myself this wrong. + +KING RICHARD II: +Cousin, farewell; and, uncle, bid him so: +Six years we banish him, and he shall go. + +DUKE OF AUMERLE: +Cousin, farewell: what presence must not know, +From where you do remain let paper show. + +Lord Marshal: +My lord, no leave take I; for I will ride, +As far as land will let me, by your side. + +JOHN OF GAUNT: +O, to what purpose dost thou hoard thy words, +That thou return'st no greeting to thy friends? + +HENRY BOLINGBROKE: +I have too few to take my leave of you, +When the tongue's office should be prodigal +To breathe the abundant dolour of the heart. + +JOHN OF GAUNT: +Thy grief is but thy absence for a time. + +HENRY BOLINGBROKE: +Joy absent, grief is present for that time. + +JOHN OF GAUNT: +What is six winters? they are quickly gone. + +HENRY BOLINGBROKE: +To men in joy; but grief makes one hour ten. + +JOHN OF GAUNT: +Call it a travel that thou takest for pleasure. + +HENRY BOLINGBROKE: +My heart will sigh when I miscall it so, +Which finds it an inforced pilgrimage. + +JOHN OF GAUNT: +The sullen passage of thy weary steps +Esteem as foil wherein thou art to set +The precious jewel of thy home return. + +HENRY BOLINGBROKE: +Nay, rather, every tedious stride I make +Will but remember me what a deal of world +I wander from the jewels that I love. +Must I not serve a long apprenticehood +To foreign passages, and in the end, +Having my freedom, boast of nothing else +But that I was a journeyman to grief? + +JOHN OF GAUNT: +All places that the eye of heaven visits +Are to a wise man ports and happy havens. +Teach thy necessity to reason thus; +There is no virtue like necessity. +Think not the king did banish thee, +But thou the king. Woe doth the heavier sit, +Where it perceives it is but faintly borne. +Go, say I sent thee forth to purchase honour +And not the king exiled thee; or suppose +Devouring pestilence hangs in our air +And thou art flying to a fresher clime: +Look, what thy soul holds dear, imagine it +To lie that way thou go'st, not whence thou comest: +Suppose the singing birds musicians, +The grass whereon thou tread'st the presence strew'd, +The flowers fair ladies, and thy steps no more +Than a delightful measure or a dance; +For gnarling sorrow hath less power to bite +The man that mocks at it and sets it light. + +HENRY BOLINGBROKE: +O, who can hold a fire in his hand +By thinking on the frosty Caucasus? +Or cloy the hungry edge of appetite +By bare imagination of a feast? +Or wallow naked in December snow +By thinking on fantastic summer's heat? +O, no! the apprehension of the good +Gives but the greater feeling to the worse: +Fell sorrow's tooth doth never rankle more +Than when he bites, but lanceth not the sore. + +JOHN OF GAUNT: +Come, come, my son, I'll bring thee on thy way: +Had I thy youth and cause, I would not stay. + +HENRY BOLINGBROKE: +Then, England's ground, farewell; sweet soil, adieu; +My mother, and my nurse, that bears me yet! +Where'er I wander, boast of this I can, +Though banish'd, yet a trueborn Englishman. + +KING RICHARD II: +We did observe. Cousin Aumerle, +How far brought you high Hereford on his way? + +DUKE OF AUMERLE: +I brought high Hereford, if you call him so, +But to the next highway, and there I left him. + +KING RICHARD II: +And say, what store of parting tears were shed? + +DUKE OF AUMERLE: +Faith, none for me; except the north-east wind, +Which then blew bitterly against our faces, +Awaked the sleeping rheum, and so by chance +Did grace our hollow parting with a tear. + +KING RICHARD II: +What said our cousin when you parted with him? + +DUKE OF AUMERLE: +'Farewell:' +And, for my heart disdained that my tongue +Should so profane the word, that taught me craft +To counterfeit oppression of such grief +That words seem'd buried in my sorrow's grave. +Marry, would the word 'farewell' have lengthen'd hours +And added years to his short banishment, +He should have had a volume of farewells; +But since it would not, he had none of me. + +KING RICHARD II: +He is our cousin, cousin; but 'tis doubt, +When time shall call him home from banishment, +Whether our kinsman come to see his friends. +Ourself and Bushy, Bagot here and Green +Observed his courtship to the common people; +How he did seem to dive into their hearts +With humble and familiar courtesy, +What reverence he did throw away on slaves, +Wooing poor craftsmen with the craft of smiles +And patient underbearing of his fortune, +As 'twere to banish their affects with him. +Off goes his bonnet to an oyster-wench; +A brace of draymen bid God speed him well +And had the tribute of his supple knee, +With 'Thanks, my countrymen, my loving friends;' +As were our England in reversion his, +And he our subjects' next degree in hope. + +GREEN: +Well, he is gone; and with him go these thoughts. +Now for the rebels which stand out in Ireland, +Expedient manage must be made, my liege, +Ere further leisure yield them further means +For their advantage and your highness' loss. + +KING RICHARD II: +We will ourself in person to this war: +And, for our coffers, with too great a court +And liberal largess, are grown somewhat light, +We are inforced to farm our royal realm; +The revenue whereof shall furnish us +For our affairs in hand: if that come short, +Our substitutes at home shall have blank charters; +Whereto, when they shall know what men are rich, +They shall subscribe them for large sums of gold +And send them after to supply our wants; +For we will make for Ireland presently. +Bushy, what news? + +BUSHY: +Old John of Gaunt is grievous sick, my lord, +Suddenly taken; and hath sent post haste +To entreat your majesty to visit him. + +KING RICHARD II: +Where lies he? + +BUSHY: +At Ely House. + +KING RICHARD II: +Now put it, God, in the physician's mind +To help him to his grave immediately! +The lining of his coffers shall make coats +To deck our soldiers for these Irish wars. +Come, gentlemen, let's all go visit him: +Pray God we may make haste, and come too late! + +All: +Amen. + +JOHN OF GAUNT: +Will the king come, that I may breathe my last +In wholesome counsel to his unstaid youth? + +DUKE OF YORK: +Vex not yourself, nor strive not with your breath; +For all in vain comes counsel to his ear. + +JOHN OF GAUNT: +O, but they say the tongues of dying men +Enforce attention like deep harmony: +Where words are scarce, they are seldom spent in vain, +For they breathe truth that breathe their words in pain. +He that no more must say is listen'd more +Than they whom youth and ease have taught to glose; +More are men's ends mark'd than their lives before: +The setting sun, and music at the close, +As the last taste of sweets, is sweetest last, +Writ in remembrance more than things long past: +Though Richard my life's counsel would not hear, +My death's sad tale may yet undeaf his ear. + +DUKE OF YORK: +No; it is stopp'd with other flattering sounds, +As praises, of whose taste the wise are fond, +Lascivious metres, to whose venom sound +The open ear of youth doth always listen; +Report of fashions in proud Italy, +Whose manners still our tardy apish nation +Limps after in base imitation. +Where doth the world thrust forth a vanity-- +So it be new, there's no respect how vile-- +That is not quickly buzzed into his ears? +Then all too late comes counsel to be heard, +Where will doth mutiny with wit's regard. +Direct not him whose way himself will choose: +'Tis breath thou lack'st, and that breath wilt thou lose. + +JOHN OF GAUNT: +Methinks I am a prophet new inspired +And thus expiring do foretell of him: +His rash fierce blaze of riot cannot last, +For violent fires soon burn out themselves; +Small showers last long, but sudden storms are short; +He tires betimes that spurs too fast betimes; +With eager feeding food doth choke the feeder: +Light vanity, insatiate cormorant, +Consuming means, soon preys upon itself. +This royal throne of kings, this scepter'd isle, +This earth of majesty, this seat of Mars, +This other Eden, demi-paradise, +This fortress built by Nature for herself +Against infection and the hand of war, +This happy breed of men, this little world, +This precious stone set in the silver sea, +Which serves it in the office of a wall, +Or as a moat defensive to a house, +Against the envy of less happier lands, +This blessed plot, this earth, this realm, this England, +This nurse, this teeming womb of royal kings, +Fear'd by their breed and famous by their birth, +Renowned for their deeds as far from home, +For Christian service and true chivalry, +As is the sepulchre in stubborn Jewry, +Of the world's ransom, blessed Mary's Son, +This land of such dear souls, this dear dear land, +Dear for her reputation through the world, +Is now leased out, I die pronouncing it, +Like to a tenement or pelting farm: +England, bound in with the triumphant sea +Whose rocky shore beats back the envious siege +Of watery Neptune, is now bound in with shame, +With inky blots and rotten parchment bonds: +That England, that was wont to conquer others, +Hath made a shameful conquest of itself. +Ah, would the scandal vanish with my life, +How happy then were my ensuing death! + +DUKE OF YORK: +The king is come: deal mildly with his youth; +For young hot colts being raged do rage the more. + +QUEEN: +How fares our noble uncle, Lancaster? + +KING RICHARD II: +What comfort, man? how is't with aged Gaunt? + +JOHN OF GAUNT: +O how that name befits my composition! +Old Gaunt indeed, and gaunt in being old: +Within me grief hath kept a tedious fast; +And who abstains from meat that is not gaunt? +For sleeping England long time have I watch'd; +Watching breeds leanness, leanness is all gaunt: +The pleasure that some fathers feed upon, +Is my strict fast; I mean, my children's looks; +And therein fasting, hast thou made me gaunt: +Gaunt am I for the grave, gaunt as a grave, +Whose hollow womb inherits nought but bones. + +KING RICHARD II: +Can sick men play so nicely with their names? + +JOHN OF GAUNT: +No, misery makes sport to mock itself: +Since thou dost seek to kill my name in me, +I mock my name, great king, to flatter thee. + +KING RICHARD II: +Should dying men flatter with those that live? + +JOHN OF GAUNT: +No, no, men living flatter those that die. + +KING RICHARD II: +Thou, now a-dying, say'st thou flatterest me. + +JOHN OF GAUNT: +O, no! thou diest, though I the sicker be. + +KING RICHARD II: +I am in health, I breathe, and see thee ill. + +JOHN OF GAUNT: +Now He that made me knows I see thee ill; +Ill in myself to see, and in thee seeing ill. +Thy death-bed is no lesser than thy land +Wherein thou liest in reputation sick; +And thou, too careless patient as thou art, +Commit'st thy anointed body to the cure +Of those physicians that first wounded thee: +A thousand flatterers sit within thy crown, +Whose compass is no bigger than thy head; +And yet, incaged in so small a verge, +The waste is no whit lesser than thy land. +O, had thy grandsire with a prophet's eye +Seen how his son's son should destroy his sons, +From forth thy reach he would have laid thy shame, +Deposing thee before thou wert possess'd, +Which art possess'd now to depose thyself. +Why, cousin, wert thou regent of the world, +It were a shame to let this land by lease; +But for thy world enjoying but this land, +Is it not more than shame to shame it so? +Landlord of England art thou now, not king: +Thy state of law is bondslave to the law; And thou-- + +KING RICHARD II: +A lunatic lean-witted fool, +Presuming on an ague's privilege, +Darest with thy frozen admonition +Make pale our cheek, chasing the royal blood +With fury from his native residence. +Now, by my seat's right royal majesty, +Wert thou not brother to great Edward's son, +This tongue that runs so roundly in thy head +Should run thy head from thy unreverent shoulders. + +JOHN OF GAUNT: +O, spare me not, my brother Edward's son, +For that I was his father Edward's son; +That blood already, like the pelican, +Hast thou tapp'd out and drunkenly caroused: +My brother Gloucester, plain well-meaning soul, +Whom fair befal in heaven 'mongst happy souls! +May be a precedent and witness good +That thou respect'st not spilling Edward's blood: +Join with the present sickness that I have; +And thy unkindness be like crooked age, +To crop at once a too long wither'd flower. +Live in thy shame, but die not shame with thee! +These words hereafter thy tormentors be! +Convey me to my bed, then to my grave: +Love they to live that love and honour have. + +KING RICHARD II: +And let them die that age and sullens have; +For both hast thou, and both become the grave. + +DUKE OF YORK: +I do beseech your majesty, impute his words +To wayward sickliness and age in him: +He loves you, on my life, and holds you dear +As Harry Duke of Hereford, were he here. + +KING RICHARD II: +Right, you say true: as Hereford's love, so his; +As theirs, so mine; and all be as it is. + +NORTHUMBERLAND: +My liege, old Gaunt commends him to your majesty. + +KING RICHARD II: +What says he? + +NORTHUMBERLAND: +Nay, nothing; all is said +His tongue is now a stringless instrument; +Words, life and all, old Lancaster hath spent. + +DUKE OF YORK: +Be York the next that must be bankrupt so! +Though death be poor, it ends a mortal woe. + +KING RICHARD II: +The ripest fruit first falls, and so doth he; +His time is spent, our pilgrimage must be. +So much for that. Now for our Irish wars: +We must supplant those rough rug-headed kerns, +Which live like venom where no venom else +But only they have privilege to live. +And for these great affairs do ask some charge, +Towards our assistance we do seize to us +The plate, corn, revenues and moveables, +Whereof our uncle Gaunt did stand possess'd. + +DUKE OF YORK: +How long shall I be patient? ah, how long +Shall tender duty make me suffer wrong? +Not Gloucester's death, nor Hereford's banishment +Not Gaunt's rebukes, nor England's private wrongs, +Nor the prevention of poor Bolingbroke +About his marriage, nor my own disgrace, +Have ever made me sour my patient cheek, +Or bend one wrinkle on my sovereign's face. +I am the last of noble Edward's sons, +Of whom thy father, Prince of Wales, was first: +In war was never lion raged more fierce, +In peace was never gentle lamb more mild, +Than was that young and princely gentleman. +His face thou hast, for even so look'd he, +Accomplish'd with the number of thy hours; +But when he frown'd, it was against the French +And not against his friends; his noble hand +Did will what he did spend and spent not that +Which his triumphant father's hand had won; +His hands were guilty of no kindred blood, +But bloody with the enemies of his kin. +O Richard! York is too far gone with grief, +Or else he never would compare between. + +KING RICHARD II: +Why, uncle, what's the matter? + +DUKE OF YORK: +O my liege, +Pardon me, if you please; if not, I, pleased +Not to be pardon'd, am content withal. +Seek you to seize and gripe into your hands +The royalties and rights of banish'd Hereford? +Is not Gaunt dead, and doth not Hereford live? +Was not Gaunt just, and is not Harry true? +Did not the one deserve to have an heir? +Is not his heir a well-deserving son? +Take Hereford's rights away, and take from Time +His charters and his customary rights; +Let not to-morrow then ensue to-day; +Be not thyself; for how art thou a king +But by fair sequence and succession? +Now, afore God--God forbid I say true!-- +If you do wrongfully seize Hereford's rights, +Call in the letters patent that he hath +By his attorneys-general to sue +His livery, and deny his offer'd homage, +You pluck a thousand dangers on your head, +You lose a thousand well-disposed hearts +And prick my tender patience, to those thoughts +Which honour and allegiance cannot think. + +KING RICHARD II: +Think what you will, we seize into our hands +His plate, his goods, his money and his lands. + +DUKE OF YORK: +I'll not be by the while: my liege, farewell: +What will ensue hereof, there's none can tell; +But by bad courses may be understood +That their events can never fall out good. + +KING RICHARD II: +Go, Bushy, to the Earl of Wiltshire straight: +Bid him repair to us to Ely House +To see this business. To-morrow next +We will for Ireland; and 'tis time, I trow: +And we create, in absence of ourself, +Our uncle York lord governor of England; +For he is just and always loved us well. +Come on, our queen: to-morrow must we part; +Be merry, for our time of stay is short + +NORTHUMBERLAND: +Well, lords, the Duke of Lancaster is dead. + +LORD ROSS: +And living too; for now his son is duke. + +LORD WILLOUGHBY: +Barely in title, not in revenue. + +NORTHUMBERLAND: +Richly in both, if justice had her right. + +LORD ROSS: +My heart is great; but it must break with silence, +Ere't be disburden'd with a liberal tongue. + +NORTHUMBERLAND: +Nay, speak thy mind; and let him ne'er speak more +That speaks thy words again to do thee harm! + +LORD WILLOUGHBY: +Tends that thou wouldst speak to the Duke of Hereford? +If it be so, out with it boldly, man; +Quick is mine ear to hear of good towards him. + +LORD ROSS: +No good at all that I can do for him; +Unless you call it good to pity him, +Bereft and gelded of his patrimony. + +NORTHUMBERLAND: +Now, afore God, 'tis shame such wrongs are borne +In him, a royal prince, and many moe +Of noble blood in this declining land. +The king is not himself, but basely led +By flatterers; and what they will inform, +Merely in hate, 'gainst any of us all, +That will the king severely prosecute +'Gainst us, our lives, our children, and our heirs. + +LORD ROSS: +The commons hath he pill'd with grievous taxes, +And quite lost their hearts: the nobles hath he fined +For ancient quarrels, and quite lost their hearts. + +LORD WILLOUGHBY: +And daily new exactions are devised, +As blanks, benevolences, and I wot not what: +But what, o' God's name, doth become of this? + +NORTHUMBERLAND: +Wars have not wasted it, for warr'd he hath not, +But basely yielded upon compromise +That which his noble ancestors achieved with blows: +More hath he spent in peace than they in wars. + +LORD ROSS: +The Earl of Wiltshire hath the realm in farm. + +LORD WILLOUGHBY: +The king's grown bankrupt, like a broken man. + +NORTHUMBERLAND: +Reproach and dissolution hangeth over him. + +LORD ROSS: +He hath not money for these Irish wars, +His burthenous taxations notwithstanding, +But by the robbing of the banish'd duke. + +NORTHUMBERLAND: +His noble kinsman: most degenerate king! +But, lords, we hear this fearful tempest sing, +Yet see no shelter to avoid the storm; +We see the wind sit sore upon our sails, +And yet we strike not, but securely perish. + +LORD ROSS: +We see the very wreck that we must suffer; +And unavoided is the danger now, +For suffering so the causes of our wreck. + +NORTHUMBERLAND: +Not so; even through the hollow eyes of death +I spy life peering; but I dare not say +How near the tidings of our comfort is. + +LORD WILLOUGHBY: +Nay, let us share thy thoughts, as thou dost ours. + +LORD ROSS: +Be confident to speak, Northumberland: +We three are but thyself; and, speaking so, +Thy words are but as thoughts; therefore, be bold. + +NORTHUMBERLAND: +Then thus: I have from Port le Blanc, a bay +In Brittany, received intelligence +That Harry Duke of Hereford, Rainold Lord Cobham, +That late broke from the Duke of Exeter, +His brother, Archbishop late of Canterbury, +Sir Thomas Erpingham, Sir John Ramston, +Sir John Norbery, Sir Robert Waterton and Francis Quoint, +All these well furnish'd by the Duke of Bretagne +With eight tall ships, three thousand men of war, +Are making hither with all due expedience +And shortly mean to touch our northern shore: +Perhaps they had ere this, but that they stay +The first departing of the king for Ireland. +If then we shall shake off our slavish yoke, +Imp out our drooping country's broken wing, +Redeem from broking pawn the blemish'd crown, +Wipe off the dust that hides our sceptre's gilt +And make high majesty look like itself, +Away with me in post to Ravenspurgh; +But if you faint, as fearing to do so, +Stay and be secret, and myself will go. + +LORD ROSS: +To horse, to horse! urge doubts to them that fear. + +LORD WILLOUGHBY: +Hold out my horse, and I will first be there. + +BUSHY: +Madam, your majesty is too much sad: +You promised, when you parted with the king, +To lay aside life-harming heaviness +And entertain a cheerful disposition. + +QUEEN: +To please the king I did; to please myself +I cannot do it; yet I know no cause +Why I should welcome such a guest as grief, +Save bidding farewell to so sweet a guest +As my sweet Richard: yet again, methinks, +Some unborn sorrow, ripe in fortune's womb, +Is coming towards me, and my inward soul +With nothing trembles: at some thing it grieves, +More than with parting from my lord the king. + +BUSHY: +Each substance of a grief hath twenty shadows, +Which shows like grief itself, but is not so; +For sorrow's eye, glazed with blinding tears, +Divides one thing entire to many objects; +Like perspectives, which rightly gazed upon +Show nothing but confusion, eyed awry +Distinguish form: so your sweet majesty, +Looking awry upon your lord's departure, +Find shapes of grief, more than himself, to wail; +Which, look'd on as it is, is nought but shadows +Of what it is not. Then, thrice-gracious queen, +More than your lord's departure weep not: more's not seen; +Or if it be, 'tis with false sorrow's eye, +Which for things true weeps things imaginary. + +QUEEN: +It may be so; but yet my inward soul +Persuades me it is otherwise: howe'er it be, +I cannot but be sad; so heavy sad +As, though on thinking on no thought I think, +Makes me with heavy nothing faint and shrink. + +BUSHY: +'Tis nothing but conceit, my gracious lady. + +QUEEN: +'Tis nothing less: conceit is still derived +From some forefather grief; mine is not so, +For nothing had begot my something grief; +Or something hath the nothing that I grieve: +'Tis in reversion that I do possess; +But what it is, that is not yet known; what +I cannot name; 'tis nameless woe, I wot. + +GREEN: +God save your majesty! and well met, gentlemen: +I hope the king is not yet shipp'd for Ireland. + +QUEEN: +Why hopest thou so? 'tis better hope he is; +For his designs crave haste, his haste good hope: +Then wherefore dost thou hope he is not shipp'd? + +GREEN: +That he, our hope, might have retired his power, +And driven into despair an enemy's hope, +Who strongly hath set footing in this land: +The banish'd Bolingbroke repeals himself, +And with uplifted arms is safe arrived +At Ravenspurgh. + +QUEEN: +Now God in heaven forbid! + +GREEN: +Ah, madam, 'tis too true: and that is worse, +The Lord Northumberland, his son young Henry Percy, +The Lords of Ross, Beaumond, and Willoughby, +With all their powerful friends, are fled to him. + +BUSHY: +Why have you not proclaim'd Northumberland +And all the rest revolted faction traitors? + +GREEN: +We have: whereupon the Earl of Worcester +Hath broke his staff, resign'd his stewardship, +And all the household servants fled with him +To Bolingbroke. + +QUEEN: +So, Green, thou art the midwife to my woe, +And Bolingbroke my sorrow's dismal heir: +Now hath my soul brought forth her prodigy, +And I, a gasping new-deliver'd mother, +Have woe to woe, sorrow to sorrow join'd. + +BUSHY: +Despair not, madam. + +QUEEN: +Who shall hinder me? +I will despair, and be at enmity +With cozening hope: he is a flatterer, +A parasite, a keeper back of death, +Who gently would dissolve the bands of life, +Which false hope lingers in extremity. + +GREEN: +Here comes the Duke of York. + +QUEEN: +With signs of war about his aged neck: +O, full of careful business are his looks! +Uncle, for God's sake, speak comfortable words. + +DUKE OF YORK: +Should I do so, I should belie my thoughts: +Comfort's in heaven; and we are on the earth, +Where nothing lives but crosses, cares and grief. +Your husband, he is gone to save far off, +Whilst others come to make him lose at home: +Here am I left to underprop his land, +Who, weak with age, cannot support myself: +Now comes the sick hour that his surfeit made; +Now shall he try his friends that flatter'd him. + +Servant: +My lord, your son was gone before I came. + +DUKE OF YORK: +He was? Why, so! go all which way it will! +The nobles they are fled, the commons they are cold, +And will, I fear, revolt on Hereford's side. +Sirrah, get thee to Plashy, to my sister Gloucester; +Bid her send me presently a thousand pound: +Hold, take my ring. + +Servant: +My lord, I had forgot to tell your lordship, +To-day, as I came by, I called there; +But I shall grieve you to report the rest. + +DUKE OF YORK: +What is't, knave? + +Servant: +An hour before I came, the duchess died. + +DUKE OF YORK: +God for his mercy! what a tide of woes +Comes rushing on this woeful land at once! +I know not what to do: I would to God, +So my untruth had not provoked him to it, +The king had cut off my head with my brother's. +What, are there no posts dispatch'd for Ireland? +How shall we do for money for these wars? +Come, sister,--cousin, I would say--pray, pardon me. +Go, fellow, get thee home, provide some carts +And bring away the armour that is there. +Gentlemen, will you go muster men? +If I know how or which way to order these affairs +Thus thrust disorderly into my hands, +Never believe me. Both are my kinsmen: +The one is my sovereign, whom both my oath +And duty bids defend; the other again +Is my kinsman, whom the king hath wrong'd, +Whom conscience and my kindred bids to right. +Well, somewhat we must do. Come, cousin, I'll +Dispose of you. +Gentlemen, go, muster up your men, +And meet me presently at Berkeley. +I should to Plashy too; +But time will not permit: all is uneven, +And every thing is left at six and seven. + +BUSHY: +The wind sits fair for news to go to Ireland, +But none returns. For us to levy power +Proportionable to the enemy +Is all unpossible. + +GREEN: +Besides, our nearness to the king in love +Is near the hate of those love not the king. + +BAGOT: +And that's the wavering commons: for their love +Lies in their purses, and whoso empties them +By so much fills their hearts with deadly hate. + +BUSHY: +Wherein the king stands generally condemn'd. + +BAGOT: +If judgement lie in them, then so do we, +Because we ever have been near the king. + +GREEN: +Well, I will for refuge straight to Bristol castle: +The Earl of Wiltshire is already there. + +BUSHY: +Thither will I with you; for little office +The hateful commons will perform for us, +Except like curs to tear us all to pieces. +Will you go along with us? + +BAGOT: +No; I will to Ireland to his majesty. +Farewell: if heart's presages be not vain, +We three here art that ne'er shall meet again. + +BUSHY: +That's as York thrives to beat back Bolingbroke. + +GREEN: +Alas, poor duke! the task he undertakes +Is numbering sands and drinking oceans dry: +Where one on his side fights, thousands will fly. +Farewell at once, for once, for all, and ever. + +BUSHY: +Well, we may meet again. + +BAGOT: +I fear me, never. + +HENRY BOLINGBROKE: +How far is it, my lord, to Berkeley now? + +NORTHUMBERLAND: +Believe me, noble lord, +I am a stranger here in Gloucestershire: +These high wild hills and rough uneven ways +Draws out our miles, and makes them wearisome, +And yet your fair discourse hath been as sugar, +Making the hard way sweet and delectable. +But I bethink me what a weary way +From Ravenspurgh to Cotswold will be found +In Ross and Willoughby, wanting your company, +Which, I protest, hath very much beguiled +The tediousness and process of my travel: +But theirs is sweetened with the hope to have +The present benefit which I possess; +And hope to joy is little less in joy +Than hope enjoy'd: by this the weary lords +Shall make their way seem short, as mine hath done +By sight of what I have, your noble company. + +HENRY BOLINGBROKE: +Of much less value is my company +Than your good words. But who comes here? + +NORTHUMBERLAND: +It is my son, young Harry Percy, +Sent from my brother Worcester, whencesoever. +Harry, how fares your uncle? + +HENRY PERCY: +I had thought, my lord, to have learn'd his health of you. + +NORTHUMBERLAND: +Why, is he not with the queen? + +HENRY PERCY: +No, my good Lord; he hath forsook the court, +Broken his staff of office and dispersed +The household of the king. + +NORTHUMBERLAND: +What was his reason? +He was not so resolved when last we spake together. + +HENRY PERCY: +Because your lordship was proclaimed traitor. +But he, my lord, is gone to Ravenspurgh, +To offer service to the Duke of Hereford, +And sent me over by Berkeley, to discover +What power the Duke of York had levied there; +Then with directions to repair to Ravenspurgh. + +NORTHUMBERLAND: +Have you forgot the Duke of Hereford, boy? + +HENRY PERCY: +No, my good lord, for that is not forgot +Which ne'er I did remember: to my knowledge, +I never in my life did look on him. + +NORTHUMBERLAND: +Then learn to know him now; this is the duke. + +HENRY PERCY: +My gracious lord, I tender you my service, +Such as it is, being tender, raw and young: +Which elder days shall ripen and confirm +To more approved service and desert. + +HENRY BOLINGBROKE: +I thank thee, gentle Percy; and be sure +I count myself in nothing else so happy +As in a soul remembering my good friends; +And, as my fortune ripens with thy love, +It shall be still thy true love's recompense: +My heart this covenant makes, my hand thus seals it. + +NORTHUMBERLAND: +How far is it to Berkeley? and what stir +Keeps good old York there with his men of war? + +HENRY PERCY: +There stands the castle, by yon tuft of trees, +Mann'd with three hundred men, as I have heard; +And in it are the Lords of York, Berkeley, and Seymour; +None else of name and noble estimate. + +NORTHUMBERLAND: +Here come the Lords of Ross and Willoughby, +Bloody with spurring, fiery-red with haste. + +HENRY BOLINGBROKE: +Welcome, my lords. I wot your love pursues +A banish'd traitor: all my treasury +Is yet but unfelt thanks, which more enrich'd +Shall be your love and labour's recompense. + +LORD ROSS: +Your presence makes us rich, most noble lord. + +LORD WILLOUGHBY: +And far surmounts our labour to attain it. + +HENRY BOLINGBROKE: +Evermore thanks, the exchequer of the poor; +Which, till my infant fortune comes to years, +Stands for my bounty. But who comes here? + +NORTHUMBERLAND: +It is my Lord of Berkeley, as I guess. + +LORD BERKELEY: +My Lord of Hereford, my message is to you. + +HENRY BOLINGBROKE: +My lord, my answer is--to Lancaster; +And I am come to seek that name in England; +And I must find that title in your tongue, +Before I make reply to aught you say. + +LORD BERKELEY: +Mistake me not, my lord; 'tis not my meaning +To raze one title of your honour out: +To you, my lord, I come, what lord you will, +From the most gracious regent of this land, +The Duke of York, to know what pricks you on +To take advantage of the absent time +And fright our native peace with self-born arms. + +HENRY BOLINGBROKE: +I shall not need transport my words by you; +Here comes his grace in person. My noble uncle! + +DUKE OF YORK: +Show me thy humble heart, and not thy knee, +Whose duty is deceiveable and false. + +HENRY BOLINGBROKE: +My gracious uncle-- + +DUKE OF YORK: +Tut, tut! +Grace me no grace, nor uncle me no uncle: +I am no traitor's uncle; and that word 'grace.' +In an ungracious mouth is but profane. +Why have those banish'd and forbidden legs +Dared once to touch a dust of England's ground? +But then more 'why?' why have they dared to march +So many miles upon her peaceful bosom, +Frighting her pale-faced villages with war +And ostentation of despised arms? +Comest thou because the anointed king is hence? +Why, foolish boy, the king is left behind, +And in my loyal bosom lies his power. +Were I but now the lord of such hot youth +As when brave Gaunt, thy father, and myself +Rescued the Black Prince, that young Mars of men, +From forth the ranks of many thousand French, +O, then how quickly should this arm of mine. +Now prisoner to the palsy, chastise thee +And minister correction to thy fault! + +HENRY BOLINGBROKE: +My gracious uncle, let me know my fault: +On what condition stands it and wherein? + +DUKE OF YORK: +Even in condition of the worst degree, +In gross rebellion and detested treason: +Thou art a banish'd man, and here art come +Before the expiration of thy time, +In braving arms against thy sovereign. + +HENRY BOLINGBROKE: +As I was banish'd, I was banish'd Hereford; +But as I come, I come for Lancaster. +And, noble uncle, I beseech your grace +Look on my wrongs with an indifferent eye: +You are my father, for methinks in you +I see old Gaunt alive; O, then, my father, +Will you permit that I shall stand condemn'd +A wandering vagabond; my rights and royalties +Pluck'd from my arms perforce and given away +To upstart unthrifts? Wherefore was I born? +If that my cousin king be King of England, +It must be granted I am Duke of Lancaster. +You have a son, Aumerle, my noble cousin; +Had you first died, and he been thus trod down, +He should have found his uncle Gaunt a father, +To rouse his wrongs and chase them to the bay. +I am denied to sue my livery here, +And yet my letters-patents give me leave: +My father's goods are all distrain'd and sold, +And these and all are all amiss employ'd. +What would you have me do? I am a subject, +And I challenge law: attorneys are denied me; +And therefore, personally I lay my claim +To my inheritance of free descent. + +NORTHUMBERLAND: +The noble duke hath been too much abused. + +LORD ROSS: +It stands your grace upon to do him right. + +LORD WILLOUGHBY: +Base men by his endowments are made great. + +DUKE OF YORK: +My lords of England, let me tell you this: +I have had feeling of my cousin's wrongs +And laboured all I could to do him right; +But in this kind to come, in braving arms, +Be his own carver and cut out his way, +To find out right with wrong, it may not be; +And you that do abet him in this kind +Cherish rebellion and are rebels all. + +NORTHUMBERLAND: +The noble duke hath sworn his coming is +But for his own; and for the right of that +We all have strongly sworn to give him aid; +And let him ne'er see joy that breaks that oath! + +DUKE OF YORK: +Well, well, I see the issue of these arms: +I cannot mend it, I must needs confess, +Because my power is weak and all ill left: +But if I could, by Him that gave me life, +I would attach you all and make you stoop +Unto the sovereign mercy of the king; +But since I cannot, be it known to you +I do remain as neuter. So, fare you well; +Unless you please to enter in the castle +And there repose you for this night. + +HENRY BOLINGBROKE: +An offer, uncle, that we will accept: +But we must win your grace to go with us +To Bristol castle, which they say is held +By Bushy, Bagot and their complices, +The caterpillars of the commonwealth, +Which I have sworn to weed and pluck away. + +DUKE OF YORK: +It may be I will go with you: but yet I'll pause; +For I am loath to break our country's laws. +Nor friends nor foes, to me welcome you are: +Things past redress are now with me past care. + +Captain: +My lord of Salisbury, we have stay'd ten days, +And hardly kept our countrymen together, +And yet we hear no tidings from the king; +Therefore we will disperse ourselves: farewell. + +EARL OF SALISBURY: +Stay yet another day, thou trusty Welshman: +The king reposeth all his confidence in thee. + +Captain: +'Tis thought the king is dead; we will not stay. +The bay-trees in our country are all wither'd +And meteors fright the fixed stars of heaven; +The pale-faced moon looks bloody on the earth +And lean-look'd prophets whisper fearful change; +Rich men look sad and ruffians dance and leap, +The one in fear to lose what they enjoy, +The other to enjoy by rage and war: +These signs forerun the death or fall of kings. +Farewell: our countrymen are gone and fled, +As well assured Richard their king is dead. + +EARL OF SALISBURY: +Ah, Richard, with the eyes of heavy mind +I see thy glory like a shooting star +Fall to the base earth from the firmament. +Thy sun sets weeping in the lowly west, +Witnessing storms to come, woe and unrest: +Thy friends are fled to wait upon thy foes, +And crossly to thy good all fortune goes. + +HENRY BOLINGBROKE: +Bring forth these men. +Bushy and Green, I will not vex your souls-- +Since presently your souls must part your bodies-- +With too much urging your pernicious lives, +For 'twere no charity; yet, to wash your blood +From off my hands, here in the view of men +I will unfold some causes of your deaths. +You have misled a prince, a royal king, +A happy gentleman in blood and lineaments, +By you unhappied and disfigured clean: +You have in manner with your sinful hours +Made a divorce betwixt his queen and him, +Broke the possession of a royal bed +And stain'd the beauty of a fair queen's cheeks +With tears drawn from her eyes by your foul wrongs. +Myself, a prince by fortune of my birth, +Near to the king in blood, and near in love +Till you did make him misinterpret me, +Have stoop'd my neck under your injuries, +And sigh'd my English breath in foreign clouds, +Eating the bitter bread of banishment; +Whilst you have fed upon my signories, +Dispark'd my parks and fell'd my forest woods, +From my own windows torn my household coat, +Razed out my imprese, leaving me no sign, +Save men's opinions and my living blood, +To show the world I am a gentleman. +This and much more, much more than twice all this, +Condemns you to the death. See them deliver'd over +To execution and the hand of death. + +BUSHY: +More welcome is the stroke of death to me +Than Bolingbroke to England. Lords, farewell. + +GREEN: +My comfort is that heaven will take our souls +And plague injustice with the pains of hell. + +HENRY BOLINGBROKE: +My Lord Northumberland, see them dispatch'd. +Uncle, you say the queen is at your house; +For God's sake, fairly let her be entreated: +Tell her I send to her my kind commends; +Take special care my greetings be deliver'd. + +DUKE OF YORK: +A gentleman of mine I have dispatch'd +With letters of your love to her at large. + +HENRY BOLINGBROKE: +Thank, gentle uncle. Come, lords, away. +To fight with Glendower and his complices: +Awhile to work, and after holiday. + +KING RICHARD II: +Barkloughly castle call they this at hand? + +DUKE OF AUMERLE: +Yea, my lord. How brooks your grace the air, +After your late tossing on the breaking seas? + +KING RICHARD II: +Needs must I like it well: I weep for joy +To stand upon my kingdom once again. +Dear earth, I do salute thee with my hand, +Though rebels wound thee with their horses' hoofs: +As a long-parted mother with her child +Plays fondly with her tears and smiles in meeting, +So, weeping, smiling, greet I thee, my earth, +And do thee favours with my royal hands. +Feed not thy sovereign's foe, my gentle earth, +Nor with thy sweets comfort his ravenous sense; +But let thy spiders, that suck up thy venom, +And heavy-gaited toads lie in their way, +Doing annoyance to the treacherous feet +Which with usurping steps do trample thee: +Yield stinging nettles to mine enemies; +And when they from thy bosom pluck a flower, +Guard it, I pray thee, with a lurking adder +Whose double tongue may with a mortal touch +Throw death upon thy sovereign's enemies. +Mock not my senseless conjuration, lords: +This earth shall have a feeling and these stones +Prove armed soldiers, ere her native king +Shall falter under foul rebellion's arms. + +BISHOP OF CARLISLE: +Fear not, my lord: that Power that made you king +Hath power to keep you king in spite of all. +The means that heaven yields must be embraced, +And not neglected; else, if heaven would, +And we will not, heaven's offer we refuse, +The proffer'd means of succor and redress. + +DUKE OF AUMERLE: +He means, my lord, that we are too remiss; +Whilst Bolingbroke, through our security, +Grows strong and great in substance and in power. + +KING RICHARD II: +Discomfortable cousin! know'st thou not +That when the searching eye of heaven is hid, +Behind the globe, that lights the lower world, +Then thieves and robbers range abroad unseen +In murders and in outrage, boldly here; +But when from under this terrestrial ball +He fires the proud tops of the eastern pines +And darts his light through every guilty hole, +Then murders, treasons and detested sins, +The cloak of night being pluck'd from off their backs, +Stand bare and naked, trembling at themselves? +So when this thief, this traitor, Bolingbroke, +Who all this while hath revell'd in the night +Whilst we were wandering with the antipodes, +Shall see us rising in our throne, the east, +His treasons will sit blushing in his face, +Not able to endure the sight of day, +But self-affrighted tremble at his sin. +Not all the water in the rough rude sea +Can wash the balm off from an anointed king; +The breath of worldly men cannot depose +The deputy elected by the Lord: +For every man that Bolingbroke hath press'd +To lift shrewd steel against our golden crown, +God for his Richard hath in heavenly pay +A glorious angel: then, if angels fight, +Weak men must fall, for heaven still guards the right. +Welcome, my lord how far off lies your power? + +EARL OF SALISBURY: +Nor near nor farther off, my gracious lord, +Than this weak arm: discomfort guides my tongue +And bids me speak of nothing but despair. +One day too late, I fear me, noble lord, +Hath clouded all thy happy days on earth: +O, call back yesterday, bid time return, +And thou shalt have twelve thousand fighting men! +To-day, to-day, unhappy day, too late, +O'erthrows thy joys, friends, fortune and thy state: +For all the Welshmen, hearing thou wert dead. +Are gone to Bolingbroke, dispersed and fled. + +DUKE OF AUMERLE: +Comfort, my liege; why looks your grace so pale? + +KING RICHARD II: +But now the blood of twenty thousand men +Did triumph in my face, and they are fled; +And, till so much blood thither come again, +Have I not reason to look pale and dead? +All souls that will be safe fly from my side, +For time hath set a blot upon my pride. + +DUKE OF AUMERLE: +Comfort, my liege; remember who you are. + +KING RICHARD II: +I had forgot myself; am I not king? +Awake, thou coward majesty! thou sleepest. +Is not the king's name twenty thousand names? +Arm, arm, my name! a puny subject strikes +At thy great glory. Look not to the ground, +Ye favourites of a king: are we not high? +High be our thoughts: I know my uncle York +Hath power enough to serve our turn. But who comes here? + +SIR STEPHEN SCROOP: +More health and happiness betide my liege +Than can my care-tuned tongue deliver him! + +KING RICHARD II: +Mine ear is open and my heart prepared; +The worst is worldly loss thou canst unfold. +Say, is my kingdom lost? why, 'twas my care +And what loss is it to be rid of care? +Strives Bolingbroke to be as great as we? +Greater he shall not be; if he serve God, +We'll serve Him too and be his fellow so: +Revolt our subjects? that we cannot mend; +They break their faith to God as well as us: +Cry woe, destruction, ruin and decay: +The worst is death, and death will have his day. + +SIR STEPHEN SCROOP: +Glad am I that your highness is so arm'd +To bear the tidings of calamity. +Like an unseasonable stormy day, +Which makes the silver rivers drown their shores, +As if the world were all dissolved to tears, +So high above his limits swells the rage +Of Bolingbroke, covering your fearful land +With hard bright steel and hearts harder than steel. +White-beards have arm'd their thin and hairless scalps +Against thy majesty; boys, with women's voices, +Strive to speak big and clap their female joints +In stiff unwieldy arms against thy crown: +The very beadsmen learn to bend their bows +Of double-fatal yew against thy state; +Yea, distaff-women manage rusty bills +Against thy seat: both young and old rebel, +And all goes worse than I have power to tell. + +KING RICHARD II: +Too well, too well thou tell'st a tale so ill. +Where is the Earl of Wiltshire? where is Bagot? +What is become of Bushy? where is Green? +That they have let the dangerous enemy +Measure our confines with such peaceful steps? +If we prevail, their heads shall pay for it: +I warrant they have made peace with Bolingbroke. + +SIR STEPHEN SCROOP: +Peace have they made with him indeed, my lord. + +KING RICHARD II: +O villains, vipers, damn'd without redemption! +Dogs, easily won to fawn on any man! +Snakes, in my heart-blood warm'd, that sting my heart! +Three Judases, each one thrice worse than Judas! +Would they make peace? terrible hell make war +Upon their spotted souls for this offence! + +SIR STEPHEN SCROOP: +Sweet love, I see, changing his property, +Turns to the sourest and most deadly hate: +Again uncurse their souls; their peace is made +With heads, and not with hands; those whom you curse +Have felt the worst of death's destroying wound +And lie full low, graved in the hollow ground. + +DUKE OF AUMERLE: +Is Bushy, Green, and the Earl of Wiltshire dead? + +SIR STEPHEN SCROOP: +Ay, all of them at Bristol lost their heads. + +DUKE OF AUMERLE: +Where is the duke my father with his power? + +KING RICHARD II: +No matter where; of comfort no man speak: +Let's talk of graves, of worms, and epitaphs; +Make dust our paper and with rainy eyes +Write sorrow on the bosom of the earth, +Let's choose executors and talk of wills: +And yet not so, for what can we bequeath +Save our deposed bodies to the ground? +Our lands, our lives and all are Bolingbroke's, +And nothing can we call our own but death +And that small model of the barren earth +Which serves as paste and cover to our bones. +For God's sake, let us sit upon the ground +And tell sad stories of the death of kings; +How some have been deposed; some slain in war, +Some haunted by the ghosts they have deposed; +Some poison'd by their wives: some sleeping kill'd; +All murder'd: for within the hollow crown +That rounds the mortal temples of a king +Keeps Death his court and there the antic sits, +Scoffing his state and grinning at his pomp, +Allowing him a breath, a little scene, +To monarchize, be fear'd and kill with looks, +Infusing him with self and vain conceit, +As if this flesh which walls about our life, +Were brass impregnable, and humour'd thus +Comes at the last and with a little pin +Bores through his castle wall, and farewell king! +Cover your heads and mock not flesh and blood +With solemn reverence: throw away respect, +Tradition, form and ceremonious duty, +For you have but mistook me all this while: +I live with bread like you, feel want, +Taste grief, need friends: subjected thus, +How can you say to me, I am a king? + +BISHOP OF CARLISLE: +My lord, wise men ne'er sit and wail their woes, +But presently prevent the ways to wail. +To fear the foe, since fear oppresseth strength, +Gives in your weakness strength unto your foe, +And so your follies fight against yourself. +Fear and be slain; no worse can come to fight: +And fight and die is death destroying death; +Where fearing dying pays death servile breath. + +DUKE OF AUMERLE: +My father hath a power; inquire of him +And learn to make a body of a limb. + +KING RICHARD II: +Thou chidest me well: proud Bolingbroke, I come +To change blows with thee for our day of doom. +This ague fit of fear is over-blown; +An easy task it is to win our own. +Say, Scroop, where lies our uncle with his power? +Speak sweetly, man, although thy looks be sour. + +SIR STEPHEN SCROOP: +Men judge by the complexion of the sky +The state and inclination of the day: +So may you by my dull and heavy eye, +My tongue hath but a heavier tale to say. +I play the torturer, by small and small +To lengthen out the worst that must be spoken: +Your uncle York is join'd with Bolingbroke, +And all your northern castles yielded up, +And all your southern gentlemen in arms +Upon his party. + +KING RICHARD II: +Thou hast said enough. +Beshrew thee, cousin, which didst lead me forth +Of that sweet way I was in to despair! +What say you now? what comfort have we now? +By heaven, I'll hate him everlastingly +That bids me be of comfort any more. +Go to Flint castle: there I'll pine away; +A king, woe's slave, shall kingly woe obey. +That power I have, discharge; and let them go +To ear the land that hath some hope to grow, +For I have none: let no man speak again +To alter this, for counsel is but vain. + +DUKE OF AUMERLE: +My liege, one word. + +KING RICHARD II: +He does me double wrong +That wounds me with the flatteries of his tongue. +Discharge my followers: let them hence away, +From Richard's night to Bolingbroke's fair day. + +HENRY BOLINGBROKE: +So that by this intelligence we learn +The Welshmen are dispersed, and Salisbury +Is gone to meet the king, who lately landed +With some few private friends upon this coast. + +NORTHUMBERLAND: +The news is very fair and good, my lord: +Richard not far from hence hath hid his head. + +DUKE OF YORK: +It would beseem the Lord Northumberland +To say 'King Richard:' alack the heavy day +When such a sacred king should hide his head. + +NORTHUMBERLAND: +Your grace mistakes; only to be brief +Left I his title out. + +DUKE OF YORK: +The time hath been, +Would you have been so brief with him, he would +Have been so brief with you, to shorten you, +For taking so the head, your whole head's length. + +HENRY BOLINGBROKE: +Mistake not, uncle, further than you should. + +DUKE OF YORK: +Take not, good cousin, further than you should. +Lest you mistake the heavens are o'er our heads. + +HENRY BOLINGBROKE: +I know it, uncle, and oppose not myself +Against their will. But who comes here? +Welcome, Harry: what, will not this castle yield? + +HENRY PERCY: +The castle royally is mann'd, my lord, +Against thy entrance. + +HENRY BOLINGBROKE: +Royally! +Why, it contains no king? + +HENRY PERCY: +Yes, my good lord, +It doth contain a king; King Richard lies +Within the limits of yon lime and stone: +And with him are the Lord Aumerle, Lord Salisbury, +Sir Stephen Scroop, besides a clergyman +Of holy reverence; who, I cannot learn. + +NORTHUMBERLAND: +O, belike it is the Bishop of Carlisle. + +HENRY BOLINGBROKE: +Noble lords, +Go to the rude ribs of that ancient castle; +Through brazen trumpet send the breath of parley +Into his ruin'd ears, and thus deliver: +Henry Bolingbroke +On both his knees doth kiss King Richard's hand +And sends allegiance and true faith of heart +To his most royal person, hither come +Even at his feet to lay my arms and power, +Provided that my banishment repeal'd +And lands restored again be freely granted: +If not, I'll use the advantage of my power +And lay the summer's dust with showers of blood +Rain'd from the wounds of slaughter'd Englishmen: +The which, how far off from the mind of Bolingbroke +It is, such crimson tempest should bedrench +The fresh green lap of fair King Richard's land, +My stooping duty tenderly shall show. +Go, signify as much, while here we march +Upon the grassy carpet of this plain. +Let's march without the noise of threatening drum, +That from this castle's tatter'd battlements +Our fair appointments may be well perused. +Methinks King Richard and myself should meet +With no less terror than the elements +Of fire and water, when their thundering shock +At meeting tears the cloudy cheeks of heaven. +Be he the fire, I'll be the yielding water: +The rage be his, whilst on the earth I rain +My waters; on the earth, and not on him. +March on, and mark King Richard how he looks. +See, see, King Richard doth himself appear, +As doth the blushing discontented sun +From out the fiery portal of the east, +When he perceives the envious clouds are bent +To dim his glory and to stain the track +Of his bright passage to the occident. + +DUKE OF YORK: +Yet looks he like a king: behold, his eye, +As bright as is the eagle's, lightens forth +Controlling majesty: alack, alack, for woe, +That any harm should stain so fair a show! + +KING RICHARD II: +We are amazed; and thus long have we stood +To watch the fearful bending of thy knee, +Because we thought ourself thy lawful king: +And if we be, how dare thy joints forget +To pay their awful duty to our presence? +If we be not, show us the hand of God +That hath dismissed us from our stewardship; +For well we know, no hand of blood and bone +Can gripe the sacred handle of our sceptre, +Unless he do profane, steal, or usurp. +And though you think that all, as you have done, +Have torn their souls by turning them from us, +And we are barren and bereft of friends; +Yet know, my master, God omnipotent, +Is mustering in his clouds on our behalf +Armies of pestilence; and they shall strike +Your children yet unborn and unbegot, +That lift your vassal hands against my head +And threat the glory of my precious crown. +Tell Bolingbroke--for yond methinks he stands-- +That every stride he makes upon my land +Is dangerous treason: he is come to open +The purple testament of bleeding war; +But ere the crown he looks for live in peace, +Ten thousand bloody crowns of mothers' sons +Shall ill become the flower of England's face, +Change the complexion of her maid-pale peace +To scarlet indignation and bedew +Her pastures' grass with faithful English blood. + +NORTHUMBERLAND: +The king of heaven forbid our lord the king +Should so with civil and uncivil arms +Be rush'd upon! Thy thrice noble cousin +Harry Bolingbroke doth humbly kiss thy hand; +And by the honourable tomb he swears, +That stands upon your royal grandsire's bones, +And by the royalties of both your bloods, +Currents that spring from one most gracious head, +And by the buried hand of warlike Gaunt, +And by the worth and honour of himself, +Comprising all that may be sworn or said, +His coming hither hath no further scope +Than for his lineal royalties and to beg +Enfranchisement immediate on his knees: +Which on thy royal party granted once, +His glittering arms he will commend to rust, +His barbed steeds to stables, and his heart +To faithful service of your majesty. +This swears he, as he is a prince, is just; +And, as I am a gentleman, I credit him. + +KING RICHARD II: +Northumberland, say thus the king returns: +His noble cousin is right welcome hither; +And all the number of his fair demands +Shall be accomplish'd without contradiction: +With all the gracious utterance thou hast +Speak to his gentle hearing kind commends. +We do debase ourselves, cousin, do we not, +To look so poorly and to speak so fair? +Shall we call back Northumberland, and send +Defiance to the traitor, and so die? + +DUKE OF AUMERLE: +No, good my lord; let's fight with gentle words +Till time lend friends and friends their helpful swords. + +KING RICHARD II: +O God, O God! that e'er this tongue of mine, +That laid the sentence of dread banishment +On yon proud man, should take it off again +With words of sooth! O that I were as great +As is my grief, or lesser than my name! +Or that I could forget what I have been, +Or not remember what I must be now! +Swell'st thou, proud heart? I'll give thee scope to beat, +Since foes have scope to beat both thee and me. + +DUKE OF AUMERLE: +Northumberland comes back from Bolingbroke. + +KING RICHARD II: +What must the king do now? must he submit? +The king shall do it: must he be deposed? +The king shall be contented: must he lose +The name of king? o' God's name, let it go: +I'll give my jewels for a set of beads, +My gorgeous palace for a hermitage, +My gay apparel for an almsman's gown, +My figured goblets for a dish of wood, +My sceptre for a palmer's walking staff, +My subjects for a pair of carved saints +And my large kingdom for a little grave, +A little little grave, an obscure grave; +Or I'll be buried in the king's highway, +Some way of common trade, where subjects' feet +May hourly trample on their sovereign's head; +For on my heart they tread now whilst I live; +And buried once, why not upon my head? +Aumerle, thou weep'st, my tender-hearted cousin! +We'll make foul weather with despised tears; +Our sighs and they shall lodge the summer corn, +And make a dearth in this revolting land. +Or shall we play the wantons with our woes, +And make some pretty match with shedding tears? +As thus, to drop them still upon one place, +Till they have fretted us a pair of graves +Within the earth; and, therein laid,--there lies +Two kinsmen digg'd their graves with weeping eyes. +Would not this ill do well? Well, well, I see +I talk but idly, and you laugh at me. +Most mighty prince, my Lord Northumberland, +What says King Bolingbroke? will his majesty +Give Richard leave to live till Richard die? +You make a leg, and Bolingbroke says ay. + +NORTHUMBERLAND: +My lord, in the base court he doth attend +To speak with you; may it please you to come down. + +KING RICHARD II: +Down, down I come; like glistering Phaethon, +Wanting the manage of unruly jades. +In the base court? Base court, where kings grow base, +To come at traitors' calls and do them grace. +In the base court? Come down? Down, court! +down, king! +For night-owls shriek where mounting larks +should sing. + +HENRY BOLINGBROKE: +What says his majesty? + +NORTHUMBERLAND: +Sorrow and grief of heart +Makes him speak fondly, like a frantic man +Yet he is come. + +HENRY BOLINGBROKE: +Stand all apart, +And show fair duty to his majesty. +My gracious lord,-- + +KING RICHARD II: +Fair cousin, you debase your princely knee +To make the base earth proud with kissing it: +Me rather had my heart might feel your love +Than my unpleased eye see your courtesy. +Up, cousin, up; your heart is up, I know, +Thus high at least, although your knee be low. + +HENRY BOLINGBROKE: +My gracious lord, I come but for mine own. + +KING RICHARD II: +Your own is yours, and I am yours, and all. + +HENRY BOLINGBROKE: +So far be mine, my most redoubted lord, +As my true service shall deserve your love. + +KING RICHARD II: +Well you deserve: they well deserve to have, +That know the strong'st and surest way to get. +Uncle, give me your hands: nay, dry your eyes; +Tears show their love, but want their remedies. +Cousin, I am too young to be your father, +Though you are old enough to be my heir. +What you will have, I'll give, and willing too; +For do we must what force will have us do. +Set on towards London, cousin, is it so? + +HENRY BOLINGBROKE: +Yea, my good lord. + +KING RICHARD II: +Then I must not say no. + +QUEEN: +What sport shall we devise here in this garden, +To drive away the heavy thought of care? + +Lady: +Madam, we'll play at bowls. + +QUEEN: +'Twill make me think the world is full of rubs, +And that my fortune rubs against the bias. + +Lady: +Madam, we'll dance. + +QUEEN: +My legs can keep no measure in delight, +When my poor heart no measure keeps in grief: +Therefore, no dancing, girl; some other sport. + +Lady: +Madam, we'll tell tales. + +QUEEN: +Of sorrow or of joy? + +Lady: +Of either, madam. + +QUEEN: +Of neither, girl: +For of joy, being altogether wanting, +It doth remember me the more of sorrow; +Or if of grief, being altogether had, +It adds more sorrow to my want of joy: +For what I have I need not to repeat; +And what I want it boots not to complain. + +Lady: +Madam, I'll sing. + +QUEEN: +'Tis well that thou hast cause +But thou shouldst please me better, wouldst thou weep. + +Lady: +I could weep, madam, would it do you good. + +QUEEN: +And I could sing, would weeping do me good, +And never borrow any tear of thee. +But stay, here come the gardeners: +Let's step into the shadow of these trees. +My wretchedness unto a row of pins, +They'll talk of state; for every one doth so +Against a change; woe is forerun with woe. + +Gardener: +Go, bind thou up yon dangling apricocks, +Which, like unruly children, make their sire +Stoop with oppression of their prodigal weight: +Give some supportance to the bending twigs. +Go thou, and like an executioner, +Cut off the heads of too fast growing sprays, +That look too lofty in our commonwealth: +All must be even in our government. +You thus employ'd, I will go root away +The noisome weeds, which without profit suck +The soil's fertility from wholesome flowers. + +Servant: +Why should we in the compass of a pale +Keep law and form and due proportion, +Showing, as in a model, our firm estate, +When our sea-walled garden, the whole land, +Is full of weeds, her fairest flowers choked up, +Her fruit-trees all upturned, her hedges ruin'd, +Her knots disorder'd and her wholesome herbs +Swarming with caterpillars? + +Gardener: +Hold thy peace: +He that hath suffer'd this disorder'd spring +Hath now himself met with the fall of leaf: +The weeds which his broad-spreading leaves did shelter, +That seem'd in eating him to hold him up, +Are pluck'd up root and all by Bolingbroke, +I mean the Earl of Wiltshire, Bushy, Green. + +Servant: +What, are they dead? + +Gardener: +They are; and Bolingbroke +Hath seized the wasteful king. O, what pity is it +That he had not so trimm'd and dress'd his land +As we this garden! We at time of year +Do wound the bark, the skin of our fruit-trees, +Lest, being over-proud in sap and blood, +With too much riches it confound itself: +Had he done so to great and growing men, +They might have lived to bear and he to taste +Their fruits of duty: superfluous branches +We lop away, that bearing boughs may live: +Had he done so, himself had borne the crown, +Which waste of idle hours hath quite thrown down. + +Servant: +What, think you then the king shall be deposed? + +Gardener: +Depress'd he is already, and deposed +'Tis doubt he will be: letters came last night +To a dear friend of the good Duke of York's, +That tell black tidings. + +QUEEN: +O, I am press'd to death through want of speaking! +Thou, old Adam's likeness, set to dress this garden, +How dares thy harsh rude tongue sound this unpleasing news? +What Eve, what serpent, hath suggested thee +To make a second fall of cursed man? +Why dost thou say King Richard is deposed? +Darest thou, thou little better thing than earth, +Divine his downfall? Say, where, when, and how, +Camest thou by this ill tidings? speak, thou wretch. + +Gardener: +Pardon me, madam: little joy have I +To breathe this news; yet what I say is true. +King Richard, he is in the mighty hold +Of Bolingbroke: their fortunes both are weigh'd: +In your lord's scale is nothing but himself, +And some few vanities that make him light; +But in the balance of great Bolingbroke, +Besides himself, are all the English peers, +And with that odds he weighs King Richard down. +Post you to London, and you will find it so; +I speak no more than every one doth know. + +QUEEN: +Nimble mischance, that art so light of foot, +Doth not thy embassage belong to me, +And am I last that knows it? O, thou think'st +To serve me last, that I may longest keep +Thy sorrow in my breast. Come, ladies, go, +To meet at London London's king in woe. +What, was I born to this, that my sad look +Should grace the triumph of great Bolingbroke? +Gardener, for telling me these news of woe, +Pray God the plants thou graft'st may never grow. + +GARDENER: +Poor queen! so that thy state might be no worse, +I would my skill were subject to thy curse. +Here did she fall a tear; here in this place +I'll set a bank of rue, sour herb of grace: +Rue, even for ruth, here shortly shall be seen, +In the remembrance of a weeping queen. + +HENRY BOLINGBROKE: +Call forth Bagot. +Now, Bagot, freely speak thy mind; +What thou dost know of noble Gloucester's death, +Who wrought it with the king, and who perform'd +The bloody office of his timeless end. + +BAGOT: +Then set before my face the Lord Aumerle. + +HENRY BOLINGBROKE: +Cousin, stand forth, and look upon that man. + +BAGOT: +My Lord Aumerle, I know your daring tongue +Scorns to unsay what once it hath deliver'd. +In that dead time when Gloucester's death was plotted, +I heard you say, 'Is not my arm of length, +That reacheth from the restful English court +As far as Calais, to mine uncle's head?' +Amongst much other talk, that very time, +I heard you say that you had rather refuse +The offer of an hundred thousand crowns +Than Bolingbroke's return to England; +Adding withal how blest this land would be +In this your cousin's death. + +DUKE OF AUMERLE: +Princes and noble lords, +What answer shall I make to this base man? +Shall I so much dishonour my fair stars, +On equal terms to give him chastisement? +Either I must, or have mine honour soil'd +With the attainder of his slanderous lips. +There is my gage, the manual seal of death, +That marks thee out for hell: I say, thou liest, +And will maintain what thou hast said is false +In thy heart-blood, though being all too base +To stain the temper of my knightly sword. + +HENRY BOLINGBROKE: +Bagot, forbear; thou shalt not take it up. + +DUKE OF AUMERLE: +Excepting one, I would he were the best +In all this presence that hath moved me so. + +LORD FITZWATER: +If that thy valour stand on sympathy, +There is my gage, Aumerle, in gage to thine: +By that fair sun which shows me where thou stand'st, +I heard thee say, and vauntingly thou spakest it +That thou wert cause of noble Gloucester's death. +If thou deny'st it twenty times, thou liest; +And I will turn thy falsehood to thy heart, +Where it was forged, with my rapier's point. + +DUKE OF AUMERLE: +Thou darest not, coward, live to see that day. + +LORD FITZWATER: +Now by my soul, I would it were this hour. + +DUKE OF AUMERLE: +Fitzwater, thou art damn'd to hell for this. + +HENRY PERCY: +Aumerle, thou liest; his honour is as true +In this appeal as thou art all unjust; +And that thou art so, there I throw my gage, +To prove it on thee to the extremest point +Of mortal breathing: seize it, if thou darest. + +DUKE OF AUMERLE: +An if I do not, may my hands rot off +And never brandish more revengeful steel +Over the glittering helmet of my foe! + +Lord: +I task the earth to the like, forsworn Aumerle; +And spur thee on with full as many lies +As may be holloa'd in thy treacherous ear +From sun to sun: there is my honour's pawn; +Engage it to the trial, if thou darest. + +DUKE OF AUMERLE: +Who sets me else? by heaven, I'll throw at all: +I have a thousand spirits in one breast, +To answer twenty thousand such as you. + +DUKE OF SURREY: +My Lord Fitzwater, I do remember well +The very time Aumerle and you did talk. + +LORD FITZWATER: +'Tis very true: you were in presence then; +And you can witness with me this is true. + +DUKE OF SURREY: +As false, by heaven, as heaven itself is true. + +LORD FITZWATER: +Surrey, thou liest. + +DUKE OF SURREY: +Dishonourable boy! +That lie shall lie so heavy on my sword, +That it shall render vengeance and revenge +Till thou the lie-giver and that lie do lie +In earth as quiet as thy father's skull: +In proof whereof, there is my honour's pawn; +Engage it to the trial, if thou darest. + +LORD FITZWATER: +How fondly dost thou spur a forward horse! +If I dare eat, or drink, or breathe, or live, +I dare meet Surrey in a wilderness, +And spit upon him, whilst I say he lies, +And lies, and lies: there is my bond of faith, +To tie thee to my strong correction. +As I intend to thrive in this new world, +Aumerle is guilty of my true appeal: +Besides, I heard the banish'd Norfolk say +That thou, Aumerle, didst send two of thy men +To execute the noble duke at Calais. + +DUKE OF AUMERLE: +Some honest Christian trust me with a gage +That Norfolk lies: here do I throw down this, +If he may be repeal'd, to try his honour. + +HENRY BOLINGBROKE: +These differences shall all rest under gage +Till Norfolk be repeal'd: repeal'd he shall be, +And, though mine enemy, restored again +To all his lands and signories: when he's return'd, +Against Aumerle we will enforce his trial. + +BISHOP OF CARLISLE: +That honourable day shall ne'er be seen. +Many a time hath banish'd Norfolk fought +For Jesu Christ in glorious Christian field, +Streaming the ensign of the Christian cross +Against black pagans, Turks, and Saracens: +And toil'd with works of war, retired himself +To Italy; and there at Venice gave +His body to that pleasant country's earth, +And his pure soul unto his captain Christ, +Under whose colours he had fought so long. + +HENRY BOLINGBROKE: +Why, bishop, is Norfolk dead? + +BISHOP OF CARLISLE: +As surely as I live, my lord. + +HENRY BOLINGBROKE: +Sweet peace conduct his sweet soul to the bosom +Of good old Abraham! Lords appellants, +Your differences shall all rest under gage +Till we assign you to your days of trial. + +DUKE OF YORK: +Great Duke of Lancaster, I come to thee +From plume-pluck'd Richard; who with willing soul +Adopts thee heir, and his high sceptre yields +To the possession of thy royal hand: +Ascend his throne, descending now from him; +And long live Henry, fourth of that name! + +HENRY BOLINGBROKE: +In God's name, I'll ascend the regal throne. + +BISHOP OF CARLISLE: +Marry. God forbid! +Worst in this royal presence may I speak, +Yet best beseeming me to speak the truth. +Would God that any in this noble presence +Were enough noble to be upright judge +Of noble Richard! then true noblesse would +Learn him forbearance from so foul a wrong. +What subject can give sentence on his king? +And who sits here that is not Richard's subject? +Thieves are not judged but they are by to hear, +Although apparent guilt be seen in them; +And shall the figure of God's majesty, +His captain, steward, deputy-elect, +Anointed, crowned, planted many years, +Be judged by subject and inferior breath, +And he himself not present? O, forfend it, God, +That in a Christian climate souls refined +Should show so heinous, black, obscene a deed! +I speak to subjects, and a subject speaks, +Stirr'd up by God, thus boldly for his king: +My Lord of Hereford here, whom you call king, +Is a foul traitor to proud Hereford's king: +And if you crown him, let me prophesy: +The blood of English shall manure the ground, +And future ages groan for this foul act; +Peace shall go sleep with Turks and infidels, +And in this seat of peace tumultuous wars +Shall kin with kin and kind with kind confound; +Disorder, horror, fear and mutiny +Shall here inhabit, and this land be call'd +The field of Golgotha and dead men's skulls. +O, if you raise this house against this house, +It will the woefullest division prove +That ever fell upon this cursed earth. +Prevent it, resist it, let it not be so, +Lest child, child's children, cry against you woe! + +NORTHUMBERLAND: +Well have you argued, sir; and, for your pains, +Of capital treason we arrest you here. +My Lord of Westminster, be it your charge +To keep him safely till his day of trial. +May it please you, lords, to grant the commons' suit. + +HENRY BOLINGBROKE: +Fetch hither Richard, that in common view +He may surrender; so we shall proceed +Without suspicion. + +DUKE OF YORK: +I will be his conduct. + +HENRY BOLINGBROKE: +Lords, you that here are under our arrest, +Procure your sureties for your days of answer. +Little are we beholding to your love, +And little look'd for at your helping hands. + +KING RICHARD II: +Alack, why am I sent for to a king, +Before I have shook off the regal thoughts +Wherewith I reign'd? I hardly yet have learn'd +To insinuate, flatter, bow, and bend my limbs: +Give sorrow leave awhile to tutor me +To this submission. Yet I well remember +The favours of these men: were they not mine? +Did they not sometime cry, 'all hail!' to me? +So Judas did to Christ: but he, in twelve, +Found truth in all but one: I, in twelve thousand, none. +God save the king! Will no man say amen? +Am I both priest and clerk? well then, amen. +God save the king! although I be not he; +And yet, amen, if heaven do think him me. +To do what service am I sent for hither? + +DUKE OF YORK: +To do that office of thine own good will +Which tired majesty did make thee offer, +The resignation of thy state and crown +To Henry Bolingbroke. + +KING RICHARD II: +Give me the crown. Here, cousin, seize the crown; +Here cousin: +On this side my hand, and on that side yours. +Now is this golden crown like a deep well +That owes two buckets, filling one another, +The emptier ever dancing in the air, +The other down, unseen and full of water: +That bucket down and full of tears am I, +Drinking my griefs, whilst you mount up on high. + +HENRY BOLINGBROKE: +I thought you had been willing to resign. + +KING RICHARD II: +My crown I am; but still my griefs are mine: +You may my glories and my state depose, +But not my griefs; still am I king of those. + +HENRY BOLINGBROKE: +Part of your cares you give me with your crown. + +KING RICHARD II: +Your cares set up do not pluck my cares down. +My care is loss of care, by old care done; +Your care is gain of care, by new care won: +The cares I give I have, though given away; +They tend the crown, yet still with me they stay. + +HENRY BOLINGBROKE: +Are you contented to resign the crown? + +KING RICHARD II: +Ay, no; no, ay; for I must nothing be; +Therefore no no, for I resign to thee. +Now mark me, how I will undo myself; +I give this heavy weight from off my head +And this unwieldy sceptre from my hand, +The pride of kingly sway from out my heart; +With mine own tears I wash away my balm, +With mine own hands I give away my crown, +With mine own tongue deny my sacred state, +With mine own breath release all duty's rites: +All pomp and majesty I do forswear; +My manors, rents, revenues I forego; +My acts, decrees, and statutes I deny: +God pardon all oaths that are broke to me! +God keep all vows unbroke that swear to thee! +Make me, that nothing have, with nothing grieved, +And thou with all pleased, that hast all achieved! +Long mayst thou live in Richard's seat to sit, +And soon lie Richard in an earthly pit! +God save King Harry, unking'd Richard says, +And send him many years of sunshine days! +What more remains? + +NORTHUMBERLAND: +No more, but that you read +These accusations and these grievous crimes +Committed by your person and your followers +Against the state and profit of this land; +That, by confessing them, the souls of men +May deem that you are worthily deposed. + +KING RICHARD II: +Must I do so? and must I ravel out +My weaved-up folly? Gentle Northumberland, +If thy offences were upon record, +Would it not shame thee in so fair a troop +To read a lecture of them? If thou wouldst, +There shouldst thou find one heinous article, +Containing the deposing of a king +And cracking the strong warrant of an oath, +Mark'd with a blot, damn'd in the book of heaven: +Nay, all of you that stand and look upon, +Whilst that my wretchedness doth bait myself, +Though some of you with Pilate wash your hands +Showing an outward pity; yet you Pilates +Have here deliver'd me to my sour cross, +And water cannot wash away your sin. + +NORTHUMBERLAND: +My lord, dispatch; read o'er these articles. + +KING RICHARD II: +Mine eyes are full of tears, I cannot see: +And yet salt water blinds them not so much +But they can see a sort of traitors here. +Nay, if I turn mine eyes upon myself, +I find myself a traitor with the rest; +For I have given here my soul's consent +To undeck the pompous body of a king; +Made glory base and sovereignty a slave, +Proud majesty a subject, state a peasant. + +NORTHUMBERLAND: +My lord,-- + +KING RICHARD II: +No lord of thine, thou haught insulting man, +Nor no man's lord; I have no name, no title, +No, not that name was given me at the font, +But 'tis usurp'd: alack the heavy day, +That I have worn so many winters out, +And know not now what name to call myself! +O that I were a mockery king of snow, +Standing before the sun of Bolingbroke, +To melt myself away in water-drops! +Good king, great king, and yet not greatly good, +An if my word be sterling yet in England, +Let it command a mirror hither straight, +That it may show me what a face I have, +Since it is bankrupt of his majesty. + +HENRY BOLINGBROKE: +Go some of you and fetch a looking-glass. + +NORTHUMBERLAND: +Read o'er this paper while the glass doth come. + +KING RICHARD II: +Fiend, thou torment'st me ere I come to hell! + +HENRY BOLINGBROKE: +Urge it no more, my Lord Northumberland. + +NORTHUMBERLAND: +The commons will not then be satisfied. + +KING RICHARD II: +They shall be satisfied: I'll read enough, +When I do see the very book indeed +Where all my sins are writ, and that's myself. +Give me the glass, and therein will I read. +No deeper wrinkles yet? hath sorrow struck +So many blows upon this face of mine, +And made no deeper wounds? O flattering glass, +Like to my followers in prosperity, +Thou dost beguile me! Was this face the face +That every day under his household roof +Did keep ten thousand men? was this the face +That, like the sun, did make beholders wink? +Was this the face that faced so many follies, +And was at last out-faced by Bolingbroke? +A brittle glory shineth in this face: +As brittle as the glory is the face; +For there it is, crack'd in a hundred shivers. +Mark, silent king, the moral of this sport, +How soon my sorrow hath destroy'd my face. + +HENRY BOLINGBROKE: +The shadow of your sorrow hath destroy'd +The shadow or your face. + +KING RICHARD II: +Say that again. +The shadow of my sorrow! ha! let's see: +'Tis very true, my grief lies all within; +And these external manners of laments +Are merely shadows to the unseen grief +That swells with silence in the tortured soul; +There lies the substance: and I thank thee, king, +For thy great bounty, that not only givest +Me cause to wail but teachest me the way +How to lament the cause. I'll beg one boon, +And then be gone and trouble you no more. +Shall I obtain it? + +HENRY BOLINGBROKE: +Name it, fair cousin. + +KING RICHARD II: +'Fair cousin'? I am greater than a king: +For when I was a king, my flatterers +Were then but subjects; being now a subject, +I have a king here to my flatterer. +Being so great, I have no need to beg. + +HENRY BOLINGBROKE: +Yet ask. + +KING RICHARD II: +And shall I have? + +HENRY BOLINGBROKE: +You shall. + +KING RICHARD II: +Then give me leave to go. + +HENRY BOLINGBROKE: +Whither? + +KING RICHARD II: +Whither you will, so I were from your sights. + +HENRY BOLINGBROKE: +Go, some of you convey him to the Tower. + +KING RICHARD II: +O, good! convey? conveyers are you all, +That rise thus nimbly by a true king's fall. + +HENRY BOLINGBROKE: +On Wednesday next we solemnly set down +Our coronation: lords, prepare yourselves. + +Abbot: +A woeful pageant have we here beheld. + +BISHOP OF CARLISLE: +The woe's to come; the children yet unborn. +Shall feel this day as sharp to them as thorn. + +DUKE OF AUMERLE: +You holy clergymen, is there no plot +To rid the realm of this pernicious blot? + +Abbot: +My lord, +Before I freely speak my mind herein, +You shall not only take the sacrament +To bury mine intents, but also to effect +Whatever I shall happen to devise. +I see your brows are full of discontent, +Your hearts of sorrow and your eyes of tears: +Come home with me to supper; and I'll lay +A plot shall show us all a merry day. + +QUEEN: +This way the king will come; this is the way +To Julius Caesar's ill-erected tower, +To whose flint bosom my condemned lord +Is doom'd a prisoner by proud Bolingbroke: +Here let us rest, if this rebellious earth +Have any resting for her true king's queen. +But soft, but see, or rather do not see, +My fair rose wither: yet look up, behold, +That you in pity may dissolve to dew, +And wash him fresh again with true-love tears. +Ah, thou, the model where old Troy did stand, +Thou map of honour, thou King Richard's tomb, +And not King Richard; thou most beauteous inn, +Why should hard-favour'd grief be lodged in thee, +When triumph is become an alehouse guest? + +KING RICHARD II: +Join not with grief, fair woman, do not so, +To make my end too sudden: learn, good soul, +To think our former state a happy dream; +From which awaked, the truth of what we are +Shows us but this: I am sworn brother, sweet, +To grim Necessity, and he and I +Will keep a league till death. Hie thee to France +And cloister thee in some religious house: +Our holy lives must win a new world's crown, +Which our profane hours here have stricken down. + +QUEEN: +What, is my Richard both in shape and mind +Transform'd and weaken'd? hath Bolingbroke deposed +Thine intellect? hath he been in thy heart? +The lion dying thrusteth forth his paw, +And wounds the earth, if nothing else, with rage +To be o'erpower'd; and wilt thou, pupil-like, +Take thy correction mildly, kiss the rod, +And fawn on rage with base humility, +Which art a lion and a king of beasts? + +KING RICHARD II: +A king of beasts, indeed; if aught but beasts, +I had been still a happy king of men. +Good sometime queen, prepare thee hence for France: +Think I am dead and that even here thou takest, +As from my death-bed, thy last living leave. +In winter's tedious nights sit by the fire +With good old folks and let them tell thee tales +Of woeful ages long ago betid; +And ere thou bid good night, to quit their griefs, +Tell thou the lamentable tale of me +And send the hearers weeping to their beds: +For why, the senseless brands will sympathize +The heavy accent of thy moving tongue +And in compassion weep the fire out; +And some will mourn in ashes, some coal-black, +For the deposing of a rightful king. + +NORTHUMBERLAND: +My lord, the mind of Bolingbroke is changed: +You must to Pomfret, not unto the Tower. +And, madam, there is order ta'en for you; +With all swift speed you must away to France. + +KING RICHARD II: +Northumberland, thou ladder wherewithal +The mounting Bolingbroke ascends my throne, +The time shall not be many hours of age +More than it is ere foul sin gathering head +Shalt break into corruption: thou shalt think, +Though he divide the realm and give thee half, +It is too little, helping him to all; +And he shall think that thou, which know'st the way +To plant unrightful kings, wilt know again, +Being ne'er so little urged, another way +To pluck him headlong from the usurped throne. +The love of wicked men converts to fear; +That fear to hate, and hate turns one or both +To worthy danger and deserved death. + +NORTHUMBERLAND: +My guilt be on my head, and there an end. +Take leave and part; for you must part forthwith. + +KING RICHARD II: +Doubly divorced! Bad men, you violate +A twofold marriage, 'twixt my crown and me, +And then betwixt me and my married wife. +Let me unkiss the oath 'twixt thee and me; +And yet not so, for with a kiss 'twas made. +Part us, Northumberland; I toward the north, +Where shivering cold and sickness pines the clime; +My wife to France: from whence, set forth in pomp, +She came adorned hither like sweet May, +Sent back like Hallowmas or short'st of day. + +QUEEN: +And must we be divided? must we part? + +KING RICHARD II: +Ay, hand from hand, my love, and heart from heart. + +QUEEN: +Banish us both and send the king with me. + +NORTHUMBERLAND: +That were some love but little policy. + +QUEEN: +Then whither he goes, thither let me go. + +KING RICHARD II: +So two, together weeping, make one woe. +Weep thou for me in France, I for thee here; +Better far off than near, be ne'er the near. +Go, count thy way with sighs; I mine with groans. + +QUEEN: +So longest way shall have the longest moans. + +KING RICHARD II: +Twice for one step I'll groan, the way being short, +And piece the way out with a heavy heart. +Come, come, in wooing sorrow let's be brief, +Since, wedding it, there is such length in grief; +One kiss shall stop our mouths, and dumbly part; +Thus give I mine, and thus take I thy heart. + +QUEEN: +Give me mine own again; 'twere no good part +To take on me to keep and kill thy heart. +So, now I have mine own again, be gone, +That I might strive to kill it with a groan. + +KING RICHARD II: +We make woe wanton with this fond delay: +Once more, adieu; the rest let sorrow say. + +DUCHESS OF YORK: +My lord, you told me you would tell the rest, +When weeping made you break the story off, +of our two cousins coming into London. + +DUKE OF YORK: +Where did I leave? + +DUCHESS OF YORK: +At that sad stop, my lord, +Where rude misgovern'd hands from windows' tops +Threw dust and rubbish on King Richard's head. + +DUKE OF YORK: +Then, as I said, the duke, great Bolingbroke, +Mounted upon a hot and fiery steed +Which his aspiring rider seem'd to know, +With slow but stately pace kept on his course, +Whilst all tongues cried 'God save thee, +Bolingbroke!' +You would have thought the very windows spake, +So many greedy looks of young and old +Through casements darted their desiring eyes +Upon his visage, and that all the walls +With painted imagery had said at once +'Jesu preserve thee! welcome, Bolingbroke!' +Whilst he, from the one side to the other turning, +Bareheaded, lower than his proud steed's neck, +Bespake them thus: 'I thank you, countrymen:' +And thus still doing, thus he pass'd along. + +DUCHESS OF YORK: +Alack, poor Richard! where rode he the whilst? + +DUKE OF YORK: +As in a theatre, the eyes of men, +After a well-graced actor leaves the stage, +Are idly bent on him that enters next, +Thinking his prattle to be tedious; +Even so, or with much more contempt, men's eyes +Did scowl on gentle Richard; no man cried 'God save him!' +No joyful tongue gave him his welcome home: +But dust was thrown upon his sacred head: +Which with such gentle sorrow he shook off, +His face still combating with tears and smiles, +The badges of his grief and patience, +That had not God, for some strong purpose, steel'd +The hearts of men, they must perforce have melted +And barbarism itself have pitied him. +But heaven hath a hand in these events, +To whose high will we bound our calm contents. +To Bolingbroke are we sworn subjects now, +Whose state and honour I for aye allow. + +DUCHESS OF YORK: +Here comes my son Aumerle. + +DUKE OF YORK: +Aumerle that was; +But that is lost for being Richard's friend, +And, madam, you must call him Rutland now: +I am in parliament pledge for his truth +And lasting fealty to the new-made king. + +DUCHESS OF YORK: +Welcome, my son: who are the violets now +That strew the green lap of the new come spring? + +DUKE OF AUMERLE: +Madam, I know not, nor I greatly care not: +God knows I had as lief be none as one. + +DUKE OF YORK: +Well, bear you well in this new spring of time, +Lest you be cropp'd before you come to prime. +What news from Oxford? hold those justs and triumphs? + +DUKE OF AUMERLE: +For aught I know, my lord, they do. + +DUKE OF YORK: +You will be there, I know. + +DUKE OF AUMERLE: +If God prevent not, I purpose so. + +DUKE OF YORK: +What seal is that, that hangs without thy bosom? +Yea, look'st thou pale? let me see the writing. + +DUKE OF AUMERLE: +My lord, 'tis nothing. + +DUKE OF YORK: +No matter, then, who see it; +I will be satisfied; let me see the writing. + +DUKE OF AUMERLE: +I do beseech your grace to pardon me: +It is a matter of small consequence, +Which for some reasons I would not have seen. + +DUKE OF YORK: +Which for some reasons, sir, I mean to see. +I fear, I fear,-- + +DUCHESS OF YORK: +What should you fear? +'Tis nothing but some bond, that he is enter'd into +For gay apparel 'gainst the triumph day. + +DUKE OF YORK: +Bound to himself! what doth he with a bond +That he is bound to? Wife, thou art a fool. +Boy, let me see the writing. + +DUKE OF AUMERLE: +I do beseech you, pardon me; I may not show it. + +DUKE OF YORK: +I will be satisfied; let me see it, I say. +Treason! foul treason! Villain! traitor! slave! + +DUCHESS OF YORK: +What is the matter, my lord? + +DUKE OF YORK: +Ho! who is within there? +Saddle my horse. +God for his mercy, what treachery is here! + +DUCHESS OF YORK: +Why, what is it, my lord? + +DUKE OF YORK: +Give me my boots, I say; saddle my horse. +Now, by mine honour, by my life, by my troth, +I will appeach the villain. + +DUCHESS OF YORK: +What is the matter? + +DUKE OF YORK: +Peace, foolish woman. + +DUCHESS OF YORK: +I will not peace. What is the matter, Aumerle. + +DUKE OF AUMERLE: +Good mother, be content; it is no more +Than my poor life must answer. + +DUCHESS OF YORK: +Thy life answer! + +DUKE OF YORK: +Bring me my boots: I will unto the king. + +DUCHESS OF YORK: +Strike him, Aumerle. Poor boy, thou art amazed. +Hence, villain! never more come in my sight. + +DUKE OF YORK: +Give me my boots, I say. + +DUCHESS OF YORK: +Why, York, what wilt thou do? +Wilt thou not hide the trespass of thine own? +Have we more sons? or are we like to have? +Is not my teeming date drunk up with time? +And wilt thou pluck my fair son from mine age, +And rob me of a happy mother's name? +Is he not like thee? is he not thine own? + +DUKE OF YORK: +Thou fond mad woman, +Wilt thou conceal this dark conspiracy? +A dozen of them here have ta'en the sacrament, +And interchangeably set down their hands, +To kill the king at Oxford. + +DUCHESS OF YORK: +He shall be none; +We'll keep him here: then what is that to him? + +DUKE OF YORK: +Away, fond woman! were he twenty times my son, +I would appeach him. + +DUCHESS OF YORK: +Hadst thou groan'd for him +As I have done, thou wouldst be more pitiful. +But now I know thy mind; thou dost suspect +That I have been disloyal to thy bed, +And that he is a bastard, not thy son: +Sweet York, sweet husband, be not of that mind: +He is as like thee as a man may be, +Not like to me, or any of my kin, +And yet I love him. + +DUKE OF YORK: +Make way, unruly woman! + +DUCHESS OF YORK: +After, Aumerle! mount thee upon his horse; +Spur post, and get before him to the king, +And beg thy pardon ere he do accuse thee. +I'll not be long behind; though I be old, +I doubt not but to ride as fast as York: +And never will I rise up from the ground +Till Bolingbroke have pardon'd thee. Away, be gone! + +HENRY BOLINGBROKE: +Can no man tell me of my unthrifty son? +'Tis full three months since I did see him last; +If any plague hang over us, 'tis he. +I would to God, my lords, he might be found: +Inquire at London, 'mongst the taverns there, +For there, they say, he daily doth frequent, +With unrestrained loose companions, +Even such, they say, as stand in narrow lanes, +And beat our watch, and rob our passengers; +Which he, young wanton and effeminate boy, +Takes on the point of honour to support +So dissolute a crew. + +HENRY PERCY: +My lord, some two days since I saw the prince, +And told him of those triumphs held at Oxford. + +HENRY BOLINGBROKE: +And what said the gallant? + +HENRY PERCY: +His answer was, he would unto the stews, +And from the common'st creature pluck a glove, +And wear it as a favour; and with that +He would unhorse the lustiest challenger. + +HENRY BOLINGBROKE: +As dissolute as desperate; yet through both +I see some sparks of better hope, which elder years +May happily bring forth. But who comes here? + +DUKE OF AUMERLE: +Where is the king? + +HENRY BOLINGBROKE: +What means our cousin, that he stares and looks +So wildly? + +DUKE OF AUMERLE: +God save your grace! I do beseech your majesty, +To have some conference with your grace alone. + +HENRY BOLINGBROKE: +Withdraw yourselves, and leave us here alone. +What is the matter with our cousin now? + +DUKE OF AUMERLE: +For ever may my knees grow to the earth, +My tongue cleave to my roof within my mouth +Unless a pardon ere I rise or speak. + +HENRY BOLINGBROKE: +Intended or committed was this fault? +If on the first, how heinous e'er it be, +To win thy after-love I pardon thee. + +DUKE OF AUMERLE: +Then give me leave that I may turn the key, +That no man enter till my tale be done. + +HENRY BOLINGBROKE: +Have thy desire. + +DUKE OF YORK: + +HENRY BOLINGBROKE: +Villain, I'll make thee safe. + +DUKE OF AUMERLE: +Stay thy revengeful hand; thou hast no cause to fear. + +DUKE OF YORK: + +HENRY BOLINGBROKE: +What is the matter, uncle? speak; +Recover breath; tell us how near is danger, +That we may arm us to encounter it. + +DUKE OF YORK: +Peruse this writing here, and thou shalt know +The treason that my haste forbids me show. + +DUKE OF AUMERLE: +Remember, as thou read'st, thy promise pass'd: +I do repent me; read not my name there +My heart is not confederate with my hand. + +DUKE OF YORK: +It was, villain, ere thy hand did set it down. +I tore it from the traitor's bosom, king; +Fear, and not love, begets his penitence: +Forget to pity him, lest thy pity prove +A serpent that will sting thee to the heart. + +HENRY BOLINGBROKE: +O heinous, strong and bold conspiracy! +O loyal father of a treacherous son! +Thou sheer, immaculate and silver fountain, +From when this stream through muddy passages +Hath held his current and defiled himself! +Thy overflow of good converts to bad, +And thy abundant goodness shall excuse +This deadly blot in thy digressing son. + +DUKE OF YORK: +So shall my virtue be his vice's bawd; +And he shall spend mine honour with his shame, +As thriftless sons their scraping fathers' gold. +Mine honour lives when his dishonour dies, +Or my shamed life in his dishonour lies: +Thou kill'st me in his life; giving him breath, +The traitor lives, the true man's put to death. + +DUCHESS OF YORK: + +HENRY BOLINGBROKE: +What shrill-voiced suppliant makes this eager cry? + +DUCHESS OF YORK: +A woman, and thy aunt, great king; 'tis I. +Speak with me, pity me, open the door. +A beggar begs that never begg'd before. + +HENRY BOLINGBROKE: +Our scene is alter'd from a serious thing, +And now changed to 'The Beggar and the King.' +My dangerous cousin, let your mother in: +I know she is come to pray for your foul sin. + +DUKE OF YORK: +If thou do pardon, whosoever pray, +More sins for this forgiveness prosper may. +This fester'd joint cut off, the rest rest sound; +This let alone will all the rest confound. + +DUCHESS OF YORK: +O king, believe not this hard-hearted man! +Love loving not itself none other can. + +DUKE OF YORK: +Thou frantic woman, what dost thou make here? +Shall thy old dugs once more a traitor rear? + +DUCHESS OF YORK: +Sweet York, be patient. Hear me, gentle liege. + +HENRY BOLINGBROKE: +Rise up, good aunt. + +DUCHESS OF YORK: +Not yet, I thee beseech: +For ever will I walk upon my knees, +And never see day that the happy sees, +Till thou give joy; until thou bid me joy, +By pardoning Rutland, my transgressing boy. + +DUKE OF AUMERLE: +Unto my mother's prayers I bend my knee. + +DUKE OF YORK: +Against them both my true joints bended be. +Ill mayst thou thrive, if thou grant any grace! + +DUCHESS OF YORK: +Pleads he in earnest? look upon his face; +His eyes do drop no tears, his prayers are in jest; +His words come from his mouth, ours from our breast: +He prays but faintly and would be denied; +We pray with heart and soul and all beside: +His weary joints would gladly rise, I know; +Our knees shall kneel till to the ground they grow: +His prayers are full of false hypocrisy; +Ours of true zeal and deep integrity. +Our prayers do out-pray his; then let them have +That mercy which true prayer ought to have. + +HENRY BOLINGBROKE: +Good aunt, stand up. + +DUCHESS OF YORK: +Nay, do not say, 'stand up;' +Say, 'pardon' first, and afterwards 'stand up.' +And if I were thy nurse, thy tongue to teach, +'Pardon' should be the first word of thy speech. +I never long'd to hear a word till now; +Say 'pardon,' king; let pity teach thee how: +The word is short, but not so short as sweet; +No word like 'pardon' for kings' mouths so meet. + +DUKE OF YORK: +Speak it in French, king; say, 'pardonne moi.' + +DUCHESS OF YORK: +Dost thou teach pardon pardon to destroy? +Ah, my sour husband, my hard-hearted lord, +That set'st the word itself against the word! +Speak 'pardon' as 'tis current in our land; +The chopping French we do not understand. +Thine eye begins to speak; set thy tongue there; +Or in thy piteous heart plant thou thine ear; +That hearing how our plaints and prayers do pierce, +Pity may move thee 'pardon' to rehearse. + +HENRY BOLINGBROKE: +Good aunt, stand up. + +DUCHESS OF YORK: +I do not sue to stand; +Pardon is all the suit I have in hand. + +HENRY BOLINGBROKE: +I pardon him, as God shall pardon me. + +DUCHESS OF YORK: +O happy vantage of a kneeling knee! +Yet am I sick for fear: speak it again; +Twice saying 'pardon' doth not pardon twain, +But makes one pardon strong. + +HENRY BOLINGBROKE: +With all my heart +I pardon him. + +DUCHESS OF YORK: +A god on earth thou art. + +HENRY BOLINGBROKE: +But for our trusty brother-in-law and the abbot, +With all the rest of that consorted crew, +Destruction straight shall dog them at the heels. +Good uncle, help to order several powers +To Oxford, or where'er these traitors are: +They shall not live within this world, I swear, +But I will have them, if I once know where. +Uncle, farewell: and, cousin too, adieu: +Your mother well hath pray'd, and prove you true. + +DUCHESS OF YORK: +Come, my old son: I pray God make thee new. + +EXTON: +Didst thou not mark the king, what words he spake, +'Have I no friend will rid me of this living fear?' +Was it not so? + +Servant: +These were his very words. + +EXTON: +'Have I no friend?' quoth he: he spake it twice, +And urged it twice together, did he not? + +Servant: +He did. + +EXTON: +And speaking it, he wistly look'd on me, +And who should say, 'I would thou wert the man' +That would divorce this terror from my heart;' +Meaning the king at Pomfret. Come, let's go: +I am the king's friend, and will rid his foe. + +KING RICHARD II: +I have been studying how I may compare +This prison where I live unto the world: +And for because the world is populous +And here is not a creature but myself, +I cannot do it; yet I'll hammer it out. +My brain I'll prove the female to my soul, +My soul the father; and these two beget +A generation of still-breeding thoughts, +And these same thoughts people this little world, +In humours like the people of this world, +For no thought is contented. The better sort, +As thoughts of things divine, are intermix'd +With scruples and do set the word itself +Against the word: +As thus, 'Come, little ones,' and then again, +'It is as hard to come as for a camel +To thread the postern of a small needle's eye.' +Thoughts tending to ambition, they do plot +Unlikely wonders; how these vain weak nails +May tear a passage through the flinty ribs +Of this hard world, my ragged prison walls, +And, for they cannot, die in their own pride. +Thoughts tending to content flatter themselves +That they are not the first of fortune's slaves, +Nor shall not be the last; like silly beggars +Who sitting in the stocks refuge their shame, +That many have and others must sit there; +And in this thought they find a kind of ease, +Bearing their own misfortunes on the back +Of such as have before endured the like. +Thus play I in one person many people, +And none contented: sometimes am I king; +Then treasons make me wish myself a beggar, +And so I am: then crushing penury +Persuades me I was better when a king; +Then am I king'd again: and by and by +Think that I am unking'd by Bolingbroke, +And straight am nothing: but whate'er I be, +Nor I nor any man that but man is +With nothing shall be pleased, till he be eased +With being nothing. Music do I hear? +Ha, ha! keep time: how sour sweet music is, +When time is broke and no proportion kept! +So is it in the music of men's lives. +And here have I the daintiness of ear +To cheque time broke in a disorder'd string; +But for the concord of my state and time +Had not an ear to hear my true time broke. +I wasted time, and now doth time waste me; +For now hath time made me his numbering clock: +My thoughts are minutes; and with sighs they jar +Their watches on unto mine eyes, the outward watch, +Whereto my finger, like a dial's point, +Is pointing still, in cleansing them from tears. +Now sir, the sound that tells what hour it is +Are clamorous groans, which strike upon my heart, +Which is the bell: so sighs and tears and groans +Show minutes, times, and hours: but my time +Runs posting on in Bolingbroke's proud joy, +While I stand fooling here, his Jack o' the clock. +This music mads me; let it sound no more; +For though it have holp madmen to their wits, +In me it seems it will make wise men mad. +Yet blessing on his heart that gives it me! +For 'tis a sign of love; and love to Richard +Is a strange brooch in this all-hating world. + +Groom: +Hail, royal prince! + +KING RICHARD II: +Thanks, noble peer; +The cheapest of us is ten groats too dear. +What art thou? and how comest thou hither, +Where no man never comes but that sad dog +That brings me food to make misfortune live? + +Groom: +I was a poor groom of thy stable, king, +When thou wert king; who, travelling towards York, +With much ado at length have gotten leave +To look upon my sometimes royal master's face. +O, how it yearn'd my heart when I beheld +In London streets, that coronation-day, +When Bolingbroke rode on roan Barbary, +That horse that thou so often hast bestrid, +That horse that I so carefully have dress'd! + +KING RICHARD II: +Rode he on Barbary? Tell me, gentle friend, +How went he under him? + +Groom: +So proudly as if he disdain'd the ground. + +KING RICHARD II: +So proud that Bolingbroke was on his back! +That jade hath eat bread from my royal hand; +This hand hath made him proud with clapping him. +Would he not stumble? would he not fall down, +Since pride must have a fall, and break the neck +Of that proud man that did usurp his back? +Forgiveness, horse! why do I rail on thee, +Since thou, created to be awed by man, +Wast born to bear? I was not made a horse; +And yet I bear a burthen like an ass, +Spurr'd, gall'd and tired by jouncing Bolingbroke. + +Keeper: +Fellow, give place; here is no longer stay. + +KING RICHARD II: +If thou love me, 'tis time thou wert away. + +Groom: +What my tongue dares not, that my heart shall say. + +Keeper: +My lord, will't please you to fall to? + +KING RICHARD II: +Taste of it first, as thou art wont to do. + +Keeper: +My lord, I dare not: Sir Pierce of Exton, who +lately came from the king, commands the contrary. + +KING RICHARD II: +The devil take Henry of Lancaster and thee! +Patience is stale, and I am weary of it. + +Keeper: +Help, help, help! + +KING RICHARD II: +How now! what means death in this rude assault? +Villain, thy own hand yields thy death's instrument. +Go thou, and fill another room in hell. +That hand shall burn in never-quenching fire +That staggers thus my person. Exton, thy fierce hand +Hath with the king's blood stain'd the king's own land. +Mount, mount, my soul! thy seat is up on high; +Whilst my gross flesh sinks downward, here to die. + +EXTON: +As full of valour as of royal blood: +Both have I spill'd; O would the deed were good! +For now the devil, that told me I did well, +Says that this deed is chronicled in hell. +This dead king to the living king I'll bear +Take hence the rest, and give them burial here. + +HENRY BOLINGBROKE: +Kind uncle York, the latest news we hear +Is that the rebels have consumed with fire +Our town of Cicester in Gloucestershire; +But whether they be ta'en or slain we hear not. +Welcome, my lord what is the news? + +NORTHUMBERLAND: +First, to thy sacred state wish I all happiness. +The next news is, I have to London sent +The heads of Oxford, Salisbury, Blunt, and Kent: +The manner of their taking may appear +At large discoursed in this paper here. + +HENRY BOLINGBROKE: +We thank thee, gentle Percy, for thy pains; +And to thy worth will add right worthy gains. + +LORD FITZWATER: +My lord, I have from Oxford sent to London +The heads of Brocas and Sir Bennet Seely, +Two of the dangerous consorted traitors +That sought at Oxford thy dire overthrow. + +HENRY BOLINGBROKE: +Thy pains, Fitzwater, shall not be forgot; +Right noble is thy merit, well I wot. + +HENRY PERCY: +The grand conspirator, Abbot of Westminster, +With clog of conscience and sour melancholy +Hath yielded up his body to the grave; +But here is Carlisle living, to abide +Thy kingly doom and sentence of his pride. + +HENRY BOLINGBROKE: +Carlisle, this is your doom: +Choose out some secret place, some reverend room, +More than thou hast, and with it joy thy life; +So as thou livest in peace, die free from strife: +For though mine enemy thou hast ever been, +High sparks of honour in thee have I seen. + +EXTON: +Great king, within this coffin I present +Thy buried fear: herein all breathless lies +The mightiest of thy greatest enemies, +Richard of Bordeaux, by me hither brought. + +HENRY BOLINGBROKE: +Exton, I thank thee not; for thou hast wrought +A deed of slander with thy fatal hand +Upon my head and all this famous land. + +EXTON: +From your own mouth, my lord, did I this deed. + +HENRY BOLINGBROKE: +They love not poison that do poison need, +Nor do I thee: though I did wish him dead, +I hate the murderer, love him murdered. +The guilt of conscience take thou for thy labour, +But neither my good word nor princely favour: +With Cain go wander through shades of night, +And never show thy head by day nor light. +Lords, I protest, my soul is full of woe, +That blood should sprinkle me to make me grow: +Come, mourn with me for that I do lament, +And put on sullen black incontinent: +I'll make a voyage to the Holy Land, +To wash this blood off from my guilty hand: +March sadly after; grace my mournings here; +In weeping after this untimely bier. + + +SAMPSON: +Gregory, o' my word, we'll not carry coals. + +GREGORY: +No, for then we should be colliers. + +SAMPSON: +I mean, an we be in choler, we'll draw. + +GREGORY: +Ay, while you live, draw your neck out o' the collar. + +SAMPSON: +I strike quickly, being moved. + +GREGORY: +But thou art not quickly moved to strike. + +SAMPSON: +A dog of the house of Montague moves me. + +GREGORY: +To move is to stir; and to be valiant is to stand: +therefore, if thou art moved, thou runn'st away. + +SAMPSON: +A dog of that house shall move me to stand: I will +take the wall of any man or maid of Montague's. + +GREGORY: +That shows thee a weak slave; for the weakest goes +to the wall. + +SAMPSON: +True; and therefore women, being the weaker vessels, +are ever thrust to the wall: therefore I will push +Montague's men from the wall, and thrust his maids +to the wall. + +GREGORY: +The quarrel is between our masters and us their men. + +SAMPSON: +'Tis all one, I will show myself a tyrant: when I +have fought with the men, I will be cruel with the +maids, and cut off their heads. + +GREGORY: +The heads of the maids? + +SAMPSON: +Ay, the heads of the maids, or their maidenheads; +take it in what sense thou wilt. + +GREGORY: +They must take it in sense that feel it. + +SAMPSON: +Me they shall feel while I am able to stand: and +'tis known I am a pretty piece of flesh. + +GREGORY: +'Tis well thou art not fish; if thou hadst, thou +hadst been poor John. Draw thy tool! here comes +two of the house of the Montagues. + +SAMPSON: +My naked weapon is out: quarrel, I will back thee. + +GREGORY: +How! turn thy back and run? + +SAMPSON: +Fear me not. + +GREGORY: +No, marry; I fear thee! + +SAMPSON: +Let us take the law of our sides; let them begin. + +GREGORY: +I will frown as I pass by, and let them take it as +they list. + +SAMPSON: +Nay, as they dare. I will bite my thumb at them; +which is a disgrace to them, if they bear it. + +ABRAHAM: +Do you bite your thumb at us, sir? + +SAMPSON: +I do bite my thumb, sir. + +ABRAHAM: +Do you bite your thumb at us, sir? + +SAMPSON: + +GREGORY: +No. + +SAMPSON: +No, sir, I do not bite my thumb at you, sir, but I +bite my thumb, sir. + +GREGORY: +Do you quarrel, sir? + +ABRAHAM: +Quarrel sir! no, sir. + +SAMPSON: +If you do, sir, I am for you: I serve as good a man as you. + +ABRAHAM: +No better. + +SAMPSON: +Well, sir. + +GREGORY: +Say 'better:' here comes one of my master's kinsmen. + +SAMPSON: +Yes, better, sir. + +ABRAHAM: +You lie. + +SAMPSON: +Draw, if you be men. Gregory, remember thy swashing blow. + +BENVOLIO: +Part, fools! +Put up your swords; you know not what you do. + +TYBALT: +What, art thou drawn among these heartless hinds? +Turn thee, Benvolio, look upon thy death. + +BENVOLIO: +I do but keep the peace: put up thy sword, +Or manage it to part these men with me. + +TYBALT: +What, drawn, and talk of peace! I hate the word, +As I hate hell, all Montagues, and thee: +Have at thee, coward! + +First Citizen: +Clubs, bills, and partisans! strike! beat them down! +Down with the Capulets! down with the Montagues! + +CAPULET: +What noise is this? Give me my long sword, ho! + +LADY CAPULET: +A crutch, a crutch! why call you for a sword? + +CAPULET: +My sword, I say! Old Montague is come, +And flourishes his blade in spite of me. + +MONTAGUE: +Thou villain Capulet,--Hold me not, let me go. + +LADY MONTAGUE: +Thou shalt not stir a foot to seek a foe. + +PRINCE: +Rebellious subjects, enemies to peace, +Profaners of this neighbour-stained steel,-- +Will they not hear? What, ho! you men, you beasts, +That quench the fire of your pernicious rage +With purple fountains issuing from your veins, +On pain of torture, from those bloody hands +Throw your mistemper'd weapons to the ground, +And hear the sentence of your moved prince. +Three civil brawls, bred of an airy word, +By thee, old Capulet, and Montague, +Have thrice disturb'd the quiet of our streets, +And made Verona's ancient citizens +Cast by their grave beseeming ornaments, +To wield old partisans, in hands as old, +Canker'd with peace, to part your canker'd hate: +If ever you disturb our streets again, +Your lives shall pay the forfeit of the peace. +For this time, all the rest depart away: +You Capulet; shall go along with me: +And, Montague, come you this afternoon, +To know our further pleasure in this case, +To old Free-town, our common judgment-place. +Once more, on pain of death, all men depart. + +MONTAGUE: +Who set this ancient quarrel new abroach? +Speak, nephew, were you by when it began? + +BENVOLIO: +Here were the servants of your adversary, +And yours, close fighting ere I did approach: +I drew to part them: in the instant came +The fiery Tybalt, with his sword prepared, +Which, as he breathed defiance to my ears, +He swung about his head and cut the winds, +Who nothing hurt withal hiss'd him in scorn: +While we were interchanging thrusts and blows, +Came more and more and fought on part and part, +Till the prince came, who parted either part. + +LADY MONTAGUE: +O, where is Romeo? saw you him to-day? +Right glad I am he was not at this fray. + +BENVOLIO: +Madam, an hour before the worshipp'd sun +Peer'd forth the golden window of the east, +A troubled mind drave me to walk abroad; +Where, underneath the grove of sycamore +That westward rooteth from the city's side, +So early walking did I see your son: +Towards him I made, but he was ware of me +And stole into the covert of the wood: +I, measuring his affections by my own, +That most are busied when they're most alone, +Pursued my humour not pursuing his, +And gladly shunn'd who gladly fled from me. + +MONTAGUE: +Many a morning hath he there been seen, +With tears augmenting the fresh morning dew. +Adding to clouds more clouds with his deep sighs; +But all so soon as the all-cheering sun +Should in the furthest east begin to draw +The shady curtains from Aurora's bed, +Away from the light steals home my heavy son, +And private in his chamber pens himself, +Shuts up his windows, locks far daylight out +And makes himself an artificial night: +Black and portentous must this humour prove, +Unless good counsel may the cause remove. + +BENVOLIO: +My noble uncle, do you know the cause? + +MONTAGUE: +I neither know it nor can learn of him. + +BENVOLIO: +Have you importuned him by any means? + +MONTAGUE: +Both by myself and many other friends: +But he, his own affections' counsellor, +Is to himself--I will not say how true-- +But to himself so secret and so close, +So far from sounding and discovery, +As is the bud bit with an envious worm, +Ere he can spread his sweet leaves to the air, +Or dedicate his beauty to the sun. +Could we but learn from whence his sorrows grow. +We would as willingly give cure as know. + +BENVOLIO: +See, where he comes: so please you, step aside; +I'll know his grievance, or be much denied. + +MONTAGUE: +I would thou wert so happy by thy stay, +To hear true shrift. Come, madam, let's away. + +BENVOLIO: +Good-morrow, cousin. + +ROMEO: +Is the day so young? + +BENVOLIO: +But new struck nine. + +ROMEO: +Ay me! sad hours seem long. +Was that my father that went hence so fast? + +BENVOLIO: +It was. What sadness lengthens Romeo's hours? + +ROMEO: +Not having that, which, having, makes them short. + +BENVOLIO: +In love? + +ROMEO: +Out-- + +BENVOLIO: +Of love? + +ROMEO: +Out of her favour, where I am in love. + +BENVOLIO: +Alas, that love, so gentle in his view, +Should be so tyrannous and rough in proof! + +ROMEO: +Alas, that love, whose view is muffled still, +Should, without eyes, see pathways to his will! +Where shall we dine? O me! What fray was here? +Yet tell me not, for I have heard it all. +Here's much to do with hate, but more with love. +Why, then, O brawling love! O loving hate! +O any thing, of nothing first create! +O heavy lightness! serious vanity! +Mis-shapen chaos of well-seeming forms! +Feather of lead, bright smoke, cold fire, +sick health! +Still-waking sleep, that is not what it is! +This love feel I, that feel no love in this. +Dost thou not laugh? + +BENVOLIO: +No, coz, I rather weep. + +ROMEO: +Good heart, at what? + +BENVOLIO: +At thy good heart's oppression. + +ROMEO: +Why, such is love's transgression. +Griefs of mine own lie heavy in my breast, +Which thou wilt propagate, to have it prest +With more of thine: this love that thou hast shown +Doth add more grief to too much of mine own. +Love is a smoke raised with the fume of sighs; +Being purged, a fire sparkling in lovers' eyes; +Being vex'd a sea nourish'd with lovers' tears: +What is it else? a madness most discreet, +A choking gall and a preserving sweet. +Farewell, my coz. + +BENVOLIO: +Soft! I will go along; +An if you leave me so, you do me wrong. + +ROMEO: +Tut, I have lost myself; I am not here; +This is not Romeo, he's some other where. + +BENVOLIO: +Tell me in sadness, who is that you love. + +ROMEO: +What, shall I groan and tell thee? + +BENVOLIO: +Groan! why, no. +But sadly tell me who. + +ROMEO: +Bid a sick man in sadness make his will: +Ah, word ill urged to one that is so ill! +In sadness, cousin, I do love a woman. + +BENVOLIO: +I aim'd so near, when I supposed you loved. + +ROMEO: +A right good mark-man! And she's fair I love. + +BENVOLIO: +A right fair mark, fair coz, is soonest hit. + +ROMEO: +Well, in that hit you miss: she'll not be hit +With Cupid's arrow; she hath Dian's wit; +And, in strong proof of chastity well arm'd, +From love's weak childish bow she lives unharm'd. +She will not stay the siege of loving terms, +Nor bide the encounter of assailing eyes, +Nor ope her lap to saint-seducing gold: +O, she is rich in beauty, only poor, +That when she dies with beauty dies her store. + +BENVOLIO: +Then she hath sworn that she will still live chaste? + +ROMEO: +She hath, and in that sparing makes huge waste, +For beauty starved with her severity +Cuts beauty off from all posterity. +She is too fair, too wise, wisely too fair, +To merit bliss by making me despair: +She hath forsworn to love, and in that vow +Do I live dead that live to tell it now. + +BENVOLIO: +Be ruled by me, forget to think of her. + +ROMEO: +O, teach me how I should forget to think. + +BENVOLIO: +By giving liberty unto thine eyes; +Examine other beauties. + +ROMEO: +'Tis the way +To call hers exquisite, in question more: +These happy masks that kiss fair ladies' brows +Being black put us in mind they hide the fair; +He that is strucken blind cannot forget +The precious treasure of his eyesight lost: +Show me a mistress that is passing fair, +What doth her beauty serve, but as a note +Where I may read who pass'd that passing fair? +Farewell: thou canst not teach me to forget. + +BENVOLIO: +I'll pay that doctrine, or else die in debt. + +CAPULET: +But Montague is bound as well as I, +In penalty alike; and 'tis not hard, I think, +For men so old as we to keep the peace. + +PARIS: +Of honourable reckoning are you both; +And pity 'tis you lived at odds so long. +But now, my lord, what say you to my suit? + +CAPULET: +But saying o'er what I have said before: +My child is yet a stranger in the world; +She hath not seen the change of fourteen years, +Let two more summers wither in their pride, +Ere we may think her ripe to be a bride. + +PARIS: +Younger than she are happy mothers made. + +CAPULET: +And too soon marr'd are those so early made. +The earth hath swallow'd all my hopes but she, +She is the hopeful lady of my earth: +But woo her, gentle Paris, get her heart, +My will to her consent is but a part; +An she agree, within her scope of choice +Lies my consent and fair according voice. +This night I hold an old accustom'd feast, +Whereto I have invited many a guest, +Such as I love; and you, among the store, +One more, most welcome, makes my number more. +At my poor house look to behold this night +Earth-treading stars that make dark heaven light: +Such comfort as do lusty young men feel +When well-apparell'd April on the heel +Of limping winter treads, even such delight +Among fresh female buds shall you this night +Inherit at my house; hear all, all see, +And like her most whose merit most shall be: +Which on more view, of many mine being one +May stand in number, though in reckoning none, +Come, go with me. +Go, sirrah, trudge about +Through fair Verona; find those persons out +Whose names are written there, and to them say, +My house and welcome on their pleasure stay. + +Servant: +Find them out whose names are written here! It is +written, that the shoemaker should meddle with his +yard, and the tailor with his last, the fisher with +his pencil, and the painter with his nets; but I am +sent to find those persons whose names are here +writ, and can never find what names the writing +person hath here writ. I must to the learned.--In good time. + +BENVOLIO: +Tut, man, one fire burns out another's burning, +One pain is lessen'd by another's anguish; +Turn giddy, and be holp by backward turning; +One desperate grief cures with another's languish: +Take thou some new infection to thy eye, +And the rank poison of the old will die. + +ROMEO: +Your plaintain-leaf is excellent for that. + +BENVOLIO: +For what, I pray thee? + +ROMEO: +For your broken shin. + +BENVOLIO: +Why, Romeo, art thou mad? + +ROMEO: +Not mad, but bound more than a mad-man is; +Shut up in prison, kept without my food, +Whipp'd and tormented and--God-den, good fellow. + +Servant: +God gi' god-den. I pray, sir, can you read? + +ROMEO: +Ay, mine own fortune in my misery. + +Servant: +Perhaps you have learned it without book: but, I +pray, can you read any thing you see? + +ROMEO: +Ay, if I know the letters and the language. + +Servant: +Ye say honestly: rest you merry! + +ROMEO: +Stay, fellow; I can read. +'Signior Martino and his wife and daughters; +County Anselme and his beauteous sisters; the lady +widow of Vitravio; Signior Placentio and his lovely +nieces; Mercutio and his brother Valentine; mine +uncle Capulet, his wife and daughters; my fair niece +Rosaline; Livia; Signior Valentio and his cousin +Tybalt, Lucio and the lively Helena.' A fair +assembly: whither should they come? + +Servant: +Up. + +ROMEO: +Whither? + +Servant: +To supper; to our house. + +ROMEO: +Whose house? + +Servant: +My master's. + +ROMEO: +Indeed, I should have ask'd you that before. + +Servant: +Now I'll tell you without asking: my master is the +great rich Capulet; and if you be not of the house +of Montagues, I pray, come and crush a cup of wine. +Rest you merry! + +BENVOLIO: +At this same ancient feast of Capulet's +Sups the fair Rosaline whom thou so lovest, +With all the admired beauties of Verona: +Go thither; and, with unattainted eye, +Compare her face with some that I shall show, +And I will make thee think thy swan a crow. + +ROMEO: +When the devout religion of mine eye +Maintains such falsehood, then turn tears to fires; +And these, who often drown'd could never die, +Transparent heretics, be burnt for liars! +One fairer than my love! the all-seeing sun +Ne'er saw her match since first the world begun. + +BENVOLIO: +Tut, you saw her fair, none else being by, +Herself poised with herself in either eye: +But in that crystal scales let there be weigh'd +Your lady's love against some other maid +That I will show you shining at this feast, +And she shall scant show well that now shows best. + +ROMEO: +I'll go along, no such sight to be shown, +But to rejoice in splendor of mine own. + +LADY CAPULET: +Nurse, where's my daughter? call her forth to me. + +Nurse: +Now, by my maidenhead, at twelve year old, +I bade her come. What, lamb! what, ladybird! +God forbid! Where's this girl? What, Juliet! + +JULIET: +How now! who calls? + +Nurse: +Your mother. + +JULIET: +Madam, I am here. +What is your will? + +LADY CAPULET: +This is the matter:--Nurse, give leave awhile, +We must talk in secret:--nurse, come back again; +I have remember'd me, thou's hear our counsel. +Thou know'st my daughter's of a pretty age. + +Nurse: +Faith, I can tell her age unto an hour. + +LADY CAPULET: +She's not fourteen. + +Nurse: +I'll lay fourteen of my teeth,-- +And yet, to my teeth be it spoken, I have but four-- +She is not fourteen. How long is it now +To Lammas-tide? + +LADY CAPULET: +A fortnight and odd days. + +Nurse: +Even or odd, of all days in the year, +Come Lammas-eve at night shall she be fourteen. +Susan and she--God rest all Christian souls!-- +Were of an age: well, Susan is with God; +She was too good for me: but, as I said, +On Lammas-eve at night shall she be fourteen; +That shall she, marry; I remember it well. +'Tis since the earthquake now eleven years; +And she was wean'd,--I never shall forget it,-- +Of all the days of the year, upon that day: +For I had then laid wormwood to my dug, +Sitting in the sun under the dove-house wall; +My lord and you were then at Mantua:-- +Nay, I do bear a brain:--but, as I said, +When it did taste the wormwood on the nipple +Of my dug and felt it bitter, pretty fool, +To see it tetchy and fall out with the dug! +Shake quoth the dove-house: 'twas no need, I trow, +To bid me trudge: +And since that time it is eleven years; +For then she could stand alone; nay, by the rood, +She could have run and waddled all about; +For even the day before, she broke her brow: +And then my husband--God be with his soul! +A' was a merry man--took up the child: +'Yea,' quoth he, 'dost thou fall upon thy face? +Thou wilt fall backward when thou hast more wit; +Wilt thou not, Jule?' and, by my holidame, +The pretty wretch left crying and said 'Ay.' +To see, now, how a jest shall come about! +I warrant, an I should live a thousand years, +I never should forget it: 'Wilt thou not, Jule?' quoth he; +And, pretty fool, it stinted and said 'Ay.' + +LADY CAPULET: +Enough of this; I pray thee, hold thy peace. + +Nurse: +Yes, madam: yet I cannot choose but laugh, +To think it should leave crying and say 'Ay.' +And yet, I warrant, it had upon its brow +A bump as big as a young cockerel's stone; +A parlous knock; and it cried bitterly: +'Yea,' quoth my husband,'fall'st upon thy face? +Thou wilt fall backward when thou comest to age; +Wilt thou not, Jule?' it stinted and said 'Ay.' + +JULIET: +And stint thou too, I pray thee, nurse, say I. + +Nurse: +Peace, I have done. God mark thee to his grace! +Thou wast the prettiest babe that e'er I nursed: +An I might live to see thee married once, +I have my wish. + +LADY CAPULET: +Marry, that 'marry' is the very theme +I came to talk of. Tell me, daughter Juliet, +How stands your disposition to be married? + +JULIET: +It is an honour that I dream not of. + +Nurse: +An honour! were not I thine only nurse, +I would say thou hadst suck'd wisdom from thy teat. + +LADY CAPULET: +Well, think of marriage now; younger than you, +Here in Verona, ladies of esteem, +Are made already mothers: by my count, +I was your mother much upon these years +That you are now a maid. Thus then in brief: +The valiant Paris seeks you for his love. + +Nurse: +A man, young lady! lady, such a man +As all the world--why, he's a man of wax. + +LADY CAPULET: +Verona's summer hath not such a flower. + +Nurse: +Nay, he's a flower; in faith, a very flower. + +LADY CAPULET: +What say you? can you love the gentleman? +This night you shall behold him at our feast; +Read o'er the volume of young Paris' face, +And find delight writ there with beauty's pen; +Examine every married lineament, +And see how one another lends content +And what obscured in this fair volume lies +Find written in the margent of his eyes. +This precious book of love, this unbound lover, +To beautify him, only lacks a cover: +The fish lives in the sea, and 'tis much pride +For fair without the fair within to hide: +That book in many's eyes doth share the glory, +That in gold clasps locks in the golden story; +So shall you share all that he doth possess, +By having him, making yourself no less. + +Nurse: +No less! nay, bigger; women grow by men. + +LADY CAPULET: +Speak briefly, can you like of Paris' love? + +JULIET: +I'll look to like, if looking liking move: +But no more deep will I endart mine eye +Than your consent gives strength to make it fly. + +Servant: +Madam, the guests are come, supper served up, you +called, my young lady asked for, the nurse cursed in +the pantry, and every thing in extremity. I must +hence to wait; I beseech you, follow straight. + +LADY CAPULET: +We follow thee. +Juliet, the county stays. + +Nurse: +Go, girl, seek happy nights to happy days. + +ROMEO: +What, shall this speech be spoke for our excuse? +Or shall we on without a apology? + +BENVOLIO: +The date is out of such prolixity: +We'll have no Cupid hoodwink'd with a scarf, +Bearing a Tartar's painted bow of lath, +Scaring the ladies like a crow-keeper; +Nor no without-book prologue, faintly spoke +After the prompter, for our entrance: +But let them measure us by what they will; +We'll measure them a measure, and be gone. + +ROMEO: +Give me a torch: I am not for this ambling; +Being but heavy, I will bear the light. + +MERCUTIO: +Nay, gentle Romeo, we must have you dance. + +ROMEO: +Not I, believe me: you have dancing shoes +With nimble soles: I have a soul of lead +So stakes me to the ground I cannot move. + +MERCUTIO: +You are a lover; borrow Cupid's wings, +And soar with them above a common bound. + +ROMEO: +I am too sore enpierced with his shaft +To soar with his light feathers, and so bound, +I cannot bound a pitch above dull woe: +Under love's heavy burden do I sink. + +MERCUTIO: +And, to sink in it, should you burden love; +Too great oppression for a tender thing. + +ROMEO: +Is love a tender thing? it is too rough, +Too rude, too boisterous, and it pricks like thorn. + +MERCUTIO: +If love be rough with you, be rough with love; +Prick love for pricking, and you beat love down. +Give me a case to put my visage in: +A visor for a visor! what care I +What curious eye doth quote deformities? +Here are the beetle brows shall blush for me. + +BENVOLIO: +Come, knock and enter; and no sooner in, +But every man betake him to his legs. + +ROMEO: +A torch for me: let wantons light of heart +Tickle the senseless rushes with their heels, +For I am proverb'd with a grandsire phrase; +I'll be a candle-holder, and look on. +The game was ne'er so fair, and I am done. + +MERCUTIO: +Tut, dun's the mouse, the constable's own word: +If thou art dun, we'll draw thee from the mire +Of this sir-reverence love, wherein thou stick'st +Up to the ears. Come, we burn daylight, ho! + +ROMEO: +Nay, that's not so. + +MERCUTIO: +I mean, sir, in delay +We waste our lights in vain, like lamps by day. +Take our good meaning, for our judgment sits +Five times in that ere once in our five wits. + +ROMEO: +And we mean well in going to this mask; +But 'tis no wit to go. + +MERCUTIO: +Why, may one ask? + +ROMEO: +I dream'd a dream to-night. + +MERCUTIO: +And so did I. + +ROMEO: +Well, what was yours? + +MERCUTIO: +That dreamers often lie. + +ROMEO: +In bed asleep, while they do dream things true. + +MERCUTIO: +O, then, I see Queen Mab hath been with you. +She is the fairies' midwife, and she comes +In shape no bigger than an agate-stone +On the fore-finger of an alderman, +Drawn with a team of little atomies +Athwart men's noses as they lie asleep; +Her wagon-spokes made of long spiders' legs, +The cover of the wings of grasshoppers, +The traces of the smallest spider's web, +The collars of the moonshine's watery beams, +Her whip of cricket's bone, the lash of film, +Her wagoner a small grey-coated gnat, +Not so big as a round little worm +Prick'd from the lazy finger of a maid; +Her chariot is an empty hazel-nut +Made by the joiner squirrel or old grub, +Time out o' mind the fairies' coachmakers. +And in this state she gallops night by night +Through lovers' brains, and then they dream of love; +O'er courtiers' knees, that dream on court'sies straight, +O'er lawyers' fingers, who straight dream on fees, +O'er ladies ' lips, who straight on kisses dream, +Which oft the angry Mab with blisters plagues, +Because their breaths with sweetmeats tainted are: +Sometime she gallops o'er a courtier's nose, +And then dreams he of smelling out a suit; +And sometime comes she with a tithe-pig's tail +Tickling a parson's nose as a' lies asleep, +Then dreams, he of another benefice: +Sometime she driveth o'er a soldier's neck, +And then dreams he of cutting foreign throats, +Of breaches, ambuscadoes, Spanish blades, +Of healths five-fathom deep; and then anon +Drums in his ear, at which he starts and wakes, +And being thus frighted swears a prayer or two +And sleeps again. This is that very Mab +That plats the manes of horses in the night, +And bakes the elflocks in foul sluttish hairs, +Which once untangled, much misfortune bodes: +This is the hag, when maids lie on their backs, +That presses them and learns them first to bear, +Making them women of good carriage: +This is she-- + +ROMEO: +Peace, peace, Mercutio, peace! +Thou talk'st of nothing. + +MERCUTIO: +True, I talk of dreams, +Which are the children of an idle brain, +Begot of nothing but vain fantasy, +Which is as thin of substance as the air +And more inconstant than the wind, who wooes +Even now the frozen bosom of the north, +And, being anger'd, puffs away from thence, +Turning his face to the dew-dropping south. + +BENVOLIO: +This wind, you talk of, blows us from ourselves; +Supper is done, and we shall come too late. + +ROMEO: +I fear, too early: for my mind misgives +Some consequence yet hanging in the stars +Shall bitterly begin his fearful date +With this night's revels and expire the term +Of a despised life closed in my breast +By some vile forfeit of untimely death. +But He, that hath the steerage of my course, +Direct my sail! On, lusty gentlemen. + +BENVOLIO: +Strike, drum. + +First Servant: +Where's Potpan, that he helps not to take away? He +shift a trencher? he scrape a trencher! + +Second Servant: +When good manners shall lie all in one or two men's +hands and they unwashed too, 'tis a foul thing. + +First Servant: +Away with the joint-stools, remove the +court-cupboard, look to the plate. Good thou, save +me a piece of marchpane; and, as thou lovest me, let +the porter let in Susan Grindstone and Nell. +Antony, and Potpan! + +Second Servant: +Ay, boy, ready. + +First Servant: +You are looked for and called for, asked for and +sought for, in the great chamber. + +Second Servant: +We cannot be here and there too. Cheerly, boys; be +brisk awhile, and the longer liver take all. + +CAPULET: +Welcome, gentlemen! ladies that have their toes +Unplagued with corns will have a bout with you. +Ah ha, my mistresses! which of you all +Will now deny to dance? she that makes dainty, +She, I'll swear, hath corns; am I come near ye now? +Welcome, gentlemen! I have seen the day +That I have worn a visor and could tell +A whispering tale in a fair lady's ear, +Such as would please: 'tis gone, 'tis gone, 'tis gone: +You are welcome, gentlemen! come, musicians, play. +A hall, a hall! give room! and foot it, girls. +More light, you knaves; and turn the tables up, +And quench the fire, the room is grown too hot. +Ah, sirrah, this unlook'd-for sport comes well. +Nay, sit, nay, sit, good cousin Capulet; +For you and I are past our dancing days: +How long is't now since last yourself and I +Were in a mask? + +Second Capulet: +By'r lady, thirty years. + +CAPULET: +What, man! 'tis not so much, 'tis not so much: +'Tis since the nuptials of Lucentio, +Come pentecost as quickly as it will, +Some five and twenty years; and then we mask'd. + +Second Capulet: +'Tis more, 'tis more, his son is elder, sir; +His son is thirty. + +CAPULET: +Will you tell me that? +His son was but a ward two years ago. + +ROMEO: + +Servant: +I know not, sir. + +ROMEO: +O, she doth teach the torches to burn bright! +It seems she hangs upon the cheek of night +Like a rich jewel in an Ethiope's ear; +Beauty too rich for use, for earth too dear! +So shows a snowy dove trooping with crows, +As yonder lady o'er her fellows shows. +The measure done, I'll watch her place of stand, +And, touching hers, make blessed my rude hand. +Did my heart love till now? forswear it, sight! +For I ne'er saw true beauty till this night. + +TYBALT: +This, by his voice, should be a Montague. +Fetch me my rapier, boy. What dares the slave +Come hither, cover'd with an antic face, +To fleer and scorn at our solemnity? +Now, by the stock and honour of my kin, +To strike him dead, I hold it not a sin. + +CAPULET: +Why, how now, kinsman! wherefore storm you so? + +TYBALT: +Uncle, this is a Montague, our foe, +A villain that is hither come in spite, +To scorn at our solemnity this night. + +CAPULET: +Young Romeo is it? + +TYBALT: +'Tis he, that villain Romeo. + +CAPULET: +Content thee, gentle coz, let him alone; +He bears him like a portly gentleman; +And, to say truth, Verona brags of him +To be a virtuous and well-govern'd youth: +I would not for the wealth of all the town +Here in my house do him disparagement: +Therefore be patient, take no note of him: +It is my will, the which if thou respect, +Show a fair presence and put off these frowns, +And ill-beseeming semblance for a feast. + +TYBALT: +It fits, when such a villain is a guest: +I'll not endure him. + +CAPULET: +He shall be endured: +What, goodman boy! I say, he shall: go to; +Am I the master here, or you? go to. +You'll not endure him! God shall mend my soul! +You'll make a mutiny among my guests! +You will set cock-a-hoop! you'll be the man! + +TYBALT: +Why, uncle, 'tis a shame. + +CAPULET: +Go to, go to; +You are a saucy boy: is't so, indeed? +This trick may chance to scathe you, I know what: +You must contrary me! marry, 'tis time. +Well said, my hearts! You are a princox; go: +Be quiet, or--More light, more light! For shame! +I'll make you quiet. What, cheerly, my hearts! + +TYBALT: +Patience perforce with wilful choler meeting +Makes my flesh tremble in their different greeting. +I will withdraw: but this intrusion shall +Now seeming sweet convert to bitter gall. + +ROMEO: + +JULIET: +Good pilgrim, you do wrong your hand too much, +Which mannerly devotion shows in this; +For saints have hands that pilgrims' hands do touch, +And palm to palm is holy palmers' kiss. + +ROMEO: +Have not saints lips, and holy palmers too? + +JULIET: +Ay, pilgrim, lips that they must use in prayer. + +ROMEO: +O, then, dear saint, let lips do what hands do; +They pray, grant thou, lest faith turn to despair. + +JULIET: +Saints do not move, though grant for prayers' sake. + +ROMEO: +Then move not, while my prayer's effect I take. +Thus from my lips, by yours, my sin is purged. + +JULIET: +Then have my lips the sin that they have took. + +ROMEO: +Sin from thy lips? O trespass sweetly urged! +Give me my sin again. + +JULIET: +You kiss by the book. + +Nurse: +Madam, your mother craves a word with you. + +ROMEO: +What is her mother? + +Nurse: +Marry, bachelor, +Her mother is the lady of the house, +And a good lady, and a wise and virtuous +I nursed her daughter, that you talk'd withal; +I tell you, he that can lay hold of her +Shall have the chinks. + +ROMEO: +Is she a Capulet? +O dear account! my life is my foe's debt. + +BENVOLIO: +Away, begone; the sport is at the best. + +ROMEO: +Ay, so I fear; the more is my unrest. + +CAPULET: +Nay, gentlemen, prepare not to be gone; +We have a trifling foolish banquet towards. +Is it e'en so? why, then, I thank you all +I thank you, honest gentlemen; good night. +More torches here! Come on then, let's to bed. +Ah, sirrah, by my fay, it waxes late: +I'll to my rest. + +JULIET: +Come hither, nurse. What is yond gentleman? + +Nurse: +The son and heir of old Tiberio. + +JULIET: +What's he that now is going out of door? + +Nurse: +Marry, that, I think, be young Petrucio. + +JULIET: +What's he that follows there, that would not dance? + +Nurse: +I know not. + +JULIET: +Go ask his name: if he be married. +My grave is like to be my wedding bed. + +Nurse: +His name is Romeo, and a Montague; +The only son of your great enemy. + +JULIET: +My only love sprung from my only hate! +Too early seen unknown, and known too late! +Prodigious birth of love it is to me, +That I must love a loathed enemy. + +Nurse: +What's this? what's this? + +JULIET: +A rhyme I learn'd even now +Of one I danced withal. + +Nurse: +Anon, anon! +Come, let's away; the strangers all are gone. + +Chorus: +Now old desire doth in his death-bed lie, +And young affection gapes to be his heir; +That fair for which love groan'd for and would die, +With tender Juliet match'd, is now not fair. +Now Romeo is beloved and loves again, +Alike betwitched by the charm of looks, +But to his foe supposed he must complain, +And she steal love's sweet bait from fearful hooks: +Being held a foe, he may not have access +To breathe such vows as lovers use to swear; +And she as much in love, her means much less +To meet her new-beloved any where: +But passion lends them power, time means, to meet +Tempering extremities with extreme sweet. + +ROMEO: +Can I go forward when my heart is here? +Turn back, dull earth, and find thy centre out. + +BENVOLIO: +Romeo! my cousin Romeo! + +MERCUTIO: +He is wise; +And, on my lie, hath stol'n him home to bed. + +BENVOLIO: +He ran this way, and leap'd this orchard wall: +Call, good Mercutio. + +MERCUTIO: +Nay, I'll conjure too. +Romeo! humours! madman! passion! lover! +Appear thou in the likeness of a sigh: +Speak but one rhyme, and I am satisfied; +Cry but 'Ay me!' pronounce but 'love' and 'dove;' +Speak to my gossip Venus one fair word, +One nick-name for her purblind son and heir, +Young Adam Cupid, he that shot so trim, +When King Cophetua loved the beggar-maid! +He heareth not, he stirreth not, he moveth not; +The ape is dead, and I must conjure him. +I conjure thee by Rosaline's bright eyes, +By her high forehead and her scarlet lip, +By her fine foot, straight leg and quivering thigh +And the demesnes that there adjacent lie, +That in thy likeness thou appear to us! + +BENVOLIO: +And if he hear thee, thou wilt anger him. + +MERCUTIO: +This cannot anger him: 'twould anger him +To raise a spirit in his mistress' circle +Of some strange nature, letting it there stand +Till she had laid it and conjured it down; +That were some spite: my invocation +Is fair and honest, and in his mistress' name +I conjure only but to raise up him. + +BENVOLIO: +Come, he hath hid himself among these trees, +To be consorted with the humorous night: +Blind is his love and best befits the dark. + +MERCUTIO: +If love be blind, love cannot hit the mark. +Now will he sit under a medlar tree, +And wish his mistress were that kind of fruit +As maids call medlars, when they laugh alone. +Romeo, that she were, O, that she were +An open et caetera, thou a poperin pear! +Romeo, good night: I'll to my truckle-bed; +This field-bed is too cold for me to sleep: +Come, shall we go? + +BENVOLIO: +Go, then; for 'tis in vain +To seek him here that means not to be found. + +ROMEO: +He jests at scars that never felt a wound. +But, soft! what light through yonder window breaks? +It is the east, and Juliet is the sun. +Arise, fair sun, and kill the envious moon, +Who is already sick and pale with grief, +That thou her maid art far more fair than she: +Be not her maid, since she is envious; +Her vestal livery is but sick and green +And none but fools do wear it; cast it off. +It is my lady, O, it is my love! +O, that she knew she were! +She speaks yet she says nothing: what of that? +Her eye discourses; I will answer it. +I am too bold, 'tis not to me she speaks: +Two of the fairest stars in all the heaven, +Having some business, do entreat her eyes +To twinkle in their spheres till they return. +What if her eyes were there, they in her head? +The brightness of her cheek would shame those stars, +As daylight doth a lamp; her eyes in heaven +Would through the airy region stream so bright +That birds would sing and think it were not night. +See, how she leans her cheek upon her hand! +O, that I were a glove upon that hand, +That I might touch that cheek! + +JULIET: +Ay me! + +ROMEO: +She speaks: +O, speak again, bright angel! for thou art +As glorious to this night, being o'er my head +As is a winged messenger of heaven +Unto the white-upturned wondering eyes +Of mortals that fall back to gaze on him +When he bestrides the lazy-pacing clouds +And sails upon the bosom of the air. + +JULIET: +O Romeo, Romeo! wherefore art thou Romeo? +Deny thy father and refuse thy name; +Or, if thou wilt not, be but sworn my love, +And I'll no longer be a Capulet. + +ROMEO: + +JULIET: +'Tis but thy name that is my enemy; +Thou art thyself, though not a Montague. +What's Montague? it is nor hand, nor foot, +Nor arm, nor face, nor any other part +Belonging to a man. O, be some other name! +What's in a name? that which we call a rose +By any other name would smell as sweet; +So Romeo would, were he not Romeo call'd, +Retain that dear perfection which he owes +Without that title. Romeo, doff thy name, +And for that name which is no part of thee +Take all myself. + +ROMEO: +I take thee at thy word: +Call me but love, and I'll be new baptized; +Henceforth I never will be Romeo. + +JULIET: +What man art thou that thus bescreen'd in night +So stumblest on my counsel? + +ROMEO: +By a name +I know not how to tell thee who I am: +My name, dear saint, is hateful to myself, +Because it is an enemy to thee; +Had I it written, I would tear the word. + +JULIET: +My ears have not yet drunk a hundred words +Of that tongue's utterance, yet I know the sound: +Art thou not Romeo and a Montague? + +ROMEO: +Neither, fair saint, if either thee dislike. + +JULIET: +How camest thou hither, tell me, and wherefore? +The orchard walls are high and hard to climb, +And the place death, considering who thou art, +If any of my kinsmen find thee here. + +ROMEO: +With love's light wings did I o'er-perch these walls; +For stony limits cannot hold love out, +And what love can do that dares love attempt; +Therefore thy kinsmen are no let to me. + +JULIET: +If they do see thee, they will murder thee. + +ROMEO: +Alack, there lies more peril in thine eye +Than twenty of their swords: look thou but sweet, +And I am proof against their enmity. + +JULIET: +I would not for the world they saw thee here. + +ROMEO: +I have night's cloak to hide me from their sight; +And but thou love me, let them find me here: +My life were better ended by their hate, +Than death prorogued, wanting of thy love. + +JULIET: +By whose direction found'st thou out this place? + +ROMEO: +By love, who first did prompt me to inquire; +He lent me counsel and I lent him eyes. +I am no pilot; yet, wert thou as far +As that vast shore wash'd with the farthest sea, +I would adventure for such merchandise. + +JULIET: +Thou know'st the mask of night is on my face, +Else would a maiden blush bepaint my cheek +For that which thou hast heard me speak to-night +Fain would I dwell on form, fain, fain deny +What I have spoke: but farewell compliment! +Dost thou love me? I know thou wilt say 'Ay,' +And I will take thy word: yet if thou swear'st, +Thou mayst prove false; at lovers' perjuries +Then say, Jove laughs. O gentle Romeo, +If thou dost love, pronounce it faithfully: +Or if thou think'st I am too quickly won, +I'll frown and be perverse an say thee nay, +So thou wilt woo; but else, not for the world. +In truth, fair Montague, I am too fond, +And therefore thou mayst think my 'havior light: +But trust me, gentleman, I'll prove more true +Than those that have more cunning to be strange. +I should have been more strange, I must confess, +But that thou overheard'st, ere I was ware, +My true love's passion: therefore pardon me, +And not impute this yielding to light love, +Which the dark night hath so discovered. + +ROMEO: +Lady, by yonder blessed moon I swear +That tips with silver all these fruit-tree tops-- + +JULIET: +O, swear not by the moon, the inconstant moon, +That monthly changes in her circled orb, +Lest that thy love prove likewise variable. + +ROMEO: +What shall I swear by? + +JULIET: +Do not swear at all; +Or, if thou wilt, swear by thy gracious self, +Which is the god of my idolatry, +And I'll believe thee. + +ROMEO: +If my heart's dear love-- + +JULIET: +Well, do not swear: although I joy in thee, +I have no joy of this contract to-night: +It is too rash, too unadvised, too sudden; +Too like the lightning, which doth cease to be +Ere one can say 'It lightens.' Sweet, good night! +This bud of love, by summer's ripening breath, +May prove a beauteous flower when next we meet. +Good night, good night! as sweet repose and rest +Come to thy heart as that within my breast! + +ROMEO: +O, wilt thou leave me so unsatisfied? + +JULIET: +What satisfaction canst thou have to-night? + +ROMEO: +The exchange of thy love's faithful vow for mine. + +JULIET: +I gave thee mine before thou didst request it: +And yet I would it were to give again. + +ROMEO: +Wouldst thou withdraw it? for what purpose, love? + +JULIET: +But to be frank, and give it thee again. +And yet I wish but for the thing I have: +My bounty is as boundless as the sea, +My love as deep; the more I give to thee, +The more I have, for both are infinite. +I hear some noise within; dear love, adieu! +Anon, good nurse! Sweet Montague, be true. +Stay but a little, I will come again. + +ROMEO: +O blessed, blessed night! I am afeard. +Being in night, all this is but a dream, +Too flattering-sweet to be substantial. + +JULIET: +Three words, dear Romeo, and good night indeed. +If that thy bent of love be honourable, +Thy purpose marriage, send me word to-morrow, +By one that I'll procure to come to thee, +Where and what time thou wilt perform the rite; +And all my fortunes at thy foot I'll lay +And follow thee my lord throughout the world. + +Nurse: + +JULIET: +I come, anon.--But if thou mean'st not well, +I do beseech thee-- + +Nurse: + +JULIET: +By and by, I come:-- +To cease thy suit, and leave me to my grief: +To-morrow will I send. + +ROMEO: +So thrive my soul-- + +JULIET: +A thousand times good night! + +ROMEO: +A thousand times the worse, to want thy light. +Love goes toward love, as schoolboys from +their books, +But love from love, toward school with heavy looks. + +JULIET: +Hist! Romeo, hist! O, for a falconer's voice, +To lure this tassel-gentle back again! +Bondage is hoarse, and may not speak aloud; +Else would I tear the cave where Echo lies, +And make her airy tongue more hoarse than mine, +With repetition of my Romeo's name. + +ROMEO: +It is my soul that calls upon my name: +How silver-sweet sound lovers' tongues by night, +Like softest music to attending ears! + +JULIET: +Romeo! + +ROMEO: +My dear? + +JULIET: +At what o'clock to-morrow +Shall I send to thee? + +ROMEO: +At the hour of nine. + +JULIET: +I will not fail: 'tis twenty years till then. +I have forgot why I did call thee back. + +ROMEO: +Let me stand here till thou remember it. + +JULIET: +I shall forget, to have thee still stand there, +Remembering how I love thy company. + +ROMEO: +And I'll still stay, to have thee still forget, +Forgetting any other home but this. + +JULIET: +'Tis almost morning; I would have thee gone: +And yet no further than a wanton's bird; +Who lets it hop a little from her hand, +Like a poor prisoner in his twisted gyves, +And with a silk thread plucks it back again, +So loving-jealous of his liberty. + +ROMEO: +I would I were thy bird. + +JULIET: +Sweet, so would I: +Yet I should kill thee with much cherishing. +Good night, good night! parting is such +sweet sorrow, +That I shall say good night till it be morrow. + +ROMEO: +Sleep dwell upon thine eyes, peace in thy breast! +Would I were sleep and peace, so sweet to rest! +Hence will I to my ghostly father's cell, +His help to crave, and my dear hap to tell. + +FRIAR LAURENCE: +The grey-eyed morn smiles on the frowning night, +Chequering the eastern clouds with streaks of light, +And flecked darkness like a drunkard reels +From forth day's path and Titan's fiery wheels: +Now, ere the sun advance his burning eye, +The day to cheer and night's dank dew to dry, +I must up-fill this osier cage of ours +With baleful weeds and precious-juiced flowers. +The earth that's nature's mother is her tomb; +What is her burying grave that is her womb, +And from her womb children of divers kind +We sucking on her natural bosom find, +Many for many virtues excellent, +None but for some and yet all different. +O, mickle is the powerful grace that lies +In herbs, plants, stones, and their true qualities: +For nought so vile that on the earth doth live +But to the earth some special good doth give, +Nor aught so good but strain'd from that fair use +Revolts from true birth, stumbling on abuse: +Virtue itself turns vice, being misapplied; +And vice sometimes by action dignified. +Within the infant rind of this small flower +Poison hath residence and medicine power: +For this, being smelt, with that part cheers each part; +Being tasted, slays all senses with the heart. +Two such opposed kings encamp them still +In man as well as herbs, grace and rude will; +And where the worser is predominant, +Full soon the canker death eats up that plant. + +ROMEO: +Good morrow, father. + +FRIAR LAURENCE: +Benedicite! +What early tongue so sweet saluteth me? +Young son, it argues a distemper'd head +So soon to bid good morrow to thy bed: +Care keeps his watch in every old man's eye, +And where care lodges, sleep will never lie; +But where unbruised youth with unstuff'd brain +Doth couch his limbs, there golden sleep doth reign: +Therefore thy earliness doth me assure +Thou art up-roused by some distemperature; +Or if not so, then here I hit it right, +Our Romeo hath not been in bed to-night. + +ROMEO: +That last is true; the sweeter rest was mine. + +FRIAR LAURENCE: +God pardon sin! wast thou with Rosaline? + +ROMEO: +With Rosaline, my ghostly father? no; +I have forgot that name, and that name's woe. + +FRIAR LAURENCE: +That's my good son: but where hast thou been, then? + +ROMEO: +I'll tell thee, ere thou ask it me again. +I have been feasting with mine enemy, +Where on a sudden one hath wounded me, +That's by me wounded: both our remedies +Within thy help and holy physic lies: +I bear no hatred, blessed man, for, lo, +My intercession likewise steads my foe. + +FRIAR LAURENCE: +Be plain, good son, and homely in thy drift; +Riddling confession finds but riddling shrift. + +ROMEO: +Then plainly know my heart's dear love is set +On the fair daughter of rich Capulet: +As mine on hers, so hers is set on mine; +And all combined, save what thou must combine +By holy marriage: when and where and how +We met, we woo'd and made exchange of vow, +I'll tell thee as we pass; but this I pray, +That thou consent to marry us to-day. + +FRIAR LAURENCE: +Holy Saint Francis, what a change is here! +Is Rosaline, whom thou didst love so dear, +So soon forsaken? young men's love then lies +Not truly in their hearts, but in their eyes. +Jesu Maria, what a deal of brine +Hath wash'd thy sallow cheeks for Rosaline! +How much salt water thrown away in waste, +To season love, that of it doth not taste! +The sun not yet thy sighs from heaven clears, +Thy old groans ring yet in my ancient ears; +Lo, here upon thy cheek the stain doth sit +Of an old tear that is not wash'd off yet: +If e'er thou wast thyself and these woes thine, +Thou and these woes were all for Rosaline: +And art thou changed? pronounce this sentence then, +Women may fall, when there's no strength in men. + +ROMEO: +Thou chid'st me oft for loving Rosaline. + +FRIAR LAURENCE: +For doting, not for loving, pupil mine. + +ROMEO: +And bad'st me bury love. + +FRIAR LAURENCE: +Not in a grave, +To lay one in, another out to have. + +ROMEO: +I pray thee, chide not; she whom I love now +Doth grace for grace and love for love allow; +The other did not so. + +FRIAR LAURENCE: +O, she knew well +Thy love did read by rote and could not spell. +But come, young waverer, come, go with me, +In one respect I'll thy assistant be; +For this alliance may so happy prove, +To turn your households' rancour to pure love. + +ROMEO: +O, let us hence; I stand on sudden haste. + +FRIAR LAURENCE: +Wisely and slow; they stumble that run fast. + +MERCUTIO: +Where the devil should this Romeo be? +Came he not home to-night? + +BENVOLIO: +Not to his father's; I spoke with his man. + +MERCUTIO: +Ah, that same pale hard-hearted wench, that Rosaline. +Torments him so, that he will sure run mad. + +BENVOLIO: +Tybalt, the kinsman of old Capulet, +Hath sent a letter to his father's house. + +MERCUTIO: +A challenge, on my life. + +BENVOLIO: +Romeo will answer it. + +MERCUTIO: +Any man that can write may answer a letter. + +BENVOLIO: +Nay, he will answer the letter's master, how he +dares, being dared. + +MERCUTIO: +Alas poor Romeo! he is already dead; stabbed with a +white wench's black eye; shot through the ear with a +love-song; the very pin of his heart cleft with the +blind bow-boy's butt-shaft: and is he a man to +encounter Tybalt? + +BENVOLIO: +Why, what is Tybalt? + +MERCUTIO: +More than prince of cats, I can tell you. O, he is +the courageous captain of compliments. He fights as +you sing prick-song, keeps time, distance, and +proportion; rests me his minim rest, one, two, and +the third in your bosom: the very butcher of a silk +button, a duellist, a duellist; a gentleman of the +very first house, of the first and second cause: +ah, the immortal passado! the punto reverso! the +hai! + +BENVOLIO: +The what? + +MERCUTIO: +The pox of such antic, lisping, affecting +fantasticoes; these new tuners of accents! 'By Jesu, +a very good blade! a very tall man! a very good +whore!' Why, is not this a lamentable thing, +grandsire, that we should be thus afflicted with +these strange flies, these fashion-mongers, these +perdona-mi's, who stand so much on the new form, +that they cannot at ease on the old bench? O, their +bones, their bones! + +BENVOLIO: +Here comes Romeo, here comes Romeo. + +MERCUTIO: +Without his roe, like a dried herring: flesh, flesh, +how art thou fishified! Now is he for the numbers +that Petrarch flowed in: Laura to his lady was but a +kitchen-wench; marry, she had a better love to +be-rhyme her; Dido a dowdy; Cleopatra a gipsy; +Helen and Hero hildings and harlots; Thisbe a grey +eye or so, but not to the purpose. Signior +Romeo, bon jour! there's a French salutation +to your French slop. You gave us the counterfeit +fairly last night. + +ROMEO: +Good morrow to you both. What counterfeit did I give you? + +MERCUTIO: +The ship, sir, the slip; can you not conceive? + +ROMEO: +Pardon, good Mercutio, my business was great; and in +such a case as mine a man may strain courtesy. + +MERCUTIO: +That's as much as to say, such a case as yours +constrains a man to bow in the hams. + +ROMEO: +Meaning, to court'sy. + +MERCUTIO: +Thou hast most kindly hit it. + +ROMEO: +A most courteous exposition. + +MERCUTIO: +Nay, I am the very pink of courtesy. + +ROMEO: +Pink for flower. + +MERCUTIO: +Right. + +ROMEO: +Why, then is my pump well flowered. + +MERCUTIO: +Well said: follow me this jest now till thou hast +worn out thy pump, that when the single sole of it +is worn, the jest may remain after the wearing sole singular. + +ROMEO: +O single-soled jest, solely singular for the +singleness. + +MERCUTIO: +Come between us, good Benvolio; my wits faint. + +ROMEO: +Switch and spurs, switch and spurs; or I'll cry a match. + +MERCUTIO: +Nay, if thy wits run the wild-goose chase, I have +done, for thou hast more of the wild-goose in one of +thy wits than, I am sure, I have in my whole five: +was I with you there for the goose? + +ROMEO: +Thou wast never with me for any thing when thou wast +not there for the goose. + +MERCUTIO: +I will bite thee by the ear for that jest. + +ROMEO: +Nay, good goose, bite not. + +MERCUTIO: +Thy wit is a very bitter sweeting; it is a most +sharp sauce. + +ROMEO: +And is it not well served in to a sweet goose? + +MERCUTIO: +O here's a wit of cheveril, that stretches from an +inch narrow to an ell broad! + +ROMEO: +I stretch it out for that word 'broad;' which added +to the goose, proves thee far and wide a broad goose. + +MERCUTIO: +Why, is not this better now than groaning for love? +now art thou sociable, now art thou Romeo; now art +thou what thou art, by art as well as by nature: +for this drivelling love is like a great natural, +that runs lolling up and down to hide his bauble in a hole. + +BENVOLIO: +Stop there, stop there. + +MERCUTIO: +Thou desirest me to stop in my tale against the hair. + +BENVOLIO: +Thou wouldst else have made thy tale large. + +MERCUTIO: +O, thou art deceived; I would have made it short: +for I was come to the whole depth of my tale; and +meant, indeed, to occupy the argument no longer. + +ROMEO: +Here's goodly gear! + +MERCUTIO: +A sail, a sail! + +BENVOLIO: +Two, two; a shirt and a smock. + +Nurse: +Peter! + +PETER: +Anon! + +Nurse: +My fan, Peter. + +MERCUTIO: +Good Peter, to hide her face; for her fan's the +fairer face. + +Nurse: +God ye good morrow, gentlemen. + +MERCUTIO: +God ye good den, fair gentlewoman. + +Nurse: +Is it good den? + +MERCUTIO: +'Tis no less, I tell you, for the bawdy hand of the +dial is now upon the prick of noon. + +Nurse: +Out upon you! what a man are you! + +ROMEO: +One, gentlewoman, that God hath made for himself to +mar. + +Nurse: +By my troth, it is well said; 'for himself to mar,' +quoth a'? Gentlemen, can any of you tell me where I +may find the young Romeo? + +ROMEO: +I can tell you; but young Romeo will be older when +you have found him than he was when you sought him: +I am the youngest of that name, for fault of a worse. + +Nurse: +You say well. + +MERCUTIO: +Yea, is the worst well? very well took, i' faith; +wisely, wisely. + +Nurse: +if you be he, sir, I desire some confidence with +you. + +BENVOLIO: +She will indite him to some supper. + +MERCUTIO: +A bawd, a bawd, a bawd! so ho! + +ROMEO: +What hast thou found? + +MERCUTIO: +No hare, sir; unless a hare, sir, in a lenten pie, +that is something stale and hoar ere it be spent. +An old hare hoar, +And an old hare hoar, +Is very good meat in lent +But a hare that is hoar +Is too much for a score, +When it hoars ere it be spent. +Romeo, will you come to your father's? we'll +to dinner, thither. + +ROMEO: +I will follow you. + +MERCUTIO: +Farewell, ancient lady; farewell, +'lady, lady, lady.' + +Nurse: +Marry, farewell! I pray you, sir, what saucy +merchant was this, that was so full of his ropery? + +ROMEO: +A gentleman, nurse, that loves to hear himself talk, +and will speak more in a minute than he will stand +to in a month. + +Nurse: +An a' speak any thing against me, I'll take him +down, an a' were lustier than he is, and twenty such +Jacks; and if I cannot, I'll find those that shall. +Scurvy knave! I am none of his flirt-gills; I am +none of his skains-mates. And thou must stand by +too, and suffer every knave to use me at his pleasure? + +PETER: +I saw no man use you a pleasure; if I had, my weapon +should quickly have been out, I warrant you: I dare +draw as soon as another man, if I see occasion in a +good quarrel, and the law on my side. + +Nurse: +Now, afore God, I am so vexed, that every part about +me quivers. Scurvy knave! Pray you, sir, a word: +and as I told you, my young lady bade me inquire you +out; what she bade me say, I will keep to myself: +but first let me tell ye, if ye should lead her into +a fool's paradise, as they say, it were a very gross +kind of behavior, as they say: for the gentlewoman +is young; and, therefore, if you should deal double +with her, truly it were an ill thing to be offered +to any gentlewoman, and very weak dealing. + +ROMEO: +Nurse, commend me to thy lady and mistress. I +protest unto thee-- + +Nurse: +Good heart, and, i' faith, I will tell her as much: +Lord, Lord, she will be a joyful woman. + +ROMEO: +What wilt thou tell her, nurse? thou dost not mark me. + +Nurse: +I will tell her, sir, that you do protest; which, as +I take it, is a gentlemanlike offer. + +ROMEO: +Bid her devise +Some means to come to shrift this afternoon; +And there she shall at Friar Laurence' cell +Be shrived and married. Here is for thy pains. + +Nurse: +No truly sir; not a penny. + +ROMEO: +Go to; I say you shall. + +Nurse: +This afternoon, sir? well, she shall be there. + +ROMEO: +And stay, good nurse, behind the abbey wall: +Within this hour my man shall be with thee +And bring thee cords made like a tackled stair; +Which to the high top-gallant of my joy +Must be my convoy in the secret night. +Farewell; be trusty, and I'll quit thy pains: +Farewell; commend me to thy mistress. + +Nurse: +Now God in heaven bless thee! Hark you, sir. + +ROMEO: +What say'st thou, my dear nurse? + +Nurse: +Is your man secret? Did you ne'er hear say, +Two may keep counsel, putting one away? + +ROMEO: +I warrant thee, my man's as true as steel. + +NURSE: +Well, sir; my mistress is the sweetest lady--Lord, +Lord! when 'twas a little prating thing:--O, there +is a nobleman in town, one Paris, that would fain +lay knife aboard; but she, good soul, had as lief +see a toad, a very toad, as see him. I anger her +sometimes and tell her that Paris is the properer +man; but, I'll warrant you, when I say so, she looks +as pale as any clout in the versal world. Doth not +rosemary and Romeo begin both with a letter? + +ROMEO: +Ay, nurse; what of that? both with an R. + +Nurse: +Ah. mocker! that's the dog's name; R is for +the--No; I know it begins with some other +letter:--and she hath the prettiest sententious of +it, of you and rosemary, that it would do you good +to hear it. + +ROMEO: +Commend me to thy lady. + +Nurse: +Ay, a thousand times. +Peter! + +PETER: +Anon! + +Nurse: +Peter, take my fan, and go before and apace. + +JULIET: +The clock struck nine when I did send the nurse; +In half an hour she promised to return. +Perchance she cannot meet him: that's not so. +O, she is lame! love's heralds should be thoughts, +Which ten times faster glide than the sun's beams, +Driving back shadows over louring hills: +Therefore do nimble-pinion'd doves draw love, +And therefore hath the wind-swift Cupid wings. +Now is the sun upon the highmost hill +Of this day's journey, and from nine till twelve +Is three long hours, yet she is not come. +Had she affections and warm youthful blood, +She would be as swift in motion as a ball; +My words would bandy her to my sweet love, +And his to me: +But old folks, many feign as they were dead; +Unwieldy, slow, heavy and pale as lead. +O God, she comes! +O honey nurse, what news? +Hast thou met with him? Send thy man away. + +Nurse: +Peter, stay at the gate. + +JULIET: +Now, good sweet nurse,--O Lord, why look'st thou sad? +Though news be sad, yet tell them merrily; +If good, thou shamest the music of sweet news +By playing it to me with so sour a face. + +Nurse: +I am a-weary, give me leave awhile: +Fie, how my bones ache! what a jaunt have I had! + +JULIET: +I would thou hadst my bones, and I thy news: +Nay, come, I pray thee, speak; good, good nurse, speak. + +Nurse: +Jesu, what haste? can you not stay awhile? +Do you not see that I am out of breath? + +JULIET: +How art thou out of breath, when thou hast breath +To say to me that thou art out of breath? +The excuse that thou dost make in this delay +Is longer than the tale thou dost excuse. +Is thy news good, or bad? answer to that; +Say either, and I'll stay the circumstance: +Let me be satisfied, is't good or bad? + +Nurse: +Well, you have made a simple choice; you know not +how to choose a man: Romeo! no, not he; though his +face be better than any man's, yet his leg excels +all men's; and for a hand, and a foot, and a body, +though they be not to be talked on, yet they are +past compare: he is not the flower of courtesy, +but, I'll warrant him, as gentle as a lamb. Go thy +ways, wench; serve God. What, have you dined at home? + +JULIET: +No, no: but all this did I know before. +What says he of our marriage? what of that? + +Nurse: +Lord, how my head aches! what a head have I! +It beats as it would fall in twenty pieces. +My back o' t' other side,--O, my back, my back! +Beshrew your heart for sending me about, +To catch my death with jaunting up and down! + +JULIET: +I' faith, I am sorry that thou art not well. +Sweet, sweet, sweet nurse, tell me, what says my love? + +Nurse: +Your love says, like an honest gentleman, and a +courteous, and a kind, and a handsome, and, I +warrant, a virtuous,--Where is your mother? + +JULIET: +Where is my mother! why, she is within; +Where should she be? How oddly thou repliest! +'Your love says, like an honest gentleman, +Where is your mother?' + +Nurse: +O God's lady dear! +Are you so hot? marry, come up, I trow; +Is this the poultice for my aching bones? +Henceforward do your messages yourself. + +JULIET: +Here's such a coil! come, what says Romeo? + +Nurse: +Have you got leave to go to shrift to-day? + +JULIET: +I have. + +Nurse: +Then hie you hence to Friar Laurence' cell; +There stays a husband to make you a wife: +Now comes the wanton blood up in your cheeks, +They'll be in scarlet straight at any news. +Hie you to church; I must another way, +To fetch a ladder, by the which your love +Must climb a bird's nest soon when it is dark: +I am the drudge and toil in your delight, +But you shall bear the burden soon at night. +Go; I'll to dinner: hie you to the cell. + +JULIET: +Hie to high fortune! Honest nurse, farewell. + +FRIAR LAURENCE: +So smile the heavens upon this holy act, +That after hours with sorrow chide us not! + +ROMEO: +Amen, amen! but come what sorrow can, +It cannot countervail the exchange of joy +That one short minute gives me in her sight: +Do thou but close our hands with holy words, +Then love-devouring death do what he dare; +It is enough I may but call her mine. + +FRIAR LAURENCE: +These violent delights have violent ends +And in their triumph die, like fire and powder, +Which as they kiss consume: the sweetest honey +Is loathsome in his own deliciousness +And in the taste confounds the appetite: +Therefore love moderately; long love doth so; +Too swift arrives as tardy as too slow. +Here comes the lady: O, so light a foot +Will ne'er wear out the everlasting flint: +A lover may bestride the gossamer +That idles in the wanton summer air, +And yet not fall; so light is vanity. + +JULIET: +Good even to my ghostly confessor. + +FRIAR LAURENCE: +Romeo shall thank thee, daughter, for us both. + +JULIET: +As much to him, else is his thanks too much. + +ROMEO: +Ah, Juliet, if the measure of thy joy +Be heap'd like mine and that thy skill be more +To blazon it, then sweeten with thy breath +This neighbour air, and let rich music's tongue +Unfold the imagined happiness that both +Receive in either by this dear encounter. + +JULIET: +Conceit, more rich in matter than in words, +Brags of his substance, not of ornament: +They are but beggars that can count their worth; +But my true love is grown to such excess +I cannot sum up sum of half my wealth. + +FRIAR LAURENCE: +Come, come with me, and we will make short work; +For, by your leaves, you shall not stay alone +Till holy church incorporate two in one. + +BENVOLIO: +I pray thee, good Mercutio, let's retire: +The day is hot, the Capulets abroad, +And, if we meet, we shall not scape a brawl; +For now, these hot days, is the mad blood stirring. + +MERCUTIO: +Thou art like one of those fellows that when he +enters the confines of a tavern claps me his sword +upon the table and says 'God send me no need of +thee!' and by the operation of the second cup draws +it on the drawer, when indeed there is no need. + +BENVOLIO: +Am I like such a fellow? + +MERCUTIO: +Come, come, thou art as hot a Jack in thy mood as +any in Italy, and as soon moved to be moody, and as +soon moody to be moved. + +BENVOLIO: +And what to? + +MERCUTIO: +Nay, an there were two such, we should have none +shortly, for one would kill the other. Thou! why, +thou wilt quarrel with a man that hath a hair more, +or a hair less, in his beard, than thou hast: thou +wilt quarrel with a man for cracking nuts, having no +other reason but because thou hast hazel eyes: what +eye but such an eye would spy out such a quarrel? +Thy head is as fun of quarrels as an egg is full of +meat, and yet thy head hath been beaten as addle as +an egg for quarrelling: thou hast quarrelled with a +man for coughing in the street, because he hath +wakened thy dog that hath lain asleep in the sun: +didst thou not fall out with a tailor for wearing +his new doublet before Easter? with another, for +tying his new shoes with old riband? and yet thou +wilt tutor me from quarrelling! + +BENVOLIO: +An I were so apt to quarrel as thou art, any man +should buy the fee-simple of my life for an hour and a quarter. + +MERCUTIO: +The fee-simple! O simple! + +BENVOLIO: +By my head, here come the Capulets. + +MERCUTIO: +By my heel, I care not. + +TYBALT: +Follow me close, for I will speak to them. +Gentlemen, good den: a word with one of you. + +MERCUTIO: +And but one word with one of us? couple it with +something; make it a word and a blow. + +TYBALT: +You shall find me apt enough to that, sir, an you +will give me occasion. + +MERCUTIO: +Could you not take some occasion without giving? + +TYBALT: +Mercutio, thou consort'st with Romeo,-- + +MERCUTIO: +Consort! what, dost thou make us minstrels? an +thou make minstrels of us, look to hear nothing but +discords: here's my fiddlestick; here's that shall +make you dance. 'Zounds, consort! + +BENVOLIO: +We talk here in the public haunt of men: +Either withdraw unto some private place, +And reason coldly of your grievances, +Or else depart; here all eyes gaze on us. + +MERCUTIO: +Men's eyes were made to look, and let them gaze; +I will not budge for no man's pleasure, I. + +TYBALT: +Well, peace be with you, sir: here comes my man. + +MERCUTIO: +But I'll be hanged, sir, if he wear your livery: +Marry, go before to field, he'll be your follower; +Your worship in that sense may call him 'man.' + +TYBALT: +Romeo, the hate I bear thee can afford +No better term than this,--thou art a villain. + +ROMEO: +Tybalt, the reason that I have to love thee +Doth much excuse the appertaining rage +To such a greeting: villain am I none; +Therefore farewell; I see thou know'st me not. + +TYBALT: +Boy, this shall not excuse the injuries +That thou hast done me; therefore turn and draw. + +ROMEO: +I do protest, I never injured thee, +But love thee better than thou canst devise, +Till thou shalt know the reason of my love: +And so, good Capulet,--which name I tender +As dearly as my own,--be satisfied. + +MERCUTIO: +O calm, dishonourable, vile submission! +Alla stoccata carries it away. +Tybalt, you rat-catcher, will you walk? + +TYBALT: +What wouldst thou have with me? + +MERCUTIO: +Good king of cats, nothing but one of your nine +lives; that I mean to make bold withal, and as you +shall use me hereafter, drybeat the rest of the +eight. Will you pluck your sword out of his pitcher +by the ears? make haste, lest mine be about your +ears ere it be out. + +TYBALT: +I am for you. + +ROMEO: +Gentle Mercutio, put thy rapier up. + +MERCUTIO: +Come, sir, your passado. + +ROMEO: +Draw, Benvolio; beat down their weapons. +Gentlemen, for shame, forbear this outrage! +Tybalt, Mercutio, the prince expressly hath +Forbidden bandying in Verona streets: +Hold, Tybalt! good Mercutio! + +MERCUTIO: +I am hurt. +A plague o' both your houses! I am sped. +Is he gone, and hath nothing? + +BENVOLIO: +What, art thou hurt? + +MERCUTIO: +Ay, ay, a scratch, a scratch; marry, 'tis enough. +Where is my page? Go, villain, fetch a surgeon. + +ROMEO: +Courage, man; the hurt cannot be much. + +MERCUTIO: +No, 'tis not so deep as a well, nor so wide as a +church-door; but 'tis enough,'twill serve: ask for +me to-morrow, and you shall find me a grave man. I +am peppered, I warrant, for this world. A plague o' +both your houses! 'Zounds, a dog, a rat, a mouse, a +cat, to scratch a man to death! a braggart, a +rogue, a villain, that fights by the book of +arithmetic! Why the devil came you between us? I +was hurt under your arm. + +ROMEO: +I thought all for the best. + +MERCUTIO: +Help me into some house, Benvolio, +Or I shall faint. A plague o' both your houses! +They have made worms' meat of me: I have it, +And soundly too: your houses! + +ROMEO: +This gentleman, the prince's near ally, +My very friend, hath got his mortal hurt +In my behalf; my reputation stain'd +With Tybalt's slander,--Tybalt, that an hour +Hath been my kinsman! O sweet Juliet, +Thy beauty hath made me effeminate +And in my temper soften'd valour's steel! + +BENVOLIO: +O Romeo, Romeo, brave Mercutio's dead! +That gallant spirit hath aspired the clouds, +Which too untimely here did scorn the earth. + +ROMEO: +This day's black fate on more days doth depend; +This but begins the woe, others must end. + +BENVOLIO: +Here comes the furious Tybalt back again. + +ROMEO: +Alive, in triumph! and Mercutio slain! +Away to heaven, respective lenity, +And fire-eyed fury be my conduct now! +Now, Tybalt, take the villain back again, +That late thou gavest me; for Mercutio's soul +Is but a little way above our heads, +Staying for thine to keep him company: +Either thou, or I, or both, must go with him. + +TYBALT: +Thou, wretched boy, that didst consort him here, +Shalt with him hence. + +ROMEO: +This shall determine that. + +BENVOLIO: +Romeo, away, be gone! +The citizens are up, and Tybalt slain. +Stand not amazed: the prince will doom thee death, +If thou art taken: hence, be gone, away! + +ROMEO: +O, I am fortune's fool! + +BENVOLIO: +Why dost thou stay? + +First Citizen: +Which way ran he that kill'd Mercutio? +Tybalt, that murderer, which way ran he? + +BENVOLIO: +There lies that Tybalt. + +First Citizen: +Up, sir, go with me; +I charge thee in the princes name, obey. + +PRINCE: +Where are the vile beginners of this fray? + +BENVOLIO: +O noble prince, I can discover all +The unlucky manage of this fatal brawl: +There lies the man, slain by young Romeo, +That slew thy kinsman, brave Mercutio. + +LADY CAPULET: +Tybalt, my cousin! O my brother's child! +O prince! O cousin! husband! O, the blood is spilt +O my dear kinsman! Prince, as thou art true, +For blood of ours, shed blood of Montague. +O cousin, cousin! + +PRINCE: +Benvolio, who began this bloody fray? + +BENVOLIO: +Tybalt, here slain, whom Romeo's hand did slay; +Romeo that spoke him fair, bade him bethink +How nice the quarrel was, and urged withal +Your high displeasure: all this uttered +With gentle breath, calm look, knees humbly bow'd, +Could not take truce with the unruly spleen +Of Tybalt deaf to peace, but that he tilts +With piercing steel at bold Mercutio's breast, +Who all as hot, turns deadly point to point, +And, with a martial scorn, with one hand beats +Cold death aside, and with the other sends +It back to Tybalt, whose dexterity, +Retorts it: Romeo he cries aloud, +'Hold, friends! friends, part!' and, swifter than +his tongue, +His agile arm beats down their fatal points, +And 'twixt them rushes; underneath whose arm +An envious thrust from Tybalt hit the life +Of stout Mercutio, and then Tybalt fled; +But by and by comes back to Romeo, +Who had but newly entertain'd revenge, +And to 't they go like lightning, for, ere I +Could draw to part them, was stout Tybalt slain. +And, as he fell, did Romeo turn and fly. +This is the truth, or let Benvolio die. + +LADY CAPULET: +He is a kinsman to the Montague; +Affection makes him false; he speaks not true: +Some twenty of them fought in this black strife, +And all those twenty could but kill one life. +I beg for justice, which thou, prince, must give; +Romeo slew Tybalt, Romeo must not live. + +PRINCE: +Romeo slew him, he slew Mercutio; +Who now the price of his dear blood doth owe? + +MONTAGUE: +Not Romeo, prince, he was Mercutio's friend; +His fault concludes but what the law should end, +The life of Tybalt. + +PRINCE: +And for that offence +Immediately we do exile him hence: +I have an interest in your hate's proceeding, +My blood for your rude brawls doth lie a-bleeding; +But I'll amerce you with so strong a fine +That you shall all repent the loss of mine: +I will be deaf to pleading and excuses; +Nor tears nor prayers shall purchase out abuses: +Therefore use none: let Romeo hence in haste, +Else, when he's found, that hour is his last. +Bear hence this body and attend our will: +Mercy but murders, pardoning those that kill. + +JULIET: +Gallop apace, you fiery-footed steeds, +Towards Phoebus' lodging: such a wagoner +As Phaethon would whip you to the west, +And bring in cloudy night immediately. +Spread thy close curtain, love-performing night, +That runaway's eyes may wink and Romeo +Leap to these arms, untalk'd of and unseen. +Lovers can see to do their amorous rites +By their own beauties; or, if love be blind, +It best agrees with night. Come, civil night, +Thou sober-suited matron, all in black, +And learn me how to lose a winning match, +Play'd for a pair of stainless maidenhoods: +Hood my unmann'd blood, bating in my cheeks, +With thy black mantle; till strange love, grown bold, +Think true love acted simple modesty. +Come, night; come, Romeo; come, thou day in night; +For thou wilt lie upon the wings of night +Whiter than new snow on a raven's back. +Come, gentle night, come, loving, black-brow'd night, +Give me my Romeo; and, when he shall die, +Take him and cut him out in little stars, +And he will make the face of heaven so fine +That all the world will be in love with night +And pay no worship to the garish sun. +O, I have bought the mansion of a love, +But not possess'd it, and, though I am sold, +Not yet enjoy'd: so tedious is this day +As is the night before some festival +To an impatient child that hath new robes +And may not wear them. O, here comes my nurse, +And she brings news; and every tongue that speaks +But Romeo's name speaks heavenly eloquence. +Now, nurse, what news? What hast thou there? the cords +That Romeo bid thee fetch? + +Nurse: +Ay, ay, the cords. + +JULIET: +Ay me! what news? why dost thou wring thy hands? + +Nurse: +Ah, well-a-day! he's dead, he's dead, he's dead! +We are undone, lady, we are undone! +Alack the day! he's gone, he's kill'd, he's dead! + +JULIET: +Can heaven be so envious? + +Nurse: +Romeo can, +Though heaven cannot: O Romeo, Romeo! +Who ever would have thought it? Romeo! + +JULIET: +What devil art thou, that dost torment me thus? +This torture should be roar'd in dismal hell. +Hath Romeo slain himself? say thou but 'I,' +And that bare vowel 'I' shall poison more +Than the death-darting eye of cockatrice: +I am not I, if there be such an I; +Or those eyes shut, that make thee answer 'I.' +If he be slain, say 'I'; or if not, no: +Brief sounds determine of my weal or woe. + +Nurse: +I saw the wound, I saw it with mine eyes,-- +God save the mark!--here on his manly breast: +A piteous corse, a bloody piteous corse; +Pale, pale as ashes, all bedaub'd in blood, +All in gore-blood; I swounded at the sight. + +JULIET: +O, break, my heart! poor bankrupt, break at once! +To prison, eyes, ne'er look on liberty! +Vile earth, to earth resign; end motion here; +And thou and Romeo press one heavy bier! + +Nurse: +O Tybalt, Tybalt, the best friend I had! +O courteous Tybalt! honest gentleman! +That ever I should live to see thee dead! + +JULIET: +What storm is this that blows so contrary? +Is Romeo slaughter'd, and is Tybalt dead? +My dear-loved cousin, and my dearer lord? +Then, dreadful trumpet, sound the general doom! +For who is living, if those two are gone? + +Nurse: +Tybalt is gone, and Romeo banished; +Romeo that kill'd him, he is banished. + +JULIET: +O God! did Romeo's hand shed Tybalt's blood? + +Nurse: +It did, it did; alas the day, it did! + +JULIET: +O serpent heart, hid with a flowering face! +Did ever dragon keep so fair a cave? +Beautiful tyrant! fiend angelical! +Dove-feather'd raven! wolvish-ravening lamb! +Despised substance of divinest show! +Just opposite to what thou justly seem'st, +A damned saint, an honourable villain! +O nature, what hadst thou to do in hell, +When thou didst bower the spirit of a fiend +In moral paradise of such sweet flesh? +Was ever book containing such vile matter +So fairly bound? O that deceit should dwell +In such a gorgeous palace! + +Nurse: +There's no trust, +No faith, no honesty in men; all perjured, +All forsworn, all naught, all dissemblers. +Ah, where's my man? give me some aqua vitae: +These griefs, these woes, these sorrows make me old. +Shame come to Romeo! + +JULIET: +Blister'd be thy tongue +For such a wish! he was not born to shame: +Upon his brow shame is ashamed to sit; +For 'tis a throne where honour may be crown'd +Sole monarch of the universal earth. +O, what a beast was I to chide at him! + +Nurse: +Will you speak well of him that kill'd your cousin? + +JULIET: +Shall I speak ill of him that is my husband? +Ah, poor my lord, what tongue shall smooth thy name, +When I, thy three-hours wife, have mangled it? +But, wherefore, villain, didst thou kill my cousin? +That villain cousin would have kill'd my husband: +Back, foolish tears, back to your native spring; +Your tributary drops belong to woe, +Which you, mistaking, offer up to joy. +My husband lives, that Tybalt would have slain; +And Tybalt's dead, that would have slain my husband: +All this is comfort; wherefore weep I then? +Some word there was, worser than Tybalt's death, +That murder'd me: I would forget it fain; +But, O, it presses to my memory, +Like damned guilty deeds to sinners' minds: +'Tybalt is dead, and Romeo--banished;' +That 'banished,' that one word 'banished,' +Hath slain ten thousand Tybalts. Tybalt's death +Was woe enough, if it had ended there: +Or, if sour woe delights in fellowship +And needly will be rank'd with other griefs, +Why follow'd not, when she said 'Tybalt's dead,' +Thy father, or thy mother, nay, or both, +Which modern lamentations might have moved? +But with a rear-ward following Tybalt's death, +'Romeo is banished,' to speak that word, +Is father, mother, Tybalt, Romeo, Juliet, +All slain, all dead. 'Romeo is banished!' +There is no end, no limit, measure, bound, +In that word's death; no words can that woe sound. +Where is my father, and my mother, nurse? + +Nurse: +Weeping and wailing over Tybalt's corse: +Will you go to them? I will bring you thither. + +JULIET: +Wash they his wounds with tears: mine shall be spent, +When theirs are dry, for Romeo's banishment. +Take up those cords: poor ropes, you are beguiled, +Both you and I; for Romeo is exiled: +He made you for a highway to my bed; +But I, a maid, die maiden-widowed. +Come, cords, come, nurse; I'll to my wedding-bed; +And death, not Romeo, take my maidenhead! + +Nurse: +Hie to your chamber: I'll find Romeo +To comfort you: I wot well where he is. +Hark ye, your Romeo will be here at night: +I'll to him; he is hid at Laurence' cell. + +JULIET: +O, find him! give this ring to my true knight, +And bid him come to take his last farewell. + +FRIAR LAURENCE: +Romeo, come forth; come forth, thou fearful man: +Affliction is enamour'd of thy parts, +And thou art wedded to calamity. + +ROMEO: +Father, what news? what is the prince's doom? +What sorrow craves acquaintance at my hand, +That I yet know not? + +FRIAR LAURENCE: +Too familiar +Is my dear son with such sour company: +I bring thee tidings of the prince's doom. + +ROMEO: +What less than dooms-day is the prince's doom? + +FRIAR LAURENCE: +A gentler judgment vanish'd from his lips, +Not body's death, but body's banishment. + +ROMEO: +Ha, banishment! be merciful, say 'death;' +For exile hath more terror in his look, +Much more than death: do not say 'banishment.' + +FRIAR LAURENCE: +Hence from Verona art thou banished: +Be patient, for the world is broad and wide. + +ROMEO: +There is no world without Verona walls, +But purgatory, torture, hell itself. +Hence-banished is banish'd from the world, +And world's exile is death: then banished, +Is death mis-term'd: calling death banishment, +Thou cutt'st my head off with a golden axe, +And smilest upon the stroke that murders me. + +FRIAR LAURENCE: +O deadly sin! O rude unthankfulness! +Thy fault our law calls death; but the kind prince, +Taking thy part, hath rush'd aside the law, +And turn'd that black word death to banishment: +This is dear mercy, and thou seest it not. + +ROMEO: +'Tis torture, and not mercy: heaven is here, +Where Juliet lives; and every cat and dog +And little mouse, every unworthy thing, +Live here in heaven and may look on her; +But Romeo may not: more validity, +More honourable state, more courtship lives +In carrion-flies than Romeo: they my seize +On the white wonder of dear Juliet's hand +And steal immortal blessing from her lips, +Who even in pure and vestal modesty, +Still blush, as thinking their own kisses sin; +But Romeo may not; he is banished: +Flies may do this, but I from this must fly: +They are free men, but I am banished. +And say'st thou yet that exile is not death? +Hadst thou no poison mix'd, no sharp-ground knife, +No sudden mean of death, though ne'er so mean, +But 'banished' to kill me?--'banished'? +O friar, the damned use that word in hell; +Howlings attend it: how hast thou the heart, +Being a divine, a ghostly confessor, +A sin-absolver, and my friend profess'd, +To mangle me with that word 'banished'? + +FRIAR LAURENCE: +Thou fond mad man, hear me but speak a word. + +ROMEO: +O, thou wilt speak again of banishment. + +FRIAR LAURENCE: +I'll give thee armour to keep off that word: +Adversity's sweet milk, philosophy, +To comfort thee, though thou art banished. + +ROMEO: +Yet 'banished'? Hang up philosophy! +Unless philosophy can make a Juliet, +Displant a town, reverse a prince's doom, +It helps not, it prevails not: talk no more. + +FRIAR LAURENCE: +O, then I see that madmen have no ears. + +ROMEO: +How should they, when that wise men have no eyes? + +FRIAR LAURENCE: +Let me dispute with thee of thy estate. + +ROMEO: +Thou canst not speak of that thou dost not feel: +Wert thou as young as I, Juliet thy love, +An hour but married, Tybalt murdered, +Doting like me and like me banished, +Then mightst thou speak, then mightst thou tear thy hair, +And fall upon the ground, as I do now, +Taking the measure of an unmade grave. + +FRIAR LAURENCE: +Arise; one knocks; good Romeo, hide thyself. + +ROMEO: +Not I; unless the breath of heartsick groans, +Mist-like, infold me from the search of eyes. + +FRIAR LAURENCE: +Hark, how they knock! Who's there? Romeo, arise; +Thou wilt be taken. Stay awhile! Stand up; +Run to my study. By and by! God's will, +What simpleness is this! I come, I come! +Who knocks so hard? whence come you? what's your will? + +Nurse: + +FRIAR LAURENCE: +Welcome, then. + +Nurse: +O holy friar, O, tell me, holy friar, +Where is my lady's lord, where's Romeo? + +FRIAR LAURENCE: +There on the ground, with his own tears made drunk. + +Nurse: +O, he is even in my mistress' case, +Just in her case! O woful sympathy! +Piteous predicament! Even so lies she, +Blubbering and weeping, weeping and blubbering. +Stand up, stand up; stand, and you be a man: +For Juliet's sake, for her sake, rise and stand; +Why should you fall into so deep an O? + +ROMEO: +Nurse! + +Nurse: +Ah sir! ah sir! Well, death's the end of all. + +ROMEO: +Spakest thou of Juliet? how is it with her? +Doth she not think me an old murderer, +Now I have stain'd the childhood of our joy +With blood removed but little from her own? +Where is she? and how doth she? and what says +My conceal'd lady to our cancell'd love? + +Nurse: +O, she says nothing, sir, but weeps and weeps; +And now falls on her bed; and then starts up, +And Tybalt calls; and then on Romeo cries, +And then down falls again. + +ROMEO: +As if that name, +Shot from the deadly level of a gun, +Did murder her; as that name's cursed hand +Murder'd her kinsman. O, tell me, friar, tell me, +In what vile part of this anatomy +Doth my name lodge? tell me, that I may sack +The hateful mansion. + +FRIAR LAURENCE: +Hold thy desperate hand: +Art thou a man? thy form cries out thou art: +Thy tears are womanish; thy wild acts denote +The unreasonable fury of a beast: +Unseemly woman in a seeming man! +Or ill-beseeming beast in seeming both! +Thou hast amazed me: by my holy order, +I thought thy disposition better temper'd. +Hast thou slain Tybalt? wilt thou slay thyself? +And stay thy lady too that lives in thee, +By doing damned hate upon thyself? +Why rail'st thou on thy birth, the heaven, and earth? +Since birth, and heaven, and earth, all three do meet +In thee at once; which thou at once wouldst lose. +Fie, fie, thou shamest thy shape, thy love, thy wit; +Which, like a usurer, abound'st in all, +And usest none in that true use indeed +Which should bedeck thy shape, thy love, thy wit: +Thy noble shape is but a form of wax, +Digressing from the valour of a man; +Thy dear love sworn but hollow perjury, +Killing that love which thou hast vow'd to cherish; +Thy wit, that ornament to shape and love, +Misshapen in the conduct of them both, +Like powder in a skitless soldier's flask, +Is set afire by thine own ignorance, +And thou dismember'd with thine own defence. +What, rouse thee, man! thy Juliet is alive, +For whose dear sake thou wast but lately dead; +There art thou happy: Tybalt would kill thee, +But thou slew'st Tybalt; there are thou happy too: +The law that threaten'd death becomes thy friend +And turns it to exile; there art thou happy: +A pack of blessings lights up upon thy back; +Happiness courts thee in her best array; +But, like a misbehaved and sullen wench, +Thou pout'st upon thy fortune and thy love: +Take heed, take heed, for such die miserable. +Go, get thee to thy love, as was decreed, +Ascend her chamber, hence and comfort her: +But look thou stay not till the watch be set, +For then thou canst not pass to Mantua; +Where thou shalt live, till we can find a time +To blaze your marriage, reconcile your friends, +Beg pardon of the prince, and call thee back +With twenty hundred thousand times more joy +Than thou went'st forth in lamentation. +Go before, nurse: commend me to thy lady; +And bid her hasten all the house to bed, +Which heavy sorrow makes them apt unto: +Romeo is coming. + +Nurse: +O Lord, I could have stay'd here all the night +To hear good counsel: O, what learning is! +My lord, I'll tell my lady you will come. + +ROMEO: +Do so, and bid my sweet prepare to chide. + +Nurse: +Here, sir, a ring she bid me give you, sir: +Hie you, make haste, for it grows very late. + +ROMEO: +How well my comfort is revived by this! + +FRIAR LAURENCE: +Go hence; good night; and here stands all your state: +Either be gone before the watch be set, +Or by the break of day disguised from hence: +Sojourn in Mantua; I'll find out your man, +And he shall signify from time to time +Every good hap to you that chances here: +Give me thy hand; 'tis late: farewell; good night. + +ROMEO: +But that a joy past joy calls out on me, +It were a grief, so brief to part with thee: Farewell. + +CAPULET: +Things have fall'n out, sir, so unluckily, +That we have had no time to move our daughter: +Look you, she loved her kinsman Tybalt dearly, +And so did I:--Well, we were born to die. +'Tis very late, she'll not come down to-night: +I promise you, but for your company, +I would have been a-bed an hour ago. + +PARIS: +These times of woe afford no time to woo. +Madam, good night: commend me to your daughter. + +LADY CAPULET: +I will, and know her mind early to-morrow; +To-night she is mew'd up to her heaviness. + +CAPULET: +Sir Paris, I will make a desperate tender +Of my child's love: I think she will be ruled +In all respects by me; nay, more, I doubt it not. +Wife, go you to her ere you go to bed; +Acquaint her here of my son Paris' love; +And bid her, mark you me, on Wednesday next-- +But, soft! what day is this? + +PARIS: +Monday, my lord, + +CAPULET: +Monday! ha, ha! Well, Wednesday is too soon, +O' Thursday let it be: o' Thursday, tell her, +She shall be married to this noble earl. +Will you be ready? do you like this haste? +We'll keep no great ado,--a friend or two; +For, hark you, Tybalt being slain so late, +It may be thought we held him carelessly, +Being our kinsman, if we revel much: +Therefore we'll have some half a dozen friends, +And there an end. But what say you to Thursday? + +PARIS: +My lord, I would that Thursday were to-morrow. + +CAPULET: +Well get you gone: o' Thursday be it, then. +Go you to Juliet ere you go to bed, +Prepare her, wife, against this wedding-day. +Farewell, my lord. Light to my chamber, ho! +Afore me! it is so very very late, +That we may call it early by and by. +Good night. + +JULIET: +Wilt thou be gone? it is not yet near day: +It was the nightingale, and not the lark, +That pierced the fearful hollow of thine ear; +Nightly she sings on yon pomegranate-tree: +Believe me, love, it was the nightingale. + +ROMEO: +It was the lark, the herald of the morn, +No nightingale: look, love, what envious streaks +Do lace the severing clouds in yonder east: +Night's candles are burnt out, and jocund day +Stands tiptoe on the misty mountain tops. +I must be gone and live, or stay and die. + +JULIET: +Yon light is not day-light, I know it, I: +It is some meteor that the sun exhales, +To be to thee this night a torch-bearer, +And light thee on thy way to Mantua: +Therefore stay yet; thou need'st not to be gone. + +ROMEO: +Let me be ta'en, let me be put to death; +I am content, so thou wilt have it so. +I'll say yon grey is not the morning's eye, +'Tis but the pale reflex of Cynthia's brow; +Nor that is not the lark, whose notes do beat +The vaulty heaven so high above our heads: +I have more care to stay than will to go: +Come, death, and welcome! Juliet wills it so. +How is't, my soul? let's talk; it is not day. + +JULIET: +It is, it is: hie hence, be gone, away! +It is the lark that sings so out of tune, +Straining harsh discords and unpleasing sharps. +Some say the lark makes sweet division; +This doth not so, for she divideth us: +Some say the lark and loathed toad change eyes, +O, now I would they had changed voices too! +Since arm from arm that voice doth us affray, +Hunting thee hence with hunt's-up to the day, +O, now be gone; more light and light it grows. + +ROMEO: +More light and light; more dark and dark our woes! + +Nurse: +Madam! + +JULIET: +Nurse? + +Nurse: +Your lady mother is coming to your chamber: +The day is broke; be wary, look about. + +JULIET: +Then, window, let day in, and let life out. + +ROMEO: +Farewell, farewell! one kiss, and I'll descend. + +JULIET: +Art thou gone so? love, lord, ay, husband, friend! +I must hear from thee every day in the hour, +For in a minute there are many days: +O, by this count I shall be much in years +Ere I again behold my Romeo! + +ROMEO: +Farewell! +I will omit no opportunity +That may convey my greetings, love, to thee. + +JULIET: +O think'st thou we shall ever meet again? + +ROMEO: +I doubt it not; and all these woes shall serve +For sweet discourses in our time to come. + +JULIET: +O God, I have an ill-divining soul! +Methinks I see thee, now thou art below, +As one dead in the bottom of a tomb: +Either my eyesight fails, or thou look'st pale. + +ROMEO: +And trust me, love, in my eye so do you: +Dry sorrow drinks our blood. Adieu, adieu! + +JULIET: +O fortune, fortune! all men call thee fickle: +If thou art fickle, what dost thou with him. +That is renown'd for faith? Be fickle, fortune; +For then, I hope, thou wilt not keep him long, +But send him back. + +LADY CAPULET: + +JULIET: +Who is't that calls? is it my lady mother? +Is she not down so late, or up so early? +What unaccustom'd cause procures her hither? + +LADY CAPULET: +Why, how now, Juliet! + +JULIET: +Madam, I am not well. + +LADY CAPULET: +Evermore weeping for your cousin's death? +What, wilt thou wash him from his grave with tears? +An if thou couldst, thou couldst not make him live; +Therefore, have done: some grief shows much of love; +But much of grief shows still some want of wit. + +JULIET: +Yet let me weep for such a feeling loss. + +LADY CAPULET: +So shall you feel the loss, but not the friend +Which you weep for. + +JULIET: +Feeling so the loss, +Cannot choose but ever weep the friend. + +LADY CAPULET: +Well, girl, thou weep'st not so much for his death, +As that the villain lives which slaughter'd him. + +JULIET: +What villain madam? + +LADY CAPULET: +That same villain, Romeo. + +JULIET: + +LADY CAPULET: +That is, because the traitor murderer lives. + +JULIET: +Ay, madam, from the reach of these my hands: +Would none but I might venge my cousin's death! + +LADY CAPULET: +We will have vengeance for it, fear thou not: +Then weep no more. I'll send to one in Mantua, +Where that same banish'd runagate doth live, +Shall give him such an unaccustom'd dram, +That he shall soon keep Tybalt company: +And then, I hope, thou wilt be satisfied. + +JULIET: +Indeed, I never shall be satisfied +With Romeo, till I behold him--dead-- +Is my poor heart for a kinsman vex'd. +Madam, if you could find out but a man +To bear a poison, I would temper it; +That Romeo should, upon receipt thereof, +Soon sleep in quiet. O, how my heart abhors +To hear him named, and cannot come to him. +To wreak the love I bore my cousin +Upon his body that slaughter'd him! + +LADY CAPULET: +Find thou the means, and I'll find such a man. +But now I'll tell thee joyful tidings, girl. + +JULIET: +And joy comes well in such a needy time: +What are they, I beseech your ladyship? + +LADY CAPULET: +Well, well, thou hast a careful father, child; +One who, to put thee from thy heaviness, +Hath sorted out a sudden day of joy, +That thou expect'st not nor I look'd not for. + +JULIET: +Madam, in happy time, what day is that? + +LADY CAPULET: +Marry, my child, early next Thursday morn, +The gallant, young and noble gentleman, +The County Paris, at Saint Peter's Church, +Shall happily make thee there a joyful bride. + +JULIET: +Now, by Saint Peter's Church and Peter too, +He shall not make me there a joyful bride. +I wonder at this haste; that I must wed +Ere he, that should be husband, comes to woo. +I pray you, tell my lord and father, madam, +I will not marry yet; and, when I do, I swear, +It shall be Romeo, whom you know I hate, +Rather than Paris. These are news indeed! + +LADY CAPULET: +Here comes your father; tell him so yourself, +And see how he will take it at your hands. + +CAPULET: +When the sun sets, the air doth drizzle dew; +But for the sunset of my brother's son +It rains downright. +How now! a conduit, girl? what, still in tears? +Evermore showering? In one little body +Thou counterfeit'st a bark, a sea, a wind; +For still thy eyes, which I may call the sea, +Do ebb and flow with tears; the bark thy body is, +Sailing in this salt flood; the winds, thy sighs; +Who, raging with thy tears, and they with them, +Without a sudden calm, will overset +Thy tempest-tossed body. How now, wife! +Have you deliver'd to her our decree? + +LADY CAPULET: +Ay, sir; but she will none, she gives you thanks. +I would the fool were married to her grave! + +CAPULET: +Soft! take me with you, take me with you, wife. +How! will she none? doth she not give us thanks? +Is she not proud? doth she not count her blest, +Unworthy as she is, that we have wrought +So worthy a gentleman to be her bridegroom? + +JULIET: +Not proud, you have; but thankful, that you have: +Proud can I never be of what I hate; +But thankful even for hate, that is meant love. + +CAPULET: +How now, how now, chop-logic! What is this? +'Proud,' and 'I thank you,' and 'I thank you not;' +And yet 'not proud,' mistress minion, you, +Thank me no thankings, nor, proud me no prouds, +But fettle your fine joints 'gainst Thursday next, +To go with Paris to Saint Peter's Church, +Or I will drag thee on a hurdle thither. +Out, you green-sickness carrion! out, you baggage! +You tallow-face! + +LADY CAPULET: +Fie, fie! what, are you mad? + +JULIET: +Good father, I beseech you on my knees, +Hear me with patience but to speak a word. + +CAPULET: +Hang thee, young baggage! disobedient wretch! +I tell thee what: get thee to church o' Thursday, +Or never after look me in the face: +Speak not, reply not, do not answer me; +My fingers itch. Wife, we scarce thought us blest +That God had lent us but this only child; +But now I see this one is one too much, +And that we have a curse in having her: +Out on her, hilding! + +Nurse: +God in heaven bless her! +You are to blame, my lord, to rate her so. + +CAPULET: +And why, my lady wisdom? hold your tongue, +Good prudence; smatter with your gossips, go. + +Nurse: +I speak no treason. + +CAPULET: +O, God ye god-den. + +Nurse: +May not one speak? + +CAPULET: +Peace, you mumbling fool! +Utter your gravity o'er a gossip's bowl; +For here we need it not. + +LADY CAPULET: +You are too hot. + +CAPULET: +God's bread! it makes me mad: +Day, night, hour, tide, time, work, play, +Alone, in company, still my care hath been +To have her match'd: and having now provided +A gentleman of noble parentage, +Of fair demesnes, youthful, and nobly train'd, +Stuff'd, as they say, with honourable parts, +Proportion'd as one's thought would wish a man; +And then to have a wretched puling fool, +A whining mammet, in her fortune's tender, +To answer 'I'll not wed; I cannot love, +I am too young; I pray you, pardon me.' +But, as you will not wed, I'll pardon you: +Graze where you will you shall not house with me: +Look to't, think on't, I do not use to jest. +Thursday is near; lay hand on heart, advise: +An you be mine, I'll give you to my friend; +And you be not, hang, beg, starve, die in +the streets, +For, by my soul, I'll ne'er acknowledge thee, +Nor what is mine shall never do thee good: +Trust to't, bethink you; I'll not be forsworn. + +JULIET: +Is there no pity sitting in the clouds, +That sees into the bottom of my grief? +O, sweet my mother, cast me not away! +Delay this marriage for a month, a week; +Or, if you do not, make the bridal bed +In that dim monument where Tybalt lies. + +LADY CAPULET: +Talk not to me, for I'll not speak a word: +Do as thou wilt, for I have done with thee. + +JULIET: +O God!--O nurse, how shall this be prevented? +My husband is on earth, my faith in heaven; +How shall that faith return again to earth, +Unless that husband send it me from heaven +By leaving earth? comfort me, counsel me. +Alack, alack, that heaven should practise stratagems +Upon so soft a subject as myself! +What say'st thou? hast thou not a word of joy? +Some comfort, nurse. + +Nurse: +Faith, here it is. +Romeo is banish'd; and all the world to nothing, +That he dares ne'er come back to challenge you; +Or, if he do, it needs must be by stealth. +Then, since the case so stands as now it doth, +I think it best you married with the county. +O, he's a lovely gentleman! +Romeo's a dishclout to him: an eagle, madam, +Hath not so green, so quick, so fair an eye +As Paris hath. Beshrew my very heart, +I think you are happy in this second match, +For it excels your first: or if it did not, +Your first is dead; or 'twere as good he were, +As living here and you no use of him. + +JULIET: +Speakest thou from thy heart? + +Nurse: +And from my soul too; +Or else beshrew them both. + +JULIET: +Amen! + +Nurse: +What? + +JULIET: +Well, thou hast comforted me marvellous much. +Go in: and tell my lady I am gone, +Having displeased my father, to Laurence' cell, +To make confession and to be absolved. + +Nurse: +Marry, I will; and this is wisely done. + +JULIET: +Ancient damnation! O most wicked fiend! +Is it more sin to wish me thus forsworn, +Or to dispraise my lord with that same tongue +Which she hath praised him with above compare +So many thousand times? Go, counsellor; +Thou and my bosom henceforth shall be twain. +I'll to the friar, to know his remedy: +If all else fail, myself have power to die. + +FRIAR LAURENCE: +On Thursday, sir? the time is very short. + +PARIS: +My father Capulet will have it so; +And I am nothing slow to slack his haste. + +FRIAR LAURENCE: +You say you do not know the lady's mind: +Uneven is the course, I like it not. + +PARIS: +Immoderately she weeps for Tybalt's death, +And therefore have I little talk'd of love; +For Venus smiles not in a house of tears. +Now, sir, her father counts it dangerous +That she doth give her sorrow so much sway, +And in his wisdom hastes our marriage, +To stop the inundation of her tears; +Which, too much minded by herself alone, +May be put from her by society: +Now do you know the reason of this haste. + +FRIAR LAURENCE: + +PARIS: +Happily met, my lady and my wife! + +JULIET: +That may be, sir, when I may be a wife. + +PARIS: +That may be must be, love, on Thursday next. + +JULIET: +What must be shall be. + +FRIAR LAURENCE: +That's a certain text. + +PARIS: +Come you to make confession to this father? + +JULIET: +To answer that, I should confess to you. + +PARIS: +Do not deny to him that you love me. + +JULIET: +I will confess to you that I love him. + +PARIS: +So will ye, I am sure, that you love me. + +JULIET: +If I do so, it will be of more price, +Being spoke behind your back, than to your face. + +PARIS: +Poor soul, thy face is much abused with tears. + +JULIET: +The tears have got small victory by that; +For it was bad enough before their spite. + +PARIS: +Thou wrong'st it, more than tears, with that report. + +JULIET: +That is no slander, sir, which is a truth; +And what I spake, I spake it to my face. + +PARIS: +Thy face is mine, and thou hast slander'd it. + +JULIET: +It may be so, for it is not mine own. +Are you at leisure, holy father, now; +Or shall I come to you at evening mass? + +FRIAR LAURENCE: +My leisure serves me, pensive daughter, now. +My lord, we must entreat the time alone. + +PARIS: +God shield I should disturb devotion! +Juliet, on Thursday early will I rouse ye: +Till then, adieu; and keep this holy kiss. + +JULIET: +O shut the door! and when thou hast done so, +Come weep with me; past hope, past cure, past help! + +FRIAR LAURENCE: +Ah, Juliet, I already know thy grief; +It strains me past the compass of my wits: +I hear thou must, and nothing may prorogue it, +On Thursday next be married to this county. + +JULIET: +Tell me not, friar, that thou hear'st of this, +Unless thou tell me how I may prevent it: +If, in thy wisdom, thou canst give no help, +Do thou but call my resolution wise, +And with this knife I'll help it presently. +God join'd my heart and Romeo's, thou our hands; +And ere this hand, by thee to Romeo seal'd, +Shall be the label to another deed, +Or my true heart with treacherous revolt +Turn to another, this shall slay them both: +Therefore, out of thy long-experienced time, +Give me some present counsel, or, behold, +'Twixt my extremes and me this bloody knife +Shall play the umpire, arbitrating that +Which the commission of thy years and art +Could to no issue of true honour bring. +Be not so long to speak; I long to die, +If what thou speak'st speak not of remedy. + +FRIAR LAURENCE: +Hold, daughter: I do spy a kind of hope, +Which craves as desperate an execution. +As that is desperate which we would prevent. +If, rather than to marry County Paris, +Thou hast the strength of will to slay thyself, +Then is it likely thou wilt undertake +A thing like death to chide away this shame, +That copest with death himself to scape from it: +And, if thou darest, I'll give thee remedy. + +JULIET: +O, bid me leap, rather than marry Paris, +From off the battlements of yonder tower; +Or walk in thievish ways; or bid me lurk +Where serpents are; chain me with roaring bears; +Or shut me nightly in a charnel-house, +O'er-cover'd quite with dead men's rattling bones, +With reeky shanks and yellow chapless skulls; +Or bid me go into a new-made grave +And hide me with a dead man in his shroud; +Things that, to hear them told, have made me tremble; +And I will do it without fear or doubt, +To live an unstain'd wife to my sweet love. + +FRIAR LAURENCE: +Hold, then; go home, be merry, give consent +To marry Paris: Wednesday is to-morrow: +To-morrow night look that thou lie alone; +Let not thy nurse lie with thee in thy chamber: +Take thou this vial, being then in bed, +And this distilled liquor drink thou off; +When presently through all thy veins shall run +A cold and drowsy humour, for no pulse +Shall keep his native progress, but surcease: +No warmth, no breath, shall testify thou livest; +The roses in thy lips and cheeks shall fade +To paly ashes, thy eyes' windows fall, +Like death, when he shuts up the day of life; +Each part, deprived of supple government, +Shall, stiff and stark and cold, appear like death: +And in this borrow'd likeness of shrunk death +Thou shalt continue two and forty hours, +And then awake as from a pleasant sleep. +Now, when the bridegroom in the morning comes +To rouse thee from thy bed, there art thou dead: +Then, as the manner of our country is, +In thy best robes uncover'd on the bier +Thou shalt be borne to that same ancient vault +Where all the kindred of the Capulets lie. +In the mean time, against thou shalt awake, +Shall Romeo by my letters know our drift, +And hither shall he come: and he and I +Will watch thy waking, and that very night +Shall Romeo bear thee hence to Mantua. +And this shall free thee from this present shame; +If no inconstant toy, nor womanish fear, +Abate thy valour in the acting it. + +JULIET: +Give me, give me! O, tell not me of fear! + +FRIAR LAURENCE: +Hold; get you gone, be strong and prosperous +In this resolve: I'll send a friar with speed +To Mantua, with my letters to thy lord. + +JULIET: +Love give me strength! and strength shall help afford. +Farewell, dear father! + +CAPULET: +So many guests invite as here are writ. +Sirrah, go hire me twenty cunning cooks. + +Second Servant: +You shall have none ill, sir; for I'll try if they +can lick their fingers. + +CAPULET: +How canst thou try them so? + +Second Servant: +Marry, sir, 'tis an ill cook that cannot lick his +own fingers: therefore he that cannot lick his +fingers goes not with me. + +CAPULET: +Go, be gone. +We shall be much unfurnished for this time. +What, is my daughter gone to Friar Laurence? + +Nurse: +Ay, forsooth. + +CAPULET: +Well, he may chance to do some good on her: +A peevish self-will'd harlotry it is. + +Nurse: +See where she comes from shrift with merry look. + +CAPULET: +How now, my headstrong! where have you been gadding? + +JULIET: +Where I have learn'd me to repent the sin +Of disobedient opposition +To you and your behests, and am enjoin'd +By holy Laurence to fall prostrate here, +And beg your pardon: pardon, I beseech you! +Henceforward I am ever ruled by you. + +CAPULET: +Send for the county; go tell him of this: +I'll have this knot knit up to-morrow morning. + +JULIET: +I met the youthful lord at Laurence' cell; +And gave him what becomed love I might, +Not step o'er the bounds of modesty. + +CAPULET: +Why, I am glad on't; this is well: stand up: +This is as't should be. Let me see the county; +Ay, marry, go, I say, and fetch him hither. +Now, afore God! this reverend holy friar, +Our whole city is much bound to him. + +JULIET: +Nurse, will you go with me into my closet, +To help me sort such needful ornaments +As you think fit to furnish me to-morrow? + +LADY CAPULET: +No, not till Thursday; there is time enough. + +CAPULET: +Go, nurse, go with her: we'll to church to-morrow. + +LADY CAPULET: +We shall be short in our provision: +'Tis now near night. + +CAPULET: +Tush, I will stir about, +And all things shall be well, I warrant thee, wife: +Go thou to Juliet, help to deck up her; +I'll not to bed to-night; let me alone; +I'll play the housewife for this once. What, ho! +They are all forth. Well, I will walk myself +To County Paris, to prepare him up +Against to-morrow: my heart is wondrous light, +Since this same wayward girl is so reclaim'd. + +JULIET: +Ay, those attires are best: but, gentle nurse, +I pray thee, leave me to myself to-night, +For I have need of many orisons +To move the heavens to smile upon my state, +Which, well thou know'st, is cross, and full of sin. + +LADY CAPULET: +What, are you busy, ho? need you my help? + +JULIET: +No, madam; we have cull'd such necessaries +As are behoveful for our state to-morrow: +So please you, let me now be left alone, +And let the nurse this night sit up with you; +For, I am sure, you have your hands full all, +In this so sudden business. + +LADY CAPULET: +Good night: +Get thee to bed, and rest; for thou hast need. + +JULIET: +Farewell! God knows when we shall meet again. +I have a faint cold fear thrills through my veins, +That almost freezes up the heat of life: +I'll call them back again to comfort me: +Nurse! What should she do here? +My dismal scene I needs must act alone. +Come, vial. +What if this mixture do not work at all? +Shall I be married then to-morrow morning? +No, no: this shall forbid it: lie thou there. +What if it be a poison, which the friar +Subtly hath minister'd to have me dead, +Lest in this marriage he should be dishonour'd, +Because he married me before to Romeo? +I fear it is: and yet, methinks, it should not, +For he hath still been tried a holy man. +How if, when I am laid into the tomb, +I wake before the time that Romeo +Come to redeem me? there's a fearful point! +Shall I not, then, be stifled in the vault, +To whose foul mouth no healthsome air breathes in, +And there die strangled ere my Romeo comes? +Or, if I live, is it not very like, +The horrible conceit of death and night, +Together with the terror of the place,-- +As in a vault, an ancient receptacle, +Where, for these many hundred years, the bones +Of all my buried ancestors are packed: +Where bloody Tybalt, yet but green in earth, +Lies festering in his shroud; where, as they say, +At some hours in the night spirits resort;-- +Alack, alack, is it not like that I, +So early waking, what with loathsome smells, +And shrieks like mandrakes' torn out of the earth, +That living mortals, hearing them, run mad:-- +O, if I wake, shall I not be distraught, +Environed with all these hideous fears? +And madly play with my forefather's joints? +And pluck the mangled Tybalt from his shroud? +And, in this rage, with some great kinsman's bone, +As with a club, dash out my desperate brains? +O, look! methinks I see my cousin's ghost +Seeking out Romeo, that did spit his body +Upon a rapier's point: stay, Tybalt, stay! +Romeo, I come! this do I drink to thee. + +LADY CAPULET: +Hold, take these keys, and fetch more spices, nurse. + +Nurse: +They call for dates and quinces in the pastry. + +CAPULET: +Come, stir, stir, stir! the second cock hath crow'd, +The curfew-bell hath rung, 'tis three o'clock: +Look to the baked meats, good Angelica: +Spare not for the cost. + +Nurse: +Go, you cot-quean, go, +Get you to bed; faith, You'll be sick to-morrow +For this night's watching. + +CAPULET: +No, not a whit: what! I have watch'd ere now +All night for lesser cause, and ne'er been sick. + +LADY CAPULET: +Ay, you have been a mouse-hunt in your time; +But I will watch you from such watching now. + +CAPULET: +A jealous hood, a jealous hood! +Now, fellow, +What's there? + +First Servant: +Things for the cook, sir; but I know not what. + +CAPULET: +Make haste, make haste. +Sirrah, fetch drier logs: +Call Peter, he will show thee where they are. + +Second Servant: +I have a head, sir, that will find out logs, +And never trouble Peter for the matter. + +CAPULET: +Mass, and well said; a merry whoreson, ha! +Thou shalt be logger-head. Good faith, 'tis day: +The county will be here with music straight, +For so he said he would: I hear him near. +Nurse! Wife! What, ho! What, nurse, I say! +Go waken Juliet, go and trim her up; +I'll go and chat with Paris: hie, make haste, +Make haste; the bridegroom he is come already: +Make haste, I say. + +Nurse: +Mistress! what, mistress! Juliet! fast, I warrant her, she: +Why, lamb! why, lady! fie, you slug-a-bed! +Why, love, I say! madam! sweet-heart! why, bride! +What, not a word? you take your pennyworths now; +Sleep for a week; for the next night, I warrant, +The County Paris hath set up his rest, +That you shall rest but little. God forgive me, +Marry, and amen, how sound is she asleep! +I must needs wake her. Madam, madam, madam! +Ay, let the county take you in your bed; +He'll fright you up, i' faith. Will it not be? +What, dress'd! and in your clothes! and down again! +I must needs wake you; Lady! lady! lady! +Alas, alas! Help, help! my lady's dead! +O, well-a-day, that ever I was born! +Some aqua vitae, ho! My lord! my lady! + +LADY CAPULET: +What noise is here? + +Nurse: +O lamentable day! + +LADY CAPULET: +What is the matter? + +Nurse: +Look, look! O heavy day! + +LADY CAPULET: +O me, O me! My child, my only life, +Revive, look up, or I will die with thee! +Help, help! Call help. + +CAPULET: +For shame, bring Juliet forth; her lord is come. + +Nurse: +She's dead, deceased, she's dead; alack the day! + +LADY CAPULET: +Alack the day, she's dead, she's dead, she's dead! + +CAPULET: +Ha! let me see her: out, alas! she's cold: +Her blood is settled, and her joints are stiff; +Life and these lips have long been separated: +Death lies on her like an untimely frost +Upon the sweetest flower of all the field. + +Nurse: +O lamentable day! + +LADY CAPULET: +O woful time! + +CAPULET: +Death, that hath ta'en her hence to make me wail, +Ties up my tongue, and will not let me speak. + +FRIAR LAURENCE: +Come, is the bride ready to go to church? + +CAPULET: +Ready to go, but never to return. +O son! the night before thy wedding-day +Hath Death lain with thy wife. There she lies, +Flower as she was, deflowered by him. +Death is my son-in-law, Death is my heir; +My daughter he hath wedded: I will die, +And leave him all; life, living, all is Death's. + +PARIS: +Have I thought long to see this morning's face, +And doth it give me such a sight as this? + +LADY CAPULET: +Accursed, unhappy, wretched, hateful day! +Most miserable hour that e'er time saw +In lasting labour of his pilgrimage! +But one, poor one, one poor and loving child, +But one thing to rejoice and solace in, +And cruel death hath catch'd it from my sight! + +Nurse: +O woe! O woful, woful, woful day! +Most lamentable day, most woful day, +That ever, ever, I did yet behold! +O day! O day! O day! O hateful day! +Never was seen so black a day as this: +O woful day, O woful day! + +PARIS: +Beguiled, divorced, wronged, spited, slain! +Most detestable death, by thee beguil'd, +By cruel cruel thee quite overthrown! +O love! O life! not life, but love in death! + +CAPULET: +Despised, distressed, hated, martyr'd, kill'd! +Uncomfortable time, why camest thou now +To murder, murder our solemnity? +O child! O child! my soul, and not my child! +Dead art thou! Alack! my child is dead; +And with my child my joys are buried. + +FRIAR LAURENCE: +Peace, ho, for shame! confusion's cure lives not +In these confusions. Heaven and yourself +Had part in this fair maid; now heaven hath all, +And all the better is it for the maid: +Your part in her you could not keep from death, +But heaven keeps his part in eternal life. +The most you sought was her promotion; +For 'twas your heaven she should be advanced: +And weep ye now, seeing she is advanced +Above the clouds, as high as heaven itself? +O, in this love, you love your child so ill, +That you run mad, seeing that she is well: +She's not well married that lives married long; +But she's best married that dies married young. +Dry up your tears, and stick your rosemary +On this fair corse; and, as the custom is, +In all her best array bear her to church: +For though fond nature bids us an lament, +Yet nature's tears are reason's merriment. + +CAPULET: +All things that we ordained festival, +Turn from their office to black funeral; +Our instruments to melancholy bells, +Our wedding cheer to a sad burial feast, +Our solemn hymns to sullen dirges change, +Our bridal flowers serve for a buried corse, +And all things change them to the contrary. + +FRIAR LAURENCE: +Sir, go you in; and, madam, go with him; +And go, Sir Paris; every one prepare +To follow this fair corse unto her grave: +The heavens do lour upon you for some ill; +Move them no more by crossing their high will. + +First Musician: +Faith, we may put up our pipes, and be gone. + +Nurse: +Honest goodfellows, ah, put up, put up; +For, well you know, this is a pitiful case. + +First Musician: +Ay, by my troth, the case may be amended. + +PETER: +Musicians, O, musicians, 'Heart's ease, Heart's +ease:' O, an you will have me live, play 'Heart's ease.' + +First Musician: +Why 'Heart's ease?' + +PETER: +O, musicians, because my heart itself plays 'My +heart is full of woe:' O, play me some merry dump, +to comfort me. + +First Musician: +Not a dump we; 'tis no time to play now. + +PETER: +You will not, then? + +First Musician: +No. + +PETER: +I will then give it you soundly. + +First Musician: +What will you give us? + +PETER: +No money, on my faith, but the gleek; +I will give you the minstrel. + +First Musician: +Then I will give you the serving-creature. + +PETER: +Then will I lay the serving-creature's dagger on +your pate. I will carry no crotchets: I'll re you, +I'll fa you; do you note me? + +First Musician: +An you re us and fa us, you note us. + +Second Musician: +Pray you, put up your dagger, and put out your wit. + +PETER: +Then have at you with my wit! I will dry-beat you +with an iron wit, and put up my iron dagger. Answer +me like men: +'When griping grief the heart doth wound, +And doleful dumps the mind oppress, +Then music with her silver sound'-- +why 'silver sound'? why 'music with her silver +sound'? What say you, Simon Catling? + +Musician: +Marry, sir, because silver hath a sweet sound. + +PETER: +Pretty! What say you, Hugh Rebeck? + +Second Musician: +I say 'silver sound,' because musicians sound for silver. + +PETER: +Pretty too! What say you, James Soundpost? + +Third Musician: +Faith, I know not what to say. + +PETER: +O, I cry you mercy; you are the singer: I will say +for you. It is 'music with her silver sound,' +because musicians have no gold for sounding: +'Then music with her silver sound +With speedy help doth lend redress.' + +First Musician: +What a pestilent knave is this same! + +Second Musician: +Hang him, Jack! Come, we'll in here; tarry for the +mourners, and stay dinner. + +ROMEO: +If I may trust the flattering truth of sleep, +My dreams presage some joyful news at hand: +My bosom's lord sits lightly in his throne; +And all this day an unaccustom'd spirit +Lifts me above the ground with cheerful thoughts. +I dreamt my lady came and found me dead-- +Strange dream, that gives a dead man leave +to think!-- +And breathed such life with kisses in my lips, +That I revived, and was an emperor. +Ah me! how sweet is love itself possess'd, +When but love's shadows are so rich in joy! +News from Verona!--How now, Balthasar! +Dost thou not bring me letters from the friar? +How doth my lady? Is my father well? +How fares my Juliet? that I ask again; +For nothing can be ill, if she be well. + +BALTHASAR: +Then she is well, and nothing can be ill: +Her body sleeps in Capel's monument, +And her immortal part with angels lives. +I saw her laid low in her kindred's vault, +And presently took post to tell it you: +O, pardon me for bringing these ill news, +Since you did leave it for my office, sir. + +ROMEO: +Is it even so? then I defy you, stars! +Thou know'st my lodging: get me ink and paper, +And hire post-horses; I will hence to-night. + +BALTHASAR: +I do beseech you, sir, have patience: +Your looks are pale and wild, and do import +Some misadventure. + +ROMEO: +Tush, thou art deceived: +Leave me, and do the thing I bid thee do. +Hast thou no letters to me from the friar? + +BALTHASAR: +No, my good lord. + +ROMEO: +No matter: get thee gone, +And hire those horses; I'll be with thee straight. +Well, Juliet, I will lie with thee to-night. +Let's see for means: O mischief, thou art swift +To enter in the thoughts of desperate men! +I do remember an apothecary,-- +And hereabouts he dwells,--which late I noted +In tatter'd weeds, with overwhelming brows, +Culling of simples; meagre were his looks, +Sharp misery had worn him to the bones: +And in his needy shop a tortoise hung, +An alligator stuff'd, and other skins +Of ill-shaped fishes; and about his shelves +A beggarly account of empty boxes, +Green earthen pots, bladders and musty seeds, +Remnants of packthread and old cakes of roses, +Were thinly scatter'd, to make up a show. +Noting this penury, to myself I said +'An if a man did need a poison now, +Whose sale is present death in Mantua, +Here lives a caitiff wretch would sell it him.' +O, this same thought did but forerun my need; +And this same needy man must sell it me. +As I remember, this should be the house. +Being holiday, the beggar's shop is shut. +What, ho! apothecary! + +Apothecary: +Who calls so loud? + +ROMEO: +Come hither, man. I see that thou art poor: +Hold, there is forty ducats: let me have +A dram of poison, such soon-speeding gear +As will disperse itself through all the veins +That the life-weary taker may fall dead +And that the trunk may be discharged of breath +As violently as hasty powder fired +Doth hurry from the fatal cannon's womb. + +Apothecary: +Such mortal drugs I have; but Mantua's law +Is death to any he that utters them. + +ROMEO: +Art thou so bare and full of wretchedness, +And fear'st to die? famine is in thy cheeks, +Need and oppression starveth in thine eyes, +Contempt and beggary hangs upon thy back; +The world is not thy friend nor the world's law; +The world affords no law to make thee rich; +Then be not poor, but break it, and take this. + +Apothecary: +My poverty, but not my will, consents. + +ROMEO: +I pay thy poverty, and not thy will. + +Apothecary: +Put this in any liquid thing you will, +And drink it off; and, if you had the strength +Of twenty men, it would dispatch you straight. + +ROMEO: +There is thy gold, worse poison to men's souls, +Doing more murders in this loathsome world, +Than these poor compounds that thou mayst not sell. +I sell thee poison; thou hast sold me none. +Farewell: buy food, and get thyself in flesh. +Come, cordial and not poison, go with me +To Juliet's grave; for there must I use thee. + +FRIAR JOHN: +Holy Franciscan friar! brother, ho! + +FRIAR LAURENCE: +This same should be the voice of Friar John. +Welcome from Mantua: what says Romeo? +Or, if his mind be writ, give me his letter. + +FRIAR JOHN: +Going to find a bare-foot brother out +One of our order, to associate me, +Here in this city visiting the sick, +And finding him, the searchers of the town, +Suspecting that we both were in a house +Where the infectious pestilence did reign, +Seal'd up the doors, and would not let us forth; +So that my speed to Mantua there was stay'd. + +FRIAR LAURENCE: +Who bare my letter, then, to Romeo? + +FRIAR JOHN: +I could not send it,--here it is again,-- +Nor get a messenger to bring it thee, +So fearful were they of infection. + +FRIAR LAURENCE: +Unhappy fortune! by my brotherhood, +The letter was not nice but full of charge +Of dear import, and the neglecting it +May do much danger. Friar John, go hence; +Get me an iron crow, and bring it straight +Unto my cell. + +FRIAR JOHN: +Brother, I'll go and bring it thee. + +FRIAR LAURENCE: +Now must I to the monument alone; +Within three hours will fair Juliet wake: +She will beshrew me much that Romeo +Hath had no notice of these accidents; +But I will write again to Mantua, +And keep her at my cell till Romeo come; +Poor living corse, closed in a dead man's tomb! + +PARIS: +Give me thy torch, boy: hence, and stand aloof: +Yet put it out, for I would not be seen. +Under yond yew-trees lay thee all along, +Holding thine ear close to the hollow ground; +So shall no foot upon the churchyard tread, +Being loose, unfirm, with digging up of graves, +But thou shalt hear it: whistle then to me, +As signal that thou hear'st something approach. +Give me those flowers. Do as I bid thee, go. + +PAGE: + +PARIS: +Sweet flower, with flowers thy bridal bed I strew,-- +O woe! thy canopy is dust and stones;-- +Which with sweet water nightly I will dew, +Or, wanting that, with tears distill'd by moans: +The obsequies that I for thee will keep +Nightly shall be to strew thy grave and weep. +The boy gives warning something doth approach. +What cursed foot wanders this way to-night, +To cross my obsequies and true love's rite? +What with a torch! muffle me, night, awhile. + +ROMEO: +Give me that mattock and the wrenching iron. +Hold, take this letter; early in the morning +See thou deliver it to my lord and father. +Give me the light: upon thy life, I charge thee, +Whate'er thou hear'st or seest, stand all aloof, +And do not interrupt me in my course. +Why I descend into this bed of death, +Is partly to behold my lady's face; +But chiefly to take thence from her dead finger +A precious ring, a ring that I must use +In dear employment: therefore hence, be gone: +But if thou, jealous, dost return to pry +In what I further shall intend to do, +By heaven, I will tear thee joint by joint +And strew this hungry churchyard with thy limbs: +The time and my intents are savage-wild, +More fierce and more inexorable far +Than empty tigers or the roaring sea. + +BALTHASAR: +I will be gone, sir, and not trouble you. + +ROMEO: +So shalt thou show me friendship. Take thou that: +Live, and be prosperous: and farewell, good fellow. + +BALTHASAR: + +ROMEO: +Thou detestable maw, thou womb of death, +Gorged with the dearest morsel of the earth, +Thus I enforce thy rotten jaws to open, +And, in despite, I'll cram thee with more food! + +PARIS: +This is that banish'd haughty Montague, +That murder'd my love's cousin, with which grief, +It is supposed, the fair creature died; +And here is come to do some villanous shame +To the dead bodies: I will apprehend him. +Stop thy unhallow'd toil, vile Montague! +Can vengeance be pursued further than death? +Condemned villain, I do apprehend thee: +Obey, and go with me; for thou must die. + +ROMEO: +I must indeed; and therefore came I hither. +Good gentle youth, tempt not a desperate man; +Fly hence, and leave me: think upon these gone; +Let them affright thee. I beseech thee, youth, +Put not another sin upon my head, +By urging me to fury: O, be gone! +By heaven, I love thee better than myself; +For I come hither arm'd against myself: +Stay not, be gone; live, and hereafter say, +A madman's mercy bade thee run away. + +PARIS: +I do defy thy conjurations, +And apprehend thee for a felon here. + +ROMEO: +Wilt thou provoke me? then have at thee, boy! + +PAGE: +O Lord, they fight! I will go call the watch. + +PARIS: +O, I am slain! +If thou be merciful, +Open the tomb, lay me with Juliet. + +ROMEO: +In faith, I will. Let me peruse this face. +Mercutio's kinsman, noble County Paris! +What said my man, when my betossed soul +Did not attend him as we rode? I think +He told me Paris should have married Juliet: +Said he not so? or did I dream it so? +Or am I mad, hearing him talk of Juliet, +To think it was so? O, give me thy hand, +One writ with me in sour misfortune's book! +I'll bury thee in a triumphant grave; +A grave? O no! a lantern, slaughter'd youth, +For here lies Juliet, and her beauty makes +This vault a feasting presence full of light. +Death, lie thou there, by a dead man interr'd. +How oft when men are at the point of death +Have they been merry! which their keepers call +A lightning before death: O, how may I +Call this a lightning? O my love! my wife! +Death, that hath suck'd the honey of thy breath, +Hath had no power yet upon thy beauty: +Thou art not conquer'd; beauty's ensign yet +Is crimson in thy lips and in thy cheeks, +And death's pale flag is not advanced there. +Tybalt, liest thou there in thy bloody sheet? +O, what more favour can I do to thee, +Than with that hand that cut thy youth in twain +To sunder his that was thine enemy? +Forgive me, cousin! Ah, dear Juliet, +Why art thou yet so fair? shall I believe +That unsubstantial death is amorous, +And that the lean abhorred monster keeps +Thee here in dark to be his paramour? +For fear of that, I still will stay with thee; +And never from this palace of dim night +Depart again: here, here will I remain +With worms that are thy chamber-maids; O, here +Will I set up my everlasting rest, +And shake the yoke of inauspicious stars +From this world-wearied flesh. Eyes, look your last! +Arms, take your last embrace! and, lips, O you +The doors of breath, seal with a righteous kiss +A dateless bargain to engrossing death! +Come, bitter conduct, come, unsavoury guide! +Thou desperate pilot, now at once run on +The dashing rocks thy sea-sick weary bark! +Here's to my love! +O true apothecary! +Thy drugs are quick. Thus with a kiss I die. + +FRIAR LAURENCE: +Saint Francis be my speed! how oft to-night +Have my old feet stumbled at graves! Who's there? + +BALTHASAR: +Here's one, a friend, and one that knows you well. + +FRIAR LAURENCE: +Bliss be upon you! Tell me, good my friend, +What torch is yond, that vainly lends his light +To grubs and eyeless skulls? as I discern, +It burneth in the Capel's monument. + +BALTHASAR: +It doth so, holy sir; and there's my master, +One that you love. + +FRIAR LAURENCE: +Who is it? + +BALTHASAR: +Romeo. + +FRIAR LAURENCE: +How long hath he been there? + +BALTHASAR: +Full half an hour. + +FRIAR LAURENCE: +Go with me to the vault. + +BALTHASAR: +I dare not, sir +My master knows not but I am gone hence; +And fearfully did menace me with death, +If I did stay to look on his intents. + +FRIAR LAURENCE: +Stay, then; I'll go alone. Fear comes upon me: +O, much I fear some ill unlucky thing. + +BALTHASAR: +As I did sleep under this yew-tree here, +I dreamt my master and another fought, +And that my master slew him. + +FRIAR LAURENCE: +Romeo! +Alack, alack, what blood is this, which stains +The stony entrance of this sepulchre? +What mean these masterless and gory swords +To lie discolour'd by this place of peace? +Romeo! O, pale! Who else? what, Paris too? +And steep'd in blood? Ah, what an unkind hour +Is guilty of this lamentable chance! +The lady stirs. + +JULIET: +O comfortable friar! where is my lord? +I do remember well where I should be, +And there I am. Where is my Romeo? + +FRIAR LAURENCE: +I hear some noise. Lady, come from that nest +Of death, contagion, and unnatural sleep: +A greater power than we can contradict +Hath thwarted our intents. Come, come away. +Thy husband in thy bosom there lies dead; +And Paris too. Come, I'll dispose of thee +Among a sisterhood of holy nuns: +Stay not to question, for the watch is coming; +Come, go, good Juliet, +I dare no longer stay. + +JULIET: +Go, get thee hence, for I will not away. +What's here? a cup, closed in my true love's hand? +Poison, I see, hath been his timeless end: +O churl! drunk all, and left no friendly drop +To help me after? I will kiss thy lips; +Haply some poison yet doth hang on them, +To make die with a restorative. +Thy lips are warm. + +First Watchman: + +JULIET: +Yea, noise? then I'll be brief. O happy dagger! +This is thy sheath; +there rust, and let me die. + +PAGE: +This is the place; there, where the torch doth burn. + +First Watchman: +The ground is bloody; search about the churchyard: +Go, some of you, whoe'er you find attach. +Pitiful sight! here lies the county slain, +And Juliet bleeding, warm, and newly dead, +Who here hath lain these two days buried. +Go, tell the prince: run to the Capulets: +Raise up the Montagues: some others search: +We see the ground whereon these woes do lie; +But the true ground of all these piteous woes +We cannot without circumstance descry. + +Second Watchman: +Here's Romeo's man; we found him in the churchyard. + +First Watchman: +Hold him in safety, till the prince come hither. + +Third Watchman: +Here is a friar, that trembles, sighs and weeps: +We took this mattock and this spade from him, +As he was coming from this churchyard side. + +First Watchman: +A great suspicion: stay the friar too. + +PRINCE: +What misadventure is so early up, +That calls our person from our morning's rest? + +CAPULET: +What should it be, that they so shriek abroad? + +LADY CAPULET: +The people in the street cry Romeo, +Some Juliet, and some Paris; and all run, +With open outcry toward our monument. + +PRINCE: +What fear is this which startles in our ears? + +First Watchman: +Sovereign, here lies the County Paris slain; +And Romeo dead; and Juliet, dead before, +Warm and new kill'd. + +PRINCE: +Search, seek, and know how this foul murder comes. + +First Watchman: +Here is a friar, and slaughter'd Romeo's man; +With instruments upon them, fit to open +These dead men's tombs. + +CAPULET: +O heavens! O wife, look how our daughter bleeds! +This dagger hath mista'en--for, lo, his house +Is empty on the back of Montague,-- +And it mis-sheathed in my daughter's bosom! + +LADY CAPULET: +O me! this sight of death is as a bell, +That warns my old age to a sepulchre. + +PRINCE: +Come, Montague; for thou art early up, +To see thy son and heir more early down. + +MONTAGUE: +Alas, my liege, my wife is dead to-night; +Grief of my son's exile hath stopp'd her breath: +What further woe conspires against mine age? + +PRINCE: +Look, and thou shalt see. + +MONTAGUE: +O thou untaught! what manners is in this? +To press before thy father to a grave? + +PRINCE: +Seal up the mouth of outrage for a while, +Till we can clear these ambiguities, +And know their spring, their head, their +true descent; +And then will I be general of your woes, +And lead you even to death: meantime forbear, +And let mischance be slave to patience. +Bring forth the parties of suspicion. + +FRIAR LAURENCE: +I am the greatest, able to do least, +Yet most suspected, as the time and place +Doth make against me of this direful murder; +And here I stand, both to impeach and purge +Myself condemned and myself excused. + +PRINCE: +Then say at once what thou dost know in this. + +FRIAR LAURENCE: +I will be brief, for my short date of breath +Is not so long as is a tedious tale. +Romeo, there dead, was husband to that Juliet; +And she, there dead, that Romeo's faithful wife: +I married them; and their stol'n marriage-day +Was Tybalt's dooms-day, whose untimely death +Banish'd the new-made bridegroom from the city, +For whom, and not for Tybalt, Juliet pined. +You, to remove that siege of grief from her, +Betroth'd and would have married her perforce +To County Paris: then comes she to me, +And, with wild looks, bid me devise some mean +To rid her from this second marriage, +Or in my cell there would she kill herself. +Then gave I her, so tutor'd by my art, +A sleeping potion; which so took effect +As I intended, for it wrought on her +The form of death: meantime I writ to Romeo, +That he should hither come as this dire night, +To help to take her from her borrow'd grave, +Being the time the potion's force should cease. +But he which bore my letter, Friar John, +Was stay'd by accident, and yesternight +Return'd my letter back. Then all alone +At the prefixed hour of her waking, +Came I to take her from her kindred's vault; +Meaning to keep her closely at my cell, +Till I conveniently could send to Romeo: +But when I came, some minute ere the time +Of her awaking, here untimely lay +The noble Paris and true Romeo dead. +She wakes; and I entreated her come forth, +And bear this work of heaven with patience: +But then a noise did scare me from the tomb; +And she, too desperate, would not go with me, +But, as it seems, did violence on herself. +All this I know; and to the marriage +Her nurse is privy: and, if aught in this +Miscarried by my fault, let my old life +Be sacrificed, some hour before his time, +Unto the rigour of severest law. + +PRINCE: +We still have known thee for a holy man. +Where's Romeo's man? what can he say in this? + +BALTHASAR: +I brought my master news of Juliet's death; +And then in post he came from Mantua +To this same place, to this same monument. +This letter he early bid me give his father, +And threatened me with death, going in the vault, +I departed not and left him there. + +PRINCE: +Give me the letter; I will look on it. +Where is the county's page, that raised the watch? +Sirrah, what made your master in this place? + +PAGE: +He came with flowers to strew his lady's grave; +And bid me stand aloof, and so I did: +Anon comes one with light to ope the tomb; +And by and by my master drew on him; +And then I ran away to call the watch. + +PRINCE: +This letter doth make good the friar's words, +Their course of love, the tidings of her death: +And here he writes that he did buy a poison +Of a poor 'pothecary, and therewithal +Came to this vault to die, and lie with Juliet. +Where be these enemies? Capulet! Montague! +See, what a scourge is laid upon your hate, +That heaven finds means to kill your joys with love. +And I for winking at your discords too +Have lost a brace of kinsmen: all are punish'd. + +CAPULET: +O brother Montague, give me thy hand: +This is my daughter's jointure, for no more +Can I demand. + +MONTAGUE: +But I can give thee more: +For I will raise her statue in pure gold; +That while Verona by that name is known, +There shall no figure at such rate be set +As that of true and faithful Juliet. + +CAPULET: +As rich shall Romeo's by his lady's lie; +Poor sacrifices of our enmity! + +PRINCE: +A glooming peace this morning with it brings; +The sun, for sorrow, will not show his head: +Go hence, to have more talk of these sad things; +Some shall be pardon'd, and some punished: +For never was a story of more woe +Than this of Juliet and her Romeo. + +WARWICK: +I wonder how the king escaped our hands. + +YORK: +While we pursued the horsemen of the north, +He slily stole away and left his men: +Whereat the great Lord of Northumberland, +Whose warlike ears could never brook retreat, +Cheer'd up the drooping army; and himself, +Lord Clifford and Lord Stafford, all abreast, +Charged our main battle's front, and breaking in +Were by the swords of common soldiers slain. + +EDWARD: +Lord Stafford's father, Duke of Buckingham, +Is either slain or wounded dangerously; +I cleft his beaver with a downright blow: +That this is true, father, behold his blood. + +MONTAGUE: +And, brother, here's the Earl of Wiltshire's blood, +Whom I encounter'd as the battles join'd. + +RICHARD: +Speak thou for me and tell them what I did. + +YORK: +Richard hath best deserved of all my sons. +But is your grace dead, my Lord of Somerset? + +NORFOLK: +Such hope have all the line of John of Gaunt! + +RICHARD: +Thus do I hope to shake King Henry's head. + +WARWICK: +And so do I. Victorious Prince of York, +Before I see thee seated in that throne +Which now the house of Lancaster usurps, +I vow by heaven these eyes shall never close. +This is the palace of the fearful king, +And this the regal seat: possess it, York; +For this is thine and not King Henry's heirs' + +YORK: +Assist me, then, sweet Warwick, and I will; +For hither we have broken in by force. + +NORFOLK: +We'll all assist you; he that flies shall die. + +YORK: +Thanks, gentle Norfolk: stay by me, my lords; +And, soldiers, stay and lodge by me this night. + +WARWICK: +And when the king comes, offer no violence, +Unless he seek to thrust you out perforce. + +YORK: +The queen this day here holds her parliament, +But little thinks we shall be of her council: +By words or blows here let us win our right. + +RICHARD: +Arm'd as we are, let's stay within this house. + +WARWICK: +The bloody parliament shall this be call'd, +Unless Plantagenet, Duke of York, be king, +And bashful Henry deposed, whose cowardice +Hath made us by-words to our enemies. + +YORK: +Then leave me not, my lords; be resolute; +I mean to take possession of my right. + +WARWICK: +Neither the king, nor he that loves him best, +The proudest he that holds up Lancaster, +Dares stir a wing, if Warwick shake his bells. +I'll plant Plantagenet, root him up who dares: +Resolve thee, Richard; claim the English crown. + +KING HENRY VI: +My lords, look where the sturdy rebel sits, +Even in the chair of state: belike he means, +Back'd by the power of Warwick, that false peer, +To aspire unto the crown and reign as king. +Earl of Northumberland, he slew thy father. +And thine, Lord Clifford; and you both have vow'd revenge +On him, his sons, his favourites and his friends. + +NORTHUMBERLAND: +If I be not, heavens be revenged on me! + +CLIFFORD: +The hope thereof makes Clifford mourn in steel. + +WESTMORELAND: +What, shall we suffer this? let's pluck him down: +My heart for anger burns; I cannot brook it. + +KING HENRY VI: +Be patient, gentle Earl of Westmoreland. + +CLIFFORD: +Patience is for poltroons, such as he: +He durst not sit there, had your father lived. +My gracious lord, here in the parliament +Let us assail the family of York. + +NORTHUMBERLAND: +Well hast thou spoken, cousin: be it so. + +KING HENRY VI: +Ah, know you not the city favours them, +And they have troops of soldiers at their beck? + +EXETER: +But when the duke is slain, they'll quickly fly. + +KING HENRY VI: +Far be the thought of this from Henry's heart, +To make a shambles of the parliament-house! +Cousin of Exeter, frowns, words and threats +Shall be the war that Henry means to use. +Thou factious Duke of York, descend my throne, +and kneel for grace and mercy at my feet; +I am thy sovereign. + +YORK: +I am thine. + +EXETER: +For shame, come down: he made thee Duke of York. + +YORK: +'Twas my inheritance, as the earldom was. + +EXETER: +Thy father was a traitor to the crown. + +WARWICK: +Exeter, thou art a traitor to the crown +In following this usurping Henry. + +CLIFFORD: +Whom should he follow but his natural king? + +WARWICK: +True, Clifford; and that's Richard Duke of York. + +KING HENRY VI: +And shall I stand, and thou sit in my throne? + +YORK: +It must and shall be so: content thyself. + +WARWICK: +Be Duke of Lancaster; let him be king. + +WESTMORELAND: +He is both king and Duke of Lancaster; +And that the Lord of Westmoreland shall maintain. + +WARWICK: +And Warwick shall disprove it. You forget +That we are those which chased you from the field +And slew your fathers, and with colours spread +March'd through the city to the palace gates. + +NORTHUMBERLAND: +Yes, Warwick, I remember it to my grief; +And, by his soul, thou and thy house shall rue it. + +WESTMORELAND: +Plantagenet, of thee and these thy sons, +Thy kinsman and thy friends, I'll have more lives +Than drops of blood were in my father's veins. + +CLIFFORD: +Urge it no more; lest that, instead of words, +I send thee, Warwick, such a messenger +As shall revenge his death before I stir. + +WARWICK: +Poor Clifford! how I scorn his worthless threats! + +YORK: +Will you we show our title to the crown? +If not, our swords shall plead it in the field. + +KING HENRY VI: +What title hast thou, traitor, to the crown? +Thy father was, as thou art, Duke of York; +Thy grandfather, Roger Mortimer, Earl of March: +I am the son of Henry the Fifth, +Who made the Dauphin and the French to stoop +And seized upon their towns and provinces. + +WARWICK: +Talk not of France, sith thou hast lost it all. + +KING HENRY VI: +The lord protector lost it, and not I: +When I was crown'd I was but nine months old. + +RICHARD: +You are old enough now, and yet, methinks, you lose. +Father, tear the crown from the usurper's head. + +EDWARD: +Sweet father, do so; set it on your head. + +MONTAGUE: +Good brother, as thou lovest and honourest arms, +Let's fight it out and not stand cavilling thus. + +RICHARD: +Sound drums and trumpets, and the king will fly. + +YORK: +Sons, peace! + +KING HENRY VI: +Peace, thou! and give King Henry leave to speak. + +WARWICK: +Plantagenet shall speak first: hear him, lords; +And be you silent and attentive too, +For he that interrupts him shall not live. + +KING HENRY VI: +Think'st thou that I will leave my kingly throne, +Wherein my grandsire and my father sat? +No: first shall war unpeople this my realm; +Ay, and their colours, often borne in France, +And now in England to our heart's great sorrow, +Shall be my winding-sheet. Why faint you, lords? +My title's good, and better far than his. + +WARWICK: +Prove it, Henry, and thou shalt be king. + +KING HENRY VI: +Henry the Fourth by conquest got the crown. + +YORK: +'Twas by rebellion against his king. + +KING HENRY VI: + +YORK: +What then? + +KING HENRY VI: +An if he may, then am I lawful king; +For Richard, in the view of many lords, +Resign'd the crown to Henry the Fourth, +Whose heir my father was, and I am his. + +YORK: +He rose against him, being his sovereign, +And made him to resign his crown perforce. + +WARWICK: +Suppose, my lords, he did it unconstrain'd, +Think you 'twere prejudicial to his crown? + +EXETER: +No; for he could not so resign his crown +But that the next heir should succeed and reign. + +KING HENRY VI: +Art thou against us, Duke of Exeter? + +EXETER: +His is the right, and therefore pardon me. + +YORK: +Why whisper you, my lords, and answer not? + +EXETER: +My conscience tells me he is lawful king. + +KING HENRY VI: + +NORTHUMBERLAND: +Plantagenet, for all the claim thou lay'st, +Think not that Henry shall be so deposed. + +WARWICK: +Deposed he shall be, in despite of all. + +NORTHUMBERLAND: +Thou art deceived: 'tis not thy southern power, +Of Essex, Norfolk, Suffolk, nor of Kent, +Which makes thee thus presumptuous and proud, +Can set the duke up in despite of me. + +CLIFFORD: +King Henry, be thy title right or wrong, +Lord Clifford vows to fight in thy defence: +May that ground gape and swallow me alive, +Where I shall kneel to him that slew my father! + +KING HENRY VI: +O Clifford, how thy words revive my heart! + +YORK: +Henry of Lancaster, resign thy crown. +What mutter you, or what conspire you, lords? + +WARWICK: +Do right unto this princely Duke of York, +Or I will fill the house with armed men, +And over the chair of state, where now he sits, +Write up his title with usurping blood. + +KING HENRY VI: +My Lord of Warwick, hear me but one word: +Let me for this my life-time reign as king. + +YORK: +Confirm the crown to me and to mine heirs, +And thou shalt reign in quiet while thou livest. + +KING HENRY VI: +I am content: Richard Plantagenet, +Enjoy the kingdom after my decease. + +CLIFFORD: +What wrong is this unto the prince your son! + +WARWICK: +What good is this to England and himself! + +WESTMORELAND: +Base, fearful and despairing Henry! + +CLIFFORD: +How hast thou injured both thyself and us! + +WESTMORELAND: +I cannot stay to hear these articles. + +NORTHUMBERLAND: +Nor I. + +CLIFFORD: +Come, cousin, let us tell the queen these news. + +WESTMORELAND: +Farewell, faint-hearted and degenerate king, +In whose cold blood no spark of honour bides. + +NORTHUMBERLAND: +Be thou a prey unto the house of York, +And die in bands for this unmanly deed! + +CLIFFORD: +In dreadful war mayst thou be overcome, +Or live in peace abandon'd and despised! + +WARWICK: +Turn this way, Henry, and regard them not. + +EXETER: +They seek revenge and therefore will not yield. + +KING HENRY VI: +Ah, Exeter! + +WARWICK: +Why should you sigh, my lord? + +KING HENRY VI: +Not for myself, Lord Warwick, but my son, +Whom I unnaturally shall disinherit. +But be it as it may: I here entail +The crown to thee and to thine heirs for ever; +Conditionally, that here thou take an oath +To cease this civil war, and, whilst I live, +To honour me as thy king and sovereign, +And neither by treason nor hostility +To seek to put me down and reign thyself. + +YORK: +This oath I willingly take and will perform. + +WARWICK: +Long live King Henry! Plantagenet embrace him. + +KING HENRY VI: +And long live thou and these thy forward sons! + +YORK: +Now York and Lancaster are reconciled. + +EXETER: +Accursed be he that seeks to make them foes! + +YORK: +Farewell, my gracious lord; I'll to my castle. + +WARWICK: +And I'll keep London with my soldiers. + +NORFOLK: +And I to Norfolk with my followers. + +MONTAGUE: +And I unto the sea from whence I came. + +KING HENRY VI: +And I, with grief and sorrow, to the court. + +EXETER: +Here comes the queen, whose looks bewray her anger: +I'll steal away. + +KING HENRY VI: +Exeter, so will I. + +QUEEN MARGARET: +Nay, go not from me; I will follow thee. + +KING HENRY VI: +Be patient, gentle queen, and I will stay. + +QUEEN MARGARET: +Who can be patient in such extremes? +Ah, wretched man! would I had died a maid +And never seen thee, never borne thee son, +Seeing thou hast proved so unnatural a father +Hath he deserved to lose his birthright thus? +Hadst thou but loved him half so well as I, +Or felt that pain which I did for him once, +Or nourish'd him as I did with my blood, +Thou wouldst have left thy dearest heart-blood there, +Rather than have that savage duke thine heir +And disinherited thine only son. + +PRINCE EDWARD: +Father, you cannot disinherit me: +If you be king, why should not I succeed? + +KING HENRY VI: +Pardon me, Margaret; pardon me, sweet son: +The Earl of Warwick and the duke enforced me. + +QUEEN MARGARET: +Enforced thee! art thou king, and wilt be forced? +I shame to hear thee speak. Ah, timorous wretch! +Thou hast undone thyself, thy son and me; +And given unto the house of York such head +As thou shalt reign but by their sufferance. +To entail him and his heirs unto the crown, +What is it, but to make thy sepulchre +And creep into it far before thy time? +Warwick is chancellor and the lord of Calais; +Stern Falconbridge commands the narrow seas; +The duke is made protector of the realm; +And yet shalt thou be safe? such safety finds +The trembling lamb environed with wolves. +Had I been there, which am a silly woman, +The soldiers should have toss'd me on their pikes +Before I would have granted to that act. +But thou preferr'st thy life before thine honour: +And seeing thou dost, I here divorce myself +Both from thy table, Henry, and thy bed, +Until that act of parliament be repeal'd +Whereby my son is disinherited. +The northern lords that have forsworn thy colours +Will follow mine, if once they see them spread; +And spread they shall be, to thy foul disgrace +And utter ruin of the house of York. +Thus do I leave thee. Come, son, let's away; +Our army is ready; come, we'll after them. + +KING HENRY VI: +Stay, gentle Margaret, and hear me speak. + +QUEEN MARGARET: +Thou hast spoke too much already: get thee gone. + +KING HENRY VI: +Gentle son Edward, thou wilt stay with me? + +QUEEN MARGARET: +Ay, to be murder'd by his enemies. + +PRINCE EDWARD: +When I return with victory from the field +I'll see your grace: till then I'll follow her. + +QUEEN MARGARET: +Come, son, away; we may not linger thus. + +KING HENRY VI: +Poor queen! how love to me and to her son +Hath made her break out into terms of rage! +Revenged may she be on that hateful duke, +Whose haughty spirit, winged with desire, +Will cost my crown, and like an empty eagle +Tire on the flesh of me and of my son! +The loss of those three lords torments my heart: +I'll write unto them and entreat them fair. +Come, cousin you shall be the messenger. + +EXETER: +And I, I hope, shall reconcile them all. +3 KING HENRY VI + +RICHARD: +Brother, though I be youngest, give me leave. + +EDWARD: +No, I can better play the orator. + +MONTAGUE: +But I have reasons strong and forcible. + +YORK: +Why, how now, sons and brother! at a strife? +What is your quarrel? how began it first? + +EDWARD: +No quarrel, but a slight contention. + +YORK: +About what? + +RICHARD: +About that which concerns your grace and us; +The crown of England, father, which is yours. + +YORK: +Mine boy? not till King Henry be dead. + +RICHARD: +Your right depends not on his life or death. + +EDWARD: +Now you are heir, therefore enjoy it now: +By giving the house of Lancaster leave to breathe, +It will outrun you, father, in the end. + +YORK: +I took an oath that he should quietly reign. + +EDWARD: +But for a kingdom any oath may be broken: +I would break a thousand oaths to reign one year. + +RICHARD: +No; God forbid your grace should be forsworn. + +YORK: +I shall be, if I claim by open war. + +RICHARD: +I'll prove the contrary, if you'll hear me speak. + +YORK: +Thou canst not, son; it is impossible. + +RICHARD: +An oath is of no moment, being not took +Before a true and lawful magistrate, +That hath authority over him that swears: +Henry had none, but did usurp the place; +Then, seeing 'twas he that made you to depose, +Your oath, my lord, is vain and frivolous. +Therefore, to arms! And, father, do but think +How sweet a thing it is to wear a crown; +Within whose circuit is Elysium +And all that poets feign of bliss and joy. +Why do we finger thus? I cannot rest +Until the white rose that I wear be dyed +Even in the lukewarm blood of Henry's heart. + +YORK: +Richard, enough; I will be king, or die. +Brother, thou shalt to London presently, +And whet on Warwick to this enterprise. +Thou, Richard, shalt to the Duke of Norfolk, +And tell him privily of our intent. +You Edward, shall unto my Lord Cobham, +With whom the Kentishmen will willingly rise: +In them I trust; for they are soldiers, +Witty, courteous, liberal, full of spirit. +While you are thus employ'd, what resteth more, +But that I seek occasion how to rise, +And yet the king not privy to my drift, +Nor any of the house of Lancaster? +But, stay: what news? Why comest thou in such post? + +Messenger: +The queen with all the northern earls and lords +Intend here to besiege you in your castle: +She is hard by with twenty thousand men; +And therefore fortify your hold, my lord. + +YORK: +Ay, with my sword. What! think'st thou that we fear them? +Edward and Richard, you shall stay with me; +My brother Montague shall post to London: +Let noble Warwick, Cobham, and the rest, +Whom we have left protectors of the king, +With powerful policy strengthen themselves, +And trust not simple Henry nor his oaths. + +MONTAGUE: +Brother, I go; I'll win them, fear it not: +And thus most humbly I do take my leave. +Sir John and Sir Hugh Mortimer, mine uncles, +You are come to Sandal in a happy hour; +The army of the queen mean to besiege us. + +JOHN MORTIMER: +She shall not need; we'll meet her in the field. + +YORK: +What, with five thousand men? + +RICHARD: +Ay, with five hundred, father, for a need: +A woman's general; what should we fear? + +EDWARD: +I hear their drums: let's set our men in order, +And issue forth and bid them battle straight. + +YORK: +Five men to twenty! though the odds be great, +I doubt not, uncle, of our victory. +Many a battle have I won in France, +When as the enemy hath been ten to one: +Why should I not now have the like success? +3 KING HENRY VI + +RUTLAND: +Ah, whither shall I fly to 'scape their hands? +Ah, tutor, look where bloody Clifford comes! + +CLIFFORD: +Chaplain, away! thy priesthood saves thy life. +As for the brat of this accursed duke, +Whose father slew my father, he shall die. + +Tutor: +And I, my lord, will bear him company. + +CLIFFORD: +Soldiers, away with him! + +Tutor: +Ah, Clifford, murder not this innocent child, +Lest thou be hated both of God and man! + +CLIFFORD: +How now! is he dead already? or is it fear +That makes him close his eyes? I'll open them. + +RUTLAND: +So looks the pent-up lion o'er the wretch +That trembles under his devouring paws; +And so he walks, insulting o'er his prey, +And so he comes, to rend his limbs asunder. +Ah, gentle Clifford, kill me with thy sword, +And not with such a cruel threatening look. +Sweet Clifford, hear me speak before I die. +I am too mean a subject for thy wrath: +Be thou revenged on men, and let me live. + +CLIFFORD: +In vain thou speak'st, poor boy; my father's blood +Hath stopp'd the passage where thy words should enter. + +RUTLAND: +Then let my father's blood open it again: +He is a man, and, Clifford, cope with him. + +CLIFFORD: +Had thy brethren here, their lives and thine +Were not revenge sufficient for me; +No, if I digg'd up thy forefathers' graves +And hung their rotten coffins up in chains, +It could not slake mine ire, nor ease my heart. +The sight of any of the house of York +Is as a fury to torment my soul; +And till I root out their accursed line +And leave not one alive, I live in hell. +Therefore-- + +RUTLAND: +O, let me pray before I take my death! +To thee I pray; sweet Clifford, pity me! + +CLIFFORD: +Such pity as my rapier's point affords. + +RUTLAND: +I never did thee harm: why wilt thou slay me? + +CLIFFORD: +Thy father hath. + +RUTLAND: +But 'twas ere I was born. +Thou hast one son; for his sake pity me, +Lest in revenge thereof, sith God is just, +He be as miserably slain as I. +Ah, let me live in prison all my days; +And when I give occasion of offence, +Then let me die, for now thou hast no cause. + +CLIFFORD: +No cause! +Thy father slew my father; therefore, die. + +RUTLAND: +Di faciant laudis summa sit ista tuae! + +CLIFFORD: +Plantagenet! I come, Plantagenet! +And this thy son's blood cleaving to my blade +Shall rust upon my weapon, till thy blood, +Congeal'd with this, do make me wipe off both. +3 KING HENRY VI + +YORK: +The army of the queen hath got the field: +My uncles both are slain in rescuing me; +And all my followers to the eager foe +Turn back and fly, like ships before the wind +Or lambs pursued by hunger-starved wolves. +My sons, God knows what hath bechanced them: +But this I know, they have demean'd themselves +Like men born to renown by life or death. +Three times did Richard make a lane to me. +And thrice cried 'Courage, father! fight it out!' +And full as oft came Edward to my side, +With purple falchion, painted to the hilt +In blood of those that had encounter'd him: +And when the hardiest warriors did retire, +Richard cried 'Charge! and give no foot of ground!' +And cried 'A crown, or else a glorious tomb! +A sceptre, or an earthly sepulchre!' +With this, we charged again: but, out, alas! +We bodged again; as I have seen a swan +With bootless labour swim against the tide +And spend her strength with over-matching waves. +Ah, hark! the fatal followers do pursue; +And I am faint and cannot fly their fury: +And were I strong, I would not shun their fury: +The sands are number'd that make up my life; +Here must I stay, and here my life must end. +Come, bloody Clifford, rough Northumberland, +I dare your quenchless fury to more rage: +I am your butt, and I abide your shot. + +NORTHUMBERLAND: +Yield to our mercy, proud Plantagenet. + +CLIFFORD: +Ay, to such mercy as his ruthless arm, +With downright payment, show'd unto my father. +Now Phaethon hath tumbled from his car, +And made an evening at the noontide prick. + +YORK: +My ashes, as the phoenix, may bring forth +A bird that will revenge upon you all: +And in that hope I throw mine eyes to heaven, +Scorning whate'er you can afflict me with. +Why come you not? what! multitudes, and fear? + +CLIFFORD: +So cowards fight when they can fly no further; +So doves do peck the falcon's piercing talons; +So desperate thieves, all hopeless of their lives, +Breathe out invectives 'gainst the officers. + +YORK: +O Clifford, but bethink thee once again, +And in thy thought o'er-run my former time; +And, if though canst for blushing, view this face, +And bite thy tongue, that slanders him with cowardice +Whose frown hath made thee faint and fly ere this! + +CLIFFORD: +I will not bandy with thee word for word, +But buckle with thee blows, twice two for one. + +QUEEN MARGARET: +Hold, valiant Clifford! for a thousand causes +I would prolong awhile the traitor's life. +Wrath makes him deaf: speak thou, Northumberland. + +NORTHUMBERLAND: +Hold, Clifford! do not honour him so much +To prick thy finger, though to wound his heart: +What valour were it, when a cur doth grin, +For one to thrust his hand between his teeth, +When he might spurn him with his foot away? +It is war's prize to take all vantages; +And ten to one is no impeach of valour. + +CLIFFORD: +Ay, ay, so strives the woodcock with the gin. + +NORTHUMBERLAND: +So doth the cony struggle in the net. + +YORK: +So triumph thieves upon their conquer'd booty; +So true men yield, with robbers so o'ermatch'd. + +NORTHUMBERLAND: +What would your grace have done unto him now? + +QUEEN MARGARET: +Brave warriors, Clifford and Northumberland, +Come, make him stand upon this molehill here, +That raught at mountains with outstretched arms, +Yet parted but the shadow with his hand. +What! was it you that would be England's king? +Was't you that revell'd in our parliament, +And made a preachment of your high descent? +Where are your mess of sons to back you now? +The wanton Edward, and the lusty George? +And where's that valiant crook-back prodigy, +Dicky your boy, that with his grumbling voice +Was wont to cheer his dad in mutinies? +Or, with the rest, where is your darling Rutland? +Look, York: I stain'd this napkin with the blood +That valiant Clifford, with his rapier's point, +Made issue from the bosom of the boy; +And if thine eyes can water for his death, +I give thee this to dry thy cheeks withal. +Alas poor York! but that I hate thee deadly, +I should lament thy miserable state. +I prithee, grieve, to make me merry, York. +What, hath thy fiery heart so parch'd thine entrails +That not a tear can fall for Rutland's death? +Why art thou patient, man? thou shouldst be mad; +And I, to make thee mad, do mock thee thus. +Stamp, rave, and fret, that I may sing and dance. +Thou wouldst be fee'd, I see, to make me sport: +York cannot speak, unless he wear a crown. +A crown for York! and, lords, bow low to him: +Hold you his hands, whilst I do set it on. +Ay, marry, sir, now looks he like a king! +Ay, this is he that took King Henry's chair, +And this is he was his adopted heir. +But how is it that great Plantagenet +Is crown'd so soon, and broke his solemn oath? +As I bethink me, you should not be king +Till our King Henry had shook hands with death. +And will you pale your head in Henry's glory, +And rob his temples of the diadem, +Now in his life, against your holy oath? +O, 'tis a fault too too unpardonable! +Off with the crown, and with the crown his head; +And, whilst we breathe, take time to do him dead. + +CLIFFORD: +That is my office, for my father's sake. + +QUEEN MARGARET: +Nay, stay; lets hear the orisons he makes. + +YORK: +She-wolf of France, but worse than wolves of France, +Whose tongue more poisons than the adder's tooth! +How ill-beseeming is it in thy sex +To triumph, like an Amazonian trull, +Upon their woes whom fortune captivates! +But that thy face is, vizard-like, unchanging, +Made impudent with use of evil deeds, +I would assay, proud queen, to make thee blush. +To tell thee whence thou camest, of whom derived, +Were shame enough to shame thee, wert thou not shameless. +Thy father bears the type of King of Naples, +Of both the Sicils and Jerusalem, +Yet not so wealthy as an English yeoman. +Hath that poor monarch taught thee to insult? +It needs not, nor it boots thee not, proud queen, +Unless the adage must be verified, +That beggars mounted run their horse to death. +'Tis beauty that doth oft make women proud; +But, God he knows, thy share thereof is small: +'Tis virtue that doth make them most admired; +The contrary doth make thee wonder'd at: +'Tis government that makes them seem divine; +The want thereof makes thee abominable: +Thou art as opposite to every good +As the Antipodes are unto us, +Or as the south to the septentrion. +O tiger's heart wrapt in a woman's hide! +How couldst thou drain the life-blood of the child, +To bid the father wipe his eyes withal, +And yet be seen to bear a woman's face? +Women are soft, mild, pitiful and flexible; +Thou stern, obdurate, flinty, rough, remorseless. +Bids't thou me rage? why, now thou hast thy wish: +Wouldst have me weep? why, now thou hast thy will: +For raging wind blows up incessant showers, +And when the rage allays, the rain begins. +These tears are my sweet Rutland's obsequies: +And every drop cries vengeance for his death, +'Gainst thee, fell Clifford, and thee, false +Frenchwoman. + +NORTHUMBERLAND: +Beshrew me, but his passion moves me so +That hardly can I cheque my eyes from tears. + +YORK: +That face of his the hungry cannibals +Would not have touch'd, would not have stain'd with blood: +But you are more inhuman, more inexorable, +O, ten times more, than tigers of Hyrcania. +See, ruthless queen, a hapless father's tears: +This cloth thou dip'dst in blood of my sweet boy, +And I with tears do wash the blood away. +Keep thou the napkin, and go boast of this: +And if thou tell'st the heavy story right, +Upon my soul, the hearers will shed tears; +Yea even my foes will shed fast-falling tears, +And say 'Alas, it was a piteous deed!' +There, take the crown, and, with the crown, my curse; +And in thy need such comfort come to thee +As now I reap at thy too cruel hand! +Hard-hearted Clifford, take me from the world: +My soul to heaven, my blood upon your heads! + +NORTHUMBERLAND: +Had he been slaughter-man to all my kin, +I should not for my life but weep with him. +To see how inly sorrow gripes his soul. + +QUEEN MARGARET: +What, weeping-ripe, my Lord Northumberland? +Think but upon the wrong he did us all, +And that will quickly dry thy melting tears. + +CLIFFORD: +Here's for my oath, here's for my father's death. + +QUEEN MARGARET: +And here's to right our gentle-hearted king. + +YORK: +Open Thy gate of mercy, gracious God! +My soul flies through these wounds to seek out Thee. + +QUEEN MARGARET: +Off with his head, and set it on York gates; +So York may overlook the town of York. +3 KING HENRY VI + +EDWARD: +I wonder how our princely father 'scaped, +Or whether he be 'scaped away or no +From Clifford's and Northumberland's pursuit: +Had he been ta'en, we should have heard the news; +Had he been slain, we should have heard the news; +Or had he 'scaped, methinks we should have heard +The happy tidings of his good escape. +How fares my brother? why is he so sad? + +RICHARD: +I cannot joy, until I be resolved +Where our right valiant father is become. +I saw him in the battle range about; +And watch'd him how he singled Clifford forth. +Methought he bore him in the thickest troop +As doth a lion in a herd of neat; +Or as a bear, encompass'd round with dogs, +Who having pinch'd a few and made them cry, +The rest stand all aloof, and bark at him. +So fared our father with his enemies; +So fled his enemies my warlike father: +Methinks, 'tis prize enough to be his son. +See how the morning opes her golden gates, +And takes her farewell of the glorious sun! +How well resembles it the prime of youth, +Trimm'd like a younker prancing to his love! + +EDWARD: +Dazzle mine eyes, or do I see three suns? + +RICHARD: +Three glorious suns, each one a perfect sun; +Not separated with the racking clouds, +But sever'd in a pale clear-shining sky. +See, see! they join, embrace, and seem to kiss, +As if they vow'd some league inviolable: +Now are they but one lamp, one light, one sun. +In this the heaven figures some event. + +EDWARD: +'Tis wondrous strange, the like yet never heard of. +I think it cites us, brother, to the field, +That we, the sons of brave Plantagenet, +Each one already blazing by our meeds, +Should notwithstanding join our lights together +And over-shine the earth as this the world. +Whate'er it bodes, henceforward will I bear +Upon my target three fair-shining suns. + +RICHARD: +Nay, bear three daughters: by your leave I speak it, +You love the breeder better than the male. +But what art thou, whose heavy looks foretell +Some dreadful story hanging on thy tongue? + +Messenger: +Ah, one that was a woful looker-on +When as the noble Duke of York was slain, +Your princely father and my loving lord! + +EDWARD: +O, speak no more, for I have heard too much. + +RICHARD: +Say how he died, for I will hear it all. + +Messenger: +Environed he was with many foes, +And stood against them, as the hope of Troy +Against the Greeks that would have enter'd Troy. +But Hercules himself must yield to odds; +And many strokes, though with a little axe, +Hew down and fell the hardest-timber'd oak. +By many hands your father was subdued; +But only slaughter'd by the ireful arm +Of unrelenting Clifford and the queen, +Who crown'd the gracious duke in high despite, +Laugh'd in his face; and when with grief he wept, +The ruthless queen gave him to dry his cheeks +A napkin steeped in the harmless blood +Of sweet young Rutland, by rough Clifford slain: +And after many scorns, many foul taunts, +They took his head, and on the gates of York +They set the same; and there it doth remain, +The saddest spectacle that e'er I view'd. + +EDWARD: +Sweet Duke of York, our prop to lean upon, +Now thou art gone, we have no staff, no stay. +O Clifford, boisterous Clifford! thou hast slain +The flower of Europe for his chivalry; +And treacherously hast thou vanquish'd him, +For hand to hand he would have vanquish'd thee. +Now my soul's palace is become a prison: +Ah, would she break from hence, that this my body +Might in the ground be closed up in rest! +For never henceforth shall I joy again, +Never, O never shall I see more joy! + +RICHARD: +I cannot weep; for all my body's moisture +Scarce serves to quench my furnace-burning heart: +Nor can my tongue unload my heart's great burthen; +For selfsame wind that I should speak withal +Is kindling coals that fires all my breast, +And burns me up with flames that tears would quench. +To weep is to make less the depth of grief: +Tears then for babes; blows and revenge for me +Richard, I bear thy name; I'll venge thy death, +Or die renowned by attempting it. + +EDWARD: +His name that valiant duke hath left with thee; +His dukedom and his chair with me is left. + +RICHARD: +Nay, if thou be that princely eagle's bird, +Show thy descent by gazing 'gainst the sun: +For chair and dukedom, throne and kingdom say; +Either that is thine, or else thou wert not his. + +WARWICK: +How now, fair lords! What fare? what news abroad? + +RICHARD: +Great Lord of Warwick, if we should recount +Our baleful news, and at each word's deliverance +Stab poniards in our flesh till all were told, +The words would add more anguish than the wounds. +O valiant lord, the Duke of York is slain! + +EDWARD: +O Warwick, Warwick! that Plantagenet, +Which held three dearly as his soul's redemption, +Is by the stern Lord Clifford done to death. + +WARWICK: +Ten days ago I drown'd these news in tears; +And now, to add more measure to your woes, +I come to tell you things sith then befall'n. +After the bloody fray at Wakefield fought, +Where your brave father breathed his latest gasp, +Tidings, as swiftly as the posts could run, +Were brought me of your loss and his depart. +I, then in London keeper of the king, +Muster'd my soldiers, gather'd flocks of friends, +And very well appointed, as I thought, +March'd toward Saint Alban's to intercept the queen, +Bearing the king in my behalf along; +For by my scouts I was advertised +That she was coming with a full intent +To dash our late decree in parliament +Touching King Henry's oath and your succession. +Short tale to make, we at Saint Alban's met +Our battles join'd, and both sides fiercely fought: +But whether 'twas the coldness of the king, +Who look'd full gently on his warlike queen, +That robb'd my soldiers of their heated spleen; +Or whether 'twas report of her success; +Or more than common fear of Clifford's rigour, +Who thunders to his captives blood and death, +I cannot judge: but to conclude with truth, +Their weapons like to lightning came and went; +Our soldiers', like the night-owl's lazy flight, +Or like an idle thresher with a flail, +Fell gently down, as if they struck their friends. +I cheer'd them up with justice of our cause, +With promise of high pay and great rewards: +But all in vain; they had no heart to fight, +And we in them no hope to win the day; +So that we fled; the king unto the queen; +Lord George your brother, Norfolk and myself, +In haste, post-haste, are come to join with you: +For in the marches here we heard you were, +Making another head to fight again. + +EDWARD: +Where is the Duke of Norfolk, gentle Warwick? +And when came George from Burgundy to England? + +WARWICK: +Some six miles off the duke is with the soldiers; +And for your brother, he was lately sent +From your kind aunt, Duchess of Burgundy, +With aid of soldiers to this needful war. + +RICHARD: +'Twas odds, belike, when valiant Warwick fled: +Oft have I heard his praises in pursuit, +But ne'er till now his scandal of retire. + +WARWICK: +Nor now my scandal, Richard, dost thou hear; +For thou shalt know this strong right hand of mine +Can pluck the diadem from faint Henry's head, +And wring the awful sceptre from his fist, +Were he as famous and as bold in war +As he is famed for mildness, peace, and prayer. + +RICHARD: +I know it well, Lord Warwick; blame me not: +'Tis love I bear thy glories makes me speak. +But in this troublous time what's to be done? +Shall we go throw away our coats of steel, +And wrap our bodies in black mourning gowns, +Numbering our Ave-Maries with our beads? +Or shall we on the helmets of our foes +Tell our devotion with revengeful arms? +If for the last, say ay, and to it, lords. + +WARWICK: +Why, therefore Warwick came to seek you out; +And therefore comes my brother Montague. +Attend me, lords. The proud insulting queen, +With Clifford and the haught Northumberland, +And of their feather many more proud birds, +Have wrought the easy-melting king like wax. +He swore consent to your succession, +His oath enrolled in the parliament; +And now to London all the crew are gone, +To frustrate both his oath and what beside +May make against the house of Lancaster. +Their power, I think, is thirty thousand strong: +Now, if the help of Norfolk and myself, +With all the friends that thou, brave Earl of March, +Amongst the loving Welshmen canst procure, +Will but amount to five and twenty thousand, +Why, Via! to London will we march amain, +And once again bestride our foaming steeds, +And once again cry 'Charge upon our foes!' +But never once again turn back and fly. + +RICHARD: +Ay, now methinks I hear great Warwick speak: +Ne'er may he live to see a sunshine day, +That cries 'Retire,' if Warwick bid him stay. + +EDWARD: +Lord Warwick, on thy shoulder will I lean; +And when thou fail'st--as God forbid the hour!-- +Must Edward fall, which peril heaven forfend! + +WARWICK: +No longer Earl of March, but Duke of York: +The next degree is England's royal throne; +For King of England shalt thou be proclaim'd +In every borough as we pass along; +And he that throws not up his cap for joy +Shall for the fault make forfeit of his head. +King Edward, valiant Richard, Montague, +Stay we no longer, dreaming of renown, +But sound the trumpets, and about our task. + +RICHARD: +Then, Clifford, were thy heart as hard as steel, +As thou hast shown it flinty by thy deeds, +I come to pierce it, or to give thee mine. + +EDWARD: +Then strike up drums: God and Saint George for us! + +WARWICK: +How now! what news? + +Messenger: +The Duke of Norfolk sends you word by me, +The queen is coming with a puissant host; +And craves your company for speedy counsel. + +WARWICK: +Why then it sorts, brave warriors, let's away. +3 KING HENRY VI + +QUEEN MARGARET: +Welcome, my lord, to this brave town of York. +Yonder's the head of that arch-enemy +That sought to be encompass'd with your crown: +Doth not the object cheer your heart, my lord? + +KING HENRY VI: +Ay, as the rocks cheer them that fear their wreck: +To see this sight, it irks my very soul. +Withhold revenge, dear God! 'tis not my fault, +Nor wittingly have I infringed my vow. + +CLIFFORD: +My gracious liege, this too much lenity +And harmful pity must be laid aside. +To whom do lions cast their gentle looks? +Not to the beast that would usurp their den. +Whose hand is that the forest bear doth lick? +Not his that spoils her young before her face. +Who 'scapes the lurking serpent's mortal sting? +Not he that sets his foot upon her back. +The smallest worm will turn being trodden on, +And doves will peck in safeguard of their brood. +Ambitious York doth level at thy crown, +Thou smiling while he knit his angry brows: +He, but a duke, would have his son a king, +And raise his issue, like a loving sire; +Thou, being a king, blest with a goodly son, +Didst yield consent to disinherit him, +Which argued thee a most unloving father. +Unreasonable creatures feed their young; +And though man's face be fearful to their eyes, +Yet, in protection of their tender ones, +Who hath not seen them, even with those wings +Which sometime they have used with fearful flight, +Make war with him that climb'd unto their nest, +Offer their own lives in their young's defence? +For shame, my liege, make them your precedent! +Were it not pity that this goodly boy +Should lose his birthright by his father's fault, +And long hereafter say unto his child, +'What my great-grandfather and his grandsire got +My careless father fondly gave away'? +Ah, what a shame were this! Look on the boy; +And let his manly face, which promiseth +Successful fortune, steel thy melting heart +To hold thine own and leave thine own with him. + +KING HENRY VI: +Full well hath Clifford play'd the orator, +Inferring arguments of mighty force. +But, Clifford, tell me, didst thou never hear +That things ill-got had ever bad success? +And happy always was it for that son +Whose father for his hoarding went to hell? +I'll leave my son my virtuous deeds behind; +And would my father had left me no more! +For all the rest is held at such a rate +As brings a thousand-fold more care to keep +Than in possession and jot of pleasure. +Ah, cousin York! would thy best friends did know +How it doth grieve me that thy head is here! + +QUEEN MARGARET: +My lord, cheer up your spirits: our foes are nigh, +And this soft courage makes your followers faint. +You promised knighthood to our forward son: +Unsheathe your sword, and dub him presently. +Edward, kneel down. + +KING HENRY VI: +Edward Plantagenet, arise a knight; +And learn this lesson, draw thy sword in right. + +PRINCE: +My gracious father, by your kingly leave, +I'll draw it as apparent to the crown, +And in that quarrel use it to the death. + +CLIFFORD: +Why, that is spoken like a toward prince. + +Messenger: +Royal commanders, be in readiness: +For with a band of thirty thousand men +Comes Warwick, backing of the Duke of York; +And in the towns, as they do march along, +Proclaims him king, and many fly to him: +Darraign your battle, for they are at hand. + +CLIFFORD: +I would your highness would depart the field: +The queen hath best success when you are absent. + +QUEEN MARGARET: +Ay, good my lord, and leave us to our fortune. + +KING HENRY VI: +Why, that's my fortune too; therefore I'll stay. + +NORTHUMBERLAND: +Be it with resolution then to fight. + +PRINCE EDWARD: +My royal father, cheer these noble lords +And hearten those that fight in your defence: +Unsheathe your sword, good father; cry 'Saint George!' + +EDWARD: +Now, perjured Henry! wilt thou kneel for grace, +And set thy diadem upon my head; +Or bide the mortal fortune of the field? + +QUEEN MARGARET: +Go, rate thy minions, proud insulting boy! +Becomes it thee to be thus bold in terms +Before thy sovereign and thy lawful king? + +EDWARD: +I am his king, and he should bow his knee; +I was adopted heir by his consent: +Since when, his oath is broke; for, as I hear, +You, that are king, though he do wear the crown, +Have caused him, by new act of parliament, +To blot out me, and put his own son in. + +CLIFFORD: +And reason too: +Who should succeed the father but the son? + +RICHARD: +Are you there, butcher? O, I cannot speak! + +CLIFFORD: +Ay, crook-back, here I stand to answer thee, +Or any he the proudest of thy sort. + +RICHARD: +'Twas you that kill'd young Rutland, was it not? + +CLIFFORD: +Ay, and old York, and yet not satisfied. + +RICHARD: +For God's sake, lords, give signal to the fight. + +WARWICK: +What say'st thou, Henry, wilt thou yield the crown? + +QUEEN MARGARET: +Why, how now, long-tongued Warwick! dare you speak? +When you and I met at Saint Alban's last, +Your legs did better service than your hands. + +WARWICK: +Then 'twas my turn to fly, and now 'tis thine. + +CLIFFORD: +You said so much before, and yet you fled. + +WARWICK: +'Twas not your valour, Clifford, drove me thence. + +NORTHUMBERLAND: +No, nor your manhood that durst make you stay. + +RICHARD: +Northumberland, I hold thee reverently. +Break off the parley; for scarce I can refrain +The execution of my big-swoln heart +Upon that Clifford, that cruel child-killer. + +CLIFFORD: +I slew thy father, call'st thou him a child? + +RICHARD: +Ay, like a dastard and a treacherous coward, +As thou didst kill our tender brother Rutland; +But ere sunset I'll make thee curse the deed. + +KING HENRY VI: +Have done with words, my lords, and hear me speak. + +QUEEN MARGARET: +Defy them then, or else hold close thy lips. + +KING HENRY VI: +I prithee, give no limits to my tongue: +I am a king, and privileged to speak. + +CLIFFORD: +My liege, the wound that bred this meeting here +Cannot be cured by words; therefore be still. + +RICHARD: +Then, executioner, unsheathe thy sword: +By him that made us all, I am resolved +that Clifford's manhood lies upon his tongue. + +EDWARD: +Say, Henry, shall I have my right, or no? +A thousand men have broke their fasts to-day, +That ne'er shall dine unless thou yield the crown. + +WARWICK: +If thou deny, their blood upon thy head; +For York in justice puts his armour on. + +PRINCE EDWARD: +If that be right which Warwick says is right, +There is no wrong, but every thing is right. + +RICHARD: +Whoever got thee, there thy mother stands; +For, well I wot, thou hast thy mother's tongue. + +QUEEN MARGARET: +But thou art neither like thy sire nor dam; +But like a foul mis-shapen stigmatic, +Mark'd by the destinies to be avoided, +As venom toads, or lizards' dreadful stings. + +RICHARD: +Iron of Naples hid with English gilt, +Whose father bears the title of a king,-- +As if a channel should be call'd the sea,-- +Shamest thou not, knowing whence thou art extraught, +To let thy tongue detect thy base-born heart? + +EDWARD: +A wisp of straw were worth a thousand crowns, +To make this shameless callet know herself. +Helen of Greece was fairer far than thou, +Although thy husband may be Menelaus; +And ne'er was Agamemnon's brother wrong'd +By that false woman, as this king by thee. +His father revell'd in the heart of France, +And tamed the king, and made the dauphin stoop; +And had he match'd according to his state, +He might have kept that glory to this day; +But when he took a beggar to his bed, +And graced thy poor sire with his bridal-day, +Even then that sunshine brew'd a shower for him, +That wash'd his father's fortunes forth of France, +And heap'd sedition on his crown at home. +For what hath broach'd this tumult but thy pride? +Hadst thou been meek, our title still had slept; +And we, in pity of the gentle king, +Had slipp'd our claim until another age. + +GEORGE: +But when we saw our sunshine made thy spring, +And that thy summer bred us no increase, +We set the axe to thy usurping root; +And though the edge hath something hit ourselves, +Yet, know thou, since we have begun to strike, +We'll never leave till we have hewn thee down, +Or bathed thy growing with our heated bloods. + +EDWARD: +And, in this resolution, I defy thee; +Not willing any longer conference, +Since thou deniest the gentle king to speak. +Sound trumpets! let our bloody colours wave! +And either victory, or else a grave. + +QUEEN MARGARET: +Stay, Edward. + +EDWARD: +No, wrangling woman, we'll no longer stay: +These words will cost ten thousand lives this day. +3 KING HENRY VI + +WARWICK: +Forspent with toil, as runners with a race, +I lay me down a little while to breathe; +For strokes received, and many blows repaid, +Have robb'd my strong-knit sinews of their strength, +And spite of spite needs must I rest awhile. + +EDWARD: +Smile, gentle heaven! or strike, ungentle death! +For this world frowns, and Edward's sun is clouded. + +WARWICK: +How now, my lord! what hap? what hope of good? + +GEORGE: +Our hap is loss, our hope but sad despair; +Our ranks are broke, and ruin follows us: +What counsel give you? whither shall we fly? + +EDWARD: +Bootless is flight, they follow us with wings; +And weak we are and cannot shun pursuit. + +RICHARD: +Ah, Warwick, why hast thou withdrawn thyself? +Thy brother's blood the thirsty earth hath drunk, +Broach'd with the steely point of Clifford's lance; +And in the very pangs of death he cried, +Like to a dismal clangour heard from far, +'Warwick, revenge! brother, revenge my death!' +So, underneath the belly of their steeds, +That stain'd their fetlocks in his smoking blood, +The noble gentleman gave up the ghost. + +WARWICK: +Then let the earth be drunken with our blood: +I'll kill my horse, because I will not fly. +Why stand we like soft-hearted women here, +Wailing our losses, whiles the foe doth rage; +And look upon, as if the tragedy +Were play'd in jest by counterfeiting actors? +Here on my knee I vow to God above, +I'll never pause again, never stand still, +Till either death hath closed these eyes of mine +Or fortune given me measure of revenge. + +EDWARD: +O Warwick, I do bend my knee with thine; +And in this vow do chain my soul to thine! +And, ere my knee rise from the earth's cold face, +I throw my hands, mine eyes, my heart to thee, +Thou setter up and plucker down of kings, +Beseeching thee, if with they will it stands +That to my foes this body must be prey, +Yet that thy brazen gates of heaven may ope, +And give sweet passage to my sinful soul! +Now, lords, take leave until we meet again, +Where'er it be, in heaven or in earth. + +RICHARD: +Brother, give me thy hand; and, gentle Warwick, +Let me embrace thee in my weary arms: +I, that did never weep, now melt with woe +That winter should cut off our spring-time so. + +WARWICK: +Away, away! Once more, sweet lords farewell. + +GEORGE: +Yet let us all together to our troops, +And give them leave to fly that will not stay; +And call them pillars that will stand to us; +And, if we thrive, promise them such rewards +As victors wear at the Olympian games: +This may plant courage in their quailing breasts; +For yet is hope of life and victory. +Forslow no longer, make we hence amain. +3 KING HENRY VI + +RICHARD: +Now, Clifford, I have singled thee alone: +Suppose this arm is for the Duke of York, +And this for Rutland; both bound to revenge, +Wert thou environ'd with a brazen wall. + +CLIFFORD: +Now, Richard, I am with thee here alone: +This is the hand that stabb'd thy father York; +And this the hand that slew thy brother Rutland; +And here's the heart that triumphs in their death +And cheers these hands that slew thy sire and brother +To execute the like upon thyself; +And so, have at thee! + +RICHARD: +Nay Warwick, single out some other chase; +For I myself will hunt this wolf to death. +3 KING HENRY VI + +KING HENRY VI: +This battle fares like to the morning's war, +When dying clouds contend with growing light, +What time the shepherd, blowing of his nails, +Can neither call it perfect day nor night. +Now sways it this way, like a mighty sea +Forced by the tide to combat with the wind; +Now sways it that way, like the selfsame sea +Forced to retire by fury of the wind: +Sometime the flood prevails, and then the wind; +Now one the better, then another best; +Both tugging to be victors, breast to breast, +Yet neither conqueror nor conquered: +So is the equal of this fell war. +Here on this molehill will I sit me down. +To whom God will, there be the victory! +For Margaret my queen, and Clifford too, +Have chid me from the battle; swearing both +They prosper best of all when I am thence. +Would I were dead! if God's good will were so; +For what is in this world but grief and woe? +O God! methinks it were a happy life, +To be no better than a homely swain; +To sit upon a hill, as I do now, +To carve out dials quaintly, point by point, +Thereby to see the minutes how they run, +How many make the hour full complete; +How many hours bring about the day; +How many days will finish up the year; +How many years a mortal man may live. +When this is known, then to divide the times: +So many hours must I tend my flock; +So many hours must I take my rest; +So many hours must I contemplate; +So many hours must I sport myself; +So many days my ewes have been with young; +So many weeks ere the poor fools will ean: +So many years ere I shall shear the fleece: +So minutes, hours, days, months, and years, +Pass'd over to the end they were created, +Would bring white hairs unto a quiet grave. +Ah, what a life were this! how sweet! how lovely! +Gives not the hawthorn-bush a sweeter shade +To shepherds looking on their silly sheep, +Than doth a rich embroider'd canopy +To kings that fear their subjects' treachery? +O, yes, it doth; a thousand-fold it doth. +And to conclude, the shepherd's homely curds, +His cold thin drink out of his leather bottle. +His wonted sleep under a fresh tree's shade, +All which secure and sweetly he enjoys, +Is far beyond a prince's delicates, +His viands sparkling in a golden cup, +His body couched in a curious bed, +When care, mistrust, and treason waits on him. + +Son: +Ill blows the wind that profits nobody. +This man, whom hand to hand I slew in fight, +May be possessed with some store of crowns; +And I, that haply take them from him now, +May yet ere night yield both my life and them +To some man else, as this dead man doth me. +Who's this? O God! it is my father's face, +Whom in this conflict I unwares have kill'd. +O heavy times, begetting such events! +From London by the king was I press'd forth; +My father, being the Earl of Warwick's man, +Came on the part of York, press'd by his master; +And I, who at his hands received my life, him +Have by my hands of life bereaved him. +Pardon me, God, I knew not what I did! +And pardon, father, for I knew not thee! +My tears shall wipe away these bloody marks; +And no more words till they have flow'd their fill. + +KING HENRY VI: +O piteous spectacle! O bloody times! +Whiles lions war and battle for their dens, +Poor harmless lambs abide their enmity. +Weep, wretched man, I'll aid thee tear for tear; +And let our hearts and eyes, like civil war, +Be blind with tears, and break o'ercharged with grief. + +Father: +Thou that so stoutly hast resisted me, +Give me thy gold, if thou hast any gold: +For I have bought it with an hundred blows. +But let me see: is this our foeman's face? +Ah, no, no, no, it is mine only son! +Ah, boy, if any life be left in thee, +Throw up thine eye! see, see what showers arise, +Blown with the windy tempest of my heart, +Upon thy words, that kill mine eye and heart! +O, pity, God, this miserable age! +What stratagems, how fell, how butcherly, +Erroneous, mutinous and unnatural, +This deadly quarrel daily doth beget! +O boy, thy father gave thee life too soon, +And hath bereft thee of thy life too late! + +KING HENRY VI: +Woe above woe! grief more than common grief! +O that my death would stay these ruthful deeds! +O pity, pity, gentle heaven, pity! +The red rose and the white are on his face, +The fatal colours of our striving houses: +The one his purple blood right well resembles; +The other his pale cheeks, methinks, presenteth: +Wither one rose, and let the other flourish; +If you contend, a thousand lives must wither. + +Son: +How will my mother for a father's death +Take on with me and ne'er be satisfied! + +Father: +How will my wife for slaughter of my son +Shed seas of tears and ne'er be satisfied! + +KING HENRY VI: +How will the country for these woful chances +Misthink the king and not be satisfied! + +Son: +Was ever son so rued a father's death? + +Father: +Was ever father so bemoan'd his son? + +KING HENRY VI: +Was ever king so grieved for subjects' woe? +Much is your sorrow; mine ten times so much. + +Son: +I'll bear thee hence, where I may weep my fill. + +Father: +These arms of mine shall be thy winding-sheet; +My heart, sweet boy, shall be thy sepulchre, +For from my heart thine image ne'er shall go; +My sighing breast shall be thy funeral bell; +And so obsequious will thy father be, +Even for the loss of thee, having no more, +As Priam was for all his valiant sons. +I'll bear thee hence; and let them fight that will, +For I have murdered where I should not kill. + +KING HENRY VI: +Sad-hearted men, much overgone with care, +Here sits a king more woful than you are. + +PRINCE EDWARD: +Fly, father, fly! for all your friends are fled, +And Warwick rages like a chafed bull: +Away! for death doth hold us in pursuit. + +QUEEN MARGARET: +Mount you, my lord; towards Berwick post amain: +Edward and Richard, like a brace of greyhounds +Having the fearful flying hare in sight, +With fiery eyes sparkling for very wrath, +And bloody steel grasp'd in their ireful hands, +Are at our backs; and therefore hence amain. + +EXETER: +Away! for vengeance comes along with them: +Nay, stay not to expostulate, make speed; +Or else come after: I'll away before. + +KING HENRY VI: +Nay, take me with thee, good sweet Exeter: +Not that I fear to stay, but love to go +Whither the queen intends. Forward; away! +3 KING HENRY VI + +CLIFFORD: +Here burns my candle out; ay, here it dies, +Which, whiles it lasted, gave King Henry light. +O Lancaster, I fear thy overthrow +More than my body's parting with my soul! +My love and fear glued many friends to thee; +And, now I fall, thy tough commixture melts. +Impairing Henry, strengthening misproud York, +The common people swarm like summer flies; +And whither fly the gnats but to the sun? +And who shines now but Henry's enemies? +O Phoebus, hadst thou never given consent +That Phaethon should cheque thy fiery steeds, +Thy burning car never had scorch'd the earth! +And, Henry, hadst thou sway'd as kings should do, +Or as thy father and his father did, +Giving no ground unto the house of York, +They never then had sprung like summer flies; +I and ten thousand in this luckless realm +Had left no mourning widows for our death; +And thou this day hadst kept thy chair in peace. +For what doth cherish weeds but gentle air? +And what makes robbers bold but too much lenity? +Bootless are plaints, and cureless are my wounds; +No way to fly, nor strength to hold out flight: +The foe is merciless, and will not pity; +For at their hands I have deserved no pity. +The air hath got into my deadly wounds, +And much effuse of blood doth make me faint. +Come, York and Richard, Warwick and the rest; +I stabb'd your fathers' bosoms, split my breast. + +EDWARD: +Now breathe we, lords: good fortune bids us pause, +And smooth the frowns of war with peaceful looks. +Some troops pursue the bloody-minded queen, +That led calm Henry, though he were a king, +As doth a sail, fill'd with a fretting gust, +Command an argosy to stem the waves. +But think you, lords, that Clifford fled with them? + +WARWICK: +No, 'tis impossible he should escape, +For, though before his face I speak the words +Your brother Richard mark'd him for the grave: +And wheresoe'er he is, he's surely dead. + +EDWARD: +Whose soul is that which takes her heavy leave? + +RICHARD: +A deadly groan, like life and death's departing. + +EDWARD: +See who it is: and, now the battle's ended, +If friend or foe, let him be gently used. + +RICHARD: +Revoke that doom of mercy, for 'tis Clifford; +Who not contented that he lopp'd the branch +In hewing Rutland when his leaves put forth, +But set his murdering knife unto the root +From whence that tender spray did sweetly spring, +I mean our princely father, Duke of York. + +WARWICK: +From off the gates of York fetch down the head, +Your father's head, which Clifford placed there; +Instead whereof let this supply the room: +Measure for measure must be answered. + +EDWARD: +Bring forth that fatal screech-owl to our house, +That nothing sung but death to us and ours: +Now death shall stop his dismal threatening sound, +And his ill-boding tongue no more shall speak. + +WARWICK: +I think his understanding is bereft. +Speak, Clifford, dost thou know who speaks to thee? +Dark cloudy death o'ershades his beams of life, +And he nor sees nor hears us what we say. + +RICHARD: +O, would he did! and so perhaps he doth: +'Tis but his policy to counterfeit, +Because he would avoid such bitter taunts +Which in the time of death he gave our father. + +GEORGE: +If so thou think'st, vex him with eager words. + +RICHARD: +Clifford, ask mercy and obtain no grace. + +EDWARD: +Clifford, repent in bootless penitence. + +WARWICK: +Clifford, devise excuses for thy faults. + +GEORGE: +While we devise fell tortures for thy faults. + +RICHARD: +Thou didst love York, and I am son to York. + +EDWARD: +Thou pitied'st Rutland; I will pity thee. + +GEORGE: +Where's Captain Margaret, to fence you now? + +WARWICK: +They mock thee, Clifford: swear as thou wast wont. + +RICHARD: +What, not an oath? nay, then the world goes hard +When Clifford cannot spare his friends an oath. +I know by that he's dead; and, by my soul, +If this right hand would buy two hour's life, +That I in all despite might rail at him, +This hand should chop it off, and with the +issuing blood +Stifle the villain whose unstanched thirst +York and young Rutland could not satisfy. + +WARWICK: +Ay, but he's dead: off with the traitor's head, +And rear it in the place your father's stands. +And now to London with triumphant march, +There to be crowned England's royal king: +From whence shall Warwick cut the sea to France, +And ask the Lady Bona for thy queen: +So shalt thou sinew both these lands together; +And, having France thy friend, thou shalt not dread +The scatter'd foe that hopes to rise again; +For though they cannot greatly sting to hurt, +Yet look to have them buzz to offend thine ears. +First will I see the coronation; +And then to Brittany I'll cross the sea, +To effect this marriage, so it please my lord. + +EDWARD: +Even as thou wilt, sweet Warwick, let it be; +For in thy shoulder do I build my seat, +And never will I undertake the thing +Wherein thy counsel and consent is wanting. +Richard, I will create thee Duke of Gloucester, +And George, of Clarence: Warwick, as ourself, +Shall do and undo as him pleaseth best. + +RICHARD: +Let me be Duke of Clarence, George of Gloucester; +For Gloucester's dukedom is too ominous. + +WARWICK: +Tut, that's a foolish observation: +Richard, be Duke of Gloucester. Now to London, +To see these honours in possession. +3 KING HENRY VI + +First Keeper: +Under this thick-grown brake we'll shroud ourselves; +For through this laund anon the deer will come; +And in this covert will we make our stand, +Culling the principal of all the deer. + +Second Keeper: +I'll stay above the hill, so both may shoot. + +First Keeper: +That cannot be; the noise of thy cross-bow +Will scare the herd, and so my shoot is lost. +Here stand we both, and aim we at the best: +And, for the time shall not seem tedious, +I'll tell thee what befell me on a day +In this self-place where now we mean to stand. + +Second Keeper: +Here comes a man; let's stay till he be past. + +KING HENRY VI: +From Scotland am I stol'n, even of pure love, +To greet mine own land with my wishful sight. +No, Harry, Harry, 'tis no land of thine; +Thy place is fill'd, thy sceptre wrung from thee, +Thy balm wash'd off wherewith thou wast anointed: +No bending knee will call thee Caesar now, +No humble suitors press to speak for right, +No, not a man comes for redress of thee; +For how can I help them, and not myself? + +First Keeper: +Ay, here's a deer whose skin's a keeper's fee: +This is the quondam king; let's seize upon him. + +KING HENRY VI: +Let me embrace thee, sour adversity, +For wise men say it is the wisest course. + +Second Keeper: +Why linger we? let us lay hands upon him. + +First Keeper: +Forbear awhile; we'll hear a little more. + +KING HENRY VI: +My queen and son are gone to France for aid; +And, as I hear, the great commanding Warwick +Is thither gone, to crave the French king's sister +To wife for Edward: if this news be true, +Poor queen and son, your labour is but lost; +For Warwick is a subtle orator, +And Lewis a prince soon won with moving words. +By this account then Margaret may win him; +For she's a woman to be pitied much: +Her sighs will make a battery in his breast; +Her tears will pierce into a marble heart; +The tiger will be mild whiles she doth mourn; +And Nero will be tainted with remorse, +To hear and see her plaints, her brinish tears. +Ay, but she's come to beg, Warwick to give; +She, on his left side, craving aid for Henry, +He, on his right, asking a wife for Edward. +She weeps, and says her Henry is deposed; +He smiles, and says his Edward is install'd; +That she, poor wretch, for grief can speak no more; +Whiles Warwick tells his title, smooths the wrong, +Inferreth arguments of mighty strength, +And in conclusion wins the king from her, +With promise of his sister, and what else, +To strengthen and support King Edward's place. +O Margaret, thus 'twill be; and thou, poor soul, +Art then forsaken, as thou went'st forlorn! + +Second Keeper: +Say, what art thou that talk'st of kings and queens? + +KING HENRY VI: +More than I seem, and less than I was born to: +A man at least, for less I should not be; +And men may talk of kings, and why not I? + +Second Keeper: +Ay, but thou talk'st as if thou wert a king. + +KING HENRY VI: +Why, so I am, in mind; and that's enough. + +Second Keeper: +But, if thou be a king, where is thy crown? + +KING HENRY VI: +My crown is in my heart, not on my head; +Not decked with diamonds and Indian stones, +Nor to be seen: my crown is called content: +A crown it is that seldom kings enjoy. + +Second Keeper: +Well, if you be a king crown'd with content, +Your crown content and you must be contented +To go along with us; for as we think, +You are the king King Edward hath deposed; +And we his subjects sworn in all allegiance +Will apprehend you as his enemy. + +KING HENRY VI: +But did you never swear, and break an oath? + +Second Keeper: +No, never such an oath; nor will not now. + +KING HENRY VI: +Where did you dwell when I was King of England? + +Second Keeper: +Here in this country, where we now remain. + +KING HENRY VI: +I was anointed king at nine months old; +My father and my grandfather were kings, +And you were sworn true subjects unto me: +And tell me, then, have you not broke your oaths? + +First Keeper: +No; +For we were subjects but while you were king. + +KING HENRY VI: +Why, am I dead? do I not breathe a man? +Ah, simple men, you know not what you swear! +Look, as I blow this feather from my face, +And as the air blows it to me again, +Obeying with my wind when I do blow, +And yielding to another when it blows, +Commanded always by the greater gust; +Such is the lightness of you common men. +But do not break your oaths; for of that sin +My mild entreaty shall not make you guilty. +Go where you will, the king shall be commanded; +And be you kings, command, and I'll obey. + +First Keeper: +We are true subjects to the king, King Edward. + +KING HENRY VI: +So would you be again to Henry, +If he were seated as King Edward is. + +First Keeper: +We charge you, in God's name, and the king's, +To go with us unto the officers. + +KING HENRY VI: +In God's name, lead; your king's name be obey'd: +And what God will, that let your king perform; +And what he will, I humbly yield unto. +3 KING HENRY VI + +KING EDWARD IV: +Brother of Gloucester, at Saint Alban's field +This lady's husband, Sir Richard Grey, was slain, +His lands then seized on by the conqueror: +Her suit is now to repossess those lands; +Which we in justice cannot well deny, +Because in quarrel of the house of York +The worthy gentleman did lose his life. + +GLOUCESTER: +Your highness shall do well to grant her suit; +It were dishonour to deny it her. + +KING EDWARD IV: +It were no less; but yet I'll make a pause. + +GLOUCESTER: + +CLARENCE: + +GLOUCESTER: + +KING EDWARD IV: +Widow, we will consider of your suit; +And come some other time to know our mind. + +LADY GREY: +Right gracious lord, I cannot brook delay: +May it please your highness to resolve me now; +And what your pleasure is, shall satisfy me. + +GLOUCESTER: + +CLARENCE: + +GLOUCESTER: + +KING EDWARD IV: +How many children hast thou, widow? tell me. + +CLARENCE: + +GLOUCESTER: + +LADY GREY: +Three, my most gracious lord. + +GLOUCESTER: + +KING EDWARD IV: +'Twere pity they should lose their father's lands. + +LADY GREY: +Be pitiful, dread lord, and grant it then. + +KING EDWARD IV: +Lords, give us leave: I'll try this widow's wit. + +GLOUCESTER: + +KING EDWARD IV: +Now tell me, madam, do you love your children? + +LADY GREY: +Ay, full as dearly as I love myself. + +KING EDWARD IV: +And would you not do much to do them good? + +LADY GREY: +To do them good, I would sustain some harm. + +KING EDWARD IV: +Then get your husband's lands, to do them good. + +LADY GREY: +Therefore I came unto your majesty. + +KING EDWARD IV: +I'll tell you how these lands are to be got. + +LADY GREY: +So shall you bind me to your highness' service. + +KING EDWARD IV: +What service wilt thou do me, if I give them? + +LADY GREY: +What you command, that rests in me to do. + +KING EDWARD IV: +But you will take exceptions to my boon. + +LADY GREY: +No, gracious lord, except I cannot do it. + +KING EDWARD IV: +Ay, but thou canst do what I mean to ask. + +LADY GREY: +Why, then I will do what your grace commands. + +GLOUCESTER: + +CLARENCE: + +LADY GREY: +Why stops my lord, shall I not hear my task? + +KING EDWARD IV: +An easy task; 'tis but to love a king. + +LADY GREY: +That's soon perform'd, because I am a subject. + +KING EDWARD IV: +Why, then, thy husband's lands I freely give thee. + +LADY GREY: +I take my leave with many thousand thanks. + +GLOUCESTER: + +KING EDWARD IV: +But stay thee, 'tis the fruits of love I mean. + +LADY GREY: +The fruits of love I mean, my loving liege. + +KING EDWARD IV: +Ay, but, I fear me, in another sense. +What love, think'st thou, I sue so much to get? + +LADY GREY: +My love till death, my humble thanks, my prayers; +That love which virtue begs and virtue grants. + +KING EDWARD IV: +No, by my troth, I did not mean such love. + +LADY GREY: +Why, then you mean not as I thought you did. + +KING EDWARD IV: +But now you partly may perceive my mind. + +LADY GREY: +My mind will never grant what I perceive +Your highness aims at, if I aim aright. + +KING EDWARD IV: +To tell thee plain, I aim to lie with thee. + +LADY GREY: +To tell you plain, I had rather lie in prison. + +KING EDWARD IV: +Why, then thou shalt not have thy husband's lands. + +LADY GREY: +Why, then mine honesty shall be my dower; +For by that loss I will not purchase them. + +KING EDWARD IV: +Therein thou wrong'st thy children mightily. + +LADY GREY: +Herein your highness wrongs both them and me. +But, mighty lord, this merry inclination +Accords not with the sadness of my suit: +Please you dismiss me either with 'ay' or 'no.' + +KING EDWARD IV: +Ay, if thou wilt say 'ay' to my request; +No if thou dost say 'no' to my demand. + +LADY GREY: +Then, no, my lord. My suit is at an end. + +GLOUCESTER: + +CLARENCE: + +KING EDWARD IV: + +LADY GREY: +'Tis better said than done, my gracious lord: +I am a subject fit to jest withal, +But far unfit to be a sovereign. + +KING EDWARD IV: +Sweet widow, by my state I swear to thee +I speak no more than what my soul intends; +And that is, to enjoy thee for my love. + +LADY GREY: +And that is more than I will yield unto: +I know I am too mean to be your queen, +And yet too good to be your concubine. + +KING EDWARD IV: +You cavil, widow: I did mean, my queen. + +LADY GREY: +'Twill grieve your grace my sons should call you father. + +KING EDWARD IV: +No more than when my daughters call thee mother. +Thou art a widow, and thou hast some children; +And, by God's mother, I, being but a bachelor, +Have other some: why, 'tis a happy thing +To be the father unto many sons. +Answer no more, for thou shalt be my queen. + +GLOUCESTER: + +CLARENCE: + +KING EDWARD IV: +Brothers, you muse what chat we two have had. + +GLOUCESTER: +The widow likes it not, for she looks very sad. + +KING EDWARD IV: +You'll think it strange if I should marry her. + +CLARENCE: +To whom, my lord? + +KING EDWARD IV: +Why, Clarence, to myself. + +GLOUCESTER: +That would be ten days' wonder at the least. + +CLARENCE: +That's a day longer than a wonder lasts. + +GLOUCESTER: +By so much is the wonder in extremes. + +KING EDWARD IV: +Well, jest on, brothers: I can tell you both +Her suit is granted for her husband's lands. + +Nobleman: +My gracious lord, Henry your foe is taken, +And brought your prisoner to your palace gate. + +KING EDWARD IV: +See that he be convey'd unto the Tower: +And go we, brothers, to the man that took him, +To question of his apprehension. +Widow, go you along. Lords, use her honourably. + +GLOUCESTER: +Ay, Edward will use women honourably. +Would he were wasted, marrow, bones and all, +That from his loins no hopeful branch may spring, +To cross me from the golden time I look for! +And yet, between my soul's desire and me-- +The lustful Edward's title buried-- +Is Clarence, Henry, and his son young Edward, +And all the unlook'd for issue of their bodies, +To take their rooms, ere I can place myself: +A cold premeditation for my purpose! +Why, then, I do but dream on sovereignty; +Like one that stands upon a promontory, +And spies a far-off shore where he would tread, +Wishing his foot were equal with his eye, +And chides the sea that sunders him from thence, +Saying, he'll lade it dry to have his way: +So do I wish the crown, being so far off; +And so I chide the means that keeps me from it; +And so I say, I'll cut the causes off, +Flattering me with impossibilities. +My eye's too quick, my heart o'erweens too much, +Unless my hand and strength could equal them. +Well, say there is no kingdom then for Richard; +What other pleasure can the world afford? +I'll make my heaven in a lady's lap, +And deck my body in gay ornaments, +And witch sweet ladies with my words and looks. +O miserable thought! and more unlikely +Than to accomplish twenty golden crowns! +Why, love forswore me in my mother's womb: +And, for I should not deal in her soft laws, +She did corrupt frail nature with some bribe, +To shrink mine arm up like a wither'd shrub; +To make an envious mountain on my back, +Where sits deformity to mock my body; +To shape my legs of an unequal size; +To disproportion me in every part, +Like to a chaos, or an unlick'd bear-whelp +That carries no impression like the dam. +And am I then a man to be beloved? +O monstrous fault, to harbour such a thought! +Then, since this earth affords no joy to me, +But to command, to cheque, to o'erbear such +As are of better person than myself, +I'll make my heaven to dream upon the crown, +And, whiles I live, to account this world but hell, +Until my mis-shaped trunk that bears this head +Be round impaled with a glorious crown. +And yet I know not how to get the crown, +For many lives stand between me and home: +And I,--like one lost in a thorny wood, +That rends the thorns and is rent with the thorns, +Seeking a way and straying from the way; +Not knowing how to find the open air, +But toiling desperately to find it out,-- +Torment myself to catch the English crown: +And from that torment I will free myself, +Or hew my way out with a bloody axe. +Why, I can smile, and murder whiles I smile, +And cry 'Content' to that which grieves my heart, +And wet my cheeks with artificial tears, +And frame my face to all occasions. +I'll drown more sailors than the mermaid shall; +I'll slay more gazers than the basilisk; +I'll play the orator as well as Nestor, +Deceive more slily than Ulysses could, +And, like a Sinon, take another Troy. +I can add colours to the chameleon, +Change shapes with Proteus for advantages, +And set the murderous Machiavel to school. +Can I do this, and cannot get a crown? +Tut, were it farther off, I'll pluck it down. +3 KING HENRY VI + +KING LEWIS XI: +Fair Queen of England, worthy Margaret, +Sit down with us: it ill befits thy state +And birth, that thou shouldst stand while Lewis doth sit. + +QUEEN MARGARET: +No, mighty King of France: now Margaret +Must strike her sail and learn awhile to serve +Where kings command. I was, I must confess, +Great Albion's queen in former golden days: +But now mischance hath trod my title down, +And with dishonour laid me on the ground; +Where I must take like seat unto my fortune, +And to my humble seat conform myself. + +KING LEWIS XI: +Why, say, fair queen, whence springs this deep despair? + +QUEEN MARGARET: +From such a cause as fills mine eyes with tears +And stops my tongue, while heart is drown'd in cares. + +KING LEWIS XI: +Whate'er it be, be thou still like thyself, +And sit thee by our side: +Yield not thy neck +To fortune's yoke, but let thy dauntless mind +Still ride in triumph over all mischance. +Be plain, Queen Margaret, and tell thy grief; +It shall be eased, if France can yield relief. + +QUEEN MARGARET: +Those gracious words revive my drooping thoughts +And give my tongue-tied sorrows leave to speak. +Now, therefore, be it known to noble Lewis, +That Henry, sole possessor of my love, +Is of a king become a banish'd man, +And forced to live in Scotland a forlorn; +While proud ambitious Edward Duke of York +Usurps the regal title and the seat +Of England's true-anointed lawful king. +This is the cause that I, poor Margaret, +With this my son, Prince Edward, Henry's heir, +Am come to crave thy just and lawful aid; +And if thou fail us, all our hope is done: +Scotland hath will to help, but cannot help; +Our people and our peers are both misled, +Our treasures seized, our soldiers put to flight, +And, as thou seest, ourselves in heavy plight. + +KING LEWIS XI: +Renowned queen, with patience calm the storm, +While we bethink a means to break it off. + +QUEEN MARGARET: +The more we stay, the stronger grows our foe. + +KING LEWIS XI: +The more I stay, the more I'll succor thee. + +QUEEN MARGARET: +O, but impatience waiteth on true sorrow. +And see where comes the breeder of my sorrow! + +KING LEWIS XI: +What's he approacheth boldly to our presence? + +QUEEN MARGARET: +Our Earl of Warwick, Edward's greatest friend. + +KING LEWIS XI: +Welcome, brave Warwick! What brings thee to France? + +QUEEN MARGARET: +Ay, now begins a second storm to rise; +For this is he that moves both wind and tide. + +WARWICK: +From worthy Edward, King of Albion, +My lord and sovereign, and thy vowed friend, +I come, in kindness and unfeigned love, +First, to do greetings to thy royal person; +And then to crave a league of amity; +And lastly, to confirm that amity +With a nuptial knot, if thou vouchsafe to grant +That virtuous Lady Bona, thy fair sister, +To England's king in lawful marriage. + +QUEEN MARGARET: + +WARWICK: + +QUEEN MARGARET: +King Lewis and Lady Bona, hear me speak, +Before you answer Warwick. His demand +Springs not from Edward's well-meant honest love, +But from deceit bred by necessity; +For how can tyrants safely govern home, +Unless abroad they purchase great alliance? +To prove him tyrant this reason may suffice, +That Henry liveth still: but were he dead, +Yet here Prince Edward stands, King Henry's son. +Look, therefore, Lewis, that by this league and marriage +Thou draw not on thy danger and dishonour; +For though usurpers sway the rule awhile, +Yet heavens are just, and time suppresseth wrongs. + +WARWICK: +Injurious Margaret! + +PRINCE EDWARD: +And why not queen? + +WARWICK: +Because thy father Henry did usurp; +And thou no more are prince than she is queen. + +OXFORD: +Then Warwick disannuls great John of Gaunt, +Which did subdue the greatest part of Spain; +And, after John of Gaunt, Henry the Fourth, +Whose wisdom was a mirror to the wisest; +And, after that wise prince, Henry the Fifth, +Who by his prowess conquered all France: +From these our Henry lineally descends. + +WARWICK: +Oxford, how haps it, in this smooth discourse, +You told not how Henry the Sixth hath lost +All that which Henry Fifth had gotten? +Methinks these peers of France should smile at that. +But for the rest, you tell a pedigree +Of threescore and two years; a silly time +To make prescription for a kingdom's worth. + +OXFORD: +Why, Warwick, canst thou speak against thy liege, +Whom thou obeyed'st thirty and six years, +And not bewray thy treason with a blush? + +WARWICK: +Can Oxford, that did ever fence the right, +Now buckler falsehood with a pedigree? +For shame! leave Henry, and call Edward king. + +OXFORD: +Call him my king by whose injurious doom +My elder brother, the Lord Aubrey Vere, +Was done to death? and more than so, my father, +Even in the downfall of his mellow'd years, +When nature brought him to the door of death? +No, Warwick, no; while life upholds this arm, +This arm upholds the house of Lancaster. + +WARWICK: +And I the house of York. + +KING LEWIS XI: +Queen Margaret, Prince Edward, and Oxford, +Vouchsafe, at our request, to stand aside, +While I use further conference with Warwick. + +QUEEN MARGARET: +Heavens grant that Warwick's words bewitch him not! + +KING LEWIS XI: +Now Warwick, tell me, even upon thy conscience, +Is Edward your true king? for I were loath +To link with him that were not lawful chosen. + +WARWICK: +Thereon I pawn my credit and mine honour. + +KING LEWIS XI: +But is he gracious in the people's eye? + +WARWICK: +The more that Henry was unfortunate. + +KING LEWIS XI: +Then further, all dissembling set aside, +Tell me for truth the measure of his love +Unto our sister Bona. + +WARWICK: +Such it seems +As may beseem a monarch like himself. +Myself have often heard him say and swear +That this his love was an eternal plant, +Whereof the root was fix'd in virtue's ground, +The leaves and fruit maintain'd with beauty's sun, +Exempt from envy, but not from disdain, +Unless the Lady Bona quit his pain. + +KING LEWIS XI: +Now, sister, let us hear your firm resolve. + +BONA: +Your grant, or your denial, shall be mine: +Yet I confess that often ere this day, +When I have heard your king's desert recounted, +Mine ear hath tempted judgment to desire. + +KING LEWIS XI: +Then, Warwick, thus: our sister shall be Edward's; +And now forthwith shall articles be drawn +Touching the jointure that your king must make, +Which with her dowry shall be counterpoised. +Draw near, Queen Margaret, and be a witness +That Bona shall be wife to the English king. + +PRINCE EDWARD: +To Edward, but not to the English king. + +QUEEN MARGARET: +Deceitful Warwick! it was thy device +By this alliance to make void my suit: +Before thy coming Lewis was Henry's friend. + +KING LEWIS XI: +And still is friend to him and Margaret: +But if your title to the crown be weak, +As may appear by Edward's good success, +Then 'tis but reason that I be released +From giving aid which late I promised. +Yet shall you have all kindness at my hand +That your estate requires and mine can yield. + +WARWICK: +Henry now lives in Scotland at his ease, +Where having nothing, nothing can he lose. +And as for you yourself, our quondam queen, +You have a father able to maintain you; +And better 'twere you troubled him than France. + +QUEEN MARGARET: +Peace, impudent and shameless Warwick, peace, +Proud setter up and puller down of kings! +I will not hence, till, with my talk and tears, +Both full of truth, I make King Lewis behold +Thy sly conveyance and thy lord's false love; +For both of you are birds of selfsame feather. + +KING LEWIS XI: +Warwick, this is some post to us or thee. + +Post: + +OXFORD: +I like it well that our fair queen and mistress +Smiles at her news, while Warwick frowns at his. + +PRINCE EDWARD: +Nay, mark how Lewis stamps, as he were nettled: +I hope all's for the best. + +KING LEWIS XI: +Warwick, what are thy news? and yours, fair queen? + +QUEEN MARGARET: +Mine, such as fill my heart with unhoped joys. + +WARWICK: +Mine, full of sorrow and heart's discontent. + +KING LEWIS XI: +What! has your king married the Lady Grey! +And now, to soothe your forgery and his, +Sends me a paper to persuade me patience? +Is this the alliance that he seeks with France? +Dare he presume to scorn us in this manner? + +QUEEN MARGARET: +I told your majesty as much before: +This proveth Edward's love and Warwick's honesty. + +WARWICK: +King Lewis, I here protest, in sight of heaven, +And by the hope I have of heavenly bliss, +That I am clear from this misdeed of Edward's, +No more my king, for he dishonours me, +But most himself, if he could see his shame. +Did I forget that by the house of York +My father came untimely to his death? +Did I let pass the abuse done to my niece? +Did I impale him with the regal crown? +Did I put Henry from his native right? +And am I guerdon'd at the last with shame? +Shame on himself! for my desert is honour: +And to repair my honour lost for him, +I here renounce him and return to Henry. +My noble queen, let former grudges pass, +And henceforth I am thy true servitor: +I will revenge his wrong to Lady Bona, +And replant Henry in his former state. + +QUEEN MARGARET: +Warwick, these words have turn'd my hate to love; +And I forgive and quite forget old faults, +And joy that thou becomest King Henry's friend. + +WARWICK: +So much his friend, ay, his unfeigned friend, +That, if King Lewis vouchsafe to furnish us +With some few bands of chosen soldiers, +I'll undertake to land them on our coast +And force the tyrant from his seat by war. +'Tis not his new-made bride shall succor him: +And as for Clarence, as my letters tell me, +He's very likely now to fall from him, +For matching more for wanton lust than honour, +Or than for strength and safety of our country. + +BONA: +Dear brother, how shall Bona be revenged +But by thy help to this distressed queen? + +QUEEN MARGARET: +Renowned prince, how shall poor Henry live, +Unless thou rescue him from foul despair? + +BONA: +My quarrel and this English queen's are one. + +WARWICK: +And mine, fair lady Bona, joins with yours. + +KING LEWIS XI: +And mine with hers, and thine, and Margaret's. +Therefore at last I firmly am resolved +You shall have aid. + +QUEEN MARGARET: +Let me give humble thanks for all at once. + +KING LEWIS XI: +Then, England's messenger, return in post, +And tell false Edward, thy supposed king, +That Lewis of France is sending over masquers +To revel it with him and his new bride: +Thou seest what's past, go fear thy king withal. + +BONA: +Tell him, in hope he'll prove a widower shortly, +I'll wear the willow garland for his sake. + +QUEEN MARGARET: +Tell him, my mourning weeds are laid aside, +And I am ready to put armour on. + +WARWICK: +Tell him from me that he hath done me wrong, +And therefore I'll uncrown him ere't be long. +There's thy reward: be gone. + +KING LEWIS XI: +But, Warwick, +Thou and Oxford, with five thousand men, +Shall cross the seas, and bid false Edward battle; +And, as occasion serves, this noble queen +And prince shall follow with a fresh supply. +Yet, ere thou go, but answer me one doubt, +What pledge have we of thy firm loyalty? + +WARWICK: +This shall assure my constant loyalty, +That if our queen and this young prince agree, +I'll join mine eldest daughter and my joy +To him forthwith in holy wedlock bands. + +QUEEN MARGARET: +Yes, I agree, and thank you for your motion. +Son Edward, she is fair and virtuous, +Therefore delay not, give thy hand to Warwick; +And, with thy hand, thy faith irrevocable, +That only Warwick's daughter shall be thine. + +PRINCE EDWARD: +Yes, I accept her, for she well deserves it; +And here, to pledge my vow, I give my hand. + +KING LEWIS XI: +Why stay we now? These soldiers shall be levied, +And thou, Lord Bourbon, our high admiral, +Shalt waft them over with our royal fleet. +I long till Edward fall by war's mischance, +For mocking marriage with a dame of France. + +WARWICK: +I came from Edward as ambassador, +But I return his sworn and mortal foe: +Matter of marriage was the charge he gave me, +But dreadful war shall answer his demand. +Had he none else to make a stale but me? +Then none but I shall turn his jest to sorrow. +I was the chief that raised him to the crown, +And I'll be chief to bring him down again: +Not that I pity Henry's misery, +But seek revenge on Edward's mockery. +3 KING HENRY VI + +GLOUCESTER: +Now tell me, brother Clarence, what think you +Of this new marriage with the Lady Grey? +Hath not our brother made a worthy choice? + +CLARENCE: +Alas, you know, 'tis far from hence to France; +How could he stay till Warwick made return? + +SOMERSET: +My lords, forbear this talk; here comes the king. + +GLOUCESTER: +And his well-chosen bride. + +CLARENCE: +I mind to tell him plainly what I think. + +KING EDWARD IV: +Now, brother of Clarence, how like you our choice, +That you stand pensive, as half malcontent? + +CLARENCE: +As well as Lewis of France, or the Earl of Warwick, +Which are so weak of courage and in judgment +That they'll take no offence at our abuse. + +KING EDWARD IV: +Suppose they take offence without a cause, +They are but Lewis and Warwick: I am Edward, +Your king and Warwick's, and must have my will. + +GLOUCESTER: +And shall have your will, because our king: +Yet hasty marriage seldom proveth well. + +KING EDWARD IV: +Yea, brother Richard, are you offended too? + +GLOUCESTER: +Not I: +No, God forbid that I should wish them sever'd +Whom God hath join'd together; ay, and 'twere pity +To sunder them that yoke so well together. + +KING EDWARD IV: +Setting your scorns and your mislike aside, +Tell me some reason why the Lady Grey +Should not become my wife and England's queen. +And you too, Somerset and Montague, +Speak freely what you think. + +CLARENCE: +Then this is mine opinion: that King Lewis +Becomes your enemy, for mocking him +About the marriage of the Lady Bona. + +GLOUCESTER: +And Warwick, doing what you gave in charge, +Is now dishonoured by this new marriage. + +KING EDWARD IV: +What if both Lewis and Warwick be appeased +By such invention as I can devise? + +MONTAGUE: +Yet, to have join'd with France in such alliance +Would more have strengthen'd this our commonwealth +'Gainst foreign storms than any home-bred marriage. + +HASTINGS: +Why, knows not Montague that of itself +England is safe, if true within itself? + +MONTAGUE: +But the safer when 'tis back'd with France. + +HASTINGS: +'Tis better using France than trusting France: +Let us be back'd with God and with the seas +Which He hath given for fence impregnable, +And with their helps only defend ourselves; +In them and in ourselves our safety lies. + +CLARENCE: +For this one speech Lord Hastings well deserves +To have the heir of the Lord Hungerford. + +KING EDWARD IV: +Ay, what of that? it was my will and grant; +And for this once my will shall stand for law. + +GLOUCESTER: +And yet methinks your grace hath not done well, +To give the heir and daughter of Lord Scales +Unto the brother of your loving bride; +She better would have fitted me or Clarence: +But in your bride you bury brotherhood. + +CLARENCE: +Or else you would not have bestow'd the heir +Of the Lord Bonville on your new wife's son, +And leave your brothers to go speed elsewhere. + +KING EDWARD IV: +Alas, poor Clarence! is it for a wife +That thou art malcontent? I will provide thee. + +CLARENCE: +In choosing for yourself, you show'd your judgment, +Which being shallow, you give me leave +To play the broker in mine own behalf; +And to that end I shortly mind to leave you. + +KING EDWARD IV: +Leave me, or tarry, Edward will be king, +And not be tied unto his brother's will. + +QUEEN ELIZABETH: +My lords, before it pleased his majesty +To raise my state to title of a queen, +Do me but right, and you must all confess +That I was not ignoble of descent; +And meaner than myself have had like fortune. +But as this title honours me and mine, +So your dislike, to whom I would be pleasing, +Doth cloud my joys with danger and with sorrow. + +KING EDWARD IV: +My love, forbear to fawn upon their frowns: +What danger or what sorrow can befall thee, +So long as Edward is thy constant friend, +And their true sovereign, whom they must obey? +Nay, whom they shall obey, and love thee too, +Unless they seek for hatred at my hands; +Which if they do, yet will I keep thee safe, +And they shall feel the vengeance of my wrath. + +GLOUCESTER: + +KING EDWARD IV: +Now, messenger, what letters or what news +From France? + +Post: +My sovereign liege, no letters; and few words, +But such as I, without your special pardon, +Dare not relate. + +KING EDWARD IV: +Go to, we pardon thee: therefore, in brief, +Tell me their words as near as thou canst guess them. +What answer makes King Lewis unto our letters? + +Post: +At my depart, these were his very words: +'Go tell false Edward, thy supposed king, +That Lewis of France is sending over masquers +To revel it with him and his new bride.' + +KING EDWARD IV: +Is Lewis so brave? belike he thinks me Henry. +But what said Lady Bona to my marriage? + +Post: +These were her words, utter'd with mad disdain: +'Tell him, in hope he'll prove a widower shortly, +I'll wear the willow garland for his sake.' + +KING EDWARD IV: +I blame not her, she could say little less; +She had the wrong. But what said Henry's queen? +For I have heard that she was there in place. + +Post: +'Tell him,' quoth she, 'my mourning weeds are done, +And I am ready to put armour on.' + +KING EDWARD IV: +Belike she minds to play the Amazon. +But what said Warwick to these injuries? + +Post: +He, more incensed against your majesty +Than all the rest, discharged me with these words: +'Tell him from me that he hath done me wrong, +And therefore I'll uncrown him ere't be long.' + +KING EDWARD IV: +Ha! durst the traitor breathe out so proud words? +Well I will arm me, being thus forewarn'd: +They shall have wars and pay for their presumption. +But say, is Warwick friends with Margaret? + +Post: +Ay, gracious sovereign; they are so link'd in +friendship +That young Prince Edward marries Warwick's daughter. + +CLARENCE: +Belike the elder; Clarence will have the younger. +Now, brother king, farewell, and sit you fast, +For I will hence to Warwick's other daughter; +That, though I want a kingdom, yet in marriage +I may not prove inferior to yourself. +You that love me and Warwick, follow me. + +GLOUCESTER: + +KING EDWARD IV: +Clarence and Somerset both gone to Warwick! +Yet am I arm'd against the worst can happen; +And haste is needful in this desperate case. +Pembroke and Stafford, you in our behalf +Go levy men, and make prepare for war; +They are already, or quickly will be landed: +Myself in person will straight follow you. +But, ere I go, Hastings and Montague, +Resolve my doubt. You twain, of all the rest, +Are near to Warwick by blood and by alliance: +Tell me if you love Warwick more than me? +If it be so, then both depart to him; +I rather wish you foes than hollow friends: +But if you mind to hold your true obedience, +Give me assurance with some friendly vow, +That I may never have you in suspect. + +MONTAGUE: +So God help Montague as he proves true! + +HASTINGS: +And Hastings as he favours Edward's cause! + +KING EDWARD IV: +Now, brother Richard, will you stand by us? + +GLOUCESTER: +Ay, in despite of all that shall withstand you. + +KING EDWARD IV: +Why, so! then am I sure of victory. +Now therefore let us hence; and lose no hour, +Till we meet Warwick with his foreign power. +3 KING HENRY VI + +WARWICK: +Trust me, my lord, all hitherto goes well; +The common people by numbers swarm to us. +But see where Somerset and Clarence come! +Speak suddenly, my lords, are we all friends? + +CLARENCE: +Fear not that, my lord. + +WARWICK: +Then, gentle Clarence, welcome unto Warwick; +And welcome, Somerset: I hold it cowardice +To rest mistrustful where a noble heart +Hath pawn'd an open hand in sign of love; +Else might I think that Clarence, Edward's brother, +Were but a feigned friend to our proceedings: +But welcome, sweet Clarence; my daughter shall be thine. +And now what rests but, in night's coverture, +Thy brother being carelessly encamp'd, +His soldiers lurking in the towns about, +And but attended by a simple guard, +We may surprise and take him at our pleasure? +Our scouts have found the adventure very easy: +That as Ulysses and stout Diomede +With sleight and manhood stole to Rhesus' tents, +And brought from thence the Thracian fatal steeds, +So we, well cover'd with the night's black mantle, +At unawares may beat down Edward's guard +And seize himself; I say not, slaughter him, +For I intend but only to surprise him. +You that will follow me to this attempt, +Applaud the name of Henry with your leader. +Why, then, let's on our way in silent sort: +For Warwick and his friends, God and Saint George! +3 KING HENRY VI + +First Watchman: +Come on, my masters, each man take his stand: +The king by this is set him down to sleep. + +Second Watchman: +What, will he not to bed? + +First Watchman: +Why, no; for he hath made a solemn vow +Never to lie and take his natural rest +Till Warwick or himself be quite suppress'd. + +Second Watchman: +To-morrow then belike shall be the day, +If Warwick be so near as men report. + +Third Watchman: +But say, I pray, what nobleman is that +That with the king here resteth in his tent? + +First Watchman: +'Tis the Lord Hastings, the king's chiefest friend. + +Third Watchman: +O, is it so? But why commands the king +That his chief followers lodge in towns about him, +While he himself keeps in the cold field? + +Second Watchman: +'Tis the more honour, because more dangerous. + +Third Watchman: +Ay, but give me worship and quietness; +I like it better than a dangerous honour. +If Warwick knew in what estate he stands, +'Tis to be doubted he would waken him. + +First Watchman: +Unless our halberds did shut up his passage. + +Second Watchman: +Ay, wherefore else guard we his royal tent, +But to defend his person from night-foes? + +WARWICK: +This is his tent; and see where stand his guard. +Courage, my masters! honour now or never! +But follow me, and Edward shall be ours. + +First Watchman: +Who goes there? + +Second Watchman: +Stay, or thou diest! + +SOMERSET: +What are they that fly there? + +WARWICK: +Richard and Hastings: let them go; here is The duke. + +KING EDWARD IV: +The duke! Why, Warwick, when we parted, +Thou call'dst me king. + +WARWICK: +Ay, but the case is alter'd: +When you disgraced me in my embassade, +Then I degraded you from being king, +And come now to create you Duke of York. +Alas! how should you govern any kingdom, +That know not how to use ambassadors, +Nor how to be contented with one wife, +Nor how to use your brothers brotherly, +Nor how to study for the people's welfare, +Nor how to shroud yourself from enemies? + +KING EDWARD IV: +Yea, brother of Clarence, are thou here too? +Nay, then I see that Edward needs must down. +Yet, Warwick, in despite of all mischance, +Of thee thyself and all thy complices, +Edward will always bear himself as king: +Though fortune's malice overthrow my state, +My mind exceeds the compass of her wheel. + +WARWICK: +Then, for his mind, be Edward England's king: +But Henry now shall wear the English crown, +And be true king indeed, thou but the shadow. +My Lord of Somerset, at my request, +See that forthwith Duke Edward be convey'd +Unto my brother, Archbishop of York. +When I have fought with Pembroke and his fellows, +I'll follow you, and tell what answer +Lewis and the Lady Bona send to him. +Now, for a while farewell, good Duke of York. + +KING EDWARD IV: +What fates impose, that men must needs abide; +It boots not to resist both wind and tide. + +OXFORD: +What now remains, my lords, for us to do +But march to London with our soldiers? + +WARWICK: +Ay, that's the first thing that we have to do; +To free King Henry from imprisonment +And see him seated in the regal throne. +3 KING HENRY VI + +RIVERS: +Madam, what makes you in this sudden change? + +QUEEN ELIZABETH: +Why brother Rivers, are you yet to learn +What late misfortune is befall'n King Edward? + +RIVERS: +What! loss of some pitch'd battle against Warwick? + +QUEEN ELIZABETH: +No, but the loss of his own royal person. + +RIVERS: +Then is my sovereign slain? + +QUEEN ELIZABETH: +Ay, almost slain, for he is taken prisoner, +Either betray'd by falsehood of his guard +Or by his foe surprised at unawares: +And, as I further have to understand, +Is new committed to the Bishop of York, +Fell Warwick's brother and by that our foe. + +RIVERS: +These news I must confess are full of grief; +Yet, gracious madam, bear it as you may: +Warwick may lose, that now hath won the day. + +QUEEN ELIZABETH: +Till then fair hope must hinder life's decay. +And I the rather wean me from despair +For love of Edward's offspring in my womb: +This is it that makes me bridle passion +And bear with mildness my misfortune's cross; +Ay, ay, for this I draw in many a tear +And stop the rising of blood-sucking sighs, +Lest with my sighs or tears I blast or drown +King Edward's fruit, true heir to the English crown. + +RIVERS: +But, madam, where is Warwick then become? + +QUEEN ELIZABETH: +I am inform'd that he comes towards London, +To set the crown once more on Henry's head: +Guess thou the rest; King Edward's friends must down, +But, to prevent the tyrant's violence,-- +For trust not him that hath once broken faith,-- +I'll hence forthwith unto the sanctuary, +To save at least the heir of Edward's right: +There shall I rest secure from force and fraud. +Come, therefore, let us fly while we may fly: +If Warwick take us we are sure to die. +3 KING HENRY VI + +GLOUCESTER: +Now, my Lord Hastings and Sir William Stanley, +Leave off to wonder why I drew you hither, +Into this chiefest thicket of the park. +Thus stands the case: you know our king, my brother, +Is prisoner to the bishop here, at whose hands +He hath good usage and great liberty, +And, often but attended with weak guard, +Comes hunting this way to disport himself. +I have advertised him by secret means +That if about this hour he make his way +Under the colour of his usual game, +He shall here find his friends with horse and men +To set him free from his captivity. + +Huntsman: +This way, my lord; for this way lies the game. + +KING EDWARD IV: +Nay, this way, man: see where the huntsmen stand. +Now, brother of Gloucester, Lord Hastings, and the rest, +Stand you thus close, to steal the bishop's deer? + +GLOUCESTER: +Brother, the time and case requireth haste: +Your horse stands ready at the park-corner. + +KING EDWARD IV: +But whither shall we then? + +HASTINGS: +To Lynn, my lord, +And ship from thence to Flanders. + +GLOUCESTER: +Well guess'd, believe me; for that was my meaning. + +KING EDWARD IV: +Stanley, I will requite thy forwardness. + +GLOUCESTER: +But wherefore stay we? 'tis no time to talk. + +KING EDWARD IV: +Huntsman, what say'st thou? wilt thou go along? + +Huntsman: +Better do so than tarry and be hang'd. + +GLOUCESTER: +Come then, away; let's ha' no more ado. + +KING EDWARD IV: +Bishop, farewell: shield thee from Warwick's frown; +And pray that I may repossess the crown. +3 KING HENRY VI + +KING HENRY VI: +Master lieutenant, now that God and friends +Have shaken Edward from the regal seat, +And turn'd my captive state to liberty, +My fear to hope, my sorrows unto joys, +At our enlargement what are thy due fees? + +Lieutenant: +Subjects may challenge nothing of their sovereigns; +But if an humble prayer may prevail, +I then crave pardon of your majesty. + +KING HENRY VI: +For what, lieutenant? for well using me? +Nay, be thou sure I'll well requite thy kindness, +For that it made my imprisonment a pleasure; +Ay, such a pleasure as incaged birds +Conceive when after many moody thoughts +At last by notes of household harmony +They quite forget their loss of liberty. +But, Warwick, after God, thou set'st me free, +And chiefly therefore I thank God and thee; +He was the author, thou the instrument. +Therefore, that I may conquer fortune's spite +By living low, where fortune cannot hurt me, +And that the people of this blessed land +May not be punish'd with my thwarting stars, +Warwick, although my head still wear the crown, +I here resign my government to thee, +For thou art fortunate in all thy deeds. + +WARWICK: +Your grace hath still been famed for virtuous; +And now may seem as wise as virtuous, +By spying and avoiding fortune's malice, +For few men rightly temper with the stars: +Yet in this one thing let me blame your grace, +For choosing me when Clarence is in place. + +CLARENCE: +No, Warwick, thou art worthy of the sway, +To whom the heavens in thy nativity +Adjudged an olive branch and laurel crown, +As likely to be blest in peace and war; +And therefore I yield thee my free consent. + +WARWICK: +And I choose Clarence only for protector. + +KING HENRY VI: +Warwick and Clarence give me both your hands: +Now join your hands, and with your hands your hearts, +That no dissension hinder government: +I make you both protectors of this land, +While I myself will lead a private life +And in devotion spend my latter days, +To sin's rebuke and my Creator's praise. + +WARWICK: +What answers Clarence to his sovereign's will? + +CLARENCE: +That he consents, if Warwick yield consent; +For on thy fortune I repose myself. + +WARWICK: +Why, then, though loath, yet must I be content: +We'll yoke together, like a double shadow +To Henry's body, and supply his place; +I mean, in bearing weight of government, +While he enjoys the honour and his ease. +And, Clarence, now then it is more than needful +Forthwith that Edward be pronounced a traitor, +And all his lands and goods be confiscate. + +CLARENCE: +What else? and that succession be determined. + +WARWICK: +Ay, therein Clarence shall not want his part. + +KING HENRY VI: +But, with the first of all your chief affairs, +Let me entreat, for I command no more, +That Margaret your queen and my son Edward +Be sent for, to return from France with speed; +For, till I see them here, by doubtful fear +My joy of liberty is half eclipsed. + +CLARENCE: +It shall be done, my sovereign, with all speed. + +KING HENRY VI: +My Lord of Somerset, what youth is that, +Of whom you seem to have so tender care? + +SOMERSET: +My liege, it is young Henry, earl of Richmond. + +KING HENRY VI: +Come hither, England's hope. +If secret powers +Suggest but truth to my divining thoughts, +This pretty lad will prove our country's bliss. +His looks are full of peaceful majesty, +His head by nature framed to wear a crown, +His hand to wield a sceptre, and himself +Likely in time to bless a regal throne. +Make much of him, my lords, for this is he +Must help you more than you are hurt by me. + +WARWICK: +What news, my friend? + +Post: +That Edward is escaped from your brother, +And fled, as he hears since, to Burgundy. + +WARWICK: +Unsavoury news! but how made he escape? + +Post: +He was convey'd by Richard Duke of Gloucester +And the Lord Hastings, who attended him +In secret ambush on the forest side +And from the bishop's huntsmen rescued him; +For hunting was his daily exercise. + +WARWICK: +My brother was too careless of his charge. +But let us hence, my sovereign, to provide +A salve for any sore that may betide. + +SOMERSET: +My lord, I like not of this flight of Edward's; +For doubtless Burgundy will yield him help, +And we shall have more wars before 't be long. +As Henry's late presaging prophecy +Did glad my heart with hope of this young Richmond, +So doth my heart misgive me, in these conflicts +What may befall him, to his harm and ours: +Therefore, Lord Oxford, to prevent the worst, +Forthwith we'll send him hence to Brittany, +Till storms be past of civil enmity. + +OXFORD: +Ay, for if Edward repossess the crown, +'Tis like that Richmond with the rest shall down. + +SOMERSET: +It shall be so; he shall to Brittany. +Come, therefore, let's about it speedily. +3 KING HENRY VI + +KING EDWARD IV: +Now, brother Richard, Lord Hastings, and the rest, +Yet thus far fortune maketh us amends, +And says that once more I shall interchange +My waned state for Henry's regal crown. +Well have we pass'd and now repass'd the seas +And brought desired help from Burgundy: +What then remains, we being thus arrived +From Ravenspurgh haven before the gates of York, +But that we enter, as into our dukedom? + +GLOUCESTER: +The gates made fast! Brother, I like not this; +For many men that stumble at the threshold +Are well foretold that danger lurks within. + +KING EDWARD IV: +Tush, man, abodements must not now affright us: +By fair or foul means we must enter in, +For hither will our friends repair to us. + +HASTINGS: +My liege, I'll knock once more to summon them. + +Mayor: +My lords, we were forewarned of your coming, +And shut the gates for safety of ourselves; +For now we owe allegiance unto Henry. + +KING EDWARD IV: +But, master mayor, if Henry be your king, +Yet Edward at the least is Duke of York. + +Mayor: +True, my good lord; I know you for no less. + +KING EDWARD IV: +Why, and I challenge nothing but my dukedom, +As being well content with that alone. + +GLOUCESTER: + +HASTINGS: +Why, master mayor, why stand you in a doubt? +Open the gates; we are King Henry's friends. + +Mayor: +Ay, say you so? the gates shall then be open'd. + +GLOUCESTER: +A wise stout captain, and soon persuaded! + +HASTINGS: +The good old man would fain that all were well, +So 'twere not 'long of him; but being enter'd, +I doubt not, I, but we shall soon persuade +Both him and all his brothers unto reason. + +KING EDWARD IV: +So, master mayor: these gates must not be shut +But in the night or in the time of war. +What! fear not, man, but yield me up the keys; +For Edward will defend the town and thee, +And all those friends that deign to follow me. + +GLOUCESTER: +Brother, this is Sir John Montgomery, +Our trusty friend, unless I be deceived. + +KING EDWARD IV: +Welcome, Sir John! But why come you in arms? + +MONTAGUE: +To help King Edward in his time of storm, +As every loyal subject ought to do. + +KING EDWARD IV: +Thanks, good Montgomery; but we now forget +Our title to the crown and only claim +Our dukedom till God please to send the rest. + +MONTAGUE: +Then fare you well, for I will hence again: +I came to serve a king and not a duke. +Drummer, strike up, and let us march away. + +KING EDWARD IV: +Nay, stay, Sir John, awhile, and we'll debate +By what safe means the crown may be recover'd. + +MONTAGUE: +What talk you of debating? in few words, +If you'll not here proclaim yourself our king, +I'll leave you to your fortune and be gone +To keep them back that come to succor you: +Why shall we fight, if you pretend no title? + +GLOUCESTER: +Why, brother, wherefore stand you on nice points? + +KING EDWARD IV: +When we grow stronger, then we'll make our claim: +Till then, 'tis wisdom to conceal our meaning. + +HASTINGS: +Away with scrupulous wit! now arms must rule. + +GLOUCESTER: +And fearless minds climb soonest unto crowns. +Brother, we will proclaim you out of hand: +The bruit thereof will bring you many friends. + +KING EDWARD IV: +Then be it as you will; for 'tis my right, +And Henry but usurps the diadem. + +MONTAGUE: +Ay, now my sovereign speaketh like himself; +And now will I be Edward's champion. + +HASTINGS: +Sound trumpet; Edward shall be here proclaim'd: +Come, fellow-soldier, make thou proclamation. + +Soldier: +Edward the Fourth, by the grace of God, king of +England and France, and lord of Ireland, &c. + +MONTAGUE: +And whosoe'er gainsays King Edward's right, +By this I challenge him to single fight. + +All: +Long live Edward the Fourth! + +KING EDWARD IV: +Thanks, brave Montgomery; and thanks unto you all: +If fortune serve me, I'll requite this kindness. +Now, for this night, let's harbour here in York; +And when the morning sun shall raise his car +Above the border of this horizon, +We'll forward towards Warwick and his mates; +For well I wot that Henry is no soldier. +Ah, froward Clarence! how evil it beseems thee +To flatter Henry and forsake thy brother! +Yet, as we may, we'll meet both thee and Warwick. +Come on, brave soldiers: doubt not of the day, +And, that once gotten, doubt not of large pay. +3 KING HENRY VI + +WARWICK: +What counsel, lords? Edward from Belgia, +With hasty Germans and blunt Hollanders, +Hath pass'd in safety through the narrow seas, +And with his troops doth march amain to London; +And many giddy people flock to him. + +KING HENRY VI: +Let's levy men, and beat him back again. + +CLARENCE: +A little fire is quickly trodden out; +Which, being suffer'd, rivers cannot quench. + +WARWICK: +In Warwickshire I have true-hearted friends, +Not mutinous in peace, yet bold in war; +Those will I muster up: and thou, son Clarence, +Shalt stir up in Suffolk, Norfolk, and in Kent, +The knights and gentlemen to come with thee: +Thou, brother Montague, in Buckingham, +Northampton and in Leicestershire, shalt find +Men well inclined to hear what thou command'st: +And thou, brave Oxford, wondrous well beloved, +In Oxfordshire shalt muster up thy friends. +My sovereign, with the loving citizens, +Like to his island girt in with the ocean, +Or modest Dian circled with her nymphs, +Shall rest in London till we come to him. +Fair lords, take leave and stand not to reply. +Farewell, my sovereign. + +KING HENRY VI: +Farewell, my Hector, and my Troy's true hope. + +CLARENCE: +In sign of truth, I kiss your highness' hand. + +KING HENRY VI: +Well-minded Clarence, be thou fortunate! + +MONTAGUE: +Comfort, my lord; and so I take my leave. + +OXFORD: +And thus I seal my truth, and bid adieu. + +KING HENRY VI: +Sweet Oxford, and my loving Montague, +And all at once, once more a happy farewell. + +WARWICK: +Farewell, sweet lords: let's meet at Coventry. + +KING HENRY VI: +Here at the palace I will rest awhile. +Cousin of Exeter, what thinks your lordship? +Methinks the power that Edward hath in field +Should not be able to encounter mine. + +EXETER: +The doubt is that he will seduce the rest. + +KING HENRY VI: +That's not my fear; my meed hath got me fame: +I have not stopp'd mine ears to their demands, +Nor posted off their suits with slow delays; +My pity hath been balm to heal their wounds, +My mildness hath allay'd their swelling griefs, +My mercy dried their water-flowing tears; +I have not been desirous of their wealth, +Nor much oppress'd them with great subsidies. +Nor forward of revenge, though they much err'd: +Then why should they love Edward more than me? +No, Exeter, these graces challenge grace: +And when the lion fawns upon the lamb, +The lamb will never cease to follow him. + +EXETER: +Hark, hark, my lord! what shouts are these? + +KING EDWARD IV: +Seize on the shame-faced Henry, bear him hence; +And once again proclaim us King of England. +You are the fount that makes small brooks to flow: +Now stops thy spring; my sea sha$l suck them dry, +And swell so much the higher by their ebb. +Hence with him to the Tower; let him not speak. +And, lords, towards Coventry bend we our course +Where peremptory Warwick now remains: +The sun shines hot; and, if we use delay, +Cold biting winter mars our hoped-for hay. + +GLOUCESTER: +Away betimes, before his forces join, +And take the great-grown traitor unawares: +Brave warriors, march amain towards Coventry. +3 KING HENRY VI + +WARWICK: +Where is the post that came from valiant Oxford? +How far hence is thy lord, mine honest fellow? + +First Messenger: +By this at Dunsmore, marching hitherward. + +WARWICK: +How far off is our brother Montague? +Where is the post that came from Montague? + +Second Messenger: +By this at Daintry, with a puissant troop. + +WARWICK: +Say, Somerville, what says my loving son? +And, by thy guess, how nigh is Clarence now? + +SOMERSET: +At Southam I did leave him with his forces, +And do expect him here some two hours hence. + +WARWICK: +Then Clarence is at hand, I hear his drum. + +SOMERSET: +It is not his, my lord; here Southam lies: +The drum your honour hears marcheth from Warwick. + +WARWICK: +Who should that be? belike, unlook'd-for friends. + +SOMERSET: +They are at hand, and you shall quickly know. + +KING EDWARD IV: +Go, trumpet, to the walls, and sound a parle. + +GLOUCESTER: +See how the surly Warwick mans the wall! + +WARWICK: +O unbid spite! is sportful Edward come? +Where slept our scouts, or how are they seduced, +That we could hear no news of his repair? + +KING EDWARD IV: +Now, Warwick, wilt thou ope the city gates, +Speak gentle words and humbly bend thy knee, +Call Edward king and at his hands beg mercy? +And he shall pardon thee these outrages. + +WARWICK: +Nay, rather, wilt thou draw thy forces hence, +Confess who set thee up and pluck'd thee own, +Call Warwick patron and be penitent? +And thou shalt still remain the Duke of York. + +GLOUCESTER: +I thought, at least, he would have said the king; +Or did he make the jest against his will? + +WARWICK: +Is not a dukedom, sir, a goodly gift? + +GLOUCESTER: +Ay, by my faith, for a poor earl to give: +I'll do thee service for so good a gift. + +WARWICK: +'Twas I that gave the kingdom to thy brother. + +KING EDWARD IV: +Why then 'tis mine, if but by Warwick's gift. + +WARWICK: +Thou art no Atlas for so great a weight: +And weakling, Warwick takes his gift again; +And Henry is my king, Warwick his subject. + +KING EDWARD IV: +But Warwick's king is Edward's prisoner: +And, gallant Warwick, do but answer this: +What is the body when the head is off? + +GLOUCESTER: +Alas, that Warwick had no more forecast, +But, whiles he thought to steal the single ten, +The king was slily finger'd from the deck! +You left poor Henry at the Bishop's palace, +And, ten to one, you'll meet him in the Tower. + +EDWARD: +'Tis even so; yet you are Warwick still. + +GLOUCESTER: +Come, Warwick, take the time; kneel down, kneel down: +Nay, when? strike now, or else the iron cools. + +WARWICK: +I had rather chop this hand off at a blow, +And with the other fling it at thy face, +Than bear so low a sail, to strike to thee. + +KING EDWARD IV: +Sail how thou canst, have wind and tide thy friend, +This hand, fast wound about thy coal-black hair +Shall, whiles thy head is warm and new cut off, +Write in the dust this sentence with thy blood, +'Wind-changing Warwick now can change no more.' + +WARWICK: +O cheerful colours! see where Oxford comes! + +OXFORD: +Oxford, Oxford, for Lancaster! + +GLOUCESTER: +The gates are open, let us enter too. + +KING EDWARD IV: +So other foes may set upon our backs. +Stand we in good array; for they no doubt +Will issue out again and bid us battle: +If not, the city being but of small defence, +We'll quickly rouse the traitors in the same. + +WARWICK: +O, welcome, Oxford! for we want thy help. + +MONTAGUE: +Montague, Montague, for Lancaster! + +GLOUCESTER: +Thou and thy brother both shall buy this treason +Even with the dearest blood your bodies bear. + +KING EDWARD IV: +The harder match'd, the greater victory: +My mind presageth happy gain and conquest. + +SOMERSET: +Somerset, Somerset, for Lancaster! + +GLOUCESTER: +Two of thy name, both Dukes of Somerset, +Have sold their lives unto the house of York; +And thou shalt be the third if this sword hold. + +WARWICK: +And lo, where George of Clarence sweeps along, +Of force enough to bid his brother battle; +With whom an upright zeal to right prevails +More than the nature of a brother's love! +Come, Clarence, come; thou wilt, if Warwick call. + +CLARENCE: +Father of Warwick, know you what this means? +Look here, I throw my infamy at thee +I will not ruinate my father's house, +Who gave his blood to lime the stones together, +And set up Lancaster. Why, trow'st thou, Warwick, +That Clarence is so harsh, so blunt, unnatural, +To bend the fatal instruments of war +Against his brother and his lawful king? +Perhaps thou wilt object my holy oath: +To keep that oath were more impiety +Than Jephthah's, when he sacrificed his daughter. +I am so sorry for my trespass made +That, to deserve well at my brother's hands, +I here proclaim myself thy mortal foe, +With resolution, wheresoe'er I meet thee-- +As I will meet thee, if thou stir abroad-- +To plague thee for thy foul misleading me. +And so, proud-hearted Warwick, I defy thee, +And to my brother turn my blushing cheeks. +Pardon me, Edward, I will make amends: +And, Richard, do not frown upon my faults, +For I will henceforth be no more unconstant. + +KING EDWARD IV: +Now welcome more, and ten times more beloved, +Than if thou never hadst deserved our hate. + +GLOUCESTER: +Welcome, good Clarence; this is brotherlike. + +WARWICK: +O passing traitor, perjured and unjust! + +KING EDWARD IV: +What, Warwick, wilt thou leave the town and fight? +Or shall we beat the stones about thine ears? + +WARWICK: +Alas, I am not coop'd here for defence! +I will away towards Barnet presently, +And bid thee battle, Edward, if thou darest. + +KING EDWARD IV: +Yes, Warwick, Edward dares, and leads the way. +Lords, to the field; Saint George and victory! +3 KING HENRY VI + +KING EDWARD IV: +So, lie thou there: die thou, and die our fear; +For Warwick was a bug that fear'd us all. +Now, Montague, sit fast; I seek for thee, +That Warwick's bones may keep thine company. + +WARWICK: +Ah, who is nigh? come to me, friend or foe, +And tell me who is victor, York or Warwick? +Why ask I that? my mangled body shows, +My blood, my want of strength, my sick heart shows. +That I must yield my body to the earth +And, by my fall, the conquest to my foe. +Thus yields the cedar to the axe's edge, +Whose arms gave shelter to the princely eagle, +Under whose shade the ramping lion slept, +Whose top-branch overpeer'd Jove's spreading tree +And kept low shrubs from winter's powerful wind. +These eyes, that now are dimm'd with death's black veil, +Have been as piercing as the mid-day sun, +To search the secret treasons of the world: +The wrinkles in my brows, now filled with blood, +Were liken'd oft to kingly sepulchres; +For who lived king, but I could dig his grave? +And who durst mine when Warwick bent his brow? +Lo, now my glory smear'd in dust and blood! +My parks, my walks, my manors that I had. +Even now forsake me, and of all my lands +Is nothing left me but my body's length. +Why, what is pomp, rule, reign, but earth and dust? +And, live we how we can, yet die we must. + +SOMERSET: +Ah, Warwick, Warwick! wert thou as we are. +We might recover all our loss again; +The queen from France hath brought a puissant power: +Even now we heard the news: ah, could'st thou fly! + +WARWICK: +Why, then I would not fly. Ah, Montague, +If thou be there, sweet brother, take my hand. +And with thy lips keep in my soul awhile! +Thou lovest me not; for, brother, if thou didst, +Thy tears would wash this cold congealed blood +That glues my lips and will not let me speak. +Come quickly, Montague, or I am dead. + +SOMERSET: +Ah, Warwick! Montague hath breathed his last; +And to the latest gasp cried out for Warwick, +And said 'Commend me to my valiant brother.' +And more he would have said, and more he spoke, +Which sounded like a clamour in a vault, +That mought not be distinguished; but at last +I well might hear, delivered with a groan, +'O, farewell, Warwick!' + +WARWICK: +Sweet rest his soul! Fly, lords, and save yourselves; +For Warwick bids you all farewell to meet in heaven. + +OXFORD: +Away, away, to meet the queen's great power! +3 KING HENRY VI + +KING EDWARD IV: +Thus far our fortune keeps an upward course, +And we are graced with wreaths of victory. +But, in the midst of this bright-shining day, +I spy a black, suspicious, threatening cloud, +That will encounter with our glorious sun, +Ere he attain his easeful western bed: +I mean, my lords, those powers that the queen +Hath raised in Gallia have arrived our coast +And, as we hear, march on to fight with us. + +CLARENCE: +A little gale will soon disperse that cloud +And blow it to the source from whence it came: +The very beams will dry those vapours up, +For every cloud engenders not a storm. + +GLOUCESTER: +The queen is valued thirty thousand strong, +And Somerset, with Oxford fled to her: +If she have time to breathe be well assured +Her faction will be full as strong as ours. + +KING EDWARD IV: +We are advertised by our loving friends +That they do hold their course toward Tewksbury: +We, having now the best at Barnet field, +Will thither straight, for willingness rids way; +And, as we march, our strength will be augmented +In every county as we go along. +Strike up the drum; cry 'Courage!' and away. +3 KING HENRY VI + +QUEEN MARGARET: +Great lords, wise men ne'er sit and wail their loss, +But cheerly seek how to redress their harms. +What though the mast be now blown overboard, +The cable broke, the holding-anchor lost, +And half our sailors swallow'd in the flood? +Yet lives our pilot still. Is't meet that he +Should leave the helm and like a fearful lad +With tearful eyes add water to the sea +And give more strength to that which hath too much, +Whiles, in his moan, the ship splits on the rock, +Which industry and courage might have saved? +Ah, what a shame! ah, what a fault were this! +Say Warwick was our anchor; what of that? +And Montague our topmost; what of him? +Our slaughter'd friends the tackles; what of these? +Why, is not Oxford here another anchor? +And Somerset another goodly mast? +The friends of France our shrouds and tacklings? +And, though unskilful, why not Ned and I +For once allow'd the skilful pilot's charge? +We will not from the helm to sit and weep, +But keep our course, though the rough wind say no, +From shelves and rocks that threaten us with wreck. +As good to chide the waves as speak them fair. +And what is Edward but ruthless sea? +What Clarence but a quicksand of deceit? +And Richard but a ragged fatal rock? +All these the enemies to our poor bark. +Say you can swim; alas, 'tis but a while! +Tread on the sand; why, there you quickly sink: +Bestride the rock; the tide will wash you off, +Or else you famish; that's a threefold death. +This speak I, lords, to let you understand, +If case some one of you would fly from us, +That there's no hoped-for mercy with the brothers +More than with ruthless waves, with sands and rocks. +Why, courage then! what cannot be avoided +'Twere childish weakness to lament or fear. + +PRINCE EDWARD: +Methinks a woman of this valiant spirit +Should, if a coward heard her speak these words, +Infuse his breast with magnanimity +And make him, naked, foil a man at arms. +I speak not this as doubting any here +For did I but suspect a fearful man +He should have leave to go away betimes, +Lest in our need he might infect another +And make him of like spirit to himself. +If any such be here--as God forbid!-- +Let him depart before we need his help. + +OXFORD: +Women and children of so high a courage, +And warriors faint! why, 'twere perpetual shame. +O brave young prince! thy famous grandfather +Doth live again in thee: long mayst thou live +To bear his image and renew his glories! + +SOMERSET: +And he that will not fight for such a hope. +Go home to bed, and like the owl by day, +If he arise, be mock'd and wonder'd at. + +QUEEN MARGARET: +Thanks, gentle Somerset; sweet Oxford, thanks. + +PRINCE EDWARD: +And take his thanks that yet hath nothing else. + +Messenger: +Prepare you, lords, for Edward is at hand. +Ready to fight; therefore be resolute. + +OXFORD: +I thought no less: it is his policy +To haste thus fast, to find us unprovided. + +SOMERSET: +But he's deceived; we are in readiness. + +QUEEN MARGARET: +This cheers my heart, to see your forwardness. + +OXFORD: +Here pitch our battle; hence we will not budge. + +KING EDWARD IV: +Brave followers, yonder stands the thorny wood, +Which, by the heavens' assistance and your strength, +Must by the roots be hewn up yet ere night. +I need not add more fuel to your fire, +For well I wot ye blaze to burn them out +Give signal to the fight, and to it, lords! + +QUEEN MARGARET: +Lords, knights, and gentlemen, what I should say +My tears gainsay; for every word I speak, +Ye see, I drink the water of mine eyes. +Therefore, no more but this: Henry, your sovereign, +Is prisoner to the foe; his state usurp'd, +His realm a slaughter-house, his subjects slain, +His statutes cancell'd and his treasure spent; +And yonder is the wolf that makes this spoil. +You fight in justice: then, in God's name, lords, +Be valiant and give signal to the fight. +3 KING HENRY VI + +KING EDWARD IV: +Now here a period of tumultuous broils. +Away with Oxford to Hames Castle straight: +For Somerset, off with his guilty head. +Go, bear them hence; I will not hear them speak. + +OXFORD: +For my part, I'll not trouble thee with words. + +SOMERSET: +Nor I, but stoop with patience to my fortune. + +QUEEN MARGARET: +So part we sadly in this troublous world, +To meet with joy in sweet Jerusalem. + +KING EDWARD IV: +Is proclamation made, that who finds Edward +Shall have a high reward, and he his life? + +GLOUCESTER: +It is: and lo, where youthful Edward comes! + +KING EDWARD IV: +Bring forth the gallant, let us hear him speak. +What! can so young a thorn begin to prick? +Edward, what satisfaction canst thou make +For bearing arms, for stirring up my subjects, +And all the trouble thou hast turn'd me to? + +PRINCE EDWARD: +Speak like a subject, proud ambitious York! +Suppose that I am now my father's mouth; +Resign thy chair, and where I stand kneel thou, +Whilst I propose the selfsame words to thee, +Which traitor, thou wouldst have me answer to. + +QUEEN MARGARET: +Ah, that thy father had been so resolved! + +GLOUCESTER: +That you might still have worn the petticoat, +And ne'er have stol'n the breech from Lancaster. + +PRINCE EDWARD: +Let AEsop fable in a winter's night; +His currish riddles sort not with this place. + +GLOUCESTER: +By heaven, brat, I'll plague ye for that word. + +QUEEN MARGARET: +Ay, thou wast born to be a plague to men. + +GLOUCESTER: +For God's sake, take away this captive scold. + +PRINCE EDWARD: +Nay, take away this scolding crookback rather. + +KING EDWARD IV: +Peace, wilful boy, or I will charm your tongue. + +CLARENCE: +Untutor'd lad, thou art too malapert. + +PRINCE EDWARD: +I know my duty; you are all undutiful: +Lascivious Edward, and thou perjured George, +And thou mis-shapen Dick, I tell ye all +I am your better, traitors as ye are: +And thou usurp'st my father's right and mine. + +KING EDWARD IV: +Take that, thou likeness of this railer here. + +GLOUCESTER: +Sprawl'st thou? take that, to end thy agony. + +CLARENCE: +And there's for twitting me with perjury. + +QUEEN MARGARET: +O, kill me too! + +GLOUCESTER: +Marry, and shall. + +KING EDWARD IV: +Hold, Richard, hold; for we have done too much. + +GLOUCESTER: +Why should she live, to fill the world with words? + +KING EDWARD IV: +What, doth she swoon? use means for her recovery. + +GLOUCESTER: +Clarence, excuse me to the king my brother; +I'll hence to London on a serious matter: +Ere ye come there, be sure to hear some news. + +CLARENCE: +What? what? + +GLOUCESTER: +The Tower, the Tower. + +QUEEN MARGARET: +O Ned, sweet Ned! speak to thy mother, boy! +Canst thou not speak? O traitors! murderers! +They that stabb'd Caesar shed no blood at all, +Did not offend, nor were not worthy blame, +If this foul deed were by to equal it: +He was a man; this, in respect, a child: +And men ne'er spend their fury on a child. +What's worse than murderer, that I may name it? +No, no, my heart will burst, and if I speak: +And I will speak, that so my heart may burst. +Butchers and villains! bloody cannibals! +How sweet a plant have you untimely cropp'd! +You have no children, butchers! if you had, +The thought of them would have stirr'd up remorse: +But if you ever chance to have a child, +Look in his youth to have him so cut off +As, deathmen, you have rid this sweet young prince! + +KING EDWARD IV: +Away with her; go, bear her hence perforce. + +QUEEN MARGARET: +Nay, never bear me hence, dispatch me here, +Here sheathe thy sword, I'll pardon thee my death: +What, wilt thou not? then, Clarence, do it thou. + +CLARENCE: +By heaven, I will not do thee so much ease. + +QUEEN MARGARET: +Good Clarence, do; sweet Clarence, do thou do it. + +CLARENCE: +Didst thou not hear me swear I would not do it? + +QUEEN MARGARET: +Ay, but thou usest to forswear thyself: +'Twas sin before, but now 'tis charity. +What, wilt thou not? Where is that devil's butcher, +Hard-favour'd Richard? Richard, where art thou? +Thou art not here: murder is thy alms-deed; +Petitioners for blood thou ne'er put'st back. + +KING EDWARD IV: +Away, I say; I charge ye, bear her hence. + +QUEEN MARGARET: +So come to you and yours, as to this Prince! + +KING EDWARD IV: +Where's Richard gone? + +CLARENCE: +To London, all in post; and, as I guess, +To make a bloody supper in the Tower. + +KING EDWARD IV: +He's sudden, if a thing comes in his head. +Now march we hence: discharge the common sort +With pay and thanks, and let's away to London +And see our gentle queen how well she fares: +By this, I hope, she hath a son for me. +3 KING HENRY VI + +GLOUCESTER: +Good day, my lord. What, at your book so hard? + +KING HENRY VI: +Ay, my good lord:--my lord, I should say rather; +'Tis sin to flatter; 'good' was little better: +'Good Gloucester' and 'good devil' were alike, +And both preposterous; therefore, not 'good lord.' + +GLOUCESTER: +Sirrah, leave us to ourselves: we must confer. + +KING HENRY VI: +So flies the reckless shepherd from the wolf; +So first the harmless sheep doth yield his fleece +And next his throat unto the butcher's knife. +What scene of death hath Roscius now to act? + +GLOUCESTER: +Suspicion always haunts the guilty mind; +The thief doth fear each bush an officer. + +KING HENRY VI: +The bird that hath been limed in a bush, +With trembling wings misdoubteth every bush; +And I, the hapless male to one sweet bird, +Have now the fatal object in my eye +Where my poor young was limed, was caught and kill'd. + +GLOUCESTER: +Why, what a peevish fool was that of Crete, +That taught his son the office of a fowl! +An yet, for all his wings, the fool was drown'd. + +KING HENRY VI: +I, Daedalus; my poor boy, Icarus; +Thy father, Minos, that denied our course; +The sun that sear'd the wings of my sweet boy +Thy brother Edward, and thyself the sea +Whose envious gulf did swallow up his life. +Ah, kill me with thy weapon, not with words! +My breast can better brook thy dagger's point +Than can my ears that tragic history. +But wherefore dost thou come? is't for my life? + +GLOUCESTER: +Think'st thou I am an executioner? + +KING HENRY VI: +A persecutor, I am sure, thou art: +If murdering innocents be executing, +Why, then thou art an executioner. + +GLOUCESTER: +Thy son I kill'd for his presumption. + +KING HENRY VI: +Hadst thou been kill'd when first thou didst presume, +Thou hadst not lived to kill a son of mine. +And thus I prophesy, that many a thousand, +Which now mistrust no parcel of my fear, +And many an old man's sigh and many a widow's, +And many an orphan's water-standing eye-- +Men for their sons, wives for their husbands, +And orphans for their parents timeless death-- +Shall rue the hour that ever thou wast born. +The owl shriek'd at thy birth,--an evil sign; +The night-crow cried, aboding luckless time; +Dogs howl'd, and hideous tempest shook down trees; +The raven rook'd her on the chimney's top, +And chattering pies in dismal discords sung. +Thy mother felt more than a mother's pain, +And, yet brought forth less than a mother's hope, +To wit, an indigested and deformed lump, +Not like the fruit of such a goodly tree. +Teeth hadst thou in thy head when thou wast born, +To signify thou camest to bite the world: +And, if the rest be true which I have heard, +Thou camest-- + +GLOUCESTER: +I'll hear no more: die, prophet in thy speech: +For this amongst the rest, was I ordain'd. + +KING HENRY VI: +Ay, and for much more slaughter after this. +God forgive my sins, and pardon thee! + +GLOUCESTER: +What, will the aspiring blood of Lancaster +Sink in the ground? I thought it would have mounted. +See how my sword weeps for the poor king's death! +O, may such purple tears be alway shed +From those that wish the downfall of our house! +If any spark of life be yet remaining, +Down, down to hell; and say I sent thee thither: +I, that have neither pity, love, nor fear. +Indeed, 'tis true that Henry told me of; +For I have often heard my mother say +I came into the world with my legs forward: +Had I not reason, think ye, to make haste, +And seek their ruin that usurp'd our right? +The midwife wonder'd and the women cried +'O, Jesus bless us, he is born with teeth!' +And so I was; which plainly signified +That I should snarl and bite and play the dog. +Then, since the heavens have shaped my body so, +Let hell make crook'd my mind to answer it. +I have no brother, I am like no brother; +And this word 'love,' which graybeards call divine, +Be resident in men like one another +And not in me: I am myself alone. +Clarence, beware; thou keep'st me from the light: +But I will sort a pitchy day for thee; +For I will buz abroad such prophecies +That Edward shall be fearful of his life, +And then, to purge his fear, I'll be thy death. +King Henry and the prince his son are gone: +Clarence, thy turn is next, and then the rest, +Counting myself but bad till I be best. +I'll throw thy body in another room +And triumph, Henry, in thy day of doom. +3 KING HENRY VI + +KING EDWARD IV: +Once more we sit in England's royal throne, +Re-purchased with the blood of enemies. +What valiant foemen, like to autumn's corn, +Have we mow'd down, in tops of all their pride! +Three Dukes of Somerset, threefold renown'd +For hardy and undoubted champions; +Two Cliffords, as the father and the son, +And two Northumberlands; two braver men +Ne'er spurr'd their coursers at the trumpet's sound; +With them, the two brave bears, Warwick and Montague, +That in their chains fetter'd the kingly lion +And made the forest tremble when they roar'd. +Thus have we swept suspicion from our seat +And made our footstool of security. +Come hither, Bess, and let me kiss my boy. +Young Ned, for thee, thine uncles and myself +Have in our armours watch'd the winter's night, +Went all afoot in summer's scalding heat, +That thou mightst repossess the crown in peace; +And of our labours thou shalt reap the gain. + +GLOUCESTER: + +KING EDWARD IV: +Clarence and Gloucester, love my lovely queen; +And kiss your princely nephew, brothers both. + +CLARENCE: +The duty that I owe unto your majesty +I seal upon the lips of this sweet babe. + +QUEEN ELIZABETH: +Thanks, noble Clarence; worthy brother, thanks. + +GLOUCESTER: +And, that I love the tree from whence thou sprang'st, +Witness the loving kiss I give the fruit. + +KING EDWARD IV: +Now am I seated as my soul delights, +Having my country's peace and brothers' loves. + +CLARENCE: +What will your grace have done with Margaret? +Reignier, her father, to the king of France +Hath pawn'd the Sicils and Jerusalem, +And hither have they sent it for her ransom. + +KING EDWARD IV: +Away with her, and waft her hence to France. +And now what rests but that we spend the time +With stately triumphs, mirthful comic shows, +Such as befits the pleasure of the court? +Sound drums and trumpets! farewell sour annoy! +For here, I hope, begins our lasting joy. + +ARCHIDAMUS: +If you shall chance, Camillo, to visit Bohemia, on +the like occasion whereon my services are now on +foot, you shall see, as I have said, great +difference betwixt our Bohemia and your Sicilia. + +CAMILLO: +I think, this coming summer, the King of Sicilia +means to pay Bohemia the visitation which he justly owes him. + +ARCHIDAMUS: +Wherein our entertainment shall shame us we will be +justified in our loves; for indeed-- + +CAMILLO: +Beseech you,-- + +ARCHIDAMUS: +Verily, I speak it in the freedom of my knowledge: +we cannot with such magnificence--in so rare--I know +not what to say. We will give you sleepy drinks, +that your senses, unintelligent of our insufficience, +may, though they cannot praise us, as little accuse +us. + +CAMILLO: +You pay a great deal too dear for what's given freely. + +ARCHIDAMUS: +Believe me, I speak as my understanding instructs me +and as mine honesty puts it to utterance. + +CAMILLO: +Sicilia cannot show himself over-kind to Bohemia. +They were trained together in their childhoods; and +there rooted betwixt them then such an affection, +which cannot choose but branch now. Since their +more mature dignities and royal necessities made +separation of their society, their encounters, +though not personal, have been royally attorneyed +with interchange of gifts, letters, loving +embassies; that they have seemed to be together, +though absent, shook hands, as over a vast, and +embraced, as it were, from the ends of opposed +winds. The heavens continue their loves! + +ARCHIDAMUS: +I think there is not in the world either malice or +matter to alter it. You have an unspeakable +comfort of your young prince Mamillius: it is a +gentleman of the greatest promise that ever came +into my note. + +CAMILLO: +I very well agree with you in the hopes of him: it +is a gallant child; one that indeed physics the +subject, makes old hearts fresh: they that went on +crutches ere he was born desire yet their life to +see him a man. + +ARCHIDAMUS: +Would they else be content to die? + +CAMILLO: +Yes; if there were no other excuse why they should +desire to live. + +ARCHIDAMUS: +If the king had no son, they would desire to live +on crutches till he had one. + +POLIXENES: +Nine changes of the watery star hath been +The shepherd's note since we have left our throne +Without a burthen: time as long again +Would be find up, my brother, with our thanks; +And yet we should, for perpetuity, +Go hence in debt: and therefore, like a cipher, +Yet standing in rich place, I multiply +With one 'We thank you' many thousands moe +That go before it. + +LEONTES: +Stay your thanks a while; +And pay them when you part. + +POLIXENES: +Sir, that's to-morrow. +I am question'd by my fears, of what may chance +Or breed upon our absence; that may blow +No sneaping winds at home, to make us say +'This is put forth too truly:' besides, I have stay'd +To tire your royalty. + +LEONTES: +We are tougher, brother, +Than you can put us to't. + +POLIXENES: +No longer stay. + +LEONTES: +One seven-night longer. + +POLIXENES: +Very sooth, to-morrow. + +LEONTES: +We'll part the time between's then; and in that +I'll no gainsaying. + +POLIXENES: +Press me not, beseech you, so. +There is no tongue that moves, none, none i' the world, +So soon as yours could win me: so it should now, +Were there necessity in your request, although +'Twere needful I denied it. My affairs +Do even drag me homeward: which to hinder +Were in your love a whip to me; my stay +To you a charge and trouble: to save both, +Farewell, our brother. + +LEONTES: +Tongue-tied, our queen? +speak you. + +HERMIONE: +I had thought, sir, to have held my peace until +You have drawn oaths from him not to stay. You, sir, +Charge him too coldly. Tell him, you are sure +All in Bohemia's well; this satisfaction +The by-gone day proclaim'd: say this to him, +He's beat from his best ward. + +LEONTES: +Well said, Hermione. + +HERMIONE: +To tell, he longs to see his son, were strong: +But let him say so then, and let him go; +But let him swear so, and he shall not stay, +We'll thwack him hence with distaffs. +Yet of your royal presence I'll adventure +The borrow of a week. When at Bohemia +You take my lord, I'll give him my commission +To let him there a month behind the gest +Prefix'd for's parting: yet, good deed, Leontes, +I love thee not a jar o' the clock behind +What lady-she her lord. You'll stay? + +POLIXENES: +No, madam. + +HERMIONE: +Nay, but you will? + +POLIXENES: +I may not, verily. + +HERMIONE: +Verily! +You put me off with limber vows; but I, +Though you would seek to unsphere the +stars with oaths, +Should yet say 'Sir, no going.' Verily, +You shall not go: a lady's 'Verily' 's +As potent as a lord's. Will you go yet? +Force me to keep you as a prisoner, +Not like a guest; so you shall pay your fees +When you depart, and save your thanks. How say you? +My prisoner? or my guest? by your dread 'Verily,' +One of them you shall be. + +POLIXENES: +Your guest, then, madam: +To be your prisoner should import offending; +Which is for me less easy to commit +Than you to punish. + +HERMIONE: +Not your gaoler, then, +But your kind hostess. Come, I'll question you +Of my lord's tricks and yours when you were boys: +You were pretty lordings then? + +POLIXENES: +We were, fair queen, +Two lads that thought there was no more behind +But such a day to-morrow as to-day, +And to be boy eternal. + +HERMIONE: +Was not my lord +The verier wag o' the two? + +POLIXENES: +We were as twinn'd lambs that did frisk i' the sun, +And bleat the one at the other: what we changed +Was innocence for innocence; we knew not +The doctrine of ill-doing, nor dream'd +That any did. Had we pursued that life, +And our weak spirits ne'er been higher rear'd +With stronger blood, we should have answer'd heaven +Boldly 'not guilty;' the imposition clear'd +Hereditary ours. + +HERMIONE: +By this we gather +You have tripp'd since. + +POLIXENES: +O my most sacred lady! +Temptations have since then been born to's; for +In those unfledged days was my wife a girl; +Your precious self had then not cross'd the eyes +Of my young play-fellow. + +HERMIONE: +Grace to boot! +Of this make no conclusion, lest you say +Your queen and I are devils: yet go on; +The offences we have made you do we'll answer, +If you first sinn'd with us and that with us +You did continue fault and that you slipp'd not +With any but with us. + +LEONTES: +Is he won yet? + +HERMIONE: +He'll stay my lord. + +LEONTES: +At my request he would not. +Hermione, my dearest, thou never spokest +To better purpose. + +HERMIONE: +Never? + +LEONTES: +Never, but once. + +HERMIONE: +What! have I twice said well? when was't before? +I prithee tell me; cram's with praise, and make's +As fat as tame things: one good deed dying tongueless +Slaughters a thousand waiting upon that. +Our praises are our wages: you may ride's +With one soft kiss a thousand furlongs ere +With spur we beat an acre. But to the goal: +My last good deed was to entreat his stay: +What was my first? it has an elder sister, +Or I mistake you: O, would her name were Grace! +But once before I spoke to the purpose: when? +Nay, let me have't; I long. + +LEONTES: +Why, that was when +Three crabbed months had sour'd themselves to death, +Ere I could make thee open thy white hand +And clap thyself my love: then didst thou utter +'I am yours for ever.' + +HERMIONE: +'Tis grace indeed. +Why, lo you now, I have spoke to the purpose twice: +The one for ever earn'd a royal husband; +The other for some while a friend. + +LEONTES: + +MAMILLIUS: +Ay, my good lord. + +LEONTES: +I' fecks! +Why, that's my bawcock. What, hast +smutch'd thy nose? +They say it is a copy out of mine. Come, captain, +We must be neat; not neat, but cleanly, captain: +And yet the steer, the heifer and the calf +Are all call'd neat.--Still virginalling +Upon his palm!--How now, you wanton calf! +Art thou my calf? + +MAMILLIUS: +Yes, if you will, my lord. + +LEONTES: +Thou want'st a rough pash and the shoots that I have, +To be full like me: yet they say we are +Almost as like as eggs; women say so, +That will say anything but were they false +As o'er-dyed blacks, as wind, as waters, false +As dice are to be wish'd by one that fixes +No bourn 'twixt his and mine, yet were it true +To say this boy were like me. Come, sir page, +Look on me with your welkin eye: sweet villain! +Most dear'st! my collop! Can thy dam?--may't be?-- +Affection! thy intention stabs the centre: +Thou dost make possible things not so held, +Communicatest with dreams;--how can this be?-- +With what's unreal thou coactive art, +And fellow'st nothing: then 'tis very credent +Thou mayst co-join with something; and thou dost, +And that beyond commission, and I find it, +And that to the infection of my brains +And hardening of my brows. + +POLIXENES: +What means Sicilia? + +HERMIONE: +He something seems unsettled. + +POLIXENES: +How, my lord! +What cheer? how is't with you, best brother? + +HERMIONE: +You look as if you held a brow of much distraction +Are you moved, my lord? + +LEONTES: +No, in good earnest. +How sometimes nature will betray its folly, +Its tenderness, and make itself a pastime +To harder bosoms! Looking on the lines +Of my boy's face, methoughts I did recoil +Twenty-three years, and saw myself unbreech'd, +In my green velvet coat, my dagger muzzled, +Lest it should bite its master, and so prove, +As ornaments oft do, too dangerous: +How like, methought, I then was to this kernel, +This squash, this gentleman. Mine honest friend, +Will you take eggs for money? + +MAMILLIUS: +No, my lord, I'll fight. + +LEONTES: +You will! why, happy man be's dole! My brother, +Are you so fond of your young prince as we +Do seem to be of ours? + +POLIXENES: +If at home, sir, +He's all my exercise, my mirth, my matter, +Now my sworn friend and then mine enemy, +My parasite, my soldier, statesman, all: +He makes a July's day short as December, +And with his varying childness cures in me +Thoughts that would thick my blood. + +LEONTES: +So stands this squire +Officed with me: we two will walk, my lord, +And leave you to your graver steps. Hermione, +How thou lovest us, show in our brother's welcome; +Let what is dear in Sicily be cheap: +Next to thyself and my young rover, he's +Apparent to my heart. + +HERMIONE: +If you would seek us, +We are yours i' the garden: shall's attend you there? + +LEONTES: +To your own bents dispose you: you'll be found, +Be you beneath the sky. +I am angling now, +Though you perceive me not how I give line. +Go to, go to! +How she holds up the neb, the bill to him! +And arms her with the boldness of a wife +To her allowing husband! +Gone already! +Inch-thick, knee-deep, o'er head and +ears a fork'd one! +Go, play, boy, play: thy mother plays, and I +Play too, but so disgraced a part, whose issue +Will hiss me to my grave: contempt and clamour +Will be my knell. Go, play, boy, play. +There have been, +Or I am much deceived, cuckolds ere now; +And many a man there is, even at this present, +Now while I speak this, holds his wife by the arm, +That little thinks she has been sluiced in's absence +And his pond fish'd by his next neighbour, by +Sir Smile, his neighbour: nay, there's comfort in't +Whiles other men have gates and those gates open'd, +As mine, against their will. Should all despair +That have revolted wives, the tenth of mankind +Would hang themselves. Physic for't there is none; +It is a bawdy planet, that will strike +Where 'tis predominant; and 'tis powerful, think it, +From east, west, north and south: be it concluded, +No barricado for a belly; know't; +It will let in and out the enemy +With bag and baggage: many thousand on's +Have the disease, and feel't not. How now, boy! + +MAMILLIUS: +I am like you, they say. + +LEONTES: +Why that's some comfort. What, Camillo there? + +CAMILLO: +Ay, my good lord. + +LEONTES: +Go play, Mamillius; thou'rt an honest man. +Camillo, this great sir will yet stay longer. + +CAMILLO: +You had much ado to make his anchor hold: +When you cast out, it still came home. + +LEONTES: +Didst note it? + +CAMILLO: +He would not stay at your petitions: made +His business more material. + +LEONTES: +Didst perceive it? +They're here with me already, whispering, rounding +'Sicilia is a so-forth:' 'tis far gone, +When I shall gust it last. How came't, Camillo, +That he did stay? + +CAMILLO: +At the good queen's entreaty. + +LEONTES: +At the queen's be't: 'good' should be pertinent +But, so it is, it is not. Was this taken +By any understanding pate but thine? +For thy conceit is soaking, will draw in +More than the common blocks: not noted, is't, +But of the finer natures? by some severals +Of head-piece extraordinary? lower messes +Perchance are to this business purblind? say. + +CAMILLO: +Business, my lord! I think most understand +Bohemia stays here longer. + +LEONTES: +Ha! + +CAMILLO: +Stays here longer. + +LEONTES: +Ay, but why? + +CAMILLO: +To satisfy your highness and the entreaties +Of our most gracious mistress. + +LEONTES: +Satisfy! +The entreaties of your mistress! satisfy! +Let that suffice. I have trusted thee, Camillo, +With all the nearest things to my heart, as well +My chamber-councils, wherein, priest-like, thou +Hast cleansed my bosom, I from thee departed +Thy penitent reform'd: but we have been +Deceived in thy integrity, deceived +In that which seems so. + +CAMILLO: +Be it forbid, my lord! + +LEONTES: +To bide upon't, thou art not honest, or, +If thou inclinest that way, thou art a coward, +Which hoxes honesty behind, restraining +From course required; or else thou must be counted +A servant grafted in my serious trust +And therein negligent; or else a fool +That seest a game play'd home, the rich stake drawn, +And takest it all for jest. + +CAMILLO: +My gracious lord, +I may be negligent, foolish and fearful; +In every one of these no man is free, +But that his negligence, his folly, fear, +Among the infinite doings of the world, +Sometime puts forth. In your affairs, my lord, +If ever I were wilful-negligent, +It was my folly; if industriously +I play'd the fool, it was my negligence, +Not weighing well the end; if ever fearful +To do a thing, where I the issue doubted, +Where of the execution did cry out +Against the non-performance, 'twas a fear +Which oft infects the wisest: these, my lord, +Are such allow'd infirmities that honesty +Is never free of. But, beseech your grace, +Be plainer with me; let me know my trespass +By its own visage: if I then deny it, +'Tis none of mine. + +LEONTES: +Ha' not you seen, Camillo,-- +But that's past doubt, you have, or your eye-glass +Is thicker than a cuckold's horn,--or heard,-- +For to a vision so apparent rumour +Cannot be mute,--or thought,--for cogitation +Resides not in that man that does not think,-- +My wife is slippery? If thou wilt confess, +Or else be impudently negative, +To have nor eyes nor ears nor thought, then say +My wife's a hobby-horse, deserves a name +As rank as any flax-wench that puts to +Before her troth-plight: say't and justify't. + +CAMILLO: +I would not be a stander-by to hear +My sovereign mistress clouded so, without +My present vengeance taken: 'shrew my heart, +You never spoke what did become you less +Than this; which to reiterate were sin +As deep as that, though true. + +LEONTES: +Is whispering nothing? +Is leaning cheek to cheek? is meeting noses? +Kissing with inside lip? stopping the career +Of laughing with a sigh?--a note infallible +Of breaking honesty--horsing foot on foot? +Skulking in corners? wishing clocks more swift? +Hours, minutes? noon, midnight? and all eyes +Blind with the pin and web but theirs, theirs only, +That would unseen be wicked? is this nothing? +Why, then the world and all that's in't is nothing; +The covering sky is nothing; Bohemia nothing; +My wife is nothing; nor nothing have these nothings, +If this be nothing. + +CAMILLO: +Good my lord, be cured +Of this diseased opinion, and betimes; +For 'tis most dangerous. + +LEONTES: +Say it be, 'tis true. + +CAMILLO: +No, no, my lord. + +LEONTES: +It is; you lie, you lie: +I say thou liest, Camillo, and I hate thee, +Pronounce thee a gross lout, a mindless slave, +Or else a hovering temporizer, that +Canst with thine eyes at once see good and evil, +Inclining to them both: were my wife's liver +Infected as her life, she would not live +The running of one glass. + +CAMILLO: +Who does infect her? + +LEONTES: +Why, he that wears her like a medal, hanging +About his neck, Bohemia: who, if I +Had servants true about me, that bare eyes +To see alike mine honour as their profits, +Their own particular thrifts, they would do that +Which should undo more doing: ay, and thou, +His cupbearer,--whom I from meaner form +Have benched and reared to worship, who mayst see +Plainly as heaven sees earth and earth sees heaven, +How I am galled,--mightst bespice a cup, +To give mine enemy a lasting wink; +Which draught to me were cordial. + +CAMILLO: +Sir, my lord, +I could do this, and that with no rash potion, +But with a lingering dram that should not work +Maliciously like poison: but I cannot +Believe this crack to be in my dread mistress, +So sovereignly being honourable. +I have loved thee,-- + +LEONTES: +Make that thy question, and go rot! +Dost think I am so muddy, so unsettled, +To appoint myself in this vexation, sully +The purity and whiteness of my sheets, +Which to preserve is sleep, which being spotted +Is goads, thorns, nettles, tails of wasps, +Give scandal to the blood o' the prince my son, +Who I do think is mine and love as mine, +Without ripe moving to't? Would I do this? +Could man so blench? + +CAMILLO: +I must believe you, sir: +I do; and will fetch off Bohemia for't; +Provided that, when he's removed, your highness +Will take again your queen as yours at first, +Even for your son's sake; and thereby for sealing +The injury of tongues in courts and kingdoms +Known and allied to yours. + +LEONTES: +Thou dost advise me +Even so as I mine own course have set down: +I'll give no blemish to her honour, none. + +CAMILLO: +My lord, +Go then; and with a countenance as clear +As friendship wears at feasts, keep with Bohemia +And with your queen. I am his cupbearer: +If from me he have wholesome beverage, +Account me not your servant. + +LEONTES: +This is all: +Do't and thou hast the one half of my heart; +Do't not, thou split'st thine own. + +CAMILLO: +I'll do't, my lord. + +LEONTES: +I will seem friendly, as thou hast advised me. + +CAMILLO: +O miserable lady! But, for me, +What case stand I in? I must be the poisoner +Of good Polixenes; and my ground to do't +Is the obedience to a master, one +Who in rebellion with himself will have +All that are his so too. To do this deed, +Promotion follows. If I could find example +Of thousands that had struck anointed kings +And flourish'd after, I'ld not do't; but since +Nor brass nor stone nor parchment bears not one, +Let villany itself forswear't. I must +Forsake the court: to do't, or no, is certain +To me a break-neck. Happy star, reign now! +Here comes Bohemia. + +POLIXENES: +This is strange: methinks +My favour here begins to warp. Not speak? +Good day, Camillo. + +CAMILLO: +Hail, most royal sir! + +POLIXENES: +What is the news i' the court? + +CAMILLO: +None rare, my lord. + +POLIXENES: +The king hath on him such a countenance +As he had lost some province and a region +Loved as he loves himself: even now I met him +With customary compliment; when he, +Wafting his eyes to the contrary and falling +A lip of much contempt, speeds from me and +So leaves me to consider what is breeding +That changeth thus his manners. + +CAMILLO: +I dare not know, my lord. + +POLIXENES: +How! dare not! do not. Do you know, and dare not? +Be intelligent to me: 'tis thereabouts; +For, to yourself, what you do know, you must. +And cannot say, you dare not. Good Camillo, +Your changed complexions are to me a mirror +Which shows me mine changed too; for I must be +A party in this alteration, finding +Myself thus alter'd with 't. + +CAMILLO: +There is a sickness +Which puts some of us in distemper, but +I cannot name the disease; and it is caught +Of you that yet are well. + +POLIXENES: +How! caught of me! +Make me not sighted like the basilisk: +I have look'd on thousands, who have sped the better +By my regard, but kill'd none so. Camillo,-- +As you are certainly a gentleman, thereto +Clerk-like experienced, which no less adorns +Our gentry than our parents' noble names, +In whose success we are gentle,--I beseech you, +If you know aught which does behove my knowledge +Thereof to be inform'd, imprison't not +In ignorant concealment. + +CAMILLO: +I may not answer. + +POLIXENES: +A sickness caught of me, and yet I well! +I must be answer'd. Dost thou hear, Camillo, +I conjure thee, by all the parts of man +Which honour does acknowledge, whereof the least +Is not this suit of mine, that thou declare +What incidency thou dost guess of harm +Is creeping toward me; how far off, how near; +Which way to be prevented, if to be; +If not, how best to bear it. + +CAMILLO: +Sir, I will tell you; +Since I am charged in honour and by him +That I think honourable: therefore mark my counsel, +Which must be even as swiftly follow'd as +I mean to utter it, or both yourself and me +Cry lost, and so good night! + +POLIXENES: +On, good Camillo. + +CAMILLO: +I am appointed him to murder you. + +POLIXENES: +By whom, Camillo? + +CAMILLO: +By the king. + +POLIXENES: +For what? + +CAMILLO: +He thinks, nay, with all confidence he swears, +As he had seen't or been an instrument +To vice you to't, that you have touch'd his queen +Forbiddenly. + +POLIXENES: +O, then my best blood turn +To an infected jelly and my name +Be yoked with his that did betray the Best! +Turn then my freshest reputation to +A savour that may strike the dullest nostril +Where I arrive, and my approach be shunn'd, +Nay, hated too, worse than the great'st infection +That e'er was heard or read! + +CAMILLO: +Swear his thought over +By each particular star in heaven and +By all their influences, you may as well +Forbid the sea for to obey the moon +As or by oath remove or counsel shake +The fabric of his folly, whose foundation +Is piled upon his faith and will continue +The standing of his body. + +POLIXENES: +How should this grow? + +CAMILLO: +I know not: but I am sure 'tis safer to +Avoid what's grown than question how 'tis born. +If therefore you dare trust my honesty, +That lies enclosed in this trunk which you +Shall bear along impawn'd, away to-night! +Your followers I will whisper to the business, +And will by twos and threes at several posterns +Clear them o' the city. For myself, I'll put +My fortunes to your service, which are here +By this discovery lost. Be not uncertain; +For, by the honour of my parents, I +Have utter'd truth: which if you seek to prove, +I dare not stand by; nor shall you be safer +Than one condemn'd by the king's own mouth, thereon +His execution sworn. + +POLIXENES: +I do believe thee: +I saw his heart in 's face. Give me thy hand: +Be pilot to me and thy places shall +Still neighbour mine. My ships are ready and +My people did expect my hence departure +Two days ago. This jealousy +Is for a precious creature: as she's rare, +Must it be great, and as his person's mighty, +Must it be violent, and as he does conceive +He is dishonour'd by a man which ever +Profess'd to him, why, his revenges must +In that be made more bitter. Fear o'ershades me: +Good expedition be my friend, and comfort +The gracious queen, part of his theme, but nothing +Of his ill-ta'en suspicion! Come, Camillo; +I will respect thee as a father if +Thou bear'st my life off hence: let us avoid. + +CAMILLO: +It is in mine authority to command +The keys of all the posterns: please your highness +To take the urgent hour. Come, sir, away. + +HERMIONE: +Take the boy to you: he so troubles me, +'Tis past enduring. + +First Lady: +Come, my gracious lord, +Shall I be your playfellow? + +MAMILLIUS: +No, I'll none of you. + +First Lady: +Why, my sweet lord? + +MAMILLIUS: +You'll kiss me hard and speak to me as if +I were a baby still. I love you better. + +Second Lady: +And why so, my lord? + +MAMILLIUS: +Not for because +Your brows are blacker; yet black brows, they say, +Become some women best, so that there be not +Too much hair there, but in a semicircle +Or a half-moon made with a pen. + +Second Lady: +Who taught you this? + +MAMILLIUS: +I learnt it out of women's faces. Pray now +What colour are your eyebrows? + +First Lady: +Blue, my lord. + +MAMILLIUS: +Nay, that's a mock: I have seen a lady's nose +That has been blue, but not her eyebrows. + +First Lady: +Hark ye; +The queen your mother rounds apace: we shall +Present our services to a fine new prince +One of these days; and then you'ld wanton with us, +If we would have you. + +Second Lady: +She is spread of late +Into a goodly bulk: good time encounter her! + +HERMIONE: +What wisdom stirs amongst you? Come, sir, now +I am for you again: pray you, sit by us, +And tell 's a tale. + +MAMILLIUS: +Merry or sad shall't be? + +HERMIONE: +As merry as you will. + +MAMILLIUS: +A sad tale's best for winter: I have one +Of sprites and goblins. + +HERMIONE: +Let's have that, good sir. +Come on, sit down: come on, and do your best +To fright me with your sprites; you're powerful at it. + +MAMILLIUS: +There was a man-- + +HERMIONE: +Nay, come, sit down; then on. + +MAMILLIUS: +Dwelt by a churchyard: I will tell it softly; +Yond crickets shall not hear it. + +HERMIONE: +Come on, then, +And give't me in mine ear. + +LEONTES: +Was he met there? his train? Camillo with him? + +First Lord: +Behind the tuft of pines I met them; never +Saw I men scour so on their way: I eyed them +Even to their ships. + +LEONTES: +How blest am I +In my just censure, in my true opinion! +Alack, for lesser knowledge! how accursed +In being so blest! There may be in the cup +A spider steep'd, and one may drink, depart, +And yet partake no venom, for his knowledge +Is not infected: but if one present +The abhorr'd ingredient to his eye, make known +How he hath drunk, he cracks his gorge, his sides, +With violent hefts. I have drunk, +and seen the spider. +Camillo was his help in this, his pander: +There is a plot against my life, my crown; +All's true that is mistrusted: that false villain +Whom I employ'd was pre-employ'd by him: +He has discover'd my design, and I +Remain a pinch'd thing; yea, a very trick +For them to play at will. How came the posterns +So easily open? + +First Lord: +By his great authority; +Which often hath no less prevail'd than so +On your command. + +LEONTES: +I know't too well. +Give me the boy: I am glad you did not nurse him: +Though he does bear some signs of me, yet you +Have too much blood in him. + +HERMIONE: +What is this? sport? + +LEONTES: +Bear the boy hence; he shall not come about her; +Away with him! and let her sport herself +With that she's big with; for 'tis Polixenes +Has made thee swell thus. + +HERMIONE: +But I'ld say he had not, +And I'll be sworn you would believe my saying, +Howe'er you lean to the nayward. + +LEONTES: +You, my lords, +Look on her, mark her well; be but about +To say 'she is a goodly lady,' and +The justice of your bearts will thereto add +'Tis pity she's not honest, honourable:' +Praise her but for this her without-door form, +Which on my faith deserves high speech, and straight +The shrug, the hum or ha, these petty brands +That calumny doth use--O, I am out-- +That mercy does, for calumny will sear +Virtue itself: these shrugs, these hums and ha's, +When you have said 'she's goodly,' come between +Ere you can say 'she's honest:' but be 't known, +From him that has most cause to grieve it should be, +She's an adulteress. + +HERMIONE: +Should a villain say so, +The most replenish'd villain in the world, +He were as much more villain: you, my lord, +Do but mistake. + +LEONTES: +You have mistook, my lady, +Polixenes for Leontes: O thou thing! +Which I'll not call a creature of thy place, +Lest barbarism, making me the precedent, +Should a like language use to all degrees +And mannerly distinguishment leave out +Betwixt the prince and beggar: I have said +She's an adulteress; I have said with whom: +More, she's a traitor and Camillo is +A federary with her, and one that knows +What she should shame to know herself +But with her most vile principal, that she's +A bed-swerver, even as bad as those +That vulgars give bold'st titles, ay, and privy +To this their late escape. + +HERMIONE: +No, by my life. +Privy to none of this. How will this grieve you, +When you shall come to clearer knowledge, that +You thus have publish'd me! Gentle my lord, +You scarce can right me throughly then to say +You did mistake. + +LEONTES: +No; if I mistake +In those foundations which I build upon, +The centre is not big enough to bear +A school-boy's top. Away with her! to prison! +He who shall speak for her is afar off guilty +But that he speaks. + +HERMIONE: +There's some ill planet reigns: +I must be patient till the heavens look +With an aspect more favourable. Good my lords, +I am not prone to weeping, as our sex +Commonly are; the want of which vain dew +Perchance shall dry your pities: but I have +That honourable grief lodged here which burns +Worse than tears drown: beseech you all, my lords, +With thoughts so qualified as your charities +Shall best instruct you, measure me; and so +The king's will be perform'd! + +LEONTES: +Shall I be heard? + +HERMIONE: +Who is't that goes with me? Beseech your highness, +My women may be with me; for you see +My plight requires it. Do not weep, good fools; +There is no cause: when you shall know your mistress +Has deserved prison, then abound in tears +As I come out: this action I now go on +Is for my better grace. Adieu, my lord: +I never wish'd to see you sorry; now +I trust I shall. My women, come; you have leave. + +LEONTES: +Go, do our bidding; hence! + +First Lord: +Beseech your highness, call the queen again. + +ANTIGONUS: +Be certain what you do, sir, lest your justice +Prove violence; in the which three great ones suffer, +Yourself, your queen, your son. + +First Lord: +For her, my lord, +I dare my life lay down and will do't, sir, +Please you to accept it, that the queen is spotless +I' the eyes of heaven and to you; I mean, +In this which you accuse her. + +ANTIGONUS: +If it prove +She's otherwise, I'll keep my stables where +I lodge my wife; I'll go in couples with her; +Than when I feel and see her no farther trust her; +For every inch of woman in the world, +Ay, every dram of woman's flesh is false, If she be. + +LEONTES: +Hold your peaces. + +First Lord: +Good my lord,-- + +ANTIGONUS: +It is for you we speak, not for ourselves: +You are abused and by some putter-on +That will be damn'd for't; would I knew the villain, +I would land-damn him. Be she honour-flaw'd, +I have three daughters; the eldest is eleven +The second and the third, nine, and some five; +If this prove true, they'll pay for't: +by mine honour, +I'll geld 'em all; fourteen they shall not see, +To bring false generations: they are co-heirs; +And I had rather glib myself than they +Should not produce fair issue. + +LEONTES: +Cease; no more. +You smell this business with a sense as cold +As is a dead man's nose: but I do see't and feel't +As you feel doing thus; and see withal +The instruments that feel. + +ANTIGONUS: +If it be so, +We need no grave to bury honesty: +There's not a grain of it the face to sweeten +Of the whole dungy earth. + +LEONTES: +What! lack I credit? + +First Lord: +I had rather you did lack than I, my lord, +Upon this ground; and more it would content me +To have her honour true than your suspicion, +Be blamed for't how you might. + +LEONTES: +Why, what need we +Commune with you of this, but rather follow +Our forceful instigation? Our prerogative +Calls not your counsels, but our natural goodness +Imparts this; which if you, or stupefied +Or seeming so in skill, cannot or will not +Relish a truth like us, inform yourselves +We need no more of your advice: the matter, +The loss, the gain, the ordering on't, is all +Properly ours. + +ANTIGONUS: +And I wish, my liege, +You had only in your silent judgment tried it, +Without more overture. + +LEONTES: +How could that be? +Either thou art most ignorant by age, +Or thou wert born a fool. Camillo's flight, +Added to their familiarity, +Which was as gross as ever touch'd conjecture, +That lack'd sight only, nought for approbation +But only seeing, all other circumstances +Made up to the deed, doth push on this proceeding: +Yet, for a greater confirmation, +For in an act of this importance 'twere +Most piteous to be wild, I have dispatch'd in post +To sacred Delphos, to Apollo's temple, +Cleomenes and Dion, whom you know +Of stuff'd sufficiency: now from the oracle +They will bring all; whose spiritual counsel had, +Shall stop or spur me. Have I done well? + +First Lord: +Well done, my lord. + +LEONTES: +Though I am satisfied and need no more +Than what I know, yet shall the oracle +Give rest to the minds of others, such as he +Whose ignorant credulity will not +Come up to the truth. So have we thought it good +From our free person she should be confined, +Lest that the treachery of the two fled hence +Be left her to perform. Come, follow us; +We are to speak in public; for this business +Will raise us all. + +ANTIGONUS: + +PAULINA: +The keeper of the prison, call to him; +let him have knowledge who I am. +Good lady, +No court in Europe is too good for thee; +What dost thou then in prison? +Now, good sir, +You know me, do you not? + +Gaoler: +For a worthy lady +And one whom much I honour. + +PAULINA: +Pray you then, +Conduct me to the queen. + +Gaoler: +I may not, madam: +To the contrary I have express commandment. + +PAULINA: +Here's ado, +To lock up honesty and honour from +The access of gentle visitors! +Is't lawful, pray you, +To see her women? any of them? Emilia? + +Gaoler: +So please you, madam, +To put apart these your attendants, I +Shall bring Emilia forth. + +PAULINA: +I pray now, call her. +Withdraw yourselves. + +Gaoler: +And, madam, +I must be present at your conference. + +PAULINA: +Well, be't so, prithee. +Here's such ado to make no stain a stain +As passes colouring. +Dear gentlewoman, +How fares our gracious lady? + +EMILIA: +As well as one so great and so forlorn +May hold together: on her frights and griefs, +Which never tender lady hath born greater, +She is something before her time deliver'd. + +PAULINA: +A boy? + +EMILIA: +A daughter, and a goodly babe, +Lusty and like to live: the queen receives +Much comfort in't; says 'My poor prisoner, +I am innocent as you.' + +PAULINA: +I dare be sworn +These dangerous unsafe lunes i' the king, +beshrew them! +He must be told on't, and he shall: the office +Becomes a woman best; I'll take't upon me: +If I prove honey-mouth'd let my tongue blister +And never to my red-look'd anger be +The trumpet any more. Pray you, Emilia, +Commend my best obedience to the queen: +If she dares trust me with her little babe, +I'll show't the king and undertake to be +Her advocate to the loud'st. We do not know +How he may soften at the sight o' the child: +The silence often of pure innocence +Persuades when speaking fails. + +EMILIA: +Most worthy madam, +Your honour and your goodness is so evident +That your free undertaking cannot miss +A thriving issue: there is no lady living +So meet for this great errand. Please your ladyship +To visit the next room, I'll presently +Acquaint the queen of your most noble offer; +Who but to-day hammer'd of this design, +But durst not tempt a minister of honour, +Lest she should be denied. + +PAULINA: +Tell her, Emilia. +I'll use that tongue I have: if wit flow from't +As boldness from my bosom, let 't not be doubted +I shall do good. + +EMILIA: +Now be you blest for it! +I'll to the queen: please you, +come something nearer. + +Gaoler: +Madam, if't please the queen to send the babe, +I know not what I shall incur to pass it, +Having no warrant. + +PAULINA: +You need not fear it, sir: +This child was prisoner to the womb and is +By law and process of great nature thence +Freed and enfranchised, not a party to +The anger of the king nor guilty of, +If any be, the trespass of the queen. + +Gaoler: +I do believe it. + +PAULINA: +Do not you fear: upon mine honour, +I will stand betwixt you and danger. + +LEONTES: +Nor night nor day no rest: it is but weakness +To bear the matter thus; mere weakness. If +The cause were not in being,--part o' the cause, +She the adulteress; for the harlot king +Is quite beyond mine arm, out of the blank +And level of my brain, plot-proof; but she +I can hook to me: say that she were gone, +Given to the fire, a moiety of my rest +Might come to me again. Who's there? + +First Servant: +My lord? + +LEONTES: +How does the boy? + +First Servant: +He took good rest to-night; +'Tis hoped his sickness is discharged. + +LEONTES: +To see his nobleness! +Conceiving the dishonour of his mother, +He straight declined, droop'd, took it deeply, +Fasten'd and fix'd the shame on't in himself, +Threw off his spirit, his appetite, his sleep, +And downright languish'd. Leave me solely: go, +See how he fares. +Fie, fie! no thought of him: +The thought of my revenges that way +Recoil upon me: in himself too mighty, +And in his parties, his alliance; let him be +Until a time may serve: for present vengeance, +Take it on her. Camillo and Polixenes +Laugh at me, make their pastime at my sorrow: +They should not laugh if I could reach them, nor +Shall she within my power. + +First Lord: +You must not enter. + +PAULINA: +Nay, rather, good my lords, be second to me: +Fear you his tyrannous passion more, alas, +Than the queen's life? a gracious innocent soul, +More free than he is jealous. + +ANTIGONUS: +That's enough. + +Second Servant: +Madam, he hath not slept tonight; commanded +None should come at him. + +PAULINA: +Not so hot, good sir: +I come to bring him sleep. 'Tis such as you, +That creep like shadows by him and do sigh +At each his needless heavings, such as you +Nourish the cause of his awaking: I +Do come with words as medicinal as true, +Honest as either, to purge him of that humour +That presses him from sleep. + +LEONTES: +What noise there, ho? + +PAULINA: +No noise, my lord; but needful conference +About some gossips for your highness. + +LEONTES: +How! +Away with that audacious lady! Antigonus, +I charged thee that she should not come about me: +I knew she would. + +ANTIGONUS: +I told her so, my lord, +On your displeasure's peril and on mine, +She should not visit you. + +LEONTES: +What, canst not rule her? + +PAULINA: +From all dishonesty he can: in this, +Unless he take the course that you have done, +Commit me for committing honour, trust it, +He shall not rule me. + +ANTIGONUS: +La you now, you hear: +When she will take the rein I let her run; +But she'll not stumble. + +PAULINA: +Good my liege, I come; +And, I beseech you, hear me, who profess +Myself your loyal servant, your physician, +Your most obedient counsellor, yet that dare +Less appear so in comforting your evils, +Than such as most seem yours: I say, I come +From your good queen. + +LEONTES: +Good queen! + +PAULINA: +Good queen, my lord, +Good queen; I say good queen; +And would by combat make her good, so were I +A man, the worst about you. + +LEONTES: +Force her hence. + +PAULINA: +Let him that makes but trifles of his eyes +First hand me: on mine own accord I'll off; +But first I'll do my errand. The good queen, +For she is good, hath brought you forth a daughter; +Here 'tis; commends it to your blessing. + +LEONTES: +Out! +A mankind witch! Hence with her, out o' door: +A most intelligencing bawd! + +PAULINA: +Not so: +I am as ignorant in that as you +In so entitling me, and no less honest +Than you are mad; which is enough, I'll warrant, +As this world goes, to pass for honest. + +LEONTES: +Traitors! +Will you not push her out? Give her the bastard. +Thou dotard! thou art woman-tired, unroosted +By thy dame Partlet here. Take up the bastard; +Take't up, I say; give't to thy crone. + +PAULINA: +For ever +Unvenerable be thy hands, if thou +Takest up the princess by that forced baseness +Which he has put upon't! + +LEONTES: +He dreads his wife. + +PAULINA: +So I would you did; then 'twere past all doubt +You'ld call your children yours. + +LEONTES: +A nest of traitors! + +ANTIGONUS: +I am none, by this good light. + +PAULINA: +Nor I, nor any +But one that's here, and that's himself, for he +The sacred honour of himself, his queen's, +His hopeful son's, his babe's, betrays to slander, +Whose sting is sharper than the sword's; +and will not-- +For, as the case now stands, it is a curse +He cannot be compell'd to't--once remove +The root of his opinion, which is rotten +As ever oak or stone was sound. + +LEONTES: +A callat +Of boundless tongue, who late hath beat her husband +And now baits me! This brat is none of mine; +It is the issue of Polixenes: +Hence with it, and together with the dam +Commit them to the fire! + +PAULINA: +It is yours; +And, might we lay the old proverb to your charge, +So like you, 'tis the worse. Behold, my lords, +Although the print be little, the whole matter +And copy of the father, eye, nose, lip, +The trick of's frown, his forehead, nay, the valley, +The pretty dimples of his chin and cheek, +His smiles, +The very mould and frame of hand, nail, finger: +And thou, good goddess Nature, which hast made it +So like to him that got it, if thou hast +The ordering of the mind too, 'mongst all colours +No yellow in't, lest she suspect, as he does, +Her children not her husband's! + +LEONTES: +A gross hag +And, lozel, thou art worthy to be hang'd, +That wilt not stay her tongue. + +ANTIGONUS: +Hang all the husbands +That cannot do that feat, you'll leave yourself +Hardly one subject. + +LEONTES: +Once more, take her hence. + +PAULINA: +A most unworthy and unnatural lord +Can do no more. + +LEONTES: +I'll ha' thee burnt. + +PAULINA: +I care not: +It is an heretic that makes the fire, +Not she which burns in't. I'll not call you tyrant; +But this most cruel usage of your queen, +Not able to produce more accusation +Than your own weak-hinged fancy, something savours +Of tyranny and will ignoble make you, +Yea, scandalous to the world. + +LEONTES: +On your allegiance, +Out of the chamber with her! Were I a tyrant, +Where were her life? she durst not call me so, +If she did know me one. Away with her! + +PAULINA: +I pray you, do not push me; I'll be gone. +Look to your babe, my lord; 'tis yours: +Jove send her +A better guiding spirit! What needs these hands? +You, that are thus so tender o'er his follies, +Will never do him good, not one of you. +So, so: farewell; we are gone. + +LEONTES: +Thou, traitor, hast set on thy wife to this. +My child? away with't! Even thou, that hast +A heart so tender o'er it, take it hence +And see it instantly consumed with fire; +Even thou and none but thou. Take it up straight: +Within this hour bring me word 'tis done, +And by good testimony, or I'll seize thy life, +With what thou else call'st thine. If thou refuse +And wilt encounter with my wrath, say so; +The bastard brains with these my proper hands +Shall I dash out. Go, take it to the fire; +For thou set'st on thy wife. + +ANTIGONUS: +I did not, sir: +These lords, my noble fellows, if they please, +Can clear me in't. + +Lords: +We can: my royal liege, +He is not guilty of her coming hither. + +LEONTES: +You're liars all. + +First Lord: +Beseech your highness, give us better credit: +We have always truly served you, and beseech you +So to esteem of us, and on our knees we beg, +As recompense of our dear services +Past and to come, that you do change this purpose, +Which being so horrible, so bloody, must +Lead on to some foul issue: we all kneel. + +LEONTES: +I am a feather for each wind that blows: +Shall I live on to see this bastard kneel +And call me father? better burn it now +Than curse it then. But be it; let it live. +It shall not neither. You, sir, come you hither; +You that have been so tenderly officious +With Lady Margery, your midwife there, +To save this bastard's life,--for 'tis a bastard, +So sure as this beard's grey, +--what will you adventure +To save this brat's life? + +ANTIGONUS: +Any thing, my lord, +That my ability may undergo +And nobleness impose: at least thus much: +I'll pawn the little blood which I have left +To save the innocent: any thing possible. + +LEONTES: +It shall be possible. Swear by this sword +Thou wilt perform my bidding. + +ANTIGONUS: +I will, my lord. + +LEONTES: +Mark and perform it, see'st thou! for the fail +Of any point in't shall not only be +Death to thyself but to thy lewd-tongued wife, +Whom for this time we pardon. We enjoin thee, +As thou art liege-man to us, that thou carry +This female bastard hence and that thou bear it +To some remote and desert place quite out +Of our dominions, and that there thou leave it, +Without more mercy, to its own protection +And favour of the climate. As by strange fortune +It came to us, I do in justice charge thee, +On thy soul's peril and thy body's torture, +That thou commend it strangely to some place +Where chance may nurse or end it. Take it up. + +ANTIGONUS: +I swear to do this, though a present death +Had been more merciful. Come on, poor babe: +Some powerful spirit instruct the kites and ravens +To be thy nurses! Wolves and bears, they say +Casting their savageness aside have done +Like offices of pity. Sir, be prosperous +In more than this deed does require! And blessing +Against this cruelty fight on thy side, +Poor thing, condemn'd to loss! + +LEONTES: +No, I'll not rear +Another's issue. + +Servant: +Please your highness, posts +From those you sent to the oracle are come +An hour since: Cleomenes and Dion, +Being well arrived from Delphos, are both landed, +Hasting to the court. + +First Lord: +So please you, sir, their speed +Hath been beyond account. + +LEONTES: +Twenty-three days +They have been absent: 'tis good speed; foretells +The great Apollo suddenly will have +The truth of this appear. Prepare you, lords; +Summon a session, that we may arraign +Our most disloyal lady, for, as she hath +Been publicly accused, so shall she have +A just and open trial. While she lives +My heart will be a burthen to me. Leave me, +And think upon my bidding. + +CLEOMENES: +The climate's delicate, the air most sweet, +Fertile the isle, the temple much surpassing +The common praise it bears. + +DION: +I shall report, +For most it caught me, the celestial habits, +Methinks I so should term them, and the reverence +Of the grave wearers. O, the sacrifice! +How ceremonious, solemn and unearthly +It was i' the offering! + +CLEOMENES: +But of all, the burst +And the ear-deafening voice o' the oracle, +Kin to Jove's thunder, so surprised my sense. +That I was nothing. + +DION: +If the event o' the journey +Prove as successful to the queen,--O be't so!-- +As it hath been to us rare, pleasant, speedy, +The time is worth the use on't. + +CLEOMENES: +Great Apollo +Turn all to the best! These proclamations, +So forcing faults upon Hermione, +I little like. + +DION: +The violent carriage of it +Will clear or end the business: when the oracle, +Thus by Apollo's great divine seal'd up, +Shall the contents discover, something rare +Even then will rush to knowledge. Go: fresh horses! +And gracious be the issue! + +LEONTES: +This sessions, to our great grief we pronounce, +Even pushes 'gainst our heart: the party tried +The daughter of a king, our wife, and one +Of us too much beloved. Let us be clear'd +Of being tyrannous, since we so openly +Proceed in justice, which shall have due course, +Even to the guilt or the purgation. +Produce the prisoner. + +Officer: +It is his highness' pleasure that the queen +Appear in person here in court. Silence! + +LEONTES: +Read the indictment. + +Officer: + +HERMIONE: +Since what I am to say must be but that +Which contradicts my accusation and +The testimony on my part no other +But what comes from myself, it shall scarce boot me +To say 'not guilty:' mine integrity +Being counted falsehood, shall, as I express it, +Be so received. But thus: if powers divine +Behold our human actions, as they do, +I doubt not then but innocence shall make +False accusation blush and tyranny +Tremble at patience. You, my lord, best know, +Who least will seem to do so, my past life +Hath been as continent, as chaste, as true, +As I am now unhappy; which is more +Than history can pattern, though devised +And play'd to take spectators. For behold me +A fellow of the royal bed, which owe +A moiety of the throne a great king's daughter, +The mother to a hopeful prince, here standing +To prate and talk for life and honour 'fore +Who please to come and hear. For life, I prize it +As I weigh grief, which I would spare: for honour, +'Tis a derivative from me to mine, +And only that I stand for. I appeal +To your own conscience, sir, before Polixenes +Came to your court, how I was in your grace, +How merited to be so; since he came, +With what encounter so uncurrent I +Have strain'd to appear thus: if one jot beyond +The bound of honour, or in act or will +That way inclining, harden'd be the hearts +Of all that hear me, and my near'st of kin +Cry fie upon my grave! + +LEONTES: +I ne'er heard yet +That any of these bolder vices wanted +Less impudence to gainsay what they did +Than to perform it first. + +HERMIONE: +That's true enough; +Through 'tis a saying, sir, not due to me. + +LEONTES: +You will not own it. + +HERMIONE: +More than mistress of +Which comes to me in name of fault, I must not +At all acknowledge. For Polixenes, +With whom I am accused, I do confess +I loved him as in honour he required, +With such a kind of love as might become +A lady like me, with a love even such, +So and no other, as yourself commanded: +Which not to have done I think had been in me +Both disobedience and ingratitude +To you and toward your friend, whose love had spoke, +Even since it could speak, from an infant, freely +That it was yours. Now, for conspiracy, +I know not how it tastes; though it be dish'd +For me to try how: all I know of it +Is that Camillo was an honest man; +And why he left your court, the gods themselves, +Wotting no more than I, are ignorant. + +LEONTES: +You knew of his departure, as you know +What you have underta'en to do in's absence. + +HERMIONE: +Sir, +You speak a language that I understand not: +My life stands in the level of your dreams, +Which I'll lay down. + +LEONTES: +Your actions are my dreams; +You had a bastard by Polixenes, +And I but dream'd it. As you were past all shame,-- +Those of your fact are so--so past all truth: +Which to deny concerns more than avails; for as +Thy brat hath been cast out, like to itself, +No father owning it,--which is, indeed, +More criminal in thee than it,--so thou +Shalt feel our justice, in whose easiest passage +Look for no less than death. + +HERMIONE: +Sir, spare your threats: +The bug which you would fright me with I seek. +To me can life be no commodity: +The crown and comfort of my life, your favour, +I do give lost; for I do feel it gone, +But know not how it went. My second joy +And first-fruits of my body, from his presence +I am barr'd, like one infectious. My third comfort +Starr'd most unluckily, is from my breast, +The innocent milk in its most innocent mouth, +Haled out to murder: myself on every post +Proclaimed a strumpet: with immodest hatred +The child-bed privilege denied, which 'longs +To women of all fashion; lastly, hurried +Here to this place, i' the open air, before +I have got strength of limit. Now, my liege, +Tell me what blessings I have here alive, +That I should fear to die? Therefore proceed. +But yet hear this: mistake me not; no life, +I prize it not a straw, but for mine honour, +Which I would free, if I shall be condemn'd +Upon surmises, all proofs sleeping else +But what your jealousies awake, I tell you +'Tis rigor and not law. Your honours all, +I do refer me to the oracle: +Apollo be my judge! + +First Lord: +This your request +Is altogether just: therefore bring forth, +And in Apollos name, his oracle. + +HERMIONE: +The Emperor of Russia was my father: +O that he were alive, and here beholding +His daughter's trial! that he did but see +The flatness of my misery, yet with eyes +Of pity, not revenge! + +Officer: +You here shall swear upon this sword of justice, +That you, Cleomenes and Dion, have +Been both at Delphos, and from thence have brought +The seal'd-up oracle, by the hand deliver'd +Of great Apollo's priest; and that, since then, +You have not dared to break the holy seal +Nor read the secrets in't. + +CLEOMENES: +All this we swear. + +LEONTES: +Break up the seals and read. + +Officer: + +Lords: +Now blessed be the great Apollo! + +HERMIONE: +Praised! + +LEONTES: +Hast thou read truth? + +Officer: +Ay, my lord; even so +As it is here set down. + +LEONTES: +There is no truth at all i' the oracle: +The sessions shall proceed: this is mere falsehood. + +Servant: +My lord the king, the king! + +LEONTES: +What is the business? + +Servant: +O sir, I shall be hated to report it! +The prince your son, with mere conceit and fear +Of the queen's speed, is gone. + +LEONTES: +How! gone! + +Servant: +Is dead. + +LEONTES: +Apollo's angry; and the heavens themselves +Do strike at my injustice. +How now there! + +PAULINA: +This news is mortal to the queen: look down +And see what death is doing. + +LEONTES: +Take her hence: +Her heart is but o'ercharged; she will recover: +I have too much believed mine own suspicion: +Beseech you, tenderly apply to her +Some remedies for life. +Apollo, pardon +My great profaneness 'gainst thine oracle! +I'll reconcile me to Polixenes, +New woo my queen, recall the good Camillo, +Whom I proclaim a man of truth, of mercy; +For, being transported by my jealousies +To bloody thoughts and to revenge, I chose +Camillo for the minister to poison +My friend Polixenes: which had been done, +But that the good mind of Camillo tardied +My swift command, though I with death and with +Reward did threaten and encourage him, +Not doing 't and being done: he, most humane +And fill'd with honour, to my kingly guest +Unclasp'd my practise, quit his fortunes here, +Which you knew great, and to the hazard +Of all encertainties himself commended, +No richer than his honour: how he glisters +Thorough my rust! and how his pity +Does my deeds make the blacker! + +PAULINA: +Woe the while! +O, cut my lace, lest my heart, cracking it, +Break too. + +First Lord: +What fit is this, good lady? + +PAULINA: +What studied torments, tyrant, hast for me? +What wheels? racks? fires? what flaying? boiling? +In leads or oils? what old or newer torture +Must I receive, whose every word deserves +To taste of thy most worst? Thy tyranny +Together working with thy jealousies, +Fancies too weak for boys, too green and idle +For girls of nine, O, think what they have done +And then run mad indeed, stark mad! for all +Thy by-gone fooleries were but spices of it. +That thou betray'dst Polixenes,'twas nothing; +That did but show thee, of a fool, inconstant +And damnable ingrateful: nor was't much, +Thou wouldst have poison'd good Camillo's honour, +To have him kill a king: poor trespasses, +More monstrous standing by: whereof I reckon +The casting forth to crows thy baby-daughter +To be or none or little; though a devil +Would have shed water out of fire ere done't: +Nor is't directly laid to thee, the death +Of the young prince, whose honourable thoughts, +Thoughts high for one so tender, cleft the heart +That could conceive a gross and foolish sire +Blemish'd his gracious dam: this is not, no, +Laid to thy answer: but the last,--O lords, +When I have said, cry 'woe!' the queen, the queen, +The sweet'st, dear'st creature's dead, +and vengeance for't +Not dropp'd down yet. + +First Lord: +The higher powers forbid! + +PAULINA: +I say she's dead; I'll swear't. If word nor oath +Prevail not, go and see: if you can bring +Tincture or lustre in her lip, her eye, +Heat outwardly or breath within, I'll serve you +As I would do the gods. But, O thou tyrant! +Do not repent these things, for they are heavier +Than all thy woes can stir; therefore betake thee +To nothing but despair. A thousand knees +Ten thousand years together, naked, fasting, +Upon a barren mountain and still winter +In storm perpetual, could not move the gods +To look that way thou wert. + +LEONTES: +Go on, go on +Thou canst not speak too much; I have deserved +All tongues to talk their bitterest. + +First Lord: +Say no more: +Howe'er the business goes, you have made fault +I' the boldness of your speech. + +PAULINA: +I am sorry for't: +All faults I make, when I shall come to know them, +I do repent. Alas! I have show'd too much +The rashness of a woman: he is touch'd +To the noble heart. What's gone and what's past help +Should be past grief: do not receive affliction +At my petition; I beseech you, rather +Let me be punish'd, that have minded you +Of what you should forget. Now, good my liege +Sir, royal sir, forgive a foolish woman: +The love I bore your queen--lo, fool again!-- +I'll speak of her no more, nor of your children; +I'll not remember you of my own lord, +Who is lost too: take your patience to you, +And I'll say nothing. + +LEONTES: +Thou didst speak but well +When most the truth; which I receive much better +Than to be pitied of thee. Prithee, bring me +To the dead bodies of my queen and son: +One grave shall be for both: upon them shall +The causes of their death appear, unto +Our shame perpetual. Once a day I'll visit +The chapel where they lie, and tears shed there +Shall be my recreation: so long as nature +Will bear up with this exercise, so long +I daily vow to use it. Come and lead me +Unto these sorrows. + +ANTIGONUS: +Thou art perfect then, our ship hath touch'd upon +The deserts of Bohemia? + +Mariner: +Ay, my lord: and fear +We have landed in ill time: the skies look grimly +And threaten present blusters. In my conscience, +The heavens with that we have in hand are angry +And frown upon 's. + +ANTIGONUS: +Their sacred wills be done! Go, get aboard; +Look to thy bark: I'll not be long before +I call upon thee. + +Mariner: +Make your best haste, and go not +Too far i' the land: 'tis like to be loud weather; +Besides, this place is famous for the creatures +Of prey that keep upon't. + +ANTIGONUS: +Go thou away: +I'll follow instantly. + +Mariner: +I am glad at heart +To be so rid o' the business. + +ANTIGONUS: +Come, poor babe: +I have heard, but not believed, +the spirits o' the dead +May walk again: if such thing be, thy mother +Appear'd to me last night, for ne'er was dream +So like a waking. To me comes a creature, +Sometimes her head on one side, some another; +I never saw a vessel of like sorrow, +So fill'd and so becoming: in pure white robes, +Like very sanctity, she did approach +My cabin where I lay; thrice bow'd before me, +And gasping to begin some speech, her eyes +Became two spouts: the fury spent, anon +Did this break-from her: 'Good Antigonus, +Since fate, against thy better disposition, +Hath made thy person for the thrower-out +Of my poor babe, according to thine oath, +Places remote enough are in Bohemia, +There weep and leave it crying; and, for the babe +Is counted lost for ever, Perdita, +I prithee, call't. For this ungentle business +Put on thee by my lord, thou ne'er shalt see +Thy wife Paulina more.' And so, with shrieks +She melted into air. Affrighted much, +I did in time collect myself and thought +This was so and no slumber. Dreams are toys: +Yet for this once, yea, superstitiously, +I will be squared by this. I do believe +Hermione hath suffer'd death, and that +Apollo would, this being indeed the issue +Of King Polixenes, it should here be laid, +Either for life or death, upon the earth +Of its right father. Blossom, speed thee well! +There lie, and there thy character: there these; +Which may, if fortune please, both breed thee, pretty, +And still rest thine. The storm begins; poor wretch, +That for thy mother's fault art thus exposed +To loss and what may follow! Weep I cannot, +But my heart bleeds; and most accursed am I +To be by oath enjoin'd to this. Farewell! +The day frowns more and more: thou'rt like to have +A lullaby too rough: I never saw +The heavens so dim by day. A savage clamour! +Well may I get aboard! This is the chase: +I am gone for ever. + +Shepherd: +I would there were no age between sixteen and +three-and-twenty, or that youth would sleep out the +rest; for there is nothing in the between but +getting wenches with child, wronging the ancientry, +stealing, fighting--Hark you now! Would any but +these boiled brains of nineteen and two-and-twenty +hunt this weather? They have scared away two of my +best sheep, which I fear the wolf will sooner find +than the master: if any where I have them, 'tis by +the seaside, browsing of ivy. Good luck, an't be thy +will what have we here! Mercy on 's, a barne a very +pretty barne! A boy or a child, I wonder? A +pretty one; a very pretty one: sure, some 'scape: +though I am not bookish, yet I can read +waiting-gentlewoman in the 'scape. This has been +some stair-work, some trunk-work, some +behind-door-work: they were warmer that got this +than the poor thing is here. I'll take it up for +pity: yet I'll tarry till my son come; he hallooed +but even now. Whoa, ho, hoa! + +Clown: +Hilloa, loa! + +Shepherd: +What, art so near? If thou'lt see a thing to talk +on when thou art dead and rotten, come hither. What +ailest thou, man? + +Clown: +I have seen two such sights, by sea and by land! +but I am not to say it is a sea, for it is now the +sky: betwixt the firmament and it you cannot thrust +a bodkin's point. + +Shepherd: +Why, boy, how is it? + +Clown: +I would you did but see how it chafes, how it rages, +how it takes up the shore! but that's not the +point. O, the most piteous cry of the poor souls! +sometimes to see 'em, and not to see 'em; now the +ship boring the moon with her main-mast, and anon +swallowed with yest and froth, as you'ld thrust a +cork into a hogshead. And then for the +land-service, to see how the bear tore out his +shoulder-bone; how he cried to me for help and said +his name was Antigonus, a nobleman. But to make an +end of the ship, to see how the sea flap-dragoned +it: but, first, how the poor souls roared, and the +sea mocked them; and how the poor gentleman roared +and the bear mocked him, both roaring louder than +the sea or weather. + +Shepherd: +Name of mercy, when was this, boy? + +Clown: +Now, now: I have not winked since I saw these +sights: the men are not yet cold under water, nor +the bear half dined on the gentleman: he's at it +now. + +Shepherd: +Would I had been by, to have helped the old man! + +Clown: +I would you had been by the ship side, to have +helped her: there your charity would have lacked footing. + +Shepherd: +Heavy matters! heavy matters! but look thee here, +boy. Now bless thyself: thou mettest with things +dying, I with things newborn. Here's a sight for +thee; look thee, a bearing-cloth for a squire's +child! look thee here; take up, take up, boy; +open't. So, let's see: it was told me I should be +rich by the fairies. This is some changeling: +open't. What's within, boy? + +Clown: +You're a made old man: if the sins of your youth +are forgiven you, you're well to live. Gold! all gold! + +Shepherd: +This is fairy gold, boy, and 'twill prove so: up +with't, keep it close: home, home, the next way. +We are lucky, boy; and to be so still requires +nothing but secrecy. Let my sheep go: come, good +boy, the next way home. + +Clown: +Go you the next way with your findings. I'll go see +if the bear be gone from the gentleman and how much +he hath eaten: they are never curst but when they +are hungry: if there be any of him left, I'll bury +it. + +Shepherd: +That's a good deed. If thou mayest discern by that +which is left of him what he is, fetch me to the +sight of him. + +Clown: +Marry, will I; and you shall help to put him i' the ground. + +Shepherd: +'Tis a lucky day, boy, and we'll do good deeds on't. + +Time: +I, that please some, try all, both joy and terror +Of good and bad, that makes and unfolds error, +Now take upon me, in the name of Time, +To use my wings. Impute it not a crime +To me or my swift passage, that I slide +O'er sixteen years and leave the growth untried +Of that wide gap, since it is in my power +To o'erthrow law and in one self-born hour +To plant and o'erwhelm custom. Let me pass +The same I am, ere ancient'st order was +Or what is now received: I witness to +The times that brought them in; so shall I do +To the freshest things now reigning and make stale +The glistering of this present, as my tale +Now seems to it. Your patience this allowing, +I turn my glass and give my scene such growing +As you had slept between: Leontes leaving, +The effects of his fond jealousies so grieving +That he shuts up himself, imagine me, +Gentle spectators, that I now may be +In fair Bohemia, and remember well, +I mentioned a son o' the king's, which Florizel +I now name to you; and with speed so pace +To speak of Perdita, now grown in grace +Equal with wondering: what of her ensues +I list not prophecy; but let Time's news +Be known when 'tis brought forth. +A shepherd's daughter, +And what to her adheres, which follows after, +Is the argument of Time. Of this allow, +If ever you have spent time worse ere now; +If never, yet that Time himself doth say +He wishes earnestly you never may. + +POLIXENES: +I pray thee, good Camillo, be no more importunate: +'tis a sickness denying thee any thing; a death to +grant this. + +CAMILLO: +It is fifteen years since I saw my country: though +I have for the most part been aired abroad, I +desire to lay my bones there. Besides, the penitent +king, my master, hath sent for me; to whose feeling +sorrows I might be some allay, or I o'erween to +think so, which is another spur to my departure. + +POLIXENES: +As thou lovest me, Camillo, wipe not out the rest of +thy services by leaving me now: the need I have of +thee thine own goodness hath made; better not to +have had thee than thus to want thee: thou, having +made me businesses which none without thee can +sufficiently manage, must either stay to execute +them thyself or take away with thee the very +services thou hast done; which if I have not enough +considered, as too much I cannot, to be more +thankful to thee shall be my study, and my profit +therein the heaping friendships. Of that fatal +country, Sicilia, prithee speak no more; whose very +naming punishes me with the remembrance of that +penitent, as thou callest him, and reconciled king, +my brother; whose loss of his most precious queen +and children are even now to be afresh lamented. +Say to me, when sawest thou the Prince Florizel, my +son? Kings are no less unhappy, their issue not +being gracious, than they are in losing them when +they have approved their virtues. + +CAMILLO: +Sir, it is three days since I saw the prince. What +his happier affairs may be, are to me unknown: but I +have missingly noted, he is of late much retired +from court and is less frequent to his princely +exercises than formerly he hath appeared. + +POLIXENES: +I have considered so much, Camillo, and with some +care; so far that I have eyes under my service which +look upon his removedness; from whom I have this +intelligence, that he is seldom from the house of a +most homely shepherd; a man, they say, that from +very nothing, and beyond the imagination of his +neighbours, is grown into an unspeakable estate. + +CAMILLO: +I have heard, sir, of such a man, who hath a +daughter of most rare note: the report of her is +extended more than can be thought to begin from such a cottage. + +POLIXENES: +That's likewise part of my intelligence; but, I +fear, the angle that plucks our son thither. Thou +shalt accompany us to the place; where we will, not +appearing what we are, have some question with the +shepherd; from whose simplicity I think it not +uneasy to get the cause of my son's resort thither. +Prithee, be my present partner in this business, and +lay aside the thoughts of Sicilia. + +CAMILLO: +I willingly obey your command. + +POLIXENES: +My best Camillo! We must disguise ourselves. + +AUTOLYCUS: +When daffodils begin to peer, +With heigh! the doxy over the dale, +Why, then comes in the sweet o' the year; +For the red blood reigns in the winter's pale. +The white sheet bleaching on the hedge, +With heigh! the sweet birds, O, how they sing! +Doth set my pugging tooth on edge; +For a quart of ale is a dish for a king. +The lark, that tirra-lyra chants, +With heigh! with heigh! the thrush and the jay, +Are summer songs for me and my aunts, +While we lie tumbling in the hay. +I have served Prince Florizel and in my time +wore three-pile; but now I am out of service: +But shall I go mourn for that, my dear? +The pale moon shines by night: +And when I wander here and there, +I then do most go right. +If tinkers may have leave to live, +And bear the sow-skin budget, +Then my account I well may, give, +And in the stocks avouch it. +My traffic is sheets; when the kite builds, look to +lesser linen. My father named me Autolycus; who +being, as I am, littered under Mercury, was likewise +a snapper-up of unconsidered trifles. With die and +drab I purchased this caparison, and my revenue is +the silly cheat. Gallows and knock are too powerful +on the highway: beating and hanging are terrors to +me: for the life to come, I sleep out the thought +of it. A prize! a prize! + +Clown: +Let me see: every 'leven wether tods; every tod +yields pound and odd shilling; fifteen hundred +shorn. what comes the wool to? + +AUTOLYCUS: + +Clown: +I cannot do't without counters. Let me see; what am +I to buy for our sheep-shearing feast? Three pound +of sugar, five pound of currants, rice,--what will +this sister of mine do with rice? But my father +hath made her mistress of the feast, and she lays it +on. She hath made me four and twenty nose-gays for +the shearers, three-man-song-men all, and very good +ones; but they are most of them means and bases; but +one puritan amongst them, and he sings psalms to +horn-pipes. I must have saffron to colour the warden +pies; mace; dates?--none, that's out of my note; +nutmegs, seven; a race or two of ginger, but that I +may beg; four pound of prunes, and as many of +raisins o' the sun. + +AUTOLYCUS: +O that ever I was born! + +Clown: +I' the name of me-- + +AUTOLYCUS: +O, help me, help me! pluck but off these rags; and +then, death, death! + +Clown: +Alack, poor soul! thou hast need of more rags to lay +on thee, rather than have these off. + +AUTOLYCUS: +O sir, the loathsomeness of them offends me more +than the stripes I have received, which are mighty +ones and millions. + +Clown: +Alas, poor man! a million of beating may come to a +great matter. + +AUTOLYCUS: +I am robbed, sir, and beaten; my money and apparel +ta'en from me, and these detestable things put upon +me. + +Clown: +What, by a horseman, or a footman? + +AUTOLYCUS: +A footman, sweet sir, a footman. + +Clown: +Indeed, he should be a footman by the garments he +has left with thee: if this be a horseman's coat, +it hath seen very hot service. Lend me thy hand, +I'll help thee: come, lend me thy hand. + +AUTOLYCUS: +O, good sir, tenderly, O! + +Clown: +Alas, poor soul! + +AUTOLYCUS: +O, good sir, softly, good sir! I fear, sir, my +shoulder-blade is out. + +Clown: +How now! canst stand? + +AUTOLYCUS: + +Clown: +Dost lack any money? I have a little money for thee. + +AUTOLYCUS: +No, good sweet sir; no, I beseech you, sir: I have +a kinsman not past three quarters of a mile hence, +unto whom I was going; I shall there have money, or +any thing I want: offer me no money, I pray you; +that kills my heart. + +Clown: +What manner of fellow was he that robbed you? + +AUTOLYCUS: +A fellow, sir, that I have known to go about with +troll-my-dames; I knew him once a servant of the +prince: I cannot tell, good sir, for which of his +virtues it was, but he was certainly whipped out of the court. + +Clown: +His vices, you would say; there's no virtue whipped +out of the court: they cherish it to make it stay +there; and yet it will no more but abide. + +AUTOLYCUS: +Vices, I would say, sir. I know this man well: he +hath been since an ape-bearer; then a +process-server, a bailiff; then he compassed a +motion of the Prodigal Son, and married a tinker's +wife within a mile where my land and living lies; +and, having flown over many knavish professions, he +settled only in rogue: some call him Autolycus. + +Clown: +Out upon him! prig, for my life, prig: he haunts +wakes, fairs and bear-baitings. + +AUTOLYCUS: +Very true, sir; he, sir, he; that's the rogue that +put me into this apparel. + +Clown: +Not a more cowardly rogue in all Bohemia: if you had +but looked big and spit at him, he'ld have run. + +AUTOLYCUS: +I must confess to you, sir, I am no fighter: I am +false of heart that way; and that he knew, I warrant +him. + +Clown: +How do you now? + +AUTOLYCUS: +Sweet sir, much better than I was; I can stand and +walk: I will even take my leave of you, and pace +softly towards my kinsman's. + +Clown: +Shall I bring thee on the way? + +AUTOLYCUS: +No, good-faced sir; no, sweet sir. + +Clown: +Then fare thee well: I must go buy spices for our +sheep-shearing. + +AUTOLYCUS: +Prosper you, sweet sir! +Your purse is not hot enough to purchase your spice. +I'll be with you at your sheep-shearing too: if I +make not this cheat bring out another and the +shearers prove sheep, let me be unrolled and my name +put in the book of virtue! +Jog on, jog on, the foot-path way, +And merrily hent the stile-a: +A merry heart goes all the day, +Your sad tires in a mile-a. + +FLORIZEL: +These your unusual weeds to each part of you +Do give a life: no shepherdess, but Flora +Peering in April's front. This your sheep-shearing +Is as a meeting of the petty gods, +And you the queen on't. + +PERDITA: +Sir, my gracious lord, +To chide at your extremes it not becomes me: +O, pardon, that I name them! Your high self, +The gracious mark o' the land, you have obscured +With a swain's wearing, and me, poor lowly maid, +Most goddess-like prank'd up: but that our feasts +In every mess have folly and the feeders +Digest it with a custom, I should blush +To see you so attired, sworn, I think, +To show myself a glass. + +FLORIZEL: +I bless the time +When my good falcon made her flight across +Thy father's ground. + +PERDITA: +Now Jove afford you cause! +To me the difference forges dread; your greatness +Hath not been used to fear. Even now I tremble +To think your father, by some accident, +Should pass this way as you did: O, the Fates! +How would he look, to see his work so noble +Vilely bound up? What would he say? Or how +Should I, in these my borrow'd flaunts, behold +The sternness of his presence? + +FLORIZEL: +Apprehend +Nothing but jollity. The gods themselves, +Humbling their deities to love, have taken +The shapes of beasts upon them: Jupiter +Became a bull, and bellow'd; the green Neptune +A ram, and bleated; and the fire-robed god, +Golden Apollo, a poor humble swain, +As I seem now. Their transformations +Were never for a piece of beauty rarer, +Nor in a way so chaste, since my desires +Run not before mine honour, nor my lusts +Burn hotter than my faith. + +PERDITA: +O, but, sir, +Your resolution cannot hold, when 'tis +Opposed, as it must be, by the power of the king: +One of these two must be necessities, +Which then will speak, that you must +change this purpose, +Or I my life. + +FLORIZEL: +Thou dearest Perdita, +With these forced thoughts, I prithee, darken not +The mirth o' the feast. Or I'll be thine, my fair, +Or not my father's. For I cannot be +Mine own, nor any thing to any, if +I be not thine. To this I am most constant, +Though destiny say no. Be merry, gentle; +Strangle such thoughts as these with any thing +That you behold the while. Your guests are coming: +Lift up your countenance, as it were the day +Of celebration of that nuptial which +We two have sworn shall come. + +PERDITA: +O lady Fortune, +Stand you auspicious! + +FLORIZEL: +See, your guests approach: +Address yourself to entertain them sprightly, +And let's be red with mirth. + +Shepherd: +Fie, daughter! when my old wife lived, upon +This day she was both pantler, butler, cook, +Both dame and servant; welcomed all, served all; +Would sing her song and dance her turn; now here, +At upper end o' the table, now i' the middle; +On his shoulder, and his; her face o' fire +With labour and the thing she took to quench it, +She would to each one sip. You are retired, +As if you were a feasted one and not +The hostess of the meeting: pray you, bid +These unknown friends to's welcome; for it is +A way to make us better friends, more known. +Come, quench your blushes and present yourself +That which you are, mistress o' the feast: come on, +And bid us welcome to your sheep-shearing, +As your good flock shall prosper. + +PERDITA: + +POLIXENES: +Shepherdess, +A fair one are you--well you fit our ages +With flowers of winter. + +PERDITA: +Sir, the year growing ancient, +Not yet on summer's death, nor on the birth +Of trembling winter, the fairest +flowers o' the season +Are our carnations and streak'd gillyvors, +Which some call nature's bastards: of that kind +Our rustic garden's barren; and I care not +To get slips of them. + +POLIXENES: +Wherefore, gentle maiden, +Do you neglect them? + +PERDITA: +For I have heard it said +There is an art which in their piedness shares +With great creating nature. + +POLIXENES: +Say there be; +Yet nature is made better by no mean +But nature makes that mean: so, over that art +Which you say adds to nature, is an art +That nature makes. You see, sweet maid, we marry +A gentler scion to the wildest stock, +And make conceive a bark of baser kind +By bud of nobler race: this is an art +Which does mend nature, change it rather, but +The art itself is nature. + +PERDITA: +So it is. + +POLIXENES: +Then make your garden rich in gillyvors, +And do not call them bastards. + +PERDITA: +I'll not put +The dibble in earth to set one slip of them; +No more than were I painted I would wish +This youth should say 'twere well and only therefore +Desire to breed by me. Here's flowers for you; +Hot lavender, mints, savoury, marjoram; +The marigold, that goes to bed wi' the sun +And with him rises weeping: these are flowers +Of middle summer, and I think they are given +To men of middle age. You're very welcome. + +CAMILLO: +I should leave grazing, were I of your flock, +And only live by gazing. + +PERDITA: +Out, alas! +You'd be so lean, that blasts of January +Would blow you through and through. +Now, my fair'st friend, +I would I had some flowers o' the spring that might +Become your time of day; and yours, and yours, +That wear upon your virgin branches yet +Your maidenheads growing: O Proserpina, +For the flowers now, that frighted thou let'st fall +From Dis's waggon! daffodils, +That come before the swallow dares, and take +The winds of March with beauty; violets dim, +But sweeter than the lids of Juno's eyes +Or Cytherea's breath; pale primroses +That die unmarried, ere they can behold +Bight Phoebus in his strength--a malady +Most incident to maids; bold oxlips and +The crown imperial; lilies of all kinds, +The flower-de-luce being one! O, these I lack, +To make you garlands of, and my sweet friend, +To strew him o'er and o'er! + +FLORIZEL: +What, like a corse? + +PERDITA: +No, like a bank for love to lie and play on; +Not like a corse; or if, not to be buried, +But quick and in mine arms. Come, take your flowers: +Methinks I play as I have seen them do +In Whitsun pastorals: sure this robe of mine +Does change my disposition. + +FLORIZEL: +What you do +Still betters what is done. When you speak, sweet. +I'ld have you do it ever: when you sing, +I'ld have you buy and sell so, so give alms, +Pray so; and, for the ordering your affairs, +To sing them too: when you do dance, I wish you +A wave o' the sea, that you might ever do +Nothing but that; move still, still so, +And own no other function: each your doing, +So singular in each particular, +Crowns what you are doing in the present deed, +That all your acts are queens. + +PERDITA: +O Doricles, +Your praises are too large: but that your youth, +And the true blood which peepeth fairly through't, +Do plainly give you out an unstain'd shepherd, +With wisdom I might fear, my Doricles, +You woo'd me the false way. + +FLORIZEL: +I think you have +As little skill to fear as I have purpose +To put you to't. But come; our dance, I pray: +Your hand, my Perdita: so turtles pair, +That never mean to part. + +PERDITA: +I'll swear for 'em. + +POLIXENES: +This is the prettiest low-born lass that ever +Ran on the green-sward: nothing she does or seems +But smacks of something greater than herself, +Too noble for this place. + +CAMILLO: +He tells her something +That makes her blood look out: good sooth, she is +The queen of curds and cream. + +Clown: +Come on, strike up! + +DORCAS: +Mopsa must be your mistress: marry, garlic, +To mend her kissing with! + +MOPSA: +Now, in good time! + +Clown: +Not a word, a word; we stand upon our manners. +Come, strike up! + +POLIXENES: +Pray, good shepherd, what fair swain is this +Which dances with your daughter? + +Shepherd: +They call him Doricles; and boasts himself +To have a worthy feeding: but I have it +Upon his own report and I believe it; +He looks like sooth. He says he loves my daughter: +I think so too; for never gazed the moon +Upon the water as he'll stand and read +As 'twere my daughter's eyes: and, to be plain. +I think there is not half a kiss to choose +Who loves another best. + +POLIXENES: +She dances featly. + +Shepherd: +So she does any thing; though I report it, +That should be silent: if young Doricles +Do light upon her, she shall bring him that +Which he not dreams of. + +Servant: +O master, if you did but hear the pedlar at the +door, you would never dance again after a tabour and +pipe; no, the bagpipe could not move you: he sings +several tunes faster than you'll tell money; he +utters them as he had eaten ballads and all men's +ears grew to his tunes. + +Clown: +He could never come better; he shall come in. I +love a ballad but even too well, if it be doleful +matter merrily set down, or a very pleasant thing +indeed and sung lamentably. + +Servant: +He hath songs for man or woman, of all sizes; no +milliner can so fit his customers with gloves: he +has the prettiest love-songs for maids; so without +bawdry, which is strange; with such delicate +burthens of dildos and fadings, 'jump her and thump +her;' and where some stretch-mouthed rascal would, +as it were, mean mischief and break a foul gap into +the matter, he makes the maid to answer 'Whoop, do me +no harm, good man;' puts him off, slights him, with +'Whoop, do me no harm, good man.' + +POLIXENES: +This is a brave fellow. + +Clown: +Believe me, thou talkest of an admirable conceited +fellow. Has he any unbraided wares? + +Servant: +He hath ribbons of an the colours i' the rainbow; +points more than all the lawyers in Bohemia can +learnedly handle, though they come to him by the +gross: inkles, caddisses, cambrics, lawns: why, he +sings 'em over as they were gods or goddesses; you +would think a smock were a she-angel, he so chants +to the sleeve-hand and the work about the square on't. + +Clown: +Prithee bring him in; and let him approach singing. + +PERDITA: +Forewarn him that he use no scurrilous words in 's tunes. + +Clown: +You have of these pedlars, that have more in them +than you'ld think, sister. + +PERDITA: +Ay, good brother, or go about to think. + +AUTOLYCUS: +Lawn as white as driven snow; +Cyprus black as e'er was crow; +Gloves as sweet as damask roses; +Masks for faces and for noses; +Bugle bracelet, necklace amber, +Perfume for a lady's chamber; +Golden quoifs and stomachers, +For my lads to give their dears: +Pins and poking-sticks of steel, +What maids lack from head to heel: +Come buy of me, come; come buy, come buy; +Buy lads, or else your lasses cry: Come buy. + +Clown: +If I were not in love with Mopsa, thou shouldst take +no money of me; but being enthralled as I am, it +will also be the bondage of certain ribbons and gloves. + +MOPSA: +I was promised them against the feast; but they come +not too late now. + +DORCAS: +He hath promised you more than that, or there be liars. + +MOPSA: +He hath paid you all he promised you; may be, he has +paid you more, which will shame you to give him again. + +Clown: +Is there no manners left among maids? will they +wear their plackets where they should bear their +faces? Is there not milking-time, when you are +going to bed, or kiln-hole, to whistle off these +secrets, but you must be tittle-tattling before all +our guests? 'tis well they are whispering: clamour +your tongues, and not a word more. + +MOPSA: +I have done. Come, you promised me a tawdry-lace +and a pair of sweet gloves. + +Clown: +Have I not told thee how I was cozened by the way +and lost all my money? + +AUTOLYCUS: +And indeed, sir, there are cozeners abroad; +therefore it behoves men to be wary. + +Clown: +Fear not thou, man, thou shalt lose nothing here. + +AUTOLYCUS: +I hope so, sir; for I have about me many parcels of charge. + +Clown: +What hast here? ballads? + +MOPSA: +Pray now, buy some: I love a ballad in print o' +life, for then we are sure they are true. + +AUTOLYCUS: +Here's one to a very doleful tune, how a usurer's +wife was brought to bed of twenty money-bags at a +burthen and how she longed to eat adders' heads and +toads carbonadoed. + +MOPSA: +Is it true, think you? + +AUTOLYCUS: +Very true, and but a month old. + +DORCAS: +Bless me from marrying a usurer! + +AUTOLYCUS: +Here's the midwife's name to't, one Mistress +Tale-porter, and five or six honest wives that were +present. Why should I carry lies abroad? + +MOPSA: +Pray you now, buy it. + +Clown: +Come on, lay it by: and let's first see moe +ballads; we'll buy the other things anon. + +AUTOLYCUS: +Here's another ballad of a fish, that appeared upon +the coast on Wednesday the four-score of April, +forty thousand fathom above water, and sung this +ballad against the hard hearts of maids: it was +thought she was a woman and was turned into a cold +fish for she would not exchange flesh with one that +loved her: the ballad is very pitiful and as true. + +DORCAS: +Is it true too, think you? + +AUTOLYCUS: +Five justices' hands at it, and witnesses more than +my pack will hold. + +Clown: +Lay it by too: another. + +AUTOLYCUS: +This is a merry ballad, but a very pretty one. + +MOPSA: +Let's have some merry ones. + +AUTOLYCUS: +Why, this is a passing merry one and goes to +the tune of 'Two maids wooing a man:' there's +scarce a maid westward but she sings it; 'tis in +request, I can tell you. + +MOPSA: +We can both sing it: if thou'lt bear a part, thou +shalt hear; 'tis in three parts. + +DORCAS: +We had the tune on't a month ago. + +AUTOLYCUS: +I can bear my part; you must know 'tis my +occupation; have at it with you. + +AUTOLYCUS: +Get you hence, for I must go +Where it fits not you to know. + +DORCAS: +Whither? + +MOPSA: +O, whither? + +DORCAS: +Whither? + +MOPSA: +It becomes thy oath full well, +Thou to me thy secrets tell. + +DORCAS: +Me too, let me go thither. + +MOPSA: +Or thou goest to the orange or mill. + +DORCAS: +If to either, thou dost ill. + +AUTOLYCUS: +Neither. + +DORCAS: +What, neither? + +AUTOLYCUS: +Neither. + +DORCAS: +Thou hast sworn my love to be. + +MOPSA: +Thou hast sworn it more to me: +Then whither goest? say, whither? + +Clown: +We'll have this song out anon by ourselves: my +father and the gentlemen are in sad talk, and we'll +not trouble them. Come, bring away thy pack after +me. Wenches, I'll buy for you both. Pedlar, let's +have the first choice. Follow me, girls. + +AUTOLYCUS: +And you shall pay well for 'em. +Will you buy any tape, +Or lace for your cape, +My dainty duck, my dear-a? +Any silk, any thread, +Any toys for your head, +Of the new'st and finest, finest wear-a? +Come to the pedlar; +Money's a medler. +That doth utter all men's ware-a. + +Servant: +Master, there is three carters, three shepherds, +three neat-herds, three swine-herds, that have made +themselves all men of hair, they call themselves +Saltiers, and they have a dance which the wenches +say is a gallimaufry of gambols, because they are +not in't; but they themselves are o' the mind, if it +be not too rough for some that know little but +bowling, it will please plentifully. + +Shepherd: +Away! we'll none on 't: here has been too much +homely foolery already. I know, sir, we weary you. + +POLIXENES: +You weary those that refresh us: pray, let's see +these four threes of herdsmen. + +Servant: +One three of them, by their own report, sir, hath +danced before the king; and not the worst of the +three but jumps twelve foot and a half by the squier. + +Shepherd: +Leave your prating: since these good men are +pleased, let them come in; but quickly now. + +Servant: +Why, they stay at door, sir. + +POLIXENES: +O, father, you'll know more of that hereafter. +Is it not too far gone? 'Tis time to part them. +He's simple and tells much. +How now, fair shepherd! +Your heart is full of something that does take +Your mind from feasting. Sooth, when I was young +And handed love as you do, I was wont +To load my she with knacks: I would have ransack'd +The pedlar's silken treasury and have pour'd it +To her acceptance; you have let him go +And nothing marted with him. If your lass +Interpretation should abuse and call this +Your lack of love or bounty, you were straited +For a reply, at least if you make a care +Of happy holding her. + +FLORIZEL: +Old sir, I know +She prizes not such trifles as these are: +The gifts she looks from me are pack'd and lock'd +Up in my heart; which I have given already, +But not deliver'd. O, hear me breathe my life +Before this ancient sir, who, it should seem, +Hath sometime loved! I take thy hand, this hand, +As soft as dove's down and as white as it, +Or Ethiopian's tooth, or the fann'd +snow that's bolted +By the northern blasts twice o'er. + +POLIXENES: +What follows this? +How prettily the young swain seems to wash +The hand was fair before! I have put you out: +But to your protestation; let me hear +What you profess. + +FLORIZEL: +Do, and be witness to 't. + +POLIXENES: +And this my neighbour too? + +FLORIZEL: +And he, and more +Than he, and men, the earth, the heavens, and all: +That, were I crown'd the most imperial monarch, +Thereof most worthy, were I the fairest youth +That ever made eye swerve, had force and knowledge +More than was ever man's, I would not prize them +Without her love; for her employ them all; +Commend them and condemn them to her service +Or to their own perdition. + +POLIXENES: +Fairly offer'd. + +CAMILLO: +This shows a sound affection. + +Shepherd: +But, my daughter, +Say you the like to him? + +PERDITA: +I cannot speak +So well, nothing so well; no, nor mean better: +By the pattern of mine own thoughts I cut out +The purity of his. + +Shepherd: +Take hands, a bargain! +And, friends unknown, you shall bear witness to 't: +I give my daughter to him, and will make +Her portion equal his. + +FLORIZEL: +O, that must be +I' the virtue of your daughter: one being dead, +I shall have more than you can dream of yet; +Enough then for your wonder. But, come on, +Contract us 'fore these witnesses. + +Shepherd: +Come, your hand; +And, daughter, yours. + +POLIXENES: +Soft, swain, awhile, beseech you; +Have you a father? + +FLORIZEL: +I have: but what of him? + +POLIXENES: +Knows he of this? + +FLORIZEL: +He neither does nor shall. + +POLIXENES: +Methinks a father +Is at the nuptial of his son a guest +That best becomes the table. Pray you once more, +Is not your father grown incapable +Of reasonable affairs? is he not stupid +With age and altering rheums? can he speak? hear? +Know man from man? dispute his own estate? +Lies he not bed-rid? and again does nothing +But what he did being childish? + +FLORIZEL: +No, good sir; +He has his health and ampler strength indeed +Than most have of his age. + +POLIXENES: +By my white beard, +You offer him, if this be so, a wrong +Something unfilial: reason my son +Should choose himself a wife, but as good reason +The father, all whose joy is nothing else +But fair posterity, should hold some counsel +In such a business. + +FLORIZEL: +I yield all this; +But for some other reasons, my grave sir, +Which 'tis not fit you know, I not acquaint +My father of this business. + +POLIXENES: +Let him know't. + +FLORIZEL: +He shall not. + +POLIXENES: +Prithee, let him. + +FLORIZEL: +No, he must not. + +Shepherd: +Let him, my son: he shall not need to grieve +At knowing of thy choice. + +FLORIZEL: +Come, come, he must not. +Mark our contract. + +POLIXENES: +Mark your divorce, young sir, +Whom son I dare not call; thou art too base +To be acknowledged: thou a sceptre's heir, +That thus affect'st a sheep-hook! Thou old traitor, +I am sorry that by hanging thee I can +But shorten thy life one week. And thou, fresh piece +Of excellent witchcraft, who of force must know +The royal fool thou copest with,-- + +Shepherd: +O, my heart! + +POLIXENES: +I'll have thy beauty scratch'd with briers, and made +More homely than thy state. For thee, fond boy, +If I may ever know thou dost but sigh +That thou no more shalt see this knack, as never +I mean thou shalt, we'll bar thee from succession; +Not hold thee of our blood, no, not our kin, +Far than Deucalion off: mark thou my words: +Follow us to the court. Thou churl, for this time, +Though full of our displeasure, yet we free thee +From the dead blow of it. And you, enchantment.-- +Worthy enough a herdsman: yea, him too, +That makes himself, but for our honour therein, +Unworthy thee,--if ever henceforth thou +These rural latches to his entrance open, +Or hoop his body more with thy embraces, +I will devise a death as cruel for thee +As thou art tender to't. + +PERDITA: +Even here undone! +I was not much afeard; for once or twice +I was about to speak and tell him plainly, +The selfsame sun that shines upon his court +Hides not his visage from our cottage but +Looks on alike. Will't please you, sir, be gone? +I told you what would come of this: beseech you, +Of your own state take care: this dream of mine,-- +Being now awake, I'll queen it no inch farther, +But milk my ewes and weep. + +CAMILLO: +Why, how now, father! +Speak ere thou diest. + +Shepherd: +I cannot speak, nor think +Nor dare to know that which I know. O sir! +You have undone a man of fourscore three, +That thought to fill his grave in quiet, yea, +To die upon the bed my father died, +To lie close by his honest bones: but now +Some hangman must put on my shroud and lay me +Where no priest shovels in dust. O cursed wretch, +That knew'st this was the prince, +and wouldst adventure +To mingle faith with him! Undone! undone! +If I might die within this hour, I have lived +To die when I desire. + +FLORIZEL: +Why look you so upon me? +I am but sorry, not afeard; delay'd, +But nothing alter'd: what I was, I am; +More straining on for plucking back, not following +My leash unwillingly. + +CAMILLO: +Gracious my lord, +You know your father's temper: at this time +He will allow no speech, which I do guess +You do not purpose to him; and as hardly +Will he endure your sight as yet, I fear: +Then, till the fury of his highness settle, +Come not before him. + +FLORIZEL: +I not purpose it. +I think, Camillo? + +CAMILLO: +Even he, my lord. + +PERDITA: +How often have I told you 'twould be thus! +How often said, my dignity would last +But till 'twere known! + +FLORIZEL: +It cannot fail but by +The violation of my faith; and then +Let nature crush the sides o' the earth together +And mar the seeds within! Lift up thy looks: +From my succession wipe me, father; I +Am heir to my affection. + +CAMILLO: +Be advised. + +FLORIZEL: +I am, and by my fancy: if my reason +Will thereto be obedient, I have reason; +If not, my senses, better pleased with madness, +Do bid it welcome. + +CAMILLO: +This is desperate, sir. + +FLORIZEL: +So call it: but it does fulfil my vow; +I needs must think it honesty. Camillo, +Not for Bohemia, nor the pomp that may +Be thereat glean'd, for all the sun sees or +The close earth wombs or the profound sea hides +In unknown fathoms, will I break my oath +To this my fair beloved: therefore, I pray you, +As you have ever been my father's honour'd friend, +When he shall miss me,--as, in faith, I mean not +To see him any more,--cast your good counsels +Upon his passion; let myself and fortune +Tug for the time to come. This you may know +And so deliver, I am put to sea +With her whom here I cannot hold on shore; +And most opportune to our need I have +A vessel rides fast by, but not prepared +For this design. What course I mean to hold +Shall nothing benefit your knowledge, nor +Concern me the reporting. + +CAMILLO: +O my lord! +I would your spirit were easier for advice, +Or stronger for your need. + +FLORIZEL: +Hark, Perdita +I'll hear you by and by. + +CAMILLO: +He's irremoveable, +Resolved for flight. Now were I happy, if +His going I could frame to serve my turn, +Save him from danger, do him love and honour, +Purchase the sight again of dear Sicilia +And that unhappy king, my master, whom +I so much thirst to see. + +FLORIZEL: +Now, good Camillo; +I am so fraught with curious business that +I leave out ceremony. + +CAMILLO: +Sir, I think +You have heard of my poor services, i' the love +That I have borne your father? + +FLORIZEL: +Very nobly +Have you deserved: it is my father's music +To speak your deeds, not little of his care +To have them recompensed as thought on. + +CAMILLO: +Well, my lord, +If you may please to think I love the king +And through him what is nearest to him, which is +Your gracious self, embrace but my direction: +If your more ponderous and settled project +May suffer alteration, on mine honour, +I'll point you where you shall have such receiving +As shall become your highness; where you may +Enjoy your mistress, from the whom, I see, +There's no disjunction to be made, but by-- +As heavens forefend!--your ruin; marry her, +And, with my best endeavours in your absence, +Your discontenting father strive to qualify +And bring him up to liking. + +FLORIZEL: +How, Camillo, +May this, almost a miracle, be done? +That I may call thee something more than man +And after that trust to thee. + +CAMILLO: +Have you thought on +A place whereto you'll go? + +FLORIZEL: +Not any yet: +But as the unthought-on accident is guilty +To what we wildly do, so we profess +Ourselves to be the slaves of chance and flies +Of every wind that blows. + +CAMILLO: +Then list to me: +This follows, if you will not change your purpose +But undergo this flight, make for Sicilia, +And there present yourself and your fair princess, +For so I see she must be, 'fore Leontes: +She shall be habited as it becomes +The partner of your bed. Methinks I see +Leontes opening his free arms and weeping +His welcomes forth; asks thee the son forgiveness, +As 'twere i' the father's person; kisses the hands +Of your fresh princess; o'er and o'er divides him +'Twixt his unkindness and his kindness; the one +He chides to hell and bids the other grow +Faster than thought or time. + +FLORIZEL: +Worthy Camillo, +What colour for my visitation shall I +Hold up before him? + +CAMILLO: +Sent by the king your father +To greet him and to give him comforts. Sir, +The manner of your bearing towards him, with +What you as from your father shall deliver, +Things known betwixt us three, I'll write you down: +The which shall point you forth at every sitting +What you must say; that he shall not perceive +But that you have your father's bosom there +And speak his very heart. + +FLORIZEL: +I am bound to you: +There is some sap in this. + +CAMILLO: +A cause more promising +Than a wild dedication of yourselves +To unpath'd waters, undream'd shores, most certain +To miseries enough; no hope to help you, +But as you shake off one to take another; +Nothing so certain as your anchors, who +Do their best office, if they can but stay you +Where you'll be loath to be: besides you know +Prosperity's the very bond of love, +Whose fresh complexion and whose heart together +Affliction alters. + +PERDITA: +One of these is true: +I think affliction may subdue the cheek, +But not take in the mind. + +CAMILLO: +Yea, say you so? +There shall not at your father's house these +seven years +Be born another such. + +FLORIZEL: +My good Camillo, +She is as forward of her breeding as +She is i' the rear our birth. + +CAMILLO: +I cannot say 'tis pity +She lacks instructions, for she seems a mistress +To most that teach. + +PERDITA: +Your pardon, sir; for this +I'll blush you thanks. + +FLORIZEL: +My prettiest Perdita! +But O, the thorns we stand upon! Camillo, +Preserver of my father, now of me, +The medicine of our house, how shall we do? +We are not furnish'd like Bohemia's son, +Nor shall appear in Sicilia. + +CAMILLO: +My lord, +Fear none of this: I think you know my fortunes +Do all lie there: it shall be so my care +To have you royally appointed as if +The scene you play were mine. For instance, sir, +That you may know you shall not want, one word. + +AUTOLYCUS: +Ha, ha! what a fool Honesty is! and Trust, his +sworn brother, a very simple gentleman! I have sold +all my trumpery; not a counterfeit stone, not a +ribbon, glass, pomander, brooch, table-book, ballad, +knife, tape, glove, shoe-tie, bracelet, horn-ring, +to keep my pack from fasting: they throng who +should buy first, as if my trinkets had been +hallowed and brought a benediction to the buyer: +by which means I saw whose purse was best in +picture; and what I saw, to my good use I +remembered. My clown, who wants but something to +be a reasonable man, grew so in love with the +wenches' song, that he would not stir his pettitoes +till he had both tune and words; which so drew the +rest of the herd to me that all their other senses +stuck in ears: you might have pinched a placket, it +was senseless; 'twas nothing to geld a codpiece of a +purse; I could have filed keys off that hung in +chains: no hearing, no feeling, but my sir's song, +and admiring the nothing of it. So that in this +time of lethargy I picked and cut most of their +festival purses; and had not the old man come in +with a whoo-bub against his daughter and the king's +son and scared my choughs from the chaff, I had not +left a purse alive in the whole army. + +CAMILLO: +Nay, but my letters, by this means being there +So soon as you arrive, shall clear that doubt. + +FLORIZEL: +And those that you'll procure from King Leontes-- + +CAMILLO: +Shall satisfy your father. + +PERDITA: +Happy be you! +All that you speak shows fair. + +CAMILLO: +Who have we here? +We'll make an instrument of this, omit +Nothing may give us aid. + +AUTOLYCUS: +If they have overheard me now, why, hanging. + +CAMILLO: +How now, good fellow! why shakest thou so? Fear +not, man; here's no harm intended to thee. + +AUTOLYCUS: +I am a poor fellow, sir. + +CAMILLO: +Why, be so still; here's nobody will steal that from +thee: yet for the outside of thy poverty we must +make an exchange; therefore discase thee instantly, +--thou must think there's a necessity in't,--and +change garments with this gentleman: though the +pennyworth on his side be the worst, yet hold thee, +there's some boot. + +AUTOLYCUS: +I am a poor fellow, sir. +I know ye well enough. + +CAMILLO: +Nay, prithee, dispatch: the gentleman is half +flayed already. + +AUTOLYCUS: +Are you in earnest, sir? +I smell the trick on't. + +FLORIZEL: +Dispatch, I prithee. + +AUTOLYCUS: +Indeed, I have had earnest: but I cannot with +conscience take it. + +CAMILLO: +Unbuckle, unbuckle. +Fortunate mistress,--let my prophecy +Come home to ye!--you must retire yourself +Into some covert: take your sweetheart's hat +And pluck it o'er your brows, muffle your face, +Dismantle you, and, as you can, disliken +The truth of your own seeming; that you may-- +For I do fear eyes over--to shipboard +Get undescried. + +PERDITA: +I see the play so lies +That I must bear a part. + +CAMILLO: +No remedy. +Have you done there? + +FLORIZEL: +Should I now meet my father, +He would not call me son. + +CAMILLO: +Nay, you shall have no hat. +Come, lady, come. Farewell, my friend. + +AUTOLYCUS: +Adieu, sir. + +FLORIZEL: +O Perdita, what have we twain forgot! +Pray you, a word. + +CAMILLO: + +FLORIZEL: +Fortune speed us! +Thus we set on, Camillo, to the sea-side. + +CAMILLO: +The swifter speed the better. + +AUTOLYCUS: +I understand the business, I hear it: to have an +open ear, a quick eye, and a nimble hand, is +necessary for a cut-purse; a good nose is requisite +also, to smell out work for the other senses. I see +this is the time that the unjust man doth thrive. +What an exchange had this been without boot! What +a boot is here with this exchange! Sure the gods do +this year connive at us, and we may do any thing +extempore. The prince himself is about a piece of +iniquity, stealing away from his father with his +clog at his heels: if I thought it were a piece of +honesty to acquaint the king withal, I would not +do't: I hold it the more knavery to conceal it; +and therein am I constant to my profession. +Aside, aside; here is more matter for a hot brain: +every lane's end, every shop, church, session, +hanging, yields a careful man work. + +Clown: +See, see; what a man you are now! +There is no other way but to tell the king +she's a changeling and none of your flesh and blood. + +Shepherd: +Nay, but hear me. + +Clown: +Nay, but hear me. + +Shepherd: +Go to, then. + +Clown: +She being none of your flesh and blood, your flesh +and blood has not offended the king; and so your +flesh and blood is not to be punished by him. Show +those things you found about her, those secret +things, all but what she has with her: this being +done, let the law go whistle: I warrant you. + +Shepherd: +I will tell the king all, every word, yea, and his +son's pranks too; who, I may say, is no honest man, +neither to his father nor to me, to go about to make +me the king's brother-in-law. + +Clown: +Indeed, brother-in-law was the farthest off you +could have been to him and then your blood had been +the dearer by I know how much an ounce. + +AUTOLYCUS: + +Shepherd: +Well, let us to the king: there is that in this +fardel will make him scratch his beard. + +AUTOLYCUS: + +Clown: +Pray heartily he be at palace. + +AUTOLYCUS: + +Shepherd: +To the palace, an it like your worship. + +AUTOLYCUS: +Your affairs there, what, with whom, the condition +of that fardel, the place of your dwelling, your +names, your ages, of what having, breeding, and any +thing that is fitting to be known, discover. + +Clown: +We are but plain fellows, sir. + +AUTOLYCUS: +A lie; you are rough and hairy. Let me have no +lying: it becomes none but tradesmen, and they +often give us soldiers the lie: but we pay them for +it with stamped coin, not stabbing steel; therefore +they do not give us the lie. + +Clown: +Your worship had like to have given us one, if you +had not taken yourself with the manner. + +Shepherd: +Are you a courtier, an't like you, sir? + +AUTOLYCUS: +Whether it like me or no, I am a courtier. Seest +thou not the air of the court in these enfoldings? +hath not my gait in it the measure of the court? +receives not thy nose court-odor from me? reflect I +not on thy baseness court-contempt? Thinkest thou, +for that I insinuate, or toaze from thee thy +business, I am therefore no courtier? I am courtier +cap-a-pe; and one that will either push on or pluck +back thy business there: whereupon I command thee to +open thy affair. + +Shepherd: +My business, sir, is to the king. + +AUTOLYCUS: +What advocate hast thou to him? + +Shepherd: +I know not, an't like you. + +Clown: +Advocate's the court-word for a pheasant: say you +have none. + +Shepherd: +None, sir; I have no pheasant, cock nor hen. + +AUTOLYCUS: +How blessed are we that are not simple men! +Yet nature might have made me as these are, +Therefore I will not disdain. + +Clown: +This cannot be but a great courtier. + +Shepherd: +His garments are rich, but he wears +them not handsomely. + +Clown: +He seems to be the more noble in being fantastical: +a great man, I'll warrant; I know by the picking +on's teeth. + +AUTOLYCUS: +The fardel there? what's i' the fardel? +Wherefore that box? + +Shepherd: +Sir, there lies such secrets in this fardel and box, +which none must know but the king; and which he +shall know within this hour, if I may come to the +speech of him. + +AUTOLYCUS: +Age, thou hast lost thy labour. + +Shepherd: +Why, sir? + +AUTOLYCUS: +The king is not at the palace; he is gone aboard a +new ship to purge melancholy and air himself: for, +if thou beest capable of things serious, thou must +know the king is full of grief. + +Shepard: +So 'tis said, sir; about his son, that should have +married a shepherd's daughter. + +AUTOLYCUS: +If that shepherd be not in hand-fast, let him fly: +the curses he shall have, the tortures he shall +feel, will break the back of man, the heart of monster. + +Clown: +Think you so, sir? + +AUTOLYCUS: +Not he alone shall suffer what wit can make heavy +and vengeance bitter; but those that are germane to +him, though removed fifty times, shall all come +under the hangman: which though it be great pity, +yet it is necessary. An old sheep-whistling rogue a +ram-tender, to offer to have his daughter come into +grace! Some say he shall be stoned; but that death +is too soft for him, say I draw our throne into a +sheep-cote! all deaths are too few, the sharpest too easy. + +Clown: +Has the old man e'er a son, sir, do you hear. an't +like you, sir? + +AUTOLYCUS: +He has a son, who shall be flayed alive; then +'nointed over with honey, set on the head of a +wasp's nest; then stand till he be three quarters +and a dram dead; then recovered again with +aqua-vitae or some other hot infusion; then, raw as +he is, and in the hottest day prognostication +proclaims, shall be be set against a brick-wall, the +sun looking with a southward eye upon him, where he +is to behold him with flies blown to death. But what +talk we of these traitorly rascals, whose miseries +are to be smiled at, their offences being so +capital? Tell me, for you seem to be honest plain +men, what you have to the king: being something +gently considered, I'll bring you where he is +aboard, tender your persons to his presence, +whisper him in your behalfs; and if it be in man +besides the king to effect your suits, here is man +shall do it. + +Clown: +He seems to be of great authority: close with him, +give him gold; and though authority be a stubborn +bear, yet he is oft led by the nose with gold: show +the inside of your purse to the outside of his hand, +and no more ado. Remember 'stoned,' and 'flayed alive.' + +Shepherd: +An't please you, sir, to undertake the business for +us, here is that gold I have: I'll make it as much +more and leave this young man in pawn till I bring it you. + +AUTOLYCUS: +After I have done what I promised? + +Shepherd: +Ay, sir. + +AUTOLYCUS: +Well, give me the moiety. Are you a party in this business? + +Clown: +In some sort, sir: but though my case be a pitiful +one, I hope I shall not be flayed out of it. + +AUTOLYCUS: +O, that's the case of the shepherd's son: hang him, +he'll be made an example. + +Clown: +Comfort, good comfort! We must to the king and show +our strange sights: he must know 'tis none of your +daughter nor my sister; we are gone else. Sir, I +will give you as much as this old man does when the +business is performed, and remain, as he says, your +pawn till it be brought you. + +AUTOLYCUS: +I will trust you. Walk before toward the sea-side; +go on the right hand: I will but look upon the +hedge and follow you. + +Clown: +We are blest in this man, as I may say, even blest. + +Shepherd: +Let's before as he bids us: he was provided to do us good. + +AUTOLYCUS: +If I had a mind to be honest, I see Fortune would +not suffer me: she drops booties in my mouth. I am +courted now with a double occasion, gold and a means +to do the prince my master good; which who knows how +that may turn back to my advancement? I will bring +these two moles, these blind ones, aboard him: if he +think it fit to shore them again and that the +complaint they have to the king concerns him +nothing, let him call me rogue for being so far +officious; for I am proof against that title and +what shame else belongs to't. To him will I present +them: there may be matter in it. + +CLEOMENES: +Sir, you have done enough, and have perform'd +A saint-like sorrow: no fault could you make, +Which you have not redeem'd; indeed, paid down +More penitence than done trespass: at the last, +Do as the heavens have done, forget your evil; +With them forgive yourself. + +LEONTES: +Whilst I remember +Her and her virtues, I cannot forget +My blemishes in them, and so still think of +The wrong I did myself; which was so much, +That heirless it hath made my kingdom and +Destroy'd the sweet'st companion that e'er man +Bred his hopes out of. + +PAULINA: +True, too true, my lord: +If, one by one, you wedded all the world, +Or from the all that are took something good, +To make a perfect woman, she you kill'd +Would be unparallel'd. + +LEONTES: +I think so. Kill'd! +She I kill'd! I did so: but thou strikest me +Sorely, to say I did; it is as bitter +Upon thy tongue as in my thought: now, good now, +Say so but seldom. + +CLEOMENES: +Not at all, good lady: +You might have spoken a thousand things that would +Have done the time more benefit and graced +Your kindness better. + +PAULINA: +You are one of those +Would have him wed again. + +DION: +If you would not so, +You pity not the state, nor the remembrance +Of his most sovereign name; consider little +What dangers, by his highness' fail of issue, +May drop upon his kingdom and devour +Incertain lookers on. What were more holy +Than to rejoice the former queen is well? +What holier than, for royalty's repair, +For present comfort and for future good, +To bless the bed of majesty again +With a sweet fellow to't? + +PAULINA: +There is none worthy, +Respecting her that's gone. Besides, the gods +Will have fulfill'd their secret purposes; +For has not the divine Apollo said, +Is't not the tenor of his oracle, +That King Leontes shall not have an heir +Till his lost child be found? which that it shall, +Is all as monstrous to our human reason +As my Antigonus to break his grave +And come again to me; who, on my life, +Did perish with the infant. 'Tis your counsel +My lord should to the heavens be contrary, +Oppose against their wills. +Care not for issue; +The crown will find an heir: great Alexander +Left his to the worthiest; so his successor +Was like to be the best. + +LEONTES: +Good Paulina, +Who hast the memory of Hermione, +I know, in honour, O, that ever I +Had squared me to thy counsel! then, even now, +I might have look'd upon my queen's full eyes, +Have taken treasure from her lips-- + +PAULINA: +And left them +More rich for what they yielded. + +LEONTES: +Thou speak'st truth. +No more such wives; therefore, no wife: one worse, +And better used, would make her sainted spirit +Again possess her corpse, and on this stage, +Where we're offenders now, appear soul-vex'd, +And begin, 'Why to me?' + +PAULINA: +Had she such power, +She had just cause. + +LEONTES: +She had; and would incense me +To murder her I married. + +PAULINA: +I should so. +Were I the ghost that walk'd, I'ld bid you mark +Her eye, and tell me for what dull part in't +You chose her; then I'ld shriek, that even your ears +Should rift to hear me; and the words that follow'd +Should be 'Remember mine.' + +LEONTES: +Stars, stars, +And all eyes else dead coals! Fear thou no wife; +I'll have no wife, Paulina. + +PAULINA: +Will you swear +Never to marry but by my free leave? + +LEONTES: +Never, Paulina; so be blest my spirit! + +PAULINA: +Then, good my lords, bear witness to his oath. + +CLEOMENES: +You tempt him over-much. + +PAULINA: +Unless another, +As like Hermione as is her picture, +Affront his eye. + +CLEOMENES: +Good madam,-- + +PAULINA: +I have done. +Yet, if my lord will marry,--if you will, sir, +No remedy, but you will,--give me the office +To choose you a queen: she shall not be so young +As was your former; but she shall be such +As, walk'd your first queen's ghost, +it should take joy +To see her in your arms. + +LEONTES: +My true Paulina, +We shall not marry till thou bid'st us. + +PAULINA: +That +Shall be when your first queen's again in breath; +Never till then. + +Gentleman: +One that gives out himself Prince Florizel, +Son of Polixenes, with his princess, she +The fairest I have yet beheld, desires access +To your high presence. + +LEONTES: +What with him? he comes not +Like to his father's greatness: his approach, +So out of circumstance and sudden, tells us +'Tis not a visitation framed, but forced +By need and accident. What train? + +Gentleman: +But few, +And those but mean. + +LEONTES: +His princess, say you, with him? + +Gentleman: +Ay, the most peerless piece of earth, I think, +That e'er the sun shone bright on. + +PAULINA: +O Hermione, +As every present time doth boast itself +Above a better gone, so must thy grave +Give way to what's seen now! Sir, you yourself +Have said and writ so, but your writing now +Is colder than that theme, 'She had not been, +Nor was not to be equall'd;'--thus your verse +Flow'd with her beauty once: 'tis shrewdly ebb'd, +To say you have seen a better. + +Gentleman: +Pardon, madam: +The one I have almost forgot,--your pardon,-- +The other, when she has obtain'd your eye, +Will have your tongue too. This is a creature, +Would she begin a sect, might quench the zeal +Of all professors else, make proselytes +Of who she but bid follow. + +PAULINA: +How! not women? + +Gentleman: +Women will love her, that she is a woman +More worth than any man; men, that she is +The rarest of all women. + +LEONTES: +Go, Cleomenes; +Yourself, assisted with your honour'd friends, +Bring them to our embracement. Still, 'tis strange +He thus should steal upon us. + +PAULINA: +Had our prince, +Jewel of children, seen this hour, he had pair'd +Well with this lord: there was not full a month +Between their births. + +LEONTES: +Prithee, no more; cease; thou know'st +He dies to me again when talk'd of: sure, +When I shall see this gentleman, thy speeches +Will bring me to consider that which may +Unfurnish me of reason. They are come. +Your mother was most true to wedlock, prince; +For she did print your royal father off, +Conceiving you: were I but twenty-one, +Your father's image is so hit in you, +His very air, that I should call you brother, +As I did him, and speak of something wildly +By us perform'd before. Most dearly welcome! +And your fair princess,--goddess!--O, alas! +I lost a couple, that 'twixt heaven and earth +Might thus have stood begetting wonder as +You, gracious couple, do: and then I lost-- +All mine own folly--the society, +Amity too, of your brave father, whom, +Though bearing misery, I desire my life +Once more to look on him. + +FLORIZEL: +By his command +Have I here touch'd Sicilia and from him +Give you all greetings that a king, at friend, +Can send his brother: and, but infirmity +Which waits upon worn times hath something seized +His wish'd ability, he had himself +The lands and waters 'twixt your throne and his +Measured to look upon you; whom he loves-- +He bade me say so--more than all the sceptres +And those that bear them living. + +LEONTES: +O my brother, +Good gentleman! the wrongs I have done thee stir +Afresh within me, and these thy offices, +So rarely kind, are as interpreters +Of my behind-hand slackness. Welcome hither, +As is the spring to the earth. And hath he too +Exposed this paragon to the fearful usage, +At least ungentle, of the dreadful Neptune, +To greet a man not worth her pains, much less +The adventure of her person? + +FLORIZEL: +Good my lord, +She came from Libya. + +LEONTES: +Where the warlike Smalus, +That noble honour'd lord, is fear'd and loved? + +FLORIZEL: +Most royal sir, from thence; from him, whose daughter +His tears proclaim'd his, parting with her: thence, +A prosperous south-wind friendly, we have cross'd, +To execute the charge my father gave me +For visiting your highness: my best train +I have from your Sicilian shores dismiss'd; +Who for Bohemia bend, to signify +Not only my success in Libya, sir, +But my arrival and my wife's in safety +Here where we are. + +LEONTES: +The blessed gods +Purge all infection from our air whilst you +Do climate here! You have a holy father, +A graceful gentleman; against whose person, +So sacred as it is, I have done sin: +For which the heavens, taking angry note, +Have left me issueless; and your father's blest, +As he from heaven merits it, with you +Worthy his goodness. What might I have been, +Might I a son and daughter now have look'd on, +Such goodly things as you! + +Lord: +Most noble sir, +That which I shall report will bear no credit, +Were not the proof so nigh. Please you, great sir, +Bohemia greets you from himself by me; +Desires you to attach his son, who has-- +His dignity and duty both cast off-- +Fled from his father, from his hopes, and with +A shepherd's daughter. + +LEONTES: +Where's Bohemia? speak. + +Lord: +Here in your city; I now came from him: +I speak amazedly; and it becomes +My marvel and my message. To your court +Whiles he was hastening, in the chase, it seems, +Of this fair couple, meets he on the way +The father of this seeming lady and +Her brother, having both their country quitted +With this young prince. + +FLORIZEL: +Camillo has betray'd me; +Whose honour and whose honesty till now +Endured all weathers. + +Lord: +Lay't so to his charge: +He's with the king your father. + +LEONTES: +Who? Camillo? + +Lord: +Camillo, sir; I spake with him; who now +Has these poor men in question. Never saw I +Wretches so quake: they kneel, they kiss the earth; +Forswear themselves as often as they speak: +Bohemia stops his ears, and threatens them +With divers deaths in death. + +PERDITA: +O my poor father! +The heaven sets spies upon us, will not have +Our contract celebrated. + +LEONTES: +You are married? + +FLORIZEL: +We are not, sir, nor are we like to be; +The stars, I see, will kiss the valleys first: +The odds for high and low's alike. + +LEONTES: +My lord, +Is this the daughter of a king? + +FLORIZEL: +She is, +When once she is my wife. + +LEONTES: +That 'once' I see by your good father's speed +Will come on very slowly. I am sorry, +Most sorry, you have broken from his liking +Where you were tied in duty, and as sorry +Your choice is not so rich in worth as beauty, +That you might well enjoy her. + +FLORIZEL: +Dear, look up: +Though Fortune, visible an enemy, +Should chase us with my father, power no jot +Hath she to change our loves. Beseech you, sir, +Remember since you owed no more to time +Than I do now: with thought of such affections, +Step forth mine advocate; at your request +My father will grant precious things as trifles. + +LEONTES: +Would he do so, I'ld beg your precious mistress, +Which he counts but a trifle. + +PAULINA: +Sir, my liege, +Your eye hath too much youth in't: not a month +'Fore your queen died, she was more worth such gazes +Than what you look on now. + +LEONTES: +I thought of her, +Even in these looks I made. +But your petition +Is yet unanswer'd. I will to your father: +Your honour not o'erthrown by your desires, +I am friend to them and you: upon which errand +I now go toward him; therefore follow me +And mark what way I make: come, good my lord. + +AUTOLYCUS: +Beseech you, sir, were you present at this relation? + +First Gentleman: +I was by at the opening of the fardel, heard the old +shepherd deliver the manner how he found it: +whereupon, after a little amazedness, we were all +commanded out of the chamber; only this methought I +heard the shepherd say, he found the child. + +AUTOLYCUS: +I would most gladly know the issue of it. + +First Gentleman: +I make a broken delivery of the business; but the +changes I perceived in the king and Camillo were +very notes of admiration: they seemed almost, with +staring on one another, to tear the cases of their +eyes; there was speech in their dumbness, language +in their very gesture; they looked as they had heard +of a world ransomed, or one destroyed: a notable +passion of wonder appeared in them; but the wisest +beholder, that knew no more but seeing, could not +say if the importance were joy or sorrow; but in the +extremity of the one, it must needs be. +Here comes a gentleman that haply knows more. +The news, Rogero? + +Second Gentleman: +Nothing but bonfires: the oracle is fulfilled; the +king's daughter is found: such a deal of wonder is +broken out within this hour that ballad-makers +cannot be able to express it. +Here comes the Lady Paulina's steward: he can +deliver you more. How goes it now, sir? this news +which is called true is so like an old tale, that +the verity of it is in strong suspicion: has the king +found his heir? + +Third Gentleman: +Most true, if ever truth were pregnant by +circumstance: that which you hear you'll swear you +see, there is such unity in the proofs. The mantle +of Queen Hermione's, her jewel about the neck of it, +the letters of Antigonus found with it which they +know to be his character, the majesty of the +creature in resemblance of the mother, the affection +of nobleness which nature shows above her breeding, +and many other evidences proclaim her with all +certainty to be the king's daughter. Did you see +the meeting of the two kings? + +Second Gentleman: +No. + +Third Gentleman: +Then have you lost a sight, which was to be seen, +cannot be spoken of. There might you have beheld one +joy crown another, so and in such manner that it +seemed sorrow wept to take leave of them, for their +joy waded in tears. There was casting up of eyes, +holding up of hands, with countenances of such +distraction that they were to be known by garment, +not by favour. Our king, being ready to leap out of +himself for joy of his found daughter, as if that +joy were now become a loss, cries 'O, thy mother, +thy mother!' then asks Bohemia forgiveness; then +embraces his son-in-law; then again worries he his +daughter with clipping her; now he thanks the old +shepherd, which stands by like a weather-bitten +conduit of many kings' reigns. I never heard of such +another encounter, which lames report to follow it +and undoes description to do it. + +Second Gentleman: +What, pray you, became of Antigonus, that carried +hence the child? + +Third Gentleman: +Like an old tale still, which will have matter to +rehearse, though credit be asleep and not an ear +open. He was torn to pieces with a bear: this +avouches the shepherd's son; who has not only his +innocence, which seems much, to justify him, but a +handkerchief and rings of his that Paulina knows. + +First Gentleman: +What became of his bark and his followers? + +Third Gentleman: +Wrecked the same instant of their master's death and +in the view of the shepherd: so that all the +instruments which aided to expose the child were +even then lost when it was found. But O, the noble +combat that 'twixt joy and sorrow was fought in +Paulina! She had one eye declined for the loss of +her husband, another elevated that the oracle was +fulfilled: she lifted the princess from the earth, +and so locks her in embracing, as if she would pin +her to her heart that she might no more be in danger +of losing. + +First Gentleman: +The dignity of this act was worth the audience of +kings and princes; for by such was it acted. + +Third Gentleman: +One of the prettiest touches of all and that which +angled for mine eyes, caught the water though not +the fish, was when, at the relation of the queen's +death, with the manner how she came to't bravely +confessed and lamented by the king, how +attentiveness wounded his daughter; till, from one +sign of dolour to another, she did, with an 'Alas,' +I would fain say, bleed tears, for I am sure my +heart wept blood. Who was most marble there changed +colour; some swooned, all sorrowed: if all the world +could have seen 't, the woe had been universal. + +First Gentleman: +Are they returned to the court? + +Third Gentleman: +No: the princess hearing of her mother's statue, +which is in the keeping of Paulina,--a piece many +years in doing and now newly performed by that rare +Italian master, Julio Romano, who, had he himself +eternity and could put breath into his work, would +beguile Nature of her custom, so perfectly he is her +ape: he so near to Hermione hath done Hermione that +they say one would speak to her and stand in hope of +answer: thither with all greediness of affection +are they gone, and there they intend to sup. + +Second Gentleman: +I thought she had some great matter there in hand; +for she hath privately twice or thrice a day, ever +since the death of Hermione, visited that removed +house. Shall we thither and with our company piece +the rejoicing? + +First Gentleman: +Who would be thence that has the benefit of access? +every wink of an eye some new grace will be born: +our absence makes us unthrifty to our knowledge. +Let's along. + +AUTOLYCUS: +Now, had I not the dash of my former life in me, +would preferment drop on my head. I brought the old +man and his son aboard the prince: told him I heard +them talk of a fardel and I know not what: but he +at that time, overfond of the shepherd's daughter, +so he then took her to be, who began to be much +sea-sick, and himself little better, extremity of +weather continuing, this mystery remained +undiscovered. But 'tis all one to me; for had I +been the finder out of this secret, it would not +have relished among my other discredits. +Here come those I have done good to against my will, +and already appearing in the blossoms of their fortune. + +Shepherd: +Come, boy; I am past moe children, but thy sons and +daughters will be all gentlemen born. + +Clown: +You are well met, sir. You denied to fight with me +this other day, because I was no gentleman born. +See you these clothes? say you see them not and +think me still no gentleman born: you were best say +these robes are not gentlemen born: give me the +lie, do, and try whether I am not now a gentleman born. + +AUTOLYCUS: +I know you are now, sir, a gentleman born. + +Clown: +Ay, and have been so any time these four hours. + +Shepherd: +And so have I, boy. + +Clown: +So you have: but I was a gentleman born before my +father; for the king's son took me by the hand, and +called me brother; and then the two kings called my +father brother; and then the prince my brother and +the princess my sister called my father father; and +so we wept, and there was the first gentleman-like +tears that ever we shed. + +Shepherd: +We may live, son, to shed many more. + +Clown: +Ay; or else 'twere hard luck, being in so +preposterous estate as we are. + +AUTOLYCUS: +I humbly beseech you, sir, to pardon me all the +faults I have committed to your worship and to give +me your good report to the prince my master. + +Shepherd: +Prithee, son, do; for we must be gentle, now we are +gentlemen. + +Clown: +Thou wilt amend thy life? + +AUTOLYCUS: +Ay, an it like your good worship. + +Clown: +Give me thy hand: I will swear to the prince thou +art as honest a true fellow as any is in Bohemia. + +Shepherd: +You may say it, but not swear it. + +Clown: +Not swear it, now I am a gentleman? Let boors and +franklins say it, I'll swear it. + +Shepherd: +How if it be false, son? + +Clown: +If it be ne'er so false, a true gentleman may swear +it in the behalf of his friend: and I'll swear to +the prince thou art a tall fellow of thy hands and +that thou wilt not be drunk; but I know thou art no +tall fellow of thy hands and that thou wilt be +drunk: but I'll swear it, and I would thou wouldst +be a tall fellow of thy hands. + +AUTOLYCUS: +I will prove so, sir, to my power. + +Clown: +Ay, by any means prove a tall fellow: if I do not +wonder how thou darest venture to be drunk, not +being a tall fellow, trust me not. Hark! the kings +and the princes, our kindred, are going to see the +queen's picture. Come, follow us: we'll be thy +good masters. + +LEONTES: +O grave and good Paulina, the great comfort +That I have had of thee! + +PAULINA: +What, sovereign sir, +I did not well I meant well. All my services +You have paid home: but that you have vouchsafed, +With your crown'd brother and these your contracted +Heirs of your kingdoms, my poor house to visit, +It is a surplus of your grace, which never +My life may last to answer. + +LEONTES: +O Paulina, +We honour you with trouble: but we came +To see the statue of our queen: your gallery +Have we pass'd through, not without much content +In many singularities; but we saw not +That which my daughter came to look upon, +The statue of her mother. + +PAULINA: +As she lived peerless, +So her dead likeness, I do well believe, +Excels whatever yet you look'd upon +Or hand of man hath done; therefore I keep it +Lonely, apart. But here it is: prepare +To see the life as lively mock'd as ever +Still sleep mock'd death: behold, and say 'tis well. +I like your silence, it the more shows off +Your wonder: but yet speak; first, you, my liege, +Comes it not something near? + +LEONTES: +Her natural posture! +Chide me, dear stone, that I may say indeed +Thou art Hermione; or rather, thou art she +In thy not chiding, for she was as tender +As infancy and grace. But yet, Paulina, +Hermione was not so much wrinkled, nothing +So aged as this seems. + +POLIXENES: +O, not by much. + +PAULINA: +So much the more our carver's excellence; +Which lets go by some sixteen years and makes her +As she lived now. + +LEONTES: +As now she might have done, +So much to my good comfort, as it is +Now piercing to my soul. O, thus she stood, +Even with such life of majesty, warm life, +As now it coldly stands, when first I woo'd her! +I am ashamed: does not the stone rebuke me +For being more stone than it? O royal piece, +There's magic in thy majesty, which has +My evils conjured to remembrance and +From thy admiring daughter took the spirits, +Standing like stone with thee. + +PERDITA: +And give me leave, +And do not say 'tis superstition, that +I kneel and then implore her blessing. Lady, +Dear queen, that ended when I but began, +Give me that hand of yours to kiss. + +PAULINA: +O, patience! +The statue is but newly fix'd, the colour's Not dry. + +CAMILLO: +My lord, your sorrow was too sore laid on, +Which sixteen winters cannot blow away, +So many summers dry; scarce any joy +Did ever so long live; no sorrow +But kill'd itself much sooner. + +POLIXENES: +Dear my brother, +Let him that was the cause of this have power +To take off so much grief from you as he +Will piece up in himself. + +PAULINA: +Indeed, my lord, +If I had thought the sight of my poor image +Would thus have wrought you,--for the stone is mine-- +I'ld not have show'd it. + +LEONTES: +Do not draw the curtain. + +PAULINA: +No longer shall you gaze on't, lest your fancy +May think anon it moves. + +LEONTES: +Let be, let be. +Would I were dead, but that, methinks, already-- +What was he that did make it? See, my lord, +Would you not deem it breathed? and that those veins +Did verily bear blood? + +POLIXENES: +Masterly done: +The very life seems warm upon her lip. + +LEONTES: +The fixture of her eye has motion in't, +As we are mock'd with art. + +PAULINA: +I'll draw the curtain: +My lord's almost so far transported that +He'll think anon it lives. + +LEONTES: +O sweet Paulina, +Make me to think so twenty years together! +No settled senses of the world can match +The pleasure of that madness. Let 't alone. + +PAULINA: +I am sorry, sir, I have thus far stirr'd you: but +I could afflict you farther. + +LEONTES: +Do, Paulina; +For this affliction has a taste as sweet +As any cordial comfort. Still, methinks, +There is an air comes from her: what fine chisel +Could ever yet cut breath? Let no man mock me, +For I will kiss her. + +PAULINA: +Good my lord, forbear: +The ruddiness upon her lip is wet; +You'll mar it if you kiss it, stain your own +With oily painting. Shall I draw the curtain? + +LEONTES: +No, not these twenty years. + +PERDITA: +So long could I +Stand by, a looker on. + +PAULINA: +Either forbear, +Quit presently the chapel, or resolve you +For more amazement. If you can behold it, +I'll make the statue move indeed, descend +And take you by the hand; but then you'll think-- +Which I protest against--I am assisted +By wicked powers. + +LEONTES: +What you can make her do, +I am content to look on: what to speak, +I am content to hear; for 'tis as easy +To make her speak as move. + +PAULINA: +It is required +You do awake your faith. Then all stand still; +On: those that think it is unlawful business +I am about, let them depart. + +LEONTES: +Proceed: +No foot shall stir. + +PAULINA: +Music, awake her; strike! +'Tis time; descend; be stone no more; approach; +Strike all that look upon with marvel. Come, +I'll fill your grave up: stir, nay, come away, +Bequeath to death your numbness, for from him +Dear life redeems you. You perceive she stirs: +Start not; her actions shall be holy as +You hear my spell is lawful: do not shun her +Until you see her die again; for then +You kill her double. Nay, present your hand: +When she was young you woo'd her; now in age +Is she become the suitor? + +LEONTES: +O, she's warm! +If this be magic, let it be an art +Lawful as eating. + +POLIXENES: +She embraces him. + +CAMILLO: +She hangs about his neck: +If she pertain to life let her speak too. + +POLIXENES: +Ay, and make't manifest where she has lived, +Or how stolen from the dead. + +PAULINA: +That she is living, +Were it but told you, should be hooted at +Like an old tale: but it appears she lives, +Though yet she speak not. Mark a little while. +Please you to interpose, fair madam: kneel +And pray your mother's blessing. Turn, good lady; +Our Perdita is found. + +HERMIONE: +You gods, look down +And from your sacred vials pour your graces +Upon my daughter's head! Tell me, mine own. +Where hast thou been preserved? where lived? how found +Thy father's court? for thou shalt hear that I, +Knowing by Paulina that the oracle +Gave hope thou wast in being, have preserved +Myself to see the issue. + +PAULINA: +There's time enough for that; +Lest they desire upon this push to trouble +Your joys with like relation. Go together, +You precious winners all; your exultation +Partake to every one. I, an old turtle, +Will wing me to some wither'd bough and there +My mate, that's never to be found again, +Lament till I am lost. + +LEONTES: +O, peace, Paulina! +Thou shouldst a husband take by my consent, +As I by thine a wife: this is a match, +And made between's by vows. Thou hast found mine; +But how, is to be question'd; for I saw her, +As I thought, dead, and have in vain said many +A prayer upon her grave. I'll not seek far-- +For him, I partly know his mind--to find thee +An honourable husband. Come, Camillo, +And take her by the hand, whose worth and honesty +Is richly noted and here justified +By us, a pair of kings. Let's from this place. +What! look upon my brother: both your pardons, +That e'er I put between your holy looks +My ill suspicion. This is your son-in-law, +And son unto the king, who, heavens directing, +Is troth-plight to your daughter. Good Paulina, +Lead us from hence, where we may leisurely +Each one demand an answer to his part +Perform'd in this wide gap of time since first +We were dissever'd: hastily lead away. + +DUKE VINCENTIO: +Escalus. + +ESCALUS: +My lord. + +DUKE VINCENTIO: +Of government the properties to unfold, +Would seem in me to affect speech and discourse; +Since I am put to know that your own science +Exceeds, in that, the lists of all advice +My strength can give you: then no more remains, +But that to your sufficiency, as your Worth is able, +And let them work. The nature of our people, +Our city's institutions, and the terms +For common justice, you're as pregnant in +As art and practise hath enriched any +That we remember. There is our commission, +From which we would not have you warp. Call hither, +I say, bid come before us Angelo. +What figure of us think you he will bear? +For you must know, we have with special soul +Elected him our absence to supply, +Lent him our terror, dress'd him with our love, +And given his deputation all the organs +Of our own power: what think you of it? + +ESCALUS: +If any in Vienna be of worth +To undergo such ample grace and honour, +It is Lord Angelo. + +DUKE VINCENTIO: +Look where he comes. + +ANGELO: +Always obedient to your grace's will, +I come to know your pleasure. + +DUKE VINCENTIO: +Angelo, +There is a kind of character in thy life, +That to the observer doth thy history +Fully unfold. Thyself and thy belongings +Are not thine own so proper as to waste +Thyself upon thy virtues, they on thee. +Heaven doth with us as we with torches do, +Not light them for themselves; for if our virtues +Did not go forth of us, 'twere all alike +As if we had them not. Spirits are not finely touch'd +But to fine issues, nor Nature never lends +The smallest scruple of her excellence +But, like a thrifty goddess, she determines +Herself the glory of a creditor, +Both thanks and use. But I do bend my speech +To one that can my part in him advertise; +Hold therefore, Angelo:-- +In our remove be thou at full ourself; +Mortality and mercy in Vienna +Live in thy tongue and heart: old Escalus, +Though first in question, is thy secondary. +Take thy commission. + +ANGELO: +Now, good my lord, +Let there be some more test made of my metal, +Before so noble and so great a figure +Be stamp'd upon it. + +DUKE VINCENTIO: +No more evasion: +We have with a leaven'd and prepared choice +Proceeded to you; therefore take your honours. +Our haste from hence is of so quick condition +That it prefers itself and leaves unquestion'd +Matters of needful value. We shall write to you, +As time and our concernings shall importune, +How it goes with us, and do look to know +What doth befall you here. So, fare you well; +To the hopeful execution do I leave you +Of your commissions. + +ANGELO: +Yet give leave, my lord, +That we may bring you something on the way. + +DUKE VINCENTIO: +My haste may not admit it; +Nor need you, on mine honour, have to do +With any scruple; your scope is as mine own +So to enforce or qualify the laws +As to your soul seems good. Give me your hand: +I'll privily away. I love the people, +But do not like to stage me to their eyes: +Through it do well, I do not relish well +Their loud applause and Aves vehement; +Nor do I think the man of safe discretion +That does affect it. Once more, fare you well. + +ANGELO: +The heavens give safety to your purposes! + +ESCALUS: +Lead forth and bring you back in happiness! + +DUKE: +I thank you. Fare you well. + +ESCALUS: +I shall desire you, sir, to give me leave +To have free speech with you; and it concerns me +To look into the bottom of my place: +A power I have, but of what strength and nature +I am not yet instructed. + +ANGELO: +'Tis so with me. Let us withdraw together, +And we may soon our satisfaction have +Touching that point. + +ESCALUS: +I'll wait upon your honour. + +LUCIO: +If the duke with the other dukes come not to +composition with the King of Hungary, why then all +the dukes fall upon the king. + +First Gentleman: +Heaven grant us its peace, but not the King of +Hungary's! + +Second Gentleman: +Amen. + +LUCIO: +Thou concludest like the sanctimonious pirate, that +went to sea with the Ten Commandments, but scraped +one out of the table. + +Second Gentleman: +'Thou shalt not steal'? + +LUCIO: +Ay, that he razed. + +First Gentleman: +Why, 'twas a commandment to command the captain and +all the rest from their functions: they put forth +to steal. There's not a soldier of us all, that, in +the thanksgiving before meat, do relish the petition +well that prays for peace. + +Second Gentleman: +I never heard any soldier dislike it. + +LUCIO: +I believe thee; for I think thou never wast where +grace was said. + +Second Gentleman: +No? a dozen times at least. + +First Gentleman: +What, in metre? + +LUCIO: +In any proportion or in any language. + +First Gentleman: +I think, or in any religion. + +LUCIO: +Ay, why not? Grace is grace, despite of all +controversy: as, for example, thou thyself art a +wicked villain, despite of all grace. + +First Gentleman: +Well, there went but a pair of shears between us. + +LUCIO: +I grant; as there may between the lists and the +velvet. Thou art the list. + +First Gentleman: +And thou the velvet: thou art good velvet; thou'rt +a three-piled piece, I warrant thee: I had as lief +be a list of an English kersey as be piled, as thou +art piled, for a French velvet. Do I speak +feelingly now? + +LUCIO: +I think thou dost; and, indeed, with most painful +feeling of thy speech: I will, out of thine own +confession, learn to begin thy health; but, whilst I +live, forget to drink after thee. + +First Gentleman: +I think I have done myself wrong, have I not? + +Second Gentleman: +Yes, that thou hast, whether thou art tainted or free. + +LUCIO: +Behold, behold. where Madam Mitigation comes! I +have purchased as many diseases under her roof as come to-- + +Second Gentleman: +To what, I pray? + +LUCIO: +Judge. + +Second Gentleman: +To three thousand dolours a year. + +First Gentleman: +Ay, and more. + +LUCIO: +A French crown more. + +First Gentleman: +Thou art always figuring diseases in me; but thou +art full of error; I am sound. + +LUCIO: +Nay, not as one would say, healthy; but so sound as +things that are hollow: thy bones are hollow; +impiety has made a feast of thee. + +First Gentleman: +How now! which of your hips has the most profound sciatica? + +MISTRESS OVERDONE: +Well, well; there's one yonder arrested and carried +to prison was worth five thousand of you all. + +Second Gentleman: +Who's that, I pray thee? + +MISTRESS OVERDONE: +Marry, sir, that's Claudio, Signior Claudio. + +First Gentleman: +Claudio to prison? 'tis not so. + +MISTRESS OVERDONE: +Nay, but I know 'tis so: I saw him arrested, saw +him carried away; and, which is more, within these +three days his head to be chopped off. + +LUCIO: +But, after all this fooling, I would not have it so. +Art thou sure of this? + +MISTRESS OVERDONE: +I am too sure of it: and it is for getting Madam +Julietta with child. + +LUCIO: +Believe me, this may be: he promised to meet me two +hours since, and he was ever precise in +promise-keeping. + +Second Gentleman: +Besides, you know, it draws something near to the +speech we had to such a purpose. + +First Gentleman: +But, most of all, agreeing with the proclamation. + +LUCIO: +Away! let's go learn the truth of it. + +MISTRESS OVERDONE: +Thus, what with the war, what with the sweat, what +with the gallows and what with poverty, I am +custom-shrunk. +How now! what's the news with you? + +POMPEY: +Yonder man is carried to prison. + +MISTRESS OVERDONE: +Well; what has he done? + +POMPEY: +A woman. + +MISTRESS OVERDONE: +But what's his offence? + +POMPEY: +Groping for trouts in a peculiar river. + +MISTRESS OVERDONE: +What, is there a maid with child by him? + +POMPEY: +No, but there's a woman with maid by him. You have +not heard of the proclamation, have you? + +MISTRESS OVERDONE: +What proclamation, man? + +POMPEY: +All houses in the suburbs of Vienna must be plucked down. + +MISTRESS OVERDONE: +And what shall become of those in the city? + +POMPEY: +They shall stand for seed: they had gone down too, +but that a wise burgher put in for them. + +MISTRESS OVERDONE: +But shall all our houses of resort in the suburbs be +pulled down? + +POMPEY: +To the ground, mistress. + +MISTRESS OVERDONE: +Why, here's a change indeed in the commonwealth! +What shall become of me? + +POMPEY: +Come; fear you not: good counsellors lack no +clients: though you change your place, you need not +change your trade; I'll be your tapster still. +Courage! there will be pity taken on you: you that +have worn your eyes almost out in the service, you +will be considered. + +MISTRESS OVERDONE: +What's to do here, Thomas tapster? let's withdraw. + +POMPEY: +Here comes Signior Claudio, led by the provost to +prison; and there's Madam Juliet. + +CLAUDIO: +Fellow, why dost thou show me thus to the world? +Bear me to prison, where I am committed. + +Provost: +I do it not in evil disposition, +But from Lord Angelo by special charge. + +CLAUDIO: +Thus can the demigod Authority +Make us pay down for our offence by weight +The words of heaven; on whom it will, it will; +On whom it will not, so; yet still 'tis just. + +LUCIO: +Why, how now, Claudio! whence comes this restraint? + +CLAUDIO: +From too much liberty, my Lucio, liberty: +As surfeit is the father of much fast, +So every scope by the immoderate use +Turns to restraint. Our natures do pursue, +Like rats that ravin down their proper bane, +A thirsty evil; and when we drink we die. + +LUCIO: +If could speak so wisely under an arrest, I would +send for certain of my creditors: and yet, to say +the truth, I had as lief have the foppery of freedom +as the morality of imprisonment. What's thy +offence, Claudio? + +CLAUDIO: +What but to speak of would offend again. + +LUCIO: +What, is't murder? + +CLAUDIO: +No. + +LUCIO: +Lechery? + +CLAUDIO: +Call it so. + +Provost: +Away, sir! you must go. + +CLAUDIO: +One word, good friend. Lucio, a word with you. + +LUCIO: +A hundred, if they'll do you any good. +Is lechery so look'd after? + +CLAUDIO: +Thus stands it with me: upon a true contract +I got possession of Julietta's bed: +You know the lady; she is fast my wife, +Save that we do the denunciation lack +Of outward order: this we came not to, +Only for propagation of a dower +Remaining in the coffer of her friends, +From whom we thought it meet to hide our love +Till time had made them for us. But it chances +The stealth of our most mutual entertainment +With character too gross is writ on Juliet. + +LUCIO: +With child, perhaps? + +CLAUDIO: +Unhappily, even so. +And the new deputy now for the duke-- +Whether it be the fault and glimpse of newness, +Or whether that the body public be +A horse whereon the governor doth ride, +Who, newly in the seat, that it may know +He can command, lets it straight feel the spur; +Whether the tyranny be in his place, +Or in his emmence that fills it up, +I stagger in:--but this new governor +Awakes me all the enrolled penalties +Which have, like unscour'd armour, hung by the wall +So long that nineteen zodiacs have gone round +And none of them been worn; and, for a name, +Now puts the drowsy and neglected act +Freshly on me: 'tis surely for a name. + +LUCIO: +I warrant it is: and thy head stands so tickle on +thy shoulders that a milkmaid, if she be in love, +may sigh it off. Send after the duke and appeal to +him. + +CLAUDIO: +I have done so, but he's not to be found. +I prithee, Lucio, do me this kind service: +This day my sister should the cloister enter +And there receive her approbation: +Acquaint her with the danger of my state: +Implore her, in my voice, that she make friends +To the strict deputy; bid herself assay him: +I have great hope in that; for in her youth +There is a prone and speechless dialect, +Such as move men; beside, she hath prosperous art +When she will play with reason and discourse, +And well she can persuade. + +LUCIO: +I pray she may; as well for the encouragement of the +like, which else would stand under grievous +imposition, as for the enjoying of thy life, who I +would be sorry should be thus foolishly lost at a +game of tick-tack. I'll to her. + +CLAUDIO: +I thank you, good friend Lucio. + +LUCIO: +Within two hours. + +CLAUDIO: +Come, officer, away! + +DUKE VINCENTIO: +No, holy father; throw away that thought; +Believe not that the dribbling dart of love +Can pierce a complete bosom. Why I desire thee +To give me secret harbour, hath a purpose +More grave and wrinkled than the aims and ends +Of burning youth. + +FRIAR THOMAS: +May your grace speak of it? + +DUKE VINCENTIO: +My holy sir, none better knows than you +How I have ever loved the life removed +And held in idle price to haunt assemblies +Where youth, and cost, and witless bravery keeps. +I have deliver'd to Lord Angelo, +A man of stricture and firm abstinence, +My absolute power and place here in Vienna, +And he supposes me travell'd to Poland; +For so I have strew'd it in the common ear, +And so it is received. Now, pious sir, +You will demand of me why I do this? + +FRIAR THOMAS: +Gladly, my lord. + +DUKE VINCENTIO: +We have strict statutes and most biting laws. +The needful bits and curbs to headstrong weeds, +Which for this nineteen years we have let slip; +Even like an o'ergrown lion in a cave, +That goes not out to prey. Now, as fond fathers, +Having bound up the threatening twigs of birch, +Only to stick it in their children's sight +For terror, not to use, in time the rod +Becomes more mock'd than fear'd; so our decrees, +Dead to infliction, to themselves are dead; +And liberty plucks justice by the nose; +The baby beats the nurse, and quite athwart +Goes all decorum. + +FRIAR THOMAS: +It rested in your grace +To unloose this tied-up justice when you pleased: +And it in you more dreadful would have seem'd +Than in Lord Angelo. + +DUKE VINCENTIO: +I do fear, too dreadful: +Sith 'twas my fault to give the people scope, +'Twould be my tyranny to strike and gall them +For what I bid them do: for we bid this be done, +When evil deeds have their permissive pass +And not the punishment. Therefore indeed, my father, +I have on Angelo imposed the office; +Who may, in the ambush of my name, strike home, +And yet my nature never in the fight +To do in slander. And to behold his sway, +I will, as 'twere a brother of your order, +Visit both prince and people: therefore, I prithee, +Supply me with the habit and instruct me +How I may formally in person bear me +Like a true friar. More reasons for this action +At our more leisure shall I render you; +Only, this one: Lord Angelo is precise; +Stands at a guard with envy; scarce confesses +That his blood flows, or that his appetite +Is more to bread than stone: hence shall we see, +If power change purpose, what our seemers be. + +ISABELLA: +And have you nuns no farther privileges? + +FRANCISCA: +Are not these large enough? + +ISABELLA: +Yes, truly; I speak not as desiring more; +But rather wishing a more strict restraint +Upon the sisterhood, the votarists of Saint Clare. + +LUCIO: + +ISABELLA: +Who's that which calls? + +FRANCISCA: +It is a man's voice. Gentle Isabella, +Turn you the key, and know his business of him; +You may, I may not; you are yet unsworn. +When you have vow'd, you must not speak with men +But in the presence of the prioress: +Then, if you speak, you must not show your face, +Or, if you show your face, you must not speak. +He calls again; I pray you, answer him. + +ISABELLA: +Peace and prosperity! Who is't that calls + +LUCIO: +Hail, virgin, if you be, as those cheek-roses +Proclaim you are no less! Can you so stead me +As bring me to the sight of Isabella, +A novice of this place and the fair sister +To her unhappy brother Claudio? + +ISABELLA: +Why 'her unhappy brother'? let me ask, +The rather for I now must make you know +I am that Isabella and his sister. + +LUCIO: +Gentle and fair, your brother kindly greets you: +Not to be weary with you, he's in prison. + +ISABELLA: +Woe me! for what? + +LUCIO: +For that which, if myself might be his judge, +He should receive his punishment in thanks: +He hath got his friend with child. + +ISABELLA: +Sir, make me not your story. + +LUCIO: +It is true. +I would not--though 'tis my familiar sin +With maids to seem the lapwing and to jest, +Tongue far from heart--play with all virgins so: +I hold you as a thing ensky'd and sainted. +By your renouncement an immortal spirit, +And to be talk'd with in sincerity, +As with a saint. + +ISABELLA: +You do blaspheme the good in mocking me. + +LUCIO: +Do not believe it. Fewness and truth, 'tis thus: +Your brother and his lover have embraced: +As those that feed grow full, as blossoming time +That from the seedness the bare fallow brings +To teeming foison, even so her plenteous womb +Expresseth his full tilth and husbandry. + +ISABELLA: +Some one with child by him? My cousin Juliet? + +LUCIO: +Is she your cousin? + +ISABELLA: +Adoptedly; as school-maids change their names +By vain though apt affection. + +LUCIO: +She it is. + +ISABELLA: +O, let him marry her. + +LUCIO: +This is the point. +The duke is very strangely gone from hence; +Bore many gentlemen, myself being one, +In hand and hope of action: but we do learn +By those that know the very nerves of state, +His givings-out were of an infinite distance +From his true-meant design. Upon his place, +And with full line of his authority, +Governs Lord Angelo; a man whose blood +Is very snow-broth; one who never feels +The wanton stings and motions of the sense, +But doth rebate and blunt his natural edge +With profits of the mind, study and fast. +He--to give fear to use and liberty, +Which have for long run by the hideous law, +As mice by lions--hath pick'd out an act, +Under whose heavy sense your brother's life +Falls into forfeit: he arrests him on it; +And follows close the rigour of the statute, +To make him an example. All hope is gone, +Unless you have the grace by your fair prayer +To soften Angelo: and that's my pith of business +'Twixt you and your poor brother. + +ISABELLA: +Doth he so seek his life? + +LUCIO: +Has censured him +Already; and, as I hear, the provost hath +A warrant for his execution. + +ISABELLA: +Alas! what poor ability's in me +To do him good? + +LUCIO: +Assay the power you have. + +ISABELLA: +My power? Alas, I doubt-- + +LUCIO: +Our doubts are traitors +And make us lose the good we oft might win +By fearing to attempt. Go to Lord Angelo, +And let him learn to know, when maidens sue, +Men give like gods; but when they weep and kneel, +All their petitions are as freely theirs +As they themselves would owe them. + +ISABELLA: +I'll see what I can do. + +LUCIO: +But speedily. + +ISABELLA: +I will about it straight; +No longer staying but to give the mother +Notice of my affair. I humbly thank you: +Commend me to my brother: soon at night +I'll send him certain word of my success. + +LUCIO: +I take my leave of you. + +ISABELLA: +Good sir, adieu. + +ANGELO: +We must not make a scarecrow of the law, +Setting it up to fear the birds of prey, +And let it keep one shape, till custom make it +Their perch and not their terror. + +ESCALUS: +Ay, but yet +Let us be keen, and rather cut a little, +Than fall, and bruise to death. Alas, this gentleman +Whom I would save, had a most noble father! +Let but your honour know, +Whom I believe to be most strait in virtue, +That, in the working of your own affections, +Had time cohered with place or place with wishing, +Or that the resolute acting of your blood +Could have attain'd the effect of your own purpose, +Whether you had not sometime in your life +Err'd in this point which now you censure him, +And pull'd the law upon you. + +ANGELO: +'Tis one thing to be tempted, Escalus, +Another thing to fall. I not deny, +The jury, passing on the prisoner's life, +May in the sworn twelve have a thief or two +Guiltier than him they try. What's open made to justice, +That justice seizes: what know the laws +That thieves do pass on thieves? 'Tis very pregnant, +The jewel that we find, we stoop and take't +Because we see it; but what we do not see +We tread upon, and never think of it. +You may not so extenuate his offence +For I have had such faults; but rather tell me, +When I, that censure him, do so offend, +Let mine own judgment pattern out my death, +And nothing come in partial. Sir, he must die. + +ESCALUS: +Be it as your wisdom will. + +ANGELO: +Where is the provost? + +Provost: +Here, if it like your honour. + +ANGELO: +See that Claudio +Be executed by nine to-morrow morning: +Bring him his confessor, let him be prepared; +For that's the utmost of his pilgrimage. + +ESCALUS: + +ELBOW: +Come, bring them away: if these be good people in +a commonweal that do nothing but use their abuses in +common houses, I know no law: bring them away. + +ANGELO: +How now, sir! What's your name? and what's the matter? + +ELBOW: +If it Please your honour, I am the poor duke's +constable, and my name is Elbow: I do lean upon +justice, sir, and do bring in here before your good +honour two notorious benefactors. + +ANGELO: +Benefactors? Well; what benefactors are they? are +they not malefactors? + +ELBOW: +If it? please your honour, I know not well what they +are: but precise villains they are, that I am sure +of; and void of all profanation in the world that +good Christians ought to have. + +ESCALUS: +This comes off well; here's a wise officer. + +ANGELO: +Go to: what quality are they of? Elbow is your +name? why dost thou not speak, Elbow? + +POMPEY: +He cannot, sir; he's out at elbow. + +ANGELO: +What are you, sir? + +ELBOW: +He, sir! a tapster, sir; parcel-bawd; one that +serves a bad woman; whose house, sir, was, as they +say, plucked down in the suburbs; and now she +professes a hot-house, which, I think, is a very ill house too. + +ESCALUS: +How know you that? + +ELBOW: +My wife, sir, whom I detest before heaven and your honour,-- + +ESCALUS: +How? thy wife? + +ELBOW: +Ay, sir; whom, I thank heaven, is an honest woman,-- + +ESCALUS: +Dost thou detest her therefore? + +ELBOW: +I say, sir, I will detest myself also, as well as +she, that this house, if it be not a bawd's house, +it is pity of her life, for it is a naughty house. + +ESCALUS: +How dost thou know that, constable? + +ELBOW: +Marry, sir, by my wife; who, if she had been a woman +cardinally given, might have been accused in +fornication, adultery, and all uncleanliness there. + +ESCALUS: +By the woman's means? + +ELBOW: +Ay, sir, by Mistress Overdone's means: but as she +spit in his face, so she defied him. + +POMPEY: +Sir, if it please your honour, this is not so. + +ELBOW: +Prove it before these varlets here, thou honourable +man; prove it. + +ESCALUS: +Do you hear how he misplaces? + +POMPEY: +Sir, she came in great with child; and longing, +saving your honour's reverence, for stewed prunes; +sir, we had but two in the house, which at that very +distant time stood, as it were, in a fruit-dish, a +dish of some three-pence; your honours have seen +such dishes; they are not China dishes, but very +good dishes,-- + +ESCALUS: +Go to, go to: no matter for the dish, sir. + +POMPEY: +No, indeed, sir, not of a pin; you are therein in +the right: but to the point. As I say, this +Mistress Elbow, being, as I say, with child, and +being great-bellied, and longing, as I said, for +prunes; and having but two in the dish, as I said, +Master Froth here, this very man, having eaten the +rest, as I said, and, as I say, paying for them very +honestly; for, as you know, Master Froth, I could +not give you three-pence again. + +FROTH: +No, indeed. + +POMPEY: +Very well: you being then, if you be remembered, +cracking the stones of the foresaid prunes,-- + +FROTH: +Ay, so I did indeed. + +POMPEY: +Why, very well; I telling you then, if you be +remembered, that such a one and such a one were past +cure of the thing you wot of, unless they kept very +good diet, as I told you,-- + +FROTH: +All this is true. + +POMPEY: +Why, very well, then,-- + +ESCALUS: +Come, you are a tedious fool: to the purpose. What +was done to Elbow's wife, that he hath cause to +complain of? Come me to what was done to her. + +POMPEY: +Sir, your honour cannot come to that yet. + +ESCALUS: +No, sir, nor I mean it not. + +POMPEY: +Sir, but you shall come to it, by your honour's +leave. And, I beseech you, look into Master Froth +here, sir; a man of four-score pound a year; whose +father died at Hallowmas: was't not at Hallowmas, +Master Froth? + +FROTH: +All-hallond eve. + +POMPEY: +Why, very well; I hope here be truths. He, sir, +sitting, as I say, in a lower chair, sir; 'twas in +the Bunch of Grapes, where indeed you have a delight +to sit, have you not? + +FROTH: +I have so; because it is an open room and good for winter. + +POMPEY: +Why, very well, then; I hope here be truths. + +ANGELO: +This will last out a night in Russia, +When nights are longest there: I'll take my leave. +And leave you to the hearing of the cause; +Hoping you'll find good cause to whip them all. + +ESCALUS: +I think no less. Good morrow to your lordship. +Now, sir, come on: what was done to Elbow's wife, once more? + +POMPEY: +Once, sir? there was nothing done to her once. + +ELBOW: +I beseech you, sir, ask him what this man did to my wife. + +POMPEY: +I beseech your honour, ask me. + +ESCALUS: +Well, sir; what did this gentleman to her? + +POMPEY: +I beseech you, sir, look in this gentleman's face. +Good Master Froth, look upon his honour; 'tis for a +good purpose. Doth your honour mark his face? + +ESCALUS: +Ay, sir, very well. + +POMPEY: +Nay; I beseech you, mark it well. + +ESCALUS: +Well, I do so. + +POMPEY: +Doth your honour see any harm in his face? + +ESCALUS: +Why, no. + +POMPEY: +I'll be supposed upon a book, his face is the worst +thing about him. Good, then; if his face be the +worst thing about him, how could Master Froth do the +constable's wife any harm? I would know that of +your honour. + +ESCALUS: +He's in the right. Constable, what say you to it? + +ELBOW: +First, an it like you, the house is a respected +house; next, this is a respected fellow; and his +mistress is a respected woman. + +POMPEY: +By this hand, sir, his wife is a more respected +person than any of us all. + +ELBOW: +Varlet, thou liest; thou liest, wicked varlet! the +time has yet to come that she was ever respected +with man, woman, or child. + +POMPEY: +Sir, she was respected with him before he married with her. + +ESCALUS: +Which is the wiser here? Justice or Iniquity? Is +this true? + +ELBOW: +O thou caitiff! O thou varlet! O thou wicked +Hannibal! I respected with her before I was married +to her! If ever I was respected with her, or she +with me, let not your worship think me the poor +duke's officer. Prove this, thou wicked Hannibal, or +I'll have mine action of battery on thee. + +ESCALUS: +If he took you a box o' the ear, you might have your +action of slander too. + +ELBOW: +Marry, I thank your good worship for it. What is't +your worship's pleasure I shall do with this wicked caitiff? + +ESCALUS: +Truly, officer, because he hath some offences in him +that thou wouldst discover if thou couldst, let him +continue in his courses till thou knowest what they +are. + +ELBOW: +Marry, I thank your worship for it. Thou seest, thou +wicked varlet, now, what's come upon thee: thou art +to continue now, thou varlet; thou art to continue. + +ESCALUS: +Where were you born, friend? + +FROTH: +Here in Vienna, sir. + +ESCALUS: +Are you of fourscore pounds a year? + +FROTH: +Yes, an't please you, sir. + +ESCALUS: +So. What trade are you of, sir? + +POMPHEY: +Tapster; a poor widow's tapster. + +ESCALUS: +Your mistress' name? + +POMPHEY: +Mistress Overdone. + +ESCALUS: +Hath she had any more than one husband? + +POMPEY: +Nine, sir; Overdone by the last. + +ESCALUS: +Nine! Come hither to me, Master Froth. Master +Froth, I would not have you acquainted with +tapsters: they will draw you, Master Froth, and you +will hang them. Get you gone, and let me hear no +more of you. + +FROTH: +I thank your worship. For mine own part, I never +come into any room in a tap-house, but I am drawn +in. + +ESCALUS: +Well, no more of it, Master Froth: farewell. +Come you hither to me, Master tapster. What's your +name, Master tapster? + +POMPEY: +Pompey. + +ESCALUS: +What else? + +POMPEY: +Bum, sir. + +ESCALUS: +Troth, and your bum is the greatest thing about you; +so that in the beastliest sense you are Pompey the +Great. Pompey, you are partly a bawd, Pompey, +howsoever you colour it in being a tapster, are you +not? come, tell me true: it shall be the better for you. + +POMPEY: +Truly, sir, I am a poor fellow that would live. + +ESCALUS: +How would you live, Pompey? by being a bawd? What +do you think of the trade, Pompey? is it a lawful trade? + +POMPEY: +If the law would allow it, sir. + +ESCALUS: +But the law will not allow it, Pompey; nor it shall +not be allowed in Vienna. + +POMPEY: +Does your worship mean to geld and splay all the +youth of the city? + +ESCALUS: +No, Pompey. + +POMPEY: +Truly, sir, in my poor opinion, they will to't then. +If your worship will take order for the drabs and +the knaves, you need not to fear the bawds. + +ESCALUS: +There are pretty orders beginning, I can tell you: +it is but heading and hanging. + +POMPEY: +If you head and hang all that offend that way but +for ten year together, you'll be glad to give out a +commission for more heads: if this law hold in +Vienna ten year, I'll rent the fairest house in it +after three-pence a bay: if you live to see this +come to pass, say Pompey told you so. + +ESCALUS: +Thank you, good Pompey; and, in requital of your +prophecy, hark you: I advise you, let me not find +you before me again upon any complaint whatsoever; +no, not for dwelling where you do: if I do, Pompey, +I shall beat you to your tent, and prove a shrewd +Caesar to you; in plain dealing, Pompey, I shall +have you whipt: so, for this time, Pompey, fare you well. + +POMPEY: +I thank your worship for your good counsel: +but I shall follow it as the flesh and fortune shall +better determine. +Whip me? No, no; let carman whip his jade: +The valiant heart is not whipt out of his trade. + +ESCALUS: +Come hither to me, Master Elbow; come hither, Master +constable. How long have you been in this place of constable? + +ELBOW: +Seven year and a half, sir. + +ESCALUS: +I thought, by your readiness in the office, you had +continued in it some time. You say, seven years together? + +ELBOW: +And a half, sir. + +ESCALUS: +Alas, it hath been great pains to you. They do you +wrong to put you so oft upon 't: are there not men +in your ward sufficient to serve it? + +ELBOW: +Faith, sir, few of any wit in such matters: as they +are chosen, they are glad to choose me for them; I +do it for some piece of money, and go through with +all. + +ESCALUS: +Look you bring me in the names of some six or seven, +the most sufficient of your parish. + +ELBOW: +To your worship's house, sir? + +ESCALUS: +To my house. Fare you well. +What's o'clock, think you? + +Justice: +Eleven, sir. + +ESCALUS: +I pray you home to dinner with me. + +Justice: +I humbly thank you. + +ESCALUS: +It grieves me for the death of Claudio; +But there's no remedy. + +Justice: +Lord Angelo is severe. + +ESCALUS: +It is but needful: +Mercy is not itself, that oft looks so; +Pardon is still the nurse of second woe: +But yet,--poor Claudio! There is no remedy. +Come, sir. + +Servant: +He's hearing of a cause; he will come straight +I'll tell him of you. + +Provost: +Pray you, do. +I'll know +His pleasure; may be he will relent. Alas, +He hath but as offended in a dream! +All sects, all ages smack of this vice; and he +To die for't! + +ANGELO: +Now, what's the matter. Provost? + +Provost: +Is it your will Claudio shall die tomorrow? + +ANGELO: +Did not I tell thee yea? hadst thou not order? +Why dost thou ask again? + +Provost: +Lest I might be too rash: +Under your good correction, I have seen, +When, after execution, judgment hath +Repented o'er his doom. + +ANGELO: +Go to; let that be mine: +Do you your office, or give up your place, +And you shall well be spared. + +Provost: +I crave your honour's pardon. +What shall be done, sir, with the groaning Juliet? +She's very near her hour. + +ANGELO: +Dispose of her +To some more fitter place, and that with speed. + +Servant: +Here is the sister of the man condemn'd +Desires access to you. + +ANGELO: +Hath he a sister? + +Provost: +Ay, my good lord; a very virtuous maid, +And to be shortly of a sisterhood, +If not already. + +ANGELO: +Well, let her be admitted. +See you the fornicatress be removed: +Let have needful, but not lavish, means; +There shall be order for't. + +Provost: +God save your honour! + +ANGELO: +Stay a little while. +You're welcome: what's your will? + +ISABELLA: +I am a woeful suitor to your honour, +Please but your honour hear me. + +ANGELO: +Well; what's your suit? + +ISABELLA: +There is a vice that most I do abhor, +And most desire should meet the blow of justice; +For which I would not plead, but that I must; +For which I must not plead, but that I am +At war 'twixt will and will not. + +ANGELO: +Well; the matter? + +ISABELLA: +I have a brother is condemn'd to die: +I do beseech you, let it be his fault, +And not my brother. + +Provost: + +ANGELO: +Condemn the fault and not the actor of it? +Why, every fault's condemn'd ere it be done: +Mine were the very cipher of a function, +To fine the faults whose fine stands in record, +And let go by the actor. + +ISABELLA: +O just but severe law! +I had a brother, then. Heaven keep your honour! + +LUCIO: + +ISABELLA: +Must he needs die? + +ANGELO: +Maiden, no remedy. + +ISABELLA: +Yes; I do think that you might pardon him, +And neither heaven nor man grieve at the mercy. + +ANGELO: +I will not do't. + +ISABELLA: +But can you, if you would? + +ANGELO: +Look, what I will not, that I cannot do. + +ISABELLA: +But might you do't, and do the world no wrong, +If so your heart were touch'd with that remorse +As mine is to him? + +ANGELO: +He's sentenced; 'tis too late. + +LUCIO: + +ISABELLA: +Too late? why, no; I, that do speak a word. +May call it back again. Well, believe this, +No ceremony that to great ones 'longs, +Not the king's crown, nor the deputed sword, +The marshal's truncheon, nor the judge's robe, +Become them with one half so good a grace +As mercy does. +If he had been as you and you as he, +You would have slipt like him; but he, like you, +Would not have been so stern. + +ANGELO: +Pray you, be gone. + +ISABELLA: +I would to heaven I had your potency, +And you were Isabel! should it then be thus? +No; I would tell what 'twere to be a judge, +And what a prisoner. + +LUCIO: + +ANGELO: +Your brother is a forfeit of the law, +And you but waste your words. + +ISABELLA: +Alas, alas! +Why, all the souls that were were forfeit once; +And He that might the vantage best have took +Found out the remedy. How would you be, +If He, which is the top of judgment, should +But judge you as you are? O, think on that; +And mercy then will breathe within your lips, +Like man new made. + +ANGELO: +Be you content, fair maid; +It is the law, not I condemn your brother: +Were he my kinsman, brother, or my son, +It should be thus with him: he must die tomorrow. + +ISABELLA: +To-morrow! O, that's sudden! Spare him, spare him! +He's not prepared for death. Even for our kitchens +We kill the fowl of season: shall we serve heaven +With less respect than we do minister +To our gross selves? Good, good my lord, bethink you; +Who is it that hath died for this offence? +There's many have committed it. + +LUCIO: + +ANGELO: +The law hath not been dead, though it hath slept: +Those many had not dared to do that evil, +If the first that did the edict infringe +Had answer'd for his deed: now 'tis awake +Takes note of what is done; and, like a prophet, +Looks in a glass, that shows what future evils, +Either new, or by remissness new-conceived, +And so in progress to be hatch'd and born, +Are now to have no successive degrees, +But, ere they live, to end. + +ISABELLA: +Yet show some pity. + +ANGELO: +I show it most of all when I show justice; +For then I pity those I do not know, +Which a dismiss'd offence would after gall; +And do him right that, answering one foul wrong, +Lives not to act another. Be satisfied; +Your brother dies to-morrow; be content. + +ISABELLA: +So you must be the first that gives this sentence, +And he, that suffer's. O, it is excellent +To have a giant's strength; but it is tyrannous +To use it like a giant. + +LUCIO: + +ISABELLA: +Could great men thunder +As Jove himself does, Jove would ne'er be quiet, +For every pelting, petty officer +Would use his heaven for thunder; +Nothing but thunder! Merciful Heaven, +Thou rather with thy sharp and sulphurous bolt +Split'st the unwedgeable and gnarled oak +Than the soft myrtle: but man, proud man, +Drest in a little brief authority, +Most ignorant of what he's most assured, +His glassy essence, like an angry ape, +Plays such fantastic tricks before high heaven +As make the angels weep; who, with our spleens, +Would all themselves laugh mortal. + +LUCIO: + +Provost: + +ISABELLA: +We cannot weigh our brother with ourself: +Great men may jest with saints; 'tis wit in them, +But in the less foul profanation. + +LUCIO: +Thou'rt i' the right, girl; more o, that. + +ISABELLA: +That in the captain's but a choleric word, +Which in the soldier is flat blasphemy. + +LUCIO: + +ANGELO: +Why do you put these sayings upon me? + +ISABELLA: +Because authority, though it err like others, +Hath yet a kind of medicine in itself, +That skins the vice o' the top. Go to your bosom; +Knock there, and ask your heart what it doth know +That's like my brother's fault: if it confess +A natural guiltiness such as is his, +Let it not sound a thought upon your tongue +Against my brother's life. + +ANGELO: + +ISABELLA: +Gentle my lord, turn back. + +ANGELO: +I will bethink me: come again tomorrow. + +ISABELLA: +Hark how I'll bribe you: good my lord, turn back. + +ANGELO: +How! bribe me? + +ISABELLA: +Ay, with such gifts that heaven shall share with you. + +LUCIO: + +ISABELLA: +Not with fond shekels of the tested gold, +Or stones whose rates are either rich or poor +As fancy values them; but with true prayers +That shall be up at heaven and enter there +Ere sun-rise, prayers from preserved souls, +From fasting maids whose minds are dedicate +To nothing temporal. + +ANGELO: +Well; come to me to-morrow. + +LUCIO: + +ISABELLA: +Heaven keep your honour safe! + +ANGELO: + +ISABELLA: +At what hour to-morrow +Shall I attend your lordship? + +ANGELO: +At any time 'fore noon. + +ISABELLA: +'Save your honour! + +ANGELO: +From thee, even from thy virtue! +What's this, what's this? Is this her fault or mine? +The tempter or the tempted, who sins most? +Ha! +Not she: nor doth she tempt: but it is I +That, lying by the violet in the sun, +Do as the carrion does, not as the flower, +Corrupt with virtuous season. Can it be +That modesty may more betray our sense +Than woman's lightness? Having waste ground enough, +Shall we desire to raze the sanctuary +And pitch our evils there? O, fie, fie, fie! +What dost thou, or what art thou, Angelo? +Dost thou desire her foully for those things +That make her good? O, let her brother live! +Thieves for their robbery have authority +When judges steal themselves. What, do I love her, +That I desire to hear her speak again, +And feast upon her eyes? What is't I dream on? +O cunning enemy, that, to catch a saint, +With saints dost bait thy hook! Most dangerous +Is that temptation that doth goad us on +To sin in loving virtue: never could the strumpet, +With all her double vigour, art and nature, +Once stir my temper; but this virtuous maid +Subdues me quite. Even till now, +When men were fond, I smiled and wonder'd how. + +DUKE VINCENTIO: +Hail to you, provost! so I think you are. + +Provost: +I am the provost. What's your will, good friar? + +DUKE VINCENTIO: +Bound by my charity and my blest order, +I come to visit the afflicted spirits +Here in the prison. Do me the common right +To let me see them and to make me know +The nature of their crimes, that I may minister +To them accordingly. + +Provost: +I would do more than that, if more were needful. +Look, here comes one: a gentlewoman of mine, +Who, falling in the flaws of her own youth, +Hath blister'd her report: she is with child; +And he that got it, sentenced; a young man +More fit to do another such offence +Than die for this. + +DUKE VINCENTIO: +When must he die? + +Provost: +As I do think, to-morrow. +I have provided for you: stay awhile, +And you shall be conducted. + +DUKE VINCENTIO: +Repent you, fair one, of the sin you carry? + +JULIET: +I do; and bear the shame most patiently. + +DUKE VINCENTIO: +I'll teach you how you shall arraign your conscience, +And try your penitence, if it be sound, +Or hollowly put on. + +JULIET: +I'll gladly learn. + +DUKE VINCENTIO: +Love you the man that wrong'd you? + +JULIET: +Yes, as I love the woman that wrong'd him. + +DUKE VINCENTIO: +So then it seems your most offenceful act +Was mutually committed? + +JULIET: +Mutually. + +DUKE VINCENTIO: +Then was your sin of heavier kind than his. + +JULIET: +I do confess it, and repent it, father. + +DUKE VINCENTIO: +'Tis meet so, daughter: but lest you do repent, +As that the sin hath brought you to this shame, +Which sorrow is always towards ourselves, not heaven, +Showing we would not spare heaven as we love it, +But as we stand in fear,-- + +JULIET: +I do repent me, as it is an evil, +And take the shame with joy. + +DUKE VINCENTIO: +There rest. +Your partner, as I hear, must die to-morrow, +And I am going with instruction to him. +Grace go with you, Benedicite! + +JULIET: +Must die to-morrow! O injurious love, +That respites me a life, whose very comfort +Is still a dying horror! + +Provost: +'Tis pity of him. + +ANGELO: +When I would pray and think, I think and pray +To several subjects. Heaven hath my empty words; +Whilst my invention, hearing not my tongue, +Anchors on Isabel: Heaven in my mouth, +As if I did but only chew his name; +And in my heart the strong and swelling evil +Of my conception. The state, whereon I studied +Is like a good thing, being often read, +Grown fear'd and tedious; yea, my gravity, +Wherein--let no man hear me--I take pride, +Could I with boot change for an idle plume, +Which the air beats for vain. O place, O form, +How often dost thou with thy case, thy habit, +Wrench awe from fools and tie the wiser souls +To thy false seeming! Blood, thou art blood: +Let's write good angel on the devil's horn: +'Tis not the devil's crest. +How now! who's there? + +Servant: +One Isabel, a sister, desires access to you. + +ANGELO: +Teach her the way. +O heavens! +Why does my blood thus muster to my heart, +Making both it unable for itself, +And dispossessing all my other parts +Of necessary fitness? +So play the foolish throngs with one that swoons; +Come all to help him, and so stop the air +By which he should revive: and even so +The general, subject to a well-wish'd king, +Quit their own part, and in obsequious fondness +Crowd to his presence, where their untaught love +Must needs appear offence. +How now, fair maid? + +ISABELLA: +I am come to know your pleasure. + +ANGELO: +That you might know it, would much better please me +Than to demand what 'tis. Your brother cannot live. + +ISABELLA: +Even so. Heaven keep your honour! + +ANGELO: +Yet may he live awhile; and, it may be, +As long as you or I yet he must die. + +ISABELLA: +Under your sentence? + +ANGELO: +Yea. + +ISABELLA: +When, I beseech you? that in his reprieve, +Longer or shorter, he may be so fitted +That his soul sicken not. + +ANGELO: +Ha! fie, these filthy vices! It were as good +To pardon him that hath from nature stolen +A man already made, as to remit +Their saucy sweetness that do coin heaven's image +In stamps that are forbid: 'tis all as easy +Falsely to take away a life true made +As to put metal in restrained means +To make a false one. + +ISABELLA: +'Tis set down so in heaven, but not in earth. + +ANGELO: +Say you so? then I shall pose you quickly. +Which had you rather, that the most just law +Now took your brother's life; or, to redeem him, +Give up your body to such sweet uncleanness +As she that he hath stain'd? + +ISABELLA: +Sir, believe this, +I had rather give my body than my soul. + +ANGELO: +I talk not of your soul: our compell'd sins +Stand more for number than for accompt. + +ISABELLA: +How say you? + +ANGELO: +Nay, I'll not warrant that; for I can speak +Against the thing I say. Answer to this: +I, now the voice of the recorded law, +Pronounce a sentence on your brother's life: +Might there not be a charity in sin +To save this brother's life? + +ISABELLA: +Please you to do't, +I'll take it as a peril to my soul, +It is no sin at all, but charity. + +ANGELO: +Pleased you to do't at peril of your soul, +Were equal poise of sin and charity. + +ISABELLA: +That I do beg his life, if it be sin, +Heaven let me bear it! you granting of my suit, +If that be sin, I'll make it my morn prayer +To have it added to the faults of mine, +And nothing of your answer. + +ANGELO: +Nay, but hear me. +Your sense pursues not mine: either you are ignorant, +Or seem so craftily; and that's not good. + +ISABELLA: +Let me be ignorant, and in nothing good, +But graciously to know I am no better. + +ANGELO: +Thus wisdom wishes to appear most bright +When it doth tax itself; as these black masks +Proclaim an enshield beauty ten times louder +Than beauty could, display'd. But mark me; +To be received plain, I'll speak more gross: +Your brother is to die. + +ISABELLA: +So. + +ANGELO: +And his offence is so, as it appears, +Accountant to the law upon that pain. + +ISABELLA: +True. + +ANGELO: +Admit no other way to save his life,-- +As I subscribe not that, nor any other, +But in the loss of question,--that you, his sister, +Finding yourself desired of such a person, +Whose credit with the judge, or own great place, +Could fetch your brother from the manacles +Of the all-building law; and that there were +No earthly mean to save him, but that either +You must lay down the treasures of your body +To this supposed, or else to let him suffer; +What would you do? + +ISABELLA: +As much for my poor brother as myself: +That is, were I under the terms of death, +The impression of keen whips I'ld wear as rubies, +And strip myself to death, as to a bed +That longing have been sick for, ere I'ld yield +My body up to shame. + +ANGELO: +Then must your brother die. + +ISABELLA: +And 'twere the cheaper way: +Better it were a brother died at once, +Than that a sister, by redeeming him, +Should die for ever. + +ANGELO: +Were not you then as cruel as the sentence +That you have slander'd so? + +ISABELLA: +Ignomy in ransom and free pardon +Are of two houses: lawful mercy +Is nothing kin to foul redemption. + +ANGELO: +You seem'd of late to make the law a tyrant; +And rather proved the sliding of your brother +A merriment than a vice. + +ISABELLA: +O, pardon me, my lord; it oft falls out, +To have what we would have, we speak not what we mean: +I something do excuse the thing I hate, +For his advantage that I dearly love. + +ANGELO: +We are all frail. + +ISABELLA: +Else let my brother die, +If not a feodary, but only he +Owe and succeed thy weakness. + +ANGELO: +Nay, women are frail too. + +ISABELLA: +Ay, as the glasses where they view themselves; +Which are as easy broke as they make forms. +Women! Help Heaven! men their creation mar +In profiting by them. Nay, call us ten times frail; +For we are soft as our complexions are, +And credulous to false prints. + +ANGELO: +I think it well: +And from this testimony of your own sex,-- +Since I suppose we are made to be no stronger +Than faults may shake our frames,--let me be bold; +I do arrest your words. Be that you are, +That is, a woman; if you be more, you're none; +If you be one, as you are well express'd +By all external warrants, show it now, +By putting on the destined livery. + +ISABELLA: +I have no tongue but one: gentle my lord, +Let me entreat you speak the former language. + +ANGELO: +Plainly conceive, I love you. + +ISABELLA: +My brother did love Juliet, +And you tell me that he shall die for it. + +ANGELO: +He shall not, Isabel, if you give me love. + +ISABELLA: +I know your virtue hath a licence in't, +Which seems a little fouler than it is, +To pluck on others. + +ANGELO: +Believe me, on mine honour, +My words express my purpose. + +ISABELLA: +Ha! little honour to be much believed, +And most pernicious purpose! Seeming, seeming! +I will proclaim thee, Angelo; look for't: +Sign me a present pardon for my brother, +Or with an outstretch'd throat I'll tell the world aloud +What man thou art. + +ANGELO: +Who will believe thee, Isabel? +My unsoil'd name, the austereness of my life, +My vouch against you, and my place i' the state, +Will so your accusation overweigh, +That you shall stifle in your own report +And smell of calumny. I have begun, +And now I give my sensual race the rein: +Fit thy consent to my sharp appetite; +Lay by all nicety and prolixious blushes, +That banish what they sue for; redeem thy brother +By yielding up thy body to my will; +Or else he must not only die the death, +But thy unkindness shall his death draw out +To lingering sufferance. Answer me to-morrow, +Or, by the affection that now guides me most, +I'll prove a tyrant to him. As for you, +Say what you can, my false o'erweighs your true. + +ISABELLA: +To whom should I complain? Did I tell this, +Who would believe me? O perilous mouths, +That bear in them one and the self-same tongue, +Either of condemnation or approof; +Bidding the law make court'sy to their will: +Hooking both right and wrong to the appetite, +To follow as it draws! I'll to my brother: +Though he hath fallen by prompture of the blood, +Yet hath he in him such a mind of honour. +That, had he twenty heads to tender down +On twenty bloody blocks, he'ld yield them up, +Before his sister should her body stoop +To such abhorr'd pollution. +Then, Isabel, live chaste, and, brother, die: +More than our brother is our chastity. +I'll tell him yet of Angelo's request, +And fit his mind to death, for his soul's rest. + +DUKE VINCENTIO: +So then you hope of pardon from Lord Angelo? + +CLAUDIO: +The miserable have no other medicine +But only hope: +I've hope to live, and am prepared to die. + +DUKE VINCENTIO: +Be absolute for death; either death or life +Shall thereby be the sweeter. Reason thus with life: +If I do lose thee, I do lose a thing +That none but fools would keep: a breath thou art, +Servile to all the skyey influences, +That dost this habitation, where thou keep'st, +Hourly afflict: merely, thou art death's fool; +For him thou labour'st by thy flight to shun +And yet runn'st toward him still. Thou art not noble; +For all the accommodations that thou bear'st +Are nursed by baseness. Thou'rt by no means valiant; +For thou dost fear the soft and tender fork +Of a poor worm. Thy best of rest is sleep, +And that thou oft provokest; yet grossly fear'st +Thy death, which is no more. Thou art not thyself; +For thou exist'st on many a thousand grains +That issue out of dust. Happy thou art not; +For what thou hast not, still thou strivest to get, +And what thou hast, forget'st. Thou art not certain; +For thy complexion shifts to strange effects, +After the moon. If thou art rich, thou'rt poor; +For, like an ass whose back with ingots bows, +Thou bear's thy heavy riches but a journey, +And death unloads thee. Friend hast thou none; +For thine own bowels, which do call thee sire, +The mere effusion of thy proper loins, +Do curse the gout, serpigo, and the rheum, +For ending thee no sooner. Thou hast nor youth nor age, +But, as it were, an after-dinner's sleep, +Dreaming on both; for all thy blessed youth +Becomes as aged, and doth beg the alms +Of palsied eld; and when thou art old and rich, +Thou hast neither heat, affection, limb, nor beauty, +To make thy riches pleasant. What's yet in this +That bears the name of life? Yet in this life +Lie hid moe thousand deaths: yet death we fear, +That makes these odds all even. + +CLAUDIO: +I humbly thank you. +To sue to live, I find I seek to die; +And, seeking death, find life: let it come on. + +ISABELLA: + +Provost: +Who's there? come in: the wish deserves a welcome. + +DUKE VINCENTIO: +Dear sir, ere long I'll visit you again. + +CLAUDIO: +Most holy sir, I thank you. + +ISABELLA: +My business is a word or two with Claudio. + +Provost: +And very welcome. Look, signior, here's your sister. + +DUKE VINCENTIO: +Provost, a word with you. + +Provost: +As many as you please. + +DUKE VINCENTIO: +Bring me to hear them speak, where I may be concealed. + +CLAUDIO: +Now, sister, what's the comfort? + +ISABELLA: +Why, +As all comforts are; most good, most good indeed. +Lord Angelo, having affairs to heaven, +Intends you for his swift ambassador, +Where you shall be an everlasting leiger: +Therefore your best appointment make with speed; +To-morrow you set on. + +CLAUDIO: +Is there no remedy? + +ISABELLA: +None, but such remedy as, to save a head, +To cleave a heart in twain. + +CLAUDIO: +But is there any? + +ISABELLA: +Yes, brother, you may live: +There is a devilish mercy in the judge, +If you'll implore it, that will free your life, +But fetter you till death. + +CLAUDIO: +Perpetual durance? + +ISABELLA: +Ay, just; perpetual durance, a restraint, +Though all the world's vastidity you had, +To a determined scope. + +CLAUDIO: +But in what nature? + +ISABELLA: +In such a one as, you consenting to't, +Would bark your honour from that trunk you bear, +And leave you naked. + +CLAUDIO: +Let me know the point. + +ISABELLA: +O, I do fear thee, Claudio; and I quake, +Lest thou a feverous life shouldst entertain, +And six or seven winters more respect +Than a perpetual honour. Darest thou die? +The sense of death is most in apprehension; +And the poor beetle, that we tread upon, +In corporal sufferance finds a pang as great +As when a giant dies. + +CLAUDIO: +Why give you me this shame? +Think you I can a resolution fetch +From flowery tenderness? If I must die, +I will encounter darkness as a bride, +And hug it in mine arms. + +ISABELLA: +There spake my brother; there my father's grave +Did utter forth a voice. Yes, thou must die: +Thou art too noble to conserve a life +In base appliances. This outward-sainted deputy, +Whose settled visage and deliberate word +Nips youth i' the head and follies doth emmew +As falcon doth the fowl, is yet a devil +His filth within being cast, he would appear +A pond as deep as hell. + +CLAUDIO: +The prenzie Angelo! + +ISABELLA: +O, 'tis the cunning livery of hell, +The damned'st body to invest and cover +In prenzie guards! Dost thou think, Claudio? +If I would yield him my virginity, +Thou mightst be freed. + +CLAUDIO: +O heavens! it cannot be. + +ISABELLA: +Yes, he would give't thee, from this rank offence, +So to offend him still. This night's the time +That I should do what I abhor to name, +Or else thou diest to-morrow. + +CLAUDIO: +Thou shalt not do't. + +ISABELLA: +O, were it but my life, +I'ld throw it down for your deliverance +As frankly as a pin. + +CLAUDIO: +Thanks, dear Isabel. + +ISABELLA: +Be ready, Claudio, for your death tomorrow. + +CLAUDIO: +Yes. Has he affections in him, +That thus can make him bite the law by the nose, +When he would force it? Sure, it is no sin, +Or of the deadly seven, it is the least. + +ISABELLA: +Which is the least? + +CLAUDIO: +If it were damnable, he being so wise, +Why would he for the momentary trick +Be perdurably fined? O Isabel! + +ISABELLA: +What says my brother? + +CLAUDIO: +Death is a fearful thing. + +ISABELLA: +And shamed life a hateful. + +CLAUDIO: +Ay, but to die, and go we know not where; +To lie in cold obstruction and to rot; +This sensible warm motion to become +A kneaded clod; and the delighted spirit +To bathe in fiery floods, or to reside +In thrilling region of thick-ribbed ice; +To be imprison'd in the viewless winds, +And blown with restless violence round about +The pendent world; or to be worse than worst +Of those that lawless and incertain thought +Imagine howling: 'tis too horrible! +The weariest and most loathed worldly life +That age, ache, penury and imprisonment +Can lay on nature is a paradise +To what we fear of death. + +ISABELLA: +Alas, alas! + +CLAUDIO: +Sweet sister, let me live: +What sin you do to save a brother's life, +Nature dispenses with the deed so far +That it becomes a virtue. + +ISABELLA: +O you beast! +O faithless coward! O dishonest wretch! +Wilt thou be made a man out of my vice? +Is't not a kind of incest, to take life +From thine own sister's shame? What should I think? +Heaven shield my mother play'd my father fair! +For such a warped slip of wilderness +Ne'er issued from his blood. Take my defiance! +Die, perish! Might but my bending down +Reprieve thee from thy fate, it should proceed: +I'll pray a thousand prayers for thy death, +No word to save thee. + +CLAUDIO: +Nay, hear me, Isabel. + +ISABELLA: +O, fie, fie, fie! +Thy sin's not accidental, but a trade. +Mercy to thee would prove itself a bawd: +'Tis best thou diest quickly. + +CLAUDIO: +O hear me, Isabella! + +DUKE VINCENTIO: +Vouchsafe a word, young sister, but one word. + +ISABELLA: +What is your will? + +DUKE VINCENTIO: +Might you dispense with your leisure, I would by and +by have some speech with you: the satisfaction I +would require is likewise your own benefit. + +ISABELLA: +I have no superfluous leisure; my stay must be +stolen out of other affairs; but I will attend you awhile. + +DUKE VINCENTIO: +Son, I have overheard what hath passed between you +and your sister. Angelo had never the purpose to +corrupt her; only he hath made an essay of her +virtue to practise his judgment with the disposition +of natures: she, having the truth of honour in her, +hath made him that gracious denial which he is most +glad to receive. I am confessor to Angelo, and I +know this to be true; therefore prepare yourself to +death: do not satisfy your resolution with hopes +that are fallible: tomorrow you must die; go to +your knees and make ready. + +CLAUDIO: +Let me ask my sister pardon. I am so out of love +with life that I will sue to be rid of it. + +DUKE VINCENTIO: +Hold you there: farewell. +Provost, a word with you! + +Provost: +What's your will, father + +DUKE VINCENTIO: +That now you are come, you will be gone. Leave me +awhile with the maid: my mind promises with my +habit no loss shall touch her by my company. + +Provost: +In good time. + +DUKE VINCENTIO: +The hand that hath made you fair hath made you good: +the goodness that is cheap in beauty makes beauty +brief in goodness; but grace, being the soul of +your complexion, shall keep the body of it ever +fair. The assault that Angelo hath made to you, +fortune hath conveyed to my understanding; and, but +that frailty hath examples for his falling, I should +wonder at Angelo. How will you do to content this +substitute, and to save your brother? + +ISABELLA: +I am now going to resolve him: I had rather my +brother die by the law than my son should be +unlawfully born. But, O, how much is the good duke +deceived in Angelo! If ever he return and I can +speak to him, I will open my lips in vain, or +discover his government. + +DUKE VINCENTIO: +That shall not be much amiss: Yet, as the matter +now stands, he will avoid your accusation; he made +trial of you only. Therefore fasten your ear on my +advisings: to the love I have in doing good a +remedy presents itself. I do make myself believe +that you may most uprighteously do a poor wronged +lady a merited benefit; redeem your brother from +the angry law; do no stain to your own gracious +person; and much please the absent duke, if +peradventure he shall ever return to have hearing of +this business. + +ISABELLA: +Let me hear you speak farther. I have spirit to do +anything that appears not foul in the truth of my spirit. + +DUKE VINCENTIO: +Virtue is bold, and goodness never fearful. Have +you not heard speak of Mariana, the sister of +Frederick the great soldier who miscarried at sea? + +ISABELLA: +I have heard of the lady, and good words went with her name. + +DUKE VINCENTIO: +She should this Angelo have married; was affianced +to her by oath, and the nuptial appointed: between +which time of the contract and limit of the +solemnity, her brother Frederick was wrecked at sea, +having in that perished vessel the dowry of his +sister. But mark how heavily this befell to the +poor gentlewoman: there she lost a noble and +renowned brother, in his love toward her ever most +kind and natural; with him, the portion and sinew of +her fortune, her marriage-dowry; with both, her +combinate husband, this well-seeming Angelo. + +ISABELLA: +Can this be so? did Angelo so leave her? + +DUKE VINCENTIO: +Left her in her tears, and dried not one of them +with his comfort; swallowed his vows whole, +pretending in her discoveries of dishonour: in few, +bestowed her on her own lamentation, which she yet +wears for his sake; and he, a marble to her tears, +is washed with them, but relents not. + +ISABELLA: +What a merit were it in death to take this poor maid +from the world! What corruption in this life, that +it will let this man live! But how out of this can she avail? + +DUKE VINCENTIO: +It is a rupture that you may easily heal: and the +cure of it not only saves your brother, but keeps +you from dishonour in doing it. + +ISABELLA: +Show me how, good father. + +DUKE VINCENTIO: +This forenamed maid hath yet in her the continuance +of her first affection: his unjust unkindness, that +in all reason should have quenched her love, hath, +like an impediment in the current, made it more +violent and unruly. Go you to Angelo; answer his +requiring with a plausible obedience; agree with +his demands to the point; only refer yourself to +this advantage, first, that your stay with him may +not be long; that the time may have all shadow and +silence in it; and the place answer to convenience. +This being granted in course,--and now follows +all,--we shall advise this wronged maid to stead up +your appointment, go in your place; if the encounter +acknowledge itself hereafter, it may compel him to +her recompense: and here, by this, is your brother +saved, your honour untainted, the poor Mariana +advantaged, and the corrupt deputy scaled. The maid +will I frame and make fit for his attempt. If you +think well to carry this as you may, the doubleness +of the benefit defends the deceit from reproof. +What think you of it? + +ISABELLA: +The image of it gives me content already; and I +trust it will grow to a most prosperous perfection. + +DUKE VINCENTIO: +It lies much in your holding up. Haste you speedily +to Angelo: if for this night he entreat you to his +bed, give him promise of satisfaction. I will +presently to Saint Luke's: there, at the moated +grange, resides this dejected Mariana. At that +place call upon me; and dispatch with Angelo, that +it may be quickly. + +ISABELLA: +I thank you for this comfort. Fare you well, good father. + +ELBOW: +Nay, if there be no remedy for it, but that you will +needs buy and sell men and women like beasts, we +shall have all the world drink brown and white bastard. + +DUKE VINCENTIO: +O heavens! what stuff is here + +POMPEY: +'Twas never merry world since, of two usuries, the +merriest was put down, and the worser allowed by +order of law a furred gown to keep him warm; and +furred with fox and lamb-skins too, to signify, that +craft, being richer than innocency, stands for the facing. + +ELBOW: +Come your way, sir. 'Bless you, good father friar. + +DUKE VINCENTIO: +And you, good brother father. What offence hath +this man made you, sir? + +ELBOW: +Marry, sir, he hath offended the law: and, sir, we +take him to be a thief too, sir; for we have found +upon him, sir, a strange picklock, which we have +sent to the deputy. + +DUKE VINCENTIO: +Fie, sirrah! a bawd, a wicked bawd! +The evil that thou causest to be done, +That is thy means to live. Do thou but think +What 'tis to cram a maw or clothe a back +From such a filthy vice: say to thyself, +From their abominable and beastly touches +I drink, I eat, array myself, and live. +Canst thou believe thy living is a life, +So stinkingly depending? Go mend, go mend. + +POMPEY: +Indeed, it does stink in some sort, sir; but yet, +sir, I would prove-- + +DUKE VINCENTIO: +Nay, if the devil have given thee proofs for sin, +Thou wilt prove his. Take him to prison, officer: +Correction and instruction must both work +Ere this rude beast will profit. + +ELBOW: +He must before the deputy, sir; he has given him +warning: the deputy cannot abide a whoremaster: if +he be a whoremonger, and comes before him, he were +as good go a mile on his errand. + +DUKE VINCENTIO: +That we were all, as some would seem to be, +From our faults, as faults from seeming, free! + +ELBOW: +His neck will come to your waist,--a cord, sir. + +POMPEY: +I spy comfort; I cry bail. Here's a gentleman and a +friend of mine. + +LUCIO: +How now, noble Pompey! What, at the wheels of +Caesar? art thou led in triumph? What, is there +none of Pygmalion's images, newly made woman, to be +had now, for putting the hand in the pocket and +extracting it clutch'd? What reply, ha? What +sayest thou to this tune, matter and method? Is't +not drowned i' the last rain, ha? What sayest +thou, Trot? Is the world as it was, man? Which is +the way? Is it sad, and few words? or how? The +trick of it? + +DUKE VINCENTIO: +Still thus, and thus; still worse! + +LUCIO: +How doth my dear morsel, thy mistress? Procures she +still, ha? + +POMPEY: +Troth, sir, she hath eaten up all her beef, and she +is herself in the tub. + +LUCIO: +Why, 'tis good; it is the right of it; it must be +so: ever your fresh whore and your powdered bawd: +an unshunned consequence; it must be so. Art going +to prison, Pompey? + +POMPEY: +Yes, faith, sir. + +LUCIO: +Why, 'tis not amiss, Pompey. Farewell: go, say I +sent thee thither. For debt, Pompey? or how? + +ELBOW: +For being a bawd, for being a bawd. + +LUCIO: +Well, then, imprison him: if imprisonment be the +due of a bawd, why, 'tis his right: bawd is he +doubtless, and of antiquity too; bawd-born. +Farewell, good Pompey. Commend me to the prison, +Pompey: you will turn good husband now, Pompey; you +will keep the house. + +POMPEY: +I hope, sir, your good worship will be my bail. + +LUCIO: +No, indeed, will I not, Pompey; it is not the wear. +I will pray, Pompey, to increase your bondage: If +you take it not patiently, why, your mettle is the +more. Adieu, trusty Pompey. 'Bless you, friar. + +DUKE VINCENTIO: +And you. + +LUCIO: +Does Bridget paint still, Pompey, ha? + +ELBOW: +Come your ways, sir; come. + +POMPEY: +You will not bail me, then, sir? + +LUCIO: +Then, Pompey, nor now. What news abroad, friar? +what news? + +ELBOW: +Come your ways, sir; come. + +LUCIO: +Go to kennel, Pompey; go. +What news, friar, of the duke? + +DUKE VINCENTIO: +I know none. Can you tell me of any? + +LUCIO: +Some say he is with the Emperor of Russia; other +some, he is in Rome: but where is he, think you? + +DUKE VINCENTIO: +I know not where; but wheresoever, I wish him well. + +LUCIO: +It was a mad fantastical trick of him to steal from +the state, and usurp the beggary he was never born +to. Lord Angelo dukes it well in his absence; he +puts transgression to 't. + +DUKE VINCENTIO: +He does well in 't. + +LUCIO: +A little more lenity to lechery would do no harm in +him: something too crabbed that way, friar. + +DUKE VINCENTIO: +It is too general a vice, and severity must cure it. + +LUCIO: +Yes, in good sooth, the vice is of a great kindred; +it is well allied: but it is impossible to extirp +it quite, friar, till eating and drinking be put +down. They say this Angelo was not made by man and +woman after this downright way of creation: is it +true, think you? + +DUKE VINCENTIO: +How should he be made, then? + +LUCIO: +Some report a sea-maid spawned him; some, that he +was begot between two stock-fishes. But it is +certain that when he makes water his urine is +congealed ice; that I know to be true: and he is a +motion generative; that's infallible. + +DUKE VINCENTIO: +You are pleasant, sir, and speak apace. + +LUCIO: +Why, what a ruthless thing is this in him, for the +rebellion of a codpiece to take away the life of a +man! Would the duke that is absent have done this? +Ere he would have hanged a man for the getting a +hundred bastards, he would have paid for the nursing +a thousand: he had some feeling of the sport: he +knew the service, and that instructed him to mercy. + +DUKE VINCENTIO: +I never heard the absent duke much detected for +women; he was not inclined that way. + +LUCIO: +O, sir, you are deceived. + +DUKE VINCENTIO: +'Tis not possible. + +LUCIO: +Who, not the duke? yes, your beggar of fifty; and +his use was to put a ducat in her clack-dish: the +duke had crotchets in him. He would be drunk too; +that let me inform you. + +DUKE VINCENTIO: +You do him wrong, surely. + +LUCIO: +Sir, I was an inward of his. A shy fellow was the +duke: and I believe I know the cause of his +withdrawing. + +DUKE VINCENTIO: +What, I prithee, might be the cause? + +LUCIO: +No, pardon; 'tis a secret must be locked within the +teeth and the lips: but this I can let you +understand, the greater file of the subject held the +duke to be wise. + +DUKE VINCENTIO: +Wise! why, no question but he was. + +LUCIO: +A very superficial, ignorant, unweighing fellow. + +DUKE VINCENTIO: +Either this is the envy in you, folly, or mistaking: +the very stream of his life and the business he hath +helmed must upon a warranted need give him a better +proclamation. Let him be but testimonied in his own +bringings-forth, and he shall appear to the +envious a scholar, a statesman and a soldier. +Therefore you speak unskilfully: or if your +knowledge be more it is much darkened in your malice. + +LUCIO: +Sir, I know him, and I love him. + +DUKE VINCENTIO: +Love talks with better knowledge, and knowledge with +dearer love. + +LUCIO: +Come, sir, I know what I know. + +DUKE VINCENTIO: +I can hardly believe that, since you know not what +you speak. But, if ever the duke return, as our +prayers are he may, let me desire you to make your +answer before him. If it be honest you have spoke, +you have courage to maintain it: I am bound to call +upon you; and, I pray you, your name? + +LUCIO: +Sir, my name is Lucio; well known to the duke. + +DUKE VINCENTIO: +He shall know you better, sir, if I may live to +report you. + +LUCIO: +I fear you not. + +DUKE VINCENTIO: +O, you hope the duke will return no more; or you +imagine me too unhurtful an opposite. But indeed I +can do you little harm; you'll forswear this again. + +LUCIO: +I'll be hanged first: thou art deceived in me, +friar. But no more of this. Canst thou tell if +Claudio die to-morrow or no? + +DUKE VINCENTIO: +Why should he die, sir? + +LUCIO: +Why? For filling a bottle with a tundish. I would +the duke we talk of were returned again: the +ungenitured agent will unpeople the province with +continency; sparrows must not build in his +house-eaves, because they are lecherous. The duke +yet would have dark deeds darkly answered; he would +never bring them to light: would he were returned! +Marry, this Claudio is condemned for untrussing. +Farewell, good friar: I prithee, pray for me. The +duke, I say to thee again, would eat mutton on +Fridays. He's not past it yet, and I say to thee, +he would mouth with a beggar, though she smelt brown +bread and garlic: say that I said so. Farewell. + +DUKE VINCENTIO: +No might nor greatness in mortality +Can censure 'scape; back-wounding calumny +The whitest virtue strikes. What king so strong +Can tie the gall up in the slanderous tongue? +But who comes here? + +ESCALUS: +Go; away with her to prison! + +MISTRESS OVERDONE: +Good my lord, be good to me; your honour is accounted +a merciful man; good my lord. + +ESCALUS: +Double and treble admonition, and still forfeit in +the same kind! This would make mercy swear and play +the tyrant. + +Provost: +A bawd of eleven years' continuance, may it please +your honour. + +MISTRESS OVERDONE: +My lord, this is one Lucio's information against me. +Mistress Kate Keepdown was with child by him in the +duke's time; he promised her marriage: his child +is a year and a quarter old, come Philip and Jacob: +I have kept it myself; and see how he goes about to abuse me! + +ESCALUS: +That fellow is a fellow of much licence: let him be +called before us. Away with her to prison! Go to; +no more words. +Provost, my brother Angelo will not be altered; +Claudio must die to-morrow: let him be furnished +with divines, and have all charitable preparation. +if my brother wrought by my pity, it should not be +so with him. + +Provost: +So please you, this friar hath been with him, and +advised him for the entertainment of death. + +ESCALUS: +Good even, good father. + +DUKE VINCENTIO: +Bliss and goodness on you! + +ESCALUS: +Of whence are you? + +DUKE VINCENTIO: +Not of this country, though my chance is now +To use it for my time: I am a brother +Of gracious order, late come from the See +In special business from his holiness. + +ESCALUS: +What news abroad i' the world? + +DUKE VINCENTIO: +None, but that there is so great a fever on +goodness, that the dissolution of it must cure it: +novelty is only in request; and it is as dangerous +to be aged in any kind of course, as it is virtuous +to be constant in any undertaking. There is scarce +truth enough alive to make societies secure; but +security enough to make fellowships accurst: much +upon this riddle runs the wisdom of the world. This +news is old enough, yet it is every day's news. I +pray you, sir, of what disposition was the duke? + +ESCALUS: +One that, above all other strifes, contended +especially to know himself. + +DUKE VINCENTIO: +What pleasure was he given to? + +ESCALUS: +Rather rejoicing to see another merry, than merry at +any thing which professed to make him rejoice: a +gentleman of all temperance. But leave we him to +his events, with a prayer they may prove prosperous; +and let me desire to know how you find Claudio +prepared. I am made to understand that you have +lent him visitation. + +DUKE VINCENTIO: +He professes to have received no sinister measure +from his judge, but most willingly humbles himself +to the determination of justice: yet had he framed +to himself, by the instruction of his frailty, many +deceiving promises of life; which I by my good +leisure have discredited to him, and now is he +resolved to die. + +ESCALUS: +You have paid the heavens your function, and the +prisoner the very debt of your calling. I have +laboured for the poor gentleman to the extremest +shore of my modesty: but my brother justice have I +found so severe, that he hath forced me to tell him +he is indeed Justice. + +DUKE VINCENTIO: +If his own life answer the straitness of his +proceeding, it shall become him well; wherein if he +chance to fail, he hath sentenced himself. + +ESCALUS: +I am going to visit the prisoner. Fare you well. + +DUKE VINCENTIO: +Peace be with you! +He who the sword of heaven will bear +Should be as holy as severe; +Pattern in himself to know, +Grace to stand, and virtue go; +More nor less to others paying +Than by self-offences weighing. +Shame to him whose cruel striking +Kills for faults of his own liking! +Twice treble shame on Angelo, +To weed my vice and let his grow! +O, what may man within him hide, +Though angel on the outward side! +How may likeness made in crimes, +Making practise on the times, +To draw with idle spiders' strings +Most ponderous and substantial things! +Craft against vice I must apply: +With Angelo to-night shall lie +His old betrothed but despised; +So disguise shall, by the disguised, +Pay with falsehood false exacting, +And perform an old contracting. + + +MARIANA: +Break off thy song, and haste thee quick away: +Here comes a man of comfort, whose advice +Hath often still'd my brawling discontent. +I cry you mercy, sir; and well could wish +You had not found me here so musical: +Let me excuse me, and believe me so, +My mirth it much displeased, but pleased my woe. + +DUKE VINCENTIO: +'Tis good; though music oft hath such a charm +To make bad good, and good provoke to harm. +I pray, you, tell me, hath any body inquired +for me here to-day? much upon this time have +I promised here to meet. + +MARIANA: +You have not been inquired after: +I have sat here all day. + +DUKE VINCENTIO: +I do constantly believe you. The time is come even +now. I shall crave your forbearance a little: may +be I will call upon you anon, for some advantage to yourself. + +MARIANA: +I am always bound to you. + +DUKE VINCENTIO: +Very well met, and well come. +What is the news from this good deputy? + +ISABELLA: +He hath a garden circummured with brick, +Whose western side is with a vineyard back'd; +And to that vineyard is a planched gate, +That makes his opening with this bigger key: +This other doth command a little door +Which from the vineyard to the garden leads; +There have I made my promise +Upon the heavy middle of the night +To call upon him. + +DUKE VINCENTIO: +But shall you on your knowledge find this way? + +ISABELLA: +I have ta'en a due and wary note upon't: +With whispering and most guilty diligence, +In action all of precept, he did show me +The way twice o'er. + +DUKE VINCENTIO: +Are there no other tokens +Between you 'greed concerning her observance? + +ISABELLA: +No, none, but only a repair i' the dark; +And that I have possess'd him my most stay +Can be but brief; for I have made him know +I have a servant comes with me along, +That stays upon me, whose persuasion is +I come about my brother. + +DUKE VINCENTIO: +'Tis well borne up. +I have not yet made known to Mariana +A word of this. What, ho! within! come forth! +I pray you, be acquainted with this maid; +She comes to do you good. + +ISABELLA: +I do desire the like. + +DUKE VINCENTIO: +Do you persuade yourself that I respect you? + +MARIANA: +Good friar, I know you do, and have found it. + +DUKE VINCENTIO: +Take, then, this your companion by the hand, +Who hath a story ready for your ear. +I shall attend your leisure: but make haste; +The vaporous night approaches. + +MARIANA: +Will't please you walk aside? + +DUKE VINCENTIO: +O place and greatness! millions of false eyes +Are stuck upon thee: volumes of report +Run with these false and most contrarious quests +Upon thy doings: thousand escapes of wit +Make thee the father of their idle dreams +And rack thee in their fancies. +Welcome, how agreed? + +ISABELLA: +She'll take the enterprise upon her, father, +If you advise it. + +DUKE VINCENTIO: +It is not my consent, +But my entreaty too. + +ISABELLA: +Little have you to say +When you depart from him, but, soft and low, +'Remember now my brother.' + +MARIANA: +Fear me not. + +DUKE VINCENTIO: +Nor, gentle daughter, fear you not at all. +He is your husband on a pre-contract: +To bring you thus together, 'tis no sin, +Sith that the justice of your title to him +Doth flourish the deceit. Come, let us go: +Our corn's to reap, for yet our tithe's to sow. + +Provost: +Come hither, sirrah. Can you cut off a man's head? + +POMPEY: +If the man be a bachelor, sir, I can; but if he be a +married man, he's his wife's head, and I can never +cut off a woman's head. + +Provost: +Come, sir, leave me your snatches, and yield me a +direct answer. To-morrow morning are to die Claudio +and Barnardine. Here is in our prison a common +executioner, who in his office lacks a helper: if +you will take it on you to assist him, it shall +redeem you from your gyves; if not, you shall have +your full time of imprisonment and your deliverance +with an unpitied whipping, for you have been a +notorious bawd. + +POMPEY: +Sir, I have been an unlawful bawd time out of mind; +but yet I will be content to be a lawful hangman. I +would be glad to receive some instruction from my +fellow partner. + +Provost: +What, ho! Abhorson! Where's Abhorson, there? + +ABHORSON: +Do you call, sir? + +Provost: +Sirrah, here's a fellow will help you to-morrow in +your execution. If you think it meet, compound with +him by the year, and let him abide here with you; if +not, use him for the present and dismiss him. He +cannot plead his estimation with you; he hath been a bawd. + +ABHORSON: +A bawd, sir? fie upon him! he will discredit our mystery. + +Provost: +Go to, sir; you weigh equally; a feather will turn +the scale. + +POMPEY: +Pray, sir, by your good favour,--for surely, sir, a +good favour you have, but that you have a hanging +look,--do you call, sir, your occupation a mystery? + +ABHORSON: +Ay, sir; a mystery + +POMPEY: +Painting, sir, I have heard say, is a mystery; and +your whores, sir, being members of my occupation, +using painting, do prove my occupation a mystery: +but what mystery there should be in hanging, if I +should be hanged, I cannot imagine. + +ABHORSON: +Sir, it is a mystery. + +POMPEY: +Proof? + +ABHORSON: +Every true man's apparel fits your thief: if it be +too little for your thief, your true man thinks it +big enough; if it be too big for your thief, your +thief thinks it little enough: so every true man's +apparel fits your thief. + +Provost: +Are you agreed? + +POMPEY: +Sir, I will serve him; for I do find your hangman is +a more penitent trade than your bawd; he doth +oftener ask forgiveness. + +Provost: +You, sirrah, provide your block and your axe +to-morrow four o'clock. + +ABHORSON: +Come on, bawd; I will instruct thee in my trade; follow. + +POMPEY: +I do desire to learn, sir: and I hope, if you have +occasion to use me for your own turn, you shall find +me yare; for truly, sir, for your kindness I owe you +a good turn. + +Provost: +Call hither Barnardine and Claudio: +The one has my pity; not a jot the other, +Being a murderer, though he were my brother. +Look, here's the warrant, Claudio, for thy death: +'Tis now dead midnight, and by eight to-morrow +Thou must be made immortal. Where's Barnardine? + +CLAUDIO: +As fast lock'd up in sleep as guiltless labour +When it lies starkly in the traveller's bones: +He will not wake. + +Provost: +Who can do good on him? +Well, go, prepare yourself. +But, hark, what noise? +Heaven give your spirits comfort! +By and by. +I hope it is some pardon or reprieve +For the most gentle Claudio. +Welcome father. + +DUKE VINCENTIO: +The best and wholesomest spirts of the night +Envelope you, good Provost! Who call'd here of late? + +Provost: +None, since the curfew rung. + +DUKE VINCENTIO: +Not Isabel? + +Provost: +No. + +DUKE VINCENTIO: +They will, then, ere't be long. + +Provost: +What comfort is for Claudio? + +DUKE VINCENTIO: +There's some in hope. + +Provost: +It is a bitter deputy. + +DUKE VINCENTIO: +Not so, not so; his life is parallel'd +Even with the stroke and line of his great justice: +He doth with holy abstinence subdue +That in himself which he spurs on his power +To qualify in others: were he meal'd with that +Which he corrects, then were he tyrannous; +But this being so, he's just. +Now are they come. +This is a gentle provost: seldom when +The steeled gaoler is the friend of men. +How now! what noise? That spirit's possessed with haste +That wounds the unsisting postern with these strokes. + +Provost: +There he must stay until the officer +Arise to let him in: he is call'd up. + +DUKE VINCENTIO: +Have you no countermand for Claudio yet, +But he must die to-morrow? + +Provost: +None, sir, none. + +DUKE VINCENTIO: +As near the dawning, provost, as it is, +You shall hear more ere morning. + +Provost: +Happily +You something know; yet I believe there comes +No countermand; no such example have we: +Besides, upon the very siege of justice +Lord Angelo hath to the public ear +Profess'd the contrary. +This is his lordship's man. + +DUKE VINCENTIO: +And here comes Claudio's pardon. + +Messenger: + +Provost: +I shall obey him. + +DUKE VINCENTIO: + +Provost: +I told you. Lord Angelo, belike thinking me remiss +in mine office, awakens me with this unwonted +putting-on; methinks strangely, for he hath not used it before. + +DUKE VINCENTIO: +Pray you, let's hear. + +Provost: + +DUKE VINCENTIO: +What is that Barnardine who is to be executed in the +afternoon? + +Provost: +A Bohemian born, but here nursed un and bred; one +that is a prisoner nine years old. + +DUKE VINCENTIO: +How came it that the absent duke had not either +delivered him to his liberty or executed him? I +have heard it was ever his manner to do so. + +Provost: +His friends still wrought reprieves for him: and, +indeed, his fact, till now in the government of Lord +Angelo, came not to an undoubtful proof. + +DUKE VINCENTIO: +It is now apparent? + +Provost: +Most manifest, and not denied by himself. + +DUKE VINCENTIO: +Hath he born himself penitently in prison? how +seems he to be touched? + +Provost: +A man that apprehends death no more dreadfully but +as a drunken sleep; careless, reckless, and fearless +of what's past, present, or to come; insensible of +mortality, and desperately mortal. + +DUKE VINCENTIO: +He wants advice. + +Provost: +He will hear none: he hath evermore had the liberty +of the prison; give him leave to escape hence, he +would not: drunk many times a day, if not many days +entirely drunk. We have very oft awaked him, as if +to carry him to execution, and showed him a seeming +warrant for it: it hath not moved him at all. + +DUKE VINCENTIO: +More of him anon. There is written in your brow, +provost, honesty and constancy: if I read it not +truly, my ancient skill beguiles me; but, in the +boldness of my cunning, I will lay myself in hazard. +Claudio, whom here you have warrant to execute, is +no greater forfeit to the law than Angelo who hath +sentenced him. To make you understand this in a +manifested effect, I crave but four days' respite; +for the which you are to do me both a present and a +dangerous courtesy. + +Provost: +Pray, sir, in what? + +DUKE VINCENTIO: +In the delaying death. + +Provost: +A lack, how may I do it, having the hour limited, +and an express command, under penalty, to deliver +his head in the view of Angelo? I may make my case +as Claudio's, to cross this in the smallest. + +DUKE VINCENTIO: +By the vow of mine order I warrant you, if my +instructions may be your guide. Let this Barnardine +be this morning executed, and his head born to Angelo. + +Provost: +Angelo hath seen them both, and will discover the favour. + +DUKE VINCENTIO: +O, death's a great disguiser; and you may add to it. +Shave the head, and tie the beard; and say it was +the desire of the penitent to be so bared before his +death: you know the course is common. If any thing +fall to you upon this, more than thanks and good +fortune, by the saint whom I profess, I will plead +against it with my life. + +Provost: +Pardon me, good father; it is against my oath. + +DUKE VINCENTIO: +Were you sworn to the duke, or to the deputy? + +Provost: +To him, and to his substitutes. + +DUKE VINCENTIO: +You will think you have made no offence, if the duke +avouch the justice of your dealing? + +Provost: +But what likelihood is in that? + +DUKE VINCENTIO: +Not a resemblance, but a certainty. Yet since I see +you fearful, that neither my coat, integrity, nor +persuasion can with ease attempt you, I will go +further than I meant, to pluck all fears out of you. +Look you, sir, here is the hand and seal of the +duke: you know the character, I doubt not; and the +signet is not strange to you. + +Provost: +I know them both. + +DUKE VINCENTIO: +The contents of this is the return of the duke: you +shall anon over-read it at your pleasure; where you +shall find, within these two days he will be here. +This is a thing that Angelo knows not; for he this +very day receives letters of strange tenor; +perchance of the duke's death; perchance entering +into some monastery; but, by chance, nothing of what +is writ. Look, the unfolding star calls up the +shepherd. Put not yourself into amazement how these +things should be: all difficulties are but easy +when they are known. Call your executioner, and off +with Barnardine's head: I will give him a present +shrift and advise him for a better place. Yet you +are amazed; but this shall absolutely resolve you. +Come away; it is almost clear dawn. + +POMPEY: +I am as well acquainted here as I was in our house +of profession: one would think it were Mistress +Overdone's own house, for here be many of her old +customers. First, here's young Master Rash; he's in +for a commodity of brown paper and old ginger, +ninescore and seventeen pounds; of which he made +five marks, ready money: marry, then ginger was not +much in request, for the old women were all dead. +Then is there here one Master Caper, at the suit of +Master Three-pile the mercer, for some four suits of +peach-coloured satin, which now peaches him a +beggar. Then have we here young Dizy, and young +Master Deep-vow, and Master Copperspur, and Master +Starve-lackey the rapier and dagger man, and young +Drop-heir that killed lusty Pudding, and Master +Forthlight the tilter, and brave Master Shooty the +great traveller, and wild Half-can that stabbed +Pots, and, I think, forty more; all great doers in +our trade, and are now 'for the Lord's sake.' + +ABHORSON: +Sirrah, bring Barnardine hither. + +POMPEY: +Master Barnardine! you must rise and be hanged. +Master Barnardine! + +ABHORSON: +What, ho, Barnardine! + +BARNARDINE: + +POMPEY: +Your friends, sir; the hangman. You must be so +good, sir, to rise and be put to death. + +BARNARDINE: + +ABHORSON: +Tell him he must awake, and that quickly too. + +POMPEY: +Pray, Master Barnardine, awake till you are +executed, and sleep afterwards. + +ABHORSON: +Go in to him, and fetch him out. + +POMPEY: +He is coming, sir, he is coming; I hear his straw rustle. + +ABHORSON: +Is the axe upon the block, sirrah? + +POMPEY: +Very ready, sir. + +BARNARDINE: +How now, Abhorson? what's the news with you? + +ABHORSON: +Truly, sir, I would desire you to clap into your +prayers; for, look you, the warrant's come. + +BARNARDINE: +You rogue, I have been drinking all night; I am not +fitted for 't. + +POMPEY: +O, the better, sir; for he that drinks all night, +and is hanged betimes in the morning, may sleep the +sounder all the next day. + +ABHORSON: +Look you, sir; here comes your ghostly father: do +we jest now, think you? + +DUKE VINCENTIO: +Sir, induced by my charity, and hearing how hastily +you are to depart, I am come to advise you, comfort +you and pray with you. + +BARNARDINE: +Friar, not I I have been drinking hard all night, +and I will have more time to prepare me, or they +shall beat out my brains with billets: I will not +consent to die this day, that's certain. + +DUKE VINCENTIO: +O, sir, you must: and therefore I beseech you +Look forward on the journey you shall go. + +BARNARDINE: +I swear I will not die to-day for any man's +persuasion. + +DUKE VINCENTIO: +But hear you. + +BARNARDINE: +Not a word: if you have any thing to say to me, +come to my ward; for thence will not I to-day. + +DUKE VINCENTIO: +Unfit to live or die: O gravel heart! +After him, fellows; bring him to the block. + +Provost: +Now, sir, how do you find the prisoner? + +DUKE VINCENTIO: +A creature unprepared, unmeet for death; +And to transport him in the mind he is +Were damnable. + +Provost: +Here in the prison, father, +There died this morning of a cruel fever +One Ragozine, a most notorious pirate, +A man of Claudio's years; his beard and head +Just of his colour. What if we do omit +This reprobate till he were well inclined; +And satisfy the deputy with the visage +Of Ragozine, more like to Claudio? + +DUKE VINCENTIO: +O, 'tis an accident that heaven provides! +Dispatch it presently; the hour draws on +Prefix'd by Angelo: see this be done, +And sent according to command; whiles I +Persuade this rude wretch willingly to die. + +Provost: +This shall be done, good father, presently. +But Barnardine must die this afternoon: +And how shall we continue Claudio, +To save me from the danger that might come +If he were known alive? + +DUKE VINCENTIO: +Let this be done. +Put them in secret holds, both Barnardine and Claudio: +Ere twice the sun hath made his journal greeting +To the under generation, you shall find +Your safety manifested. + +Provost: +I am your free dependant. + +DUKE VINCENTIO: +Quick, dispatch, and send the head to Angelo. +Now will I write letters to Angelo,-- +The provost, he shall bear them, whose contents +Shall witness to him I am near at home, +And that, by great injunctions, I am bound +To enter publicly: him I'll desire +To meet me at the consecrated fount +A league below the city; and from thence, +By cold gradation and well-balanced form, +We shall proceed with Angelo. + +Provost: +Here is the head; I'll carry it myself. + +DUKE VINCENTIO: +Convenient is it. Make a swift return; +For I would commune with you of such things +That want no ear but yours. + +Provost: +I'll make all speed. + +ISABELLA: + +DUKE VINCENTIO: +The tongue of Isabel. She's come to know +If yet her brother's pardon be come hither: +But I will keep her ignorant of her good, +To make her heavenly comforts of despair, +When it is least expected. + +ISABELLA: +Ho, by your leave! + +DUKE VINCENTIO: +Good morning to you, fair and gracious daughter. + +ISABELLA: +The better, given me by so holy a man. +Hath yet the deputy sent my brother's pardon? + +DUKE VINCENTIO: +He hath released him, Isabel, from the world: +His head is off and sent to Angelo. + +ISABELLA: +Nay, but it is not so. + +DUKE VINCENTIO: +It is no other: show your wisdom, daughter, +In your close patience. + +ISABELLA: +O, I will to him and pluck out his eyes! + +DUKE VINCENTIO: +You shall not be admitted to his sight. + +ISABELLA: +Unhappy Claudio! wretched Isabel! +Injurious world! most damned Angelo! + +DUKE VINCENTIO: +This nor hurts him nor profits you a jot; +Forbear it therefore; give your cause to heaven. +Mark what I say, which you shall find +By every syllable a faithful verity: +The duke comes home to-morrow; nay, dry your eyes; +One of our convent, and his confessor, +Gives me this instance: already he hath carried +Notice to Escalus and Angelo, +Who do prepare to meet him at the gates, +There to give up their power. If you can, pace your wisdom +In that good path that I would wish it go, +And you shall have your bosom on this wretch, +Grace of the duke, revenges to your heart, +And general honour. + +ISABELLA: +I am directed by you. + +DUKE VINCENTIO: +This letter, then, to Friar Peter give; +'Tis that he sent me of the duke's return: +Say, by this token, I desire his company +At Mariana's house to-night. Her cause and yours +I'll perfect him withal, and he shall bring you +Before the duke, and to the head of Angelo +Accuse him home and home. For my poor self, +I am combined by a sacred vow +And shall be absent. Wend you with this letter: +Command these fretting waters from your eyes +With a light heart; trust not my holy order, +If I pervert your course. Who's here? + +LUCIO: +Good even. Friar, where's the provost? + +DUKE VINCENTIO: +Not within, sir. + +LUCIO: +O pretty Isabella, I am pale at mine heart to see +thine eyes so red: thou must be patient. I am fain +to dine and sup with water and bran; I dare not for +my head fill my belly; one fruitful meal would set +me to 't. But they say the duke will be here +to-morrow. By my troth, Isabel, I loved thy brother: +if the old fantastical duke of dark corners had been +at home, he had lived. + +DUKE VINCENTIO: +Sir, the duke is marvellous little beholding to your +reports; but the best is, he lives not in them. + +LUCIO: +Friar, thou knowest not the duke so well as I do: +he's a better woodman than thou takest him for. + +DUKE VINCENTIO: +Well, you'll answer this one day. Fare ye well. + +LUCIO: +Nay, tarry; I'll go along with thee +I can tell thee pretty tales of the duke. + +DUKE VINCENTIO: +You have told me too many of him already, sir, if +they be true; if not true, none were enough. + +LUCIO: +I was once before him for getting a wench with child. + +DUKE VINCENTIO: +Did you such a thing? + +LUCIO: +Yes, marry, did I but I was fain to forswear it; +they would else have married me to the rotten medlar. + +DUKE VINCENTIO: +Sir, your company is fairer than honest. Rest you well. + +LUCIO: +By my troth, I'll go with thee to the lane's end: +if bawdy talk offend you, we'll have very little of +it. Nay, friar, I am a kind of burr; I shall stick. + +ESCALUS: +Every letter he hath writ hath disvouched other. + +ANGELO: +In most uneven and distracted manner. His actions +show much like to madness: pray heaven his wisdom be +not tainted! And why meet him at the gates, and +redeliver our authorities there + +ESCALUS: +I guess not. + +ANGELO: +And why should we proclaim it in an hour before his +entering, that if any crave redress of injustice, +they should exhibit their petitions in the street? + +ESCALUS: +He shows his reason for that: to have a dispatch of +complaints, and to deliver us from devices +hereafter, which shall then have no power to stand +against us. + +ANGELO: +Well, I beseech you, let it be proclaimed betimes +i' the morn; I'll call you at your house: give +notice to such men of sort and suit as are to meet +him. + +ESCALUS: +I shall, sir. Fare you well. + +ANGELO: +Good night. +This deed unshapes me quite, makes me unpregnant +And dull to all proceedings. A deflower'd maid! +And by an eminent body that enforced +The law against it! But that her tender shame +Will not proclaim against her maiden loss, +How might she tongue me! Yet reason dares her no; +For my authority bears of a credent bulk, +That no particular scandal once can touch +But it confounds the breather. He should have lived, +Save that riotous youth, with dangerous sense, +Might in the times to come have ta'en revenge, +By so receiving a dishonour'd life +With ransom of such shame. Would yet he had lived! +A lack, when once our grace we have forgot, +Nothing goes right: we would, and we would not. + +DUKE VINCENTIO: +These letters at fit time deliver me +The provost knows our purpose and our plot. +The matter being afoot, keep your instruction, +And hold you ever to our special drift; +Though sometimes you do blench from this to that, +As cause doth minister. Go call at Flavius' house, +And tell him where I stay: give the like notice +To Valentinus, Rowland, and to Crassus, +And bid them bring the trumpets to the gate; +But send me Flavius first. + +FRIAR PETER: +It shall be speeded well. + +DUKE VINCENTIO: +I thank thee, Varrius; thou hast made good haste: +Come, we will walk. There's other of our friends +Will greet us here anon, my gentle Varrius. + +ISABELLA: +To speak so indirectly I am loath: +I would say the truth; but to accuse him so, +That is your part: yet I am advised to do it; +He says, to veil full purpose. + +MARIANA: +Be ruled by him. + +ISABELLA: +Besides, he tells me that, if peradventure +He speak against me on the adverse side, +I should not think it strange; for 'tis a physic +That's bitter to sweet end. + +MARIANA: +I would Friar Peter-- + +ISABELLA: +O, peace! the friar is come. + +FRIAR PETER: +Come, I have found you out a stand most fit, +Where you may have such vantage on the duke, +He shall not pass you. Twice have the trumpets sounded; +The generous and gravest citizens +Have hent the gates, and very near upon +The duke is entering: therefore, hence, away! + +DUKE VINCENTIO: +My very worthy cousin, fairly met! +Our old and faithful friend, we are glad to see you. + +ANGELO: +Happy return be to your royal grace! + +DUKE VINCENTIO: +Many and hearty thankings to you both. +We have made inquiry of you; and we hear +Such goodness of your justice, that our soul +Cannot but yield you forth to public thanks, +Forerunning more requital. + +ANGELO: +You make my bonds still greater. + +DUKE VINCENTIO: +O, your desert speaks loud; and I should wrong it, +To lock it in the wards of covert bosom, +When it deserves, with characters of brass, +A forted residence 'gainst the tooth of time +And razure of oblivion. Give me your hand, +And let the subject see, to make them know +That outward courtesies would fain proclaim +Favours that keep within. Come, Escalus, +You must walk by us on our other hand; +And good supporters are you. + +FRIAR PETER: +Now is your time: speak loud and kneel before him. + +ISABELLA: +Justice, O royal duke! Vail your regard +Upon a wrong'd, I would fain have said, a maid! +O worthy prince, dishonour not your eye +By throwing it on any other object +Till you have heard me in my true complaint +And given me justice, justice, justice, justice! + +DUKE VINCENTIO: +Relate your wrongs; in what? by whom? be brief. +Here is Lord Angelo shall give you justice: +Reveal yourself to him. + +ISABELLA: +O worthy duke, +You bid me seek redemption of the devil: +Hear me yourself; for that which I must speak +Must either punish me, not being believed, +Or wring redress from you. Hear me, O hear me, here! + +ANGELO: +My lord, her wits, I fear me, are not firm: +She hath been a suitor to me for her brother +Cut off by course of justice,-- + +ISABELLA: +By course of justice! + +ANGELO: +And she will speak most bitterly and strange. + +ISABELLA: +Most strange, but yet most truly, will I speak: +That Angelo's forsworn; is it not strange? +That Angelo's a murderer; is 't not strange? +That Angelo is an adulterous thief, +An hypocrite, a virgin-violator; +Is it not strange and strange? + +DUKE VINCENTIO: +Nay, it is ten times strange. + +ISABELLA: +It is not truer he is Angelo +Than this is all as true as it is strange: +Nay, it is ten times true; for truth is truth +To the end of reckoning. + +DUKE VINCENTIO: +Away with her! Poor soul, +She speaks this in the infirmity of sense. + +ISABELLA: +O prince, I conjure thee, as thou believest +There is another comfort than this world, +That thou neglect me not, with that opinion +That I am touch'd with madness! Make not impossible +That which but seems unlike: 'tis not impossible +But one, the wicked'st caitiff on the ground, +May seem as shy, as grave, as just, as absolute +As Angelo; even so may Angelo, +In all his dressings, characts, titles, forms, +Be an arch-villain; believe it, royal prince: +If he be less, he's nothing; but he's more, +Had I more name for badness. + +DUKE VINCENTIO: +By mine honesty, +If she be mad,--as I believe no other,-- +Her madness hath the oddest frame of sense, +Such a dependency of thing on thing, +As e'er I heard in madness. + +ISABELLA: +O gracious duke, +Harp not on that, nor do not banish reason +For inequality; but let your reason serve +To make the truth appear where it seems hid, +And hide the false seems true. + +DUKE VINCENTIO: +Many that are not mad +Have, sure, more lack of reason. What would you say? + +ISABELLA: +I am the sister of one Claudio, +Condemn'd upon the act of fornication +To lose his head; condemn'd by Angelo: +I, in probation of a sisterhood, +Was sent to by my brother; one Lucio +As then the messenger,-- + +LUCIO: +That's I, an't like your grace: +I came to her from Claudio, and desired her +To try her gracious fortune with Lord Angelo +For her poor brother's pardon. + +ISABELLA: +That's he indeed. + +DUKE VINCENTIO: +You were not bid to speak. + +LUCIO: +No, my good lord; +Nor wish'd to hold my peace. + +DUKE VINCENTIO: +I wish you now, then; +Pray you, take note of it: and when you have +A business for yourself, pray heaven you then +Be perfect. + +LUCIO: +I warrant your honour. + +DUKE VINCENTIO: +The warrants for yourself; take heed to't. + +ISABELLA: +This gentleman told somewhat of my tale,-- + +LUCIO: +Right. + +DUKE VINCENTIO: +It may be right; but you are i' the wrong +To speak before your time. Proceed. + +ISABELLA: +I went +To this pernicious caitiff deputy,-- + +DUKE VINCENTIO: +That's somewhat madly spoken. + +ISABELLA: +Pardon it; +The phrase is to the matter. + +DUKE VINCENTIO: +Mended again. The matter; proceed. + +ISABELLA: +In brief, to set the needless process by, +How I persuaded, how I pray'd, and kneel'd, +How he refell'd me, and how I replied,-- +For this was of much length,--the vile conclusion +I now begin with grief and shame to utter: +He would not, but by gift of my chaste body +To his concupiscible intemperate lust, +Release my brother; and, after much debatement, +My sisterly remorse confutes mine honour, +And I did yield to him: but the next morn betimes, +His purpose surfeiting, he sends a warrant +For my poor brother's head. + +DUKE VINCENTIO: +This is most likely! + +ISABELLA: +O, that it were as like as it is true! + +DUKE VINCENTIO: +By heaven, fond wretch, thou knowist not what thou speak'st, +Or else thou art suborn'd against his honour +In hateful practise. First, his integrity +Stands without blemish. Next, it imports no reason +That with such vehemency he should pursue +Faults proper to himself: if he had so offended, +He would have weigh'd thy brother by himself +And not have cut him off. Some one hath set you on: +Confess the truth, and say by whose advice +Thou camest here to complain. + +ISABELLA: +And is this all? +Then, O you blessed ministers above, +Keep me in patience, and with ripen'd time +Unfold the evil which is here wrapt up +In countenance! Heaven shield your grace from woe, +As I, thus wrong'd, hence unbelieved go! + +DUKE VINCENTIO: +I know you'ld fain be gone. An officer! +To prison with her! Shall we thus permit +A blasting and a scandalous breath to fall +On him so near us? This needs must be a practise. +Who knew of Your intent and coming hither? + +ISABELLA: +One that I would were here, Friar Lodowick. + +DUKE VINCENTIO: +A ghostly father, belike. Who knows that Lodowick? + +LUCIO: +My lord, I know him; 'tis a meddling friar; +I do not like the man: had he been lay, my lord +For certain words he spake against your grace +In your retirement, I had swinged him soundly. + +DUKE VINCENTIO: +Words against me? this is a good friar, belike! +And to set on this wretched woman here +Against our substitute! Let this friar be found. + +LUCIO: +But yesternight, my lord, she and that friar, +I saw them at the prison: a saucy friar, +A very scurvy fellow. + +FRIAR PETER: +Blessed be your royal grace! +I have stood by, my lord, and I have heard +Your royal ear abused. First, hath this woman +Most wrongfully accused your substitute, +Who is as free from touch or soil with her +As she from one ungot. + +DUKE VINCENTIO: +We did believe no less. +Know you that Friar Lodowick that she speaks of? + +FRIAR PETER: +I know him for a man divine and holy; +Not scurvy, nor a temporary meddler, +As he's reported by this gentleman; +And, on my trust, a man that never yet +Did, as he vouches, misreport your grace. + +LUCIO: +My lord, most villanously; believe it. + +FRIAR PETER: +Well, he in time may come to clear himself; +But at this instant he is sick my lord, +Of a strange fever. Upon his mere request, +Being come to knowledge that there was complaint +Intended 'gainst Lord Angelo, came I hither, +To speak, as from his mouth, what he doth know +Is true and false; and what he with his oath +And all probation will make up full clear, +Whensoever he's convented. First, for this woman. +To justify this worthy nobleman, +So vulgarly and personally accused, +Her shall you hear disproved to her eyes, +Till she herself confess it. + +DUKE VINCENTIO: +Good friar, let's hear it. +Do you not smile at this, Lord Angelo? +O heaven, the vanity of wretched fools! +Give us some seats. Come, cousin Angelo; +In this I'll be impartial; be you judge +Of your own cause. Is this the witness, friar? +First, let her show her face, and after speak. + +MARIANA: +Pardon, my lord; I will not show my face +Until my husband bid me. + +DUKE VINCENTIO: +What, are you married? + +MARIANA: +No, my lord. + +DUKE VINCENTIO: +Are you a maid? + +MARIANA: +No, my lord. + +DUKE VINCENTIO: +A widow, then? + +MARIANA: +Neither, my lord. + +DUKE VINCENTIO: +Why, you are nothing then: neither maid, widow, nor wife? + +LUCIO: +My lord, she may be a punk; for many of them are +neither maid, widow, nor wife. + +DUKE VINCENTIO: +Silence that fellow: I would he had some cause +To prattle for himself. + +LUCIO: +Well, my lord. + +MARIANA: +My lord; I do confess I ne'er was married; +And I confess besides I am no maid: +I have known my husband; yet my husband +Knows not that ever he knew me. + +LUCIO: +He was drunk then, my lord: it can be no better. + +DUKE VINCENTIO: +For the benefit of silence, would thou wert so too! + +LUCIO: +Well, my lord. + +DUKE VINCENTIO: +This is no witness for Lord Angelo. + +MARIANA: +Now I come to't my lord +She that accuses him of fornication, +In self-same manner doth accuse my husband, +And charges him my lord, with such a time +When I'll depose I had him in mine arms +With all the effect of love. + +ANGELO: +Charges she more than me? + +MARIANA: +Not that I know. + +DUKE VINCENTIO: +No? you say your husband. + +MARIANA: +Why, just, my lord, and that is Angelo, +Who thinks he knows that he ne'er knew my body, +But knows he thinks that he knows Isabel's. + +ANGELO: +This is a strange abuse. Let's see thy face. + +MARIANA: +My husband bids me; now I will unmask. +This is that face, thou cruel Angelo, +Which once thou sworest was worth the looking on; +This is the hand which, with a vow'd contract, +Was fast belock'd in thine; this is the body +That took away the match from Isabel, +And did supply thee at thy garden-house +In her imagined person. + +DUKE VINCENTIO: +Know you this woman? + +LUCIO: +Carnally, she says. + +DUKE VINCENTIO: +Sirrah, no more! + +LUCIO: +Enough, my lord. + +ANGELO: +My lord, I must confess I know this woman: +And five years since there was some speech of marriage +Betwixt myself and her; which was broke off, +Partly for that her promised proportions +Came short of composition, but in chief +For that her reputation was disvalued +In levity: since which time of five years +I never spake with her, saw her, nor heard from her, +Upon my faith and honour. + +MARIANA: +Noble prince, +As there comes light from heaven and words from breath, +As there is sense in truth and truth in virtue, +I am affianced this man's wife as strongly +As words could make up vows: and, my good lord, +But Tuesday night last gone in's garden-house +He knew me as a wife. As this is true, +Let me in safety raise me from my knees +Or else for ever be confixed here, +A marble monument! + +ANGELO: +I did but smile till now: +Now, good my lord, give me the scope of justice +My patience here is touch'd. I do perceive +These poor informal women are no more +But instruments of some more mightier member +That sets them on: let me have way, my lord, +To find this practise out. + +DUKE VINCENTIO: +Ay, with my heart +And punish them to your height of pleasure. +Thou foolish friar, and thou pernicious woman, +Compact with her that's gone, think'st thou thy oaths, +Though they would swear down each particular saint, +Were testimonies against his worth and credit +That's seal'd in approbation? You, Lord Escalus, +Sit with my cousin; lend him your kind pains +To find out this abuse, whence 'tis derived. +There is another friar that set them on; +Let him be sent for. + +FRIAR PETER: +Would he were here, my lord! for he indeed +Hath set the women on to this complaint: +Your provost knows the place where he abides +And he may fetch him. + +DUKE VINCENTIO: +Go do it instantly. +And you, my noble and well-warranted cousin, +Whom it concerns to hear this matter forth, +Do with your injuries as seems you best, +In any chastisement: I for a while will leave you; +But stir not you till you have well determined +Upon these slanderers. + +ESCALUS: +My lord, we'll do it throughly. +Signior Lucio, did not you say you knew that +Friar Lodowick to be a dishonest person? + +LUCIO: +'Cucullus non facit monachum:' honest in nothing +but in his clothes; and one that hath spoke most +villanous speeches of the duke. + +ESCALUS: +We shall entreat you to abide here till he come and +enforce them against him: we shall find this friar a +notable fellow. + +LUCIO: +As any in Vienna, on my word. + +ESCALUS: +Call that same Isabel here once again; I would speak with her. +Pray you, my lord, give me leave to question; you +shall see how I'll handle her. + +LUCIO: +Not better than he, by her own report. + +ESCALUS: +Say you? + +LUCIO: +Marry, sir, I think, if you handled her privately, +she would sooner confess: perchance, publicly, +she'll be ashamed. + +ESCALUS: +I will go darkly to work with her. + +LUCIO: +That's the way; for women are light at midnight. + +ESCALUS: +Come on, mistress: here's a gentlewoman denies all +that you have said. + +LUCIO: +My lord, here comes the rascal I spoke of; here with +the provost. + +ESCALUS: +In very good time: speak not you to him till we +call upon you. + +LUCIO: +Mum. + +ESCALUS: +Come, sir: did you set these women on to slander +Lord Angelo? they have confessed you did. + +DUKE VINCENTIO: +'Tis false. + +ESCALUS: +How! know you where you are? + +DUKE VINCENTIO: +Respect to your great place! and let the devil +Be sometime honour'd for his burning throne! +Where is the duke? 'tis he should hear me speak. + +ESCALUS: +The duke's in us; and we will hear you speak: +Look you speak justly. + +DUKE VINCENTIO: +Boldly, at least. But, O, poor souls, +Come you to seek the lamb here of the fox? +Good night to your redress! Is the duke gone? +Then is your cause gone too. The duke's unjust, +Thus to retort your manifest appeal, +And put your trial in the villain's mouth +Which here you come to accuse. + +LUCIO: +This is the rascal; this is he I spoke of. + +ESCALUS: +Why, thou unreverend and unhallow'd friar, +Is't not enough thou hast suborn'd these women +To accuse this worthy man, but, in foul mouth +And in the witness of his proper ear, +To call him villain? and then to glance from him +To the duke himself, to tax him with injustice? +Take him hence; to the rack with him! We'll touse you +Joint by joint, but we will know his purpose. +What 'unjust'! + +DUKE VINCENTIO: +Be not so hot; the duke +Dare no more stretch this finger of mine than he +Dare rack his own: his subject am I not, +Nor here provincial. My business in this state +Made me a looker on here in Vienna, +Where I have seen corruption boil and bubble +Till it o'er-run the stew; laws for all faults, +But faults so countenanced, that the strong statutes +Stand like the forfeits in a barber's shop, +As much in mock as mark. + +ESCALUS: +Slander to the state! Away with him to prison! + +ANGELO: +What can you vouch against him, Signior Lucio? +Is this the man that you did tell us of? + +LUCIO: +'Tis he, my lord. Come hither, goodman baldpate: +do you know me? + +DUKE VINCENTIO: +I remember you, sir, by the sound of your voice: I +met you at the prison, in the absence of the duke. + +LUCIO: +O, did you so? And do you remember what you said of the duke? + +DUKE VINCENTIO: +Most notedly, sir. + +LUCIO: +Do you so, sir? And was the duke a fleshmonger, a +fool, and a coward, as you then reported him to be? + +DUKE VINCENTIO: +You must, sir, change persons with me, ere you make +that my report: you, indeed, spoke so of him; and +much more, much worse. + +LUCIO: +O thou damnable fellow! Did not I pluck thee by the +nose for thy speeches? + +DUKE VINCENTIO: +I protest I love the duke as I love myself. + +ANGELO: +Hark, how the villain would close now, after his +treasonable abuses! + +ESCALUS: +Such a fellow is not to be talked withal. Away with +him to prison! Where is the provost? Away with him +to prison! lay bolts enough upon him: let him +speak no more. Away with those giglots too, and +with the other confederate companion! + +DUKE VINCENTIO: + +ANGELO: +What, resists he? Help him, Lucio. + +LUCIO: +Come, sir; come, sir; come, sir; foh, sir! Why, you +bald-pated, lying rascal, you must be hooded, must +you? Show your knave's visage, with a pox to you! +show your sheep-biting face, and be hanged an hour! +Will't not off? + +DUKE VINCENTIO: +Thou art the first knave that e'er madest a duke. +First, provost, let me bail these gentle three. +Sneak not away, sir; for the friar and you +Must have a word anon. Lay hold on him. + +LUCIO: +This may prove worse than hanging. + +DUKE VINCENTIO: + +ANGELO: +O my dread lord, +I should be guiltier than my guiltiness, +To think I can be undiscernible, +When I perceive your grace, like power divine, +Hath look'd upon my passes. Then, good prince, +No longer session hold upon my shame, +But let my trial be mine own confession: +Immediate sentence then and sequent death +Is all the grace I beg. + +DUKE VINCENTIO: +Come hither, Mariana. +Say, wast thou e'er contracted to this woman? + +ANGELO: +I was, my lord. + +DUKE VINCENTIO: +Go take her hence, and marry her instantly. +Do you the office, friar; which consummate, +Return him here again. Go with him, provost. + +ESCALUS: +My lord, I am more amazed at his dishonour +Than at the strangeness of it. + +DUKE VINCENTIO: +Come hither, Isabel. +Your friar is now your prince: as I was then +Advertising and holy to your business, +Not changing heart with habit, I am still +Attorney'd at your service. + +ISABELLA: +O, give me pardon, +That I, your vassal, have employ'd and pain'd +Your unknown sovereignty! + +DUKE VINCENTIO: +You are pardon'd, Isabel: +And now, dear maid, be you as free to us. +Your brother's death, I know, sits at your heart; +And you may marvel why I obscured myself, +Labouring to save his life, and would not rather +Make rash remonstrance of my hidden power +Than let him so be lost. O most kind maid, +It was the swift celerity of his death, +Which I did think with slower foot came on, +That brain'd my purpose. But, peace be with him! +That life is better life, past fearing death, +Than that which lives to fear: make it your comfort, +So happy is your brother. + +ISABELLA: +I do, my lord. + +DUKE VINCENTIO: +For this new-married man approaching here, +Whose salt imagination yet hath wrong'd +Your well defended honour, you must pardon +For Mariana's sake: but as he adjudged your brother,-- +Being criminal, in double violation +Of sacred chastity and of promise-breach +Thereon dependent, for your brother's life,-- +The very mercy of the law cries out +Most audible, even from his proper tongue, +'An Angelo for Claudio, death for death!' +Haste still pays haste, and leisure answers leisure; +Like doth quit like, and MEASURE still FOR MEASURE. +Then, Angelo, thy fault's thus manifested; +Which, though thou wouldst deny, denies thee vantage. +We do condemn thee to the very block +Where Claudio stoop'd to death, and with like haste. +Away with him! + +MARIANA: +O my most gracious lord, +I hope you will not mock me with a husband. + +DUKE VINCENTIO: +It is your husband mock'd you with a husband. +Consenting to the safeguard of your honour, +I thought your marriage fit; else imputation, +For that he knew you, might reproach your life +And choke your good to come; for his possessions, +Although by confiscation they are ours, +We do instate and widow you withal, +To buy you a better husband. + +MARIANA: +O my dear lord, +I crave no other, nor no better man. + +DUKE VINCENTIO: +Never crave him; we are definitive. + +MARIANA: +Gentle my liege,-- + +DUKE VINCENTIO: +You do but lose your labour. +Away with him to death! +Now, sir, to you. + +MARIANA: +O my good lord! Sweet Isabel, take my part; +Lend me your knees, and all my life to come +I'll lend you all my life to do you service. + +DUKE VINCENTIO: +Against all sense you do importune her: +Should she kneel down in mercy of this fact, +Her brother's ghost his paved bed would break, +And take her hence in horror. + +MARIANA: +Isabel, +Sweet Isabel, do yet but kneel by me; +Hold up your hands, say nothing; I'll speak all. +They say, best men are moulded out of faults; +And, for the most, become much more the better +For being a little bad: so may my husband. +O Isabel, will you not lend a knee? + +DUKE VINCENTIO: +He dies for Claudio's death. + +ISABELLA: +Most bounteous sir, +Look, if it please you, on this man condemn'd, +As if my brother lived: I partly think +A due sincerity govern'd his deeds, +Till he did look on me: since it is so, +Let him not die. My brother had but justice, +In that he did the thing for which he died: +For Angelo, +His act did not o'ertake his bad intent, +And must be buried but as an intent +That perish'd by the way: thoughts are no subjects; +Intents but merely thoughts. + +MARIANA: +Merely, my lord. + +DUKE VINCENTIO: +Your suit's unprofitable; stand up, I say. +I have bethought me of another fault. +Provost, how came it Claudio was beheaded +At an unusual hour? + +Provost: +It was commanded so. + +DUKE VINCENTIO: +Had you a special warrant for the deed? + +Provost: +No, my good lord; it was by private message. + +DUKE VINCENTIO: +For which I do discharge you of your office: +Give up your keys. + +Provost: +Pardon me, noble lord: +I thought it was a fault, but knew it not; +Yet did repent me, after more advice; +For testimony whereof, one in the prison, +That should by private order else have died, +I have reserved alive. + +DUKE VINCENTIO: +What's he? + +Provost: +His name is Barnardine. + +DUKE VINCENTIO: +I would thou hadst done so by Claudio. +Go fetch him hither; let me look upon him. + +ESCALUS: +I am sorry, one so learned and so wise +As you, Lord Angelo, have still appear'd, +Should slip so grossly, both in the heat of blood. +And lack of temper'd judgment afterward. + +ANGELO: +I am sorry that such sorrow I procure: +And so deep sticks it in my penitent heart +That I crave death more willingly than mercy; +'Tis my deserving, and I do entreat it. + +DUKE VINCENTIO: +Which is that Barnardine? + +Provost: +This, my lord. + +DUKE VINCENTIO: +There was a friar told me of this man. +Sirrah, thou art said to have a stubborn soul. +That apprehends no further than this world, +And squarest thy life according. Thou'rt condemn'd: +But, for those earthly faults, I quit them all; +And pray thee take this mercy to provide +For better times to come. Friar, advise him; +I leave him to your hand. What muffled fellow's that? + +Provost: +This is another prisoner that I saved. +Who should have died when Claudio lost his head; +As like almost to Claudio as himself. + +DUKE VINCENTIO: + +LUCIO: +'Faith, my lord. I spoke it but according to the +trick. If you will hang me for it, you may; but I +had rather it would please you I might be whipt. + +DUKE VINCENTIO: +Whipt first, sir, and hanged after. +Proclaim it, provost, round about the city. +Is any woman wrong'd by this lewd fellow, +As I have heard him swear himself there's one +Whom he begot with child, let her appear, +And he shall marry her: the nuptial finish'd, +Let him be whipt and hang'd. + +LUCIO: +I beseech your highness, do not marry me to a whore. +Your highness said even now, I made you a duke: +good my lord, do not recompense me in making me a cuckold. + +DUKE VINCENTIO: +Upon mine honour, thou shalt marry her. +Thy slanders I forgive; and therewithal +Remit thy other forfeits. Take him to prison; +And see our pleasure herein executed. + +LUCIO: +Marrying a punk, my lord, is pressing to death, +whipping, and hanging. + +DUKE VINCENTIO: +Slandering a prince deserves it. +She, Claudio, that you wrong'd, look you restore. +Joy to you, Mariana! Love her, Angelo: +I have confess'd her and I know her virtue. +Thanks, good friend Escalus, for thy much goodness: +There's more behind that is more gratulate. +Thanks, provost, for thy care and secrecy: +We shill employ thee in a worthier place. +Forgive him, Angelo, that brought you home +The head of Ragozine for Claudio's: +The offence pardons itself. Dear Isabel, +I have a motion much imports your good; +Whereto if you'll a willing ear incline, +What's mine is yours and what is yours is mine. +So, bring us to our palace; where we'll show +What's yet behind, that's meet you all should know. + +SLY: +I'll pheeze you, in faith. + +Hostess: +A pair of stocks, you rogue! + +SLY: +Ye are a baggage: the Slys are no rogues; look in +the chronicles; we came in with Richard Conqueror. +Therefore paucas pallabris; let the world slide: sessa! + +Hostess: +You will not pay for the glasses you have burst? + +SLY: +No, not a denier. Go by, Jeronimy: go to thy cold +bed, and warm thee. + +Hostess: +I know my remedy; I must go fetch the +third--borough. + +SLY: +Third, or fourth, or fifth borough, I'll answer him +by law: I'll not budge an inch, boy: let him come, +and kindly. + +Lord: +Huntsman, I charge thee, tender well my hounds: +Brach Merriman, the poor cur is emboss'd; +And couple Clowder with the deep--mouth'd brach. +Saw'st thou not, boy, how Silver made it good +At the hedge-corner, in the coldest fault? +I would not lose the dog for twenty pound. + +First Huntsman: +Why, Belman is as good as he, my lord; +He cried upon it at the merest loss +And twice to-day pick'd out the dullest scent: +Trust me, I take him for the better dog. + +Lord: +Thou art a fool: if Echo were as fleet, +I would esteem him worth a dozen such. +But sup them well and look unto them all: +To-morrow I intend to hunt again. + +First Huntsman: +I will, my lord. + +Lord: +What's here? one dead, or drunk? See, doth he breathe? + +Second Huntsman: +He breathes, my lord. Were he not warm'd with ale, +This were a bed but cold to sleep so soundly. + +Lord: +O monstrous beast! how like a swine he lies! +Grim death, how foul and loathsome is thine image! +Sirs, I will practise on this drunken man. +What think you, if he were convey'd to bed, +Wrapp'd in sweet clothes, rings put upon his fingers, +A most delicious banquet by his bed, +And brave attendants near him when he wakes, +Would not the beggar then forget himself? + +First Huntsman: +Believe me, lord, I think he cannot choose. + +Second Huntsman: +It would seem strange unto him when he waked. + +Lord: +Even as a flattering dream or worthless fancy. +Then take him up and manage well the jest: +Carry him gently to my fairest chamber +And hang it round with all my wanton pictures: +Balm his foul head in warm distilled waters +And burn sweet wood to make the lodging sweet: +Procure me music ready when he wakes, +To make a dulcet and a heavenly sound; +And if he chance to speak, be ready straight +And with a low submissive reverence +Say 'What is it your honour will command?' +Let one attend him with a silver basin +Full of rose-water and bestrew'd with flowers, +Another bear the ewer, the third a diaper, +And say 'Will't please your lordship cool your hands?' +Some one be ready with a costly suit +And ask him what apparel he will wear; +Another tell him of his hounds and horse, +And that his lady mourns at his disease: +Persuade him that he hath been lunatic; +And when he says he is, say that he dreams, +For he is nothing but a mighty lord. +This do and do it kindly, gentle sirs: +It will be pastime passing excellent, +If it be husbanded with modesty. + +First Huntsman: +My lord, I warrant you we will play our part, +As he shall think by our true diligence +He is no less than what we say he is. + +Lord: +Take him up gently and to bed with him; +And each one to his office when he wakes. +Sirrah, go see what trumpet 'tis that sounds: +Belike, some noble gentleman that means, +Travelling some journey, to repose him here. +How now! who is it? + +Servant: +An't please your honour, players +That offer service to your lordship. + +Lord: +Bid them come near. +Now, fellows, you are welcome. + +Players: +We thank your honour. + +Lord: +Do you intend to stay with me tonight? + +A Player: +So please your lordship to accept our duty. + +Lord: +With all my heart. This fellow I remember, +Since once he play'd a farmer's eldest son: +'Twas where you woo'd the gentlewoman so well: +I have forgot your name; but, sure, that part +Was aptly fitted and naturally perform'd. + +A Player: +I think 'twas Soto that your honour means. + +Lord: +'Tis very true: thou didst it excellent. +Well, you are come to me in a happy time; +The rather for I have some sport in hand +Wherein your cunning can assist me much. +There is a lord will hear you play to-night: +But I am doubtful of your modesties; +Lest over-eyeing of his odd behavior,-- +For yet his honour never heard a play-- +You break into some merry passion +And so offend him; for I tell you, sirs, +If you should smile he grows impatient. + +A Player: +Fear not, my lord: we can contain ourselves, +Were he the veriest antic in the world. + +Lord: +Go, sirrah, take them to the buttery, +And give them friendly welcome every one: +Let them want nothing that my house affords. +Sirrah, go you to Barthol'mew my page, +And see him dress'd in all suits like a lady: +That done, conduct him to the drunkard's chamber; +And call him 'madam,' do him obeisance. +Tell him from me, as he will win my love, +He bear himself with honourable action, +Such as he hath observed in noble ladies +Unto their lords, by them accomplished: +Such duty to the drunkard let him do +With soft low tongue and lowly courtesy, +And say 'What is't your honour will command, +Wherein your lady and your humble wife +May show her duty and make known her love?' +And then with kind embracements, tempting kisses, +And with declining head into his bosom, +Bid him shed tears, as being overjoy'd +To see her noble lord restored to health, +Who for this seven years hath esteem'd him +No better than a poor and loathsome beggar: +And if the boy have not a woman's gift +To rain a shower of commanded tears, +An onion will do well for such a shift, +Which in a napkin being close convey'd +Shall in despite enforce a watery eye. +See this dispatch'd with all the haste thou canst: +Anon I'll give thee more instructions. +I know the boy will well usurp the grace, +Voice, gait and action of a gentlewoman: +I long to hear him call the drunkard husband, +And how my men will stay themselves from laughter +When they do homage to this simple peasant. +I'll in to counsel them; haply my presence +May well abate the over-merry spleen +Which otherwise would grow into extremes. + +SLY: +For God's sake, a pot of small ale. + +First Servant: +Will't please your lordship drink a cup of sack? + +Second Servant: +Will't please your honour taste of these conserves? + +Third Servant: +What raiment will your honour wear to-day? + +SLY: +I am Christophero Sly; call not me 'honour' nor +'lordship:' I ne'er drank sack in my life; and if +you give me any conserves, give me conserves of +beef: ne'er ask me what raiment I'll wear; for I +have no more doublets than backs, no more stockings +than legs, nor no more shoes than feet; nay, +sometimes more feet than shoes, or such shoes as my +toes look through the over-leather. + +Lord: +Heaven cease this idle humour in your honour! +O, that a mighty man of such descent, +Of such possessions and so high esteem, +Should be infused with so foul a spirit! + +SLY: +What, would you make me mad? Am not I Christopher +Sly, old Sly's son of Burtonheath, by birth a +pedlar, by education a cardmaker, by transmutation a +bear-herd, and now by present profession a tinker? +Ask Marian Hacket, the fat ale-wife of Wincot, if +she know me not: if she say I am not fourteen pence +on the score for sheer ale, score me up for the +lyingest knave in Christendom. What! I am not +bestraught: here's-- + +Third Servant: +O, this it is that makes your lady mourn! + +Second Servant: +O, this is it that makes your servants droop! + +Lord: +Hence comes it that your kindred shuns your house, +As beaten hence by your strange lunacy. +O noble lord, bethink thee of thy birth, +Call home thy ancient thoughts from banishment +And banish hence these abject lowly dreams. +Look how thy servants do attend on thee, +Each in his office ready at thy beck. +Wilt thou have music? hark! Apollo plays, +And twenty caged nightingales do sing: +Or wilt thou sleep? we'll have thee to a couch +Softer and sweeter than the lustful bed +On purpose trimm'd up for Semiramis. +Say thou wilt walk; we will bestrew the ground: +Or wilt thou ride? thy horses shall be trapp'd, +Their harness studded all with gold and pearl. +Dost thou love hawking? thou hast hawks will soar +Above the morning lark or wilt thou hunt? +Thy hounds shall make the welkin answer them +And fetch shrill echoes from the hollow earth. + +First Servant: +Say thou wilt course; thy greyhounds are as swift +As breathed stags, ay, fleeter than the roe. + +Second Servant: +Dost thou love pictures? we will fetch thee straight +Adonis painted by a running brook, +And Cytherea all in sedges hid, +Which seem to move and wanton with her breath, +Even as the waving sedges play with wind. + +Lord: +We'll show thee Io as she was a maid, +And how she was beguiled and surprised, +As lively painted as the deed was done. + +Third Servant: +Or Daphne roaming through a thorny wood, +Scratching her legs that one shall swear she bleeds, +And at that sight shall sad Apollo weep, +So workmanly the blood and tears are drawn. + +Lord: +Thou art a lord, and nothing but a lord: +Thou hast a lady far more beautiful +Than any woman in this waning age. + +First Servant: +And till the tears that she hath shed for thee +Like envious floods o'er-run her lovely face, +She was the fairest creature in the world; +And yet she is inferior to none. + +SLY: +Am I a lord? and have I such a lady? +Or do I dream? or have I dream'd till now? +I do not sleep: I see, I hear, I speak; +I smell sweet savours and I feel soft things: +Upon my life, I am a lord indeed +And not a tinker nor Christophero Sly. +Well, bring our lady hither to our sight; +And once again, a pot o' the smallest ale. + +Second Servant: +Will't please your mightiness to wash your hands? +O, how we joy to see your wit restored! +O, that once more you knew but what you are! +These fifteen years you have been in a dream; +Or when you waked, so waked as if you slept. + +SLY: +These fifteen years! by my fay, a goodly nap. +But did I never speak of all that time? + +First Servant: +O, yes, my lord, but very idle words: +For though you lay here in this goodly chamber, +Yet would you say ye were beaten out of door; +And rail upon the hostess of the house; +And say you would present her at the leet, +Because she brought stone jugs and no seal'd quarts: +Sometimes you would call out for Cicely Hacket. + +SLY: +Ay, the woman's maid of the house. + +Third Servant: +Why, sir, you know no house nor no such maid, +Nor no such men as you have reckon'd up, +As Stephen Sly and did John Naps of Greece +And Peter Turph and Henry Pimpernell +And twenty more such names and men as these +Which never were nor no man ever saw. + +SLY: +Now Lord be thanked for my good amends! + +ALL: +Amen. + +SLY: +I thank thee: thou shalt not lose by it. + +Page: +How fares my noble lord? + +SLY: +Marry, I fare well for here is cheer enough. +Where is my wife? + +Page: +Here, noble lord: what is thy will with her? + +SLY: +Are you my wife and will not call me husband? +My men should call me 'lord:' I am your goodman. + +Page: +My husband and my lord, my lord and husband; +I am your wife in all obedience. + +SLY: +I know it well. What must I call her? + +Lord: +Madam. + +SLY: +Al'ce madam, or Joan madam? + +Lord: +'Madam,' and nothing else: so lords +call ladies. + +SLY: +Madam wife, they say that I have dream'd +And slept above some fifteen year or more. + +Page: +Ay, and the time seems thirty unto me, +Being all this time abandon'd from your bed. + +SLY: +'Tis much. Servants, leave me and her alone. +Madam, undress you and come now to bed. + +Page: +Thrice noble lord, let me entreat of you +To pardon me yet for a night or two, +Or, if not so, until the sun be set: +For your physicians have expressly charged, +In peril to incur your former malady, +That I should yet absent me from your bed: +I hope this reason stands for my excuse. + +SLY: +Ay, it stands so that I may hardly +tarry so long. But I would be loath to fall into +my dreams again: I will therefore tarry in +despite of the flesh and the blood. + +Messenger: +Your honour's players, heating your amendment, +Are come to play a pleasant comedy; +For so your doctors hold it very meet, +Seeing too much sadness hath congeal'd your blood, +And melancholy is the nurse of frenzy: +Therefore they thought it good you hear a play +And frame your mind to mirth and merriment, +Which bars a thousand harms and lengthens life. + +SLY: +Marry, I will, let them play it. Is not a +comondy a Christmas gambold or a tumbling-trick? + +Page: +No, my good lord; it is more pleasing stuff. + +SLY: +What, household stuff? + +Page: +It is a kind of history. + +SLY: +Well, well see't. Come, madam wife, sit by my side +and let the world slip: we shall ne'er be younger. + +LUCENTIO: +Tranio, since for the great desire I had +To see fair Padua, nursery of arts, +I am arrived for fruitful Lombardy, +The pleasant garden of great Italy; +And by my father's love and leave am arm'd +With his good will and thy good company, +My trusty servant, well approved in all, +Here let us breathe and haply institute +A course of learning and ingenious studies. +Pisa renown'd for grave citizens +Gave me my being and my father first, +A merchant of great traffic through the world, +Vincetino come of Bentivolii. +Vincetino's son brought up in Florence +It shall become to serve all hopes conceived, +To deck his fortune with his virtuous deeds: +And therefore, Tranio, for the time I study, +Virtue and that part of philosophy +Will I apply that treats of happiness +By virtue specially to be achieved. +Tell me thy mind; for I have Pisa left +And am to Padua come, as he that leaves +A shallow plash to plunge him in the deep +And with satiety seeks to quench his thirst. + +TRANIO: +Mi perdonato, gentle master mine, +I am in all affected as yourself; +Glad that you thus continue your resolve +To suck the sweets of sweet philosophy. +Only, good master, while we do admire +This virtue and this moral discipline, +Let's be no stoics nor no stocks, I pray; +Or so devote to Aristotle's cheques +As Ovid be an outcast quite abjured: +Balk logic with acquaintance that you have +And practise rhetoric in your common talk; +Music and poesy use to quicken you; +The mathematics and the metaphysics, +Fall to them as you find your stomach serves you; +No profit grows where is no pleasure ta'en: +In brief, sir, study what you most affect. + +LUCENTIO: +Gramercies, Tranio, well dost thou advise. +If, Biondello, thou wert come ashore, +We could at once put us in readiness, +And take a lodging fit to entertain +Such friends as time in Padua shall beget. +But stay a while: what company is this? + +TRANIO: +Master, some show to welcome us to town. + +BAPTISTA: +Gentlemen, importune me no farther, +For how I firmly am resolved you know; +That is, not bestow my youngest daughter +Before I have a husband for the elder: +If either of you both love Katharina, +Because I know you well and love you well, +Leave shall you have to court her at your pleasure. + +GREMIO: + +KATHARINA: +I pray you, sir, is it your will +To make a stale of me amongst these mates? + +HORTENSIO: +Mates, maid! how mean you that? no mates for you, +Unless you were of gentler, milder mould. + +KATHARINA: +I'faith, sir, you shall never need to fear: +I wis it is not half way to her heart; +But if it were, doubt not her care should be +To comb your noddle with a three-legg'd stool +And paint your face and use you like a fool. + +HORTENSIA: +From all such devils, good Lord deliver us! + +GREMIO: +And me too, good Lord! + +TRANIO: +Hush, master! here's some good pastime toward: +That wench is stark mad or wonderful froward. + +LUCENTIO: +But in the other's silence do I see +Maid's mild behavior and sobriety. +Peace, Tranio! + +TRANIO: +Well said, master; mum! and gaze your fill. + +BAPTISTA: +Gentlemen, that I may soon make good +What I have said, Bianca, get you in: +And let it not displease thee, good Bianca, +For I will love thee ne'er the less, my girl. + +KATHARINA: +A pretty peat! it is best +Put finger in the eye, an she knew why. + +BIANCA: +Sister, content you in my discontent. +Sir, to your pleasure humbly I subscribe: +My books and instruments shall be my company, +On them to took and practise by myself. + +LUCENTIO: +Hark, Tranio! thou may'st hear Minerva speak. + +HORTENSIO: +Signior Baptista, will you be so strange? +Sorry am I that our good will effects +Bianca's grief. + +GREMIO: +Why will you mew her up, +Signior Baptista, for this fiend of hell, +And make her bear the penance of her tongue? + +BAPTISTA: +Gentlemen, content ye; I am resolved: +Go in, Bianca: +And for I know she taketh most delight +In music, instruments and poetry, +Schoolmasters will I keep within my house, +Fit to instruct her youth. If you, Hortensio, +Or Signior Gremio, you, know any such, +Prefer them hither; for to cunning men +I will be very kind, and liberal +To mine own children in good bringing up: +And so farewell. Katharina, you may stay; +For I have more to commune with Bianca. + +KATHARINA: +Why, and I trust I may go too, may I not? What, +shall I be appointed hours; as though, belike, I +knew not what to take and what to leave, ha? + +GREMIO: +You may go to the devil's dam: your gifts are so +good, here's none will hold you. Their love is not +so great, Hortensio, but we may blow our nails +together, and fast it fairly out: our cakes dough on +both sides. Farewell: yet for the love I bear my +sweet Bianca, if I can by any means light on a fit +man to teach her that wherein she delights, I will +wish him to her father. + +HORTENSIO: +So will I, Signior Gremio: but a word, I pray. +Though the nature of our quarrel yet never brooked +parle, know now, upon advice, it toucheth us both, +that we may yet again have access to our fair +mistress and be happy rivals in Bianco's love, to +labour and effect one thing specially. + +GREMIO: +What's that, I pray? + +HORTENSIO: +Marry, sir, to get a husband for her sister. + +GREMIO: +A husband! a devil. + +HORTENSIO: +I say, a husband. + +GREMIO: +I say, a devil. Thinkest thou, Hortensio, though +her father be very rich, any man is so very a fool +to be married to hell? + +HORTENSIO: +Tush, Gremio, though it pass your patience and mine +to endure her loud alarums, why, man, there be good +fellows in the world, an a man could light on them, +would take her with all faults, and money enough. + +GREMIO: +I cannot tell; but I had as lief take her dowry with +this condition, to be whipped at the high cross +every morning. + +HORTENSIO: +Faith, as you say, there's small choice in rotten +apples. But come; since this bar in law makes us +friends, it shall be so far forth friendly +maintained all by helping Baptista's eldest daughter +to a husband we set his youngest free for a husband, +and then have to't a fresh. Sweet Bianca! Happy man +be his dole! He that runs fastest gets the ring. +How say you, Signior Gremio? + +GREMIO: +I am agreed; and would I had given him the best +horse in Padua to begin his wooing that would +thoroughly woo her, wed her and bed her and rid the +house of her! Come on. + +TRANIO: +I pray, sir, tell me, is it possible +That love should of a sudden take such hold? + +LUCENTIO: +O Tranio, till I found it to be true, +I never thought it possible or likely; +But see, while idly I stood looking on, +I found the effect of love in idleness: +And now in plainness do confess to thee, +That art to me as secret and as dear +As Anna to the queen of Carthage was, +Tranio, I burn, I pine, I perish, Tranio, +If I achieve not this young modest girl. +Counsel me, Tranio, for I know thou canst; +Assist me, Tranio, for I know thou wilt. + +TRANIO: +Master, it is no time to chide you now; +Affection is not rated from the heart: +If love have touch'd you, nought remains but so, +'Redime te captum quam queas minimo.' + +LUCENTIO: +Gramercies, lad, go forward; this contents: +The rest will comfort, for thy counsel's sound. + +TRANIO: +Master, you look'd so longly on the maid, +Perhaps you mark'd not what's the pith of all. + +LUCENTIO: +O yes, I saw sweet beauty in her face, +Such as the daughter of Agenor had, +That made great Jove to humble him to her hand. +When with his knees he kiss'd the Cretan strand. + +TRANIO: +Saw you no more? mark'd you not how her sister +Began to scold and raise up such a storm +That mortal ears might hardly endure the din? + +LUCENTIO: +Tranio, I saw her coral lips to move +And with her breath she did perfume the air: +Sacred and sweet was all I saw in her. + +TRANIO: +Nay, then, 'tis time to stir him from his trance. +I pray, awake, sir: if you love the maid, +Bend thoughts and wits to achieve her. Thus it stands: +Her eldest sister is so curst and shrewd +That till the father rid his hands of her, +Master, your love must live a maid at home; +And therefore has he closely mew'd her up, +Because she will not be annoy'd with suitors. + +LUCENTIO: +Ah, Tranio, what a cruel father's he! +But art thou not advised, he took some care +To get her cunning schoolmasters to instruct her? + +TRANIO: +Ay, marry, am I, sir; and now 'tis plotted. + +LUCENTIO: +I have it, Tranio. + +TRANIO: +Master, for my hand, +Both our inventions meet and jump in one. + +LUCENTIO: +Tell me thine first. + +TRANIO: +You will be schoolmaster +And undertake the teaching of the maid: +That's your device. + +LUCENTIO: +It is: may it be done? + +TRANIO: +Not possible; for who shall bear your part, +And be in Padua here Vincentio's son, +Keep house and ply his book, welcome his friends, +Visit his countrymen and banquet them? + +LUCENTIO: +Basta; content thee, for I have it full. +We have not yet been seen in any house, +Nor can we lie distinguish'd by our faces +For man or master; then it follows thus; +Thou shalt be master, Tranio, in my stead, +Keep house and port and servants as I should: +I will some other be, some Florentine, +Some Neapolitan, or meaner man of Pisa. +'Tis hatch'd and shall be so: Tranio, at once +Uncase thee; take my colour'd hat and cloak: +When Biondello comes, he waits on thee; +But I will charm him first to keep his tongue. + +TRANIO: +So had you need. +In brief, sir, sith it your pleasure is, +And I am tied to be obedient; +For so your father charged me at our parting, +'Be serviceable to my son,' quoth he, +Although I think 'twas in another sense; +I am content to be Lucentio, +Because so well I love Lucentio. + +LUCENTIO: +Tranio, be so, because Lucentio loves: +And let me be a slave, to achieve that maid +Whose sudden sight hath thrall'd my wounded eye. +Here comes the rogue. +Sirrah, where have you been? + +BIONDELLO: +Where have I been! Nay, how now! where are you? +Master, has my fellow Tranio stolen your clothes? Or +you stolen his? or both? pray, what's the news? + +LUCENTIO: +Sirrah, come hither: 'tis no time to jest, +And therefore frame your manners to the time. +Your fellow Tranio here, to save my life, +Puts my apparel and my countenance on, +And I for my escape have put on his; +For in a quarrel since I came ashore +I kill'd a man and fear I was descried: +Wait you on him, I charge you, as becomes, +While I make way from hence to save my life: +You understand me? + +BIONDELLO: +I, sir! ne'er a whit. + +LUCENTIO: +And not a jot of Tranio in your mouth: +Tranio is changed into Lucentio. + +BIONDELLO: +The better for him: would I were so too! + +TRANIO: +So could I, faith, boy, to have the next wish after, +That Lucentio indeed had Baptista's youngest daughter. +But, sirrah, not for my sake, but your master's, I advise +You use your manners discreetly in all kind of companies: +When I am alone, why, then I am Tranio; +But in all places else your master Lucentio. + +LUCENTIO: +Tranio, let's go: one thing more rests, that +thyself execute, to make one among these wooers: if +thou ask me why, sufficeth, my reasons are both good +and weighty. + +First Servant: +My lord, you nod; you do not mind the play. + +SLY: +Yes, by Saint Anne, do I. A good matter, surely: +comes there any more of it? + +Page: +My lord, 'tis but begun. + +SLY: +'Tis a very excellent piece of work, madam lady: +would 'twere done! + +PETRUCHIO: +Verona, for a while I take my leave, +To see my friends in Padua, but of all +My best beloved and approved friend, +Hortensio; and I trow this is his house. +Here, sirrah Grumio; knock, I say. + +GRUMIO: +Knock, sir! whom should I knock? is there man has +rebused your worship? + +PETRUCHIO: +Villain, I say, knock me here soundly. + +GRUMIO: +Knock you here, sir! why, sir, what am I, sir, that +I should knock you here, sir? + +PETRUCHIO: +Villain, I say, knock me at this gate +And rap me well, or I'll knock your knave's pate. + +GRUMIO: +My master is grown quarrelsome. I should knock +you first, +And then I know after who comes by the worst. + +PETRUCHIO: +Will it not be? +Faith, sirrah, an you'll not knock, I'll ring it; +I'll try how you can sol, fa, and sing it. + +GRUMIO: +Help, masters, help! my master is mad. + +PETRUCHIO: +Now, knock when I bid you, sirrah villain! + +HORTENSIO: +How now! what's the matter? My old friend Grumio! +and my good friend Petruchio! How do you all at Verona? + +PETRUCHIO: +Signior Hortensio, come you to part the fray? +'Con tutto il cuore, ben trovato,' may I say. + +HORTENSIO: +'Alla nostra casa ben venuto, molto honorato signor +mio Petruchio.' Rise, Grumio, rise: we will compound +this quarrel. + +GRUMIO: +Nay, 'tis no matter, sir, what he 'leges in Latin. +if this be not a lawful case for me to leave his +service, look you, sir, he bid me knock him and rap +him soundly, sir: well, was it fit for a servant to +use his master so, being perhaps, for aught I see, +two and thirty, a pip out? Whom would to God I had +well knock'd at first, Then had not Grumio come by the worst. + +PETRUCHIO: +A senseless villain! Good Hortensio, +I bade the rascal knock upon your gate +And could not get him for my heart to do it. + +GRUMIO: +Knock at the gate! O heavens! Spake you not these +words plain, 'Sirrah, knock me here, rap me here, +knock me well, and knock me soundly'? And come you +now with, 'knocking at the gate'? + +PETRUCHIO: +Sirrah, be gone, or talk not, I advise you. + +HORTENSIO: +Petruchio, patience; I am Grumio's pledge: +Why, this's a heavy chance 'twixt him and you, +Your ancient, trusty, pleasant servant Grumio. +And tell me now, sweet friend, what happy gale +Blows you to Padua here from old Verona? + +PETRUCHIO: +Such wind as scatters young men through the world, +To seek their fortunes farther than at home +Where small experience grows. But in a few, +Signior Hortensio, thus it stands with me: +Antonio, my father, is deceased; +And I have thrust myself into this maze, +Haply to wive and thrive as best I may: +Crowns in my purse I have and goods at home, +And so am come abroad to see the world. + +HORTENSIO: +Petruchio, shall I then come roundly to thee +And wish thee to a shrewd ill-favour'd wife? +Thou'ldst thank me but a little for my counsel: +And yet I'll promise thee she shall be rich +And very rich: but thou'rt too much my friend, +And I'll not wish thee to her. + +PETRUCHIO: +Signior Hortensio, 'twixt such friends as we +Few words suffice; and therefore, if thou know +One rich enough to be Petruchio's wife, +As wealth is burden of my wooing dance, +Be she as foul as was Florentius' love, +As old as Sibyl and as curst and shrewd +As Socrates' Xanthippe, or a worse, +She moves me not, or not removes, at least, +Affection's edge in me, were she as rough +As are the swelling Adriatic seas: +I come to wive it wealthily in Padua; +If wealthily, then happily in Padua. + +GRUMIO: +Nay, look you, sir, he tells you flatly what his +mind is: Why give him gold enough and marry him to +a puppet or an aglet-baby; or an old trot with ne'er +a tooth in her head, though she have as many diseases +as two and fifty horses: why, nothing comes amiss, +so money comes withal. + +HORTENSIO: +Petruchio, since we are stepp'd thus far in, +I will continue that I broach'd in jest. +I can, Petruchio, help thee to a wife +With wealth enough and young and beauteous, +Brought up as best becomes a gentlewoman: +Her only fault, and that is faults enough, +Is that she is intolerable curst +And shrewd and froward, so beyond all measure +That, were my state far worser than it is, +I would not wed her for a mine of gold. + +PETRUCHIO: +Hortensio, peace! thou know'st not gold's effect: +Tell me her father's name and 'tis enough; +For I will board her, though she chide as loud +As thunder when the clouds in autumn crack. + +HORTENSIO: +Her father is Baptista Minola, +An affable and courteous gentleman: +Her name is Katharina Minola, +Renown'd in Padua for her scolding tongue. + +PETRUCHIO: +I know her father, though I know not her; +And he knew my deceased father well. +I will not sleep, Hortensio, till I see her; +And therefore let me be thus bold with you +To give you over at this first encounter, +Unless you will accompany me thither. + +GRUMIO: +I pray you, sir, let him go while the humour lasts. +O' my word, an she knew him as well as I do, she +would think scolding would do little good upon him: +she may perhaps call him half a score knaves or so: +why, that's nothing; an he begin once, he'll rail in +his rope-tricks. I'll tell you what sir, an she +stand him but a little, he will throw a figure in +her face and so disfigure her with it that she +shall have no more eyes to see withal than a cat. +You know him not, sir. + +HORTENSIO: +Tarry, Petruchio, I must go with thee, +For in Baptista's keep my treasure is: +He hath the jewel of my life in hold, +His youngest daughter, beautiful Binaca, +And her withholds from me and other more, +Suitors to her and rivals in my love, +Supposing it a thing impossible, +For those defects I have before rehearsed, +That ever Katharina will be woo'd; +Therefore this order hath Baptista ta'en, +That none shall have access unto Bianca +Till Katharina the curst have got a husband. + +GRUMIO: +Katharina the curst! +A title for a maid of all titles the worst. + +HORTENSIO: +Now shall my friend Petruchio do me grace, +And offer me disguised in sober robes +To old Baptista as a schoolmaster +Well seen in music, to instruct Bianca; +That so I may, by this device, at least +Have leave and leisure to make love to her +And unsuspected court her by herself. + +GRUMIO: +Here's no knavery! See, to beguile the old folks, +how the young folks lay their heads together! +Master, master, look about you: who goes there, ha? + +HORTENSIO: +Peace, Grumio! it is the rival of my love. +Petruchio, stand by a while. + +GRUMIO: +A proper stripling and an amorous! + +GREMIO: +O, very well; I have perused the note. +Hark you, sir: I'll have them very fairly bound: +All books of love, see that at any hand; +And see you read no other lectures to her: +You understand me: over and beside +Signior Baptista's liberality, +I'll mend it with a largess. Take your paper too, +And let me have them very well perfumed +For she is sweeter than perfume itself +To whom they go to. What will you read to her? + +LUCENTIO: +Whate'er I read to her, I'll plead for you +As for my patron, stand you so assured, +As firmly as yourself were still in place: +Yea, and perhaps with more successful words +Than you, unless you were a scholar, sir. + +GREMIO: +O this learning, what a thing it is! + +GRUMIO: +O this woodcock, what an ass it is! + +PETRUCHIO: +Peace, sirrah! + +HORTENSIO: +Grumio, mum! God save you, Signior Gremio. + +GREMIO: +And you are well met, Signior Hortensio. +Trow you whither I am going? To Baptista Minola. +I promised to inquire carefully +About a schoolmaster for the fair Bianca: +And by good fortune I have lighted well +On this young man, for learning and behavior +Fit for her turn, well read in poetry +And other books, good ones, I warrant ye. + +HORTENSIO: +'Tis well; and I have met a gentleman +Hath promised me to help me to another, +A fine musician to instruct our mistress; +So shall I no whit be behind in duty +To fair Bianca, so beloved of me. + +GREMIO: +Beloved of me; and that my deeds shall prove. + +GRUMIO: +And that his bags shall prove. + +HORTENSIO: +Gremio, 'tis now no time to vent our love: +Listen to me, and if you speak me fair, +I'll tell you news indifferent good for either. +Here is a gentleman whom by chance I met, +Upon agreement from us to his liking, +Will undertake to woo curst Katharina, +Yea, and to marry her, if her dowry please. + +GREMIO: +So said, so done, is well. +Hortensio, have you told him all her faults? + +PETRUCHIO: +I know she is an irksome brawling scold: +If that be all, masters, I hear no harm. + +GREMIO: +No, say'st me so, friend? What countryman? + +PETRUCHIO: +Born in Verona, old Antonio's son: +My father dead, my fortune lives for me; +And I do hope good days and long to see. + +GREMIO: +O sir, such a life, with such a wife, were strange! +But if you have a stomach, to't i' God's name: +You shall have me assisting you in all. +But will you woo this wild-cat? + +PETRUCHIO: +Will I live? + +GRUMIO: +Will he woo her? ay, or I'll hang her. + +PETRUCHIO: +Why came I hither but to that intent? +Think you a little din can daunt mine ears? +Have I not in my time heard lions roar? +Have I not heard the sea puff'd up with winds +Rage like an angry boar chafed with sweat? +Have I not heard great ordnance in the field, +And heaven's artillery thunder in the skies? +Have I not in a pitched battle heard +Loud 'larums, neighing steeds, and trumpets' clang? +And do you tell me of a woman's tongue, +That gives not half so great a blow to hear +As will a chestnut in a farmer's fire? +Tush, tush! fear boys with bugs. + +GRUMIO: +For he fears none. + +GREMIO: +Hortensio, hark: +This gentleman is happily arrived, +My mind presumes, for his own good and ours. + +HORTENSIO: +I promised we would be contributors +And bear his charging of wooing, whatsoe'er. + +GREMIO: +And so we will, provided that he win her. + +GRUMIO: +I would I were as sure of a good dinner. + +TRANIO: +Gentlemen, God save you. If I may be bold, +Tell me, I beseech you, which is the readiest way +To the house of Signior Baptista Minola? + +BIONDELLO: +He that has the two fair daughters: is't he you mean? + +TRANIO: +Even he, Biondello. + +GREMIO: +Hark you, sir; you mean not her to-- + +TRANIO: +Perhaps, him and her, sir: what have you to do? + +PETRUCHIO: +Not her that chides, sir, at any hand, I pray. + +TRANIO: +I love no chiders, sir. Biondello, let's away. + +LUCENTIO: +Well begun, Tranio. + +HORTENSIO: +Sir, a word ere you go; +Are you a suitor to the maid you talk of, yea or no? + +TRANIO: +And if I be, sir, is it any offence? + +GREMIO: +No; if without more words you will get you hence. + +TRANIO: +Why, sir, I pray, are not the streets as free +For me as for you? + +GREMIO: +But so is not she. + +TRANIO: +For what reason, I beseech you? + +GREMIO: +For this reason, if you'll know, +That she's the choice love of Signior Gremio. + +HORTENSIO: +That she's the chosen of Signior Hortensio. + +TRANIO: +Softly, my masters! if you be gentlemen, +Do me this right; hear me with patience. +Baptista is a noble gentleman, +To whom my father is not all unknown; +And were his daughter fairer than she is, +She may more suitors have and me for one. +Fair Leda's daughter had a thousand wooers; +Then well one more may fair Bianca have: +And so she shall; Lucentio shall make one, +Though Paris came in hope to speed alone. + +GREMIO: +What! this gentleman will out-talk us all. + +LUCENTIO: +Sir, give him head: I know he'll prove a jade. + +PETRUCHIO: +Hortensio, to what end are all these words? + +HORTENSIO: +Sir, let me be so bold as ask you, +Did you yet ever see Baptista's daughter? + +TRANIO: +No, sir; but hear I do that he hath two, +The one as famous for a scolding tongue +As is the other for beauteous modesty. + +PETRUCHIO: +Sir, sir, the first's for me; let her go by. + +GREMIO: +Yea, leave that labour to great Hercules; +And let it be more than Alcides' twelve. + +PETRUCHIO: +Sir, understand you this of me in sooth: +The youngest daughter whom you hearken for +Her father keeps from all access of suitors, +And will not promise her to any man +Until the elder sister first be wed: +The younger then is free and not before. + +TRANIO: +If it be so, sir, that you are the man +Must stead us all and me amongst the rest, +And if you break the ice and do this feat, +Achieve the elder, set the younger free +For our access, whose hap shall be to have her +Will not so graceless be to be ingrate. + +HORTENSIO: +Sir, you say well and well you do conceive; +And since you do profess to be a suitor, +You must, as we do, gratify this gentleman, +To whom we all rest generally beholding. + +TRANIO: +Sir, I shall not be slack: in sign whereof, +Please ye we may contrive this afternoon, +And quaff carouses to our mistress' health, +And do as adversaries do in law, +Strive mightily, but eat and drink as friends. + +GRUMIO: +O excellent motion! Fellows, let's be gone. + +HORTENSIO: +The motion's good indeed and be it so, +Petruchio, I shall be your ben venuto. + +BIANCA: +Good sister, wrong me not, nor wrong yourself, +To make a bondmaid and a slave of me; +That I disdain: but for these other gawds, +Unbind my hands, I'll pull them off myself, +Yea, all my raiment, to my petticoat; +Or what you will command me will I do, +So well I know my duty to my elders. + +KATHARINA: +Of all thy suitors, here I charge thee, tell +Whom thou lovest best: see thou dissemble not. + +BIANCA: +Believe me, sister, of all the men alive +I never yet beheld that special face +Which I could fancy more than any other. + +KATHARINA: +Minion, thou liest. Is't not Hortensio? + +BIANCA: +If you affect him, sister, here I swear +I'll plead for you myself, but you shall have +him. + +KATHARINA: +O then, belike, you fancy riches more: +You will have Gremio to keep you fair. + +BIANCA: +Is it for him you do envy me so? +Nay then you jest, and now I well perceive +You have but jested with me all this while: +I prithee, sister Kate, untie my hands. + +KATHARINA: +If that be jest, then all the rest was so. + +BAPTISTA: +Why, how now, dame! whence grows this insolence? +Bianca, stand aside. Poor girl! she weeps. +Go ply thy needle; meddle not with her. +For shame, thou helding of a devilish spirit, +Why dost thou wrong her that did ne'er wrong thee? +When did she cross thee with a bitter word? + +KATHARINA: +Her silence flouts me, and I'll be revenged. + +BAPTISTA: +What, in my sight? Bianca, get thee in. + +KATHARINA: +What, will you not suffer me? Nay, now I see +She is your treasure, she must have a husband; +I must dance bare-foot on her wedding day +And for your love to her lead apes in hell. +Talk not to me: I will go sit and weep +Till I can find occasion of revenge. + +BAPTISTA: +Was ever gentleman thus grieved as I? +But who comes here? + +GREMIO: +Good morrow, neighbour Baptista. + +BAPTISTA: +Good morrow, neighbour Gremio. +God save you, gentlemen! + +PETRUCHIO: +And you, good sir! Pray, have you not a daughter +Call'd Katharina, fair and virtuous? + +BAPTISTA: +I have a daughter, sir, called Katharina. + +GREMIO: +You are too blunt: go to it orderly. + +PETRUCHIO: +You wrong me, Signior Gremio: give me leave. +I am a gentleman of Verona, sir, +That, hearing of her beauty and her wit, +Her affability and bashful modesty, +Her wondrous qualities and mild behavior, +Am bold to show myself a forward guest +Within your house, to make mine eye the witness +Of that report which I so oft have heard. +And, for an entrance to my entertainment, +I do present you with a man of mine, +Cunning in music and the mathematics, +To instruct her fully in those sciences, +Whereof I know she is not ignorant: +Accept of him, or else you do me wrong: +His name is Licio, born in Mantua. + +BAPTISTA: +You're welcome, sir; and he, for your good sake. +But for my daughter Katharina, this I know, +She is not for your turn, the more my grief. + +PETRUCHIO: +I see you do not mean to part with her, +Or else you like not of my company. + +BAPTISTA: +Mistake me not; I speak but as I find. +Whence are you, sir? what may I call your name? + +PETRUCHIO: +Petruchio is my name; Antonio's son, +A man well known throughout all Italy. + +BAPTISTA: +I know him well: you are welcome for his sake. + +GREMIO: +Saving your tale, Petruchio, I pray, +Let us, that are poor petitioners, speak too: +Baccare! you are marvellous forward. + +PETRUCHIO: +O, pardon me, Signior Gremio; I would fain be doing. + +GREMIO: +I doubt it not, sir; but you will curse your +wooing. Neighbour, this is a gift very grateful, I am +sure of it. To express the like kindness, myself, +that have been more kindly beholding to you than +any, freely give unto you this young scholar, +that hath been long studying at Rheims; as cunning +in Greek, Latin, and other languages, as the other +in music and mathematics: his name is Cambio; pray, +accept his service. + +BAPTISTA: +A thousand thanks, Signior Gremio. +Welcome, good Cambio. +But, gentle sir, methinks you walk like a stranger: +may I be so bold to know the cause of your coming? + +TRANIO: +Pardon me, sir, the boldness is mine own, +That, being a stranger in this city here, +Do make myself a suitor to your daughter, +Unto Bianca, fair and virtuous. +Nor is your firm resolve unknown to me, +In the preferment of the eldest sister. +This liberty is all that I request, +That, upon knowledge of my parentage, +I may have welcome 'mongst the rest that woo +And free access and favour as the rest: +And, toward the education of your daughters, +I here bestow a simple instrument, +And this small packet of Greek and Latin books: +If you accept them, then their worth is great. + +BAPTISTA: +Lucentio is your name; of whence, I pray? + +TRANIO: +Of Pisa, sir; son to Vincentio. + +BAPTISTA: +A mighty man of Pisa; by report +I know him well: you are very welcome, sir, +Take you the lute, and you the set of books; +You shall go see your pupils presently. +Holla, within! +Sirrah, lead these gentlemen +To my daughters; and tell them both, +These are their tutors: bid them use them well. +We will go walk a little in the orchard, +And then to dinner. You are passing welcome, +And so I pray you all to think yourselves. + +PETRUCHIO: +Signior Baptista, my business asketh haste, +And every day I cannot come to woo. +You knew my father well, and in him me, +Left solely heir to all his lands and goods, +Which I have better'd rather than decreased: +Then tell me, if I get your daughter's love, +What dowry shall I have with her to wife? + +BAPTISTA: +After my death the one half of my lands, +And in possession twenty thousand crowns. + +PETRUCHIO: +And, for that dowry, I'll assure her of +Her widowhood, be it that she survive me, +In all my lands and leases whatsoever: +Let specialties be therefore drawn between us, +That covenants may be kept on either hand. + +BAPTISTA: +Ay, when the special thing is well obtain'd, +That is, her love; for that is all in all. + +PETRUCHIO: +Why, that is nothing: for I tell you, father, +I am as peremptory as she proud-minded; +And where two raging fires meet together +They do consume the thing that feeds their fury: +Though little fire grows great with little wind, +Yet extreme gusts will blow out fire and all: +So I to her and so she yields to me; +For I am rough and woo not like a babe. + +BAPTISTA: +Well mayst thou woo, and happy be thy speed! +But be thou arm'd for some unhappy words. + +PETRUCHIO: +Ay, to the proof; as mountains are for winds, +That shake not, though they blow perpetually. + +BAPTISTA: +How now, my friend! why dost thou look so pale? + +HORTENSIO: +For fear, I promise you, if I look pale. + +BAPTISTA: +What, will my daughter prove a good musician? + +HORTENSIO: +I think she'll sooner prove a soldier +Iron may hold with her, but never lutes. + +BAPTISTA: +Why, then thou canst not break her to the lute? + +HORTENSIO: +Why, no; for she hath broke the lute to me. +I did but tell her she mistook her frets, +And bow'd her hand to teach her fingering; +When, with a most impatient devilish spirit, +'Frets, call you these?' quoth she; 'I'll fume +with them:' +And, with that word, she struck me on the head, +And through the instrument my pate made way; +And there I stood amazed for a while, +As on a pillory, looking through the lute; +While she did call me rascal fiddler +And twangling Jack; with twenty such vile terms, +As had she studied to misuse me so. + +PETRUCHIO: +Now, by the world, it is a lusty wench; +I love her ten times more than e'er I did: +O, how I long to have some chat with her! + +BAPTISTA: +Well, go with me and be not so discomfited: +Proceed in practise with my younger daughter; +She's apt to learn and thankful for good turns. +Signior Petruchio, will you go with us, +Or shall I send my daughter Kate to you? + +PETRUCHIO: +I pray you do. +I will attend her here, +And woo her with some spirit when she comes. +Say that she rail; why then I'll tell her plain +She sings as sweetly as a nightingale: +Say that she frown, I'll say she looks as clear +As morning roses newly wash'd with dew: +Say she be mute and will not speak a word; +Then I'll commend her volubility, +And say she uttereth piercing eloquence: +If she do bid me pack, I'll give her thanks, +As though she bid me stay by her a week: +If she deny to wed, I'll crave the day +When I shall ask the banns and when be married. +But here she comes; and now, Petruchio, speak. +Good morrow, Kate; for that's your name, I hear. + +KATHARINA: +Well have you heard, but something hard of hearing: +They call me Katharina that do talk of me. + +PETRUCHIO: +You lie, in faith; for you are call'd plain Kate, +And bonny Kate and sometimes Kate the curst; +But Kate, the prettiest Kate in Christendom +Kate of Kate Hall, my super-dainty Kate, +For dainties are all Kates, and therefore, Kate, +Take this of me, Kate of my consolation; +Hearing thy mildness praised in every town, +Thy virtues spoke of, and thy beauty sounded, +Yet not so deeply as to thee belongs, +Myself am moved to woo thee for my wife. + +KATHARINA: +Moved! in good time: let him that moved you hither +Remove you hence: I knew you at the first +You were a moveable. + +PETRUCHIO: +Why, what's a moveable? + +KATHARINA: +A join'd-stool. + +PETRUCHIO: +Thou hast hit it: come, sit on me. + +KATHARINA: +Asses are made to bear, and so are you. + +PETRUCHIO: +Women are made to bear, and so are you. + +KATHARINA: +No such jade as you, if me you mean. + +PETRUCHIO: +Alas! good Kate, I will not burden thee; +For, knowing thee to be but young and light-- + +KATHARINA: +Too light for such a swain as you to catch; +And yet as heavy as my weight should be. + +PETRUCHIO: +Should be! should--buzz! + +KATHARINA: +Well ta'en, and like a buzzard. + +PETRUCHIO: +O slow-wing'd turtle! shall a buzzard take thee? + +KATHARINA: +Ay, for a turtle, as he takes a buzzard. + +PETRUCHIO: +Come, come, you wasp; i' faith, you are too angry. + +KATHARINA: +If I be waspish, best beware my sting. + +PETRUCHIO: +My remedy is then, to pluck it out. + +KATHARINA: +Ay, if the fool could find it where it lies, + +PETRUCHIO: +Who knows not where a wasp does +wear his sting? In his tail. + +KATHARINA: +In his tongue. + +PETRUCHIO: +Whose tongue? + +KATHARINA: +Yours, if you talk of tails: and so farewell. + +PETRUCHIO: +What, with my tongue in your tail? nay, come again, +Good Kate; I am a gentleman. + +KATHARINA: +That I'll try. + +PETRUCHIO: +I swear I'll cuff you, if you strike again. + +KATHARINA: +So may you lose your arms: +If you strike me, you are no gentleman; +And if no gentleman, why then no arms. + +PETRUCHIO: +A herald, Kate? O, put me in thy books! + +KATHARINA: +What is your crest? a coxcomb? + +PETRUCHIO: +A combless cock, so Kate will be my hen. + +KATHARINA: +No cock of mine; you crow too like a craven. + +PETRUCHIO: +Nay, come, Kate, come; you must not look so sour. + +KATHARINA: +It is my fashion, when I see a crab. + +PETRUCHIO: +Why, here's no crab; and therefore look not sour. + +KATHARINA: +There is, there is. + +PETRUCHIO: +Then show it me. + +KATHARINA: +Had I a glass, I would. + +PETRUCHIO: +What, you mean my face? + +KATHARINA: +Well aim'd of such a young one. + +PETRUCHIO: +Now, by Saint George, I am too young for you. + +KATHARINA: +Yet you are wither'd. + +PETRUCHIO: +'Tis with cares. + +KATHARINA: +I care not. + +PETRUCHIO: +Nay, hear you, Kate: in sooth you scape not so. + +KATHARINA: +I chafe you, if I tarry: let me go. + +PETRUCHIO: +No, not a whit: I find you passing gentle. +'Twas told me you were rough and coy and sullen, +And now I find report a very liar; +For thou are pleasant, gamesome, passing courteous, +But slow in speech, yet sweet as spring-time flowers: +Thou canst not frown, thou canst not look askance, +Nor bite the lip, as angry wenches will, +Nor hast thou pleasure to be cross in talk, +But thou with mildness entertain'st thy wooers, +With gentle conference, soft and affable. +Why does the world report that Kate doth limp? +O slanderous world! Kate like the hazel-twig +Is straight and slender and as brown in hue +As hazel nuts and sweeter than the kernels. +O, let me see thee walk: thou dost not halt. + +KATHARINA: +Go, fool, and whom thou keep'st command. + +PETRUCHIO: +Did ever Dian so become a grove +As Kate this chamber with her princely gait? +O, be thou Dian, and let her be Kate; +And then let Kate be chaste and Dian sportful! + +KATHARINA: +Where did you study all this goodly speech? + +PETRUCHIO: +It is extempore, from my mother-wit. + +KATHARINA: +A witty mother! witless else her son. + +PETRUCHIO: +Am I not wise? + +KATHARINA: +Yes; keep you warm. + +PETRUCHIO: +Marry, so I mean, sweet Katharina, in thy bed: +And therefore, setting all this chat aside, +Thus in plain terms: your father hath consented +That you shall be my wife; your dowry 'greed on; +And, Will you, nill you, I will marry you. +Now, Kate, I am a husband for your turn; +For, by this light, whereby I see thy beauty, +Thy beauty, that doth make me like thee well, +Thou must be married to no man but me; +For I am he am born to tame you Kate, +And bring you from a wild Kate to a Kate +Conformable as other household Kates. +Here comes your father: never make denial; +I must and will have Katharina to my wife. + +BAPTISTA: +Now, Signior Petruchio, how speed you with my daughter? + +PETRUCHIO: +How but well, sir? how but well? +It were impossible I should speed amiss. + +BAPTISTA: +Why, how now, daughter Katharina! in your dumps? + +KATHARINA: +Call you me daughter? now, I promise you +You have show'd a tender fatherly regard, +To wish me wed to one half lunatic; +A mad-cup ruffian and a swearing Jack, +That thinks with oaths to face the matter out. + +PETRUCHIO: +Father, 'tis thus: yourself and all the world, +That talk'd of her, have talk'd amiss of her: +If she be curst, it is for policy, +For she's not froward, but modest as the dove; +She is not hot, but temperate as the morn; +For patience she will prove a second Grissel, +And Roman Lucrece for her chastity: +And to conclude, we have 'greed so well together, +That upon Sunday is the wedding-day. + +KATHARINA: +I'll see thee hang'd on Sunday first. + +GREMIO: +Hark, Petruchio; she says she'll see thee +hang'd first. + +TRANIO: +Is this your speeding? nay, then, good night our part! + +PETRUCHIO: +Be patient, gentlemen; I choose her for myself: +If she and I be pleased, what's that to you? +'Tis bargain'd 'twixt us twain, being alone, +That she shall still be curst in company. +I tell you, 'tis incredible to believe +How much she loves me: O, the kindest Kate! +She hung about my neck; and kiss on kiss +She vied so fast, protesting oath on oath, +That in a twink she won me to her love. +O, you are novices! 'tis a world to see, +How tame, when men and women are alone, +A meacock wretch can make the curstest shrew. +Give me thy hand, Kate: I will unto Venice, +To buy apparel 'gainst the wedding-day. +Provide the feast, father, and bid the guests; +I will be sure my Katharina shall be fine. + +BAPTISTA: +I know not what to say: but give me your hands; +God send you joy, Petruchio! 'tis a match. + +GREMIO: +Amen, say we: we will be witnesses. + +PETRUCHIO: +Father, and wife, and gentlemen, adieu; +I will to Venice; Sunday comes apace: +We will have rings and things and fine array; +And kiss me, Kate, we will be married o'Sunday. + +GREMIO: +Was ever match clapp'd up so suddenly? + +BAPTISTA: +Faith, gentlemen, now I play a merchant's part, +And venture madly on a desperate mart. + +TRANIO: +'Twas a commodity lay fretting by you: +'Twill bring you gain, or perish on the seas. + +BAPTISTA: +The gain I seek is, quiet in the match. + +GREMIO: +No doubt but he hath got a quiet catch. +But now, Baptists, to your younger daughter: +Now is the day we long have looked for: +I am your neighbour, and was suitor first. + +TRANIO: +And I am one that love Bianca more +Than words can witness, or your thoughts can guess. + +GREMIO: +Youngling, thou canst not love so dear as I. + +TRANIO: +Graybeard, thy love doth freeze. + +GREMIO: +But thine doth fry. +Skipper, stand back: 'tis age that nourisheth. + +TRANIO: +But youth in ladies' eyes that flourisheth. + +BAPTISTA: +Content you, gentlemen: I will compound this strife: +'Tis deeds must win the prize; and he of both +That can assure my daughter greatest dower +Shall have my Bianca's love. +Say, Signior Gremio, What can you assure her? + +GREMIO: +First, as you know, my house within the city +Is richly furnished with plate and gold; +Basins and ewers to lave her dainty hands; +My hangings all of Tyrian tapestry; +In ivory coffers I have stuff'd my crowns; +In cypress chests my arras counterpoints, +Costly apparel, tents, and canopies, +Fine linen, Turkey cushions boss'd with pearl, +Valance of Venice gold in needlework, +Pewter and brass and all things that belong +To house or housekeeping: then, at my farm +I have a hundred milch-kine to the pail, +Sixscore fat oxen standing in my stalls, +And all things answerable to this portion. +Myself am struck in years, I must confess; +And if I die to-morrow, this is hers, +If whilst I live she will be only mine. + +TRANIO: +That 'only' came well in. Sir, list to me: +I am my father's heir and only son: +If I may have your daughter to my wife, +I'll leave her houses three or four as good, +Within rich Pisa walls, as any one +Old Signior Gremio has in Padua; +Besides two thousand ducats by the year +Of fruitful land, all which shall be her jointure. +What, have I pinch'd you, Signior Gremio? + +GREMIO: +Two thousand ducats by the year of land! +My land amounts not to so much in all: +That she shall have; besides an argosy +That now is lying in Marseilles' road. +What, have I choked you with an argosy? + +TRANIO: +Gremio, 'tis known my father hath no less +Than three great argosies; besides two galliases, +And twelve tight galleys: these I will assure her, +And twice as much, whate'er thou offer'st next. + +GREMIO: +Nay, I have offer'd all, I have no more; +And she can have no more than all I have: +If you like me, she shall have me and mine. + +TRANIO: +Why, then the maid is mine from all the world, +By your firm promise: Gremio is out-vied. + +BAPTISTA: +I must confess your offer is the best; +And, let your father make her the assurance, +She is your own; else, you must pardon me, +if you should die before him, where's her dower? + +TRANIO: +That's but a cavil: he is old, I young. + +GREMIO: +And may not young men die, as well as old? + +BAPTISTA: +Well, gentlemen, +I am thus resolved: on Sunday next you know +My daughter Katharina is to be married: +Now, on the Sunday following, shall Bianca +Be bride to you, if you this assurance; +If not, Signior Gremio: +And so, I take my leave, and thank you both. + +GREMIO: +Adieu, good neighbour. +Now I fear thee not: +Sirrah young gamester, your father were a fool +To give thee all, and in his waning age +Set foot under thy table: tut, a toy! +An old Italian fox is not so kind, my boy. + +TRANIO: +A vengeance on your crafty wither'd hide! +Yet I have faced it with a card of ten. +'Tis in my head to do my master good: +I see no reason but supposed Lucentio +Must get a father, call'd 'supposed Vincentio;' +And that's a wonder: fathers commonly +Do get their children; but in this case of wooing, +A child shall get a sire, if I fail not of my cunning. + +LUCENTIO: +Fiddler, forbear; you grow too forward, sir: +Have you so soon forgot the entertainment +Her sister Katharina welcomed you withal? + +HORTENSIO: +But, wrangling pedant, this is +The patroness of heavenly harmony: +Then give me leave to have prerogative; +And when in music we have spent an hour, +Your lecture shall have leisure for as much. + +LUCENTIO: +Preposterous ass, that never read so far +To know the cause why music was ordain'd! +Was it not to refresh the mind of man +After his studies or his usual pain? +Then give me leave to read philosophy, +And while I pause, serve in your harmony. + +HORTENSIO: +Sirrah, I will not bear these braves of thine. + +BIANCA: +Why, gentlemen, you do me double wrong, +To strive for that which resteth in my choice: +I am no breeching scholar in the schools; +I'll not be tied to hours nor 'pointed times, +But learn my lessons as I please myself. +And, to cut off all strife, here sit we down: +Take you your instrument, play you the whiles; +His lecture will be done ere you have tuned. + +HORTENSIO: +You'll leave his lecture when I am in tune? + +LUCENTIO: +That will be never: tune your instrument. + +BIANCA: +Where left we last? + +LUCENTIO: +Here, madam: +'Hic ibat Simois; hic est Sigeia tellus; +Hic steterat Priami regia celsa senis.' + +BIANCA: +Construe them. + +LUCENTIO: +'Hic ibat,' as I told you before, 'Simois,' I am +Lucentio, 'hic est,' son unto Vincentio of Pisa, +'Sigeia tellus,' disguised thus to get your love; +'Hic steterat,' and that Lucentio that comes +a-wooing, 'Priami,' is my man Tranio, 'regia,' +bearing my port, 'celsa senis,' that we might +beguile the old pantaloon. + +HORTENSIO: +Madam, my instrument's in tune. + +BIANCA: +Let's hear. O fie! the treble jars. + +LUCENTIO: +Spit in the hole, man, and tune again. + +BIANCA: +Now let me see if I can construe it: 'Hic ibat +Simois,' I know you not, 'hic est Sigeia tellus,' I +trust you not; 'Hic steterat Priami,' take heed +he hear us not, 'regia,' presume not, 'celsa senis,' +despair not. + +HORTENSIO: +Madam, 'tis now in tune. + +LUCENTIO: +All but the base. + +HORTENSIO: +The base is right; 'tis the base knave that jars. +How fiery and forward our pedant is! +Now, for my life, the knave doth court my love: +Pedascule, I'll watch you better yet. + +BIANCA: +In time I may believe, yet I mistrust. + +LUCENTIO: +Mistrust it not: for, sure, AEacides +Was Ajax, call'd so from his grandfather. + +BIANCA: +I must believe my master; else, I promise you, +I should be arguing still upon that doubt: +But let it rest. Now, Licio, to you: +Good masters, take it not unkindly, pray, +That I have been thus pleasant with you both. + +HORTENSIO: +You may go walk, and give me leave a while: +My lessons make no music in three parts. + +LUCENTIO: +Are you so formal, sir? well, I must wait, +And watch withal; for, but I be deceived, +Our fine musician groweth amorous. + +HORTENSIO: +Madam, before you touch the instrument, +To learn the order of my fingering, +I must begin with rudiments of art; +To teach you gamut in a briefer sort, +More pleasant, pithy and effectual, +Than hath been taught by any of my trade: +And there it is in writing, fairly drawn. + +BIANCA: +Why, I am past my gamut long ago. + +HORTENSIO: +Yet read the gamut of Hortensio. + +BIANCA: + +Servant: +Mistress, your father prays you leave your books +And help to dress your sister's chamber up: +You know to-morrow is the wedding-day. + +BIANCA: +Farewell, sweet masters both; I must be gone. + +LUCENTIO: +Faith, mistress, then I have no cause to stay. + +HORTENSIO: +But I have cause to pry into this pedant: +Methinks he looks as though he were in love: +Yet if thy thoughts, Bianca, be so humble +To cast thy wandering eyes on every stale, +Seize thee that list: if once I find thee ranging, +Hortensio will be quit with thee by changing. + +BAPTISTA: + +KATHARINA: +No shame but mine: I must, forsooth, be forced +To give my hand opposed against my heart +Unto a mad-brain rudesby full of spleen; +Who woo'd in haste and means to wed at leisure. +I told you, I, he was a frantic fool, +Hiding his bitter jests in blunt behavior: +And, to be noted for a merry man, +He'll woo a thousand, 'point the day of marriage, +Make feasts, invite friends, and proclaim the banns; +Yet never means to wed where he hath woo'd. +Now must the world point at poor Katharina, +And say, 'Lo, there is mad Petruchio's wife, +If it would please him come and marry her!' + +TRANIO: +Patience, good Katharina, and Baptista too. +Upon my life, Petruchio means but well, +Whatever fortune stays him from his word: +Though he be blunt, I know him passing wise; +Though he be merry, yet withal he's honest. + +KATHARINA: +Would Katharina had never seen him though! + +BAPTISTA: +Go, girl; I cannot blame thee now to weep; +For such an injury would vex a very saint, +Much more a shrew of thy impatient humour. + +BIONDELLO: +Master, master! news, old news, and such news as +you never heard of! + +BAPTISTA: +Is it new and old too? how may that be? + +BIONDELLO: +Why, is it not news, to hear of Petruchio's coming? + +BAPTISTA: +Is he come? + +BIONDELLO: +Why, no, sir. + +BAPTISTA: +What then? + +BIONDELLO: +He is coming. + +BAPTISTA: +When will he be here? + +BIONDELLO: +When he stands where I am and sees you there. + +TRANIO: +But say, what to thine old news? + +BIONDELLO: +Why, Petruchio is coming in a new hat and an old +jerkin, a pair of old breeches thrice turned, a pair +of boots that have been candle-cases, one buckled, +another laced, an old rusty sword ta'en out of the +town-armory, with a broken hilt, and chapeless; +with two broken points: his horse hipped with an +old mothy saddle and stirrups of no kindred; +besides, possessed with the glanders and like to mose +in the chine; troubled with the lampass, infected +with the fashions, full of wingdalls, sped with +spavins, rayed with yellows, past cure of the fives, +stark spoiled with the staggers, begnawn with the +bots, swayed in the back and shoulder-shotten; +near-legged before and with, a half-chequed bit +and a head-stall of sheeps leather which, being +restrained to keep him from stumbling, hath been +often burst and now repaired with knots; one girth +six time pieced and a woman's crupper of velure, +which hath two letters for her name fairly set down +in studs, and here and there pieced with packthread. + +BAPTISTA: +Who comes with him? + +BIONDELLO: +O, sir, his lackey, for all the world caparisoned +like the horse; with a linen stock on one leg and a +kersey boot-hose on the other, gartered with a red +and blue list; an old hat and 'the humour of forty +fancies' pricked in't for a feather: a monster, a +very monster in apparel, and not like a Christian +footboy or a gentleman's lackey. + +TRANIO: +'Tis some odd humour pricks him to this fashion; +Yet oftentimes he goes but mean-apparell'd. + +BAPTISTA: +I am glad he's come, howsoe'er he comes. + +BIONDELLO: +Why, sir, he comes not. + +BAPTISTA: +Didst thou not say he comes? + +BIONDELLO: +Who? that Petruchio came? + +BAPTISTA: +Ay, that Petruchio came. + +BIONDELLO: +No, sir, I say his horse comes, with him on his back. + +BAPTISTA: +Why, that's all one. + +BIONDELLO: +Nay, by Saint Jamy, +I hold you a penny, +A horse and a man +Is more than one, +And yet not many. + +PETRUCHIO: +Come, where be these gallants? who's at home? + +BAPTISTA: +You are welcome, sir. + +PETRUCHIO: +And yet I come not well. + +BAPTISTA: +And yet you halt not. + +TRANIO: +Not so well apparell'd +As I wish you were. + +PETRUCHIO: +Were it better, I should rush in thus. +But where is Kate? where is my lovely bride? +How does my father? Gentles, methinks you frown: +And wherefore gaze this goodly company, +As if they saw some wondrous monument, +Some comet or unusual prodigy? + +BAPTISTA: +Why, sir, you know this is your wedding-day: +First were we sad, fearing you would not come; +Now sadder, that you come so unprovided. +Fie, doff this habit, shame to your estate, +An eye-sore to our solemn festival! + +TRANIO: +And tells us, what occasion of import +Hath all so long detain'd you from your wife, +And sent you hither so unlike yourself? + +PETRUCHIO: +Tedious it were to tell, and harsh to hear: +Sufficeth I am come to keep my word, +Though in some part enforced to digress; +Which, at more leisure, I will so excuse +As you shall well be satisfied withal. +But where is Kate? I stay too long from her: +The morning wears, 'tis time we were at church. + +TRANIO: +See not your bride in these unreverent robes: +Go to my chamber; Put on clothes of mine. + +PETRUCHIO: +Not I, believe me: thus I'll visit her. + +BAPTISTA: +But thus, I trust, you will not marry her. + +PETRUCHIO: +Good sooth, even thus; therefore ha' done with words: +To me she's married, not unto my clothes: +Could I repair what she will wear in me, +As I can change these poor accoutrements, +'Twere well for Kate and better for myself. +But what a fool am I to chat with you, +When I should bid good morrow to my bride, +And seal the title with a lovely kiss! + +TRANIO: +He hath some meaning in his mad attire: +We will persuade him, be it possible, +To put on better ere he go to church. + +BAPTISTA: +I'll after him, and see the event of this. + +TRANIO: +But to her love concerneth us to add +Her father's liking: which to bring to pass, +As I before unparted to your worship, +I am to get a man,--whate'er he be, +It skills not much. we'll fit him to our turn,-- +And he shall be Vincentio of Pisa; +And make assurance here in Padua +Of greater sums than I have promised. +So shall you quietly enjoy your hope, +And marry sweet Bianca with consent. + +LUCENTIO: +Were it not that my fellow-school-master +Doth watch Bianca's steps so narrowly, +'Twere good, methinks, to steal our marriage; +Which once perform'd, let all the world say no, +I'll keep mine own, despite of all the world. + +TRANIO: +That by degrees we mean to look into, +And watch our vantage in this business: +We'll over-reach the greybeard, Gremio, +The narrow-prying father, Minola, +The quaint musician, amorous Licio; +All for my master's sake, Lucentio. +Signior Gremio, came you from the church? + +GREMIO: +As willingly as e'er I came from school. + +TRANIO: +And is the bride and bridegroom coming home? + +GREMIO: +A bridegroom say you? 'tis a groom indeed, +A grumbling groom, and that the girl shall find. + +TRANIO: +Curster than she? why, 'tis impossible. + +GREMIO: +Why he's a devil, a devil, a very fiend. + +TRANIO: +Why, she's a devil, a devil, the devil's dam. + +GREMIO: +Tut, she's a lamb, a dove, a fool to him! +I'll tell you, Sir Lucentio: when the priest +Should ask, if Katharina should be his wife, +'Ay, by gogs-wouns,' quoth he; and swore so loud, +That, all-amazed, the priest let fall the book; +And, as he stoop'd again to take it up, +The mad-brain'd bridegroom took him such a cuff +That down fell priest and book and book and priest: +'Now take them up,' quoth he, 'if any list.' + +TRANIO: +What said the wench when he rose again? + +GREMIO: +Trembled and shook; for why, he stamp'd and swore, +As if the vicar meant to cozen him. +But after many ceremonies done, +He calls for wine: 'A health!' quoth he, as if +He had been aboard, carousing to his mates +After a storm; quaff'd off the muscadel +And threw the sops all in the sexton's face; +Having no other reason +But that his beard grew thin and hungerly +And seem'd to ask him sops as he was drinking. +This done, he took the bride about the neck +And kiss'd her lips with such a clamorous smack +That at the parting all the church did echo: +And I seeing this came thence for very shame; +And after me, I know, the rout is coming. +Such a mad marriage never was before: +Hark, hark! I hear the minstrels play. + +PETRUCHIO: +Gentlemen and friends, I thank you for your pains: +I know you think to dine with me to-day, +And have prepared great store of wedding cheer; +But so it is, my haste doth call me hence, +And therefore here I mean to take my leave. + +BAPTISTA: +Is't possible you will away to-night? + +PETRUCHIO: +I must away to-day, before night come: +Make it no wonder; if you knew my business, +You would entreat me rather go than stay. +And, honest company, I thank you all, +That have beheld me give away myself +To this most patient, sweet and virtuous wife: +Dine with my father, drink a health to me; +For I must hence; and farewell to you all. + +TRANIO: +Let us entreat you stay till after dinner. + +PETRUCHIO: +It may not be. + +GREMIO: +Let me entreat you. + +PETRUCHIO: +It cannot be. + +KATHARINA: +Let me entreat you. + +PETRUCHIO: +I am content. + +KATHARINA: +Are you content to stay? + +PETRUCHIO: +I am content you shall entreat me stay; +But yet not stay, entreat me how you can. + +KATHARINA: +Now, if you love me, stay. + +PETRUCHIO: +Grumio, my horse. + +GRUMIO: +Ay, sir, they be ready: the oats have eaten the horses. + +KATHARINA: +Nay, then, +Do what thou canst, I will not go to-day; +No, nor to-morrow, not till I please myself. +The door is open, sir; there lies your way; +You may be jogging whiles your boots are green; +For me, I'll not be gone till I please myself: +'Tis like you'll prove a jolly surly groom, +That take it on you at the first so roundly. + +PETRUCHIO: +O Kate, content thee; prithee, be not angry. + +KATHARINA: +I will be angry: what hast thou to do? +Father, be quiet; he shall stay my leisure. + +GREMIO: +Ay, marry, sir, now it begins to work. + +KATARINA: +Gentlemen, forward to the bridal dinner: +I see a woman may be made a fool, +If she had not a spirit to resist. + +PETRUCHIO: +They shall go forward, Kate, at thy command. +Obey the bride, you that attend on her; +Go to the feast, revel and domineer, +Carouse full measure to her maidenhead, +Be mad and merry, or go hang yourselves: +But for my bonny Kate, she must with me. +Nay, look not big, nor stamp, nor stare, nor fret; +I will be master of what is mine own: +She is my goods, my chattels; she is my house, +My household stuff, my field, my barn, +My horse, my ox, my ass, my any thing; +And here she stands, touch her whoever dare; +I'll bring mine action on the proudest he +That stops my way in Padua. Grumio, +Draw forth thy weapon, we are beset with thieves; +Rescue thy mistress, if thou be a man. +Fear not, sweet wench, they shall not touch +thee, Kate: +I'll buckler thee against a million. + +BAPTISTA: +Nay, let them go, a couple of quiet ones. + +GREMIO: +Went they not quickly, I should die with laughing. + +TRANIO: +Of all mad matches never was the like. + +LUCENTIO: +Mistress, what's your opinion of your sister? + +BIANCA: +That, being mad herself, she's madly mated. + +GREMIO: +I warrant him, Petruchio is Kated. + +BAPTISTA: +Neighbours and friends, though bride and +bridegroom wants +For to supply the places at the table, +You know there wants no junkets at the feast. +Lucentio, you shall supply the bridegroom's place: +And let Bianca take her sister's room. + +TRANIO: +Shall sweet Bianca practise how to bride it? + +BAPTISTA: +She shall, Lucentio. Come, gentlemen, let's go. + +GRUMIO: +Fie, fie on all tired jades, on all mad masters, and +all foul ways! Was ever man so beaten? was ever +man so rayed? was ever man so weary? I am sent +before to make a fire, and they are coming after to +warm them. Now, were not I a little pot and soon +hot, my very lips might freeze to my teeth, my +tongue to the roof of my mouth, my heart in my +belly, ere I should come by a fire to thaw me: but +I, with blowing the fire, shall warm myself; for, +considering the weather, a taller man than I will +take cold. Holla, ho! Curtis. + +CURTIS: +Who is that calls so coldly? + +GRUMIO: +A piece of ice: if thou doubt it, thou mayst slide +from my shoulder to my heel with no greater a run +but my head and my neck. A fire good Curtis. + +CURTIS: +Is my master and his wife coming, Grumio? + +GRUMIO: +O, ay, Curtis, ay: and therefore fire, fire; cast +on no water. + +CURTIS: +Is she so hot a shrew as she's reported? + +GRUMIO: +She was, good Curtis, before this frost: but, thou +knowest, winter tames man, woman and beast; for it +hath tamed my old master and my new mistress and +myself, fellow Curtis. + +CURTIS: +Away, you three-inch fool! I am no beast. + +GRUMIO: +Am I but three inches? why, thy horn is a foot; and +so long am I at the least. But wilt thou make a +fire, or shall I complain on thee to our mistress, +whose hand, she being now at hand, thou shalt soon +feel, to thy cold comfort, for being slow in thy hot office? + +CURTIS: +I prithee, good Grumio, tell me, how goes the world? + +GRUMIO: +A cold world, Curtis, in every office but thine; and +therefore fire: do thy duty, and have thy duty; for +my master and mistress are almost frozen to death. + +CURTIS: +There's fire ready; and therefore, good Grumio, the news. + +GRUMIO: +Why, 'Jack, boy! ho! boy!' and as much news as +will thaw. + +CURTIS: +Come, you are so full of cony-catching! + +GRUMIO: +Why, therefore fire; for I have caught extreme cold. +Where's the cook? is supper ready, the house +trimmed, rushes strewed, cobwebs swept; the +serving-men in their new fustian, their white +stockings, and every officer his wedding-garment on? +Be the jacks fair within, the jills fair without, +the carpets laid, and every thing in order? + +CURTIS: +All ready; and therefore, I pray thee, news. + +GRUMIO: +First, know, my horse is tired; my master and +mistress fallen out. + +CURTIS: +How? + +GRUMIO: +Out of their saddles into the dirt; and thereby +hangs a tale. + +CURTIS: +Let's ha't, good Grumio. + +GRUMIO: +Lend thine ear. + +CURTIS: +Here. + +GRUMIO: +There. + +CURTIS: +This is to feel a tale, not to hear a tale. + +GRUMIO: +And therefore 'tis called a sensible tale: and this +cuff was but to knock at your ear, and beseech +listening. Now I begin: Imprimis, we came down a +foul hill, my master riding behind my mistress,-- + +CURTIS: +Both of one horse? + +GRUMIO: +What's that to thee? + +CURTIS: +Why, a horse. + +GRUMIO: +Tell thou the tale: but hadst thou not crossed me, +thou shouldst have heard how her horse fell and she +under her horse; thou shouldst have heard in how +miry a place, how she was bemoiled, how he left her +with the horse upon her, how he beat me because +her horse stumbled, how she waded through the dirt +to pluck him off me, how he swore, how she prayed, +that never prayed before, how I cried, how the +horses ran away, how her bridle was burst, how I +lost my crupper, with many things of worthy memory, +which now shall die in oblivion and thou return +unexperienced to thy grave. + +CURTIS: +By this reckoning he is more shrew than she. + +GRUMIO: +Ay; and that thou and the proudest of you all shall +find when he comes home. But what talk I of this? +Call forth Nathaniel, Joseph, Nicholas, Philip, +Walter, Sugarsop and the rest: let their heads be +sleekly combed their blue coats brushed and their +garters of an indifferent knit: let them curtsy +with their left legs and not presume to touch a hair +of my master's horse-tail till they kiss their +hands. Are they all ready? + +CURTIS: +They are. + +GRUMIO: +Call them forth. + +CURTIS: +Do you hear, ho? you must meet my master to +countenance my mistress. + +GRUMIO: +Why, she hath a face of her own. + +CURTIS: +Who knows not that? + +GRUMIO: +Thou, it seems, that calls for company to +countenance her. + +CURTIS: +I call them forth to credit her. + +GRUMIO: +Why, she comes to borrow nothing of them. + +NATHANIEL: +Welcome home, Grumio! + +PHILIP: +How now, Grumio! + +JOSEPH: +What, Grumio! + +NICHOLAS: +Fellow Grumio! + +NATHANIEL: +How now, old lad? + +GRUMIO: +Welcome, you;--how now, you;-- what, you;--fellow, +you;--and thus much for greeting. Now, my spruce +companions, is all ready, and all things neat? + +NATHANIEL: +All things is ready. How near is our master? + +GRUMIO: +E'en at hand, alighted by this; and therefore be +not--Cock's passion, silence! I hear my master. + +PETRUCHIO: +Where be these knaves? What, no man at door +To hold my stirrup nor to take my horse! +Where is Nathaniel, Gregory, Philip? + +ALL SERVING-MEN: +Here, here, sir; here, sir. + +PETRUCHIO: +Here, sir! here, sir! here, sir! here, sir! +You logger-headed and unpolish'd grooms! +What, no attendance? no regard? no duty? +Where is the foolish knave I sent before? + +GRUMIO: +Here, sir; as foolish as I was before. + +PETRUCHIO: +You peasant swain! you whoreson malt-horse drudge! +Did I not bid thee meet me in the park, +And bring along these rascal knaves with thee? + +GRUMIO: +Nathaniel's coat, sir, was not fully made, +And Gabriel's pumps were all unpink'd i' the heel; +There was no link to colour Peter's hat, +And Walter's dagger was not come from sheathing: +There were none fine but Adam, Ralph, and Gregory; +The rest were ragged, old, and beggarly; +Yet, as they are, here are they come to meet you. + +PETRUCHIO: +Go, rascals, go, and fetch my supper in. +Where is the life that late I led-- +Where are those--Sit down, Kate, and welcome.-- +Sound, sound, sound, sound! +Why, when, I say? Nay, good sweet Kate, be merry. +Off with my boots, you rogues! you villains, when? +It was the friar of orders grey, +As he forth walked on his way:-- +Out, you rogue! you pluck my foot awry: +Take that, and mend the plucking off the other. +Be merry, Kate. Some water, here; what, ho! +Where's my spaniel Troilus? Sirrah, get you hence, +And bid my cousin Ferdinand come hither: +One, Kate, that you must kiss, and be acquainted with. +Where are my slippers? Shall I have some water? +Come, Kate, and wash, and welcome heartily. +You whoreson villain! will you let it fall? + +KATHARINA: +Patience, I pray you; 'twas a fault unwilling. + +PETRUCHIO: +A whoreson beetle-headed, flap-ear'd knave! +Come, Kate, sit down; I know you have a stomach. +Will you give thanks, sweet Kate; or else shall I? +What's this? mutton? + +First Servant: +Ay. + +PETRUCHIO: +Who brought it? + +PETER: +I. + +PETRUCHIO: +'Tis burnt; and so is all the meat. +What dogs are these! Where is the rascal cook? +How durst you, villains, bring it from the dresser, +And serve it thus to me that love it not? +Theretake it to you, trenchers, cups, and all; +You heedless joltheads and unmanner'd slaves! +What, do you grumble? I'll be with you straight. + +KATHARINA: +I pray you, husband, be not so disquiet: +The meat was well, if you were so contented. + +PETRUCHIO: +I tell thee, Kate, 'twas burnt and dried away; +And I expressly am forbid to touch it, +For it engenders choler, planteth anger; +And better 'twere that both of us did fast, +Since, of ourselves, ourselves are choleric, +Than feed it with such over-roasted flesh. +Be patient; to-morrow 't shall be mended, +And, for this night, we'll fast for company: +Come, I will bring thee to thy bridal chamber. + +NATHANIEL: +Peter, didst ever see the like? + +PETER: +He kills her in her own humour. + +GRUMIO: +Where is he? + +CURTIS: +In her chamber, making a sermon of continency to her; +And rails, and swears, and rates, that she, poor soul, +Knows not which way to stand, to look, to speak, +And sits as one new-risen from a dream. +Away, away! for he is coming hither. + +PETRUCHIO: +Thus have I politicly begun my reign, +And 'tis my hope to end successfully. +My falcon now is sharp and passing empty; +And till she stoop she must not be full-gorged, +For then she never looks upon her lure. +Another way I have to man my haggard, +To make her come and know her keeper's call, +That is, to watch her, as we watch these kites +That bate and beat and will not be obedient. +She eat no meat to-day, nor none shall eat; +Last night she slept not, nor to-night she shall not; +As with the meat, some undeserved fault +I'll find about the making of the bed; +And here I'll fling the pillow, there the bolster, +This way the coverlet, another way the sheets: +Ay, and amid this hurly I intend +That all is done in reverend care of her; +And in conclusion she shall watch all night: +And if she chance to nod I'll rail and brawl +And with the clamour keep her still awake. +This is a way to kill a wife with kindness; +And thus I'll curb her mad and headstrong humour. +He that knows better how to tame a shrew, +Now let him speak: 'tis charity to show. + +TRANIO: +Is't possible, friend Licio, that Mistress Bianca +Doth fancy any other but Lucentio? +I tell you, sir, she bears me fair in hand. + +HORTENSIO: +Sir, to satisfy you in what I have said, +Stand by and mark the manner of his teaching. + +LUCENTIO: +Now, mistress, profit you in what you read? + +BIANCA: +What, master, read you? first resolve me that. + +LUCENTIO: +I read that I profess, the Art to Love. + +BIANCA: +And may you prove, sir, master of your art! + +LUCENTIO: +While you, sweet dear, prove mistress of my heart! + +HORTENSIO: +Quick proceeders, marry! Now, tell me, I pray, +You that durst swear at your mistress Bianca +Loved none in the world so well as Lucentio. + +TRANIO: +O despiteful love! unconstant womankind! +I tell thee, Licio, this is wonderful. + +HORTENSIO: +Mistake no more: I am not Licio, +Nor a musician, as I seem to be; +But one that scorn to live in this disguise, +For such a one as leaves a gentleman, +And makes a god of such a cullion: +Know, sir, that I am call'd Hortensio. + +TRANIO: +Signior Hortensio, I have often heard +Of your entire affection to Bianca; +And since mine eyes are witness of her lightness, +I will with you, if you be so contented, +Forswear Bianca and her love for ever. + +HORTENSIO: +See, how they kiss and court! Signior Lucentio, +Here is my hand, and here I firmly vow +Never to woo her no more, but do forswear her, +As one unworthy all the former favours +That I have fondly flatter'd her withal. + +TRANIO: +And here I take the unfeigned oath, +Never to marry with her though she would entreat: +Fie on her! see, how beastly she doth court him! + +HORTENSIO: +Would all the world but he had quite forsworn! +For me, that I may surely keep mine oath, +I will be married to a wealthy widow, +Ere three days pass, which hath as long loved me +As I have loved this proud disdainful haggard. +And so farewell, Signior Lucentio. +Kindness in women, not their beauteous looks, +Shall win my love: and so I take my leave, +In resolution as I swore before. + +TRANIO: +Mistress Bianca, bless you with such grace +As 'longeth to a lover's blessed case! +Nay, I have ta'en you napping, gentle love, +And have forsworn you with Hortensio. + +BIANCA: +Tranio, you jest: but have you both forsworn me? + +TRANIO: +Mistress, we have. + +LUCENTIO: +Then we are rid of Licio. + +TRANIO: +I' faith, he'll have a lusty widow now, +That shall be wood and wedded in a day. + +BIANCA: +God give him joy! + +TRANIO: +Ay, and he'll tame her. + +BIANCA: +He says so, Tranio. + +TRANIO: +Faith, he is gone unto the taming-school. + +BIANCA: +The taming-school! what, is there such a place? + +TRANIO: +Ay, mistress, and Petruchio is the master; +That teacheth tricks eleven and twenty long, +To tame a shrew and charm her chattering tongue. + +BIONDELLO: +O master, master, I have watch'd so long +That I am dog-weary: but at last I spied +An ancient angel coming down the hill, +Will serve the turn. + +TRANIO: +What is he, Biondello? + +BIONDELLO: +Master, a mercatante, or a pedant, +I know not what; but format in apparel, +In gait and countenance surely like a father. + +LUCENTIO: +And what of him, Tranio? + +TRANIO: +If he be credulous and trust my tale, +I'll make him glad to seem Vincentio, +And give assurance to Baptista Minola, +As if he were the right Vincentio +Take in your love, and then let me alone. + +Pedant: +God save you, sir! + +TRANIO: +And you, sir! you are welcome. +Travel you far on, or are you at the farthest? + +Pedant: +Sir, at the farthest for a week or two: +But then up farther, and as for as Rome; +And so to Tripoli, if God lend me life. + +TRANIO: +What countryman, I pray? + +Pedant: +Of Mantua. + +TRANIO: +Of Mantua, sir? marry, God forbid! +And come to Padua, careless of your life? + +Pedant: +My life, sir! how, I pray? for that goes hard. + +TRANIO: +'Tis death for any one in Mantua +To come to Padua. Know you not the cause? +Your ships are stay'd at Venice, and the duke, +For private quarrel 'twixt your duke and him, +Hath publish'd and proclaim'd it openly: +'Tis, marvel, but that you are but newly come, +You might have heard it else proclaim'd about. + +Pedant: +Alas! sir, it is worse for me than so; +For I have bills for money by exchange +From Florence and must here deliver them. + +TRANIO: +Well, sir, to do you courtesy, +This will I do, and this I will advise you: +First, tell me, have you ever been at Pisa? + +Pedant: +Ay, sir, in Pisa have I often been, +Pisa renowned for grave citizens. + +TRANIO: +Among them know you one Vincentio? + +Pedant: +I know him not, but I have heard of him; +A merchant of incomparable wealth. + +TRANIO: +He is my father, sir; and, sooth to say, +In countenance somewhat doth resemble you. + +BIONDELLO: + +TRANIO: +To save your life in this extremity, +This favour will I do you for his sake; +And think it not the worst of an your fortunes +That you are like to Sir Vincentio. +His name and credit shall you undertake, +And in my house you shall be friendly lodged: +Look that you take upon you as you should; +You understand me, sir: so shall you stay +Till you have done your business in the city: +If this be courtesy, sir, accept of it. + +Pedant: +O sir, I do; and will repute you ever +The patron of my life and liberty. + +TRANIO: +Then go with me to make the matter good. +This, by the way, I let you understand; +my father is here look'd for every day, +To pass assurance of a dower in marriage +'Twixt me and one Baptista's daughter here: +In all these circumstances I'll instruct you: +Go with me to clothe you as becomes you. + +GRUMIO: +No, no, forsooth; I dare not for my life. + +KATHARINA: +The more my wrong, the more his spite appears: +What, did he marry me to famish me? +Beggars, that come unto my father's door, +Upon entreaty have a present aims; +If not, elsewhere they meet with charity: +But I, who never knew how to entreat, +Nor never needed that I should entreat, +Am starved for meat, giddy for lack of sleep, +With oath kept waking and with brawling fed: +And that which spites me more than all these wants, +He does it under name of perfect love; +As who should say, if I should sleep or eat, +'Twere deadly sickness or else present death. +I prithee go and get me some repast; +I care not what, so it be wholesome food. + +GRUMIO: +What say you to a neat's foot? + +KATHARINA: +'Tis passing good: I prithee let me have it. + +GRUMIO: +I fear it is too choleric a meat. +How say you to a fat tripe finely broil'd? + +KATHARINA: +I like it well: good Grumio, fetch it me. + +GRUMIO: +I cannot tell; I fear 'tis choleric. +What say you to a piece of beef and mustard? + +KATHARINA: +A dish that I do love to feed upon. + +GRUMIO: +Ay, but the mustard is too hot a little. + +KATHARINA: +Why then, the beef, and let the mustard rest. + +GRUMIO: +Nay then, I will not: you shall have the mustard, +Or else you get no beef of Grumio. + +KATHARINA: +Then both, or one, or any thing thou wilt. + +GRUMIO: +Why then, the mustard without the beef. + +KATHARINA: +Go, get thee gone, thou false deluding slave, +That feed'st me with the very name of meat: +Sorrow on thee and all the pack of you, +That triumph thus upon my misery! +Go, get thee gone, I say. + +PETRUCHIO: +How fares my Kate? What, sweeting, all amort? + +HORTENSIO: +Mistress, what cheer? + +KATHARINA: +Faith, as cold as can be. + +PETRUCHIO: +Pluck up thy spirits; look cheerfully upon me. +Here love; thou see'st how diligent I am +To dress thy meat myself and bring it thee: +I am sure, sweet Kate, this kindness merits thanks. +What, not a word? Nay, then thou lovest it not; +And all my pains is sorted to no proof. +Here, take away this dish. + +KATHARINA: +I pray you, let it stand. + +PETRUCHIO: +The poorest service is repaid with thanks; +And so shall mine, before you touch the meat. + +KATHARINA: +I thank you, sir. + +HORTENSIO: +Signior Petruchio, fie! you are to blame. +Come, mistress Kate, I'll bear you company. + +PETRUCHIO: + +Haberdasher: +Here is the cap your worship did bespeak. + +PETRUCHIO: +Why, this was moulded on a porringer; +A velvet dish: fie, fie! 'tis lewd and filthy: +Why, 'tis a cockle or a walnut-shell, +A knack, a toy, a trick, a baby's cap: +Away with it! come, let me have a bigger. + +KATHARINA: +I'll have no bigger: this doth fit the time, +And gentlewomen wear such caps as these + +PETRUCHIO: +When you are gentle, you shall have one too, +And not till then. + +HORTENSIO: + +KATHARINA: +Why, sir, I trust I may have leave to speak; +And speak I will; I am no child, no babe: +Your betters have endured me say my mind, +And if you cannot, best you stop your ears. +My tongue will tell the anger of my heart, +Or else my heart concealing it will break, +And rather than it shall, I will be free +Even to the uttermost, as I please, in words. + +PETRUCHIO: +Why, thou say'st true; it is a paltry cap, +A custard-coffin, a bauble, a silken pie: +I love thee well, in that thou likest it not. + +KATHARINA: +Love me or love me not, I like the cap; +And it I will have, or I will have none. + +PETRUCHIO: +Thy gown? why, ay: come, tailor, let us see't. +O mercy, God! what masquing stuff is here? +What's this? a sleeve? 'tis like a demi-cannon: +What, up and down, carved like an apple-tart? +Here's snip and nip and cut and slish and slash, +Like to a censer in a barber's shop: +Why, what, i' devil's name, tailor, call'st thou this? + +HORTENSIO: + +Tailor: +You bid me make it orderly and well, +According to the fashion and the time. + +PETRUCHIO: +Marry, and did; but if you be remember'd, +I did not bid you mar it to the time. +Go, hop me over every kennel home, +For you shall hop without my custom, sir: +I'll none of it: hence! make your best of it. + +KATHARINA: +I never saw a better-fashion'd gown, +More quaint, more pleasing, nor more commendable: +Belike you mean to make a puppet of me. + +PETRUCHIO: +Why, true; he means to make a puppet of thee. + +Tailor: +She says your worship means to make +a puppet of her. + +PETRUCHIO: +O monstrous arrogance! Thou liest, thou thread, +thou thimble, +Thou yard, three-quarters, half-yard, quarter, nail! +Thou flea, thou nit, thou winter-cricket thou! +Braved in mine own house with a skein of thread? +Away, thou rag, thou quantity, thou remnant; +Or I shall so be-mete thee with thy yard +As thou shalt think on prating whilst thou livest! +I tell thee, I, that thou hast marr'd her gown. + +Tailor: +Your worship is deceived; the gown is made +Just as my master had direction: +Grumio gave order how it should be done. + +GRUMIO: +I gave him no order; I gave him the stuff. + +Tailor: +But how did you desire it should be made? + +GRUMIO: +Marry, sir, with needle and thread. + +Tailor: +But did you not request to have it cut? + +GRUMIO: +Thou hast faced many things. + +Tailor: +I have. + +GRUMIO: +Face not me: thou hast braved many men; brave not +me; I will neither be faced nor braved. I say unto +thee, I bid thy master cut out the gown; but I did +not bid him cut it to pieces: ergo, thou liest. + +Tailor: +Why, here is the note of the fashion to testify + +PETRUCHIO: +Read it. + +GRUMIO: +The note lies in's throat, if he say I said so. + +Tailor: + +GRUMIO: +Master, if ever I said loose-bodied gown, sew me in +the skirts of it, and beat me to death with a bottom +of brown thread: I said a gown. + +PETRUCHIO: +Proceed. + +Tailor: + +GRUMIO: +I confess the cape. + +Tailor: + +GRUMIO: +I confess two sleeves. + +Tailor: + +PETRUCHIO: +Ay, there's the villany. + +GRUMIO: +Error i' the bill, sir; error i' the bill. +I commanded the sleeves should be cut out and +sewed up again; and that I'll prove upon thee, +though thy little finger be armed in a thimble. + +Tailor: +This is true that I say: an I had thee +in place where, thou shouldst know it. + +GRUMIO: +I am for thee straight: take thou the +bill, give me thy mete-yard, and spare not me. + +HORTENSIO: +God-a-mercy, Grumio! then he shall have no odds. + +PETRUCHIO: +Well, sir, in brief, the gown is not for me. + +GRUMIO: +You are i' the right, sir: 'tis for my mistress. + +PETRUCHIO: +Go, take it up unto thy master's use. + +GRUMIO: +Villain, not for thy life: take up my mistress' +gown for thy master's use! + +PETRUCHIO: +Why, sir, what's your conceit in that? + +GRUMIO: +O, sir, the conceit is deeper than you think for: +Take up my mistress' gown to his master's use! +O, fie, fie, fie! + +PETRUCHIO: + +HORTENSIO: +Tailor, I'll pay thee for thy gown tomorrow: +Take no unkindness of his hasty words: +Away! I say; commend me to thy master. + +PETRUCHIO: +Well, come, my Kate; we will unto your father's +Even in these honest mean habiliments: +Our purses shall be proud, our garments poor; +For 'tis the mind that makes the body rich; +And as the sun breaks through the darkest clouds, +So honour peereth in the meanest habit. +What is the jay more precious than the lark, +Because his fathers are more beautiful? +Or is the adder better than the eel, +Because his painted skin contents the eye? +O, no, good Kate; neither art thou the worse +For this poor furniture and mean array. +if thou account'st it shame. lay it on me; +And therefore frolic: we will hence forthwith, +To feast and sport us at thy father's house. +Go, call my men, and let us straight to him; +And bring our horses unto Long-lane end; +There will we mount, and thither walk on foot +Let's see; I think 'tis now some seven o'clock, +And well we may come there by dinner-time. + +KATHARINA: +I dare assure you, sir, 'tis almost two; +And 'twill be supper-time ere you come there. + +PETRUCHIO: +It shall be seven ere I go to horse: +Look, what I speak, or do, or think to do, +You are still crossing it. Sirs, let't alone: +I will not go to-day; and ere I do, +It shall be what o'clock I say it is. + +HORTENSIO: + +TRANIO: +Sir, this is the house: please it you that I call? + +Pedant: +Ay, what else? and but I be deceived +Signior Baptista may remember me, +Near twenty years ago, in Genoa, +Where we were lodgers at the Pegasus. + +TRANIO: +'Tis well; and hold your own, in any case, +With such austerity as 'longeth to a father. + +Pedant: +I warrant you. +But, sir, here comes your boy; +'Twere good he were school'd. + +TRANIO: +Fear you not him. Sirrah Biondello, +Now do your duty throughly, I advise you: +Imagine 'twere the right Vincentio. + +BIONDELLO: +Tut, fear not me. + +TRANIO: +But hast thou done thy errand to Baptista? + +BIONDELLO: +I told him that your father was at Venice, +And that you look'd for him this day in Padua. + +TRANIO: +Thou'rt a tall fellow: hold thee that to drink. +Here comes Baptista: set your countenance, sir. +Signior Baptista, you are happily met. +Sir, this is the gentleman I told you of: +I pray you stand good father to me now, +Give me Bianca for my patrimony. + +Pedant: +Soft son! +Sir, by your leave: having come to Padua +To gather in some debts, my son Lucentio +Made me acquainted with a weighty cause +Of love between your daughter and himself: +And, for the good report I hear of you +And for the love he beareth to your daughter +And she to him, to stay him not too long, +I am content, in a good father's care, +To have him match'd; and if you please to like +No worse than I, upon some agreement +Me shall you find ready and willing +With one consent to have her so bestow'd; +For curious I cannot be with you, +Signior Baptista, of whom I hear so well. + +BAPTISTA: +Sir, pardon me in what I have to say: +Your plainness and your shortness please me well. +Right true it is, your son Lucentio here +Doth love my daughter and she loveth him, +Or both dissemble deeply their affections: +And therefore, if you say no more than this, +That like a father you will deal with him +And pass my daughter a sufficient dower, +The match is made, and all is done: +Your son shall have my daughter with consent. + +TRANIO: +I thank you, sir. Where then do you know best +We be affied and such assurance ta'en +As shall with either part's agreement stand? + +BAPTISTA: +Not in my house, Lucentio; for, you know, +Pitchers have ears, and I have many servants: +Besides, old Gremio is hearkening still; +And happily we might be interrupted. + +TRANIO: +Then at my lodging, an it like you: +There doth my father lie; and there, this night, +We'll pass the business privately and well. +Send for your daughter by your servant here: +My boy shall fetch the scrivener presently. +The worst is this, that, at so slender warning, +You are like to have a thin and slender pittance. + +BAPTISTA: +It likes me well. Biondello, hie you home, +And bid Bianca make her ready straight; +And, if you will, tell what hath happened, +Lucentio's father is arrived in Padua, +And how she's like to be Lucentio's wife. + +BIONDELLO: +I pray the gods she may with all my heart! + +TRANIO: +Dally not with the gods, but get thee gone. +Signior Baptista, shall I lead the way? +Welcome! one mess is like to be your cheer: +Come, sir; we will better it in Pisa. + +BAPTISTA: +I follow you. + +BIONDELLO: +Cambio! + +LUCENTIO: +What sayest thou, Biondello? + +BIONDELLO: +You saw my master wink and laugh upon you? + +LUCENTIO: +Biondello, what of that? + +BIONDELLO: +Faith, nothing; but has left me here behind, to +expound the meaning or moral of his signs and tokens. + +LUCENTIO: +I pray thee, moralize them. + +BIONDELLO: +Then thus. Baptista is safe, talking with the +deceiving father of a deceitful son. + +LUCENTIO: +And what of him? + +BIONDELLO: +His daughter is to be brought by you to the supper. + +LUCENTIO: +And then? + +BIONDELLO: +The old priest of Saint Luke's church is at your +command at all hours. + +LUCENTIO: +And what of all this? + +BIONDELLO: +I cannot tell; expect they are busied about a +counterfeit assurance: take you assurance of her, +'cum privilegio ad imprimendum solum:' to the +church; take the priest, clerk, and some sufficient +honest witnesses: If this be not that you look for, +I have no more to say, But bid Bianca farewell for +ever and a day. + +LUCENTIO: +Hearest thou, Biondello? + +BIONDELLO: +I cannot tarry: I knew a wench married in an +afternoon as she went to the garden for parsley to +stuff a rabbit; and so may you, sir: and so, adieu, +sir. My master hath appointed me to go to Saint +Luke's, to bid the priest be ready to come against +you come with your appendix. + +LUCENTIO: +I may, and will, if she be so contented: +She will be pleased; then wherefore should I doubt? +Hap what hap may, I'll roundly go about her: +It shall go hard if Cambio go without her. + +PETRUCHIO: +Come on, i' God's name; once more toward our father's. +Good Lord, how bright and goodly shines the moon! + +KATHARINA: +The moon! the sun: it is not moonlight now. + +PETRUCHIO: +I say it is the moon that shines so bright. + +KATHARINA: +I know it is the sun that shines so bright. + +PETRUCHIO: +Now, by my mother's son, and that's myself, +It shall be moon, or star, or what I list, +Or ere I journey to your father's house. +Go on, and fetch our horses back again. +Evermore cross'd and cross'd; nothing but cross'd! + +HORTENSIO: +Say as he says, or we shall never go. + +KATHARINA: +Forward, I pray, since we have come so far, +And be it moon, or sun, or what you please: +An if you please to call it a rush-candle, +Henceforth I vow it shall be so for me. + +PETRUCHIO: +I say it is the moon. + +KATHARINA: +I know it is the moon. + +PETRUCHIO: +Nay, then you lie: it is the blessed sun. + +KATHARINA: +Then, God be bless'd, it is the blessed sun: +But sun it is not, when you say it is not; +And the moon changes even as your mind. +What you will have it named, even that it is; +And so it shall be so for Katharina. + +HORTENSIO: +Petruchio, go thy ways; the field is won. + +PETRUCHIO: +Well, forward, forward! thus the bowl should run, +And not unluckily against the bias. +But, soft! company is coming here. +Good morrow, gentle mistress: where away? +Tell me, sweet Kate, and tell me truly too, +Hast thou beheld a fresher gentlewoman? +Such war of white and red within her cheeks! +What stars do spangle heaven with such beauty, +As those two eyes become that heavenly face? +Fair lovely maid, once more good day to thee. +Sweet Kate, embrace her for her beauty's sake. + +HORTENSIO: +A' will make the man mad, to make a woman of him. + +KATHARINA: +Young budding virgin, fair and fresh and sweet, +Whither away, or where is thy abode? +Happy the parents of so fair a child; +Happier the man, whom favourable stars +Allot thee for his lovely bed-fellow! + +PETRUCHIO: +Why, how now, Kate! I hope thou art not mad: +This is a man, old, wrinkled, faded, wither'd, +And not a maiden, as thou say'st he is. + +KATHARINA: +Pardon, old father, my mistaking eyes, +That have been so bedazzled with the sun +That everything I look on seemeth green: +Now I perceive thou art a reverend father; +Pardon, I pray thee, for my mad mistaking. + +PETRUCHIO: +Do, good old grandsire; and withal make known +Which way thou travellest: if along with us, +We shall be joyful of thy company. + +VINCENTIO: +Fair sir, and you my merry mistress, +That with your strange encounter much amazed me, +My name is call'd Vincentio; my dwelling Pisa; +And bound I am to Padua; there to visit +A son of mine, which long I have not seen. + +PETRUCHIO: +What is his name? + +VINCENTIO: +Lucentio, gentle sir. + +PETRUCHIO: +Happily we met; the happier for thy son. +And now by law, as well as reverend age, +I may entitle thee my loving father: +The sister to my wife, this gentlewoman, +Thy son by this hath married. Wonder not, +Nor be grieved: she is of good esteem, +Her dowery wealthy, and of worthy birth; +Beside, so qualified as may beseem +The spouse of any noble gentleman. +Let me embrace with old Vincentio, +And wander we to see thy honest son, +Who will of thy arrival be full joyous. + +VINCENTIO: +But is it true? or else is it your pleasure, +Like pleasant travellers, to break a jest +Upon the company you overtake? + +HORTENSIO: +I do assure thee, father, so it is. + +PETRUCHIO: +Come, go along, and see the truth hereof; +For our first merriment hath made thee jealous. + +HORTENSIO: +Well, Petruchio, this has put me in heart. +Have to my widow! and if she be froward, +Then hast thou taught Hortensio to be untoward. + +BIONDELLO: +Softly and swiftly, sir; for the priest is ready. + +LUCENTIO: +I fly, Biondello: but they may chance to need thee +at home; therefore leave us. + +BIONDELLO: +Nay, faith, I'll see the church o' your back; and +then come back to my master's as soon as I can. + +GREMIO: +I marvel Cambio comes not all this while. + +PETRUCHIO: +Sir, here's the door, this is Lucentio's house: +My father's bears more toward the market-place; +Thither must I, and here I leave you, sir. + +VINCENTIO: +You shall not choose but drink before you go: +I think I shall command your welcome here, +And, by all likelihood, some cheer is toward. + +GREMIO: +They're busy within; you were best knock louder. + +Pedant: +What's he that knocks as he would beat down the gate? + +VINCENTIO: +Is Signior Lucentio within, sir? + +Pedant: +He's within, sir, but not to be spoken withal. + +VINCENTIO: +What if a man bring him a hundred pound or two, to +make merry withal? + +Pedant: +Keep your hundred pounds to yourself: he shall +need none, so long as I live. + +PETRUCHIO: +Nay, I told you your son was well beloved in Padua. +Do you hear, sir? To leave frivolous circumstances, +I pray you, tell Signior Lucentio that his father is +come from Pisa, and is here at the door to speak with him. + +Pedant: +Thou liest: his father is come from Padua and here +looking out at the window. + +VINCENTIO: +Art thou his father? + +Pedant: +Ay, sir; so his mother says, if I may believe her. + +PETRUCHIO: + +Pedant: +Lay hands on the villain: I believe a' means to +cozen somebody in this city under my countenance. + +BIONDELLO: +I have seen them in the church together: God send +'em good shipping! But who is here? mine old +master Vincentio! now we are undone and brought to nothing. + +VINCENTIO: + +BIONDELLO: +Hope I may choose, sir. + +VINCENTIO: +Come hither, you rogue. What, have you forgot me? + +BIONDELLO: +Forgot you! no, sir: I could not forget you, for I +never saw you before in all my life. + +VINCENTIO: +What, you notorious villain, didst thou never see +thy master's father, Vincentio? + +BIONDELLO: +What, my old worshipful old master? yes, marry, sir: +see where he looks out of the window. + +VINCENTIO: +Is't so, indeed. + +BIONDELLO: +Help, help, help! here's a madman will murder me. + +Pedant: +Help, son! help, Signior Baptista! + +PETRUCHIO: +Prithee, Kate, let's stand aside and see the end of +this controversy. + +TRANIO: +Sir, what are you that offer to beat my servant? + +VINCENTIO: +What am I, sir! nay, what are you, sir? O immortal +gods! O fine villain! A silken doublet! a velvet +hose! a scarlet cloak! and a copatain hat! O, I +am undone! I am undone! while I play the good +husband at home, my son and my servant spend all at +the university. + +TRANIO: +How now! what's the matter? + +BAPTISTA: +What, is the man lunatic? + +TRANIO: +Sir, you seem a sober ancient gentleman by your +habit, but your words show you a madman. Why, sir, +what 'cerns it you if I wear pearl and gold? I +thank my good father, I am able to maintain it. + +VINCENTIO: +Thy father! O villain! he is a sailmaker in Bergamo. + +BAPTISTA: +You mistake, sir, you mistake, sir. Pray, what do +you think is his name? + +VINCENTIO: +His name! as if I knew not his name: I have brought +him up ever since he was three years old, and his +name is Tranio. + +Pedant: +Away, away, mad ass! his name is Lucentio and he is +mine only son, and heir to the lands of me, Signior Vincentio. + +VINCENTIO: +Lucentio! O, he hath murdered his master! Lay hold +on him, I charge you, in the duke's name. O, my +son, my son! Tell me, thou villain, where is my son Lucentio? + +TRANIO: +Call forth an officer. +Carry this mad knave to the gaol. Father Baptista, +I charge you see that he be forthcoming. + +VINCENTIO: +Carry me to the gaol! + +GREMIO: +Stay, officer: he shall not go to prison. + +BAPTISTA: +Talk not, Signior Gremio: I say he shall go to prison. + +GREMIO: +Take heed, Signior Baptista, lest you be +cony-catched in this business: I dare swear this +is the right Vincentio. + +Pedant: +Swear, if thou darest. + +GREMIO: +Nay, I dare not swear it. + +TRANIO: +Then thou wert best say that I am not Lucentio. + +GREMIO: +Yes, I know thee to be Signior Lucentio. + +BAPTISTA: +Away with the dotard! to the gaol with him! + +VINCENTIO: +Thus strangers may be hailed and abused: O +monstrous villain! + +BIONDELLO: +O! we are spoiled and--yonder he is: deny him, +forswear him, or else we are all undone. + +LUCENTIO: + +VINCENTIO: +Lives my sweet son? + +BIANCA: +Pardon, dear father. + +BAPTISTA: +How hast thou offended? +Where is Lucentio? + +LUCENTIO: +Here's Lucentio, +Right son to the right Vincentio; +That have by marriage made thy daughter mine, +While counterfeit supposes bleared thine eyne. + +GREMIO: +Here's packing, with a witness to deceive us all! + +VINCENTIO: +Where is that damned villain Tranio, +That faced and braved me in this matter so? + +BAPTISTA: +Why, tell me, is not this my Cambio? + +BIANCA: +Cambio is changed into Lucentio. + +LUCENTIO: +Love wrought these miracles. Bianca's love +Made me exchange my state with Tranio, +While he did bear my countenance in the town; +And happily I have arrived at the last +Unto the wished haven of my bliss. +What Tranio did, myself enforced him to; +Then pardon him, sweet father, for my sake. + +VINCENTIO: +I'll slit the villain's nose, that would have sent +me to the gaol. + +BAPTISTA: +But do you hear, sir? have you married my daughter +without asking my good will? + +VINCENTIO: +Fear not, Baptista; we will content you, go to: but +I will in, to be revenged for this villany. + +BAPTISTA: +And I, to sound the depth of this knavery. + +LUCENTIO: +Look not pale, Bianca; thy father will not frown. + +GREMIO: +My cake is dough; but I'll in among the rest, +Out of hope of all, but my share of the feast. + +KATHARINA: +Husband, let's follow, to see the end of this ado. + +PETRUCHIO: +First kiss me, Kate, and we will. + +KATHARINA: +What, in the midst of the street? + +PETRUCHIO: +What, art thou ashamed of me? + +KATHARINA: +No, sir, God forbid; but ashamed to kiss. + +PETRUCHIO: +Why, then let's home again. Come, sirrah, let's away. + +KATHARINA: +Nay, I will give thee a kiss: now pray thee, love, stay. + +PETRUCHIO: +Is not this well? Come, my sweet Kate: +Better once than never, for never too late. + +LUCENTIO: +At last, though long, our jarring notes agree: +And time it is, when raging war is done, +To smile at scapes and perils overblown. +My fair Bianca, bid my father welcome, +While I with self-same kindness welcome thine. +Brother Petruchio, sister Katharina, +And thou, Hortensio, with thy loving widow, +Feast with the best, and welcome to my house: +My banquet is to close our stomachs up, +After our great good cheer. Pray you, sit down; +For now we sit to chat as well as eat. + +PETRUCHIO: +Nothing but sit and sit, and eat and eat! + +BAPTISTA: +Padua affords this kindness, son Petruchio. + +PETRUCHIO: +Padua affords nothing but what is kind. + +HORTENSIO: +For both our sakes, I would that word were true. + +PETRUCHIO: +Now, for my life, Hortensio fears his widow. + +Widow: +Then never trust me, if I be afeard. + +PETRUCHIO: +You are very sensible, and yet you miss my sense: +I mean, Hortensio is afeard of you. + +Widow: +He that is giddy thinks the world turns round. + +PETRUCHIO: +Roundly replied. + +KATHARINA: +Mistress, how mean you that? + +Widow: +Thus I conceive by him. + +PETRUCHIO: +Conceives by me! How likes Hortensio that? + +HORTENSIO: +My widow says, thus she conceives her tale. + +PETRUCHIO: +Very well mended. Kiss him for that, good widow. + +KATHARINA: +'He that is giddy thinks the world turns round:' +I pray you, tell me what you meant by that. + +Widow: +Your husband, being troubled with a shrew, +Measures my husband's sorrow by his woe: +And now you know my meaning, + +KATHARINA: +A very mean meaning. + +Widow: +Right, I mean you. + +KATHARINA: +And I am mean indeed, respecting you. + +PETRUCHIO: +To her, Kate! + +HORTENSIO: +To her, widow! + +PETRUCHIO: +A hundred marks, my Kate does put her down. + +HORTENSIO: +That's my office. + +PETRUCHIO: +Spoke like an officer; ha' to thee, lad! + +BAPTISTA: +How likes Gremio these quick-witted folks? + +GREMIO: +Believe me, sir, they butt together well. + +BIANCA: +Head, and butt! an hasty-witted body +Would say your head and butt were head and horn. + +VINCENTIO: +Ay, mistress bride, hath that awaken'd you? + +BIANCA: +Ay, but not frighted me; therefore I'll sleep again. + +PETRUCHIO: +Nay, that you shall not: since you have begun, +Have at you for a bitter jest or two! + +BIANCA: +Am I your bird? I mean to shift my bush; +And then pursue me as you draw your bow. +You are welcome all. + +PETRUCHIO: +She hath prevented me. Here, Signior Tranio. +This bird you aim'd at, though you hit her not; +Therefore a health to all that shot and miss'd. + +TRANIO: +O, sir, Lucentio slipp'd me like his greyhound, +Which runs himself and catches for his master. + +PETRUCHIO: +A good swift simile, but something currish. + +TRANIO: +'Tis well, sir, that you hunted for yourself: +'Tis thought your deer does hold you at a bay. + +BAPTISTA: +O ho, Petruchio! Tranio hits you now. + +LUCENTIO: +I thank thee for that gird, good Tranio. + +HORTENSIO: +Confess, confess, hath he not hit you here? + +PETRUCHIO: +A' has a little gall'd me, I confess; +And, as the jest did glance away from me, +'Tis ten to one it maim'd you two outright. + +BAPTISTA: +Now, in good sadness, son Petruchio, +I think thou hast the veriest shrew of all. + +PETRUCHIO: +Well, I say no: and therefore for assurance +Let's each one send unto his wife; +And he whose wife is most obedient +To come at first when he doth send for her, +Shall win the wager which we will propose. + +HORTENSIO: +Content. What is the wager? + +LUCENTIO: +Twenty crowns. + +PETRUCHIO: +Twenty crowns! +I'll venture so much of my hawk or hound, +But twenty times so much upon my wife. + +LUCENTIO: +A hundred then. + +HORTENSIO: +Content. + +PETRUCHIO: +A match! 'tis done. + +HORTENSIO: +Who shall begin? + +LUCENTIO: +That will I. +Go, Biondello, bid your mistress come to me. + +BIONDELLO: +I go. + +BAPTISTA: +Son, I'll be your half, Bianca comes. + +LUCENTIO: +I'll have no halves; I'll bear it all myself. +How now! what news? + +BIONDELLO: +Sir, my mistress sends you word +That she is busy and she cannot come. + +PETRUCHIO: +How! she is busy and she cannot come! +Is that an answer? + +GREMIO: +Ay, and a kind one too: +Pray God, sir, your wife send you not a worse. + +PETRUCHIO: +I hope better. + +HORTENSIO: +Sirrah Biondello, go and entreat my wife +To come to me forthwith. + +PETRUCHIO: +O, ho! entreat her! +Nay, then she must needs come. + +HORTENSIO: +I am afraid, sir, +Do what you can, yours will not be entreated. +Now, where's my wife? + +BIONDELLO: +She says you have some goodly jest in hand: +She will not come: she bids you come to her. + +PETRUCHIO: +Worse and worse; she will not come! O vile, +Intolerable, not to be endured! +Sirrah Grumio, go to your mistress; +Say, I command her to come to me. + +HORTENSIO: +I know her answer. + +PETRUCHIO: +What? + +HORTENSIO: +She will not. + +PETRUCHIO: +The fouler fortune mine, and there an end. + +BAPTISTA: +Now, by my holidame, here comes Katharina! + +KATHARINA: +What is your will, sir, that you send for me? + +PETRUCHIO: +Where is your sister, and Hortensio's wife? + +KATHARINA: +They sit conferring by the parlor fire. + +PETRUCHIO: +Go fetch them hither: if they deny to come. +Swinge me them soundly forth unto their husbands: +Away, I say, and bring them hither straight. + +LUCENTIO: +Here is a wonder, if you talk of a wonder. + +HORTENSIO: +And so it is: I wonder what it bodes. + +PETRUCHIO: +Marry, peace it bodes, and love and quiet life, +And awful rule and right supremacy; +And, to be short, what not, that's sweet and happy? + +BAPTISTA: +Now, fair befal thee, good Petruchio! +The wager thou hast won; and I will add +Unto their losses twenty thousand crowns; +Another dowry to another daughter, +For she is changed, as she had never been. + +PETRUCHIO: +Nay, I will win my wager better yet +And show more sign of her obedience, +Her new-built virtue and obedience. +See where she comes and brings your froward wives +As prisoners to her womanly persuasion. +Katharina, that cap of yours becomes you not: +Off with that bauble, throw it under-foot. + +Widow: +Lord, let me never have a cause to sigh, +Till I be brought to such a silly pass! + +BIANCA: +Fie! what a foolish duty call you this? + +LUCENTIO: +I would your duty were as foolish too: +The wisdom of your duty, fair Bianca, +Hath cost me an hundred crowns since supper-time. + +BIANCA: +The more fool you, for laying on my duty. + +PETRUCHIO: +Katharina, I charge thee, tell these headstrong women +What duty they do owe their lords and husbands. + +Widow: +Come, come, you're mocking: we will have no telling. + +PETRUCHIO: +Come on, I say; and first begin with her. + +Widow: +She shall not. + +PETRUCHIO: +I say she shall: and first begin with her. + +KATHARINA: +Fie, fie! unknit that threatening unkind brow, +And dart not scornful glances from those eyes, +To wound thy lord, thy king, thy governor: +It blots thy beauty as frosts do bite the meads, +Confounds thy fame as whirlwinds shake fair buds, +And in no sense is meet or amiable. +A woman moved is like a fountain troubled, +Muddy, ill-seeming, thick, bereft of beauty; +And while it is so, none so dry or thirsty +Will deign to sip or touch one drop of it. +Thy husband is thy lord, thy life, thy keeper, +Thy head, thy sovereign; one that cares for thee, +And for thy maintenance commits his body +To painful labour both by sea and land, +To watch the night in storms, the day in cold, +Whilst thou liest warm at home, secure and safe; +And craves no other tribute at thy hands +But love, fair looks and true obedience; +Too little payment for so great a debt. +Such duty as the subject owes the prince +Even such a woman oweth to her husband; +And when she is froward, peevish, sullen, sour, +And not obedient to his honest will, +What is she but a foul contending rebel +And graceless traitor to her loving lord? +I am ashamed that women are so simple +To offer war where they should kneel for peace; +Or seek for rule, supremacy and sway, +When they are bound to serve, love and obey. +Why are our bodies soft and weak and smooth, +Unapt to toil and trouble in the world, +But that our soft conditions and our hearts +Should well agree with our external parts? +Come, come, you froward and unable worms! +My mind hath been as big as one of yours, +My heart as great, my reason haply more, +To bandy word for word and frown for frown; +But now I see our lances are but straws, +Our strength as weak, our weakness past compare, +That seeming to be most which we indeed least are. +Then vail your stomachs, for it is no boot, +And place your hands below your husband's foot: +In token of which duty, if he please, +My hand is ready; may it do him ease. + +PETRUCHIO: +Why, there's a wench! Come on, and kiss me, Kate. + +LUCENTIO: +Well, go thy ways, old lad; for thou shalt ha't. + +VINCENTIO: +'Tis a good hearing when children are toward. + +LUCENTIO: +But a harsh hearing when women are froward. + +PETRUCHIO: +Come, Kate, we'll to bed. +We three are married, but you two are sped. +'Twas I won the wager, though you hit the white; +And, being a winner, God give you good night! + +HORTENSIO: +Now, go thy ways; thou hast tamed a curst shrew. + +LUCENTIO: +'Tis a wonder, by your leave, she will be tamed so. + +Master: +Boatswain! + +Boatswain: +Here, master: what cheer? + +Master: +Good, speak to the mariners: fall to't, yarely, +or we run ourselves aground: bestir, bestir. + +Boatswain: +Heigh, my hearts! cheerly, cheerly, my hearts! +yare, yare! Take in the topsail. Tend to the +master's whistle. Blow, till thou burst thy wind, +if room enough! + +ALONSO: +Good boatswain, have care. Where's the master? +Play the men. + +Boatswain: +I pray now, keep below. + +ANTONIO: +Where is the master, boatswain? + +Boatswain: +Do you not hear him? You mar our labour: keep your +cabins: you do assist the storm. + +GONZALO: +Nay, good, be patient. + +Boatswain: +When the sea is. Hence! What cares these roarers +for the name of king? To cabin: silence! trouble us not. + +GONZALO: +Good, yet remember whom thou hast aboard. + +Boatswain: +None that I more love than myself. You are a +counsellor; if you can command these elements to +silence, and work the peace of the present, we will +not hand a rope more; use your authority: if you +cannot, give thanks you have lived so long, and make +yourself ready in your cabin for the mischance of +the hour, if it so hap. Cheerly, good hearts! Out +of our way, I say. + +GONZALO: +I have great comfort from this fellow: methinks he +hath no drowning mark upon him; his complexion is +perfect gallows. Stand fast, good Fate, to his +hanging: make the rope of his destiny our cable, +for our own doth little advantage. If he be not +born to be hanged, our case is miserable. + +Boatswain: +Down with the topmast! yare! lower, lower! Bring +her to try with main-course. +A plague upon this howling! they are louder than +the weather or our office. +Yet again! what do you here? Shall we give o'er +and drown? Have you a mind to sink? + +SEBASTIAN: +A pox o' your throat, you bawling, blasphemous, +incharitable dog! + +Boatswain: +Work you then. + +ANTONIO: +Hang, cur! hang, you whoreson, insolent noisemaker! +We are less afraid to be drowned than thou art. + +GONZALO: +I'll warrant him for drowning; though the ship were +no stronger than a nutshell and as leaky as an +unstanched wench. + +Boatswain: +Lay her a-hold, a-hold! set her two courses off to +sea again; lay her off. + +Mariners: +All lost! to prayers, to prayers! all lost! + +Boatswain: +What, must our mouths be cold? + +GONZALO: +The king and prince at prayers! let's assist them, +For our case is as theirs. + +SEBASTIAN: +I'm out of patience. + +ANTONIO: +We are merely cheated of our lives by drunkards: +This wide-chapp'd rascal--would thou mightst lie drowning +The washing of ten tides! + +GONZALO: +He'll be hang'd yet, +Though every drop of water swear against it +And gape at widest to glut him. + +ANTONIO: +Let's all sink with the king. + +SEBASTIAN: +Let's take leave of him. + +GONZALO: +Now would I give a thousand furlongs of sea for an +acre of barren ground, long heath, brown furze, any +thing. The wills above be done! but I would fain +die a dry death. + +MIRANDA: +If by your art, my dearest father, you have +Put the wild waters in this roar, allay them. +The sky, it seems, would pour down stinking pitch, +But that the sea, mounting to the welkin's cheek, +Dashes the fire out. O, I have suffered +With those that I saw suffer: a brave vessel, +Who had, no doubt, some noble creature in her, +Dash'd all to pieces. O, the cry did knock +Against my very heart. Poor souls, they perish'd. +Had I been any god of power, I would +Have sunk the sea within the earth or ere +It should the good ship so have swallow'd and +The fraughting souls within her. + +PROSPERO: +Be collected: +No more amazement: tell your piteous heart +There's no harm done. + +MIRANDA: +O, woe the day! + +PROSPERO: +No harm. +I have done nothing but in care of thee, +Of thee, my dear one, thee, my daughter, who +Art ignorant of what thou art, nought knowing +Of whence I am, nor that I am more better +Than Prospero, master of a full poor cell, +And thy no greater father. + +MIRANDA: +More to know +Did never meddle with my thoughts. + +PROSPERO: +'Tis time +I should inform thee farther. Lend thy hand, +And pluck my magic garment from me. So: +Lie there, my art. Wipe thou thine eyes; have comfort. +The direful spectacle of the wreck, which touch'd +The very virtue of compassion in thee, +I have with such provision in mine art +So safely ordered that there is no soul-- +No, not so much perdition as an hair +Betid to any creature in the vessel +Which thou heard'st cry, which thou saw'st sink. Sit down; +For thou must now know farther. + +MIRANDA: +You have often +Begun to tell me what I am, but stopp'd +And left me to a bootless inquisition, +Concluding 'Stay: not yet.' + +PROSPERO: +The hour's now come; +The very minute bids thee ope thine ear; +Obey and be attentive. Canst thou remember +A time before we came unto this cell? +I do not think thou canst, for then thou wast not +Out three years old. + +MIRANDA: +Certainly, sir, I can. + +PROSPERO: +By what? by any other house or person? +Of any thing the image tell me that +Hath kept with thy remembrance. + +MIRANDA: +'Tis far off +And rather like a dream than an assurance +That my remembrance warrants. Had I not +Four or five women once that tended me? + +PROSPERO: +Thou hadst, and more, Miranda. But how is it +That this lives in thy mind? What seest thou else +In the dark backward and abysm of time? +If thou remember'st aught ere thou camest here, +How thou camest here thou mayst. + +MIRANDA: +But that I do not. + +PROSPERO: +Twelve year since, Miranda, twelve year since, +Thy father was the Duke of Milan and +A prince of power. + +MIRANDA: +Sir, are not you my father? + +PROSPERO: +Thy mother was a piece of virtue, and +She said thou wast my daughter; and thy father +Was Duke of Milan; and thou his only heir +And princess no worse issued. + +MIRANDA: +O the heavens! +What foul play had we, that we came from thence? +Or blessed was't we did? + +PROSPERO: +Both, both, my girl: +By foul play, as thou say'st, were we heaved thence, +But blessedly holp hither. + +MIRANDA: +O, my heart bleeds +To think o' the teen that I have turn'd you to, +Which is from my remembrance! Please you, farther. + +PROSPERO: +My brother and thy uncle, call'd Antonio-- +I pray thee, mark me--that a brother should +Be so perfidious!--he whom next thyself +Of all the world I loved and to him put +The manage of my state; as at that time +Through all the signories it was the first +And Prospero the prime duke, being so reputed +In dignity, and for the liberal arts +Without a parallel; those being all my study, +The government I cast upon my brother +And to my state grew stranger, being transported +And rapt in secret studies. Thy false uncle-- +Dost thou attend me? + +MIRANDA: +Sir, most heedfully. + +PROSPERO: +Being once perfected how to grant suits, +How to deny them, who to advance and who +To trash for over-topping, new created +The creatures that were mine, I say, or changed 'em, +Or else new form'd 'em; having both the key +Of officer and office, set all hearts i' the state +To what tune pleased his ear; that now he was +The ivy which had hid my princely trunk, +And suck'd my verdure out on't. Thou attend'st not. + +MIRANDA: +O, good sir, I do. + +PROSPERO: +I pray thee, mark me. +I, thus neglecting worldly ends, all dedicated +To closeness and the bettering of my mind +With that which, but by being so retired, +O'er-prized all popular rate, in my false brother +Awaked an evil nature; and my trust, +Like a good parent, did beget of him +A falsehood in its contrary as great +As my trust was; which had indeed no limit, +A confidence sans bound. He being thus lorded, +Not only with what my revenue yielded, +But what my power might else exact, like one +Who having into truth, by telling of it, +Made such a sinner of his memory, +To credit his own lie, he did believe +He was indeed the duke; out o' the substitution +And executing the outward face of royalty, +With all prerogative: hence his ambition growing-- +Dost thou hear? + +MIRANDA: +Your tale, sir, would cure deafness. + +PROSPERO: +To have no screen between this part he play'd +And him he play'd it for, he needs will be +Absolute Milan. Me, poor man, my library +Was dukedom large enough: of temporal royalties +He thinks me now incapable; confederates-- +So dry he was for sway--wi' the King of Naples +To give him annual tribute, do him homage, +Subject his coronet to his crown and bend +The dukedom yet unbow'd--alas, poor Milan!-- +To most ignoble stooping. + +MIRANDA: +O the heavens! + +PROSPERO: +Mark his condition and the event; then tell me +If this might be a brother. + +MIRANDA: +I should sin +To think but nobly of my grandmother: +Good wombs have borne bad sons. + +PROSPERO: +Now the condition. +The King of Naples, being an enemy +To me inveterate, hearkens my brother's suit; +Which was, that he, in lieu o' the premises +Of homage and I know not how much tribute, +Should presently extirpate me and mine +Out of the dukedom and confer fair Milan +With all the honours on my brother: whereon, +A treacherous army levied, one midnight +Fated to the purpose did Antonio open +The gates of Milan, and, i' the dead of darkness, +The ministers for the purpose hurried thence +Me and thy crying self. + +MIRANDA: +Alack, for pity! +I, not remembering how I cried out then, +Will cry it o'er again: it is a hint +That wrings mine eyes to't. + +PROSPERO: +Hear a little further +And then I'll bring thee to the present business +Which now's upon's; without the which this story +Were most impertinent. + +MIRANDA: +Wherefore did they not +That hour destroy us? + +PROSPERO: +Well demanded, wench: +My tale provokes that question. Dear, they durst not, +So dear the love my people bore me, nor set +A mark so bloody on the business, but +With colours fairer painted their foul ends. +In few, they hurried us aboard a bark, +Bore us some leagues to sea; where they prepared +A rotten carcass of a boat, not rigg'd, +Nor tackle, sail, nor mast; the very rats +Instinctively had quit it: there they hoist us, +To cry to the sea that roar'd to us, to sigh +To the winds whose pity, sighing back again, +Did us but loving wrong. + +MIRANDA: +Alack, what trouble +Was I then to you! + +PROSPERO: +O, a cherubim +Thou wast that did preserve me. Thou didst smile. +Infused with a fortitude from heaven, +When I have deck'd the sea with drops full salt, +Under my burthen groan'd; which raised in me +An undergoing stomach, to bear up +Against what should ensue. + +MIRANDA: +How came we ashore? + +PROSPERO: +By Providence divine. +Some food we had and some fresh water that +A noble Neapolitan, Gonzalo, +Out of his charity, being then appointed +Master of this design, did give us, with +Rich garments, linens, stuffs and necessaries, +Which since have steaded much; so, of his gentleness, +Knowing I loved my books, he furnish'd me +From mine own library with volumes that +I prize above my dukedom. + +MIRANDA: +Would I might +But ever see that man! + +PROSPERO: +Now I arise: +Sit still, and hear the last of our sea-sorrow. +Here in this island we arrived; and here +Have I, thy schoolmaster, made thee more profit +Than other princesses can that have more time +For vainer hours and tutors not so careful. + +MIRANDA: +Heavens thank you for't! And now, I pray you, sir, +For still 'tis beating in my mind, your reason +For raising this sea-storm? + +PROSPERO: +Know thus far forth. +By accident most strange, bountiful Fortune, +Now my dear lady, hath mine enemies +Brought to this shore; and by my prescience +I find my zenith doth depend upon +A most auspicious star, whose influence +If now I court not but omit, my fortunes +Will ever after droop. Here cease more questions: +Thou art inclined to sleep; 'tis a good dulness, +And give it way: I know thou canst not choose. +Come away, servant, come. I am ready now. +Approach, my Ariel, come. + +ARIEL: +All hail, great master! grave sir, hail! I come +To answer thy best pleasure; be't to fly, +To swim, to dive into the fire, to ride +On the curl'd clouds, to thy strong bidding task +Ariel and all his quality. + +PROSPERO: +Hast thou, spirit, +Perform'd to point the tempest that I bade thee? + +ARIEL: +To every article. +I boarded the king's ship; now on the beak, +Now in the waist, the deck, in every cabin, +I flamed amazement: sometime I'ld divide, +And burn in many places; on the topmast, +The yards and bowsprit, would I flame distinctly, +Then meet and join. Jove's lightnings, the precursors +O' the dreadful thunder-claps, more momentary +And sight-outrunning were not; the fire and cracks +Of sulphurous roaring the most mighty Neptune +Seem to besiege and make his bold waves tremble, +Yea, his dread trident shake. + +PROSPERO: +My brave spirit! +Who was so firm, so constant, that this coil +Would not infect his reason? + +ARIEL: +Not a soul +But felt a fever of the mad and play'd +Some tricks of desperation. All but mariners +Plunged in the foaming brine and quit the vessel, +Then all afire with me: the king's son, Ferdinand, +With hair up-staring,--then like reeds, not hair,-- +Was the first man that leap'd; cried, 'Hell is empty +And all the devils are here.' + +PROSPERO: +Why that's my spirit! +But was not this nigh shore? + +ARIEL: +Close by, my master. + +PROSPERO: +But are they, Ariel, safe? + +ARIEL: +Not a hair perish'd; +On their sustaining garments not a blemish, +But fresher than before: and, as thou badest me, +In troops I have dispersed them 'bout the isle. +The king's son have I landed by himself; +Whom I left cooling of the air with sighs +In an odd angle of the isle and sitting, +His arms in this sad knot. + +PROSPERO: +Of the king's ship +The mariners say how thou hast disposed +And all the rest o' the fleet. + +ARIEL: +Safely in harbour +Is the king's ship; in the deep nook, where once +Thou call'dst me up at midnight to fetch dew +From the still-vex'd Bermoothes, there she's hid: +The mariners all under hatches stow'd; +Who, with a charm join'd to their suffer'd labour, +I have left asleep; and for the rest o' the fleet +Which I dispersed, they all have met again +And are upon the Mediterranean flote, +Bound sadly home for Naples, +Supposing that they saw the king's ship wreck'd +And his great person perish. + +PROSPERO: +Ariel, thy charge +Exactly is perform'd: but there's more work. +What is the time o' the day? + +ARIEL: +Past the mid season. + +PROSPERO: +At least two glasses. The time 'twixt six and now +Must by us both be spent most preciously. + +ARIEL: +Is there more toil? Since thou dost give me pains, +Let me remember thee what thou hast promised, +Which is not yet perform'd me. + +PROSPERO: +How now? moody? +What is't thou canst demand? + +ARIEL: +My liberty. + +PROSPERO: +Before the time be out? no more! + +ARIEL: +I prithee, +Remember I have done thee worthy service; +Told thee no lies, made thee no mistakings, served +Without or grudge or grumblings: thou didst promise +To bate me a full year. + +PROSPERO: +Dost thou forget +From what a torment I did free thee? + +ARIEL: +No. + +PROSPERO: +Thou dost, and think'st it much to tread the ooze +Of the salt deep, +To run upon the sharp wind of the north, +To do me business in the veins o' the earth +When it is baked with frost. + +ARIEL: +I do not, sir. + +PROSPERO: +Thou liest, malignant thing! Hast thou forgot +The foul witch Sycorax, who with age and envy +Was grown into a hoop? hast thou forgot her? + +ARIEL: +No, sir. + +PROSPERO: +Thou hast. Where was she born? speak; tell me. + +ARIEL: +Sir, in Argier. + +PROSPERO: +O, was she so? I must +Once in a month recount what thou hast been, +Which thou forget'st. This damn'd witch Sycorax, +For mischiefs manifold and sorceries terrible +To enter human hearing, from Argier, +Thou know'st, was banish'd: for one thing she did +They would not take her life. Is not this true? + +ARIEL: +Ay, sir. + +PROSPERO: +This blue-eyed hag was hither brought with child +And here was left by the sailors. Thou, my slave, +As thou report'st thyself, wast then her servant; +And, for thou wast a spirit too delicate +To act her earthy and abhorr'd commands, +Refusing her grand hests, she did confine thee, +By help of her more potent ministers +And in her most unmitigable rage, +Into a cloven pine; within which rift +Imprison'd thou didst painfully remain +A dozen years; within which space she died +And left thee there; where thou didst vent thy groans +As fast as mill-wheels strike. Then was this island-- +Save for the son that she did litter here, +A freckled whelp hag-born--not honour'd with +A human shape. + +ARIEL: +Yes, Caliban her son. + +PROSPERO: +Dull thing, I say so; he, that Caliban +Whom now I keep in service. Thou best know'st +What torment I did find thee in; thy groans +Did make wolves howl and penetrate the breasts +Of ever angry bears: it was a torment +To lay upon the damn'd, which Sycorax +Could not again undo: it was mine art, +When I arrived and heard thee, that made gape +The pine and let thee out. + +ARIEL: +I thank thee, master. + +PROSPERO: +If thou more murmur'st, I will rend an oak +And peg thee in his knotty entrails till +Thou hast howl'd away twelve winters. + +ARIEL: +Pardon, master; +I will be correspondent to command +And do my spiriting gently. + +PROSPERO: +Do so, and after two days +I will discharge thee. + +ARIEL: +That's my noble master! +What shall I do? say what; what shall I do? + +PROSPERO: +Go make thyself like a nymph o' the sea: be subject +To no sight but thine and mine, invisible +To every eyeball else. Go take this shape +And hither come in't: go, hence with diligence! +Awake, dear heart, awake! thou hast slept well; Awake! + +MIRANDA: +The strangeness of your story put +Heaviness in me. + +PROSPERO: +Shake it off. Come on; +We'll visit Caliban my slave, who never +Yields us kind answer. + +MIRANDA: +'Tis a villain, sir, +I do not love to look on. + +PROSPERO: +But, as 'tis, +We cannot miss him: he does make our fire, +Fetch in our wood and serves in offices +That profit us. What, ho! slave! Caliban! +Thou earth, thou! speak. + +CALIBAN: + +PROSPERO: +Come forth, I say! there's other business for thee: +Come, thou tortoise! when? +Fine apparition! My quaint Ariel, +Hark in thine ear. + +ARIEL: +My lord it shall be done. + +PROSPERO: +Thou poisonous slave, got by the devil himself +Upon thy wicked dam, come forth! + +CALIBAN: +As wicked dew as e'er my mother brush'd +With raven's feather from unwholesome fen +Drop on you both! a south-west blow on ye +And blister you all o'er! + +PROSPERO: +For this, be sure, to-night thou shalt have cramps, +Side-stitches that shall pen thy breath up; urchins +Shall, for that vast of night that they may work, +All exercise on thee; thou shalt be pinch'd +As thick as honeycomb, each pinch more stinging +Than bees that made 'em. + +CALIBAN: +I must eat my dinner. +This island's mine, by Sycorax my mother, +Which thou takest from me. When thou camest first, +Thou strokedst me and madest much of me, wouldst give me +Water with berries in't, and teach me how +To name the bigger light, and how the less, +That burn by day and night: and then I loved thee +And show'd thee all the qualities o' the isle, +The fresh springs, brine-pits, barren place and fertile: +Cursed be I that did so! All the charms +Of Sycorax, toads, beetles, bats, light on you! +For I am all the subjects that you have, +Which first was mine own king: and here you sty me +In this hard rock, whiles you do keep from me +The rest o' the island. + +PROSPERO: +Thou most lying slave, +Whom stripes may move, not kindness! I have used thee, +Filth as thou art, with human care, and lodged thee +In mine own cell, till thou didst seek to violate +The honour of my child. + +CALIBAN: +O ho, O ho! would't had been done! +Thou didst prevent me; I had peopled else +This isle with Calibans. + +PROSPERO: +Abhorred slave, +Which any print of goodness wilt not take, +Being capable of all ill! I pitied thee, +Took pains to make thee speak, taught thee each hour +One thing or other: when thou didst not, savage, +Know thine own meaning, but wouldst gabble like +A thing most brutish, I endow'd thy purposes +With words that made them known. But thy vile race, +Though thou didst learn, had that in't which +good natures +Could not abide to be with; therefore wast thou +Deservedly confined into this rock, +Who hadst deserved more than a prison. + +CALIBAN: +You taught me language; and my profit on't +Is, I know how to curse. The red plague rid you +For learning me your language! + +PROSPERO: +Hag-seed, hence! +Fetch us in fuel; and be quick, thou'rt best, +To answer other business. Shrug'st thou, malice? +If thou neglect'st or dost unwillingly +What I command, I'll rack thee with old cramps, +Fill all thy bones with aches, make thee roar +That beasts shall tremble at thy din. + +CALIBAN: +No, pray thee. +I must obey: his art is of such power, +It would control my dam's god, Setebos, +and make a vassal of him. + +PROSPERO: +So, slave; hence! +Come unto these yellow sands, +And then take hands: +Courtsied when you have and kiss'd +The wild waves whist, +Foot it featly here and there; +And, sweet sprites, the burthen bear. +Hark, hark! + +FERDINAND: +Where should this music be? i' the air or the earth? +It sounds no more: and sure, it waits upon +Some god o' the island. Sitting on a bank, +Weeping again the king my father's wreck, +This music crept by me upon the waters, +Allaying both their fury and my passion +With its sweet air: thence I have follow'd it, +Or it hath drawn me rather. But 'tis gone. +No, it begins again. +Full fathom five thy father lies; +Of his bones are coral made; +Those are pearls that were his eyes: +Nothing of him that doth fade +But doth suffer a sea-change +Into something rich and strange. +Sea-nymphs hourly ring his knell +Hark! now I hear them,--Ding-dong, bell. + +FERDINAND: +The ditty does remember my drown'd father. +This is no mortal business, nor no sound +That the earth owes. I hear it now above me. + +PROSPERO: +The fringed curtains of thine eye advance +And say what thou seest yond. + +MIRANDA: +What is't? a spirit? +Lord, how it looks about! Believe me, sir, +It carries a brave form. But 'tis a spirit. + +PROSPERO: +No, wench; it eats and sleeps and hath such senses +As we have, such. This gallant which thou seest +Was in the wreck; and, but he's something stain'd +With grief that's beauty's canker, thou mightst call him +A goodly person: he hath lost his fellows +And strays about to find 'em. + +MIRANDA: +I might call him +A thing divine, for nothing natural +I ever saw so noble. + +PROSPERO: + +FERDINAND: +Most sure, the goddess +On whom these airs attend! Vouchsafe my prayer +May know if you remain upon this island; +And that you will some good instruction give +How I may bear me here: my prime request, +Which I do last pronounce, is, O you wonder! +If you be maid or no? + +MIRANDA: +No wonder, sir; +But certainly a maid. + +FERDINAND: +My language! heavens! +I am the best of them that speak this speech, +Were I but where 'tis spoken. + +PROSPERO: +How? the best? +What wert thou, if the King of Naples heard thee? + +FERDINAND: +A single thing, as I am now, that wonders +To hear thee speak of Naples. He does hear me; +And that he does I weep: myself am Naples, +Who with mine eyes, never since at ebb, beheld +The king my father wreck'd. + +MIRANDA: +Alack, for mercy! + +FERDINAND: +Yes, faith, and all his lords; the Duke of Milan +And his brave son being twain. + +PROSPERO: + +MIRANDA: +Why speaks my father so ungently? This +Is the third man that e'er I saw, the first +That e'er I sigh'd for: pity move my father +To be inclined my way! + +FERDINAND: +O, if a virgin, +And your affection not gone forth, I'll make you +The queen of Naples. + +PROSPERO: +Soft, sir! one word more. +They are both in either's powers; but this swift business +I must uneasy make, lest too light winning +Make the prize light. +One word more; I charge thee +That thou attend me: thou dost here usurp +The name thou owest not; and hast put thyself +Upon this island as a spy, to win it +From me, the lord on't. + +FERDINAND: +No, as I am a man. + +MIRANDA: +There's nothing ill can dwell in such a temple: +If the ill spirit have so fair a house, +Good things will strive to dwell with't. + +PROSPERO: +Follow me. +Speak not you for him; he's a traitor. Come; +I'll manacle thy neck and feet together: +Sea-water shalt thou drink; thy food shall be +The fresh-brook muscles, wither'd roots and husks +Wherein the acorn cradled. Follow. + +FERDINAND: +No; +I will resist such entertainment till +Mine enemy has more power. + +MIRANDA: +O dear father, +Make not too rash a trial of him, for +He's gentle and not fearful. + +PROSPERO: +What? I say, +My foot my tutor? Put thy sword up, traitor; +Who makest a show but darest not strike, thy conscience +Is so possess'd with guilt: come from thy ward, +For I can here disarm thee with this stick +And make thy weapon drop. + +MIRANDA: +Beseech you, father. + +PROSPERO: +Hence! hang not on my garments. + +MIRANDA: +Sir, have pity; +I'll be his surety. + +PROSPERO: +Silence! one word more +Shall make me chide thee, if not hate thee. What! +An advocate for an imposter! hush! +Thou think'st there is no more such shapes as he, +Having seen but him and Caliban: foolish wench! +To the most of men this is a Caliban +And they to him are angels. + +MIRANDA: +My affections +Are then most humble; I have no ambition +To see a goodlier man. + +PROSPERO: +Come on; obey: +Thy nerves are in their infancy again +And have no vigour in them. + +FERDINAND: +So they are; +My spirits, as in a dream, are all bound up. +My father's loss, the weakness which I feel, +The wreck of all my friends, nor this man's threats, +To whom I am subdued, are but light to me, +Might I but through my prison once a day +Behold this maid: all corners else o' the earth +Let liberty make use of; space enough +Have I in such a prison. + +PROSPERO: + +MIRANDA: +Be of comfort; +My father's of a better nature, sir, +Than he appears by speech: this is unwonted +Which now came from him. + +PROSPERO: +Thou shalt be free +As mountain winds: but then exactly do +All points of my command. + +ARIEL: +To the syllable. + +PROSPERO: +Come, follow. Speak not for him. + +GONZALO: +Beseech you, sir, be merry; you have cause, +So have we all, of joy; for our escape +Is much beyond our loss. Our hint of woe +Is common; every day some sailor's wife, +The masters of some merchant and the merchant +Have just our theme of woe; but for the miracle, +I mean our preservation, few in millions +Can speak like us: then wisely, good sir, weigh +Our sorrow with our comfort. + +ALONSO: +Prithee, peace. + +SEBASTIAN: +He receives comfort like cold porridge. + +ANTONIO: +The visitor will not give him o'er so. + +SEBASTIAN: +Look he's winding up the watch of his wit; +by and by it will strike. + +GONZALO: +Sir,-- + +SEBASTIAN: +One: tell. + +GONZALO: +When every grief is entertain'd that's offer'd, +Comes to the entertainer-- + +SEBASTIAN: +A dollar. + +GONZALO: +Dolour comes to him, indeed: you +have spoken truer than you purposed. + +SEBASTIAN: +You have taken it wiselier than I meant you should. + +GONZALO: +Therefore, my lord,-- + +ANTONIO: +Fie, what a spendthrift is he of his tongue! + +ALONSO: +I prithee, spare. + +GONZALO: +Well, I have done: but yet,-- + +SEBASTIAN: +He will be talking. + +ANTONIO: +Which, of he or Adrian, for a good +wager, first begins to crow? + +SEBASTIAN: +The old cock. + +ANTONIO: +The cockerel. + +SEBASTIAN: +Done. The wager? + +ANTONIO: +A laughter. + +SEBASTIAN: +A match! + +ADRIAN: +Though this island seem to be desert,-- + +SEBASTIAN: +Ha, ha, ha! So, you're paid. + +ADRIAN: +Uninhabitable and almost inaccessible,-- + +SEBASTIAN: +Yet,-- + +ADRIAN: +Yet,-- + +ANTONIO: +He could not miss't. + +ADRIAN: +It must needs be of subtle, tender and delicate +temperance. + +ANTONIO: +Temperance was a delicate wench. + +SEBASTIAN: +Ay, and a subtle; as he most learnedly delivered. + +ADRIAN: +The air breathes upon us here most sweetly. + +SEBASTIAN: +As if it had lungs and rotten ones. + +ANTONIO: +Or as 'twere perfumed by a fen. + +GONZALO: +Here is everything advantageous to life. + +ANTONIO: +True; save means to live. + +SEBASTIAN: +Of that there's none, or little. + +GONZALO: +How lush and lusty the grass looks! how green! + +ANTONIO: +The ground indeed is tawny. + +SEBASTIAN: +With an eye of green in't. + +ANTONIO: +He misses not much. + +SEBASTIAN: +No; he doth but mistake the truth totally. + +GONZALO: +But the rarity of it is,--which is indeed almost +beyond credit,-- + +SEBASTIAN: +As many vouched rarities are. + +GONZALO: +That our garments, being, as they were, drenched in +the sea, hold notwithstanding their freshness and +glosses, being rather new-dyed than stained with +salt water. + +ANTONIO: +If but one of his pockets could speak, would it not +say he lies? + +SEBASTIAN: +Ay, or very falsely pocket up his report + +GONZALO: +Methinks our garments are now as fresh as when we +put them on first in Afric, at the marriage of +the king's fair daughter Claribel to the King of Tunis. + +SEBASTIAN: +'Twas a sweet marriage, and we prosper well in our return. + +ADRIAN: +Tunis was never graced before with such a paragon to +their queen. + +GONZALO: +Not since widow Dido's time. + +ANTONIO: +Widow! a pox o' that! How came that widow in? +widow Dido! + +SEBASTIAN: +What if he had said 'widower AEneas' too? Good Lord, +how you take it! + +ADRIAN: +'Widow Dido' said you? you make me study of that: +she was of Carthage, not of Tunis. + +GONZALO: +This Tunis, sir, was Carthage. + +ADRIAN: +Carthage? + +GONZALO: +I assure you, Carthage. + +SEBASTIAN: +His word is more than the miraculous harp; he hath +raised the wall and houses too. + +ANTONIO: +What impossible matter will he make easy next? + +SEBASTIAN: +I think he will carry this island home in his pocket +and give it his son for an apple. + +ANTONIO: +And, sowing the kernels of it in the sea, bring +forth more islands. + +GONZALO: +Ay. + +ANTONIO: +Why, in good time. + +GONZALO: +Sir, we were talking that our garments seem now +as fresh as when we were at Tunis at the marriage +of your daughter, who is now queen. + +ANTONIO: +And the rarest that e'er came there. + +SEBASTIAN: +Bate, I beseech you, widow Dido. + +ANTONIO: +O, widow Dido! ay, widow Dido. + +GONZALO: +Is not, sir, my doublet as fresh as the first day I +wore it? I mean, in a sort. + +ANTONIO: +That sort was well fished for. + +GONZALO: +When I wore it at your daughter's marriage? + +ALONSO: +You cram these words into mine ears against +The stomach of my sense. Would I had never +Married my daughter there! for, coming thence, +My son is lost and, in my rate, she too, +Who is so far from Italy removed +I ne'er again shall see her. O thou mine heir +Of Naples and of Milan, what strange fish +Hath made his meal on thee? + +FRANCISCO: +Sir, he may live: +I saw him beat the surges under him, +And ride upon their backs; he trod the water, +Whose enmity he flung aside, and breasted +The surge most swoln that met him; his bold head +'Bove the contentious waves he kept, and oar'd +Himself with his good arms in lusty stroke +To the shore, that o'er his wave-worn basis bow'd, +As stooping to relieve him: I not doubt +He came alive to land. + +ALONSO: +No, no, he's gone. + +SEBASTIAN: +Sir, you may thank yourself for this great loss, +That would not bless our Europe with your daughter, +But rather lose her to an African; +Where she at least is banish'd from your eye, +Who hath cause to wet the grief on't. + +ALONSO: +Prithee, peace. + +SEBASTIAN: +You were kneel'd to and importuned otherwise +By all of us, and the fair soul herself +Weigh'd between loathness and obedience, at +Which end o' the beam should bow. We have lost your +son, +I fear, for ever: Milan and Naples have +More widows in them of this business' making +Than we bring men to comfort them: +The fault's your own. + +ALONSO: +So is the dear'st o' the loss. + +GONZALO: +My lord Sebastian, +The truth you speak doth lack some gentleness +And time to speak it in: you rub the sore, +When you should bring the plaster. + +SEBASTIAN: +Very well. + +ANTONIO: +And most chirurgeonly. + +GONZALO: +It is foul weather in us all, good sir, +When you are cloudy. + +SEBASTIAN: +Foul weather? + +ANTONIO: +Very foul. + +GONZALO: +Had I plantation of this isle, my lord,-- + +ANTONIO: +He'ld sow't with nettle-seed. + +SEBASTIAN: +Or docks, or mallows. + +GONZALO: +And were the king on't, what would I do? + +SEBASTIAN: +'Scape being drunk for want of wine. + +GONZALO: +I' the commonwealth I would by contraries +Execute all things; for no kind of traffic +Would I admit; no name of magistrate; +Letters should not be known; riches, poverty, +And use of service, none; contract, succession, +Bourn, bound of land, tilth, vineyard, none; +No use of metal, corn, or wine, or oil; +No occupation; all men idle, all; +And women too, but innocent and pure; +No sovereignty;-- + +SEBASTIAN: +Yet he would be king on't. + +ANTONIO: +The latter end of his commonwealth forgets the +beginning. + +GONZALO: +All things in common nature should produce +Without sweat or endeavour: treason, felony, +Sword, pike, knife, gun, or need of any engine, +Would I not have; but nature should bring forth, +Of its own kind, all foison, all abundance, +To feed my innocent people. + +SEBASTIAN: +No marrying 'mong his subjects? + +ANTONIO: +None, man; all idle: whores and knaves. + +GONZALO: +I would with such perfection govern, sir, +To excel the golden age. + +SEBASTIAN: +God save his majesty! + +ANTONIO: +Long live Gonzalo! + +GONZALO: +And,--do you mark me, sir? + +ALONSO: +Prithee, no more: thou dost talk nothing to me. + +GONZALO: +I do well believe your highness; and +did it to minister occasion to these gentlemen, +who are of such sensible and nimble lungs that +they always use to laugh at nothing. + +ANTONIO: +'Twas you we laughed at. + +GONZALO: +Who in this kind of merry fooling am nothing +to you: so you may continue and laugh at +nothing still. + +ANTONIO: +What a blow was there given! + +SEBASTIAN: +An it had not fallen flat-long. + +GONZALO: +You are gentlemen of brave metal; you would lift +the moon out of her sphere, if she would continue +in it five weeks without changing. + +SEBASTIAN: +We would so, and then go a bat-fowling. + +ANTONIO: +Nay, good my lord, be not angry. + +GONZALO: +No, I warrant you; I will not adventure +my discretion so weakly. Will you laugh +me asleep, for I am very heavy? + +ANTONIO: +Go sleep, and hear us. + +ALONSO: +What, all so soon asleep! I wish mine eyes +Would, with themselves, shut up my thoughts: I find +They are inclined to do so. + +SEBASTIAN: +Please you, sir, +Do not omit the heavy offer of it: +It seldom visits sorrow; when it doth, +It is a comforter. + +ANTONIO: +We two, my lord, +Will guard your person while you take your rest, +And watch your safety. + +ALONSO: +Thank you. Wondrous heavy. + +SEBASTIAN: +What a strange drowsiness possesses them! + +ANTONIO: +It is the quality o' the climate. + +SEBASTIAN: +Why +Doth it not then our eyelids sink? I find not +Myself disposed to sleep. + +ANTONIO: +Nor I; my spirits are nimble. +They fell together all, as by consent; +They dropp'd, as by a thunder-stroke. What might, +Worthy Sebastian? O, what might?--No more:-- +And yet me thinks I see it in thy face, +What thou shouldst be: the occasion speaks thee, and +My strong imagination sees a crown +Dropping upon thy head. + +SEBASTIAN: +What, art thou waking? + +ANTONIO: +Do you not hear me speak? + +SEBASTIAN: +I do; and surely +It is a sleepy language and thou speak'st +Out of thy sleep. What is it thou didst say? +This is a strange repose, to be asleep +With eyes wide open; standing, speaking, moving, +And yet so fast asleep. + +ANTONIO: +Noble Sebastian, +Thou let'st thy fortune sleep--die, rather; wink'st +Whiles thou art waking. \ No newline at end of file diff --git a/ML/Projects/text_generation_babynames/generating_names.py b/ML/Projects/text_generation_babynames/generating_names.py new file mode 100644 index 0000000..79e028e --- /dev/null +++ b/ML/Projects/text_generation_babynames/generating_names.py @@ -0,0 +1,144 @@ +""" +Text generation using a character LSTM, specifically we want to +generate new names as inspiration for those having a baby :) + +Although this is for name generation, the code is general in the +way that you can just send in any large text file (shakespear text, etc) +and it will generate it. + +Programmed by Aladdin Persson +* 2020-05-09 Initial coding + +""" + +import torch +import torch.nn as nn +import string +import random +import sys +import unidecode + +# Device configuration +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Get characters from string.printable +all_characters = string.printable +n_characters = len(all_characters) + +# Read large text file (Note can be any text file: not limited to just names) +file = unidecode.unidecode(open("data/names.txt").read()) + + +class RNN(nn.Module): + def __init__(self, input_size, hidden_size, num_layers, output_size): + super(RNN, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + + self.embed = nn.Embedding(input_size, hidden_size) + self.lstm = nn.LSTM(hidden_size, hidden_size, num_layers, batch_first=True) + self.fc = nn.Linear(hidden_size, output_size) + + def forward(self, x, hidden, cell): + out = self.embed(x) + out, (hidden, cell) = self.lstm(out.unsqueeze(1), (hidden, cell)) + out = self.fc(out.reshape(out.shape[0], -1)) + return out, (hidden, cell) + + def init_hidden(self, batch_size): + hidden = torch.zeros(self.num_layers, batch_size, self.hidden_size).to(device) + cell = torch.zeros(self.num_layers, batch_size, self.hidden_size).to(device) + return hidden, cell + + +class Generator: + def __init__(self): + self.chunk_len = 250 + self.num_epochs = 5000 + self.batch_size = 1 + self.print_every = 50 + self.hidden_size = 256 + self.num_layers = 2 + self.lr = 0.003 + + def char_tensor(self, string): + tensor = torch.zeros(len(string)).long() + for c in range(len(string)): + tensor[c] = all_characters.index(string[c]) + return tensor + + def get_random_batch(self): + start_idx = random.randint(0, len(file) - self.chunk_len) + end_idx = start_idx + self.chunk_len + 1 + text_str = file[start_idx:end_idx] + text_input = torch.zeros(self.batch_size, self.chunk_len) + text_target = torch.zeros(self.batch_size, self.chunk_len) + + for i in range(self.batch_size): + text_input[i, :] = self.char_tensor(text_str[:-1]) + text_target[i, :] = self.char_tensor(text_str[1:]) + + return text_input.long(), text_target.long() + + def generate(self, initial_str="A", predict_len=100, temperature=0.85): + hidden, cell = self.rnn.init_hidden(batch_size=self.batch_size) + initial_input = self.char_tensor(initial_str) + predicted = initial_str + + for p in range(len(initial_str) - 1): + _, (hidden, cell) = self.rnn( + initial_input[p].view(1).to(device), hidden, cell + ) + + last_char = initial_input[-1] + + for p in range(predict_len): + output, (hidden, cell) = self.rnn( + last_char.view(1).to(device), hidden, cell + ) + output_dist = output.data.view(-1).div(temperature).exp() + top_char = torch.multinomial(output_dist, 1)[0] + predicted_char = all_characters[top_char] + predicted += predicted_char + last_char = self.char_tensor(predicted_char) + + return predicted + + # input_size, hidden_size, num_layers, output_size + def train(self): + self.rnn = RNN( + n_characters, self.hidden_size, self.num_layers, n_characters + ).to(device) + + optimizer = torch.optim.Adam(self.rnn.parameters(), lr=self.lr) + criterion = nn.CrossEntropyLoss() + writer = SummaryWriter(f"runs/names0") # for tensorboard + + print("=> Starting training") + + for epoch in range(1, self.num_epochs + 1): + inp, target = self.get_random_batch() + hidden, cell = self.rnn.init_hidden(batch_size=self.batch_size) + + self.rnn.zero_grad() + loss = 0 + inp = inp.to(device) + target = target.to(device) + + for c in range(self.chunk_len): + output, (hidden, cell) = self.rnn(inp[:, c], hidden, cell) + loss += criterion(output, target[:, c]) + + loss.backward() + optimizer.step() + loss = loss.item() / self.chunk_len + + if epoch % self.print_every == 0: + print(f"Loss: {loss}") + print(self.generate()) + + writer.add_scalar("Training loss", loss, global_step=epoch) + + +gennames = Generator() +gennames.train() diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.0.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75b51d64c32cbc5ae2a0f9920560066316663ffc GIT binary patch literal 13385 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

Zk2&fU?8OrsuS zmci&UTic&gmtN9*W2M^JcsE~+Nd?8MP%Jox>h?vBHg_et^4DvyIXHC(whx>9K=|K% ztm)Did>d|J(<50GqPFsGE||p2xGK3AUE8*tW}ErJwj5+M#) zIN4|NlfY%&kDnFEuZ^^y707g738Xew_xDh>mYo)@xZFgOxQ^5zUy*_{1wwvxT!Y%Y zd;S@t;vb0bV(~@Kj9xp-9Z{k~9ftklHDa%TKmocD$m5*XTcmhjPxv|EJ8ef$*I?Fe z^*ecCx{0*?hfX7GOB=>Z4UOif0N@nQUTbvV;+$DB-5VYt_=Tm~{5iCW@8UF9x^@1e zb8B~`MP%{K84^Pzr0plm46+tNbLKQ9200>Mh4yLUcw*PDq`hzL7Z&E>gFKS~ADg`& za^g*_RE%SD4x}35-@>C&vxnj*iFKP@SNk$MiKo%$h&-yVBge2KWUyg}$Rmd;K?jXb z4*X}fy73%741&PvwihtR6_w?Uq;l*`?hUtT+RD>0P!w(|SAmu{7$&X`Eg3#0ZySHY z-nKUzC=R z3qh^?L%q1wwJRB-vRQ8>lI8?4Z&h_Mqk=;WDq#8mD~R|v;%l3K9^H7-ceXL#YSWo* zuRchwBN3b|jfTKhO3V0r zp=;hMhSO4$P-aU+5J@j7=0}YAcn5~b+*{urIHuPuZeuF3ld;@SKDXlU7ENUikzwS^ zBTFes6(dMPpWU>i7hU?4dE{n+Q+Gq*LsRbz_MHU zW<$H>`2otE*>1f#p)0G6E6GIXbe%feU)ChibmEB`$NvBmN&L(qz<-->BpmI@9=$8q z?r$_L7r+l?YvTFhg4;%dNYzoHV$rE)MgfRqU@#fF^YV_B!^fuhbHTbpMXTx(%RT+N zt2MsYP0UFnJw^&I{q^y&@T0^CHe&x-nf`&ubo=?Mx;F?j-mx2VUxc0L`_J|B2X!V^uT z+X&^rTbsR8R&#wNz#Cp)FNRk6(Oc&E0A9Pe&ev|WZyvR!jh3OO=@VScj`4^AiUS*O z7&yUZY(D^d=dE%H<9&DGCx_QZeF_mh+5;8Sp^!^6sbctSjN>^%FsGrV33JBmBN;_| G$N$+m8%Cf2 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.2.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0258c151cf49f3ebdc0695abc56e975d2a3227d3 GIT binary patch literal 29631 zcmbTcWl$VX)IPenL$KhIpuyc?AtXo$5?lfV2*H8}cL*+v1W2$A!GpWIEbf8eyDSoX z7hPb1Kfm{_y7$ZdaPRG@?wYCTnL1B*&zaNDc^>{gKmkwQsHm#|FfafBjK>4;umVs9 zU}F4N{%bM+E7(~7wK&+=SlGBYxVZmQ@d)s7@d)s6aq)@p2?+lyk7vY0gv9?{{P&Xo zeH0T13k!!34;Sx$y8M4?9(n-e_y8yXiiPnUfJu&lMUL?>0AP8v6X$=-do=cc3kD_@ zHV!V{qZvex9U7lJnvaF`Xf)2F#gDy%9`6IN$#E#22`k}JzO%x6?oK5VmXeRp_OiB@ zT6YG)E^6%&PC)pShL(<=gOiK<1&^4xgrt~eezLQ7 zaP<7*oTY5(3_a9lm3JQygOG?Xr*VQ*PHZ`}jw)OQ73=Tnt zM@DDo=Km}#{#{yzZNj&wN*p#2ZB z|98N`|9>I-zkvPUxRwFLSQw9!heZwm0^q@TA-yyW8*yN=25@39{oSt%7GftOotC`y zm6r~A1U4zZKGYF?wf;@O#g_DQx1_>%<=YP~rMqBj_U8-=`BTXdH z*6*#K+yQ)nuU%2w=RDfB&e@qeZ3gBkYwm5AVf-tRS z@a1|t*CC3GzhqjJ_2vS$`)~=I>~-*B<^$=hDA}5nHYJ2(Ak)Q!Ec3B>OVzj6?jb!WFG^1apfbJUyho<OE{O zxHAc7mX7ypEOlhzA@*csd(0dijm@)OLChxK*W>l?;BVr7Nmz%(Gbl}Z&Xrb=KL8TI zL|tO{lOf~^Bb)XDeCM~>KS(1h*r?<7*sMYot$+6jjpntt8BJM>q$iZ_=?=;01u@q; zb*EgKSa`$VKS0PI|Mi=AN1v&u7}@5-Pm8 zv8(7z%p!8&Qq^9_>M)?4D~fxn|3!xt3`oA*zuB(ytbU%;N0128So04s{6UQtI|13U zWt8OWdKrf_NdM&krVM1jtt=T;56CT+#;k!;a4~4hO&^F> z+vevuT_cmEzG38=1f4gdNos0wuBI(W)>k{8V+x~Mjm>~b|k z$E{4}2TIR03f|`&OqDwwj#xJ96{CdVmgM)7-A|whJJ1)uLvan+^faw`+aGXY?&J?8 zNXpaNwPbuLNcG-Hui!ES1_7agB@U7bY;$~#48>2BO8BQ^MwhOw8Jfync)l--=wpO> zT1rg7s+Vr>2{jS33n%v!o`w4|j_t;d)3S0ubX0m7e&fAZOkSdm zUj;|!mXnxH%LW}CmYdy657J=6VJx~EpL;^QO0y+2M)&mc?4QK7KR?yq9x+2S4h)5z ziOy=*SFym~E|%S|Tah;K$=1#GH6BgQOZTTgijQFkZbJv69RX}YL1%LCf?J)ecBI!qi%XU!mB$4bKUm*Hu^~Z z&blyPA`w5B+PWE5f}4;i{=&ksHQ!I?bzX~>VsYWZUDRnA9nCEV+(e#fbL zS#KZ&QRj8!uw&dX;lH{f$BL`OSm0YB-L-`Rix5ZaU?!X)b7>(mc5EZ?`t5T*HcD!!3{{valxBBDLN^ z-GospE;Z6YOS5HUW2W<7^$(C7-r9nw?yaM1~POC%W9I=!mjc}@M#B>OVKLwp!|yX6t<9F#Xw$} z9O`KOuy0>Psu6R0`)-Nj=?17y zgG$D{@1=!O*~&K^h07Hb`@O@UzoY4z(A!@p>@dUE*M3l&f1cp}Mn9h;bw2-)a0Wxx z!=|L;*WWl*C>BhVmX+kFm@oAAl=H~OM7<^w7O|CcQOR;$jUl+sqxul98To$)uyJ^4XNHUb<&=Y<{vTmeDj})opdTnSPlmT zjWn;F3)RAepYyQe#BaZmrS|AGj>f~H{nxJe?)`4hoya~}^hmM!3T6|{;^nECI=5b{ zAZP5$UFl&(&nPS(EvbXqCrB7x zlV$Y)AP{*GCzTM_{ZI0BmxqdijtH5q+Hh4Glx4{H%gNGJPjfSU`fvHE$S;@aRf3Z0 zWH*f12>>A@d4l8h^r8m<4(D9)VlbYuuY2XDFLZH!%!}51pLux`D6DRwW~2nVO!D_U zT?|#gcf6T8EQ5AGF?AH}l}}3XbYyFEd#dLumy-TLIP8=>;%?S+62rnnUyyb`0kKcb z!`(c8vkULc*?1C+;TwL?KP!|aI{y-&t%B6Z{x-F@Kg(^#xV`lgRz&;?J1#|xaKzad_^Jx4w&C{^!I>p!m zrJNSt{TEc;jAE&9l+0|pY;%pH-xlD%Qpc&Fz`;@C+L0qGvG`j}TIugw_-o;=Ys?JT zaS@dMp0eGa1q^IZ?O};$sVPZJprH>yMf91*ZWQmQF1P9=yos4Yl*5$Rx;) zbtc zPYd2{Tv(PJZ(pyO>IX#{^E7Ozb6g*HsZK85lc5%G@lhAST!9Qo_A7tqRpYL?*kn3_ zPwaAPibKMau(=g*XE5IV+ykJ#8BJ9J3$!Ga3n=a_a74cGblrK@TK}y~zXimK{@R2U zmOAi^F~U-85BTKBwK8L^vZ*FCT752>31436W)aKo7U)~uxACN5gAvWs9zdc(gxYON zP@|@eG921sJ>rmNlJ~Tbq_AD$^eqq!cmE@H#I2CAB)%q37bTEq&iJM>V?9x|EwdAE zJ7~i;D6ga;@H0vh3BHv0lg^^;O69BKR2(KCz?WOO6@#hvaR`5eu!N1nGl5YTMFYF) zXNfn(P4U`Xd&-N_wc|M7%($9X?#RvVwc!cH#O(Qup^ueywGm<2P!iiP6}?FBbHwy( z?m=zC7Mh8lM*>FxliK<}`&@qOu zhP$VnSXyaQhxS2jd48XomdkQ2nVq$6jR_=dPaIv|3b0U|IusY)Z%{qF-?-MZ9PEsuMWtg++;)mme^7Wsp{f*?Bzq#X` zlq387UV}9QzsrHNUqDGMNybA7s|nX>K2X|O>TbAgb!lXPWU3js(Dkm>+TEp6+uy=W zkli4}L#}34zVXid0YC{Hpx0bWb21)}(pkJBMLRNnx?c zYvW$UcL_LMbtxc>27uAsEeoHIikh1nI+O&UHh`gM9!ef#t6pq3=|R3x_d)AtGD3Cr zI}U4HJ6#jEqO(OWv-{uZ@A{xSgLDs0|K3id1~}Brl=CJJII}sCr=7zus`2m21(PD+ z{4_?l+8Kit@7oyx{RWMnxlfMnk>a>NZcXl|X_{&W9d4QTZ_)=Okn!1ti_e?YKVoQ5 zC8%sGdG@9Cu-bL{H6JMvQa=c2v@wpIT;S?Q4iVYjsBDDjMGb{+#P0iZc{jN}PE)vR}QP&1bB z%)~%;VW|$jVQ>fQ-jy^V!2{sHfCv<4iO|7mPx!Y{4~eXlL!n19P6mp#g#cJ!m^{6L zg0=L)%2V`b$W5cLl#1dctRcre0iN5oTgPm?hU(mri$IZY$82(&YU8|%rFe}Glw~S^3f1fE=L#iz z(l{%#tNf!1^H-tbHSsDAgPYna!H`kfNHrtMvn+VSw4@(Q)(dNuBVnrB(^2^0BPKfG zzE#1~`!_afR%zW0gKr{X))&$TZrX z<3Yp?!P}M>g_NzD3|vY_vYr*Tr4-|bt0XFV4sCo-Xt!0|wf39{j6_gEqmTSH!O?BG zi~ZHhMq1MiHs$M$6NTPpC6pXfOFQ3KL9BAWX?b=XyVPg{z1S`l?#gy`ysB65jLta6 z#&4XrMhUFif4AuM?vs7~pg;Ld{|Y_g_Vwf4Mf-kG`2zqOj09b7B*@vqxQyKW^8ej@ zkDcb_8{;_FwPETq{&xE+$HVKk@_yVd4j3-(!BU%N*@kTi zf7>iIgry2EV&w^k8&ggjtr%uXb~MSwywv|UD7rhfvPocj2d;AdQf@`PtnJJ{Klz3) z*nITl+Qcnb1;XTRA$lw3t85m3`Dyx`sEFt3fuRU)&zVh-%63Gu2tJ$rkmu=Tbw1F6 z-+LJtx_no;DKOa3nrkA!W;AZkPONeq%7f`ofx5uj?Ot-)>`>rCy}aSfwoe`_MkVbN z%rFYYyw%;3*k*s~+DJJ9$C?F;e&hR*8h^R|QX8SszvshQ6aaHlwR>4fWk^1HcaKbl zZec*Mk~~difKlkzzyCco_0BBZP^HdsrPARjG_!f{_B&3l;aynbZ_lHJ+|47S0nYXP zo&LciX9nJE_sg6bd;p))zK6EbY?l!Na+HYd@1H?sYtN!jC@lAu3zVI)Q%6PO_KA31 z3@kIzy6!wF?)aRFjU1!O4HtK5xvGja8Hd^lSo@~tQImWy??!~f=nWK zi+={W^1Lw;M|$?Q8B9g(qSTQgeZm&@H~rRYTkdUi%D4<>bacFb)DGfyfwq>*APeLJ zAhOC!kk0<<=Ji?yMoCi(;mq-}Fxpb;y6d$51st!^H+pDexf;SkBUshYE^qgG<~-YA z%)Bw;x?YG_(a`*8uP^70m+`HEN%` z$911%N*p~?npDTO$vIy!myB<8#YT(HSMmqaydbw#&nLFD<=d`*R|WW36*CR%k}{mRcH1E(`XtD|_IEe|3>YlViIuRkkCu z;yo*Nxqz88Auf*3yRTVSMf!?MOu0f_yR&54c@<5|tdrY!7Q5xTDRBz%`6+d5eh;9LcPsZ?$fZBYHyES36Z&iVjQZ?{SP z?p!59p5s2~m%cop;2xGu?TCQ zqI+d{3}iL)`zYVxA=>@9NsXzT=rw}f)VVUFyu{)q@o>q6Unc&V$SAO{Q?frRetCsG zk4-mbm%E13;(e$RlT4ETg0I?}sQS6-9Mc@Im{+%oTORjfV;Cd9_;|7s-!D#l5tRVs z)b)Yk1$lvnZLvMbx2~VDe5YYp%VRY!gz?VmG>&tQG4}{UtNvXp< z(;**OM0n>^58{EPY*^s3OFHKFTEck-ZA0ckI`jF8pC} z-)FLhQ!W;YKP(#`mO=Dvmz9z5PV%n4s4gymXiX3{n6v2PJxRDaJg1gG^MN^{8>>p* z-IClFycseWBxusr)P@RhNnR07l3E`5L_wU~k5ilAp%357I(M)t+jLO<>mX}t<}tR| ze(3i%u%9xlS{9O(({-_TQ&n#BxN)!st!OAB?~>9GnFDEWms8f9O3YnkKM9$YGkAY` z0A$1zJd4HXfo6;vmY}JCZ?n!|j7Cx^Z{1eai9w&($?7PdCu=L3@_hvTlrw_dOU(p7 zbI=<>YCv;@#*@L4`iRz{)81H4?p6jBXs^<0p?g@|g$8IvPvx#a0n-x225Ei(*dY0y zdItTVXN~u|kM~F!%zXgxWsiO!j}jrK(BkbKfPJbZQ6WWoJN>qs?xW(>OX5t(?3^PG>SO@GZx zD|Nif&cZ~h@tI!_fTA*>MDV+>%f?>-XAnlc2Ct;u+&BB~Mr-?@?#F37oh<7?;a&_j zVoe!sIKP-C4{O_>bB&hJ$remPyCnc}#0w<@WB4T~@lA&E09=jXFY-z`;c=Z?%Zr77oTA3MRUmax-HM&LL@^5!p6zhV~ zvwxS>aXA*fLg}c~BIql&Y7QEhN>UPbv1DrkVxMk7#1o8gHhql9SKct$l9yrh3%m+b z7UCmd?3T+ZLD<{Am}vI-140?WBoP~EYP{FUu~<`ZLGpe-K2ef*>Y;Cozbguxo{SJC z`ybPa-;ix;ifVR$TYkS*>YAncDLI@Jf7!?8lsO$anL!%;NMaDy{1N|o*3kB+Az+y3 zdFN2Np9=v|4~Z!2>mj#&5%rN9}$y!O=Z=^t#TyK;Oe`4$E8^9`U6M7}&5A>r&WV{tz5I$FFMs1!lEMBe_VMeI1K=3NvyN(4b~NRnRHHX#Q|E5ontqsE+`L z%4x&RfX(UMAmcCD+8wi-$-G4I=~k3uFKDmB7`~;2B}K3lY&5XMvenN8LrN`phnmhb zIQq*b-#lY5I$@UT(aT90S_MM{>6v7WQCFK|4E&}qLK?j!(yg7xqD5MzhS`A9mzy0G zec@Y<@;=whLq^j2)hA$$Kv`7l<_XK5oi@U-QBKoshoQ7EGXHJa@Yr^g+A`@X@s~Xa z2J-mUX!`k6Q^u%gjKb1C@)awdY8KU%IM&iJqW@eN9bP~gT%$G!&dW(;m9lmIus5oA zH?T!3C<%eSg(ag1gIz?^2K|~^Z)H(z@C{I)a?$=xgerAX?#{?2KKom<9BG4P1;Y^? zGDa8nONbbwUV`pto=MVfOko%kr|<`DPBDT8oBDl<}bnFDau8-yfeJ5*%5S-KxBXb;?Zj z1ye-rpYGp%`A+A|HQ*tWnY`<3p-eS3ZB&9%h8hh#W?A+xf!H5T#imG6zA=y6q|qt?g$5C5|L#Y__Ikq5n-^fw%eC|jB;mB=kq-7;+)$=ZBJ#}~oVkuG(+ z{-a9T03;C$)O%yVsM~rep9F?FyY}>HlUQ=B&PeObwD3)YokGviDl(fD4n7u4U~SJT zr7yDuxcUxnj&xdZ+{2}z!3Jj~VQ7cnW*VLk0Q?6){JT`C5I;J_qW7s%hO)J@?JRg` zTl=@JziDkmnBr22Wf>#FC+4uKnVd{pmeaEm*qproF6WA~FN#lsFF~0Dkp5cVlD@Xw zs#w>;x0O46gX{XX&NI#~9zA)UL!y@QD9_96*-AOrGHw5+A9Kzl>4lM!YQ3UkF92J_ zo{KD|7lO;#mnA6qpMet2G}_45dG%#)c0@}|G?Qt|p``$@mWcl%3ez7$31tvU~b|4MSG2c+ypdBM4=An#<4{PZN ze`ONN(%+~u6Dqq{^0hpsKvy8M)4QVDxnqhV#K#LM!konr}`nfCkOcO*mMbU2Wo=WX_u29Oq5a zk@)?+dNl3i%xMr*vAXjj1oOUsF=MLS!Sqj6tlRfElZHp~GJp{IcF2;${f5#E5OwX5#WV|_l8G}V_Wb(ScWJ}Nwj(l~MPr?mW-|4gHG6Q}yLDLd2KaqfHD zqn={aa0p2Nczd^+=_ch5G7;J!;HQwNF<^KJ>d3C-<(d4rx9Mc7Gov$mUB~gtD6hb7 zI%vFy6u?S2fdm~%-U_{TmTw3l|5E9|fS)1b{rhSq&NGGBb}Vnnz(vNp@>#N-X!+qE zUUBDT%cRn+Oln&X=K}kGtRgI`vOc=k?t?aOK&~K z_*Bn!jBn5+3^?^(=Awtm`(LIGi^AW|s5w6Jw0kT`%O$JMxgVruU3Wiv;^wIO5_|7F zCX^^bRQFFR$BN6`U-jYvTxiJlFSeRn$nlk2LTKR05ST8+=>ZV?q_c5A#wWUAZ)b_W zv7svv$+eERVN9%5ohB%o^4(MoKnyFREiTa3-JGW0jV)zSOVSwPRQ4fsU#;b-i<szAi)pxn>tad-p zt%@!Ji%st{$u8A>I)odz#!YnJKKbn(T2$NaM(hdEkumhVr%;FjBPy5vZn3xJt>N3; z_JJ}88N(S|-=3vSuA``tyN7s%Ybc^k?EzZX4t`>l^}Zoq@5sX5r&l)vA2HY@bVMj< zNh^9%g?JAV1x~c*Ty+=q!}qs0Lt~#?Qy$lBt8Yc*1)K_7J`3bWiWi67`k*#ohltKP zOJ5)3KO89n62G)EFW-*BvZZ%E>y!VsN$g9hUj#Ls`tL7w25o2^J@%L2~<2sDF z?z7FV>_@FmzVGp@Hbql>iDOlsS7+Z_Wc|++!je%kX*w=C=vj&-ZXiF()ecE{nLLB$ zs@NY|Snzl~29Y=n1m!@HS7drwh;kzXcM7AuYZm3O{yR$oo_1ij^5qnC<1pptKU1Gf z7+LIs=)RG}y_x-)qfT}NE2!{;#_;y?)+X zw{5PkMupxIk{WlNbR!{KQaHFQM1cE)@CG-S(01ev zu}|n)dm`;hHJxz4@gg#Qu@9ZqxF2{eCU6>wAHK_C}P$HREx~Egz~M5-eVa z)J{NiaissL9G93`F|+VXUBU0@`=>VAG$Sori&pfm?tB1z>Ry`a3&9GeOr-nL+BHK` zc)Dh8{???>$c9Z6D=*mU+WViNFOez@eZ_LsFOtO+*$$7PAAXittTiJedczRe*8!3} z4}efl)D4O1K(K5J<=@d0VjUUEF7XefK3+_<_Y+?8iKa=zJLy`F8Ad}@_)Y!XcXCm&J?-tBmy_EbW*T+JyTlT9I73rfLNN9DMp75efvI_JcYpQQU^*vMv!DOh zGYGo_#uU-mi(pzr$?1eYXb`l_Gk58RLL#xCf`^@m^1dbs3;fyqKY?~tmP5027QT6# zQoo|Gm@kRCy|0BNxqG%2zXp$nAoL%7087&egh?4DKJ_&aBY#B+Yl1Ytbd7=S%k#d& zD4LXkG+`j0<5u4Knv{%q?OZO8u*a7_YfT!RO9t%e-0cD7`FmhupxqRs@6%<=BQwiJ z@qIp5Mo*P+$*q>xLAQ$RXL*0iyCe|Y(~VO60#)qICRUg`2KphH4nW>B^g+i$m&krM z&iR3+wk5)9UUz?=*B9FOJ)u67>e?j%GvNUckXyoN-2zH_05nu4rDLC=(x6vyhEfG* z#aWOyCgCn}9*~4P8G7VhB@e>0z`NQtOJe(5VG;NK>?g7)c8#&UkBF*#Y(Y<#m`bvf zdl(Sn-{#qOQo!!d!S@dO z;r^8GiX=de2-U+ugsRcp;Q9E%+y3z+$rh1%At*N%7fYl!83Nfs{umfYMDi6xHuX~} z%Ka4Zr#zX)u#kl&s%+@ZJ#U?EZ2#fBYt70#Oee+O<+q!cK7*=Rt`Nf-MUGK4lP zWjaVa8=|no8fw|M5-zc3%gK0VXEl_iZ@DX(i}42JO>dleV2uo!O_8sn*16xHBNd0C z86l?EX7G@qu?GOzB%dH!-LrUEM22I&%_>zS-**(6HYwk_XQ{V}R#+6D;MDXnpU-KW z8vn(B`Gzs1k*j&vQYd)V=&1r$(kHN%O!4&(i$&df&FbMT00eLT0U&c#^W{LxX{p+G z2*g*MW@Mxwf!v5izxa)c+FUdb?>7$rcOCDJ``ke^nRF0;%|Gl6V?wV6We(*Re3Ny5 z1{1#<7Y1jjxd=Rp2}xf?uzDRF{>)jl*{uG$PLGQEwD^T2c;jWO$d6@pVgE4ZZz0Wv`a6l3p1Q!dUUtT zw0NA%G|e6WoPV!s8r;RX#_&qAzIGD`&Tl$5goN(x&~?a*fBgy7wk@ChnM9WHZpGtf z7hG*M*Xxd;F;fz#hw*BZQQ>|c^Wv=&0jI^Y&Y5^}X3?djOE!Kk5_fNNe3)3-|Ic=F!>Fu^+Q+4X|ag zz#UR}gnzLkrX`i3)@bD@{A-4|&56y>%I4!S$^6kA&ms4eRl*Ap z2#nWl2MpCS+m`_2J-yy)J-wfB8;j`$*u~UfMx1#R!c!)EAqiY4D|r0B&vK%OPBB60 z0(Gt=UD%&c0F)_T5n3%DLU@zMvYBH<0fSo-e07hwb#bq|P~RAXDL4rY>5R_r%_l0@ zR(^YOd$L^ohbITugG%_+iQwC*B$E2(7z}Gd0N64jzeA;OM4wEMNAi$z?iboNz>C!aW4#kIcbxk zg%Az1D@!gEtINx8-o=`?+8MBtL)ci6Qzg@%8tdN+kS*)#=dNXcE37YeT`1EP zjuxXddS45A06Y&aegO0;cW{-UGJ7l-=lTIxCGQ$fD_1<8cYdw=l{Ugr2%?h%z^B75 z1^YIrdXZSLq4-S=M1O=hA2!tbs;#_5+^DG5&j9szmiz^PlWy{l!P!^3+{`i?P< zuKJHde)&_W^qagvzo}9Q?+V@1@}#Ry?g>iZyc<;aeUI9Y<6Y~GkBH7Luy9I5cQ$5> zi9e}=((2=PD(`gGv{H!9jfvOJ6}Xb+9rH;WbeCK)!SGX& z>1h`oGRIx@kv4Lj>)3c4%Xh_x`G9FsK_zy1KW{ z2i9yL@3CMPnb*FXIDNsAClOsiZvlb08gH*(AHGdPlZjOzy zP~Y{X8{Ssi{fWLt8a9@pWl^2^zG-S-Gnzz2Dn5^H@Z@Zj9n(c)!{;xm=UGs^ETI?D zfA{OmOd*ZgV-7|;X+(^+p%5Kqk05^=>g#l*kLCtk6KjIK;z-V&+Pw5DyKQ(vZvW05 zp6Rt|-KEsX>&oMxDDt!IgL0q-&@R^!7IJif@KJFRq;v|#MuA|O3i3crB9t*)|8pPzd2M4tgck!(xJcz3@g1l$s0^Vo#LRJ59xS;W zsETBc+*w~S6Hm&;K26M+!Tw~E_cPs^H;wt9u4Db1yPIn5mcDQ9Z*;Ngs7fQ#AL} zZFzBl8bzo{D$S6$(IS2s;4jhF*%aKXR5=NlWY{(~(5Xn^2Mxn0zUduK9y~S2pxwi1+a1FWC@~^qwk^y={S*e0_cG`KlxNc=@idIf@v- zo7;)^mXX*{asY^WQ53nGc#H-@%gqu+oIKdfRALlUqv^1_rZQ<+?>tCkzB#~ie(QaM zuIC*XI<>d@#?I!y)61c%+?i5A@gmMF5s%za_+1fN?#qEZsYGUf8^=kX9E{WVfH6KKcH1nE6`3G%g%Xmeu~kVs=tj5dOeEv9`1eHqRm_^!gygrypYBt z(_MH;EPtamO`y8dP&*laaoVo7J5!R%?pyMvm%_bLjBaX!pSeO017BF(rF{_FosWxZ z%)9nY5en4 z1je(l)cb#@1MqG9-y0UcnlIB?E86HdUN~OKK^~VILc@t4OU0~Ga+9+FJN7DY=~cFn z?=^t1Qz5+`3S5#^Ml4icX18Bo#8O!1?HqeaW0f*8lI1h;E;NQPp`r&TaLU@-YHE@b zFGo(ra?X#E{q`bEY3L!*4J+IYX3m7LqC_<-_V1sj{?uPDYB6hhe_KnEnR799^b;Hy z5oplRt})(=r4m-XZLx0us}9c*>No0TX}XH+u-XjmVn;NCQrC}{kNTFz*#CN%D3P2- z_M*#=LGf9NKaO)0XFsOVWk7ib{?g)jrcAkKUDLp;xZg{>vQ+3edMTEaOtp*Vgy-DJU1DAS&)pYP=-z7kSD%aUSjE>^Ik#UrWt0Kg~2 z37Vu7%Ht)?e&h6e_TUfw^ti)^5*~wq1E`++QD9{S|Da?+KMnuEejq*cV-Tad2jyaV2+i}k%0c@oXy34kE z5Cnv4PD=(q|AWr9wS1xLr%wyU!akJ#1Qfp5WvUTC=>lWv4G#LfkRm&}R<_(J^#VjL z?7SGs!F!5?(3~m^v7!v9uxqN68CO?^WjttdQM3$H#PQ;daJIRAQGh@DA~Xp5F}epO ze8}~p*g{g;j!@8BzDv%BpgraX)ScyOLf@Tl$!2$lQyg{IBgl#fOO_9 z3@Mz)u-yqDTs7DTb$KU9psFWQP_wb_egerqu5)so<)nt6={k-f7dDR`c=2v{l2<6u z8U_BT%}#S^y+dHF-Jo7FT;55=$a(&`883Bdw^+uA=`$!g*M8xWpZl(Keesc0u{#w= zvQ^^J5^}jM;SDCmKc_t>QP?$T>})~#3uJIO;NQ>ihDu>eW^BCR14iTt(WIG^{y=6! zy0B6MT=DmW|GrG@wlQf4!^8UUEXwGv`11w4(a$cb+dh}b*sozM%*Vm&dtXJ`p@CKM z-_yPmI=1K+Ndi~v({Bn)CHx*;cd8@J{zMut)DNP((N3exF*Ivw z+yQOUb*^svcN`g5PNuGv!2j+pyAf45wFW|Q$N7f4F3ApbG0nnLxt;TtQ6soJ)-`K` zyu{oi&-8cQ0GHyH_xOA8(#DXb4WsF*<5*?}ljB7eGfa&V763H_@VPR1tNO?XCzVk^!q1b`OGV3^6rG7R4;ruJ+bYQqrhz zcU*A-r(*fbL_1^hn_6~e?Y_xjz3`|KLZx~`1Dl0enI+Qzkr%QP2-F~=E> z3eWFyb2B!}!0iGG;hx@SAe`610)fsbzY4AaO@=q1*Y*<`H8bzE{`Fcf8@YXA3xm*3 z`Wu~`96gF(=()n}+S+SVpIp|R2x3ZHoEFG_rHAd-+8GQvtjmEWod${;f#+KlTO zh+9n&2UG7FZ^z~;g((VGfC%L&)5^==zlD8xYRf5bd`%L$A><@3D|X%K3uW|PY`h-j zj#K#|RvSyZup)5Omj?i~$wpIAkXI?6r<$qSCIfchGg-fPQ%cG16G21>pG|O2$da|D z2Lz%ZSU-c-wkwm%O3bU0`(fm#Qx!Mbo*XLF4;t;zhL%L1lZCl0p{%tjm~>TJQv@3h z+NXPuQzaaTg(I4>cQ}-p%E8;_^n*(lxK+7 zrLWD`a5Z0)4rV#?k87vdZfGvJX7TXimfJq78qJll>>6`%kiDlcSo%c3fbU+Jg_MZ0 z)i`b1yV~lmNUWMUP;-V80g2p3Y~4`zbI*US{v!P;Zs#wXUu{}A#)m6PVSZiu#Z_CW9GaFdKmKuBoPw=kxM+BGu>~|D*eX{gd<3qx`t?*$s6{TJm z;RNQ3#V`XaTdG69?<0CfJN{jzi=azA6o(L(1}dbGzmy|ue-BI4b7 zO>M?{Ov5FUgaOx`4R>s;RNyjpoa7z1Uo zE?pT?yWQ>Am#{X`LF(bZAccBe_OD5`ze(Z&@VPD^<$0^XitrFMsF@ATn>(tzETQ_c zM2qm)$BqsddEzDeglZv7=HS1PFzAd^xC=Ei88&t2yUlqwR(0StvhxbS#veu89}* zG~cH@*|4Z^2?Z7iLMeiVD%ILE=UIjPQhg zn1jV~1bbe^0f81l<(mW@@8F4C1LXy1Nn{1*@#U*%t%!k4_tFGWXFc}CSlTeaq!uDZ z!P<=$GzS6&({318p%_~+R}P7w&#*r#Vv>brSPKM@mG{oEIrUO{e-5+b41c0Nv65|RMi ze@(TtlSlTWTS{akPr`d@F+L;X>A2)2PPmR(xe-9cI{yJ&XIIouwuZ{&1q-RaK zGPN`}`gW8Gt$Q5njB1_YFPpLN&IkV8NouSNeA3<)M!ESOIY=++2O`C!@UeYawN|k- zf|u|yAqW4SA0^mBlVzK@7$_&2oD6n5)Cl0lD0>3h-g3S}>C2?3 zGb-0oXb0MngUh4j>~gL)JLP`SH987ZF&88@>#74=`Gf6nff(QPs=k%07d6#s96Q|G z{d(`vjeY!Ok8?qR)x>;dRc(5u!yd~O)>2Y0LR9NIL)CY9P{ z{_|^DAqAVowF!~;>vrfVuvSfJYQ2}sVPpiFmgKNmbKUu+N)@1Y@lRiaq8;zM)kRmpNCuyKX4rzN6^b7^WM|-AP?9$9p zmT3dduo4&eOUBGba&z9f@fd!3ywKj~T`JIw+5S< zFEm=9+bZpMw}`PM!EKe>lEtKECD;(7<}Zmq6Yl&T`cvr9NRZnIWxHb$1D4znaex$p zFgpM%^s`9+0D?>DJ}LMK;Hm5{ZftH-z`9r3CkG@FJ+WR)XyYhV);cDA62;&u zQGBg)XnP;P&-f`9#eacX#JAR(s%mK@Vkorf;w)s3AnrIBL6MJM`LDS@XV3U5_rvdr znv?iS=fMUYKv*=4ZLgVDKvbQ|3g?0w*Y5j)Uy)kQg>|M~2h^;#2T(!a0n?n5^#;DR z{{Vt*=xM5aN}F4~w}IlgvoO5UxQy=eR16~g#|pcBI^-U;)lR&pH+A=%*!&h5Lz&*^ z>ZHFJEtA00c%#977`uC$Hc8OE!7C(XaKMniHVcw@&&iJb>ijkFGWg#~UlVxZ+*m>4 zB@vA&WCTY%L6NuzCxETbUES+9;ia9r_$nf|n1)X=RTezqa+&8C_sAcWYxr}*J_@|H zy^0xRYrQqn=GV<;E#?s6)RWkP3FC|oI_J^%BOBVs%eJ|$wma_*Tj@RqAMlS)0FXT1d-$%hQd6<{k0ZHIb&jiS)}A)GoAXF7MO?v$Z6uW2Zdej1$Qpm2xVQr#tj! zlBDFVZBMN{F|BEyCqb%4P{S)=cHBMvD}MUc$_sfK0vB%sb6^mAdm8!s;P$=Zy%)vy z(B3P%t6l5{X%eB1J zJ$W2w9qY!c8dIM#S{{u#RZvl9OX5F|y4R01`;8Y+@PsyZil#ZO9^f6I_YJokj(Hq= zQhYV=O^%7Ef5Jfzha-mWNYsZ(K?kom2j8v+ed{ww@GY*3bso8KtF`2jqbtQFz6e5k zH(ZZS{`I1CJ1t!t!DoA?4DLmbdnP}iK7@*KsY$+6>}e`hAsgD~A^TQY=y#fQm-^k? z#{NdZ63e_XXFTm7lh>!~Uz6XohlKQq{8=rHrgpHB=UmDZEZrNOSs@+x%S9C z>!J!XR!q|eTCFk<4P@he5BO{Unb${9nH(~8PA?En%` zvjTC@u#Ldea`6_o-Wk>G1Sn(9|*BWmr(s}t9?d~v7igW#Y17Hj(#TS*PKj&w8;#SkuoeVHVX;05`t4j-Jc zUOsL<(D=b)bExT!VQnPBXA087g;p{PV;tkJ;a{J>wm*!7=~ucVB?;^=P2zH!l5c^qvl)nKSjKHBcDas=1Ck|nFiGi`;RKW zc!fCW!Nq*>`&DQ$>wmM~jpwn|8_BS-d#R+{GqpjK68Oq68@b0_r?q_@;@R!&v}s>Z z)gwfX)#JIkc`|LlQ@xJ_4h)2zaM&Hqd|Ufqe%;@)r-yzRd_?$Mek8uPs%st`xwO;l zv^!}g7jv6OQyR{R7wx4G9h zMz=<2{#|PQS&7;Q%vXOn{{UI}-}v*SCGWy-h_+HsBNWmmD{mQ4H~Ea{2Tj{LFS+V7 zUl{(#f40xZ?GNGY@9g9IA%4tvzA?Dcu9D&nV_DZtv^IOdCK-{U*yNU$OdFVs84k=6 z`0DO{7k=Jfw8x8Vv`>lu02ws@00L;2Iz_}2=^ACDNpWj4!c35`iQ)6qG9V&JW!kJz zINiFcF{^jW7XJVQJW7Iha$l+R@4-*nd-i|uN9@z!+wY7Y8N4^3TiodaD{t+e5y55* zR`OwDQ!^+nv`6xc=Xk;9zdpZjANVPM?78vl!G0k4CGe|2)HVCvQV6B8)L_!YHpStT zJ1LO1@r8^4tsg*0Vx(7R`vrf&H$P^-9%k*0I&77*Ghw7M63e?FlV3*sP52G)*Teq+2=%{(UI*~*m8M(YXg3jB>3UX~3>NDw zh^WO8018eQaUkw5jsPTR>GD%fS4e6h|UCiO@1ka_@y?!3X5z91spG>EHMz*NrZ9Pl!q3iQ=@D2rXO7nPP4710oXa z%zsLK#vLd7PvCchbzM40O}thuXkZ6)pxezoxG%uyAtSitVBprD>;>Z_ z@UOysCC>@81KOpUkO*YRJDr|~X^nmmx8V0X97a#&{{T9;nUawL|)zrMtL8@k~-I@&EZRpNnZZ`&&*iLy}E)9TwwE_gM(ga@f+d> znPaWV;jyKu0b6m-N-^xX92(XteOS|v*+u^V4)}Y+8jY+o$1G}KZOm5y@NNU0f3TVt2_so~8s_C~h0nr}Vg!1JA0fs=u_ z@&~8#uY~^qZ7&O1Sx8bXZV4SDjr_YyxY&i>M*tnelkO|--yA-LrFeSd`)9=M6u|<> zwqz`awgYE9Yx9faMfZigQ}GnpXs1wXbc_Jnt=whRfn$^^M<0i;HS1yLE9`U8_hi%P zaGwo4TOWaDyOC|9%%UB}?q%FIyBvVakE!Z2$G??+&_A@+ui~4F%?{tgc9!<);Q5op z;#n}f>_00na!BNm4;Zgb@y?%lpvxeOO$Ou2z@1g(EHZvh+4bj&`Mcre`??OD=+N>@#pPc6!>Xy-U-oXkSI+nP?7GZK%;8OIM{aMA1rEskCg9TuN6}P zh0CggcH|s8#JS`Y>0UJd0Ga5%U0M1Q@$3EzoBJp|*Zd-%3TD=PQ>e`b=x$yG zv$N~-a%Bsyg zs^}tlN;1l!K(|G}Z1L0eb5H%3KWE>8wl`4xD)=km%??@O63=s`=+HrsPB6{4ap};L zUmbtJQFUt{0DLIXwcQ&_cK-m1t}6-Ikyr?&wYX+nFv(YF<6In^WQ<_d(u^E^=6Ld) zl|-Q*zgPNxLijKK2}}D;{9UuP@z?FC`*G{uBa+5g^%?YSI%}zH+HKhqLe~$r*$gFt zSgqr1z5{WS=&Anz1l#?YbiWNv;XMoCUYHsyM>1XN(Y5^0%;-F~SGj2#Gq?xDWkA5; zu)BVY{gM79NAWZEQSfJsr__Y9Y914{`&9PshkV8Wk{#J28t03s zJ?e1ybN0~qrSRHaQrafhbUi=B7V@;AHb)6)ZU7C(GPvXe>5u>w>DKqLP2!pDXNKN2 zn|zR4#6J4q?8yYLCnTKi$DqI(HO(DNYV=F7`9j_T)^*R>R_9c_^5i-fi6^oVkf6f; zL{hqsY{`st8%8@l00RJ!ex9}9Kd|rZ68<~*cV~BN ztt_HcKwfKkR1ca?fij0U?%6&2*U%czi|?V18+|iLnrWwCJoxMe0O(HQ2H#`ay!=*| zTO1UV)iWpI{;jFm>g#o>&i0m8(iTXWvUadN`sb!ido`!T`^mgBB5A?H2o!}@!R$Hp zs1!xgS8P?ON2b{bZEs9rO6}UX-I37o-n=th((XJ0z9UDioZ!TNOFVahfJb?jtN(-`bR4 z-X!Q*N$x`-CkN?T_j-4T^*iFAPYlLZcaB21N65oQ*zeba!5H9iT6X$p#yuStc4=mS za~WusLPv6T=lNvTG@6Sly3=#cekc4M(lt#A;$24C%IzeCdAEyfOvrb1!RP+~*V4WY z@oYX5@aM#&(DcK33jECGb=7)1~{*W?AJ&5r|~9x?E_JLPQod08sn-E3lIUo^ya;MI+d<+LRM{-HQgIe z76$I-*9|h3jo^Wf`2N@Yy*yHPp`ETO~iEg|dJ;#Rho%X9JEbv?EQ}1vF zakK^poNxd+$Gv(udwWYZbjDJQZk5l8d`Ttgad|bI(S;c$;%wuA!C(peE9$@5$M&%J zkMIZJZTG{U1OaQPYg44ZZ+8zRvSEN!LA&N}Ga-l}ara5Za0%71-_o>{8K7(l4Z}*FLJ@H<=aP_^LRH|9`Cku(fVety4 zCl2Z*s$AAr`?fj%01|k+RM&Nhwe50isr5U%wz<2wx{$Qf+>%R7#fD3gPd$E}4SgQr zZ3AE5T1v_?RwHeKbL=pB_X4}%7FrT+i`{*QclY(KK) zYr7?hC;2CqR4OF}wWY@)qk^O7g|lupQuIlks6r1 zx!25KNCbZE-?vUX*WaEkk~uVYx^;aC-EwlfE+P7atLRA8Y;+ z(KM)@*HG~7^_BEfG=NGZj$3vGm5`Ni+X%=5JBArmm(fi+PRHd_llH3S@B9+GRn+Xi zV1EY3s7-AnLpG;p1hKyC?bU9gL-LH{XpaE&~08kIVgY8WE^tDpL+Uxv7<%lL#tXCLOyW}IW&&+u^80}Eub*mKQr5M=xdOd$w z@X!1egTfX%ZNm#af8piEm2wPQwnm2X_5SEPS9P_&2L~rcQJis_@E?jgmWiYO*53jCFimiQuDA@M0sr$`uq57-;00iRrg|1tC7t;h< zHlCBgZoDi>v<%D969e?GqV+G@7sTbYO~{S*>}TQ z$Aw)5`&r&djMlS6GSEr)x)MRbMZi6Ue5K*NXU85E@n)mo4~i(Z)~hjqw=u@+8?cUb zU``Kk2TlPbabA5KJv#7q-4)L$yTtpez~3KrOKoDq!`>m(!~L!WZRH3r^Kwb(cpsg6 zO#0LwBeYK9MJl()31EwqU_S55*nI5wRzPlL@ZvI>b2i&Zqf>#5BousdBYwN!Q z`1|d8W8Xs}YyeDzDH&V>f5NtSdBQ&No1Zh)9gmB2T|{`W*;>d_8)#xE^GFm1z&SgQ z11xy&>0BPMt4*W$vRG|(xbCi!aO}*(_(~E100!gIt^9J=bq^8vBKuX)btP;4I!LZ% zvwcm)oF4VQNrFbJrxVzMK0}OH)l=&91lBL0u802*)AEi|A z(48eXnNq1J&d<5@_Pg=tL9mh-wR@Ot=V*?>D`Av^0Vf3aBB1Rg-ZrpKdrE5j^Iy6{J} zVH(SDz^q_!I%7HfYs`%`8mDaP-E47xwRgoSd}n8IFT@WG+0VWJsi-BONfmdJGT-6r zUpM>()F<$tjV?6hvYD)I5Wk%ZmSuckjORGUIIlExM~Nu&i`##0zlI(v%ssm^YO!3##4UC#Rd08`V2 zq?Zug#_|a;7U=@B0zC*B`t`4zK0N4Jw6Ae>Zx!UO4(FBNGI>#yC+;e@9CarHuLKJE zD^;6HxnrhAim$(V$Vn-Y?l41sI3u@u;XX9@U9UVo@{L2v5Jtusq=>q+;QsA`Wt2Cr z8y#?HrBOnnV~TvbyB`ktpGUouPDUWC?Enk;;KP%S|HDW+qw6t66=PKEAw-^ z6}{OuKdKAHZxU!m8?QJ=a|SNNn8;k`Y3Drpd)Lo;>?wERyUz~832@eid!Pi2W-any z9#oO?k4?ZaKEBo9{boHwMSERHKpUxz!mNTmKnw}wf*U6sW7@m};%1|D;opiDx7PM{ zwv%5*@xc=&B8)cSzY0KayXZ!J>xm`G(dX4kO6SEt@Iu{Ae}#V;{w{nP)F&6NEufa# zYkACJ-ri{~q$;unU_N#ETkafZJx|=<8Sbwq(`3642;)TLTgdJkb`?hDQ`45(2Rz_{ zIrxM2K+-1ofByglW%!GvuQF;{9;G8k09f*FZ)|S152D~;kAHgmtK$Z*;ropW_VW2W z_b{kvHn3z+e)5F`ebgWhc_*o1j*3Zg##hy7Z;Y2aO)iM|clPqu?DRj6{{RJkEZ)2} z&*A-g3!C3D1ZrTlyR@0rM_r>V3F-qUpf&c##|f=8i&*Y;Aomi?`|e<1t`rVQ3OOU! zabj>jwfWuu00m5rc|H7OBm2))brar zu-GH8J*(z_+m72(@h9w!sTome;a zll%*xvQNbS0PRgJvU=*mKoYG4?TK%*WCXA0WGzuZD78jU$FkAr{DP7ShKsD-4gkr*pk2RK^ulbuO#!|8RH_p)v<%e{uqHQ zyfflSuPx*mXmr(Y+yRf3itsbZ>U;CrzG}1~Cu`ZW)~OdbDa89hZM93~Tgmk|X#itt z;g=5ka7Z5f;CdSEbZrOWr;2zgx`|NLK23ZdTcvP*sQ z)1@fXx)Y%%O!{;7o%jvmuLa!y0K!Y*Y37zV)m>8EfKbJ@;gg=n83UomO1R*$shJuGcjy5l9^OvrvTx)am{?&;eXnT;}?l^AM9OkL%ov;^F7kZ8z&=y!bET<^KSR zzA4-IZ%@_X{{V^10wr%Jca(lq+<4@3y9bO6SJ3x97x0&cG^-mO9#xGj(o;N-AahfNB610;kR&B&7;0?!&@n2DRJHfEs*-dS4 zt%)vTeXkV6?m1s`)4$ zEY1&O}KiVhJ+=l8{J6H?Q)iB|JSxmex)Sz}N- z0n2Pt)7N+9TqV@d2RA?3X)ELAP=|7X)03a(YwLfHEoCOBHkmbOmlDcS@BFC9Dil6 z3hTNkRElj18+*rT6f-&vj<^_6^Ty5kRu79j+x;$WIp%3(jJ!^FqTS5cF3vHAM`Ji7RM{{RJ#(zU%_6`C&ArTboJ_C6f_u)YfXQ-arhq<$*X zZ7<|kD#ysbiNj|HAy!8KXSIHg_=0n)_(SZjBPfbYaWsZNs#|G6$P30v+(0?Uy=hKr zJC3)#MlEk^9~*zcMLaCJ=j`jNK{KehOUQ3+;*4kJ4<7BTeo#V;jy~!z?lJ10vTwwT zcKwQe9@*)$7Hba+SlV37yel=d32!46-SZIfN;w$$NgYLSf3?4cB#Ysni4K!(DVFoY zSN{NH)9g`XX$Z8D!yn!frC2T$WH3B(2(J?Tg8X%>>R+=1cusq#L8f?~{><5~Wbitv$}^kSbaBe^!dY&a>>n5WQkt)Zb-xBhrwOOjETy%R?H}sd zUvdY=eo)3p{{Xyko}5=9`wi+^zr?SAeiJvkxtiBax0>2}J{v7=?`)%P;hZW&+0S!V zua1YO+?`X#jc;wG*s;2~FL9Wp0XF%$bpcLX$aw0)7W-9|*h; zWdypN{-|zjwfW={C9DQG$yI^Xfh~rRgN?XRjGQk_QcwXcX?D!kTi9H{fJ?dK=@Zxp$Obdzgvcy#dUO@bR_+o^^e9qP+DmnR#Nht`Wv>B0t48=n+U=$Jo@7M#8U$B3&N5$_2YhD_QOuO*h_pQBBd!8ON49$^@XB~O= z>0gW97qNXGT8ipB0D{)#4kdPC%zu4D|)0+dH1<^*;8y=s-$jyzT3dw6U#y9pzeBvv5Xs;ofs$?xmm zIl;wr8a9EdO%c^@^#N@xO^DP2cj0l!#tue*9&6+(VpTe;ng0M^f#@m|_GUN6?*sTn z^w4zOGTPea-52JzKr%Dx0I!n2YHtpBk}nJxw277nWebImApPRl0F3cpLHvC9o#88Z zUd{`fq}443$>VJ19>C{6GWN*)tLLANUNxIg(LTW)i-?-gGf3=Nq&H`HQh3h$NbvTH zaceD>zer+_BZ&GsCZ}L&4sj9vqV6VXWy_WQ7eNh*Mcj@%`qRm-u621*ks#w(BeFMrRjG%b>6q( zXrYOokS#BCBWK5yt~^(&PEM(JF_jR*xjc?I$>jIqzKigfgTy!A+lU0kBqWAi z-zi)Uanxkj&z}!`Nup`CHexb-=nt07vp!%bGoNCAQ=0Xk3Tig`U6$_-YNiz4aSO9> zamF+LJ?lJowddyUX+|{c`L{hX`p-OcDR zO78j1w3lnBN~+Nv_)@|%pO@w>xxd{5^RLpf)}e<>$obq%IqE$No+THyj}&+R0AeU! zM)J$X56Sb9v>f#4a7Rv@W*Zn9_}uDNS`481!*D2E!pg@Su10!~n**M{j?}Jhqp~W{ zG(u1sCW_z&W63!iv){Pm@u)_(X&#9&t$b_oPvLKj^_!hW>dVCGbz(2C zJl9)!Aw^XTPu)QZfTN6Y+}E)F(Lrwf9@8^N=fd$z8tx>3rLr)J#g9EmJa-&dgI1)y zrS5fAhcf0z=a>8yg|6cGE#c1+CfFsg@mAHC2PY;8n*om*{mOLoIj^=p2l)Ey;vd03 z5BS$m@dQ#usrY8v{g_L+vm|@E5I|5%00$!&9{&I#{{X>8ZKUz{?CGfL7H~pSO4P0O z7ZTthAUcq{i3F9BPKWwcAK5eZ;`nLsclImro}c3%6UlYr3rid5qth&5FFPt+%#k5b z%jBq08!wnw?__kXuKD#cQGZunO!vRqA*TNTgm+SSJV@4YEu*M)$`P1I-i4F0_XFj} zIL&@`e$OAYhl+j)czecnQd&Hhy3Vg1&Ytli#{)^YiQKA?La<1RjyfJOT?fYB+Rx(; z$7}0^xz%LTw07Q!V{0Q1HA>+5tWN223CJWaN#Nsg^BZU^pgX_{WXNM6I9z7~sq}7r ztFE7P^+d*-ijwH;Xn60(emnT5s+vr*dA&|w9zD6f#@4@SjrCLZlEud7?oDEU%E z#Cbm5e>&01FITv^8Y$ZNV_3Y?h2)N6kIviX&f5VP2aJ#NgHQ1l_MM~XM%zKPvyyj5 zNpBsp*g4=Ff$3HCj}>bA$_Qq-^5RY-g%GNNT;8Ju<}j|@79f+@W1#e*Ny%!58f%*D z@?ROP<(G)$l+Gd>!+DBFJPtu0oqfCi00jK;orK;Pv6fE~Tsy0Uxr*BDkjwM7(Ags= z9C{4b$6pgXG=MGbxOU^_+{dsL>tC@KiKWnGdjT0S8RPSIADD)05DDdYaSX|)>~Of^yhNs zI8gwMkTKAlXQny|{Kqp@Ayv4aMTNDs*!lD0&w(s_G4_3B?#;#Nia~NDlP=0KFf-I0 z>%xwJ*Uo-B)+6zUiL~Da_&#Z;lTeXbWra9jo0k24o$Kr`+aEzu;dzt8wy?V!JWD0Y zgSA7cQg}T`$2|Qj=Rf!-FNdsrSMhUL@kfdDRk%w?+8ADF)cJg&zz3b){VVA*%xigU z;f^jIm}ri7eiwj&gce3#;hoOx2tF zBUZT5+s-n>JP(Dy+rtce>yUB)CcPKMy3}@-Zv;@fI)b54U?AFXK_{`ty?Fls#IG0Y zI&)iUt7qm#3uLMua50hd9CKebs#dRwa@_5uN-(8naK98aABnKRbA6}y>c&`}Cs`U0 z3Nte984NJPjtKd&oz?P(jO}K%@jP0Wi@ZiJFIr|X1ZE2oj(`rB8RG`MZ{t_Sy*BD= zjV{1XZx$T}8@hQBKV}k8Oj+kxO1cDAey+2W2lco61{KfW54N^Fz>6SPFfX^8E zSIa*Rd}$Oii_J>u)sgoivCh^jgkHTrck~&rU$oW=*(L3>ICqpX{Mg0^C)T?06kw#z zSW8FT_5CkX)S$hV=Klc14)%-~D2in)q@3*=k33}Y>0E!ty<@>Y@Q&PD+iQwtNXw5n zW29_46(LVO#y*wICyB+a+`4>sPKAJ#5=l!czH!D52NlcwOVRZ`OG~-bk<_C^L$VyO zIK~?tRP_97&QxNmuX&@go2e+AZKkml*T!jr+(o=9jlo|eZ~-47{#4=Oi)(#8R+mjI zT;;@4F_D+BAr1!~$JYm?bDC^VF655sVps@u%z;kfpYkzHnpp&s3#pPq6>!X0t})-% zzT*s(Vv_89{Ya-#-0G}+N22Ph6cCT!qCWU#P3-x>JwOb2{vo^5(xscoTM2cGm@Wyo zRoE8TtY`@Xa}S}%9X|@;ES)d3*1oa1klaPTYa=p&&NhzxcCD`fOXFV{_>#-O{tD9W qHLY`2xJxZBLA3egyPWO>5X58xyqtwxmuwDeR?>r$*%F}_(Er&phfit% literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.3.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..277f8f30d9e29b682fa16dd9b73ce028c212d686 GIT binary patch literal 28544 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 Jlx{5#|Jme%M2i3b literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.4.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9464c09c247f619c7cd2d97db5ae9e1e5be8052a GIT binary patch literal 20447 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

BobBtYw$RttYU18@fD>r%f++iz=I3;$} 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 Xa&44l_JT%hz8I+~`^GZlPRIY*sV_be literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.5.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea084f6dffdf697491472f670f7331c461f66a52 GIT binary patch literal 20937 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 OW_XqJj0O&_r~la^s{V=q literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.6.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbb21e570cb3b6f2415a348d0565ab544030996e GIT binary patch literal 27813 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

r}|k-NSQ{ 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≤7)-O_Zt~QI6@PL(zaz+jEikvDc+_)^|2=&YC}kv~hCNOsHnM ze3HcA5=j7c_OH>Hf8dHgv+kv=+W3?H7f!P!nn)ylK3iZ`Vb^Z$;DOV(;aDFX{{Y~L zSDr3&aqySo{f3m0ruc2YvPi@8jIzwR>~oIw@^rY5E3JuM+NUbMs>kX0Y|kOVVA{dE z)V0*4uXmx&e#$?w7s0<1=oVfx_{ZaWomTv={6+YMqn_1&Tt{p^ zBc6vX(!XBE%}0r|dj8K7nc2!STWxFZkmLJc>l$CcX?`7P*HOnTlDuyy3=1J3k)D;} zv3QeExtWEu**o){$DVriuRplgH3XOJBudSnxs#gS)9&u=Z3L#mLAggPq-5f|)>9lL z9taL)W}NrumllJIdgINjNq2N9>F7=Teu!@anqV+!4xL zssacg22ek(d@ZYLI=q(HwSrP`a)9tD-wXaEc-KJj<))u^t6rtC2Yg0$R8{(Z6k+n^ zB-{9xbK^WoqfqVdKGo&nJW#(ri~-?t*ZXa4|#i+)a^%?a%Q__M%~bD8OR^RdU{uZ__Ow?wbP;g&C&H4E-sNugob7cGB_uW)#BQ> zi}h_{`SpED_3kE_w>+-wbDvE1uIN*%LP}9TJMiy>D%HgOe;;_$jqQCe_nrQm@z=*b z2aZimd|M@{iB8#9IS0RdbJDusgCDn7#3?*iZLjOvR*$b)##%Y;wM#Z+nkE=!DjNsu zjMvBC6FgDSpsD7CcSjU)metU%~j2+d`Tvr${d26W&8CN@ST3u-==; zE1ZDqjB{Eav;LLg{{R8&F!-Zc(uL>Q*nh2z5Jo!lpL+W1;BWjCOZIm7yW+Y26ls!M z!+io68W|yNvM2>gfMWoHGsbHi;}gUgW(`!UMO24Yx-ZoDjAk>2V~ga({1QYEhU)-KpFO0E61SqxSs&0D@xb zn%1#@`$+!GHtv(0I!g~9DGL9wFZ+-)U0kTt}Ue7 zG&3nyQX8S;BD`!IsOL1jwh=eoE|2_;o+VLMsU*H(k=JC(pxHU2d@IWOusHvAsRH*sC8c_SN?Wcr?;m3;%J{5rI|2UUG1mK(CjeL1hP!(>!2%AH(H z)Mb0_etDmGq5jcZ3xuYp4qIP+S^4dx_=n=Jg)StE#1}VlWxsSJb^s5?wPN_G*ycaQ{XPC;>+0o0O1|e(lVfi*p0{6iuuFD-UHTr8L59|YDh%c!8kZ4 z9^$jlYh&G4E@#NJRz1%T*9}*}rx-`uJze#0U%>TG+3&`m5WH9MCr{G9;U~V8T0y)S z*?}1x5t{oW;xC506XE{=2Y+hodX=l(Bs;@M0AN8F>V2!`{{Y!T;iO(0(}#_(WrSXN zP35VOgUK9Y*S&50M$>*G{6N%RTf4F?Mgu~p8-{+K)%j*RtHtIixmhjQ?q`m2#He8O zQQx7t;qTf9NlV9yEmkPNZ@>18@t=RCU)H=)q4cbnox~_!pVX<=QW9U4dsF#viOG*r`*eDn)PU5BT-(JM|0&dRAD65dNGuDdn^3+ zKE%=fJ9xuM)8UD=W|wQ>Nx8=Z9RcfF$@@@vo**~gIudw4YUJ0)9vAq7uZyT{Z}r&Z zC_qqg>CbBPi>JNR^mBIv!+I$ot~%npoMuL-SC6$;zf!PRT(1*Ca-m6HJFA~X+94F{j^LJ^+?TRoOt#d}q?I{vP=IQr0eI zvA&oWiy^}dVS&YHUwC>AUsr8HaD^4V^EL-hYI%Mdo=uqhMY>03D=xuinP2-fE#JuU zzXg0U_*bUuse9rd4%s0N3JGCD-_(zK?EF>mOTfM_vhy@OBHGt9tJvNpg*NE z$KD;Zx>kzVD!PCbm3!Aa;O~iA?}arnp=!QkMI#J1lnw#;d-UK})<++Vs@-}r)pTdi z;i*x=RE`%BepjMvr{r+HH1HMog0C0J@W{H1NrUCV!2<`L4_ao6;qM1{gH#e~{uerA ztc6644+LYV$QAFJ&90ZK*d(&XNjM{N;=JSH5B6P|F~qxeD8>&?wdzBRaCqz|u*6~4 zKG#|wM}gps!j>=FVeu`&?-^>E{7ar0{fvKSkBBiW);=$W!tDL!+__`h05Ct~R}Jwq z_8GeHoL5$sI*g5iMXkWMZKQC0cr`YUCB?nkzL|K?OP{?Tt$KfiemUz}d5^;%67AmV z&Bh|T^1#M<$vjty^{hr7x{{YN^FE&+l2-bvr3a&1Ek5Jmq40t)hTbE*)cjR=1<2e# zez+tP#tA(up!iFDqU!!GwR_8Sk~O(iR}8^=0VihpPQb-X3wi%D%S;UU%bkg|F*?gGBUEyq#EL!E0<{{SR@ zZCe*l4~hDse6--NZnBqleS7h*<2BEMbhs?^T@e~109W#4027Y*Uw_iRXz(}f5#hgu zpA;eZiD_$_m@dSUD7Xs8o zk2^8Vau_o7#yv+${Ywprp@_r#8jwvjXLIp-nLOo+oaJ=eZ}C4!{vm(CY_KZSf#szqmWJUi_#oxlNsJZFyC@7}r3kKYM=Pw+3qGH6=EO>=6|AG7LaHdv$t z57*XKM%jH?`EYo&O-(q4z!cy&(|kEK@+CwWKSN$+FkJw@e{Q#0b|8*SeCBp>g$wNIkoUD|4K&1M`q zelQRCSC^O8jvo~nwbcHH;yfJl9GayFzExxNW8ucLVXNxUHNyr*DpaY)J9e+2EWfbr z{5)NhFj$UqdFH+^_$#ShTjh~^*$029EktnPecr`ji#s9tUJMoN`F{lagL-{q3C`L({$Lk%LA4QdFTHCiLcS| zSne0e>8ezzMp9aAw?7@rcvp*fhEAt`~`fm;$IcEgYkM|GCzLcmQ(5Np4hK#@Xw53p2;NpOAuG6 zgdhE$ybS*UFQ}C&w%sqt>*0*f5vf*;rL%f`&Fx@ZktD&g#PCSz)BGzY+rjqt*K2uq zY#D-#H$Ph2vDI|@)Dg7gZt4PH{{T9^lEY>Ms|%6UP5{XK>*nKLtqaEXXW7dx!(y73 zDrlvBEH>896or9Qz{&guE6Tiob@q$bw~QVKIq%e0W8-adOYqUaB-*92LhywDHDPbiD({^?~ON{es*cx=>LE3x$$IUwT!XFlVAMhmlZ-^r@t&8Rv z5EJtC9FboR{{X>C`~%^y6KL>wr0KxjO>S1&;Rzc~AfhuDKmL*TbK+_v~0Te+S;_UIc>T$+tzr8C;{avnp zNth>^S5;*lZ>w4#i#m^kHEk~M?AH;vT$~V3HBCGvsa@Rtn5OSAfG|%U_4F6SuZA8X z&~IeWd{yE5s~hN~Bg&ExGmhZr2fcZ$KWNi+SuC{+86#wD?vNf&(5SE3u-T;Q(|oH{ z*ql~bPY)%{@V%Lxqj(*>9|zhmpb{+Oar$y94-2ZDQfYL1wu@|lupRlYZ_{)gAH{zL z^$k{K2I9d^6mh`+0P9!J)?)8U*UkN;XUcg7@1{j`P{mZo(3*Rr#8JawvtMUbCl-3| zhP+eaj}P3f{k{9R^jvY*{A;q)z9-!3nz*@EXyqewk_Q_{BkRR*nl#W|S%qTCNDY7o vKbaMy7Lf32BJvnt1Tk!TgY92CT}GmCsI@;r!DV!CIGT9e9Bkc_OR@ji2;Hz` literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.7.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/cat.7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25c73ded491f18d8189280dd46a173d06e190803 GIT binary patch literal 27260 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 Vb<5QA>t+;c!b;Ddqub_x|Jiv{(FFhi literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/dog.0.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/cats/dog.0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c339be22256265510082a7d85d2f56aa7257040 GIT binary patch literal 24605 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123686.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123686.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e64a3e1a2560004018e08c9c5bb5c56ddeef288a GIT binary patch literal 13382 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 JTg2Rb{y!3gZ>9hM literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123687.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123687.jpg new file mode 100644 index 0000000000000000000000000000000000000000..af3c1eeaaca47494d2899fcceb927d2aeb21715c GIT binary patch literal 35967 zcmbT7bx<6^+vgV+Se#%9vbbw-cXxLS?hqE2;6Vb*0*gzqV2itx;2I=Aa0swS@L(Zm zF2DD^x~sas?(XTDsjlj-p8522SNA;Mr~fYh-2%K&Q&Lp|pr8N%DE|`R?;1cJfQf+t z!a&Cafk0STnAo@^c(^z?xa35{1SC`xG}KfSU@$EsHw!I2Cj%JFD$K^o!z&;lK*J&` zDZ(eg%`d?BpGHuyu&{7(aLMrS$oS~MbbSBM_O}l}h=~$_at%bG2cQz700~k44gqNX zy(c=#e;MF^8VV{94IKl7iG_{xuR`k!04fR)h>8Y8M@K{ZS3C4yIRK3iorsQC7K2#V z21E}b;fqWy#$=Fd>?hUx_KT6<);kId`{gS#atbD97FITP0YM>Q5m7OD1w|!g6;(BT z14AQY6H_xgdk04+XBSr=UqAnVz@Xsh_c5_?@gEZ4Y3Ui6S=l+cC7(*m$}1`nRZYz; zt!?ccom~TiL&GDZW8)KZ^9$b>mzGynw|9`cd;14J505S`udZ)?-~PF~{|^@m0Qlcn z|L*?{_J42@{^LSLLj$6L{=Vj+_#PocTm?Uzk#f|+~4E%b( zNNv5pVZUS)*k-!;588i`{ojE_{eO}DFR=g3wFeL;w2I4s7UzB(Z!^d)45#C)44QS zA{X31(F5>pMdT<($wmfsx)ar(BCNAVk#)v_NNa=*i-dPIU;mllfnYB;!Oga1MLSCZp&i)&9NnX9v@7>p6=%&N+fICIa)f7S%kt#iWO{=srz3^TcBAG90O-7$00}*3Y zgoIXjMt=KsJOjB^PnrNhMYWPoy85g|a)iTrU8I56RmSp&B9&sYrvtTxc)ZrUSN9Y1 z$z_=Cv8Um_VHpz}$(y;yp2}xQ-dTmmnmX~Pp!2@~ibFaY);jN{r%>M%?~)WOZ)smQ zBHi0&^ZDcrilKb(1zx&Tl;(?)!WRQ!0(#`%Vs8$Q^_a!dmOi_p3`A*vcD0fPF^JUS zj?0}%;Dhw%1vcLo$egYTBtTNTlP99{Bl8PgWhA0ISOuzT+v|JzMJTn&&vOHqi$KxDrU|OJEKqXE)Bat^G-$$Ek z|HaVriBs{zkPZ;3OXgnWZx=}srHwSGh_vsxi`)#ZuUM>A_BI^Xjn1dZLtIa30!OdV zmoY`0fTB_(k=aW|uu|pA81OG|*H3R_2rLRB@T0oe2KXJ2xQ=l-McbM=7ATzV#L6s#P~z^#QV9qqPM3o<3^l z5EeAQ%Ho)Wd?)6Xq^`-$Qc{Mw>Tptr=oQw`(ue|oq;#Q_D2m-yd$ALhK+cydZ?sxynn+x z2XQL}H%7}_v>0CLi?JeA!t&8F&JNTIfnUMCCb32h|;@xOnNSZocv$B-T>-?+hosXPW z8iYzY+&(bz!b?p*hL<{>+3_XpmI0aP3k2GG26INMjE>~A1)vR5*8`M<-G(H8TB`Bi zm5a-`k#QoEyl2v7vG-j zQC6fex_jV5E#{c}g(0eRzjo5|=h}wKjLnpRKV3I&!G7^im(K4$yNbEvPgB=(k5|&^ zQ)F@ZtxQSwg~`MfeSha3^3Z=VBm+r0ce*MKm6?8^N^*ALEo{Z&?>n`~UYN;i%{v!# zQx5akaw3?6m8ZIV6zYbMHr-XzL%FrwrkNLZKX=pejs#ZSw>3&$kMi;A@It?<;~fj_ zNFG5QZ)P`QAl^mo6CB@rnEc^~woIbD`NnAqoA&+TiHLfQUz(k9T0xi$K{ak=6C&@F z&2!~kx?|{EcZI3CQtamP3Y@1|QAVlL9dk9Ay`53Mid5BA_?d1fPq@}GCmgZsh*Wrx zyf8{kv*9(Ui^HgUTh-3!QO>}teD0?9x{E_3ytbA#>}N3^EIsVxi6ea>mRWFdOiKQ` z&RG9nH@c3qnT3xI`~E^{bjxZJ>7ZdZ6wXXogthJGJC)>m!TzkU5XZ6K+wwG=B=`y zg0CNa7Chf)r4^1{XTb(=VyP7mq!OP6E^loWgo^2BH1Pyh{sBsk-Rmd=!hB;z3iC)l zbxMkd-ycT8T#!(on<4;MSl~>Xp^VuWRN#!#B*}^rbgpAz!H5lFT7Ik)dsrNXr9y&b z0af9Fu!SdiWp#B&p^F^GyN@4ZwRjU21@gYb_fz+zSikgk@eOyx&uPD&uzG(wCVD>X z!@HXO-OSnq-W}qz*~@&O9F(bpIk>FM8@|0+%`EyC5Rrg%Xd@hSJ*uP7ZSkZ+(b2wQ z?qbkX7@unD`q#@1l?WlEAin??vt_?U6U~uj^)-YiH}W0SjuHd&d7zA zIjZ_~V0rg76G46iyqV4IUe2SaN8I_mw?)v1u8JPQ!}(41HzwwWGdY;~{sK;L?Vs}v z&2w4eh}x-a3h84GBp+Evoevgv4(l&ZKaLU;bI*8S1}6eWH& zbF786sNpeamzr<4*2^bS;Ex}uVO?MJn`SZpM3pJMGC2cEElr~a@KFMiatF}ldHOW? zqut;BM(7ODShF8^F~ahF@1NLVE6lXg7vKmHvVTR7g=~T2k{t(!uz?6JEYjUo9glIA zPTJu6g>RZEUjC?JFzr8vXg_8@_FPN;1;4kk1B;L;uKH5PgX zFYt;Z$otH!syx{a6M_a!?{Xb2CS{6HK~w~q2>mY%I7^@l4TZa$GVMwNxh z%MHCWoNA-IvgnJBuDktG!-pK*MvExsHd-( zhQEIUT(zPHla|%^3n9?tu|JWr(sF}PqkJsjd71l1?BX~b_j6~JQ-Iv4xHExnMA3!j zi~w$$AM-`7i@<>Mi_3-LDxwX9FolfC4>d+4Ms?g2_YoiuaHXpf8Ow_Aq7KOglrI(u z$yD>=6=7o?2zZv~aHfv2hGk5;CVo&I4L%HjBvkm=XOT-d)~XnZifG^KJaRNN(R7j~ zF~jt%kIjwj?5!!##+hm8YQ$5o!UTIosZDFdp`HRfas&J{NJUPDTiXOcOA+buB@Efi zEmtqX(opnq5JqrW-VEJ^LJU;4%p=790@z>C5{|Q!JLCPJ&vjCKI4jDPQSEmR4yf?^ zw*x6-MmP|^51JLe_0d$(2Tl&7vh>Nz6A# zDc34lAd@HOYF1XKg12pfk(W?jN@pW1Oa z6T4)@f7d0^8{GJP}RZ@MaJ9(^Y=j+|>|2>Q9sYvNtnV^@owCkGsPGxy_Yb!Z8YTR%^ z)LLs+744>v2B|?1!>)zH4Vs5O3(`2u=!xq*!be4D<|3Fa_yHta-d@4De*sqPc0*Md zUPW8M?LOBtG%*VFyoEhD_QWSLGl#j26qPx;@oPy_SN{JtUs5f7aFOM)9t5Tkf&l@{ z9IcT4sAkL`gDrxKCDZRzsi48OKZv^dgiWP?I>#00^Y!fnP@QpjGXed)4B$~Q}saWhjq@ACxejFH3 z&JeXJSjNdO$i5}n^P<_a>ju%uklnJhQf7O|oHTtgl%NhSEa#o#9@e_+#Qi`;mTVmnN?#q$zT&bJ8as^iwCPI$4%P?&k;jh{%XV0eC-Hbwac9+@lqct(fvXjfcH+sI z^7dYVk4Fuk*=VuwdLr`Q(umTOhnvZRw>+tBKdxiMS>Fs}#ncEJMrOG+kY58M&rM;) z&z_>SKl8OI6$PxJd)d^1x1*#{e*xVc&V7C3{StF<@EbXPN&*{gJ(@jF*=s~TX=456 zR`hB$aGsp($xV3I0)6+?qt zi-(n5#4dG;+ZD~T^hV%mU59RKKX=1L*fwgV2yIFr*TtPeZXqI+``j!sK%lIn2uoPM zf2?X7(O-$Od!fM{wXjWSP!`ZZ!!*HH5`9E)JE}17srBn(m?o)Ut!rEO)+vuJO;Kg^mbBr{ zWS;gNn=$#P=J_jmwjx#e=~wU?qmvF0_r^TWw7p#{!mkT|YjLpu*8f=C3(!xZufe55tNL=6tE0J*HYBE!nVbml(XGH><0L7)rPEGz z-hN?!6@_r?vCrOVt`|pZZl?uGPfPaXJm=eS;sGZ)c1n#8eDeg(aa=l3vO_d znX=$?e}yx#i_itIG91D9pAWB#2pGP9JK1y7>mXcL@eV$S8Qn#9+=|7?zo9WZ63io( zEb4OpHFv_YlFr_yY%9z13^aM`*>7+v-o`6>Vz3>z7p>x8sJTV(COuSJEyoszQoY9$ z&Et*5#l784h2{$lbTa+1^&n*G;}j3K&Mv?wc`kA}Y$WmA_g#!s5A@$^k;|KvBBTW1 z1chaze(>7+*r%khi_aSoIJ&3LiJt2qK_YH)Z=?Dgn=-0EZ*bC*A?T~`FZ@tI< zRQ@fO$&m1^@op+L=0Obkllirv_E&ul_zFnkdPYWiBs)=)4Zy8+sl}ibPOPPbgPp^; z)?GZxmHbBb@u=$SrHW<1OGi-bh^i#I`G>Drs3fA|pZ(XmLxSzTcu5n>OhQ=S51dE` z9#MU7?qh*I1wR`GFB8*ev}bwOZ58=mi%8f>A0*UQ9PXU% zP}@8`Pj_U!Gr!5A<%Lbac_-2PKvaF_vrds(gRGmfO-ib%>dMc}Hn@X~q`3SrpW{C| zsguESwhAh@FMLv7edg74vHWe5!w`hxBqxik+Y~FvIbBPbH&@K{fB{UF0^2`a#DI6x zMnL`|)H%g;d_pZjT)H`y=>!>AyO#j6$KWtOv&&6G!=wb(=^ZTES5(TNRH%P#N_#ts zk+8|>Mu0L|n)Axj4&<`FSeoCTY*?A8Cl)9;q>@sBTM7q^0s%;CSo6Ra! zhOt8I_W@fzH;5gRGG!$wLkYZ+>>8P$o1kf@(w>adq9#ma2gQYh^i&1qW@kdY9NJTA zXm_i@(Kk1xkw<2iOuGBS%!}hvR{R+?A7wr`kx`qBPQkVJEEU>p$)r^BRg*t!zq#bd zTwpM1WyZC*$LrWnOwetfjnrC4&?fIGXY{Iq8>K$FTEtNjk~WFjld)Vpr<*s37~cgR zC*+v~bXvX}yNFPw8V>kOb|J2c*;**&wZ$tPTQW!II;HWD)Bu_ zfF^rJDPH!0q@G)aPL>J--wxa4aMk_5d%6s)+hb8m4s_sv6)kaSQf%%%G)@T!J*&_u zYX?UVv*^a0NV;k+#A?-R5g7JYc$TBpESH~Gt|0OdD5CE30s6oT6{`rEu5^(~bv?&K z6gz>=VTB5knsptHG>j?oVYzyFNgnDU3P;iM*n?cXg$Si`Cyew0m-pYS8I6&-5ZWu9 zeQ2r%Rp!bNB3aCKHs$<1Tb1K9RAVp1*)mcj?ws$X|d2OtQ1~ z@X>iB1WdKypoLsm$aGd2VdF0Snim}WeT_9DnW0X6NjDW^0E=XvX1XXJHF&3)I#kyn8AYv^_<@nFP=Ugk9nRE+UCdG3U6{**q3#GW8~ z3%B5abmEV?vZb)53hIlhj^n~VSog+0o?l+y?PupW3IZV7r6es8Yy@g%N+MLws4X1~ z7ga>BLC}M1>F1j7w-)tpMoEEm{i1_TxiUVhu)>44&rA-qQT(Yt3d5w?cm3i`YKR(% zUQHmZ)NKN2-gdpYsh7P24h%52NAmEP6U;EyQ$a507!9~V)a)~Fn%GroxJSg9E8EmzV$ac_(h;zKn+DH z=dBW%GpbP_^B3@0`Kp}RAmWti+4fc1P4%Lzyu_Y%7EvLm$Ho{rW3mi?;Q(Tw#@3Xl zf>T)nAN4N)CQae1uVFhqM?WwMoBH8$U!ciLdB|Y4x;Ds7HikE^aGplzNr*{v0uQGt zQ-D);I_5sBqFqAvBQO=gM1bd?l*(FKARog?kG9P(f?tbsjYTKU=#-I3%hbO$A7z5ffgt#2z=nRJYjDGd%WVFU!F4S+IvsJHN;W}ehoRCw?07cKY z1>cJFZRwML;v^vLTGx^@15y46Fgn3+5_Bbl94QT#!QGNPewNI?NO-DpT+5ly>+qj!*<3%hbt0jFkmYGi34^2 zP+~;M1#^Uil%b+koe{REPs!`Zk-Av!^TLl1;X>x;`S}sMoXja>ToND{yvc{y_mo>c zR`mxJyDp~^BGJNH8Tv`S*{AM@`(9VMPsbbZT|^Cm=TjrIF%!u~IYTuC=sym5_ubt- z{Mfb(kA2iK7G&oC3rA%NVrgGY)2J`q4 zA#7VRj6cmL@1uJ*C89&Gv(Q~d8&t-U0D!m(>+`E}VLoyZSijI@ zjwINaV)b;TU%x5ClOZ}QDcMj2NdIYrt?zf#Q=1lY<1EaK`O_5FEiuy3+UHI!*5a3y zYXZ4Vvyx@pOu7ZWme$n-4i!Ut3WFEhDQ!S&xfKu(M*bd8Dd*|MYQis>oh(2w_Hl2< zSEI5b8Ne&-p)H_gVU$N|eaV9geAA=PlkKwWrjH@^blB^6nBma2qp>e2GyZY%4|VI$ z=a&YtUpd4!SI=?FU-Zx3kb}39D@bvS%)e2Omwup!(i+fg0=z=q!icah@s)in>fp#p z%Mw)vKeUS|?YXWHnG)LmMErCQ)U1bjDGx5)CxEing|Pr!aFcC=FJ=7^ep zu5bQyx3$9{sdR&~#m=uM;<85igL>v6TsVcVyl3ti)Sgj$#^Agw$J4njyBm2rEqh&# z#=(nj0)P|{RFsK$uBC{*SY~LizpfM}rRs&b3|ORK4#3JnLT35pH3HP3N&PFSv-nVX z;A*QC=2SjP=|r}jlM?{B?;d#$e?^*6{`H$??D#Iv+92=;O~lN$nQ_3knkHMkS>bFi zO6>mo7X+W)t?TgP%a8)V3OY`B3m0j37k_kn*PQiq4L26hnLhE1@kWLuc<5K9$fYV}5>7pV4$M>`ROo zFUvXifN&0H%~$?pZi!#Qb^tiw9z|D-zsGqm`dva_o&PEDVy0E&wr=tKvt}{ushdAj zM6&Z#R;7_a+s^ZZ)Q+5h8QD_!+ra5FhFjhOQ}4nq?9w5%XWv0?RCKiB;BKL-c5NKY zgNp31NQFXuZ>w`jVJ6+LS+Tf9*`l9CN`XX^Wc^4>w{1hE zLkGMhD5W>_Vp=IwvYH)((0zx`L`dF`5g&4%c5g5lLheJ2gqJoD=F^U9APb*+1@teO zKjtuG3aKpNezKF|@p(GA*sPujXcFWT%b2Kq-HqNn!h5=&3k%>TtEsF((M!UKfb=8x zsCa+m8<|-~O@APMjg!O3#Mi6h4n;_Imdo27S-n}Ao!O&hL=du$-Jo}Ze$@qUQ;1?X ztd=^Z9iRR&mT}@$(3$eXVgwY=R{61{jo&XC)shjvcWxJFwKkpPWmzrzz%Lo-`R7DA zxFeYyTGF;i)!1J(k!Sz#VE)O2N>b+bwwm=22(Y8#A^sfVSQeV^D_I2^{13=X3J$1%uA?`aH!TH+K6Z9Q6iCj+BlU*8hxHkT`&k7j%C`_$A} zeaknwB;VoYBg$IrAEyh^CsHoz_l%5WWJGpScY(FM;Bv%v_Ddn>G!PY_j{35H+kXZ? zaWf9c39W`NU8nRly{^+#*vb`vo_L{I-&C-PR9N=BgzDydf=D&22Ew6XeqVRKwVs*d z%?OlzcCF$@N)EH;nEY~e=j(UX{7&}nB3Eu1JWH>+uG?WC_0HORAbW{7JW$t~^NhOX z>%({X5Ntn)hKJSy?p^d%g(LciNGXw#Z|-m<`KGj(?eWX^PZ!D@q~B`0626M{mWMB5 zv+mjWxWuCL-^D*7N{LFHPzy>?wXNB**9jIY(;_ay(z)su_aIIBtVhM*fM&9{Yj>dBDDPk-d21cN7srPi*!AM7>@j0C7?Pt8^ zUgMSnS#jv}_`yXmNrG#^h5jDA{)Jt?5&oOodhywFVKGmG%N4nrcrIfWb zO9Fj|1iuh394xeDU#M^fZ+A%r(}W-Dr0tgP48I6noZ0v-^}~!CROr^Fp~v`3OaJ7_ zglAewhOrPaW)mfCc4Zl&)Fro=RR{aFwf5uSR*y~EZ|&I>t`&6WGege!;NOv2E$?OP zJRpRdidUxPB^m$w+zPVe=3JAKU7KGWxffr0ImW4_;8ggqwM#t+##Z1T_oRbw+JVP( zN6}4uo<9_h3%1-?F<8Gz7kDN?M2l0e|vH#yIGp|NMQjUbLH{B%RgX zSgo(Q?}3(KD2n`I1^E`7qFn31#?bkAZ@8O{@tPJd@`@YML+~anZZUhjDcbo*tbPj^ zJ_w^}v>u%l-SK7VXRs z24a6bEtR8`_X#8_5|1E2zHAn6>=j#x3@Wb0kB02C*<+MHfydl0+Hz z87IiRZ|KLH*uDN;9@^-bJ&M~OZO`j45J5o3QmgM`h!!hZ3|Q@ZEh5P${!1+6!H^>{ z>F~4g<)tbbcOPF^Ts}7H{X~@qNQH^{|$69g|73Sr%& zL*6;qNb9#aiq!IN8ny2qN@UdGgJ6e-a1=EL`yXB8<7h;xtjmwdi#4*|4Fe=_({8^t z1DYJZZ`&%zG(IqSZW7(Q(u zNci5=P!6FgG3&@kCb7|%%qafR-O0H=^_G+}`brE2jFyGsgT+t|-%zYrN%rmrV5->D zMu{B0(F-InqqvRR%Ja7ex`nzDw?!=J*O?Mv&86c_jhENqcvc*M4KV{p)jlC)7$ZMt zgkqp8^To>NR>uFLdFgWd#>3yT-)FHSF{h3z`|$ua(%U@pY$0@}0wmoI{x}QYmnlLD zXwsLAPveyX5z{9n^Od!l+Pm*;++|1hc7Nt6 zwnRk03;0-43;p#A5mxYL$l5fr}|GHBWN(@}$k!3v&tv63{{p zJT_!bWl#)oFN3CC1;#jo`l{Nm%6i|YHI59kh}P-rPe~a2w~H-|2s>e2?q1WV4J4xX zQ;GX%cckv;>`J_3eD)(E?zr?ho$I2nsgZU5;7uNJ(Cqu^+|D3+G?=GI-(;(zO+p<>m`K(gs~1)KSrOh?sZIOkUvo z9L|fLNgi2Gkx`ij@A?g^D(qe?iIfwMqwU&V7TfEE>0us0R8x+YN2x?d*hqwA)R58^ zM(+~3wYKA|wyqL-9`Vhi_)tiVbo!!9eU@RdDJPDWY_{aaoV`9HKFfXc37y=o)!96;~1Fr=)$yp|JR3JG%0oMYaaBKvAz&|x!+T#7DyQ|oO!wN$~xxlQluR85$qvi=&I4~^{&8c`L!0>c|6w{Do5OD zGES1zLZm18{@{xS%~kH%{(Hp|i&$p$c&;@-J{E;G+Xz51vhQZfZqxac@g!y7E6oc9 z^Qg!Ixzc2>QbR(!Bo;KtXfONYF1I$)jM(IZ0a?(hDGCGnFIASGuShLiu2TMKSO8H8 z{NOO(VOzHVC2wzIXA~K#P}gf=W(!a9BxCF<70!bw)tbs3>%9OJ=w6(=!L#dIN?8z^ zwa?P54u5%jU~${sJhd$tuskaHBq=TSg(+vg$hl0fT{crm+}lfLR4QBKblNRLSdVMW zJo}~dZNxX&`w$*cP@3`cH}LFZ7Tv;$u?uXlJ9UA0gmQ$Av^?}y+Le*rJ1 zF;AlvC*Cs1f&O(W9Ab!Ml z;Jq&*X~;REWC)JZk`ARBD!4mT!Qv`c$QB=YzXg8fF#bp&+4cR9+bD2-5NtuDosog9 zt%t&LXtHmL;}yX3lN|C`wf@Q-V4Nv)w8A=`qTF5v{2cSslL1aDOte8v&0vUaXsGNH zL;iSFVzU<@&!@nj{wB+d2BvAo@=lu(Dxcc-BPCSCZggQz^}S5J7hzipPbZ61$Fso; zPH$BrkBo07(QO2rjrR>RG)Wdc32g3}wz$yhMxD#ig@a?$0)x^!$V>K5oHH@xe*rYp zEyxsQVytzJ7dodS$m_?SXtoj>^^+c4{i8OAH`OV-c-tz9RG6e@PM7;=EM#}2!LR?R zwx#hZiH`tbraT0~Jbm1>newiQ57vQpr5QP9S>1QmXO|G`$Sy=HaX|t)3u9a*sOljhgLRG;xm1Is1X@8QOkfD-W6ilUDW<^(`kZ?s5(-yj*?76 zjn}gv-#GC}2heQEYs8IZZ8Kqf&|l07A-@6VdL zORbgOvLWeKE>sfOTV< z-O$Nlge`8bk7O&RV=d-@V$m1To zDE-0y(pNohts{MevVGgE@mEoP=FFkRIdoTgc{-bgTg?C1Vgz~xa!;EHYe}4i;^&9V z5vicfR_vX~o|~6o>6$d!kTd$Enw!0y;&h!a)hE7eiL==_EbRUZ2sILTaeyw06ai=a zi+EUQrL-kCNQ3b`_#DG-O8A{1<>o(3PTcZdZ%q6MV_qgpHXOG&=voS>aBWCTNn71C zsrLHfta!P5t8CSCe`N(JJ^r=Qq|lzWQu(j~B>_FPj?78^!V7+xFb?s_E^T+KkbRx{ z(tnc1yHZP=X2X`lz%d{bRb}G6*90)(Sk-7;PkZCf%7)EzUuo_MuHT^;O?ARt45D8hk$#4gplMmV+~uYcytpSj`pG~Gv? zBb1d@-w^Sh2IzpT%5kdh-v~LJq`EI02Y&)*7L43mOyoPf^DL-~yjB6C4&*yIUaG$?(dK!v#X)1S-FQ=JFW*qP z83)3PObJgdf5|V%y2oTIr;E9&ZjUO}8^4uohHRZwEmdWaF|>P|=VK!mD~fk|MR;u; zLUDLzCZj78o+WO^EX^G#wHBJ>Xt8REMWODSv}Y}28|Qo)6tJ{*K*HcfQ$W~tnHg``Fe{sq)qdVVU|7|YVL zFn^Dq7-xtT!vd<%GtZ|Ux~|EbKl9jgE+C2B*kH8r#6Hpc!lS>I672KmyM;x$L>nEj zR4rj5sZ$>9a_47tL6|4s@|GQtanABEoD+wu(-6wdU`WHp0O1prl<8mP?Ct|3U1r&0lubIZ@8h^jhm0UB)oJ@C4tG=783!;a|UQiOx9e0EdlA%$ z>1!B?n)hOeTpM@CGB>tcRD2BHG@n@6LcbaPRStncHaS93f15j_*Y;F|p=8?AdP-(W zczTL?xwWD1Ef{UTe!Z8;L>O9I{PNk1a6sWJSp!120DK@j>&S3I@cio1Z9&A#xSEdVL&^Aw9nGqY*aL1Raa=Hm(BwE8|d;BQs`<# zXc*sjCztQE=bk)K`XMU9bnIV9OKsDuP+`ocnDP-IwhW3(9fXA)={=1B zm3t`TkD6FOzSWh>(vH;Si)qzIc2sy!2LLj(iHQzaW`p)M># z1sB_DWKI&_RJZLhL5sz;+k$E`x6VM4vBB8wcH&rZ7xvf85k&VyodEXKh41Dep>t5G zmD=j;1&6Qf76qjXFE27|2Pu=S#dKyZ?rF9Ke@cMqQ-#!ZLMKP2Bvw^gP{n80)y6RXVczzj?7ku;7gOW>T)5!7 zy${vNP`iZqhBxvuK8chNH7fPsR z`QcbmIXRdO<*aI3i}&2(FCbx?_-C_+JRSIk0pKUtB@5iIIrZLD|46it8Fp2#m2b>e zj68tL><0fPLBPE#Dr5^>7|~4-C*jz>;4#b*j$$H{_Lz6mKB+%tYca{79JJo}{xOHo zq-xY;@S5Y_S2e%hoWVdMHBBjLwE$uEP~wN%*G=2lO2 z(*Z4A@9on?EPJ(#E5Y8%z%SrLjo9Sk>sm!YOcKSwOT`wleV7KuL3GRY6Hh1sX|IP! z8bsMJi|8K*0sstDQno!*|ney7=v zkl{MPaevL)hSus3O^d}%A9fsLK9a2N&Cs)?-VPqWeL{UShaV#tjQ`a6*leNN8$=3) zzY5R8HHVDab%e^4448fFJ%FaF2>E|Y8r=;5{|drr@|4g;NSSiy$ZnxiKLs9-*IAj* zR`q|v9y(yW_=8+UNY%ynRqf)-!Gc4Q%P^|gsJ=?kE)X#@JKl8*VWI^*`&n74?d&Dz zucc98!=6OzWZ%hB6dQ5!0a#opwGZwWV_=`ad$LB@N`dasf7;cJjyMCPOxe*WQaO9L z)cQ$vMD_-W`hNa#pbkxOj0Lc5fFD8Kga35Q_BL9Bg0Gx+1oJd?8q{kZ`-evn{L+FB zh@xB}2@;vo#b-+U*21Qvl>R4 zAQLA&lHBe*uf1a)&xBqK*fH{fj71{r9(X%miUkoDT9Zj!IBos<7`Qz~!s!XYCw zg(4b$k?YMW0;J_%z=ub4sg$Ova0fpZd=!{Ndn_x;G=QsP>w$R2Vu^lL^I@EUD}M@C z-ZxDO&GmEl=y>!RDEAWwDUl%iC4&NC5K|=Z>d5ulNLQLe>M!7TTYBH`jq%F;#?E%j zD~7%eL;E{bG)Su!!J)p~h{%R449E=1eQZ2k`r{IBH%!d$z~bG*ypOy_?6q}d^1Lg% zjO@3$gnoA^QWrEX4DlRK;PcPye;D#Je9~?}AhXv;d*!k`K~twAfSr^x1v(tKb~Xq* zaeTw>}h98eikD! z$e8sZWTg8zBZ(n~oiLu^V2y78NmJZ=bXaEo=xiANWuNA$Aamf7C5?Gt9u_7``!Ck! z=zXyCfcf|6A$>WL?Gc~jgnMi@zLL*=fBYZ>kBo|Q061yi@`>`UW+;lQX{rybpcTiv zi)i|RAxIp>3I};uVOn-czadcL70R(u&$kEzS%8g`0*4=?&bD5X_tm}}DqyQzogqH& zaM;{X)SU*Exg7Z@3r?z?nKsYQHRYr?R@%w8gC7ijBFiC$=?lkW0DMha7L<0#;evjX z3T?a8bweyTSbsd}2ibmPs+VNwkx-wgS)QvmrF4uUeWf%PfakL-vvr6;j4-ZUnZU>^ z28mg;&_9QoEI_h@#nRn;k57{zlBl5|0sTIzpG8g`{DhImI@4Ms)Be=>(iuwj*w&%`rQ(YQ34+_Lkean$VVv*{(b@G@Tk{df{KWERQmhT zBsq=b*zAo=gn-lT7caiklRGkVd#@P%RAr1}V}zr{JA6+kzKn#0%2G+C$5R0Ti#<<4SMAEWa zYJkFI1;yMTjP=1#cLUD^agWBj>j}lKoVV9!%yz&#r$;=B80` zDFL_c`9m^yIl;zHYLiQMGUt*>9w-n84qFj9+&Sn6`2ER`R$6i zf2hM~1)ZkDGLTwq0u+vZUw>ap#-3Jx-iLW7EO(hX&OpXk`kap4J!#nso3QuuBxO;Q z-ab-BGmv}!6#|H)DvAPzh)AKB^Pa!R(*%>EZiCGpSo5PQG86;BC{#{B^Y2Vq@Ga9 z03d%0XB>0JJ@`FqPS$i2ksFBcpvbAl#^)?Qy4f6#RE{dSL!F}0xO+9r$P_Len~~Ju zH=!V({{UTS>9>H8SeX>y0l56j*8?Yj4RRhP)SWept0-nOLgNb|0Rs$YIP5Y{6)ux{ zmXJoSB{6-_z=k6@IjCsflhCZS`GuR!3eAmx0(#@yAo1&0;?;yov&OklOD;BWw|lfE;}VK2%RNw=&|I;yHd;LPSB{C7;Z9J%&1e z^{L|p4&;w~e4$9jBl;W@xcd$$p4kH`$f~O!R%I`o^z<3_spFP?n<9|JoOL+B_8qF0 zg-#KaZjUGNw}CZF%ZrPxBStKeeC;c=PzGb&w{DgH0N_P_mF5#$N2Rb?SV?#eGZOAt zPqznqd+-OnePUr*0TPIsEPUQz$znatc=yC#2FC;qsOee^lDj!9ZKjr0P&wS$IA8Zv zAFWzvBUU_adss4E{N|ayV$yGBl%HNW_oac&qaQc-WDwa4@`Ku>nt2E+>ww3UbBuco z^IDeLD$l3Ie}5y|Sdx5)3%%|L>LE;x_&gRkRrSvl2(M`zvpV?+EYe_*k*MX5Us*mtVN z<|48Ds(_D}AmzUv)Lcc#Zs&;NFD~6!5LVP+pZA!Z$MH1<^1k)l`vDm{eSfV$yUKwO zeZ+juPDuPJTc(OjSdmT`b=-L-m<_drTnQAr2(V7@**tc|RtuNefwPbgb6VPZM7HBB z5S7CKF_3*tW!=PW?!d_rvB+%kj`*a?=w;kQ&mnB=QO7*h-8hI)v}|$*Tzb+KNs-kR zkGVa4%@%z&1S}50?1sz3m^GMPi++g}tvZu_rv&~r8#11APRfEqfDRq6v4RI$LnK!W4o(dy83PBOYJdVy2k@sR@y2nQ zLqvqPr4<<@90F*dcRi9@PYl z1C7Ol1Jwuv9lKWWRzygzI~c|oV{acW59?J)!+L?w;ZL|l0hkuYY_M%_4cGk7(1{JA78-J)VTvJtfcawbNNt!nh2Icp`|;! z5(&ZXr|a6U*$GVLiZKAyI^2W07c@qPM!Y@y*ewD9nY*TE{o0k7Py^-0en6Q3eKIg}R;|=o zXamlXrhA6iNRuo89r--_S1)%ui5bL*Vodz+(N`Yljx$jwt&OR!qb8p!B$URHuOdlT z?v4QD_pCirTxN*JX0Hq_kKT|=I6UM5&||k+si|r+%Fi04s}g6*jg;g7d146r-^g^V znGeY(IXaz%A~VdU=4`?1EvN^1n?&M%dHMae^a}fed$UUPd_XKgg|%TcuwlI8=k-=*V3Vq_9bZ(%!urE?Y$7L@DDi8KT7%U#8GO0+LFzv$k$gO1u~Q|GAQVw z0U=a$0Y(R0*e{GORI|4u z2*r*n@7iLYVE`5jw6GY>Y~N^e&2-Spw-IIbszq$gB#e40^OMat{t#Jo=2`X4N*y91 z31}zGw$;RakLYUQ|@ZQTA84gk`PGwLGFHlcdg3}XTz{! zJ6$f~_y9z5-pGG?M*u8Qkf3!Wvo{rPT~}O^)cu!GFrwvB-pVzBGoFKB$v;y}Mm?63 zt{ZjP;r&WTiO%n{vW$IL0g8iB(r@Oui_C`B*dXW6zJfo)8|rKOIhsB9(+OLTndC2) zKU2+f@>#c7V9~fE8v{84L&`)KV%XS>&5%%?LRiQM3A2 zkoe;IWW02?k|o=aRip~U{x$2@5|mO`t~%Gx{yLKL`$A%5jiYAhMrzi=k>{G!7m?g~ zx2ZIH`32N~euts_>nnECmHlg0O;Y03*ze;L1KXeK=j=W}(M4`uJG*m`R9&!0mKpxUVvjxX)r?qA4IEKWgcvdE07*bbPW3lRvS4Y3wO#|m@bp)~tD zD8A4H=`7^%B8X$2!##f?QbXoQ*%(OJs4Jf1_>Z9XtJ-y`y16nw4YXNlotUIRf42Ob zanJ%!VNC(40z&|Mb3L7`W9MjhmoW~XyksAHwh3>gZrX>2^U1WrGL>0cIQ)T=%7D%c zt;Zx_dkW8)*52aIDI$59+xHd`$@WO_PF0x`E*CuJMh@BFcdacg4BFMCcCo^c$X-X9 zA(oYMhA28DTZRGZ#2=ZdpgN6xqL-9^tUr$I7a3 zcVnkKS7qWU+}*Tf=joBfNfe5Ux=GnpL4PhYzCgUD(pX?^>Qsyo%~yr?um(uU&ga~$ql}(* zgU(Jt`c+8{{l3X$hCr-5#gM7w_Hm#0dizzQ6IvDv=0swJ%N2?_VhtmQQJv9}d*MT8 zj2;FBBR`)LMqQ(nJIQM-%3}$SzJWk0a>Vce!4;Dn&Ll>VY+we~+5s3lhB)h=<|^C` z2qVl@cibew+@}D5KI$5F-x4@xx~XrY{WGFr_PxnDLkJ9#U$eO15c4);B$3ktzb3sqP4JC{y{j$8StN~o)EEPB>VCE6 zcI|azIJ&c9uNMH3k@P>|T7U4d^>l~IHrBg`8<|`AW}0ZU(ni;f4wGSOZQ_m}wM!zt zN8SNONj~{MO5!1wTkEEgn>Z&7Mltw*O0Ro;b*$P0RkBR}r`vJ$muhrZdHZmr=(`tM*KAkF(SRQBDL!vNkJc z1P*;FjS^2{^2{;;Boose=|t(0cW@6QcUr?;O4cUw8ztm$6C9WJ0D2Cmr@c=V{Bs;c z=NZ5XH((B=WBKNl$&-%E-Se5r+km*}H~@Vq>poZ$o&5+HAO5PrhU_S9^DxVI1LpP~ zwR#Kq%Y+W0`Vd%fPhfq1lD<+{ zj!fsykdgc+7+61*QPF!U|S1KE1lonCx9v%9_!q~_{Z z$z)h%+0*#21_w;!^Ipgq`j8|a?C^got#e?rE+ZvTTYkmhZu$=N?qbp7!{P0Yl{G~Kj5 zI-K%HEX3uBJcQlhBz|INvJuBa}C{K{X z?+kICtMsoC@uj;-dSj9x;W9u!#qUDm)M~ig9@i zYa1LQoQ(F*Tv8a^jEZp~dYX?Q8WeAA5(l}U192ycHk@RfQtk-HXb0TW3ll&R1x}># zL1e}NsOZ6<2k*xnMJSO##?evjG?<_Z3dlhunkoz$DOe9`XUWbv=~-H+Hx`n{2OCZS z^~V*ZDam7;kLOe_9Fy9)jZZ(>v2Zh-;AHZ9REnEH^A6_EP5I~3jkSfF#B-(gE%KkpJymdskVp&=Up(@Ms9u9M#@HLkwmc;End8-R$b9Uv} z6(8-AO7jD1` z#EQ-3mN62m78yWryGN)W!}T?{9q*T7vCTAcB!sKm+ek^5{g;q^)aqMlB=eKVs#_9X zmcj&)tu$DC>xPrcd1RSc!?*Bn=+ZYi+xJ&J^IcDbG^t>jWV^kQ9pxKBsZlUNv@>&( zI)z?}xUOc~&pu7dh=hhuEm2cy+Q)*$QAgbbV<)Z%2PB+!Iu@8>X!RS3Zv!H#zm`Z+ z+0HUP>W{hrKD4$g$j{;krcQ7@{VUM? zQ2;Y}F}h3%-l0MHa(O(TUtCw5Y5**SVl2Qn%12$bn%vdDbgYPD7?TSgFdJbCPB?y4 zE&k4p17ZSHjI zud_^_bLLh9f&uIG=k@PipW!`n;`Y(j^_A4IISYj(l1hQ-xcBSUxxa|-ZEhiT2yPwn zg99TSPCY85x}!<7)}{=)YTSa2G>EcebiP=1K$rxOxoqU)jEoMr9<_5zy_8J}NtqcO5#=e~00*NEoloai^(`eOwMp$nWzr(dB2pN9*!h(7 z>K7xgTz90*HWtB>dwHRmT1gy&tR>n*o(Ia^K^gjSOMl_Zi0#G1knB>MzG4YKP&#+( zSyrV;+;N;0A(uGq)4xCds_Qh}N>im61j0ERY*7{1q>^#h8D{6JU;sLfDJ5~7qFTpn zT1FWPagf{*-`_dM6|tt=#{(+>#0JAgy-4;yTGiBKiSKT_g#j*K?FxmL?uFZ($;aPN zK*mo8y=AOtPI2avBRD5NFyQA0x|&@|TN*b6$O~oi7jakY4?Jh6?Ns9q>$E&?5c|r? z4@CzD(*ulC1nitMw1(dBZ{ovi$f@OUTdR0y)mBt=AL z%Tu@IkmY#EPdW#h+W8Mk1)+_wOFgIoZT18o|` zaswgBQlND7?cc3S9EcO}-*pJG(jWj}2<+^#t zZLgK4m^B+4>6T(SDmrigsrvFbYOM(XZT|1AN&(%Gz@~GwGH8}W&NiIn=Cb917ZXg! z%R#xx2P6Z+{X65i#cXcFjomtQs*=QGMqsFLNyDBPp5}l>C>XqwG^|Nt94-hT9y#>s zz^Zz#pB#xKfV#d3+M^78f#^Q8`DJ*6ENvB1jB97DS+ z9#rSD@m{T}kF+c95iCUIjyJjE?tzX0=hC?etaST3l$BtP-wFf-KbQs&Wc4KV$)@#0 zTE}zY$4Ko{C4^`0vy5)~`d3fAisxbcYX`&1>1YIvzDES|agppjD`*Cc9l2!gpywY? z@To&6Y6OT~y{pGOTQoV8P9FrFt+ORhuN}Rs*>9vqi#Y{r&vnZv?h6u71J{nVq9vXw zdu0?G+TjS49=XrZk80}Ni~&iA%#8m4c0KRzI2ANj7Z+!sUU9j&8T7AU@bAKD2HCY)QJ3!skProF>z)d> zx3@RdwwN%Wcy~;TG{f`*@1#)j05*1vU zb^KqGW6+1A=vfV0Kvx$de(gVK*&8g z#afZF+;jxieZ%E=A6n-$F?D4#f%9QU&G_`H7S_gVQIqA(WLuNIOpMfE<7I@lu`aj$Lpu$s}XwIONoLhX}GMRX|zF^=A6| zVu4)Jvxn`7VMvX{%s?N*6j|z9ySJb?{A+FvK08#F5Uq7|jpVTdWHFuCA&BM1daClo zfN}RuUYNH++BsS;Cf)Ka*Ua+FjnJ@fy@8%c`ewInq>-UEcI*4y>atwA`C<%$H)Hq$ zg5ekM9LVPf7@;l6ptSQXL4g%~`A9D?%S=b!U^(DpXa}ZxXMyPV_UxJ!nygUnToNRc z9D&nj03xuwF>EfbZC1`eu|zg0kL39W87Cb{CgZgvY zrcX;6Q&*Aa+N@DaV8<$*A0JdVJ`UE-5Mzm%e3Hw)Exdf{VEOT6V3_=K6GUVKXJW#G)RN&5Q{lF+#j`-PC(jI}ucTs-rmEd(~XSl&@uXeP=Su1BjG1;Eo9Zk%NI% zwOKCpJJ-0mxH8L(42}Tw1F)@6Elzk0J$GQ!hMXl}QeBKk8%945)2%zbgwdC$xKAlV z1BWAP5&`z6Eo<|(?Vn-@D0<+}OE)rH{Qg;GWMsNdq_w?u1 ztlPnV99~}XknkN>3xyfupwCg0O%g$Wrb%Oqh*ZsOGwm|SFk_I6>~5Uno}BipHY^n- zX(Tu(7E=~CV|PrqQ^N8(eQG&YTc$DIE6E21{Ha&W^ani-Ju5FV+AvuoZJEaALFw<% z&@^;J#3m9n%jM(cF~`9e#s)`EW8R^jMwqiRqvb%6l=GpBxv7oh+&ygN&Nec^pTQF z6~mlxBp5t;8j*atADGVO1mrOUVEcP>K+x+;XwbKny`xsiXwKrkhi`GsPGW*|Rr3{E zJ{OI=_Wf!Hg5ufMND-JQ!hy&u*Y5uSlTVIsomte5a&Wm^4!n+xKA)W;i+1ku5`tW0 zfC}x%2eI@Vb*r9AGoUIJuu2&6ccGoGYm{VO^- zw}n=W$cRn~3_ALp^v~DYtie2XrQ(W7QzSSOKGNR!BmzGZNUI}P?cQOI3y~8tsb4ZC zlX`>C%0S~DoSu7D{i|O=5gq-t< z0c?(aaa*bOdzhneu{0&d^zwit4tEw#TbvpRb~Iy2QaN7n?m5~p(fr4`<7PVhfz57d z_rN-;7TdQ3nTHuY&=b$KVOVV}ul8$Jna zIOhpGs^k@?;Oh_cbf*9?_Pq07E zu&&||MtrFNQOi5>2hevl(n^qFhz%iQ_sPlp4Pk1Lh56WgqvjY*%ujD&kHA#3qMNpi z#d)M|9XF;nfg$5{eqvjw1C9rJYePDz9?Pffk_AQ^ff)dfm1}dw zp0X#uEI-Hj)^?DsAIp=p3}@D~T<#l3Uv6ocBO_CtHWxw&Jydu1`qw#g6Wk*#NV#F( zn(8OgT1gC?=cxqaH8d7bMxoRU^kI%cqTyrD?fe2SE|zPhP?_D+n(M4QH>c_GD%;yf z8!vFZYixi90LQ&MfU3u-I6lIb;be*u!S`JN7_M8zQC%HAc;ezW05fBt&o$aH8@7y| zIjWb|5#8F$5zZYk`PCsa=Fb;fvc^8o8Bq<=#2ofgFa>e9wykMAQYb6GA#>l74STnW zJTQ@4EI4U5lI(p5=lWNg>UtBED0cv^S}=V{C;5OWu^cDRDqBWrBq#*nTZjYihPur=Ot!l=5y1AT;uB`>~P;0P^8a8+fhqvntd)Kb3xK= zbo&$#k^*Okz{%&S$6T5(CE2~$FmN(JU~}{}roh6fwN-F2mfQ*B=~)-wzD81?yCWz3 zlUd2!>Y|qH;`NDM?eOpBd2gMC`gYG1%j#@k`?y^7IKesR70_!J1d#g*LO=s<06vw= z-b=hmA$D<``hH*IP>X)?jdTEa&gDPE4_~cUA(sV5na0ze`TkX=A@d(3G2=KLPu8ox zz&y2$h#5TdpL)BPxU!jziYF`-9OO41)huu1sb7_sBa)H|<~%k^2ubkJqg>Sqnty>mxw?FfX`c(>=$2YCy7WJAA}$n|kLzN{N(*WM?rr z;N+1^O>^2xl?w85!6@a>FODy-uwnuEvxc06@-rXNt2TdC{DZ8yQ!}+&KPKNJ`@k zfw`CF2dQ6L8U)P|I@|=@tO|@02_c8j_p2$DEW0OBo>Z=J-#<#tw2(ae1VpoRL>+t8 zhMRLMNw_kT*MdF0s3_9;uoX7%10-YR1TgimHrd3`;rM+kxzR@qtpxS0l85 z?U1al#XfdM8D%4($8r3s%x@=~2qtwgVMc=V)Gxv8g%t5EEhP&r-Ft23D8j2sd^T<#x%9<|fM zbdv0y?=7QXH>gfe*ZK6o_O1`@OpCQ8XwCyiD&!E|NNi)C+0ATN-=)Kw^$a+;2xJgk;Htc-L$}{<6ij-Z91T7Pu!ySL7X^WNI zwH&$6Bg^TP8LJPqlxKmC9Z0Ta z$t9U%MHmdE5l)b*|t#P1`- z;^fI8#!(cnQP6u*G>b^!d`T*VcnpZF%emF(So6mX$r$6IKD{fv_;;YoXW>zGcNB3= zs7>~dEeFbx1q%@4sM-n6d)G1HeE|5AS@W;rx`$4+KP97ZCVr%`&RIu4%DtG9L60Ok z>b(X#fBLDd%x2pov5}Vx^7F?BJu6n-0Xw^&TE|z+gDr*!fsAun@JKwhIT-ctK?Ke+ zFhxSkp2DQgPaj%GBpmkdKoKwuO8&Icq|4>wh3ij%Zj=MuZl*x(=Ce2VkL8*Gie5~Z z;|FaqOCiB+!1IchNQv|Jar5MR)4ZSEg&%kfkEJmgnueOQ%(5s4XzBd_0G)9jAntoxQ&CxeY21&(RSfLVsJ)2hO5eoqs(qt4Xwv&p&kLK_-j!6ZSa!acd*_V1Gha7 z;os|A!s)}#JMxYRk85&rI{tmVMSUB6W|KxtXg3}Y73Nx}g)^v`5AIZ--VyvKJT)eQ z=agzXbPz(O1!I>g-|Umn8qA&~5vxa?+=o-t5yf@-hM9Ax-D*%s#n*OLLC}DDkELbm zR!-NE&j3Yv;|%G~B#ys`=97riFhUm!2VSGzo)ZM%j(P*%)~rVt$jWl8rzazk^rbQX z0HgzeRO6>ltt$n{Od?D?dBGg}8Y<#K@vZ{rzXpmd7d`Ab2dzw}-lE%%)Zh(rrfp(; z1|Kqm_*FZdGS=sJnGnhDJ5=K%)|?3kG_ETg&G&;XCXLoSZFBPtyr0InJx}58rxn9A z3Faw3O7=3}oi}&A9L;PNJo~}g9qy4kt;|1rkU*^86L?bk^IdD0)yfg_;AXu{9-LEI z5<`|5r_S$ivEtBpUi@Ci47Q)S3=5fGVmCj;dgIp|_*0(v=Co~DZPisvZBc*=9tWTug=-qAt1@{Fm!Eyvia#$o88|$F z>zw}pDx<3_UE7q-;4%&fC-51if_&U=cRY04@{h)%Vu1;156pTh;}q|6cv#?dl_p#g z=z(w~Yy7yA5MXM1AlfV!?}-T;zNE)&nb#-bk22+nL#T z9fmuaUZt6=g+W8|?jcD7IX~f4CyYliK;XAPKptGar#ze>?J1*yO^Ao z1byFHV8~sI@(BZ}IL$IdMLFaX$>aJ~jB!G-sb(i=7+*}(GNS^-$Gin3o|Qy2RPz}T zzEE?{agH-Wym>5RRvneIQk6%+RX78JPx-|;+Swvv3$)qCJt>)$+skKQv6aSfP-dce zN&&rz1P~p%jCQBC=1?~>E;vyAed@d1#?AZ8la3gkxb>pc^vwXg%`rRMg>ph3mPqH?S9WphwE7%_SnV9f zGjTJ9Ssj&FUTk1N0;sn$~EQCY|!uWV!$j zGTuuNKAW&;9m|pGF@OY%xg2d^$}^9z)1Sh$WVjY03rPqK2KM=zIR%C>?|=``*C`di zcqEV&0zWLWo_7*(a6ekH{ihuB5pwLR$$&!r#@aAP(2RX38fQlZ(ba9GwF(QOGr`9o zE?JO&z;_Tkk&g9eM!&L(=!VMM+%J(RevFO5ai8K}mBIGGu0G3E7PoQF9}gU!YPLEI zf(Ph-16mJp9kh|p454CIXg2b8lqYHD)e4V(X%%#AT`I)#1C&K2Uuig57lV*`A;=@@ zJ5~KH(${_BM6#p|OwqXNq!nchI}wn7AFXoBt1&7(z^Wq|2alLwHV@&EpL&|k;%DD* zvM6}uUo@%PkVg(jrf?2AXOT#0qtG8p5qZkeG?qp+FkF`Tl}QY%?Av{M;E;NX)X`y) zFCp@xxpt41M+0<`mi`v#*v@+7b6lQ}t49TlA*aH{GK+#Ez=|g%C?mKM4a3m6=aMUO z9ae2FH)kGlNu7abe$KjBQ9GG7v1ybYM|3@n2_RE!iiXm=|Z zxV&TMzaln4h{5QmAD>^=lV&ZJyg8&pV2K=LDxkuv5)Z%PPd#g>E#)!XT?RPHbpHSv zp>D3K5s4W783uZKAMvTeugXdgJF>ANghZc0>=CIXxmIp~`&Gqkw$L~oDin1KkT&O$ z?^4FV{Ntz`iUeDak&kX^#BWS{Q&fP3ze-SW$I$akk}y1`Om!59q!~R!5lUPWk~&Z% z8_&50m=Bb01dLMwBL}z~W4$yn4oT<*Ff(VLx_?SwJ<6Ph9eUM685s^UjtK{~O}vAK z>Uhs%Okzhtl|Q916@Jg<3}+}#K9!NG>0WR?RvUK!9zm_5e8Yftzijk0fk{Rja1Jy2 z=9(n&pA~2~Rx?GZM{bU>$X4PG%^P4a$F>QsV_LAZyN=mb_sfe{W=5r z*S2c53wIozaLjTIvIFWmSCx2=!xCCsBm@_?idHL;$X4eb<2=&?&RjnCSyu-qc0GI2 ze9Bmm7!2|&R`$wZLMpU@I1jg-y|ey$R$HGe5ENkG9y;T`YHU!$Cc;;o4xdUYzzX?g zb&u6s)`|k>y<>_1#WX%e8|#GJe;$;F6vF=Wh3POCG~LwP=8&A4L$NPWOl~OwpqfJ& zyoz$jM|x?d<1}0gB49hw=kwPG)KzRBT26CRrC_l8fRp{~oOA^7SvsAQN(00QD0d8Z ztw6b{02sj?YPrUnN1WcnH=Qf8G(lT{8#}qEjDBUhf?@$2!dM_*-N+d50b()VHGy>- zsXLZ(M?0DNRb3g`l-@E(8*oo6-!-YFSed2Cj1GAC+7YLky`L zh0UXq3obW+a8Kirnl6b@?sPFUP@%Q4)2!c7w<>VKUoJU2Gr?GFnbE*<$1}B#QVj$C0SGqDLsGs)jV=DIk^%aoDn*)+(M2w zdybsb<{u(7uWWqVypsdn$-RuqfkekWG0+lo{!K+|qpQXwwo~?ZC7}+$G9IHV*zvZi zAY&k$%Fh78%Y%|}+-K8@wf2!3EJcKJXK0i+Obnzs;LL**U)oo_9Xogs=aTQbLk zxfpdSKZN7IL+MO?I@&vVEp8%0XDK9eE>xfy8@<6&LC#FfZ4$MFeZq#Tc}_#vGPKK8A^PcS&8|3U^6!!=Cxh?;mlUtUjmGmGv8otEY}QoT}s@9ASaMQ=Y^hPs9PUSFyFRi4#ki6*tTB$Y<;%!K_^9An>i;arD{z9Z^- zlD(#xGTGQ}EYEF}cPIEx2^j;aUO$y_7nc%VTz#pSnO%2F?8Aa{=z9Jpw9y%EdNtR^ zUlOc_6>E5q4hlz>9_J?neJF$DSBfE!7Mj{jb}{51TJuy#kwjZ^$}{cKI_sDx4K3kU00R6Se)I21nZb zK2&bWFwA)Mz#_VhH{&mawE$LYiS+jbVQ!Oyla3j3KRR~oBhU!lg+2M9N!oG44z)_x zSkrY33q4BC;4tIMom=|VgE8HM^054lD6j;u9lUZ6IQFKzd$$<)a5|pjwJeh}FUoef z>7Mke!r?N%EQ7J_Ohsw!M9`CumA>+Wk}I9nG~+B2EP%QY0+Zhr(~P5T!2}MN4LDizO0C99tx}kmGtB^gg4ta1&_{3&<7Bw%Oc9;5a;S?l`Za zZY-j?iIJe&G+>Q{WFJf#^KTGnCr!Os?I7O-gzt&hgnwUb(QOBF%$rRlDOn@V-go0U zqPCt$pko}Cqa(3SMHH;YdU%uGoxZ9o)5F)FbE?Ih=8&3*Jsaw71i7TmMZSRafS)3a z)Iq4!)}noaZpAT+tCgHrCGWAa5C$fj=QmvA%y7c`z>qcqYp zMZ&|p&rzSkg0Z;eMrtM)qzpv?V0}K;P0 z3spiAH6KA)GWaof<8eglNF6?v-S79Nk{DosYLwa)j$&1}TL6$)O9ZH~mJzlUh+VEf z;8;e_u4@AFSJWqpMtrb{Me`t2u?NZyI*>TcdJ9{`z=DJE6`OUUMJ@;nk;Xu+y}kDm zf=8F$TWo|#sAFKoUkk%$o@xl^Un)JvESwAs0zQ@7YF-^?RtRyPdS{S(Rwd4c!5NY; zrw1WH!28GX=K`%wGF{U$Hb?@Sb~_6cVmKoMJk(AeCkWuD%5YDp=lKy@a7jJ8#}ee3 z6vkIM+*x_x{c%x65;P(;bRuLdr8z$?>|}Ku{{SkXHbVu=yrCocn3K6zl6`p{`28w- zdz*Kdv5a{$C_r=5rg+EFpo%BAypC5=@jQK09F8&1f4oQMOK{$7A>KIGfc$hhIBq?1 zf6gcxk#1?=iTt!v}hE4Fl$A&i?>Z?j(%K z2#mYHPtE{1W9(Fu&!8fn!Qr-9;)^ikI+))M%aAuCV}ckA`ekdPwTc^tZz9nqo;}1{ z%yzjfK5c|@M^MYt<|I`1nma;L2%>poEYcW=8^&?ajvNpP#yWxNMS)G3Ut^PTR*otB z;25StE3p_j7&{p7*vDMrpKE54S+Yvyt+);vAm3(x?_)Ut5y=Mx9-!j7H_)ynf@y7h zr(_$%C^n?AADG4g{v~b92T(~J0L`0iA2)3zFyc8_EPywbq%aR0h(X*=}-1*CGK$fdV9m6VZ?!a=mM;DM8e9r6u&bSu3?QL<)X6<=(4mH_=$zn~$`_j}Obd zj1EpVvi|^do-x>-E6;VW97P3`w-!&o=43_AcFMRQFz%-~_XPS?sGRbZ+286~t-Xc5 z`6W%8cW(e-?a3gIOat^F`qzv2&&A^M@_QJ($Qn2EVJLWwz{;}!0J7kWj>Pf7tldk- zH#Zu4+k)8>`L^URB~^#b6LZKJEA#@gZ6JGwGDxxo5UgxA^1uMN&(Kv}BR$Noo?-&0 zP8B|6+xOg25m$5>?bXvjVx#U=Lr;niD|L6C7YZBf?^p(UtoLHs3i+HaOH3?4?+ezQ_|owtdfy|!OnZ})KP1QreZ{C7mSQ;W0AKUo;~_= zQLb^oBOLC}O1M+bm*;fcPS9NNPpQv(Rka6(aq^G8d;L9WG#4u6pCdUVxHN)3g9VuO z9cx8w0mKSB^^t%FCQg`RfWQ5Ed%z)Lh!!^Lpz=xj(O|inu}x~h#^{`MDsb8SD^}CR zek9XK`zE)4A3O2q78xG7s%>Q9Sdyx^&QJN~kzj1(FgZ91IWO;l(w*NxJN+}`e~Ilg z{i6+*qZ4%wo?BzS3jY9wbeez1EkDjx)HGY$bvOaxm`Q+rhz7i9MB7Z50|S!7p`}zz zV38p$zyp&5uVI`F6}m&$@##^`bEeY#dl{{VXPPO{Gb0D3q3)qT`% zqy>%s^tRj_c76a1nr~`3Jx`C4Jqjf{NjnsgfeJ1*gc4*BP9f^0+@As%TQf{Si zv1fn10qVB;Q1o1OEeH3d-&Mo$M*0Asbu^lbeFf+N`K8T5UXAozb|u|L>W6h3sJK{{ zeK!5)4tX0FZIW=RZ$zQl^io$7Z)8+9_o6Jh|gjm0+09{q&<850s~& z<66cEY~>84kx0XV+dY2{^|1*fDy`LlC_DR)&+@Glli8IRqmzQpds)^6QcwaRNq{Vm z*KYh|F$Z#<QdZm09f;H{pp;$=9={K34pF^H*UOk8a<(N7|<=j2*td*f{!r zb$%(8)-0XifSHuxl=f5p$-%~Y8l*l{g?mV$ftM`E`<6kFKsefRbL_nT0J1t&adjn- zP;!M%<-+3~@O{6=wCB4Bd6nG<{JY4ZhdsgT(~KUSjdC6<)gyyWklRQEqvePx!OuXa z(X)ZuG|byJC)KTj7gu(aZIm%N92~2A9i^AtV0Fbos(7*+X^{ww%A*k~kP<+{CNh77 zvhFL9hTD#{1wnh&=xyR*Kqr8?-?(F-U z0KfOh?nZq$?ODQI+e*Yd%#FMEo<9%eO4m;mW^LQVhbtKv4bwk2;6^DlicO5wB}8PA zt>g2hQ?(d}3G8#yxyy+RvoU8}k<_mTp2N4{T9?wvG;zvNRa*qAFypoe=szmOVp>)K zhy{rl^zA^|EOAIcZz51J!vJyb)|`tZtk`}4-1-O5gxu-;Yi)#Xn&(5xK);?qV=cwm8Suw(T^p zlq;;VuHD!Tv2*TzpOssiNwYyPSX0m703<9(1C#mFwZP?;GGNJ#RxP`jE*EL~nv68j zkg=+wMLWy;Q8Ew$j4A+nC>Rt`WEVX+KfO3f zRRhz5*8$R85^+i%st2bB_oOn|YH(_-9-JPK7B^A4p$|s-Kux-h)eiby)C`+6W}*$n zI5h(#%{0?@d(pczfLdJBb4GZeWPzyNQRa=*zFH7sZ?lOrHR^UlWBZ#Mtbq-^sM=` zwVk)I+~Xt@*FLpiP47+<`kH>xv2qz{;hS{MBOd&9q;CyD$Or&F)vPDSf7YHZ2dy09 zp0wd{?@dfxhdO)`uQu}Wik?3MTQT|W0+Ms` zrEZIy_os`Wdar23?9rKT;LA8zH`=Bxoabl*=}G?p2p*Q|t0ebsp>em&+6U#{wS~_; zX~OH?j(6N#rZD(q3QwrDf?C~L&}HR)q~Dw2ztbew6`9; z1!-6zmfvJ2$U*=q%Q43}&sy)jlo`8v+_k+j` zM;*a6mpqW|-)|D{BO`#=S)NR>&bhK3d41!O=$Lp=KQV(5j1&;$nT^#@{06 zIURBB>ry?$tlm^HtY`<_9Z$JFwZA`xAAWif{6eR<&_rjElbq)iI*DuwEW)?7CJ}<9 z_s)9JU37YCs^b(^eC2YJ2Q=X3iYt`daC&fhD5(MBLrxA&6i@@Vns9n3pkjxm-$fLL zF6wYqg^66o5k^q~AppF^T3Bu;x+aP$lMtflic@lN-ij)KPqd!qm}e%6C=nAlZla=MJt(4q M5R=UmQ9(!l*{9fA#Q*>R literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123688.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123688.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6fd66e687faa1a51280872dd235a0838778d5962 GIT binary patch literal 19232 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�gEsnrC5&Xk$zVo`&F}TrI;Q&T|pyv{s%b~me%6c zho5m6Ut_wRudrO-({83Y8-f1-dbK3lVKRaV1GRE+>QKYNnHc*31wFOd*I`AE3(ygo zUd}&bL^ucE6*rKv;zewVr*#U(e8{(`IWCwa4{_~M*xuWz+brv}@Bs&!O)=b( z;iI@rn85(x;0x%+$9-b_%)L z%e!yAQl8=30*9d@iYdcn46kh~$2b|t&w3-&C4%BaPzr9_wYpJ7U6W)cP}VHqw~8sD zLY{FumvJNT&113obLmADy%%`uXH#*I10=|q#^wV)mAfvQmXYsCT%Evtz)?jN8&XIi zuupi#6>-0D;1-aad(v5yP`(lF&8=F0v1t(^#T1C==1Es@JbG6?b(e^4ndkYl5z%;P$C5F3q;b3Qx)# zhQ@uUqM>|NDeOsYdnDzblq6(rW06Vsw*bq0(f?J+?W{N4WLvHT`9#B|^&B*8O zoYQURNk04t{Ycya`u3uVX)6w}etx zB2Ci9HB>$Isr)OA`|&!g`*xQACD|3o%I*hhytg&vz-f5;oFt zkTJl|^P-9pOjj5CLBjy3s6fHmPtEvMi+Nh(P*hT5$Oo=)K%$D7MJ1rqxu%3)TQriY z`H>+i*!0gIN}}4u#7ZOEAC?E*3yLVLqLX$mOnT}MB8S5+KsXK4k8wp5Q?eQV*-;a+ AjQ{`u literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123690.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123690.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1328f89248b9de3f9e98dc18110b73f6255eee0e GIT binary patch literal 30635 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123691.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123691.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d2b5e627704065f45d659f581e575002b39e7758 GIT binary patch literal 20892 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 vL6G@ zNFX7(yzlSU_f>s=efRcM_e|AvPt7ya=kz(}IsI?x-xkIbT}>TL3`|T649v#^!p7vlz@os! zrojC71%vhRJ#jJrTQL52!NkJG!NtQTAS5Dw?0|ZLfrW{UjfI1ai;IKv*gO33J_Zg2 zE+xB|Djt=wJwAsIwRlu|2?3{CQ$LN#*K;lj2j6HyBHE{P^bFiQynOrul2Xz#vU2k3 zFEli@v~_e%&CCH7mR3MVCubK|HxL-&=N}Ll6ddv{CN?fUArYF9nU$TBo0ktOEh|S< zR902jG`F;(+S)rhyFL$m85|lO8688<&do0@E-kNo+uqsT+dnuwI=;C4d3Akr`|Ixh zKe#Y4u>S|vWBWhA{y(@V9&use;9%q6{|6T)R^VgBroh2v7sI1eHO9C1q2dsaBA`}F zFKOy0IEZ{|~VL7uN~~2{z{A&%>s`c#d&C zt4qpWUhTHjm^x_C>`;w2sEf4He|$vFu>r&l#WdxW>=df2I}*PozJl z&B&WJ&II!1calBRyf`t2dDI>x<}f^YAZOJeB;WUx}$gMk8QK zZFY#FbV*mAVQ7Yenh>^7fqnR?-{+@{OfE<*Or;vP*VEunq@PeebG43L*^Jqo?KibL zURvN!Gz}=A-Yf8KA*78CBIVh#QchbmU(@z+o()yU3@I@Z`#5^0?Wt7z=5%hTt-LmM ziIecG$$U5R-a_T(<2+FB4R}Fn0-6^IHZO zooitelgFm2>6o&E%3ODiKe~Qo&pTY8=jP`s>jpdaLT18U?7HT0!@fy8;<1mz92!(` zBxC%#?LpRuaZCQV9KO1&%j$}&(04>762k}96dcbE9y%wukV zTXRZZiqa-t!j#xlkHHH9F*hol! zssRBYB=!I^|1fx0>Isg*x`tO6xJ)iV$xjAfiOrJu@uv(y2F}c#-Z#+HU6_&6 zy1SWi7>jYoH_)iL_11=1f@5Z`>&N`bz*$ofem8Y@X7_;8^WOlEuNDZ+K*h1Si9}5L z?V3)hGRdGC6XB4o71vx7X@M37dx(i>)ku9z3V?A^WJd@3b=L16Mym@bC{g}58bm0~ z9h+$owk(?va*O1wc_>oK`5HS+Kd8Yy4NqorZc?&Q<`46v=*)@RvNXAIg~Ltro&gnz78@kz9eTeOzZyFf?Zc2R?KY`N%2;g~$UVse z=H!+faoZzvZ~&Fh@u)w_nMtC^iAmH2)3w z_1zvJ>%;!;KMZ+6Rh1VSOc)=?$DkL1^My?St?@aN?Od8GEtm{-YX@SGJyAo1Z;*`= z8t~XM>KK$!M|x7XIz&=YJHV-DqeIb{kuHT$Z(XB`s03W?_u8}wRikB}7fn3-*bA*? zZ@7H=YjVaEzgmP9Uiug?;@nbH2GCDR3wAob?H#ntSt<{%A?xI+dM{ChmMUN4$T|-X zwQ$4|M*t+S|6r^r&z-w-$Du>IdEB;1`i0l)j$sEq%8VFqb|I_&RKg zQ^|2IV1&9fNx!maqFs@mTLlr#L5TBWkdjCPKpp_*%>RVCido#t-gS1i&e9*)olmb=hxJ(*LaMI~|KA*aqD}R@&>u zF;-8k7!sy8nB`~k_9#D=HSg#pluWH0tUL!VxA_O%$nOQF$UB)Mwbb3j&-Z3Klr$(| z?_0PvP>@{bLDBiU*MsJMgTO%cQUMz@g?{C0u1OKF5KM+aNFg(xBUSvvn%gL1jOokZ zpd?C5L)q9S;MiuCukuk7&D~5Js8*CfM9Z;9H%Q*ib5cCrSE znR=A3Y7?}5h30zljHzfr^-&@#`mLBOE8ehO4@?X{VCHe87kmBYsl$ z5(yKIpSq9J3O4m}fv;#8Pv322NDpFlbb0A+@Z~N(1yvqFB^RdAp2}yoz`bT?&2YH# zbjZi-8SAIkFWTd%Q{t%#iJ-JE@# zy9d$bGdwV|5==-X^W9mNttk6sM4iw1(0v;c#yfvv>oHy3w;kTgwQ=ITssqiWj664XH8TuB3%qnO|o_4u_ty# z%*Vd-K)PJPh2}~-6w0^PooCCx;VoIvQjCkXT(vOUCY!Ia`R-Sa-TA$Q!OAC}!c*Q7 z{a9u(yA>1-E(eh_ZIOdb1|w`BOJ?C8 zOr$Ki>nXD`>hLK5p7Atg{$Rz=E&xGU#Vhh5!vCaQdiiV>@|UfzMWuYHHXO2{BZSzq4%$l!JR{ zXedx;zev=eD=m!VcN?TW#nhlSeoe$z`W`c6)~u@~VVGnBYH*6Z0Y&`!YC6)58OALu ztW682tSeP&^{7@upO%X=XB7wxjY*p|HobD@8Ea}z6-hg_SXR-6BY4Krn#dkC0K#om zTS%iVm-?aAA#G?oizr~l8<=CFhH3Jl+}M<3!PlipWrq+Tx$OPN%=g)-5%A+^9}?94 zWvHfgYJW8LOVF^C-QU&MY$<$S_lU-eu4n8l!z(s@Q|94?`E}-B4+3vgqXYztU=obm z-6xZBGZd}cox-|nWpF5(vNK!TGSwjM4l3~uc2i7h$B5)n8Wt%7H4wJtj&<1FFCuw#Fsxx-LY!e7V$LnqO6*MEz2H0?G7D?*Qdq2w)e<)4+39sQ=yeAk^g2(^LGMZA z6~k0@Ws@>7q3sGZD(~PVM8c*ZP$;Ih^9pP52$60v@YFTa6r%iXI8XaH2n*G!_exr| z$iN*QgPPo!-_5`c8IJ8yXj^x3K9=KYt~!m^fheR%SDubhzy3UxMQ)C7^OkGlR0(1QMKtk!4|=nn$>rMn1|&4dFFoL z4$xNNbEcnempW+~gkRXXZ@st3wQIAd7btJvm0zsUMGYoJ+{=rOugQ&%VB$k}QSXf$ zg;UHH{exNYItxvh2H9@vs>dc4e7Y3>9t%-fWmGB&mh>cGxik3pHy9Mix1X7&- z6|h51VTx^NxFobSkrK*Rv-iYUgW5OJScATD3{!)?G{r~;%QV`oguh=vpP&sLTOIIN z9XXcunk$HPDNC{)NV8%EhE~*2LP8e&+9s8P`hq43G-GJbYUnIMIfsxjG=guCJ$aCi zdW*l$tT_W02oswWC4z}r=@j&nJ59XOEyY{@#4vBRPETX>LIw`4p%nzzgpHz5Q|=09_D~Yqh6!DH%R7pJ4`*aFaqo6;AHMwKEGboE_f>slbZu7Dq@+rb69c+HJ7{mvBzKmMeqLCE!uMMN{=v+kT?PMo^1|e#*3WlnxfC`!`!MMp5 z|1e^TjdEx*6#NE?L`g#^Mw_06KFgo_X(PV8x$9p)4=}YE2rBv&9hP-xz>pS{u@~ji z#u%=OEX&+}>hKoT_~X->=eX6++lpbN^%UM|iE^tB#|R=j%E$+HgovxwU(v2iKp5MJ zcNWTy*66?asNX9)X$RjrKvx}Sw2C^bnnu3GwnH&f>~ABSeG9KHR)_3yoNnt5>+#d& zS-)SH?G{gJT8UdSMT2p;U03Ary3mRsopy-D=kpyMR!J_ZgSJ{OqHMFeLbOiF)U z*HvuN9`9myFPx_)a8jN}+uYVe0B_QGA*0oCd*hBty)RuFy|j3`1iy{e5tocM7^DwM z$i+*JrFYGe1`INtda_qCfRJX|j{4GYP$d$W5S^2eQJZE#3)Ph{`|$Mf#D9r9)hMjs ztV^5g>C2dQh9ETcEc4XE5^e1UtF(4hIdcfN#)553D2#?w05FZ08lv|muT?ZOKi7#? zB~)W^@QWF8WK!qh@vD>;i5ZQlRaNiMFhH|OojFT!J2cd}B5Zys5*4w`b;US+uItrs z)(t}mudSez!G0wdjX$dGC&_;ce2blYnsLLwyen2YFFs;G)0#+}a{8b@3Km zoq}Zy!t#n)u=o7UI}!ii*}=NpdDG0qH#|VkRG8@%j5B>3cU+dvh$sQzB_HLEn6KEa}lFrUmQ`hz|h!Om<>T|Z|K{vr?Q*;t-p(DD* znstCz>8zi}BrQw-!*m3ClL4NDPa&LU8vTENa8#bxoEG0KP2cDeMErd1l$JpqR(oRR zXKlG@uDujFi~xN3KGq_>46ZxHetm$y&`Z^ya7(CkHh@+4NyI(bmdN@nz_O`WXm`Jx z(dunWy5|@T-B7qYLo=XhKK|YMsoUi96<+orY;+SUG$XMEeuJ!)rP&7kyqw2$c=oJu zK(I)VZdu77v0@>P8CjM9+cwPz1<>b)|MgbE>)NE0Uy5yOQ=1x35iFo3r;N|~Ga*>| ztaI4d-6>Q#Q{1q0d7MQ$FBhTrOn2biENO#2Mr>;6wQ@c(aot!?0z=7tteR1$?4!t$ zcji@D7ffWL0*Jm6G+TEyp24P~TaBoQ zqt^Ak=f4)ka+kz`8oA^rQ>d|)&TQn+ldDavAzhzvEjOMOMCw)#hWP&S z3c5gh`iYC2md{oStckeGKbQpdVGD&=1a4ca+|*5UyjBvNwo|7T8OFJ?`HJri+nXuz zZW2vrNJkQ)|QgDxGoq@-7J52Dq$CsJ=A zC#Qmk)7VQZs->&r?hG-0V{pflUpIdQ`}~}`!tMBI`3C!NO0YA=RQn#D%imk8dfq$8 zsU-~yk=NrA`&w0NPy=Fcor2z*Fu0`qcx!)V=b|VaK%-73BlwR^hD&=yN1&>>x1_7$ z-ek{vM~7$TMw3}IYJ#Fe&kTYqM>clvFjK$JdDo`e|2d)E-eUoflw-%q%5ff96@xQ2 zzU^S-&;jt_6c$U0QCvjK-m*+l_hvaD9dV@|laC9$QE{B9CuW6h+KhBsicuRGa!(@8 zpy@@Bxd;?L+wfld`mxxwaw{PvFJr_Z&PDp5c6XL&CXN#X{?7chPwQnJ;|Kh7XtN9j zDq&~NQ8HhfR%B#q*y!p4b>re*n#cJq5Pf#!BCCr442C|Z7393n@5lxq*gOB6+ zXoQnhd|^fMF+?zBRMO-(%0JAtCQIa>n?IZZ+vX1}lo9Rqr`uRhx&n`Lpm|2uY{_LHRGoZhSYeI0}&yl!w@>Q(eenJ7jf0ej=4>#xzO zhuSZ%T&%J)mMEXRC8mlSp7X2<$)=h{-j2%TQhpD(OXU4n?= zryQA(;kOgS8;4LZ_lW%L9KzZyaxY66J9D(X`-wRqP@%?hCs&e4y|JN@>cjr=-L)ih z2_|IhiZO%;<>Tq^2Js;v8fFzg5AQz&HJ7;Ie8oa^T`Z)HP5=Jll9=GN_0wE7Xi1E{ z3xm{J_T@-Pmgu1z>jSt-^;ysBcbiB0m_T1?_TAzGbLUshBfK%!C(sr_e61ZEmi!~L ze;5mY;*nU=SH+ZT<;U2bTwAb16u%IyD0(eEJI+w*U_)JVlb>yFNRB?M$;Iogde>s+ zt64zHv$_&5m?iw|RX6l&6I3rh>~{u0XjdfI@h^?qsuQcs#ajW?&1Q&~5S5nN;=6^K z$sn3MH9w`ZUm9Ba<)>MBT8~-cfcaFw&Y~qeJgJQYom5(lHGoe{zG|3YltKmiz7Gmx<$Me~ zqfDEvCgs7_|IY#k%Q1O^rqb4zgiXS@_!Z4OKwoAF>y~TO>E`rJ#HuD;mP-@q|09yZ zsaeJb)cppgMnma*G#oz0{MBX)CQ?ayX*WncM|5+klAz{#ZCuyPS-IznM4?b7XMM;9 z_gCRFq2#$Y?Lznm);E)VHAQ^yr)Id=oU^l1r#c$vorx}V4wvhB;I5h$7R|DO7aXfY zY;A2MP_bOu>AfGOpbeqU#GdNYj4g#fA6z*VUz7crxAgLAwfw$~%BDJ7h+Ekb$6HHM ze+f3g9GI?t8pLT8|L%f!Rgvhq!*56q808f<~4Zg!^-!#PW=|UGG47xj-Alk z))VYmD-qnM9@s1{H+ zk)7JQVvUB=biRvBY5KCHsr-$bkL6L$tDc_dDHp|Y3Cz6T@Q@wFxAI3qC`0^~0!vi4 zFW2X4E|Q{ma@b5o^9LVg&wGdCuSe>hd3~G>@XXi_@8NPzynA|x4@8m{$JSrjW7}?k zVC6mvlS2P6dfPkgZ;j3I_PBO3`}$7?&Fp>TEU(Jk?L%xVU-kPA?-AA2;nNKptsTs4 zcN~3ObPe1!q}S@_?{R*`tQnfByDyB3EG%7LI^svAu7aVU+H^l;p`Z?B6qVUaa9u*Dgn?m5EP|($r=SRA zNod|YR0{dY5cW1`&T}DSO`Z^DJGY|Skr1K5UV&yfso?2L*XMbsW9!2nOPz%(b$Ij# zZ59$EP0+@Gyx2$at;Y|91%TN=%MBQ3%rJEwm>Src;R(!MvV4}X+M|_|!Cvw)a8=Tx z4Sf`5HBkA2xXXo#z9J!PJ$*71#xvF8@iXRS)&g!M8ykiFy$SB*ask)g)5 zOWeXV_mn};KL@PnzE6%cz}uis!Q8U%PBpeodt{XRXkx2^1_tic6Y8&JIemuue6_aZ z%{6`{egmu~+da#33Pb*-@oAO-zdQ!vg)R#I!yqOec=jv@mO(ouXM%r;JR#Lwd62Q5 z%1AYrE6XzwrVi8dgh=O|fpz>j_plXRizKG$8}k3?mmW)-*c=P)_Hh2Nzoq?qi;+2u z4R$kj;w;?UcFbej(Wv(!`{wB zx3thQpRFt||9c8Mdr5t!q&m^Q#Ts{jNl<}PpgeR<(mn|k__tX+w62WAXOTqvrrz@p zVaS)ekl5Bp=?yI<33wpO)sBdK!I-C-zSrel+ zw_gg>Bz-e;q#O!ekYvvpSk*TRywKWao#)ms~uOXcKglt-y;VFMc0GtXxlE-ktW% zfBBXbl;|F3DI8D$MTy&}L3IW01|8e+a{bj93cGsr3S$bYiA^Q6fr#d`?YSXI^xWrp z(wtbZy`)!#Sly~r!ZxUUme?3J_VV!YvLa~~VkPa77K1hd33%}c3rm`O^|d^m9We9z zFxU99IoX0eWJ>={FcI|BZm({T3g0kr+qhykFSJB z3j9@aLHAH^Oa8J)w4Z$3N76Gc;P0VQA(+iU|dd}wceX5SFosvOg83oG^Ztyz@_h<4R$FS}8Fqv(4B;~bJy9-A6?(hc9 zZkJ6vp>MMmy9v3?cDE&OZpa&d*PZMgjNfR-m-p{qES#Zgxr^{|w!E;LkkaP<0)67? z(d24^2b=M*^*<5(mTZZCzZ|$X;Z*Nr-YtHz?p9Q39HyS@5_e_|m%MSo69Ls$ zOT@qLzfF%f99a1nFxT34zELX-KT$r+J0rp3XIa;wdyWhTkI{RFSY-V%KF@fyLVO6- z^1)`({zcT6bmq7^!|HPa)3@{qoVld=NCthMrgEnzvtBpq+94F7-Ls*(Le#{0mu~!= z$T&YecmLoA-*>T%+K1Y(mvnIs%FbRX_}*GRb1a{-X_-fhwsoA;oK#rT@Mu)0*+Lv= z|76GsFUW8Tvni;MU#3EecLfqU$Y|1W>IU}5X{VI5t`V=4MXLqujSj#K2LCXUu{tXn zE;Gb+j^+9gU72L%-VfsP6lO?gacxU}Hows$Km(a`axjxm@j@hb;!jayI0Hg4*|Vnq z*(Y7Lw1*BRxJ$Bu@L!uEhid$!+w!4gVLNt#xe z?=!+xBwBwd#P%OPz+}4?4kBIEmUBK&&ooUOeBMC;vS)d_Vu|jS8n{kFM6O9{Gt)Hd{*G%f5M`&tS}~ z= z^6t!55RzMx4szWU!+o#YDT|GGZlL|c6F8-*;k&H1MqUA;HCFnTA;~4j`+6%HoH5k* zW()TiGQDS}Q|r35ZnuBp-1>rlSL`|eA9t_K7tqNJ>CRv-t{+AbCZR;rXq3VQCMt15 zArMEwZ)7KRs>_psZlGF#TyEtpG}BSfwBx*}IPfDYzwJ{Wt~74~y0guO1H0aecx!XA za-W%Nn&DrXV`7z@*a8wCw@R8Vicf4O!bBuYNx#dd>QP!KZ3k%#6)Uxfd=v7J9WrD( z4|-D>a_C-s@q)q@lp&#hAW838py!hkbR2Y$s@r+$N;;j3(xwr4MRA6CL&NydL{^r! zxFYzv&I)O!GaxIsgM9}*4O0g}xKDI$h_eAUOhaGZ9U3Ux599p&Q=8|FEt`wEcucON?zVWI6;g(#Y?y6u^XALpe4TfZfe2q?X+xKnoYIMnPu z`g?PPuj+}8drayZq>d=w(^p^&RGDnX3g@~!thVm+sIPUE(y zN;odJEK%zhKI(IRtjv{iGsi!?mo+bO28ExGz5QN1miyl}#eOX%qsTbkToSER4Iu$l zO=^SUkS||28LO7I9#FKg6fxAqRmRtAPUY3`9g;uQ_Eo=KoqCxml z9AAJfnNrEi%y{*~pl+1Sd;Rr4Qbqg6hl2-bxWthyQ;720I0VBp)_@e_P(7xR>5|H% z#{{%{&CPE$m!RKo<4WRDno{(&XkhwE$#1bMgr7)g_K{lCDfmiSBVilm+1k4_QobA2 zg8Mq{%G6Z2Zs~ViH*xq=wlGu~ON`j9JHOeBP&?BYJ&@M<{BLIEo6A=M3oANs{}owQ z)0qgV<>3!6$nLV+$iLYUhlZLLH*VT|c4&!mNR?G77SL3jgq@bG z<2b9gm|dceY&6YUNx8>G(XYus`wZi+blW`p3zY?bROj;aIX*{8GuJ&>erGxxR(cGC zdzDd%IgBUWOufCoUj0>Z!BsGAz?KaI2(!z*_L=l<&p6AU^;+}A_%ZzEa~G9_ySl*N z4L;p2zBNW(Y@|g?YoZIuVBWiIuCR)_X$b=YBA?WP=RmLFp!tD)4X)?U1u(?L%v|S| z+LCJaIE|w+#NeTeTIDrbTrNT9We0cG7{3=K%54*!%?Q3U|5;MPe~a#7^bvAvAeNrk z5$eP~vKlS;%y*rNyZ*TzYmJu7=iTs(g-biwCFl~540D=hZ-eEdH@h%+HxWzN6P!9{j!AyE4G4>@kxf=nkR(+FkFk|ZfoDDvsges>XWP2>J}`% z0tY#TOq=CQBKIO9;;|oT0derH3C}{h*OPOcF)o~N!{_M@S{JlPAJ2N*Ty*`JbC{xq z^u8Xw%^AIZU$B>!N3GY8l3-R(XR0YwucGZ8AX4Oxb(A)@F=a35tzha+G#&1R@>rOb^IqE%GWwUsdO*&ax>2>N;DDs~G8WO45QVd!QEVHt#1QGli8 zrj)bUJ-#bP*M3*3u>j~zV{xu&H{D&KH8RyZUr**v;kS}>8gOSeX7W}4BBL!Fg$#x}HQM}~(M5hN; zk)Zg2fn892elACi9)T344m?F)BCWviAj+sdPiNNxun<|4RqaH0WaF5pYifMP72!M^Hp6il^tWeLvVi6p_r$x(vF9wP_#Imt%TXpHk(0{g zo_3`tsoT>Z>euAK@&&5x%!ZN|8Ur@#gn{g2KF!j7Hm@_UFhh z6iJXf_yb=jPq2TAgN>)_2qhU-QXp2hw&ang=eHvCp+QDuEvmWm$MmAqq;&do*ok-T zt&U1hBDpttL&(^sa%xy?kyiVwI~N1l(@#jAdK=fVaKdi|!S(bXgc1cv6t0|~$NRu7 z0!iLF$H|V8Y;Iup20e@Ju@^E`YfO0=KPA%ln&LPj`#XckhecY7Ny&t%@eIsEFlSkl zX`qE>reV8)3Kv;tz3G>gz2w+}aHQD}y4Oi^^!>>EB0+@sV0P{=TU8Q*6T8rDj}`HF zRK_K*MZY;QyMuSgPWrS#2XnHi3y8(1?iKjnrN--OQr8X1+aJ?+nqblB_V-ZHZx|fy z>9Dj`cMJ2-c}B^-QTQH|R@6hj-Y$1srrg@zII##(iIywrGL_^u&OKmO7xb<3iKE{- zQ@(~C(4Jq!n)JC=;ltm`f9QN`f_CU=3wPAZ=X&z(JAg|}hg?zHae8#xq`XQo8nbVN z?bzw#%(JG>KGu`IV{iHAkcaQRkb=fZsn)NyD~~DQccw`fYZPk~{rFY9Qh1fj-P&ET z(GNwm#O#SWEIPc=mG$d=sW;lp(3z+*?j4JW520wG7hz+ntiVq3@b0HiK3FlO3-I-k zucfMJ$^OF#3P2|F_OGNM1j>!Y@ayq)1KCEKTXVKGjN+U`_gdGSu{Jiv@pxbETd0E5ue3)aqXNFVP)0itAJdIDq-AQgI2(n?H?m zNVucX2^=otcyr0Ea>|KBZ$TcD-2&`EDHvN_=<-;j^1Z*kV<8)6)mt-uaWH;><>&9vSs`6OiRqz3e z2GxbuhPgtIy&O+0+l~FVJCB*O^2cq}lP;{DKDn;XITq;wXne5^YEUjyB61OX$sn-& zz9Hm z<H`zeI7*RdKDsVn{K}yY(?|n=kA;BGI*3+yOzNo6 zkc=%l*;z;_0{&c8mhK}zXOCK#mckkvtrud9whM?t%{vx4Jv^4022B$Fs(#l{GToDs zo+<{GCzX%wE9A~D;$HsqWYj#}e z)_gRdTsJKqy`g;#l5wIW7`9Wr{!<$eYW+Smcsrp{R!uYFoF4yLDxJyVE$HVyu9NW3 zXZE(#xs;PQPRxCjff(WvkG`#iUV4pYII8Xk>g!%tRm~?HH7zU0I#riHKi6nvP4|aiKGBOQm+uJD+FY!ZkWCe!Dd+vx zPC_fe&#E$6gxyH^&RlLP^zHKl!xUM^%n2e@d?lYryQf<#qf~Luyo#8`KPQ#FcjbuP zT-yEFMA?#3fBt$*Vth8(Kr@f*$t~r(rREzSJq}jtg6(mcyI|u|yM8#izO5OW9m|}G z>SVfD`a0>|^y3H8dfW}k{P}x2G0rnoqpa+;(qjtxmZD)bal$nt0m4wpK_>>H$)x=h zOQrH*jp;x!)TLRnnC^Y3D()Y#7XCZJJ8kSnuVE(a2maZhZq+W36Cq)TU#QcNdZemS zh&QDFq==v*ap{2jBSjbYTEgqsNX9Rn8Pcr&dD4W#hCV|&{WXDY$IYXZKYtd5)RS`- zzhs!~zMz)LaUpbe6c774vg7^6xVWeDN{)Wopf$0kw=XfU64oT3k@LIHr~PCt!Y&(; zFHehz(~ch_#>Z6|j@Udn0&Xy$2eeda;d$Ed=V#^10+JW^U;Xj>D~p_t`^!}DMPl@A zFyni=l#y2-f)ySf4Gks1HQ{e8FJDraN7+Q3%>2UuTHtwyJpKGzfxRn`au>r_iJWE) zw8H(dC_t5{rYMFS-Nqj2lp$M%5*(>RGUr8_IT<^6`MjbCd*NqGru{9e98FrIW&BD8 z3@M15_|ig^VHooLBTrDm=4PHoC=8fk$!6d{2oS z?BUk(X&<=S43P{qG`9KU)LMH4yrC3-R1Hq8BF{`f-&U5HNmWLHrbF0US8oo?VffhJ zVf}}men!q!x?%JFv&@>e>=XrBVfSSs|GEy;HBv6y5Rq)oyatS zWO%q>z`QKYv6ka-b*H5CAEIvNPt@rmxK_qG%?=4kOlFh=7Rl;t+vW3g?V{IpdL8$R zdcHjXnr(lntQ&cLFG!%zbzNw}U48UX$b!=6>jv?b7A0NnQT|C9r%Fi+8L?SM)6>6m z$@nObhk})|(6`|2n|Rk2F%~9s9Y^FS+f5DCK+*+J)5SL`ZB)AqR`jC3st=jT&awB& z*qXKy;m{WXK(+WGIi$T-S+bFsN0vF0z=bn3swpeKmj1}}-Jp452aTu{tz7vi!~m~k z-H>$fMY>o>j-yln%X}dt#G=G2d(`M8WhjfIUQ-~8r+z2|K#MmnAX}}ZjADRAfHTA$ zV2ORa=aQFTnF?o)?7p$kcUHN21J4`?{+yUZzybc#>Q*g9FTY*CAy*el<^IUY`-|KF z^`18CT$=fF8HxXn(kI~AGjg8J-xIGNv+Q+;HRLZt^A1Euu&|Pl>Bj^$=qIcb39tPH zA2#10tn+^+uWM;Czhwm?#Iw`RIOmw|e_A|+)RS~$Kpz5D4MT@;IxU;?b?nA z)aClTkd29uYMvXc#qEvh>bi5lAjBt;J+VQ9bSl8YEFV}ljyWc3f~Kg`w5qndt;wlS zbwMff7@U{2R6#@NLxE!k#izKkCdcG=$KdT1?((Up`sZzxNY~%eeQTcSCTdXWYOlgj zpZiqcRU!6PTbU%Ee_(40R)ia;%_nAMueE!?aD303vXzK!LBr<3KkOD5p%KizAF~ew zlsTKbHQe@1i$m)DMo@7__mVkJ5IsIa>1>~4Y%qTTkiG4>k%kw=7vb7vy%Kp--XDJ`P~KLwDDW7G_5GWDpdD@Uxsu7 zY1by_=BZy(;bqwFW_x5Xz&>P70`>3Qjx%#_|+XCz{eqf)WDCS?qxk1-1?p*uzn0J$H)d*?qnXw2d) zbkk^3(w@P^+D7pJ#b{y8bAbbYax#4nJ%LAquyP}~=93gisYiz5+YGBO|8L1@$|8FJ z*`i_;r;~?hKT^;h-PLO`;5LGO@qrb*A4C2|WSCj7CNAlURzNB@zZQ&v)ppiJG=TET zMtQ6eU2R{8s%bU0)lz7Y5Sx;TJ_y$SE2d%pomCYQL z*H7rBkJjZ683>vjbuDKj>Z3|&fR?dA zV;)zhDPVV-fV%Pj8W*k!Apngz^&-Ji_{0HrR>yms3$uJ}sc!$LywI`y$H24)HzY%M z0?PA<1|&z531?^_`R!w^v1DCV(UyyFUmZnvhPoGNNws)-%kFnM%xY3mE6Pw14V*fS2qC4w3@OVKReX&zDSdDZ-K`Wz&sDw#Zs1xGeH( z1&)461#BB(?l(2?Vz4|$X^S*%ui&tQ@4KT?W#K;XpO%>)cTCa|bjRjd`?Ve7+04>O zw945Mj=xg31n614`{-WjuJ9rZIO!K-lD*41j}4Jlv-KCyixaaiK z2P*UAnYLTcvT(6VQ}owZP|nn@8%PeiBL`FZ2BC{HSWPYk?XWY=@t_WHUs1JE>WcwU zB*E_dld#e1ntW>~4MQKR$=^*Ga`mfUR-P``a|adpy2>)UCv<-M=m0q~i{bK^+L$kC zm3;l%oYAIpSa-&JrJTXziM2G@EHG`%Cus*d!pijyI@^xf94-Ll7k3V$DniM>B%nJM zs21p)l;)3;j4BLBt@@TtxZf>k^`33Nr&KT}dXL#KU^-Tg<+|K3cX;N;+^fx1 zz1tgOYk{`2ysqi)f^RwufKHE;As>SWWV3Bm9}AS8euvCfZBLQm@vT}%3p%VA4_Yjo zlD6(!{yo~Sw%&NX7%tz%lJT(JC11rwN8>}L0ZH53@~?HTcI*Y6Q3wdFaABHPc;mXZ zRSp9ymCLndrQkJXZvD-noqhPQzU~et^xAsM0c-;H^15CCWvxUcd8#h)ou}p#Fnyy$ z*oM-z42Qk6pbI)NbDcwDXMO@8tm2Z|=A4r_up@O^=LIeo_d45Sy#r6>!h z{8iVE9(P7|o&fB7H#a)n_T_fxe+Q=`ea(`m)nbAT>NgJSMcut-jfTYCQ=+#nCSO5M zXr{*kFCWF~oe>Th_}K2EFliP9l7el-*VYMfBoN(xt-_d06AJ3vnyk0V1Dz(a$ z)_2@_M$4X=yq)!B1_>|vqN2=V1n69mo-3ty_TjaDj-0y7@f)=l6BFfR^TnWdS+(bU z7Q;xOgwy%h_a#oe)>6}cp6Zx>9HQ}+`Wh=2`7crPpsV)J}6=0ULeyw323hRrl_*X6<{u`srqQUYBk z!BQAe2(B|Yem{hd(!PwEZ9o}smE`K?N}o~CUr7zxYI@dNDOiAm2LkJuBPOVSX4F%* zD4b_|oKEB&+*W`2d!2k!Sjm$0$sKu@esozt`n=a7<88>4%!}Kqq7&v5ISDt8x#ojj zlbkmp4cwc(=AlW8LhDmqZjG075zc_0zHXEj3R-4*3RP8#(;)&Lw$raSjYj^Mg+3h1 zaW#+)*Jwxp{0@-T*~c-{@P%|d<6@cu(GwsQ(>#4`snD4AWInhI;ilbLGnM_7p6N1C zwQN6a7%&!U8UX0o4~u;zlEtH7p89Mhi(A>pm!f8_hF{He-tB({{saO0<_~5$IIA&9 zimn!<98|VcVPj4ix^q`!o8GZeh^tY|MPnpy7h_>&KD8>`5#F-WdVid1Y!Z>AZn&u4 z=iaCpO);F)a)vHvzmpPo`_12_L8D93Ss7(ikqWY)3GMunow#mDZm;o zX<^x>8h1)nT=HqhT@f>CD(py*nH9QV=DXVoKhaR{aB%12RNKjNPT zUE9ji#Nfn7-6Fls*li%!CE{ga3o`Nm^q@z~x`m5cT(^u7%~50^w!n zuxdti$ItSgTCF9-d$!LBL)nD|j7T$yB0UeK2a-x$ugjc@WYLM?WMjb<8yugIoGz_u)|XA`n$Gh*>#^|_pPd19891*zxtZ( zFi}gCe8;bOqaA7&m)@zF8`h&~8$D~q#G3T13g5pZzsz}+V zxit%OR*7UTGf=YR)rP3?S|&q88!0wa_!NW+u3>VJY^B-lQ(#iyQ@FWEwo-(ta4Eo1 z%sx^el;E`{1vmjqn0%yRY2Xo008-+nOvM-!xr3Dwd5h~okW_dXqXL&R z4n!$xVW;Ak0+%sdsE=(MYD`gzS05}fY z`>4RamHEl9NbppDXwgS<1$oY_039pQJ{P%?z^igAu4_Y^2FG1HTHTP`b6U0+zdDe3 zH7|-R;ZeLU8oAvrS1p2g2C=c-bJaA-1IE18(#8lC$mp}a)#ke>c>=VKrgA1k>Frh* znrvf=mjD{jhBy+xN_ZfS4I=YMKpiQPBjgUX%y^pGX{@9$ef)7<6r}B}+tPl_{{Tu% zc0Ov>qw;R1OSQv;-`2UeeZ+F zTb2qlkyq2~x#M(BeQF8bOIIFLj0SoWR@95AluC+nGn{il^74Gn>s-#i;i%+{vZv);67@A~fi0O1Gm7NI-7aK(UklZXuISBONbtQwPm;<~ z2s?dhfok+$5L&{>`AYM2gIR^xIJtTF`T1#C zgkex#F)luS-v11OhK-Glhl@w?{5b_LJ(!;N|G7MN1BjlXouhdJ(HH>eL})-Fw8uUG z?bCZ=qWxC^{Lg}h4#dF30zJdV!F}q`NC-ej0|L=8fS8yV7*D+ep4tHzM3}_%JW^OB z>hD1euB5ynNd?asrR#dgG=7~h@tM1YV&jm%prE9B$;`sa#?CJwCM^{hZz{1kX+UA3;ox6vpm$#2EJnUn5L}XNSOma$UTKcDq%&aekMa3nhW#tw1 z-x?a5np;}ie)RVB4sv` zZRMAVwi};60%&oM*mRGGB%=yeH4{h(T$Q8#y6>wv_zp=D%U!WufNg4L^YY+Wa;^`x zfB2^*pf{Q&j{vQ}hCT^y@#$v)$R*H9q3U-6MgKp03A0&YoIIldWwO>R|GYMk!0c{0 zsn?1|8ASd;I|NT9ww=+J5qP6>pZ5t}f%9X1*`U$irCbTcvV1EDoF9$!5kP)mv)K9G z)=Nkvy%;ks^)>A00Ws@@+fO)7Yn2KAoWo|l*D4(EMyIxyy3pnnS25#xA78L|nH|$X zHVsnOclDKOFUbcR-Ihp_ciM&F^%f{tP_-QDP*kp|F=Fet^{rmo8@{1L-FaQtvLBxD zroFmCLT~@9n0{kuSxS;c+v&tciCr<&+-aT^xBr7Lyb(RNpHFNj>bC9?7#X2)a<75z z)rcj-X%yCFK)shz1cQWNzd7xay({uSDlf1C>08=9SA7$qlk*#a^zH}GBHNEH!r&{? z+j@)1FO=6#^x6*a^^Th)JD%9102z=<)h4w4w(^2s98wfrBIoYtf3i&clhBNrZ>5>v zaM$TO>)xv>qgdbEVSecf!26VhAFUGTd|Wx(4Gy{z@k(EoY6?$*YUu|rXyo<&2JVb% zWNWi*xXkrPd)QuiP47Ig{S%*EluXeD@LktM5Iz5*riVxCucf;}Nc<;%(t*4u7qGS5 zHPeoE_iBFTHLZy%emGh7is)iyp?T)U^BK~(j~AcnYfKb^wtwraaqt|4fY`ck_WWD|ELoe^i< zQiof*(MM|-VRKvM3V+nIW~aDAF<_YWC#9`4joU#a-KGSP!Z5cO`Q4m3Kc`#iib7X( zK$QEON)C*Cbn^nKZF3PwI7aZdI76xK~cK0Ua4pNZVngPT19 zVnRU0Z3%ZC+K<N5Eip*=k&d;@<$DnyBaT6HYRvKXzV)^kjNl{1KZO$2I(7pd>aK zWf9}>jm8IA?0XQ%9s%JU=;LTJOvnfc4sbQz4&^#*%+OnUS3tE7m&C$%ozC0fK$sjr zZn9-cevSUVZq6fXv^`AvG-7RDfU^n!(Vf?1o5pk1G+eIsbM`Vqb^{@Dqc1dL$4{R*ZNJACSMkZdz`CSLi#$@;I|5Xe~ zRe$TnCy%5+cD^={y0TTV!{!JY(FdV4>4#&YyXNj?#2Ex9FpAD5^Mfu>%XSu{Qm=^% z@-6G`7Xs~AZ{wy5OIV3WBS~a!hbB&y^Fkw6(gM$L0MSr4*zRP&hWPo++Ng+WTbBVK zS-gtvf-2y$UqNzk3pgx59Q0h7_5ODm$(IQReJP$K19HLPL|+7&*P2vCQlhn_3V<$a zzFBgT@9VWFCT;JbRzwomg4YZmd+-Kz$39RFjah)I_wdH0{F|QqVeyfyXFz^;h<5vW zR^Vrz?F@oo7+5PXh+Qc@b zJOWhNIfU;xi5uvkLE>-(N_IP;V>}N|0Ww!mrj?G zSE_h!ui&_LvYh=>QuQ0lLns?`pynPwPLREZO1URb_#acfZAzuf2&2#NRbYhj%kAE&#E8urwU zob6wEO5y#JwJND3S1B?CFGgQ34kBIUHzj3#_G6B1tdb574_{b~QxwN%x*FCVO0k_){!wIaNT%XW^@bjfSd@z4f4i)1l6`<04O3z^>l7Cxx5&Q( ztKJrXt+wN+v4zs!r^PMWgfK$J+NpP;!(PEVV&9lo(At&ur>d~noZ-5X=%7C>G(kPt z-ZL_A(sgd3ol!U0R)Vpo`qNn{)VA`DGX9Id*o^f_b#8l+5%njJL95~q19bxT z)@$df4XJ{gpRqN2bTof`n(fS6OD}MCUGw7*MUSEnc~hBd+@7^5&i|pwLba(&iHH2l z92=nvPX|rkoRvt00Ut7z3Z5KAh)EemsH2}4rU_^tbuPdXB*D6|?q$bLP) ztyYrk68!Xwal0)S>_=rvv6pCSo32DcmS}|jO9HP2tD%&PEI+fr+3$J!H-Wyt81nfT zDFnTWoHBA%89R3CiGv$Br4m?HvZ@ zwE%^*XVn$k=^DuVPzHWQ`_?Q*mE={&)>I+@y1*uz<6k zYV=jJiv;cU^-(e1hm{@qxEs^~PPV+jWr#=FiTnV& zKQXB?r4_8y?_zu|_SJU6hK(Kpcp0Gmm;=OMD3g>KrZrGM>2AGj+PbeB7qW))0<%mTHftI<8*` zSiF_(ulL%);*C>_3uQ7^+i|B;ljSc+t(Mlw%zS{400=B$vUO3aZCy^{M^TcoU_-8Q zUEqcpkZdFIt?p7y~sOJogu=YanYRo8bc3@N%g zbm#k>+5%k|_H*pq;)|pO0emr=jcA|wBo1*(?JGwe3zp_(Ms0UOPzSxM z+~(--0YNl6@v&*{I zCcb|+B!~_*zh!i!d{_9dSaj@#c;=9R(bBJPVvXan@DINR|4sFhQ?Y~}8#`P2rDySy zU9JT>!L_r`%yVh1>b}1~UrRE@4I2~DmWVQlUHRvA@*T9?4FQcBjaDu4bI834Zsy3f zRmE!!yoAp?Sm~+@4`0>a4M@g(=b3gKA1qD;pT*&%^ofL(Mi$rGn5{LTV7iUE^{LH> zT1t8UuRY@sHh+8KA|+<-pG8y~@Y&EnxjNb_gXDwF>u+TzOtV)aZ(s5MT^Pc_jQ--7 zf176zx&CT&re`X5{p!#qpc-oe9&9h#%f4ICy~>7?ke~~sMQQn4xr^ml*t|;1d7q#H zW0Tgn>Hp-;KCh>QeMoa@S}D+;<4COyWe>0)_kTk^GGi+Cv#cm|KjOxw z(}Tn=CC%4B&MYW;++ah%ey;WN=W!MU7B@#FNF@IEfyNMk}2XpS_(MAO-kSh>qFx%_QWo zk`RFC3=m)!(RyajgZ9e;B3@EeUZZ95D_^cz0r&ZS$~Oq#zKnj8rn7}JJ3+>44n+Ph zN&Ut`Va&w1HHG3cCh^d4<m-dN;eZ)X~pZPgIAg-RWpM%;xuUYxQ@Re^+E3uSagy1ae7ggVem@4!9 zSAb{)1$>UZaHMHya9nZcPLp3_jEDl9bNUcOwOtB8_CP_!QoQWO17t#FC@+a>?Qybl zpX~fV{7ok}cm05JLY0m_xyeTB$e}4ir*(XSYD-4{B3;>SuO!wB#b^(K(9U6@e*cye zSugjP!$V{0UiJ53Rxjwh1o}suar9)75tf4jtycD8aIm*mawg*f-mmRqR}@2z#h%}9 z8J&vZ{eoqG>QrRqIF0OYv3?{mnSi6yZ)Mf>mcOH9W?z_oO}@OGR-64^;wPGn@0fYN1Mq&SY^>E z9BnQ3yQ=fH5en}gPtg9?n#=dfjjvm(*Lb$<>zx8RJO#e3|GUz+5e=55^CpX46MF^|#A4tBxk;Oi#_zRa>}@@?JN z`drLmsQF7q-3lnhdr%UVpgQoi(B(BYzyeGYTB5l3gU3^6tfYhHxuY$;6J-Y~vCC7G0N(pO zWo$-D4St$?@vS(Fw1Og3VXG*ua}@1aV`AIuqu<|MRP1rJUp8KYuCxdy+alDoLm;v| zF&oUBH=_fOfDZhre`eY|L(34W`t?bsA*j>a?@1JZh*b*g!*?GdUrlTL<7eFP?bYaP{~-VLpuP&x9i@(0hr8} zksJ|Nm!GP!cDwFO19l1EF1HQI0mE9ml0>hUX$GpSD{G};RHdL8fXRikN|P;%abfcE z*i$%SP*HXrT=Pk`@ptP90mWrWjC^Y;y}r0vpi!u(?wiY*=E%4-#;`ezAdx<8(QJ;t z={wME2z&TZ)$9*>J2EHopznSED? z|N8=3qC^-lywsfbM=4b#DSUrlPcji&6QU=WIxo?q&anF9z(%pjxmrSD+GK2W-FV(= zyNk3LC_>hH?!2p2Rm>wOSHdCO5B*)(6qi*_{<&jpaV>lF5rC~6-uLR`t<*}_LDv3v zR^GfADsg=I#-5v_TH%v``+)@i=KX}HT%mJ`=xlA&-Mh9c#KFZgi=O!xPChrYT2tCg z6w#)?o2m|PI@L>21lQzF4`J7HVkF|Y*5eFP1}og19AAtKJKmB5@u(4vLnTe4h16(- zxb33RTWy;qTimk-z9j#&z3m;a>1=Lv=HmOzhbZu@RDq4}|LI4~WOgk8g)ghesYkYK zzn+HUNI!UP%sc}8qR%tz9|6`QTgv%{vGL@jFQYiFWF@NIbD6#grVIeY_1&8VrvAb8 zrrv1$Y#qSYrPJlBU8?Rsu&eH1gR#3@`FwJ$89^#=cAD1nA&8d)w_GdX8hjr{)CPCfsmcbhPZO{0plh1@L41!QwoCAJYM8C5gMqOWwOaE{%s6j zB7teOdc6*F-Nyr3*1^l6M*xhy|Mwz^83YM|&&yJM^R?YVr0BAwlgn?|e@EKg6hbP~&vjAf+7bvZG_M~o37aiMBnT{puNo z*U6X<%^aePVWw@pzbd->rG9NtUX>?q%19-4+I5|_+}R-;CGXw^%m%+S(bBjmkquPW zuz|3m1CtmN9HwKhWS#=}{e+fMLIZokXM z_SKLq-ajO;*59J*x?h9qB~0Ni`WaL-^8Q@nW+iQKW$6W8{?YS6#>t}TTGLUh6;-iN zH;H@CbgLm2F%5G!GI%^PL0zY?RsOw|%=IAnhN=voFAfD`?|VInPI!%?=`xU}3;*Ls ztg_^;;E}<;>M~+5n+3Z#n!+q>amq01u&$9>v%k%FBhV1_kw!6>=OO5`E(b6jxGB)- z_+htbcr6w^^G5sfge!k2BbWsoW^nRPSJPM^-%71tgyc;u?tCw!cVwDZPC^DD2QyJ3 z%++|gCf?n#G$412?pfSwSPRuABGwlJ-7EY@ZXeOVX=pn{t0X6>ZgoC+wYoj8OIYKH z-`rVzsSUrgamG;Z;=z8w61F3wb`q=PSS7hhYnx5EcwTe0z87&?8kr4z^)y$$;cS$? zpqe}rPgqRU380ngI39vEu=jd=e~dM0Lx7gJiG*sJBU&Eog7 zX!XQibwDy8m-B3{(U(tkU)|xRf=lA}RGj}KK+rnKmfDz{RsCd)Cua1oe_5}f_qHq3 z#YNfLqI)kfMBI|5Lt9}p(WUPY7;|o`uGVh&ZQC_tNZ0PQWmVLsV^6)Gg@A?1;&z

F7%XHy|?wqWp22e^_csol+z1)#pS_lrpq-zm$S3zREXAYwvG7zpN+Axis!xL3`urmohX#Edrb z4e|O0eDLYFR&cF{Me*d8!eq4fA4u^pAxsI3>DDh3;F7SmskQiGmndFjJ}~RxPG~K% zOS)>}TBVc|Ug@zQX9TV-Krxo`r$>&W3{Y2*f8I3i0koxF?0I zRDOOgzkqT}bRh^*+{28^yjEB|uq_#Vct7WIo{z8H5Ei25tFIPcZgE>5g`7hFq4r8>bYG9V}q6)^$7aV6gzuA`{1k} z7am2OKrnahac3{M^{d**L7Sam1aW^Yp?DEQYD;AFW74u}6W>i%7vM2ISNh#gH_3De zQdE{G3Z?aL9aF7+3Vyz&sw>ocPGe|FWYWy-z+fUXBh^ZWO>5ScE`A@U=8std*!q~{hJQF0AQjo7!pFCGCG znwIg_uQ!8bdEz$i0hbrWz7TQ=?n?g_3JH&dVs*ZZVo^hmajAVR3)fHFtI0(U$SKkh z_ekpKeifz!TTv+}a&#P}O+b*wLK=J|Cd_Olg9l);ysCY3`%Y)}Rx6or42#z_=Jb$J z^OiHlGN7&&3QRHXL{x7h(~a;f`QU2th2>61vfeAQ#||h+%bh*`?bu5TBk;xcCQZv# zwS9DG9dJ_(%F-nk=&3=O`cobtab;L~Ej}Y(PBB>&O^w%vMVH1%S@FUx>W_K+*o$Be zuYZRanrHCo!J*7_dCO$g3@%lH$=#9LNy%}tkP@yPE2p)} zqA6La_bZYSei z&o*u`foWh5aIF|17I2OsS>E$2atR!op@q&c&p9O=aCqSdY5+a$B zOSTruldB&2SVb>$h+WvdSYycWgYZ+gEUu*b705ni_&TgwUi;s}R|6ZIFkg45$b(kW z7+2Q3F;H~P=nbeTM;kZB*2MZ6|7OW5)%=awa6}|{xSpd`a!o(Dw?F6oiAW+mrltS>que%&I&>@=B?>h_W z8OL)+pb~oTZf5Trq`dArEa*_QinZ^ZDKN-@7=Kk^?g_Jv771*5>mbUKc@l=_t3 zWFkaI5TLShZjo^EWu3h<&Id)g!?&y7oSr|>8=RjmOuIeVxaGpgf=J7(Oj9yfps#;H zcRnTzoW@U`pfO%wED0V0FG{6i#BhuI*KLEuJRdw!pN_Zc(7B_q7b?d~RP1LuObId! z)>&k-;g|~C(whpLszxY@@?(?t9{o0+f3_6_A@le!uY}U`%VPR3A7%CQ@^N^s5F#_z z1i5vobcDqj%_|b71|ieFexcuJLb}rJ_z_y7Q(JTwxJlQu-jK+*BkTJ@D!1%WmkIb;GO%tW;W-}t38KlpZ}%vxk^J1{^%0#f4)7&|vU;xO1D*&? zYE6Lx%Y2x0v!V5%Z10 zt<%u|EWTyLc~Jl?cxtWPl&Xed2^1Oy6Y{8uMC|{Y)@0H-P?wI6#6ZC;1UW^RfA&qMX*VB2!C5o%rc)OIJe3`+48rHkA^<;vL{#0Xl%uX1`vuw1l!Q@7c8~7cbkX!ed z(T*0c#A7WM;W1vhT9}=Zu)z!Ex}w7t!lDRSNRPyu2W5_^^LQ-VSBdQ7ke|emDsAs{ z2ynv_ireDHw$FwR56FKTqRIGhV1zLebMr_VHDOruN!(0V6U(@xP5{kzd#k~6gs8V07Z%+39|p6%le78V%W zeK6!}ux+@`mfQ_r4Y{V>G*EA*BWWP%d2(kAM=pv%(uLA@tedW8s&fbSBu4H9|6Vy<|VU99!fwA_5!}DL3lCX5`0yHq3MA; zwsZ;Uy7wI4=R7VoB5s!lSqOJ8-!Yz7w_5)l;*_|8MYw&Z0OT6N$ZBL164t$-ys<7`jGf{SfQ63Y7J8m-k-~>e)oA;PCQ-Hw?{Df z1yiDrL9)^dy%4{sIhQqDC+OkegSNThpju)QZ}YN4?){iVni8qoK-J<8|5i>g7aT=X zN_lT5YsvWx;lE3YHcisZcv_q`GvDBlFC>E_%hP?Rvk^y$mn7hK!zDeR$YLZIiYLN_dmrN_KZRAF|Kkp*MIHQ#=G zr@JNbB}p7y!rNy2&rV#MuF5EWF59ms#7L8h?qyTCqC*0eiqj^w0xam}M`rnmLpJ_+R(10OujdJmbGF? z9DPHUpWZLKBrb$?QQz;#?zwrjgb`jSkNCa@cRY( z&@rCLVl{2wd?H)`RX81f=k5VoiQ|A&K6b}1g^p%O=k5r_`sYS%755z1esqdVq-%m* zvt4^aiSSs^&4nScthT;9%wF~ff6~b$m|zWfQNr)2*IoakTTm;JQZp_oSp;=f{5?vJ z^256iwPTD-Xt|5g8-81{ZYw2L8O%ELW)=X;7@g6T5bsk(tUl%jmXr^0>WCXRGSGDp{ zkuP`)N;2kboZW?!lf2CmIPj`ZwUVOE(SL&wu>nmxY2S@{-#AVrd{Bt(f8Hbirg=2? zX)_r_PGNQIzN-^yu+n%NFuZDm5hU@@=wV>>Fs(O@#>iu%KDLzOh>_cReEd!aW-wx? zcXu+y<`p|OG>9X(8uWUs&Cn2;`*N_?krKJ(a})E|Sp0%*PAJ({WUKp_e40+?t_e>qk$0jSu8&mjDL-1qT*P;#7LRqUrIYzEL3ncpRS{tcB0Bf5O zHXH%s38J9qj{xR!;$MpAKSQ|pzj6Ll*bf&A^r_M8(`~w*&>G-?(ASmSDZ@fvi^GsBLia}PX+O_yWPx~^Wlnls z#qit+W4!`@dHkNZk;g)A7}%!eCTqKB8rOf6+0+#ZOn8SXeslTT3EVE4iSz71J>e6@ zgZ4Yw{$LyzHz}4ztJdNJJ@*buApmr{g$&>x?7f;kh%poW>MmS-HKJ za^!xa4U?v4vS(f$1{rxD=Xl(GSi&m^j%3N5p5T=yy);66uHea%H2gNrQg3dSl){n& zwysw2hV615DXe-{HB!33PIWBAmAH=Eb3d2i)-UOdQ8;NxiKR>yPJeBBuM7RNG!rYB zy#9`!8lNz5RwrD6Arsb9oX$~u-{JFjWA_3c3Yth@V>}j)fVuM{_6IuMCtA1 zTdCcC(v9q&6i%%9Z|PeW;8eD&Gt0WF0YX}>4T*%m-js+>f= z3;dpDvLH!q;Q?bm(0qa3C&<+sXH%o z4^!3b=T#^ara7cz>3d$n+3>C2hIn8BEPI6WF66I9^$ zoqW0_*6suB^Cvx&r5~0pL$NWStPlj5l$cqLSy_=&YlUNxI+bn}>G--OTc47}Gm!hnmLj87I?@MU zswnomN*%P03}Tmd4@bmbgoPl3W^3@~*lbV`zMpz&_1nQhp4Fy@i-uvFk@FjtSmhvh zY1s#&(105q*-|zHmX%SH_zs=T;{IgX>%MoWNP30tBUq)#l?ETSx!zX*R2aB;V=H5lGkts{2O;v-E|u(z0O|vp=^gsL=vi{Y;heWxXo472RQTz-w-Auw6;%5 zV%}|&`aaOLv*ZjV%rMPa7;kK}%Y>jWm<9_rYDkFsk~#>zcFdS`FrO7{N{C{84xyjAaYT8MoPWV|)D~_3;js+(%ciw+tX3Ye-Rn9n>d0%Yjn^~VvSRUexOtxFIVNv(*bNmhX6wAtPKfo+1h!s*tD8-b$5 z^U9v}q<<*V9}0UP&=f|EzSbw7w5YC8Rs>rG>{t9^AfFAsu--V8T(23)QVDqvW_!8x z-61l^21f#CY;KmPEQyd>FuudpAn6_1GVDyxpl`+M55}4#I8NP_@n!d)q3yZq5A#MC z^i%?#%PD`iFV441C(C{ct%V%MnddnvDx3)eTR~ZbQ{O~vZDK~%wRMw!q6xoLwLZ)h z(H3@2H+n4$L<=6I>4001akIITYAQ}Dk~%)yNZJo}N0zP`kB5liJ0E?Su37J|PaGn` za5@+BI-aejZ<1Lx#Z;{0B))*-{s&+vD4v-H7g)mL2mJeV{>nauufDoch{ju|9d-ehOdpFtM3+EuA6be za*u$TR_Z7B=}17CDv(kvJjKlQZyQmrZmyq;d!CUlsAjKnOOf%_7V(Z(957d*`#3kS zBvHU|)S2+#-pv(v)ryuJ6d}$Fs&;d(;P<81Lfj(c0XLra>=g|?jEO{@OYy%kJ{Q)A zgoHwGrmYwFQ*81!hZ3?~#}oi@L^-aAhc6jMQ>MfjdE1S#bZ4RN4}P;bfv*XuWnQ+0 zJ6OC7eh6&rSH?*E{v*SEkTK-~baq$%{$m@R%^2!$`NQ|r(1U{)+M&)U`9(4J5X2t= zef#o-_e|a_@W0~zs41*gj8GVIBxMA{411n7<8lxJ`&Ul3)f7kOtGJkm62Ef3W#r+^3vAXr+eTGqk$B(s9*if|h-MNdIZudL~3K7!@$p09ykVpRUI6@v4~6w01%f|UL1 zGu^^8bXGS*#?9yBkARBOI7W`LcaBiu<0I&kcDd)EKQ=_R7hmt_pO9*S;TIGCe97Sr z&vG*$C61uB*pq?UUvPfrYqt}mGssjCVfa=x6Nd{Q&8g_T8{(cK6KxBg`+Yc0Jg}C% zg{KN!Oc)WM2*>P|#nMjA7@t>6@?KGKg9bk|r#f(Ax-Gyn~78aOPuY022v7bCbnwZMG%m+!dSqC`LO95{0NbMU z88gj0I_=%+yRxf+_Qcw;+^&20Xk6)KBKvJBKCT)_w*>ilvE7aRVE!)?=qT8(^IMUL zj$yiydXOs^?tfq`H{5M`)z7aTNBcbC57rLuc3!d5%Ccl1-7-^5@4epGq|e5AjlCRz zbR=y+6*4Ym?4S7dJ>h{`;a3Rj8$?#-L{w3pLmb5Gh}{?9h1!Fw%luY?h#TkAE4R?O zNx??RY>mp5G?PE1wVM}y$ne?+-NHZo zYoVowa+H5@V9A2iNLc?ZjlH|-G>$Bz#bVrL1+BSBK|Ji0;t5r3Jac^7_YjItf$-B& zOQROQ^wht4+b4%o&1S{*>@8LVXC#OXw+|#s={E7P7}|i4iJ*&78QfF{&+)JK?ow{Y zM*&!TigltqW~FuksNJj&ayDxa<^Vta=B5OJ_#K)iGZGl0^@E?p;A zw-E3^)^o=)L85vxxkqw%#-*pCB5nl?H+420=)@j8^ERtvgo;_5R1@-YL|96@$U`Y0 z_BnF`J{~)pZ%FtKs25#UQ@Za(W=F~ce!ej~X|X{5!$FB@;^e!xMnjqTfjMxJ2cOF_ zXH6MujvTDY@*?+dQESy_o*Dx-k9)phhqEE;q;TNeUWB>#lEZN~UFF>|W}Y@4G8xw56bALPNMu zqh@o6W}jDCP6%f|=KDn1`~y0V z)s+1MyRCT7&2I|K%Si;BXn*L=Y2Qr@BQ9atZ|6)n$X z@Sz>aJy$03u%z>~Lj%suot9)K{k^{^x)e(Oy(DYyDJmV7$Tty}o8$SA+RKZi)OiHx zxoCw-veeSnVs#3wOGG4dcuiL`Zr}~)$8kd_yihDtp}y-KzTVsbwxQuw7s(w7JT>)p zn{7w^nbm}m9?a=;n4CZU{P`E9MbGHZ#P+-A!&LbdYS2E(y9|dB$@VDMSGim)&ZUT7p+!U?MUHJZhHIKNM@-p## z&UdxX`sHhw@ec^yRfH)>H`H9P#ebLb0=n@Y7!vic7s+9E&`%zNAPu|zK0HF+zaS9l z2z}cn{jr=Bgb#0#pj2RNxaw-k*N5WJ(AlM&Qlq*h7f_Y0Hfcxv9@~5#_uu53Ixp%W z$21M~HZfF?XJzyA7ncG{6|JIPg|u(xXg?cwPU*;BF~qM)a{T_@IBq;D(3zUv%FIlM zccE%maHg*}adL--KGLX|bY|%>RFnCwJ-0D3zs#PE6frDOZC{v4rU1UWIWGyJq+!M6 zpXdd0k>2D!0w&beeX8s1ooU@R9-gdxwK8}r+hT0p)4u%qTlp4O<~h`2TKc7I+gVsD z+?a~7-Q6s^+B0>NMZ_Khws>E)UaMbhrMakLWtDoHV4s&_FuCwO_^I){98aHzRlbh9 zpsco)?#Df%&LL>e%`+IkHEO;8{gx&wIIuIw;6o-6n>Nmh`Pq$jwK!8-M-1nNSWKxc z<;Hr(>!Xurt*+-zX}^3lwl23#z9o3LldyIt^E1L)IkJjdS$;jxhP>i0a0dHX7-3R> zH_mqrnGbAao+V+6{;Z#uG*4g`G3t~|5!^!T+K@!U8< zu+uO%2k9vDKA`Bffx_#h!Bx#lo5yJ1&jw}J;d$>L;4_P{SoJN5{6-F|Ey(Gx{T#&o z?yDt(s;GQyocgbxc-$_}z%BvzEythCaX#^pcg`o5DIWxywqftd)qT0LH|*UEd8p0H z@I3O_-4Rdyt#0Cp0@*Uvz8T-`H%Nz;)DxqK3wkIdxDUr`&yjFIq)K}*Ca;s+n`toc z@EY|US{<2;hG%%heT#Fr{CW9g{({c+0a^oxZZ%t{L!0TZ_3EvB9~#YP*~G?qUVva) z9yd57Uw^$%+6>pLiUi`1ar322T;ADNos@>7rjJlOLrpJ5KdY`F-y2OMj0uK$sbB4n zUtiRG>dpHQKWTYJre)@9gQsdbGJmS@P4AVe@f5$IF&7V6hoPh}Cp^#nT4x+b2p=F! zdmrSW{Y%osVFdN$`D6y!S@v#p zDT*TDEcp?9Y>S?8#qF0VynMBk2W;}mB>h4uiaw=WJY(*M8uUvDsk;gv!DL)~kU2S*XY>u2Gr;^H@LCf}}_G8dRHTCFsgJC{|`>4*z!ck(%@{=;ct5PUh zhzD9B8~c~LOwL*Y#51%-!dK#ICJRBf7geuGM3U?&7+(%CWKpx*iexs3TE5vx2@T)~ z#NEI-kbH(@3!8&UNEi%-_8hHpW|IahjJwWj^Jh82hIvzHT*K}_cdTy=J`8mzxlAcL zv$ z?ZhU-J#4<7g1pp}qx6KM-G9~4=3@-s8varK3&lvdX< z@rK39pjXY941${q!X?p`luKPc$-crhg*}{d(G3^sXTBK}lrRES_~smCPru_o>(xd3 z^f?;q{`ekiMks^;SUdT2Ugv@nAA=o#k|*g}Qv-GH;IPfHf2_Zt(K(w9plboq<-Q^G zp}gF^p4n(X*JS3N#CQ8stQF6;SWcyA^)Br1K<{SBpvqZN52Ta*iL1Q>Xh#oii%(Br z0Fv?XUF54Wr?Yl^yZSCudu%8km{|aB%DyH;4ATrrB!L6~yzPZf8|0kJl2Jb>RX=}- z1-b_lo%>AY+*maJIiCcf@@)4ZFzv&SFM?b4_9MddJmi^#VsE*(|0LabT+~>L>ShW0 z&?6*s+9E_#@$mz&eC{gx3P4~;+G03O_!^|0%USR=k_asjP?Rn3{=d&xs|nhA%Z#YK4Dvlq<1nLQj6qk5J)9Fg@&lO5FPpYwx-BXB3byY;RWTr0^=&=MKBtgF%Z45NI(-aaZ~Ie}@9;VbyJd1&%uI8RR)M2W@5a%dLkwb#Dlw;l z=97X>FgY~EIX?BZZD?8|aq|JW54isT>rggQmUYP=JVQJy9#7#}+UyFqmXRRC5tbz6 zlf`dJiSY<@G|-vBE+M^b%E|_KCy_-@J-NHpZp3F8k+F}h6rSYR zrA05}M|wjNm%S8F0_5U~DQOILaZU%GdQ&OmpREHVM%vjJ8TA>drMYLdF%%>Lfs@nL zt7D!8OuU?K0Q&Y63dIHc_&?7Tx1m_Q-Pl;;mGRM|LUHxL9C1`BfqhrF;;v~860rSpG*;1v!*t&!Fbfhx9KO! zq^28q&wjPZv}IEzV@F<4=daWAKcBT-@eS0sT7hYZJYyN!2EOE*8efG*B=ZVJPkp0$H?#JP6)jxY$Tvs{^#a>cR0;|CsKnwun5EO&css8{Y)~52}jgirQXCEn1fq~HdJN^|M7ctBCg8;3P+!DDT=bz

uV^qwNx|W6aB$K?I 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

iRLqvh4En6CUh8a>6k{Q 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

&13FFV${19* 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/images/mask.jpeg b/ML/Pytorch/Basics/albumentations_tutorial/images/mask.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..f2b3c80a255ff1295ca5d9f1bcd0c564900e57cf GIT binary patch literal 79058 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 ZzRm;>xP_Y4A)x(Z`rdzFACupP{|;`OU?2bh literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/segmentation.py b/ML/Pytorch/Basics/albumentations_tutorial/segmentation.py new file mode 100644 index 0000000..f7cc1cb --- /dev/null +++ b/ML/Pytorch/Basics/albumentations_tutorial/segmentation.py @@ -0,0 +1,37 @@ +import cv2 +import albumentations as A +import numpy as np +from utils import plot_examples +from PIL import Image + +image = Image.open("images/elon.jpeg") +mask = Image.open("images/mask.jpeg") +mask2 = Image.open("images/second_mask.jpeg") + +transform = A.Compose( + [ + A.Resize(width=1920, height=1080), + A.RandomCrop(width=1280, height=720), + A.Rotate(limit=40, p=0.9, border_mode=cv2.BORDER_CONSTANT), + A.HorizontalFlip(p=0.5), + A.VerticalFlip(p=0.1), + A.RGBShift(r_shift_limit=25, g_shift_limit=25, b_shift_limit=25, p=0.9), + A.OneOf([ + A.Blur(blur_limit=3, p=0.5), + A.ColorJitter(p=0.5), + ], p=1.0), + ] +) + +images_list = [image] +image = np.array(image) +mask = np.array(mask) # np.asarray(mask), np.array(mask) +mask2 = np.array(mask2) +for i in range(4): + augmentations = transform(image=image, masks=[mask, mask2]) + augmented_img = augmentations["image"] + augmented_masks = augmentations["masks"] + images_list.append(augmented_img) + images_list.append(augmented_masks[0]) + images_list.append(augmented_masks[1]) +plot_examples(images_list) diff --git a/ML/Pytorch/Basics/albumentations_tutorial/utils.py b/ML/Pytorch/Basics/albumentations_tutorial/utils.py new file mode 100644 index 0000000..933af55 --- /dev/null +++ b/ML/Pytorch/Basics/albumentations_tutorial/utils.py @@ -0,0 +1,36 @@ +import random +import cv2 +from matplotlib import pyplot as plt +import matplotlib.patches as patches +import numpy as np +import albumentations as A + + +def visualize(image): + plt.figure(figsize=(10, 10)) + plt.axis('off') + plt.imshow(image) + plt.show() + + +def plot_examples(images, bboxes=None): + fig = plt.figure(figsize=(15, 15)) + columns = 4 + rows = 5 + + for i in range(1, len(images)): + if bboxes is not None: + img = visualize_bbox(images[i - 1], bboxes[i - 1], class_name="Elon") + else: + img = images[i-1] + fig.add_subplot(rows, columns, i) + plt.imshow(img) + plt.show() + + +# From https://albumentations.ai/docs/examples/example_bboxes/ +def visualize_bbox(img, bbox, class_name, color=(255, 0, 0), thickness=5): + """Visualizes a single bounding box on the image""" + x_min, y_min, x_max, y_max = map(int, bbox) + cv2.rectangle(img, (x_min, y_min), (x_max, y_max), color, thickness) + return img diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs.csv b/ML/Pytorch/Basics/custom_dataset/cats_dogs.csv new file mode 100644 index 0000000..8896055 --- /dev/null +++ b/ML/Pytorch/Basics/custom_dataset/cats_dogs.csv @@ -0,0 +1,11 @@ +Animal,Label +cat.0.jpg,0 +cat.1.jpg,0 +cat.2.jpg,0 +cat.3.jpg,0 +cat.4.jpg,0 +cat.5.jpg,0 +cat.6.jpg,0 +cat.7.jpg,0 +dog.0.jpg,1 +dog.1.jpg,1 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.0.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..75b51d64c32cbc5ae2a0f9920560066316663ffc GIT binary patch literal 13385 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

Zk2&fU?8OrsuS zmci&UTic&gmtN9*W2M^JcsE~+Nd?8MP%Jox>h?vBHg_et^4DvyIXHC(whx>9K=|K% ztm)Did>d|J(<50GqPFsGE||p2xGK3AUE8*tW}ErJwj5+M#) zIN4|NlfY%&kDnFEuZ^^y707g738Xew_xDh>mYo)@xZFgOxQ^5zUy*_{1wwvxT!Y%Y zd;S@t;vb0bV(~@Kj9xp-9Z{k~9ftklHDa%TKmocD$m5*XTcmhjPxv|EJ8ef$*I?Fe z^*ecCx{0*?hfX7GOB=>Z4UOif0N@nQUTbvV;+$DB-5VYt_=Tm~{5iCW@8UF9x^@1e zb8B~`MP%{K84^Pzr0plm46+tNbLKQ9200>Mh4yLUcw*PDq`hzL7Z&E>gFKS~ADg`& za^g*_RE%SD4x}35-@>C&vxnj*iFKP@SNk$MiKo%$h&-yVBge2KWUyg}$Rmd;K?jXb z4*X}fy73%741&PvwihtR6_w?Uq;l*`?hUtT+RD>0P!w(|SAmu{7$&X`Eg3#0ZySHY z-nKUzC=R z3qh^?L%q1wwJRB-vRQ8>lI8?4Z&h_Mqk=;WDq#8mD~R|v;%l3K9^H7-ceXL#YSWo* zuRchwBN3b|jfTKhO3V0r zp=;hMhSO4$P-aU+5J@j7=0}YAcn5~b+*{urIHuPuZeuF3ld;@SKDXlU7ENUikzwS^ zBTFes6(dMPpWU>i7hU?4dE{n+Q+Gq*LsRbz_MHU zW<$H>`2otE*>1f#p)0G6E6GIXbe%feU)ChibmEB`$NvBmN&L(qz<-->BpmI@9=$8q z?r$_L7r+l?YvTFhg4;%dNYzoHV$rE)MgfRqU@#fF^YV_B!^fuhbHTbpMXTx(%RT+N zt2MsYP0UFnJw^&I{q^y&@T0^CHe&x-nf`&ubo=?Mx;F?j-mx2VUxc0L`_J|B2X!V^uT z+X&^rTbsR8R&#wNz#Cp)FNRk6(Oc&E0A9Pe&ev|WZyvR!jh3OO=@VScj`4^AiUS*O z7&yUZY(D^d=dE%H<9&DGCx_QZeF_mh+5;8Sp^!^6sbctSjN>^%FsGrV33JBmBN;_| G$N$+m8%Cf2 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.2.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0258c151cf49f3ebdc0695abc56e975d2a3227d3 GIT binary patch literal 29631 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.3.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..277f8f30d9e29b682fa16dd9b73ce028c212d686 GIT binary patch literal 28544 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 Jlx{5#|Jme%M2i3b literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.4.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9464c09c247f619c7cd2d97db5ae9e1e5be8052a GIT binary patch literal 20447 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

BobBtYw$RttYU18@fD>r%f++iz=I3;$} zaCA1O*`GuH#Cp~uWKFWnG)o)qS935b54|V+y-bXMUUFWApd)vt(1zc>;& z#`>@#9yc4G;iM)>QU-TLkow2!tns7=lx|IN_gCe9`_de$8_d2^x|nxgfrg^h zslGm($b6I%-4DZDvTS&sg(rH6%=|8$^bgakiySo#KKswa#&Qb%eSds+W?b5ZKw1;z z0X)^Y))Az*=cmjyFjBv;$KYC6jztfn{KpGc$_FKC%Y}T3RKLxq_f(@kVSh5{k<@!+ zLZvgI`po$^<7Oz;q0#ZZOMfcm<1&jJufE)Yb0QdTIekut<%l31aWvp5ww3KFYwwCR`rQM!^`xCk0PQnqAP*v zyWzfC8LWlUVGZ@b4sqS<2nAv1TWAyh@KQ%L{O3EglgpEPld8|9lggk#wNEBB4pQp8 znm62R9gqD5)4>Xw672t2bhRmNwSb>dWWFYa{2)QvHUPi>v~Cuw0V z>tJj}`zv<;$lg1yiQ(^*A5(fd$dx|$udwWK)X?%}L>mnZV?%AJ(7UK%Ns@Be0Mcbw zJ;2q^D^?<9RNR62_0^&~=bi8Jdv;xV#dxNJNQX5tb1Jwm38^yo<(}nCyvF|s(mdcZ z+ynu2pobV@hw>q?Dq3+{?@5`Dr`tW2FSt(m(-2WA6mBGwffK}lPx?e!fw$rhK_^e zx}w$U7k*o(N_n8ivG>7)vQW3<%SF-!0q>chu z6GLHlG^FfJFv)ThuzPq$moBUy=3d2Fw%7?^$`V?*!xSPX|E;16Am11 z^9q0%6x_T4$zCyUxy{uv?+x8CaI|D(9BsJTivuV$av}$;lB5$b4w{Om?$I45!U zIqy@r)2)$(>l0EBk-*KZ&-WhLp9lLgk?&Mt~2TNtl>(WA2d=;n>op= zH=)mJnq)VINQqOq3EJH~$Mvo|ThdcP4dnt3K|{9#(ART5+q4E4+bE#3Hvn`$)K*5n zrVU!rpbi7z1!L1En&ZrH@vlY2tGs#7)h+UP% z!>=F=zIgYqKTF%K3TL;xkSlI&syPH=x*ZF|HkUT;vXjSr4@~s0gsn+*$2<&nRB!OB{c-Htb z+(kCYK_}B3)N(bsq$dP^>wGi)vivoFW^6Cx5zJgb<>wBp#ZDMDdLG|O^(|@i4;1NA z!+7Y3VU;C70n9`xBE$j@Se8u71x`(== zf(MF4%S?)hN9HjQa><%2_C@Wy&MXJ>b-g#*omklcDiPh z{{RH=Ul+^p=fxiud~u{pZ+7(dqaxW5N}F@DM3Cb#{eKWF~{iE-ae z;Jsoqc92TYUqcLo3nMBkX4Yug(a0wonK{CeU~|gXQJl5>4vM%`rqhqyc!ZZG-%&6% zyT>FY;+o!cD#*Za$z!>xNq{1ml3 zF=_j3c(t?}T|Uw)n++QJVWpxZ4|Q>)*v&kE3=BN)Gm;11c0Q)OIqu|$6ozFcM$Ylb z$2?ctVKH#UVdE{E{LeCQ_EK>rfn@|rA;JI{o&7og01_$9f4l()1@f~-je)a_=hr9t z8l-OSVs9Y0D&uPr(-{XJ$o>_pWVSL`$!&ELM>65}D6ZDU zD5o!QBDUOHa^MBd)!_b>uW6BO9Ewzyj{t$4*%{4Jx)yfVlWI{!*3g;DMH0DU6rL0o zL>;?YV&!S5fg+m8M($me1_wL{llaX4+2!jyiY!YhDk5 zo;`t&7 zNR;oDBR*11}S;8>Dc-{$L3mGQIx*gyM-~q`C^5oS!p1JH-AKwAP>?x0c362*?Ik zzJFTbbsY!9UL3t(@XYZ8g_L*vtLiv3kA=F*rMmxZsYs?YNHB#fgm^R;^i%Q>htyr-^u5Uei(|J?5e1 zbssxtx2M+?diPqlzEy?`-N>MA+As}z9wMSHI z)06jEYTHwp9LSj9V>`P0)X-eYj?&Cj5=mUQYUh8nfnusQvbG5)gHkQk&D#`?Kol>` z*y6e6PpaH%qK)0IZCz>><Mnc5od%AB{t^gnBEc*XIPaX-(B2W# zU&;GpTBg@_aJd=DB;)-0*N%K7_<5*n`k~h^!$S;f`?V-?-8yF#?bmJyKJn*_ADs47y_%F=w7KfSwBu35mj3|Yp&AyZiQ&(QziNt0 z?=C$zStx#1D37%Udm%?1e~b*^SBZFETN?eYV?*+;SSRp+IqP1z`(V%GtrOr+hkhUY zQSgQLhxOe%TbetaJ5qq8n>LvvIXpMXE;2fZ{rLHxM%FI0tIesnBYpC$N6X0mroF76 z87wR=wm30X=4oorQ?rj_q>{_HG#~-#jMFv$02WyIcHMt?&u~{NyLbmDAI$z$%1!YR ztt{HxPPdG{Ig#_9t#Y$p-s&^8&CKk~NX}gT9c$?E8M2CA&sP5c$mLOPTbsAuIn;F- z+wJm#1cj9mFb6z+X@B8i>v7wyrLEVO6n`qmjtCh400CU@nn80WGrs_5=}c)(#fek` z%zkWiuLs*yQoNnbTzQ{krLy>u;!u)9{h-81aO7b69{%I?tI>Q+)~1X^vt%6PGMs*u z$j2E-^Se0CcSamDKC+6vq*R4~=rMXh4 zrLSYsrSWCdp{APXtIA25Mf&mj)r~vFZ)Z7aF4RWAe8GD0pVqv_9e(^DlyG=IH9!6m zOO+m5F9Et_p4FuBlx@__Q>o8%k95)gGV0cfj}+!N8$W0I3hb=uYO*^zkPE2`ka^%J4ewkBi8VXDHaCv^N9Nm--*e@1I8*dI z8s!g(M|Zt9ZH-j{{RY-H`6C^A=IN)$IZME)2=wK zZef{E`_&@MO^Ag#3m_+sx$jBQm8}L6ttT|vvD)dAcq-wRZC_S+f&dUj)31E@uH(YK zA^o59h}!m4y_!g|B$G_#myS9Qe@gJdl5$Vhr?-`s8Db0obmu3pwQ9L(KXqOClg_84 zwrA5ef3%On4KWrpH%Oy`MY-r}K>TO;Q?5j0)BHfHRlj=^#^Ch&dsoTIWG=aGc^p*M Xa&44l_JT%hz8I+~`^GZlPRIY*sV_be literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.5.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ea084f6dffdf697491472f670f7331c461f66a52 GIT binary patch literal 20937 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 OW_XqJj0O&_r~la^s{V=q literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.6.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fbb21e570cb3b6f2415a348d0565ab544030996e GIT binary patch literal 27813 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

Z0u6MeB|eYj-dW{ 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 ZccO}DOk|zvt9PP`Vj*G86j4ZL|JmDkTDAZH literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123695.jpg b/ML/Pytorch/Basics/albumentations_tutorial/cat_dogs/dogs/n123695.jpg new file mode 100644 index 0000000000000000000000000000000000000000..adbcfe14491b428063fc1d8b16b08f554ad289f2 GIT binary patch literal 53830 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

r}|k-NSQ{ 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≤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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.7.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/cat.7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..25c73ded491f18d8189280dd46a173d06e190803 GIT binary patch literal 27260 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 Vb<5QA>t+;c!b;Ddqub_x|Jiv{(FFhi literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/dog.0.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/dog.0.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9c339be22256265510082a7d85d2f56aa7257040 GIT binary patch literal 24605 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/dog.1.jpg b/ML/Pytorch/Basics/custom_dataset/cats_dogs_resized/dog.1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..18619b1bf457b8eb588140fa37d1555ebeceed0a GIT binary patch literal 15450 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 z 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 Ji;1T{{|CG5Sx^7~ literal 0 HcmV?d00001 diff --git a/ML/Pytorch/Basics/custom_dataset/custom_FCNN.py b/ML/Pytorch/Basics/custom_dataset/custom_FCNN.py new file mode 100644 index 0000000..aee9ad2 --- /dev/null +++ b/ML/Pytorch/Basics/custom_dataset/custom_FCNN.py @@ -0,0 +1,131 @@ +# Imports +import os +from typing import Union + +import torch.nn.functional as F # All functions that don't have any parameters +import pandas as pd +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torchvision +import torchvision.transforms as transforms # Transformations we can perform on our dataset +from pandas import io + +# from skimage import io +from torch.utils.data import ( + Dataset, + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions + + +# Create Fully Connected Network +class NN(nn.Module): + def __init__(self, input_size, num_classes): + super(NN, self).__init__() + self.fc1 = nn.Linear(input_size, 50) + self.fc2 = nn.Linear(50, num_classes) + + def forward(self, x): + x = F.relu(self.fc1(x)) + x = self.fc2(x) + return x + + +class SoloDataset(Dataset): + def __init__(self, csv_file, root_dir, transform=None): + self.annotations = pd.read_csv(csv_file) + self.root_dir = root_dir + self.transform = transform + + def __len__(self): + return len(self.annotations) + + def __getitem__(self, index): + x_data = self.annotations.iloc[index, 0:11] + x_data = torch.tensor(x_data) + y_label = torch.tensor(int(self.annotations.iloc[index, 11])) + + return (x_data.float(), y_label) + + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +num_classes = 26 +learning_rate = 1e-3 +batch_size = 5 +num_epochs = 30 +input_size = 11 + +# Load Data +dataset = SoloDataset( + csv_file="power.csv", root_dir="test123", transform=transforms.ToTensor() +) +train_set, test_set = torch.utils.data.random_split(dataset, [2900, 57]) +train_loader = DataLoader(dataset=train_set, batch_size=batch_size, shuffle=True) +test_loader = DataLoader(dataset=test_set, batch_size=batch_size, shuffle=True) + +# Model +model = NN(input_size=input_size, num_classes=num_classes).to(device) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +print(len(train_set)) +print(len(test_set)) +# Train Network +for epoch in range(num_epochs): + losses = [] + + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + losses.append(loss.item()) + + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent or adam step + optimizer.step() + + print(f"Cost at epoch {epoch} is {sum(losses) / len(losses)}") + + +# Check accuracy on training to see how good our model is +def check_accuracy(loader, model): + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with accuracy {float(num_correct) / float(num_samples) * 100:.2f}" + ) + + model.train() + + +print("Checking accuracy on Training Set") +check_accuracy(train_loader, model) + +print("Checking accuracy on Test Set") +check_accuracy(test_loader, model) diff --git a/ML/Pytorch/Basics/custom_dataset/custom_dataset.py b/ML/Pytorch/Basics/custom_dataset/custom_dataset.py new file mode 100644 index 0000000..2af9037 --- /dev/null +++ b/ML/Pytorch/Basics/custom_dataset/custom_dataset.py @@ -0,0 +1,130 @@ +""" +Example of how to create custom dataset in Pytorch. In this case +we have images of cats and dogs in a separate folder and a csv +file containing the name to the jpg file as well as the target +label (0 for cat, 1 for dog). + +Programmed by Aladdin Persson +* 2020-04-03 Initial coding + +""" + +# Imports +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torchvision.transforms as transforms # Transformations we can perform on our dataset +import torchvision +import os +import pandas as pd +from skimage import io +from torch.utils.data import ( + Dataset, + DataLoader, +) # Gives easier dataset managment and creates mini batches + + +class CatsAndDogsDataset(Dataset): + def __init__(self, csv_file, root_dir, transform=None): + self.annotations = pd.read_csv(csv_file) + self.root_dir = root_dir + self.transform = transform + + def __len__(self): + return len(self.annotations) + + def __getitem__(self, index): + img_path = os.path.join(self.root_dir, self.annotations.iloc[index, 0]) + image = io.imread(img_path) + y_label = torch.tensor(int(self.annotations.iloc[index, 1])) + + if self.transform: + image = self.transform(image) + + return (image, y_label) + + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +in_channel = 3 +num_classes = 2 +learning_rate = 1e-3 +batch_size = 32 +num_epochs = 10 + +# Load Data +dataset = CatsAndDogsDataset( + csv_file="cats_dogs.csv", + root_dir="cats_dogs_resized", + transform=transforms.ToTensor(), +) + +# Dataset is actually a lot larger ~25k images, just took out 10 pictures +# to upload to Github. It's enough to understand the structure and scale +# if you got more images. +train_set, test_set = torch.utils.data.random_split(dataset, [5, 5]) +train_loader = DataLoader(dataset=train_set, batch_size=batch_size, shuffle=True) +test_loader = DataLoader(dataset=test_set, batch_size=batch_size, shuffle=True) + +# Model +model = torchvision.models.googlenet(pretrained=True) +model.to(device) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Train Network +for epoch in range(num_epochs): + losses = [] + + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + losses.append(loss.item()) + + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent or adam step + optimizer.step() + + print(f"Cost at epoch {epoch} is {sum(losses)/len(losses)}") + +# Check accuracy on training to see how good our model is +def check_accuracy(loader, model): + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}" + ) + + model.train() + + +print("Checking accuracy on Training Set") +check_accuracy(train_loader, model) + +print("Checking accuracy on Test Set") +check_accuracy(test_loader, model) diff --git a/ML/Pytorch/Basics/custom_dataset/power.csv b/ML/Pytorch/Basics/custom_dataset/power.csv new file mode 100644 index 0000000..f4d281b --- /dev/null +++ b/ML/Pytorch/Basics/custom_dataset/power.csv @@ -0,0 +1,2958 @@ +1534.71458649899,372.114089918685,0.869824737753319,22234.986267756,144126.2910544,21705.512769701,6912.58368461815,53183.1332304059,0.247109300498102,244.381303582642,15,7 +1709.48515715014,1429.20942294595,0.377032805420111,9057.50594806414,237184.290202908,20713.0446816277,6596.51104510436,87521.8783036561,0.107111592448895,272.211012285054,1,0 +155.407096367451,56.255714975352,0.780018356234638,89.0799969168197,194326.3059273,21177.5950212926,6744.45701315051,71707.1239584133,0.221596123930295,24.7463529247533,9,4 +622.538023990322,1277.83689492981,0.707654784437045,3361.18030904872,104643.561393973,42815.9201281463,13635.6433529128,38613.860292979,0.201038291033251,99.130258597185,10,23 +936.536371563775,514.438271889908,0.866501130748153,24729.486353361,27519.8814949838,28219.718605209,8987.17153032134,10154.9378210272,0.246165093962543,149.129995471939,14,2 +3972.34632464966,1523.23761711945,0.061360906675624,17474.1946908519,209232.890248931,3666.26304078483,1167.59969451746,77207.7085789413,0.017432075760121,632.539223670328,3,24 +637.618014069887,715.242055702213,0.613093034819951,14505.401257348,91508.5599828138,6839.94274780475,2178.32571586138,33766.9963036213,0.174174157619304,101.531530902848,6,13 +3172.24423463651,1411.33360427815,0.570407472407648,7715.22234079091,37955.9669701574,44585.4877539021,14199.1999216249,14005.8918709068,0.162047577388536,505.13443226696,13,8 +1027.88472880106,106.938269598107,0.443385988064596,21342.977194902,190742.949348777,11759.782325989,3745.15360700287,70384.8521582203,0.125961928427442,163.675912229468,2,7 +3617.20113058181,473.384095515299,0.479859714708806,22861.2608553032,38720.9613994413,13756.9542924228,4381.19563452955,14288.1776381702,0.136323782587729,575.987441175447,7,2 +1424.52465949049,649.77606423687,0.2022432933911,11999.2788643937,158979.654069016,38687.1405499797,12320.7453980827,58664.0789922568,0.057455481077017,226.835136861543,5,24 +1451.8974963,2664.37198052082,0.179275019712528,18384.6861903805,20991.10634486,22935.6329687017,7304.34170977761,7745.79569921033,0.050930403327423,231.19386883758,18,12 +1386.73861278102,3559.75944107997,0.745534250285182,18626.2638797587,193280.210467266,24369.217352785,7760.89724610987,71321.1108735299,0.211799502921927,220.818250442838,6,9 +761.706290799447,3081.76046361384,0.664190344677609,12992.9514213865,120836.333515216,29701.6593161814,9459.12717075841,44589.0529576443,0.188690438828866,121.290810636855,8,13 +933.08585843136,1451.78399033222,0.598288257073501,20143.6526526181,152009.007071449,8584.60409441619,2733.95034854019,56091.88452821,0.169968254850426,148.580550705631,7,7 +569.989624709601,672.98124290286,0.419740495573787,21355.0335682517,45141.0563683153,38831.1427014114,12366.6059558635,16657.2163720721,0.119244458969826,90.7626790938855,2,9 +484.387102489149,710.918639137813,0.431398267475869,22125.6913441559,28093.0668572415,43418.7514369462,13827.6278461612,10366.4453347755,0.122556325987463,77.1317042180174,4,12 +2766.29518147616,3058.33780217161,0.927245574655084,1887.67212783881,134613.06877297,33255.7041690153,10590.9885888584,49672.719104417,0.263422038254285,440.492863292382,6,24 +2550.08152864272,3900.61548990875,0.096360771744812,6579.89324879316,87739.1506164843,30470.5331935723,9703.99146292112,32376.0703381861,0.027375219245685,406.063937681962,16,20 +1872.2209892327,3503.06425347628,0.275807233581821,17463.5973856984,26454.1211876422,39234.6632587714,12495.1156875068,9761.66833492332,0.078354327722108,298.124361342787,14,15 +3499.1510377969,1119.93391759508,0.375658448770538,24866.9707666997,142762.677027552,3806.27972692684,1212.19099583657,52679.9546227129,0.106721150218903,557.189655700143,17,14 +3229.20793334115,3355.85591299491,0.345167893665285,1147.89385597625,16118.9381956341,33469.0302173807,10658.9268208219,5947.94767366572,0.098059060700365,514.205084926935,17,2 +2706.3812595386,3521.36783766503,0.614464389948367,17137.177399466,54233.3070056734,5995.97183952632,1909.54517182367,20012.2904079976,0.174563747144422,430.952429862834,16,21 +1828.65965762254,2598.14504614232,0.979357561817943,19524.7515714704,41801.6879355791,40233.4687052457,12813.2065940273,15424.9770979997,0.278226580061916,291.187843570468,15,8 +3702.56980897578,677.301158636525,0.849809449707427,7844.52135671003,170241.606207885,2934.99370448751,934.711370855895,62819.7808885184,0.241423139121428,589.581179773213,12,24 +1497.69948895484,3353.94405247389,0.220000303987581,24000.8545932204,207366.654054957,920.892410988836,293.277837894534,76519.0605368845,0.062500086360108,238.487179769879,13,12 +1099.59772820554,1278.00402018239,0.770527609452478,12874.8216812286,81289.0223235966,38521.359824189,12267.9489885952,29995.9491968991,0.218899889048999,175.095179650564,2,4 +3092.52915077675,1560.10535790249,0.459874952831461,243.809847752502,100492.231881195,12250.9237420878,3901.5680707286,37082.0043842048,0.130646293418029,492.440947575916,14,11 +149.264547832835,234.232151454266,0.574357463074629,10104.3867789552,255130.711510158,18925.5998237658,6027.26109037127,94144.1739889882,0.16316973382802,23.7682401007699,0,22 +1163.20115040249,3263.47465602061,0.918437938608274,23191.3327028448,64232.2748764577,15064.5180102929,4797.61720073022,23701.9464488774,0.260919868922805,185.223113121416,3,0 +3762.53188992164,2968.93365110202,0.399806992683345,22823.2280036758,219927.592120643,17185.8943419483,5473.21475858226,81154.0930334476,0.113581532012314,599.129281834656,2,8 +1048.27867430453,824.796478244599,0.839441817783434,12594.3720390226,270516.412436739,13209.0239988252,4206.69554102713,99821.5544047007,0.238477789143021,166.923355780976,8,9 +2614.04602033954,2049.92735981072,0.199725059518134,17454.1759295768,161921.999829032,34617.6706338887,11024.7358706652,59749.8154350672,0.056740073726743,416.249366296105,4,11 +2752.40213065151,807.102077943119,0.071916097564717,18411.0436528082,88142.3669807098,2280.61475107176,726.310430277631,32524.8586644686,0.020430709535431,438.280594052788,16,21 +2112.21613311563,785.209351512185,0.683768437128809,4605.20645210129,276460.270469757,38962.2724299113,12408.3670158953,102014.85995194,0.194252396911593,336.340148585291,12,14 +666.330694430994,2680.12453741625,0.576452318989441,4866.80006439149,198465.101304069,34017.7302273474,10833.6720469259,73234.3547247487,0.163764863349273,106.103613762897,4,14 +823.666901362046,2518.72137507361,0.27628155975755,20574.9469555976,149655.692864291,16654.7491623985,5304.06024280207,55223.5029019524,0.078489079476577,131.157149898415,5,23 +1444.01495954188,1184.6980284344,0.771763775219881,1166.77253120884,185696.714093852,14843.0609251631,4727.08946661245,68522.7727283587,0.219251072505648,229.93868782514,14,21 +3227.63832872708,991.861966156505,0.359639100327403,2513.96447625218,218148.529616932,32884.5002578689,10472.7707827608,80497.612404772,0.102170198956649,513.955147886478,6,9 +2631.6329004466,2364.14818658402,0.48236011378855,10059.4877551686,4259.63445047446,3795.32092304524,1208.70093090613,1571.82083043338,0.137034123235384,419.049824911879,7,9 +2653.44610251875,1191.66701412404,0.1931294770696,524.93510189361,33862.4206390957,33460.0759251079,10656.0751353847,12495.358169408,0.054866328712955,422.523264732285,10,4 +1896.6353657881,1704.66903494451,0.82391852195124,17758.5961291814,139079.413579143,5701.15771380246,1815.65532286703,51320.816818872,0.234067761917966,302.012000921672,5,19 +1139.18339165738,1251.68541654311,0.514271401202526,21254.0183575958,200374.711036162,31144.0884349479,9918.49950157576,73939.0077624214,0.146099829887081,181.398629244806,4,0 +3873.2951915619,3376.63147255482,0.295196107128569,12584.7512409303,16872.860899188,33830.092654399,10773.9148580889,6226.1479332797,0.083862530434253,616.76675024871,8,9 +1960.76886554284,2237.77408339931,0.967099799670009,19929.4305394401,84395.4912785389,4877.41582189755,1553.3171407317,31142.2477042579,0.274744261269889,312.224341646949,11,13 +1464.16021869456,548.331782524971,0.671647088295536,20977.754884293,286556.163565351,7121.58733669765,2268.02144480817,105740.281758432,0.190808831902141,233.146531639261,9,19 +3521.70053200645,399.741360091743,0.982034244168489,2842.68447470637,47489.0121887062,13208.931712455,4206.66615046338,17523.6207338399,0.27898700118423,560.780339491473,17,25 +3996.85634763649,3276.89332916575,0.015207574903542,1145.50765264288,274840.987241325,28622.5375014509,9115.45780300984,101417.338465434,0.004320333779415,636.44209357269,5,10 +1378.38046964155,984.529582825778,0.698936015792212,19596.9564847052,3967.700690008,33656.0276141259,10718.4801318872,1464.09619557491,0.198561368122788,219.487335930183,4,14 +946.66296132722,1916.21239520724,0.553522547558474,6343.34157701682,63528.9902977632,12443.8977198509,3963.02475154487,23442.4318441931,0.157250723738203,150.742509765481,2,6 +1773.03232853854,889.155275937964,0.292108534992024,12277.9524921436,212925.4365995,40.8071281030535,12.9959006697623,78570.2718079336,0.082985379259098,282.329988620787,13,23 +107.844030793869,3341.5129370726,0.481463224796387,11585.6537161828,176656.208342177,27961.3034112605,8904.87369785366,65186.7927461908,0.136779325226246,17.1726163684505,15,5 +3128.64084095233,1890.49756069721,0.481850471512405,8360.6733867264,174154.220978559,33707.6936607764,10734.9342868715,64263.55017659,0.136889338497842,498.191216712154,3,22 +2977.34696094843,1966.10431183045,0.716998552923815,19425.9600090707,83303.6001480847,25586.4669280745,8148.55634652054,30739.3358480017,0.203692770716993,474.099834545928,18,22 +3213.16750556199,1272.20371703424,0.202883765053049,23951.930912706,115358.850945759,6008.15035417229,1913.4236796727,42567.8416774019,0.057637433253707,511.650876681845,10,23 +163.018994608035,1238.02623485612,0.897567706781846,8117.30196830612,25607.4109320227,38871.0172438318,12379.3048547235,9449.22912620764,0.254990825790297,25.9584386318527,17,4 +1475.88192656974,3533.30242660977,0.083976035977045,10972.8128927108,82987.8684300911,41147.6318163856,13104.341342798,30622.8296790004,0.02385682840257,235.013045632124,3,21 +661.94690607803,2465.69383357455,0.70603475556542,11913.0546605986,62561.706008771,43112.3685923523,13730.0536918319,23085.5003722402,0.200578055558358,105.40555829268,7,16 +44.8387740221167,2809.40878185978,0.612953232192252,8903.71398276863,171928.038043477,4146.33171245757,1320.48780651515,63442.0804588476,0.174134440963708,7.13993216912686,6,10 +2081.26505939173,3157.93453082255,0.611569227088464,7104.38392527585,50753.8254824545,36455.3352473797,11609.9793781464,18728.3488865146,0.173741257695586,331.411633661103,9,0 +973.19979973954,3488.17644533172,0.89608228112649,9244.10989676325,274744.125238271,42790.2477133772,13627.4674246424,101381.596028882,0.25456882986548,154.968120977634,14,1 +2130.57355899288,345.472616350558,0.350688671018851,3791.15125134497,234550.52863328,5943.34189635703,1892.78404342581,86550.010565786,0.099627463357628,339.263305572115,12,12 +3018.89114061581,110.186888565471,0.745656267018655,10363.2747065127,184930.917848702,40364.689335423,12854.9966036379,68240.1910880819,0.211834166766663,480.715149779588,15,21 +2682.05345924364,2245.16677081166,0.261453110079707,14153.2209800143,167032.617632135,32865.3214808236,10466.662891982,61635.6522627804,0.07427645172719,427.078576312682,16,10 +296.63086931848,2555.70533359221,0.112746660653352,16306.2692186308,288628.904128689,31864.7391078422,10148.0060853001,106505.130674793,0.032030301321975,47.2342148596306,14,5 +399.003299309308,2694.5517113627,0.601821360719551,6926.04080574488,260681.493713664,8135.55630016946,2590.94149686925,96192.4331046731,0.170971977477145,63.535557214858,5,25 +1909.43347091975,3574.22110232169,0.656726206320207,1957.71208749939,177652.251174304,12359.0497720672,3936.00311212331,65554.3362266805,0.186569944977332,304.049915751553,6,21 +819.740403373336,3067.57534393954,0.24309079271439,23900.4108626657,261106.125840558,24527.0935369386,7811.17628564924,96349.1239264052,0.069059884293861,130.531911365181,8,1 +3111.38764646312,1583.26020353818,0.984597924324752,10776.4245927494,150834.872069799,28858.9764943201,9190.75684532487,55658.6243799996,0.279715319410441,495.443892748904,7,21 +82.7792693703745,2940.08840747861,0.602866882967437,7730.43332815966,170193.396134729,22126.2765594346,7046.58489153968,62801.9911936269,0.171269000843022,13.1814123201233,16,23 +3883.71171728489,3980.67785408781,0.133528807063959,20449.984148743,248721.003423935,28682.7222292984,9134.6249137893,91778.9680531125,0.037934320188625,618.425432688677,14,22 +1199.34942673831,2663.20564594265,0.175878311834937,2196.65704296072,259335.423774973,14234.9889219489,4533.43596240411,95695.7283302483,0.049965429498562,190.979208079349,14,15 +1273.64838323978,2468.5760565379,0.999801912861377,14749.8460553567,192682.131827032,21198.9356263032,6751.25338417299,71100.4176483513,0.284034634335618,202.810252108245,3,13 +557.333079253603,1350.92255855494,0.102041494541554,20431.6231570726,116061.56514568,21492.8951451581,6844.87106533697,42827.145810214,0.028989060949305,88.7473056136311,1,4 +551.824487611372,3032.28291142087,0.435438542918049,22632.1296320292,281408.290752681,30470.0010492051,9703.82199019271,103840.697694716,0.123704131510809,87.8701413393904,6,16 +3383.27518840226,2286.28825400316,0.669751788000674,7941.88252653757,192517.716732161,27819.2060885126,8859.61977341166,71039.7478716461,0.190270394318373,538.738087325201,11,25 +1981.58262194304,1015.2811620114,0.224334797290765,8587.79827750423,225288.072653149,40962.2166866811,13045.2919384335,83132.1301303133,0.063731476503058,315.538634067363,11,23 +749.680726056544,884.554967439828,0.204151330355621,18623.7010132668,152775.643452258,35979.4152328744,11458.412494546,56374.776181645,0.057997537032847,119.375911792443,11,10 +1771.17274143486,157.571909967602,0.155762588030097,7471.56949607911,55003.4749909396,4535.59601336001,1444.45732909554,20296.4852365091,0.044250735235823,282.033876024659,11,8 +2977.5176639863,668.808023870254,0.850371991510202,10329.1985833388,142630.769973393,15060.036500326,4796.18996825669,52631.2804329864,0.24158295213358,474.127016558328,14,2 +3011.46584722175,3389.28426868938,0.725931772758874,15986.8491761617,58976.0213192376,40646.9603731409,12944.8918385799,21762.3694904936,0.206230617261044,479.532778220024,3,13 +2359.01118155917,3813.7185454506,0.34776586970608,21114.2192361867,261969.596397406,2174.43816279182,692.496230188478,96667.7477481203,0.098797122075591,375.638723178212,14,23 +2312.86973573223,271.48695873306,0.772108262915792,15761.4533377446,3265.31097579394,5706.79588978785,1817.4509203146,1204.91179918596,0.21934893832835,368.29135919303,16,6 +2875.21534917466,2470.30433519199,0.428973292434812,12303.2533498543,168992.22644739,19095.5155070865,6081.37436531417,62358.7551466384,0.121867412623526,457.836839040551,6,5 +3143.91601826954,761.000024904522,0.898853730091424,13719.0555622118,146588.331061645,8393.29422855776,2673.02363966808,54091.6350780978,0.255356173321427,500.623569788143,9,24 +3402.973254072,3041.37729647463,0.041105374718848,24135.278592654,49322.3043354745,3024.20351804053,963.122139503354,18200.1123009131,0.0116776632724,541.874721985987,0,4 +1537.66860044948,3109.20307997087,0.755077349266838,17578.2205363763,117888.87545561,25882.5177249351,8242.84003978825,43501.4300574207,0.21451061058717,244.851687969662,8,15 +1974.28151803242,471.989696547289,0.076033424208559,1581.79610380263,194648.918605528,38126.4175453663,12142.1711927918,71826.1692271321,0.021600404604704,314.376037903252,6,18 +3393.91495645092,1679.99379832331,0.340424498680716,12515.9944821565,183851.006882831,18227.2592830892,5804.85964429592,67841.6999567642,0.096711505307022,540.432317906198,0,9 +811.457891502179,2339.95471566129,0.768731380879249,11642.7013407926,228201.254232875,33688.7418478138,10728.8986776477,84207.1048829797,0.218389596840696,129.213040048118,7,23 +3467.81785058157,3977.35823110608,0.070393752152664,12670.2188593835,286462.709929099,14216.7647769461,4527.63209456882,105705.797021808,0.019998225043371,552.200294678594,11,25 +2301.93116910288,124.906145186944,0.047640878613528,9438.21870538662,129019.179236202,22486.1125999003,7161.18235665615,47608.5532236908,0.013534340515207,366.549549220204,1,21 +792.808830646129,524.463582622975,0.80349227714979,12044.3713170831,112520.930174186,20428.0090042953,6505.7353516864,41520.638440659,0.228264851463008,126.243444370403,12,1 +3480.41366196057,3683.64738063567,0.809017359847075,14553.9626846139,38497.4488800762,38428.4836425214,12238.3705867903,14205.7006937551,0.229834477229283,554.205997127479,18,4 +145.920116186008,3961.94938026509,0.815460246317918,188.469363192342,283663.96721455,39458.3326067296,12566.3479639266,104673.050632675,0.231664842703954,23.2356872907656,3,4 +3450.65842939124,885.799195981363,0.920220627329074,5801.890951199,77470.1121057791,21214.9584561387,6756.35619622252,28586.7572346048,0.261426314582123,549.467902769306,11,0 +149.21538580979,3679.9200606662,0.25504931572342,11922.3373020227,159029.299695153,35599.5512432859,11337.4367016834,58682.3984114956,0.072457191966881,23.7604117531513,14,25 +1176.7640947918,603.549313947573,0.12287469966576,9630.6989129552,248675.339507845,36800.2783129985,11719.8338576428,91762.1178995738,0.034907585132318,187.382817642006,15,19 +3413.18626090025,1463.91523530556,0.24731927243259,24239.6562349406,24389.4446256755,3771.82056885141,1201.21674167242,8999.79506482491,0.070261156941077,543.500996958639,0,24 +378.089331713983,1701.29293601298,0.796692909905462,5513.62997007225,242609.677256691,18061.0293647373,5751.92017985264,89523.8661463804,0.226333213041324,60.205307597768,2,24 +1338.65358141865,724.322606360108,0.121146916608431,10667.892151574,26460.6930993163,44251.8633226924,14092.9501027683,9764.09339458166,0.03441673767285,213.161398315072,14,8 +2118.17634784709,741.037737250455,0.234274702724862,12971.5380286991,139369.324002194,32719.3353398607,10420.1704904015,51427.7948347579,0.066555313274109,337.289227364186,17,24 +2394.38956571099,853.274572266644,0.252761169689506,17811.5636421847,45162.7851289718,21492.7075695714,6844.81132788898,16665.2343649342,0.071807150479973,381.27222383933,7,4 +1716.64929727573,3587.01241769326,0.349876173368579,17571.3076015779,277538.173522717,7989.31948714124,2544.36926342078,102412.610155984,0.099396640161528,273.351798929256,13,6 +2602.57717223971,2496.33311766142,0.123531330511057,12938.7793044793,144558.172669465,29101.9069899936,9268.12324522089,53342.499140024,0.035094127986096,414.42311659868,4,18 +2410.29491129191,3279.15662599374,0.541857664843946,11108.8960606744,150732.971212795,39945.2330111737,12721.411786998,55621.0225877472,0.153936836603394,383.80492218024,0,8 +2519.36089673893,1762.00543900521,0.284667872996149,10924.7320834508,140637.458361095,31588.7685377659,10060.1173687153,51895.741092655,0.080871554828452,401.172117315116,18,2 +3233.33431867253,304.059990344393,0.398769894970787,426.611536122615,282422.028123412,7568.90679944452,2410.47987243456,104214.770525244,0.113286901980337,514.862152654862,15,18 +1420.61165954675,293.66906805616,0.293862531049152,17755.4249379456,136451.012346715,31322.919019569,9975.45191706019,50350.9270652085,0.083483673593509,226.212047698527,18,23 +3820.03699931969,1372.07996215023,0.498596453951349,5431.30271848004,34429.8126741229,25303.9707205976,8058.5894014642,12704.7279240306,0.141646719872542,608.286146388486,7,14 +17.8594893912503,602.913881014278,0.383465110972071,859.568347044999,122166.981103844,24077.8978972989,7668.12034945825,45080.0668279867,0.108938951980702,2.84386773746024,11,9 +577.44024458097,2482.76979932327,0.060730225348047,13274.3213016436,234081.823571854,2405.90696689266,766.212409838427,86377.0566685808,0.017252904928423,91.9490835320016,2,5 +3198.36146022598,3722.33356422841,0.145788845812101,18306.7810309474,208812.617696537,25787.1430679942,8212.46594522108,77052.6264562867,0.041417285742074,509.293226150634,14,3 +730.107436474589,3906.28837844938,0.221144506962971,8315.76451055406,284866.294166523,43138.3966312401,13738.3428761911,105116.713714584,0.062825144023571,116.259145935444,19,9 +331.847010116942,3405.85244908602,0.543952349582717,21377.433026594,49391.5069828276,20388.6386923388,6493.19703577669,18225.6483331467,0.15453191749509,52.8418805918697,6,0 +3719.02858298653,3530.9897414742,0.444882408874446,10996.4704123606,83416.8591366767,30427.9611280971,9690.4334802857,30781.128832722,0.126387047975695,592.202003660276,16,21 +3779.26964190201,1496.43256464822,0.100606843743645,19508.7973292636,92722.1159479677,34748.5741238787,11066.4248802161,34214.8029328294,0.028581489699899,601.794528965288,5,25 +2728.92282273106,682.229191480753,0.327960299329258,6939.20162569118,36165.8662389132,9097.11870951933,2897.17156354119,13345.3380955399,0.093170539582176,434.541850753354,15,18 +1699.78179036819,1647.35369375514,0.449641602259904,10491.6363850069,184745.501678765,2859.60162736399,910.701155211462,68171.7718371826,0.127739091551109,270.665890186017,7,6 +137.466049497238,3995.0183248252,0.037457012583827,12807.9932090265,130504.191561941,481.09192054113,153.213987433481,48156.5282516387,0.010641196756769,21.8894983275857,2,16 +777.139258295739,1135.05763691868,0.189136742698265,1890.35553181003,105317.487562978,36243.2548057564,11542.4378362282,38862.5415361542,0.053732029175644,123.748289537538,6,11 +2101.81334882895,1185.61544400885,0.197302816493352,2474.37482209125,257129.529679073,19603.7669863132,6243.23789373032,94881.7452690306,0.056051936503793,334.683654272126,4,3 +838.953886909658,1547.78105345153,0.388540103543497,21803.449531629,126366.028761394,23971.5566034637,7634.25369537061,46629.5309082635,0.110380711233948,133.591383265869,12,3 +1684.49244256625,3949.12174125376,0.86965665771386,22812.0832072263,70655.7081842195,43336.6524445438,13801.4816702369,26072.2170421474,0.247061550486892,268.231280663416,0,19 +1577.95497980138,62.7816540632822,0.760315977058759,14912.1152160369,222297.664761944,37584.4183768446,11969.5599926257,82028.6585837432,0.215998857118966,251.266716528882,6,11 +399.936303903477,2195.93886098663,0.654891456001751,8792.62770036794,81768.8663687338,36785.900939396,11715.2550762408,30173.013420197,0.186048709091407,63.6841248253944,9,16 +398.85554293969,613.864281779491,0.446348855744182,13230.8251735064,244492.917418071,1118.31651495819,356.151756356111,90218.7887151554,0.126803652200052,63.5120291305239,2,21 +808.806062195788,3153.09300802433,0.223619846601555,15310.5995358596,120970.87001621,39544.4646876694,12593.778562952,44638.6974229557,0.063528365511805,128.790774234998,12,20 +2487.81595067537,21.2107042231724,0.498781668628668,1799.57998021316,257584.327910177,12286.1022855115,3912.77142850685,95049.5674945303,0.141699337678599,396.149036731747,10,23 +559.29086949437,478.4391884361,0.726530395271646,5571.99479450445,174142.985864133,29719.6220711514,9464.84779336032,64259.4043779089,0.206400680474899,89.0590556519697,10,24 +3882.23101724487,1340.28113171989,0.165192647283016,21340.7361415619,51838.1610947351,19294.5422306941,6144.75867219557,19128.4727286845,0.046929729341766,618.189652427527,7,9 +2949.86970135265,671.618663323633,0.82313435517219,20088.6213502415,123579.971908528,12600.8019275036,4012.9942444279,45601.4656489033,0.233844987264827,469.724474737683,9,6 +3647.43471088914,1574.14579327991,0.133813170026567,23053.5736976095,178780.21971297,42962.2516256977,13682.2457406681,65970.5607796937,0.038015105121184,580.801705555596,1,25 +3576.15479456805,3360.53579792395,0.099492128217996,840.839980667606,242011.110962317,42677.6384282126,13591.6045949722,89302.9929750247,0.02826480915284,569.451400408925,18,3 +2649.10853374531,393.810073882682,0.268659795192687,3859.81961470881,184434.848312148,901.50418955433,287.103245080997,68057.1395985786,0.076323805452468,421.832569067725,16,5 +3879.3977827648,3764.88934369587,0.017366430328484,17914.5206549248,285671.867541088,7348.88512237691,2340.40927464233,105413.973262394,0.004933644979683,617.738500440255,0,3 +417.403661926725,963.301170612939,0.45870276863735,21430.5985009216,55350.7044744939,24688.4001072667,7862.54780486201,20424.6141972302,0.130313286544702,66.4655512622174,3,7 +3010.70592634378,1240.22969468177,0.02507530412926,6297.31929371175,52527.992822972,40391.5918633576,12863.5642876935,19383.0231819085,0.007123665945813,479.411771710793,18,24 +677.821828531073,56.4783678424613,0.648117860856233,18360.3330559425,224805.742446851,41553.7806538359,13233.6881063172,82954.1485043731,0.184124392288703,107.933412186477,19,23 +3352.93185877861,751.970984943874,0.693870318649985,4559.92659690955,194934.423432986,32509.8255243957,10353.4476192343,71931.5215619875,0.197122249616473,533.906346939269,15,20 +554.987880262351,3008.22183790399,0.787854349057318,9296.3645211682,100204.460172375,25441.8013233083,8102.48449786888,36975.815561762,0.22382225825492,88.3738662838138,15,15 +761.523190676293,3361.40802125931,0.021766815489579,7774.8112476014,245279.877561926,12608.842718598,4015.55500592293,90509.1799121498,0.006183754400449,121.261654566289,18,3 +1362.06153793621,2303.5568595671,0.843102536563312,11137.0236787099,122032.845119738,36980.7914703766,11777.3221243238,45030.5701548849,0.239517766069123,216.888779926148,9,23 +3383.26295250905,907.530281119407,0.66467494277578,19174.6431010064,269482.288126361,16278.027117163,5184.08506916019,99439.9587182144,0.188828108743119,538.736138934562,6,22 +3611.65655128906,61.4372377045268,0.585194609701698,12727.1420277844,268260.288420894,20060.8905454014,6388.81864503229,98989.0363176731,0.166248468665255,575.104546383608,4,23 +1615.22990779616,1807.90329792178,0.829032660156659,22229.1379218951,220059.222236122,27421.2804194885,8732.89185334029,81202.6650317793,0.23552064208996,257.202214617223,17,5 +3648.61385788456,986.444862545674,0.4143537194339,19087.7372033528,225584.757604177,23648.0156673945,7531.21518069889,83241.607972021,0.117714124839176,580.989467816013,7,10 +87.1218126198964,3426.5282250726,0.128591496884596,3558.09928871617,174026.934900867,25363.6692106012,8077.60165942714,64216.5811442314,0.036531675251306,13.8729000987096,0,12 +119.287799964536,1672.29146790255,0.752757271733055,10633.3221014121,62825.8764689664,10426.6220596606,3320.58027377726,23182.9802468511,0.213851497651436,18.9948726058178,18,12 +1872.35369508657,104.026778312851,0.376597470326491,22953.5606512003,252096.904053344,7859.21610386467,2502.93506492505,93024.6878425624,0.10698791770639,298.14549284818,4,11 +263.943767987007,1.69146191025794,0.350267076965392,13403.4200310526,172928.986493037,31463.9635237856,10020.3705489763,63811.434130272,0.099507692319714,42.0292624183132,6,22 +55.4777516004797,793.32424479707,0.269322256688911,3381.24593161623,13289.6937248013,14932.894730952,4755.69895890191,4903.94602391192,0.076512004741168,8.83403687905728,14,22 +161.298833386391,3864.37582948477,0.366298498049765,24472.1434152191,171242.155558298,11308.243764286,3601.35151728853,63188.9872908849,0.104062073309592,25.6845276092979,9,16 +2990.03113120132,815.362093163137,0.09235764557145,6580.29533635578,24710.2083258426,35804.6999796795,11402.7706941654,9118.15805381646,0.026237967491889,476.119606879191,17,18 +3875.85097348985,497.09184473706,0.632480422515592,24182.1774317182,238731.593139235,30690.8323566328,9774.15043204866,88092.8387967657,0.179681938214657,617.173721893288,3,21 +1826.67984526331,2981.00836386852,0.452102522177612,14468.6324623788,66373.2484967976,5014.79030273116,1597.06697539209,24491.9736150545,0.128438216527731,290.872586825368,4,9 +54.4633434008832,908.57447666302,0.441296374782527,12560.9242505607,12293.1941787607,40746.5393612009,12976.6048921022,4536.23401430284,0.125368288290491,8.67250691096866,13,18 +1984.80961728285,1388.43349750487,0.744642481465319,15573.3003675081,81222.4040609539,28555.7766730627,9094.19639269513,29971.3668121601,0.211546159507193,316.052486828479,16,17 +2835.97759169037,3143.74740312433,0.204473618075045,18531.6259245323,38478.7815634362,12215.7729947729,3890.3735652143,14198.8123850318,0.058089096044047,451.588788485728,11,9 +3335.06277745535,1287.52631653426,0.66165595141999,14011.6376032556,167935.388335953,10335.7637316807,3291.64450053525,61968.7779837465,0.187970440744315,531.0609518241,18,1 +3959.6657378595,331.683219781321,0.261886326286315,12179.4945439597,215993.590373278,17340.5843592123,5522.47909529054,79702.4318720583,0.074399524513158,630.52002195215,9,4 +2687.64203082683,2554.6502166201,0.907280259371345,493.880806225363,120228.225418669,30820.9428829087,9815.58690538494,44364.6588260771,0.257750073685041,427.968476246311,4,23 +729.088477025015,274.258089030353,0.068366506242893,11426.8464126578,90701.2203805573,3919.20987382858,1248.15601077343,33469.0850112758,0.019422302909913,116.096891246022,7,14 +3963.47644852199,3459.52897176791,0.9080192457075,16197.0747894012,40224.3437487461,19733.7022696659,6284.61855721844,14842.9312726,0.257960012985085,631.126823013056,0,23 +2650.09749222793,1587.3364777338,0.170825642888242,712.255474856535,38216.3744503765,6063.36454797666,1931.00781782696,14101.9831920208,0.04853001218416,421.99004653311,14,9 +3676.34011640379,1151.79734093702,0.248142458456003,9695.01602522622,221122.011923417,18218.9112757358,5802.20104322796,81594.8383481244,0.070495016606819,585.404477134361,11,0 +648.629530707997,2304.87208332277,0.446137622476337,13280.8934772702,50646.247089893,1455.56568469182,463.555950538796,18688.6520626911,0.126743642748959,103.284957119108,10,1 +2997.18973158685,3338.2481798845,0.016062793852017,23884.2416932937,130127.37198637,41146.5719626562,13104.0038097631,48017.4804377749,0.004563293707959,477.25951139918,19,24 +816.032807400489,3882.23921965554,0.940007337913286,4802.27254790018,269474.510515126,44334.5709814519,14119.2901214815,99437.088750969,0.267047539179911,129.941529840842,2,5 +2963.60164257644,3995.07214802944,0.466524729320688,23693.4602746452,268806.839557255,13957.2986313899,4444.99956413691,99190.7157037841,0.132535434466105,471.911089582236,16,6 +108.700389744665,3292.18982215891,0.60784188278394,20663.6781272296,114374.967942069,1941.2373339189,618.228450292643,42204.7852184756,0.172682353063619,17.3089792587046,3,14 +2948.26114768879,441.375550628472,0.461507875468921,16367.0559028369,149106.862740557,12402.6806478473,3949.89829549277,55020.9825610911,0.13111019189458,469.468335619234,2,14 +1699.35902195045,1365.38545132773,0.700919146858227,18556.3653344194,261521.876885035,13314.3366185324,4240.2345918893,96502.5375959539,0.199124757630178,270.598570374275,17,18 +2918.250630521,3899.37769741987,0.253539651417991,16708.2434396288,254935.205457592,31388.3397033289,9996.28652972258,94072.0315341668,0.072028310061929,464.689590847293,1,1 +1169.2630843891,3713.78570019855,0.957845672313845,15843.2047906743,104548.459968731,37149.0835482641,11830.9183274726,38578.7675161369,0.272115247816433,186.188389233933,8,8 +2473.13263622458,1882.08782077339,0.995826804635317,11007.6920712832,24975.5669294962,24661.5362472059,7853.99243541589,9216.07635774768,0.282905342225942,393.810929335124,1,11 +2521.23235406788,1655.86946024709,0.063160935817715,7103.95214014423,193558.344146302,5676.9731569168,1807.95323468688,71423.7432274177,0.017943447675487,401.470120074503,1,15 +2138.93182943576,3196.29092795485,0.798217204456111,11873.8284671362,25767.9445374888,37156.5894376881,11833.3087381172,9508.46661899956,0.226766251265941,340.594240356013,18,3 +3183.54540497343,1894.64149255541,0.783295093430883,4999.06856734887,187724.193037819,8457.43379863353,2693.45025434189,69270.9199401546,0.222527015179228,506.933981683667,7,9 +1030.10447849892,242.941890242745,0.333687329048058,9082.68791092691,29583.43914969,12265.205175344,3906.11629788025,10916.3982102177,0.09479753666138,164.029375557153,8,8 +403.056826023424,2426.63311096908,0.997610235566445,24065.5574035221,281461.221900557,14789.1161926837,4709.90961550436,103860.2294836,0.283411998740467,64.1810232521376,0,16 +1935.72710385475,3549.16120918269,0.301998916913593,748.134185745506,221911.650540945,28151.0176419138,8965.29224264771,81886.2179117878,0.085795146850453,308.236799976871,1,2 +180.113597374595,3164.85887959495,0.695888923482497,4406.06949101947,177449.645387858,21360.0450192653,6802.56210804627,65479.573943859,0.197695716898437,28.680509136082,9,17 +868.137890947606,349.384921358211,0.079821632191134,22563.7063709353,129213.086991344,33376.8360320673,10629.5656153081,47680.1059008649,0.0226766000543,138.238517666816,16,1 +3210.51705622586,469.887142167814,0.981680101913589,10013.8025298758,102547.327479033,24805.5368919819,7899.85251337003,37840.3422431856,0.278886392589088,511.228830609213,19,25 +1784.68020020237,1295.18256722938,0.90288435278692,9924.63642248466,7644.72967039365,13220.1473305873,4210.23800337175,2820.93345770983,0.256501236587193,284.184745255154,17,23 +2483.02395767926,2699.65678337676,0.481417819313697,18518.9650602087,186283.709480125,23079.8422409736,7350.26822960943,68739.376191928,0.136766425941391,395.385980522175,6,13 +616.907402356962,3390.45311735542,0.342327066730422,23793.292493417,108881.144520865,37503.5639322596,11943.8101695094,40177.5441036402,0.09725200759387,98.2336627956946,4,9 +1774.16269524404,986.217539108265,0.599773507415825,23763.3596977552,83797.094295413,9174.29029778013,2921.74850247775,30921.4370093775,0.170390200970405,282.509983319115,9,20 +3537.16048853444,3152.65042857528,0.944191890545236,23410.2791161184,13803.8423324171,23339.5413391309,7432.9749487678,5093.66875734948,0.26823633254126,563.242116008669,8,21 +2281.60618578888,1680.0418670573,0.683936385155177,23473.3513083573,257541.039508032,14229.2675337814,4531.61386426159,95033.593914403,0.194300109419084,363.313086909057,2,18 +1444.11180292109,2484.25146112354,0.6047136520815,16234.5351142128,73452.951930158,8027.85124218862,2556.64052299001,27104.4103063314,0.171793651159517,229.954108745396,5,9 +598.3472567613,3606.31942727758,0.622245386187619,2810.16645366474,147957.841499628,19584.785469052,6237.19282453885,54596.9894832576,0.176774257439664,95.2782255989331,16,8 +1630.60913946898,420.9269961671,0.647732336456107,5696.06234185201,125991.353660672,19006.1712830443,6052.92079077844,46491.2744135321,0.184014868311394,259.651136858118,11,21 +378.440664918146,3004.9077688147,0.807812128343807,17905.7909673198,231524.624464016,11278.4523046266,3591.86379128236,85433.4407616295,0.229492081915854,60.261252375501,8,9 +2216.4356446144,23.0331667928829,0.228078896449339,11920.9561270414,262152.061796744,18261.1476093799,5815.65210489806,96735.0781537801,0.064795141036744,352.935612199745,16,3 +1346.70888717377,291.475482597744,0.160724803295756,18338.6771815085,27947.8537870735,7073.37858073617,2252.66833781407,10312.8611760419,0.045660455481749,214.444090314295,11,10 +1302.39538733547,2282.24381884756,0.750204898801938,3124.6298933541,26080.302487504,1133.06106538998,360.847473054134,9623.72785516753,0.213126391705096,207.387800531126,14,22 +791.527874964587,2863.23047455147,0.844484204572512,6062.6745617898,205522.420061417,42890.6778798719,13659.4515540993,75838.5313879768,0.239910285389918,126.039470535762,0,19 +126.889186070399,1047.51369632855,0.745448347351892,1198.1472080524,259623.441708876,39029.3755690725,12429.7374423798,95802.0080106554,0.211775098679515,20.2052844061145,8,2 +1589.18223622264,1623.21067605162,0.392254707893317,13084.0337748723,116223.799087709,839.688633114383,267.416762138339,42887.010733472,0.111435996560601,253.054496213796,10,14 +3876.31705451427,2630.79091773421,0.929708011200993,11402.4374969818,44016.4504643395,7608.0953962626,2422.96031728108,16242.2326436677,0.264121594091191,617.247938616922,13,14 +1295.314637716,1677.6015292908,0.432520331509162,24558.4030258038,60990.2298997832,13258.7512247019,4222.53223716621,22505.6198892189,0.122875094178739,206.260292629936,16,7 +625.822181420288,182.221825161898,0.738188209403658,12097.0711258589,48642.8159001792,41309.7067270932,13155.9575563991,17949.3785609517,0.209712559489676,99.6532136019567,16,8 +1624.82945147946,1538.46159385357,0.674664996380581,11485.9537642767,169759.724388074,44303.5953325006,14109.4252651276,62641.9647188465,0.191666192153574,258.73080437571,1,21 +1638.77755549181,523.762958188788,0.503126301342061,18670.6863377305,128244.521698091,23526.6088521085,7492.55058984347,47322.7017336129,0.142933608335813,260.951840046467,18,25 +2574.78505937068,820.14393752994,0.995323081385566,14728.6651023039,229183.27916617,3194.76585730956,1017.44135583107,84569.4757070738,0.28276223902999,409.997620918898,7,6 +784.352196440623,3650.51132884404,0.227967665254889,4654.10272004949,122292.602333499,1552.67186732848,494.481486410344,45126.4215252764,0.064763541265594,124.896846566978,18,19 +1384.20033022627,341.943341802657,0.512324113994803,24171.8945844681,239523.088317785,12126.6008635556,3861.9747973107,88384.9034382971,0.145546623293978,220.414065322654,11,15 +2257.00956900171,1067.84483820291,0.441063787413287,555.827691685624,24601.991664716,37290.8719588928,11876.0738722589,9078.22570653727,0.12530221233332,359.396428184986,16,2 +2696.52655599895,313.51073575901,0.47603383752596,12417.0894554623,170698.545766041,42266.518182147,13460.6745803016,62988.3932716018,0.135236885660784,429.383209553973,7,19 +1416.39679240106,2825.88971075139,0.418851002398197,16988.8406263095,223945.114541874,15185.1434541806,4836.03294719127,82636.5736316878,0.118991762044942,225.540890509723,1,22 +56.7034773153145,3055.48866497259,0.46774785276363,4267.68660634407,245340.714126156,17624.183281644,5612.7972234535,90531.6288288399,0.13288291271694,9.02921613301186,14,25 +3877.94392955613,2954.70952035608,0.891912102288768,19645.1456119002,26460.0206334453,44562.9033868486,14192.007448041,9763.84525219384,0.2533841199684,617.50699515225,18,13 +1253.14228342386,1221.39436322279,0.381861530843356,14426.9450280179,105982.123133041,38585.4377291809,12288.3559647073,39107.7945140373,0.108483389444135,199.544949589787,1,14 +2403.63370830125,81.7831921131824,0.624167607256575,5909.77811878476,121668.176360599,20373.3470014706,6488.32707053204,44896.0060371214,0.177320342970618,382.744221067078,13,12 +1492.15219262089,2757.34280614223,0.480453471872177,5033.87566066333,126837.068243033,27247.3881260883,8677.51214206634,46803.3462151413,0.13649246360005,237.603852328167,1,18 +1778.0852236295,27.7929844882595,0.398719771560242,16766.6137667512,93908.2370811108,447.539649620099,142.528550834426,34652.48600779,0.113272662375069,283.13458974992,8,10 +2679.71248208031,1438.55685857454,0.599648735896657,4527.3948041636,51158.6655492474,19252.7828340728,6131.45950129707,18877.7363650359,0.170354754516096,426.705809248457,15,7 +2021.08887081138,3280.38853839416,0.925295090572825,18391.7346966669,103097.190315555,23766.1142804516,7568.82620396548,38043.2436588764,0.262867923458189,321.82943802729,9,9 +1772.86789734477,1711.72818997353,0.065188162181849,2662.41672738853,98039.9053120281,656.085722993588,208.944497768659,36177.0868310067,0.018519364256207,282.303805309677,1,21 +2258.26810068839,3789.97906983424,0.16007191032592,9119.365581319,280826.399248658,14600.6550771584,4649.89015196127,103625.977582531,0.045474974524409,359.596831319807,12,7 +3881.15263595641,1146.61710722328,0.173131218044278,9547.53695405736,98846.5381301026,43810.5038536651,13952.3897623137,36474.737317381,0.049185005126215,618.017935661849,11,16 +1338.27537566411,321.124580291616,0.7450497542783,1801.44037919487,200895.790715486,31708.5457078439,10098.2629642815,74131.2880868952,0.211661862010881,213.101174468807,19,23 +1725.31863030202,945.123980889895,0.670990753956319,17333.7776519755,219468.246775323,15754.7179677133,5017.42610436729,80984.5929060232,0.190622373283045,274.732265971659,15,5 +1734.6176612479,1898.77015766477,0.306770252455742,10742.7909202894,63029.2758999322,13697.7997763551,4362.3566166736,23258.0353874289,0.0871506399022,276.213003383424,3,10 +2703.33743463174,47.8791993653235,0.827724017899277,21550.9341034275,187618.892923284,12702.2133526159,4045.29087662927,69232.0638093299,0.235148868721386,430.467744368112,2,2 +1711.50830642235,811.410402299483,0.901834817736976,19098.1792434986,212574.082118125,22579.3933330045,7190.88959649825,78440.6207077952,0.256203073220732,272.533169812476,16,4 +2594.34087887295,542.381875788248,0.279053370500572,15891.9481130322,41619.6598770142,39593.1087686789,12609.2703084965,15357.808072699,0.07927652571039,413.111604916075,7,22 +2898.54532004898,2109.24093823666,0.779688983627684,14523.0246502522,68343.1512306756,37791.8695610765,12035.6272487505,25218.8749928692,0.221502552166956,461.55180255557,12,10 +335.443549611212,1529.0274642833,0.994787561802452,7065.88535023889,127399.77485377,5591.08928703711,1780.60168376978,47010.9870309114,0.282610102784787,53.4145779635688,1,15 +3560.17641653849,2291.38795797254,0.789534725184951,19896.3178290602,211336.227533122,23594.6613548637,7514.22336142156,77983.8477982,0.224299637836634,566.907072697212,0,15 +2043.2453623344,2111.18210295769,0.306540096556118,24900.9666561012,189689.370551571,44181.4118558615,14070.5133298922,69996.0776943066,0.087085254703443,325.357541772994,13,21 +900.344858883959,1272.77142247592,0.638429834247653,9984.06611541145,19419.1085582561,33087.9033813427,10537.5488475614,7165.72271522365,0.181372112002174,143.367015745853,9,18 +1905.33243297813,2190.83762789117,0.71564949785671,14723.3298617682,73976.3614171142,37737.4935043197,12018.3100332228,27297.5503384185,0.203309516436565,303.396884232186,9,10 +3823.82261401165,3721.08130081854,0.709586050716998,24552.9264161249,35563.3554347528,17268.9926187477,5499.67917794513,13123.0093855176,0.20158694622642,608.88895127574,16,14 +1085.05101511393,3056.64185059381,0.102224258397235,97.8594161916286,96968.1777906505,35276.1437469332,11234.4406837367,35781.6154209042,0.029040982499215,172.778824062728,4,14 +3715.15172414757,2680.02062700613,0.034304919016039,10577.2888334465,160502.698381366,43018.2198767897,13700.0700244553,59226.0879636037,0.009745715629557,591.58466945025,8,2 +3364.3555526881,296.982844571038,0.299265819165516,8861.98458079686,252559.678843709,23005.4578822184,7326.57894338166,93195.4534478631,0.085018698626567,535.725406478997,4,5 +2550.81042940506,2436.73231791941,0.867560797572449,16267.3107132689,245953.121782231,44830.5203866238,14277.2357919184,90757.6095137384,0.246466135673991,406.180004682334,7,0 +1947.67280896979,331.842778459014,0.539452681131114,7015.63321724911,231786.689443823,22803.338962249,7262.20986058885,85530.1437062078,0.153253602594066,310.13898232003,5,10 +1188.04611534275,3959.06496925587,0.67685237147313,15070.0169412804,271666.836103494,16879.511328541,5375.64055049077,100246.064982839,0.192287605532139,189.179317729737,13,24 +1006.61731715068,3996.74611361531,0.916352071514023,8991.14829637303,56031.463486095,39246.8020033322,12498.9815297236,20675.8167845369,0.260327293043757,160.289381711892,17,15 +1182.59641584992,977.311773271767,0.506997542607663,5570.46160117451,163841.428809965,8622.2847296977,2745.95055085914,60458.0918117952,0.144033392786268,188.311531186293,19,2 +2978.01859477335,2466.58705193912,0.299625758236423,24897.2773754443,204698.516899524,41433.7798214028,13195.4712807015,75534.5080810052,0.085120954044438,474.206782607221,11,20 +3748.36545533446,3522.06369123256,0.54429257536542,6266.72574123715,240930.984774615,13580.9064246582,4325.12943460452,88904.4224260572,0.154628572546994,596.873480148799,4,3 +269.919837620376,501.713208355508,0.484559115029575,1712.7281067792,261919.110238568,26191.9505968966,8341.38554041293,96649.1181692133,0.137658839497038,42.9808658631172,10,17 +817.209226037734,1964.00050327505,0.695970302285564,4551.40461858812,89404.4726124344,22644.3196603659,7211.56677081717,32990.5802997913,0.197718835876581,130.128857649321,11,21 +3248.02163936109,2938.7890650783,0.758410169257972,15814.7898630402,272786.153728881,1973.34215329785,628.45291506301,100659.09731693,0.215457434448287,517.200897987435,16,0 +1970.86284220235,1216.76167178507,0.898863250027244,6566.05932375872,22014.2447380978,14628.31786126,4658.69995581529,8123.33754173351,0.255358877848649,313.831662771075,18,0 +733.565771689813,707.840859434657,0.687132436597311,4514.753242808,193532.864963355,30720.7000556099,9783.66243809233,71414.3413148912,0.195208078578782,116.80983625634,18,21 +2783.48734355436,3613.66395787951,0.934402632371475,4932.91568362999,241400.652846305,9074.61111159973,2890.00353872603,89077.7316776033,0.265455293287351,443.230468718847,18,24 +2915.09269626779,3051.88887327864,0.606101151431129,12146.9464802067,173366.315321238,9667.85300458498,3078.93407789331,63972.8100816376,0.172187827111116,464.186735074489,11,25 +758.706351426398,1500.99556597694,0.157130169411876,16873.7013349163,47625.6439044437,14255.2555561464,4539.89030450522,17574.0383411231,0.044639252673828,120.813113284458,14,15 +1965.65996389895,2577.92226687691,0.758184304827786,6140.59999223281,62369.7671098405,9060.78226003918,2885.59944587235,23014.6742102732,0.215393268416985,313.003178964801,6,8 +2109.61809590434,2730.24619678285,0.759450848961596,1721.40803391434,189462.203828034,32711.2049474011,10417.5811934398,69912.2523350679,0.215753082091362,335.926448392411,16,21 +1141.88509129608,1292.41166970376,0.300828004370306,2121.02977704568,199676.233493587,30934.1534863003,9851.64123767525,73681.2669718033,0.085462501241564,181.828836193643,13,5 +1008.11202369764,2621.78722134182,0.842037284199635,23497.3268602369,56964.2257741941,22607.7471573284,7199.91947685618,21020.0095107727,0.239215137556714,160.527392308541,0,20 +2084.76486754478,63.3931217899936,0.446888451754701,20101.8789608669,82107.9531472158,16156.3086694023,5145.32123229373,30298.1376926996,0.126956946521222,331.96892795299,2,24 +369.767569183281,330.03956260263,0.255296278345724,16119.8311812954,25649.648772464,35489.8740229498,11302.507650621,9464.81504518967,0.072527351802763,58.8801861756817,2,25 +1983.23446871661,3577.64007169259,0.329135544684764,21810.163103316,187179.150870907,21589.724404182,6875.70840897516,69069.7973693384,0.093504416103626,315.801666993091,0,16 +2310.2354826768,3331.8481035886,0.480737249853487,9290.73907718071,59524.0698088763,7386.65136429373,2352.43674022093,21964.6014054894,0.136573082344741,367.871892145987,6,18 +1773.32976678026,16.355551577069,0.193847145922969,1697.45420697455,248021.379995097,22392.3703830073,7131.32814745455,91520.8044262351,0.055070211909934,282.377351398131,15,20 +595.069385943861,865.027071125367,0.022074840243071,2399.54720809622,201235.100038567,21259.1167695174,6770.41935334949,74256.494479176,0.006271261432691,94.7562716471116,1,18 +2362.74966388653,2452.05001639914,0.867664119982151,7213.71536952465,28788.9403117439,27761.236407632,8841.15809160255,10623.2252072856,0.246495488631293,376.234022911868,6,5 +1655.28671666756,1492.69507821116,0.86589915339991,24502.3997769816,92887.722031563,39942.5916919879,12720.5706025439,34275.9121887686,0.245994077670429,263.580687367446,12,14 +205.125686346522,3399.45200485763,0.799787226806795,23185.9213304834,206700.032405906,6736.13848745932,2145.26703422271,76273.0746885262,0.227212280342839,32.663325851357,18,5 +918.691425860109,635.609640834187,0.834253313208121,18483.6156469763,287601.97772401,18669.6599354915,5945.75157181258,106126.19104207,0.237003782161398,146.288443608298,19,13 +972.126835551913,1013.05123908276,0.799340353556138,15790.619813916,60763.8218937543,38072.1931630951,12124.9022812405,22422.0744995403,0.227085327714812,154.797266807629,11,12 +814.552319253351,2525.29284630585,0.186799125429448,11945.2937563894,288863.782753428,9084.18290114263,2893.05187934479,106591.801754032,0.053067933360639,129.705783320597,1,0 +3042.23170531758,298.782442651557,0.278891563864991,22956.9981594132,46112.1870516217,27035.2647349395,8609.95692195525,17015.5671777202,0.079230557916191,484.431800209806,10,6 +3310.89661353837,2320.43989902162,0.64080087097511,6566.46345110636,235126.450057331,5328.59820398006,1697.00579744588,86762.5276964321,0.182045701981565,527.212836550696,18,0 +404.65498670436,2868.5176537117,0.918671421686001,23895.9956348729,176339.502745784,39230.7367007801,12493.8651913312,65069.9272124664,0.260986199342614,64.435507437,17,14 +1998.04128787241,2214.69969544993,0.245775759222252,9302.82043395129,255853.042412495,21980.0185125488,7000.00589571618,94410.7167573782,0.069822658869958,318.159440744014,13,14 +1060.3695865138,2866.92957138318,0.825799009223962,23944.8377791722,245792.537991603,23132.3693904734,7366.99662116987,90698.3535024365,0.234601991256807,168.848660272898,11,10 +3902.2423680804,883.502121698256,0.832822879230926,4023.56527468775,71314.4545178431,6817.89049739604,2171.30270617708,26315.2968700528,0.236597408872422,621.37617326121,10,5 +9.96418457173215,29.4913920482818,0.251903048353199,1090.77275436531,164550.684461491,40160.4574463646,12789.9546007531,60719.8097643878,0.071563366009432,1.58665359422486,3,25 +1311.97712339933,3017.49593080462,0.88100640907272,24082.7087678814,93959.3693925182,35355.8718023701,11259.8317841943,34671.3540193794,0.250285911668386,208.913554681422,17,1 +680.592764269874,2880.64156730983,0.790763778413014,18590.6429159631,186281.952221231,17104.5966996088,5447.32378968433,68738.7277569118,0.224648800685515,108.374643992018,0,13 +1198.17760408193,1479.63720860652,0.647909221517809,11610.9821058533,126792.008631157,38564.0554398018,12281.5463184082,46786.7190520875,0.184065119749378,190.792612114957,2,18 +2058.11779382143,2510.77175173507,0.306741003757595,21695.9744213766,208806.247808053,17130.0192593355,5455.42014628519,77050.275943931,0.087142330612953,327.725763347361,8,2 +52.0464946648083,2467.20660526449,0.330283601897446,11322.2889938127,56828.6504447764,43699.0118159387,13916.8827439295,20969.9817139396,0.093830568720865,8.28765838611597,12,3 +3889.23814839073,2647.4799812705,0.524641455929539,24878.8037623705,53018.7169155056,30340.8286754621,9662.68429154844,19564.1021828434,0.149045868161801,619.305437641836,11,2 +2257.70588628756,2821.52991568037,0.570248370311078,13963.9878790124,249589.578484853,29813.6474601972,9494.79218477618,92099.4754556653,0.162002377929284,359.507306733688,11,10 +1377.70774062329,2465.48764642877,0.414124288400285,19561.4395621614,86647.0665870263,28199.9812442567,8980.88574657857,31973.0873014857,0.117648945568263,219.380213475046,5,12 +1771.64673817168,3521.7845284992,0.942498561558659,20864.2025249215,1556.79543859212,31258.1136430561,9954.81326211978,574.463261473107,0.267755273170074,282.109353212051,15,4 +574.591924808069,2894.12132202272,0.354113898594761,14.4302453413361,206470.969440256,30474.088948865,9705.12386906529,76188.5496089506,0.100600539373512,91.4955294280365,4,18 +79.822256642517,1096.10484945487,0.577514391610394,5208.62974563741,197096.620284298,34474.3088813278,10979.0792615694,72729.3801787078,0.16406658852568,12.710550420783,4,3 +3370.32522733452,2417.85780900052,0.726199687825988,17509.233615371,1886.48685934524,15697.8177763006,4999.30502429955,696.120612304517,0.206306729496019,536.675991613777,6,17 +3887.10470254594,1762.48792404035,0.988603601217958,15305.664264127,232788.220740327,27670.4846344945,8812.25625302373,85899.7124503052,0.280853295800556,618.965716965914,3,23 +1788.12072534745,332.576999236838,0.037421154471169,2045.6907030595,117957.618946373,25353.227191093,8074.27617550732,43526.7966591782,0.010631009792946,284.732599577619,3,0 +483.656986314659,3010.79089900146,0.522219383211078,20635.8408640411,146561.395356706,16261.3678861735,5178.77958158392,54081.6957035816,0.148357779321329,77.0154436806782,4,21 +1812.36976849553,2412.32370963264,0.905198398845934,17830.6942680542,78559.5692350927,24290.954224697,7735.97268302452,28988.7709354586,0.257158636035777,288.593912180817,17,8 +2165.37352162361,3604.29484836918,0.202829554552024,13376.4904688375,130628.772746989,4068.30769201932,1295.63939236284,48202.4991686306,0.057622032543189,344.804700895479,19,1 +2963.35985753117,1174.26613915887,0.184685405933601,10420.9562717895,182794.550745165,29675.1361533543,9450.68030361602,67451.8637436033,0.0524674448675,471.872588778849,12,20 +117.546135235799,3970.56801450843,0.94901096382204,2586.10629142154,183536.40111457,33231.9683504358,10583.4294109668,67725.609267369,0.269605387449443,18.7175374579298,12,18 +413.357720184903,1601.11502333742,0.153806718342953,22351.3530753564,280897.669735056,34369.3772623878,10945.6615485311,103652.276655002,0.043695090438339,65.8212930230737,12,13 +1783.95688735355,2518.04749820254,0.129798917160206,20394.2630189847,200935.901590702,14648.3975755829,4665.09476929392,74146.0891478605,0.036874692375059,284.069568049928,13,0 +600.142973135704,1248.32607363172,0.701407153118704,18619.3111679403,169291.051442275,8705.13786764983,2772.33690052542,62469.0226724262,0.199263395772359,95.5641676967682,16,7 +2845.93743729867,2160.44993083296,0.424022178392959,16703.0632748483,23231.8300754215,25979.9347050618,8273.86455575217,8572.63102414078,0.120460846134363,453.174751162209,12,13 +2564.95166915505,146.916340363304,0.87921232821177,5057.25835639798,172802.53414558,28869.6652755949,9194.16091579455,63764.7727474465,0.249776229605616,408.431794451441,3,0 +446.057575220595,1611.97043541121,0.962790384526764,9796.33620129726,288012.354951302,5242.0242882681,1669.43448670959,106277.621753248,0.273519995604194,71.0282763090119,5,21 +3691.53691401329,2225.16129013799,0.231782295816104,3379.49283089019,154873.925945876,4577.73807613962,1457.87836819733,57149.0501645299,0.065847243129575,587.824349365174,19,19 +2029.119513265,339.790595595731,0.420632630043752,18222.3411176854,80288.9941019372,5525.77740720368,1759.80172203939,29626.9350929658,0.11949790626243,323.108202749204,9,25 +3540.35258556971,2342.81191752519,0.029356890490169,23894.5773760043,233516.785054307,41333.5854988821,13163.5622607905,86168.555370593,0.008340025707434,563.750411714922,19,25 +1936.17479672629,3375.27321970117,0.086536736777518,19825.1612274111,122034.198684687,18451.2476822742,5876.19352938669,45031.0696253458,0.024584300220886,308.308088650683,19,0 +2361.78524605507,2043.77591816904,0.539332962994871,13708.257500549,177837.563281355,10539.2073176944,3356.43545149503,65622.7170779908,0.153219591759907,376.080453193482,19,1 +2497.1032245917,823.904195110269,0.597252478893967,394.062180124125,8164.54844815546,34190.9527058707,10888.8384413601,3012.74850485441,0.169673999685786,397.627902005048,3,14 +3465.06361841559,1793.19511048199,0.867438560804041,24328.1718545453,54484.616760524,10700.5181997038,3407.80834385471,20105.0246348797,0.24643140931933,551.761722677642,10,8 +882.678681779526,1229.1543404022,0.920986677978175,17606.6648578284,181475.17832643,40734.6231747672,12972.8099282698,66965.0104525572,0.261643942607436,140.55393021967,13,16 +222.150151534996,1270.66705810874,0.005955342649957,3920.91155560161,131282.936928089,23976.744546751,7635.9059066086,48443.8881653465,0.001691858707374,35.3742279514325,3,15 +1367.30585602327,1999.8732648281,0.748253716345056,22178.4578866537,257502.197239894,38267.76112708,12187.1850723185,95019.2609741306,0.212572078507118,217.723862424088,14,21 +3610.60856542906,559.567222335965,0.448088786871131,3317.81664015584,239923.355262304,12228.8197679243,3894.52858851092,88532.6034178244,0.127297950815662,574.937669654309,18,9 +1907.12876929433,3672.84369518001,0.890381465025926,17228.3146922,72667.8913893874,24251.4633045082,7723.39595684975,26814.7200698847,0.252949279836911,303.682925046868,10,8 +198.620654037835,1388.55105606452,0.248921653318277,2611.96755767837,226385.847656247,5090.70073153551,1621.24227118965,83537.2131572867,0.070716378783602,31.6274926811839,3,15 +2755.62628854303,3608.04270215767,0.736429521626145,23388.6038483804,1137.61770911946,23815.4563939534,7584.5402528514,419.785132516406,0.209212932280155,438.793994990928,4,16 +2404.97819037191,2804.83113963401,0.365128080202935,9226.45370835009,69739.1503700008,29557.6368408947,9413.26014041232,25734.0038265686,0.10372956823947,382.958310568775,12,14 +1665.05618722177,3428.93143010263,0.07702371809197,10272.2597383557,64554.3209617822,31430.8440012815,10009.8229303444,23820.7826427241,0.02188173809431,265.136335544868,7,21 +684.403470844772,4008.92687723738,0.22242957519541,4246.16031974223,272242.128426888,19568.4244434912,6231.98230684433,100458.349973021,0.063190220225969,108.981444402034,7,2 +3155.74153767933,3390.52836487435,0.195019947703087,1931.23480940476,260863.26723591,34638.7915682246,11031.4622828741,96259.5082051328,0.055403394233832,502.506614280148,11,7 +934.115050555006,2990.42051368657,0.699422458038934,1961.18658074802,2031.74643571489,28310.3226555537,9016.02632342475,749.721931998114,0.198699561942879,148.744434801753,12,7 +1738.51096320351,3606.09649174462,0.54611048225822,20725.9952773369,80881.9445575707,23472.9745317849,7475.46959610984,29845.7359991036,0.155145023368812,276.832955924126,14,21 +997.710293775089,1815.58632251362,0.980572498693885,24046.8790525043,37848.7316885057,44838.2972360522,14279.712495558,13966.3216562752,0.27857173258349,158.871065887753,7,14 +1455.84937363282,2501.5451533326,0.88751960535486,12550.5680705829,163156.744839129,13021.0994637147,4146.84696296647,60205.4409000476,0.252136251521267,231.823148667647,3,17 +733.301612197504,3496.25929917498,0.568163313394769,1530.88172372108,234148.750214696,1676.96763756036,534.06612661158,86401.7528467513,0.161410032214423,116.767772642915,11,16 +1965.29595205539,3440.6599451594,0.092264632793209,12366.1575523647,127420.632333335,33892.1807067754,10793.6881231769,47018.6835178358,0.026211543407162,312.945215295444,1,18 +456.278618644892,788.989234994508,0.425736280875394,22265.2947682751,259319.754871762,29359.1245528218,9350.03966650376,95689.9464471447,0.120947807066873,72.6558309944096,12,16 +2415.38105863288,514.925172199357,0.786962524914497,18412.143389425,256316.657573687,5990.25573856146,1907.72475750365,94581.7924626151,0.223568899123437,384.614818253643,11,25 +2530.16192957837,2562.98921036621,0.233885879445332,2418.65794489595,152725.938144903,12014.3504393437,3826.22625456806,56356.4347398166,0.066444852115151,402.892027002925,16,17 +1010.04135789636,2393.0470395655,0.685170027745355,22941.7135772566,269749.394032097,40012.474460591,12742.8262613347,99538.5217830616,0.194650576064021,160.834611129994,14,2 +1259.0848988891,880.259522505147,0.006599047151268,20062.7379246374,107024.88162823,36650.6024012801,11672.1663698344,39492.5762465793,0.001874729304338,200.491225937755,2,0 +3475.41854812914,474.116655826466,0.636155624472031,8246.57334355831,56141.3443563393,2929.24145818744,932.879445282624,20716.3632311215,0.180726029679554,553.41059683585,9,13 +2519.69733371267,2165.45747932358,0.895186506532574,3793.52159541948,122288.292824518,10149.4332163579,3232.3035720885,45124.8313005601,0.254314348446754,401.225690081635,16,15 +1224.99929932362,2209.49867234181,0.311715470425661,6464.81740727697,90588.2792277475,17965.8930736148,5721.6219979665,33427.4093091319,0.088555531370927,195.063582694844,12,24 +3018.10637313403,3759.70737211478,0.082967021860899,10495.0607830766,216114.566210362,12245.0676443233,3899.70307144054,79747.0724023476,0.023570176665028,480.590186804782,10,18 +1850.18332488521,79.0837115301954,0.021461472540023,15489.3807125085,261452.854661598,10804.9544322071,3441.06829051181,96477.0681408111,0.006097009244325,294.615179121849,11,20 +1074.91077942383,1412.2049965782,0.576317070389221,17099.1602289666,198183.57959261,27086.4959813635,8626.27260552978,73130.4721743948,0.163726440451483,171.164136850928,0,13 +2213.79420682477,2747.2995481873,0.806840969861242,24717.1146279411,131836.880564832,24504.5940030575,7804.0108289992,48648.2954113771,0.229216184619671,352.515001086747,6,7 +1693.56323168483,2586.48482639684,0.804540102297265,9380.12400085416,199796.521170238,39572.7137508284,12602.7750798817,73725.6535683535,0.228562529061723,269.675673835164,17,4 +1420.8980705044,849.562073912202,0.2473053460754,6072.67344477983,57129.8433732558,16612.1226482854,5290.48491983611,21081.1230159615,0.070257200589602,226.257654538917,0,4 +162.431708362647,2391.20562038465,0.831813202564717,5211.41433000439,234002.355828082,20384.0800839959,6491.74524968022,86347.73277789,0.236310568910431,25.8649217137973,2,25 +3956.96930460222,859.139067427096,0.477641984764919,19747.6803031189,177307.936218155,13198.7407128391,4203.42060918443,65427.2827373266,0.135693745671852,630.09065359908,5,1 +2665.44661289357,777.603300092207,0.073827001060195,20539.8988671407,169329.465835546,4511.52678026769,1436.79196823812,62483.1977252937,0.020973579846646,424.434174027639,14,3 +2666.56174486972,3556.23520263119,0.348873381613387,11296.2453661698,84738.9096996839,41999.5490284139,13375.6525568197,31268.970368887,0.099111756140167,424.61174281365,4,23 +386.073696667704,122.146408076471,0.152199593378622,21296.8477759011,228923.091164291,6525.36359417265,2078.14127202951,84473.4653742771,0.0432385208462,61.4767032910357,6,2 +654.308124264123,1476.88977393879,0.721762895360171,2987.31320659474,259585.378543153,10799.8371597538,3439.43858590885,95787.9625620491,0.205046277090958,104.189191761803,11,10 +3098.62705524709,57.9208530813208,0.948357899016937,9262.9118673931,55790.8527718269,41064.3128365352,13077.8066358392,20587.0305431096,0.269419857675266,493.411951472467,13,14 +1907.13748311798,1933.96536129691,0.616837244399309,9534.39407383197,126645.794739954,17553.9197507587,5590.4203027894,46732.7655866989,0.175237853522531,303.684312598404,7,6 +3085.72314250191,2971.96432776673,0.666343117846825,4738.44928890751,282996.623237792,2333.67825407324,743.209635055172,104426.798242728,0.189302022115575,491.357188296482,3,18 +267.357727986916,2469.3557162088,0.94705932623392,198.408884968216,44932.0391747686,36275.659003942,11552.7576445675,16580.0882563722,0.269050944952818,42.5728866221204,18,10 +2064.53917081266,3706.18896076403,0.243492937357019,20719.8577196396,198179.962545198,27253.0037674977,8679.30056289736,73129.1374705528,0.069174129930971,328.748275607111,9,18 +3987.21915975812,1581.50931262617,0.648300886455724,7211.09177625355,56279.5187550954,7996.51898619314,2546.66209751374,20767.3500941311,0.184176388197649,634.907509515624,19,1 +2824.19353097567,1025.47103941796,0.327564115255888,23474.2319099004,168352.803719022,29968.3285540701,9544.05367964016,62122.8058003771,0.093057987288605,449.712345696763,6,14 +2957.25628341175,3767.43165210889,0.299779898480249,11869.5198205482,288326.876323267,41061.6647399545,13076.9632929791,106393.681300099,0.085164743886434,470.900682071935,13,1 +958.910802730879,1175.46779275625,0.709007944423144,9407.17054199519,17896.1325501435,2732.61994934769,870.261130365506,6603.73894839244,0.201422711483848,152.692802982624,0,4 +1341.90074889861,880.295836912833,0.895313729137175,18616.8920660626,7883.28983863935,34473.4638752056,10978.8101513394,2908.96304008832,0.254350491232152,213.678463200416,18,1 +2432.25022312868,531.160026645466,0.677742747682947,21785.2728447213,256461.829086128,1650.58284183479,525.663325425092,94635.3612863941,0.192540553319019,387.300990944057,3,5 +1916.01626724875,1553.94848207534,0.801926744226586,9691.65845231115,255669.56929592,12216.3940706885,3890.57136009188,94343.0145003395,0.227820097791644,305.098131727508,12,2 +1347.56293234465,3875.31913476423,0.001464247333764,21995.6682222614,43921.8860590406,3520.82574527408,1121.28208448219,16207.3380291663,0.000415979356183,214.580084768256,9,20 +2221.69077306122,69.7780667719475,0.666690572381031,16143.6856004662,152834.330701113,11380.5224659487,3624.37021208557,56396.4319930306,0.189400730790066,353.772416092551,14,24 +1437.51000690705,1933.03381758267,0.581825270155035,15208.4694043555,212961.829635137,39798.7414153068,12674.7584125181,78583.7009723753,0.165291269930408,228.902867341887,0,24 +1076.53163261479,3662.36386806253,0.74874096884305,13734.949492144,194032.014316955,31265.6972228354,9957.22841491573,71598.5292682491,0.21271050251223,171.422234492801,8,13 +904.307857409134,1980.24139217004,0.063523076145537,7518.88386739424,283489.783494871,17315.6631626752,5514.54240849529,104608.776197369,0.018046328450437,143.998066466423,5,1 +1894.00080236762,2461.49606446384,0.256041448374706,15756.3620873916,104913.317158141,26510.9925015836,8442.99124254255,38713.4011653657,0.072739047833723,301.592484453443,4,22 +1747.77762024683,886.50081529586,0.534105043800022,15482.8901412754,243049.016731182,24680.3483944094,7859.98356509854,89685.9840336465,0.151734387443188,278.308538255865,6,10 +1882.82640269416,1704.20952617954,0.186921096978329,8051.21354488492,162259.749672486,4358.0583440487,1387.9166700792,59874.4463736111,0.053102584368844,299.813121448115,14,9 +929.689079201735,1333.13573093714,0.112948766443413,5561.41313482521,207163.830685522,32761.893283506,10433.7239756389,76444.2179651373,0.032087717739606,148.03966229327,10,22 +3805.7230906955,628.059566346923,0.918919491550163,13083.6757661887,155071.83599588,24435.6048291455,7782.03975450494,57222.0797032768,0.261056673735842,606.006861575717,0,5 +3589.78946222565,1336.95539591212,0.861221133578622,5981.7618038303,248174.638790827,38280.8238965407,12191.3451899811,91577.35748739,0.244665094766654,571.62252583211,17,23 +866.550697586178,183.682767751197,0.218772655689295,694.23805744701,245952.967862156,1585.26284216511,504.860777759589,90757.5527166627,0.062151322639004,137.985779870411,0,5 +917.339698460787,2514.73338180111,0.318410454489489,1456.99165073129,243742.134954099,35183.1578728383,11204.8273480377,89941.7472155347,0.090457515479969,146.073200391845,6,21 +2220.25395677678,3047.11549212063,0.866976732326683,17056.3754990986,183140.541569418,10644.1560165204,3389.85860398739,67579.5356344716,0.246300208047353,353.54362369057,6,18 +3007.95104031361,2595.33383185279,0.323114142922085,12160.9079254289,234844.772187539,19661.665028052,6261.67676052611,86658.5875230771,0.091793790602865,478.973095591339,11,10 +2565.30192869604,1525.05443721864,0.121662047514336,11039.2495797888,197993.758277561,124.215676786371,39.5591327345131,73060.4274086941,0.034563081680209,408.487568263701,12,20 +2423.02786419258,988.166001284284,0.85009679581545,19403.1073846357,283664.202323296,24005.4760062564,7645.0560529479,104673.13738867,0.24150477153848,385.832462451048,19,14 +2569.33876116024,1606.4935989621,0.944378479996719,13667.8824699862,279685.372825982,32117.9251860295,10228.6385942769,103204.934622134,0.268289340908159,409.13037598093,16,9 +2082.80820140968,417.971533205494,0.188309344628309,7629.89127279073,78586.7532919016,25940.2388934738,8261.22257753943,28998.8019527312,0.05349697290577,331.657356912369,1,9 +385.218019716119,2031.41537296652,0.400769397454801,8388.01396587938,113968.294117427,23027.2706413518,7333.52568195917,42054.7210765413,0.11385494245875,61.340448999382,3,6 +1597.91071169752,3212.46670128246,0.449908505533706,14390.972693166,145400.873079557,14556.2326738191,4635.74288975131,53653.4587009435,0.127814916344803,254.444380843554,10,21 +2408.66217196044,1820.6181996268,0.18602408414874,8528.89576612323,10016.07547927,37825.7500148159,12046.4172021707,3695.96881153875,0.052847751178619,383.544931840834,9,1 +148.621609469392,873.63575912972,0.446644171549497,3704.28231369241,245807.807970147,11736.278234307,3737.66822748631,90703.9881808661,0.126887548735653,23.6658613804764,3,4 +703.015157894267,2637.34570234485,0.485360924040232,3997.39500108335,64544.7259027559,35554.1291110829,11322.971054485,23817.2420305372,0.137886626147793,111.945088836667,3,10 +2351.78246029289,1945.05825527319,0.474556128471253,6398.87209321873,120655.123826364,25021.6002711909,7968.66250674869,44522.1859137875,0.134817081952061,374.487652912881,10,6 +3077.25574436454,3201.80007533579,0.127189813338306,22467.5789266374,102639.321965962,10613.0288770449,3379.9455022436,37874.2885483255,0.036133469698382,490.008876491169,11,18 +825.410693529933,349.745960361001,0.316636320548037,1075.60241851053,151683.273625711,34598.9969789988,11018.7888468149,55971.6876847642,0.089953500155692,131.434823810499,3,19 +949.055486715716,3134.62185250611,0.747409209554405,17673.1267703379,248203.011053576,24602.4992882713,7835.19085613736,91587.8269570391,0.212332161805229,151.123485145815,12,17 +2258.52642092332,2325.96317039461,0.698602130505088,11361.3646920652,81536.9715719536,20415.0372756864,6501.60422792561,30087.4433844847,0.198466514348036,359.637965115178,10,5 +2911.3899337439,2622.78501889014,0.918528998044147,12656.4252705036,91273.7865906193,7720.61749094151,2458.79537928074,33680.3640555791,0.260945738080724,463.597123207627,4,11 +998.428166378027,208.893517110527,0.267351654147209,5478.49296012541,59313.2848873827,32769.1245552326,10436.026928418,21886.8209916541,0.075952174473639,158.985376811788,19,10 +460.834111938832,359.094668533155,0.452046307163786,3752.86798244086,196517.688191397,42442.0506780046,13516.5766490461,72515.7521001465,0.128422246353348,73.3812280157376,16,10 +2006.92492709171,1384.30603428344,0.057686983846692,2423.14019446736,286193.374087467,15557.9429871476,4954.75891310433,105606.411102386,0.016388347683719,319.574032976387,1,17 +2849.92843581194,2177.34257347087,0.581136065750672,21969.2604047192,215861.902437846,4832.3916730696,1538.97823983108,79653.8385379506,0.165095473224623,453.810260479608,11,12 +3374.17758911474,2035.94498172109,0.515414027215851,14685.3795202455,277902.012292898,31482.4743135878,10026.2657049643,102546.868004759,0.146424439549958,537.289425018271,11,22 +668.904943162203,3622.58920499224,0.130104941349171,20448.5259083237,27391.6788302422,13550.4413659413,4315.42718660551,10107.630564665,0.036961631065105,106.513525981243,6,19 +1893.33351676395,660.086148797914,0.315997949221309,19188.6936203879,256933.435120571,42154.8638214408,13425.1158667009,94809.3856533472,0.089772144665145,301.486228784068,4,6 +3129.78899633353,1151.85067947801,0.105736776957288,22853.1699047367,243682.465173885,27746.3990469796,8836.43281750943,89919.728846452,0.030038857090139,498.374044002154,3,5 +1266.14678113993,469.732297081013,0.32536130867857,11087.5630352347,92377.8912044052,27935.8296742153,8896.76104274373,34087.7827322528,0.092432189965503,201.615729480881,12,19 +1779.48879576359,996.125602246367,0.817596347519998,24541.9448965637,87799.7219824297,28636.9868841548,9120.05951724675,32398.4213957305,0.232271689636363,283.358088497387,3,24 +760.102467732555,1502.71500615357,0.976017769161063,21237.2241555304,134437.651418501,8527.49238059234,2715.76190464724,49607.9894533214,0.277277775329847,121.035424798178,11,20 +1504.30469173355,356.895495212609,0.57095489280847,9307.02130560405,19038.8958843434,3363.72876734181,1071.25119979039,7025.42283555107,0.162203094547861,239.538963651839,14,1 +1823.45912928582,2018.47833703593,0.471028470824005,11667.6398643913,18384.4915996542,30918.47637011,9846.64852551274,6783.9452397248,0.133814906484092,290.35973396271,13,7 +673.096598660705,482.842365177135,0.208126122785865,8088.04503526531,20209.5640153302,21154.7550946127,6737.18315115054,7457.4036956938,0.059126739427803,107.180987047883,15,25 +3480.83658637833,2602.25000743878,0.064669883462512,15118.7942870807,259762.63774477,17482.1831604706,5567.57425492694,95853.3718615388,0.018372125983668,554.273341779989,18,13 +1074.10351021573,1262.47945253603,0.912097841085815,5687.74737616815,97508.7464660278,40416.958491961,12871.6428318347,35981.0872568368,0.259118704853925,171.035590798683,5,7 +2211.17396239108,3750.79261420268,0.233446625754032,1239.72831885304,67909.1084623771,27964.776948454,8905.97991988981,25058.7116097332,0.066320064134668,352.097764711955,13,9 +1016.86737017855,1013.44119630939,0.329614888364061,21678.7285289005,283219.160477528,10266.2022822801,3269.49117270067,104508.915305361,0.093640593285245,161.921555760916,12,8 +2636.46085075021,1728.84696940056,0.145324969983035,7725.57681866792,50136.9961730481,3532.24291267435,1124.91812505553,18500.7365952207,0.04128550283609,419.818606807358,17,22 +2448.69296089446,938.520123767125,0.198742538093387,21059.4144751994,7621.58524251096,6509.407312739,2073.05965373853,2812.39307841733,0.056460948321985,389.919261288927,11,22 +3721.87422287003,240.251400755246,0.41156013478012,14828.5698374029,218815.47998786,26901.0476206895,8567.21261805398,80743.7195527159,0.116920492835261,592.65513103026,10,6 +2014.13733407931,2991.73095188577,0.967690471665913,6896.659109277,82109.6389010877,18760.346625076,5974.63268314522,30298.7597420988,0.27491206581418,320.722505426642,11,19 +1238.51953637036,1183.75296213239,0.013159321249121,5734.61241070309,226737.434638949,35136.50208804,11189.9688178471,83666.9500512727,0.003738443536682,197.216486683178,5,25 +2257.10836796563,2254.51253179628,0.94173798394675,9934.78222434767,288588.285916356,564.734092541168,179.851621828397,106490.142404559,0.267539199984872,359.412160504081,0,4 +368.236918818315,3449.01886326814,0.59057498026909,20187.7271744896,2628.85807180204,10137.3250549591,3228.4474697322,970.058329078243,0.167776983030991,58.636452041133,14,5 +1815.07820724916,1629.29428448138,0.286577086990497,10254.67906868,116726.926589444,13653.2580491113,4348.17135322016,43072.6666381712,0.081413945167755,289.025192237127,1,11 +548.985557268794,17.3200152265078,0.873337831980897,10400.6148334023,168545.86209108,33824.900193837,10772.2612082283,62194.045052059,0.248107338630937,87.4180823676423,3,13 +1373.93646551679,2262.89990465002,0.703516348472633,19262.1275875486,63348.8204122542,3565.1192405404,1135.38829316573,23375.9484916067,0.199862598997907,218.779691961272,14,13 +3058.5066777195,3416.38675056835,0.513102087297928,20348.3237309584,33257.1231694613,28950.7831572876,9219.99463607885,12272.0011695429,0.145767638436911,487.023356324761,19,8 +3021.63693388337,936.288207106387,0.784227695444613,6432.49673135953,71045.8695783293,10493.0227843198,3341.72700137573,26216.1880362839,0.222791958933129,481.152378006906,11,8 +1621.43452888133,830.171173034694,0.712517466866476,22498.8188030431,244341.274867163,10235.2889432634,3259.64616027497,90162.8320543037,0.202419734905249,258.190211605307,14,19 +1595.83598386258,3489.18397363888,0.546056039872455,8259.92813466518,35687.1547237527,16395.2970238735,5221.43217320812,13168.6917799825,0.155129556781947,254.114010169201,18,10 +1655.82174810233,3208.92328532442,0.275862290238454,14603.5108501741,228336.810920757,19752.0111888367,6290.4494231964,84257.1258010173,0.078369968817743,263.665883455785,19,19 +1420.33460329567,2534.11302430643,0.925784700550727,15998.8627077075,58728.1697623538,38049.3645221863,12117.6320134351,21670.9113514221,0.263007017201911,226.167930461094,11,11 +321.15766457885,3030.20225235887,0.981746336297295,7755.72282699876,167901.073933452,1298.78725437188,413.626514131172,61956.1158426022,0.278905209175368,51.1397555061863,19,19 +192.379285943711,798.874404204391,0.627231893848197,24890.4350755692,177864.978141974,25921.0803730198,8255.12113790439,65632.833262721,0.178190878934147,30.6336442585527,18,11 +1559.10400459379,1667.00214249741,0.129568352927007,18569.9541019407,194017.217200965,21898.6358295943,6974.08784381984,71593.0690778469,0.036809191172445,248.264968884361,10,24 +596.576526878674,2411.30969920922,0.318548429376337,16348.1340765246,230679.62630425,19083.7456436454,6077.62600116096,85121.6333226015,0.090496712891005,94.9962622418271,9,14 +3099.6332253958,801.463084239423,0.159418082365062,6463.62174626595,95202.4633467575,30618.3835079422,9751.07755030006,35130.0602755563,0.04528922794462,493.572169649013,3,15 +2859.91382357202,870.864206941369,0.734065226710031,24212.8709272473,237817.097783663,13726.9558623091,4371.64199436596,87755.386636038,0.208541257588077,455.40029037771,12,1 +1836.54460922998,3540.28789801779,0.153013081038453,2616.36365400606,146813.099246563,14058.2460940912,4477.14843760866,54174.5753677354,0.043469625295015,292.443409113054,19,4 +1746.13297228121,1594.20329371447,0.273468183192791,19276.9857040062,53829.1065331355,7589.0564907937,2416.89697159035,19863.1389421164,0.077689824770679,278.046651637135,17,18 +229.961181869774,2164.15786633712,0.465381069624874,14854.3319366722,285805.8345212,11514.215382531,3666.94757405446,105463.407572399,0.13221053114343,36.6180225907283,0,11 +3459.04531411173,2357.94865694409,0.958132146334082,10468.8015818258,135716.896147204,43697.1165219934,13916.2791471317,50080.0354786731,0.272196632481273,550.803393966836,9,20 +723.133229472637,3249.00125118065,0.981282069514683,21805.8896690209,226395.846828604,21070.4774086115,6710.34312376162,83540.9028887838,0.278773315203035,115.14860341921,9,19 +2438.58855093125,166.912982257682,0.303138319752182,3745.42743064921,214165.938688072,11040.0777574538,3515.9483303993,79028.0216561151,0.086118840838688,388.310278810709,16,23 +1117.77820974349,1163.63569774188,0.153195419711202,8410.13433147286,283792.866046725,19728.12865979,6282.84352222611,104720.614777389,0.043521426054319,177.99016078718,12,8 +3610.58868107577,3682.37831667506,0.862924930316084,17782.236128375,5831.72284949328,20074.2016844145,6393.0578612785,2151.92725073553,0.245149127930706,574.934503356014,5,7 +469.800322599804,1354.43239196795,0.604579816781669,5847.17966080639,286845.682092196,36286.2780266754,11556.1394989412,105847.115163172,0.17175562976752,74.8089685668478,8,18 +334.367986258453,503.749531635436,0.284314000808321,1261.12778489704,57747.7244120261,27747.507153528,8836.78571768408,21309.1233992716,0.080771022956909,53.2433099137664,6,14 +340.029754159315,3286.51561519052,0.123864375251915,12137.79810229,183682.950479547,18582.9241833192,5918.12872080229,67779.6865238181,0.035188742969294,54.1448653119928,0,11 +402.95541599695,705.231999510736,0.398223483991723,6829.64513365897,19699.1681468601,28690.5252264851,9137.10994474048,7269.06573684874,0.113131671588558,64.16487515875,15,16 +3708.4517599547,2540.39395892869,0.244705956325828,23818.9154564013,260924.960939113,26704.7691344527,8504.70354600405,96282.2734092668,0.069518737592565,590.517796171131,0,13 +889.545119882385,982.24370728399,0.863603335769903,24254.242475054,193645.47842628,27009.6166465748,8601.78874094739,71455.8960982583,0.245341856752813,141.647312083182,9,20 +3837.77812706996,996.154292500879,0.905812883167785,23664.9999976449,154825.01117449,13106.0576025514,4173.90369508006,57131.0004333912,0.257333205445393,611.111166730885,7,3 +3300.19890353064,1420.6632895813,0.055941471733362,7126.16170415576,60002.9658428546,18788.0101057521,5983.44270883825,22141.3158091714,0.015892463560614,525.509379543096,4,14 +3814.45765317243,1357.59490827552,0.472838135153182,23005.9179003655,277033.260350907,26421.0775234914,8414.35589920108,102226.295332438,0.134329015668518,607.397715473317,5,6 +920.54160202792,2138.95941625296,0.280748852690296,1606.65040119066,180390.180010389,40732.8660437219,12972.2503323955,66564.6420702543,0.079758196787016,146.583057647758,4,14 +1198.12174553582,2492.77522569679,0.021249063609256,16719.651432039,117264.872892105,789.497820362447,251.432426867021,43271.1708088948,0.006036665798084,190.78371744201,6,5 +2772.55323522476,2553.49950348686,0.385009673629878,11274.3254703685,34962.1498909909,4936.23113575203,1572.04813240511,12901.1623213989,0.109377748190306,441.489368666363,2,0 +2462.23262422416,2807.26500390372,0.65413961699589,7030.50820882376,138197.90671393,40871.2703352815,13016.3281322553,50995.5375328155,0.185835118464741,392.07525863442,6,22 +1629.59717171533,111.127981714072,0.608430221475445,7376.15193170972,187879.134634362,4617.48872533023,1470.53781061472,69328.0939610192,0.172849494737342,259.489995496072,9,11 +1949.62792490404,576.415074318495,0.994030029056052,2959.2366600436,201547.079946284,37219.3785260162,11853.3052630625,74371.616216341,0.282394894618197,310.450306513382,4,21 +1251.11219268638,587.891100660732,0.155507538714115,14895.5215432725,40840.9248935797,21063.0456980999,6707.97633697449,15070.4519902508,0.044178278043783,199.2216867335,19,0 +2245.79373075857,933.71855207457,0.329943005622967,839.448946687589,258143.736435198,35501.5054559776,11306.2119286553,95255.9913045011,0.093733808415616,357.610466681301,18,17 +3201.30291839147,1365.67545223972,0.875667029567732,3630.08497023902,13904.1085039492,7734.17943290368,2463.11446907761,5130.6673446307,0.248769042490833,509.761611208833,17,19 +165.718602979318,3231.49933135252,0.730246973649357,20347.8396971656,108014.143999924,9651.59534134726,3073.75647813607,39857.6177121491,0.207456526604931,26.3883125763245,9,6 +899.492017894841,1519.30662857507,0.527239162574889,20665.8645371635,24725.3854482994,41073.9545241811,13080.8772370004,9123.75846800716,0.14978385300423,143.23121304058,17,4 +1056.87997943901,746.995419464787,0.325060591084223,15366.8928295772,39951.5919773185,44347.7795203058,14123.4966625178,14742.2848624792,0.092346758830745,168.29299035653,1,5 +2070.77630463147,972.469340729782,0.455375021670428,9009.32157801949,165144.039298965,13116.472860051,4177.2206560672,60938.759888917,0.129367903883644,329.741449782081,16,3 +1268.54469217588,3028.68101854729,0.799111608626496,10975.4512398565,230085.989510078,27624.0483933049,8797.46764117991,84902.5791550103,0.2270203433598,201.997562448389,7,17 +1429.63876044043,3215.75481967805,0.213404383571971,19983.7133877175,119058.899190352,22149.5156854751,7053.98588709398,43933.1731329712,0.060626245332946,227.649484146565,7,3 +1405.47901167379,3529.5769882289,0.095667468189492,17217.2309736651,35622.9858769161,22116.4184649655,7043.44537100812,13145.0132387144,0.027178258008379,223.802390393916,2,23 +3471.35643049846,1722.67620974455,0.515896163746749,18052.7803500623,8305.73420395116,33206.3827159741,10575.281119737,3064.84656972368,0.146561410155326,552.763762818226,4,15 +3800.54338640429,2397.18431152053,0.10194579158367,1681.20803807479,161816.380215947,39263.3419231577,12504.2490201139,59710.8414080985,0.028961872608997,605.182067898772,14,14 +2800.022897059,2622.3716818209,0.418893867554995,23137.7405996357,100722.349452524,15725.9482802882,5008.26378353127,37166.9186171675,0.119003939646305,445.863518639968,2,1 +2523.81200312745,2856.79341301673,0.393976630158175,10849.8289617596,129614.417974837,17629.6975776643,5614.5533686829,47828.1985147,0.111925179022209,401.880892217747,8,19 +751.793555923101,1466.30279348268,0.013982083296096,20253.5501675461,184745.024530237,21227.5023436286,6760.35106484987,68171.5957676151,0.003972182754573,119.712349669284,3,2 +2000.75598637664,666.94204567719,0.936111202833875,20475.4698625964,3831.59257081921,37821.348216048,12045.0153554293,1413.87179735026,0.26594068262326,318.591717575898,7,11 +433.036361403972,813.945660234065,0.371316550849118,3990.37461149436,243483.125438909,24917.8985136655,7935.63646932022,89846.1717486749,0.105487656491227,68.9548346184669,16,10 +3751.89072330485,2384.28261830694,0.219266132066979,8371.52614949151,242462.220320939,17081.6970200356,5440.03089810051,89469.4539929664,0.062291514791755,597.434828551728,2,6 +3999.59312675414,1649.1680858177,0.846640478338844,10963.3331625648,245198.408645287,32393.2629851148,10316.3257914378,90479.1175812867,0.240522863164444,636.877886425819,18,1 +1642.59605633423,2143.18812388751,0.436778132381763,1594.62111510715,25094.5369726302,32889.2006276152,10474.267715801,9259.97674266797,0.124084696699365,261.559881581884,0,3 +1967.19348157068,2108.42644909654,0.133318694277014,23105.1838011255,192104.978217021,43729.5765602735,13926.6167389406,70887.4458365391,0.03787462905597,313.24736967686,13,11 +655.840239008105,3029.08203950932,0.085403434123966,2727.56383582476,200559.033383355,16749.2116762763,5334.14384594787,74007.0233886919,0.024262339239763,104.433159077724,10,23 +230.485051196577,1748.44676910949,0.055403545290877,23849.7215989463,31898.1210463463,18131.9085359991,5774.49316433092,11770.5243713455,0.015739643548545,36.7014412733403,1,9 +642.306476929313,37.4601189196687,0.940026207440985,16835.7317583131,64822.7228780189,3462.12304733518,1102.58695775006,23919.8239402284,0.267052899841189,102.278101421865,16,15 +1039.58404313751,3436.24720774371,0.42753442167788,16083.1057696696,58984.8239608755,4854.55478986175,1546.03655728081,21765.61769774,0.121458642522125,165.538860372215,3,15 +2191.73567522226,2807.88924282821,0.087972579107997,18942.9526122777,87380.8537278067,34203.8818913577,10892.956016356,32243.8574641353,0.024992209973863,349.0024960545,4,5 +3568.55918590065,2011.23635962288,0.025612390347466,3369.81178396073,84657.5256534765,2065.00472997789,657.644818464296,31238.9393555264,0.007276247257803,568.241908582906,16,12 +692.147004023361,448.491816528662,0.939947366596609,24302.5111360138,21631.2350064975,19942.052708451,6350.97220014363,7982.00553745295,0.267030501874037,110.214491086522,14,11 +2215.26271471398,611.424144501152,0.644935072489795,15794.4186013796,240738.689774018,12697.6805715774,4043.84731578898,88833.4648612613,0.183220191048237,352.748839922608,11,22 +3421.62198750369,887.666765551721,0.457523783515575,5531.52793514977,94943.9971230615,10790.0710361953,3436.32835547621,35034.6852852625,0.129978347589652,544.844265526065,16,1 +3628.82891449715,3263.98837054028,0.670103176050928,22361.4816365906,105251.724233131,13801.8712773837,4395.5004068101,38838.2746247716,0.190370220469014,577.83899912375,11,16 +1615.86323275063,1350.18065857023,0.020732190853451,22395.5294644872,14206.1075960767,28665.3623809419,9129.09629966303,5242.10612401354,0.005889826947003,257.303062539909,3,23 +984.98664958556,3170.20306533045,0.279724709846456,18977.0484522796,173274.485949408,40676.6219914908,12954.3382138506,63938.9247045786,0.079467247115471,156.84500789579,7,19 +465.092914736778,1972.19871607503,0.71675755696088,8953.75955404956,154506.199045887,3054.89818353973,972.897510681443,57013.3575815081,0.203624305954795,74.0593813275124,7,23 +888.723331577753,2485.23662692064,0.640169286561793,17187.7723226812,137890.392682926,40347.1260187873,12849.4031906966,50882.0637206369,0.181866274591418,141.516454072891,19,11 +2296.04997435218,2392.73823075229,0.008105872854283,12552.372882769,7545.79455202115,18816.0014346618,5992.35714479675,2784.42603395614,0.002302804788149,365.613053240793,15,16 +2817.26774800371,308.634827555654,0.876979361068992,9750.34235998912,37823.6771310788,7252.76140867572,2309.79662696679,13957.0764321324,0.249141863940055,448.60951401333,9,13 +3816.30143272918,2300.75927029596,0.333294758579887,18197.210850623,101988.722130819,38366.0821185321,12218.4974899784,37634.2148084203,0.094686010960195,607.691310944137,15,1 +2885.99267057515,3650.87849082335,0.266832396864161,19554.4075456244,157447.544779534,13364.1544192163,4256.10013350838,58098.7250108982,0.075804658200046,459.552973021521,13,22 +3372.81835357103,2126.99215498824,0.094172024361817,14857.9802324267,267937.058873279,6545.79764569722,2084.64893175071,98869.7634218742,0.02675341601188,537.072986237425,0,19 +2883.00600896791,2062.2873261243,0.167537321917361,21160.5856571929,79560.4188316513,12817.2013946122,4081.91127216949,29358.0881297606,0.047595830090159,459.077389963043,10,20 +2768.41950730884,3127.71744005472,0.544906636461596,24814.2502180477,45810.909371893,5094.61670946894,1622.48939792004,16904.3946021745,0.154803021722044,440.831131737076,16,1 +3264.85911993624,1408.06507928239,0.669017599551079,14742.9065447787,255607.680947268,17298.3475574236,5509.02788452981,94320.1774713166,0.190061818054284,519.882025467554,7,20 +3863.82790439738,824.022844850138,0.171408228073887,23987.7078163313,245929.413257376,11813.4907371243,3762.2581965364,90748.8609805816,0.048695519339173,615.259220445443,16,6 +3384.13078382471,944.515450579156,0.605714619263593,15811.4311349162,183921.352535411,38382.9399274713,12223.8662189399,67867.6577621443,0.172078016836248,538.874328634508,16,17 +3619.08533482532,2521.90333833632,0.533171034810299,22701.6153613138,98066.2093858736,16943.6765180082,5396.07532420643,36186.7931313187,0.151469043980199,576.287473698299,2,13 +1001.39038056514,2796.32181338815,0.573916020986544,17696.5321494406,47912.5805996193,14480.9080318629,4611.75415027481,17679.9190404499,0.163044324143905,159.457066968971,5,17 +3963.21768062924,2486.23797526516,0.462224377073247,17720.228718701,231349.93748481,30491.2949810525,9710.60349715048,85368.9806217011,0.131313743486718,631.085617934592,16,16 +3677.65480825696,3430.88680295627,0.995535676947736,23847.1751104717,40317.1954177832,13541.4814140711,4312.57369874876,14877.1938811008,0.282822635496516,585.613822970854,19,23 +3145.95508655033,796.448501116287,0.081116757120177,5592.01866076808,262559.994384942,30890.0682212701,9837.60134435353,96885.6067841115,0.023044533272778,500.948262189543,10,5 +2048.30741445897,1660.32519539476,0.512288306817788,3353.02487204019,138685.62791794,29115.7279156535,9272.52481390239,51175.5084568044,0.145536450800508,326.163601028498,3,14 +2512.73670415744,2068.59829189861,0.362189367607728,4610.74983711156,262409.942521516,34747.5287008853,11066.0919429571,96830.2370928103,0.102894706706741,400.11730957921,19,21 +3249.09277993514,301.144593953206,0.904825041908519,5177.16120530809,163023.285672282,37439.9935644615,11923.5648294463,60156.1939750118,0.257052568724011,517.371461773111,14,21 +1018.40408538566,2442.78824986312,0.308244352001219,4250.45418372592,20427.7016459653,29415.3529240665,9367.94679110398,7537.89728633406,0.087569418182165,162.166255634659,2,17 +2990.90323274017,2371.62101383656,0.292946150786853,4617.2222980194,31507.3398015143,31100.8306828275,9904.72314739729,11626.3246500053,0.08322333829172,476.258476550983,10,12 +3666.4660176546,2407.95257687685,0.753563237076924,12771.1604621251,107286.700677799,34923.0729727042,11121.9977620077,39589.1884419922,0.214080465078672,583.832168416338,3,9 +3818.8564602905,738.571627330659,0.959724427586943,14200.8283796183,49326.4607747979,12770.5100189297,4067.04140730245,18201.6460423609,0.272648985109927,608.09816246664,10,20 +3139.81487643891,4004.00168774224,0.56189593244047,10036.8695243883,103443.007933055,31382.2410534609,9994.34428454169,38170.8516358137,0.159629526261497,499.970521725941,12,17 +3225.48343415595,1888.46158994545,0.032238847492363,13059.0583150064,53447.6021818609,32135.438999239,10234.2162417959,19722.362428731,0.009158763492149,513.612011808272,17,1 +349.74450036895,1806.59359197707,0.132340536963154,12305.0574364202,11857.2455305488,44074.1225741204,14036.3447688282,4375.36735444605,0.037596743455442,55.6917994218073,19,25 +2397.66396454143,859.454112700997,0.578511652672859,12045.7820615982,195767.186093729,6505.48012282917,2071.80895631502,72238.8140567266,0.164349901327517,381.793624926979,18,13 +2650.13233271927,3572.59257687686,0.104251377131276,12736.2411070279,89177.4922452137,18175.923313659,5788.51060944554,32906.8237067209,0.029616868503204,421.995594382049,1,17 +1119.91078168278,2559.57985898443,0.94733059342101,7648.01993449113,268272.903519086,35069.0173810744,11168.4768729536,98993.6913354561,0.269128009494605,178.329742306175,19,20 +1175.25442249395,1131.36453158454,0.029388432369145,8723.8115502337,134135.926121303,32681.690966501,10408.1818364653,49496.6517052779,0.008348986468507,187.142423964005,12,8 +2703.1577420096,3601.76137714867,0.652450993435658,1400.17266872366,132664.588237968,32273.5371887371,10278.1965569226,48953.7225970362,0.185355395862403,430.439130893248,15,5 +1735.8825163583,1762.29176518165,0.202149722307186,3544.82698405774,166278.918446686,27338.6707170625,8706.58303091162,61357.534482172,0.057428898382723,276.41441343285,10,25 +3881.3730726172,2819.9524310281,0.726717005296924,833.08903147965,42515.199965158,41963.3898372305,13364.1368908377,15688.2656698,0.206453694686626,618.053037040955,15,2 +334.334564929956,3735.25265894656,0.100054190298841,4031.74089420544,106736.725162953,23754.7653001726,7565.21187903586,39386.2454475841,0.028424485880353,53.2379880461713,4,8 +1003.44055805787,3717.32052164962,0.831227451476222,10442.1707201692,197290.55062371,39821.0695227222,12681.8692747523,72800.9411895609,0.236144162351199,159.783528353164,15,12 +3958.71320564107,3417.28510669207,0.998108103725094,3345.32833162843,242094.668208365,32291.1256881321,10283.797989851,89333.8259071458,0.283553438558265,630.368344847304,8,6 +670.554552797388,2779.23111678263,0.731314526242436,355.338052712185,167545.715085617,18534.9257173827,5902.84258515373,61824.9871164638,0.207759808591601,106.776202674743,18,24 +2301.08691433363,787.444870495362,0.314594478485387,21458.3651357377,206715.862279613,31563.6474784636,10052.1170313578,76278.9159703369,0.089373431387894,366.415113747393,1,17 +3494.29318164825,389.149913259646,0.285417545061902,13642.0925841597,93455.2268745141,2419.45517782372,770.527126695452,34485.3235699314,0.081084529847131,556.416111727428,17,3 +1924.8891297309,311.826977661647,0.56147700946759,10116.8252615349,45506.525400019,4565.88680702038,1454.10407866891,16792.0757933649,0.159510514053293,306.511007918933,15,2 +2541.52646899965,3084.30105698379,0.298998572533191,4478.46616873114,143519.112908542,19672.3910150264,6265.09267994471,52959.0822540745,0.084942776287838,404.701667038161,7,12 +328.437102762553,232.707944198102,0.25854612595005,18906.2899949904,137273.417111932,10798.6765805541,3439.06897469876,50654.3974582775,0.073450603963082,52.2989017137823,2,19 +1104.20642632904,3300.94122663318,0.426640667290416,24317.7531681868,16486.5168432888,40799.029587096,12993.3215245529,6083.58555102908,0.121204735025686,175.82904877851,0,18 +3613.1163035778,876.49736584858,0.499059044332033,21950.0134871678,154237.739340209,24304.1062655446,7740.16123106516,56914.2949594867,0.141778137594328,575.336991015573,15,0 +1139.17526683831,1183.29330657671,0.14224301603408,14565.9078759718,285680.969779316,29144.8464020785,9281.79821722245,105417.332021888,0.040409947736955,181.397335483807,3,7 +1559.42058476326,2775.05143596455,0.900778101339293,1320.10270877885,42475.1854474523,25293.583514116,8055.28137392229,15673.5001651115,0.255902869698663,248.315379739373,2,22 +3553.99092286567,263.889333301349,0.813376719927991,21514.435171934,86956.1277239074,28576.253940781,9100.71781553535,32087.1320014418,0.231072931797725,565.922121475425,18,7 +1880.22402973914,3779.54749797818,0.228276442325931,19319.3187006435,108100.335380317,3746.8044748851,1193.24983276596,39889.4226495635,0.064851262024412,299.398730850181,14,15 +2673.03775655836,565.693296548067,0.739579396212034,10212.1840663345,32016.7235751817,10224.9063187601,3256.33959196182,11814.2891421335,0.210107783014782,425.642954865981,3,3 +2524.21252768079,1164.1110531172,0.570721900596374,4736.87433869971,199633.211877892,22020.9233667763,7013.03291935551,73665.3918368605,0.162136903578515,401.944670012865,7,3 +3840.86451742376,1374.19260879431,0.41073003076855,21345.4930792862,43529.508612824,14988.3374446121,4773.35587408029,16062.5493036251,0.116684667831974,611.602630163019,0,16 +54.1029084916111,1692.75217597601,0.50912722653353,23016.0241737587,265240.339726211,16678.6557750463,5311.67381370901,97874.6641056129,0.144638416628844,8.61511281713553,6,3 +206.511137660289,3766.73818658617,0.803684684887351,8167.36509739791,137336.545663119,41631.6339595908,13258.4821527359,50677.6921266122,0.228319512752088,32.8839391178804,10,19 +2616.31762426286,2655.22180524099,0.699934414977082,13396.7704671752,282767.481119239,18814.3073628956,5991.81763149541,104342.243955439,0.198845004254853,416.611086666061,5,16 +1400.29315368177,3853.66407415639,0.432818215734827,23926.2320752304,253242.28874692,12867.5912331711,4097.95899145577,93447.3390210037,0.122959720379212,222.976616828307,8,6 +2004.40980443155,37.3567608050615,0.986445835783526,2455.11573808485,154161.935447435,7902.97176554703,2516.86998902772,56886.323043334,0.280240294256684,319.173535737508,16,21 +3433.53366030434,2506.01844306835,0.3643833637698,24453.806638671,198218.369179611,44456.3575500026,14158.0756528671,73143.3096603731,0.103518001070966,546.741028710882,19,13 +1638.92494199429,3013.96928987335,0.853210323577814,19154.5863094697,22945.5202663726,6868.79280476613,2187.51363209112,8466.98164810797,0.24238929647097,260.97530923476,2,21 +1384.96192993961,1780.9630902436,0.35907475995246,16898.7310290924,30233.6846027244,1527.2320492476,486.379633518344,11156.3411818171,0.102009874986494,220.535339162358,17,14 +1687.11385048592,3072.1478078332,0.592822307026707,16097.2339282564,24600.223962345,7762.67569637446,2472.18971222117,9077.57341783948,0.168415428132587,268.648702306675,8,15 +2716.92986238757,2399.03112261414,0.167721738713766,12556.8684658553,36011.5338824079,22054.504035337,7023.72739978885,13288.3888864974,0.047648221225502,432.632143692288,0,3 +2865.07248377423,3327.43031607561,0.797030008050403,24481.0792305856,86232.5554530062,35842.628403782,11414.8498101217,31820.1311634709,0.226428979559774,456.221733085069,2,19 +1243.44078092495,2021.79613717341,0.601733945166039,11585.597090727,284582.664337169,21523.7174262356,6854.68707841898,105012.053260948,0.170947143513079,198.000124351107,14,22 +2946.06099546795,3266.04684955708,0.911782058429227,18490.5703411183,87292.0159631572,17368.7102651559,5531.43639017704,32211.076001165,0.259028993871939,469.117992908909,6,7 +3985.22537402552,422.338436002263,0.270647834080444,9472.8537543068,75805.0603137231,4500.73165059069,1433.35402885054,27972.3469792336,0.076888589227399,634.59002771107,5,9 +663.352056775914,2916.14325276728,0.36467814880231,12504.7563714745,145412.758274863,2747.78048236447,875.08932559378,53657.8443818683,0.103601746818838,105.629308403808,6,25 +805.378717372012,1294.49704285591,0.464580001996009,10685.8253827384,174937.554947264,22130.6366565485,7047.97345749952,64552.6033015734,0.131982955112503,128.245018689811,2,2 +961.15849260118,2730.53693161777,0.989180869374505,16137.533834562,8185.3550736596,27476.3949130255,8750.44423981704,3020.42622644266,0.281017292435939,153.050715382354,17,13 +3851.49600547713,1466.55688328291,0.776976054310625,1304.00310477369,145661.106605896,6627.93019968736,2110.80579607878,53749.485832434,0.220731833610973,613.295542273428,3,25 +1514.09789662981,1272.05725411579,0.323112730288891,23650.4290973981,61664.471518372,21462.1088330614,6835.06650734439,22754.4175344546,0.091793389286617,241.098391183091,0,23 +1560.00046247585,1909.82612484589,0.034645219035282,13347.6115288087,11346.6119143918,1135.21796470629,361.534383664424,4186.94166582723,0.009842391771387,248.407716954753,16,25 +2491.22761200527,3901.11182959769,0.048659649930008,10854.2825247716,38750.9404215244,5505.95576144138,1753.48909600044,14299.2400079426,0.013823764184661,396.692294905298,13,23 +2477.79240883965,3905.76840956694,0.817252839300584,20485.647272168,138813.788619932,6168.32383916439,1964.43434368293,51222.8002287572,0.23217410207403,394.552931343893,18,11 +2157.09923603024,1095.22619520411,0.614085751558406,19243.2006169015,77910.8328208807,8052.55281933091,2564.50726730284,28749.384804753,0.174456179420002,343.487139495261,17,10 +2114.19830254077,2961.29610179357,0.182425067006218,3392.0536249189,224209.079554246,26120.7484820766,8318.70970766771,82733.9776952937,0.051825303126767,336.655780659358,7,25 +2231.39247255505,563.967653954135,0.744216897104602,7528.4381088609,162742.797019497,15498.4468334258,4935.81109344771,60052.6926271207,0.211425254859262,355.317272699849,4,16 +489.893297695688,92.1710710021002,0.792670439382385,4548.25037456884,137692.93101839,41677.6991641599,13273.1526000509,50809.1996377823,0.225190465733632,78.0084868942178,18,22 +2872.98790209857,1731.17351525304,0.325471573081425,24138.7722703119,275555.932763893,42376.7116430964,13495.7680392027,101681.156001437,0.09246351507995,457.482150015696,6,4 +1241.46940277781,3886.88929117859,0.278246975076219,12587.7676455828,64272.5518076641,25723.5990767968,8192.2290053493,23716.8087851159,0.079047436101199,197.686210633409,6,10 +1587.92212414509,893.315488106388,0.936245515763785,24081.8277936816,145273.314494413,34309.3941439485,10926.5586445696,53606.3891123295,0.265978839705621,252.853841424377,15,3 +1660.87627035657,2022.12448908306,0.946332620166065,605.256479199167,184973.986953995,38819.4553903957,12362.8838822916,68256.0837468616,0.268844494365359,264.470743687352,9,7 +727.435798197472,3146.31799659019,0.631510433645644,18169.9342732556,128020.717354068,41730.2551082878,13289.8901618751,47240.1171048221,0.179406373194785,115.833725827623,14,3 +1914.13019992004,2381.14209570214,0.91398443042779,19210.2141855451,193885.471171785,38852.9318676316,12373.5451807744,71544.4543069317,0.259654667735168,304.797802535038,16,22 +1796.02299913495,2351.00427636527,0.569655528839448,20732.4272289261,227986.276891753,9530.79262093659,3035.28427418363,84127.7774508314,0.161833957056661,285.990923429132,15,2 +3833.80962688071,1309.21032909536,0.592468372982688,12754.491543757,169141.078807753,40261.871948657,12822.2522129481,62413.682216883,0.168314878688264,610.479239949158,6,17 +1862.46817846686,2707.17236190628,0.735742669722682,15069.3621365093,271289.902151751,26064.4898019976,8300.79293057248,100106.974963746,0.209017803898489,296.571365997908,4,24 +1314.29329252346,3370.84840559186,0.671130744792841,345.097215454233,270587.996936295,17726.1868728392,5645.28244357936,99847.9693491863,0.190662143407057,209.282371420933,1,13 +996.148365164317,2072.7294107959,0.062548321667809,15670.2699228402,280145.518313573,43536.3320732164,13865.0739086676,103374.730005008,0.017769409564719,158.622351140815,18,18 +1731.35295147672,400.647975733085,0.070129627206175,16034.8967491069,263884.117089631,29351.7197428729,9347.68144677481,97374.2129482033,0.019923189547209,275.693145139605,11,21 +299.598011703068,662.089188264948,0.000572006204916,13026.1368390265,38128.5652909197,33270.3358993234,10595.6483755807,14069.5812881623,0.00016250176276,47.706689761635,0,22 +815.141003362475,3846.46504782875,0.203427646678685,4871.46967568248,98711.6417550407,7004.76702562976,2230.81752408591,36424.9600572106,0.057791945079172,129.79952282842,7,16 +3026.67911420108,453.926310156584,0.488970705438742,9143.43358640153,112049.89695603,20700.6629496665,6592.56781836513,41346.8254450295,0.138912132226915,481.955272961955,18,1 +1326.46364318368,840.2040820398,0.834741579447575,17587.237779359,72812.2390398754,44391.7492368362,14137.4997569542,26867.9848855629,0.237142494161243,211.22032534772,18,7 +810.186221237363,1746.45361009505,0.244782279865472,23129.8250906346,228905.518067024,34164.4732625512,10880.4054976278,84466.9808365402,0.069540420416327,129.01054478302,16,9 +977.357421133114,172.554112352378,0.266489798845685,6613.36075986468,257598.369327234,24906.1418179181,7931.89229870003,95054.7488292376,0.075707329217524,155.630162600814,9,8 +3019.50237775467,2558.45370503846,0.516047539137407,19901.63551505,175628.09675733,7570.34691447478,2410.93850779452,64807.4157776126,0.146604414527672,480.812480534183,10,9 +2328.80818154256,2904.97414466431,0.964941542138824,22043.9935315589,49160.6096951783,18794.9638181915,5985.65726693997,18140.4463819846,0.274131119925802,370.829328271108,0,10 +630.89501059766,3296.3865258413,0.12311602733704,4640.74750495286,128473.343685061,24410.9881622805,7774.20005168169,47407.1378911664,0.034976144129841,100.460988948672,12,20 +2015.891188327,2349.4443848747,0.59786886888135,8363.03113464343,193895.800524174,43560.6345778368,13872.8135598206,71548.265876079,0.169849110477656,321.001781580732,17,0 +464.899720844444,1553.81142540984,0.847000051954731,9048.5083870313,70432.244781547,26202.4548874207,8344.73085586646,25989.7582219731,0.240625014759867,74.0286179688605,0,24 +642.907301113789,3216.30565741092,0.516686281525384,133.6800172132,35667.1048227968,7840.13533364751,2496.85838651195,13161.2932925449,0.146785875433348,102.373774062705,5,23 +3624.3493624239,1089.96524459525,0.926166305495732,1254.85683952951,134126.088074036,24010.7272304551,7646.72841734239,49493.0214295336,0.263115427697651,577.125694653487,2,12 +102.565917763106,1201.77117312031,0.070707167808601,24960.1179955424,114344.46805098,31306.0497601674,9970.07954145458,42193.5306461181,0.020087263581989,16.3321525100487,19,14 +32.4190410540022,2027.36341270206,0.397357214366878,13063.4313328189,263406.612072122,30525.159701745,9721.38844004618,97198.0118347314,0.112885572263318,5.16226768375831,16,9 +1685.7370620213,3064.03507493755,0.412430508647543,5539.85040607138,206721.854890372,42827.7620404162,13639.4146625529,76281.1272658199,0.117167758138507,268.429468474729,0,1 +486.574942626553,3302.9349104471,0.985417997518492,3251.72015217666,234898.004079549,30369.7743367824,9671.90265502624,86678.2302876564,0.279948294749572,77.4800864055021,0,25 +2857.99115467457,803.447073412226,0.771527967037829,7233.08884867063,149609.923338384,21731.6590854529,6920.91053676844,55206.6137780015,0.219184081544838,455.094132909963,9,8 +3372.83435400078,1401.00559678224,0.74547935288651,18715.1784877025,238918.024872872,36852.8171600593,11736.5659745412,88161.6327944177,0.211783907070031,537.075534076557,10,23 +3913.47617203932,2732.21412198479,0.326769683439103,17212.2192427335,222913.252783049,17054.002026951,5431.2108366086,82255.8128350734,0.092832296431563,623.164995547662,2,25 +2782.60022723008,3563.30444985063,0.908015422482753,3238.39139883819,30881.7231544531,35991.6008621071,11462.293268187,11395.4697986912,0.257958926841691,443.089208157656,10,11 +233.497189468788,1913.60748996436,0.630853170914117,21125.5732866936,194671.259292595,44422.1844812239,14147.1925099439,71834.4130230978,0.179219650827874,37.1810811256032,7,7 +3083.74965041868,2131.95450123177,0.301833382620068,19793.9471018335,171701.31073178,21806.1904405647,6944.64663712252,63358.4172441993,0.085748120062519,491.042937964758,11,19 +3984.73779010994,357.262469854728,0.677408840952029,1971.696732642,128283.511188419,7882.67359746039,2510.40560428675,47337.0889994166,0.192445693452281,634.512386960182,6,18 +2694.40605628047,1717.66549137215,0.841851829199218,16369.8361279595,132593.360566602,3987.69439212865,1269.96636691995,48927.4393234694,0.239162451477051,429.045550363132,1,21 +1694.35787144742,2578.87820049304,0.755463792410657,16205.5730134862,123472.680051144,28297.8486955523,9012.05372469818,45561.8745576177,0.214620395571209,269.802208829207,18,16 +3307.16542671894,1575.31155673311,0.153845532518704,12533.6141282645,41831.5452397104,1952.01675728137,621.661387669226,15435.9945533987,0.043706117192814,526.618698522124,16,22 +2369.67449044312,3734.99554018071,0.655188952967228,4814.60577703786,50421.1118428068,12242.606882412,3898.91938930318,18605.576325759,0.186133225274781,377.33670229986,18,16 +1666.48164514808,1448.62768596913,0.216313617751722,8228.91602973883,141557.562766328,12079.914540492,3847.10654155796,52235.2630134052,0.06145273231583,265.363319291096,18,1 +1547.69394058679,1877.45781289363,0.032648583817849,14746.5227984249,128276.773982295,33975.7843375545,10820.3134832976,47334.6029454963,0.009275165857343,246.448079711272,3,13 +129.510022481526,3011.57189458219,0.145327307647635,21101.2998744236,3374.06437593847,1708.43620803664,544.087964342879,1245.04220514335,0.041286166945351,20.622615044829,10,16 +843.242938857633,2266.00823401047,0.454644064775735,23037.7851546788,176489.96468927,40228.5067554531,12811.6263552398,65125.4482248229,0.129160245674925,134.274353321279,16,15 +2293.36387545812,602.853578318103,0.831877962612664,15071.3913388,139802.08438786,32162.1162198566,10242.7121719289,51587.4850139705,0.236328966651325,365.185330486962,15,8 +205.736719198512,852.939232442666,0.37855197443635,7315.49868889537,13826.5093705962,25260.9499422087,8044.88851662697,5102.03297807978,0.107543174555781,32.7606240761962,8,17 +733.930000469324,3119.29655392806,0.329793657028774,9343.83044916788,152414.479234404,20910.7235240775,6659.46609047054,56241.5052525476,0.09369137983772,116.867834469638,14,13 +2167.30946543792,2085.47584203199,0.649461728766029,613.929409886406,240291.380121797,24883.0469086449,7924.53723205252,88668.4059490026,0.184506172944895,345.11297220349,3,20 +1068.5084504543,778.754972623309,0.809943345564648,14608.1885524064,146197.932631037,27775.7540689336,8845.7815506158,53947.5766166188,0.230097541353593,170.144657715653,5,17 +1400.03810674879,1660.9238471459,0.161416205949401,16351.9817630249,241209.943837238,36921.0787263662,11758.3053268682,89007.3593495343,0.045856876690171,222.936004259361,12,22 +2031.61955108592,1529.21693539726,0.106801131389966,5200.61734003899,103591.58462859,1302.4375689434,414.78903469535,38225.6769847196,0.030341230508513,323.506297943618,4,11 +1156.84298554089,3988.92640095053,0.792755769722519,3120.13460991433,170019.468151193,6756.03277287143,2151.6027939081,62737.8111259015,0.225214707307534,184.210666487403,14,9 +3040.74808231753,201.886262677987,0.124331602217169,15597.9081094345,136428.884872834,6518.71738744608,2076.02464568346,50342.7619456952,0.035321477902605,484.195554509161,6,1 +203.659438919251,3217.4167388196,0.050397121563842,19737.0749674052,123772.930280661,3893.42764264777,1239.94510912349,45672.6680002439,0.014317364080637,32.4298469616642,14,23 +2283.3683742293,2498.67005016644,0.1065952017134,4109.07301394251,115599.73537239,21514.6076520574,6851.7858764514,42656.7289197011,0.030282727759489,363.593690163901,9,4 +3301.5547049319,2051.93956910093,0.349631225742811,22986.1685971509,115831.928528515,5191.41376901457,1653.31648694732,42742.4090511126,0.099327052767844,525.725271485971,13,18 +2928.82834811727,2909.54413444687,0.255246063686576,14270.0045845005,100851.222927878,43286.3830345999,13785.4723040127,37214.473405121,0.072513086274596,466.373940783005,1,21 +3025.73863174434,2465.1670906065,0.383602613187637,21264.8272245528,155731.123000203,38514.9207449399,12265.898326414,57465.3590406653,0.108978015110124,481.805514608971,11,0 +3693.4382851792,175.557409587753,0.693992895077979,11387.9193275529,69617.0045525648,28985.8874673943,9231.17435267334,25688.9315692121,0.197157072465335,588.127115474395,11,23 +430.876492075271,646.854427464628,0.952556748653046,11440.1777029564,25747.3030380106,40330.0554236225,12843.9666954212,9500.84982952421,0.270612712685524,68.6109063814126,9,4 +565.871080749797,3779.73448345119,0.673023273936852,16297.6136172988,63685.4285115356,23066.2550841008,7345.94110958624,23500.1581223379,0.19119979373206,90.1068599920059,10,3 +2346.22200549093,3217.15012888489,0.084626376149765,17489.0709900454,209839.723571913,40799.4988196429,12993.4709616697,77431.632314359,0.024041584133456,373.602230173715,4,23 +2089.64894316079,1334.0349623297,0.940756876400415,18775.9540394534,22115.8630324661,3179.71732338718,1012.6488291042,8160.83506733066,0.267260476250118,332.746647000126,15,0 +1512.61057846138,3356.25686237819,0.821535413572888,23164.4004685603,238476.509037675,44271.3659681131,14099.1611363418,87998.7118220203,0.233390742492298,240.861557079838,12,5 +2168.04879838681,445.847412027478,0.094099490363139,12447.379221831,160022.291520995,20419.283197254,6502.9564322465,59048.8160594077,0.026732809762255,345.230700380065,10,9 +409.256420248306,2549.73942156006,0.277990991209231,13985.5012743554,87582.1734723674,28394.0871325668,9042.70290846076,32318.1451927555,0.078974713411713,65.1682197847621,18,25 +3666.44415858403,1565.87870137312,0.928169093803116,14302.6963062592,202255.285702739,23237.7495830437,7400.55719205213,74632.9467537782,0.263684401648612,583.828687672616,17,25 +2916.72279202763,3665.07440774266,0.628553142574529,6390.19040636257,38217.689343529,12370.3279934603,3939.59490237589,14102.4683924461,0.178566233685946,464.446304462998,7,13 +2871.35275206137,2009.56631469993,0.123849529954317,9176.66932578368,60610.2129534626,2586.70284187105,823.790713971672,22365.39223375,0.035184525555204,457.221775805951,18,3 +906.55268369022,2203.37124055649,0.933191861704691,19538.786378873,153227.823185433,731.383559348203,232.924700429364,56541.6321717465,0.265111324347924,144.355522880608,16,6 +2082.93498628935,1360.26959849593,0.72585806477576,4026.31023966829,40240.6267618786,34674.8976697529,11042.9610413226,14848.9397645308,0.206209677493114,331.677545587476,4,8 +2219.23316107726,795.490954976892,0.414837764046109,16405.485260549,278423.491195054,12853.3331998609,4093.41821651621,102739.295643931,0.117851637513099,353.381076604659,18,1 +2978.9613747264,3316.68209361026,0.002338912520045,9250.84033719371,234875.520113091,24939.7109781361,7942.58311405608,86669.9336210668,0.000664463784104,474.356906803567,4,24 +165.808278901108,1369.48715054799,0.324490622217291,19993.6035895172,209375.608376823,34994.3401819873,11144.6943254737,77260.3720947686,0.092184835857185,26.4025921817051,14,13 +511.98357887587,3328.18133558926,0.98084135525767,2169.00978812165,200632.845278223,25346.102310121,8072.00710513408,74034.2602502668,0.278648112289111,81.526047591699,4,1 +2780.16375382918,3331.11857044772,0.359978212739655,7107.727049235,153234.869790061,40644.4957826557,12944.1069371515,56544.2323948565,0.102266537710129,442.701234686175,1,15 +2272.52920478983,2294.45467779987,0.693595055784811,507.464064343807,268882.023636169,20950.1440797002,6672.02040754783,99218.4589063354,0.197044049938867,361.867707769081,2,24 +1239.01766527443,3575.72597646013,0.733692084036306,3053.94164784839,154842.009547198,25257.6771713466,8043.84623291293,57137.272895645,0.208435251146678,197.295806572361,18,0 +1881.20968556142,3861.02151700245,0.969352000486546,12345.8982863536,54057.1359266161,14027.8330209988,4467.46274554102,19947.2826297476,0.275384091047314,299.555682414239,2,20 +2638.61096955939,1436.01794291306,0.647083973906371,12358.6758892667,223096.070516114,36429.1071949735,11601.6264952145,82323.2732531786,0.183830674405219,420.160982413916,11,16 +1136.5951730146,1596.54222227394,0.871491216249513,11124.9541956881,123405.198581274,34547.4144107367,11002.3612773047,45536.9736462266,0.247582731889066,180.986492518248,2,10 +1171.01018891434,1464.38202478068,0.765207511422903,6590.1185446449,212950.631907897,15877.6529438105,5056.57737064029,78579.5689697037,0.217388497563325,186.466590591455,15,2 +1643.58900592924,852.813342088128,0.448137277998884,22647.9066648188,78545.1562369536,29093.1830622809,9265.34492429328,28983.4524859607,0.127311726704228,261.71799457472,0,18 +1778.63086296668,2846.19731966286,0.352498082073995,2561.9555149201,41073.4723404092,4790.28077974358,1525.56712730687,15156.2628562396,0.100141500589203,283.221474994694,19,10 +3049.93641265253,1396.05929006207,0.456597622814595,15727.7631615366,93626.5512562265,4641.07227041646,1478.0484937632,34548.5428989766,0.129715233754146,485.658664435116,7,16 +3650.54485722737,3675.33190049896,0.901991137418905,19020.1044595282,133933.06839595,33958.1327825111,10814.6919689526,49421.7964560701,0.25624748222128,581.296951787798,14,15 +110.020084225954,2763.0827122072,0.450521145540653,13718.904595516,282058.65398276,19151.4272359946,6099.18064840592,104080.68412648,0.127988961801322,17.5191216920309,0,17 +2936.13708063733,467.750864321556,0.717822480377112,427.711769330287,50544.9023291936,43054.6318425581,13711.6661918975,18651.2554720272,0.203926841016225,467.537751693842,2,19 +636.467878459969,1197.24263143166,0.615978417212586,15049.5693250036,45040.6200149322,10374.6873671976,3304.04056280178,16620.1549870599,0.174993868526303,101.348388289804,2,24 +1050.33299801682,3255.21805702482,0.327262726683938,24277.974079496,132531.388951721,12478.5294386782,3974.05396136248,48904.5715689007,0.09297236553521,167.250477391213,10,16 +3179.0111663288,2375.73965784652,0.640226270705234,1687.00839750963,184940.42731951,14391.8007690492,4583.37604109847,68243.7001179004,0.181882463268532,506.211969160637,4,10 +2392.6540038244,397.282872426054,0.799763436997442,3912.5864437974,90751.4498288225,42949.1145962061,13678.061973314,33487.6198630341,0.227205521874273,380.995860481592,18,14 +3657.09641220276,250.185179973116,0.930824096831278,9809.07313149679,93273.8879122688,36423.3880024845,11599.8050963326,34418.4088237154,0.264438663872522,582.340193025917,17,16 +730.266013475806,3669.56915784058,0.113498108724926,17109.4380136218,258595.043373806,17344.7474856483,5523.80493173513,95422.5252301867,0.032243780887763,116.284397050288,19,18 +961.728462859202,877.139365236079,0.874492061144825,23195.1889292358,68563.6287139459,38382.8824391238,12223.847910549,25300.231997766,0.248435244643416,153.14147497758,5,9 +1897.05162208693,804.697442437993,0.073945376188607,11705.0740593542,111099.832658965,21307.6056743165,6785.86167971863,40996.2482136402,0.021007209144491,302.078283771804,19,12 +1866.97236433445,1038.11099436534,0.403586159854313,6731.34634155089,95583.7441436217,9304.0067342319,2963.0594695006,35270.7542965394,0.114655159049521,297.288593046887,12,8 +1721.77750601411,1272.42173178456,0.74234709164397,23061.0188133926,53712.0196400453,38035.0011626474,12113.0576951106,19819.9334465112,0.210894060126128,274.168392677406,5,25 +3662.42072466747,105.667006690292,0.29768174997769,5926.53219955817,198835.128175912,2958.06876295529,942.060115590857,73370.8960058716,0.084568678970935,583.188013482081,6,10 +1460.9625495604,893.777090780836,0.659179235018545,23414.3589652054,218154.43459899,13340.9641147088,4248.71468621299,80499.791364941,0.187266828130268,232.637348656115,2,14 +1008.7705739828,4006.03024912671,0.274070607977817,22324.9788229834,79607.4005315946,34441.7352354797,10968.7054890063,29375.4245504039,0.077860968175516,160.632257003631,8,21 +2616.8804852327,3543.86684977126,0.580928402862396,13967.162832605,59382.0539219136,20378.4049869409,6489.93789393022,21912.1970191563,0.165036478085908,416.700714209029,14,25 +1084.90426700471,2392.12115571828,0.952560269298987,13446.9715752559,124317.049594387,1580.37586215628,503.304414699452,45873.4500348292,0.27061371286903,172.755456529412,3,7 +936.794901224713,3930.90377569077,0.054823995262148,10836.5385347149,159053.542317642,7774.1161366763,2475.83316454659,58691.3440286502,0.015574998654019,149.1711626154,13,1 +3752.31639984667,2067.91318310005,0.462754470894681,8735.9794284485,285732.265830581,15388.3837004355,4900.75914026608,105436.260454089,0.131464338322353,597.502611440553,19,8 +305.202335446172,1971.62981883201,0.815258919672807,1329.53454555438,4748.62620489481,31071.2101446492,9895.28985498382,1752.26059221211,0.23160764763432,48.5990980009828,14,14 +3286.47705929423,333.772842813326,0.685262878745704,24066.7347221738,178174.281409944,14058.1783727284,4477.12687029567,65746.9673099424,0.19467695418912,523.324372499081,15,13 +1043.48536624748,3076.39149084991,0.981446037008054,20524.6931535545,234959.580896598,32399.6132755394,10318.3481769234,86700.9523603683,0.278819896877288,166.160090166796,0,13 +1756.97838758001,3397.06471745962,0.570852532909283,8292.95861759372,205043.078725885,18573.6010024621,5915.15955492423,75661.6526663782,0.162174015031046,279.773628595543,2,5 +1781.56129341431,3575.78634309816,0.585805562556088,21530.1715975804,193149.398301524,30788.722400596,9805.32560528535,71272.8407016694,0.16642203481707,283.688104046865,18,23 +3599.01632903384,1597.27515904575,0.912655374770782,21628.4089031945,256169.602100957,15493.0039903819,4934.07770394328,94527.5284505376,0.259277095105336,573.091772139146,4,10 +163.759558632264,3721.42260228201,0.777813246716872,17734.0841056588,208471.147717458,13291.3406125608,4232.91102310854,76926.6227739697,0.220969672362748,26.0763628395325,8,16 +2908.88010294819,11.9342334274088,0.071533790681057,23382.8392248713,234429.11061782,30067.5603471215,9575.65616150366,86505.2068700443,0.0203220996253,463.197468622323,2,25 +1015.2518810692,1471.09972377659,0.37280826865639,22947.32514717,235995.565456775,12840.7245330399,4089.40271752863,87083.2344858948,0.105911439959202,161.664312272166,17,5 +1808.76545111069,2855.4783329522,0.211315874060472,18466.8652266155,243221.321093241,1095.6842167833,348.944018083853,89749.5649790557,0.06003291876718,288.019976291511,9,15 +2102.8343591975,427.668567640696,0.884763519850115,9946.36025558298,259600.91683637,3040.84869121024,968.423150066955,95793.696249583,0.251353272684692,334.846235541003,19,25 +3375.3545194852,732.416687170771,0.453306957627332,16377.3713502038,30502.963295269,16846.9659911949,5365.27579337417,11255.7060130144,0.128780385689583,537.47683431293,10,9 +525.131946179297,1300.15626925583,0.748397738308791,17654.4220786343,99925.1737105234,42264.2279041172,13459.945192394,36872.7578267614,0.212612993837725,83.6197366527543,16,7 +462.365101564378,2562.32381078888,0.637058054534528,18257.7010940214,17631.8620559027,1769.0109191595,563.379273617675,6506.2221608497,0.1809824018564,73.6250161726717,13,3 +1734.05423442045,2583.98879538593,0.492128009538428,23831.0723356058,224520.895656569,35383.1914295243,11268.5323023963,82849.0389876638,0.139809093618872,276.12328573574,10,12 +509.490104223944,3643.76935758423,0.936043761676085,15954.8379858924,10450.3410139535,11681.2329105737,3720.13786960946,3856.2143962928,0.265921523203433,81.1289974878892,14,20 +3021.45906817641,406.602521865996,0.115680280386552,196.628500577087,246647.782082153,37043.4605519522,11797.280430558,91013.9417277317,0.032863716018907,481.124055442103,19,7 +3751.35934999188,1051.78213854715,0.124621925877338,9737.11434264269,40174.8179715999,17312.8009138572,5513.63086428573,14824.6560780811,0.035403956215153,597.35021496686,1,22 +2541.48301064329,3345.85307296648,0.31923041307163,7727.63423881661,194851.553133391,5305.33358392625,1689.59668277906,71900.9421156424,0.090690458258986,404.694746917721,8,25 +2480.10139844789,2703.10161872428,0.775175493023807,12750.1888553679,40095.7135018416,34733.1796957092,11061.5221960857,14795.4662368419,0.220220310518127,394.92060484839,16,11 +544.987367824987,3013.00805964182,0.109269098873556,20343.5937627423,168927.1309163,43146.8011449478,13741.0194729133,62334.7346554613,0.031042357634533,86.7814279976094,16,9 +1814.55915584201,984.249455879123,0.325090002680356,24753.9978761246,190852.315644197,40330.77805973,12844.1968343089,70425.2087247959,0.092355114397829,288.942540739174,10,6 +1479.79917317824,2254.14418520398,0.999228257928955,16253.3790070666,52792.5535990864,18612.4700011081,5927.53821691341,19480.6470845337,0.283871664184362,235.636811015643,5,24 +1130.52752353278,2112.06400346775,0.277264171698042,22363.0888985941,11801.6167472994,27591.2459481006,8787.02100257981,4354.84012815476,0.078768230596035,180.020306295029,2,12 +3319.61425602664,4014.93702849887,0.717453219330126,5455.17746187279,205930.034114056,18741.5968386735,5968.66141359029,75988.9424775114,0.203821937309695,528.600996182586,6,6 +1153.7907168989,172.984564030892,0.367036572656934,11220.1529030535,16985.6790042966,22809.6933329448,7264.23354552382,6267.77823036775,0.10427175359572,183.724636448869,14,18 +3547.3572002519,3152.33805050278,0.605772756784964,17147.7817612627,108968.229117818,330.400686914043,105.22314869874,40209.6786412613,0.172094533177547,564.865796218455,9,25 +2712.52524366633,897.191894676691,0.941572253096649,11993.9384396163,236601.534915123,32908.657673309,10480.4642271685,87306.8394520749,0.267492117357003,431.930771284447,11,24 +1335.76264564645,1528.02065579143,0.051822306856245,24628.1819841004,95568.2584135709,17865.8032849091,5689.74626907933,35265.0400050077,0.014722246265979,212.701058223957,15,0 +3832.51671138743,3657.50050631609,0.099618124143884,274.138083191502,40123.721162411,44379.8251908955,14133.7022900941,14805.8011669413,0.028300603449967,610.273361685896,17,4 +3643.7116767102,1334.70995331407,0.933404144170579,22958.4578409614,210435.158070463,31186.2713180077,9931.93354076678,77651.3498414993,0.265171631866642,580.208865718185,5,0 +2141.18144716331,3281.92079585357,0.245194532911665,4990.24153558062,166725.580338486,44618.9245348402,14209.8485779746,61522.354368445,0.069657537758996,340.952459739381,6,13 +1273.67006876469,2461.64310271784,0.536272550232,23985.6498798832,154785.69570123,26826.192839582,8543.37351579044,57116.4928786827,0.152350156315909,202.813705217307,18,10 +352.739370468785,123.640152498185,0.369860292443505,5510.51605796612,146400.379551648,18869.1008446886,6009.26778493268,54022.2802773609,0.105073946716905,56.1686895650932,8,18 +2181.40060936011,2810.22801039935,0.773118661697914,19299.7407036475,163068.321614025,16764.7854415839,5339.10364381653,60172.8124036993,0.219635983436907,347.356784929954,10,21 +872.964471889816,3827.29071321915,0.012324500132073,18737.9826634183,41173.2544922201,31389.3143933576,9996.59694055974,15193.0828384576,0.003501278446612,139.007081511117,5,11 +381.767618625765,386.84414606598,0.416744969174651,13247.5226850218,71144.7059979184,20777.0401608707,6616.89177097793,26252.6590398223,0.11839345715189,60.7910220741664,14,8 +3497.49151179496,3139.7520639784,0.530764685873918,1460.42405763625,149413.299001902,41916.9463295295,13349.3459648183,55134.0586722886,0.150785422123272,556.92539996735,10,21 +2994.43745128231,17.4322706209087,0.108266521752486,6305.46070480174,258902.481397612,40541.7598560365,12911.3884891836,95535.9709954288,0.030757534588775,476.821250204189,19,17 +1707.51456790673,2763.42989837146,0.998239626252972,18003.9638616001,134773.830753735,25696.048230459,8183.45485046465,49732.0408685369,0.283590802912776,271.89722418897,3,14 +2789.22484805497,497.674409136921,0.329961718016616,9659.98650599916,80358.201561237,28572.4013426363,9099.49087345105,29652.4729008255,0.093739124436539,444.144084085186,19,12 +3118.49629227565,950.9170769331,0.730285564595547,20590.7946700554,179996.402604528,26351.4308484926,8392.17542945624,66419.3367544384,0.207467489941917,496.575842719053,3,18 +2617.75171244894,2382.26875860119,0.118760651801091,4404.173571719,98851.1408578116,28589.6375325205,9104.98010589825,36476.4357408899,0.033738821534401,416.839444657475,17,18 +2350.75232695841,2325.37831863837,0.001120978756755,22184.1825404556,236380.678320572,7848.153618237,2499.41198033025,87225.3425537166,0.000318459874078,374.323618942422,0,9 +1206.62059677083,1715.28725113971,0.126974023324917,23308.6984086126,144735.07337139,25270.8306937024,8048.03525277147,53407.7761518044,0.036072165717306,192.137037702361,9,13 +1128.76370147065,1480.29424136281,0.193785125449019,9459.20126373811,172070.749686656,8315.0240582072,2648.09683382395,63494.7415817919,0.055052592457108,179.739442909339,2,19 +2805.336832413,1868.16535736364,0.557533998905033,28.7876095099158,92488.2965187176,11498.4297373237,3661.92029851073,34128.5227006338,0.158390340598021,446.709686689968,3,22 +2500.83841596203,1829.13911682646,0.146191032399863,22680.0649647494,98068.1009441631,11061.4835120157,3522.76544968653,36187.4911233074,0.041531543295416,398.22267770096,18,19 +3667.36691583573,781.65496627727,0.459917589875467,11366.9159106041,143118.132841599,17115.5027208754,5450.79704486478,52811.1191297413,0.130658406214621,583.975623540721,2,15 +2278.91467229427,3183.73916428734,0.930938199791373,7990.3116297649,77322.5968498364,32140.4590346779,10235.8149791968,28532.3235608252,0.264471079486186,362.884501957686,4,7 +132.755455876575,1411.92096445163,0.87950775410123,8797.13662065342,44758.587600223,12776.4239086921,4068.92481168538,16516.0839853221,0.249860157415122,21.1394038020024,10,24 +2849.60512077484,718.76105108481,0.073744162047749,11398.0619379355,22589.9117741509,35812.2227782144,11405.1664898772,8335.7608022697,0.020950046036292,453.758777193446,3,11 +3089.98051416449,1436.38502861191,0.032006641982562,10990.0408839424,148743.351948491,25208.2073423482,8028.09151030198,54886.8457374506,0.009092796017773,492.03511372046,9,17 +3864.38760752235,960.315037120043,0.269366244210956,8607.85823515879,103847.337092156,16033.5369116076,5106.22194637185,38320.0505875114,0.076524501196294,615.348345146871,17,19 +2425.33344645561,1683.5996503595,0.728476470894483,14851.6177685052,77608.0227117513,4794.71108364465,1526.97805211613,28637.6467571038,0.206953542867751,386.199593384651,4,1 +367.728053679354,2965.24454691903,0.611578442916966,9008.84092856285,251498.352668944,43809.2936295516,13952.0043406215,92803.8201730421,0.173743875828684,58.5554225604067,16,3 +2700.25115204337,2427.97214889399,0.158521993085918,19034.1563546118,83902.6914045955,2627.12068434808,836.662638327414,30960.4027323231,0.045034657126681,429.976298096078,8,1 +1267.73543573449,3952.01920523065,0.698789947413224,21213.9339685746,279496.30430487,32850.5077775492,10461.9451520857,103135.167640173,0.198519871424211,201.868699957721,6,24 +348.664249635994,1692.26270886494,0.819448070267544,11937.2453444577,212395.264654325,38283.1499718847,12192.0859783072,78374.63640381,0.232797747235098,55.5197849738844,19,17 +2785.07230210945,540.647014403395,0.660696759551996,17717.6188305515,119824.853377658,23141.3444998888,7369.85493627032,44215.8130544863,0.187697943054544,443.482850654371,12,16 +134.644916926058,1915.43247764589,0.360392107413769,8839.71265438796,80763.0445278856,13671.7716377455,4354.06740055589,29801.8614494043,0.102384121424366,21.4402733958691,13,20 +617.998813845471,3409.12144453497,0.180241778092351,3466.79628164329,52267.7051724396,11943.7915466965,3803.75526964857,19286.976078391,0.051205050594418,98.4074544339922,14,1 +2564.17758727712,67.6477825448816,0.014136124051015,8680.72069063534,36628.7692714412,2020.6383351533,643.515393360924,13516.151022672,0.004015944332675,408.308533005911,17,3 +976.25833690531,3964.4093899057,0.830747678803964,13160.8884683792,126258.074482463,41674.860924851,13272.2487021818,46589.6953809827,0.236007863296581,155.455149188744,18,7 +3132.53333411906,3707.15694649932,0.069662908197495,17844.6306383036,73781.2211167428,44991.2667654999,14328.4289062102,27225.5428475066,0.019790598919743,498.811040464818,12,3 +466.601866025482,1618.93380589603,0.420915343480914,10022.1967233321,279421.375881734,23676.4843047626,7540.28162572057,103107.518775548,0.119578222579805,74.2996601951405,12,14 +1062.62707131213,1806.38087362439,0.2810357291672,7868.25263546511,177590.707745933,20976.6240775827,6680.45352789258,65531.626474514,0.079839695786136,169.208132374543,5,18 +1418.18250870878,3944.84025198126,0.75365297768003,8216.66015727717,65164.3731181667,464.915825842568,148.062364918015,24045.8941395449,0.21410595956819,225.825240240252,5,24 +28.735343350369,618.308554924571,0.618921931946745,7401.96180428679,140519.907154504,44186.2196623332,14072.0444784501,51852.3642636546,0.175830094303053,4.5756916163008,5,8 +2955.31168982176,1819.38923960884,0.621035280172816,757.77179247075,22700.8734231386,18940.0529912572,6031.86400995452,8376.70606019874,0.176430477321823,470.591033411108,17,24 +2064.90792615894,3165.42481599319,0.834342051075712,11517.9837603686,103691.715557282,28425.6934191297,9052.76860481838,38262.6256668937,0.237028991782873,328.806994611296,17,15 +2930.75817579702,644.959287666836,0.197124089619543,13660.9501526667,179631.214191656,42624.0968881444,13574.5531490906,66284.5808825299,0.056001161823734,466.681238184239,0,24 +348.91435892795,3763.59569443406,0.489326496564596,22369.4332809215,142350.723265806,36276.3374660044,11552.973715288,52527.9421645041,0.139013209251306,55.5596112942596,17,3 +2176.68684602863,3489.79838848363,0.252886968206813,11179.2080260583,135895.012589027,27744.8463629966,8835.93833216452,50145.761102962,0.071842888695117,346.606185673349,3,7 +918.292439119927,3866.95998056385,0.497437093744264,23707.5487849974,1311.64799553747,20610.9350606513,6563.99205753226,484.00295038283,0.141317356177348,146.224910687886,18,12 +3497.26667764576,470.991297405238,0.749886139502751,10888.1160568441,177413.708089605,27763.99300981,8842.03599038535,65466.3129481937,0.213035835086009,556.889598351236,16,1 +592.143235442103,2797.39799877156,0.417515818011973,11285.4321028219,267894.143738268,2857.90722731593,910.161537361761,98853.9275786967,0.118612448298856,94.2903241149845,5,2 +3557.50408898742,3784.01034053459,0.97739289744264,13320.6861185988,244586.650456484,27884.7069587356,8880.4799231642,90253.3765522081,0.277668436773477,566.481542832392,11,20 +2855.64246673622,1132.54551247141,0.204654146976763,15536.7147628071,153094.13004112,43460.9611507981,13841.0704301905,56492.2989081624,0.058140382663853,454.720138015322,0,16 +328.728354556385,122.35089684602,0.146706778680571,10538.674022398,154246.568588857,10651.6850940614,3392.25639938261,56917.5529848181,0.041678062125162,52.3452793879594,9,9 +283.831491170509,2586.06022259675,0.528199872675074,24846.1565369475,148255.896672251,26637.8248327021,8483.3837046822,54706.97294179,0.150056782009964,45.1960973201448,14,2 +3672.65802233896,3215.58891940137,0.656686043181502,21857.6982560401,11977.3589562244,4083.58089030579,1300.50346825025,4419.68965174332,0.186558534994745,584.818156423401,17,22 +341.130707553953,786.628576655682,0.329528266510416,5547.01701516652,80399.5543336467,16288.7873359244,5187.51189042178,29667.7322264379,0.093615984804096,54.3201763620944,0,16 +3284.27707880313,3215.84920080796,0.920038208517295,13580.7549962636,55129.2317249269,21052.096180967,6704.48922960733,20342.8899353974,0.26137449105605,522.974057134256,11,15 +745.403014555283,2887.94246035791,0.321017290868572,11427.5995997868,268665.955789401,33852.577937658,10781.0757763242,99138.7290735797,0.091198093996753,118.69474754065,10,14 +1709.26873088664,2680.49352781857,0.93437489321995,3545.80319405272,235604.433977356,7198.1470139745,2292.40350763519,86938.9055266996,0.265447412846577,272.176549504242,19,22 +129.322647883841,1881.16208821754,0.012813029858329,21194.0226565636,285153.503110461,22286.4241520493,7097.58730956984,105222.694874709,0.003640065300662,20.5927783254524,11,17 +186.049394145727,171.013891233703,0.540382400494283,5938.38055257912,165268.712320909,21650.3078059027,6895.00248595627,60984.7646940624,0.153517727413149,29.6256997047336,6,6 +1000.99424959265,281.710184113988,0.323040895213331,4535.51848546613,227288.50558859,14447.8910347132,4601.23918302968,83870.2972651624,0.091772981594696,159.393988788639,3,20 +3061.50897942138,676.320066037311,0.509649848289037,3068.67594184992,270728.035114642,40287.5217001911,12830.4209236277,99899.6439537424,0.144786888718476,487.501429844169,16,4 +2931.40586482158,1611.36569492016,0.810037747592971,13791.2939714271,280854.515447397,43652.5792557223,13902.0953043702,103636.352563615,0.230124360111639,466.784373379233,4,6 +2003.20789498371,3022.04586293456,0.106759426368749,18642.769705596,260531.364777981,32296.8419351663,10285.6184506899,96137.0349734247,0.030329382491122,318.982148882756,13,25 +3282.29680067476,3915.69168377135,0.648282229408991,7752.51310261057,134484.360069196,9610.28138326057,3060.59916664349,49625.2251177845,0.184171087900282,522.658726222096,19,5 +424.416693629552,3957.58180402569,0.95593664999477,18130.1270149492,161640.879564062,10586.9137537062,3371.62858398287,59646.0810199491,0.271572911930332,67.5822760556611,2,9 +2332.62720465318,1161.38963041952,0.693341044895189,18462.8583556898,41742.6080523199,41905.5550771246,13345.7181774282,15403.1764030701,0.196971887754315,371.437452970252,17,3 +2431.31421287864,2188.62982452224,0.737683990365714,16658.6977227377,30038.301734749,29291.5868665845,9328.53084923073,11084.2441825642,0.209569315444805,387.151944725898,1,4 +3396.70468047661,2282.45755171099,0.6559675524614,6450.87208143283,5116.3126318928,23233.6098468237,7399.23880472092,1887.93824055085,0.186354418312898,540.876541477167,13,5 +209.037975959183,359.482911405023,0.768292732035255,18813.5690934883,76488.4310761119,6038.87891137429,1923.20984438672,28224.5133122184,0.218264980691834,33.2863019043285,11,3 +1922.07258378979,2778.47398343661,0.9949420955206,20428.8082277382,143046.232864483,17237.9686497422,5489.79893303892,52784.587772872,0.282654004409261,306.062513342323,9,21 +1677.86791062838,2391.15028010778,0.122599624737439,12770.952361096,109068.051617594,34952.5681370456,11131.3911264476,40246.5135120273,0.034829438845863,267.176418889869,4,16 +2804.10019426108,3025.44123337317,0.261039588426487,19563.7129815297,88104.9620714902,32515.9397709916,10355.394831526,32511.056114941,0.074158973984798,446.512769786796,6,13 +1866.70818713404,3242.93438636105,0.127566089978178,12578.4605021279,277801.017946374,20316.4111170493,6470.19462326411,102509.600718219,0.036240366471073,297.246526613701,6,2 +1073.51474923521,2310.71955303872,0.553974291890053,24937.1259151973,239896.969846924,1160.8558893789,369.699327827675,88522.867102186,0.157379060196038,170.941839050193,6,11 +516.284828338594,424.067176308136,0.435410855924394,5767.10693200615,124514.738828678,11599.5025708818,3694.10909900694,45946.3980917631,0.123696265887612,82.2109599265277,0,19 +3879.93275160914,877.604224809925,0.58795812307963,14161.6050207575,57939.8084836367,6565.47344906305,2090.91511116658,21380.0031304932,0.167033557693077,617.823686561965,15,13 +2091.58076158909,2634.53669544206,0.199723805147699,3291.32638761224,185485.546467982,761.393708957895,242.482072916527,68444.8510951963,0.056739717371505,333.054261399537,18,7 +767.683056027054,3496.28220853187,0.588041362064721,12605.8966776148,108179.987517156,17945.0246742792,5714.97601091694,39918.8145819764,0.167057205132023,122.242524845072,13,15 +3975.92439849291,3091.77334889665,0.9866849914078,19230.0769676503,188383.960918486,16358.0442052601,5209.5682182357,69514.3767226886,0.280308236195398,633.108980651737,13,25 +21.2623058412861,1586.91557524829,0.902449039226603,11730.5797113827,137325.25574061,17909.2661808145,5703.58795567341,50673.5261035461,0.256377567962103,3.38571749065065,13,3 +3416.83310207546,751.629906266059,0.44246544193926,10906.6867090957,263455.83526014,23759.144845522,7566.60663870127,97216.1753727454,0.125700409641835,544.081704152143,2,10 +929.721149487885,2491.81642287468,0.52968366860121,12310.3430207091,180706.601074748,26209.7731300711,8347.06150639207,66681.4026106081,0.150478314943526,148.044769026733,4,23 +3196.5337363811,612.855741718911,0.450143283394693,984.617783464508,28993.7609438528,26162.7880588472,8332.09810791312,10698.8047763294,0.127881614600765,509.002187321831,16,12 +1532.71173205492,1273.26449726014,0.521781565527953,12418.5533013014,112843.256587698,37438.4261693802,11923.0656590383,41639.5780766413,0.148233399297714,244.062377715752,6,25 +536.021411126936,1406.25101379458,0.630120314021263,6047.29177765881,89410.3741533052,37696.0920687442,12005.1248626574,32992.7579901495,0.17901145284695,85.3537278864548,9,8 +1667.63737222576,2838.92244782896,0.584824607605246,4269.86336098403,248988.143632263,40506.6467037656,12900.2059566132,91877.5437757428,0.166143354433309,265.547352265248,16,7 +796.565229214844,1547.07906595309,0.055017741087057,950.711534389098,143828.917662875,8616.04865913361,2743.96454112535,53073.4013516144,0.01563004008155,126.841597008733,16,25 +543.822806596903,1679.41810920165,0.220346677659168,4824.17078474718,99621.800771487,8575.41707531817,2731.02454627967,36760.8120927996,0.062598487971355,86.5959883116087,5,0 +1250.45420762855,2092.18853336263,0.042915873566373,930.038838420634,243191.369980005,15634.1105634532,4979.01610301057,89738.5129077509,0.012192009535902,199.116912042763,12,5 +3727.77817788462,437.867307237749,0.984801361376538,24759.5513984973,191603.049417578,28246.724306788,8995.77207222548,70702.2322574089,0.279773114027426,593.595251255513,9,8 +1062.84473298637,3617.55903674786,0.774612121914617,3631.87067854865,198532.476276016,22200.7596561741,7070.30562298538,73259.2163380133,0.220060261907562,169.242791876811,14,13 +442.978515614673,2936.6964186907,0.340959597361756,4496.55182556038,34342.899111363,39884.7353969897,12702.1450308884,12672.6564986579,0.096863521977772,70.5379801934193,17,4 +774.69575666704,1224.58979049744,0.91312255965337,18190.2749997142,113367.371913595,16895.6428450143,5380.7779761192,41832.9785659022,0.259409818083344,123.359196921503,3,22 +629.758833753386,3173.99862949521,0.55525175999264,1731.0911363345,16669.476501179,21758.9460959962,6929.60066751471,6151.09833991845,0.157741977270636,100.280069069011,8,25 +1692.09534052782,2195.61243821957,0.63745443604565,22083.6385324761,62442.2851265843,28573.7197680842,9099.91075416694,23041.4336260459,0.181095010240241,269.441933205067,3,14 +3738.1535913478,3172.40952261089,0.432668471389802,11410.764257764,211954.797622329,39252.5268008104,12500.8047136339,78212.1024436638,0.122917179372103,595.247387157293,8,5 +1873.28760317283,968.512054329039,0.990970493745723,13903.4134332698,17966.2480301085,3294.96253100084,1049.35112452256,6629.61181922823,0.281525708450489,298.294204326884,1,8 +1280.86095946925,1623.47762841852,0.574805288764929,2024.09980775092,111991.754996931,40863.2680997261,13013.7796495943,41325.370847576,0.163296957035491,203.958751507842,18,18 +157.609008897853,2960.50586119333,0.92401438859784,16307.1163624954,120139.080610148,18196.3650253673,5795.0207087157,44331.7640627852,0.262504087669841,25.0969759391486,6,23 +444.275586186706,3533.37600502433,0.60804244344813,2960.07654708564,60052.9812841828,37680.9439441844,12000.300619167,22159.7716915804,0.172739330525037,70.7445200934245,10,11 +1535.21185008901,1801.28651040633,0.862214594811267,5784.24171544468,40385.6721374434,14191.586535859,4519.61354645191,14902.462043337,0.244947328071383,244.460485682963,19,13 +3416.83043272566,3212.77965657496,0.704869009934214,15053.1209331836,50152.9945488133,37356.4614151363,11896.9622341198,18506.6400549127,0.20024687782222,544.081279096443,19,22 +2836.21061141707,2339.20060841716,0.031288414528583,2558.40884275893,117752.939597423,27678.3689167542,8814.76717094083,43451.2692241413,0.008888754127438,451.62589353775,11,23 +1829.26562514817,2524.97888519267,0.372380548613592,17411.4317294218,105322.74211303,37283.5967413704,11873.7569240033,38864.4804845129,0.105789928583407,291.284335214677,15,12 +3653.44393594914,267.843461730979,0.836033722921207,10076.361280792,136216.243293675,27051.5528657024,8615.14422474599,50264.2964183303,0.237509580375343,581.758588526933,5,0 +2650.09518348806,3296.41578390668,0.488325364477516,23247.9882257708,139018.918460267,41061.2617615897,13076.8349559203,51298.4938967775,0.138728796726567,421.989678899373,12,12 +3391.7548817376,2114.83535784786,0.405363570354409,11672.4036070789,58051.2466366663,22567.2262512778,7187.01472970631,21421.1242201721,0.115160105214321,540.088356964586,14,0 +202.000640576982,371.106318554649,0.737808242906265,23036.8914979679,217505.962434351,22308.0144266635,7104.46319320494,80260.502743303,0.209604614462007,32.1657070982455,6,22 +3596.94280340776,2176.72421752003,0.657546590245498,23026.6501001742,261068.140173022,2408.37174321772,766.997370451503,96335.1070749159,0.186803008592471,572.761592899325,1,11 +240.830417123813,3668.14201678373,0.905674305589483,2570.45331988531,225918.682818681,29228.8182570317,9308.54084618844,83364.8276083694,0.257293836815194,38.348792535639,3,19 +473.969877794115,2465.33190574045,0.088513922699197,11281.7701873367,151879.668708706,16140.3681870476,5140.24464555656,56044.1581950945,0.025146000766817,75.4729104767699,16,15 +3948.60764769808,3089.58635777748,0.611591754088421,17030.5620831237,8587.3574070462,12123.2853096083,3860.91888841029,3168.76657086576,0.173747657411483,628.759179569758,19,0 +939.867479901099,3224.28002903914,0.715979709855224,16032.2362388644,251563.661924217,397.589432160147,126.620838267563,92827.9195292314,0.203403326663416,149.660426735844,18,1 +3510.04127693616,3338.88848458397,0.415487171801984,17229.5402799549,173240.194404116,29142.1252479484,9280.93160762688,63926.2709978288,0.118036128352836,558.923770212764,16,25 +809.80121680786,1208.89484375822,0.984581927352699,11447.6671135584,111890.241063295,34483.1848262789,10981.9059956302,41287.9118314742,0.279710774816108,128.949238345201,18,15 +3251.60859632593,2883.83938861218,0.300643654360507,23425.9059022054,45021.1944445232,35874.7361516406,11425.0752075289,16612.9868798979,0.08541012907969,517.772069478651,17,15 +1428.96689089169,2596.58941270782,0.149195417819301,9069.26723130321,112384.759917412,7087.90719676017,2257.29528559241,41470.3911134362,0.042385061880483,227.542498549632,18,18 +1090.20431484978,586.744763394794,0.601303668500105,11045.3681457221,175781.40724258,10609.6309412568,3378.86335708815,64863.9879123911,0.170824905823893,173.59941319264,14,17 +40.4734223653653,1109.17636639454,0.444247371562777,17554.9028325179,176857.243473113,29380.2489378216,9356.76717765019,65260.9754513332,0.126206639648516,6.44481247856135,9,2 +1953.71992645439,3145.69165598771,0.803267484465917,8547.11480064978,45616.4981167874,41688.4905320963,13276.5893414319,16832.6561316559,0.22820098990509,311.101899116941,12,10 +2260.86286024226,3157.57107051492,0.802352042577041,17992.874164217,279366.913929048,5644.83790379675,1797.71907764228,103087.42211404,0.227940921186659,360.010009592717,0,11 +3037.84022396058,519.025884699203,0.516207817187269,8821.05165205351,80890.4438938613,7323.63075515417,2332.36648253318,29848.8722855577,0.146649948064565,483.732519738946,8,1 +2707.85743544664,3812.50908468158,0.038736241794427,2706.69226700681,23332.4693454237,8596.07220804839,2737.60261402815,8609.76728613421,0.011004614146144,431.187489720803,1,15 +767.239924820751,2787.67306768455,0.004202749781208,11858.7775279174,225927.622532832,30580.910580158,9739.14349686561,83368.126395879,0.001193963006025,122.171962551075,18,1 +337.265361904924,3489.75082916761,0.140903619501649,15874.3999999787,254306.169177707,3588.58924414204,1142.86281660575,93839.9148257221,0.040029437358423,53.7046754625675,13,14 +3247.33713544198,110.057042452921,0.992298297867702,21318.0577159453,206511.403291243,29527.2386799611,9403.57919743984,76203.4698491672,0.281902925530597,517.091900548086,7,9 +516.655787636676,3748.67825823134,0.16867272186815,24809.6238361612,140236.224782296,22723.5631169614,7236.80354043357,51747.6844215114,0.047918386894361,82.2700298784516,4,6 +1992.67928567417,2990.60678510043,0.207216565069568,17392.9468054298,26812.8254756977,16949.6649790775,5397.98247741322,9894.03154084786,0.058868342349309,317.305618737925,8,19 +2962.66157199664,3431.73354123284,0.276866206340117,22769.5253605332,115956.76616813,16577.5516500988,5279.47504780217,42788.474600786,0.078655172255715,471.761396814752,16,9 +3752.52298866017,239.350021229715,0.118928002087837,8509.33349964542,261947.481214077,40908.3513466836,13028.1373715553,96659.5871638661,0.033786364229499,597.535507748435,8,5 +3849.63669269541,2714.63817329032,0.570727266017699,19875.9602036831,251474.996629957,41097.2072275037,13088.2825565298,92795.2017084712,0.162138427845937,612.999473359142,8,6 +3226.88488476308,1044.7373994744,0.741631149582872,6838.50809003441,81807.2204605661,17615.6895270605,5610.09220607022,30187.1662216111,0.210690667495134,513.835172732975,14,14 +1432.1523608274,2916.15600903296,0.5503157992605,1650.51593894018,94477.8502371497,32724.0784393148,10421.6810316289,34862.6753642619,0.156339715699006,228.049738985255,6,25 +1018.61685683209,3535.76138788051,0.346659779958031,24642.6742509757,179012.679576701,42890.6876551728,13659.4546672525,66056.3393271959,0.098482892033532,162.200136438231,18,15 +1674.49527063375,2803.92548411996,0.447545886788765,12337.4873901971,287669.101646718,34158.4051504366,10878.4729778461,106150.960017239,0.127143717837717,266.639374304737,13,5 +3206.3054932454,1627.91869288065,0.230939096552398,14036.0762449554,276003.884392717,31940.38955551,10172.0985845573,101846.451805431,0.065607697884204,510.558199561369,17,24 +256.045105856744,1815.75472960576,0.013105333001106,4744.84657883709,230633.137560278,23081.8648749122,7350.91238054529,85104.4788045306,0.003723105966223,40.7715136714561,12,20 +1426.0034358462,1050.61996758261,0.313874572814938,23725.2750707566,7218.55082205832,43166.9219059278,13747.4273585757,2663.67189005842,0.089168912731517,227.070610803535,13,3 +2785.08350717706,3969.62419034829,0.255363540931478,7313.51462043419,43146.3182213113,27035.7413488359,8610.10870982035,15921.1506351702,0.072546460491897,443.484634900806,19,14 +685.068797727975,3533.68242143466,0.213141712044375,23202.1387340848,157571.904819354,39984.3849400466,12733.880554155,58144.6143244849,0.060551622739879,109.087388173244,18,25 +1475.78147757539,426.373793761176,0.844365356619702,20510.721783859,29733.3577739308,35171.0266134449,11200.9638896321,10971.7187357678,0.239876521766961,234.99705056933,3,24 +2359.59608466777,45.2132199213507,0.641652637704345,9639.35285609964,180493.60130318,39183.1899572103,12478.722916309,66602.8049089225,0.182287681166007,375.731860615887,4,15 +2053.25566222413,3947.39123948937,0.592269663230093,4756.29368053864,63615.5395273494,6020.40188510913,1917.32544111756,23474.3688292802,0.168258427054004,326.951538570721,1,13 +2797.09455140703,3761.47775152109,0.567260457153815,24987.0671414587,263535.606198923,9169.34441127441,2920.17337938675,97245.611143514,0.161153538964152,445.397221561629,19,1 +1957.1910628893,3751.44633330208,0.670357994736547,1621.05797335997,254300.940096244,40187.6309455393,12798.6085813819,93837.9852753668,0.190442612141064,311.654627848615,13,3 +164.182879068669,3227.33300653942,0.763793120922676,13589.4906281915,251666.780796725,24425.1764069341,7778.71860093443,92865.9707736993,0.216986682080306,26.1437705523358,3,12 +2397.5955943267,157.793265595906,0.095075775735238,18690.1649771897,223720.296633475,3836.95699820863,1221.96082745498,82553.6149939022,0.027010163561147,381.782737950111,17,3 +3219.97244166895,2551.66420529165,0.877202262305111,7653.82582858836,129877.69421456,24584.391867402,7829.42416159299,47925.3484186568,0.249205188154861,512.734465233909,8,12 +2369.58081007347,1963.17562565114,0.609437196550923,6847.03226447261,141704.154530209,1393.45430353523,443.77525590294,52289.3559152063,0.173135567201967,377.321785043546,18,17 +2450.76721704474,2501.75209760878,0.654478947580247,17204.3960113429,226521.933091608,39011.3921970724,12424.0102538447,83587.4291850952,0.185931519198934,390.249556854258,15,19 +1122.03450427489,19.2251174699205,0.044125349172789,17385.167033184,134411.80945963,19436.5865023835,6189.99570139602,49598.4536751402,0.012535610560452,178.667914693454,17,17 +3015.7664137019,3533.86406360776,0.072255250694917,1098.35068698556,127757.524215902,37141.7524029369,11828.5835678143,47142.9978656465,0.020527059856511,480.217581799666,17,15 +225.783280685974,3499.05441500959,0.231028713398373,5982.33454078631,228997.360175195,2313.54464224036,736.797656764446,84500.8709133561,0.065633157215447,35.9527517015882,8,20 +3279.09419715416,1980.54064899291,0.360523104973443,15904.1249376268,273868.509642107,13632.356671224,4341.51486344713,101058.490642844,0.102421336640183,522.148757508624,0,15 +2793.3428382911,1612.3208611324,0.17310353910288,1509.65220810886,265959.470455942,44645.7663200621,14218.3969172172,98140.0259985026,0.049177141790591,444.799815014506,11,6 +3492.98744769384,296.332459887916,0.789990644280447,19435.8722500886,212515.640397366,8550.75604768331,2723.17071582271,78419.055497183,0.224429160306945,556.208192307936,8,20 +915.136388243552,3817.84057142312,0.479188043685465,23429.1162203411,158176.790027126,28189.2852184381,8977.47936892933,58367.8191982015,0.136132966956098,145.722354815852,13,7 +2403.5987121979,1891.4170791877,0.559515200223011,22438.9619977407,221177.943363081,7543.34821528926,2402.34019595199,81615.4772557495,0.158953181881537,382.738648439156,19,11 +2767.34865545906,1795.11488160882,0.346985136937021,23564.4813966424,258865.876741743,32708.5332841456,10416.7303452693,95522.4637423406,0.098575322993472,440.660613926602,3,16 +517.711350099147,1907.1721240554,0.446721378198304,13791.1715088614,269074.719956424,43997.5249420465,14011.9506184861,99289.5645595661,0.1269094824427,82.4381130731126,9,21 +1004.18051439391,1801.58257284808,0.070788816838286,799.525349220561,52038.7455341479,9061.705462077,2885.89345926019,19202.4891269918,0.020110459329059,159.901355795209,2,23 +934.134709554314,3672.3838496146,0.732791264612849,6559.2915457654,32231.699327351,4109.90755934057,1308.88775775177,11893.6159879524,0.208179336537741,148.747565215655,10,17 +3809.89215144343,3737.35713337929,0.796998778757683,3395.27321885887,187056.315941802,5898.49280575931,1878.50089355392,69024.4708272332,0.226420107601614,606.670724752139,16,0 +924.630286025239,227.832371984985,0.077184755801305,24376.6262201252,247479.437113419,28818.6336030238,9177.90879077191,91320.8255031066,0.021927487443553,147.234121978541,2,18 +2865.46223932813,3949.90747731062,0.452943531405701,4267.18485300755,164627.440973886,41370.8772608672,13175.4386181106,60748.1332006959,0.128677139603892,456.283796071358,7,18 +1956.80258926739,756.854752063302,0.819879311241234,19090.3196397401,120152.59452863,30341.6148199219,9662.93465602608,44336.750748572,0.232920258875351,311.592768991623,4,0 +532.237677273277,1899.61686354387,0.112066790426393,22176.0404029666,75349.0686753596,25485.9980807119,8116.55989831589,27804.0843820515,0.031837156371134,84.7512224957447,6,16 +3333.78514913726,615.164072984739,0.643036923510355,16230.8033012706,30052.909148731,20553.4363569258,6545.68036844771,11089.6343722255,0.182680944179078,530.857507824404,5,12 +412.225462448497,3549.9835141464,0.410807334138465,8393.59586278292,9798.47005561163,36101.0099496557,11497.1369266419,3615.67160723676,0.116706629016609,65.6409972051747,1,19 +1624.05406943518,2041.07925030856,0.800273767278206,296.473822354336,106321.857097903,27523.9052815016,8765.57493041452,39233.1576007022,0.227350502067672,258.607335897322,0,9 +1643.44612425565,3313.15590396916,0.535759420367073,17059.2312263165,286007.868251904,24648.6950159563,7849.90287132366,105537.95876454,0.1522043807861,261.695242715868,9,7 +3621.64937052822,3651.49353166483,0.266985530454665,14211.422126992,237746.111548523,23300.6349104596,7420.58436638841,87729.1924533295,0.075848162060984,576.695759638252,7,11 +3345.99222866833,1302.33252614717,0.225785102755951,6938.54033590031,136719.221516434,4347.95924229541,1384.70039563548,50449.8972385365,0.064143495101123,532.801310297505,16,16 +2413.39404400158,3690.26954401655,0.605813282269369,9507.99422996148,177169.226534548,33523.8545612576,10676.3868029483,65376.0983522317,0.172106046099253,384.298414649933,17,25 +411.722567341445,3716.88338184479,0.011145011555442,24806.3503664286,215440.623864491,32439.2317468829,10330.965524485,79498.3851898491,0.003166196464614,65.5609183664721,0,19 +1851.55463548968,1568.83781023508,0.096820412257835,21483.8433139818,126291.867695453,32511.344681901,10353.931427357,46602.1652012742,0.027505798936885,294.83354068307,0,1 +185.221140119053,2312.41468734198,0.45259649690981,10923.0650416127,34379.1118461216,22931.2394801268,7302.94250959452,12686.0191314102,0.128578550258469,29.4938121208683,3,6 +1755.11435929094,3732.76825045348,0.454076266033565,2629.85835232015,169109.256981379,15817.0854424794,5037.28835747752,62401.9398455273,0.128998939214081,279.47680880429,4,24 +1545.90206007556,1134.32068599057,0.158584820214222,10060.2132261856,201878.220247884,39046.8867260678,12435.3142439706,74493.8082095513,0.045052505742677,246.162748419675,1,20 +3181.52407617772,1310.93455782536,0.868288099995054,20767.7996721384,242823.916249075,37800.7731432322,12038.4627844689,89602.9211251199,0.246672755680413,506.612114041038,0,2 +3729.46850794743,2207.46850957354,0.732174444661234,20698.5986056703,84465.8208693612,11227.5978289341,3575.66809838666,31168.1995827901,0.208004103596941,593.86441209354,6,9 +3880.59749880107,1480.90107427176,0.080383042837343,3720.42827383806,180138.65636468,41376.7821109366,13177.3191436104,66471.8289168561,0.022836091715154,617.929538025648,5,3 +3295.35231181919,1120.41513897058,0.725526685833193,21060.9881078906,15547.4042021803,37474.3372044013,11934.5022943953,5737.04952109974,0.206115535748066,524.737629270572,2,12 +3209.51611038225,2377.78577885583,0.172714630554,19803.2678566788,35181.8559222486,16038.5892880112,5107.83098344306,12982.2346576563,0.049066656407386,511.069444328384,1,20 +2763.68484816709,2720.78349424338,0.496239463860331,24947.2859571531,126991.876342036,5039.50045940897,1604.93645204107,46860.470974921,0.140977120414867,440.077205122148,11,0 +3029.11543938251,1159.87626474845,0.192978692699815,22447.8868546129,209345.153449562,31717.0127058165,10100.9594604511,77249.1341142295,0.054823492244266,482.34322283161,15,0 +2105.91643144404,2807.81431695633,0.540685819132532,10549.5860948735,225766.714859984,30919.8382461548,9847.08224399834,83308.7508708428,0.153603925889924,335.337011376439,14,14 +3950.86503396133,1924.3570272299,0.629852976552787,15746.8277002365,76447.3232073684,29430.3458655623,9372.7216132364,28209.3443569625,0.178935504702496,629.118635981104,5,22 +3255.83403309685,3496.75710579632,0.203423695035068,7736.64367719222,254663.139466044,35184.3310961476,11205.2009860343,93971.638179352,0.057790822453144,518.444909728798,3,12 +3544.86419315604,1413.4824752034,0.273627821409783,3424.66035913753,266336.682702822,24726.025687605,7874.53047375955,98279.2187095284,0.07773517653687,564.468820566248,17,19 +2842.50575373977,2189.05841131209,0.459466673030218,11960.5632827288,56127.1938011787,7379.80097558176,2350.25508776489,20711.1416240512,0.13053030483813,452.628304735632,11,9 +593.203858149331,67.5657477173261,0.027977202031479,24893.8937770746,184749.778854745,31715.9263823862,10100.6134975752,68173.3501309022,0.007948068758943,94.4592130811037,10,16 +1060.47991608215,3792.89745948311,0.606017828041096,390.12476202023,190847.995247441,3399.11283374959,1082.52001074828,70423.6144824506,0.172164155693493,168.866228675502,0,9 +359.19665248886,1138.67673156653,0.002367867092754,16219.1105979193,283246.661793014,41427.2358298584,13193.3872069613,104519.063392256,0.000672689514987,57.1969191861242,14,3 +2266.64396060752,760.303043502966,0.551320219335466,13234.6433645945,251487.250771433,44479.7534383131,14165.5265727112,92799.7235318941,0.156625062311212,360.93056697572,19,7 +439.494805647229,2932.94337305504,0.590850033519377,14170.7301277333,190328.825419729,38141.8779808016,12147.0948983445,70232.038900269,0.167855123158914,69.9832493068836,1,2 +2464.65833608922,853.183093058631,0.135804459274293,13123.4638454545,194102.780051251,22693.2969400366,7227.1646305849,71624.6420853325,0.038580812293833,392.461518485545,19,0 +3185.29236058051,1574.24183487427,0.775405415816481,16214.5681658727,9326.2112509884,17780.2437746345,5662.49801739952,3441.40636567838,0.220285629493318,507.212159328107,10,16 +2929.11515772277,1144.47297787344,0.353220699786337,15293.5828805451,56116.985534727,28583.4861774389,9103.02107561748,20707.3747360616,0.100346789712028,466.419611102352,10,6 +3421.88822032867,535.513464134725,0.012524197100118,17856.6520670044,245281.693427301,25425.8618174392,8097.40822211439,90509.8499731738,0.003558010539806,544.886659288005,18,0 +1332.37627828511,3192.79211911548,0.79809742701189,3631.74872431372,272607.88271927,274.826727203765,87.5244354152118,100593.314656557,0.226732223582923,212.161827752406,11,2 +722.46338468169,1366.032001718,0.908303971622715,23586.159739445,216837.459930793,31225.2133273511,9944.33545457041,80013.8228526911,0.25804090102918,115.041940235938,16,11 +1369.13450841574,3086.45479975621,0.327844353432056,14482.1251845424,52960.5105454187,11018.5318529691,3509.08657737869,19542.6238174977,0.093137600406834,218.015049110787,7,21 +1674.51041229239,1157.47314138199,0.336293563392844,20706.736042794,25101.2123840865,33241.7561319522,10586.5465388383,9262.43999412786,0.095537944145694,266.641785396877,19,9 +3358.83282091906,3385.37339520291,0.02212014255634,5267.65750622987,96134.442177518,20183.4807863452,6427.86012303987,35473.9639031432,0.006284131408051,534.845990592207,10,1 +489.618656042167,2007.59451071784,0.857317750649382,11469.2701768699,2348.3697173627,34895.1778651791,11113.1139698023,866.557091277749,0.243556179161756,77.9647541468419,15,20 +803.758283578619,3210.00868214047,0.937467755120079,11068.6316565827,63322.7937011429,39838.8118400917,12687.5196942967,23366.3445391671,0.266326066795477,127.98698783099,15,23 +1575.52808833257,2086.01678423723,0.558125454353306,15243.5633452967,131301.604868638,21941.5209374659,6987.74552148595,48450.7767042945,0.158558367714007,250.880268842766,5,15 +1396.96770805704,3675.19462309916,0.299068294161639,9200.05755235425,79078.5265461468,30563.4983997418,9733.59821647828,29180.2680982091,0.084962583568648,222.447087270229,7,9 +1023.35590233739,2443.4759178995,0.643949494582498,1919.47619479135,16579.1765866562,13709.4731346669,4366.0742467092,6117.77733824952,0.182940197324573,162.954761518693,3,3 +923.129050853069,666.141212428453,0.818263431159362,13726.182927714,192063.660463514,22847.2356049037,7276.18968309035,70872.199433031,0.23246120203391,146.99507179189,16,22 +683.579149320388,2120.41626055778,0.20270356665015,13996.6864732623,198234.049250446,33475.3379965446,10660.9356676894,73149.0956643712,0.057586240525611,108.850183012801,6,16 +2907.94531860021,690.837180429967,0.028193829041406,18702.3317028242,160372.40521905,41253.4410395722,13138.0385476345,59178.0093059225,0.008009610523127,463.048617611498,0,9 +3838.53707820239,1702.58668185976,0.207883245088271,24194.0532322334,157269.735880282,38154.3349349412,12151.0620811915,58033.1128709528,0.059057740081895,611.232018822037,10,16 +1255.24153547941,1056.75728210051,0.009062643108239,15080.939707818,230798.059028012,31118.8650825172,9910.46658678892,85165.3354346908,0.002574614519386,199.879225394811,14,0 +1022.69882040424,2618.87453953459,0.278149374215055,7840.3951382341,260351.634045609,3521.40603299272,1121.46688948813,96070.7136699664,0.079019708583823,162.850130637618,19,11 +3506.88517627706,3025.30908044691,0.796372899149048,3503.92572739129,4211.70657929107,5269.55916268838,1678.2035549963,1554.1352691111,0.226242300894616,558.421206413545,7,8 +3041.36525788647,3619.47279566833,0.793254730152978,4384.41868979336,171079.918272707,27.0185930394272,8.60464746478573,63129.1211338402,0.225356457429823,484.293830873642,6,19 +1089.52159745187,3565.29724442696,0.594943567875874,5570.93136015774,116554.062330805,15251.717272683,4857.23480021752,43008.8790888579,0.169018059055646,173.490700231189,12,5 +1114.98210975573,1096.82023960481,0.158439919855464,16968.0559089065,16402.2768098522,3841.59628794438,1223.43830826254,6052.50066784214,0.04501134086803,177.544921935626,11,23 +3984.82461880186,3865.60774575618,0.162835240972853,12692.9746714976,225468.683684647,26031.5475579552,8290.30177004943,83198.7762673974,0.046260011640015,634.52621318501,2,6 +1441.74395864766,2632.54847668593,0.905784169005242,10610.124576962,195632.580573003,24462.2859013643,7790.53691126252,72189.1441228793,0.257325048012853,229.577063478927,18,1 +2043.65873745876,1949.1260463791,0.205392250955009,17524.9254139373,201571.059300476,6662.22000296133,2121.72611559278,74380.4646865225,0.058350071294037,325.423365837382,5,10 +319.458734015705,1994.90516530794,0.301609447047761,22005.0564181611,94270.605474556,24707.6694626458,7868.68454224389,34786.201282124,0.085684502002205,50.8692251617365,14,24 +3274.50553012801,118.777942395616,0.919902594901679,17587.8974010512,123879.710979126,19021.0392327617,6057.65580661201,45712.0704720022,0.261335964460704,521.418078045861,5,5 +2616.65125627556,769.387410085717,0.867504828734715,8442.84079990601,217003.917445582,31856.9470060107,10145.5245242072,80075.2462898826,0.246450235435999,416.664212782733,8,5 +3565.13994893243,2183.09564754248,0.368073096330419,16352.1853013644,27649.2986727443,813.24295313892,258.99457106335,10202.693237175,0.104566220548415,567.697444097521,0,8 +3293.28765046419,1755.99827087047,0.503303354247678,11949.5183167729,7834.99428195211,23989.163659268,7639.86103798344,2891.14180145834,0.142983907456727,524.408861538884,10,24 +2375.74742040253,556.781118288974,0.266185724480896,2129.12393018962,173403.89210455,7714.58492090582,2456.87417863243,63986.6760533395,0.0756209444548,378.30372936346,18,2 +1502.74896396958,1166.73796600797,0.744115423061095,14138.5492137822,265618.916769107,16388.5576861922,5219.28588732236,98014.3604314048,0.211396427005993,239.291236300888,18,9 +2145.52373963055,314.014698910227,0.0715995631729,18167.4494787909,159463.783169183,39194.5326037517,12482.3352241247,58842.7244166727,0.020340784992301,341.643907584482,11,13 +3165.11972608202,183.512393359064,0.399909965117021,22100.9150567692,286133.199160368,586.845224710697,186.893383665827,105584.206332239,0.113610785544608,503.999956382487,6,11 +323.415236484085,1967.34123071726,0.78478827196977,22736.3160145751,222817.003674418,9312.44144199592,2965.74568216431,82220.2965588258,0.222951213627776,51.4992414783575,12,0 +330.20656704898,450.039900025599,0.299032147704787,18171.4244896876,243737.109093142,34381.7023313098,10949.5867297165,89939.8926542959,0.08495231468886,52.5806635428312,4,18 +1174.34838300055,2309.5805402196,0.717353661317123,10357.6486925676,4456.6473291205,22903.2005397285,7294.01291074156,1644.51930963856,0.203793653783274,186.998150159323,17,8 +21.3011967562525,204.760815351555,0.08504554917476,3607.5651349516,213241.01212425,26738.9410425953,8515.58631929787,78686.7203410517,0.024160667379193,3.39191031150518,5,4 +705.912662283908,194.624052025703,0.873264501126516,17694.3874640422,18269.6980064694,11991.8119696082,3819.04839796439,6741.58598024701,0.248086506001851,112.406474885973,0,18 +844.750378360762,3152.08354008219,0.23088677652134,9211.44415679112,151975.707863747,35585.5193171253,11332.9679353902,56079.5969976926,0.065592834239017,134.51439145872,18,23 +2031.53084811544,3514.49203913862,0.74765608382911,5165.20081805237,185210.129699422,14680.4127680157,4675.29069045086,68343.2212912996,0.212402296542361,323.49217326679,1,7 +2895.47460672942,220.372661420452,0.498684226478374,13224.739909674,48822.7629333838,30101.0823425688,9586.3319562321,18015.7796802154,0.141671655249538,461.062835466468,4,11 +249.843017727004,3663.69143346279,0.320851831884072,17044.9162432084,156446.068929057,19730.192535233,6283.50080739904,57729.1767265893,0.09115108860343,39.7839200202236,13,15 +3117.31558905711,2847.41788524906,0.781647640242723,22401.1410990777,90144.1455235628,13006.1616245863,4142.08968935869,33263.522333418,0.222058988705319,496.387832652406,11,20 +1322.7753258018,2348.40363496869,0.170857293443999,283.634980216853,115250.334700679,13007.3264995584,4142.46066864917,42527.7987825384,0.048539003819318,210.633013662707,7,23 +136.175462672818,110.383496687812,0.34256508464705,20897.8712280825,181301.425992177,36056.232569616,11482.8766145274,66900.8952000653,0.097319626320185,21.6839908714678,1,0 +1072.88033869547,428.911857291882,0.564675891130979,11136.8696424362,268486.990911292,13008.767662645,4142.91963778503,99072.6903731705,0.160419287253119,170.84081826361,5,17 +2422.53488115364,141.804905921462,0.971260192538172,15773.2183889486,18101.6408001772,16912.4508940896,5386.13085799032,6679.5722509879,0.275926191061981,385.75396196714,17,17 +3076.52418603592,1784.96559753946,0.202990383934522,7159.37982270047,65945.0297303023,15500.9821518955,4936.61851971194,24333.9593100746,0.057667722708671,489.892386311452,10,0 +3680.03088418637,2146.65539422807,0.044290356556407,24307.817683454,152551.742569065,12359.6223580272,3936.18546433987,56292.1559295443,0.01258248765807,585.992179010568,7,18 +1952.61518293991,1898.07540342483,0.76383688092806,11456.8195678082,3435.9952238394,16970.3845740844,5404.58107454917,1267.8949165459,0.216999113900017,310.925984544572,11,15 +312.378545550243,1946.20471163975,0.182169469871657,5947.07186509493,67232.5653928552,1683.39400301387,536.112739813334,24809.0647206108,0.051752690304448,49.7418066162807,6,5 +2269.15918429113,128.221568419505,0.705533976821323,19790.4117395921,12182.0981229756,21006.2763467934,6689.89692573038,4495.23915976959,0.200435788869694,361.331080301135,8,9 +2809.05081420806,3559.12298548656,0.022387858530876,3775.6775238601,200883.279576089,15530.6452112279,4946.06535389424,74126.6714302911,0.006360187082635,447.301085064978,2,24 +1356.64774042881,818.28992958896,0.157140644206001,18473.5850407123,41241.9901600447,20160.5763774958,6420.56572531713,15218.446553522,0.044642228467614,216.026710259365,2,15 +2206.27550126414,2419.374819461,0.300402070504033,1564.37875186039,254406.272471973,4481.16635525963,1427.12304307632,93876.8533106911,0.085341497302282,351.317754978366,15,10 +2282.13357608259,2182.38617544508,0.334263848630466,17352.4039326171,28014.7584733686,33018.5150654204,10515.4506577772,10337.5492521655,0.094961320633655,363.397066255189,6,9 +3505.79234744932,635.493409474315,0.060510487969018,1678.60665011916,8548.05609584638,25600.2919434279,8152.9592176522,3154.26424200973,0.017190479536653,558.247189084287,19,6 +3318.14973525934,906.802918317258,0.574655959417033,20708.5482202484,186309.557798205,26080.7725250189,8305.97851115252,68748.9143166808,0.163254533925293,528.367792238748,11,15 +2265.13659678661,1557.83146328766,0.205025130495511,13933.4258142798,244142.815686457,10923.3023505101,3478.75871035353,90089.5998843015,0.058245775708952,360.690540889588,4,12 +3672.46389747109,1155.63219202445,0.816630222336281,6811.4676081781,209836.212194748,34629.7977092115,11028.5979965642,77430.3366032281,0.231997222254625,584.787244820237,19,16 +2819.95025590504,2330.03666884075,0.295230857831741,4995.32134974011,52055.4787076613,2495.80962076541,794.843828269239,19208.6637297643,0.083872402793108,449.036664953032,11,20 +941.731685293003,3696.60106209885,0.912109368842272,3517.76755573899,133619.364690724,27750.4762772092,8837.73129847427,49306.0386312635,0.259121979784736,149.957274728185,0,3 +128.600161511361,3679.80979494675,0.797460586764277,8533.37409235518,180741.461132043,876.072143496202,279.003867355478,66694.2661003849,0.226551303058033,20.477732724739,17,21 +2720.91811832319,2843.0960531839,0.385610944826169,21242.2166548218,55186.5627279525,10353.4806341429,3297.28682616016,20364.0452870673,0.109548563871071,433.267216293502,7,17 +1284.47413230868,3863.13018750407,0.8538903397021,15317.2685348216,203884.400310645,16180.3206991244,5152.96837551732,75234.0960555886,0.242582482869915,204.534097501382,11,13 +2334.2940709427,803.751750089919,0.38016950559953,2047.07607483146,43810.3172891289,21514.8158360359,6851.8521770815,16166.168741376,0.108002700454412,371.702877538646,15,22 +1682.75223861913,3398.07472751844,0.608816117699202,22431.7666567256,111877.218391957,15732.9001810768,5010.47776467414,41283.1064176963,0.172959124346364,267.954178124065,14,24 +2657.34840921452,1121.58416586829,0.820636417315389,14545.9593704228,141081.754821559,31387.0940510934,9995.88982518898,52059.6881260365,0.233135345828236,423.144651148809,0,5 +1248.41350751028,3431.23747796005,0.537976282534198,17969.0176425562,132795.300014169,10603.5990875413,3376.94238456729,49001.9557247856,0.152834171174488,198.791959794631,11,11 +3546.91081492038,2215.52830723408,0.701595577205328,1853.12762391105,105036.702347434,22591.6385923116,7194.78936060879,38758.9307555107,0.199316925342423,564.794715751653,0,13 +2756.70175608661,3444.57999233265,0.759778589882782,20854.3606222892,17447.2776635105,35101.3597953081,11178.7770048752,6438.10983893376,0.215846190307608,438.965247784492,2,20 +3935.88678505364,3104.05873748202,0.020040872425716,24737.7135933081,251905.501648957,15287.4397260015,4868.61137770748,92954.0596490616,0.005693429666397,626.733564498987,10,9 +3039.81990833724,2677.56277441125,0.637535665081508,17450.9453025865,70255.5354897845,41497.948532644,13215.9071760013,25924.5518412489,0.181118086670883,484.047756104656,8,19 +544.61317958729,3611.39504724477,0.68925849474647,14653.1492575822,172271.292114766,258.368153475219,82.282851425229,63568.7424777734,0.195812072371156,86.7218438833264,16,24 +663.297956644951,2814.5635303178,0.432757988363275,20673.9679620198,104132.622798549,39813.0515086236,12679.3157670776,38425.3220658852,0.122942610330476,105.620693733272,10,14 +1557.89667130909,2501.82181503344,0.810202652638949,8847.0458677331,78057.3488372382,31808.1383594148,10129.9803692404,28803.4497554385,0.230171208136065,248.07271836132,0,7 +3648.93016528574,2857.14066668261,0.019435053080573,1264.66854779821,223781.231690023,27839.8016257161,8866.17886169302,82576.100254621,0.00552132189789,581.039835236583,11,5 +3828.52432492665,2769.31118402272,0.884907666038525,8859.63367048838,76993.3699339665,23911.1406706101,7615.0129524236,28410.8376140098,0.251394223306399,609.637631357747,4,8 +3299.05088950587,2553.39692125507,0.571255751320416,12589.3911305726,191570.780487175,36963.5210636808,11771.8219948028,70690.3249030166,0.162288565716027,525.326574762081,2,16 +1988.27896696716,3928.33978074274,0.301268715329301,16187.4661193211,200969.933870465,12097.3742471802,3852.6669577007,74158.6471846734,0.085587703218552,316.604931045726,8,15 +1287.5345222461,2926.18187022277,0.77893561271701,11427.8784378922,85520.8419747781,18793.3303920552,5985.1370675335,31557.5062637558,0.22128852634006,205.021420739825,10,23 +399.679373473799,541.848134426101,0.41342635136784,19066.6257579427,261583.436269026,6800.70739760296,2165.83038140222,96525.2532358029,0.117450668002227,63.6432123365922,1,5 +2486.67494073527,707.99115942159,0.730405995365519,1298.08485360408,206472.933513409,4.49993566252069,1.43310052946519,76189.2743591915,0.207501703228841,395.967347250839,5,6 +2089.76849555853,3358.14871903948,0.056058599331707,4714.67507998201,228633.645615563,823.369523107855,262.219593346451,84366.6588987317,0.015925738446508,332.765684006135,15,16 +872.304305070448,3084.28589513258,0.111610387875275,2526.65791735634,111106.500590826,24331.8166639744,7748.98619871796,40998.7087051019,0.031707496555476,138.901959406122,10,3 +3430.11075950446,3647.66380086362,0.61866428606596,1715.27884226003,66270.016725556,99.668261457635,31.7414845406481,24453.8807105373,0.175756899450557,546.195980812812,18,10 +1734.40819491498,506.634941445281,0.939163416427938,23692.1059059578,191513.022518947,17467.3412967767,5562.84754674417,70669.0119996114,0.266807788757937,276.179648871812,11,4 +22.6671953388157,3240.80473373243,0.472571057939524,2755.57773315224,97751.8248787823,848.259228597402,270.146251145669,36070.7840881115,0.134253141460092,3.60942600936556,12,24 +3513.38039766215,1296.02145556114,0.339165263547806,927.388308524157,66030.9505177028,43899.3420121013,13980.682169459,24365.6643976763,0.096353768053354,559.455477334737,9,0 +2523.0279855214,1922.44549101329,0.54487255830871,5351.92226388114,275351.858930623,17159.3681884523,5464.76693899755,101605.85200392,0.154793340428611,401.756048649904,19,15 +827.614870724192,690.964816866963,0.06718284123137,2873.90179222566,167346.583543415,6692.62076625303,2131.40788734173,61751.5068425886,0.01908603444073,131.785807440158,19,4 +1617.99366567152,1687.09166871945,0.878900598916852,24972.5172916274,207500.466160675,2168.49743939583,690.604280062366,76568.437697666,0.249687670146833,257.642303450879,10,21 +3204.55939701634,605.071644295187,0.658264470840623,13017.2875502148,40766.2469851909,37676.3022017885,11998.8223572575,15042.8955664911,0.187006951943359,510.280158760564,1,2 +2982.79784143166,3746.00398183161,0.849443166908206,17109.9628381609,258909.462684975,25398.8757186113,8088.81392312462,95538.5471162269,0.241319081508013,474.967809145169,15,15 +566.563426835237,2284.77155098603,0.267459217620601,19075.6296634744,90620.5771178755,38546.4736075418,12275.9470087713,33439.3273497696,0.07598273227858,90.2171061839549,7,2 +1337.89566339843,3585.55263621679,0.916133546878072,10974.831926996,160243.315396044,18197.6851845128,5795.44114156459,59130.3746848871,0.26026521218127,213.040710732234,12,3 +2529.43900687547,1179.77545188875,0.503207854805313,11793.8126089918,189518.079631524,43220.4999818626,13764.4904400836,69932.8707127395,0.142956776933328,402.776911922846,9,17 +786.408323679801,63.6354873531037,0.057705492822155,17862.2865436542,86014.1967334317,619.177230195221,197.190200699115,31739.5559901962,0.016393605915385,125.224255363026,14,2 +1017.73771968502,3671.36249334224,0.638128052379874,20066.48023712,106133.862919605,13599.2560076321,4330.97325083825,39163.7870552048,0.18128637851701,162.060146446659,18,4 +3383.76327279017,897.506516049413,0.012409231927559,20068.7832404599,9486.2249436846,14011.3396281076,4462.21007264573,3500.4520087397,0.00352534997942,538.815807769135,13,14 +1246.24255919084,2124.90516361001,0.71338826808349,11625.0489127404,149815.603296342,30242.5464513242,9631.38422016694,55282.5104414546,0.202667121614628,198.446267387076,19,20 +1043.61024671264,3645.74386921311,0.902555561903799,16619.9042331422,115039.06225361,31870.0782742712,10149.7064567743,42449.8384699668,0.256407830086306,166.179975591185,12,15 +1155.83308787627,2842.500455298,0.462993214688953,17185.6071006851,125126.491106131,8871.92480076133,2825.45375820424,46172.1369395317,0.131532163263907,184.049854757368,12,3 +2296.71751262479,3115.64784338482,0.623680826247375,2299.53221545375,149363.870239139,38793.3516192853,12354.5705793902,55115.8192764351,0.177182052911186,365.719349144075,14,13 +2017.76469356784,2536.88074272619,0.529054645766919,14154.834270176,211181.414654095,35718.655372289,11375.3679529583,77926.7212745738,0.150299615274693,321.300110440739,2,17 +2173.81496829266,1086.44424258945,0.14664919436726,9833.01857245535,230188.827006248,30848.592715921,9824.39258468822,84940.5265705712,0.041661702945244,346.148880301379,6,2 +2225.19145398173,97.5494289077957,0.849486177668442,5049.05483041878,196549.876127543,3566.68868869732,1135.88811741953,72527.629567359,0.241331300473989,354.329849360148,11,8 +3170.72950935717,1396.34234335177,0.70957318515449,4641.37986685051,127956.294627975,32924.2099214823,10485.4171724466,47216.3448811716,0.201583291237071,504.893233974072,14,1 +1363.93763150764,1345.75828881405,0.657837364313423,19818.0660599242,112941.758684145,20638.5814104375,6572.79662752787,41675.9257137066,0.186885614861768,217.187520940707,1,8 +3417.63917336513,1908.34592112001,0.417778530766339,6664.58715156431,245204.322281978,37669.875169253,11996.7755316092,90481.2997350472,0.118687082604074,544.210059453046,14,11 +1811.42054845602,3297.56127026793,0.73231704791891,11755.1546265392,272118.188257672,25014.9439873274,7966.54267112338,100412.615593237,0.208044615886054,288.442762492997,0,14 +2446.87866082472,2141.44459313028,0.982775780465164,14938.1299095167,261402.512071984,23425.126159631,7460.23126102898,96458.4915394775,0.279197664904876,389.630360003936,10,13 +3352.72083865743,1908.0932372434,0.170530266929274,8655.91163144618,280236.657282329,18336.9155824872,5839.78203263924,103408.360620786,0.048446098559453,533.872745009145,15,12 +3924.41297720274,1334.87944176446,0.265714139998884,7727.45584699928,80219.2093110458,24648.3908421781,7849.80600069366,29601.1842476184,0.075486971590592,624.906525032283,14,6 +2774.90892158423,1078.17812249398,0.178710402431881,11362.5699323024,136637.747881304,10533.504370941,3354.61922641433,50419.8331665328,0.050770000690875,441.864477959272,7,17 +1303.46146189677,2828.10585459678,0.140364680242375,15953.5962176618,231573.030824976,15640.7204702095,4981.12116885653,85451.302887445,0.039876329614311,207.557557626874,3,19 +3066.99082448623,916.79850915625,0.306137145145449,10504.3149135279,163004.367743428,29820.4963428511,9496.97335759589,60149.2131894568,0.086970779870866,488.374335109272,15,11 +1649.09737932496,3565.65360533064,0.121614546284447,16341.1805130913,145327.739316904,32711.6984412459,10417.7383570847,53626.4720726583,0.034549587012627,262.595124096331,4,7 +2865.54242503465,1010.62606799171,0.087342979386751,22552.2541483651,48569.1251638577,44783.8784321533,14262.3816662909,17922.1864073276,0.024813346416691,456.296564495963,3,17 +2155.55536334067,191.115341707169,0.719710694958027,14748.0387388172,276685.350465892,43825.8316684022,13957.2712319752,102097.915301067,0.204463265613076,343.241299895011,7,13 +1173.70066560843,3013.7401570376,0.956078884094758,24139.0205823096,171238.597019438,30284.3036486033,9644.68269063799,63187.6741769144,0.271613319345102,186.895010447202,0,1 +3474.53606929372,3037.68396392858,0.361291915578662,10908.2297542341,41310.7388579489,43853.2128355473,13965.9913489004,15243.8150767339,0.102639748743938,553.270074728299,5,18 +666.81628708856,2670.67201651444,0.157214615487703,20218.3781706649,64111.7286500811,44208.9647837228,14079.2881476824,23657.4644465244,0.044663243036279,106.180937434484,1,5 +2186.88349025104,840.726220878426,0.757992770796136,17277.3419504687,255184.313438436,30096.2006957426,9584.77729163777,94163.9532983159,0.215338855339811,348.229855135516,18,9 +1088.26907652768,3102.32059612045,0.675534263811577,22376.6744698899,81311.5619705359,32686.7881746333,10409.8051511571,30004.2664097918,0.191913143128289,173.291254224153,2,11 +2557.69745268132,3403.45395195965,0.264221063355132,1271.32934181655,47127.7253403233,19252.7053872542,6131.43483670516,17390.3045536248,0.075062802089526,407.276664439701,1,18 +369.757047259707,1888.17077861905,0.15781640116589,12771.930771894,187363.074750993,19059.4661321613,6069.89367266283,69137.665959776,0.044834204876673,58.8785107101444,13,8 +1903.87836076452,1826.30133077868,0.813034525421565,1845.79463937784,195933.474351177,13094.9178779734,4170.35601209344,72300.1750373347,0.230975717449308,303.165344070783,17,4 +840.748804375128,3076.15501805157,0.968839649086141,7566.37365566041,286155.534572659,9139.46859632806,2910.65878863951,105592.448181793,0.275238536672199,133.877198148906,15,2 +3972.64992997849,1155.0217665713,0.006898124708595,10693.3547455107,123348.531142748,41527.7807878923,13225.4078942332,45516.0631523055,0.001959694519487,632.587568467912,10,3 +2043.4634148918,2564.27633820884,0.660364302306484,19103.2325649154,164603.629046908,42695.1476996907,13597.1807960798,60739.3465117742,0.187603494973433,325.392263517803,19,7 +1013.75302011819,2784.37652374261,0.514585929389652,17709.7853804439,43355.8749253778,4750.66166789497,1512.94957576273,15998.4778322427,0.146189184485697,161.425640146209,16,21 +1408.510277028,3574.0662741012,0.360065832913448,12922.6906680447,262660.201407978,34278.2553602221,10916.6418344656,96922.5835453793,0.102291429804957,224.285075959873,4,3 +1541.85170615079,3948.78970910562,0.467163749165968,16636.4021606827,200712.752301196,33606.5457682266,10702.7215822378,74063.7462366037,0.132716974194877,245.517787603629,18,7 +2875.70327302105,703.539707468683,0.767084895548464,3685.06437531213,85603.1443524946,31836.8882884174,10139.1363975852,31587.876144832,0.217921845326268,457.914533920549,13,22 +2016.89927228915,3806.20152935145,0.365239940201577,1523.27257129202,27873.7919886284,405.040089430861,128.993659054414,10285.5320991249,0.103761346648175,321.162304504642,4,7 +361.253031561117,3161.28432144587,0.405893890481135,9598.32106432414,126120.904671509,408.910350121374,130.226226153304,46539.079214579,0.115310764341232,57.5243680829804,3,8 +2393.12419035747,3994.77719740164,0.816621003788714,7177.37664899908,286387.211876442,9725.48963133099,3097.28969150668,105677.937961787,0.231994603349066,381.070730948642,8,16 +3897.89642678093,3225.38160968251,0.244964917846321,14584.2968154452,210519.003179545,25871.7374126733,8239.40681932271,77682.2889961421,0.069592306206341,620.684144391868,19,16 +3517.42649531907,807.774811541813,0.678079032769746,2505.73666728821,239048.752605702,4027.49787314143,1282.64263475842,88209.8718102222,0.192636088855041,560.099760401126,19,14 +2893.30763791901,3284.50204342278,0.372947297322912,11359.5080658376,47002.9897615369,21140.7298293936,6732.71650617631,17344.2766647738,0.105950936739464,460.717776738696,1,11 +3399.39209789206,3130.27877165364,0.718796753085571,2181.15056585891,256527.239046473,40383.8303113408,12861.092455841,94659.4978031266,0.204203623035674,541.304474186634,0,4 +2386.1501553232,2687.45436125552,0.121705762052336,3041.06593801978,213273.104137016,14938.6538019599,4757.53305794901,78698.562412183,0.03457550058305,379.960215815796,19,3 +3424.91478109727,1368.70103854763,0.453513233991577,5266.91289013604,247096.146491475,22697.8175208311,7228.60430599717,91179.3898492528,0.128838986929425,545.368595716126,16,14 +3598.63776701316,3788.99552558824,0.035457024912222,11760.8927205761,278876.97994179,9767.96775835612,3110.81775743825,102906.634664867,0.010073018440972,573.031491562605,6,15 +1023.93733784847,3283.17013096366,0.604514038804324,24268.0663405022,78885.0627242436,2869.80173656293,913.949597631506,29108.8792340382,0.171736942842138,163.047346791158,17,19 +1853.30571129225,2931.27957314928,0.321491085156538,9092.05951225259,210244.45755653,10772.6640107504,3430.78471679949,77580.9806481661,0.091332694646744,295.112374409594,15,7 +942.603583360324,2109.26682077074,0.442851196719017,8796.82329341992,185719.799120621,24606.5788470059,7836.4900786643,68531.291188421,0.125809999067903,150.096112000052,2,15 +1419.02833595795,3795.33620205291,0.302059088421418,3865.45427198303,196857.809640971,5773.19779767044,1838.59802473581,72641.2581701,0.085812241028812,225.959926107954,3,0 +2856.0359667817,1095.15872899521,0.59266826751726,19707.8179559959,274279.223704839,14620.7425934364,4656.28745013898,101210.045647542,0.168371666908312,454.782797258233,4,16 +1594.93117404421,3366.76567415404,0.669184678957163,18559.7876067971,141549.042742741,24063.9145222719,7663.66704530952,52232.1190932624,0.190109283794649,253.969932172645,13,24 +2517.52448280146,2000.44572343536,0.028933436605048,12917.8744001414,35649.2618564613,4099.39212894449,1305.53889456831,13154.7091721259,0.008219726308252,400.879694713608,13,16 +86.3445735903846,3010.3548894691,0.407617339018964,3762.26107711556,237497.243316992,38978.3273214425,12413.480038676,87637.3591575616,0.115800380403115,13.7491359220358,10,20 +1137.70102800617,625.551699732256,0.366000004535074,2959.70716011488,148298.626171831,6728.08519988943,2142.70229295842,54722.7402848085,0.103977274015646,181.162584077416,2,21 +3732.79534815814,13.5325129153002,0.780466990066451,9235.9400530457,6391.86994813815,30201.4389465183,9618.29265812685,2358.62359709895,0.221723576723424,594.394163719449,5,24 +1489.68603597707,1501.82689925574,0.39315147325401,23543.5033098773,37165.2112260622,28766.8429195143,9161.41494252048,13714.1000834178,0.111690759447162,237.211152225648,13,23 +2231.51488566389,2341.60118471909,0.087053041415929,3939.54112111508,57570.3258139628,30498.3911488313,9712.86342319468,21243.6626619789,0.02473097767498,355.336765233103,11,5 +2572.43043681943,3556.2149167055,0.897814452472642,10439.5719061465,275746.485344759,16743.793759526,5332.4183947535,101751.470606922,0.25506092399791,409.622681022202,13,1 +2373.77454042544,1472.77765380495,0.180868201390619,11826.35049007,220287.155561074,19446.3709612578,6193.11177110121,81286.773269769,0.051383011758699,377.989576500866,14,2 +3331.9978210611,3582.14132709835,0.015345067861126,3842.60510675641,171985.381079103,4754.13307063284,1514.05511803594,63463.2402505915,0.004359394278729,530.57290144285,5,25 +3131.20703820119,2825.76251676904,0.232075094196998,7365.11492724138,259030.372237076,4885.11588605132,1555.7693904622,95583.1631871129,0.065930424487784,498.599846847323,1,25 +917.587131756973,1161.04834888652,0.516762797107648,1259.9276791183,240166.675781657,18771.1193844067,5978.06349821869,88622.3895873273,0.146807612814673,146.112600598244,8,16 +3.86870457028468,1503.39937463847,0.272839733925782,13198.0802368165,93108.1738027161,15994.5310242744,5093.79968925936,34357.2597057993,0.077511288047097,0.616035759599471,14,4 +1357.43625395509,3601.60447519431,0.808424231631505,7694.15177436767,2993.59705162849,21666.1405219912,6900.0447522265,1104.6483585345,0.229665974895314,216.152269738072,10,18 +582.827259488261,2215.05715500366,0.588276227534798,17501.1502384576,271104.29237945,42229.4932858283,13448.8832120472,100038.48427286,0.167123928276931,92.8068884535447,14,8 +2129.1825470841,1217.90629740836,0.315538671735321,6297.38177695019,253597.582923181,4972.72612772575,1583.67074131393,93578.4438830926,0.089641668106625,339.041806860525,4,12 +1051.15881649482,2280.82244037674,0.826746353230188,17157.7310538252,127494.002552762,16166.5798186121,5148.59229892105,47045.7573995432,0.234871123076758,167.381977148857,19,16 +3251.20708198792,1496.93812128137,0.102698689276432,16594.2138281317,43050.7715579388,23693.5050643047,7545.70224977857,15885.8935638151,0.029175763998986,517.70813407451,6,15 +3710.785100482,3730.54624407954,0.114421339673399,3241.87467480933,213489.708724952,27156.5174981237,8648.57245163175,78778.4903044103,0.032506062407216,590.88934721051,15,16 +2720.44838895158,1951.64020989882,0.189178136710571,13084.8821990052,32535.0532685007,31770.4014337544,10117.9622400492,12005.5547116239,0.05374378883823,433.192418622863,0,13 +759.140009916999,3820.95752331391,0.407760396802191,3803.2177599842,194909.260638736,35154.6067054659,11195.7346195751,71922.2363980576,0.115841021818804,120.882167184236,19,22 +3844.10610636904,556.713774978689,0.083754787273471,14031.2680936227,221601.113956434,11875.9761780694,3782.15801849344,81771.6287662118,0.023793973657236,612.118806746662,14,0 +1138.90139826479,887.705531028067,0.83543678813376,23885.2588013648,237592.62109187,15858.8051211384,5050.57487934344,87672.5539084391,0.237339996628909,181.353725838342,9,24 +3884.62955025207,1324.07590165376,0.116832375006732,11319.5944772601,264892.721267197,14647.8049389052,4664.90603149847,97746.3916115118,0.033191015626913,618.571584435043,3,12 +1926.97744720197,1897.91300310393,0.846540482322267,2103.10865014212,94256.4830857343,8762.83303423378,2790.71115739929,34780.9900685366,0.240494455205189,306.843542548084,0,1 +3623.02249656205,630.190488480829,0.353288551364848,13394.5947891585,169755.577718139,29538.8455447438,9407.27565119229,62640.4345823391,0.10036606572865,576.914410280581,8,0 +67.3013871651891,281.923163304456,0.01200939832857,5254.30256714161,54784.4037726612,19567.4727431642,6231.67921756822,20215.6471485835,0.003411760888798,10.7167813957307,16,11 +3200.24491819613,2807.40774021142,0.930899114397701,11484.2967177116,94814.2983834018,4709.52990505895,1499.85028823533,34986.825971735,0.264459975681165,509.593139840148,5,15 +405.346239775591,3836.09962379653,0.932849053441247,22865.5126581231,243073.690799883,41339.635180035,13165.4889108392,89695.0888560454,0.265013935636718,64.5455795821005,16,9 +3936.22332049509,1145.78473985952,0.007191196719756,5147.8432600037,63855.4259087754,33375.8040099014,10629.2369458285,23562.887789216,0.002042953613567,626.787152945078,17,3 +3511.83890039899,1794.98455574011,0.061114980244731,10071.4702385555,6143.88739165713,17331.5686711115,5519.60785704188,2267.11711869267,0.017362210296799,559.2100159871,4,11 +3064.2379324821,3038.21512963797,0.318316069552776,18806.2364499601,122718.339980669,12023.6127287375,3829.17602826035,45283.5202880697,0.090430701577493,487.935976509889,17,6 +3079.57092547227,746.883610486037,0.44464700393645,18800.6175388583,175131.700933601,36180.8030272051,11522.5487347787,64624.2438869376,0.126320171572855,490.377535903228,0,18 +2158.51092882348,2777.97160023386,0.369658062219712,14617.7419109911,15124.9610493767,8880.94911617635,2828.32774400521,5581.16643888439,0.105016494948782,343.711931341318,8,12 +1872.225475251,2862.1933351404,0.662306233951862,4697.03454337713,243833.179233751,18762.5027285491,5975.31934030226,89975.342890683,0.188155180099961,298.125075676911,7,10 +2194.80658034256,1700.4892900979,0.405844459648355,23080.9569852927,56260.9953248365,4859.43057728037,1547.58935582177,20760.5148800135,0.11529672149101,349.491493685121,10,6 +1273.8730125487,3834.97590447236,0.695436696323135,7971.89978125924,206102.748571642,25149.9005892629,8009.52248065697,76052.6747496834,0.197567243273618,202.846021106481,2,5 +2088.59338851441,1959.0219865656,0.440870633307749,3032.75994791529,54332.4015092686,21731.9631737884,6921.00738018739,20048.8566454866,0.125247339007883,332.578565050065,3,2 +2183.13497579202,1010.12306957362,0.754579690096955,1804.29790690261,115744.922351712,30761.376796021,9796.61681401943,42710.3034508162,0.21436923014118,347.632957928666,7,12 +2664.75622542342,246.867159722233,0.311401279988898,15375.811044349,257354.123952611,10408.4882850279,3314.80518631462,94964.6213847273,0.088466272724119,424.324239717105,15,15 +392.653596835718,1795.83657910425,0.701477849057536,18671.7405671043,8945.04509454782,21672.154727764,6901.96010438344,3300.75464743462,0.199283479845891,62.5244580948596,13,21 +937.674933320118,2945.00504671249,0.141934402272139,15371.4618276787,108396.483174389,33397.5099844351,10636.1496765717,39998.7022783723,0.040322273372767,149.311295114668,11,10 +2622.99451646213,2237.09871314458,0.097809225442991,5840.63101836005,263848.325837414,39660.6546600362,12630.781738865,97361.0058440642,0.027786711773577,417.674286060849,15,7 +2791.24020996157,1650.50538101518,0.726236757042272,2181.37616041538,180280.129001059,18492.634425457,5889.37402084618,66524.0328417192,0.206317260523373,444.465001586237,17,6 +2180.24284607756,335.573934174531,0.279198707008714,3593.58263806077,5836.82875559022,30709.870561834,9780.2135547242,2153.81134892628,0.079317814491112,347.172427719357,13,15 +1133.91049915617,3573.43359597716,0.321321438152719,5459.13783542423,80477.1726032824,33873.7046006955,10787.8040129604,29696.3736543477,0.091284499475204,180.558996680919,16,22 +1190.12539926747,2648.26799676874,0.706246771813139,10663.0956574921,188392.601849079,20807.2956364033,6626.52727273991,69517.5652579627,0.200638287446914,189.510413896094,4,20 +36.2503900061206,2574.66874363067,0.632063954938294,20807.4843105921,205322.459136415,25365.5931547675,8078.2143804992,75764.7450687878,0.179563623562015,5.77235509651602,12,21 +185.853076735934,3219.57219817801,0.050709597783575,12714.9020235593,97664.4324265791,32297.09754096,10285.6998538089,36038.5359507672,0.01440613573397,29.5944389706901,14,7 +2602.04877656087,3799.15468805145,0.217948217787291,6262.68208237312,73373.7289224648,5008.81112809326,1595.16277964754,27075.1767241567,0.061917107325935,414.338977159374,8,23 +28.1399072339842,525.955422838324,0.266914631146289,23858.0785022001,284902.953882449,3144.47792139183,1001.42608961523,105130.241285037,0.075828020212014,4.48087694808666,2,6 +1692.8151455257,3187.95807506051,0.355934620376359,19269.2185407799,215152.382774164,40261.6140473341,12822.1700787688,79392.0231638981,0.101117789879647,269.556551835303,19,16 +200.364954565064,3842.09300797558,0.738922620191756,552.408217595498,237467.060253556,10935.2216350694,3482.55466085013,87626.2214957771,0.209921198918112,31.9052475422076,16,12 +3055.40210637966,3448.50364064231,0.588559114067165,17891.6935696356,237939.927945379,10586.2578262097,3371.4196898757,87800.711418959,0.167204293769081,486.528997831156,4,13 +2791.67326875136,838.140276781829,0.612113676126369,812.298817165893,102255.705439153,35797.8984730535,11400.6046092527,37732.7326343738,0.173895930717718,444.533959992255,11,2 +696.912143892016,3878.6513082104,0.860974770124709,23811.4352435349,160432.506777475,43078.5311258244,13719.2774286065,59200.1870027583,0.244595105149065,110.973271320385,10,6 +3025.20180917212,2593.44896090772,0.184899289740069,13666.6760774821,279686.250504347,4169.9304250036,1328.00332006484,103205.258488689,0.05252820731252,481.720033307662,13,19 +1405.29730913409,3305.0871750987,0.065119728777921,12797.579278367,118290.083628487,10996.5760752322,3502.09429147522,43649.4773536852,0.018499922948273,223.773456868486,2,25 +925.308486268583,227.677893134714,0.143045317514799,1903.69533007329,95500.4668718731,38108.2279934235,12136.3783418546,35240.0246759679,0.040637874293977,147.342115647864,12,14 +1634.82456291582,2451.72471084214,0.155195937507812,11810.5412435423,31312.8079213359,37931.034828454,12079.9473975968,11554.5416683896,0.04408975497381,260.322382629908,2,3 +466.433819698886,1269.17218507737,0.836800932166751,19515.7417854746,213582.199475338,2082.20490928081,663.122582573506,78812.6197325971,0.237727537547372,74.2729012259373,15,20 +460.133423111084,3439.07908575937,0.572543868516675,13995.6819943793,275921.358539963,6570.29645405618,2092.45110001789,101815.999461241,0.162654508101328,73.2696533616376,14,11 +1788.0979837236,1514.1655323465,0.235580882880115,2736.02350211621,230205.995331931,21266.0310758618,6772.62136173943,84946.8617461,0.066926387181851,284.728978299936,2,6 +2525.84459447369,2552.83609283381,0.296659595300844,15450.675656567,158241.434864541,43735.9606873541,13928.6499004312,58391.6733817495,0.084278294119558,402.204553260142,4,5 +505.151727176925,199.349422694274,0.934005604109294,12191.2524373734,261078.962843309,33585.3409392243,10695.9684519823,96339.1006801878,0.265342501167413,80.4381731173448,14,1 +2086.20986538559,442.073713166119,0.318834494857501,22340.0211329603,249436.580954053,33359.8023841784,10624.140886681,92043.0188022336,0.090577981493608,332.199023150572,6,22 +1369.30976983687,1264.56940536089,0.459627396815027,11401.9454673885,154958.496920635,44880.1280490747,14293.0344105333,57180.257166286,0.130575965004269,218.042956980393,19,4 +1149.91907048127,3061.96708773141,0.255126972260613,5758.92860399035,51914.6040847236,36849.5437939593,11735.5235012609,19156.6804740678,0.072479253483129,183.10813224224,9,2 +2567.07338049891,3266.42117656903,0.211319452937752,19178.9282153511,184080.32718519,32496.2905699868,10349.1371241996,67926.3199945351,0.06003393549368,408.76964657626,14,19 +2682.67359779765,1485.24136869263,0.658926576787748,7617.35838839052,158645.384286874,22069.3389755159,7028.45190303054,58540.7322091786,0.187195050223792,427.177324490072,1,1 +2020.51690627138,2757.14651589174,0.466148420375263,6393.5294374044,283266.951621695,7585.05469310477,2415.62251372763,104526.55041391,0.1324285285157,321.738360871239,3,6 +0.91191492710144,1606.49474442733,0.669236253018726,13388.5751023748,232360.709970298,847.388938131669,269.869088576965,85741.9593986339,0.190123935516684,0.145209383296408,9,7 +2056.92149964232,3882.58406787797,0.286572699612951,7548.82447939719,163.765660552059,25448.3922886403,8104.58353141411,60.4301330450402,0.081412698753679,327.535270643682,19,2 +3766.55904829816,716.703091116312,0.03243110378792,12206.8890408804,161921.17733665,18069.3564390031,5754.5721143322,59749.5119323432,0.009213381757932,599.770549092064,10,23 +1471.12720000377,784.641062847404,0.420802442205156,2254.0449989227,147892.995256573,33160.715736632,10560.7374957427,54573.0609802852,0.119546148353738,234.255923567479,9,17 +1650.85055124906,370.0742795986,0.835921141778842,7500.45677872605,229187.955835034,16517.8838998235,5260.47257956162,84571.2014151417,0.237477597096262,262.874291600169,3,10 +1257.96231773468,3224.75664623389,0.943502161942567,24724.6546956116,208918.505857436,25321.1286612398,8064.05371377064,77091.6995783897,0.268040386915502,200.31247097686,19,5 +2780.08048679683,1816.87485503587,0.63202426912296,307.08237681387,118811.872423516,39593.3391055999,12609.3436642038,43842.0193444709,0.179552349182659,442.687975604591,5,12 +595.924977908021,2864.28143233659,0.960907847725402,21441.1988000523,80002.0360630518,5053.41701496467,1609.3684761034,29521.0465177313,0.272985184012898,94.8925124057358,12,0 +1789.15406994271,2236.87597496418,0.86712051933194,20514.9985053573,189920.571376068,39913.8607792727,12711.4206303416,70081.3916516856,0.246341056628392,284.897144895336,16,20 +1234.55888957579,2131.48005809078,0.03514228134231,13753.9332901218,133341.91434792,527.549768351573,168.009480366743,49203.6584309668,0.009983602654065,196.585810442005,13,22 +2933.10352332305,1492.34307883947,0.802487761101367,7678.40433122926,193319.077331831,27848.7173372677,8869.01826027634,71335.4528899746,0.227979477585616,467.054701166091,12,8 +2914.24112579546,2049.23506749193,0.185235489787091,14601.4674927702,6759.80796420415,20828.0379859277,6633.13311653748,2494.39408273216,0.052623718689515,464.051134680806,15,10 +2971.04927278964,3486.61870082187,0.776130208198572,13232.0741397482,79270.5526021666,30335.7020860433,9661.05161975901,29251.1264214637,0.220491536420049,473.097017960134,19,3 +713.797134713712,2429.97214523738,0.195697992939182,3999.22086359135,286307.350034564,21840.3179814995,6955.51528073232,105648.468647441,0.055596020721359,113.661964126387,17,3 +2024.04888799884,1306.20919630955,0.793731389819695,23077.0665333767,262552.570531448,34687.7063040023,11047.0402242046,96882.8673547779,0.225491872107868,322.300778343764,15,13 +3221.71449224379,1426.37086123334,0.729662038651056,614.131951144245,88698.7136812435,28324.0376729263,9020.39416335233,32730.1526499054,0.207290351889505,513.01186182226,19,1 +530.593768254416,1817.08975410328,0.655785688641766,16548.3203571994,1580.9656094822,31051.7096702792,9889.07951282777,583.382143720369,0.186302752455047,84.4894535436968,16,21 +130.79333740827,3665.57901039832,0.986396227618183,24065.0324289052,122372.460931014,14999.672713108,4776.9658322,45155.8896424406,0.280226201027893,20.826964555457,3,10 +3670.39555382913,844.225146004782,0.870321508878773,15576.4588852766,81294.5830404567,20186.9650929379,6428.96977482099,29998.0011219397,0.247250428658742,584.457890737123,18,15 +1725.09231835301,939.780733706824,0.635756506720337,4159.59154559449,190713.178836351,8120.44401274587,2586.12866647958,70373.8667292808,0.180612643954641,274.696229037103,3,20 +3445.51456505503,3933.84253987642,0.214540191904787,12538.5921662635,273433.720783663,43746.2349781972,13931.9219675787,100898.051949691,0.060948918154769,548.648816091565,3,16 +2061.43702588309,3172.64889182529,0.44571085271455,13898.1644508362,50723.0943447926,12583.1410281734,4007.36975419535,18717.0089833183,0.126622401339361,328.254303484568,15,12 +602.063035022248,901.317118325818,0.07760217172451,22253.7794955381,33812.7640834829,28509.4796132977,9079.45210614576,12477.0347171524,0.022046071512645,95.8699100353898,8,21 +2373.09298182955,2715.24481934309,0.946318393771985,6589.33784648486,248416.634547284,27721.0707718716,8828.3664878572,91666.6548144959,0.268840452776132,377.88104806203,18,18 +22.6700893412463,92.9798205953244,0.978718015844545,7302.31421774457,200685.130415592,7228.20890854334,2301.97735940871,74053.55365889,0.278044890864928,3.60988683777807,3,9 +923.640272762364,743.366629975739,0.549574973360854,18739.3721349642,24461.3107377423,18474.3521427607,5883.55163782188,9026.31392536616,0.156129253795697,147.076476554517,9,20 +2964.11354498848,2241.1660012195,0.56045761829965,3616.15872385086,59420.6018805025,16200.4329414391,5159.37354822901,21926.421358119,0.159220914289673,471.992602705172,17,10 +2649.69176518863,2104.39852576198,0.48602248122494,1584.66971308203,27964.6977134826,18417.3075639619,5865.38457451016,10319.0766470416,0.138074568529813,421.925440316661,15,9 +2545.95334715184,361.912927697744,0.103306725415982,16624.9708431744,194240.084547926,17426.6322771669,5549.88289081748,71675.3079512642,0.029348501538631,405.406583941376,10,14 +2455.5840364042,3101.80074521033,0.611244957152744,2804.48689801262,106446.4214208,41430.8644317374,13194.5428126552,39279.1222954982,0.173649135554757,391.016566306401,19,21 +3961.30998596617,3718.05895656515,0.431152803842968,7502.62912953645,190518.630526177,24605.1001771294,7836.01916469089,70302.0776849362,0.122486592000843,630.781844899072,1,23 +534.67285900744,3621.4842499808,0.007985206413211,906.061081604385,179923.931859741,2380.95291056407,758.265258141423,66392.5947821922,0.002268524549208,85.1389902878089,4,6 +342.043851012371,2628.48114547098,0.380843750964819,179.305046762322,19064.9827169383,15880.0117603018,5057.32858608338,7035.04897303996,0.108194247433187,54.4655813713967,7,17 +963.995806875822,2810.1664196277,0.472627304502048,5171.58870233756,45691.7314535081,21015.8667920983,6692.95120767462,16860.4175105196,0.134269120597173,153.502517018443,5,16 +2623.56438926982,3790.31254886881,0.875448717728624,18972.9241368272,40821.0979884687,15099.0310190984,4808.60860480841,15063.1357891028,0.248707022081995,417.765030138506,15,24 +602.807372062529,1401.77296028095,0.819360131481439,18141.3135564595,100693.192836346,39290.9201201637,12513.0318854025,37156.1597182089,0.232772764625409,95.988435041804,17,1 +2166.14947978576,168.653113558568,0.791849614163808,18957.2445353363,38093.7275129588,31668.8271849654,10085.6137531737,14056.726019542,0.224957276751082,344.928261112382,2,15 +2694.9325709424,3927.28104765061,0.221495968548758,4968.71821011164,18892.6444806087,3773.28796768272,1201.68406614099,6971.45552789989,0.062924991064988,429.129390277452,2,12 +3715.12920511783,940.257702818731,0.951049559715402,16499.9360337693,155892.956541066,13616.7402812288,4336.5414908372,57525.0762144155,0.270184534010057,591.581083617489,11,19 +2236.15232153139,3805.28428285863,0.454008420074735,13453.2117414499,177510.683486109,13640.7329785417,4344.18247724258,65502.0972273465,0.128979664793959,356.075210434935,0,12 +1016.41768863969,2075.09557277706,0.416357232434412,14552.5054783241,194562.779394484,7647.55348535459,2435.52658769254,71794.3835404,0.118283304668867,161.849950420333,4,8 +903.839938484061,1948.38465995373,0.318416995119212,6790.80349649701,249430.787914865,21414.5198349715,6819.91077546863,92040.8811493967,0.090459373613413,143.923557083449,2,7 +1582.24978648063,3218.23179137263,0.449136746614846,51.1265325469451,44719.1814129182,23548.0146525924,7499.36772375554,16501.5429567964,0.127595666651945,251.950602942775,14,19 +2671.53783344639,2036.51875061336,0.037198925109044,9630.23883162949,102402.326682732,18674.7121026861,5947.36054225672,37786.8364142923,0.010567876451433,425.404113606113,19,14 +3094.11304992148,2646.96965286508,0.906471675625636,21884.951907886,155253.560981688,33060.5340524854,10528.8325007915,57289.1368936118,0.257520362393647,492.693160815522,11,22 +2974.0579888866,1690.65033347304,0.608509585824463,18348.8643733216,3468.00001614593,35447.126012911,11288.893634685,1279.70480300588,0.172872041427404,473.576112880032,12,16 +2999.31625164406,2825.55096030917,0.974706647413223,5242.73434784354,70736.4960928617,24275.5132143946,7731.05516381994,26102.0280785468,0.276905297560575,477.598129242685,16,6 +2807.19621683246,2408.46266179383,0.122540179679543,8216.51644326525,193840.851591433,23982.4075076147,7637.70939732952,71527.9895171339,0.034812551045325,447.005767011538,12,4 +2599.04252486234,1408.64177526251,0.433214683447746,18156.9708675974,46307.4087226089,30769.4232111808,9799.17936661809,17087.6046946896,0.123072353252201,413.860274659608,8,11 +1799.39658060887,2743.30446622673,0.47576931270614,22847.5091124691,99330.0463326074,31642.5704637595,10077.2517400508,36653.1536282684,0.135161736564244,286.528117931349,0,16 +1121.90167002104,3437.30386378217,0.077476608200123,13660.5527718155,155275.191123748,24299.3028961937,7738.63149560309,57297.118495848,0.022010400056853,178.646762742204,10,1 +2114.20259728127,1402.36537508126,0.573688112776456,19867.1880590431,176003.003579586,25002.4570590224,7962.56594236382,64945.757778445,0.162979577493311,336.656464535234,9,4 +3678.35581889977,111.296176816747,0.161323172400481,5993.48323662993,163975.914461333,28072.6740895936,8940.34206674955,60507.717513407,0.045830446704682,585.72544886939,2,4 +2596.49310513928,3488.89867331693,0.697860038492252,7795.7551104101,128610.334843651,23816.6856408773,7584.93173276347,47457.6881341886,0.198255692753481,413.454316104981,19,3 +3957.70175203338,1573.26622194041,0.303027846233199,1650.88911326306,158319.213287699,19883.7818970099,6332.41461688213,58420.3739069,0.08608745631625,630.207285355634,14,8 +124.047985235651,2288.14475091641,0.770837041908814,16798.1998931583,30182.5926647824,28006.1980709488,8919.17136017478,11137.4880681854,0.218987795996822,19.7528638910272,19,25 +40.7052598764759,2218.98485179173,0.5515234969379,20314.6904605971,78986.5255863524,16116.4186980911,5132.61741977424,29146.3194045581,0.156682811630085,6.48172927969361,9,17 +140.786042897778,218.952258165779,0.158954139269991,12781.7752990633,279047.764400726,33809.1431967322,10767.2430562841,102969.654760416,0.045157425928975,22.4181596970984,4,22 +2953.55683283429,3183.38452717372,0.553925481021359,21581.7624427039,196578.41552945,16862.4603559917,5370.21030445596,72538.1607119742,0.157365193471977,470.311597585078,17,23 +3186.48923366963,1773.17848220148,0.13879575792965,21795.2495334912,135070.153419869,41549.8248168291,13232.4282856144,49841.3850257819,0.039430613048196,507.402744214909,0,3 +3484.92158441161,300.002873598282,0.026042472852429,18586.0029952427,267388.828252642,11484.7674318696,3657.56924581834,98667.4642998679,0.007398429787622,554.923819173823,6,17 +1719.18065729355,2391.89378196037,0.272484163372219,1307.22160279447,204757.441296034,40486.4449546597,12893.772278554,75556.2514007506,0.07741027368529,273.754881734642,6,6 +753.154637744846,3369.5400271974,0.314401714552499,7096.90396170318,134590.062527759,34129.254769217,10869.1894169481,49664.2297150402,0.08931866890696,119.929082443447,4,15 +2467.77571483357,1313.85871962249,0.472103683230528,18747.8928343902,103922.137890571,278.418366603084,88.6682696188166,38347.6523581443,0.134120364554127,392.957916374772,0,13 +3053.07482988419,970.767022995126,0.047676907452407,17833.7270632204,127988.734261429,10876.6363337545,3463.89692157787,47228.3152256196,0.013544575980798,486.158412401941,8,5 +3886.53575813741,525.163485469155,0.169442361896535,9018.40000171123,227754.348933968,39941.0650032654,12720.0843959444,84042.195178586,0.048137034629698,618.875120722518,15,18 +976.307433238566,610.283511334191,0.193142771080594,21626.64515719,180091.128332439,21353.5073006839,6800.48003206494,66454.290897579,0.054870105420623,155.462967076205,6,23 +2622.6949304539,851.473418473234,0.050363178535222,22650.934820182,119173.968443841,11948.3847721863,3805.21808031411,43975.6341121185,0.014307721174779,417.626581282468,7,1 +3523.53430894395,3870.75903132559,0.01207157460742,18219.6033823649,103038.729231139,32537.5083543661,10362.263807123,38021.6713030033,0.003429424604381,561.072342188527,1,16 +2837.71731985688,2499.98263974296,0.999647295764165,3677.80624190713,121577.846090176,39185.6953219202,12479.5208031593,44862.6738340133,0.283990709023911,451.865815263834,13,6 +268.691395179414,3333.52325779763,0.797535614815427,4962.75664891091,168248.230656595,33333.4444796979,10615.7466495853,62084.2179544631,0.226572617845292,42.7852540094608,5,1 +1168.69459165777,2037.89116521638,0.290945472264021,21900.3029632201,79458.3943695015,32299.552506927,10286.4816901041,29320.4407267533,0.08265496371137,186.097864913658,3,8 +3477.05716517412,3106.44330145696,0.075403768995319,14738.0005095514,111696.349717234,11738.8039914814,3738.47260875204,41216.3652093114,0.021421525282761,553.671523116898,15,1 +1525.77340033812,358.416603232481,0.315908298932007,19935.5389968647,332.973727265982,9267.89164775511,2951.55784960354,122.868534046488,0.089746675832957,242.957547824541,8,22 +2870.52786162989,2644.24768379508,0.294566419238051,9870.96833987643,223099.373530056,37800.3388557351,12038.3244763488,82324.4920775115,0.083683641828992,457.090423826416,11,10 +2774.06253997159,2400.76153982041,0.358537426950602,4981.06427071121,99212.5772105723,10227.6874438449,3257.22530058755,36609.8070887721,0.101857223565512,441.729703817132,5,25 +3150.50620977573,1250.51774522812,0.447944585447896,15833.0171555477,267897.521397098,34480.1340051991,10980.9343965602,98855.1739472686,0.127256984502243,501.672963340084,13,20 +736.670042561658,229.002521051907,0.946507443954834,2905.34265602328,189562.663812104,15947.8321868786,5078.92744805051,69949.3224398908,0.268894160214441,117.304146904723,15,23 +748.188256876351,174.341292519468,0.02643685747147,4465.43075874163,175633.451850849,12136.5278759491,3865.13626622583,64809.3918268816,0.007510470872577,119.138257464387,10,22 +3913.5405193048,3174.86662732326,0.583364203353557,21240.6409479697,76226.2932716195,21572.9554577071,6870.3679801615,28127.7834950625,0.165728466861806,623.175241927516,7,1 +1387.91841710333,522.876671713447,0.842047862993139,19746.0101895312,262837.588526902,14721.507042092,4688.3780388828,96988.0400468273,0.239218142895778,221.006117373142,13,16 +3785.2086555007,1745.42146114827,0.624384109141686,3185.84983621309,215497.593470948,22813.0121222131,7265.29048478124,79519.4071848517,0.177381849187979,602.740231767627,10,5 +1639.57224690475,743.963858410553,0.490067872599172,7778.20214977956,43430.7520536358,971.66854149313,309.448580093353,16026.1077688693,0.139223827442947,261.078383265088,16,7 +3657.03759053725,3422.60900245368,0.601014332554305,11417.8033883811,132250.37738683,21840.7830404671,6955.66338868379,48800.8772645129,0.170742708112018,582.33082651867,5,2 +2413.8223626312,1451.37368214505,0.182922821297737,23777.7023431439,228736.072371987,41240.8982301793,13134.0440223501,84404.4547498107,0.051966710595948,384.366618253376,15,10 +1529.12068465876,2956.91458083072,0.973573562906642,7819.87762074006,202039.772779869,39241.307748848,12497.231767149,74553.4216899886,0.276583398553023,243.490554881968,16,17 +3890.523169693,337.778256283014,0.16141306375092,14751.7869329134,153724.948336507,41523.3962206922,13224.0115352523,56725.073186903,0.045855984020148,619.510058868312,16,15 +1529.47186398442,2292.32977031416,0.365307687652663,23712.28209396,261240.899703749,1755.68917037023,559.136678461857,96398.8559792432,0.103780593083143,243.546475156755,1,18 +2611.69413050188,1584.15213981233,0.349929140768543,24559.5719981607,226169.163990066,25118.313676717,7999.46295436847,83457.2560848952,0.099411687718336,415.874861544885,1,11 +2294.55203442122,38.1841131672216,0.574737465018033,22180.0338591597,159213.59849183,44163.5244473595,14064.8167029807,58750.4053475387,0.163277688925578,365.37452777408,16,0 +2439.25482269883,428.966252650885,0.574888807787971,16560.0831951543,128501.828686772,31280.8611720425,9962.05769810271,47417.6489619085,0.163320684030674,388.416373041215,3,8 +2989.53864422243,2141.59140163556,0.139893712536085,740.339891055045,58779.5822943141,26019.2757010667,8286.39353537156,21689.8827654296,0.039742531970479,476.041185385737,6,22 +2785.29958348609,870.762829504867,0.050456051434816,15353.0061589918,149163.285348779,5463.66807292501,1740.02167927548,55041.8027117266,0.014334105521255,443.519041956384,5,2 +2831.38854752067,3894.08313590087,0.487217292289586,4343.38394319203,31216.3843178757,33220.9293999653,10579.913821645,11518.9610029062,0.13841400349136,450.85804896826,5,9 +2986.8977972404,2298.04727549293,0.434065417669942,22352.4908215022,28464.514491988,7460.38310870919,2375.918187487,10503.5108826524,0.123314039110779,475.620668350382,7,8 +2890.40463058322,1453.92489464717,0.999398527742761,20433.022773099,164750.743423903,16381.8414721829,5217.14696566334,60793.6322597428,0.283920036290557,460.25551442408,11,17 +2601.01722474828,193.618117565188,0.955667308551602,21078.0256831488,256636.889463509,7088.62263764366,2257.52313300753,94699.9592116269,0.271496394474887,414.174717316605,13,19 +3513.04462293407,2976.02360453735,0.713699425780725,16769.6447275048,136256.17115374,33642.1405456466,10714.0574986136,50279.0299460295,0.202755518687706,559.402010021349,6,9 +3514.63723132796,809.377498904365,0.623151277356048,17363.3539304462,105704.362184441,23353.7488958998,7437.49964837573,39005.2996990557,0.177031612885241,559.65561008407,19,13 +585.50386258096,231.907132926175,0.144009957715723,11706.1313363469,41894.5832338269,2348.85591709062,748.04328569765,15459.2558058402,0.040911919805603,93.2330991370955,1,19 +3834.60199940756,3034.72712793761,0.66405378928195,14326.5734962088,204526.946215384,36258.924043028,11547.4280391809,75471.1978654554,0.188651644682372,610.605413918401,12,4 +3966.06570695472,3681.71918544328,0.23752879161156,19702.1512111446,248762.331218342,25250.3874885241,8041.52467787392,91794.2181617498,0.067479770344193,631.539125311261,6,7 +3538.29073457149,3614.36024950024,0.363232205861339,24671.5173739731,47465.9505378833,4694.38403048008,1495.02676129939,17515.1108995879,0.103190967574244,563.422091492275,0,8 +1599.82758040761,3151.4992197283,0.161762176005628,10212.3106736889,98696.5488466521,28979.9514621705,9229.28390514984,36419.3907183218,0.045955163637963,254.749614714588,11,18 +2861.47682272341,1516.67312260051,0.191217568675817,24941.3820969158,190518.499509014,7754.06579896091,2469.44770667545,70302.0293391196,0.054323172919266,455.6491755929,7,20 +3285.00185635586,982.575913578896,0.801661803250282,12174.6639299719,252291.314862828,9771.50602188431,3111.94459295679,93096.426148645,0.22774483046883,523.089467572589,7,15 +1011.03930940398,1110.74564586173,0.796679763439005,20761.0741077136,66688.8907442999,38724.0970163035,12332.5149733451,24608.4467691144,0.226329478249717,160.993520605729,18,1 +2316.278670734,3994.50400496604,0.577373584837264,4480.52313230075,175157.420378482,38536.2070038472,12272.6773897603,64633.7344570044,0.164026586601495,368.834183237898,11,19 +22.3524112938447,2455.37333612319,0.101503810867615,1671.66844989938,124044.050260289,27976.5188043806,8909.71936445242,45772.7122731694,0.028836309905573,3.55930116144024,13,5 +3233.92796366089,2194.07339853035,0.182787658629836,22245.7255589927,213619.893691977,12683.7535368366,4039.41195440656,78826.5290376299,0.051928312110749,514.956682111607,9,10 +1734.35163562794,2945.52694626654,0.241762769169545,21303.753759026,197999.957170877,43068.6789012593,13716.1397774711,73062.7148232018,0.068682604877712,276.170642615914,11,8 +1355.62616522551,2055.65449315616,0.367336452675956,21264.1215727669,20820.2528912248,15176.2996288993,4833.21644232462,7682.7501443634,0.104356946782942,215.864039048648,1,5 +2670.50664550608,3041.56175594076,0.073691454323187,13994.7779925329,212643.229656575,10344.8117809941,3294.52604490258,78466.1364046402,0.020935072250905,425.23991170479,2,6 +1130.37549156918,3074.64433451803,0.739286346339215,2401.38660620748,175063.206963701,34547.0263649187,11002.237695834,64598.9693592993,0.210024530210004,179.996097383627,8,25 +1921.34352315149,2712.42421505906,0.988441943007971,12670.8879976476,239729.252515726,17312.2770329081,5513.46402321914,88460.9787880908,0.280807370172719,305.946420883995,18,21 +3566.06397691738,2920.9013846746,0.247816657996577,11430.8882355638,245071.347135179,22509.372861955,7168.59008342516,90432.2314151952,0.070402459658119,567.844582311685,2,23 +3112.85696970207,1593.89388082794,0.924299457229802,8709.86741330152,154423.111030076,35435.8921013704,11285.3159558504,56982.697797076,0.262585073076648,495.677861417527,12,19 +2982.18828916628,510.474155663373,0.840581893375149,24772.4021198998,117581.218698445,9254.76110058475,2947.37614668304,43387.903578762,0.238801674254304,474.870746682529,18,25 +1749.29017066026,2806.89279202364,0.919732685280878,20367.5027661463,143150.909378516,17014.0671404708,5418.49271989516,52823.2137928103,0.261287694682068,278.549390232525,15,19 +2602.61743028113,515.833897934632,0.457145707877069,2511.72839109504,215714.255894044,23715.8947132892,7552.8327112386,79599.3564184664,0.129870939737804,414.42952711483,1,23 +543.694618088916,3764.15921272873,0.535665866747688,2706.54427843295,180844.863321082,36654.4279874753,11673.384709387,66732.4218896982,0.15217780305332,86.5755761288083,2,23 +1984.78012711118,2303.10632488436,0.790680532506069,5871.03094805172,218855.963323123,11274.9037708572,3590.73368498637,80758.6580528129,0.224625151280133,316.047790941271,6,6 +3755.18286429095,2459.30298674901,0.805206003680472,24202.1904584904,228335.447507118,7093.17160827577,2258.97184976935,84256.6226963535,0.228751705591043,597.9590548234,2,25 +845.964667820591,881.817821053787,0.480768004107033,689.273877224477,259065.593096369,34509.3273667876,10990.2316454738,95596.1598141583,0.136581819348589,134.70774965296,3,19 +1448.45162769403,1422.78729924957,0.677669122208703,3.10419193068427,15125.1432356078,44615.4490558077,14208.7417375184,5581.23366627594,0.192519636991109,230.645163645546,3,16 +2279.51592951274,3686.39190728398,0.675745711592512,20911.9073445779,259968.538126148,8821.6769887931,2809.45127031627,95929.3498620472,0.1919732135206,362.980243552984,12,9 +2180.78446145364,3407.61705171632,0.386084316788214,13990.5306533106,170721.421105034,15402.0549837617,4905.11305215341,62996.8343561011,0.109683044542106,347.258672205994,9,20 +943.857285618098,2099.96278263622,0.932718275076005,7427.17403365742,66007.6607335925,36909.1135526628,11754.4947619945,24357.0703813994,0.264976782692047,150.295746117532,4,18 +3779.76326757011,1411.2842843556,0.421895471241209,21566.2996076831,276604.437094322,12111.3257427007,3857.11010914035,102068.057968385,0.119856667966253,601.87313177868,2,15 +2360.19918445067,776.696570178233,0.271217686880161,7118.26850281287,69758.1192042223,43964.5140036383,14001.4375807765,25741.003396392,0.077050479227319,375.827895613164,8,11 +2389.64302202518,1311.48687359903,0.478218325639845,5112.55044853615,89661.3802949151,39506.6172553539,12581.7252405586,33085.3801826255,0.135857478874956,380.51640478108,14,14 +1407.07527547412,884.053527334806,0.988813375421213,21688.0487765235,8907.3171895672,3204.12185503203,1020.42097294014,3286.83291127941,0.280912890744663,224.056572527726,2,21 +783.732927644109,2353.5134685409,0.883832586200509,5739.96106683817,228764.914353654,42808.7204041108,13633.350447169,84415.0975474738,0.251088802897872,124.798236886005,19,21 +2714.75679068664,652.975853048533,0.525227437112931,1379.88811385727,263234.993384998,13694.9190300088,4361.43918153146,97134.6839059033,0.149212340088901,432.286113166663,6,9 +2254.3975784686,1355.13514549713,0.107143432075858,9142.1191773741,167903.859784545,17791.6877943971,5666.14260968061,61957.1438319354,0.030438475021551,358.980506125573,4,11 +3326.09356253885,3516.28703742246,0.381022182224004,4206.66429609726,286271.244817779,6061.9685147005,1930.5632212422,105635.145689217,0.108244938131819,529.632732888352,7,22 +3179.85071112977,2185.95985271796,0.79484199904568,20283.1822561972,240569.224144935,38745.5589514476,12339.3499845375,88770.9314187952,0.225807386092523,506.345654638498,0,14 +1926.03787715859,3099.96194634641,0.840171103558119,8249.79876977228,26652.2608246908,23152.6999016523,7373.47130625869,9834.78259213683,0.238684972601738,306.693929483852,17,5 +1032.73618100864,870.649623572516,0.101762923355033,9729.80333213177,79314.869351958,33067.3493409435,10531.0029748228,29267.4794656672,0.02890992140768,164.448436466344,14,19 +1119.43670604107,1520.89393387399,0.943463206071858,5150.64936994758,76750.1510055317,2618.40645133781,833.887404884653,28321.0889319305,0.268029319906778,178.254252554311,18,24 +183.710802162388,3929.56033658735,0.437523829843574,4500.67652495913,281092.129830723,40672.3900295706,12952.9904552773,103724.033147868,0.124296542569197,29.2533124462401,14,2 +1612.14799447544,2861.3170595703,0.57916625805537,3526.68459032266,8747.72506357386,24348.3267958423,7754.24420249755,3227.94282788703,0.16453586876573,256.711464088446,18,14 +1274.95342666099,3576.99681892506,0.882770497858739,13782.4614909948,19646.2609797596,38103.9856334614,12135.027271803,7249.54279695926,0.250787073255324,203.018061570221,16,2 +660.029607773592,3308.19230047844,0.524532539424278,21267.7867269367,110273.269810062,21269.5428788121,6773.73977032232,40691.2434723476,0.149014925972806,105.100256014903,13,19 +1097.21929981134,3432.80958506656,0.213753375154924,22992.169181716,177492.073932829,23008.4861982295,7327.54337523233,65495.2302335162,0.060725390669013,174.716449014545,9,14 +2608.68832564572,457.753617763132,0.075304998274396,11455.2328631244,4116.73582541718,17831.2057387365,5678.72794227277,1519.09071048604,0.021393465418863,415.396230198363,17,23 +3577.66275317811,3679.43489517213,0.494210251862037,2460.24016408033,158122.714492758,27857.6683099911,8871.8688885322,58347.865126479,0.140400639733533,569.691521206705,18,1 +36.7057133903845,195.7792004693,0.110234584289606,7417.02171488188,124576.459742149,43496.9653589671,13852.5367385246,45969.1733365863,0.031316643264093,5.84485882012492,6,21 +2026.35905037596,1897.04948383249,0.156377600173238,6409.83534519081,65482.7531105638,8383.69966091235,2669.96804487654,24163.3775315734,0.04442545459467,322.668638594898,5,21 +2570.23717792472,1354.79913444054,0.224816034059586,16242.3762537626,215975.868168383,25727.3401298106,8193.42042350656,79695.8923130565,0.063868191494201,409.273435975274,11,24 +2880.39727036443,2686.15556843023,0.831587473514844,7534.63720065459,77136.3866216293,23789.1088325323,7576.14930972366,28463.6112994942,0.236246441339444,458.66198572682,5,24 +3164.24507740335,564.663353099428,0.790923628851599,16551.9858905118,265472.429581765,25732.1253309276,8194.94437290688,97960.3061187325,0.224694212741932,503.860681115183,9,20 +1687.72627327075,2944.11495294001,0.19605588971755,19734.469182313,243357.160717263,15407.6521176649,4906.89557887417,89799.6903015731,0.055697695942486,268.7462218584,3,10 +32.2127121766187,3620.91311929039,0.429870353102496,16282.611112183,256636.181500991,21376.4606491781,6807.79001566182,94699.6979708454,0.122122259404118,5.1294127669775,11,25 +3367.93790320002,3998.66543143673,0.03134989269386,19451.0844346258,150326.67180037,5996.95333656853,1909.85775049953,55471.0966053026,0.008906219515301,536.295844458602,14,0 +1441.05183838092,3538.34616985987,0.140936005909798,151.148848691588,245672.886553693,22784.9927637335,7256.36712220812,90654.2016803295,0.040038638042556,229.466853245369,16,23 +705.32036652269,1004.43723814701,0.113750911963129,1328.12382182064,76536.8683555419,30098.9650790644,9585.65766849185,28242.3868470634,0.032315599989525,112.312160274314,17,22 +1532.29861070769,621.498719677393,0.420671440618195,23826.3587851684,63215.6394715353,22571.3574709701,7188.33040476755,23326.8042330389,0.119508931993805,243.996594061734,15,3 +881.635306370862,2711.45867537629,0.404668128509113,16030.9024827261,61829.1133768672,1403.69791468668,447.037552447987,22815.1709877739,0.114962536508271,140.387787638672,12,25 +3450.1145185565,3333.17966522209,0.867633621907321,8580.80402301004,250092.13436881,16388.9561376491,5219.4127826908,92284.9204312952,0.246486824405489,549.381292763774,7,16 +3647.78273850793,1471.3304457253,0.23754163056845,10207.0613458694,83838.3657235221,14675.5883906623,4673.75426454213,30936.6663186428,0.067483417775128,580.857123966231,3,24 +1810.25053467831,514.17849879705,0.998153536610289,6830.26244927867,238985.156118228,43377.6549388042,13814.5397894281,88186.4044716709,0.283566345627923,288.25645456661,2,8 +2604.04553439298,1276.60380559679,0.056770217960144,9920.08877524396,184108.547048026,26579.76354431,8464.89284850637,67936.7332280539,0.016127902829586,414.656932228182,18,10 +3808.54127930825,2699.98151102373,0.176146362560381,17318.4914082428,74076.9991206092,8900.28789564368,2834.48659096933,27334.686022365,0.050041580272836,606.455617724244,10,13 +3224.55295845083,1373.99597316166,0.653230588612168,2538.51446910273,44653.5525915835,32219.5335696795,10260.9979521272,16477.3256795511,0.18557687176482,513.463846887075,17,9 +161.810678936097,243.276403407147,0.185787535889601,6238.24445093603,60364.9611548814,41918.7651925112,13349.925220545,22274.8934150854,0.052780549968637,25.7660316777224,14,20 +206.54037313424,429.37211876179,0.24445496731735,4352.20443965722,260413.373233164,35714.6366969565,11374.0881200498,96093.4956579941,0.069447433896975,32.8885944481274,16,15 +353.817455880324,3611.47908649758,0.96888879237599,15679.6986399399,202031.80918977,23741.9515146726,7561.13105562822,74550.4830958561,0.275252497834088,56.3403592166121,7,3 +598.542975167096,523.525314288842,0.2618171240792,11446.1327159794,51492.2824022128,25962.1093849321,8268.18770220767,19000.8422148387,0.074379864795227,95.3093909501745,8,15 +2008.98026008039,2196.17812807694,0.902877499784574,14750.6210923545,176929.194424969,26311.8598839188,8379.57321143911,65287.5256180697,0.256499289711527,319.901315299425,13,13 +1455.02171058257,2892.96588513543,0.122315956522724,5192.4240835827,35453.5558852497,33246.847023735,10588.1678419538,13082.4929465866,0.034748851284865,231.691355188307,17,11 +1148.57957375299,507.684156768922,0.635629492306391,21690.3033357967,11661.4160394083,4342.64494062539,1383.00794287433,4303.10554959716,0.180576560314316,182.894836584871,6,12 +1531.57028571994,278.815057036574,0.945538277218778,13463.9803488346,109993.558246388,9017.35866718078,2871.77027617222,40588.0288732059,0.268618828755335,243.880618745213,5,14 +3393.62397385587,87.6667950669565,0.962920764082349,22218.592749686,24508.9858598745,43479.3544802949,13846.9281784379,9043.9062213559,0.273557035250667,540.385983098068,15,8 +3385.94409256479,3161.39005771859,0.104713081668869,7994.95683117139,16297.766224404,4055.74192063224,1291.63755434148,6013.93587616384,0.02974803456502,539.163072064457,4,11 +3672.97824028409,2751.8282621028,0.429274681142329,4341.62056073759,104355.849794658,19501.4009729203,6210.63725252239,38507.6936511653,0.121953034415434,584.869146542053,6,12 +3283.34563813118,2976.78113569124,0.833400064889909,15775.0462066339,46720.0451495219,12583.8299465886,4007.58915496452,17239.8690588642,0.236761382070997,522.82573855592,18,2 +3951.21650704142,2547.07306009203,0.916946412936676,7876.96455962682,119095.733271931,17034.6606312288,5425.05115644229,43946.765044993,0.260496140038828,629.174603032073,3,2 +3428.09179058757,2996.80217825308,0.780492926529772,22481.9377539938,13135.3142430176,7359.48988876314,2343.78658877807,4846.97942546775,0.221730945036867,545.874488947065,19,8 +3945.24414242021,3824.61151775449,0.06570198704291,161.398629285617,99167.7908982048,11276.0417454447,3591.09609727538,36593.2807742453,0.0186653372281,628.223589557358,2,16 +3502.37159329036,3098.69456845011,0.150072711042971,19343.0213330017,264492.946533985,8878.42175327172,2827.52285136042,97598.8732597731,0.042634292909935,557.702483008019,11,23 +2455.43557922611,1842.55321574026,0.642980818420681,7065.68876393406,174598.76251849,17913.5205858623,5704.94286173959,64427.5876451993,0.182665005233148,390.992926628361,1,10 +137.404107385111,3122.79376592552,0.36486129459852,122.64610050452,133404.623095697,4589.52381377352,1461.63178782596,49226.7981902941,0.10365377687458,21.8796349339349,7,21 +1274.83085844761,3326.44096488492,0.480729050871294,14350.950929684,96393.4077936887,37073.8348898313,11806.9537865705,35569.5231711028,0.136570753088436,202.998544338791,18,4 +3194.68087659871,3400.15571316018,0.370185539984673,4898.1263309631,9334.77787756024,22795.8714195489,7259.83166227672,3444.56748249455,0.105166346586555,508.707145955209,7,24 +2801.64521556773,1829.06319890119,0.567063696340403,24109.6013163613,58987.6085095452,17430.2073086661,5551.02143588092,21766.6452064742,0.161097641005796,446.121849612696,6,16 +2776.43905128254,2405.30597654849,0.229611492772725,24576.9611019453,85128.7276715504,31304.6721306758,9969.64080594771,31412.8146389485,0.065230537719524,442.108129185118,5,24 +2554.58897658798,1199.46450088088,0.733112550572656,6947.66435624292,98171.8742562657,40812.3279785843,12997.5566810778,36225.7838584006,0.208270610958141,406.781684170061,19,14 +1663.36525636403,2239.19798114508,0.840539854950425,19491.1263852859,151822.97545318,44596.788369095,14202.7988436608,56023.2381746052,0.238789731520007,264.867079038858,4,10 +2554.61547890727,475.876871719859,0.734680911047352,9890.92375447404,240686.941998791,9744.87664012621,3103.46389812937,88814.3697412513,0.20871616791118,406.785904284597,5,20 +3377.15013449258,822.190484792259,0.442481239755914,7565.97336628091,152689.510432405,9721.51600704355,3096.02420606482,56342.9927794852,0.12570489765793,537.762760269519,11,15 +2801.22447615046,2831.35682671135,0.029430560574932,6676.14487980295,104627.691680169,6834.65191603938,2176.64073759216,38608.0043100255,0.008360954708788,446.054852890201,14,6 +32.8856731960245,1074.18940623104,0.655717979883647,20175.3530946683,40312.2937696939,2827.92884542783,900.614281983385,14875.3851548686,0.1862835170124,5.23657216497205,7,11 +3196.92382366105,381.178386497429,0.99126815684106,21937.5179679601,67940.4570839253,9151.3318347367,2914.43689004353,25070.2793667621,0.281610271829847,509.064303130741,1,12 +2370.75603169069,3137.04142452297,0.833870941380006,9874.21187754253,44543.2884668782,29153.6683951836,9284.60776916675,16436.6378106562,0.236895153801138,377.50892224374,17,18 +471.124743019553,2753.91845396071,0.282343518062724,13098.2181658122,203972.691250285,35188.8871612854,11206.6519621928,75266.6757381126,0.080211226722365,75.0198635381454,18,20 +1112.48623839882,2850.37700868063,0.974022622674439,9859.58587323327,275821.309851329,13949.8215976728,4442.6183432079,101779.081125952,0.276710972350693,177.147490190895,3,8 +2532.59222024347,515.30254267234,0.665961895013853,12321.1082573094,154961.801116832,26761.1508247746,8522.65949833586,57181.4764268753,0.18919372017439,403.279015962336,19,14 +3791.71264489793,2372.56269657121,0.249586440631663,1037.37142948973,237643.289736135,39352.1751091016,12532.5398436629,87691.2508251421,0.070905238815813,603.775898869097,0,0 +1433.78321483895,449.82533485609,0.49563992751364,24126.059002589,13049.3377462216,10632.438743523,3386.12698838312,4815.25378089358,0.140806797589102,228.309429114482,13,17 +2887.89783371239,2392.63606538002,0.005189219182964,19115.8583806972,219124.275077598,9250.19364935117,2945.92154437935,80857.6660802945,0.00147420999516,459.856342947833,19,11 +2788.05385355613,1076.43365839232,0.337479738272789,15934.5083205723,153055.116361989,3604.15751857543,1147.82086578835,56477.9027166011,0.095874925645679,443.957619993014,10,9 +21.9919745295256,4012.99557171758,0.110645071643704,16472.2632898147,224582.352425409,17590.3303750241,5602.01604300131,82871.7167621435,0.031433258989689,3.50190677221745,2,11 +708.861678843185,484.384630755834,0.768671439211263,16474.8953794304,5285.72443265435,21804.4623761132,6944.09629812522,1950.45182016766,0.218372567957745,112.876063510061,10,17 +350.737261523881,2403.73807001041,0.934470725634666,2744.31962225147,83865.8961019709,12805.4574715994,4078.17116929917,30946.8251298786,0.265474637964394,55.8498824082613,3,14 +312.439583605169,2869.22239501408,0.746774026262287,17368.8784774577,236057.03888859,20935.2132228818,6667.26535760567,87105.9184090738,0.212151712006332,49.7515260517785,7,19 +1429.12625379297,38.9775100767369,0.028362473126211,21740.6098000934,93013.622418808,16183.5467879853,5153.99579235201,34322.3698962391,0.008057520774492,227.567874807798,13,16 +3531.9719186354,2551.94588052477,0.183967711520942,16846.8974033924,80527.8994341598,29012.1066189796,9239.52440094892,29715.0920421254,0.052263554409359,562.415910610732,8,20 +1111.56584513428,1261.26539230054,0.828236786462324,6365.91741411521,105044.275404851,8894.26781628275,2832.56936824291,38761.7252416424,0.235294541608615,177.000930753866,1,8 +757.142689119882,2338.5916071142,0.726627241872526,20951.2889262285,9805.70813232281,32294.1312105139,10284.755162584,3618.34248425196,0.206428193713786,120.564122471319,15,20 +758.667102763644,2844.99601022217,0.354099157249947,3786.70325829375,189638.960666348,33562.3650271693,10688.651282538,69977.476260645,0.100596351491462,120.806863497396,0,17 +3893.50927921167,4004.2827163203,0.234423648250207,22419.2352267097,69722.8504891869,17288.8880702522,5506.01530899752,25727.9891104011,0.066597627343809,619.985554014597,6,19 +2915.79679769699,2561.10142645158,0.859168464615575,13572.008830543,29514.2260147604,4955.00724691037,1578.02778564025,10890.8583080297,0.244081950174879,464.298853136463,6,19 +1406.56173825269,3455.93544248392,0.320550239394581,3696.5489118634,181046.517024935,18686.4101623967,5951.08603897984,66806.8328505295,0.091065408918915,223.974799084823,3,16 +2297.91975867495,3470.37241171498,0.465711274601172,10623.909652169,45420.0386184325,35114.4559107618,11182.9477422808,16760.1618518201,0.132304339375333,365.910789597922,16,24 +2541.48321327466,849.203095048208,0.138077155351353,18236.2364621408,227317.89239885,11428.6522754273,3639.69817688767,83881.1411065867,0.039226464588453,404.694779183863,9,2 +612.995577856927,3777.34499061052,0.610316282746714,20156.4149252632,52137.3229589388,13611.6129597037,4334.9085858929,19238.864560494,0.173385307598498,97.6107608052432,17,12 +3276.12263865073,2780.65387017623,0.174317004868673,23871.828628336,229983.892233636,8000.21843378027,2547.84026553512,84864.9048832605,0.049521876383146,521.675579402983,15,15 +1624.15637659494,1371.16534478356,0.539318755526692,47.0372402023364,97442.7080819678,44265.0680640806,14097.1554344206,35956.7188494346,0.153215555547356,258.623626846328,1,22 +1446.84777326828,786.399022806726,0.12470974731382,3830.13698274583,233470.911343272,16600.199382894,5286.6877015586,86151.6278019454,0.035428905486881,230.38977281342,13,9 +2596.91788147401,979.492740030414,0.038154863695668,7427.32779717732,155897.934631687,20294.8221300016,6463.31914968204,57526.913148224,0.010839449913542,413.521955648728,9,5 +494.176789947443,329.359966666758,0.736252604346074,11949.7238214393,83181.754079059,43913.2046408096,13985.0970193661,30694.3741989148,0.209162671689226,78.690571647682,11,9 +3549.42429086925,2286.40681766636,0.548206593930151,17031.328962255,110039.347441119,15864.724729584,5052.46010496306,40604.9252550255,0.155740509639247,565.194950775358,18,8 +3981.99549243434,2.84190578570617,0.79590940235414,24521.1293240653,239232.24654993,23826.5690538992,7588.07931652841,88277.5817527417,0.22611062566879,634.075715355787,4,24 +3318.89925615372,1711.34363722359,0.507453610034878,16682.0657138708,151610.970115431,33284.8606438644,10600.2740904027,55945.0074226683,0.144162957396272,528.487142699637,13,2 +2965.72223980032,2837.70558282706,0.589875694119422,20262.503170401,50490.2854697393,6456.48542625879,2056.20554976395,18631.1016493503,0.167578322193018,472.248764299414,9,13 +2754.96774958946,2921.47125381339,0.935983764304795,14586.9518928975,242485.39558969,29540.0980295442,9407.67453170197,89478.0057526531,0.26590447849568,438.689132100232,14,3 +3715.26871027167,891.517981750916,0.58733456870485,19967.3852403868,34386.0227907622,12540.4070690148,3993.76021306204,12688.5692954842,0.166856411563878,591.60329781396,16,2 +3341.18730220329,1696.27136217732,0.91769559353565,4630.86959488425,57009.5012408144,42266.3623414935,13460.6249495202,21036.7163250238,0.260708975436264,532.036194618358,1,6 +2704.05777764867,1069.77578133411,0.616543000070739,24995.9879235554,218920.588425145,28901.4401407338,9204.28029959675,80782.5049539281,0.175154261383733,430.58244867017,3,12 +2498.36747349946,145.111991855873,0.798149803915853,23221.1878303204,150900.34236384,35264.2533111115,11230.6539207361,55682.7831600886,0.226747103385185,397.829215525392,2,15 +14.9665815110846,2885.18493933352,0.484723123240428,11518.0592035873,175715.190024038,35890.6005490948,11430.127563406,64839.5535144052,0.137705432738758,2.38321361641474,6,18 +1678.75586493397,126.09708155935,0.297923369231437,24452.9059813149,157493.64269107,21866.976208424,6964.00516191847,58115.7353103579,0.084637320804386,267.317812887575,6,18 +969.676106230285,1216.35802642446,0.372033300445524,12643.318891311,264069.427897389,23222.432176338,7395.67903705032,97442.5933200697,0.10569127853566,154.407023285077,1,17 +2862.91032962917,2971.72528392547,0.106518435033536,10286.1524709366,153523.792917376,20062.4512171555,6389.31567425334,56650.8460949727,0.030260919043618,455.877441023753,12,1 +529.00788954307,3395.45002890096,0.738489685817371,3329.87561158879,48853.2659892396,24218.1824219783,7712.79694967462,18027.0354203836,0.209798206198117,84.2369250864761,11,21 +1988.86386181831,1740.64185999679,0.909382564530639,15385.4611830198,264651.94921188,32792.3309919466,10443.4175133588,97657.5458346421,0.258347319468931,316.698067168521,3,16 +613.507966388667,2345.18726317202,0.177198720796715,17537.507517358,98061.6963874252,12784.0273865721,4071.34630145608,36185.1278182381,0.050340545680885,97.692351335775,1,12 +3645.30989223996,3040.96973372557,0.587344670496843,9357.88968740302,1646.62382140935,19908.8298647783,6340.39167668099,607.610266202712,0.166859281391149,580.463358636936,8,4 +1885.99745521083,2783.57217443436,0.958093957172417,11180.7376423536,193357.356791382,11393.2915422742,3628.43679690261,71349.5781518015,0.272185783287618,300.318066116374,7,11 +2609.87151517758,1430.15586729333,0.538618326690206,10111.0591271459,174897.89818996,27778.8710208402,8846.77421045866,64537.9698117934,0.153016570082445,415.584636174774,17,24 +1974.31495404144,387.674156271636,0.373549120721338,19540.814848782,285190.866480475,42403.3096619802,13504.2387458536,105236.482096116,0.106121909295835,314.381362108509,15,8 +2067.03403479986,329.692811115158,0.936482268860291,4447.70965422077,155840.082653671,13094.4671092305,4170.21245516895,57505.5655548602,0.266046099108037,329.145546942653,18,13 +2771.09227026422,475.662622098248,0.038816050107053,12075.7007415276,182449.173117385,26282.6338321175,8370.26555162978,67324.4181244963,0.011027286962231,441.256730933793,3,22 +715.094175638852,3275.85833385437,0.520971284127833,18573.3518625337,210818.511176578,9300.71934789449,2962.01253117659,77792.8085522428,0.148003205718134,113.86849930555,2,10 +481.110914252771,3771.57026357026,0.383954298833332,20801.1110164945,277057.083680133,26151.732543602,8328.57724318535,102235.086228831,0.109077925804924,76.6100181931164,11,19 +1026.74680664934,404.965966834133,0.321715447091413,7243.52975441214,278591.788589899,26553.7721583817,8456.61533706424,102801.398003653,0.091396433832788,163.494714434608,18,14 +789.108120815494,2190.35287129774,0.349920140535322,18680.1275483135,215624.236791881,28562.9696806383,9096.48715943895,79566.1390375945,0.099409130833898,125.654159365525,15,24 +1394.8250444795,2438.93809441432,0.603250223611547,17146.8613111879,194389.554670035,1989.60724927641,633.632881935162,71730.4629778727,0.171377904435099,222.105898802468,1,6 +2208.80215920772,276.385638248739,0.771548286592082,120.139713823955,286600.820462135,39486.550241662,12575.3344718669,105756.760318131,0.219189854145478,351.720089045815,16,22 +1147.2091226223,2549.3639276996,0.492262444841546,3001.29277856991,107629.474398881,28023.5707598055,8924.70406363233,39715.6732099192,0.139847285466348,182.676611882532,16,21 +727.912832413252,465.696358216978,0.955304081718183,12153.7684797121,284894.30459992,22164.150163453,7058.64654887038,105127.049667867,0.271393205033575,115.909686690008,16,13 +578.491118352471,188.258566487827,0.916836686330414,18445.1666961541,130187.731023794,18621.9286013974,5930.55050999917,48039.7531453114,0.260464967707504,92.1164201198202,15,24 +590.305855024492,970.412653346913,0.961401271967971,11727.5114663646,261400.707448641,32450.6374121134,10334.5979019469,96457.8256268048,0.273125361354537,93.997747615365,4,4 +2553.97571834347,2799.74057303436,0.673368223235341,13774.1005440941,15945.4524869571,37297.9397921806,11878.3247745798,5883.93080699524,0.191297790691858,406.684031583355,10,4 +3711.59453803624,521.017938616309,0.78818239863612,21397.2761957791,68534.5476982205,9506.2225377634,3027.45940693102,25289.5009956533,0.223915454157989,591.018238540802,18,13 +1325.41516884337,445.883795029835,0.526750846522396,4208.42372703744,285090.972681996,1790.63073417763,570.264565024723,105199.620915866,0.149645126852953,211.053370834932,0,13 +3330.39528182802,3742.11243714897,0.312669708634915,24001.2869007686,180007.05234539,42385.194710497,13498.4696530245,66423.2665481144,0.088826621771283,530.317720036309,6,8 +1118.25422838023,3435.3796194115,0.970271905119079,24622.5899503034,194467.372286761,24929.039785825,7939.1846451672,71759.1779655945,0.275645427590647,178.065959933158,1,24 +2663.75293892107,2210.10125686045,0.927085421972785,13324.6735647831,211721.402059348,37334.9171259354,11890.1009955208,78125.9786196856,0.263376540333178,424.164480719916,12,18 +267.535276892553,3209.61954980999,0.217940730248379,8050.8318053479,167219.088910059,31580.3202395928,10057.4268278958,61704.4608524203,0.061914980184199,42.6011587408524,10,24 +2207.69335691417,2183.11647361296,0.266194874305262,22788.8530428206,86694.1164621924,35649.0638454551,11353.2050463233,31990.4488790378,0.075623543836722,351.543528171046,4,10 +2743.03976887709,2763.52013725791,0.257671916367405,6174.98614862006,136273.20610736,22927.4376400366,7301.73173249573,50285.3159067749,0.073202248968013,436.789772114186,1,12 +552.533883024549,311.301082672406,0.790061698792108,17345.2209773087,246229.789923263,21720.682710911,6917.41487608631,90859.7010786948,0.224449346247758,87.9831023924441,1,6 +3709.98272629717,1412.59119653274,0.765421489361506,23733.303741351,118387.62985074,13717.010567078,4368.47470289108,43685.4722696458,0.217449286750428,590.761580620568,0,24 +3876.82594210146,3287.44765366666,0.968872896411358,18555.7488648947,177191.271424844,33815.4742689068,10769.2593213079,65384.2329980974,0.275247981935045,617.328971672207,12,5 +2558.61364537307,821.438861523514,0.82382322458811,17253.7096083268,134108.537057773,30417.0214980553,9686.94952167366,49486.5450397686,0.23404068880344,407.422554995712,0,3 +1515.41797826119,3748.70631939062,0.672044260841527,23098.4427618771,63392.5595807609,9934.78582599595,3163.94453057196,23392.0884061848,0.190921665011797,241.308595264521,13,19 +1477.30028499653,2782.73775626313,0.108976521119684,16270.1011109836,112593.707929363,42827.7785545297,13639.4199218247,41547.493700872,0.030959238954456,235.238898884798,5,1 +2666.43872468936,29.6073860142829,0.935115031215039,7378.39738050272,227408.968856193,12221.4738614142,3892.18912783892,83914.7486554218,0.265657679322454,424.592153612955,2,14 +1727.97184263462,2257.07632646452,0.011215684953485,22945.2560714883,158923.61495127,39869.336366014,12697.2408808962,58643.4003510221,0.003186274134513,275.154752011882,13,12 +2187.29334050023,1897.94199492927,0.025212458856441,2920.83141385131,66962.7987168714,4299.39523553044,1369.23415144282,24709.5198217238,0.007162630356943,348.295117914049,0,22 +699.291226289828,2044.6255784795,0.096457987737892,3222.54306595847,82730.793400357,724.733773079726,230.806934101824,30527.9680444122,0.027402837425538,111.352106097106,7,11 +2373.17492632486,1095.66036374948,0.879854277363676,22127.0278925018,230194.297931982,39963.5728611358,12727.2525035464,84942.545362355,0.249958601523772,377.894096548545,12,21 +2974.96029306881,2340.80246518511,0.368663582297279,20736.5467572089,14241.3853574199,17990.6722093385,5729.51344246449,5255.12374812543,0.104733972243545,473.719791889938,8,18 +363.525891028983,1391.16725063837,0.67400395236785,14394.3943911548,35121.8908911357,29692.1845859759,9456.10974075666,12960.1073399025,0.191478395559048,57.8862883804113,7,2 +2913.38639768142,2675.79019715542,0.47595770892837,22693.4422228564,282867.41286468,11501.5732613678,3662.92142081777,104379.119138258,0.135215258218287,463.915031477933,13,14 +33.2799753383679,1831.20829540205,0.062201029416788,6481.76431254137,129179.948930538,26664.4450685105,8491.86148678678,47667.8778341469,0.017670746993406,5.29935913031336,4,22 +397.148251211085,2298.87365893961,0.282411410308321,5262.05609666116,193589.146755488,5455.78690914609,1737.51175450512,71435.1095038701,0.080230514292137,63.2401673903002,11,18 +2580.87355138628,2700.95686042785,0.153881706956303,974.483401500121,196175.570535156,15133.9387446486,4819.72571485624,72389.5094225668,0.043716394021677,410.967126016924,11,3 +3233.20082393535,3945.85576666077,0.903638188190477,18275.3526586043,92402.7033176174,28750.4758500894,9156.20250002847,34096.9384935858,0.256715394372295,514.840895531107,6,24 +1524.06577924945,3286.77567346725,0.523994781731313,7191.13551600638,77545.4656020262,13998.6700611495,4458.17517871003,28614.5629527772,0.148862153900941,242.685633638447,16,4 +539.919010099994,3919.23864394689,0.271549914053102,10818.5014349383,88384.6612879771,10349.0730138249,3295.88312542194,32614.2661579251,0.077144861946904,85.9743646656041,1,24 +3400.26886338599,71.7179531668073,0.736096943044557,12200.2261673624,121569.964685387,13444.0029967838,4281.52961681013,44859.7655665635,0.209118449728567,541.444086526431,6,11 +71.4019945138078,523.863823531278,0.373822212722619,11134.6049246075,61673.8890536396,2263.16876419757,720.754383502411,22757.8926397194,0.106199492250744,11.3697443493325,1,7 +652.079718184966,122.063573777947,0.251956578674507,1672.06164096175,70470.7575578435,42934.6683110254,13673.4612455495,26003.96957854,0.071578573487076,103.834350029453,0,9 +1766.30861408033,2746.00145530358,0.918285616703458,12489.8749256369,12248.3697338127,21464.1180510715,6835.70638569156,4519.69362871317,0.260876595654392,281.259333452282,17,15 +821.841890931304,2439.18282291538,0.482402247620921,24972.0736567009,263786.128820336,22006.0245321248,7008.28806755567,97338.0549152532,0.137046093074125,130.866543141927,10,23 +228.469403512238,259.464963003014,0.62896027136894,1957.35451157399,62455.4656648673,3889.3245116358,1238.63837950185,23046.297293309,0.178681895275267,36.3804782662799,15,0 +2967.21297087275,2622.94901795406,0.35685512123389,16764.1132495295,101857.287277171,25540.3958282328,8133.88402173019,37585.7148624247,0.101379295805082,472.486141858718,19,11 +3180.22414416141,3457.95633212087,0.836312036966083,12771.7205158255,4346.32415984314,12619.6059036861,4018.98277187455,1603.80965307865,0.237588646865364,506.40511849704,3,17 +84.5256268741542,742.674923402501,0.802373810513166,12669.4242357724,74587.2363206242,16375.0510923198,5214.98442430567,27522.9654319646,0.227947105259422,13.4594947251838,17,1 +2050.47384890728,3404.09720917413,0.170202933789,13171.6224874557,154392.404702405,4396.69796802169,1400.22228280946,56971.3670488579,0.048353106190057,326.508574666764,8,21 +3101.65804642532,2777.35186912851,0.348937808346211,4408.65493922711,91284.1936794681,6789.23211333073,2162.17583227093,33684.2043097668,0.099130059189265,493.894593379828,3,7 +150.105332515947,1918.24572719533,0.802059611551956,7614.72245345278,176727.922978531,2404.77632805469,765.852333775379,65213.2557116351,0.227857844190897,23.9021230120935,3,11 +862.815278011008,2319.84072498059,0.117699651615601,5208.81494316437,44915.8312893053,17442.2388992719,5554.85315263436,16574.1074868285,0.033437401027159,137.390967836148,5,9 +3419.5978732129,3370.69388855176,0.30812368544473,1604.99485491694,162197.550674845,25147.6322894663,8008.80009218672,59851.4947139649,0.087535137910435,544.521954333264,19,13 +3779.92600992737,246.801380213386,0.442002661417585,18706.7533595131,138208.508595178,22266.8813431145,7091.36348506831,50999.4496661173,0.125568937902723,601.899046166779,5,15 +3708.02213731209,1046.96541746196,0.290552828605051,18876.0716017375,124221.587741627,42420.3832180445,13509.6761840906,45838.224258903,0.082543417217344,590.449384922307,11,20 +935.729373323013,29.0578050018081,0.20257919739097,13123.5191130009,127090.844038791,39154.2295278647,12469.4998496384,46896.9904202181,0.057550908349707,149.001492567359,10,2 +193.28264377733,393.152042054504,0.75336476005068,13215.0709209056,168735.481899569,18494.5053656021,5889.96986165672,62264.0154610956,0.214024079559852,30.7774910473455,12,6 +295.200070535102,2062.55351203741,0.492750550052829,10784.483487375,61493.7548241647,4953.26365610848,1577.47250194538,22691.4224443412,0.139985951719554,47.0063806584557,15,9 +330.564325319557,514.61275092619,0.625578282581044,10258.1700932527,116388.449922156,25036.9591644367,7973.55387402443,42947.7674989506,0.177721103005978,52.6376314203116,10,18 +2299.32091302812,2847.67344980318,0.861247892793781,4801.59159594264,141776.602417525,44272.2967009963,14099.457548088,52316.0894529612,0.244672696816415,366.133903348427,11,12 +3694.50470956984,3192.62446423268,0.715489772456344,15578.0001570364,27286.9970259995,34549.8096638528,11003.1240967684,10069.0025926197,0.20326413990237,588.296928275452,1,8 +3161.07512055062,527.37576925296,0.664063744969692,11433.4539678971,139661.45260236,38154.8899560815,12151.2388395164,51535.5913661845,0.188654473002753,503.355910915704,4,18 +3085.77190974784,2400.14280644277,0.758585309370527,13096.5641824763,85150.1143740922,13076.8498520385,4164.60186370653,31420.7064111041,0.215507190162082,491.364953781503,0,17 +3793.32154909322,4004.96372732009,0.050471938865962,12915.1383936797,69567.3700350149,27991.5487107198,8914.50595882796,25670.616249083,0.014338618996012,604.032093804653,16,15 +2583.98377158596,2648.48420578404,0.668065574943202,24943.1047417103,166390.958319417,43834.4210604718,13960.0067071566,61398.877608641,0.189791356517955,411.462384010503,14,7 +1960.49379279674,4014.20046291993,0.546962985826163,10258.9736551157,274616.589476696,27603.8842618602,8791.04594326758,101334.534862249,0.155387211882433,312.180540254258,14,1 +361.494288542912,2399.12909697715,0.699262412627091,20323.80217295,223423.432182467,1501.06839138681,478.047258403443,82444.0709160395,0.198654094496333,57.5627847998267,13,20 +487.809047895437,990.344518795961,0.893554222117456,438.068089923613,232279.429744343,16659.274495105,5305.5014315621,85711.9666953295,0.253850631283368,77.6765999833498,12,4 +2924.96243577242,2241.80669334617,0.588125082876862,11596.7015798768,176459.11384335,33036.1264601783,10521.0593822224,65114.0641488376,0.167080989453654,465.75834964529,2,15 +1681.1859364869,915.375965276586,0.390446464089543,13311.9659152921,96196.5141789277,10425.6197363663,3320.26106253704,35496.8687007113,0.110922290934529,267.704766956513,1,1 +702.778959553541,747.935745574923,0.704323976455274,15889.0316375529,7645.8563752929,7770.44691549514,2474.66462276915,2821.34921597524,0.200092038765703,111.907477635914,7,7 +3527.15072399437,2387.08704460804,0.814759272729073,3912.76394115453,195228.633789912,29806.515832951,9492.52096590796,72040.0862693402,0.23146570247985,561.648204457702,14,17 +3675.59438041209,2200.37174070504,0.696292819927518,9173.67310667902,155647.62407222,22102.2418025214,7038.93051035713,57434.5476281255,0.197810460206681,585.285729364982,15,16 +3757.80123718747,3441.79233151189,0.629049794434436,15339.4741399735,278910.65727152,19415.3484728391,6183.23199771946,102919.061723808,0.178707327964328,598.375993182718,3,0 +164.477745896578,571.891279519496,0.936481863181542,18572.5895102526,174070.989028976,44028.1995013232,14021.7195864087,64232.837280065,0.266045983858393,26.1907238688818,5,3 +2842.29311573329,401.068216694603,0.817010932416646,5221.6217453854,130870.246886887,13984.784618161,4453.7530631086,48291.6040173015,0.232105378527456,452.59444518046,7,9 +3986.79930979418,893.202473753988,0.641565434195357,5332.19756560321,169995.376620303,27190.5275280851,8659.40367136468,62728.9212621044,0.182262907441863,634.840654425825,2,17 +1594.52680366259,2597.51012739177,0.268704683489095,3561.70546485304,8838.79370018275,8199.60447201957,2611.33900382789,3261.54749084234,0.076336557809402,253.905541984489,11,19 +3611.67412314085,639.963958132753,0.688551678988814,2097.24278426893,187442.525290551,33718.0445873379,10738.2307602987,69166.9835020483,0.195611272440004,575.10734444918,19,8 +1184.58703893003,2831.52718006714,0.219188506131546,16429.6127042186,5383.00367622579,11286.6171845025,3594.46407149761,1986.34822000952,0.062269461969189,188.628509383763,11,15 +3421.4452327892,115.048161935454,0.094672706414936,13095.6585928976,96812.6531486784,12295.083082522,3915.63155494331,35724.2262541249,0.026895655231516,544.816119870892,6,15 +828.937662249263,858.789032908349,0.788170392482487,9132.37994532415,241338.891383288,3023.0040989789,962.740158910478,89054.941469848,0.223912043318888,131.996443033322,9,1 +2888.79393187425,3710.45678084917,0.843026703848832,16237.1275153281,2211.97049985543,24821.1195207771,7904.81513400545,816.225276699421,0.239496222684327,459.999033737938,17,21 +2893.66087629992,1212.89432275718,0.806260163993097,8016.10575997813,148328.23705383,34552.0569558551,11003.8397948583,54733.6668095314,0.229051182952584,460.774024888522,13,6 +1571.83537259087,3366.59841148369,0.662607301047382,9668.76331828621,184730.73824118,12266.9445133865,3906.67022719315,68166.3240742362,0.188240710524824,250.292256781986,5,22 +2747.24909741814,3302.12894842635,0.726893887099136,5701.13357571615,134100.591768985,12535.3207369272,3992.14036207873,49483.6131988875,0.206503945198618,437.460047359576,15,24 +3377.05970574681,3546.28393525576,0.3493625577652,10963.1737991545,271052.664513531,39391.7292304109,12545.1366975831,100019.433399827,0.099250726637841,537.748360787709,3,24 +2310.85344388303,710.900080332296,0.714536448936253,18762.411203164,6162.33400218205,34518.9018766753,10993.2808524444,2273.92398604504,0.20299330935689,367.970293611947,8,16 +2126.84549255816,171.16431923729,0.988165406662874,7187.99868153149,196259.782416678,25325.6117606605,8065.48145243965,72420.5839175934,0.280728808711044,338.669664420089,19,14 +3226.39649918153,631.04606079832,0.494197531199072,21340.873260851,100383.044446384,23987.7131609283,7639.39909583704,37041.7138178539,0.140397025908827,513.757404328269,12,23 +3222.16313298086,755.211152329937,0.957786887753025,7398.49588987451,112900.075413533,20496.1157468812,6527.42539709592,41660.544433038,0.272098547657109,513.083301430073,18,11 +213.127828302886,3427.68841591565,0.208312183361952,19108.5762853536,221857.787558243,18551.9946532768,5908.27855199898,81866.3422724144,0.059179597546009,33.9375522775296,5,25 +350.230027095799,2157.13520189016,0.757932152720655,12940.5983902373,178092.962110264,3546.44309935616,1129.44047750196,65716.9601882893,0.215321634295641,55.7691125948725,8,6 +2034.18518899914,1729.14973662477,0.714482756727693,3414.00482274693,263965.696374589,4705.16130092968,1498.45901303493,97404.3160053834,0.202978055888549,323.914839012602,16,20 +3370.59981923912,1350.61637672962,0.137921139362747,5639.50969893105,37472.9533220135,32861.1957977719,10465.3489801821,13827.6580524035,0.039182141864417,536.71971643935,4,0 +3411.8323535464,2672.6663257045,0.159179305624638,7632.64156189005,195566.11524711,8384.38888060501,2670.18754159395,72164.6181723653,0.045221393643363,543.285406615669,3,7 +2879.79949968511,2231.15905671884,0.469971132640466,11107.7518174418,239417.783515873,20552.9099540531,6545.51272422073,88346.0455778129,0.133514526318314,458.566799312916,16,4 +2954.85085986877,3474.88335155301,0.619487784471338,1909.70268591796,207805.411878381,13034.1019601039,4150.98788538341,76680.9637927605,0.175990847861176,470.517652845346,9,22 +2769.59438769286,3670.26284836314,0.22025252497544,12706.09200959,243274.767844946,7838.33088932427,2496.28372271474,89769.2870276554,0.062571740049841,441.018214600774,3,5 +2359.91527239269,298.004176609899,0.66182011816151,18136.5338300769,286250.85082954,31229.7812567011,9945.79020914048,105627.620232303,0.188017079023156,375.782686686734,3,19 +2412.67519843642,1175.18082509494,0.299672758337683,1328.59027676679,269487.80831318,39553.1779336646,12596.5534820588,99441.9956875203,0.085134306345933,384.183948795608,1,4 +1505.6552564646,2950.22449464876,0.314318253547708,6534.83091610914,98903.6196073088,28964.1605347564,9224.25494737465,36495.8005931029,0.089294958394235,239.754021730032,10,17 +2360.11522606746,1138.0113211705,0.250519408725437,10062.5442758328,15535.0547171229,12239.008401156,3897.77337616433,5732.4925155435,0.071170286569727,375.814526443863,5,9 +3902.23779719974,978.278620406921,0.427329832522447,13136.9621883154,112335.952149862,2459.11817864133,783.158655618258,41452.3808671077,0.121400520602968,621.375445413971,5,7 +3372.16689994788,2841.53214542909,0.883924539159425,10050.5098454307,137003.93383526,37313.525401187,11883.2883443271,50554.9571347823,0.251114925897564,536.969251584057,5,15 +3773.8356242402,2886.7019351153,0.682696482725765,21453.7227028068,210606.271153404,4737.76974272809,1508.84386711086,77714.4912005181,0.193947864410729,600.929239528694,2,3 +3927.95992756792,2305.21756802321,0.991106850461718,6942.09901865872,134623.966718845,39988.5769878616,12735.2156012298,49676.7404866587,0.281564446153897,625.471326045847,1,19 +3896.91588600925,1755.6284718629,0.92473837812579,19965.3147646341,255281.248346763,15625.9842919833,4976.42811846602,94199.7226371819,0.262709766513009,620.528007326314,16,11 +1862.74028366238,1033.92153859644,0.19941064051463,15688.4806131201,247900.520161847,43281.9388208349,13784.0569493105,91476.2067017886,0.056650750146202,296.614694850697,18,22 +1348.73617629108,751.977584069244,0.286079725956077,14066.7828123059,287889.456982651,26762.7099788776,8523.15604422854,106232.271949318,0.08127264941934,214.76690705272,1,25 +3797.22666301646,381.152637754463,0.230013975548974,8807.20647031138,261223.513485722,17276.2208951162,5501.9811767886,96392.4404006354,0.065344879417322,604.65392723192,9,0 +1322.76567189282,3918.31004112493,0.745950538066557,19158.8974846522,225246.475144367,28559.0727635911,9095.24610305449,83116.7804960764,0.211917766496181,210.631476416054,19,3 +1777.40741780981,3532.15725402784,0.831862518086648,6566.87683173874,15036.2551621355,43792.9899405066,13946.8120829639,5548.43363916439,0.236324579001889,283.026658886912,4,22 +1625.72207930111,1457.02444022429,0.724790661005147,22152.0386207366,133042.969299725,10988.6250084464,3499.56210460076,49093.3466050646,0.205906437785553,258.872942563871,6,14 +3561.4470953623,2679.70834674089,0.717148460729014,20297.2423040836,219801.309457496,5210.63919265575,1659.43923332986,81107.4942647587,0.203735358161652,567.109410089538,17,8 +799.044614657517,1170.36425928361,0.023029639159374,18994.2236192332,22529.4319242985,20184.8749396511,6428.30412090799,8313.44351450129,0.006542511124822,127.236403607885,2,24 +3046.59256390318,818.264480144991,0.893732457047732,1916.73694916748,162378.251537761,18099.4221092206,5764.14716854159,59918.1739991738,0.253901266206742,485.126204443182,10,15 +1098.73495844121,3852.02857737633,0.401994463584216,5204.79868605394,201115.548435062,20438.8481175641,6509.18729858729,74212.3794963328,0.114202972609152,174.957795930129,2,19 +3460.19206352951,528.146855078439,0.766805434835432,17772.7281750241,55689.3685352012,42177.9037693915,13432.4534297425,20549.5824853141,0.217842453078248,550.98599737731,19,24 +3843.45886320346,1963.37748762781,0.935006604540655,18129.7912172468,144880.007825235,26908.9629266964,8569.73341614535,53461.2575000867,0.265626876289959,612.015742548322,16,4 +564.496034784268,1387.93518133838,0.675747892343795,4306.68657965588,149277.853816079,5251.84618470269,1672.56247920468,55084.0788989221,0.191973833052214,89.8879036280681,9,5 +3323.81879563772,2983.9120439339,0.677691760986781,22131.5814668815,137286.991813303,39435.8916889889,12559.2011748372,50659.4065731745,0.192526068462154,529.27050885951,6,7 +2448.24031742361,1138.53191386855,0.592268003151597,22809.9036244413,27877.3167605496,28715.8801270349,9145.18475383277,10286.8327529703,0.168257955440795,389.847184303123,11,8 +152.840064813191,831.463703673682,0.92590795917167,4196.52269830594,72943.956638738,40254.2876061778,12819.8368172541,26916.589165586,0.263042033855588,24.3375899384062,18,18 +2224.72515815317,2236.70712259279,0.74290576556278,9264.29645135789,208606.214966758,7965.53452693625,2536.79443533002,76976.4630873646,0.211052774307608,354.255598432033,0,13 +868.979747336652,373.260262757544,0.347583637436497,1020.39706138814,78348.3692263174,37390.0935491227,11907.6731048161,28910.8373528846,0.098745351544459,138.372571231951,12,1 +447.046874675594,2657.24259870949,0.213380521007765,17920.2653545033,245804.857685768,26141.7522296124,8325.39879923962,90702.8995150435,0.060619466195388,71.1858080693621,17,10 +1678.20998849029,2132.54167055093,0.441088251093499,12741.1942243732,180987.623563283,7734.54940150662,2463.23229347345,66785.1009458609,0.125309162242471,267.230889886989,16,22 +3615.2547191087,3580.95568969205,0.528426781953686,128.96830829743,59902.1098070487,28259.953346551,8999.98514221369,22104.0995597966,0.150121244873206,575.677503042787,18,4 +3059.12118460866,3760.72666324483,0.16441899202899,24470.425130659,61927.5971639952,31972.3755592184,10182.2852099422,22851.5118686329,0.046709940917327,487.121207740232,11,6 +1183.62870319606,1073.87549376424,0.349063212690306,14163.6116066785,43924.6233863981,23104.448327789,7358.10456299013,16208.348113062,0.099165685423382,188.475908152239,15,21 +177.858280532523,1535.59914900388,0.23117398955662,9403.67281383856,223040.821093815,31298.6815488352,9967.73297733605,82302.8860124779,0.065674428851313,28.3213822504017,2,4 +1324.48324270863,3911.4948191106,0.651289195593978,5927.83268442013,236686.037207981,26368.3278851599,8397.55665132481,87338.0211099561,0.18502533965738,210.904974953604,5,7 +376.764160732475,1941.40657517463,0.216765732477996,11700.4717069939,84225.0593267931,34424.4350977796,10963.1958910126,31079.3576851635,0.061581173999431,59.9942931102667,8,17 +1538.97375464841,99.9660444039603,0.415038762952952,17478.6590461619,50760.3809976425,30302.6835259351,9650.5361547564,18730.767895809,0.11790873947527,245.059515071403,0,3 +535.093756826815,193.84115883813,0.834330982551313,24877.2844859806,77148.4337173746,8885.64171886878,2829.82220346139,28468.0567222785,0.237025847315714,85.2060122335693,15,20 +930.14285922821,2764.847736596,0.607769944774642,6610.86039052766,192895.882136096,13311.455315014,4239.31697930382,71179.2923011424,0.17266191612916,148.111920259269,15,23 +3663.53474562439,2265.8894323477,0.479884778603778,8830.58872064704,233092.578606553,3375.33623277321,1074.94784483223,86012.0216260343,0.136330903012437,583.365405354202,8,12 +3135.64393560115,1190.2840732403,0.153379404991992,12580.5969375643,38038.483440288,4041.90932243103,1287.23226829014,14036.3407528738,0.043573694599998,499.306359172158,5,21 +586.656393939888,3350.89799194624,0.630868620751,6902.41105434717,274862.962979847,19114.7255018935,6087.49219805525,101425.447594039,0.17922403998608,93.4166232388357,6,15 +2492.89826012743,2715.43033431864,0.168134356001126,21676.7281712464,168893.651546706,4070.32279468042,1296.28114480268,62322.380644541,0.047765442045775,396.958321676342,17,3 +857.287993115198,2729.97179912052,0.041232867071284,5558.21818948257,22937.9899286876,19183.7417774995,6109.47190366226,8464.20292571498,0.011713882690706,136.510826929172,9,6 +3566.82154017012,2404.63141934799,0.996096041575762,19043.9446453742,86912.2045893031,35580.2397369071,11331.2865404163,32070.9242026949,0.282981829993114,567.965213402885,2,9 +593.789901688625,3064.57280721703,0.895061723814188,13700.1199202496,53641.0732277422,33009.2109430597,10512.487561484,19793.7539585765,0.254278898810849,94.5525321160231,10,1 +635.059306979201,108.795854967797,0.848103594685113,16535.9783359727,256352.624648887,23413.2914061597,7456.46223126105,94595.0644460838,0.240938521217362,101.124093468026,2,18 +197.319032523458,2711.11642723126,0.351425901057467,20354.5632417951,94398.3285529601,38999.745053048,12420.3009723083,34833.331569358,0.099836903709508,31.4202281088309,18,1 +355.732488912975,596.474094883532,0.000558630154521,24837.6257575505,280468.248491043,35426.0596316156,11282.1845960559,103493.818631381,0.000158701748443,56.6453007823209,14,14 +1388.34275608383,3472.17128567337,0.572839405995647,13139.7532775499,118847.432213905,34585.7510156573,11014.570387152,43855.1410383413,0.1627384676124,221.073687274495,13,21 +958.580804596833,617.140058481411,0.742327243618757,24184.3353826737,55306.1159901343,31552.968435026,10048.7160621102,20408.1608819684,0.210888421482601,152.64025550905,16,11 +2688.98603277912,1359.25473177891,0.033908785383845,13036.655904959,28635.2383750588,33148.1613480827,10556.7392828289,10566.508625483,0.009633177665865,428.182489296038,2,25 +3728.48573917962,2386.57871813175,0.122026868795956,22076.6399588282,215748.26756082,17634.0310702186,5615.93346185306,79611.9068490111,0.03466672408976,593.707920251532,4,6 +2926.47530504252,3858.63037723248,0.258749020662698,19898.1767197521,195584.333560897,32612.2037079662,10386.052136295,72171.340797379,0.073508244506448,465.999252395306,9,24 +3176.028794128,260.304483850628,0.357882158072004,3899.65759658476,270235.536094355,20466.4403227384,6517.97462507592,99717.909997917,0.101671067634092,505.737069128662,4,6 +310.080906855103,1023.571459327,0.318447198937519,11801.4010033351,270511.301292795,33146.1267063304,10556.0913077485,99819.6683737251,0.090467954243613,49.3759405820228,0,1 +1680.42768096147,1329.30735617562,0.210214747347864,5225.56427078965,69285.159322111,9169.31142038561,2920.16287273427,25566.4794546535,0.059720098678371,267.584025630807,19,11 +1033.89725937634,1669.15779647722,0.184256437274978,9296.69593524372,60374.0819499207,6564.60570480312,2090.63875949144,22278.259022111,0.052345578771301,164.633321556742,8,25 +942.741105983028,3722.2751785316,0.798801809115598,325.589990590459,174243.393544979,43838.3361699558,13961.2535573108,64296.4551826491,0.226932332135113,150.118010506852,14,3 +1439.19002701619,1437.32074874593,0.518848543691685,17576.2976359319,202745.300257264,13539.3848360467,4311.90599874099,74813.7639325697,0.147400154457865,229.170386467546,1,11 +1708.88753635276,1670.82195709279,0.751275038398915,22672.3790395605,72781.4088451166,14517.8404714654,4623.5160737151,26856.6084299323,0.213430408636055,272.115849737701,3,20 +3514.21318597521,1297.17905794622,0.709232887860217,24406.7316203636,60717.4375445375,20117.8037604758,6406.94387276299,22404.9585035194,0.20148661586938,559.588086938728,6,8 +3883.72820470682,2758.2935785745,0.657033812779837,4391.18650406359,255550.725334174,23602.6023653315,7516.75234564697,94299.1606399166,0.18665733317609,618.428058074334,11,5 +2178.2173780446,182.482788013798,0.565017217104146,3804.90616004873,19317.8317468731,29392.5336693394,9360.67951252847,7128.35119810816,0.160516254859132,346.849900962516,0,4 +3903.85292950013,2187.24060332115,0.544387926004488,13444.894061729,168298.291578546,26087.4818073239,8308.11522526239,62102.6906193897,0.15465566079673,621.632632086008,3,18 +2111.98669543073,690.830902683851,0.40304375738896,17903.0143865626,18506.1818956694,17903.1483164836,5701.63959123681,6828.84940799609,0.114501067440045,336.303613922091,0,5 +1979.61067022232,3548.05245659723,0.287273001608749,3275.65849348302,180351.448138306,806.057109008515,256.706085671502,66550.3498665336,0.081611648184304,315.224629016293,14,23 +2142.39014573572,1061.85804908343,0.286277775200179,12223.3621162064,222126.23473136,21876.4673493833,6967.02781827494,81965.4002698745,0.081328913409142,341.144927664924,15,14 +3978.92200757281,1060.79118161616,0.021295407483969,10927.7929788668,279013.432481472,28726.9946298013,9148.72440439532,102956.986155525,0.006049831671582,633.586306938346,2,20 +431.247747459112,47.5976171749198,0.94623537306067,13888.0488056078,51749.8974148686,22889.3638106294,7289.60630911764,19095.9031051176,0.268816867346781,68.6700234807503,14,12 +2087.23656469295,3310.95420267424,0.148009148582672,9887.96171760901,245101.464566628,14403.7691716986,4587.18763429892,90443.3448585343,0.042048053574623,332.362510301425,9,6 +1599.11646021946,3994.35235337111,0.662921967820516,13111.5872739171,31706.5989184839,8407.33269561802,2677.49448905032,11699.8519994406,0.188330104494465,254.636379015838,10,12 +3584.16457680761,2355.07542696654,0.36458917858372,12826.5888990284,3162.35054617507,29962.0884037017,9542.06637060564,1166.91902072881,0.103576471188557,570.726843440702,12,8 +2528.48238403048,1626.36995474069,0.746173895866474,24931.2943292953,240006.376929959,42902.7733913631,13663.3036278226,88563.2387195421,0.211981220416612,402.624583444344,19,22 +3409.07465073868,2209.66060024301,0.448096320989773,12793.4094576742,31312.8572156237,6616.12283752416,2107.04548965738,11554.5598581637,0.127300091190276,542.846281964758,2,3 +2626.68907994429,2682.38302972885,0.181330931125309,14949.2711846329,43616.4161062891,18477.9004310882,5884.68166595166,16094.6184894056,0.05151446906969,418.262592347817,7,3 +2974.5917113644,1357.16904837911,0.014587018026196,19259.1672996157,260399.160669661,15872.0892452705,5054.80549212436,96088.2511696166,0.004144039211988,473.661100535733,6,0 +2710.32388753179,2466.96073105262,0.101621391044511,22156.5891091711,76232.3843504211,30547.1403634278,9728.38865077318,28130.0311256166,0.028869713364918,431.580236868119,2,12 +46.6581916196957,3639.49054290528,0.079128076771737,20739.1334227604,83523.6870962244,14932.495372339,4755.57177463026,30820.5487439942,0.022479567264698,7.4296483470853,3,2 +3073.19576091686,3661.46513914663,0.382937744957613,12890.4339139065,117519.721700214,5907.70086750242,1881.43339729376,43365.2109594886,0.108789132090231,489.362382311602,14,19 +1355.35147592524,2244.06773179863,0.624415817898667,18581.1411474954,147974.239134451,38122.9779939723,12141.0757942587,54603.0402710151,0.177390857357576,215.82029871421,17,22 +2413.71843604945,3012.77566449227,0.210156535906658,8968.560743983,145354.154329546,42367.0584051549,13492.6937596035,53636.2193097956,0.059703561337119,384.350069434626,10,0 +214.207072116169,312.653991395604,0.32319128035059,13014.0210147846,51428.0702313987,37973.1104389484,12093.3472735504,18977.147686863,0.091815704645054,34.109406387925,9,14 +231.638422626548,994.994909182058,0.496398784469446,22602.0304037555,89047.7741550583,39578.6618622214,12604.6693828731,32858.957252789,0.141022381951547,36.8850991443548,0,15 +2882.9307974601,4013.9719889788,0.256636176865382,15007.2638805782,247660.347487952,34031.937936361,10838.1967950194,91387.5820988753,0.072908004791302,459.065413608296,4,15 +3882.95155770204,625.055599777633,0.841036274155358,20420.1097338755,30371.6870783868,21324.4302770725,6791.21983346258,11207.2646045708,0.238930759703227,618.304388169115,2,16 +3094.69388025943,881.471518081615,0.183828928131706,12951.9821319529,245239.035081819,32824.3556376216,10453.6164451024,90494.1088862801,0.052224127310144,492.785649722839,9,25 +301.924449890045,2454.84356683491,0.373378303036454,24096.1571486487,183196.747628817,19152.7662600905,6099.6070892008,67600.2758777922,0.106073381544447,48.0771417022365,11,23 +3345.12159519224,2338.01722428609,0.148338686182466,10493.1620092839,251019.468331872,18787.7658270224,5983.36491306446,92627.1100855616,0.042141672210928,532.662674393669,12,21 +2127.2053642935,2359.73882208192,0.626717402693008,19289.940323698,254968.912772853,21834.6879316519,6953.72227122672,94084.4696578793,0.17804471667415,338.726968836545,3,0 +3307.13773386956,3448.28805315971,0.497336637762275,23496.47405091,256624.067584864,31075.2220503013,9896.56753194309,94695.2278910937,0.141288817546101,526.614288832733,9,19 +1313.51544795341,1577.00908529094,0.008370612068849,24830.1503216056,97897.9270138759,8964.86153493969,2855.05144424831,36124.6963150834,0.002378014792287,209.158510820607,12,13 +3383.6818831286,1892.72579088119,0.616842996489989,17245.4976537198,286163.082591152,21418.907265879,6821.30804645828,105595.233428469,0.175239487639201,538.802847631943,16,18 +1659.45570523587,2692.84940632747,0.523361232852922,21819.4015549335,238665.515352452,18532.5509131081,5902.0862780599,88068.4558496133,0.148682168424126,264.244539050298,14,16 +811.778209920086,432.65604589731,0.071806375728698,13482.655982512,42864.5240639166,44873.8795585912,14291.0444454112,15817.1675512607,0.020399538559289,129.264046165619,1,23 +1467.20436191089,1485.90340109194,0.926707113419714,4579.47226173452,65650.2737931235,19148.7325793245,6098.32247749188,24225.1932815954,0.263269066312419,233.631267820205,13,4 +545.295518994132,3087.4684401339,0.634449114218009,12498.9420905676,269409.531922537,34327.2342358622,10932.2402025039,99413.1114105303,0.180241225630116,86.8304966551166,15,2 +677.212172634845,3051.0044991279,0.088232701593633,18188.5249733213,248401.363742717,13235.755933959,4215.20889616529,91661.0198312609,0.025066108407282,107.836333222109,9,16 +381.497846993188,3543.26218681051,0.472039922696295,4275.64943340441,268854.580004049,1057.82102477134,336.885676678771,99208.3321048151,0.134102250765993,60.7480648078325,18,15 +33.8385363200601,350.601808593914,0.766078787798699,6148.22957652576,269021.788763151,10501.2475200818,3344.3463439751,99270.0327539303,0.217636019260994,5.38830196179301,7,25 +1841.6851822217,3913.7060866004,0.203477278182553,11240.2908278844,227344.79720676,41005.0936082165,13058.9470089861,83891.0690799852,0.057806044938225,293.261971691353,5,21 +3860.5407592567,2640.3895290393,0.400849369386382,9258.7234709521,85265.7693403422,32226.8520010017,10263.3286627394,31463.3835204215,0.113877661757495,614.735789690557,16,13 +2058.77432439026,2602.94752566993,0.211642663925259,10933.6485644355,59401.1279556141,8386.93440777803,2670.99821903759,21919.2354079757,0.060125756796949,327.83030643157,12,12 +3031.48807620824,3607.5940484315,0.882820743403683,11602.2340515675,63366.6804947924,9899.44860274681,3152.69063781746,23382.5389279677,0.250801347557865,482.72103124335,8,15 +3012.13351550046,1072.057727866,0.805516759034293,17931.4424191399,12630.9704275246,43693.1052789911,13915.0016812074,4660.87469650354,0.228839988362015,479.639094824914,9,7 +2029.1811294995,146.217714856482,0.466407375614229,24843.8788921671,75425.4126848495,12072.4916807358,3844.74257348274,27832.2556032655,0.132502095344951,323.118014251513,4,19 +2597.60711301358,2356.33841487593,0.745856015690337,7188.09753914151,95169.3575053798,4371.28540532349,1392.12910997563,35117.8440979261,0.211890913548391,413.631705893882,4,15 +2477.07126862378,2915.45061516654,0.927257575136295,14119.091050906,134467.321048525,29796.4151683021,9489.30419372678,49618.9376562823,0.263425447481902,394.438100099328,6,0 +2472.99629805625,2777.85865074741,0.573018853548183,22249.661550584,12354.4152324509,17458.9848244377,5560.18624982092,4558.82480902247,0.162789447030734,393.789219435709,19,1 +1504.16796494442,3468.11841475909,0.273515405543088,2904.9302576947,244511.505444441,1059.1897364617,337.32157212156,90225.6477654764,0.077703240211105,239.517191870131,18,15 +3655.35219277552,3937.73197358584,0.113647998250307,4216.52187921597,192173.776843834,24845.01831952,7912.42621640764,70912.8327837026,0.032286363139292,582.062451078904,7,9 +645.326495858939,1127.6216416219,0.205599287962231,12308.0601367409,223395.610457533,29758.324901386,9477.17353547325,82433.8045968756,0.058408888625634,102.758996155882,1,24 +2024.66185447508,2828.85619151912,0.186445127939469,14101.5587145609,218050.443263036,44092.7364425058,14042.2727523904,80461.4181782421,0.052967365891895,322.398384470554,8,1 +547.051009446073,3368.05551085641,0.021663640519917,18430.4753744163,170255.772141458,18702.72787925,5956.28276409236,62825.0081702797,0.006154443329522,87.1100333512855,19,8 +1784.32041520753,888.17831752969,0.324654983273642,12480.3137631595,104763.301946761,15000.2466827067,4777.14862506583,38658.0449988048,0.092231529339103,284.127454650881,9,22 +738.149805338244,2638.32957764494,0.587356752521759,8595.14221735566,276899.65745105,11970.7221216164,3812.3318858651,102176.995369391,0.166862713784591,117.539777920103,11,9 +823.375882211066,916.292002662818,0.206242824437405,13130.986514761,150404.794045952,3882.53425838986,1236.47587846811,55499.9240021963,0.058591711487899,131.110809269278,1,18 +2558.48890428377,1707.75692507046,0.410815983865925,484.938802060331,8959.75332102396,5944.01352707845,1892.99793856002,3306.18203727821,0.116709086325547,407.402691764932,0,0 +915.932316772201,824.696338070894,0.598085973532722,10310.6127212162,188201.328695453,18638.472005851,5935.81911014363,69446.9847584697,0.169910787935432,145.849095027421,16,4 +1325.11285285577,2929.08108854653,0.887796084677505,13220.4710094181,102619.919779692,18037.3394140666,5744.37560957535,37867.129069997,0.252214796783382,211.00523134646,0,22 +1945.59410748753,2665.69918758215,0.544829289933022,24647.4136662826,278689.11026634,32103.1392996103,10223.9297132517,102837.31006138,0.154781048276427,309.807978899288,16,6 +3284.64757487308,1893.61718556165,0.975452712857581,16201.711081563,162418.218465403,25006.322859634,7963.79708905541,59932.9219429531,0.277117247970904,523.033053323739,6,12 +131.87765974894,758.038044876127,0.661384463385093,22373.7288365063,149622.021328531,24889.5011807288,7926.59273271618,55211.0779810078,0.187893313461674,20.9996273485573,1,18 +3625.27613757815,128.670099610442,0.772510963657171,14893.8915913582,230714.975330441,2801.88567875286,892.320279857599,85134.6772437052,0.21946334194806,577.273270314992,15,25 +3427.98236838962,3153.77283093932,0.503513705782445,10517.3147676103,168652.576854618,36028.6667176321,11474.0976807746,62233.423193586,0.143043666415467,545.857065030194,9,10 +3940.61114412777,3979.63471749308,0.474109564186919,16291.0128386151,103529.432956696,40151.8586623888,12787.2161345187,38202.7427884487,0.134690217098557,627.48585097576,14,7 +3670.63925633003,1322.53799329951,0.253296721027099,14524.7688796594,21350.9180465448,35110.1222058284,11181.567581474,7878.56754485048,0.071959295746335,584.496696867839,7,16 +2571.05598431431,2126.30296239531,0.741930687855289,770.058558501662,12160.4040818678,33918.5079513941,10802.0725959854,4487.233978549,0.210775763595253,409.40381915833,5,20 +271.637515745944,4021.68753356677,0.89807857385906,4449.75863550956,108094.082330135,43747.3060043211,13932.263058701,39887.1152509723,0.255135958482687,43.2543814882076,14,18 +1722.66110375557,3796.82772794621,0.873066796707413,7465.89018165428,19089.6974350841,8475.0108971107,2699.04805640468,7044.16879523399,0.248030339973697,274.309092954709,14,15 +555.120444361361,3189.28569371146,0.144700242951721,19224.4443693245,113969.515291912,27752.6282075829,8838.41662661876,42055.1716944325,0.04110802356583,88.3949752167772,12,18 +914.311447409965,2613.35120842323,0.968904761216333,19660.7382666953,249319.114061994,33163.1046657264,10561.4983011868,91999.6730856066,0.275257034436458,145.590994810504,9,12 +3073.11234125948,2057.85791963602,0.249023502358238,14220.6557507982,32141.2047926345,893.995484900678,284.711937866458,11860.2231707138,0.070745313169954,489.349098926669,5,7 +518.658514574126,2018.03608517831,0.105449499875233,10747.9292180024,174422.727010288,27434.3507147478,8737.05436775408,64362.6298930952,0.029957244282737,82.5889354417398,8,23 +776.974458645401,3028.66044975147,0.96173105810026,17245.16179661,161761.38874282,34450.6533057769,10971.5456387825,59690.5493515941,0.273219050596665,123.722047555,19,19 +1576.24558877717,2.00841459205953,0.241285791092129,15350.2429810821,262932.951849473,15555.6603737773,4954.03196617111,97023.2294647502,0.068547099742082,250.994520505919,12,2 +1792.65847408763,1629.96518972304,0.377318604742309,13906.5668377745,41287.536409485,40553.7156669511,12915.1960722774,15235.2532876328,0.107192785438156,285.455171033062,17,8 +3515.15635532842,830.753381142096,0.448487280172941,7577.87588607495,238246.846366671,1006.61516396522,320.57807769593,87913.9654489561,0.12741115914004,559.738273141468,12,18 +2890.56747123299,3034.6214440192,0.727753755973865,1927.78756931579,211239.703347255,44571.8437038587,14194.8546827575,77948.2300174373,0.206748226128939,460.281444463852,19,18 +2471.52999059935,3487.61712112045,0.744103694866664,6407.7500491088,95082.8932567571,37906.4593342732,12072.1208070934,35085.9384711281,0.211393095132575,393.555730987158,14,14 +1261.0986408831,1040.53525509931,0.604728800649775,17854.4502997875,141591.370170872,42271.6062930976,13462.2949978018,52247.7380704325,0.17179795473005,200.811885490939,4,7 +1988.65095954304,883.236118138524,0.906030479984228,19225.5285453696,146649.287004315,11784.0788925967,3752.89136706901,54114.1280458727,0.257395022722792,316.664165532331,17,24 +3457.18032271856,1659.06528134668,0.949235679462047,23712.7997947493,286580.071094066,16294.111966537,5189.2076326551,105749.103724748,0.2696692271199,550.506420815057,1,2 +1694.69916762483,1765.79853224421,0.275573340840379,19451.0454840061,65408.6256845541,15255.2148466488,4858.34867727669,24136.0242378428,0.078287880920562,269.856555354272,6,18 +1797.84725800942,2708.18995961695,0.257790122966818,314.03250694117,220945.037102686,12011.4702817967,3825.30900694162,81529.533986231,0.073235830388301,286.281410511054,1,17 +3624.41103141665,2488.64405580221,0.467970973257189,18247.2039562835,160730.967764448,9483.40183118451,3020.19166598233,59310.3202082834,0.132946299220792,577.135514556791,5,7 +1208.06295040373,3211.41633786386,0.485065597766366,22651.4906856295,180107.58225745,18411.497662235,5863.53428733599,66460.3624566236,0.137802726638172,192.366711847728,18,17 +3324.10931464879,2184.10535578325,0.174259544783911,10116.1809621692,237926.287786105,41573.9822459951,13240.1217343933,87795.6781498542,0.049505552495429,529.316769848534,11,21 +3136.18395673057,3993.01697008998,0.054066053937212,3176.04917585078,225685.330400737,27249.9385863129,8678.32439054551,83278.719705069,0.015359674413981,499.392349797861,4,2 +1434.82598022438,1273.77726264098,0.433400634861367,1837.69165898367,198920.730183857,7761.13874878509,2471.70023846659,73402.4834626779,0.123125180358343,228.475474558022,14,15 +3030.38111997566,3975.00128824075,0.860451277983578,12801.1461225094,18194.3616328103,35165.3493358528,11199.1558394436,6713.78658037281,0.244446385790789,482.544764327334,13,21 +1017.08318436166,3536.36086267492,0.893267061731208,6365.58364375906,161523.841023374,27204.1516031707,8663.74254878048,59602.8933665587,0.253769051628184,161.955921076697,16,20 +2913.21131309923,897.545273112937,0.455028654832965,6041.46686457766,280446.152334144,25526.718973966,8129.52833565796,103485.66506795,0.129269504213911,463.887151767393,2,20 +2256.11096683517,3346.09712230753,0.955021488228755,15947.1277889198,116410.498662386,36000.1952738338,11465.0303419853,42955.9035654561,0.27131292279226,359.253338668021,10,16 +619.797884590412,1320.34811988997,0.119799895536803,11498.4009648263,69178.4011715957,40793.1772674033,12991.4577284724,25527.0853031718,0.034034061232046,98.6939306672631,0,25 +2186.7467973478,3613.39212120954,0.434720618597206,8977.09710497879,193129.608874914,39487.9696314816,12575.7865068413,71265.5383302266,0.123500175737843,348.20808874965,4,19 +2269.0309708762,2309.12449982878,0.189912459985104,14946.3138533407,187398.591948068,42187.3784275226,13435.4708367906,69150.7719365565,0.053952403404859,361.310664152261,3,24 +3096.02412261074,3910.00331569617,0.546976869586536,20190.4714616631,219224.660109872,29587.0005636065,9422.61164446067,80894.7085276281,0.155391156132539,492.997471753303,15,23 +2352.44035783752,3172.4964475059,0.555090660106051,23346.6280732326,178193.690233958,16346.1937555477,5205.79418966487,65754.1292376229,0.157696210257401,374.592413668395,4,16 +238.933278378063,1709.19254671991,0.252899524618648,4114.58170578209,31308.5081941794,16717.0937574523,5323.91520937971,11552.9550532027,0.071846455857571,38.0467003786724,16,1 +3959.75752690116,1033.20712869016,0.624393703368791,7636.85252958392,155826.691480633,21438.9242454454,6827.6828807151,57500.6241625952,0.177384574820679,630.534638041586,6,20 +80.4108041465278,3392.69703463363,0.261563079379693,8114.47479714411,192775.913063842,26830.134759494,8544.62890429745,71135.0232707904,0.074307693005595,12.8042681761987,15,10 +2925.5419804215,1184.7136199947,0.387292885482617,11249.1959573947,222913.543400792,11835.2068503492,3769.17415616216,82255.920074093,0.110026387921198,465.85063382508,17,21 +1300.23795877097,630.373446294677,0.233945197588309,22008.8691468945,246686.978469062,25748.1574737629,8200.05015087991,91028.4053391373,0.066461703860315,207.044260950791,6,17 +1141.42638740504,3240.72384901195,0.187793702516366,9895.2581024195,139697.651345119,32055.0798314928,10208.6241501569,51548.9488358373,0.053350483669422,181.755794172777,17,4 +2252.3831816814,2688.48087433706,0.171401026590088,19996.5848124081,205130.551050669,9169.50884125354,2920.22574562215,75693.9302769996,0.048693473463093,358.659742305955,4,12 +2181.79368082858,2796.44147189637,0.380869954327321,17003.5049863202,203545.304295612,14719.9607832765,4687.88559976959,75108.9683747646,0.108201691570262,347.419375928118,19,2 +385.7700890591,1113.0388558886,0.974703522554913,24003.5598225254,287163.337560052,23709.9166399746,7550.92886623395,105964.331202971,0.276904409816737,61.4283581304299,1,1 +3780.32421708221,198.393722631714,0.924267746373466,4658.38731162566,8850.99374373745,5353.49029464421,1704.93321485484,3266.04935193264,0.262576064310644,601.962454949397,19,3 +3047.43830134084,1747.831223671,0.242428906403121,20097.7808125662,230975.482782123,23435.3886658752,7463.49957511949,85230.8054546579,0.068871848409978,485.260876009688,14,18 +2808.9198996745,1488.0558285557,0.04671620755886,12768.5106617991,254304.965914234,31550.3049667679,10047.8678238114,93839.4708170605,0.013271649874676,447.280238801672,14,21 +2406.31222334395,3701.22901121558,0.648043940915811,2725.90138044002,33289.794527406,14046.1424910365,4473.2937869543,12284.057021183,0.184103392305628,383.170736201266,3,8 +813.213706623245,3433.13627558382,0.885024140867961,17042.9172878935,243457.656740774,23029.0351932827,7334.08764117283,89836.7737050827,0.25142731274658,129.492628443192,19,25 +895.977438409983,3803.67526065172,0.469621970600379,8068.56422294862,253068.661379477,1360.20077053578,433.184958769357,93383.2698817258,0.133415332556926,142.671566625793,4,13 +1790.46829584451,2396.2190928084,0.826572961714053,19516.1636064761,251092.824404287,23440.0306329815,7464.97790859283,92654.1787469694,0.23482186412331,285.10641653575,8,4 +2842.78227924196,1096.89346031979,0.583301101777929,12603.9828616276,217894.592682154,12755.064166433,4062.12234599777,80403.9087388022,0.165710540277821,452.672337458911,11,6 +1710.01888562832,1289.10186790952,0.717780684210975,14419.3752350952,284946.779799268,359.207962304558,114.397440224382,105146.413210062,0.203914967105391,272.296000896229,3,2 +1787.95911385822,2462.12517334214,0.737783184774215,24112.6704463592,225232.036337291,487.651628866984,155.303066518148,83111.4525229856,0.209597495674493,284.706865264048,3,23 +2387.77216829647,985.063863205567,0.766744440244436,9763.48738089531,60444.8157112962,26031.2966972379,8290.22187810124,22304.3600410687,0.217825125069442,380.218498136381,13,14 +2318.18157881841,1098.77134468115,0.876560861759979,6803.44048025502,282207.410433956,26125.2581853861,8320.14591891277,104135.575805888,0.249022972090903,369.137194079365,6,17 +3730.23362688292,2850.72910442257,0.365544759708918,24903.2417498466,59672.4550024807,41453.6664614138,13201.8046055458,22019.3560894763,0.103847943099124,593.986246318936,16,3 +491.274407005701,1624.75072080294,0.358719600459147,5710.15320166761,71949.4639848635,182.889756230144,58.2451452962242,26549.6177065917,0.101908977403167,78.2284087588696,19,12 +711.460979207826,2172.20369906613,0.503776266361339,5910.86797372984,39526.5318315225,6100.16969582112,1942.7292024908,14585.4361001928,0.143118257489017,113.289964842011,1,3 +1888.74427562223,1066.33029673124,0.964654575517223,11165.4957531897,256614.930789645,33725.478963573,10740.5983960424,94691.8563799428,0.274049595317393,300.755457901629,12,7 +1101.64666565426,2290.04684108316,0.662614879303935,7701.32704855986,24785.8365824166,23274.287964899,7412.19361939459,9146.06515956332,0.188242863438618,175.421443575519,6,21 +3542.18654382162,3607.12988473888,0.089307291246167,17834.6080287518,17827.8180491184,2816.16349371947,896.867354687729,6578.53064543114,0.02537138955857,564.042443283697,4,5 +303.788421729202,3721.1355603167,0.326422736347104,945.193889486555,32284.7247229139,29797.965625525,9489.79796991242,11913.1825545808,0.092733731916791,48.37395250465,14,20 +696.380757155502,2891.12415941545,0.212929835340468,6085.20497478186,57256.9867304158,33062.8089362492,10529.5569860666,21128.0393839173,0.060491430494451,110.88865559801,6,12 +2684.38474631887,398.706477789891,0.30530485436592,1613.14142266834,148180.915901866,20402.0587284242,6497.47093261917,54679.3047608362,0.086734333626682,427.449800369247,13,12 +292.711401058303,1492.28767036603,0.252444249130281,1150.38567979435,150119.848054386,8690.58176173453,2767.70119800463,55394.7778798472,0.071717116230194,46.6100957099209,2,1 +3026.2455690929,2484.97395260771,0.310243814797748,20055.1340990537,21085.0195258442,32218.5230936398,10260.6761444713,7780.45000953661,0.088137447385724,481.886237116704,0,2 +777.477124448061,1044.36013399045,0.641964969186054,21600.8633985967,107379.190085408,19964.3689233584,6358.0792749549,39623.3173746893,0.182376411700584,123.802089880264,8,19 +3035.33777142213,15.9984267075172,0.681104663372903,14083.2328451454,11273.5592056196,14660.1485146126,4668.83710656452,4159.9849467231,0.193495643003666,483.334040035371,12,14 +3704.12612181224,614.766877414289,0.879392949260863,18983.3037086254,212450.581972528,35416.8850563607,11279.2627568028,78395.0486983498,0.249827542403654,589.829000288573,7,19 +3501.79695525041,1244.8452849497,0.73809610317544,17786.4539083648,137060.618124804,23673.7649606616,7539.41559256739,50575.8738467911,0.209686392947568,557.610980135416,0,1 +413.361686391035,3648.07648678169,0.135857075186004,336.465985033722,229264.690325747,2534.53152579954,807.175645159089,84599.5167253679,0.038595759996024,65.8219245845597,4,24 +2898.09808320565,3162.05582558616,0.630030621553222,13527.086849198,106889.274926289,38236.6043478453,12177.2625311609,39442.5368731694,0.178985972032165,461.480586497715,12,18 +512.017095670437,3477.3278359564,0.753686016991727,6295.98747666061,94316.8309014858,33729.0415505236,10741.7329778738,34803.2586352346,0.214115345736286,81.5313846608976,10,4 +1347.29125952954,3234.14985793113,0.160100812751973,13589.4553738269,160612.382342273,27237.6088959059,8674.39773754965,59266.5617499162,0.045483185440902,214.53682476585,3,10 +3900.12222810174,2334.46083363788,0.121627038364096,10861.5502268228,156941.939466504,37243.6184947752,11861.0249983361,57912.1547846878,0.034553135898891,621.03857135378,0,1 +2436.63548045544,1443.60305237769,0.146809223719367,13502.9354322322,32767.389426573,34997.8555500419,11145.8138694401,12091.2876112816,0.041707165829366,387.999280327299,12,6 +18.6226430672541,1857.03215408003,0.02239904321596,2895.2936037959,94984.0602144915,34272.7741091534,10914.8962131062,35049.4687138345,0.006363364549989,2.9653890234481,11,23 +2084.57185232392,3257.91990934232,0.809628043655024,17307.7591277216,243896.433313992,35380.9713003526,11267.8252548894,89998.6838797019,0.23000796694745,331.93819304521,15,8 +3607.72464226533,3145.48555970346,0.236796841712122,17064.1348758943,100101.852463047,4978.1829267068,1585.40857538433,36937.9529383937,0.067271830031853,574.478446220594,12,25 +3075.01391308665,1772.53738904085,0.682402967446277,9665.60706749837,60009.510508852,21195.2790070859,6750.08885575984,22143.7308150745,0.193864479388147,489.65189698832,3,3 +3339.45339873574,1702.75724588978,0.384445136739661,13804.6454574959,143784.532100753,31334.5683045601,9979.16188043315,53057.022915407,0.109217368391949,531.760095340086,7,11 +3179.99775508127,2478.53246478865,0.612195676330188,20603.8375473886,144038.923619267,33546.3711986185,10683.5577065664,53150.8943244528,0.173919226230167,506.369069280457,3,5 +2066.10809108383,3893.21688268453,0.001818874258047,1973.03840536131,120831.396507968,5028.83242633393,1601.53898927832,44587.231183752,0.000516725641491,328.998103675769,3,18 +1215.04751014905,1361.82574119209,0.641010781209164,8263.3804852749,114451.904705923,31758.3534767587,10114.1253110696,42233.1751682373,0.182105335570785,193.478902889976,7,22 +382.607206303727,3189.7447887788,0.119748707618711,10398.0565120382,158733.057746976,11395.4759497425,3629.13246807086,58573.0840394745,0.034019519209861,60.9247143795744,6,13 +3772.36509007268,1014.85543285459,0.909345502505612,6792.33752790406,88359.6628149068,6827.9934403564,2174.52020393516,32605.0416291169,0.258336790484549,600.695078037051,10,16 +3356.85427714915,2992.75625510199,0.222770413435262,4508.74527001485,266202.346238226,36927.3458921585,11760.3012395409,98229.648058386,0.063287049271381,534.530935851775,3,16 +364.224019713988,2643.2846255742,0.697452359855486,6817.37178411088,65306.2796483959,39659.3793285271,12630.3755823335,24098.2581728398,0.198139874958945,57.9974553684694,16,23 +463.972525971752,345.292079033569,0.904140224696106,23843.9585377439,200571.330671298,26455.8393224341,8425.42653580704,74011.5611333203,0.256858018379576,73.8809754732089,1,25 +3000.11340429513,3669.75842441102,0.496858149372129,24959.6312017859,239574.220439961,27230.1403660931,8672.01922487041,88403.7713800594,0.141152883344355,477.725064378205,13,20 +36.9296958102263,3597.46640216863,0.096364704281463,10463.9700543251,13314.5818532782,248.755599619716,79.2215285413108,4913.12983515801,0.027376336443598,5.88052481054559,8,20 +2383.81236876736,3926.96312102373,0.769367631012017,24103.7446292768,214707.102963237,7047.5932853392,2244.45646029911,79227.7132705672,0.218570349719323,379.587956810089,16,5 +1657.38164951864,2347.09322948862,0.782031417784942,20426.3153349825,134910.300526425,43957.1972502356,13999.1074045336,49782.398718238,0.222168016416177,263.914275401057,11,2 +3341.629417387,3472.62427455819,0.715102024015155,23225.6809317971,148547.609672539,43690.0737124455,13914.0362141546,54814.616115328,0.203153984095214,532.106595125318,19,17 +1855.16980012611,2082.37043600854,0.944339338685183,12227.9438049196,230175.762529471,31475.4016682252,10024.0132701354,84935.7057304321,0.268278221217382,295.409203841737,8,16 +181.169865303617,266.376367676387,0.88437643001085,14653.6666662097,71980.5963408375,3805.03618094185,1211.79496208339,26561.1056608256,0.251243303980355,28.848704666181,3,18 +3138.8395541286,2828.24757772837,0.201058679318984,22230.3053282208,206779.75964043,15424.1239093717,4912.14137241137,76302.494332262,0.057118942988348,499.815215625573,11,5 +29.8354348368713,1575.57231157071,0.403124969290942,13227.6464553482,151942.819620784,1053.69552525827,335.571823330659,56067.4611146804,0.114524139003109,4.75086541988397,12,10 +740.42692462363,1706.76810566622,0.426681285581445,14578.5672878756,226092.323780871,42402.972751961,13504.1314496691,83428.9017641591,0.121216274312911,117.902376532425,2,2 +1232.33078003273,1657.02214177205,0.983869239490238,12953.0669201181,5836.19487948962,37013.8770009706,11787.8589175066,2153.57744630613,0.279508306673363,196.231015928779,13,18 +1932.7220090079,1379.98618256481,0.81352021931056,4829.38727890052,60370.3474113409,35513.7080557393,11310.0981069233,22276.8809635944,0.231113698667773,307.758281689156,7,3 +2357.8941237712,564.918882598947,0.676880109674945,1005.29446019639,59045.7202477522,6947.82352090087,2212.68264996843,21788.0886523071,0.192295485703109,375.460847734268,9,17 +2939.72494399958,1784.22028435444,0.002261490089067,20039.7151638132,36241.4106604605,15030.1764317399,4786.68039227385,13373.2142658526,0.000642468775303,468.109067515857,19,17 +3465.71702691224,2543.56237866507,0.327579427154451,8569.25848992421,280434.562408844,42162.5960234093,13427.5783514042,103481.388342747,0.093062337259787,551.865768616599,11,3 +2171.44830990502,3336.32196475404,0.79294615819915,13006.5371543287,265915.955591548,31597.3795159181,10062.8597184453,98123.9688529698,0.22526879494294,345.772023870226,10,15 +573.939813428305,2866.24825077245,0.219440948527453,4766.17878613197,80661.5354382368,41779.3382594878,13305.5217386904,29764.4042207516,0.062341178558936,91.3916900363543,3,18 +694.95723734683,2049.84710462956,0.172430232992201,14017.926311633,255382.097054059,1506.56238577121,479.796938143697,94236.9361823096,0.048985861645512,110.66198046924,17,0 +1228.45359205876,1513.62888877671,0.783747021510613,142.206714314547,138816.945152409,25803.4150097722,8217.64809228414,51223.9650008889,0.222655403838242,195.61362930872,3,16 +0.399709922024287,95.7512090976655,0.65674289118391,19370.7090801739,264854.429061387,32030.6850949159,10200.8551257694,97732.2616462683,0.186574684995429,0.06364807675546,13,5 +544.384135606758,3323.62433606062,0.312887573344494,19782.0624482285,65272.8114711668,3997.03627923308,1272.94149020162,24085.9082919435,0.088888515154686,86.6853719119041,10,7 +3815.09795988099,2272.1565592599,0.104317963243163,9698.04256306841,157751.026893808,39601.7836170302,12612.0329990542,58210.7110309255,0.029635785012262,607.499675140285,17,12 +1656.15129223878,3340.24823215246,0.303679486788645,10909.3948297598,19485.3784112946,19358.2115207524,6165.03551616318,7190.17653553306,0.086272581474047,263.718358636748,2,1 +2732.90851831471,2163.92314388324,0.166404337921086,19793.3660355076,41080.2266528483,30515.2113697025,9718.22018143392,15158.7552224532,0.047273959636672,435.176515655209,6,17 +1043.93752215442,1998.65289709732,0.596592743878252,21901.971131486,44119.3140279311,7835.92511471998,2495.51755245859,16280.1896782034,0.169486574965412,166.232089515035,13,0 +845.253720680408,2826.81881199405,0.841700186782215,22342.9353682353,239569.300432118,6708.67779642948,2136.52159121958,88401.9558790103,0.239119371244947,134.594541509619,15,12 +3225.65316401379,3147.93906424478,0.80645791980458,13708.5993083457,53825.6447590956,13858.9066411323,4413.66453539245,19861.8615347216,0.229107363580847,513.639038855699,9,2 +228.311547930598,3381.76123371795,0.504930791439067,21255.8004103678,35900.1377455523,36097.0023889037,11495.8606334088,13247.2833009418,0.143446247567917,36.3553420271653,0,22 +1657.72409214705,3670.85906899713,0.196649960686982,21803.1878079744,119108.165882523,23553.7193962522,7501.18452109943,43951.3527241782,0.055866466104256,263.968804482014,4,10 +3688.91713441841,2387.9017847732,0.504172056192506,3948.90019164127,159103.183829968,44680.2230411273,14229.3703952635,58709.6619298775,0.143230697781962,587.407187009301,9,25 +3457.05860676981,1896.78161220932,0.789281297564536,22451.0562787347,69174.8836821245,8046.15927244959,2562.47110587567,25525.7873365773,0.224227641353561,550.487039294556,10,6 +2029.75366077459,3571.04435759171,0.926477104792868,24860.0215764082,274372.273834093,36563.8131959944,11644.5264955396,101244.381488595,0.263203722952519,323.209181652005,7,12 +2675.09951966904,3091.4486615215,0.700329823192847,4409.11153424662,106939.340880512,39119.1758502441,12458.3362580395,39461.0113950229,0.198957336134332,425.971261093796,6,5 +2512.5024562633,790.49219971893,0.60477910121366,3372.09188537732,137595.173902284,41422.6530655625,13191.9277278861,50773.1269012118,0.171812244662972,400.080008959124,2,11 +2639.45951383215,2118.31041570496,0.298577848217561,7851.24493959094,208110.466871081,26447.4152311518,8422.74370418847,76793.530210731,0.084823252334534,420.296100928686,5,13 +2046.04068742438,2356.6042653811,0.823752227285453,1169.44854547492,91224.5036299085,24490.4770984672,7799.51499951185,33662.1784612208,0.234020519115186,325.802657233181,14,20 +2957.46720287604,2618.63935680091,0.373600356441884,12345.1673293536,262327.542197948,23295.3907484328,7418.91425109325,96799.8310693535,0.106136464898263,470.934267973892,2,8 +833.009687464724,1388.21627233048,0.287149397277626,14637.312954594,59101.6318258362,24903.3530707299,7931.00416265283,21808.7202309359,0.081576533317507,132.644854691835,13,13 +3664.83988433137,2645.92700870205,0.493858651989996,23935.5515013551,197200.114894416,22543.4466726299,7179.44161548723,72767.5700717402,0.140300753406249,583.573229989072,15,9 +1535.29666091187,2426.08105911609,0.286598651278703,6000.24312458561,283128.246059603,20148.5892717665,6416.74817572182,104475.367549669,0.081420071385995,244.473990591062,8,24 +3302.98405894334,668.904294406762,0.779640073111205,16975.5372640629,212022.959186184,7770.61853068905,2474.71927728951,78237.254312245,0.221488657133865,525.95287562792,5,3 +657.232478052763,1715.42265284622,0.301994566997697,20933.7101308382,1331.73703064908,6979.94040386829,2222.91095664595,491.415878468295,0.085793911078891,104.654853193115,3,7 +1777.18791140633,1492.18541331256,0.449081675679239,3731.61877119359,221188.637485641,22535.2385566867,7176.82756582379,81619.4234264358,0.127580021499784,282.991705637951,11,3 +774.633870094332,382.425002827125,0.081542249323368,23955.4911760928,135299.829466513,19370.4844656447,6168.94409733908,49926.1363345067,0.023165411739593,123.349342371709,13,19 +71.070681106342,2392.18642382606,0.899581868647763,19584.5178298809,124537.05746057,33930.4288841318,10805.8690713796,45954.6337492878,0.255563030865842,11.3169874373156,2,12 +3199.76895175688,2556.0107458305,0.262755364193293,9624.8464909908,83106.0215451418,15584.1174359091,4963.09472481182,30666.4286144435,0.074646410282186,509.517349005873,1,21 +2471.40935194807,1712.65341400099,0.989951028564093,18957.3063465822,184336.390321556,7695.08654364654,2450.66450434603,68020.8082367365,0.281236087660254,393.536521010839,16,22 +3417.13127686013,1153.75225391936,0.497380011135206,6918.56045404518,158994.246313615,23701.1447693811,7548.13527687296,58669.4635843598,0.141301139527047,544.129184213397,14,18 +1177.66908475058,1064.9396752512,0.836382511296201,16063.3437485628,19535.8791781989,13066.8584899491,4161.41990125767,7208.81150487044,0.237608667981875,187.526924323341,3,14 +777.619373104362,3193.34504349031,0.073301707087257,23260.8152732646,122401.357723853,20790.9978154225,6621.33688389252,45166.5526656284,0.020824348604334,123.824740940185,7,8 +693.180539603865,2269.9629539678,0.383113674378224,17215.1893368861,199393.614187259,36400.4393005943,11592.496592546,73576.9794048926,0.108839112039268,110.379066815902,10,12 +2881.90735793309,3144.16651863794,0.368206599033806,13235.6131530076,172455.471903693,9391.89061935504,2991.04796794746,63636.7054995177,0.104604147452786,458.902445530747,7,23 +2402.71250235679,2644.1533083324,0.334266820650455,23506.7269545104,166607.296094898,13160.9748688514,4191.39327033484,61478.7070460878,0.094962164957516,382.597532222419,12,9 +990.118678604633,221.567283680248,0.534914939169116,21268.6617058628,259029.533227891,7306.85322182375,2327.02331905215,95582.8535896277,0.151964471354863,157.662209968891,16,15 +3680.98782364131,3141.59489800786,0.023942947521461,7584.27950184131,232214.835378608,3927.59105595131,1250.82517705456,85688.1311360177,0.006801973727688,586.144557904667,18,7 +645.002889576848,246.839689408866,0.014610300252359,12085.2224577937,47160.6683743898,23392.7918761002,7449.93371850325,17402.4606547564,0.004150653480784,102.707466493129,5,12 +2286.13061541993,2989.13131749134,0.26029720515598,15353.5213692325,288720.090396136,43910.8669541739,13984.3525331764,106538.778743962,0.073948069646585,364.03353748725,0,7 +2811.6768966971,168.070422840625,0.566273693933228,22609.452336148,60290.3438477408,11039.6000164294,3515.79618357624,22247.3593534099,0.160873208503758,447.719251066417,18,0 +3344.52956975444,412.942204680491,0.510985046316,6917.04342279543,59533.8650257718,21891.1067515481,6971.69004826373,21968.2158766686,0.145166206339773,532.56840282714,8,23 +3169.17721360323,1774.73374117729,0.365081849445729,17155.019340446,215629.378391214,43619.3850847964,13891.5239123555,79568.036306721,0.103716434501628,504.646053121533,15,12 +2548.34415166402,3056.95673989492,0.660558388136652,8081.00395653142,130147.742322343,43212.9835972843,13762.0966870332,48024.9971669162,0.187658632993367,405.787285296819,3,4 +1964.49764096169,2954.87639410794,0.348906960415043,22863.17755961,182105.82057174,13506.6016735679,4301.46550113627,67197.7197681697,0.099121295572455,312.818095694537,10,24 +1894.32909686833,1837.30581094426,0.416334434026034,19825.58404942,219503.271348801,11299.2008729648,3598.47161559389,80997.5171028786,0.118276827848305,301.644760647823,18,8 +32.5877080615944,2377.84448083918,0.325168094619414,18873.602572449,2446.14972096999,30023.2018953769,9561.5292660436,902.638273420661,0.092377299607788,5.18912548751503,17,14 +1322.06393068714,1948.07049336923,0.928417718672261,11942.0571489739,279595.337921548,23199.6156501573,7388.41262743863,103171.711410165,0.26375503371371,210.51973418585,1,4 +320.952273278341,837.014720810878,0.250484003413848,18436.3742142262,204995.027648213,24950.3144323451,7945.96001030099,75643.921641407,0.071160228242571,51.1070498850861,19,9 +2562.27740226355,710.368516877509,0.19162783526955,20844.8574248757,160655.534691263,37669.9549821752,11996.8009497373,59282.4851259273,0.05443972592885,408.005955774451,8,1 +1204.92853584996,1974.63026695397,0.647930889615958,20067.0825246421,231944.565361437,34985.2797029114,11141.8088225832,85588.4005023753,0.184071275459079,191.867601249994,4,14 +3062.70815767559,1482.84924941427,0.722098482512963,14612.6884245463,210529.374837499,19580.2285701129,6235.7415828385,77686.1161761989,0.205141614350274,487.692381795476,8,22 +871.709448233417,737.334104643356,0.194005527230301,6960.78127153222,24277.1545510864,44164.9691162986,14065.2767886301,8958.35961294701,0.055115206599517,138.807236979843,7,15 +1985.46581565037,3673.09609031833,0.348129675088921,17276.2329350941,51181.7503578355,27644.0836418608,8803.84829358624,18886.2547445887,0.098900475877534,316.15697701439,5,23 +2044.58032538223,91.0111045921408,0.053410640012596,19728.651506839,38091.3090540282,29544.2417582939,9408.99419053946,14055.8335992724,0.015173477276306,325.570115506724,15,12 +2343.13650046911,1838.1227287962,0.087832253764622,21225.1997582438,53477.5916878612,20702.6324631764,6593.19505196701,19733.4286671075,0.024952344819495,373.110907718011,17,6 +279.717890714923,2026.98406852126,0.293038874193828,530.268877876227,221127.90259777,37458.4544317073,11929.444086531,81597.0120286974,0.083249680168701,44.5410654004654,10,18 +600.348460479438,429.586302607327,0.048592694026797,14419.9595286659,115501.745338161,30651.5967349638,9761.65501113497,42620.5702354838,0.013804742621249,95.5968886113755,12,2 +2295.22056139568,3625.08855799957,0.686993648244012,24248.6500769422,268975.988518425,5381.72959943611,1713.92662402424,99253.1322946217,0.195168650069322,365.480981113962,5,17 +2997.77442252886,473.936008014415,0.515852081871386,2183.27190533571,48990.5640782636,41889.2935006858,13340.5393314286,18077.6989218685,0.14654888689528,477.352615052366,12,22 +2635.07432524284,330.660297133212,0.58134966944997,8019.46534475135,12052.5932533246,16659.8406065385,5305.68172182755,4447.45138499063,0.165156156093741,419.597822490898,2,0 +707.250005793046,1057.4803247757,0.261816775468392,12308.1141301162,271976.276751736,19366.8053041677,6167.77238986233,100360.249723888,0.074379765758066,112.619427674052,16,19 +1695.61206841796,582.249044183052,0.502191696342133,7647.26108135221,187869.715270574,34780.3258643059,11076.5368994605,69324.6181810236,0.142668095551742,270.001921722605,13,14 +1163.59241556155,2826.46159409164,0.711054407083557,22750.5142807905,212735.624169088,39402.0490325941,12548.4232587879,78500.2303206967,0.202004092921465,185.285416490693,15,25 +3354.11839431568,3853.44612123533,0.364881177329304,1586.22296567062,230538.468733636,24497.7795069402,7801.8406073058,85069.5456581683,0.103659425377643,534.095285719057,4,9 +1420.54347850337,1974.70352567552,0.558532477096354,22165.6180591971,210682.410434995,9952.18267372511,3169.48492793793,77742.5868763819,0.158673999175101,226.201190844486,17,5 +3298.14678477664,2417.14822557657,0.055010563875178,2488.13407989176,63569.7252960485,9050.65113759079,2882.37297375503,23457.463208874,0.015628001100903,525.182609040866,1,24 +3506.3532545801,2247.36070703646,0.718217952622383,18919.5452602883,186696.482736095,41011.9824445077,13061.1409058942,68891.6910465295,0.204039191085904,558.336505506385,17,19 +2285.57847476559,2205.54370927279,0.337959730940483,2469.97598150954,56226.7125520854,16616.5667482185,5291.90023828615,20747.8644103636,0.096011287199001,363.94561700089,14,5 +3244.27027794506,1585.1175555322,0.260490880738677,697.752900600194,226155.347073465,43851.6835447521,13965.5043136153,83452.1575916845,0.074003091118942,516.603547443481,0,8 +1096.00280766701,2714.46054033238,0.817476131845701,13792.7571104664,26426.8644809549,6219.09897504502,1980.60476912262,9751.61050957746,0.232237537456165,174.522740074365,19,21 +3052.40499902017,3914.20664838675,0.563120731271666,340.252600737273,143282.937579459,4428.75995239455,1410.43310585814,52871.9326861472,0.159977480474905,486.051751436333,9,5 +50.815038759483,3575.24907038533,0.571438171355507,8176.78612448693,85897.9334197572,41519.4358058836,13222.7502566508,31696.6543984344,0.162340389589633,8.09156668144634,16,23 +1274.59746588796,3639.21248279619,0.452393108196382,21472.2712777558,94453.6521998084,41028.9543080388,13066.5459579741,34853.7461991913,0.128520769373972,202.961379918465,3,13 +2187.57550347807,2249.46409045031,0.580354592635401,2711.96299127013,22388.483918536,7716.4717922058,2457.47509305917,8261.43318027159,0.164873463816875,348.340048324533,15,25 +1735.95454009037,465.920218542993,0.564260550594302,7943.96416242785,286285.651138549,20574.0068504975,6552.23148105016,105640.461674741,0.160301292782472,276.425882179995,14,10 +1216.29189468234,1696.73107216884,0.477185384255975,23943.6380801554,139842.406807544,24413.3729842533,7774.95954912525,51602.3641356251,0.135564029618175,193.677053293366,14,7 +2922.25625171453,2249.15401813168,0.302008532211439,19360.8871806844,200721.029381554,24703.0303320908,7867.20711213083,74066.8005097985,0.085797878469159,465.327428616963,19,18 +472.984647734628,1389.96382035018,0.671554962433063,2412.82457898136,181060.236292445,13842.1753414215,4408.33609599411,66811.8953108653,0.19078265978212,75.3160267093357,13,24 +3990.5984950178,467.845187081909,0.513654437490022,17598.3278198246,150898.70556182,44339.2508879668,14120.780537569,55682.1791741033,0.14592455610512,635.445620225764,15,9 +3205.77787118468,2599.10543242953,0.568086379915279,21402.0019870328,11347.0647039505,36961.6242767485,11771.2179225314,4187.1087468452,0.161388176112295,510.474183309662,8,22 +511.937551531996,1690.97565051719,0.274481773606584,5894.29446495331,136687.997958776,18907.1730795416,6021.39270049096,50438.3756305446,0.07797777659278,81.5187183968147,10,14 +3059.38420872273,413.620926312358,0.498305278235538,19013.3918350409,144329.767849374,38534.1250131026,12272.014335383,53258.2169185882,0.141563999498732,487.163090560944,11,11 +3336.73199159854,840.513925849229,0.961943832787537,16767.3582845952,217147.046941751,39945.699554403,12721.5603676443,80128.0616021221,0.273279497951005,531.326750254545,16,9 +3694.2340527643,812.967691482059,0.435000181487122,3131.70539835437,22777.7597029804,24311.7481215493,7742.59494316857,8405.07738117358,0.123579597013387,588.25383005801,6,2 +1910.44675938518,2412.29442897538,0.024473865250542,23655.0568731107,99992.1440752467,30819.5947966244,9815.1575785428,36897.4701384674,0.006952802627995,304.211267418022,15,23 +2744.66125995575,97.8164874500024,0.684401106427878,193.860213609724,14123.7490270505,28110.149899448,8952.27703804076,5211.71550813672,0.19443213250792,437.047971330533,17,18 +2818.74250252751,2923.27800481687,0.408942219533674,15970.9074789905,105608.967786168,23477.1770745613,7476.80798552908,38970.0988140841,0.116176766912976,448.844347536228,16,24 +478.069000629343,3884.99797822024,0.555022023750149,2950.66071289502,251950.07710203,44507.1129324128,14174.2397873926,92970.5081557306,0.157676711292656,76.125637042889,8,9 +2777.14693845345,1625.58708703158,0.753482424063909,4368.95639709484,134323.226370039,7172.94361281305,2284.37694675575,49565.7661882063,0.214057506836338,442.220850072205,12,21 +3798.12465329912,1381.452312462,0.124683233347712,4338.59837396679,125082.974939522,4125.56437338573,1313.87400426297,46156.0793134768,0.035421373110146,604.796919315147,11,8 +1655.24545634181,3765.82717394748,0.091789056392057,21696.7786788209,193921.037772504,18423.0410827557,5867.21053590946,71557.5785138391,0.026076436475016,263.574117251881,6,11 +3571.08248028242,1004.77770723913,0.377718156907671,4480.8941938181,153503.813336083,22337.3706797871,7113.81231840353,56643.4735557502,0.107306294576043,568.643707051341,17,22 +8.71587843168273,2575.69829838572,0.675680569824339,23187.6068443023,199243.366839019,19612.3191429474,6245.9615104928,73521.5375789738,0.19195470733646,1.38787873115967,9,3 +3122.1109291302,2757.27906681138,0.607004850537356,7882.91902254116,83638.1553190157,36511.4564193717,11627.8523628572,30862.7879405962,0.172444559811749,497.151421836019,3,7 +2152.61720686861,939.92991878391,0.902878273861637,10155.9756248655,134589.91388569,34432.1430299625,10965.6506464849,49664.1748655683,0.256499509619783,342.773440584174,5,20 +980.290673556504,3711.14685942708,0.320706755273192,23535.9012290709,271016.598480032,25930.1533448775,8258.01061938774,100006.124900381,0.091109873657157,156.097241012182,8,19 +441.860348148198,3418.56770774037,0.60506039764932,11232.7274390359,161283.169898647,22285.2789110191,7097.2225831271,59514.0848334491,0.171892158423102,70.3599280490761,18,9 +220.435835351277,61.998211649465,0.860701546143081,1991.41759348974,186979.983869803,19405.6903431551,6180.15616024048,68996.3040109974,0.244517484699739,35.1012476674008,3,4 +560.448192023896,877.596788180279,0.322531621117457,10818.8741371332,77118.394524393,34938.9595857125,11127.0571929021,28456.9721492225,0.091628301453823,89.2433426789643,16,22 +888.118845879845,2398.30770591987,0.093202788539581,13067.3008670117,32425.3546361521,19869.7431601309,6327.94368157035,11965.0755114952,0.026478064926017,141.42019838851,16,15 +1419.94983934365,2528.34987091416,0.914171565537415,18802.2148209526,168783.815869677,4626.35508597161,1473.36149234765,62281.8508744196,0.259707831118584,226.106662315868,16,18 +955.791289883304,1026.67055364942,0.17057712735818,14694.7307009811,146534.056482873,16675.1844147274,5310.56828494503,54071.6075582557,0.048459411181301,152.196065268042,14,2 +2344.16124596971,2749.05951470611,0.260270582606748,16360.1030976506,52203.6719789815,33577.4518179718,10693.4559929846,19263.3475937201,0.073940506422372,373.274083753138,15,15 +227.855933594583,1230.32077812296,0.803092678921537,2466.20877267852,241509.740189355,9779.52570574174,3114.49863240183,89117.9853097251,0.228151329239073,36.2827919736597,15,20 +1675.25202452223,2588.05793597803,0.985124923376482,20842.4262049222,276877.370398369,6275.59062813633,1998.59574144469,102168.771364712,0.279865035050137,266.759876516279,13,4 +1164.12253422902,3395.71658976619,0.385979532268807,23925.622115321,94413.7943441399,36240.1570512925,11541.4512902205,34839.0385033727,0.109653276212729,185.369830291245,5,1 +2104.35091476447,3700.78660005642,0.243646112546422,1911.90085573899,198599.343940325,44189.0761833915,14072.9541985323,73283.8907528875,0.069217645609779,335.087725280967,8,6 +3175.36953359211,68.3071232828442,0.947094567856226,9302.26087866897,110940.654239878,6621.11157289677,2108.63425888432,40937.5107896229,0.269060956777337,505.632091336323,14,21 +2530.2331652358,3335.39032474586,0.882437771185207,3474.56618915356,25718.0704473024,34963.1628577849,11134.7652413328,9490.06289568354,0.250692548632161,402.903370260478,16,1 +1967.10259101558,1222.1788259973,0.247548977387127,11748.0846996427,2795.63142503222,44577.564497848,14196.6765916713,1031.59831182001,0.070326414030434,313.232896658532,7,3 +3683.96840149498,1025.36762749381,0.269634182771237,4122.1298031247,18509.3241059357,36576.8128018961,11648.6664974191,6830.00889517923,0.076600620105465,586.619172212576,17,5 +890.388510902918,2529.24979478035,0.41345478405167,4988.90225563553,75112.5682242432,23718.4064062808,7553.63261346522,27716.8148428942,0.117458745469224,141.781610016388,17,24 +2992.29321223099,1924.81116793471,0.124524297564786,19520.1321573026,158588.528624694,4839.33910532562,1541.1907978744,58519.7522600347,0.035376220899087,476.479810864807,13,15 +3812.64093272364,488.976076007613,0.853975260731544,351.275274016167,21095.498667013,18673.8003851956,5947.07018636802,7784.31685129631,0.24260660816237,607.10842877765,11,0 +161.129986481257,1424.83784370367,0.791611349610525,10371.3208494078,153620.94269947,20143.5797529036,6415.15278754892,56686.6947230517,0.224889587957536,25.6576411594358,10,21 +3891.06897328411,3754.76576069413,0.187435322399202,16056.4345520076,202179.817075029,18134.6032259199,5775.35134583436,74605.0985516712,0.053248671136137,619.59697026817,5,21 +811.809038957408,1400.61885246126,0.316575916536006,24745.8526002677,206842.152455828,3232.78672443487,1029.5499122404,76325.5175113757,0.089936339925002,129.268955247995,17,17 +2002.99062620379,763.986354986259,0.96107192382504,6846.13517753576,87179.8216340127,4664.39813558218,1485.47711324273,32169.6758797095,0.273031796541205,318.947551943279,8,11 +1281.90808023607,3367.81601861166,0.611229731216871,5353.5186216031,46467.4677815687,27506.3902112746,8759.99688257153,17146.6670780696,0.173644810004793,204.125490483451,12,2 +374.3437727783,3734.25496398975,0.822228582540055,4867.6918211836,134596.638649567,6207.94048126155,1977.05110868202,49666.6563282535,0.233587665494334,59.6088810156529,16,14 +2147.72462753385,1879.90703155987,0.661027614008695,15509.3228962798,20277.7061665046,37399.8850135532,11910.7914055902,7482.54840092421,0.187791935797925,341.994367441696,5,5 +3352.78605216526,939.543258874639,0.895161695480643,6054.76283753906,148167.128137786,11161.1392491955,3554.50294560366,54674.2170250133,0.254307299852455,533.883129325678,17,18 +2671.00732712261,3196.51082722682,0.5527158812403,17549.6623297472,65348.0288300321,16468.0040649311,5244.58728182519,24113.6637749196,0.15702155717054,425.319638076849,12,9 +379.92779391941,2542.75589111378,0.576507322024265,13418.0231669315,12116.8514294581,6844.38941832601,2179.74185297007,4471.16288909893,0.163780489211439,60.4980563565939,9,0 +2622.99034765063,2096.67922801943,0.328278713707249,5678.69130396673,186920.223703267,5346.21383868185,1702.61587219167,68974.2522890284,0.093260998212287,417.673622237361,11,6 +1683.80617218088,3742.16516982883,0.53563353609029,20153.1901797679,273611.780601311,42462.0941409667,13522.9599175053,100963.756679451,0.152168618207469,268.122001939631,0,13 +3545.8170668594,1137.48787416452,0.255124853249796,8736.97831574341,118219.488072773,18095.4133270121,5762.87048630959,43623.4273331266,0.072478651491419,564.620552047675,2,11 +2015.81039096566,2225.66754064476,0.667897536156783,21293.7689226386,163142.165325543,38931.7345062526,12398.6415625008,60200.0610057354,0.189743618226359,320.988915758863,11,3 +3939.2505279342,2476.56174544786,0.053024781022784,12425.5482098389,92738.3731285255,33304.1198569205,10606.4075977454,34220.8018924448,0.015063858245109,627.26919234621,18,8 +3648.16386162246,1564.81869971695,0.416722458343197,19723.2775753452,140205.971611034,16299.4512640262,5190.90804586822,51736.5208896805,0.118387062029317,580.917812360264,7,16 +1670.3464975063,3874.14455318256,0.796944485589617,4900.56655561238,139080.568509829,22634.5277664045,7208.44833324984,51321.2429925568,0.226404683406141,265.978741641131,0,21 +1135.4299170092,40.9202762627892,0.386284078586792,17877.8754348017,277791.825700852,38441.4521656926,12242.500689711,102506.208745702,0.109739795053066,180.800942198917,10,5 +2162.86963536624,2432.36955664112,0.384206471545302,2072.88685890752,26942.8967157519,43410.9135061569,13825.1316898589,9942.02830839554,0.109149565779915,344.405992892713,18,17 +2519.17393231385,3970.8923114549,0.768746716280152,22874.1543170528,161620.913042,44285.7808069032,14103.7518493322,59638.713299631,0.21839395348868,401.142345909849,14,8 +3873.43563513151,943.734294322976,0.174512513864259,6877.54250830542,92492.2657151022,23819.7031158231,7585.89271204557,34129.9873487462,0.049577418711437,616.789113874444,3,14 +1437.15058858008,1556.83928815346,0.831369637363862,14776.9097093251,107449.434874605,23776.1713537984,7572.02909356637,39649.2379611089,0.236184556069279,228.845635124217,0,19 +1697.80771098054,2901.39534062632,0.471854713333639,24881.4938665003,113073.474520179,39067.0446120783,12441.7339528912,41724.5293432395,0.134049634469784,270.351546334481,11,18 +269.919239079365,2525.88098815756,0.034737361717781,18272.3245826503,195343.505564936,18902.316270128,6019.84594590064,72082.4743782052,0.009868568669824,42.980770554039,9,18 +3444.02005748577,4005.65101423378,0.231759315730069,9658.79694886695,274618.926629256,5530.7100365158,1761.3726230942,101335.397280168,0.065840714696042,548.410837179263,16,18 +1374.10018437308,2142.51439234846,0.433528588996541,1433.84805981282,220611.235672705,35591.5096962786,11334.8756994518,81406.3600268284,0.123161530964926,218.805761842847,13,19 +2052.44279069516,3977.37808486561,0.860776321781335,13369.533436192,244992.774781694,33709.0292001587,10735.3596178849,90403.2379268244,0.244538727778788,326.822100429166,15,0 +1861.68050381021,3333.44342819282,0.832643050558447,11866.6876650506,190202.439271371,22602.1929582878,7198.15062365853,70185.4019451554,0.236546321181377,296.445940097167,7,21 +2593.42940625389,3286.40361626453,0.544684195643722,12387.0118538665,186357.006898698,26859.1773387549,8553.87813336143,68766.4232098517,0.154739828307876,412.966465963995,19,22 +3961.73812986248,254.560083518183,0.860488619310386,18002.7886287383,108444.766432904,20860.9346227442,6643.60975246631,40016.5189789314,0.244456994122269,630.850020678739,3,3 +1939.62356004126,3512.58679379993,0.703500228707022,18936.6945662963,42371.0693427175,10318.2781441645,3286.0758420906,15635.0809382721,0.19985801951904,308.85725478364,7,17 +186.203632048197,2096.62149736227,0.227221728422217,5565.25367376573,56299.136200422,13432.7920390608,4277.95924810854,20774.5890038458,0.064551627392675,29.6502598802861,15,20 +2833.13220310623,2472.32728267783,0.15157507208144,22608.9082480603,15274.5586868046,33898.1041087422,10795.5745569243,5636.36851911609,0.043061100023136,451.135701131565,11,23 +3753.72898011744,3559.58838707311,0.757531618181882,24363.8246502812,178562.667118868,32789.4976440281,10442.5151732574,65890.283069693,0.215207846074398,597.727544604688,9,5 +3961.39580167508,1949.24965528988,0.698273654003678,8577.75653926787,275684.98919995,30198.0425904928,9617.21101608051,101728.778302565,0.198373197160136,630.795509820873,18,15 +1298.65607847628,3692.15511372381,0.361238847795142,5653.77444534163,157744.866608614,44041.5348949346,14025.9665270492,58208.4378629572,0.102624672669074,206.792369184121,3,10 +2460.65210824221,25.8452358649183,0.964853967053854,7027.21364946655,240378.778157424,30519.2698225888,9719.51268235312,88700.6561466509,0.274106240640299,391.823584115002,7,16 +2848.32516592,1313.79709620556,0.062867586477569,14455.4648394851,212194.318861675,21605.6998926776,6880.79614416484,78300.4866648247,0.017860109794764,453.554962726115,3,14 +3053.1535930541,2162.96127966036,0.041814741523656,21914.1199459785,31262.1935184602,37437.8872390207,11922.8940251658,11535.8647669595,0.011879187932857,486.170954307978,17,16 +3127.40222814246,3850.59963299358,0.336324385225199,14979.3619777796,258242.199617963,13313.834149445,4240.07456988694,95292.3245822742,0.095546700348068,497.993985373003,13,20 +832.300760857978,2723.40513932932,0.614841536488132,4039.5630267505,74253.6466912246,3907.57331525574,1244.45010039992,27399.8696277582,0.174670891047765,132.531968289487,8,8 +826.873206861711,650.372085879534,0.94562900591201,19626.3759206278,257318.633635227,19020.9478264792,6057.62669633096,94951.525326652,0.268644603952276,131.667708098999,8,12 +529.710145701396,3898.16874981478,0.777562980831062,6110.08570347098,186258.168930661,34967.8857102053,11136.2693344603,68729.9516349303,0.220898574099733,84.3487493155089,13,23 +125.763582951883,3800.20967040442,0.9838375038776,20485.3749299246,69172.577173559,32413.0558257894,10322.629243882,25524.9362264055,0.279499290874318,20.0260482407457,11,22 +1702.27344398451,973.706298773818,0.595823960859968,3967.93540282095,63263.7129237348,22608.7291370251,7200.23220924366,23344.5435142933,0.169268170698855,271.062650316005,6,11 +1819.48180116305,1598.75246409521,0.180647266759243,8667.14216469902,265414.230861062,25629.867380542,8162.37814666943,97938.8305760376,0.051320246238421,289.726401459084,0,15 +1145.31914992484,3026.91378510452,0.534848200944544,8717.39995855764,287801.82142411,10376.1493763516,3304.50617081261,106199.934104838,0.151945511631973,182.375660816057,5,9 +2001.72947805582,3042.08160606577,0.029141452692927,1601.13252156697,7716.3336777104,15536.8434135437,4948.03930367634,2847.35560063114,0.008278821787763,318.746732174494,18,18 +1454.72216142374,1845.45173417089,0.506394144621567,4949.26751311226,183775.988618113,26112.336202842,8316.03063784777,67814.0179402631,0.143861972903854,231.643656277666,7,20 +3768.86634775233,1889.30343410267,0.642941982652228,6187.2185892564,209795.099594469,44800.7539986904,14267.7560505383,77415.1659020181,0.182653972344383,600.137953463747,16,23 +2343.61695343694,347.680637996721,0.26829089903486,2397.40872400853,242590.100476225,16338.6333909511,5203.3864302392,89516.6422421494,0.076219005407631,373.187412967666,8,3 +2540.68404955228,763.425736344757,0.4533433883696,21705.7257211014,142388.876946459,19022.8115511617,6058.22023922347,52542.0210134535,0.128790735332273,404.567523814057,1,3 +1275.28608177734,2928.41131001299,0.302831178919364,13209.1555678211,69809.7711298204,17912.801006396,5704.71369630446,25760.0631475352,0.086031584920274,203.07103213015,14,14 +1101.74094831005,2549.54891094036,0.448468192797825,2849.28454657813,249534.802476631,25995.7776727609,8278.91008686653,92079.2629065059,0.127405736590291,175.436456737269,0,0 +1723.26478281937,2726.84673845562,0.153620184714373,11187.1359420821,149700.843292237,38505.1014796512,12262.7711718634,55240.1635764712,0.04364209793022,274.405220194167,6,6 +578.499730058122,2144.64780023688,0.431988440583341,3915.95802990169,126768.023015428,40882.2625278987,13019.828830541,46777.8682713757,0.122723988802086,92.117791410529,4,12 +3321.72289295569,4017.69589207603,0.680582746779332,22923.6312930368,109690.820975244,18794.3511968825,5985.46216461226,40476.3177030421,0.193347371244128,528.936766394218,15,9 +2629.46339790472,2078.78929939709,0.511325779911988,2875.37592731024,251056.323177267,9065.59463581216,2887.13204962171,92640.7096595081,0.145263005656815,418.704362723681,5,9 +3979.86026073871,222.720928208555,0.968236463672065,1657.56053240202,79474.0994358593,21880.424176237,6968.28795421561,29326.2359541916,0.275067177179564,633.735710308712,13,25 +1555.67924869012,783.945335868247,0.294853210300439,3490.45082150654,267877.384316462,24166.9605375215,7696.48424761831,98847.7432902074,0.083765116562625,247.719625587599,6,10 +173.283996574215,695.792771513468,0.765208535388887,14845.147485417,45545.1459583057,17179.0632775606,5471.03926036962,16806.326921884,0.217388788462752,27.5929930850661,4,12 +800.362806835287,2730.74335562472,0.939129569325181,1352.93828696222,285480.723697976,16873.0364924458,5373.57850077892,105343.440478958,0.266798173103745,127.446306820906,9,24 +30.0803912699257,439.950912841849,0.672284548040087,12276.058833737,198029.211785734,23527.7317405154,7492.90819761637,73073.5098840347,0.190989928420479,4.78987122132575,0,7 +3373.71089977187,702.712850841763,0.500528309419567,10095.5404431159,221362.22137408,17156.7880565558,5463.94524094134,81683.4765218007,0.142195542448741,537.215111428642,2,6 +941.848790855235,261.862202841101,0.270139767849181,12136.0457877963,17093.715489216,9363.03428662794,2981.85805306622,6307.64409196162,0.076744252229881,149.975922110706,3,22 +740.153894327829,2956.23633359846,0.200772648577707,10552.3720489384,51553.556938179,2884.6129993133,918.66656029086,19023.4527447155,0.05703768425503,117.858900370673,3,3 +2219.44576851647,1575.91266219092,0.558409717045434,12051.1288477942,98200.9508174095,38460.3328002791,12248.5136306621,36236.5132167563,0.158639124160635,353.414931292431,18,11 +456.404574618392,2356.93957980623,0.285066386482149,24158.6390839183,173870.113021417,5868.46744443305,1868.93867657104,64158.7132920358,0.080984768886974,72.6758876780879,19,4 +741.286259862232,2168.07937493998,0.573479955490164,20962.9828075721,107213.98086274,23841.1167537483,7592.71234195806,39562.3545618967,0.162920441900615,118.039213353859,6,19 +2154.9599727262,3385.98370796185,0.3254052769143,18499.2349591054,266078.998801634,37584.729428915,11969.6590537946,98184.1323991269,0.092444680941563,343.146492472325,12,20 +1847.79320118526,3626.76596442698,0.482252554125675,24917.1478175242,204421.116626545,24090.7779094378,7672.22226415217,75432.1463566587,0.137003566512976,294.234586175997,6,19 +3913.43109406417,2074.89070431609,0.498443978288432,7180.0872875744,239270.303474094,23643.366198986,7529.7344582758,88291.6248981897,0.14160340292285,623.157817526142,15,6 +3578.2909060015,3638.96541985321,0.087460929621246,9008.74258883833,89879.5757873566,2711.31600456015,863.476434573296,33165.8951244858,0.024846855006036,569.79154554164,10,24 +2557.74734769411,440.021042120531,0.270606309134352,20236.446137812,18941.356412631,37909.4798100022,12073.0827420389,6989.43041056495,0.076876792367714,407.284609505432,18,1 +2156.40478701182,2741.01633634285,0.628846715625375,6437.57651399984,280459.749150269,13988.2815767674,4454.86674419344,103490.682343273,0.178649635120845,343.376558441373,3,25 +2457.14978807149,3615.23769015215,0.99753823853824,7315.80736414673,229581.931613725,38364.4299364529,12217.9713173417,84716.5799312638,0.283391545039273,391.265889820301,6,25 +2535.24972432893,1734.8868014206,0.4075216355369,6169.63253354655,149784.541535205,44058.0160560275,14031.2153044674,55271.048536976,0.115773191913892,403.702185402696,10,4 +1765.67993059246,12.5870234975129,0.21111184167251,10299.1711150202,236562.428274192,14745.6788994448,4696.07608262573,87292.4089572664,0.0599749550206,281.159224616634,8,5 +2514.09369899919,885.540840575399,0.166524905751875,24675.8918807493,48128.0956050353,3949.92676263066,1257.93845943652,17759.4448727068,0.047308211861328,400.333391560381,13,15 +1870.16893479549,975.836603559108,0.468665041077947,24721.8513158024,247265.41158787,4810.55116535507,1532.02266412582,91241.849294417,0.133143477578962,297.797601082084,19,5 +3484.70543218872,1358.56063151509,0.526683909040411,8729.90676746014,73915.4312621885,41993.6337086969,13373.7686970372,27275.0668864164,0.149626110522844,554.889400030051,9,6 +3552.69888542354,4024.81471330108,0.573584164112493,13914.8682093684,22595.3074924937,37290.5005828669,11875.9555996391,8337.7518422486,0.162950046622867,565.716383029226,4,2 +3943.39424111536,2270.87733878739,0.794782683942945,8857.78441055668,131133.723667523,23795.0770185636,7578.05000591197,48388.8279215952,0.225790535211064,627.929019285885,6,13 +3363.32636804774,1211.83432650861,0.973267194124,14827.55207443,99131.2032962236,11609.1683597097,3697.18737570373,36579.7798141047,0.276496361967045,535.561523574481,18,11 +1347.19250539356,1396.38954761998,0.156654136976596,609.837682538906,86393.8958209342,43185.7840016336,13753.4343954247,31879.6663545883,0.044504016186533,214.521099584962,3,20 +1307.62258161848,2884.38711728939,0.208891081039006,3448.74075930646,71913.8879489991,8106.54425725804,2581.70199275734,26536.4900180808,0.059344057113354,208.220156308675,18,15 +200.480477717925,2460.90774458268,0.636767965588776,3511.53686492365,192970.0534343,17410.0036511633,5544.58715005201,71206.6617838745,0.180899990224084,31.9236429487142,18,10 +728.891394470728,1579.78409688049,0.986648122224425,16846.8143453206,44914.8106863774,18090.7862276763,5761.396887795,16573.7308805821,0.280297761995575,116.065508673683,3,15 +2095.16466476287,3333.87491382374,0.63506512611533,10384.5952134885,271700.530330174,43462.9714035457,13841.7106380719,100258.498276817,0.180416229010037,333.624946618291,9,13 +3954.79447262688,458.308869734567,0.278585507178051,11761.2960393526,163431.725731367,43070.8415623977,13716.8285230566,60306.9098639731,0.079143609993765,629.744342774981,16,3 +2879.03090382889,4001.77943181704,0.820683422410594,18835.894283086,58738.3758326148,36194.6288385447,11526.9518594091,21674.6774290092,0.233148699548464,458.444411437721,1,25 +2277.85472944239,1739.6928834213,0.274062429691245,15553.6636958646,201402.775366523,13373.9910449143,4259.23281685169,74318.3672939199,0.077858644798649,362.715721248788,8,9 +952.686080179839,2935.18517287247,0.470207126204743,2968.27672548118,55488.1620896321,38127.8399797224,12142.6241973638,20475.3365644399,0.133581569944529,151.701605124178,5,21 +3484.64415979777,437.310537110546,0.415746439079545,16988.0611855433,51647.8728690271,27358.5597099234,8712.91710507115,19058.2556712277,0.118109783829416,554.8796432799,3,12 +3141.83473269323,2637.88357659979,0.410431466062956,4875.85828235487,46890.0890834631,661.41784725556,210.64262651451,17302.6158979569,0.11659984831334,500.292154887457,18,12 +3932.61067100277,403.651439815406,0.159635386629032,22250.6405489054,239268.251670219,3485.45679446191,1110.01808740825,88290.8677749886,0.045350962110521,626.211890287065,16,11 +2894.78694391456,1190.54972001818,0.984197921331285,7931.18961568329,58308.9946260399,41689.0292693763,13276.7609138141,21516.2341793505,0.279601682196388,460.953335018242,17,18 +1386.94661341066,3186.77081740591,0.095771764180267,4500.87453485052,143255.232672968,16059.4187274565,5114.46456288424,52861.7094734199,0.027207887551212,220.851371562207,9,7 +403.873026794199,2214.98864886431,0.074847599661975,10644.525865543,287575.529675089,43507.4598373888,13855.8789291047,106116.431614424,0.021263522631243,64.3109915277387,2,8 +2513.5423586657,1221.09454769819,0.594455123463244,16798.5554379983,225730.492673238,31660.459247071,10082.9488047997,83295.3847502723,0.168879296438422,400.245598513646,17,24 +2299.30096966192,687.300618239019,0.44069530950438,1601.02021793652,228990.627586164,28817.5388722924,9177.56015041159,84498.3865631601,0.125197531109199,366.130727653172,3,7 +2777.38047957334,448.567958673916,0.881882635467687,15290.3753403865,257836.518409703,33236.7199865208,10584.9426708665,95142.6267194476,0.250534839621502,442.258038148621,2,2 +1101.0066401672,1928.60310802504,0.781980183438363,14051.3465866974,27052.7233547714,41865.9349248286,13333.1002945314,9982.55474345808,0.22215346120408,175.319528689045,11,5 +3234.40389101807,2395.99829186648,0.48298978774744,13820.3558437009,7669.42713638909,21316.1859066597,6788.59423778971,2830.04691379671,0.137213007882795,515.032466722623,1,10 +3503.7485104069,518.842769681099,0.989633854536885,17749.632312709,115954.544188668,3883.22125853215,1236.69466832234,42787.6546821653,0.281145981402524,557.92173732594,17,23 +3671.8942312462,3423.05129097285,0.673088217908652,7858.43674038288,106819.120941555,8792.77723326558,2800.2475265177,39416.6497939317,0.191218243724049,584.69653363793,0,14 +2096.27041188449,2088.68819301164,0.170391736315892,5256.00051687615,288033.546885478,27668.4205380618,8811.59889747191,106285.441655158,0.04840674327156,333.801021000715,9,23 +2986.47559044877,1347.44206447359,0.025031270619169,15353.3237020713,161685.49744433,3334.01311238238,1061.7876154084,59662.5451824096,0.0071111564259,475.553437969549,3,12 +1788.60877998468,249.656487422815,0.727315132992434,13129.8474222227,287242.755650884,7937.23243796969,2527.78103120054,105993.636771544,0.206623617327396,284.810315284185,9,23 +506.741321665368,1840.33404580292,0.536710383603688,19378.4392379462,172406.994806714,29869.7201335713,9512.64972406729,63618.8172718502,0.152474540796502,80.6912932588166,7,8 +2217.88694509958,194.004417394049,0.586837470048218,8631.60631824677,275236.513173891,22456.950479889,7151.89505728949,101563.288994056,0.166715190354607,353.166711003118,19,7 +3372.52488569929,1141.33773363991,0.236940846279071,11131.2628426774,126091.801850927,31164.8052352867,9925.09720869003,46528.3401663937,0.067312740420191,537.0262556846,10,6 +1287.21083938672,1145.58884924651,0.397949778165506,20291.487131727,19818.9145426849,43015.4583365578,13699.1905530439,7313.25259877672,0.113053914251564,204.969878883236,12,20 +2982.10212080696,455.216520540583,0.426568978523008,5256.23074593342,40030.6396526466,44742.8036735583,14249.3005329804,14771.4537463641,0.121184368898582,474.857025606204,10,22 +1285.60207980975,2190.07128136784,0.870787089434214,15040.9377231826,145584.197889415,3532.78606775916,1125.0911043819,53721.1062322565,0.247382695861993,204.713706976075,10,12 +3745.71663825157,1662.85794590517,0.807510763324061,17653.0944811281,277527.267480419,857.22282728883,273.000900410455,102408.585786132,0.229406466853426,596.451693989104,18,4 +2166.93241066434,3815.3107217224,0.514937870306033,18475.9206381393,205011.9074251,44306.4991352062,14110.3500430593,75650.1503413653,0.146289167700578,345.052931634449,11,16 +3048.86422916439,3019.9566315621,0.772701184459017,8021.5366178598,148378.265728415,8668.35497526259,2760.62260358681,54752.1275750609,0.219517381948584,485.487934580317,7,15 +941.890635243991,2743.32174119871,0.41524005906905,15376.1525553766,198747.518772032,14985.1539998043,4772.34203815424,73338.5678125579,0.117965925871889,149.982585229935,2,17 +1167.15594843844,1069.31545321414,0.158210330425643,12286.5927941406,286197.99147627,1321.9360263854,420.998734517643,105608.114935893,0.044946116598194,185.852858031599,13,23 +3264.24863915233,651.097803014367,0.88723247837798,3264.81069672668,218866.832981522,39083.3718679706,12446.9337159142,80762.6689968716,0.252054681357381,519.784815151645,14,10 +1383.58226594962,2783.27222768866,0.443767222672397,7966.64229497075,20946.5809184072,33893.1978698929,10794.0120604754,7729.36565254878,0.126070233713749,220.315647444207,4,2 +70.0220723206343,1737.3001737435,0.585777242623645,23499.9151853785,139332.767379238,18485.2522953353,5887.02302399213,51414.3053059919,0.166413989381717,11.1500115160246,9,10 +2377.58843123189,3114.73285305557,0.885896501577752,12400.3652185323,71641.2029612013,27325.121818007,8702.26809490669,26435.8682513658,0.25167514249368,378.596883954123,4,13 +1482.10851327828,3943.87460311143,0.699585385538476,7639.87016489853,249983.353562806,23563.9016124886,7504.42726512376,92244.7799124745,0.19874584816434,236.004540330936,13,0 +424.666940903771,1335.7555816857,0.084262827706609,20549.0805716508,180276.940740751,3843.45554067263,1224.03042696581,66522.8563619007,0.023938303325741,67.6221243477342,8,8 +163.144440935843,1880.0132315267,0.672403035739029,23828.063718654,103817.792975759,33272.0058643287,10596.1802115696,38309.1486995421,0.191023589698588,25.9784141617584,2,3 +979.752783978982,3635.12808015998,0.585600307498284,16010.4473447745,284256.788265026,42188.3196085025,13435.7705759562,104891.803787832,0.166363723721103,156.01158980557,1,21 +3114.47412079135,1858.23129297621,0.178630664718642,6699.93562460673,46926.842440974,43594.1546721363,13883.488749088,17316.1780224996,0.050747347931432,495.935369552763,13,24 +478.986372061127,2220.38168500212,0.682847695473871,19604.437901878,236481.846514177,33140.9842490404,10554.4535824969,87262.6739904712,0.193990822577804,76.2717152963578,18,8 +2255.95503520078,546.060204612593,0.912256592259399,17752.3489356159,240324.250953677,18776.7513054112,5979.85710363414,88680.5354072609,0.259163804619147,359.228508789933,10,13 +3088.71955631724,699.91918336254,0.441515506176584,24710.5059662744,270243.966310934,13572.0364038611,4322.30458721691,99721.0207789424,0.125430541527439,491.834324254338,18,20 +403.172474308663,2026.21098708379,0.608510532146987,23403.6499704442,167478.313853251,17102.3124573731,5446.59632400417,61800.1158130078,0.17287231026903,64.199438584182,12,16 +2269.21036842342,2498.39345728443,0.7613192742155,14405.096114675,122393.05684114,7562.97852578889,2408.59188719391,45163.4896092768,0.216283884720312,361.339230640672,3,7 +2194.70517858588,2935.27617418463,0.565548412839812,10617.6290402907,90244.7055596376,14585.1990851247,4644.96786150468,33300.6293577998,0.160667162738583,349.47534690858,4,23 +2306.73409061825,3926.61788140273,0.753823042994226,7509.4018241241,40977.7431474302,25095.2065208826,7992.10398754223,15120.9384307861,0.214154273577905,367.314345639849,11,7 +3047.76862056398,502.82182252447,0.538711145232453,6342.63261487957,194914.041428417,918.697337140097,292.57876978984,71924.0005270911,0.153042938986492,485.313474612099,9,1 +2198.77926500437,2943.56417781285,0.547393921182348,9279.25047959857,217513.427989469,18092.5107947148,5761.9461129665,80263.2575606897,0.155509636699531,350.124086784135,8,7 +2995.47170415666,2712.8361066963,0.544156722751709,15463.4593523805,128517.499642209,30292.4316985026,9647.27124156134,47423.4316022911,0.154589978054463,476.985940152334,7,20 +1151.4440909696,2023.10335662931,0.052708623863319,18730.4525646384,198508.267954457,38646.5009104106,12307.8028377104,73250.2833780284,0.014974040870261,183.350969899618,3,10 +1204.0512768166,3613.86880734769,0.089944255847989,13244.9076175309,150723.389455852,20751.2981441278,6608.69367647382,55617.4868840782,0.025552345411361,191.727910321115,6,22 +192.586223470493,2131.96275752876,0.765135469191887,3900.24429908288,2723.37604423853,41989.3077047723,13372.390988781,1004.93580968211,0.217368031020422,30.6665960940275,12,25 +954.673935947137,1582.85302100279,0.322835653867872,10312.6110682774,40466.8437569233,15668.5645820939,4989.98872041207,14932.4146704514,0.091714674394282,152.018142666742,13,15 +2648.85947952362,3005.30556836298,0.677548881550914,20988.7358978736,108091.32110993,27348.2919030492,8709.64710288191,39886.0963505277,0.192485477713328,421.792910752169,5,15 +2634.67286408793,117.365972102683,0.32473852015318,13085.3687965491,149199.953261283,918.777317849308,292.604241353283,55055.3333067465,0.092255261407154,419.533895555403,3,5 +2662.4946667965,1626.75321854913,0.390269666613746,7856.55302291779,245777.205606686,19880.3159438317,6331.31081013748,90692.6957958251,0.110872064378905,423.96411891664,5,17 +3044.76488669098,2189.71801390913,0.097847409838748,4141.8393513173,239535.304573452,31287.7076497349,9964.23810501111,88389.4112817166,0.027797559613281,484.835173039965,7,7 +2004.37120298976,2607.48985599519,0.110324061268036,1299.90768369385,30676.7161393393,13663.9752184078,4351.58446446108,11319.8214536307,0.031342062860238,319.167389011108,4,7 +974.753202048467,2440.91875007192,0.312121739625109,16201.757993593,21162.6873909519,5617.13796338562,1788.89744056867,7809.10973835864,0.088670948757133,155.215478033195,4,8 +108.14425062753,1898.56766537469,0.354907243879879,6422.4487092378,136559.159217611,29016.4950966401,9240.9220052994,50390.8336596351,0.100825921556784,17.2204220744475,4,18 +3051.43601459393,2924.84823690628,0.201733985574605,5864.47857578962,213041.594423152,8225.63474368063,2619.62889926135,78613.1344734878,0.057310791356422,485.897454553174,8,25 +3825.80743205111,1472.92719885674,0.630524028331194,1772.63757307069,141938.882437019,18317.1193300529,5833.47749364742,52375.9713789738,0.179126144412271,609.20500510368,2,4 +2165.77575280882,1023.54194574217,0.939164079617773,6086.71609986947,49599.4535370439,33763.6515607915,10752.7552741374,18302.381378983,0.26680797716414,344.868750447264,9,11 +3284.00444458433,3682.04765048536,0.14083591370438,1523.93162436385,97754.0998887167,28131.159221792,8958.9679050293,36071.6235751722,0.040010202756926,522.930644042091,3,18 +32.3455790421695,2109.3567334451,0.903500597036075,3474.41512547758,257884.03494765,29370.766565144,9353.74731374013,95160.1604972878,0.256676305976158,5.15056991117349,13,10 +3786.53906556438,403.795790483973,0.884709889000095,8631.5717443046,9118.20838138667,33522.6691080451,10676.0092700781,3364.65253925707,0.251338036647754,602.952080503882,13,4 +2971.55338393429,2594.00209477595,0.746974040765466,9302.57706996387,1276.62502510144,2067.42964768176,658.417085248968,471.079345055882,0.212208534308371,473.177290435397,6,20 +2041.98259641864,426.587653631525,0.410197273141328,15661.9334218675,194704.221580425,19033.8622934154,6061.73958389025,71846.5762289391,0.116533316233332,325.156464397873,7,0 +653.582994912097,2853.84610083794,0.031641952169979,13287.3691405949,55666.3006321166,19814.9086819295,6310.48047195207,20541.0703439545,0.00898919095738,104.073725304474,7,10 +193.082447208104,1525.82075279706,0.654222010604091,23887.2546215839,186612.782409449,36548.0596245462,11639.5094345689,68860.8053171398,0.185858525739799,30.7456126127554,0,23 +3973.44961165268,734.58592690816,0.888669935064537,18697.8226662178,261931.803698008,31083.1555607392,9899.09412762395,96653.802102586,0.252463049734243,632.714906314121,8,11 +2071.603328679,499.768305921562,0.004514867164437,20715.1343334024,271806.072353105,34273.1030356707,10915.0009667741,100297.443672732,0.00128263271717,329.873141509395,11,9 +3321.20681204683,1855.60469878004,0.941421467104779,12329.0785418896,284425.058652279,10470.750104973,3334.63379139268,104953.896181653,0.267449280427494,528.854587905546,15,3 +2677.66653785092,3914.14860893644,0.226371730168587,21381.6647078924,83580.6288979677,37420.7131219684,11917.4245611364,30841.5604789549,0.064310150616076,426.380021950783,19,18 +852.735023905957,2535.736678509,0.978729481332581,13918.124431123,43345.5020665356,39307.7667224791,12518.3970453755,15994.6502090537,0.278048148105847,135.785831832159,19,15 +581.256200000219,704.608588952403,0.81584376046138,8325.15301434124,136345.52594917,41058.4012894962,13075.9239775466,50312.0021952657,0.231773795585619,92.5567197452578,7,18 +2752.73178927627,2443.80138512385,0.091811885138261,5580.25394760727,204634.862488786,28282.128824587,9007.04739636529,75511.0193685557,0.026082921914279,438.333087464374,3,8 +995.062728299683,3100.8035119731,0.383818592727633,24390.2261270479,150555.601653763,30083.0995779997,9580.6049611464,55555.5725659642,0.109039372933987,158.449479028612,5,19 +2510.31115479381,1981.87044295944,0.547620379110663,13079.4090455646,171039.550069722,38753.4234016936,12341.8545865266,63114.2251179786,0.155573971338257,399.73107560411,18,0 +1012.88673299414,1991.06272576809,0.938258905983902,5165.92150837736,58209.6544578705,20571.1432228321,6551.31949771723,21479.5772907271,0.266550825563609,161.287696336646,1,21 +3379.02294773382,2485.33086416571,0.105803655574413,13387.0044213759,242244.329822754,36103.6425798552,11497.9753439029,89389.0515951122,0.030057856697277,538.060978938506,7,8 +2927.03029307594,933.034815619837,0.204374780336898,3558.45502208909,4357.13933756933,13877.2605845088,4419.50974028943,1607.80049356802,0.058061017141164,466.087626285978,2,2 +2844.74909525381,2363.4867324493,0.311221138199128,11011.8244882279,258831.018750303,6643.10776099264,2115.63941432887,95509.601014872,0.088415096079298,452.985524721944,16,15 +85.8788553843399,1041.47534395768,0.286314882718601,18656.9213512022,66042.8091502628,12938.4871127025,4120.53729703901,24370.0402768497,0.081339455317784,13.6749769720286,12,1 +414.192572653228,1329.34428076362,0.0226885560272,13290.9053936381,263606.41510516,22590.4573094487,7194.41315587538,97271.7398912029,0.006445612507727,65.9542313142083,6,12 +3761.02877074271,2349.30483039673,0.272327001423863,5102.69627334849,26516.6635368351,8680.00607066521,2764.33314352395,9784.74669255908,0.077365625404507,598.889931646928,14,8 +3052.6872202187,3217.06995103217,0.577091653084515,8300.867471198,195465.209344059,27027.1943568843,8607.38673786124,72127.383521793,0.163946492353555,486.096691117627,0,21 +1956.35494176165,378.778688465803,0.209490869678066,4303.0300157819,8352.76333807695,42115.3483602183,13412.5313249103,3082.20049375533,0.059514451613087,311.521487541664,5,16 +1162.48061293712,3541.41796076713,0.173074535453456,10818.7900388509,256863.250567448,36023.9019901593,11472.5802516431,94783.4872942613,0.049168902117459,185.108377856229,2,0 +1811.05980979692,1853.68211252259,0.491283686629047,5668.83065871453,46236.4626587533,13073.8570779748,4163.64875094739,17061.4253353333,0.139569229155979,288.385320031357,16,6 +1241.30567900173,3532.067852598,0.827736629525744,22721.8294666998,186335.488977028,44713.3611047468,14239.9239187092,68758.4830173535,0.235152451569814,197.660139968428,1,19 +311.368593782921,1215.53265046902,0.656692029907108,10946.0675612821,256520.415108678,27378.204069037,8719.17327039395,94656.9797448996,0.186560235769065,49.5809862711658,18,19 +1189.68034719885,4011.51847288156,0.243176888211754,3673.51707615142,259795.71836329,10660.9487554296,3395.20661000943,95865.5787318413,0.069084343241976,189.439545732301,6,20 +1733.38624740902,3894.12403079909,0.812033549953894,11799.9805086886,163709.630338197,42621.6737100847,13573.7814363327,60409.4576893716,0.23069134941872,276.016918377232,9,24 +3766.12802211927,370.637967150217,0.29848465609149,12004.9892167365,260135.844317332,17456.0520020625,5559.25222995621,95991.0864639602,0.084796777298719,599.701914350202,10,15 +926.615898371434,1962.66336995974,0.47364435393829,21181.8044650943,8530.02466608708,6110.55370741541,1946.03621255268,3147.61057789191,0.134558055096105,147.550302288445,0,7 +932.153800090031,2894.17540566588,0.255896213576664,9282.61372284136,147642.207015674,3113.48433413147,991.555520424035,54480.5191939757,0.072697787947916,148.432133772298,2,10 +3167.40037072358,1101.8762557638,0.185286274452053,7569.72577517486,78649.3496147531,9223.95017863284,2937.56375115696,29021.9002268462,0.052638146151152,504.363116357258,8,14 +3958.59797887321,2500.73597860101,0.338334705715222,24744.5897908799,59267.7734145796,1955.16447023016,622.663844022344,21870.0270902508,0.096117814123643,630.349996635861,9,13 +769.140403089972,2294.40268502226,0.131977757600516,9603.37171259058,69334.5499147964,18567.2068796316,5913.12321007376,25584.7047656075,0.03749368113651,122.474586479295,10,3 +2654.81417289331,2664.83148461267,0.533732013232515,12521.3696784659,89438.54994832,31331.8512704339,9978.29658294073,33003.1549624797,0.151628412850146,422.74111033333,18,22 +3382.64865064134,1456.62123164327,0.209574446704046,7163.5549571099,113561.771389179,37697.8352098942,12005.680003151,41904.712689734,0.059538195086377,538.638320165818,15,16 +1462.64079643981,2264.79356680371,0.946591812799689,12400.5492978424,130366.961968936,12938.6520556199,4120.58982663054,48105.8900254376,0.268918128636275,232.904585420352,7,9 +904.269998374582,329.508465084836,0.725314357439146,7430.97734923712,195127.900676956,17859.2101722061,5687.64655165799,72002.9153789506,0.206055215181576,143.992037957736,18,4 +3627.51089988761,1582.9428681948,0.239489653462068,22069.7101475673,81597.2479700285,8322.19509175015,2650.3806024682,30109.6855977965,0.068036833369906,577.629124185925,1,14 +1197.27389856304,128.834098748735,0.550282622416857,17912.6500508184,247977.090213377,17944.2141562085,5714.71788414284,91504.4613333495,0.156330290459334,190.648709962268,16,15 +1621.55035661729,712.899562961731,0.489304416553676,15456.9790997058,172802.86464241,36798.003149162,11719.1092831726,63764.8947019963,0.139006936520931,258.208655512307,0,5 +3258.69679000025,3289.76254800375,0.212608316276801,17144.3172467669,50235.8357545188,24924.7672034663,7937.8239501485,18537.2087655051,0.060400089851364,518.900762738893,9,8 +1165.35910544556,2520.10473889798,0.857669601864511,13699.9703212114,191359.368171611,35355.7548629315,11259.7945423349,70612.3129784542,0.243656136893327,185.566736535917,16,6 +328.842272625779,3881.49767818892,0.337286978630365,3046.0895437699,63206.1834726903,19889.3268761213,6334.18053379659,23323.3149345721,0.095820164383627,52.3634192079266,6,8 +327.737361019257,2001.41563862429,0.616952075106917,24577.3424296443,280363.48159595,38029.2720307435,12111.23313081,103455.159260498,0.175270475882647,52.1874778693084,16,0 +758.627594002879,3028.10465191506,0.317286255616746,18480.8961002324,75927.905059988,846.624156112761,269.625527424446,28017.677143907,0.090138140800212,120.800572293452,12,17 +3002.54908294218,931.540395502066,0.460274212706963,6996.10774471044,111391.204607815,771.326326800049,245.645327006385,41103.7655379391,0.130759719519024,478.112911296526,9,11 +3505.23715251184,4017.83170812125,0.620622545833031,13295.3207187241,242303.103857945,40719.2143500282,12967.9026592447,89410.739430976,0.17631322324802,558.158782247108,9,13 +1248.13475019426,3778.45848094397,0.447038621454726,15399.4009699875,33440.6522779025,35160.6320808946,11197.6535289473,12339.7240877869,0.12699960836782,198.747571686984,11,24 +982.24621722761,2332.49787119603,0.534104158786388,24415.8613401396,20276.5574982427,21093.8511299686,6717.78698406643,7482.12453809694,0.15173413601886,156.408633316498,4,19 +1276.78175882226,2913.42009659581,0.443870174790481,9894.58399585173,219961.077615813,19238.1145964448,6126.78808803975,81166.449304728,0.126099481474568,203.309197264691,9,1 +2108.52996226275,1308.41058363546,0.265146043129144,14366.8938367029,137953.884840962,14993.2158862159,4774.90951790315,50905.4925612406,0.075325580434416,335.75317870426,19,5 +1156.27954004237,3835.25577397956,0.829018314620025,13653.0723275053,30634.0189047232,14686.9261497267,4677.36501583653,11304.066016503,0.235516566653416,184.120945866619,3,3 +3771.3734135978,3607.69801543308,0.009137750411147,24484.5061865057,25490.7195329784,9858.43313124695,3139.62838574744,9406.16956936472,0.002595951821349,600.53716777035,1,8 +63.6675014152822,1853.15154951163,0.72660025421658,4118.91866839542,123291.304471796,31706.9584650645,10097.7574729505,45494.9462995557,0.206420526766074,10.1381371680386,10,8 +3032.07614075256,411.439003915844,0.384589311942563,23597.3659930331,115384.391006803,7147.23427014268,2276.18925800722,42577.2660541708,0.10925832725641,482.814672094357,1,0 +2268.54591927159,1175.72678213027,0.117218161367152,13805.8945597193,48905.6186502826,24322.6213132689,7746.05774307927,18046.3537454917,0.033300614024759,361.233426635603,15,9 +1455.05983227941,2858.53123137796,0.59079987319824,14995.4017999335,196169.363783469,35016.586908524,11151.7792702306,72387.2191082911,0.167840873067682,231.697425522199,18,0 +1169.6491969758,765.010548291763,0.832347333306179,23369.5907262712,131200.923714288,36146.843159711,11511.7334903538,48413.6249868221,0.236462310598346,186.249872129904,13,14 +3429.50981876905,2388.43656108835,0.306155965988876,9050.18539245019,220609.482908273,5693.49448427971,1813.21480391074,81405.7132502852,0.086976126701385,546.100289612906,4,2 +3089.43302997064,2625.68580876378,0.542021914062555,6869.247180999,260764.893201607,42903.8911445579,13663.6596001777,96223.2078234712,0.153983498313226,491.947934708701,7,12 +98.0346420192566,553.600001520765,0.890668469456369,6841.29273736927,267121.80610293,18310.1002664016,5831.24212305783,98568.9321413026,0.253030815186468,15.6106117865058,8,4 +3957.68247409951,3027.40493385047,0.647897879881209,12766.8929983008,19476.457978224,618.601551077078,197.006863400343,7186.88486281329,0.184061897693525,630.204215620941,19,23 +2537.84317945514,3064.55871578704,0.830481751659306,10291.7155504874,32251.8863652523,44068.3434890779,14034.5042958847,11901.0650794289,0.235932315812303,404.115155964194,2,15 +2865.17087913763,986.722664873804,0.801283390487168,7126.56262525744,195294.883148525,29581.4985947679,9420.85942508532,72064.532527131,0.227637326842945,456.237401136565,5,11 +1436.67912928932,332.174450966822,0.092179146222341,12218.1336542501,210928.338186846,43595.1316150266,13883.799877397,77833.3351242974,0.026187257449529,228.770561988745,15,24 +226.840088379974,1110.33021414485,0.905832851058486,11080.9994751316,1236.45199815809,30279.8846899801,9643.27537897455,456.255349873834,0.257338878141615,36.1210331815245,2,4 +2705.0453408814,269.317620469013,0.594836480438771,19227.9619941737,187426.573027125,8747.57147064203,2785.85078682867,69161.0970579797,0.168987636488287,430.739703962006,16,9 +21.2872801424516,2005.49841887327,0.282863862668198,10338.7357699078,142878.54807629,4458.5631047304,1419.92455564662,52722.7114672657,0.080359051894375,3.3896942901993,13,5 +3226.49520688161,2607.50670620565,0.891628939076622,17291.647898411,170766.930723252,15425.1962223239,4912.48287335156,63013.6275731557,0.25330367587404,513.773122114906,7,13 +911.284966024422,298.274362090084,0.701602187186837,15017.6414224565,141012.539195933,39518.8657646053,12585.6260396832,52034.1473047723,0.199318803178079,145.109071022997,4,14 +2463.2298423566,3649.78908944465,0.498646077376316,12151.8013539628,280021.528721793,13135.0465029854,4183.13582897624,103328.977388115,0.141660817436453,392.234051330669,14,13 +628.626675913492,2581.4063334041,0.377906354504794,14582.3029920567,57552.103540529,26879.7811433283,8560.43985456315,21236.938575841,0.107359759802498,100.099789158199,4,10 +972.471503744661,727.876223347342,0.177534303753191,12907.0205736034,121720.500541955,3321.61893975215,1057.84042667266,44915.3138531199,0.050435881748066,154.852150277812,10,17 +3506.15741115312,557.29258722608,0.600409079450186,308.226222493269,185366.075195241,24830.6148579866,7907.83912674733,68400.7657547015,0.170570761207439,558.305320247312,10,16 +641.648742999316,3224.61922992889,0.756036013496897,23822.4459413049,177477.954336309,932.625128423808,297.014372109493,65490.0200502985,0.2147829583798,102.173366719636,1,23 +748.906094736402,835.742761028856,0.965283513750146,6032.66158764535,269333.673352073,14421.0698999913,4592.6974203794,99385.1193181081,0.274228270951746,119.252562856115,13,4 +3151.54238525994,3688.17450080986,0.67204569210541,16015.3459892809,167693.731741972,20644.1840349405,6574.58090284729,61879.6058088458,0.190922071620855,501.837959436296,13,8 +2639.1172972139,1764.27294066518,0.609584461823484,13537.6943064079,97781.4424976975,11348.8371983586,3614.27936253459,36081.7130987814,0.173177403927126,420.241607836608,8,17 +1295.04206389736,2165.41533403794,0.496469713982437,24117.464559604,159501.808945727,17083.5526948125,5440.62187732882,58856.756068534,0.141042532381374,206.216889155631,10,17 +2579.39366910925,2588.47848286054,0.509794926562882,8261.85343184041,286158.612603928,28339.3409971915,9025.26783350048,105593.583986689,0.144828104137182,410.731475972811,14,15 +795.149075980643,455.754171041661,0.541700032041092,20395.7955340769,238994.137096973,41434.9968254621,13195.8588616121,88189.7184859679,0.153892054557128,126.616094901376,13,2 +2704.75158803959,1842.73071914783,0.106115792137379,2509.16250234052,68108.5890177001,34266.3669687809,10912.8557225417,25132.320670738,0.03014653185721,430.692928031782,1,1 +394.740154801821,269.080619405053,0.402618669284177,14612.3587992918,275625.117142865,2348.17401057391,747.826118017169,101706.68529257,0.114380303773914,62.8567125480607,16,11 +173.193038738702,1109.49439132268,0.635170251444076,19650.8513342639,55462.5146287513,23711.1928578973,7551.33530506283,20465.8725567348,0.180446094160249,27.5785093532965,13,0 +2067.16375241607,3972.62467319503,0.278267466860917,21105.2242099379,157343.766816321,1862.12197389416,593.032475762471,58060.4305595281,0.079053257630942,329.166202614024,0,20 +2999.92887460624,424.106871413404,0.965678080034426,4428.29016777215,192869.542057136,9528.74226686075,3034.63129517858,71169.5727148103,0.274340363646144,477.695680669783,15,8 +3206.59775528138,3900.65178500442,0.392387133032278,13620.9239691893,221489.256328999,17514.2416018034,5577.78394961892,81730.3528889295,0.111473617338715,510.604738102131,13,6 +1847.50835328674,2375.71456021308,0.302485271762088,17463.0918986005,24886.0830188629,13711.6762974637,4366.77589091201,9183.05646452506,0.085933315841502,294.189228230373,3,16 +2888.61969178747,1345.81309450041,0.769717569969059,1619.2652758106,235496.67620359,25188.9296686625,8021.95212377787,86899.1425105498,0.218669764195755,459.971288501189,4,1 +2563.38637259611,196.283417639459,0.372224731266004,15241.5014577211,63788.8094715028,24604.8171350384,7835.92902389758,23538.3060780453,0.105745662291478,408.182543407024,15,8 +374.197980538742,3602.10593509707,0.955898093868293,18373.8557613224,227915.514172326,21921.3289765432,6981.31496068255,84101.6657462458,0.27156195848531,59.5856656908825,19,14 +1563.26903017066,3320.97989914296,0.317179066136515,23991.5904232925,194270.287940678,35721.1925111856,11376.1759589763,71686.4531146413,0.090107689243328,248.928189517621,4,14 +3003.18217389309,2406.16864622327,0.432908962427628,6479.92250307997,6110.45705883207,43121.0137867035,13732.8069384406,2254.78120252106,0.122985500689667,478.213721957498,11,1 +1265.56096355078,1898.94370347706,0.981858379824428,11777.8376368879,185072.675784463,6806.0259697344,2167.52419418293,68292.5002894697,0.278937039722849,201.522446425283,9,11 +1194.75248591626,673.575985635347,0.968077775643482,9874.87510173052,40723.6102691349,24473.0281440662,7793.95800766439,15027.1624609354,0.275022095353262,190.247211133162,15,23 +1851.51934631433,2671.66177482768,0.108991415855511,15853.9253793214,13099.6297897246,32504.5200802943,10351.7579873549,4833.81173052568,0.030963470413498,294.827921387632,9,24 +3132.62291287624,1278.95306816015,0.643665424222825,24067.9639145413,21585.3000747312,28370.1708190141,9035.08624809366,7965.05537812959,0.182859495517848,498.825304598127,4,12 +2131.081549463,816.813894699245,0.297168622533754,4152.85488580098,38512.6011894161,1418.87981026661,451.872551040322,14211.2919518141,0.084422904128907,339.344195774363,2,1 +3234.74487607633,976.409983919197,0.900320687943392,12034.0200402863,3562.07343597431,22471.004778703,7156.37094863153,1314.41824205694,0.255772922711191,515.086763706422,0,13 +1791.83639452359,456.309286105406,0.186422979238932,15805.1322219624,236966.142376762,24906.8643162607,7932.1223937136,87441.3809508347,0.052961073647424,285.324266643884,3,24 +3563.59073845026,3060.16807542897,0.146284377998138,12254.5104567031,245702.279146278,18406.6589380658,5861.99329237764,90665.0476554531,0.041558061931289,567.450754530296,17,13 +1414.77919285054,2109.06424173323,0.130744225326976,9559.53055063794,280947.826822074,22850.3030405655,7277.1665734285,103670.784805193,0.037143245831527,225.283310963462,12,20 +2206.15464552106,344.616137399923,0.495289835905684,22891.589044513,38926.0723478954,32001.9336092569,10191.6986016742,14363.8643350168,0.140707339745933,351.29851043329,19,10 +775.258588062839,3815.95500297626,0.48756493979728,14215.354408405,38158.7660720326,16205.0776893151,5160.8527672978,14080.7254878349,0.138512766987864,123.448819755229,0,11 +3178.87919885849,1600.48214151078,0.125664092465801,15694.5135839293,274057.798025251,1422.57303425024,453.048737022369,101128.338754705,0.035700026268694,506.190955232244,1,3 +2261.84008614377,1593.69374591066,0.953421698085233,6309.0468673325,105673.370502225,17486.6781981764,5569.00579559758,38993.8636539576,0.270858436956032,360.165618812702,7,24 +1534.73012746073,112.297109223043,0.156713788493273,20631.0347615372,84747.2981122562,14679.4287914459,4674.97732211653,31272.0657240798,0.044520962640134,244.383778258078,9,6 +2302.7505024854,3792.50445516649,0.359934413452841,3291.31705923346,78573.0607650307,9949.98581966208,3168.78529288601,28993.7493597899,0.102254094730921,366.680016319331,14,17 +316.50636457629,1868.95821856821,0.457958233880594,10849.5766894391,286096.319631524,32548.3366606111,10365.7123122965,105570.597650009,0.130101770988805,50.3991026395366,2,24 +3441.76957500525,1635.54192873681,0.959689140815253,9777.17615496019,131351.611859756,1977.70283312716,629.841666601006,48469.2294685446,0.272638960458879,548.052480096377,7,20 +1082.89300277508,373.950744987128,0.982654380210019,13734.5579568014,77169.9358494276,20990.3470699697,6684.82390763366,28475.9910883497,0.279163176196028,172.435191524694,1,8 +3081.74634137294,3771.69172486049,0.753682749516669,8809.95278509668,199059.357381425,44028.9238029806,14021.9502557263,73453.6374101199,0.214114417476326,490.723939709067,9,10 +366.774319735572,3535.18670385493,0.648106506451081,23527.1141231584,40585.1576253795,21150.625932701,6735.86813143344,14976.0729244943,0.184121166605421,58.403554098021,0,6 +510.841017845215,491.50478050378,0.211766134416603,6741.13828912698,152779.534741689,24712.8292809361,7870.32779647647,56376.2120818041,0.06016083364108,81.3441111218495,11,1 +3507.02472372224,2497.47535132286,0.274923768719282,11092.1444558817,106079.1102252,39103.9172145463,12453.4768199192,39143.5831089299,0.07810334338616,558.443427344306,8,22 +2507.03470598301,3654.05732597048,0.017662066276633,7311.91792970032,272393.703702198,31355.2388254828,9985.74484887987,100514.281808929,0.005017632464953,399.209348086467,13,2 +1476.13121646259,3351.48936340901,0.31323712021014,14815.2415177658,282052.837105114,41609.9542520906,13251.57778729,104078.537677164,0.088987818241517,235.052741474935,8,1 +1248.78500811738,3797.27457467903,0.263576398703595,14186.4459636607,164356.361583155,33603.1651840348,10701.6449630684,60648.1039052232,0.074879658722612,198.851115942258,4,25 +77.8732129062633,3706.37801802018,0.377742485482135,23193.5621309871,189965.822440254,4837.04476056562,1540.46011482982,70098.0894613483,0.107313206102879,12.40019313794,8,21 +1463.09292712776,2453.97146792723,0.802972090287348,3603.64760834563,80581.5855434051,43432.8598912661,13832.1209844796,29734.9024145406,0.22811707110436,232.976580752828,4,11 +2136.60525773431,547.29313433978,0.405570519149606,7924.80816654126,145813.638223231,27631.1831994348,8799.73987243146,53805.7705620779,0.115218897485684,340.223767155145,0,0 +3700.35959791576,2744.39439079726,0.694574456507692,19841.3030186039,124167.68353313,26193.7997585124,8341.97444538611,45818.333407059,0.197322288780594,589.229235336904,7,19 +2575.47606239766,2527.14913496988,0.447517137309027,10033.2573503288,164452.807589867,37676.3032780714,11998.8227000227,60683.6928375893,0.127135550371883,410.107653248035,2,7 +3951.96668924211,2222.45488260005,0.29526874126639,16820.4957081071,52134.9753079302,44994.4032882822,14329.427798816,19237.9982686089,0.083883165132497,629.294058796514,7,22 +2830.22011435711,1258.83623661565,0.629739952051769,24425.0554342853,46895.1855999342,40286.30639605,12830.0338840924,17304.496531341,0.178903395469253,450.671992732024,10,22 +3133.94593677428,801.260895770987,0.92249647186907,17694.4714904707,112677.332000679,9265.9912756382,2950.95263555357,41578.3512917635,0.26207286132644,499.035977193357,0,12 +2543.00408831229,3877.14000184537,0.042314600365754,9320.56041663187,84258.646245523,30893.312126533,9838.63443520159,31091.7513821118,0.012021193285726,404.936956737626,18,5 +3847.95960631204,2588.50994220431,0.8451028516726,24255.2914598964,62739.2540093169,22946.7932932661,7307.89595326946,23151.0162396003,0.240086037406989,612.732421387267,11,16 +2086.98499897074,3946.78076032331,0.485357213276299,19463.0538814016,26278.5268271629,15626.4995098676,4976.59220059478,9696.87336795679,0.137885571953494,332.322452065404,5,14 +2139.48599230396,2012.17681989869,0.237660737227752,19535.5998821524,181143.73506199,1231.17544531644,392.094090865108,66842.706664941,0.067517254894248,340.682482850949,18,22 +3303.27522069044,602.189097592918,0.548913560414762,22931.2915396658,239475.109790012,42329.7135548233,13480.8004951667,88367.1991845063,0.155941352390557,525.999238963446,11,19 +1025.85180803482,4006.77769415022,0.560503205888073,2910.77385203383,55352.2262839721,15662.8318762138,4988.16301790248,20425.1757505432,0.159233865309112,163.352198731659,10,5 +548.138216083658,3165.65739383915,0.452471927051499,11953.5398876405,217359.991478741,41527.2072165319,13225.2252281949,80206.6389220446,0.128543161094176,87.2831554273341,3,17 +1942.89034493995,3285.61149106466,0.539249115424539,1254.36713473726,107524.757140896,27815.0718235011,8858.30312850354,39677.0321553122,0.153195771427426,309.377443461775,17,6 +3384.39417405003,501.675249398319,0.424220119868918,14898.0539018715,169030.813171799,10129.2389786844,3225.87228620522,62372.9937903317,0.120517079508215,538.916269753189,14,19 +3885.74384187414,3298.44571150536,0.890854137412604,15477.804487551,128378.630793423,4603.21282515689,1465.99134559137,47372.1884846579,0.253083561764944,618.74901940671,7,4 +3425.84745352186,3981.12263126773,0.385193629591599,7456.73672339529,21358.9849399235,31678.2536332643,10088.6158067721,7881.54425827436,0.109430008406704,545.517110433417,18,2 +2437.69224643249,151.060013111294,0.033065403154996,10891.8783129415,266230.851087772,30384.1325241301,9676.47532615608,98240.1664530524,0.00939358044176,388.167555164409,2,8 +2089.28184319534,1295.25257511952,0.963490411063285,9357.91098115035,192086.698711631,4177.98853372227,1330.56959672684,70880.7006315982,0.273718866779342,332.688191591615,7,2 +684.329226488405,3833.80287908187,0.889831256505076,15205.15250301,37245.2684759866,21435.9577231398,6826.73812838847,13743.6415040541,0.252792970598033,108.969622052294,17,3 +1658.10470531123,2312.91385835443,0.350610158320626,17552.1883606388,170610.423440056,30719.2118625066,9783.18849124414,62955.8758081387,0.099605158613814,264.029411673763,2,5 +2421.95075814473,1971.98552779195,0.918939654198536,7090.35492871634,150449.456070799,34573.4904078624,11010.665734988,55516.4044541694,0.261062401760948,385.660948749161,0,10 +2842.00136681144,3154.66123606727,0.331212728570516,9203.69042103367,183071.556256099,34847.2032649833,11097.8354347081,67554.0797992985,0.094094525162078,452.547988345771,1,9 +2489.8599344318,3756.27127728714,0.352434818343106,12858.7601989547,55286.7164993859,10788.0439309404,3435.68278055427,20401.0023982974,0.100123527938382,396.474511852197,16,20 +314.525942540108,844.725764801261,0.423635533783197,21109.407087314,8365.00956598928,21897.6005577499,6973.7581394108,3086.71939704401,0.120351003915681,50.0837488121191,11,19 +450.415784502188,3181.13986104215,0.907116863174537,18199.5274929114,256890.978676619,31353.5494477234,9985.20683048516,94793.7190688631,0.257703654310948,71.7222586786924,6,23 +1582.81857214545,1299.39690785967,0.014076794727833,19383.4958443509,6910.18796662852,21845.9041599097,6957.29431844258,2549.88485853451,0.003999089411316,252.041173908511,2,3 +2419.21734273967,1295.64115327778,0.400794381846683,8187.721968471,222088.378242395,30770.1570633896,9799.41307751261,81951.4310857546,0.113862040297353,385.225691519056,1,21 +854.349923414027,3832.71513822205,0.656695918445198,19814.0379459727,250179.215252862,36724.9282878309,11695.8370343411,92317.0535988421,0.186561340467386,136.042981435355,14,3 +2068.07039194915,3175.50220710473,0.05297230228502,22162.6017344735,200323.004509415,36136.1568342407,11508.3302019875,73919.9278632528,0.01504894951279,329.310571966425,12,16 +2445.99317294886,2336.04763934211,0.584128326199616,10127.7713881617,98040.7690734609,20194.1484970135,6431.25748312532,36177.4055621627,0.1659455472158,389.489358749818,0,18 +3524.58086731168,3336.9314853057,0.169306555667205,16761.6209726458,40079.9618905827,41519.3091137725,13222.7099088447,14789.6538341634,0.048098453314547,561.23899161014,0,22 +3729.83128320364,3938.66672904422,0.007910433545154,7040.84239285296,286273.594996954,22520.6880718886,7172.19365346771,105636.012914005,0.002247282257146,593.922178854083,2,3 +3186.97918317084,3392.55261224916,0.855931082276555,19791.025788739,146573.891828344,24873.8596911012,7921.61136659274,54086.3069477284,0.243162239283112,507.480761651408,9,3 +3417.23579529226,2237.06750555706,0.837910101924622,5722.30164920654,76132.9316502683,23679.6511205767,7541.29016578876,28093.3327122761,0.238042642592222,544.145827275838,11,6 +29.3876301365777,2576.1654867462,0.522611964033306,10162.750755599,14956.8046269641,8493.42078984082,2704.91107956714,5519.11609851074,0.148469307964007,4.67955893894549,19,17 +1365.41404659349,1021.04722433955,0.249632132411327,16703.3904639047,68556.9426559157,23023.8020929053,7332.42104869596,25297.7648176811,0.070918219435036,217.422618884314,7,18 +3884.31550177173,2365.50554551126,0.717220582641133,16527.6537467844,285740.481885085,5145.02851666024,1638.54411358606,105439.292208518,0.203755847341231,618.521576715244,13,5 +3327.26032706246,3793.88729821383,0.871861066894131,3233.35253686252,76352.5121162658,32221.3616214733,10261.5801342272,28174.3587144892,0.247687803094924,529.818523417589,17,16 +3830.34943663592,3276.26563498296,0.810419440428376,22831.9437694392,102645.131481325,28020.6008736064,8923.75824000204,37876.4322809317,0.230232795576243,609.928254241389,9,10 +457.54534689244,2514.91558512984,0.76045272179529,18557.3122065893,28952.0656308685,7993.27732758695,2545.62972216145,10683.419051981,0.21603770505548,72.8575393140828,1,13 +376.608382487115,3233.6913513704,0.611557215257007,11330.282844732,128077.541149577,25568.1872127853,8142.73478114182,47261.0852950469,0.173737845243468,59.9694876571839,19,16 +2997.51387612172,2038.70577207425,0.172705743298056,6412.4843189092,21331.7360871636,18866.277680418,6008.36868803121,7871.48933105668,0.049064131618766,477.311126770975,2,1 +2109.05337188994,1675.27625883349,0.353170565976546,15770.0665584591,169452.903792694,36260.5941015297,11547.9599049458,62528.746786972,0.100332547152428,335.836524186296,17,2 +1841.64890081474,2622.85179894189,0.817735626853868,24696.8970177765,193731.613885191,26308.2681955138,8378.4293616286,71487.6804004395,0.23231125762894,293.256194397252,6,5 +1088.90466299063,685.37218985416,0.794324727193932,22806.9210985263,126168.835521285,24662.9370980593,7854.43856626092,46556.7658750129,0.225660433861912,173.392462259654,7,15 +2292.22434818137,1399.78189320953,0.650306847625992,19518.4935879711,211155.057552191,25529.3372111346,8130.36216915115,77916.9954067126,0.184746263530111,365.003877098944,11,21 +1846.96757048421,2369.90852787962,0.70296522476411,21032.7699126205,86979.5012606579,33523.565473594,10676.2947368134,32095.756922752,0.199706029762531,294.103116319142,13,2 +2243.11883111755,3968.05120142493,0.97415054460833,1499.87330229581,126000.031233315,20389.7451794112,6493.54942019465,46494.4764698579,0.276747313809185,357.184527248017,0,4 +3326.22254706251,244.594031915542,0.37033877704506,8045.49916586683,17213.4417036685,31195.6151533511,9934.90928450672,6351.82350688875,0.105209879842347,529.65327182524,5,10 +1746.1352238718,1000.51023232416,0.157962351586279,1447.54938979289,88456.4743783633,20411.0484834353,6500.33391192207,32640.7654532706,0.044875668064284,278.047010170669,19,9 +3980.97887930234,2502.192022221,0.213719515672305,5285.10960013363,221407.767308356,25486.5572849969,8116.73798885252,81700.2831396148,0.060715771497814,633.913834283812,2,11 +2465.98945203252,1548.97136828846,0.277609714257504,7623.52213315536,71171.361054654,322.387988942296,102.671334058056,26262.4948541159,0.078866396095882,392.673479623013,12,6 +1610.49000939057,377.23451145642,0.053413344927089,22863.0084712359,222338.057160063,5706.55866683779,1817.37537160439,82043.5635276985,0.015174245717923,256.447453724613,15,0 +304.379513270026,3501.87323442708,0.339168363599107,9274.61755911729,86074.7013408618,39081.4719355371,12446.3286418908,31761.8824136021,0.096354648749746,48.4680753614691,7,1 +36.0670516140575,2003.1669094601,0.355008572160855,12437.2531246183,204452.935219864,7492.02597074139,2385.99553208324,75443.8875350052,0.100854708000243,5.743161085041,9,18 +1429.85482066048,1550.75727642269,0.173031334963592,21322.6009516495,280848.286165246,25055.4240797379,7979.43442029869,103634.053935515,0.049156629251021,227.683888640204,2,15 +3556.31750801811,2698.85620523254,0.358314811694978,20518.6756563818,258304.201225151,43453.148451515,13838.5823093997,95315.2034041148,0.101793980595164,566.29259681817,14,3 +3402.44702397908,1650.04370690568,0.161414009805861,6952.36980963033,162107.779296171,18402.6812901367,5860.72652552124,59818.3687439745,0.045856252785756,541.790927385204,18,4 +2187.98537807186,1758.26384438036,0.328805152463285,6731.38754014755,273960.227228184,26495.9618863951,8438.20442241882,101092.334770548,0.09341055467707,348.405314979595,8,14 +1119.90236793464,2578.0910773708,0.833853255456769,15001.8153739351,109456.113652754,21546.328868749,6861.88817476083,40389.7098349646,0.236890129391128,178.328402537363,3,4 +3017.29803430962,3031.65088011281,0.499022608598778,11203.6655053426,189090.914918487,44040.8138815226,14025.7369049435,69775.2453573753,0.141767786533744,480.461470431468,0,13 +3631.36525870582,3715.86029200318,0.364468473272951,13888.2126990117,286243.53572143,21213.8905687948,6756.01610471172,105624.920930417,0.103542179907088,578.242875590099,13,24 +2051.1655495218,474.747800960401,0.410871599846138,11794.6815725389,114192.46602501,14455.283581158,4603.59349718408,42137.4413376421,0.116724886319926,326.61871807672,1,7 +1932.30298024666,1192.86219632663,0.172976354713596,13882.1954924707,165044.45333806,1078.40781560243,343.44197949122,60902.0123018672,0.049141009861817,307.691557364118,2,22 +3373.42421602064,1594.53558415787,0.198112540857076,24184.5087030452,84141.9400354582,1090.57349071004,347.316398315299,31048.6863599477,0.056281971834397,537.169461149783,10,23 +2809.42667975931,1377.22676094549,0.327772709893435,7738.10938778591,49185.7857944971,42113.824630945,13412.0460608105,18149.736455534,0.093117247128817,447.360936267406,2,24 +3057.30768303165,795.436570974131,0.363842245173821,5891.57049285425,94054.1145332862,32759.2117783537,10432.8699931063,34706.3153259359,0.103364274197108,486.832433603766,10,24 +2646.04535232369,3013.23522347134,0.38250010555405,6756.81775109275,44619.7116717772,23623.5364599417,7523.4192547585,16464.8382552683,0.108664802714219,421.344801325428,4,2 +212.40779165809,785.275208861022,0.358153862873984,5029.06090762731,245305.687897926,3792.89540346293,1207.92847244042,90518.7040213749,0.101748256498291,33.8228967608424,0,20 +3936.39373604503,3694.52109077642,0.101101811695782,12057.48751822,168629.805808396,44848.5693880252,14282.9838815367,62225.0205935041,0.028722105595393,626.814289179145,0,20 +1208.92231250208,3117.98017109965,0.458787439521197,2255.9214614439,49787.1497163068,35274.0305230491,11233.7676824997,18371.6419617368,0.130337340773067,192.503552946191,10,11 +2290.6154245542,1903.99148624574,0.363671215141153,17295.0148576149,280540.163652229,15606.1598780478,4970.11461084325,103520.355591228,0.103315686119646,364.74767906914,9,22 +3348.68329967544,2757.13514385194,0.025844387996235,651.751437663391,151075.924056758,35800.7697446626,11401.5190269626,55747.5734526782,0.007342155680749,533.229824789083,13,24 +841.02640287531,1344.82909288433,0.264885067836448,21784.131725035,192666.013951404,20785.223780259,6619.49801919076,71094.470092769,0.075251439726264,133.921401731737,5,22 +1396.16427918461,3342.53597809695,0.815300903469194,6438.16780481425,258403.428031921,36199.2177805089,11528.4133058946,95351.8184619635,0.231619574849203,222.319152736403,13,12 +1025.70095555277,2211.21914191633,0.788375475414803,9139.27043938736,157131.990019278,11061.0793832056,3522.63674624382,57982.284139955,0.223970305515569,163.328177635791,5,10 +2205.7929225706,1324.52487034988,0.471343443178214,11332.410520366,127498.188205371,4423.02128792174,1408.60550570756,47047.3019208011,0.133904387266538,351.240911237357,15,23 +2676.43496695858,3335.01836327197,0.600039668355837,125.770389332262,53505.0263037864,3757.51720316357,1196.66152966993,19743.5521416186,0.170465814873817,426.18391193608,11,3 +3355.93369498963,141.174782940807,0.239400444862919,24119.8187014107,249287.445500152,2098.86369826885,668.427929384984,91987.9872694288,0.068011490017875,534.384346335928,3,13 +2283.85497627513,307.277744618406,0.981179327205268,21006.1631006125,245080.150258706,39454.3648128394,12565.0843352992,90435.4798002605,0.278744127046951,363.671174566104,8,1 +1447.6129350045,1463.13179262137,0.720526688242296,23814.3042477967,63155.5244555101,25150.8304919774,8009.81862801828,23304.6215702989,0.204695081887016,230.51161385422,17,19 +3283.94571425409,3196.33942887221,0.098904154416221,8923.45932143477,176738.207011917,16850.940197033,5366.54146402325,65217.050557903,0.028097771140972,522.921292078677,13,11 +240.096077161892,3442.07074131159,0.816318317944142,6248.74076286099,31583.8655517202,37646.320611722,11989.2740801662,11654.5629342141,0.231908613052313,38.2318594206834,17,1 +1957.27416984179,1442.9232374174,0.404393353902995,7369.63271291809,8278.24150326516,14045.8356183372,4473.19605679529,3054.70166172146,0.114884475540624,311.667861439775,3,4 +2894.66029017142,153.798527425293,0.093772941168979,4312.53821676023,38450.8379314981,3402.80879225726,1083.69706759785,14188.5010817336,0.026640040104824,460.933167224748,5,24 +464.747620981458,1308.16038126739,0.828322272090102,24565.8957821921,16918.5872546932,23544.2200651827,7498.15925642761,6243.02112719306,0.235318827298324,74.0043982454551,11,15 +233.408165024718,531.266247853809,0.673978383332203,23700.0819838184,87454.0015019106,40646.0998415302,12944.6177839268,32270.8492626976,0.191471131628467,37.166905258713,14,9 +3874.6366572316,3220.6228658401,0.286908332893603,19970.5898726123,142066.437453769,41891.1413896584,13341.1278311014,52423.0396508373,0.081508049117501,616.980359431783,3,3 +3404.31564278874,3692.28092883053,0.937671912914862,23151.3210096034,285461.519105833,37889.8224875342,12066.8224482593,105336.353913592,0.266384066168995,542.088478151073,10,21 +3342.83752895535,2808.52324262333,0.341875369081449,2465.46079332178,33295.6237796042,19244.8695501164,6128.93934717083,12286.2080367543,0.097123684398139,532.298969578877,13,2 +693.226103841976,1256.87834212569,0.875432508452458,13228.541422558,112477.146254006,3318.5935353182,1056.87692207586,41504.4820125483,0.248702417173994,110.386322267831,6,0 +989.942510415287,3761.35150522577,0.105386733726642,9046.90083713892,49116.3728073636,1427.5303434419,454.627497911433,18124.1228071452,0.029939412990523,157.634157709441,7,3 +2042.89359816568,1929.87488193044,0.739279289020657,18955.0950792163,193846.430218818,41495.3074726445,13215.0660740906,71530.0480512244,0.210022525289959,325.301528370331,17,12 +3473.46870167014,1760.28211933957,0.18795898016809,9695.32095672397,25731.9391564426,12250.1154369675,3901.31064871576,9495.18050053233,0.053397437547753,553.100111730914,15,3 +3142.86299917051,1835.87390734987,0.259376582852161,13381.960949843,277634.514517889,13280.235905585,4229.37449222452,102448.160338704,0.073686529219364,500.455891587661,8,18 +1475.26498792766,2263.11033580117,0.712345636406968,5559.8314295067,169104.581235913,25448.7468261571,8104.69644145131,62400.2144781967,0.202370919433798,234.91480699485,10,14 +3482.14257551622,1871.42512309761,0.609015260343725,19141.9778917306,260454.488905142,7322.4513244496,2331.99086765911,96108.6674926723,0.173015698961286,554.481301833793,11,12 +356.517852332757,3155.51774777976,0.465465447310404,24563.8690497172,100673.40360083,22315.7226903742,7106.9180542593,37148.8574172804,0.132234502076819,56.7703586517129,17,3 +2154.31753081027,3461.53704025661,0.108244830270188,5325.06941688689,210370.242693426,20765.5349622609,6613.22769498755,77627.3958278325,0.030751372235849,343.044192804183,1,3 +1225.1000978586,1806.4871516856,0.626429656264393,7671.84355046883,142120.906596351,15290.20251872,4869.491248,52443.1389654432,0.177962970529657,195.079633416975,8,14 +3801.79163962436,1626.8599540098,0.485734575601819,22422.1092938748,98359.0669372184,33324.090974534,10612.7678262847,36294.8586484201,0.137992777159608,605.380834335089,5,17 +927.588367809683,2304.19755833701,0.166837356563717,20370.3238101851,115789.188303801,44784.2098913486,14262.4872265441,42726.6377504801,0.047396976296511,147.705154109822,7,25 +3433.05653102758,124.42977580044,0.669926722519525,18572.4163654722,133449.905464029,6903.2524287853,2198.488034645,49243.5075513022,0.190320091624865,546.665052711398,14,7 +371.163866126945,1593.30107886053,0.912261434354134,8487.6418148165,53667.2038061324,37627.1378854622,11983.1649316759,19803.3962384252,0.259165180214243,59.1025264533352,11,21 +2732.54656545603,1818.90347618068,0.133735093093183,15100.0479116465,30796.344697882,28378.1157452154,9037.61647936796,11363.9648331668,0.0379929241742,435.118879849686,8,7 +1413.45296743288,1790.07074383607,0.33375568480046,17678.6118297807,235464.677283226,26514.0666741715,8443.97027839857,86887.3347908583,0.094816955909222,225.072128572115,0,11 +3868.2878166936,730.810756034331,0.916662403545372,21701.5296457511,161297.316382321,2215.71961987078,705.64319104165,59519.3049381258,0.260415455552663,615.969397562675,10,7 +3641.93842716507,3977.13169995276,0.322117780601899,10118.3317365947,243600.924390323,16399.7406720669,5222.84734779201,89889.6399964291,0.09151073312554,579.926501140935,14,25 +2721.7936385592,3567.93535374708,0.654362529017596,2580.0101093337,245742.191491441,19253.6992641899,6131.75135802226,90679.7754580963,0.185898445743635,433.406630343822,11,5 +3100.49527655511,3255.63323867351,0.274612688227464,1523.0642928959,23330.6266003106,1412.83974528681,449.948963467137,8609.08730638768,0.078014968246439,493.709438941897,5,14 +2464.45844340456,1404.54945794696,0.586430356186837,10425.9097497919,35631.4474310367,36652.1759439128,11672.6674980614,13148.1355834084,0.166599533007624,392.429688440217,2,22 +3405.4795988157,1021.57719464425,0.708335026185503,15333.7223668745,249287.01405757,22077.6754538628,7031.10683244038,91987.828065524,0.201231541529972,542.273821467468,9,12 +748.204475881463,2734.01124216416,0.527279456543059,16878.3924325826,154989.252909602,42032.1917435229,13386.0483259627,57191.6062397055,0.149795300154278,119.140840108513,15,1 +94.1835664668312,3544.94596314329,0.563510509499556,19981.1642579861,70524.9466414865,11375.8257319152,3622.87443691567,26023.965550364,0.16008821292601,14.9973831953553,11,16 +3846.08259909772,2621.62924526043,0.904888155533841,3100.47033838355,178884.370353123,37405.8798591166,11912.7005920754,66008.9927502299,0.257070498731205,612.433534888172,13,0 +1739.70557028443,3625.11883478387,0.197743190244988,11374.145986521,281373.218955921,20157.6809290418,6419.6436079751,103827.756072296,0.056177042683235,277.023179981597,19,24 +2477.27028368257,906.217100787648,0.375410771249896,1960.90136852707,202024.962912375,35841.2056028462,11414.3966888045,74547.9567942343,0.106650787286902,394.469790395314,9,0 +52.2930748938502,3156.04411327613,0.338865272794792,11057.8742303771,106402.372028608,39532.3711505316,12589.9271180037,39262.8679072354,0.096268543407611,8.3269227537978,0,3 +38.0425850657445,2685.94390954614,0.973082887068671,18946.9108143899,211267.000175173,30042.217478768,9567.58518432102,77958.3026476653,0.276444002008145,6.05773647543702,0,14 +724.726524746806,2954.59824007188,0.35725059563413,6684.04998600967,231475.678599278,12557.3809344363,3999.16590268672,85415.3795569292,0.101491646486969,115.402312857772,16,2 +105.060756671837,613.409954127052,0.596533553273456,821.423796276899,127428.60357601,25456.9661093618,8107.31404756745,47021.6249357971,0.169469759452686,16.7294198522033,13,4 +3962.37927285489,1891.44230753484,0.368353372545722,2842.15235384357,98276.4938185305,40786.6698329607,12989.3852971212,36264.3888629264,0.104645844473216,630.952113511925,19,16 +85.6514256929976,117.655847698469,0.036216542916501,13486.0658237911,30118.6698321403,36879.4719073925,11745.0547475772,11113.9003070628,0.010288790601279,13.6387620530251,14,14 +68.0569512720383,120.809273054684,0.346807197596108,18053.8930276594,257978.343045826,32594.1259075441,10380.294875014,95194.9605335151,0.098524772044349,10.8370941515985,15,23 +930.044898057464,2792.23697615763,0.269952754099671,21557.2211073267,129103.859529715,7446.15228823371,2371.38607905532,47639.8005644705,0.07669112332377,148.09632134673,15,9 +2111.80915284441,73.2923993848027,0.985965493094565,14087.7661938929,273214.536546332,33446.2160749321,10651.6611703605,100817.172157318,0.280103833265501,336.275342809619,18,18 +3700.73163499634,1296.94690576717,0.270311529617617,24288.184577706,32778.090227045,38164.970686841,12154.4492633252,12095.2362461421,0.076793048186823,589.288476910245,1,12 +2980.20155658976,3452.28387393465,0.876901643977279,9224.73823461284,5274.88725748164,32399.9454368837,10318.453960791,1946.45286253935,0.249119785220818,474.554387992,2,6 +2567.0279810938,3810.57553833385,0.286877337740157,9442.04483177204,238591.901572612,27728.479770123,8830.72604144045,88041.2920932148,0.081499243676181,408.762417371624,13,11 +532.436381336636,2376.40858653185,0.226458870009245,17969.3060507186,147976.560113802,601.645268663896,191.606773459839,54603.8967209601,0.064334906252627,84.782863270165,10,14 +134.90486643512,719.222364246718,0.011859553287604,11286.2742737115,188471.079652084,2873.52473925533,915.135267278768,69546.5238568576,0.003369191274888,21.4816666297962,6,22 +1768.87454705253,1158.26309661836,0.534904250278599,20151.3517649667,191300.139000536,34297.4287737391,10922.7480171144,70590.4571957698,0.151961434738238,281.66792150518,2,0 +3143.10178949655,3537.29836748351,0.339301912318255,21314.0324350934,270022.591813036,18097.1303197907,5763.4172992964,99639.332772338,0.096392588726777,500.493915524928,15,10 +1164.46206101441,2409.63071229329,0.437006021959642,24355.062236644,277351.857322009,34078.8072197996,10853.1233184075,102343.858790409,0.124149438056716,185.423895065989,3,4 +2550.34293006874,2577.62621173024,0.514681860935518,5435.37217459338,123502.961276948,1008.65665664238,321.228234599484,45573.0484416782,0.146216437765772,406.105562112857,5,12 +3058.16211157093,2281.55417163262,0.612855718838295,17141.1248265949,169494.075628693,5080.11709895523,1617.87168756536,62543.9393463812,0.174106738306334,486.968489103651,8,13 +946.698506217101,989.526296765837,0.931314490521987,5980.4383046495,31090.5660459533,32936.7922046281,10489.4242689898,11472.5335962927,0.264577980261928,150.748169779793,15,17 +1308.102907214,1765.62855354124,0.644286669516493,19855.1060116927,160142.524895469,25806.0462056547,8218.48605275627,59093.1826182542,0.183035985658095,208.296641276115,18,21 +2860.0502424462,1629.98814957142,0.987577394839499,14301.7374612074,265461.51358219,7839.07002013072,2496.51911469131,97956.2780746089,0.280561759897585,455.422013128376,1,14 +1603.93826237688,1164.97713187558,0.088513536208275,7001.37796892573,230100.123380577,35244.4084713648,11224.333908078,84907.794605379,0.02514589096826,255.404181907146,1,3 +525.023247335622,2423.97500578334,0.666498385899137,16293.0821592111,275060.757268434,4321.82030664699,1376.37589383662,101498.434416396,0.189346132357709,83.602427919685,16,24 +1622.92382470847,1675.06478300013,0.696534485694696,10129.4635324812,213992.207476554,8410.43392597077,2678.48214202891,78963.9141979904,0.197879115254175,258.427360622368,11,5 +912.947314050315,2376.40615533302,0.471685912441206,8282.7332446748,21468.5154656167,28506.4617113258,9078.49099086809,7921.96142642683,0.134001679670797,145.373776122662,5,6 +3831.62755006371,3923.11217481074,0.762333174279255,22102.2569608865,221544.148195201,590.763553118221,188.141258954847,81750.6081901111,0.216571924511152,610.131775487852,14,11 +492.63476038611,1230.54681644837,0.372675206103675,11597.6037413434,285092.26261229,7022.35774033386,2236.41966252671,105200.096904904,0.105873638097635,78.4450255391895,18,5 +1731.10846213574,3879.24524209302,0.125395514852997,9168.57098602153,165857.352025723,41205.3458682369,13122.7216140882,61201.974917241,0.035623725810511,275.654213715882,18,2 +1066.28831097555,2614.22065738915,0.348893667127867,23802.0079842396,231248.279762223,19443.9326327896,6192.33523337248,85331.4685469458,0.099117519070417,169.791132320947,4,1 +3432.54063466363,1857.06900452699,0.124541744916737,22131.7149357664,72476.2387880991,21467.5386182579,6836.79573829869,26743.9995528041,0.035381177533164,546.582903608858,8,6 +1811.84495279749,359.441965074056,0.512419692663867,38.8538995057156,185262.874123942,18238.1677406219,5808.33367535729,68362.6841785764,0.145573776324962,288.510342802148,9,16 +1175.17570302641,622.707835089389,0.584234854444384,9899.94304805513,186790.02028493,28545.7452695258,9091.00167819293,68926.2067472066,0.1659758109217,187.129889016944,0,11 +645.465099941179,887.840473569677,0.629207464858137,3720.80149080404,58727.8910893255,43374.0144428503,13813.3803958122,21670.8085200463,0.178752120698334,102.781066869615,19,25 +1459.18650393503,3288.33623417144,0.179183171014602,24172.6742074905,95120.5280052387,29082.6191998187,9261.98063688494,35099.8258321914,0.05090430994733,232.354538843158,8,5 +3308.86714004391,1045.07725488713,0.926174104134192,4031.75252284721,255863.402341159,35054.1723943946,11163.7491701894,94414.5396092838,0.263117643219941,526.889671981514,1,8 +1724.01336517321,2743.28826672564,0.539200650146296,20858.1061262935,84891.9975433843,9293.36319402081,2959.669807013,31325.4603481123,0.15318200288247,274.524421205925,9,16 +3070.22341094566,2541.64984506265,0.028743143167133,5608.91605678558,199956.033716334,36602.1982015485,11656.7510196014,73784.5142864701,0.008165665672481,488.88907817606,9,6 +2931.30061410806,1630.84307169891,0.735374891873209,11813.9763811078,37909.4637327377,28763.6010255982,9160.38249222873,13988.7320047003,0.208913321554889,466.767613711474,15,9 +1630.70596471899,1237.99504425898,0.367268246363682,17168.3336500336,150636.389793255,15783.6546579281,5026.64161080513,55585.383687548,0.104337569989682,259.666554891559,14,22 +2495.38171552177,1046.07348294828,0.402822974601882,6031.4285516823,157590.434916077,26078.8813746537,8305.37623396615,58151.4519985524,0.114438345057353,397.35377635697,19,21 +75.8794202058842,31.8069421005077,0.63665495676435,7022.52240314571,195830.443960987,41396.3668135006,13183.556310032,72262.1564431686,0.180867885444418,12.0827102238669,19,2 +2879.39154804682,1938.36511677714,0.158813287875391,16794.6992580469,223448.861871146,40408.9991779196,12869.1080184457,82453.4545649985,0.045117411328236,458.501838860959,6,2 +2635.65383162494,3953.45514557727,0.358318557436577,18503.8469614158,281452.757556507,31897.2295831777,10158.3533704388,103857.106109412,0.1017950447263,419.69010057722,13,3 +3029.80697161467,1787.81896618761,0.49010060216584,11636.247144142,265724.503838911,16741.133861428,5331.57129344841,98053.3224497827,0.139233125615295,482.453339429088,3,19 +141.598884809651,53.1415576392974,0.083402952011029,24127.1521562372,47291.1027054002,42752.5493571355,13615.4615787056,17450.5914042067,0.023694020457679,22.5475931225559,16,1 +3770.43958120254,886.299931782905,0.824850590965073,11625.1244520779,195280.300599024,37762.617224866,12026.3112181102,72059.151512555,0.234332554251441,600.388468344353,19,2 +964.112324955528,3441.93299443217,0.48611346287304,8506.76988602332,11317.114566644,38161.0720659649,12153.20766432,4176.05703566199,0.138100415588932,153.521070852791,1,7 +1619.77165209469,1128.88344718724,0.01681053878665,4078.44433685943,142430.546661799,19144.5227933181,6096.9817813115,52557.3972921768,0.004775721246207,257.925422308072,3,20 +3985.20617404527,2510.53015859601,0.736306163233847,14695.3466792875,31931.9494337219,38737.4281711109,12336.7605640481,11783.0071711151,0.209177887282343,634.586970389374,6,8 +2315.80529652969,3382.26810049899,0.644958273563324,21901.0108118422,146203.657451283,41015.2034808822,13062.1667136568,53949.6890964144,0.183226782262308,368.758805179887,1,24 +352.12659278412,1331.73632809826,0.88636847820832,19790.7157858188,179111.686553613,21719.7738051682,6917.12541565866,66092.8732670159,0.251809226763727,56.0711135006561,3,6 +3100.65380056004,1395.12453642876,0.129402364199566,4884.34112548611,66203.8688043617,29913.4010248068,9526.56083592573,24429.4718835283,0.036762035283968,493.734681617841,4,9 +2386.78466761666,3335.41236506844,0.914873111402403,2593.06442465574,87848.1300759217,34169.373348649,10881.9660346016,32416.2841608567,0.259907133921137,380.061252805201,16,3 +681.308179126683,3982.64794790198,0.138404300040304,10618.063075543,172322.276699817,39167.4920830198,12473.7235933184,63587.5559777923,0.039319403420541,108.488563555204,15,25 +3924.20256155094,3917.92091913807,0.550477436071905,21610.8979015364,145519.597407019,20743.6743469793,6606.2657155985,53697.2684158742,0.1563856352477,624.873019355245,5,21 +3119.87770386968,221.55292724974,0.102967463634373,7688.26553710565,145132.348009966,26102.9489933024,8313.04108066956,53554.3719593971,0.029252120350674,496.795812718102,8,10 +762.635200523102,2169.5090004236,0.655162841889426,17734.0040206847,17947.2172627566,6935.9142373731,2208.88988451373,6622.58939585114,0.186125807354951,121.438726197946,17,15 +2048.28403134733,2045.39809456154,0.920779157104371,7641.70169267709,110252.090219855,24116.7644702706,7680.49823893968,40683.4281254078,0.261584987813742,326.159877603078,3,23 +128.992552940585,3638.88190770802,0.863186177783271,14601.9775785568,96975.7685541575,6162.08148249489,1962.44633200474,35784.4164406485,0.245223345961157,20.5402154363989,2,9 +1941.19120175512,536.669475130697,0.905309584411731,6414.21454469178,43801.9627048632,2229.57875091969,710.056927044487,16163.0858689532,0.257190222844242,309.106879260369,11,10 +2823.98676233399,4009.86950458925,0.077152218064282,1865.99210137197,277531.031093787,20653.3096876705,6577.4871616785,102409.974573353,0.021918243768262,449.67942075382,1,18 +1098.07532372789,330.66371035083,0.69573648344652,84.3207356817269,101773.260025975,19744.8215951741,6288.15974368602,37554.7084966697,0.197652410070034,174.852758555396,11,19 +1001.98210266514,524.67686972955,0.924032732545736,14869.0997534789,87924.0478860504,6508.98458928988,2072.92502843627,32444.2981129337,0.262509299018675,159.551290233303,3,23 +3817.68617102794,3312.28689153026,0.955995977300941,1458.15390007527,48959.2083262307,42377.8480289562,13496.1299455275,18066.1285336645,0.271589766278676,607.911810673239,5,3 +3867.4802492481,1529.1710844587,0.392224738795644,9249.74926832786,218607.051982933,3011.71905509989,959.146195891685,80666.8088497908,0.111427482612399,615.840804020398,16,3 +1422.49554975067,1494.29477469213,0.030439222920647,9552.7179490643,144472.716448731,1540.93376563694,490.743237463994,53310.9654792365,0.008647506511547,226.512030215075,10,15 +3700.55966090229,1277.88772223494,0.124169302385568,9240.35994647928,270849.482580357,34172.0224912842,10882.8097106001,99944.4585167369,0.0352753699959,589.261092500365,13,9 +1165.98081093789,3962.86476946368,0.286862022340026,9287.26911125681,187421.708101381,43948.8794151318,13996.4584124624,69159.3018824284,0.081494892710235,185.665734225779,18,15 +1263.81950568619,2690.67788272647,0.752757551824894,16118.7963442646,165741.040761438,30043.0136939714,9567.83875604185,61159.0556315269,0.213851577222981,201.245144217546,2,17 +2460.76485536781,3937.65531444467,0.176917720680018,4688.14476380241,29596.2924442792,6286.52804329199,2002.07899467898,10921.1411233503,0.050260716102278,391.841537478951,10,14 +2551.73759406146,3159.5870795883,0.146876748771656,18831.9575002552,113160.934871143,37229.7578353296,11856.6107755827,41756.8025354771,0.041726349082857,406.327642366475,7,4 +3656.84465989322,3446.4463887908,0.083233615965613,21882.2603812932,146525.04558295,8868.6816141984,2824.42089624153,54068.2825029336,0.023645913626595,582.300105078538,12,1 +3185.47635952071,3487.71788942719,0.482575852511713,13909.6788464471,8882.81138337284,5912.80658874106,1883.05942316594,3277.79017836636,0.137095412645373,507.241458522406,5,13 +437.609622658986,746.816881059629,0.710274627900923,16726.9614697075,95819.594898902,44951.9893646294,14315.9201798183,35357.7840955358,0.20178256474458,69.6830609329596,2,12 +2039.31089327918,3518.27764636425,0.007782550551122,18694.1357790623,149967.707540455,30566.9767823339,9734.705981635,55338.6374688026,0.002210951861114,324.731033961653,7,21 +1562.8050560889,2843.93689786135,0.949298418813015,11885.7507233248,137218.825850327,35380.7891588223,11267.7672480326,50634.2530813015,0.269687050799152,248.854308294411,7,15 +1533.38758832157,1563.86765014528,0.761373819236067,4237.30207415924,255941.905951147,22368.701517317,7123.79029213917,94443.5077310506,0.216299380464792,244.169998140377,2,20 +563.193801861651,1151.25579502422,0.848072259681559,19932.0417990558,97154.6659015474,28758.8483080093,9158.86888790105,35850.4302219732,0.240929619227716,89.6805416977151,3,11 +3251.05825332784,2835.14009800509,0.989795708539303,6585.07930797729,26601.8206256391,8804.65197325949,2804.02929084697,9816.16997256055,0.281191962653211,517.684435243287,8,2 +228.955646882781,1808.61799502569,0.375409869032593,886.961257595,92244.2676211813,6491.11890228771,2067.23531919991,34038.4751369673,0.106650530975168,36.457905554583,13,11 +276.447109082421,2367.89607802777,0.833392289039334,22282.0401741297,203182.880564559,24150.9870741978,7691.39715738783,74975.2326806491,0.236759173022538,44.0202402997486,15,13 +3966.06450345415,1487.54229255081,0.989723207781021,16452.0361225332,262220.017086164,6570.07681018841,2092.38114974153,96760.1539063336,0.281171365846881,631.538933671043,7,21 +1966.04722705887,2848.5023820039,0.630485930749882,1982.11873792619,206649.88937809,44559.8874748971,14191.0469665277,76254.5717262325,0.179115321235762,313.064845073068,10,18 +1898.34401348824,1893.68711747684,0.92104439438268,8272.05693836855,150274.455025035,31682.492781278,10089.9658539102,55451.8284225221,0.261660339313261,302.28407858093,9,2 +416.600864017162,2013.5892792195,0.179795908454115,14757.7781387477,194454.59830404,23924.0394554501,7619.12084568475,71754.464318834,0.051078383083555,66.337717200185,19,1 +3662.05820704678,2469.6032585674,0.473347326388417,9306.32397697559,154771.295717788,22775.0209208736,7253.1913760744,57111.1792316561,0.134473672269437,583.130287746303,18,14 +3095.30312845131,4020.97614835339,0.633404189311436,11218.7123555338,270519.744632275,11479.2977224407,3655.82730014035,99822.7839971495,0.179944371963476,492.882663766132,4,25 +568.053399330476,2845.96842309874,0.867843903024689,5662.11068066977,15280.6286706359,14618.1067365206,4655.44800526134,5638.6083655483,0.246546563359287,90.4543629507127,7,21 +3822.10370483443,1661.08735193283,0.385669928779391,22521.6010397561,257065.752089888,13913.8563955404,4431.16445717847,94858.2111032797,0.109565320675963,608.615239623317,0,3 +2938.50885507992,3338.96460526622,0.062176000423961,8580.61605974593,204301.941182421,37877.8712626127,12063.0163256728,75388.1701780151,0.01766363648408,467.915422783427,17,14 +590.1684645295,2819.79838823997,0.518964886282087,1663.4147799824,111639.696402376,19881.8424732689,6331.7969660092,41195.459927076,0.147433206330138,93.9758701480096,4,25 +1967.46800677857,655.955595482113,0.524913468623294,21766.3778338252,226553.508200399,14189.5057481439,4518.95087520506,83599.0805167524,0.149123144495254,313.291083881938,16,8 +3534.35125234103,1781.10291673725,0.267853776791912,1081.136078314,81641.8345782073,40515.0252122154,12902.8742714062,30126.1382207407,0.076094822952248,562.794785404623,4,3 +3722.38943537893,2109.3103503398,0.758923890747291,17146.8394314514,107186.406912942,32387.8800056536,10314.6114667687,39552.1796726723,0.215603378053208,592.737171238683,11,7 +2680.75716382059,2203.18149765205,0.406718714726906,16263.8981711841,199630.830049219,28113.9945553771,8953.50145075704,73664.5129332911,0.115545089411053,426.872159844043,0,23 +1296.1494873339,2059.71539213822,0.292374433708969,18993.5021217429,135911.685895545,38346.5655015258,12212.2820068554,50151.9136145923,0.083060918667321,206.393230467182,5,7 +3258.75086965644,2966.82054391007,0.776523205661968,14387.4102223446,209599.08075007,42012.1587256826,13379.6683839754,77342.8342251181,0.220603183426695,518.909374149115,3,13 +1194.90170507006,3654.26577359819,0.865292917518897,3867.52981283552,2935.31097192414,28564.275383026,9096.90298822484,1083.14058004581,0.245821851567868,190.270972144914,3,8 +1664.43731585391,3180.68792604844,0.861507128941822,2346.94661134154,124128.709326838,11357.7609627579,3617.12132571908,45803.951781121,0.244746343449381,265.037789148712,17,14 +2873.9933212115,2675.3380034834,0.757634457141729,22448.9743063038,102758.276328232,37170.8058059145,11837.8362439218,37918.1831469491,0.215237061687991,457.642248600557,13,19 +2982.7371356048,1820.51493003621,0.892847968625521,2699.99214096557,242927.460292853,32908.61598494,10480.4509506178,89641.1292593553,0.253649991086796,474.958142612229,9,25 +3153.18482618453,677.07861672184,0.183873490242451,10450.4031340146,90817.4639197619,22765.63006954,7250.20065908917,33511.9793061852,0.052236787000696,502.099494615371,16,24 +2888.01460562749,780.485624075405,0.847475594114097,7098.17847306231,6891.04774835687,464.491929755592,147.927366164201,2542.82204736416,0.240760111964232,459.87493720183,7,9 +772.088185627168,3136.88330400118,0.453207623529231,22863.3661493514,84163.2432789682,31701.974924257,10096.1703580436,31056.5473354126,0.12875216577535,122.943978603052,3,17 +2866.61740229882,1081.5305228392,0.380268845329341,6258.21553479088,71262.8681449938,36144.5246668092,11510.9951168182,26296.2613081158,0.108030921968563,456.467739219557,4,0 +853.939816087492,2640.19181976859,0.875600418626845,2456.44014408913,133472.683529678,21149.0723346803,6735.37335499373,49251.9127415786,0.248750118928081,135.977677720938,16,20 +3889.99929515106,2920.28180006314,0.454632548386117,13378.8724540078,189219.184111027,5538.22174993986,1763.76488851588,69822.5771627406,0.129156973973329,619.426639355264,3,13 +612.971022825148,952.46644818895,0.911406641021265,3224.85828736785,211167.574751276,43701.9417198505,13917.8158343473,77921.6142993638,0.258922341199223,97.6068507683357,12,13 +3994.46889943402,2919.54257940992,0.430543374576462,4952.33651102578,252499.912933708,39648.8941876045,12627.0363654791,93173.3996065343,0.122313458686495,636.061926661468,0,15 +1519.70191485624,915.691796199309,0.960378938431562,15717.7330031599,225490.289201884,39335.9641860968,12527.3771293302,83206.748782983,0.272834925690785,241.990750773287,6,7 +2334.86278168192,843.849236326965,0.599540784928217,20573.003333651,105903.71684364,17261.9071523411,5497.42265998124,39078.8623039262,0.170324086627334,371.793436573554,7,21 +2997.7725716081,1383.62490870267,0.417250064063087,8555.6340150016,4564.04979319909,37895.6970622858,12068.6933319382,1684.15121520262,0.118536950017922,477.352320319761,1,25 +3413.39105661174,2926.68829202307,0.380834448630982,14742.5890011764,107074.455104514,34151.6202136552,10876.3121699539,39510.8690422561,0.108191604724711,543.533607740723,18,10 +2554.40770622679,4015.67673175325,0.59412871885794,10606.199536556,26180.5717729377,41895.3405197103,13342.4651336657,9660.72759148993,0.168786567857369,406.752819462865,10,4 +108.683077096009,671.946732604935,0.99120803173744,19453.9549115832,110650.239463652,9204.19204861827,2931.27135306314,40830.3466655543,0.2815931908345,17.3062224675174,19,7 +3472.85391764726,2849.14869502977,0.904816264120885,1737.11681149753,96217.7758545034,7927.66294952642,2524.73342341606,35504.7143374551,0.257050075034342,553.002216185869,5,2 +2481.82259910564,2918.79109270422,0.398263007397131,6026.86255958218,193087.634492166,7499.63002944664,2388.41720683014,71250.0496281055,0.11314289982873,395.194681386248,8,13 +330.014558377351,339.0208884927,0.82132992591526,24039.8047686431,203387.879765953,40460.7127482776,12885.5773083687,75050.8781424181,0.233332365316835,52.5500889135909,19,25 +438.442679793867,2818.17885123443,0.907083179308975,18801.0097173476,93848.6538623142,33078.5726136808,10534.5772655034,34630.4995801897,0.257694085030959,69.8157133429725,10,13 +330.6989143212,2399.60443971752,0.306927890993106,8150.89446168016,37898.3906097512,16137.9012434163,5139.45899471857,13984.645981458,0.087195423577587,52.65906279,4,8 +1534.71099625397,1770.19687601807,0.604656722187129,7193.90875286553,204713.098303564,26274.2492657542,8367.59530756503,75539.8886729019,0.171777477894071,244.380731887575,8,0 +3805.08522979573,1598.37878711768,0.38212949033311,23764.0902817215,183250.311317573,4799.29406115471,1528.43759909386,67620.0410765952,0.108559514299179,605.905291368747,1,7 +2252.58978561576,2620.23794075388,0.843505825355406,19628.232851547,2791.46545003056,40540.4935985446,12910.9852224664,1030.06105167179,0.239632336748695,358.692641021618,16,7 +1779.01011672181,3654.8354420045,0.254375163976858,15589.1438681644,182204.665107242,33348.8091989705,10620.6398722836,67234.19376651,0.072265671584335,283.281865720033,0,20 +2593.70577719807,1410.87883866064,0.675958984161439,2564.4058655858,4770.12444945042,17668.3171380303,5626.8525917294,1760.19352378244,0.192033802318591,413.010474076126,2,23 +3431.14885127003,2233.84558739217,0.522722459437708,9457.07699077785,11897.1821267615,37060.0586321624,11802.5664433638,4390.10410581605,0.148500698703894,546.361282049368,2,20 +1891.01888273572,1703.11575483346,0.995083844518464,7326.74041679781,12963.5126435199,18490.297495958,5888.6297757828,4783.58400129886,0.282694274010927,301.11765648658,14,10 +1106.27458626846,1673.54291899586,0.385714197978863,8403.19588921763,18284.0122289059,24380.7545375827,7764.5715087843,6746.86798114609,0.109577897153086,176.158373609627,1,22 +976.183401329892,1603.16579300807,0.983152738973594,13818.464936119,225486.563605247,21769.7864702188,6933.05301599325,83205.3740240764,0.279304755390226,155.443216772276,10,3 +745.575845056192,3405.76402823367,0.013128036383742,13965.8241460264,118827.005864106,21309.9803343478,6786.6179408751,43847.6036398915,0.003729555790836,118.72226832105,11,8 +3457.13895107996,3705.34936595556,0.011547612425259,23964.0564316293,119656.497682248,31894.399579528,10157.4520953911,44153.6891816413,0.003280571711721,550.499832974516,11,11 +3315.68514087153,1940.49342088376,0.187927281719583,7240.82166103361,186666.830521393,26874.5901530652,8558.7866729507,68880.7492698867,0.0533884323067,527.97534090311,19,10 +1051.19454272802,2681.69389490977,0.787068382277022,15032.7326397549,28356.271109248,30659.5530823449,9764.18887972767,10463.5686749993,0.22359897223779,167.387666039494,3,6 +3232.70773675458,1965.95795270586,0.487815060627222,16375.3738383297,102301.360450098,7757.3775690614,2470.50241052911,37749.5795018812,0.138583824041824,514.762378464105,12,11 +3306.95987598707,3941.2109101627,0.893528260282276,10586.3188200451,157528.433330005,6544.90927797712,2084.36601209462,58128.5731845037,0.25384325576201,526.585967513865,7,6 +502.975283951651,3087.81643969126,0.331422072294058,6292.35672527291,137113.584228035,29522.1280277489,9401.95160119392,50595.4185343303,0.094153997810812,80.0916057247852,8,9 +1877.99821434047,3168.1073327191,0.045493784189383,17078.0826744528,117327.392868428,13923.1044906568,4434.10971040025,43294.240910859,0.012924370508348,299.044301646572,11,4 +3612.77715841165,1167.59605713226,0.098155643581038,14825.7471151349,131742.094951964,19292.8920722034,6144.23314401382,48613.3191704664,0.02788512601734,575.282987008224,9,12 +2735.04005909978,1695.07525534816,0.570318423604383,1453.6080400875,69490.1719957224,5967.7015604385,1900.54189822882,25642.1298877204,0.162022279433063,435.515932977672,17,22 +520.47859694598,1740.94667581671,0.649935902445024,10436.002770439,275191.762326343,4043.39445650054,1287.70524092374,101546.775766178,0.184640881376427,82.8787574754745,11,4 +15.7306305897996,1113.08325026322,0.716750339166791,24189.6044251626,219050.085128654,39645.7162469291,12626.0242824615,80830.2897153705,0.203622255445111,2.50487748245217,7,25 +2674.78091638096,1741.31433452939,0.972980356454632,107.352238888247,179903.061296621,44711.1638057726,14239.2241419658,66384.8934673878,0.276414873992793,425.92052808614,10,3 +765.664981145968,1033.52510400129,0.601804907231706,17294.5311398554,210136.655244346,30345.7321830607,9664.2459181722,77541.2011971756,0.170967303190826,121.921175341715,15,6 +179.057601083169,3245.2254290149,0.188285999198814,16263.1533615921,21566.6963938092,20056.6805930578,6387.47789587828,7958.19055122111,0.053490340681481,28.5123568603772,15,0 +366.783463470703,3052.48518076987,0.086577965550675,19716.0079025527,145288.890681684,26884.6448103174,8561.98879309471,53612.1367829092,0.024596012940533,58.4050101067998,10,7 +2553.84567674288,1027.22789106327,0.445402045307376,19748.5269134065,22791.8038794999,4894.51781261463,1558.76363459065,8410.25973413281,0.126534671962323,406.663324322115,19,23 +151.733772842587,3076.33599591926,0.877507167464656,18380.7086867783,115990.53708882,9706.2078791543,3091.1490061001,42800.9361951365,0.249291808938823,24.1614287965903,4,10 +1768.17785193233,2626.18324891451,0.180924706379377,13126.4533196244,82737.9407177238,36099.9300384312,11496.7930058698,30530.6054308944,0.051399064312323,281.556982791772,17,5 +3955.818127187,1020.65410084446,0.306730567673289,21689.2035725766,102675.220066353,15847.643253634,5047.02014446943,37887.5350798351,0.087139365816275,629.907345093471,18,13 +3022.199702257,2588.60547609452,0.166760928033445,2708.99595768978,33015.7000497695,21863.7053483015,6962.96348672022,12182.9151475164,0.047375263645865,481.241990805255,13,24 +3759.66982070888,3363.45532932568,0.605668854770471,23260.1501117355,163152.279840678,23665.2270675402,7536.6965183249,60203.7932991432,0.172065015559793,598.67353832944,15,10 +122.045349973582,2695.4391829323,0.295003772150385,12477.4112762666,84794.4896956815,41260.8874852722,13140.4100271568,31289.4795925024,0.08380788981545,19.4339729257296,19,10 +2700.41842194032,1633.21061075433,0.784371109117415,14769.6394306507,91930.8961585712,31173.2351115858,9927.78188267064,33922.8399109119,0.222832701453811,430.002933429987,13,21 +3755.73070755785,83.1854027730126,0.92984735012437,6887.20844504463,56626.2047044728,32775.8144532671,10438.1574691933,20895.2784887354,0.264161179012605,598.046291012397,11,5 +1999.48486780425,941.330251050503,0.102157057680643,19217.7592545803,73289.8024133098,5830.71242183648,1856.91478402436,27044.2075325866,0.029021891386546,318.389310159912,17,11 +1260.9133642901,3025.13945829031,0.169434339999624,2147.98707900428,5135.90684564903,43992.6970276521,14010.4130661312,1895.16857773027,0.048134755681711,200.782382848742,8,1 +1831.38697599585,2517.65665256092,0.739564245718285,17351.9331381852,14844.272496675,41569.2216849018,13238.6056321343,5477.59132718635,0.21010347889724,291.622129935645,12,18 +17.8724491184831,2663.23250374342,0.712049783327072,69.5516445078807,137836.205737487,38721.3065034737,12331.6262749916,50862.0685378181,0.202286870263373,2.84593138829349,0,10 +3591.28593586185,195.405146366033,0.546309430972383,22325.9968443359,198272.808722211,29888.9534211515,9518.77497488901,73163.3980524764,0.155201542889882,571.860817812397,19,11 +2832.09298447003,37.0465397560603,0.38065225489985,16303.3953284284,168625.783515769,44809.2283784026,14270.4548975804,62223.5363526823,0.108139845142003,450.970220457011,13,2 +2213.09893819921,245.623487658419,0.807990688510947,4965.95111807519,134170.761610482,32851.344275634,10462.2115527497,49509.5061293292,0.229542809236064,352.404289522167,4,17 +570.147919327714,801.049597210159,0.632850173674167,10654.1445823858,76708.5792614288,34448.443251622,10970.8417998796,28305.7488049553,0.179786981157434,90.7878852432666,12,22 +1137.996481774,3660.90778611734,0.854128935967731,9251.43244632634,241486.848619944,2239.17696253762,713.113682336822,89109.5382361417,0.242650265899924,181.209630855732,4,11 +1275.31600566354,1464.90683578763,0.679928050922043,9083.70993888535,202177.967390714,42465.8364834249,13524.1517463137,74604.4160113336,0.193161378102853,203.075797080181,5,18 +1829.48479460552,3237.67772894882,0.413330556156049,80.5255030535256,210822.978436566,19998.6097880302,6368.98400892682,77794.4569876627,0.117423453453423,291.319234809796,15,22 +3715.67085015992,2951.04072937133,0.014632564478813,20260.0821401888,6563.40859622413,44149.6930221001,14060.4117904777,2421.92199122662,0.004156978545117,591.667332828013,17,20 +1933.58190655148,1937.7939405112,0.234491583311181,13669.1248297504,61512.4314271287,31747.8762679414,10110.7886203635,22698.3141797523,0.06661692707704,307.895208049599,3,21 +2776.16210477263,829.544293405339,0.997772367287003,21575.9732904251,169958.430808321,30170.6917531979,9608.50055834328,62715.2881211517,0.283458058888353,442.064029422393,1,6 +1504.72941661542,205.396724840196,0.104005933912289,3621.1856878116,20458.1944965161,37405.9977867151,11912.7381486354,7549.14926070705,0.029547140315991,239.606595002455,5,6 +3269.90228402904,1198.97926634446,0.001050403217018,15440.3671018973,19433.4630501062,28417.4270713335,9050.13600997882,7171.01957568494,0.000298410004835,520.685077074688,1,16 +523.344892751267,2462.3530419779,0.521055910143833,2492.58092326357,20545.8529120223,6483.11333675075,2064.68577603527,7581.49553949162,0.148027247199953,83.3351740049788,7,11 +2417.77611048381,451.43426662286,0.019968298799538,10971.7214940106,131514.033213991,11202.2905046053,3567.6084409571,48529.1635475982,0.00567281215896,384.996195936912,12,19 +3740.38457153526,3164.99062524472,0.286921255675926,8734.76355753424,258731.356346588,35628.8207949696,11346.7582149585,95472.8252201432,0.081511720362479,595.6026387795,17,4 +2669.14430417417,1229.64851264331,0.245048351238157,21724.1428712193,149246.073646423,33819.2395996159,10770.4584712153,55072.3518990491,0.069616008874477,425.022978371683,13,23 +3113.4160782294,2104.90601786467,0.001274222621471,8504.59064357907,129892.856624014,24871.400202356,7920.82808992229,47930.9434036952,0.000361995062918,495.766891437803,2,1 +3781.09907387284,930.89331946929,0.74104783923169,18790.5551702906,80050.1658456943,25733.1072203446,8195.25707654286,29538.806585127,0.210524954327185,602.085839788669,16,17 +2790.66746696284,384.507856369156,0.540998420983508,16856.4452632295,42821.789759255,5067.85772796596,1613.96742928852,15801.3984351494,0.153692733233951,444.37380047179,10,18 +2995.93994767158,1409.43230794524,0.491197953099644,22843.703515102,167266.356800997,37224.755466278,11855.0176644197,61721.9028785967,0.139544873039672,477.060501221589,16,8 +762.068045490492,2324.40314498834,0.213132948421322,1644.37409421236,177082.6359242,35090.3513496159,11175.2711304509,65344.1460974908,0.060549133074239,121.348414887021,0,21 +458.016690541902,3978.60161767934,0.107056133779729,5195.8133582221,217067.742599718,41673.0380610948,13271.6681723232,80098.798007276,0.030413674369241,72.9325940353347,18,19 +500.114127148192,3661.4152440951,0.989183282361773,19896.1751372657,6081.23870719328,34797.097359483,11081.8781399627,2243.99952294955,0.281017977943686,79.6360075076739,1,20 +3448.45254573025,1330.60143189533,0.256495834222709,18693.3000992532,32950.6090582744,12860.230478272,4095.61480199745,12158.8963314666,0.072868134722361,549.116647409276,13,10 +2054.22216204326,1859.85509130297,0.015870600698122,23127.4973859508,161377.294712018,438.24231941106,139.567617646834,59548.817236907,0.004508693380148,327.105439815806,6,6 +2129.0596484631,412.858130587186,0.046585448847886,6751.73290995741,141302.001879899,26928.375877379,8575.91588451561,52140.9601032838,0.013234502513604,339.022237016417,1,24 +3503.62401310438,56.8509447214183,0.234158679088511,7593.71193415381,272838.001298617,10198.3958098358,3247.89675472478,100678.229261482,0.066522352013782,557.90191291471,17,19 +1872.57734898106,2417.6416436246,0.263487922449576,12645.0899008103,227958.419343152,44463.1774335971,14160.2475903175,84117.4979126022,0.074854523423175,298.181106525646,13,25 +1889.87632846457,1158.39596013922,0.817002241238613,5103.06304451052,208147.540415862,6465.62985286852,2059.11778753775,76807.2104855579,0.232102909442788,300.935721093084,7,2 +3591.2252392207,686.482192096845,0.652902575428327,323.54309710465,66611.8040767891,23637.1212989751,7527.74563661627,24580.0015043502,0.185483686201229,571.85115274215,19,4 +3848.13414027632,15.0424997568322,0.181428785029733,19734.555156256,79262.958678121,15487.7058159222,4932.39038723637,29248.324235469,0.051542268474356,612.760213419796,12,16 +1075.5678113999,1341.58150855709,0.585671484316787,2933.11489443686,190150.029600817,24230.5156023359,7716.72471411971,70166.0625833273,0.166383944408178,171.268759777054,12,4 +831.29647534307,1220.68828612612,0.358897266323952,17907.9417423178,106374.188522667,1870.95351456765,595.845068333647,39252.468089545,0.101959450660214,132.372050213865,0,16 +10.5496642843478,298.501701562282,0.348426461597393,5735.62310380316,211451.645987969,26917.6377659412,8572.49610380293,78026.4376339369,0.098984790226532,1.67988284782608,12,22 +485.046365237575,1737.16238256316,0.621026074917942,18955.1480839739,238698.846312252,18237.6782983767,5808.1778020308,88080.755096772,0.176427862192597,77.2366823626712,7,14 +605.318154501751,3175.67692459697,0.346465651122053,13768.5794537062,34857.1145938121,31555.4506277813,10049.5065693571,12862.4039091558,0.098427741796038,96.3882411626992,5,0 +3660.03212874765,556.200803681006,0.879767769880604,17804.1647449243,65959.996741287,23662.2153129658,7535.73736081713,24339.4821923568,0.249934025534262,582.80766381332,4,7 +3010.19720379008,1601.89565559304,0.281559887941532,1264.1857700825,194727.680906694,31155.9598772151,9922.2802156736,71855.2328068982,0.079988604528844,479.330764934726,18,10 +1873.14504483468,1708.3471136697,0.158928755768379,16965.5423411741,224145.118170224,44401.8843951015,14140.7275143635,82710.3757085697,0.045150214706926,298.271503954567,14,18 +1154.65037373102,3446.6740972263,0.381623847459886,11424.3728543706,124842.262763688,16254.4797071533,5176.58589399787,46067.2556323572,0.108415865755649,183.861524479462,11,10 +3909.76545973541,3444.23101778799,0.370957981430224,4135.04262742268,53527.9104408023,22490.3976628368,7162.54702638115,19751.9964726208,0.105385790179041,622.574117792263,14,19 +751.102086259864,4011.97583281043,0.149474847589399,22234.8083514784,226504.339561623,21048.0895973797,6703.21324757315,83580.93710761,0.042464445337898,119.60224303501,10,20 +2556.38093284599,2474.77358238037,0.879656029859486,13915.9644209252,240276.143135492,6605.69336923854,2103.72400294221,88662.783444831,0.249902281210081,407.067027523247,2,12 +3290.8339581565,2458.6445697454,0.760243747110501,11530.7553745698,223139.874993984,4888.40004057721,1556.81529954688,82339.4372671528,0.215978337247301,524.018146203264,12,23 +2974.07250986325,67.0696708649423,0.034455558277681,11160.157783577,234205.699870803,44562.928599866,14192.0154776643,86422.7674800011,0.009788510874341,473.57842513746,0,20 +2900.84095955712,1524.74952667993,0.134255362046968,1261.77479173504,145948.714779994,14503.6281399761,4618.98985349557,53855.6143099609,0.038140727854252,461.917350247949,8,14 +3678.89685632087,1799.29280180715,0.443422804918497,15391.3542117724,202288.99126743,124.13333868667,39.5329104097675,74645.384231524,0.125972387760937,585.811601324979,0,3 +1299.49558012615,2235.66469698937,0.081895196828442,2750.69037451442,155015.423142517,4212.81675825037,1341.66138797783,57201.2631522203,0.023265680917171,206.926047790788,14,21 +3635.18344645724,967.734853198174,0.972858629963962,12881.2758537067,149110.869439803,20663.9158119831,6580.86490827487,55022.4610478978,0.276380292603398,578.850867270261,18,23 +831.462371739885,0.127103360910967,0.352099117950119,949.55445504724,111370.448669402,42878.9831592564,13655.7271207823,41096.1065200745,0.100028158508557,132.398466837561,13,15 +600.528550827849,1289.62393932196,0.902970786425133,1844.05013907016,148588.051233294,38141.8020763703,12147.0707249587,54829.5392004775,0.256525791598049,95.6255654184473,4,2 +799.660729020741,2724.27943925317,0.617965958977479,24948.6012337169,46613.7478710114,21116.4037258298,6724.96933943624,17200.6449708529,0.175558511073147,127.334510990564,12,6 +2112.98554550683,227.134336687567,0.940831682893795,5066.42202792257,116596.559224862,14698.464051955,4681.03950699204,43024.5605995801,0.267281728094828,336.462666481979,3,21 +593.937563803858,3714.19896554546,0.622506654581561,596.253647923027,193116.393538542,41888.7943423041,13340.3803637911,71260.6618223402,0.176848481415216,94.5760451916971,1,15 +2213.34973727934,1415.05672521844,0.539235439013451,11430.9108958274,42625.0108738988,13726.8054100122,4371.59407962172,15728.7863003317,0.153191886083367,352.444225681424,15,20 +3568.58151706287,2818.09038577558,0.748991619005084,2339.3880592482,31908.9315776924,10738.6302647608,3419.94594419134,11774.5134973035,0.212781709944626,568.245464500457,11,10 +1340.31797344464,1189.17286548431,0.281123201472693,17780.3923106179,153189.016336739,28489.7641271546,9073.17328890274,56527.3123013797,0.079864545872924,213.426428892459,14,12 +428.738602844033,1491.66775149143,0.666374333091751,17697.2131471994,38080.0859758206,5334.56083504875,1698.90472453782,14051.6922420002,0.189310890082884,68.2704781598779,10,7 +3919.08618791924,3320.62618156443,0.423190302559128,7332.77361538356,261603.991811345,40487.913849962,12894.2400796057,96532.8383067694,0.12022451777248,624.058310178223,14,16 +3485.2001147519,1689.6358131619,0.033040659374495,24056.2599289489,121451.888131929,40804.6575829941,12995.1138799344,44816.1948826306,0.009386550958663,554.968171138838,3,21 +2717.09598289331,508.915873263494,0.925776049646017,22667.4426664824,43955.4853672821,2041.7685343065,650.244756148567,16219.7362978901,0.263004559558528,432.658596002119,2,14 +406.263618993406,3296.29344162754,0.121096765907181,15531.3682578069,40014.492484775,12273.5959216309,3908.78851007353,14765.4953818358,0.03440249031454,64.6916590753831,9,7 +9.7113003305698,3681.30161558133,0.642623835603781,12237.0986679684,188774.22310938,9886.83410471854,3148.6732817575,69658.3849112103,0.182563589660165,1.54638540295697,2,20 +3451.28723148181,897.322079738906,0.53343915933634,703.819133100436,214939.08320302,10135.0300322876,3227.71657079223,79313.3148350627,0.151545215720551,549.568030490734,15,18 +3849.04444089054,1058.79101125084,0.160308990560751,15736.959038622,9352.87903952087,23385.8865550472,7447.73457167108,3451.24687805198,0.04554232686385,612.905165746901,11,14 +659.144988545046,694.612385990969,0.727786149109466,9308.30220848712,23652.8623340708,27499.4653946275,8757.79152695143,8727.99348120694,0.20675742872428,104.959393080421,12,9 +1079.65782288004,620.6538000144,0.915096640172303,6438.09666679727,218210.539378685,7622.47638790318,2427.54025092458,80520.4942356771,0.259970636412586,171.920035490452,18,19 +2511.25066404791,28.1658209719963,0.055996409851891,13785.1956644236,50213.0047012628,20382.0967619651,6491.11361846022,18528.7840226062,0.015908070980651,399.880678988521,4,7 +1375.97844466972,3611.02733755523,0.644646836689034,7601.6251449937,74920.361769013,24093.2148972111,7672.99837490799,27645.8899516653,0.183138305877566,219.104847877344,14,24 +604.712212616158,970.890714481112,0.660110447381,7656.20008458504,146308.83123355,41554.8108059423,13234.0161802364,53988.4986101661,0.187531377096875,96.291753601299,2,18 +3364.67392770141,3656.59328480312,0.067242062623568,908.961227205634,110741.723226628,12213.9195536134,3889.78329732911,40864.1045116709,0.019102858699877,535.776103137167,8,17 +227.431818714343,280.468645734351,0.254614190903295,10357.52406479,232688.704364494,40766.7160219906,12983.0305802518,85862.9905404037,0.072333576961163,36.215257757061,9,19 +2417.43557737551,3379.64269092596,0.409242073978894,4967.30303068645,200485.621950902,1844.70083935771,587.484343744494,73979.9342992258,0.116261952834913,384.941970919667,11,5 +3658.57135110306,1961.09236769431,0.320111900637406,9634.42852671554,39643.8824708235,16181.3603065894,5153.29946069726,14628.7389191231,0.0909408808629,582.575055908131,7,19 +2466.40607455506,3765.78791498615,0.073776065580329,23959.1079422498,8767.29862363404,30767.6796626059,9798.62409637131,3235.1655437764,0.020959109539866,392.739820789022,3,18 +1211.57186603401,183.775516313271,0.586599378867213,18831.0568161137,263563.512478131,23882.356818105,7605.8461204156,97255.908663517,0.166647550814549,192.925456374842,3,22 +655.324827064668,3461.61831524694,0.07782003448161,17514.8781456825,72575.102794672,5028.68188174598,1601.49104514203,26780.4807360413,0.022107964341367,104.351087112208,10,15 +763.193385722337,1819.3023402435,0.303959320026117,22977.2318324915,106796.287631257,41546.3494875805,13231.32149286,39408.224218176,0.086352079552874,121.527609191455,9,3 +1816.6088576912,3850.89381369718,0.923713798948213,6392.29453916475,154091.903167747,20991.9746262758,6685.34223766745,56860.4808737074,0.262418692883015,289.268926383949,12,8 +1264.15177390238,3691.08326927808,0.806530874273897,5562.5489542781,199951.855002379,38382.0775753233,12223.5915844979,73782.9723256011,0.229128089282357,201.298053169169,3,3 +2898.2720909895,1895.89785786196,0.884942205670863,16624.1725190841,163168.679642479,38796.7645448778,12355.6574983687,60209.8448865236,0.25140403570195,461.508294743551,14,4 +927.562657760421,138.711608124418,0.167350552245589,7378.88489087356,45187.356009891,11116.0169862074,3540.13279815522,16674.3011106609,0.047542770524315,147.701060152933,9,4 +2242.21286368061,3224.99834431277,0.801294890823985,23172.0766644729,63036.8051843609,4749.76696685773,1512.66463912667,23260.8137211664,0.227640593984087,357.040264917295,19,1 +2819.93947463887,1522.25024128299,0.960814952452445,21800.9230153217,19856.2952037189,11057.498286927,3521.49626972197,7327.04620063428,0.272958793310354,449.034948190903,16,1 +1479.25459728824,187.978631310233,0.222870532714356,18071.9489861203,281154.54318678,7112.80935768908,2265.22591009206,103747.063906561,0.063315492248397,235.550095109592,13,22 +3210.37225734826,3408.7579893126,0.101750694105989,10985.0731658316,91302.5739076272,40991.5448028321,13054.6321028128,33690.9866817813,0.028906447189202,511.205773463099,18,12 +2302.74795897114,1651.24832587413,0.069818770480503,11881.1265165495,246845.494082896,11388.0004624773,3626.75173964245,91086.8981855705,0.019834877977416,366.679611301137,15,24 +461.865914337699,1312.7616400186,0.298798772327066,2531.06727979818,225805.705928508,41045.7182463933,13071.884791845,83323.1387190066,0.084886014865644,73.5455277607801,6,19 +175.92269992885,2664.55132713804,0.43378761219663,7549.90768351303,86937.7979262143,1843.04901460928,586.958284907414,32080.3682384555,0.123235117101315,28.0131687784793,0,16 +1984.13394323271,1655.72792229575,0.893098180649036,24749.9022235245,238939.659928542,37752.0169478356,12022.9353337056,88169.6162097941,0.253721074048022,315.944895419221,10,20 +3088.20744598402,3691.63604200118,0.859076894623933,24996.4099030462,244402.457348422,7665.62019391989,2441.280316535,90185.4086156539,0.244055935972708,491.752778022933,5,23 +3914.2643384778,1422.23177083592,0.390067851034171,2006.03878932797,24719.7400574804,33056.7037434742,10527.6126571574,9121.67529796325,0.110814730407435,623.290499757611,5,13 +1230.81719288904,2270.42481096209,0.628353418604974,11480.9915420191,178265.933852719,9088.14633221246,2894.314118539,65780.7873995273,0.178509493921868,195.989998867682,13,17 +3652.97353059716,2964.12462916164,0.191257627446383,10901.880248193,82713.7688852094,28913.7163687163,9208.18992634277,30521.6859355016,0.054334553251813,581.683683216108,0,17 +3151.34163586722,609.569424400246,0.875534236027679,17340.9620997307,58878.4214882391,20810.0966902728,6627.41932811236,21726.3547927082,0.248731317053318,501.805992972487,5,11 +2769.32969595039,2563.91063278405,0.039680820345605,12913.9325485533,105484.868349429,7573.58079926734,2411.96840740998,38924.3056639959,0.011272960325456,440.976066234139,15,13 +3198.38367199553,2485.18119984333,0.8004592075195,16871.9891174895,258952.177858709,17155.6832244522,5463.5933835835,95554.3091729554,0.227403183954403,509.296763056613,18,14 +1890.19971921689,1135.95178508664,0.639343912658111,2503.29284243198,82848.8483871196,2770.11050738914,882.200798531573,30571.5307701548,0.181631793368782,300.98721643581,18,3 +3268.90220754231,657.904125831036,0.507900237524508,600.150317549051,252152.294421886,18948.8090397063,6034.65256041602,93045.1270929469,0.144289840205826,520.525829226482,10,9 +2799.04512365232,3743.86364941329,0.216993460981992,13344.0690047774,109962.821136445,6544.74166702414,2084.31263281024,40576.6867662159,0.061645869597157,445.707822237631,17,21 +3635.30016546749,2971.03490717909,0.171935099595327,7968.84533499774,144024.335150168,7905.20724126627,2517.58192397015,53145.5111255232,0.048845198748673,578.869453099919,12,1 +1100.62093645566,2419.40516053645,0.581162426695986,13431.6863637339,82541.8631949808,32720.6718118023,10420.5961184084,30458.2521014689,0.165102962129541,175.258110900583,13,2 +3174.56974232229,2599.56087183379,0.464675208005779,9504.98139786566,207841.191543265,19243.9795446321,6128.65590593379,76694.166621131,0.132010002274369,505.504736038581,15,12 +2417.55365733462,1782.13699325964,0.258277705378597,9904.24692882681,195099.923639455,13034.4768872853,4151.10728894436,71992.5917488764,0.07337434811892,384.960773460927,8,19 +1200.15906858968,929.869600259786,0.001596546619224,19543.7548581792,195670.508998981,42841.9455563963,13643.9317058587,72203.1398520225,0.000453564380461,191.108131941032,16,18 +1636.25052091497,907.550567889165,0.148568031481654,2325.03785150225,38853.789797077,34652.9751472209,11035.9793462487,14337.1918070395,0.04220682712547,260.549446005568,11,1 +714.83806132907,314.294100974782,0.973528843076477,17277.3509072911,160930.147906256,9253.08582555475,2946.84261960342,59383.8184155926,0.276570694055817,113.827716772145,15,22 +3861.99284838794,3227.59379370035,0.40954615551813,22029.7722079508,205344.845332649,18442.0225567934,5873.25559133548,75773.0056578041,0.116348339635832,614.967014074513,1,14 +1910.14415566212,3114.78330019565,0.477457833993326,7688.66628992419,227511.624726692,36276.0131481605,11552.8704293505,83952.6290504399,0.13564143011174,304.163082111803,14,12 +2089.40801233477,2265.79597132232,0.498743416962969,22039.4399866705,42899.053876702,4620.88324680345,1471.61886840874,15829.9091795948,0.141688470728116,332.708282218912,4,1 +506.93455424302,1771.30794390199,0.838061056071188,22116.479926393,244948.080332101,20597.5656371389,6559.7342793436,90386.7455100004,0.238085527292951,80.722062777551,9,3 +2448.74045216425,2883.7893318793,0.903578387916217,11287.2783300476,50026.2965327513,31733.8211229312,10106.3124595322,18459.8880194654,0.256698405658016,389.926823593033,7,25 +3217.95804533761,3497.99700168293,0.77024568681177,17196.2747421792,45.8103481377216,5012.63503185701,1596.38058339395,16.9041875046943,0.218819797389707,512.413701486881,0,21 +2479.73767008202,3981.12361902584,0.205241116628825,22419.504319616,223858.982833395,30686.715895576,9772.83945718981,82604.7907134299,0.058307135405916,394.862686318793,8,17 +1173.17990976284,3896.80992074914,0.133004417900872,12150.3940843802,198890.467286285,29366.7568757609,9352.47034259901,73391.3163418026,0.037785345994566,186.812087541853,9,20 +549.364724669185,3922.54255603118,0.321427502876213,12814.0401647318,238881.173856888,6981.08820227686,2223.2764975404,88148.034633538,0.091314631498924,87.4784593422269,1,23 +2612.9257544024,2273.68843223148,0.25019899379476,8550.58806491498,287950.026351999,2577.75979920863,820.942611212939,106254.62227011,0.071079259600784,416.070980000382,4,2 +2158.57904824977,734.232965399465,0.1340056128163,18479.6838864058,183931.714145939,18719.0728620672,5961.48817263287,67871.4812346638,0.038069776368267,343.722778383721,11,2 +3227.78493478379,2510.24339947806,0.030672139117875,17026.1401277051,196539.191359295,21616.2198019228,6884.14643373338,72523.6868484483,0.00871367588576,513.978492799967,14,16 +3104.5407132138,1840.43780876152,0.717506257038558,2637.06550109853,211535.925255054,4260.25023785276,1356.76759167285,78057.5369944849,0.203837004840499,494.35361675379,12,6 +352.394071187898,1093.08543832759,0.047868315220879,14214.1244711187,111030.768057925,711.187307410515,226.492773060674,40970.7631210055,0.01359895318775,56.1137056031685,3,10 +2558.81656690952,1698.55698055385,0.110984053037529,22717.6780551224,41189.372609986,36105.9475852396,11498.7094220508,15199.0304833897,0.031529560522025,407.45486734228,13,22 +3023.12462499976,2758.36661249226,0.94806173059256,12517.6774923936,149837.463049329,42225.7789117631,13447.7002903704,55290.5767709701,0.269335718918341,481.389271496777,16,21 +3759.11243923739,2115.84879130531,0.903409657706825,13916.5139764627,228076.4708834,13724.7283255553,4370.93258775646,84161.0593665683,0.256650470939439,598.584783318056,5,23 +3804.76276720427,1584.23289321486,0.909944398321957,10367.5987430028,224048.369198498,19293.7813450494,6144.51635192656,82674.6749809956,0.258506931341465,605.853943822336,0,15 +2168.95562252849,3451.45514197155,0.537591824763129,21059.9084221065,228635.280333856,41716.9184494274,13285.642818289,84367.262115814,0.152724950216798,345.37509912874,2,15 +2932.10985516676,3748.11813147614,0.161655223981472,8347.52726719666,234942.036475513,44830.2302501303,14277.1433917612,86694.4784042484,0.045924779540191,466.896473752669,3,13 +625.306956152068,3027.51719390514,0.788522811167489,20553.1493719233,262949.799038295,42001.7469551251,13376.3525334793,97029.4461395923,0.224012162263491,99.5711713617943,18,6 +2913.63701319835,1889.17883964723,0.661769210734318,24864.3767383562,286032.613373026,37135.3007723833,11826.5289084023,105547.089805545,0.188002616685886,463.954938407381,9,1 +2312.01483590847,2722.31351251515,0.498219257232697,6517.17567002856,86940.8008248112,31494.9218990348,10030.2299041512,32081.4763191185,0.141539561713834,368.155228647846,12,11 +1125.17577341231,1682.03051875996,0.17818063187069,22891.9017969454,25750.3630173995,34112.7179724895,10863.922921175,9501.97897321015,0.050619497690537,179.1681167854,7,19 +715.138373770629,3312.80181597954,0.73939909654313,11168.9450520199,10135.5067467144,14865.3201823242,4734.17840201408,3740.03938993151,0.210056561517935,113.875537224622,0,11 +1418.17387248987,3860.02796635264,0.833482306617462,19651.0781345194,42188.1528334427,27079.3437191973,8623.99481503099,15567.5840713811,0.236784746198143,225.823865046158,19,0 +2772.32899716579,374.018654321685,0.555846483843339,24490.6835781686,81894.413408744,21256.1086704288,6769.46136000917,30219.340741234,0.157910932910039,441.453661969075,9,8 +3375.80893450724,344.433390151922,0.50126170958816,9408.80067241258,231560.296407488,6875.90480362232,2189.77859987972,85446.6038404015,0.142403894769364,537.549193392873,12,15 +2350.75990934294,3557.4199613817,0.706639452903187,19648.6243583832,156979.235266753,8558.9299242743,2725.77386123385,57925.9170726026,0.200749844574769,374.324826328494,1,12 +16.0220580758518,3032.9565806992,0.054551827174477,10015.2411428248,167908.824256065,17907.4112611637,5702.99721693111,61958.9757402454,0.015497678174567,2.55128313309742,9,4 +2501.864531603,211.390268679942,0.031203537248291,14483.8994405015,23029.271265794,15095.8392964195,4807.59213261768,8497.88607593874,0.008864641263719,398.386071911306,19,1 +741.544928388671,3111.68971613671,0.366073766940032,19727.1065036342,277155.8295658,8777.7826586483,2795.4721842829,102271.523825018,0.103998229244327,118.080402609661,7,1 +3129.80136196886,1074.96092763175,0.082570241344708,22894.3549098497,107327.193865212,22164.8595068143,7058.87245439946,39604.130577569,0.023457454927474,498.376013052366,0,23 +250.983428841953,3707.42806508561,0.477133511943371,17508.1353976309,232693.021368759,44633.7498481097,14214.5700153216,85864.5835309074,0.13554929316573,39.9655141468078,16,9 +3495.23685348716,1971.5247528529,0.993440774743068,12015.6094393525,73834.9308703297,2787.18015890272,887.636993281121,27245.3619447711,0.282227492824735,556.566377943815,7,18 +3424.86994961792,3035.24843999438,0.585027361400428,23311.5034045278,191583.425579857,40784.3710088872,12988.6531875437,70694.9909888771,0.166200954943303,545.361456945529,16,21 +968.117686632311,2398.46790463698,0.603717869520313,18591.4103759329,249087.118671809,3585.66153958802,1141.93042662039,91914.0659305568,0.171510758386453,154.158867298139,4,20 +2190.86866059815,1826.9860128914,0.954822445721691,16306.2831859182,43034.3958085061,22157.0428116153,7056.38306102398,15879.8508518473,0.27125637662548,348.864436400979,11,10 +2406.85862341427,3969.63512929156,0.540436054768373,16914.6399581626,41888.3309141699,31647.0718458474,10078.6853012253,15456.9486768155,0.153532970104651,383.25774258189,15,9 +851.598488860583,307.867071229916,0.690757722646376,20918.1439469749,78373.1101933197,18619.6927006362,5929.83843969306,28919.9668610036,0.196237989388175,135.604854914106,15,18 +1073.88882758069,125.000011154097,0.544457468788516,12747.195543102,243713.537529377,6814.56672138138,2170.24417878388,89931.1946602867,0.154675417269465,171.001405665715,5,8 +1060.23616712564,1565.92043267009,0.895305989595863,4450.28628121839,249990.115732833,15535.8133769331,4947.7112665392,92247.2751781672,0.254348292498825,168.827415147395,9,3 +1349.00986679061,1351.1047175433,0.096103107235779,5759.05403862944,32315.3258136453,21859.5710153881,6961.64682018729,11924.4744699798,0.027302019101074,214.810488342454,15,14 +119.643498270263,1186.09518320227,0.979700694010461,21773.2326264661,101878.950815407,9380.39856528199,2987.38807811528,37593.7087879731,0.278324060798426,19.0515124634177,8,17 +3261.86927974347,266.862241757874,0.653637309514209,23875.7311122201,180976.422214102,14157.4826699512,4508.75244265962,66780.9676066797,0.185692417475628,519.405936264884,10,2 +1708.90798327579,1498.65427956193,0.501734291458414,6809.40101508667,188216.820869143,16231.2792681448,5169.1972191544,69452.7014277281,0.142538150982504,272.119105617164,18,12 +727.210305229911,1223.8300908882,0.765142277148231,1838.73589483136,117216.55436244,7368.65952332677,2346.70685456267,43253.3410931513,0.217369965098929,115.797819304126,11,12 +2277.99231830081,2201.38545232198,0.714068474213252,729.522249070468,271586.602580253,5956.44083925433,1896.95568129119,100216.458516699,0.202860361992401,362.737630302677,2,5 +2715.4976938472,1871.1450083423,0.821716809901225,4236.25211097531,211472.016367777,11042.1286422121,3516.6014784115,78033.9543792535,0.233442275540121,432.404091376943,8,6 +3204.26793308655,3567.25798418824,0.132210228944778,6003.26323259474,70504.9765906458,26272.9452577375,8367.18001838774,26016.5965279136,0.037559724132039,510.233747306775,15,11 +1109.84889334393,1768.34098543747,0.239080626968522,6598.03798398066,24533.757702684,31902.9830718751,10160.18569168,9053.04712276162,0.067920632661512,176.72753078725,12,16 +1408.5289190047,674.595139847572,0.880656755517695,13745.6555764451,199355.512316258,3411.93453378604,1086.60335470893,73562.919673896,0.250186578272072,224.2880444275,4,15 +3558.05932535396,2219.89766584731,0.704451947020472,6240.02229635845,18406.9447840799,27062.3182530476,8618.57269205338,6792.23054763096,0.200128394039907,566.569956266554,16,17 +406.249283527363,1007.84252109028,0.003679963229947,19144.4850757592,83385.9109148832,26442.915678331,8421.31072558312,30769.7088246801,0.001045444099417,64.6893763578603,4,20 +3191.20459842459,2479.33873102325,0.991808070892016,13484.9269212543,13501.174764884,39454.8160341632,12565.2280363577,4981.98330807528,0.281763656503414,508.153598475253,18,0 +878.729455080472,1191.14150765309,0.939131259136697,3494.84693798958,190219.858006776,11351.6626451795,3615.1791863629,70191.8295227956,0.266798653163834,139.925072465043,5,4 +153.237784564591,1942.21243141471,0.454231012226902,24460.7024813896,37275.3729716283,39273.6924488343,12507.5453658708,13754.7501740326,0.129042901200824,24.4009211090113,1,25 +860.605982048621,1171.19195115522,0.287750395802543,13216.9811999831,13619.9683079847,24758.9777843081,7885.02477207264,5025.81856383199,0.081747271534813,137.039169116022,7,13 +1698.00138273766,230.69347894653,0.494181307022817,20773.4177346737,59486.434563443,15104.9299541105,4810.48724653201,21950.7138610491,0.140392416767846,270.382385786252,0,12 +1621.04516658463,3551.1175774071,0.153334409989047,19633.3934704062,166027.048774926,37544.68723233,11956.9067618885,61264.5936438841,0.043560911928707,258.128211239591,5,22 +3784.35291224286,1382.09761679322,0.246553926473723,21747.7833572147,140529.113524258,3928.91658929153,1251.24732143042,51855.7614480657,0.070043729111853,602.603966917653,9,15 +2924.11419466846,1294.80402292767,0.72538580467258,12643.2823489987,18465.5820301206,19052.8467061175,6067.78557519666,6813.86790779358,0.206075512691074,465.623279405806,11,6 +1644.64655708734,1203.30983551966,0.712110535511462,3057.73182628817,231328.706706687,31624.6971003083,10071.5595860854,85361.1463862314,0.202304129406665,261.886394440659,8,12 +1305.31649402457,3784.33472669847,0.311721222043628,2888.00110373719,200574.25654969,2598.16503686278,827.441094542287,74012.6407932435,0.088557165353303,207.852944908371,1,2 +1182.38664943838,1706.30190225064,0.16427003538383,24267.064905267,278039.411405343,9405.27873607278,2995.31169938624,102597.568784259,0.046667623688588,188.278128891462,3,0 +3218.02463108497,3697.12412802476,0.894372775381546,10986.1707807168,72603.1613563565,38919.2698430379,12394.6719245344,26790.83444884,0.254083174824303,512.424304312893,19,21 +1765.64994888792,1526.82447518951,0.611789380703938,14687.920675527,95125.0760524044,37077.6543884929,11808.1701874181,35101.504078378,0.173803801336346,281.15445045986,17,20 +342.702426587242,485.742818356756,0.848853821562256,5894.76049563044,64953.1084941732,181.89805232497,57.9293160270605,23967.936713717,0.241151653852914,54.5704500935099,3,12 +2030.48332645943,339.163376345354,0.621216672465187,21950.7328660579,52485.238898918,32886.8606774822,10473.5225087523,19367.246826169,0.176482009223065,323.325370455323,15,17 +223.040949239516,2150.44720526549,0.590494339903131,2356.62444469525,145524.589462557,4614.81929494189,1469.68767354837,53699.1105027886,0.167754073836117,35.5160747196682,19,14 +327.005515392055,1266.52202762029,0.472591692115046,4977.93540827304,264409.879521587,12692.4620149854,4042.18535509089,97568.2212256779,0.134259003441774,52.07094194141,0,19 +1900.63897993632,717.456308808154,0.471599626692981,4152.03215656775,207522.967389206,19180.6991636213,6108.50291835073,76576.7407340244,0.133977166674142,302.64951909814,8,7 +1923.50066414003,4014.27755007501,0.266837734764273,17102.8473674812,251067.2860016,38371.5792099595,12220.2481560381,92644.7549821402,0.075806174648941,306.289914671979,17,22 +305.136020592012,797.385533442898,0.687321516203456,1945.37957185014,204377.239607446,10536.810699967,3355.67219744172,75415.9555747033,0.195261794375982,48.5885383108299,18,21 +321.437519641172,34.6835613735109,0.944887027927058,19745.7219336119,288773.965393623,40991.395566617,13054.5845753557,106558.658816835,0.268433814752005,51.1843184141994,19,14 +285.982145117513,726.40559278163,0.007550005381498,3976.41079942477,81586.4025224846,39068.0686014584,12442.0600641587,30105.6835876327,0.002144887892471,45.5385581397314,13,3 +3696.63205544871,812.300758920528,0.031262526177349,8939.85603395668,177632.995232101,19618.8560028621,6248.04331301341,65547.2307129524,0.008881399482201,588.635677619221,7,14 +179.800920488744,1596.77023554167,0.054602457489751,23127.2695663852,83872.9712080242,24495.509320443,7801.11761797548,30949.4358701196,0.015512061786861,28.6307198230484,3,2 +1290.09392875104,2590.34495149529,0.927810094923223,13101.727206911,184440.350886275,38774.613491367,12348.6030227283,68059.1700687362,0.263582413330461,205.428969546344,4,16 +2924.58696245221,3129.51580505982,0.835879057877479,6407.52613766883,124076.494040846,38461.4837544391,12248.880176573,45784.6841479137,0.237465641442466,465.698560900033,16,4 +45.1344643173041,849.242845677844,0.256586566680485,1702.27990497336,169219.365044192,42088.9058118677,13404.1101311681,62442.5701270081,0.072893910988774,7.18701661103568,9,9 +1316.96056134551,3520.5362112127,0.406437543262659,6693.78792368466,179679.911141326,43857.0237257616,13967.2050082043,66302.5502366517,0.115465211154164,209.707095755654,5,3 +1500.82225949504,3701.06564120328,0.836158073365692,4433.76279891977,279498.904768507,10379.4573032305,3305.55965071035,103136.127220851,0.237544907206162,238.984436225325,11,16 +3230.57312178835,3002.99973805549,0.263974137289073,8087.69052190828,251765.834794168,2675.4214801309,852.045057366529,92902.5220642687,0.074992652638941,514.422471622349,15,2 +1984.63002434976,3144.83833725443,0.062051201337243,7421.86589594612,80336.3364083247,29610.8990470899,9430.22262646175,29644.4045787176,0.01762818219808,316.023889227669,5,5 +972.346254375231,623.082578671814,0.908582231520381,14766.0215634611,274020.868060457,11078.9484330487,3528.32752644863,101114.711461423,0.258119952136472,154.832206110706,8,13 +1270.88941476191,435.053419159925,0.656031977339424,7564.31529649877,35954.6425067581,44182.6676157088,14070.9132534104,13267.3957589513,0.186372720835064,202.370925917502,4,5 +1447.67366019909,3075.4799248545,0.841020650880473,5994.66304213895,71234.3889235188,34661.9757700644,11038.8457866447,26285.7523703021,0.238926321272862,230.521283471193,1,17 +2742.20400202917,1226.66270603522,0.536883016742667,1289.23805062413,71997.6428812106,9307.34372145844,2964.12220428613,26567.3958971257,0.152523584301894,436.656688221205,14,2 +705.079750687839,3096.74921705538,0.992590925308959,15291.4915568444,210591.685884153,38550.357862739,12277.1840327194,77709.1091823443,0.281986058326409,112.27384565093,13,18 +483.920086115692,310.477208468438,0.814988766395602,9845.10719198164,255265.666843549,16766.5131775783,5339.65387820965,94193.9730049996,0.231530899544205,77.0573385534541,0,6 +3059.60773119237,2545.02218501067,0.869717742299165,15652.0438789607,139794.688994734,20957.8945122065,6674.48869815494,51584.7560866177,0.247078904062263,487.198683310887,1,3 +186.866264553031,3093.92058902895,0.003356056294418,5328.80802521564,164404.338795415,16436.4962574528,5234.55294823338,60665.8076735849,0.000953425083641,29.7557746103553,1,20 +1748.45099272469,2212.31146276071,0.884731583776468,11218.7814562293,129460.309024373,10367.0979186508,3301.62354097159,47771.3317433111,0.251344199936497,278.415763172721,14,2 +1421.71030347696,3301.39529273211,0.456352814711351,22426.4075311949,172916.886074182,31302.8189395565,9969.05061769315,63806.9690310635,0.129645685997543,226.386990999516,1,24 +3926.3803663633,462.899498304479,0.710577254473854,6370.04679862383,34168.9565549576,6105.96145351534,1944.57371131062,12608.4710534899,0.201868538202799,625.219803561035,5,2 +1317.88538039245,2713.65020206461,0.346934486599697,10560.5369255008,34241.2162319276,15026.1231200723,4785.38952868545,12635.1351409327,0.098560933693096,209.854359935103,15,1 +3866.21404656869,2005.14270775501,0.912333315581006,17846.7154479734,214718.755223465,13886.409231238,4422.42332205032,79232.0129975886,0.259185601017331,615.639179389919,18,7 +1129.87673361418,612.37921573819,0.930945371057648,18871.6325708861,174503.964859277,26494.3075873901,8437.67757560194,64392.6069591428,0.264473116777741,179.916677327099,7,3 +2738.75068722238,2227.58837580662,0.295572438122218,3343.80953923946,200002.18819655,12934.7358569677,4119.34262960755,73801.5454599816,0.083969442648357,436.106797328404,0,21 +539.459668906534,3153.79754147604,0.525473220627015,19719.5025366478,10635.9571605045,29338.9165961414,9343.60401151,3924.70743930055,0.149282164950857,85.9012211634608,4,20 +408.079208270241,2447.59918158486,0.94101521040961,741.334731294891,119902.697800367,13551.7105973457,4315.83140042857,44244.5379337148,0.267333866593639,64.9807656481275,7,15 +1796.55521502567,2645.88411868201,0.023337194728801,9650.46181727217,148314.781779729,33094.5925183644,10539.6791459759,54728.7017637376,0.006629884866137,286.075671182431,7,23 +354.457253660748,990.515145776116,0.09173963812014,21388.5203034054,263853.390182749,14907.4413781987,4747.59279560468,97362.8746061805,0.026062397193222,56.4422378440682,13,16 +3502.86607798071,3418.12062286403,0.121043303515534,19605.8601724282,221213.632311955,10545.281627979,3358.36994521624,81628.6466095775,0.034387302135095,557.781222608393,2,22 +1197.98954753249,3375.00311094618,0.776395569926181,9954.21702310417,238651.855874156,25138.3621924032,8005.84783197554,88063.4154517181,0.220566923274483,190.762666804537,18,22 +3615.92842470231,3634.72570221425,0.238648936206666,2104.54004356486,274287.151843555,34360.7740515566,10942.9216724703,101212.971159983,0.06779799324053,575.784781003553,0,22 +358.581927118849,2939.15915650004,0.899486856655774,19075.3142727898,9810.35607686944,41390.5642872994,13181.7083717514,3620.05759294075,0.255536038822663,57.0990329807084,14,5 +2395.27104745991,171.362808828916,0.233619299860178,8655.08126535365,104992.669875218,9266.84663966796,2951.22504448024,38742.6826107815,0.06636911927846,381.412587175145,18,1 +3198.00039116801,59.1901961498151,0.277526084079715,17129.8730224671,167601.746938786,5830.93529902078,1856.98576401936,61845.6630770428,0.078842637522646,509.235731077709,2,6 +2224.87556832274,1694.02575034705,0.180847839536011,14883.8942962696,59812.9250400786,17190.732824761,5474.75567667548,22071.1900516895,0.051377227140912,354.279549095978,8,10 +3964.71149447315,3385.7856321949,0.185101279120603,11353.6432480014,155874.827468704,35285.1336012952,11237.30369468,57518.386519817,0.052585590659262,631.323486381075,8,11 +920.020058639201,194.901743040802,0.381828115760053,24626.5569164921,239759.327713831,28311.8032244958,9016.49784219612,88472.0766471701,0.108473896522742,146.500009337452,6,14 +2302.60578744779,1284.07474158177,0.007958948069317,19390.61359966,20363.112719766,6357.36954963703,2024.63998396084,7514.063734231,0.00226106479242,366.656972523533,13,24 +748.822706741853,3163.16841284116,0.618429273555356,14024.9388523486,242608.701444152,24382.1799847579,7765.02547285283,89523.5060679528,0.175690134532772,119.239284513034,11,0 +2029.17152809825,1177.50571483126,0.169838506983715,16733.0207134504,172557.600719392,14464.2641675501,4606.45355654462,63674.3914093697,0.048249575847646,323.116485365963,13,24 +2782.60647612177,2562.61683594994,0.914557646714765,21332.4415926456,187109.013879793,19045.5120437278,6065.44969545471,69043.9165608092,0.25981751327124,443.090203204104,7,1 +3682.55315106839,2110.50685137741,0.536852665868449,3633.31013639789,100883.778376291,40556.620527355,12916.1211870557,37226.4864857162,0.152514961894446,586.393813864393,16,17 +990.242943532796,3877.07838405172,0.073471760666148,18988.7269609736,17055.5633167946,40883.5673076166,13020.244365483,6293.5657995552,0.020872659280156,157.681997377834,19,19 +2183.87436981259,2146.31668984332,0.990806942605165,14809.7519453076,59639.880264062,42199.1938751679,13439.2337182063,22007.3358907978,0.281479245058286,347.75069583003,0,17 +3919.36558696809,1744.05608753402,0.161655644215567,3875.40140710547,4095.56000101424,4819.69691388096,1534.93532289203,1511.27675314179,0.045924898924877,624.102800472626,14,21 +30.6422170818666,202.217791271313,0.09408010532584,7214.6253878392,43221.2891354936,21038.5597754496,6700.17827243618,15948.8151791489,0.026727302649386,4.87933393023354,11,22 +3107.69259910013,1677.63221612315,0.528567184972266,3482.90503904298,219281.062997144,39485.1241099791,12574.8802898023,80915.5214011602,0.150161132094394,494.855509410849,11,25 +2254.62971427446,1868.84494859375,0.895702152229263,7586.28956714392,51313.1557955244,10286.1634528785,3275.8482334008,18934.7438359869,0.254460838701495,359.017470425869,16,10 +780.225195956371,1205.62874299041,0.256383923235068,12700.7709251336,87790.715517258,25841.4344470133,8229.75619331634,32395.097976848,0.072836341828144,124.239680884772,11,13 +3909.02224736632,1991.15012914416,0.693997095120673,9888.40758335478,213079.603661216,43439.1004569188,13834.1084257703,78627.1600225889,0.197158265659282,622.455771873618,4,13 +477.229286250595,1540.28760325561,0.119442319208832,16510.3562945609,172849.332138424,24889.6611642199,7926.64368287258,63782.0413794923,0.033932477047964,75.9919245621967,1,12 +1642.52384887005,3215.98713620867,0.075310750314927,22054.6877378602,179886.355584967,28330.701205912,9022.51630761529,66378.7289981428,0.021395099521286,261.548383578033,4,13 +3342.70518465731,400.047866595735,0.80035331685254,7641.74707856396,151543.513021432,26305.7641832817,8377.63190550373,55920.1155060635,0.227373101378562,532.277895646068,8,15 +3884.73161112316,1895.30507998529,0.845427147876777,21789.9399817878,66510.0008666411,29420.2482416555,9369.50580944443,24542.435744148,0.240178167010448,618.587836166108,8,9 +3115.92218675351,2632.23574405794,0.65771889656394,17789.4527745844,281115.482967525,15036.3784877235,4788.65556933869,103732.650541522,0.186851959251119,496.165953304699,14,24 +2843.15131017897,3360.57385700416,0.754959327127374,21472.3743041182,36387.7104822507,41835.7401972642,13323.4841392561,13427.1994399449,0.214477081570277,452.73110034697,17,17 +3412.6487987642,3511.13567444106,0.35720705460349,14384.4874983814,91919.3491180772,21463.1605884901,6835.40146130258,33918.5790103606,0.101479276875991,543.415413815955,2,6 +3649.76867015566,2837.18104405536,0.330920974160771,6790.16264505933,35552.1532189406,29075.6111520924,9259.74877455172,13118.8757265463,0.094011640386583,581.173355120328,4,21 +3302.68775523128,2535.72215969976,0.819669090462026,2018.40634472088,15101.5191101012,32852.8280542317,10462.6840937044,5572.51627679011,0.232860537063076,525.905693508166,18,22 +1372.88140072489,1328.03867835422,0.020497496362005,13727.9976721978,193960.001269359,32202.738808143,10255.6493019564,71571.9561879554,0.00582315237557,218.611688013518,11,14 +3055.45443031244,1093.17358356103,0.905953302269542,4029.40322511175,238578.274270845,18263.2264973584,5816.31417113325,88036.2635685775,0.257373097235665,486.537329667586,3,15 +2543.05450898186,3902.98554431225,0.728626471584842,4959.59286763918,264139.524418608,35869.8379815249,11423.5152807404,97468.4591950583,0.206996156700239,404.944985506666,4,4 +615.65324978922,819.563564722485,0.480196090124731,12.3248674542989,111553.37983284,27751.6605959463,8838.10847004659,41163.6087944059,0.136419343785435,98.0339569728057,7,19 +2832.6079933945,3443.00049517332,0.768604660493599,3813.48862066978,182441.891252747,17652.4453823739,5621.79789247576,67321.7310895746,0.218353596731136,451.052228247532,0,15 +2932.88105387023,3837.56124062456,0.546622980611093,8581.11128312726,254062.977970932,32538.5177127434,10362.5852588355,93750.1763730376,0.155290619491788,467.019276093986,8,9 +3570.56879500549,230.252445565403,0.482252403087851,1308.45268238771,169198.137059784,22922.3423843079,7300.1090395885,62434.7369224295,0.137003523604503,568.561910032721,5,21 +2733.03907833266,1657.06772272682,0.748554080135926,17893.0195875905,177010.574485163,19084.4109814258,6077.83789217382,65317.5551605768,0.212657409129524,435.197305466984,14,5 +3833.49831164855,3543.14870401244,0.490729622779369,11953.5022238372,79775.1513897792,5689.08804196144,1811.81147833167,29437.3252360809,0.13941182465323,610.42966745996,5,11 +2551.59688176494,3644.28822851078,0.632422421477489,2709.4893749475,91988.2446387823,4473.44774181989,1424.6648859299,33944.0017117278,0.179665460647014,406.305235949831,5,20 +2791.28335669899,763.349616464315,0.983716190875841,8043.14085739196,17129.8495654612,39907.1881552989,12709.2955908595,6320.97769943218,0.279464826953364,444.471872085826,15,2 +2525.89703214419,3259.15942522875,0.934851513335813,3035.00852541268,21430.4783405606,30856.1474890176,9826.7985633814,7907.92558692273,0.265582816288583,402.212903207673,18,19 +812.574547286286,3933.73368913514,0.761475981440303,1818.71558026495,85964.1698376258,23978.9169332664,7636.5977494479,31721.0958810427,0.216328403818268,129.390851478708,10,14 +737.144698014723,2494.92653270791,0.180897915331653,5424.70838862372,142475.355346798,11731.1144327838,3736.02370470822,52573.9318622871,0.05139145321922,117.379728983236,2,8 +2877.63478643053,908.442335884002,0.793978104091537,14578.4240211821,247586.667006733,3062.92779808046,975.454712764478,91360.3937294218,0.225561961389641,458.222099750084,17,4 +1732.47966315757,1489.37932613576,0.156131132962136,6791.46155559703,176675.990715273,1530.94607844906,487.562445365943,65194.0925148609,0.044355435500607,275.872557827638,16,1 +1132.84947611236,1821.34965871553,0.055473254891091,6991.36349788346,164570.830748154,38570.454265949,12283.5841611303,60727.243818507,0.015759447412242,180.390043966936,15,12 +255.985231512982,2111.36770308127,0.4961868037055,20783.5714040528,18754.9430425308,18036.7562148955,5744.18987735525,6920.64318912576,0.140962160143608,40.7619795402838,17,9 +3908.04449936388,995.408853671378,0.093614638692095,5361.08072306298,214783.97978154,36764.9465088695,11708.5816907228,79256.0811001993,0.026595067810254,622.300079516541,1,10 +2584.23946104083,2702.76392178738,0.372705053219028,15475.5877996928,128370.824315616,32686.1326023027,10409.5963701601,47369.307865541,0.105882117391769,411.503098891852,18,3 +1735.11628738185,2305.49372898959,0.009596026013108,4840.01320888813,93365.5020376356,37190.9845893144,11844.2626080619,34452.2147740353,0.002726143753724,276.292402449339,7,24 +699.195450048601,2821.62929781908,0.46619717267213,11083.7954261978,195825.900245266,16626.146333549,5294.95106163981,72260.4797953011,0.132442378600037,111.33685510328,9,10 +3389.39956903891,244.74984169754,0.555475482633376,6270.65400324905,244147.671364779,44836.0237364923,14278.9884511122,90091.3916475199,0.157805534839027,539.713307171801,11,3 +2551.40506885953,3677.87684327669,0.650875591374749,5068.24579359948,146280.570394818,34047.0604674919,10843.0128877363,53978.0702563904,0.184907838458736,406.274692493556,18,19 +381.307691428897,808.884704773248,0.956634346654104,6920.12453943624,22418.2880961851,13921.814521582,4433.69889222357,8272.43103180262,0.271771121208552,60.7177852593785,10,21 +115.631253291702,1596.42819587731,0.536440551659055,20134.3632491231,118835.794701056,21349.0512665207,6799.06091290468,43850.8467531572,0.15239788399405,18.412619950908,3,22 +2394.12083274208,109.753745085389,0.195942207351346,513.423457836657,19319.6895261489,41016.8995420734,13062.7068605329,7129.0367255162,0.055665399815723,381.229431965299,10,5 +1859.79054467106,834.08206871455,0.445690559420542,15818.8611718555,235387.949735489,639.997946184421,203.821001969561,86859.0220426159,0.126616636199018,296.144991189659,5,8 +1476.70434963568,692.125775068753,0.486137279707783,909.907708536229,220842.882890731,15931.1728554418,5073.62192848465,81491.8387050668,0.138107181735166,235.144004719057,8,1 +2936.20827143319,1724.42824731786,0.551280041178249,4768.27120449918,60577.2564736073,5709.54341134695,1818.32592718056,22353.2311710728,0.156613648062003,467.549087807833,7,2 +776.203815937697,1562.14629776397,0.230531084317729,7901.98847893029,66455.8301931395,18312.8261497827,5832.1102387843,24522.4465657341,0.065491785317537,123.599333748041,0,16 +378.743522653626,3858.23627179581,0.1883128433351,2510.91314537728,201531.930927755,23917.41814931,7617.01214946178,74366.0261726033,0.053497966856563,60.3094781295583,2,4 +3544.91782501519,3010.53585567254,0.575212806942844,14377.0860534858,3825.67988571968,8068.03836331095,2569.43896920731,1411.68999473051,0.163412729245126,564.477360671209,19,10 +3712.65348476883,362.512363205076,0.531452413758062,21891.8865341048,141119.175573987,6690.54181794033,2130.74580189182,52073.4965217664,0.150980799363086,591.186860631979,12,5 +3875.28026415136,2901.53503301442,0.543361754776268,17621.4243579777,268133.154657656,11103.9930892115,3536.30353159602,98942.12348991,0.154364134879622,617.082844610089,13,18 +3925.58471074712,935.969866862833,0.668591395449969,13174.7931859425,258156.172298232,17958.9857281065,5719.42220640334,95260.5801838495,0.189940737343741,625.093106806866,0,21 +1923.64699591285,236.270279625133,0.680443868767609,336.405327831826,234783.378734552,20884.0520909145,6650.97200347596,86635.9331123808,0.193307917263525,306.313215909689,19,6 +1826.07037105474,794.306204839959,0.811784950805504,5293.14671861472,249984.671328613,22209.179151706,7072.98699098917,92245.2661729199,0.230620724660655,290.775536792156,13,12 +1552.357396546,2055.23968354897,0.337609897405516,1700.83880807191,94329.9242474096,17875.5136061133,5692.83872806156,34808.0901281954,0.095911902672022,247.190668239809,12,0 +1776.66063817784,946.241451132076,0.747369810543386,19529.8561557437,111345.860913361,30483.8623093405,9708.23640424857,41087.0335473657,0.212320968904371,282.907744932777,1,9 +2572.75597195629,1499.60478903615,0.41081150143546,8353.46760667752,267077.869599884,19352.9746324186,6163.36771733076,98552.7194095513,0.116707812907801,409.674517827435,11,15 +1899.4813927545,322.599715256843,0.483930961828037,13107.3632241728,7744.81313787674,29922.9902565454,9529.61473138389,2857.86462652278,0.137480386882965,302.46518992906,7,18 +2853.90590396642,1560.13862136005,0.583682348226584,16207.5253635725,263.822744010963,19153.815544529,6099.94125621943,97.3515660557059,0.165818848928007,454.443615281277,10,14 +167.933380222333,312.199992122308,0.002532969043228,11170.8228570751,147426.429328511,14389.2341891963,4582.55865897971,54400.8964311849,0.00071959347819,26.7409841118365,19,13 +3512.23908587805,1283.78713218344,0.218381270228484,13830.7524202537,193295.66949706,9741.21593397882,3102.29806814612,71326.8153125683,0.062040133587638,559.273739789498,7,0 +394.202331953715,1959.81918047748,0.993955648995307,587.671240789677,171795.214288623,32267.4334658779,10276.2526961395,63393.0680031819,0.282373763919121,62.7710719671521,17,2 +357.623265666981,1258.9294545674,0.946107597288249,7572.93162350926,17643.8246596226,31170.2175040613,9926.82086116602,6510.6364057648,0.268780567411434,56.9463798832772,0,11 +2348.12204287136,3250.12042022072,0.277433741923773,375.629149375099,234657.648305415,43941.0190735011,13993.9551189494,86589.5381200793,0.078816403955617,373.904783896713,17,12 +1601.50162283654,563.306212543644,0.15823941875877,13124.8369752267,38387.7595191945,9755.06808910868,3106.70958251869,14165.2249148319,0.044954380329196,255.016181980341,10,0 +3745.45279931627,2741.17918848676,0.817444207362097,3622.19416783819,160506.566933556,22216.4347776283,7075.29769988162,59227.5154736369,0.232228468000596,596.409681419788,2,19 +719.86840826701,42.2772120950135,0.216249871734287,6121.41713824159,114293.53759279,37341.5584351737,11892.2160621572,42174.7371191107,0.061434622651786,114.628727431053,14,12 +461.969471966479,276.375932947695,0.222196178754223,6458.7899903401,166204.157891367,9384.64087653159,2988.73913265337,61329.94756139,0.063123914418813,73.5620178290572,3,0 +1546.6429050338,73.8131647518734,0.730863073104103,3772.2629613697,166684.881679375,13088.7342610731,4168.38670734812,61507.3364130535,0.20763155485912,246.28071736207,0,2 +3541.76506879346,2354.58548658744,0.297530977170103,3039.12014840244,181095.392849477,27306.22373583,8696.24959739809,66824.8682101391,0.084525845786961,563.97532942571,11,8 +3736.09193820968,2715.28210601712,0.153746340904025,8803.98606840325,230335.576390691,2361.42946841884,752.047601407274,84994.6776349414,0.043677937756825,594.919098441032,13,7 +1447.35391563639,935.734747552248,0.010151019072264,2209.75471812542,7614.25875159951,764.177242979829,243.368548719691,2809.68957623598,0.002883812236439,230.470368731909,15,6 +1574.01299363749,3152.54923716693,0.265928358501162,15198.063764423,124774.444530923,2628.24904113223,837.021987621729,46042.2304542151,0.075547829119648,250.639011725715,14,13 +2004.63514705014,1575.98363436917,0.495033930770789,16387.9523800721,174152.108007801,3988.51706434089,1270.22836443977,64262.7704825834,0.14063463942352,319.209418320086,11,7 +910.90976180639,3619.31763511946,0.716081225559954,10931.5244537451,137353.018710144,38192.1418645329,12163.1025046283,50683.7707417506,0.20343216635226,145.049325128406,11,20 +2503.13013334956,1809.16000509761,0.290746899884207,8631.78389249826,81622.4562693859,23412.0837206674,7456.07761804694,30118.9875532789,0.082598551103468,398.587600851841,12,4 +1482.88447493992,78.4409172284119,0.74345100959675,14414.0205173848,164001.423059422,9703.65631631169,3090.33640646869,60517.1302802295,0.211207673180895,236.128101105083,3,16 +2391.23337497305,1592.96053267455,0.575659340377933,3099.37558008255,274327.854033657,2538.92052589333,808.573415889595,101227.990418324,0.16353958533464,380.769645696346,12,11 +3605.61230016418,3937.96296781961,0.365680446124255,24322.2289321284,71884.9965443582,39263.7225153796,12504.3702278279,26525.828983158,0.103886490376209,574.142086013404,15,11 +2355.33203760505,933.015691877232,0.66257338946267,24058.7027763088,257872.269543028,34330.9491374863,10933.4232921931,95155.8190195675,0.188231076551895,375.052872230103,4,23 +91.8977779883736,642.24606435949,0.789819127405681,8138.66542630946,162906.266084307,43219.7749012879,13764.2595227032,60113.0133152424,0.224380433922068,14.6334041382761,5,0 +2837.42926923559,3134.51895341504,0.782225847185955,20755.1833508763,219880.271430271,5077.19459332745,1616.940953289,81136.6315240852,0.222223252041465,451.819947330508,10,9 +1865.51771534669,3720.79410586093,0.641055382830371,22078.9980652194,32679.8233901692,4111.70744293475,1309.4609690875,12058.9754207266,0.182118006485901,297.056961042467,3,7 +152.456197894716,1583.42987067816,0.062944874377078,19875.3607755621,110001.002328443,41539.8132992312,13229.2399042138,40590.7757669531,0.017882066584397,24.2764646329166,16,8 +3624.61596668087,3336.38217315875,0.256735566218532,6926.15725609965,32831.766383257,27289.1169092177,8690.80156344513,12115.0429458513,0.072936240402992,577.168147560648,15,20 +742.425065530668,3460.91536188227,0.235299674487099,689.896570376755,41393.0794017761,39312.383318808,12519.8672989834,15274.1990412458,0.066846498433835,118.220551836094,14,3 +884.282840238557,3032.49781492625,0.409871119858172,20569.9963013259,137859.09250413,38805.9471079099,12358.5818815,50870.5138391624,0.116440659050617,140.809369464738,15,18 +2150.74078249601,3489.8375565458,0.607890200675571,12086.1634945592,272729.868518588,42169.2315659728,13429.69158152,100638.327866638,0.172696079737378,342.474646894269,6,6 +380.47093256064,1502.32324744948,0.254867670805274,24088.5486722294,57620.7819508205,38253.0970968338,12182.5149989917,21262.2811626644,0.072405588296953,60.5845434013758,17,4 +308.810987719669,183.774041203604,0.206118622322221,14631.0031564559,73655.4062633702,13907.7471657159,4429.21884258468,27179.1167023506,0.058556426796086,49.173724159183,5,7 +73.1739341931048,1202.84634082643,0.41326117063034,6466.13444320988,95399.4296928646,27684.3895142495,8816.68455867818,35202.7415840829,0.117403741656347,11.6519003492205,2,22 +3214.70454573959,1669.58070753397,0.973228923348124,20978.1408002198,11119.4996852884,24640.5448152027,7847.30726598812,4103.13641523557,0.276485489587535,511.895628302482,18,2 +1978.5002623249,187.757945209645,0.776653328298425,23579.2456679926,113427.858840389,31215.5876410146,9941.26994936771,41855.2984650882,0.22064015008478,315.047812472118,18,3 +2488.88023991155,354.694137837247,0.050027952161187,2582.64705195461,14553.7377390506,15452.4051719851,4921.1481439443,5370.38292953897,0.014212486409428,396.318509540056,12,17 +1983.43909171778,868.656411688596,0.923513064733343,10876.9207012152,97934.9291313931,8403.34945708619,2676.22594174719,36138.3502329864,0.262361666117427,315.834250273532,10,15 +3970.80766774373,1997.11649428218,0.748629193723854,22157.7286360865,250766.966513305,7181.12621770485,2286.98287188053,92533.9359827694,0.212678748217004,632.294214608874,13,21 +551.095696515087,1613.04878048042,0.839058583624897,18801.7747436203,105774.294134629,23131.835589466,7366.82662084905,39031.1048467266,0.238368915802528,87.7540918017654,5,4 +3303.03915030716,2622.99222226596,0.148988377190761,1021.66112142224,106883.479787884,15326.1459394678,4880.93819728274,39440.3984457137,0.042326243520103,525.961648138083,3,25 +2017.57528853749,2209.85963825693,0.792455783685656,9248.46746084046,155238.508516676,9687.61214446905,3085.22679760161,57283.5824784782,0.225129484001607,321.269950404059,10,14 +758.857485320917,167.46135729604,0.026560399637004,2997.175718147,37981.7730421486,42199.4078832386,13439.3018736429,14015.4144066969,0.007545568078694,120.837179191229,9,19 +1169.30095957102,1574.50148160839,0.694505348256403,1108.53856154233,124.227380696968,30445.3917668783,9695.98463913322,45.8403618808,0.19730265575466,186.194420313857,8,19 +512.565617812643,3057.86169602418,0.436407169100306,24888.4758196694,256876.618939473,12242.7709958358,3898.97165472478,94788.4202728683,0.123979309403496,81.6187289510578,1,23 +3862.61425582588,3545.25503149963,0.674950581814251,12957.7475683086,255950.337733605,44182.0629375455,14070.720680747,94446.6190898912,0.191747324379049,615.065964303484,9,17 +2902.44577544796,2923.30920716927,0.741747269363935,18510.6927783409,112967.571981116,44377.9848809739,14133.1162041318,41685.450915541,0.2107236560693,462.172894179611,12,20 +3186.37370634852,289.829338977578,0.462495520204984,22881.2358150382,132692.891905845,19797.1920454328,6304.83823102955,48964.1667549244,0.131390772785507,507.384348144669,13,14 +3039.8730699852,3575.65568922113,0.966142803348723,4713.70368166075,48358.1971571259,29817.0138893697,9495.86429597761,17844.3531945114,0.274472387314978,484.056221335223,3,14 +3993.6385175365,422.277927303404,0.482448570902263,5221.32697540086,129029.765543615,37044.1147993032,11797.488789587,47612.45961019,0.137059253097234,635.929700244666,16,3 +3318.13626773793,4024.98298292352,0.754218804899088,12405.8652690189,90488.4785421064,36544.1751438178,11638.2723387955,33390.5824878621,0.214266705937241,528.36564772897,6,2 +1919.85975756749,3593.84011603148,0.324526744994902,17063.5537315503,75579.9945734464,40218.1874605193,12808.3399555794,27889.2968905706,0.092195098009915,305.7101524789,10,8 +1060.17086197205,1620.8555905398,0.623147326965179,3959.28292301994,36184.2083594022,34430.5006946944,10965.1276097753,13352.1064056835,0.177030490615108,168.817016237588,18,9 +3335.41594663204,2479.43982254614,0.620440486606046,1475.5740937717,21641.4333771025,19888.5688951223,6333.93913857398,7985.76877383856,0.176261501876718,531.117188954146,12,24 +1887.53582489369,1338.05767526756,0.346377091485318,6452.2991983424,231676.426871903,13509.2127272032,4302.29704688,85489.4564102963,0.098402582808329,300.56302944167,6,19 +3796.37224956515,3062.51920668657,0.537746338713181,7559.51487706389,173937.366730153,13996.7921735648,4457.57712533911,64183.5301587281,0.152768846225336,604.517874134578,4,5 +2733.0319361188,2605.67299036893,0.820005036982106,1104.7168356126,124490.238642572,16378.060432274,5215.94281282611,45937.3574326834,0.232955976415371,435.196168171783,13,24 +1308.33094347464,2606.17630921875,0.155436837331985,13438.65898,98105.3777421433,16156.0527505687,5145.23972948048,36201.2463993149,0.044158192423859,208.332952782586,6,14 +1535.55024433317,2823.61723030081,0.879060785301776,20958.0820242326,277747.376786762,41195.3102872905,13119.5255692008,102489.806932385,0.24973317764255,244.514370116747,9,10 +2824.71788411641,1849.80375756624,0.382653028674531,17501.5251136041,4954.23126991637,28959.0044659316,9222.61288723936,1828.12961989534,0.108708246782537,449.795841419811,2,3 +2291.82876510497,3237.67768332799,0.329011783220674,2104.16688718024,195148.654471272,41556.6751571805,13234.609922669,72010.5736056354,0.093469256596782,364.940886163212,10,12 +3626.04198524596,1487.41342155591,0.475487269458866,17431.3630299013,228795.043955348,6117.87542287005,1948.36796906689,84426.2154816782,0.135081610641723,577.395220580567,3,16 +2747.34224352131,2758.17892728987,0.705832006967391,18759.4943629436,163599.474082685,18570.6724935244,5914.22690876573,60368.809624607,0.200520456524827,437.47487954161,18,19 +892.088511963477,1368.25749417524,0.875708488990215,3229.25872026915,65121.0105344021,6190.35702515713,1971.45128189718,24029.8931861262,0.248780820735857,142.05231082221,6,20 +28.6626903181536,3841.35759849871,0.299217647166205,14541.0887754251,272549.079722171,39396.2167764595,12546.5658523756,100571.616133642,0.08500501339949,4.56412266212637,14,25 +2289.23857229433,3716.05509553326,0.38652108924105,20791.7118414428,112703.356690273,7027.04856020479,2237.91355420535,41587.9544982557,0.109807127625298,364.528435078715,4,13 +1556.38574755815,542.428683648301,0.865447484769604,18962.5968618023,273204.171876634,15147.8843625061,4824.16699442869,100813.347555954,0.245865762718637,247.832125407349,18,0 +377.549469008203,798.957757360701,0.716427560421766,10540.9521585558,89789.4796110573,18594.7800331333,5921.90446915073,33132.6493029732,0.203530556938002,60.1193421987584,18,11 +3695.92930398101,3929.13749785967,0.110437736705156,1412.51944125423,26879.3617433118,33670.0045959648,10722.9313999888,9918.58366911875,0.03137435701851,588.523774519269,12,9 +354.767785799904,710.165439959511,0.680976756448747,24512.8635506788,164951.53354786,23340.1792488629,7433.17810473341,60867.7245564059,0.193459305809303,56.4916856369274,11,22 +3826.8125617696,2792.52093257795,0.291958779093934,14297.7241146351,103838.728631534,11261.5911120304,3586.49398472306,38316.8740337764,0.082942834969868,609.365057606624,11,13 +842.977531284768,2355.17913049426,0.434313867981733,24452.7536588666,205408.782219272,30106.671454168,9588.11192807898,75796.5986048974,0.12338462158572,134.232090968912,9,13 +3006.10487175571,39.4732451977776,0.34224742430811,9297.28965740681,185404.078633818,38142.4782362105,12147.2860624874,68414.7891637705,0.097229381905713,478.679119706323,14,21 +2283.94522504826,2052.39527455941,0.309719239414128,19279.0453522945,207387.426118324,28719.9419539456,9146.47832928204,76526.7255049166,0.087988420288105,363.68554538985,6,8 +3964.37452973071,2748.17831701782,0.023229961830851,8498.34872078876,37139.0709870952,12899.130261534,4108.00326800446,13704.4542387805,0.006599420974674,631.269829574954,3,3 +2563.71249821589,958.298789393261,0.567059911102326,1705.77290240433,91635.7857985657,33917.5940745097,10801.7815523916,33813.9430991017,0.16109656565407,408.234474238199,8,4 +3671.33053293648,1504.22698606968,0.590194085824472,14201.0147914966,178447.940642734,25734.2790453011,8195.63026920417,65847.9485766546,0.167668774381952,584.606772760586,13,16 +977.884509883796,494.061137788298,0.190790855375663,5602.0922959228,102812.035102995,22776.7506756272,7253.74225338446,37938.0203332085,0.054201947549904,155.714093930541,3,19 +2385.36378370635,2309.37803464356,0.817186916952239,19722.1464505224,170380.950934061,32808.7580288214,10448.6490537648,62871.1996066646,0.232155374134159,379.83499740547,3,6 +1863.66087213641,187.232052167854,0.261343287546787,19729.0743353773,182861.327869334,32188.0529667299,10250.9722823981,67476.5047488317,0.074245252143974,296.76128537204,19,25 +3729.9565781256,367.95715525674,0.133013652000866,20304.0216810958,271444.323208797,33737.7981782981,10744.5217128338,100163.956903615,0.037787969318428,593.942130274777,10,8 +1323.54590404966,653.192835364306,0.900971348138378,4124.77950897413,288594.008774223,43630.9532293417,13895.2080348222,106492.25416023,0.255957769357494,210.75571720536,17,3 +2401.58910304671,2270.94257817875,0.115651753485369,22799.7085413942,63942.3872879759,32641.6491900433,10395.4296783577,23594.9768590317,0.032855611785616,382.41864698196,1,23 +1832.47843081726,1881.61063793654,0.468943014167378,3590.49946122309,85006.7591545245,28119.1229105761,8955.13468489685,31367.8078060976,0.133222447206642,291.795928474086,0,4 +1229.09250688594,1250.10473242949,0.990134991337005,15679.1403391905,118342.854913313,20081.2149041306,6395.29137074223,43668.950152514,0.281288349811649,195.715367338526,18,5 +3866.13243763904,669.327256967127,0.270833763051076,11562.7099714433,116552.649942736,6815.35180463179,2170.49420529675,43008.3579124487,0.076941409957692,615.626184337427,7,24 +324.358068498618,786.709466902692,0.807798259971288,16283.0095345348,23668.4923044204,15960.386664773,5082.92568941815,8733.76099794111,0.229488142037298,51.6493739647481,8,2 +19.6731091080134,2032.25283834078,0.1546543027997,18631.5757860713,107178.529990369,2369.9045754009,754.746680063981,39549.2730591768,0.043935881477188,3.13266068598939,10,6 +3950.34532538804,3750.26909933808,0.34752123574497,22219.9991630909,259933.586257537,17614.5267196143,5609.72188522748,95916.4524935561,0.098727623791185,629.03587983886,6,25 +826.423901957436,3618.72791246214,0.992123476000852,11338.0024445139,163144.535264556,33149.4830650419,10557.1602117968,60200.9355219764,0.281853260227515,131.596162732076,12,20 +45.4201229919148,1119.46147407345,0.879868729323109,18995.2287690634,96925.0134201862,30558.6524590229,9732.0549232557,35765.6876089248,0.249962707194065,7.23250366113293,2,13 +1302.96199423092,3476.6893874899,0.767461626463877,21589.2093553301,151536.121034938,38828.8901852603,12365.8885940319,55917.3878357705,0.21802887115451,207.478024559064,16,17 +1532.63778221723,3774.63088237135,0.118168581745056,3996.00951878557,72236.9937219821,32984.7818637114,10504.7075999081,26655.7172405838,0.033570619813936,244.05060226389,4,9 +682.999930074262,2112.99774718065,0.945243134098881,1688.75594392059,131137.604183493,42156.7496848609,13425.7164601468,48390.2598463074,0.268534981278091,108.757950648768,7,13 +1766.54274561622,3661.42716551777,0.627124696459453,17983.7346928721,212454.557578435,32198.4297698513,10254.2769967679,78396.5157115996,0.178160425130526,281.296615543984,0,25 +150.870499580968,1549.36278051099,0.122304279132339,23812.9984080898,278046.727479276,7109.70421545534,2264.23701129151,102600.268442537,0.034745533844415,24.023964901428,8,2 +2470.94619843377,313.550850021898,0.030995350746971,16137.7975581075,123840.866322329,17462.1549240833,5561.19583569532,45697.7366503059,0.008805497371299,393.462770451237,14,15 +2178.59569897009,3482.97307693952,0.137231922068118,24207.0117881997,9424.28624912342,4731.18707927486,1506.74747747607,3477.59640189056,0.038986341496625,346.910143148103,4,22 +2966.63227455473,2170.0046182846,0.728449177847522,744.246640302707,27703.2329271921,39079.1804800665,12445.5988790021,10222.5951760856,0.206945789161228,472.393674292155,11,0 +1155.4406615858,1402.31301150159,0.398268144432218,4153.68379183703,285633.662759771,10890.9005052808,3468.43965136331,105399.875557111,0.113144359213698,183.987366494554,18,11 +788.63998237258,2225.38569055219,0.5171101508529,19672.9702259356,104556.895324524,38306.5630526587,12199.5423734582,38581.8801935513,0.146906292855938,125.579615027481,18,19 +2075.21433470043,3764.9646695283,0.344212529125942,13892.3059471918,209269.040729857,33715.9757798125,10737.5719043989,77221.0482397996,0.09778765031987,330.448142468221,10,0 +1941.64032503616,613.576730259883,0.171655730043923,9312.85397512315,16613.3713451333,22616.3868753176,7202.67097940051,6130.39533030749,0.048765832398842,309.178395706395,13,4 +3949.41525893705,1744.99222412402,0.332446812811537,18232.9395864375,54638.9767824378,9320.39856972584,2968.27979927575,20161.9840525601,0.094445117276005,628.887780085518,8,18 +1539.03356709062,3487.46579438883,0.553113408538914,14632.1122303934,275455.109324676,11251.7389718521,3583.35636046245,101643.951780323,0.157134491062191,245.06903934564,17,13 +2791.72993079282,3526.10142412148,0.211637835029939,22586.2049617714,105948.097961013,1855.65464562747,590.972817078812,39095.2391000048,0.060124384951687,444.542982610322,18,24 +438.65468207507,1694.20069330859,0.498360367431636,10969.72454652,125251.482499086,32112.9509097096,10227.0544298438,46218.259224755,0.141579649838533,69.8494716680048,6,5 +1192.28854687948,489.70562498765,0.179322640414826,12968.9131262498,130918.445346761,29111.2603505893,9271.10202248067,48309.3894268491,0.05094393193603,189.854864152783,13,0 +199.045626516515,1331.27065946892,0.727117510907808,12606.2014226843,158798.216528978,25277.3487630861,8050.11107104653,58597.1278704716,0.206567474689718,31.6951634580438,10,16 +1178.43336414349,963.757901203796,0.510345451049439,6632.5328725872,224388.838720992,32743.9884813544,10428.0218093485,82800.309491141,0.144984503139045,187.648624863613,6,9 +2556.95176289036,1793.91816819457,0.335691886086546,22970.8100769081,188113.565622074,5131.95476028266,1634.38049690531,69414.5998605439,0.095367013092769,407.157924027127,13,7 +1176.95873796036,2302.32664246626,0.523895096198983,8904.47612805221,166666.012633997,14680.2726887217,4675.24607921073,61500.3736656816,0.148833834147438,187.413811777127,10,8 +3862.93979594868,3733.24867641834,0.27292146077413,2251.48714606877,197204.069849136,8728.93650880359,2779.91608560624,72769.0294646258,0.077534505901742,615.117801902656,15,11 +2682.56374510666,2900.6101237866,0.964412628226471,5951.88269208776,49988.2960466071,7181.68250068605,2287.16003206562,18445.865699855,0.273980860291611,427.159832023354,18,4 +27.4317826221632,3962.78496620681,0.414010480126104,23891.9438070646,76322.6609743099,38278.4907909927,12190.6021627365,28163.3435329557,0.117616613672189,4.36811825193682,3,18 +940.41724260908,899.406262097881,0.030558495140706,4540.60795689128,17777.6841561963,42822.6984920391,13637.8020675284,6560.03105394697,0.008681390664973,149.747968568325,7,22 +1350.26441293049,1992.47891505796,0.05773993539218,5277.23282958402,207761.37438325,13945.1865129807,4441.14220158621,76664.7137945572,0.016403390736415,215.010256836065,3,5 +2047.52185873934,3557.76849692876,0.426588407121236,6651.35785185272,252687.742309575,35076.0601292566,11170.7197863875,93242.7093393266,0.121189888386715,326.038512538111,17,5 +2166.38881758161,1952.76753814671,0.811373116981275,23914.8650052452,170330.67104477,3996.94433087176,1272.912207284,62852.6461419815,0.230503726415135,344.966372226371,16,17 +3980.89542144827,750.76091081216,0.214021280281546,3951.83979323563,121180.320661247,31728.4241183907,10104.5936682773,44715.985483855,0.060801500079985,633.900544816604,7,6 +3675.09099625462,491.253024487576,0.811901056207041,16006.9901377534,194399.650037773,8449.7951091682,2691.01755069051,71734.1882058203,0.230653709149728,585.20557265201,6,25 +3408.71418548768,1959.95113515146,0.599094291615977,319.378892241263,247493.06167594,15791.9915585773,5029.29667470615,91325.853016952,0.170197241936357,542.78888303944,14,20 +3225.95076083063,1931.81616503142,0.309236423251506,307.41104771317,263309.457444544,14479.5368839064,4611.31747895108,97162.1614186509,0.087851256605542,513.686426883858,17,8 +1021.28146141382,3323.02218477948,0.379065659317364,4976.34346434672,7701.44329973213,39569.9695318527,12601.9011247939,2841.86099621112,0.107689107760615,162.624436530863,9,16 +1540.285260814,192.404277758557,0.434448440346587,12811.5011637571,248907.27986445,29267.8248676601,9320.96333364971,91847.7047470295,0.123422852371189,245.268353632803,2,20 +663.866236754807,923.729695805912,0.959113048986667,10499.4451504764,253732.885872834,7856.50003005666,2502.07007326645,93628.3711707875,0.272475298007576,105.711184196625,4,17 +2151.44055108909,790.986104875596,0.992311421058822,18099.7868347206,37859.8191002719,16989.5404959149,5410.6816865971,13970.4129521299,0.281906653709893,342.586075014186,8,7 +3556.80749876024,1318.73088371797,0.937658228302589,18890.3026206317,252304.065124118,25875.3885209205,8240.56959264984,93101.13104211,0.266380178495054,566.370620821694,14,18 +983.023875763275,3206.20715791785,0.236790138380747,11189.2494768848,246501.436421735,25805.9772376881,8218.4640884357,90959.9396390166,0.067269925676349,156.532464293515,3,5 +3396.75240353652,150.216311267619,0.310459150250218,9366.19393112424,8160.29212771543,20264.5887537498,6453.69068590758,3011.17790690606,0.088198622230176,540.884140690529,13,9 +904.606168651385,2441.8430831527,0.107418032437549,24304.2099472023,39903.2395910341,2271.92501680421,723.542998982232,14724.4426535181,0.03051648648794,144.04556825659,16,7 +767.97523122071,3567.90223114118,0.001138197923924,14819.6415010266,182154.096445902,33707.1973045796,10734.7762116496,67215.5337438753,0.000323351682933,122.289049557438,1,23 +3437.77589703627,2474.6719172076,0.4475434136774,19202.1148386729,18083.2910353742,26883.3893908686,8561.58897798363,6672.80112006428,0.127143015249261,547.416544114056,18,16 +892.085698292358,3914.27745532887,0.441010844924616,22226.2828613208,57250.1010614772,16464.6337879468,5243.51394520599,21125.4985466706,0.125287171853584,142.051862785407,6,20 +16.2328822335928,2551.34961112134,0.964625732408027,5305.74526377728,47592.9234458227,14535.6387255009,4629.18430748436,17561.9643711523,0.27404140125228,2.58485385885236,11,11 +2213.31237984673,1265.5818719721,0.632802777348434,371.02648955895,12552.5546076672,9795.00071945792,3119.42698071908,4631.93896961889,0.179773516292169,352.438277045658,2,15 +3064.12713084221,3133.36237887048,0.376462296306361,20670.136477234,279601.05228769,25628.3659624379,8161.89998803755,103173.820032358,0.106949515996125,487.918332936658,18,23 +424.386796288824,1072.40873912844,0.771245031556676,20852.4846546532,99615.645802055,7647.43002823408,2435.48727013824,36758.5408863672,0.219103702146783,67.5775153326153,1,22 +2999.27326187607,3948.33461951982,0.413472049840905,10796.5018383175,132162.815791974,13505.4368434287,4301.09453612379,48768.5667129055,0.117463650522984,477.591283738228,10,19 +877.673574396525,3793.3858432677,0.196647287434502,16057.5597982372,206894.741353293,2216.73755322896,705.967373639796,76344.9230085952,0.055865706657529,139.756938598173,14,11 +1577.86065719855,127.353866128998,0.535756456214909,22476.4237472622,37543.5551027309,22446.8343721588,7148.67336692955,13853.7103700114,0.152203538697417,251.251697006139,3,23 +1048.64299868019,3660.89195073935,0.513150936486881,3228.68223289882,204568.678855228,11235.3523884702,3578.13770333446,75486.5973635528,0.145781516047409,166.981369216591,13,25 +3377.41071717631,3443.24836959565,0.20933117693135,19907.6545576391,236255.24421002,9285.47371568104,2957.15723429333,87179.0569040664,0.059469084355497,537.804254327438,7,21 +3408.8427162493,62.4694976055279,0.448913192044661,2739.12824903167,103780.641019331,1923.15526046178,612.469828172541,38295.439490528,0.12753215683087,542.809349721226,6,0 +3328.5559748964,2262.16439810825,0.041136951630566,10509.6217939062,171523.17730907,17757.7282106635,5655.32745562532,63292.6853539004,0.011686633985956,530.024836766943,7,7 +2403.32094406038,251.297648030081,0.219370438634263,5390.85523149529,155269.509049385,19185.542172581,6110.04527789204,57295.021789441,0.062321147339279,382.69441784401,10,24 +1910.0814394263,3624.2235837229,0.207520671943906,16654.5362081978,287645.959143246,17812.9688726139,5672.92002312545,106142.420348061,0.058954736347701,304.153095450048,13,6 +3564.01719639413,1743.69682478595,0.56744679391951,17392.6068694777,49694.0066270933,44306.3561475549,14110.3045055907,18337.2718181156,0.161206475545315,567.518661846199,8,21 +3086.00964377563,2225.23037721959,0.427790644490127,13754.7259856646,267962.571481467,32519.6397275056,10356.573161626,98879.177668438,0.121531433093786,491.402809518412,10,5 +927.004653084279,93.1795765281113,0.106390975309429,22325.3879657479,224671.905531121,25899.3296102697,8248.19414339799,82904.7621886055,0.030224708894724,147.61220590514,8,20 +1919.59654066676,1514.24059065031,0.750247919863507,8649.58316102238,250422.037968457,5514.52133001831,1756.21698408226,92406.6560769214,0.213138613597587,305.668238959675,6,2 +1807.0332705376,3106.98159297702,0.048563309644252,10566.7442379022,180452.449885267,26608.2037604063,8473.95024216761,66587.6198838624,0.013796394785299,287.74415135949,19,21 +1777.28676037814,3808.99660805016,0.217485410235106,1462.16928607443,28328.7734948621,11094.501599839,3533.28076427994,10453.4219538237,0.061785627907701,283.007445920086,6,8 +779.869021612894,3297.25803997287,0.761622272227518,9213.99369969631,220271.478450148,19734.2744770393,6284.80078886602,81280.9883579882,0.216369963700999,124.182965224983,2,5 +3516.09336919747,447.652629966412,0.093877797811347,20588.8099641447,213499.401481838,27448.1373440888,8741.44501404102,78782.0669674679,0.026669828923678,559.887479171572,17,17 +729.881459292858,1573.04544201836,0.350642621334336,18909.8968541887,152568.873031579,41087.9585297965,13085.3371114002,56298.477133424,0.099614381060891,116.22316230778,10,5 +3089.48337090045,2078.73410103436,0.20089880450179,9105.82713036886,36103.3868939219,1765.27169577294,562.188438144248,13322.282986687,0.05707352400619,491.955950780326,13,18 +61.4383845941656,450.680492907468,0.006735679958995,4671.54878752525,43531.9067957148,42616.7125694085,13572.2014552256,16063.4342419612,0.001913545442896,9.78318226021745,19,18 +2379.97137044693,3977.45681320615,0.690523609920071,3273.57997127005,257674.575726257,4139.17330925763,1318.20806027313,95082.8692716816,0.196171480090929,378.976332873715,16,13 +54.1579385796015,520.116900281369,0.208529548941319,19677.9280234433,20292.793238138,16503.1756157085,5255.78841264602,7488.11558602878,0.059241349131057,8.62387557000024,8,17 +506.830478232073,2785.14943577853,0.032251322154775,5535.97376286395,39198.7054651435,10970.710902889,3493.85697544236,14464.4669613076,0.009162307430334,80.7054901643428,4,1 +2390.14571752893,3535.23508204675,0.32062570230932,20186.1617852924,61645.0885749267,9491.68790857655,3022.83054413266,22747.2651567995,0.091086847246966,380.596451835817,16,0 +1064.73701026428,2245.69197419697,0.479970301946743,10545.2894606856,226613.195257757,7463.57964008717,2376.93619111056,83621.105261165,0.136355199416688,169.544109914694,10,17 +2412.52027602079,2812.17321470619,0.439530019178312,8496.32246576688,71004.9653434507,33991.6894874263,10825.3788176517,26201.0942226755,0.124866482721111,384.159279621145,16,17 +1373.07754217105,620.799364314308,0.419790472187185,20126.1647952169,214662.694884899,11208.7887911422,3569.67795896248,79211.326525793,0.119258656871359,218.642920727874,10,21 +434.318387959283,3262.28455610633,0.360895490638917,3867.18898512184,211951.894063692,44879.6331982879,14292.8768147414,78211.0310198125,0.10252712802242,69.1589789744081,15,4 +2103.70274225819,3991.6609339312,0.944939975571262,2365.47141550451,188957.611413724,30542.1340249708,9726.79427546841,69726.0558722229,0.268448856696381,334.984513098438,3,2 +2511.95291314974,3980.42791088794,0.687784873253549,9935.39534628043,115397.290787718,15404.2760478124,4905.82039739248,42582.0261209292,0.195393429901576,399.992502093908,7,6 +115.688891140252,3.22842062530713,0.363323454814496,17542.1272666003,117936.015013678,15450.0831682896,4920.40865232153,43518.8247282945,0.1032168905723,18.4217979522694,18,20 +2350.12924969791,2180.27080349596,0.578877850690183,13636.4987818587,273096.140099975,30338.7082324224,9662.00899121732,100773.483431725,0.164453934855166,374.224402818139,1,11 +2266.51338777815,1130.98140876093,0.101289005252028,12177.269067989,271758.118051007,42703.1035443821,13599.7145045803,100279.748358305,0.028775285582963,360.909775123909,1,10 +739.640663890111,3834.49117799043,0.187648135829088,1242.38815784609,221092.070236163,22422.0694722613,7140.78645613417,81583.7897550417,0.0533091294969,117.77717577868,18,9 +1987.43732764581,620.850817510592,0.693768331742128,11396.2808411054,278953.12230921,43348.0424162733,13805.1090497686,102934.731479413,0.197093276063105,316.470912045511,0,23 +2604.82585782741,1127.75502898165,0.055187865915629,2643.5839734225,165188.810773681,22551.3271106582,7181.95130912681,60955.2807282956,0.015678370998758,414.781187552135,5,10 +3066.21720027058,2519.46967404528,0.093914950535017,10869.3234737432,170511.853546027,32714.0293362481,10418.4806803338,62919.5031535155,0.026680383674721,488.251146539901,7,13 +3993.80730324082,905.467768728749,0.829459345469927,8935.95272498691,276202.613697925,21629.6968002308,6888.43847141108,101919.783652371,0.235641859508502,635.956576949175,17,11 +694.323802032623,1737.76066335598,0.300404366446761,12727.0139133839,5120.47811494401,32635.2453125006,10393.390226911,1889.47531916753,0.085342149558739,110.561114973348,4,9 +1158.41019224691,3007.48357023057,0.977408725634794,14170.1714821537,200827.153095597,10073.9454799855,3208.26289171513,74105.9605518808,0.277672933418976,184.460221695368,2,23 +3701.75589510433,82.5507968882546,0.654697707233541,20280.4468083223,98307.1279207943,13179.7144489347,4197.36128946965,36275.6929597027,0.185993666827711,589.451575653556,10,16 +794.748802900489,637.585790850299,0.133754339767188,19603.8911189651,222306.15016959,31254.6780906207,9953.71913714035,82031.789730476,0.037998391979315,126.552357149759,16,25 +2333.09862292491,3498.20929586508,0.496996230216151,1605.28915986099,175983.715583789,35562.928222543,11325.7733192812,64938.6404368225,0.141192110856861,371.51251957403,17,1 +932.710408843746,3490.77543447362,0.737260776626368,22657.1849732709,241470.323205726,20658.6780906873,6579.19684416793,89103.4402973159,0.209449084268855,148.52076573945,12,9 +1210.16924282608,1402.43045047911,0.96459535393563,21780.1766348282,77143.3727253004,11959.1345530035,3808.64157738965,28466.1891975278,0.27403277100444,192.702108730268,5,6 +275.251790591008,2103.35339235307,0.393554221786346,18093.4341750855,247770.159333555,22514.5471008128,7170.23793019516,91428.1030751125,0.111805176643848,43.8299029603516,6,7 +2630.27670863919,3119.28248736003,0.18156945358873,12057.1951039099,141553.704116981,30712.8575593862,9781.16482783,52233.8391575576,0.051582231133162,418.833870802419,17,22 +2690.22161659308,3842.48694683115,0.2325229070483,9001.15695821724,47113.6597199519,23938.9079777684,7623.85604387529,17385.1142878051,0.066057644047813,428.379238311,7,10 +106.926493602086,2885.61596887465,0.024614962789514,22624.0450434974,144277.181477349,42441.4307379532,13516.3792159087,53238.8123532653,0.006992887156112,17.0265117200774,5,6 +300.493492071371,3986.42392665552,0.302347084005679,13772.4812423106,31216.7292333615,1426.22425907528,454.211547476204,11519.0882779932,0.085894057956159,47.8492821769699,0,5 +2250.20168243714,2680.09789583029,0.295641524324504,9377.2702251688,70161.3054530683,20317.2801994027,6470.47140108366,25889.7806099883,0.083989069410371,358.312369814831,17,8 +2472.29808428745,853.669820270144,0.252914712474456,11366.8346223896,43698.8589659684,16768.1787389931,5340.18431178124,16125.0402088444,0.071850770589334,393.678038899275,3,17 +2969.45871650494,2949.07762283202,0.809029028891915,16098.1750893916,124133.889517932,40823.580857046,13001.1404003331,45805.8632907498,0.229837792298839,472.843744666392,14,2 +2754.73407025566,4.36829003004966,0.305540478666105,21831.4501454426,90858.1025848823,37533.8867868335,11953.4671295648,33526.9751235728,0.086801272348325,438.651922015232,14,1 +289.376765641789,143.975188247719,0.932637053710868,22979.0207398747,262053.047694648,11312.5537386997,3602.724120605,96698.541584741,0.264953708440588,46.0791028092021,9,2 +651.306675723297,1627.28794231586,0.36913752861776,13646.8603849789,174991.560418304,39416.8175780695,12553.1266172196,64572.5315196694,0.104868616084591,103.711254096066,3,1 +928.351424889084,576.65270583021,0.839576736156332,2324.8972245956,32298.9623917169,28880.8590743516,9197.7258198572,11918.4363069066,0.238516118226231,147.826660014185,6,5 +3006.11258711149,1003.68114515399,0.23078109086177,4950.64074274216,137654.35320977,15498.5782849905,4935.85295700335,50794.964284048,0.065562809903912,478.680348266161,7,13 +3479.81766484376,69.9049287819886,0.254880756927013,19523.9129195123,89481.8492804778,31941.0177797106,10172.2986559588,33019.1325758221,0.072409305945174,554.111093127987,16,24 +2465.56227982897,160.978600882741,0.935582277588917,18458.8376768366,13882.4183966958,9682.89504694086,3083.72453724231,5122.6636150169,0.265790419769579,392.605458571492,3,7 +2166.67116001907,88.5738389147158,0.222033516764178,5869.50014445898,90561.8569607496,26386.1667481855,8403.23781789347,33417.6593951106,0.063077703626187,345.011331213228,11,17 +276.982489617096,1627.25025440899,0.711641304199125,4849.60337462505,28777.5472353562,37451.4906434538,11927.2263195713,10619.0211200576,0.20217082505657,44.1054919772446,12,8 +2644.90385729556,2142.86192282723,0.929696241732665,13015.0383137059,18766.5345475225,26887.0921302072,8562.7681943335,6924.92049724078,0.264118250492234,421.163034601204,9,17 +3514.20594231877,3380.33511203454,0.24253095112708,23708.2264933732,137705.170168901,42841.8356276457,13643.8966967025,50813.7159294838,0.068900838388375,559.58693349025,19,25 +1243.95295061161,1087.633193683,0.623374779508294,9102.63583554591,119714.122244624,40026.0529109378,12747.1506085789,44174.9528577948,0.177095107814856,198.081680033696,7,6 +3706.91077631055,1619.58155837161,0.653489002592901,23533.3181711444,276573.566205066,30388.9315539822,9678.00367961216,102056.666496334,0.185650284827529,590.27241660996,9,3 +2788.50217203423,1318.02527161896,0.84692198307209,16624.5566364482,105367.016860578,27826.1599128097,8861.83436713685,38880.8180297336,0.240602836100026,444.029008285705,2,14 +2913.47552291453,1008.92347062653,0.324050444830148,10886.300099752,260751.995065053,8006.03021071482,2549.69114990918,96218.4483634882,0.09205978546311,463.929223394033,3,20 +3872.56847647687,1898.78681676908,0.489691350484158,18539.0410645561,90839.349557051,30323.356390377,9657.11986954682,33520.0551871037,0.139116860932999,616.651031286126,8,21 +206.346455061793,3850.09351864974,0.439209011768762,5055.64770202847,234408.364554138,598.086647468529,190.473454607812,86497.5514959919,0.124775287434307,32.8577157741709,9,24 +3272.11186218944,2421.25254844568,0.869244433043179,1483.64955032663,47837.1688993603,13632.4492718693,4341.5443540985,17652.0918447824,0.246944441205449,521.036920730803,5,6 +1337.97180828761,2462.28241696654,0.897612766836034,13048.7941959176,167372.95711346,23659.1316052618,7534.75528829994,61761.2387872546,0.255003626942055,213.052835714588,17,3 +460.055355149323,3993.56835044865,0.940871226599326,461.128591376645,121411.662205793,4405.36995184753,1402.98406109794,44801.3513674513,0.267292962102081,73.2572221575355,11,15 +1351.0788467383,225.249630721954,0.257570437227763,1241.49638514444,246056.344954448,36187.304646279,11524.6193141016,90795.6992451838,0.073173419666978,215.139943748137,4,24 +1247.66338579679,3449.66289108764,0.859760741307044,17638.0376363694,27420.0249337299,37257.7988589888,11865.5410378945,10118.0903814501,0.244250210598592,198.672513661909,9,23 +3966.94028904484,1691.44372853005,0.375364822849143,1141.22300514575,134100.911144981,27972.3785144438,8908.40080077828,49483.7310498085,0.106637733763961,631.678389975293,5,13 +3047.50869251314,2153.00999372313,0.76935526243693,16981.823174266,280313.58842065,16640.4667274435,5299.51169663806,103436.748494705,0.218566835919582,485.272084795086,17,12 +2183.0637160604,3390.288888738,0.25462481167695,12473.1602639902,237274.547150234,4648.99117825031,1480.57043893322,87555.1834502708,0.072336594226406,347.621610837643,18,15 +869.881643919377,582.939191888794,0.530413415092743,20103.0311743069,109738.300085483,27060.5328596241,8618.00409542169,40493.8376699199,0.150685629287711,138.51618533748,11,20 +2021.25980829344,2169.01940650697,0.373264545479128,18371.4870393983,130568.885298133,40570.2100870806,12920.4490723187,48180.4004790159,0.10604106405657,321.856657371567,9,9 +3755.62473729699,160.50226887931,0.067185034774364,12428.7469161188,164696.354427286,38018.4534260319,12107.7877152968,60773.5625192937,0.019086657606354,598.029416767037,6,11 +2882.42703249357,1604.43806856343,0.686071529594827,2228.41251536593,49505.8843616682,15190.7220893529,4837.80958259646,18267.8540079956,0.194906684543985,458.985196256938,6,16 +2524.97117959601,3555.68461213942,0.902674407667897,21347.2310122132,237724.808862052,43317.8176443183,13795.483326216,87721.331683414,0.256441593087471,402.065474457963,12,24 +153.348977612419,1418.30803821696,0.063580077466459,15884.9706580028,3298.6495867398,34919.2326312139,11120.7747233165,1217.21386964568,0.018062522007517,24.418627008347,15,6 +2910.67771275674,3203.17880493823,0.048316390445236,16239.7567729624,34825.6917963326,3767.91128639974,1199.97174726106,12850.8087809345,0.013726247285578,463.483712222411,7,9 +1390.72529811924,1892.85262303707,0.899462257926294,19080.6059594373,286121.286603149,35011.8321297488,11150.2650094741,105579.810554668,0.255529050547243,221.453072948924,13,23 +2054.00619967744,2255.68050690348,0.744790743619605,10726.7580275523,64472.3373870669,2483.73263746763,790.997655244468,23790.5304011317,0.211588279437388,327.071050904051,2,2 +3025.63883510408,2140.27026203688,0.641455051945631,10712.5340396493,209356.099610912,1435.66843073856,457.21924545814,77253.1732881594,0.182231548848191,481.789623424217,8,9 +3379.64141736686,10.1231948293154,0.956625845289265,12612.2001112929,105716.040270043,3249.95264094261,1035.0167646314,39009.6089557354,0.271768706048087,538.15946136415,2,3 +3568.95546662609,1052.16422141472,0.256236694300933,7275.28196948157,271277.237542791,44759.8166198308,14254.7186687359,100102.301676307,0.072794515426402,568.30501060925,5,5 +2279.57340043358,409.249647178336,0.72798997342225,23596.5857933398,90921.5153766554,33444.68874832,10651.1747606115,33550.3746777326,0.206815333358594,362.9893949735,11,13 +2131.94655454305,426.893994204478,0.977030138240166,19135.9450435728,284976.04677675,8072.73179196991,2570.93369171016,105157.212832749,0.277565380181865,339.481935436791,8,8 +104.362224825732,449.656408383997,0.193086090065826,14632.2796531316,136918.673261529,34253.6024361788,10908.7905847703,50523.4956684609,0.05485400285961,16.6181886665178,4,3 +837.293297693432,2173.36845610279,0.194756443498073,8399.88426571754,64003.4871423146,23270.8087098783,7411.08557639436,23617.5229307434,0.05532853508468,133.326958231438,4,12 +2818.03194472126,933.583181860706,0.598399827913851,4505.82132605958,89327.7826625013,16980.2608552259,5407.72638701462,32962.2814252772,0.16999995111189,448.731201388736,15,5 +1920.66171149357,2133.73602806501,0.103104908262645,9106.51588514032,6744.93374090511,5726.20735771999,1823.63291647133,2488.90543944838,0.02929116712007,305.837852148658,3,18 +75.2403541509522,2346.4662952129,0.207338409911268,20187.8973946071,75338.9545151903,18384.8995735454,5855.06355845395,27800.3522196274,0.058902957361156,11.9809481132089,8,17 +1043.80693911568,614.158919948503,0.619841515288675,11128.7662320284,163351.35132764,28323.8606790081,9020.33779586245,60277.2514124133,0.176091339570646,166.211296037529,2,0 +453.81132027617,240.259613217205,0.178389149650766,23894.0282311486,282.142304607806,41476.0400878865,13208.9299642951,104.111551515796,0.05067873569624,72.2629490885621,14,20 +3148.44337753413,2850.6938534237,0.52993387120719,7459.71894423359,102796.669061267,16006.7079605933,5097.67769445647,37932.3502071096,0.150549395229315,501.344486868492,12,15 +2192.62849268668,3140.26367560274,0.233609855751005,4404.12910098634,137061.677231043,10379.2414313798,3305.49090171331,50576.2646609015,0.066366436292899,349.144664440554,10,9 +2034.02224903931,3172.76034810831,0.39583696038017,24520.6875883986,227975.989778973,17914.5927426964,5705.28431296064,84123.9814682557,0.112453681926185,323.888893159126,0,23 +1496.44298129967,278.096152924855,0.329166364235641,17209.9963197474,158627.898110594,38213.9700628671,12170.0541601488,58534.2797456066,0.093513171657853,238.287098933068,0,11 +2781.28747848444,960.483744676692,0.99252202025759,10553.3267785248,247439.499129812,10359.6323698934,3299.24597767306,91306.088239783,0.281966483027724,442.880171733191,16,13 +245.600567964946,784.50004021921,0.361108021709952,15079.4191688689,173388.923955337,15928.6556849884,5072.82028184344,63981.1527510469,0.1025875061676,39.1083706950551,5,0 +286.372684036304,216.560429680007,0.25234469713865,21331.0173092592,121604.903672956,7545.86918453301,2403.14305239905,44872.6581819026,0.071688834414389,45.6007458656535,8,2 +2120.85352375633,3793.07044181687,0.320091457956712,4299.47207298159,262600.413650264,16519.0434371917,5260.84185897825,96900.5216421638,0.090935073283157,337.715529260562,7,12 +3509.39825981612,1304.73838517398,0.848934646989163,2566.21235318605,105733.420190807,21412.7092477183,6819.3341553243,39016.0222106299,0.241174615621921,558.821378951611,10,9 +996.271451866947,3070.72962748599,0.853084329937306,12238.4732610473,57316.1477316876,35887.9325754981,11429.277890286,21149.8700116928,0.242353502823098,158.641950934227,19,15 +1886.4074071598,638.507191105865,0.135197189353335,17057.6533705113,124650.422634324,12269.6070513344,3907.51816921478,45996.4659167247,0.038408292429925,300.38334508914,2,23 +2777.83411849055,2600.35633167549,0.483878813046817,18568.4693615465,94561.758496387,22870.7221199431,7283.66946495003,34893.637821545,0.1374655718883,442.330273644992,16,13 +3699.6046468667,1709.4638034579,0.230213185124519,17443.6434603806,11726.7124936797,40942.8946322096,13039.1384179011,4327.20018216963,0.065401473046738,589.109020201704,2,3 +2897.77284804938,447.85942710776,0.610292227786995,21270.9964960396,10458.2571727913,256.411379162523,81.6596748925233,3859.13548811487,0.173378473803124,461.428797460092,14,25 +3302.33598627085,919.257832560433,0.632906094908847,20489.9208459078,224058.316477915,38980.9099434654,12414.3025297661,82678.3455638063,0.179802867871832,525.849679342492,3,14 +3153.72144519719,110.924609818416,0.040812244859106,21437.2189967943,64150.2376019061,11764.567636791,3746.67759133471,23671.6743918473,0.011594387744064,502.184943502737,3,23 +2215.82761325427,3599.82092525935,0.662761491432456,10565.5894055076,97445.6955172585,28439.6331711877,9057.20801630181,35957.8212240806,0.188284514611493,352.83879191947,7,11 +1538.88438137096,3462.04082657172,0.282186646714186,11835.1385767088,280314.656324984,14460.755109755,4605.33602221497,103437.142555345,0.080166660998348,245.045283657796,15,12 +3337.84716296205,3443.88194304536,0.663800233346792,9397.31792255761,288525.967679617,31770.0573486811,10117.8526588156,106467.146745246,0.188579611746248,531.504325312428,13,14 +847.158701131764,2468.88132338791,0.106787198511957,24775.4684949019,12914.6244492136,31383.1948633402,9994.64804564975,4765.54407720059,0.030337272304533,134.897882345822,1,10 +385.182236237836,606.075899616462,0.429621237743962,14981.6657246234,287081.421943995,41516.7563584752,13221.8969294507,105934.104038375,0.122051487995444,61.334750993286,2,20 +1111.77819890774,2623.72164781481,0.473280128567469,18442.8461142064,191962.725786017,17469.4099260261,5563.50634586818,70834.9541645819,0.134454581979395,177.034745049003,7,4 +2225.42656344282,3664.89060944116,0.397311056254939,19431.8194364676,136823.345548419,16077.6867541289,5120.28240577353,50488.3193905605,0.112872459163335,354.367287172424,3,21 +3690.84162250523,2859.3570289166,0.253467890639969,14249.8646519047,117733.118579353,43750.3918997703,13933.2458279523,43443.9551953332,0.072007923477264,587.713634156884,3,8 +3981.41210688958,1721.33879755939,0.108151305238747,11856.3019374094,116435.939464711,11133.9635242045,3545.84825611608,42965.2913153915,0.030724802624644,633.982819568405,8,21 +2187.87246530925,2570.86467542534,0.886041448961756,12224.0646985961,3078.19290757483,26642.0509945193,8484.72961608895,1135.86454154053,0.251716320727772,348.387335240326,12,9 +330.300543818652,3028.48397835157,0.152089317577421,4605.40545378548,205613.372040265,43883.2140558337,13975.545877654,75872.0930037878,0.043207192493586,52.5956279966006,5,15 +1773.08415074009,3404.17451292094,0.512902966484021,15468.016556805,79701.3490704126,24957.5708818541,7948.2709814822,29410.0919079013,0.14571107002387,282.338240563709,4,25 +2569.02992720833,1651.06636868624,0.091463219128215,22533.2602723521,119090.584723777,12839.341145928,4088.96214838471,43944.8652117258,0.025983869070516,409.081198600053,12,2 +2092.1880739952,3291.57223809533,0.374263398058497,8108.43514074428,223390.104583156,44798.4070645892,14267.0086192959,82431.7729089137,0.106324828993891,333.150967196688,16,0 +3441.42581710477,3814.42901032023,0.098466609714452,10409.1524236786,137073.769250961,8843.22529347492,2816.31378773087,50580.7266608712,0.027973468668879,547.997741577193,16,23 +2107.8433934338,701.63283194159,0.412117113183125,1590.78606457962,157503.782414282,20003.2923991584,6370.47528635618,58119.4769056391,0.117078725336115,335.643852457611,12,15 +439.6604619901,1596.12375643313,0.56405900815265,11709.1696770059,190338.492273707,20918.852372074,6662.05489556497,70235.6060050579,0.160244036407003,70.0096277054299,3,15 +3720.66941626813,3795.90932792074,0.267350283117145,17375.0670491422,175258.880720197,37579.2115176355,11967.9017572088,64671.1736974897,0.075951784976462,592.463282845244,10,19 +308.718140187372,3585.22301384473,0.230483789486135,11122.6364544227,54121.409037564,6252.75593922921,1991.32354752523,19970.9996448576,0.065478349285834,49.1589395202822,16,17 +2907.99706259838,2455.45413288271,0.084446836676831,10058.5464110564,174812.873440717,30723.5630279069,9784.5742127092,64506.5953655782,0.023990578601373,463.056857101653,13,6 +1200.32613038224,204.129787802207,0.173578502292213,13132.7193665994,89430.7964305022,14377.9896334235,4578.97759026226,33000.2938857942,0.049312074514833,191.134734137299,2,18 +3046.66743187324,3406.34815946081,0.937592593248396,783.757016951165,68255.0987032009,16729.9285460193,5328.0027216622,25186.383285314,0.26636153217284,485.138126094465,9,21 +1051.56219880711,1944.88408862019,0.820537085499004,3930.3644281879,221855.314147711,4490.68099666561,1430.15318365147,81865.4295748011,0.233107126562217,167.446210001132,18,10 +800.616163542664,3271.983843667,0.991362612982333,7221.25062545968,258487.954953546,18652.1882452533,5940.18733925264,95383.0092079506,0.28163710596089,127.486650245647,17,10 +1664.23394769337,3661.02341332674,0.04929683873039,15683.8200268968,2238.81002215156,7991.17339828983,2544.95968098402,826.12915946552,0.014004783730225,265.005405683658,14,12 +1580.92790601895,1213.89196502046,0.029442174933317,6118.06642570787,76654.8863556952,6163.05916685414,1962.75769645036,28285.9359246108,0.00836425424242,251.7401124234,15,13 +1683.55769259198,689.057820664206,0.660188383604907,16599.9060534356,274950.057811096,35089.7807755758,11175.0894189732,101457.585908154,0.187553518069576,268.082435126111,16,23 +1479.42555705208,1249.22522109651,0.525264633981149,4630.03268751289,68179.8716131978,17550.5793006446,5589.35646517344,25158.6242115121,0.149222907381008,235.577318001924,16,19 +3991.90727392936,1931.43130739721,0.783293087990167,24888.9524875472,10397.5887564221,20288.2856427606,6461.23746584733,3836.74861860594,0.222526445451752,635.654024511045,18,11 +2082.89470520817,2039.08309840799,0.084902231394444,2439.13679852495,288350.776952177,34620.2586278462,11025.5600725625,106402.500720361,0.024119952100694,331.671131402575,11,8 +3498.76149331078,612.680238301685,0.232160914290476,11557.2493932736,209669.731707885,21852.4583967338,6959.38165501076,77368.9046892565,0.065954805196158,557.127626323373,8,16 +3407.00963101363,771.832186337029,0.514055982844704,23610.1941687018,184819.485606306,31993.0594282962,10188.8724293937,68199.0721794487,0.146038631489973,542.517457167775,10,15 +3948.42502350935,2938.66286457165,0.953509173999018,23899.4949799494,87728.751720804,8545.67715017694,2721.55323254043,32372.2331073077,0.270883288067903,628.730099284928,14,10 +3959.70027295481,2481.50161301277,0.193796429717426,2549.72973055971,83226.5153645412,26485.744211933,8434.95038596592,30710.8912784285,0.055055803896996,630.525521171148,6,11 +3663.31226088606,1761.52042928318,0.743303095326142,15106.0975344564,105104.030211831,13586.9742912347,4327.06187618939,38783.7749859155,0.21116565208129,583.329977848099,14,11 +454.374094986361,891.639083028345,0.549159397492311,14741.0195493045,10762.6346689999,40166.0385189951,12791.7320124188,3971.45190738004,0.156011192469407,72.3525628959174,8,4 +229.590507706621,912.368062186577,0.64381605098823,22373.3903575147,229290.209012062,30307.4533856807,9652.05521836965,84608.933214783,0.182902287212565,36.5589980424556,19,21 +1242.47930589419,3446.30262308697,0.292405643484511,5385.63539538687,89412.1006078174,10130.8451654475,3226.38381065207,32993.3950582352,0.083069785080827,197.847023231559,7,0 +907.914646043638,2774.22696634553,0.107796472995906,8897.48236375162,70492.0896766059,25978.5859201824,8273.43500642752,26011.8412090797,0.030623998010201,144.572395866821,10,0 +877.830851096497,656.575777190548,0.440715218162289,12134.6580299601,191113.486672761,27449.1462809373,8741.76633150869,70521.5817980668,0.125203186977923,139.781982658678,13,3 +630.088082119922,943.159473281382,0.114663260618368,18638.989691415,29217.6213172747,9414.6732816608,2998.3035928856,10781.4100801752,0.0325747899484,100.332497152854,16,11 +1976.57255619973,1566.09333195983,0.091335551445134,16004.5824834642,123755.305761054,30987.3216504441,9868.57377402678,45666.1644874738,0.025947599842368,314.740852898046,11,21 +1046.78142145273,1826.47005072942,0.29740260291279,2361.61463696643,10189.4434474688,26898.6471058509,8566.44812288245,3759.9422315383,0.084489375827497,166.684939721772,3,13 +3978.22147133453,3166.45396190303,0.721180781095796,4824.51501286293,235842.932856564,32804.0608116178,10447.153124719,87026.912493197,0.204880903720397,633.474756581932,15,4 +2094.17258419755,2388.17072758453,0.434918845310411,4377.56944454434,204080.41195995,44511.3705452013,14175.5957150323,75306.4250774723,0.123556490145003,333.466972005979,16,10 +2864.70189658532,1994.87962612246,0.529164791948505,22803.4623628654,79667.6425163737,18684.7587504626,5950.56011161229,29397.6540650825,0.150330906803553,456.162722386197,8,16 +2275.09545847258,962.47605010185,0.934996707848282,22752.7279778795,75994.8991010482,5354.68285820834,1705.31301216826,28042.3981922687,0.265624064729626,362.276346890538,2,8 +1469.60383930031,562.770178892546,0.568733420394008,22729.4530734476,215187.086289174,30647.780696795,9760.4397123551,79404.8288889941,0.161571994430116,234.013350207056,11,0 +2033.30347490884,3358.40021411779,0.884943963543469,4265.66992108137,89857.3378946394,27402.3304232207,8726.85682268175,33157.6892600145,0.251404535097576,323.774438679752,19,18 +1679.1724367744,2548.26048322552,0.911273205254274,17454.2869930148,147238.796263798,40141.7175881825,12783.9864930518,54331.6591379328,0.258884433310873,267.384145983185,12,18 +2912.97095603019,1927.55821056833,0.294510861420661,19119.4851104566,195078.62741733,32694.436205313,10412.2408297175,71984.7333643284,0.083667858358142,463.848878348756,7,3 +785.490780512553,2853.84085498743,0.034656236081025,9994.22247722733,126106.260578198,1582.67437524808,504.036425238242,46533.67549011,0.009845521613928,125.078149763145,19,15 +2198.64173880739,3675.33170482188,0.721632397023589,415.066824777952,69169.8185252958,30211.631435968,9621.53867387516,25523.9182750169,0.205009203699883,350.102187708183,17,21 +3566.77918412629,2436.01465241479,0.926720779502822,15737.9608837794,223538.062029219,16590.810786115,5283.69770258439,82486.3697524793,0.263272948722393,567.958468809919,7,18 +2291.59338933973,3297.32687121268,0.625144498684574,13791.6626147178,26535.3812206491,1604.24340447043,510.905542824978,9791.65358695539,0.177597868944481,364.903405945817,12,23 +3814.80626489405,2453.24575696222,0.608454169044308,3470.45928204435,128554.689923586,14784.7570905028,4708.52136640217,47437.1549533528,0.172856298023951,607.453226893957,12,6 +2896.63885078734,23.5567365917634,0.603983285486274,2111.05460605879,103031.491327007,5686.03244010351,1810.83835672086,38019.0004896705,0.17158616064951,461.248224647666,17,0 +1654.4696263324,365.648613635746,0.535760208240546,6948.47064992683,241588.291195749,42097.9291605343,13406.9838090874,89146.9709209406,0.152204604613791,263.450577441465,15,19 +3286.51616398521,3280.16056276136,0.483476074632119,71.319045129713,143908.491347414,11855.6879076053,3775.69678586156,53102.7643348391,0.137351157565943,523.330599360702,11,17 +2583.59403664697,3230.43896330169,0.941688719860559,17694.5077846356,207990.095915191,32380.162243197,10312.153580636,76749.1128838343,0.267525204505841,411.400324306842,1,1 +464.546637798026,749.995035961957,0.344013473701084,6750.42379613113,133963.106828035,4671.39259566678,1487.70464830152,49432.8807483524,0.097731100483263,73.9723945538258,19,17 +250.776899812935,3436.35355302577,0.822796956387365,12450.425533814,166120.289126673,37598.4390794912,11974.0251845513,61298.9996777391,0.23374913533732,39.9326273587476,19,7 +2876.13821905472,1787.87647498596,0.12369960992469,24713.2379095835,15847.9645633441,6791.42711269075,2162.8748766531,5847.95740344801,0.035141934637696,457.983792843108,10,19 +3736.35927364776,1820.036690317,0.291326663579536,18547.0502470622,123659.939868778,27026.0645834343,8607.02693739946,45630.9741213203,0.082763256698732,594.961667778306,2,25 diff --git a/ML/Pytorch/Basics/custom_dataset_txt/loader_customtext.py b/ML/Pytorch/Basics/custom_dataset_txt/loader_customtext.py new file mode 100644 index 0000000..b14f3b1 --- /dev/null +++ b/ML/Pytorch/Basics/custom_dataset_txt/loader_customtext.py @@ -0,0 +1,142 @@ +import os # when loading file paths +import pandas as pd # for lookup in annotation file +import spacy # for tokenizer +import torch +from torch.nn.utils.rnn import pad_sequence # pad batch +from torch.utils.data import DataLoader, Dataset +from PIL import Image # Load img +import torchvision.transforms as transforms + + +# We want to convert text -> numerical values +# 1. We need a Vocabulary mapping each word to a index +# 2. We need to setup a Pytorch dataset to load the data +# 3. Setup padding of every batch (all examples should be +# of same seq_len and setup dataloader) +# Note that loading the image is very easy compared to the text! + +# Download with: python -m spacy download en +spacy_eng = spacy.load("en") + + +class Vocabulary: + def __init__(self, freq_threshold): + self.itos = {0: "", 1: "", 2: "", 3: ""} + self.stoi = {"": 0, "": 1, "": 2, "": 3} + self.freq_threshold = freq_threshold + + def __len__(self): + return len(self.itos) + + @staticmethod + def tokenizer_eng(text): + return [tok.text.lower() for tok in spacy_eng.tokenizer(text)] + + def build_vocabulary(self, sentence_list): + frequencies = {} + idx = 4 + + for sentence in sentence_list: + for word in self.tokenizer_eng(sentence): + if word not in frequencies: + frequencies[word] = 1 + + else: + frequencies[word] += 1 + + if frequencies[word] == self.freq_threshold: + self.stoi[word] = idx + self.itos[idx] = word + idx += 1 + + def numericalize(self, text): + tokenized_text = self.tokenizer_eng(text) + + return [ + self.stoi[token] if token in self.stoi else self.stoi[""] + for token in tokenized_text + ] + + +class FlickrDataset(Dataset): + def __init__(self, root_dir, captions_file, transform=None, freq_threshold=5): + self.root_dir = root_dir + self.df = pd.read_csv(captions_file) + self.transform = transform + + # Get img, caption columns + self.imgs = self.df["image"] + self.captions = self.df["caption"] + + # Initialize vocabulary and build vocab + self.vocab = Vocabulary(freq_threshold) + self.vocab.build_vocabulary(self.captions.tolist()) + + def __len__(self): + return len(self.df) + + def __getitem__(self, index): + caption = self.captions[index] + img_id = self.imgs[index] + img = Image.open(os.path.join(self.root_dir, img_id)).convert("RGB") + + if self.transform is not None: + img = self.transform(img) + + numericalized_caption = [self.vocab.stoi[""]] + numericalized_caption += self.vocab.numericalize(caption) + numericalized_caption.append(self.vocab.stoi[""]) + + return img, torch.tensor(numericalized_caption) + + +class MyCollate: + def __init__(self, pad_idx): + self.pad_idx = pad_idx + + def __call__(self, batch): + imgs = [item[0].unsqueeze(0) for item in batch] + imgs = torch.cat(imgs, dim=0) + targets = [item[1] for item in batch] + targets = pad_sequence(targets, batch_first=False, padding_value=self.pad_idx) + + return imgs, targets + + +def get_loader( + root_folder, + annotation_file, + transform, + batch_size=32, + num_workers=8, + shuffle=True, + pin_memory=True, +): + dataset = FlickrDataset(root_folder, annotation_file, transform=transform) + + pad_idx = dataset.vocab.stoi[""] + + loader = DataLoader( + dataset=dataset, + batch_size=batch_size, + num_workers=num_workers, + shuffle=shuffle, + pin_memory=pin_memory, + collate_fn=MyCollate(pad_idx=pad_idx), + ) + + return loader, dataset + + +if __name__ == "__main__": + transform = transforms.Compose( + [transforms.Resize((224, 224)), transforms.ToTensor(),] + ) + + loader, dataset = get_loader( + "flickr8k/images/", "flickr8k/captions.txt", transform=transform + ) + + for idx, (imgs, captions) in enumerate(loader): + print(imgs.shape) + print(captions.shape) diff --git a/ML/Pytorch/Basics/pytorch_bidirectional_lstm.py b/ML/Pytorch/Basics/pytorch_bidirectional_lstm.py new file mode 100644 index 0000000..cea288a --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_bidirectional_lstm.py @@ -0,0 +1,125 @@ +""" +Example code of a simple bidirectional LSTM on the MNIST dataset. + +Programmed by Aladdin Persson +* 2020-05-09 Initial coding + +""" + + +# Imports +import torch +import torchvision +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +input_size = 28 +sequence_length = 28 +num_layers = 2 +hidden_size = 256 +num_classes = 10 +learning_rate = 0.001 +batch_size = 64 +num_epochs = 2 + +# Create a bidirectional LSTM +class BRNN(nn.Module): + def __init__(self, input_size, hidden_size, num_layers, num_classes): + super(BRNN, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + self.lstm = nn.LSTM( + input_size, hidden_size, num_layers, batch_first=True, bidirectional=True + ) + self.fc = nn.Linear(hidden_size * 2, num_classes) + + def forward(self, x): + h0 = torch.zeros(self.num_layers * 2, x.size(0), self.hidden_size).to(device) + c0 = torch.zeros(self.num_layers * 2, x.size(0), self.hidden_size).to(device) + + out, _ = self.lstm(x, (h0, c0)) + out = self.fc(out[:, -1, :]) + + return out + + +# Load Data +train_dataset = datasets.MNIST( + root="dataset/", train=True, transform=transforms.ToTensor(), download=True +) + +test_dataset = datasets.MNIST( + root="dataset/", train=False, transform=transforms.ToTensor(), download=True +) + +train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True) +test_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True) + +# Initialize network +model = BRNN(input_size, hidden_size, num_layers, num_classes).to(device) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Train Network +for epoch in range(num_epochs): + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device).squeeze(1) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent or adam step + optimizer.step() + +# Check accuracy on training & test to see how good our model + + +def check_accuracy(loader, model): + if loader.dataset.train: + print("Checking accuracy on training data") + else: + print("Checking accuracy on test data") + + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device).squeeze(1) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with accuracy \ + {float(num_correct)/float(num_samples)*100:.2f}" + ) + + model.train() + + +check_accuracy(train_loader, model) +check_accuracy(test_loader, model) diff --git a/ML/Pytorch/Basics/pytorch_init_weights.py b/ML/Pytorch/Basics/pytorch_init_weights.py new file mode 100644 index 0000000..4a1f3a7 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_init_weights.py @@ -0,0 +1,69 @@ +""" +Example code of how to initialize weights for a simple CNN network. + +Video explanation: https://youtu.be/xWQ-p_o0Uik +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-10 Initial coding + +""" + +# Imports +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.nn.functional as F # All functions that don't have any parameters + + +class CNN(nn.Module): + def __init__(self, in_channels, num_classes): + super(CNN, self).__init__() + self.conv1 = nn.Conv2d( + in_channels=in_channels, + out_channels=6, + kernel_size=(3, 3), + stride=(1, 1), + padding=(1, 1), + ) + self.pool = nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2)) + self.conv2 = nn.Conv2d( + in_channels=6, + out_channels=16, + kernel_size=(3, 3), + stride=(1, 1), + padding=(1, 1), + ) + self.fc1 = nn.Linear(16 * 7 * 7, num_classes) + self.initialize_weights() + + def forward(self, x): + x = F.relu(self.conv1(x)) + x = self.pool(x) + x = F.relu(self.conv2(x)) + x = self.pool(x) + x = x.reshape(x.shape[0], -1) + x = self.fc1(x) + + return x + + def initialize_weights(self): + for m in self.modules(): + if isinstance(m, nn.Conv2d): + nn.init.kaiming_uniform_(m.weight) + + if m.bias is not None: + nn.init.constant_(m.bias, 0) + + elif isinstance(m, nn.BatchNorm2d): + nn.init.constant_(m.weight, 1) + nn.init.constant_(m.bias, 0) + + elif isinstance(m, nn.Linear): + nn.init.kaiming_uniform_(m.weight) + nn.init.constant_(m.bias, 0) + + +if __name__ == "__main__": + model = CNN(in_channels=3, num_classes=10) + + for param in model.parameters(): + print(param) diff --git a/ML/Pytorch/Basics/pytorch_loadsave.py b/ML/Pytorch/Basics/pytorch_loadsave.py new file mode 100644 index 0000000..22109cb --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_loadsave.py @@ -0,0 +1,54 @@ +""" +Small code example of how to save and load checkpoint of a model. +This example doesn't perform any training, so it would be quite useless. + +In practice you would save the model as you train, and then load before +continuining training at another point. + +Video explanation of code & how to save and load model: https://youtu.be/g6kQl_EFn84 +Got any questions leave a comment on youtube :) + +Coded by Aladdin Persson +- 2020-04-07 Initial programming + +""" + +# Imports +import torch +import torchvision +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + + +def save_checkpoint(state, filename="my_checkpoint.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, model, optimizer): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint["state_dict"]) + optimizer.load_state_dict(checkpoint["optimizer"]) + + +def main(): + # Initialize network + model = torchvision.models.vgg16(pretrained=False) + optimizer = optim.Adam(model.parameters()) + + checkpoint = {"state_dict": model.state_dict(), "optimizer": optimizer.state_dict()} + # Try save checkpoint + save_checkpoint(checkpoint) + + # Try load checkpoint + load_checkpoint(torch.load("my_checkpoint.pth.tar"), model, optimizer) + + +if __name__ == "__main__": + main() diff --git a/ML/Pytorch/Basics/pytorch_lr_ratescheduler.py b/ML/Pytorch/Basics/pytorch_lr_ratescheduler.py new file mode 100644 index 0000000..8a34207 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_lr_ratescheduler.py @@ -0,0 +1,107 @@ +""" +Example code of how to use a learning rate scheduler simple, in this +case with a (very) small and simple Feedforward Network training on MNIST +dataset with a learning rate scheduler. In this case ReduceLROnPlateau +scheduler is used, but can easily be changed to any of the other schedulers +available. + +Video explanation: https://youtu.be/P31hB37g4Ak +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-10 Initial programming + +""" + +# Imports +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +num_classes = 10 +learning_rate = 0.1 +batch_size = 128 +num_epochs = 100 + +# Define a very simple model +model = nn.Sequential(nn.Linear(784, 50), nn.ReLU(), nn.Linear(50, 10)).to(device) + +# Load Data +train_dataset = datasets.MNIST( + root="dataset/", train=True, transform=transforms.ToTensor(), download=True +) +train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Define Scheduler +scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau( + optimizer, factor=0.1, patience=5, verbose=True +) + +# Train Network +for epoch in range(1, num_epochs): + losses = [] + + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.reshape(data.shape[0], -1) + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + losses.append(loss.item()) + + # backward + loss.backward() + + # gradient descent or adam step + # scheduler.step(loss) + optimizer.step() + optimizer.zero_grad() + + mean_loss = sum(losses) / len(losses) + + # After each epoch do scheduler.step, note in this scheduler we need to send + # in loss for that epoch! + scheduler.step(mean_loss) + print(f"Cost at epoch {epoch} is {mean_loss}") + +# Check accuracy on training & test to see how good our model +def check_accuracy(loader, model): + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}" + ) + + model.train() + + +check_accuracy(train_loader, model) diff --git a/ML/Pytorch/Basics/pytorch_mixed_precision_example.py b/ML/Pytorch/Basics/pytorch_mixed_precision_example.py new file mode 100644 index 0000000..bce6b5a --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_mixed_precision_example.py @@ -0,0 +1,99 @@ +# Imports +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +from torch.utils.data import DataLoader # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + + +# Simple CNN +class CNN(nn.Module): + def __init__(self, in_channels=1, num_classes=10): + super(CNN, self).__init__() + self.conv1 = nn.Conv2d(in_channels=1, out_channels=420, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1)) + self.pool = nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2)) + self.conv2 = nn.Conv2d(in_channels=420, out_channels=1000, kernel_size=(3, 3), stride=(1, 1), padding=(1, 1)) + self.fc1 = nn.Linear(1000 * 7 * 7, num_classes) + + def forward(self, x): + x = F.relu(self.conv1(x)) + x = self.pool(x) + x = F.relu(self.conv2(x)) + x = self.pool(x) + x = x.reshape(x.shape[0], -1) + x = self.fc1(x) + + return x + + +# Set device +device = torch.device('cuda' if torch.cuda.is_available() else 'cpu') + +# Hyperparameters +in_channel = 1 +num_classes = 10 +learning_rate = 0.001 +batch_size = 100 +num_epochs = 5 + +# Load Data +train_dataset = datasets.MNIST(root='dataset/', train=True, transform=transforms.ToTensor(), download=True) +train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True) +test_dataset = datasets.MNIST(root='dataset/', train=False, transform=transforms.ToTensor(), download=True) +test_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True) + +# Initialize network +model = CNN().to(device) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Necessary for FP16 +scaler = torch.cuda.amp.GradScaler() + +# Train Network +for epoch in range(num_epochs): + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + with torch.cuda.amp.autocast(): + scores = model(data) + loss = criterion(scores, targets) + + # backward + optimizer.zero_grad() + scaler.scale(loss).backward() + scaler.step(optimizer) + scaler.update() + + +# Check accuracy on training & test to see how good our model + +def check_accuracy(loader, model): + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print(f'Got {num_correct} / {num_samples} with accuracy {float(num_correct) / float(num_samples) * 100:.2f}') + + model.train() + + +check_accuracy(train_loader, model) +check_accuracy(test_loader, model) \ No newline at end of file diff --git a/ML/Pytorch/Basics/pytorch_pretrain_finetune.py b/ML/Pytorch/Basics/pytorch_pretrain_finetune.py new file mode 100644 index 0000000..66b2396 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_pretrain_finetune.py @@ -0,0 +1,123 @@ +""" +Shows a small example of how to load a pretrain model (VGG16) from PyTorch, +and modifies this to train on the CIFAR10 dataset. The same method generalizes +well to other datasets, but the modifications to the network may need to be changed. + +Video explanation: https://youtu.be/U4bHxEhMGNk +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-08 Initial coding + +""" + +# Imports +import torch +import torchvision +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +num_classes = 10 +learning_rate = 1e-3 +batch_size = 1024 +num_epochs = 5 + +# Simple Identity class that let's input pass without changes +class Identity(nn.Module): + def __init__(self): + super(Identity, self).__init__() + + def forward(self, x): + return x + + +# Load pretrain model & modify it +model = torchvision.models.vgg16(pretrained=True) + +# If you want to do finetuning then set requires_grad = False +# Remove these two lines if you want to train entire model, +# and only want to load the pretrain weights. +for param in model.parameters(): + param.requires_grad = False + +model.avgpool = Identity() +model.classifier = nn.Sequential( + nn.Linear(512, 100), nn.ReLU(), nn.Linear(100, num_classes) +) +model.to(device) + + +# Load Data +train_dataset = datasets.CIFAR10( + root="dataset/", train=True, transform=transforms.ToTensor(), download=True +) +train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Train Network +for epoch in range(num_epochs): + losses = [] + + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + losses.append(loss.item()) + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent or adam step + optimizer.step() + + print(f"Cost at epoch {epoch} is {sum(losses)/len(losses):.5f}") + +# Check accuracy on training & test to see how good our model + + +def check_accuracy(loader, model): + if loader.dataset.train: + print("Checking accuracy on training data") + else: + print("Checking accuracy on test data") + + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}" + ) + + model.train() + + +check_accuracy(train_loader, model) diff --git a/ML/Pytorch/Basics/pytorch_progress_bar.py b/ML/Pytorch/Basics/pytorch_progress_bar.py new file mode 100644 index 0000000..e33d8e7 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_progress_bar.py @@ -0,0 +1,41 @@ +import torch +import torch.nn as nn +from tqdm import tqdm +from torch.utils.data import TensorDataset, DataLoader + +# Create a simple toy dataset example, normally this +# would be doing custom class with __getitem__ etc, +# which we have done in custom dataset tutorials +x = torch.randn((1000, 3, 224, 224)) +y = torch.randint(low=0, high=10, size=(1000, 1)) +ds = TensorDataset(x, y) +loader = DataLoader(ds, batch_size=8) + + +model = nn.Sequential( + nn.Conv2d(3, 10, kernel_size=3, padding=1, stride=1), + nn.Flatten(), + nn.Linear(10*224*224, 10), +) + +NUM_EPOCHS = 100 +for epoch in range(NUM_EPOCHS): + loop = tqdm(loader) + for idx, (x, y) in enumerate(loop): + scores = model(x) + + # here we would compute loss, backward, optimizer step etc. + # you know how it goes, but now you have a nice progress bar + # with tqdm + + # then at the bottom if you want additional info shown, you can + # add it here, for loss and accuracy you would obviously compute + # but now we just set them to random values + loop.set_description(f"Epoch [{epoch}/{NUM_EPOCHS}]") + loop.set_postfix(loss=torch.rand(1).item(), acc=torch.rand(1).item()) + +# There you go. Hope it was useful :) + + + + diff --git a/ML/Pytorch/Basics/pytorch_rnn_gru_lstm.py b/ML/Pytorch/Basics/pytorch_rnn_gru_lstm.py new file mode 100644 index 0000000..4a8e2b9 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_rnn_gru_lstm.py @@ -0,0 +1,172 @@ +""" +Example code of a simple RNN, GRU, LSTM on the MNIST dataset. + +Programmed by Aladdin Persson +* 2020-05-09 Initial coding + +""" + +# Imports +import torch +import torchvision +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +input_size = 28 +hidden_size = 256 +num_layers = 2 +num_classes = 10 +sequence_length = 28 +learning_rate = 0.005 +batch_size = 64 +num_epochs = 2 + +# Recurrent neural network (many-to-one) +class RNN(nn.Module): + def __init__(self, input_size, hidden_size, num_layers, num_classes): + super(RNN, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + self.rnn = nn.RNN(input_size, hidden_size, num_layers, batch_first=True) + self.fc = nn.Linear(hidden_size * sequence_length, num_classes) + + def forward(self, x): + # Set initial hidden and cell states + h0 = torch.zeros(self.num_layers, x.size(0), self.hidden_size).to(device) + + # Forward propagate LSTM + out, _ = self.rnn(x, h0) + out = out.reshape(out.shape[0], -1) + + # Decode the hidden state of the last time step + out = self.fc(out) + return out + + +# Recurrent neural network with GRU (many-to-one) +class RNN_GRU(nn.Module): + def __init__(self, input_size, hidden_size, num_layers, num_classes): + super(RNN_GRU, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + self.gru = nn.GRU(input_size, hidden_size, num_layers, batch_first=True) + self.fc = nn.Linear(hidden_size * sequence_length, num_classes) + + def forward(self, x): + # Set initial hidden and cell states + h0 = torch.zeros(self.num_layers, x.size(0), self.hidden_size).to(device) + + # Forward propagate LSTM + out, _ = self.gru(x, h0) + out = out.reshape(out.shape[0], -1) + + # Decode the hidden state of the last time step + out = self.fc(out) + return out + + +# Recurrent neural network with LSTM (many-to-one) +class RNN_LSTM(nn.Module): + def __init__(self, input_size, hidden_size, num_layers, num_classes): + super(RNN_LSTM, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + self.lstm = nn.LSTM(input_size, hidden_size, num_layers, batch_first=True) + self.fc = nn.Linear(hidden_size * sequence_length, num_classes) + + def forward(self, x): + # Set initial hidden and cell states + h0 = torch.zeros(self.num_layers, x.size(0), self.hidden_size).to(device) + c0 = torch.zeros(self.num_layers, x.size(0), self.hidden_size).to(device) + + # Forward propagate LSTM + out, _ = self.lstm( + x, (h0, c0) + ) # out: tensor of shape (batch_size, seq_length, hidden_size) + out = out.reshape(out.shape[0], -1) + + # Decode the hidden state of the last time step + out = self.fc(out) + return out + + +# Load Data +train_dataset = datasets.MNIST( + root="dataset/", train=True, transform=transforms.ToTensor(), download=True +) + +test_dataset = datasets.MNIST( + root="dataset/", train=False, transform=transforms.ToTensor(), download=True +) + +train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True) +test_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True) + +# Initialize network +model = RNN_LSTM(input_size, hidden_size, num_layers, num_classes).to(device) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Train Network +for epoch in range(num_epochs): + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device).squeeze(1) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent or adam step + optimizer.step() + +# Check accuracy on training & test to see how good our model +def check_accuracy(loader, model): + if loader.dataset.train: + print("Checking accuracy on training data") + else: + print("Checking accuracy on test data") + + num_correct = 0 + num_samples = 0 + + # Set model to eval + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device).squeeze(1) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with \ + accuracy {float(num_correct)/float(num_samples)*100:.2f}" + ) + # Set model back to train + model.train() + + +check_accuracy(train_loader, model) +check_accuracy(test_loader, model) diff --git a/ML/Pytorch/Basics/pytorch_simple_CNN.py b/ML/Pytorch/Basics/pytorch_simple_CNN.py new file mode 100644 index 0000000..fe5c1fd --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_simple_CNN.py @@ -0,0 +1,134 @@ +""" +Example code of a simple CNN network training on MNIST dataset. +The code is intended to show how to create a CNN network as well +as how to initialize loss, optimizer, etc. in a simple way to get +training to work with function that checks accuracy as well. + +Video explanation: https://youtu.be/wnK3uWv_WkU +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-08 Initial coding + +""" + +# Imports +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + +# Simple CNN +class CNN(nn.Module): + def __init__(self, in_channels=1, num_classes=10): + super(CNN, self).__init__() + self.conv1 = nn.Conv2d( + in_channels=1, + out_channels=8, + kernel_size=(3, 3), + stride=(1, 1), + padding=(1, 1), + ) + self.pool = nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2)) + self.conv2 = nn.Conv2d( + in_channels=8, + out_channels=16, + kernel_size=(3, 3), + stride=(1, 1), + padding=(1, 1), + ) + self.fc1 = nn.Linear(16 * 7 * 7, num_classes) + + def forward(self, x): + x = F.relu(self.conv1(x)) + x = self.pool(x) + x = F.relu(self.conv2(x)) + x = self.pool(x) + x = x.reshape(x.shape[0], -1) + x = self.fc1(x) + + return x + + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +in_channel = 1 +num_classes = 10 +learning_rate = 0.001 +batch_size = 64 +num_epochs = 5 + +# Load Data +train_dataset = datasets.MNIST( + root="dataset/", train=True, transform=transforms.ToTensor(), download=True +) +train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True) +test_dataset = datasets.MNIST( + root="dataset/", train=False, transform=transforms.ToTensor(), download=True +) +test_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True) + +# Initialize network +model = CNN().to(device) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Train Network +for epoch in range(num_epochs): + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent or adam step + optimizer.step() + +# Check accuracy on training & test to see how good our model + + +def check_accuracy(loader, model): + if loader.dataset.train: + print("Checking accuracy on training data") + else: + print("Checking accuracy on test data") + + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}" + ) + + model.train() + + +check_accuracy(train_loader, model) +check_accuracy(test_loader, model) diff --git a/ML/Pytorch/Basics/pytorch_simple_fullynet.py b/ML/Pytorch/Basics/pytorch_simple_fullynet.py new file mode 100644 index 0000000..9d1b5a2 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_simple_fullynet.py @@ -0,0 +1,120 @@ +""" +Working code of a simple Fully Connected (FC) network training on MNIST dataset. +The code is intended to show how to create a FC network as well +as how to initialize loss, optimizer, etc. in a simple way to get +training to work with function that checks accuracy as well. + +Video explanation: https://youtu.be/Jy4wM2X21u0 +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-08 Initial coding + +""" + +# Imports +import torch +import torchvision +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + +# Create Fully Connected Network +class NN(nn.Module): + def __init__(self, input_size, num_classes): + super(NN, self).__init__() + self.fc1 = nn.Linear(input_size, 50) + self.fc2 = nn.Linear(50, num_classes) + + def forward(self, x): + x = F.relu(self.fc1(x)) + x = self.fc2(x) + return x + + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +input_size = 784 +num_classes = 10 +learning_rate = 0.001 +batch_size = 64 +num_epochs = 1 + +# Load Data +train_dataset = datasets.MNIST( + root="dataset/", train=True, transform=transforms.ToTensor(), download=True +) +train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True) +test_dataset = datasets.MNIST( + root="dataset/", train=False, transform=transforms.ToTensor(), download=True +) +test_loader = DataLoader(dataset=test_dataset, batch_size=batch_size, shuffle=True) + +# Initialize network +model = NN(input_size=input_size, num_classes=num_classes).to(device) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Train Network +for epoch in range(num_epochs): + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # Get to correct shape + data = data.reshape(data.shape[0], -1) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent or adam step + optimizer.step() + +# Check accuracy on training & test to see how good our model + + +def check_accuracy(loader, model): + if loader.dataset.train: + print("Checking accuracy on training data") + else: + print("Checking accuracy on test data") + + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + x = x.reshape(x.shape[0], -1) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}" + ) + + model.train() + + +check_accuracy(train_loader, model) +check_accuracy(test_loader, model) diff --git a/ML/Pytorch/Basics/pytorch_std_mean.py b/ML/Pytorch/Basics/pytorch_std_mean.py new file mode 100644 index 0000000..2018dde --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_std_mean.py @@ -0,0 +1,28 @@ +import torch +import torchvision.transforms as transforms +from torch.utils.data import DataLoader +import torchvision.datasets as datasets +from tqdm import tqdm + +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") +train_set = datasets.CIFAR10(root="ds/", transform=transforms.ToTensor(), download=True) +train_loader = DataLoader(dataset=train_set, batch_size=64, shuffle=True) + +def get_mean_std(loader): + # var[X] = E[X**2] - E[X]**2 + channels_sum, channels_sqrd_sum, num_batches = 0, 0, 0 + + for data, _ in tqdm(loader): + channels_sum += torch.mean(data, dim=[0, 2, 3]) + channels_sqrd_sum += torch.mean(data ** 2, dim=[0, 2, 3]) + num_batches += 1 + + mean = channels_sum / num_batches + std = (channels_sqrd_sum / num_batches - mean ** 2) ** 0.5 + + return mean, std + + +mean, std = get_mean_std(train_loader) +print(mean) +print(std) diff --git a/ML/Pytorch/Basics/pytorch_tensorbasics.py b/ML/Pytorch/Basics/pytorch_tensorbasics.py new file mode 100644 index 0000000..7d9bd30 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_tensorbasics.py @@ -0,0 +1,299 @@ +""" +Walk through of a lot of different useful Tensor Operations, where we +go through what I think are four main parts in: + +1. Initialization of a Tensor +2. Tensor Mathematical Operations and Comparison +3. Tensor Indexing +4. Tensor Reshaping + +But also other things such as setting the device (GPU/CPU) and converting +between different types (int, float etc) and how to convert a tensor to an +numpy array and vice-versa. + +""" + +import torch + +# ================================================================= # +# Initializing Tensor # +# ================================================================= # + +device = "cuda" if torch.cuda.is_available() else "cpu" # Cuda to run on GPU! + +# Initializing a Tensor in this case of shape 2x3 (2 rows, 3 columns) +my_tensor = torch.tensor( + [[1, 2, 3], [4, 5, 6]], dtype=torch.float32, device=device, requires_grad=True +) + +# A few tensor attributes +print( + f"Information about tensor: {my_tensor}" +) # Prints data of the tensor, device and grad info +print( + "Type of Tensor {my_tensor.dtype}" +) # Prints dtype of the tensor (torch.float32, etc) +print( + f"Device Tensor is on {my_tensor.device}" +) # Prints cpu/cuda (followed by gpu number) +print(f"Shape of tensor {my_tensor.shape}") # Prints shape, in this case 2x3 +print(f"Requires gradient: {my_tensor.requires_grad}") # Prints true/false + +# Other common initialization methods (there exists a ton more) +x = torch.empty(size=(3, 3)) # Tensor of shape 3x3 with uninitialized data +x = torch.zeros((3, 3)) # Tensor of shape 3x3 with values of 0 +x = torch.rand( + (3, 3) +) # Tensor of shape 3x3 with values from uniform distribution in interval [0,1) +x = torch.ones((3, 3)) # Tensor of shape 3x3 with values of 1 +x = torch.eye(5, 5) # Returns Identity Matrix I, (I <-> Eye), matrix of shape 2x3 +x = torch.arange( + start=0, end=5, step=1 +) # Tensor [0, 1, 2, 3, 4], note, can also do: torch.arange(11) +x = torch.linspace(start=0.1, end=1, steps=10) # x = [0.1, 0.2, ..., 1] +x = torch.empty(size=(1, 5)).normal_( + mean=0, std=1 +) # Normally distributed with mean=0, std=1 +x = torch.empty(size=(1, 5)).uniform_( + 0, 1 +) # Values from a uniform distribution low=0, high=1 +x = torch.diag(torch.ones(3)) # Diagonal matrix of shape 3x3 + +# How to make initialized tensors to other types (int, float, double) +# These will work even if you're on CPU or CUDA! +tensor = torch.arange(4) # [0, 1, 2, 3] Initialized as int64 by default +print(f"Converted Boolean: {tensor.bool()}") # Converted to Boolean: 1 if nonzero +print(f"Converted int16 {tensor.short()}") # Converted to int16 +print( + f"Converted int64 {tensor.long()}" +) # Converted to int64 (This one is very important, used super often) +print(f"Converted float16 {tensor.half()}") # Converted to float16 +print( + f"Converted float32 {tensor.float()}" +) # Converted to float32 (This one is very important, used super often) +print(f"Converted float64 {tensor.double()}") # Converted to float64 + +# Array to Tensor conversion and vice-versa +import numpy as np + +np_array = np.zeros((5, 5)) +tensor = torch.from_numpy(np_array) +np_array_again = ( + tensor.numpy() +) # np_array_again will be same as np_array (perhaps with numerical round offs) + +# =============================================================================== # +# Tensor Math & Comparison Operations # +# =============================================================================== # + +x = torch.tensor([1, 2, 3]) +y = torch.tensor([9, 8, 7]) + +# -- Addition -- +z1 = torch.empty(3) +torch.add(x, y, out=z1) # This is one way +z2 = torch.add(x, y) # This is another way +z = x + y # This is my preferred way, simple and clean. + +# -- Subtraction -- +z = x - y # We can do similarly as the preferred way of addition + +# -- Division (A bit clunky) -- +z = torch.true_divide(x, y) # Will do element wise division if of equal shape + +# -- Inplace Operations -- +t = torch.zeros(3) + +t.add_(x) # Whenever we have operation followed by _ it will mutate the tensor in place +t += x # Also inplace: t = t + x is not inplace, bit confusing. + +# -- Exponentiation (Element wise if vector or matrices) -- +z = x.pow(2) # z = [1, 4, 9] +z = x ** 2 # z = [1, 4, 9] + + +# -- Simple Comparison -- +z = x > 0 # Returns [True, True, True] +z = x < 0 # Returns [False, False, False] + +# -- Matrix Multiplication -- +x1 = torch.rand((2, 5)) +x2 = torch.rand((5, 3)) +x3 = torch.mm(x1, x2) # Matrix multiplication of x1 and x2, out shape: 2x3 +x3 = x1.mm(x2) # Similar as line above + +# -- Matrix Exponentiation -- +matrix_exp = torch.rand(5, 5) +print( + matrix_exp.matrix_power(3) +) # is same as matrix_exp (mm) matrix_exp (mm) matrix_exp + +# -- Element wise Multiplication -- +z = x * y # z = [9, 16, 21] = [1*9, 2*8, 3*7] + +# -- Dot product -- +z = torch.dot(x, y) # Dot product, in this case z = 1*9 + 2*8 + 3*7 + +# -- Batch Matrix Multiplication -- +batch = 32 +n = 10 +m = 20 +p = 30 +tensor1 = torch.rand((batch, n, m)) +tensor2 = torch.rand((batch, m, p)) +out_bmm = torch.bmm(tensor1, tensor2) # Will be shape: (b x n x p) + +# -- Example of broadcasting -- +x1 = torch.rand((5, 5)) +x2 = torch.ones((1, 5)) +z = ( + x1 - x2 +) # Shape of z is 5x5: How? The 1x5 vector (x2) is subtracted for each row in the 5x5 (x1) +z = ( + x1 ** x2 +) # Shape of z is 5x5: How? Broadcasting! Element wise exponentiation for every row + +# Other useful tensor operations +sum_x = torch.sum( + x, dim=0 +) # Sum of x across dim=0 (which is the only dim in our case), sum_x = 6 +values, indices = torch.max(x, dim=0) # Can also do x.max(dim=0) +values, indices = torch.min(x, dim=0) # Can also do x.min(dim=0) +abs_x = torch.abs(x) # Returns x where abs function has been applied to every element +z = torch.argmax(x, dim=0) # Gets index of the maximum value +z = torch.argmin(x, dim=0) # Gets index of the minimum value +mean_x = torch.mean(x.float(), dim=0) # mean requires x to be float +z = torch.eq(x, y) # Element wise comparison, in this case z = [False, False, False] +sorted_y, indices = torch.sort(y, dim=0, descending=False) + +z = torch.clamp(x, min=0) +# All values < 0 set to 0 and values > 0 unchanged (this is exactly ReLU function) +# If you want to values over max_val to be clamped, do torch.clamp(x, min=min_val, max=max_val) + +x = torch.tensor([1, 0, 1, 1, 1], dtype=torch.bool) # True/False values +z = torch.any(x) # will return True, can also do x.any() instead of torch.any(x) +z = torch.all( + x +) # will return False (since not all are True), can also do x.all() instead of torch.all() + +# ============================================================= # +# Tensor Indexing # +# ============================================================= # + +batch_size = 10 +features = 25 +x = torch.rand((batch_size, features)) + +# Get first examples features +print(x[0].shape) # shape [25], this is same as doing x[0,:] + +# Get the first feature for all examples +print(x[:, 0].shape) # shape [10] + +# For example: Want to access third example in the batch and the first ten features +print(x[2, 0:10].shape) # shape: [10] + +# For example we can use this to, assign certain elements +x[0, 0] = 100 + +# Fancy Indexing +x = torch.arange(10) +indices = [2, 5, 8] +print(x[indices]) # x[indices] = [2, 5, 8] + +x = torch.rand((3, 5)) +rows = torch.tensor([1, 0]) +cols = torch.tensor([4, 0]) +print(x[rows, cols]) # Gets second row fifth column and first row first column + +# More advanced indexing +x = torch.arange(10) +print(x[(x < 2) | (x > 8)]) # will be [0, 1, 9] +print(x[x.remainder(2) == 0]) # will be [0, 2, 4, 6, 8] + +# Useful operations for indexing +print( + torch.where(x > 5, x, x * 2) +) # gives [0, 2, 4, 6, 8, 10, 6, 7, 8, 9], all values x > 5 yield x, else x*2 +x = torch.tensor([0, 0, 1, 2, 2, 3, 4]).unique() # x = [0, 1, 2, 3, 4] +print( + x.ndimension() +) # The number of dimensions, in this case 1. if x.shape is 5x5x5 ndim would be 3 +x = torch.arange(10) +print( + x.numel() +) # The number of elements in x (in this case it's trivial because it's just a vector) + +# ============================================================= # +# Tensor Reshaping # +# ============================================================= # + +x = torch.arange(9) + +# Let's say we want to reshape it to be 3x3 +x_3x3 = x.view(3, 3) + +# We can also do (view and reshape are very similar) +# and the differences are in simple terms (I'm no expert at this), +# is that view acts on contiguous tensors meaning if the +# tensor is stored contiguously in memory or not, whereas +# for reshape it doesn't matter because it will copy the +# tensor to make it contiguously stored, which might come +# with some performance loss. +x_3x3 = x.reshape(3, 3) + +# If we for example do: +y = x_3x3.t() +print( + y.is_contiguous() +) # This will return False and if we try to use view now, it won't work! +# y.view(9) would cause an error, reshape however won't + +# This is because in memory it was stored [0, 1, 2, ... 8], whereas now it's [0, 3, 6, 1, 4, 7, 2, 5, 8] +# The jump is no longer 1 in memory for one element jump (matrices are stored as a contiguous block, and +# using pointers to construct these matrices). This is a bit complicated and I need to explore this more +# as well, at least you know it's a problem to be cautious of! A solution is to do the following +print(y.contiguous().view(9)) # Calling .contiguous() before view and it works + +# Moving on to another operation, let's say we want to add two tensors dimensions togethor +x1 = torch.rand(2, 5) +x2 = torch.rand(2, 5) +print(torch.cat((x1, x2), dim=0).shape) # Shape: 4x5 +print(torch.cat((x1, x2), dim=1).shape) # Shape 2x10 + +# Let's say we want to unroll x1 into one long vector with 10 elements, we can do: +z = x1.view(-1) # And -1 will unroll everything + +# If we instead have an additional dimension and we wish to keep those as is we can do: +batch = 64 +x = torch.rand((batch, 2, 5)) +z = x.view( + batch, -1 +) # And z.shape would be 64x10, this is very useful stuff and is used all the time + +# Let's say we want to switch x axis so that instead of 64x2x5 we have 64x5x2 +# I.e we want dimension 0 to stay, dimension 1 to become dimension 2, dimension 2 to become dimension 1 +# Basically you tell permute where you want the new dimensions to be, torch.transpose is a special case +# of permute (why?) +z = x.permute(0, 2, 1) + +# Splits x last dimension into chunks of 2 (since 5 is not integer div by 2) the last dimension +# will be smaller, so it will split it into two tensors: 64x2x3 and 64x2x2 +z = torch.chunk(x, chunks=2, dim=1) +print(z[0].shape) +print(z[1].shape) + +# Let's say we want to add an additional dimension +x = torch.arange( + 10 +) # Shape is [10], let's say we want to add an additional so we have 1x10 +print(x.unsqueeze(0).shape) # 1x10 +print(x.unsqueeze(1).shape) # 10x1 + +# Let's say we have x which is 1x1x10 and we want to remove a dim so we have 1x10 +x = torch.arange(10).unsqueeze(0).unsqueeze(1) + +# Perhaps unsurprisingly +z = x.squeeze(1) # can also do .squeeze(0) both returns 1x10 + +# That was some essential Tensor operations, hopefully you found it useful! diff --git a/ML/Pytorch/Basics/pytorch_tensorboard_.py b/ML/Pytorch/Basics/pytorch_tensorboard_.py new file mode 100644 index 0000000..aea3775 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_tensorboard_.py @@ -0,0 +1,142 @@ +""" +Example code of how to use the TensorBoard in PyTorch. +This code uses a lot of different functions from TensorBoard +and tries to have them all in a compact way, it might not be +super clear exactly what calls does what, for that I recommend +watching the YouTube video. + +Video explanation: https://youtu.be/RLqsxWaQdHE +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-17 Initial coding +""" + +# Imports +import torch +import torchvision +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +from torch.utils.tensorboard import SummaryWriter # to print to tensorboard + +# Simple CNN +class CNN(nn.Module): + def __init__(self, in_channels=1, num_classes=10): + super(CNN, self).__init__() + self.conv1 = nn.Conv2d( + in_channels=in_channels, out_channels=8, kernel_size=3, stride=1, padding=1 + ) + self.pool = nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2)) + self.conv2 = nn.Conv2d( + in_channels=8, out_channels=16, kernel_size=3, stride=1, padding=1 + ) + self.fc1 = nn.Linear(16 * 7 * 7, num_classes) + + def forward(self, x): + x = F.relu(self.conv1(x)) + x = self.pool(x) + x = F.relu(self.conv2(x)) + x = self.pool(x) + x = x.reshape(x.shape[0], -1) + x = self.fc1(x) + return x + + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +in_channels = 1 +num_classes = 10 +num_epochs = 1 + +# Load Data +train_dataset = datasets.MNIST( + root="dataset/", train=True, transform=transforms.ToTensor(), download=True +) + +# To do hyperparameter search, include more batch_sizes you want to try +# and more learning rates! +batch_sizes = [256] +learning_rates = [0.001] +classes = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] + +for batch_size in batch_sizes: + for learning_rate in learning_rates: + step = 0 + # Initialize network + model = CNN(in_channels=in_channels, num_classes=num_classes) + model.to(device) + model.train() + criterion = nn.CrossEntropyLoss() + train_loader = DataLoader( + dataset=train_dataset, batch_size=batch_size, shuffle=True + ) + optimizer = optim.Adam(model.parameters(), lr=learning_rate, weight_decay=0.0) + writer = SummaryWriter( + f"runs/MNIST/MiniBatchSize {batch_size} LR {learning_rate}" + ) + + # Visualize model in TensorBoard + images, _ = next(iter(train_loader)) + writer.add_graph(model, images.to(device)) + writer.close() + + for epoch in range(num_epochs): + losses = [] + accuracies = [] + + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + losses.append(loss.item()) + + # backward + optimizer.zero_grad() + loss.backward() + optimizer.step() + + # Calculate 'running' training accuracy + features = data.reshape(data.shape[0], -1) + img_grid = torchvision.utils.make_grid(data) + _, predictions = scores.max(1) + num_correct = (predictions == targets).sum() + running_train_acc = float(num_correct) / float(data.shape[0]) + accuracies.append(running_train_acc) + + # Plot things to tensorboard + class_labels = [classes[label] for label in predictions] + writer.add_image("mnist_images", img_grid) + writer.add_histogram("fc1", model.fc1.weight) + writer.add_scalar("Training loss", loss, global_step=step) + writer.add_scalar( + "Training Accuracy", running_train_acc, global_step=step + ) + + if batch_idx == 230: + writer.add_embedding( + features, + metadata=class_labels, + label_img=data, + global_step=batch_idx, + ) + step += 1 + + writer.add_hparams( + {"lr": learning_rate, "bsize": batch_size}, + { + "accuracy": sum(accuracies) / len(accuracies), + "loss": sum(losses) / len(losses), + }, + ) diff --git a/ML/Pytorch/Basics/pytorch_transforms.py b/ML/Pytorch/Basics/pytorch_transforms.py new file mode 100644 index 0000000..85c57f5 --- /dev/null +++ b/ML/Pytorch/Basics/pytorch_transforms.py @@ -0,0 +1,155 @@ +""" +Shows a small example of how to use transformations (perhaps unecessarily many) +on CIFAR10 dataset and training on a small CNN toy network. + +Video explanation: https://youtu.be/Zvd276j9sZ8 +Got any questions leave a comment I'm pretty good at responding on youtube + +Programmed by Aladdin Persson +* 2020-04-09 Initial coding +""" + +# Imports +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torch.nn.functional as F # All functions that don't have any parameters +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset + +# Simple CNN +class CNN(nn.Module): + def __init__(self, in_channels, num_classes): + super(CNN, self).__init__() + self.conv1 = nn.Conv2d( + in_channels=in_channels, + out_channels=8, + kernel_size=(3, 3), + stride=(1, 1), + padding=(1, 1), + ) + self.pool = nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2)) + self.conv2 = nn.Conv2d( + in_channels=8, + out_channels=16, + kernel_size=(3, 3), + stride=(1, 1), + padding=(1, 1), + ) + self.fc1 = nn.Linear(16 * 8 * 8, num_classes) + + def forward(self, x): + x = F.relu(self.conv1(x)) + x = self.pool(x) + x = F.relu(self.conv2(x)) + x = self.pool(x) + x = x.reshape(x.shape[0], -1) + x = self.fc1(x) + + return x + + +# Set device +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Hyperparameters +learning_rate = 1e-4 +batch_size = 64 +num_epochs = 5 + + +# Load pretrain model & modify it +model = CNN(in_channels=3, num_classes=10) +model.classifier = nn.Sequential(nn.Linear(512, 100), nn.ReLU(), nn.Linear(100, 10)) +model.to(device) + +# Load Data +my_transforms = transforms.Compose( + [ # Compose makes it possible to have many transforms + transforms.Resize((36, 36)), # Resizes (32,32) to (36,36) + transforms.RandomCrop((32, 32)), # Takes a random (32,32) crop + transforms.ColorJitter(brightness=0.5), # Change brightness of image + transforms.RandomRotation( + degrees=45 + ), # Perhaps a random rotation from -45 to 45 degrees + transforms.RandomHorizontalFlip( + p=0.5 + ), # Flips the image horizontally with probability 0.5 + transforms.RandomVerticalFlip( + p=0.05 + ), # Flips image vertically with probability 0.05 + transforms.RandomGrayscale(p=0.2), # Converts to grayscale with probability 0.2 + transforms.ToTensor(), # Finally converts PIL image to tensor so we can train w. pytorch + transforms.Normalize( + mean=[0.5, 0.5, 0.5], std=[0.5, 0.5, 0.5] + ), # Note: these values aren't optimal + ] +) + + +train_dataset = datasets.CIFAR10( + root="dataset/", train=True, transform=my_transforms, download=True +) +train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size, shuffle=True) + +# Loss and optimizer +criterion = nn.CrossEntropyLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Train Network +for epoch in range(num_epochs): + losses = [] + + for batch_idx, (data, targets) in enumerate(train_loader): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores, targets) + + losses.append(loss.item()) + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent or adam step + optimizer.step() + + print(f"Cost at epoch {epoch} is {sum(losses)/len(losses):.5f}") + +# Check accuracy on training & test to see how good our model + + +def check_accuracy(loader, model): + if loader.dataset.train: + print("Checking accuracy on training data") + else: + print("Checking accuracy on test data") + + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + + scores = model(x) + _, predictions = scores.max(1) + num_correct += (predictions == y).sum() + num_samples += predictions.size(0) + + print( + f"Got {num_correct} / {num_samples} with accuracy {float(num_correct)/float(num_samples)*100:.2f}" + ) + + model.train() + + +check_accuracy(train_loader, model) diff --git a/ML/Pytorch/Basics/set_deterministic_behavior/pytorch_set_seeds.py b/ML/Pytorch/Basics/set_deterministic_behavior/pytorch_set_seeds.py new file mode 100644 index 0000000..9128d73 --- /dev/null +++ b/ML/Pytorch/Basics/set_deterministic_behavior/pytorch_set_seeds.py @@ -0,0 +1,15 @@ +import random, torch, os, numpy as np + +def seed_everything(seed=42): + os.environ['PYTHONHASHSEED'] = str(seed) + random.seed(seed) + np.random.seed(seed) + torch.manual_seed(seed) + torch.cuda.manual_seed(seed) + torch.cuda.manual_seed_all(seed) + torch.backends.cudnn.deterministic = True + torch.backends.cudnn.benchmark = False + +seed_everything() + +# Do training etc after running seed_everything \ No newline at end of file diff --git a/ML/Pytorch/CNN_architectures/lenet5_pytorch.py b/ML/Pytorch/CNN_architectures/lenet5_pytorch.py new file mode 100644 index 0000000..1731fff --- /dev/null +++ b/ML/Pytorch/CNN_architectures/lenet5_pytorch.py @@ -0,0 +1,67 @@ +""" +An implementation of LeNet CNN architecture. + +Video explanation: https://youtu.be/fcOW-Zyb5Bo +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-05 Initial coding + +""" + +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions + + +class LeNet(nn.Module): + def __init__(self): + super(LeNet, self).__init__() + self.relu = nn.ReLU() + self.pool = nn.AvgPool2d(kernel_size=(2, 2), stride=(2, 2)) + self.conv1 = nn.Conv2d( + in_channels=1, + out_channels=6, + kernel_size=(5, 5), + stride=(1, 1), + padding=(0, 0), + ) + self.conv2 = nn.Conv2d( + in_channels=6, + out_channels=16, + kernel_size=(5, 5), + stride=(1, 1), + padding=(0, 0), + ) + self.conv3 = nn.Conv2d( + in_channels=16, + out_channels=120, + kernel_size=(5, 5), + stride=(1, 1), + padding=(0, 0), + ) + self.linear1 = nn.Linear(120, 84) + self.linear2 = nn.Linear(84, 10) + + def forward(self, x): + x = self.relu(self.conv1(x)) + x = self.pool(x) + x = self.relu(self.conv2(x)) + x = self.pool(x) + x = self.relu( + self.conv3(x) + ) # num_examples x 120 x 1 x 1 --> num_examples x 120 + x = x.reshape(x.shape[0], -1) + x = self.relu(self.linear1(x)) + x = self.linear2(x) + return x + + +def test_lenet(): + x = torch.randn(64, 1, 32, 32) + model = LeNet() + return model(x) + + +if __name__ == "__main__": + out = test_lenet() + print(out.shape) diff --git a/ML/Pytorch/CNN_architectures/pytorch_inceptionet.py b/ML/Pytorch/CNN_architectures/pytorch_inceptionet.py new file mode 100644 index 0000000..c70cde7 --- /dev/null +++ b/ML/Pytorch/CNN_architectures/pytorch_inceptionet.py @@ -0,0 +1,166 @@ +""" +An implementation of GoogLeNet / InceptionNet from scratch. + +Video explanation: https://youtu.be/uQc4Fs7yx5I +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-07 Initial coding + +""" + +# Imports +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions + + +class GoogLeNet(nn.Module): + def __init__(self, aux_logits=True, num_classes=1000): + super(GoogLeNet, self).__init__() + assert aux_logits == True or aux_logits == False + self.aux_logits = aux_logits + + # Write in_channels, etc, all explicit in self.conv1, rest will write to + # make everything as compact as possible, kernel_size=3 instead of (3,3) + self.conv1 = conv_block( + in_channels=3, + out_channels=64, + kernel_size=(7, 7), + stride=(2, 2), + padding=(3, 3), + ) + + self.maxpool1 = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) + self.conv2 = conv_block(64, 192, kernel_size=3, stride=1, padding=1) + self.maxpool2 = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) + + # In this order: in_channels, out_1x1, red_3x3, out_3x3, red_5x5, out_5x5, out_1x1pool + self.inception3a = Inception_block(192, 64, 96, 128, 16, 32, 32) + self.inception3b = Inception_block(256, 128, 128, 192, 32, 96, 64) + self.maxpool3 = nn.MaxPool2d(kernel_size=(3, 3), stride=2, padding=1) + + self.inception4a = Inception_block(480, 192, 96, 208, 16, 48, 64) + self.inception4b = Inception_block(512, 160, 112, 224, 24, 64, 64) + self.inception4c = Inception_block(512, 128, 128, 256, 24, 64, 64) + self.inception4d = Inception_block(512, 112, 144, 288, 32, 64, 64) + self.inception4e = Inception_block(528, 256, 160, 320, 32, 128, 128) + self.maxpool4 = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) + + self.inception5a = Inception_block(832, 256, 160, 320, 32, 128, 128) + self.inception5b = Inception_block(832, 384, 192, 384, 48, 128, 128) + + self.avgpool = nn.AvgPool2d(kernel_size=7, stride=1) + self.dropout = nn.Dropout(p=0.4) + self.fc1 = nn.Linear(1024, 1000) + + if self.aux_logits: + self.aux1 = InceptionAux(512, num_classes) + self.aux2 = InceptionAux(528, num_classes) + else: + self.aux1 = self.aux2 = None + + def forward(self, x): + x = self.conv1(x) + x = self.maxpool1(x) + x = self.conv2(x) + # x = self.conv3(x) + x = self.maxpool2(x) + + x = self.inception3a(x) + x = self.inception3b(x) + x = self.maxpool3(x) + + x = self.inception4a(x) + + # Auxiliary Softmax classifier 1 + if self.aux_logits and self.training: + aux1 = self.aux1(x) + + x = self.inception4b(x) + x = self.inception4c(x) + x = self.inception4d(x) + + # Auxiliary Softmax classifier 2 + if self.aux_logits and self.training: + aux2 = self.aux2(x) + + x = self.inception4e(x) + x = self.maxpool4(x) + x = self.inception5a(x) + x = self.inception5b(x) + x = self.avgpool(x) + x = x.reshape(x.shape[0], -1) + x = self.dropout(x) + x = self.fc1(x) + + if self.aux_logits and self.training: + return aux1, aux2, x + else: + return x + + +class Inception_block(nn.Module): + def __init__( + self, in_channels, out_1x1, red_3x3, out_3x3, red_5x5, out_5x5, out_1x1pool + ): + super(Inception_block, self).__init__() + self.branch1 = conv_block(in_channels, out_1x1, kernel_size=(1, 1)) + + self.branch2 = nn.Sequential( + conv_block(in_channels, red_3x3, kernel_size=(1, 1)), + conv_block(red_3x3, out_3x3, kernel_size=(3, 3), padding=(1, 1)), + ) + + self.branch3 = nn.Sequential( + conv_block(in_channels, red_5x5, kernel_size=(1, 1)), + conv_block(red_5x5, out_5x5, kernel_size=(5, 5), padding=(2, 2)), + ) + + self.branch4 = nn.Sequential( + nn.MaxPool2d(kernel_size=(3, 3), stride=(1, 1), padding=(1, 1)), + conv_block(in_channels, out_1x1pool, kernel_size=(1, 1)), + ) + + def forward(self, x): + return torch.cat( + [self.branch1(x), self.branch2(x), self.branch3(x), self.branch4(x)], 1 + ) + + +class InceptionAux(nn.Module): + def __init__(self, in_channels, num_classes): + super(InceptionAux, self).__init__() + self.relu = nn.ReLU() + self.dropout = nn.Dropout(p=0.7) + self.pool = nn.AvgPool2d(kernel_size=5, stride=3) + self.conv = conv_block(in_channels, 128, kernel_size=1) + self.fc1 = nn.Linear(2048, 1024) + self.fc2 = nn.Linear(1024, num_classes) + + def forward(self, x): + x = self.pool(x) + x = self.conv(x) + x = x.reshape(x.shape[0], -1) + x = self.relu(self.fc1(x)) + x = self.dropout(x) + x = self.fc2(x) + + return x + + +class conv_block(nn.Module): + def __init__(self, in_channels, out_channels, **kwargs): + super(conv_block, self).__init__() + self.relu = nn.ReLU() + self.conv = nn.Conv2d(in_channels, out_channels, **kwargs) + self.batchnorm = nn.BatchNorm2d(out_channels) + + def forward(self, x): + return self.relu(self.batchnorm(self.conv(x))) + + +if __name__ == "__main__": + # N = 3 (Mini batch size) + x = torch.randn(3, 3, 224, 224) + model = GoogLeNet(aux_logits=True, num_classes=1000) + print(model(x)[2].shape) diff --git a/ML/Pytorch/CNN_architectures/pytorch_resnet.py b/ML/Pytorch/CNN_architectures/pytorch_resnet.py new file mode 100644 index 0000000..4822d12 --- /dev/null +++ b/ML/Pytorch/CNN_architectures/pytorch_resnet.py @@ -0,0 +1,163 @@ +# -*- coding: utf-8 -*- +""" +From scratch implementation of the famous ResNet models. +The intuition for ResNet is simple and clear, but to code +it didn't feel super clear at first, even when reading Pytorch own +implementation. + +Video explanation: +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-12 Initial coding +""" + +import torch +import torch.nn as nn + + +class block(nn.Module): + def __init__( + self, in_channels, intermediate_channels, identity_downsample=None, stride=1 + ): + super(block, self).__init__() + self.expansion = 4 + self.conv1 = nn.Conv2d( + in_channels, intermediate_channels, kernel_size=1, stride=1, padding=0 + ) + self.bn1 = nn.BatchNorm2d(intermediate_channels) + self.conv2 = nn.Conv2d( + intermediate_channels, + intermediate_channels, + kernel_size=3, + stride=stride, + padding=1, + ) + self.bn2 = nn.BatchNorm2d(intermediate_channels) + self.conv3 = nn.Conv2d( + intermediate_channels, + intermediate_channels * self.expansion, + kernel_size=1, + stride=1, + padding=0, + ) + self.bn3 = nn.BatchNorm2d(intermediate_channels * self.expansion) + self.relu = nn.ReLU() + self.identity_downsample = identity_downsample + self.stride = stride + + def forward(self, x): + identity = x.clone() + + x = self.conv1(x) + x = self.bn1(x) + x = self.relu(x) + x = self.conv2(x) + x = self.bn2(x) + x = self.relu(x) + x = self.conv3(x) + x = self.bn3(x) + + if self.identity_downsample is not None: + identity = self.identity_downsample(identity) + + x += identity + x = self.relu(x) + return x + + +class ResNet(nn.Module): + def __init__(self, block, layers, image_channels, num_classes): + super(ResNet, self).__init__() + self.in_channels = 64 + self.conv1 = nn.Conv2d(image_channels, 64, kernel_size=7, stride=2, padding=3) + self.bn1 = nn.BatchNorm2d(64) + self.relu = nn.ReLU() + self.maxpool = nn.MaxPool2d(kernel_size=3, stride=2, padding=1) + + # Essentially the entire ResNet architecture are in these 4 lines below + self.layer1 = self._make_layer( + block, layers[0], intermediate_channels=64, stride=1 + ) + self.layer2 = self._make_layer( + block, layers[1], intermediate_channels=128, stride=2 + ) + self.layer3 = self._make_layer( + block, layers[2], intermediate_channels=256, stride=2 + ) + self.layer4 = self._make_layer( + block, layers[3], intermediate_channels=512, stride=2 + ) + + self.avgpool = nn.AdaptiveAvgPool2d((1, 1)) + self.fc = nn.Linear(512 * 4, num_classes) + + def forward(self, x): + x = self.conv1(x) + x = self.bn1(x) + x = self.relu(x) + x = self.maxpool(x) + x = self.layer1(x) + x = self.layer2(x) + x = self.layer3(x) + x = self.layer4(x) + + x = self.avgpool(x) + x = x.reshape(x.shape[0], -1) + x = self.fc(x) + + return x + + def _make_layer(self, block, num_residual_blocks, intermediate_channels, stride): + identity_downsample = None + layers = [] + + # Either if we half the input space for ex, 56x56 -> 28x28 (stride=2), or channels changes + # we need to adapt the Identity (skip connection) so it will be able to be added + # to the layer that's ahead + if stride != 1 or self.in_channels != intermediate_channels * 4: + identity_downsample = nn.Sequential( + nn.Conv2d( + self.in_channels, + intermediate_channels * 4, + kernel_size=1, + stride=stride, + ), + nn.BatchNorm2d(intermediate_channels * 4), + ) + + layers.append( + block(self.in_channels, intermediate_channels, identity_downsample, stride) + ) + + # The expansion size is always 4 for ResNet 50,101,152 + self.in_channels = intermediate_channels * 4 + + # For example for first resnet layer: 256 will be mapped to 64 as intermediate layer, + # then finally back to 256. Hence no identity downsample is needed, since stride = 1, + # and also same amount of channels. + for i in range(num_residual_blocks - 1): + layers.append(block(self.in_channels, intermediate_channels)) + + return nn.Sequential(*layers) + + +def ResNet50(img_channel=3, num_classes=1000): + return ResNet(block, [3, 4, 6, 3], img_channel, num_classes) + + +def ResNet101(img_channel=3, num_classes=1000): + return ResNet(block, [3, 4, 23, 3], img_channel, num_classes) + + +def ResNet152(img_channel=3, num_classes=1000): + return ResNet(block, [3, 8, 36, 3], img_channel, num_classes) + + +def test(): + net = ResNet101(img_channel=3, num_classes=1000) + y = net(torch.randn(4, 3, 224, 224)).to("cuda") + print(y.size()) + + +test() diff --git a/ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py b/ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py new file mode 100644 index 0000000..4d47e2a --- /dev/null +++ b/ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py @@ -0,0 +1,119 @@ +""" +A from scratch implementation of the VGG architecture. + +Video explanation: https://youtu.be/ACmuBbuXn20 +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-05 Initial coding + +""" + +# Imports +import torch +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions + +VGG_types = { + "VGG11": [64, "M", 128, "M", 256, 256, "M", 512, 512, "M", 512, 512, "M"], + "VGG13": [64, 64, "M", 128, 128, "M", 256, 256, "M", 512, 512, "M", 512, 512, "M"], + "VGG16": [ + 64, + 64, + "M", + 128, + 128, + "M", + 256, + 256, + 256, + "M", + 512, + 512, + 512, + "M", + 512, + 512, + 512, + "M", + ], + "VGG19": [ + 64, + 64, + "M", + 128, + 128, + "M", + 256, + 256, + 256, + 256, + "M", + 512, + 512, + 512, + 512, + "M", + 512, + 512, + 512, + 512, + "M", + ], +} + + +class VGG_net(nn.Module): + def __init__(self, in_channels=3, num_classes=1000): + super(VGG_net, self).__init__() + self.in_channels = in_channels + self.conv_layers = self.create_conv_layers(VGG_types["VGG16"]) + + self.fcs = nn.Sequential( + nn.Linear(512 * 7 * 7, 4096), + nn.ReLU(), + nn.Dropout(p=0.5), + nn.Linear(4096, 4096), + nn.ReLU(), + nn.Dropout(p=0.5), + nn.Linear(4096, num_classes), + ) + + def forward(self, x): + x = self.conv_layers(x) + x = x.reshape(x.shape[0], -1) + x = self.fcs(x) + return x + + def create_conv_layers(self, architecture): + layers = [] + in_channels = self.in_channels + + for x in architecture: + if type(x) == int: + out_channels = x + + layers += [ + nn.Conv2d( + in_channels=in_channels, + out_channels=out_channels, + kernel_size=(3, 3), + stride=(1, 1), + padding=(1, 1), + ), + nn.BatchNorm2d(x), + nn.ReLU(), + ] + in_channels = x + elif x == "M": + layers += [nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2))] + + return nn.Sequential(*layers) + + +if __name__ == "__main__": + device = "cuda" if torch.cuda.is_available() else "cpu" + model = VGG_net(in_channels=3, num_classes=1000).to(device) + print(model) + ## N = 3 (Mini batch size) + # x = torch.randn(3, 3, 224, 224).to(device) + # print(model(x).shape) diff --git a/ML/Pytorch/GANs/1. SimpleGAN/fc_gan.py b/ML/Pytorch/GANs/1. SimpleGAN/fc_gan.py new file mode 100644 index 0000000..c2cc725 --- /dev/null +++ b/ML/Pytorch/GANs/1. SimpleGAN/fc_gan.py @@ -0,0 +1,107 @@ +import torch +import torch.nn as nn +import torch.optim as optim +import torchvision +import torchvision.datasets as datasets +from torch.utils.data import DataLoader +import torchvision.transforms as transforms +from torch.utils.tensorboard import SummaryWriter # to print to tensorboard + + +class Discriminator(nn.Module): + def __init__(self, in_features): + super().__init__() + self.disc = nn.Sequential( + nn.Linear(in_features, 128), + nn.LeakyReLU(0.01), + nn.Linear(128, 1), + nn.Sigmoid(), + ) + + def forward(self, x): + return self.disc(x) + + +class Generator(nn.Module): + def __init__(self, z_dim, img_dim): + super().__init__() + self.gen = nn.Sequential( + nn.Linear(z_dim, 256), + nn.LeakyReLU(0.01), + nn.Linear(256, img_dim), + nn.Tanh(), # normalize inputs to [-1, 1] so make outputs [-1, 1] + ) + + def forward(self, x): + return self.gen(x) + + +# Hyperparameters etc. +device = "cuda" if torch.cuda.is_available() else "cpu" +lr = 3e-4 +z_dim = 64 +image_dim = 28 * 28 * 1 # 784 +batch_size = 32 +num_epochs = 50 + +disc = Discriminator(image_dim).to(device) +gen = Generator(z_dim, image_dim).to(device) +fixed_noise = torch.randn((batch_size, z_dim)).to(device) +transforms = transforms.Compose( + [transforms.ToTensor(), transforms.Normalize((0.5,), (0.5,)),] +) + +dataset = datasets.MNIST(root="dataset/", transform=transforms, download=True) +loader = DataLoader(dataset, batch_size=batch_size, shuffle=True) +opt_disc = optim.Adam(disc.parameters(), lr=lr) +opt_gen = optim.Adam(gen.parameters(), lr=lr) +criterion = nn.BCELoss() +writer_fake = SummaryWriter(f"logs/fake") +writer_real = SummaryWriter(f"logs/real") +step = 0 + +for epoch in range(num_epochs): + for batch_idx, (real, _) in enumerate(loader): + real = real.view(-1, 784).to(device) + batch_size = real.shape[0] + + ### Train Discriminator: max log(D(x)) + log(1 - D(G(z))) + noise = torch.randn(batch_size, z_dim).to(device) + fake = gen(noise) + disc_real = disc(real).view(-1) + lossD_real = criterion(disc_real, torch.ones_like(disc_real)) + disc_fake = disc(fake).view(-1) + lossD_fake = criterion(disc_fake, torch.zeros_like(disc_fake)) + lossD = (lossD_real + lossD_fake) / 2 + disc.zero_grad() + lossD.backward(retain_graph=True) + opt_disc.step() + + ### Train Generator: min log(1 - D(G(z))) <-> max log(D(G(z)) + # where the second option of maximizing doesn't suffer from + # saturating gradients + output = disc(fake).view(-1) + lossG = criterion(output, torch.ones_like(output)) + gen.zero_grad() + lossG.backward() + opt_gen.step() + + if batch_idx == 0: + print( + f"Epoch [{epoch}/{num_epochs}] Batch {batch_idx}/{len(loader)} \ + Loss D: {lossD:.4f}, loss G: {lossG:.4f}" + ) + + with torch.no_grad(): + fake = gen(fixed_noise).reshape(-1, 1, 28, 28) + data = real.reshape(-1, 1, 28, 28) + img_grid_fake = torchvision.utils.make_grid(fake, normalize=True) + img_grid_real = torchvision.utils.make_grid(data, normalize=True) + + writer_fake.add_image( + "Mnist Fake Images", img_grid_fake, global_step=step + ) + writer_real.add_image( + "Mnist Real Images", img_grid_real, global_step=step + ) + step += 1 \ No newline at end of file diff --git a/ML/Pytorch/GANs/2. DCGAN/model.py b/ML/Pytorch/GANs/2. DCGAN/model.py new file mode 100644 index 0000000..ec3e839 --- /dev/null +++ b/ML/Pytorch/GANs/2. DCGAN/model.py @@ -0,0 +1,96 @@ +""" +Discriminator and Generator implementation from DCGAN paper +""" + +import torch +import torch.nn as nn + + +class Discriminator(nn.Module): + def __init__(self, channels_img, features_d): + super(Discriminator, self).__init__() + self.disc = nn.Sequential( + # input: N x channels_img x 64 x 64 + nn.Conv2d( + channels_img, features_d, kernel_size=4, stride=2, padding=1 + ), + nn.LeakyReLU(0.2), + # _block(in_channels, out_channels, kernel_size, stride, padding) + self._block(features_d, features_d * 2, 4, 2, 1), + self._block(features_d * 2, features_d * 4, 4, 2, 1), + self._block(features_d * 4, features_d * 8, 4, 2, 1), + # After all _block img output is 4x4 (Conv2d below makes into 1x1) + nn.Conv2d(features_d * 8, 1, kernel_size=4, stride=2, padding=0), + nn.Sigmoid(), + ) + + def _block(self, in_channels, out_channels, kernel_size, stride, padding): + return nn.Sequential( + nn.Conv2d( + in_channels, + out_channels, + kernel_size, + stride, + padding, + bias=False, + ), + #nn.BatchNorm2d(out_channels), + nn.LeakyReLU(0.2), + ) + + def forward(self, x): + return self.disc(x) + + +class Generator(nn.Module): + def __init__(self, channels_noise, channels_img, features_g): + super(Generator, self).__init__() + self.net = nn.Sequential( + # Input: N x channels_noise x 1 x 1 + self._block(channels_noise, features_g * 16, 4, 1, 0), # img: 4x4 + self._block(features_g * 16, features_g * 8, 4, 2, 1), # img: 8x8 + self._block(features_g * 8, features_g * 4, 4, 2, 1), # img: 16x16 + self._block(features_g * 4, features_g * 2, 4, 2, 1), # img: 32x32 + nn.ConvTranspose2d( + features_g * 2, channels_img, kernel_size=4, stride=2, padding=1 + ), + # Output: N x channels_img x 64 x 64 + nn.Tanh(), + ) + + def _block(self, in_channels, out_channels, kernel_size, stride, padding): + return nn.Sequential( + nn.ConvTranspose2d( + in_channels, + out_channels, + kernel_size, + stride, + padding, + bias=False, + ), + #nn.BatchNorm2d(out_channels), + nn.ReLU(), + ) + + def forward(self, x): + return self.net(x) + + +def initialize_weights(model): + # Initializes weights according to the DCGAN paper + for m in model.modules(): + if isinstance(m, (nn.Conv2d, nn.ConvTranspose2d, nn.BatchNorm2d)): + nn.init.normal_(m.weight.data, 0.0, 0.02) + +def test(): + N, in_channels, H, W = 8, 3, 64, 64 + noise_dim = 100 + x = torch.randn((N, in_channels, H, W)) + disc = Discriminator(in_channels, 8) + assert disc(x).shape == (N, 1, 1, 1), "Discriminator test failed" + gen = Generator(noise_dim, in_channels, 8) + z = torch.randn((N, noise_dim, 1, 1)) + assert gen(z).shape == (N, in_channels, H, W), "Generator test failed" + + +# test() diff --git a/ML/Pytorch/GANs/2. DCGAN/train.py b/ML/Pytorch/GANs/2. DCGAN/train.py new file mode 100644 index 0000000..280ce9e --- /dev/null +++ b/ML/Pytorch/GANs/2. DCGAN/train.py @@ -0,0 +1,105 @@ +""" +Training of DCGAN network on MNIST dataset with Discriminator +and Generator imported from models.py +""" + +import torch +import torch.nn as nn +import torch.optim as optim +import torchvision +import torchvision.datasets as datasets +import torchvision.transforms as transforms +from torch.utils.data import DataLoader +from torch.utils.tensorboard import SummaryWriter +from model import Discriminator, Generator, initialize_weights + +# Hyperparameters etc. +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") +LEARNING_RATE = 2e-4 # could also use two lrs, one for gen and one for disc +BATCH_SIZE = 128 +IMAGE_SIZE = 64 +CHANNELS_IMG = 1 +NOISE_DIM = 100 +NUM_EPOCHS = 5 +FEATURES_DISC = 64 +FEATURES_GEN = 64 + +transforms = transforms.Compose( + [ + transforms.Resize(IMAGE_SIZE), + transforms.ToTensor(), + transforms.Normalize( + [0.5 for _ in range(CHANNELS_IMG)], [0.5 for _ in range(CHANNELS_IMG)] + ), + ] +) + +# If you train on MNIST, remember to set channels_img to 1 +dataset = datasets.MNIST(root="dataset/", train=True, transform=transforms, + download=True) + +# comment mnist above and uncomment below if train on CelebA +#dataset = datasets.ImageFolder(root="celeb_dataset", transform=transforms) +dataloader = DataLoader(dataset, batch_size=BATCH_SIZE, shuffle=True) +gen = Generator(NOISE_DIM, CHANNELS_IMG, FEATURES_GEN).to(device) +disc = Discriminator(CHANNELS_IMG, FEATURES_DISC).to(device) +initialize_weights(gen) +initialize_weights(disc) + +opt_gen = optim.Adam(gen.parameters(), lr=LEARNING_RATE, betas=(0.5, 0.999)) +opt_disc = optim.Adam(disc.parameters(), lr=LEARNING_RATE, betas=(0.5, 0.999)) +criterion = nn.BCELoss() + +fixed_noise = torch.randn(32, NOISE_DIM, 1, 1).to(device) +writer_real = SummaryWriter(f"logs/real") +writer_fake = SummaryWriter(f"logs/fake") +step = 0 + +gen.train() +disc.train() + +for epoch in range(NUM_EPOCHS): + # Target labels not needed! <3 unsupervised + for batch_idx, (real, _) in enumerate(dataloader): + real = real.to(device) + noise = torch.randn(BATCH_SIZE, NOISE_DIM, 1, 1).to(device) + fake = gen(noise) + + ### Train Discriminator: max log(D(x)) + log(1 - D(G(z))) + disc_real = disc(real).reshape(-1) + loss_disc_real = criterion(disc_real, torch.ones_like(disc_real)) + disc_fake = disc(fake.detach()).reshape(-1) + loss_disc_fake = criterion(disc_fake, torch.zeros_like(disc_fake)) + loss_disc = (loss_disc_real + loss_disc_fake) / 2 + disc.zero_grad() + loss_disc.backward() + opt_disc.step() + + ### Train Generator: min log(1 - D(G(z))) <-> max log(D(G(z)) + output = disc(fake).reshape(-1) + loss_gen = criterion(output, torch.ones_like(output)) + gen.zero_grad() + loss_gen.backward() + opt_gen.step() + + # Print losses occasionally and print to tensorboard + if batch_idx % 100 == 0: + print( + f"Epoch [{epoch}/{NUM_EPOCHS}] Batch {batch_idx}/{len(dataloader)} \ + Loss D: {loss_disc:.4f}, loss G: {loss_gen:.4f}" + ) + + with torch.no_grad(): + fake = gen(fixed_noise) + # take out (up to) 32 examples + img_grid_real = torchvision.utils.make_grid( + real[:32], normalize=True + ) + img_grid_fake = torchvision.utils.make_grid( + fake[:32], normalize=True + ) + + writer_real.add_image("Real", img_grid_real, global_step=step) + writer_fake.add_image("Fake", img_grid_fake, global_step=step) + + step += 1 \ No newline at end of file diff --git a/ML/Pytorch/GANs/3. WGAN/model.py b/ML/Pytorch/GANs/3. WGAN/model.py new file mode 100644 index 0000000..1621caf --- /dev/null +++ b/ML/Pytorch/GANs/3. WGAN/model.py @@ -0,0 +1,98 @@ +""" +Discriminator and Generator implementation from DCGAN paper, +with removed Sigmoid() as output from Discriminator (and therefor +it should be called critic) +""" + +import torch +import torch.nn as nn + + +class Discriminator(nn.Module): + def __init__(self, channels_img, features_d): + super(Discriminator, self).__init__() + self.disc = nn.Sequential( + # input: N x channels_img x 64 x 64 + nn.Conv2d( + channels_img, features_d, kernel_size=4, stride=2, padding=1 + ), + nn.LeakyReLU(0.2), + # _block(in_channels, out_channels, kernel_size, stride, padding) + self._block(features_d, features_d * 2, 4, 2, 1), + self._block(features_d * 2, features_d * 4, 4, 2, 1), + self._block(features_d * 4, features_d * 8, 4, 2, 1), + # After all _block img output is 4x4 (Conv2d below makes into 1x1) + nn.Conv2d(features_d * 8, 1, kernel_size=4, stride=2, padding=0), + ) + + def _block(self, in_channels, out_channels, kernel_size, stride, padding): + return nn.Sequential( + nn.Conv2d( + in_channels, + out_channels, + kernel_size, + stride, + padding, + bias=False, + ), + nn.InstanceNorm2d(out_channels, affine=True), + nn.LeakyReLU(0.2), + ) + + def forward(self, x): + return self.disc(x) + + +class Generator(nn.Module): + def __init__(self, channels_noise, channels_img, features_g): + super(Generator, self).__init__() + self.net = nn.Sequential( + # Input: N x channels_noise x 1 x 1 + self._block(channels_noise, features_g * 16, 4, 1, 0), # img: 4x4 + self._block(features_g * 16, features_g * 8, 4, 2, 1), # img: 8x8 + self._block(features_g * 8, features_g * 4, 4, 2, 1), # img: 16x16 + self._block(features_g * 4, features_g * 2, 4, 2, 1), # img: 32x32 + nn.ConvTranspose2d( + features_g * 2, channels_img, kernel_size=4, stride=2, padding=1 + ), + # Output: N x channels_img x 64 x 64 + nn.Tanh(), + ) + + def _block(self, in_channels, out_channels, kernel_size, stride, padding): + return nn.Sequential( + nn.ConvTranspose2d( + in_channels, + out_channels, + kernel_size, + stride, + padding, + bias=False, + ), + nn.BatchNorm2d(out_channels), + nn.ReLU(), + ) + + def forward(self, x): + return self.net(x) + + +def initialize_weights(model): + # Initializes weights according to the DCGAN paper + for m in model.modules(): + if isinstance(m, (nn.Conv2d, nn.ConvTranspose2d, nn.BatchNorm2d)): + nn.init.normal_(m.weight.data, 0.0, 0.02) + + +def test(): + N, in_channels, H, W = 8, 3, 64, 64 + noise_dim = 100 + x = torch.randn((N, in_channels, H, W)) + disc = Discriminator(in_channels, 8) + assert disc(x).shape == (N, 1, 1, 1), "Discriminator test failed" + gen = Generator(noise_dim, in_channels, 8) + z = torch.randn((N, noise_dim, 1, 1)) + assert gen(z).shape == (N, in_channels, H, W), "Generator test failed" + + +# test() diff --git a/ML/Pytorch/GANs/3. WGAN/train.py b/ML/Pytorch/GANs/3. WGAN/train.py new file mode 100644 index 0000000..dfb3fc1 --- /dev/null +++ b/ML/Pytorch/GANs/3. WGAN/train.py @@ -0,0 +1,114 @@ +""" +Training of DCGAN network with WGAN loss +""" + +import torch +import torch.nn as nn +import torch.optim as optim +import torchvision +import torchvision.datasets as datasets +import torchvision.transforms as transforms +from torch.utils.data import DataLoader +from torch.utils.tensorboard import SummaryWriter +from model import Discriminator, Generator, initialize_weights + +# Hyperparameters etc +device = "cuda" if torch.cuda.is_available() else "cpu" +LEARNING_RATE = 5e-5 +BATCH_SIZE = 64 +IMAGE_SIZE = 64 +CHANNELS_IMG = 1 +Z_DIM = 128 +NUM_EPOCHS = 5 +FEATURES_CRITIC = 64 +FEATURES_GEN = 64 +CRITIC_ITERATIONS = 5 +WEIGHT_CLIP = 0.01 + +transforms = transforms.Compose( + [ + transforms.Resize(IMAGE_SIZE), + transforms.ToTensor(), + transforms.Normalize( + [0.5 for _ in range(CHANNELS_IMG)], [0.5 for _ in range(CHANNELS_IMG)] + ), + ] +) + +dataset = datasets.MNIST(root="dataset/", transform=transforms, download=True) +#comment mnist and uncomment below if you want to train on CelebA dataset +#dataset = datasets.ImageFolder(root="celeb_dataset", transform=transforms) +loader = DataLoader(dataset, batch_size=BATCH_SIZE, shuffle=True) + +# initialize gen and disc/critic +gen = Generator(Z_DIM, CHANNELS_IMG, FEATURES_GEN).to(device) +critic = Discriminator(CHANNELS_IMG, FEATURES_CRITIC).to(device) +initialize_weights(gen) +initialize_weights(critic) + +# initializate optimizer +opt_gen = optim.RMSprop(gen.parameters(), lr=LEARNING_RATE) +opt_critic = optim.RMSprop(critic.parameters(), lr=LEARNING_RATE) + +# for tensorboard plotting +fixed_noise = torch.randn(32, Z_DIM, 1, 1).to(device) +writer_real = SummaryWriter(f"logs/real") +writer_fake = SummaryWriter(f"logs/fake") +step = 0 + +gen.train() +critic.train() + +for epoch in range(NUM_EPOCHS): + # Target labels not needed! <3 unsupervised + for batch_idx, (data, _) in enumerate(loader): + data = data.to(device) + cur_batch_size = data.shape[0] + + # Train Critic: max E[critic(real)] - E[critic(fake)] + for _ in range(CRITIC_ITERATIONS): + noise = torch.randn(cur_batch_size, Z_DIM, 1, 1).to(device) + fake = gen(noise) + critic_real = critic(data).reshape(-1) + critic_fake = critic(fake).reshape(-1) + loss_critic = -(torch.mean(critic_real) - torch.mean(critic_fake)) + critic.zero_grad() + loss_critic.backward(retain_graph=True) + opt_critic.step() + + # clip critic weights between -0.01, 0.01 + for p in critic.parameters(): + p.data.clamp_(-WEIGHT_CLIP, WEIGHT_CLIP) + + # Train Generator: max E[critic(gen_fake)] <-> min -E[critic(gen_fake)] + gen_fake = critic(fake).reshape(-1) + loss_gen = -torch.mean(gen_fake) + gen.zero_grad() + loss_gen.backward() + opt_gen.step() + + # Print losses occasionally and print to tensorboard + if batch_idx % 100 == 0 and batch_idx > 0: + gen.eval() + critic.eval() + print( + f"Epoch [{epoch}/{NUM_EPOCHS}] Batch {batch_idx}/{len(loader)} \ + Loss D: {loss_critic:.4f}, loss G: {loss_gen:.4f}" + ) + + with torch.no_grad(): + fake = gen(noise) + # take out (up to) 32 examples + img_grid_real = torchvision.utils.make_grid( + data[:32], normalize=True + ) + img_grid_fake = torchvision.utils.make_grid( + fake[:32], normalize=True + ) + + writer_real.add_image("Real", img_grid_real, global_step=step) + writer_fake.add_image("Fake", img_grid_fake, global_step=step) + + step += 1 + gen.train() + critic.train() diff --git a/ML/Pytorch/GANs/4. WGAN-GP/model.py b/ML/Pytorch/GANs/4. WGAN-GP/model.py new file mode 100644 index 0000000..206ec65 --- /dev/null +++ b/ML/Pytorch/GANs/4. WGAN-GP/model.py @@ -0,0 +1,84 @@ +""" +Discriminator and Generator implementation from DCGAN paper +""" + +import torch +import torch.nn as nn + + +class Discriminator(nn.Module): + def __init__(self, channels_img, features_d): + super(Discriminator, self).__init__() + self.disc = nn.Sequential( + # input: N x channels_img x 64 x 64 + nn.Conv2d(channels_img, features_d, kernel_size=4, stride=2, padding=1), + nn.LeakyReLU(0.2), + # _block(in_channels, out_channels, kernel_size, stride, padding) + self._block(features_d, features_d * 2, 4, 2, 1), + self._block(features_d * 2, features_d * 4, 4, 2, 1), + self._block(features_d * 4, features_d * 8, 4, 2, 1), + # After all _block img output is 4x4 (Conv2d below makes into 1x1) + nn.Conv2d(features_d * 8, 1, kernel_size=4, stride=2, padding=0), + ) + + def _block(self, in_channels, out_channels, kernel_size, stride, padding): + return nn.Sequential( + nn.Conv2d( + in_channels, out_channels, kernel_size, stride, padding, bias=False, + ), + nn.InstanceNorm2d(out_channels, affine=True), + nn.LeakyReLU(0.2), + ) + + def forward(self, x): + return self.disc(x) + + +class Generator(nn.Module): + def __init__(self, channels_noise, channels_img, features_g): + super(Generator, self).__init__() + self.net = nn.Sequential( + # Input: N x channels_noise x 1 x 1 + self._block(channels_noise, features_g * 16, 4, 1, 0), # img: 4x4 + self._block(features_g * 16, features_g * 8, 4, 2, 1), # img: 8x8 + self._block(features_g * 8, features_g * 4, 4, 2, 1), # img: 16x16 + self._block(features_g * 4, features_g * 2, 4, 2, 1), # img: 32x32 + nn.ConvTranspose2d( + features_g * 2, channels_img, kernel_size=4, stride=2, padding=1 + ), + # Output: N x channels_img x 64 x 64 + nn.Tanh(), + ) + + def _block(self, in_channels, out_channels, kernel_size, stride, padding): + return nn.Sequential( + nn.ConvTranspose2d( + in_channels, out_channels, kernel_size, stride, padding, bias=False, + ), + nn.BatchNorm2d(out_channels), + nn.ReLU(), + ) + + def forward(self, x): + return self.net(x) + + +def initialize_weights(model): + # Initializes weights according to the DCGAN paper + for m in model.modules(): + if isinstance(m, (nn.Conv2d, nn.ConvTranspose2d, nn.BatchNorm2d)): + nn.init.normal_(m.weight.data, 0.0, 0.02) + + +def test(): + N, in_channels, H, W = 8, 3, 64, 64 + noise_dim = 100 + x = torch.randn((N, in_channels, H, W)) + disc = Discriminator(in_channels, 8) + assert disc(x).shape == (N, 1, 1, 1), "Discriminator test failed" + gen = Generator(noise_dim, in_channels, 8) + z = torch.randn((N, noise_dim, 1, 1)) + assert gen(z).shape == (N, in_channels, H, W), "Generator test failed" + + +# test() diff --git a/ML/Pytorch/GANs/4. WGAN-GP/train.py b/ML/Pytorch/GANs/4. WGAN-GP/train.py new file mode 100644 index 0000000..9260ce2 --- /dev/null +++ b/ML/Pytorch/GANs/4. WGAN-GP/train.py @@ -0,0 +1,111 @@ +""" +Training of WGAN-GP +""" + +import torch +import torch.nn as nn +import torch.optim as optim +import torchvision +import torchvision.datasets as datasets +import torchvision.transforms as transforms +from torch.utils.data import DataLoader +from torch.utils.tensorboard import SummaryWriter +from utils import gradient_penalty, save_checkpoint, load_checkpoint +from model import Discriminator, Generator, initialize_weights + +# Hyperparameters etc. +device = "cuda" if torch.cuda.is_available() else "cpu" +LEARNING_RATE = 1e-4 +BATCH_SIZE = 64 +IMAGE_SIZE = 64 +CHANNELS_IMG = 1 +Z_DIM = 100 +NUM_EPOCHS = 100 +FEATURES_CRITIC = 16 +FEATURES_GEN = 16 +CRITIC_ITERATIONS = 5 +LAMBDA_GP = 10 + +transforms = transforms.Compose( + [ + transforms.Resize(IMAGE_SIZE), + transforms.ToTensor(), + transforms.Normalize( + [0.5 for _ in range(CHANNELS_IMG)], [0.5 for _ in range(CHANNELS_IMG)]), + ] +) + +dataset = datasets.MNIST(root="dataset/", transform=transforms, download=True) +# comment mnist above and uncomment below for training on CelebA +#dataset = datasets.ImageFolder(root="celeb_dataset", transform=transforms) +loader = DataLoader( + dataset, + batch_size=BATCH_SIZE, + shuffle=True, +) + +# initialize gen and disc, note: discriminator should be called critic, +# according to WGAN paper (since it no longer outputs between [0, 1]) +gen = Generator(Z_DIM, CHANNELS_IMG, FEATURES_GEN).to(device) +critic = Discriminator(CHANNELS_IMG, FEATURES_CRITIC).to(device) +initialize_weights(gen) +initialize_weights(critic) + +# initializate optimizer +opt_gen = optim.Adam(gen.parameters(), lr=LEARNING_RATE, betas=(0.0, 0.9)) +opt_critic = optim.Adam(critic.parameters(), lr=LEARNING_RATE, betas=(0.0, 0.9)) + +# for tensorboard plotting +fixed_noise = torch.randn(32, Z_DIM, 1, 1).to(device) +writer_real = SummaryWriter(f"logs/GAN_MNIST/real") +writer_fake = SummaryWriter(f"logs/GAN_MNIST/fake") +step = 0 + +gen.train() +critic.train() + +for epoch in range(NUM_EPOCHS): + # Target labels not needed! <3 unsupervised + for batch_idx, (real, _) in enumerate(loader): + real = real.to(device) + cur_batch_size = real.shape[0] + + # Train Critic: max E[critic(real)] - E[critic(fake)] + # equivalent to minimizing the negative of that + for _ in range(CRITIC_ITERATIONS): + noise = torch.randn(cur_batch_size, Z_DIM, 1, 1).to(device) + fake = gen(noise) + critic_real = critic(real).reshape(-1) + critic_fake = critic(fake).reshape(-1) + gp = gradient_penalty(critic, real, fake, device=device) + loss_critic = ( + -(torch.mean(critic_real) - torch.mean(critic_fake)) + LAMBDA_GP * gp + ) + critic.zero_grad() + loss_critic.backward(retain_graph=True) + opt_critic.step() + + # Train Generator: max E[critic(gen_fake)] <-> min -E[critic(gen_fake)] + gen_fake = critic(fake).reshape(-1) + loss_gen = -torch.mean(gen_fake) + gen.zero_grad() + loss_gen.backward() + opt_gen.step() + + # Print losses occasionally and print to tensorboard + if batch_idx % 100 == 0 and batch_idx > 0: + print( + f"Epoch [{epoch}/{NUM_EPOCHS}] Batch {batch_idx}/{len(loader)} \ + Loss D: {loss_critic:.4f}, loss G: {loss_gen:.4f}" + ) + + with torch.no_grad(): + fake = gen(fixed_noise) + # take out (up to) 32 examples + img_grid_real = torchvision.utils.make_grid(real[:32], normalize=True) + img_grid_fake = torchvision.utils.make_grid(fake[:32], normalize=True) + + writer_real.add_image("Real", img_grid_real, global_step=step) + writer_fake.add_image("Fake", img_grid_fake, global_step=step) + + step += 1 \ No newline at end of file diff --git a/ML/Pytorch/GANs/4. WGAN-GP/utils.py b/ML/Pytorch/GANs/4. WGAN-GP/utils.py new file mode 100644 index 0000000..603e3f5 --- /dev/null +++ b/ML/Pytorch/GANs/4. WGAN-GP/utils.py @@ -0,0 +1,35 @@ +import torch +import torch.nn as nn + + +def gradient_penalty(critic, real, fake, device="cpu"): + BATCH_SIZE, C, H, W = real.shape + alpha = torch.rand((BATCH_SIZE, 1, 1, 1)).repeat(1, C, H, W).to(device) + interpolated_images = real * alpha + fake * (1 - alpha) + + # Calculate critic scores + mixed_scores = critic(interpolated_images) + + # Take the gradient of the scores with respect to the images + gradient = torch.autograd.grad( + inputs=interpolated_images, + outputs=mixed_scores, + grad_outputs=torch.ones_like(mixed_scores), + create_graph=True, + retain_graph=True, + )[0] + gradient = gradient.view(gradient.shape[0], -1) + gradient_norm = gradient.norm(2, dim=1) + gradient_penalty = torch.mean((gradient_norm - 1) ** 2) + return gradient_penalty + + +def save_checkpoint(state, filename="celeba_wgan_gp.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, gen, disc): + print("=> Loading checkpoint") + gen.load_state_dict(checkpoint['gen']) + disc.load_state_dict(checkpoint['disc']) \ No newline at end of file diff --git a/ML/Pytorch/GANs/5. ProGAN/model.py b/ML/Pytorch/GANs/5. ProGAN/model.py new file mode 100644 index 0000000..f8d3a64 --- /dev/null +++ b/ML/Pytorch/GANs/5. ProGAN/model.py @@ -0,0 +1,205 @@ +""" +Implementation of ProGAN generator and discriminator with the key +attributions from the paper. We have tried to make the implementation +compact but a goal is also to keep it readable and understandable. +Specifically the key points implemented are: + +1) Progressive growing (of model and layers) +2) Minibatch std on Discriminator +3) Normalization with PixelNorm +4) Equalized Learning Rate (here I cheated and only did it on Conv layers) +""" + +import torch +import torch.nn as nn +import torch.nn.functional as F +from math import log2 + +""" +Factors is used in Discrmininator and Generator for how much +the channels should be multiplied and expanded for each layer, +so specifically the first 5 layers the channels stay the same, +whereas when we increase the img_size (towards the later layers) +we decrease the number of chanels by 1/2, 1/4, etc. +""" +factors = [1, 1, 1, 1, 1/2, 1/4, 1/4, 1/8, 1/16] + + +class WSConv2d(nn.Module): + """ + Weight scaled Conv2d (Equalized Learning Rate) + Note that input is multiplied rather than changing weights + this will have the same result. + + Inspired by: + https://github.com/nvnbny/progressive_growing_of_gans/blob/master/modelUtils.py + """ + + def __init__( + self, in_channels, out_channels, kernel_size=3, stride=1, padding=1, gain=2 + ): + super(WSConv2d, self).__init__() + self.conv = nn.Conv2d( + in_channels, out_channels, kernel_size, stride, padding + ) + self.scale = (gain / (self.conv.weight[0].numel())) ** 0.5 + + # initialize conv layer + nn.init.normal_(self.conv.weight) + nn.init.zeros_(self.conv.bias) + + def forward(self, x): + return self.conv(x * self.scale) + + +class PixelNorm(nn.Module): + def __init__(self): + super(PixelNorm, self).__init__() + self.epsilon = 1e-8 + + def forward(self, x): + return x / torch.sqrt( + torch.mean(x ** 2, dim=1, keepdim=True) + self.epsilon + ) + + +class ConvBlock(nn.Module): + def __init__(self, in_channels, out_channels, use_pixelnorm=True): + super(ConvBlock, self).__init__() + self.use_pn = use_pixelnorm + self.conv1 = WSConv2d(in_channels, out_channels) + self.conv2 = WSConv2d(out_channels, out_channels) + self.leaky = nn.LeakyReLU(0.2) + self.pn = PixelNorm() + + def forward(self, x): + x = self.leaky(self.conv1(x)) + x = self.pn(x) if self.use_pn else x + x = self.leaky(self.conv2(x)) + x = self.pn(x) if self.use_pn else x + return x + + +class Generator(nn.Module): + def __init__(self, z_dim, in_channels, img_size, img_channels=3): + super(Generator, self).__init__() + self.prog_blocks, self.rgb_layers = nn.ModuleList([]), nn.ModuleList([]) + + # initial takes 1x1 -> 4x4 + self.initial = nn.Sequential( + nn.ConvTranspose2d(z_dim, in_channels, 4, 1, 0), + nn.LeakyReLU(0.2), + PixelNorm(), + ) + + # Create progression blocks and rgb layers + channels = in_channels + + # we need to double img for log2(img_size/4) and + # +1 in loop for initial 4x4 + for idx in range(int(log2(img_size/4)) + 1): + conv_in = channels + conv_out = int(in_channels*factors[idx]) + self.prog_blocks.append(ConvBlock(conv_in, conv_out)) + self.rgb_layers.append(WSConv2d(conv_out, img_channels, kernel_size=1, stride=1, padding=0)) + channels = conv_out + + def fade_in(self, alpha, upscaled, generated): + #assert 0 <= alpha <= 1, "Alpha not between 0 and 1" + #assert upscaled.shape == generated.shape + return torch.tanh(alpha * generated + (1 - alpha) * upscaled) + + def forward(self, x, alpha, steps): + upscaled = self.initial(x) + out = self.prog_blocks[0](upscaled) + + if steps == 0: + return self.rgb_layers[0](out) + + for step in range(1, steps+1): + upscaled = F.interpolate(out, scale_factor=2, mode="nearest") + out = self.prog_blocks[step](upscaled) + + # The number of channels in upscale will stay the same, while + # out which has moved through prog_blocks might change. To ensure + # we can convert both to rgb we use different rgb_layers + # (steps-1) and steps for upscaled, out respectively + final_upscaled = self.rgb_layers[steps - 1](upscaled) + final_out = self.rgb_layers[steps](out) + return self.fade_in(alpha, final_upscaled, final_out) + + +class Discriminator(nn.Module): + def __init__(self, img_size, z_dim, in_channels, img_channels=3): + super(Discriminator, self).__init__() + self.prog_blocks, self.rgb_layers = nn.ModuleList([]), nn.ModuleList([]) + + # Create progression blocks and rgb layers + channels = in_channels + for idx in range(int(log2(img_size/4)) + 1): + conv_in = int(in_channels * factors[idx]) + conv_out = channels + self.rgb_layers.append(WSConv2d(img_channels, conv_in, kernel_size=1, stride=1, padding=0)) + self.prog_blocks.append(ConvBlock(conv_in, conv_out, use_pixelnorm=False)) + channels = conv_in + + self.avg_pool = nn.AvgPool2d(kernel_size=2, stride=2) + # +1 to in_channels because we concatenate from minibatch std + self.conv = WSConv2d(in_channels + 1, z_dim, kernel_size=4, stride=1, padding=0) + self.linear = nn.Linear(z_dim, 1) + + def fade_in(self, alpha, downscaled, out): + """Used to fade in downscaled using avgpooling and output from CNN""" + #assert 0 <= alpha <= 1, "Alpha needs to be between [0, 1]" + #assert downscaled.shape == out.shape + return alpha * out + (1 - alpha) * downscaled + + def minibatch_std(self, x): + batch_statistics = ( + torch.std(x, dim=0) + .mean() + .repeat(x.shape[0], 1, x.shape[2], x.shape[3]) + ) + return torch.cat([x, batch_statistics], dim=1) + + def forward(self, x, alpha, steps): + out = self.rgb_layers[steps](x) # convert from rgb as initial step + + if steps == 0: # i.e, image is 4x4 + out = self.minibatch_std(out) + out = self.conv(out) + return self.linear(out.view(-1, out.shape[1])) + + # index steps which has the "reverse" fade_in + downscaled = self.rgb_layers[steps - 1](self.avg_pool(x)) + out = self.avg_pool(self.prog_blocks[steps](out)) + out = self.fade_in(alpha, downscaled, out) + + for step in range(steps - 1, 0, -1): + downscaled = self.avg_pool(out) + out = self.prog_blocks[step](downscaled) + + out = self.minibatch_std(out) + out = self.conv(out) + return self.linear(out.view(-1, out.shape[1])) + + +if __name__ == "__main__": + import time + Z_DIM = 100 + IN_CHANNELS = 16 + img_size = 512 + num_steps = int(log2(img_size / 4)) + x = torch.randn((5, Z_DIM, 1, 1)) + gen = Generator(Z_DIM, IN_CHANNELS, img_size=img_size) + disc = Discriminator(img_size, Z_DIM, IN_CHANNELS) + start = time.time() + with torch.autograd.profiler.profile(use_cuda=True) as prof: + z = gen(x, alpha=0.5, steps=num_steps) + print(prof) + gen_time = time.time()-start + t = time.time() + out = disc(z, 0.01, num_steps) + disc_time = time.time()-t + print(gen_time, disc_time) + #print(disc(z, 0.01, num_steps).shape) diff --git a/ML/Pytorch/GANs/5. ProGAN/test.py b/ML/Pytorch/GANs/5. ProGAN/test.py new file mode 100644 index 0000000..2f835ca --- /dev/null +++ b/ML/Pytorch/GANs/5. ProGAN/test.py @@ -0,0 +1,5 @@ +def func(x=1, y=2, **kwargs): + print(x, y) + + +print(func(x=3, y=4)) diff --git a/ML/Pytorch/GANs/5. ProGAN/train.py b/ML/Pytorch/GANs/5. ProGAN/train.py new file mode 100644 index 0000000..d4f982f --- /dev/null +++ b/ML/Pytorch/GANs/5. ProGAN/train.py @@ -0,0 +1,165 @@ +""" Training of ProGAN using WGAN-GP loss""" + +import torch +import torch.nn as nn +import torch.optim as optim +import torchvision +import torchvision.datasets as datasets +import torchvision.transforms as transforms +from torch.utils.data import DataLoader +from torch.utils.tensorboard import SummaryWriter +from utils import gradient_penalty, plot_to_tensorboard, save_checkpoint, load_checkpoint +from model import Discriminator, Generator +from math import log2 +from tqdm import tqdm +import time + +torch.backends.cudnn.benchmarks = True +torch.manual_seed(0) + +# Hyperparameters etc. +device = "cuda" if torch.cuda.is_available() else "cpu" +LEARNING_RATE = 1e-4 +BATCH_SIZES = [128, 128, 64, 16, 8, 4, 2, 2, 1] +IMAGE_SIZE = 128 +CHANNELS_IMG = 3 +Z_DIM = 128 +IN_CHANNELS = 128 +CRITIC_ITERATIONS = 1 +LAMBDA_GP = 10 +NUM_STEPS = int(log2(IMAGE_SIZE / 4)) + 1 +PROGRESSIVE_EPOCHS = [2 ** i for i in range(int(log2(IMAGE_SIZE / 4) + 1))] +PROGRESSIVE_EPOCHS = [8 for i in range(int(log2(IMAGE_SIZE / 4) + 1))] +fixed_noise = torch.randn(8, Z_DIM, 1, 1).to(device) +NUM_WORKERS = 4 + +def get_loader(image_size): + transform = transforms.Compose( + [ + transforms.Resize((image_size, image_size)), + transforms.ToTensor(), + transforms.Normalize( + [0.5 for _ in range(CHANNELS_IMG)], + [0.5 for _ in range(CHANNELS_IMG)], + ), + ] + ) + batch_size = BATCH_SIZES[int(log2(image_size/4))] + dataset = datasets.ImageFolder(root="celeb_dataset", transform=transform) + loader = DataLoader(dataset, batch_size=batch_size, shuffle=True, num_workers=NUM_WORKERS, pin_memory=True) + return loader, dataset + +def train_fn( + critic, + gen, + loader, + dataset, + step, + alpha, + opt_critic, + opt_gen, + tensorboard_step, + writer, +): + start = time.time() + total_time = 0 + training = tqdm(loader, leave=True) + for batch_idx, (real, _) in enumerate(training): + real = real.to(device) + cur_batch_size = real.shape[0] + model_start = time.time() + + # Train Critic: max E[critic(real)] - E[critic(fake)] + # which is equivalent to minimizing the negative of the expression + for _ in range(CRITIC_ITERATIONS): + critic.zero_grad() + noise = torch.randn(cur_batch_size, Z_DIM, 1, 1).to(device) + fake = gen(noise, alpha, step) + critic_real = critic(real, alpha, step).reshape(-1) + critic_fake = critic(fake, alpha, step).reshape(-1) + gp = gradient_penalty(critic, real, fake, alpha, step, device=device) + loss_critic = ( + -(torch.mean(critic_real) - torch.mean(critic_fake)) + + LAMBDA_GP * gp + ) + loss_critic.backward(retain_graph=True) + opt_critic.step() + + # Train Generator: max E[critic(gen_fake)] <-> min -E[critic(gen_fake)] + gen.zero_grad() + fake = gen(noise, alpha, step) + gen_fake = critic(fake, alpha, step).reshape(-1) + loss_gen = -torch.mean(gen_fake) + loss_gen.backward() + opt_gen.step() + + # Update alpha and ensure less than 1 + alpha += cur_batch_size / ( + (PROGRESSIVE_EPOCHS[step]*0.5) * len(dataset) # - step + ) + alpha = min(alpha, 1) + total_time += time.time()-model_start + + if batch_idx % 300 == 0: + with torch.no_grad(): + fixed_fakes = gen(fixed_noise, alpha, step) + plot_to_tensorboard( + writer, loss_critic, loss_gen, real, fixed_fakes, tensorboard_step + ) + tensorboard_step += 1 + + print(f'Fraction spent on model training: {total_time/(time.time()-start)}') + return tensorboard_step, alpha + + +def main(): + # initialize gen and disc, note: discriminator should be called critic, + # according to WGAN paper (since it no longer outputs between [0, 1]) + gen = Generator(Z_DIM, IN_CHANNELS, img_size=IMAGE_SIZE, img_channels=CHANNELS_IMG).to(device) + critic = Discriminator(IMAGE_SIZE, Z_DIM, IN_CHANNELS, img_channels=CHANNELS_IMG).to(device) + + # initializate optimizer + opt_gen = optim.Adam(gen.parameters(), lr=LEARNING_RATE, betas=(0.0, 0.99)) + opt_critic = optim.Adam(critic.parameters(), lr=LEARNING_RATE, betas=(0.0, 0.99)) + + # for tensorboard plotting + writer = SummaryWriter(f"logs/gan") + + load_checkpoint(torch.load("celeba_wgan_gp.pth.tar"), gen, critic) + gen.train() + critic.train() + + tensorboard_step = 0 + for step, num_epochs in enumerate(PROGRESSIVE_EPOCHS): + alpha = 0.01 + if step < 3: + continue + + if step == 4: + print(f"Img size is: {4*2**step}") + + loader, dataset = get_loader(4 * 2 ** step) + for epoch in range(num_epochs): + print(f"Epoch [{epoch+1}/{num_epochs}]") + tensorboard_step, alpha = train_fn( + critic, + gen, + loader, + dataset, + step, + alpha, + opt_critic, + opt_gen, + tensorboard_step, + writer, + ) + + checkpoint = {'gen': gen.state_dict(), + 'critic': critic.state_dict(), + 'opt_gen': opt_gen.state_dict(), + 'opt_critic': opt_critic.state_dict()} + + save_checkpoint(checkpoint) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/ML/Pytorch/GANs/5. ProGAN/utils.py b/ML/Pytorch/GANs/5. ProGAN/utils.py new file mode 100644 index 0000000..1da2cf5 --- /dev/null +++ b/ML/Pytorch/GANs/5. ProGAN/utils.py @@ -0,0 +1,54 @@ +import torch +import torchvision +import torch.nn as nn + +# Print losses occasionally and print to tensorboard +def plot_to_tensorboard( + writer, loss_critic, loss_gen, real, fake, tensorboard_step +): + writer.add_scalar("Loss Critic", loss_critic, global_step=tensorboard_step) + + with torch.no_grad(): + # take out (up to) 32 examples + img_grid_real = torchvision.utils.make_grid(real[:8], normalize=True) + img_grid_fake = torchvision.utils.make_grid(fake[:8], normalize=True) + writer.add_image("Real", img_grid_real, global_step=tensorboard_step) + writer.add_image("Fake", img_grid_fake, global_step=tensorboard_step) + + +def gradient_penalty(critic, real, fake, alpha, train_step, device="cpu"): + BATCH_SIZE, C, H, W = real.shape + beta = torch.rand((BATCH_SIZE, 1, 1, 1)).repeat(1, C, H, W).to(device) + interpolated_images = real * beta + fake * (1 - beta) + + # Calculate critic scores + mixed_scores = critic(interpolated_images, alpha, train_step) + + # Take the gradient of the scores with respect to the images + gradient = torch.autograd.grad( + inputs=interpolated_images, + outputs=mixed_scores, + grad_outputs=torch.ones_like(mixed_scores), + create_graph=True, + retain_graph=True, + )[0] + gradient = gradient.view(gradient.shape[0], -1) + gradient_norm = gradient.norm(2, dim=1) + gradient_penalty = torch.mean((gradient_norm - 1) ** 2) + return gradient_penalty + + +def save_checkpoint(state, filename="celeba_wgan_gp.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + +def load_checkpoint(checkpoint, gen, disc, opt_gen=None, opt_disc=None): + print("=> Loading checkpoint") + gen.load_state_dict(checkpoint['gen']) + disc.load_state_dict(checkpoint['critic']) + + if opt_gen != None and opt_disc != None: + opt_gen.load_state_dict(checkpoint['opt_gen']) + opt_disc.load_state_dict(checkpoint['opt_critic']) + + diff --git a/ML/Pytorch/image_segmentation/semantic_segmentation_unet/UNET_architecture.png b/ML/Pytorch/image_segmentation/semantic_segmentation_unet/UNET_architecture.png new file mode 100644 index 0000000000000000000000000000000000000000..312c59f077a6810df4f08ef1c61e24317aac4ca1 GIT binary patch literal 103270 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

XD;>I^m8 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≶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

5uj<)3UP16j- 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 z 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

Bdk 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

i3BazyFu%PC`h$6a9Mp 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

  • 1)lcCQ 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∨Py&gRk{yS08L-IU5e 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

    cyHo!J*0>|)v; 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/image_captioning/test_examples/dog.jpg b/ML/Pytorch/more_advanced/image_captioning/test_examples/dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2b7e96f7b354c8e5e4cda1e5117c5247b34700ef GIT binary patch literal 136611 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/image_captioning/test_examples/horse.png b/ML/Pytorch/more_advanced/image_captioning/test_examples/horse.png new file mode 100644 index 0000000000000000000000000000000000000000..d75bbdefa44dca159379806c885879da13c26d08 GIT binary patch literal 655998 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 vWP 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

    ?raS6u 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

    NWOr(6)JgakDP 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

    vQSSqGn*2VRBy!u6U1DBgYg$R>Snp=e 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%0D6~jt?ugTqTXaD?CNx#rx{;GGl>swl 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%0AthcO;PaO+khSvu;}c)Cm9I8soioe2A-VGE{>ZSd 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

    JxZjhG<%1DB{Mk8ao7X(?H~Z^(WG)9 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%0DD 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

    MADM=bGdc66v(N0?9)eNh zRV^Cn12)&=A zK5s~viHL!7P&M41Cvm&yZ|D<7-3D4+3lyR9@yvm}xj6drkPPy~G>Wd$CbBzw@A-?k zMIp1M=8n(}d66YzfNA9Au%a@zp=g7pVVYJZp7YXdPv$?I_oV8uJ?$0qceM+9uE3aG z48yv)?m@wmvr1NFlhk*QRU$=yZLRCQ#LMg@kI*XPRnGT&p_9_3UIQ#ufrYRgQ<}92 zBGxq8E9oBZcjt$^y~=2$-e;NP$Q)HR5ebuDZ=m3HGFN#vY4X!TyM1>P&}8nUc5Dk; zE>QY<3crkY*c)caKQ!)b^;cDrFR788u_ROWVxX+Z>JE3VUiW6R?;xP#W7`zZ07n^&d(jq?^Z%9@L%x3HLtLs>N%R#F; z;HtmT=s7}DCBf-3dQB#fKVM8QTBG2aBfGfR6 z>X>beY~^&}LjyB2p@CwpsNh9=1dU!tN%i>YXpd~W(RmN1>1;QS)$#bN^bhEZ3n=s< z0nC2uR3o6!PKTDQ3#JPZyI6xDqtcMBb|!6skPFEfCQT|vN%m*tG>p%Didoa%JCZa*)T#@Dj7#ru!A=F&6^ zl1tGo0aHIFgkV>SG!ICRN>kJ0y{&8A{DXDdXyjNVom|`-bu*uur2DC7SI%XvM5TL{ zzL6j`D-#~K^t8kc+@7<6=qv6hS*EM{IGQA>MS9RhmxVSnBqUY|YelTJ=`rgu{W8!w zTtpv>WSyW7U16qxBC4A$uC5Dac^!CKX=t*_|01SA6&Tos=&IUHGka}DN+k@x0e@M~F@-Iu0ve~xi z79X;g#~0YL=C~?PZ@SZjH9&#%QEbR^>*OPTjdT@R%R^3M?es5bWFWHpH1^-oVf^Qd z-`CQ<>Dg}|oXgSdGyvFoUo3W=1=L54boMXY5-kp&S6`x(W@b|f8yeR35+VsRT5RaK zUCzUIT_e@~@@W(qtF070gqUxqLu>Q}nD&vwlB+H691bS&7WMGr+IjSPyw^)@0flj# z2Ya5%?=%+JPc5Al&yK0HLP@)4JbJfJbp=~qDesqhn(Z9hN$M-lBZZ-zk*KCDyL-;{ zu^a{7#OC1kv@Ldiv(H{;!T4$GHYP_ORXO~HfHUbWh!HgKe%Gj$5Uwb(dTm<_arQLY zxKdE@VTvd?^pBI2Uqz;}3MRtRy5iNHS9GgEiX1&IEd6~1-2~q9FK89^$H{L=_kMqv zd53Rbwb>(zRSzDp@w78+xYsm7n*{*|U4hiX_k~y>5&r1lkU2Ff3c>(UBh?dn_H^vx=OD) z+GuZxqxPeZR~}{rVwi&*e-GQmoE{hGc=npguYKg&X7jv%h{LK+w$|S{!xv3_%wP)R zu%}CM&gxs>73`Jd)b!cK@$Zu~yp`H?IjLlHUTxRRt^2)2{+wl(E1o-R2%NqmtHqZ_ zRe|21x3m&3;y*LH9{rkb`3ba|+T*-w05*ebrV`CZ*>`7QXDG1rtUE?(mkSTQ6fucl zj<8A44^6PPzj@@y!xOzG{{TUsxs}XebV?6G_{fW#E$f`XaApVkly?~X1o3Y4IWFDCqdoxUM1$qtD^3UdMS9j#9kcF*xDA8u$_!u9j2SL^OB=B zs9bypy<#s2^gakRlIX zU;R?>mZyvJ(&e*rdhWlBLJ@m{@$O$&p-k>NzFX+@)^B3n+w`kXJ&s1Vx8WLD;?O?I z6kQKB*ZCK|^ZrBdzFYn$@ovuh&h5Q1ZgPatLpL#;%-7kigQi{8s$Yx*hP~4fd4I)z zXym+s&@$WU=yt7(#~m+Kw41$3tQ79h+-^bF-)QHh)?4Q+Dq~jD5FbIzGsX6qoTC9zSpj1yjcW@9Aw?aXT@4An0Bg|JG?tc_fLeb!-LYWh{{XL^As{SW=e5HxU)&p{2h4a;EU}F9H4vBf#1rw49C-bn@BOIr zuS>2EAG_jT_3wi5_eem?OxSdwQ!{{R}H-1wUVV`MqY=x5%Uye|jj9=ES|lT1yTR_8>~TF=`ib_F65M7X@n*d)jjN-xgxxcin$i zngRa+k{MO`EJU3BWbSEd>UEtZDZ0v>x*66LY#}L^A@|5A)v5DXV)8fpwc!3&LFVYy zAzss+A}VZW)|SOdWwG@#Sz`X?z9=P4OV{5YBpNLg{N2p($9LoJH}P6#D)_!l;@8aR zHSy_!Z`TP8Jbtk*d!f*b<;P^0g=bP!wAqh}^Iy(4yZ-=by#1ZyPZ=@Pa9wuhnmr#; zrPXd92X8fmIZW#%h@UgVc?rzaf&^OWN(C|HvRGm(0~|+FG{nI2nsw<>(5E&oj}sHW z;$7&t^d0JJgga@ayi7Z3AQDvqdnrJ{$^GMd2MYl;=Mu(tX0`3qZSN?v0DECTuqp19~Edf><9H5 zfajM4(u#;z_{E&Y7zgg9edVnyF($m;WBR5)Gi=X|yll;GN}S%`+H;F((v~Dtm->1P zQ3HGJN=-v*dJ49fudTh`h_S{c;_n(`W++9~K`f~0ts$hu7=SlI$nG-)vn8Zdbo3twgT*lw~^WOh}>@Z08jTd)$u+w0c+<`Q}UT9x#fr`V5de>42o@Hw{Yx~*f@ z@BpgEf7EF$V^aSBYz)vw)6ojS8Rq1z=sMHo{%QSFGx_abYp=~^ahmHEoBDv1zI#@F z!n9b_0Z*q zL(Vy-WI86hHe#V2>ci`*%iDMXX|H=nB+bAvun4uKg=71cwEqAfiaJ3D@3>y8aiokp zSygG3oWcUiNUDsNUqTpa)c&vNlhX0)YQ_HmHzpSWD9{IQWEP?o0*iohMeP^$3?#V+ z6ud{L@evW}_{M|xBnxQ_zR#Itvr*B%UGY9eYX<=|^VodC z_WD+nSct6FVktcS$`N`$%;@a#+sakD8Z;4pwe0Y8;-qrI1rQTD2_66#tlq*QZ}0vi zcO7fihc@f8m!M-5OWuPrx`>FywE8N<(5xgP$G+CBrkDPk*YQ1poM9^uRLS?~8TC5BH?t-t*S*3Lb07fY#Pb3=k ztyHZ0ebVKF@0g@ou!{QNzt&_WA(l0$1l`zH_B~@(MI(laC97%*w*K7wbL%lN5%{4$ zcZ#4?d>6A)n1{kV;;(ufTTcdX$fiD74xI zY4t2y+v^sOPstxd>#M$M{C58UCcsseYCB)p{UU|0Kd3Rwt!XpwrYw1{-pXQl>wZKq#!&2MqlntP+x(-HZj*7*CsYn#^PuIcK+S~_WvAP_*~+IaiVt@E*|tCVauJcHZ;=58CLHGgAh z4eZbTD`^Wj`d(l|r+KDZv;2)38k$9I{jv2+|e)KTF#5_kIDb zzbE-fl@Qk^fjWMz&iYrlLX?s8*C`nj4_&n7yU>6--`9C8MAowiGK4dT=5~`BJpTZ7 zwEVQoPMVjn9?Zd_Q)X7rG+CP-%7{@*#ENh0?Ugfi{KMJma&*&%PCRXmA9HxdY+=?v zK5fU_Wfs{?t^F|H;X*GH{i@PtC5+!5FWCnJJ?g1|irJ~#U9drFwrTqYC^IIu$>wWv z!EQBZU*uoKrXw?(?kA_p*r3m-c=8*1)n#H5110+l7VYLBw?b(6e$^Dk z56MS^mED%y`L2>|u*-H0vjqGPBHQ(_?iYY zHM%TKM5nf9F2yF38TlL+Kg+q%I>0k>pX@Xj>a<@W8dy2w!RGLUM9@7P3_+@YaH|n& zP2hI4$5YVtT_4GOxux{8xwQFg4Mz;J(iM=*l~yx4t6SMn*W)dMyxu8$Qni?R+^_4q;}4E=_=iG-3;fX-t#q(-sH98`L0=l0^mSQ@_(MGt_RCG3LorCG(I$ zEXLgChh_^5^qU+j;X1*W1EBH8 zHKTTgOuieZ&j;Jph>w%+7S$)D@uzKzZ0?`AS1S{9u-x(q`UY50pgV=|iG03c zolRjrn#+sgHiyn@HE)Uq#CXkKhM~YW1(2XQes5pxA(O+|%z4{iAbF2dH5B!l$WeU5 zUf*M1R!(Lqd(vt6w~l;DwvUGV0Kj*82Gr-a-mg*Cc-t)JI~^B)xt!{^*4geh^6Y!1 zQ+o!86&2=59<}4V72(YXJYVA&)qL6=S1$O&^yo?1buz4`*qsxWDN(lv0| zmx#PlpBJYcUlwX8@0&cHrm0fvdM|F*H{%S}2uf^i@%hh%&5ge%btJS`LFZ&sgA3u3J%bZRsp~U|HWp(#D9vNpk?6b3!Zl!FUOrzv;J~PD68&qE~ zLIN>RrXW&3l6j}c`Cx0zTU`ds1+3gO<4Y91v9X=V<#|3IDQ}9%aQxnGl*LT{0JOCQ zCJSn@e^1Vf!5%NJo=E#3^N;p@xSa+|T=eEBLG?@YI}6+9)Wy@qAbrU!%KC}eHdo&v zxd&2p{3_Wz)_7Fv*~83HEfzDB>a=`dq3{ z7qv}%PWGK9aw}_h7SY{9}7AwXJDFPp6T3zHculrE`e# z1H3MB9ks)3mia!*Y>87ztz2pXWs&APP=;3cnq15l^!Ix&S;g%-b=K*8iR4~wEzWz3 z=GH-sE*qA`ZM;5m_xZ?9TbF(pQU=D5ulsGbtz!G6WAyw8{E^mg{{W8d4Ta~&9vjF% zK+qInm24!sB41%k?AXf1>2oqk5_A6mq#H-|PG2FP{=Rwasiv=%bJY6n5De+K&J&GDuxw zm57Q&%zD=tK3G2+ zXRgynWu7NPc^*SRx+S9BA2G3wrOq#%$e5|R#&~f06-|QB7#I(DJVj4x2)Fh8F*<+t zOZ!Sao_NUT@U!l_tNouxZ0S>PP@{J_klL{m1YOwmk9=R>695M2x?JF0l=B{SI!?ls zpYK}XtBX;61ijYyiYmzfP?O^zspvb#cMY=30}3f`=_AnGL}r;V-GpoDBUqo4LyoN^ zbkoYQEOkR)m=`5xw;mTxFy}^~lCDo&vGkVQ#_96DOAn85&@u`)6{1slQ(baV)xv75 z&989Ue+WD06OYgJDvM|Ee=PrO1k*? z*1Z%aosu@32SP0j`u%uan~YQLr~Q_^F>N0tVT)41RP17BXTJ+5;-v`^v~+mnxrm!m}; zKC;-ie8dv%MSZPqF(-1t7;WuQ1wli;ZDczOhQyo{v@FqgK!dVftbK>EUY_0h-js2HIH;pF4wrL*=p)GP+F1p(GNm& znpL|DWSETS!E(%7(rGNxW4sS^e zeHR^8qjg+wB!*=Zv7HdPBw*-y;$EykZvhik^tY|+S?f8y>@6$vS|4b9W{_$jWDCjs zG7GD^gtW^s19wZt`(Udz6jm99lf9{H`ub_8oj!8noyiCOK&Yv4dPNstnTporrnR=# zbT%}O!}d!4zt`@YO!M1*iB67(C(vefRLfCZ>!198HEqnd^s0n}4D7wnXN-dxLLILh9clZUUh^>?|WhW8K}&1f63e{HAMgqqrxk4t)M9sbDYr8NkU{NMsHwfZu4(3WeGBAt7|VNAEoJf#ok-hHgUF4byvO+ zU8HZOqq&z^z}SPerA-{s{DQRnbhKJ$()PEl&C2*=7m(V$)@(Xl=AMK90OaXFsS9-Z zxY~)rIHTWQYR|a~&@lw9B9^Rv10SQ*@;^SaA94nzIz7Q9Wry#xb%dmftgz||TEvQ2 zW4P;T#b(nHG_u;gF+pI7w5^eS)%2t+2Z*9lQs?MzL(GuIyki62zXGINJ9F zYTy8tw8Y2AW#Ys1xZ;r(o_ikH5w*=V(C0tV^8492o5dEEJC86dy&A7o+GjNFzjkaj z$^mH7(`mexzLC)Df3bZZLEHF0gHH#X@!yO2#W@TFzs|2P$9lPdt~$JTk9qGIb0<>S zOsa;M%=u^!NH@w~%#Qy6%N(XZ`me!jF27I6a=udSdS4-V19u-=CQXRWmyY?>@ePz| zT8WtSX26uj*lAD@rHe+kj*maowalPOv>@kmz~l0i#U`FEEZ1`okk?$ZE_7Q-)Val6 z_g~Bl7WB{cySWt7tyCT%tBp(|&3Z9)V$0jOxh?EQ866rPjHXx-DQOj^ zC(wOYJL8Rg4qZwpcel~h%|v<$PNKc28(god!7l)bAFdj2WKCF862 zx>>G%nAw_^)weKxmx?5&ZHdUr&-R@ri?IQvo@3cF5ds`mJwFx1==og!D|VB7{ETi; z8$*9Bq=J8!H}&pI^bDeL-egy_R2Hq`<)wXM86!BFu(?XTKgjm;^`je{VIuy=QJ$H^ zK;Bz2JuQpESJwrW?k#}xLAa!Oj!>FYB& z9VUnRyWw0G_p}yID~1m48(vFd`pPo;*0&v6w<2810F)=WnnJgTt?5Xb&*L2TJK%1o zlXE$DReHtc-^WB!gJeb37XgsV5!_9Idu$OwJ=XNJd!y3Q=yrbCw{pM|UmIfCh~5g| z=j)@GrmKU$M8$$LO@Or6l)WqK5f+L3`kg+i)2g9RL;Ps_?&j$wnozH#GHKw3a`F#@ zWErs&XnGgsEG@gEbo>(A&MIOE2_=lUJCiEvned7RPd={}^9Seb*CZAC>E zn%;da5G`)$P7|JM8owr5UQbIf8g|OMR9L$XZ|(HA##!9l+Q^VxA7#T8!BR$`HuIbv^ z%;xi^ZCh$Q-oXyz70$QyisDSAA!#_cs(3$b+YAa`D4x)3nh=I@VW3W z{sH51XT8t>C22W@7|}X*G#A|z^q88Lz1C}^(%R`ZG;6cV~&rlrgBMW$GrOvNp6`bJ{7r*71+ zQCC|H8V;s9xw-mkF>?ust3`Ddo`wZwfBB-*X^YK&H96+7v~~l%jtmgf6ieIel8cQt ztb5zu%xfcX!35RhqZh2j#WwV{wfN5-bR8ei)fE=j$Bt z$EKIsMZ-~nR+C%%aC0_%P+luaGZ;&xQ=(eojl z*yQ#1a*$RBp(cH&zAGYlw1Vpa&1DA#`k@!I;jJqq`D#i}174R;182R*TUUQy#^QG| z&YQ!SE@&L;;B1TDJ=e5a80(!tp5NVBhk60wxxDDhgQ-DaD2bMxHc(##yN)&r|gR5 zn%GzoNn$S-C94#f{Ab8MHRd@p548%{B2;d>KsYCe45HsK2s9 z7OiYAaW62iyqUvwydFcXtr<)(kRQcS#Rl<$=A}?=_0(Wia%`>P;MN-T^%tZ}{%O7C zKOXg+hZmi(gJ|aIniTW(I&DAO*PrS8R(ggKTy)K5mOAu3inF&Q(k)+LAL7FG z4%{1AT*fYAMBhN26Xm^ro>oGc0R0vty6nZ*6^;mAp4!1Zkumv!&+**4J}qqRJ3d_U zHsN`lT>aMZOwipaw4UFtE&`n2-L?NkhJL7L8 z`EQOxOo3ZISUVNtF}Pj4vP!m~KDCU1RK08|_YR+(Zf4(^{I3~HX6E!6eP3PTHL^M8 z70<_OJ7T#t%i7S%OK|&IHf_{j1*%1cA&!=}wqw5Qv%J^-#q|%5YXZXWe1YZu%Qq?8 zn?E9S^tChd63>68*49bT(>FPL2393R2&~e5KRWf-Xud7$JcKQjl)&hAb>p?&@%KCc zFgjmbsja&{koM4u=pQ*NvzPP5*EL8XUSgczl>Y$Lru^;VZ1U%78J`_>IkD3zxtvth z4&v%`)YNE2h|c>P7%RH6O~eL8@!Q-xZ<*Rp{GRD0Zx;rCFxP2JjPOC*0hWyfP>aX3_xpgj z63?vKeIi-7gJ0+0KlJ?P*XuiNowq}XpX|BZQ6yJuvo1MjL4KU3*Htu1k%w3oauqF2 zS+o{E>m)}3Bz#5V0Tgf$FOi{~hO=vYmT~P}h3jsEpx>(1`70+W;{KMepsOE&HX6gK z@K2VTTT6+^aG|+=X3@$GJtl^k^!ZN_GjCa}ThrYxbkl{}Mjn5|p$~&8ytVZ}0#pA0 zXps!4yP;B=^^mLplH@IYf0+J%3MM(*^SZCDQ|CsefMMKXE-#vvYm^Z-v>Ll6frRWf zz@!u;++?NVJs#QZb9OpO;rVSHj!T*9d6mD%TJK*tvzDDkvouOEWpmngVc-y~GE*E2 zS_f*yy{WGkl9>w&Y1yqPOY5EB>e4grYF&g4mG#^!P&kk2CF}36q(s%dAyihIO8oN; zxhGXsk<+Q^V$Oo=p2-<_%CykdsfiI2G^g_)oM@L7NNY8csLC@`;h`VOJ0@sihC-ac z+s>&b{(~iHThh}Wv+mdEagAI}JnooXj(OM2GPTXt#MHEF0X)l;t^+;%{YI&EY{fxj z{lm1{gsz5$`-__|cLiEiPYw2n5 z+%|F3rA*Q;G@n$~9?AAhx3H3W*Ck^LEi+;i{@PpJNU!JKU)}6#mdM0c(u7+*qAd&5vuzp`yQxz6S=iG_krcPlg(J+xJBFn9AAp-p5L`!?QP-Y>)fu#&qz1uwG75a zr$74dRj+mq3()@nS!kH{TKE1eS-0lzO4WX@+qlC%z&_$ph+eOhYdZDzg%5a{XK6UO zLT^ZlI%1RCHN1Xd>b5*g29Ch?vvu`T&P;jfp3n`g$Rt$C+bE1&gDn`E!2VCnmz7IH zoy^!oKz)4+Vk+TFXYv<)+g|ORqOC`yUut?c_F-BbF9|i*T)BJ z@>;6+K{(T5c61WQ;4Gj+X>3Qm9w*tn$*WS2!C73^#wOpEzuHuIKF6o+e2q}#_=B14 zyDds{++I*Q)ybi(za`@>w#l83nAw;B5nu|SS33X^NJl)kOXb{pW zE81*NeEPmg$`03jpDnw`_#Mqm3^D_N?)Q32NhkGyXDYg@aF-M*u@?mU}|)oAs|7hKHkb^LD8Tu!=Kag7#$*zHjIdM}!Z<}FqI zFZkaLUG19#@1ETF^$6a7cbI`leDEWzmpWRfn72cb3YaKrQeV!r{8XQ0(%*@3-9KT{ z=VoW=6`Nrt)-iW5^o}`v%xG@W!B~4rX9}zv>XxgZDp-Y@#bz$@{Qk2Y3c_(-SswSS z%QNq4Tac&K)XC=c8A~;=&mj|AzF7$pi!*pF;I{VB4$FVax;#y~O$P8hYM60(#d`j+ z>L@~)to7P5Oy^-Q0xhg-Trgo)Ndq8eCi*#d?79uj>?}FxdqxP=_w_j*bSVjyMXLV2 zO`Dp%>LR&9ED+3pF=~GziNol(@Kf72P6hP1erXjL4{6YVpu1W6%}njaN9nceLt2pF zM(J6s2mqQ}-9~(W=Nj&T20q3&rrhj#%eC-SPo0iK&{{UIExvK3hi|dNc zIM>EWz3piB+MS~1RNxLKPgmodr7R&Nza`TiQ0BEVF*QDsdXD#}#8>XP@uKDovnnny z315!(-Pq%&sOb8vYi`)Rw!63IIVDJQm7V^DE_Xo!?Q9OVnaj`nBh44VV=;0LC_l_} zF<$6A)#c4R%$}Q51Dx5W7XiUJ(q*j1BE5f9{#$N$9V@wTtzJzPq-iNwp$}WY=kuOp zt}r<;_be@gT{9rjLnybCNATGWIX<)h5#bW2!CUoyXVE0C~8%~*?8y$jR+w0PHq zW0fXh^g1jr24MF-H0S}Tx(;Ya$-vLcMVpldFC(q5Z;mM8CTS&moBse~{{Ysk*_n0 zo?RH)8MK48!*k7fKc33f%~-aq8{}6)fn0R=`zvbt$h?oO&4ZfqJ`WD>Ey{4*%Byn> zWMTD%eWL@U+Q}r$efyr)hNcY+CbeoCTC*3nN0a=)-s-QJphXt(o_iSch1Gc@V)t#X zk5|MTuLX^O#Q57gKR(G%Nxt=H!}K5^hA}N#;NXKpi^0jv*yuJmEBO;G4zs15{-VRa zuGu;E640=c*u4fD5xW|*KEe!^kw>+T>>b~MynTw5ZTo!@?__efEkjyHrrKHj_KB`V z6F;F|G!ZC)(qwUad+TEJS%2&RdcgB97c*n5#wU{cUmmG?8O3xpv-TFm(N9w~skp`u zLs%viq?2n*SJwrxf3rRb%@zKuH*=!j(!|ljCC^{lO*7mQg}qlDzCqrwoHkEwt4mUS z-rTw>62C(Q0PBWs}ozciVrW zS*ulq-A!JC*G1lUHk24@)cb0nMN0f}5$?75OpgO|dLBPk%WLoBHk#X7{Tko_9l&t; zT;;Hz3VDcL_C1$|moGz9)G$IX+pfEjKjPY-;6g;4y zTA>JxVnG^WEMQjt+Sj+~6XR>qY4!ZKjygVvcT;Cv?Jv;ja!7%oCtVFl3!IK+7G9}? zI_fC2`^P{IYd-L#-x}w)Wq~Q7pU+osMw&VoiIFvN5)EW)@>}Gs=J&X5>op|$&*OZK zm0#&ONL|$&$LX>3%<}A=p}>Te&Hn&YC;+lRO~1N71%4y?&8|p`#QMa3U3SBuL{+O6 z$-h;ho}_~((u1yL4gu=uJdo%52XlLeS%{0<(!aq~O@!Y-}0AQEF>)#qI`^QEt1KUJ5XVT?qiW1O`!m==0OFD z!qX&(JWTrj4!o}}$5W)t(>=!|Uc?!eE&b@-5S%luUb8i|X?KSN^p9Bf{xerq&E}D( z$D`2f=$kO^CzK*sYAczGBuA6NwJYw0)~y<-?SETPmYKBGULg(LJ<+%$Peqr@Wb7S> zAff;b8~trF(oWDz4#O&|O4hx9>mHSeOR(*?IxMCc&{d9c&gZSQwRgzJ&-Dw=aydD} ze?gI+)tj1F077qHb^idX)AL&TS{i%m8%`S2BrR3q+tcVIQ#EcBT4nY~)WPT9a1>;( z^i91j`SCWw+Cjy*izP_K81nWZ>IXDGT$U9Akk9f}RVyCz%?w$XwQotH@k!Fr(tUp}R4)7(1NB7z*nW7+=zQSwyIc-eSdW}jE&o9CC@ObonLEIm!9 zn0TTaYGt!;ouMUa6to?}7^w^Cb3TY(Z=YJiM=&I{a&-4H;dAC^bR#lCB3Psc*Nq?y zw7&!%hl=KU2u&>2)d6~b zV(sBR*c4Q71RUL0FotSF0u-M2o7OFVY@o|0NyWv)pEiJc2@vX-DQz&8O@tvDj613D z{c(=ogT0AgeWUZ7yEgsHQ$X$WhY}$Q71GiFqv8126!8II8_xIWZGZ(bXThw;`dRMlTj7QjU*L79UT*AEQ zE-a=*(6cnvTS0PYQi3%=TKojDDd}5Q(?6W%8`-znU#{_=k@-+&=PMdouIv{lrV=Mh z9TCv-@N||70vK!?)q0ZAVa2_(nCkSVc1={(8u{okHTjA{gR5n5N5%*;r=#-={{Tcx zQYkgR$rEqL_;Uz`Ue#5MO$TXE0jJbfjNkS84i8SEXGJZGL)42`+j|auVkSLyvqHVh z)7aV#0BOidGHY|6`7K-PTJ^Qa#ywiCD_AXy5k8f#^JvD?Rh=yls+TzHufK1XP92FYL&S|`lbD1<%i z&i??!n*x;!RTO6{wc`4YD{WC_-C{CU($GOB*Q5|N&#{X)i$&tGpq2~IPFFwGB3}(rHJ&T(D+e$h%wvgh?Qg3-hqYfwCYD7f( z##dn4ov&TV;_2w;CPYo7qdhkBs!HtR<83%O&o*+PV$9tcC2ONwUhI0*x3teei=WnW zTY0cQi&5Qmv9&SEHGs8jwp#Uj6A-{rL66mO585kMq4f7jBp9K{#?Y<{4-=lE{Qm$r zwu=c~?Y(T`^sG|ba4l25-I-*U_XK3It3s4xkIZH?`(F_|eS@C$!B=ZbC#~l)G)Cx% zTjp%@ihxMw`+gc)T0PBZk6&4|`a$zNv*CU+>8gd+A6w*dW8CdWxOW4Jlbky0Geumq zKND(K+h28UZ*0ty0D9x?hl|!|=%(K*xm_#~YNFX(qnv}pR`(PcvDo?l02KN}#8@MX z-eO^`c+qvu66!X%by`E5*k#xB{{Uofp^?8i#L}r5V3%U`wF+w%W+Ff78GTp#3**gg z-d{IQk1u0``>54xx)(msbElEp(dO)ZK3!%r#yGJKS}w}sl*>(+eqjB|T;Bxd zR*#IlGNd!cc#-aYTOvb$rTsvmu9H^A6R}@?e&MLK(1y~_Hw)L!eBfs$RIBws~HpS%eGaqPb?#GCc=z)l@ zRp!nEi&&OZQ>;Y=?IY7D{{UB%HVJFnH%5$xtWs#W}fs zZci+RHaZurNHKgb*{gcg0#;`CwJ*Jfp0|%SwK+C-GJ2f6)|@YA!U^qi4^uN|l^;Ey zwXMsKYX|GPeCnMvK_1&)Rvjxkel>H%4Dr((rVe){iKWth?>^o?MeQwV&bvr^6xqV< z_bU_kYXN`QonVxLT!Wt`c^A2D{7o}>seB(5t<;{{IetIQ93mYo)yW`W)%UUi(li7Z zX}FO5lkNT~+Ht0BvvuA6u1gwyK6=frp7Z&vwOxViJmp5hDjn0%q&!g2PlmLLdo31; z@)0DF>^T1^_ApG~I1U4q)ru-F$9eJ(D7lX|rmwM|k)(4Qn0wa3%j+UtEl&*j>p;}(JrK4o2++RM=*oK8>7eT3+sV(pH{OjLA?qq7@_~l8$!-eaM46BVy zQE8W5Wel0F_42;D!}TFnw2skA#LSjA^*N^B3;O!%u7_%6uVphAwswY&=SNPuuvz$|7tL*oicc5*I{)DNwT5L-!2b#gz(m%ai zg^f2oYbI~{?P#69DsHt=X?NSbJ6%U{k)4{SVcjy@d249kaQI4wG`@zPLIM{@L6)i` zTJ~XZinc7qzxx;d!sREb9uq?`KM;5m{DV?BcRplJa=+T;00MKcc?Zi&84;E+mg8EE%g z?3hJ@c0MWp09>&BPci){^=MaPb;gCz8auBhY@; z(IU=w94gXuG0#TrWGPGZOB)mmIHAB04MiN9FjC0tXvV1fE_09Y?n(>oP6jbDxlH^?13Czw6l2kF zK-TKqXB~yY%e8>XqQ1aHUbeejn7n7X=I#7KTbSPJgKo(2L1efF%{2S1xG__xSCZ-hhFC6GS1hV1r(xy*j7FWUKO@8{i&zLjxJ*83>u z&E}T1sz$xzFR$h=CCKnEIphVU{CCOPVO=cJV{9pD%~^b%tcR$90x;_;{O0U_%F;knw;KuebHZg3!z`8@?|z|&u|+3c3bO1V6jmASJJRp-3Sq+~!{i`uE^ zXGiQo=&?QlWArBMHaJeRn%7U8z%uBUb04C(8moGV^a?c}e%t#yIii1{S)SsXJnYGDkI8CuIg(aXp{10{8WxlFs}#Tc z1HWqGJ;;lH{I4P0&Z&mBv$^+=>HB*M`tSEi*SE8Egyv;8wNEl}SmQMKA7X?A9{sUT20 z`pxIrNQs#IuRW(h^9Yu|BRu~AGikuiFo-W(r=-d?1H}Yd(K0_;%-$k>XVcU0d8*~& z}!^FNvy9JATz(=%fuY8Jj3-{8gIC2XDev70L3^ z@TW=^NmbfqLDWJd49BRdHWR77y=H%+C({1ezvVcbsW`gVxqXFsWbWMnr%kDrx%Pw1 zPtHqN+Pe6`y%D6_`^@Ki2QzC5lbUOumeI(naW(}?xhURIXxhISe}V@_4O!pmUs6vCwImg<_3s1!0Ib*3vE0s#`{eO`D_9!28chj3EXDz#!ZfH8=>(fj zBGiPR6@B-3A*GKx5EOMgKL5lDSVN;CXjHtgaiLC)3=vhbN@ImR>fWjyq0opmPIXAF{>Y(W=gYme&i} zjw%3IyUf~@i5-n!Nr<4ZtstbH}{;%Rsp^9k1@vlku@THr*OfEJgfMj40z>m-p>bf>L-W`8iLHqXaN zs_f=C&=e8%v@#g!S8G&#Gk_48s_3@@l}19Ehgy;=MJrkke6p^AL3>7Li7egj3y!1J z!)U+>*HI!K9F3ck;P%=*OY(cY&`65@bXXl;uHQMzHJQtkS5KS5U!&N~g|&$SY<&KX zwjj1@s`t1`3pOhfr~a6+B9ZxAu6wZL^m$vQW9QqW!={@^jl$2$vANb?hPmxz#-(p? zOSjDp2{T{owE9?^e5W(Lt^9#~J7)f!8Hlvr=0_(AQg+N1CL*S}>L`nUZkMO^PdSp* zalRq(=1T12+gc_3T!JoujN9+N!LO)&j;w-@t#=|RO4{P2kJs1n3_l-t7`$LI?m_H3foV?DWN)2mdIL7lQ-yvUCwU-2-%EFp@6rn9O3_{@zy@a*m zv1qsEifwVa->AaQAsZC<%({B@vg9qzp`7nG)a?)=TwfiD5(`$Li&`%}m9OD)GdysV z1g@9twx3+4dj6^@Mp2Xv%BG5n1hsnGRzFHw?nO{{Tamm8{NwZYB`a%WtC27Nx#M{ySSxffU{* z*0-;JnaFgV9*;NU?t_=l=CpPg*Ve%Q04Z_KjmhNe538Hv{+*lc8#Je)_F>g3m5jjRp2)*_ z>f4^_F}$CdkkS{i5O)sQ;9yygI^w`RE~)ejK&Ex=_NIcpf2Z9uJwK9H+Y)_&wl}#> zH<`Ars8K0gz>Bx?4}Z(yIi0Ps!ShHJXw1za=$@X}vWJ_FFKOsFO>H*%zIVfI>gVx9 z>a{YmbTqE}QKi)MeZOaT$Z4#nI&Yfrqx#WB;*;mQkK@LL=jxoRPz4O;a(IQ!aqO*f%tm0T*+$}CLW)TiV~!V_VNq%mW6pf5Del52Ef>y_+v;7 zJJ4*$+@{HyyKIVwr=fj|`)n&-@jse;o_?wyKs<2?l21g2iwtL0#po*I;(5}M+E?O{ z=K|iq)c2X1)(LOLb$PHYroO@RvdVy??c1NOK5XdGO_U5UvewG?0|mIfBxR9~XWc&E zT>4mAdY|Pasff#q2D%nrl1O`FL5Zz`Eq6f8;uRdwBBVua{8rZdYp~YEL#XVK!rQMO zjneAuUk}G#FUQHdDTg};E{_0i^nDnCEHrrdjF@Ke>0e~jy$@~E6RPbzfE`D_X}%(p zp7HkzGFIkG#ynlFJT7o7m{Ay>8-yxl=ZT@JdSUyXdKo?u2vTA??cq| zPduVH*(&BCqn*$(owVU-5gY_whHK&lFG)A!INXndXUHyJ>#Cc&o-*k#yfrd+0Q*{6 z$!YGHO#M^X6GjZ=lB-far3oJ2bl?2%heMU^14px0onRb%13r`uH4tjQn-H`47%MchA7=I1lyx zeBC^rDKv`DE3j^fvf}X?`uzN&4EW}G9(xg!tIbl?yV|FvS`~v@MD=}N`t#g({EK+q z&PX{$Po-`!0m9L4xOssUfM$f_LC2wVPJ)1H`SQI+Ak;#n&m)oNe2aHVFFTp2dgF8Y+szE{MfM9-ZT9}?miF2$98Zn7&Qr-ex>&^Mx^2h& zoRIRi^>wtT^l4ms35s#I>YT7k6~MG=7_(Sfv=o0nKhE6hy1yG^>G`Xt>=5Nrg~QNy zIf2YuI6Oy7pR*`u_|rD}>S;1pbtc;GRn>@yC)y&(^Jkw&7{tyRj9$N~ZW<~Xl#<1iA0yO!m_rjw z-jK1z@v`4~iI6St(1fpnfd<`=r7j#ClM?CgNn8x3|ScG+e!5N<@efxF2rk2uvjhc zQs=(HwbZM+-3JFj@{L!7ViH5N2Ap%tXT%4L)y>`JYv{~ zWcDK@=e5}vsV{iE5^I0tbNS@|01}0==Jy;gJJ|PJQfvH1U#44xCG~rLVcMOVPJ@nd z0w$I%hDx0F&ocCzkfN;J4KP)SxS{irLsr3kRcuv$GZK&!p3BIi;+xhcD`>Ct7Oi63 z_Z8ZIonj%G%1t^oR!#zKDZx*n*Hv}}H(Zs$XvSVI@zTD7pIC{XU(I$73t0Nv{ML#B zu?(cN>_&^anh+0Ue#Hgz8K`3Zw5%TUZ%^rucli=5Rh0(dluh+4PqTeh6<1-Qt~yeL zQpv9A17b|ix7O2Gn$2tZ!?4A~t=3a$9^zi%P!{Iu)aK{eshGX1ZfBziVBVLhNIH6Z zs~?SNB6F)#^xcT)Adb=yWwFofm5PC1D&#NeVR*9LD%IV^)p zv2y5>Z342!x)cn}6|Am71XD9h+Vw4M>HJ5P)qbVPEi-ZBaX*-E5?{(^op(Bj#p_lM z8Z_Jz#T_kC(n(ua+h28hzpbW@1_E~FtJwBC8UFx(o9A)W+MT?XHS2pWLa(6u1O-65 zE18M(q+in06FEt#%(3!V)yqFTnUs4=G9FY=+k$sR@Qs<&yeKhLhd83r3R}{XF&;tk ze~>&;n`LyKQ(u7Y{DeLqr^C%UqSM3dPOVO<-c5H)ao;uqN@xr)5wt0p_10e9!r<7* z$=YLx$}N+}<~6l(rvA*pO4oUNOFmx zmLlM|?Hag_{*c$t1Yey zSVeNTfr{1k-qSH3nS;&pXL**R>A-`~U$;{)KQLuvl=}O4eJ3HcAvq|yNqLX^txs&* z(6yh=wGN}W%hTeq$)+w#v&O{9%im=A+CJRvY{l@ZB{#>i3YH~*QH(QTG3hhvKh6)0 z{{UL~E^DOd`nT22(KkvQKB>-+qEG0JYa3gm#paRbaF!p=#<17{#y^VHgGk2}A`bN4 zL+~e#8>=>T{EW_9L8_)gvT+zb?r4@Z*S&xPDhjm<{3W0L8^qW0-YMxjeiOS>&Ise} z;A?aFbjWQ1a6Jn75725pt)mkgL#}K}0`kl-TW6Zgdt==Z+5Z5mo_NKsCMTW68klKy z5;NoLZt7>7BKXy<4(@9TcSBj+ql^1>wvvIg{{UG%e=~QybDz>9$?r9)O?-9UvX**; zm6BbY-MfW^me~p_fHadYdf4C>%NDhLWquoqW6GXn@^Q28oqT7xRh!kwsdN6&m)6`z zJQ%r;q4X<5eBb)fO2u#KZ*Snd#pFB%{3Ffyey>Y=N5!0>2=)wTUcPWduh*16P$u-)lij6PjeD2 zQQXl-0CxVe3Q1lw=+>~dEVXIAHuuFqn8-V41&ItflOXK zv-!J~kY2**ZskBhoL zAakX_N&7XStuE(mHpWuRwS2O@cv_nL@dHWv=~;LPmmJW7u_9;lz4CNuaF)fw7clc1 zJ*v^^Cnlq@z&jRD!I`+9Hs)uBT0v)@XD+7M2Uz%P!v= zl7~Z$til^`jdmq-H_s{2$yA-GP#J$Uem|0tSoB|?=s(x~zgJh4qwkl=Jhqk>a#lU?i}-4z%0JK&;(w7Bblk=&Px#SIhdHmuq`e*(WSM=`iYa#YGkT~J(XUuSCo zj%zX@d18~!iP(aFf`bFp6OGJ6e6pu`Oi+$*YZ zipTUI4G=qk#2F@wO^5B9*5f}}6II2X&f(s#VX@QfWzvczqV;m~oo6C-^~WVCCWWzt z7433+=|0%(I$oP+n`MoZ`o(szmfuL(R~lzU7@hu__4(4vWaNX~346yPTvUbrsCYy)Ixuj8z3 zU!(RS+i=EfeK$dA7CiROJ!|MNi=-oPltI`WUe$`^@%j9xIhEr4-p8zTy-#OMt*o6) z%`w8=A8F9nPzwIv5IU7gGwFR73!x#ct0Gs>SKi~f{O=|CleFL14Kp@5t8{L;$~IZB zZ~hyI4Sd9q4tYsS{S6Aea}-tf5P_{dJ1*OeW2_#ZPh#idM?v%})Mk5=oYB>>g<7ld z^P2a&avBPxpcWM(x2WywiQ~+7w)@V%%v`2!XKJ@So=p}xj((e}IF=R~=41AoK1b<9 zEsHe44z*IVgS-}PHZ53ZBgjDU&x|ql``)LQ@wX4Tc@H2iz?EJjCW=ZO6GzuxI*e7xUz<{vehB-8RP6vOmSV<-t0`Snq4jQo5XH8^vlyM&q`ha=%a{ zpvy{0Yx9!!x9076v2+wk&TIUCH+M*+6@H?1fO9&gcT%w7v@^1rDxy@hrRW8IUt3a^ zh_9Bpj*Z+~XafV9?DGQXmyDg^qCQ2tNA#UdxT~q&E;j31hNrbFHytSvf#UxF_0C=K zN0X0(d_8X{a*pC@b@8v#3u_Zq%sm}Ks=qNE>e(`@KN$wW>b({T2TKZPcg6lb-{bjy zYO4#9^Jhod0j8XPu|Z&BU$pV`>pPLBk+;z7v1J}l&VN1L9t4qXJ53=(Qn*2-U zMm%y2oSr9;-A}3b!uwM(o6+;Gev3KG&a6$E%_pRAvt>R@QF@XDvF+ne6L-9KPr&uw zRp>SJJVD+K@OB<3@2#A(SLkw7>#a;Z{LhBLE(kxYJgbTDp0K>kOs zX1*f9J;RT8q*q049t+0Z20qEG!$8u(U+#h5o*F)$9`nkX%q;^PG{5%C?60;X`hTn4 zDz(k)q~E%wK6WAruQCL5a0%0R`qFEniDTrX=M3=Rpb5#vt_aaq|K; zut2;B`de0eHYTYvYe4F?WCENkWW!?7NhL`}Ce@q8FF%o9d-iYTtB;3w*e@u?3=crjNNJYxHXOE*R+j$&sDE6f zQfd7)pW@LBXK}h(`E}TkI_6I+&byUIM!ejRaIlz1rD&3tNK#g8D|@LkYsD$)%(Fu4 zv6j}a>E1!imj`O}R+9eMbP=sAxlgFSyV!3_MZMOoXVTXET34jn{SY!9V?`>;jaha1 z<*Q<7EGU>XX;n%Lg_x{+Ll^!glQu^X$>>*AJgin1Ydp#wOzlVNCiLmE_2|U7HSiu^ z;TSLO8(y}wL`7rq?MIFE?Ufv=S=kd|P^T)Az3ZQQ1W>K$wn}#`;&1CVC$c?lQcPxP z=GREb>UAAi$u+nos}omg4zB?QjuFTT-fcqNy=m^CC+v{(!DpjCZLoOKcBdAR9Q&vfj!g_g0z74xV{5-3m(uy|t8 zQPO|6`NJ<1i=72@GRqDgtj&tFYYz1f!&+L4Cq`;O#pcr&9X;2ye-VCpRm!qUQv)`c z_9a5NNv71xRi!OIWuwsqrb`v9%`NP?Vtur%;J9qfCXb+9+W|!g?75*^E}kM)M?gio zfwm}z?SNJ&b!VolHm_>x75&|b54tTn`I3J6HIwk+C; zEKms!%bnTJ`Bqqu*FSTRt|sV7U^7bvQR`3zprBDOTYB5sXqcB!6X|D^uJsO1iK{-z z3LNjbpwWv~r?GS@ABW+eO4r@)i2kXGcW!ME&S)mNa}d#S6+QI8RG>u+6;w{kGGJ*jiVxP}s3d8<{^R^+Vz0OT;mM_8Lr=65#q zSv)n|t88I_ksrTt1>rp7GLG%9f_i0T$gx*W9=lVCRrM=Lw%O%lExlPSW zCWgLnmzBt(VxeyqrS3?#^Z8_Sya}0=&kl#F0>gdI*PxkT1#xxHQEF`2vV0Vv?_0=& zc!<3FB7JeQ6Y<7>3Dopp(qo&;in>=^=3TlVHjx795Y*VHG;d00+>`)o7m@z}R0?DB zEzMr5qv*EIax8J0;L=|rwY)EU>kl$WXASC%K@1L5s zw8cHKSp3@P`(4g!Gl%B++HUMWZgVc~ghM>9Oq}(~_z34f`$YoDt7!Ky!$OIVNtpc9 z{{V0Q0N4#oUQ?9iclmC2n&)#lcb?0pkc7~<4kr^Dsya<2@tk3;Jwu)(uIU)YB*kK} z_${9ji+d-^ekjh<>9d{HP7>7VG4b>U~e zDrR-KISAr;8yT1r_T~DJ<5Aey0L}0@e4d$H;S+B6#JRPo@vB0ak`RKZ{{W&Z6^j0UgrwQCxBThm4n z)WYO6@78aoAXnlft^~6)3VM!ztLKmB-(tmf`97g$`Tmc^>gx7>F!L7+m1iB#=&E2i zT+X_gpt>(fHNXbdJ5{w0^shomB7(g6C#dp%KF>dml4?K-ct`{(Q}GdQ#S=&Y_n`%K{Ec@vmD^Hb-E49HJH8NAFKzg6l9sD z?H?5R8^!&wFI+xW&l>R1K#lCeJb|`yA#iMF16#0Iz zKQ+4F4Pc+bz8B;?dzG2U@Zfy|?DP?Ym`k12+a>GC1J!6XQI_LWhjB#faS((#S()-b zXgs{cH@t#E;n$^I@&DgnK643IhnuAJB}+#WB98_s>i~> z@|xN^MlT_oo<08nA#(dHw9iGO*>(7errY{2Z%DIQ%N&kqxM$r$Nh$(2q1f8KTVTs)7O>Ot7PMtA4>8$2Fml#M)^Q8VqvYSMC`*@l-Q6GJ&_h&byy< zp+cbPbQwHl*}1i%Y`uWcYj~x{?X1t{Rg~zJX;IGBvD1o56J^4E07Inen}RdaaagC}rJ4v#>!-_0Ly&U5?y$Rl}#t@{|y zP!-Y3t$g0&B2gjz3i;nby(9ipn+E z1**~PN|u$RR&8!^?+pI{{W?6W;eLTKt{1D3$nR`%`f43;zPx1f$)$4SZRt?Lu^zQ+ zVj)jbUOqef^#jrH{f;({E~`j%wbbRc@a==J&1UScvn53V;=x2ueQa8dQdid0y{3I< zsnzUwE{82ub7-hK4V-r=lxeMPq)gNv&|mb^vI|vKgK!r1x`(yt?Z3zF(d+sV{@bG4 zGg`P=%#MJ@=kticLx>cUU*lcP87#-rnVZpY+vUHwllkM_J!U!%v%m6yrQS1=R&z6# z%I5(rT6dTEP6RQqYNEs;kEBboQbgO*we_s6#ti?^IucUQ8 zylu5(lIW_56AbE^zd^GksLds@fT&{fUuC6BU#C4>+GkGg{7IfuIb2coN!_i zA}mOc;@uyU#@24Wk2^UzSbjf9uuV>@r|p)mZY4SWE8E>+D&=bPpl+qdOz{s0)$AVC8`avo9E(ZZG zGkKwYJDJT_7sosj{RZC~<8BW>SLySgX$sXoPnhFyw4Ji6>TelJ$-O4bT%PHUpI6F0 zVDTS^wD^SyjnZ@5J$3xetIFwP{7Wg!Kbzz1?%SW|JM5Ed5G$&tjah6}dhegSF^jMl89)l=H+-T+fTFxv=v~ceO z#Qrbv_k*|wxow_Bo}F%IACO*op4jyJ{I(Y@%`7N%D`#dcWzD2r2XiVF=si0W%t<7@ zSCcS0PPgcvF8e{@IHg|8vjs)1y)5PM3Z}&$DO047?i{xj2uPW%67l%ucpmeWH#CN- zI$b6<9}x-m8hwIP2DSFo@A?njZ!@8XU#n$VS%nuJO)5mz2ulziRPqTp9#?P3TG}pi zwC_4TlZtO}?>9Em5?vLt*x~4UzNN4A38Y36C23oXKOo|GrTo*}d0WMtmmAUN_dXSO zE6k#N-LI4JG*$R@{6g18{{UmkY43BWftqL}g(pJ!gP?|#g2eWDslIU>x6;z~wLI8Y6<}2SzHXmru3o5_Ke93P7R_y><{Sy+^exHm9io<+*7wmChTCC?v2+EUl&dTNll>xEQkbIam~$T6)RTDh zpXrZS{HVpD)gWPvwXoXMfGH+geqh6NaE`#KYG2mzT2}tg62x22~e#keHm%iZ?mPZuOvxyEtqwfC)gw!;i+ zK#88P%|f($v@+E2y{aJ4pY-BT%BO3WiN zD~z!vB?wPteYKgd=h=*S=lM`$&&C z{T6@A0Md+_nQAZsDl~z#x7V{kxnYYK!ikaw@g6zQsS^Z8jaR@k3f5Ma)K{YEzVJP> zXr+#*bRbqGJ!@J`EAF3c{%^lRBU%3dF3B*GnfNN8TgqGMuMCdA9>O33zRQAxpJglZ z`|Il!vAL9jipssOO+2`v7a(jWani^52*qkF5oGhDEi#8$x3qr#~}TE&YMfz11& zCbPz3E+ub$K9`=%rA=$VT4#5zO#s9T{`JPF^=tBbVlV0IK9T%S=7wg1rUKkn&c8dm zr~-+!mt-AQs3p2pVA2IFs=ZdQtNl{orfq2VdckH4u`zvqGbCT10L^&B9U7__7b;zRXTEP1+p=HM@B+>~f>@|aH9`~gQ zT3&;QjaQv=TP4lhwnrR^nbe{fS_u5sm4_7zY5fCW^ZyGdV#K z4=Qx!4r$gRv0?qCuC8$Hb*6p9w8X?#-_PfGzy`yV#?Q9C*15jn8_o`I(Og1yu{EjK ze|u3|j&18BEKMsD?WLy+Fbgyt7a29rVFaUV=v|w&d#pjlp@8gA^jOxJpM5I>tbZ1t z%#7iDlCQjmbg^1ZZKi5`ZYsQ1vskKXSK*)LM`K>|AH{9>e4PC7*zPx0wfa9o={i4x zrDY7fxo+VeK6X%vbGbpOMRARM<0*IN_ z@ZT+@9~F1p{{S<&(P**Sqp_2|47dX{=@rdS?Nlrn3@lHtdfv4y30u~dAG#qw6?Q&D z>pM>sGrA7H$HeU!#`}F+fWu7D(sc{s2Gr8%d3N-VMsG6-u2GNS7rNBEbGzv636F=! z9xNdkT^2uJ4HgN}lcUpOu+8jwb-TyBgZBGqS@*}Ntv`u!+Bu^yKi+gbAB=h;RbvtC zuz3r|dV7fVytUVXd{1+IEjYV>F8wa6ST=H-Qch@-aZFa&i55} zQO5p+6eR^isXuo*o|U*}{^9z6Bc2z<**)(a*7uv7zP7f2xX5!`oW*48v#!_qFGQ+& zS$MA>HQL|*03d`t++*4C&HbaVkbH+;dv}!Kd;{ZNgT~wjeuEy{pc<%zX?Gbyp=cs) z^*VhS^aOalnqMtYR`DOz5#^p-&Oq|x!#%rqS%+>GG?J!x8HF>x(+jT@TSGD!A<9Zs zaeSZjt)jN@@DTzzI34y!JzkY>g*IAM)%KNK@q?`}R@Rov)Xc8G$g?LT7DsAD;s>TK z!~K%+#4=VhtCEkD+~>6PLz+V?C||7|0ZV9977z>-!vOx@tWva@tY>*;kM=3PcVLui z%u8KPnfI&5^Xj?WBf1^yAuIumP^m&swYx=HC5r{6B$GZ)<-COEyUF)FKylxEOqG{) zIpTfcmjYPa~d4vx68kaJ^sMFQEc@(FXRSQp1z zMF(d4hxq*d2a{Io`2KZ^rD|z8)UTI!Q493Z(njxZk!QwR0Z|2YQl$H+Kd~OTUN5#) zQR(+Ihmt*h2Xy-4=o6AxGePT{0rmpkt6@&`AbvX<^Xe%6yUfa2mJZhLob(RzNTeHS zTSUfmhX?qsDhSk?6cBMD1nPE}YDaTPDKmd>;k0-T2SdoQ$zX?Xv`{{VB#eXkMZm-RCFqxI9wUOL+;ilR|L6e(9Co}#^hs1^+t;8D) z>kf1ca@Hv$rOPkJPyWDvuy#<{TFSSu-d{z$n|_B|BNvN%1@5J(>hs;H3{lamDV`Ei zlW|Ec@ya|izE}rujMMrX+!lX!fjJs_=0ZzoaUM72a&+~uR?-4BAqw0KUqO~jQN&b( zh~n1F35qoInv<|(_2w^_x$>@0dUqmvnWT+65`Fe+)-=|AVt*K}^C8Uxon~$YiJ=ig=jU9bR}rw) zn^Mv;e9&)OU*k1T6Eo}XnBCFo4W6CqL+11H{lFZ&rL(JCOxgq`CDuLh(EBY4l_Wu$ zv{oi3);~Oj@R z2U~U?VcmQTX?7au?{D+_dKS&+`j5Y>p@rk*dL=Q9mbWp&k7daoCJfo8_QgqN$tayZ zW8|aD`132zofA2|Zg+Fhcim>=-aQu9o8xY4#NqVf+~l-S$Y6g-cUj020nVlUzZA`B zecYUGd&C_70E0R#Elkdznp>6J>G>@lAPIiNnW}Vs&fs?RmPV`EQPWr%>|Dd4L`vF} z6!zEVC_PM$N1l$2Ojq8Lv#*DjsZ4&CbDPg<)nlQ14x2D}_I;-4n9YA|tTraSABKb1 z^g{7JdAkJ5at&qy5f0x)H*taz7i}+k2YWM+E7GHJ|E2AD@{JnSH*G0L{RLS@~X5=ry>>l8oi8?8nvQ)Y3V+Q!npeWoZ?Rwi?DA+UK3 zVkUjzkN*HXPo!nBo;}9hNaIEuGGG z*gZcxzo5W~ry1RIdJ1c)(%qzS3bQOY|+dxWP z8q=&g*75x|hW#r^pXbs&e;vu}tX^%k*HoFrQ!{M(1!Sy%cU}^x_7t)ZjmTP=a>QET zfy7U&{z4u%4nI$TTIMYezFBQK(1uM7mqbigIQhmXtU3Ow%s}F1Vkgo+9;=>1UnO)w zb)U<`(#hxSO#q`09UJK9G-b-0fn;!-m$+yO$!ln#A}t+`!uJ#U8$2gB$DydFSyA@5 zXV60Db4YtjF4O}zSn^8d0ZF+i3AJv)V)ZBydTm(an@;e3M1-_Ur<&M_&9^XofG!GybIW+KuLlEtmZ zF-fgw(?W}ACdP&pGoO0&wQW-}ogtkQ;ofaF(HI`3D#*uKn@H_Gp4p#Xj%}iv3@Mf# z%P%38D_P!@nhsv_IP@Jz79UR&R?Lkn#9V3bg|K(?Bam739c^q7i8rd2f_TuHT;o4C8EH5d9cn*D$r#gFcxpra83Xfx(9rT@?kT(1Q)pHrk=V&f3tr)oF^J+86nVKV_{J{4Z8^3KVe6x(Er6kbh&g zWK!z+wJ_@3jbG@Sn||$3vX!w-w@WG98m*BJnYB7-MO26|S>z z3@=;-S3v^PG(Rl1`%DVJulBDKtG4lMcQtPD+-}8WrMp`MD|$L>=~}d~>=huR2}v_} zo5cSB-4p1pvQkT(LZ_;zU@%iMGD`xvo*h|2v1q`h@Z`Ml6A=EIs9x~ z&WMy~X8!;!?N=(&1yKS}18QQa(lL9|g&FP}C26f~=@$G!Wr8}jFpdiKRNwg7^e@Y4 z9m_YMElPq&QWDpJM2=_I)PIZv6L0nyITpI0=n9PH7ey6|=uOe3S-I0wT(z5`6HVFr zayTUWreXu5mr;p! zk#3Drt$*cF#USc@9_;&pr7cZ7)godoSR|N!qngA-$5W16(<>U6Il2D;fP<=*atK5E z+DmHO0)`3fD5uucKdnEX`@cEvhfzxDVpnWGvCeMZ#agxGqh&I&E4dU>>;}{&Z%=LO zcoh13{eKC`c)O6o%jHLlpX46nqt;ZH(?JL|bEP37NmDUJ38g^F$(H1U5VZ*{5hb_h zOS!*`(PX)y)=%g#xap-;hb!_^Z5k0 z<|7|trFMYP8d_55(TIy&8DNx*F9x2h#IHen_+aZKvk0P7gGxVu=x=QHj` zwdqyY&znNEibC>9@OBR=mgh^YnZ|b-{k~5z8F2o3I@%dY^H$W`l-OBOs_c^F8#b!8 zr9HE27Smeu9ym`ArSZp2o8(>#YjcrxWi`2nGjQ-WbGDjOPaj&rJyP7z1(!s$5so_4 zm53j&uZVYc^(PnN^QVqKb+OUy{{WBWsql(S%y~!hMvX0(zxsMTs+KN zCC#a|Lz86<+m!i6s~ScaF%z3uVTn1DSeB1T6vetcJsi5zAAbW+oY~QPCsnbj>6fiW zgflG*u=GK0E0IX0uFX`Z{jqOZ{{U1Kw>?#K==~2$Z6~USzef)|S^FW}<@1;_O9!xh zHJkdSWrk9rh&shB1pLy{LIXB01T%xZT1A=+-?!MwrjW}_OpK!QIeK8_QEcg2`D>@JnpIZS_rNAiUs$N`5gWX|@K2Pd ze~ze1u5O50%L1ADh-nK)L5%m}pAG|GJzLMI2PIXBpo?qPJ>ucHQ*$$oht+B8SEP0s zz*p?<%~li@mTt<~%YdqUK`hV6)Do5@W7c9kPsMo?K}UJ@I?Vq7BX*a^&)4bN@Ah*U zRh*t_s;)qbe<^AyL=c4FE2txwrieeJ*N*J9c&$y$e$&mpzkB5EK6{yMGAw@%bvDq~ zrpF@olf7d6hbzqI%2&ArTh($Br73< zISM;U^xFEwdNo2D*@j)Gzt}q3VusK0Kbtd}R_$)TTyBJ8SuF->AeY6`Xkbyp+_}+e zF(tUHNw>#o_S*9s-0zQhFD_$Y>Q_p)OZ?}Srejv>!di72kj&P(nhhs{+?FZy%NM=A zD_$a#>E?W16)WNBa_0w4T>R}1*J*{>o(PCKF?ajPS+>P z>F*1vz}VD{uyWluM81m8AmF8@jtq{0Va|<8#Rf~zBdx0wKOKLo&~BHw{{Uo(oLfUH z3C|+#;{@axh_xp)8v3X{NWZ$V{KU!=*g3D)=wVrWo^^h=K|Y{`)Ya6^%~O}dK<4UN^ghPwpT*i;hAyt#B#i%J43;~ML*$dtFr zHKHs_24IvOY3XP#M_sdgtR54d*6p{aK=K=P9TzlEqW49mO2^I*&|#pcP*#*t_Mf=sdX0pc!<_n2PZ8sxT4^X#;@M(3q)m0NEST4+fg&i!N>)c|&bCG+ zE_Qd`8o3=_{o^IG<;TsbucRJ&lz2%52G!nNbj{{R=d-m@Q@<*~Wc^>ucX(M#*T#+NY2fVPM<(#zLm zwUvVI`G009JPv7Ah`+ud5$@&N{nmIw`f9RMwxu;MDw2za-tZ2T zr@CzuF*Q(Zay;_4Od>8LC%iih1zURA4EG}E^z=>KD(3|@|I%t6~_^3d#&nPjy<)#zcUAy zwrgd#qNz3V8xhq@S$xq4dp~rUXGtHK3~PquQskSBi`U@wn76jyT3OBeg2z`7%r(mp z`b>Q!ChkVk3#@v)Yq>0tlX}wirD`%sJtp(?R@~!=Z6R4B6nImart;*1*5HaVDlhUj zJJ@r7>Go1)J$)zh>u=Kr;#{B;g=;yk-=SqHuM32FjA`iVB2*}HgVMBxY!ELnzsLMq zGf11b+IiGFEf6eZGhAvWsU%gUTU0ZpEK1h-3Sv^Dt?NFOiq<`ELvwt4N;Z@Lzip|y z&L-{cRwyC?HQ~i9Dq6xc9<(+80IFsu`TVllT&7))hZ3!M-EmVrl>Pv{m_Lofg_5@8 ztKoZ>O+rP9Nu}xO@x;vX*j)2CZ**H6MmIyEu{j(9YEffgBdvCuoW$v&PHy0udkgNd zgIf;eiT6bQK15K()y(RZGMda^pRSa!l}ZE6E~ig|){bDlT2QqxASEPLA}=u(ui+FH zCPGW2b@YPr`MEImW4U8BmT^zF>}7TogH5VRR!u+C>F%)WYV=H@*{8AFGm`lX;rCXi z=99Y9MYO`-H%Gnto4QM?2%{q$*#7_(D}PuNMD#r7fg86=#`z;(Gop6OyE6%GW_m6f zF2yAI@(ql+rN=Q@DLp;&6|EveuaZ;eM_1$iX=iEAUKl7P!Vfp6&0J<7#>_T?$D59Q zP9c`o9Ro4%i#vUpKDK6(zgHj&*IJ#2FzBkD+QoXLSSvZ01*SlMWCf3qRQV$Ht)lHNJqrzaT+T%7^Meh!jO?^lb-D3L>@&5os+OcZSr?2K-+RI;eKRK(I*p+OV_uaxj z_VqGPp-YUbMe{Fl(y~*%A6R(z-%lQX zIQa)qS-@ImBvJg*^w}eVXmz4n&BdohgmM#4B>Fo|B1^!WSqJP^*%fVneJvxO?fO?r zbX>1gJnH5MRH&L<4GAHGGo0pIT=e@X<>% zHMB>0rP}vv?6`uFqT)uLLvNoF7l&yw#EAIEj zWe#7SnH!oDqO!wY4w#+$E5Ti4p9Lk@Kv|1k*Bp9Yih!i_h$W-&c~l|IORmO?q-tR% zS|C{-Zb1;FQ{6!n=936Tf&1zj)?y;F>(TUCHye69(#WyU25aq#vC-*kW1tv@Zy>RO zo$-{vz`h#5t223xnXFw<(!;EJ z`odc&kcqOW@;0;R`O+avO%bRq0v6fTTRc^^s7iSBsN_`isXj~l?=D%u2jF>zGq#dA zsqD|#iK5a23NJOPJCjRRzaOknwDql`X1<-jEubEMYmoAy`FP!6x+I`lS(A38T6#E!U6!%Bt8Wk42*3Hp#Pfw-mw)%dA`#D?V*MH|hjl+)2?dAg(SS1butw4NZ zp@mrY&81J>hdZ?BHWa4D24_96)@LJ&k4d8jV^3a0j;4v;MB`=(X&Ar~Qi83EHufDZ zhcQk==;|9{*hhGoc(0(k70Y3Lno{{Sc> z+Hy|xtTFyLn>qY*D(tJ2O34w#(CHr99hkKofyhTf8ZT)L{{S#MeE_sNmTOwVpd|dHnVS2wbh^GHufR=zB6ORvlO_F+ zLC!0soYqrnw#Im8HXT4s{fjCx*wv8DEo$B@Iq~5$)ACeja!1^%-9}e9JOyR0g$iTT(WNv@ z(JWHP{THo`a##ATXq&0eYWH2_O6ol0w&!!##RHf5>{?Svtige!%+}@;KQsh`_e5Ua zmWa~Z?7WBIe;aU}GRSTz&30ZxYd3p+?rRYF7;61KCj+9|Q%nsqa@*#GmZ3~QlqDJK zdSUS+@((lQO+#rNewy6gZoF{3xd?e&Bng~cMQ|ZPEc=ie5{cXqTUv#`#aPK-SCwh} zm)ycMPR44ww9n6C<{-QZ&|PBO_Pg|+TXYVa`piBaEYJE z+N-Zg)y~CuPZRIC>3^+uFYXNq6a7~7pU#Ig+(SFwM>#N?;Lxv{b2JdUsTo1D(>=P%kdmaF&Bo716I&)Z;*vyl6c zQM5Bw!e*5py5;qVpfvLP?$18c38T&~-$#^FQP)_mK4l1b+5A^+w(fxxLKEY460tGc;?Udi12DZv?|<6AoGJ9 zQGonIujeLCbD8k>OKvfombsnIU!csLvBHl7TPcURF6pI|%4!+_?34MLHLXk%%OBK8 zn9JPN@&?9!d3s(k?)xwc@)cL2>BRP?-dZ~Qy!lws&UX=vAu(`e%>gtl)|asDYkp&I zc^Ah1M)E#B7I>WFdLAFe3Gmt9;m)!p@(E6d#=I{+PQNbakwUg&?H<09{WXatzb%=k z;a?>uu3ZDHM2X0B+V6hC_8qHA{p5&!cbu8_4JG0k^@;e$dG)X0hmYev*DUNmm^oxgIgI%C%-`l7O;K$AbKID;xZPegELJm<-w>IBt9L`>0RU0A#)n1C_3^bW7Y)VDH zG~MX@E&jXZv(m1k+In25xQuRfENZyKQHIgg>ky_(r!w-)EVQga){zIiR@5Kn%w?DT zRpveugFk1V#pgNfh4z~aU7EM4w5E4--pU{+snnpZKtp%-+Mdtqj&uE#;d-wCbez2K zc$}y@jgu`rR{ir>*sn#|%Dg@fZcfmcJ98jL$}OVEpn;;-Ek*KR^8K%kf7gr$I;^C- zZ9ZpPk>17s0E~26#WitF+Hati!yNZt7>-v<2N9337C!VE>eiEAYJ5xnLjM3%GeL}f zo`Ft{e#E@)&u9%iO^mPCcW!iHR#;`{_3r2dMZ-jETM{Tzd~pGD1I@kw={si@eJ+4$ zd0WTZJjk;NpP24)M#9sDw#fL(a>%BYpogO%aD*l1R;L>Go?485_3JaD7I&7!%J1|_ zc08tv+L?|a$sxfXr2U%CuwmS%ZpnZkzqrvBv{&<`!p+F+Y%ETjL!3`B7BkW7x#dD= zaY}c?&9U+;(S>aQRgzNo8KNL_F*Utv#mUaMp5>|c8Cy*ZU1!)i{noVzSSqJZ8jHEsBFNJ~1qW+(XcpHI*6jK?v052|?z{W3Y~A8q};VOT-T=N85<)%z=n zm{ZwUDUMs(v;DXy#tkLDj#&=eUxX6xj?yFr6YoLQxC^cn)wzuddoYZu9$!_ax`Yd26FuGHcF@)R`t6zY{fNe zF%cctkvzGdJ!d1talLn8x6gvLse2cBtmwkvc!5nmm5g4es%tS?)j#~0TGurz=pSFr z=5`5JT*^6TV)c2M6aAAzI7+s0{{XXl&o@I~F?-+EO3Z)yUZ0Y)JNir#nE4#iH?zep za(Mh23YeV6afUGmBb~~RPwc2Q>vK(}{`s}+O6cc0RT=^6of=kbqc?W;`2mlZ#V#pH zm!`h^$fMs-R!MJY>-|x?)Et_WFX%H{GWJ0`i=S3+5sjFzexxLw@{v4N)D+F+@>1GL zc_q0YD@uS>9+zo-Z}GsmXA?{4oVt1Z=3E~@n=N8ybI2@@t5qGpn^p{8Us%`b+%(SY zHhq0N>5NXK*F@Xr)pW{=w2Cp2W{w4xwQp)$;+cuK{{WxI_B38Tmajr*H8eCzS#6rO z<2GYQL9$$zIN39WxjomdqUE1ipKWVdflvj6Q(mQoDk0oTtrw+fQeM;ie5Cf;)ti4^ z?H=!6Nr)GbwDi|6P0;rZ^Bku?p2G!io5sS+v;7xcsdVpJeEQ5XEYw44-}^GjzeQot?jn+PSC(1_~{V@81Ejj=`n1_@_$ywUqE~}lq!g7EZRG`TgT>i zH54nWjluK}XBrCtk9=KUaIYWrisdI_tnL*W)+i@EOP0W2exW>(+uWZXitg6Xb%8KD zt#X!@_LJR6wzh30oVV2q+OZcYWU7>~s2ON?AIV^_N>a0Ge^}30Bu!#H-;~wH)MclY zv`JEP>yJrVuV}E&Ck9&8+X#c2ROYN&(I3zC#Mkp5W2xuku2(-@bL{gbZQO!wPwA(?1F_70WHCE;}Uz&>JV*s}L zT6c@EsM@cvX0YP6l+Hc$%bx~e9b2TN80@C#-07bo`vyKJ#u3gD|-)G11UpRXs0w1UPb!AK-~stqi%7atMtyk)G)Ocm#Hv9qDw`%dnK znxc8nkRzpJv@0Hm9J5LFkIufHJ=Eg3^|CAmvNk*1`Q1HH3UWH3mt3N%1$qaxEEPQ~ zcu_Enwk71HiK5zhecz6k*3cD+qAd=GILFPb#YaR+C9(Fxc(e}DY6Q2fW7e~Kf8F@o zJx48rw=zURlA? z&Rlz(E%^Q27O#%h!J0kw^8lW{fqADNxQIq+bOr92h%n|YNc_&nW$w?Z@?Vm73nRtW zoj~k6(7Af5wp$$Klm^QWA&&Auu?6NXDmBijb zNF$e?*Hr3i>8@9ec@)4y3tDVC-qni7<*S>O$PDy|Y4GcCZQ?$?!dv-0%j`^MvO=j-K!q@q)*d0@7`)}Sq2uB1M$ z^nCdqNIz~2-f9kOrnB7!fk|P!T~}=|$Go=ms3ygabjrnZVrW?>|BIvQXfP_-t{RQ&1mA3(7m!D*X|Q|)Y(ITdeU zg0XVcbLr^<^|M{F3y-J>Z%_}AKfl}0~ zc<-CYqR`#x6@MQqhg+3%S66da+J({6Z)@XObhU3DiQIOzDr?{7iqE9}b#}hvHk_eo zN^8yCik>pgu(gAzIEtBFRr8M|p{xM~wuN}C3~^6WG|&49%JM)T#S~rdA9qg5Y_%|P z1+z|5Lsdv|yZWBTJ!@*-V$oX6%G>1gFCo`gpDq#>KaKDyw+geLQY)P1j!QZ@ANaoD zOp(dGMthPjUygq{JyZEl3s-~g+CBFAEFMowU&$OeQ+5_-C!z8FZvJ04v_6eO0o6=x zP=Oj!4>zg3)huNA=MS6e`=GtPFm?KOqZpjO6?;x+`F6f8kGBg)Q9Bm0fPL;N9ZL?^ zq3c>i;JLS?pG4&T{5t)c^l!5APX2%&b(jtLy~cElbZuC%lF~oZNJ=ky`($%b{vx*G z+~K%RdFmYc9ZKB9mq@$Bx;hK7tIT4i>zdo24AR0SCDob>7e!iQY~81^^>hjuS#}IitgPHFmew5% zJ4{ViTZ_+o8$Y~yyU>T~%=s`Q{Bqfv4Jatw#}PveK! z^9TCf$#X{1x*1J(JU2te^rSS7_gES^!sd1=2H?w_cDzyoE5uK_vw!0c7hlgF7TUqs zIy&ti1EA9A#H24TgQIZ#zcq!QwYHBq2wJ0BRWZiV$MM(SPg&*Ki6B=GC*y-ElWwwcr(fyO1l|*^oAo^sy>XnzMTK&1&m%Oz!y{gmWr6uQGNR{cb?7 z_4PFySx%o#m3)WI^Y9PY9Qsx(boWK>NvuT4xNc+ovHiTzv6W4JXJ@a-==$B|&qZ9F z93;A?_>f??Lez}u2~?N8M-n;<*4MUYlE2$;_VX4d#@w(<=#80t^XuV4La?J{}3U$fWP>v{wB7~#e<#WHL1xElDJp1~VS3%2C8 z(<7>;K>Vudx=@U)r4T>PjqQdpyrHAr_3w8Z{fC>iv~ag~Iu3^~1CD0e8$4#OKFUc| z9Bkx{RqRyM0PBBnmW$fA#%w+l=K2;j_7;6t`R+$EmC@MDx&Fv@dTyg%p&sE?IwfB; zfMe9k;mVkH_})GY6HDoh;!uB!9J6G_hL?J3apZXThNfJPKZy7xqYX z4e|~>eWZ;3j1?uDqB+{#&W4($t$CJuEctStKT<448F!k%$GYZf!VOQSEkMd>82VVHUNphewr(yblDjOiy8i%ix=INzsm5{axtWs`0Va!&;HicH#D84cFIeYtGv*_Q;EA4_)Q`&5tj66S(;IcB`1(*j06* z0PdKZk_PinpbKVC^P|j?qcOrFFlTx>wB*2>it$q?X2a9LK60y9X=~FmCt#Vg?#n*b+zzN zRCK8v7G8$m+0|0s%Rz5L*!G)_Bi7MAzmn>DLMlI2jg<>DI%(%F$VS@REJ}tjw6WE> zsGfBoV@Ld-NbD2iH2(nQ zQ!GJAmWpYb{J@p&A%An!b)}|1iT6t~D&DIg1{={lf)640Dq^tBqSNYPR4jY}_WBd; zweFAW9854}y#T1|VwCI}S5CAVhiv3KcO^Zm=PgJx6F!mY9+vd9j+RMm)d-eyNLx1~ z1)B-KV-glLx(#t&#I$a2T=lawpJfLm5GgYNwA+|14xWauKrPnUO=Dl|U?!JXJUnG| zCgY$(ZEW0IHaMmIAw~!NRkV73c-sr0X!-nxUrog-=j&Hi=g-X2+{~9W1#<=}M)RqE zP}PY%R-g2bS+#AE!t+Oye$TFZ0jG$OviyxAD&m=l9tss()dl!Jnfk^zqK>0e(+ zbX@&QY;-UBENVdrTj=Mi&1$KS7n{wkr*P5Iie}@buUf~t2l&ddb6s56s}>)!Y%@RZ zg^JtBl(p{o{{X0-+sC%5?_zF8`2`Gi9>FBPL#1V?vcbNKkHvFfk7t6vK&o8c(9_~? z((_w>C9uYE$5H3$WbUU=m~Q=DOy@GR7_Cl0`vl4@$e2{$*)S&2Us#xr$9dj!HjLyj ztUrvx4V<=ZMoF6JK&4h8s@arjKX8Ta{lcr0;{NJmvbopMGKvQzjEC5pYdD!Nnegde0=v08YfY%DqPN1} zFItX0ePi=1tcm3_^pX1dlNOcgQo~oj)(I_H5sUTdNHkm9?D#H7_J3T<`lwW*EP3*~F|9^&kM)Q&#z6I)rh*wAR>;Ll3Mx2>RoCJsLt1;ie{ZR$ zyP=`cud|n+6k1xRTPd8?7jPd8Q|TovH$2kp_$XbG!CD3jN} z$$POd;9ndHArcEU3R20^DMG=1TV9^ATIzAU?sr4VbIYfz^6l#rJ~6RDu@;>}kZP@@ zL27il$d+ngNy#l%lX<%0f&Mw-^t>hHT`lzw^|!kw6XloE*1H+C-A?8YLe&?+$yHlc z)Ll~8M-?FUzshRTy7foE+tXZwqfV=1P}rHuri=Li(VYP2ZqY!$ZD`l$*JgD)}tSR5ErBx-G7wBYLa@RerW=rw5!c2$l)KsB9K~}!3M>OA*gds^Scz4Jf0HChXWQDB< zeUnNcv2PcTW$PaJpW z0j-5Pun$?-#IBQIQEbPI*4IFS+3G!xO7^CP5) zZKr{y&o^sHGwg=dnWGa~685EFSAxf{=N2xHwa#cc9IqYFzssRcA1^_y&1M}#OBywE zvZrG|V-Wy>rUvsx(`jRjq78{Qt!iA)DfA^h+SVYmanx}^s46&7X`^SfvKu&7%R;{m zS8DVVF%w_u^^e8+9xtWpF3HT3iB-A}9*MB0rPgJv{QJ~7z_OCvZd3-e_v!Q>mMlNZ(Wz_TV~e7Ken+S6wj=C#*ldH?)fK_ zQ`a8?sN^l9)CYH_VS4kt&ca)H;yIJCrJ4B?iUD;CGZ9aYe>OESvhq1*F|-B6XkoL3 zn@v16_nd*jmw4%yMm4ClXo6{2h6jzjM~^8$u6;FhU0T`sR>|mc{o|lA zfaqa805Ps#Tio^^%!wwe%===~x;}p)Dt3EeD@>}xG}p$$4JyvPVVx}76=XA;x?o6a zF?y>$wvvzJwXIc<*xbgh;j?sGMgIUCteU-Qyy7jdZny2|>ePs{oW-;2U~0QaB(d)x z*SEM+TqUv=zeAby?OaOLA9(RWlEV|85f3hYqwbMcFYRRCEAd}-u1`z*Bbd``#_RbC zs%coe{Qm%z7$P6$nI%HeOs(zA&Bh$II*vD6*7o?EH`W0o)@yIebzHSM?$)WTyx7@Y zsA1koca@Qusm}iZ+cpJ!a)yp5LA8Hli;nlFy0xFnaQ;i>`8@vsCg(#|SGerKi>sBr ziE~viZiP3}C6sYv*psOcu)e*?LfV7@esP}rs`y9huCP`;N5gTw0V^^=dytC|F zjhgh3&{KOBKZ@7VCS$)ghYRBlZ1muIy-R8X$NW;Vj*#;8VGYnZkCUD9oQZ@tR$>NF z-H4=8hKY~G^8AsF!1)iU#L#Y>KM&jU?(M6Vmd2=dE3zUFF@cjzo2)ZgDX)5n$E?S# zrnaY#xRd5%aojHhwYk$|HHSon(`%@ZbMeE<-y$&Ts>RCaa^E05=C8hmD&}61@tT?a zPc@@~zd0NqXs1S!S$ZxUtMwzu)6ihai5eA!Ic*ixiyRG7(zs&&;$DLd$C*`pT#v(} z(;1bX@&5oZ!i%7`e<7W>i;1(JyN#y`b@@7a%II3bGE{jM{uvcnFzxxnJ>-r%!;prK zcFumkLBeKw^k&=9p$+~V>ms&eoDLgVOGcZjUW`V`m#Cqeh9p(X$;d+av!j(u0|yNY zGtl%k&1zF4Mlpsa8PB+@7MBh{r)!hs82u|){Nq97YJ2q@5VLuHUEZ5#O*`mxE;K4; zWiYcM9!M(vZbyy^Rd{0F&uy=7=?1pz{w?IPa>p5IsoHh4$=A&t+IVrQB~%GdrPZ&`YzSDb7(ywtQIY z*n+LCe~SMA!khk9=~~|D-d@blJAhOjY*jf4bwjt*7PiLcDe{z_iX;X-v08?nmHwFR zxgLMRpXL1zK&~)y^DuDrx=sH8AFZD3Y7O)?^EsnCmDeMw^=IzIhH9x>B*iK-Pqu&B zRy=(F0Q$G6#;q6Y)$*WxWy|uOf6d+0PpbVZ`55T%-G=Xx(a@tN$=JSM+0D;=rRv>* z1qnGGkIfyw596-VN1LoZ2gcneP2|dR=iax{S$=By*np0Tg2UaTDT?+zRy7D!SSP{j z1->Ue(l681>nnxLJA=5OK+f8${dQQFwp>^4Xatq{DOfNEC9F@nW7G4YZ(n%Yn|X_J zknma%o<*W7XJWOo^!&Xe@monk2jIB%5isGz|{7rfW#;v4HHm*>HEJ0)EW#k zOSn8%Z*Pc9wG+Y7*f+N`k>NR5r9pz9Ey;bm0l~p2r@k~Ao8IB9Z{6c`{Tran(pz;q z?gy&stI&&4B_lgghd!#g=hDjQlqkaF`iB05n%0r)Bj-3IH`Y%Mk8+qG-D^KnYZpzu zu_w@H=@_k{nr!A@`*SL*dQ^a|WLBF`yYrw&#|#GT1nE<~@;hW#XIR?F-JJ#bE(u1H zkYQ(KmM;||>)5XlHkuNl1x;aa{D+O!cMddV`gJ`qvns2nwYWYY?*~(l+ z6tY^dS)l!vFSFbFo5Q$0Foqo-Ku-{G(Acc}f^>}h{{StRPSbjOFEc+R$c-M`$K%~T zR!TghS~A1?{8}t%+XtU4!pqdW_QsnoYB0O*E=LJQEhI(adn-2-*YaIDfU8KX8ZvPv z6=`^j)BtIa(*D6Q@-a$UX;}GYB5(Y9T6c%UJ(JP({KwIFo-_MDOR?(Fk=h$`gUx2% zy;J#Zm)cYnC0`)RUw{OUUvJyZ^ck&U$pNM94Vj^RL!iEpjao!8Q&@u_rh~jhTC7L^ z05wCEv|oqsrtW)EcWIWeinZjpI(mm^-$L0lf}p*9BCHB&@_#mqer)EZmX6aH85GeJ6z}3>9Lx=i+WUxNp9WW)IZmYMLqFon^t|%Y0WjOde<#d>}yt3lTzPV zu&|2H)^Ac1G4Y0=Zj_o5p|`fTtuHeT=($TQ+hbo`gZ5Z7Sg*QGmcAvXE9j8I*y&$S zK@0<|N4hKdaiJ^?RWPxexj@gj$t!ftc36W@rJ?0ZxAR4ZYsGEp>FG6?j6S0~j^liL zpPkF_T>DrYQb(sacNFLHvmNZU=a}ZI&17-W;N=XY`DjuY z4V)8N1f!c~Ka_ROfmAQ8=}(p{D7U(`BvwTw%Y^~haxBoaMPU_aZ6B~A+~v=1k~qBt zd%*?qO$sJyTg6BHQ73R~4Kh4t&c-W)Ek#BzG&7E;L)P(C^b2Vu!0byXZ;~QpcBkf5 z5IOcRQqN2z%XW>H{yt@+nSx|z*_j~=#|i2C36yvGfMttNb)heD$e#?*+MN3#Z8I>s z&Z@`2&&xx)3)*4zfXyakKKc3ROZtCI{{R7Fm3L^+P@q` z&EjFDx6r#9Ic*U&!Df$51@{O6Kh9|}AvD)H_>YDxShSY3kAJpp7WT(e6|eKsNp6hO2372Qmg=^l|^FO(;nJEBS|-WqvN;x7uItFz2`H$fy|RQ(zVF4 z`n{*@?YovFqu?@PD}HH8jhH;`)j89X=N;$TB(+<_V9d(9+U# z>yawntH6zO8JmKXV1C&2##62G*N()O8eGt1{;-)%bydqrK;JE0!{*B*)7Cg{y9t=X zHO9zo{eJ11{yENQbedn{10UCO3C>4rP@PK`I@O@tc^a4JFmAXmLBWiv6&+*Q1+Vjx zT;5^DT+J`<1Wret&r9pSrb#opoH3-xtScqJ$`=NU4NMN(&03k&=>*2}qYT48|0s8>C}&j~)#}x|`9U z)M&oMMs4G_*YD3gdp*y+_niAYuY1ou=lxL+8w=|VxWiOL2A=i`IWT;5Dy_@f{XjG% zzJkg)B$+qh-k5Z-n>ep^1{Hnt)!nHvUhT-OXd9hyZ;9gh5S#q&Zi0_W%+N%i&S!ZC z;RNH_{N{i5pyD5^s~!Q;K@!h<0!3+j2}UE1_$T@md>?}R1(5r~qz#`E@ahaOysG6Q8! z4F;hx7PSn-zR5n}dmvd*yO9`3#MGo;C1S4UEu~gr+ORwaRPgF^OYuN(9TlZgP+PBc za_Dr==Du6y*OEZ91zMDAc*;z|Qqpr__zr8jBGMPRsW;uzH@u*jwM8?)pHpg`v#r0w zf?^E&^LSLlqWYfQV|I4)+9$%Wo-Z@DjC&FB7NCNy@>tu1&8WIIGBvsyHP6JPuT|A* zx2lGvIc0eMTiC?#-RV2l+XuH-eGmDNW*8st$>lDl%H$tohE6Hy)QoC*Y-Sjcn`8L9 z?orwB=yw5t`=67bV9Fzl#VQ-!!zrT0Pa`(dRiO`i2`ZiQL01 z$64ALQ|(-C>F@;Amt`aCz~JzJM4jedV%4C*rPZ&Cq35nhMP#vt4SB?DdOzs}y@jxy zDlwy4ut2M!+|U$dXTbJL7wc;dOi8{0IA|REp~bOAhIm8oA2$He{VR=tikLfs@9Uqx zaa(9ol|HKr)$-FVC;fe{%R`Pah6RF|#~zG6%oy~{l)sqaj|^A6N9}f?-N>Sk?CA z;~3xXvPF?+!p(^X)sC5}zw{Y~)>lQc-#tQPP`1|IyO@L9tB^W=s$;Nl2X!%Db{MWW&Hx<(_6>SIIpuTv!6$|mET{V zSl=$2rJBU43^UF$ppSG@2_J>%| zG9k=QL{TY+3g~QF_&VD!C+y@xj$V86ia(vB{zCSKE&f;W#XjFW?T^Co!<@FaB6V6T zd0{E}^3&UmpIf*hu2j`VHmyyfz3WW&;vf!$ug-pa|E6G4D_bSdU(MXf6E<;=PVE_b zKeBw7^mzVwvYB9Vs@q=Q&nWKf=d?Sj@KevQBz(FgRy6@@5U^0kWN!XC)5vJhV42fG zQg*R{C1_$TNwfGa={t>I;(gr>uSa+Jt(_4mh%@>E4$ikQ2uG$iJ(q`g+G|F3WXkMt zfc_SIW?)AM2HdCq_ZVE}7nhpG#QRf+S4QCP!*}AF?tWZi@BL+th&wf&e@?Q!jU#*| zL3w#!$?*tq(<;DI0o200n89)9xwiaLgfHKT*v6{h4WRBLrOHOz-`0W4_d92;2^%S@ z!pNxx`#BG8ZBdbQb}btRT&=jAo%*3xE~3oT*^$82ONqt=ENuz3hU(USY^m)O7}Yo{ zZl@%TwSLNK@LTQ9h+|s!vbKQyClN)FBCn>|E%vecqS$w0D-iR&N(LKDQ*B}Jp}wr) z!X_wT=$kd$!e0MvkTTVzII8XS;g@kA)2<#y+V{0F3S}Y`sz=+Dw!?X%B z5BbUK2r+}M88F>*i*W4f$1Ut$sOboX>*Fw-k3AB=N&cUC&pO()R>pLw1JA{;)ZjZj zSm(qY?f8V&km_wAR#G84%}L)=gD7WW@gDP1QF$cLXv9I?>)1d0)07C=_+f7$i&Xp{ zw?g))p_ke9(H1K(BfU6%=OT(nRt0HXV13Us+<$z}e}2D29-r~IpfFpC_R!xLJb4u= zBsU;qf7d8slS&>MDPo%cad>j29hngfigvAPI@}vz@-iH09?gn!2RC(nX!4kw7$2VY zq+48Ad~X0tO*vm!FYng(h*9%Ddh)xMCnHfzqNQC}DSLG1@3vbTOP`KE>6~qMXg(n4 z=VOb;HP%abo%o3)ufW^V!%Ua*AHom6tV=j7CbH%#o;~=XQ1ZhtQ_8@w-_eID0z8$8 zmZQBm78x~68q;XRvAr+uuu;MPqMeC5az ztrq#3N8?%^kxs^V(&?bZL*>B-9O`K?qu zk(o2P-=5=XpC}={N6FxfQ%}{dO!h`8~qJdB&Xum7V^0C$Zxx)segCJ4g3s*RK3g< zT6N3R5gq1y@Dj1%85S<@=zw(#v2jTKhFEYZOrenDnjb!!)cR9!IwS8gcJ>GrF~Gx5 zi)f3_ozI0hJbuyqmJL05siW!lIBOU3?Lc)VG0DLP{uBYAOq$7`y+ZO{^11H0o0#~U z3**Tm#fB?#vysi8KJdw=K_-=cc56>UpnI2@!Q~PA;AB+ZMKBW;{p60gE1krenTr6z zdh(4pPNxXtYi>o?Gm2o(N@P;|7`X$>=pJv07aw8EZ+-Z^ChFE*M7w}#?Wcz3>dWH3 zSx3F;(k(@vvG^Hn>HB)^!J1MaE&UPj^E~c_H&nVD5|9aC>cWCTin{FY?Iu~&-^&!k zo$+LJF^i#YIo)OrDnX4(V}m|w#5~`H^!}ShzAUaDW^DAa^nBu;Ey8ML zZ^Ycn0tFgx!SM{yf|&lM?UHDVR$1=mI6L}C^peGRZx*MNG)3O zHNe)T1(9CLXl|AARy1R1J(I)iDB&p=(7rnc%6(;EO* zo)zVg*eN_R>Zy`x{j#|y{`7=}3Z1g!(Zm-lp%H0|T4Goj|VYrngZ4*(qt6x`n znG=3IyQ7_L@Ex7M-Z3x`m(c(vC10-AS=F3r!AAnG9&9_u9iZO2Yd}U?{lwU1!=4E3T|>9D&00hy%4l{`D$W60!(DVP&7A0eo#SkTct!9FZ>zq zwV??yprs0!+-Xa`BlMg79;JSaQc-0+_dh{D`zaB|@!X+amXC{{w`2(?Y(^V}>qOp^ zpVh-bP^I^SBYvn7CZC+!Td9y1OS<7s;5>{oSr_@PjL&g2t$HGfTkPWWar5{hN*!{VBaU}@hHwV$G4(-q^##LcO8`+)(+BEZc zfYQsP!Y;->jQZMhCf+s0wHoGazqrk%?pHtWQ!!FVbKU^bq$K&xa~-$#gC&LZtCnjs zgxi6^)t4xzqiul-zE}~JDXh)bmoHwdomn3zbTh`-XiMoe)eaZ4Iln(heWv6g>r;nw zqwc;qWys24VLGV&U12Lia=O3vJtH_bc-Q02@;&c$}Z!?H@)JBjPL{%V~E zw@H=_Nu8f!>VZVT^f^p(6+vBZ`kn6F#FMAvdGu-Y4H$~sgp-DX%I_I&zJIucG3knE z25j7pToI#A?WNSdf~S>}ijdlI$ z`pybO$)xQ$WkHOWZE93adFL;7A@X=_qgs9blxJ(TPi$g%3i9GUd{}tCl;AyochQXf ziJN9#vq_s@?A>oGy&z$=yLP$d`BLo~={1(>^H|wt(fXWyHtix%k(JLM8Zi^T%bVigUPF6=Hr!6#_=P*1!1FSuJIU8fB zy-YoKr=Li6RT?$<*jqj8^<(_#I)i6OM74!~(Ct#Jb3DL_cSChMUDNPa_@^=zDu|=v z+%9y!qxN?`ciV-6sMx%5GlM79J#=V^yRGr^i^(bP+wnSw4+Q!5Y%0-mTdUW6gf0gX zYDEJk&9SIv6lT2t%SaQZUrmLAg3DrpOBXGdfK9pkqK16rpv-sA31iek>^T~X#6aY3K4p4OWxf& zt#i#2i3+5%H3W+jT2xr#H~1&!?z5`N$az^Jk`NDs>0v=5VEOE1TKKm78n%4g#m>lH zyNtOZh2>iFo7gagtn0`7S}M4tLeuEMJNFCWGs5Pi&36G2_KJtgfQoefPCu^P+7-rVX9Fg;vJ6;zQ4vb}roF zjBCXw9Ti;Wwoi{n9JfAB2rh(kE+o^M$39<~(D-EE&gol!|NUuc}P18 z&T8?+vtWL%lXts!nZnhg^kBbBOLx^=n|#| zDU5Jlh&F~jeovnyv7Ew{5(M+(l+p1gU!lx{^j%N(9jD~JPf?Y=!L))^g}^^54J^tuQGBipWs zFr6B^6R#YqCkphpaxv$+)jOB{G3km}CZvevyOSG$Qvx75XSg=;(51l*h9G%vS3Gfh zn#Zl&l~3l2X&h_A>&;YC#62Z%uJl+h?9*`TCK!q^#fE$y_zd|7}X#L@I}OG9rdu->{Fb@ug<= zuJtClonDi}a^p zwy<0tZTLg>UGqfmFk~Z)Z6t4MY8vcdS8+}8uOzEI$Pn>K#**hsW;ud%{cF&D1?R>@ z(UM9-F!eGu$dFe+-iCsNv*3`$jHtp_iC9-hp~7cWd?o5DTQ1UdU%{sKE-myO`2{GA z9@E9ww=zhM>%x5vza@q_K})A3j|?!xnnC%WhxuRF7@^GhY&K$M0>1GN^)Z+>bNfR~ zT_4`cV$xbW@BY`Ng~2{fuCLp{#MPwG*u=|U$(?I8W$N`96IQZrLnPxc+3Y33&qOX4 zx0PgmHfU|~ByB;n06As1Tol=K_}yT*8OasqqWgx6$7sar^eK)S<27Z_%p;+#YdF9Q zQ{{hmdvUtG=({+wk_Ufp-?T3kbC%Y(nJtBo`ok$5vg~XV1(ufiGJrE3YGZDXGazOY z&0x;^wqk0Wxp}@MmadY~()!;YaE0q5+O~|paO<*7*hKWSy`H_q>D~aI{EFO~z9<>-;d`KP zb%?6dUr2fpI?7cS7-nghS@10!VGB=m`oXOxfr@xTkmh_8Lh|i1=h@Oeg9qod)*oqhTtPmZ<8FxqN`HMH9&f$CcZTA#;1&Gn`f3FY$s#=A}%5rrg+NKcbHeWr; zx<2d#Dz2B@@^&plnc3S@bL^eqa~G3#=!RwL-_l4u&`>m=*xOGH=saKdt~|!4y@Q{A zAOt2(>!Rbp4}D$PPn4e4D;3%N>%o zVK;sD@`1~;56$AD5lXiLZ2(UTj_|pb_BA956HR7C@_gm#_(v=-{Lxr zv!C`1klzDLj2>#eRnd9qmA2JfZXRX!(P%zmY1vJ#$$h~J`^_ud(Xp$4P23$Lwe3&&{_a`CGX0}8@!NuV zRxESJphW(r&xRC0aRtfcpbgR7zRG= z{B`hzFk8!R@~>GB^4k7AYxC#(6IizLmy@_()G&h*DI}-LzDK|;Fp@v#&Fc;F=|5S4 zJm^(})=m$R?E;b6PeCkW9$m_{cZk^@!h{k`y3v0^uih4~9qd~hT=6!#-;G%qk6T!v zWn@-L>e%J?OFo~5V(P|QHQuSt$pVDJ zWzMn3qRv3n(~;cI_`N_`sp30Z_%3)6xUe3T^n_^g+vRe_*Kts0g;YeNwVVu~(er<`LBc&ga_dH_n?o{H z>q0?>52VB=29s8~-I_a(S7{?q9?g97j1vJEwf8iY zmW4=Dm6J4cB8t${puu^d8!hCRI9QnNdVvr%kovueVcOu=f=wOJnln|lv2yvWzQ6M+ ziGw2xc+C75BMO}ZiZ(FO7b)uLZ~q6~=%*x!9~t>`=T6O)*!u_uz0dU$3QsDjdf?!d zMEf2_=Ed?;X0o2hiq)zFjq5C_(`3cCva9`#oC*Gv!?cmQ(Y*iqBOC2}QMMuv);_*O zf0m9KiNM}Jbh~cVG~1~n=R7s4iDrq_e`VjeEcRl;RuQz;I%yd8RokZoDz46KB|=Px zp3`wKE-c>nJZ}J51JCA-%asyeRHctw=@f)0eN%vwD$6_i`nwU{x;a2VK5;PcxwrnD zVfvqSf$v|dxNVovdQ%hI=RS?Jo#UE@^L52||JCdR=P`zp{q5AbnL<96_`R@TkyLb$ z#e|cWx*44WsDc#rEmceU@etL7l28l^F?IMJEQnZV_Lad|iazV9pmF|cEi|LOEqv0c zwd}~F{5<(m$(3Qz%#=`jSs>Qr7hm8TV`Nmi<`+tq^4#a{ZODB&H1j`;7a(4v-MycI zhOu9h$Dfw)J-LUz@UQJ#>IGYAAO_}7n5lr`k>g#qUyisqNj{4lQd$PdEW9*$T!~*a zOr?MHv@`vWWszKAOF+NWBZ*ku`vWLug6(OPJe;3~Df=h9kRv|@gX;vZd^}$CeDu5A zG0O@^x!=pb^m>}Z7ycKE~{#M`wCp z--G<_d1{l*xHyAOGmW8K{uimYoiAcG2%fKNjnl{ zhTbZZUl><0hh$sTfwofEo|7-Xi~5ofa!#Z)O4ZA)yp+bNka~QyP46 z?ZSv;h~vmyCUb!&b(y}*@O}S11HaiNOBn3^hQ9U}$hZvogv?ynPNfNBH`MjYh>;`R z`HV?q*jhjLsa&{C%xk7cimBgahrbUisNIpd{_9oHZ@7111vYcVRno=#S5|)s3A1V_)jjtXaP~fpg@bmes=@xNm3?zNb=n#c zgXyUccXqPLrB(Q~B9jVkD}};2?N(-SJIpNcSF_f7rfy>n_*?u=K_1OatX#jNKwpZN zX$cL@zbiZ6ur$YsRGty!MUJc7+)epEjmFZr^X)88rq)|VTJ9H;&-e)WB?b+NG}KG9 z*IthPi@|gjTDiCGHTuZ(<=wjV)NcP{O0-!^`@aF^(|8WZ${d`8W#Z$@y33Ct29xS# zv$n(lBTEtY>+$N*DGRlp`MWP6dMMaz8Eu`8#}M?>`3*p&U$)kk%qe@w7e&z_W&m>fx zzu-zIs(qLqp34cYbTJqRN@nk@^9GP2XOu!ZabO{%ht$TfHx&YNrP*L8+uSZM1Pc7I{pDPO<>!KS z*^E0hthV5`@6F2`jCfB*z9DFI^DuSSYd}`Td%doiD0KBnuq;)Otg_EBx2mxlBz(zY zl*uyiijNgBfESJEE82)4QQ&IG>KfWunsIF7fzHH9&cX1I~lqeWVq^S~)!bvf0 zJd$xCGc99Qy@lorpW8&g(0R!VmpU(X8ll&Cux zq0FZ)H|Zvz%t@Qt9TRwaRqMCKp0RsBQw`lNx6Iua9wg36Fg@mVl_R(0CV#^68&!Z8 zdgx%n_5vQUG{n+!2UX#2NUX7cPnl@XvTR#*V77Q=agh|4`HJcF*}}FPMsFB#MR%XE zZKWW95%B#bO;_jZc4d2g&jKY$L^?`PXf~4~NSw=S?kURiUvU(C;E2Ov92L;iqc{EN z7bLU*{{{1^2npR!RA*U%D8lvTB}-`K1&y7Ye9@bi@^D6p>_Ebj;ctsm3b?NV&mSDKW!(eikb z#V=~_aPHnteB%0SI?lKKm7IDzqE)W%l=N3o4!VFrfF_{jLgyy~qv z-U^>EJXCp>P>)*^ZLV8EU#w(isCeu~@6;_4*>q%Y8;Yr!t2oVDN~t~=rqzA5U9qKu zm#Opz;?qe*P-5Kox}Rvo+eberA$w}+x29!J!&EdcghiS22m+HY*=l*VQnepV7%CMV zq_6SpD8((#Azmpe`$8bBC}=1S4Y%w&ynAM}K*_y%*Yl^bOx!&g-44qg9YD#~pP`qP z=8xTk>L$&W^Z9B9UaJcQCwo?b@o97qdTCpFfxL ztNlaiggvN=KeCf3a#Cu9A_oWgn4e?d5>{5MDD!V=JjY840Sno~9l1=M!qeLU{{orl zM1pm#yySRm#B~$1*J9qp1%B`O!UN%!HWF`v?ZK}8)RJ;@&_RCssLYrP{JbwRtp=y1 z9(C-o7r_Rj%5fr0iiVFS^o<&C0IEn-7Lr2M(#h%TM?Lxe-J)N*{ulxJ#+k04_Mjqtk1la!k)*kMYEsdPyV#e2Rc8mEQ&73sFnQWd{x^Qfl^4Lp!< z_2nIjQ~x2U$IigLeca}Im)b*{6$~|mqMgJ+UluZzd=ZPNlz3*>I3vr2hDJ5%s!vt4 zSwOrO*R#a0*Uv%ihi3*B(r(>M1tc|FHRgky2^uMJFLU&Yin_UsW>2E;Q9l1F^nKZ` zZTPIkXS}TFOiPe5_DD0CGY_6(p*Dj&Bymi{=CAPIs)V3#>ATP1`Yh8$Uk`G>OkVrb`O(OnO<7Y|9Ip3&Rpv*m(il( z4L~F{#(*+r2Fq~AA|L7yn#?5oj(X`$I+L=4K--|?kNA-G+jYM{w_cImtInHuU>Z?q z^4?8U#8R9c*W@qWRge3F9%s=zSR`M(bFaVjZ|F-@fwM4^JZcPA~*iOT&noo zOpkaq%VPEkQtcf>wYAq7XnqU5hm0eUQOrTFS^688vOD4`IGB!pM+5vLzvfRAzg}_a z4+gp!rOS+# z;;eCh<~I1cT|X+btY>lmYr@m$P9C;YWCA^E#X<{6>Ob!G%Iwg~0&bC`@9aHtGlAp24Lxz zZ~yP~a-4c+ix~7)8vf|iGSqgrq~jtM z{Lh`9AZn%K88W!rk3j<&s53{#f)R|g`;K}~o!?UnaOvV%C|>Uf9j#YvwlB7>%*)OB zf}6!1MxkaKcPew!)cA@%nVCW8>~#}|i`(B_AKEYW19!pyJZv_gvuXr%$Q<2R=lvSy zK^~rgIWt-%tW;ptDO`(->UES+cz*r@aAxINOwtnc@+>0>sJ`NU;c4k;zcW+t->W<= ztnCN?){QR=v?Ua-jcp@#k(TGmdW)!i>Jw0GcVX6CqXJ2ar*|fimB{9@ok zVqC-|s!4)^Uvpf0?~jKsTZPV{PF=N|ONgWJann3L*xSIRyThdotK7{!O^0ybV22y3 zS#dOi_WFeW2)g*yd1A%R7W?zSfYB|6;P+V;)RfCyZaaH6-;i{dB|bHUa5bf3t^=p< zev#3=)-ft07tX1@XG>3Q^9C>K?FZ2qz|wC6bh(K{fxAi;gP?1e^!#vmqM zfe;a);v==H==uv&#K=8iVIY!S*_*zN; zZ6JBCpfwN(7*3ez1$|HbNAMBi|KVID@U7jLy7iT zlGaM`b`BntZc?F|o`lv;y^*ZP8k2i+{qKUr(zS@G>+hvwy14~#@6>7K%hHWg_}5;7 zlcQydq_s#xt!Ogn1EDLwPfj<$Fxt-k!9RH5lcPF+>a2B90ULKFo%XQCY0`)ycXuI+ zf{6;9!D&lL#MTd!P(opP!LH$uF1&&OGxc@n)8Aqd8-{Dwl-i4FHnuDrZj%d0z^Max z+^AM2QMFH$B6_%ztek(tE~1&-%I^nqZBeNg)R zsdCf%h|ZmvXI)ISx)zRDrS(&)u|1om3l2sV(CZx3+SmeZbIX2P&H66B1B5bP%cU3Y zfujTA=vg{vnG^D}x1tLkX`hN>M#W|dxAn$zm+8!Ph95wbrCtDWE(z1W+C5n!8`WRf z+k0K_k`ol?(FG=*9?YM~9rS)~HMK4R69@dJb8HlLjD8!G1=JWaY^D*)K%Hbh>cbE$ zN>}|u*+v0xM^i|x(2z;3>m2^}P(i~4jqKH4#((o~ghPAo-wHu3n>4FYFuhLR78#dx znsPXtkz0(vnvO$z37TLTXjWb2yF$kMyMo4Wh* zOiS~RxlSRi5Fn8vxyfGe(>YjI|Kvlfx)iUv-ju{aEHO?=5q*(x?*`C7Q}whq_5sg) zT1up`Zp<#5+&RTr#v|gRKkqR9x@apm&0n(WlR!~h!G)T9GReIX4$8-Qjtk*7B3x{2 zx=x_z*sD~3niIkxlSbmU47xa92>+U1{YXQl6F=xuFbv)JsOOPa z{N@!4tEZ(KnVGRaLmxe!ER9{>{9Vxia!I@}HocU7y*)z46p^N((>ng4{ll8N7*o2+ z>5?Jm)~udd(ogB|xyb$X%Azc6n8v3{dv1n>uWT50N4mEB%=_xpDB&>+FDBsI&&~W9 zl3%Zu&btsrq5A`24W>cTHZe0Yx_r`f5Cm4&-t=|9#k#nzfG_~Y7@#vGJkQ@-IX|xQ zjFjxK=^F4{Uq6_fCd9O}h`5fGMHd9+3bg);5R2cUg=84oflDl^)0Aor*s`4km1Et6 ztqA>LDOiG=v6pbSdnSoxn9AI^^6ddrx#q{tRO1HpN@k{Ktvd zK4(prC*!;ek7r1+>U zXT>@Cymx<>VSJZmdfYIngoVz0i+$!n-hvee<^8nT*;C7CP?jL`dsQ*|7u$%{@BQ|> z8s(I-(j=U>qnTd3#cq)G6lWGTu$wz^E|!^Zy>pOsCDzBrqyrBti$y$ir9LH19y)L) zc|SCYO-}#4%7(fp(f~Iq2zVK1Z_xi%`^WDgJrUWfqpgOQojGd|Bzs}|q?{Urb@nvr zgY&$l$aFu-SzFlmooWaDB01CmD5W{#&|F}PuotNuV$On130|TJz=!1B*P}5MeeXxa zeOUTapQq<8c`0S*z=A@3PxogzI%rGLGrGg_1VOs9v$H=ZbXbtMdcmP`%(vPJzFZQl z8Mi6ysUFXWNt0FBSrcp0s|OD>ipu{y+*4i*nn7vP{&{GyvAL4Ly{$Dzd3OmqIin*B z_-wry6+x;*ZGqxC;yE}dSM*)y;%FNraCkLIXy=xV;Z35ryPHkr!&`&KQaZ@ko+uhz z(r^##+<`lq?Utg#S+B*(2tC{ZjFI!@5FMl3pXE|>X|FCx>~tsSatbjG$GHE*Llh|=YVi~h)xBXcAr zm+~lSZYc}h%FsQ58KZl*ZQ+pn&MNb4L-^7q>@(zh*mIYW; zf2J*?XlbnmOIYs&A_7GnsikeTpgV+btND}ll@thc7M!^#!2$Y|ZfiEOq$J)yTWPEO zz7XMLO2+iZ&riRWi-GYg$J+K4TW6^+wRW^R3?6ru*7d5W=|HQ?w&zIF3eM9tE%)pm zi!!jVAAkZ+eHHhHGr@=NFf@$D5Awr(N`yrN6o77c{WKX(i zOibOL6o}nyqpOi@-??O?`Ym^*DmOe#JlYeycmXk*w#@^YC{M?LwMb`zMd;vzGJ<$b z{!i(uDElY;IK?d|?D6iHHfraI$!A;lK?QH&87hje-#n9kk^zCOJL4A_g;I{58bjIr z`{VHY^_$g~zE|~(E2r^0hg$|q5?OnR7ak2Y?)Y_W{!zD7XeQY|#VL!A9y=2Wkl{%#^w=54Buo3vtuz2E%s2!ns* zrd}~B*z%&NyTUT{McgxgH=zAOPPu5(QCKTsE8=#Zm_qwecrl4vM4q_PP6CgpU3_{( z-oEU<;&Azb&9oLOwR}-SQsC6{pZ!72&XLcZ-gPyv^74Bbj<5eaux8G~F#1(J3pC{D zfDe zA~<@3>hF`&Avz+~zAlMGr>Z&Y1G~eMA(-VXE)faKP)w>)fS<8+58N#>MqBj=9BW!`w@e2Avb*Xpe>4#J@DCRyMD zPo96Sk{&<21t~lzDByDbmmnmPI300#k1GAOB(dnqY+(Dt`j{ zirW&4CJBDtM35foB356UycbIoe`ch%N9SgpfflIMk6IqtTucZkDC!e37RlG|Vkg#R zbeu>EoQwil)*i8{TYS65IrBRDM|iT->*-B8Z3wrC*cUjvRK{iM4v5ObJoM9aIXO@8 z99};fGa<~n2kYM}cg@@u+xUbo#%~w!HvipB8KW|M<`DOl$(250fKQMHb8b-3!uMeB zz--qcqfL^cxjiOoz`CN^0L8(-@`qQWD@kZq_e~z%9ZisTTl|ZKcpX6?3iJXSZE@_q zl&Lp!TEy#QY+U1WxMuR|HbJaGF()ya@fx14A}%{)CjZ&Uw`}(a7(qzKc(*#gs}fkx ztW2tJmNX(QQHIAT8E1LHH1CJ`2y=-V@FZcFTK{mwffD-gy;$eH#?i80GLbSfQ8bAv+H?RbO+YvRMK{x;F|gJ?|20tv<;Xm5 z>o1zsbLjK(1ia?e0ODE6ZY5!~4lwh1Y%q6TG(vb`?O?y+|MjjF-yB8B0bF!-$2V9f zl6#h4VeEZjQr4;ggkLmen%pBUyv&#GR1D>#+bhLv~%O(ah=u{?E~XFTVN z>8$KJt`v1(Oilp0jX%mno6V)?JSyy6UtHJ{ke%Q!QT6yKyLnHj?^D$s*pNjl1>^oT zPX-I?9x{3=zF9?}?}G`=t%|khhA$kdPZqjpK5cr(j=VC{!9jkv49yf$WUGZf2~jFn zyJej8J+g!|(Q$_z6OqN?2u8gE3cH;Mo@psW{X|T01UTC8zR}IeJ!I0@s^kVtH*pz8 zdW0Ls;kxx^9N!$r$kv^H=FgyTWUj2e?QZEeIDR<8P2MBuRDdxJ&~Z+yDI?Qodr1Oa z_cCGj>&kSt~lf29a8^WC&_g7=))B(?j za%RvX;gDp33fUC2Jde!-8_D=I`dk{ntavKjhI08fLK`Ud>K%HP!N^UmGcIj07sANM zBek7jHZ*9fWbC+h+^G?nhhpV-)g+I*{<^7jD z(mj&EpIYio_8og{<=rT+nrgMOk7}gh3@=8$^z2>pEC`U7=hutQJzr3xK*nRJFlnn2 z_pFBFWt5}EehWKtoAXT37(BC~8-3wlrtw`w`To8fe9GOEDI4@An~UU%@CK_jaghLC zkzI&FT;kwN#;cfyzS(K*bd<#x?lT5FP-S6NG=)n`8AUgH88sli6fYcSN~vD+$JIQOU-CIduZ=-2l$Tub_2HS1|lv|B&q) z0M2T*0Vj)vT^|)8m$8JS8$iW%8#HhJvg`!f-M)If*$%vbVOWm)D(Ce!u2}T0k?W@I zNYExhvJVgID?+Cuorz+pMi}H@VjZF{!30m-J9r{v&W%@z(HfTjoC!02z^9cxS4W40 zBVuzG>dsrx3n=lR9<+V+54Vb6f^PC%9{t0P)#88z_Zz^$(@UaeS4F(_D4mv^B;wzy=c)|@}eG@}On!!fYk=J~){>fb1kji7=3GAw` z?-&{l#g^?{Lss>$Aj07p@x)AWb?ogm6b(zpMEOGhvJ??4_woGxv(uN*V_+X48F_S# zY{Ecp0H7NH*BX%~ai!_sLU?n9T+cGbgK$hl9uf)Ec;8m#ik8ee+eXPEUa1|`6F=&i|0N6LDY%WqEB&1qD7`4>U-C)tJR5}%fy}Q zO3=b70k#1x!N(99FodyXJQ8sO*dYpWUNsCH;6&$c0M}M{;Hd=BE5u~wEy~lQdH+Hf zAF(4u8zKEnVOK!H&ZPv5W$Ora0|+Jd{1{FI*>tR0;H(d!>PQ?KyNWNupSP?YTtfeo z1bNk75UnLZAlkyKvJ#7EZ@{4si7om+_9O22E{+I0*DP0%v4$H!>dyWJ@)F5^1F$9f zarm;GjX=EW10J8*^G%H zJRpABi2ahJtQ{sA!wY9mWJ^#^UP?ech$);Kkkt_4O^OYtU8~vzz%@)dW*!f^w7`{Z zTwWq8ZvdSB#DSV!wq@M_W(j%MrmMB5P*Bh11m5{#Z^wV?2EahzBho5xkOMrkdeH^) z07@L!b({a{BB8SFr-15DAfpNr;&sCMEXZ{g0r;#*#0)a4dhbkQ>c60BtM~y;^gQx4%XbGxyE# zz;)AA=b{zD>Ln!#OPrHLa{;gSim#D3y|t}!ip&^V~uJ|5;gdBrl;vbckffuf(@048zJ6B)u- z8F4`Zf!5vtn9BCgZU7kA2_Mn4lQ`G~%xIJNeCTQK>KZf`UwH{$B_WRCHGXV?XxVK^ zB+>6MLN5+<4jCif9`YY_4|?Kn2N}CK+Q65w0C%Bi^}HiY195eRB=#lhoS;s~BRb6a z-v#ti0{GFAXfB3x|2kwPv6T@d%NUlJ6?@D#OIU50nmYKu`{qxf$LId;ro_)e*A&jV zmH7Wt+|D&HVRsV;JN5d52dyJ9c-Rdf01E+G-vB6wk>fXjeimZTG^#E4Hnu9bOn8Y! zwh+yKfS)A}wDTH*B)+^^z864Q;=GwW26_=EwilkV7MBe)A}HfSi0=Wii{K2J^+#UA zs&4?hz=i|d*d_4;RH=S3lzRosy8#?AVI^Tl4-biRl4yrY3{Vt_g%MNCfXn~+LJ`OQ zM#R~E?tCpd3SIqQM^_u##(BqYlwtM)9<;->Wxc^Zm|=#x6~_yi^$fZ$AHui~hMEz) zBQuE>!m2^mX|{Fu3|#O=x?G0`E;#K`%rNwYTjq6Y=1NaJ*U_9bsE+I^u412UIo52+ zKFOy$-^=qnx4-&XFZcX^|KH1BoSx@+UnFdHJ8|<`&lc+jP4Z%6Od+_!jX66_)+|~G zNVBsXes2s*@YV!4^Us|C--?9wer`#V8w`mIY4UAOyg>kV5(pw6CwYrNlb;yaV`3e& za3&I-8x46r<1Li?82ipE51@GE3>y zih+vmD$+DS_vcFrZkqlST{Ii|K_pz~unJ&i1;yb0wo5WCMa{!vPFv$NQ>5bqb+vF} zRuEpFtOfc5EPDlpFFV97Ox3VYdNDBS%ZlN5_3SatpY=7c+ixW*KKU5CT3NwzrhzMp zm>?n7Z&a6C@eE&VkzwGRBB$!TOqXC0M}U25{y<#};^49@URcUPQn^Zha>5nuKBzAE zx;z((29RPF{^0;V3q=?>8L>yhv-(`(p{8%wnSLnR+DG!8nx zTD1Qw&am#a)@?7ITnp9MFgK4SzY`(>!dV`#TePfRZ2dk1Qs|B$6T4Jg_%Rt`1)9e|R+ zlQyn8vL|=VZ?HnD5-%L1gg2r}AlnW5D2;wVP))^D+Z@ZrbwK1Vhi)3>=k2$kCWrti z^jFqmsN0Yp>RM+u#NIfV6gycyJYia0F%qkgUe#bGgqehs?L3fxNr(8tKL6UnD4*kS zpx5EqHE;#7M($vJe5=L5&wNnBE#6V%XE@OFSe|iIIdR&}i7WW5mtv%fQX#rhhF;O` z?fyt$4^Wa{n1#07mf05mNR{7~Qgs!I_$AsECpVfDt$RvNU#ZiSLmJ&n?z230pO zPJ(fc+wX?tpCKaK@TsP}!pL&7RKwT#1i%vskDp*i6x}Q*s0n`(Nt+*fc#mI&f$JTX z2gQDK6)fsbe1dPgIbhQ(YKE8XQ9$h0zJFJpaR_$an8>umM|#FX=fq(E=QNP6N@`Rmwlp+%G&bYq47c_eC3cHeBr9+Hd-(GIQ(}c{1x(roUN%At%mYUB+Qq#Ihih2+cV9p zV|a)B&Ha)~hWQY`3?~IBW*>z7=baf)H}(juVJS=4W-j@>^fVgpR=KFoJ(KJgWFN}Y{_ z-$ue)eCSge2b-spyI{S;dp;Ry&(Q4ws#N8rRZm4!lJct9gaV&LHrS&Y30o(0M2;=P;5*;?EhGg5Aq|bk+SYd|gsl}YNMvvtdpv2dlu$3h9^wsCsnlYoO_W zv?Fp9FnEubHUnPZ;tlxS^K{YuQI#8|Ks6tpFZ0+j9`rlNdH{KxylFXrK|{9BPCa64^-KI4GbL8^>lkC*&J}m z`(^k}a6hPG5uU~Fa|CJlDoDia%-c9orJshV*#T+syY_@LjUFYB#p!x)D3;m;_&an7 S{QNUE#nIA!3wtV#*8dM8jTk!s literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/seq2seq_transformer/seq2seq_transformer.py b/ML/Pytorch/more_advanced/seq2seq_transformer/seq2seq_transformer.py new file mode 100644 index 0000000..1cffb27 --- /dev/null +++ b/ML/Pytorch/more_advanced/seq2seq_transformer/seq2seq_transformer.py @@ -0,0 +1,255 @@ +""" +Seq2Seq using Transformers on the Multi30k +dataset. In this video I utilize Pytorch +inbuilt Transformer modules, and have a +separate implementation for Transformers +from scratch. Training this model for a +while (not too long) gives a BLEU score +of ~35, and I think training for longer +would give even better results. + +""" + +import torch +import torch.nn as nn +import torch.optim as optim +import spacy +from utils import translate_sentence, bleu, save_checkpoint, load_checkpoint +from torch.utils.tensorboard import SummaryWriter +from torchtext.datasets import Multi30k +from torchtext.data import Field, BucketIterator + +""" +To install spacy languages do: +python -m spacy download en +python -m spacy download de +""" +spacy_ger = spacy.load("de") +spacy_eng = spacy.load("en") + + +def tokenize_ger(text): + return [tok.text for tok in spacy_ger.tokenizer(text)] + + +def tokenize_eng(text): + return [tok.text for tok in spacy_eng.tokenizer(text)] + + +german = Field(tokenize=tokenize_ger, lower=True, init_token="", eos_token="") + +english = Field( + tokenize=tokenize_eng, lower=True, init_token="", eos_token="" +) + +train_data, valid_data, test_data = Multi30k.splits( + exts=(".de", ".en"), fields=(german, english) +) + +german.build_vocab(train_data, max_size=10000, min_freq=2) +english.build_vocab(train_data, max_size=10000, min_freq=2) + + +class Transformer(nn.Module): + def __init__( + self, + embedding_size, + src_vocab_size, + trg_vocab_size, + src_pad_idx, + num_heads, + num_encoder_layers, + num_decoder_layers, + forward_expansion, + dropout, + max_len, + device, + ): + super(Transformer, self).__init__() + self.src_word_embedding = nn.Embedding(src_vocab_size, embedding_size) + self.src_position_embedding = nn.Embedding(max_len, embedding_size) + self.trg_word_embedding = nn.Embedding(trg_vocab_size, embedding_size) + self.trg_position_embedding = nn.Embedding(max_len, embedding_size) + + self.device = device + self.transformer = nn.Transformer( + embedding_size, + num_heads, + num_encoder_layers, + num_decoder_layers, + forward_expansion, + dropout, + ) + self.fc_out = nn.Linear(embedding_size, trg_vocab_size) + self.dropout = nn.Dropout(dropout) + self.src_pad_idx = src_pad_idx + + def make_src_mask(self, src): + src_mask = src.transpose(0, 1) == self.src_pad_idx + + # (N, src_len) + return src_mask.to(self.device) + + def forward(self, src, trg): + src_seq_length, N = src.shape + trg_seq_length, N = trg.shape + + src_positions = ( + torch.arange(0, src_seq_length) + .unsqueeze(1) + .expand(src_seq_length, N) + .to(self.device) + ) + + trg_positions = ( + torch.arange(0, trg_seq_length) + .unsqueeze(1) + .expand(trg_seq_length, N) + .to(self.device) + ) + + embed_src = self.dropout( + (self.src_word_embedding(src) + self.src_position_embedding(src_positions)) + ) + embed_trg = self.dropout( + (self.trg_word_embedding(trg) + self.trg_position_embedding(trg_positions)) + ) + + src_padding_mask = self.make_src_mask(src) + trg_mask = self.transformer.generate_square_subsequent_mask(trg_seq_length).to( + self.device + ) + + out = self.transformer( + embed_src, + embed_trg, + src_key_padding_mask=src_padding_mask, + tgt_mask=trg_mask, + ) + out = self.fc_out(out) + return out + + +# We're ready to define everything we need for training our Seq2Seq model +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +load_model = True +save_model = True + +# Training hyperparameters +num_epochs = 10000 +learning_rate = 3e-4 +batch_size = 32 + +# Model hyperparameters +src_vocab_size = len(german.vocab) +trg_vocab_size = len(english.vocab) +embedding_size = 512 +num_heads = 8 +num_encoder_layers = 3 +num_decoder_layers = 3 +dropout = 0.10 +max_len = 100 +forward_expansion = 4 +src_pad_idx = english.vocab.stoi[""] + +# Tensorboard to get nice loss plot +writer = SummaryWriter("runs/loss_plot") +step = 0 + +train_iterator, valid_iterator, test_iterator = BucketIterator.splits( + (train_data, valid_data, test_data), + batch_size=batch_size, + sort_within_batch=True, + sort_key=lambda x: len(x.src), + device=device, +) + +model = Transformer( + embedding_size, + src_vocab_size, + trg_vocab_size, + src_pad_idx, + num_heads, + num_encoder_layers, + num_decoder_layers, + forward_expansion, + dropout, + max_len, + device, +).to(device) + +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau( + optimizer, factor=0.1, patience=10, verbose=True +) + +pad_idx = english.vocab.stoi[""] +criterion = nn.CrossEntropyLoss(ignore_index=pad_idx) + +if load_model: + load_checkpoint(torch.load("my_checkpoint.pth.tar"), model, optimizer) + +sentence = "ein pferd geht unter einer brücke neben einem boot." + +for epoch in range(num_epochs): + print(f"[Epoch {epoch} / {num_epochs}]") + + if save_model: + checkpoint = { + "state_dict": model.state_dict(), + "optimizer": optimizer.state_dict(), + } + save_checkpoint(checkpoint) + + model.eval() + translated_sentence = translate_sentence( + model, sentence, german, english, device, max_length=50 + ) + + print(f"Translated example sentence: \n {translated_sentence}") + model.train() + losses = [] + + for batch_idx, batch in enumerate(train_iterator): + # Get input and targets and get to cuda + inp_data = batch.src.to(device) + target = batch.trg.to(device) + + # Forward prop + output = model(inp_data, target[:-1, :]) + + # Output is of shape (trg_len, batch_size, output_dim) but Cross Entropy Loss + # doesn't take input in that form. For example if we have MNIST we want to have + # output to be: (N, 10) and targets just (N). Here we can view it in a similar + # way that we have output_words * batch_size that we want to send in into + # our cost function, so we need to do some reshapin. + # Let's also remove the start token while we're at it + output = output.reshape(-1, output.shape[2]) + target = target[1:].reshape(-1) + + optimizer.zero_grad() + + loss = criterion(output, target) + losses.append(loss.item()) + + # Back prop + loss.backward() + # Clip to avoid exploding gradient issues, makes sure grads are + # within a healthy range + torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1) + + # Gradient descent step + optimizer.step() + + # plot to tensorboard + writer.add_scalar("Training loss", loss, global_step=step) + step += 1 + + mean_loss = sum(losses) / len(losses) + scheduler.step(mean_loss) + +# running on entire test data takes a while +score = bleu(test_data[1:100], model, german, english, device) +print(f"Bleu score {score * 100:.2f}") diff --git a/ML/Pytorch/more_advanced/seq2seq_transformer/utils.py b/ML/Pytorch/more_advanced/seq2seq_transformer/utils.py new file mode 100644 index 0000000..23c86f8 --- /dev/null +++ b/ML/Pytorch/more_advanced/seq2seq_transformer/utils.py @@ -0,0 +1,70 @@ +import torch +import spacy +from torchtext.data.metrics import bleu_score +import sys + + +def translate_sentence(model, sentence, german, english, device, max_length=50): + # Load german tokenizer + spacy_ger = spacy.load("de") + + # Create tokens using spacy and everything in lower case (which is what our vocab is) + if type(sentence) == str: + tokens = [token.text.lower() for token in spacy_ger(sentence)] + else: + tokens = [token.lower() for token in sentence] + + # Add and in beginning and end respectively + tokens.insert(0, german.init_token) + tokens.append(german.eos_token) + + # Go through each german token and convert to an index + text_to_indices = [german.vocab.stoi[token] for token in tokens] + + # Convert to Tensor + sentence_tensor = torch.LongTensor(text_to_indices).unsqueeze(1).to(device) + + outputs = [english.vocab.stoi[""]] + for i in range(max_length): + trg_tensor = torch.LongTensor(outputs).unsqueeze(1).to(device) + + with torch.no_grad(): + output = model(sentence_tensor, trg_tensor) + + best_guess = output.argmax(2)[-1, :].item() + outputs.append(best_guess) + + if best_guess == english.vocab.stoi[""]: + break + + translated_sentence = [english.vocab.itos[idx] for idx in outputs] + # remove start token + return translated_sentence[1:] + + +def bleu(data, model, german, english, device): + targets = [] + outputs = [] + + for example in data: + src = vars(example)["src"] + trg = vars(example)["trg"] + + prediction = translate_sentence(model, src, german, english, device) + prediction = prediction[:-1] # remove token + + targets.append([trg]) + outputs.append(prediction) + + return bleu_score(outputs, targets) + + +def save_checkpoint(state, filename="my_checkpoint.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, model, optimizer): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint["state_dict"]) + optimizer.load_state_dict(checkpoint["optimizer"]) diff --git a/ML/Pytorch/more_advanced/torchtext/mydata/test.csv b/ML/Pytorch/more_advanced/torchtext/mydata/test.csv new file mode 100644 index 0000000..4f3ac37 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/mydata/test.csv @@ -0,0 +1,4 @@ +name,quote,score +Jocko,You must own everything in your world. There is no one else to blame.,1 +Bruce Lee,"Do not pray for an easy life, pray for the strength to endure a difficult one.",1 +Potato guy,"Stand tall, and rice like a potato!",0 diff --git a/ML/Pytorch/more_advanced/torchtext/mydata/test.json b/ML/Pytorch/more_advanced/torchtext/mydata/test.json new file mode 100644 index 0000000..64be5e7 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/mydata/test.json @@ -0,0 +1,3 @@ +{"name": "Jocko", "quote": "You must own everything in your world. There is no one else to blame.", "score":1} +{"name": "Bruce", "quote": "Do not pray for an easy life, pray for the strength to endure a difficult one.", "score":1} +{"name": "Random Potato", "quote": "Stand tall, and rice like a potato!", "score":0} \ No newline at end of file diff --git a/ML/Pytorch/more_advanced/torchtext/mydata/test.tsv b/ML/Pytorch/more_advanced/torchtext/mydata/test.tsv new file mode 100644 index 0000000..1d49035 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/mydata/test.tsv @@ -0,0 +1,4 @@ +name quote score +Jocko You must own everything in your world. There is no one else to blame. 1 +Bruce Lee Do not pray for an easy life, pray for the strength to endure a difficult one. 1 +Potato guy Stand tall, and rice like a potato! 0 diff --git a/ML/Pytorch/more_advanced/torchtext/mydata/train.csv b/ML/Pytorch/more_advanced/torchtext/mydata/train.csv new file mode 100644 index 0000000..4f3ac37 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/mydata/train.csv @@ -0,0 +1,4 @@ +name,quote,score +Jocko,You must own everything in your world. There is no one else to blame.,1 +Bruce Lee,"Do not pray for an easy life, pray for the strength to endure a difficult one.",1 +Potato guy,"Stand tall, and rice like a potato!",0 diff --git a/ML/Pytorch/more_advanced/torchtext/mydata/train.json b/ML/Pytorch/more_advanced/torchtext/mydata/train.json new file mode 100644 index 0000000..64be5e7 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/mydata/train.json @@ -0,0 +1,3 @@ +{"name": "Jocko", "quote": "You must own everything in your world. There is no one else to blame.", "score":1} +{"name": "Bruce", "quote": "Do not pray for an easy life, pray for the strength to endure a difficult one.", "score":1} +{"name": "Random Potato", "quote": "Stand tall, and rice like a potato!", "score":0} \ No newline at end of file diff --git a/ML/Pytorch/more_advanced/torchtext/mydata/train.tsv b/ML/Pytorch/more_advanced/torchtext/mydata/train.tsv new file mode 100644 index 0000000..1d49035 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/mydata/train.tsv @@ -0,0 +1,4 @@ +name quote score +Jocko You must own everything in your world. There is no one else to blame. 1 +Bruce Lee Do not pray for an easy life, pray for the strength to endure a difficult one. 1 +Potato guy Stand tall, and rice like a potato! 0 diff --git a/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial1.py b/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial1.py new file mode 100644 index 0000000..b865fe5 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial1.py @@ -0,0 +1,111 @@ +import torch +import torch.nn as nn +import torch.optim as optim +import spacy +from torchtext.data import Field, TabularDataset, BucketIterator + +######### Loading from JSON/CSV/TSV files ######### + +# STEPS: +# 1. Specify how preprocessing should be done -> Fields +# 2. Use Dataset to load the data -> TabularDataset (JSON/CSV/TSV Files) +# 3. Construct an iterator to do batching & padding -> BucketIterator + +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# python -m spacy download en +spacy_en = spacy.load("en") + + +def tokenize(text): + return [tok.text for tok in spacy_en.tokenizer(text)] + + +quote = Field(sequential=True, use_vocab=True, tokenize=tokenize, lower=True) +score = Field(sequential=False, use_vocab=False) + +fields = {"quote": ("q", quote), "score": ("s", score)} + +train_data, test_data = TabularDataset.splits( + path="mydata", train="train.json", test="test.json", format="json", fields=fields +) + +# # train_data, test_data = TabularDataset.splits( +# # path='mydata', +# # train='train.csv', +# # test='test.csv', +# # format='csv', +# # fields=fields) + +# # train_data, test_data = TabularDataset.splits( +# # path='mydata', +# # train='train.tsv', +# # test='test.tsv', +# # format='tsv', +# # fields=fields) + +quote.build_vocab(train_data, max_size=10000, min_freq=1, vectors="glove.6B.100d") + +train_iterator, test_iterator = BucketIterator.splits( + (train_data, test_data), batch_size=2, device=device +) + +######### Training a simple LSTM on this toy data of ours ######### +class RNN_LSTM(nn.Module): + def __init__(self, input_size, embed_size, hidden_size, num_layers): + super(RNN_LSTM, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + + self.embedding = nn.Embedding(input_size, embed_size) + self.rnn = nn.LSTM(embed_size, hidden_size, num_layers) + self.fc_out = nn.Linear(hidden_size, 1) + + def forward(self, x): + # Set initial hidden and cell states + h0 = torch.zeros(self.num_layers, x.size(1), self.hidden_size).to(device) + c0 = torch.zeros(self.num_layers, x.size(1), self.hidden_size).to(device) + + embedded = self.embedding(x) + outputs, _ = self.rnn(embedded, (h0, c0)) + prediction = self.fc_out(outputs[-1, :, :]) + + return prediction + + +# Hyperparameters +input_size = len(quote.vocab) +hidden_size = 512 +num_layers = 2 +embedding_size = 100 +learning_rate = 0.005 +num_epochs = 10 + +# Initialize network +model = RNN_LSTM(input_size, embedding_size, hidden_size, num_layers).to(device) + +# (NOT COVERED IN YOUTUBE VIDEO): Load the pretrained embeddings onto our model +pretrained_embeddings = quote.vocab.vectors +model.embedding.weight.data.copy_(pretrained_embeddings) + +# Loss and optimizer +criterion = nn.BCEWithLogitsLoss() +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +# Train Network +for epoch in range(num_epochs): + for batch_idx, batch in enumerate(train_iterator): + # Get data to cuda if possible + data = batch.q.to(device=device) + targets = batch.s.to(device=device) + + # forward + scores = model(data) + loss = criterion(scores.squeeze(1), targets.type_as(scores)) + + # backward + optimizer.zero_grad() + loss.backward() + + # gradient descent + optimizer.step() diff --git a/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial2.py b/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial2.py new file mode 100644 index 0000000..8635ff3 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial2.py @@ -0,0 +1,45 @@ +import spacy +from torchtext.datasets import Multi30k +from torchtext.data import Field, BucketIterator + +""" +To install spacy languages use: +python -m spacy download en +python -m spacy download de +""" + +spacy_eng = spacy.load("en") +spacy_ger = spacy.load("de") + + +def tokenize_eng(text): + return [tok.text for tok in spacy_eng.tokenizer(text)] + + +def tokenize_ger(text): + return [tok.text for tok in spacy_ger.tokenizer(text)] + + +english = Field(sequential=True, use_vocab=True, tokenize=tokenize_eng, lower=True) +german = Field(sequential=True, use_vocab=True, tokenize=tokenize_ger, lower=True) + +train_data, validation_data, test_data = Multi30k.splits( + exts=(".de", ".en"), fields=(german, english) +) + +english.build_vocab(train_data, max_size=10000, min_freq=2) +german.build_vocab(train_data, max_size=10000, min_freq=2) + +train_iterator, validation_iterator, test_iterator = BucketIterator.splits( + (train_data, validation_data, test_data), batch_size=64, device="cuda" +) + +for batch in train_iterator: + print(batch) + +# string to integer (stoi) +print(f'Index of the word (the) is: {english.vocab.stoi["the"]}') + +# print integer to string (itos) +print(f"Word of the index (1612) is: {english.vocab.itos[1612]}") +print(f"Word of the index (0) is: {english.vocab.itos[0]}") diff --git a/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial3.py b/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial3.py new file mode 100644 index 0000000..95634a9 --- /dev/null +++ b/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial3.py @@ -0,0 +1,64 @@ +import spacy +import pandas as pd +from torchtext.data import Field, BucketIterator, TabularDataset +from sklearn.model_selection import train_test_split + +### Load data from two text files where each row is a sentence ### +english_txt = open("train_WMT_english.txt", encoding="utf8").read().split("\n") +german_txt = open("train_WMT_german.txt", encoding="utf8").read().split("\n") + +raw_data = { + "English": [line for line in english_txt[1:100]], + "German": [line for line in german_txt[1:100]], +} + +df = pd.DataFrame(raw_data, columns=["English", "German"]) + +# create train and test set +train, test = train_test_split(df, test_size=0.1) + +# Get train, test data to json and csv format which can be read by torchtext +train.to_json("train.json", orient="records", lines=True) +test.to_json("test.json", orient="records", lines=True) + +train.to_csv("train.csv", index=False) +test.to_csv("test.csv", index=False) + +### Now we're back to where we were in previous Tutorials ### + +""" +To install spacy languages use: +python -m spacy download en +python -m spacy download de +""" + +spacy_eng = spacy.load("en") +spacy_ger = spacy.load("de") + + +def tokenize_eng(text): + return [tok.text for tok in spacy_eng.tokenizer(text)] + + +def tokenize_ger(text): + return [tok.text for tok in spacy_ger.tokenizer(text)] + + +english = Field(sequential=True, use_vocab=True, tokenize=tokenize_eng, lower=True) +german = Field(sequential=True, use_vocab=True, tokenize=tokenize_ger, lower=True) + +fields = {"English": ("eng", english), "German": ("ger", german)} + +train_data, test_data = TabularDataset.splits( + path="", train="train.json", test="test.json", format="json", fields=fields +) + +english.build_vocab(train_data, max_size=10000, min_freq=2) +german.build_vocab(train_data, max_size=10000, min_freq=2) + +train_iterator, test_iterator = BucketIterator.splits( + (train_data, test_data), batch_size=32, device="cuda" +) + +for batch in train_iterator: + print(batch) diff --git a/ML/Pytorch/more_advanced/transformer_from_scratch/transformer_from_scratch.py b/ML/Pytorch/more_advanced/transformer_from_scratch/transformer_from_scratch.py new file mode 100644 index 0000000..80396df --- /dev/null +++ b/ML/Pytorch/more_advanced/transformer_from_scratch/transformer_from_scratch.py @@ -0,0 +1,291 @@ +""" +A from scratch implementation of Transformer network, +following the paper Attention is all you need with a +few minor differences. I tried to make it as clear as +possible to understand and also went through the code +on my youtube channel! + + +""" + +import torch +import torch.nn as nn + + +class SelfAttention(nn.Module): + def __init__(self, embed_size, heads): + super(SelfAttention, self).__init__() + self.embed_size = embed_size + self.heads = heads + self.head_dim = embed_size // heads + + assert ( + self.head_dim * heads == embed_size + ), "Embedding size needs to be divisible by heads" + + self.values = nn.Linear(self.head_dim, self.head_dim, bias=False) + self.keys = nn.Linear(self.head_dim, self.head_dim, bias=False) + self.queries = nn.Linear(self.head_dim, self.head_dim, bias=False) + self.fc_out = nn.Linear(heads * self.head_dim, embed_size) + + def forward(self, values, keys, query, mask): + # Get number of training examples + N = query.shape[0] + + value_len, key_len, query_len = values.shape[1], keys.shape[1], query.shape[1] + + # Split the embedding into self.heads different pieces + values = values.reshape(N, value_len, self.heads, self.head_dim) + keys = keys.reshape(N, key_len, self.heads, self.head_dim) + query = query.reshape(N, query_len, self.heads, self.head_dim) + + values = self.values(values) # (N, value_len, heads, head_dim) + keys = self.keys(keys) # (N, key_len, heads, head_dim) + queries = self.queries(query) # (N, query_len, heads, heads_dim) + + # Einsum does matrix mult. for query*keys for each training example + # with every other training example, don't be confused by einsum + # it's just how I like doing matrix multiplication & bmm + + energy = torch.einsum("nqhd,nkhd->nhqk", [queries, keys]) + # queries shape: (N, query_len, heads, heads_dim), + # keys shape: (N, key_len, heads, heads_dim) + # energy: (N, heads, query_len, key_len) + + # Mask padded indices so their weights become 0 + if mask is not None: + energy = energy.masked_fill(mask == 0, float("-1e20")) + + # Normalize energy values similarly to seq2seq + attention + # so that they sum to 1. Also divide by scaling factor for + # better stability + attention = torch.softmax(energy / (self.embed_size ** (1 / 2)), dim=3) + # attention shape: (N, heads, query_len, key_len) + + out = torch.einsum("nhql,nlhd->nqhd", [attention, values]).reshape( + N, query_len, self.heads * self.head_dim + ) + # attention shape: (N, heads, query_len, key_len) + # values shape: (N, value_len, heads, heads_dim) + # out after matrix multiply: (N, query_len, heads, head_dim), then + # we reshape and flatten the last two dimensions. + + out = self.fc_out(out) + # Linear layer doesn't modify the shape, final shape will be + # (N, query_len, embed_size) + + return out + + +class TransformerBlock(nn.Module): + def __init__(self, embed_size, heads, dropout, forward_expansion): + super(TransformerBlock, self).__init__() + self.attention = SelfAttention(embed_size, heads) + self.norm1 = nn.LayerNorm(embed_size) + self.norm2 = nn.LayerNorm(embed_size) + + self.feed_forward = nn.Sequential( + nn.Linear(embed_size, forward_expansion * embed_size), + nn.ReLU(), + nn.Linear(forward_expansion * embed_size, embed_size), + ) + + self.dropout = nn.Dropout(dropout) + + def forward(self, value, key, query, mask): + attention = self.attention(value, key, query, mask) + + # Add skip connection, run through normalization and finally dropout + x = self.dropout(self.norm1(attention + query)) + forward = self.feed_forward(x) + out = self.dropout(self.norm2(forward + x)) + return out + + +class Encoder(nn.Module): + def __init__( + self, + src_vocab_size, + embed_size, + num_layers, + heads, + device, + forward_expansion, + dropout, + max_length, + ): + + super(Encoder, self).__init__() + self.embed_size = embed_size + self.device = device + self.word_embedding = nn.Embedding(src_vocab_size, embed_size) + self.position_embedding = nn.Embedding(max_length, embed_size) + + self.layers = nn.ModuleList( + [ + TransformerBlock( + embed_size, + heads, + dropout=dropout, + forward_expansion=forward_expansion, + ) + for _ in range(num_layers) + ] + ) + + self.dropout = nn.Dropout(dropout) + + def forward(self, x, mask): + N, seq_length = x.shape + positions = torch.arange(0, seq_length).expand(N, seq_length).to(self.device) + out = self.dropout( + (self.word_embedding(x) + self.position_embedding(positions)) + ) + + # In the Encoder the query, key, value are all the same, it's in the + # decoder this will change. This might look a bit odd in this case. + for layer in self.layers: + out = layer(out, out, out, mask) + + return out + + +class DecoderBlock(nn.Module): + def __init__(self, embed_size, heads, forward_expansion, dropout, device): + super(DecoderBlock, self).__init__() + self.norm = nn.LayerNorm(embed_size) + self.attention = SelfAttention(embed_size, heads=heads) + self.transformer_block = TransformerBlock( + embed_size, heads, dropout, forward_expansion + ) + self.dropout = nn.Dropout(dropout) + + def forward(self, x, value, key, src_mask, trg_mask): + attention = self.attention(x, x, x, trg_mask) + query = self.dropout(self.norm(attention + x)) + out = self.transformer_block(value, key, query, src_mask) + return out + + +class Decoder(nn.Module): + def __init__( + self, + trg_vocab_size, + embed_size, + num_layers, + heads, + forward_expansion, + dropout, + device, + max_length, + ): + super(Decoder, self).__init__() + self.device = device + self.word_embedding = nn.Embedding(trg_vocab_size, embed_size) + self.position_embedding = nn.Embedding(max_length, embed_size) + + self.layers = nn.ModuleList( + [ + DecoderBlock(embed_size, heads, forward_expansion, dropout, device) + for _ in range(num_layers) + ] + ) + self.fc_out = nn.Linear(embed_size, trg_vocab_size) + self.dropout = nn.Dropout(dropout) + + def forward(self, x, enc_out, src_mask, trg_mask): + N, seq_length = x.shape + positions = torch.arange(0, seq_length).expand(N, seq_length).to(self.device) + x = self.dropout((self.word_embedding(x) + self.position_embedding(positions))) + + for layer in self.layers: + x = layer(x, enc_out, enc_out, src_mask, trg_mask) + + out = self.fc_out(x) + + return out + + +class Transformer(nn.Module): + def __init__( + self, + src_vocab_size, + trg_vocab_size, + src_pad_idx, + trg_pad_idx, + embed_size=512, + num_layers=6, + forward_expansion=4, + heads=8, + dropout=0, + device="cpu", + max_length=100, + ): + + super(Transformer, self).__init__() + + self.encoder = Encoder( + src_vocab_size, + embed_size, + num_layers, + heads, + device, + forward_expansion, + dropout, + max_length, + ) + + self.decoder = Decoder( + trg_vocab_size, + embed_size, + num_layers, + heads, + forward_expansion, + dropout, + device, + max_length, + ) + + self.src_pad_idx = src_pad_idx + self.trg_pad_idx = trg_pad_idx + self.device = device + + def make_src_mask(self, src): + src_mask = (src != self.src_pad_idx).unsqueeze(1).unsqueeze(2) + # (N, 1, 1, src_len) + return src_mask.to(self.device) + + def make_trg_mask(self, trg): + N, trg_len = trg.shape + trg_mask = torch.tril(torch.ones((trg_len, trg_len))).expand( + N, 1, trg_len, trg_len + ) + + return trg_mask.to(self.device) + + def forward(self, src, trg): + src_mask = self.make_src_mask(src) + trg_mask = self.make_trg_mask(trg) + enc_src = self.encoder(src, src_mask) + out = self.decoder(trg, enc_src, src_mask, trg_mask) + return out + + +if __name__ == "__main__": + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + print(device) + + x = torch.tensor([[1, 5, 6, 4, 3, 9, 5, 2, 0], [1, 8, 7, 3, 4, 5, 6, 7, 2]]).to( + device + ) + trg = torch.tensor([[1, 7, 4, 3, 5, 9, 2, 0], [1, 5, 6, 2, 4, 7, 6, 2]]).to(device) + + src_pad_idx = 0 + trg_pad_idx = 0 + src_vocab_size = 10 + trg_vocab_size = 10 + model = Transformer(src_vocab_size, trg_vocab_size, src_pad_idx, trg_pad_idx, device=device).to( + device + ) + out = model(x, trg[:, :-1]) + print(out.shape) diff --git a/ML/Pytorch/object_detection/YOLO/__pycache__/dataset.cpython-38.pyc b/ML/Pytorch/object_detection/YOLO/__pycache__/dataset.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..27f3f3df544eee3693f69d10fc06831c7d86a213 GIT binary patch literal 2139 zcmZuy%Wm676rCA9L{X9@%XS`ZkP1anQ~_cHMZ0Jq1VtR62;ewrjlKw_1jC_ZDikRX zC#`J^S8~@y|3Kap$gZDIbkUEPZL{&FAJ9e8dr8@Gf(|if9(NvR=H5B{y47+Cq@BNh z^Z#iO@;5dvCKDQ;L(cC4aN-e8IZLQV%aVDlEDg_u(nzeS?b(!kLAc4SW5TV7PHGcp zQlA^1%h@jJ+ef$EEfEDW%6mcY(V@&lxYy%>4Dv|!WY$ZvfcNBH)O!@DcG7(DfvE5+zktiXhELnV4$2tLa@$ zxB8AY^C%g44y@ph;v^E_J|db3D+q0b4nhmyIT2kb{{3O=_VDXG68SJl0?vo`qWr1M zX2SXlg~)06V0*Z9)G&K8fli-Ca%ubi;r7Gf(tVq=L+$u} zoW|1kkw}h2h|#3>`FFJT`nEUE#)cHfEfdz!1LZYia7v=cgwE+M5$K*i(?$}d0!@7? zR-q`5R>2xHbo?`$u3Zph}sR*e%{G-YeCq70}Z zzqa^8kwsfIp@$7w(FA_2MF%Xa%iQG9R!bSc_|IZRtt{40$VGl~L)mj$ z*ihnpXC3%2>ou%1QnZU|ZD^~`6?9NJPPMOq?~2u;3nzm#0ySe_YFvSrd8EdYifOL0?Q4xv9!aR{h5u70SHjlqik&LzkoBhMkpLBLP{>nIelt~530V@mhh_Q^jEeI`cOs{gq$@3VUpU2 zQwc4$c}vrSx5LgIByldoY&yI19`1*7WHa{a=*AndH;!a1qp9z24w4KcF24hnvx%Cz zng~3{sRbaA{OJb5Re=5_&9YpZvq0`?bCShr_2BU>cxDXCX)~Kesjj2AB=Dd?P((CK zf-urnK1*V$?O+BYcqJEjKiVoqSlcp6^GuX-p{=7xWO=0|rHG)Mz>o}?ii%75_OunJ zJUZ~)O0G&~)|2c2cBUh3mAzggOoBZ3%Z7LtSE7g7`YGmc40|t%$9vLqQ246pF{-=Q ztX7-`Qp5+^fHgIZHJy0&fgeUm;@O8)>6Qys^+vT?)o8;UKg=@0;}rimZ#%5v`{&Mh z2Uz6;079=(le!dCi>79|7SD{{R30 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/object_detection/YOLO/__pycache__/loss.cpython-38.pyc b/ML/Pytorch/object_detection/YOLO/__pycache__/loss.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c0f27998f75439ed7ca7a117a0430d5a69e841f6 GIT binary patch literal 2240 zcma)7OK;mo5Z+xbAEF+%6}5JXAP{^gssJ&X99kd<(xOgV6tJBFK@MSs60~+DQ>92} zmr4_Zx-=UEdE zIC%Ag|J?>5zv5tle_L0qvJ@9WSjD8OEtpS{8@=W!lyl?A*AQTG#7!h7%WjZS-% z2pJWsGaH=E7?Ku{-Vy|?!9F3z;?s9vk&={V)TA#$oFFIg8`m z-oO7T2ALZpEpvK5r=R3>H?Kv(=uiZHoFs?C*SlVlDAD0L*D~s>HL#}EkwE2;mjJ-` zdr_dZ@4qB}e6@S4`#{4Tb%Q7nqI*~BZ_?zryC3w9!dPD4lYxrEcyN6;iK6lzyZd|H zFQ2A~>K%2#Eiio{(}nEey}f%~%=*spQ&k0r=vg;_5Za&(+oJH}7CqTm-rLSH&>qIU z9EcTbeiuIdGu%-|r%=He87@D__RtWlMK;M9pU{+NP~TY9-?KiuOft5*d&VZlLc&Co{`kmrbmR4L;n<1oWzBbmC-AW)~Pv-Ew`#Ce=k0@Z?Ga7ounizT|F_Nv*UstwSue7T^KzxW>3v zGyx}@)R%rCC(a@#D>|YkE|pjo^1s{TcTnGiybjm02HtK4cQaYf*5Tc^4rb>tR0ZmIXZ9A**<~c}Ah`-e zQ6SJ33=xhxY)4rrz?U#Xfx^x(!)7!%{q3je@2`HmGn<1wIAF_I_;9E=0sD$h0|ieJ z%&h0OlKKdnaq;@`F_kR_v3@j`@LP_-)+F4k%Go4$2U?5Y^3X`#acw;f&^f>IbS3xfLklM2k zrA`l%C!Q;xggVteuGfJ0E9Sf^GD?#=cW{G^#dA=nI8j}+pMu?p6MuE@mQ4<2IY+8C z5qv?m5V{Tj3*QDxY{N!>4TP|^u}!z>Roc5)_K#|W}Mb&ZO*IL z&Kbw`)|{_#+NSL}H?3l}Dx6-SSLWPuC_87&nKOg^2`l?#{dLD%IPMqPU|vEmelTl}kF zL)KVf4&}VjEO;G9eSq?Jf#gn68ar{UYPdDWX&7l$RE@P?pefF*ICzs!=XQzr4i>I< LfN;~ngc*MU(Hbup literal 0 HcmV?d00001 diff --git a/ML/Pytorch/object_detection/YOLO/__pycache__/model.cpython-38.pyc b/ML/Pytorch/object_detection/YOLO/__pycache__/model.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e771f7fdd735b336cce88519b03676eaaf0476b0 GIT binary patch literal 2916 zcmZ`)OK%)S5bmD$KI}M7NJtQ9fdCmu42gJ%h?n9h2+7_=v2w_2(J;0x5efDo+31Q$laTU@usn%Ocr6Q;0)jp_(jc%p(H$!gCOHBrZi zJ$SRRUgE~awAXT-g41c%S7CbJLM8R5egBB#?`Rs zEH^W`Hdo!nPqC(N?Yd}pzaU|dFd-CQ^et)A@K+KXLV6I;QnUN*L?LNvV#_el^9OAu zIl0sxvc+Nhw!2oj4Q(!K|GfYv`wQfF0o_qfksyVh@1S$2&>vCB&p|{C@nbFH5$ozW zZh0+}Vz|Xx)+1)ImJPq#%A0RCuO?Y%wKG{wJJ14y0=h=LV-$Tp2_V+TK9m@C$h z4~?!t2#NX7{NDHu^MPHM+s@F~p}vd0CrsV12!_+Frn2tFVSfFOAAg|o%jbSo+4-O! zNeNssiVr{;kK$I)Rj>( z@GWKKQPNelI1M_>VVXusuIkyK*dIBo4?@|?pKw(Pf=&|Vc@R8d|Fq|?v~TB;%-dlC zEVZvi`D&5%+lwI}m_`?IoJ`}icX2*T5+D*-Z7(jgZ>|>^K-$jku0R=xh|o%NcWx}) zXalBEGS^?1^wi!WrxE}dpXO(Ioo^hU1YvICfDS=)Qm9Yhokz`2K@8b8Rd{*Z81fzc zEwLxO>6`Kl=H+P;FF-sos9Y4Iv)+-@e}0C5q6T%X1_X7=tep7b4xNgA$2 zh)FdF@E?PO`t=~VHwcq*M*o$3gLa)7yRs7{Ne~=3^A*fWI#@^gO*)hS=JC3tHP3;W zW~t;KLQKFcsv6FQFt;jzGYE;`Oq7JyCPG5%Xn4B-TunK|A@?uoCw|DMgm$VL;aAW( zif|y9Fb+(^%g&IkSS6~_^SW$U;$7ofzJ}#~RUStp-zGs(RwoXURsall^O&& z@;wM;>*oNJC1FuSseGMg8hb+Dlo0bVszw6iRlYGjzT+5vhay&iCH<1VVx2SAV(_MXI_K-5Vf{$6?}EN~~TWd#8kU3EXp}u?g{)%I0#bmJZee8TIiNa>WmFhXxDr z)TgNVEeOUf?ie5sZqUb^@_S}IbL^^7=ciCT`p{|%{Rr?7p2DI+8hRA^)0(=madz@N zo_~#<2^Z1HM8uSbH4IzmP$C?fCNtQ`8rdVKp!Wh|-T|d-n*xwL2>_mC!q_pO0Zevi z9uUy2DF8uj;{XEoNp_l@WIM(VrDvz9Q-1uHMmx@;B4;3Wb#xsa2}y2I?)CDeDQ5v` zDwN8-CbK>=o_rD0zFX#jYTi$fU^N&j0#Eb5%4(Oa@}1L^}O5xSK3NtxO{ dgQr_EUOX9@Ypky+55@3sonwq}V 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 train.txt +cp 2007_test.txt test.txt + +# Move txt files we won't be using to clean up a little bit +mkdir old_txt_files +mv 2007* 2012* old_txt_files/ + +python generate_csv.py + +mkdir data +mkdir data/images +mkdir data/labels + +cp VOCdevkit/*.jpg data/images/ +cp VOCdevkit/VOC2007/labels/*.txt data/labels/ +cp VOCdevkit/VOC2012/labels/*.txt data/labels/ + +mkdir data +mkdir data/images +mkdir data/labels + +mv VOCdevkit/VOC2007/JPEGImages/*.jpg data/images/ +mv VOCdevkit/VOC2012/JPEGImages/*.jpg data/images/ +mv VOCdevkit/VOC2007/labels/*.txt data/labels/ +mv VOCdevkit/VOC2012/labels/*.txt data/labels/ + +# We don't need VOCdevkit folder anymore, can remove +# in order to save some space +rm -rf VOCdevkit/ +mv test.txt old_txt_files/ +mv train.txt old_txt_files/ diff --git a/ML/Pytorch/object_detection/YOLO/dataset.py b/ML/Pytorch/object_detection/YOLO/dataset.py new file mode 100755 index 0000000..2958da7 --- /dev/null +++ b/ML/Pytorch/object_detection/YOLO/dataset.py @@ -0,0 +1,90 @@ +""" +Creates a Pytorch dataset to load the Pascal VOC dataset +""" + +import torch +import os +import pandas as pd +from PIL import Image + + +class VOCDataset(torch.utils.data.Dataset): + def __init__( + self, csv_file, img_dir, label_dir, S=7, B=2, C=20, transform=None, + ): + self.annotations = pd.read_csv(csv_file) + self.img_dir = img_dir + self.label_dir = label_dir + self.transform = transform + self.S = S + self.B = B + self.C = C + + def __len__(self): + return len(self.annotations) + + def __getitem__(self, index): + label_path = os.path.join(self.label_dir, self.annotations.iloc[index, 1]) + boxes = [] + with open(label_path) as f: + for label in f.readlines(): + class_label, x, y, width, height = [ + float(x) if float(x) != int(float(x)) else int(x) + for x in label.replace("\n", "").split() + ] + + boxes.append([class_label, x, y, width, height]) + + img_path = os.path.join(self.img_dir, self.annotations.iloc[index, 0]) + image = Image.open(img_path) + boxes = torch.tensor(boxes) + + if self.transform: + # image = self.transform(image) + image, boxes = self.transform(image, boxes) + + # Convert To Cells + label_matrix = torch.zeros((self.S, self.S, self.C + 5 * self.B)) + for box in boxes: + class_label, x, y, width, height = box.tolist() + class_label = int(class_label) + + # i,j represents the cell row and cell column + i, j = int(self.S * y), int(self.S * x) + x_cell, y_cell = self.S * x - j, self.S * y - i + + """ + Calculating the width and height of cell of bounding box, + relative to the cell is done by the following, with + width as the example: + + width_pixels = (width*self.image_width) + cell_pixels = (self.image_width) + + Then to find the width relative to the cell is simply: + width_pixels/cell_pixels, simplification leads to the + formulas below. + """ + width_cell, height_cell = ( + width * self.S, + height * self.S, + ) + + # If no object already found for specific cell i,j + # Note: This means we restrict to ONE object + # per cell! + if label_matrix[i, j, 20] == 0: + # Set that there exists an object + label_matrix[i, j, 20] = 1 + + # Box coordinates + box_coordinates = torch.tensor( + [x_cell, y_cell, width_cell, height_cell] + ) + + label_matrix[i, j, 21:25] = box_coordinates + + # Set one hot encoding for class_label + label_matrix[i, j, class_label] = 1 + + return image, label_matrix diff --git a/ML/Pytorch/object_detection/YOLO/loss.py b/ML/Pytorch/object_detection/YOLO/loss.py new file mode 100755 index 0000000..f310a70 --- /dev/null +++ b/ML/Pytorch/object_detection/YOLO/loss.py @@ -0,0 +1,124 @@ +""" +Implementation of Yolo Loss Function from the original yolo paper + +""" + +import torch +import torch.nn as nn +from utils import intersection_over_union + + +class YoloLoss(nn.Module): + """ + Calculate the loss for yolo (v1) model + """ + + def __init__(self, S=7, B=2, C=20): + super(YoloLoss, self).__init__() + self.mse = nn.MSELoss(reduction="sum") + + """ + S is split size of image (in paper 7), + B is number of boxes (in paper 2), + C is number of classes (in paper and VOC dataset is 20), + """ + self.S = S + self.B = B + self.C = C + + # These are from Yolo paper, signifying how much we should + # pay loss for no object (noobj) and the box coordinates (coord) + self.lambda_noobj = 0.5 + self.lambda_coord = 5 + + def forward(self, predictions, target): + # predictions are shaped (BATCH_SIZE, S*S(C+B*5) when inputted + predictions = predictions.reshape(-1, self.S, self.S, self.C + self.B * 5) + + # Calculate IoU for the two predicted bounding boxes with target bbox + iou_b1 = intersection_over_union(predictions[..., 21:25], target[..., 21:25]) + iou_b2 = intersection_over_union(predictions[..., 26:30], target[..., 21:25]) + ious = torch.cat([iou_b1.unsqueeze(0), iou_b2.unsqueeze(0)], dim=0) + + # Take the box with highest IoU out of the two prediction + # Note that bestbox will be indices of 0, 1 for which bbox was best + iou_maxes, bestbox = torch.max(ious, dim=0) + exists_box = target[..., 20].unsqueeze(3) # in paper this is Iobj_i + + # ======================== # + # FOR BOX COORDINATES # + # ======================== # + + # Set boxes with no object in them to 0. We only take out one of the two + # predictions, which is the one with highest Iou calculated previously. + box_predictions = exists_box * ( + ( + bestbox * predictions[..., 26:30] + + (1 - bestbox) * predictions[..., 21:25] + ) + ) + + box_targets = exists_box * target[..., 21:25] + + # Take sqrt of width, height of boxes to ensure that + box_predictions[..., 2:4] = torch.sign(box_predictions[..., 2:4]) * torch.sqrt( + torch.abs(box_predictions[..., 2:4] + 1e-6) + ) + box_targets[..., 2:4] = torch.sqrt(box_targets[..., 2:4]) + + box_loss = self.mse( + torch.flatten(box_predictions, end_dim=-2), + torch.flatten(box_targets, end_dim=-2), + ) + + # ==================== # + # FOR OBJECT LOSS # + # ==================== # + + # pred_box is the confidence score for the bbox with highest IoU + pred_box = ( + bestbox * predictions[..., 25:26] + (1 - bestbox) * predictions[..., 20:21] + ) + + object_loss = self.mse( + torch.flatten(exists_box * pred_box), + torch.flatten(exists_box * target[..., 20:21]), + ) + + # ======================= # + # FOR NO OBJECT LOSS # + # ======================= # + + #max_no_obj = torch.max(predictions[..., 20:21], predictions[..., 25:26]) + #no_object_loss = self.mse( + # torch.flatten((1 - exists_box) * max_no_obj, start_dim=1), + # torch.flatten((1 - exists_box) * target[..., 20:21], start_dim=1), + #) + + no_object_loss = self.mse( + torch.flatten((1 - exists_box) * predictions[..., 20:21], start_dim=1), + torch.flatten((1 - exists_box) * target[..., 20:21], start_dim=1), + ) + + no_object_loss += self.mse( + torch.flatten((1 - exists_box) * predictions[..., 25:26], start_dim=1), + torch.flatten((1 - exists_box) * target[..., 20:21], start_dim=1) + ) + + # ================== # + # FOR CLASS LOSS # + # ================== # + + class_loss = self.mse( + torch.flatten(exists_box * predictions[..., :20], end_dim=-2,), + torch.flatten(exists_box * target[..., :20], end_dim=-2,), + ) + + loss = ( + self.lambda_coord * box_loss # first two rows in paper + + object_loss # third row in paper + + self.lambda_noobj * no_object_loss # forth row + + class_loss # fifth row + ) + + return loss diff --git a/ML/Pytorch/object_detection/YOLO/model.py b/ML/Pytorch/object_detection/YOLO/model.py new file mode 100755 index 0000000..5d5ca51 --- /dev/null +++ b/ML/Pytorch/object_detection/YOLO/model.py @@ -0,0 +1,119 @@ +""" +Implementation of Yolo (v1) architecture +with slight modification with added BatchNorm. +""" + +import torch +import torch.nn as nn + +""" +Information about architecture config: +Tuple is structured by (kernel_size, filters, stride, padding) +"M" is simply maxpooling with stride 2x2 and kernel 2x2 +List is structured by tuples and lastly int with number of repeats +""" + +architecture_config = [ + (7, 64, 2, 3), + "M", + (3, 192, 1, 1), + "M", + (1, 128, 1, 0), + (3, 256, 1, 1), + (1, 256, 1, 0), + (3, 512, 1, 1), + "M", + [(1, 256, 1, 0), (3, 512, 1, 1), 4], + (1, 512, 1, 0), + (3, 1024, 1, 1), + "M", + [(1, 512, 1, 0), (3, 1024, 1, 1), 2], + (3, 1024, 1, 1), + (3, 1024, 2, 1), + (3, 1024, 1, 1), + (3, 1024, 1, 1), +] + + +class CNNBlock(nn.Module): + def __init__(self, in_channels, out_channels, **kwargs): + super(CNNBlock, self).__init__() + self.conv = nn.Conv2d(in_channels, out_channels, bias=False, **kwargs) + self.batchnorm = nn.BatchNorm2d(out_channels) + self.leakyrelu = nn.LeakyReLU(0.1) + + def forward(self, x): + return self.leakyrelu(self.batchnorm(self.conv(x))) + + +class Yolov1(nn.Module): + def __init__(self, in_channels=3, **kwargs): + super(Yolov1, self).__init__() + self.architecture = architecture_config + self.in_channels = in_channels + self.darknet = self._create_conv_layers(self.architecture) + self.fcs = self._create_fcs(**kwargs) + + def forward(self, x): + x = self.darknet(x) + return self.fcs(torch.flatten(x, start_dim=1)) + + def _create_conv_layers(self, architecture): + layers = [] + in_channels = self.in_channels + + for x in architecture: + if type(x) == tuple: + layers += [ + CNNBlock( + in_channels, x[1], kernel_size=x[0], stride=x[2], padding=x[3], + ) + ] + in_channels = x[1] + + elif type(x) == str: + layers += [nn.MaxPool2d(kernel_size=(2, 2), stride=(2, 2))] + + elif type(x) == list: + conv1 = x[0] + conv2 = x[1] + num_repeats = x[2] + + for _ in range(num_repeats): + layers += [ + CNNBlock( + in_channels, + conv1[1], + kernel_size=conv1[0], + stride=conv1[2], + padding=conv1[3], + ) + ] + layers += [ + CNNBlock( + conv1[1], + conv2[1], + kernel_size=conv2[0], + stride=conv2[2], + padding=conv2[3], + ) + ] + in_channels = conv2[1] + + return nn.Sequential(*layers) + + def _create_fcs(self, split_size, num_boxes, num_classes): + S, B, C = split_size, num_boxes, num_classes + + # In original paper this should be + # nn.Linear(1024*S*S, 4096), + # nn.LeakyReLU(0.1), + # nn.Linear(4096, S*S*(B*5+C)) + + return nn.Sequential( + nn.Flatten(), + nn.Linear(1024 * S * S, 496), + nn.Dropout(0.0), + nn.LeakyReLU(0.1), + nn.Linear(496, S * S * (C + B * 5)), + ) diff --git a/ML/Pytorch/object_detection/YOLO/train.py b/ML/Pytorch/object_detection/YOLO/train.py new file mode 100755 index 0000000..6908e8f --- /dev/null +++ b/ML/Pytorch/object_detection/YOLO/train.py @@ -0,0 +1,148 @@ +""" +Main file for training Yolo model on Pascal VOC dataset + +""" + +import torch +import torchvision.transforms as transforms +import torch.optim as optim +import torchvision.transforms.functional as FT +from tqdm import tqdm +from torch.utils.data import DataLoader +from model import Yolov1 +from dataset import VOCDataset +from utils import ( + non_max_suppression, + mean_average_precision, + intersection_over_union, + cellboxes_to_boxes, + get_bboxes, + plot_image, + save_checkpoint, + load_checkpoint, +) +from loss import YoloLoss + +seed = 123 +torch.manual_seed(seed) + +# Hyperparameters etc. +LEARNING_RATE = 2e-5 +DEVICE = "cuda" if torch.cuda.is_available else "cpu" +BATCH_SIZE = 16 # 64 in original paper but I don't have that much vram, grad accum? +WEIGHT_DECAY = 0 +EPOCHS = 1000 +NUM_WORKERS = 2 +PIN_MEMORY = True +LOAD_MODEL = False +LOAD_MODEL_FILE = "overfit.pth.tar" +IMG_DIR = "data/images" +LABEL_DIR = "data/labels" + + +class Compose(object): + def __init__(self, transforms): + self.transforms = transforms + + def __call__(self, img, bboxes): + for t in self.transforms: + img, bboxes = t(img), bboxes + + return img, bboxes + + +transform = Compose([transforms.Resize((448, 448)), transforms.ToTensor(),]) + + +def train_fn(train_loader, model, optimizer, loss_fn): + loop = tqdm(train_loader, leave=True) + mean_loss = [] + + for batch_idx, (x, y) in enumerate(loop): + x, y = x.to(DEVICE), y.to(DEVICE) + out = model(x) + loss = loss_fn(out, y) + mean_loss.append(loss.item()) + optimizer.zero_grad() + loss.backward() + optimizer.step() + + # update progress bar + loop.set_postfix(loss=loss.item()) + + print(f"Mean loss was {sum(mean_loss)/len(mean_loss)}") + + +def main(): + model = Yolov1(split_size=7, num_boxes=2, num_classes=20).to(DEVICE) + optimizer = optim.Adam( + model.parameters(), lr=LEARNING_RATE, weight_decay=WEIGHT_DECAY + ) + loss_fn = YoloLoss() + + if LOAD_MODEL: + load_checkpoint(torch.load(LOAD_MODEL_FILE), model, optimizer) + + train_dataset = VOCDataset( + "data/100examples.csv", + transform=transform, + img_dir=IMG_DIR, + label_dir=LABEL_DIR, + ) + + test_dataset = VOCDataset( + "data/test.csv", transform=transform, img_dir=IMG_DIR, label_dir=LABEL_DIR, + ) + + train_loader = DataLoader( + dataset=train_dataset, + batch_size=BATCH_SIZE, + num_workers=NUM_WORKERS, + pin_memory=PIN_MEMORY, + shuffle=True, + drop_last=True, + ) + + test_loader = DataLoader( + dataset=test_dataset, + batch_size=BATCH_SIZE, + num_workers=NUM_WORKERS, + pin_memory=PIN_MEMORY, + shuffle=True, + drop_last=True, + ) + + for epoch in range(EPOCHS): + # for x, y in train_loader: + # x = x.to(DEVICE) + # for idx in range(8): + # bboxes = cellboxes_to_boxes(model(x)) + # bboxes = non_max_suppression(bboxes[idx], iou_threshold=0.5, threshold=0.4, box_format="midpoint") + # plot_image(x[idx].permute(1,2,0).to("cpu"), bboxes) + + # import sys + # sys.exit() + + pred_boxes, target_boxes = get_bboxes( + train_loader, model, iou_threshold=0.5, threshold=0.4 + ) + + mean_avg_prec = mean_average_precision( + pred_boxes, target_boxes, iou_threshold=0.5, box_format="midpoint" + ) + print(f"Train mAP: {mean_avg_prec}") + + #if mean_avg_prec > 0.9: + # checkpoint = { + # "state_dict": model.state_dict(), + # "optimizer": optimizer.state_dict(), + # } + # save_checkpoint(checkpoint, filename=LOAD_MODEL_FILE) + # import time + # time.sleep(10) + + train_fn(train_loader, model, optimizer, loss_fn) + + +if __name__ == "__main__": + main() diff --git a/ML/Pytorch/object_detection/YOLO/utils.py b/ML/Pytorch/object_detection/YOLO/utils.py new file mode 100644 index 0000000..1e8b29a --- /dev/null +++ b/ML/Pytorch/object_detection/YOLO/utils.py @@ -0,0 +1,349 @@ +import torch +import numpy as np +import matplotlib.pyplot as plt +import matplotlib.patches as patches +from collections import Counter + +def intersection_over_union(boxes_preds, boxes_labels, box_format="midpoint"): + """ + Calculates intersection over union + + Parameters: + boxes_preds (tensor): Predictions of Bounding Boxes (BATCH_SIZE, 4) + boxes_labels (tensor): Correct labels of Bounding Boxes (BATCH_SIZE, 4) + box_format (str): midpoint/corners, if boxes (x,y,w,h) or (x1,y1,x2,y2) + + Returns: + tensor: Intersection over union for all examples + """ + + if box_format == "midpoint": + box1_x1 = boxes_preds[..., 0:1] - boxes_preds[..., 2:3] / 2 + box1_y1 = boxes_preds[..., 1:2] - boxes_preds[..., 3:4] / 2 + box1_x2 = boxes_preds[..., 0:1] + boxes_preds[..., 2:3] / 2 + box1_y2 = boxes_preds[..., 1:2] + boxes_preds[..., 3:4] / 2 + box2_x1 = boxes_labels[..., 0:1] - boxes_labels[..., 2:3] / 2 + box2_y1 = boxes_labels[..., 1:2] - boxes_labels[..., 3:4] / 2 + box2_x2 = boxes_labels[..., 0:1] + boxes_labels[..., 2:3] / 2 + box2_y2 = boxes_labels[..., 1:2] + boxes_labels[..., 3:4] / 2 + + if box_format == "corners": + box1_x1 = boxes_preds[..., 0:1] + box1_y1 = boxes_preds[..., 1:2] + box1_x2 = boxes_preds[..., 2:3] + box1_y2 = boxes_preds[..., 3:4] # (N, 1) + box2_x1 = boxes_labels[..., 0:1] + box2_y1 = boxes_labels[..., 1:2] + box2_x2 = boxes_labels[..., 2:3] + box2_y2 = boxes_labels[..., 3:4] + + x1 = torch.max(box1_x1, box2_x1) + y1 = torch.max(box1_y1, box2_y1) + x2 = torch.min(box1_x2, box2_x2) + y2 = torch.min(box1_y2, box2_y2) + + # .clamp(0) is for the case when they do not intersect + intersection = (x2 - x1).clamp(0) * (y2 - y1).clamp(0) + + box1_area = abs((box1_x2 - box1_x1) * (box1_y2 - box1_y1)) + box2_area = abs((box2_x2 - box2_x1) * (box2_y2 - box2_y1)) + + return intersection / (box1_area + box2_area - intersection + 1e-6) + + +def non_max_suppression(bboxes, iou_threshold, threshold, box_format="corners"): + """ + Does Non Max Suppression given bboxes + + Parameters: + bboxes (list): list of lists containing all bboxes with each bboxes + specified as [class_pred, prob_score, x1, y1, x2, y2] + iou_threshold (float): threshold where predicted bboxes is correct + threshold (float): threshold to remove predicted bboxes (independent of IoU) + box_format (str): "midpoint" or "corners" used to specify bboxes + + Returns: + list: bboxes after performing NMS given a specific IoU threshold + """ + + assert type(bboxes) == list + + bboxes = [box for box in bboxes if box[1] > threshold] + bboxes = sorted(bboxes, key=lambda x: x[1], reverse=True) + bboxes_after_nms = [] + + while bboxes: + chosen_box = bboxes.pop(0) + + bboxes = [ + box + for box in bboxes + if box[0] != chosen_box[0] + or intersection_over_union( + torch.tensor(chosen_box[2:]), + torch.tensor(box[2:]), + box_format=box_format, + ) + < iou_threshold + ] + + bboxes_after_nms.append(chosen_box) + + return bboxes_after_nms + + +def mean_average_precision( + pred_boxes, true_boxes, iou_threshold=0.5, box_format="midpoint", num_classes=20 +): + """ + Calculates mean average precision + + Parameters: + pred_boxes (list): list of lists containing all bboxes with each bboxes + specified as [train_idx, class_prediction, prob_score, x1, y1, x2, y2] + true_boxes (list): Similar as pred_boxes except all the correct ones + iou_threshold (float): threshold where predicted bboxes is correct + box_format (str): "midpoint" or "corners" used to specify bboxes + num_classes (int): number of classes + + Returns: + float: mAP value across all classes given a specific IoU threshold + """ + + # list storing all AP for respective classes + average_precisions = [] + + # used for numerical stability later on + epsilon = 1e-6 + + for c in range(num_classes): + detections = [] + ground_truths = [] + + # Go through all predictions and targets, + # and only add the ones that belong to the + # current class c + for detection in pred_boxes: + if detection[1] == c: + detections.append(detection) + + for true_box in true_boxes: + if true_box[1] == c: + ground_truths.append(true_box) + + # find the amount of bboxes for each training example + # Counter here finds how many ground truth bboxes we get + # for each training example, so let's say img 0 has 3, + # img 1 has 5 then we will obtain a dictionary with: + # amount_bboxes = {0:3, 1:5} + amount_bboxes = Counter([gt[0] for gt in ground_truths]) + + # We then go through each key, val in this dictionary + # and convert to the following (w.r.t same example): + # ammount_bboxes = {0:torch.tensor[0,0,0], 1:torch.tensor[0,0,0,0,0]} + for key, val in amount_bboxes.items(): + amount_bboxes[key] = torch.zeros(val) + + # sort by box probabilities which is index 2 + detections.sort(key=lambda x: x[2], reverse=True) + TP = torch.zeros((len(detections))) + FP = torch.zeros((len(detections))) + total_true_bboxes = len(ground_truths) + + # If none exists for this class then we can safely skip + if total_true_bboxes == 0: + continue + + for detection_idx, detection in enumerate(detections): + # Only take out the ground_truths that have the same + # training idx as detection + ground_truth_img = [ + bbox for bbox in ground_truths if bbox[0] == detection[0] + ] + + num_gts = len(ground_truth_img) + best_iou = 0 + + for idx, gt in enumerate(ground_truth_img): + iou = intersection_over_union( + torch.tensor(detection[3:]), + torch.tensor(gt[3:]), + box_format=box_format, + ) + + if iou > best_iou: + best_iou = iou + best_gt_idx = idx + + if best_iou > iou_threshold: + # only detect ground truth detection once + if amount_bboxes[detection[0]][best_gt_idx] == 0: + # true positive and add this bounding box to seen + TP[detection_idx] = 1 + amount_bboxes[detection[0]][best_gt_idx] = 1 + else: + FP[detection_idx] = 1 + + # if IOU is lower then the detection is a false positive + else: + FP[detection_idx] = 1 + + TP_cumsum = torch.cumsum(TP, dim=0) + FP_cumsum = torch.cumsum(FP, dim=0) + recalls = TP_cumsum / (total_true_bboxes + epsilon) + precisions = torch.divide(TP_cumsum, (TP_cumsum + FP_cumsum + epsilon)) + precisions = torch.cat((torch.tensor([1]), precisions)) + recalls = torch.cat((torch.tensor([0]), recalls)) + # torch.trapz for numerical integration + average_precisions.append(torch.trapz(precisions, recalls)) + + return sum(average_precisions) / len(average_precisions) + + +def plot_image(image, boxes): + """Plots predicted bounding boxes on the image""" + im = np.array(image) + height, width, _ = im.shape + + # Create figure and axes + fig, ax = plt.subplots(1) + # Display the image + ax.imshow(im) + + # box[0] is x midpoint, box[2] is width + # box[1] is y midpoint, box[3] is height + + # Create a Rectangle potch + for box in boxes: + box = box[2:] + assert len(box) == 4, "Got more values than in x, y, w, h, in a box!" + upper_left_x = box[0] - box[2] / 2 + upper_left_y = box[1] - box[3] / 2 + rect = patches.Rectangle( + (upper_left_x * width, upper_left_y * height), + box[2] * width, + box[3] * height, + linewidth=1, + edgecolor="r", + facecolor="none", + ) + # Add the patch to the Axes + ax.add_patch(rect) + + plt.show() + +def get_bboxes( + loader, + model, + iou_threshold, + threshold, + pred_format="cells", + box_format="midpoint", + device="cuda", +): + all_pred_boxes = [] + all_true_boxes = [] + + # make sure model is in eval before get bboxes + model.eval() + train_idx = 0 + + for batch_idx, (x, labels) in enumerate(loader): + x = x.to(device) + labels = labels.to(device) + + with torch.no_grad(): + predictions = model(x) + + batch_size = x.shape[0] + true_bboxes = cellboxes_to_boxes(labels) + bboxes = cellboxes_to_boxes(predictions) + + for idx in range(batch_size): + nms_boxes = non_max_suppression( + bboxes[idx], + iou_threshold=iou_threshold, + threshold=threshold, + box_format=box_format, + ) + + + #if batch_idx == 0 and idx == 0: + # plot_image(x[idx].permute(1,2,0).to("cpu"), nms_boxes) + # print(nms_boxes) + + for nms_box in nms_boxes: + all_pred_boxes.append([train_idx] + nms_box) + + for box in true_bboxes[idx]: + # many will get converted to 0 pred + if box[1] > threshold: + all_true_boxes.append([train_idx] + box) + + train_idx += 1 + + model.train() + return all_pred_boxes, all_true_boxes + + + +def convert_cellboxes(predictions, S=7): + """ + Converts bounding boxes output from Yolo with + an image split size of S into entire image ratios + rather than relative to cell ratios. Tried to do this + vectorized, but this resulted in quite difficult to read + code... Use as a black box? Or implement a more intuitive, + using 2 for loops iterating range(S) and convert them one + by one, resulting in a slower but more readable implementation. + """ + + predictions = predictions.to("cpu") + batch_size = predictions.shape[0] + predictions = predictions.reshape(batch_size, 7, 7, 30) + bboxes1 = predictions[..., 21:25] + bboxes2 = predictions[..., 26:30] + scores = torch.cat( + (predictions[..., 20].unsqueeze(0), predictions[..., 25].unsqueeze(0)), dim=0 + ) + best_box = scores.argmax(0).unsqueeze(-1) + best_boxes = bboxes1 * (1 - best_box) + best_box * bboxes2 + cell_indices = torch.arange(7).repeat(batch_size, 7, 1).unsqueeze(-1) + x = 1 / S * (best_boxes[..., :1] + cell_indices) + y = 1 / S * (best_boxes[..., 1:2] + cell_indices.permute(0, 2, 1, 3)) + w_y = 1 / S * best_boxes[..., 2:4] + converted_bboxes = torch.cat((x, y, w_y), dim=-1) + predicted_class = predictions[..., :20].argmax(-1).unsqueeze(-1) + best_confidence = torch.max(predictions[..., 20], predictions[..., 25]).unsqueeze( + -1 + ) + converted_preds = torch.cat( + (predicted_class, best_confidence, converted_bboxes), dim=-1 + ) + + return converted_preds + + +def cellboxes_to_boxes(out, S=7): + converted_pred = convert_cellboxes(out).reshape(out.shape[0], S * S, -1) + converted_pred[..., 0] = converted_pred[..., 0].long() + all_bboxes = [] + + for ex_idx in range(out.shape[0]): + bboxes = [] + + for bbox_idx in range(S * S): + bboxes.append([x.item() for x in converted_pred[ex_idx, bbox_idx, :]]) + all_bboxes.append(bboxes) + + return all_bboxes + +def save_checkpoint(state, filename="my_checkpoint.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, model, optimizer): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint["state_dict"]) + optimizer.load_state_dict(checkpoint["optimizer"]) diff --git a/ML/Pytorch/object_detection/metrics/__pycache__/iou.cpython-38.pyc b/ML/Pytorch/object_detection/metrics/__pycache__/iou.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f0f9af533d11569f82f247698caa0cb27c8f22f1 GIT binary patch literal 1503 zcmah}&2G~`5Z<-p{J2S*mOz5aVGjt!$ZC|RTq;ySBP1#nR8hF(VmVo-H8^&(cEFL= zCw>k{NIXJ&38Jv`K`NUG3 zA;cw$UrC=a(>bD266w9vmu@1VDKwjERM|!~6v@Jxp~{?3mgW|GGOOZLQKYPj13p=f z7x*OFGM}9Ax#E-fEc3~)iUZ#&tcn9Zs{0XYl^3=8v6$m>U81xGmu#o`UNT$GEn3PW zN;zMhPx)P)R|9m8xy*AHQnV&;hUWnn0ZUxr1;8bNvs?wd&P#l)hR$UwUtqq@i!)q7 z(MFJg6LJmlEYH+X1-->l8Egff1Dne8Q`;ur;AOs9MSP=%XrYR>5pVf6@9@F;7 zG3d4k;uEh=4!n^|ZTA!ac$50U!{_bC#>rvlkxq8CrC5&HwVe52ZI3ZvM2^x85pP8p zqwleS8IZakBy?sEs?qb93-onj_fzJi9_nNLjee#PkAc$E$4xzK>Eo7`=KRbGM$DZ{ zIL&d79R9yj1inm6$01f|4u+29i|iP@SG2>R;AkR5qEC|NJ;{KGb5mlcpMHNo|MT|*W&Tt%8=ffIF0~(?MlPdYUAW&Jww-@FeNyX*GDHXAp t@-1A!6^UJka~c+xph*n=&q$aAy*W{VjW~aQ;L(v|?I-u-C-;<>{{aa+bG`ro literal 0 HcmV?d00001 diff --git a/ML/Pytorch/object_detection/metrics/__pycache__/mean_avg_precision.cpython-38.pyc b/ML/Pytorch/object_detection/metrics/__pycache__/mean_avg_precision.cpython-38.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2f81f2556dae7b99f1d0f2866f25c2f6770238ce GIT binary patch literal 2523 zcmah~&2Jk;6rY)0+v~NRxM}J%Ns(3&hXkS&dZR=E+ERoBRYcm$mT0xvo!Hy#hch!y zlW6vo0_`DE;V(#T^u~n?M-H4hqCFvTKsj*YfP{p~o3Ud%6%w}Q>&<&_e(%li%|2)} zYy`h=fB4dS*hJ_zwHW^yuy`LDUx6+}A&!x&MiS$MxCE=Y5gUo=nlP`1mC$;E-BO4* z(2{)yHt60GE-JUPUMeVq=}e?1oCYGwQZL)1%`y9*L5Hs^9%+Qa=@vU-B0t@m#U5*nfT1j*_hbcBy^UX!&G<5YQVeNOUv-Vo+V zNj6TgtjYQ++TEAdqjFdZ%TJKX#4+SYX^4unj_@hYCoZfeL0$!~P1y{qfbHkqrm&PI z`2P|7UwVeVLfbgB0fW`YkWYcl6xdu2tNAo&!yL5lg7%fXC92@xhG=VH{R@cr6sxst zjn>i#8^=aIBWL9Fj`elS|FKJJG;M(X2N__lM}#+iDQz_>eb|6H793fQ$w%V-dBprK=Hy>*}Y2~|YBsn^ODbV6?{+XvglIO1aI zrlSTY+twp@f-Dt<yXW@#EOp>gzs^M8~0i&>0AZ{&*M8+>U7I_}qCY7?^rdxWDWK zvCp}uj*E1aEW^>+mdAsP(Pd}pz}twDDE681KL(!e2ed0R zMA4yunnCaoMhbxqy+v8i6CFl*CyPU8aXZd@74S&(xI>xFn*s?j45E!x8nnZqD@cR4 zow39h&LS5Kyeyno_=1x$X8{aS$n=8Ksctc!C1eo&SJh$b_~5jjNZdjU?Kv=UCzp>ga2-Yi^(ym?@hVXo(bL<*kCW z1*?KUcYnY0=_l9M4@Aa-&h>2T5!{Lw0tqzG<3N5|0wz<_aQOH4m~I;j6!X4s`GULnL1p36fQ&K z4s<%vSI-j-4;Q2xo>Noee$ttO--k<>`h2*iV(Sa+R)^{B$DrV|26P`m<7Mc|n4l&) zQy(1lA+twhhLsUU$+U6y2|reb@C@mv&ut7HtB1{Pj{Ekar0rG|%(j4YwkQ`K1X38F$!gj=EZv&k zXu}>jsNP@q`uTCIcZXA83NSh5Izj!4;Qi}VRoJIw>%aM@ZkTUDhc26jNhYv~&60)d zxK4CmnJP7L)0n~&@V5*L6VfznOkS2v3!9{g35I=4{wbGju(gOyT3|UvY|{pB6X2m&^fv;d)#w=m)~r@%0b7DxjWsD+?zE-He>YDrle?JhSY zl}LenY28{q60TjtInoMgbuTTf)J7&YRYjy; zNgWLem{x0v(gkP|ACJx&_$JuVpUFU2GA2J#OZ&`hS@r|H@VZn`!OrVr@)$H{#Cl^Q zJmH@cQ4_&i?~I(1Gk;8UZ%i(Iv35m&p%>(WUa+nw>Z>=${$*`KuP7xiAB}xLy&iwS z2x)L=kCimMr3!u=5BbTUEVVQSVDr=Tl`MFtqlVHn+|j48j&q5RJaB8gKGpNxEHySf z;5cyAb)(^lDr}qrQqESsNwo!TCkanhR`M?2U|DU-CDO2K2pzfZE*m4_xSMhJwAdyda zL);domUsTgj8$CA9OC<5Q@d#)WGO)uj)kw)vyd;W0+Uf!={&Z4*H{hMnt3Wp1$oot zO7rF{PnvvS03P_65;B_e?P(By~exm$U9cC`w!Y4 zJQJ#6eZir|H2?Fn<8St#j;zv2Z(ns@0Nas(RC2|#4@srd#OxQjxnGW|#v#5bQF(cE z7a;^70>a1!d2$Z5|6Rx`uP;Z{nwC)NMr!nW0|r7sqmITFOdO3*7Bo6C z`<{7XiKUlp;>!IewnMJq8@OaZHkAK#J%Pf1>rGgntPt-zm)Gb9|DVP(zd}#rZdG%9 zSAms2SmUa-J;k*zV~bFFaLcQRK6XR zvhpz!)vYfL5P|>SS6VAw1>hAbt@27$RzX~1X@s>Zm{y*~;A)JIgVf%dZbvSMBVc_R zCf{i_LRh)sqUFIMjHkh9kq@`nHr=K^^J#I`KZ$k_77T1ltTaj literal 0 HcmV?d00001 diff --git a/ML/Pytorch/object_detection/metrics/iou.py b/ML/Pytorch/object_detection/metrics/iou.py new file mode 100644 index 0000000..b33fbd1 --- /dev/null +++ b/ML/Pytorch/object_detection/metrics/iou.py @@ -0,0 +1,50 @@ +import torch + + +def intersection_over_union(boxes_preds, boxes_labels, box_format="midpoint"): + """ + Calculates intersection over union + + Parameters: + boxes_preds (tensor): Predictions of Bounding Boxes (BATCH_SIZE, 4) + boxes_labels (tensor): Correct Labels of Boxes (BATCH_SIZE, 4) + box_format (str): midpoint/corners, if boxes (x,y,w,h) or (x1,y1,x2,y2) + + Returns: + tensor: Intersection over union for all examples + """ + + # Slicing idx:idx+1 in order to keep tensor dimensionality + # Doing ... in indexing if there would be additional dimensions + # Like for Yolo algorithm which would have (N, S, S, 4) in shape + if box_format == "midpoint": + box1_x1 = boxes_preds[..., 0:1] - boxes_preds[..., 2:3] / 2 + box1_y1 = boxes_preds[..., 1:2] - boxes_preds[..., 3:4] / 2 + box1_x2 = boxes_preds[..., 0:1] + boxes_preds[..., 2:3] / 2 + box1_y2 = boxes_preds[..., 1:2] + boxes_preds[..., 3:4] / 2 + box2_x1 = boxes_labels[..., 0:1] - boxes_labels[..., 2:3] / 2 + box2_y1 = boxes_labels[..., 1:2] - boxes_labels[..., 3:4] / 2 + box2_x2 = boxes_labels[..., 0:1] + boxes_labels[..., 2:3] / 2 + box2_y2 = boxes_labels[..., 1:2] + boxes_labels[..., 3:4] / 2 + + elif box_format == "corners": + box1_x1 = boxes_preds[..., 0:1] + box1_y1 = boxes_preds[..., 1:2] + box1_x2 = boxes_preds[..., 2:3] + box1_y2 = boxes_preds[..., 3:4] + box2_x1 = boxes_labels[..., 0:1] + box2_y1 = boxes_labels[..., 1:2] + box2_x2 = boxes_labels[..., 2:3] + box2_y2 = boxes_labels[..., 3:4] + + x1 = torch.max(box1_x1, box2_x1) + y1 = torch.max(box1_y1, box2_y1) + x2 = torch.min(box1_x2, box2_x2) + y2 = torch.min(box1_y2, box2_y2) + + # Need clamp(0) in case they do not intersect, then we want intersection to be 0 + intersection = (x2 - x1).clamp(0) * (y2 - y1).clamp(0) + box1_area = abs((box1_x2 - box1_x1) * (box1_y2 - box1_y1)) + box2_area = abs((box2_x2 - box2_x1) * (box2_y2 - box2_y1)) + + return intersection / (box1_area + box2_area - intersection + 1e-6) \ No newline at end of file diff --git a/ML/Pytorch/object_detection/metrics/mean_avg_precision.py b/ML/Pytorch/object_detection/metrics/mean_avg_precision.py new file mode 100644 index 0000000..73d1e65 --- /dev/null +++ b/ML/Pytorch/object_detection/metrics/mean_avg_precision.py @@ -0,0 +1,112 @@ +import torch +from collections import Counter + +from iou import intersection_over_union + +def mean_average_precision( + pred_boxes, true_boxes, iou_threshold=0.5, box_format="midpoint", num_classes=20 +): + """ + Calculates mean average precision + + Parameters: + pred_boxes (list): list of lists containing all bboxes with each bboxes + specified as [train_idx, class_prediction, prob_score, x1, y1, x2, y2] + true_boxes (list): Similar as pred_boxes except all the correct ones + iou_threshold (float): threshold where predicted bboxes is correct + box_format (str): "midpoint" or "corners" used to specify bboxes + num_classes (int): number of classes + + Returns: + float: mAP value across all classes given a specific IoU threshold + """ + + # list storing all AP for respective classes + average_precisions = [] + + # used for numerical stability later on + epsilon = 1e-6 + + for c in range(num_classes): + detections = [] + ground_truths = [] + + # Go through all predictions and targets, + # and only add the ones that belong to the + # current class c + for detection in pred_boxes: + if detection[1] == c: + detections.append(detection) + + for true_box in true_boxes: + if true_box[1] == c: + ground_truths.append(true_box) + + # find the amount of bboxes for each training example + # Counter here finds how many ground truth bboxes we get + # for each training example, so let's say img 0 has 3, + # img 1 has 5 then we will obtain a dictionary with: + # amount_bboxes = {0:3, 1:5} + amount_bboxes = Counter([gt[0] for gt in ground_truths]) + + # We then go through each key, val in this dictionary + # and convert to the following (w.r.t same example): + # ammount_bboxes = {0:torch.tensor[0,0,0], 1:torch.tensor[0,0,0,0,0]} + for key, val in amount_bboxes.items(): + amount_bboxes[key] = torch.zeros(val) + + # sort by box probabilities which is index 2 + detections.sort(key=lambda x: x[2], reverse=True) + TP = torch.zeros((len(detections))) + FP = torch.zeros((len(detections))) + total_true_bboxes = len(ground_truths) + + # If none exists for this class then we can safely skip + if total_true_bboxes == 0: + continue + + for detection_idx, detection in enumerate(detections): + # Only take out the ground_truths that have the same + # training idx as detection + ground_truth_img = [ + bbox for bbox in ground_truths if bbox[0] == detection[0] + ] + + num_gts = len(ground_truth_img) + best_iou = 0 + + for idx, gt in enumerate(ground_truth_img): + iou = intersection_over_union( + torch.tensor(detection[3:]), + torch.tensor(gt[3:]), + box_format=box_format, + ) + + if iou > best_iou: + best_iou = iou + best_gt_idx = idx + + if best_iou > iou_threshold: + # only detect ground truth detection once + if amount_bboxes[detection[0]][best_gt_idx] == 0: + # true positive and add this bounding box to seen + TP[detection_idx] = 1 + amount_bboxes[detection[0]][best_gt_idx] = 1 + else: + FP[detection_idx] = 1 + + # if IOU is lower then the detection is a false positive + else: + FP[detection_idx] = 1 + + TP_cumsum = torch.cumsum(TP, dim=0) + FP_cumsum = torch.cumsum(FP, dim=0) + recalls = TP_cumsum / (total_true_bboxes + epsilon) + precisions = TP_cumsum / (TP_cumsum + FP_cumsum + epsilon) + precisions = torch.cat((torch.tensor([1]), precisions)) + recalls = torch.cat((torch.tensor([0]), recalls)) + # torch.trapz for numerical integration + average_precisions.append(torch.trapz(precisions, recalls)) + + return sum(average_precisions) / len(average_precisions) + diff --git a/ML/Pytorch/object_detection/metrics/nms.py b/ML/Pytorch/object_detection/metrics/nms.py new file mode 100644 index 0000000..6492f46 --- /dev/null +++ b/ML/Pytorch/object_detection/metrics/nms.py @@ -0,0 +1,42 @@ +import torch +from iou import intersection_over_union + +def nms(bboxes, iou_threshold, threshold, box_format="corners"): + """ + Does Non Max Suppression given bboxes + + Parameters: + bboxes (list): list of lists containing all bboxes with each bboxes + specified as [class_pred, prob_score, x1, y1, x2, y2] + iou_threshold (float): threshold where predicted bboxes is correct + threshold (float): threshold to remove predicted bboxes (independent of IoU) + box_format (str): "midpoint" or "corners" used to specify bboxes + + Returns: + list: bboxes after performing NMS given a specific IoU threshold + """ + + assert type(bboxes) == list + + bboxes = [box for box in bboxes if box[1] > threshold] + bboxes = sorted(bboxes, key=lambda x: x[1], reverse=True) + bboxes_after_nms = [] + + while bboxes: + chosen_box = bboxes.pop(0) + + bboxes = [ + box + for box in bboxes + if box[0] != chosen_box[0] + or intersection_over_union( + torch.tensor(chosen_box[2:]), + torch.tensor(box[2:]), + box_format=box_format, + ) + < iou_threshold + ] + + bboxes_after_nms.append(chosen_box) + + return bboxes_after_nms diff --git a/ML/Pytorch/others/default_setups/image_classification/augmentations.py b/ML/Pytorch/others/default_setups/image_classification/augmentations.py new file mode 100644 index 0000000..fea4b93 --- /dev/null +++ b/ML/Pytorch/others/default_setups/image_classification/augmentations.py @@ -0,0 +1,189 @@ +import random +import PIL, PIL.ImageOps, PIL.ImageEnhance, PIL.ImageDraw +import numpy as np +import torch +from PIL import Image + +def ShearX(img, v): # [-0.3, 0.3] + assert -0.3 <= v <= 0.3 + if random.random() > 0.5: + v = -v + return img.transform(img.size, PIL.Image.AFFINE, (1, v, 0, 0, 1, 0)) + + +def ShearY(img, v): # [-0.3, 0.3] + assert -0.3 <= v <= 0.3 + if random.random() > 0.5: + v = -v + return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, v, 1, 0)) + + +def TranslateX(img, v): # [-150, 150] => percentage: [-0.45, 0.45] + assert -0.45 <= v <= 0.45 + if random.random() > 0.5: + v = -v + v = v * img.size[0] + return img.transform(img.size, PIL.Image.AFFINE, (1, 0, v, 0, 1, 0)) + + +def TranslateXabs(img, v): # [-150, 150] => percentage: [-0.45, 0.45] + assert 0 <= v + if random.random() > 0.5: + v = -v + return img.transform(img.size, PIL.Image.AFFINE, (1, 0, v, 0, 1, 0)) + + +def TranslateY(img, v): # [-150, 150] => percentage: [-0.45, 0.45] + assert -0.45 <= v <= 0.45 + if random.random() > 0.5: + v = -v + v = v * img.size[1] + return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, 0, 1, v)) + + +def TranslateYabs(img, v): # [-150, 150] => percentage: [-0.45, 0.45] + assert 0 <= v + if random.random() > 0.5: + v = -v + return img.transform(img.size, PIL.Image.AFFINE, (1, 0, 0, 0, 1, v)) + + +def Rotate(img, v): # [-30, 30] + assert -30 <= v <= 30 + if random.random() > 0.5: + v = -v + return img.rotate(v) + + +def AutoContrast(img, _): + return PIL.ImageOps.autocontrast(img) + + +def Invert(img, _): + return PIL.ImageOps.invert(img) + + +def Equalize(img, _): + return PIL.ImageOps.equalize(img) + + +def Flip(img, _): # not from the paper + return PIL.ImageOps.mirror(img) + + +def Solarize(img, v): # [0, 256] + assert 0 <= v <= 256 + return PIL.ImageOps.solarize(img, v) + + +def SolarizeAdd(img, addition=0, threshold=128): + img_np = np.array(img).astype(np.int) + img_np = img_np + addition + img_np = np.clip(img_np, 0, 255) + img_np = img_np.astype(np.uint8) + img = Image.fromarray(img_np) + return PIL.ImageOps.solarize(img, threshold) + + +def Posterize(img, v): # [4, 8] + v = int(v) + v = max(1, v) + return PIL.ImageOps.posterize(img, v) + + +def Contrast(img, v): # [0.1,1.9] + assert 0.1 <= v <= 1.9 + return PIL.ImageEnhance.Contrast(img).enhance(v) + + +def Color(img, v): # [0.1,1.9] + assert 0.1 <= v <= 1.9 + return PIL.ImageEnhance.Color(img).enhance(v) + + +def Brightness(img, v): # [0.1,1.9] + assert 0.1 <= v <= 1.9 + return PIL.ImageEnhance.Brightness(img).enhance(v) + + +def Sharpness(img, v): # [0.1,1.9] + assert 0.1 <= v <= 1.9 + return PIL.ImageEnhance.Sharpness(img).enhance(v) + + +def Cutout(img, v): # [0, 60] => percentage: [0, 0.2] + assert 0.0 <= v <= 0.2 + if v <= 0.: + return img + + v = v * img.size[0] + return CutoutAbs(img, v) + + +def CutoutAbs(img, v): # [0, 60] => percentage: [0, 0.2] + # assert 0 <= v <= 20 + if v < 0: + return img + w, h = img.size + x0 = np.random.uniform(w) + y0 = np.random.uniform(h) + + x0 = int(max(0, x0 - v / 2.)) + y0 = int(max(0, y0 - v / 2.)) + x1 = min(w, x0 + v) + y1 = min(h, y0 + v) + + xy = (x0, y0, x1, y1) + color = (125, 123, 114) + # color = (0, 0, 0) + img = img.copy() + PIL.ImageDraw.Draw(img).rectangle(xy, color) + return img + + +def SamplePairing(imgs): # [0, 0.4] + def f(img1, v): + i = np.random.choice(len(imgs)) + img2 = PIL.Image.fromarray(imgs[i]) + return PIL.Image.blend(img1, img2, v) + return f + + +def Identity(img, v): + return img + +def augment_list(): + l = [ + (AutoContrast, 0, 1), + (Equalize, 0, 1), + (Invert, 0, 1), + (Rotate, 0, 30), + (Posterize, 0, 4), + (Solarize, 0, 256), + (SolarizeAdd, 0, 110), + (Color, 0.1, 1.9), + (Contrast, 0.1, 1.9), + (Brightness, 0.1, 1.9), + (Sharpness, 0.1, 1.9), + (ShearX, 0., 0.3), + (ShearY, 0., 0.3), + (CutoutAbs, 0, 40), + (TranslateXabs, 0., 100), + (TranslateYabs, 0., 100), + ] + + return l + +class RandAugment: + def __init__(self, n, m): + self.n = n + self.m = m # [0, 30] + self.augment_list = augment_list() + + def __call__(self, img): + ops = random.choices(self.augment_list, k=self.n) + for op, minval, maxval in ops: + val = (float(self.m) / 30) * float(maxval - minval) + minval + img = op(img, val) + + return img \ No newline at end of file diff --git a/ML/Pytorch/others/default_setups/image_classification/config.py b/ML/Pytorch/others/default_setups/image_classification/config.py new file mode 100644 index 0000000..4647076 --- /dev/null +++ b/ML/Pytorch/others/default_setups/image_classification/config.py @@ -0,0 +1,36 @@ +import torch +import albumentations as A +from albumentations.pytorch import ToTensorV2 + +SEED = 42 +DEVICE = "cuda" if torch.cuda.is_available() else "cpu" +NUM_WORKERS = 4 +BATCH_SIZE = 64 +PIN_MEMORY = True +LOAD_MODEL = True +LEARNING_RATE = 1e-4 +NUM_EPOCHS = 100 + +train_transforms = A.Compose([ + A.Resize(width=224, height=224,), + A.RandomCrop(width=224, height=224), + A.Rotate(40), + A.HorizontalFlip(p=0.5), + A.VerticalFlip(p=0.1), + A.Normalize( + mean=[0, 0, 0], + std=[1, 1, 1], + max_pixel_value=255.0, + ), + ToTensorV2(), +]) + +val_transforms = A.Compose([ + A.Resize(height=224, width=224), + A.Normalize( + mean=[0, 0, 0], + std=[1, 1, 1], + max_pixel_value=255.0, + ), + ToTensorV2(), +]) \ No newline at end of file diff --git a/ML/Pytorch/others/default_setups/image_classification/dataset.py b/ML/Pytorch/others/default_setups/image_classification/dataset.py new file mode 100644 index 0000000..f88b578 --- /dev/null +++ b/ML/Pytorch/others/default_setups/image_classification/dataset.py @@ -0,0 +1,34 @@ +import torch +import torch.nn as nn +import os +from torch.utils.data import Dataset +from PIL import Image +import numpy as np + + +class MyImageFolder(Dataset): + def __init__(self, root_dir, transform=None): + super(MyImageFolder, self).__init__() + self.data = [] + self.root_dir = root_dir + self.transform = transform + self.class_names = os.listdir(root_dir) + + for index, name in enumerate(self.class_names): + files = os.listdir(os.path.join(root_dir, name)) + self.data += list(zip(files, [index]*len(files))) + + def __len__(self): + return len(self.data) + + def __getitem__(self, index): + img_file, label = self.data[index] + root_and_dir = os.path.join(self.root_dir, self.class_names[label]) + image = np.array(Image.open(os.path.join(root_and_dir, img_file))) + + if self.transform is not None: + augmentations = self.transform(image=image) + image = augmentations["image"] + + return image, label + diff --git a/ML/Pytorch/others/default_setups/image_classification/model.py b/ML/Pytorch/others/default_setups/image_classification/model.py new file mode 100644 index 0000000..89d3382 --- /dev/null +++ b/ML/Pytorch/others/default_setups/image_classification/model.py @@ -0,0 +1,13 @@ +from torch import nn +from efficientnet_pytorch import EfficientNet + +class Net(nn.Module): + def __init__(self, net_version, num_classes): + super(Net, self).__init__() + self.backbone = EfficientNet.from_pretrained('efficientnet-'+net_version) + self.backbone._fc = nn.Sequential( + nn.Linear(1280, num_classes), + ) + + def forward(self, x): + return self.backbone(x) \ No newline at end of file diff --git a/ML/Pytorch/others/default_setups/image_classification/train.py b/ML/Pytorch/others/default_setups/image_classification/train.py new file mode 100644 index 0000000..14cc536 --- /dev/null +++ b/ML/Pytorch/others/default_setups/image_classification/train.py @@ -0,0 +1,54 @@ +import torch +import torch.nn as nn +import torch.optim as optim +from torch.utils.data import DataLoader +from tqdm import tqdm +from model import Net +from utils import check_accuracy, load_checkpoint, save_checkpoint, make_prediction +import config +from dataset import MyImageFolder + + +def train_fn(loader, model, optimizer, loss_fn, scaler, device): + for batch_idx, (data, targets) in enumerate(tqdm(loader)): + # Get data to cuda if possible + data = data.to(device=device) + targets = targets.to(device=device) + + # forward + with torch.cuda.amp.autocast(): + scores = model(data) + loss = loss_fn(scores, targets.float()) + + # backward + optimizer.zero_grad() + scaler.scale(loss).backward() + scaler.step(optimizer) + scaler.update() + + +def main(): + train_ds = MyImageFolder(root_dir="train/", transform=config.train_transforms) + val_ds = MyImageFolder(root_dir="val/", transform=config.val_transforms) + train_loader = DataLoader(train_ds, batch_size=config.BATCH_SIZE, num_workers=config.NUM_WORKERS,pin_memory=config.PIN_MEMORY, shuffle=True) + val_loader = DataLoader(val_ds, batch_size=config.BATCH_SIZE, num_workers=config.NUM_WORKERS,pin_memory=config.PIN_MEMORY,shuffle=True) + + loss_fn = nn.CrossEntropyLoss() + model = Net(net_version="b0", num_classes=10).to(config.DEVICE) + optimizer = optim.Adam(model.parameters(), lr=config.LEARNING_RATE) + scaler = torch.cuda.amp.GradScaler() + + if config.LOAD_MODEL: + load_checkpoint(torch.load("my_checkpoint.pth.tar"), model, optimizer) + + make_prediction(model, config.val_transforms, 'test/', config.DEVICE) + check_accuracy(val_loader, model, config.DEVICE) + + for epoch in range(config.NUM_EPOCHS): + train_fn(train_loader, model, optimizer, loss_fn, scaler, config.DEVICE) + check_accuracy(val_loader, model, config.DEVICE) + checkpoint = {'state_dict': model.state_dict(), 'optimizer': optimizer.state_dict()} + save_checkpoint(checkpoint) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/ML/Pytorch/others/default_setups/image_classification/utils.py b/ML/Pytorch/others/default_setups/image_classification/utils.py new file mode 100644 index 0000000..5824c10 --- /dev/null +++ b/ML/Pytorch/others/default_setups/image_classification/utils.py @@ -0,0 +1,56 @@ +import torch +import torch.nn.functional as F +import os +from PIL import Image +import pandas as pd +import numpy as np +from tqdm import tqdm + +def check_accuracy(loader, model, device="cuda"): + num_correct = 0 + num_samples = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device=device) + y = y.to(device=device) + + scores = torch.sigmoid(model(x)) + predictions = (scores>0.5).float() + num_correct += (predictions == y).sum() + num_samples += predictions.shape[0] + + print(f'Got {num_correct} / {num_samples} with accuracy {float(num_correct) / float(num_samples) * 100:.2f}') + + model.train() + + +def save_checkpoint(state, filename="my_checkpoint.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, model, optimizer): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint['state_dict']) + optimizer.load_state_dict(checkpoint['optimizer']) + +def make_prediction(model, transform, rootdir, device): + files = os.listdir(rootdir) + preds = [] + model.eval() + + files = sorted(files, key=lambda x: float(x.split(".")[0])) + for file in tqdm(files): + img = Image.open(os.path.join(rootdir, file)) + img = transform(img).unsqueeze(0).to(device) + with torch.no_grad(): + pred = torch.sigmoid(model(img)) + preds.append(pred.item()) + + + df = pd.DataFrame({'id': np.arange(1, len(preds)+1), 'label': np.array(preds)}) + df.to_csv('submission.csv', index=False) + model.train() + print("Done with predictions") \ No newline at end of file diff --git a/ML/TensorFlow/Basics/tutorial1-installation-videoonly.py b/ML/TensorFlow/Basics/tutorial1-installation-videoonly.py new file mode 100644 index 0000000..e69de29 diff --git a/ML/TensorFlow/Basics/tutorial10-save-model.py b/ML/TensorFlow/Basics/tutorial10-save-model.py new file mode 100644 index 0000000..356a200 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial10-save-model.py @@ -0,0 +1,59 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import mnist + +# To Avoid GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(x_train, y_train), (x_test, y_test) = mnist.load_data() +x_train = x_train.reshape(-1, 28 * 28).astype("float32") / 255.0 +x_test = x_test.reshape(-1, 28 * 28).astype("float32") / 255.0 + +# Alright, so here have some code which should feel familiar from previous tutorials, +# here is what we want to cover +# 1. How to save and load model weights +# 2. Save and loading entire model (Serializing model) +# - Saves weights +# - Model architecture +# - Training Configuration (model.compile()) +# - Optimizer and states + +model1 = keras.Sequential([layers.Dense(64, activation="relu"), layers.Dense(10)]) + +inputs = keras.Input(784) +x = layers.Dense(64, activation="relu")(inputs) +outputs = layers.Dense(10)(x) +model2 = keras.Model(inputs=inputs, outputs=outputs) + + +class MyModel(keras.Model): + def __init__(self): + super(MyModel, self).__init__() + self.dense1 = layers.Dense(64, activation="relu") + self.dense2 = layers.Dense(10) + + def call(self, input_tensor): + x = tf.nn.relu(self.dense1(input_tensor)) + return self.dense2(x) + + +# SavedModel format or HDF5 format +model3 = MyModel() +# model = keras.models.load_model('saved_model/') +# model.load_weights('checkpoint_folder/') + +model.compile( + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + optimizer=keras.optimizers.Adam(), + metrics=["accuracy"], +) + +model.fit(x_train, y_train, batch_size=32, epochs=2, verbose=2) +model.evaluate(x_test, y_test, batch_size=32, verbose=2) +# model.save_weights('checkpoint_folder/') +model.save("saved_model/") diff --git a/ML/TensorFlow/Basics/tutorial11-transfer-learning.py b/ML/TensorFlow/Basics/tutorial11-transfer-learning.py new file mode 100644 index 0000000..46f55d0 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial11-transfer-learning.py @@ -0,0 +1,106 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import mnist +import tensorflow_hub as hub + +# To Avoid GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +# ================================================ # +# Pretrained-Model # +# ================================================ # + +(x_train, y_train), (x_test, y_test) = mnist.load_data() +x_train = x_train.reshape(-1, 28, 28, 1).astype("float32") / 255.0 +x_test = x_test.reshape(-1, 28, 28, 1).astype("float32") / 255.0 + +model = keras.models.load_model("pretrained") + +# Freeze all model layer weights +model.trainable = False + +# Can also set trainable for specific layers +for layer in model.layers: + # assert should be true because of one-liner above + assert layer.trainable == False + layer.trainable = False + +print(model.summary()) # for finding base input and output +base_inputs = model.layers[0].input +base_output = model.layers[-2].output +output = layers.Dense(10)(base_output) +new_model = keras.Model(base_inputs, output) + +# This model is actually identical to model we +# loaded (this is just for demonstration and +# and not something you would do in practice). +print(new_model.summary()) + +# As usual we do compile and fit, this time on new_model +new_model.compile( + optimizer=keras.optimizers.Adam(), + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + metrics=["accuracy"], +) + +new_model.fit(x_train, y_train, batch_size=32, epochs=3, verbose=2) + +# =================================================== # +# Pretrained Keras Model # +# =================================================== # + +# Random data for demonstration (3 examples w. 3 classes) +x = tf.random.normal(shape=(3, 299, 299, 3)) +y = tf.constant([0, 1, 2]) + +model = keras.applications.InceptionV3(include_top=True) +print(model.summary()) + +# for input you can also do model.input, +# then for base_outputs you can obviously +# choose other than simply removing the last one :) +base_inputs = model.layers[0].input +base_outputs = model.layers[-2].output +classifier = layers.Dense(3)(base_outputs) +new_model = keras.Model(inputs=base_inputs, outputs=classifier) +new_model.compile( + optimizer=keras.optimizers.Adam(), + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + metrics=["accuracy"], +) + +print(new_model.summary()) +new_model.fit(x, y, epochs=15, verbose=2) + +# ================================================= # +# Pretrained Hub Model # +# ================================================= # + +# Random data for demonstration (3 examples w. 3 classes) +x = tf.random.normal(shape=(3, 299, 299, 3)) +y = tf.constant([0, 1, 2]) + +url = "https://tfhub.dev/google/imagenet/inception_v3/feature_vector/4" + +base_model = hub.KerasLayer(url, input_shape=(299, 299, 3)) +model = keras.Sequential( + [ + base_model, + layers.Dense(128, activation="relu"), + layers.Dense(64, activation="relu"), + layers.Dense(10), + ] +) + +model.compile( + optimizer=keras.optimizers.Adam(), + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + metrics=["accuracy"], +) + +model.fit(x, y, batch_size=32, epochs=15, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial12-tensorflowdatasets.py b/ML/TensorFlow/Basics/tutorial12-tensorflowdatasets.py new file mode 100644 index 0000000..5470482 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial12-tensorflowdatasets.py @@ -0,0 +1,135 @@ +import os +import matplotlib.pyplot + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +import tensorflow_datasets as tfds + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "mnist", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, # will return tuple (img, label) otherwise dict + with_info=True, # able to get info about dataset +) + +# fig = tfds.show_examples(ds_train, ds_info, rows=4, cols=4) +# print(ds_info) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 128 + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(128) +ds_test = ds_train.prefetch(AUTOTUNE) + +model = keras.Sequential( + [ + keras.Input((28, 28, 1)), + layers.Conv2D(32, 3, activation="relu"), + layers.Flatten(), + tf.keras.layers.Dense(10, activation="softmax"), + ] +) + +model.compile( + optimizer=keras.optimizers.Adam(0.001), + loss=keras.losses.SparseCategoricalCrossentropy(), + metrics=["accuracy"], +) + +model.fit(ds_train, epochs=5, verbose=2) +model.evaluate(ds_test) + + +(ds_train, ds_test), ds_info = tfds.load( + "imdb_reviews", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, # will return tuple (img, label) otherwise dict + with_info=True, # able to get info about dataset +) + +tokenizer = tfds.features.text.Tokenizer() + + +def build_vocabulary(): + vocabulary = set() + for text, _ in ds_train: + vocabulary.update(tokenizer.tokenize(text.numpy().lower())) + return vocabulary + + +vocabulary = build_vocabulary() + +encoder = tfds.features.text.TokenTextEncoder( + list(vocabulary), oov_token="", lowercase=True, tokenizer=tokenizer +) + + +def my_enc(text_tensor, label): + encoded_text = encoder.encode(text_tensor.numpy()) + return encoded_text, label + + +def encode_map_fn(text, label): + # py_func doesn't set the shape of the returned tensors. + encoded_text, label = tf.py_function( + my_enc, inp=[text, label], Tout=(tf.int64, tf.int64) + ) + + # `tf.data.Datasets` work best if all components have a shape set + # so set the shapes manually: + encoded_text.set_shape([None]) + label.set_shape([]) + + return encoded_text, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +ds_train = ds_train.map(encode_map_fn, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(1000) +ds_train = ds_train.padded_batch(32, padded_shapes=([None], ())) +ds_train = ds_train.prefetch(AUTOTUNE) + +ds_test = ds_test.map(encode_map_fn) +ds_test = ds_test.padded_batch(32, padded_shapes=([None], ())) + +model = keras.Sequential( + [ + layers.Masking(mask_value=0), + layers.Embedding(input_dim=len(vocabulary) + 2, output_dim=32), + layers.GlobalAveragePooling1D(), + layers.Dense(64, activation="relu"), + layers.Dense(1), + ] +) + +model.compile( + loss=keras.losses.BinaryCrossentropy(from_logits=True), + optimizer=keras.optimizers.Adam(3e-4, clipnorm=1), + metrics=["accuracy"], +) + +model.fit(ds_train, epochs=15, verbose=2) +model.evaluate(ds_test) diff --git a/ML/TensorFlow/Basics/tutorial13-data-augmentation.py b/ML/TensorFlow/Basics/tutorial13-data-augmentation.py new file mode 100644 index 0000000..b855c83 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial13-data-augmentation.py @@ -0,0 +1,87 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +import tensorflow_datasets as tfds + +(ds_train, ds_test), ds_info = tfds.load( + "cifar10", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, # will return tuple (img, label) otherwise dict + with_info=True, # able to get info about dataset +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 32 + + +def augment(image, label): + new_height = new_width = 32 + image = tf.image.resize(image, (new_height, new_width)) + + if tf.random.uniform((), minval=0, maxval=1) < 0.1: + image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3]) + + image = tf.image.random_brightness(image, max_delta=0.1) + image = tf.image.random_contrast(image, lower=0.1, upper=0.2) + + # a left upside down flipped is still a dog ;) + image = tf.image.random_flip_left_right(image) # 50% + # image = tf.image.random_flip_up_down(image) #%50% + + return image, label + + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +# ds_train = ds_train.map(augment) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(BATCH_SIZE) +ds_test = ds_train.prefetch(AUTOTUNE) + +# TF >= 2.3.0 +data_augmentation = keras.Sequential( + [ + layers.experimental.preprocessing.Resizing(height=32, width=32,), + layers.experimental.preprocessing.RandomFlip(mode="horizontal"), + layers.experimental.preprocessing.RandomContrast(factor=0.1,), + ] +) + +model = keras.Sequential( + [ + keras.Input((32, 32, 3)), + data_augmentation, + layers.Conv2D(4, 3, padding="same", activation="relu"), + layers.Conv2D(8, 3, padding="same", activation="relu"), + layers.MaxPooling2D(), + layers.Conv2D(16, 3, padding="same", activation="relu"), + layers.Flatten(), + layers.Dense(64, activation="relu"), + layers.Dense(10), + ] +) + +model.compile( + optimizer=keras.optimizers.Adam(3e-4), + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + metrics=["accuracy"], +) + +model.fit(ds_train, epochs=5, verbose=2) +model.evaluate(ds_test) diff --git a/ML/TensorFlow/Basics/tutorial14-callbacks.py b/ML/TensorFlow/Basics/tutorial14-callbacks.py new file mode 100644 index 0000000..5e4ec66 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial14-callbacks.py @@ -0,0 +1,73 @@ +import os +import matplotlib.pyplot + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +import tensorflow_datasets as tfds + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "mnist", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, # will return tuple (img, label) otherwise dict + with_info=True, # able to get info about dataset +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 128 + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +model = keras.Sequential( + [ + keras.Input((28, 28, 1)), + layers.Conv2D(32, 3, activation="relu"), + layers.Flatten(), + tf.keras.layers.Dense(10, activation="softmax"), + ] +) + +save_callback = keras.callbacks.ModelCheckpoint( + "checkpoint/", save_weights_only=True, monitor="train_acc", save_best_only=False, +) + +lr_scheduler = keras.callbacks.ReduceLROnPlateau( + monitor="loss", factor=0.1, patience=3, mode="max", verbose=1 +) + + +class OurOwnCallback(keras.callbacks.Callback): + def on_epoch_end(self, epoch, logs=None): + if logs.get("accuracy") > 1: + print("Accuracy over 70%, quitting training") + self.model.stop_training = True + + +model.compile( + optimizer=keras.optimizers.Adam(0.01), + loss=keras.losses.SparseCategoricalCrossentropy(), + metrics=["accuracy"], +) + +model.fit( + ds_train, + epochs=10, + callbacks=[save_callback, lr_scheduler, OurOwnCallback()], + verbose=2, +) diff --git a/ML/TensorFlow/Basics/tutorial15-customizing-modelfit.py b/ML/TensorFlow/Basics/tutorial15-customizing-modelfit.py new file mode 100644 index 0000000..3033964 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial15-customizing-modelfit.py @@ -0,0 +1,82 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import mnist + +(x_train, y_train), (x_test, y_test) = mnist.load_data() +x_train = x_train.reshape(-1, 28, 28, 1).astype("float32") / 255.0 +x_test = x_test.reshape(-1, 28, 28, 1).astype("float32") / 255.0 + +model = keras.Sequential( + [ + layers.Input(shape=(28, 28, 1)), + layers.Conv2D(64, (3, 3), padding="same"), + layers.ReLU(), + layers.Conv2D(128, (3, 3), padding="same"), + layers.ReLU(), + layers.Flatten(), + layers.Dense(10), + ], + name="model", +) + + +class CustomFit(keras.Model): + def __init__(self, model): + super(CustomFit, self).__init__() + self.model = model + + def compile(self, optimizer, loss): + super(CustomFit, self).compile() + self.optimizer = optimizer + self.loss = loss + + def train_step(self, data): + x, y = data + + with tf.GradientTape() as tape: + # Caclulate predictions + y_pred = self.model(x, training=True) + + # Loss + loss = self.loss(y, y_pred) + + # Gradients + training_vars = self.trainable_variables + gradients = tape.gradient(loss, training_vars) + + # Step with optimizer + self.optimizer.apply_gradients(zip(gradients, training_vars)) + acc_metric.update_state(y, y_pred) + + return {"loss": loss, "accuracy": acc_metric.result()} + + def test_step(self, data): + # Unpack the data + x, y = data + + # Compute predictions + y_pred = self.model(x, training=False) + + # Updates the metrics tracking the loss + loss = self.loss(y, y_pred) + + # Update the metrics. + acc_metric.update_state(y, y_pred) + return {"loss": loss, "accuracy": acc_metric.result()} + + +acc_metric = keras.metrics.SparseCategoricalAccuracy(name="accuracy") + +training = CustomFit(model) +training.compile( + optimizer=keras.optimizers.Adam(learning_rate=3e-4), + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), +) + +training.fit(x_train, y_train, batch_size=64, epochs=2) +training.evaluate(x_test, y_test, batch_size=64) diff --git a/ML/TensorFlow/Basics/tutorial16-customloops.py b/ML/TensorFlow/Basics/tutorial16-customloops.py new file mode 100644 index 0000000..b228bcc --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial16-customloops.py @@ -0,0 +1,80 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import mnist +import tensorflow_datasets as tfds + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "mnist", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, + with_info=True, +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 128 + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(128) +ds_test = ds_train.prefetch(AUTOTUNE) + +model = keras.Sequential( + [ + keras.Input((28, 28, 1)), + layers.Conv2D(32, 3, activation="relu"), + layers.Flatten(), + layers.Dense(10, activation="softmax"), + ] +) + +num_epochs = 5 +optimizer = keras.optimizers.Adam() +loss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True) +acc_metric = keras.metrics.SparseCategoricalAccuracy() + +# Training Loop +for epoch in range(num_epochs): + print(f"\nStart of Training Epoch {epoch}") + for batch_idx, (x_batch, y_batch) in enumerate(ds_train): + with tf.GradientTape() as tape: + y_pred = model(x_batch, training=True) + loss = loss_fn(y_batch, y_pred) + + gradients = tape.gradient(loss, model.trainable_weights) + optimizer.apply_gradients(zip(gradients, model.trainable_weights)) + acc_metric.update_state(y_batch, y_pred) + + train_acc = acc_metric.result() + print(f"Accuracy over epoch {train_acc}") + acc_metric.reset_states() + +# Test Loop +for batch_idx, (x_batch, y_batch) in enumerate(ds_test): + y_pred = model(x_batch, training=True) + acc_metric.update_state(y_batch, y_pred) + +train_acc = acc_metric.result() +print(f"Accuracy over Test Set: {train_acc}") +acc_metric.reset_states() diff --git a/ML/TensorFlow/Basics/tutorial17-tensorboard/1_tb_callback.py b/ML/TensorFlow/Basics/tutorial17-tensorboard/1_tb_callback.py new file mode 100644 index 0000000..45c29d0 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial17-tensorboard/1_tb_callback.py @@ -0,0 +1,107 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import io +import tensorflow as tf +import matplotlib.pyplot as plt +import numpy as np +import tensorflow_datasets as tfds + +from tensorflow import keras +from tensorflow.keras import layers + +# Make sure we don't get any GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "cifar10", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, + with_info=True, +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +def augment(image, label): + if tf.random.uniform((), minval=0, maxval=1) < 0.1: + image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3]) + + image = tf.image.random_brightness(image, max_delta=0.1) + image = tf.image.random_flip_left_right(image) + + return image, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 32 + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.map(augment) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(BATCH_SIZE) +ds_test = ds_train.prefetch(AUTOTUNE) + +class_names = [ + "Airplane", + "Autmobile", + "Bird", + "Cat", + "Deer", + "Dog", + "Frog", + "Horse", + "Ship", + "Truck", +] + + +def get_model(): + model = keras.Sequential( + [ + layers.Input((32, 32, 3)), + layers.Conv2D(8, 3, padding="same", activation="relu"), + layers.Conv2D(16, 3, padding="same", activation="relu"), + layers.MaxPooling2D((2, 2)), + layers.Flatten(), + layers.Dense(64, activation="relu"), + layers.Dropout(0.1), + layers.Dense(10), + ] + ) + + return model + + +model = get_model() + +model.compile( + optimizer=keras.optimizers.Adam(lr=0.001), + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + metrics=["accuracy"], +) + +tensorboard_callback = keras.callbacks.TensorBoard( + log_dir="tb_callback_dir", histogram_freq=1, +) + +model.fit( + ds_train, + epochs=5, + validation_data=ds_test, + callbacks=[tensorboard_callback], + verbose=2, +) diff --git a/ML/TensorFlow/Basics/tutorial17-tensorboard/2_tb_scalars.py b/ML/TensorFlow/Basics/tutorial17-tensorboard/2_tb_scalars.py new file mode 100644 index 0000000..436378e --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial17-tensorboard/2_tb_scalars.py @@ -0,0 +1,144 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import io +import tensorflow as tf +import matplotlib.pyplot as plt +import numpy as np +import tensorflow_datasets as tfds + +from tensorflow import keras +from tensorflow.keras import layers + +# Make sure we don't get any GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "cifar10", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, + with_info=True, +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 32 + + +def augment(image, label): + if tf.random.uniform((), minval=0, maxval=1) < 0.1: + image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3]) + + image = tf.image.random_brightness(image, max_delta=0.1) + image = tf.image.random_flip_left_right(image) + + return image, label + + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.map(augment) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(BATCH_SIZE) +ds_test = ds_train.prefetch(AUTOTUNE) + +class_names = [ + "Airplane", + "Autmobile", + "Bird", + "Cat", + "Deer", + "Dog", + "Frog", + "Horse", + "Ship", + "Truck", +] + + +def get_model(): + model = keras.Sequential( + [ + layers.Input((32, 32, 3)), + layers.Conv2D(8, 3, padding="same", activation="relu"), + layers.Conv2D(16, 3, padding="same", activation="relu"), + layers.MaxPooling2D((2, 2)), + layers.Flatten(), + layers.Dense(64, activation="relu"), + layers.Dropout(0.1), + layers.Dense(10), + ] + ) + + return model + + +model = get_model() +num_epochs = 1 +loss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True) +optimizer = keras.optimizers.Adam(lr=0.001) +acc_metric = keras.metrics.SparseCategoricalAccuracy() +train_writer = tf.summary.create_file_writer("logs/train/") +test_writer = tf.summary.create_file_writer("logs/test/") +train_step = test_step = 0 + + +for lr in [1e-1, 1e-2, 1e-3, 1e-4, 1e-5]: + train_step = test_step = 0 + train_writer = tf.summary.create_file_writer("logs/train/" + str(lr)) + test_writer = tf.summary.create_file_writer("logs/test/" + str(lr)) + model = get_model() + optimizer = keras.optimizers.Adam(lr=lr) + + for epoch in range(num_epochs): + # Iterate through training set + for batch_idx, (x, y) in enumerate(ds_train): + with tf.GradientTape() as tape: + y_pred = model(x, training=True) + loss = loss_fn(y, y_pred) + + gradients = tape.gradient(loss, model.trainable_weights) + optimizer.apply_gradients(zip(gradients, model.trainable_weights)) + acc_metric.update_state(y, y_pred) + + with train_writer.as_default(): + tf.summary.scalar("Loss", loss, step=train_step) + tf.summary.scalar( + "Accuracy", acc_metric.result(), step=train_step, + ) + train_step += 1 + + # Reset accuracy in between epochs (and for testing and test) + acc_metric.reset_states() + + # Iterate through test set + for batch_idx, (x, y) in enumerate(ds_test): + y_pred = model(x, training=False) + loss = loss_fn(y, y_pred) + acc_metric.update_state(y, y_pred) + + with test_writer.as_default(): + tf.summary.scalar("Loss", loss, step=test_step) + tf.summary.scalar( + "Accuracy", acc_metric.result(), step=test_step, + ) + test_step += 1 + + acc_metric.reset_states() + + # Reset accuracy in between epochs (and for testing and test) + acc_metric.reset_states() diff --git a/ML/TensorFlow/Basics/tutorial17-tensorboard/3_tb_images.py b/ML/TensorFlow/Basics/tutorial17-tensorboard/3_tb_images.py new file mode 100644 index 0000000..9913273 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial17-tensorboard/3_tb_images.py @@ -0,0 +1,112 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import io +import tensorflow as tf +import matplotlib.pyplot as plt +import numpy as np +import tensorflow_datasets as tfds + +from tensorflow import keras +from tensorflow.keras import layers + +from utils import plot_to_image, image_grid + +# Make sure we don't get any GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "cifar10", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, + with_info=True, +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 32 + + +def augment(image, label): + if tf.random.uniform((), minval=0, maxval=1) < 0.1: + image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3]) + + image = tf.image.random_brightness(image, max_delta=0.1) + image = tf.image.random_flip_left_right(image) + + # matplotlib wants [0,1] values + image = tf.clip_by_value(image, clip_value_min=0, clip_value_max=1) + + return image, label + + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.map(augment) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(BATCH_SIZE) +ds_test = ds_train.prefetch(AUTOTUNE) + +class_names = [ + "Airplane", + "Autmobile", + "Bird", + "Cat", + "Deer", + "Dog", + "Frog", + "Horse", + "Ship", + "Truck", +] + + +def get_model(): + model = keras.Sequential( + [ + layers.Input((32, 32, 3)), + layers.Conv2D(8, 3, padding="same", activation="relu"), + layers.Conv2D(16, 3, padding="same", activation="relu"), + layers.MaxPooling2D((2, 2)), + layers.Flatten(), + layers.Dense(64, activation="relu"), + layers.Dropout(0.1), + layers.Dense(10), + ] + ) + + return model + + +model = get_model() +num_epochs = 1 +loss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True) +optimizer = keras.optimizers.Adam(lr=0.001) +acc_metric = keras.metrics.SparseCategoricalAccuracy() +writer = tf.summary.create_file_writer("logs/train/") +step = 0 + + +for epoch in range(num_epochs): + for batch_idx, (x, y) in enumerate(ds_train): + figure = image_grid(x, y, class_names) + + with writer.as_default(): + tf.summary.image( + "Visualize Images", plot_to_image(figure), step=step, + ) + step += 1 diff --git a/ML/TensorFlow/Basics/tutorial17-tensorboard/4_tb_confusion.py b/ML/TensorFlow/Basics/tutorial17-tensorboard/4_tb_confusion.py new file mode 100644 index 0000000..ca8c544 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial17-tensorboard/4_tb_confusion.py @@ -0,0 +1,124 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import io +import tensorflow as tf +import matplotlib.pyplot as plt +import numpy as np +import tensorflow_datasets as tfds + +from tensorflow import keras +from tensorflow.keras import layers + +from utils import get_confusion_matrix, plot_confusion_matrix + +# Make sure we don't get any GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "cifar10", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, + with_info=True, +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 32 + + +def augment(image, label): + if tf.random.uniform((), minval=0, maxval=1) < 0.1: + image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3]) + + image = tf.image.random_brightness(image, max_delta=0.1) + image = tf.image.random_flip_left_right(image) + + return image, label + + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.map(augment) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(BATCH_SIZE) +ds_test = ds_train.prefetch(AUTOTUNE) + +class_names = [ + "Airplane", + "Autmobile", + "Bird", + "Cat", + "Deer", + "Dog", + "Frog", + "Horse", + "Ship", + "Truck", +] + + +def get_model(): + model = keras.Sequential( + [ + layers.Input((32, 32, 3)), + layers.Conv2D(8, 3, padding="same", activation="relu"), + layers.Conv2D(16, 3, padding="same", activation="relu"), + layers.MaxPooling2D((2, 2)), + layers.Flatten(), + layers.Dense(64, activation="relu"), + layers.Dropout(0.1), + layers.Dense(10), + ] + ) + + return model + + +model = get_model() +num_epochs = 5 +loss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True) +optimizer = keras.optimizers.Adam(lr=0.001) +acc_metric = keras.metrics.SparseCategoricalAccuracy() +train_writer = tf.summary.create_file_writer("logs/train/") +test_writer = tf.summary.create_file_writer("logs/test/") +train_step = test_step = 0 + + +for epoch in range(num_epochs): + confusion = np.zeros((len(class_names), len(class_names))) + + # Iterate through training set + for batch_idx, (x, y) in enumerate(ds_train): + with tf.GradientTape() as tape: + y_pred = model(x, training=True) + loss = loss_fn(y, y_pred) + + gradients = tape.gradient(loss, model.trainable_weights) + optimizer.apply_gradients(zip(gradients, model.trainable_weights)) + acc_metric.update_state(y, y_pred) + confusion += get_confusion_matrix(y, y_pred, class_names) + + with train_writer.as_default(): + tf.summary.image( + "Confusion Matrix", + plot_confusion_matrix(confusion / batch_idx, class_names), + step=epoch, + ) + + # Reset accuracy in between epochs (and for testing and test) + acc_metric.reset_states() diff --git a/ML/TensorFlow/Basics/tutorial17-tensorboard/5_tb_graph.py b/ML/TensorFlow/Basics/tutorial17-tensorboard/5_tb_graph.py new file mode 100644 index 0000000..56515a1 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial17-tensorboard/5_tb_graph.py @@ -0,0 +1,35 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import io +import tensorflow as tf +import matplotlib.pyplot as plt +import numpy as np +import tensorflow_datasets as tfds + +from tensorflow import keras +from tensorflow.keras import layers + +# Make sure we don't get any GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +writer = tf.summary.create_file_writer("logs/graph_vis") + + +@tf.function +def my_func(x, y): + return tf.nn.relu(tf.matmul(x, y)) + + +x = tf.random.uniform((3, 3)) +y = tf.random.uniform((3, 3)) + +tf.summary.trace_on(graph=True, profiler=True) +out = my_func(x, y) + +with writer.as_default(): + tf.summary.trace_export( + name="function_trace", step=0, profiler_outdir="logs\\graph_vis\\" + ) diff --git a/ML/TensorFlow/Basics/tutorial17-tensorboard/6_tb_hparams.py b/ML/TensorFlow/Basics/tutorial17-tensorboard/6_tb_hparams.py new file mode 100644 index 0000000..a2696b5 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial17-tensorboard/6_tb_hparams.py @@ -0,0 +1,137 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import io +import tensorflow as tf +import matplotlib.pyplot as plt +import numpy as np +import tensorflow_datasets as tfds + +from tensorboard.plugins.hparams import api as hp +from tensorflow import keras +from tensorflow.keras import layers + +# Make sure we don't get any GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "cifar10", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, + with_info=True, +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32) / 255.0, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 32 + + +def augment(image, label): + if tf.random.uniform((), minval=0, maxval=1) < 0.1: + image = tf.tile(tf.image.rgb_to_grayscale(image), [1, 1, 3]) + + image = tf.image.random_brightness(image, max_delta=0.1) + image = tf.image.random_flip_left_right(image) + + return image, label + + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.map(augment) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(BATCH_SIZE) +ds_test = ds_train.prefetch(AUTOTUNE) + +class_names = [ + "Airplane", + "Autmobile", + "Bird", + "Cat", + "Deer", + "Dog", + "Frog", + "Horse", + "Ship", + "Truck", +] + + +def train_model_one_epoch(hparams): + units = hparams[HP_NUM_UNITS] + drop_rate = hparams[HP_DROPOUT] + learning_rate = hparams[HP_LR] + + optimizer = keras.optimizers.Adam(lr=learning_rate) + model = keras.Sequential( + [ + layers.Input((32, 32, 3)), + layers.Conv2D(8, 3, padding="same", activation="relu"), + layers.Conv2D(16, 3, padding="same", activation="relu"), + layers.MaxPooling2D((2, 2)), + layers.Flatten(), + layers.Dense(units, activation="relu"), + layers.Dropout(drop_rate), + layers.Dense(10), + ] + ) + + for batch_idx, (x, y) in enumerate(ds_train): + with tf.GradientTape() as tape: + y_pred = model(x, training=True) + loss = loss_fn(y, y_pred) + + gradients = tape.gradient(loss, model.trainable_weights) + optimizer.apply_gradients(zip(gradients, model.trainable_weights)) + acc_metric.update_state(y, y_pred) + + # write to TB + run_dir = ( + "logs/train/" + + str(units) + + "units_" + + str(drop_rate) + + "dropout_" + + str(learning_rate) + + "learning_rate" + ) + + with tf.summary.create_file_writer(run_dir).as_default(): + hp.hparams(hparams) + accuracy = acc_metric.result() + tf.summary.scalar("accuracy", accuracy, step=1) + + acc_metric.reset_states() + + +loss_fn = keras.losses.SparseCategoricalCrossentropy(from_logits=True) +optimizer = keras.optimizers.Adam(lr=0.001) +acc_metric = keras.metrics.SparseCategoricalAccuracy() +HP_NUM_UNITS = hp.HParam("num units", hp.Discrete([32, 64, 128])) +HP_DROPOUT = hp.HParam("dropout", hp.Discrete([0.1, 0.2, 0.3, 0.5])) +HP_LR = hp.HParam("learning_rate", hp.Discrete([1e-3, 1e-4, 1e-5])) + +for lr in HP_LR.domain.values: + for units in HP_NUM_UNITS.domain.values: + for rate in HP_DROPOUT.domain.values: + hparams = { + HP_LR: lr, + HP_NUM_UNITS: units, + HP_DROPOUT: rate, + } + + train_model_one_epoch(hparams) diff --git a/ML/TensorFlow/Basics/tutorial17-tensorboard/7_tb_projector.py b/ML/TensorFlow/Basics/tutorial17-tensorboard/7_tb_projector.py new file mode 100644 index 0000000..e6babea --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial17-tensorboard/7_tb_projector.py @@ -0,0 +1,69 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import io +import tensorflow as tf +import matplotlib.pyplot as plt +import numpy as np +import tensorflow_datasets as tfds + +from tensorflow import keras +from tensorflow.keras import layers + +from utils import plot_to_projector + +# Make sure we don't get any GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(ds_train, ds_test), ds_info = tfds.load( + "mnist", + split=["train", "test"], + shuffle_files=True, + as_supervised=True, + with_info=True, +) + + +def normalize_img(image, label): + """Normalizes images""" + return tf.cast(image, tf.float32), label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +BATCH_SIZE = 500 + + +def augment(image, label): + return image, label + + +# Setup for train dataset +ds_train = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_train = ds_train.cache() +ds_train = ds_train.shuffle(ds_info.splits["train"].num_examples) +ds_train = ds_train.map(augment) +ds_train = ds_train.batch(BATCH_SIZE) +ds_train = ds_train.prefetch(AUTOTUNE) + +# Setup for test Dataset +ds_test = ds_train.map(normalize_img, num_parallel_calls=AUTOTUNE) +ds_test = ds_train.batch(BATCH_SIZE) +ds_test = ds_train.prefetch(AUTOTUNE) + +class_names = [ + "Airplane", + "Autmobile", + "Bird", + "Cat", + "Deer", + "Dog", + "Frog", + "Horse", + "Ship", + "Truck", +] + +x_batch, y_batch = next(iter(ds_train)) +plot_to_projector(x_batch, x_batch, y_batch, class_names, log_dir="proj") diff --git a/ML/TensorFlow/Basics/tutorial17-tensorboard/utils.py b/ML/TensorFlow/Basics/tutorial17-tensorboard/utils.py new file mode 100644 index 0000000..6abbd97 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial17-tensorboard/utils.py @@ -0,0 +1,167 @@ +import matplotlib.pyplot as plt +import tensorflow as tf +from tensorflow import keras +import numpy as np +import io +import sklearn.metrics +from tensorboard.plugins import projector +import cv2 +import os +import shutil + +# Stolen from tensorflow official guide: +# https://www.tensorflow.org/tensorboard/image_summaries +def plot_to_image(figure): + """Converts the matplotlib plot specified by 'figure' to a PNG image and + returns it. The supplied figure is closed and inaccessible after this call.""" + + # Save the plot to a PNG in memory. + buf = io.BytesIO() + plt.savefig(buf, format="png") + + # Closing the figure prevents it from being displayed directly inside + # the notebook. + plt.close(figure) + buf.seek(0) + + # Convert PNG buffer to TF image + image = tf.image.decode_png(buf.getvalue(), channels=4) + + # Add the batch dimension + image = tf.expand_dims(image, 0) + return image + + +def image_grid(data, labels, class_names): + # Data should be in (BATCH_SIZE, H, W, C) + assert data.ndim == 4 + + figure = plt.figure(figsize=(10, 10)) + num_images = data.shape[0] + size = int(np.ceil(np.sqrt(num_images))) + + for i in range(data.shape[0]): + plt.subplot(size, size, i + 1, title=class_names[labels[i]]) + plt.xticks([]) + plt.yticks([]) + plt.grid(False) + + # if grayscale + if data.shape[3] == 1: + plt.imshow(data[i], cmap=plt.cm.binary) + + else: + plt.imshow(data[i]) + + return figure + + +def get_confusion_matrix(y_labels, logits, class_names): + preds = np.argmax(logits, axis=1) + cm = sklearn.metrics.confusion_matrix( + y_labels, preds, labels=np.arange(len(class_names)), + ) + + return cm + + +def plot_confusion_matrix(cm, class_names): + size = len(class_names) + figure = plt.figure(figsize=(size, size)) + plt.imshow(cm, interpolation="nearest", cmap=plt.cm.Blues) + plt.title("Confusion Matrix") + + indices = np.arange(len(class_names)) + plt.xticks(indices, class_names, rotation=45) + plt.yticks(indices, class_names) + + # Normalize Confusion Matrix + cm = np.around(cm.astype("float") / cm.sum(axis=1)[:, np.newaxis], decimals=3,) + + threshold = cm.max() / 2.0 + for i in range(size): + for j in range(size): + color = "white" if cm[i, j] > threshold else "black" + plt.text( + i, j, cm[i, j], horizontalalignment="center", color=color, + ) + + plt.tight_layout() + plt.xlabel("True Label") + plt.ylabel("Predicted label") + + cm_image = plot_to_image(figure) + return cm_image + + +# Stolen from: +# https://gist.github.com/AndrewBMartin/ab06f4708124ccb4cacc4b158c3cef12 +def create_sprite(data): + """ + Tile images into sprite image. + Add any necessary padding + """ + + # For B&W or greyscale images + if len(data.shape) == 3: + data = np.tile(data[..., np.newaxis], (1, 1, 1, 3)) + + n = int(np.ceil(np.sqrt(data.shape[0]))) + padding = ((0, n ** 2 - data.shape[0]), (0, 0), (0, 0), (0, 0)) + data = np.pad(data, padding, mode="constant", constant_values=0) + + # Tile images into sprite + data = data.reshape((n, n) + data.shape[1:]).transpose((0, 2, 1, 3, 4)) + # print(data.shape) => (n, image_height, n, image_width, 3) + + data = data.reshape((n * data.shape[1], n * data.shape[3]) + data.shape[4:]) + # print(data.shape) => (n * image_height, n * image_width, 3) + return data + + +def plot_to_projector( + x, + feature_vector, + y, + class_names, + log_dir="default_log_dir", + meta_file="metadata.tsv", +): + assert x.ndim == 4 # (BATCH, H, W, C) + + if os.path.isdir(log_dir): + shutil.rmtree(log_dir) + + # Create a new clean fresh folder :) + os.mkdir(log_dir) + + SPRITES_FILE = os.path.join(log_dir, "sprites.png") + sprite = create_sprite(x) + cv2.imwrite(SPRITES_FILE, sprite) + + # Generate label names + labels = [class_names[y[i]] for i in range(int(y.shape[0]))] + + with open(os.path.join(log_dir, meta_file), "w") as f: + for label in labels: + f.write("{}\n".format(label)) + + if feature_vector.ndim != 2: + print( + "NOTE: Feature vector is not of form (BATCH, FEATURES)" + " reshaping to try and get it to this form!" + ) + feature_vector = tf.reshape(feature_vector, [feature_vector.shape[0], -1]) + + feature_vector = tf.Variable(feature_vector) + checkpoint = tf.train.Checkpoint(embedding=feature_vector) + checkpoint.save(os.path.join(log_dir, "embeddings.ckpt")) + + # Set up config + config = projector.ProjectorConfig() + embedding = config.embeddings.add() + embedding.tensor_name = "embedding/.ATTRIBUTES/VARIABLE_VALUE" + embedding.metadata_path = meta_file + embedding.sprite.image_path = "sprites.png" + embedding.sprite.single_image_dim.extend((x.shape[1], x.shape[2])) + projector.visualize_embeddings(log_dir, config) diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/1_in_subfolders.py b/ML/TensorFlow/Basics/tutorial18-customdata-images/1_in_subfolders.py new file mode 100644 index 0000000..42e67c3 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial18-customdata-images/1_in_subfolders.py @@ -0,0 +1,142 @@ +# Imports needed +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.preprocessing.image import ImageDataGenerator + +img_height = 28 +img_width = 28 +batch_size = 2 + +model = keras.Sequential( + [ + layers.Input((28, 28, 1)), + layers.Conv2D(16, 3, padding="same"), + layers.Conv2D(32, 3, padding="same"), + layers.MaxPooling2D(), + layers.Flatten(), + layers.Dense(10), + ] +) + +# METHOD 1 +# ==================================================== # +# Using dataset_from_directory # +# ==================================================== # +ds_train = tf.keras.preprocessing.image_dataset_from_directory( + "data/mnist_subfolders/", + labels="inferred", + label_mode="int", # categorical, binary + # class_names=['0', '1', '2', '3', ...] + color_mode="grayscale", + batch_size=batch_size, + image_size=(img_height, img_width), # reshape if not in this size + shuffle=True, + seed=123, + validation_split=0.1, + subset="training", +) + +ds_validation = tf.keras.preprocessing.image_dataset_from_directory( + "data/mnist_subfolders/", + labels="inferred", + label_mode="int", # categorical, binary + # class_names=['0', '1', '2', '3', ...] + color_mode="grayscale", + batch_size=batch_size, + image_size=(img_height, img_width), # reshape if not in this size + shuffle=True, + seed=123, + validation_split=0.1, + subset="validation", +) + + +def augment(x, y): + image = tf.image.random_brightness(x, max_delta=0.05) + return image, y + + +ds_train = ds_train.map(augment) + +# Custom Loops +for epochs in range(10): + for x, y in ds_train: + # train here + pass + + +model.compile( + optimizer=keras.optimizers.Adam(), + loss=[keras.losses.SparseCategoricalCrossentropy(from_logits=True),], + metrics=["accuracy"], +) + +model.fit(ds_train, epochs=10, verbose=2) + + +# METHOD 2 +# ================================================================== # +# ImageDataGenerator and flow_from_directory # +# ================================================================== # + +datagen = ImageDataGenerator( + rescale=1.0 / 255, + rotation_range=5, + zoom_range=(0.95, 0.95), + horizontal_flip=False, + vertical_flip=False, + data_format="channels_last", + validation_split=0.0, + dtype=tf.float32, +) + +train_generator = datagen.flow_from_directory( + "data/mnist_subfolders/", + target_size=(img_height, img_width), + batch_size=batch_size, + color_mode="grayscale", + class_mode="sparse", + shuffle=True, + subset="training", + seed=123, +) + + +def training(): + pass + + +# Custom Loops +for epoch in range(10): + num_batches = 0 + + for x, y in ds_train: + num_batches += 1 + + # do training + training() + + if num_batches == 25: # len(train_dataset)/batch_size + break + +# Redo model.compile to reset the optimizer states +model.compile( + optimizer=keras.optimizers.Adam(), + loss=[keras.losses.SparseCategoricalCrossentropy(from_logits=True),], + metrics=["accuracy"], +) + +# using model.fit (note steps_per_epoch) +model.fit( + train_generator, + epochs=10, + steps_per_epoch=25, + verbose=2, + # if we had a validation generator: + # validation_data=validation_generator, + # valiation_steps=len(validation_set)/batch_size), +) diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/2_csv_file.py b/ML/TensorFlow/Basics/tutorial18-customdata-images/2_csv_file.py new file mode 100644 index 0000000..a024e60 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial18-customdata-images/2_csv_file.py @@ -0,0 +1,52 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +import pandas as pd +from tensorflow import keras +from tensorflow.keras import layers + +directory = "data/mnist_images_csv/" +df = pd.read_csv(directory + "train.csv") + +file_paths = df["file_name"].values +labels = df["label"].values +ds_train = tf.data.Dataset.from_tensor_slices((file_paths, labels)) + + +def read_image(image_file, label): + image = tf.io.read_file(directory + image_file) + image = tf.image.decode_image(image, channels=1, dtype=tf.float32) + return image, label + + +def augment(image, label): + # data augmentation here + return image, label + + +ds_train = ds_train.map(read_image).map(augment).batch(2) + +for epoch in range(10): + for x, y in ds_train: + # train here + pass + +model = keras.Sequential( + [ + layers.Input((28, 28, 1)), + layers.Conv2D(16, 3, padding="same"), + layers.Conv2D(32, 3, padding="same"), + layers.MaxPooling2D(), + layers.Flatten(), + layers.Dense(10), + ] +) + +model.compile( + optimizer=keras.optimizers.Adam(), + loss=[keras.losses.SparseCategoricalCrossentropy(from_logits=True),], + metrics=["accuracy"], +) + +model.fit(ds_train, epochs=10, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/3_single_folder.py b/ML/TensorFlow/Basics/tutorial18-customdata-images/3_single_folder.py new file mode 100644 index 0000000..8fd75e1 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial18-customdata-images/3_single_folder.py @@ -0,0 +1,46 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +import pandas as pd +from tensorflow import keras +from tensorflow.keras import layers +import pathlib # pathlib is in standard library + +batch_size = 2 +img_height = 28 +img_width = 28 + +directory = "data/mnist_images_only/" +ds_train = tf.data.Dataset.list_files(str(pathlib.Path(directory + "*.jpg"))) + + +def process_path(file_path): + image = tf.io.read_file(file_path) + image = tf.image.decode_jpeg(image, channels=1) + label = tf.strings.split(file_path, "\\") + label = tf.strings.substr(label, pos=0, len=1)[2] + label = tf.strings.to_number(label, out_type=tf.int64) + return image, label + + +ds_train = ds_train.map(process_path).batch(batch_size) + +model = keras.Sequential( + [ + layers.Input((28, 28, 1)), + layers.Conv2D(16, 3, padding="same"), + layers.Conv2D(32, 3, padding="same"), + layers.MaxPooling2D(), + layers.Flatten(), + layers.Dense(10), + ] +) + +model.compile( + optimizer=keras.optimizers.Adam(), + loss=[keras.losses.SparseCategoricalCrossentropy(from_logits=True),], + metrics=["accuracy"], +) + +model.fit(ds_train, epochs=10, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9cb944b6f6af9aab3be72ad909941b8dfdadb93e GIT binary patch literal 602 zcmV-g0;T=`*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kQG=|8i-iEniAbANwjVJjx( zw>go)=K-<6?a-dS*sd4GUIW)W4}LB6TXE#bPm^^YG0XHlkFn;tn)FYCS}4{&CfJ!G z^B}X0?qml93=OJCJ$`0hoYMSA@&5pdFMM69>C$R<5ZYN^$go2Z3FYi|3Ua-`@0#xP zjc#9w9|CpzOgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k3Mde!}sPpoS2X_7e4kdXQA zzRiYE573|R;CyrN{{UC;9;BAqhRLnv8G`B@>~ZPOM)v-7%2%a)3(#$K&xsK=-^`kQ zyWXM@2zORhT>T5~`lzd)7QBD1x5RtPeLGXVu(#7lw~Zj3kTDo6!~=tq`T<^z;C~WX zd}i>5p`dt@(LUR1s#;j^Gmyb$Ky!v1=eIuiubM7klGf^Lc}66O$~ew&LBX!$;SY=K z{2SwxywnCP?x1T)WzYJM%&Z?6gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k`k!cpovMEc&ZsjiWuMIeA&v?f-XQ~VL2 zAh81^obgTZr-N_26|5zd)Un({JYs8WnD|*^J@9%TQQP&dZj=Jd0P1)Z-uzRQbp2CK z@SUj(Wue+f7R5X??xEy!>PaAH+O2s0D6Bpld_L3jy5sC~-Lq}S%PT7Z_;NoA^Llh` zvPEoXX$KYUULf#YmyCR8Ka8cgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kdmz5KV0-jPZe7XT*<)QFxF+p=dDui^DcJTX+?A`J{Am RJ9ohM$>*n@(M1$j|Jgj*;#U9w literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/0_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cddac984e053ef0fe3f15c3e15c90d4254fc8830 GIT binary patch literal 634 zcmV-=0)_qm*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kTL08*3P-NH!62c?f~R3 zx$BXP*CnoaJH%cZjyZLmBI?d5I9VMsr21|d8TRW~b=mwa@Tl>3k1VXEUDl9h>gWEs zp&WiJRDLzgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5ku(S#gMuWLfNZft904tEE!ylV8ahFuy!FM^pT%M=ey?^4Qu=pdxdS`(2 iD~Nv0B!6hsW{t<2JelA)9S1@I^d6k}?G#Z(75~{H=e@cB literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02e19fa83f989e5a55bd3181ccd0c01187b21962 GIT binary patch literal 427 zcmex=^(PF6}rMnOeST|r4lSw=>~TvNxu(8R<Jq?U}9uuW@2GxWo2Ojs;&jfGq4D<3Mm>o zvIz$!vMUve7&T5@$f4}C@t|nX#SbdRNkvVZTw>x9l2WQ_>Kd9_CZ=ZQ7M51dF0O9w z9-dyoA)#U65s^{JDXD4c8JStdC8cHM6_r)ZEv;?s9i3g1CQq3GGAU*RJ2VdF$b$$4{OPfBE|D z`;VW${@-HY00o;p!_R-)|L8uU7`O9Bkx<6GT;)L??6NY!*t>MyGAM}Io z^7@{yh9X%nZn-=P({1YB$)SAx8JE4(r&}896Mry@Zh94`wr^IU%!JIGg^>-?5>ID5 Tznt{>LfW3HE{#Q9|8D{SB+{L$ literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65c54f465de9ace66f739c35ab7fd79812c0dd97 GIT binary patch literal 491 zcmVgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kAWlS4obPzEFwwzDZ;ZIR^oqbM^PHGop%? h8>@?CnIN86mUQyv2<1eHkao5@jDT=^fl*Ok|JjD(yQ2UA literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb724d574b629e0f5bf5078c156fa4218861085a GIT binary patch literal 475 zcmV<10VMwa*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kct9uvgS#G6ZbhDn}(m3I4uS3iYu6j4(Brhl^io6eK$`~1%< RaoM{V-Hw^Z8K|hQ|Jm!5wa5Sf literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/1_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1fbf8b71d5675b4d75a000c486193e507e1d07a GIT binary patch literal 460 zcmV;-0W<#p*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k1EAbm56#G;BQum9N^ Cd$G;{ literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c276f1b04364a755dbc3ee4743a581a78ae889d GIT binary patch literal 604 zcmV-i0;B!^*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kbzcW+{{Y#V#3>!Yj7qy4GO`jtAdhf=D#fX7t|hd( zislC?G%h4Y9aVwIKb?I`@XyB{DENV>HlaPWrIv?j8H!O6-1FRRQ{RxF9P#Wjd9NGz z+u|z^5qv_DO*zbwSwJk_OmNPQ<%;@@wlm)zmFF~9*E%MHWvcuai%0OK-MzGT)>|58 z9%szs_q(~y0Q``Rhekx706f qBY5qu=Y=2dta23%(DDK2p!|hLH1k|IdF7H;0~?)-9DX$&fB)Iy$Me$w literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d81b57c8170cb9eec04a3256802e06fff5d3a95 GIT binary patch literal 592 zcmV-W0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kDqU}ElxWz zf8xDj$HR6_v?JWIyOv>)xZD6f#OH&>a=tn6MfZVqnCveuAh}86^Prj%aOsjVLFjn* z`qwc|jz@|`k~U;?A(fQif;tdux$q{5aq$PnzJ9%Xbv>1=M&|zNSxXTbjDT45$^A1_ zz9e|V{u56Z&!|EjEFw__oNO_+HTLb3lla#oQrf}xo48;y#}Jj(Jjq)KnK;WHz;~~u zwT}boT7SbEFAdvxt4`8%xk^u{-^xRqr(gu6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kDD(llVd(zyiDznTmfA)e+qnc zDoE?$tH2`}JGQAmKu%B4X1T3TNz^o3*0a>?r?a_HlN|AtIQ1FoI6T!l+0Z;$uJ~E5 z4vDEtWNtuNe6SASGmfD2$^7fC@Kwi+ejxas+f8p1YO8GyXSuj*x5P1yr>|4M9_Q0F zL*loJ?L1lI6E%kBva*C)Lo=MT!Abea>T*whe>&mluYd5bhwra`2iw~CPVUCq<5HE| zSH7BK6U3_As32z>KnJ!9e|orGPr}{_@RhWSs(6XD%~&tXXQkjmt;qT1=YV?*A8u>T JsG^E1|Jf!L>hS;o literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07712098b1ef64f7eae3be028e287f62353fc9fe GIT binary patch literal 564 zcmV-40?YmX*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kpF#zDSBAWA@gK(*Dkkv#wzZ)# zRJnoeQ6h1W4jsrFyY)Cdg=cur;C`p4>sR-BbAyx7!|M%~x|oB(*wQQtL{Uq#2`&j=q3Xj+r&0WEZEbY;+C zUoJ^**BeV<@~TEhY@DA;@Xr+Zj`PKyBfZwILL}Er2}u6xfC8u=KmgBr$D)cTum9OO C-`ZyY literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/2_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d8936555157b561161207fe4e2a9402effface9 GIT binary patch literal 541 zcmV+&0^gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k z?M@3=hUq1e)zwsboQ|ILgGE`e)Gsuv*za`vsjY6K&dH#1j=2OJ5y;3Sel_kt40TTv zMd7`B#r`GLFYh#1tfY?K-u7c6T*==G$JA~2EJtHr49ZoCupxoL1ac`TuUoYE{{XG& zx?QH7W1(o#Tid{~6fwCBM^XS_06v`e=AgUy>8jtOCFh0wGjgnVGRgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kM{M?0yw^<5090P(F1X#OrDGG(Kc<%N*Wr?!io)llI2bb!~+VX@rFBy9S=FLKCY9(mLpb+SJLg)7S!&oR9UQnb0aK@ z%!p4%Dh@lG5IW%CTw70RaQ62w$qdn*uN;b1l=={QS8H+honPT=Uh7fqn@_lk4KD6c zhq#F3JRtRTPnCh~$nT2bX+bK%l#oHlBeispc>e&z@Iw@5QWJ=Q5xw2KR}P;?ky(e} gYb#dQHC=k>Tgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k9YPB65ED5c0Wqtd{^OJPrSCRGlP8)YOyNDR5b#zE=_ zO2neOe}2TQNjvZlOb<@A+Wc9vwei1(p!kocJ{+4gfW5?t-hzyUu&oMR_}*1c-S z;ZK14J*=~Mo5r>`P{tX>kdb0$QT^f=w|;{J_O46fAH<{G+h-gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kxbeD=C?kzS5zF=g8^&KQB?9de@QBUZ*F*`<-*c z+6JxQ7{;Q;0B_}6#EwX=h6z%v!*1R&gPwEK2D<+M8OL$q-+_yw_}cYv_3MemmPpcx zB!dKC?k6W|?gWhe{BkSj+A8Lst7=+Al1ZlO7j{n~Y<9Mpqb$CJsTm&C1;xzwa{0G2 Q$uyY8`5dvw)YMh~*@s08@c;k- literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b7ea9390387006d0a18da0c20ac8215d75cd510 GIT binary patch literal 609 zcmV-n0-pW<*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k76a>rG+RB5c|Ns(N9q^ZsgdL5s`yPqCC&y6O%(zFc{`sztsO>kJp^Bwre z1E?edM^Rlj#7z@U@h8K*IlL*YTWWB4THK46(Thk?g5~m00Bk27na505gV#^szXv~! zF7K>uucCtf8)G%J4hQ;61NQ+W0oSiJ(p&r>)osj);!S%<(5;~$xSs7~ahza;2OQ_Q v6zyNdo*VGLgl@bo;J-5NYxu-^p06shdBA7oMLh>3eGhVTUS&lTQD6Vr?m6=` literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/3_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dabca3514f9015aac6b88876d6b2039a2b7143eb GIT binary patch literal 591 zcmV-V0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kFjYpp*207|%%%S)>%i!SbaGO6r&1GREgSEc+s)V>?(x_eFHJ6Yw{ zLmiKE0h-xHcp((z`{(ed`1W0U#u_{Lg5O!R)pQ*`K^cP1Cbt%3-~!OMI61&e#qe`fvQa;ZHJu|swdzg9%E=-B0CiO1 zkK<5lo-ENcZwlOaOToWrmeTQq>Kc{O?R%0jg+=}qSFgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k_mp%%G zqPfy+t!>~7BIKm%1DRF2hdYQlCpkHgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k&M7ePc(jFU(&fcE3y9ogvUv^)AZHVJTV@ls90L9qE9vJtZy2YDY`TOgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k{`0X|719EUu?`B02esAO!L0&r!!} zcZa+^f8t$B>{cqEtZgi_NE^$A6lAlo2Wah|QY$K~SlHa^SMXU{MDpBD;Uh#+#FOkf zuc3Th;O_?LUIp;~0Ehfb;#sujvR0JEZS%D9Ki+MaCjjIF$5U9>8c%}$ANT`O)NHkz z`R_bKWYFpC(D`$DXP$%%As}VA;PGA;THYDgr|`#!?6s?CW14G6E~zGVoPs&Q_pR>^ zY1)Ux&m6qEz5Y~&y1u!UwuFUwY+zw{;B*3__>ba9d`04y8hgL?MS?A*gl&v0YB7d@IO-2^P*Gq1+31`2UjP6A literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/4_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/4_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f4adb737cfeea14b19fee67f3822cee1e9fb568 GIT binary patch literal 593 zcmV-X0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k1+!VGhP$>eeCShZ_S)9$rxPTNkhh|6_zD#a2G?8gJ?^{;91 zf5Wd7TX=rM!X6mW&CZ)|w&wcrCWtlN$rvPpz=d8w2l{5Q{we5i=pG%>v^3VV@fMW; zU$CTw=bGitWs!gfV)Mr1*nl~&B&(WMt9_zsQ0h8u%iCTgN&2Z?qGhRxQqMijZaazzq^phadRt6BcANXB>uHtik{l? f>d(&mEzHn)(U@iOq$}n|daGlqoN^Bp1r`6gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kS=F`S9Ub-m02gUGT4Vht|&YwL^oRE!c4QB!x+Hh(JfsqX>pBUJk=MyHXYs3g`g+QPRR?W4=cS1iEeAdp8)W3_m_ m6rhkn2LyB?rMkPhzq*p@^5R>IiB9PynajJMQcotKum9POgY%{U literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2575e8d5076f0daf7a4555297afdf7e38a7174e4 GIT binary patch literal 514 zcmV+d0{#8}*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k81=v8OTsuPyp6X%@k`)V_00#g7H~?`{Xm_@nezj|Js9FolHDV`&jJgm*V?7QILF{mAu!;T| zXx9mU6q@d_EM!R)oROpv76%|ZWSo5kavJ`zH;6U+{a$#|Id3OvnG>Sq^c9^&6j5LQ E*$jTYr~m)} literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edb321b6cb10db7fdd37d88b0182771285121ad5 GIT binary patch literal 575 zcmV-F0>J(M*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kca_zz$4ddn`EYNFO7i7xIOM+%=!$EoCS zGt^e@ukdTdI#q++#QJukvBqSQI}4vOL{Zn}AQO-Fb6$Hu86amK_4GfCydN`ocR|qN z@g|j{cskzFCX(i90-MRsOFE$Y{{X_+ByvgSyu-%63AykE#+Rt++Rxi;Z{zc9@9n{f zvH;IQal--#Jm$E5rzVQ;{4MaS#J(cDiLdSD({zaTyw|r!Vyt8Xl+WJa@s2%6r1+=e z%N>7Mw9>Rt28E)-_FEze`M>}c=eNoL_8IS74Hczx;w^6W!7MJdjY4}kz*M)E<=Qm^ NpbAa^6`MtW|JhW7?R@|M literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46f18a088ccd0135d2edee695eea9a3799b50ce6 GIT binary patch literal 571 zcmV-B0>u6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kA1C#Au`SCB|7O&&K5S?bnTeMibgpL>|R@$I-!!CN~JuA&M zzkyyT(e#P+IPP@o=pc!ukXuOQu%jmcsLy}Oyuyn2{{RGOehKmK!)Uxc_L#KYXnAXJ z-!GjjAthONedWUu$0MhuU5)%7@OQ$#AcDhP{?gVi^KNa-idke(Km`Zg192pur?q_N JMHEqA|JlR|;t2o% literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d8b2e0c25c16eb3f74e81ab3b78865d04dc34f9 GIT binary patch literal 579 zcmV-J0=)hI*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k?i$}23E)Ym8?xZQS z9Aho(*Ej?MI-2KvYw*8X@Fj({?xT07TtjgwiGIl|F%69J8CTz?Yl*F23_Yw~E79b> zlghMP*ji}^@St(H{#mbf_>JH_D_8NA&xkx#;`==_O?c5QU_-iQjZk#S{_$hLKdo@S zC-`xqL*SdA6L>?!a%#GDoT`^m%9~2DAY^bqzP-90wdK@TtI6PR5BTcV-&F9=i1f`i z<*m^s(y!(6%ucEU6+Dup!;JaF>mna;h&5xwf_JR>9e+@YqA?#SxXT%)(eh= Rl1ldIq@F9lXrhWM|Jivk?~nih literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/5_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22893859a2e582d8a928a7b7a2bc093373b6578c GIT binary patch literal 617 zcmV-v0+#*%*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k3ek_MLZXA3IF&GH%CQWOG#OuJ~i4>ALsCT_a4@qY_xm(s_tnplz``D99lF;49I* zf8+lEh&~qajpen4vsmcX`Hs>tWEvNYDEY%}=dO4-9S=&uwD|u3;>fI;+WOZ^)K!!# z8<+^(F@un#1D~aN#1vz*Dt)oY^7sE{>UWasH-wCWhGb~f({5Z?Y|BF zBz!~G^(##sAcI!4k^H%5yomgW0WFyaQ-jgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kw8liZw&J$^?@iXHZ8h zIvx)>&rk+1O?iD4-25W&^7xP9Hk|~>uWxKk+{(+4%9y}ERw_BIOPw>s9~wR(>Nhq+ zWu!6$^JYIKv>@R}xjdW>r!}_+!e0gIchcy3PmLwJ*LISN6dU0}qbNyBb=hNazy6=(YlQGKK1N+ zXT@KJkoZdTPC7QBVGZlE-Pl_e`Pr}=YlmNyfB_j?jEr;7DXRQshQmvjN$@U#Z=l;r p!(4z2&Bimp;kt559xKWuk>-))k=f*OS(%PY6V#LIO`?h`|Jm59^MC*V literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1fbc4b571e74dd42ed099f33b7193d1c42d7243 GIT binary patch literal 589 zcmV-T0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k*F{MPXfx7T*-lhrkb{$v)0}XXe@4;ob?sW;O|Xm1xSg;w!l>@ddng=} z*b4OR4%**Bg5uA?Fh{CuaeTM_Be)8-c0-)`EZi^q=aY^);A2VPOC3(zTfAQx!>Q_4 zHtlsgM+3Aj+;DCjfs%M0wdZx!cpt=CZh>{F$Ernn_H9DRtr~k0qIg3xl2>;aAYl6% z?zOFR;hnF8blVL&`&HDSx7yNaC|cA{A<1bbe=iKffx~f*J!^v3yls7~ST2=mZEd9J b$UznsK&m+(#UUpy-sJY_T*VYoMSuUgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k9Bt1z>&H?#t~!ePCf~qX-LJtLO*g|3K>C)j zsd1=F=B#eq^%x*^#y5J`&-#X+d8J>?V}ETWwbU)PNTgg9Kj*zxqP?$N@n?nn zQKa}^P_^+~o*&mVXjU;4mXk=i8+)RW{6C1`ist?@_@6-WUy1DRv?-S3ZKB6>I>ONj V9241qCj$c~*mkctqKYW5|Je)_)9C;J literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/6_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..401c1a7c3007fb6149117f1522746c8bc9a016da GIT binary patch literal 563 zcmV-30?hsY*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k(wI(5X>lSF>gBoOTrGVS~A_g5@Su_vh<*O^{?8S(9o zpC#k6K(H;@_?V`!yXtb{q{kqcf3vmg%wgtT03higv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kFc*9Ke{KNXmyE#EyRouU!X%udMXX6x-ilT(z`NM>8ymyCP35f?%&8 z?kmq~*wK7*hCoSMDypTyTX*Nvsq8b&snK5b$J zvRTGAx%VV~g1qL6?|uzi!8gS1HfydRv`KDV&)qS|#tEvk);D7BK32Y@YsU>5R8;anJHyut#wPaCW|Jg`-+V=ne literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..302bd2e01bd76b8578f17b19a736beaf78a30f16 GIT binary patch literal 523 zcmV+m0`&d=*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kTmXkiACZR5mYAt8Fk@uNyGFnm?@>DU}Gudm1qPxF`v8Ii0s`$$4MTK%%Sm>o;OG`OqnRX@_-SL)l N+<>4DVOg|S|Ji{+%!2>` literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..044cc68e64f60e7360579679eb9871ea0d5b9a69 GIT binary patch literal 621 zcmV-z0+Rjz*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k#PSqSU2k%NzFrCrCvZyIUd z2fNj^3#%D!Z)LME*)(8&?ay+=f}^J(6I)i_AN+3wGse%S&SW`9mfY@ydM+4e)8^cG z>s=Sd-Foulz`hjIHA$7VJA_;NkrY^rorDY@ZNy-GeJjG~u9Lt%A3i7X-jAf1)!~-m zUUgzXF(=I9Bh^%a?nQ6>Y4Hl{zY%XCf?)Pqa;=;Je&{Mbd=K}_4Eh1>UU@}tctgdv z{tDNZSkqy)mf>S)!rZGeVY=|7AJ(YrnzQS=)z+sarKPLfzV?RFJ&`HE2WsTwJx@JJ Htor}i=a>Zq literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/7_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e31d8b6b67cfcdd8040b38952db157451aa526c7 GIT binary patch literal 571 zcmV-B0>u6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kr^q zT{_ZByYCNb*0#~|^G{_WBJ++|t_5RJTG|JRwVw;z&vByPNoh3k7+uf;N|Fz8*N(kw ztkJ$Pc-GfZv==(FUt23|lHTStWsyn23~`h7&-hcmHR!r_iSZidEjP(X=Y=Pd2!;es zdV}@G@AwsY-4)k-G0Cx#l)-zaFP7y>6`)2aw>m|TC94<#QkpK92n!2 zTY@|JY7n2zO>tCLLE&E+>mCiB@@*bi<9oPFG8aw64#XbBRt%Cn(!8>}JdVYg*yOQ2 JNj|jN|JmcKgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k&OI zXgvwY;8uMV=vo(!^xp;ePAGgor^hdd?-9P)s9Y{ZxZm<5VD|t6o|(s9&G8qByjf$Q ze`af%#pTTUy{bzkwa6#PhkoSbo*A~}jBqi}P(1#M?fgHbLE+5}d||8tBrS~^+dR)O z{{WVbJ0fs-#^M0zdE_szu5~;6i|ffuw>J_rvdBOMn4FWxy;r4EwSmAmIpkKqi9Abx e;*CWv?}Ra|Q7kZ9+os51jYa~Z=Yd%CSO3{pX4M@4 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7f06c11fc812f7518ea16649d706c59d2740fab GIT binary patch literal 622 zcmV-!0+Idy*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kz@zbX__CyD@*?X0O*aY zBkVy8Y$K9K&emyIjN}~WgYEM3T(^n7B0=G;9`;>kOFN$!U)q~VY;^e6lj+{RZ>_Hg=ndkJ7HPUF%pn(Yg=q-R)c}?_?r;rz--PdV-9N_Gnh%A1FLkDP zMhV?+=DLNye!)O#OE)0!FahU}pz!|yh;c&?#7_{%Zh<0O`9M+7e8)enb5%W^<<6gX z9o3!0w)YVo$t+A&l=~4~MxpUb#`>j+vbymN(SV_imNiJrDe4O-1pX)2*0~Z%B$7!z INu;m;*-Z%lXaE2J literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d0ca137624f3261bae24a6ef6a575a542df331d GIT binary patch literal 598 zcmV-c0;&D~*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kfFfIahC z+ULW~YeUo0_`Rl~Z;1@jY4Vwt-(gi@BLRSN>)h8TMSBOs8xQzPyalUxOHRLiCsAv( zySlsbiCc?&1@g-bV1jZ1JpBt}3&%bq{>ZhTz&aJY_F6rR?6)Rw_1BVy<=pmO1_0~_ z(0S!q)2yY`^*c)lHu=|6Bq_MyZejq>;%nA#w6}&6qUqB~qIfG$oE!aCVdcrFPKT1e z#OEXALBPg-o_phu5XIuJ8ERV05Ex;(ka=p~dupgqTik(@?rWc?Mgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k|=CBZW5{dY?h=Yqej4 z+R$lWn_18y)FOfBlEJS_PKtmQ$WK7CvM3ev2# zzZq$ocA({Lr<8^O;JFG)pgoHa7d^LErubTa60eI#iFNxI(Y!U`)SDJ;oi74ML~|Th Q7cU~A>A+$@tm-TO+0_c|CIA2c literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1856f9ec3adfbc08b7a3317e6e6c8bfb36ee8807 GIT binary patch literal 596 zcmV-a0;~Q1*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k!_`5VUl}^SR`@ArJ0!Y01EU-z6JQz z^r^4rg3jN{jifM3Kkp9SzyL;lGHcCfuSEDWuK0Vy{xo~f5WI0m_GVjoq>Q+ZUCYk^ z z8FZTr?SMAoli+hAlg1850P)|P*AGQ{*TIXJZ>)St;Z@YzOw=`4qH8;)BoOhI;Bqm32sj|t ij-lcmZ&$aD4NF+mFJX-3Be}VG6;3gb7?3MAzyI0NiSbGR literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/8_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22429dfcb6758197595c34cb171ace11b3809a6b GIT binary patch literal 599 zcmV-d0;v7}*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k593md@k`8i>BUQ%-VeGWKY_nwYy0rg>#MUqmVyeP%Dd~y+h#47dpk}yWznc z=Fd^G`KCfb+fIjcG7>rv-97sngT$Klnc+P*R`8~PXS>ucDI`PZ~Bhczo5YTrcI`WJ)rJBa4gH5rGM z_SsYBFS&p+62OE5APgKD@_!a;v1^_#)%8dL5ZztLEO{9DOB{Zfta@@gM(XIrT~1Y$ l;DhQa-R7~W>JY~b?xS~e6kqDnY1!32fSx*^&Z$vf|Jl^~@)7_5 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb3a53b5d58d5c4b968ae8a48f2238dc61621a6c GIT binary patch literal 554 zcmV+_0@eNh*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k~wB%-~0 z!x}jFci&m0Y2v@uqdzp*@kA@0RR91 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c026748e0bbf1cfb2dd0ff552b630bab9f8f70c GIT binary patch literal 548 zcmV+<0^9xn*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kKRD~^Q?L+-24xw!+GGn7e(;5iR?7JS5=wh)uman zdxRvcaia17P{%m~gU$&RgYmapvX@iRye+3p_Yi0n{{Ux_c^ES^m{37( literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50a5df959e31c07c9dd740f8b4ec8d8c99d6f236 GIT binary patch literal 552 zcmV+@0@wZj*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kSKO|9r! zpNBO!({+0{wYxwV#^fFd$RL72A46HxSJK`J((k-A;ExV}!Xc$aaec2RnSHBHo7U4R z4hR?}LC6C*%ATaxHTy%)X3ydKdx_(dUWNnquOwjt9CL%n%Lc&o&3JVc>^}o1*6uZl z-d$?)-@}?jO?7h@nnXn4;d<~s^B%`J qMQmxlDb}=&7f{jcFH9CXfW_2n8WSMKF}RJuV>|*npIXPFzyH~hVA(hT literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_csv/9_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2f9e80d4ed3f500a10098576eafcd2c3a4d2b01 GIT binary patch literal 539 zcmV+$0_6Sw*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k!MS2H~H5wzI-j!9gq zk4?2F#hV*gFSL94ES|?))U5v3soJsOBx8Va*qkvVw|;BR=&tsEiLLgjHETTr#t#up zsvoS3p$tRrG4@DJoP}OgB dU$XtSb1&H~($*ZP8zNloUI#eI%CR*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kpEp*!}i_3yCBDaa8Y z;pU5Xb9<;;qup!J!cUvKKXv*qbDaF6-gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kQG=|8i-iEniAbANwjVJjx( zw>go)=K-<6?a-dS*sd4GUIW)W4}LB6TXE#bPm^^YG0XHlkFn;tn)FYCS}4{&CfJ!G z^B}X0?qml93=OJCJ$`0hoYMSA@&5pdFMM69>C$R<5ZYN^$go2Z3FYi|3Ua-`@0#xP zjc#9w9|CpzOgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k3Mde!}sPpoS2X_7e4kdXQA zzRiYE573|R;CyrN{{UC;9;BAqhRLnv8G`B@>~ZPOM)v-7%2%a)3(#$K&xsK=-^`kQ zyWXM@2zORhT>T5~`lzd)7QBD1x5RtPeLGXVu(#7lw~Zj3kTDo6!~=tq`T<^z;C~WX zd}i>5p`dt@(LUR1s#;j^Gmyb$Ky!v1=eIuiubM7klGf^Lc}66O$~ew&LBX!$;SY=K z{2SwxywnCP?x1T)WzYJM%&Z?6gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k`k!cpovMEc&ZsjiWuMIeA&v?f-XQ~VL2 zAh81^obgTZr-N_26|5zd)Un({JYs8WnD|*^J@9%TQQP&dZj=Jd0P1)Z-uzRQbp2CK z@SUj(Wue+f7R5X??xEy!>PaAH+O2s0D6Bpld_L3jy5sC~-Lq}S%PT7Z_;NoA^Llh` zvPEoXX$KYUULf#YmyCR8Ka8cgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kdmz5KV0-jPZe7XT*<)QFxF+p=dDui^DcJTX+?A`J{Am RJ9ohM$>*n@(M1$j|Jgj*;#U9w literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/0_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/0_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cddac984e053ef0fe3f15c3e15c90d4254fc8830 GIT binary patch literal 634 zcmV-=0)_qm*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kTL08*3P-NH!62c?f~R3 zx$BXP*CnoaJH%cZjyZLmBI?d5I9VMsr21|d8TRW~b=mwa@Tl>3k1VXEUDl9h>gWEs zp&WiJRDLzgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5ku(S#gMuWLfNZft904tEE!ylV8ahFuy!FM^pT%M=ey?^4Qu=pdxdS`(2 iD~Nv0B!6hsW{t<2JelA)9S1@I^d6k}?G#Z(75~{H=e@cB literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02e19fa83f989e5a55bd3181ccd0c01187b21962 GIT binary patch literal 427 zcmex=^(PF6}rMnOeST|r4lSw=>~TvNxu(8R<Jq?U}9uuW@2GxWo2Ojs;&jfGq4D<3Mm>o zvIz$!vMUve7&T5@$f4}C@t|nX#SbdRNkvVZTw>x9l2WQ_>Kd9_CZ=ZQ7M51dF0O9w z9-dyoA)#U65s^{JDXD4c8JStdC8cHM6_r)ZEv;?s9i3g1CQq3GGAU*RJ2VdF$b$$4{OPfBE|D z`;VW${@-HY00o;p!_R-)|L8uU7`O9Bkx<6GT;)L??6NY!*t>MyGAM}Io z^7@{yh9X%nZn-=P({1YB$)SAx8JE4(r&}896Mry@Zh94`wr^IU%!JIGg^>-?5>ID5 Tznt{>LfW3HE{#Q9|8D{SB+{L$ literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65c54f465de9ace66f739c35ab7fd79812c0dd97 GIT binary patch literal 491 zcmVgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kAWlS4obPzEFwwzDZ;ZIR^oqbM^PHGop%? h8>@?CnIN86mUQyv2<1eHkao5@jDT=^fl*Ok|JjD(yQ2UA literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb724d574b629e0f5bf5078c156fa4218861085a GIT binary patch literal 475 zcmV<10VMwa*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kct9uvgS#G6ZbhDn}(m3I4uS3iYu6j4(Brhl^io6eK$`~1%< RaoM{V-Hw^Z8K|hQ|Jm!5wa5Sf literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/1_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1fbf8b71d5675b4d75a000c486193e507e1d07a GIT binary patch literal 460 zcmV;-0W<#p*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k1EAbm56#G;BQum9N^ Cd$G;{ literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c276f1b04364a755dbc3ee4743a581a78ae889d GIT binary patch literal 604 zcmV-i0;B!^*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kbzcW+{{Y#V#3>!Yj7qy4GO`jtAdhf=D#fX7t|hd( zislC?G%h4Y9aVwIKb?I`@XyB{DENV>HlaPWrIv?j8H!O6-1FRRQ{RxF9P#Wjd9NGz z+u|z^5qv_DO*zbwSwJk_OmNPQ<%;@@wlm)zmFF~9*E%MHWvcuai%0OK-MzGT)>|58 z9%szs_q(~y0Q``Rhekx706f qBY5qu=Y=2dta23%(DDK2p!|hLH1k|IdF7H;0~?)-9DX$&fB)Iy$Me$w literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d81b57c8170cb9eec04a3256802e06fff5d3a95 GIT binary patch literal 592 zcmV-W0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kDqU}ElxWz zf8xDj$HR6_v?JWIyOv>)xZD6f#OH&>a=tn6MfZVqnCveuAh}86^Prj%aOsjVLFjn* z`qwc|jz@|`k~U;?A(fQif;tdux$q{5aq$PnzJ9%Xbv>1=M&|zNSxXTbjDT45$^A1_ zz9e|V{u56Z&!|EjEFw__oNO_+HTLb3lla#oQrf}xo48;y#}Jj(Jjq)KnK;WHz;~~u zwT}boT7SbEFAdvxt4`8%xk^u{-^xRqr(gu6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kDD(llVd(zyiDznTmfA)e+qnc zDoE?$tH2`}JGQAmKu%B4X1T3TNz^o3*0a>?r?a_HlN|AtIQ1FoI6T!l+0Z;$uJ~E5 z4vDEtWNtuNe6SASGmfD2$^7fC@Kwi+ejxas+f8p1YO8GyXSuj*x5P1yr>|4M9_Q0F zL*loJ?L1lI6E%kBva*C)Lo=MT!Abea>T*whe>&mluYd5bhwra`2iw~CPVUCq<5HE| zSH7BK6U3_As32z>KnJ!9e|orGPr}{_@RhWSs(6XD%~&tXXQkjmt;qT1=YV?*A8u>T JsG^E1|Jf!L>hS;o literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07712098b1ef64f7eae3be028e287f62353fc9fe GIT binary patch literal 564 zcmV-40?YmX*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kpF#zDSBAWA@gK(*Dkkv#wzZ)# zRJnoeQ6h1W4jsrFyY)Cdg=cur;C`p4>sR-BbAyx7!|M%~x|oB(*wQQtL{Uq#2`&j=q3Xj+r&0WEZEbY;+C zUoJ^**BeV<@~TEhY@DA;@Xr+Zj`PKyBfZwILL}Er2}u6xfC8u=KmgBr$D)cTum9OO C-`ZyY literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/2_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d8936555157b561161207fe4e2a9402effface9 GIT binary patch literal 541 zcmV+&0^gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k z?M@3=hUq1e)zwsboQ|ILgGE`e)Gsuv*za`vsjY6K&dH#1j=2OJ5y;3Sel_kt40TTv zMd7`B#r`GLFYh#1tfY?K-u7c6T*==G$JA~2EJtHr49ZoCupxoL1ac`TuUoYE{{XG& zx?QH7W1(o#Tid{~6fwCBM^XS_06v`e=AgUy>8jtOCFh0wGjgnVGRgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kM{M?0yw^<5090P(F1X#OrDGG(Kc<%N*Wr?!io)llI2bb!~+VX@rFBy9S=FLKCY9(mLpb+SJLg)7S!&oR9UQnb0aK@ z%!p4%Dh@lG5IW%CTw70RaQ62w$qdn*uN;b1l=={QS8H+honPT=Uh7fqn@_lk4KD6c zhq#F3JRtRTPnCh~$nT2bX+bK%l#oHlBeispc>e&z@Iw@5QWJ=Q5xw2KR}P;?ky(e} gYb#dQHC=k>Tgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k9YPB65ED5c0Wqtd{^OJPrSCRGlP8)YOyNDR5b#zE=_ zO2neOe}2TQNjvZlOb<@A+Wc9vwei1(p!kocJ{+4gfW5?t-hzyUu&oMR_}*1c-S z;ZK14J*=~Mo5r>`P{tX>kdb0$QT^f=w|;{J_O46fAH<{G+h-gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kxbeD=C?kzS5zF=g8^&KQB?9de@QBUZ*F*`<-*c z+6JxQ7{;Q;0B_}6#EwX=h6z%v!*1R&gPwEK2D<+M8OL$q-+_yw_}cYv_3MemmPpcx zB!dKC?k6W|?gWhe{BkSj+A8Lst7=+Al1ZlO7j{n~Y<9Mpqb$CJsTm&C1;xzwa{0G2 Q$uyY8`5dvw)YMh~*@s08@c;k- literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b7ea9390387006d0a18da0c20ac8215d75cd510 GIT binary patch literal 609 zcmV-n0-pW<*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k76a>rG+RB5c|Ns(N9q^ZsgdL5s`yPqCC&y6O%(zFc{`sztsO>kJp^Bwre z1E?edM^Rlj#7z@U@h8K*IlL*YTWWB4THK46(Thk?g5~m00Bk27na505gV#^szXv~! zF7K>uucCtf8)G%J4hQ;61NQ+W0oSiJ(p&r>)osj);!S%<(5;~$xSs7~ahza;2OQ_Q v6zyNdo*VGLgl@bo;J-5NYxu-^p06shdBA7oMLh>3eGhVTUS&lTQD6Vr?m6=` literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/3_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dabca3514f9015aac6b88876d6b2039a2b7143eb GIT binary patch literal 591 zcmV-V0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kFjYpp*207|%%%S)>%i!SbaGO6r&1GREgSEc+s)V>?(x_eFHJ6Yw{ zLmiKE0h-xHcp((z`{(ed`1W0U#u_{Lg5O!R)pQ*`K^cP1Cbt%3-~!OMI61&e#qe`fvQa;ZHJu|swdzg9%E=-B0CiO1 zkK<5lo-ENcZwlOaOToWrmeTQq>Kc{O?R%0jg+=}qSFgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k_mp%%G zqPfy+t!>~7BIKm%1DRF2hdYQlCpkHgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k&M7ePc(jFU(&fcE3y9ogvUv^)AZHVJTV@ls90L9qE9vJtZy2YDY`TOgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k{`0X|719EUu?`B02esAO!L0&r!!} zcZa+^f8t$B>{cqEtZgi_NE^$A6lAlo2Wah|QY$K~SlHa^SMXU{MDpBD;Uh#+#FOkf zuc3Th;O_?LUIp;~0Ehfb;#sujvR0JEZS%D9Ki+MaCjjIF$5U9>8c%}$ANT`O)NHkz z`R_bKWYFpC(D`$DXP$%%As}VA;PGA;THYDgr|`#!?6s?CW14G6E~zGVoPs&Q_pR>^ zY1)Ux&m6qEz5Y~&y1u!UwuFUwY+zw{;B*3__>ba9d`04y8hgL?MS?A*gl&v0YB7d@IO-2^P*Gq1+31`2UjP6A literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/4_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/4_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f4adb737cfeea14b19fee67f3822cee1e9fb568 GIT binary patch literal 593 zcmV-X0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k1+!VGhP$>eeCShZ_S)9$rxPTNkhh|6_zD#a2G?8gJ?^{;91 zf5Wd7TX=rM!X6mW&CZ)|w&wcrCWtlN$rvPpz=d8w2l{5Q{we5i=pG%>v^3VV@fMW; zU$CTw=bGitWs!gfV)Mr1*nl~&B&(WMt9_zsQ0h8u%iCTgN&2Z?qGhRxQqMijZaazzq^phadRt6BcANXB>uHtik{l? f>d(&mEzHn)(U@iOq$}n|daGlqoN^Bp1r`6gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kS=F`S9Ub-m02gUGT4Vht|&YwL^oRE!c4QB!x+Hh(JfsqX>pBUJk=MyHXYs3g`g+QPRR?W4=cS1iEeAdp8)W3_m_ m6rhkn2LyB?rMkPhzq*p@^5R>IiB9PynajJMQcotKum9POgY%{U literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2575e8d5076f0daf7a4555297afdf7e38a7174e4 GIT binary patch literal 514 zcmV+d0{#8}*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k81=v8OTsuPyp6X%@k`)V_00#g7H~?`{Xm_@nezj|Js9FolHDV`&jJgm*V?7QILF{mAu!;T| zXx9mU6q@d_EM!R)oROpv76%|ZWSo5kavJ`zH;6U+{a$#|Id3OvnG>Sq^c9^&6j5LQ E*$jTYr~m)} literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edb321b6cb10db7fdd37d88b0182771285121ad5 GIT binary patch literal 575 zcmV-F0>J(M*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kca_zz$4ddn`EYNFO7i7xIOM+%=!$EoCS zGt^e@ukdTdI#q++#QJukvBqSQI}4vOL{Zn}AQO-Fb6$Hu86amK_4GfCydN`ocR|qN z@g|j{cskzFCX(i90-MRsOFE$Y{{X_+ByvgSyu-%63AykE#+Rt++Rxi;Z{zc9@9n{f zvH;IQal--#Jm$E5rzVQ;{4MaS#J(cDiLdSD({zaTyw|r!Vyt8Xl+WJa@s2%6r1+=e z%N>7Mw9>Rt28E)-_FEze`M>}c=eNoL_8IS74Hczx;w^6W!7MJdjY4}kz*M)E<=Qm^ NpbAa^6`MtW|JhW7?R@|M literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46f18a088ccd0135d2edee695eea9a3799b50ce6 GIT binary patch literal 571 zcmV-B0>u6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kA1C#Au`SCB|7O&&K5S?bnTeMibgpL>|R@$I-!!CN~JuA&M zzkyyT(e#P+IPP@o=pc!ukXuOQu%jmcsLy}Oyuyn2{{RGOehKmK!)Uxc_L#KYXnAXJ z-!GjjAthONedWUu$0MhuU5)%7@OQ$#AcDhP{?gVi^KNa-idke(Km`Zg192pur?q_N JMHEqA|JlR|;t2o% literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d8b2e0c25c16eb3f74e81ab3b78865d04dc34f9 GIT binary patch literal 579 zcmV-J0=)hI*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k?i$}23E)Ym8?xZQS z9Aho(*Ej?MI-2KvYw*8X@Fj({?xT07TtjgwiGIl|F%69J8CTz?Yl*F23_Yw~E79b> zlghMP*ji}^@St(H{#mbf_>JH_D_8NA&xkx#;`==_O?c5QU_-iQjZk#S{_$hLKdo@S zC-`xqL*SdA6L>?!a%#GDoT`^m%9~2DAY^bqzP-90wdK@TtI6PR5BTcV-&F9=i1f`i z<*m^s(y!(6%ucEU6+Dup!;JaF>mna;h&5xwf_JR>9e+@YqA?#SxXT%)(eh= Rl1ldIq@F9lXrhWM|Jivk?~nih literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/5_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22893859a2e582d8a928a7b7a2bc093373b6578c GIT binary patch literal 617 zcmV-v0+#*%*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k3ek_MLZXA3IF&GH%CQWOG#OuJ~i4>ALsCT_a4@qY_xm(s_tnplz``D99lF;49I* zf8+lEh&~qajpen4vsmcX`Hs>tWEvNYDEY%}=dO4-9S=&uwD|u3;>fI;+WOZ^)K!!# z8<+^(F@un#1D~aN#1vz*Dt)oY^7sE{>UWasH-wCWhGb~f({5Z?Y|BF zBz!~G^(##sAcI!4k^H%5yomgW0WFyaQ-jgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kw8liZw&J$^?@iXHZ8h zIvx)>&rk+1O?iD4-25W&^7xP9Hk|~>uWxKk+{(+4%9y}ERw_BIOPw>s9~wR(>Nhq+ zWu!6$^JYIKv>@R}xjdW>r!}_+!e0gIchcy3PmLwJ*LISN6dU0}qbNyBb=hNazy6=(YlQGKK1N+ zXT@KJkoZdTPC7QBVGZlE-Pl_e`Pr}=YlmNyfB_j?jEr;7DXRQshQmvjN$@U#Z=l;r p!(4z2&Bimp;kt559xKWuk>-))k=f*OS(%PY6V#LIO`?h`|Jm59^MC*V literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1fbc4b571e74dd42ed099f33b7193d1c42d7243 GIT binary patch literal 589 zcmV-T0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k*F{MPXfx7T*-lhrkb{$v)0}XXe@4;ob?sW;O|Xm1xSg;w!l>@ddng=} z*b4OR4%**Bg5uA?Fh{CuaeTM_Be)8-c0-)`EZi^q=aY^);A2VPOC3(zTfAQx!>Q_4 zHtlsgM+3Aj+;DCjfs%M0wdZx!cpt=CZh>{F$Ernn_H9DRtr~k0qIg3xl2>;aAYl6% z?zOFR;hnF8blVL&`&HDSx7yNaC|cA{A<1bbe=iKffx~f*J!^v3yls7~ST2=mZEd9J b$UznsK&m+(#UUpy-sJY_T*VYoMSuUgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k9Bt1z>&H?#t~!ePCf~qX-LJtLO*g|3K>C)j zsd1=F=B#eq^%x*^#y5J`&-#X+d8J>?V}ETWwbU)PNTgg9Kj*zxqP?$N@n?nn zQKa}^P_^+~o*&mVXjU;4mXk=i8+)RW{6C1`ist?@_@6-WUy1DRv?-S3ZKB6>I>ONj V9241qCj$c~*mkctqKYW5|Je)_)9C;J literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/6_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..401c1a7c3007fb6149117f1522746c8bc9a016da GIT binary patch literal 563 zcmV-30?hsY*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k(wI(5X>lSF>gBoOTrGVS~A_g5@Su_vh<*O^{?8S(9o zpC#k6K(H;@_?V`!yXtb{q{kqcf3vmg%wgtT03higv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kFc*9Ke{KNXmyE#EyRouU!X%udMXX6x-ilT(z`NM>8ymyCP35f?%&8 z?kmq~*wK7*hCoSMDypTyTX*Nvsq8b&snK5b$J zvRTGAx%VV~g1qL6?|uzi!8gS1HfydRv`KDV&)qS|#tEvk);D7BK32Y@YsU>5R8;anJHyut#wPaCW|Jg`-+V=ne literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..302bd2e01bd76b8578f17b19a736beaf78a30f16 GIT binary patch literal 523 zcmV+m0`&d=*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kTmXkiACZR5mYAt8Fk@uNyGFnm?@>DU}Gudm1qPxF`v8Ii0s`$$4MTK%%Sm>o;OG`OqnRX@_-SL)l N+<>4DVOg|S|Ji{+%!2>` literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..044cc68e64f60e7360579679eb9871ea0d5b9a69 GIT binary patch literal 621 zcmV-z0+Rjz*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k#PSqSU2k%NzFrCrCvZyIUd z2fNj^3#%D!Z)LME*)(8&?ay+=f}^J(6I)i_AN+3wGse%S&SW`9mfY@ydM+4e)8^cG z>s=Sd-Foulz`hjIHA$7VJA_;NkrY^rorDY@ZNy-GeJjG~u9Lt%A3i7X-jAf1)!~-m zUUgzXF(=I9Bh^%a?nQ6>Y4Hl{zY%XCf?)Pqa;=;Je&{Mbd=K}_4Eh1>UU@}tctgdv z{tDNZSkqy)mf>S)!rZGeVY=|7AJ(YrnzQS=)z+sarKPLfzV?RFJ&`HE2WsTwJx@JJ Htor}i=a>Zq literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/7_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e31d8b6b67cfcdd8040b38952db157451aa526c7 GIT binary patch literal 571 zcmV-B0>u6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kr^q zT{_ZByYCNb*0#~|^G{_WBJ++|t_5RJTG|JRwVw;z&vByPNoh3k7+uf;N|Fz8*N(kw ztkJ$Pc-GfZv==(FUt23|lHTStWsyn23~`h7&-hcmHR!r_iSZidEjP(X=Y=Pd2!;es zdV}@G@AwsY-4)k-G0Cx#l)-zaFP7y>6`)2aw>m|TC94<#QkpK92n!2 zTY@|JY7n2zO>tCLLE&E+>mCiB@@*bi<9oPFG8aw64#XbBRt%Cn(!8>}JdVYg*yOQ2 JNj|jN|JmcKgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k&OI zXgvwY;8uMV=vo(!^xp;ePAGgor^hdd?-9P)s9Y{ZxZm<5VD|t6o|(s9&G8qByjf$Q ze`af%#pTTUy{bzkwa6#PhkoSbo*A~}jBqi}P(1#M?fgHbLE+5}d||8tBrS~^+dR)O z{{WVbJ0fs-#^M0zdE_szu5~;6i|ffuw>J_rvdBOMn4FWxy;r4EwSmAmIpkKqi9Abx e;*CWv?}Ra|Q7kZ9+os51jYa~Z=Yd%CSO3{pX4M@4 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7f06c11fc812f7518ea16649d706c59d2740fab GIT binary patch literal 622 zcmV-!0+Idy*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kz@zbX__CyD@*?X0O*aY zBkVy8Y$K9K&emyIjN}~WgYEM3T(^n7B0=G;9`;>kOFN$!U)q~VY;^e6lj+{RZ>_Hg=ndkJ7HPUF%pn(Yg=q-R)c}?_?r;rz--PdV-9N_Gnh%A1FLkDP zMhV?+=DLNye!)O#OE)0!FahU}pz!|yh;c&?#7_{%Zh<0O`9M+7e8)enb5%W^<<6gX z9o3!0w)YVo$t+A&l=~4~MxpUb#`>j+vbymN(SV_imNiJrDe4O-1pX)2*0~Z%B$7!z INu;m;*-Z%lXaE2J literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d0ca137624f3261bae24a6ef6a575a542df331d GIT binary patch literal 598 zcmV-c0;&D~*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kfFfIahC z+ULW~YeUo0_`Rl~Z;1@jY4Vwt-(gi@BLRSN>)h8TMSBOs8xQzPyalUxOHRLiCsAv( zySlsbiCc?&1@g-bV1jZ1JpBt}3&%bq{>ZhTz&aJY_F6rR?6)Rw_1BVy<=pmO1_0~_ z(0S!q)2yY`^*c)lHu=|6Bq_MyZejq>;%nA#w6}&6qUqB~qIfG$oE!aCVdcrFPKT1e z#OEXALBPg-o_phu5XIuJ8ERV05Ex;(ka=p~dupgqTik(@?rWc?Mgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k|=CBZW5{dY?h=Yqej4 z+R$lWn_18y)FOfBlEJS_PKtmQ$WK7CvM3ev2# zzZq$ocA({Lr<8^O;JFG)pgoHa7d^LErubTa60eI#iFNxI(Y!U`)SDJ;oi74ML~|Th Q7cU~A>A+$@tm-TO+0_c|CIA2c literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1856f9ec3adfbc08b7a3317e6e6c8bfb36ee8807 GIT binary patch literal 596 zcmV-a0;~Q1*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k!_`5VUl}^SR`@ArJ0!Y01EU-z6JQz z^r^4rg3jN{jifM3Kkp9SzyL;lGHcCfuSEDWuK0Vy{xo~f5WI0m_GVjoq>Q+ZUCYk^ z z8FZTr?SMAoli+hAlg1850P)|P*AGQ{*TIXJZ>)St;Z@YzOw=`4qH8;)BoOhI;Bqm32sj|t ij-lcmZ&$aD4NF+mFJX-3Be}VG6;3gb7?3MAzyI0NiSbGR literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/8_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22429dfcb6758197595c34cb171ace11b3809a6b GIT binary patch literal 599 zcmV-d0;v7}*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k593md@k`8i>BUQ%-VeGWKY_nwYy0rg>#MUqmVyeP%Dd~y+h#47dpk}yWznc z=Fd^G`KCfb+fIjcG7>rv-97sngT$Klnc+P*R`8~PXS>ucDI`PZ~Bhczo5YTrcI`WJ)rJBa4gH5rGM z_SsYBFS&p+62OE5APgKD@_!a;v1^_#)%8dL5ZztLEO{9DOB{Zfta@@gM(XIrT~1Y$ l;DhQa-R7~W>JY~b?xS~e6kqDnY1!32fSx*^&Z$vf|Jl^~@)7_5 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb3a53b5d58d5c4b968ae8a48f2238dc61621a6c GIT binary patch literal 554 zcmV+_0@eNh*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k~wB%-~0 z!x}jFci&m0Y2v@uqdzp*@kA@0RR91 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c026748e0bbf1cfb2dd0ff552b630bab9f8f70c GIT binary patch literal 548 zcmV+<0^9xn*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kKRD~^Q?L+-24xw!+GGn7e(;5iR?7JS5=wh)uman zdxRvcaia17P{%m~gU$&RgYmapvX@iRye+3p_Yi0n{{Ux_c^ES^m{37( literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50a5df959e31c07c9dd740f8b4ec8d8c99d6f236 GIT binary patch literal 552 zcmV+@0@wZj*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kSKO|9r! zpNBO!({+0{wYxwV#^fFd$RL72A46HxSJK`J((k-A;ExV}!Xc$aaec2RnSHBHo7U4R z4hR?}LC6C*%ATaxHTy%)X3ydKdx_(dUWNnquOwjt9CL%n%Lc&o&3JVc>^}o1*6uZl z-d$?)-@}?jO?7h@nnXn4;d<~s^B%`J qMQmxlDb}=&7f{jcFH9CXfW_2n8WSMKF}RJuV>|*npIXPFzyH~hVA(hT literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_images_only/9_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2f9e80d4ed3f500a10098576eafcd2c3a4d2b01 GIT binary patch literal 539 zcmV+$0_6Sw*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k!MS2H~H5wzI-j!9gq zk4?2F#hV*gFSL94ES|?))U5v3soJsOBx8Va*qkvVw|;BR=&tsEiLLgjHETTr#t#up zsvoS3p$tRrG4@DJoP}OgB dU$XtSb1&H~($*ZP8zNloUI#eI%CR*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kpEp*!}i_3yCBDaa8Y z;pU5Xb9<;;qup!J!cUvKKXv*qbDaF6-gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kQG=|8i-iEniAbANwjVJjx( zw>go)=K-<6?a-dS*sd4GUIW)W4}LB6TXE#bPm^^YG0XHlkFn;tn)FYCS}4{&CfJ!G z^B}X0?qml93=OJCJ$`0hoYMSA@&5pdFMM69>C$R<5ZYN^$go2Z3FYi|3Ua-`@0#xP zjc#9w9|CpzOgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k3Mde!}sPpoS2X_7e4kdXQA zzRiYE573|R;CyrN{{UC;9;BAqhRLnv8G`B@>~ZPOM)v-7%2%a)3(#$K&xsK=-^`kQ zyWXM@2zORhT>T5~`lzd)7QBD1x5RtPeLGXVu(#7lw~Zj3kTDo6!~=tq`T<^z;C~WX zd}i>5p`dt@(LUR1s#;j^Gmyb$Ky!v1=eIuiubM7klGf^Lc}66O$~ew&LBX!$;SY=K z{2SwxywnCP?x1T)WzYJM%&Z?6gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k`k!cpovMEc&ZsjiWuMIeA&v?f-XQ~VL2 zAh81^obgTZr-N_26|5zd)Un({JYs8WnD|*^J@9%TQQP&dZj=Jd0P1)Z-uzRQbp2CK z@SUj(Wue+f7R5X??xEy!>PaAH+O2s0D6Bpld_L3jy5sC~-Lq}S%PT7Z_;NoA^Llh` zvPEoXX$KYUULf#YmyCR8Ka8cgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kdmz5KV0-jPZe7XT*<)QFxF+p=dDui^DcJTX+?A`J{Am RJ9ohM$>*n@(M1$j|Jgj*;#U9w literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/0/0_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/0/0_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cddac984e053ef0fe3f15c3e15c90d4254fc8830 GIT binary patch literal 634 zcmV-=0)_qm*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kTL08*3P-NH!62c?f~R3 zx$BXP*CnoaJH%cZjyZLmBI?d5I9VMsr21|d8TRW~b=mwa@Tl>3k1VXEUDl9h>gWEs zp&WiJRDLzgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5ku(S#gMuWLfNZft904tEE!ylV8ahFuy!FM^pT%M=ey?^4Qu=pdxdS`(2 iD~Nv0B!6hsW{t<2JelA)9S1@I^d6k}?G#Z(75~{H=e@cB literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02e19fa83f989e5a55bd3181ccd0c01187b21962 GIT binary patch literal 427 zcmex=^(PF6}rMnOeST|r4lSw=>~TvNxu(8R<Jq?U}9uuW@2GxWo2Ojs;&jfGq4D<3Mm>o zvIz$!vMUve7&T5@$f4}C@t|nX#SbdRNkvVZTw>x9l2WQ_>Kd9_CZ=ZQ7M51dF0O9w z9-dyoA)#U65s^{JDXD4c8JStdC8cHM6_r)ZEv;?s9i3g1CQq3GGAU*RJ2VdF$b$$4{OPfBE|D z`;VW${@-HY00o;p!_R-)|L8uU7`O9Bkx<6GT;)L??6NY!*t>MyGAM}Io z^7@{yh9X%nZn-=P({1YB$)SAx8JE4(r&}896Mry@Zh94`wr^IU%!JIGg^>-?5>ID5 Tznt{>LfW3HE{#Q9|8D{SB+{L$ literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..65c54f465de9ace66f739c35ab7fd79812c0dd97 GIT binary patch literal 491 zcmVgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kAWlS4obPzEFwwzDZ;ZIR^oqbM^PHGop%? h8>@?CnIN86mUQyv2<1eHkao5@jDT=^fl*Ok|JjD(yQ2UA literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bb724d574b629e0f5bf5078c156fa4218861085a GIT binary patch literal 475 zcmV<10VMwa*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kct9uvgS#G6ZbhDn}(m3I4uS3iYu6j4(Brhl^io6eK$`~1%< RaoM{V-Hw^Z8K|hQ|Jm!5wa5Sf literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/1/1_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f1fbf8b71d5675b4d75a000c486193e507e1d07a GIT binary patch literal 460 zcmV;-0W<#p*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k1EAbm56#G;BQum9N^ Cd$G;{ literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4c276f1b04364a755dbc3ee4743a581a78ae889d GIT binary patch literal 604 zcmV-i0;B!^*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kbzcW+{{Y#V#3>!Yj7qy4GO`jtAdhf=D#fX7t|hd( zislC?G%h4Y9aVwIKb?I`@XyB{DENV>HlaPWrIv?j8H!O6-1FRRQ{RxF9P#Wjd9NGz z+u|z^5qv_DO*zbwSwJk_OmNPQ<%;@@wlm)zmFF~9*E%MHWvcuai%0OK-MzGT)>|58 z9%szs_q(~y0Q``Rhekx706f qBY5qu=Y=2dta23%(DDK2p!|hLH1k|IdF7H;0~?)-9DX$&fB)Iy$Me$w literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d81b57c8170cb9eec04a3256802e06fff5d3a95 GIT binary patch literal 592 zcmV-W0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kDqU}ElxWz zf8xDj$HR6_v?JWIyOv>)xZD6f#OH&>a=tn6MfZVqnCveuAh}86^Prj%aOsjVLFjn* z`qwc|jz@|`k~U;?A(fQif;tdux$q{5aq$PnzJ9%Xbv>1=M&|zNSxXTbjDT45$^A1_ zz9e|V{u56Z&!|EjEFw__oNO_+HTLb3lla#oQrf}xo48;y#}Jj(Jjq)KnK;WHz;~~u zwT}boT7SbEFAdvxt4`8%xk^u{-^xRqr(gu6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kDD(llVd(zyiDznTmfA)e+qnc zDoE?$tH2`}JGQAmKu%B4X1T3TNz^o3*0a>?r?a_HlN|AtIQ1FoI6T!l+0Z;$uJ~E5 z4vDEtWNtuNe6SASGmfD2$^7fC@Kwi+ejxas+f8p1YO8GyXSuj*x5P1yr>|4M9_Q0F zL*loJ?L1lI6E%kBva*C)Lo=MT!Abea>T*whe>&mluYd5bhwra`2iw~CPVUCq<5HE| zSH7BK6U3_As32z>KnJ!9e|orGPr}{_@RhWSs(6XD%~&tXXQkjmt;qT1=YV?*A8u>T JsG^E1|Jf!L>hS;o literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..07712098b1ef64f7eae3be028e287f62353fc9fe GIT binary patch literal 564 zcmV-40?YmX*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kpF#zDSBAWA@gK(*Dkkv#wzZ)# zRJnoeQ6h1W4jsrFyY)Cdg=cur;C`p4>sR-BbAyx7!|M%~x|oB(*wQQtL{Uq#2`&j=q3Xj+r&0WEZEbY;+C zUoJ^**BeV<@~TEhY@DA;@Xr+Zj`PKyBfZwILL}Er2}u6xfC8u=KmgBr$D)cTum9OO C-`ZyY literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/2/2_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5d8936555157b561161207fe4e2a9402effface9 GIT binary patch literal 541 zcmV+&0^gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k z?M@3=hUq1e)zwsboQ|ILgGE`e)Gsuv*za`vsjY6K&dH#1j=2OJ5y;3Sel_kt40TTv zMd7`B#r`GLFYh#1tfY?K-u7c6T*==G$JA~2EJtHr49ZoCupxoL1ac`TuUoYE{{XG& zx?QH7W1(o#Tid{~6fwCBM^XS_06v`e=AgUy>8jtOCFh0wGjgnVGRgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kM{M?0yw^<5090P(F1X#OrDGG(Kc<%N*Wr?!io)llI2bb!~+VX@rFBy9S=FLKCY9(mLpb+SJLg)7S!&oR9UQnb0aK@ z%!p4%Dh@lG5IW%CTw70RaQ62w$qdn*uN;b1l=={QS8H+honPT=Uh7fqn@_lk4KD6c zhq#F3JRtRTPnCh~$nT2bX+bK%l#oHlBeispc>e&z@Iw@5QWJ=Q5xw2KR}P;?ky(e} gYb#dQHC=k>Tgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k9YPB65ED5c0Wqtd{^OJPrSCRGlP8)YOyNDR5b#zE=_ zO2neOe}2TQNjvZlOb<@A+Wc9vwei1(p!kocJ{+4gfW5?t-hzyUu&oMR_}*1c-S z;ZK14J*=~Mo5r>`P{tX>kdb0$QT^f=w|;{J_O46fAH<{G+h-gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kxbeD=C?kzS5zF=g8^&KQB?9de@QBUZ*F*`<-*c z+6JxQ7{;Q;0B_}6#EwX=h6z%v!*1R&gPwEK2D<+M8OL$q-+_yw_}cYv_3MemmPpcx zB!dKC?k6W|?gWhe{BkSj+A8Lst7=+Al1ZlO7j{n~Y<9Mpqb$CJsTm&C1;xzwa{0G2 Q$uyY8`5dvw)YMh~*@s08@c;k- literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b7ea9390387006d0a18da0c20ac8215d75cd510 GIT binary patch literal 609 zcmV-n0-pW<*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k76a>rG+RB5c|Ns(N9q^ZsgdL5s`yPqCC&y6O%(zFc{`sztsO>kJp^Bwre z1E?edM^Rlj#7z@U@h8K*IlL*YTWWB4THK46(Thk?g5~m00Bk27na505gV#^szXv~! zF7K>uucCtf8)G%J4hQ;61NQ+W0oSiJ(p&r>)osj);!S%<(5;~$xSs7~ahza;2OQ_Q v6zyNdo*VGLgl@bo;J-5NYxu-^p06shdBA7oMLh>3eGhVTUS&lTQD6Vr?m6=` literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/3/3_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dabca3514f9015aac6b88876d6b2039a2b7143eb GIT binary patch literal 591 zcmV-V0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kFjYpp*207|%%%S)>%i!SbaGO6r&1GREgSEc+s)V>?(x_eFHJ6Yw{ zLmiKE0h-xHcp((z`{(ed`1W0U#u_{Lg5O!R)pQ*`K^cP1Cbt%3-~!OMI61&e#qe`fvQa;ZHJu|swdzg9%E=-B0CiO1 zkK<5lo-ENcZwlOaOToWrmeTQq>Kc{O?R%0jg+=}qSFgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k_mp%%G zqPfy+t!>~7BIKm%1DRF2hdYQlCpkHgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k&M7ePc(jFU(&fcE3y9ogvUv^)AZHVJTV@ls90L9qE9vJtZy2YDY`TOgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k{`0X|719EUu?`B02esAO!L0&r!!} zcZa+^f8t$B>{cqEtZgi_NE^$A6lAlo2Wah|QY$K~SlHa^SMXU{MDpBD;Uh#+#FOkf zuc3Th;O_?LUIp;~0Ehfb;#sujvR0JEZS%D9Ki+MaCjjIF$5U9>8c%}$ANT`O)NHkz z`R_bKWYFpC(D`$DXP$%%As}VA;PGA;THYDgr|`#!?6s?CW14G6E~zGVoPs&Q_pR>^ zY1)Ux&m6qEz5Y~&y1u!UwuFUwY+zw{;B*3__>ba9d`04y8hgL?MS?A*gl&v0YB7d@IO-2^P*Gq1+31`2UjP6A literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/4/4_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/4/4_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1f4adb737cfeea14b19fee67f3822cee1e9fb568 GIT binary patch literal 593 zcmV-X0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k1+!VGhP$>eeCShZ_S)9$rxPTNkhh|6_zD#a2G?8gJ?^{;91 zf5Wd7TX=rM!X6mW&CZ)|w&wcrCWtlN$rvPpz=d8w2l{5Q{we5i=pG%>v^3VV@fMW; zU$CTw=bGitWs!gfV)Mr1*nl~&B&(WMt9_zsQ0h8u%iCTgN&2Z?qGhRxQqMijZaazzq^phadRt6BcANXB>uHtik{l? f>d(&mEzHn)(U@iOq$}n|daGlqoN^Bp1r`6gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kS=F`S9Ub-m02gUGT4Vht|&YwL^oRE!c4QB!x+Hh(JfsqX>pBUJk=MyHXYs3g`g+QPRR?W4=cS1iEeAdp8)W3_m_ m6rhkn2LyB?rMkPhzq*p@^5R>IiB9PynajJMQcotKum9POgY%{U literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2575e8d5076f0daf7a4555297afdf7e38a7174e4 GIT binary patch literal 514 zcmV+d0{#8}*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k81=v8OTsuPyp6X%@k`)V_00#g7H~?`{Xm_@nezj|Js9FolHDV`&jJgm*V?7QILF{mAu!;T| zXx9mU6q@d_EM!R)oROpv76%|ZWSo5kavJ`zH;6U+{a$#|Id3OvnG>Sq^c9^&6j5LQ E*$jTYr~m)} literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..edb321b6cb10db7fdd37d88b0182771285121ad5 GIT binary patch literal 575 zcmV-F0>J(M*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kca_zz$4ddn`EYNFO7i7xIOM+%=!$EoCS zGt^e@ukdTdI#q++#QJukvBqSQI}4vOL{Zn}AQO-Fb6$Hu86amK_4GfCydN`ocR|qN z@g|j{cskzFCX(i90-MRsOFE$Y{{X_+ByvgSyu-%63AykE#+Rt++Rxi;Z{zc9@9n{f zvH;IQal--#Jm$E5rzVQ;{4MaS#J(cDiLdSD({zaTyw|r!Vyt8Xl+WJa@s2%6r1+=e z%N>7Mw9>Rt28E)-_FEze`M>}c=eNoL_8IS74Hczx;w^6W!7MJdjY4}kz*M)E<=Qm^ NpbAa^6`MtW|JhW7?R@|M literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..46f18a088ccd0135d2edee695eea9a3799b50ce6 GIT binary patch literal 571 zcmV-B0>u6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kA1C#Au`SCB|7O&&K5S?bnTeMibgpL>|R@$I-!!CN~JuA&M zzkyyT(e#P+IPP@o=pc!ukXuOQu%jmcsLy}Oyuyn2{{RGOehKmK!)Uxc_L#KYXnAXJ z-!GjjAthONedWUu$0MhuU5)%7@OQ$#AcDhP{?gVi^KNa-idke(Km`Zg192pur?q_N JMHEqA|JlR|;t2o% literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d8b2e0c25c16eb3f74e81ab3b78865d04dc34f9 GIT binary patch literal 579 zcmV-J0=)hI*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k?i$}23E)Ym8?xZQS z9Aho(*Ej?MI-2KvYw*8X@Fj({?xT07TtjgwiGIl|F%69J8CTz?Yl*F23_Yw~E79b> zlghMP*ji}^@St(H{#mbf_>JH_D_8NA&xkx#;`==_O?c5QU_-iQjZk#S{_$hLKdo@S zC-`xqL*SdA6L>?!a%#GDoT`^m%9~2DAY^bqzP-90wdK@TtI6PR5BTcV-&F9=i1f`i z<*m^s(y!(6%ucEU6+Dup!;JaF>mna;h&5xwf_JR>9e+@YqA?#SxXT%)(eh= Rl1ldIq@F9lXrhWM|Jivk?~nih literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/5/5_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22893859a2e582d8a928a7b7a2bc093373b6578c GIT binary patch literal 617 zcmV-v0+#*%*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k3ek_MLZXA3IF&GH%CQWOG#OuJ~i4>ALsCT_a4@qY_xm(s_tnplz``D99lF;49I* zf8+lEh&~qajpen4vsmcX`Hs>tWEvNYDEY%}=dO4-9S=&uwD|u3;>fI;+WOZ^)K!!# z8<+^(F@un#1D~aN#1vz*Dt)oY^7sE{>UWasH-wCWhGb~f({5Z?Y|BF zBz!~G^(##sAcI!4k^H%5yomgW0WFyaQ-jgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kw8liZw&J$^?@iXHZ8h zIvx)>&rk+1O?iD4-25W&^7xP9Hk|~>uWxKk+{(+4%9y}ERw_BIOPw>s9~wR(>Nhq+ zWu!6$^JYIKv>@R}xjdW>r!}_+!e0gIchcy3PmLwJ*LISN6dU0}qbNyBb=hNazy6=(YlQGKK1N+ zXT@KJkoZdTPC7QBVGZlE-Pl_e`Pr}=YlmNyfB_j?jEr;7DXRQshQmvjN$@U#Z=l;r p!(4z2&Bimp;kt559xKWuk>-))k=f*OS(%PY6V#LIO`?h`|Jm59^MC*V literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c1fbc4b571e74dd42ed099f33b7193d1c42d7243 GIT binary patch literal 589 zcmV-T0gv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k*F{MPXfx7T*-lhrkb{$v)0}XXe@4;ob?sW;O|Xm1xSg;w!l>@ddng=} z*b4OR4%**Bg5uA?Fh{CuaeTM_Be)8-c0-)`EZi^q=aY^);A2VPOC3(zTfAQx!>Q_4 zHtlsgM+3Aj+;DCjfs%M0wdZx!cpt=CZh>{F$Ernn_H9DRtr~k0qIg3xl2>;aAYl6% z?zOFR;hnF8blVL&`&HDSx7yNaC|cA{A<1bbe=iKffx~f*J!^v3yls7~ST2=mZEd9J b$UznsK&m+(#UUpy-sJY_T*VYoMSuUgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k9Bt1z>&H?#t~!ePCf~qX-LJtLO*g|3K>C)j zsd1=F=B#eq^%x*^#y5J`&-#X+d8J>?V}ETWwbU)PNTgg9Kj*zxqP?$N@n?nn zQKa}^P_^+~o*&mVXjU;4mXk=i8+)RW{6C1`ist?@_@6-WUy1DRv?-S3ZKB6>I>ONj V9241qCj$c~*mkctqKYW5|Je)_)9C;J literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/6/6_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..401c1a7c3007fb6149117f1522746c8bc9a016da GIT binary patch literal 563 zcmV-30?hsY*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k(wI(5X>lSF>gBoOTrGVS~A_g5@Su_vh<*O^{?8S(9o zpC#k6K(H;@_?V`!yXtb{q{kqcf3vmg%wgtT03higv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kFc*9Ke{KNXmyE#EyRouU!X%udMXX6x-ilT(z`NM>8ymyCP35f?%&8 z?kmq~*wK7*hCoSMDypTyTX*Nvsq8b&snK5b$J zvRTGAx%VV~g1qL6?|uzi!8gS1HfydRv`KDV&)qS|#tEvk);D7BK32Y@YsU>5R8;anJHyut#wPaCW|Jg`-+V=ne literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..302bd2e01bd76b8578f17b19a736beaf78a30f16 GIT binary patch literal 523 zcmV+m0`&d=*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kTmXkiACZR5mYAt8Fk@uNyGFnm?@>DU}Gudm1qPxF`v8Ii0s`$$4MTK%%Sm>o;OG`OqnRX@_-SL)l N+<>4DVOg|S|Ji{+%!2>` literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..044cc68e64f60e7360579679eb9871ea0d5b9a69 GIT binary patch literal 621 zcmV-z0+Rjz*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k#PSqSU2k%NzFrCrCvZyIUd z2fNj^3#%D!Z)LME*)(8&?ay+=f}^J(6I)i_AN+3wGse%S&SW`9mfY@ydM+4e)8^cG z>s=Sd-Foulz`hjIHA$7VJA_;NkrY^rorDY@ZNy-GeJjG~u9Lt%A3i7X-jAf1)!~-m zUUgzXF(=I9Bh^%a?nQ6>Y4Hl{zY%XCf?)Pqa;=;Je&{Mbd=K}_4Eh1>UU@}tctgdv z{tDNZSkqy)mf>S)!rZGeVY=|7AJ(YrnzQS=)z+sarKPLfzV?RFJ&`HE2WsTwJx@JJ Htor}i=a>Zq literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/7/7_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e31d8b6b67cfcdd8040b38952db157451aa526c7 GIT binary patch literal 571 zcmV-B0>u6Q*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kr^q zT{_ZByYCNb*0#~|^G{_WBJ++|t_5RJTG|JRwVw;z&vByPNoh3k7+uf;N|Fz8*N(kw ztkJ$Pc-GfZv==(FUt23|lHTStWsyn23~`h7&-hcmHR!r_iSZidEjP(X=Y=Pd2!;es zdV}@G@AwsY-4)k-G0Cx#l)-zaFP7y>6`)2aw>m|TC94<#QkpK92n!2 zTY@|JY7n2zO>tCLLE&E+>mCiB@@*bi<9oPFG8aw64#XbBRt%Cn(!8>}JdVYg*yOQ2 JNj|jN|JmcKgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k&OI zXgvwY;8uMV=vo(!^xp;ePAGgor^hdd?-9P)s9Y{ZxZm<5VD|t6o|(s9&G8qByjf$Q ze`af%#pTTUy{bzkwa6#PhkoSbo*A~}jBqi}P(1#M?fgHbLE+5}d||8tBrS~^+dR)O z{{WVbJ0fs-#^M0zdE_szu5~;6i|ffuw>J_rvdBOMn4FWxy;r4EwSmAmIpkKqi9Abx e;*CWv?}Ra|Q7kZ9+os51jYa~Z=Yd%CSO3{pX4M@4 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c7f06c11fc812f7518ea16649d706c59d2740fab GIT binary patch literal 622 zcmV-!0+Idy*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kz@zbX__CyD@*?X0O*aY zBkVy8Y$K9K&emyIjN}~WgYEM3T(^n7B0=G;9`;>kOFN$!U)q~VY;^e6lj+{RZ>_Hg=ndkJ7HPUF%pn(Yg=q-R)c}?_?r;rz--PdV-9N_Gnh%A1FLkDP zMhV?+=DLNye!)O#OE)0!FahU}pz!|yh;c&?#7_{%Zh<0O`9M+7e8)enb5%W^<<6gX z9o3!0w)YVo$t+A&l=~4~MxpUb#`>j+vbymN(SV_imNiJrDe4O-1pX)2*0~Z%B$7!z INu;m;*-Z%lXaE2J literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1d0ca137624f3261bae24a6ef6a575a542df331d GIT binary patch literal 598 zcmV-c0;&D~*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kfFfIahC z+ULW~YeUo0_`Rl~Z;1@jY4Vwt-(gi@BLRSN>)h8TMSBOs8xQzPyalUxOHRLiCsAv( zySlsbiCc?&1@g-bV1jZ1JpBt}3&%bq{>ZhTz&aJY_F6rR?6)Rw_1BVy<=pmO1_0~_ z(0S!q)2yY`^*c)lHu=|6Bq_MyZejq>;%nA#w6}&6qUqB~qIfG$oE!aCVdcrFPKT1e z#OEXALBPg-o_phu5XIuJ8ERV05Ex;(ka=p~dupgqTik(@?rWc?Mgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k|=CBZW5{dY?h=Yqej4 z+R$lWn_18y)FOfBlEJS_PKtmQ$WK7CvM3ev2# zzZq$ocA({Lr<8^O;JFG)pgoHa7d^LErubTa60eI#iFNxI(Y!U`)SDJ;oi74ML~|Th Q7cU~A>A+$@tm-TO+0_c|CIA2c literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1856f9ec3adfbc08b7a3317e6e6c8bfb36ee8807 GIT binary patch literal 596 zcmV-a0;~Q1*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k!_`5VUl}^SR`@ArJ0!Y01EU-z6JQz z^r^4rg3jN{jifM3Kkp9SzyL;lGHcCfuSEDWuK0Vy{xo~f5WI0m_GVjoq>Q+ZUCYk^ z z8FZTr?SMAoli+hAlg1850P)|P*AGQ{*TIXJZ>)St;Z@YzOw=`4qH8;)BoOhI;Bqm32sj|t ij-lcmZ&$aD4NF+mFJX-3Be}VG6;3gb7?3MAzyI0NiSbGR literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_5.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/8/8_5.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22429dfcb6758197595c34cb171ace11b3809a6b GIT binary patch literal 599 zcmV-d0;v7}*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k593md@k`8i>BUQ%-VeGWKY_nwYy0rg>#MUqmVyeP%Dd~y+h#47dpk}yWznc z=Fd^G`KCfb+fIjcG7>rv-97sngT$Klnc+P*R`8~PXS>ucDI`PZ~Bhczo5YTrcI`WJ)rJBa4gH5rGM z_SsYBFS&p+62OE5APgKD@_!a;v1^_#)%8dL5ZztLEO{9DOB{Zfta@@gM(XIrT~1Y$ l;DhQa-R7~W>JY~b?xS~e6kqDnY1!32fSx*^&Z$vf|Jl^~@)7_5 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_1.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cb3a53b5d58d5c4b968ae8a48f2238dc61621a6c GIT binary patch literal 554 zcmV+_0@eNh*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k~wB%-~0 z!x}jFci&m0Y2v@uqdzp*@kA@0RR91 literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_2.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2c026748e0bbf1cfb2dd0ff552b630bab9f8f70c GIT binary patch literal 548 zcmV+<0^9xn*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kKRD~^Q?L+-24xw!+GGn7e(;5iR?7JS5=wh)uman zdxRvcaia17P{%m~gU$&RgYmapvX@iRye+3p_Yi0n{{Ux_c^ES^m{37( literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_3.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..50a5df959e31c07c9dd740f8b4ec8d8c99d6f236 GIT binary patch literal 552 zcmV+@0@wZj*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kSKO|9r! zpNBO!({+0{wYxwV#^fFd$RL72A46HxSJK`J((k-A;ExV}!Xc$aaec2RnSHBHo7U4R z4hR?}LC6C*%ATaxHTy%)X3ydKdx_(dUWNnquOwjt9CL%n%Lc&o&3JVc>^}o1*6uZl z-d$?)-@}?jO?7h@nnXn4;d<~s^B%`J qMQmxlDb}=&7f{jcFH9CXfW_2n8WSMKF}RJuV>|*npIXPFzyH~hVA(hT literal 0 HcmV?d00001 diff --git a/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_4.jpg b/ML/TensorFlow/Basics/tutorial18-customdata-images/data/mnist_subfolders/9/9_4.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2f9e80d4ed3f500a10098576eafcd2c3a4d2b01 GIT binary patch literal 539 zcmV+$0_6Sw*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5k!MS2H~H5wzI-j!9gq zk4?2F#hV*gFSL94ES|?))U5v3soJsOBx8Va*qkvVw|;BR=&tsEiLLgjHETTr#t#up zsvoS3p$tRrG4@DJoP}OgB dU$XtSb1&H~($*ZP8zNloUI#eI%CR*#F=F5K2Z#MgRc;000310RRC1+Wgv=4-_35A08bV92_7dE+-%&EF&BoC^soAFflYVG#@89JvcHvE;BST|G)qX2ml-a z9036l0RO}Q9{>OW1pxs80RaI300000000010s{mE1_uZU3Jd?l0JRVR0s#X90t5pE z1q1{D00Dgg0s{a95d{(Xb($mz{*4NnC+Tr5kpEp*!}i_3yCBDaa8Y z;pU5Xb9<;;qup!J!cUvKKXv*qbDaF6-
    Overall, this is second-rate action trash. There are countless better films to see, and if you really want to see this one, watch Judgement Night, which is practically a carbon copy but has better acting and a better script. The only thing that made this at all worth watching was a decent hand on the camera - the cinematography was almost refreshing, which comes close to making up for the horrible film itself - but not quite. 4/10." +2,test,neg,10001_1.txt,"First of all I hate those moronic rappers, who could'nt act if they had a gun pressed against their foreheads. All they do is curse and shoot each other and acting like cliché'e version of gangsters.

    The movie doesn't take more than five minutes to explain what is going on before we're already at the warehouse There is not a single sympathetic character in this movie, except for the homeless guy, who is also the only one with half a brain.

    Bill Paxton and William Sadler are both hill billies and Sadlers character is just as much a villain as the gangsters. I did'nt like him right from the start.

    The movie is filled with pointless violence and Walter Hills specialty: people falling through windows with glass flying everywhere. There is pretty much no plot and it is a big problem when you root for no-one. Everybody dies, except from Paxton and the homeless guy and everybody get what they deserve.

    The only two black people that can act is the homeless guy and the junkie but they're actors by profession, not annoying ugly brain dead rappers.

    Stay away from this crap and watch 48 hours 1 and 2 instead. At lest they have characters you care about, a sense of humor and nothing but real actors in the cast." +3,test,neg,10002_3.txt,"Not even the Beatles could write songs everyone liked, and although Walter Hill is no mop-top he's second to none when it comes to thought provoking action movies. The nineties came and social platforms were changing in music and film, the emergence of the Rapper turned movie star was in full swing, the acting took a back seat to each man's overpowering regional accent and transparent acting. This was one of the many ice-t movies i saw as a kid and loved, only to watch them later and cringe. Bill Paxton and William Sadler are firemen with basic lives until a burning building tenant about to go up in flames hands over a map with gold implications. I hand it to Walter for quickly and neatly setting up the main characters and location. But i fault everyone involved for turning out Lame-o performances. Ice-t and cube must have been red hot at this time, and while I've enjoyed both their careers as rappers, in my opinion they fell flat in this movie. It's about ninety minutes of one guy ridiculously turning his back on the other guy to the point you find yourself locked in multiple states of disbelief. Now this is a movie, its not a documentary so i wont waste my time recounting all the stupid plot twists in this movie, but there were many, and they led nowhere. I got the feeling watching this that everyone on set was sord of confused and just playing things off the cuff. There are two things i still enjoy about it, one involves a scene with a needle and the other is Sadler's huge 45 pistol. Bottom line this movie is like domino's pizza. Yeah ill eat it if I'm hungry and i don't feel like cooking, But I'm well aware it tastes like crap. 3 stars, meh." +4,test,neg,10003_3.txt,"Brass pictures (movies is not a fitting word for them) really are somewhat brassy. Their alluring visual qualities are reminiscent of expensive high class TV commercials. But unfortunately Brass pictures are feature films with the pretense of wanting to entertain viewers for over two hours! In this they fail miserably, their undeniable, but rather soft and flabby than steamy, erotic qualities non withstanding.

    Senso '45 is a remake of a film by Luchino Visconti with the same title and Alida Valli and Farley Granger in the lead. The original tells a story of senseless love and lust in and around Venice during the Italian wars of independence. Brass moved the action from the 19th into the 20th century, 1945 to be exact, so there are Mussolini murals, men in black shirts, German uniforms or the tattered garb of the partisans. But it is just window dressing, the historic context is completely negligible.

    Anna Galiena plays the attractive aristocratic woman who falls for the amoral SS guy who always puts on too much lipstick. She is an attractive, versatile, well trained Italian actress and clearly above the material. Her wide range of facial expressions (signalling boredom, loathing, delight, fear, hate ... and ecstasy) are the best reason to watch this picture and worth two stars. She endures this basically trashy stuff with an astonishing amount of dignity. I wish some really good parts come along for her. She really deserves it." +5,test,neg,10004_2.txt,"A funny thing happened to me while watching ""Mosquito"": on the one hand, the hero is a deaf-mute and the director is totally unable to make us understand why he does what he does (mutilating mannequins...er, excuse me, corpses) through his images. On the other hand, the English version at least is very badly dubbed. So I found myself wishing there had been both more AND less dialogue at the same time! This film is stupid (funny how this guy has access to every graveyard and mortuary in his town) and lurid (where would we be in a 70s exploitationer without our gratuitous lesbian scene?). Not to mention the ""romantic"" aspect (oh, how sweet!)...Miss it. (*)" \ No newline at end of file diff --git a/ML/TensorFlow/Basics/tutorial19-customdata-text/test_example2.csv b/ML/TensorFlow/Basics/tutorial19-customdata-text/test_example2.csv new file mode 100644 index 0000000..84f09d9 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial19-customdata-text/test_example2.csv @@ -0,0 +1,9 @@ +index,type,label,file,review +6,test,neg,10005_2.txt,"This German horror film has to be one of the weirdest I have seen.

    I was not aware of any connection between child abuse and vampirism, but this is supposed based upon a true character.

    Our hero is deaf and mute as a result of repeated beatings at the hands of his father. he also has a doll fetish, but I cannot figure out where that came from. His co-workers find out and tease him terribly.

    During the day a mild-manner accountant, and at night he breaks into cemeteries and funeral homes and drinks the blood of dead girls. They are all attractive, of course, else we wouldn't care about the fact that he usually tears their clothing down to the waist. He graduates eventually to actually killing, and that is what gets him caught.

    Like I said, a very strange movie that is dark and very slow as Werner Pochath never talks and just spends his time drinking blood." +7,test,neg,10006_2.txt,"Being a long-time fan of Japanese film, I expected more than this. I can't really be bothered to write to much, as this movie is just so poor. The story might be the cutest romantic little something ever, pity I couldn't stand the awful acting, the mess they called pacing, and the standard ""quirky"" Japanese story. If you've noticed how many Japanese movies use characters, plots and twists that seem too ""different"", forcedly so, then steer clear of this movie. Seriously, a 12-year old could have told you how this movie was going to move along, and that's not a good thing in my book.

    Fans of ""Beat"" Takeshi: his part in this movie is not really more than a cameo, and unless you're a rabid fan, you don't need to suffer through this waste of film.

    2/10" +8,test,neg,10007_4.txt,"""Tokyo Eyes"" tells of a 17 year old Japanese girl who falls in like with a man being hunted by her big bro who is a cop. This lame flick is about 50% filler and 50% talk, talk, and more talk. You'll get to see the less than stellar cast of three as they talk on the bus, talk and play video games, talk and get a haircut, talk and walk and walk and talk, talk on cell phones, hang out and talk, etc. as you read subtitles waiting for something to happen. The thin wisp of a story is not sufficient to support a film with low end production value, a meager cast, and no action, no romance, no sex or nudity, no heavy drama...just incessant yadayadayada'ing. (C-)" +9,test,neg,10008_4.txt,"Wealthy horse ranchers in Buenos Aires have a long-standing no-trading policy with the Crawfords of Manhattan, but what happens when the mustachioed Latin son falls for a certain Crawford with bright eyes, blonde hair, and some perky moves on the dance floor? 20th Century-Fox musical has a glossy veneer yet seems a bit tatty around the edges. It is very heavy on the frenetic, gymnastic-like dancing, exceedingly thin on story. Betty Grable (an eleventh hour replacement for Alice Faye) gives it a boost, even though she's paired with leaden Don Ameche (in tan make-up and slick hair). Also good: Charlotte Greenwood as Betty's pithy aunt, a limousine driver who's constantly asleep on the job, and Carmen Miranda playing herself (who else?). The stock shots of Argentina far outclass the action filmed on the Fox backlot, and some of the supporting performances are quite awful. By the time of the big horserace finale, most viewers will have had enough. *1/2 from ****" +10,test,neg,10009_3.txt,"Cage plays a drunk and gets high critically praise. Elizabeth Shue Actually has to do a love seen with the most unattractive and overrated piece of dung flesh in Hollywood. I literally vomited while watching this film. Of course I had the flu, but that does not mean this film did not contribute to the vomit in the kamode.

    Why can't Nick Cage play something he can really pull off like a bad actor. Nick Cage who be brilliant in a role as a bad actor. Heck nobody could do it better.

    The search begins for Nick's contract with Lucifer or was it Lou Cipher from ""Night Train To Terror""." +11,test,neg,1000_3.txt,"First of all, I would like to say that I am a fan of all of the actors that appear in this film and at the time that I rented it, I wanted to like it.

    I think that the main reason that I was so disappointed was that the outside box promised me a suspense thriller. In my eyes, a suspense thriller for British movies is like something out of a Ruth Rendell novel, something that has a lot of dark twist and turns and leaves the viewer with an ending that is unlikely to be forgotten anytime soon.

    This movie started out with the promising note of being such a film. We have our main character, that suspects a man that he does not like, of being involved in a hit and run that killed the husband of one of his servants.His notions prove to be right, but the idea that his wife might be involved, does not occur to him until that she confesses to him that she was a part of the crime.

    The elements of a good suspense thriller were in place, at this point, but from there, I felt that the film took a different direction and became almost some sort of a mild soap opera about who wants to be with who and what the love of a real relationship is. The film might have been enjoyable to me, if the outside box had talked of a twisted lover's triangle and had not been labeled as suspense thriller.This seemed to be more of a soap opera story and the beginning setting seemed to be a mild distraction to the true content of the film. I felt like this film could have done a whole lot better than it did. I felt like it kept leading the viewer up to a big event that never materialized. So, I have to give it a lower rating than I would have liked to and say that it fell short of my expectations." +12,test,neg,10010_2.txt,"So tell me - what serious boozer drinks Budweiser? How many suicidally-obsessed drinkers house a fully stocked and barely touched range of drinks in their lonely motel room that a millionaire playboy's bachelor-pad bar would be proud to boast? And what kind of an alcoholic tends to drink with the bottle held about 8 inches from his hungry mouth so that the contents generally spill all over his face? Not to mention wasting good whisky by dousing your girlfriend's tits with it, just so the cinema audience can get a good eyeful of Elisabeth Shue's assets.

    Cage seems to be portraying the most attention-seeking look-at-me alcoholic ever to have graced the screen while Shue looks more like a Berkely preppy slumming it for a summer than some seasoned street-walker. She is humiliated and subjugated as often as possible in this revolting movie with beatings, skin lacerations, anal rape and graphic verbal abuse - all of it completely implausible and included apparently only to convey a sense of her horribly demeaned state and offer the male viewers an astonishingly clichéd sentimental sexual fantasy of the 'tart-with-a-heart'.

    Still - I did watch it to the end, by which time I was actually laughing out loud as Shue's tough street hooker chopped carrots in the kitchen wanly, pathetically smiling while Cage - all eyes popping and shaking like like a man operating a road drill in an earthquake - grimaced and mugged his way through the final half-hour..." +13,test,neg,10011_1.txt,"A big disappointment for what was touted as an incredible film. Incredibly bad. Very pretentious. It would be nice if just once someone would create a high profile role for a young woman that was not a prostitute.

    We don't really learn anything about this character, except that he seems to be a hopeless alcoholic. We don't know why. Nicholas Cage turns in an excellent performance as usual, but I feel that this role and this script let him down. And how, after not being able to perform for the whole film, can he have an erection on his deathbed? Really terrible and I felt like I needed a bath." \ No newline at end of file diff --git a/ML/TensorFlow/Basics/tutorial19-customdata-text/test_example3.csv b/ML/TensorFlow/Basics/tutorial19-customdata-text/test_example3.csv new file mode 100644 index 0000000..cc42e9a --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial19-customdata-text/test_example3.csv @@ -0,0 +1,11 @@ +index,type,label,file,review +14,test,neg,10012_1.txt,"This film is absolutely appalling and awful. It's not low budget, it's a no budget film that makes Ed Wood's movies look like art. The acting is abysmal but sets and props are worse then anything I have ever seen. An ordinary subway train is used to transport people to the evil zone of killer mutants, Woddy Strode has one bullet and the fight scenes are shot in a disused gravel pit. There is sadism as you would expect from an 80s Italian video nasty. No talent was used to make this film. And the female love interest has a huge bhind- Italian taste maybe. Even for 80s Italian standards this film is pretty damn awful but I guess it came out at a time when there weren't so many films available on video or viewers weren't really discerning. This piece of crap has no entertainment value whatsoever and it's not even funny, just boring and extremely cheap. It's actually and insult to the most stupid audience. I just wonder how on earth an actor like Woody Strode ended up ia a turkey like this?" +15,test,neg,10013_4.txt,"Here's a decidedly average Italian post apocalyptic take on the hunting/killing humans for sport theme ala The Most Dangerous Game, Turkey Shoot, Gymkata and The Running Man.

    Certainly the film reviewed here is nowhere near as much fun as the other listed entries and is furthermore dragged down by poor voice over work, generally bland action sequences, a number of entirely tasteless scenes such as a prolonged rape sequence and some truly stupid and illogical points throughout.

    Take for example towards the end of the film, when our hero manages to infiltrate the compound of the villains. He initially kills a sentry and leaves him in his jeep. Upon discovery of the said corpse, the villains response? (bearing in mind that our hero has come to brutally murder them all) Â? They resolve to wait until the next morning to look for the culprit (!!!!!!!!!!)

    However, I suppose to be fair the film remains nonetheless about watchable if you can suspend your disbelief during such stupid scenes and does benefit immensely by the presence of the always excellent Woody Strode (even if his screen time is very limited)

    Not a classic by any stretch of the imagination but still just about worthy of a watch for Italian B-Movie enthusiasts." +16,test,neg,10014_2.txt,"At the bottom end of the apocalypse movie scale is this piece of pish called 'The Final Executioner'.. at least where I come from. A bloke is trained by an ex-cop to seek vengeance on those that killed his woman and friends in cold blood.. and that's about it. Lots of fake explosions and repetitive shootings ensue. Has one of the weirdest array of costumes I've seen in a film for a while, and a massive fortress which is apparently only run by 7 people. GREAT job on the dubbing too guys(!) Best moment: when our hero loses a swordfight and is about to be skewered through the neck, he just gets out his gun and BANG! Why not do that earlier? It's a mystery. As is why anyone would want to sit through this in the first place. I'm still puzzling over that one myself now.. 2/10" +17,test,neg,10015_4.txt,"Earth has been destroyed in a nuclear holocaust. Well, parts of the Earth, because somewhere in Italy, a band of purebred survivors--those without radioactive contamination--are holed up in a massive mansion surrounded by lush grounds, waiting for the next opportunity to go hunting for those with polluted blood. The Final Executioner is the story of one of their would be victims, Alan (William Mang, who looks, not surprisingly, a lot like Kurt Russell), and his efforts to take down the legally sanctioned hunters, who are led by Edra (Marina Costa) and Erasmus (Harrison Muller Jr. ). Alan has been trained to kill by former NYPD cop Sam (Woody Strode) who mostly hangs around giving his pupil moral support and mooching for tinned meat. Strode is by far the best thing about the film, though he doesn't look at all well and only appears for about a third of the running time. As for the story, it's a blending of elements from better films and stories, including Ten Little Indians, The Most Dangerous Game, and Escape From New York. The Final Executioner moves along at a fair pace and provides reasonable entertainment for less discriminate action fans." +18,test,neg,10016_3.txt,"Many people are standing in front of the house n some women are crying... Men standing in close groups and speaking in hushed up tone... a couple of guys come in and they are discussing how sexy the daughter might look today... soon u will know someone in the house has died... The dead person's wife is worried about preparing food for so many people, her friend sitting beside her gives an idea of making the matters easy by preparing simple roti sabji... One of the dead person's son is speaking with someone over the mobile, Daughter is busy with her makeup... her mother suggests her to wear salwar kameej, but the daughter is more interested in looking good when so many people will be visiting their house and hence prefers jeans and T shirt over salwar kameez... another son asks her mom to finish all the kriyas and also indicates to her that he should not be expected to come early from the office... Then the camera slowly focuses on the dead person... the white cloth covering the face is displaced slightly due to the wind, revealing the face ... Its Anupam Kher... suddenly alarm rings and he gets up from the bed... Is it his dream or a flash back? U won't get an answer until the end of the movie...Well, This is wat comedy is for the director Dibakar Banerjee!!!!! Later u find out this scene has nothing to do with the actual movie and hence making everything obvious that the still described earlier was a dream. Is this a film comedy? Well it is supposed to belong to that category... But it actually does not!!! there is nothing that can be remotely associated with comedy in the movie!!! More over the director gives the message that no one will get justice from Police!!! so everyone must cheat the cheats!!!! or forget about Justice!!!! Music by Bapi-Tutul & Dhruv Dhalla is OK... Nothing much to tell about other sectors... Bad script destroys everything... not even Anupam Kher's performance succeeds in making it at least a paisa vasool..." +19,test,neg,10017_1.txt,"New York family is the last in their neighborhood to get a television set, which nearly ruins David Niven's marriage to Mitzi Gaynor. Bedroom comedy that rarely ventures into the bedroom(and nothing sexy happens there anyway). Gaynor as an actress has about as much range as an oven--she turns on, she turns off. Film's sole compensation is a supporting performance by perky Patty Duke, pre-""Miracle Worker"", as Niven's daughter. She's delightful; ""Happy Anniversary"" is not. * from ****" +20,test,neg,10018_1.txt,"The best thing about ""The Prey"" is the tag line...""It's not human and it's got an axe""! The movie itself is a padded stinkaroo....endless insect and wildlife shots make the viewer wanna die! No slasher fan will like this garbage.....Watch ""Friday the 13th"" again and burn any copy of this film you find!

    It also rates as one of the 25 worst films ever made!" +21,test,neg,10019_1.txt,"This is truly, without exaggerating, one of the worst Slasher movies ever made. I know, it came out in the 80's following a tendency started by ""Friday the 13th"". ""The Prey"" copies the fore-mentioned movie in many aspects. The woods setting, the killer, the dumb teens, the gore, etc.

    But ""The Prey"" is as bad as you might expect. I didn't even remember about it if it wasn't for coincidence.

    Well, the killer is in fact human so don't expect a supernatural killer in the likes of Jason. The situations rather boring and lack of tension, gore, violence, etc. It just does not works for a slasher flick.

    The acting is simply horrid. The score is horrible! a combination of boring instruments with cheesy 80's tunes?! I won't even mention the technical aspects of the movie because believe me, it seems that it cost only 20 dollars.

    Please avoid this one like the plague. It's one of the worst movies I've ever seen, and that's something to say. Thank God it seems to have vanished from earth." +22,test,neg,1001_4.txt,"I'm a huge fan of both Emily Watson (Breaking The Waves) and Tom Wilkinson (Normal) and was amused to see them upstaged by Rupert Everett (Dellamorte Dellamore) in this shockingly rather minor movie that had all the ingredients to be so much more. The too brief scenes in which he portrays a languid, infinitely entitled, worthless son of a rich Lord are spot-on and entertaining. But for a love triangle there was remarkably little chemistry to speak of between anyone. The music was annoyingly movie-of-the-week quality, and the voice-over jarring and totally unnecessary. Clearly the work of a first-time director with a small budget who either lacked or didn't sufficiently heed good advice. Too bad.

    I can appreciate how the people you kind of hate at the beginning are the ones you kind of like at the end, and vice-versa, so there is some sort of character arc, at least in terms of perception. For example, Watson's character, while refreshingly honest to her husband about her feelings for another man, began to grate on me near the end, particularly when she announced to her husband that she simply had absolutely no control over her actions, and later when she simply declared that she would be moving back into their marital flat, with no asking of permission, no apologies offered. And I went from disliking Wilkinson's control freak / moral relativist character to sort of understanding him and not really wanting him to change (unlike his wife).

    This movie awkwardly morphed from a whodunit to a ""Love Story"" or ""Steel Magnolias"" illness drama without sufficiently informing me of the fact, so I was left distractedly guessing what the next plot twist might be long after they had all been revealed (Was it the Lord driving the car? The Lord's dog?). The scene where the Lord visits Wilkinson and relates how brave Watson is, the bestest nurse any dying boyfriend could ever ask for, Florence Nightingale incarnate, etc. was OK until he started over-the-top sobbing like a baby. Good God! If you ask me she's just another flitty rich person with way too much time on her hands, and so she drives her hard working, well providing spouse crazy with unnecessary drama. Her screwing around was just another way to occupy her empty life; the dying guy thing was an added bonus for her as it somehow made her previous actions completely above reproach.

    Look, everyone would have been better off if Wilkinson had just left her for his secretary, who seemed to appreciate him for who he was. Instead he acted like an abused dog, his open craving for his wife's affection increasing with every kick she gives him. I'm not anti PC or anything, it just didn't ring true, even after taking into account all of the harsh realities of middle age we all tend to face. The ending for me was (and not the director's intention I am certain) depressing. The movie spent the last 80 minutes convincing me that these two people just don't belong together, so I found no joy in the promise of their relationship continuing. I'm not above wanting my emotions manipulated by a story, it just has to be somewhat plausible and not hackneyed. Is that asking too much?

    My score: 4/10" +23,test,neg,10020_1.txt,"Sure, most of the slasher films of the 1980's were not worth the

    celluloid they were filmed on, but this video nightmare may well be

    the dullest produced.

    Six horny pot smoking students decide to go camping. Of course,

    and you know this already, they begin getting killed one by one by a

    mysterious stranger. The climax has a hunky forest ranger trying to

    get to the teens in time before the last cute girl becomes buzzard

    bait.

    John Carl Buechler, my least favorite B-movie guy, did the lousy

    makeup effects here. The cast features Carel Struycken, of ""The

    Witches of Eastwick"" and the Addams family movies. Sadly, he

    does not pop up until the very end of the film, and is covered in

    burn makeup, rendering him unrecognizable. Steve Bond (anyone

    remember him?) is here in an early role as a victim.

    Brown's direction, and the script he cowrote, both smell like the

    presents brown bears leave in the woods. He pads the film with

    so much stock wilderness footage, I thought I accidentally rented a

    special episode of Mutual of Omaha's Wild Kingdom. Much of the

    cast sits around the campfire and eats, then walk, and sit and eat

    again. The forest ranger is involved in the strangest scene ever put

    in a slasher film: he tells a joke about a wide mouthed frog to a

    baby deer. Jackie Coogan, who must have forgot he once worked

    with the legends of silent cinema, has two scenes, and is involved

    in the second strangest scene ever put in a slasher film: he and

    the hunky forest ranger have a conversation about cucumber and

    cream cheese sandwiches on oatmeal bread...yeah.

    There is not one minute of suspense here. The killer, a forest fire

    survivor looking for a mate, watches the students from behind

    trees. We know it is the killer because the film makers have

    dubbed in a heart beat sound effect that helpfully serves to wake

    the viewer up every few minutes. Skip this pile of pine sap and rent

    ""Halloween,"" instead.

    This is rated (R) for physical violence, mild gun violence, gore,

    some profanity, brief female nudity, mild sexual content, sexual

    references, and drug abuse." \ No newline at end of file diff --git a/ML/TensorFlow/Basics/tutorial19-customdata-text/tutorial19-customdata-text.py b/ML/TensorFlow/Basics/tutorial19-customdata-text/tutorial19-customdata-text.py new file mode 100644 index 0000000..e346c39 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial19-customdata-text/tutorial19-customdata-text.py @@ -0,0 +1,170 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +import pandas as pd +import tensorflow_datasets as tfds +from tensorflow import keras +from tensorflow.keras import layers +import pickle + +tokenizer = tfds.features.text.Tokenizer() + +english = tf.data.TextLineDataset("english.csv") +swedish = tf.data.TextLineDataset("swedish.csv") +dataset = tf.data.Dataset.zip((english, swedish)) + +for eng, swe in dataset.skip(1): + print(tokenizer.tokenize(eng.numpy())) + print(tokenizer.tokenize(swe.numpy().decode("UTF-8"))) + +# TODO: +# 1. vocabulary (for each language) +# 2. tokenize and numericalize words +# 3. padded_batch, create model + + +import sys + +sys.exit() + + +## Example if you have multiple files +file_names = ["test_example1.csv", "test_example2.csv", "test_example3.csv"] +dataset = tf.data.TextLineDataset(file_names) + +dataset1 = tf.data.TextLineDataset("test_example1.csv").skip(1) # .map(preprocess1) +dataset2 = tf.data.TextLineDataset("test_example2.csv").skip(1) # .map(preprocess1) +dataset3 = tf.data.TextLineDataset("test_example3.csv").skip(1) # .map(preprocess1) + +dataset = dataset1.concatenate(dataset2).concatenate(dataset3) + +for line in dataset: + print(line) + + +import sys + +sys.exit() + + +def filter_train(line): + split_line = tf.strings.split(line, ",", maxsplit=4) + dataset_belonging = split_line[1] # train, test + sentiment_category = split_line[2] # pos, neg, unsup + + return ( + True + if dataset_belonging == "train" and sentiment_category != "unsup" + else False + ) + + +def filter_test(line): + split_line = tf.strings.split(line, ",", maxsplit=4) + dataset_belonging = split_line[1] # train, test + sentiment_category = split_line[2] # pos, neg, unsup + + return ( + True if dataset_belonging == "test" and sentiment_category != "unsup" else False + ) + + +ds_train = tf.data.TextLineDataset("imdb.csv").filter(filter_train) +ds_test = tf.data.TextLineDataset("imdb.csv").filter(filter_test) + +# TODO: +# 1. Create vocabulary +# 2. Numericalize text str -> indices (TokenTextEncoder) +# 3. Pad the batches so we can send in to an RNN for example + +tokenizer = tfds.features.text.Tokenizer() +# 'i love banana' -> ['i', 'love', 'banana'] -> [0, 1, 2] + + +def build_vocabulary(ds_train, threshold=200): + """ Build a vocabulary """ + frequencies = {} + vocabulary = set() + vocabulary.update(["sostoken"]) + vocabulary.update(["eostoken"]) + + for line in ds_train.skip(1): + split_line = tf.strings.split(line, ",", maxsplit=4) + review = split_line[4] + tokenized_text = tokenizer.tokenize(review.numpy().lower()) + + for word in tokenized_text: + if word not in frequencies: + frequencies[word] = 1 + + else: + frequencies[word] += 1 + + # if we've reached the threshold + if frequencies[word] == threshold: + vocabulary.update(tokenized_text) + + return vocabulary + + +# Build vocabulary and save it to vocabulary.obj +vocabulary = build_vocabulary(ds_train) +vocab_file = open("vocabulary.obj", "wb") +pickle.dump(vocabulary, vocab_file) + +# Loading the vocabulary +# vocab_file = open("vocabulary.obj", "rb") +# vocabulary = pickle.load(vocab_file) + +encoder = tfds.features.text.TokenTextEncoder( + list(vocabulary), oov_token="", lowercase=True, tokenizer=tokenizer, +) + + +def my_encoder(text_tensor, label): + encoded_text = encoder.encode(text_tensor.numpy()) + return encoded_text, label + + +def encode_map_fn(line): + split_line = tf.strings.split(line, ",", maxsplit=4) + label_str = split_line[2] # neg, pos + review = "sostoken " + split_line[4] + " eostoken" + label = 1 if label_str == "pos" else 0 + + (encoded_text, label) = tf.py_function( + my_encoder, inp=[review, label], Tout=(tf.int64, tf.int32), + ) + + encoded_text.set_shape([None]) + label.set_shape([]) + return encoded_text, label + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +ds_train = ds_train.map(encode_map_fn, num_parallel_calls=AUTOTUNE).cache() +ds_train = ds_train.shuffle(25000) +ds_train = ds_train.padded_batch(32, padded_shapes=([None], ())) + +ds_test = ds_test.map(encode_map_fn) +ds_test = ds_test.padded_batch(32, padded_shapes=([None], ())) + +model = keras.Sequential( + [ + layers.Masking(mask_value=0), + layers.Embedding(input_dim=len(vocabulary) + 2, output_dim=32,), + layers.GlobalAveragePooling1D(), + layers.Dense(64, activation="relu"), + layers.Dense(1), + ] +) + +model.compile( + loss=keras.losses.BinaryCrossentropy(from_logits=True), + optimizer=keras.optimizers.Adam(3e-4, clipnorm=1), + metrics=["accuracy"], +) + +model.fit(ds_train, epochs=15, verbose=2) +model.evaluate(ds_test) diff --git a/ML/TensorFlow/Basics/tutorial2-tensorbasics.py b/ML/TensorFlow/Basics/tutorial2-tensorbasics.py new file mode 100644 index 0000000..15d940a --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial2-tensorbasics.py @@ -0,0 +1,82 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import tensorflow as tf + +# Initialization +x = tf.constant(4, shape=(1, 1), dtype=tf.float32) +print(x) + +x = tf.constant([[1, 2, 3], [4, 5, 6]], shape=(2, 3)) +print(x) + +x = tf.eye(3) +print(x) + +x = tf.ones((4, 3)) +print(x) + +x = tf.zeros((3, 2, 5)) +print(x) + +x = tf.random.uniform((2, 2), minval=0, maxval=1) +print(x) + +x = tf.random.normal((3, 3), mean=0, stddev=1) +print(tf.cast(x, dtype=tf.float64)) +# tf.float (16,32,64), tf.int (8, 16, 32, 64), tf.bool + +x = tf.range(9) +x = tf.range(start=0, limit=10, delta=2) +print(x) + +# Math +x = tf.constant([1, 2, 3]) +y = tf.constant([9, 8, 7]) + +z = tf.add(x, y) +z = x + y + +z = tf.subtract(x, y) +z = x - y + +z = tf.divide(x, y) +z = x / y + +z = tf.multiply(x, y) +z = x * y + +z = tf.tensordot(x, y, axes=1) + +z = x ** 5 + +x = tf.random.normal((2, 3)) +y = tf.random.normal((3, 2)) +z = tf.matmul(x, y) +z = x @ y + +x = tf.random.normal((2, 2)) + +# Indexing +x = tf.constant([0, 1, 1, 2, 3, 1, 2, 3]) +print(x[:]) +print(x[1:]) +print(x[1:3]) +print(x[::2]) +print(x[::-1]) + +indices = tf.constant([0, 3]) +x_indices = tf.gather(x, indices) + +x = tf.constant([[1, 2], [3, 4], [5, 6]]) + +print(x[0, :]) +print(x[0:2, :]) + +# Reshaping +x = tf.range(9) + +x = tf.reshape(x, (3, 3)) + +x = tf.transpose(x, perm=[1, 0]) diff --git a/ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/process_data.py b/ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/process_data.py new file mode 100644 index 0000000..53e43d0 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/process_data.py @@ -0,0 +1,54 @@ +import os +import shutil +import random + +seed = 1 +random.seed(seed) +directory = "ISIC/images/" +train = "data/train/" +test = "data/test/" +validation = "data/validation/" + +os.makedirs(train + "benign/") +os.makedirs(train + "malignant/") +os.makedirs(test + "benign/") +os.makedirs(test + "malignant/") +os.makedirs(validation + "benign/") +os.makedirs(validation + "malignant/") + +test_examples = train_examples = validation_examples = 0 + +for line in open("ISIC/labels.csv").readlines()[1:]: + split_line = line.split(",") + img_file = split_line[0] + benign_malign = split_line[1] + + random_num = random.random() + + if random_num < 0.8: + location = train + train_examples += 1 + + elif random_num < 0.9: + location = validation + validation_examples += 1 + + else: + location = test + test_examples += 1 + + if int(float(benign_malign)) == 0: + shutil.copy( + "ISIC/images/" + img_file + ".jpg", + location + "benign/" + img_file + ".jpg", + ) + + elif int(float(benign_malign)) == 1: + shutil.copy( + "ISIC/images/" + img_file + ".jpg", + location + "malignant/" + img_file + ".jpg", + ) + +print(f"Number of training examples {train_examples}") +print(f"Number of test examples {test_examples}") +print(f"Number of validation examples {validation_examples}") diff --git a/ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/train_isic.py b/ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/train_isic.py new file mode 100644 index 0000000..023c4ad --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example/train_isic.py @@ -0,0 +1,117 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +import math +import tensorflow_hub as hub +import numpy as np +import matplotlib.pyplot as plt +from tensorflow import keras +from tensorflow.keras import layers +from sklearn.metrics import roc_curve +from tensorflow.keras.preprocessing.image import ImageDataGenerator + +train_examples = 20225 +test_examples = 2551 +validation_examples = 2555 +img_height = img_width = 224 +batch_size = 32 + +# NasNet +# model = keras.Sequential([ +# hub.KerasLayer("https://tfhub.dev/google/imagenet/nasnet_mobile/feature_vector/4", +# trainable=True), +# layers.Dense(1, activation="sigmoid"), +# ]) + +model = keras.models.load_model("isic_model/") + +train_datagen = ImageDataGenerator( + rescale=1.0 / 255, + rotation_range=15, + zoom_range=(0.95, 0.95), + horizontal_flip=True, + vertical_flip=True, + data_format="channels_last", + dtype=tf.float32, +) + +validation_datagen = ImageDataGenerator(rescale=1.0 / 255, dtype=tf.float32) +test_datagen = ImageDataGenerator(rescale=1.0 / 255, dtype=tf.float32) + +train_gen = train_datagen.flow_from_directory( + "data/train/", + target_size=(img_height, img_width), + batch_size=batch_size, + color_mode="rgb", + class_mode="binary", + shuffle=True, + seed=123, +) + +validation_gen = validation_datagen.flow_from_directory( + "data/validation/", + target_size=(img_height, img_width), + batch_size=batch_size, + color_mode="rgb", + class_mode="binary", + shuffle=True, + seed=123, +) + +test_gen = test_datagen.flow_from_directory( + "data/test/", + target_size=(img_height, img_width), + batch_size=batch_size, + color_mode="rgb", + class_mode="binary", + shuffle=True, + seed=123, +) + +METRICS = [ + keras.metrics.BinaryAccuracy(name="accuracy"), + keras.metrics.Precision(name="precision"), + keras.metrics.Recall(name="recall"), + keras.metrics.AUC(name="auc"), +] + +model.compile( + optimizer=keras.optimizers.Adam(lr=3e-4), + loss=[keras.losses.BinaryCrossentropy(from_logits=False)], + metrics=METRICS, +) + +model.fit( + train_gen, + epochs=1, + verbose=2, + steps_per_epoch=train_examples // batch_size, + validation_data=validation_gen, + validation_steps=validation_examples // batch_size, + callbacks=[keras.callbacks.ModelCheckpoint("isic_model")], +) + + +def plot_roc(labels, data): + predictions = model.predict(data) + fp, tp, _ = roc_curve(labels, predictions) + + plt.plot(100 * fp, 100 * tp) + plt.xlabel("False positives [%]") + plt.ylabel("True positives [%]") + plt.show() + + +test_labels = np.array([]) +num_batches = 0 + +for _, y in test_gen: + test_labels = np.append(test_labels, y) + num_batches += 1 + if num_batches == math.ceil(test_examples / batch_size): + break + +plot_roc(test_labels, test_gen) +model.evaluate(validation_gen, verbose=2) +model.evaluate(test_gen, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial3-neuralnetwork.py b/ML/TensorFlow/Basics/tutorial3-neuralnetwork.py new file mode 100644 index 0000000..adaf13b --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial3-neuralnetwork.py @@ -0,0 +1,47 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import mnist + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(x_train, y_train), (x_test, y_test) = mnist.load_data() +x_train = x_train.reshape(-1, 28 * 28).astype("float32") / 255.0 +x_test = x_test.reshape(-1, 28 * 28).astype("float32") / 255.0 + +# Sequential API (Very convenient, not very flexible) +model = keras.Sequential( + [ + keras.Input(shape=(28 * 28)), + layers.Dense(512, activation="relu"), + layers.Dense(256, activation="relu"), + layers.Dense(10), + ] +) + +model = keras.Sequential() +model.add(keras.Input(shape=(784))) +model.add(layers.Dense(512, activation="relu")) +model.add(layers.Dense(256, activation="relu", name="my_layer")) +model.add(layers.Dense(10)) + +# Functional API (A bit more flexible) +inputs = keras.Input(shape=(784)) +x = layers.Dense(512, activation="relu", name="first_layer")(inputs) +x = layers.Dense(256, activation="relu", name="second_layer")(x) +outputs = layers.Dense(10, activation="softmax")(x) +model = keras.Model(inputs=inputs, outputs=outputs) + +model.compile( + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=False), + optimizer=keras.optimizers.Adam(lr=0.001), + metrics=["accuracy"], +) + +model.fit(x_train, y_train, batch_size=32, epochs=5, verbose=2) +model.evaluate(x_test, y_test, batch_size=32, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial4-convnet.py b/ML/TensorFlow/Basics/tutorial4-convnet.py new file mode 100644 index 0000000..b327134 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial4-convnet.py @@ -0,0 +1,60 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import cifar10 + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(x_train, y_train), (x_test, y_test) = cifar10.load_data() +x_train = x_train.astype("float32") / 255.0 +x_test = x_test.astype("float32") / 255.0 + +model = keras.Sequential( + [ + keras.Input(shape=(32, 32, 3)), + layers.Conv2D(32, 3, padding="valid", activation="relu"), + layers.MaxPooling2D(), + layers.Conv2D(64, 3, activation="relu"), + layers.MaxPooling2D(), + layers.Conv2D(128, 3, activation="relu"), + layers.Flatten(), + layers.Dense(64, activation="relu"), + layers.Dense(10), + ] +) + + +def my_model(): + inputs = keras.Input(shape=(32, 32, 3)) + x = layers.Conv2D(32, 3)(inputs) + x = layers.BatchNormalization()(x) + x = keras.activations.relu(x) + x = layers.MaxPooling2D()(x) + x = layers.Conv2D(64, 3)(x) + x = layers.BatchNormalization()(x) + x = keras.activations.relu(x) + x = layers.MaxPooling2D()(x) + x = layers.Conv2D(128, 3)(x) + x = layers.BatchNormalization()(x) + x = keras.activations.relu(x) + x = layers.Flatten()(x) + x = layers.Dense(64, activation="relu")(x) + outputs = layers.Dense(10)(x) + model = keras.Model(inputs=inputs, outputs=outputs) + return model + + +model = my_model() +model.compile( + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + optimizer=keras.optimizers.Adam(lr=3e-4), + metrics=["accuracy"], +) + +model.fit(x_train, y_train, batch_size=64, epochs=10, verbose=2) +model.evaluate(x_test, y_test, batch_size=64, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial5-regularization.py b/ML/TensorFlow/Basics/tutorial5-regularization.py new file mode 100644 index 0000000..445c903 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial5-regularization.py @@ -0,0 +1,55 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers, regularizers +from tensorflow.keras.datasets import cifar10 + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(x_train, y_train), (x_test, y_test) = cifar10.load_data() +x_train = x_train.astype("float32") / 255.0 +x_test = x_test.astype("float32") / 255.0 + + +def my_model(): + inputs = keras.Input(shape=(32, 32, 3)) + x = layers.Conv2D(32, 3, padding="same", kernel_regularizer=regularizers.l2(0.01),)( + inputs + ) + x = layers.BatchNormalization()(x) + x = keras.activations.relu(x) + x = layers.MaxPooling2D()(x) + x = layers.Conv2D(64, 3, padding="same", kernel_regularizer=regularizers.l2(0.01),)( + x + ) + x = layers.BatchNormalization()(x) + x = keras.activations.relu(x) + x = layers.MaxPooling2D()(x) + x = layers.Conv2D( + 128, 3, padding="same", kernel_regularizer=regularizers.l2(0.01), + )(x) + x = layers.BatchNormalization()(x) + x = keras.activations.relu(x) + x = layers.Flatten()(x) + x = layers.Dense(64, activation="relu", kernel_regularizer=regularizers.l2(0.01),)( + x + ) + x = layers.Dropout(0.5)(x) + outputs = layers.Dense(10)(x) + model = keras.Model(inputs=inputs, outputs=outputs) + return model + + +model = my_model() +model.compile( + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + optimizer=keras.optimizers.Adam(lr=3e-4), + metrics=["accuracy"], +) + +model.fit(x_train, y_train, batch_size=64, epochs=150, verbose=2) +model.evaluate(x_test, y_test, batch_size=64, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial6-rnn-gru-lstm.py b/ML/TensorFlow/Basics/tutorial6-rnn-gru-lstm.py new file mode 100644 index 0000000..53bee84 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial6-rnn-gru-lstm.py @@ -0,0 +1,61 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" + +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import mnist + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(x_train, y_train), (x_test, y_test) = mnist.load_data() +# x_train = x_train.reshape(-1, 784).astype("float32") / 255.0 +# x_test = x_test.reshape(-1, 784).astype("float32") / 255.0 +x_train = x_train.reshape([-1, 28, 28]).astype("float32") / 255.0 +x_test = x_test.reshape([-1, 28, 28]).astype("float32") / 255.0 + +model = keras.Sequential() +model.add(keras.Input(shape=(None, 28))) +model.add(layers.SimpleRNN(512, return_sequences=True, activation="relu")) +model.add(layers.SimpleRNN(512, activation="relu")) +model.add(layers.Dense(10)) + +model = keras.Sequential() +model.add(keras.Input(shape=(None, 28))) +model.add(layers.SimpleRNN(256, return_sequences=True, activation="tanh")) +model.add(layers.SimpleRNN(256)) +model.add(layers.Dense(10)) + +model = keras.Sequential() +model.add(keras.Input(shape=(None, 28))) +model.add(layers.GRU(256, return_sequences=True, activation="relu")) +model.add(layers.GRU(256)) +model.add(layers.Dense(10)) + +model = keras.Sequential() +model.add(keras.Input(shape=(None, 28))) +model.add( + layers.Bidirectional(layers.LSTM(256, return_sequences=True, activation="relu")) +) +model.add(layers.LSTM(256, name="lstm_layer2")) +model.add(layers.Dense(10)) + +model = keras.Sequential() +model.add(keras.Input(shape=(None, 28))) +model.add( + layers.Bidirectional(layers.LSTM(256, return_sequences=True, activation="relu")) +) +model.add(layers.Bidirectional(layers.LSTM(256, name="lstm_layer2"))) +model.add(layers.Dense(10)) + +print(model.summary()) +model.compile( + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + optimizer=keras.optimizers.Adam(lr=0.001), + metrics=["accuracy"], +) + +model.fit(x_train, y_train, batch_size=64, epochs=10, verbose=2) +model.evaluate(x_test, y_test, batch_size=64, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial7-indepth-functional.py b/ML/TensorFlow/Basics/tutorial7-indepth-functional.py new file mode 100644 index 0000000..74034e1 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial7-indepth-functional.py @@ -0,0 +1,93 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers, regularizers +from tensorflow.keras.datasets import mnist + +# Use Pandas to load dataset from csv file +import pandas as pd + +# HYPERPARAMETERS +BATCH_SIZE = 64 +WEIGHT_DECAY = 0.001 +LEARNING_RATE = 0.001 + +# Make sure we don't get any GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +train_df = pd.read_csv("train.csv") +test_df = pd.read_csv("test.csv") +train_images = os.getcwd() + "/train_images/" + train_df.iloc[:, 0].values +test_images = os.getcwd() + "/test_images/" + test_df.iloc[:, 0].values + +train_labels = train_df.iloc[:, 1:].values +test_labels = test_df.iloc[:, 1:].values + + +def read_image(image_path, label): + image = tf.io.read_file(image_path) + image = tf.image.decode_image(image, channels=1, dtype=tf.float32) + + # In older versions you need to set shape in order to avoid error + # on newer (2.3.0+) the following 3 lines can safely be removed + image.set_shape((64, 64, 1)) + label[0].set_shape([]) + label[1].set_shape([]) + + labels = {"first_num": label[0], "second_num": label[1]} + return image, labels + + +AUTOTUNE = tf.data.experimental.AUTOTUNE +train_dataset = tf.data.Dataset.from_tensor_slices((train_images, train_labels)) +train_dataset = ( + train_dataset.shuffle(buffer_size=len(train_labels)) + .map(read_image) + .batch(batch_size=BATCH_SIZE) + .prefetch(buffer_size=AUTOTUNE) +) + +test_dataset = tf.data.Dataset.from_tensor_slices((test_images, test_labels)) +test_dataset = ( + test_dataset.map(read_image) + .batch(batch_size=BATCH_SIZE) + .prefetch(buffer_size=AUTOTUNE) +) + +inputs = keras.Input(shape=(64, 64, 1)) +x = layers.Conv2D( + filters=32, + kernel_size=3, + padding="same", + kernel_regularizer=regularizers.l2(WEIGHT_DECAY), +)(inputs) +x = layers.BatchNormalization()(x) +x = keras.activations.relu(x) +x = layers.Conv2D(64, 3, kernel_regularizer=regularizers.l2(WEIGHT_DECAY),)(x) +x = layers.BatchNormalization()(x) +x = keras.activations.relu(x) +x = layers.MaxPooling2D()(x) +x = layers.Conv2D( + 64, 3, activation="relu", kernel_regularizer=regularizers.l2(WEIGHT_DECAY), +)(x) +x = layers.Conv2D(128, 3, activation="relu")(x) +x = layers.MaxPooling2D()(x) +x = layers.Flatten()(x) +x = layers.Dense(128, activation="relu")(x) +x = layers.Dropout(0.5)(x) +x = layers.Dense(64, activation="relu")(x) +output1 = layers.Dense(10, activation="softmax", name="first_num")(x) +output2 = layers.Dense(10, activation="softmax", name="second_num")(x) +model = keras.Model(inputs=inputs, outputs=[output1, output2]) + +model.compile( + optimizer=keras.optimizers.Adam(LEARNING_RATE), + loss=keras.losses.SparseCategoricalCrossentropy(), + metrics=["accuracy"], +) + +model.fit(train_dataset, epochs=5, verbose=2) +model.evaluate(test_dataset, verbose=2) diff --git a/ML/TensorFlow/Basics/tutorial8_keras_subclassing.py b/ML/TensorFlow/Basics/tutorial8_keras_subclassing.py new file mode 100644 index 0000000..714b4ba --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial8_keras_subclassing.py @@ -0,0 +1,92 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import mnist + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(x_train, y_train), (x_test, y_test) = mnist.load_data() +x_train = x_train.reshape(-1, 28, 28, 1).astype("float32") / 255.0 +x_test = x_test.reshape(-1, 28, 28, 1).astype("float32") / 255.0 + +# CNN -> BatchNorm -> ReLU (common structure) +# x10 (a lot of code to write!) + + +class CNNBlock(layers.Layer): + def __init__(self, out_channels, kernel_size=3): + super(CNNBlock, self).__init__() + self.conv = layers.Conv2D(out_channels, kernel_size, padding="same") + self.bn = layers.BatchNormalization() + + def call(self, input_tensor, training=False): + x = self.conv(input_tensor) + x = self.bn(x, training=training) + x = tf.nn.relu(x) + return x + + +model = keras.Sequential( + [CNNBlock(32), CNNBlock(64), CNNBlock(128), layers.Flatten(), layers.Dense(10),] +) + + +class ResBlock(layers.Layer): + def __init__(self, channels): + super(ResBlock, self).__init__() + self.channels = channels + self.cnn1 = CNNBlock(channels[0], 3) + self.cnn2 = CNNBlock(channels[1], 3) + self.cnn3 = CNNBlock(channels[2], 3) + self.pooling = layers.MaxPooling2D() + self.identity_mapping = layers.Conv2D(channels[1], 3, padding="same") + + def call(self, input_tensor, training=False): + x = self.cnn1(input_tensor, training=training) + x = self.cnn2(x, training=training) + x = self.cnn3(x + self.identity_mapping(input_tensor), training=training,) + x = self.pooling(x) + return x + + +class ResNet_Like(keras.Model): + def __init__(self, num_classes=10): + super(ResNet_Like, self).__init__() + self.block1 = ResBlock([32, 32, 64]) + self.block2 = ResBlock([128, 128, 256]) + self.block3 = ResBlock([128, 256, 512]) + self.pool = layers.GlobalAveragePooling2D() + self.classifier = layers.Dense(num_classes) + + def call(self, input_tensor, training=False): + x = self.block1(input_tensor, training=training) + x = self.block2(x, training=training) + x = self.block3(x, training=training) + x = self.pool(x, training=training) + x = self.classifier(x) + return x + + def model(self): + x = keras.Input(shape=(28, 28, 1)) + return keras.Model(inputs=[x], outputs=self.call(x)) + + +model = ResNet_Like().model() +base_input = model.layers[0].input +base_output = model.layers[2].output +output = layers.Dense(10)(layers.Flatten()(base_output)) +model = keras.Model(base_input, output) + +model.compile( + optimizer=keras.optimizers.Adam(), + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + metrics=["accuracy"], +) + +model.fit(x_train, y_train, batch_size=64, epochs=1, verbose=2) +model.evaluate(x_test, y_test, batch_size=64, verbose=2) +model.save("pretrained") diff --git a/ML/TensorFlow/Basics/tutorial9-custom-layers.py b/ML/TensorFlow/Basics/tutorial9-custom-layers.py new file mode 100644 index 0000000..30e4615 --- /dev/null +++ b/ML/TensorFlow/Basics/tutorial9-custom-layers.py @@ -0,0 +1,86 @@ +import os + +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tensorflow.keras.datasets import mnist + +# To Avoid GPU errors +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +(x_train, y_train), (x_test, y_test) = mnist.load_data() +x_train = x_train.reshape(-1, 28 * 28).astype("float32") / 255.0 +x_test = x_test.reshape(-1, 28 * 28).astype("float32") / 255.0 + + +class Dense(layers.Layer): + def __init__(self, units, input_dim): + super(Dense, self).__init__() + self.w = self.add_weight( + name="w", + shape=(input_dim, units), + initializer="random_normal", + trainable=True, + ) + self.b = self.add_weight( + name="b", shape=(units,), initializer="zeros", trainable=True + ) + + def call(self, inputs): + return tf.matmul(inputs, self.w) + self.b + + +class Dense(layers.Layer): + def __init__(self, units): + super(Dense, self).__init__() + self.units = units + + def build(self, input_shape): + self.w = self.add_weight( + name="w", + shape=(input_shape[-1], self.units), + initializer="random_normal", + trainable=True, + ) + self.b = self.add_weight( + name="b", shape=(self.units,), initializer="random_normal", trainable=True, + ) + + def call(self, inputs): + return tf.matmul(inputs, self.w) + self.b + + +class MyReLU(layers.Layer): + def __init__(self): + super(MyReLU, self).__init__() + + def call(self, x): + return tf.math.maximum(x, 0) + + +class MyModel(Model): # model.fit, model.evalute, model.predict + def __init__(self, num_classes=10): + super(MyModel, self).__init__() + self.dense1 = Dense(64) + self.dense2 = Dense(num_classes) + self.relu = MyReLU() + + # self.dense1 = layers.Dense(64) + # self.dense3 = layers.Dense(num_classes) + + def call(self, x): + x = self.relu(self.dense1(x)) + return self.dense2(x) + + +model = MyModel() +model.compile( + loss=keras.losses.SparseCategoricalCrossentropy(from_logits=True), + optimizer=keras.optimizers.Adam(), + metrics=["accuracy"], +) + +model.fit(x_train, y_train, batch_size=32, epochs=2, verbose=2) +model.evaluate(x_test, y_test, batch_size=32, verbose=2) diff --git a/ML/TensorFlow/CNN_architectures/AlexNet/README.md b/ML/TensorFlow/CNN_architectures/AlexNet/README.md new file mode 100644 index 0000000..678fa07 --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/AlexNet/README.md @@ -0,0 +1,9 @@ +[Original Paper - ImageNet Classification with Deep Convolutional Neural Networks (2012)](https://www.cs.toronto.edu/~hinton/absps/imagenet.pdf) + +Some questions I had when I was reading the paper +- [What does the term saturating nonlinearities mean?](https://stats.stackexchange.com/questions/174295/what-does-the-term-saturating-nonlinearities-mean) +- [What Is Saturating Gradient Problem](https://datascience.stackexchange.com/questions/27665/what-is-saturating-gradient-problem) +- [Why ReLU is better than the other activation functions](https://datascience.stackexchange.com/questions/23493/why-relu-is-better-than-the-other-activation-functions) +- [Why does overlapped pooling help reduce overfitting in conv nets?](https://stats.stackexchange.com/questions/283261/why-does-overlapped-pooling-help-reduce-overfitting-in-conv-nets) +- [Importance of local response normalization in CNN](https://stats.stackexchange.com/questions/145768/importance-of-local-response-normalization-in-cnn) +- [What Is Local Response Normalization In Convolutional Neural Networks](https://prateekvjoshi.com/2016/04/05/what-is-local-response-normalization-in-convolutional-neural-networks/) diff --git a/ML/TensorFlow/CNN_architectures/AlexNet/alexnet.py b/ML/TensorFlow/CNN_architectures/AlexNet/alexnet.py new file mode 100644 index 0000000..628fe17 --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/AlexNet/alexnet.py @@ -0,0 +1,113 @@ +# Tensorflow v2.3.1 + +""" +Programmed by the-robot +""" + +from tensorflow.keras.layers import ( + Conv2D, + Dense, + Dropout, + Flatten, + Input, + Lambda, + MaxPooling2D, +) +from tensorflow.keras import Model +import tensorflow as tf +import typing + +tf.config.run_functions_eagerly(True) + +@tf.function +def AlexNet(input_shape: typing.Tuple[int], classes: int = 1000) -> Model: + """ + Implementation of the AlexNet architecture. + + Arguments: + input_shape -- shape of the images of the dataset + classes -- integer, number of classes + + Returns: + model -- a Model() instance in Keras + + Note: + when you read the paper, you will notice that the channels (filters) in the diagram is only + half of what I have written below. That is because in the diagram, they only showed model for + one GPU (I guess for simplicity). However, during the ILSVRC, they run the network across 2 NVIDIA GTA 580 3GB GPUs. + + Also, in paper, they used Local Response Normalization. This can also be done in Keras with Lambda layer. + You can also use BatchNormalization layer instead. + """ + + # convert input shape into tensor + X_input = Input(input_shape) + + # NOTE: layer 1-5 is conv-layers + # layer 1 + X = Conv2D( + filters = 96, + kernel_size = (11, 11), + strides = (4, 4), + activation = "relu", + padding = "same", + )(X_input) + X = MaxPooling2D(pool_size = (3, 3), strides = (2, 2))(X) + X = Lambda(tf.nn.local_response_normalization)(X) + + # layer 2 + X = Conv2D( + filters = 256, + kernel_size = (5, 5), + strides = (1, 1), + activation = "relu", + padding = "same", + )(X) + X = MaxPooling2D(pool_size = (3, 3), strides = (2, 2))(X) + X = Lambda(tf.nn.local_response_normalization)(X) + + # layer 3 + X = Conv2D( + filters = 384, + kernel_size = (3, 3), + strides = (1, 1), + activation = "relu", + padding = "same", + )(X) + + # layer 4 + X = Conv2D( + filters = 384, + kernel_size = (3, 3), + strides = (1, 1), + activation = "relu", + padding = "same", + )(X) + + # layer 5 + X = Conv2D( + filters = 256, + kernel_size = (3, 3), + strides = (1, 1), + activation = "relu", + padding = "same", + )(X) + X = MaxPooling2D(pool_size = (3, 3), strides = (2, 2))(X) + X = Lambda(tf.nn.local_response_normalization)(X) + + # NOTE: layer 6-7 is fully-connected layers + # layer 6 + X = Flatten()(X) + X = Dense(units = 4096, activation = 'relu')(X) + X = Dropout(0.5)(X) + + # layer 7 + X = Dense(units = 4096, activation = 'relu')(X) + X = Dropout(0.5)(X) + + # layer 8 (classification layer) + # use sigmoid if binary classificaton and softmax if multiclass classification + X = Dense(units = classes, activation = "softmax")(X) + + model = Model(inputs = X_input, outputs = X, name = "AlexNet") + return model diff --git a/ML/TensorFlow/CNN_architectures/AlexNet/test.py b/ML/TensorFlow/CNN_architectures/AlexNet/test.py new file mode 100644 index 0000000..e905c5a --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/AlexNet/test.py @@ -0,0 +1,9 @@ +# disable tensorflow debugging messages +import os +os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' + +from alexnet import AlexNet + +if __name__ == "__main__": + model = AlexNet(input_shape = (224, 224, 3), classes = 1000) + model.summary() diff --git a/ML/TensorFlow/CNN_architectures/GoogLeNet/README.md b/ML/TensorFlow/CNN_architectures/GoogLeNet/README.md new file mode 100644 index 0000000..de7c06f --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/GoogLeNet/README.md @@ -0,0 +1,14 @@ +[Original Paper - Going Deeper with Convolutions (2014)](https://arxiv.org/abs/1409.4842) +[Related Video](https://www.youtube.com/watch?v=uQc4Fs7yx5I) + +![meme](https://i.imgur.com/m91bhbe.png) + + +- [Review: GoogLeNet (Inception v1)](https://medium.com/coinmonks/paper-review-of-googlenet-inception-v1-winner-of-ilsvlc-2014-image-classification-c2b3565a64e7) +- [Understanding GoogLeNet Model – CNN Architecture](https://www.geeksforgeeks.org/understanding-googlenet-model-cnn-architecture/) +- [Ensemble Methods in Machine Learning: What are They and Why Use Them?](https://towardsdatascience.com/ensemble-methods-in-machine-learning-what-are-they-and-why-use-them-68ec3f9fef5f) +- [Neural Networks Ensemble](https://towardsdatascience.com/neural-networks-ensemble-33f33bea7df3) +- [Multiscale Methods and Machine Learning](https://www.kdnuggets.com/2018/03/multiscale-methods-machine-learning.html) +- [What do the terms “dense” and “sparse” mean in the context of neural networks?](https://stats.stackexchange.com/questions/266996/what-do-the-terms-dense-and-sparse-mean-in-the-context-of-neural-networks) +- [The Sparse Future of Deep Learning](https://towardsdatascience.com/the-sparse-future-of-deep-learning-bce05e8e094a) +- [Understanding Auxiliary Loss](https://stats.stackexchange.com/a/436203) \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/GoogLeNet/block.py b/ML/TensorFlow/CNN_architectures/GoogLeNet/block.py new file mode 100644 index 0000000..d86065d --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/GoogLeNet/block.py @@ -0,0 +1,163 @@ + # Tensorflow v.2.3.1 + +""" +Programmed by the-robot +""" + +from tensorflow.keras.layers import ( + Activation, + AveragePooling2D, + BatchNormalization, + Conv2D, + Dense, + Dropout, + Flatten, + MaxPooling2D, + concatenate, +) +import tensorflow as tf +import typing + +@tf.function +def convolution_block( + X: tf.Tensor, + filters: int, + kernel_size: int, + stride: int = 1, + padding: str = 'valid', +) -> tf.Tensor: + """ + Convolution block for GoogLeNet. + Arguments: + X -- input tensor of shape (m, H, W, filters) + filters -- defining the number of filters in the CONV layers + kernel_size -- integer, specifying the shape of the middle CONV's window for the main path + stride -- integer specifying the stride to be used + padding -- padding type, same or valid. Default is valid + Returns: + X -- output of the identity block, tensor of shape (H, W, filters) + """ + + X = Conv2D( + filters = filters, + kernel_size = (kernel_size, kernel_size), + strides = (stride, stride), + padding = padding, + )(X) + # batch normalization is not in original paper because it was not invented at that time + # however I am using it here because it will improve the performance + X = BatchNormalization()(X) + X = Activation("relu")(X) + + return X + +@tf.function +def inception_block( + X: tf.Tensor, + filters_1x1: int, + filters_3x3_reduce: int, + filters_3x3: int, + filters_5x5_reduce: int, + filters_5x5: int, + pool_size: int, +) -> tf.Tensor: + """ + Inception block for GoogLeNet. + Arguments: + X -- input tensor of shape (m, H, W, filters) + filters_1x1 -- number of filters for (1x1 conv) in first branch + filters_3x3_reduce -- number of filters for (1x1 conv) dimensionality reduction before (3x3 conv) in second branch + filters_3x3 -- number of filters for (3x3 conv) in second branch + filters_5x5_reduce -- number of filters for (1x1 conv) dimensionality reduction before (5x5 conv) in third branch + filters_5x5 -- number of filters for (5x5 conv) in third branch + pool_size -- number of filters for (1x1 conv) after 3x3 max pooling in fourth branch + Returns: + X -- output of the identity block, tensor of shape (H, W, filters) + """ + + # first branch + conv_1x1 = convolution_block( + X, + filters = filters_1x1, + kernel_size = 1, + padding = "same" + ) + + # second branch + conv_3x3 = convolution_block( + X, + filters = filters_3x3_reduce, + kernel_size = 1, + padding = "same" + ) + conv_3x3 = convolution_block( + conv_3x3, + filters = filters_3x3, + kernel_size = 3, + padding = "same" + ) + + # third branch + conv_5x5 = convolution_block( + X, + filters = filters_5x5_reduce, + kernel_size = 1, + padding = "same" + ) + conv_5x5 = convolution_block( + conv_5x5, + filters = filters_5x5, + kernel_size = 5, + padding = "same" + ) + + # fourth branch + pool_projection = MaxPooling2D( + pool_size = (2, 2), + strides = (1, 1), + padding = "same", + )(X) + pool_projection = convolution_block( + pool_projection, + filters = pool_size, + kernel_size = 1, + padding = "same" + ) + + # concat by channel/filter + return concatenate(inputs = [conv_1x1, conv_3x3, conv_5x5, pool_projection], axis = 3) + +@tf.function +def auxiliary_block( + X: tf.Tensor, + classes: int, +) -> tf.Tensor: + """ + Auxiliary block for GoogLeNet. + Refer to the original paper, page 8 for the auxiliary layer specification. + Arguments: + X -- input tensor of shape (m, H, W, filters) + classes -- number of classes for classification + Return: + X -- output of the identity block, tensor of shape (H, W, filters) + """ + + X = AveragePooling2D( + pool_size = (5, 5), + padding = "same", + strides = (3, 3), + )(X) + X = convolution_block( + X, + filters = 128, + kernel_size = 1, + stride = 1, + padding = "same", + ) + X = Flatten()(X) + X = Dense(units = 1024, activation = "relu")(X) + X = Dropout(rate = 0.7)(X) + X = Dense(units = classes)(X) + X = Activation("softmax")(X) + + return X \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/GoogLeNet/googlenet.py b/ML/TensorFlow/CNN_architectures/GoogLeNet/googlenet.py new file mode 100644 index 0000000..a620b8a --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/GoogLeNet/googlenet.py @@ -0,0 +1,219 @@ +# Tensorflow v.2.3.1 + +""" +Programmed by the-robot +""" + +from block import ( + auxiliary_block, + convolution_block, + inception_block, +) + +from tensorflow.keras.layers import ( + AveragePooling2D, + Dense, + Dropout, + Input, + MaxPooling2D, +) +from tensorflow.keras import Model +import tensorflow as tf +import typing + +tf.config.run_functions_eagerly(True) + +@tf.function +def GoogLeNet(input_shape: typing.Tuple[int] = (224, 224, 3), classes: int = 1000) -> Model: + """ + Implementation of the popular GoogLeNet aka Inception v1 architecture. + Refer to the original paper, page 6 - table 1 for inception block filter sizes. + Arguments: + input_shape -- shape of the images of the dataset + classes -- number of classes for classification + Returns: + model -- a Model() instance in Keras + """ + + # convert input shape into tensor + X_input = Input(input_shape) + + # NOTE: auxiliary layers are only used in trainig phase to improve performance + # because they act as regularization and prevent vanishing gradient problem + auxiliary1 = None # to store auxiliary layers classification value + auxiliary2 = None + + # layer 1 (convolution block) + X = convolution_block( + X = X_input, + filters = 64, + kernel_size = 7, + stride = 2, + padding = "same", + ) + + # layer 2 (max pool) + X = MaxPooling2D( + pool_size = (3, 3), + padding = "same", + strides = (2, 2), + )(X) + + # layer 3 (convolution block) + # 1x1 reduce + X = convolution_block( + X, + filters = 64, + kernel_size = 1, + stride = 1, + padding = "same", + ) + X = convolution_block( + X, + filters = 192, + kernel_size = 3, + stride = 1, + padding = "same", + ) + + # layer 4 (max pool) + X = MaxPooling2D( + pool_size = (3, 3), + padding = "same", + strides = (2, 2), + )(X) + + # layer 5 (inception 3a) + X = inception_block( + X, + filters_1x1 = 64, + filters_3x3_reduce = 96, + filters_3x3 = 128, + filters_5x5_reduce = 16, + filters_5x5 = 32, + pool_size = 32, + ) + + # layer 6 (inception 3b) + X = inception_block( + X, + filters_1x1 = 128, + filters_3x3_reduce = 128, + filters_3x3 = 192, + filters_5x5_reduce = 32, + filters_5x5 = 96, + pool_size = 64, + ) + + # layer 7 (max pool) + X = MaxPooling2D( + pool_size = (3, 3), + padding = "same", + strides = (2, 2), + )(X) + + # layer 8 (inception 4a) + X = inception_block( + X, + filters_1x1 = 192, + filters_3x3_reduce = 96, + filters_3x3 = 208, + filters_5x5_reduce = 16, + filters_5x5 = 48, + pool_size = 64, + ) + + # First Auxiliary Softmax Classifier + auxiliary1 = auxiliary_block(X, classes = classes) + + # layer 9 (inception 4b) + X = inception_block( + X, + filters_1x1 = 160, + filters_3x3_reduce = 112, + filters_3x3 = 224, + filters_5x5_reduce = 24, + filters_5x5 = 64, + pool_size = 64, + ) + + # layer 10 (inception 4c) + X = inception_block( + X, + filters_1x1 = 128, + filters_3x3_reduce = 128, + filters_3x3 = 256, + filters_5x5_reduce = 24, + filters_5x5 = 64, + pool_size = 64, + ) + + # layer 11 (inception 4d) + X = inception_block( + X, + filters_1x1 = 112, + filters_3x3_reduce = 144, + filters_3x3 = 288, + filters_5x5_reduce = 32, + filters_5x5 = 64, + pool_size = 64, + ) + + # Second Auxiliary Softmax Classifier + auxiliary2 = auxiliary_block(X, classes = classes) + + # layer 12 (inception 4e) + X = inception_block( + X, + filters_1x1 = 256, + filters_3x3_reduce = 160, + filters_3x3 = 320, + filters_5x5_reduce = 32, + filters_5x5 = 128, + pool_size = 128, + ) + + # layer 13 (max pool) + X = MaxPooling2D( + pool_size = (3, 3), + padding = "same", + strides = (2, 2), + )(X) + + # layer 14 (inception 5a) + X = inception_block( + X, + filters_1x1 = 256, + filters_3x3_reduce = 160, + filters_3x3 = 320, + filters_5x5_reduce = 32, + filters_5x5 = 128, + pool_size = 128, + ) + + # layer 15 (inception 5b) + X = inception_block( + X, + filters_1x1 = 384, + filters_3x3_reduce = 192, + filters_3x3 = 384, + filters_5x5_reduce = 48, + filters_5x5 = 128, + pool_size = 128, + ) + + # layer 16 (average pool) + X = AveragePooling2D( + pool_size = (7, 7), + padding = "same", + strides = (1, 1), + )(X) + + # layer 17 (dropout 40%) + X = Dropout(rate = 0.4)(X) + + # layer 18 (fully-connected layer with softmax activation) + X = Dense(units = classes, activation='softmax')(X) + + model = Model(X_input, outputs = [X, auxiliary1, auxiliary2], name='GoogLeNet/Inception-v1') + return model diff --git a/ML/TensorFlow/CNN_architectures/GoogLeNet/test.py b/ML/TensorFlow/CNN_architectures/GoogLeNet/test.py new file mode 100644 index 0000000..b6eabbd --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/GoogLeNet/test.py @@ -0,0 +1,9 @@ +# disable tensorflow debugging messages +import os +os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' + +from googlenet import GoogLeNet + +if __name__ == "__main__": + model = GoogLeNet(input_shape = (224, 224, 3)) + model.summary() \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/LeNet5/README.md b/ML/TensorFlow/CNN_architectures/LeNet5/README.md new file mode 100644 index 0000000..5e7df42 --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/LeNet5/README.md @@ -0,0 +1,5 @@ +[Original Paper - GradientBased Learning Applied to Document Recognition (1998)](http://vision.stanford.edu/cs598_spring07/papers/Lecun98.pdf) +[Related Video](https://www.youtube.com/watch?v=fcOW-Zyb5Bo) + +Some other useful links +- [Understanding and Implementing LeNet-5 CNN Architecture](https://towardsdatascience.com/understanding-and-implementing-lenet-5-cnn-architecture-deep-learning-a2d531ebc342) \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/LeNet5/lenet5.py b/ML/TensorFlow/CNN_architectures/LeNet5/lenet5.py new file mode 100644 index 0000000..ab34371 --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/LeNet5/lenet5.py @@ -0,0 +1,78 @@ +# Tensorflow v.2.3.1 + +""" +Programmed by the-robot +""" + +from tensorflow.keras.layers import ( + AveragePooling2D, + Conv2D, + Dense, + Flatten, + Input, +) +from tensorflow.keras import Model +import tensorflow as tf +import typing + +tf.config.run_functions_eagerly(True) + +@tf.function +def LeNet5(input_shape: typing.Tuple[int], classes: int = 1000) -> Model: + """ + Implementation of the classic LeNet architecture. + + Arguments: + input_shape -- shape of the images of the dataset + classes -- integer, number of classes + + Returns: + model -- a Model() instance in Keras + + Note: + because I want to keep it original, I used tanh activation instead of ReLU activation. + however based on newer papers, the rectified linear unit (ReLU) performed much faster than + tanh activation. + """ + + # convert input shape into tensor + X_input = Input(input_shape) + + # layer 1 + X = Conv2D( + filters = 6, + kernel_size = (5, 5), + strides = (1, 1), + activation = "tanh", + padding = "valid", + )(X_input) + X = AveragePooling2D(pool_size = (2, 2), strides = (2, 2), padding = "valid")(X) + + # layer 2 + X = Conv2D( + filters = 16, + kernel_size = (5, 5), + strides = (1, 1), + activation = "tanh", + padding = "valid", + )(X) + X = AveragePooling2D(pool_size = (2, 2), strides = (2, 2), padding = "valid")(X) + + # layer 3 + X = Conv2D( + filters = 120, + kernel_size = (5, 5), + strides = (1, 1), + activation = "tanh", + padding = "valid", + )(X) + + # layer 4 + X = Flatten()(X) + X = Dense(units = 84, activation = "tanh")(X) + + # layer 5 (classification layer) + X = Dense(units = classes, activation = "softmax")(X) + + model = Model(inputs = X_input, outputs = X, name = "LeNet5") + return model \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/LeNet5/test.py b/ML/TensorFlow/CNN_architectures/LeNet5/test.py new file mode 100644 index 0000000..63feaf5 --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/LeNet5/test.py @@ -0,0 +1,9 @@ +# disable tensorflow debugging messages +import os +os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' + +from lenet5 import LeNet5 + +if __name__ == "__main__": + model = LeNet5(input_shape = (32, 32, 1), classes = 10) + model.summary() \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/ResNet/README.md b/ML/TensorFlow/CNN_architectures/ResNet/README.md new file mode 100644 index 0000000..a9c0d0e --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/ResNet/README.md @@ -0,0 +1,7 @@ +[Original Paper - Deep Residual Learning for Image Recognition (2015)](https://arxiv.org/abs/1512.03385) +[Related Video](https://www.youtube.com/watch?v=DkNIBBBvcPs&ab_channel=AladdinPersson) + +Some questions that came to my mind when I was reading the paper + +- [How do bottleneck architectures work in neural networks?](https://stats.stackexchange.com/questions/205150/how-do-bottleneck-architectures-work-in-neural-networks) +- [What does dotted line mean in ResNet?](https://stats.stackexchange.com/questions/457787/what-does-dotted-line-mean-in-resnet) `refering to Figure 3, 34-layer residual from paper` \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/ResNet/block.py b/ML/TensorFlow/CNN_architectures/ResNet/block.py new file mode 100644 index 0000000..4228029 --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/ResNet/block.py @@ -0,0 +1,105 @@ +# Tensorflow v.2.3.1 + +""" +Programmed by the-robot +""" + +from tensorflow.keras.layers import ( + Activation, + Add, + BatchNormalization, + Conv2D, +) +import tensorflow as tf +import typing + +@tf.function +def block( + X: tf.Tensor, + kernel_size: int, + filters: typing.List[int], + stage_no: int, + block_name: str, + is_conv_layer: bool = False, + stride: int = 2 +) -> tf.Tensor: + """ + Block for residual network. + + Arguments: + X -- input tensor of shape (m, n_H_prev, n_W_prev, n_C_prev) + kernel_size -- integer, specifying the shape of the middle CONV's window for the main path + filters -- python list of integers, defining the number of filters in the CONV layers of the main path + stage_no -- integer, used to name the layers, depending on their position in the network + block_name -- string/character, used to name the layers, depending on their position in the network + is_conv_layer -- to identiy if identity downsample is needed + stride -- integer specifying the stride to be used + + Returns: + X -- output of the identity block, tensor of shape (n_H, n_W, n_C) + """ + + # names + conv_name_base = "res" + str(stage_no) + block_name + "_branch" + bn_name_base = "bn" + str(stage_no) + block_name + "_branch" + + # filters + F1, F2, F3 = filters + + # save the input value for shortcut. + X_shortcut = X + + # First component + # NOTE: if conv_layer, you need to do downsampling + X = Conv2D( + filters = F1, + kernel_size = (1, 1), + strides = (stride, stride) if is_conv_layer else (1, 1), + padding = "valid", + name = conv_name_base + "2a", + kernel_initializer = "glorot_uniform", + )(X) + X = BatchNormalization(axis = 3, name = bn_name_base + "2a")(X) + X = Activation("relu")(X) + + # Second component + X = Conv2D( + filters = F2, + kernel_size = (kernel_size, kernel_size), + strides = (1, 1), + padding = "same", + name = conv_name_base + "2b", + kernel_initializer = "glorot_uniform", + )(X) + X = BatchNormalization(axis = 3, name = bn_name_base + "2b")(X) + X = Activation("relu")(X) + + # Third component + X = Conv2D( + filters = F3, + kernel_size = (1, 1), + strides = (1, 1), + padding = "valid", + name = conv_name_base + "2c", + kernel_initializer = "glorot_uniform", + )(X) + X = BatchNormalization(axis = 3, name = bn_name_base + "2c")(X) + + # NOTE: if is_conv_layer, you need to do downsampling the X_shortcut to match the output (X) channel + # so it can be added together + if is_conv_layer: + X_shortcut = Conv2D( + filters = F3, + kernel_size = (1, 1), + strides = (stride, stride), + padding = "valid", + name = conv_name_base + "1", + kernel_initializer = "glorot_uniform", + )(X_shortcut) + X_shortcut = BatchNormalization(axis = 3, name = bn_name_base + "1")(X_shortcut) + + # Shortcut value + X = Add()([X, X_shortcut]) + X = Activation("relu")(X) + + return X \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/ResNet/resnet.py b/ML/TensorFlow/CNN_architectures/ResNet/resnet.py new file mode 100644 index 0000000..4247d9a --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/ResNet/resnet.py @@ -0,0 +1,157 @@ +# Tensorflow v.2.3.1 + +""" +Programmed by the-robot +""" + +from block import block + +from tensorflow.keras.layers import ( + Activation, + AveragePooling2D, + BatchNormalization, + Conv2D, + Dense, + Flatten, + Input, + MaxPooling2D, + ZeroPadding2D, +) +from tensorflow.keras import Model +import tensorflow as tf +import typing + +tf.config.run_functions_eagerly(True) + +@tf.function +def ResNet(name: str, layers: typing.List[int], input_shape: typing.Tuple[int] = (64, 64, 3), classes: int = 6) -> Model: + """ + Implementation of the popular ResNet architecture. + + Arguments: + name -- name of the architecture + layers -- number of blocks per layer + input_shape -- shape of the images of the dataset + classes -- integer, number of classes + + Returns: + model -- a Model() instance in Keras + + + Model Architecture: + Resnet50: + CONV2D -> BATCHNORM -> RELU -> MAXPOOL // conv1 + -> CONVBLOCK -> IDBLOCK * 2 // conv2_x + -> CONVBLOCK -> IDBLOCK * 3 // conv3_x + -> CONVBLOCK -> IDBLOCK * 5 // conv4_x + -> CONVBLOCK -> IDBLOCK * 2 // conv5_x + -> AVGPOOL + -> TOPLAYER + + Resnet101: + CONV2D -> BATCHNORM -> RELU -> MAXPOOL // conv1 + -> CONVBLOCK -> IDBLOCK * 2 // conv2_x + -> CONVBLOCK -> IDBLOCK * 3 // conv3_x + -> CONVBLOCK -> IDBLOCK * 22 // conv4_x + -> CONVBLOCK -> IDBLOCK * 2 // conv5_x + -> AVGPOOL + -> TOPLAYER + + Resnet152: + CONV2D -> BATCHNORM -> RELU -> MAXPOOL // conv1 + -> CONVBLOCK -> IDBLOCK * 2 // conv2_x + -> CONVBLOCK -> IDBLOCK * 7 // conv3_x + -> CONVBLOCK -> IDBLOCK * 35 // conv4_x + -> CONVBLOCK -> IDBLOCK * 2 // conv5_x + -> AVGPOOL + -> TOPLAYER + """ + + # get layers (layer1 is always the same so no need to provide) + layer2, layer3, layer4, layer5 = layers + + # convert input shape into tensor + X_input = Input(input_shape) + + # zero-padding + X = ZeroPadding2D((3, 3))(X_input) + + # conv1 + X = Conv2D( + filters = 64, + kernel_size = (7, 7), + strides = (2, 2), + name = "conv1", + kernel_initializer = "glorot_uniform", + )(X) + X = BatchNormalization(axis = 3, name = "bn_conv1")(X) + X = Activation("relu")(X) + X = MaxPooling2D((3, 3), strides = (2, 2))(X) + + # conv2_x + X = make_layer(X, layers = layer2, kernel_size = 3, filters = [64, 64, 256], stride = 1, stage_no = 2) + + # conv3_x + X = make_layer(X, layers = layer3, kernel_size = 3, filters = [128, 128, 512], stride = 2, stage_no = 3) + + # conv4_x + X = make_layer(X, layers = layer4, kernel_size = 3, filters = [256, 256, 1024], stride = 2, stage_no = 4) + + # conv5_x + X = make_layer(X, layers = layer5, kernel_size = 3, filters = [512, 512, 2048], stride = 1, stage_no = 5) + + # average pooling + X = AveragePooling2D((2, 2), name = "avg_pool")(X) + + # output layer + X = Flatten()(X) + X = Dense( + classes, + activation = "softmax", + name="fc" + str(classes), + kernel_initializer = "glorot_uniform" + )(X) + + model = Model(inputs = X_input, outputs = X, name = name) + return model + +def make_layer(X: tf.Tensor, layers: int, kernel_size: int, filters: typing.List[int], stride: int, stage_no: int) -> tf.Tensor: + """ + Method to create one conv-identity layer for ResNet. + + Arguments: + X -- input tensor + layers -- number of blocks per layer + kernel_size -- size of the kernel for the block + filters -- number of filters/channels + stride -- number of stride for downsampling the input + stage_no -- stage number just to name the layer + + Returns: + X -- output tensor + """ + + # create convolution block + X = block( + X, + kernel_size = kernel_size, + filters = filters, + stage_no = stage_no, + block_name = "a", + is_conv_layer = True, + stride = stride + ) + + # create identity block + block_name_ordinal = ord("b") + for _ in range(layers - 1): + X = block( + X, + kernel_size = kernel_size, + filters = filters, + stage_no = stage_no, + block_name = chr(block_name_ordinal) + ) + block_name_ordinal += 1 + + return X \ No newline at end of file diff --git a/ML/TensorFlow/CNN_architectures/ResNet/test.py b/ML/TensorFlow/CNN_architectures/ResNet/test.py new file mode 100644 index 0000000..fd6c7d3 --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/ResNet/test.py @@ -0,0 +1,10 @@ +# disable tensorflow debugging messages +import os +os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' + +from resnet import ResNet + +if __name__ == "__main__": + # test ResNet50 + model = ResNet(name = "Resnet50", layers = [3, 4, 6, 3], input_shape = (64, 64, 3), classes = 6) + model.summary() diff --git a/ML/TensorFlow/CNN_architectures/VGGNet/README.md b/ML/TensorFlow/CNN_architectures/VGGNet/README.md new file mode 100644 index 0000000..478bd24 --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/VGGNet/README.md @@ -0,0 +1,13 @@ +[Original Paper - Very Deep Convolutional Networks for Large-Scale Image Recognition (2014)](https://arxiv.org/abs/1409.1556) +[Related Video](https://www.youtube.com/watch?v=ACmuBbuXn20) + +Some questions I had when I was reading the paper +- [What does 1x1 convolution mean in a neural network?](https://stats.stackexchange.com/questions/194142/what-does-1x1-convolution-mean-in-a-neural-network) +- [A guide to receptive field arithmetic for Convolutional Neural Networks](https://medium.com/mlreview/a-guide-to-receptive-field-arithmetic-for-convolutional-neural-networks-e0f514068807) + +Some other useful links +- [VGGNet summary](https://medium.com/coinmonks/paper-review-of-vggnet-1st-runner-up-of-ilsvlc-2014-image-classification-d02355543a11) +- [VGGNet in Keras](https://towardsdatascience.com/step-by-step-vgg16-implementation-in-keras-for-beginners-a833c686ae6c) +- [VGGNet with Batch Normalization](https://gist.github.com/jjangsangy/38d644606130f05b806a4261c493a820) + +This code is inspired by [VGGNet implement from scratch in PyTorch by aladdinpersson](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py). diff --git a/ML/TensorFlow/CNN_architectures/VGGNet/test.py b/ML/TensorFlow/CNN_architectures/VGGNet/test.py new file mode 100644 index 0000000..7d8f2be --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/VGGNet/test.py @@ -0,0 +1,21 @@ +# disable tensorflow debugging messages +import os +os.environ['TF_CPP_MIN_LOG_LEVEL'] = '3' + +from vggnet import VGGNet + +# Integer value represents output channel after performing the convolution layer +# 'M' represents the max pooling layer +# After convolution blocks; flatten the output and use 4096x4096x1000 Linear Layers +# with soft-max at the end +VGG_types = { + 'VGG11': [64, 'M', 128, 'M', 256, 256, 'M', 512, 512, 'M', 512, 512, 'M'], + 'VGG13': [64, 64, 'M', 128, 128, 'M', 256, 256, 'M', 512, 512, 'M', 512, 512, 'M'], + 'VGG16': [64, 64, 'M', 128, 128, 'M', 256, 256, 256, 'M', 512, 512, 512, 'M', 512, 512, 512, 'M'], + 'VGG19': [64, 64, 'M', 128, 128, 'M', 256, 256, 256, 256, 'M', 512, 512, 512, 512, 'M', 512, 512, 512, 512, 'M'], +} + +if __name__ == "__main__": + # test VGGNet16 + model = VGGNet(name = "VGGNet16", architecture = VGG_types["VGG16"], input_shape=(224, 224, 3), classes = 1000) + model.summary() diff --git a/ML/TensorFlow/CNN_architectures/VGGNet/vggnet.py b/ML/TensorFlow/CNN_architectures/VGGNet/vggnet.py new file mode 100644 index 0000000..2c7488a --- /dev/null +++ b/ML/TensorFlow/CNN_architectures/VGGNet/vggnet.py @@ -0,0 +1,126 @@ +# Tensorflow v.2.3.1 + +""" +Programmed by the-robot +""" + +from tensorflow.keras.layers import ( + Activation, + BatchNormalization, + Conv2D, + Dense, + Dropout, + Flatten, + Input, + MaxPooling2D, +) +from tensorflow.keras import Model +import tensorflow as tf +import typing + +tf.config.run_functions_eagerly(True) + +@tf.function +def VGGNet( + name: str, + architecture: typing.List[ typing.Union[int, str] ], + input_shape: typing.Tuple[int], + classes: int = 1000 +) -> Model: + """ + Implementation of the VGGNet architecture. + + Arguments: + name -- name of the architecture + architecture -- number of output channel per convolution layers in VGGNet + input_shape -- shape of the images of the dataset + classes -- integer, number of classes + + Returns: + model -- a Model() instance in Keras + """ + + # convert input shape into tensor + X_input = Input(input_shape) + + # make convolution layers + X = make_conv_layer(X_input, architecture) + + # flatten the output and make fully connected layers + X = Flatten()(X) + X = make_dense_layer(X, 4096) + X = make_dense_layer(X, 4096) + + # classification layer + X = Dense(units = classes, activation = "softmax")(X) + + model = Model(inputs = X_input, outputs = X, name = name) + return model + +def make_conv_layer( + X: tf.Tensor, + architecture: typing.List[ typing.Union[int, str] ], + activation: str = 'relu' +) -> tf.Tensor: + """ + Method to create convolution layers for VGGNet. + In VGGNet + - Kernal is always 3x3 for conv-layer with padding 1 and stride 1. + - 2x2 kernel for max pooling with stride of 2. + + Arguments: + X -- input tensor + architecture -- number of output channel per convolution layers in VGGNet + activation -- type of activation method + + Returns: + X -- output tensor + """ + + for output in architecture: + + # convolution layer + if type(output) == int: + out_channels = output + + X = Conv2D( + filters = out_channels, + kernel_size = (3, 3), + strides = (1, 1), + padding = "same" + )(X) + X = BatchNormalization()(X) + X = Activation(activation)(X) + + # relu activation is added (by default activation) so that all the + # negative values are not passed to the next layer + + # max-pooling layer + else: + X = MaxPooling2D( + pool_size = (2, 2), + strides = (2, 2) + )(X) + + return X + +def make_dense_layer(X: tf.Tensor, output_units: int, dropout = 0.5, activation = 'relu') -> tf.Tensor: + """ + Method to create dense layer for VGGNet. + + Arguments: + X -- input tensor + output_units -- output tensor size + dropout -- dropout value for regularization + activation -- type of activation method + + Returns: + X -- input tensor + """ + + X = Dense(units = output_units)(X) + X = BatchNormalization()(X) + X = Activation(activation)(X) + X = Dropout(dropout)(X) + + return X \ No newline at end of file diff --git a/ML/TensorFlow/more_advanced/DCGAN/main.py b/ML/TensorFlow/more_advanced/DCGAN/main.py new file mode 100644 index 0000000..9f9e5e2 --- /dev/null +++ b/ML/TensorFlow/more_advanced/DCGAN/main.py @@ -0,0 +1,91 @@ +import os +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tqdm import tqdm +import numpy as np +import matplotlib.pyplot as plt +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + + +dataset = keras.preprocessing.image_dataset_from_directory( + directory="celeb_dataset", label_mode=None, image_size=(64, 64), batch_size=32, + shuffle=True, seed=None, validation_split=None, +).map(lambda x: x / 255.0) + +discriminator = keras.Sequential( + [ + keras.Input(shape=(64, 64, 3)), + layers.Conv2D(64, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(alpha=0.2), + layers.Conv2D(128, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(0.2), + layers.Conv2D(128, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(0.2), + layers.Flatten(), + layers.Dropout(0.2), + layers.Dense(1, activation="sigmoid"), + ], + name="discriminator", +) +print(discriminator.summary()) + +latent_dim = 128 +generator = keras.Sequential( + [ + keras.Input(shape=(latent_dim,)), + layers.Dense(8 * 8 * 128), + layers.Reshape((8, 8, 128)), + layers.Conv2DTranspose(128, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(alpha=0.2), + layers.Conv2DTranspose(256, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(alpha=0.2), + layers.Conv2DTranspose(512, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(alpha=0.2), + layers.Conv2D(3, kernel_size=5, padding="same", activation="sigmoid"), + ], + name="generator", +) +generator.summary() + +opt_gen = keras.optimizers.Adam(1e-4) +opt_disc = keras.optimizers.Adam(1e-4) +loss_fn = keras.losses.BinaryCrossentropy() + +for epoch in range(10): + for idx, (real) in enumerate(tqdm(dataset)): + batch_size = real.shape[0] + with tf.GradientTape() as gen_tape: + random_latent_vectors = tf.random.normal(shape = (batch_size, latent_dim)) + fake = generator(random_latent_vectors) + + if idx % 100 == 0: + img = keras.preprocessing.image.array_to_img(fake[0]) + img.save("gen_images/generated_img_%03d_%d.png" % (epoch, idx)) + + ### Train Discriminator: max log(D(x)) + log(1 - D(G(z))) + with tf.GradientTape() as disc_tape: + loss_disc_real = loss_fn(tf.ones((batch_size, 1)), discriminator(real)) + loss_disc_fake = loss_fn(tf.zeros((batch_size, 1)), discriminator(fake)) + loss_disc = (loss_disc_real + loss_disc_fake)/2 + + grads = disc_tape.gradient(loss_disc, discriminator.trainable_weights) + opt_disc.apply_gradients( + zip(grads, discriminator.trainable_weights) + ) + + ### Train Generator: min log(1 - D(G(z))) <-> max log(D(G(z)) + with tf.GradientTape() as gen_tape: + fake = generator(random_latent_vectors) + output = discriminator(fake) + loss_gen = loss_fn(tf.ones(batch_size, 1), output) + + grads = gen_tape.gradient(loss_gen, generator.trainable_weights) + opt_gen.apply_gradients(zip(grads, generator.trainable_weights)) + + + + + diff --git a/ML/TensorFlow/more_advanced/DCGAN/train.py b/ML/TensorFlow/more_advanced/DCGAN/train.py new file mode 100644 index 0000000..aec5f79 --- /dev/null +++ b/ML/TensorFlow/more_advanced/DCGAN/train.py @@ -0,0 +1,87 @@ +import os +os.environ["TF_CPP_MIN_LOG_LEVEL"] = "2" +import tensorflow as tf +from tensorflow import keras +from tensorflow.keras import layers +from tqdm import tqdm +import numpy as np +import matplotlib.pyplot as plt + +physical_devices = tf.config.list_physical_devices("GPU") +tf.config.experimental.set_memory_growth(physical_devices[0], True) + +dataset = keras.preprocessing.image_dataset_from_directory( + directory="celeb_dataset", label_mode=None, image_size=(64, 64), batch_size=32, + shuffle=True +).map(lambda x: x/255.0) + +discriminator = keras.Sequential( + [ + keras.Input(shape=(64,64,3)), + layers.Conv2D(64, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(0.2), + layers.Conv2D(128, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(0.2), + layers.Conv2D(128, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(0.2), + layers.Flatten(), + layers.Dropout(0.2), + layers.Dense(1, activation="sigmoid"), + ] +) + +print(discriminator.summary()) + +latent_dim = 128 +generator = keras.Sequential( + [ + layers.Input(shape=(latent_dim,)), + layers.Dense(8*8*128), + layers.Reshape((8, 8, 128)), + layers.Conv2DTranspose(128, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(0.2), + layers.Conv2DTranspose(256, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(0.2), + layers.Conv2DTranspose(512, kernel_size=4, strides=2, padding="same"), + layers.LeakyReLU(0.2), + layers.Conv2D(3, kernel_size=5, padding="same", activation="sigmoid"), + ] +) +generator.summary() + +opt_gen = keras.optimizers.Adam(1e-4) +opt_disc = keras.optimizers.Adam(1e-4) +loss_fn = keras.losses.BinaryCrossentropy() + +for epoch in range(10): + for idx, real in enumerate(tqdm(dataset)): + batch_size = real.shape[0] + random_latent_vectors = tf.random.normal(shape=(batch_size, latent_dim)) + fake = generator(random_latent_vectors) + + if idx % 100 == 0: + img = keras.preprocessing.image.array_to_img(fake[0]) + img.save(f"generated_images/generated_img{epoch}_{idx}_.png") + + ### Train Discriminator: max log(D(x)) + log(1 - D(G(z)) + with tf.GradientTape() as disc_tape: + loss_disc_real = loss_fn(tf.ones((batch_size, 1)), discriminator(real)) + loss_disc_fake = loss_fn(tf.zeros(batch_size, 1), discriminator(fake)) + loss_disc = (loss_disc_real + loss_disc_fake)/2 + + grads = disc_tape.gradient(loss_disc, discriminator.trainable_weights) + opt_disc.apply_gradients( + zip(grads, discriminator.trainable_weights) + ) + + ### Train Generator min log(1 - D(G(z)) <-> max log(D(G(z)) + with tf.GradientTape() as gen_tape: + fake = generator(random_latent_vectors) + output = discriminator(fake) + loss_gen = loss_fn(tf.ones(batch_size, 1), output) + + grads = gen_tape.gradient(loss_gen, generator.trainable_weights) + opt_gen.apply_gradients( + zip(grads, generator.trainable_weights) + ) + diff --git a/ML/algorithms/decisiontree/decision_tree.py b/ML/algorithms/decisiontree/decision_tree.py new file mode 100644 index 0000000..1b8e0fd --- /dev/null +++ b/ML/algorithms/decisiontree/decision_tree.py @@ -0,0 +1,282 @@ +""" +Author: Philip Andreadis +e-mail: philip_andreadis@hotmail.com + + +Implementation of Decision Tree model from scratch. +Metric used to apply the split on the data is the Gini index which is calculated for each feature's single value +in order to find the best split on each step. This means there is room for improvement performance wise as this +process is O(n^2) and can be reduced to linear complexity. + +Parameters of the model: +max_depth (int): Maximum depth of the decision tree +min_node_size (int): Minimum number of instances a node can have. If this threshold is exceeded the node is terminated + +Both are up to the user to set. + +Input dataset to train() function must be a numpy array containing both feature and label values. + +""" + + +from collections import Counter +import numpy as np + + +class DecisionTree: + def __init__(self, max_depth, min_node_size): + self.max_depth = max_depth + self.min_node_size = min_node_size + self.final_tree = {} + + """ + This function calculates the gini index of a split in the dataset + Firstly the gini score is calculated for each child note and the resulting Gini is the weighted sum of gini_left and gini_right + + Parameters: + child_nodes (list of np arrays): The two groups of instances resulting from the split + + Returns: + float:Gini index of the split + + """ + + def calculate_gini(self, child_nodes): + n = 0 + # Calculate number of all instances of the parent node + for node in child_nodes: + n = n + len(node) + gini = 0 + # Calculate gini index for each child node + for node in child_nodes: + m = len(node) + + # Avoid division by zero if a child node is empty + if m == 0: + continue + + # Create a list with each instance's class value + y = [] + for row in node: + y.append(row[-1]) + + # Count the frequency for each class value + freq = Counter(y).values() + node_gini = 1 + for i in freq: + node_gini = node_gini - (i / m) ** 2 + gini = gini + (m / n) * node_gini + return gini + + """ + This function splits the dataset on certain value of a feature + Parameters: + feature_index (int): Index of selected feature + + threshold : Value of the feature split point + + + Returns: + np.array: Two new groups of split instances + + """ + + def apply_split(self, feature_index, threshold, data): + instances = data.tolist() + left_child = [] + right_child = [] + for row in instances: + if row[feature_index] < threshold: + left_child.append(row) + else: + right_child.append(row) + left_child = np.array(left_child) + right_child = np.array(right_child) + return left_child, right_child + + """ + This function finds the best split on the dataset on each iteration of the algorithm by evaluating + all possible splits and applying the one with the minimum Gini index. + Parameters: + data: Dataset + + Returns node (dict): Dictionary with the index of the splitting feature and its value and the two child nodes + + """ + + def find_best_split(self, data): + num_of_features = len(data[0]) - 1 + gini_score = 1000 + f_index = 0 + f_value = 0 + # Iterate through each feature and find minimum gini score + for column in range(num_of_features): + for row in data: + value = row[column] + l, r = self.apply_split(column, value, data) + children = [l, r] + score = self.calculate_gini(children) + # print("Candidate split feature X{} < {} with Gini score {}".format(column,value,score)) + if score < gini_score: + gini_score = score + f_index = column + f_value = value + child_nodes = children + # print("Chosen feature is {} and its value is {} with gini index {}".format(f_index,f_value,gini_score)) + node = {"feature": f_index, "value": f_value, "children": child_nodes} + return node + + """ + This function calculates the most frequent class value in a group of instances + Parameters: + node: Group of instances + + Returns : Most common class value + + """ + + def calc_class(self, node): + # Create a list with each instance's class value + y = [] + for row in node: + y.append(row[-1]) + # Find most common class value + occurence_count = Counter(y) + return occurence_count.most_common(1)[0][0] + + """ + Recursive function that builds the decision tree by applying split on every child node until they become terminal. + Cases to terminate a node is: i.max depth of tree is reached ii.minimum size of node is not met iii.child node is empty + Parameters: + node: Group of instances + depth (int): Current depth of the tree + + + """ + + def recursive_split(self, node, depth): + l, r = node["children"] + del node["children"] + if l.size == 0: + c_value = self.calc_class(r) + node["left"] = node["right"] = {"class_value": c_value, "depth": depth} + return + elif r.size == 0: + c_value = self.calc_class(l) + node["left"] = node["right"] = {"class_value": c_value, "depth": depth} + return + # Check if tree has reached max depth + if depth >= self.max_depth: + # Terminate left child node + c_value = self.calc_class(l) + node["left"] = {"class_value": c_value, "depth": depth} + # Terminate right child node + c_value = self.calc_class(r) + node["right"] = {"class_value": c_value, "depth": depth} + return + # process left child + if len(l) <= self.min_node_size: + c_value = self.calc_class(l) + node["left"] = {"class_value": c_value, "depth": depth} + else: + node["left"] = self.find_best_split(l) + self.recursive_split(node["left"], depth + 1) + # process right child + if len(r) <= self.min_node_size: + c_value = self.calc_class(r) + node["right"] = {"class_value": c_value, "depth": depth} + else: + node["right"] = self.find_best_split(r) + self.recursive_split(node["right"], depth + 1) + + """ + Apply the recursive split algorithm on the data in order to build the decision tree + Parameters: + X (np.array): Training data + + Returns tree (dict): The decision tree in the form of a dictionary. + """ + + def train(self, X): + # Create initial node + tree = self.find_best_split(X) + # Generate the rest of the tree via recursion + self.recursive_split(tree, 1) + self.final_tree = tree + return tree + + """ + Prints out the decision tree. + Parameters: + tree (dict): Decision tree + + """ + + def print_dt(self, tree, depth=0): + if "feature" in tree: + print( + "\nSPLIT NODE: feature #{} < {} depth:{}\n".format( + tree["feature"], tree["value"], depth + ) + ) + self.print_dt(tree["left"], depth + 1) + self.print_dt(tree["right"], depth + 1) + else: + print( + "TERMINAL NODE: class value:{} depth:{}".format( + tree["class_value"], tree["depth"] + ) + ) + + """ + This function outputs the class value of the instance given based on the decision tree created previously. + Parameters: + tree (dict): Decision tree + instance(id np.array): Single instance of data + + Returns (float): predicted class value of the given instance + """ + + def predict_single(self, tree, instance): + if not tree: + print("ERROR: Please train the decision tree first") + return -1 + if "feature" in tree: + if instance[tree["feature"]] < tree["value"]: + return self.predict_single(tree["left"], instance) + else: + return self.predict_single(tree["right"], instance) + else: + return tree["class_value"] + + """ + This function outputs the class value for each instance of the given dataset. + Parameters: + X (np.array): Dataset with labels + + Returns y (np.array): array with the predicted class values of the dataset + """ + + def predict(self, X): + y_predict = [] + for row in X: + y_predict.append(self.predict_single(self.final_tree, row)) + return np.array(y_predict) + + +if __name__ == "__main__": + + # # test dataset + # X = np.array([[1, 1,0], [3, 1, 0], [1, 4, 0], [2, 4, 1], [3, 3, 1], [5, 1, 1]]) + # y = np.array([0, 0, 0, 1, 1, 1]) + + train_data = np.loadtxt("example_data/data.txt", delimiter=",") + train_y = np.loadtxt("example_data/targets.txt") + + # Build tree + dt = DecisionTree(5, 1) + tree = dt.train(train_data) + y_pred = dt.predict(train_data) + print(f"Accuracy: {sum(y_pred == train_y) / train_y.shape[0]}") + # Print out the decision tree + # dt.print_dt(tree) diff --git a/ML/algorithms/decisiontree/example_data/data.txt b/ML/algorithms/decisiontree/example_data/data.txt new file mode 100644 index 0000000..d04dcb3 --- /dev/null +++ b/ML/algorithms/decisiontree/example_data/data.txt @@ -0,0 +1,90 @@ +1.1107, -2.1079, 1 +-0.5498, 0.0943, 1 +-0.0382, 1.8829,1 +0.0555, -0.6139,1 +0.5870, -1.2067,1 +0.5453, 0.2509,1 +-0.3927, -0.6220,1 +-1.1905, -1.8785,1 +-0.4240, 0.7772,1 +-0.7139, 1.5846,1 +-0.8883, 2.1408,1 +-0.6922, 0.0993,1 +1.4350, 1.2334,1 +-0.7576, 0.7386,1 +-1.1144, -1.7059,1 +0.6612, -1.7296,1 +-2.1381, -0.0600,1 +1.3857, 1.2178,1 +-1.4951, 0.0373,1 +0.8029, 0.9739,1 +1.5607, 1.5862,1 +0.8563, -1.4245,1 +0.0397, -1.3799,1 +1.2331, 1.7421,1 +-2.0015, 0.8355,1 +-0.3428, -0.4780,1 +-0.8891, 1.2634,1 +0.3832, -0.1189,1 +0.4172, 1.0132,1 +-0.8695, -0.7947,1 +2.9737, 3.6438,2 +3.7680, 1.8649,2 +0.1166, 0.9435,2 +0.6896, 3.9160,2 +1.2234, 2.9899,2 +2.3009, 0.4150,2 +3.7693, 3.8027,2 +1.9450, 3.4208,2 +0.9290, 3.3611,2 +5.0027, 2.7870,2 +1.0101, 1.8737,2 +2.0751, 2.2628,2 +1.9113, 3.6777,2 +2.3127, 3.9130,2 +1.9392, 2.3976,2 +3.1218, 2.5495,2 +1.7032, 1.1509,2 +0.4212, 3.5322,2 +2.7686, 0.9402,2 +2.1696, 2.9285,2 +0.3380, 2.0947,2 +3.6886, 0.4054,2 +2.6315, 3.1962,2 +-0.5332, 3.1421,2 +0.3380, 3.0801,2 +1.4030, 1.1841,2 +2.8739, 2.7777,2 +1.1254, 3.2404,2 +0.0988, 1.9522,2 +0.3688, 2.8904,2 +1.4758, -1.6387,3 +1.9289, -1.8191,3 +2.5741, -1.3213,3 +2.1917, -1.2852,3 +0.8358, -2.3349,3 +2.6863, -1.8834,3 +3.1102, -0.4854,3 +3.7073, -0.6466,3 +3.6394, -0.4097,3 +0.5365, -3.6555,3 +2.9295, -0.3819,3 +0.8168, -3.1133,3 +1.3432, -1.7717,3 +1.1039, -2.2261,3 +1.3754, -2.2236,3 +0.6757, -2.5379,3 +-0.2029, -3.8420,3 +2.4210, -1.9788,3 +1.0335, -2.6042,3 +0.9638, -2.9449,3 +-0.8198, -5.4449,3 +1.9552, -1.5530,3 +0.3505, -3.1887,3 +2.4943, -1.8116,3 +1.9761, -1.0664,3 +0.5994, -3.0513,3 +2.2076, -1.6728,3 +1.9941, -1.8826,3 +1.7487, -2.9644,3 +1.4160, -2.4234,3 \ No newline at end of file diff --git a/ML/algorithms/decisiontree/example_data/targets.txt b/ML/algorithms/decisiontree/example_data/targets.txt new file mode 100644 index 0000000..236db3c --- /dev/null +++ b/ML/algorithms/decisiontree/example_data/targets.txt @@ -0,0 +1,90 @@ +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 \ No newline at end of file diff --git a/ML/algorithms/kmeans/kmeansclustering.py b/ML/algorithms/kmeans/kmeansclustering.py new file mode 100644 index 0000000..98a25e6 --- /dev/null +++ b/ML/algorithms/kmeans/kmeansclustering.py @@ -0,0 +1,97 @@ +""" +From scratch implementation of K means clustering which is a unsupervised +clustering method that works by iteratively computing new centroids and +moving centroids to the center of the new formed clusters. + +Programmed by Aladdin Persson +* 2020-05-28 Initial coding + +""" + +import numpy as np +import matplotlib.pyplot as plt +from sklearn.datasets import make_blobs + + +class KMeansClustering: + def __init__(self, X, num_clusters): + self.K = num_clusters + self.max_iterations = 100 + self.plot_figure = True + self.num_examples = X.shape[0] + self.num_features = X.shape[1] + + def initialize_random_centroids(self, X): + centroids = np.zeros((self.K, self.num_features)) + + for k in range(self.K): + centroid = X[np.random.choice(range(self.num_examples))] + centroids[k] = centroid + + return centroids + + def create_clusters(self, X, centroids): + # Will contain a list of the points that are associated with that specific cluster + clusters = [[] for _ in range(self.K)] + + # Loop through each point and check which is the closest cluster + for point_idx, point in enumerate(X): + closest_centroid = np.argmin( + np.sqrt(np.sum((point - centroids) ** 2, axis=1)) + ) + clusters[closest_centroid].append(point_idx) + + return clusters + + def calculate_new_centroids(self, clusters, X): + centroids = np.zeros((self.K, self.num_features)) + for idx, cluster in enumerate(clusters): + new_centroid = np.mean(X[cluster], axis=0) + centroids[idx] = new_centroid + + return centroids + + def predict_cluster(self, clusters, X): + y_pred = np.zeros(self.num_examples) + + for cluster_idx, cluster in enumerate(clusters): + for sample_idx in cluster: + y_pred[sample_idx] = cluster_idx + + return y_pred + + def plot_fig(self, X, y): + plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral) + plt.show() + + def fit(self, X): + centroids = self.initialize_random_centroids(X) + + for it in range(self.max_iterations): + clusters = self.create_clusters(X, centroids) + + previous_centroids = centroids + centroids = self.calculate_new_centroids(clusters, X) + + diff = centroids - previous_centroids + + if not diff.any(): + print("Termination criterion satisfied") + break + + # Get label predictions + y_pred = self.predict_cluster(clusters, X) + + if self.plot_figure: + self.plot_fig(X, y_pred) + + return y_pred + + +if __name__ == "__main__": + np.random.seed(10) + num_clusters = 3 + X, _ = make_blobs(n_samples=1000, n_features=2, centers=num_clusters) + + Kmeans = KMeansClustering(X, num_clusters) + y_pred = Kmeans.fit(X) diff --git a/ML/algorithms/knn/__pycache__/utils.cpython-37.pyc b/ML/algorithms/knn/__pycache__/utils.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6bcf779773b7e6ab1568561f87fac7577cb8dfa9 GIT binary patch literal 1559 zcmZXU&5s*36u@oIM<%n`rIfJS0*3)4)F5>Q%LSo|1-eo}ZTHfmq9_n~$KGVJ^M&oS z$uc7$wcOx_kl>UYx$uARA0Xclr<{>ER6^pt$B8y_Z_s-jS6cc|w)ILX4}LSeQfAFY$@hAY?$ zIb1Q&F)A!=kQT^I5d9Y@L2Dvd%?w%4id3{qDt644w06#0z;kEc8dlNA^niT+b?t#o zDi2~o3ulLP$zxXgFv5W&aw@WP>K1y?i&0HXV?mE06L;Z33>AKt?2tNu7Qe#yRuwF9 z1!xCr`RV%n3ias*t}H%z$em^065JXf?JW@FM3!FOobey)Db~(t4*-720}= z=Obx@G|6?zV`+V85JlE>h}^PxXdRv8)`=n7DN|!xI_Abm1$~(f?v*k&il^4q7;6UmVQh2Pb(xn3^QjyXD+&0a4t@q2PvV zY4D}!mp~Ef!grZ&u`Rkyx9FSn4ccLE(SWJfp*O~dgQWu!fHYjWaF)OoaBy}fK-5*T zAWI^gE5OWuS}C^f5JqaZ1}ZMz;{Qf8ce^+r;R9uC;efcnhF3X27urA*+DkTIbx^kr zn|M{Q@Ry`&qsG!6oA~4#g2Ktxv(+{GdFHK& z1Del9v@l)}pe#5XebxQt*6*j^?>Bs@3w*8idraYTv>s2(F;_m=JxAf|RCtt4XYV=d zWJplPX9{n{2AS03kxGR1dBdN&gw4R>Lz&uEiGPL|KvNLLOKH8PQZF=P<03ck|2bAK z;so2Mx}bU;^)lM8fU;f&Kc3XmvGry{oEs}Xv)+8|K?NS0fz0RDFN-8M+R}c5=UTmn zc{*iUnBm!sm|5dggt>H&?y*a>%eI}+?a(WZdKcPzw0VrZz_x}%QN+Wc_3~*}&ez+1 yKH~-xrpXcTiWW@W)Xml!8k;;9mVxg@HERiOz^10Dd>?-NMC0kYEC7(h%l`nk%b8>V literal 0 HcmV?d00001 diff --git a/ML/algorithms/knn/example_data/data.txt b/ML/algorithms/knn/example_data/data.txt new file mode 100644 index 0000000..51225bd --- /dev/null +++ b/ML/algorithms/knn/example_data/data.txt @@ -0,0 +1,90 @@ +1.1107, -2.1079 +-0.5498, 0.0943 +-0.0382, 1.8829 +0.0555, -0.6139 +0.5870, -1.2067 +0.5453, 0.2509 +-0.3927, -0.6220 +-1.1905, -1.8785 +-0.4240, 0.7772 +-0.7139, 1.5846 +-0.8883, 2.1408 +-0.6922, 0.0993 +1.4350, 1.2334 +-0.7576, 0.7386 +-1.1144, -1.7059 +0.6612, -1.7296 +-2.1381, -0.0600 +1.3857, 1.2178 +-1.4951, 0.0373 +0.8029, 0.9739 +1.5607, 1.5862 +0.8563, -1.4245 +0.0397, -1.3799 +1.2331, 1.7421 +-2.0015, 0.8355 +-0.3428, -0.4780 +-0.8891, 1.2634 +0.3832, -0.1189 +0.4172, 1.0132 +-0.8695, -0.7947 +2.9737, 3.6438 +3.7680, 1.8649 +0.1166, 0.9435 +0.6896, 3.9160 +1.2234, 2.9899 +2.3009, 0.4150 +3.7693, 3.8027 +1.9450, 3.4208 +0.9290, 3.3611 +5.0027, 2.7870 +1.0101, 1.8737 +2.0751, 2.2628 +1.9113, 3.6777 +2.3127, 3.9130 +1.9392, 2.3976 +3.1218, 2.5495 +1.7032, 1.1509 +0.4212, 3.5322 +2.7686, 0.9402 +2.1696, 2.9285 +0.3380, 2.0947 +3.6886, 0.4054 +2.6315, 3.1962 +-0.5332, 3.1421 +0.3380, 3.0801 +1.4030, 1.1841 +2.8739, 2.7777 +1.1254, 3.2404 +0.0988, 1.9522 +0.3688, 2.8904 +1.4758, -1.6387 +1.9289, -1.8191 +2.5741, -1.3213 +2.1917, -1.2852 +0.8358, -2.3349 +2.6863, -1.8834 +3.1102, -0.4854 +3.7073, -0.6466 +3.6394, -0.4097 +0.5365, -3.6555 +2.9295, -0.3819 +0.8168, -3.1133 +1.3432, -1.7717 +1.1039, -2.2261 +1.3754, -2.2236 +0.6757, -2.5379 +-0.2029, -3.8420 +2.4210, -1.9788 +1.0335, -2.6042 +0.9638, -2.9449 +-0.8198, -5.4449 +1.9552, -1.5530 +0.3505, -3.1887 +2.4943, -1.8116 +1.9761, -1.0664 +0.5994, -3.0513 +2.2076, -1.6728 +1.9941, -1.8826 +1.7487, -2.9644 +1.4160, -2.4234 \ No newline at end of file diff --git a/ML/algorithms/knn/example_data/targets.txt b/ML/algorithms/knn/example_data/targets.txt new file mode 100644 index 0000000..236db3c --- /dev/null +++ b/ML/algorithms/knn/example_data/targets.txt @@ -0,0 +1,90 @@ +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 \ No newline at end of file diff --git a/ML/algorithms/knn/knn.py b/ML/algorithms/knn/knn.py new file mode 100644 index 0000000..5305ab0 --- /dev/null +++ b/ML/algorithms/knn/knn.py @@ -0,0 +1,110 @@ +""" +Implementation of K-nearest neighbor (KNN) from scratch +where you can either use 2-loops (inefficient), 1-loop (better) +or a heavily vectorized zero-loop implementation. + +Programmed by Aladdin Persson +* 2020-04-24 Initial coding +""" + +import numpy as np + + +class KNearestNeighbor: + def __init__(self, k): + self.k = k + self.eps = 1e-8 + + def train(self, X, y): + self.X_train = X + self.y_train = y + + def predict(self, X_test, num_loops=0): + if num_loops == 0: + distances = self.compute_distance_vectorized(X_test) + + elif num_loops == 1: + distances = self.compute_distance_one_loop(X_test) + + else: + distances = self.compute_distance_two_loops(X_test) + + return self.predict_labels(distances) + + def compute_distance_two_loops(self, X_test): + """ + Inefficient naive implementation, use only + as a way of understanding what kNN is doing + """ + + num_test = X_test.shape[0] + num_train = self.X_train.shape[0] + distances = np.zeros((num_test, num_train)) + + for i in range(num_test): + for j in range(num_train): + # (Taking sqrt is not necessary: min distance won't change since sqrt is monotone) + distances[i, j] = np.sqrt( + self.eps + np.sum((X_test[i, :] - self.X_train[j, :]) ** 2) + ) + + return distances + + def compute_distance_one_loop(self, X_test): + """ + Much better than two-loops but not as fast as fully vectorized version. + Utilize Numpy broadcasting in X_train - X_test[i,:] + """ + num_test = X_test.shape[0] + num_train = self.X_train.shape[0] + distances = np.zeros((num_test, num_train)) + + for i in range(num_test): + # (Taking sqrt is not necessary: min distance won't change since sqrt is monotone) + distances[i, :] = np.sqrt( + self.eps + np.sum((self.X_train - X_test[i, :]) ** 2, axis=1) + ) + + return distances + + def compute_distance_vectorized(self, X_test): + """ + Can be tricky to understand this, we utilize heavy + vecotorization as well as numpy broadcasting. + Idea: if we have two vectors a, b (two examples) + and for vectors we can compute (a-b)^2 = a^2 - 2a (dot) b + b^2 + expanding on this and doing so for every vector lends to the + heavy vectorized formula for all examples at the same time. + """ + X_test_squared = np.sum(X_test ** 2, axis=1, keepdims=True) + X_train_squared = np.sum(self.X_train ** 2, axis=1, keepdims=True) + two_X_test_X_train = np.dot(X_test, self.X_train.T) + + # (Taking sqrt is not necessary: min distance won't change since sqrt is monotone) + return np.sqrt( + self.eps + X_test_squared - 2 * two_X_test_X_train + X_train_squared.T + ) + + def predict_labels(self, distances): + num_test = distances.shape[0] + y_pred = np.zeros(num_test) + + for i in range(num_test): + y_indices = np.argsort(distances[i, :]) + k_closest_classes = self.y_train[y_indices[: self.k]].astype(int) + y_pred[i] = np.argmax(np.bincount(k_closest_classes)) + + return y_pred + + +if __name__ == "__main__": + X = np.loadtxt("example_data/data.txt", delimiter=",") + y = np.loadtxt("example_data/targets.txt") + + X = np.array([[1, 1], [3, 1], [1, 4], [2, 4], [3, 3], [5, 1]]) + y = np.array([0, 0, 0, 1, 1, 1]) + + KNN = KNearestNeighbor(k=1) + KNN.train(X, y) + y_pred = KNN.predict(X, num_loops=0) + print(f"Accuracy: {sum(y_pred == y) / y.shape[0]}") diff --git a/ML/algorithms/linearregression/__pycache__/linear_regression_gradient_descent.cpython-37.pyc b/ML/algorithms/linearregression/__pycache__/linear_regression_gradient_descent.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e6d9a1e25d89395a770d1d43bf6f179c7f0ceb0 GIT binary patch literal 2194 zcmZuy&2Jnv6t_K|*~w%#glgNSP>@kUVobMB=~TJU7IJ9Jq1f#CtPo5>lMle)jnJef)mU`$?yfMqr)i0LuxC;3-j|L z#r#C#7eA2M)Y--h}Ae7h%~GH>4@7#nD8-Z zgt>^);RY<%l;~%1oNa=^4}~`pQ7-O2di#>t5{Z9aJlJ2S`|Hgk>r1}p-O<@Vhe@KO zSRILv<50>d6?c@*bBOgySZ{QO`x~JVYne&HC>Am^qL(FCy>|q(%Zry6FD$-yVewsY zJB>^f#_$oY8vOV3<@d!GLm3({2fCPPNKTkaktbmcDr;dnfbhTt&{p0a;7?Y1I6iL{ z2-l(KAHbkUmjXYSY)K}qUD^e9NPCxbIie1;EnPVSvm-q@3v)v@0qwbRzQ*+s)|)*B z_hG{s`x5m06bzCUBp{N(NDGviByfqfGWfdv^R3^`;1je*=}<8V~EK>#c?K`@VjK#37T9rzocIUalG`Nk*WlA$>q#+cFSf z0jOXVeq&)^^;aksUdikX0oev!2NGaQTIumEX&SJ0B|S}c=neAaT}Tm`%s`s>lx@S= ziB~uU;Jn=^Y{^dn=J4V_1D#p@%rvE4*iVUcipEp&1K*((tV~*va^OedO!+o{^6)+> zIHb9;qOlM(QpBev54WN``VAr*pI8Do1-xtrg(}7zpGkkNW)RO(m6vwD77kVEgu|gq zWd&AA)6yO*oxxX)FPBEr=$CLn4pp@c+{2>Rub^SKM)DBEvv>@FEm>qLNNY_@`H>pp z@Z_fFU@yme32W1N)}&1~4-(ENXq&bFkE*D*;?tYHiw{B?CMpO@F9?!MZp0`zgW$|~nfI`6 z2H$^&?bmC5t84^;%zEI74Zn}WQC$FdwSEhR(t*UvEGaq875l4P%d{$ju6Otf){a(1 fa+tjXZ%g+|9rINzt{jhX=CV28rE~Okco+W#$e9?s literal 0 HcmV?d00001 diff --git a/ML/algorithms/linearregression/__pycache__/linear_regression_normal_equation.cpython-37.pyc b/ML/algorithms/linearregression/__pycache__/linear_regression_normal_equation.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7866dc728cf92e762d3df636df58f5f3b9b226b1 GIT binary patch literal 625 zcmah_!HN_y5KSfNo;dETD-4Kx^JZUWen3?8w4jTqs5FaBFmblW?sRX`BRkM@(yJe! zrx`r?3I2sQAy-dx_aq2bxwv|>=z4kecvb1tozZB>Fuwf!`24G6>>Cw-B0+K+Gdw{s z%s|C*Fx-f@Eaz4j`HK68COP7{%o7XqbUm=rCL5kBlUg-qzqJczni-7Q6_yVzx5^IR z@cg2IM=VoYoXrkja5^yXADF_tiy0mubZiYhn{xwKnc*+_23EXdbJ6o2Ya`x?6?r6T z$vP#5?m^Es=sd3gE4~uFz#HYE2b{Yl$RJ96T82zT?%F6DXG2WFv2JZlb=z8JqA*Pt z)2ej3nnl@`?sbI6nT+r(!qU@@B0T-X{3T>R4knW+e)sQ9(cSp6JFdeNd#(1~&b$qw zY~0bAQ2bR2*Z5jjg*{p54jq$r8L$1jDE$VjZY2W8_5BGeIFOucrdsiUOR@6hCgsPiN0*(IPi{{wqu YQa9?xEGm1G796NgNwu#)!7l8JUwY%A^Z)<= literal 0 HcmV?d00001 diff --git a/ML/algorithms/linearregression/linear_regression_gradient_descent.py b/ML/algorithms/linearregression/linear_regression_gradient_descent.py new file mode 100644 index 0000000..43573a7 --- /dev/null +++ b/ML/algorithms/linearregression/linear_regression_gradient_descent.py @@ -0,0 +1,62 @@ +""" +Implementation of Linear Regression using Gradient Descent. + +Let m = #training examples, n = #number of features Sizes differ +a little bit from blog notation. It takes as input the following: +y is R^(1 x m), X is R^(n x m), w is R^(n x 1) + +Programmed by Aladdin Persson +* 2020-04-03 Initial coding +* 2020-04-25 Updated comments, and small changes in code +""" + +import numpy as np + + +class LinearRegression: + def __init__(self, print_cost=False): + self.learning_rate = 0.01 + self.total_iterations = 1000 + self.print_cost = print_cost + + def y_hat(self, X, w): + return np.dot(w.T, X) + + def cost(self, yhat, y): + C = 1 / self.m * np.sum(np.power(yhat - y, 2)) + + return C + + def gradient_descent(self, w, X, y, yhat): + dCdW = 2 / self.m * np.dot(X, (yhat - y).T) + w = w - self.learning_rate * dCdW + + return w + + def main(self, X, y): + # Add x1 = 1 + ones = np.ones((1, X.shape[1])) + X = np.append(ones, X, axis=0) + + self.m = X.shape[1] + self.n = X.shape[0] + + w = np.zeros((self.n, 1)) + + for it in range(self.total_iterations + 1): + yhat = self.y_hat(X, w) + cost = self.cost(yhat, y) + + if it % 2000 == 0 and self.print_cost: + print(f"Cost at iteration {it} is {cost}") + + w = self.gradient_descent(w, X, y, yhat) + + return w + + +if __name__ == "__main__": + X = np.random.rand(1, 500) + y = 3 * X + 5 + np.random.randn(1, 500) * 0.1 + regression = LinearRegression() + w = regression.main(X, y) diff --git a/ML/algorithms/linearregression/linear_regression_normal_equation.py b/ML/algorithms/linearregression/linear_regression_normal_equation.py new file mode 100644 index 0000000..373d847 --- /dev/null +++ b/ML/algorithms/linearregression/linear_regression_normal_equation.py @@ -0,0 +1,28 @@ +""" +Implementation of Linear Regression using the Normal Equation. + +Let m = #training examples, n = #number of features and the +input shapes are y is R^(m x 1), X is R^(m x n), w is R^(n x 1). +Using these shapes, the normal equation implementation is +exactly as the derived formula :) + +Programmed by Aladdin Persson +* 2020-04-25 Initial coding +""" + +import numpy as np + + +def linear_regression_normal_equation(X, y): + ones = np.ones((X.shape[0], 1)) + X = np.append(ones, X, axis=1) + W = np.dot(np.linalg.pinv(np.dot(X.T, X)), np.dot(X.T, y)) + return W + + +if __name__ == "__main__": + # Run a small test example: y = 5x (approximately) + m, n = 500, 1 + X = np.random.rand(m, n) + y = 5 * X + np.random.randn(m, n) * 0.1 + W = linear_regression_normal_equation(X, y) diff --git a/ML/algorithms/logisticregression/__pycache__/utils.cpython-37.pyc b/ML/algorithms/logisticregression/__pycache__/utils.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5e5f2e57f2f909ff7f9585436a317c2b3574bc74 GIT binary patch literal 1567 zcmZux&5s*36t_JenapNWTEcFD%fJCOmAazK0SQ$U*p&)uyO)AMQ6O^0PBQ6yVLNTI zOeCZ(H@G6fDLHb0KY=^{f)7ZDQ!e}goOo}t>{1C!@B8`r3zx_2FB$^C&K63UbGZnaqY@33(8H6b)sX$R{!~ zmxVASqTwQXKNm_)qx)Qy+)NgcE}~dTk(g*)NFA9Xnj~2`Dil^r^6|FFLAZglkdqAq z9^(OVG=UmGM?m^7V1}${MJm=I6&Gkd z@{BEgnBfSxs*0?gWdkjUI*?W8)EYz#nYt?va;R`SWS=Yp@c0$xH>zMwAs_W%tB=^r zq;e|%4pgaJlwaQbl$ho;tQ-L?`i2Q_n{#f#?qP;2e8}0EwnXDQXqjoQcGrYrC3l3) z3Qjf@PCW*y$HoOQ{_zJKzui?B+uQ)wbu5i7)z*zOUUu7-<)!sbr7E=b6wk-f25FM( zlE>2e;1ESt2SjdJJg|;Va_hv9?Ubpp4IOi1q=HyxgGZ%|jpC_w^`v;(ZCZL_>9M8v zE&a^Wg{4!=lDVbIQu7m05$xyh_~@PfCt51q=P4JWe=PN5Q_6o3B+2Ei z2a>BCFmUUrNK;rPDf0fq2QX(`C_r4M`)M&wv`GL#V+A0^gqcZFeNZlJ8@$}ef#8N~ zY4E-1Jz#`hqixovd$dh&(l=imZun zt^<0W^HTKg6GoQq67X>zbN+Y6)_Xa_2fVSB1LOiqyvhNbp$@o0ea-r887!NIO}#2u z`D;=&kz?&;STR6e2q@pFb`W>dCh8`f?o>h5tWaxBck$8JSPG}@i`~`dxv=V8RTQwd zol#>?kQ#5}uR6cn`{VR%3oeBZ@f>fPyIrR6%B;uJa>5n-N&r0NgHZTL>tOeabut7~ z#^(y3uMIM(Cu5Ze>+>3l>I%96mQQ4A8zue?F<=hbJK?3YUMfiz| zA$t*6x20Y|{Z(Mr2aEtbES*?yKETCM@VWICTMGnOY!0+oSidZi+-OUCHB`6kH7wLB z)4~kSm&DQy4ZjA5@FGLL&2S_5VKUii&w4j?p+qp77MTb15iGj=>Px# literal 0 HcmV?d00001 diff --git a/ML/algorithms/logisticregression/logistic_regression.py b/ML/algorithms/logisticregression/logistic_regression.py new file mode 100644 index 0000000..4cea983 --- /dev/null +++ b/ML/algorithms/logisticregression/logistic_regression.py @@ -0,0 +1,70 @@ +""" +From scratch implementation of Logistic Regression + +Programmed by Aladdin Persson +* 2020-05-24 Initial coding + +""" + +import numpy as np +from sklearn.datasets import make_blobs + + +class LogisticRegression: + def __init__(self, X, learning_rate=0.1, num_iters=10000): + self.lr = learning_rate + self.num_iters = num_iters + + # m for #training_examples, n for #features + self.m, self.n = X.shape + + def train(self, X, y): + # init weights + self.weights = np.zeros((self.n, 1)) + self.bias = 0 + + for it in range(self.num_iters + 1): + # calculate hypothesis + y_predict = self.sigmoid(np.dot(X, self.weights) + self.bias) + + # calculate cost + cost = ( + -1 + / self.m + * np.sum(y * np.log(y_predict) + (1 - y) * np.log(1 - y_predict)) + ) + + # back prop / gradient calculations + dw = 1 / self.m * np.dot(X.T, (y_predict - y)) + db = 1 / self.m * np.sum(y_predict - y) + + # gradient descent update step + self.weights -= self.lr * dw + self.bias -= self.lr * db + + # print cost sometimes + if it % 1000 == 0: + print(f"Cost after iteration {it}: {cost}") + + return self.weights, self.bias + + def predict(self, X): + y_predict = self.sigmoid(np.dot(X, self.weights) + self.bias) + y_predict_labels = y_predict > 0.5 + + return y_predict_labels + + def sigmoid(self, z): + return 1 / (1 + np.exp(-z)) + + +if __name__ == "__main__": + np.random.seed(1) + X, y = make_blobs(n_samples=1000, centers=2) + y = y[:, np.newaxis] + + logreg = LogisticRegression(X) + w, b = logreg.train(X, y) + y_predict = logreg.predict(X) + + print(f"Accuracy: {np.sum(y==y_predict)/X.shape[0]}") diff --git a/ML/algorithms/naivebayes/example_data/data.txt b/ML/algorithms/naivebayes/example_data/data.txt new file mode 100644 index 0000000..51225bd --- /dev/null +++ b/ML/algorithms/naivebayes/example_data/data.txt @@ -0,0 +1,90 @@ +1.1107, -2.1079 +-0.5498, 0.0943 +-0.0382, 1.8829 +0.0555, -0.6139 +0.5870, -1.2067 +0.5453, 0.2509 +-0.3927, -0.6220 +-1.1905, -1.8785 +-0.4240, 0.7772 +-0.7139, 1.5846 +-0.8883, 2.1408 +-0.6922, 0.0993 +1.4350, 1.2334 +-0.7576, 0.7386 +-1.1144, -1.7059 +0.6612, -1.7296 +-2.1381, -0.0600 +1.3857, 1.2178 +-1.4951, 0.0373 +0.8029, 0.9739 +1.5607, 1.5862 +0.8563, -1.4245 +0.0397, -1.3799 +1.2331, 1.7421 +-2.0015, 0.8355 +-0.3428, -0.4780 +-0.8891, 1.2634 +0.3832, -0.1189 +0.4172, 1.0132 +-0.8695, -0.7947 +2.9737, 3.6438 +3.7680, 1.8649 +0.1166, 0.9435 +0.6896, 3.9160 +1.2234, 2.9899 +2.3009, 0.4150 +3.7693, 3.8027 +1.9450, 3.4208 +0.9290, 3.3611 +5.0027, 2.7870 +1.0101, 1.8737 +2.0751, 2.2628 +1.9113, 3.6777 +2.3127, 3.9130 +1.9392, 2.3976 +3.1218, 2.5495 +1.7032, 1.1509 +0.4212, 3.5322 +2.7686, 0.9402 +2.1696, 2.9285 +0.3380, 2.0947 +3.6886, 0.4054 +2.6315, 3.1962 +-0.5332, 3.1421 +0.3380, 3.0801 +1.4030, 1.1841 +2.8739, 2.7777 +1.1254, 3.2404 +0.0988, 1.9522 +0.3688, 2.8904 +1.4758, -1.6387 +1.9289, -1.8191 +2.5741, -1.3213 +2.1917, -1.2852 +0.8358, -2.3349 +2.6863, -1.8834 +3.1102, -0.4854 +3.7073, -0.6466 +3.6394, -0.4097 +0.5365, -3.6555 +2.9295, -0.3819 +0.8168, -3.1133 +1.3432, -1.7717 +1.1039, -2.2261 +1.3754, -2.2236 +0.6757, -2.5379 +-0.2029, -3.8420 +2.4210, -1.9788 +1.0335, -2.6042 +0.9638, -2.9449 +-0.8198, -5.4449 +1.9552, -1.5530 +0.3505, -3.1887 +2.4943, -1.8116 +1.9761, -1.0664 +0.5994, -3.0513 +2.2076, -1.6728 +1.9941, -1.8826 +1.7487, -2.9644 +1.4160, -2.4234 \ No newline at end of file diff --git a/ML/algorithms/naivebayes/example_data/targets.txt b/ML/algorithms/naivebayes/example_data/targets.txt new file mode 100644 index 0000000..236db3c --- /dev/null +++ b/ML/algorithms/naivebayes/example_data/targets.txt @@ -0,0 +1,90 @@ +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 \ No newline at end of file diff --git a/ML/algorithms/naivebayes/naivebayes.py b/ML/algorithms/naivebayes/naivebayes.py new file mode 100644 index 0000000..c7b9c37 --- /dev/null +++ b/ML/algorithms/naivebayes/naivebayes.py @@ -0,0 +1,67 @@ +""" +Naive Bayes Classifier Implementation from scratch + +To run the code structure the code in the following way: + X be size: (num_training_examples, num_features) + y be size: (num_classes, ) + +Where the classes are 0, 1, 2, etc. Then an example run looks like: + NB = NaiveBayes(X, y) + NB.fit(X) + predictions = NB.predict(X) + +Programmed by Aladdin Persson +* 2020-04-21 Initial coding + +""" +import numpy as np + + +class NaiveBayes: + def __init__(self, X, y): + self.num_examples, self.num_features = X.shape + self.num_classes = len(np.unique(y)) + self.eps = 1e-6 + + def fit(self, X): + self.classes_mean = {} + self.classes_variance = {} + self.classes_prior = {} + + for c in range(self.num_classes): + X_c = X[y == c] + + self.classes_mean[str(c)] = np.mean(X_c, axis=0) + self.classes_variance[str(c)] = np.var(X_c, axis=0) + self.classes_prior[str(c)] = X_c.shape[0] / X.shape[0] + + def predict(self, X): + probs = np.zeros((self.num_examples, self.num_classes)) + + for c in range(self.num_classes): + prior = self.classes_prior[str(c)] + probs_c = self.density_function( + X, self.classes_mean[str(c)], self.classes_variance[str(c)] + ) + probs[:, c] = probs_c + np.log(prior) + + return np.argmax(probs, 1) + + def density_function(self, x, mean, sigma): + # Calculate probability from Gaussian density function + const = -self.num_features / 2 * np.log(2 * np.pi) - 0.5 * np.sum( + np.log(sigma + self.eps) + ) + probs = 0.5 * np.sum(np.power(x - mean, 2) / (sigma + self.eps), 1) + return const - probs + + +if __name__ == "__main__": + X = np.loadtxt("example_data/data.txt", delimiter=",") + y = np.loadtxt("example_data/targets.txt") - 1 + + NB = NaiveBayes(X, y) + NB.fit(X) + y_pred = NB.predict(X) + + print(f"Accuracy: {sum(y_pred==y)/X.shape[0]}") diff --git a/ML/algorithms/neuralnetwork/NN.py b/ML/algorithms/neuralnetwork/NN.py new file mode 100644 index 0000000..6925297 --- /dev/null +++ b/ML/algorithms/neuralnetwork/NN.py @@ -0,0 +1,174 @@ +""" +Simple two-layered Neural Network from scratch implementation. + +Programmed by Aladdin Persson +* 2020-04-28 Initial coding + +""" + +import numpy as np +from utils import create_dataset, plot_contour + + +class NeuralNetwork: + def __init__(self, X, y): + # m for #training examples and n for #features + self.m, self.n = X.shape + + # regularization term lambd (lambda is reserved keyword) + self.lambd = 1e-3 + self.learning_rate = 0.1 + + # Define size of first hidden-layer and second hidden layer (output layer) + self.h1 = 25 + self.h2 = len(np.unique(y)) + + def init_kaiming_weights(self, l0, l1): + # Kaiming weights + w = np.random.randn(l0, l1) * np.sqrt(2.0 / l0) + b = np.zeros((1, l1)) + + return w, b + + def forward_prop(self, X, parameters): + W2 = parameters["W2"] + W1 = parameters["W1"] + b2 = parameters["b2"] + b1 = parameters["b1"] + + # forward prop + a0 = X + z1 = np.dot(a0, W1) + b1 + + # apply nonlinearity (relu) + a1 = np.maximum(0, z1) + z2 = np.dot(a1, W2) + b2 + + # softmax on the last layer + scores = z2 + exp_scores = np.exp(scores) + probs = exp_scores / np.sum(exp_scores, axis=1, keepdims=True) + + # cache values from forward pass to use for backward pass + cache = {"a0": X, "probs": probs, "a1": a1} + + return cache, probs + + def compute_cost(self, y, probs, parameters): + W2 = parameters["W2"] + W1 = parameters["W1"] + + y = y.astype(int) + data_loss = np.sum(-np.log(probs[np.arange(self.m), y]) / self.m) + reg_loss = 0.5 * self.lambd * np.sum(W1 * W1) + 0.5 * self.lambd * np.sum( + W2 * W2 + ) + + # total cost J + total_cost = data_loss + reg_loss + + return total_cost + + def back_prop(self, cache, parameters, y): + # Unpack from parameters + W2 = parameters["W2"] + W1 = parameters["W1"] + b2 = parameters["b2"] + b1 = parameters["b1"] + + # Unpack from forward prop + a0 = cache["a0"] + a1 = cache["a1"] + probs = cache["probs"] + + dz2 = probs + dz2[np.arange(self.m), y] -= 1 + dz2 /= self.m + + # backprop through values dW2 and db2 + dW2 = np.dot(a1.T, dz2) + self.lambd * W2 + db2 = np.sum(dz2, axis=0, keepdims=True) + + # Back to the (only) hidden layer in this case + dz1 = np.dot(dz2, W2.T) + dz1 = dz1 * (a1 > 0) + + # backprop through values dW1, db1 + dW1 = np.dot(a0.T, dz1) + self.lambd * W1 + db1 = np.sum(dz1, axis=0, keepdims=True) + + grads = {"dW1": dW1, "dW2": dW2, "db1": db1, "db2": db2} + + return grads + + def update_parameters(self, parameters, grads): + learning_rate = self.learning_rate + + W2 = parameters["W2"] + W1 = parameters["W1"] + b2 = parameters["b2"] + b1 = parameters["b1"] + + dW2 = grads["dW2"] + dW1 = grads["dW1"] + db2 = grads["db2"] + db1 = grads["db1"] + + # Do gradient descent step + W2 -= learning_rate * dW2 + W1 -= learning_rate * dW1 + b2 -= learning_rate * db2 + b1 -= learning_rate * db1 + + # store back weights in parameters + parameters = {"W1": W1, "W2": W2, "b1": b1, "b2": b2} + + return parameters + + def main(self, X, y, num_iter=10000): + # initialize our weights + W1, b1 = self.init_kaiming_weights(self.n, self.h1) + W2, b2 = self.init_kaiming_weights(self.h1, self.h2) + + # pack parameters into a dictionary + parameters = {"W1": W1, "W2": W2, "b1": b1, "b2": b2} + + # How many gradient descent updates we want to do + for it in range(num_iter + 1): + + # forward prop + cache, probs = self.forward_prop(X, parameters) + + # calculate cost + cost = self.compute_cost(y, probs, parameters) + + # print cost sometimes + if it % 2500 == 0: + print(f"At iteration {it} we have a cost of {cost}") + + # back prop + grads = self.back_prop(cache, parameters, y) + + # update parameters + parameters = self.update_parameters(parameters, grads) + + return parameters + + +if __name__ == "__main__": + # Generate dataset + X, y = create_dataset(300, K=3) + y = y.astype(int) + + # Train network + NN = NeuralNetwork(X, y) + trained_parameters = NN.main(X, y) + + # Get trained parameters + W2 = trained_parameters["W2"] + W1 = trained_parameters["W1"] + b2 = trained_parameters["b2"] + b1 = trained_parameters["b1"] + + # Plot the decision boundary (for nice visualization) + plot_contour(X, y, NN, trained_parameters) diff --git a/ML/algorithms/neuralnetwork/__pycache__/utils.cpython-37.pyc b/ML/algorithms/neuralnetwork/__pycache__/utils.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e47cc2614c8ca6e490f5ba264e290742d9efebca GIT binary patch literal 1577 zcmZWp&2J+$6t_JenWRZ5CA3}OFo1+M2vtySsG`7DLTI6v1%aYKG#$IiWM?vi?S7W0I2#?vdCh+HU@&-<}X?u%J`D$62H)&84r%;K~>lMp-3^yKUWG%og9AH*jj&&0Wi z^-Usl@%UsOzdPenOyj$WtP(w$$Eu7|DR`#iaVb=+%XpF%tCa5RA$KzD%DU%)u631>CaWI+uvv_}j(WlLInHx|(R%WpL^^Z`90pMPBkAQKZn zEO74akREx!>JV0V&?3)}rB^pl120Co7$<>8lc~Q5Acpd=M|MaZfh9B;-!RbX=1USCEuC7HU0NzF)jt#YBGmKuYj@rnexig_!z52QA07#HUzgSJqYp>t85gA* z9v=_Sbe5~VYHquLlthaWPjsS$#uuQT14gJ1-xlq%F5RYG`YL^ew%O}6V)AA1rq~D^ zU7!fa;bj+k1bFcc^xbtHkaCMG$dYhx7qIXjD@E%LVWbY~@Y?5Y=YK2K)|(X#zyw=( zKt9}hXna5o%771)mu$%DX5G?k8kpuHToThlj@8r~h5?Q?%sQ%FcOWV<9S+ER#OjXe zESd(;1DNh;z=vs?mO-gA?ec(!4lNtgr>-k@XS~+d=%RqG^$LeBP8_1fU-f=@|M#o! z4jq;xwy;mFpIm0@F{W0BeJ1e<+91iRNh0At1PGJ(A|8gni;FM>%csl@-!ruEVf+x`0 F`Un2HoE!iE literal 0 HcmV?d00001 diff --git a/ML/algorithms/neuralnetwork/utils.py b/ML/algorithms/neuralnetwork/utils.py new file mode 100644 index 0000000..bc63ca1 --- /dev/null +++ b/ML/algorithms/neuralnetwork/utils.py @@ -0,0 +1,50 @@ +""" +These were (shamelessly) taken from cs231n course github code. +I believe these were coded by Andrej Karpathy so credit goes to him +for coding these. +""" + +import numpy as np +import matplotlib.pyplot as plt + + +def create_dataset(N, K=2): + N = 100 # number of points per class + D = 2 + X = np.zeros((N * K, D)) # data matrix (each row = single example) + y = np.zeros(N * K) # class labels + + for j in range(K): + ix = range(N * j, N * (j + 1)) + r = np.linspace(0, 1, N) # radius + t = np.linspace(j * 4, (j + 1) * 4, N) + np.random.randn(N) * 0.2 + X[ix] = np.c_[r * np.sin(t), r * np.cos(t)] + y[ix] = j + # lets visualize the data: + plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral) + plt.show() + + return X, y + + +def plot_contour(X, y, model, parameters): + # plot the resulting classifier + h = 0.02 + x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1 + y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1 + + xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h)) + + points = np.c_[xx.ravel(), yy.ravel()] + + # forward prop with our trained parameters + _, Z = model.forward_prop(points, parameters) + + # classify into highest prob + Z = np.argmax(Z, axis=1) + Z = Z.reshape(xx.shape) + plt.contourf(xx, yy, Z, cmap=plt.cm.Spectral, alpha=0.8) + + # plt the points + plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral) + # fig.savefig('spiral_net.png') diff --git a/ML/algorithms/randomforest/example_data/data.txt b/ML/algorithms/randomforest/example_data/data.txt new file mode 100644 index 0000000..d04dcb3 --- /dev/null +++ b/ML/algorithms/randomforest/example_data/data.txt @@ -0,0 +1,90 @@ +1.1107, -2.1079, 1 +-0.5498, 0.0943, 1 +-0.0382, 1.8829,1 +0.0555, -0.6139,1 +0.5870, -1.2067,1 +0.5453, 0.2509,1 +-0.3927, -0.6220,1 +-1.1905, -1.8785,1 +-0.4240, 0.7772,1 +-0.7139, 1.5846,1 +-0.8883, 2.1408,1 +-0.6922, 0.0993,1 +1.4350, 1.2334,1 +-0.7576, 0.7386,1 +-1.1144, -1.7059,1 +0.6612, -1.7296,1 +-2.1381, -0.0600,1 +1.3857, 1.2178,1 +-1.4951, 0.0373,1 +0.8029, 0.9739,1 +1.5607, 1.5862,1 +0.8563, -1.4245,1 +0.0397, -1.3799,1 +1.2331, 1.7421,1 +-2.0015, 0.8355,1 +-0.3428, -0.4780,1 +-0.8891, 1.2634,1 +0.3832, -0.1189,1 +0.4172, 1.0132,1 +-0.8695, -0.7947,1 +2.9737, 3.6438,2 +3.7680, 1.8649,2 +0.1166, 0.9435,2 +0.6896, 3.9160,2 +1.2234, 2.9899,2 +2.3009, 0.4150,2 +3.7693, 3.8027,2 +1.9450, 3.4208,2 +0.9290, 3.3611,2 +5.0027, 2.7870,2 +1.0101, 1.8737,2 +2.0751, 2.2628,2 +1.9113, 3.6777,2 +2.3127, 3.9130,2 +1.9392, 2.3976,2 +3.1218, 2.5495,2 +1.7032, 1.1509,2 +0.4212, 3.5322,2 +2.7686, 0.9402,2 +2.1696, 2.9285,2 +0.3380, 2.0947,2 +3.6886, 0.4054,2 +2.6315, 3.1962,2 +-0.5332, 3.1421,2 +0.3380, 3.0801,2 +1.4030, 1.1841,2 +2.8739, 2.7777,2 +1.1254, 3.2404,2 +0.0988, 1.9522,2 +0.3688, 2.8904,2 +1.4758, -1.6387,3 +1.9289, -1.8191,3 +2.5741, -1.3213,3 +2.1917, -1.2852,3 +0.8358, -2.3349,3 +2.6863, -1.8834,3 +3.1102, -0.4854,3 +3.7073, -0.6466,3 +3.6394, -0.4097,3 +0.5365, -3.6555,3 +2.9295, -0.3819,3 +0.8168, -3.1133,3 +1.3432, -1.7717,3 +1.1039, -2.2261,3 +1.3754, -2.2236,3 +0.6757, -2.5379,3 +-0.2029, -3.8420,3 +2.4210, -1.9788,3 +1.0335, -2.6042,3 +0.9638, -2.9449,3 +-0.8198, -5.4449,3 +1.9552, -1.5530,3 +0.3505, -3.1887,3 +2.4943, -1.8116,3 +1.9761, -1.0664,3 +0.5994, -3.0513,3 +2.2076, -1.6728,3 +1.9941, -1.8826,3 +1.7487, -2.9644,3 +1.4160, -2.4234,3 \ No newline at end of file diff --git a/ML/algorithms/randomforest/example_data/mock_data.csv b/ML/algorithms/randomforest/example_data/mock_data.csv new file mode 100644 index 0000000..4ea16a8 --- /dev/null +++ b/ML/algorithms/randomforest/example_data/mock_data.csv @@ -0,0 +1,100 @@ +701,478,227,863,963,2 +96,147,210,493,586,2 +798,143,431,541,94,1 +233,146,667,886,771,1 +668,815,628,429,387,3 +718,456,883,281,840,1 +182,837,144,664,460,2 +882,533,203,776,56,3 +648,715,288,619,293,1 +178,951,965,164,1,3 +270,432,457,978,794,1 +335,219,596,763,231,1 +47,477,78,423,616,3 +324,969,514,55,722,2 +824,571,159,516,594,2 +837,667,957,150,508,3 +833,945,311,12,859,1 +536,280,21,292,518,1 +943,55,709,269,425,1 +593,178,861,130,26,3 +54,165,3,638,816,2 +637,861,423,855,98,1 +222,502,427,944,732,1 +8,465,403,376,761,2 +184,602,673,825,741,1 +639,677,204,385,236,2 +176,843,479,952,898,2 +125,626,553,74,1000,3 +302,495,294,362,169,2 +131,912,803,232,852,1 +117,609,290,133,357,2 +207,812,788,182,494,1 +954,76,257,620,844,1 +287,266,195,30,344,3 +440,590,324,868,969,3 +831,290,228,586,971,1 +567,734,460,429,689,1 +864,939,191,620,431,1 +905,337,200,400,77,2 +304,997,141,208,615,3 +19,280,187,44,639,1 +280,279,275,305,123,1 +866,519,331,241,972,1 +27,77,860,458,643,3 +486,713,917,324,855,2 +466,16,897,222,731,1 +712,230,215,805,341,1 +300,100,292,978,115,3 +938,800,911,345,49,3 +98,593,43,583,684,1 +348,479,406,605,595,2 +892,877,592,339,615,3 +203,53,995,704,927,2 +991,968,886,43,883,1 +733,939,71,388,56,1 +249,376,830,628,812,2 +4,877,743,242,266,1 +95,537,106,490,518,2 +870,704,430,270,327,2 +402,97,283,569,638,3 +537,979,966,729,8,3 +399,51,285,973,509,1 +662,951,947,923,112,3 +71,573,9,305,351,2 +240,837,836,277,177,1 +513,318,709,435,367,2 +553,253,980,868,26,1 +848,543,171,420,73,1 +449,538,720,347,500,2 +42,319,830,447,727,2 +165,968,151,672,452,3 +1,781,142,137,157,2 +907,364,776,490,502,2 +146,512,87,344,233,3 +478,62,55,815,283,3 +751,789,112,277,483,1 +189,597,866,73,397,3 +607,210,327,538,68,2 +337,401,557,667,642,1 +249,894,84,81,643,1 +896,858,568,345,157,1 +362,886,558,531,735,1 +865,418,866,824,370,3 +14,517,514,257,129,2 +845,833,998,211,684,2 +289,302,416,364,920,2 +383,173,991,815,368,3 +652,325,903,471,224,3 +757,580,974,667,620,1 +946,247,684,191,332,2 +63,330,199,280,608,2 +752,298,95,143,134,2 +987,105,747,931,413,3 +510,23,385,711,701,1 +326,195,651,727,85,3 +214,978,396,428,14,1 +646,133,388,896,971,1 +849,817,294,491,397,2 +854,973,274,315,897,3 +666,530,683,234,439,1 diff --git a/ML/algorithms/randomforest/example_data/targets.txt b/ML/algorithms/randomforest/example_data/targets.txt new file mode 100644 index 0000000..236db3c --- /dev/null +++ b/ML/algorithms/randomforest/example_data/targets.txt @@ -0,0 +1,90 @@ +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +2 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 +3 \ No newline at end of file diff --git a/ML/algorithms/randomforest/random_forest.py b/ML/algorithms/randomforest/random_forest.py new file mode 100644 index 0000000..2fa61c8 --- /dev/null +++ b/ML/algorithms/randomforest/random_forest.py @@ -0,0 +1,170 @@ +""" +Author: Philip Andreadis +e-mail: philip_andreadis@hotmail.com + + +Implementation of Random Forest model from scratch. +The DecisionTree class from this project is used for generating the trees of the random forest. +This class remains with no changes as the dataset is split into a number of folds with a random subset of features on which each tree is trained on. +As a result each tree is trained on a different group of the dataset in order to avoid correlation between them. +The predicted class value of each instance is chosen by voting from each single tree's outcome. + +Parameters of the model: +MAX_DEPTH (int): Maximum depth of the decision tree +MIN_NODE (int): Minimum number of instances a node can have. If this threshold is exceeded the node is terminated +FOLD_SIZE (int): Value between 1-10 representing the percentage of the original dataset size each fold should be. +N_TREES (int):The toral number of trees that will be trained. + +Input dataset to train() function must be a numpy array containing both feature and label values. + +""" + + + +from random import randrange +from random import randint +import numpy as np +from decision_tree import DecisionTree + +# fold size (% of dataset size) e.g. 3 means 30% +FOLD_SIZE = 10 +# number of trees +N_TREES = 20 +# max tree depth +MAX_DEPTH = 30 +# min size of tree node +MIN_NODE = 1 + + +class RandomForest: + def __init__(self,n_trees,fold_size): + self.n_trees = n_trees + self.fold_size = fold_size + self.trees = list() + + + + """ + This function splits the given dataset into n-folds with replacement. The number of folds is equal to the number of the trees that will be trained. + Each tree will have one fold as input. The size of the folds is a percentage (p) of the size of the original dataset. + + Parameters: + dataset: np array of the given dataset + n_folds (int): number of folds in which the dataset should be split. Must be equal to the number of trees the user wants to train + p (int): suggests the percentage of the dataset's size the size of a single fold should be. + + Returns list of np arrays: list with the k-folds + + """ + def cross_validation_split(self,dataset, n_folds, p): + dataset_split = list() + fold_size = int(len(dataset)*p/10) + for i in range(n_folds): + fold = list() + while len(fold) < fold_size: + index = randrange(len(dataset)) + fold.append(dataset[index]) + set = np.array(fold) + dataset_split.append(set) + return dataset_split + + + """ + This function randomizes the selection of the features each tree will be trained on. + + Parameters: + splits list of np arrays: list of folds + + + Returns list of np arrays: list with the k-folds with some features randomly removed + + """ + def randomize_features(self,splits): + dataset_split = list() + l = len(splits[0][0]) + n_features = int((l-1)*5/10) + for split in splits: + for i in range(n_features): + rng = list(range(len(split[0]) - 1)) + selected = rng.pop(randint(0,len(rng)-1)) + split = np.delete(split, selected, 1) + set = np.array(split) + dataset_split.append(set) + return dataset_split + + + """ + Prints out all the decision trees of the random forest. + + BUG: The feature number is not representative of its initial enumeration in the original dataset due to the randomization. + This means that we do not know on which features each tree is trained on. + """ + def print_trees(self): + i = 1 + for t in self.trees: + print("Tree#",i) + temp = t.final_tree + t.print_dt(temp) + print("\n") + i = i+1 + + """ + Iteratively train each decision tree. + Parameters: + X (np.array): Training data + + """ + def train(self,X): + train_x = self.cross_validation_split(X,self.n_trees,self.fold_size) + train_x = self.randomize_features(train_x) + for fold in train_x: + dt = DecisionTree(MAX_DEPTH, MIN_NODE) + dt.train(fold) + self.trees.append(dt) + + + """ + This function outputs the class value for each instance of the given dataset as predicted by the random forest algorithm. + Parameters: + X (np.array): Dataset with labels + + Returns y (np.array): array with the predicted class values of the dataset + """ + def predict(self,X): + predicts = list() + final_predicts = list() + for tree in self.trees: + predicts.append(tree.predict(X)) + # iterate through each tree's class prediction and find the most frequent for each instance + for i in range(len(predicts[0])): + values = list() + for j in range(len(predicts)): + values.append(predicts[j][i]) + final_predicts.append(max(set(values), key=values.count)) + return final_predicts,predicts + + + +if __name__ == "__main__": + + + # Training data + train_data = np.loadtxt("example_data/data.txt", delimiter=",") + train_y = np.loadtxt("example_data/targets.txt") + + mock_train = np.loadtxt("example_data/mock_data.csv", delimiter=",") + mock_y = mock_train[ : , -1] + + # Build and train model + rf = RandomForest(N_TREES,FOLD_SIZE) + rf.train(mock_train) + + # Evaluate model on training data + y_pred,y_pred_ind = rf.predict(mock_train) + print(f"Accuracy of random forest: {sum(y_pred == mock_y) / mock_y.shape[0]}") + print("\nAccuracy for each individual tree:") + c = 1 + for i in y_pred_ind: + print("\nTree",c) + print(f"Accuracy: {sum(i == mock_y) / mock_y.shape[0]}") + c = c+1 diff --git a/ML/algorithms/svm/__pycache__/knn.cpython-37.pyc b/ML/algorithms/svm/__pycache__/knn.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6158ff3695274a58989742f59da016c9268b5e76 GIT binary patch literal 3292 zcma)8&2!tv6~`_B5~L+s{)i(vt+VaPtR=PespD}op4x4lNy5oYoW{c{#(>P70Ue@p)Z9NUxsfgW<|?*SwzOYNkX*|#6qkGJpl-tX;i*4LXB zzQ6wCZ?FD+!?ONGo#p4C@dU+05Ymz?vbyZ|mgLfYV@dlP-sQ@c&H>j$#YWD^m9DIv zGG?JylXdCI#wqXC6+5fR<~i$nipy(q?UZ#Js&Up-b>*FN%x;XXsXF#w$Lux9zOdS@ zw>Z)2^hqv18;vI@=64VZnnH&-cSPOnsm1Z%A0I#^zg>HQim#>(f#6QT<<3&UmFV>p;KyOFz{? z80Ym_*=XC^#nPO;%-O8axD<67bc?wjnk!xIT+yYNq#0&a+K}d?(NkLb7$O5)aF*Md zbp~UevlBbMhcS+^`xs-3vF7SOT0FDQ$tCPgvHM#(qHX6N^po*qnkrw0CJo}g@()!% zO>{U{GT*xLGl`WSCCMajO|+6>KlP)ary|pK%A40<5;#HLh^OOXqRAV}oy}#7)E9fK z(Zxtu%wuaD#cuNX<`vs4rdOUtW~F6?VZK8nV!kd9bW1pLix9Rz_%>gFRQKkn~2+6);W70C37-2 zs}1;L>-FQWtk=6=S(yVvJM&3XEWVFpH5i2bP{pZ;gYZy^a6F0B82um(lXzQ9jS@*5 z&8j7V5rH@gW+EAgX)NLMfJcV$zBn2NsW|9#L}-LeFjB24knOxB*KK>bYlgu@=>~c^ zk0-f1S2{7dtAlu7A-G=aRFiMzwwaFG^#VYBlLkCOZ-ry&leg&)3v)KQjN{!aZjv4) zCHk9KWLgkbt;yC{i?>jo^ZA1-;QsGDD!hpTh-C}B57GF)@cy*I`^kyBLU>d!FntH* z5>@F)_mnS@U1AP&m&n%Uf2mCV*|a|tJ(Z?Pi*y*o0$1Om2r;5J1=vX{faD-BWj&3e znOH>_n%V&W-Djy5t+uhZEaeaJ#q+D#HJhk3H(!m9Ihf1FeU|479mV9AE_v!8sT#ZycNJ7OBFm4;ehrX24Dg>%)%oO@!O&&?$d}m z4u~O4yHXO-F9wOO=3;#xdN1Ne+z)no?N<-QuSEd4BOV6gzD&|KHhds@uO3$WsN>0k zND_GK5F|o77epdVQXHY+mPfUs|*O=yq@A2 zBD>cYp;8UpBu-jPTKv20&DU|(uTTsnX{&LY-C-N{eEWwzc@@x=FH>%!QuuO=#)_*_ zhGa~+$Uc6NA~O})=Q(_qojLGf2QN6Q%sQAuUhEJ KTfE7^==?u##4w5g literal 0 HcmV?d00001 diff --git a/ML/algorithms/svm/__pycache__/utils.cpython-37.pyc b/ML/algorithms/svm/__pycache__/utils.cpython-37.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d78a4a474455a9fd7d57f8daa392060ac5296538 GIT binary patch literal 1365 zcmZuxPj4GV6n}4KcfEETm$s%!;Zist90^qQ0zwrFdFMf>x z{$%5yB}sXY$Q%$;ps<7?1}Q2zj1W{yNflk-FjlcjE?}4_d<27ZL-}yD5yW$D!mCZx zB6>(<1OixCp#vxS;P6DOv60U`WJQbbt#INg9>V9}HZkeoV#+11a1Z+MR5S@yNF@~Y zS<9xy7DXjxg`A*K#KJUM#gv08>cbv1DR~md`7M{Ok@8tjxB7{=4Nkh`K6P;s%dZYT z1>2r>oTSUccS6P6oJ)&NPZg0$C}(HdRjnUlr2N(H8j$=Hi64s?ZqoqY1_{(xy68mk zppG^)2pAKEwV@Y)@lQYU`t5<{*yeR&1L-mMXnd4cSv}}^F{^$2q|kHYW1Y>$g-^@L z%+y(4_=Fs4UWI^~d66G`X(lr-bIO)=X?@G&nYD$cSmo14b&*@0l|C}3^REYOk4GL4 zJ$~r%GmlG;Q!ge9kJ_XC1@s*{&tGpmd}s8DDYO}7Wv0~VurQD9ydHi0(ee326>~E( z=hf)UPD=A;z4X0Y7nv=NRc13&SiYs%CkA)}d!mQ8u!jfu8g}JfOhsSlS1ERdoGuwD zQ9ur%j^@}%$AILw5Ip@AtU<|rLdSo+$lg5=&_oTr|7A@6Z^hR8ydohyiIpUx7bGM| z!V&9)8`jriB$~8oTQQAYx=PmI+RV9k({X~3)gct`xE;pTw9UHhOm|%B+K#pEbXO5F z0#-WH-qq>CeXgu$b6iY^=YPK z(g#u}Bs717Avn0^WyQd#vW4c))2CHoPRDwpe3AuN>1*sJh@BUuZ`Ha`lbrCQDJ`oD z9|xgtgxY*Qv-2~3qWiqTi_C5k8+7$ctiMc*fOuYcJoWM7n0IE8EquJ(S|rF43!>%H zC-r%D<@wPPFbUEgAA7nI1D}hb%Z +* 2020-04-26 Initial coding + +""" + +import numpy as np +import cvxopt +from utils import create_dataset, plot_contour + + +def linear(x, z): + return np.dot(x, z.T) + + +def polynomial(x, z, p=5): + return (1 + np.dot(x, z.T)) ** p + + +def gaussian(x, z, sigma=0.1): + return np.exp(-np.linalg.norm(x - z, axis=1) ** 2 / (2 * (sigma ** 2))) + + +class SVM: + def __init__(self, kernel=gaussian, C=1): + self.kernel = kernel + self.C = C + + def fit(self, X, y): + self.y = y + self.X = X + m, n = X.shape + + # Calculate Kernel + self.K = np.zeros((m, m)) + for i in range(m): + self.K[i, :] = self.kernel(X[i, np.newaxis], self.X) + + # Solve with cvxopt final QP needs to be reformulated + # to match the input form for cvxopt.solvers.qp + P = cvxopt.matrix(np.outer(y, y) * self.K) + q = cvxopt.matrix(-np.ones((m, 1))) + G = cvxopt.matrix(np.vstack((np.eye(m) * -1, np.eye(m)))) + h = cvxopt.matrix(np.hstack((np.zeros(m), np.ones(m) * self.C))) + A = cvxopt.matrix(y, (1, m), "d") + b = cvxopt.matrix(np.zeros(1)) + cvxopt.solvers.options["show_progress"] = False + sol = cvxopt.solvers.qp(P, q, G, h, A, b) + self.alphas = np.array(sol["x"]) + + def predict(self, X): + y_predict = np.zeros((X.shape[0])) + sv = self.get_parameters(self.alphas) + + for i in range(X.shape[0]): + y_predict[i] = np.sum( + self.alphas[sv] + * self.y[sv, np.newaxis] + * self.kernel(X[i], self.X[sv])[:, np.newaxis] + ) + + return np.sign(y_predict + self.b) + + def get_parameters(self, alphas): + threshold = 1e-5 + + sv = ((alphas > threshold) * (alphas < self.C)).flatten() + self.w = np.dot(X[sv].T, alphas[sv] * self.y[sv, np.newaxis]) + self.b = np.mean( + self.y[sv, np.newaxis] + - self.alphas[sv] * self.y[sv, np.newaxis] * self.K[sv, sv][:, np.newaxis] + ) + return sv + + +if __name__ == "__main__": + np.random.seed(1) + X, y = create_dataset(N=50) + + svm = SVM(kernel=gaussian) + svm.fit(X, y) + y_pred = svm.predict(X) + plot_contour(X, y, svm) + + print(f"Accuracy: {sum(y==y_pred)/y.shape[0]}") diff --git a/ML/algorithms/svm/utils.py b/ML/algorithms/svm/utils.py new file mode 100644 index 0000000..f6e9866 --- /dev/null +++ b/ML/algorithms/svm/utils.py @@ -0,0 +1,47 @@ +""" +These were (shamelessly) taken from cs231n course github code. +I believe these were coded by Andrej Karpathy so credit goes to him +for coding these. +""" + +import numpy as np +import matplotlib.pyplot as plt + + +def create_dataset(N, D=2, K=2): + X = np.zeros((N * K, D)) # data matrix (each row = single example) + y = np.zeros(N * K) # class labels + + for j in range(K): + ix = range(N * j, N * (j + 1)) + r = np.linspace(0.0, 1, N) # radius + t = np.linspace(j * 4, (j + 1) * 4, N) + np.random.randn(N) * 0.2 # theta + X[ix] = np.c_[r * np.sin(t), r * np.cos(t)] + y[ix] = j + + # lets visualize the data: + plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral) + plt.show() + + y[y == 0] -= 1 + + return X, y + + +def plot_contour(X, y, svm): + # plot the resulting classifier + h = 0.01 + x_min, x_max = X[:, 0].min() - 1, X[:, 0].max() + 1 + y_min, y_max = X[:, 1].min() - 1, X[:, 1].max() + 1 + + xx, yy = np.meshgrid(np.arange(x_min, x_max, h), np.arange(y_min, y_max, h)) + + points = np.c_[xx.ravel(), yy.ravel()] + + Z = svm.predict(points) + Z = Z.reshape(xx.shape) + plt.contourf(xx, yy, Z, cmap=plt.cm.Spectral, alpha=0.8) + + # plt the points + plt.scatter(X[:, 0], X[:, 1], c=y, s=40, cmap=plt.cm.Spectral) + plt.show() diff --git a/ML/others/logo/pytorch_logo.png b/ML/others/logo/pytorch_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..0288a564e22755147c1daf1cfec1db59fcc998c9 GIT binary patch literal 27763 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

      K`4K!NY`0N}$901Gw%AejgN=U}ncEvf*( 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≻)gEtqPRKF&N6A8uDhkZ6ttMDXq{oLcHZ`Zp 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 KE>^U;@xK6=e0Wg+ literal 0 HcmV?d00001 diff --git a/ML/others/logo/torch_and_tf.svg b/ML/others/logo/torch_and_tf.svg new file mode 100644 index 0000000..476d5e0 --- /dev/null +++ b/ML/others/logo/torch_and_tf.svg @@ -0,0 +1,942 @@ + + + + diff --git a/ML/others/logo/youtube_logo.png b/ML/others/logo/youtube_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..d8580572fdecbbae8c41460d7317e4f9c485de52 GIT binary patch literal 403 zcmV;E0c`$>P)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0VqjCK~y+TwUjZc z0x=MVzl~reXd$AAg0iikUcdu*0#9P=0W9q7t!(V9^#}@fT3Lu-r=5l7Wq0SvgSTu} zF&~*^X0q%LlVLmrJsxY;Yd9X^a)Ij=?svIONj3|G0+dQnuS2hgHynl<;ii?+JfDH< z1S8@pJ)Jrg3DA>?R;*SMI>cxw_IrsOVl)(|lSCF43mA&Rx@4KXo#$Z-A

      + +-------------------------------------------------------------------------------- + + +[![Build Status](https://travis-ci.com/aladdinpersson/Machine-Learning-Collection.svg?branch=master)](https://travis-ci.com/aladdinpersson/Machine-Learning-Collection) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) + +[logo]: https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/others/logo/youtube_logo.png + +# Machine Learning Collection +In this repository you will find tutorials and projects related to Machine Learning. I try to make the code as clear as possible, and the goal is be to used as a learning resource and a way to lookup problems to solve specific problems. For most I have also done video explanations on YouTube if you want a walkthrough for the code. If you got any questions or suggestions for future videos I prefer if you ask it on [YouTube](https://www.youtube.com/c/AladdinPersson). This repository is contribution friendly, so if you feel you want to add something then I'd happily merge a PR :smiley: + +## Table Of Contents +- [Machine Learning Algorithms](#machine-learning) +- [PyTorch Tutorials](#pytorch-tutorials) + - [Basics](#basics) + - [More Advanced](#more-advanced) + - [Object Detection](#Object-Detection) + - [Generative Adversarial Networks](#Generative-Adversarial-Networks) + - [Architectures](#architectures) +- [TensorFlow Tutorials](#tensorflow-tutorials) + - [Beginner Tutorials](#beginner-tutorials) + - [Architectures](#CNN-Architectures) + +## Machine Learning +* [![Youtube Link][logo]](https://youtu.be/pCCUnoes1Po)   [Linear Regression](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/linearregression/linear_regression_gradient_descent.py) **- With Gradient Descent** :white_check_mark: +* [![Youtube Link][logo]](https://youtu.be/DQ6xfe75CDk)   [Linear Regression](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/linearregression/linear_regression_normal_equation.py) **- With Normal Equation** :white_check_mark: +* [![Youtube Link][logo]](https://youtu.be/x1ez9vi611I)   [Logistic Regression](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/logisticregression/logistic_regression.py) +* [![Youtube Link][logo]](https://youtu.be/3trW5Lig7BU)   [Naive Bayes](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/naivebayes/naivebayes.py) **- Gaussian Naive Bayes** +* [![Youtube Link][logo]](https://youtu.be/QzAaRuDskyc)   [K-nearest neighbors](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/knn/knn.py) +* [![Youtube Link][logo]](https://youtu.be/W4fSRHeafMo)   [K-means clustering](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/kmeans/kmeansclustering.py) +* [![Youtube Link][logo]](https://youtu.be/gBTtR0bs-1k)   [Support Vector Machine](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/svm/svm.py) **- Using CVXOPT** +* [![Youtube Link][logo]](https://youtu.be/NJvojeoTnNM)   [Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/neuralnetwork/NN.py) +* [Decision Tree](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/algorithms/decisiontree/decision_tree.py) + +## PyTorch Tutorials +If you have any specific video suggestion please make a comment on YouTube :) + +### Basics +* [![Youtube Link][logo]](https://youtu.be/x9JiIFvlUwk)   [Tensor Basics](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_tensorbasics.py) +* [![Youtube Link][logo]](https://youtu.be/Jy4wM2X21u0)   [Feedforward Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/804c45e83b27c59defb12f0ea5117de30fe25289/ML/Pytorch/Basics/pytorch_simple_fullynet.py#L26-L35) +* [![Youtube Link][logo]](https://youtu.be/wnK3uWv_WkU)   [Convolutional Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/157a5f458f272a513eb6b4a19d6613aec32dc21c/ML/Pytorch/Basics/pytorch_simple_CNN.py#L25-L41) +* [![Youtube Link][logo]](https://youtu.be/Gl2WXLIMvKA)   [Recurrent Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_rnn_gru_lstm.py) +* [![Youtube Link][logo]](https://youtu.be/jGst43P-TJA)   [Bidirectional Recurrent Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/pytorch_bidirectional_lstm.py) +* [![Youtube Link][logo]](https://youtu.be/g6kQl_EFn84)   [Loading and saving model](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/804c45e83b27c59defb12f0ea5117de30fe25289/ML/Pytorch/Basics/pytorch_loadsave.py#L26-L34) +* [![Youtube Link][logo]](https://youtu.be/ZoZHd0Zm3RY)   [Custom Dataset (Images)](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/aba36b89b438ca8f608a186f4d61d1b60c7f24e0/ML/Pytorch/Basics/custom_dataset/custom_dataset.py#L12-L29) +* [![Youtube Link][logo]](https://youtu.be/9sHcLvVXsns)   [Custom Dataset (Text)](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/custom_dataset_txt/loader_customtext.py) +* [![Youtube Link][logo]](https://youtu.be/qaDe0qQZ5AQ)   [Transfer Learning and finetuning](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/804c45e83b27c59defb12f0ea5117de30fe25289/ML/Pytorch/Basics/pytorch_pretrain_finetune.py#L33-L54) +* [![Youtube Link][logo]](https://youtu.be/Zvd276j9sZ8)   [Data augmentation using Torchvision](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/804c45e83b27c59defb12f0ea5117de30fe25289/ML/Pytorch/Basics/pytorch_transforms.py#L56-L72) +* [![Youtube Link][logo]](https://youtu.be/rAdLwKJBvPM)   [Data augmentation using Albumentations](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/Basics/albumentations_tutorial) +* [![Youtube Link][logo]](https://youtu.be/RLqsxWaQdHE)   [TensorBoard Example](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/79f2e1928906f3cccbae6c024f3f79fd05262cd1/ML/Pytorch/Basics/pytorch_tensorboard_.py#L72-L120) +* [![Youtube Link][logo]](https://youtu.be/y6IEcEBRZks)   [Calculate Mean and STD of Images](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/55637e6afbb8cc8be6a63e04bbc899704f862911/ML/Pytorch/Basics/pytorch_std_mean.py#L41-L53) +* [![Youtube Link][logo]](https://youtu.be/RKHopFfbPao)   [Simple Progress bar]() +* [![Youtube Link][logo]](https://youtu.be/1SZocGaCAr8)   [Deterministic Behavior](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/Basics/set_deterministic_behavior/pytorch_set_seeds.py) +* [![Youtube Link][logo]](https://youtu.be/P31hB37g4Ak)   [Learning Rate Scheduler](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/804c45e83b27c59defb12f0ea5117de30fe25289/ML/Pytorch/Basics/pytorch_lr_ratescheduler.py#L45-L78) +* [![Youtube Link][logo]](https://youtu.be/xWQ-p_o0Uik)   [Initialization of weights](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/804c45e83b27c59defb12f0ea5117de30fe25289/ML/Pytorch/Basics/pytorch_init_weights.py#L35-L49) + + +### More Advanced +* [![Youtube Link][logo]](https://youtu.be/WujVlF_6h5A)   [Text Generating LSTM](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Projects/text_generation_babynames/generating_names.py) +* [![Youtube Link][logo]](https://youtu.be/y2BaTt1fxJU)   [Image Captioning](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/Pytorch/more_advanced/image_captioning) +* [![Youtube Link][logo]](https://youtu.be/imX4kSKDY7s)   [Neural Style Transfer](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/neuralstyle/nst.py) +* [![Youtube Link][logo]](https://www.youtube.com/playlist?list=PLhhyoLH6IjfzxdlsLrclcCTsS8kIcfWJb)   [Torchtext [1]](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial1.py) [Torchtext [2]](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial2.py) [Torchtext [3]](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/torchtext/torchtext_tutorial3.py) +* [![Youtube Link][logo]](https://youtu.be/EoGUlvhRYpk)   [Seq2Seq](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/Seq2Seq/seq2seq.py) **- Sequence to Sequence (LSTM)** +* [![Youtube Link][logo]](https://youtu.be/sQUqQddQtB4)   [Seq2Seq + Attention](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/Seq2Seq_attention/seq2seq_attention.py) **- Sequence to Sequence with Attention (LSTM)** +* [![Youtube Link][logo]](https://youtu.be/M6adRGJe5cQ)   [Seq2Seq Transformers](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/seq2seq_transformer/seq2seq_transformer.py) **- Sequence to Sequence with Transformers** +* [![Youtube Link][logo]](https://youtu.be/U0s0f995w14)   [Transformers from scratch](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/more_advanced/transformer_from_scratch/transformer_from_scratch.py) **- Attention Is All You Need** + +### Object Detection +* [![Youtube Link][logo]](https://youtu.be/XXYG5ZWtjj0)   [Intersection over Union](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/metrics/iou.py) +* [![Youtube Link][logo]](https://youtu.be/YDkjWEN8jNA)   [Non-Max Suppression](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/metrics/nms.py) +* [![Youtube Link][logo]](https://youtu.be/FppOzcDvaDI)   [Mean Average Precision](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/metrics/mean_avg_precision.py) +* [![Youtube Link][logo]](https://youtu.be/n9_XyCGr-MI)   [YOLO from scratch](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/YOLO) + +### Generative Adversarial Networks +* [![Youtube Link][logo]](https://youtu.be/OljTVUVzPpM)   [Simple FC GAN](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/GANs/1.%20SimpleGAN/fc_gan.py) +* [![Youtube Link][logo]](https://youtu.be/IZtv9s_Wx9I)   [DCGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/2.%20DCGAN) +* [![Youtube Link][logo]](https://youtu.be/pG0QZ7OddX4)   [WGAN](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/3.%20WGAN) +* [![Youtube Link][logo]](https://youtu.be/pG0QZ7OddX4)   [WGAN-GP](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/4.%20WGAN-GP) +* [ProGAN (video coming soon)](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/Pytorch/GANs/5.%20ProGAN) + +### Architectures +* [![Youtube Link][logo]](https://youtu.be/fcOW-Zyb5Bo)   [LeNet5](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/79f2e1928906f3cccbae6c024f3f79fd05262cd1/ML/Pytorch/CNN_architectures/lenet5_pytorch.py#L15-L35) **- CNN architecture** +* [![Youtube Link][logo]](https://youtu.be/ACmuBbuXn20)   [VGG](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/79f2e1928906f3cccbae6c024f3f79fd05262cd1/ML/Pytorch/CNN_architectures/pytorch_vgg_implementation.py#L16-L62) **- CNN architecture** +* [![Youtube Link][logo]](https://youtu.be/uQc4Fs7yx5I)   [Inception v1](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/CNN_architectures/pytorch_inceptionet.py) **- CNN architecture** +* [![Youtube Link][logo]](https://youtu.be/DkNIBBBvcPs)   [ResNet](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/Pytorch/CNN_architectures/pytorch_resnet.py) **- CNN architecture** + +## TensorFlow Tutorials +If you have any specific video suggestion please make a comment on YouTube :) + +### Beginner Tutorials +* [![Youtube Link][logo]](https://youtu.be/5Ym-dOS9ssA)   Tutorial 1 - Installation, Video Only +* [![Youtube Link][logo]](https://youtu.be/HPjBY1H-U4U)   [Tutorial 2 - Tensor Basics](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial2-tensorbasics.py) +* [![Youtube Link][logo]](https://youtu.be/pAhPiF3yiXI)   [Tutorial 3 - Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial3-neuralnetwork.py) +* [![Youtube Link][logo]](https://youtu.be/WAciKiDP2bo)   [Tutorial 4 - Convolutional Neural Network](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial4-convnet.py) +* [![Youtube Link][logo]](https://youtu.be/kJSUq1PLmWg)   [Tutorial 5 - Regularization](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial5-regularization.py) +* [![Youtube Link][logo]](https://youtu.be/WAciKiDP2bo)   [Tutorial 6 - RNN, GRU, LSTM](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial6-rnn-gru-lstm.py) +* [![Youtube Link][logo]](https://youtu.be/kJSUq1PLmWg)   [Tutorial 7 - Functional API](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial7-indepth-functional.py) +* [![Youtube Link][logo]](https://youtu.be/WcZ_1IAH_nM)   [Tutorial 8 - Keras Subclassing](https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial8_keras_subclassing.py) +* [![Youtube Link][logo]](https://youtu.be/cKMJDkWSDnY)   [Tutorial 9 - Custom Layers](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial9-custom-layers.py) +* [![Youtube Link][logo]](https://youtu.be/idus3KO6Wic)   [Tutorial 10 - Saving and Loading Models](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial10-save-model.py) +* [![Youtube Link][logo]](https://youtu.be/WJZoywOG1cs)   [Tutorial 11 - Transfer Learning](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial11-transfer-learning.py) +* [![Youtube Link][logo]](https://youtu.be/YrMy-BAqk8k)   [Tutorial 12 - TensorFlow Datasets](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial12-tensorflowdatasets.py) +* [![Youtube Link][logo]](https://youtu.be/8wwfVV7ixyY)   [Tutorial 13 - Data Augmentation](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial13-data-augmentation.py) +* [![Youtube Link][logo]](https://youtu.be/WUzLJZCKNu4)   [Tutorial 14 - Callbacks](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial14-callbacks.py) +* [![Youtube Link][logo]](https://youtu.be/S6tLSI8bjGs)   [Tutorial 15 - Custom model.fit](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial15-customizing-modelfit.py) +* [![Youtube Link][logo]](https://youtu.be/_u7AVsxANes)   [Tutorial 16 - Custom Loops](https://github.com/AladdinPerzon/Machine-Learning-Collection/blob/master/ML/TensorFlow/Basics/tutorial16-customloops.py) +* [![Youtube Link][logo]](https://youtu.be/k7KfYXXrOj0)   [Tutorial 17 - TensorBoard](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/TensorFlow/Basics/tutorial17-tensorboard) +* [![Youtube Link][logo]](https://youtu.be/q7ZuZ8ZOErE)   [Tutorial 18 - Custom Dataset Images](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/TensorFlow/Basics/tutorial18-customdata-images) +* [![Youtube Link][logo]](https://youtu.be/NoKvCREx36Q)   [Tutorial 19 - Custom Dataset Text](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/TensorFlow/Basics/tutorial19-customdata-text) +* [![Youtube Link][logo]](https://youtu.be/ea5Z1smiR3U)   [Tutorial 20 - Classifying Skin Cancer](https://github.com/AladdinPerzon/Machine-Learning-Collection/tree/master/ML/TensorFlow/Basics/tutorial20-classify-cancer-beginner-project-example) **- Beginner Project Example** + +### CNN Architectures +* [LeNet](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/LeNet5) +* [AlexNet](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/AlexNet) +* [VGG](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/VGGNet) +* [GoogLeNet](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/GoogLeNet) +* [ResNet](https://github.com/aladdinpersson/Machine-Learning-Collection/tree/master/ML/TensorFlow/CNN_architectures/ResNet) + \ No newline at end of file
    ^NfND59}& zgN_&7zxTLAi4E4IaxFC+qcT~un;|p&A|Q(!6KV;h86r)&w8jkH#GRrdrGTX|ZaD+M zB(xY=wQ7zgPyS)UexvqV$@cV%p>tc4m?MklGHHCh8=;a zFl%9{Yq(;$Al`yT(1IRwelN91X%-8+NhI=Vnr6tCIYxNQ&ny5>Av9xvY)qHr-3EF* zXZV(jDyk8R)sF#U^b!|`cjNIA0y=d=?4Uag3HLFPuM=1qa}`jbu;3YXW*)S+d5YvAXijt9*E1>Jih?A@^sT1AzMn-%%x@$Wg*JM6 z_y@b$6cl0^g`^d!NCB(|^kts4J z`-lekzEF@@4RE zK0WiB@gs{lrZJ@|9vYrVOpb?B&zt~@%n>(<911+ov=obD@lHzIJKHR*hw^n*zIqo1 zF!MH9c5s;-bS_o+tDimcXUm2E?&0_R&)~8>3(RtYq?1(dP8hrQV;D7n;-}CtMU+`@y_ynmdOA%BCZj+&ez&Qoc znnGtG{R)y|H67}@AUMm?QiGSpi8yK=6EmAsl?W!yM-r5_U^%q5Fy>4rr)Xs6oWWU0 zw$}S9@r-*%O&o`c5cE)a~JJgSbU1I}}C=^VUR~sw{ z%d%qCG3l)CiMEf>Ak>AMD!zA$hah$09LFA)J#ZU>cHu#l4>g2)OKCh_9(W!b-@Q0j zgi8rmje1g=JjAI|Ya*)Wj)?DW^@Z%K@oD4nc+H~8!Q*Cr?}Yi60S>docrvk zho`h^XeG$W#+-6b!mc%(AflW-$HQ5`c#a8kQV|oE_*}9yw7dmr)n%cz3O?zYZW6W9 zN@3QCjO1rxxD3RChYz8nkmR*zZ5E?j4_d)_=$gg2T5`gG#yD0zE+d3M5Yiz9i7|Nb zn(52s)YT?0{?rvXv@AS51g__$8cFf7LY7+I)=HvXK4(m(h9}?^!c;A>d)#LHoZ>-+ z$N;ILK}YgQ)JcWUPmRRd} zC7N$1ey|GZrW4;w3E{62l$NLg@|(FZw=E|T@oZ)qIcR#t+jRB}|BJPgYu3)Z9^vwE zp)5-@LahY7D9;4pjRze?M-(Th&@>7-14L_lUJ0Fti>JmVQ09^}kYN*ubF+$2vvR0a zlXDHe2-YftSfgiQS&CxaIXv`3i z-mT&cBB`76+)7hH@dzIzwI?%!IM3D+Ic+#3>2zVl@V-^H+s3fR`127{{#gc7qUl-% ze)(17pZ}Ae@XaIqtKWa-|NVUMWropG&HkO%UwHQ_#(_tS*Cz`v0pdK2s$d-xpXU~1CS|Yc?;y#@^=>}E8lteYd zM9)>>9UsOd3_NB6Bqv2jgX@!IoM3Kf(WDSd-a+Ydc>mf6oRm^28laV@5rUl!n)@FK z%n2G*T;%kb3<`gHj1F&i97)%yXFU>s8uXz!14+8Is!(Upr8k*0iSx59adw^O3%&E3 zkDV_+9elk6RhpbYiL|I~?$0f=xN;wzH5TH`d4wLKwrG5{pkirTo`wsOcj@$`JD=Jp zPklyAXV56*PwJ`bnE{p5K7pAA3950vnOjgtlbT*j3Cf$tq2`inSb*7)dWy=qhm5-A zv)5QNo-aYOhMej2Xc8gMcdB7(_QIhoMB%0AopR>p5tQjM^;Zc40)^BuI`!x`S{WES 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

    +X@&1#e!-HPm7jtIGCZOH>?sLqc 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

    h2 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%0A;HTz0dxW(K+ICv6m!O}gg^f`riq1g?dXJR5=F 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%0DeDY6X^B+<01==4kzJ6 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�j8w^e-j2tykSj#d z4yw*FgJWGTf(bQRB)W7lLc{LWQ)|p`dba(7`sY1l>)=5Ad{Zu>MJXFg;VwVk> z&q;N2ZJsM<^YR&y0?Y@!>=R`U>S6*NE`tA?!qS%y8cTT4lQmf#p@VPT%T;`mP z{4nm-uH65^TYp`kJD=S;^6!rxc$<44;bLXYb!u*?S^goU?&HD)@et z`O-^%XWzKFhM}LNsfPw_x5r&fdc_ci)@K5J0clacc42dH_frP2 zKy;YCuSD^=8MWy7>&3aBWFIm$JQq<>(@ zl0E4a3Y7}M8fk~X+W|91&{fjBt<>5`kH&J*_hZi9$gPIAep*P3gLj(Ha`b3_P*Q3kY$7a~I$gIbPtTDISZ4&d#C!(7e<@A1_9|r;{4pOrr(g zo}uHT=xPeLG5lJseb+mBsgDE#bq4Usy<43#-&|iIJlS=V09$yK^aofc97qLlE&xI& z>o`v!ypysFJH;7Bk@EtxkYatX5wZoN7!)0l9LSvVreT?(=IUHBFykmhFvu-XLj}qA zqUM#5PWG`zN$iyg30ouo>Uisxe`@TCD(w2CKoptkn74$7V~dQknvP11i9MP((h8M= zTMeEYmVC$~OzFhYlsekk=ZfusS~I%$ix=yz8Re90=0Rm>#mvoKG|lm&VDXJ$NTz5` zRWQewfu!Vs$8$?q zps<0A@WcItL{At&;r(DrUiZdwu^6+`;@U#Z#+guiEj#caJBzG1D207&fxHm@M_;YLM-ztEitI zRu;|dz3b?l|LH;bV)Iyx+b`k{Lz)ZNf};y5=a9o#`EXcy)0t&CwHBJbui9QFjqm;D zxh3z)qW!m)xQ2-<|%DG7aFYljHdZb^9 z&FjC6{dm7Hy<52+etKw@#_#{dt?8G^rPV;+-n4}`H~%JRirZ^ly(YPhjMtyI=bcIX ziD$(J!`6}UW&AeQT@NzbNqVrEHBU~TsuwODeio|g>rMO*vF;lmyO@{4 zwSDKpS?q4gDV-o#AFBuKZeF!2(pMIqlm~3!7VgARz(+vNw}pqF?yfYI;rG!O;-yn8 zW`ly_oWZGjX-E|KbYM{Zpja8;NYeIfBw{8kW?ODkJ~bfUd2eB5srwuQ@+eoz^8H;& z4iVo(Ich94QffOxErRQc$C9!kmMWow4B0{15NQOvIDZ9S;%KSRUfPWE0NB({Fb|ce z48ao8bsen82aqsSoaIuiH>TB%0D!zU)AR_wE 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

    U}2(O75_TZiPjK0cjQj4Bw7r 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 z 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 YB8At)#O&vT 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/output/img2.png b/ML/Pytorch/more_advanced/neuralstyle/output/img2.png new file mode 100644 index 0000000000000000000000000000000000000000..27d73624395f6fe676acb7c2a7c21554f9e502db GIT binary patch literal 288811 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

    y^B8w#UzO8yZ<4a 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

    #w0*Q_$V{mA=a&BKOr>DP_H`Dg0p37-_kjvrB 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­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ⅈBxdkWTRY_aIYpi+=Fq6`28AO!*- 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⩔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

    r1n#q??lTdMeff{bUA<4s<8>O5XNmh|` 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 @4m5iDP0T} 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/output/img4.png b/ML/Pytorch/more_advanced/neuralstyle/output/img4.png new file mode 100644 index 0000000000000000000000000000000000000000..239625c40bfda894738c7e7e1738e49525c26492 GIT binary patch literal 290279 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

    PbTE*^cGsBh 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

    c302+p(jk%VcpJ^j`6K1NHX@9ePNHmp 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

    F%9$gSK&+Pym93p7v9@y2s-STpl;Jr2 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

    BCACi;b-L?&HP=pcQ4ZMHIV(^u!pwo#RB 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�eeewrEyl+DuxReUC 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

    {o;>qT=`Q!{q^0=&B2ZDY^<7? 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

    JdTdn(ql;a%=}yfeaoNROOp- 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%0AA04#|8V(vnEm9@@u%*< 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 D^B+!7QiAO0?aYN>Eg)#KJ+_ zew>ABtrkG9O9(n#)ro55V&-+)BDDca$1j5YliA`0Yh$`~RbKUVFG+IX99zbhSD|}stv^ig0xDx^h;7IxXs6z=ov8X=>Fr2YscI;r}&T zSyf24Nh2Z1l2-1ecHto_Z3m4CUTkzWg2bgN-ojV;d4YLs~F<`Q)7nCS!s^vh+ zRThRCe(ROH+g)=U&C*eRdY#@Vvs{*ul|ZIAAfi#!*y+QWF{cTq|Sh)6hOj?LWFL@oYRb&K!vkg z*4Jsfy_p2_Ew>6S6H7>ZD!YoAL$xde3qe*uGtCYUw%Q-$;Qr9fhJB;;`nO$3Lv7b$ z05ptAJS$tOTFBP)m-(EO^=LZ$P$UR7+N_t3=|&sOZTMMK~OfNtVhP|?Cawu zy}0vVMn8OMIeb}vDLRlA;*@@RO3@nbfA(B81W7I5j91G(5-TfW_gm`4e3@?`!o`ftXd(2Ch(PjMSYs9GYuVr@%$MsCikT zp`o4fxw2H-8i;`$DO@3|&Zbr{Mrv6#%OtX7S)@=Qfa?eft42(zYtCZXQkwj%-L{ld zLhYt(>+)erCBMOi6`LXWa&z9D0QiUB{WlBrvSM7KPa5G}jvyb1+uB`J;n;wnOElZAaEU3b9 z)5sJT7Ss@vn+6wlr8bR8EduJgT{|JGOekx*2+UO*!K$<>Eixsh)!i#8=_?8ZjA^wI zJGIWB+USM=wIU%|I3=j8Oi;xtv|24V;tZ)OMQW30lGflxs|eMF8o9!ZQK3Nv;T%Av z2zl29i&W`li&4lgX9=C1AFdKb#B-9jX?tu-1_9oh@2%)!*0q136CnDF+xuo@hjv-W zi+?N_dHi@;0* z8`ugp#u#uYXFyVUZRt`@parBvf;CcgsK`V#wc410mRiKEbWKtjDQA4U}MM zV=i=H1a9bNn!Ev`qB>w5(yi-IgJuPCVHna?ELsF|TqdiaGGXb==M3R2*of96MR1&x`WL z27jtFU@H23v5KH>GD#R*A0D|SDjRqTkHx|%H!6WtscesfdLjW za!A?iId7OZaa07O)04$j-CC#UI6U96_zas#0Ze%6D*M-<5O&~*S%3PCt6GZ9$2Rt) z<5AZ`QDtfMlbh+!EnfT9ukRY%CrOBxFDB}u)sUW;@7#OIgbE`?rYUAt3y?>V5jPi9 zFnwi|$S%!Tk}IhZRN{g`0XYU7)lw!inO8^%B4d>luy&CWLRhK1V##*q&GlT&-CB(| zg}r$ACr3Ou{<9CRZ!fOlzxyA5ydNuL+bAFrIF^fAku1|;^SZS`f~AZHYnc%3 zT!xC0>fJIv*?>B8024qf1Mc=yD9)r_Q}Q!TH4U)%@*JqOGEPiKUh*16W#xOeG+&UgAs&P0eN!u&!Y~P;woj zdEVGSj!S?vPGDujOr%;|rZs6&%1O^e^ov)+q<+VoW{YUB(k8|QYx=P7ma3_R){82 zHf`r?fm*sqX+m_3Y1<-1;1PZJ3!lGq{OW9W%GVr9fp;OQ9S92pooZPtq}!u5zFU5A zWcGSXBk?2F_@;bS(_VXSM4enII)QP@K7%B1|i<>=12`ol)a% zxz%!&K&i*UC-Cv@(KjZ}Wn@HB#LKa0NmM9GEyDoNrj!Jj-JkW+0Y6-ZcYW~r<2&A+ zaGW)7zHEK8`&-XyMYlh7?Bco-PFX6@+!RyKB%h!#BvxTcoo^{wjJ&+^7lLO<~rgjqWQJ>B5zxfIwu z)xe8K>!l%)&Z-|pyur)eOY`C_O+Rl{biqAtP6a0{+Cpl$P`#}{jm-!`jz}xrS~`>4 zerwEyRBD_h#*v8J@`2sl+uX6KSbPq8=gUziIm&i=R$idSUksP9>iB%dOTST}q=;PA zeKuo_Etl8;Kp?qdP{?(FU7K<}2Ly+JdM?jP!I5OOXpuDQTYQxW10#{k$Rnb}m0J0V zR8ut*R5xRzH0NBkCD4clLI?l`T2p0AgP6-epc(-)Lk!4uN8=?gHDPD85jx?NnW=hR zLsP0(#pDL^X#)$X9lBtVKrfa5U^0GDNiO1qX5;2cGj?-q?U z^RN1~L6b_d6eVAxT!%GDhFV-K{fnpau-ByaN|hRJ9by}lDbhdJW_Rwg(P_WL-wI*iCibAOT|7a=}Dq@`?@{EA(Q8(T&(k&uoe)T`!Z6cH6k_Dm#bT z8I|Pco4YeTF4D_wv-RMpJdYwzHkq?hS;D6~6CbIpSh;MN&0Ko;G{0Y&^UYdgfvRrr zwl~hC^Sj^trm@xDr&<0}=T@72;W6BEA^WIqX4W2^&-ZjaVaXG00rvi-6XK#1Pd28_dJyfg=Ysih}5C9e6g%+w;-* z^NT;GVRQNE0xVMa*+2QWzx(#RU;X^_ll5MguPTL3ZMMaU6bu+|A^XTq00;*h6WSjS z;9bgoZ4u?rlL65Z)TxRT7!9Ue5lZgy(h{=BREl!Qze;J2%C9}4tI!@)mL7t_mt)S#rsjNDg zrjph~h;Loj3_GA!>0U;ur6SMdMI^R7WmN+t2}y&D zNvuIamq`s&1qh%>7zm!DKxz75Db*WwpE;>sa3bU!HJ+pq4C>0ZY`kKtZ6VJy0!U@3 z(#6uU2l*&7y+K%A8lDDM3}lG6nW$4-+^#RDqn8RjEVL1+`-tYAM%&?DFV~i>X;ZJNvGqM-2oroOjwJtc7g~4J%ZRpg%c%*T?swTvUdOV`Poaj%Saff{999q13#P?G|GaUt7K60O5JL3qv%;kTu%^6B+407DWY;kwL*(f zw0u--&&fwS0%ca05+Wyn``A%dpm$>tEL!q)+kfS(>^dJM;j`y1xSuT_@J$0h37OCm zlQj~zC0N-+D{@0c6R9vY)38GP&gCkqpOzRbmF~S8x>%@?H9C`x+gYr%bIxB2uji3E z9kpOE0selBWtTTP4PC8H2Yl&UMKwox1 za--^;-*-1+hOUjX?!_8$bg#dlXamlc!UYC%5%A_)v39;C{uwAYOEjG&OYfMCmV zPV7<{iGh!fh-AyelN1BX6~q-y*EQ>-i1@}rs=Q2Ib!q>YtnM>4J17s2_&^pm=3}dt zt{GTBW5Wp&60eB9bEr*keMqWJNjfk(Pmkn-TbD7hnM(TyH95H_+%PA#+U6kZ3Xx;U zSjMa#PaHE!cKgyh$5%o5DSE%tePM__g~%ALa9If_=lgu&tBa8+xO*O zjN{p8&0k*vJUPkRE&kY`JzU)iT5)HQAZab_$*`8Oc`VPnW81h%gWTjxWOv3L9iLzK z6)SX^&a2!~jcLW#RZcOb3tR8a^dXMkvIrtnIyeK8|k~-WOl=c8Bwk5;6c*xI$m3zOOBvuReWG)xqYwVD;Mb z`tsoQf7I`;cQ{Um*WVcYYI_jm^Q*7^*XSueJo?e}^uf`z4s8$wTWC1TC$IV6n*4VE zm&(lz=XUp&>uUi{+OZM(K$3`D0NVJ-o65B&DkOM;cs@(dr>Eg!WJZ5E`_c7#h5Cr) zZ@|4D4~@6pn(hA4^S_7Q-GIOUFaATi{k#>_^>df_V7wG6b=Ig%zE?g9Q%QH&eXVfhQ>MSJxC`n?C@)T z`9fiS^s%>E)o|+}s~sG3yR4oxbr%9?q^IKG?Uw;gpq$;lZi!9L^Y(*Hx;_{AcF$Z2 z;bdCn(3op>!${^Vcds@w$E+o6<%^Y#1UC`pDNS8d2AP^lrLhq6wX}VuFYFLVTC0i! zmCMlADS5(Rh?vb!UPRSPxrI_X=le+i)7d7uK#wxO-95zG9aca!rV^v^A}i z0^6|`A##HO9L@`wZq2pASLY;sUPvhsj_xcgZg19Q-mD{S0km3MZ9#7inkur))_ARG zpHwC0cHm71ai5w+EjL0mCQ%ESW7#GgAVnim(B(=5D;V2IuL-2G!qW=Zwzz(hKDWV7 zX3W&BMGc_4!hl0&1}18f!d@ZF*#h$hTajAaeR^z>!VfM(gZCWgJ zv{~h8yW$oW#H8P z34F&d{Hxj4a`&p6tiG<^dZ${h&F@~XuUhHs#zFaTLG{P&s(-Qbq%D8v-7o&Y9028e zpr1*{*iyE<*2(0K{Lk;bW=p-+qARP#=RrRC{nPI@?!8?EG*#8x~^n9%n89f^W^jB8CjCE~{R9B2i}U9P>ZlsdhX?oWJ-?P-KgayZdR4}LnloD|iB&0A z)+3|Vv1=7Ya@`gVilh=t4T{zRn0AaZugYfLj%8;Q zXV3qs_o)|Zar?8K<5xehKD|RWj$2Q6QYS~LTCPc(Q!RNt8Wy*-!u2_5dR)a;)3Oi5 z@@lwtZ{^T6$trA&yiJ^js);2oZ_Pb`YO=0`B43}j0vjP-EZ3WELSvg+0bf~-RyVn& zN{c}5xn)utXsqHMM*76SGeOaBy*$*II$GJ8I1;P=jj?ykj!WUd?paWkz9gR zuTV2vQcK7bjy$K{M}vZ5tF#;~{Qf^P)y3V5F#b zT``?@QER0OJ4Kn78AMhRy>?OKAP59vP+yR=+vt(Q<0)9Pn^h^$Ojr8za^9{sPqgu{ z*}R}n2HHlPrkGJwlB_#G=LN+}P3xqhh;HJ}lZl}!Nk<1~L`nPC;Qzgje(_Vk+Rv8t z_O^UDWBc{~p?_iK*SBi*vQ&@ar>{IqED;xb3!2(MhRHyl`niIfA(BF zI5Uqo4`FUe;||?i*yr1M+P8)uEYP}3vPN@TBSi@3WdA7x6Z!OpQU^$XFp9({{iz#Y z=s$fMno*DNN%SK7#*gnkyx+d%O3%KAy&qpcT04<`=kluqUH?$|{O1$6#~{yLDXmzUr8=&k?$GtG^&AH8_>Gk*ZT`R~886Tapv;d}StKYX|K{vL28 z)(%?~BcbFD#}a_DHnpSuw0rDcYfC3ks+g7PQb1-*lG$EkO<@RtGQE)7{ZS7V()HGt zM&03htj4X%{1iTZYrOea=F|OA`hH28n^&8z6(@Wcw3pe&?A9~(t>!zWdRgh1sF7S} zjgS^lF7@J)x;^PQR5!LBH^P<&w7W1$PLOj1p@lX``1i_Q|s&?{c6 zwNm1hQ*KP9sa+E#GeUKR8Z42dQB=IjB-^39bP6qL`Lm6p|G5SCaNFu<^`tdwV&6`! ztR3lbJ6XSOPuEgYvUwh9CTdJaUX{Wt{a8=hl2l8z4JafQkqKXPs&=5{R+37drO$EJ76BjvfN}=mW>okO^R7Blvg^% zB?pPU^2e^Yxmu>657fv=+rSvnV!-?hyZ|44u-0qM z@VGnOIKTJ^{(}SjpY!o=RyJ$5&$jyIMdzE(Dc@g2ulCIIIojS;9!&Utck0ZBS&vPR z>DO=a$B)dl8&`O~eq|Q05PgHK64?`KSS2ra)Q6{@wRa^y9$35abZWaBGycIdMmxWp z!+yQ~5k7u|)2+w9J%0W7n)jdi|Hs_N7-O7Qh5!Hn07*qoM6N<$f{#YOIRF3v literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/output/img7.png b/ML/Pytorch/more_advanced/neuralstyle/output/img7.png new file mode 100644 index 0000000000000000000000000000000000000000..2272e8d2412eb7013e54906cfe5fadf7c49d141d GIT binary patch literal 300513 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

    |cERtAGFAqi&pbS~Wo%Z3jFQjhUsvdDk5$v;&tS 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%0DFk- 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

    37|6$`j8dIrIl8x^$c3%w07Rg%EDFS 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


    Ieah2`aU7Tdq|@cR!QKfwpV8Y4>qb(muqdAFzl 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 BkK_OV literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/output/img8.png b/ML/Pytorch/more_advanced/neuralstyle/output/img8.png new file mode 100644 index 0000000000000000000000000000000000000000..9d57ba6acce1b11dd05b2dc63d23b1a6bd7c8fc8 GIT binary patch literal 315914 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 YWl~)Y+#ds= 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 pema;wib(Qs^5p*U~PCxNkY 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

    2I9|%XDtIB^iVCb)~#Fob)l(32CrV-y^8$$sr6< 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%0AG0M*ds*?sjurk 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%0A<2c7| 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%0A#L+NVbvya5XKmx97LBKiTVX7p%x-Kl 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 Hvqm+L7%8K+(udkw*-Dwa#Keu%G5HS+p&$ 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 NvojuPfXFfn|JiHVq!0iA literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/styles/style1.jpg b/ML/Pytorch/more_advanced/neuralstyle/styles/style1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b9cbe80c7c844f80877a41b5a8f0e61ed4db86ce GIT binary patch literal 220115 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%0A#L+NVbvya5XKmx97LBKiTVX7p%x-Kl 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 Hvqm+L7%8K+(udkw*-Dwa#Keu%G5HS+p&$ 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 NvojuPfXFfn|JiHVq!0iA literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/styles/style2.jpg b/ML/Pytorch/more_advanced/neuralstyle/styles/style2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..62ad5d2a2f6c404257bf4060641044fde8aea215 GIT binary patch literal 114573 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

    MsrH_IfUbcQnO? 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 z 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/styles/style3.jpg b/ML/Pytorch/more_advanced/neuralstyle/styles/style3.jpg new file mode 100644 index 0000000000000000000000000000000000000000..520f6a22771c9130b9907381c5e0843c9e379f06 GIT binary patch literal 286356 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 -s)F08bkgswnxVl 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⁣!9oXk@klFdlbtaJoD;9^Go0S@#oq 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

    % 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 eBR+Y=d;@cQUqdN=PbJ-CpAcMD1HW zUcNKR5x+;*89E+Px5kfHQVNg3ndGnK{Z19DP zY7>V8)^Q-6I6vkHUI8XokfHb@9Zmpjw7M`TfgvWT->h2pt>uX}y%W}4fwn{>A2@nY zo7FkQmlP9deEH2y*}xyhFVg(yuUP*8m*Xg3Yr6+V8K4_wJePxP^pDsu)uB^rYRG!U znKL}dM}s3{BC{dtU;O>N_GY?#Ia35Ji^PBli}Y~@mw0e6P6d@QEANifO#EifCIe;# zFQDRJnVM$QJI`Y%q}ydk>8C$Z#FL$_wJq&kcmCA-0}&1XpP)j7dP zWpr))uqUHoNu=~i-Q@WOfFPkH@vQG!gF*S{CeIEEeGgg3C4@uiF4d}`4p_(#wrUdk&R7@*8QMd7 zD8kcMVumKdF?tdBg;!*glTakHc|7X|IH9+3)0RLA1VNM|h{id1OO^wE<0k})d72!B z!wpU(aVnkfTuuhV2_KPcWJ)!;$#6-qdBqcE)|`E7At05&AvZNyGWJ74eT~jFghABd31aR{{Vup zmX7;jb+!rQ$4yR`x3@v#hU696#nFOH;-?%-M*jdNMsA7fJ2xYiDOP}K=>QsyKTMAh zI{yGfJFOgdlhSRH&?(j-(*aqPSH>hxfR2nA(sdvaYv ziDQ|kyd8QR;}nKwwm|h6SP~GKxxBTZ^bQLtYs6#om%2jPy7!Xb z3((6Vm2oTw z2q2SmKz(IC#CXJ;R^4WfY>U=@&lz$ZPUEav=bu@4NzixxF^p$wQIZ}d%7=5mr~bj; z@sqEt;PB(`IXBS`OxQ>{xWTy+1QZ^y(49*s9Mlj$R`Sk_c*kH%4hlyi5K9A25r`x_ zhwe@gGBjXgvTKW*`efCZ5C|KNSe((aUI6;?6zCBPY0BU$IdZHF%Od2xhq!|i?ujR( zyz!SKiF|-czgGTa16l-}dCTP-fn(XgKn#?j?QJw*h#@u>&Dgw{ zl}!c_$sOb(4;HTbsr8MA7-&Qik61J|bFF1fmyk@iVJ0+>Wv3^B^4dR=(0~w7X+bbTm(6b= z%LJSteAWTxCS}Gv<(|m|m;LJrS8HltoO?B_G_!!G z6BJsrC5uLbe9f{h9Y3I)i7Hlkz(BBc$UZPqDK;TR$dyYel1Eg;#01LG3gp)U$TM`~ zCDOW;FDM$SCh{Rj6tarBD4K~@YPJnG{{V0|oe{ubhM^df0O}r-de1(7k&o}Zk3s}W z7moh`O2IN=oFV<^SPprA_x|T*e!0KT#yEXaNf{%EL4hw5#xq| zOb}gQ{QdBNZ`+mdrGX)Dr5Pumq< z<+1I$ywNly27Z{FzCuz0^!+hi0}tH@ZySiz^#onKgt?&j}(Q4Kabi42Z<9#9QC@F{TWEv3T5=klzFba5? zi8+gE5-)je+mp4pf04+Ri3qd{b~0T43k4}F`eZb)A;75wJYXy85=34c^`oq->IM%b zt|2W%9qVvg&r^%UsYyqQG7Ndt9yEzb)^K?+$f^s&?5-H!DJfK_3^$QbL2l%+<#CRs z!m&kEUegFgCTU`P5~m+Rkeu1U4tT>wV;e{hR`X2_iDW&PDT* z!ot0y+MjsiHl2XeYdc+G115`=3XNrTeZej^?%d=8h$^q75-PF8fg-~}Yg0HOMU_(a zdpRAVCYvUBePB$OTL*0e-dUQi&r7MvQ45%PkW5YhjGH$Nlj*FGa2!%WYQ1F0qPN8W zK}b!z=8vq@G=P+Yl5JQP&M7)RN(^3d-L8=Lut01p0Wb30fV{g26UqY z*K2c|Fx_d@AFGt42!wqvoN$(~m-uy>;z66D7*tWdfXCY-q?Gm({$!3_UqN*lN2f!; zFznn|-`0%ZWpoOPlTF;@#Qwee$wJg=E6U4a0%rTxP~1bX9B){+h_v24@r;T%4ZpTa z&0QNk#&PX^!G*TA=hMbr z%aJ#>ae4Xt#(x)nbG>!D{{YF>d>{Gz{V|ERX)TkyBeNAvl7CqV@zf!_FM&slWwK7L z_kplUo=dKN4h|l*9uHvmAGX%a~M5 z6)z3ow5!Vz&rI%70K;7UaF|lI&h5|6Oo)$^B{o5oLL@Rg2e#3Yh(Z7zWa-L-cA@3r zjM5Ra3)tdI40~*z3vPAR1KHp!nWlVU39&65w$V3{tSMAmgsdE~C^{t(8Czl~$sUl( z5@7;Z5aAO$Q2Hl4PQfA0V3u(%(I(2sX7ZE-h=+Sb^Eh?60TTi2nkt_lPainQA@ril z2+FKspf5;+dL){|E@)&{r6;ysMhfAAI=k3N@7CnPK>-Rr5x$Bm5Fh~QGR0f#C8Vp7 z0HdicRZuw>@5se&uYLxpAM+7NVsLK>gI>^um^=dI5undLF1TC@aoJXnx z948=ud85)SH0Dx0_lYSSlh~$-`5cA~p;&0)OUlA0T__k_3#8&zHG(cbrfN2!G9{DS ziR7893$$bcJ;RtHZ>ZFAmka^>xd())SWEJd?Z!**H3T zoGN>%p!;ykA~uGo^UY?_S|jyh?3xNB9m;vb2!_Oo(K=*hi@?kK9Ef|9$r~dl=7oI% zTNjg(q~a@n9x_4Ocqi4AZe6ZV;_x6ub)g)w83tvQE9_yHH<`$)8rn^G$xItCCvrvm z$>^K~7_eC*HXHgfZC1w295}$m4mj7;C(c2fD^e?zOm9^4F{y-XmU)dv0lg&PEkzk* zNQn44uUN~136~xj=pj>ywkHY>=;(hK(4bZPF(5B8#JKoi#ga-bcx0we5RVl=$TaQ& z_y^03(;+1*MDXKum@a04ddEmPZ%3Z55{M*s-*_Pbw3Z$u{xV*6O$}tZ;)KGt{>FWN zZ&)y{9G}5|n;x|Gw{fVLv{glaGa3NZ-PBBdt^&a!wx5up7lR z3sW=vWF1lxErTCy4cQQAl?gzId>szZx2T%?S9JHQKu!^b%n0%+4fAtY&7BGQ}E-{^5=g~~$&hgmvAzFF)n z(}*J00jsVjwQ{G}Tp3f7gylga2wCiLIV3^jp3ql~^O*(F=pB)OGX|vzP|&@`vKAnF zK!;#%j~KFB1cBeMNR|OWgE``R58-R07$|y1dU4#x+?~*YB&S>w@B~LhdT-JM2`2!5= zhG68`%MOg#=ivq869n*6G0Rg+=EFpEip*v9upXXIj^+N>(sTu)hV^*LQ`s3>mUnt@L&wjfn)4pzdykV%ouF`piq21+ zsnBWhm1_vT%WH*2-S1U zV{eEEI#U&{!^5^KBSO(P<17l)68`|0+9$Cx8SV9woX|?Cc*;zWvuE*=Q6cawczI@f z+?9e7c?De@krB$kn<)eKVtZP}_RB05QgT>CKwY@E2LU-&p!>!1HIB4I{Z5>nbp!7= z+{xT12?68QD@890<$(#ZlWBP41|7N7mUq0HwvNak$QyD(q5H8@YbLlHYO{6tbA|Q% zxQP$5Ri7BA?OV5iAw7jcAS;ZMl=e!K?M&JjVuar z#8;CorAKdo%Y+BzPn??YlF{?$Bq5}Rh(GArE1770P?H#V@jD7V>Q~lGW91nH2r81@ z;-)H~O5zy=2|j{4FZp!5orq|48i9i+l?xOZXo9%5AaZZ z@TCMgr8dUAWVNeHCxoxg2-RxhMvUU z$h9R-w~qKzwpi&A)=eUmiZiP6$nL<{a9FU!{MhoK1ackqpLJ!nI5{5RGD~m7m5Ho$ zJ=jQUlNi_%l&HJ_A>=p{5}-&?X3iDJa<7A6O$0Coq0Kb?SbNlAdvg?pr4wW&+~qkj z`G{L*54a+a)Ax}ONO%JPtp|=`yar80K-={bGvfe2LNQ1S!EPXQ9 zM<^Qm;m%J|9KE13oI<`MwJTj#4Z~5ue5zey#sb8vlv^4kM!}1H=V)bGj=0t*l}C{6 zlUPj@k4g3v#z$nLc6V7YLXru6Idnxz(GC3N%5IFGY7-X! z04$jn@RI%WmR+rwdieF4fk`r#J*gOuF2YFD{4=otMOvnY1c-~EmbFoaG=m3;M@nK5 z&tT`m%ZybWDaXstI7kF8iEGcCYwjjOv}F_m2HuBEnuuwT{aEQrFumV|U@mTz#1|4) zXw4x`CFc~oSDD4RC+6}}&$pcY`edjRTM4XvJ~8V*9z197pZt6^UIrwoCbLvk(sVAEU;t1J;a1p_qMvs=qT3{K>m#LDq7JsEK;jRg6` z?`d&z2F&)RES~*hh_TJxOSSJC2$9y8fOVG1j37%53)VeY8aHN8I+VgS2YCX+05D2Z zW)Cru?3x6o(1gF_usj{yYX=%d zLZD%h>{!SNhJgx1!W3DN6iqRVts;Tm4hU&_rl3>@-T~bOKN~p{;}AO8GAeg8A#ui5 z*}=?7o~Sw;l!H5O1SCXn3T}xoP=k~St830g=!ao5DHbWLoLH3MSAoUh3kD||9fe$T zkVq5;HjYQ_mF_JBZ^&8B@&a{4giyg)hs*7cY0|MLyM!05eG?R*w^0RsF&n!CEfzxD zJz@gcnMz^Xd6^yJSZ0N$nglo;V#W;kW9&#*E=zNethhxjZ+RmCH&!T^4-QI`q`+ML z&Bn{;Dp1SZq|LTP;$tq29_|xA9$J+)iMA|Lj9hmaJK5H*%p|5MchOy%z|M0y=+ibV zQmBFgG&&3vvYjg(u&G9}Jnan{I!;?Sp96*78>Ep8zFx4TW;2;)aYq#>GU#}xrWnLi z7+%LaAwsUY{<3MGoG04wPke@nsGrVx;DPZx&G(B1frT&QW>e03j9=lCCEO&7H(qmY z0y3Jow9N97)8hoUb`S>T;<6W^cD;MTwjIOvYt}l%!^2)9ZVNbatL9fcV@By6gu#DY zjiArcAk!uG0ev9a#n2OKFALjP=Jee%IDKP^*b1DWrw*`OKuo?7sC9%QcKW?88nRVI zRPS5DfwT!qe~zhb2oQl_kkc9nP!lu9-I0~qbZ}UnEH~E3 z;VF7s7At^B-HN7r#5E#;IVsV~=SI*J(SV8Ricru>+O^KIVPc<_H|*mTxUzdu-W9D9 z`iZ?P_!4g@nA2_)F&%gb6lIf?2biG#(*@^n^A}EYwy3u*~@Y&Ji;|q2B{Q zaoiR@Qw>u|rPCcQoL!4rS+Q&FpBZSYP&9Xv!671=FMG*psphMAW`pYpJpTYIkwaFdV|GP*Epz#1ge0On2jp%D2_$MT8bgZaOCg~oWD({KmW;&S90ps&LOWw7?j#(k z(DjQ7LIV5`2K&fz+Djx`@Qh59)((TvbAU>&?tT(<=)x;&bSoATCu~6tG~ujzL4+wz z)HQAIayMF960cE#aX`vXoA_qGc^u8&qpX}d5SlB=IU*7k5}BWDO1lT-$lFmfYW0ve zBA^s6SC>=->px4yaATw@`SFutbVuUrIW#tJfj5&62W{#&h{0OOR}1uWgf{m1BAonT zLZ~tFQ;=(>wH2~XBm!)-=@>(WC*iu10XevxI|I_!A~`ZW4e0zCZ=ICBg>~l{DOh8F z54g${ETmadXAS^^4A-|7%A-zC)82D{Hqv8xJ7xv3JiIukp&WK`&vW+w0MDL_>ku$; zvQzPux{^Y8L?G%FKJpX8JYn?B{{VTn?VKY~6R2Y5fHjJ)-YxG zIKJ_9SZD7wCOk@(YtgC>98sxxCF&mO0!tbpkfUQ0Iws4*al zoU3Xs$>$t4Iz@;h33hwd5m7XjZmgo~$a5@1CJ&(1yU03>(HbIZg(Z2&3kFIPXHO}r zfWGoN^`qVdnNi6s@FQ8SmR8#?VR&DFI+isS1GX~SbNh8`0~0*dnFx_B*SL3889LjI zF$tuL#GYb(&V-i(kYeF$rV^nG)z(EtaNIl)@dE16ONA5jXt0y}T5{l;x;tFW@WC6#qSU(s zcuSXtpbn5h;}xY;XOzU-SmG_a1t}^jFE2y}*>-^gw+>HKA;9LR46w8oBSi{eqZ9PM zYz&bNk1>uWcnRtNB}BxKz|>WScwvr#(Rb0|ScSgVf5cau3RWU9baP_FE+IDssGPaq zXh{s{qaFQ}aq|?KpG>rP&)H+mxJbO3sRk3)C8QZ;fQY?>Lhv~rT2T_DN#ztV`2eF4 zU-l!fwk>AXOlXj!WM3ne&tf9Y6;?jEGjqx28dbw#$9L}9xQQmou5d)-qOsQ+8eLXM zipsWq=}TGR6YF#Ww({a&U<-NyZH+u0PLkO~^yDR%DSuqIUGEW5b&7;u$zoR(kPu8x zHko?i#<>W^C?}CqyrC;O7fFq*GHg`k$3;dctsnyOnlAH3l5XZ-n8Iv^LR>DljS=LT zgU1F-Hl*{V$+wqDLO#(cWc+LZOAkFi|Z0R-E+WX;NhfKzc8 zC=-Pg4gKB(iswzBXEv{TmZ4l@3HKY;e^~&UWQN0V;qUmsWJ)rP2QTVt1|bBhUV3=P z{O&XR%8B+9?B{V#uS{z19{xM{wJa!pIAmj|iWe)>~sUdlb z3O)v1`Gx_@EEF)lrUU1kjS{qF4qt{A!tIV@spfGCYnZ-exQqq_6gj&pMu5ukE>m9% z%Z?+sjaN(21}Tetkx!JaZ~RA^7^h}gO=^dKBzkWiHgtCf3^(zPkdsveLg$Lp(;~@i zKQ;sV0;{f|3Wypjp2t4B+3!9t_M?*2zZ(;!g*=en$Vi~w9P!LMJ zCJl6$tY1>9i^Jd&=p=jeon*BLY)*RR!aU_1d9S|?Vtn1@SqC)KnkC7-MB`qB`B-{wJ~AGi*m=Al8SqTx z6Iwms+Xotbr+8c`*L~ zvJG9M@qKCj_;w? z;Ul*EWU57sXQ{(lrFwB~k;&{Fryk1-I`bZkJoz!OI2W0B;~2!-*kqvdVf_Y_P$!We zCQ5{&=P_3O&QFFxUa*++`O5;?#T5~exvY)KQ#c^eY46@o0yP^mG0kq*td9WXEOsj zjlN`beJ_mgrZLAR*_X~7aW{7oZP|wZZAW9v&BaaDsZ8f85hi83Gm7FDVJ_XoDeEW7d^LFk7%o? zQNt65U2ax5UNB7=!4x74;%-b9Lme7kgaeXqDI5wRu|~RK1)RxK>{e(%u}G|Zv(#Cv z+Y!OWbj~p=GB$4d(=Ig*-wAo$2h!Kn4{WK|(ySm&gwjDbC=+U5KkwqU65$$rK>v8Z^iNgD0B5gy1~V zxee|!C17=K@<_Er>Asz~7PWy|fC^v)87g~Ag(#@B7Py5GXAE!f@Xg0Vzg5z&zeW0`Oi0c#Hkd zj}Y2J-5b2wpP;yUf&(+gM6YyX5>h42$Rl_FU8U!=Y{_y$NiZjiU}Ayar1}O{l9h%b zJNL>$-$N1%`9?!x?e8K$^wIWNiK3B7G|xwda(U5z7!9u((7N21Gg5M*ND3iRM;Cy= zucpU-FC#1H^F9C(h(accUtu)yIiy7E8W=i_jyTDVewFV~0Oc2_khpPOU`Yks%Ar2@ zivdQpK^uovc_n0yep+Y*XyA{MxHcLAB;-Kx;Lp;bv}@xJO{p1zEFuvZ4o>{Eys|9# z$EbdFct#{-UP}Hkxpg|bA%c)6W8{tg0_P_Y+Wr)hy8PidwmXOf2A>%SsHhgKJPfs0 zpfx)gc0z^OgY@p#qF4zN&}sth##xNjO%2E^}7Mp1M8`ut7>y4wsgB3=RVS0Gtvj1qnCh zIdY@*B0<#6<1@%418#lfV7Us~qIBwU8gGhz3XI%+@T*I8X(_b67)ThlRqSC9wRlCj zRWrzSIW*ucA_vJN^%($9C9uJkqY&?ONPHSof`{5D5Xc?mc`R3%@xF4*JPgtnB;yBx zY{ohO`z(Zd(bPH=CcWbF#FDAtWIDzbTUB$1KsnIL4m@B&iC5pjP)-1p2&6S0;w{9d z&z_9nITKYa823URA8@!Ly@g;h(N1PyEuyFX9 z#H0TJ9^yD~G3aju$zY!ACZ3JNsdPll=CVKw2BEe@IO83oF!gj$(3{(oz%?NB)tfq7 zR*tX&51Gyi$m8Og=W@sEby0IR$@Pwx7dgA$yTyu6B7^9|0-0yyFUUbP_R4A4WR!I- zeCEKah%NHU4}vy}<;zlGzKMZ?+Y+b{$eaOE8XzN>RjC;~+JOYA12ebMvt^CQ?uf<%&Ecy~eRV%8<$7f!Q@V{=O81YG{PHit_WIrGy4&@I&R&+ZlEJ-;^Mnce_l@<#y z=wprQlwk4{>FWwE8=JX1l1aunIVwW23kP6b4s(9-XQx9cN8rTM=C{B1E^;rJKMXM( zlPb3I+a0===NBqs;!I0@nVck#Cc6#j5-&9ZJ=-VDwnrPwRyE_%7fDD?u>FF0I>w3c zU~Py1&LNr0mMaei8iiup@?nKw-wo>w%8nGTM$Do}}4-54M^$Kxru?BgHgUGttjw%_D!-^|a@=C;3Yg)S zBnf0wuKtWBlolvce@tDVff2dnHKz$$_|U?M+!D^WLc^(R))p2?qL*vJu#iR^^P@Ub z0<*ds$giG z2HZ_VcuN>y;+_>?BYtyZ@^l-AL##Z4MxQ&iY6>%)nkZvO@p4Bu$aV<|@5Tuql#^*X zV^@T^sTrRi)1j$Erk?2JJ9~nFhF6m;DBT z9M*q4B-R5o9Q?R3sV}I_pB|A|(uCWM#2wbND&Y3^xkXa#xBxuP6 z740EDM1AAR{vSy210_P+$T9O*i@!NaLE-1f1CnN^wV=(dPZt(0BfJGFim3g04lZ(- zd_j;%e{FKPHRm;NIo~D$SqR=L+Y(xrRry?suZw*iW4sS=nnaprlO|&^Kmb7!1P%&K z#HxTYa{(E_8#LmLH$H4eFur#y%pG)OU>x&Q>2N&=7>bvndRFq|?x%(xLnFlCk;M61 zM=iIS$KF^gfQF+I<1Yk~#GwBGmRTPIo!CH53UW3yv@VYdB^C?~b%=FH01<}gDx>Ul zK=a`roCRTXW}1-aFD?I%u;830AO)6pze1%W3UYltp##Dom7^A#xzIDxsvzeE3@@zBCkztsd~l zF`eCi^XCTvFl0M3P{>2LtUv$-yl3 z_<$h~M;4>kD0Y!(dt|Z~ zE1`@MW93=i1bEg$Z$wC&%6MpHkpUylQlqZ<%Yv`60Fb6fLcCN-1cMSf)8WW02S78P z2OCaG70PL$f?YD2SA`!4UM7mF95N|_TPGOrJz;5QZ$XRB$`k+sZ7%W zGAeX^C3T3N2$VVINBqy6FD91W4DS)^i;w&qBNTBHf~e(x7a4};`^b(78SJ^_WxRf*wT4*;J!k<-oK zhIY-8Tt8(zGc`HlaS`yt_u&(xC5qyW1kR=xZd59>YVj@@?e#k zLJr7W;XrW@z)=QA$xqKHCB?R#ws@BCGG&%MU@CGfAl}S$W42p(3S=0^H-4WZCWL3YDnXB;aK}u{@!>7&eZwECp%d0HnM9nK)<&DRbR5SSc9L>^f7R?-!yn zWF`VB6eMdMNq)MQOLXK7H^*gOCA>?AL=7J*?Y1V7P-X3hbojtKv&f!wFnwNPmWLuhbUle53=zN$Vl0*&UTLoj2 zN3bzFRV<*=l4Q!|geoT-hTx;+vxWk<@KQ<^9QerWg}Mr$l%3-U7|2UvXhMd}Z)E41 z%)M@~m~2v3f`IM#!y5^yfu#e4>|!sYc)S}sWbS>ru`p*_O-8awKGCWYX3)GaD>=z( zo3ssW$uaStJIt%u92bn~p$|j46YF`{T;i&x$d))2MI@_4PLu1Bql3AOD|Mvvg=aA| zvw@{Y?-aF$K~IT_I4I6r<3t-%^}#BYb5X|QTwwDs*pSc=1bHKQEh`a9{jtg)Lw#j- z7)c4C9V|#;BCEvX8dyuUIc0>M{hTAes^&^lR zY6<@U!~W*Kle}9rz3GJ6P$vweCzrfcP}-#sd(Cj`i@+$7IUIE#9$ZN_*&`gJqDAOiGw;?_AHT7AEDS^GRQQvyLfM!9K`@nXEBkuUvzs`ddmRXnSvTZ)(u}CJ+fP}3-t+}@UAZ&Tvu+KB-bgtfcdyEXq2chZ!9W1$^K>_L#P7| zI*^3d@xq8_x{c+mup zdd(LYJ(0#doy&=&nmGG%1Ad-?g(dTDa#=3V0Ync(nwZCdjhT^EJTi4zp(hsWaCya% zjyf7E*$OnXiCh&0V$G2!TF0R_)#6Me0{!OO@g@YYW3!;OVa#q?$wY?IKSJSI#auWE zW?i4&Om+#KQwKm!JIQBx1Pqj`$@@r_p=5(gtRO6w7|d=c@xWj-?S%pRhHTI_Fg=?w zTTy0qAWJSNdj*iURVm%%r7UIS;6@WPD2wE`SYkOwu;EqPP2kQ2R^Pt zS-;FVNasgu6y@Uz@HZ04ZvOxV2X;{b>%4Q6;BAd3xt7e{^Y?iBi89BA^ph1IMT*q4 zIy7;RK#?J_1Q1Mfk%ZqirVuv$4nPn9vM`2=;6Tko#@z}aide9i9gIR|dIdQTzVW*F z5xgJ(SSWa}ZDlJKPVBaIrO!N1c%+f36n2~5CB)%Y%6?d(;o)m7tc-^zXZT|jvZyO6 zm|u+AY1a_=%J5WbXC(kTMU60V7Lo{!^NcFKFx6=!pY+YX`lBg(>J;aOLX-!;c{Ruq zD174k#X^R#?BLkRjObgS!U|2KR?|C5utbym^fi$S?U5Q*Mw~ZsmYmYh8t+);9mo=U zr7ly5&gb2X$ni0EkvN@=4*>0VoJyfV<-Ik6vW1CulM5m;nA%`HL=$#m!9wP$G9g%0 z+{PQrr~=|ijtk4*=Vrq(gM}n0Fzz=QKb)q)agrK=ASB{3)%<4KL_$ZJC)P367AkpA zdNJKbN;Tl1Cd>s{+7q_BJYYmgVmbyOJt8-}h62w`?I}czs>doU-&a~mh}49K8W+}L zkqC(TrwLfcK4c#R%p)VJ3W@1=J>w2FGeKp#3>=tegj2I1yP~l`1PJ#4KLLUOD2j?r zEVhaE$-^{AyE34sCVLVhB*1AK13qDHG_;Q1n$ypLs+ll{J#Etwbg18}op`W6IiSmf`B4eZf3s?LeO>yGOiDxRNEs(lY%NmV9$cx=QV3Rqdgj>*jMnBSR z09g{4MoElah#CdtPFojJRP^3TiiV)G{l>FKI8T$q-b+ZPnI~Zgyokjf+hobx4@M>2 zwZ@{Co#xHO04Bp?yTQDeheIN#*9Ib(nhr-e2*%nh)7i2;V1cC>?WgJ(gdy9|PnJYV z@z;2>Iy0}apZ1*NFzKEg&N2aVk5$0(25T{fHst-q#zDpw-;w&5U>qV|P)jnuGmZkj z8`>I^ryvx$cInxMTg?jY3pdH=%h9G^i*||DF>+uO6j`n$Wkj0Dw&ax_v0-7D_BRFK z{wo08g6qaki+tA1kh;MkPdguyXnhtg6+jLoLQ<=t6@*1r9dRiu{5ZgG((#(%;^!#9 zqOHk{Lr>Q_un@i6c|Q0q%2LQJ1^0;yUiR}KT45xkOM*EC9ONWhG*gn7BL)EFdGzw3 ztQ79Ka&7v8$x#TiXpw@_UQHAqE;1f8c+DlY^V(!Y^2ngzqkDEI<0jI(tE2j??NSAW z`hFPc$z&n$MPsOPO=?HUULDFaWCFyfRhYHiQ(yo5eBg^6b}bWiSd$hXZ6iUjhR1P zWS6APad@CD_NN`ty{+wa<#3>cm7Z4uddOI%ZPdOl_{U^fJrqr~7UXy)Bd5fuVYEeM zI*_M=!h+C4p=6|&w(@zF>eHEK`Ej-otmq`Z7@oW80MX0 zCSd7f-Yu05!;vR|iSv<%CN*^?6OSfn<4D^TPmf}o908aE>uvTnha$Ckv;!XUN@$S7HvMDiO)Br(YQ|l6)ir<@DpDlKE=M5rKwWEPkv;1l;kG&^$QB zHc8$bCya?gfUzD2SC%C3Qzx9$%4r=G08GsRasiSZB-~UjzZ^I%Ap#x{ihIc#YlN## zr%x=_aK8E@6A=yMsx(Q~u#3doCfM}vI<9aDS2m4SfOUZN0IIr}ZKlkCJA0{RLDMDvY zPlTGu=ZhdzqAQGmm(~mXmipnM%^@rK85}trKOZ^4RIv}LJmX~3wesZXi*v*04pda< z+WgI*Tp%V(^QfQw_Kx(Z=t7;A}$u%9d+J6!HThH zOhAP6%81T_JAN@aCcwIYXunxys4AzEgx`9|o6hM$()#gJwV?)JVfXZBZWcPoa0~ibq&2AJZTVno7l18EDf; zYNL(% zWt1bkXNSB=uM^0S#j}8^5Vz)9A*NM)jz*|Bz%3!~_e2IQfs2^sE=-$E6wYQaI)M4k z?foJ*Ck0TY+#B@Ba8w;MxtR3;8fs5eIxe?Fz>! z!C3EWe1)My)#%<$l*&4W?N4SM;Z76tl5!sGE>Qv-6NfnZdAC1qu++>G%hpVkIjQly z2mnf;+y2taA*x&hvz~U9wFPEx4qAxufL=ftH+D z2q5ZV>lC5`1_mWW^Mz&~Z)$fXWQy;`gQ&J}ULi;jrg+%Ph$esy2jpR^CsKrlAW%CS z!!{x=4o*$&!|E1hrqmpKI-0^6gq%_XLu_OalH=Y2(aV~kXNTKfYgrm;781m%JmlNo zPi3tgz&FM+3Qj{y=H6tshJ*MqHCjmu^!)oN(Nzb#dSSACgB>g?746FJ)~WgQZS z5|`M(6@Vz!`7u<=x>y4>d}p7_XmI6|ric3Hc<${5fK9E}Bs}ESz{L6~AB;CzDv6a) zK+0qx=b@mKi+NUsBx{qA2ImrYP(*g1kB8Gb?Bi?tFf3V@$GRn`%eWxC8HAlK)>Kxn zjITPwMYL?f7ZlgL?Is*+DL@{W_c4s@V9c^#ad~MrLi*ysmv1e4&-Lp+ez>7X(RE$t zgaKIV*PI@nRiI1qL{Ui*6urHU$Eq6Vq&7HVi zW0#R-x(0!I$eEf1&q7tQpddGEzI|j-CnpmPjuvEgJ(~h~w&Y4ADapjn<;Ob;TXmvq zi~u~^j{b``fg%;t)Qh~?Q*|!>G0n}xN{DK-*AIF@?*w=R8*m2A!xPW&XV9<6f}ds(y2#EdlM6%$=FWy=dcrOfdrVo;yqU3wLE5J* znwAh(oFZ4wfxYMHjHL=S_+M8Jzb^`AhNZY;Cj`XKtQO2vk+4ph_%>)Iv5m&@DNm%+3e>ck#Ug(9_2e?-T*5c9#+l`BV+En z@g@mw&iRgTBIr)F8=pz8|Slz+aUH@ zx*H9VVTOY(L%PVs5qSqEn~A6dni=vcvKUosx7OQ}0GLeO5{~GcIGn%$vH{7J?mm$i z)Nczp?<3b_Gni;HBkpB1WS-|e=9s_frl(WSyxXM&QHY+HaB7K0mV~#PXcc3(%S72N)__@pBP2eB^u5gCvmTKiuFp)Mf(%GID0%k(?887SA}; z#<@j;dl*2=xj9K)KeecZ~f10C`w~X%KP;?!nAN4-ZB4 zk^4E%(9Yw%Z$6#pAH3)1-b!Fgz;3ht_n-58=i+jHIm-V4o5=34%v2<>geVT#=*WU7 zC6n>v1c7LmDsKRnV+7|Iifj#mn}Ukx`^^*sX^7&08_8zG5SwFH}tjj*oqm{J4} z49)N{+PK?qig(6Tp;#gLOV}}$Xo@c!5HE%pYYaUd$%p5dyP@c%Qd@7mcR_ zzrBT4=naCETaTN#EYowiWHPTMtJhE>YCFPJ>MLZ&HvT&%G+_(xz zvxbVbSGkj*sa<5@PWy}i0I+j70_x;MhqT4Zvc?Ooo~b7WIjeBV{siTCuzX=%XvL^93_}x zAI1QQrUXi+0|$}fGo!zz9pH-|$QK;5e|aI2*bvPtC;tE>Z`I6G*?}20Y};_S*%Wmc zIZT={+-=k-V;!QoO5MZnB_LEr2nzY%SeyW^$U0N?s_HE@|j(h|J|;7Jqr zT1{xjTxT6u3Lq%a?<6Es0RI3S;r1!|YJ2d=gtQa}PF%88X&N?-lQiIp0tsRbIT&Wr z)Eyo(vdrV%O~ZmAFk#Jhd}Jr*DU!M+s08rEcGI&P}Crlp77s zGC+`)jCVZ8Y@aF~c&$D}WHK#K7bS4yLtNF#p*SFx@s@#ZA*_HqilN~G215m6Lf&JD z$n^w*HPd-0d9)7N@u|Q&QI(7&Jd`+(P%``LGgyWMMLrp-dadARSH?z}Iq_3<#N;QE zr_h+hk{g#P#|g+Pojw{JSDXlWqo^iLd#uw)1_P5v!;GLL0khL6*Cr(?3Rv+7ZLaVc zS*PiIGT1g&@)6z)1sIdK8v_jDN>&*eRA&a&M)X0?1ub_ zS#L@t%XujU}4 zT|npoYZE1b`bg1{UQuf_xaO-chY0a?#!5!WDG$PZWO*Y}q^w6+nwmW*!HcI@>m(?? zP&q?P1KMa}f49h}5b*^k#x{&7xOnL~^@IRVrESr?dz5J@ZY5ps#s~?hNxfnR2(jRV zw9_UyOX-9L@UMSO>Rh&ktVX~C91Ro>N=Do?8Pi9w6Yj{u8AN!6Mh!9HgPteeKMRm< z%v;Lx>~nUEY+FcgH(<4pk)V}|zIepOy>uB92puisDrnQ3kW{18-b==Stu13=y~SQF zep1t!EVP+#2SsjX;TmXyj()3}QZgTDUIMfQ z{7IX+5sOURq_o#~ZE_gU+)Jmt2&oSnenhxtj8q`Zhnrw1MV9rUHyE^NW$Cl0CT?9R z=xfF+0>u=V@-wDW;bn~G7Ka2XMWq<;Cu;QECB`d45wxu&e=8fFRx=8eI|-Na_}&Cdup>K}$SFG?Dr)V|;{Kt3wxx7)ihe-&orl!7~`I zy;4pD6V@b_lJzLT^l)H|3zX|d^@A_n;ETb0MI5KG(EjyaHWHO33_t4@S)dj zqYmoLAbBT8Sw~XHDD!N|ZiRTCvs%q-b?8e-Ph+>i3k<|4*?X|%TME3^{oE@zO(l8_Hexa z0H@A>$c(Dh?s$y9=RbP9tC4C8iFaB0WPbORSq6vBPss{8#S*na+Eu&BSpYI=oaA!| zYOnw$9regE_DO^BgBC&yP55V66D^QS=hF+;+1}mWNJ6o-yX>B@P*7?-6~iZ^AhE84 zm`*ZlHem>c!%S--DCZ159nXv{Q0RzV#}|1lS2`L683YKMaG-!E1`|<7S}~tXQ>4iV zaKouU?2t>)V^-;vBe4)<@Lmnf$QmcO>AZ-+MrTqGvjQL_rn9vT!-2sHvL+x=I1gHQ z&CTq2c7<1&CMPKsKxmcG9~!~ImWSX59HKGc*F^#G^A?K79!Zo5h42b|#lZ_$kdag< z{{Y}b6n1=vcupY%BRi8S?=SVWjfHgh3CetEW_IpU2b`G}cK-mm5mG6`7;RUT(j*<_ zf98cSD+8{pHJD)fTrI(SV8!$DJr(1?wxH0TPq5N1SMt z?b&qp0d5Ikv5R(Xn{$`$682^HV8j)15^g3t#9z$2aQvjns0ffPV_4CN=_~RLF56dI^+KU2=;Y7 z;&49NSM{HNwtm0)?(hEqKaaoue@mW!#}UAY0aP-@BF*gQe5j=M!! zHD)_3!lY=hOq)tcYe~GBV;ym^A_4#&Tv5z|RiPoapy+-mUK6Ov38m!mAyBf&wpP(#sAkQ_frSdPdf;h@WMkpG0oPU& zqZX1xcaCZ}5QD;#1}PI7mmM@#(QGM9aO1Z<_%eRp8T6gj0S%EH-f-VywM|)OYdg=` zc?II}F}V7aQ6yxFfNQzsJFHEZd-C${3UV71{v!@!K-mtFm1?s0$b1`~DCGpDu^uoa z2r&MEo$xf9F!QhL2*iL5T6|=epu4>@mapUQl+^ctku0-YD=UK_8m^&{x62+NgM7Q* zu@lRenZu*x5ck=p@><6>BfUFN`^LQ>P6`5EAaYY9degCw35@n(&Li8bFrvF15IiyK zY^0WL)5c6*=jUFtkM0azv(uA5WPiD10ePDrrHe3ZvZ+Vs#&UsNK|J}4N9n&_k$H__ z1lt=+U1hmy5}qiQeP?d~1979njH|d&nn0!o%#x%?0M}+|+2cF}Aaf8E?;{|EAi9z^ zUMDEp;HExN;}$vwKqQ)i#N^kM1vZ{)aGXWJ!tyO!lH*CDaNM3vXXo!3V!#seAKphj z{&CR-Fc!wXykQS&5FT&|AZisq`TghTKg|8F{WH(x>pyE7SnyP=KA+}Kf-hBguBh`3 z<>E`&xIVI)GR7AeYu*hkav;v1c+|zB2<+anG>IT>+!-JSzXR!b$|{{wnzAEeCR7*7 z&?I+scZtZy0%DkHQI7}`d>jF5I%j$j>5q9MnIyIW>SSc4vQGL+17`9<=bZrON>6zS zT2lClD%ug#Sx5kZ2(}PS87Pp!DOip$$$*bgNzg7-i{Tjo>2Uc?1^%omc)Ey2hObWW zzvvCmXn#5b4GoB$)67#GDLcw+*YyafD*>}2gN$aiP)h~H$cQuQG4dOtb+MplCyUSU2_QIDRQJFl=gRlgEN;o-=MICYTycblV9C6O533 zBUHu~_DZ83$pn=cC&@6DClh5`Mf`}s{JEwuOPg@TSxSvaGBk1s2G&7@FsvoiM)lMytxS1=8&4g(mPX7RQOZN0q z{{UGOi8;)CIxrkE(8(MY4i=S=A03|9YHocVbWyG3&K}0Oz2`AywMyg*PkG3*+k$$t zQJ%5WBd*?X;UU1csv2Z_N?@mu$fEav!Yef78wF|2lOGxHCDzP?c?>4OY`&*>pJ74H zUu={h#F6w3h+vYFOWxT@iO%F(j`1ZW!R7Uyn>1`Hn8@*tAjv4wO7iC$;DKxly`{W4 zP_qcxc_*BOY6q4yzNLl2E@Uc3p-bbmJAIO-kzu@!5MsEYelr(BSLspZ!~qR<$mMw_b1f#PxO=qe;3wqmHSxn{{Ww-ocH7HmGu7r-Y@h& z@cZ$XKKsq`;nCH|(-9Jc?YharqS&KggkTVCp+P88W^iM{Bwp22LouF$@1%qotdsMO zGNjXy+9>ex7&>*LrJjdux4()2t_kyj;O5ADX}oI8WK{N+ za5!&lo?Q^vVUXEIi4dE9L}Dy_j7E{4Q= za7I2Dr~tLjAVrNhz)B!T5ZAYSB$v9^50I3{UIi$kM@nEJ4bTxa)EUK)cY#ejp2g>w z#oqD}Cni13n1}NBnw|L0;T#dmiWX?8b(Uf!K%UrIXgKT!X4Zs%4pQ;5*$kp$XGtq1 zOu+;#2wGa`WRM*0b=pgQSsx-Al}zEQYKZ0F7`6%v%nfwbMZsb;bh-@uXDUm`?vEwK zk+9cgse^BL#L!>{R)td{PYf)IcjAUKwS(gWmkL`7!)byo<;4i?AB^OAYhjwzau<|f z9TJQNY$;2$RiPK?q^jvH66x5&v5CaBNf0v>H-W$}{2=ggTM9|hDBWnuu;yw7QtqGlCd`yYe_;%nlZuxKZ7qvVNR*HGS>ZTok)Atb zuO!4*jEuSpdd6_dCU@-;wK~m7?>0@@i~|nQ=BgHlO#+xB-9f0nb%E7xDf=kogZM)$ z_LwB&7elMO>mpjkGAuqa5qmawM}v|$I3$_^9P^Tv5IKC>F{<#QPKd|T0F0PAxkA&d z*os{G0k@2l^I=Q!{xX4%dZA~V3C6_3N!qMljrY>3OSF7oSm;s5sFUnwrt+J5$TceK z9GNXl@e9EDal@ZXyB?>UYD)_edx(scMCI>^$qJeY16cv8MSv!iMuXNaX3(iK(S%xM zI-8ro#L`YaG33K|v8i9K8!(s>4+R|jVoynLM9f^F-QkG`rHf_2GrTq+8{3eCO0c%J(KJJV+p6v%sEk%J<2x+KSVZTt_k;xW?9E>Vp|DJH`Yc*d^krBNj~1Y6oC+ z8F+syiYKP8CQ%8MjZ*ltYi}rvyq~2d>wv>D64ZF(Cx*yb<{l%g(FwUl z%_F6tQ{yR2iLoOdF#U$>{{SD?{{TIGJ!kCa?z7kae)oC%S@ikByT~JgLY&zQf){O& zP~koB)wf1Tb3J%z{Fa z=7wG}{Im_HEcC?nfJofCxaAYblcjK*qpUdomo)91nred~#Bdd25F3F##$c7SF9J1v=!Zx>w^^_$!P=5&E+&7j&bO{IA=-#jzcpXI@TeeBvFzAHV ziS}X^VG=1G2&l@zEfN|J5++lO8IK@qMM*RBhXelrb|ZGl5(Mig8In-J4?y}bpe>W! z$0g;BWqZG<~{bhJunfy;$xyiogVi1l|Oqtx(9Vu@2ObwuJ2(bAf`Cq=-YP7RmJ7Qb>ay&tWk+ zBNLVYJPC*nam(2RzzSWCJFGf|8;N;274HR7HY-3)wxqabvw{?jC`3q$TX^o&blsrV zqkQGU0#1JtWv+3$1Y@ap$xT_%|Jz zOKHpAK&iRC$szS~YCSSu;B<;h=M;hVlTFB{S=+oRRH;l>jbQbGVe}#QaW5E4PISTinBfBSu1m1wq(^Ey;1ch2a6{F5$JWFhh5MEox7=Z%YBXHGL zC9Svnz~wT|@$-yuM(pIuBCMg*{{S&d*$$kGp?^5BoZ+MrL*AGR@6$6*2%0kCFtDOM zWY2q>y=TScLpunidt_AC*Q|d1VfugX?~nZaWd8tp_x|#D<5^Qacrj@5az(O#h~_UP zXtttwbi{y!tR<0tYdF^=i{O}y2V`a|;W1m`jKY9W-^pep5oPRXkdgO!#4S@Ko>9-7 zJ~xi)(GDs3L}%t%-QpXvA!!4kXJh0?>A$ZhI*RJE2fRu_oe5;piPHvfiEt&2lX=kD z#uzQ&D7rQ+Q;~rtLM50|XioVt{OIN0kpN$#825mI)U4aXk?fU2WD+cP@htG_2mpxd z_uR)95^O|M(r*mk?--zxtbD%AI_9sb$N*NHpmm9MWJVsA(3;XN@-BYotaAXA*6>Cu zoF=$ZBB@o*b4r)%K`TcMks?&5uSYx1E>Q+)h(k%oohig`g6B4nt*9kbxmVR%;w19!}{NI!JSjigbtsTQN7wB6q-fb(B~k ztzu3P;sHl$%%1NbJr#p~p$+|6sVe?0PTyA#cz4=>fc4zjQBujh3)ow&cDBkZJFyi& ztp*u2PApsFWfZL#`7(7jpcBhwOJv~v4#-f3^0$goBJ|sUQ)9(+qP|CP%bSWmg>F~^qmpYS1|d?mV;=LhMi^E$Sb=+o7d&L7c%*p9 z1PBzGImjVHG+P11Y464)PDT+HX=^p77vU<%M{tvb&#z1vCEdR-Sr;RLC_>Z3tBJg{ z2S%DBk9*1xoj{5X$sxpGc-R2cH5k}Yx10_w!O_kK(UgLymssvmrCHZ~XCek8vx>-* zDR!o8I3HQ94~(Ri_rr~4+`!?zVtu4qK5>m!?AHa9*$>^AgQcbd)$`6;hGSL;{_;-H z%*D%ysDWFYQ&?=xbb3xE4GY`8_~NNY)iBz}F|1oQrsC%jYL;L=a8Oj4#`(X*JIa&k0_&H@PZ#FROdw}Nn=X=kG4 zPM>^uX?!X5iRU>()G4A)>Bz(6A^aO_SU5N;8T&C=0y%)(SmFcegDhjIQ#=-uv!4`C zf#GkgxQv&}UE(`c6h?IeKm>P$QY_vMj=bl-qU#coHB{EL$DY_&m`=meXIv_fKV?lC$fU=j<^}Y z1a(xz_)v}opqZJUIlToO7L}Vk$=6=U~L&+~^I3O==3=o#{ zJ!biEpL$M8PHZOD|DB_Azr9JwbFYM%Ttb0!j#V`Vugse$M@AE_oE z4+^cKi7K0WT-VQjtjWkp=Dcp9XOOk+5JLMf1=6?uK8DLVJZj_d#QPZ@ON;d1#YHq6 z*dziysL&X*nmje^7hFJD$X#?fsjloY)0I(Y<_iuxyRJ>s$mX}lcC z)v}(Gc|M;|0GU1k$wkSb?jp+PIblN?S}hLKkSw@S0#3u8@WkWyYc8j(AyZ*^Xn8F` zUvnA*<1jt>$^G(?yeeEmjN*|FV9qsI*Py}($Ye|VVhU8p-Cm1Gtn!@e1+hzX%8Q3tTNeaRL0Io5iEc*709@?BCDFPSN4oi+O6w2ot zFD?;y3)}=vR~>5^aa(tjIDxrvrNw~~%p2iGI)(+1pX3?I``0WFkWI%p=G3_TWP5TK zP?5w3-W=cz^{6{YwU|tw({#WqV;jXpl*S&H2e?0yPN@l6uQ#H-YBMa`K>INC4n$c95>G? zm7gX3akmEkZ6PedP`8apByzdQ2nb{55yyEatZ0zrzl@<+%X< ztdqjP3(fi`BhZY`;XQI@pG6%JeYP0K4Gg=9*FLgM#3E&{Qrd4=%(&270AaJHBvM4_ z@;c3a_kh`B4uOILKzpp~(NFa9-`RLGJx)y|dkpYrz%XyMWG-q#&MW~gq=fp!heb%B zKWy1kmqK2jvIw;89WE7^o z$&jOlB;<9Hk+<9NA_bz2kYiBpNFBLr2{pVAJ+{e*xDir*o7q?Clm3!Mo^F; zP{dAc^+*UG>sy3eU>HVB}i#T?U%%_yH1O`}$K78N`RdjX0hMS$Wg`AA3E4iNXcAm&_ zbRs4BOjqMK^y?aF(R(JkIp8Xi2116+MB!-7@$ML&IGmG#p@|A;VwjT_1z_KM zq{mox6eWUfK-Y|y7H5K`EYPC?Jy9q{ADlrk3Tqel$ytgDC1)pMaFcp=gLNy@c%TB9 zPz?y+-V+Fr2~Z^8I&he4Np~1i>0%E|TLy#AoO#y*NX_^8qc*zd#%c{9;W*b3qPxYO zx7LPB9=>NL3bbgzc6-J4$RLk6!yHfmeb}e4viPaD>4l)smB7jNR1&9o_i9HCEEG zXSrfSk7-HIXu*)N@A(#j#yI zkRxT+S+FIvP!%yJ9GdZf3#pV*p4LFwLhg zRjr^%eirS?-JY+-GaC=4EEWKV4N*E~9ellVrP@sfVHy%eksBxMjn@YoI4ObBm}kC z=0OIcu;1Fj9x@d+LhwUVYdc9=yr_SjkTlA57N z5!AI=}W=8+Z_9gZ+1H7@AQz3EmM zX{V!*32`Y4cc&3D8Ush)84P2c)wLWkL;%G(+o|EK36WEc(aWDWm6+ZV6q19jW1|x< zJGdCD6%uexO14Fr3am&J?9&Eqfng3j1}6;&TB|Y@h3{!Cx;0Vb2SY-NaFfdxU6Y-W z2$pIG2vKlJJba|yX#7YM0M)~JG%1CfS0Fgy4FhB~8#2NYSl%iw4j35BnGOU5{9(6b z%B?}g;gEIj#a*=FhrMQ(1B}csY=Z_e3q)}J(ImX}jKjmUq z6Yeph+3xZZ9o$Yr0K)M8%V1;rL`iD9>hUyC5oCMGj099@0^S+XWmcgff_TpRFxqD0SXb#SHsK(3(aVcF zxC(g9oV0WYoD>;Jew@BWR0b22+n+sfWD6^wc%y`K2fhbha@|c-bZ526t1=7?H!6Be z=x9_O?D~(KXniP;b@#Y(%3UL!Sp{c_v?2L@cFJsix#aw?1VcyH6F-+70{|$qC@}?Q zuOPdgmr*ukxdmR2o5=)`3g?L-hil15Nup9&3#!e?ai&)YVVPq(P0pMKN^*v96YOTm zcL(%MvfFid4vG26uI%Ej{#@hf?1GylnbRDW-MI*`KD)@X`c6gV5-@-ix+in`lSVCG*o637x!?OetRSB&tu47~E1o zGH@x>0Acz9p0H~ogd$lb*fl1y(PRYfM_gw+F}l5jRe~fI$Y%+#$f&|A>HTC-_Kl8y z*fB025|6s41S2U=2?c~9pvkN;rhe*MR8UOT0GM)Qq_`-P)(=$~LQf!nY#iE*{l-l; zmAvAD9nMB36JyM)XL&qEbryJ)0j zLSqj^DS*ojnMqu41gc>ikf25SV@+KFx$nof7n%M@6p2X)C2 z00}3bec3NKHwW$W4$Lul_mvgnE)t9QF>MLuB$b!=%QMwdvTf5wU4>Tkhgo7{%c#hY z*~kx{#z}(xv*YQTIiIFKM~@l%S^MWd9P^b2&N5Zj5=N3oL(2|vZe?4KZ!hSZsxWYe zYI*$R+Ls%sUPuQKr&frlo-8(%l^MD8Zjp^N!M5*cJ1fRL9w)+r|w{ z*exAlUjPHMI*9A*hJWS~23k9hIWAjH8sSKf8^+X#;7`MOI@bqp1+YzN#j(b+N$~#w zIdxkuFSE&rRn?&(QL-(LIZ-N0^%$f{e#?r+wGA}L6mu=)I@HuB-@gwTeJ)87F5;EE zU^tsrCc8Saefyh2{+4j2O|RK-XQYmUAp}g4XjSiP$yM!45_^o*xpsl+UpQDKA`c_I&hTOoaEy}ZW7ry-9pKnS!m0~-?* z9q@^CL52G`(wFoJ-cImEy3AaM2J(*3FiAmklq|q^CUK%3XU-heBLx%fl5t=%Yq%Y< zUP4#~5&-4;$54(2Ib*($vVmk_?Hdm-H-abbRa$!7WpPS8!J&XuiNjzd`oTJeyTV&H zaS9^b?kpxSA|bt5@}6*6|f$z9yg4AX)}U?pyBwgDBk83M49 zjRt(k@Zp2E91F*=w{uwpM|FsgwOH|ofmA6sC@PnvH-?RFgtSNLWh6xuRXE)udc0ns zwxF;lpnANfXtPTL6Vop_eilYb2NF{bOacbO^AWChl2A!oB(NMkvU%mfCp$#mT0-R3 zhjENXYy<8btQ5t62P8A>!&?ar5l6;y$l|&MAws5Z7cDRnLZJc)JO(<}JCHQ{C9?;3 zNFw9|892vH1m8FtTx8X@mahb1z}_N4iH~S>wvGT{33lqLZh+G3AdZS@OeR`%>m3^S zl8Ks=j}LIhFbZTgIrzY8=$Gl7MjA9E zJMvynYE9rKpQkRVM144nc1ogT&o_0CD?)}i10FYGE4H!FWRv=P-tZ@hhfB((545je6Syg%Rg<=#F5H2C5tcdV1wMc^c`}mK1$*4aMoXd zQ*@zp&hz&3UCwXuSWNCZbb3xqFPG`S^z(ugLyNNoeDX=F98nEqRWE#G>`0Lgn{1fP zJO#W7Hzq>~89~ESfo0r9LkA$Uks}mJiFpt#GD($M3!=3bBwR$m>g+G9aS{_!6SX9E z;zmWeqThA^g2Rciq?}|vnb8MxtZ@rg5YCfM?uRC*9u&|#G(&~SFTyxD9 zPq>BJa%^2<0yCTgbucLtQ^@ZY6ayV0S*8l+L8G~E^SJxr0XDjbwYJBRwYu0h1&V|7cXnDM( zaE&4jL>xLWY>Ugcfz}Hfm6M+Y;!S}~IpG*b!CCYA;r(%PTyO;vu>9-5$15a=R)gi< zN2cPLyet0zE#~~=6I%1m6J9#QpYAfj{t@2>SqQ>_ilXWrV;vF-1g2L0nH3MB%-T#K zIdCBnT?(Kp?#t+HPc5ew@#quKkcmk0VH7{kz~yoNgJCvz;12# zW8FC%u~~>(vhYWEZ9&-;Jz8Ob!l8paoCPY{GKew9`8x%Q>vfTw2;3&b$hU%XxAAU1 z1UYE*;9DdJheszOX0-_A!aB-1&6?gG3i10hTJlE1-QiofZE@4i5mj~qq1@fzpDu6F zF(?{|5nHw^Q=2EAdcvrsSl@hwz>1z@G&iQnCH`lRwtK1XKdv0KoB`*=U z@reqsv=?s~_~$m6m)Vl6&%yccI$7qPk~(L*9KK&wmfB2qp5z}L(en0+IKhA4mTHCO>)4-m**X{&Qb+`^h9ll_$I@<=I_k zt1G_b`yHu);toNhlT*dwvMDy7uXo;7xg;AR>f-|eaBUX>v(3o0X?heVeVKL@MJ<7% z#vW+iV-vhYk2yF8ckG(*fUB32@JA2_EI8{Tz^bN$?m}4loRst@c?%}O&aPMiG7-nb zI-(4vQ=PGu4&@yv>ni#?r_YAucDTco-KwD`p(U&{sWK#_9KIL{3u}!kvhn>z#kHrnWr!;|BpG`t6i?sj_{06Z| z6)s3*?Crp+vk9O|OAyY52^h)t(zsx!9MC|^@^Iwnibs|QW96KyG!22Q&GE(z@K&ZG zl8EMfVf2IvRU;E(&a;LaqAiFERgFW63mO)hI7Xv31%)p0=^j2ZN^cYh=|xuy-av8A z5dlEtBcEXDFHe(_3qTs~3^)Y$fZI`NHJ$vVhXh2XE?CnlSzb))Z(-awczL`VVnAiS zfTm6`F~5K0$=Kk0WXgzuVM@F683Y8=3c(6|&RmlKM8pFi-yv2Ma9Zdj)(wL;;*?)m zG!UrTTo{abjP_6w%g!ywIpnkPi8w$;z)d9byoZQGB1nV6?TT<12wjXB(afZWs#zc+ zR6ms@mdM6p+Ty~gEFpNnTFxBVjS_6$0ov{gt>QtmoQp_W=U5zbkfIro4oFr;4j8et*We(NiM&XzcL8$>oE)VClKq)2Cm~5e=?pwQZLEz7UtLxc z6Ic@fW$q#G|G)xWP#}6Lt?llm32rjX4cM#M1%X=jXH|}=hzPc>8_nD{1V$x1 z_})o3xX*-Ot;?Xl-x;TV`Q8TyN?CZNx6TaEfHj2L>sbx3$m#u2i2ndLR_FZ7#{sIt zERPuGLpBZK3MWU5srhe*BEF(>I2I&2X;XxY!$Y$lLrHramlY{w@SU8r-Knf3{E;~ZCm z!P^2-U%Z=Q5EUpy?4*Y|{{Y*T*{Jm}`;F_SEg}4b=a6&_a#Dagn{m&sqmz&nz=K9s z9{5@>DaK2LqGd+mtO@<$B*miKlHp(o`b5OR_zsOnnT$CQR4};RE_`5z4{l?aM(;C{g_!5yc!pDb<66+$6EOSYLt100cyOg|`p~siLAeaSlSO{h24LbnR zt~&P(a`-XI5@$Sc!X;Rg3%sN2N9kY-Q8j2kh;wyq9M$> zxyb_Lp-9y1w5#I^^><4kk{rT2%}XyW0EM73cU4W(1aVS$UFF0Qmvz*iEX?on4>@1l#TR3FNOV>Km5I{hkH8`W) z&L*Jx6y#fg;XL?N*^i@}>#E3yD6ZUAa+;cHM0@1;fYEt&POy>!T@_>kz_FhcUU_e8{qz020S@lMLjWfx)#|TCMZ}?s(S;#_CRB$6_d9e+QstlYw zL_54LK+nlxyeJ~GpJcNG0fHt7#m-u;sK*4-%Vvl*i4a)2m%Ks}(T2QM7qcXfkfM1p zqI_XQ=?i@#Si~gRt9PIH$Re{>N@~;)-^ZDK_VLWHCkSm$!&qfd~;030#FA@0Z*w$}orpo-5M6~L87@02`qCiHZ`{bn* zV7(|pLNJS!ObW0iYzrCJ+fv?g5j`CfJCXh1c2N>B2MOmso&s9CUwDg}xbXA5q>F7; zPmnTf{2KCk$U05CdLI~RJ&{)6Vg@_QCe4q_`DFB3KM~%KI9LSKiNN#<#}KqIS}O#ve=}+6#Qn zckAz#7Q+#Iv~f0FIpF?hAwTSwktL=XTFtNE*uH#tWcwji0zRh^MmIY*qO$t-4qb0* z?r|p31nN~{y)t@QFt`p(^rr$rgJkKuO&2CUYo4jdkZ5TgxeSYTbRHf@yhRiF-b7f1 zjl{-#D{;Au{BRF>!0>64zmwKpHn)x9nS>~Th>76AylQ(6oPum~bGUYe$pjJr z?Mstg`E{UvoMbI*ReF=B5rQPcQiLXSa7`-##)B`7X(M>nK#+v8a`HHWS2PHyx%x0v zG_$%yjKyMndff(dJ8L)he#Sus#;yF`n1HseQ9{29L>tvk+hNCLK@G-o}892+tAIG`qR zbUnC?tp#5ZaxIq}s|Lva)^7$O$cDFF_md02Y%A8zCGt?(?H4R!80$8LBSNulq-ik9 zz2s@JLz?L~HIej?QeZKv*q=i26}O<=BxRzSGe82Hff~uWj&|f2i$F1C;GXrC$=*4Y z5BvOY48a<*$Wld*Oj4>RdR7yIm*Qaj)1Vk{HRYXqjl(EGal1qUiyTOWKjxm9I^+lJ zM$AX(({lX?ayVWJpl!>?7H2nXEZ>Z@0!!_{qV8?p4{EC<4t4^7Viw9dD@7+7*`@m=_anb%l`oWX9st zl$KM0!~%e^Yx2dqeKt>3Z=ASm5-Q;Fj!;KY4A*Sw=}|y}oXM1Iw8b^=cH<;>R_vM2 z+QDQF0Th+qU1q40=-Y53!L!{@+6`ETX`IW3_=3Z+nN)~|gzpF7;KB$69{J8X0^}G3 z$qkh49XS?9-y-q08(oYOOL>u%-|Ix_Iv0#8h#eLuGUYJir)}T_gQXn**>LnV$th-DD zQXzwQ-N}+m^COcK*6>4KQ7qzSdI_>|3NwO#K`JyR1>wY@yhIxlnCl}!lCwMj+0HQ$ z&<*PTvS}n!I6Y&D9S6(F|QT3NjrnDKjOnPNE5E&yjW$y{ zL}>PBY2WK)d2zZWK3pB-;4*2Nng>pB_syY^ww|)BurwcTaHc}B`4P@3YmG^@2d?rT z1-OdOfLxtT9gDXlcA`_N#2QE}WtJLMlH~cvoJg620*dYD2~k&A!cK7(hLUwL=@Sh> zj<`pWlm7q)HO+UE_m8$c{{S6h{D0@{f9Ah$Bmx>y(i??!ILwi94M*CXZ(dsNDwX70 zU83UsykO4DFq6Q=_|908lX%p~8OQ{4i4$m(;|$z6B5goCn4<_JiX~@~Ow}&KzTb@R z`6oZ0z7^ND;zZz?%1I(fHxr@w-W4#UvB}0g{{RuJA^RhoEk?a$fxp_9A@mIj5}$Xtd%Pu2_$gv^%&8g1sl_E z7*RA9dR`20Vl%mGKt5WX;wb4OM0x&9LjjRrMJQQ>V4P0S3a^$-;wi@Ms+#8rIcfI!tZ3o$T; z{xH|45UsLNwg;!DyUTI02#Rs2eyHfhJ&QhwHr5U`k8nr^%3Pubo-*d!n#^^QA0y5; z4N|B$k*5lIa1SI|WKS7B9MZKRu)fmqitAUA1SwLp-X;Mx5LSvhIDE9%oNUk}QItWq z{{STqHU=Lif=Yu0oV-A!!-y-AIP6Ap7l?mK^n2u&3U6eqM zdBoyH$9rz{CwNA6*rulLuOf9al3W(nvapf?0HU4t;++)=mdwX_4KU*~$RQk6=CVkF zb~QJ7UO*LnPTq2;{mJyWc3jHS%g!;}vviKjtCmX>&7ec)tb}zaM+)@dyed>p2U&D3 zrcRL5FmAwLn*RWK!+Jt1{4aphyjh(tXJJmqBwJy0oVM#bP|z!6oab>s8b$@sHOYFx3<4WdSdm zzPvOc8k|SJ83_R!m=S*%iyY^^-xGzH))D827_~_wam8a4X@KHP_xl;j8O%@dJt^f)}y2S)sR+cy*RU z7pGe-jyn}tpHz5u0|K}6A##46n#k#FoZ1PzqUStHsZ9icC8IZ}eLwm2{{YE^mOcq* zoKt~3H#u9>N=9l`ypJvzyb8ibNuqsdkv-oH*_pFSYc?#T;DeB0s{;d0vEqkY(hnv7GM5zXB%wE-jAz-#t)6M~HT8Eu* z$<_}Q2v*2!ERWvPgBGPb7<;9jSH2J#AT2g3-li_0!zyHC_xn;KFs@h7cfp}7JC zYHSd1S;UK|K0(urm&WiJ9fLPD=PJP~kI)f6vm)IPkl|UeU^kB+(+zBV`pVd5b>c)k z=WZ9w!azby0M9fT)>sf9vnFp6 z3THn6l_Ab#sX#K+lyQ&?vQb+h-Nq-v?R60F-D)9W#VnKC~0=f%pXns6!o<7YV{ zaL??;0f|@mPhK$?gLcZH;$B!#WEYsSDBze2S4kbmJI8860-Jr{J7*dk1`aT&2Z8No zqY!WkIyNg#Fg$>HpHCQ0t-?L1NPIcVZ`ePIaoGw{y_1c&^VA|17kOwW0sjCAfc-c; zFD|i^PPWPN^EqCK4FDEXct@WoX+))kMI?mJ)r6l&H(T)z z^PKcQIsMLlUi0yj`O7|d_x}KmkhIsvEQY)pC%`!?Ak~F!cL~(u+++eILR;h`wRMm1 zYP4!>j}7kzgH2=#X-895$rNMuAn)jr6;Vj@nF0i?w-hC@(qW%W5e8Zf8hKL3?G~zECX*Or4`3Kmbe>qBMCK_AU!*Iu!G#51sh64Uzb zgaz}smp8^UNz6+XNM@nFb3w79uLN_yB;Zn%6Fp(<)4|~Za zx#~_miJWgxAkKRjT88pSEV>OJmQN#q1P!J_7(sRnrRN69L`gElnjpoj84)9zbCQh> zdI7lbw!$1%4Yk!(piRtTe&Bq#1e&#wby5L%o0lp%8_)8AObw#%I59XKAdw=1upxuW zBJF;-CNkg{-A9$tlRD<%W1dqDf#{Jg^^pWpl4JFTad%0ulzHAkY5xEs4>Oj5Cj^NE zKa(d4_~=)sc(dUopUQ6)nh-sa0r8Pj>)KpR$@LjLs!0r_bKveAJJhRYEG_NERPF|# zXqO~MDvhuLI>Z3GlRhmJ<&Y*P3i1~5Z|jmIP7VVXL8kB;m!4I}F*?ceTX;n$;hVK( zCN9922fTnFl(aSC$(VnjKR1loOTN|bAR}NZYannvFjFP0kxF`=P)glmI!%?)%hNBF zI9WHzUNR+Yc=})7GNCp~TaNNtf>sa5OSTt+{LUEunFZCU!hMc4K$zgKi@q>p;0FHy@FZuF$JRw-8!B)b7dBjyuZnVQf>`8f z_Q>!Av>P~c;IcJ_5)JcWsU#7T=*KLuf+x;?!~X!E^VWX+fA8&ckH^8k{18E;ueW$Q z8Q>#9Q%J;M#0ONP0+Wnp{+q;nnobB!_B4~O9-}TeB$U~Ht>i$3(7%ESHvdW;-3s|kN|zK^NsYdV3GL*=c~>#v(LsDY;JEv;!$oFO)EHzcn@eJH^`pZ zXhQ5blaAfuxGk{oIdfBzqYA<-`I{e%9}OHXwgHSrk&7ClOCe;%;x}Cw7#wLC-6=<{#L4Hnf-5V8R3@&Fok`agud#FzB^u>>;&Dy)lO}lbs(I{F; zutG*8$o_;2k*LG;F~^=-&UXAUohxCENZJ)Q^^%Bh4=9m5B*2_6Me6o&r)EV}(3cM* zldJ~YYO$JVt%Z){PDI5tHH6)U!E$Ca*u_1o$gS9vL|#F-+a<-bt)1YyXFEdZA;T4e z>KP>~D{+y~$(a!$k`ju|Q#j`DN`t4?2R2P;->qUz;Hth3PZ%&pF|FO%jD#8hvDvED zM-)*xx=pptG0=Y|V}xL#K%~ColNL8QNv(m=OsyryD-S_gZa7Ej2HT98%~H>6&|<9X zh12k!Z#lv>tPL?WCLx=iJx3T*2B0{mA!Fjqg#29xB9H@*SUBlYy@fp@aHkum2gA6H zWaJxq$?`OeP-;6+g2&uZhO?ywx5|mdhVrhLgCS)G*i2m4oPZG*PDUvNm?UdSoM?BF zk#ZhOna$LCNM%V~;$32{TP3KS86!oQK;tetzuaZ}))J7bFfwdPYm=uJCs<2C%{T4P z-cPJY$$8PR!yt0L0*i+k=Rf#0Zc}D9laUHe)XxTMWDds!8X8{i%*m5W?iCGBIIf7r z--v4>Bni#{@wNjhN@f>sSa?fIqu-2B1j8cxG7e4Si1k!ru|jJkYEXzH&d))0r1WzKuLfMO0Z zINhYPs@4q0$ZOKo@x&`ds!BA&(~Y2{gxL&P?Nu|cjN4bTaKb%r9ve+IR<3eBe$)Q| zhwsjRdG$G;{O@s*ug9#MvW5vq`SpotoeCYRiEjiqG~Yy+0Dg;Im{ZCyq~dM}+lYYU zf_Vfh14)8D^pCCq^K;D7RExJOpJ+)%BqiQ*vrmPQuEJtIfte5#ylbqmr3&`|w^2B# zZa|KPM#gcY%dan-6*0_7gOWY-f#~_7uEoBLum^T=IY_-@9p5iX`C`^oBu4PMo^eK~ z=gMN1z?0r_OJFcT(Prxr5=9~9A7ibUXb|m&##U-^lQi2QAX;>L$?~O1$g1cI?TF50 zndH7iBQ&DorY&V&lm->Ub6D$PyDZSk4*{%`l7kdL-T`7fX7!x4t+ph>G7&(lNy5;baBn6CqYK(p7#0%H?-WfXh4hoH9~on-8!Cl* z9c6H-oGLR{dR$a6tc9fkh_4~WW=T4wB)wp^NX7$VOT&p{r2M+m7d^`V0I$dK$FMlo zi8Q0n1`L-gLAmEJ<2*u24GR`lK*@Sk3$6^{mo7F6AxoY_vfX9i2?9c9?Rax{^-3wy7`k|t1EQMN5>-f)mTP8*&U8r=2&$c^ zLOyX#iWxC~BO_s04$>IdT-fCgmdZJn?hR1i`@+%j~tVg zL{5LCW%3fKqKoWqLF@-Jrpvl97Uq(gj39*XAX5UFByz93?Q@8=Q~=j5I;gOOWhE={ z%c2>XnYdhF2)@89x8Cyj?j)k#igG$uKZcHD8G`*O0nC_K&H8CHmE(BQ62!?t6zw=J zu!%EWLBIuIZq8a{k%rkIj^7S8k}F2kd8|3@=M!%iQ12(>5bLXe$G}6Y*fK8f51pT;jEx=~0&~L6@$W zrLRgd5diObTv5WH8lQs--!PsD*GDSsh3Qu^7%tIbLL1{HqYX5? zP#A#>8fV~V9KGl5=kM1)!w2`)NgboW#b6T!6ueJ<^1+hwb|!u)SRDY4m&X!@LqJ4= zz$6mUiK&Gqo6bV0B^?c=1hd~i!$fNT=#nGNA19A~FgKPM<5Rf8g4EgLCBX)gC&Q0nd z(SMdl!lA9z9+}om##B+pG=WzPs7z>o%{=gZXEKN&HMrp(awaD5t1T)@M}KA~kTb6S zbJ1MAPEJh9ba)o2Vn&;&dQ46YFz_lrV;wYPplkI^;h>kTXO*){aD`+NxZaV$dKD}- z*0+d<7-xwvD^DdP$j9FfSi{xU4pRrN0Mkn&=n*= zq$ng*Or{IK5*GvtV{_Q!049$T>J+$N7!vl)!h$t~Ouji};jDxVfdWwXgdi`u0B~R|p<{shrVFD0 zcI#(MmZX!)?rHUnIY(3gYB@W5&W&^6A3fyy?gRwfX^0I>#~?gK2@UPkyTauj_G zDM|xYwBX^)72p?$NclFyCU4k8oDC%FGzQ0Jvpz^W9;3<@;mdH7&!0|dUgId@k zwiCW`HvQ66)Lc)DDRFv>jg^xJsz=uLZzb)`FCb+NpPY$BOd2MFIaC=hnU~|&*%RDKdJiv0O#+#>+7C0K|JU0S@_;c zc$s{>f0%p}AT(Sr&TH%7h?#x6BTN(%InfnbB>Bx{z)#%8 zd|4cyLbwvu1Gn1-z$9e8OrRxCSv5CBe3iPvrXek{kPrvA86k$qy;K!^=D1l{twJ^D zDpLW~mZODEM4}-ia$QEIGr_XFdV*Ow82Coz6J^7uLZV@lNoa57yZ}&cAh*!7gBa?L zaF4al7p%#Zs)hyNEClDY`yJhU<%XC^A%kr4ajC;e45i>nQD1=(ILB-oL4z6v$f}%( z-Fz5}4%dq0;iEsoPDgl`CpaKo8tR-=2z$Nd>8-naCaA>9W9dlt`&%HlxLo4jS!Y~f zKmC1y%--TLCPzsTazguyXE{NbsdNgpIn;!PgCb{u$1@n^22un-L8RVS>5UtLX68D^ znhjPAYRw1IrN-yt3_>8L+-FgW(A~uF+2sb#gCjw43 z2%LPOd1**Y2oS*{nCHK=kJpT!#2N`i$({EDSYj5|$w_8i{AJX_s_G+R7}GY6BQTtX z92~(ugc5yljU(>}4M==r=_?7nsSF{!_AfFMp~A6dkQz#hUPef55YW|N7w}|!g_jW0 ziHF82Txe||z#*nS5(Z&at|0JXLsK+$z^tO(zrYQ0A6*3G9!kW z-I#{wZ8+0S&IG&~1X(nt3=}pYQlUh-Mw~7$g%x(pAHD;|j>mcttnnfs9HV&IvWWv` z5QE+zaeOyGCav-7BQtKNzz%o~VLEx7fiuT*l9N}ltS1*5!KVlqYJ@fC?U9ZK(?k;b zvERB}nk3~i4x`RYFl<9Dz^_hMDK#Q6BXI;f1WV3uar3;4CtF8ba8_>`Jn3R1wt5iB zJDSiHL^C(zC1_syWEp^p;~=E^)U`G+3NsYX3(a`lVPW%O`N3~?Q@jSatZ*tLoRt9p zLT$W1Oi~u+9}kxri%^n>bCHNdOHXIcLBQwJd|bBzW;I3f`SXras;J^e6QXsl{GOIObsS_r7 zV;zN+k%U;4v_xwWbqW@kTH8Mjg}<+;hBd_xJ{yA=lAa zCUNrUh?UvL8C6|a7=S`Z2qeK1EJ3j-B?I!tnJLcA09Hg;QM_9xD>z|qN>%p9H3>)M zDk3Uv&7&^j-p!px3ctq#moX^`nR^+$<)j`kl}^TiR?)J)3{5)CXEI8HOXD7>Y=_Z` zKG+OH6|Dk~ZIO&o!=TUzu`W4O1F$=VrQTtnLY&81uyOhwNfB zpbugw>ki7^^XCeD25UpHDfm|LkhvygB>?c|)!aD_`q%fvE2y(C`;VrXLvMF@R1i$_$Y8FttAq0PlN2^9{!VklLzu7Yf4M6^1kp zdYpg=HIDR-0gxG|Q7R+6BTV(Ac*GSg@GyGGb8|w$=8keeI%%$wIE{R<4nu;89h)vh z%8=rF8;R$}E>7LS8n4+HZb4NOETSYgc#uI|H-l>jBxY9mNk1912Ah!&c~FojO?@$H zN3545rREL&Im?14exD`17_l8MDplg52?N7qvaO~AWp6OXN^l#JI1&dmm^G$H+MH@w zD$m)?yG+MHk^EkG<@SvF_mQ{9=Re4vBP{&*tg2A|0CE5PcQ5Y&i282|*)s>T-3Ljl5!li>!5 z4qO~PD9xK%Wfd$GJZ=XvNIaPzyyx{Me%61Rul%p~KjwXRk?OCf4+fDv^wh67ble%{ zoytIUqb7v#jYJ|rc?aZ_24;js>6^+!T27Y&24->IZNqCZY>an1kP^0>Za+#uLM!`( z=P~DC04y^wgp??KQ3}m?z&gPW1*b&EOcJ9M3TCm4pK9%V)==dz88nWv%?<6F#0w}E z#12MLGm^Eo;E658KpDt(9w9jXT42G}wWN?qCr5)4f+6A2%y|46=@SHDTG^YHCli>K zwH5@3d#S~TfdL{SP0U-&<;y`}j^U6mSb!3?4sySR)MS~f%2O##B&HQ7{fAydSZK2(tzbEE=}UtL(GUoL_NMRTwR-d5}ccyZi?$q zL~F=rBa1u(6BT?mV02ZC;!==;R%wxxAr9SHl;E zdf5dM8sflxl*6!4>{o6Ec$-)AA;@eVL0HW|Sfz&Khb5a&V)2?&HYJ@g z@Ljwtf|^Eq;ccmcQhHrW<0udtwN=X47-YxB_#~3#uw$GMbs;Tet2x7gKrqcO04ot@ zNm8SDj=WM{d|`KEnZ4SvY?qFtRiVMQQIQ2miApIKb;cIVgQ&*eBM#pi8OglKqmX1E zXh`DQ;DJeIC@A2JgYg7RzlK_ag1Io`o02LV*0@M0cs$_ZKAmSjrXsnMzd0Y)O1(Xs z5Wx`isOJG^;u2RVzo~@=1SE?=wbFkXVbF>>O&}3YN;?d zX{j%5=_gpCQm{`n!fMFje2h2!W6iQXEz7jexm4>0EiL5eD%s_!&xNM!^ClG-p zF51Yhv@jkhjYC)@bm-V;T<$VUrxB4<=p{@J@(H>vfOHTd$i6{_1lJVi8SFV#4ZorgPHZ5YO5 z)TmuE6}zHFRm4bCQM1EnwYDlj>=3cHTCuB&q*hyMYwg|Eh#j=3B9sR4QB>?v`nk?u zaIW`x-}9XNy`SIhb9qZ|-sP@*U)!J&)s#bL4u46EH!Nw-A;_3lz^Ms7<&6?ie8qHh zX;jRNPwk;@m)f6>;JlP!xY_5KPzFJ>o$G-=S)P~a>pr-Jz`wc2niK|PzW3&_N5`Ez z>uHn4p$cotyn!^kRpYm9IM{bGQXBI+2oC!Ot499HOh)0)y-gBTwI9E={0}$G zp-U(ErO7C#aNN`={Z8g>CsT9tzQZLc!tdhzmrr;WJIBj`7uk|8%QJh(<81SyhKrd@ zM)^#jY~|`vqqJ)-t^DWALz0#p#n)ys&R$;M_?F_ABN(H6m%%U^_L_E*`)P&@nM383{o4ZHm~_)m@$e z-<8wL7wCl?HPy0n#M6ymQaP|vqu1YIEXj}*{qI%FV~Bd-RgRbxC4LsyZAHPSf!&== zGKPwMvO3M4lxtI}*9sZG`%TE_TG01KU2$M9mF&vlTz|>u4^2|o&{ohQ;YN||YIZ&q zCfkU;q*AU-uY+p@$)mrkhy6hwONG5h17iZNCj)!;KK2S_Mlk_6IRRsRci04x>3ya{ zy1LV=(;P+EAt9B}FRb596B;r1m2;fmz#gb|0~rhs>4IXPYYXaCr_eD(C*=NqB_y!+ zh%Om~K40A#P!chul}&!&7iPff6XwELg6`RoF8itBL&x5|yw_ov^Nr~(6^rl?|5^%( zqi)lD2}r@Y~>pKmrl}C?mk^Ho_FoHmuRwHKKTe!!xk@H zO1)jnnf@ZXWpd2eT2Z&yDbfDFJ9im#XmEEG9sbCys3-ZQmq@Vaud!SAv_2kD^oR94 zc_|J|iGMz1RR|J~E@>GmE`8nzM>ND)-(>rwXu!N81iX+j3$&LLVER7ZN9bGzWk36M z#p*!u=l;l!%nm<^nod5pV4<9l5qVnnOD?|?HYCLX5hbpG1SGfgw?`iRM((}r2}>}i z=JDZv9?|>5mOEzj%+9#UkM?UNxzZQD)>hh%)*qvhsPN>YPH`G6?~eD?853z-CN)dh zRn0;JWwSDh>U{C;maC(&$lFoq>>9UYY%HGrV*ujY&ZxNk4;Q|0v|`EO?uDw2^gKQ{ zv=@z{#|3Jva`z3TyjMxnVaC--q}Yf_nzk4Vto#?IPYXMni@ZLzJob+OP~-y8($dh; z(bLk>(g7|W8X8&v9T)u-F>Z0lB~HaVJdY$C7_@nzXwhq?d`bx2f3pB48d@3}CR)$4 zrJ$9tUT(p+rX55b0`~xM8fGKya!fMPl5k$4gHaWbz(9zAj(Y{* zxjU!4+d+(wR!Z`_@+zQJ2(au#tpj)?j zlxVT`Fk`k7D}YZE6?0C4@ZQ^1QCib^wv~0N@^H=ca>2k);?Fl+4HIhy%MkOZbM7r7K_5T|AAYgvFqKDiP6|?ms)n z)VuE$o~E}J&IGUaLHJLUyJnF=&zV!G3K6pxIcn--8l9OecLrj;3dB>o162j0bVv{d zG46kWux1aR*m9yc1B&) zs>wq``eCD(cEUxRoH0lCu~D8j07pFL@P^?y&nfU+IBves^G|LpZRBG>XMOgz!5?fW zazZc$wiC>WRlwvi=`sUVi6&KJ;$DP)P)322!gde~({nGX3f6E`(lN2-j=GLI@qprj z8{W)g8gFD!V#&bQ(XV!sPhb5WWf&Ws>vU zZ3+KlPH|*YrQCGM{wM)~S0zBIv@Slkl3fJ#rpeM5Q5+w_O6aa>ehojS z{Zxu`5JYN02xPibdQ<{|GY>6tsh)?a5*I5_kJOb3hN9qDCbIe2ToZ=^$INETKfvSy zu%6@KmIEa?#YaNLu|^?J+W=R(E*u=YnS$0RxhY$6c7BtY@eh2!FGxnP%4M(VvM9on&cVN%hT`<6ys=G6P( zWZpb%59IFy^UG+WL;Cf4Z-pNjgMT0vfso7^17P~2_~yFnXCE;9qV}7xcio*f>1ih;xg7`11t)$ zM)ga8&QPn<2iqK5-Xg&K?Gyo4lFDXW&~lU*jOIyS2_IFPhGCjl#Po|p#)jQkgtHZP5Ytz=Ux=M_4G`B|Ue0Ns z8gexGOn7q(+^)h?SMeRST@I&xVU|Hj%bjy0BtsQ6*XcWzB_1RfKBi#BaEx;Y!dQS{ zx& zEHtssYKU~iFZPmeYG6(nK%EXKm;PZYTnb9$WUD#Uf?TbcAUL1mW<^CF0|^5$O`gd_ z=4h2&TCJ9Ck2B2P61Sk^wRwV+hRR6cV}g2OnxoNkN6+0=@97gPj2jvJ{GFlKO$IKR zk3`bGP@Ony;y@ZdPMQO#7RL2VATBaA;thRXkKL|X80BhDS10aLyx?W=X`!0H)ah(^ zZq%>5gHFv*cy9Y!P5t`MC~*rXZ9|Lz0!9=?xJYH4CkRLmj57S0P|9jSG)$L;NeUO$smgq2c-9%P ztIoE}Wv! z(mEcZUJ4r9ai4?>x<(5XY`BnO@(6Tr)|Pw)$EKP5>d{ezJaVihtMbUbi)^m4T@KM~ z&F>Z#$5Vp3Qo>vU{{vBM#-eol{`(XY)oXxJkczM0yXV?5EayO%okbeEb%amaZs2I6 z%h>23+INvuM7%nT>5aw6+&t8%)B@4xPRERG-UD&9%mfh<4THXzdglam6+&S2v^eYa zG+Z5>{~Q!$nBFWvZ3;u=*8>Y695_okQ1@wy25j^{b)y#i#W#jPL=|FImQ(J~=52o# zgL7FhSaRS(5!6B?jH`t^U|QoBr_!7?T?W5YMpJP5DOSPZ@gdVz*U?Ztu7W?445#qK zu3}5UURd?}zd(8y$ZkWnL;m)`qupnIY%d)(mUvs>#M*6%CGN25&SUAH!F(Blct@n) zyZmCVE=d2JshB;Oign50#ZoN}1h-r?kZ9f=@orYjQm$HpLz;b57bQ3n@G z{ncJxg7r(Or^LkL=!utXKWs_S-i(R2)mhD=+{UbjQ(QO$N8v+%gZhl^x5(yq1@PUt zA#1O$C3<;8PwL+UGCO#ym?~JG=_rHmdg^&z?)I=M5Mo}*}`z>4W!3lB3AKTAFj;);g$NnljNO~Apc(*j@0zLjEG zk(&kL-B98#tI)S&JjI8e1UVImbwUQmVN*1HRFHG0+$ZK^DfoTnPDn@R;&C&WGfdkB zH%H6{Z7~SXjo`O(6=2K4Pce*XJXwr_=&}00_RCy?@o_K+|3MP+Z~qR|K5DrKwImxv zw0GRskb<5MBogn&*5+k&+Jf{v@rjmniX$379m`K0+AayKJUNQCx07HU);(h9g%W`= zhfH{UffSqo>ea!9iY;o-b^i)V?$7I4P&ZN7ahY`c%(1~#A_glEg`N~3nj~5kK%F(K zoJOP~mFX~Q>YUM0$}wRKVxz%=QKv#wO(x5CGZ~POU$L^;sVBLSK?z(b>PHvLYY!)m zYC$1sK~YXb6uw_#Ae;HQeM&&0y=a%pYM(kblQ_*6X2InWpR3Xd%lgRe&3${kkN9kI zhb)kAhz%qD5x4e5qFIeugF3X~L_07|a{sFhdOdZDYCpsn422M(LG^fKuHP3W#{itr zz4#Xj&xaE8M7e?KuACY!j};6TA4qU;3PWgUug^j07PY?W1!tx5jw0#jPZ=2^w=j9l zoXl8QOgap@g(8L-qSc9rOSuL(8-)~OgBM>g@B**|sQc|1>#}Ffb)UyioV6TENI@Ap2GcOWd_-N@xH^CZizqu&%HNAF-xRtu} zDhib%3gk+WCBjKuzN~|BgL!lUnS20DZ@o92j0%2Y4C*qc5K#(DVpZ3f;o!m$Pg0Jy zt1qf{21jJc)5ZSq$ZZv_VKoq`fwK|Q@Gr5)-v)_Uv)GjuOEdv{tasY-- zyX`YUWYmIM6mFzI>bgWTsQQJHgm6G~Cet9i2A|i7=(SW(&)JMq)ydeXB@L_@%A5!(WNZ=}2?R<=Fb zj!%}>VS}QA5ugGw{LKoHkq=cIN9XhiV_Xg>F|s4rii3d#qL!PY&7t5xRPPQ>7>q?A z!*m(3^$cDLH{rSVom@f0+Y^L41uhJ9iKrqCK@}CLlK%pj5oMb+njv+Z2%EdjS4I@7 zcAEpc9;S)gcf~0j3dqpm>p?_{OChoceW{j#!BMz)n%;P6bfLv24M0)kE5t%a+Kd(2 z{1xP&o{tI~9^uNd>_@+eEKHrLaWRFc@ECnG8AVhNb)=P!AZJ6FF)+R6=U;>55J@1L;O#u1>6LH8bgo@aOBao{(XcMH3DCDdW zW^^NQ^?}JIpuQwMOv}z+s>;@)*>rG3m^p%(n%kt*cl3l^?DDIX;pN?YQiQ*!%h@gVT&E|1UFIo!6o7IhsO8RG;WTxPVCSjw{blPmFgW*t5 zCJmLwIc*grxpjP{RK%UI%fU@6n)O26T4kG)n**z*U{p-h4%6-Kl>ix1A~D!M1>!;z zr+7SG^S;5PXD1lBabz}DV~_ZYQD?HYL==8=%j+T@8*30Q-nz9gqMK7xAVyBy_uCKL z`Ogc^Via{F)JB07A@U!H$|%gv$`Gcj**cK5yNddco#9SYco#vsK$NWNDljSv>W;Z+ z$D+;*oknWdCIlAGcANdwM-`FKvEnAVa;_H`FK^ACbc`EFoP$EJOKFjNyURK%luP)ZL5|p4Z#5sI zrqvAycA{?I#ko(_brW#kXdI!CLyj7a7$bKsoy4UF$r;k$i0Skk6XaH9&R>6L;YksAMwesGCqvdS*jEvT; z(Td5vzpeWs7FVm{)>E}pLQ>n3`W?n+-a7~E4as}Dl%CG=akdw&H6J&!1t&k0$TF66 zt#K$}Trgnpq7`547Nsh%{sT-baeF@d<7)X+>@K%oKNp{i0uiIGN8!-uq>lbKa(W=K z$3B?Xi6MfHLAxBDaAAXs+d%$x_OK&7^hNM>M0p*^vEfij=xhG&FI6Xs@7F{94F#uB z42~LUI^L+lV$)bR7D0_$=x1~Ak0HWyzl3W$TAIYn58jZu@V5ClK%}O?b1B_ogCLhZ z2E##NcyeA>x=W$G9)8#|^9f5?N!x38;mEiVByEtQwMOg!gGCRS(1tp zk?!|#9a56M;BRsi4XKmu8_v&naiez$DuThUJ_h>gXHfwR+>D1vS&9>#>hgA|%i{xm z3K`X<_~*Bu?J=BSXDHn~a1XJoP=AY{5hUT7Z~>HK1==%-zo1{;dO|Y32kKm?$^H9V z_BY$hdEp}CPt7O(r6WpvEx7@GZZ8lm!JVKe9tB}V3!qjOY7FV&)`d#zzvO=c6i#iw4dXA zUO)ozb|pT)o4dX>$9guV-&SFmRYN?y6ZVULqil^Viyp`-b4BD)A<@10!-*Lbmv)+~ z0ljC0AQSbbX9GY=L@Y}aYl@x(=RpSZ0#_>*y?oX+pV-VPar5<38mpbdRuTrGF`SzJDYl4Lb~j$JXD#dF12oiVG&cZwvCeEo#98dh_$ko zn%UPzG;ac}%+JByu;^L>Eb3A|+HoU2c-?QwyBQ$Qz#|N%)1L2msiP-P_b#AH}by9Sc~l$3M{b& zji9eN!u9tyg`XuwnbOIS%9148u52|IDc^ObvIq*c>9OqpDQ2X97 zhs%?l#Br+g3*n#K(YOh*T48TlqAx;Zc20MFlWReOdn}jx;Km;Y$u~Xu-}E=e#BXwi zVhfL7O!uJaXo$xO=@-zTh{essfdVwo&;nS_natt-JOc+y1s)EB;-QO zCiOoCa!!Wnl+KBbXUe{=Ob+;vZg6yamFpkiQRP4!h8G&;&x`WB-rdAkQfVCGd#3X^ zQ|V&(N(4?KEC@S$kOkwlVuX>$pPjmkd$oe%ia;h{RR(F|C_J^F)2O`&0S06%01JXy z1BHr!X#rHVH^(kmebKYgl7ZAiKK5VG1|~s24SVlzq9X`@mEy1KAuWAt`(yomX9cR> z+^)y$Wx}RseYSxDF^4H=XbOe!6G8*aL3H0)^MN#bb5)#$=>pYFQjRbxSH#(Bqv&4n z4?f0q^OA&S_?%uqt(}PHi9Li{9KHufx?_;A%|y#FNi;AW%-aRL{+Kh(fh>af)NyHB zLZqdzrHHGw5c50kF_v-jD5({S`iVqytl!j7coHM9L9Ljq7R|JKZ`pPC!nCt=wXuC< zR&3uK`!TNjpnj2c*dH${);p58O#MolXULQ)Lp|I=#@wrqvGK8e#mD|*Vio`8zqzC3 zrb=%&>uKqqHV=Ds-14Ub839N^P3NJd>+@D*codm8=Hzi5gN8lv!xde&efjWr{$GUs zso2d-`8F}e(G48OQn7QDRo}7n zqFByAMeca~1Gu$faKeze#Y^?{BQse-^@D{QH1(~qb=@W28e-QFkg@D#eIbG#EP0+_ z@^YBn+5b4#@LCUX*(eS}lN%g&fvR=O|BODQ2Yc)nrecq4>nsXpCS=Lg;nCeMd|LA$ z%P6w}<$ZW|e5;jR(v|kBkDf&wH8T`h?iECm`ug_E526{MaNDq9q?HA&|df%MSO#Fm?M0pPz!L@B46h5WWM zVZxvF87&k(2RRSzDt*;peSqd~E!hE+`ykMOrBPMGOmhDkO-{3jTwRHC{t*4%>3pm~ zK&MQ=@zwbHr73%~T7Jjp$>SSu-~EPmPAq)iE|ua&F5HTBAiUw8z4DQpUU;f2YL{)I zyyYS(nSCXE8j7Y0rNIm&hS|F5`dHY5t~pBXG9CzWS!RP>^7In>x$ey~t7`{poqatX zoF4ENF(8V$#(SR(o)jH22;l@@;)YTEIXc=EjSXm% zPQKibdLMBk?tS=zI4Kx=StwKV*h^!_S4sMr-=sAMLdGwC#nu`-%1I)$CpG0(A_ z?advRwHoB+OVUYLvhuw=lVbpet-Ut?RW_81QDo^HRhQ7_CZFWO}Q`A3zD68*WP}9iIJ6DEI9dFJ_ zc^E_}sP6JMMT!3&-z2$fnaIEiW4|MOT%cXCe6gO;byjVa;9o&WzPC?x@>YMx==XuZL_Pn}Yz{_RTJT@J$rliYx1L;i=5?!cS`ly1(t6O+wx=a? z5Vg?Y=Y=)Cf}C_N*~>_8h2Z=!q>uqn?aPy=QrAwJm$y$oJ`PYkjW3cpd+gx#oz5FF zP^DXy4({TcV}9CR%h%V*>7JT#6D(O}EM<9|S|z)<(A;Lef^N+XB6i+?*uaM3} zr#6p%7Cp*x3hxv^jRHu0&b&!Ggms$N$vr^lw;d-T^(%PKb>NgV;kQ35tDJyo@huWo zK=bSevyj=1UD70iq7XzGjz$!HOCk1$Os8!>byaj^hPqNDysJ^q-{$+ZtP5gEjn8UZ$|o7{sjybpG9K=Xs-iP^md5(nw$Y9zKBIuax{eT#%quy zXCHYde5?CgRb_s=VU@b2ILq*6)4Ok}WN)p_e)B^$k#+isQEu$_H#J7l_P0wcb5okC zqc-k;-SJl|$n?rN$u)N_csG)9r3g(@z8Zliu*6^4Q3e!G%;drK`WYIeGQAyOw@akL z`0CR1{-R#xX`hDuK;257<_e@Km;2jT>IzZ*@`dP~V)jsS_RHHTmu(LvFOtca-_!L| zE>kWSN0F2=Qv&H!QzQ3|9( zj(D?~z?qk(OAI!93P~*S^%!2FOOCg4T-yn}v@XBd7Cv<|F#Vhk7hFK!mf?#x&T*Ue zS3|xJ9FiRq`|Yp@U=Uk{&9nvukfP;HkJ2qcS|MSEsBFxI(9RJp94E|xo1S@8jGke6 z4=A#XTX}5;e6@CB?*PFOX;!LOH} z-M&ed_2)syOM=L(1EyxV$vK`6n;35ikr$Roe)$$<(?$bA$VqDac$w|}(BK&6B~W)~ z@Vc+U8;U&V1;z{c3d`$zruxk)QlgbctlT zw;n(WEG31%ZLYgq8x@ok*weWr%Eb)q3Jc|@-|j(k_h(1(a`{Y1VTUl6m%2G^6}q|(h-1xtj#BB6pevI%JIC#sZ24|_OT42gfaOMJDipwLA`&Ucpjf2b z(GlH$vzG%6dO!O$UhUH9K5A(mw{?e!k2;sW)6Vr_kjzeFt;c|RL5AAoCT!r9@l6fq z27m0Z8+~JdisVgvBobZh38X4g=Oir3p}3^c;2_; z+3Z(-a4^hllq_v>kRZ_6^5LglcCo#?ZGOeWz2o=|(47d$^u-&O(TR4&7EvOW&`k5@ zP=}CXb#%dFtA*I#o&@Byyqf`F((JapU94L@Vk-&wnQ=#LuRsuR(rH&#q6ku zvLl}74Rc2_8qe3B+N##rKH%4|sTqD?t!bMk!rv*+ZoXyl2p( zmnY$&$WYVw^IPr<)%XvsHKFTCqNK<~{PuzTN;qhD2oS7rB7 zzIm`C6;*nRd<3hU$74h+3$^~#E39AMab4t7&hz0qApQ|h7LS(k2kF-G|`@rYLbQza%Ljh#g)tCL7>3@PmjgAP7R1He~)1!(D7`#>0 zq=-$6nO*MvhKg}0o=RX;P?+zoCA!4r4D-?9^U_qq$6`kjpQo~xi1U|1bukUSzgo(o znfmFnmqlpJp#qo-Ejh)I!j*Cw`6u05Au;7NtvNmPMe@#+tg9;L6Gm9-WR_HqxOrgCRn}; z9b40!wa9&S(Xi1`i!9uk%d}MD}mo7Ahse4+8pA?F3i- zTd(xbU%&QdEIsUw@?{^8aB$K;!0*i^+_N-gwW#M-sG!&LR&PW7X0yJvTUu33HT~{; zMH;RspjW6Ac*q2}U6bzQBiV=^ZvNeVR`9vR`Fk=y18Ok4)?1=bg;R<}*cx)Vf|+^^ zKpHi8{9ZK=m(3F9&lb}xc>W+I^M#E|tGu zx$Qo?;3U5H;}6x`6~>i!_wN{fJccwB&NeME;w-{+2crUZQ>h+Yzq@|Lt1B)I02%2T zkWv~_^!IBdKTD#Y{kQWOJ}=TdJ;uGFZdh0*NIHoZ+1QqPulm5uA5wy*jH=I6o#dY2 zz`ZWpjeLu1bskpurI{cKOqRn({2?i}p2fWZxrjAOhg!M4`_$zbetXn&|EBFz%_O?@ zwLeeg&)NLpLZ|tSC+79>HGDzjfKGJ8a)K3FixlO+uYOd91#FU(k z7W`5E;1bP3aV&TglB)D7LPIe%jR)9Lb?t+F!=jwfXT2k`a!i-Yl4za)O#M?XOl784 zx7qZWc(wWGbfbTO`d!a`8#pg%oi8qHsv+h6y=E02GXJn=l(JOA%onhQcYwWE8u%-m zcTu3{AeQ+bAZ2m)Liu=Pcz=M?2O@iHgpc7p80tKM0XsFz59Q$G$X}d2th5(lqHi`2 z&0dedi>z~E%4JE6CMLOpk19O|C7-n`%=~f`s9R^%q}cy49G-f((O(h(R1 zMpj{5(Lzbj-r0DVH89-ocMI^}rZtNeWMOM}ew{a3vgY21>%A-kv(71Yb|Nd^>DUAk zpOK+eCK*2wnTPf=!5(q8y;5i{EbX%jT4=6?l+|yE2eS$0{!&uk)>joj?R{{oe-!=? z(9iuuOPs?rz-T<(yyV05=h8dssukl)?dOlwIgYRL94h~Z=6}fBZv0UpB>vmWa6Q%g z`#M-AG~PmetgIh<%h)+gYi@{|Qg$iAkf?Y$i0f8+$*tI3D5C=L&Sn#miE)xhRg|h; z3oNx1Jn>KFx7sBEF@$Gxh9fgEVkvtQq{QZZ9IM%BTr*mw_i5<`P;#l=*zCQ8dVj0C+X%U=Q)(~728s=eC zAzn^&A%dzR3|TT&M{XS&oFxB^`o+M{31VlgDG<|q$U4%2^qy`{Po%hjx^LG4PO{A= zwM&iqF4#CfUC#P0H|;Qyy<|C1QYBV%rc8oO2u(<$oW!is1ysEL*qEWi6z!a1`pqLO zUR`v%XK^3r>Ksa2NNF6y zmW8(=k_B?TG=##l6vooxG|eBaoZc*`Y;c^^4HMXg%Fi0G+`oR!ho5WaiIY1GB+7R2 zO#=<*-g_G>Tzn_!R$dIt>&_gje&B+Vzu%$dnmG|!abl@8#}&7GW#aq;;7YsYOYm8N zju$ZZFp7C{GrngfuDvB~?e4tGF=N&FV=tDREc-EI6S;-utN8~Tui0)|4|*N9-HvOO z<{?`k?(!uDesbnWOt1stpnf|8+_ zkuTRT{8J>|Q3N{@t$unF;&VZ|08r)TR*+!PRT8(RJ=@&K({MU_Qz-e>oMa|2FDU&d z$(heD7domSg-2|Ou{8^I+s+6?-7+P4JZX1(-O$uw-sWY0yZA@T?so~FBxJkY?c1vG zeVQrW5oFy^_2t*EO@2JiGn&8+p45vNhXKaYXlM4B`T7|YIJ!c9+v1M}gC3PHqt+u& z_}E&~=1st7&;8jthI5b2*vqzLlex>~1p2lZ<&tyYtp~phIv42*`M8?7JQlF}OV3*j zAKVbD2|*0HdkGXK0p{&W!6X z9e$h(m)==2`)G7ic3q>w>z4Lg%u5DvjG>+KQ{{q>`okAxo^DdsFt&{iZAoeYW_|c0 zUd6SMKgZ7W+Dp)Kyy7ldQq<6~@8uhun>X$%gq{l$7svSBJ8L1gFKfd)3=KO2dhMkuK`)%2=%Q0Z)Pmn*Lo!!EKc)U$6c?52YegpYR82$$W|B9kz2ai=FgEGT`|d zR=VqDZDhB-H$Ku6fZ)-AB2elL!A{4)KF?7!l-U2(?iX%daKs&heX`0aX4PUbXUyL} zCGGeG zXMP!p=nQp!<#G+>{xG5a@c^l`>J8kh@g?%Fy!D2KtAov^z4cCGfsM0oZuH`XJwP8S z*P`x1ivry#lZUmkWkeG?<5W_{(qrwzteU&ZVcBoLU}q5tb?X73dha_i$4{m8JKTL7 zZ6;7RzkA!>$c|f3PH&pCmY-JXJCSSHq)98NX(7FNYkP546+LQK9?Gd8;ml4E0K&YP z*TRDzeZoY!!Cl$JLIq#e5~9-l&qvLdKsMED)AauUugc=gR4}B9Np#&~-x~2p_ifcu ztOEAs?B)M_dA5EUYJO&6abeY|fL@>Y12rn@hZ;w*a@$#EHa9Cyu6Z{kHKh#YfNz*K z5I$7T5hgeo+Q=HB^&p)Ts(x;HqSlP&2H85Gm(0LD@XN-}7jYo;b-ES)c6Zovh*iLm zE2bZKj~u@Hg)`-d@Nsr*KL%eoH;UW{#g_wZQ)TycdC9^O7y9UMZZOoi!^EKGhSP)g z#dCQ{!>e}ugj&@M8PDK-nf6e}!g@4NwD(~~tqV;a7P(1-i6*Lxje#>0|Pv3(h{RZW$)xg^){;pEn9IDJ) z8$P?YSKQ56?eXyBCr!Q%xmu-kb={0`5ftGXvc~s*mY%&<3WccM3G?nI%sW2F1(}$R`wduqC4MxSmmLQs z8W%Fq6o?m~Y0f^}iAA_69m8KmX(gTlyvUdiCU=tXNDR0{(q7YaiPY&;dgX2Ai|PZ< zQC)pFtSWJe`f4yC4IEO?IeOs_Nk_or!yFRY@tF|3!-lwPf?*Fy&bCu!nBi!DGl2Vk zka$QSYNK$nnT?T}TAS;GJxWFz!W!I2 zzZwr->sGTc#c&1+jNv+V0hF7HjX#~G8+C<#s_S40`r*gD`4wWw8O`5Z>7E=sNV8F2 z*%OvwryHTjh3P)~Ad`(096TZ2F$Vf)X_~k?{n718(l8B&hW0Cpa&Y{o4kJB5Tl|#l zz+QELFURuo;vYMR1CSunPuF=j=5ZWx((+RGjGi3*_mAYCa%yeHNk2QLIX4resg=z* zuUQ{ujrVrXtEV1%_}ehD08eW*Th<{s?H_ckD46Pwcab-nDce0scLSr0J+sVgBNE=m ztk^5sqi9^<`$EOuNdQ9m`h3y5HZ7Hfa?u;UZ3#IcOhE@07Oq!$S=yecECX_u`dRPS4n+V7P-g?lWFAG+;6nsm!GDO2vwXQM1U+0U&Kf;*>r=QEZz{!O}l z^YB^e4aeBxM^NkV|e}Jz)4eWiW*V{lBhKXC8Jfe6cN3GDFW(7lBmx# z;?njV{%x_iNT*u!ylA18=krmHWyw3M>P0Ao_Ls?r*1=g9I=iI1AnaAs7IHH_7*F6{ zVI~r&j2gF7xch5&d7{8Cx2A2dMN$e%Clc}7$-icr|I{IS zKV*(FBxh&WH;4Ro&|OcQuF!4j^{jILR&?SxeMe3IztmVU^`Uh!=Kux)FUJ?tuPgO* zQq4c%veXjvINg8OH+))s827eOX)gY|svth(9WM{mds0 z|MdMscHL@l-<^Hl@k+?IZw*e9YbBmWr@^T%CnirA+V0C73T!s?8LY~DvXjJp?0sE_ zC;bDMLyeF{_||!2?Nehw-wTx6c*nGZo{KMQ2pJrzHL+Ap*6L|ga-T>uB%o8nx z^&4g@O35~e+e}c)<_Wc6$TTTlCZuXuE$6YrmFD{|X4J?eS-o&gv-%t3bp@Nk8S}L& z)g2aV{+DHVKg{@Tvp zKJ4jCTHN~}osnW9N-_IvpMAc%W{ar23h4(%>+U8-NqmGDOtQo%ojhD^_n`{^d`s|! z<-KsO{c)kBS-zS>!Up?2_10>$Ct9ebvZmzgeY$Ur4L^J?hiDas-GuiX?3grRcJCJt{qFo8xn!dxeglbPlpBwFog{`O}4;}l0H>cl9A4FLh zUV;oK^Zs&xAFiDwXEm8-`1-oi=`-crT4~n6)jM8M_BK|3pC^~?8^`_f*jGGkee)q# zDMqHabvj&i%BMTJ%As@?iL)vfe79O5;Gs-s@XU;aMxD0$Sq?SP2*euots;O z8?4j?7HH!gjVqc_;;TLvfO6HW-q2FKX_Wx*N;ZBhDKwEl+I(K$pAL3`m~gcmzz8n9 zi4~K7KyEt~%#Bd&_gcko^`cMS!eU2%e-MRepGy1#a1K6*YmX&8g5J|kW{%dPBKCvA z4T`@P`wZ*HNLG0%hbv8M0*yZ1^=SnY*F!fZ{eM5Yt^5xl{H^_O%oD#!PvPA4oaH2I z%D#aO|Ks0_mLZL1PbI1~dA8P*ZmXjh#AB0+`?g}f0_L3U@?JY3v&_c9HU^euZL2fC z4DK|u{8|48;F)O+$WgJGE{vH#Sf5V&jnT*onr@7z&Ptbmm-{D?h4-Gl zQm(r*Dq7EJS9)cn-B~(kL2e?c{gPkqoWm>W#l!BxhleJACETLnSvBfH#r6!&)l}gL zm!wGz`j2fwrWR2@nl=pJ>NELy!sa}}VwDch>nvoN{lD9flC2vCDapL5MoZ`dn7s;` zb93nRPl2BQC`jK9qfAbnE7pn-InNQeSI2TWQT>5ZbbZop1IjM^!$ZZV)pK1rlcWIp zkAcq+C(6ce2NT43Il5Xey(#*3x6EWm$kDCxr!v0Ypu?ivp8u-Sn)E$n#m3c{M`m^V zld+43qDJ3LcrB zbUmah&C2>Mx$pPtG&qMQ#}BZoRfT$^O1_?~$GAA`iW?HiZk<3?3m@CwZT-xxOaPnk=i)dwhSOnA@q>G;7hQ z)D}4)Blt+?E6_Q>@>6WdfXpgD-r0=LwNY~U+N1Lc!M~=@Yo?V&M0Zt|aFLiibe^!5 z+;n2;sdXp(!kXKE5y;&1s==SYn>$zxxW{Z8yAxpaFR$6$vUtN~YBy+;b{bS)_ zV$)Xqy$8_D&GqK1S&x)ncXuYs>o_7^N4&~AC)O@Do6}^-7oOT@OaB1XZ_ZIQwimkK zOSjFCdlgyA*V^@_yrL`DKCgVdx#FQiElFKO5M(fy&g8*S&|OUs6d6SEqQg&eUYbnF z4Y2v^63lq{x@ccDCng}hC?}4W6#w;h>-+`0{gAQvYQMYdrF%7dS^6yIGEZy&)5$8N zDhFqWNCu7_X}?*zcdl6*(6g3O*e5taLUW!x&Ab1J{?+W@e_;rz;_T5#GMqSZ;(Dd+ zA7D1(mUZ9N>>5s}XJ@MEh^u^+YJFirHt-mz!LcU zuNcQYfyrqPIPaDx|9sxatDyS6<8*f92Lh*YL@(Zs@Jc!?21?`VSn7gQJ(sjZ`{de_3f-x zH9g8-R8W$KlmeSz#~kTBlRlD<%4$IWO}L-y93nwBkA`T1P`?`79DS9B_&xu+|K7@n zaB&%n0hlL&n`{2GLpA#5bQ#eI#_WTr@z`+U_{!f(m1*@W?LZ&BeGum9ZTX`H}my*ZA7+hpO_Eo7D>?-HKbI zks`%Gs@3Aw!_A+D)uK(|iUma~&i=NNYB~iXcX^C+9xRXEAbjKtUf*SwZ|8AN_iZDK zC_uOcOXkmSY;>iBcuJ@+<=^E`>D%o;7Y1V}?SV!H6%(Zq8DA!4!kEq9`{C{VJv&{@ z*{l8s)Icl0WTu+xyXRxB9-RW*#c1^JO#E9~*^gj;=BH3Jqa^C9ak_eqmFlalRoh_9 z>H#nGinSffXXI!=5}Jc=I)v1As1Hkq!e6EitD0+je62KSn*~hOFkbUUZ?taRz2}MJ z*qO}EVjM)JQ?@RWwQb(U#vH`KnBo~-Yfyzj<_3%Vo=glBLEQs=O`o!&H-C{>0(`xY zZ5(-kV~_&b;As>R&tnW?T6arW7Q#KEqGsi<67409R70WsU;5~!w_)qlz2_^Y)Z@$R zQrBTtlGI_{T{X9C)>gHiXs5HYrP9ckBKe&!s43}=SPadjpG3YtF7cZ6 zimkT0iR7KB)LBZ~zcPhjBBxWCPKleAUr*WLbWmw=w%G;{{jheM9Hl%-mK6pIDaj@)!i;QKsvB zt_8RnfXRfEe-8@pSbUdx(GQI8T{~b|sa?IiI*|HGddc6W&X0>~(;Zc%pH#y}y)bY@ z=^UP&bd$lhmP`ofP!iU!Nn^J2f@nMyDAzc_(HpP_{9@Lmty)ZQ7f#tzH2$5=O?9p# z3>*MY(Tt#sL0IrG7G+n6)mBbORryD-Cyo4OJ`W`2f(SJ%Gd5!)A3WW0sCM0}y2H4YZB7D>VNA$eL;{QP_n2lbLe`L!CPAu)H$*jmyRT zy@N@zwZx=la(-OPAEm@p?j}&bj-2WA=}#a_imIK|STyG~(AHShY{aZ2R%7O*X9 zt?L7YT;g>{+W!DRW^)zycTT2eL7UU>mG;hjfe*6cEZh4i3@!Wr0L)?;V0QQwvXeY< z6|iF%T}X`Ke7>i8=C`{5L3p)xpU5?huGiuAhE}tfxpCWXEw*%X$Xc>_I$_Rk(k)?e zrv*DgTF5(As~K|C-+uB9$iYf7ZVSn)sffSG0D<=Qw{e<~)&Qcut;|+jE30W8LB~w# z*tTB18mjiurE?QcHsd%3KEAxlZWgXVIGgdzdlm5uiC|j>T9rz>Mx#%-U|Cg*I?ga% zHBR8bdVS50^)94%vqsh(=S!vNn3VN7Hc;aL)1>Op#m{V~N-CK9kI!uB;#`^jNu%{D z?L9fDsjf}6=`<%#h=ktv9FRXDyvDQjYn)qm)Tbx$) zx7DtyHoIE4O0`X-;a}9k_e(W)YI0>dexD(z>f>`~8J5^;04mvMn>vPBVIwk@WKzWt zHcZAjfGU%cLU%T{-A7OOy*yz%MZ-_H!i8pVVdExwo4;oUINvptvW!eEYl!Kpq4N^N z{{U4c{?vaL^X!uDA^gp0@M75)GWVpRp~0lP^;5sFR0mjQWvMBvEHn+X=<%Eww&C1 zSuA71?%f|uwzltKJbU72?C#kfuDs|fw-s+#Ie=_#4F3Swd7F&RJXv2RSdB@=pOzL2 zGut%np3`pmXVjs00$~Lk0Bx(Vn(M!Wu@Uo@U-gcg30Y-~8VZKZqKcR0IN}{DfyF9w z&X4R%M;V5<$z`w^s`3m^T?Ji@K zrH50mZHKfux8qM9SeM~$r?iu}+Gf@)5dIh9r~{yuc9+ny;8(6UGlW{Kv+r)h!$0|c-8M7M8nZBpFbMXeY*wC9XhyPe3bh)xI*RQQ$rcP@II%$8gm zJcX67Okx5viRk{h{{SUrwYBzi5wWKAN4>EZ_c`WT>;_hiYu)2fuGpK^wU%n!yQM*q zt<>qXm+6OAf5_ioYgy^7sM7{oS8yO*L9(nwr)_HmSOjO4wOQh>$ogSDkjZ$vJzfP`5nsojk4l-b{;Kg9e6*$PW%wZV0XiKbI$CidZF2WT7Eam6DZE5E4QrMX4jDWvQQ!lpItjoLblpfZVBC}WS^ zMDv{I*#RCKx_Fp|3c~X^J~n}qDi~Zx+VdoHHsd(8MWX~H>Foz^OsEP)eLN7{34Y<7 zp}H1wwnw!p`Ff6$y3{RtFzA?VPpCGX@HN`!*A=aFwe*y3Cu87ldMjp?>8g8wA++|5 zVn(DD!S&7GkJ4Z9-3I&js??{=Y_E{41$icoLTU!&-Lh+I7XJVot6qpjGt_t6Qz-QM zw_cldHE?z|lIpS3($!jm4zm9M$+I)j^$z#2HTawOndWj^g=~z&j$rpZ@NKv8u%q&m zO=o78a}Ci>{$k?Ohv=#dOLXIRW|ayqEWl~fMLZP^*vU@wmjd75N(mc*mT8 z8ZB8OCMr`Aup=gXy-C9!pX6><{C5%SRwOfMRIVY=bXOq1PFCCEvBo0#I0cqlj7{5k z71Pw^dL?;?xbpmoYoZLBwSv>ND${k)nDq3=8brdbbwr#h+5Be&s9q*FozOTLMb#Wc zd@nje0K;eQCnGYg$2rtnwM8nF0AtgDWpog%S4zgU=AAR$Ydy2-d54c|{-@Wl8TKN1 znfAm7nV8&6eN2PQ3-nJjE4#~ z4ae3R{Wz5C*I#L9RW)gdnriF#`JScf4867budm&u#_w14N2ZP1eMkJ3uD%n~A4y%8 zSy!&!uY}Y3<#trAbk_9-X1_+-t4W%lOKU6z5e*7z)M$D(Tb0y$gR^#@RjR!1vBst$o@`-*H9Dm$+LxC>oAhDGVR6PltN8eve8uHV9sEr@ zn@ilmHjaAD$eN+HmEB5i;vzLn1A8}|05j}3<`a(x*!!49?qC^&!n5xa%VuX0#Pc_E z7<9p7b?svix?EQLQk^hyYPOp!x+QA+VV-8!M05LTOO=3J6QuK9Zim(aMuj4L`rK~-B&n?Uc z_lOWnHWP*EPM_Nv@hhY9B|39Y%phMIv%s@TEp6=gZcpRWvAA>UPJRRO6tp*+JbGx| z$kbVd<4T23wz%c7EvUHNJ6XBC%|moHF3@I{!)uaVxWUdjiHh?td<;tJ*meW3F444* z7J8PowFE5Ep~r29qS$jeHOsVVg9C_<+}YUzNcy4`FUNs0bhsI*v! z8`3P(g%PQ1s|__;W2AnY`e3@zv9-FD^x}qTpYrcrK=lr)juy>Yr{t5YWmW0vwQpub zVw%u#Z5BFq;sH~x-unN?diX9ExpCG-oIl?_J?W~m>BuJ&AG@~qsotpw>? zHL0?ymwj!_&V1?V6t2N8%g0ES$$hoPv75$&O}z5jI`qrhshN&&bM{UB zHL}y9%hj6-^OtLm#>SsS3*|asE(Mi?a-q*K`(|PZ{{WN6wqW8P>JQu_+dE9(;w)e# zKraw1)*Ok{Un0_O8Jc8bcTIMWtm|abkOtYDiGQcpW@UOUv^{c~O{}%SUfhLJE0#a| zH>hjb3iQS5m6Fyewzo}1zK}}2dW{B#jW!*%)LW~m(QDEjyQiQkCCn$KoS}n>snHwA zb@dHCq5lBw^xaQVpsxC4ZfE&N`1QKWDzd7yr%JRD>Yk9gnl@JUHk{(32q$UpGg+Yg zhDNTXZ5RtQy0z4e(_gIIcFvmZ{$EYh0(Q+twe>DE)cS>VQrnY87f9(`d$5GY^-J{* z(W|+YROmq3HtB*om6f2ZV!MN0Fb0~vI6Li8U{JbO00dJH>Uf!jK$ccK$4p`hh?;w? zt$Jv>V6&6v`g*6DYPO<7Da6V9o@a^mH)dyS$J}chW<@EmV6O%`5t-`C)fhC{w!NV< zfF+Dig#I+}+aZPPe~cbT}3 zX05uRNPRIlmN!ahbwa+@+xoFqgSu(8OMPP5=6aT~bSZ48=^a~p}M z)2_CxJ${R)D0&uaEYW}cifpe^q1UC;#J4+6)ppaY^Tg9>mra;B=4TUK>BCUlg1Y`F za-N-0Y^&35(grSP7eB0eh1MKVr+ez}Td%dBXwvDgqk;Kmp}1Aoy+wyl>00XW$yZ-) zH9wnWs|)p8icQyBN)j)aDQ9bHvyBis?9%ty=y~Y>ayV+2xML;)=_zW|L3;(%Q+C z62OKiwoe>FnU+*5TuV`#2`tpAgNwDCZCyp8iUN&Fj#c!vn$r@Z(+j9_lH7rW($$)ar{QB>c;I& zLDys0s_n4~n{DWumfF}OC#CNbNvACNmTLb16fXKS+iiP2w8_#Kn3noC$Pf&HWlHER~bps>JB%d1V1vXQ&Q?A>&7g6YSSNzryc9)v8i0;Q4 zk}7ZI>Yq?NY+5_6x}&M)4?(NaQ>yw06ee3wZ{733-fklq}&!cVQ2SZj&v1_p=i%N9Gqs`%lVLL`kYDO|UZst=^L(k)< znC*$F)h%LIL*LA%kwC|?cE)TBlj;@hEH2eqtzyMJIFW+1ZIo%coWoj=HP??c4Uv~Q zi&oEqj+|h`an$22sjy?0b^NAMQp=0kXe(ALPOI6R(N{+T8v?FnWZGupM+L=8I(sW@ zS9eaLO&J}`+4}^Di=HB`OdrwaVk#JTn1E;4%zyD7#c|>eJ+%X78ae`IuRsas@z%a& zZOm-*kfB!-OsG6FbuqDzGQ+WUfR<9nW`V0>DjQOU>Oo;6d#%fFVQmt-cT=g+)OSr! zr=!gtnF9X+AE@d0P`;Rr(;>&VkAL!Q*g!g$dTl2zdU|!%X!Qn$0ZxvqG}?ulO?7pi zoK05qwp(3QvJ>A=1=F;di{D!%~cQb47W@V zU9WjaJ#wQi{{SSXPH@lbNm$;?>$+y8p#ba4^vAG)U9RVtdsIK5EuH8n%wXRc> zwB1^mp*RNR=`QBdhbTIxzoIK#MMYm{WvFG}S^?Uhle8B)r~IbNQ>QmKZCW)*bjl9s znsN5yYKU}Tn3_?JJ|h7W0uht#sIy=!DsaOmU8)E=a*aPjY*Dv36z8;8ru{n?d@Y~L zh@iW$7CP!uACVjJybu*7_^FF3! zbp$yC5_0#_H+I+pWW$DwN=m6*W?5dtiNB@hyTDj47Cz&swz0%(Jasj9HPtUp`d_9P zY3-`xvb|TOYBQPX`b#}7-R|C_sr5d}G`@xb4SwHj{`UJ-c(|~R2NPL+msk?5ewM6_ zx~FuoJ6Y;fY}oCoR&K3J>NSnca+?)Vatf}VypkhWqq4V6i`=Md0L{1<8l?<& z#{7*z>4nxNq+?G-3q-i&il!qEZy3RWu{8;4KgU&y07#$N?wtLo{Wmak;~1RGOwSRQ zVZfY;{d<@{vs&0@vaDil+B??1u*7vK%&w-eWNIm25q&vZ#g%k+iDHXp{fm~XPFxwN zqw_0TD1+uZCCKT@CQ7D$md6=Z8mBir>eHSK&frj zrhsI%jO*P5!G!t&PULP)--~cku6ZAxg@FTsf@%INIGxC`Q7n){SIsuVR^H z0`N1Z)D*jL{MN0?Cf~|!*67e~YOTLJ)+eSj@y03w|sC#X8Z#oa;8_hH;X2=XCc!Rvn#t2R! z0piuq9Q~f-h(vGfe?|aDBOq-MsXzQY&xx6tgw97JGVO6giCv9g<*efo8?FS&9}}Y` zw@WEf^8L-rh1^I6y{9Y#CxJo9GUNE98Tr&|RIQX~sM2@V4CYwFJ0<$P>)B?bQC{u- zkLxSjreVz1S<%%j)oLsk^V*(X=k&MCYb!r0bocs;nv+TCTJpoIs`R~wXTL*`K}TosSv+pXN}Y2mdv4jd2dF7f1Pq>V?@-+PC5F3Lv>H9Y8L_M2SjBTR?m9ynjYBH&T?W?#y_*KuY%HV= zK`n(0Ot(?^>wuK>>cpqDKwH^}hm)9p3&X2#307JixeziQ;41Q%_FJmf8mk**b3c2Wd_gy2*@w$kVX!=oWm0 za7QAme<1fOVti)1Of@MEouA~$LCmZrnZjv?LdUIq&0Q6s641e16R0-v7&Y~(z@?jT zTJ3ZEx_VW97PD5er)4~KnQ~(4gM63y4*6d8?F2C9E=b)6TP6nXF^AMO1zfe4(dm4x zTGUho^>n}p{-~OKtv2hCiInOYR~1?4n%`7zNBE_*)(xJk{xzZW_1kj)0EAg(V#>$- zhoNn)v|r@6vFA_gHCywmP?mC=hq2;(eU-mc#QTHWhMdM(jQbxT3}b`laUF$2b83B3 zy-rjM$+M`{YU@?%O*Lmy#f#$`R`<(Jsy0=x)g>L0s@d{c7*-04ci5qUMQ+(e2DRM% zJc1ji)KdrvE^gT6ddszrd!e%<4zIg0S8g*<=QGR@oWlaZk{GMi!ry`C(PTA9$^0UT5+gc8%II&3;wRN5nnisXq4I8&i;^=6uxJt z#B~4`TI*I2exUQXHg@r=(|Bce$1S^4yRz=39!rDfhH;!45t%e3SD z$EEGd&-lPGpG~PKTo1)vC5#w)W}INd>6EW@rK{6-i#2p37cHr8QX6XNRq0KLzNu4u zwA!S*Jw0!xY5ha~+y4N@^!0z&XQb;i2XcOGw09jBtPAnD9n=2+XP8?v&#`Y~F^Py^ z5i|b62z#cm?i&c82#SA9)2l48Lgd?M84Q1i!`dv)`)XQw9Uh_X4wn21^%I>& zf}%r4^r2AgL=`Ux9c|t&DM$(z2RjfH;kIlz1=v2&_7Ipg+hERgM7iB)wQG(waM{t#T zZGVrrMTtoTjB6I3Hu`wf^#wgHn~Lo8+rJ;Rg`0+Aob&CEW9%kW)YW2fTFJ(Qzzkm9 z*=6Gd#;t+eO$1eh=)YBhXzkr$sMTKnC2#s8afxOnc17-)+9og|If^;VCJ)r{>~ri6 zA`UPdXU0ZjHaU*K;%y1QOLzG;6f*{SncMC;5lqMF<+YG|b{rX9IWpY}*@?KJ?sm_W z%8Zo?X5(C|Sj#G~Tp~EYBI_1~EZ1v#zsFXHgP{Hy>(g+fbAi+ROG|Eb(DaT6;hMqPGz1RO>C0*r7Ub)KQ^*EET}gOD-3XrLe_f{(8TUkw^g?zO!Y5iS|PLvXJF!*yE)ZejsQER z>0tvI>u*4^nwf3O8dB5EHW2~fPm4vXEgjY=#2oVs_|3ml%n+RMF){7tD9jlHoPM9X zgT3lJ@U7a)B3ZQTJGRDHPqt6j{%+koOmCQiy}uKFK2@-98jY>X*+6rJw@hpKs~?mu zADOhAk`$5MZm#rwhzg64%EO zx{NagZC{?EgU?V##v*k099E?{9&lxB!hT;&$M0N%oAbA!x4K-tZXhLgZ?$@_bJlm(qntEm>GEvWs}3r)Yf~!^+q*}3M>$)vaRHeVQ+nxB zb5&##q;&`1*gEO9ev52F5 z$%pzFna8#SQ2-ue8BxjG9-XEOHwnLR%qM@!qm$c#iH!SWGsFil-;te$Tc_%Lf|NK{VkKk)xgA>WPe1{iPNtf+=kt^<@-J%q9YZ8% z>JVGEh;Yjt1D<#uQhY}&u4hjq;2{EVpkVXyu^E8}2CqFm(|1hb3DLmYHQH^t15Ky5 z19r@R)w5}fq#jzr+1kH})5FC;o)xTkEB$oMMsyiG)pAt4TdKC+PcQRZ61)X!ch#Av zwbX4^;f;evb}tR5>kj)Xs*{GJVeLx2H29W!UuoN-ODY}Or+vXt`Hw<5eqHKk zr`&H*y3MGhwf3DuZK-t2Z)mcepv0`VY_^nLg@MW8t8hVqxaGS9t(Ef^_=GlPa~b9V z@C5ktH6XUvn#*=JPLjs7Zfff8<#^^;R>kF*WHhrQ!nW=LjG2+2Wgk%I@5g|CkK8jj zh7atyQ3D6@{XaSP*m3olBX|!rm^O~CgLh9mmLy|tI@Yr9MQMOVT=M-uG z0D7w{90FL3Le6HP*|WB~pTHF&jvs-TYYcLCvhgb)Y>Trp^38!4h|pE^8L-#^dY*ME zTy}bvpYjQ;S6;!0gQvu1&Sw08PL&?R)O*~w#<$zV&S8t)7;S+H_y8G$0fq_Z%-x84 zr^W#L2JnPqxtBKd25PaWAZy z_`>DExO8^{g`YdtvPRke03WeQt-U{|I=iOg1|xP%gWy~H zd%_+-T;+RS1QVuh@m+Rj0kn>zn?WBpC26ln3dPoFlf4gk)P9lCH9N-HQAcly$?+7L?q>5C5VBF`PfefZ|!X! zC2Nivv?@$z6`tj_>|jBCzaVp&_b=27+k>^>s4H;2+zW8n1GA18FWjAX^iax=~* z{tg#Y-ICbz8h_^O`!DKZ5s060pyn_W^wP@rd^HKUW!ViA@`c`bJdiTn+r@l7p0L7O zP)uU5*qF;?o;+BmJ=W@lT$Q|Az_$krD{h`+>X7-XbGF&kRrvK^{hr5Pk9byrRi%4s zCmNON2}O1=?$6`@02t^Sy!2Y7$t})T=fpa5Yhf2lm0(v!`ws0j9z^_GRB%IAo!VdF z41B@G05+%s&*1>Y?#4(N0u|hG8#t7%24Db9Dc)yHh(_ZV%*K3q^U0Y4XE3bu zJWbh|_Q$u6XBhg3N2ii7}&&$urn8Qd@8Qq+A%6}_n1`@~LVBFcffHal#iJPH{B9O!r@rU}{PYt&dZtwmW$F^o6=h$&G zANw_{_#I^0T=iTqDZMd+%+Ila`-Ys%P1y6}!v#~7p)e+*lTY#` zHg(W6x`5orskG;GT~67iCP#Ds=Fhk1nfXfnG>pNc{T&;;Iyc8^=!SB@4-uPhB-l^H z_`tN|!|*pmEpG{KpQB#Uu=q4oQc+sjoZRE+409{5rgGKS{?hLL*l@l!;}LOT0$JK1 z5xX32KxJvRZ_E=gnf=c^PT|DdGdB!EyI>iana@7M%+7tb`)6mpRjp@ue*R^YcV+3e zj{q=uzyY>ClDiD7Y#faFgVsIAuT803Sf z)9&t0t5l>#^+3Ezb@eCBwQJ;GuIaBEtzq2Xz;ZPwsoYgcsad2>-OZ%AJw){ze$FOr zq#60^jFvzNS+MQMOrIaet6l)v%&e*AR&KkJz?=ruWpQE~0XaB(SDKRFkkM(@;l5bg zdseluOZ5p}ShKVFRbbc^{-tTpG_X;Dra*p9j>8LWAmb^wPQ6KXs9Ja@_4!Su?iPBF zQzBLNAmf?VFDgZ|wU(qG8ms>R^iV&XZHMk%eRaH3oM(34V<%L^vj+_K1zo`x0OsvC zBB+yvUqWd8vA>wt%(n_{B*Yb@nubp<5D+ub&=h<=O|o-m2_486@`5~{jn z7ElgwHj^=kc$t9y{J{X<#Aew9-S!Fnxn(mOz0W`VG4wMt1nYNT+gDU(YK9IO82FVZ z+zBqzvwV8zIE}2>d-p4RfA}vEVvU)A28M-Wky>wFGdXw99daM`9Kw>ikj+*3xm6s>fdGQAU2k?Gd`8F}5k)VAd}U?xqCjfEd>TVxFw@WPPKO;}oIU=y85EGNu!sOPEZgTgkkR$hTF2!SX4px@1SzZ-Z zV`G+^`m7^Hw_{4IEizrDfE+~6-ATVWXAurYFZiv$*9h#T|?c)i9jJy;*AyjT^G%`%-YjZUpuWzHElowbftu-i=9 z-Xa97?v(*`n0wCQ+=PrNsqxI}Yyd6RY$tD2s_vBPI(8b(dz6-odD)lVj>9cgM2WZv zwq>w29Xo~}X&Br1+gKU99FoEm-7Z?#w$`woA=NsKlcv_0WnZ?;>TNQy)c*jnm!trW zhT@GX(JG0IORU24O=pujAWK}YjZw1BX5S{ttVA>NI^0b?*iaXC{#S1>fi{*Lg$6L^ zmwuky7vGq5E1XJ*EjEPW57c40YO3D6k^F;kpgV4e2sxYbGZdY~Ei|&JF_&%_?AyUD z#|y`5)|m5Unc_R_SxtHJyhbhL47%`VkNz3VCox#5#ISD>ScpHOI;MFUgSI)CnG+t_ z&%cjrGFJdvXgwv=s%lem^$!43dfhG|$2xD}?F5h~gNP1d@jhPstX|$`OBvk)Z8#P- z9xkP{`4a0$Ag-TT`JIh>?O|Be+QOrfqY|=NgUv3Ok{N|N+l!HDV>Wei!|~P6O*GWA zaV@A;IK7ZIA~3CX!%3-k4KAmp%%anb%j>bYOAU)(^4(Q~6HJec!(!KvZqLB z6R9esQRUuhAGd7BXcHXc{{V>Qd6~o2e!$jH_MJP+2bO46U7}C8Ey*#wF>;A6b>5 zpdHJu((7`wCXNNyF&sM`J!+ukk7+$t0c>MRkzH1b86M3woBN~x0QI}2wUvAnt8)_N z%`O&JIpq0SC|ySx4EK1NuKl^ST<|(%c++V`&9tVGbiLMFe^WRvKKS`Cbt7teewYK8 zm2KuLF*~2*HWwUL58kI;_{+r>TdQ5OMd|2qm8oLXiQ_nrs}-2~x8P0uOZ6y+1l;y; zwV=7kHP$rotx!N^?&OhyANun`xs&$ z{vIYL^*^bc`&*_KOKY!8qp7CdyAxAKcL*Bh%yrnAN|dN1*O8ShyP>74IUQGCS(I3E zi)&ZQeps&%Y7piFxN)e{?hw*Y9Q2N(aCQWop<3~P@Y2Arp7NFUNI}tB1;^p*q62rB|e$?Rf%qgvTkGLblqHa z9m+3iq0G)kAcu)-1P3EdEj>eBZ1RueFS^Wwskxvn@UrbJi&#Fj}xjfk#%jT?op@O6c*C69Lf(EmK=~xt&FJ7>EdE|hq5>F z9zOPp>)AZZX+syIiAACSP^)-t7g1F@+I;GtoO1@)*r}A|j2)2eCsopZ7 zbMNK>pKmbxayXWeS=}sr<27o=aVlhW%4Rw{07b>VF1nFpZ6`;!Jv_C1%Jl(X5xRP{ zmMC8}f<#pna0ScpVlWAZLW);?)SVIjG`_&i)-{I!*Ih0v$foNr`4lwga0^k&*<(7# zr?YIJ?A#4okbfbo@;Hu592{WeG)r^g?+T#G^_AJ%8&-_CMh+t=byR1pS>mJ?j&0M| zS10d^QLJ9usv2HhG^ezxP)8+em;-^hOy|LCKE+!jduI@?c$;?fHJY`^SamGeL0*lH zOIJeM$rh@NtLjx;qb8+$qiYzEw^3=%U0j?pkKM;&3wTzh(>+B6Kp;sCh#*&t&*>{Z2N%i=4y1HV5r@k_yrnH8&T2Mb3YB2xsHam3>jz-wI!N<9$h?EwQAUhk7A5EfR<>*twW`=(B%fNFMWxLb8$n~g>$?eU%z*D2i!1{# zsbXV?+H+Qwyt30nHf36+2ME>J*o$3?z3F(hu)NH12*hK@Zcgq#3R$VropW_8`OCpA zv@#lTU3MUBRF+%NZkkm=P1ab07!w(vA8lgqafNiK8KDKT(&~+^G_@2R*q;G5%;q1s z4|KbX%K1i)Fk^^0i{fieZOqRy!HmlO<8a&+8%dY;zZxewml>jBR%v-`OCoTKK7`I; z@f+e|%|sp}@F)7l@+P`ea1_lU?lV>K1}BMd#$b=gGNH7PEn~b-082+EAl`6X_ZdQt zt&)a3&#b`YEcN#wi9?->G;DgIVklc59&4W*pf}XF17eh&x1~0Anw)s|RnS{{SJc zcZX3JVWWLSJ+stK79xyGzG62E2guD>?h>w1WB&lxe9)etthcD1(FX=&iRGjHO-adV zZ~p-EO(Dt&L}7ymC}x}H(#{rX`Q1PN!~jDP009C61qBBK1OWpB0|WyB0RRyKAu&Nw zVR7&f5`mGSAR;oc!O`IZF!4Y_Qetuwf|4Vm!m`rhGec1F1T<6A|Jncu0RjODKLYHO ze&tqDl!vdHr`e}$Dr^!%>{qdV-^XA}G#8>OzjPtluEVz8!B#42NcOJVUek6h*-y~X zU-~m$qx6*R*Rw=E^{6dzN3%b&J0jHIbK~qw?pwCr!TWxH{sy0*8!6dj2X6g^Q&ZS# ztX0|7eo#RUs{Ytj><_kn@%viQRr~eq*Yv~fSFwJ>O=#_#_7B+%HeRvVdsb|&)7d*L z+CI?zc>6W&AHF{Q+fQum9g8-U5SQp|TF_e1?dwDB-P^C~59%wnor?XTw0<^%<#{96 zp3tb<1h%?|w)-#JU$T1^_G#PJhuw!zpRXcb<-?bmL4%d<||m*|gXyANdj+I_M5^RTZMZJlcMU9GoT8#ST! zM%s1{{{VrzZ9d`JKSB^%&+c8e{?)qB*~shit9q@g@!9hG4f^2wSu$_aowfTi+kaqw zqMIw(pzZG=_9ynw*{^8r9hxfkAN7aqpSds65Xy>MYJ9e`Zrg1iXI}}Eb~Sd!{Sf^- z*X`5oH|U4hyJeaRzPK(bnW0T&TPv?5RQqFNY^Um}ww=0dmfOEl{kndsvw{7u1MfqjH5DJ0A z^Y_UBHL0jZ>n`)EYR=1c8}2vg#Z~_RexG`~0oYpoj)!9HgRw8MB}6t}s;<~R@O-Pm zQ_Bx^3i_SPeTV+yp(Yy}<_XwPqfLEc2!x|@%BgPLaxjE z6#WZ{AttEvykwmDq4%G(>C>nEE9@!L?LCTiO`V@4SC-N?*JiTVWwDm8**=OLfnE1) z?HfBM?PQ?_FYMrR7WN?pLq1Dh>KSZ3fc6YZ@fw|%p|O=h7C**lZo_%<-M=|@HLKGm z``XakavOZtn)6<3pV_JiP}sb}$v#@Db!yhHPMtb*ZREAbWA+ZmN3u`euG_ZX_O9)8 z!(;jEJkZFL#SMNo`Rvv^MioVCH9xTXN-Dc9?b-S+n_FyB7HX^A3Gzo_ z^w?2V*Z~>!Mt3Tz?J7YXfWHLk_2`dz{{Z90)LVPZV@5`L)>|L#9>d8|?DW}P6*T>U z*t_$y$x(SK!+xw%4@~`)756VCO_fKnPQxpH-%io9ZQZIj+8w%fGPydb*+f*pQkPE3(!g0r8ryqq9etR|UgRgE+W6=KT_NElJ zQ*2#|c1pP$Hd?Oi-S%s-`ypPl>}Rk|OKlzR=h$khS7}CSh!ov}$#Ya)5V4R%g<>O8 z<+ZzXOyxuuUY_Zd*Cs?JO+?5KZH=##73r?`L~4p4>t8C(d8$`u?w`Bo@TfKTR_HF0 zKt8=xq18RthpP5XT6^H8ZP$`+-10y_6vvvLu0!k&(eRez>WbCs!LqwYe_(>%X`MvRZa+PXRd%|4luxonKCj3l z6rQuTqaiHHdU?yzSEqQH@28lB68NF3IdVp0W!p(l$v(|p?w?+0qFoZY^y6xLQ7GCt z+&%6>n)6!xD!&!tJ3W~@S^c&0r)L|603)n*l8dIwrfqWDPd|))^*a#n{bC$IF8)!P zK?Wvf%7UZcjlbCl{y$FE#LVECyA|0*cW$b^iEX)b*#3KM+j`A!LdSta2Uqq>6dPxf z8v;8&boK>)n`7+Px~|Jrqn0+&1H!5piOI9#F14;q*i7-TVS0=TI=bIH5tX-@bh8vK z)?P?Rk<;hGe`%WWPF|+(H%zU+W%BKCL!G5e^j>SvTB4lqQ#q%7O*?w0R^&9xtdKaw zpUrC}AfH#{hH-l$M!Lm`q9sv1Q`T!Zs(KBVtG0^vDYII=S+MN3S2@jnSeO>y z{{Za>u7U!`>U}}{f!&9ZA@{sw&M43JIs(D6{{XQ>HjSKrLuSrlOoBtxWW((7i_<^Y zt#(*@OiyOJJ$S1xLJ_;e%|ptZ?Ni7%dgnElBpgsk*Ta#j2{kg1iVTH9PpB-L$#uL;xDI z)lEC}3DfJ{T%A78&dq*Qiab#-tpq)Wx~aO;`UNrt*L&Wf0fR6Ce6Y1wN1iJD7WB@C zutFdmtmHZ(=gR=HTK3rQ?5xAgqY7qzcDE{&`?)67fooisUsX+cuPtP}wqLQk744dq zghM!^i}=DVJqJVwc9VEMpZ@^#`nSd5hR2c+{{W{C?y2E$7*$(6hxByWU$*;gma<;m zwgU2H+PM`-wm!njud{~V2&$A7h+lL$T2(9!*RU6R2h~3)1zj>LfbvAA=eFEXTDx4- z=k3jF^7|VE9dJQ4e36yZQbWqPwqZ7yjk{0Mj0^5rRMJMg50%9H5}${1wBrD?U3y9g{s! zc_XA_bt%DYEkZ4dQL^aJ@vbUk9AM8y$)PxnQBtOzuz zXdganS1Z%tpRuoPo*kDiKW9T>`}8tjw6*;E0na5nhwUEf&2ZUwYRfT-lb%Q&(gD13y-TBf;HBQ;sj2M+uwG|vdmL=k&~1CG0d}rEO0IA4 zq32cRo9AV7>{R2jk6x^$J`=jq+!i{+&3WoiH%s)zbF(I?UMIcIk7oY>v1-$74)D1-D&y^OUKc@# zw%=|wLH5sWdu_(w!j1Vo^Jd|KuP@4oaO8MBs&bT(f1CXWVyfiQiL#ZR>SD}SEqSdR zGfeGiZfcer?`x5p5$*+(zNpXF+T`2A9_bm^<$h0>9%>`qw2jxsmBmT&>2MO5sC%te{mz^PwCDcig>cu9R9sL;#guch@N zhlii-%Bml!2tU{5L|^<_L?4R!fU;-v^hHFNwrD3A_N%u?^o_j_lc7~-YQx#}1ZdQVlq*KjZJf1i}k1+Ga~)qCCp~0P05|qHWHm(p`OcfWdu!nyUJc&bX+c z~4b6Vpc3)+^tfZ+BQhy6foEr5DJh9_u zN!FQ6psKq4i#t9MZM+AZ-8Vi}Q@2d0IPGT7RJ~t*%D7{_z&K_tGl^>!_ZuGDxf}v* zUatHhe;bKVu~pM8T*-rIe6MD^%Zi!R0;a2fvK2N{WY9xp-gX7b^X-j^{WWrR?XtS{ zTGe)1j>;zxzaCZKzvJ(Z^|IAY$L-i<^r7qd@=x2RU@G?SL+sPBNPPQ!6|8pCv1Zbw z6Kf5YOduL4bj3~@;u{N(ng$ulb^IV4QB@37=jW8rt4#qAi-8&5F1Oa5nKsR3*ts*9 ztpOJfg0_owdn!MkK8chQc`;%Ste+$q>39}l)fX+Gs@pYps_4Auf-DhtLR!-*D^{_? z&3j~mp22Ae5_*wQT*so-5 zzwcYyZpAw{ESFpt8LCwWobdNpui9j)12z8KY7m&7Ui&U-D4o?we~gqPd{F#ai=9(r zY^Kvb#Wq*Z(KjzLo|Y+jt#VN`wnZ$JbbHM?UYahWnY#L`mA+Uvl~naWrzL*4CM59c zqIWWi;rp0=<4_87&B)5nHP>Aer*NNXen=^uXsf>{^w%ApT$h%)s%u!QS%XMsqLBQ* z#mX#vA*YMo%|b`^tKbBN?kZ5Ux8*`sxgoDb zUL0zmcOVFXXCJ>e62Y-W+x@n4lhtbgySJL)--$fXF7bO(g95xp8Qw7CX+@y}yw(2z z0gKB9QlQ8S2AEYe-!}B%smsgNRsR4ki;L3^Dfe^N6yq{A$!c2!(39+NHcCQq9_c^0 zhMNN^*CbIj(_0{>s@PPit&tTvbAyiW4c8)Rm>Leo~ey zX9ubqLaxf8*)rH{N7Z?2mdYSU1RsI{%{}-kY%c}h`&yk*{{ScM&Xs=giqnD{)n+o4 zzJr>CzA~;pcc+T#0D0U%>oe`91;O}{9Igw3SbYoFMCv_*G-7$M4v)pY(%$n;cP${WWEg}l9{r1zb2Q3zwP zfG=+GzyajNRuF34+7BY6 zTR8w)eNmiEF(=Mfsg_1VnEKq*Z=GQeQ_^u{` zN>mx}M2&0RH5lb;WitN&w^k+?b#x1R^SuRyyOvErC6Mu+_Xefh{>jq*Szeo9<+7+-wAZj^suL)CwHe)qs-#e|hRptWp)J41UeaGyDNU}p2APK8VjO4d zLWk6dJ#A1HOr(piCE@eWJCxfAa!~*SS?D=C@J(HCK^b3iigTS`h2;m*>PX7A zUFNrKt@ZpUWqqxVq^qFE2CDBwCS)Yk-URq>ye|oxW@w#`o8e!gy_x1s*{g7t9#l80 zTP+SsF)Ix8eiWj}hWSTWqdpa1Jug*Q)d4Hmjv&+p^}p0LFu#W56G|WX6N2#NHrF)} zE?&tIUeSAT%Qjc-Q3-0R&3U6V{E?F_aoJowQJytaYu2&tLi4n+ z;?rbjU22H^`m0Lmu=Y&buvl4H;4e5U6oRh68jHPOg$j%FcE`qC6hOH1^+sgY-G-o` zZk3pwj>64YgPO{m)I)*wTJ%tR@(N|NP8Kz&xzpDEC{r$Id+W&#?4JDa^G`Xxt+Gn% zY4YQewyr&LuLec4qp+7dQF}L9*0#EtUKh>Usu^{#TTZTon#g!c;dxOTg$Os2)65x%>ngCS!%nr|FuB?VB;pLPR^Ra3c5psBdHhhp9s=Ij_&o z6~FBs9&#DUcVTjGnY@*{1@BYFZgOYYHd8tfal~9 z&o0PC`xH$?b~TE!L?&bfKMG4+kW88OUG|9kOxf)4>~&3pR%E&rDYjnuDq+pxWS94XHQ z^&qk%2=Qj*QLb}>5pSG){S;NEVvokEWA_{0PYg8z;}vSbOwv~SBEwYoGfv$U+U#%j zQ0|jBVHJt`wlcnmLo-Kn%w1E3Q#ic4YZUFlO7BOzC9KrVk1h5&5A36YAU9{>Cie%G#Xj&dvQ-BW_+BmU^;qK#fw;LxpOwfK z=(icNoT3$~i+pWCzaI>t`8{5;s3q92T z0CDs@9!`v+pcOX>e&02bZ%S_Fj61?Y8O0uF_QEk7ka%J=tK!B|zQlW@#r$}ibjlz; zh7I0}`5I(8s%_T|v{kWE-0;eZzh}u3%M|>PQgkJ3uL-`( zle|tI@6)#L!l>PD7A)4zUc6`r%p(=^!^_y-k}?&%5iV&3p3=8b>uRkQFok4 zrq%&*AlAW(hN0^HYFnz7HtWe-trZArG3rkXcq@xF?%*|{XLkWRX4t5|>6=C3aL!iN z^;=7cU?pwSPIrJ}TgsvNA_GdVi)NuSAGP8*%FO8KMF<9@yGyA#I4U6WugmgI*Tv$G z6J#)9`B2K1bQWTupPpunoRd=8l9VwKy(wommwwrpY(jW4){{XagRo069 zDi5*dt{VjvSB9Gj*-pF_%LM$Fgc@FRMAZe44mPTqYty?Tpok)K> zQ@p%P{{ZnG8^U(O&HWP*L#tEP_CE-LItrZ0cR`Gp;j57d^jh~-ywya+UYh1|G;Y0P zn&!B%uN?&!dqo&X&iR+#^07l+zvBLBnEu-Hh;x+`Rj?M<6;0h}t>^Mv(yp$>KK8A* zjK%5B^oSDR_Ax_y5MPAaB6Jq$Yu&Kkh!S#zjPOt&^-M(A-tYeaY9+0IB5<`#R2wsD z@G~_)%-M@Q80cDD=(-{HQ>u3|bn+iZSmJ_L*b6Vm_!#2c8F6 zC{LFrv#DF4a?e#jHH#U0Cf(|yV2sV)sfD3trI=vq+!lnBO2AeS6{{R%g&#D=k z(!ecyQD(;q$iZLW*D-kR7@`VdNPHhYHL?0oPhYXxp1Y=P6(sC;6E^hU{{ZC~;0kvx zL-~(Lgsj*lUMeR%rFGjwmmPK%ea7E&7 znCa1GH?odiU+%ozp)nm+)05?J-7yCp${ZO)0 z1Bx@qC|KI_e{6!Ex@Ku##=ttLc(l-`otiR6H<`dc{zVvo9NF!;Z#DtAB3_pQKei8L zyIl`NsL=RIVFo^_JyEcfjafnFwdqvTAq$|+=Dc+d%{kz@Y=#q;=E(M5G38DW}) zyEk?&?gnAW7YKkh-h}@Ek%|-48!$#FNBFsj`U~$+H`5JSxxBgM4}>C1i%2KPFt}`Q zC7Ps^L9$l;K!+q)@=)$Y{Gr#e#Rz97gdXVr(L^6N@lZVxGN1aL;q<@~h8SegHUo_p z(~oxc>$~C^oZXaS0Ai_}SFj#&SyBrne#U{ zsp5#fbDkFSmBAMV_?`a%y#3{wAF}+_l z_fZ1ZOIe|e%Wq~)hncZ?>xzQ3b2z7erOK<%-ETewakGWyiAA0neXCFYtNtgo6QfYk3% zOIpD^sK7(!h>9VJVs74-qHWPX>gKtTW5`_WL6ySL%{;HI`v5T73WffdG=>mK&7PJ8 z_*7*wC^hJz6}`2Z9BZ`2A-{JFdM~7V)`3^EcG=>-iDszXh@60>$`UX~yacoP2nQTQ z@k5ujc+pDo`fUXFy}HdyywfU(iTPuX=*G?~TD@iVD7Rho>PL!%bMinlfPfh$eR(6* z7f?%?Urd;=^K}dHK8@^!FPmM#9F6Ffx>Csvd@3W}zM3iC{{YI@1s?%wZ})s!qk*{m z%{^|K-u21U@VnJS=HQ3FvXY-w?XsH!8$jD~=IWS&{{V%ouHvb#B~uy2(n)~EeDX~1 zK&`@<3$fS(A>ID26v=Lwp0ic5V77Y7^;3gm%gudEIQ3ly)8xm0K{)s$dqL5XD9P&@KpBf z1P77ij>10qn<(6ChpFt9y_i(L6doFWDDI6V-XZbz5HjFdOzp_$1; z-NIayFU9rfo|Gu(e-D)yU}fC~BmPd?uXHp*7dFgvy$PZ1wnr)OWqw@`nuafaH3}Fh zSD(gcTYs_*JIi$MCKZs!Fo4!obuJ9PHuFq&ga{b2WD1ab6eaJcRr0myx~cM4=xhUq zo@y&zkHg*6Rg?qQld$G{FygnTcBBF%wE_0gP|V%rp<$fmE`=R=RR-(kp={^Y*5rwZ zT50g=UV8Ie%!k0m1{2h@$V*SRsw>2!hE!?w_L9G*SoBdEP3rFM_IeGbx2kP2!Ao}W zUI^iaD@>!DHBg9Q#@m@4WU8R0x{~IJhAa?<{{WDO1pS`x4U|KYZYv~vbLsKT3S+Q* ze5z~{@>g`?h$6!-OuB6hA0@iaaXzmXbU_BiQsYy_5H5S}{G;v0v&jQo_`b1Fze7Aw3Jr%bmEm+t<26+^4|^IY zobnt!_8F;_5j}Y#{)!;|Rc^gL`H|fIF6>Dh;yDG~d}dbZi*<$Lc*uFt1w~DxWi_cH zLE^&f&WegG-j;KkkEHc#Y0v;%-zJt9r`{ZRkeS;wW^eSl216Z#uwRABca7o!xR#ue zbAcdxoTQIEljxncjhCr1h_I1q5^dl=jkP6B$$fe#UKnY9f;RYp)bZeqPi)=nQ?Lnu zPA%62A%=!ex&GIiW`pr=TL;)GVwWj!Mayg@U)uIT?zsCNDz!T3fqLcnM6P!2<5ud7 z*&g-?zf{>4LV2icIF!RXG67cwXBqnKDUrLWuOH(vviXG8zFGr#$cZVW9Xt&6` z2c;7>GEB(R4_`$T&Y71kuViYOywy=S&T29+ z)~-w&&)HW}LBn)Gy#fp@yxl7}qWm@1iqAVUMp}|QG4)k;Z$tow7;%}o{3|Dr;ik=1 zgZF$Lw^9!zY|OIUr53%5SWfn zF#*gXf87Xd(S8gOlUuKp%KS%~I`>8V)dl*RwHHMhnM(@o9pGdqOkF}w34>IRa*LxY zm32i9z3@<&`-SW!d(77!(#I9RPmSyf9v7b*@jTGefmi@bkreg>ap?z5fiHI%z& zyVdhW-YaKY1__&;F+-Xgr-qB6Ca=OYzM|*UludO5{Q4;=&tNDV?M}W_A*-y)ZI_fu z_uF*aD?+kg0Rb$~d`JHPD^VcgG!a_K3+&l`!cg9c?SDk-yC}N*tCPDbE@(?>t(Emw zYDs_;ZF5&V-KCO#VoCBAo6u&LbQ3c{=c3nPH)9mtO{1n&1rod>eZ1xrWy5g-+IKdVM zgYmGMKcbiu6oz=7j-h#P7IMbcy$);17K$<;Us2(PMpA$4M#Lb9IU&s#9DPu94-0WN zsG)^`0(1PM-m>{lSegQ$VH9Ff7ykhEKB{K#K}NtKJMP2W*2M-Sn(-RBANqex2~xhk zNU#DPzTr=3muM+H+V*uFtOUR_djTd9U#MT04xwmSp&WciKO`-^7j9@RYUIzB#&unp zDlG+e!Lhw|bXIdmE5X4vDmEIX;F-q-%6liUw#H@EKGO-5{{XHzsXjicZhu2h188vR=bGTSh--*LKrNY679gXYy z4Axid>$BM%hGSoaykUl0zGSNrb8dd>7>FOmeFg@mD)5KhR`nR&lh}A#o)~N-h9gyS zPv3*!w{4jTA{zaX!#aJZ7PIZ?WsE+J5 z7jCxP)*wd;XiX4jW!5NM3Qdm#?umrWoWkUsWMXx^^%3s(f8}_|7hqUeB{um`7{IP? zV%`K6n@Oq*OzW zPJl`2NjlvinoJwTFS+wj-@9(`XUY+PkpNnmwMAZIaRv<~d`YsaKH%9{g%6hKA$(c~{Y{DFVHa^p0nlQepY9ukG zh%&Cte5)(?RG^nL=nAn33D=D7!3hsNUWID;C>mLkP2$c!re)V>@!JuL{Jj**&kd2W z-FnTvuN5{ZqTDp7eiLA;c}4Z0q~r-njhruB*Mwc_n8F?Z0QR+C6c~WyTt$lJIgf_f z2!KEVf6S+4>v|}m@A$j2cRdpV?7QIS6=fgvyA)hBTG{RXbOYp7NJ(C&vsgv%s+fOZz z*wfyooscvhN1BK*h%l~s3{FZ8?Bkw3fkWXF#v`r>Q?T1gE7@DN%1VoxAlSJ2E>5kx z-DJ9}7q-f^y{$UEc;YmdUxWtbte(X4G#;fGn|p&*O!ajXPZ7IxJ+_nNe?@Z3vKQq` zUPxAWd<&FK5uF}FxjMBL)eZ^=d;7ut8q5$c6l66S?BP@ltt$itb^ibpK8fa;Z~VQI zrJT^*CZqQ1Dlh*4uNjy1{{Z#2@v-8HGrI_@TTULU>O%vL_j(f(U0DK%F+?N;_e0hr zVy4*0`g^WL9GL|7;KE`f)oSG%5t(ewnJ*L~{^W< z5kOqRVKpZc?=<_a@($pCE4@_5@!f9iUsFvJ!tF+OsnaM~pSlQ%{l-YdBDA#m8e-K^ zM;ZR6Tew2b-b;1&s$t{_cEp&nqH4UgGl`kWQx77da%)J8JVz!jgiIO{b>zfoBKK3_ zjMOeQVly|x_)$FAcWMQ!Jy$#ot4=6*WtxDxshR${<6~_2*%646^YR#M8zDhOE`u

    wjWEOrhP^EEP?SG=JzH-poT;9~Kau4cPviOu#)G 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 Eip!zRO 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

    kfN?q6Z70S{CDl~o*)^a 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Πw@E^BG@E^9L3Vt^q3l_%L%jttnIliD@`+s#8Pi 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񭪬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

    tR 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 literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/styles/style6.jpg b/ML/Pytorch/more_advanced/neuralstyle/styles/style6.jpg new file mode 100644 index 0000000000000000000000000000000000000000..70ad1e3859a582ed54fa566fab22e119ee48eb2d GIT binary patch literal 87874 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

    DFG&|8`)l{f> zjqOV1T4x_sUgsjs%a#k;q*JY9vpV~R%rGZXx@eZCUbnN+f6hOBxEyLsX^&B7*H33w z44KN+WGbD_idGj}S~QB$GN!)qNYP1Yrv3P4<5=dH@K8RBNptz5Hn*;-9c1LIi*L6edE8Z|)X&p}zbxNsZj@N*C<&)t(K zF=U^$zRLtXet9$>W0Kd0hgPG!S~En8gLm@l;wvUnq#~WeqB@t-W$f4~Nu9I%1xQXz z?mg-B(6l0emNzM>a~|7+PADkACD-c5W*`pEK*kkP99Br>y-(bS&+^*=@v;D>h^XG$ zO0E+6t?cM52qjj{AmivNzLShBEt|~U23JvAzd*JZkKTU|Wt9V;K0QQLGa%Q#A)Mkdu#5%>{wk(Q^i7uy9WzJ)jNNLImB_v3^ZGR1ADv z4mvhVYk>wCKOEky175sMlW#OL3xXza|zoYI5Z-dah4=(MHlc~`JA!W}sd7jSeH&^TSetZ=w#q_C6?9e=6surjMD(K)81z7Of(4?K`5HlZHm>$n-r4v*2 zzFWN~BNdJ~R3lmFp;?tqNssbLc)U&wL^{Z<3QxL(4~gVjAl-%Mhvf8>TA_U2XUO_A z=Lxq?bBnP~+(RPR5Gl8MN~s0@fE?6)HnwE*y=$Tjvjd>U>T0@nH%mJL$)BLGwEHBQ zGg3eTi3%cU?6kfEB!Hwq2gj^eK1+vFpv8Cdx#(&fT(lpt+Qe4z08VBcu7U!thSqFU zv2D{6P817=IIB?9=!Z+>3RNglFGHFU4VgyF`t2l6M0O122@F(0l6`qQrj>5&6l(sc z?twP8ICB3LvKmf}N)Z}drpA_uK@jN#kJGF!Xn(f3XX>{r1NoSgSya^~wqAbp+RKOy zqiH9Njgjm9&BDcNBviQrEHnk$=iM(6N1*AnskA;!$4R7${Uc$lW#0gz+m$h6{sRvm+{D1{qJW z2_)zXm5J$wsC5v+RK{{;l^k4k&cF*{OywpUiKBCskm?KUh831J?kF1~N%V=k!mEqS zoA{q9Citg{|09e4YtH?1>;4&dkWl{|y8n^I5dV?Ib@~wG;Fybiv~)W1h_+T3!-SgP zH4JT%U`6gV^o=BvBpfJZb=m`iaZ(6GZCYrsWo)fK*1x;ziB|gzXe=)4flpAnU?%6| z@P$AcD+_2}>#hD=fRi4f$1zPM8v?6AE4M=#wUltPxsHM*8?SGR^$M2*AeuH&hLcKb zf{UQ02T{~QN0CH5Q)XpzvNWYH#IOLy;Y=Gf;dL9$Eu!YYc|1i$Yf*yYxsX-MnvlU) z2fN@oRg5hn*h*1d)Q3cIp^~D`jp4y65%lWTA1CZI(Tt}VfVZtZAd9F2yd9m%kfOm7 zd@Su^F%)gJib|1x+!S>n#`&q~o@wIdN&hN^hO|g7FUSTIGD~8KrXC&5kn^m>bp6KI z*aY9o$L3;h_j65Wt{XnK79-x?!L%y!`InBoi3q&V&gx5MWw}q?K@!inOK-vQ9dq%o@2#xM}*NF!x zvc8&PzFz8E`RMN3%JOWDwYNvL?$1ba82imL7P=6|8Z!ut)%E$V+{3U&#`Hxzs~@$q zZHK)Rp_Pvbwv#`Qs=BX^N(t;-zk{VLP{fh7Ws*%7Pt>nhX!vJ+*PA{Q^quqQ&XCw~ z|HSv=<``_tg{N;P0>yW6+MCi##>i#QUOsR$xoE_2)Spyj1h5k?zsl$R$YtD}tL`3t zrHW0?3AL@m?fj`+jT+|#T7tWYDQ z0zn#!m$Aw@v^@+9R&GwI=!>LsxpxZub*E4=(u-yHJRMry?r%qP55Z6;QEO$u6aoUh zoY|}4$~KqetPcZ$4<^IPn;&k&@}Emo?P{4Fo!J`uNEF)oE&|@om-jxs%TC|i8)4WX zWy~nkVA6jrMFZakIPhi*4(`LS({+=6c&vGAGU9Hm0N> z>88x6A~m`;+6|_ml81{j=nFije!DcYJ@Ydb7``*$tmJXu3N{RSqs%<7CYgG?7G?6SKD9XPl*iVih7Hc!;y`qV%-1WXSRN_ zYYevuB+9NaPggnh7`B7&L| zmb@CS<%)hMNn+{gHmV$*-Eiohx#Hrozb0Slisj78+7<1Dt*Iv5?CQR$oqqD^Q)`%M z)mw1p9WJFc5yh*;E_@J>^b!tRvLcH z7c1L&gW+s?XqDGx#*RI5$EkYXQ)scywi#l7`%q9Ma@bOu6(NE{Y-qo=d8kL2 zZ5Ilg-`TVK%_E=yBv^OB>8?6=Vqw%opmbd0raT* znn-qk^%tPhtNJsxbIIAK4q~TyXG=7MeFZd>Q>`?_F!;vc z%8p@fePrlGS1&Q<&(kB8`>WXV29C$v?`^Hw>o4&2-guQV`X-dd*kQ0KyU5Ocw#>I5 zyZ?YmY3k{XIgwf2^dy%3+pI#yacigchJE+hGfq!HS8Lj+=}Ebsh-uK|@WWSbM&hm$ zIq01CO9tbo(d^Z_`3*nak2RphQI_4FO{7Ke?CAF@87pfD62>Sz5-d5q1`$=7ZXfW+8}EtcRL57u_gk}HTc{RjRHLogTA_4GSw(^)Exb1x zS1HRD%t4;LM5T#mAFC&i0i|i4MIqggviu{z}r##Jimai)!we8>C|VWs2s7%Ntu zM1F;$iejbL+Oa z64Gpf9I+sc5ijG?Ni}Nf+I5p9jlS@+Jk44pkfaB&xr-oG1==X3HYPZVB8LGIAUB4k zUf?dLSnyQS{)luMIfA48o28gd4qFYjM>S`zi z-Io$1X}8@zXq9QEm7G+^a*>d}K}bRN{ce-5)h{7oXM0D8F`sGJBvUa`A;uP%GMj3a zSxeX0jI#NAYTp1hhzFQ~%ZLD4+39M%92@Vp{xLbNV3>=T4r4V{>}V-&QwCCAZuex?5acN2$x9M6-sAf&wYscW4AQkBotxy_MGF3`2 zKHJB43d~Wbx8{69;^{a3&Y7m%paWYYC%Z0<2t9O*Y6pLDYEbJ?x@I%uC*(WZrgxoo z+S$}%Oi4FNHljV&IHw&W+t`Lc)DA4qHtgl%_vyE>QvkxGRcIcT&yFA5xoA}Ikm87` z&^&=GSXhwZI*Fv?i9m!_?Vt;v0q3Tke#p4p#PYetyA?sNqvo3Ck`~OEc+@y7`Yp_n zIHH`#Wu3w%kKIRph*KY&+T@mNKF$N)J7vEA!-dpHFT7U2zHv z$5y`$kmU4vxA&2z^Z~u5G7ceXHUtQ$X-S8NO20Vo(vEuB+?J+1h(oz$_#QewI$fPS zAcmSWX;7!jgG4k=v!LA8t;w);oYhFz29;2(p5HGs`)kX}W{M3Hv1W>~hCUmrd;>md zlYwhucQe+w276`wQUzKsfBj)IRv}i|L@j7v7jKb+?q$+kBe8CkWc>!OaSHV3Pa;+e zsn>pU94Z-Q3IqjO3udYAU0PkMYdY_lgJf8hT2zV#ZV@wOHp2>y^dM!>fK5UP=PLPt zkydTl>1{})Hq&UhOM;tX>osI`rm<^*<)mVc^8_VoMq>); zmtra{quvBCZ^gCzr%@?T0AP^d5dU&z|HZf9fPZN+fdo0sGlUw#4Pf?gpLF@^U)=U zN+#AU9NLaCLY7!qKoFtN=^u zYd>#^`h@1q6ASg;wkQ$3S_c~`PmOp3J~}kWuoO(Z>pZtYerB5oWS*_}ia)cA?^e*t zOWLNUbGujnDas(^;}pX@Oa7oqv4GOZ(lXJMX4*_`V-w?_Mqo`qM@kJs&5d~`kwl&F|DyrM!J^dG zbJ!77nDtV_`r|9VaOR2Adkno#qa+&OL{|7-qUQC9tMfN`JMmEyeEZIRhwKf6kn(t& zS@Z^!3vUqOS?ZlGD>RHloM|aiot|na9A)g9hA-j=f;*xeS$C5!Yqtz7izv?|J!wkD znwWRFUzyni&^AHOs7}?EeS5`YDbjJ>;Ll@sRmseFGMXn${BuTjygQ;O=dVOC=yIew zEYk4km0V2*bZQN|H*@fXAe=E={7$vW?F$rBH}zSolkZFY}}svf;Bk-dOF;>?2vv29fx+M;Auh zmph|oI@wYN<5ufVoVdTsGZ$avPjqt}tmi8u657{Xkp-B@T9Yo_GE~D+@i_i z%W@MoPM(|7Bg2O!3Af2&smty}nrde?{sjhbk)UP9?yQ{2*PE*8D_;IlZ)00~6dO8N z64%xwk?NNmxXLK1PJ8Z@Cbr6KtqSV|31K4984RJ+6o#K2T5`;M=;|p&sKNXF-5(A+ zN7ni>AcP04LcwQ==+&=2fge*fH3l;au#pqkLR@2Z>rC$PX;iomuQ9FfW&;Ptq1*xM zEsD)=jc=3^i7R@ty$&So8{@^a#z;hV3pWQ#izuFtk)vrw*G1CJB#Sigkn!) z`bgiE9X8}7&QtT5O-VZWHcj%EXJhx@lZLN|NDoRt(x3l+moZ4l?8#IebuAtER7ZwSX?kihZKK#48T1VD1Wfh)vK!2%nVik; zSH(dHRJ!?}ndmx70Y4`g9d=|pCd1h<&I&knTSN2mtySzOaXRPtI23OMw{W?Hy3T|X zD(Y=1{JWOwL`y9XyqX=u1`#|e5bX&*-#P4M2y5xM5(FswsSy(mVaAMxL^&AYfsjh8 z!UT7g<|LQ8c1IxdIREulGeIVeFtF^@`a@HX!=-AIUi_G)x@DRTwkAv)+eM&f zYXaRyHOpPiW(NHw6xyr>_!be_DNm1Mw3JQ0aZ8h@c?c@Zt-CE!gP5F+ z8F}}Da2l4SXjhWA$5${<`j;yu(N3q)#N2+}6H|eTVMZ?xhD^J###gXI)Hs}7+Tz{R zQA4KtL`#R36jyWFG?OK!C2sIupA0D_{N?}-P#E?4?`x84Eav4k&$xz(-&M{T>$$;R z-yqCX81gryQ<+x#Q^w2=qS+{W`g2%8wcVbQLAK79U{y*%R7Wy<(|}R3yQfCkT?4+c zy;47fOx0mvhOd4kq4mcAK6LZPL6kOz!dt^nnZx@9skqTY*2doxu|P6)kvTH27&fV( z+zTu?sB4wZ+O4ALVtLm7Sk$PbZhVwfNO#sWCgmQ;?q3IUA|y&=@i%KsPSHs}L{g$y zXF~{3_D!qD8Zw>+8FC>}V%xsAW^{v0++885G)?HyE!rw4Mt#6x4->1+U}eeU4p=;D zR3tHrG+geCOmCO^jFk{lhnt_E2fKg0T_X050>M#%UwrPU2W<4+;l_N}w9IwDN4CiT zErSW?^=-Ojh?=$woNqpV0Y{i-(TBj1BXYS48@Dql=XzNv_cWUDX z-cL)0af7DCQ@Yg-s5PW_DxHb&;WY>15P;IhitZ;UEx0~u=<2w?4pU&^s2|Il0GE4YHu&6;v z46=NT9Sd7^y!EO(PDmr?(zwZ%?yV5%a7l(KiqpOBMHzw7`r})aX@CCaTlCZrD+KVD z8VgrQmoXLTpV|aJJ!Y17gi%Jwp=x~LIGXw~n|W-fdIV&&{M45^+Eh z^2Bm= zb-kt@dsh{I$N7Y<(kWEW{g_X$Fvz*n$QDLC>+o#iCL}c?Qq7UY!o>(unyyrC-lUU# zp1kY@uaKu1-jcpupCpww7QGRDs{AQ;k>g$}Wa?R0rQ18EnejdE-3^JApP$-&WlIEK z>ZwwBP?Ip{tCmRmr#xe#KHdX)XI@JVUSQO(l-?ejEJG2lug&L zNhXk9io5{3gn+o5;cBy<@pWg$S{r_c9Hvlg2VuY#AN7vL!M16de2nk8TZ~|q(=T7zqLqKL z;tJqNBZa`Z5dXQt4-IpBJu~f~im?rkiP|D*AkI1~hE8DUAs|fnOyy~)I0`jc?hWMj zMUEO1Q5-8yTHEZ&;{z+#(<>W3wttGzIZ~OdbV!y}>Cw#RzsayS|E={c?74Hp{NP9j z0zN)S!ZUj2jh+p3L%V(IE7X-xYj)faN^m25%_}r1r!#tN9?L4l-?EP}0nIWJuBk9S zfl0*+#|F0MAun_gk00}jkeGOt?YjkwWkWGDJ72XdQ`j*XUx=Q0BSAN{^@Ki1;M9&~ zgiO(N#FEmI0UhT7;uvI~7l>eU3eqtp>TdDe9hNUQucUXunrP9JgZM*A)? zHd{&C?3MkTZu7|L0p&v!lW5x=&b8R(x2Tkn!KJ3BBPP+BwCL}T^7mvgY$qjrIU3`! zu3Y}J{HfV9Y&zO1D~4f+Fed-JLX9}HQRxY!8`k_hFo)b`7u{#)DfU2NZlTR`Ux6PI z!p+{%mft)c_ZthyH&)Zl@kWf1su;*Wh{^N$h#&6>@68yom183O)MUMsa*ou zGMhr_@LzR=%?mfRHCdk?G>~Xp4S8c-w%^0JlDu0>iBxS zUL{QrE9A4`R@bL_Wo@wy!N-S{+^Xk!h#0>1l&EBLF3S|huYlf@?!))f*uuH;u*wK5 zvp{Y)+SCwCf^n+2>1%v>BT8ABROda1&wYz{hya|+b;N6(-)hDm`!KEK&v6-8XTwHNa;{^|mt1nT+L1oHL2e6u{V?(sk(3H- zDKwWpPv^gZW!XDM5_!rc{9sEG^Q_%C1_9`|TgH=Y0%rbuC! zTVX7azH0Hd=lCyR;Z4`NES-;1^BLi&!yaz`O!WcI{1*moG zz*(zvovFRbP*n390Qk)HdH&>{`{bdmPl`x3c59-U^Z;Xo6CN~c7_bD zS}IBT$?d!XFJ#>0hGF4KFNVuP(mBa%%f`O|(xq2?{9Fo|$$tluitTXOy47#~3X-3{ zTZgg=X8);}9qf&{sr>4|FaC+Tf}OcD0;L_0S^@haPdOJ8z2Wkf=cxtw*S<9va= zy99W=lf6_KXwcOuMxAg+pdv{dCF@NHkB!BI>l46@zdqI5oYoCI%h8}u4m~pS@Gz*5 z&j;J*zQ8qRPP*&D68Yo7<#wJae!0|{nrWxly&(b-+T@e64V+MBS|al}c$&)dQ1#gM zxMs`7XT=CBj4*Jy-KFM^SijeF^A>cIPVVk@nOq&=`4StLjFj;mzT=m&E+YV2nz37G@F|+ zk&r%vIwOfSwYv-4fp9r$JA3szda=R>H_{H%Z+t;Hhmo834$7?*w=2cTc~B@z3qq<} ziTpuf1ebii-OC%8qJK}a+|6iVQ{_M9L71WM1>E1NIIQow1ZkS#W--AUbWsKHdj=5l z$}rB9R*2?zd4|JfAmc5A3gim7z*>R z=@J?e3IYlY@Sh+gBq|yy6bd>StB48-n~5_9xu|MzGBgFdsY`JarkGmF-~x+T$UY^9 zc<3FL`fu0NlIEd<|AlN2!r)2T2Ey5jO^SzZU)AF|-X~F5eb&FIsUK)}0x2Bo{nQ%1 zCigzzwjE!oaqjy0e@~FuA?V%1v-pM{m9{(gQ)2(#x>s?H@26C1Oi;)bBR1yN;Gi&z z@1H1Qy=EDYSnETnE;!jp&NDr90~XnqI!xhrJV020_mqui*|NEmDxooUgMAS z1S<4`iLG6&H6_a%+?W6byE$s~N`Y2HPlWC=cekMP# z`iCIbs%LCo&fw^%QkhtIn2MX!JZ&`AlL=c)jE=q?-d4#g!6`x}e%&%SO8a<9XXoKY zS6d0^cHP5z*T5X1hhU~0i5Z^$VG4$O_IVq)tUKa43T%dfltsgU|50qi+F?Ecc3rQAz8r{4{H}%#sqTC(>F=|;WsMRN1 zDJx^O1q?*_4PPiB)x|pfQ*2z5SGHp%)9hP@%}rZh&2U1|eNL2rjP?F{^X?T_@Vg9Q zh_F@K4#%Jp>|2Y0Z=qed8_?DHXfePRk%18WG3JCj&FtYjRolz{tdHMU0}cMr?ph*n z6dTjxPB9P~<0}e@>Jk~ytM-v`&)0-ckKiIY&4FYY($=&9n^-E%u(acuD3O9P;!|Kf zB$q&l#ih^i&J)xAEdU{+$^NaW8B*JAv202CjzJ?NSG4 z-H4ho&R)+`ObO}B_(fyOpuG*z!|e2+qfi9#d;M3ez>}U%`Y$jSHPR@1Jc2J9s^7*6 z1bCPkl&EHM#~x-Wky6UpSufb&(6%d`j>Ljm^z;`4T@0El949mJKkwnY3>i=pdz2lw z0s&|It(YXZ9#25eaIeJPC^9YCP^VCAzv1`IzD&Ad`7Ybet^D-!pf z=bk0C%v@s&ygE)a!Y3Oq)K1=6jQ&WhnDw8Re`zoXK6e&I>8TJrTwo=aeEtQLN!=(E zo>ZTZwz75=-a6YWls0)Lm_Jq39tHwXna@*F<@5Nf`PLY83 zSK0)ZsZ}q;6_z%3ib8xkS+$GvO#wwKB=F6kgHVWQF1QuuIjRKNal>y*g9b(hK?wZx zG(X%0QfHjT_GT5zE5}J&n7e*PFHWp-VDpX*AXz`*m^TDW_77S5p8T+YYEyTH@%@QS zmltcN^HGD#9(9%fO1(sY&Vu572c^6MG#$9@OdOj>xCr`1XlGy6Ya*!>DY8+n-XTccUg2zn%_u78|03-vk)@BL52*D0&nAZV~WUKgH8~8fgBOT}Y8IP7#ToUvn{RF#EH3iQ@kN zpg>>0JdtO0<-SUI?Q@KHrc_NEb8E>N73#wO0ET(IFHrTQ>btb1qu!9%Dz`XoCyGBN zmnuqO>m2#r)SCrG6M+=Wx@37Y0pzS~v+!23E;m?FC`8+nk~5p~S;Nw&#NT!?WgQePiWUgiH~@`Q zmOatLul+;xrwu;s9V@KT-wr3@RoiY#aTDf+xZ-bm+?E#I*?6XX9{MR9wHt-aGs%8e z*6?Ir<9kL=Ek@d|brpRpM}OltRj61#`n)glM8e#aiU1&kZm+8)ej0>r zB%3uFmvG%20=lxfw!1E9RJUgT0JI;P<;h{qWUk^Dpy>LEKrVAzmJxJanK-ZQbzYyO zjZ4Mjrpyn#tQLCPp=kyiI;u|NPcIUxbiozcN@x1a!+oMZqS5*Wggk8NnS9*i#YD#z z(nqyE`|=CZ>EoC>;lk_F8fAQ~iWc!DHIf#w*xShJY%$}TiSDyg^gfP#G%{hDq+7+K znO=iSaxEm8k<-Bf-Ye@4kCWP)Q>5u#PB6gvM%ldw6lxwQDgMec>j>-9;EZk)0lMx! zeVHoG=*y{5!qJO)M$QaqO*vR7|c(c6Qgi@4V)8eU=A5LWcKt;l14Q5 zNwV}wMhuwYlIF3w?)WVkrW|B+W}b8V$a4IV&=gLBJI)J>vD-4ZqD|IIB~PS&mOb@S z0ZPY^TzCev{nG&1=(zEJogmBL6#7bIHB8Q$POdyWx@y_D(>sC9zI@Y*tQI4h%n+R8 ziO#ty4HrixMDD`I{(cHgH>96iQ^0UNz^pCn5gY7gcZ$tIGcX#8)jsgGW?UIM_uQa;U7)^_4(h(Ssc)#O8hrJ!Os#X|WlC zrP9q|frZj=a2%8A<}tq~jw`BcZNzeD9Mqpkw2MOz)uZkY{{W=OS{U4b)Ee6XnsE-O zcaT;KYgZxhSu9QTmWax0~ybnzP$AYz{d3}6IIqNF!%ehomZ=;Z$=ep z+>Qq7y0}8irmc`f=1zL@)n$Zm&rrj{>jA*S=B|y9s%EA+LEmNd) zW=6bN+mfZyOuamz$D4Q&@L2Svy~YLVirjCOyph9Ttlt%b#G;CX7lE1p0j=ux|EYMWi`J=Hdk0*b4PM&pl8i)`0HA9LCxnrku$ zb=4-9w2zUnQs2LEbL6x}fu(FhrWjb>Snf)V(l#nMoLWtcvSsoMX}nG%d9SUzq99>r zXR5;7_^(Q)#0L8_UcPtz&^s1bGj>fJ%Jk1w4p4)~-bU9}S6isD!ObK%a|%i3^`y%8 zWpl+o5cbI2ByuZty6!b#-DYm;xt!KZG!|O9YOz@$TVxyw;N&2dRUHiGW=|Sa>RwsK>@&74XWD1g!h=eE^Vv6&!<%u z#{po&(Rvj@kJ;kiCCOl|sA%Ad%TQA`R>C)7wf_JT#^eV(qti7lT*1<{(ZV|OQPS7G zIK~hykXbFhlBRF@fi>DXM-g{4WL804ZsxLH#D5a3R$BAbpMq~R(sIoc;javrNs zmXchtX4iYJE{JCS$NTbSb(nf+%AftsgaJU3x`avL9*7)tA2}jMfS$+Sm6is330@=lq z+i5C;e`?D$w$jZ$<4c$PDt{%oI;$aU(SA(Gbw`4-$z*_CQyY-YIo<(c=Dc-X1&%Kr zSXNQ^>MYE6xhGfAQ_AO;hcFR!n{I&Bc6n+p5W+lOQ>4=rjpel+jlD1JI2-Gt7-hFM z@;?MCG;K74JW+>!OJhYlha5Hu&*j6K-SlSh_SNKRala+9krQoRk)woeJMixOIVWiv zx;z;IOC0Wls)B-_r?Ike=y)Sjq$IW7ZP2A}niO4>p8ac;8y?`t&DWC$sLD6 zgClE4AiWx;zUj!T>af*vi$>AIe~{>i@J2lyQt!I0tI_m(e(}1#kC=EM*u~a9D-Nbb zo8BAdqv05Io;(7mpDb7hMyES9nzFj#t2Mld*OIxrQ~f2^X$j1=#kFj!-3{`UznE8s zKP6$WXx|W`roILMPZQ5pU5mfqy)RG5&t{#XFOL)b6;xU>dL}%W+%oFH&f4#y9yzxp z*<%M-uhH#sa56V_$*&f0RP+>cPVwAnHz<)LuHxc@1xr}s|Dh-T(yqC8LMQ`e-!e2$do0u?ttdK8m2iz_n2?NHhMTDZvqzT z%U?08HB8!p0iBz2FSEtH^4Am?uJ+<<3-I5NPpqhtXLsdsdHAEe_YNY#S=xvexdWov z&4-hAgl6(*;EN!3%ojS`m5=w=Y}V0%-BDQ~4MSh>D(GnFZ^lP=LUfKUb;&uBtdA9S zW$9F6HygBa&(~Mh@9vFXRdP6STP_z_DRhI& zW5bsll~@2!X6VN2IiwzkwQ`CfTP1a8EY+RZevPY+ zc=)vN>N+OX!5p!hvBK*R>|I#g1r2NthIrd7ZsOOAuh{c$Z&OHjd^{CBHf)KlcU5K^ zW{K3+Xqj}AUf}i?gBSwVzaGXYEzs)Ca7~JvX!DTbpII}capTLNM3swCB~K~JGv-v3 zRRUK@hmiw3lyFi;*t@p9`u0S+R#W3;(P6|^YwGSztVS5_%!*dJvN1@CqXq{;pZjR)2U12CI<*L>zdfKq+$yg^${0-t$ zVK;X3)RZr{&8LV=sf-pMG0|Lhd5$TvX!!(#g^2T3ZPo4;>FSGfLr7>^%^u$TkX@?R zxVMK*d(sbz3guxb@<0o2Yk*HF6H8=bOkS}W;t!YGyBd~&sIxyVoZ&f zbAv$QN}<5$qi?18cYbNb#>@b8x*Wz7*Rw3p3oEOIiosZ`o2#=?3zFH&)8ejEo-P}3 zIF$GZb4`kSMWh$;3MqIzA*&^l^onhpNW@B+lop}{KxgzhIjcaBIMY3sPCKG^FiaP$!FU!J+E&NZkePhgNJxz;p3~4 z+0)2+G_C}o)@$`E1dgR~$=l5HMhROZc(*ki`a5eIt|S>*a@V}Dw+fx%wL$KDE$>Hs zo8zkL$<)v4-eC!t95V+~>ZRGnGf+aqh~ty0BKosIfn8_OS;$QbPr*5m7{T3l5VKdv zW>I0W8ThBi-Emg72H&mJk2Y*qJ_=VH1Yj!uX_Qp%mQ!Yg>ZweQ=gAnIh<8fKWU2I? zk9LT!Hi_S3FSvOstqE1Jsb#&%2X+2m**aH-G+oD%k43^}o#Ouhl5JpXSkf8|^VPD^ ztS5{2^Op7 z<55WOwP*7t?M;X`=(FLgJ$6=^@gHk3ttP?5Mw*c%{@8`)l;(6p^MuA@0`X6F9@b)z(N^3+ke=9>+{lRGEZ z&R*=8JFV!dYk+*8SBuBIehQxrjYPNWl58z&M*uCV$)4~{3lb-icSPWiL`zOf81#3Y z_V;|1)v3dJxnV_v8#}zhvawj6vRf&vcoggmtBb!H^s08qIr2beuh?XabtGUv-gi&; z)pCeOqVP@kTk=i!Tk=OnRyI-G;P5$w+2U*3Lz;6z%~x5k4Mv`3$UU6UmNvb-2)dt5k*Wn=6sWDt4rhwwF0fG z>tvlvJ7kR6?Ke^BY9>s~xj1wx<{|N0qs<4l+(I;yx--L)C0)ok0CL4+q4*icirUAY5VnUTO7vptSRLyK9d3NwLGT_{5()}%(2S~^=ss@#~jV&k=2?s z&&*xC!fdT;nr;d(knUX9q*At~G3z1YZ*>W&jOU5nLWf8RKXoq@FyE4GD;-Y<+Yy-_ z$}M>gIrBtnu~Jpp^7^>{05ZJ@wpfALcTa)sNlP0UCj31)gvzM##Oy;>X}lHDq^WEA z9M(477n=;zTbuJMe#45wHL;!N0Gl&e@416$- zNV!^s)q%Yid&vr>VRza$SgB{;916gEdFtKNY`3nstCTq`f+4GU8iopKU3bPeZ|<*9 zQCn&`M~1EKMvhU7IFAw0Hb%A0IGT76wviBXE$oAg4x@e-9@gyF`5;uG09;we=x4iha5wD$vK&~dA)-xtOCHm z6qJ%9 zj-Hisd2aCtJKIm6_wwpqeT1;&L@6J zjg&CEH}^s?m}}wtN_St(Ce^_lvG*P>7olkrVY@EySu3W1Me|#>MS3lKGI9q$BxaG$ zak(nRGEO5tp*N{a9BxoxvqiP+nSOkf)UU-9j*rWlln-4KWbtlFmQMC29}$wIe+k&2 ze+gKADYH~bDBf!uWrf!nrm?ps!An_`V+?&z_TTbR`_4k0#n-;3zGg^xvx06b+ceX6 zv<;_HwCDV~RTOZ7;z8Yb| z27r9frl-V4@$QA!v3=lz2ssP(F*V4$lD91UQ9O7f1|i6+g|noU-*;8!SW10FjgB@s z?{-10;#Z>R+2^Wpbiy)28^OQbOC4)v4kkuew>1`$p=5(N^i%@a3-R%K0Hj^lAs&exR9;$A{#EY%X>{FWRy> z{{XsSwUBBI7jXc1p!SCYaCRE%h%0#zu`3(}V5GtC6_WMK8Q_}*bnS2$p3T$DCdH#_ zF&rSUt+~WGBWF@{-*5F_vvj2`dvakrDSVK7ZNwC4DkX&QX}I!UsCla^>a?x%S7Pd| z*|y;LtBgpV3kc0&&0RX8R>a=)gfM(^LXw_1nlfWURt6Y>%GsEg@&U9wP zCrEDR7atXlmj^Z;##*r3J1-KjHs#g{k~omT=CjF6cr>Z++)r;75Sb@^pra1_cO#os z)&t?L%jSq`zO40FE4fJNfq!<{YP{hFglOv`m)$w}BI-z^ZwI+-nPR;LwknPRr#~)f zwe&A%yfP@&P&KdnNVgoeG>xqdxMu6^(LQ{RL$WGqBY%RjuM1(UT@O439+D44e;e{EA~>lW5@9TQYeln&R4K z8iVh0T0}`^PHC}wEEfG$WQ1d?nf`85i&}U5)kB+kU4DYvtb<b|Dc zKw5qY)bbWQScEpp+Py19QaqcwDKHfcHQG(&_d=4Rz1{bDFHX>`W6kEL^=|&3k`x+n zfs}P4^HJAP%M60-k+?`tpsJRg{rH`Pt9C6Tsm}*yHDOj7n*(jd-4mpCCvjU^(cmwv z1$QP!(NS2y={UAGaBrWA*+^ofXnr0qJU$CZHQ@TY4p>&uK=JLj5{iRL;d8C*JQQ@* zPCBZMr2w&xo;-uRTzRNyWDSZY#>-?H6catWXqziKI3~~?wLQ!}>GoAUbwtc<-eI=& zw{PdJ%j;Zt1YG?1Ae|u1)(MBjM;d8N2J6wP8Hb)l4Whj{JvC!y6Pk4+^S_$1#C$be z>b9$(*)!mEdTll)4_e+HJ_`*%zZHlg6mimQ&Slmv&zh!tj_!Q(P>*}&o1=7w5KalV zNWaM!((N1Hh~ou%Wh_#UXf2gg70hnzqXW;6F3E;Qy{67-xJ}X&&3HTB(CAP==B%mX zkh#_`SeW^mJzgs-Ry*)4K@0_NST9e~21krhz%OpDT4w;w5c(bz78Udo7p}Tko?&sWle2UR^@vyi{1HSWaK4ECi44BOC zb&V@ZeIbWo6ema05ogUO+BkRx9*%*O@V5&Z7Y$ZhN~ig&1x=&l+Eq^2hq4LGqHfwK zKkiNamXWKzI>`X{S-KR&{k*sT0P4H@s;G|bRKxz^T27dctnEihMbs6u#M-8cX)ZIq z=~(2*@r|HIp`_nOxbyWU)^l;tO=) z;+)Z%bGoNQ@K|i-n~yaflhLuvGi;5`dNoZ&5#SCcp{4Xh^xo5j+Ik*HwZsu;4kM>! z+CF?kHlFi(rqx8*B6ZqRDO-6?XM=gC%t-FHqI2FF&|Krepj?$(Nus26LvGHB)(bMLonZsulz#l zh0+hH!hg^eJwMq)9DjwX&joK?TFT{Fjy(b{adr6Sy#k24jE8lD#YsGc@<{0))!m!B zRN6Ak`&xhD^zu;Y2zId_0uKtk1;bOk0rZxf>+xm zxVRN?w=b)b$zh_K@RR`KV7)%3#}I(n(QET8K%?4pL>v4_?*`jcPjmS{(8P8!%fXocPHA3Z^`2guxq=A8VSx`=hwH(eK- z1Z(APUN<9vQP4sojCs46T#%X;nVo?!`&HuwJkRe@QnFha0E1&$%igx0|KJchIk$xSWISn9(=G4Qh6G0~3c;)@9t$KV2Bs$Z*7tz+hOD)h@0;Ks`Pj+aN0BY zj7^Q)EV3&tMfo848qQqMr=V;7sWbR;R@IU;+EPM0viiaOdnZL#WU45%=#m+vguWK%8_Ri>S6(pGRLw9sddHLbFHX@E zlO8UNU(a9sF5EG^1(Mm-ek}W0j)=T)R$MNFI4_d15lnm<@~##r+RF^NtF42LL}PIG zhec%A`^945u6$M`=`C-X1BIVQHfqoE!%wWs*&n~p6$1y{uV*^B=G9%?Nk>Sh}$x^i+9&J#o|(yzr?%Ig4Edym0d77l~4ijtn8 zzQeFP$o~Mkwo2~S=eSu_eI6JZ?X^ERUUK+!T02YOV`bP*e{(iR;n!B_I=5HXsgL9RgCSFH0I;@rBrDg0f5`oAo!pS-tc7g$#k0pLOuf;kqRWbE^ozY?&xsMG) z0mp1S?xAHwjH7lqz3=RaD=!r39sN@y`^R4Ee-K+eBLVx!y{-o^c!He5T?S*_Mkir# z!g?KEnOBM9)knSNp4_kVMxooq3V7@S&n${&pV38*9c@cxku? zn$GIwX61O>;yWIlq3a>`of)#lpIvntb;0A+Qv;m6d>W}e07Xj}hF0bz;$7ynhL1kB znoK_YV;KCAJEf%f7O$i)dmBeBL{N`vakxL5H7JV%+#QvRt*Z+93~$N2mL3|dW2)i5h%JuXrKfA2 z=-Aee1+=6RVZo0u-hp9Q0>^N!Q|V-8&F&U(bAw%m_T;H_&X0xE%=O^!HRCoXxZIl{ z(6h5qiMvAX@Zc8OiU)OQ>^3$M?1J=7CshdUi4Gqlo~G#rM_XC;2R1}Kzdr=X7{*4> z#xz;2Xs{aF?vIwN_1>9#noYec$J#Og4$8oacNhf z4CcdaR!xnVosdSM-5bauQ>JGiWXm(<{{WS|7B8c8C+=IblBb2`ubGT@LR3?mGFCkF z4%LrK#@>++)e_}#dn|B9Pr5a2^xaY9*J1eun)UJd>e^ne5xhI?9Q=DhsByMS6K{2q zS8}=#M(2~kI%x~Jm3>cz+pZxDKuwq439oM)k2Qya-9>jl5Y;SKbTT?8b!x1xcFSut z&i8R44j0ts@8R+YVY0IpYU?# zrNtQ>UheabBdZtD<_~s9kI%7(Q5sF&EeY}IIAkKg++9JUDNM5FVMl=4W7vX6_TA5@%+uZNXT$Sr%^VjHg7}@qu z{{ZnS-GZ#SY6V+@-HtvS&aC?nqIJ8`9xY9ofy_5*#jCmahOE;X!xj+N@xN7d#36#n zU1zHDG$Cb>ShXL5zS#L9*IaR1c$o3bE3sda^lb_w8EvEt{-;)IyG8#1%T&H5-uQU8 z)Y^El}3B@Jz{v+&9!DtYe7c)ZCrGjtV^` zq#ILJQ7p|IAKn`)|`mCGCK$vp-C1VD(Ej?K>*+y_n*_X(K;7mVJvr6n-!#~GK#ig;Ny$+RP}l; zns+f;nij7 zQR8U!t^E5}R#!v=nz{b~18+@Z-ey{}kMRX^tPrxovcm1)usgu^Mxp}W7eH?uf^3>G z^MPz~5%S4cqB!tP=aLT08?1jw?a7d|erNm(ue6W-NQ}WF$r&s4OeQh%T@<%S~5IUyBTWvt;4G>-Kwzr z!&h_h4O^jDBdM~-XD32Q8Mm&y(V6&I()XSKClVi8f9*H=l}|9oOz%d2yTz)rLz3yB zC4={o?=?wM;fFiq){d+8R*a{nW_TN!>Up9$Yb{OFbq=bIa~(^7z9Dv%U!rbjfZ+Zl zd(Hm<17lRf*CoYzMwq5=AnZrruc$wgCWdf5(yytqacFm%Y!}(L4f-Qwb?q8K%oJ&5 z!^Nk8R@N3SNyotk#r_V;rZ@B|;cmC_g~0%VB&>cDs6(6=Np`30zXxXz@e*So0t4+Opfi*L4eNq-B%%asIuGakzC03!FL|YQF>r9FJ*} zM}W8o@nzA(K~5{FP1ox3>;47xZ7HI6R)hp>Jn@g!SRunu!mM&!&Z(;VqRjV-hAS5g zZyd_Q*uF?QY$JnKO6u+dqAfQD$EZ?6_MWl7nxwBFHbIZwITg*htk7_=7gSn96XE)# z-B>qIm{pn`$8Q&_K254gA!umIuR1c1&rzqi;K+FVCn$nhxM^t2JfnzCDclSg0b; zlEV`Z-wMN4OR5;MQ&#sGyVUSeL!6$q-;%eMyz*R?_^(HW&*#W1@mVW*Eukk>flg_~ z!Bo-Nv;Af-9`IB;TzaWmU;HzZg6M9FY^^PLyH6sZsl_D+)#Uykuz#|t(X!yEiP4@{ z;Czm~omIIzCFuGRkQ|9-Gx6-yROxDm#v6ge8@Tu<{__$)j> zF2$AAE|L3aT2H((E1fjo=#%@Zx-8^@_V=5-5hIP)RMNdk{{RPq574xy+H)?9bf4>Q z>bG?e6xEKjY$SE$p@PO=TK=4nXaEZior0{hR#U%B!$m|#t9BP$UlWfng3CTSy&9YE zKOlgz7vipb79nD=qS1&F95@lgD%uPzs~(vM=5mmHd8#cr4$_)X{-cAN<`HgVF{&!4 zjB`fWBX_dphZM9Pdl!E~ofF*0w6)FR4<*ORHS~~{8?dlg{5v+OcDoFf_1m>gSKo!C z^#a93`?tBC2Q^a-$Qw_>q+<&oiNA~d8w;Tpi=|-B(S`p24nK{*s`lesUl8!y; zy=%I1L4v?oYUiruT%tAp$I)|CTJIaI9b9-LJxrC-?-6j*)yIj|lG;`n+IM3X_@@KK z6U`pFu2sUqRMc}eSR`~(H-nf{ND*l`@So$vGWdl{r6Jo>O3501rW>cj#AVl0YJo4K zze(de!_7%b>-UFHy)!|GPkNc#KZg*r>|Uh#YQC#0>dRS1`i{0tEcS;F73kG-L+&__ z@HW#mol1QtbB8vl>U41(*W+&K^HIZNDcU>oSOte-!(M2eT+_6Mlx-|q%!ey=c}<|B zju!A}`ITU>#!8B#zTEnv(Rhw80-p)9+FE>3)qPf#!(CR3pKDDsqIWxRK4DX791vF8 zmZ0T`{hR*)vTKGY{z$iovWlkeXRCkYQTi`mE2NB=Wfpc1)k9wpk{JWqdTX-v{{Rlw zOD%Tn=B^eBhE$FZ7*C&W=x<7VhO4$e#y?)omVKPp?7bT-++D$=sYa@~)iQ5v`So$t zy0|yuv(zMQoGv_6Z_S>p{z_=G!-##=ZC00EmP)rn;f_LTsegv^n|zAV{{ToK^)d$@ zY&ku@1tdcgciZ`_SrKv2sijWZiT~_j0 zGw~1CRm!l{g=VpK8$m@Z=h+z!r8>H~^Gm&BjmN3ifu4P=wceKf2rE9_W`dAxABrAu zJGy_e(fa*-`Wv?}TMoN}aFzz#X{%g?a*gdnnR!Zv=ytUs|m4=|<;<3@oiG4q|MZ!!U(SAEdN;$OZh{&10mVk=$Z-Hu)d-*Osd+ zmDRf!)$`N}%U7(0-UMp5V*txE=_ibno*=W=lD}iBZ4D%oyMqPO^p2GelZ%~=+J+JtJB5c<({joJW)9g8ohLXh$6REU98sAXGqh-ec#bx$0xyL zv+!7rm6g_dtSqjvH5G*Fw2t%b+py@(+DlJRQ=P@c`IQ|Gn1)%Og_(lm;)B{OZafxB z>*cF1-yK$2tLiVKcZPbdt=RR^{veJn8u~1i^#s~VX(e|Ci>Fl1`Cr~~x)D=1s=CX! znhjX8zPuGLA0EbCthL!oqb(GkwwtFm`6#PlY_PmNj^IYCEY-U}t1BIL)ryhh!CeL` z>d#lNkMRvzYbVEEONA>=d|jyEZ;~x4>d0FC6J!9lJE3wf!EB&&g|4@UJM>I@tQ-kf z3O0ruSwDge#5ya5YLVhU!n(_`K8c$YPTW1_9u81xXtBiX$9ac~b)9_`wcK_&CdAB6 zHVDcvvnJ{{)z@FGkMRV{X5sTp_s7jg?~j^gyTLSjW9FOhx8|Aex8|Uvf%3jVVbG&h zQzWiAxZO6~RBwf(I1H3$+i%TAJ+bpqpJ;s4ZjHb=W-OT)hYXF~&D-2mL9&B0eP=#u z7Q|V$$eWv4MAtO!Mj&oaRZq0W+3=oLJQEtg458j6sKq;DW0_!hlfg#pP7ZD&ESkpK z8&Aav3}w8LzYTWmcxpPXyfw>3IF=V+c;=w1W(u2AOX7D*qW=KhNBqi%olJkss89V& zf6SCQ`BX&Qt_B&_~245z@0 zt5Mc;)DwJ+6VfTp4>U@@<^4+zf90vR{3CBMZO4nKD=jNf4GCRRS= z(TKE+d8p(coXnoAY|I|YCHa2kD>{|ZHjJ#LiA`P4b>>u?%zx1-?=cPt+tPc@w{s9Q zZ9t{0>JH5i>>n_Gn4JfSKuTGaH9B)C8Ml+t{lUK=`@>Jf#3reSm>G?o#n~TZ_0n$z zXS*`fF)EjVcY7#T?*6b zEFaiH)KNZG<5w4PwPO0pKo`11RJ9dzrtTKI+l|bFR#wyBY zADy14mGLhZD%i@(;=HOMxsr&{(T};OaM$pCuTN_9M5t{01DG_JP#OpWQLCv)O@9<EC!U|^DC+sw?VF;5DsI&tTVX8I!~#}KYcXiKw1D=brz*=yPxhLRdX>p zgLJUha7u<^9Zn{EJ`mD}q#s`lYTL%K0{{<6m#ilGu4a{cnW`h0W-4P7-I&re5G6*3UW#Vp^vRIBQurr`?vcp^9xJDHfozoNkr)TE<6Wz7Co z8-17c6FX0mm_^g)V{mLSo6`N#>1Bk%GzNaxkO+|dQf8#G7@;$6B za<%uGV3mk;7V^s8eqjON3||q7u>*8&F@@7lSh=RPJ#v%IXrJjjm7fuBayE<}R?LAZ z++?%sByy9nkevW@#rTd-=z%S|E%!9{qE&|zY2kG$E%7gk#wOvmqIrwYyuHiQ)F_<< zwy_neDjOtYq5!q1JxlJm4=im#RJcFinMg8atAHSC@8){&_W6Zij&JI*&_4naqo~iq zaP`nJAvsZwBd_*F@TGJ9vdMNEe3GO9)xXN+d;P}|8nb^wd;CiL(C7)4YF=8u!7A71 zzVpsUeU#1vSGfH`FbO+P7qe?GxG3d+)OZPp{flf%Y{XpD61%v+6&!MevDzLHl1I%T zI7eKvuZI8R#9?g>VyT3{$IKEQ<05juGs9i{Ors38u zR#=u;=W&^gVH70~wfq+EGrDRy-lFYzl@H~A5frf^ScDR>DYoV9b<8yHa`Y5DIo{g& zhHOOvmB37~NEcuAZ!_95lZqy>fQ0&s6MwW$npRf!fLf1*RhyT?ER2wx9CL@M`eL{X zoo`iP=$aJK%-uxI4xujJSzd>jPO`Q#*Q;)QXI^GRrq#hb)#7YDg%ag9Q;q}Im;OxL ztop-&D1nIfblSj~3iN>04$@uB!hOIjG-~Dsr}%?6GkTswKZX&mHA4hQE_3(atL@UcJCo_ufb3&ZJ)ExMaxLaFKN$K!L+*Pa3 zyW16Lf5|q(SjQYw$sO})`IU)ZR%@AB@p)e?xwkb1(#E_I{CmP2P1120)>5|?%O4Oz zQXOtrhO6EzSWc34>HMc00UUqSNV}hi96+AGRJ-@izNz2T@_0**+2wnI@;f~&st+oib!x55W_^`PgK*7T;uy~JQ zi`j5mp*>&?H29X-b|fhWWNrOJeB=@c%Vpr3fa8$?;J^q@V`hH3KICLDSS)d5y>NPX z{wCr^>_=jd)%HFNV{uh{A8YhQrJQ^y(DZhsFnQDTM8~s!%^8gHwc^>zsgdH2#Q-dmOj1Q8vr;6RI*!K z5ExX{3MT&m zo(&0mI*o8lEmkH|hPajDAj?{b7jaN|V)`=@h@h`MHESw+6)UJ|@!;f^hJ zH-n_lym01SO3b^^m|^i97D-JsOPk5e%wX&ImKH#A_nrZXuME2OxODwjUeM88%4E@3 zDIhTrLzMoqV=?k1*P(C4d&c5eb_)BrrUN|x0N82v?kzpcGW7{DBbPvQpN~kduyemL z^1vecyiFhHtgf3`?_qJ9ipg(K*tvag?ofG95S?!+FAKyUEJZ5m>_jHsqy8an1^DV~ z<~?pEyN|5pf_5ubaodI9iHU)uFiR5dM{~Ed{HU$m7v?ix6C7%qmV^-FGU_oXgENFH zY53|i+S@t*05F#9oEzLHxj7B6mVH8+)koKarqGnnj?T1HRoKI#Sr(PQE*5ts?E46jnF(T&;Q zcZq--oX8(PDSE<||#2u3+HlE6)x% zCPz25=2+fZdU8uQC?4xE)JHP+RVz?T3T`?H%QId70MxL8bKL8;Q71gjI8muR;l<#! zmjrw}aId?Nm|O08|^PEVhk!yiF0<{j|{`538j zI9q>OHjlm+fA@p$(gQbgm)R$u{6g26nCObkB2#kja9C&-=Ap}VMh`HB?*r+?!ur>r z`j>e9W2mRLvUd%|7CV$$mP6f{ip*^Jij$hbd3`VYj-!S{&A||}#ACr=46{3TQBRCL zV(47Hxt#7O`)BnI?T0Zb--1$#9KaPH3k``?wHp4I;4W0&dHte0o#@=+r53Hju?LyN zqo}aJB7J>ho$gxUwxBa*kjyY~H7`^a6vJU^{{W_0p!haRl)g0})Mj9kS8y1;xJAzl@3DCI|;Txnau0a@b__(fE!PU)?S>QF*1r+eU|3hfD#^ z9X^aRRa0~Djvk;&v77yA?boCcfN&5N*a-NHA9Arx2LEMH^NE!nCr7)KE;~TCk^cY_Q;b0?-3P6{jHulZaLZ~b zRLZg01181{>NwluMWmpJmj?Pd;c+f22)OJXZ+`HF z=zPXh99O9mWJDzwsvoKOmhcIYV)Fzt;-&(FWyM;j%81lu-thJbN)<$~Ec6_6F;&|E z{6Uz(d2O6OxXsiTFM47x5G}&&GyP8@e$!x@!Q8)hf-a1}Vd=jpCdtGOzu`HETPw^@ zDN&T!m92<2&6Cj7;VUj?Czw#dGP4g|;%4Bu#?Izn2UEUbzf2$T)AcbRt{RTX zl!)$ znwJ3IL_VL6RTu?ZT*Zpe<(0s(S(ob?^bPq%mo7_X-DHPATo_qN?wmQq?77mR@l!EP zOS!Tvlhc^IkHm1=cGSz1Unv1)$!5j7MlRmtrdHdUWusf4KA?~X5IW36GK|fhw4?saROSVJ zq{&H^F<~`w17X;59PLRnKW3BmQGjk^ca4PcPij`-OMQ<@9b@ zZWmehcz%10Trjxyh9W>nU8S6QKuK?eI?zWMglvNnu@!>|*(!Ge;3%%t#y+#~L0m_8 zU_a;5BZ;Wxh&K)c5ThFICabLqCVIBu-=}S?b1pcs$FflNqoeIIC0uay%hHTW z(^0%o*xZU@z6o7>&i?@H&DY(EsIfBfbC^k{Ea882#KSB3jm!Yt^3EZJ+v_hB3L}+F>ylnr zgNUZHSZvRB!M;xxmVe>|>@m2b6N zT=88Cf7JKt75)#vujWvRZq(N=WV47nB?AzPa~-@y!z&z2)V0Tq$D*qut?vQ`HemZP z^(&!{<%7hi^~|#Ah+1-+o5J4*Bj0hX%}$|{XKT1Og;z3*+}?+B!<2PkEr)}9uDV1K?Cg$>Jk0^$6r$lqGW13n3V=eUK4=f*D_BDlpaqg|`l`-Pi=C_b}Y$f-$BFq0CKNj~Ny z@A{Nn8kk+~0w3UPT9vjhp)%__*?*~mJLrg^vdZ9Dg&v{S^XU;kQ^NqBA#W!?WX(`3 zED=NUjlY+OGE4DI4wd@nFCrJ$kj z!{^omU29R~FE#6!pGsJHDWE@$0E9h@SpT!(|cuzU-L({;FdZjZflg(u>Pn1=$UP~h6A}p zCSoZV;1kfZ+Az$vnd)K4N)?9P61m>TY!b})hzEzLVZ6cxRD+KG@jfsSc9)(=4`9cM znPoM&K2cMONo{M7(?`$ZPy`Hh!uH?9Yg|jrD(b?_4>v4M_-n*bOI=LH;}J|^R9@lL z?q@ZLNxZUx zN#<1No5KG9g(|f>PgP=AFy(~|jtNwE1BmS_t#v9De)`H+Jf43@#j=wRiALM_i^*|Q zQJp+`yZ* z^_2YDVwrE7s6aet)-@y78m|+1(}xOI%@q)%=5ZJvZ=Y$1!DhKTh|Ig0U=lI(mcnQM z0FWu^GnMlMM=I;qV_IM{`@xK*iFp`@xng$n5tS?D)7ohEBmldX4JJ~MivIv{ z`+>{uand;7(a9|^;#y3HJhL3=oq($6!gCAxaQ^^Mj}>0xOM{R1G_+}^ZfhzVF9C%tgL!z1$$gJl z46#O@Rl#1R6eO_+Y;M5ov(aF1I+V)p26~=3e9gg~Mn2}p5W1DC0|mF{T?#m3*l5ZN zdAQE|kJS)Zqh^Op%b$pQg5g{7Fsw=#LpJ{aWbfPxCh^~-DU{B=)BW6FtS#Y;kH~zJ zIMm6nc#yx0%(kTt_Z$(xCn(SAHpJe3rLsQ}CHTU`YJ2aF>Ql+_J`&8_7rp7~kDM)| z!t!cYyp3<_Qs=n0L5c)|4Va7>_JLkjwE&rvi*kW_Zas_f3XLG9Ob9LGXOWq&N@iv%4bA3a8fptj zNrZNK@0ZkLinmJR#p)Z?%|1+#c*%Pj$flya@e~ZZS6(1D z9)RK^_hKVp<#N(`2}-_~3=5Jyjl^MdApZcj7K=wmC8mcby^);3TiQl?Ean^2$A}Ny z0P`~z9eYlK1IyGy$sA^<%iPNk#J-#vlz=gqnu2}6*&1axaV+`g`i#pb5E2W#;u|6( zk#f6X{KL2%4+Td;1-)*FLhb10uh8Op+a=7A(DveG3}#)+#@*Dvn$pbK?>_qw@volP ziVPr`-nfBT`x8VR)Ha}j^06aTJBr z77ANfg>ZG0PxQN((FE=f4`cN*GzIfTkw*>XlxF>|INRD-+s<9=my^tR)Vz;*8h&RS z4xrb(@2O7WTjmfsqwCD#R2O3J5gbntvSL<-^*?Y=l1u=j8jckYGqm37Seips-aBH% zAytC5^53-2$Qav{AS%ztxPIbMcYc8bQqU9ovguaCx$Id-$A8lVUt=CGJ2Lf&Z15$b z&0NgN{OPWeq!?rL;ExYxVM{s+Oz?cAMfmNgI(8V8pKsBFU=i5^Q=Zc^eM}`_n{(B1 zEV?EPRyjMvA$Vo!$QY z%N~9pR*`_VPaBwuS3EuT{2?3oa{Ufr^N~hhy~Rz8r_6h{aaMMBP};+hPb1+KwG<$D ziR-3p%k%==&zGdzWQNxrnUll}LCf(fMusxfo`mXs=F%K<2rRcTY+>^Y{-cKbFth`! z#Ljj>)9Jemj-^rdaj(iej^n^EB}>M_#dJ&_+K2cMr;wrLZ?ynDk66Ol0fF1;cv z76uK+pd<9c0_#r>;l6PiCG~>ksjatg6spYU$B9kLI_cI@QVtRmBQC>xjpHag;C*E~ z5Z76Hs<)Vj%+FXhMiRXblO(@6SM|^8Xf@ZvmGc=p5jhx7pWyzc@h`Yi{4S^WJlk>z z4+FQf7H8qPiOZ$v11wq00M5BM)E*=9L1n|t5#|jKGXh&H)nB4e{93(H`;_V(!N|)m zPTy&47H;;R9VRVpuI2R%k&WboWBejtkem}^1&xYe7MY{`*5foAYk%joy7i9I9VUxJmnRGC-RAX!)GLfw}3qr)JUrB=VGPbT6 z-q@*Nb;LJAVe1HeB3q>lD&ZaCdtY#7D*2bgX5Tt|=iWXz2cgf@LRF=V#^h_zHT*v@ z+z4wSp}10cLf{2LU54RT@9P~3?JbG~t$<&vp!Jr)2G8>dojabJjt~Cf200+!beNEw z+Vu8M+IvGJLuK%qXE};uqL{d}7?q<{whlL`b7WBSFm^^zvEK=rj&51Gq9RZw+{nLg z+wU&Aj$;UNA-v32aq33yyv5b8r-Dr(mt6N#HZkTd{6MHYX!T&uqQh?&5SwXRAjLKu>4D;wy~C5DUaea^@c#gQ(>)4V=ZWjF z_f;RbN7Z>zfzcOH-ZF5;VYn-4b%FOSYe#DUDUf+M?@n! z+`OQFfwB}hmX-)EB|VV5Qo z$xEOB=TP;PmJb+&h;?osCdo#sJA&@^xR*+la7T#;9hZoxDkDgkdc=Tgfb})_eZ?{o z^Bl#lViis!m-9)#2fy)+2A8t2JB8+tWU&MDN(G!OIm$qpko=5nr#qC=m>J`wwbyw% z6vf!UJ*JA*3&U^XF}d$9kihvs$D|BRK9GXy0cI=G0LDbf8APC!EUrXV^6?vF!is(V zA^zb-jOuaaF(qzRc=*lx^oaXDqTIX$@lY@i3&(R1Q1XNx(ksUkGkh8g-XY`f$h(%Y z`H1ZV+T5#?8(|3IZo2jmnlG9qOo7M)9IE)U@qbfBJ4XymjiqQMt4zwy`GB_(Mc^!405J2+EfDB{BolGT04?glCR8*fc*d+R5l0BB`t%P+K%= z90aiV+_&%_h*gTQ_x1sVyXfPDNXxzk9;hxYS+A=7m>y-LmiIL(Wt~E8ue3HkJjs)2oTt3j| z>V1MF!Q5zI_lZJEni=gK%JcOqJ=cf_6BIjyZjiQR9{j3)4<04L1%)`M+fhN!{P*k!R{#fsZvLIG6fHlUZi9&xHx)b=4`Q17TbPG(Bt z(rFbc?48O;v8ctXl2A@hKVsB(TYjDko7IZ)&+QD-eT6V2oEG1vd!;_pnc0|;JAdQi>Z8X z9nUp{0PuAJ=4Aro%jMz-8Z;1hO{L?})BwdYmp9@4lZcCHn}3J#tDH8LdbmR>{hpWm zm;x9uo8`*|mrYFrF@k$S@M2!dpC* z2PCq7GFGFmuW}MX=ouxN%go3aQdGH~U*VLfnjqa#Ev?-Ahwf7#w0_RxgcNj3jN`dO z=Q7(GaFz!pdrFNT5H&kP;g&hWhF=Zg_=dd?yuqKDTOCfAI6IjSG1U=N%(u0-^C)g) zy-%g)4>5(dxsNNBc-NZ+7l{Tr4nSah| zIg0ZzaWPI>WJf*sQ{6%Y^XWOccgkbnd2@NE0ge18+!LBLN%-!N1IaS(bCHMh_pLm_|Mez zpnlMvZFs=@ddr#={6F>*zX`-XW(z`fg6qEdmi;?014rBx3w+FpHp9#k*`V-@%apC$ zv3yR%(hZEF8i<0#+sn9AYG?B^?fe;HCba;bHQeU23Wv%P+Mbi73?k?F<``nba|9eN zS{-?nviOYvN3;Agf>=E@8o;&E2xB?o7FCYO<<(+jsQjSU%;s()%Vwkt-8@TFlZN6* z0;i-aW$?<$R@eA9*&5ejdk@PO9L_s}SUgl0Y)N*ndFBw$n1QwpQ~g*FQMu9W)Fyp$ zh>q}Guc0#B&A&03$RPUiqE#d4AKGCQGODdhX111DUZ)Gsn2Q;A3Az<<>KAm}2OExB znekGM#s_mfm2s>sb19p?W_so3FmL$7QtD>st9(NQ=6N`pUBq|~+589S$A$Zwl&5_W&{vOS-5iiocLyI;t#_DHB~h{ zX%ks{w-W%DZsD$ViNo9~9YJ?^iQZ*a5u~VunKLstgne@>GXYYr7-8xvZhfRmwID&i z?U@NjB%pmx!r~lXB&sD;FrG0txtt=>tJ)XF5!%6DPDTF!9*5jQzjXU??KmRv{Dx0> zOfycpWT16o0H(%mrx2973bpWj_%R=%z6G?}p zqtX;0E}=nK!rNE)aLN~`Zc^b!CR6bcr%&|^(&lM@^_l`^JQs3?^8_kdc4}yHLb-Pf z&fWJ4hDByR9}$X^j|fj)kH-!a$XD6^Qrf~z;OQrXEm3XgUF03eA`L1f&0Mb@mZ zv4IlUD_b#eL1mD=T&_8l3@~_wJ>d*!1a6XE{^hy&V0tdQfU2q>Q;&9PAnIl7EpWts zVD4R$q*~oEO=`mko`x%o7u?OG6|nb|WLKnei_;9Dejw%kf=q3G8DXmMy%q)afVy(W@dtz_F-nCdM5zYD%mqH=# zA`Tz0{-X{bcsGZ{V6V8sCYe+yJj}N}62MF9dP6KZ^+vluSLR%H6h6ps&kz7L45u)+ zX)rzG9n+=#%0nCqjuG_%sDX&vV&gp$`EfC~SV!RlfB6H2DrOjNT-U8l@gG=S%Mj2u z<{%|?6`wO_ZmRSXB;qnShmAeeFiQEyToCVul`d}30b?yb!)xpHKT-Jg4xdpPTIsVd zU^3*Sswc!T20vs}+bV9qCjmr-+!KNy|`}h*&_~y6yl}GCSpc!GI zUzq&LvL|zR)b{=^7@SPv@fi9R#`uQ&{{T*4bBSF+%g4%7Q{qwn;pz_rd=FWdgh+XW z7DR=t{mTq%(ra|HjR8r8d(D3fUeV?JTdho!JK#qQ z%9_gCxrw$0uTuTB9A08T%xk%4^q0B2s1~|_Tu6b67ZvS^>9gr3nXFqSLoiCGb4+ow zvTp&RX@wW@r&6>Fv+#x#9s+NFh|UZ}Lg0BKq{#q2n{(Q>OP&OVOULU!L0{aG7g1K&_CHrBmP7!y~_0ADi#@R;{8W$TNUncgJ`duBR4V8&-AWp>I6 z;hLFJbks*Je-TDLv)9++Ek}RB>6jBq2Wi4wuiQQ+VHVyA<1TMx&t%Ll(Ml~{4kD3zN(-g0V9*?L%5wf`5BIA*cE5u9VPh=}zn9A9& zWgZ(wEKD7})BVI&-r)=h*|ZDy5ypk>Vq!D7N452h96O0mu8& zG%Sg(1sFNVAFmV^8}TFJ`AR4#)6%S#%!o{S+ODUz(XD&;!y|_ZFN?CFXyRbcw`Dh9!hPSnO~i zyz><=6%NReD)lk_F>}QB-^3Q^A9a~SDKUINN+vDM(w|5=UCY>(%tZ)clg-m8{{X+i zVltI1Zgh$)ZD2i#sDZWPkHFK(nX`V&0#Lbr5*Fs^v~c#{wCcEiU(4n+n#s79m+n5; zkApHwEU-I)MaPw9dI*QCw~u5of^#w2CC9YHIe?&+t(g4zjuhf)m?#@+AV>D5O_xR; zOes?HffD9R;sq9=1#V4ycp%CP=RH3J4p;_|m17)BBWp7(%tpGzZ1V+S1CPX@e;wH> zm7u(nWJqxflA)LgiC@B&)BD#?n9*CqK3-2GzIB$}j-p1v6SAM~A}o@|A+JBcw@8|K zi=3*&u42n9Nfm=>a1X2lj^_z773B7rAy#;mF*_)nVK=Vgb3gh^FEYKPN1Ep^;zc=TaA)`*1k)U>?aXuQ z{40}|3rMy90Q3Ajd_betsFJ6MHPQSEuSt>Af6#JYpE5F_b*=2sS$vYsnD_a6m-ustpC#}u6{tX?sCm5`E?et`b~us&zcRIel${yCW^zDv8ryAhjtikaeIxtPvkScT%|H;DWg zm=Qsi+sht0ltGtf5h|&Zf4hXm`zM2XBeGZMgJ}DZ&-zpT6E1gpMMSQFUl0>pt?R_M zAWmDLSxK4nN=cS7p79oK@*r5O+sI0`ZNMJ<#Xag&7cZXHA(2wu8Ej^IiKhxlY)qFi zBgF5w4jFZ1-Xi_mVIiQg7ZyRhFk3*)G?DO%{?SKF(S{{zTZAjM2NW?r>yEm6CFv*p zH}uc>RBAT$8BseiIdrfluXvabO)5W3Ko-ZXeN;on81DJ0;DE8IZoGAf_jBQxH+!d$ z`k_OoyGmNC*E473!R!5=Cd&%(8T6n3!~i7_0RRF50s;a80|5a5000000RRypF+ovb zae3jv0CCVpbK?N<~OZw0hUst&f*|PmW_Q)_vl;r zgZBY+-<(523SB$(ERxY>W$#e;Cc~@o2#`PD5rBtbbABdeq8X^-Eh`f39pfEg$QRvH&XDEDye+ z+6GcU(zSq2Oq7Lg^{Cqt#HDr)DGQpT0F^csla0sXE3&5`wuew^(%fG=73LX$6;30q zOS^Hc{72S7%jEcq8(9n2>QD{zA5knmqxv$dk>YFd4hYc$Ur@6W>p1*Q@(rT=Stv^7 zl(F#=o`3w{MMx6sIn>F@C@=8_a65mdS<2`AlXMCn3FJ5T{p^wD1EpR8C^#UutVSVZ*qnW^0 z;v;S{;l3S8TD|U=yy^uMf_j8m*PZW>$f*PDrY>qc3vk zZ#c7EY((^ zggLrr%tkHbHZ{$Bsqq}DIaBil0;!W#>M>o8UvOMD0d_7>1>NG=Nki<<{zUSM_ZNcB z{X{L8)eDH>xOGHH0@m#PM-<*_Jx%3>hESKHrNC8f$40-1*=1Z;&FUpw1j@TNwA7~G z4^Zc+!a0S6cpMRm22hH`BF3hnu3I$B4B$I?VGY&oFlQl$xJ4|i7UCO3oEv@2U=CL9 zU?7K4dgLD1>fqvZq{^;V)^8iaxFs7c<*1=y3*%7kMI1om#)KuH4Y&u+mY|3eFZ5^O~_2^{sRRa^eNKh#v)bBC_gY z%b2n-A1WC9!PWHcFUtv@fmYWL{{UE;Y6X_7%y2o6n34^4#v4lcc!sqa+xUR;4iZO1 zQ;~^L+WF{()G`@j8DmMOBzv)ZqsN$3LUhE<80Jf>bQWb9u@ebY+_ZHh)fQqCn$%%@Fg8TY}D(K$Oe>yp$ zUJk6^?3nw|F&q&a8>G!frw)v30aFT-ppL!AhFUdLQvsk= zW)*j6Yz@HW97AkinhqBv;j_!RMED+~76}e53NcH^sJ%-&L{f-0{Y#ZzU2br&d)!ep zyLQKihLgAk_Fi!rS*O!dq6>Kl00BsA%ziD1@Z^`AL@h%B%CrY;epQ2KgTTVKk-!R{ zfeOKfqq$%Wj3re@=(@=ME9M(!tz|of#Zf|^m+PZ^}I_ zk0&re4WBUBX?3#9%CNJ9sMs>`sG!58GbJEtPq|e3FBcyL1<`>3D+0L2j}o)x9hB)A#Nm+0yW#vJ|X7m=&F$fukkwT7)$^w8# zph|z69Sfh3E9L~9s&yAfo&XtF#IPj~PQm!_&o~34maB+#G*<#-3pB?P#`!#T zC@fg@ak>Qd)xoPr3-JSEk~QiTkc#Pa9TD)cFy706+zo04VU`W0gS5D0I8;fimB}_* z2Z?O9ZRv|(WV4*bK-WaTrmi~H-pn=Jcq3t1scnGJH3vH21ExK2?(tAWdRX6yV|KL_ z?g!cRMEfK3fT}I~ZWhGKDG!rm{Ci_C$VTh8m+=5hriS1${{YYllVg5SGEJGF(J-_n z8){{HJL(fOD#MrsS;GlSjgEPNM%mdF=%I#ML`wPtmFUc`4PlEjkVP2pEZSi5tDN3h zejt=?8T(9+4O(A=09?I;XQp2rIJSEg7MZfD-A&hfePWgAlvv3P0MHL)bg5+C!9&Uu zd)y!K+$39<1-pr(*j7Bvc5HME{J0@UWD>n6BawrHHq0ol3JwjA;moJB?kPI-Y9HBW z#s$G_seB{Y#tcxx)MMR&@0nwuOL!r)Twtgr&g>VZq*C-PB@pFRm0MNX%PdN~(GZr8 zT}(?2fvK2+pn5RD zt*SMGFb0z>eIptb4hoagEbW@@}yP zM^mfpA0FKksMLO)ez{@Rpz%UF|Vv)|xUVxzB96@HT zpezPqK}%(?Lt(m>0bM38GKAWYZ{iZ-OxksU%%ki_2Z2Z_ zDy7iSCo3rq68TieRRhj%_?QSc$l@@4!ua-#0`70`fFFo?0r(UZ;!|?JgFL zP=o3MRE(%)in0u)=4P=rUgGS4*8v+WokJ6eipoj@2OE4IWAb+`otMnQ>6+!Mi~ujo z17Iq3%y++KM?tm~MSa6@93y_+$8$MhhzM9F80E9wcN(qAZuJ6(lL)1ZGT6g0%( zoG)&TLGB8Hc;;GvZDG~l1vp$9z~nFmtLV%?%V#VWyJ%z7)SxtY~Y(_7aBqR~G2m6?( zYK28oP~5e`@>;|MLy`SWQrS}Gnkk$5jL>Ir zSkU_baE+3m52Jdz4l&CSB7+o;7!v~US$8i&)h%3Opp|KDAezzR1vX&=*oAmH2A{-! zR$-w>Zv9HsL@Y0dkw}tePz}Sb)ZE#&3%H*DlK#Z;hB$pw;}AELPT7Xr}oJx44RVO>g4g|_;G@^*A3 z{4#CG z4({_SL^$PvuQdtdx6HgOTAT!{%01BoXGYP~sH|aE0~Qox zsL@q+A(VFrmyGoanl+Szs$|=Vff2HT%ibq8>?L0hN^7c|W!Z&~@QuJ9!5SA?SS7)B z%znCSt%Kj?2r%5%)y-<;1=*e`3%oM?Lz zZA%FpM%05W3OCb&h>SSXVD@>A(riMzUe{~eC~;78ZU?4$$PreP!c+4)2a1ANEKX7e zKyxNqSUur-J;9^E3WLO~R2@rpFm2{5qVaI!dEj7a&PKDf`ydNJL)+Y@rP{|$$4$(W z7)$)IQ9wK7kCUihPv#}pZMc?_Q7fE4F3$s~(xSKsN>sB|sH{zvhe&W77>lFHlr<~qPSk+U<(3Ks1v|ND!GL3fM2ge=C=#jU!N^x}kvPIKl|$TV5rG!xenRQfh5d(8v*sOym0nXzH zuy5i!J?vhjc(f5yN(Na(HZE@9xT-Pg7{Gg!eyhaB?lBJZ4a#!_%`tJpei(0tum!io zx^wE(hA?$RX;B>jAqFoo>kH>Pf<89gk-!I}Cvf9R@f{N2*8wyY%bjKQ%r3-AU z$r?=cfI#?^t^QYQ{YzVR-l2l{7ZwoFhE{`zdcRXrvfaLuB(wGz%BlV(1)@+dS%GNq z7IiQeRg&Pw&z}(l!Aub*3shnpnXGT(H~>pJJj>jBRf^~;v4*AQ`xd29Dp4+Hjj&B> z=+6^SyWyP7bS8sKPbsnCs&EEKs~+u{(;44hDd z!TL)o#!#+WfII@PhzGkdv0HhGLrzb!T5*%UC1I+qy!nng0=F01{Y)?+SXN4o+^|&7 ztg+BsL~vXx)36%Dxe*+BoG8SssMDnk0ibZmcek-qnh5Wt{)B$a-Rj~ zQ9^(KRZx0lwJ>c*4+N%|F2dX6tp@|RCFX_5DhjuqtTf3&7YZ^>-ErJhC1-89g0-Uj zLg_}qK0DI*`;3jU>sN4!tdPsE)t_X#6uztqAF`!t*}PM!kYk#Uf`c~XkII}qN)G|X z0kv6uOwlO~HTYil)Y462$V*^{V?p1EUsZi6^&Wy`{Q;5(5cZP5d)YGd;Zsi|r1C;7 zG%v&i8c=5Saa~QgZVJRse8#BNw1S_Q9G~5pM3-lA+~geH#LE`psuHnUn%jH^{Xskx zc0{Nz3SfxBR_s_8fmqAjD}iQDGcypIGG9!v09G4st|Et9oT7PyC>AY%7%l8^F>>#o zV+oMk3p%|i^D_9wc})IDQ1n`QfU{ctT)F2n4HW*gTbXnrb_YU?u>oltL96j^<(zM- z;4m;sl#l~gM<$m7doQ5{YOdF*X?_Z)9}RxQ8LF$kA`c}FuD`%O;|>a&gQFVq405k)2tKut-$pF8pme{$s%20$CZRGwwA&#gjh;sh`mka_G00nW>ZM0Fe z)A5mtAY8Uo2FgZpf=`Szrv~?%e}!aOL;kfQC6ULoALVw0#306ed+Y52D zE{BMti4Pt>v>_e?cW_7s3ZoE_S6o2#Zeh~N+cAqnXK;C>5Ee8x#YWa@1t?!|Vut}& zGt~BmvcYKrRK+Tf%}0Z`W;%}@P;^wuD2 zQJ2sI8DCEjSl7YZ@fm@Nzz-E17JGMwIY^rp z9>GzP(#=!4?jW@F;9C6D#mlYt1vHq^sJLu*?mLEgW)ep97=1cUNNy#%N{(?+u#ziX z@MrTK%*d@hxq=dc?`!5L3KIr2SHlBT?F>?#Tp<0>SAjS1j$Qcl$FX;B^#p*u%Tk3LF*>r*aIA$iS|SMOvmxGL^-p<+qcy86eauV3XqaNT zqWGE%Yd69|5gcYwrH8!sL{v4v2I9277$e@4m2O%;>|8J$?k1%LYzAfYBU6Q>0cvzX z!<<55jS$NLjU-FskNnKG&`hMTgh5?nFUr0mxf!l9yaCE=O%jiT^Bj;WsAI_Pmj3`& zI&mkoM*d}0v2%y}h84f{Yp&zM!(DvFJiPRKiEs)m8UQ+)#UM3IxD7p|=#-coUvW+B z!pmj$uZRjaXJyxQVDgfXO8SkjE4E>$E*LE|JF18#Zra`x%hBR6sN`4bT4jxeukkL- zwm4Z}6i^p_ACd*&D@-Tx-k=gSV|*e z%!AKy;qo@6^Z{G#%lLzS9V#1TfB?9PqUe1W(e)i2l>8HGr>0ba+jdHz60$tSSIu5S zs8fItr2hb`j_qBVAft7bbMVJ4#CPyOAH-3qABI%CqOoNw$|Bs<0{2*iEnse|+m zmhTCR;Uij-vKl!AH|Ri+Rs1~4a%pp>KQK&+o4q*c2Ipn;{k9 z58JtUiuG1rjgxT*JhVa*_USl5yZePDHk|UYv*ZT=xPBRPSmZ(%&`JpA>pO;sHdhcv z${QjwMvG$q04YSEauFD{VCwKgt{iWPS}nHQKQXNw{mr%b1kV-$zX)EGI5QXbu-2j) zp@TTo3!V1j7N^oLqikFdzt}l`r3qC?qx_}p?ps-dyLKCojc)OZ`Gr*uYU;^mYcXU~ z(A<2LyaB)!uHfdR1V&gPKDgiFJmItg=L5-bTasL1zl;Kv?Vu`~ZH;ZgtZd+k! z^Qfa0O5>y30kAec_#m<>y3{7Ka|QINfkiL)qTywcR@+&G_YqM^;##Po#m2}WVp7#X z`HG=yFPz6`cxAftbbO#H04q zEyq}{Y6=B!8xS$EMVxW;lnoawq=UIgU23WB6&kn5cJOfvl~E;$eUD)mogQBqdj({rHhyek1 zEU9agX0L?q;f@}=jraB#J|&f2))ERWpY8;wu8}KfQqu8v$fwLXB=q=!VODo=YYjf& z;5&JW8)~+0TwooX`H1N54S)lE#;&t9?p;A@vCoM`6HVKhYeP(D8g7ke%plEV&O-Ek z0%qhd!j9jmd>BCRGJsmrZ>h9-n7x-yBdJA+fFI!;5XiwT2qRnK`hbjP*E}aJn+=|V zUZS_k@?DbaMfoU1;I@VYyIoL2h%yH(!gI6F7r!qa;~W>2^#i=&!hRqdh{ZP=1Dx2u zq5Lc%B9g?@7od1|QiC=uW2W`X^#CT&3Il*8Wiq?*F?3yDP=GH=03VoK1Y<;dPy`w> z{s;hBO&KE?T6@_BS%Z^x!1LNhg-rc+A^Ew9W8kXzm&A$X#3?OhE;Sj|1(}wEHR6};z(mfVdo7todMa(r9iCIJ{0cPK!fFH*o*;tv6Ta28ACOc!^{ zA4~?ga6bU*4cCF3AyqYokYa$Jk6%=t9JJOlEpwYxXPTFJR=Q$rAJ{i?DmVuf0l?64 zzI**g-slTUh4e&HLF^}tz;dzSi?V9?h_y0#8zPLN%hcyY)ps?uv_QlxpecQ^NARKji1kkr`W;717q?1<|~B5}Tosf<=>StxJ%r)xXqX@ayNK^O%p7L5w&iU5oj50!qU3FvY23g;s}h~gmV%nt2W;V;71So;VBv0bp8 zLxbEHY@vE;CDJg32pT3ZE8Q??x)dL_X3erFM#k5~%38JB!Nt*OeZm1P9YigK)8pI) zAYuGYV$r6iY_^|qCrFz@G~Ug52xdYB78wJPG>oPd?1x}N0A=+tYir!Xpi0znYs-B6 zM8<$faZbJ>D|DS(i(S#DknGDeg?~E0l+jIbC@Dhv2Y%yW7juk5sE|qptQKLcF)oJ0 z!EsD4vvT&geKL&IIBvK6!SgGX6%LFqgX$WHR$tV^Q!T!im#DoLa>b+9aSizWG0FH(IZFyVmVDX$!!5*kuK*es!zjJUZ&MeMYO2*Xx+ zg$o98!~(<;?a4AOD+RxMf`I0=UmTwdYW&6cUA#GnZpM{k6z%UdQq4l(ZyqDcY%I3p z3q}O0ub6=bgK<iG=3%TDLM}SbvQQKgP$g51*BwJMYKH+^l@7}q z`p2IzI8t9j$m_}o+Hb>oKbQ);dS@z?sO2RTnktM!lvVX{l^YP|XU;NWYTYj1A5{j+woSfw5ws~V zV-YL_#x06`vD$3>c<~HXxz$2}s&v6kxUE7PMKP0iJ(K!|#V!bXRILOC%x)M>tug60 z0?~a{k3_Q9)JS2By2250lBFjeMPXZNtXiNi1W4FYR|f~wR9fwOj9JDH`zT=I(8O)M zsBT(-9ooRqgaL2Me`J;;Xaf9Lw!2AsV^?eY5|R+7f$=hd6~O>dY@N!w$*hw#Xt@Li z>~Mo%Kx&Q0&w9q;AS^aR8WY4ybq>PfPgP-|!~2L2Zf*@}!?S|egotcM*OS~aubuw@ zBNG8-Uz5`jx?P+~LwFs;qPBR3IuTc4Tt%<(9X$mlUqm6Ul(aWx)H_DO!;iUeE2@jc zxr!5yr&_S5hB5|o>cLDGenD}1meX-{b@d%u7?`?|N&$Ua2o$y!TLmoXEPiF$ny6-< zDDwaZOeLDWC6raSsEL$bssqC%Vrq=`F)N&-RE@!=Ql1umIUwSVH!Hu!75@O0v|Qa@ zTU3Rz0ODDyjtZCrD8_KaS0JUP0D(Y$zu}(>F1CDcwZMJ`#+7WolFyh0I$T?VW2~PM zS(NE0T{&V5VbUmr!KqQ!xKHK;6gYF>oF&m~tR-gF)cp6QV;yE%6HQZ4ST4R*21gfUT7yBEEWGoLPS_4ZJ)G!rywh&w#EkOe;7|c}%L|qkw zG$Bgh;qXOaoZ%P049`>!nwNF;VfrIQvXIFS1m!k;GTlSSnek9!^C@i|j(x*S^gEXA0s3h(jxPkbqfZJinQF`UYpV89t4iz$| z1F(Q0EZwjBF!YckXM%EbI1zo0!n*>t` zW`vza1F^-E571x8sOnCz+3fQL@iDqnKMv)ob2JflbTeI%l0bKSz`&-4YFggGnWY@I z>R>IHIBwePe^;i^2SFG`Vf9lOIt?p zG#@e5iP3-V0A>X_bEaXo8pf}=g_>Q~BamFzNm_2k=t>1fGi+)WoEwc51r{_X$zM@z zM$(HQtpTP`N5a+zPl#RyBZCV?@PM&lj0C4^RSgd>1g_@F)2tplf>x+l;9MO;(u$Dn zH1PX?HJB<&X-33j=GcdHIk`W%UuXe?Fe41KwlB zkkFb->Ki@DwDS5%y{P=}Wy~|sTjxJaE z7B^J7c?kF((rPw9OZkqoLC&QL>$6gfpfQ-}hMb~hmy)mbGIF5e`Ccku}>T ziz)#?TK@n~N0~0MMCXd=W?a<^Eqj}~O=>eyTgZFXI0c##f%e$w2WOggpN8Jecf(E{&jzW|VnCr&t z8eSWi1tqFj%SM}}hv)l%uw7d76|uC{ZWg0VM+7=6j6hPa7?fXtg@UQF;$fCk&m?u# z0#IGbNKmd#dzBBDiA(rkK(5ATS^}k)9oVEJyt$iQOY8QI+oQdZ6K#qb&d4ECHd9}- z_bQp0V$%m~0Q@l)+)2yT3CFA_Ad^_O{w4>&uqlMcE&DuW!_*3JJE)%GZQDVIs)tGV*=I3LQ8jgu7m1 z3@E`IEAn4Ak1vVOK{`%SF!|EU{)Jtr&2te59i`lDF?8qjK`AW zs@hjK^9kQYy&u#)mgbGHOaOyM<6e~I^%cMl=ylmBfbP~SKir`JlvD_!YOQc7;w}dA zW9gQH(?}k;m8ewD2nRKejNrFwZ`I6BKm{79{Kai=m#7JDCA=hgKTXGxY6+pwhg8w;odhYWnlG*bB7Unj@JD&!o_86EEeV0 z)j+um6z20RLKdM$m0SX3{Xjai$;_(hzneINrh!7|3JX>1@3WtB`fr;L5uqR~2MO{+ zfF=IW`9Fp`BH^%}j}}4&K9NOl&r^-E?JnubshCM-#>1L~>OBd9JBgLexbqNsBBM#H zLWf5cPCn*`4RDgxbWwJG&**~D6+vPA!ESE`O+>nQW$IYdU$}8wS3%|(HYzB@DODDD z`ho5Z93mE}SL{vonw=Q-c$%&LJ2T`!1z zs87^EZR!ft-W7Wv>R7rgZ|(y)$nna)px_Ze;EsW`g6*f#8dI`KN{*NpreC>Npz@f| z;r)`QM8a=eM{*v_3bm#Y%e0JXabXvFyQbIIA;94Te6&-32@9b|7 z7#`NaUW%(*$0Awt9h`wX4Utt?!|mO zpFPAqlqj%N9N=GwG)TuKeF}V_M85nXfATiU*V$w~C-BFxQ%x0D7MBR*xSGJU9ZK$$ zU=+WYS!%Moi-4WefUkD=ndStvXnYh!R*PJnWfDp`RI>M1=237J`54;!C9rMK9|&GyyDkJUTeOgiurrqHnto-T zjogBnt#=^t!;*mzWbh}J<=1WTr@Wihnxd0z})R|&kTmWyD*X&D>n zrfT|`n?MFr1BYiZO@Ip4ixp|fXEbfAOPKSPo6c9n%Tp0UTON*l$GMO!J^dSuU7GBd zGYC)(jl(EA3<1F28Ab-w3coQ*Pc6T2Yef;-%Z&+_lQLCb67C8&)N0Yyu_^{|IK;{O zA&f%La<(_P+psX?pBzopG$v*{q*Ja>GKJE%Flb_O%w(clDuRI-Po`PD)so<7*wh>= zzJ~$%R{@m>+yEF9mNVIZ4r6|SmY9LirK@7x5ltndAaIS982X;+Q|WQ)rA1}-X+-?1 zvI?x5a=B`Ph7PY%-j3(X{X~{F-7ab%paTkSB8y>Kakz9S&)joWK%$XRt1j@fFdx}A zA1bquA9;d>V;YPZqZ>FNDD+PpuPk;iTvMp2rcLGIVuh7f+^CAvJIe}bL>UAluvc9- zZs?zg4wjVu37VXRvle*Op-FP)jN6m@Vbm6*Pcnkl)N(Oov#N zUCp>NK7d4UWSX-8{1Kx}r;t1L!dM2FMHIJzHy*7qf7KId04we-`5ZFa1l}5z6P=Wj zy3ljtDag2JCBmzDN6wJ!ini{7ZTA>xISpA7h8%^KK_rp95CDi&Wr|y&#rc=ATKT+1 z@>VaB{{Vq4Mndt1BY5Jgj3Xe);LOg7{JKr(COU`Ul7-L@YJ@t#!F%!UE0(RYvx)ML z%+@tEhg$U3d`$;%=|}X#=Ocv6XU0Au4U`z}q1L6}GWNy&ky9q9S(&6}r?US55CWk^ ztxC}-c(_0{dj?~U`au>Jo2^E48|5;_r!Z`&U;@y8p5Y6$Tr~kHP0(c^tQTyy>Lle} z_X09L{{T|5o|iOyCHR(nbpQ_!7=ry&wQXMkpOO}bleQ1REoTIU;??Rg+m`W3X_dZt z{!l`x31sEobp$T6d1BV(!vnE`E9wVLMXiUGQrQLD{CS8bYK=E?*euZs(}r4oE?B5} zYy83ROrphmAh4V%Pu}C2&Qk-i=3K>+d`6<10BSdOeWk6aFrTE0_c@9*YA{pg1k+Kq z8Ji{NmMyhUD!H7G6Hs*(*(l5bJZ1~9VP2d0Wz5siPEkcQ@VHdQnSIAnHDzVDs-cNIe6ii|zhX6b?UOI3l$En;cpDAuDg;kbipx1tM=w8O&4Xzl*Y z1z3f$+U`;G1vc*4dLq>^aGSA34iU2eWxc>9O4)!8<*v4d;yYa=!;y&IvydD5oZU3= zU?6B2?{%Mam6#2wGOMCAYD^Gnz#JLDUSI`qB6PoCR^`vFtA40UfJ|&YnOQWe3ieOx zS!U{RQ?F6b0IObNi5zCO`XzOy#r|e)xNBWPiB+f!dGFM-tBgJKl!Bcek@n8mXV7hv z4=RsI(i=R${*^*=1#9ugAb93cK~i-t!F9Xv`HYhbwldUu51EMCs_itwRHe6gW|<9M z1{WlQHwTrR(7VLWiWv{?AfpB-ys)7*7d=A;wOsHqK$jX$6T=A(f}b!m1B_}=%0X8C zqA(#=s+IE_h)k3?R)+WS1sjcUk3Ia$2Bg)OZ#J#w&Ls_@)gSibJonr|QnlOi3jRmr zm*Q33K*Z8>aTsx+iCf z2IGF!QkhiMH{khUMk^2^ka#+-pi?QZuGMn2GI+QeXQ^5k5H>ypRI_$;v#Yb;C_qtE~|kDpo9Zb#a2#Azq=5kn^93Q_W}uB)KlUM_ddnMn7eH zWXB}t0elTb@pm1qcA&5vVo->=0dnCs=?Cdm@h=m_hSgJ7Dbq;GVWrGia>F#D-AqJc z>mDg!EvO##Y`E^zK(e5EbrIXPJ8mefSyS@$cfrb?Edpw{RB{6}P@ z!gVc;8-~5Bpe0o@5RbfvqWGu^Yo31iaW-J<}s zE>O`l);!_nIeN_UD@nFSsno^>aGcFAOn1PKWGWY4heP_}VHT-pB)blbhN4^ic!g5; zl3Ac~%PkJiu4M#Wjv1E-TQo)kB?m7jQEghtu{*iJQl@|pp8MRPQ%X9O4Q+#3?r%Wm z=pjuLZn=vtQBB0JEkhKvabbQSkTq0|4seaxE?${gZ9w=}%Q4!e9KCLV9l%wUKLjVl zMW$I~t`1Wona?a1mI^fnihI8)(9L(RK%-Cq!^oT_k<>}-$r^UkjPJ}dY}mSSY*iC( zKM7AnN4_}9aIIQZx7bB_K4H5LmA;SM7V1+?jGt=}hH`%JW2rd*0L=+Js-NJL8Ls_G0L;+xK>)>K-9%H^ zmSPOg059<}zi{PS{$lzoOf16q7Q7Id7+z;y9sqcbFvgK;H(ZfzilED@l_C{#K+{^H zS*=bh^E~-Au3iO4MGSyCAI_LGfU^L%4~O?Kt6~JN7OmXDjKR11JB~!E_8>J(eBH-0U@5iVxB}|sQ2?4~r#XrWX1!`tQrp|%#0Kr`-W)^(sKc}1 zhAuU_^5#CVPDUVTRcMQ@=3Pm)_=|+uJw{YACK2L?Qp$PO-zVsUij25Kv4%omHAqw# zyXCucJ07Aos`!kAXNz9my-q802hwpaj%lonVCp-Z8if!E^J|%2Wp-R;!hzhem^S_HEvf;QcHeH`1zc6s z$lFS3EUT8+0W<-)nI)BRzsd^md4k%9~!2I4`NW3C?&CS_$`b7$|6`jiN=#TXNh?smU}%u*`M z+l%osRSFho6KJlJO~WT)6)9tSnA&skmGohFhhWXEg4fUUD9y&+KW4D36s*LPBw395 z1iKed?5(DXu`vBYbkF?^bZ_c7%FNTJxQQ?*wet!Xm2gV#ZKfjn5zCDH*YZQ_oUmKk zKUyP&lwJP-6EYtcTMGQa0o|21_g^sq0ka0%NN@^UwRh?{m@w!d2?IhZ{L(&E#0zX* z6_FmGT9%_v?o#Ys*-0%h6EUsi4(c)j-*6@l{^dLeX>Ut7ge>3$GOL0)q0xZ0D=@i$ z099pcaU2>2d|I#8VjQ!YgzMBa#VuZ+=W!Y=tL|mX=1|Gt1Zdh>&apODx`NWdRo94P z3k$<>07__#3kt^(#cWG$HxCGSp}%kvqhi!T?~qtc1^a_9?g@oqH)XA6fZ@ZcO`*l~u$X zDujli&0D2kVS!a|71R|hF1*B8wejLM5}4Ff!d*AN;Lnr@_`@xrm_}>EtV|>&;9(X; zXnyKjB?I`F#f;yWM7UprQYvG+<}ncg-YH~Y=F;ys5EcGL0Q@3B3o)N?p+yk3!5I%n z$LON|8O1g*6RVmy6rY3cSU5)G+J(Mjh#x95D~!DV05QPm(u1K!!W&s17D2$Z*}s?o z0hX(&gfB?7j1_L)dcS|8e;s!{9T4BH~~!qD8Zi9xX~5?-Ljfq!=M|Cd#>dM>3Fsb1)$)J5LS2` zzr!$D^d?z6!d)O)9${$|1^bH7)-H2ZIz0G;n%NcZ+|9aPI$Fw}3??Q^DLZTm(`NdY z>LaS_QIB%)!I3GX1s+4UpZ&P0LN@u1$UiOyyg(AN)B{AvU7AX!zx{tI4_qA5<$GdU z5w74v^HS|g4$9QE?5xOKn`LES^Korx94|LBSl=)h8@Mk?Y+76j8yOu&p`BjtDu*v` z5k(BGaFUM?a=63YK2K4=l)mu3yv?}tFlB{|#hbn*!BTdP(a`vPMUzI#wVb8V;^qw9 z=ZW(b1rn^V^$CV-hcO9AE->VJlwTot%_WD5LB${C5TGem9Yl?KsSgddc#U)og?})O z)ov~_CD`}#lG^B%nD7fv5zqz~%OxsNYx5hma#Rh7_H274-lapr4?^%IGtv~RIQAb* zT&JqFr|Gf~JHQv7;#Afy?hTj(vgQ8(RJQ`pK9Pxwf%)zh3Ze5X4Wt&Rhi!yv0WvOy z*XQvH=N_f2%WVcr6J&5zM*+s+$vYH2n&t1b%) zUWi+ui%U+q2V}Di)=+Bto6s(0=ErJWrcwf)M*T6s7&?{)nypyZ%xW^@V2&Bv^HTbO zo6?c^7)m__+&B$@`ZhjQGn3jhM!YX44mwd`YZ>d*CAPN?F*z^{22-u(hy*py#7dd+R$z9;qZM$>D(U0q3niU$O7-RW zMpCGkn!P%X*6tOEbwV~MhjO4M@F?DYa=}xy)xMxAbu`rbMS}&Nd=SLs%UqOyP-!_j zmgv`xpb!bej6k=Ra`EMQgmEtb+4$~b^o)}tpt$tMfbfZw>z9=@ExiDQeNo)E$=p08z%* z#j=n_6>n29R@VoZR|CTUL|i-~b}ozNFs8z8WNyIY5!gkK{YQU`FC=n#OxIhDD;US0 zP`O8BF=Q-x@%^AC;iy+cGpDWHa}MzCE%=u6DwjbVXw}!!%WF)I&m)JRBcU zkuyWUXp9ZhA*jqq^U(-}1r1XR92VX>eaeK=I$zkt4A<0acsdDlHBt(?_GbHh!&so3 zy@`&|QC2&nc4Ki6yDQ*h>N?odoJNa-!MRo8L{|}aFo16vgZDyUI$2Eo(O&3op%!)s zfQwKyb$;@$9jzkiA$8sMOB!k!I4pd^YfNbvPzMpPRrC525Mj3tSg0=t)!_ny!y(+v zIBtbh4nU;Z2O$`6X=cOfHiom&5rDrY;DR_y*ASp8?kKf)sB^+m&Bil9EHE%O1nGs; zP{NH2T+3V4Lv4vwXM^R4sNEdjnQL7hHxvT>o11KM8D7Ywt1MsN=Zzz-C&J1AUHhZ8dgdKQ!VO|{Yz*zH;0r3dBP8tI_voxc+_ZFP-6(yKo5c3 zya0JSAcJ=OM>$yhK|RJf$0i|Wug+lQ$}nyqg~>y3Chw3X(1xP)_c9E=uSOrlyj1Wo z2T$%2AXRaU91*=lp6}+`h^dq2kA-^GcMEnU_#m#b~^P8V+^KuxNhpF3{wXK81%)#9ILUk`ERC9 zrZ_gcU}cr#CgbhnLIu^mvoj*oefycj+LxSErY!SNqKXe0f~7jShzVd=F)zuX!XMi| z5KY$Z>U1c+VNR9P6=^S~4u?MZl{vV#E9oB1KH?-ynm(KTOA%+9#4gw=w&G=08yZ@sH;Vm*@+AVZ`&APWZ;dJE<`FExjq==HBHpA-8w+bb`4unH>;A5 zxX$t=?FAdU@l_d{-()rlXPQOs^E2iG<4qx3zJCx^?IzwVGXDUyeM4f5e1Z9lfoiM* zVZ#O4Z-h@?jIC$Tft9GNSTdeimh;HD7jy)GLE!*0bQ%j_(A$Ac-fk?7TFfJiZ(6cP z;b7ibJ6wFmAbY=YaaF>eqV~zB=lF}c8V$z)4TbRoRvR@M_)7G;xCy}U%mXK4<&~>4 z^2Gv~?xHL|GP39^3d4g}E{2Z~$tj{5NK!0%tbKs|yvt_Fit$JNxWlYpEX%|3m;epm z#HJF^-Asil?zd3wcntL!awqa|A6)+c$wJOTmw0symGS51TxQm*z+spiJH82hRzhB& zsPrXM;$UlS{s~WucHp>eb0YixIUpM-f1q&ZdbE5mUgm z=!CiRb?4Ml9>&3MsP-9Jeppe>U8{Bn1Y4_V;o>f;4QgC~Bgt9IM@Yz$i>6o;>r$1n z4Lq#oUsIAD4u0070DusRTlztpp^ zGOV#*MO0q%Dbr^OxH1-=Ta75%8n`K=>0nP5@)2OnJ9hi*0OBVS)RSF9Abg>;; zYpp1W&5wM_5weuL)CFpqIYE02TYzAJzgAHB<_TC8ntj2=?&+ypwaI)zK~f-67)DyC zUKnzvS}tEQpi!`MDk9l|?@@pr6#7aun7q9XtXM9sAlx3JP2|*GD>H1s1RUFN%NKfC zyMut*=USBVy!9&Bd7wW~b&>AwQU(uXUDgUbT2%@DZ&ahMP?C$9VBv5;=7lPNv0Kknub&FF5eC#;-TxCG`}hQ!>yYwzOR20 zwEGLfzw!w!2y!(6QVVg2?8}YfrBVwivQ)B`4WG;R6;vhO7;cq|GG1V4Uzxn9S}4o~ z!!ow&+@e5Rx@bA~5ep)-)Ij>vacsB#!+1x8?5kt6`IX7ByiE+f)N8@7Ig~cc0j!sg zg@RZd(VO=N!pn_WU#M3#;mDw|i6ak{|l_5F(Q>s+l(nrMwoEJyfyqr7wc~N_CON(Veu)n zJ*=vRgcb`C*qp-3<-wP?MprMfE$*zFUb+Fovr$B4q_xB3V|fz?n56++!&coqH4?zL zyu#{%C~G5U@h^4~cpgcHhLQBo!p>ib|7s`8Z8_K65*7yU{Vpk0pRMX+A*Klw7WfdKg; z>&XI-dcR~S!D5469q)+wIo@z=rL{?@S3ZJ4>zGXoX%$;~9Jy)b1&Gj4-WO!`_G2+v zJBb0y8igDwaT`Ry%|Q~ZdB_X>!Z=fO*^k;Pu;u0_M!CJqrjg!dGOpN{z$`(lX%#eE z!z@D(F8=_Cp3t)_UhTR0z=DRUg!fl-{U<`f3qB+tF$N7__LT4+5fh*mL93ZB%qsiupGI%#o;y6&KSVkfSL2UU&zYXt5+Ij!X#50yZwrZo_<@PJRFS5oxt9#UdPz$Q4EHa!P zk(E8x&(y;I02egJ#b_(@1{dA-5ZPrWD^ac4cf_Tw?9~Z}>5eLhdA)b`N=KJ4R=14H z4q7;~FxuVYxxh%s1Aty3G6!KNwf-RiTG|ToP=}j!PuR;d!B9nJmh%8fYYl<-5YmiR zNnDO^Qj=LThjmg%zZYQHtqRX#D>B*t01c_~B}4+JIC!)9mqLY?wj){>1uVxCK$Wf2 z5Z=n?h_Y?A;1(#%%P=u}xBvxAc&KN}{LAZ2D^l8uH!cRw8S@fiEC|_Pr*xAwCCE^< zoWVe7wK;`aI~~dhD@)}peOoa^QrE;c?EOtB;2?c!RVuCHh?0#m{7T@rafQq5V2O}r zxCe^`UvNDvrZ1Sh_)AK(J&_x|Y)Y3I1DC{WfJ)%RqlG~YuW9JG$ZD#cnVL~$Z=Rr% z^EY0l5C!1x%)yq{EA#67Fm^aFa93+7zr*JRl^P8{BjO>w?h<@LNcdp0 ziB?}@T-ApI8F4eaq}TJs#Yqs6rv_`RTsw?lMWa5WLbudXs*~i24!$^;D<3|ZUS_G!LlI0K<20^lWz#|5P_PB01Gc#ps8eZwG(q5` zpMYhsRKSDVhs>k4?($c+=(%Qarmu<@@d_^knAih;V}dK`+^bj-sI*qY{$drpj^!=J zdx1%GL3j$L%hU)6^cD-4xRx(f5)Q<2l`XKU{r><oG} z1?m&M7;is(%2Lv5n1JnY%m67oCGpbYkZ47&SW)WHdIlKv$0+$ip;||&P_;L1a>n>; zn&K0Q6dSM`d8$Gr5kZvYL6u93DO)4Q-NI^Cv4;!O zP_o6fz8DZXhQF7HEWVtvEHL1XwNrS+73X4v`GXA=d&VM-o@V0z02w0Hk>QPwj$*JO zOKd>QFfTE?3xC^$yGRFHe*{3MhZFPT*)uYA^3&zaNX{Cdzqia_#Lf^ARhM2+)|+PI zGf{EOuUNhq0Kgl>3IJoo7OKLKj${lIY=f1sZF)Pn&_>%F75RtifIW#j8GkBUjgqO< z&!(^(yhBr&t^B0N&uji&FnDqSQ2KPrTR^rdDP?eKqgE-=DPB`|Fpy<}w-wNAmn>v* z9L5ooE!V?g^7;sMy`v`p`A;6`VO4EF zXxm|RusU-P3g?)O3-V$Go*YYI@&a>gC|fpF5K3b28HnH|DcWar#48~V;}|y9rOc)7 z;L-~CL9>CX^EFWwFt&JvSs{~>76X9s9WEBU*Wz4l;O;dGT_k5B(sZhQ*nK8^s}+fw zv<@>H8?jG_7V69Wad5dDRopT*yvlwZnwU&<^_-8?6KHpK*)GEC3F#`rlDEVbtrqL3 zoDMKvA)?W5dx)ahHq>RdkwB~gdV&Dl*|w~~phIaMqK3jEhOaFCQhh}xjJ>6L75Mcr z0j+jJP*esbMw=q=Y70dPpG>;ZVr*>`58QI#U1WSZ_?Euvx6a4rT(n#a+~(Ul%p8^_ zAQnapX{UHKDsj4r#MwxeC!Ws{(NZ-xGTcfz-3t&FJ1bkOvT4bNu^;ZXBedt)8nPj< zKFIte!GdPPgz@l5OI%F}gOaY?nhap=CP9SKPbKbb-&+EF@8R!}`P z?2hBFpUAd*_Zk7l-!T|#$GMS9ju@%{xXIi{3!!eKfCmAf<&^e7TK@pp>1xHMnOm%{ zh7^Q$E+EuUF2D^iWL)ni82Anv@dFi;#-J?PK@0~N;sNCs4M}D5#BL*t(FBQM!HR+d zl-L17+CTlnpeX@17xD1{+^gB4fR%6^)X1@~}qqO2+B53$b z;L~^`xKe9kzmjgzteJ{qT54hymM;+7DmuJFWzZ^Pl&P2+saS=bdYIE^Y#}Vo)$uNL zDQgBlXqD(~#uCFmbKnFeMe|XT!*3SL{HzPOo1Q-9vVnM&b!zHl#S$7Cq@Z}2vXP*d zmMr6imeCF)sd5Y_LC5nbxLxseH%n2(*o!x~*{ZebHZ5v8xrDD#)&kwZbje92v^lNv z?L=8j6owZXyOZ59@t1zNw_%IiA|ICkj8#Q&$D=xseBfJ1!pgAS#j$X&EY+;t{3|$U zx=zg}h^1goDqI#`$VXIn;yxCHR6soVm5Oc>Qpk@shnMQ$)Md0>{ zMGbS@01Ibz3yT>dpIzR)f2gGIEg~HmJ-$XKw?JLW-SUIl&L>>XdZ3MF2md` zNG;_z`dvF<3Z^NY!F~!Ml!vRBSO{Hn2=jPdTn5XxQ*{HlELl84%Ji(am{g~t;xKDC z&Zl@E#1w=wIQW1#(y-n$1Q;of<27y?9R9Tx0HU-@QG9rWEBfJ<5g$3IinWT-P++6H zCE7_DGiiCT-`862>8&4|Ooew>iR^^yL}8Nktn1+6bb<}6Z+0)}dM1NcH7SDVCc z)C+`+Wu)QeC<+~y31L&H<$&eH81D1LNpOy)dIhXXoF4CR%>vEDDxD7yP;&N5xm3Q8 z)rPG3lq@sD`)U6tJ%s>q}c!RB#p~QEvVdI&lIBFF{!`00+B7fbP+DV>V%6Z)MA=%*V7X075p-5JE@z$| zWpX{eUnn?qbKS=hmRG0_PCjgvC`s9h!dI65VwGultC;M6CO9nz5C(xv)y6K}Jx$QP zY?Y>zwGC?r8DXr!$|$-ugArl1iyAFf6}(G~Ob<@lSvsp?9 z_KjggD+SvFi>@fpqw_dZ#&EsHJG^E9y&wFHmS!)OIVw9WV})z3EBS@dj?3;{rfFDM z$}`Du53yG)IBCU`E#0^gP~COrEs0K7Q<`2}Ln?=*FYG{bHGOjb022UG{-QCk<=i^7 za^Euj)-LA=Ybyg(PCbDQ|lqJE1!VPv? zhsl@&DdGqT!De4D%7D~^ih6*{7O*gyG37Ec3@HiV8|nb1og!STq14mu(%hp3aHsJN zJBgfR_DU6Q`kV+D3fxsuS<=Q&LfB1#fT1L?TUA9xO`t1)bNIPncK`v~SThEmlsS~P zs8QmgU8%=1>;-zbsx+AEc))=T*wHa)4n_eYQP~5FEX~T{pxB01k;BZgB$zA({H0); z1{!F2TuX2>lqZor?uiQfI+1miMYz*HKmW6I? zb2TA!>T3t#nb(sppeWb&m+P)(Zro&Grw4I-xZ)CSYb)~i^8WxyloF&pmBMK_j45e& zmQ*|xmbH8w%iJYaA}niX%uImb%!QcchCtc?KbTkx9Ko@ow^fo5QI*p71@4r!WzY^6 zQpjZJ5rIaFzPwB&sK5Ayt7--rY`~bbqWV~+Gg#`P7BqfP&`|YrK8s!|FB0AG%0L5I zTxo>OSuS&f#L29oD*#e+7Nr5s@I>s1O?gfdT-MkV7Le%u?OWhGm)KtL{{S%AmVkre zR5J4M7+0dIs2fV%Fpt2UVVPxtL&z`F<`e+w5q-Lf+|0Y4QZ~BrP)C+yI^c7|XT-`2 zMUa9!=vF6hMxpA~BTk=E*0>@(j^-&SN;ge^GfV#f)KE$waVXA2a&8$hXEaO^D0v9@ zyWGSYa|-8WxRquDj^cX33b^4duIeA~A>#0{X+{ip2-?#ebLquAU79AqfuPPT*GY$l zT(IkWOEhqE8%35SB_ZN83<+=rf}OgFu?4z>b~Tn5OimskaqW4Wp_6wGk~>KA6kMD` z90r8uZ*-Nz>Z9I*sln7?;Iv1vNkC!FxJU>D=MurqIc5{*{>+4UGvhB$^+kSS!L{`z z2Q>cx46>xH{_M`b~!q-q)3|~-qcPz|BOdgp}D6Uex(atI?U>il|EtwtGWulpk$70W2ON9?~ z;-eI{o?*}W1=@02PDkRL!r(ppgX#G?voH;noi(z^8gS+;RTXUuhLP)n>I7K~?Vh7d z<8zP&XqLUe1-9zS{vpEyW#{n-U4Xz=c+|pU*;VUOzgLi}^%~ra%zWQIqaD#K2Y`g2 z7b+!UvGJ0>5rbJ2f8j6B8!PJ&qiq*br3!5T(iyMGb{f=&G=yXhuM1RWtFW+(ZK4P((PuVG4_cDTIp9 zP?(-20PLs5(X+z6!iB@%QplnN{^fC*;FS~fg{R_z$|8pgovjf;e-+`j`r z!Y*A;dOdpX1qOPAM$p$_eRd~fs~yB7-H;3{2B6oWwgL(o0>Rn$+Fxy*oyA>T>Gn#J z0f25DZUz@D2m-0sOPxy!gwUb~U`(yXNUQWhkDwsMI#;l?VD~64;ce7fJBn-2Anbrc z8UBqDC<|dwnluK^>cNUYnFriLPRa2W6Ufg-qZOzwqY>7D)CS?%sdYVxU&WFjvSFw_ z>b;OJ*Z_w9g+YWLQ9;L|fnyy-Agn83(l^u!#k6USLP&wA%A+og!|KV|g37>XK&9pX z0EoM4jYHDE)c0{zvAAO}0;OK!Z)WS$5WYwKly0aNDJChs!$aS(K!sH#Df@%=F^~Ai zS`a-7Hf|CIig@l>yO(+;Z_`!KmqS;(p1qQOtU}O_xw+Jtp#i;uNT2iv{{Tc+rZzw# zfzh}d>J#(|kYHjp0oBH9H9botQC%*}0aE?SBXARUI}tluM*Xe}0*!B7iD()c_b36{ zHN_*;0<|6cdO`g40Mt-=k{ifWT}uQ)cdxnEcPtnQlxkSIEI*PdW$J=#CeAbL{;9)^-PR z2Vrpgo>QuyY6PyP;oTWP?i~RxjRRs?V>byV5n6&90(T>2#_lR=FWq|dT>2zU2tm6H z=C(YxJM|Dfz)1CGs&=SO$677yllsON6OP#&Dsa9WB|ctDbi&G53x`HAowQ)sxNhaa z8p#r%phTtm*w{T+VavFQCawZhlNG@h8(x;lhu(*{O%0Y)J?sF(&~FkUBtQT+F5z1~1P4|xsf)8c7)iNXxpobJ76bJ=8mL;fR-rV|J9~`pENX!4 zAOmrcy@D7Eg=|8s!h&N8H`3c&YzL6^aiZfCIXT7@oGxmg7F?C@<+4{Dj6%hTfq)w# zXn#xHM)##RIGjV9%&-YvNWF(qURlu?T>jM>a=7k@SOvY#DE|PGWC4_jF07gY;C8(; zHNeDrQQLC*z4ys9UaQE? zFeS|F>yNvml%qIbAh}dyf0@Wa05SF;5`Due1N19%)Z<|M&r=2ti>|4cO3T#ffNt^t zKUTFCGnV{KX=8JaZOIJ7p@<0pkO|ZZ4&b0RR{sE11w>^va1y$Ua@uzwZQ8`&s8j9| zZsM=w1i}=6VS0zCsFVi5*|K|`sIwZD6WEEbQ}x**hPwU0q8AGZ?mGZ`5h~2=6jb1* zGmRNJoR7l88mluXEXK{o%-LI}9gke@mZaz8mvT>V;^rb1tY*sj)B-%bVOrE-_ZG|( z*_gQRnE3HNIWgk^j0&QF#s|EZLwO9C_t=zZKIb$l@z_PNIH{v=R76p&4SFJms2B+K z4FP4Whz6iP#nFwuLq||2X43#bl*^zVyh~Wpn{5cl5>|90%*#ot$A44Dt3!YyovoRwOC9YK`RpxL{FC9)t z8z&j5_{(_pkPf9{{4mvH@^m8^JDD;l07X-jSqK-zUzL?$ef~fvJCtytIP$;bHs2Y_ z{5kr+#3*dW{{SD+EIk6ItSeWybw%uXzajb0L;#tKP!bPmh=yAkaIQf)A0Dc27GP|G zi>SiI3M&gM3WR~7lYWBhSGt8kxO{X4#q0sJ2dTANt003zLC<`BOVP*i-O|@D8zvv! zf{c1QFfE##fq06<%h(DwMZ&#~&{3!=qU5nt{Ykq!RodSLs}Uc>RRr} z9>G4MkwgMTfMXctx#b?ldTP@0BhdT$nZojO;-$oS z{{WYWp?R*^aGAi!a^V+ygCz~)Wk04&ikOSD<_^S#%n9mqwTu^R(4z>&nGKqZt+wRXCASLPkkSf>RC`fQmjIX07d{q;|g~+ z0tGv?L!vj@HTJMUgbuV4g3z@q)?x&WCvD2~YYpFBheoJ42BH!Q1xjDkc zJ|st>smT4s5)R04+ky2j?hJ%%BArZ`39uXxE-9_Rf5(6wGP=<#r#4(2jF^KS)2Jek;~Nk$Ab_i)PkKFv3+Edegv-d~E_|(! zBNOXw@0PwI8&W|uJt!3!Y7yX8nZIE16v>xMG62{zRgraTN_2}Y&L2WsUQ+S z?Q9Be5H7{mUnD6Y>yeP`DSlTaV+#k7nTrH5SQAjumKWD+(Q-zVWTQvFaYM*%Wx5pJR3Uz*k5CDe zsw{^K>;S$~A?#yhP`3d&Ma)!xZ^m15rL`XYD*JZugB?}67uuCzNMIOxRWh&NiPSoR zh=q#mD;5_AZn061lyU$De77h2o<~&pHg&==xjKSsI9q|N(e1lB_ZMd4+ZcE4ns)>W zW-2>Oe5{GNkL1}Ja}zW!OuxLHR0a|=T`x!aA&Mpbc< zLo6-ZP^@4?sd|CUZ?Iwtn>sAYzp)*Nyo45@6WM`*ve|NvXBZCMLV}>I>``o%1)*vL z%xt-QrV#lbpyO~67qe&Krf?Q=a6cKyW&O8vu@Q-31>9zBiHNW^7TI884!&EOoOJwP zxfwOW$Q8wX&Y``KKC%iHMoKYk#J)X@Uvk~)&#;{d-(^`d{;kg)69 z3#svrdl3M$+H>-LOy&~Gb(jADS-+Gg`-$<~y9XN|?3MDTx#^u)L@l2$+sb(`Wd=cA2=jvHt1+5VabCh!+Vb-V#9|tAw(7zaYFs?0KA)=4I~1RhW~H znxiH+oP3{^1?+k{8?fVbO>?(jZCbC;Y|-3N_F|8?Nhap54H|%4?Rq0p!H74%iZ_sn zk^cY?AhUi)EgXPqWB?&2tkm^V=PS)DU877bQG}M#%>X9 zy!>#`k1mh;9<%Y1vBjrZjk_+&lj?{aV*o$_SE`6Hu901xEXJ6g&WasGg^2(5#(B(+B*7zb^^qf?WZ;>-+J53#Uy zjF4_{AFfKA=lpm{fRh=5i#f7V`1J)yJe*C&$v7N_NBmFR6}Y)Wk{|-2y+V6go?g{* zk}R%rrr_kMjhHm#j>IzcU`4oMU{^6oRx1>hXx4myP|^GeSi~Y(UlIi1W?XrCMy482 zCR_{1UX6KP$TaENn^j@;oNyVd{aMEHf8U2vPYq%Z{=Y7&yRK zZXYx7nq(s=?yFTnoGGBLNP$Z3eeC}L1*lGj;9A&LotLya*eycm$yi}r4n>ZSXV_0y zIYqi_7s$SRLmpKiHm~{3>#?{$F7~0fPV9TspysBN8BLMEsbnK#SdlU*qLySZ7!089+c3o575B?EkCj)V_YvXeqc}hRX;Y^sj9tR}m#nph%2k^V2p|xq00yG~TBpnp#1O<#P0lt$h3&Bg>8?WFJ@~Gt z11^p@>;C}LH-QqnjjJ!;I~dBng1IKAE0S^|fyK}Gb181>+lm16y`89G;jWpVj+6+= zhZfdyc^L4TTpX3mN|0&-46$&HR12--02@Sq{)IQJnYy(_ELa%%Lkdi8$(3DkxOEL1 zBI5;{kq8h^RrFvOfa@!@!4&bB*yhQ46*&jpL^0B}0&^7hBJb zkD74#Uz{9nC<-8U1|6ji>_*qe(f8Id9eT_}2I^V$tYpD5Z+Tuj~b}4%A_Unm;89`@#ba9 z8F9GC13^d7YCC=UtM(9F=xo^crBV#i6F>?k3qP;Ps+0yHIU7JS=yABNU0iY)97eww zW28~s0vSQMorgn0jQ;?lqf_LuTK1TjBMz!OyB;QQ%77jy{F#E4zJi}3jZEjlgLVdT z6lBE8Q2-R6jVbKF>2j8XE0Hn&Lzbe8VgNPc6Bx+!auEI`@w*=u<7OtNPCjH7I^^qR zQPsS(MM@_^f}3T{R!4uZ&)-q|9Y$IpwxA?vhDBSMGM6+n*v4y^NFiqz3D1(Cpr8gy z8bE5{-?Cb$gVM+VFt~JSSHwf&woj0N^ie)g44CbByd2DJaB%VC6%+)VlFWy%c3&CC zPVOP+qJ9@6BfgxM8E<0Ha50UI4-B@E?V<{_Bzd=!f zBFBgwqbjqKc)>A>3_%*nMJ&?RvZ&37t7BfdEHaZqWkC3fM?j>h!VmdzG8^cR$;jX- zv-S;5-NQsw=n;y8WOY)cQDt=ls4YTvu~9KTM-V8|sKwV1Kv1Jx$iweB?mB>zlhh|r zxM*yEqNY$u23ZC-IY{c6c|40IWaa0vG3UtSUO&jo*@(CU!GU1Q*>*%E0YF(F(=xS(3#PG00V-ma}M1}F_-ywP^R3Av73?Ey5sA+Vkkm8f(}vHdd!PjI0uL$E->pymBS%J zV&ibz8i#OoQPdAWR>nJI4JeUd65Aks&c#H(9kW%EGIkWE*hRDHR46eVez1?{veW<) z40K+!5tTJRW`#Xh`+&%I3 z1OhjV_CRL~C8tOQ!vXq~AsVRu4i&OBMSEH}y12MgKOuUeVP(b(@K82WFR0Z6cgk_x zftxb{)FPd-mnX(`CKVI@^6}R$<~&773PD{)#JIeJGckbC+cm@o(NRL9Xie3HLOqOX z1RzH99wQP7=$MN_DWh=|Ut>VRN25S$elSE}KCw_9OhFoI>I#RgLuA4Y?=~Z3q3w;R z;mUF;L%X@!g)kucBoj&jZ+&$~GIVl{f~=t9x8ZQczQqr48NZ-zX2Q8Z1oy<-KnJ7dMgbB`#15Nc#l1m<8a}KXb~n=00se?$DmC7S^0023W0V=q6JP?AIXW30KkxNX7TdjWb&W@ z`{LsN0FX0h<(3qQnB&|ijzdiRwBs+AFXb}x9OA;O)a-yxxb85xcyB#2;_rk6oV?bi zIqYV1?uV+aww0^KF$C-OZ79_jtx-1`{)P4s`ngIyuT|JmTHyp6AYR2lCCi_vxKClS zdYhJCVK21;ROlw!arm8$w^cz?9bbpEh`C0mclX9qBY)!UIYI|?7R;k%;7WEhT4eI7U z&>7mybJoNJ5d{$thn+w)MQ97uQUJ4|4MM;gg#7?bfj?4dSfm9|*d2kX#^m}(D|?vu z;W8YHq9;3!*xT|W5nW<}r>qCcFa%gtgpjuj2NrTCb(txmpSVxuH2|jTI_qq8bDf>C z<}}4a^_*3Ft=47Zwm%{9pCJ5Z{7!`(K^aI!pnzisBXhaGpD9twK7_^ss8~kjiPu~B zEa6LHIbU`;3>oTs^}F8wpBR0|##XxlUcn{k_1t9&CO_5!49oioW7umZqA);hJcuW# z4O9Ne`-5!^( z7%`AGxWNF-peQ0xBgIt3%7WH+3j=nUnDy$pzBw6g4~E8QzC1~Vdg3GvWX+GO5I!s9 zSTN$S#9hgsDah%M@UI_+{EGvY8yOa)4MIUMP=L>mbBmCy8#$t3ZSU?AQ8JsNsbc3+ zO-9F#ys@H^VFU=uSJohU{{T#)*5CwGB<=-LL4?`rw#o?|hCmp4_B$E@?y6`2Ar^Jn zhKNff#Iv9n<0b;NV1F@ppi9^diN`=kCzIUuQ@zba(6~P0n-eD1Api-G6SLN|y}GO^ zyHej#dl9fjkTlEGGlffyl;mw5#)EM9;~*^G9r1@AM#$^Nakzdf9z*#Zc*~7SugQYE zmc+~Cp@18LnA9LItasQ2VrWl(+aOay#lR{lHfXy6zu$8hAZ_mBFi&{e)@Yc*!Jzh# zTWSDNAttosfiaS%$TtCk$u0c>sQ&;_O*WFl69NAK@2_ENjQ;>2LgY+&7%z!2B@i@P zg&brZkl>n(gbO!XIRg-AwFqo}!}YKfiIKXG70|e>6LE-hHlo6-F#;wZ!h*Pn4m+JI zVXx64TIc>xfwA+yBJrN_fWd2H{e%yY(8Y;xiYGt`L+y^qp0^2O>6nw^0d=A&MD?J` zz}pe_ap?lXe_xWcR9PetJ%Q?`$Fkk5HP(VRUkC?XORrT0lNgX?pFk@C9I*fewEcRM zwIPD-eM7nE!fV#Ria(reJD9f5aJ889WEE2*E14Ilitbo^v+?R-jKU3)Yz;~4RoE#a{Jl(3+miDr-Q4 zV5tYu?e%rIMVp=M3R}M*-ZJ$)3yZza))T0Ikffc1)D5zLMLLugJ8Q|91)vG5mK)YU zpd0+ldj(r_#2Z#^oA}Y&5n$NDf!7LJ_JcO+7Ttq=r~Y083_z(kj`2O9D};d1lh%$4 zY?lLoAvX#uLx2&ce&*boX+31Lw7BF;cV(8ju`seZbSotuE4kB+JcCs9Knq1yB@kXE8Mk-z+}7vwnl z;p3d6qhi7^j;aM6cQcMHZVRXZt074-Xlf7UdxZfzD7SH0Fp?o*xWt*!8%Wv?7K2AV3TRHll!iErUe+sp1w`^a}(1280sfqdh=u zYZxp^oqL&?$_5bdkwNqv2C3OG zsb=}EK+Tv11Ed)`jjmOg$R_6;g-Qo-U)}01&C9(5s7=Dtk-9T3K)&%GsoUKAg+{+1 zD?~AIU~)A@GOIw>xce0Vjo@^QRj9L6#>CASN3sJDAXWov1z0Abs{#Oh%?JnFX;6xu z&BGSPgBleW^#Wz-RxF)BL0}^xQ`o5;G^YOmXY$mrgx)-sEO3E-Ld;g9c?u$SeqYKc zym&Bto<;G>oXlB#lat77n>p38<}V);9fu_Z@&e{J>Siu?PZ!0=$CLFNi|!g8uTZfu zf7ufvS{lB>nQR`?=)x<|B7loxDwQ-g2JyL3)^=}kSl5dN6aZ2@jRx6PU-8DkEIwYB z)gH#SO^XJ|f{3z4wPV~C1RumApc|G1(SuqK>MyNl!o6o=1;W4%!8R?~lz7EpJ-4d? zNj;b-4X=$~`7CGoJQx;-E1jE^_T-bW+t^wYitUxUmcfYMW5QBAIXqA8lfFb;c{d*e zSpgJ}*c0`Oos%A)4=FPr62+lyRP{SWHy`RcfW|oidc$L9b#YD1clP9iKm|UD{t=tp z2g(Z#0_2r4q)ua3ZRW9-a=5&VDTIRcf( zF|oTv=VeoFnQ`(q9~Es$A)#igTs-WUwUdv?!<_h#527pB^%+Ur%dO0oHbJwteb@94 z*igzVaV$N?Qq5;qI@r(#t_3wwafO2yZIRc|0-DJeDp(>`;^P6k8~Xl(`W^a}TLf41 z^k6n-RZ@h-Rbp&{robIN(P0Nu zRbI``<&JJf$q}i52QXql{Jn?+7d6yYLKh&lY;2;}(BEdp!G|B@%9_lsxkqJENTNs+ zFPNE48iDsv*6P6b(0hza)atdr)XGw5S%A=}6#JfykoIUBCMj=IU8;ZAQFj;>+&2D( z%|ap6xqsK{0z}=#V5fO9T9XS{psUnvm%J%N0$8xpSxtoiR16WdTDWfLRSF$?`|a$` z0+jO}{gJz$JDhR&rVkb>Lj?v^I?Nh*YwkR8~%*fqV_SGAg_%5B7%IUe#Qz>I~7@E?l1-x)kQso z2SyXRIFq||9Axpo=yWH~W;yeWVZfh{5Na%o{wSY~W)tH}h=9V>*ak4adANa(WzWR> zc0-I9tbNQMBbSWRi_XQ&7QB(s?Ac=#ENl|KlrtDC3WVx*y-WHEXlxO)6xp%~Qww%F zvG%@+h(Pk2sv?$*C$)eIfjbJQNvnrqdVt(%bY%b_I@1>VQPF9bhEk-G#=-vpU=lQ{ zZV|Id>&WVQJ5er&k6~98e&-hvRRpF!ssNd?jA&fsz?sQr&++UikHOK2afX`LE;G+$YjN>_MDq$C>2KI3WT5Q}hfRxFEe~wfr-hY%2A&=xs1sOvI0hELFbV!P7gsYu; z`t)imQxO=AO(}rE?jW|)e=&bcm$=LfYX+bUA!3Ji3fhla`ksseAL1YBTa{*`kZRxg zg!J?XZzwF!8`CMfiUoOg3}Ic$`juNCeH<80X9+N+otA{plE?@c!yQon0A=<%m*J?` z&Bn^KCr}_=^&AiVU0@%|)o$o(s0+NjMR8-1#4IWKJQg-oo}?(l%WNc($K;Mc-Yj5Q zDqz^!n$!fC)vKV!<2TSiZ*^1L7eqm^)*A+*FJ*;Pkq7`oM@IG3SW^$JuKoW2sAw91 zKq_br_X+IvTLqB*IxY#^G!`oZDy)qKm8b%VyNno`lz!g9pBlgM_A8+c)M^6Ge5JAy z12Y}HT`(3S02is~0p3-|{zn17`1l3Z)uoXYwHfS)O+umfIXpY^OuS`(+b0!+Q}IgU z&a^S5R49?DYQ{@GCtHA$DD@-Kp1T3BW7yL$Sek*ns#O|_!m1~_mH;YL8Q3*d0^MQ_ z8w zAoR6b0Ug| zQsqDbg%W5uBS)E#v-JkoK;$4)?lpgqDW=gE2??^P*pmr2Qwccos-BcApLYqPF6BjP z6$M5xfJEeQgLz~8kA=X>tRL4K(U}MNMLvmS4Y{%G0@AlYff<7>kM%kz6%zdx1RbcO zQ`W_ScGNus*i_fB_65W(=$HWa1J-~&NigqnwX!;bB^KG~V#qaSXzno{fF`!9UX2J( zX^DR;1enKKRqaBcVkT^X5V2r(#oPE%V6iFwOrx+ftqO>>=}BqVuBTIBi8djq1+-Cc zAccD9n>zt@4z&pWc|2TPmFUfbk@4+ki^=V|n@DEca^L`+i|ue(+$vi|7q6ru_o{_s zQ$=mmRs_^lB++UDfl{NeTB|O-w-mB~VT9B=G!}-<-=c5ZpRh={NsPpTp+pQ1w4>|p zQ6^sJ#^7eW!~nVlgd|kwxUPbz-0foGFzd1d2p6b<`^_l0j0oy12hqsQ;tLMC4O6fO zSnJtq_W-?;Dt00haPL!~fCJ)GEf6x}B}fW7joq6HH?rM~4XJ1LD8t+|!qqgJ_AD0N zM_>pFqRqgj?t2t^+R?}f6r_-}Ly7`eGvB37#>p!NwJsI}QM#ZglMaQ$k{S`MNTSB9 zcikK)*)jzjemG2YxAhq+rbg(boX%N`#sSizl>h?HqNuS3rH|GY7{mmyxD+q70c@!z z=wtFwXHo7D2-ZDpuEaIyUaA>-p66Qhe0>s0xDCwMyNd)<(JT+@6a&Bd$VE(QSWpSl zr&|>ULNzE8KpH0ORmEXiB%Mcc7L^#OF{#CYvIHanaY!(d28lmo)E8F`4_0 zg;B&uln7!cb^>B-Sbzijyn2Ho9nQ*bxmmw1VzcppC?E(=U~bGe)XwI#z9z%79f57= zfTqfu6RmAguI`Kmg+yQkR~2!xDfRgTu{+cm6q<)3`kmBz>^-n5cNKt^q}(AGQ)I`` z_}C^@Y7zDT7rIdoTY|kn3Y~%i2w85WYB>)V_>=&Ggai|&AZlG`P#*ng1yLVh-~Yq_ zED-<#0s;a70tEyE0RaF2000015HTPjFhLOlQ9yBlk?=BMp|KJo!O>9v+5iXv0s#p> z08oXJg^GnJSgckmYXm${g_;zviE@hgcN?0@xECAcvf=SKt|lp|t|mW;Tu68>SDF_K z(Y){A80A9nmm9HJ6vaNn<9CNc(fV9IF3VDjLKf0JLfcy` z>JW~H<{pGnvq=wYI*)1g$;*vRtbTI@_KVm3lOO9^ZOqM)_R6^;b!HIC}oIxSuJp_O4ce|Di@DWzvp7on;yq6 zZ}^quQQE??yzUtAWkSuyhvaeUOU@{$d0cdUraiIB)S|I)rseKlv2k(H-xG)asNQJM z&ap+lE|>A1jpB}kP`nBe(PsRcW}mtDhrs^;+ttSKxm-4Mk=9lr`2NN?SXlB!v3Wy1 zIjzGgpV!5FykdnL!>PEuS5vdA6=8FD+^!Y1QKV7n*w0^tKPn%ON{d1e_4%*-HyTFq zaZrW0ct05J6w2xTeq1`6i^9bSP_#I)l<=iAFCLW|Yirs3{{S>EADxaVls~WKk4{$& zP0QH!v9v$k3d;3gEtWXBRCYZ@4@_rNu%~}MzV-IO56_WnI?u813yzNEX#Fm~KPYGF zT71m2yy)9sz~gh$^1hoE%8&X#4SsyhdYAH278ezZKX`rOWE~e>ptdFD0Q%lr2SG3ko_e76_pWVi{xl9pdA?2&w58 z;eEy55}QJfuy|R~*W-_o(90g)6gg*6Lec8+9*5-gzc8^;)IAhY-oEEWL&LGd9u&p6 zu|mR%XGI<1LmAn;th~C5W$}BjvK1Ydg+2v^pHi0t98|b_EVFplF9cEESB(rsk8@(d zV6sQN_o45x?*}(1L)3MZV4G;t{P#Uf^-96YipdUaXF`RzM&sQ%rc?g&`ohqLYHC)B zHf;BW^fY#TP_G+{nun9rD#pr+aok#-qqD5L7=$kf>qoX7#;|)g8)6nu1;V!#gC5-8 zR)?LT3tr~gq=)65#Ya=D8C=T>!Oca=81ZMwrGF!3seV6W)w0E*ctZaGKUeUNR=v7M zdO8^O3t1s!d|kuAc^<{#i&)U5o$z-HNYUKscP@_bwGLkk<)cF_O2K62`a2Ql!Z(l5 zdw6xI?rd>?2=sS@xUSTxvri3SOGEHKD5La$ML43NYX|$~cxyWs1C?QUPfvrVlZ%!<2Zz+G>n)E@ z7qa~@+?rL;EI$u=%L~J;e2X)g@V*BH>}a2l`ASXE0w5ceq(8ig>E)j zp%p0ABZNN&(D#j-d8{9aSw3e7VvFI?+t9>mn_tNM#hPLtoKU6pDk^A0 z_$A3mw>Rq27lb&tqQyS14EyAvV&_=CRf?8gG<7RppYB#q=r01$h3C>g580IST(`#M zaJcSz74|>>+qMHjSvhCGd5N$qZUk+^rw#jmyPsUVINnL-GFreq!+Pxm)04 z3w%$3=;(Mg3r2=BSTd!KKmWu4ED-vaGMM`Pu0V)7N8A8J85`&Lr)VCt?n)1;Iyr6!D;HGI4v>{fVF0etA9UKx!P=Na- zNg+(3A#j9R1k3|vAJ+&KxRe}4An4@DK$O$9a%xC0i_bvzcOHQIKco93L;!ZF2$b#+ zl7nH=WdSM>6X+D(kruZoQ9SUa1NP|XfCPf-gySIuM43gXaJLd6PiP*I;uQ9xr5P5i zltgiH3JU)KM=E6zB?<_0D|{npn?xXB(EZe?1A-u_o@S+f*GeURkuyoL(K3Us!Q8h3 zQAJGB1Q4cqHDk2}5QV9<4ALCgQl0haRSQxP0K`NU`#|!ir6?YR5NtMA0Rjj_A!Sbx zWdmxvFcBM2HjIQW$Z!o^)dMO7N)Q5t%?+cnLUgsX*doiOkTJ>oQ)`f-Ej1ceQ=rfR z6hv|Y2vX#!MaZB`dP0TIAoPmi01=@>l27dbhzco2-UyPRSzBpHBH|N|)K$O;nWQSz z1Ht~b2icHOk_5=^M+y)V$SCn}P-GcFq)NU~xQ=NS!h|@v`Xq!XN1(I@>O=v=kW;Mz zR$wN{fD==qeGRFaT}qiygJn2% zTS(=i(FBAOm zAi@GlG+{LhnLkK1G(sXRZFeZz195}|BL-uoWnT&9xWv0rt&m#GEGHl-v;qYJsM8<-tIJ zhtiFuS^$(tn&C<|qC(*|DQunrxImG~l4Uqr4C=h~s zqL2`#)gnm> zd2zgL+;3f|W|sq;pEJ3-2MtCaaOi+8DbR&3P%xrYcDY#|7_wxNw-IHgN&*uC>f(S1NV5V zage_p%NbvZ*zt@+krFo%Yl;yoh0=aj;KLhc z0UJWFLIPZgGkhQvsFY|SN)aHT%8-Di0Rty!An>9UcM)h2K7|&-1vCPPgi4S(2I(~Y z3FSD?Gtw~-wb-|}cx;M8_BoVXU1hBYHJ`#@)8`>Bpt*TNP24F$}1#-Ww zu5D0GvnIGz7h=&QnN>2J>7ls7dx53CpzrA%hAZ4KtidE&3;kTJup|qlBz%!Oc|0i* z=<5)2X`SwE8%t<{X6(?*nVKvIE=^{mE~7KE_jq;yXN`Awr?f zrzptuY``MXK*g`@FHFKp4EmA^@Z6~D&?Fe1W3eaE`?e6z^Umi--yMjyFQ_UOD>gvg~-$rrs>7;ev&fmuLTh&r5im$cgaQ%- zpgzg^Z|tA3bcG^duk3-^xltCaI8UVd1oq9WL*)s!ED#JPnI#m|)Id{o8_d1G_D7#V z%5WrBpoYI`$*OiYMm<-K*Bk>?k+@BQ%np0DjW37Io%5Rpn--rK$Bs}646hgB9jS13 zRwViIi)IDW~n$EDBJf zEdW6%NkY?vA3mMY3@l@HtiTsSXcDosxxoS?B1zz1Cio&C zp?t)nMi)?^wQ`IRKo%%Gi27&{XO0B4$kyW8=}j(WjC!Iu#gVy0w909;K#JuyWWkON z@`du_0))-Lajp}GYl6S6peK!9?{($cd?oIeem|4`L+~9(jeac73lWK2IS_*Gp=aJasmFWuq9l|$B?jsvS)82`6P%Kn(T!&p`r#y0^*xt zU42W&>$Hni5s_+F`g5JLUizTSbfI8d^h5UFf?EG zQk(RegGmyaT1p_55Ud(`KuBFL(sfcJZJ;DyjlwhPS&eEuUWZWa`7`K-pH}vd81H9N z#pW>vYDfl@T!KLtr^M{<3~rxBSirxH+QFp5jP7j!yq>YTJPvWx>OHt<$pr2k@LSRq zM3`L?Skm$U#f&kqI5LUcN^5qlINL5wY1|4jOrpE8Ai{(~vLQ9K2njI1NwE@3cBY<_ zi0Vm4^w1(n0EMj5{{Y>#3ekcw$&2)1kpvEuddEr9O4|n7M+y_adn7^=7ogO$MCWIA ztIq0m2WtlsSpAL;US*BTr^Tsg`b0w8(D3aT!=9OxJU}qDI{aD|G1+w=kuo;n)atTo z-R@=1{rL$Exi$mfs2p-yPDUyh(^aG?Cn%Q5}CbSFm z6Vrr%xUxB@O@c1LqS7rJO$EVfG>v_?6I+dera|FjbQB0GC0Ht=R?wgh3F!vU1||_7 zQg~b$6E?lJmu^!EKJY*J9x2RU+6Z(+5xKJ(JcYQ+RyVz;b6EV@o*KU-b4%HUvC?53sOsQkec1b%ctTR0000X(x!O;p=rbbxm+N7PIMFp zXb+5{VW_n2Lw6`xloLsXHBlVuypu4UjCYWJLv7SloLbjoCL6B=!-tS(O(DP#Bex-F z2w%0gvvEPgk3xysr2qhv$wdb_q8icxxFtJ#ig^kW9(0=9=Nre!DXr_Q^I359lp;B{+ zR*iBmkYhy1GosG}lbGa^B-7o2~$rjwQRDb9IvYe<6ZZ>TJI1V%iEA=8D^6bC)8INNq9I?cST-pXCE-iV+Iodan{Fek|Ys8jk z1{zLS6^Ah8Gbn4MY4dE%3Icid$r7=XjMhC&ACq(9cLeST6iwS=VK@#J+2_XiteW=_ z-x;K4i%#4@?}H;RiF35su^mPyF~(HN#}Z}H2ub2gkmWXle3c|3zeraIR~ru~6DWwZ z<5j9?4NY$10w2~8kQO(5p?DoHuREjPEOOnOZ!9J|N@?i1ZCE;LA)F zWpg+>$o{R=x%4sS+~U^&A!zh@HMxc?Iz1CKc!nlo%khIFyo@hpdH(=9zwD`8t}|;`e!EO`na(F+{{Wk$ zEJU6M@6ogoKz5-4Qn(BC>Hh09<5z^@Iq*MD;@3VN7Dk=YT;h1emP&3(C22D3aC&Ql znjF?Y4%Z_vyrJhsL? zIeC{gft1TkYr9_~V3o z*l~(Zay-bAP=Y9v39%m{Ai@wVZmXgtQABNDjXv@ZS@LgedM|DM{y!pr;<`pohmOg! zP}Co|LI8tHfdn0pMw3!CI6+#5hhrI5Jifu+H8}yw=b~oDY@%To2P|gL5+LhzBS!Ca zm>ye`c+={JM#H9kI$3iw3wJv%Uw0vTjns4a_T;>JohD2m5d3C$CpHJgpwwx6n=t9x z$9Ual9ZNnf6Clk&5IHZCDom!Eu?AO+#y^p~`@=q{>K&E-?n38q5hSl3*J?Ew@jC-r z?|VkLNN!yaF4%pu_7bJ|$q)33$tc_)!fYAe5_KI(i?PT(~3!%9+56a=Vn?dVIiP>JCr^lJQa%cR1 zO_obCemR|{ai0sVZx8XhwjY;)(mxxV{DO_oNQps^fCX*aevHiKV>p{6HV-^Rm_e|- zEDdWiFBZU9{KsFb{x&k5^Z61bID$l2H6cMnK(g4hU9H7iGZaH!e1{+g5>_wG3z?%) zno_D&^^LV;MV8r;Ik|*+fLcI6!lS_wP(3cth2t}`0L=IJ&3EzTnKhcDsme%*MBELa z8!^-&@ib)GnuJ1#KqyRk#$*?gNj%!FSN(6y;l|v%+u-o;)Eu6S=2p_YRplV+@y-`S z&psDX1mSkUk&nin$q;pT4n56SnPdjzs|>VS0j#5Q922t^8z0NumY1V!zh5I5Z@RD}@osu0P2->5wo5_A`c`29U+T zn~`K_b{9DqnOc0K4ndIO)Br=9t;g)-G30R)1Jf|Erc@3UA})PAmY>+vJu&-$O>>M9 zxw2Y_;TQIFI!}D>bu=TBA-`n8gY|u0)C1I?m!ZxxRRrH5}S~My~0c&_e>)W5TI~~jw7N7BIt=R1vm+< zwIsB-RYKfIg&hWnvF3qpVB@9Ne-AF^;mR|xWM(lX5%f$7@!9?D8>EP|DR}Ij<~^nD z_q5V-vwKSmnpon~5o#vTNA>3PrzS6Wd!ES>%|oW~<@X(5D7_Dkexbqn7{=mm)@lr6 zDW)igcAC9V$-XMx|wt%%`^isxRC^NVX_yn%5#H<#%33G+h3vN{7B62cNoI_PT21ipLzCN0ck}UB^V_|*f4%LGkdIS z+pim#%|g^O-eGFvlVyI^JD&=XoVf*c{i7(u(aEg=hA1r@T80XP5?LFEKYqh%T?yelXRRy_!l z2y+NYp&vpCPNIzRflVJJxDtsRpju!fYR>|!bwlDL?FZy@>G5YDJvM_Lncuxhq zv`CY>Od?<+VR&rcBZT{2<|kqWw+B~?+sI;RLH|V zvan~=;nHH$h-a6@zewU5?aT#ahP!EC4xx#JbB(efxx1+t2ns|JB%h6;Cf4aq5)rvT z9?YRVnX)9F2cZahwV;(?(0uY>6*Fnz4jPMq2=wIUt9vUWxfL7cOXGC@KN!iEE}-OelIKLM!`xwFYeorScn^N#iyRtlEN_E-kX+I&e^UtE zD7)o!nvDvXM)(GlS|*gr9)yHY5`cp!5I7(X14E3WLqgk9ADd?d#nx;rIbiK1lSpw0 zzzBe0Kq=S7CXz{(#K3S7Qth|TB?tjDU0*l!guzw#2SVLVKy#BvQ<8-Gf@ZXW)){%=ZkW=jF54H;U){nV|-_i8hk*U0Dwx&Y{Os+F1TC@^4QC^WesH7VECv&N;I*)4ag;T zD8Xr&o(0->EB2ZJwcIGRFiIS!ex*u<5{qG5X*HdKAgGEZ5=DtFHJ48#b5x=FX(ggd zV$i-|1Zt5GXtQ6YIPU-5M1&Cvc~uF|*LFZ}yj2Hajl$ZGtCQvF7c zE3rRm@Sa!sx@P2FXF|-4I?Q3v(7Y~?WXN+rQLbi@q0ZCf2O7x%#U5@uT`gkUXesTyQ zzTtGNSRe;4635^L>s#at*xYS7o6|h5Y%KP%yHl4Vw`B27Ikb()wF72C)I^0aA#Uk7 zv^19hB*8(ZB$hy;1VV=P0GU)ct0F*9As$yLv{VFJw!tP*Byh&b6Ood;MA8GbC|{tN zPUf13kyjStCu%L9>gKiFg(v|il`&>i5}PgLAClYJo!kdSAbTamiCXu2nO^ge!enC} z&bgku=m7|_9#y~gBHKH7AS!&LP9erK()=FVYmLMjzBIer2K#PYyg~P016@s6A-vT0tyF$ zpU@QEPZTfELZVaxQ-A`82uQWMRv`rfT)3kIl?3sW>|suaJnlHy_Y&NA%Xn=C<8jVS z-j1E*k@F;?V1zz)zZNpgtyEt;kayWOoZ4U5No%@a zinNoIs19jsvyWx&W3oKC28kqO5EM$`2NA%^Q!)Y0@KKmi_F&2!!h1+En&8`UWR=IL zLVIWS2-rjtoY|!iVHzvBM%AJrG~AL&N8%*{atQPm7UHQ#)u4>JkOn0ZNRrY*xTeWa z08~tzfDl7<40B%Q5XOd~jsh)MTeBNlr5jsrOPjRFX%V@8GnJUeKt$m*+xQZWQ1@ur{jAJA{Hqna$!(Z(5>PYMvzp`5@l^9BQqY21GFI!xj;># zw|!5f0-6s*7MLsm8;_s}CSA4B24=*}jJQTtmK{frI0-GvHX72B?4cMYQzW}Y^W2~i%DRyS>Q zp#p)Xuk?MB5<%dn9@9qaSsDShHLXRk>uCUdi3I~G@ajZCgd$})%8Oe-K!{HLI)IBo zOfGNI5D3x*ADyPzO$KENGbP(a21u13O>3s!8cA6+I5Lt;ymmYXdvIwoWioMK$B08A z!9;|3g_Jdnl-!O2o2YOXq;s>oZX=&Q8gn&lbs8d6G>BPzdvaSd=`vyd+#sjY5S5NL z%74fJ-_kUQB-u9!uKS@tfJ6||XcHz$AhxIM8lbW@rG~(ACD!oKAR>AefAMju@eL)#6aCrh+AZ+ z2FpaWA^}8z746&zY*}#O5&@KQIl{L%1ZBoinWAY3=r?j{0YsF3DreGEUD!l@Zh*gN zpk~WO&~%Cbq(atsY&m4(%ZE{-a1O_mo)jtU>5PXN^-Q(L;owfaC6ANnF!3fCb*7K>D%tpN=Q($WZy&~XCX=?K_d zpa)PPOHLP+ZcG^&m9vaYZFZ}}V#qh?^I~=v9C-qLfQw2BLYt!6+(45n zm_`@-X*A|4#7=VBw7&eHJBlJvk zY~2I|TDemK48Vm0lwfd0t`Q)jN(FPw5TFLA1pomM(=M_%6&|^iL@;`6G&Q< zE`;kU5LjCc0UwfyD}!X7yI8eZ^!JYknV9#y#%y`ZUyVW{&r&`5dg@_?IIS-IBQLS}%KxbA`` zQ3rCHx0}4v5&@;pq)9*y-OAxJBbv0@moeL!r1A$lHfGGmvE(PTI7w`@t-y&wXV6kB zbcE`(+eNT!z`sKU5K4gwh=NdxPl{5U=%pocfjwVsbVxv%+?oBM3tUn>z&xpSyL2@0*NM+P=aO9W(qP; z;Ym>nV}_Hs5YqrD?G9yJqB}sL^r91BOu6G2B|Xp!i3IWj#@)^UHLxLd19Ye+kbnoH zq7#fE4nzVV`jsku3IPJN+N_#qZf-o893rvpXa-lkUT&VOEqp*XEY&q_CEHH1I zPa1me> zyF-)#CJ+Whm|QODqtp78K+4tR{{WyM3nfHxrDo$KHL9D*AczJ)kk);W0=@wuf>iGn z5K)qC)4Kf%KA@sUs4J9ykfhg^nE~7Q5&|I+Dqtq?tQlNUR8b;r(J7`yi9of*Z-WYf zlz5cW6r3&u!rF~m1eXL%i9uIEPuX`vb7DiCwW;CnCVi(uEOf%!<4aGAYe8F-7g;e9 z2gssqDh-7sCk?_#HAc!b6PjIUwmIQKf>3O81wloqg%E>DP*f-?*5ck6^5)5r$p-6? zh^h`fm2oIK>ufs6Ga^qaXM*5RA=Hc}*gzuL2m)ym3X*}l|HJ?@5dZ-K1O)&H1_A>C z000000096o5FjBz0ueAkQ6e%>VR3<>u@aHN(c$m|LQ-JyaR1r>2mu2D2|obXvN~pS zq<_(0{{RLZsZ-m7=F}SCQmTc?MvGi_1`N22jJ%#dHuVn0-&%_r(l=l9+h8 zLV*sJ8u?sK{?fWRod?o*9YBoM9`LEdR1lS+Xjq?lUIHU)cvNXVfVv1!;mI4sz*1gM zxtO7>bsJ;Nd>8S8Qv*cVtH=<_6+DwK?G=a1j~sW{{WELRGkLch#AdMMq7JM z(glKtQy{I!J^uiIp1^d0IVaGe2-G?qAw&E7XbK%80Lk3CFdZCJCxv*j zHB`mLkB1)K2vlnurZ3|o#K81%Q89I7D~6+2$yyXo8zv}MMArzXhv8W|q$!Y2OiV_A zx)dtj(6TbwIH5zOh5SE#(_JtS!G{rc#d6vy}Qn%)bn8dD15^j&YH?4AySVDYJ+{DL$gABPSRmpQC?4(cOQ z3XDzT`CU`#-80X?h@pPt6Dd!0dykJkYyP2@W(H2F^n=J%;vnhOaRp3LG>wNcn0|$L z)RF=jVZ(@@01CRUQW%+TBT_}9$VOYH#ZR(unAb$0fC%RnSV0Pf5LfZ9<0}qXQ$p^V zPwSp9kk9C!5l>`wI7c#%!Z;ARb9cvK->e`oOz^L1?st4b5>&PU)Nc$#}=n5qG? za_O*%F1Ux1cOE10KM*yW%dm`;i|1JzHN*=+jYgfI$%dXUfO@Py7k+vB5U>ES1Uzq`=d*p(}iW#G8z|) z8YVPWSCxwDmXer4e3v?{6Rhv?cio=mZAV-rdb&3k<<7$5S_5K|P0Y5J`jQpoZ85cU z+aU{0$o5Vm+9fm$uNT^#7Km4gk8%pg>Ybq1bYk-eoQccX8YbL7V>yGWp_as|?~DVX zn3AcL5Q&iFhiHX|Bvk?xl)zRLF`^XM*#r=>nNhp|gF!luqSX zRyAD{>Gwk}`yZkZ8H9X_8Akdicy)TXYJQ%x7!^YSn)x9D{eX5NxX++M0!u(6m`1S0 zmLxO7$Zy8|;M!(vRN}~G-WDKHPMRFcQOY^0g-l#o437Bi2?cbAs>PA-hak~oJiEsqzR?p7!C|F~BtA&zq0+*Ntv!)PcJLZzx(8I`RSCV7llEQUHY|-w9gg~A jSLB9Ry-@^h&uxTsPiYxOtu`aHs)Pa)8IJHoX@CFO@9;lS literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/styles/style7.jpg b/ML/Pytorch/more_advanced/neuralstyle/styles/style7.jpg new file mode 100644 index 0000000000000000000000000000000000000000..b6cbc68a9f830e7191d6ada39fd8aef43cba785c GIT binary patch literal 123262 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 NkNyl$y3m9p|Ji2@wLbs= literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/neuralstyle/styles/style8.jpg b/ML/Pytorch/more_advanced/neuralstyle/styles/style8.jpg new file mode 100644 index 0000000000000000000000000000000000000000..633282da51a38dc89d76bf6429424d2a0bf7dc52 GIT binary patch literal 562577 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

    V`N(=E0Z(J9zPF_Du&8ThRDc^CnhykGpw5i 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 P00000NkvXXu0mjfO`XG? literal 0 HcmV?d00001 diff --git a/ML/Pytorch/more_advanced/image_captioning/train.py b/ML/Pytorch/more_advanced/image_captioning/train.py new file mode 100644 index 0000000..8cbda9b --- /dev/null +++ b/ML/Pytorch/more_advanced/image_captioning/train.py @@ -0,0 +1,96 @@ +import torch +from tqdm import tqdm +import torch.nn as nn +import torch.optim as optim +import torchvision.transforms as transforms +from torch.utils.tensorboard import SummaryWriter +from utils import save_checkpoint, load_checkpoint, print_examples +from get_loader import get_loader +from model import CNNtoRNN + + +def train(): + transform = transforms.Compose( + [ + transforms.Resize((356, 356)), + transforms.RandomCrop((299, 299)), + transforms.ToTensor(), + transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)), + ] + ) + + train_loader, dataset = get_loader( + root_folder="flickr8k/images", + annotation_file="flickr8k/captions.txt", + transform=transform, + num_workers=2, + ) + + torch.backends.cudnn.benchmark = True + device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + load_model = False + save_model = False + train_CNN = False + + # Hyperparameters + embed_size = 256 + hidden_size = 256 + vocab_size = len(dataset.vocab) + num_layers = 1 + learning_rate = 3e-4 + num_epochs = 100 + + # for tensorboard + writer = SummaryWriter("runs/flickr") + step = 0 + + # initialize model, loss etc + model = CNNtoRNN(embed_size, hidden_size, vocab_size, num_layers).to(device) + criterion = nn.CrossEntropyLoss(ignore_index=dataset.vocab.stoi[""]) + optimizer = optim.Adam(model.parameters(), lr=learning_rate) + + # Only finetune the CNN + for name, param in model.encoderCNN.inception.named_parameters(): + if "fc.weight" in name or "fc.bias" in name: + param.requires_grad = True + else: + param.requires_grad = train_CNN + + if load_model: + step = load_checkpoint(torch.load("my_checkpoint.pth.tar"), model, optimizer) + + model.train() + + for epoch in range(num_epochs): + # Uncomment the line below to see a couple of test cases + # print_examples(model, device, dataset) + + if save_model: + checkpoint = { + "state_dict": model.state_dict(), + "optimizer": optimizer.state_dict(), + "step": step, + } + save_checkpoint(checkpoint) + + for idx, (imgs, captions) in tqdm( + enumerate(train_loader), total=len(train_loader), leave=False + ): + imgs = imgs.to(device) + captions = captions.to(device) + + outputs = model(imgs, captions[:-1]) + loss = criterion( + outputs.reshape(-1, outputs.shape[2]), captions.reshape(-1) + ) + + writer.add_scalar("Training loss", loss.item(), global_step=step) + step += 1 + + optimizer.zero_grad() + loss.backward(loss) + optimizer.step() + + +if __name__ == "__main__": + train() diff --git a/ML/Pytorch/more_advanced/image_captioning/utils.py b/ML/Pytorch/more_advanced/image_captioning/utils.py new file mode 100644 index 0000000..eeb23d7 --- /dev/null +++ b/ML/Pytorch/more_advanced/image_captioning/utils.py @@ -0,0 +1,69 @@ +import torch +import torchvision.transforms as transforms +from PIL import Image + + +def print_examples(model, device, dataset): + transform = transforms.Compose( + [ + transforms.Resize((299, 299)), + transforms.ToTensor(), + transforms.Normalize((0.5, 0.5, 0.5), (0.5, 0.5, 0.5)), + ] + ) + + model.eval() + test_img1 = transform(Image.open("test_examples/dog.jpg").convert("RGB")).unsqueeze( + 0 + ) + print("Example 1 CORRECT: Dog on a beach by the ocean") + print( + "Example 1 OUTPUT: " + + " ".join(model.caption_image(test_img1.to(device), dataset.vocab)) + ) + test_img2 = transform( + Image.open("test_examples/child.jpg").convert("RGB") + ).unsqueeze(0) + print("Example 2 CORRECT: Child holding red frisbee outdoors") + print( + "Example 2 OUTPUT: " + + " ".join(model.caption_image(test_img2.to(device), dataset.vocab)) + ) + test_img3 = transform(Image.open("test_examples/bus.png").convert("RGB")).unsqueeze( + 0 + ) + print("Example 3 CORRECT: Bus driving by parked cars") + print( + "Example 3 OUTPUT: " + + " ".join(model.caption_image(test_img3.to(device), dataset.vocab)) + ) + test_img4 = transform( + Image.open("test_examples/boat.png").convert("RGB") + ).unsqueeze(0) + print("Example 4 CORRECT: A small boat in the ocean") + print( + "Example 4 OUTPUT: " + + " ".join(model.caption_image(test_img4.to(device), dataset.vocab)) + ) + test_img5 = transform( + Image.open("test_examples/horse.png").convert("RGB") + ).unsqueeze(0) + print("Example 5 CORRECT: A cowboy riding a horse in the desert") + print( + "Example 5 OUTPUT: " + + " ".join(model.caption_image(test_img5.to(device), dataset.vocab)) + ) + model.train() + + +def save_checkpoint(state, filename="my_checkpoint.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, model, optimizer): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint["state_dict"]) + optimizer.load_state_dict(checkpoint["optimizer"]) + step = checkpoint["step"] + return step diff --git a/ML/Pytorch/more_advanced/neuralstyle/annahathaway.png b/ML/Pytorch/more_advanced/neuralstyle/annahathaway.png new file mode 100644 index 0000000000000000000000000000000000000000..e7b2086f283b0c24eb71e75b80dc75179b5416ac GIT binary patch literal 124279 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 z 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

    (}fy8$P`M4pOA`4c=O!(wvVc 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 z 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%0D4UTgbp#^1A(Os|DdBGGhW%l(r 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

  • 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 f`Tys?&+nfU4d`tje04E@Xo Saving checkpoint") + torch.save(state, filename) + +def load_checkpoint(checkpoint, model): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint["state_dict"]) + +def get_loaders( + train_dir, + train_maskdir, + val_dir, + val_maskdir, + batch_size, + train_transform, + val_transform, + num_workers=4, + pin_memory=True, +): + train_ds = CarvanaDataset( + image_dir=train_dir, + mask_dir=train_maskdir, + transform=train_transform, + ) + + train_loader = DataLoader( + train_ds, + batch_size=batch_size, + num_workers=num_workers, + pin_memory=pin_memory, + shuffle=True, + ) + + val_ds = CarvanaDataset( + image_dir=val_dir, + mask_dir=val_maskdir, + transform=val_transform, + ) + + val_loader = DataLoader( + val_ds, + batch_size=batch_size, + num_workers=num_workers, + pin_memory=pin_memory, + shuffle=False, + ) + + return train_loader, val_loader + +def check_accuracy(loader, model, device="cuda"): + num_correct = 0 + num_pixels = 0 + dice_score = 0 + model.eval() + + with torch.no_grad(): + for x, y in loader: + x = x.to(device) + y = y.to(device).unsqueeze(1) + preds = torch.sigmoid(model(x)) + preds = (preds > 0.5).float() + num_correct += (preds == y).sum() + num_pixels += torch.numel(preds) + dice_score += (2 * (preds * y).sum()) / ( + (preds + y).sum() + 1e-8 + ) + + print( + f"Got {num_correct}/{num_pixels} with acc {num_correct/num_pixels*100:.2f}" + ) + print(f"Dice score: {dice_score/len(loader)}") + model.train() + +def save_predictions_as_imgs( + loader, model, folder="saved_images/", device="cuda" +): + model.eval() + for idx, (x, y) in enumerate(loader): + x = x.to(device=device) + with torch.no_grad(): + preds = torch.sigmoid(model(x)) + preds = (preds > 0.5).float() + torchvision.utils.save_image( + preds, f"{folder}/pred_{idx}.png" + ) + torchvision.utils.save_image(y.unsqueeze(1), f"{folder}{idx}.png") + + model.train() \ No newline at end of file diff --git a/ML/Pytorch/more_advanced/GANs/DCGAN_mnist.py b/ML/Pytorch/more_advanced/GANs/DCGAN_mnist.py new file mode 100644 index 0000000..9cf5463 --- /dev/null +++ b/ML/Pytorch/more_advanced/GANs/DCGAN_mnist.py @@ -0,0 +1,131 @@ +""" +Example code of how to code GANs and more specifically DCGAN, +for more information about DCGANs read: https://arxiv.org/abs/1511.06434 + +We then train the DCGAN on the MNIST dataset (toy dataset of handwritten digits) +and then generate our own. You can apply this more generally on really any dataset +but MNIST is simple enough to get the overall idea. + +Video explanation: https://youtu.be/5RYETbFFQ7s +Got any questions leave a comment on youtube :) + +Programmed by Aladdin Persson +* 2020-04-20 Initial coding + +""" + +# Imports +import torch +import torchvision +import torch.nn as nn # All neural network modules, nn.Linear, nn.Conv2d, BatchNorm, Loss functions +import torch.optim as optim # For all Optimization algorithms, SGD, Adam, etc. +import torchvision.datasets as datasets # Has standard datasets we can import in a nice way +import torchvision.transforms as transforms # Transformations we can perform on our dataset +from torch.utils.data import ( + DataLoader, +) # Gives easier dataset managment and creates mini batches +from torch.utils.tensorboard import SummaryWriter # to print to tensorboard +from model_utils import ( + Discriminator, + Generator, +) # Import our models we've defined (from DCGAN paper) + +# Hyperparameters +lr = 0.0005 +batch_size = 64 +image_size = 64 +channels_img = 1 +channels_noise = 256 +num_epochs = 10 + +# For how many channels Generator and Discriminator should use +features_d = 16 +features_g = 16 + +my_transforms = transforms.Compose( + [ + transforms.Resize(image_size), + transforms.ToTensor(), + transforms.Normalize((0.5,), (0.5,)), + ] +) + +dataset = datasets.MNIST( + root="dataset/", train=True, transform=my_transforms, download=True +) +dataloader = DataLoader(dataset, batch_size=batch_size, shuffle=True) + +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") + +# Create discriminator and generator +netD = Discriminator(channels_img, features_d).to(device) +netG = Generator(channels_noise, channels_img, features_g).to(device) + +# Setup Optimizer for G and D +optimizerD = optim.Adam(netD.parameters(), lr=lr, betas=(0.5, 0.999)) +optimizerG = optim.Adam(netG.parameters(), lr=lr, betas=(0.5, 0.999)) + +netG.train() +netD.train() + +criterion = nn.BCELoss() + +real_label = 1 +fake_label = 0 + +fixed_noise = torch.randn(64, channels_noise, 1, 1).to(device) +writer_real = SummaryWriter(f"runs/GAN_MNIST/test_real") +writer_fake = SummaryWriter(f"runs/GAN_MNIST/test_fake") +step = 0 + +print("Starting Training...") + +for epoch in range(num_epochs): + for batch_idx, (data, targets) in enumerate(dataloader): + data = data.to(device) + batch_size = data.shape[0] + + ### Train Discriminator: max log(D(x)) + log(1 - D(G(z))) + netD.zero_grad() + label = (torch.ones(batch_size) * 0.9).to(device) + output = netD(data).reshape(-1) + lossD_real = criterion(output, label) + D_x = output.mean().item() + + noise = torch.randn(batch_size, channels_noise, 1, 1).to(device) + fake = netG(noise) + label = (torch.ones(batch_size) * 0.1).to(device) + + output = netD(fake.detach()).reshape(-1) + lossD_fake = criterion(output, label) + + lossD = lossD_real + lossD_fake + lossD.backward() + optimizerD.step() + + ### Train Generator: max log(D(G(z))) + netG.zero_grad() + label = torch.ones(batch_size).to(device) + output = netD(fake).reshape(-1) + lossG = criterion(output, label) + lossG.backward() + optimizerG.step() + + # Print losses ocassionally and print to tensorboard + if batch_idx % 100 == 0: + step += 1 + print( + f"Epoch [{epoch}/{num_epochs}] Batch {batch_idx}/{len(dataloader)} \ + Loss D: {lossD:.4f}, loss G: {lossG:.4f} D(x): {D_x:.4f}" + ) + + with torch.no_grad(): + fake = netG(fixed_noise) + img_grid_real = torchvision.utils.make_grid(data[:32], normalize=True) + img_grid_fake = torchvision.utils.make_grid(fake[:32], normalize=True) + writer_real.add_image( + "Mnist Real Images", img_grid_real, global_step=step + ) + writer_fake.add_image( + "Mnist Fake Images", img_grid_fake, global_step=step + ) diff --git a/ML/Pytorch/more_advanced/GANs/README.md b/ML/Pytorch/more_advanced/GANs/README.md new file mode 100644 index 0000000..53c15d7 --- /dev/null +++ b/ML/Pytorch/more_advanced/GANs/README.md @@ -0,0 +1,4 @@ +### Generative Adversarial Network + +DCGAN_mnist.py: main file and training network +model_utils.py: Generator and discriminator implementation \ No newline at end of file diff --git a/ML/Pytorch/more_advanced/GANs/model_utils.py b/ML/Pytorch/more_advanced/GANs/model_utils.py new file mode 100644 index 0000000..7f457c4 --- /dev/null +++ b/ML/Pytorch/more_advanced/GANs/model_utils.py @@ -0,0 +1,76 @@ +""" +Discriminator and Generator implementation from DCGAN paper +that we import in the main (DCGAN_mnist.py) file. +""" + +import torch +import torch.nn as nn + + +class Discriminator(nn.Module): + def __init__(self, channels_img, features_d): + super(Discriminator, self).__init__() + self.net = nn.Sequential( + # N x channels_img x 64 x 64 + nn.Conv2d(channels_img, features_d, kernel_size=4, stride=2, padding=1), + nn.LeakyReLU(0.2), + # N x features_d x 32 x 32 + nn.Conv2d(features_d, features_d * 2, kernel_size=4, stride=2, padding=1), + nn.BatchNorm2d(features_d * 2), + nn.LeakyReLU(0.2), + nn.Conv2d( + features_d * 2, features_d * 4, kernel_size=4, stride=2, padding=1 + ), + nn.BatchNorm2d(features_d * 4), + nn.LeakyReLU(0.2), + nn.Conv2d( + features_d * 4, features_d * 8, kernel_size=4, stride=2, padding=1 + ), + nn.BatchNorm2d(features_d * 8), + nn.LeakyReLU(0.2), + # N x features_d*8 x 4 x 4 + nn.Conv2d(features_d * 8, 1, kernel_size=4, stride=2, padding=0), + # N x 1 x 1 x 1 + nn.Sigmoid(), + ) + + def forward(self, x): + return self.net(x) + + +class Generator(nn.Module): + def __init__(self, channels_noise, channels_img, features_g): + super(Generator, self).__init__() + + self.net = nn.Sequential( + # N x channels_noise x 1 x 1 + nn.ConvTranspose2d( + channels_noise, features_g * 16, kernel_size=4, stride=1, padding=0 + ), + nn.BatchNorm2d(features_g * 16), + nn.ReLU(), + # N x features_g*16 x 4 x 4 + nn.ConvTranspose2d( + features_g * 16, features_g * 8, kernel_size=4, stride=2, padding=1 + ), + nn.BatchNorm2d(features_g * 8), + nn.ReLU(), + nn.ConvTranspose2d( + features_g * 8, features_g * 4, kernel_size=4, stride=2, padding=1 + ), + nn.BatchNorm2d(features_g * 4), + nn.ReLU(), + nn.ConvTranspose2d( + features_g * 4, features_g * 2, kernel_size=4, stride=2, padding=1 + ), + nn.BatchNorm2d(features_g * 2), + nn.ReLU(), + nn.ConvTranspose2d( + features_g * 2, channels_img, kernel_size=4, stride=2, padding=1 + ), + # N x channels_img x 64 x 64 + nn.Tanh(), + ) + + def forward(self, x): + return self.net(x) diff --git a/ML/Pytorch/more_advanced/Seq2Seq/seq2seq.py b/ML/Pytorch/more_advanced/Seq2Seq/seq2seq.py new file mode 100644 index 0000000..16be469 --- /dev/null +++ b/ML/Pytorch/more_advanced/Seq2Seq/seq2seq.py @@ -0,0 +1,242 @@ +import torch +import torch.nn as nn +import torch.optim as optim +from torchtext.datasets import Multi30k +from torchtext.data import Field, BucketIterator +import numpy as np +import spacy +import random +from torch.utils.tensorboard import SummaryWriter # to print to tensorboard +from utils import translate_sentence, bleu, save_checkpoint, load_checkpoint + +spacy_ger = spacy.load("de") +spacy_eng = spacy.load("en") + + +def tokenize_ger(text): + return [tok.text for tok in spacy_ger.tokenizer(text)] + + +def tokenize_eng(text): + return [tok.text for tok in spacy_eng.tokenizer(text)] + + +german = Field(tokenize=tokenize_ger, lower=True, init_token="", eos_token="") + +english = Field( + tokenize=tokenize_eng, lower=True, init_token="", eos_token="" +) + +train_data, valid_data, test_data = Multi30k.splits( + exts=(".de", ".en"), fields=(german, english) +) + +german.build_vocab(train_data, max_size=10000, min_freq=2) +english.build_vocab(train_data, max_size=10000, min_freq=2) + + +class Encoder(nn.Module): + def __init__(self, input_size, embedding_size, hidden_size, num_layers, p): + super(Encoder, self).__init__() + self.dropout = nn.Dropout(p) + self.hidden_size = hidden_size + self.num_layers = num_layers + + self.embedding = nn.Embedding(input_size, embedding_size) + self.rnn = nn.LSTM(embedding_size, hidden_size, num_layers, dropout=p) + + def forward(self, x): + # x shape: (seq_length, N) where N is batch size + + embedding = self.dropout(self.embedding(x)) + # embedding shape: (seq_length, N, embedding_size) + + outputs, (hidden, cell) = self.rnn(embedding) + # outputs shape: (seq_length, N, hidden_size) + + return hidden, cell + + +class Decoder(nn.Module): + def __init__( + self, input_size, embedding_size, hidden_size, output_size, num_layers, p + ): + super(Decoder, self).__init__() + self.dropout = nn.Dropout(p) + self.hidden_size = hidden_size + self.num_layers = num_layers + + self.embedding = nn.Embedding(input_size, embedding_size) + self.rnn = nn.LSTM(embedding_size, hidden_size, num_layers, dropout=p) + self.fc = nn.Linear(hidden_size, output_size) + + def forward(self, x, hidden, cell): + # x shape: (N) where N is for batch size, we want it to be (1, N), seq_length + # is 1 here because we are sending in a single word and not a sentence + x = x.unsqueeze(0) + + embedding = self.dropout(self.embedding(x)) + # embedding shape: (1, N, embedding_size) + + outputs, (hidden, cell) = self.rnn(embedding, (hidden, cell)) + # outputs shape: (1, N, hidden_size) + + predictions = self.fc(outputs) + + # predictions shape: (1, N, length_target_vocabulary) to send it to + # loss function we want it to be (N, length_target_vocabulary) so we're + # just gonna remove the first dim + predictions = predictions.squeeze(0) + + return predictions, hidden, cell + + +class Seq2Seq(nn.Module): + def __init__(self, encoder, decoder): + super(Seq2Seq, self).__init__() + self.encoder = encoder + self.decoder = decoder + + def forward(self, source, target, teacher_force_ratio=0.5): + batch_size = source.shape[1] + target_len = target.shape[0] + target_vocab_size = len(english.vocab) + + outputs = torch.zeros(target_len, batch_size, target_vocab_size).to(device) + + hidden, cell = self.encoder(source) + + # Grab the first input to the Decoder which will be token + x = target[0] + + for t in range(1, target_len): + # Use previous hidden, cell as context from encoder at start + output, hidden, cell = self.decoder(x, hidden, cell) + + # Store next output prediction + outputs[t] = output + + # Get the best word the Decoder predicted (index in the vocabulary) + best_guess = output.argmax(1) + + # With probability of teacher_force_ratio we take the actual next word + # otherwise we take the word that the Decoder predicted it to be. + # Teacher Forcing is used so that the model gets used to seeing + # similar inputs at training and testing time, if teacher forcing is 1 + # then inputs at test time might be completely different than what the + # network is used to. This was a long comment. + x = target[t] if random.random() < teacher_force_ratio else best_guess + + return outputs + + +### We're ready to define everything we need for training our Seq2Seq model ### + +# Training hyperparameters +num_epochs = 100 +learning_rate = 0.001 +batch_size = 64 + +# Model hyperparameters +load_model = False +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") +input_size_encoder = len(german.vocab) +input_size_decoder = len(english.vocab) +output_size = len(english.vocab) +encoder_embedding_size = 300 +decoder_embedding_size = 300 +hidden_size = 1024 # Needs to be the same for both RNN's +num_layers = 2 +enc_dropout = 0.5 +dec_dropout = 0.5 + +# Tensorboard to get nice loss plot +writer = SummaryWriter(f"runs/loss_plot") +step = 0 + +train_iterator, valid_iterator, test_iterator = BucketIterator.splits( + (train_data, valid_data, test_data), + batch_size=batch_size, + sort_within_batch=True, + sort_key=lambda x: len(x.src), + device=device, +) + +encoder_net = Encoder( + input_size_encoder, encoder_embedding_size, hidden_size, num_layers, enc_dropout +).to(device) + +decoder_net = Decoder( + input_size_decoder, + decoder_embedding_size, + hidden_size, + output_size, + num_layers, + dec_dropout, +).to(device) + +model = Seq2Seq(encoder_net, decoder_net).to(device) +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +pad_idx = english.vocab.stoi[""] +criterion = nn.CrossEntropyLoss(ignore_index=pad_idx) + +if load_model: + load_checkpoint(torch.load("my_checkpoint.pth.tar"), model, optimizer) + + +sentence = "ein boot mit mehreren männern darauf wird von einem großen pferdegespann ans ufer gezogen." + +for epoch in range(num_epochs): + print(f"[Epoch {epoch} / {num_epochs}]") + + checkpoint = {"state_dict": model.state_dict(), "optimizer": optimizer.state_dict()} + save_checkpoint(checkpoint) + + model.eval() + + translated_sentence = translate_sentence( + model, sentence, german, english, device, max_length=50 + ) + + print(f"Translated example sentence: \n {translated_sentence}") + + model.train() + + for batch_idx, batch in enumerate(train_iterator): + # Get input and targets and get to cuda + inp_data = batch.src.to(device) + target = batch.trg.to(device) + + # Forward prop + output = model(inp_data, target) + + # Output is of shape (trg_len, batch_size, output_dim) but Cross Entropy Loss + # doesn't take input in that form. For example if we have MNIST we want to have + # output to be: (N, 10) and targets just (N). Here we can view it in a similar + # way that we have output_words * batch_size that we want to send in into + # our cost function, so we need to do some reshapin. While we're at it + # Let's also remove the start token while we're at it + output = output[1:].reshape(-1, output.shape[2]) + target = target[1:].reshape(-1) + + optimizer.zero_grad() + loss = criterion(output, target) + + # Back prop + loss.backward() + + # Clip to avoid exploding gradient issues, makes sure grads are + # within a healthy range + torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1) + + # Gradient descent step + optimizer.step() + + # Plot to tensorboard + writer.add_scalar("Training loss", loss, global_step=step) + step += 1 + + +score = bleu(test_data[1:100], model, german, english, device) +print(f"Bleu score {score*100:.2f}") diff --git a/ML/Pytorch/more_advanced/Seq2Seq/utils.py b/ML/Pytorch/more_advanced/Seq2Seq/utils.py new file mode 100644 index 0000000..e012598 --- /dev/null +++ b/ML/Pytorch/more_advanced/Seq2Seq/utils.py @@ -0,0 +1,84 @@ +import torch +import spacy +from torchtext.data.metrics import bleu_score +import sys + + +def translate_sentence(model, sentence, german, english, device, max_length=50): + # print(sentence) + + # sys.exit() + + # Load german tokenizer + spacy_ger = spacy.load("de") + + # Create tokens using spacy and everything in lower case (which is what our vocab is) + if type(sentence) == str: + tokens = [token.text.lower() for token in spacy_ger(sentence)] + else: + tokens = [token.lower() for token in sentence] + + # print(tokens) + + # sys.exit() + # Add and in beginning and end respectively + tokens.insert(0, german.init_token) + tokens.append(german.eos_token) + + # Go through each german token and convert to an index + text_to_indices = [german.vocab.stoi[token] for token in tokens] + + # Convert to Tensor + sentence_tensor = torch.LongTensor(text_to_indices).unsqueeze(1).to(device) + + # Build encoder hidden, cell state + with torch.no_grad(): + hidden, cell = model.encoder(sentence_tensor) + + outputs = [english.vocab.stoi[""]] + + for _ in range(max_length): + previous_word = torch.LongTensor([outputs[-1]]).to(device) + + with torch.no_grad(): + output, hidden, cell = model.decoder(previous_word, hidden, cell) + best_guess = output.argmax(1).item() + + outputs.append(best_guess) + + # Model predicts it's the end of the sentence + if output.argmax(1).item() == english.vocab.stoi[""]: + break + + translated_sentence = [english.vocab.itos[idx] for idx in outputs] + + # remove start token + return translated_sentence[1:] + + +def bleu(data, model, german, english, device): + targets = [] + outputs = [] + + for example in data: + src = vars(example)["src"] + trg = vars(example)["trg"] + + prediction = translate_sentence(model, src, german, english, device) + prediction = prediction[:-1] # remove token + + targets.append([trg]) + outputs.append(prediction) + + return bleu_score(outputs, targets) + + +def save_checkpoint(state, filename="my_checkpoint.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, model, optimizer): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint["state_dict"]) + optimizer.load_state_dict(checkpoint["optimizer"]) diff --git a/ML/Pytorch/more_advanced/Seq2Seq_attention/seq2seq_attention.py b/ML/Pytorch/more_advanced/Seq2Seq_attention/seq2seq_attention.py new file mode 100644 index 0000000..18a54ac --- /dev/null +++ b/ML/Pytorch/more_advanced/Seq2Seq_attention/seq2seq_attention.py @@ -0,0 +1,279 @@ +import random +import torch +import torch.nn as nn +import torch.optim as optim +import numpy as np +import spacy +from utils import translate_sentence, bleu, save_checkpoint, load_checkpoint +from torch.utils.tensorboard import SummaryWriter # to print to tensorboard +from torchtext.datasets import Multi30k +from torchtext.data import Field, BucketIterator + +""" +To install spacy languages do: +python -m spacy download en +python -m spacy download de +""" +spacy_ger = spacy.load("de") +spacy_eng = spacy.load("en") + + +def tokenize_ger(text): + return [tok.text for tok in spacy_ger.tokenizer(text)] + + +def tokenize_eng(text): + return [tok.text for tok in spacy_eng.tokenizer(text)] + + +german = Field(tokenize=tokenize_ger, lower=True, init_token="", eos_token="") + +english = Field( + tokenize=tokenize_eng, lower=True, init_token="", eos_token="" +) + +train_data, valid_data, test_data = Multi30k.splits( + exts=(".de", ".en"), fields=(german, english) +) + +german.build_vocab(train_data, max_size=10000, min_freq=2) +english.build_vocab(train_data, max_size=10000, min_freq=2) + + +class Encoder(nn.Module): + def __init__(self, input_size, embedding_size, hidden_size, num_layers, p): + super(Encoder, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + + self.embedding = nn.Embedding(input_size, embedding_size) + self.rnn = nn.LSTM(embedding_size, hidden_size, num_layers, bidirectional=True) + + self.fc_hidden = nn.Linear(hidden_size * 2, hidden_size) + self.fc_cell = nn.Linear(hidden_size * 2, hidden_size) + self.dropout = nn.Dropout(p) + + def forward(self, x): + # x: (seq_length, N) where N is batch size + + embedding = self.dropout(self.embedding(x)) + # embedding shape: (seq_length, N, embedding_size) + + encoder_states, (hidden, cell) = self.rnn(embedding) + # outputs shape: (seq_length, N, hidden_size) + + # Use forward, backward cells and hidden through a linear layer + # so that it can be input to the decoder which is not bidirectional + # Also using index slicing ([idx:idx+1]) to keep the dimension + hidden = self.fc_hidden(torch.cat((hidden[0:1], hidden[1:2]), dim=2)) + cell = self.fc_cell(torch.cat((cell[0:1], cell[1:2]), dim=2)) + + return encoder_states, hidden, cell + + +class Decoder(nn.Module): + def __init__( + self, input_size, embedding_size, hidden_size, output_size, num_layers, p + ): + super(Decoder, self).__init__() + self.hidden_size = hidden_size + self.num_layers = num_layers + + self.embedding = nn.Embedding(input_size, embedding_size) + self.rnn = nn.LSTM(hidden_size * 2 + embedding_size, hidden_size, num_layers) + + self.energy = nn.Linear(hidden_size * 3, 1) + self.fc = nn.Linear(hidden_size, output_size) + self.dropout = nn.Dropout(p) + self.softmax = nn.Softmax(dim=0) + self.relu = nn.ReLU() + + def forward(self, x, encoder_states, hidden, cell): + x = x.unsqueeze(0) + # x: (1, N) where N is the batch size + + embedding = self.dropout(self.embedding(x)) + # embedding shape: (1, N, embedding_size) + + sequence_length = encoder_states.shape[0] + h_reshaped = hidden.repeat(sequence_length, 1, 1) + # h_reshaped: (seq_length, N, hidden_size*2) + + energy = self.relu(self.energy(torch.cat((h_reshaped, encoder_states), dim=2))) + # energy: (seq_length, N, 1) + + attention = self.softmax(energy) + # attention: (seq_length, N, 1) + + # attention: (seq_length, N, 1), snk + # encoder_states: (seq_length, N, hidden_size*2), snl + # we want context_vector: (1, N, hidden_size*2), i.e knl + context_vector = torch.einsum("snk,snl->knl", attention, encoder_states) + + rnn_input = torch.cat((context_vector, embedding), dim=2) + # rnn_input: (1, N, hidden_size*2 + embedding_size) + + outputs, (hidden, cell) = self.rnn(rnn_input, (hidden, cell)) + # outputs shape: (1, N, hidden_size) + + predictions = self.fc(outputs).squeeze(0) + # predictions: (N, hidden_size) + + return predictions, hidden, cell + + +class Seq2Seq(nn.Module): + def __init__(self, encoder, decoder): + super(Seq2Seq, self).__init__() + self.encoder = encoder + self.decoder = decoder + + def forward(self, source, target, teacher_force_ratio=0.5): + batch_size = source.shape[1] + target_len = target.shape[0] + target_vocab_size = len(english.vocab) + + outputs = torch.zeros(target_len, batch_size, target_vocab_size).to(device) + encoder_states, hidden, cell = self.encoder(source) + + # First input will be token + x = target[0] + + for t in range(1, target_len): + # At every time step use encoder_states and update hidden, cell + output, hidden, cell = self.decoder(x, encoder_states, hidden, cell) + + # Store prediction for current time step + outputs[t] = output + + # Get the best word the Decoder predicted (index in the vocabulary) + best_guess = output.argmax(1) + + # With probability of teacher_force_ratio we take the actual next word + # otherwise we take the word that the Decoder predicted it to be. + # Teacher Forcing is used so that the model gets used to seeing + # similar inputs at training and testing time, if teacher forcing is 1 + # then inputs at test time might be completely different than what the + # network is used to. This was a long comment. + x = target[t] if random.random() < teacher_force_ratio else best_guess + + return outputs + + +### We're ready to define everything we need for training our Seq2Seq model ### +device = torch.device("cuda" if torch.cuda.is_available() else "cpu") +load_model = False +save_model = True + +# Training hyperparameters +num_epochs = 100 +learning_rate = 3e-4 +batch_size = 32 + +# Model hyperparameters +input_size_encoder = len(german.vocab) +input_size_decoder = len(english.vocab) +output_size = len(english.vocab) +encoder_embedding_size = 300 +decoder_embedding_size = 300 +hidden_size = 1024 +num_layers = 1 +enc_dropout = 0.0 +dec_dropout = 0.0 + +# Tensorboard to get nice loss plot +writer = SummaryWriter(f"runs/loss_plot") +step = 0 + +train_iterator, valid_iterator, test_iterator = BucketIterator.splits( + (train_data, valid_data, test_data), + batch_size=batch_size, + sort_within_batch=True, + sort_key=lambda x: len(x.src), + device=device, +) + +encoder_net = Encoder( + input_size_encoder, encoder_embedding_size, hidden_size, num_layers, enc_dropout +).to(device) + +decoder_net = Decoder( + input_size_decoder, + decoder_embedding_size, + hidden_size, + output_size, + num_layers, + dec_dropout, +).to(device) + +model = Seq2Seq(encoder_net, decoder_net).to(device) +optimizer = optim.Adam(model.parameters(), lr=learning_rate) + +pad_idx = english.vocab.stoi[""] +criterion = nn.CrossEntropyLoss(ignore_index=pad_idx) + +if load_model: + load_checkpoint(torch.load("my_checkpoint.pth.tar"), model, optimizer) + +sentence = ( + "ein boot mit mehreren männern darauf wird von einem großen" + "pferdegespann ans ufer gezogen." +) + +for epoch in range(num_epochs): + print(f"[Epoch {epoch} / {num_epochs}]") + + if save_model: + checkpoint = { + "state_dict": model.state_dict(), + "optimizer": optimizer.state_dict(), + } + save_checkpoint(checkpoint) + + model.eval() + + translated_sentence = translate_sentence( + model, sentence, german, english, device, max_length=50 + ) + + print(f"Translated example sentence: \n {translated_sentence}") + + model.train() + + for batch_idx, batch in enumerate(train_iterator): + # Get input and targets and get to cuda + inp_data = batch.src.to(device) + target = batch.trg.to(device) + + # Forward prop + output = model(inp_data, target) + + # Output is of shape (trg_len, batch_size, output_dim) but Cross Entropy Loss + # doesn't take input in that form. For example if we have MNIST we want to have + # output to be: (N, 10) and targets just (N). Here we can view it in a similar + # way that we have output_words * batch_size that we want to send in into + # our cost function, so we need to do some reshapin. While we're at it + # Let's also remove the start token while we're at it + output = output[1:].reshape(-1, output.shape[2]) + target = target[1:].reshape(-1) + + optimizer.zero_grad() + loss = criterion(output, target) + + # Back prop + loss.backward() + + # Clip to avoid exploding gradient issues, makes sure grads are + # within a healthy range + torch.nn.utils.clip_grad_norm_(model.parameters(), max_norm=1) + + # Gradient descent step + optimizer.step() + + # Plot to tensorboard + writer.add_scalar("Training loss", loss, global_step=step) + step += 1 + +# running on entire test data takes a while +score = bleu(test_data[1:100], model, german, english, device) +print(f"Bleu score {score * 100:.2f}") diff --git a/ML/Pytorch/more_advanced/Seq2Seq_attention/utils.py b/ML/Pytorch/more_advanced/Seq2Seq_attention/utils.py new file mode 100644 index 0000000..b1c5390 --- /dev/null +++ b/ML/Pytorch/more_advanced/Seq2Seq_attention/utils.py @@ -0,0 +1,79 @@ +import torch +import spacy +from torchtext.data.metrics import bleu_score +import sys + + +def translate_sentence(model, sentence, german, english, device, max_length=50): + # Load german tokenizer + spacy_ger = spacy.load("de") + + # Create tokens using spacy and everything in lower case (which is what our vocab is) + if type(sentence) == str: + tokens = [token.text.lower() for token in spacy_ger(sentence)] + else: + tokens = [token.lower() for token in sentence] + + # Add and in beginning and end respectively + tokens.insert(0, german.init_token) + tokens.append(german.eos_token) + + # Go through each german token and convert to an index + text_to_indices = [german.vocab.stoi[token] for token in tokens] + + # Convert to Tensor + sentence_tensor = torch.LongTensor(text_to_indices).unsqueeze(1).to(device) + + # Build encoder hidden, cell state + with torch.no_grad(): + outputs_encoder, hiddens, cells = model.encoder(sentence_tensor) + + outputs = [english.vocab.stoi[""]] + + for _ in range(max_length): + previous_word = torch.LongTensor([outputs[-1]]).to(device) + + with torch.no_grad(): + output, hiddens, cells = model.decoder( + previous_word, outputs_encoder, hiddens, cells + ) + best_guess = output.argmax(1).item() + + outputs.append(best_guess) + + # Model predicts it's the end of the sentence + if output.argmax(1).item() == english.vocab.stoi[""]: + break + + translated_sentence = [english.vocab.itos[idx] for idx in outputs] + + # remove start token + return translated_sentence[1:] + + +def bleu(data, model, german, english, device): + targets = [] + outputs = [] + + for example in data: + src = vars(example)["src"] + trg = vars(example)["trg"] + + prediction = translate_sentence(model, src, german, english, device) + prediction = prediction[:-1] # remove token + + targets.append([trg]) + outputs.append(prediction) + + return bleu_score(outputs, targets) + + +def save_checkpoint(state, filename="my_checkpoint.pth.tar"): + print("=> Saving checkpoint") + torch.save(state, filename) + + +def load_checkpoint(checkpoint, model, optimizer): + print("=> Loading checkpoint") + model.load_state_dict(checkpoint["state_dict"]) + optimizer.load_state_dict(checkpoint["optimizer"]) diff --git a/ML/Pytorch/more_advanced/image_captioning/README.md b/ML/Pytorch/more_advanced/image_captioning/README.md new file mode 100644 index 0000000..219b253 --- /dev/null +++ b/ML/Pytorch/more_advanced/image_captioning/README.md @@ -0,0 +1,12 @@ +### Image Captioning + +Download the dataset used: https://www.kaggle.com/dataset/e1cd22253a9b23b073794872bf565648ddbe4f17e7fa9e74766ad3707141adeb +Then set images folder, captions.txt inside a folder Flickr8k. + +train.py: For training the network + +model.py: creating the encoderCNN, decoderRNN and hooking them togethor + +get_loader.py: Loading the data, creating vocabulary + +utils.py: Load model, save model, printing few test cases downloaded online \ No newline at end of file diff --git a/ML/Pytorch/more_advanced/image_captioning/get_loader.py b/ML/Pytorch/more_advanced/image_captioning/get_loader.py new file mode 100644 index 0000000..b14f3b1 --- /dev/null +++ b/ML/Pytorch/more_advanced/image_captioning/get_loader.py @@ -0,0 +1,142 @@ +import os # when loading file paths +import pandas as pd # for lookup in annotation file +import spacy # for tokenizer +import torch +from torch.nn.utils.rnn import pad_sequence # pad batch +from torch.utils.data import DataLoader, Dataset +from PIL import Image # Load img +import torchvision.transforms as transforms + + +# We want to convert text -> numerical values +# 1. We need a Vocabulary mapping each word to a index +# 2. We need to setup a Pytorch dataset to load the data +# 3. Setup padding of every batch (all examples should be +# of same seq_len and setup dataloader) +# Note that loading the image is very easy compared to the text! + +# Download with: python -m spacy download en +spacy_eng = spacy.load("en") + + +class Vocabulary: + def __init__(self, freq_threshold): + self.itos = {0: "", 1: "", 2: "", 3: ""} + self.stoi = {"": 0, "": 1, "": 2, "": 3} + self.freq_threshold = freq_threshold + + def __len__(self): + return len(self.itos) + + @staticmethod + def tokenizer_eng(text): + return [tok.text.lower() for tok in spacy_eng.tokenizer(text)] + + def build_vocabulary(self, sentence_list): + frequencies = {} + idx = 4 + + for sentence in sentence_list: + for word in self.tokenizer_eng(sentence): + if word not in frequencies: + frequencies[word] = 1 + + else: + frequencies[word] += 1 + + if frequencies[word] == self.freq_threshold: + self.stoi[word] = idx + self.itos[idx] = word + idx += 1 + + def numericalize(self, text): + tokenized_text = self.tokenizer_eng(text) + + return [ + self.stoi[token] if token in self.stoi else self.stoi[""] + for token in tokenized_text + ] + + +class FlickrDataset(Dataset): + def __init__(self, root_dir, captions_file, transform=None, freq_threshold=5): + self.root_dir = root_dir + self.df = pd.read_csv(captions_file) + self.transform = transform + + # Get img, caption columns + self.imgs = self.df["image"] + self.captions = self.df["caption"] + + # Initialize vocabulary and build vocab + self.vocab = Vocabulary(freq_threshold) + self.vocab.build_vocabulary(self.captions.tolist()) + + def __len__(self): + return len(self.df) + + def __getitem__(self, index): + caption = self.captions[index] + img_id = self.imgs[index] + img = Image.open(os.path.join(self.root_dir, img_id)).convert("RGB") + + if self.transform is not None: + img = self.transform(img) + + numericalized_caption = [self.vocab.stoi[""]] + numericalized_caption += self.vocab.numericalize(caption) + numericalized_caption.append(self.vocab.stoi[""]) + + return img, torch.tensor(numericalized_caption) + + +class MyCollate: + def __init__(self, pad_idx): + self.pad_idx = pad_idx + + def __call__(self, batch): + imgs = [item[0].unsqueeze(0) for item in batch] + imgs = torch.cat(imgs, dim=0) + targets = [item[1] for item in batch] + targets = pad_sequence(targets, batch_first=False, padding_value=self.pad_idx) + + return imgs, targets + + +def get_loader( + root_folder, + annotation_file, + transform, + batch_size=32, + num_workers=8, + shuffle=True, + pin_memory=True, +): + dataset = FlickrDataset(root_folder, annotation_file, transform=transform) + + pad_idx = dataset.vocab.stoi[""] + + loader = DataLoader( + dataset=dataset, + batch_size=batch_size, + num_workers=num_workers, + shuffle=shuffle, + pin_memory=pin_memory, + collate_fn=MyCollate(pad_idx=pad_idx), + ) + + return loader, dataset + + +if __name__ == "__main__": + transform = transforms.Compose( + [transforms.Resize((224, 224)), transforms.ToTensor(),] + ) + + loader, dataset = get_loader( + "flickr8k/images/", "flickr8k/captions.txt", transform=transform + ) + + for idx, (imgs, captions) in enumerate(loader): + print(imgs.shape) + print(captions.shape) diff --git a/ML/Pytorch/more_advanced/image_captioning/model.py b/ML/Pytorch/more_advanced/image_captioning/model.py new file mode 100644 index 0000000..01be450 --- /dev/null +++ b/ML/Pytorch/more_advanced/image_captioning/model.py @@ -0,0 +1,66 @@ +import torch +import torch.nn as nn +import statistics +import torchvision.models as models + + +class EncoderCNN(nn.Module): + def __init__(self, embed_size, train_CNN=False): + super(EncoderCNN, self).__init__() + self.train_CNN = train_CNN + self.inception = models.inception_v3(pretrained=True, aux_logits=False) + self.inception.fc = nn.Linear(self.inception.fc.in_features, embed_size) + self.relu = nn.ReLU() + self.times = [] + self.dropout = nn.Dropout(0.5) + + def forward(self, images): + features = self.inception(images) + return self.dropout(self.relu(features)) + + +class DecoderRNN(nn.Module): + def __init__(self, embed_size, hidden_size, vocab_size, num_layers): + super(DecoderRNN, self).__init__() + self.embed = nn.Embedding(vocab_size, embed_size) + self.lstm = nn.LSTM(embed_size, hidden_size, num_layers) + self.linear = nn.Linear(hidden_size, vocab_size) + self.dropout = nn.Dropout(0.5) + + def forward(self, features, captions): + embeddings = self.dropout(self.embed(captions)) + embeddings = torch.cat((features.unsqueeze(0), embeddings), dim=0) + hiddens, _ = self.lstm(embeddings) + outputs = self.linear(hiddens) + return outputs + + +class CNNtoRNN(nn.Module): + def __init__(self, embed_size, hidden_size, vocab_size, num_layers): + super(CNNtoRNN, self).__init__() + self.encoderCNN = EncoderCNN(embed_size) + self.decoderRNN = DecoderRNN(embed_size, hidden_size, vocab_size, num_layers) + + def forward(self, images, captions): + features = self.encoderCNN(images) + outputs = self.decoderRNN(features, captions) + return outputs + + def caption_image(self, image, vocabulary, max_length=50): + result_caption = [] + + with torch.no_grad(): + x = self.encoderCNN(image).unsqueeze(0) + states = None + + for _ in range(max_length): + hiddens, states = self.decoderRNN.lstm(x, states) + output = self.decoderRNN.linear(hiddens.squeeze(0)) + predicted = output.argmax(1) + result_caption.append(predicted.item()) + x = self.decoderRNN.embed(predicted).unsqueeze(0) + + if vocabulary.itos[predicted.item()] == "": + break + + return [vocabulary.itos[idx] for idx in result_caption] diff --git a/ML/Pytorch/more_advanced/image_captioning/test_examples/boat.png b/ML/Pytorch/more_advanced/image_captioning/test_examples/boat.png new file mode 100644 index 0000000000000000000000000000000000000000..838119ba3c4809325b0848c10ee4e9c83c9b7d35 GIT binary patch literal 377447 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≶;7p#RqdbQxSR%~Fb>)B1YD=W${*Jm(@ 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%0DW9VQ(2gdrF$|A~F2@4gxE(L$_um2~! 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

    ~dmjcwbnfj`}HYlk4PT}3+ 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

    K*Am__hp!mJm$m*~eR$6tziCb0HOKD(6-RYN} z>Yk~2o~cF6LD7$;^9RaTTEd~2Du{17)w9PGR|?# z;H@MAOfK+i$3l9MPd%y^v&;)zgkCCX9HdJ3~JL* zZ#w`OlhW8(|5G+su%PoST0%>vpu!&3xe^9XTI)*7ZAqy$A+;u#Z3(F@sd8ma{#6HR ze6;P1pUp|x1KjeYk1(**fh&Vfhxu|R#L9^;54^PRh;P|rTL5NmwDWT4FP(bxN4D4w z_%C~+;!FZo?OVdTw&?y@696zr>c9qG451f-F=J@Y7~VHUtG0L*OPzT0m%s-(GMB9B ztM=Rt=gLic4w)%_K^xjPCr;eO>jZeN4RBsh{VR!*<#8J5$8a+*L!;Y+)?OWnL>RE;bElXsztdIdVk$dz~T zlvJUbI-;e+s+n;x7d%4}A6FLONCWIeA9LQtlemBV;P;;!^!mqt{Kr4>?d@wvE~N-p z@B>;Ap&PMExVkwOL<(Mw$SD)pmj%*shG?jJj7v1P)z; z6jXmW$)>SsjZHs){O3P-?EFvu4npttb3bbS`FGo&`d&}-Py0H~F}fR>v{o)1bpY#a z`9*tE-S~o9VunZ|B)5h%SWM?h={#u#>SP!P-GXRAx(a7n?I&!5CT&M@vA<}Ig?8u$2I1<~AIM@yb0Y$n>uAGp?QwT1s(QR9N&z{&v(v9ug zqI)(p?HzP`;7C>N36SnVO}Z6RWZx9pGu1Q%OFM2ts{5Ck-KG0 zUD1cD`sjf(cg45*47u^Vf97VFUPT|YC5PhLy-ERIeRUqp=(=AWY$(42T6jXr<=~iUypRzFK+(QyC zTk5armSjsjj2Wj`A~ye>&GFDD5~aXjiRJ})Vs{X#O$DIB(5C~ zD27RyP&dh#7((O}o)VAm9@dt$Itgc_()#s<5%l;+XimU$jcNNa5W#p6#r z{#dO#<%g8IAGQDDyWQu$&uIDCP}ey&wTVY>9qI2J>1$`SK0#@zn_JST>*aB3<=o56J8R zkvjAy4{)&ffh%6YV*Bnm{Or)5JppivmM;4Xm%O>l5Q&rJn`H3@QR6Nn zeKn&CA#z`$0e}gYdxXpMVOft*(Zg5J1PUr&MiVONfLkIhu-4FwjSX&M$t#fgh4O$v zO7a(R&O9d9x+9+v?)ubPub1Dzqbm+F;|>)(p@KJDz{5pPFpv3B;tL}(4$ujnw7TLZ z?33yJL3wgUuGiDPDg?*YF%Q5eNJH)E1h#H`;^Qol9)!s zdf|+kKds``b{<)^TCc(3MaD3?4hZIZxpO_-xnAykFK+>;xEB=>%~RP6O#ayXC__Ct zU=Xv6^K8=s->n$&sYYBfzEdhNi`ke=fXPN|%R=k2z_!ev6ZVV@c8m;B1Ox3HdJB)< z!XIcC^mhsdIyrz+eE?wH9C{m<-b!hH^2r~4_b1;&t?b*L`unDzf4A``f7kZJ;~nRJ z*xyyh>S<=t8o>ss^GJ^QTEsk9xYk5N4AZDbz^YN6xuL{HZ9>zN37z_ zL(p;Ti0{K!YHv~QE+{=k6<*d8>!#qAHL?qS%^KS?N5HD)P}LCFvBVDS$zxmU#F07m zu3UjN;w@aoayM+*o7U_tTmETV?v^cg)0_sUc52UFb`_p>mv7^%&v}YZJ99UznQNBx zHB0K6DS62dJ<b_A`KQI`$voTfgsD>`m z^@;ST&*YS)Z`{n7vi41x`{3=gohf#KtKvxsp&}?yLs z{GiwD>}-F3|EsUQ`X7G#{MDm?e%iUrbt{CjZb0#bf8CwqN)|$O;g&-nz(V4sIE@F6iar}khtL4KxQpKtW~(@PIt zuUtP$nPvhqUPLYQ%LLv%SLdifRGAIGlTPd$`q?>oLTE8L2n%$XcaL!CI-7l z(A33_Q3iZP8R=_dQ|dd;{rHI=JoePzKi2ld4?3TGyzS@T>wNMDT~9sEXnTU&)4=O( z67)3jY4wbbCwe;?MAJ)4dY{r3G`k}>nI?l-+@G;~Qx#N#_a zXz}uCxNzu=Z(IE(lMj_#8hs^8VBHzq^u*9~Y;Uc~#f`FFRV=#iiC2A@V=t<)JPD#{ zELRh2*TUuN{^Cu%c+*>W##@A_{1#rgj;~zy<}Sk846Z*L+ITLqaXV1DNffT(xoe*M zHBauUGj#!iDN|raYR^n5iIF8tuwdoSnGkwSA@pKRYKA6ML*rm-bi8F;%@ApsBHhrW zku_x*ng+8D%~%I(H{5wlAn^=KaR{Kslp&EaG^z-U$VeeLkwu)l;9k~wf&`KLjBwYd zq1Ov9y-r37-cS+k7suCp(UKQc>y_|O(H+dY135P^7^=WegV{VOizitdoSiUul6rUC zh-XZws4t^)#Z*?m(n2cG0ZE`QT&BmRaHGc;b@-y*Gp}|`%PixIhS7Q5@QemEO|3PQ z;7uq6Q_A5_+SkhlN2M%umGuuV_oA%V0)-=H@kf@&nTFXR!z|0Pz_Ceq&Lu9GOUfrS zV?mwBuM@ddB8Ob$l#iGsya{&qFr!t#Xy?L8p|!Bk497N3PaC+fAzB-g*2+YCj;-)H zy{obH+)uljp6cstq%{4a{rrzQ&OJ_T`Z=xn2_~fhn61_stbs|b>#G0B5Jw=A+NV_b zk~x4*dU_HXET*zYRnCOTmvKePL~@NtZu+x(Wd4xI9|cy9$UGu0JO!HH@n`o#Xjpay z+!>bGGX*zQo)xJhBX?z$o)tALmf$9GPp~dhN1p7lCv#+r?r40anhPtdysJ85!x-2! zg|eo)VM@55 z6g%pa4NFCRql4|jfi_?*USAulr-j|q%I$4q*F?*tp{+&`EvvU}sHc_M`czxp&wASH z=^gbQ=YI;s)m8UH5G}p!sUb=OzrPj84Mf}5{zOO96Kv7KxE!0+5DI(P;7;hUnA#ar zLAdQoTKze1yo}~8rnd-?CCGKZ7NI=!qt@FZHZR94j-Xgh=fN^b#z2_=`@?yaN==p0m|5x0WHKSSxeR z#+r9>L9|OgK9H3(z?b^D%V&xW2oynx5r!2Z^x=|^gFjz?G$`5XO?tyC(bQ@(yOCJgP82JN@^P|! zlr95q0ezva5wZLp>XlmD&!ATJ2foC%J-BAT^ICUC=gFFgf<3tEMjem$i1a}ye;h8H z1annaWCOl3*0{?`uG)i}&ghmqwv9!%Y_&7>w&12WQ3>V_5^EPz8&~72S3`wMVPvOd z_JSvUib4FIy5LM*_GGWSv)5diOWr&(Jb#ra-XhDj{m1+b3>IVJ)R8Na`6`a*ixIg!4ARf=z%rZ(DeCs9!N}-o}$ShnMjYsc%e9j>!XKa{sW5 z990HJRRNJYC{hK-)uB zw5X$VdXQ((x^RCknA$=UIa6C?e1nXwp~I??5`Y;VT5Py4b0_g5b znc*#w1uYp|5uH7xwFWenfZF0$nMsw|r!@KG##&jv0T|3ZuX0YyY~zc@QB;So8Jp9I zB*yUt6I{m@^uu#H{sQ?7^AXY-U5vyrtu_P;qcPvfN7SE%SZg0aqwS+YLwK9 zz<-7G<6wk#+&ItG&azDN9L+Ryc%W5K+nQ(7ni*Y<3`*l5wS@&nYaOICF(}Q0sKaD4 z*g#hU7_+Bkh}J@FKG*WpPx?FS*>uz@oY7T3L_w)zpf47!sk`x~eBs!n%r&V-^~qwL ze_kJ$*9Rqrpu`wiwnP;6xWSvT`U{TGsx!9bOIOHD#S`CjM%HX$bO7J%FYD0(v64Bs zZVIkxyd}9ayJ$}>Ig&D02E39rw(m?GyD}FLI37S|Av-W z1IH(G<>6Z_zU#|Y$=m^%Kl0^{@yrEx<^=5!rH-75LqlLk?ORuqoBHs+AzIZ2c9q_B znWwab6_-6_b#NbG%!2X;;NULnBgZn|w!~Ey+Y4e_ZqAaMw`JjG+8CcQ#3v1j30-VL z7adcBZ}JOK2G~EMj*J`9)7F(aduhS7CUzF5Ea@q0ZpxCIG^NHg5rNdlnRl_~9L#Ck z;Ix%7X@MK&G@zG_F>T?_JAVD(bBJF5p%-}N)=A7P4roL{{kT^>rWbScb8M4@qnH>N zWpoG!+PS?gL#Qggkx6Y~(vVy^y={!{rhzUbU_h@ybm9ZGIvMJ1>F;XnZaUXl{{;Mi zM{ggbG%`BtSkz`-EnUV$qpyC(8+BQd6uF zFRFcO`ZL7_wshpWrlwehdqwYGbHr=^Ef8(~*b9oyp1_}jV%;gEc~Gp1Sl5u7y3n4n zrdWk{P3A5wyFjt4no!k}Mv6s97Qd_sAIZF%i>_6%11VN)&CXjvv6*R8V#=7DG9<=z zv2lH5OaqDyfLuYhBbvyB5hS`YXDdtGYhp)n(wv#HWZ^n)N{*?+f+a6|-i4wAq*xnc z%F3LASOW=oV9LS~TMaf3K@jABq1R_;>A~yGr%wv@`HVr7GfyP+BIg3fG0$-?a*b01 zQ_PMDM*C=gi-6X|hG%|nE1%XXs7=b|bT_f6O*Qmt=0fa4X=G6w`1BSQrMb7|9JS#I z9<>P;FPGZH?Wz~{w2bz(g7GQ!Jt#0!<=N+q1$3?w(bwFVJb5Uhj+%Wjn5TC<>eF=`R>*3O%A@MdkSY0Joh)#>!0 z>DZs0l-H-B*HLjrLTMR&@`s}hPmOnWh?yMKywZaw1IexE%270b7|iYiiTRUTWOCCN z-|)uQ@n{(fu3!OF2Ie5Mb~5XzAsLVu(3jpG($&sIYAmG6(@IE*Q};$5{X{9dk_4KfKh(7t;kxJicIIn695? zlB$t_Zrr0B#$*Dsgln2-8^tW6m}8Oftc!f>lF+^+R80*D`oa6O2>Ls?eQo_6^<7O* z^tRWrXf3?{4)9QYo%Q{l;J+HdqxFF!qcrgcJBFF<{ay9#4L_qaKgmE7x7&pSs23|B z9E)1dqSjHHe>yTYIlAl=EZBKs3xB}^_v3QUxXe8v_snR>IbCqx5L`5&>7O!ZQd6r{ zR%2g% zz-MWF>vGo${6^y~Yrr3&i~&k^!H0{s^r9^T-q0S~_9XYP)SfkhW(;A;iaS-YM8Myb z)V}hvBe&$p%H1WUr>yjrrLO$EH92dFimizSdv3u|Sag>a3?9hHij=HqA}8ADshq6LIaa5@Ng0zOeOzQnOj`4c-YqFnUBtH+FhH-u z3_zDTJz+|Xs)B+goGo?&WerZ58B+jV)}d+p(2R{WcVqVwGvdj0c1|1jYai%t z80c;S#e!A`x*PldO|EUM-qzOhKWRJn6MB0+udhQ?8!*JCHL|G?GSv07JTb%;jxIX{ z3l5&xERa~omR)CZ9ane&#>Dzy?QBS7$r_hBl4=*oH4D+S%AHnXX&IK1qvMS$5G<%Y zIfW}DbEIX?oEk4_iL&0mZj0^L(p(o^*;9Ms&>Y?e%7Tah;0olb_O5|xL9YG{h=^;` zA2Q1hBv%K>HMNf=cWu#aN4(-nRIvD-IShXb>!Kue=9l0B?kd6a9QbV+8U;>cw+s7QyX$_^b^a%Vo%N&r z9kX2O_(1z`Z=;Y_FQC;8v_8S-38$rwu_edIyjiqpomRN!l%6@2drsv65?eL}<(3d) zFlStgC2OViSsQ^W0gQNB=S~^iX&bR(_ZQ5*9K=UDS6b`NnTe7$P<8@zCHDh)RGJkk zTqM#*p7=f%*|G)J0IrPQf(4>@u;98qxMB6L={$LrGoyB8EdC-oAeq|_WOu#EZ8BX6 zW-I>mo;$V)|E!rTY2A6XE2qcHMq<@KmNcHc+@4yt#iWiDkQGGw3UApE+OftCt+69h z1j3?i4Y{QY>={Esq6Wh{ab81o(8k2d25{y4*TH>9tDkN@H*)^xg1V>1DYV7WX`R~P_UB`Tqj>p3IA0BBcWb46 zTV!J08(l>fTXo0E7((;{T`s`ln9&|a=`U+-BBVWNu!poZlm}B=NR2h9u?18% zztTh~&4j{CEa^QGEw-rj%&VO!*iQ6AabVpkbctkd3*NBAu8A$TS4u$=R+Vt(8G(2LClgZQ=HJ z@cKHL)YgHnroIjUu=9Og=leSA2C2YWXj76&X&(IK51YC4mQiNs2(yz9AlKJS?|72S z;f+X4>{$zAT*H{uFlY3vIRkgW%wM#PDO{-6goc>Y2IkSJvB-ic46Y3voY)u^8$)74 zWZ9n5cnexzQR&IaU0H>vpu)?Bz@|O6?}%5OsUs|XY>OWnBYXPb4tOqwyC`=RJ;7l>=a2C;Ch9fUJ|Y>ywBqWd+iuA|B>B-a(7EYMg@t7ip@ zNUPFXS7C)`MGIODteb)xh5(ucX^-t-u^j^m$}H5fyDJJ$9_>_~Y1Lhj*fR^Zw8WW1 zT6L{1U}Z5@TJ~%x{GVvmoW5=at)_2Sv$sI2mYQ50#TSrPMz1S$|d zEPB>~xF%~_6(OyL1X3?|-UV7^&Dv|AW#^u0bphkdBdxOM9l|B2!H$!}XA`_W9lib> zmL5W{OBL6m&^S5ZSm62;qalq5lkg`7+xfHxL2rwow^h*F#-TK^AhhXe1)3UTbn|-K zhEPlGdN!q=+4a;=cO9pvQAlqc>1*ZnH1m6!hWlFiy-h-T^8~YfmP-MO8|iBr>U@&V zWXvpEM;5H?DJ^SC!=2Od=Zzza=CNh#jM6=?@h<9#Wn(~Y4k@e=xg{(!hoq)}%nCPQ zxdnJEVe;i|pKw>sKorbG*%93ECiaPRHIO|9?((LOutdcX*|qrBO}?VhTQuM+Iy|rQ ztQgUTBm7AbKG)+b8q{Ggi&9>JG8SHUMK{na$naWi_}7jzST+#_Kre)CzP!O#FcD=F zS<>T0r7J6UqPBjpv>_Cd<7Jt<_$*$$?I}G= zti9+fJ?BVWR{3_8oW%uuUTgzjQ&7MkhAa9|Md@8f#AQv*niA87=#(}jlKX}wZoxdp z7u$Ja8-LzDEO8Dmf?>lF$M7OD(Xz9~UBqXOyFLxQZtQN%^ma+8t*Qaa60J=_ZIM!2 z7rR+tw8f%s;!e3Dp07#7G@$n+knYXWl4RLM-$o7%;r zt1kaatwcX-Cz3W_+(9Jm-k8-Lv3eqAR|pJlta#LhM=f~7goX5upwfc2BN2(2d{UiD zEVoTd&Etzkp;*J6Qt+mfqA{UjV!${%q@QKW$NH9pv_(Ee!lSCj2c#ptO9GliRqD8Qt}R z-Sw>6Ue7>R-5{kN4c+bo2iL^yYi0Mf3Yi`J{uW9{BX?3hG;Qo1QS=PU=p*uhaU~NL z*PLFkU>TEQ6H0taMa*b?Ga6!6M@;L;X>Fi3Zz#H8NuaVWPYysxLzMJr1~G&WmD&Nu z183^ko;WZ@_I1G>U0_R1Y$$5QUC8jV(z~i5%HYf7uAB@5FNWss0hKB7lGeAX#*12F z6-?tTYP|(;WDu}`->m(I%4qH$Sp?qGp&>-5p{0i0P?4K*-=>1t(MC=T@r(NSC1dic zqj1}`{;F&J4cFQ)9V^e7)8Nr=+VjsjR-Sj2Ui5Cf;wn6Eh+SO9cf{DL1X~wl>x=F! zg} z_DpKScR%_Apx3|r%fEy^`>%$EhJXL$=Wsahyz>sMwX26)W{J?c#CL;Gi? z{cWIC05I-A`vix=>}eX}jj?7710oFwwRc$FFH$n5RIC{-ciuEo%hsOt^_r=*Ntpqm z>io01;H)7cHpQ0gsapLZ;800NuA;G_v3+a2;z(8<$s=3*z#Od@LVLQvwwl}oaVk9} zB@!x1RjGZe2)Eows5Px-QPhAJfvmLNvc_9NH@*^RRZkR+{#8({(v4=Jf`D~oSwp~0 z$>3i%_&0R^4J9lDB-AZ+-~fbbOk4(_vSe>L%P+asUURLzf|XvfW}h~vZ`pFsf>51> z7d&e(dsbhzq^>K->bz@x!MVPGZ7jGprM`V-;85m;7-3y(FU(l8DA{F9jp<^5Uc-tr zp%Ow6s?0a40Im8*<>ZLWCs@V>QXIaLTS%|(v&vn60=@nmmL9xr9c{Ungv7EStQ{xi zBi04>;xK)JMFEZ)rne9GwR0%Vz+mIdPJk;O4Q(>Q4eAlm)54}S40Y9Us100d9go_` zr?$ddE~QS;+c-AR0>m}k*Ce1fj}5lZ@hQBXCaz#iFlQK=)C`Qs7-RCG2_<`4#h=qc zLidCMozFraov1B9`jpU-izi13DnU;!9VF%mI-( zB2tI0MAZ@9vxRrfp)C`!W+Yb4#HxuXnTS=3f7M79b$CvX=XCBGap8bcMXSGTCCe7F zgl_yL8(DM&idbmXLKckPoP{jf(11wP57`<}UbwjW!$JgbaHMwU) z?%C7?_Kl%Koqu29UYBBp1xIe)mJwT0)5aLM0JI&cB*DhffEeGDikwyl;5sh%jmvP6 z9G_GY1}ho$e)6gp#4t?)C-)Z~l4=KO+$w*s+X0S&_>r~QO6|^=btwTX=mv=Wy z+Uw?8>qL!pqOOhw;grQ3i06*tYu6H+HxgSn;+r>On>WLow?gHsf&5V*y&Fhw1mb0X ztl*F4$!HD_q@BK)lSnx6n8O=&5>baQ>hz%-%onra5xq00F_T)WUuPk87F=blh2C*)U|@(jE(hqM@|UUnrQTsFI5p;!nmw!I z&6$M~+b4ca1%9nIoJAL$GlV6k__8g90)O|47SJfLVTtWKGncT!b*ymB1(v&NPhYUa z4@_Z@=$_8Mr6tx?zBQG1O$N~iV3@BgcjcEHDTy^Mu_hJnJW!dISOZ6dCBWwCpAHQPG+_bGc=PbYM*?irz`)hpv zzI*?D$L2e>(krIibLQM_NBI?O?KRKFt6<*E*PO){^oeWo;E61Fqz+$D22bRHV`cb~ zI(}UpyQYd>QG_naLnrdkg(c!pf^W|`*JfmGVcE;p#GxsI&L`@F+gfr{g|8}os|vg<2LQuS zfFO0I7j3B6L*~pu;GiLZ#}IU>@q*HolViDBpW$3hr8$`k{&QLQN(%gY4SMc>$ z-D|(JWS&+>F3JLj%FwYYbU_|GmIqJO@oSp+bye(|GI9x2Dhr-S$-_nO-kfWF+E$ve z7i%ib&)Rb{wk+5jdJ8Hof=UP*U${Ndxk@q;ZTPm?nax8jlx@p*8a8 zEh7W1yq-oL4FIfRnBFqR=on$Na%lBj%K6^*CcbD9aI0?^%^&O^mV(RR&M0|v+TnS_ z*rH`Z>X=oy7qs4mKaLPuG6iMUsLGMly0S)J-r_F-bh+buzTAacbFJ&a)oa1k>;B?p zZ~E93uR3FUj_|H6xM?ESOynxsAM}+?5L^=ltvju9CgGpbyK`o;Yz?4+DOR#%hQ(Dw zG9#X`61lT{nhwtzyjj#LpFrb-ouLvQT?=M*!z%|w?i9;h#j@8t#b=1M7yLV~1^3?y zRquul-uGAD^KHEW@wmJAoNxVQa`Uy|HrT7to!3HJueev9vBWRwLWhRfu_<=J5I)vN zPtCB3Q`gT9bLpa|y66Q>=uk=QEqm4%v694DT*OwEocSeZZV}5ZI zRXM(CC(_YCAQk*fa@VJ!SHMqv=ds7W^zcJ}@fTnC#-oq^^*6uX@PqHO8_y3n)v5a_ z%6_Vn-l^(o*U~%Hy&badmihLEiI)0V8cjAnr`LKyscPxy)#8OW^GB~{_n%K~UW=EH zV)>m&dOegZhGHxJXpRVF@L$Kc1M_OF zUX=-#qndoj#IkvESwAh}DaHr1lY{C>rfPzvnPK5-kxxD0lnV{>9G#f0n`0a1*hVqe zDCW!$(**-v?7mKLMsPDcNEHrJ$A+k*Yzp#mKw|W^0a|k(@@q{4T}^Q9>uBh!bm&pKGiCSwCmIe^gH8Em3$9nsA9eB4vy#SyLL; ztd=)tn;jyo^KGK;pj*c6+qO@~}YiLVtI2EHsSLuF%W z1%|52wD^h|N3~=qap7K3dkO{uO)RoSH=OZpJYDhSPw?`y_}Ytj`8i+dX}tUl4o+?V zJ%DMF}xH)|9j(6uB_vV|f&DXKbHyrD4*j8V&7Jq3jzGPZ? zNuPVpxbmX4{F-I;4KrBjbrWD)@t2PBtIqN(mfW+N*mYI-iZ*&x6$87hj$YLyZfKJ? zwW(X$%rpA@^Vagqzy0t3`{xh6{{54`hF%qiTx6JK>*v^0TpDkno85=bGYSVO!^o&( zESiW-9brO%(9Y^@9iTQ1be~DIxxcHauf49nvkn4;p`K=R7P7CEg;d%C5@q&)N}G9o zE$p5KdiyWBI$HY#bGrga)Y9NqEPRI0Ei+6`yf|L|1RSN>AIfmyMCinMyVOEfgL2kWl3y(b~C> zWk+(s8WWqMD0^nhNU=PC9Lj(>vod>HilPGu#`79HuX5)=r3!a#%$64oC$fgt?9oju zzT?eQe1%K+>htc^7d_=?z2#e;)#p50Z+jp*sC)odP${hru>Wg+-*zYWy|X8=JFe+5~%bwQ|XtM(k~sWuR4n_8PmXN zSHUz$rI(e_E1K9fkf;VMbxW6hR$q9@lD_N>#>vn4>(2ze{==n*TDx4X5DJlNp6wK) z(b!{y-NXGIqy24@Ov(h4I>|)y8E1L4DHcUE*e;;AacHQ(oeylQ($t zCaaBYCro(GO5|;1-sG)qWde!$RxBjSfO(_nczz(g6J4pqRxd|4UkGi!7}>ZT z-MAInd?CE|cIfba=;(vc;e*h@d;a}jlY77N@1t?{(StjY%CCaEZv=PW^zXgp+j<>e zf5pA}5*Su`(OHB?$1m}X*WDYhyVl=uufK+^{nE4kOLFs7a_uEY?rC%UDws8S)s(o5 z%3YGzthI(nmh3HS0mA>6-1*C~NIdzO<*rXduUN?cqwjs^+uwNfTi^KdHy-`cSHAeg zuY3_<*k6A2(Wf5&-udtUov@`*)Y7P;cPVK|HU+=TQ?=P zsBNS_pDvwdH?E}CF2sua(cD%fy%tK90zhBkoIjE!!T?}NjEvgwkj3S0QW%4NWZkf)tq;k%y>@#x9#G+=H%aD%rE5`>_6N82smT8V{U*?&`9JsMa zcyMo9hYE{UcvL1eC1pI)tf|TV(ZtxB9@hf7iQz&$D;Wy?58M_pW#MU3~XFeD|IkKCC=&?Z1!h-FNNXcW&Rc zZQZqPzH8rn*SUMwxpU94bJx9d$Gv+8+j$o}BfftZoTGW|EpT?WwYO{=Z(G;jwr>2& zvGJC3{Y~e_>(0$Lv8{J}mAk+HAOFYa#v9Dd&3)RFzt+vZ>QIQZbIf@`4}YK?rL%fF zxV;@hMz@gBCFpPC_qPLv@flq;i8c*@L{U5X#-8@Np0;!J_H#qD20$!M4~hj)U1E3B z5Ur7m;sU_1M&K?st&vXcVva5Jjmate`EIV5#$TilOaCZQ4SPn%6C;U^N}UrbFGzIG zfVc|{8^!X7)x9MhxnTtEN*%k9L@znBS3Z$w_OdyCY>4cG>BIXvWFXXC2oq4s%L6e& z0Vrz;`&WskmmCPUK%Wp7py*vaSEhvi>#*)w%wbW9<#+I!N>_=guA1+RMIZ zo+SOBi9wBjw&?YzmmaG1x>_aG;|}qVe56M-(9Z8^74~(E^mR-yyC(*_#s}I^7q21U zuI}MJ^uPz`0!P5A9ULBLJ3rWYj@R2TOm80UZ5c&7lFb}Sld!iL?N|1-3g}J4y$!;i z#vytaZ(PD0m-hZl4y+q|WuvcT z@WL}cr*>ylSXzZ;luo#&wVsULlQq=L(AqtjSrpxXx+Q_2QUv!1ao(Ry_ z29ewjW-5{L)%fPqsm)v9(9;{2lH0cv2k*p=A4HGuM-T5t4(^5y?gbCt3m@DGSKp1G zRM@@H;l1F|gTUbf|G|U6!F{rF&$kEb^p0=$U9xhQtlsxm?*%J&Le)Eg>YZQ}{_rmF zn|td`&&KP%?O%Dfe}!+q?cI5s*nSJm8s2^#T#~=?ZgA`6L?WLI`IAB7bB10dL45b` z{`Om6fAnwu>e26f>+9eB_Ba3TTVDqZd*l(|FZ6oop@+Wt)vq$@>N|e=!?D)7x$aiY zK)15DQ`X%oqqa&q8kf5pB<*$M=bxCSQZ+LRI2H)USCgema&<4ZvK>yZ2jeLBMTT;| zP}&`cI|-EavS5H-0h0ru3)h%|xZGe0gIlgc+$B|Giz>&W+9_7qBsxqoKck*u%SHW0 z@er;M`jo?He72Zvm2k~sFt%e^V3BYPfL;siIRTZA(pJqZD)3ShyQhUsYvI6R=|fY2 z25D_9dMC37xwgK}I@BDgv!TDMZlLRYf9F#Jo#zLs4TIfiJ93EDHrU<3qM{agyuKDL zL^Ra;j>ab$g6aNoc{hKdlQY-F`^2>kj41}kRqSa!S8U=-tiw|0q?(w~2j@(YB}WRK zQbZ@~3o2M0#Hud1Ws2^bl84sxi9K`b$ecRUr_Rg?I6Hg#f+Ky=mbqw4pIWmQE$NHK z_^~ch)uBAYmOi*`i0l|6yT-Giuc$nEWzDp;F~I9as9uw{j`8dO2J?4V5m2w{C~_UJq4%MONR#5AFdtdBDL{AK=vw zJ(b^Jm5*GNkKEPYxDP&Z9ejx1?tkdq|H!%bp=0lT$KD6d{SQ3*A9(lgNZ09|IG4OPV<*N652lt2yEXjB9-M8_*JO0D_AOCOv=jX;7{L?@E)1UbE znJego<1C*d=x;~*q_xzp&8(hgULWe7%KAi~?SrV^9*FB4y`!Fv&NkNdb%H+6fj*g_ zPlyP5+E_HuFzB-$^eIHWyc+vEp6uyt8WJt^kA0%gZr(iT6S%9UPc?f+&jWofT1TX= z3AJy=5EPrEwaTuVK2cTtnLf8o(TXW~WCLYpF4pvU@`*lE7wqX%_#6!MX+G0uxT+2A zXoFk&(3Szj8QC=;eQxW|^hvCO{A&6vsPH^WbA6)Ek{~%UZyTH1#OOE=(1ng` zQR-M-=ZCt^u_))cv<84KKE17$7HbgF8b|3(qJh?t{w6lKkFF;Egk)$!-XmC`^5=T_ z^MGE=F&Rsw;7+N9bNXS4NwjR8RJg=C-;y~fvqfu_T`NW(>coZWyMn8Z@U|;iab=Ia zxr@ZgMKXWt&tC|xoB)jZa;LuRMeoWfp1g``IJp}+xfedX8$P@jIeI^I{9*9;H-Y2d29AFdJV6#X z{>Xpy8~@=)|KSG!Y2^NU0pKfuvBP_z z~pW8eD5SHJSemmc}j7ytSj zU;Ep?`r3E?`Wuh^)uZ43`j`LeYma>WD_{ER7r*%MLkPpZ_LVRH%{RW*@#7yi{NTG& zovpH-ZgpR$s<%Vc+o|s9kW*V0+v+9lO;eqn<2{3z!I4Opqq)sQX(yK74kXG%H1CaN z@lX;YVyMjC9W*!ry?i>WS7q@iO)j|}Qy82IBc?C{fMHUdYe|dE%eB)&hIF_`CZHK+ znAj4}s~E8_bB(i1)dXEBqU)yz%?ljUqEIX5%f|;s2RoURW=5?a%Mh)R+1)VEQOBe< zv-&zX{hjRIb`HIr)zdPFj;;W7p_BrP*1+j);?M!Nnizm#o#4gJ)7zdL=&VEKUi8+H zfwpm0C;V&e4NtK~7Z@T1g}2znnd{`vQH2sfFNR1tIH_jO8h8@R@UnYSO#*Z++EdFA z^1D|wz723^Xnb&F#~QC#lLwB>u`_$oQ@Tm4JwvSC!pk>3t2cbBH+|(>cuQME7!2hDVp$-Jg~=h&EaiJc-st)FR-Tfuj$CL z)>qb(=w3^%owcOUlIt3BP3zy%ky}RpmN~fPOzitsPJ+eLK=CwKz7pKH72bU@vioXy z@6Ev8+hp}!^56sf@MHYw51zx1iQ_*I7d|FWK1QD${+>Ago%iq~{NO|1;fG$ZgZCk> zAuD&tgL`m~R~~>*1ZU^2eCVz|aP8gq?BDlR@8eZ)mk&GuX8ZR&l?U$1ed6f-&l7t6 z>DSfc?WM87A=+8S74!*D^#%sgSQFqD5@%048y@NCq%AsEH2~slt7CN616FZRYv1Mp z_^_iMWJzy>=R7c21G~2wxNB^vgGX=fYJ75lGdeh~qzRU~*y1h_r(gla1tJC7ZJgEf z7A(Vy&T%C%YYaIh`HZ84#0fXH+zkg3=M6{xnlpRJb2h92&0N^Agm+A#EmL4!9{_OziIoBH&cumM zh>)8)bov9{ZfeOb1L!lj;fU^f^T&bW#X#Xguyh%TbLaW!?n@B>urqNUKJXqPHF^$z z?>qhj33l?a?-+>yyFf(0(|7bc-_dVDoW$Wrz9SIl2LuG&mG{W%UE%;lh{WlsiPKYk zza~zQWlf(4AWP8g1NR=%r>An?mpdc^q0jEA#{Zh(_;1_&Cp+qK=2?3#9<7N_YXswT z*8xfm_jjN@5qkSDy?vyw9lqsI8rYOZMtePnT0cT>9O-Wn(3?5k^{mc%c2^y<^C?bu z0~eikY@Qfson?29^fmW3Kgr^ba;B7h!X+ACOykY<4KFapq^xn^E)`#_A6c}FOP#Z7 zV#yL#VhOD$qs8+U|C&9F=5{$_yPjmllQ{syA|dElyAj`dHn#P2Z1Yxl<5q0*W^C(L zWc^lP^}4@i#M({Y>NCXJZ7^T?8E^3hQ3m&MgD71K6fdFiL)oe?wTH)cJn!vNV2{%@Bv*ieGVc{)bayME!POo3gtes{yE@!r%&Q+ez zS6@Z|cJNN}_}#>X_amnthfeFg% zQS9P}(UTA2$M=&*?7j=o`qIM>f8)_d0JFgU^6Ovz>u-MbufFk> zZ~x_2AN$Kkzxn7RUxuGN`~~>Um%jKH4?pzq*S`Ga$G-XXy6=Cl{l|~bbhSxn9jcxV zU0;{Fw{y9xd9kf=y6N0hN9#;)zhrF6sIw=t>(Sf>nJf{JtS6Ab$e0xmnJ~Z6PO7aQ zmC2|V z^p2pntT{bz-Yi^pjH^5|y1;@psq&U}p=}d@R_e%}J$2?Uy9(DZWLL4`4NvK54=kMZ zXMG#Dh>d56&D;K+7yR2Vk=rl(w_heVpU2m3gLyY!@@~FD?7r^XeapM|7QXW)zWs)G z<0Ul4ZuMrMe3>X*a_6sL`D<9d76By>Y>5MN?7$R5leN*=|Ii*#pEj^<2<_{_RRe0q zvV%(W{p;pf)tSBQDcmGhpC&e6Ah%u(Y`+%Vc{Q~AR#N=Y7v`&e;5+;Pe4iU7C4K`w z&IRsl_l|q(9S=%>-S<=CE5GIfK$(Nx4fOVNAWjGk;0N#)NNf;Lt*3>BqJ#S0)~9+~&w)5WtNgy! zAxb^9?fj5niaDj}9hOme3rLy6%LAay89hgA5-i!q6z)k4xnPdV@uD_}lxayG+CZ7P z%ZTI)*PMl`uEGsBDy(|OyY{qq9hCVjD3ja*Wxfc?4D7rN_udVpOnmbN@8&PP+piM4 zZ-O}SowtxOL9T1J$<gS&5`4GXm2@opHzd3+x|y-$Dp zM`a>$20@&sAkNpi=|6fucyKRJxkFU%_&}Kle^h3*rp)S@GT(D=gEHUs>_0eD zrWE8Mzi#phOZlJx6)6*jCZRK<~@~Dj?0}!^f@p@WC18DP6 z*w@CTG%(xGF*?t)&<~op)JAr91CQ1yptlGhLhr60Y&*y3ILGWfFX(L%^|$e;4d5eq z!&CfO&A_OP&R?JlC5*9U)|7@<%XEz`+h)}61p_I!#tcLeZ91eXp6oHPa!MAi1j^UQ z@-;syq`w*3csjEAOmyp+==Rfzoo5rfw-b9WB==uT?7y6>yqwy5A-Z!rymdRe`$A;* zm(l&#W7W4})wjcywTAm#+nC7)It#i0qL!jb>-N;#GID zip49A*q$x4ZH?^MqiEyO9=F5kq4M?E#;xSe^NGDzl6$YEE3ap& zZ>NvnOP$=yp4`cvyqCUsKYj6o%$47zF8?8U0u^6(cPdHA8f{^r*n z{qiFZJ%m2|_BX%w)knVsOa@@~t*<}&?XP|LFaKZm-utLd6rFRs=U)y(?X+(1abpUW?%?46pp-;E@uZFDr%*i5Nup;R{`?t0qTU)@H1P*we?j96EZ)p9Sd{$^G~1)f@+FK8&`Hx^T? z3u?#M62pm!5!tEHS;>)v#L(c%LdE3#j+p+ z$8o>oc;9i|Z#d3vuHz-o_MC5C;F;&S_6?40lWkgN=x3?gNy@-fk9x98;qO)jx>eI% zs#&spyhA$LA@a5gob4i43*XtocXfz{dsLG&;~Hjtf!SZN-Cwf3->{tTG541!L@@F_ zfA|}TXG`i>mO59&-dEz0Z}?+B2>m~c#(xn6ehl6t-|>AvaQ(lseShWpe&!B+%N_oP zJMt}D%kqAUjeL)xSoBY9-_O|a&&;78!0<8bZz!fMy8R8^{WZh$9b@Qw?#Q1Ay*zef zX?8LpF)RysJ|Pt3S4>DO%S|gF;DGHxkYzc^%g`qNZ z;10xION+gMPl(7sBb<~Plb0Tq8GkLmsJ!@b2mV%LddbuD;;PJw+T8nXrO$eAHZbnD z^S~EC8Se}|KzOGV&2)Dw{U8;VWf^m9vh6Q1`wNzBlWBR*GOuG6Q05ZdIL9z9u&wJz zUDiz`NZUH{4y>Tb56T3szT~)Hb3N}kp0^y=YfvW7zR9z$@J;g^%QDx##Ri=l=V{t$ z>fmIbdJ45-RDv>5CT*v3iYy!L5C`)cg|1d0F}@32gHGvK-@qKxyv4G;#9Z*nUk7KX zzraw;>N|Kci@a~8V2m8g68DyP_?^i29pC?>DDaCY@H2n(yAM3Z_x}PU#_|2ag@-)K zLIGud&mQ^FB#7F49{QS2xIssOgDvb1%DXs z`WJeE<8zagoSPV)pB#~c3ne8*+#)93%}WFHD#?tm$im&pO}UesT7XKYMgeOD3rd9N zrG^7pCWE*R$epK=Miix?o955I(YScvKBfjrrjg7(G){W^%!%&&(%+h;OXkwl6YQ9+}mQ;rr7aZY+si+ z)+CN4p>-YrOzK>hxi$fQB!FHn*k6}8H^eX;TVm&y)b&y}{8l#drF`VAZ0NPjyRC3< zDxIqe+q~SdB6GvjdtG9k7Z|6xhDl62#TW?CHGan66k~9f4&J(Qlp-7M6TADR?jErd zm9H0jsERSReokoLlDJ;UhTh3Wz7`LEBl3PB9{F10`%dovcEI;mH?*$ztZ0X~2FJco z2fkBH{-~MyMLqSiYWzE;|63*S*yJxjVzR(5GXD>X(Qg!E-^l&nOGf`99{o=0|4A13 zN$&qi>i=0h_A|hk$opl`tJ+4HV&_;cb+(O;N;Omdv@*Ex#Oe52lgJ=w-*>}|L$F%e{$l=g-?LQ4)5P{Xy0yl z>*&F~NB8eOw14-$Jv#xz_U+!iZ`aPtXHUm{e*SJ^Too`FA*CZbot%~4k(JzbaNUzv4#$MLkH^rSliC1Zl%|BFaW)3Z;{&W zkeY6jo|dH7SK#}r^6AeC7&S%Yhor{4xlIr9I-i!H29CAm-A@ail;dyZr4$ixq|`XD zU+J;evyvi9h{?C|(kf8J??lu%I}>$UNk=9ujDQP8Mhyq1EfP%wWunyjjQB8Is_d#1(ZU6l??&BU5PiPZ3J7vCZ)kL>y zvQs`rmJE?W-kNcmet~9OVS=@CY=cc<+BaDCEtcaY>@&=3O!Eq61=F_0wu2qqM3DsN z8>aI$)BciS-J~P*+U9xQ@Z7Js&TWq84cqgM?MB894)Q&(xh`bmSf)iL8p|{Tj1{_J zm2O;RqFD44RpslIxVxnAV@Aj_f46#uqFtt&);Nw=T-RH+=S$w`PkjIHoKfJYpErPlH}Q zxAkToo)C?L3o!@SD0tYWrJjvZVE zP~eN8EMK$i+f3UQ$dX}w!FD29f+j(kKwoU{TaYCZs^>M|z0J05uq`VrGm<64xC;6Q zWzr2R4BaAAH^&&5=m!FndOMLOeVxjQ-hnxaeuZg%&T+iqxZWXT8vB*+|BW;H%LiEs zd_nGVZ;G7jBKJ$t@K>U-@1=oXr4zqNCw>)-{=o6RXM5g*sCZ+)aRdK>Wa1S{g0$!YK(eG8B?bBSsymAxx05RCvv1et-fb+c z>b&1Xf7T^vq$)bOCaQdht`5)#C+PzLiej{10WU{6`YFC;L114KyIx8?Z^Z5wV)vHB z4H))P?A#RDS4EChiEC5legSwU_PmgIUW>i2#qMp9>m}d0C33!$dSA&$-pGNthF{A^ z-bsC50Eq#HDM#KYhPUOe4T)n#Y+n@H7KPvqSyu#>Wr1ZyU|JNJ<^=i)j>gAO3^9}= z6xAqQGr`i&am_12`*WG+tsJ0h^c&^GuZqdvjT5v z17lwePW+&q`c*gcn{MV;&G-*8-+SrESF*A1l@q_qr~W3N`du~oi!$(|BJizh;s?Ms zsqbsq$a|^xo%93Cjr}MK{4DnUMdU+-rB=wI z!>*n=dGx@(Jx4?Koj7_RKbpFVsL7;G0X*#6z;PaL~^{_N2s zAv*!of-rV)@2+Eq_Mba(_|ubz&L2N~^3XoG3Qqp$-~R2;-n}Od9Kc_@Q5+rdBqgq% zkO~aeO~SWlr!-_F)TSofNr=6flGgsTp|6+M%ar$V2godWb2qoWm)qRKZtTYDI~aBC z%mS&5}N$+yAG<)s0Y6=cK#dVzrhE0z@XIowbvo)C|wc(TEr zNsi7+L?H!KZ51_nj3g#SWv51FCEg&UC)}&+u56$dJ?YGQ*q-;WqpZ6BZY$?$kEDjG zZf2W0B}3gRe~)IOM?KM{90Ts^l#h0+Cwny0{e!bq<1*8_!M49-1AsYSW6o_1FwF9t zZd|4VeOaDkj+X#nC)T=yHa-UJL& z;8(%;zYE5H6OR8P3j8Dr{2=mwCm#DwIQFg3|Gm)vlfeJ8a01@_O)&8rAI=Q?JJQyF>vYo+)3Sou;jJx@(}!7ahV2yyk^#DPy=FUKagZhvn6aJk@(sg= zuuVAh9yBTRz7e>#_|`S9ZH4D}jx>pay=yEZ_yVBG065+KN;DBqf%`(g3K#O6Z{c$| zo_9R&*C@mq_)ReWyI}lRVc-|h_yZ1n3_>6RCm8?ExdT<;n7H#F-u1Kb>t zrRyzbUSj{@xa(i&<+T}a=VxZ)B7mR@(_<=0Nq2Ko9u}nC%T2kJodkT9n-rE6cbyo2 zJtO8)4%}ABkvX{V{NzX&1u0P^xZ`jUxyez5snL1K5e2Eyg{cuF;I6{F$Blh=>-$Tq z$UtAEPrL3m(w=ql8!56j=0LB|MpOA%gX5TP5@b(PkJ3~lbd8^>n_}r_IHq}leMRhg zA#-nwJ=+q`D~Wqs;(95xuk&q7BFBo<{Xzmf=Gv5a;Dk3q*K2|2mC(B_8G0l0zLo)c zc@daNy{{!+H0LOGzfzBWHQ;}*@x4H-|i zC|fhe)lIMsvpn+}e6Io#(Hq&w7Yg6ks)-*}Q@^RFe^*Was-F5~VEU(lsUHU>e;Anf zPBZbXdh!SLZ&z_&8Ee}~_5EE`<&y3p}bGW=dP`WNxgR|5ANzH=Mwm%z0x8hR(OFa5!|>z|>Q zNw3MoMTK2H_sNOF*FQfSe&zh<=TDqJdE~P*r;Z;!5VCI%kk#JZfL{N$XU9i-cKjP4 z8bH~O9Ut%7xdXlN@khIM>^O38f5^UFCl2jDeeBSQBL`1}>^pvN@6m&Mfa3P<`uO19 z-6swmx^nt-__?#U6JsBzB{pWJv}dPvW~Vjdlj_nEsxwlb5VG#%7FOM_ZSA190C#mU zn|nE}eK6P$A3dzOmECfe)Ot6s@m@joP2%I?jQjaXRVAqiz3$|;J}hi~RM`Bm5a_G^ zPR{LubW~X)J&u$fpGQb0WhND5C6y2p%19|UbJNQ6(hKnk`I&J=SqTNfuG!hBM_vRz zF+4pkl$aPVfpE?`RVaF$uUG+M0)JCtjv^WWB@Jky*BQ>7WTbX z-jgm#9ZlVUI-wZaxF)jD-YIo=qfRTne$`m7e56l3);~B&8JwXQmVmoZhK%Vs5Emj4 z({qYp84Ll{uu9P_P;@hN<08$lMA6Mr4a*G6bB1MuW?ZN0*Jy@Sx@nbRT!Ag!@|$%Xr#9<`WX3dauz;Cu zAjowPBn8w6LqA8+&e9BvG~*IQI~VjCK#-d>q}3HrEHE3x7~G-{*+eZ53`<IVnQiC?j{jefsZfFjL%PxA*Dp*piGq;1t~G*gv63e90^6k z!hpoeGU7||2}Nl!d5IBOv6u6+GMjsN_5I?i4({VNb`_ad-zRBfs?l0Sj-g**p-Sy^ zxreD5#xy?ez!+2I!?b>mVG0%Yu`UZ88z^PVz99nYaBcH#&$$-3gH}0~HMV(l!5P+(|=V={VoUp zXy{AP@Ygc`kFYOAWc5zudChZf3*2v|BVS8~z7X190O|28>q6U>5HQTJ%+xN@4J%ya zdA;V@f~6#QoIetG{WJ8^52})5La$#ubNl;8RQ&?~JV6Ri|0BqS6Oak&|&4KY}{@|+~N>B>lH zfL>tf3Np}LmW>uUqIt&blqQ60-jRPjC~IzJ;GcEHk+a!6#J zsY~o`V(A;0LF>k~komSAiK|cM?w5J`<=%dUhoTs!sYdDQF^bC9ulDy1_lS-qt6ik% zS9`Tf-RfzwVzNg)-7_%TKe$K*n$pivwNp&f;)mQYnsKFfV5U9@xI+dA<}5eaZEHfjM4bXh!KZ z7cF&sk8GCh70a^8v~05M+nDDanz(VlXV_j*Ou<^>w%1@cF*M!tE#~=>VST|wfs{8u zi4@&xw`RUeHAhy=bt+~$dfZ$VYmW!AcSG zpqMwJ+r=9B^oaslxo9)+(gBp7@prx4}4I2GgkRr$i*lewLa1p6dKGCI`>eayc z%cwH2b{478Fdt0Ff6g$h!nNJ1$!_(0zYf&6#xSp;Sea{^XIS+~Ivpy=0o2Nt^2|5c4`k_nI^SvB3I7^exf z7>D-GF8Hmxw^Uf4vw~qYv|^gsX{wT>B8iw z*&?R$um`*x^)PS1#~<|bw0^cWz|r}!K_Bx&r3lR!Lp_9P$2sPCwi&G^W*cTO!yLyn z$JR|?+6k6!lBJ(v>d*)-H(mf=n`>EP8J6gS(-idtO*6&R&9P0(Jo6IYILkLq2`%$- z_j8%^xxlgt*U|?j8QOWwv<6p!V=nc+k_~Okoy!XAw9Guk*H3`&gK1|u<~5;fTY>^# zZ>2+D$VT4Dhu$eizEt_XQu^Kp!*MTV9uyOk13?Xc38*G=Y@w7h_cmN2_QEA!3Egja zcC;Ku=zJ~oycG?9DI5DvK8k8Y2plg(&R4))T=P0px4_WO(KK^Z&1^qBJ>;JpxrI3oQU;6CKu|ubhhFm^>l8_uj%80|`B2!~S6Cy50UHc3daRnE3 zJ?zHSE1!RQ=EU(6M-Co8bO7k<=z;wQ_w3%a;<7G|QzKt@byRze9ep_qs($xbdNCc!}PZ4&bPLs9@ePaU9WtoA1vL#7*#Vy(fBEv@m|F+SzrTZYh~+NIff3N z5w7jm1o{VOD1%eIVBpk&9@TiS8f;LYOEK0d_jk$zWZ77U%m;%kA0sQkI!tsZC(&_v z@Q8e(Z(yNMyV$9m=u-N-l;hpX2{_mx3$#nd+N9&{(n-{rabSvR+hp6f;Lhck7BJ%? zRXdGNR)9gA>l*~LTj>vS9hko!^-Qm3o@QLf+;2JFubI~E-T^p1-=|vvyV<8*>DMmx z8&+w-MVBQv6Q%O+dJffmtNi_q618f}HG zz}v`o*KwTn97jFJ)+TiS@caMvXF)HA`EF@;0k9UpKRn^Hl8`d9lE6nGCP!t04ugvp z|1qT)2~sS;Cl-PH@HkRBl44m-GO9S27M&h_37?Tf<_t2l6MZsom&nnBnt^&ch4yx? z1+`NbfE3;RiXn>HN7and2K-2hATz}fS?K8Co7+%BD?=OC*d?+7^Y?3~DcY$I3jD89 zl>5m+DR#<0b)!g%vXKtCze7Gr1}Q4WJLRKDin2hD29RtKoPth80MrXo>{3jU<>PH2 zMMQ+xOt~JTRN(B^uDyX{?O`jh|M5$w{tLbSzcVde<|pN( z3L>r?wPlRGnVo!_lyW;KxjYM(pBj~e3(dxbroCaP3v&{qnJ1d7xi8 z4TQrSoD?~qi#=Ns+oH_6Ah9kAOf!tZak?61-Lv!yEd3&8TE&dZfJQ9s93#kMvf+2~ zv2R4K*KGYFARJo{;P;#j4wP|;ZC>TsHvqka&MlsKonu_Z^h=m=jbq&qIA8K?TO1=G z;tE|mPal}2sHb}56FoA2w`8oI;E80z_zLMCF5dN@pqE@K zzH;Hy^68n2XHOhIeBj9by$AR11akZ2tL1G{%3B-_1n&(0mkj)d&p zv-9x&eW#8cI(_so3Wc3Ka_Z>8q&{O!Dyg3Ne8uY%0jLVR2?A)zcMrJR&jNJz|2k0)islY&Jofu^!kBD0dhfw+RD z!qF5DAt@pkkApJ{vx4<4(}L}c;Rei4&rgp@4EwAI&`UYQ(oa#;s0b=m1>*Ph$%g=? z$bw+mF0gmXF))aX!AVd%Q#%RwLYL6l$}u)FG!0aBBV(Wi)3tKVJqka~Fi+Lb^=Za? zlwja|U1;&wI2bQ5b7ZNnT?S)>tQhT8p){>tbueP4@bw^j=Oar;I%LT3bx23sB|vBZ zV_@ti+hr4N;y{OTxiH6#x@D=_}#dHs{l5>3nU>Rq+)o3*( z@Lszt0Pl84$6CdsO+sH2f22h;(hNI-k!HbAGvF4_-Nkri;h$k8hu2I4|GgeUpn zBz-W@D;sX-S(=!GsDC0|-ONHwt2-s`e(elM5ggARRiH;X+NBspM5G)?SOw}rQXKA( zk8~?hB?@pQdK9B5e=N8~Iz-wSLqj@>WFVgi>Tvu+TlNmsT#Iy~MeOTTPxk4T5mpT> zQuV78{YtN922KMw2cb5L0?nfF78sI1yUgDz1z%$ZV2ozo0G{vFEWj7FiahO-Ve}QU ziEh<209)U{EQ-hlbqK2N_`42A0r>#+n*>OKKv|7~ktV@#lfc`|2Pq=fs%P7g4%yZ^ z%vR5~Hn7ZOOwDBT{;1sbFZ3F7TdFEZKwPEZedFVcGUAHyab<*Hy@=Gvyp#x1a%6TQ z+M-U`8L@C0oLoXkC`gYhN{gu=Bs?fczgLh-O1z#PbFHzHE;3D`Wc9&O-k@Kg^K&%A zETxAEWF@vyrB0S|n5Q2HHWL}AV9Pg5z>$8TwTnGSW~#|7bvFk!t)|I59ODenGS4wg zqvlx}KSMJ{9~@^4j00H(bMk$CN?*Uq#~AQ)v=bcN1XDB0Q2Q9_F}m7EQ3Qt)01TZ> zQ386Q4k`VL@jieq)nxy`e2;RXTRO_nPGRQd4~WGDb~3LrwKM(7@g8}gOXlyA2D+sa z-Lml>8K9cKR{^*A3`@Vvvu|>(o0x8asvPM-QS@PWm!<;iHq9KIMU}*KvrO$2OA9DC z*{?*`!q4cHkM&4LyTraO@d!{>r+B1GJlrMrqS`XSCdF-hdmGQz%C)xgZ0%fYJJ(F( zsl`0rACkNNDSAmnmp(mnJY?Ug!v`*&K1RSrRODsAKy7?U$>ljoB{?Z2xfumH_?)b? ztaMzk2t2Apnidz97bP0GOMAI&~O_M2aB_kz^LWH{e@2`&WaDlz7oN55tAcHsnMkLn1T#c&=MKD#PHm- z7-Di1A=sOk04@&!SDKS@D=(!uD*+G=Mj;GTc_|hb_E~Xh1$|(YZCzp*XK30fx^9xG zn+oPkPO)_0J_P84;JHjP_0vo}yadO@4`9|Qu(xwfe>ZtFRBgVIp(Bf&-HH)JQ}W>s zp|b;CDo3fhIjVlXS2NkE@RJo|ovN`;6a@2i$$Wjt-|_dU{k^I{mwc>UG6bVl>}?f! zn}yys36R@V@8Eo=YNlN}-l3QwE2fdr;dvTGqpi|Fs{{r@qgJu6QRr*n55uVE4>bu# zfx8+7qxHOzdfspyf4EsVhENL4B>`N`ffZ}w57qPB4Pd#%V;zdgPB|Fm09ocoa3~pR z6%RG?U5z|v1J@0wHS)YIeDte2#6H+I@trLKXEV=Uk6CJ&#s-$Dfn{uBp+c|CEK@tz z^5b9s=ReJaqp7lpfL3iJN9JY5XeDz3#AjOepi64Yl&+|3#M&M-wAQSikvH*y%XJDQzgAW1G zdh0-7!eLN&CxDg|7|c(WA=jf#GK>hH?`q&75jMcr@nLw|#KRpD;D2`u-_^`_G_tL= zEOT8@gpHs>%+QRPo0vv2OUb}^>_7D1pFZkkdRT%-;jGliQXnouY%!W-jL1$5El7(h z278ebO+u?0!wWNGZ|0=j%S*kNpL{b5S5Am8C*aBm3FXB2yri(y*z5Ie{Sw=p)V?6J zObdXl%+n&%6dLAfv2jvh7#9L@S*9hH8L@GSuM2PnMwto^MPTjW>pL+`uyZ168`Q%$ z(G){0%^0Q`qbfZ85+_YL#6~M07ukks2CCT@pbq$H@UD84s_?N;V*EHyH_jSBkcQ%5 z^5H&IG0)pA@penSeM;0J4%5w3RFh~TPd(GGnjnjZ+k~EOMW9aspylt8je_&uCH0ZT zzBbWtyJ)xr&VnrH@^qu&MNMGkz+LWck*i1KB=c>pY;zmO)WI>4ImRxo zv72k|;uxtMm6-QGaChwgf9R!ANTNeO2lzRAH01L$$B0Q$56ejRD@c_^_)38MV*H)r ztcn6cNnTcQKCw72vy7BpLP{$orK1X^>2cY~(Mb`PBQAe>^pX7Z^-_=dw1;!*|+!P!GqV&oFqhCFHeoFDavfSm0f=;r@A7m?hdi; zZeIQU{MyRghP!#q4+dk*fkG*le{O(hxahB`a#6X1hRgQH5 zDbO?rFvdX&MBCs?5aArS0R2iIh_Ib!2Ij8;5%#O9`{W-)_^eL`FX8{91v7#Oo4F=n zd(5`VbF8z>OEmp#-{9nbBSK%Ne3*>FU%*|X-Esi$;a2fT8^Z4(_VAsJ0uQi#FfiqB z2ig~np!wyX0?{lph>+t3IXz>72%R--Btp#|d>Vox z)HSj6^$bHZLq-3ibJxGn%Wc+{6O(ch!wOR)E3)G5W+&Xtibqq8s7O~hG5%^UFj#sd zxa43jDsxjG>`@U-#WEpT73olP8P3(p;VR=ZkwL#=`# za8(*PPI!zraNyo?xA8pfe0Mv~LlzIUgI5Iy*^XweqlM>y&+L|XI>qiTv8P*t>LhoH zJstdD`EI_eL*VQZI=ci2v^oWjcAm9^XC?D2?QCN!3$+#Nzzk%zo{Z@_Ir?_Cp$Ah7 zxjfk)m%IKMdJQV2@sXD=o;`N)%!zBCol1?l@}M-U=5Eo`+xhoPa_$rpZWrRq^D>Ha z@dYG&MPb&%@@zQa!|_{1#Pa;i+{}c8$SV<7FT`HIkQ{wAIW{yl>~h5Qi`OomJ9GTV z>7$2_AKnjebu486k^Os49SJ!avhUat6dBvSb7#o@eS3E8*t>hz!Toyy#ZDhTeCp`I z)5i~-IK1cZ{+$Q+?cB3_$F7|_j_yD3$+2S*pPh@ncBz7t{Y`*;VC) zn%l&N%It#n8gkB_sUcm}os2yHG1}YMsk4K4Hx#+q)YU;OZPBzOw$dsRNV|p#nFs+q2d5& zN~lvY+93yLAE6f*z9xaQ5e%OY;ZWO$`A6vxAXy#92BxZpWqrngVS(*ahOLTjt)f|< z(k-z6gkgUITe|fL-S(JneN4B&P8HqulwpT=pTZ8yQO&f&h1E<;EoN=t0DU=Hh3-}X zVz5@BrJi!8^0Y$e=<w1RDBiA_>_jAtBzr;rR%C`x@xMfnxcJ58K|ZV zKBEpau?^q;WVp$Fj^p>6wmK`h{mxa55`U;_%C*cUUz-1sN zt`_AGANMe_`3pWdZa)a zTJSgp0M@DSf%bw5M2UzW_`g-`K?+2}g%l_rK?;^0zo-X8Rlnn>jwosp;@cY zzO9O3tqLlz3MtU~m=@fEKI!(LP=g8t;$qpW8P*!6r3SOsa~xnVT1B1~_%0wl5h&2r zz_!<6pui6zG}kiC9~AhMZm6b%0*yfh>Z@tmYO3}bWe_QlI#`1`S8Dp10t{pS3%&l} zF=xB!b{@VcBlac{caM~KCkI!M7L|o6+s78A$L1!57H6O`szh9PK^mNsa4RRNBrB;5 zpIDL^TZWG*NC{7gIA2y$%+(AjTq}}bt!cSuS?OE?;*wZrq_$b9br!Y~>zvp;D>P3F zEz^9%1XDfSD>66H6tz8~nr=~DpSZqHQqv=R+R1;`$*buWHuTFH`{ixS!G4KbV4jh= zR%D)ag=bUlUKd#x_~>(H`Dnr8G^P#E)MGH{C_jG`T&i9<3M&D6b&6eNu@e9c_TdPc zf0Pe*ik&Td8^BTv$J&UQ8!*^f8(6kFrnR00`)I1Y9<$f8Z156BEfd{Abu4gI>~IFyM>YIH)gJBW7%57#mmy z)W!}owPD6qrm-2EJBF@_p>3oOHq!@NScC1X0X9b{<+0^|(5c4%1iiFsX7^;{hj-E?>ex1=i&W(LiX?3 zyKBeJov6MmynEtENOIIQV5eL8DV6z2k4jRjO4FW|XV%`rH&o(lZ{zP4rj`|u^y8})qRQ@%0LZ8{gk47*eOC4D%$yvyQEdUvTBM7giRTo zU^}04y|1~RS3LJN&$-36E;G&Z49g;BU1wRA8HTx_5uE8qonI!<8Z>2~TNUUEPEe9j z3bemdF$OP#DbT)Vk*AUGXy7`)0#-A@>RF#L?N6C@Wb(kw1xFRKgO(~pVqp8sk7%Yx zu%%ia(=1P@*2h$H70vRLZhlHPJ!6_{SeAN@9l23_XA{@n#C5=3*~qrkvrM&2V+~yo z1NiDGRa-^V*3fkgbbVv6XJ0c@-^kF_(Y3YIV5er5p#{@-3d}$M{-??Ha$4_|k_zx~ zrCDhHA{XQrkK_lel>zcgiv?dG=mnq|a1uy2E3uG}m=|0gl9d!5b@_C5enG!#h+|!3 z>ZZ|@B9b4PYD5`d>QU+k`KjQ6j1)-G_Hm-)?eFsYhxSY$zb7C+8VJ%- zMKf1{{1_$>A;=HlAFN3`AAEB=QXt#bhy~@x0Qu=^0Pks9kl)jw{OaktCZsgfI1Jx?XW@x2TD#YM~FbFw~87<+C1P z6`2S0Rof@6>z6gtRd6QPFe4kGUu|uJ|{$_>7R=o%L2EG?O>@8TNzcv>D$ zEaP$h*xdC`i%SeBaFJI(KYR4@nIlnG&Zk6OEzeG@x|Q>+GWS_!9w1gtWp4f5+}eBj zcgskXWw}o(Q9vvRW;su8ZdnCo!Dg&P+?xpMy0C&v$;3^{Q2*dd^=Pfs2_eKh3L)5ng5>;oh_ zba3zPk9X|fgGyNJ*@Y7I5psg7YGfOV26CQ&q*rr^Uj*j+7RY86S4}lf%S8`d(ta^*d>0_ zr>JEN)MNSvwz)&%Wf+&Z?pM5#FZd(x5ret5IF5CWW0mK6!E?UgxnJ-+FZr$wu5B4J zq1MKj8Q5%*VO*dYmgweHihj9wV7f;=K{YH3pxbhp~0{}L11QkN(25k z0kDDBPz~NXnl}%|SFsP;L-MPGK?m*WQCO9t1?|-#?dgMM%}niFBtOs|YTnH@G^69X z7PcOB@y2vLm<+?Xe+KUQ7kZ62Ob-h26`8?065!zABC>EO|AY`9ibpl-!+^VjjU9u< zCDLLF(^2&yAhi6HsF=%V!>?T?GnK)J7C_g82<3E5z~JjAc=`#xaZ+TSfh|uzE`TFC zfU!WI$kxIdY+-0R*xF8b0P;wnd43NoZZbLcss_EVJp9+|IQ>}?l$+C(Vzkt`kUl8&|shJv$=?iRkM zmG5ogxf(fWwh^B20A0c07@EHTDr;t2n>n^N@OK1`HomQeV{HZ#1|)`=+E^%})sBK% z`euf%l?CpMz9UFhy?k@Oz(^4oX(AI6?64GKH&zS{*zldk1MhtRS+MPX5K4Ke^iQpb{k&i+$$qJtt_g! zS5$Yepypm402qvCck=HP;ge#ngkAb1>e|J`h->j-pC?3INkw%V!qehHlVfhc79b}j zHWWr;^wos$%Q4q4hF|&Y`o*&s&m22@Ead3Hy~hutLab+xA3A>cz{$f0kL=&Kd*{b{ zQ0>-__5gwH_;}||H2HYq$icYK3%7C;A6MX?Rc1db!#}Rbc~F9{f}N7|%$TdOS3irr zaWOqEG&eIYpMXQ)lp2l7h8Jd*ky4AYa7Flp(yaL6EF54}YRt9dsB3U?O7zu~=xZ7A z*K<;$fYXYy&?3hILLxCaDn0H7Au$Zjyma~ispxjE%177FAh^;^BGxj@(u0F#USvB~ zImjw4GmOAyQvhQ?U;XOQ9tDbkp+3TDU$1PqO9tW}X-6vuUBM(MZ6i3~LVLT|)hQpL z>SkHCb*_7xKm1i|yMfS*Ls%~Fj^OxtsoeS=|HqZ!vIy5&ywG+8y(GceySn`n{wyHqo1t>WN(zjm=_ zaK3MFu~RwSrJ3ncq3U5>YE*ZtRW{x%MvL*=rDGj3e;dkY9_dtoB^_?$xoX+=S`1C} zfCYR;*VTa41LufsX~ay8OanMRKwnKPV-rg2(l&uB#L(7K25V>owG>S?3jJx|obUho zKmA$K?Cr+e`RSQOCmQ=kF!nWX z_#L1Z4~=yYUT_w2P2gDOp&7|lHVDtMz_zb|@PgXgz|2cybi+a z(ae$6)7^t}9rB4*i63-`icx46C@7hK0Y|jcnh`atQe}DEgdxz;^LHfn0 zt@8piI)`tVGaG%2a#l3NKCNqkt`tc{&BwHVlYM-z6~j1zTyew39;H zlEl5C^u1G0{6#(SjbiK_pqJ9SA@{DM&-bh;J!>k@io&&mUOJa$jwP9URp#D+A@^)Z z?Mnj79Lq3+niB;pYzyq`T+=c$7^Vg%y{Q_M(OGgV8 zXQ-M9I@(V6DB;Wi09&tYq+dDKC-?P8hp9@msJ~k>)W)~BaMAk27PblXyJzX!*g%z5 zGS^II8#~wraIrhV-{Ba#fH~P(GF#Wi(6%xMfI^$m5;JuZbAZa0{;^Z*|NFUKYFX5^ z3zt4Q9(M6emL+0JS=Q}SkU;e;Bk4@&D`WWMH!WaguA6V&+Zg9 zKQ3u{RM_~Sp#ENd?Y;cEyLs6u;n6oPBt~9Kio6mjRzJq&q z?FQ)D@zJ6Edr(3BojYJ0*t_SG6NlqNFO+0P-Oa;Qm1jP#Al%AJywM2kfop?rhp%4YIoG(>1vXp- zU^e`gH~g0CdV!gi*sd+Mdz)p0-}ZuOTW6YAsDsn}gEOd=q<+3vJ>ISIQ?xTIFtwH? z_*bB5O~X7BF0`y;R^YVR{y{M7i!|dhWpKVnH9;Mip=zhPkqk!?K zM_x@;fA`CO{7KU6M_ks*Vqz}pp@6E^=Om+OYEE#0ZFW)=$gC_o8Ne(*Gp+z14+<>A zyr(&XGYWw9u)y*+Xb4XgYHTWNA+k*UKU*#Y!g8d~J=sy%x2XDcH*R{zoOxN~_ z`=lP4VU}i?qnqXt9jX1D(jkysyT}DQ6zvq-zQ%KHagpkt^IR|a!(RwSzTgkN=6hc8 zT-$(N0?(Gf`;u>8VcQlF|2vl1=6Mi2&-)4p4Yq95@Nu2zdBw6nXWKW}_D!TZZ~=m< zqXeJ-J*Z;vB)nvqmsw^cJj}Eh6yX}jx=z#2^=hWjyOvd|cA;B2(WjoI>E`-WezJ6^ zO@!Qb)Q1!l$aj*3F8KXzTw5bbEHQQP?No)AD);n?>}?!4f~K=ufW8=7fG&W15Z;qs zXEh4L`;ms{xkjk>5EHPAC(Y`g5`#aGvf2pP(%xGD=*k7`xX&bNlLz%olr`M zFV9N2os(2S#O0<$#9ls?5EIi%mkX>50_&W}HZKO?ajnTb&!w(asdELvk0&^sOTb_f z$Fc;D!*H+5hBk$knO3R0v@9&hA1)*Me3$0hdG8Rse4U6v?cd$ z0zoN;UZ}>tQ2F00M_;39$DwUNFV)DF+V@i7UXi<&Wu7&KXGLaTfUlPOUMb*Y-z$j& zzI0tN@>=ZPkfMRQK=MqpT+}CMfeQu#3|6q8k-)qlu`i45OETw**tRIPElC|~GUqza zJcsF~;AAm8OiT+5%><^M6u{GFAV5_N^-H}#j5NgvRp#v#IVtcwk-B>Yb~4Y>$u&_# zcAjR4r}40)_CA3bpsSm!@8u%&YGVvGF*FS{bv;E{M^V)D%WL{&y-bmq%lVUV*ME{` zA9?K}px2di$8UUk0??~8E57bdZrhWxrUyl>4~yC!71rO+e{wVX;jQdPw{olQ7BxO8 zZ>=hAxL?rvxUjtn7_6w}QBg%+QcBEq;42uJ2~ni9go4b3LOht5*sP=|z_5(C(3tC= zUjF3R+2aRJgrFGLsY3_OpEw+L@odbsbMRK&jn9CoZhU_Bv$Mx8d~*ELQ^$@5`x719 zyZhkYU1-8__YT0Yb0-c(TsliizFv-xepHfPT}i6GllSCiRu=BYr89@m9NmBV$o?}& z4}5Yo2%q>XVk$7mU#g&l5L6SSPzoY8ZS72g@OkW zdU32^p_YM^f|E5{9LsVOQ<-0O=U#OORXxTsg7ull%yZO%@jlfkMeU~z1Q_}mj%^v8 z@805rrE_obJlj0)8{zOaf9Q?S|Fv-VE#J8b?+RR-d=!gV3kJL3>sA=RftF>kl7gYP zU@rOIH+=6q4j`QUImfXM2AW}GhQRfL4`$b~E^u#f zZ7Uq}63Z|L9uN>3O+UjJoa$5fV9*EA3>QT?+9UhF*?aG(CeyXid+$9n>ex|0ks`g9 zkc5O52%&edPqP>7ASLvK^xhi~dLW^9DWaf&iekauz&4{ZmT~sp=R4oO-*pG~yU%;p zdf#)__pigc*1aAc6B3rcaQ*If-OU9;R7*CO*O1Ms&EeGLa_e&0b=j<%Ty|}dpaGR} zmKjP#jk%oKQ_SiUbnPj+E}Nk{QmWiXmF_K&?kSM$$rta=6CEm&-g*4|3sJA8+R817 zQP2^HCj})$;A28Dap3`pk!Wl-nM_QNA!ft|r&93fPI%zrplc+-$J=S+4_O7k1`T?t zRRavLorXo~&VQz^c9>B+!mJxz6n>_8evr{H4n2Y#Ueke`ve=Z21G%hHRZp32kX8-o z_E8n>RB3CG9H{Fo)Ape*1ETH{SUsz8l7*<7<}^>UTV}XzH`q;=5q0%|9K?A>-Dm2+ z@k-Hv+c{?AG{!rW-t}+l3RV53I#Bu%ntqr8m_etY<^pspxJ^^6h6yGb zNjqPmA2#>F2a6PFD$*8FtM{M&$__AXjy=LU*`CzITzje94|XGj&u!Q5l2&g?;^bkkGCq zN^%4)Eixz-QUD2)LJCMHg&Y!n#pj{jdb=uK6M|w5D;naZ21gA#OS^Z8|Ti9~RaQ^Q#9L8qlo{c4Z%1 z(?yrJ(iQC-T{m0ZSs^!-OPXoYX1df+!fz<%)s^t;O9geM{Q6>EO{uV!DQOU>4FZ*c zC21((*A%cS^BB5fPE`R*cdAUDRV+PHBt23nIZ`M-L=~MZ60j;5!Y{_V{wwuTNQM3$ zj!rffj#jJvU2P+A?(t!M85I1sgwUPIq^$3fPwh@Q_Cw;nOv<6{u?Kg=@7O)93?a`lHlj(v@!FCgWz5Cno)Z7P(|$!ng>KV3*>5?(KrE7 z0jaQl45cUYKm-#KC0eF+o+@wKeWHkxkox1X!eT``xJ|jXA2KGW8VDFF3sBWxQGK?e zdYD-=44DX?$bz0r%N3sSD#vt%+jf)Nd6(OHkJC2CHeLh2Vj8B9S(#7MW;M@%q(Q!8 zHeKel-DDfDv(cT)40PP~C1yR!cNO&$wCeN4y5S**L{D-QXFoLk8qFO$toc z1g+PFtvA5;=#_(zrb|JzRA>oziL9L}YAF!56iSV#l%LcH{Wa(TpH!lIK#NjNidnD~gmR7y}PI%EOKKN^M&!-iqK0z4dd9>^}$_S3&C~$}~OYx&bqCLkKxtAH5oo z8-iehyrC|`D5vov*SLt>HE!E2Ue_XWw^(Qd>?)&ivZ8K+UN=$EFvV(_sc4u4b%*^!;8M!He5s;e|m}c3H6Et0a zsdM4@8QbnNm%|!^gHiVp@ktzV{8jHn^MWTixQGKzXzK~x}<=5x)YpKF| zs;CiA%;VIYW&v`QKpk8Z@b%fu$|I<*i)M|mV)=fc{u)bIGdyI2hS1K z4S{8en=Xi($0Z;w%^*t?NU^}an*J4y=ft31O=DnX40Y@F9}Z@0-L>ZgwOClssqEqD z2SjMt3KVXDuOATB4WOS1w$?ZzY8Zhh%33Ze+pj3wXJj4MN`*tK8{yyd8zVwrOQgimCCDTG*^#ZM%Mr)#`88u2^Ed zdbyp|Y9AN7AYW%ffEzKu1Lx(8@pSZab?|nAXIa@>uimh3mDRe{HdbrhHgCXsI*_n# z!TwGm0nU^luQUqohcwcjOmZq27m4)>4sZ?hcEWhr`?}b=+gm%K(X-WdmaA;mud=gR zV`sVAX6 z1oiU4xY_JFc#7FH$!@;PYP`g1yvS^v06_wcVWGH$G_3wS3&lBR{iu0f1_E;8INLBq zuj-FT+HtI0ORqjlt2%2gyEI6z9)u)VZZ5%ErtU^-r{O}|4`N2E9yFU98b$*n;d%;cZW{8m8dg(yK@4RYQ!b!HTLuX7yPnWZ{}&G=r(_E>)oY%Mg(M z3PlEVHl?r`l35_Y{cd9?pLu>eW!K-H{xPq$?bQYN&<<0#|6? zM>IOtYLT~iRKE)w9g2Ytg0GWx%Fcc8-^6adg0@$fc{9fpm^NDO{%_vK5O0Vd4I zoYQjoI9(f^`rS!JC6Y0;DPs`vW|l569FXc#;0;w_1@;zsJIkyAwHskA^450i-@E~A zy^lDZz}qYX@pjET4}Kl-)^r8>0$k%wwrQ5rev93H8~%xHyumS=C(4_qD;h4L8O(q2 zR)G!(M!Yeq&NB7GERae45FNBo*I=1l?)2Cy{% zZ~1)Stu~ii3#z}!TMlQDx9VJ`?zow^eFccO?{oOOb9s3s6<@}(`ajj{KYbbW+8qB5A)S@35V=-;lT8khaf= zjMHFf;^s;7tmU{_AcsZpLbZe9+97G(u%vNBTt6hN>fvcS*eVlCX=EvkbXhZ9(#()H zvz11U(!h{3(8ZuzNWB=+dZw&_C2wTO>RGY|x)ju_zEoISCa9$eYs<|SrF?x6udha|)Cj+n z2;anT|Kx}O$PsboG!YfzPbThJROCQ5*17i_V;ylaI@d&W^c98V%6&9OV@n6)N0kYU_p*H7B=fvTC7;Q zVa-a%jqAK!?6BU>B)nH7-YXR2hV^vBxZ8U>**I@nZ-d6l);Mff>*cs1(A_>P(49i` zArrl0g8h;rFx%pYKct4E3aIE{Air>&7v9?u=jmWx?e7xk<>>8V3$N~AZDC`v5|qz& z{c4BxYi!o8v|hOk>**XF5)fl9Tp35gCR2!+abY`>Bex}nf`Fw`h$&<|WW%^{93{jr z(9QOz<5X_PEU)u6w{4bXy2fg`%x<2B%*bwm1az5Ym}E7XlVihqM#H&^dNkf;o)sG9 zG+ijybj76YI8mXls2yV~^W5Zk%2-R#AV6*@E&T=o!3Q zPTLJ``z?Ow9e(FMZre>3r1FNTiki_PRWDWEg-(-{wwkN+H5Z6lsA3fPB10a(A&=LP z!>&KgsyofD%jGsug^h&*lU>@eRcOwMkRk;&g@QV` zprXu(_Vt{g>kgHu4iw7vo9i3=m?z#(mCb!Iqh3`SWimMgofC?7GGdd-#MEfw_N0id ziQyS>!D%tU=2IBZL08ei{&-LO_|)`b-2kua7PtKd8+bEbVIkN6xhot5-W1Dl5e>H@ z*v2Xv#?0z9#;PCX8ZI)b`ZISQJCMsRs~n&s9~)sH*v``R1N6$iG7U(6_vhMQ;Q5vP zrMiJqGi=Z!06nXy9)O<)Nb}mRbBtG!M77=ombe{v*sV7hhG|CqBrwLPn?Mtbwc`vB zFw=Ez2cnVFag*P1N6>Yb*KwDJ2E?vF$AnQkUZU-%D!QmLwDF`sj7ky}h?>E#sA3}( z!Pb<=YdpgN*lHJHE8qif&?4Tbf<_>%L}EZgTL2qJpUct11yxuF{*Rm=NaNQO3hUq^ zkEhRO>P}XmBC!XGeC8u3#~_|Ev?Z85=Hqlu~J1BMbp{X@L%)6+AVH3N#i+p_K(vaVTa`xQwmng^7& zUXiw4mbFevOc&9dUGsTy^Oy+2a2_m6YB;BW`*r=h_8mV?Wpio<1Yl)NBcjF;RD895 zP*Bs)tLovP8u)#v41RS#SQ%G8z^NYK>CJUnYX?MiXN65;vi8f$?(4GltK#;n(yp8G zzI$L_vd$Y~(`BJyQe?O!Y?=@?okwF|#;ekfSw+vBy!W=O=a#DXj=Jx@3XPcElC@ox zwoC~d$63__bWL}Ks*|p4qsvX@QX@^;LYKBw$dPN6iptuGaz6TmA# zxXyQhuyos$aR7e|;U-9+eS7pLlx}*+`gGuWdk~+GmhAFM1i|fjT`XY|5fThc+ zP#-UqA4luzrH2c}2Ma~iQVx&tWl7h6qh1mr-@_4PWSPCyT8z6b8RwQn@=Xl$O$zhR zpkR|D&~Q*}7^*b{LKPI?9_Zr|66ggtK}eD!@w*bk4{VD)`BTc70~trYPfCcuMg?QY z5JXH&7%n~{C>-nK;biMzV`;r+#p-XDe2aD|{uM54)~&L!Tm?2|wdPx}FYC1{TOre-sHH+%GPo<=##h0CX9yz(cg_iMADTM5tvBArjl{H z5(z0}G=>l#frrdR4)O&73kmcL#iEvoaVNk#_jdAd+~8oncH`QWmaCSpTK3KQmCNwn zE|3c2B7!Jr;SCm5rHBm5h(*=xQ4RcXv;ZuD926anCE>lX9`<{)%Y=Q81cT4{{ZIIP zkNG|Kd0lro9e22$a}YdeJHW~yZn9givrIEg;|$AmmD6%X*miB}-W&%9yTl!PN-GE1 zhD*%G3(STKNYd)Z7N>#0!RU+AjF*SpZPcD9S7()}4wono7DFCX>;v^G zR2+nFi{yt(Rd>IbwO;krnzY!kC}Kc#C?+{7C?yK5tKXIw4w9ch@{dES4TEAycuGhB z&dVV_HG@_^Asv1x7<_6b?E$aro|&{e+%7~KuVapbV1xftb1wkw$as})n&GxwK2fg3 z1Y$!e38k7&Zp$8OG#5Or`6|N9G>cGd zxJauW0mIJ~x0+8K1=1kUz7n+6owG<9s=|%V(qf}R**Tng2z1;$OMjYKoy)1q=hlJV z7ovIXCN!zdtu@nCb%t4;!`A1p!Ro6%lSb1VFE?+bEtVfFRwBu#$`2GPP!!3sOL$+} z()vHu>))ka^qOt)q`1(4q%cfo6k#h`-xd60QuvNILMq80t^1+`p^kPKhG;%8PS7%; zyYNaq@=P`SST*oa-hWTlb64JbSJ`(**?ULca|cvMfwm&fN;|GeI%Xv8GqUy>dE4du z3MCGUB}XT)D?1f!(;_r4c|qKAL4+LaoUn0NSdVJm3(ySau(@``c~LW3HYPz2SX@Yd zZqevuri=3SX+_snMb9lo|9$1aLsj3Lq;nQbOx7_gZkv&J-BfnZN!qW8TBfC@Y49{D znu5F`@31#O9GFJI#gj16X7!2*!^DK+A_#s#7>_9EvquCblX2Nr9Ue0zK*RNT*{M%*Ue7p3U70bT<_M5Mle)X4? z-!8GXSZ!~;*45t9YV8VZi{+bb*5SRKqVV3aA%4-pULhFQ01pR$cLz@=8$0W@wpOdW z9If5$t$bWHXT*l2 z#|EcF6JoR;2a7@=ZZP&T&v)r~BmT{T| zK4zF;H%)L_COO6_uIVzbb(&|I;`*mUGO>y^}sOOHj=dPsx zp{VB`ul2g1?WU;rzM$(qE@jGvETd!9%TrAQI7ASil@}zBNM8@pJ zqxV3rge}?Tjbm^JB8P9t<~4$MG(PlybT2=YU_Jj`cICrX}u4*J@+`DNqZt3c)>JX4+)Rj>|nE(%4alR;EBHL{mA6P5OMjAC31*ectIgw?N#i0J%SNjQE0299 zP4ge59V}9!C<8YJNe)Vn z#Aig}w^9f@<3e^Ngo1ZLmp=mQ5sGmQ3G`-Gb=OY)svZAXeg36-?1g&xsp{-w<-k+b zz$0)ldH-G6zytZa-!Ln*($kXJ)x zSAtoU32VzlHKhW5si3Bqt1skK7qBXGncD0Mbv9jdnx@GvSD!2c*FrlP!Lp8)D6)!W zN0D?vD?19;#nPiClKgT$_e=Gz|4O~oa*4mEi<6CokMkyi@8+l=kHm2QR0=jTmY5L} zoD_wRBKSoG`$mUhKxV*Fg8bd#Ix!NT8bwHtCT@uj-VzrKkK7VN1P3GGydww!WFiu_ zm=OOkte2;=?S}PhEmkdGy5yU0K)Sy9dflq!E0--<^7UUWR-$66ZVuLt8!a|kta997 zfpN7ZVcioVu<@io65b2%>w*@2x!JkcZP>iQ!p+vweX})u8xr6KIxl+Ldw66Duzg*nDZk!D4v9k4)Ko;_KU!IW<*5n-LXHXOfBlZts4JT zI`&39{7O9VTr}`Z(EnHfmSqk;s8{bpblvw@FfcDX`$~S{LwVgfcOSo9rx=X3+kCWy z22||O|Ls&szK8|`LYgF z{a$3sMJ1kEAoqc2<)Z^BOga3fY;IEyBt8_4&{3kPyU}7Bxv5;yT4df0T`X=Y6g5!! zwV+;SSkt|X3Hu;rIYrVhql1A%qb5nO9JU{Ujf=;hIW}zQS8f??uDFK zD9z(&9?ie{LefEFZDm?)Sfcq9?8P;NDNzJ4t^{B>40!Vty%tSj7nm8#m$c=HOlJg!GYB)}^92$U zC>FTZB4%f}^@Z?fU)fovXfKhql%utUrebk(kqFIVqeWa`TwwK|N3?WD%hg9pP%Zj{ zC5rvUU{=7G;()n8+#+Vc*#C;z-bL!D(yVet9$j2cXVB>MKh^6C-r-oeJuW<*jLRhB zQpwm<^PFQQB`7TtpB@#I8WETrj!x5#4fM>wDQmi5n0cqa{9ZHuT08PwGyF_F z`cyOYM0NIwa_Er)#bdZoLOb$Qb?$|3{FmCx@4h=)5S^S^AZd{g-dCP|C>yx17aiaH3K)bLwBl%?(2ph=!PFw zjy%zgKCK#k3=Ssmm{IlI0MSzQ-d6S8RCLV9+AqsGW~8lC{Kiq1u8*ebDpPcnL&#c7 z#4RNfW09yCK2|hzgm()n3L!*wAxZ@G6*41V+sW0mvy?47O&eEbV#y6mX%kb{RDl+8 z)s*t|#oQ_?OP9yeodMA*S0T$PR~#*qA1hU$0L4ObCCe(394(S&{VR?XOS8bZ;JQSb zLsyiuBs>;F_@#Q+e_hR90(#@&V1@N^2=;f0#Ja@9L5~onC zdq{wLaDZE&r-O&%CfoIEH?3dew8_%VVS~S$T?E!Ml@jz_3hCf>O4iP(BRiw_ZjJpu zJtmnP6cd7>5PYMFz7aUDNb_-c(1v3?!?9kGc%M*I)7916#nx%ldW`#K5Us`Z7axv` z2|+7x(kN)vO>z`5H5#qGNg(0l!UAGK{Sw0h;zN9c-8U0$t>RrBek75O{&+CAM8d2e zQ;omTPX8gh@J=-Hi)i4vVBiVA?+N5b0VGQBuA!HTi4WSzkLt5G3E|-f=~{O8V}Ab& zUf(>gcb?z(l-CQ%^eM0JDHrbaE%5sn1bt5h;B5Vmg#C|&gHJ^RD1<1ULH-r>KNSx? zmJK~oj67A0K2w}qkc}?LN9UCz&y>(R8+oi6dL-+=%kR9#Y#gts8D^QMENNP_iL6kD zmUU63rUDV9zxr%+;%Z~Q&`>C8DUv|{s4-vAn8&Zr7u1!>Tg&98BC(-V)d8Me<3H!}tBFxD+464T*_XWj1zzt0A7O?V=|Ng@R|7n z7<&RrFCBWK9DS-BomY&0W=wT%-aG~KNICF8(szf~HiKr&>qc16>W9lUy{MGyXU2^A zf~Fi!{b_F98D3L?sHFtVO4weuHaCae zgrJ%Z4s{-m3DqaAyp8(mPrpV{Fj%Hbz)p+5J#^3vP7nZGw&{<&0K z9Tpu^r0&+7d#M~*P!2CBhvrp7PZeh$E1-oKo`;+2;dwQP-0)-d$Yag$6Yc0z?Z`9D z$TRKeJX~mppFyh|eNsL4q;~vi-S~XX_;daE^Xl=1`tgN^@n`j8kLpGrRGz(~?4A)f zpBFWaN}JD%>qmH1y=-k4L)Af7w$l~Ha!FGWzrIM&P$GoC+btZGiK%QU7dMuR8p_b} zt$L2Sm7_Ev~BASP-Pm zR(LN5QlN7*!2|yO$AR#xlRE?>SBzSgW>;k?Pp$!7i9 zRm;Bp=5Om)Eq68-R&};r?_j;gbF+1bziTMQgW&6m^L7mKal&~z`nuS;*<0DHTW!B_ z9XObut3B3hbFjaAB*7<+gh`{|b|!^=mlClhK0G0k5ajLb>tf^YVvF&xC3riNa9%NC zSP(f1(JzYN7ftjBZzN*eyj(W;}NGULNCV#APqMFgc#LQ=@Y#geKi(ZL{c zNfALwk@y5sAXpjv)*eoF%a<)#vt)^` z!NGnO4Zo6{`$ci-_nKS(uYBOA1{kJXcZKU#{(;X}im`J!Ptn5=Cpi z*ltQjs!aMln%GB$n{xA^HVR0Z2TJ6} zY07+#rb1lxoA?SAfiVqyzQ`I7Ey)z|*eT>GDrvA04Hu;Eu=`|8X8&`kZtZa!bY5dFAqOI$?A zak@k>FfShcRW$sI8L$^<+;tHuFs{XGz^wO?uXc&)wkOZC*-x+`xRFC)NOuDxlPexVz_C+)flfYB@aN;O>o7+{9Z zIa0P2NSeuU*!yOZ0Hr6X^Yu zzeiSFES<)$9Jpqj`=jyZ|I}T2s~&ryJ^!kD@?FF1KN@G=%UUncIHCjFwyqSM7ygG-EH-=U%|K&|5Lbf_h{g6bpIR*+-foYL`PKQ~SPVz~0gbnR`&?Az|yU;A#p?Z5T5d*-F#{Qc^_8AZz& zzowsC)y1ps=2iD{bX{z1TZO#2RMJo+YA6;pf`+ja27$)JQMJGYSKT7e8u@A?Ti(c& zHA2f)piPVAf|@dZbt$j1h@&fH=?YkyJccHxLY;%WOMSXrb)r;xqEvCTR1V&iWu8ww zUZPkW_(IFN%FwAv$IwDA`I!nu30K1rX@p$9kX0f40!|D1|Dj$uA2%Q84Z;4KDFoM) zaPPFpfP^sL_)y>ENNjpEKG7^-ap9P#5PxEzJJ#1VlHea79+()8Nsd5~5bl>85s*s8 zB#vx3}MDX|ZPI#&xSb9Bn)uH*Q?Ndd>20ELJQ7 z_40Aq}<2P@xaIv-WbF&Y|xQF9B$ppVR z5-uh@Fg`pWGnTMDAuKtH5J$o%Mh1oBys@5}!Mk0(eO*r&}-4q3-RD{(cpsF zuguez15Z$L96-het|fsOdL|u)oVcJq|FZV-o3@)DI&c5pdgFuP+HZ~5-Zxx(*KqxP z)9m|}o1fZled?V1qxat5&p!U=;G_RBaQ~kJ_x|2_>({2Kg{q-BWzUSnbcx?^j$Jdz ztnR1lddk#oWpWcu(ORKuuTZy@%Z(slr7}aQ6ctb^5Y*-K^pFj6S)ZlrRE72wIt5R2 zf~G!RuF5J^LL5P@3XzQYpl(i4oh9B2%M-2>~81_SSYAEY`1v zo(j;l($~RuPk6{_O4$Bj?Dr(nnH-wfcu@g;>PzpcuKhzf@lw_?dNk|Mi62w)_obcO z6}>$QcQU6~1HI|V-{t3i6%RiLLlX_X1iHj$fv)*Q#)Lpu-y>l^(k(>S(7Y640+>d|}3?rUO1*CN|Qa&+MJkuntu8u*y@BopYWKE>3ZWK<)-Sb!F^RVUFX z89YD*faP&CWo!Wryo*NrbJXigKf|$6zjs^0_el}op`%X->0~^_wwT}_QX+m#jocC! z93J4|W^cWDqlKmU(`UJACC0%nD>9@ghIBj>yFZdtl1HoTxLAAfW!;r`#<_piO~0(} z9X)gGNWtz@`oT2n4>7wbIBI@z!-dC9GoPw1{-!(sLO1?OJN8mL`doW%;d6kA4L?;6 zJ<<+8)t-9>cPh^=R@!9cip$%cin#1b?bfi z-21+}zYpE}kz3aa(F5zywKGeq{CdfTC+&3dKAT=^DJsOu8ZC*Sd8JHXykQ4zv=1(U0 zMBshm!?DSbHNpcD!u=D&0+Pbv@tBlIOccQ{9PdL4@}-1eDWNzb7?htY#@!*n)jq_} zEd=8l+5Xi=W6G)$;#i=7Voo}g!Kfu3PDFb zI-$wX&DO5=)=oC-ooy|>oNe)bEfu70(0n=tP(HhGWklkpS(@fndw2@zXnyJlUSLg9+K-CIRl}ohoADrzB zI2*S*k6%p{)D{S8@_5zR?8?)uN_f@@x;md*^>F@6IX>HDsNJ_Sc}G%YT3jgf6w>2D zGvmUyCX%)%MeazBhziAQwzGEFVCm&#>+ND|Z?zWh>b#p2UXT=r&`O9p6-zo0iro?D zyMN0LmaOJ@F7@QWAG3c-C^?+MIJ%|ma3*zsYVPjXUC{yAr_N{wZ|g3-S6+A{ANxf% z`dU2vLNq)t2DHx3i_riVp!EdM0^O3C(Nc~*ue|iyaQ$7!94P&Vj$7}Ivu3oAaRF4n zfqjA4e@5%ZXS7;xee9U~)OGv!t~adsXyvhVIS4H^fMG^UYeq|Vn(=S65JmhNpsRqd&*fH~;a27G z^uQI|$>Zx6(L!ZRD%9CbZBYQ%Kq$Wjul&#Pu0Pew{MFH1d-VI{-D#0K62da0i96%N zb|r=XkV5(?HF9@aL|hog$fgJF1*m4f37{hpc{iglZm>qCsh}oR*ye}(2vj8U3$@c`!IML zyz4zg&#iaew}0!p{ag2)_dR#t_s)InpZhp?7sc88A4ea4I``oBG1Pt>y8B_^_HP3> zejb>4(LMd7>*D>+^Ea9YF6rAww9UQBx=xwCRaR+~RvM%_gGAdTQq}Vnbv#)OORA@f zs!Dmf60W9@r7mEp^O>4Lj<%4EYD7@k+7e!Mxv+*NuA@t8LDgue)t3sYN(5EqLOo4f z!;sdMi}l6)$|7!MAy=2r(iCyDOcr0j`qR7q8};G@csO|4TL$|%Qi43m3s4L&SJ(w%xF1<#MM@8}MF^WP(>>SRfD{hV>x$I0gGV+gn?#TCvpHVx_aKm8at- zS9>dryL~7I+{`Ni=NW;6){E%x;_bY_$=1@|daaAy25)COyst};pDPLH6&Dtm9EHz} z4*D)BWJi2ZQY0>wOo$E*2=Z|W5A=)-@`(uYizVTcqKNV2pqOx6ptrM&t(A+NrK_D4 zXqdON4X9U2OlT4%m=Y2g6O4-w!zD%%(qcomCy}-#MWjXtr$&b)lZlCBd@6;Q8Bf}p z9EtID+hDnN!@9K_)~|K6-DqQBvDwPXebXjC2b%~thwV7O)6t~jBuYUnDKD0ECMM!! zd}LlmeCc;7We2vD9ob4hww0chUUn$8cz^PVosma&CFd5EDSB^KUjC$>{HVP6t9;@Y z`PfVO=z?ryUWP^?p2^S6E6yz_#^zPy&nqv!GR*!4X|C_V?}HD2AGrUqYwlzF?T@Bg zA51qtG|#?ozVQyk%y{#?>E`e4w?1`(aozo+`~E+=?)|;Y2m1v*vbaBq5*nF6_T0~p}vq;oySG%EwdN5 zw^XQ4np5N{Bwe~3c4ZE$@(jBw4=jtP&t_G_&C^VC5@aArJ5E;~r>RadkfEJqYECg! zry257OhqnN^YGc1a(uR_QNMe8LS}quQdCe1B{&HUv=Y){LbfGG0jN$68?4r?wzgOe zXl=4w@3Lu=tIZ}m%k^Fxty29xPf)_jQsRmd$$4?)+!#`JOxUrQh%@OiWqZ=;$96D} zZD$XsEy&KzONT#mW%l`b z<@p88`19J!Z(47C=(&ryg6O?#w)9&cO}9U^+yJ!9T-|sNq_y4p)PDO@*WEw5?*6^& z?ms%`K6NASdf$HSmzK%-`q8`kfmvP8Rc+@brEyGd7?L&gN@_a=m2C(uZ3|o3#8%X^ z<@HQyZTWvl7h9JLXff1_Xq_+*d4X|(N&!M=*p<1QY7qEbbFI{D#8s79-GM6ZL4SB>!mfnS%xJ=v*bsD5b~IsIY{-wP zQOS`(?hYH!Nh=m>Y}T)}wOa4FX%mEl)p{Qrt8ExBYIGPcJ)VAb9r6KTW)8L^s{KGW=n`l}!7uDq+c{8oSIrT*gc zs)>cF@%ifUdC)EW#C+|=g}O@%jg!yYXWtCn|9Ii?r>Xf*Q_ntKc=Y?|y^nBb@ZN`k zyC3@I-u2yi-+$-**}ETx?tL14@af#cKgJ&aeeB6UK)TL9{4{p&!|?522Cgo2jNdhl z+-M%WYUsUG*D+RO8mck&S2lHNYTH#ctxCO7rfZUE8)TXWiK>n#uVG1$bkPJl@U9|` zx|pplMBb&&XQ)BFz@v(gk5!iNtILGdrF?xcm=y>7s;ZC!xj>c2M3K)>!M9*sRF0a; zfomm|tt?}U_+R$Y`v0SPsU(6Bj625N7F;MQ$UP?5J2uoeCe%MB#4j$)HzCYFiG)ce z<6}vIk>)*vVK|SN5T8U+KyoB5Jvt~OIw&(HC?hH`H4;N6qILM-UE~lfIT+*VV!v$3 zlE3`rFBYp;V%!|aIM29He~gzCWEQv08wh^Rp3XLFRxY!(T;uIz6X5RPY6t!OjUfT9 zWP*1j-W%L0lHf!1clCDK=(K6Qjpb_RP3yg!Y|OkXLMYpn2aSs)iaLiA$mo)8a!QczS+8)|D*caKh=}JsV07gP>elSUU;s$@IrOr zxn}%@?&7QZ%fGbUe%E*JpJo?ae=Uw})-`Z}yhv=C5z31L1h_1O0t=E5T zn0{G%;aT;_{mP-+y1`qTzFAH86}jnx#4s$X9}v{^a;iF6x(=4EovrO)X-!P6iKQ{I z%&RdODg#~KSRremN$ZP+HThiq8MAbquFybcJdL~y<+~H*s$=CUaH``p^>Mo9Lrm=>b|E!w%hi2-%dh)Gm;YSDt z&x@OefGfVfmt6@^b#N+yuJ+Gdsf`FKMRSFs3813O>dQnmMdo3vY{Zr3G##MQ091%8 zn(}xV5QSX*I9+|bLJP)zih<4sLW}LoH0H@iGgk;I`H@ojQFt)IPlddTB?qqZnW8_v z>reIiPwLfJy?<-$cZp%!V+mW}FML!`8X3POHY|aJbGP4MXT1jc`Zi@M3@b(1gZCtoyOerdY) zbMMW!V~^fndiH5@;rHq1pDsTAaPGnTp?mL#?td74@bUcPPvcMjK!aLyzxK|)Zl9hv zjXySw-Dy5IXBfWOIC!nTce=Xcyv{hJGYqI2dSx{o(wYugZKq7%F44D2^(JYxNup~J zX`4k_gGk*dRMm6kbquk-Oi&GGRmesoT}7x><%3F9DD&v5T!u1_0a~TbXKATyZ2=pN zNS|S7a_E|z#aT$YGMlc*rpr&$jHPbDWt2ggKU6QgkHalz@a!O2lU$z+^a zz;GE6f$3=77dmh!EC>wECm7>pwQkMd{`OZ;uVqWV_Hni)1)}YW>(;LP>tFx2^4n#8 z?)Df@2WyL!8`rJ!a`Cf3PVs9v+4&Sf)o4 zlcR8yU_XM7v!9z?pqB%<;*ON4l$g*!A17pe{w}d0{z;K|bFE9_mbkEt*pQT{z_ch_ z3K^FOHxnX4vEHr@8&H0Vess%kOkkziOv`)?R$Aop`C8c%hkC(2XzXCtoyQ`=#sl+kyMP4cz;!d+yh++i$w( z-ge&lx#jXg)6~<}s|%giU$@RI)Skbu?z<*#9p}}bWmWYube$Et4!XLPrZSc*jpd3K zn$k#D8W~CxL)B6N7uwbeO&eWhDpRzS$ql74L$S26P-I@>#YUO&Bq&yy;%K>IG1-Ac z9Vw9?h8A6;i$ldI4wfhml_(CEC=Zn?50ycyI#jASSPXaMi;vGT|Bz!eMOL}&C{28{ zTzs0Tc<}TK8uj`iBQ6=?ghq*>M}yWD#*?r1XZaYk*2O@k%@KTsw}Ss-1jknne^1-v6y1 zpt}7Ts*c&$hN)*wlTQJs_UkW=)AKdw?x=ca#KsGp+CgSz&mvSbm8o25LPRN=X=s-s zKn2lKp$4cBQU5Dcg^~uUur3b`UIA3<l;9I_A%)*3@Q!ce9or5qJ1g_#me9jn<0YD^ z_L*14nRg9WercTfx#{ZbrpvFIrk^)WEi_Lpw9ULcJNM?ogSS&p-(7nA?!v=g&)@%b z{NdY?xz~L&^F3Fe4&7WBz5QzN`h4s7y}H3`y7qB-<5@{fk4WDo(su~ZFfy8?;Axuq zXqTcNb(iv^a&qRU5b}15?pJm(n5fii}2A>&?<{XnFaNt4_L4G8>58mI+V$F)bBJ=volCQpU z-@Gw2z}?fycG;3|{_>Zc00>p)=qT{eaIIb+=Hu=)$Y1ix%dh@W}EGa-WDhxc_3aI+6^ zv-5Sf#d|tN;e8X)Q7;6v(jM*N#3fM(Tau!nixiIaA_jQC8?#=!a`p11E0-@>w`L_M z<+|0Y)~;N-^sB!v`Q~ryS1-3%wS4vRWww@8j=m6fF=mrJ+btUm!xYE6?z%ve{^X4Vus~ z=fs0W(tU-JeN@!$r%Db$TPWU}FWOHP?kf=ND-iC<6a17b{1GBg^i!?~9okYLF_-W{ zd;IrPMf<3t161+BV#&c`@sSeoky24sx$t>xor8;zb#$*w^hrRtXZ+lV#Nwa z>kXT&tZXbTeC#%E!(wvcqKZ>uOHyLa#E}j}5VO)K#Rs?24`-I{Pb@#2d~9oYCdsda z!LGgdw0ioN%1Q99&qV3RpVeP_+A{sLZRUCJ%~yT5UU$vD?7IG{WAD%t)*z)1>FnQ=nJM)u|dPM>2>o*AeAAS!>6D9K(RiYne$0PLBG zDiR+?IEjyx0a2pkH1TPgsF=q3)4Tpuum63_xvuiZ6iOy}aiAb@Yh1|pY22ch&nDT_k6H&yR3<~GSHsR4N+(XHNqse*ONjpjY91f@b^0SufZwyyo8!o?WnSS0p z^{jPzzVphnzH84$Z$6*6^J?PW>+^H3&fP{aeEa3#>_Yq0!}5fXB9z+junfJm!R?yr^+R#X_C`)adw3$k0~u=h*(VapRVO-KYrGb_8ZyZXKEA7=i9?zQGzRNZUV%)B>U{oZe>$gR6>UM@i(efQa) zea}Aohzl(0e6up&EO!{CCIttAOcvfKXE;n!t6E@?aco+VO(%wEO()h#n9!3kBE)_o zCSE6ETGRpnX~kI@yIN?FFg1WJnZ(T0__W06NlXkzK)|WU#8VRCEvv59qN}lKF58vYi}kG+^1Ck;wOq)( zQlPz1Xs>VS9=ZGL$eTaUy#2@7H$N_a_T$!9KkfYOKWu#Q#a-`@afqz4omhxaam=iqO?@LZU49VS&NsR%>W4uPEUOth zT{}=#>jGAKtFQD%Z|RMmk{dlIZuS=6=qtY2TXM7S8@@Wy3#Rx%NeNa3$_l8fB$#?_%jIyqdvD*%GL^*IXY>9U0GyT+cg56n5h*p z*klYk17zIL{B=Uy@wnKiSU~m1k3=7ZS`b5<=12si-&ryyWz z3b|4#zhg5t=NPXVdl`cZ~lJn^$*MM zAUW;+`p-a43oqZ#JpE?w`5)$A|8edW5Yitbum3pn>W|Yezn^~bJvjbFPOttn_58c> zr|-uf{dVmB*TL;KzO@6Wcz%2hl2drKZ(_Y?Y`Ghf(?X|jp=~$<4g2oN=E13^Lpe3} zjes;6C;`Z+yxvn*3*_WJb=!3slG6Z?P3g@;Egj0~(E5O!N^2lFow+k~*bB~czR6S7 z>^W2vV0ib%zsSj3(-Wxc4>k4%+PeBba@R-n`hUN|ez#f1Hj7z>2I(oNz+RoJ6C|Md9RKkk0^e)HuwTW|ib^Z9q%@4njv_W5@k@4nx7`@`DXAJ*S}zxwuv zmCydP`q_`GZ@*u9`TM13zgu|x_00a8sjY*t#l2u;Eikp}pI-AvHhfbn?(m{}bkRMs z*dLhb^G)^oB0a-XPEXi5G}b*h+Tirx=or4*;;wG;TmVc}=dQftI$sZLprWq-Y)#LZ zLo2)8duV-UYx~M;`_DHFUT6SRHhk%jwXU~8xOGTeo}2A%aIEe2HuncRhDN#u0{y-H zA3^IsiC*ELTgt{$;EA-%R1p=e6Oe5RMvjheRZwP#wErakB>f@k(>a6 zX+}~U3}jOAv1thjnJLNWlvHeL3KN;BAQ5tT>`ImFszGrxM}MQp(s(Yn{Yp{Oc}I1= zva&e4p{;ZJ;k&(W{(19PKW#u$KR+$K`*G&gA0`ieH~I8;<4?XBfBai;GIj9n^uf20 z=f96Udp~{f+sQ}2o_O%}#JzXny_e&gPs1CJg0tJcsny`Zwm-7&9+?>kPP>BB{UdX| zq1hgPq{}zm;ei&aw7Msnhb9{bCmLL%b-kgw?%=hy;i{&=iaP^m>Re?YO5Orw1>sid z4QI(sXUVmm;_J>6H@XiEx^l9n_e`zp+?^rdt(RJcueEz`c0kXfYd%=F_jb3x))}mG z2J8EScltxkgW>OgHY*%Q10ETd!oX!%l$_If+I*uFcosA*E@pG6cuYnrEIB?k4$@Le zLQG<8bj-0MfV+T}0L%kvCC5jnC&j~3;^D~&X$i4Ou`y}!@q~yNDYXVyat zJKl+p)5uKU$b4^L#_5lAdZ*imr`jNlpKKfe8TVLSKU4~GtHXDx1*Fo06?G80 zm({pV0eZjn7cBu%ow)8SzTSP}dUwf(D>t2|Z}*qixxlwnHM>Ece&d6dy8ShszQYr5 ztrL>dot{ubf2h8Hq}e&t0hM@tgs+e2_5Xa02R$ktm4na7QE@NiYfCLsi;QKJvrW)e z^>{oy6`2yB78jicM)HK1q}XVX_@o?qUvg|zLe$Ze_~?wJcz|J%Z{r0Da zfBWO3-~9C8H$Uxs`ThEv-!H%X-O7vKExq_=`NcP@ufAP-{rinKzh8g-e*M+&R-XNO z@zEDc4?kai@M>}I*~;B#i|hBM=hvqf)@N6CCL>E@;mAlh5}KF^Ow9YnW`;*+218Q= zfhiZ@F7H&AXR^~h)-gEJ<_a|fuW5H*X&$U@a9yZ(U8r-NtLv+{-E+3aS$^9I5!Wqe z*{$v~z-qeB+;*1NIxFk?FE$KZZ5jl)b-Tk`@ANl1{Vjcg<{p1@udk)g*V^xI>kqZN zLY+gSo$ird*U(^3xBKIg#{cw$qnL%KA(OcTxRil0NN5%XGfTs<$XPleP01x`MRcu{ zsT9(rJd&DEG0E9hjllk)**jE!E`(~m3<9f~qZBgbe7Z^qZCy`urpz`0^b*m_WB82V+!YzmKtrxP-X$TWCzEMTqp7?2aiWkMA@AW9}A z$3-PXAI(fp&Pa&QNQgzHCc=~A;-ikHC&Y0af8@bu%U}L9_wMg!KKs+m+wW&ye;0ZAhsewKGcVrHy?j6W z5<1Sm{ylX5{I|1Del>pg-Pq3aQ2)H6KV>ziV>Z8Cs|%3sc6U z@|i>~6??d2X?zlpP0X>h_!uzM1Ga~R6dM(P93pvmYEoK!94ajVpOKUTfb7#>5MeNj zfTyBUaj=ZclteKOb6P5{*2pgCCAUsm+b$P&R2MZ=IP%r3s)~|@hp$(^{>Qn`ew=yx z10#W8~HQ|IpIh%iqtxdcW}c{p^cxW)FTd{qW21-s|x0vys*Np2+$@DAMZ= zI$hrGLBDe-2&`v##OWOy7?~R!TLSde6PWD{&O3pY{4-r6OPztaCN~gLxUP5XdWY|7 zo9}X~7gABvAY?#D4Fl)uKM1L}ytcQZwiiT%b9efHma2f3ng%a54_<+U1oCTdZFjH{ z2x$NkQY#SB@MPQYRJ#`vQupX$r#sZq?flrn>mz#oe^*-0O_n(frB>Pbd_$>CX_T^z zAc9C((7q>px|Br{Qn3s?9Fq~B5*w8mb1Wl12EZ8da2J)7L+^tnCm>UkUJMVtK`}zB=x8H2N`t91mmrD=cEZ=)R zw{?GFetl#-;`4^QZlA~PA07^Ry`f?M$Z&8hI59UewHz2<@P%i+;rZe4?9k|pdt!NL zY|iPOXm^KO2g3DE-<>XRO^5G#tNUup;I-DFtF41qng%WdYjj?WZgBeA`a<19qrIN7K5w|!JKi6d><>)!2P1=HvmTIw z`9ec|&X27m{+bELAt3|H#H4#1Bc}8)8L1c5N%7I?iSe092}C%IgGY1FNLnV04$qL_(H0h^NF}^j zU}(DFs5@(~$X1>yw6ynoB9FgX`SR}f7nZUybd*8Qpz3w)b-8 z(HHYizKT5jY;x}<;I66t7qbuFP3#ABVJzR@;x zt#$Bf^T4G>*M-Kuiw*r3n_SgR{g;|u0KKlZ4_)u@-t6+;?hQ5#hP!=JPXAO-aB^^T z-ZQ=8o!|B??z@*C`Zo@K`j`Ln=dy?6%y_<4ldY3DjB=fv2MGyq7Z8$w0qu^;BC*LB zsM#+X4*ViBB_5m;Q0YK0DY3^PAw?fciH}K%i%E<*p8P>biLpRM39(Ti4M(RYbFdfz z5z9owiLg{A60RoWviXctW@SxTR%=yWO_{w|&p%&&I? z@8;k9VfNWK;}71A?!Fq`eKB$GEl|7RB6XF9!8O|Fslq0tTy1%|>+ zu26lCzoyfBt7G_PyZbsMBoG2z7aLtw4Sm&({on)$>2mYHl~$-A5WxQ}XW&j>sMS5u z?E~*Q)fbAmCzgCO8@|Oo@A5tO%Hx5^Mt7g6x{? zd%ya--CzB%^VOgBzy4wO>+g2I_`~MwZA%tHy4f;tyM3@0e5o6PuBQG#``}2wf5H=*^o~vi#v`MV#i_-O>DB$I_50zCC!zTb z&w%SAcl~t}j)7qXha#k)qzs&bL(+?B1{vL=VCqCPsJ(*_s<$^tnJOV&#-o6vS z&NfI3pxP&8kxfxx66G2BCOHdyRmvetI3xv+f=9yvUwxQxOiPaAQP46j`TxG=5ucfg zMWm)D#Q>%f(y>AY4xN#JNsp(Y(s*Q)kd6UIHWAK*O1uzkDw;t=5K-wQ3{1o%s)ZEr z@v^mo0=o)&_+}76yDkFLOR{tlyIy9~%Z)0LO(!>N#Cio!E#?TBB!iR#z6BtbM#2)Y z@M1PWD}jo*a!tw{6Ex3gQ1J8;Hnh)+PMW1XEF05FpoN?|u~E*Iu?b=tRw@2`W@8#Q3wJojfRDn=V|X;$ZM#|zglK4 z&sCKd+PiytS6}>k_nUv-_~OTvH@{zb^X>Ah-_1Pwa&qq#2$7>(PeU7zhv&AvGaJKG ztKOM)-~9G)WOZO;ir7y!iOYwh=T42^ULCfhvYZ9`+gn)>{AItJ?6`WicWTb!h*5(1RGSU;A=^vSKjm->ujH{CZhG&BWK_lTPM06>a3iQLLipC?7K!%c@7#A0H1OR+W zY)pDwEHvAg7?%(W5m#bNGzbj<_>pPJ;I@RAC;<7Gv=kl&&B3C{nQ&A}5(}Ssu0U6R zArDyX`Mi@>QL#xLoS5GK+kf2r^*^n@`)>8^dmyAGNJU>w?7bLSe+2!ztlam^Yytgv zrd9#r_!o9OQ_HT<1W-}efWKqF-`ekMbNM@m$GU@uDsqpt436CC_5capY3*t3>}zoj zwD)`42SaTGp_X1>OTWL%I|)?O?jCRK_22ID)O36Rc#wm;E&~Yx)&j)dIs`r4>hje( z{SAGgW*2zdaJzf*P(`zS|E?nU_*@{eG`hGxzJ52f@nmRj$2sWj?CSc+S0B;qfApFf z@mZy86$@{aFl`E+RmL>}^b)g-GLBZnQ1Yn)I#$ZW3u!nUJQbcCO++LSGt)8>jTB-<#7UIx!6dawJ$irt| zE!KBl%!2XXA_lK6?2j4m*4*R$+!RX=kQPj$p}?4Dbjsx)@Ar-M z4Ucs84Yzmob#(M}clY=94fYRuU7irIo&jI)px+&w912alyyIO1!8Ye`OZRY7x4WUs zUDx5NX>;9bbKPzqs_htRa)Nw3(AFR58VvQg$NIhFF8`!wB;pOv`X^^YlQW^I*>Ge& zGQYI2w!XZ5Z+7>|*wXg!u-Dz&^%1fDD)b6?Tw(@ML_@22WQ~Agkh07Qjz!6{D%nOE zQzu~<6 z7J*O0FoE&FDO6V}j^Q|gi z*#=pbL2lJajVggnFEc|W^fHrzXHkiCfTMUcIiF&bbD*Z;CWS>Kc9@ki0Xro=HYxfz z2@SKVL=I@?QIe$m%WJ-n*HoQ%`)qc3mb|JYySKM%{ovj9SASZ0`+n)w zxAQN*nLYUR%#$x?pME{M^TIQ;*&CSY9u9YVC!L{4@5p@r*n(?(WiYZew75UGc+WMr zKd^XjaOI(E>9K41k!$f`-^^~;=t}eO^lj&GeXqaWH|ZQ(>I%-6pS$jG=JJv)s_f=W|j!I&Q# zeKaBVSV~+}MpA4>Qd~-0G+=vFYBC)O&yx#omDyV^<~Lr*X{gGpt;jiTk(62$1pZ#I+)$bNweLMI3H?s%70{WSL^hId%iF<0JH!$7popAc6x`Q*lqYM4v#evDy z!N~UDJR}|T_9w7xe`-|K7a4>Y-ecmnl3{`#IkV_&cZ;;u1p zXQwaX49yKpt$F|i&TWh=ZjCK(g;%x!y@xg*c;+{qgToM8e0=2f5xxE=wO#>_3HY6W zZk2PbQVxfN#APHgad5MYo1+nBDFr4OOUWj(h?&q*dKQsKM&sZqWHg+J%pf0nA1)&W zl^PFAjLm=s@EDL#rzgZF$3S(M!241Uy$_xg2d*c^97m@nvyku-rJ%VytM5`lceTS= zo!3^GbKWMYuq&76BA>ngyGLJrxA*Sb{deDPzxnO<%U^B1`qldLuV#0jj?HiQMyEZY ziQ&;H&)AG_av>O54$Z8M&To&b?1xtG1()`ND|bU{4?}B@0&9ddk#8iutouz>`Ml>r~HZ{kp=Gk;&lUk&bam?<`~3wa9zd8*79=o0*97oS8+9Brcyvx3ZV%&DW8IbrG9!?Q4dfHo*K`mq6ADl z$ld{p0rmnhf`fnWZ)4J7E#6`0GQ;`Z~`V77@tAr zG07mFGD*TfBsG6@fVSYpHDyhJiPnDzqAX2 zlsmHKp5Jya?hh^A8(MqfS%2o)d^x=N(zE%(z46?=@nUe}+0fdvq4np3z*e6Pt{x1m zJnEkZY<7QW<&k^!@xc7O6Q`kk5( zkAM2vpx69VINP8A5;7_IAe%rQE}J4D(*SYVz~HZ!$hagH5e0lf%*25skA~+lh+H~R z$foibkbZy{97+h%4=Np65t*6*%{C?-vQ~W5(bz-%q=1w>E-F3-h$;%65GN#}^OXE6 z1*ZD5S&ijcjTQE)Tv=6tA>i}wy!>kY?fbcBzll8ha{A%BsRuwm&;3jLkbY*?hvv73 z79dt1T7BZ)cs9K8;y?5=1oX4{d~oex2%N7!A6PvYT75dW{KPeX&$Vz5=m$t{X!+sk zipyLM+jina*Z3^-j}G)R2kB>cVRvwPqjz-P8G!TyV64M8(cv9$_d-+KUEXo0f1<}f z;ryVVk;q_p?odBF-sMC6tU~(nZ9E!Yx!*e+INU7gBX@m7um5SK<@9*INnum)vQz?) zM5EFY&}j)YRGJyY5uLceC{gn%JQ7mDA}CmRa1_z;5++f|Bud#-5tGa%p?MS(mxAJe z1$EGDjfjlTF7GkaVsAF-5-j@~|l?v5r9#4#kLMFt?Nazx^psv`|S)SE% zKHGW0ej{IYqsTZL^gVm`^}{dU@4oumjptvkAAGU)^z+4g&!^Y#jxTP67uLhe+hePD z0ceeFJsI117T$R|zWWjk?@$r%&Wn-V=ObGO;Cy8Jd1&)sbo1%R`jg=Dz2M5d(T&Gr zTTjQziFrn6JfqV?p{aq;#9(k@ zAQ*P}$K9cE@5rQYWWpPo@QzIeCn6(L^J5EZldC(E>-*Ci_ol#GZ9SOWc{H(c-{%jy zdp>g4e+j*YT`B=Z%EZc8Sgnw3Q?YWiJit@{uIw7XT6`De!m|Ohhm%l`&B?zb}4iy^{{g-wV zX$diG0-TCY2l}VtVL~RJ4N{EER2(9OgvV;1h(nVK7#b-@D`gub zEVY0kW|967L~xL;969C zGgR>czfE0F=H ziCAPF9Z$t0$e0WPlLU3qM5d8Y=@bl%fXqOoC8j3CB*z|4Kdb};+?A0Sg@Y%{?!Nm_4~e!$ARqw z|IUlx_OtQ*SM}|EM!l)BuF<=F5W4?a@b25--s|B0%iu2X_s602`=RCiz|yvVX~(y; z>s{Opu53?l?96QM&u;BcZS0M#?uHiDM&{Q;3md_;{lM1Kz|ITb&cW~&;J^bn^huum zd?p;{CdcwET8mnwR|s&3G-PT#9+phQ!Ho(YfH65Aa61eH1r4-2JQHe;$0A9%bTNk} z;ZTKaGJ}XDpwjqsJP;B{#({ExYv7UTh}4ASgyi~@8{*5Pr z?U%mYH@?4!=P7_>|Hk9s_H*Cnb3de|r@pmEK5*OsH$M#kU9CUxgL^ig`hiqHfVlUn z!!v5PJ918(?3`K++IG(Cjcq)nQ!Nrck95tbubL{v;MemWV*}Q^O3tgqSya_SG}pR z5}Vec6WNpk0wN8a7EgjFvv6=5)PkF@5m2~9n3RS#il`okvqU55YZCyHBUUJKTS< z@c7k$e>6YaQF!v?(Ck{|;p>^l?`9spiQIoVbN9vU-qYFLhrrQh*LP;tz=*v!vAQ?6 zwY#~0ck}N4#_sOw_TIwA&iv};?CSd5%Es)*?)1*%>ATOT?mnB?dlue17~g#s-hS*4 zPrLhiKXTW9vCQ5#q!BYjG?apcGfA1*8eV}>l&3%J->&4?)O@Q(Xi)If5|&oRv8qKm zI#G_6pQU0uG@N`rx4$7~f_Eg-9fbQRQO9#9i0DL(o`Kh-0j{1OdIGf0^xCD$b97^DmyxB&}O2$)(a*RGS=wGxv`aJaBhVo(V+Ql1uiNF}tY#W{L$ zfkkfDip3lXhm01|uqqzKDCYvRsQD#;DLHf$JcC8Sn>C_5i^^eAX6dC_I%$?c2F~qz znN=&*OV|cE&#V&Z<$MW;Ld;CVBT@;7RPX^z3ci9zBB9c#Xqc2kG0Gqq14s!lQYGO4 z29t2e;G9jxfp4T>GvUdxsI+(v1;?WkIWz(dnq7h@j!wu-ON>j7JD!mo4@-`NCB~*F zLbFS$aWUyhP(?v{d>k$#RZPJasRS2t)MZA=DT~V4(hynSo4xyX>fYPw2X7|sy$bnyJ-IkMx#XK!4a{wff&e$S22T9b zOQG4dv6c5HvsW&M*LEV?52kk>PVPPe4mfk~`7D6Fy+^aV_vb;l+}xer zzB{-3Xkq96$V8;8!{zY?$CoyywjRvvJ(}KsHoE(41bFM+7vcTqBfAHot;fNQhyIO+ zKdTAH*~!s7t4=H7D1;0GG97Ri7M3hxl8kb`R?MK|V1UL!x}iUu)(0m*GjbtY$RvxH z1UaA1XOg&dJd1<{G?kGU4IGL~#q$|tHjRKmBtbn`NJw~U0!YAN&>GwLbPy5ZqEh0a zg8ad_h)zR&u!liP0l&H zT*IDVWMyk+@5#*F#~_r1cb<;z9*pfn;(=7O{TMJCP>yf?L4RoSBX@m7umAKj=g|_I z&MJp0yC|r10z8=jOO`T8St`Cs%3$JQ6l9u`O|r;2IclK-xE`CN6SJipvYbT#p-lqP zXOQ)fu(*t5SYk8_hY&LGVkSta2{=R&2yk37Dl;`9>2QTR5}KEUye~B#%7##>N$^AO zON)!)pb#Z8PTOf)O_9;TCwE^vx3jgo{rI!h`>$3WzXrDW@b%o@!R+?^xy}9Q)$OU3 zjp?PeskxQ$`IX7#?dg@BsilpHg_Vi9<;dcCWNBj_pwZ&m^!&=i%)yMvpJbtnL=-KvzCtLR(?%ch*wY#^qcX#{VgPpq% z=4R$SJ+6sBaC38e>;99Chfmh-Jzc!_Y~lXF!o%l_4`0kbcs9HLWOnxv@a3uP2Z8XU zyRYXXcm0>qYuxYAis*cDrih9$NEkqbSsHGRmY1dFo8)Y>66&3$Q*hN1rXE5LL6%OE z4Zf=4*j4OoKwm~do}O!x(v>`D{iA|IQgX=xIxaRQ>carIKu5pw#-m3*!NF6+3>*QO zcJ#3N>zBXy1wb!05k)~~fY8ICpe1aAfPy~UzniKRkmVdAo0!QaWs2!IAsx#;?4-)T zBiLjVmxdNIae67!rr|@|7^%4y727Ch+oAbEWsXs9(@FFSKJ-yFVyi}EQH#vV!$kpR zMV?VqY?YT}sk05x%#MPM%hK}lEb?6NU0P8ww3Q>1ibo1Lq#T2+$fhZ@svHJc4xlfs z)DDgYg-tKfNLU6r8&H-;%2tZlEHW04NW;QY7zC6~!Ui7GJ( z90yN{g{MGMlZVS~qCgByO^i*5jZTb?%1laP<55xyE?dN`DzpwdI~LYF;`odkqBc1M0=TN9)D9}3`ZfNYfdj87QiVHU?E?hfx=2CG< zbzZ@FyZu70<9v2bg~?c~5EscsXLBsKt1fgkH1xE0HPqaxzj?dn^7YFVRh6ZuOC0$p z9C;O|$}7q$&YV1bw&$o{B@HikL*BjH3`xX!uMv1qak( zkns$1flkWRNV!T8i%-Kzxnv+4A%ld0ryOEc0wOh@MjdnVW)SjYj_k=jyvQW9%<_sxLS4nN@exU3m0#lJAbY0 z%;n;eOZf$7&E^VwR;Ar`#-uM*Nlxiir8d*;i&f5+wvLvzTbHlhymIY&)s+ip&XpCF z6y@ZV<`-98oT_Lb2xJD_|&=SNTC_|U9WNZ>1o&ryfL!~AHvJx{0QWiCzw4NpeH;D_D^MtN9LTzUfJeZb&Jaj@k0G&yoiKx2-y`{;hpmQ zjk(DEN6%J3CbG0TJ-;|UJv%Z!9UPnVhbDZXuqPCD2S$f{BfvcVkv`|Zol7_Bs;V0= zUTQjjq5jO-+odHn1qIa>^W~hZt2y>+lfFVNtu(1BvP>_4;xVOFW{Q1HD<0otP zAFtehvUvBw()RAs`r6{k{M6)_ci`jmuKy+U8uJaRp+<9XJ_W56(+(@RxY=61T_=Pn zOD8d^geoyh%A=@645N~7*9z@gK46{?gqE%4IJ8`YoF(Vcpjs~;^wf(*LPbUWoQ=2Nvox{OVfb3i7-1kjadloXmJ`6g+hNm6W+71`B=R%M<^nQv2P8RRCF z$f}isqeUwLCk~@L+aS%+3JT4#k}Or0PNd{hlNRa^A$v6xGl0zj5nG`G{4W9{>s7Y7^1&_jk>d^4e zN>3(V z`DY5vMcMjnvr4ZJ(n%O1CWDAfN2VucrX{5(#wNubPmDPRMbZRli4D|t0BYZQoPtbO zQ!wRLOUz9&U7p&m;o2^5>p-}n*;!`KE>w#1 z$w@NrhG1n~OIaK08y*yVfw@XD1sUT0z%Mo$pBoY;YAfYnpI1Cw$ z0RR)wa6$$_#2~SW z7?p@6{1TMeh}_B@3sOT;#D83q=R z4b>uM+NC^;l$WhM)Qm=|=do-eez96oq7hknOc5SWLLg{ZG!=_xlL>N}MlY=kOR-F4e}RI>gL8IX_3n zFHnh28{{XnQj36{Cl#F0NX}|Sc>=Z!kEbILEG(LdMe`_xY@NI~+hkG892SGaqRY4F zvki)ZEPaknAs6u3Og5jvWRb{)c5{1O&4k~5cWw6m>df9kcyBheHyd0E4*2`KK62Op zB6>}RJUSswL_^EjL};^YH5<^BRmrhyL^f!yO>WhSR3Zorv|T&h1MLSTrFiQL@Yj}|>6g&x; z7LPeRrX)mxc#4Ll5RfoLYEo)^EQqZPG{P$4Uo5X|@ALHr=6iw*9i9mgM(dou8|{PF z+6HU8eI=)=&03RDAv0*@c8eh=$5K?BTTyxH=FRG+`kK1iH|lO*b9S{1^>y67dAX$I zgu!Ua&vO7*6>_;;HY>|+IbV6U`eMb6>lgc-O-(hIu9TP5-?&(FxuUK1YTNCLt#>XL z*$q;WNFi4m^hSfus8Q>MLUEqMe!c2!)yWg*OHW)rb>c!%{%^nj`rrQT-+m5*zpJO4 zLBL9RbP^hl%S@x=GDJ))hm4|OG7QjcK1e&@cm#~cAjx1@8Cq8JiPS-u5YQ6gq5gpg+FL=;F3km(7) zu&@*m3zFlG0eZ)0X5f$+u+)Tv7^pE37n_+a71mt4)jK@dKf2WAoo#cEH@ZT%yN0i~ z4c=_`TyGi3c9dH5CcRQ>)~j;t#-hTU($a$JOBJ_kuQt}#+`N9dvHoVCv&H3Xy>;zk zenGxQXDH0gHfz)ZHcKWE6&2=QxKMtny7Kz9%AT%QtTn0NsN&BA3^_l~Bwg zqcc*#xC%>(BO+3WnJH=k-6Z1zRAXS%`6ReeNUkn0TrRa%ov>agvN-f&J=Cy*C1#OW zBorw#4eFbek${J%AX6dlONl#9LS_KVgvtY=U<6&w2 zNBdu!a146XT!8v;6_03Fv2qQ9T)n`q;agQg3!pE(M6cwkgfx(P>m)3jisR4=96DaM zj+dhsX6r=RT49!ks~0oXLb@DkcMo-_z#-Eaw6kb_4?%Ge;$0MLa2P$Z;dI3y$u2V>yi3@nU}O$YQPqGPlox{!{Q zaly}`S(QA8QB;}(xLx%Dz49!|LMxyzWwuda)5!qR0A$k2xF)seuufiN(+UAYN?8OY zkDw9KjdGqr$}uYV4wF(PWC|HXy_8pERiDf?lsXIrHjPoqGpPlD#EP=?1$M1XFSTf- zR;`3dM#GZh8DuP4PZ8vL_cB9U$*Ory$4|F#5x7Amd6*k?tc<0J_ zfL?W1&o$ksDz=-IGMQ8=1A_o~X?1#)3WRLS$%2AHdzOkX;L|8lHtVz3umAO5|MllE z`1kiXWdb&jPQ)NmK;8|Yi${Y>8TmAfMJccwJ_XiZBxYz`S4l?-X-cv1qi6>03zPh*cA!NHMP*?F~HgRLH@{b^%A)X21D zFnq51#+fsxFIAtbt-0DzU(?!rr?a)8t@%!STSHsZo$mIgy4tJlO*PKeI~`3mS1+C` zE^wSE$}c-vQhMSmJM__bvNC*SC|d@lDym!N3L0=5;15J7PF%4bZblNN0j=AUVp9kDTQnigNR3@ zkdbM83QA1JfUHMC$K-$!-l))u*&-HM%AxS-I4%jP02#D`2Vw*j2P30k@MMs=B;#Po z95NbQH%VE1QYN1WQ?oGHGTO~j^PP&EnzN3&bGelTM!QPD#3Dc%uHw^l5~hkrRd6W+ z3WkJ)hHI#~P<+hcGGxg6pfxhFQE^86PwVZv^Cx@is=IGhb=6#Kzh2o_d-+0fj#;hH zDisEe+NjkSv>J^{k!{qM7v!GJ&&}4TWK6n(#k_RpbYDlyNA&vN(anBP#Ulx+nFa~f zEN7VHOpAhPl(UR7mPy40;Gq)Jr985XPti$Pb~OipS)P^$04&!a0_f$?3BeVElp*Jl zrEH=`K-P-LSO~p7`G8(A$BzQ3gAfoO8}*^7SJcs?fTo006dsvOMx~0VC?yAEA4nAk zZxE8Te4>(zld!N{8X9EuL}VI1GnJf~$|fNowxOa`0*aDLl(MiACSEIM<`_gJIlAI( zL#|bo1Fdk>6j(KRCI!GSy__#%5d{pqK>-L2s_Dvxc5D>rB`gJ(41Q}RIPz&A4^oTR z7PZ8p7CQ8jLW=^LzO*PE25GKQX4i@BT1mD6YH{xX?kVHwMJ200G^Eh;Th$Rrw-LbF;3C{92p zh*(q+m&zbxGBc9WlA@Cixhpp6NK(wP#Hb^&$38iJ{9L6%Nux4Y47OY<$;-7X6>_s)b-nWJ<%-iM^X#=(&b8dCzEV+otE#N|Mpb!n zPJVV4Ahm+L!kipOR<_MzHX99Eht1%y>hp8V2CafZ!9IKb^k;%z%2HVLkl*)Nn>u9oLrs{r!nlhANPN*tet*DD0j=2>Dkke{5-lna>* z5;`+IAvGZ?IRR=Y7aM&vKI&*f)X}8qqX{ubqL2KNFB08sceWj>r8_w1nO<+}?ys-E z)!uriv!k)Er#r&N?^XIOgtGHTz=2F?IOJ${%CkoD;$g!Cn*~VPEp*YvBR)|R?%!w04ZEYX9>mz#o^%IWcBQ~8JL?S9WgF{3J zC}E4AFI%)3*W54ekpfumC5#0>!&|812m(FzFIM;UlTy=@#R9+Uyt4j(B zi-8kn+p^5Yf^2hfj;SQuP?m2uD8*C~=FG{W{*Km<-1WbyoBfcIOXA@(^kNF&E~AWL zlF^J(hE@zRZl*@cQHa=5Azdz@>t!5^f^XCCtxB$4%|Bd|E3!i!M|nmWS0!RX9UFvX zjgX9hC4X`_w+LQ|vC$+{Iu#3xi;4Qh2N;VwO2NRGLsBy5(9z<;ReJe0UZaBhD}CFxg;5v0_~bD1#rl+syJpP$F36=TI8p4^`&{{;%t4c zNmXFi<(L#%dZ|Ul*GaibAp_8kT_>@rMOhlCbj_v_=_PEPh-Q$`&2l#QK_Vtm#wDAT z+$_Ba@MM8mT40tr^kM_FvVd*VLap+PvowV^b&g49Q1A^3fkh)$iJ4?9oJv3|C43Ml zX#ge}7!eZ(G9!3$EFFi?N(FgVV?mZN+pNnrYg8f@fGeGxV^#^20y>9=#UfHLup}xD z&Ijlv;i!cSE)gN5WGc9Lt&nJw(=V19E|+DWJ7K+jv833pC1VlkNwG9SCO}G?R;(5= zm_#I(iZiGMAiRpXG!_j<#vuTq!BgU3i81L=$ETR2*qDUqBc{CE-jS)n$z|90!cb&= zWa(aQLrZ&0Lw|Q`e^*;iS4(HhoeQT+%?hbOEHq0+Mv2g_l;vnuW~EFj7Flej%hl)3 zo;;z~D0N!7QLj2t=%~MO5yVidPA%pz0Z^STExcNNrsi7Z)yh+qMUG3SPMmevO0&%Q zMjZ&cIeKlbQJ-(rpZ>qtd#@)+*6Y9z#KpBUcV^mFS9h1US(TOEdta61O;>yGz4v~m z$KAP}0G0#@5Clk&OHvPt*e8*c_^_+chGHe{Zb(!F8TwPm(3gGhZp4P3v;_9$PDai| zRd$)otaHBeJKuLqy|lM9eY7!mu(8yt6jRB_U;oWteMivi&wl+YiN%1-1HopI7#PX> zJ0FI89SjPUOto2ZDy|No)KOV4ERaJ?8CRJc@EyFqRKCYRYoMqfD4NM(bSCWO!oy*e zj2mPefcoxyeSWyGK2=?wsNk81zxz?Z*CCQwFY!dcscZ~Ln#!Y=Op9cWL{gb#FzTho zKk9knCB^r3JnRIn_XqD140-zcv(JD2XRm+qCvX1n&wu!*|LT*ke|CLw_U!uX`R&>B zo3rcl!{eRx;j(Ml!2io_s zr+o}dKKu0Z-~ZL0{pjbv{ujUc^I!aT|LR9S{`n_2XP-Yi{p#)v?4Mj6-tMo1p|vD1 zMUJWnY*}Plx(J?11ffd&^l0;Bb7`zu&I8pm#9F~PT$#GvU1=2zohEP?8m$-iR;RA^ z7LV6wwkL-6Cfi%1&2d|qEEvO zDpS;$yhQ1qdrp}GcmXU^$*#^v-%N0Q?{~iU_`!$azK-xf*M}c|Th#0E!w<8Gfm{N} z^Amt5OfJgh;%G8RWW0$iV3Gieq|} z(ivD`vJMZI6})D0HJh(_y(xvd&AA$$S4aRkWzQ!Pn|Z13NIHiCL*~^DqY*e2&LqQz z#Np`(I4c2(aY#H98;lJ0g?c)1C?-<~FmriTuvEIB(Y8#g3DB4eoAaBS6L015;`rI^`P$OF?O2UQZE<#LX=Z$V zc4A|GdShvRePMncz*enVaBM}9F$@(rd~<&E?sWI7Pw(2*!stk=)ov~?FN_Q~$Hs;i z=BLL;T8(niR-~qDH;Ycan9m!cW2pc3-~KP(kyx*v{P=f893rzJ9!(Ib2tfBxUuS&K zN5d(ZLQR<~fExmSO^a6|H6YuZsOh*S2!Co(|BNYJ30?>;`7BiN&e0m66MeTx*M`~uu0mw^Y)HiuG!)5%{gJ-T)Syp5QYM2I6|QEA6`gK5q6M^uM_6El zdONexfpn-BJfr}yAu)^1$!Hu7^^kGDf`m(Ks?4RvEOMcytu&pJ+4}Z`O9QvMuY=A; z^CDK&8HY!?Ohjk0^}IObNREKZ1f-Bza579T21on7bhDl(NH$S#)Lwt}qo4iyFMj$b zfANz)`j z<3p`#X?DE5u{^UnH#IjpJl?1@U2_D`m#a@y+^JUC5}C1P<@W68EkylhW4$Ca$!0?) zm$CSq33krw9|T|kP?m>YM8*pjVPIP(OaV1SRAX~_33pYpsFGfv9hC%T0&thXdzZ|kXo|3CilegBh({k>1#d-vV@wnE?QdgM(CrNVu|-VP)-z$0-s7t6&5s7zGE zQXG~9IFSzadUL#ePeQ#Nk-ly;9pKOyU^5Di@@PsXQ!16#7zlu3MI(n@d88y2RH~rR zWm7O&%&UWkrUfkRbv{zO)fNs*dGk&bIG#YFeg%)!EpntNI|8cWNsUMsT*%q0Vf!Colr zVz`|M2(!_>bQS zbMX5={KDih5l<1BXd>8`gCZQB@z$C-3?RB|$TeFo>I_e$88nF`!`&T^Vu60(9YbM1 zmJZ&xr}tVsq{98lKo6D-$au^ZGgSiz&b7{>1&J6g%C_g)`_NR_1)h=47(gA6m`0}? zt~6Y;f%^cQf>hYgdkK}`*=hf$o$;k3j{GLRF7XK)IIfFp)G1g1dg zTq2Q9XK4g2%G}oc_{GuI=!m9kEGOawX=ni4^t@vOd8<@w#Zs|cErGo`RK2=7 zzP`D*y1IIcPjAudzk2)W55Fjgm`bLYOf(hjBY-nPWWbmY^hKj{K=s-MxnVLYnHEvc z2K974N(TBN;Pr(4UZcHlv+QGVq#p|O(y4$+#A;Gz*uaM@&gRgHN=}#L5*Va|J}Mms z(A6;5ynrcaEYGILi}G~c9&u$R69d!-zWRP105VuuB_Irn@GPqe^772$i>EKY{`&Wh zc8<~D?fGFUh!*L2p06VTQ@Hb`QEgrQ*w5WN(QDuz=!?`1p0NZRH;_=wyM<0Dt)a#w^ zfA7(U?*)544*9y?|E8tm?|g5d_X(K|=aK`l!5-kq^Js$3Mvz2+0|Y`sBAEup1xp6e zcpw|`L*YIzj4IKOXF_17b1}eRR65|rhLH(Z%+*bLxGayAy^;}tmxhW)(GcidLS?eD zw@8Xq488#9i_Ut5E9oo+g`vT25sB1HfL;Q?87>z^V*M-})|rf##VO-ujmc|_LgkoT zTxa2;f>l)#P*Bm}Pv2uCtBmMiBq4ozdJ5Qij0A_FHviEtmdV=|jFB}$?J z_2o>FsTdrvgSJX3R3|c6fVzetmO(d3jndyDJMbx7QahU*5jFyM1({rhUffJgOoXE8$6W)x{lS4iJd&p3u$VzbprF%@(%f)kwB4vzO0~RIx0LCz#?8sj z;@FTRi8Rg2n&uW=hGlHq%)9w=rJ`!8Vd@3fbxVb!Ypt&?{NI1~e|<-0y?*-RuWX5A z&@>bsjE8&-lGJ%z7YU8UI2=d|<27Y4IF*6PYy?P1puY!AN1$jw3I)8QY3R z#SfRJKD|AEeRKNe`Q_Eo&Qz;{ERd>c)bHmNyYN=)GElXM(Z+v-murOS8bX}8GT~RCL zLaE>sETfpWD#b#(Q7z_eQ&UO>W2ojHY%ILGx_HZ7zlCb{ZzLiiU{OcNxDw*^ZIm&c zhczCtWL)PFk%VX@#-mAzNU3B7*aeLNc!qfCfjsQWsKMkUEFqz3@K;-aDLD4v!}q^g zZT$ZCf2Z@|M^Rr#z?=2*0`K2>=X()<7n_R$^h$^O7&xqu;M*f!^Bpqj@L8RPfPbM< zX&Fz5NSK4eM0yZS1p#zXa2!w>KraO_6^EE&&J}^LL9`3fNLh9yvZQg%f@%r47h2Du zG70fmO6M?>#{f?{0-hIfE*FOYy&#c_Mzo7kNhM7V1|O(12zaH&qNdlFn{_o>qB3MA zqEKm#PODg~AR#4_zpsyq00XK^l*&_zKvavmKtfbDBp`7ed?}3)nHZ0Gfzt(3k{MiK za8sd79&se1Wboi)1O6Ug&trg{>4-O*!RBIslw>Lc9I;%q4^Q~{T+pE6c_CA?y-r33 zhgMCtqSG`Sg(7|iO?s7GSrjm{g2jtsX0#*?moxxi5|xb)b^{aycq~z{!T^I#SOPg- zDYo-gLzCxf#p!l+vR!W$owQFFa@k^FnJlsUNjTy=e$DPIfFqZEGeO}qLghH#CB1gZrMyO;Vp3@Ngx{% z4agkz7Oyq7?K(|E9kKPL(fZ6teR8BRR4$A)>uXDMJL@Ye3v)w_Dj1*VCdZeTW)Jqa zP7b#2Zan&WdUG~AHBqgU8m(HRQ3Vi{FW9AG(aAgYYH5CY^7vpMu-Wt5%jb93w^wJ! z2U~|*t6R%6j%89bE32w*>4xcLzsicju$-o8<+5v&zkmf4rn}HA8TCqc*dJXI7Y zE80psFCxigz{g`rV4i?UvUsnEQ%z$h%Fei*9^YM^y*l1{dc5`J-PzYKu0DTuwmLgGR4a|OYoo0yP|-3_-p3E){oVatkKg^l zH|X{Km{&tM0z?#e2Rs~8i3AIWXvkYVF&V%)DV+fzlmVwirw6F?02=e7i9r&M0H_0B z#2`@-iz_(bz_bJ&BLEt`@I_lBiYnX8E0#py=>Q2u6mSVVt}+Zenz)%%aEbClZXKNN;P-u}%t6ojBq)cT?8sqAm;>CKQC5^tH zub>O2*ecsR4$vz~!(p9A!EsF>U5&3=azPgji7guPP{nSQv?BNfjnkN1Y_PYl`%xx3 zkO=i6i2#+2Xf$kaIXn@B!@Wqf4_vi?1T7|6)^JC}H4be$Let@aNyXw`*0V}w!L{&6 zOn}4S29{OA@!BU5wtzxmpA4KSnFP>fii9PTGh_AhqusgDAs0t$6gE*QY%I?K3wV08 zy|uQmxw0@nIl8+%=Nih)gP*gz{s;XF1<-EujM5(F+ugbJ&+LgqSs@twtOjEIK6KFJra$Bpe>->FxYD6B|f{{W%~WKyF#si`Rm}P_V}nj}#D(kU=MbukA>f#vo0bZ{`Ia zO#n^d0GZR-Z%Ys(5e1KV;-OHkO64UKNelw`2Tv`DG(-%D$K-J3Xm@jYe6)ZgH5{8P z7k1W`jt(|~glw%Zf?s@TdSYu~y6)N&BSY6``#?MncQ&71pS<+M<8XO#w%w|=8kObw ziH(){#ktw}xtWn>vy#s{B3~5Pk}TL9>+pO5-znI6m~|>fq(+?#;pG=g&^R z2Cnh-(a!ShRI5JGs%$Sz9IP*FEzGVj%+9o%O*dbW_?p1B6rlukP!w9aGUYlAS*nTL zbk$uNAFdT_P39%w6q6W>=A!r77Y+tE0#!KLwX}A43F3SfaB6nFiL}08e>Dz|-Cm2Aj3GoXL9`ksKPs(_t(fqOxI) z%O&H3@4xr%_wK{&-+kwuzRpLn!JeMZhu`Ep{@|VOCkA=|qya+k;#JZ?77ioHe!y28 z91_tOz$yucBrL^d!$h(li}&ZEed(|dj`{KXnxzsRw}lL#K7)lEA?paR=`D|Xg~d!B zRY+LC(jt+TiL5Q+fJPjJ1gA~GaX304U@7Ll3MCThlX4-OhYdC(k!e6vd5tL;Y{_7Y z8e1~ClEDGIF_>IYXMmm3c`Se57t)&?W3ok+G-c9Jz3xIoMFUtm9*t6PNMYf;${P|> zvgEpJG|TyF-l#Z6*;Xq+wJo_~@UBc`;sIahqxfJ?JkSFt2AND0cwvCPG7*2&*8v54 zy@DG^*x@r}127e?b4W?2t0n``i@J}=w?tH@VLBUTG9jH#RCKS^rgy3mo(cPa@y$!5 zEsywr=UCPf4H)p3u)@CM_+pP(=&@gqErEP|+8~S9WygWIv zvAlSCxV1Rlu9r-=U;@KhbG;n@p_3Ad)k92l+y!(S6Jb3s~zrQyyH~?p%WIXmafAcrrkqpOQ z{^1`~@`fq1&63qD7wWDBNUZFrUa{Z2RI?=@8^F2nc`DQUO#upkTfm9d8JL11F@IM& z(2XYsM6cym3Shab5(bahz+2ZTg-R32pok@a3>a*V%f)DDP(~vK2`=lvYw&uQa=8SV zi5LO^HWEOWC19?`v@6!)SYxqO7}2;fQ<tG5(o_T zboX{V@pX3eKIsVf`mj`7XPI0w9Sw(|WF$1`|M30y-~ZsfUSD@G(4UA#Qi-_j(=%}bF1afn%umtE;h=m)5F`dV@I=N ztBvwpIp5T!Dn~UWVWwEvpPHB(YVIse@2yOaR?N{_ez;y5trl9Y?yY*%+~J~^Fy$(& zNTM>&I)-fPQVxRRfk2?AyRYL(UuQ>OM@P7?k4(k$98092L^za7MIwX#kM6b4=j#p! z`=MwglZuxL`J2<@x7_vH%WzZ~SR|4Fx-0>9M1U4BpbpP*W?|qUGgyMc;xg^6@o9_~ z>Eunhcn?w{nUXQD;exjgk`4-J!r;|@hXDwILQE!{i~51^#|L`igWZw74nS^D*pDWIw3q)F)#+4G zf*k>%SK8sAvWmGf=2gR>(iVsC1Vm<{L@Ef*wgPBM#({rP(kNh(cqHnTV}+vWkS{sd zjl~CrTmlfLgr@FR;y#Nu9~bWY&?Xyuz3~?k!3Rc+nC~ ziEI=N@J5wPDP&9oL@MNTfpB%cq0lR@=;w1GlSx*9dDTc)A;I|+HJZl~Boq|!d-KYnED{rt zh)yO-8g9z~z1WIDBgp|CPvjM{Ak&sa%5<)5@|#nQ)8*#zVr#spjk@~Wc;k3$d24!X zeR^zXW%h7qt>RiZ3L|g|fuVZIof{t+u9aDWj6_1wNQC3)k%~J}FOAjnz;kRA)QYWC zEft5ML?qJJ+wO6_^%qtO%4&#>iBHPsUX^DP`lF*Pb%c z@ALKhdQdd;Z~o1{{?5#L{j6QFz52ZlxPf{lueHjKEzv;I3PA8Qip|CRJspW~e=5>P zWI{9?R*00rKvX7@^s3u+A#p#G38+NWm2+i{EGQHZjJnOs6hz+Z4p2Y0ZxQ1dATQm*_K912Xl>`naXV4o~Rge!+6k1!!_3)YXI4B+pbXu9!FlQ=XIH< z((#zDxA)^mANLLPX{rJwVO*8KXEi9IfamJAE@ChbC53F7i^nYl64Nmjil(9=z-YeS zZa9;wR!b*ux$7-@{l;d!el}UNi!#x6)uyWt6|{+}Q&eb+gKHYoG$;{?4fJ+^VL21& zW8n~Ra4b5NXES0pk{;}a2D*quzW@hpDpr?s4V|oMR67s+5#FRTEEE#5k%9mhB}@m7 zKN>NKSVhX!J!`^^<^_#N@<_NKB2|?xD_*6ql1yxmmu?p8XYMedLKRdxPPF}G?WR~o;Tzn^;?Yf`tptDwdP5c6||Uf}5fni}NMxXM6%z9;W||NGx8IDYirJDm^T z^LKsx;Dh(SsW$QO{deJ5KVXJL*awCC07_|O5>E}}0EA?NA{wQ0VKgzA3iT#JzD%q? z3g~N~3r+@zOqfKXJQ}t5bY93B3?RUy#iWZ0QdaSTn9~_As9q$!@?rv(utlOEQI2;l zs4XB|E=HvSGL`~gG~l(Be-QR{FmO!0?>kvk>59pgHLvhj1K2W4sOP1M2VcwHk%N=*SRfdTryxz1+a+hJRvdM$wquM|iqjMA zR-@ExR3}_#J+B=PmG>%6gQu}rBnL%@hO7VaKmPlF`fh~T|N56dtL0S=hhzq~6wWmz zmBj(x%lF-^G&VQT*BR*R%*F@kToeeEO2mO+P^o@6>;v4D9O%RnehG_~6{KmiMU8S* zvTCxHh=CV#*|6@F{6cvwPG!SjoCl-5t9Zd)RVk``a5EtBcz!vnQK#cNaT%SBKB8kMC|y5BE3rcUKPf)|RG6r$(9+L$z`q zjP9hyGdf2O=hf+|HC4^e)ZC@X26)gkM2#X?48t;+P$<+l5P)E>iRXB=I9)GIRo$_o zH9y`S9jVu=#i4p>To<>B*2!pn)3x$A3`c_ujZ9CCTwPwg<)ydi^_$xM<*$C$1}-oT ze0Jc^f}v8f1l;Dm5DiH~jOt?&nPYqxZAK)%%u#-ym8+f## zBI9|sVbC?5Yy&kE0c$0sT)4pG3L+-saSnJ)fU=lmP4j}sMqRNYVJsYWC8TMx;7D2V z;xlUozgjcCJY0HyyneF1bh*EAu)cV@G5d6P{>z))FP|NL@$~r1yVKjFjmv}8>w~qe z+0muZ=HhUDs9>rrX$g$OlT)s`T(cMJ`ITmIXR5hW&yO3TLlY8)k#IH|3JnYf5I8qf z%+EE-%dOI4-JLDl8loaqX zuiONS#F0b*Nel{TLL^f?UEfxg0RJ98_#n{pF_7o~+)exOgAegkh{IyZU^f);@mN$P z6KK32N%+NFM8aY;6wXBZ6Tu!R+7HJA>BvAT;?JdmL^g~;VImt6(3p(H_*~cvccGF7 zm$gL1OU!>>BV8^3`zmv&&%d8Tf zbVbZ_SY)zhvfgfZG3|NTTdypsEI_!5$(3|ZUvwTZIK)+mR#6#ml^R7;reTFjnXK1Y z(geB;tSJ-)_SDN<<0)NY3x=#RIG%}dSlZ+tBT0j;eZA8ec)?HnI$?d@(J?rxu~FRzsH zv!*htOD;?46mF=Jq6qndS*;YC^;)xDYBkFBT4`}%x>|9E+l}>=xuwaG+2O|K+WhYJ z>cn_^e5|!NKlLB}!@vK>?+kiX98F;fLt-6OlqeKQg#;oCU|wg@c+lU|@hCjllZg&^ zarIzrg$8f~QW`jV|ss>ZinUYF3909mUA{vv>7;r}N0xFVeJRS0~ zSBQ8)MgV>T(FMW)L|w$wfV+SD`LDw!C+w8Do+qTiMZQHhOJL%XRbdnw0wyloM zyWca;x#OPkoqK=YU*8&ISJuwX9;-5|>Y1o#&XNUgrE<1^zSjG1(^z5wjXUw%TrG5fJ`LGW^0(}%1Gy>JYlV22Yax#V`#4u~w$pLH*7Qwn?|q!AtVyqx-nHV*|`_Qf+drMt7LI%+fEmOZrx- zSQkSYl)MGogaOW8O>JGP47?V2%{|X|AJrBk1$ozg-d*=YuV0iFyaxP&@1HXTpD#;G z8JrOYoA~FKZcd?HK@T8>=pH;yT$bad4uCIK}$2_wnhR zOUm2$m6#*AM`K0j4~`}#Mon4_baF^~gtj%m{E^p`= zKcBGicQS3UG+%=gX`>nj`mkaS$=T}nfA20;oQ(aMKEa>k)l|Or=+)b1`Kb(HD`9@6 zqbF&_HGX7FhkN1qag*a+1++7KzNRHDHxmZIk$?I>6vS+xD?)HRCI!{m4$d4E<70)D z_|q-VoREOwmVp|RLlrd$5?n=?2vf1ZoWe^(-N?a6BNpF+c-D)N(KCQM4jC_Couo;C zLRiA-kHLdz<0lvIae*{+iL8OuH8qg$V&)P5$9=ccwiN%Nh zh0|~GG%O#-)mn^9mRRk@Ozz^M%?b_7s{6Ez zQ~vEDK9DmG@|(WC5oAJF)*W#TjVf&z1GiBe421v#*_H2&38-El+(1l^5*wyVPvyAg zSLRk8iDuu)upe2o3MI%vWz<}UlbjOz*rG)bR4GamVI_scNW@FQ*f79g&ZoSoP4&rx zl+0a#R20ZmP1Ut73D5^;286F$#aUgp-WRz}vwrR*%5t6O@!g8ZxN+G`tYn~)sdM($Sb z&i2mx-!D7gZPzf~pXbIYC<>MNXWPgbgf4LJSQwN_*fVf=RF- zNrb&WLkQnHe~Q2HCTV{A=^9j-d(o5G;#6zdDiH@Bi0;Hh50Qdljii9`5MTr?&=beY zV7WnYq0-@>Byyn~CqpGBsC!Nt&oWDArXQ9m-6TY@hEh+^2jVh1K4o5}{q7574FzT*$J$at3XlZE(FfjEAh+E5QOe@QZYFr+baB@}<=nbsIghW7TgigO}#)EJR+Y$!_O#Ko)?%9F>C6z@Cn5bOrA z6z?^Ks7%fWZ`V>V<}P3aSbv2@Np+eHPf38a@mXIHyR2M-b_4*X-R7 zzBOjZm<_joMkK^ih>e!N2ujNW;)%wQ<19Xi-Kg1`52Cs6TS%a4c%et6gG0^kW>0t((m9s6CI~to{jH z)>h1`rQBzu-0F81(W^Ww=@<7MU9ln=8uDwA5zqb2wn5N<2bS^5HttJ>|DC)7G(l_` zLz1g`WFQlbX%-(3jp$}`U>-bMH0RoESvO;`2~jE4s`HP3>yV+QgOgwf#PM^Jc?SxZ+O)utqO2py?a89CF3 zRmv{fHaGMDI+`0i^Nf)WBRdZ|-PpZ0hcC^lfl) z@^0v2;%8^(LA*S>JUqYq=-XcYc)(Cdw&aO2OSYuxGy41eY7n5YZt;El^Rq_%PxSB0 zid=FfueeHHmR%|myn8o+XoLqaC1_^`BBc;nS}_{b)2nOm9|Wg^$>1UkrG?D9cYky% zt()aF@M%W*(nU%>bvY_#6D2G_ox#V9SixBcAK64mCU~lq8Yq#4BT(%HII3tJPs$2;Q37e%^Q+A+Y zR{5_1o!qI3tXeZV@>$k#wuqGjT2?Am7CCxNI3*HO{7+3HVn~aY=CH9iEOn)+7P%fQ z!qBCuQa;;X=@0^r_JhZ)>X50SxuV}T9Co#X##s6Etf!@P^yzR5b<9RF2e=+=oZcPT3cKjSejV{y*hxISg!BB0iVVJ_l`cmq6d(c3rAyp%l(I&ie{yknj|{(Kk#B$ zd+T{N^g4NW1lM%)2?(^aadqQ2#37|H)DxNV#?I*=Dny0Q zHJwr7kWmyBe;49o_}%PogbQB-?td-rNDBvD1?|hoWHnrWGpurW53GV>p$Hd;c zBH#KLc+eGRD}p83NVM1=Cs#VJm1p+i#Q}> zb!_!)YhaGP9W;h6QaYTArZ$;TR*)JLakCR00TvSs{?7+DDBrx0yq_b`9bG(iQuv0k zq{bYpkd8rOQ>f>VmDaaH{D@e4O7&2(N(bZ5a5mmCnVIDKUSXh82TRG16eF|2mqVjk zBt^`bcZ1yKmy~>@_xTDA;u(xhP8L=I#Ukz zRlH08RKiPRB9LNY;E__Hxz)+!dG=h}xKwFKq}vaMawaZ3@QL#_q|?12P$>*lr6seF zY392>@?tXk`MoPkiTD0hc{_1^Um73z2DsaGu&6f6c$H}1IWORvmFuBYgN#M5msTq9 zEN|~0HpkRzv_Wf7ZtzarcgDC#R?Fh4lr;ZapT8VjV^+LSva_FZmzD5X-+wK z9QvC!Huu_CbQZOI_;NE?p>bWURjDppCNpM+LqRAjQKCeZR_H|LVBJcg{P!WSr?c%{ znhpPBqvx}roAwmAG7y(GW%TiCc}j$SoG&Ya#`;8UUrF8yInbPf=fkAHR;Ff*CC9ym z@FygL>zR5dhKTavH~m;myM2FQ`2AanC2M#eT#ll~6Z0&{d&WzYj^Vb>*w{SyN#u%8SK!=-NxS8%G=b*-Pgy(%*F4_FyQ^><>uq#^5OCjm~dg@ z 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°u+`aeV(T%^s{2>HDiK; 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 z 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�ADj&|&bB9lx-glnGXu)SUFZ`m? zTo8I$2PH+n*Vp67wiaBpz9qRVeOJqgQIHLv)JY&7SfG!ljQaovo*{M=dexyz;3M@3 zU0anm7kRDiDT@@jQu%wwcadeI>>J2vMCCpu>3)_dCAq3Kws^5TEUBMTeG_V#V>a0v zp`}IHd>5hnX>7rY#1Ae;w$1z2%|CihV6{PZr=#phCUq2Xhj2NmjJ$N@!l^$gnfG;2 zAKM<>ul~b^I}cakDOP?)k};Th>oOc(%Cn+}>v~w{>xrQ7Dl=?%9^Zt1PoAtd**2y{ zUTp7#2l}gub%v*gB+2L-6R4Ug2DUl)9&kL7+y&$ zp74*TLBJgc;w#43yYnFyv24VxYAi&b&-4(6j-YAz6V@C0>?%(3YR-O(p^$@Yl2JwNoLj%di@)slVXZx-v!k${TYFSYe3+Gc%U>Nf6$9Xf~On*|!%+xgiF zjPtrv)Dhoud@v?BwH|dm<;ifzNfAqq`Ljqa5I zw63pCsP}2%nup47otH$Vi2|o*FLL!|D_a*>zmpJQXH-#lo*on%72&Hvc;U%U}`h4fG4kB)a-P2O>4+^#&u`AHRv;` zlXEhM*FH-n!&>1UcEYcp@OhY!NrF%L zul}OwUrpS-8QxN`zApUXz!kXU{f9gIgF8*b`R_PxjMIihZc2ez{MB=XL-QFjb}y(S zSX9hM{+x<^#5B}3nU!-*f`E;bm(8v8Q8y0p^(faBx1|raK5wdN%OwG9 zr{*V}eg@-Hg6=)nZ%e&GhVA|@#Ul5+$R~T9zNC#3@J1z{k^J7_;B_Z$B^2i87P537eX<*>O>7U|6dy_JZ< zrSE0*{y!(QkF!WOa}QOEvOJe#d*Pve%&nI;kG~JjWq6G1CiTW5@?Ah}(!P1oYZM`g zH;i=^!NH|T_8@V~t;W%I`VLubkND{$ly7t;#dXR#&h}^MMOwrtd`RExCsKy)K2PMR zlbb9Dr&J2dG<%YVMHK@`PHLBHrldlu;(Pup3#&?OysMaUGV8_ctQg}>BIC7H5smr0 z>vA0R-MRcGmw4_nF2;l2^ou&~j9=yMI?7f9Jj{{y+}jpJLZTrHJ(KRx0=fDJr>~9B zB|dLXUVq0Sb*a$|6*bqr#^CepPaj(%=S&%GGRX_3Hon%JdBvg`|B9?HIF#J(aYArX zLw83ni!xtdzoY#tk0<3t8Z zeVxx%MGzAnZU1Za%*pwms^@>9GD?OP@0_gv8(>B1lY^rZ1s^ZKQvO|5b8xY7P_Qae zu(PrKZ`F0%hecZwUTohPy&ruo1QFe7D~Oo5GB^bq%jg7L?%SCwh`s8nb(KkpCOK^# zk3QWW2NI|}uhJ`^JyV8AM<4k(zhJ1UmZ2z$+x1|%IgT|8pmc4R5k;m9c>D1vp@PNM{Q6uM@G1x$2Zz&^6O(2YxKct0iDHJ-h1g)os2Ry6~vY7+G5Mo~_&J`1ZSFcyr07erD)E zvNIhu<*Z|*BfFzH=aMbssj79p31xh{w>&ViZ{EKSSC7&NOVAQwQT}Q*IHSYy?1<-x z*XD8lVdHFda$-_%k#}kMm=`)kLRX>K6P5lB`2x*Q2FI}fhmq`GqyB*uoly3q9k!~3 z21zQ>`FpKer7Bv=lj{C8LSr#h`s+=HOF|Ad0~&Ng3NQr)i@f(W8`~x+jTojKyygO% zx;I(AF;bV{4H@h!jBKtbO2zP8kDA%0K8juL6a!QoVw%;0*yFIMo3fj)#lqUfID)S{ z@IO*~ajVyC?dx1!Q4VESC`OT>w^iBp6P+b+I}$~G$D&vs808nuw@L*;6-Q?$qOFa* z`h-D95o*pqh8ZHb(p8{k;JUi;muM|;$7zn>~dB=#-BB{YwFEVL!I zzY%745|8YZDJ{G%4{@@HVkRyjD zK`nMhC&cz7&5xv?F_o+GZSM0cz&Giyk_FRC!>sCZ-8K~o=8&C5_e*cwf73c)1uhu* zu_)W3iKRMdC9S^0OS1m!B2Z8&?X8Q&ImkJXlde=C1SRQXTWN^ouRz4U5*N- za!e6`({VhXAo|Df_Q#0t{Y(dCpL*uHjE%ReqvH)>W{6Y@Lll;%C$6<>C+Pq$0#g-N zggPho0Nt87mKyeL-`Iy~1p{hkNzjEi*HU?*K`I^TC$AO*9LLL zXmZ@8n^0H3nM#(z?#`I~yGv)NSal_+>K9fBNiExAKi0=tvV2s9vH#rkF z3XjJ*g_UicD|a2aX;=BPc7V`UU7`HRI&NgihF9b0v)!7_YyK}p^J4IMeYBz^N zRqrHkHr)bZe3L1KgL|IoQxVt5MT^=?)((~d_Z(W>b{#8DnBeNnbBaFw)R*10xba)~ z3T5K)u3NkE)dvbE1DD6lBqFw4Exn-`h$dmo#w+&pzt}&LH;jhlIXeAF;_FPz*)a^I zrMo=i-||$@i4#$AuGcc!QdXKo*p^q}`olp26<<*-X}>fvz+vIg0~~_98Vu-ds9>ayz1bdQ=u;jg_1 zHujEf0U{#}BFsKoibPk-E(xS@o=mF7@JOyBmc=t&vEsMhCwr?N2I%e3&3|o#l@Low z6=jZaBDE?S)^z?nctY4`nSXb_OCcAjtW>Xhx^Unnr55Nhxg&*|NVHi(OkMtCgwRtQ zn}2(>d8UN0XWBGdsj;Vov8If?wmQbX_|ASCHM1s|kVrc6{uM5nBuQl9?k(3r;>90+ zF@cBp1X_nDrL8#vLj-3Pi}N~o#yc#(I=uKx9naz9upxulCjmFyy~oSzj5XWrc77s{ z`IKC!!*5EchSa!re+WLOyWBW*y<@1ppcVXcB!{kXZeKmVIPKGygoVKrH=i6YWw%uC zYV@>*6?-^uj|Z1FtJjhhrTkZkxn5Uo6K@5viRd)J92Y- z*_Gd-51Oa~X1{4E;0yWYcZ&qOUAKnlQeWYC&%VYMHKN65Qk;L8-id+R2G#P{?N>fm zybIUW6e;|l>dy}jgV$+d!?#!=^WQ#=rLa4P!G{>FqVQNVMqS!=m^04L`zTI66#V3K zo(OY4_eCu)Ecm0}KI90LH zd*p&p+x4KG#+ut@MmH$akG-k8ApTR)CCdt_8qvH0F=<8|7GX(reFY=f+W z{M`SM&2doh@$mB?|2wyP&JBfyksX~JObo1%-R7ek;FbRzVY4VyLkea5SK*iy?Od-` zmAT&d>A#3uJ^Zjx*NE#Hx~fX2DrX;o%c#82bpCDY%TY#?D@WqJ%axXQws+!~O51Pa z=bwwr$(C?TT&nchP;-BYd?H1j|ES9m553L;XMsPeQ{530xEl z-AUxbECc7its?XffbZ|4AMc}rfdFR<=J)RjmM0Mj;v9oC0F~DRqZJ?+TEKBrQBLnb z8=JxVPd~nr1`K2)_Y)KKk3EF(2o4flfiXdH0jUc9CxQJo5qFNq7euv203O=;r2z}B zXTw84HMRJU-)087!P6v^Q!R?E1yqaF&L#+Y1?T1jtOMlN2B!$V5&UZ%10Rf#Zw3$e zS;~iQ3F!*T?hlX%#UIAI+W-3ZusQ&81?Dl0Ft4fzQ9jU*;2)Io3sw*GgM$zd9CMWC z=XbB6%+a^X(2a*ZL$I2(Knuc%>ZUPcSz~~Dk;<5NwBrpyR)&QEp z2l7LS4;G)I2pK@Y^Hn8a;YZxkg%9yFG=8u1y&l{~0S5!B$=?e6@>es6P=Jv)M~L1KX#1RQed|#G z{+G_k(GiH2=+rR)dmZL5;NIa$f^Gdl;r;$AhsYiXbf5H_6R3Z$&ObMr0NWhcwchy` z^JfgX>5|gg#)gvl_rDWGTuQ1Ow?8Q*3blW70u;;Olkl_n>Ou z5E}do;iYSLOz2y$=|9N0;hT*J7Vs~=Ec%C}9%I0PK`AbXXTWKk1K#hP&+pL5Z`^5L z(U(ESPapb3Z%fnX(Ci(>{;vt-hRD_SuQ0FjE8Q0WUNt{%YX7cJQSUCVs|utwpu6SQ zpb7-xcF=N)tFtcF3FEVJT#{>dKNkEh1B+QBMqNeUyb++TuO4_xokUnK-^#56>$XP03X&dWqK6)zEuV2G|@d^M%%xdB|($L?T+y zi2OHH-2^G1b76$G`h)GfzDIxMW%f_|;!)c80~JJDm7AMJnkhAEBJ{s2|FwX&ba*Sf zhisId$#;7~)OG?htlYv(`5Llq&rsxB?a(G}PUhzDEs0&!^SXa1^`4@*AY&=WI3!7@ ze%d8X>91exW$R`P_;X9LH=%F2V*c+iCJ$yc7Y)y&_qoXEBE}qfEmnnQXk)!&=v?%+ z$Og^gT}->$tV?8imV5NT4fyYB)@=;L!OQrW6S!)&o9~AW{4O~Ase!69W*Qfp7IiB;YPVOH(WnQ_8l5L;1`mJV z@d18ahg@~kKPLy)eQq~uC#~kiyq1V`PqlZJZD;QtALy@oXsSqp8G4;t=*Vbt!>c&* zdJXlvm~P_tz)Y(k1)^+iUmwePcS}Ic_<^uPCBp(2UUNtGh)nqTk-$~2f>hpeM8zyC zW+Oc5YjF{jA2BBfX_hvTnRz5_Jz$Pk^1)Sr)=+5w@unoMxO!Jm1t51itOqw|;XeQo zIlQgStmhGsA)aa=pXY-9oVWCHw}_Rc)NIMobDYJDytz#o(XWMdFlm3&n;a*tgv4yq zNZvBmf2;*QjNSp6NO)3-=V;Zsh+xtDcD$=4rC(Cf?F;EC_W*R4Zcty+%W8}Cfc=WZpyr=GO3t#xKnXE~{s>HK$Jv{Rqx{S#GLIF$i zm;a1e3`PkwzWYU-LA~dWPh?(Tx30g#n z3l~)UhA(OZcRN9=;y=#2CP}qSXa_^HKEWLgLhZ1U3L{#LM|*ekI?-V(xu>S46DsGr zv>!UG%4{FdT8?KYHt5FwN64mHeQpC~Od63!+S%yFFX==cm6&RwXMtw09$NYQJ%^hN zFiv=kM?1&i>h1Q}8iNIh7@+Jvmq)3je~tZ$^l9Afp}g`BGWmPR!;z&EfbF@44F$vz9d^hm zE{RE8`rbFbws|Ny(0bYG(lFPhXU^QOpb)iNx?gTaw=!i-s}T+)R+rOPWt{vYD6-FW z=d6;7&9{3o)+0sMzG=mIs@ObMR9wh2`CdiTDw6qJ%uqSyUk5(0?r3OzlZHhcPSapAAPsqHdfII+ve>sA?}Byt|%(}V-@&en>VxSR|`uv!%Dk26UuyGtZS_Og&Qx|yF`ikCsH_r7x z@}2IqC=OI*ZOTM<{i0==j@@(@=Yv?@Ob%^xmYjF%>dgGM`@1)S%WQsH4jOM=-F`05 zK#f_j`eU#Teehc9n{XF!EI!nKArN(}T;W;T6?gU@@w0+Xdues1;nfbEZz8Q!Z>pM? zQaVQFB==Fxhwi?GY7B%j(`EYZo zJFMTB!)^?QIt#1o9!sZf^K=-t4B_6~rvECcnvb@w)}>0<_33c6Hr+pb8)mynKYNaH z3;tQY(U!@z9XGnz`uo9hCeODdu1*JQ^hW^vrX`7eq*RmU!+JN zoAg~cMRI^LGQku?!^u|lXyhTjOpw%BJ}=`Ns|^V^eO*ahn*p$;;qBlTt*&&D3+m_g z#75kB4bV=o7hI_KjpARtbS#uU5RK6FsW*|LPt5lOE*z9-+O*EP1sIbuji6JroFG-u zQF5*Y%$oqFnOjB?8BVH7K$a2%|1>}q!VnOzv6AY2)-6hBgN-##inBo^(~GQfs45Mk zZFooaU_C^e%3qu{z#m`mp1t>Ki<(dFUKJkkwt9SuVv=0cdRo8wgz&Z*u@(nO8E8E; z%R!|WM2)b)#dfQvRBkV-a{YpEeFd>GWIo}!8y=F_K5m>c(3jS+vv&4qEp~lvB{YvM z>5pxw$~7X>keVRRypr)ePC^Tl_hMmOOhm#o$J9*pe2Bm~i-x@5#BMRrKcK^hANtZ- z0OG+k6Q?{cd;3@q+Gq1#0N{qL*C~lsjrrk#;c)Omqugof>8HB(EheyP8Ud?}fVLB5 z5`62iL;Nd;B6rlZttbU17@YEREMxt!`UJkJ@9!90w0N$o4J z%WzdMpQFs%)l9V~t3BrOYuonUK{KzjL~lfAN0?>5(!wI0RKV=ZQ7Au+4-cJdS!ZGD z66xhsU35~Nkfi|PY<^bbQyG24a=7?jm){D>!yJw!(8+jSMk=ViPWB?)1h5H0N6TYV z25kJuzs87(MM{h6U5D$1z`eSS?9_$I1WI{RIBBf}{%yAFJia{y+WXgklDpA>O3{H` zy_`b2WZEHBanrc)Z{l@YDG!Kry&vgY3W-cUw%PksOv_{2i#TNe%;S{Z%zj0Y@th{* z>3U}}E$^{No2}i|M80@iopv{`rBYEPE5Z)4UR!0Nd+SS^*R0iZdtO!yZFt7c@91V= zWic0b)@h5U@&`&hR5b@Cp~Kic{lTNHjW}7;D0wyFix^fylI4lFMEP~;Pfr*jmWE{A z1?N7nl{v1J+Yj~b5Flv|AiGU;)s1RFa(_+qdkjTLv71nYq7P)HUL=~Utr@JKV34Y@X!0EFwop9Ru0yYE%n zEW=w~xS=>l&x)P0Fj5UPt1GNUo2-CVWETafc86~*oJGikSGD4tE>w4Y!VO-P=_-+H z`oPe=5V6>PJK*qIR-yw& zTqN;`wJ~|POd#AtG72gEq}$tKY#p$Zk{WUg_Ap4H;2@6sG;7G%O~d>75+2*tWpxaFR0)~M8E+45EN@Knu=8AO>D4(marR0DIrH!sOTTp5YHA?0 zYIjeMJ)m_3kDJ+uaH%v=oDsqN1U->!|2;V(HnFS4REs@-X0Zsnq)?_@K0&0{OPH}> ze{F|aFs|TQiz-4nUXs({wf!?2lp`KoEc}q2GJxM=?56kJa{A_h`wCSD%OGFTZ}|?} zRqYt-?tDdd6$~&RB$k4Xa&P6h%F3lF=Shl~kG|i=6k^JQh+ln$eLwl(54 zN8JZjmQ;&>!@rnm^KqT3p89)8rK8&$o%!tqdz~s(UiL~?>T;El zvd|Tc6f*E;Q&}IxYq%v#dZx$GY;9O|PW@at$O6>>VMwb)-lyF8OH+#Go9_4ysG0KG z=mIiK>IfG*4s6j5(F!uRS?t{5XlB(UDvhJLkw7(!YF>LMZp}1~IX$;C_a@j#Y~z*Yv(FNp0}}HJq4y*WNXUV4eKH8;Zlv%WRLB&d{D4I@QZPrqqxmr`0>f zZ*4qLom|LQ8^rdptZWdM6)|EMuuTr#d)!)xN(q#F$KZ5 za%g5%p`%=McQU*DmaH_N=}HO~c4b5LHHKBM&PQdv`_N^SV$MdlBcZ$vCPC({xRMLY zh`*o9dFx{ZI*!iND(5z8na70cKQ83>wY5*epR#qSrDKyXS)MT%2>GItT2?hitJFm| zlKNO5gK7_$(FC7+*daR5pP8}|pkvFAwqjNJye^mDQ>69F3liTlkZZig^fvu%t1M|q*@zE zACjv~gkEB3vu=Y?=#X-8e^H;Y*tQYUj@*qCKDOsQ$u~}GWGv^kOHLx(oqK`9 zkY;dwytJXvVe@LjSP4HcVYo?95#Y4CXy{h%|nPsAX6OVP_gJ@(29GnKt6#YX(WG+_@4t3WE^gWcq%?mR1$SQ>Z&4u|990}DwjPDqbp z+t#o;pGqWW4X2T^tsi0pD2_MjDwUpJBQAB_ zXKEs_EeY8MXPB@UupbRnF^d>6ND}6EH_Lk5_d07T-a90ynI27&^CFFDG^Djb=hSXu z3}9dnAn=^-^^H{KRs-c7f60c=+qOq|{80Sz5DX>6;Ki@x|2F20^;1YO?l30F&!&$- zWxU}ao>0iruY@W@aO!5Sd})KUdhbxIl~areyWM)~-5m-7zX;an)oRnuQSkG_Gan8NKCa=XTfHplf{`?^@}G^gwh) z<%+0J>5Tr<;92`jF_zOtpQTv6CH&Bq$Q?H?$rx- z3(=8Nt5VKL{rX)p84ewhpstxYSEZUp{ea8l>JFE+vOl*0ZWGbVmtLV?y>dFqIWAQ8 ztUcb&1xdg!(%v4Pfml4bMn>$z5{m9L?a(RVOjcyAPSWWnmbsArZ|tk(ZSvjMN5sTR zxlA3h^D2@5K?Q|XdG*DeRflGm75(`*@q}qzR3P1s89CBpph!|{x(p@2<6E$+bm-zk zVRn$arWT42f~ypTVOND&X>=R~lAx?U^@)C2@8H8r&=VvK26O6?mY?Wg{Ed7&dj9ng za=HKk4O91nx~)C}_%cniuX@fVQ<_f%YTp^mrUVlS12zlYc+l`}v-G6Gx;?cv(+X;1 z8JQz16SqdEdkb;f;FkV5Gs0OQTKk@6;vfqT=(7CFqM(dGtTRx;qzGw1NOi~U)Z`eg zr1PbAON-8Qjj&`kwm_SZy9U%F=hQte1@#}e>oe)c=F%b1rMek7{3J%9(m_GEv;s^0 zutR$<7J+3Y%tPNCg^yWiw@PzRDP8MyJ5!O7IEN<-VvO~J%nnA({)qN1?vs(Mm`2nX zB?JDl^U3?LJYVOjS(f@B5P7K?g|<5FZSs(pdW#4RHI=mt4w_0XlE&qD^kmKi55Kmwj zWyNeerz007kbzkV432p0DCw9f^^25quBoYI~lvueS%pB-YJL?7!#4otWmH!@BSxaS!)$msfSBQIk3|C>%&MZ3IsSEqk

    JjMI+?&tlpGOS$ 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 z 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